Repository: naivesound/glitch Branch: master Commit: 7131883c9af9 Files: 234 Total size: 9.7 MB Directory structure: gitextract_k13q67tj/ ├── .gitignore ├── .travis.yml ├── API.md ├── Gopkg.toml ├── LICENSE ├── README.md ├── appveyor.yml ├── audio/ │ ├── audio.go │ └── midi.go ├── cmd/ │ └── glitch/ │ ├── app.go │ ├── assets.go │ ├── gen.go │ ├── loader.go │ ├── main.go │ └── ui.go ├── core/ │ ├── CMakeLists.txt │ ├── expr.h │ ├── glitch.c │ ├── glitch.go │ ├── glitch.h │ ├── glitch_test.c │ ├── glitch_test.go │ ├── libglitch.h │ └── tr808.h ├── dist/ │ ├── glitch.exe.manifest │ ├── glitch.rc │ ├── icons/ │ │ └── glitch.icns │ ├── release-linux.sh │ ├── release-macos.sh │ ├── release-web.sh │ └── release-windows.bat ├── examples/ │ ├── bytebeat/ │ │ ├── 42.glitch │ │ ├── arp.glitch │ │ ├── dreamy.glitch │ │ ├── drum.glitch │ │ ├── nervous.glitch │ │ ├── poly.glitch │ │ ├── right.glitch │ │ ├── saw.glitch │ │ ├── sqr.glitch │ │ └── white.glitch │ ├── das_model.glitch │ ├── drums.glitch │ ├── get_yucky.glitch │ └── sur_la_planche.glitch ├── ui/ │ ├── app.js │ ├── index.html │ ├── styles.css │ └── vendor/ │ ├── codemirror/ │ │ ├── codemirror.css │ │ ├── codemirror.js │ │ ├── matchbrackets.js │ │ ├── material.css │ │ └── simplescrollbars.js │ ├── material-icons/ │ │ ├── MaterialIcons-Regular.ijmap │ │ ├── README.md │ │ ├── codepoints │ │ └── material-icons.css │ ├── picodom/ │ │ └── picodom.js │ └── roboto-mono/ │ └── roboto-mono.css └── vendor/ └── github.com/ ├── jteeuwen/ │ └── go-bindata/ │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── asset.go │ ├── bytewriter.go │ ├── config.go │ ├── convert.go │ ├── debug.go │ ├── doc.go │ ├── go-bindata/ │ │ ├── AppendSliceValue.go │ │ ├── main.go │ │ └── version.go │ ├── release.go │ ├── stringwriter.go │ ├── testdata/ │ │ ├── in/ │ │ │ ├── a/ │ │ │ │ └── test.asset │ │ │ ├── b/ │ │ │ │ └── test.asset │ │ │ ├── c/ │ │ │ │ └── test.asset │ │ │ └── test.asset │ │ └── out/ │ │ ├── compress-memcopy.go │ │ ├── compress-nomemcopy.go │ │ ├── debug.go │ │ ├── nocompress-memcopy.go │ │ └── nocompress-nomemcopy.go │ └── toc.go ├── thestk/ │ ├── rtaudio/ │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── RtAudio.cpp │ │ ├── RtAudio.h │ │ ├── autogen.sh │ │ ├── configure.ac │ │ ├── contrib/ │ │ │ ├── go/ │ │ │ │ └── rtaudio/ │ │ │ │ ├── rtaudio.go │ │ │ │ ├── rtaudio_stub.cpp │ │ │ │ ├── rtaudio_stub.h │ │ │ │ └── rtaudio_test.go │ │ │ └── python/ │ │ │ └── pyrtaudio/ │ │ │ ├── PyRtAudioTest.py │ │ │ ├── readme │ │ │ ├── rtaudiomodule.cpp │ │ │ └── setup.py │ │ ├── doc/ │ │ │ ├── Makefile.am │ │ │ ├── doxygen/ │ │ │ │ ├── Doxyfile.in │ │ │ │ ├── acknowledge.txt │ │ │ │ ├── apinotes.txt │ │ │ │ ├── compiling.txt │ │ │ │ ├── duplex.txt │ │ │ │ ├── error.txt │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── license.txt │ │ │ │ ├── multi.txt │ │ │ │ ├── playback.txt │ │ │ │ ├── probe.txt │ │ │ │ ├── recording.txt │ │ │ │ ├── settings.txt │ │ │ │ └── tutorial.txt │ │ │ └── release.txt │ │ ├── include/ │ │ │ ├── asio.cpp │ │ │ ├── asio.h │ │ │ ├── asiodrivers.cpp │ │ │ ├── asiodrivers.h │ │ │ ├── asiodrvr.h │ │ │ ├── asiolist.cpp │ │ │ ├── asiolist.h │ │ │ ├── asiosys.h │ │ │ ├── dsound.h │ │ │ ├── functiondiscoverykeys_devpkey.h │ │ │ ├── ginclude.h │ │ │ ├── iasiodrv.h │ │ │ ├── iasiothiscallresolver.cpp │ │ │ ├── iasiothiscallresolver.h │ │ │ └── soundcard.h │ │ ├── install.txt │ │ ├── rtaudio.pc.in │ │ ├── rtaudio_c.cpp │ │ ├── rtaudio_c.h │ │ └── tests/ │ │ ├── CMakeLists.txt │ │ ├── Debug/ │ │ │ └── .placeholder │ │ ├── Makefile.am │ │ ├── Release/ │ │ │ └── .placeholder │ │ ├── Windows/ │ │ │ ├── Debug/ │ │ │ │ └── .placeholder │ │ │ ├── Release/ │ │ │ │ └── .placeholder │ │ │ ├── audioprobe.dsp │ │ │ ├── duplex.dsp │ │ │ ├── playraw.dsp │ │ │ ├── playsaw.dsp │ │ │ ├── record.dsp │ │ │ ├── rtaudio.dsw │ │ │ ├── testall.dsp │ │ │ └── teststops.dsp │ │ ├── audioprobe.cpp │ │ ├── duplex.cpp │ │ ├── playraw.cpp │ │ ├── playsaw.cpp │ │ ├── record.cpp │ │ ├── testall.cpp │ │ └── teststops.cpp │ └── rtmidi/ │ ├── .gitattributes │ ├── .github/ │ │ └── issue_template.md │ ├── .gitignore │ ├── .travis.yml │ ├── Makefile.am │ ├── README.md │ ├── RtMidi.cpp │ ├── RtMidi.h │ ├── autogen.sh │ ├── configure.ac │ ├── contrib/ │ │ └── go/ │ │ └── rtmidi/ │ │ ├── rtmidi.go │ │ ├── rtmidi_stub.cpp │ │ ├── rtmidi_stub.h │ │ └── rtmidi_test.go │ ├── doc/ │ │ ├── Makefile.am │ │ ├── doxygen/ │ │ │ ├── Doxyfile.in │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── tutorial.txt │ │ └── release.txt │ ├── msw/ │ │ ├── readme │ │ ├── rtmidilib.sln │ │ └── rtmidilib.vcproj │ ├── rtmidi-config.in │ ├── rtmidi.pc.in │ ├── rtmidi_c.cpp │ ├── rtmidi_c.h │ └── tests/ │ ├── Debug/ │ │ └── .placeholder │ ├── Makefile.am │ ├── Release/ │ │ └── .placeholder │ ├── RtMidi.dsw │ ├── cmidiin.cpp │ ├── cmidiin.dsp │ ├── midiclock.cpp │ ├── midiout.cpp │ ├── midiout.dsp │ ├── midiprobe.cpp │ ├── midiprobe.dsp │ ├── qmidiin.cpp │ ├── qmidiin.dsp │ ├── sysextest.cpp │ └── sysextest.dsp └── zserge/ └── webview/ ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── appveyor.yml ├── examples/ │ ├── canvas-go/ │ │ └── main.go │ ├── counter-go/ │ │ ├── assets.go │ │ ├── js/ │ │ │ ├── picodom/ │ │ │ │ └── app.js │ │ │ ├── react/ │ │ │ │ └── app.jsx │ │ │ ├── styles.css │ │ │ └── vue/ │ │ │ └── app.js │ │ ├── main.go │ │ ├── picodom.go │ │ ├── react.go │ │ └── vue.go │ ├── minimal/ │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── main.c │ ├── minimal-go/ │ │ └── main.go │ ├── page-load-go/ │ │ └── main.go │ ├── timer-cxx/ │ │ ├── CMakeLists.txt │ │ └── main.cc │ ├── todo-go/ │ │ ├── assets/ │ │ │ ├── app.js │ │ │ ├── index.html │ │ │ ├── picodom.js │ │ │ └── styles.css │ │ ├── assets.go │ │ └── main.go │ └── window-go/ │ └── main.go ├── webview.go ├── webview.h └── webview_test.go ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ *.o glitch.alsa glitch.pulse glitch.jack glitch.mac glitch.exe web/dist samples .idea/ ================================================ FILE: .travis.yml ================================================ language: go matrix: include: - os: linux before_install: - sudo add-apt-repository ppa:webkit-team/ppa -y - sudo apt-get update - sudo apt-get install libwebkit2gtk-4.0-dev -y addons: apt: packages: - libasound2-dev - libpulse-dev script: - ./dist/release-linux.sh - os: osx osx_image: xcode8.3 script: - ./dist/release-macos.sh install: - git fetch --unshallow --tags deploy: provider: releases api_key: $GITHUB_ACCESS_TOKEN file_glob: true file: "dist/glitch-*.tar.gz" skip_cleanup: true on: tags: true ================================================ FILE: API.md ================================================ # Glitch API Glitch is an algorithmic synthesizer. It creates music with math. Below is a list of functions that you can use in Glitch to generate or modify the sound. ## Input and output Music can be seen as a function `f(t)` where `t` is increasing in time. Glitch increases a variable `t` at `8000/sec` rate and it can be a real number if your hardware sample rate is higher. Expression result is expected to be in range `[-1..1]` otherwise it will be clipped. Music expression is evaluated once for each audio frame. You can use numbers, math operators, variables and functions to compose more complex expressions. Most of the functions keep track of time internally, so you only have to specify other arguments such as frequency. ## Math Everything in Glitch is a number. Time is a number. Notes are represented as numbers. Every signal is represented as the value of its current amplitude. That is why music in Glitch is made using the following arithmetic operators: * Arithmetics: `+` `-` `*` `/` `%` (modulo) `**` (power) * Bitwise: `&` `|` `^` (xor or bitwise not) `<<` `>>` * Compare: `==` `!=` `<` `<=` `>` `>=` (return 1 or 0) * Grouping: `(` `)` `,` (separates expressions or function arguments) * Conditional: `&&` `||` ([short-circuit operators][short-circuit]) * Assignment: `=` (left side must be a variable) These arithmetic operators have the same meaning as they have in most programming languages. The priority of the operators is the one [used in C language][operator-priority]. Since everything in Glitch is a number, `+` can be used to mix signals together. `-` can be used to subtract one signal from another. > Example: `piano+drums` returns two signals (piano and drums) mixed together. In a similar manner, `*` can be used to modulate signals. > Example: `piano*lfo` modulates piano signal with the lfo signal value. Parenthesis can be used to group subexpressions, but also to pass parameter tuples instead of single arguments. If a function takes a tuple as an argument it will be mentioned in the documentation. Comma operator separate function arguments. Outside of functions comma allows to evaluate parts of the formula one by one, from left to right. The result of the last part is returned. Comma is so frequently used in Glitch, that you may omit commas at the end of line: ``` # Comma at the end of line is optional: x=(a=1,b=2,a+b) x = ( a = 1 b = 2 a + b ) ``` > Example: `x=5, y=6, x+y`. X is set to 5, then y is set to 6, then 11 is returned. > Example: `x=(a=1,a+2). A is set to 1, then 3 is retured and assigned to X. Short circuit operators (`&&` and `||`) are used to achieve the effect of if/else statements. `&&` evaluates the rigth side only if the left side is true. `||` evaluates the right side only if the left side is false. > Example: `(b && 1 || 0)` returns 1 if b is non-zero (true) and returns 0 if b is zero. ## Math functions ### l(x) `l(x)` returns a binary logarithm (log2) of `x`. Useful to convert frequencies to note values. It is rarely used in Glitch. > Example: `note=l(440) * 12` - returns note value for the frequency 440Hz, which is `A4`, or 0. ### r(max=1) `r(max)` returns a random number in the range [0..max), it sounds like white noise, good for synthesizing drums or making randomized music patterns. `max` parameter is optional and by default `r()` returns numbers in the range `[0..1)` > Example: `r(100)` - returns a random number in the range [0..100) ### s(phase=0) `s(phase)` returns a sine wave amplitude for the given phase. Phase must be in the range `[0..1)`. Returned value is in the range `[-1..1]`. > Example: [x=x+1, s(x*0.006)](http://naivesound.com/glitch/#x%3Dx%2B1%2C%20s(x*0.006)) - plays a sine wave at 437Hz ### byte(x=127) `byte(x)` converts the value `x` from [Bytebeat][bytebeat] range `[0..255]` to the common amplitude range `[-1..1]`. It is used to play short Bytebeat formulas in Glitch as well as add effects to them or mix with other sounds. > Example: [byte(t*5&(t>>7)|t*3&(t*4>>10))](http://naivesound.com/glitch/#byte(t*5%26(t%3E%3E7)%7Ct*3%26(t*4%3E%3E10))) - Bytebeat music ## Sequencers Sequencers are used to describe melodies, chord progressions, rhythmic patterns or other repetitive parts of your song. ### a(index, values...) `a(i, x0, x1, x2, ...)` returns x[i] value for the given index i. If index is negative or out of array bounds - it gets wrapped around. > Example: `a(0, 5, 6, 7)` - returns 5, because it is at index 0 in the list of values. > Example: `a(2, 5, 6, 7)` - returns 7 > Example: `a(3, 5, 6, 7)` - returns 5 > Example: `a(4, 5, 6, 7)` - returns 6 > Example: `a(-1, 5, 6, 7)` - returns 7 > Example: [byte(t*a(t>>11,4,5,6))](http://naivesound.com/glitch/#byte(t*a(t%3E%3E11%2C4%2C5%2C6))) - plays saw-tooth wave with 3 changing frequencies in a loop ### seq((offset, bpm), (step, values...)...) `seq(bpm, x0, x1, x2, ...)` returns x[i] value where i is increated at given tempo (`bpm`). Values can be numeric constants, variables or expressions. Values are evaluated once per beat and the result is remembered and then reused. Values can be a tuples. In a pair of numbers like (2,3) the first number is relative step duration and the second one is the actual value. This means value 3 will be played for 2 beats. Value can be a tuple of more than 2 numbers. The first number is always a relative step duration, and the other values are gradually slided, e.g. (0.5,2,4,2) is a value changed from 2 to 4 back to 2 and the step duration is half of a beat. > Example: [byte(t*seq(120,4,5,6))](http://naivesound.com/glitch/#byte(t*seq(120%2C4%2C5%2C6))) > Example [byte(t*seq(120,(1,4,6,4),(1/2,5),(1/2,6)))](http://naivesound.com/glitch/#byte(t*seq(120%2C(1%2C4%2C6%2C4)%2C(1%2F2%2C5)%2C(1%2F2%2C6)))) ### loop((offset, bpm), (step, expr)...) `loop(bpm, x0, x1, x2, ...)` evaluates x[i] increasing i at the given tempo. Unlike `seq()`, `loop()` evaluates x[i] for every audio frame, so other functions can be used as loop values. `seq()` is often used to change pitch or volume, `loop()` is often used to schedule inner sequences and loops. > Example: [byte(t*loop(30,seq(240,4,5),seq(240,4,6)))](http://naivesound.com/glitch/#byte(t*loop(30%2Cseq(240%2C4%2C5)%2Cseq(240%2C4%2C6)))) `seq()` and `loop()` return NaN at the beginning of each step. NaN value is used by the instruments and effects to detect the start of a new note. ## Instruments Oscillators are the building blocks of synthesizers. Oscillator phase is managed internally, only frequency must be provided (in Hz). ### sin(freq) `sin(freq)` plays a sine wave at the given frequency. If frequency is negative - sine wave is played "backwards". The start of the wave is always at zero amplitude. ### tri(freq) `tri(freq)` plays a trianglular wave. Like `sin()`, is starts at zero value and plays backwards if frequency is a negative value. ## saw(freq) `saw(freq)` plays a sawtooth wave. Like `sin()` and `tri()`, is starts at zero value and plays backwards if frequency is a negative value. ## sqr(freq, pwm=0.5) `sqr(freq, pwm)` plays a square wave with the given pulse width. By default if no pulse width is given it is assumed to be 50%, or `0.5`. > Example: [(sin(220)+tri(440))/2](http://naivesound.com/glitch/#(sin(220)%2Btri(440))%2F2) ## fm(freq, mf1=0, ma1=0, mf2=0, ma2=0, mf3=0, ma3=0) `fm(freq, mf1, ma1, mf2, ma2, mf3, ma3)` is a 3-operator FM synthesizer, `mf` is an operator frequency ratio, `ma` is an operator amplification. Operators M2 and M1 are parallel, M3 is sequential to M1. > Example: [fm(seq(120,440,494),1,0.5,0.01,1)](http://naivesound.com/glitch/#fm(seq(120%2C440%2C494)%2C1%2C0.5%2C0.01%2C1)) ## tr808(instr, volume=1, pitch=0) `tr808(instr, volume)` is a set of samples from the TR808 drum kit. The following instruments are supported (you can use two-letter constants instead of remembering numbers): * `BD=0` - Bass drum * `SD=1` - Snare drum * `MT=2` - Middle tom * `MA=3` - Maracas * `RS=4` - Rimshot * `CP=5` - Clap * `CB=6` - Cowbell * `OH=7` - Open hat * `HH=8` - High hat > Example: [tr808(SD,seq(240,1,0.2))](http://naivesound.com/glitch/#tr808(SD%2Cseq(240%2C1%2C0.2))) ## Effects and signal processing ### lpf(signal, cutoff=200, Q=1) `lpf(signal, cutoff, Q)` is a bi-quadratic low-pass filter. It passes the signals with the frequencies lower than the given cutoff frequency and attenuates the signals with the frequency higher than cutoff. Q is the Q-factor of the filter. ### hpf(signal, cutoff=200, Q=1) `hpf(signal, cutoff, Q)` is a bi-quadratic high-pass filter. It passes the signals with the frequencies higher than the given cutoff frequency and attenuates the signals with the frequency lower than cutoff. Q is the Q-factor of the filter. `hpf()` is complementary to the `lpf()`. ### bpf(signal, cutoff=200, Q=1) `bpf(signal, cutoff, Q)` is a bi-quadratic band-pass filter. It passes the signals with the frequencies in the range around the given cutoff frequency and attenuates other signals. Q is the Q-factor of the filter and defines the width of the range. ### bsf(signal, cutoff=200, Q=1) `bsf(signal, cutoff, Q)` is a bi-quadratic band-stop filter. Some variants of it are known as Notch filter. It passes the signals with the frequencies outside of the range around the given cutoff frequency and attenuates the rest of the signals. Q is the Q-factor of the filter and defines the width of the range. ### delay(signal, time=0, damp=0, feedback=0) `delay(signal, time, damp, feedback)` is a simple delay effect. It delays the incoming signal for the given time in seconds. The signal is damped to the given level and on further loops of the delay line is amplified by the feedback level. ### env((gate, signal), a=0.01, r=10, acur=0.5, rcur=0.5) `env(signal)` is a simple attack-release signal envelope. Attack and release time are specified in seconds. The curve of the attack and release parts can be controlled using `acur` and `rcur` parameters. Values are in the range of [0..1] and make logarithm or exponential curves. The value of 0.5 makes a linear shape. > Example: [env(sin(seq(240,440,480)),0.01,0.3,0.5,0.2)](http://naivesound.com/glitch/#env(sin(seq(240%2C440%2C480))%2C0.01%2C0.3%2C0.5%2C0.2)) ### mix(signal...) `mix(z1, z2, ...)` mixes signals together. It soft-clips the resulting signal if the value is outside of the [-1..1] range. > Example: [mix(0.3*sin(440),0.7*tri(220))](http://naivesound.com/glitch/#mix(0.3*sin(440)%2C0.7*tri(220))) ## Notes and melody ### C0..B#8 Notes in Glitch are represented as numbers, often integer. The note of A4 is considered to be 0. A#4 = 1, G#4 = -1 etc. Glitch provides a set of useful constants for note indices (not frequencies). Any note in the range C0..B#8 can be represented as a constant. ### hz(note) `hz(note)` returns note frequency in hertz. > Example: [sin(hz(A4))](http://naivesound.com/glitch/#sin(hz(A4))) - plays sine wave at 440 Hz, which is A4 note. ### scale(index, mode=0) `scale(i, mode)` returns a note index at position i in the given scale. Default mode is major scale. > Example: [tri(hz(scale(seq(480,r(5)))))](http://naivesound.com/glitch/#tri(hz(scale(seq(480%2Cr(5)))))) - plays random notes from the major scale ## Polyphony and live MIDI input ### each(vars, expr, values...) `each(vars, expr, values...)` applies and adds up the given expression evaluated for each of the values from the list. Useful to construct chords. > Example: [each((vol,note),vol*sin(hz(note)),(0.8,0),(0.5,4),(0.5,7))](http://naivesound.com/glitch/#each((vol%2Cnote)%2Cvol*sin(hz(note))%2C(0.8%2C0)%2C(0.5%2C4)%2C(0.5%2C7))%0A) ### MIDI input If a MIDI keyboard is available, the following variables are set as you press the keys: * `k0, k1, k2, ..., k9` are MIDI keyboard note indices that are currently played. * `v0, v1, v2, ..., v9` are MIDI keyboard note velocities in the range [0..1]. Velocity quickly fades out if the key is released. * `g0, g1, g2, ..., g9` are MIDI keyboard gate values that are either 1 if key is pressed or NaN otherwise. Additionally, there are two variables, `x` and `y`, that are controlled using the pitch and the mod wheel of the MIDI keyboard. They can also be controlled my moving a mouse custor while keeping the Control key pressed. ### bpm `bpm` is a special variable that allows to specify a tempo of the song. It is used to synchronize user input with the song tempo, so that the changes user makes in the formula would not interrupt the rhythm of the song. > Example: `bpm=120/4` - set tempo to 4 beats at 120 beat per minute. ## Macros To make reusable snippets of code and to simplify dealing with polyphony Glitch supports macros. Macros look like functions and are automatically expended as you use them. Macro definition starts with a dollar sign function with the macro name as the first parameter: `$(mymacro, ...)`. Macro can be later be called by its name, e.g. `mymacro()`. All the parameters passed into the macro appear as `$1`, `$2`, ... variables. The body of the macro is wrapped into extra parenthesis so you can put multiple expressions into the macro. [short-circuit]: [operator-priority]: [bytebeat]: ================================================ FILE: Gopkg.toml ================================================ # Gopkg.toml example # # Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md # for detailed Gopkg.toml documentation. # # required = ["github.com/user/thing/cmd/thing"] # ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] # # [[constraint]] # name = "github.com/user/project" # version = "1.0.0" # # [[constraint]] # name = "github.com/user/project2" # branch = "dev" # source = "github.com/myfork/project2" # # [[override]] # name = "github.com/x/y" # version = "2.4.0" [[constraint]] name = "github.com/jteeuwen/go-bindata" version = "3.0.7" [[constraint]] branch = "master" name = "github.com/thestk/rtaudio" [[constraint]] branch = "master" name = "github.com/thestk/rtmidi" [[constraint]] branch = "master" name = "github.com/zserge/webview" ================================================ FILE: LICENSE ================================================ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. {one line to give the program's name and a brief idea of what it does.} Copyright (C) {year} {name of author} This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: {project} Copyright (C) {year} {fullname} This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ================================================ FILE: README.md ================================================ # Glitch [![Build Status](https://travis-ci.org/naivesound/glitch.svg?branch=master)](https://travis-ci.org/naivesound/glitch) Glitch is a minimal environment for creating algorithmic music and live coding. It uses arithmetic expressions to synthesize instruments and create music patterns. Try it online: http://naivesound.com/glitch Download for Mac, Windows or Linux: https://github.com/naivesound/glitch/releases Read more about Glitch on Medium: https://medium.com/@naive_sound ## Build On linux: `make alsa=1` or `make alsa=1 pulse=1`. If you want to use JACK: `make jack=1`. On windows: `make windows=1`. On MacOS: `make macos=1`. Asm.js: `make js` (requires Docker). ## Reference Glitch syntax is arithmetic expressions, most likely you still remember it from the math class. Arithmetics: `+` `-` `*` `/` `%` (modulo) `**` (power) Bitwise: `&` `|` `^` (xor or bitwise not) `<<` `>>` Compare: `==` `!=` `<` `<=` `>` `>=` (return 1 or 0) Grouping: `(` `)` `,` (separates expressions or function arguments) Conditional: `&&` `||` ([short-circuit operators][shortcircuit]) Assignment: `=` (left side must be a variable) ### Instruments | Function | Description | Example | |----------|-------------|---------| | sin(freq) | sine wave at given frequency | `sin(440)` | | tri(freq) | triangular wave at given frequency | `tri(440)` | | saw(freq) | saw-tooth wave at given frequency | `saw(440)` | | sqr(freq, [pwm=0.5]) | square wave at given frequency and (optionally) pwm | `sqr(440)` | | fm(freq, [m1, v1, m2, v2, m3, v3]) | FM-synthesizer with 3 operators, vN is operator strength, mN is operator multiplier, operators 1 and 2 are parallel, operator 3 is sequential to operator 1 | `fm(440, 0.5, 0.5)` | | tr808(drum, [vol=1], [shift=0]) | plays TR808 drum sample at given volume and pitch shift. The following drum IDs may be used: BD (bass drum), SD (snare drum), MT (middle tom), MA (maracas), RS (rimshot), CP (clap), CB (cowbell), OH (open hat), HH (hi-hat) | `tr808(BD, 1)` | | piano(freq) | very basic piano sample at the given frequency | `piano(440)` | pluck(freq, decay) | Karplus-Strong string synthesizer, fill is a function used to prepare the initial values in the delay buffer | `pluck(440, 0.7)` | FM synthesizer, TR808 sampler and Piano are reset if any of the parameters is NAN. All instruments return NAN if the input is NAN. All instruments return a sound wave with the given frequency in the range [-1..1], so you can combine them by adding the signals (e.g. `(sin(440)+sin(220))/2`) or modulate using multiplication, e.g. `saw(440)*sin(1)`. You may put custom samples into the `samples` subdirectory, each group of samples should be in a separate folder. Then you could use samples providing the directory name as a function. For example if you have `samples/bass/bass0.wav` and `samples/bass/bass1.wav` you may call them as `bass(0)` and `bass(1)` respectively. Samples are expected to be in the WAV mono 16-bit format with 44100 Hz sample rate. ### Sequencers: | Function | Description | Example | |----------|-------------|---------| |a(i, ...) | array element by its index, most primitive sequencer | `sin(a(t>>10, 440, 466, 493))` | |seq(tempo, ...) | switches elements at given tempo | `sin(loop(120, 400, 466, 493))` | |loop(tempo, ...) | switches elements at given tempo, unlike seq() it evaluates each argument for each time frame which makes it possible to nest loops | `sin(loop(60, seq(240,400,466,493), seq(480, 400,493)))` | Tempo can be a single number (beats per minute) or a pair `(offset, bpm)`, where offset is number of beats to skip before starting the sequence. Seq and loop values can be pairs, too. Then the first value is a relative beat duration and the second is the actual returned value: `seq(120, (3/4, 1), (1/4, 1))` returns the value of "1", but the first value lasts 3 times longer than the second value. If seq takes more values, they will be sliding from one another, e.g. `seq(120, (1, 0, 4, 2), (1, 2, 4, 0))` slides the values like `0->4->2->2->4->0`. The first value in a group is still a relative beat duration. Seq and loop return NAN every then the value is changed. ### Utils | Function | Description | Example | |----------|-------------|---------| | r(max) | random number in the range [0..max), it sounds like white noise, good for synthesizing drums or making randomized music patterns | `r(100)` | | s(phase) | sine wave amplitude at the given phase, unline sin() you must provide phase in the range [0..1] | `s(t*14)` | | l(x) | binary logarithm, useful to convert frequencies to note values | `note=l(440)*12` | | hz(note) | note frequency of the given note index, index 0 is note A of 4th octave, you may also use helper variables like `A#4`, `C2`, `Db3` | `sin(hz(A4))` | | scale(pos, mode) | return note index at given position in given scale, scale 0 is major scale, scale 6 is minor | `sin(hz(scale(t>>11&7)))` | | env(signal, (dt, level)...) | Creates an ADSR envelope for the signal, envelope is reset if signal is NAN, if first part has non-zero level - the initial level starts from 1, otherwise from 0; if last argument is not zero - the release section is inserted automatically | `env(v, (0.1, 0.2))` | | mix(...) | mixes voices together, each parameter is a signal or a pair of (volume, signal). Signals are clipped if overflow occurs | `mix(sin(220), sin(440), tri(880))` | | lpf(voice, cutoff) | applies low-pass filter to the voice at given cutoff frequency | `lpf(v, 200)` | | hpf(voice, cutoff) | applies high-pass filter to the voice at given cutoff frequency | `hpf(v, 400)` | | bpf(voice, cutoff) | applies band-pass filter to the voice at given cutoff frequency | `bpf(v, 400)` | | bsf(voice, cutoff) | applies band-stop filter to the voice at given cutoff frequency | `bsf(v, 400)` | | delay(voice, time, level, feedback) | delays signal by given time, delay level can be controlled as well as the amount of delay feedback, which affect the number of delay repetitions | `delay(v, 0.1, 0.5, 0.2)` | ### Macros To reuse the same expression multiple times you may create a macro: ``` $(organ, (sin($1)+0.4*sin($1+7)+0.3*sin($1-5))/3) (organ(hz(C4))+organ(hz(G4)))/2 ``` Macros are definde using the `$(name, body)` function. Body can consist of multiple expressions if you extra parenthesis, e.g. `$(filter, (z=saw($1), lpf(z)))`. There are special argument variables $1..$9 that get expanded to the actual values when the macro is called. ## Special variables: `t` is time variable that increases at rate 8000/second. `x` and `y` in the web version are mouse cursor position, normalized to (0..1) range. `bpm` is a tempo, user input is synchronized with the playback at this rate, so you might want to use `bpm=120/4` to synchronize user input every 4 beats. ### Polyphony To apply the same expression to a number of variables you may use `each()` function. It takes a list of formal variables, a function, and a list of actual values: `each(f, sin(f), 440, 880, 220)`. You may pass multiple variables as well: `each((vol, freq), vol*sin(freq), (1, 440), (0.4, 880), (0.2, 220))`. This is useful for live MIDI input. ### MIDI Glitch provides special variables that change their values if a MIDI keyboard is used: * k0, k1, ..., k9 - MIDI key values (0=A4, 1=A#4 etc) * v0, v1, ..., v9 - MIDI velocity (it gradually fades out on key release) * g0, g1, ..., g9 - MIDI gate signal (it is set to NAN immediately on key release) Here's how you can play a sine wave with a MIDI keyboard (handling up to 5 keys pressed at a time, use k5, k6 etc to get more polyphony): ``` each((k, v), v*sin(hz(k)), (k0, v0), (k1, v1), (k2, v2), (k3, v3), (k4, v4)) ``` Special variables `x` and `y` are set to the pitch wheel and modulation wheel values if a MIDI keyboard is used. [shortcircuit]: https://en.wikipedia.org/wiki/Short-circuit_evaluation ================================================ FILE: appveyor.yml ================================================ os: Visual Studio 2017 version: "{build}" clone_folder: c:\gopath\src\github.com\naivesound\glitch environment: global: GOPATH: C:\gopath matrix: - GETH_ARCH: amd64 GOARCH: amd64 CGO_ENABLED: 1 MSYS2_ARCH: x86_64 MSYS2_BITS: 64 MSYSTEM: MINGW64 PATH: C:\msys64\mingw64\bin\;C:\Program Files (x86)\NSIS\;%PATH% - GETH_ARCH: 386 GOARCH: 386 CGO_ENABLED: 1 MSYS2_ARCH: i686 MSYS2_BITS: 32 MSYSTEM: MINGW32 PATH: C:\msys64\mingw32\bin\;C:\Program Files (x86)\NSIS\;%PATH% install: - echo %PATH% - echo %GOPATH% - set PATH=%GOPATH%\bin;c:\go\bin;%PATH% - go version - go env - gcc --version build_script: - IF EXIST .git\shallow (git fetch --unshallow --tags) - cd dist && release-windows.bat && cd .. artifacts: - path: '**\glitch*.zip' deploy: description: 'Glitch release' provider: GitHub auth_token: secure: y3+wTHgRTx60M3ZWVy29AzzWPBCFFHah7sRDHvh32pAYaxeKHRN6qNXFnb6IAKeX artifact: /dist\/glitch.*\.zip/ draft: false prerelease: false on: appveyor_repo_tag: true ================================================ FILE: audio/audio.go ================================================ package audio import ( "log" "sync" "time" "github.com/thestk/rtaudio/contrib/go/rtaudio" ) type Callback func(in, out []float32, sr, frames, inChannels, outChannels int) type Device struct { ID int `json:"id"` Name string `json:"name"` SampleRates []int `json:"sampleRates"` DefaultSampleRate int `json:"defaultSampleRate"` InputChannels int `json:"inputChannels"` OutputChannels int `json:"outputChannels"` } type Audio interface { Devices() []Device Current() Device Open(i, sr, bufSz, inChans, outChans int) Destroy() } type rt struct { sync.Mutex audio rtaudio.RtAudio cb Callback currentID int notify chan<- struct{} } func NewAudio(notify chan<- struct{}, cb Callback) (Audio, error) { audio, err := rtaudio.Create(rtaudio.APIUnspecified) if err != nil { return nil, err } rt := &rt{audio: audio, cb: cb, notify: notify} rt.currentID = -1 return rt, nil } func (rt *rt) Destroy() { rt.Lock() defer rt.Unlock() rt.closeAudio() rt.audio.Destroy() } func (rt *rt) closeAudio() { if rt.currentID != -1 { rt.audio.Close() rt.currentID = -1 } } func (rt *rt) Devices() []Device { rt.Lock() defer rt.Unlock() devices := []Device{} infos, err := rt.audio.Devices() if err == nil { for i, info := range infos { devices = append(devices, Device{ ID: i, Name: info.Name, OutputChannels: info.NumOutputChannels, InputChannels: info.NumInputChannels, SampleRates: info.SampleRates, DefaultSampleRate: int(info.PreferredSampleRate), }) } } return devices } func (rt *rt) Current() Device { devices := rt.Devices() rt.Lock() defer rt.Unlock() if rt.currentID >= 0 && rt.currentID < len(devices) && devices[rt.currentID].ID == rt.currentID { return devices[rt.currentID] } return Device{ID: -1} } func (rt *rt) Open(id, sampleRate, bufSz int, inChans, outChans int) { rt.Lock() rt.closeAudio() rt.Unlock() var inParams, outParams *rtaudio.StreamParams devices := rt.Devices() if id < 0 || id >= len(devices) { return } if inChans > 0 { inParams = &rtaudio.StreamParams{ DeviceID: uint(id), NumChannels: uint(inChans), FirstChannel: 0, } } if outChans > 0 { outParams = &rtaudio.StreamParams{ DeviceID: uint(id), NumChannels: uint(outChans), FirstChannel: 0, } } err := rt.audio.Open(outParams, inParams, rtaudio.FormatFloat32, uint(sampleRate), uint(bufSz), func(out, in rtaudio.Buffer, dur time.Duration, status rtaudio.StreamStatus) int { if status == rtaudio.StatusOutputUnderflow { return 0 } rt.cb(in.Float32(), out.Float32(), sampleRate, bufSz, inChans, outChans) return 0 }, nil) if err == nil { rt.Lock() rt.currentID = id rt.audio.Start() rt.Unlock() } else { log.Println(err) } } ================================================ FILE: audio/midi.go ================================================ package audio import ( "log" "sync" "time" "github.com/thestk/rtmidi/contrib/go/rtmidi" ) type MIDICallback func(msg []byte) type MIDIDevice struct { ID int `json:"id"` Name string `json:"name"` Connected bool `json:"connected"` midi rtmidi.MIDIIn } type MIDI interface { SetAutoConnect(bool) AutoConnect() bool SetConnect(name string, connect bool) Devices() []MIDIDevice Destroy() } type midi struct { sync.Mutex cb MIDICallback wg *sync.WaitGroup midi rtmidi.MIDIIn autoConnect bool connect map[string]bool inputs []*MIDIDevice configc chan struct{} exitc chan struct{} notify chan<- struct{} } func NewMIDI(notify chan<- struct{}, cb MIDICallback) (MIDI, error) { midiIn, err := rtmidi.NewMIDIInDefault() if err != nil { return nil, err } m := &midi{ cb: cb, wg: &sync.WaitGroup{}, midi: midiIn, notify: notify, autoConnect: true, connect: map[string]bool{}, configc: make(chan struct{}, 1), exitc: make(chan struct{}), } m.wg.Add(1) go m.poll() return m, nil } func (m *midi) SetAutoConnect(connect bool) { m.Lock() defer m.Unlock() m.autoConnect = connect m.configc <- struct{}{} } func (m *midi) AutoConnect() bool { m.Lock() defer m.Unlock() return m.autoConnect } func (m *midi) SetConnect(name string, connect bool) { m.Lock() defer m.Unlock() m.connect[name] = connect m.configc <- struct{}{} } func (m *midi) Devices() (devices []MIDIDevice) { m.Lock() defer m.Unlock() devices = []MIDIDevice{} for _, d := range m.inputs { devices = append(devices, MIDIDevice{ID: d.ID, Name: d.Name, Connected: d.Connected}) } return devices } func (m *midi) Destroy() { close(m.exitc) close(m.configc) m.wg.Wait() m.midi.Close() } func (m *midi) shouldConnect(name string) bool { connect, ok := m.connect[name] return (connect && ok) || (!ok && m.autoConnect) } func (m *midi) openDevice(d *MIDIDevice) (err error) { if d.midi, err = rtmidi.NewMIDIInDefault(); err != nil { return err } else if err = d.midi.OpenPort(d.ID, d.Name); err != nil { return err } else { d.Connected = true d.midi.SetCallback(func(_ rtmidi.MIDIIn, msg []byte, _ float64) { m.cb(msg) }) } return nil } func (m *midi) closeDevice(d *MIDIDevice) { d.Connected = false d.midi.CancelCallback() d.midi.Close() } func (m *midi) poll() { defer m.wg.Done() for { if changed, err := m.pollOnce(); err != nil { log.Println(err) } else if changed { m.notify <- struct{}{} } select { case <-m.exitc: return case <-m.configc: case <-time.After(time.Second): } } } func (m *midi) pollOnce() (changed bool, err error) { m.Lock() defer m.Unlock() // Get a list of currently connected devices n, err := m.midi.PortCount() if err != nil { return changed, err } names := make([]string, n, n) for i := 0; i < n; i++ { name, err := m.midi.PortName(i) if err == nil { names[i] = name } } inputs := []*MIDIDevice{} // Close and remove disconnected devices for _, d := range m.inputs { if d.ID < len(names) && d.Name == names[d.ID] { inputs = append(inputs, d) } else { m.closeDevice(d) changed = true } } // Add newly connected devices and change connection status if needed m.inputs = inputs for i := 0; i < n; i++ { var device *MIDIDevice for _, d := range m.inputs { if d.ID == i && d.Name == names[i] { device = d break } } if device != nil { if device.Connected && !m.shouldConnect(device.Name) { // Existing device should be disconnected m.closeDevice(device) changed = true } else if !device.Connected && m.shouldConnect(device.Name) { // Existing device should be connected if err := m.openDevice(device); err != nil { return changed, err } changed = true } } else { // New device should be connected device = &MIDIDevice{ID: i, Name: names[i], Connected: m.shouldConnect(names[i])} if device.Connected { if err := m.openDevice(device); err != nil { return changed, err } changed = true } m.inputs = append(m.inputs, device) } } return changed, nil } ================================================ FILE: cmd/glitch/app.go ================================================ package main import ( "io/ioutil" "log" "os" "path/filepath" "time" "github.com/naivesound/glitch/audio" "github.com/naivesound/glitch/core" "github.com/zserge/webview" ) type App struct { glitch core.Glitch audio audio.Audio midi audio.MIDI notify chan struct{} webview webview.WebView sync func() *Config IsPlaying bool `json:"isPlaying"` Text string `json:"text"` Error error `json:"error"` AudioDevices []audio.Device `json:"audioDevices"` MIDIDevices []audio.MIDIDevice `json:"midiDevices"` } func NewApp(config *Config) (app *App, err error) { app = &App{Config: config} loader := &sampleLoader{} go loader.poll() core.Loader = loader core.Init(config.SampleRate, uint64(time.Now().UnixNano())) app.glitch = core.NewGlitch() app.notify = make(chan struct{}, 256) if app.midi, err = audio.NewMIDI(app.notify, func(msg []byte) { app.glitch.MIDI(msg) }); err != nil { app.Destroy() return nil, err } if app.audio, err = audio.NewAudio(app.notify, func(in, out []float32, sr, frames, inChannels, outChannels int) { samples := out if app.IsPlaying { app.glitch.Fill(samples, len(samples)/outChannels, outChannels) } else { for i := 0; i < len(samples); i++ { samples[i] = 0 } } }); err != nil { app.Destroy() return nil, err } app.AudioDevices = app.audio.Devices() app.MIDIDevices = app.midi.Devices() url := startServer() app.webview = webview.New(webview.Settings{ Width: windowWidth, Height: windowHeight, Resizable: true, URL: url, ExternalInvokeCallback: func(w webview.WebView, data string) { if data == "__app_js_loaded__" { app.sync, err = app.webview.Bind("app", app) if err != nil { log.Println(err) } else { w.Eval(`init(); app.render();`) go func() { for range app.notify { app.webview.Dispatch(func() { app.AudioDevice = app.audio.Current().ID app.AudioDevices = app.audio.Devices() app.MIDIDevices = app.midi.Devices() app.sync() }) } }() } } else { log.Println("unhandled external invoke:", data) } }, }) for midi, connect := range config.MIDI { app.SelectMIDI(midi, connect) } app.SelectAudio(config.AudioDevice, config.SampleRate, config.BufferSize) app.Load(config.Filename) return app, nil } func (app *App) Run() { app.webview.Run() } func (app *App) Destroy() { close(app.notify) if app.webview != nil { app.webview.Exit() } if app.audio != nil { app.audio.Destroy() } if app.midi != nil { app.midi.Destroy() } if app.glitch != nil { app.glitch.Destroy() } } func (app *App) NewFile() { if name := app.webview.Dialog(webview.DialogTypeSave, 0, "New file...", ""); name != "" { app.Load(name) } } func (app *App) LoadFile() { if name := app.webview.Dialog(webview.DialogTypeOpen, 0, "Open file...", ""); name != "" { app.Load(name) } } func (app *App) Load(path string) { app.glitch.Reset() app.Filename = path os.MkdirAll(filepath.Dir(path), 0755) app.webview.SetTitle("Glitch - " + path) if b, err := ioutil.ReadFile(path); err == nil { app.Text = string(b) } else { app.Text = "" } app.Error = app.glitch.Compile(app.Text) app.Config.Save() } func (app *App) SetVar(name string, value float32) { app.glitch.Set(name, value) } func (app *App) ChangeText(text string) { app.Text = text app.Error = app.glitch.Compile(app.Text) ioutil.WriteFile(app.Filename, []byte(app.Text), 0644) } func (app *App) SelectAudio(id, sampleRate, bufsz int) { devices := app.audio.Devices() if id < 0 || id >= len(devices) { return } in := 0 out := 1 if devices[id].InputChannels == 0 { in = 0 } if devices[id].OutputChannels == 0 { out = 0 } app.audio.Open(id, sampleRate, bufsz, in, out) app.AudioDevice = id app.BufferSize = bufsz app.SampleRate = sampleRate core.Init(sampleRate, uint64(time.Now().UnixNano())) app.Config.Save() } func (app *App) SelectMIDI(name string, connected bool) { app.Config.MIDI[name] = connected app.midi.SetConnect(name, connected) app.Config.Save() } func (app *App) TogglePlayback() { app.IsPlaying = !app.IsPlaying } func (app *App) Stop() { app.glitch.Reset() app.glitch.Compile(app.Text) app.IsPlaying = false } ================================================ FILE: cmd/glitch/assets.go ================================================ package main import ( "bytes" "compress/gzip" "fmt" "io" "strings" ) func bindata_read(data []byte, name string) ([]byte, error) { gz, err := gzip.NewReader(bytes.NewBuffer(data)) if err != nil { return nil, fmt.Errorf("Read %q: %v", name, err) } var buf bytes.Buffer _, err = io.Copy(&buf, gz) gz.Close() if err != nil { return nil, fmt.Errorf("Read %q: %v", name, err) } return buf.Bytes(), nil } var _app_js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x3b\xeb\x72\xdb\xb6\x9a\xff\xfd\x14\x48\xce\x6e\x48\x9d\x50\x94\xed\xa4\xad\xab\xac\xb6\xe3\x38\x4e\xeb\xd9\xe6\x32\xb1\x73\x72\xba\x8e\x57\x03\x91\x9f\x24\xd4\x20\xc0\x02\xa0\x6d\x25\xd2\x73\xec\x03\xed\x8b\xed\xe0\x42\x12\xbc\xc8\x76\xdb\x34\xbb\x9c\x69\x43\x83\xdf\x0d\x1f\xbe\x2b\x00\x05\x85\x04\x24\x95\x20\x89\x0a\x9e\xed\xec\x5c\x61\x81\x96\x68\x82\x72\x92\xf0\x94\x67\xf1\xf2\xd9\xce\xce\xbc\x60\x89\x22\x9c\x21\x22\x3f\xc0\xec\x1f\x04\xae\xc3\x01\xfa\xbc\x83\x90\x12\x2b\xf3\x2f\x42\xd7\x84\xa5\xfc\x3a\x86\x1b\x05\x82\x61\x1a\x13\x76\xc5\x2f\x21\x0c\x82\xc1\x33\xf3\x5d\x80\x2a\x04\x43\x4a\x14\xa0\x07\x36\x28\xc1\x2a\x59\xa2\x10\x06\x8e\x80\x03\x98\x63\x2a\x2d\xc4\xce\x66\x67\x67\x34\x42\x09\xc5\x6c\x31\x9c\x73\x91\x61\x85\xf8\x7c\x5e\x0b\xf3\xfe\x24\xc4\x79\x6e\xf1\x1d\xf6\x32\x0c\x52\x72\x15\x44\xe8\x73\x42\xb1\x94\x63\x14\x24\x9c\x29\x4c\x18\x88\x60\x13\x19\x3e\xee\xb9\x86\xd9\x4f\x80\x53\x10\x86\x46\xe3\x13\xce\xf3\x0f\x66\x36\xdd\x4f\xd7\x30\x7b\xc9\xb9\x72\x58\x83\x67\x5a\xc6\x4a\x9e\x9a\x64\x5b\xa6\xa5\x19\xf6\xc5\xba\x86\x19\xce\xf3\xa1\x5c\xf2\x6b\xd6\x92\x6c\x19\x06\x79\x10\x21\x56\x50\xda\x18\x37\x5f\x96\x7b\xe5\x27\x14\xfc\x6d\x41\x89\x4a\x96\xc1\xa0\x05\x86\x50\x30\x5b\x21\x86\xc9\x15\x48\x5e\xb0\xb4\x05\xb0\x0c\x83\x82\x6e\x65\x40\x49\xc5\x60\x19\x06\x58\xcb\xac\xb0\x58\x80\x1a\xa3\x60\x3a\xa3\x98\x5d\x06\x11\x5a\x0a\x98\x8f\x51\xb0\x54\x2a\x1f\x8f\x46\x35\xa7\x38\xe1\xd9\x28\x17\x3c\x2d\x12\x25\x47\x4e\xbc\x4d\x84\x02\x3c\xe3\x85\x0a\x06\x6d\x49\xff\x00\x3f\x39\x1e\x8d\x0c\xaf\x84\xf2\xc2\x32\xf4\x66\xaa\x79\xc1\x0d\xce\x72\x0a\xf2\x8b\xb1\x5b\x10\xb5\x2c\x66\x2d\x56\xfe\xec\x2c\xc0\x57\xe1\x37\x9a\x51\x3e\x1b\x65\x58\x2a\x10\xa3\xc3\xb7\x27\x71\x66\x27\xbd\x04\x9a\x07\x83\x41\x67\xa5\x5b\xde\x60\xbd\x74\xa8\x88\xa2\x30\x9c\xe1\xb6\x53\xdc\x07\x65\x38\x2b\x94\xe2\x2c\xd8\xf4\xcc\xf6\x6b\xa0\xf6\x78\x9d\x73\xc9\xb6\xd7\xcd\xcd\x70\xd0\x82\x6f\x7a\xf7\xed\xc1\x43\xbb\xa8\x95\xa4\xa5\x28\x48\x89\xe2\x3d\xa1\x23\xe3\x29\xa6\x7a\x38\x36\x6f\xaf\x71\x06\x68\x32\x41\x81\x04\xa5\x08\x5b\xc8\x20\xd2\xfc\x23\x54\xfe\x6d\xc3\x48\x93\xb4\x10\x5c\x3c\xc7\x3d\xc4\x15\xe7\x74\x86\x7b\x43\x8f\x27\x8f\x99\x91\x0e\xe2\x8a\xa4\xcf\xdc\x2b\x67\x89\x00\xac\x00\x4d\x50\x89\x12\x02\x2d\x23\xef\x11\x4f\xe1\x15\xd1\x6c\xe3\x14\xe6\x84\xc1\x2b\x9e\x42\xf8\xd0\x1a\xdc\xc3\xa8\x46\x29\x11\x50\x35\x84\x14\xbf\x04\x46\x3e\x41\x28\x95\x00\x9c\x45\x48\x2a\xac\xa0\x06\xb4\xfc\x13\x34\x41\x16\x20\x66\x70\xa3\x42\x97\x13\xf4\x43\xe6\x28\x1c\x7d\x4c\x47\xb1\x02\xa9\xc2\x64\xe0\xa3\xa2\x12\x09\xb0\xfa\xb0\x24\x14\xc2\xd1\xf9\xc7\xf4\x63\x7c\x31\xf2\x08\x54\xcb\xf7\x90\x15\xd9\x0c\xc4\xc3\xfa\xd3\x06\x01\x95\x60\x58\x24\x7a\x19\x1e\xfe\xed\x61\x2f\x79\x79\x49\xf2\x33\x7e\xcc\xd2\xb0\x97\x6e\xc2\xb3\x0c\x98\xea\x27\x3c\x3a\x1f\x3e\xfe\xfb\xc7\xd1\xbf\x3e\x5a\xff\xd7\x83\xc9\xbf\xfd\x7b\x74\xb1\x65\x26\x25\x31\x9e\x83\xc0\x8a\xdf\x26\x66\x10\x06\x68\xbd\x46\xf6\x7d\x10\xdc\x41\x67\x3b\x99\x7f\x69\xa1\xea\x2f\xb5\x42\xb5\xd6\x1f\x8f\x5a\x52\xd6\xf4\xaf\xb0\x20\x78\x46\x61\xf8\xe4\xa1\xaf\x93\x4d\x8f\x28\xb3\x82\x50\x45\x58\x47\x92\x3b\x16\xf2\xfa\x63\x3a\xfd\xdb\xc5\xe3\xd1\xa0\x17\xec\x34\xc7\x09\x34\xd7\xc3\x93\x3f\x07\xb8\x0c\x07\x4e\x59\xed\x29\x68\x8b\x93\xb5\xc5\x25\x85\x10\xc0\x54\x93\x96\x33\xbc\xe5\xa7\xb5\x24\x6c\xad\x04\x59\x4b\x7c\xbd\x96\xbf\x89\x35\xcd\xe7\xeb\x65\x3e\x5f\xcf\xf4\x7f\x72\xbe\x56\xe2\x60\xf7\x60\x9d\xd3\x22\xb9\x5c\xcf\xb3\x75\x0a\x14\xaf\xd6\xc0\xd2\x75\x46\x6e\xd6\x12\x7e\x5b\x53\xce\xf3\x35\x5e\xcb\x35\x5d\x0b\xb7\xf8\xb2\xa3\xd6\x5a\x5b\x97\xb0\xba\xe6\x22\x7d\xd8\x94\x66\x73\xfb\x22\xec\xdf\xb9\x08\x25\xa8\x6f\x57\x3b\xcd\x7f\x1d\x68\x2d\x98\x54\x58\xa8\x53\xed\xb0\xe3\x3e\x27\xef\xc5\x41\x26\x10\x59\xa7\x1f\x57\x6f\x7e\x9c\xda\x78\x12\xd4\xe3\x06\xd2\x63\xb3\x35\x5e\xb4\xed\xd4\x19\xc2\xa0\x14\x45\x27\xd3\x1e\x2f\x35\x74\xe2\x2d\xe1\xa8\x47\x22\x27\xe5\xc6\x7d\xd3\x21\xdb\x06\x51\x34\xf1\x03\xe2\x5c\xf0\xec\x0c\x6e\xd4\xa1\x00\x1c\x02\x8d\x2a\x41\x29\x61\xf0\xda\x04\x1c\x89\xc6\xa6\xac\x2d\x29\xab\x25\x64\x80\xc6\x28\xc8\xb0\x02\x41\x30\x0d\xca\x2f\xb8\x50\x7c\xce\x93\xa2\x8d\x91\xe9\x52\xf8\xb9\xc0\xc9\x25\x28\xd9\xfc\xa4\x51\x8e\x28\x97\xd0\xff\x59\x26\x82\x53\x9d\x14\x4e\xd5\x8a\x1a\xa6\x92\xe8\xe2\xc7\xb1\xec\xce\x2e\x96\xa0\xfe\x81\x69\x01\x26\x49\xa5\x58\xe1\x58\xc1\x8d\xea\xc2\x71\x16\x06\xc9\x12\xb3\x05\x04\x5e\x06\x48\xb2\x08\xd9\xd1\x7a\xc9\x12\x0a\x58\x9c\x91\x0c\x78\xa1\x42\x45\xd2\x4a\xdb\x8a\xa4\xda\x0b\x41\x95\x1f\x7b\x6d\x4c\xf3\xb4\x24\xb5\x9e\xc3\x24\x8b\x17\xa5\x88\x83\x8a\xd4\x26\x42\xfb\xdf\xec\x0e\xfc\x35\xdb\x94\xc9\x0d\x28\x9a\xf4\xe4\x6e\x3b\x8f\xe9\xf4\x5a\xe0\x3c\x07\x31\x9c\x93\x1b\x48\xef\x51\xef\xb4\xf1\x78\xa1\x3a\xcd\xc3\xfd\x30\x09\xeb\xb6\x1d\x15\xae\xd6\x3a\x16\x80\xfb\x08\x78\xdf\xca\xcc\x3d\xae\xde\x74\x05\x64\x14\xa0\xdd\xc4\x33\xdb\x47\x8f\x50\x63\x49\xd1\x83\x89\xbf\x9e\x9e\x52\x9d\xf2\xef\x67\x14\x9b\xba\x3e\x02\xda\x2a\x3a\xfc\x4a\xe5\xf6\x42\xca\x80\x0e\x53\x82\x29\x5f\x04\xda\x2b\x57\x14\xc6\xe8\x73\x4a\x64\x4e\xf1\x6a\x8c\x6a\xc6\x06\x12\xfd\x80\x82\x19\xe5\xc9\x65\xa0\x4d\x9a\x71\x06\xc1\x60\xd3\x54\x64\xe9\x5c\x27\x89\xb6\xd4\x8f\xc5\xf1\xee\xee\x6e\xd0\x2e\x8b\x6c\x39\x76\x45\x24\x99\x51\x70\xa5\x97\x6e\x08\x81\x29\xb9\x45\xe2\xc6\x62\x95\xe2\x1b\x3a\xc3\x19\x4e\x2e\x17\xc2\xf4\x19\xcd\x35\xed\x4e\xc7\xb1\xec\x9d\x47\x13\x97\xb3\x84\x92\xe4\xb2\x19\x80\x51\x55\x41\x86\x83\x67\xa8\x81\xb1\x89\xee\x25\x6c\x70\x17\x17\xe8\x66\x28\x88\x73\x01\x57\xc0\xd4\x0b\x98\xe3\x82\x76\x32\xa6\x86\x90\x8a\xe7\x6f\x05\xcf\xf1\x02\x5b\x61\xb7\xa7\xb1\x8d\xa7\xeb\xd6\xba\x34\xca\xdf\xaa\x60\x95\xa6\x6f\x7b\x87\x15\xe8\xec\x7d\x7e\xe1\x1b\xb9\xb1\x0d\x5c\xa4\x84\xbf\x80\x2b\x92\x80\x3c\xef\x1b\xbd\x28\x27\xd5\x24\xf5\x3b\x08\xc4\x1e\x66\xcb\xfc\x2b\xb5\x77\x1a\xe7\xae\xbd\x5b\x83\x71\x6d\xbf\xee\xcf\x4e\x8f\xcf\xce\x4e\x5e\xff\x78\x1a\xdc\x19\x7f\x7c\xd4\x61\xa2\x43\xbf\x0d\x03\x77\x5a\x89\x66\xf3\x3f\xff\xdd\xee\x42\xb7\x31\x70\x4b\xd3\x17\x10\xe7\x5c\x64\xfd\xfb\x03\xdb\xc9\x69\x9c\xa1\x76\x8e\x7c\x5b\xc0\xa3\x78\x06\x74\x0b\x62\xf9\x6d\xce\x85\xee\xba\xf4\x7a\x0c\x53\xb3\x20\x43\x09\x14\x12\x65\x74\x78\xa8\xc7\x91\x1d\x1f\xf7\xec\x7a\x18\x36\x0e\xbe\xed\x1c\xee\x21\xe9\x16\xfa\x3d\xc4\xda\xee\x6f\x24\xbd\xd2\x61\xb2\x1f\xda\x7c\x1a\xa3\x20\x78\xdc\x67\x59\xbd\x28\x9c\xd9\xcc\xb7\xb5\xfc\xf2\x1e\x4d\xd4\x0a\x6b\xf4\x10\x3e\x56\x4b\x22\x63\xc3\x34\xaa\x2d\xbc\x36\x5f\x6f\x70\x56\xcc\xe7\x20\x4e\xc9\x27\xe8\x78\xb4\x79\x36\xdd\xc1\x4d\xd4\xef\x35\x71\x86\xf3\xb0\xa7\x87\x6c\x3d\xb5\xcb\xf0\x5c\x43\xea\xf5\xa8\xf5\x03\x34\x26\xe9\x26\x42\x40\x63\x86\xb3\x5e\xa1\x36\xed\xbd\x0c\xf4\x95\x8c\xcf\x2a\x70\x28\xb0\x6a\xd8\xde\xa9\x19\x46\x7a\xf8\xcf\x98\x5e\x0f\xf5\x2f\x67\x79\x7d\x46\xf0\xa5\xad\xae\xd7\xb4\x51\xbf\x2d\xfe\x31\xb3\xf3\x02\xf0\x9f\x37\x36\xa0\xc6\xcc\xfe\x5f\x59\x98\x55\xcb\x50\x92\x4f\x0d\x0b\x7b\x6e\x86\x91\x1e\xfe\x33\x16\xd6\x43\xfd\x2f\xb0\xb0\x7a\x69\xbf\x92\x85\xf5\x06\x38\xcf\xec\x7e\x8f\x85\x9d\x7f\xfb\x34\x42\x7b\xfb\x07\xba\xa7\xf8\x36\x42\xdf\xec\xed\x47\x68\x6f\x77\xff\x69\x84\xf6\x77\x9f\x1e\x44\xe8\xe9\xee\xf7\xdf\x46\xe8\x60\xef\xfb\xfd\x8b\x2f\x66\x81\xe8\x31\xaa\x8e\x42\x9a\xf2\x0c\xba\x76\xb8\xbd\xd2\x40\x7f\xb1\x8d\x6a\x43\x7c\x75\xf2\xe2\xc4\x65\x59\xb9\xd5\x12\xb7\x4b\x60\xad\xa8\x4f\x02\x54\xaf\x62\x46\x52\x52\x66\x14\x0a\x6c\xa1\x96\x68\x32\x41\xbb\xe8\x87\x7e\x1b\x69\x2a\x04\x05\xa1\x2e\xa5\x07\xc1\x00\x8d\xb7\xdb\x54\x87\x4f\x6b\x29\x23\x44\xb6\xda\xa4\xad\x47\x4d\xfb\x1a\x68\x12\xc3\xe0\x31\xe9\x35\x30\x84\xee\x51\x1e\x6e\x9b\x52\xb5\x1c\xba\xe2\x0a\xc6\x48\xe7\xc4\x3b\xf1\x0c\x26\x61\x79\xb1\x35\x0c\x74\x1e\xb5\xca\x75\xde\x4d\x96\x90\x5c\xce\xf8\x4d\xbf\x87\x77\x1e\x03\x0e\xa9\xb6\xe0\x38\xe1\x8c\x41\xa2\x20\xbd\x1f\xaa\x4e\xea\x7a\x3a\xf7\x83\xd6\x61\xeb\xbe\xb0\xbf\x27\xb0\x74\x9e\x3a\xd2\x68\x13\x0f\x5d\xf5\x11\xa1\x07\xfe\x0c\xfb\x03\x49\xe7\xb9\xd7\x4a\x75\xce\x39\x7a\x9f\xb2\x0a\xda\x12\xc2\x06\x83\x41\xe7\xcc\xc3\x3f\x09\xa8\xda\x27\x92\x70\xa6\xbb\x1d\xd7\xdd\xa7\xe9\xb8\xdb\x24\xef\x3d\xfd\xa6\xf4\xe8\x39\xa7\x29\x88\x37\x39\xb0\x1e\xb8\xfd\xa3\x83\x12\x4e\x77\xb4\x87\x42\xf0\xeb\x1e\xb0\xdd\x27\xdf\x55\x60\xb8\x90\xd0\x0b\xf2\xb4\x04\xd1\xbd\x63\x1f\xc4\xd3\x8a\x48\xd9\x17\xf6\x40\x1d\x3c\xaf\x24\x5a\x02\xed\xa3\x73\xf0\xf2\x85\x85\x30\x3b\x43\x5b\xb7\x22\x9c\xee\xba\x87\xae\xf7\x3e\x14\xed\x6b\xbe\xbd\x8c\xea\x18\x4c\xa7\x33\xc5\x50\x0a\xf2\x52\xf1\x7c\xc8\x19\x5d\x75\x1d\xaf\x6a\xeb\xb4\x69\x32\xb8\x7e\x49\x28\xc4\x33\xc2\xd2\xee\xe1\x8f\xc9\x5c\x66\x89\x63\x9c\xa6\x77\x1f\x35\xfe\x45\x42\x52\x8e\xd3\xfb\x49\x59\xdb\xd7\x17\x15\x76\xbb\x7c\x5a\x3c\xc5\x17\x0b\x0a\x6f\x29\x5e\xcd\x70\x72\x79\x9b\x90\x75\x9d\x41\xa4\x86\x27\x6c\x81\x7e\x70\xa2\x1b\x5b\x46\xe3\xf2\xaf\xd2\x01\x7a\x13\xf5\x5f\x30\x11\x1b\xa8\x14\xcf\xef\x56\xb2\x86\xfa\x3f\xb1\x85\x2d\xfb\x10\xf5\x41\x67\x7b\xdf\xaa\x21\xb5\x03\xfa\x5a\xfa\x6c\x08\xeb\x2e\xaa\xf0\x1c\x58\xf8\x87\x8f\xdc\x6f\x9b\x9d\x0e\x4f\xdd\x90\xdd\x08\x57\x1a\xb0\xbd\xff\x48\x1a\xf5\x94\x83\x1e\x1a\x92\xd5\x8e\x69\xbd\xc3\x18\x10\x46\x09\x33\x7b\xf3\x9c\xa9\x53\x73\x18\x13\x3c\xd9\xcf\x6f\x82\xc8\x1c\x4d\xfc\x04\x64\xb1\x54\x63\x14\x7c\xfb\x34\xbf\x09\x36\x4e\xb8\x96\x4c\x4b\x92\xc2\xcf\x1c\xa7\x84\x2d\x4e\x58\x4a\x12\xac\x78\x79\x8a\x9e\xf2\xa4\xc8\x80\xa9\x78\x01\xea\x98\x82\x7e\x7d\xbe\x3a\x49\xc3\x80\x5a\xf8\xa1\xcc\xed\xf6\xf6\x20\x36\xa2\xc5\x4e\x32\x5d\x31\x99\x7d\x4e\xcd\xa9\x73\x7b\x87\x79\xcc\x3f\xc0\xec\xdd\xdb\xa3\xb0\xce\x5f\x2f\x8e\x5f\x1e\xbe\xff\xf9\x6c\x7a\xfa\xe6\xf5\x8f\x68\x82\x1e\x9a\x93\xac\xd1\x08\xbd\xe0\xd7\x4c\x73\x45\x58\x66\xf1\xaf\x12\x71\x81\xe2\x6b\x2c\x33\x94\x70\x01\x3b\xd5\xcd\xa3\x57\x3c\x2d\x28\xa0\x49\xeb\xef\xf5\x1a\x7d\xae\x8e\x0a\x64\x22\x48\xae\xd0\xa4\x9e\x9e\xdd\x53\x77\x33\x0c\x03\x0b\x60\x0b\x75\xfb\x1e\xeb\xea\x49\xcf\x4a\xc1\x8d\x1a\xfd\x8a\xaf\xb0\x83\xf1\x40\xb0\x5c\xb1\x04\x4d\xea\xbb\x4b\x64\x8e\xc2\xe0\x03\xcc\x0e\xa5\x84\x6c\x46\x57\x01\x22\xcc\xc9\x55\xed\x50\x5a\x54\x29\x34\x62\x60\x2d\x6d\xa8\xa7\x09\x22\xfe\x55\x06\xf6\x8e\x94\x77\x8c\xda\x0b\x6f\x35\x12\x94\x1b\x95\x3d\x8b\x26\x9f\xaf\xce\xf0\xe2\x35\xce\xc0\xde\x42\x0a\x06\xe7\xbb\x17\x31\xce\x73\x60\xe9\xd1\x92\xd0\x34\xb4\x84\x07\xcf\x76\x9c\x8e\x4c\xdb\x75\xc4\x99\x39\x43\x98\x20\x06\xd7\xa5\x46\x0f\xbd\x2f\x76\xe3\xd7\xf4\x5f\x3a\x88\x56\x65\x87\xfe\x36\x46\x81\x73\xc6\x2a\xb4\x8e\xad\x6e\xec\xa8\xbf\x9f\x34\x46\xe7\x17\x76\xd4\x2b\xd5\xeb\xc1\xba\xdb\x1b\x37\x04\xeb\x6c\x71\x78\x34\x4b\xf6\x1b\x33\x25\x23\x22\x61\x44\xf9\x77\x1f\xca\x45\xb0\x36\x12\x27\x09\xa6\x34\xac\xdc\xd9\x69\x77\xaa\xb1\xaa\x60\x74\x1e\xd8\xeb\x05\x41\x84\xca\xb7\x8b\x3a\x02\x9c\x6f\x13\x0e\xed\x5e\xb8\xba\x4e\xeb\x56\xdb\x75\x83\x67\xc9\xca\x9a\x61\xcd\xec\x42\xff\xe7\x10\xcd\x0c\x16\x68\x82\x7e\xb4\x7f\x6b\xe3\x62\xf8\x8a\x2c\xb4\xbb\xc6\x02\x7e\x2b\x40\x9a\x8a\xf6\x30\x49\x40\xca\xba\x1e\xbe\x05\x28\x1c\xc4\x6a\x09\xac\xee\x87\xb4\xf6\xfd\x4a\xba\x3e\xe4\x61\x45\x06\x02\x2b\x68\x15\xda\xa6\xe2\xd4\x6d\x88\x2e\x39\x35\x76\x6c\xff\xb2\xed\xb8\x6c\x1e\x0c\xcc\xb9\x40\x61\x85\x81\x26\x0e\xb3\xbc\x0c\xe2\x86\x1f\x3d\x42\x0f\xcc\x5b\x9c\x72\x06\x9d\x6a\xb8\x17\xb7\x5d\xfd\x5b\x7c\x23\x43\xcc\x99\x96\x2b\x03\x29\xf1\xa2\x71\xf5\x25\xeb\xf6\x0c\xfd\x96\x50\x3f\xe5\x42\x69\x8a\xb7\xd9\x44\xdf\xdb\x45\x5f\x17\x70\xfe\x63\x84\x32\xe3\x3b\xe7\xbb\x17\xd5\xeb\x5e\xfd\xba\x7f\x71\xd1\x3e\x5c\xe9\xbf\x03\xe0\x0d\x7b\x8b\x55\x0f\x9a\xc5\xe1\xcc\x9c\x84\xdb\xee\x09\x4d\x6a\xc8\xea\x84\xb5\x3c\x5c\xdd\xa9\xac\xf5\xf0\xfd\x8b\x93\x37\xd3\xe7\xef\x5f\xbe\x3c\x7e\x37\x3d\x3d\xf9\xcf\x63\x34\x31\xfb\x24\xb5\x3d\xe7\x49\x86\x26\x4d\xc7\xb4\x96\x7c\x6a\x82\xca\x5b\xc1\xb5\xb1\x71\x11\x76\x48\x45\x68\x37\x42\x7b\x9e\x6b\x60\x86\xe9\x4a\x82\xe8\xa7\x77\xe8\xbe\x86\x36\x4e\xa1\x0a\x3c\x9e\xcf\x4d\xf6\x6b\x88\x56\x7d\x94\x19\xe7\x6a\x49\xd8\xe2\x8c\x64\x70\x64\x74\xc0\xb4\x09\xed\xb6\xe0\x5c\xf7\x17\x36\x38\xa7\x20\x15\x61\xe6\x98\xcb\xc9\x99\x27\x59\xcc\x99\x01\xca\xed\xd4\xd0\x04\x15\xcc\x5e\x9a\x4a\x9d\x64\xc6\x5d\xfd\xd9\xb8\x57\xcf\x99\xad\xda\xf2\x24\x73\x28\xda\xa3\x5d\x8c\xa5\x3c\x31\x1c\xe3\x25\x96\xcb\xda\x4c\xab\x40\x1b\xbb\xb0\x9c\x42\xc2\x53\x78\xff\xee\xe4\x88\x67\x39\x67\x3a\x79\xf5\x51\x88\x65\x31\x93\x4a\x10\xb6\x08\xf7\xca\x06\xd3\xbb\x27\xa4\x61\xe9\xa9\xe2\x02\x2f\x40\x27\x8d\x13\x05\x59\x18\xc0\x4d\x2e\x82\xc1\x2d\xcc\x6f\x43\x6b\xf0\xd8\x4a\xc1\xcf\xf5\xa5\xdd\x6d\xd3\x84\x04\x2c\x92\x25\x9a\x4c\x26\x28\xf8\x41\xd7\x18\x41\x4b\xb4\x66\xd1\x1f\x0e\x7c\x82\x06\xc0\xbb\x5e\xd0\x94\xc4\x81\xf6\xd7\x41\xde\x82\x09\x60\x29\xb8\x21\x2f\xad\x08\x98\x0b\x90\xcb\x56\x66\xf1\x00\xcc\xb9\xba\xf0\xbf\xdb\x1d\x07\xbb\x65\xd9\x93\x84\xd0\xa3\x47\x3b\x77\x87\xa4\x32\x18\x49\xe8\xcf\x4f\x76\xc5\xb7\x47\xa0\x73\x9b\x52\x22\xe4\x49\x73\xd1\x9e\x5c\xad\x34\x5f\x7e\xa3\x35\x27\xb8\x76\x5b\xd1\xce\x68\x9d\x2c\x9a\xf0\x2c\x27\x14\x1a\x91\xf1\xbe\xc2\x56\x82\x6a\xb6\xf6\xff\x6e\xbb\xb0\x8c\x8d\xda\x60\x04\x7a\x30\x41\xbb\x7d\xf6\x6a\x2f\x13\x4c\x50\x70\xba\x62\x0a\xdf\xd8\x1b\x0b\xc1\x1d\x26\x5a\x22\xf9\x17\x8d\xfa\x7c\xcb\x44\xd1\x8e\x17\x7a\x66\x85\x9a\x8e\x22\x1b\x8e\x62\x67\xd3\xb5\x55\xdf\x4b\xf4\x3f\x77\x5b\xa1\xdb\x37\xe8\x5a\xa1\xfb\x5e\xb6\xec\x5b\x01\x74\x13\x79\x67\x75\x54\x2e\xa7\x80\x5e\xab\xd3\x05\x8b\x5d\x2c\x7f\x65\xea\x19\x55\x95\xe0\x97\xf6\xdd\xdb\x34\xd3\x24\xde\x37\xc5\x1e\x01\xd1\x04\x3d\xe8\x19\xfe\x3d\x93\xd2\x79\xa2\x4c\x29\x8d\x74\x50\x5f\x8d\x2a\xc1\x3a\xe9\xc4\xc2\x9b\x3c\x84\x29\xad\x77\x31\xf4\xf8\x2d\xc1\x55\xd3\x4a\x89\x2c\xb9\xde\x83\x91\x97\xb7\x5a\x2a\xdf\xa2\xcd\x86\x50\x8d\x9b\xc4\x7e\x40\xa0\xc0\xb4\x63\xc4\xbc\x50\x79\xa1\xec\xa1\x96\xf3\xd9\x3a\xd9\x6b\x10\x0d\xf8\x77\xf4\x92\x72\xac\x9e\xec\x1f\x0a\x81\x57\xf1\xf3\x5f\xce\x8e\x4f\xa7\x6f\x8f\xdf\x4d\x8f\x7f\x3e\x7e\x75\xfc\xfa\xcc\xab\x34\xea\x38\x33\xcd\x30\xa5\x3c\x09\x99\x57\x3d\x2c\x01\xe7\xae\x59\x79\x4f\x98\x3a\x30\xf4\x42\x87\xf0\xd3\xf1\xe1\xdb\xf7\x07\xee\xcc\x2a\x42\x79\x84\x4a\x54\x8d\xa6\xfd\x32\x6c\x21\x5a\x50\x87\x31\x28\x6b\x8e\xdb\xe3\xdc\x9c\x50\xfa\x27\x2a\xc3\x2a\xd4\x19\x99\x66\x2b\x05\x6f\xe6\x73\x09\x2a\xd2\x8a\x8a\xd0\x9e\xdf\x46\x08\x90\x05\x2d\x9b\x33\x5f\x83\xa1\x45\x76\x13\xed\xa3\xe4\xa8\xb4\xd6\x27\xe1\xf9\xea\x8c\x1f\x2d\x31\x63\x40\x43\x4b\xde\x54\x68\xe5\x95\xbb\x52\xf5\x73\x01\x10\xe6\x9e\x65\xd8\x0f\xe7\x01\x67\xef\x0a\xa6\x48\x06\x27\x8c\x28\x82\x29\xf9\x04\x69\x70\x51\xda\xb3\xee\xa4\x5a\x66\x5c\xfe\x1e\x68\x49\xa4\xd9\x94\x30\x35\x60\x9e\x37\x7e\x6c\xc4\x88\x72\x9e\x8a\xf3\xdc\x99\x65\x9f\x17\x3b\x5a\xe6\x42\x9b\x6d\x7b\xbd\xdf\x2f\xe5\x58\x25\xcb\x4e\x49\xaf\x61\x39\x4d\x5f\xf3\x14\xdc\x5e\xa0\xfb\x0b\x4d\xdc\xef\x8a\xea\x33\xc7\xc1\x20\xf2\x69\x7b\xb3\xaf\x36\xbe\xda\x29\xde\xbf\x63\xe7\xfd\x12\xc0\x24\xdc\xfa\xaa\x65\xd7\xd1\x46\x23\x74\xa4\x04\x7d\x7c\xcc\x14\x08\xa4\x38\xb2\x21\xcc\x6c\xc2\x6b\xb7\xf3\x9b\x7c\xce\x2e\x61\x95\xf2\x6b\xd6\xeb\x8b\x3a\x52\x41\x7c\x09\xab\x23\x33\xa9\xc9\x04\xed\x7f\xe7\x57\x17\x0d\xc9\x06\xe8\xb3\xe1\x7d\x2c\x13\x34\x44\xe6\xd2\x11\x72\xd7\xa6\xed\x1d\xba\x48\xd3\xc3\x6c\xe5\xd0\xb7\xdf\x14\xf3\xaf\x24\xb5\xab\xcd\xa6\x38\xdf\x1d\xe8\x86\x0f\xe2\x44\x09\xfa\x1f\xb0\x2a\x45\x30\xd3\x7f\x7d\x2f\x3e\x2e\xf1\xdd\xcd\xe9\xfb\xed\x9c\xde\xdc\x8b\x53\x99\x42\xef\x64\xb5\xf7\x64\x3b\x2b\xb3\xa6\xf7\x62\xb7\x3d\x29\x36\xad\x24\xe3\x85\x04\x94\xf1\x2b\xd0\xa6\xe2\x7a\xbb\x7f\x8e\x7e\xb1\x15\x9d\x6c\x1a\x8b\x01\x36\xb0\xdb\xcd\xa5\x16\xdb\x49\xa3\xbd\xf2\xc6\xc4\xf3\x1c\x2f\xe0\x9f\x68\x54\x56\x42\x66\xf3\xef\x03\x49\xcb\xa8\x6e\x41\x57\xba\x0d\x43\x43\x4d\x4a\xc3\xff\xd2\x82\xb7\x9b\x92\x8d\xa9\xda\x0a\x39\x0c\x6e\x82\x08\xdd\xf4\x7e\x59\x05\x11\x5a\x35\x55\xb0\xd9\xd9\xd1\xf2\x7a\x3f\x46\x6c\x6d\x5a\xce\x78\xba\x8a\xcd\x5e\xea\xcf\x44\xaa\x18\xa7\x69\x18\x94\x1b\xdb\x38\xcf\x6d\x97\xb2\xbd\xea\xdf\xf6\x5b\xc6\xe9\x14\xe7\xf9\xf4\x57\x39\x35\xfb\x74\xe9\x74\x6a\x7e\x5b\x54\x67\x63\x9c\x97\x49\xa8\xdc\xdc\x34\x9b\x81\x26\x8c\x69\xa9\xff\x37\x00\x00\xff\xff\xa7\x7a\xe0\xe6\x6a\x39\x00\x00") func app_js() ([]byte, error) { return bindata_read( _app_js, "app.js", ) } var _index_html = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x96\x5d\x6f\xdb\x36\x17\xc7\xaf\xdd\x4f\xc1\xe8\xc6\xf6\x03\x51\x8a\x93\x3e\x41\x32\x4b\x06\xd2\x36\x2b\xb2\x8b\x6e\xc0\x12\x60\x80\x61\x0c\xc7\xd4\xb1\xc4\x84\x22\x59\xf2\xc8\x2f\x6b\xfa\xdd\x07\x4a\x76\xec\x24\x5d\xd7\x75\xbb\xb1\xcc\xf3\xf2\x3f\x87\x3f\xf2\x08\xca\x8e\x0a\x23\x68\x63\x91\x55\x54\xab\xc9\xab\xac\x7b\xf4\xb2\x0a\xa1\x98\xbc\xea\xf5\xb2\x1a\x09\x98\xa8\xc0\x79\xa4\x3c\xba\xbd\xf9\x91\x9f\x47\x7b\x47\x45\x64\x39\x7e\x6c\xe4\x32\x8f\x7e\xe3\xb7\x97\xfc\xad\xa9\x2d\x90\x9c\x2b\x8c\x98\x30\x9a\x50\x53\x1e\x5d\x5f\xe5\x58\x94\x18\xb1\xf4\xcb\x99\x6f\xbb\x40\x7e\xb3\xb1\x87\x69\x84\x6b\x4a\x43\x43\xe3\x5d\xfd\x86\x16\xfc\x3c\x62\x93\x57\x8f\x32\x1a\x6a\xcc\xa3\xa5\xc4\x95\x35\x8e\x0e\x92\x57\xb2\xa0\x2a\x2f\x70\x29\x05\xf2\x76\x11\x33\xa9\x25\x49\x50\xdc\x0b\x50\x98\x8f\x92\xe3\x98\xd5\x52\xcb\xba\xa9\xf7\xa6\xa8\x13\x57\x52\xdf\x33\x87\x2a\x8f\xa4\x30\x3a\x62\x81\x51\x1e\xc9\x1a\x4a\x4c\xad\x2e\x23\x56\x39\x5c\xe4\xd1\x02\x96\xc1\x9f\xb4\x26\x2f\xff\x40\x9f\x47\xa3\xb3\xf5\xe8\xac\x63\xb4\x57\x01\x6b\x15\x72\x32\x8d\xa8\x78\xa7\xd8\x09\x94\x4a\x92\xa8\x46\x17\x27\xeb\xd1\xc5\x49\x2b\x33\xf9\x52\xf9\x27\xc1\xe7\xc7\xeb\xd1\xf9\xf1\x36\x38\x44\x93\x24\x85\x93\xf7\xad\x37\x4b\xbb\xd5\xb3\x5d\x78\xda\x28\xf4\x15\x22\xed\xf6\xd2\xd2\x15\xde\xef\xc4\x97\xa8\x0b\xe3\x52\x67\xe6\x86\x0c\xaf\x8d\x36\x87\xff\x93\x10\x39\xf9\x4e\xcd\x1a\x08\x5d\x00\x1f\x36\xe3\x9f\x2d\xff\x95\xb2\x30\x05\xd6\xd2\xb9\x27\x7f\xff\x2b\xc5\x5d\x9f\xdf\xa7\xd7\x45\xec\x72\xb3\x74\x3b\x51\xd9\xdc\x14\x9b\x56\x4c\x1b\x2f\x9c\xb4\x14\x16\xbd\xac\x90\x4b\x26\x14\x78\x9f\x47\x3b\x07\x0f\x97\x19\xa4\x46\xd7\x56\xef\xf5\x32\xfb\x22\xa4\x46\xef\xa1\xc4\x68\xf2\x8b\x42\xf0\x18\x33\xd4\x30\x57\xc8\x7e\x82\x25\xfc\xda\x86\x30\x32\xed\x54\x48\xdd\x20\x6b\xbc\xd4\x65\xab\xd5\xa3\x4a\x7a\xe6\xcd\x82\x56\xe0\x30\x66\xc6\xb1\xc2\xac\xb4\x32\x50\x30\x60\x05\xfa\x7b\x32\x96\x2d\xd1\x79\x69\x74\x92\xa5\x76\xdb\x02\xbc\x68\x21\x40\x89\x18\x81\x2b\xc3\x1b\xe2\xf7\xb9\x82\xb0\xee\x20\x84\x29\xf7\x3f\xa4\x69\x29\xa9\x6a\xe6\x89\x30\x75\xaa\x41\x2e\xd1\x9b\x46\x17\x69\x77\x9f\xa3\xc9\xbb\x6d\xe1\x2c\x85\x0e\x46\x5a\xc8\x65\xcb\x28\x3d\x84\x94\x1d\x71\x3e\x95\x0b\xa6\x88\x5d\x5f\xb1\x8b\x59\x6b\x3b\xe0\x26\x91\x37\xb6\x74\x50\xe0\x73\x72\x7b\x70\x07\x31\x2f\xd0\x6d\x1d\xec\x5a\x13\x3a\x8d\xc4\xae\xd6\x56\x19\x87\xee\x25\x42\xf6\x84\xde\x23\x9e\x3d\x9d\x83\x3a\xdf\xc2\x67\xb5\x5a\x25\xb5\x14\xce\x04\xc9\x16\x13\x6a\xde\xf8\x74\x77\x24\xa9\xdc\xf6\xc4\x71\xdb\x53\x02\xde\xae\xa3\xc9\x6d\x57\x64\x4b\x6e\x0f\xee\x68\x8a\xba\x90\x8b\x19\xe7\x87\xe4\x4a\xc2\x16\x1d\x7b\x60\x47\xd7\x57\x6c\x36\x61\xc1\xf3\xc8\x51\x16\x79\x14\xaa\x49\x5d\x72\x6f\xa5\x6e\xf9\xed\x35\xbb\x93\x60\xde\x89\xbf\x99\xbf\x3b\x1f\xd2\x0e\x0e\xee\xeb\x99\x35\x90\xa8\xe6\x0e\xc4\x3d\x92\xff\xa7\xc9\x5e\xd6\x56\xa1\x17\xce\x28\x35\x07\xf7\x6d\xf9\x56\x0a\x53\x98\x7a\xf7\xfc\x7a\x0e\x58\xfb\x57\x01\xed\xa1\x0f\x16\x8d\x16\x24\x8d\x1e\xc8\xd8\xc7\x26\x2e\x63\x17\x43\x5c\x0f\x3f\xc9\x69\xff\xbd\x31\xa5\xc2\x4b\x0d\x6a\x43\x52\xf8\x9f\xe7\x77\x28\xa8\x3f\xcb\xdd\x58\x4e\xdd\x2c\x0f\x3f\x0f\x0f\x8f\xf9\xc3\x4f\xed\x8c\x0d\x82\x39\xf9\x98\x77\x8f\x87\x87\xe9\x6c\x98\xd8\xc6\x57\x03\x70\x65\x53\xa3\x26\x3f\xfc\x1c\xb7\x4e\x95\x8f\xfe\xa7\x71\xc5\xde\x01\xe1\x60\x38\x86\xdc\x27\xc2\x21\x10\x5e\x29\x0c\x81\x03\x33\x8c\xbb\x69\xaf\x73\x9f\x94\x48\x5b\xbb\x7f\xb3\xb9\x81\xf2\x03\xd4\x38\x30\xc3\xe9\xf1\x6c\x0c\x09\xf8\x8d\x16\xf9\x68\x0c\x49\xd8\x74\x39\xae\x13\x0b\x0e\x35\x7d\x30\x05\x26\x52\x7b\x74\xf4\x06\x17\xc6\xe1\x20\xec\x2d\x88\x7e\x1e\x0e\x56\x52\x17\x66\x15\x17\x46\xb4\x7d\xc5\xfd\x0e\x4b\x3f\xee\x1f\x5e\xec\xb2\x85\xc0\x61\x47\xa1\xbd\xdf\xfb\xd5\x9d\xef\xc7\xfd\x12\xfa\xc3\x71\x50\x2d\x61\xd0\xef\xf6\xd0\x8f\x59\xff\xf6\x92\x9f\x9e\x9e\xbd\x7e\x7d\x7e\xf2\x7f\x7e\x1a\x0c\xd0\x90\x39\x88\xf4\xa8\x8b\x60\xb6\x50\x62\xf8\x08\xe8\x5c\x4f\x4e\xea\xc9\x24\x64\x69\xf7\xfa\xcd\xd2\xee\x43\xe7\xcf\x00\x00\x00\xff\xff\xa9\x89\x3d\x1d\x00\x09\x00\x00") func index_html() ([]byte, error) { return bindata_read( _index_html, "index.html", ) } var _styles_css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x6b\x6f\xe3\xba\xd1\xfe\x6c\xfd\x8a\xc1\x1e\x04\xde\xec\x1b\x2a\x14\x2d\xcb\x8e\x8d\x00\xef\x69\xb0\xc0\x16\xe8\xf6\x43\x0b\x9c\x9e\xa2\x28\x16\xb4\x44\xdb\x44\x28\x51\xa0\xe8\x4b\x1c\xe4\xbf\x17\x24\x75\xb7\x9c\xcb\x62\xd7\x1b\x23\x1c\x51\xcf\x3c\x73\xe1\xcc\x30\x5f\xe0\xd9\x1b\xa5\x54\x6d\x78\xb6\x00\xbc\xf4\x46\x39\x4d\x12\x9e\x6d\xdc\x62\x25\x8f\xa8\xe0\x27\xbb\x5e\x49\x95\x30\x85\x56\xf2\xb8\xf4\x46\x6b\x99\x69\xb4\xa6\x29\x17\x4f\x0b\x18\xff\x43\xae\xa4\x96\xf0\x5d\x66\x72\xbc\xf4\x5e\x3c\x6f\xab\x53\x01\xcf\xb0\x65\x7c\xb3\xd5\x0b\x08\x30\xbe\x5a\xc2\x8b\xb7\x92\xc9\x93\xd1\x77\xe0\x89\xde\x96\x62\x6f\x94\xf2\x0c\x75\x76\x96\xf0\x05\x3f\xb1\x05\x04\x51\x6e\x14\xa2\x03\x5b\x3d\x72\x8d\x76\x05\x53\xa8\x60\x82\xc5\x7a\x01\x99\xcc\x98\x79\x96\xca\xd3\x85\x07\xc5\xb0\x5c\x0e\x8a\x87\x64\x2b\x1a\x3f\x6e\x94\xdc\x65\x09\x8a\xa5\x90\x6a\x01\xbf\x91\xc0\x7c\xac\x9d\xb7\x5f\xe0\xef\xf2\x9f\xb1\xe2\xb9\x86\x94\x15\x05\xdd\xb0\x1b\xf8\xeb\xd7\x3b\xa0\x59\x02\x52\x24\x4c\x55\x62\xf8\x72\xeb\xf9\x9c\xa1\x5d\xbe\x51\x34\x61\x28\x96\x99\xa6\x3c\x63\xea\x06\xfc\x4c\x16\x16\xa2\x11\x1a\x27\x75\x9d\x37\xc0\x63\x1a\xcd\x66\xeb\x78\x09\xd5\x7a\x6d\xff\x2d\xa1\xe5\x3c\xc2\x52\xc3\xb3\xad\xb8\xa6\xd9\xa8\xad\x28\x3e\x43\x4a\x8f\xa8\x0c\x0e\x99\xb2\x74\x09\x75\x36\x18\x24\xe8\x22\x09\x9e\x3d\xb6\x61\xcc\xda\x10\xb7\xfa\x0f\x25\xfb\x95\x14\xc9\x39\x45\xcd\x8e\x1a\x69\x45\xb3\x62\x2d\x55\xba\x80\x5d\x9e\x33\x15\xd3\x82\xf5\x34\x96\x3e\xfe\x17\x5b\xc1\x9e\xa9\x82\xcb\x0c\x1a\x1f\x51\xeb\x0e\xd0\x5b\x06\x29\xe5\x19\x1c\x78\x96\xc8\x83\x75\x74\xc7\x91\xb9\x2c\xb8\xe6\x32\x5b\x00\x5d\x15\x52\xec\xb4\x89\xeb\x9b\x29\x38\xe0\xf0\xf5\x3a\x0e\xf0\xac\xfb\x8c\xa7\x74\xc3\x16\xb0\x53\xe2\xf3\xa7\x84\x6a\xba\xb0\x82\xdb\x62\xbf\xf9\xbf\x63\x2a\x6e\xae\x26\x0f\xc5\x7e\x03\x56\xdb\xfd\x98\xe0\x71\x79\x26\xee\xc7\x01\x19\xc3\x9e\xb3\xc3\x5f\xe4\xf1\x7e\x8c\x01\x03\xc1\x60\x64\xc7\x54\x64\xc5\xfd\x78\xab\x75\xbe\xb8\xbd\x3d\x1c\x0e\xfe\x61\xe2\x4b\xb5\xb9\x25\x18\x63\x83\x3b\xbe\x9a\x7c\xbd\x9a\x3c\xe4\x54\x6f\x21\xb9\x1f\x7f\x8f\x20\x20\x31\x46\x7e\x44\x08\xf2\xf1\xdd\x14\x05\x3e\x21\x01\xf2\xc9\x0c\x05\xfe\x6c\x3e\xfd\x7d\xea\xdf\xcd\x09\xb8\x6f\x6c\x3f\x81\x51\x15\x07\x7e\x34\x03\x0c\x13\x3f\x98\x13\xe4\x47\xf3\x09\x84\x9d\x97\xee\xe6\xe0\xbe\xcb\x97\x42\x08\xc8\x96\xd0\x10\x42\xb7\x86\x10\x85\x7f\x44\x31\x72\x38\xc8\xe2\x18\x18\x64\x60\xc0\xc2\x3c\x04\x53\xff\x0e\x4f\x61\xe6\x13\x02\x41\x04\x91\x61\x69\x7f\xf9\x20\x63\x82\x21\xfa\x23\x6c\x74\xa3\x10\x85\x5b\x44\x62\x0c\x06\xc5\x80\x80\x05\xa9\x35\x0f\x5b\x8d\x1f\xe6\xfe\x64\x02\x18\x22\x7f\x1e\xcc\xad\xcd\x53\x7f\x36\x71\xaf\x80\xe3\x6a\x70\x20\xb2\xb8\x10\x01\xfe\xd6\xd1\x0a\xe1\xbe\xeb\xb8\xda\x6f\x30\xec\xb7\x00\xc2\xda\xd8\xc6\xd6\xcb\xa6\x06\x86\xdc\xbe\xe3\x65\x08\xb7\xe4\x94\xa2\x10\x30\x25\x50\x1a\x83\x08\x22\x7b\x62\xe4\x41\xd4\x92\x07\xe0\xe4\x88\x9c\xbe\x63\x20\xcd\x7e\x23\xff\x86\xf7\xe4\x94\x12\xdc\xde\x6f\x70\xb6\xc4\xc8\x51\x80\x61\x5e\xaa\x0d\xac\x8a\x39\x54\x24\xcc\x67\x7e\x4a\x31\xaa\x10\xdd\x86\x10\x1a\x7c\x0c\xe1\x69\x0c\x6b\x2e\xc4\xfd\xf8\x8a\x4c\x42\x6c\x3e\x4e\x80\x64\x4e\x63\xae\x9f\xee\xc7\xd8\x0f\x4a\x91\xda\x09\x76\x3f\x66\x7b\x96\xc9\x24\x19\xdf\xba\x94\x36\xd9\x7d\x35\xf9\xfa\xe9\xda\xd6\xac\xe6\x0c\x6f\x19\x4d\xba\x35\x91\x84\xd8\x76\x85\x56\xbd\x9a\x91\x4a\x54\xf6\x32\xa0\x3b\x2d\x97\xde\xc8\xd6\x1a\x2a\xf8\x26\x5b\x40\xcc\x32\xcd\x54\xbb\xcb\x11\x96\x3a\xfe\x3d\x9d\x6b\x29\x75\x57\xe7\xa4\xac\xa5\x67\xbc\x04\xb7\x55\xa6\x46\xf4\xa7\x06\xd3\x7c\x2f\xbd\x51\xc2\x8b\x5c\xd0\xa7\x05\xf0\x4c\xf0\x8c\xa1\x95\x90\xf1\xe3\x30\x0e\x35\x30\x17\xf6\x3b\x2b\x12\x16\x4b\x45\x5d\x2d\xbb\xdc\x9f\xd6\xeb\xe9\x8c\x90\xa5\x37\x6a\x55\x5d\xdb\xcb\x6d\xff\x56\x34\xe1\xbb\x62\x01\xc4\x7a\xab\xe9\xf6\x96\x75\x60\x39\x9b\x6a\x58\x7a\x35\xba\x64\xb4\xef\xaa\x2d\xd2\x5c\x0b\x86\x56\xd4\xba\xaa\xa7\x22\xcc\x8f\xf6\xc7\x7a\xb7\xf1\xa3\x6b\xe8\xaf\x34\xd6\x5e\x71\x6e\x07\x50\xb0\xb5\x1e\xa4\x6d\x92\xd2\x92\x3f\x21\x9e\x25\xec\xb8\x00\x62\x89\xf7\x69\xa2\xd5\x4e\x6b\x99\xbd\xe6\xea\x52\x3b\xf6\x67\x16\xb0\xe2\x5d\xad\x9b\x04\xc3\xbe\xcd\x89\xbe\xd9\xd8\x9f\xb8\xd8\x0f\x98\xe8\xce\x85\x65\x46\xf3\x1c\x95\x2d\xab\xd3\xa4\x14\x13\x54\xf3\x3d\x7b\x67\x7a\x57\xf4\xa6\xb3\xd2\xaf\x66\x64\xdb\xd2\x44\x1e\x16\xb6\x68\xe7\x47\x20\xf3\xfc\x08\x6a\xb3\xa2\x9f\xf1\x8d\xfd\xf8\x64\x7a\x7d\x63\x2b\x62\x7e\x74\x5f\xdd\xa7\xe4\x7a\xe9\x8d\xe4\x9e\xa9\xb5\x30\x30\x5b\x9e\x24\x2c\x7b\xcf\x30\xf4\x7b\x9e\x57\x6d\x98\x09\x96\xb2\x4c\x17\xb6\x1f\x33\xa5\xa4\x42\x09\xa7\x42\x6e\x8c\xb5\x75\x90\x02\x8c\xdb\x87\xa4\x4c\xea\xe1\x23\x3b\xd4\xc6\xdb\xa9\x1a\xf6\x4b\x42\x10\x95\x3e\x6b\x75\xf7\x72\x97\x0d\x78\x4f\xa6\x65\x5e\xe7\x9c\xc9\xb3\x66\x3a\xb0\x3e\x47\x4e\x86\x66\xa4\x15\x08\x64\x5f\x42\x81\x71\x71\x27\x2f\xeb\x02\xd0\x3f\x95\x2f\x9e\xe7\xa7\x32\xa1\x02\x35\xde\xbc\x38\xa5\x58\x74\x5c\xf3\x31\xbf\xa9\x32\x1b\x6d\xa8\xb5\x96\x69\xcd\xbf\x76\xea\xb4\xcd\x64\x72\x21\x15\xcb\x88\x43\xf9\xdf\x9f\xbb\xaa\x6b\xa9\xf5\x43\x84\x87\x12\x6f\x30\x63\x5f\x49\xf9\xd1\xd9\x18\x55\x86\x29\x9c\xbb\x30\xd5\x05\xa2\x4c\xf5\x5e\x26\x9b\x34\x25\x67\xb9\x1a\xdc\xd9\x4c\x8e\xf2\xa3\xfd\xe9\xe6\xf1\xa4\x65\x13\x6a\xba\x48\xed\x1b\x57\x31\xce\xe7\xd5\xfe\x4b\x28\x16\xb2\x60\xaf\x47\xc9\x61\x95\xd1\x71\x8b\x2a\x0d\x3b\x65\xc4\xad\xe2\x9d\x2a\x8c\x33\x72\xc9\x5d\x7a\xd7\x1a\x4d\xa5\x65\x99\xee\xf0\xac\x6a\x5b\x73\x24\xcb\x18\x98\x64\xaf\x7b\x62\x34\x33\x6e\xab\x81\xcc\x64\x8d\x4c\x2c\xf2\xe6\x8a\x87\xaa\x94\x29\xb3\x73\x68\x73\x5b\x22\xe8\x8a\x89\x37\xdb\x52\x79\x52\xad\xed\xad\xb0\xda\xb3\xd3\xb5\xa1\x6e\xb4\x67\x5a\x9d\x26\x9e\xe5\x3b\xfd\x1f\xfd\x94\xb3\xfb\x4f\xf1\x96\xc5\x8f\x2b\x79\xfc\xf4\xdf\x86\x7e\x95\xfc\xef\x63\xbf\xa7\x62\xc7\x5a\xf7\xcd\xc8\x32\xba\x64\xca\x9e\x29\xcd\x63\x2a\x2a\x73\xb4\xcc\x5b\x2e\x47\xc7\x56\x1d\x3c\x6c\xb9\x66\xa8\xc8\x69\xcc\x4c\xcd\x3a\x28\x9a\xbb\x83\xad\xa5\x14\x65\x2f\xec\x15\x97\x57\x12\xa7\x53\x64\x5c\x3d\x29\x5f\xea\xf6\xc1\x5f\x73\x1e\x9a\x83\x3d\x19\x3e\xaf\x13\x6c\x3e\xd6\xbb\x95\x39\x3b\xe1\x52\xe8\xd8\xd4\xda\x8f\x0c\x5b\xad\x0b\x69\x17\xd7\x4d\x4e\xed\xcb\xbe\xea\xd4\x4c\xc6\xd8\x2b\x01\x1b\xd2\xd5\x80\xff\xf8\xb1\xd2\xaf\xb6\xf9\xb3\x23\x78\x5e\xa0\xce\xbb\xcb\x50\xdf\xe8\xb7\x91\x8b\x77\xdb\x3e\xbb\xc5\xd6\x64\x97\xe1\xd8\xbb\x1f\x9b\x8d\x2c\xe1\x5a\xaa\x1f\x3f\x4c\x72\xe5\x4c\xa1\x35\x3f\xb2\xcb\x8d\xa2\x37\x31\x55\x6d\xa3\xdb\x21\x06\x50\xe5\x4e\xf7\x2f\xc9\xad\x6a\xde\x45\xed\x5e\x90\x07\xc0\x78\xf6\xfe\x1b\x77\x1f\xcc\x4c\x0f\xdf\x78\xc2\xe0\xc0\x56\xa8\xc8\x59\xcc\xd7\x3c\x86\x9c\x2a\x5d\x00\xcf\x0a\xf3\x24\x61\xc5\xa3\x96\x39\xd0\x3c\xb7\x43\x45\xb9\x46\x66\xdd\xbe\xf1\x9f\xfd\xd9\xe9\xd2\x4e\x57\xdc\x6f\xe0\xd2\xf3\xea\x0e\x00\xdd\xf9\xe4\x0c\xb1\x3d\xc9\xb5\xff\x84\xe2\xf4\x77\x16\x17\xa9\xc9\x4c\x3c\xbd\xad\xe9\xd2\x6e\x97\xd3\xe0\xdc\xf8\x20\x13\xf6\x9d\x9b\x89\x0b\x5c\x84\xa0\xd0\x4f\x82\xb9\x49\xac\xf5\x70\xc0\x51\xcd\x53\x54\xc4\x4a\x0a\x93\xaa\xc8\x5c\xd8\xac\x1b\x9a\x62\x51\x8e\x0f\x64\x3a\xbd\x81\xe6\x0b\xfb\xc1\xf5\x19\x0c\x4f\x73\xc1\x1c\x18\xda\x4a\xc5\x4f\xc6\xbd\x02\x12\xbe\xbf\xb9\xbc\xb1\xaa\xc5\x66\x1b\x3c\xc3\x40\x3e\x75\xc8\x54\x27\xf6\x7d\xba\xdf\xa3\x77\x58\x67\x5d\x3a\xa3\xe5\x2f\x75\xc6\x33\xd4\x7d\x79\x09\xd5\xa8\x57\x47\xc7\x9c\xdd\xf7\x7b\xb5\x0b\xd6\x8b\x30\xbc\xcb\xf4\x7a\xc4\x84\xb2\x90\x54\x39\xfc\x16\x93\x5e\xd8\x1a\x9c\xce\x19\x70\x59\xfa\x37\x49\xcd\x60\x00\x3c\x4b\x78\x4c\x4d\x96\x7e\xb9\xf5\x7e\x13\x4e\x8a\x8a\x7c\xa0\x98\x9c\x57\xa6\xb0\x3b\x39\x96\xcb\xa1\xa6\x36\x99\x2c\xbd\xa6\x5f\x05\xd8\x34\xce\xb2\x67\x55\x7f\x5a\xa6\x19\x4f\xcb\xcb\x75\xf1\x88\x94\xd4\x54\xb3\x5c\xd0\x8c\x41\xe0\x13\x53\x85\xd6\x3c\xe3\x9a\x01\xa3\x05\x43\x3c\x33\xb5\x73\xe9\x8d\x7e\xea\xad\x17\xcf\xfb\xff\x4a\xed\x23\x7b\x5a\x2b\x9a\xb2\xa2\xff\xfe\xb3\x37\xc2\x57\xf0\x0c\xd5\xc6\x56\x4f\xc9\x99\x32\x35\xd2\x38\xe3\x73\x60\x86\x80\x6b\x78\xf1\x46\xd3\x0f\x6c\x77\x8a\xfe\xfd\x39\x98\xe3\x84\x6d\xec\xeb\x26\x3a\x3f\xfd\x7e\x29\xf8\xb3\x05\x68\x8c\x7c\xd3\x38\x6f\x34\x7a\x8f\xa2\x3f\x3f\x3b\xd4\x4a\xad\x5d\x2d\xbd\xd1\xe8\x23\x6c\x07\x41\xc0\x1b\xbd\xc0\xf4\x63\x5c\x50\x30\xc7\x7e\xf0\x2b\x08\x5d\x42\xb2\xac\xca\x80\x7c\x88\x56\x07\x0a\x05\xb3\x3b\xff\xee\xe7\x99\x5d\x06\x33\xd1\xfd\x5f\x00\x00\x00\xff\xff\x4d\x2f\x6a\xe2\x3b\x1a\x00\x00") func styles_css() ([]byte, error) { return bindata_read( _styles_css, "styles.css", ) } var _vendor_codemirror_codemirror_css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x59\x7b\x6f\xdb\x38\x12\xff\xdf\x9f\x62\x0e\xc1\xa1\x6d\x60\x25\x72\x1e\x4d\xe3\x00\x87\xed\xb5\xdd\xed\x02\xb7\xb7\x45\x9b\x2e\x70\x7f\x52\xe2\xc8\x22\x4c\x91\x2a\x49\xf9\xd1\x20\xdf\xfd\xc0\x87\x64\x49\xa6\xd2\x14\x58\x04\x28\x6a\x72\x34\x33\x9c\x17\x7f\x33\x3c\x3f\x85\x7f\xbf\xfd\xf2\xfb\xbb\x2f\x70\x7a\x3e\x9b\x9d\xbd\x93\x14\xff\x60\x4a\x49\x05\x0f\x33\x80\xf3\x53\xf8\x82\x06\x4a\x64\xab\xd2\xcc\x61\xcb\xa8\x29\xe7\x90\x49\x45\x51\xe9\x39\x10\x41\x61\xc5\x65\x46\x38\x14\x52\x18\xa8\x95\xac\x51\x19\x86\x1a\x4a\x54\x68\x59\x82\xdb\x49\x0a\x52\x31\xbe\x5f\x42\x25\x85\xd4\x35\xc9\xf1\x6e\x06\x81\xed\x12\x2e\xd3\xb4\xde\xd9\x85\x5c\x72\xa9\x96\x90\x71\x92\xaf\xed\x6f\xca\x14\xe6\x86\x49\xb1\x04\x6e\xd4\xdd\xec\x71\x36\x3b\x3f\x85\x4f\x6f\xdf\xbf\xff\xfd\xbf\xbf\x8d\x15\x4e\x38\x13\xa8\x9d\xda\x35\xa1\x94\x89\xd5\x12\xae\xea\x1d\xa4\x77\xf6\x18\x7f\x59\xbd\x72\xc2\xdb\x3d\x20\x4a\x36\x82\x42\x2e\x85\x41\x61\x2c\xb3\xc7\xc1\xf1\x6b\x85\x43\x5e\xa9\xe5\xe6\x78\x7d\x94\x8a\x7d\x97\xc2\xf4\xb8\xc9\x62\xc8\x69\xa0\x98\xce\x95\xe4\x3c\x23\x2a\x29\x18\xe7\xa8\xe6\xd0\xdf\x5d\x35\xc6\x60\xbb\xe5\x44\x66\x24\x5f\xaf\x9c\x7a\x49\xb0\xc8\xb6\x64\x06\x9d\xec\xfb\x12\x81\x33\x63\x38\x82\xfe\xd6\x10\x85\x90\xa1\xd9\x22\x0a\xf8\xe8\xdc\xf1\x17\x74\xd2\x74\x50\xe5\xfc\x14\x7e\xfb\x7a\x7f\xff\xe1\xf3\x91\xc5\xbc\x68\x6f\x33\xef\xd4\x44\x79\x97\x2c\xea\x1d\x68\xc9\x19\x85\x13\x4a\xe9\x5d\x54\xa9\x93\xe2\xc6\xfe\xd9\x4d\xa7\x5f\xe2\x1c\xbb\x04\x21\xb7\x8a\xd4\x77\x43\x7b\x3a\xef\x88\xa6\xca\x9c\xbc\xa9\xad\xb1\xc5\x2f\xad\xff\xe0\xda\x47\x47\xc5\x44\xe2\x22\x70\x09\x17\x21\x60\x0c\xee\x4c\x42\x38\x5b\x89\x25\x38\xcd\x7b\x51\x74\x72\x7b\x7b\xfb\x84\x6e\x11\x43\x54\x44\xad\xad\x0e\xc3\x38\x84\xc7\x49\xd2\x44\x37\x99\xf5\xc4\xc3\x40\x26\x78\x9b\xbf\xfb\xfa\xf9\xcb\x9f\xc7\x36\xcf\x1b\xa5\x43\x76\x05\x93\x73\x2c\x06\x16\xef\xc2\x7f\xe8\x12\x21\x85\xcb\x9a\x60\x82\xd4\x1e\xc2\xe6\x67\x29\xb7\x02\xb6\x25\x0a\xa8\xe4\xc6\xc6\x22\x13\x90\xb1\xa4\xcb\x1d\xc2\x9d\x99\xac\x22\xfd\xf8\xa6\x6c\x33\x88\x51\xcc\xa5\xa0\x44\xed\x7f\xac\x9f\x66\x7c\x83\x2e\x1b\xcf\xf2\x2a\x29\x88\x69\xcf\x34\x71\xcc\xa0\x30\x69\x8c\x3c\x9c\xca\x7a\xf7\x1f\xac\xaa\xa5\x32\x44\x98\x61\x80\x2d\xe1\xe4\x06\x6f\x22\x02\x46\x3a\xfb\x55\x1f\xbe\xdf\x13\x26\x28\xee\x96\xb0\xf0\xce\xcd\xab\x84\x08\x56\x11\x83\x7d\x06\x4f\xa9\x63\x7f\x24\x5b\xcc\xd6\xcc\x84\x4f\x5d\xe1\xc9\x38\x13\x6b\x58\x9c\xa5\xaf\x35\x68\x83\xb5\x7e\xb9\x78\x05\x4c\x14\x4c\xd8\x94\xb4\xdf\x54\xf2\xfb\x4f\x7d\xf0\x33\xb4\x91\xac\x0b\xa6\xf9\xc5\xc9\x5d\xe3\xbe\x50\xa4\x42\x1d\x58\xd9\x03\xa6\xff\xb4\x09\x06\x70\x6d\xff\x13\xe1\x60\x14\x11\xba\x26\x0a\x85\xb1\xb1\x0a\xb0\x48\xfd\x27\x96\x69\x30\xc0\xdf\xcd\xf7\x6f\xe6\xe7\xf2\x8b\x08\xd0\x66\xcf\x11\xba\xe8\x28\x0a\xb4\xd4\x36\x03\xe4\x06\xd5\x56\x31\x83\xf0\x52\x48\x91\x30\xa1\x51\x99\x57\x50\x49\x8a\xa3\x4c\x48\x0e\xa4\xb1\x00\x0e\xc1\x64\x48\x06\x0f\x40\x99\xae\x39\xd9\x2f\x81\x09\x5b\xb4\x92\x8c\x4b\x5b\x21\x5c\x19\xa2\x98\x4b\x15\xfc\xca\x44\x89\x8a\x39\xb5\x07\xa2\x54\xc3\xdb\x7a\x5b\x4b\xcd\x3c\x31\xc9\xb4\xe4\x8d\xf7\xb7\xcf\xb5\xf4\x0e\x42\xd2\xa7\x77\x60\x64\xbd\x84\xe4\xda\x56\x3c\xc8\xa4\x31\xb2\x5a\x42\xd2\x16\x40\xab\x7b\xc1\xe5\x76\x09\x25\xa3\x14\xc5\xb8\xea\x3a\x81\x4f\x25\xf3\x49\x9e\xe7\xae\x92\x5a\x29\xe9\x41\x82\x4b\x87\x98\x8e\xde\xf8\xef\x3f\xfc\xfa\xf6\xeb\x7f\xee\xe1\xfe\xe3\x87\x3f\x3e\xf8\x1a\x97\x57\x89\x4e\x28\x16\xa4\xe1\x06\xec\xaf\x12\x09\xb5\xc2\xbb\x6a\xda\xe0\xdd\x63\x84\xee\x5b\x23\x0d\x76\x64\x27\xe9\x6d\x1a\xc8\x04\xae\x88\x61\x9b\xde\x1e\xbd\xba\x0a\x7b\x5e\xb5\xfe\xde\xc5\xed\x45\xd8\xf3\x82\xe7\x8e\xb9\x36\x4a\x8a\x15\x3c\x38\x14\xb2\x0d\x80\x23\x93\x9c\x06\x5a\xac\xc2\x9e\x0b\xa5\x25\x30\x43\x38\xcb\xc3\xa6\x0f\xd5\x23\xef\x36\x82\xa2\xb2\xfe\x6f\x8f\x63\x14\x5b\xa3\x29\x95\x6c\x56\x65\x84\xde\x85\x4a\xd8\xbe\x7b\x8c\x99\x6a\x8d\xfb\xad\x54\xf4\x70\x98\x9b\xf4\x4d\xd4\x56\xc4\xc8\xaa\x77\xe4\xc5\x6d\x94\xaa\xbd\x4c\x5b\xba\xc5\xeb\xab\x28\x1d\xc5\xa2\x67\xf7\xb4\x88\x12\x6d\x88\x62\x24\xe3\x38\x8f\xec\xd5\x8d\xc8\x4d\xe3\x8e\x19\xdd\xf6\x78\x70\x1f\xdb\xb3\x3b\xc4\xf8\x0c\x9b\x16\x9a\x5c\xf4\x14\xbc\x26\x4f\x2a\x98\x5c\x06\x97\x0f\x76\xcd\xbe\xee\x07\xd7\x9b\xeb\x28\x8f\x5c\x56\x95\xad\x1c\x1d\x21\xb9\x4e\xa3\x84\xd6\xd7\x36\x9e\x3a\xba\xc5\xe2\x09\xba\xbe\xfa\xc5\x04\xc7\x0a\x0d\x39\x50\x5d\x5f\xc7\x15\xfc\xd6\x10\xce\x0a\xd6\xf7\xea\x14\x69\xd6\x30\x6e\x98\x38\x10\x5e\xa6\x71\xc3\x65\x8a\xe4\x6b\xec\x1d\xfa\xf6\xf6\x26\x4a\x68\x48\xef\xc4\x8b\x9b\xf8\x39\x88\x31\x8a\x65\xcd\x20\x95\xd3\x3c\x4a\x5a\xaa\xbe\xcc\x78\x0c\xfb\xdc\x1b\x72\x8a\x90\xa1\xef\x55\x3a\x23\xa7\xad\x72\x4c\x6c\x08\x67\x34\x2f\xc9\xd1\xf6\x10\x8f\xc9\xca\xd6\x12\xeb\xd3\xb6\x46\xb6\x35\xf0\xa2\xad\x92\x2d\xa4\x7b\x1f\x04\xbb\x5a\xa1\xa1\x90\x0a\x6c\xe0\x48\x01\x84\x52\x29\x1c\xe0\x9e\x0d\x41\x0a\xe8\x9a\x88\xbe\xbc\x8a\x98\xbc\x64\x62\x75\x64\xfc\xb4\xb0\xba\xfd\xe0\x6b\x21\xc5\x24\x83\xe2\xc2\x15\xc0\x88\x2c\xe7\xbf\x01\xc0\x52\xab\x8c\xbc\xbc\xb8\xbe\x9e\xc3\xe2\x3a\x9d\x43\x3a\x87\xb3\xcb\x57\x63\xa8\x4b\x72\x5b\x61\xfd\x45\xd7\x7d\x0b\x0f\x03\xa0\x86\x6f\x8a\x8b\xc2\x16\x0e\x87\x45\xef\xff\xfc\xe4\x6c\x10\x1a\x15\x85\xda\xd8\xd6\xc8\x94\x4c\x43\xc1\xec\x55\x6d\xdb\x26\x26\x74\x6b\x42\x85\x9c\x18\xa4\x60\x24\x98\x12\xa1\xc2\xbc\x24\x82\xe5\x1a\x64\x31\x03\x70\x6b\x48\x99\x91\xea\x0c\xfe\x27\x1b\xdb\x60\x66\x24\xe3\x7b\xd0\xa5\x6c\x38\x15\x2f\x0c\x18\xd9\xe4\xa5\x25\xac\xce\xa2\x2d\xec\xe1\x0e\x73\xb2\xd8\x06\xe3\xf7\xe6\x10\x80\xfa\x86\x2b\xde\xc8\x39\xb6\x07\x06\x61\xb1\x07\x66\x7d\x9f\xc6\xc4\x4a\xc3\x96\x71\x0e\x99\x42\xb2\x06\x16\xec\xc0\xb4\xfb\x58\x39\xb9\xbe\x45\x3e\x3f\x85\xcb\xb4\xde\xd9\x2d\x67\x05\xb2\x62\x39\x54\x44\xad\x98\x80\x46\x7b\xf3\x94\x8c\xa2\xb7\x07\x47\x5b\xaa\x5e\x58\xe3\x11\x3e\x6a\xf7\x42\xcb\x8e\x47\x07\xb4\x98\xa8\x6f\x1a\x47\xeb\x45\x74\xf1\x9e\x5c\x3a\x90\x11\x56\x03\x02\xf1\x8b\x87\xb6\xac\xa3\x6e\xd7\xdb\x2e\xde\xa2\x33\x67\xda\xc6\xd8\x90\x09\x0d\x8b\xd5\xe7\x93\xc2\x8d\x2d\xae\x54\x91\xd5\xca\x66\x5a\xa1\x64\x05\x25\x5b\x95\xdc\x7e\x6a\x57\x7a\x07\xf3\xaa\xc5\xdc\x36\x8c\x4e\xcd\xbe\xe3\x53\x2e\x1e\x76\x4f\xce\xbe\x1e\xf2\xf4\x71\x65\x80\x33\x36\x58\x0b\xb2\xc6\x39\x6c\x98\x66\x99\x6d\xae\x3b\xb3\x9e\xc1\xd7\xe0\x82\x42\xaa\xdc\x06\x35\x55\x64\x0b\xb4\x71\x17\x81\xa7\x63\x62\x65\xc3\x35\xc3\x42\x2a\x04\x62\xef\x44\x7e\xd8\x82\x92\xd4\x35\x0a\x3d\x07\x53\x36\x1a\x6a\x6f\x0e\xf7\x75\x49\xd6\x6e\x18\x21\xa8\xfd\xbe\xe0\x2c\x5f\xa3\xf2\xe3\x09\xc3\x0a\x92\x1b\x7d\x36\x86\xab\x9b\x4e\xb5\xe1\x1c\xa1\x9c\x58\xff\xd9\xe9\x43\x1c\x98\x76\xfd\xd5\x6b\x3f\x98\x09\x38\xd8\x37\xa5\x8f\x13\x0a\x3a\x7e\x23\x24\x9b\xf6\xd3\x2f\xd9\xf5\x13\xb0\x5b\xdd\xb7\x59\x35\x66\x5d\x0e\x59\x1f\xc0\x6a\x07\x9c\x47\x6c\x22\xcc\x77\x53\xcc\xc7\x86\x1a\x69\xdf\x43\xc6\xb1\x89\x40\xff\xa3\x0e\xc5\x0f\xbe\x99\x1c\xbd\x44\x2c\x7e\x60\x71\x30\x5a\xc5\x44\x32\x4e\xb6\xce\x2d\x97\x71\xad\x7c\xc7\x3b\x9c\x80\xa8\x8a\xf0\x58\xe2\xc6\x9b\x9b\x19\xc0\x26\xcc\xce\xda\x49\x8b\x91\xf5\xdd\x54\xf5\x88\xdb\x66\xab\x6c\x06\x3c\x2b\xbe\xae\xc6\xa5\xd8\x86\xd8\x78\x54\x10\x7a\xf6\xa3\xad\xa8\xf0\xfe\xdd\x35\x29\x3f\xda\xff\xf4\x95\x8a\xb2\x46\x6e\x9e\xe0\xe9\x5b\xc8\x25\x04\xbc\xf2\x2c\x8e\xad\xa5\x96\x4b\x8d\xdc\x0f\x70\x7e\xd4\x1c\x47\x07\x54\x3d\x46\x6e\x50\xf0\x33\xdc\x26\xa6\xaa\xed\x71\x6c\x7f\x73\x14\x8f\x61\x34\x1a\x6a\x9b\x86\x5c\x72\x4e\x6a\x87\xab\x42\x55\x2c\x98\xd2\xee\x0e\xd8\x4e\x0f\x5b\xcf\x4f\xe1\x33\x6a\x34\xa0\x65\x85\x2d\x46\x30\x25\x31\xee\x82\x38\xc0\x09\x84\x9a\xac\x10\x2a\x2b\x1c\x4a\xb2\x41\xb0\x1f\xb9\x8b\xc3\x9d\xb6\xad\xfd\x84\xb2\x46\x3b\xbf\xb6\x83\x8d\xe3\x9d\xa3\x95\xc3\xdd\x71\x18\xb5\x0d\x43\x72\x70\x83\x8c\x26\xdc\x6d\xeb\xdf\xae\xdb\x6b\x6a\xb0\xea\xd3\x26\x70\x1d\xa4\x66\xad\xfc\x80\x4f\x2a\xea\xdc\xd7\x4f\x56\x97\x91\xad\xb5\x7b\xdc\x82\x03\x7b\x2b\x5d\x88\x5d\xdc\x3d\x03\xfe\x84\xfb\xae\x3f\xfc\x32\xa4\x4e\xba\xcb\x39\x36\x8c\xe9\xd1\xba\x23\xba\x06\x4c\x98\x84\xb3\x15\x31\x8d\x42\xbd\xf4\xc3\xf0\x9d\xbd\x06\x3b\x43\xfc\x80\x6a\x18\xc4\xf6\xf8\x5d\x54\xf4\x0c\xe2\xa0\x54\x62\x17\x62\xd6\x4b\xfc\x70\x37\x7c\xe1\x68\x0f\x36\x8c\xc4\xf5\xb3\x2a\xc3\xd4\x48\x66\xb2\x58\x1c\x17\x7b\x2b\x6b\xcb\xe8\x0a\xc7\xd5\xa2\xef\x93\xa1\xdf\x0e\x1e\xf2\x83\xca\x11\xc7\x96\xdb\x78\xbe\x64\xb8\xb7\x5a\xff\xe9\x44\x19\x7e\x34\x88\xca\x25\xf5\xb6\x1d\xa2\xb5\x00\x87\x7e\x75\x40\x27\x3c\x68\x24\x99\xdc\x81\x66\xdf\x1d\x70\x93\xaa\x0f\xd5\x34\x6c\xdd\x3b\xcf\x16\x01\x77\x35\xe6\x06\xd8\x78\xce\x1c\x6e\xd5\xf9\x31\x74\x9b\x47\xaa\x56\x6c\x4d\xcf\x9f\x7a\x2c\x08\xe9\xbe\x4b\xbc\x86\xcb\xbe\xd6\x3e\x93\x27\xb6\x46\x06\xa9\x90\xe8\xa6\x7d\xf2\x89\xc6\x41\x28\x06\xed\x6d\xd9\xe6\x62\x3a\xd5\x4e\xb8\xcc\x62\x9c\x99\x7d\x7f\x38\x37\xf5\x16\x10\x97\x59\x4b\x26\xdc\x3d\xe3\x8a\x6a\x1c\x6e\xb5\x9a\x7b\xbf\x1f\xf8\x68\x43\x0c\xcb\x9d\xe7\x9f\x98\x9b\xc7\xb4\xfc\x61\x84\x3a\xb0\x31\x62\x6a\xc1\xfd\x14\xe3\xae\xc8\x8c\xce\x5f\xc8\xdc\xb5\x37\xcf\xd4\x6f\x8a\x8d\xbf\xdb\x90\x8e\x7a\xdc\x13\x7a\x6b\xff\xc6\x5d\x6d\x2b\xf4\x59\x1c\x6e\xe8\x55\x91\x8e\x39\xe4\x4a\x6a\x5d\x12\xe6\x9e\x8a\xc2\xa5\xd8\xad\x8d\x89\x5d\x76\x1d\x2e\xf3\x21\xfa\xb6\x9b\xf0\x2f\xd7\xe5\x3f\x87\xe6\x98\xf4\x79\x0a\x7b\x1d\x86\x38\xe0\x09\x45\x9e\x49\x38\x41\x3f\xad\x92\x1f\xdf\x20\x51\x6e\x28\x31\xf1\xd4\x79\x52\x14\x24\xfe\xf2\x71\x98\x59\xb8\x7f\xd2\x39\x9c\x5d\xbd\x6a\x4b\xd6\xb0\x47\x23\xe1\x06\x77\xf3\x7e\xee\xca\x16\x01\xd1\xce\xfe\xf3\x2a\x71\x64\x01\x0c\xd8\xac\x09\xbd\x6d\x28\xf1\x67\x0e\xce\x3c\xce\x66\xbf\x54\x48\x19\x81\x5a\x31\x61\x5a\x80\xf2\xb1\x6d\xc4\x43\xf6\xba\xa7\x37\x47\x61\x0f\xe5\x30\xc8\x13\xef\x6c\xfd\xd8\x9e\xca\xbe\xf6\x85\xc3\xf6\xf1\x4c\xeb\x06\xe1\xe4\xe2\x36\x5d\xb4\xba\x1b\x92\xb9\x8b\x2e\x29\x49\xbe\x5e\x92\xc2\x84\x37\x4b\x57\xdc\x96\xf0\xe2\x45\x3b\xae\xfa\x88\xbc\x86\x46\xdb\x36\xa3\xd1\x68\x81\xc7\xfa\xe0\x25\x23\x41\x93\x02\xf9\x3e\x3c\xa2\xb8\x37\xc2\xde\x85\x78\x7a\x3e\x1b\x0f\x9f\xda\x2c\x71\xa4\x0f\x47\x20\xdd\x8a\xfd\x7f\x00\x00\x00\xff\xff\xb6\x6e\xef\x8a\x4f\x20\x00\x00") func vendor_codemirror_codemirror_css() ([]byte, error) { return bindata_read( _vendor_codemirror_codemirror_css, "vendor/codemirror/codemirror.css", ) } var _vendor_codemirror_codemirror_js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\xbd\xe9\x76\x1b\x39\x92\x30\xfa\x5f\x4f\x01\x73\xaa\xec\x64\x8b\xa4\x48\x79\x91\x2d\x99\xd6\x51\xb9\x54\x5d\xfe\xc6\xdb\xb5\x5c\x5d\x33\xd7\x52\x57\x83\x99\x20\x99\x56\x32\x93\x9d\x00\xb5\x94\xa5\x77\xbf\x27\x16\x6c\xc9\xa4\x6c\x77\xcf\x7c\xd7\xe7\x98\x22\xb1\x04\x02\x40\x20\x10\x08\x44\x04\x76\x76\xc4\xcb\x2a\x53\x6f\xf2\xba\xae\xea\x9e\x48\xab\xe5\x75\x9d\xcf\xe6\x46\x24\x69\x57\x4c\xae\xc5\x1b\x59\xe7\x9f\x4b\xf1\xab\xbc\x50\xf5\x44\x9d\x2b\x21\xcb\x4c\x54\x66\xae\x6a\xbd\xb5\xb3\x23\x7e\xce\xb5\xa9\xf3\xc9\xca\xa8\x4c\xac\xca\x4c\xd5\x42\x96\xe2\xcd\xab\x8f\xa2\xc8\x53\x55\x6a\xb5\x2f\xe6\xc6\x2c\xf7\x77\x76\xd2\x2a\x53\x0b\x6c\x64\x50\x2a\xb3\xf3\xfa\xd5\xcb\xe3\xb7\x27\xc7\x5b\x00\xe3\xe3\x3c\xd7\x22\xd7\x01\x1e\x22\x69\xad\xd5\xed\x09\x29\x20\x49\xa8\x2c\x37\x55\x0d\x95\xf3\xc5\xb2\x50\x0b\x55\x02\x02\x79\x29\xfe\x8f\xbc\x90\x27\x69\x9d\x2f\x8d\xa8\x4a\x61\xaa\xa5\xa8\xa6\xc2\xcc\x95\x98\xd4\xd5\xa5\x56\xf5\x03\x2d\x7e\x7e\xf7\x66\xb0\xb5\xb3\x03\x95\xff\xbb\x5a\x89\x54\x96\x62\x9a\x97\x99\xd0\xd5\x42\x09\xa3\xd2\x79\x99\xa7\xb2\x10\x13\x99\x9e\xcf\xea\x6a\x55\x66\x62\x5a\xd5\x94\xcb\xb0\x10\x85\x89\x2a\xaa\x4b\x00\x22\x8d\xed\xe3\x02\xc7\x6a\x6e\x87\x6a\x50\x16\x3b\x93\xa2\x9a\xed\xfc\x47\xba\xe8\xe7\xa5\x51\x75\x29\x0b\x2d\x06\x5b\x5b\xc9\x74\x55\xa6\x26\xaf\x4a\x91\xcc\x8a\x6a\x22\x8b\x9e\x98\xca\xd4\x54\xf5\x75\x57\x7c\xd9\x12\xc2\x5c\x2f\x55\x35\x15\xea\x6a\x59\xd5\x46\x8b\xf1\x78\x2c\x1e\x54\x93\xcf\x2a\x35\x0f\xc4\xfd\xfb\x36\x7b\x51\x65\xab\x42\x89\x7b\x90\x0b\x63\x3f\xcd\x4b\x95\x3d\x10\x87\x9c\x31\x70\xd5\x2d\xf0\xa4\x2b\xf6\x3d\x74\xaa\x40\xc0\x2d\x3e\x08\x9e\x32\x06\x72\x91\x89\x43\xfe\x91\x38\xf4\x00\x00\x23\x3d\x08\x26\x2c\x68\xa3\x7b\xb0\x75\x9b\x98\x79\xae\x7b\x22\xe8\x67\x57\x7c\x11\x0f\x56\x5a\x09\xa0\x97\xd4\x3c\x38\xc0\xa9\xff\xcf\x62\x95\xcd\x94\xc6\x11\x9e\xac\x66\x1a\xa9\x6b\xa2\xe6\xf2\x22\xaf\x6a\x91\xe5\xd3\xa9\xaa\x55\x99\x2a\x2d\xcc\x5c\x1a\x98\xab\x07\x46\x4c\x94\x98\x2a\x69\x56\xb5\x02\x10\x99\x32\x2a\x85\xd9\x97\xb5\x12\xaa\x94\x93\x42\x65\x62\x22\xb5\xca\x80\x02\x56\x5a\xd5\x47\x33\x55\x1a\xa1\x4c\x2a\x74\x99\x4f\xa7\x79\x39\x1b\x6c\x5d\xc8\x3a\xc8\x1b\x8b\x52\x5e\xe4\x33\x69\xaa\x7a\xe0\x52\xb1\xcc\xb2\x90\x66\x5a\xd5\x8b\xa8\x88\x4d\xdc\xc2\x22\x33\x95\x9e\x57\x62\x2c\x76\xf0\xcb\xe9\xce\x69\xb6\x93\x0f\x8c\xd2\x26\x71\xa0\xba\x58\x30\x57\x7f\xac\x96\xa6\x1a\x0d\xa1\xf0\x9b\x93\x57\xc7\xe2\x34\xdb\xd9\x54\x72\x34\x5a\x2d\xa1\xdc\xc7\x3a\xcf\x54\x69\x4e\x77\x92\xc3\xfd\x4f\x7b\xfd\x67\x67\x37\xa7\xd9\x97\xdd\xde\x6d\xf7\x74\x30\xf8\x4b\x7d\xb1\x9f\x9c\x66\xdb\xdd\x9d\x81\xba\x52\x69\x13\x8a\xca\x66\x0a\x40\x1c\x67\x33\x75\xba\x73\x47\xc1\x1c\x8a\x79\xec\x6e\x6e\x1c\x02\x37\x37\x08\xc5\x22\x75\xa1\x6a\x0d\xb3\x09\xa5\x81\x52\x12\x5f\xe9\x50\x64\x55\xba\x82\x85\x38\xb0\x5f\xde\xc0\x32\xb9\xb9\x11\x4f\xc4\xbe\xd8\x4e\x10\x1b\x0f\xba\xfb\x69\x74\x46\xad\x5f\xaa\xc9\x79\x0e\x73\x70\x0f\x8b\xdc\xbf\x2f\x76\x7e\x57\x93\xff\xcc\xcd\xe9\x4e\xfb\xe8\xfc\xd3\xb8\x2a\xfc\x05\xea\xfc\x3f\x06\x86\x7e\xfb\x74\x70\x9a\x6d\xb7\xd7\x4b\xe7\x35\x2c\xe2\xb0\xa1\x97\x98\xb4\xa9\xa1\x65\xad\xb4\xc1\xa9\x7d\xb7\x54\xb5\xdc\x54\x4c\xcb\xa9\xac\x73\x28\x76\xb4\x5c\x16\x4a\xbc\xac\x16\xcb\x95\x51\x35\x97\xf6\x74\x73\xa1\xca\xac\xaa\xa9\xd2\x42\xa6\x7f\xcc\xd4\x9b\x6a\x55\x1a\x99\x97\xaf\x69\x54\x77\xde\xc8\x54\xbc\x3b\x11\xff\x25\x46\xa7\xd9\xe9\xcf\xc9\xa7\xa7\x34\xe1\xa7\x59\xf7\xf4\xe7\x0d\x38\xce\x65\x69\x2a\xa0\xcf\x9d\xf7\xf4\xf5\xff\x9c\xac\x97\xa4\x09\xac\x74\xd4\x79\xc4\x96\x86\x7a\xad\x06\x16\x78\x53\x4d\xf2\x42\x9d\xee\x9c\x5e\x6e\x18\x51\x59\x66\x75\x95\x67\xd8\x75\xfa\xba\x5e\x2e\x60\xf0\x97\x95\x9a\xae\x8a\xe2\x5a\xe4\x65\x5a\x01\xdf\x36\x6a\x20\x4e\x56\xb3\x99\xd2\xc0\x24\x88\x0d\xc8\x02\x19\xa5\xc9\x2f\x94\x58\x28\x33\xaf\x32\x2d\x2e\x55\x91\x56\x0b\x45\xcb\x76\x81\x58\x01\x0d\x56\x1a\x08\xca\x22\x71\x73\x23\x76\x2e\xd5\xe4\xdd\xc9\xcd\x4f\x85\x4c\xcf\x7f\x52\x75\x7d\x7d\x83\x13\x27\xde\xe4\x65\x6e\xbf\x56\x93\xfc\xe6\xd5\x31\x75\x6d\xc3\x42\x5d\xc8\xd4\x83\x87\x39\xe1\x5e\xd9\x75\x1f\x92\xd3\xbb\x13\xe8\xfd\xe9\xe4\x65\xfd\xee\xe4\x74\xd2\x3e\x4c\x97\x79\x99\x55\x97\x30\xf8\x3b\x97\x79\x69\x1b\xf5\xd0\x02\x62\x0b\x96\x18\x53\xdf\xfd\xfb\x9e\x51\x0d\x16\xd2\xa4\xf3\x64\xe7\x6f\x54\x08\x17\xf5\x5f\x80\xe2\xff\xd2\xdd\xe9\x6e\xe5\x53\x91\xc4\x50\x80\xe9\xae\xc1\x7d\xbb\x5a\x4c\x54\xdd\x28\x09\xab\x51\xdc\xb6\x80\x80\xf6\x1b\x29\x2f\xc6\x62\xf4\xd8\x83\x46\xde\x5f\x68\x75\xe0\x57\xb2\xa9\x57\x4a\xdc\xc2\xd4\x9f\xc0\x8a\xe3\xbd\x57\x43\x47\x70\x03\xbd\xac\xab\x72\x26\xd4\x05\xf0\xde\x65\x5d\x2d\x55\x6d\x72\xe0\xf1\x95\xd0\xf9\xac\x94\x85\x48\x17\xd9\x4e\x6a\xea\x02\x58\x38\xac\x07\x1c\xa1\x69\x91\x2f\x5f\x9a\xba\x78\xb9\x00\x8a\x83\x49\x02\x16\xe4\xb8\xc1\xcd\x4d\x30\x64\xcd\x5e\x8c\xc7\xa2\x5c\x15\x85\x2f\xe4\x72\x9e\x8b\xd1\xee\x60\x34\xea\xf2\xa4\xca\x25\x6c\x2c\x1f\x40\x04\x7a\x59\xe4\xe9\xb9\x18\x33\x83\xbf\xb9\x01\x76\x07\xb0\x03\x46\xf8\x62\x2c\x9e\x75\xb7\xb6\xdc\x36\x97\x16\x52\xeb\x8f\x30\xbb\x69\xa1\x61\x88\x6a\x65\x56\x75\x29\x4a\x75\x29\x3e\xa8\xd9\xf1\xd5\x32\xe9\x24\x7f\xbf\x39\x3d\xd5\xdd\x8e\xd8\x16\x69\xa1\xc5\xb6\xe8\x24\x87\xfb\x3f\x60\xda\xe9\xa9\xfe\x4b\x07\xe6\x01\x71\xa9\x17\x2f\x01\x1c\x8c\x2f\xc3\x4f\xca\x2a\x53\x3d\x41\xb0\xb7\x84\x40\x8c\x57\x75\xcd\x7b\x58\x95\xa9\x01\x62\xf0\x56\x2e\x14\x67\x23\xc5\x88\x71\x03\x33\xda\x06\xb8\x6a\x77\x4b\x08\x98\x78\x2c\x4a\x80\xa9\xae\x9c\x1a\x05\x5b\x3b\x97\x1b\x68\x10\xea\xa8\xd8\x20\x2f\x33\x75\x25\xb6\x09\xfe\xa7\xe1\xd9\xa0\x50\xe5\xcc\xcc\xbb\x58\x39\xc6\x64\x0d\xc2\xb0\x27\x02\x20\x5d\xb1\x2d\x12\x6a\xea\x90\xc1\x8d\xce\xc4\x36\xb7\xbe\x2f\x3a\x1d\x00\x7a\xbb\x75\x1b\x8c\x73\xad\x16\xd5\x85\x7a\x39\xcf\x8b\xac\x56\x65\xa2\x08\x6b\x60\x1f\x09\x8e\x09\xb0\x55\x31\x16\x6a\x90\x42\x91\xb7\x55\xa6\x34\x23\x78\xc0\x99\x2f\xc4\xf0\x40\xf4\xfb\xf8\x83\x90\xfe\x22\xd4\x20\x80\x9b\xa8\xc1\x34\xaf\xb5\xc1\x1f\x30\x27\xc2\x4e\xa6\xba\x03\x95\xa3\x32\x3b\xca\xb2\x64\x29\xa1\xbb\x3d\xc1\x88\x71\xc5\x06\xd6\x54\xa8\x3b\x90\xcb\xa5\x2a\x33\x6e\xb4\x1b\x01\x57\x85\x49\x8c\x9c\x81\x5c\x5e\x1a\x84\xe8\x46\xb5\x27\xb4\xb9\x2e\x94\x27\x04\x18\x67\xb7\x07\xa7\xb5\x92\x46\x1d\x93\x68\x0c\x20\xec\x24\xbb\xfa\x5d\xec\x70\x34\x49\xee\xfb\x2d\x17\xb6\x2d\x08\x35\xc0\xaf\x83\x14\x68\xe8\x0a\x86\x16\x7f\xbb\x82\x2c\x52\x32\x96\xb0\xda\x3a\x20\xe7\x95\xb3\x0e\xd5\x0e\xbb\xd8\xc0\x11\xe0\xc1\x04\x25\x5c\xb9\x4b\x63\xad\x0a\xad\x08\x61\x4e\x16\x5f\xfc\xfc\xc2\x66\x3b\x3c\x10\xb9\x78\x6e\x9b\x74\xb3\xbb\xbd\x9d\xaf\x37\xc9\x85\x3e\xe5\xc0\xe4\x9a\x53\xb9\xb3\x23\x2e\x6b\x28\x5d\x63\x03\xaa\x30\x3d\x71\x39\xcf\xd3\x39\xcf\x97\x46\x96\xa5\x0a\x23\xa6\x75\xb5\xc0\x1f\x32\x4d\x95\xd6\xf9\x24\x2f\x72\x73\x2d\x4c\xad\x54\x34\x65\xef\xbf\x6b\xce\xbe\x61\x8e\x61\x3c\x06\x5a\x99\x23\xc3\x87\xad\xa4\x53\x57\x85\xea\xf4\x44\x07\xb8\x99\x2a\x8d\x84\xb6\x71\xa1\x84\x44\x8a\x5c\x44\x96\x33\x85\x8c\xbd\x31\xf0\x1f\x20\x03\x79\x14\x7c\x59\xe7\x32\xda\xc8\x1a\x48\xb8\xcc\xf0\x03\xe6\xc8\x23\x5e\xaf\x13\x1b\xc2\x4b\x10\x05\xc0\xf5\xb8\xcc\x12\xae\x06\xbc\x93\x60\xaa\x32\x73\x05\x4e\x00\x7e\xd8\x56\x80\x7d\xbd\x05\xd3\x84\x34\xf0\x0d\xf8\x6d\x40\x6b\x52\x65\xd7\x01\x91\x79\xfc\x4c\x7d\x0d\x60\x07\x30\xbb\x1f\x2b\x5e\x24\x50\x04\x21\x0f\x68\x5d\x52\x7f\x81\x56\x52\xdc\x74\x55\xc0\xce\x6b\xa2\xa1\x41\x5a\x15\x85\x5c\x6a\x95\xc0\x86\x47\x1d\x03\x98\xd0\xf5\x4e\x3a\x97\xb5\x4c\x8d\xaa\x3b\x41\xb7\x21\x97\xfa\x1d\xe5\xb7\x77\x3f\xd8\x56\x2a\x94\x12\xb5\xe3\x2b\x29\x31\xa5\x2f\x76\x51\xc3\xcf\x01\x20\xff\xf1\x7a\x09\x47\x3a\xf1\xb0\x2b\x76\x76\x04\x0b\x65\x76\x03\x16\xb2\xb8\x94\xd7\x9a\x5b\xd1\xb4\x6d\x8b\xcb\xb9\x2a\x09\x20\xc8\x68\x52\x18\x75\x65\x00\x14\x33\x45\xca\x19\xd3\xdf\x60\x6c\xdc\xda\xa7\xa4\x81\xc5\xd1\x32\x53\xee\x4a\x23\x37\x49\x3d\x3b\xcd\x2a\xde\x6b\xda\xbb\x30\x1a\x75\xd7\x9a\x9f\x57\xda\x60\xdd\xa0\x12\x94\x65\x56\xea\x9b\x65\x09\x44\x88\x5b\x58\xcb\x85\x72\x65\xd7\xfa\x11\x33\x5c\x99\x82\xe0\x79\x5c\x98\x84\x46\x77\x67\x47\xbc\x3a\xc6\x53\x29\x9c\xa2\xc4\x42\x5e\x0b\x33\xaf\xab\x4b\x21\x4b\xd1\xf9\xad\xd4\x4b\x95\xe6\xd3\x5c\x65\xe2\x18\x8e\xc1\x1d\x1a\x4c\x66\x0f\xe5\xcc\xd3\xa2\x85\x8b\xa4\x36\x70\x80\x9f\x8b\xd1\x50\x5c\xe6\x45\xc1\x50\x83\xea\x2a\x63\xcc\x81\xe1\x2c\xe5\x4c\xc1\xec\x14\x95\xcc\x00\x6e\x55\x8b\xbc\x04\x1c\xf2\x69\x2d\x41\x30\xb6\x00\x5f\x88\x67\x1e\xdb\x8d\x80\xc3\xba\x30\x90\xd1\x92\x81\x76\x56\xa5\xbc\x90\x79\x01\x87\xe9\x01\x2f\xad\xa8\x07\x76\x11\xe1\x4c\x44\x39\xe1\x02\x6c\x56\xb9\x0d\x96\xd2\xdd\x35\x11\x0f\xe0\x1a\xab\xa2\xc0\xcd\x5f\xd8\x69\x8c\xab\xdc\xbf\x1f\xc3\x18\xe8\xb9\xcc\xaa\xcb\x0f\x55\x75\x67\x5e\x8c\x99\xa5\xd8\x26\x36\xdf\x56\x3b\xdc\x4e\xe2\x0e\x47\x74\x95\x65\x28\xcc\x7d\xa7\x04\x07\x44\x7e\xaf\x21\xba\xe1\xe1\xc1\x8a\x6e\x40\xf2\x0d\x69\x6b\x7b\x2c\x6c\xb6\x38\x14\x1d\xd1\x21\x19\x8a\xc5\x4d\x90\xa3\x1c\x56\x9f\xab\xbc\x44\xb4\x94\x4e\x64\x4f\x4c\x3c\x4e\x12\xc4\x4e\x39\xd0\xcb\x22\x37\x49\x47\xe0\xce\xd2\xb6\xfd\x4a\x2f\x57\xe5\xdb\xdb\x76\x24\x01\x6d\xa9\x3f\xe5\x67\x30\x09\x01\xfe\x98\xc6\x3d\x98\x20\xee\x13\x40\x17\x70\xdc\x16\x54\x21\xda\x9e\x27\x76\x13\xd3\xaa\x50\xa9\x79\x55\x2e\x57\xa6\xb9\x11\xb8\x11\xa0\x32\x89\x3d\xc6\xe4\x95\x46\x1e\x48\x27\x3d\x71\x42\x87\x74\xb9\xa4\x95\x5f\x5c\x8b\xb9\x04\x6e\x37\x59\xcd\x60\x71\xd4\x4a\xb8\xfa\xb9\x06\x86\x79\xae\x4a\x20\xfd\x2f\xdf\xd1\x76\x5e\x95\xc8\xdc\x69\x78\xe2\x8c\xe3\x32\xb3\x13\x7c\x21\x8b\x95\xe2\x61\x13\x6e\x9f\x43\x9c\x15\xa2\x7c\xb2\x5a\xc2\xb6\xae\xc5\xe2\x5a\x1b\x55\xe7\xd5\x4a\x8b\x57\xc7\xa3\xa1\x50\xc0\x64\xf4\xb7\x60\x45\x5b\x5c\x63\x5c\x78\xf9\xfd\x01\x25\x6e\x45\xbc\xc5\x4c\xf2\x32\x4b\xa6\x01\x01\xd4\x33\x20\x81\xa3\xba\x96\xd7\x83\x65\x5d\x99\x0a\x64\x3c\x12\xe0\x07\xa9\x2c\x8a\x44\xd6\x33\x5c\xac\xba\x27\x46\xc1\xde\xe5\x50\xe9\x7e\xb1\x29\x20\x8b\x15\xd7\x09\x2c\xe6\x1e\x02\xee\xc6\xd2\x7c\x5a\x2d\xaf\xdf\x4d\x3e\x27\xd5\xe4\x73\x4f\x18\x59\xcf\x94\xe9\x89\xea\x42\xd5\x97\x75\x6e\x94\xdf\xe6\xee\x51\x1e\xf6\x0f\xbf\x89\x31\x76\x24\xa4\x4d\x38\x4e\x02\x7f\xab\x26\x9f\x43\x6a\xac\x26\x9f\x07\x73\xa9\xdf\x5d\x96\xef\xe9\xbc\x79\x9d\x40\x49\xd4\x73\x24\xae\x29\xd4\xa5\xd2\xae\x78\x73\x23\xb8\xb9\xd6\x7a\x5d\x02\x2e\x1c\x2a\x9f\x20\xf9\x4c\x8c\xa1\x61\xfe\x1e\x91\x32\x95\x82\x6e\xa3\xc6\x7d\x55\x1a\xcd\xba\xe4\x62\xb5\x28\x45\x35\x9d\x6a\x65\x90\x31\x0b\x92\x9c\x61\x24\xce\x81\xd7\x1b\x39\xd1\x22\x2f\x4d\x05\xfc\x1b\x2a\x0e\x00\xc4\x6f\xc0\xc7\x17\x95\x06\x4a\x36\x15\x69\xb0\xe1\x38\xc5\xa2\xe0\x20\x1c\xdd\x55\x69\x5e\x62\x33\x89\x05\x8d\x42\x9d\x91\x93\x93\xfc\x4f\x2b\x49\xbd\x82\xb3\x18\x7f\xff\x1b\x50\xa8\x1f\x77\x55\x66\xf6\x00\x6d\x39\x37\x26\x31\xa6\x03\xad\x64\x9d\xce\x93\x9d\x4f\x7f\x3f\xd5\xa7\xab\xe1\x50\x0e\xcf\x76\xba\x6e\x93\xe6\xda\x7d\xdc\xce\xa3\x7a\x76\x09\x30\x87\x8f\xf8\x8b\xc7\x09\xa6\x62\xd8\x13\xa5\x4d\x44\xe4\x30\xf1\xe0\x20\x3c\xad\x96\xea\xca\x7c\x94\x13\x0f\x1e\x4f\x97\xef\xa6\x49\xe7\xd4\x74\x7a\x22\xf7\x18\xd9\x92\xcf\x05\x2a\x3b\xed\xcf\x17\x63\x2b\xa8\x45\x12\x4c\x09\xe7\x53\xc0\xbb\x2f\xf2\x2e\x0b\x1f\x25\xb0\x2d\x5b\xaf\x2f\x72\x9f\xc8\x83\x2a\xfa\x22\x29\xc5\x8f\xf6\x27\xb7\x2d\x7c\xa5\x6d\x31\xb2\xa7\x5a\x40\xfe\x67\x55\xc8\x6b\x95\x85\x4b\xb9\x2b\xbe\x98\x79\xae\x07\xa8\x5f\x83\xb1\xbf\x3d\xd8\xe2\x62\xe1\x82\x54\xe1\xfa\x17\xc9\x42\xf7\x04\x2f\xe3\xb4\x50\xb2\xfe\x98\x2f\x54\xb5\x32\x09\x83\x42\xf1\xd7\x41\xd5\xca\xd8\xfc\x69\x4f\x2c\x74\x77\xeb\xf6\x20\x58\x97\x76\x00\x25\x30\x81\x1e\x1c\x54\x1a\xe7\xec\x70\x23\x40\x46\x11\x9e\xc2\xc2\xbd\x00\x32\x81\xbb\x8f\xc7\x0c\xc5\x0e\x6e\x1e\xaf\x92\xfe\x88\x57\x08\x29\xa9\x44\x35\x15\xcb\xfc\x4a\x15\x1a\x36\x50\x95\xa1\x86\x28\xad\xab\xa2\xc0\x8b\xa6\x4c\xe8\xfc\x4f\x55\x43\xea\x3c\xcf\x14\x67\x4d\x64\x4d\x7b\x06\x17\xfc\xab\x5c\x8a\xb1\x78\x38\x44\xb8\x1f\xb0\x1d\x95\x81\x04\x85\x92\x51\x29\x26\xd7\x40\x3e\xc8\x64\x71\x58\xd3\xaa\x08\x55\x51\x0f\x5e\x3d\x58\x88\xb2\x32\x50\x7b\x2e\xcb\xac\xc0\x35\x39\xcf\xf5\x03\x52\x47\xbe\x27\x15\xcd\x17\x53\x9d\x20\xd9\xed\xb7\x70\xc0\x8e\xbf\x29\x19\x40\xf9\xce\xed\x2d\x63\xb3\xc2\x7b\x8a\x25\x0e\x37\xdd\xf0\x90\x16\x14\xce\x47\x76\xeb\x10\xf7\xc5\xb4\xce\x55\x99\x69\xbb\x17\xfe\x91\x55\xa5\x39\xc1\xfe\x41\xd3\xd4\xd3\x7d\xe2\x5c\xb7\x07\xae\xd4\xa2\x5a\x69\x38\x38\x7d\xa9\xea\x7c\x96\x97\xfb\xa2\xf3\x17\x4c\xea\x44\x65\x2e\xe2\x22\xdb\x90\x02\x25\x50\x71\xab\x44\x5e\x5e\xa8\x5a\xe3\xdd\x57\xc0\x49\x44\xbf\x4f\x3c\x07\x78\x18\x33\x2f\xba\xa2\xa9\xea\x5a\xe9\x65\x55\x66\x30\x88\x78\x3f\x06\xd2\xb9\xc9\xd3\x55\x81\x9a\x19\xa8\x1d\x70\x27\x00\xd2\x60\x4e\xb3\x4a\x16\x8e\x3b\x35\x28\x6e\x89\x3a\xec\x21\x1c\x96\x0b\x24\xbe\xef\x61\x01\xcb\x4a\xaf\x33\x01\xc7\x9a\xd6\x2a\x07\xec\x89\xc0\xeb\xf3\x7c\xb9\xc4\x45\xea\x97\xfe\xb2\xd2\x6d\x20\x63\x10\x37\x37\x88\xef\xb6\x83\xf0\x62\x8c\xbd\x5c\xe3\x35\xd0\xbd\x6d\xf1\x46\x9a\xf9\x60\x91\x97\x09\x17\xa7\x21\x11\x7d\x00\x62\x39\x10\xc2\x6b\x43\x84\x33\x02\x3e\x04\x29\x0d\x4e\x44\xc3\x18\xf3\x22\x3e\x52\x55\x85\xc3\x2e\xc6\xeb\x36\xe4\x57\x7a\x29\x53\x75\x62\x6a\x00\xf3\xa9\xd3\x39\xf3\x13\x6a\x73\x92\x92\x66\x86\xe5\x76\x57\xc1\x8e\xc9\xf3\xb1\x28\x2d\x8f\xf0\x99\xcb\x95\x9e\x27\x85\x36\xbe\x3c\x08\xae\x20\x80\x86\x6c\xc2\x65\x7e\x2a\xcf\x22\x49\x02\x6a\xca\xba\x0e\x30\x97\x75\xfd\x49\xd6\x35\xb7\xda\x1f\x9d\x45\x52\xcf\x42\x2e\x2d\x77\x0b\x64\x9f\x0a\x65\xaa\x4f\x67\xdf\xc4\xea\x40\xec\x15\x5f\xa0\x0e\x32\x38\x31\x75\xdc\xae\x67\xf7\x0b\x46\xa5\x5a\xc5\x67\x82\xbc\xd4\xaa\x36\x27\x55\x6d\x54\x66\xb1\x40\xd9\xb0\x27\x74\x5a\xd5\x81\xb6\xc5\x51\xfd\xb2\xce\xab\x3a\x37\xd7\x40\xa4\x50\x24\xc1\xf2\x5d\x3f\xcc\x50\x32\xc6\x10\x24\x1c\x2a\x4b\x78\x2d\x2b\x7d\xd6\x85\xd1\xb7\xb0\x50\x93\x5f\xe9\xed\x6d\xc4\x95\xaa\x82\xdc\x9f\x2a\x80\xd6\x83\x66\xb9\x95\x10\xf9\xb2\x32\xf3\xbc\x9c\xc1\x2e\x15\x89\x72\xa8\x6e\x01\x61\x6e\x22\xb5\xea\xa1\x38\x16\x1c\x75\xf2\x52\x1b\x16\x2a\xde\x21\xb7\x63\xfd\x8c\x5d\xc4\x90\x2f\xc6\x22\xca\x43\x48\xa8\x02\x26\xa5\xe0\x17\x56\x31\x63\xfb\x7e\x27\x14\x63\xbc\xf5\x0d\xc1\x94\xea\xd2\xe3\xc9\x42\x06\xdd\x70\x10\x52\x4e\xf0\xc4\x84\x1e\x56\x8b\x66\x0c\xd1\x65\x8a\x2f\xab\xf2\xe8\xe4\xe5\xab\x57\x27\x79\x39\x2b\xd4\x4b\xa9\xd5\xef\x55\x9d\xbd\x9c\xcb\x5a\x8c\xc5\xce\x27\x90\x7b\xb2\xe9\xe9\x6a\xf8\xf8\xe9\x1e\x7c\x3e\x1b\xf6\xe1\xcf\xf4\xd1\xe9\x6a\xf8\x64\x88\x3f\x9e\x4c\xa7\xa7\xab\x87\xc3\x47\xf0\xe3\xe1\xf0\x19\xfe\x90\xf4\x03\x73\x1e\x61\xb1\x47\xd9\xe4\xf1\xe9\xea\x91\xc2\x1f\xcf\xa6\x69\x7a\xba\x92\x29\xfe\xc8\xf6\xe4\xf4\x6c\x27\xa0\x1f\x6d\x31\xf8\x49\xea\x3c\x4d\xac\xf2\x9e\x91\xdf\x39\xbd\xe4\xeb\x28\xc8\x00\x16\x34\x17\x2f\x44\xe7\xf4\xea\xe9\xb0\x23\xee\xdf\xc7\x81\x4a\xd2\xf9\xc0\x54\xbf\x2d\x97\xaa\x86\x1e\x25\x5d\x71\x6f\x2c\x30\xed\x75\x75\xe9\xd2\x50\x7d\xb7\xa9\xf7\xae\x89\x6e\x78\xb2\xf4\xb8\x25\xe9\xbc\x27\xe6\xaa\x58\xaa\x3a\x90\xe4\x5d\x82\x1b\xea\x96\xce\xd8\xf9\xa2\xc2\x03\x5d\xad\xea\x54\x05\x3c\xfd\xf4\xb2\xd3\x15\x2f\x44\x7f\x84\xb7\x32\xeb\x00\xda\xf4\x41\xfc\x9b\x41\x5a\xdc\xe3\x75\xa9\x8f\x17\x4b\x73\x0d\x67\x86\xc6\xee\x53\xda\x93\xc5\xe6\x53\x45\x89\x47\x0a\x38\x04\x94\x67\x41\xfb\x74\xa8\x88\x4f\x04\xf5\x4a\xb1\xb4\x73\x7c\x65\x54\x89\x8a\x9d\x55\x99\xa3\x75\x89\xd3\x0e\xea\x81\x38\x12\x5a\xd5\xb9\xd2\xb0\x05\x4b\x98\x89\xbe\x72\xe5\xa1\x9c\xd8\xc6\x6d\xb6\xbc\x16\xa5\x93\x9a\xe2\x12\x78\xfb\x6a\x70\x35\x65\x02\x8f\xbd\x1a\xe7\x11\x9a\x33\x90\x30\x95\x68\x4c\x23\x35\x5a\xd6\x40\x35\x90\xae\x16\x4a\xea\x15\xec\x63\x50\x3d\xad\xca\x54\x81\xe8\x34\x70\xf7\xb9\x65\x65\x04\x5d\xe8\xe2\xae\x9f\x9a\x1e\x00\xd1\x79\x99\x2a\xb2\x97\xd1\x68\x89\xa3\x77\xa6\x55\x69\xf4\x8e\xbb\x06\x94\x85\xae\x08\x1d\xb2\x24\x02\xd8\xd3\x7c\xb6\xaa\xf1\xe8\x82\x76\x45\x28\x6d\x64\x4a\x2c\xab\x1c\x4e\x4a\x88\xf3\xac\xae\x56\x4b\x12\xba\x5c\xf7\x5e\x62\xef\x78\x01\x3e\xa4\x75\xf6\xf0\x09\xac\xc3\x47\x4f\x1f\xf6\xf1\xcf\x33\x5c\x8e\x23\x5c\x8e\x93\x0c\x3f\x71\x9d\xa6\x23\xfc\xdc\xc5\xcf\x47\xf8\xf9\x18\x3f\x61\xfd\x3e\x19\xd1\x92\x1d\x49\xf8\x7c\x34\xc1\x1f\x8f\x15\x7c\xee\x0d\xe1\x33\x7b\x82\x49\x59\x8a\x9f\x0a\x7f\x28\x5c\xec\x0a\xeb\xab\xa7\xf8\x29\x29\x03\x9a\xdd\x1b\x41\x83\x7b\x0f\x11\xf0\xde\x23\x00\xbc\x27\x11\xca\xde\x04\x40\xee\x29\x6c\x65\x6f\xfa\xf0\x74\x35\x7c\x3a\xc2\x9c\xa7\xa3\x67\xf8\x89\x39\x4f\x77\x31\x67\xf7\x31\xfd\xd8\xc3\xcf\x67\xf4\x03\x1a\x78\x46\xdd\x7f\x36\x84\x2e\x3d\x7b\x08\x98\x3d\x7b\x84\xfd\x7e\xf6\xe8\x29\x7e\x62\xa9\xc7\x94\xf4\x18\x3a\xfb\xec\x09\x96\x7d\x02\x80\x9f\x3d\x05\xfc\x9e\x4d\xb0\xde\x04\xba\xfa\x2c\xa5\xa2\x38\x3a\xcf\x52\xac\x9d\x41\xb3\xcf\x14\x56\x53\x50\x4d\x0e\x47\xf8\x09\x29\x12\x1b\x95\x8f\x30\xe5\x11\xa6\x3c\xda\xc3\xcf\xa7\xf8\x89\xdd\x90\x88\x86\x7c\x8c\x85\x70\x30\xe5\x1e\x7d\x07\x8c\x24\x62\x21\x9f\x62\x65\xc4\x45\x12\x16\x12\x67\x47\xe2\xec\xc8\x14\xe1\x21\x46\x12\x71\x91\x88\xcb\x04\x71\x99\x20\x16\x93\x87\x0a\x3f\x61\xae\x27\x34\x0c\x93\x47\x8f\xf0\x13\xaa\x4d\x1e\x3f\xc1\x4f\x00\x37\xc1\x51\x98\xe0\x28\x4c\xb0\xe5\x09\xf6\x7f\x92\x0e\xf1\x13\xcb\x63\xc7\xd3\x87\x38\xd3\xe9\xa3\x21\x7e\x3e\xa1\x1f\x4f\xf1\x53\xd2\x0f\x28\x9c\xe2\xe0\xa6\xd8\x44\x8a\xc0\x53\x04\x9e\x62\x87\x52\xa4\xbf\x14\x29\x2f\x4d\xb1\x4c\x8a\xe9\xd8\x50\x9a\x61\xdd\x0c\xd3\xb1\x6f\x29\xf6\x2d\xc3\xfe\x64\xd4\x93\x0c\x7b\x92\x61\x63\x19\xf6\x21\xc3\x66\x32\x6c\x26\x4b\x25\x7e\x42\x33\x59\xb6\x8b\x15\x32\xac\x80\x50\x33\xdc\xa7\xd4\xc3\x11\x7e\x3e\xea\xe3\x1f\xa8\xa1\x1e\xed\xe1\x8f\x47\xd0\x92\x9a\x60\xfe\x84\xf2\x27\xcf\xf0\x73\x82\x9f\x80\xac\x4a\x9f\x62\x06\xe2\x3c\x1d\x3d\xc5\x4f\x28\x34\x7d\xf8\x18\x3f\xf7\xf0\x13\x53\xf6\x10\xe7\xe9\x1e\x80\x9d\x3e\x45\x22\x9d\x3e\x7d\x84\x9f\x4f\xf0\x13\xcb\xd2\x8e\x39\x7d\x46\x3f\x90\xae\xa7\xd8\xd4\x14\xc6\x68\x34\xdc\xcd\xfa\xf0\xe7\xe1\x10\x3f\x77\xe9\xc7\x1e\x7e\x3e\xc3\x4f\x89\x9f\x19\x7e\x2a\xf8\x7c\xfc\x14\x3f\x31\xf7\xb1\xc2\x0a\x4f\xb0\x36\x22\x34\x1a\xee\x3d\x82\x4f\x98\xf0\xd1\xf0\xe9\x63\xfc\xc4\x96\x9e\x22\x8c\x67\xf0\xf9\xf0\xf1\xf4\x74\x35\xda\x1b\x61\x73\x7b\x23\xa8\xb0\x47\x6d\xef\x3d\xc4\x1f\x8f\x77\xf1\xf3\x21\x7c\xee\xe1\xf7\x3d\xfc\x3e\xd9\xc3\x42\xc0\x70\x46\x7b\xd8\x81\xbd\xf4\x19\x26\x65\x98\x9f\x41\xc6\xd3\x21\xac\x88\xd1\xd3\x21\xfe\x90\x80\xe8\xb3\x5d\x18\x86\xd1\xb3\xdd\x5d\xfc\xdc\xc3\x4f\xe8\xc7\xb3\x87\x98\xf2\x10\x81\x3c\x7b\x38\x39\x5d\x8d\xe4\x68\x0f\x3f\x21\x5b\x02\xb1\x8d\xe4\x63\x98\x95\x91\x04\x4e\x35\x92\xd8\x59\x09\x84\x31\x92\x4f\x1e\x63\xc6\x93\x14\x3e\xf7\x1e\xe2\x8f\x3d\xfa\x01\x3d\x9c\x20\xef\x18\x4d\x86\x80\xdc\x04\xbb\x36\x79\xf8\x04\x93\x70\x5c\x71\x4d\x8d\x26\xb0\xa6\x47\x93\x27\x88\xf5\x04\x3b\x3a\x79\x3a\xc4\xcf\x11\x7c\x4a\x1c\x99\x89\x7c\x8c\x9f\x4f\xf1\x13\x3a\x95\xee\xa6\x90\x91\x3e\x7c\x88\x9f\x4f\xf0\x13\x70\x4f\x33\x6c\x36\xcd\x76\xf1\xf3\x11\xfe\x50\x43\xfc\xdc\xa5\x1f\x4f\xf1\x13\x06\x28\x4b\xb1\x70\xa6\xa0\x7e\x36\x45\x72\xc8\x40\x72\xda\x1d\x0e\x53\xfc\xcc\xe0\x13\x41\xee\x0e\xa7\xc3\xd3\xd5\x6e\xaa\xa6\xf0\x23\x9d\x8e\x4e\x57\xbb\x99\xc2\x9c\x8c\xc4\xb0\x5d\x89\x92\xd7\x2e\xfe\x78\xf6\x0c\x3f\xe5\xe9\x4a\x3e\x79\x02\x55\xe4\x13\x98\x4c\xf9\x04\x86\x48\x3e\xd9\xcb\xe0\x13\x20\xca\x27\x00\x4a\x3e\x05\x76\x27\x9f\x0e\x9f\xe0\xe7\x04\x3e\x77\x1f\xe3\x27\xa6\x00\xc3\x94\x4f\xb1\x39\xf9\x14\x2b\x3c\xdb\x85\xc1\x94\xcf\x80\x51\xcb\x67\xb8\xce\xe4\xb3\xc7\x98\x83\x0b\x42\x3e\x03\x32\x94\xcf\x26\x0f\xf1\x93\x0a\xc3\xa2\x93\xc8\x90\xa5\x44\x46\x2f\xe5\xae\x82\x4f\x58\xba\x52\x02\x41\x48\x09\xcb\x4d\x4a\x18\x53\x29\x1f\x3d\xc4\x4f\xac\x00\x7b\x8a\x94\x93\x5d\xac\x36\x79\x84\x9f\x7b\xf8\xf9\x14\x3f\x11\x10\x70\x22\x29\x61\x27\x94\x13\xf5\x18\x3f\x9f\xe2\x67\x76\xba\xca\x58\xea\x9c\xc2\x78\x4d\x27\x23\x75\xba\x9a\x92\x54\x3a\x55\x43\x48\x52\xbb\xf4\x03\xfa\x3c\x9d\x3e\x53\xf8\xd9\x90\x50\x8f\xc3\x8d\x9a\x24\x54\x2b\xff\xa4\xf3\x01\xc8\x26\x2f\xab\x4c\x1d\x99\x64\xd8\x85\x63\xe7\xde\x93\xa7\x20\x3e\xc5\xdb\xbb\x17\x62\x6f\x03\x1d\x0e\x48\x04\x2c\xef\xb8\x7b\x79\xba\x29\xfe\xf4\x8f\xe1\x3f\x0e\xc4\x3f\xb4\xb1\xa7\xbe\x7f\x9c\x89\x55\x59\x28\xad\xc5\x3f\x96\x95\xfe\x07\x88\x2e\xd5\xca\xe8\x3c\x53\xa4\xb3\xc0\x6a\x81\x4e\x02\x8e\xdd\x11\xe2\x3a\xd1\xa6\x46\xfd\x41\x4f\x64\x79\x1d\x1d\x6c\x93\x2c\xaf\x51\x93\x78\x88\xc7\xb4\x17\x62\x28\xf6\x05\x1d\xc3\x3c\x06\x5d\x92\x50\xe3\xd1\x80\x6c\x18\x81\x23\x03\x07\xad\x6e\x97\x0f\x62\x70\x7a\x07\x98\x81\xa8\x08\x67\xfb\xb8\xef\xd0\x5b\x3c\x95\xad\x77\x1e\x12\xa0\xff\xa6\xfa\xc7\x19\xf5\x4f\x4b\x93\xeb\x69\xae\x50\xb2\xfa\xc7\xb2\x56\xd9\x3f\x50\xbe\x03\xa9\xae\xa8\xb4\xd2\x46\x98\x4a\x50\xc5\x81\x38\xd2\x7a\xb5\xb0\x16\xb7\xd2\x88\x42\x49\x6d\x10\x1c\x4a\x77\x16\x16\x03\x1a\xe0\x6d\x05\xda\x19\x13\x00\x31\x51\x20\x31\xce\x50\xda\xac\x01\x4a\x89\x95\x1b\x3a\x9f\x5f\xf2\x5a\x9b\x04\x40\xf4\xb0\x0b\x3d\x61\x2a\x77\xe5\x7a\x64\x50\x9c\x45\xe1\x4f\x5c\x2a\x34\xed\x4d\x55\x6d\x64\x4e\xb0\xd6\xb0\xe8\x89\xac\x2a\x1f\x18\x71\x5e\x56\x97\x04\xe2\x72\xae\x50\xb4\x64\xa4\xb2\x4a\x69\x7b\x93\x09\x83\x3b\xa6\x71\x7b\x01\x1d\x3f\x84\x13\xc4\x3e\xea\x40\x50\xd2\xf7\x3a\x25\x90\xf1\xb1\xdc\x78\x4c\xe8\x39\x71\x1e\x12\xbd\x62\x68\x91\x67\xbf\x88\x31\x97\xdd\xc6\xa2\x3b\x62\xb7\x07\xe9\x82\x26\x93\x08\x04\x15\x3b\xa9\xca\x8b\x04\x6a\x74\xc5\x3e\xa5\x4c\x8b\xaa\xaa\x29\xc9\x35\x8b\x55\x09\xcb\x50\x0f\x53\xab\x0c\xb2\xba\xe2\x90\x70\xd8\x87\x0e\xf8\x0b\x71\x97\x8f\x77\x24\x95\x18\x23\x0a\x94\xcf\xd6\x14\xd4\x1f\x4c\xdf\x76\x74\x76\xcb\xe4\xf5\x71\xae\x44\x96\xeb\x65\x21\xaf\x49\xd9\xc9\xd6\x2f\x3f\xbf\x7b\x23\xf2\xd2\xa8\x19\x89\xe8\x3d\x31\xa9\xcc\x1c\x47\x2b\xc7\x1b\xa8\x5a\xe1\xbd\x34\x9d\x43\x32\x67\x07\x94\xd5\xf2\x12\x0e\xe9\xe2\x95\x11\xf3\xaa\xc8\xb4\xa8\x95\xb7\xe8\xae\x10\x6c\x59\x65\x0a\xed\xbe\xd1\x98\x9b\xda\xee\xd7\xaa\xc0\xb3\x8a\x36\xd2\xa8\x41\x70\x36\xfb\x99\x0a\x24\xcb\x42\xa6\x0a\x66\x3d\xed\x11\x0a\x5e\xc7\x00\x43\x6e\xe6\xb9\x76\x9a\x6e\xbe\x23\xc3\xbf\x5b\x44\x1d\x2f\xab\x0b\x38\x88\x4c\x2a\x63\xaa\x45\x9f\x1c\x1e\xf4\x3f\x57\x40\x67\x78\x53\x8e\xdd\x73\xea\x64\x8d\x04\xc8\x96\x36\x40\x45\xd9\xc0\xe5\xfd\x92\xa3\x32\x9a\xcc\x78\x3a\x59\x7e\xd1\xe9\x09\xba\xe8\x0a\x94\xbe\x7d\x57\xbc\x3f\xc5\xf2\x78\x9f\xba\x06\xa5\x61\xe2\x93\x2e\xfa\x65\x65\xfa\x3c\x98\x9d\x9e\xe8\xc0\x91\x11\xab\x36\xbb\x00\xe7\xa5\xd9\xca\xc0\x82\x23\x73\x0e\xc8\xfc\x2b\x26\xbc\x55\x57\xe6\x63\x75\x62\x5b\x42\xe6\x57\x12\x08\x98\xaa\xa0\x9b\x90\x15\x75\x92\x20\x7e\x5b\x0f\xa9\x6c\xdc\xbd\xb0\xfe\x77\xf5\xed\xf7\xbc\x28\xac\xd1\x0b\x1b\x5c\x99\x95\x2c\xf0\x48\x88\x6c\x38\x07\x62\xa0\xfb\x00\xec\x2a\xf1\xc3\x5c\x5d\x02\x27\x22\xe4\x8b\xbc\x54\x3f\xe7\x17\x84\xf7\xfb\xcd\x88\x03\x4c\xdb\x2e\xdf\xdc\xd3\x7c\xbb\x1b\x07\x33\x57\x5a\xc1\x97\x5a\xf1\xf0\x08\x77\xad\x4b\xe4\xbe\xaa\x75\x55\x6b\xa6\x0c\x9b\xe5\x1a\x8f\xdb\x66\x0c\x6c\x27\xf6\x05\xd2\x7a\x7e\xa1\x0e\xc4\x9f\x7d\xd4\x6d\xec\x8b\x11\x0f\x20\x01\xde\x00\x28\xea\x04\x61\x60\xfb\x71\x24\x2e\x72\x6b\x9e\xb6\x2f\xe6\x79\x96\xa9\x52\x28\xb6\x57\xc0\x2b\x07\x7b\x65\x08\xe3\xa6\xf3\x3f\xd9\xb5\x25\x2f\x67\xdc\x0b\x3a\xfa\xab\xaf\xb5\xcb\xc5\xdc\xbc\x01\xed\xc1\xc0\xfb\x0d\x96\x5d\x66\xec\xdc\xe0\xc8\x72\xad\xac\x07\x59\xd7\x98\x04\x9c\x02\xb5\x2b\xb8\x64\xdd\x04\xbe\xf9\xd7\xd0\xa8\xe5\x52\x0b\x75\xa1\xea\x6b\xec\x13\x6d\x65\xa5\x52\x78\x27\x21\xd4\x55\xae\x8d\xc8\x4b\x16\x00\x94\xb8\x50\xb5\xc9\x53\x59\x14\xd7\xfd\x25\xcd\x7a\x5a\x55\x75\x96\x97\xd2\x28\xa1\xaf\xb5\x51\x0b\x87\xd1\xc9\x52\xa6\xaa\x41\x54\x9f\xdc\x78\xf5\x62\xbc\x7b\x0d\x7a\xe8\x85\x73\xda\xf3\x44\x7a\xd6\xe3\x8b\x80\xf8\xdf\x1d\xa4\x52\xad\x0c\xd4\xdd\x17\x65\x55\x52\xbf\x81\xf5\xd1\xd0\xaf\x21\xe7\xf0\x3e\x8b\x87\x0d\x8b\xdb\x41\x7b\x53\x5d\xa0\x13\x0d\x7a\x3c\xe5\x46\xb3\x4d\x95\x5f\x62\x48\x52\x05\x4d\x25\x13\x09\xa6\x47\x73\xf3\x09\x61\x9e\xdd\x41\xe6\xb6\xbd\x13\x65\x78\x71\x89\xb9\x42\x06\xcc\xa4\x62\x8d\x80\x7a\x42\x16\x45\x05\xfb\x07\xb3\x28\x74\xdc\xc1\x25\x86\xb7\x7e\x71\xbb\x8c\x4d\xa3\x87\x58\xd2\x32\x5b\xf8\xfe\x7b\x9e\x99\x39\xdf\xa7\x12\x1e\x3f\x59\x6f\xa3\x6a\x0a\x00\xb5\xb8\xcc\xcd\x1c\xad\x0f\xa6\x45\x75\xb9\x2f\xe4\xca\x54\xb8\xca\x81\x34\x48\x17\x46\x15\xf3\x32\xad\x4a\x9d\x6b\xdc\xe9\x64\x5a\x57\x5a\x3b\x4b\x77\xaf\x23\xb3\xab\x4d\x95\x48\xc8\x66\xae\xa8\x36\x75\x49\xc2\x80\xca\x5a\x49\x34\x3a\xc9\x67\x42\x95\xd5\x6a\x36\xa7\x6e\xd2\xb0\xfc\x52\xd5\x69\x3b\xfb\x5d\x1b\x62\x39\xd1\x55\xb1\x32\xea\x80\x47\x74\x1f\xed\x6a\xc2\x7b\xd0\x6d\xd1\x59\x5e\x1d\x88\x4b\x18\x85\x7d\x31\x5a\x5e\x1d\x6c\x64\xb9\xc4\xbc\x75\x0f\xe4\x0a\x59\x5e\x87\x3b\x82\xfe\xb6\xcd\x40\xf3\xc0\x03\x49\xd0\x5e\x14\x0d\xfc\x11\xf1\xf4\x60\x20\x94\x37\x8f\xb3\x7b\x63\xcb\x3c\xe3\x3c\xf6\x1a\xe3\xd3\xf3\xc8\x35\x49\x00\xe1\x44\x1b\xee\xda\x6e\x64\xe4\x04\x4d\x0d\x60\x1f\xea\x8f\xec\x90\x7c\x9c\x3b\x94\x80\x33\x91\x4d\x30\xda\x02\xa3\xf7\xa1\x28\xf2\x0b\xc5\xbc\xca\x1a\x10\xaf\xe1\x1a\x6f\xf0\xbd\xc6\xa6\xd8\x0b\x50\x8a\xd1\xee\x74\x59\x52\xf9\xbd\xaa\xcf\xed\xaa\x7c\x75\xbc\x67\xf7\x08\xb4\x5b\x4a\xca\xca\x88\xa5\xaa\xa7\x2a\x35\x3d\x31\x07\xb1\x0a\xcb\x40\x72\xad\x80\x9f\xb1\x30\xae\x49\x44\x57\x99\xb5\x02\x5f\x73\x64\x78\x2e\x9e\x82\xc8\xe8\x06\x91\xed\xbd\xff\x24\x0b\x8c\xb1\xe8\x8f\x0e\xa2\xe1\xc3\x5c\x5e\x11\xe8\x2c\x21\xc6\x62\xe8\x14\xf6\xf7\xbc\x5f\xd6\xbd\x84\xdc\x27\xee\xdf\x67\xc7\x9d\x2e\xb5\xe3\x40\x65\xb5\x9c\xcd\x70\xfa\x9d\xdf\x88\xbd\xa6\x01\x19\x2f\x14\xc5\x31\x21\x34\xec\xc6\x13\x53\x33\x31\x71\xd3\xd1\x8d\x25\x5f\x2c\xd9\xcc\xbd\xb5\x12\x21\x5b\xcc\xd5\xaa\xcc\x54\xad\x32\x3e\x4e\x25\x0b\x09\x83\x08\x6b\x73\x66\x4f\x33\x76\x3f\x63\xbf\x9e\x2e\x91\x00\xa4\xfc\x42\xb2\x35\xfd\xf8\x58\x91\x45\x23\xb9\x11\x60\x99\x5a\xd1\x34\xfc\x2d\x2c\x1b\x26\xae\xd5\xd9\xd9\x11\xaf\xca\x69\x55\x2f\x24\x49\x1b\x93\x6a\x65\xe8\xb4\x67\xf1\x44\x86\xeb\x51\xb0\x17\x97\x00\x97\x4a\xfc\x8d\x52\xfd\xc2\xfb\x15\x25\xf1\xbc\x9c\x56\x0c\xcf\x5d\x07\x44\x40\x49\x92\xcc\x8d\xb8\x94\xda\xe5\x10\x04\x10\xfc\x79\xc7\x23\x4e\x4d\x67\x61\xa0\xbb\xbc\x0c\x36\x08\x38\xc7\xd7\xa5\x2c\x78\x3b\xcc\x22\x34\xf0\x92\x85\xae\x72\x45\x92\x97\x6c\xe8\xd1\x05\x9c\x2e\x94\x1b\x64\xd7\xb1\x77\x64\x64\x30\x16\x43\x62\x2a\x52\x1b\xd8\xe7\x7f\x55\x4c\x7d\x3e\xc9\xf2\x78\x2a\xb8\x5a\x66\xd2\xa8\xd7\x79\xa9\xc8\xa6\x44\x5b\x24\x30\x97\x1c\xcd\x7e\x92\x6e\x63\xc8\x06\x13\x59\x07\x40\x27\x3e\x6b\x18\xcb\xec\xfa\x65\x61\xcd\x01\xf0\x76\x87\x09\xe9\x37\x66\xf8\x55\x59\x5c\x8b\x5a\xa1\x70\x05\x9d\xc1\x21\x65\x85\x45\x28\xaa\x97\x2a\x55\x5a\xcb\xfa\x5a\x24\xf0\x9b\x80\xa0\xcc\xbb\x40\x47\x95\x6a\xca\xdb\x3a\xee\x30\x0a\x6d\x16\x81\x1b\x40\x0d\x94\x6b\x16\xf2\x5c\x69\xdc\xb1\x91\xad\x8b\x74\x8e\x86\xfd\x8e\xf5\xbe\x5d\x2d\x7c\xe7\x38\xe1\x55\x59\xaa\x7a\x2d\xd5\x5e\xa6\xf8\x39\xb2\x9b\x34\xac\x4b\x32\x21\xc6\xfb\xa7\x79\x55\xe7\x7f\xc2\x5e\x51\xf4\xdd\xd6\xcc\x34\x93\x67\x33\x65\xdc\x1e\x89\xd2\xd4\x40\x1c\xc1\x01\x0f\xcd\x5c\x16\xf9\x9f\x7c\x82\x0c\x8b\xcb\x22\x9f\x95\x7c\xcf\x64\x4d\x24\xc2\xc1\xa0\xad\x14\x47\x99\x08\x0b\x2b\xfc\x8e\x95\x75\x38\xfe\xd9\x20\x95\xe9\x5c\xe1\x35\xa0\xef\x1e\xa5\x7d\x54\x57\x26\x98\x58\x4a\x7c\x4f\x2c\xec\xd7\x80\x28\x80\xf3\xd7\x32\x3d\xa7\x93\xef\x42\x5e\xe5\x8b\xd5\x82\xd0\xe5\x1b\x75\x5d\xd1\xc8\xa3\xec\xe2\x86\x22\x30\x3f\x42\x20\xa9\x2c\x81\x73\x9c\xab\xa5\xc1\x73\x6c\x9e\xd2\x10\x36\x84\x99\x85\xbc\x7a\x8d\x7e\xd8\x76\xd8\x5d\xd2\x6b\x6a\xcd\x12\x1e\xa7\xbe\xc4\xe9\x6d\xa5\x3a\xbf\x2c\x61\x2c\x2f\xe7\x4a\x15\xbe\x35\x31\xab\x65\xb9\x2a\x64\x9d\x9b\x6b\xda\xb3\x20\xff\xe7\xff\xc2\xc1\xa0\xef\xff\xed\xbf\xa3\x1d\xeb\x7f\x35\x7e\xff\x77\x73\x94\x2c\x55\xe8\x79\x3e\x85\x49\x17\x73\x55\x64\x22\xab\x2e\x4b\xde\xc3\x31\xbd\x7d\x7d\x18\x18\x63\xa7\xa6\x91\x25\x8b\xea\x73\xe4\xe4\x70\xf4\xc7\x6b\x44\x32\x91\x2c\x8d\xba\x32\x62\xa1\xca\x15\x2b\x77\xa4\x16\x15\x16\x73\x67\xae\x5f\xaa\xfa\x25\x95\x7b\xa3\xca\x55\xb4\xc6\xc9\x2a\xfb\x63\xb5\x4a\xe7\x41\x3a\xaa\x03\x06\x79\x99\x9b\x24\xeb\xb2\xfa\xe3\x17\x7b\x24\xc2\xd9\x26\x7b\xac\xc0\xa2\x09\x8f\x12\x24\xb2\xce\xf2\x0b\x3e\xea\xf0\x9a\x0e\xd4\x5b\x33\x65\x60\xa2\x12\x54\x4e\xb0\x15\x4c\x29\xfa\x31\x63\x47\x7b\x21\x67\x81\x28\x5e\x50\xae\x26\x8b\x27\x36\xda\x2f\xd5\x25\xf9\x15\x24\x9d\x8f\x68\xa2\x8c\x77\xae\xd4\x2a\x48\x76\x49\x29\xb6\x3d\x50\x32\x94\x61\xe9\xcd\x59\xd2\xb3\xe1\x0c\x39\xac\xae\xca\x73\xda\x5f\xbc\xfa\xf2\x1e\xa6\x22\x07\xd0\x76\xaf\x6d\x18\xbd\x58\xa7\x2a\x3e\xa3\x10\x28\xeb\x4c\x01\x95\x53\xf6\x68\x43\x9b\x17\xfd\xa7\x73\xb2\xc0\xdc\x93\xfc\x4f\xf2\xba\x71\x56\x52\xe2\xb9\xd0\x7f\x92\x6f\x07\x21\x84\xa5\x0f\xc4\xa4\x56\xf2\x9c\xb7\x6c\x1e\x31\xfd\x27\xfe\xb2\x16\xa2\x4e\x73\xec\x50\x66\x03\xa0\x9d\x1d\xf1\x57\x65\xd8\x55\xa2\x36\x74\x53\x6e\xc7\x40\x4c\x94\xb9\x54\xaa\x14\xe6\xb2\x72\xca\x03\xdd\xc3\x4b\xe5\x92\x0c\x5e\x44\x35\x45\xe5\x26\x5a\x6d\xe9\x78\x2e\x7f\xa2\xda\x34\x9d\x6d\x4e\x47\xd6\x5c\x28\xb0\x51\x45\xe4\xd0\xc5\x25\x1d\xe4\x46\xd5\x89\x4f\xc5\xca\xf8\x4d\x6c\x8b\x51\x2f\x30\xdd\x84\xb4\xd0\x9a\xcd\x90\xa7\x1d\x24\x0f\xe0\xbb\xb7\x33\x43\x3b\x4a\x86\x82\xe4\x42\x25\xe1\x8f\x77\xb1\x84\x02\xd6\x8a\x22\xa8\xe7\x31\x69\xaf\x49\xf9\xbe\x62\xb5\x32\x64\x95\x05\x65\x68\x1e\xb7\xb7\x81\x33\xdf\x76\x9b\xa6\x4d\xc1\x2c\xd0\x96\x65\x07\x1e\x75\x8e\x70\x86\x32\x15\x0d\x3b\x8f\x79\xfb\x80\xc3\xe2\xd1\x34\xdc\xb1\x66\xb8\x61\x9b\xe5\x06\xd7\x96\x6a\x19\x4c\x8f\xbe\x1b\xc6\xae\xb8\x45\x2b\x7b\xa8\x0a\xc2\x46\x0d\x3b\x27\x2a\xcd\x24\x70\xef\xf4\xdc\xf9\x47\x99\x7a\x65\xe6\xd7\xa4\x67\x5f\x33\xe3\x02\x56\x86\xa2\x45\xe3\x08\x2b\x05\xcd\xf2\xb2\xae\x96\x72\x26\x0d\xe9\x1f\x5c\x09\xda\x9d\xa1\xf6\x6a\x79\x29\x6b\xd2\x48\xf0\x51\x1b\x55\xa1\xc1\x58\x78\xd1\x85\xf6\xad\x84\x20\x13\xa4\x40\xe1\x99\x4f\xa7\x62\x6c\x1b\xe8\x13\xc1\xd0\x2f\x66\x34\x50\x22\x72\xa0\x2c\x99\xae\x0e\x44\x79\x80\x3f\xca\x81\x77\xa1\x2a\xb9\x32\x5d\x44\x4c\xa7\x68\xb6\xc2\x8b\x0c\xd9\x9e\x0c\xf9\x63\x8f\x6d\xcf\x8d\x8e\x44\x9c\xc9\xb5\xb8\x94\x05\x1a\xb0\xaf\x96\xc8\xcf\x56\xb3\x39\x06\x6c\xf1\xaa\x85\x22\x2f\xcf\xc3\xfe\xa2\x18\x52\x05\xeb\x00\x70\xc7\xde\x70\x05\x6f\x84\xee\x8c\xb3\x57\x45\xe1\x19\xdc\xaa\xb6\xeb\xc5\x3a\xca\x95\x15\x6a\x7e\xc9\x62\x28\x5d\xd5\xc4\x35\x48\xfa\x88\x7c\x5a\x1c\x2f\x5a\xd5\x5c\xf9\x80\xd2\x0e\x18\x2c\xfe\xe8\x05\x3c\x0b\x78\x90\x1b\xb4\x6f\xe0\x9b\xe4\xb0\xd6\xe0\x97\xd0\xa5\x74\x85\x86\x50\x0d\xf6\x57\xc1\xf0\xaf\x95\x5f\xe3\xa9\x0d\xd6\x08\xd5\xb0\x0f\xb4\xcf\xb4\x6d\x6b\x2c\xb8\xd0\x0e\x66\x55\x5f\x8e\x2f\xf6\xc4\x4a\xc7\x24\x8b\x93\x16\x9c\x41\x1a\x3b\x0c\xba\xbf\x36\x26\xf1\x88\x05\xad\x84\x07\x6d\xee\x89\xb5\x74\x63\x67\x77\xc2\x6a\x65\x54\xbd\xef\xbd\x01\xfd\x28\xfe\x30\x62\xa3\xcb\x1f\x46\xe2\x79\x63\x2c\x42\x53\xf3\x1f\x46\xdf\xb6\x3b\xfd\x30\x3a\x83\x09\xf4\xde\x84\x76\x8d\xd8\xe9\x99\x63\x33\x2d\x5b\x13\x88\x20\x79\xb9\x52\x84\xac\x9b\xa4\x39\xec\x51\xe9\xdc\xed\x58\xdb\x9b\x76\x3e\xaa\x60\xe7\x28\x74\x4b\x8c\xf6\x5f\x6b\x25\xc9\x32\x1f\xdd\x46\x91\x9b\xb3\x2f\xd5\x70\x75\x76\xdb\x45\x41\x52\x64\xb8\x39\xc2\x7e\x5c\xcc\xed\x9a\x08\xba\x6b\x3b\x5b\xcc\x9b\x94\x87\x5d\x2a\xe6\x0d\xaa\x12\xdb\x22\x6f\xd8\xc8\x79\x11\x07\xd6\x23\x17\x2c\xac\x20\x83\x93\x0b\x87\xfe\x42\x3c\x0f\x12\xb6\x9d\x94\x13\x59\xed\xba\xc3\xd9\x2f\x55\x9d\x90\x35\xbc\x46\xeb\xd9\xc0\x9c\x91\xac\xeb\x6d\xee\x20\xaa\xb3\x90\x70\x9e\x4a\x72\xb1\x2d\x6c\x3e\xb6\xe7\x4f\x7d\x5d\x2b\xe2\x1d\x89\xf7\x95\x46\xc3\x4e\x09\xf2\xa5\x53\xe9\xc3\xb9\xca\xae\x01\x54\x01\x32\x99\xe3\xce\xe8\x51\x7d\x5f\x69\xe6\xc2\xe9\x1c\xa4\x81\x3c\x3d\xbf\xf6\xbc\x8a\x13\x30\xa6\xd2\x45\x95\x67\x62\x28\xba\x2e\x0d\x79\xd5\x81\x55\x6e\xdc\x4b\xe8\x58\xc3\x88\x54\x53\x00\xdd\x6d\x84\x8c\x68\x6f\xed\xd6\xde\x6c\xf1\x8c\xb3\xac\x81\x49\x4c\xdd\xf6\xa7\x6b\x9b\xbe\x38\xf7\xa3\x05\x30\xae\xa6\x3c\xc4\x0d\x0f\x01\x3f\xa7\x98\xc7\x0b\x02\x74\x45\x97\xa2\x54\x33\x3c\x2e\x03\x0c\x66\xf3\x7c\x28\xcc\xb5\x28\x94\x06\x99\xaa\xcc\xdc\x40\x5e\xb8\xcd\x00\xad\xfc\x2e\x73\x1d\xf2\x89\x74\xb1\xb4\x3e\x87\xce\x56\x9b\x7a\xd4\x17\x13\xfa\x72\x73\x23\x24\xf4\x08\x12\xd2\x79\x64\xb8\xad\xfe\xb9\x92\xc5\x4b\x54\xa5\xc3\x20\xad\x01\x72\x13\x21\x26\xf6\xfb\xfd\xfb\x41\x9b\x63\x52\x57\xc5\x3e\x68\x00\xe9\xca\x13\x33\xfe\x64\x99\xed\x0a\x24\xa2\xdb\xd0\x70\xfc\xaa\xa5\x5d\x0f\x9f\xee\x7b\x27\x62\x5f\x48\x11\x56\xcb\xcb\x6f\xa8\x26\xc5\xbe\x98\xb0\xb1\xc3\x9b\x4a\x3b\xcd\xb8\x55\xa7\x88\xa3\xf7\xaf\x44\x5a\xe4\x4b\xcd\x5c\xdc\x4d\x22\x08\x13\x0b\x79\xae\x84\x55\x36\x5f\xe3\x95\x2c\x6a\x5a\x8b\x6b\xbe\xf9\x08\xa8\xdb\x1d\x13\xc2\x10\x26\xf9\x32\x3e\xbe\x30\x96\xe4\x95\x20\xaf\x12\xb7\x9c\x7b\xde\x53\xa1\xec\xb5\xae\x72\xd1\x17\xa3\x6e\x38\x6e\x00\x1d\x46\x00\x81\x2f\x2b\xed\xd7\xce\xb2\x62\x82\x7e\x1e\x1e\x69\xdc\x18\x71\x25\xdb\xf0\xd0\x1f\x6b\x0a\xa9\x4d\xa8\x35\x6b\x34\xdf\x04\xff\x02\x2b\x34\x20\x43\x52\x2f\x3e\xb8\x61\x29\x14\x18\x9d\x0d\x47\x78\x04\x29\xf2\xe5\xc7\xea\xb5\x2a\xc9\x46\x3e\xaa\x69\x9b\x8a\x6b\x6f\x35\x46\x21\xa8\x0d\x85\x0b\x55\x06\x1e\xc1\xb0\x8a\x01\x0c\xae\x64\x12\x1c\xc2\x10\x36\x68\xc9\xed\x6b\x85\x3d\xb1\x8d\x07\x50\xe3\x70\x1a\xc0\xf6\x87\x1b\x2b\x0d\x83\xe2\x0d\xef\x8f\xf5\x59\x44\xe7\x50\xea\x33\x4a\xf4\xff\x43\x1e\x14\x11\x8d\x58\x67\x8a\x36\x4f\x8a\x9d\x1d\xf1\x8e\x74\x4a\x6c\x6f\x8c\x26\xc3\xc8\x92\xe8\xce\x96\xc3\xc4\xd1\x7d\x6e\x59\xd1\xdd\xe7\x80\x83\x76\x5d\x7e\x50\x32\x7b\x57\x16\xd7\x27\x4b\x59\x3a\x2d\xd2\x81\xcd\x7d\xc9\xb1\x1d\xb2\x46\xb6\xb7\x12\x52\x2a\x82\xc0\x11\x03\x5a\x00\x5b\x4b\xef\xb0\x6a\x0c\xde\xd7\x5d\x6b\x36\x30\x13\xff\x78\xfc\x5f\x1f\xdf\x1c\x7d\xf8\xcf\xe3\x0f\xe2\xe4\xfd\xd1\xdb\x93\x00\xe2\x1b\x59\x9f\x53\x9d\x64\x01\x5f\xeb\xe6\xd9\x09\xb7\x03\xca\xc2\xe0\x49\xf0\xc5\x26\xb3\x49\x08\xfc\x39\xa0\x14\x34\x1d\x31\x15\xb7\x7b\x82\xfe\x9d\xe1\x61\x59\x68\xc4\x0e\xe3\x75\xe1\x77\x0a\xdc\x63\x05\x47\xe2\x4a\xd4\x48\x7c\xb6\xf3\x78\xc2\x56\x8f\x50\x7a\x5c\xd0\xb3\x02\x4c\xde\x14\xf0\x05\x33\x37\xc9\x40\x88\xca\x98\xca\x7c\xca\xcf\x9c\xac\x03\x09\xae\xf7\x63\xdf\x60\xe0\x50\x54\x72\xb8\x88\x5b\x3a\xc8\x7e\xc0\xd8\x2f\xb6\x77\x7c\x80\x15\xec\xa5\x43\xb5\xc8\x5e\x9f\xe3\x2e\x42\x33\x65\xc5\xe3\x22\x29\x34\x61\xa1\xa6\x46\x24\x97\x8a\x8d\x93\xb4\xa9\x6a\x45\x20\x68\xe8\xe8\x90\x0c\xec\x18\xd6\x0b\xf5\x7a\xd0\x8c\x2c\x14\xcc\x2c\x0f\x17\xfc\x09\x42\x9e\x6c\x58\x63\xeb\xe3\x14\x38\x64\xda\x01\x12\xf7\xc6\x16\x9c\x48\x6a\x8c\x71\x55\xe3\xc2\xed\x76\xe9\xd4\x6c\x0b\x36\xe2\xe6\xd4\x34\x48\x47\x59\x66\x47\xc8\x54\x7c\x2c\x1c\x44\x41\x0f\x02\xec\x89\xc1\x78\xe4\xb1\xf0\xc2\xe5\x6b\x2b\xa6\x86\x49\x87\x6b\x49\x83\xb4\x2a\x53\x69\x92\x4f\x00\xe8\xac\x2b\xf6\x05\x7d\x83\xd5\xe3\x27\x79\x20\x8d\x91\xe9\x1c\x79\x32\x1d\xf5\xf8\xc4\x6e\xd5\xa4\xa8\x60\x2f\x66\x55\x9d\x9b\xf9\x82\x4d\xdd\xb2\xcf\x2b\x6d\x34\x13\x87\x25\x6e\x3a\xaf\xf3\xa1\x07\x4d\x94\xec\x96\x29\x3e\x12\x8f\xe1\xde\x6a\x91\xae\x4c\xcb\x1a\x01\xc8\xb4\x20\xa0\xb6\xf3\xeb\x08\x0e\x5c\x9e\x9a\xc2\xda\xb5\x5a\xc8\xbc\x24\x0f\x8e\x55\x79\xae\x45\x42\x01\x4f\x1b\x14\x47\x5a\x53\x2a\x1c\x51\x4f\x30\x66\x3f\xa9\x69\x55\xab\xa4\x2a\x32\x56\x60\xbd\x9c\xf7\x44\xae\x5f\xa1\xff\x59\x70\x34\xbb\xe4\xf5\x57\xd1\xcd\x5a\x1b\x55\x55\x45\xf6\x95\xb5\x57\x15\x19\x9e\x3b\x1c\xaf\x09\xa6\xc5\x97\x05\x2c\x18\x2f\x5b\xc4\x1a\xda\xd9\x4d\x8e\x19\xd9\x20\x2f\xd3\x62\xa5\xf3\x0b\xf5\x1a\x96\xd3\x61\x50\xf8\xf9\xd8\x76\x47\xec\x87\xc9\x36\xd5\x5b\xd3\x45\xed\xdd\xdc\xc4\x0d\x5a\x18\xf7\xef\x5b\x96\x65\x38\x04\x4d\x67\x52\x55\xe7\x90\xd6\xc1\x38\x01\xf7\xec\x98\x61\x74\x80\x90\xdc\xc8\x95\x0f\x10\xec\xc6\x47\x51\x55\x66\xfa\x88\xc3\xa8\x61\x05\xe0\xac\x77\xf4\x91\xee\x52\x0f\x5d\xd9\x17\x6b\x5d\x84\xc4\xb8\x83\x42\x1c\x24\xe5\x25\x82\x2b\x2f\xa3\xd5\x0b\x67\x88\x96\x9d\xc1\xf5\xbe\x17\xe0\x77\x48\x48\xb9\x56\xba\x81\x7e\x21\x3a\x0b\x5e\x6e\xdd\xb6\x52\x19\x82\x21\x22\xc3\xab\xd8\xff\x9f\x49\xec\x7f\x60\xe4\xb1\x1b\xd1\xb8\x63\x4a\x14\xda\x80\xdb\x68\xd2\x14\x55\xfd\x3e\x8a\xfa\x26\x82\xfa\x1f\x5b\x39\x51\xe7\x78\xdd\x04\xdd\xfb\x7e\xa2\x0a\x11\x8b\x89\x09\xa1\xf7\x99\x2a\x5a\x2d\x9d\x36\xfd\x6b\x4e\x5c\x93\x48\x2d\xd4\x3b\x89\x35\x54\x5c\x32\x3b\xb7\xaa\xcb\x94\x42\xb5\xe2\x76\x00\xfd\xd2\x0a\x0f\x5b\x4c\x58\xc4\xc0\x61\x73\x40\xd6\xed\x0c\x0d\xf1\x1c\x11\x59\x84\x30\x58\x53\x55\xe7\x6c\x90\xc0\x02\x84\x26\x20\x50\x5f\x95\x26\xaf\x55\x71\x1d\x9e\xbf\xa8\x1e\x6c\x01\x69\x55\x96\xe8\xfd\x4f\x8d\x4e\x54\x51\x95\x33\x7f\xe1\x44\xa6\xd7\x0b\x65\x51\xa3\x1d\x6b\xb9\x54\x20\x6c\x5b\x7b\xd5\x3c\x23\x27\xc1\x10\x32\xd9\x27\x1a\x48\xa7\x2b\x0e\x04\x8f\x1e\xf9\x78\x24\x5c\x43\x66\xe0\xed\xeb\x1b\x7b\x19\x1e\x25\x49\x7a\x21\x1b\xa9\xd2\xdb\xc7\x60\xe4\x3c\x99\xce\xdd\xd8\x50\x44\xc7\x6e\x08\x38\x90\x7f\x4d\xad\x4c\x3a\x47\xb6\xf1\xee\x42\xd5\x74\xa7\x49\x02\x3f\x5f\x5f\x07\xb1\xcd\xb0\xf2\xf4\x0e\xbd\x6f\x55\x90\x39\xb9\x18\x47\x7a\x29\x5b\xb3\xae\x16\x7c\xdf\x71\xff\x7e\x7c\x52\x5b\x2b\x11\x4a\x1a\x1e\xf8\x6b\xb9\x09\xb6\xa9\xee\x86\x6c\xf3\x1b\x70\x51\x01\xe4\xb0\xbe\x7f\x5f\xdc\xe3\x56\xd6\x7b\xb8\x15\x2c\xfb\x97\xa4\xdc\xf1\x38\xa7\x73\xe6\xb5\x3e\xdd\x54\x98\xea\xf8\xca\x18\xb5\x0b\x41\xa5\x00\x37\x52\x83\xd0\x95\xaa\xbd\xb8\xf1\x34\x2f\x1e\xa0\xe2\x04\x0e\x5b\x0f\x62\x1a\x63\x9c\xa6\x3c\xe6\xad\x92\xc6\x2f\x74\x4e\x5f\x17\x37\xe2\x53\x7b\xdb\xfe\xf1\x1a\x0f\xe3\xcd\x3d\x84\xaf\x8f\xdf\xaa\x2b\xd3\x13\x0b\x55\xc3\x72\x9b\x57\x9a\xb4\x58\x18\x1c\x83\x47\x4a\x2e\xd4\x6b\xab\x0a\xa5\x8e\xfa\x53\x38\xc6\x95\xeb\xd9\x80\x15\x63\x8c\x17\x10\x94\xea\xda\x62\xdb\x22\x71\x70\x0e\x83\x1d\x78\x68\x0d\xa8\xac\x7a\x02\xd9\x0e\xaa\xd8\xaf\xc4\x6a\x29\x80\x25\x05\x01\x6d\xab\xa9\xb0\x5a\xee\x76\x21\x1d\x73\xdb\x76\xbb\x68\xbf\xc3\x52\xf6\x38\x13\x1c\x68\x3c\x63\xf4\xd5\x78\x6a\xd0\x5e\x6c\xbc\x7e\xe2\x22\x45\x47\xb0\xd3\x74\x5d\x3d\x24\x4a\xac\xd8\xa5\x90\x0c\xd4\x80\xeb\xfd\xad\x2b\xe9\x94\x09\x76\x8c\xe2\x0a\x08\xa3\x95\x6b\xbb\x9c\x6d\x3b\x05\x16\xe8\x6d\x74\x99\x81\xf7\x3e\xb2\x75\x80\x71\x2f\xc9\x4b\xa2\x9f\xa4\xaa\xc5\x82\xad\x85\x16\x14\x23\x89\x88\x32\x2f\x45\x2a\x29\x68\x89\xc3\xf1\xce\xcb\x05\x00\x77\xd7\x95\x02\xf4\x0e\x6b\x40\x41\xbc\x49\x68\x4c\xc6\x0f\x23\xe8\xd7\x3d\x7f\x41\xe5\x13\xb7\xc7\xcd\xde\x06\x95\xc2\xbd\xbb\x75\x16\xb1\xd5\xb5\x79\x64\x35\x18\x03\xd9\x3c\x95\x61\x3f\xec\x86\xea\x5a\x65\xb4\x82\xec\xe6\xa4\x52\x3b\x28\x05\xd8\xd5\x1e\x9f\x0d\x01\xbe\x27\x0c\x37\x9b\x61\xa4\x86\x66\xb3\xdb\x6b\xed\xfe\x5b\xad\xc6\x94\xb3\xb3\x23\xde\x38\xfd\x27\x9c\xbc\xf3\x0c\x8e\xde\x14\x49\x02\x9d\x8a\xfe\x54\x75\xd5\xb7\x86\x3c\x01\x3f\x76\x0a\x47\xdb\x24\x86\x4f\x42\x23\x35\x52\xd1\x70\x81\x90\x3e\xf1\x82\x03\xfe\xde\xe3\x45\x0a\xf5\x99\xb3\x35\xab\x13\x3d\x3b\x86\x5e\xaa\xcb\x37\x7c\xd0\x1c\x8b\x4f\x58\xf9\xcc\xee\x0c\xc1\x58\x78\xf2\x2f\x0a\x31\x93\x4b\xda\x79\x2f\xe7\x55\xa1\xd0\x7c\xbb\x6f\xbb\x40\x50\x67\x18\xeb\xa8\x85\xef\xf5\xc5\x6e\x0f\x72\xb9\x4d\x27\xc1\x42\x85\x17\x62\x08\x1d\xa1\x0e\xb8\x88\x34\xc1\x4a\xd9\xb5\x2b\x65\xb7\x8d\x65\xfd\xb0\xeb\x09\xef\x8b\x1f\xca\x4f\xf9\x0f\xbb\x67\x21\x8b\x0a\xc8\xec\x0b\x36\x6c\xfb\x0f\xf3\x1c\xfc\xbc\x43\xd6\x0c\x00\x5b\xb1\xd3\x9b\x42\x77\x51\x47\xc1\xf4\x10\x60\xff\xd0\x62\xff\x50\x3c\x87\x21\x20\xa4\x1f\xfa\x9e\xfa\xa9\xa0\x46\x3d\x2e\x2e\xdc\x57\xa3\x04\xce\x65\xe3\x8a\xcc\x15\x71\x9e\x7a\xc8\x99\x82\xfd\x14\x1f\xa8\x40\xa3\x47\x10\xca\x48\x27\x34\x97\xa8\x64\x42\x62\xf9\x7d\xae\x4a\x24\x18\x0c\x80\xc0\x31\xa1\xa6\xd6\xec\x2d\x50\xbe\xc6\x84\x65\xb5\x65\xdf\xac\x07\xfa\x56\x7d\x19\xae\x56\xe6\x68\x18\x45\x26\x3a\x34\x33\xbb\xb7\xe9\x7c\xe4\x88\x3b\xe2\xe3\xe9\xf9\xd1\x26\x7c\x38\xc0\x4c\xde\xef\xf7\xc4\xa8\x1b\x31\xfe\x7b\x21\xc6\x6d\x22\x5f\xa0\xb3\xd3\xa1\x5e\xc7\x54\xe2\x41\x5a\xe4\xcb\x07\xa8\x7e\xae\x59\x09\x4b\x86\xbc\x6c\xe2\xb1\xa0\x90\x7a\x72\x5d\x24\x25\x65\x9b\xd5\xdc\x62\xac\xe0\x8d\x36\x28\x0b\x47\xa9\xd6\x64\x2f\xb4\x44\x61\x4d\x3a\x8b\x7e\x77\x19\xf9\x38\xf3\x86\x40\x0a\xda\x74\x2a\x5e\xd3\x83\x6d\x14\x1a\xa0\x50\x8b\x2e\xed\x53\x7e\x16\x1e\x91\x6d\xc8\xf7\xfa\x7c\xe0\x46\x0a\x4f\xa4\x0b\xbf\x2a\xad\xdd\x04\x27\xd1\x81\xbb\xcb\x11\xb3\xc2\x45\x9f\x04\x95\x92\x45\xcb\x3a\xa6\x8a\xcc\xaa\x69\xb6\xad\x24\x65\x1b\xdc\x24\xdc\xc3\x51\x05\x81\x7d\x81\xc1\xdd\x77\xd3\xb1\x2f\x4c\x75\xbb\xe9\x82\x81\x61\x6e\x22\xfb\xc5\xb9\xd3\x81\xd3\x25\x39\x7a\x44\x9e\x0f\xa6\x79\x99\x25\xc3\x86\xa4\xf0\x99\xc0\x7e\x16\xcf\x09\x97\x00\xe8\xe7\x78\xe4\x81\xf7\x62\x91\x4f\x9f\x43\xf1\x00\x04\xf0\xe5\xc0\x54\x3d\xb1\x18\x90\x3f\x27\x9b\xfd\x51\x06\x75\x68\x81\xf2\xf8\x0b\xba\x9a\x71\xe6\x06\xb7\x01\xf4\x52\x5d\xbe\xb7\x63\xf1\xb9\x27\x46\x67\x3d\x91\xf1\x3e\x1e\x03\xc2\x36\x7a\x22\x43\x61\x2c\x6c\xdc\x54\xa1\x1d\x5e\xc6\x87\x7e\x44\xe5\xde\xe2\xbc\xa1\x2e\x80\x53\x09\x16\x09\x27\xda\xe2\x40\xb3\xca\x33\x62\x5b\x86\x39\xa1\xd6\x6f\xbb\x91\xa8\x93\xa1\xee\x64\xbd\x1d\x52\xb9\x60\x43\x1e\xb5\x8d\xcd\x2c\xb0\x17\xd0\x08\xf4\x27\x68\x82\x66\x85\x38\x0a\x87\x1a\xc5\xa4\x9e\x83\x63\x61\x7f\xa6\x90\x69\x0c\xdc\x6d\x8d\x0f\xdb\x2c\x69\x10\x84\xbb\x30\xc7\xc3\xb9\xc0\x37\x89\x34\x1f\xd5\xed\x1d\x08\x5e\x0d\x34\x55\xdf\x99\x32\x32\x9d\xfb\xad\x4b\x07\x0b\xdf\x32\xde\x36\x8d\x77\xc4\x03\x83\x25\xb1\x16\x1f\xf3\x6b\x5a\x7e\x1d\xaf\xf9\x01\x21\xe4\x15\xe2\x08\xb1\x45\x05\x8f\x1c\x2d\x50\xf0\x91\x22\xbd\xd9\x91\x9e\x08\x76\x9d\xff\x1d\x84\x9b\x1a\xfc\x4d\x08\x87\xdb\xc0\xaf\x18\xd5\x89\x9d\xae\xd8\x11\x76\xb1\x5c\x19\x32\x87\xce\x53\xf2\xeb\x2a\xe4\x72\x89\x7a\x75\x7b\xd5\xe6\xb4\x1b\x29\xc5\x65\x95\x64\xfa\x5d\xc8\x7a\xa6\x6a\x51\x45\x13\xab\xae\x4c\x2d\x61\x81\x24\x6b\x97\x48\x1b\xb4\x6e\xe8\x5c\x3e\x0c\xad\x00\x10\x06\x12\xff\xd7\x81\x58\xb5\xa4\x05\xd2\x1a\x00\x21\x2f\xb3\x3c\x95\x61\x37\xa7\x78\x2c\x6e\xed\xad\xd7\x02\xe5\xda\xf6\x31\x41\xe3\xcc\xf9\x4a\x0b\x6c\x38\x63\xb7\x6f\xb4\xdb\xe8\x0e\xc4\x2f\xb2\x28\x34\xbe\x88\xc6\x31\x1d\x53\xb4\x20\x41\x8b\xfd\x4c\xbb\x1b\x57\x06\x4b\x8a\x32\x75\x25\x53\x0c\x4e\xcb\x06\x24\x6b\x51\x16\x08\x86\xbf\x08\x65\xf1\xa9\x11\x88\xba\x50\xe5\xcf\x64\xdf\x28\x23\xf3\x27\x67\x25\x62\x13\xac\x58\xce\xe5\xef\x8d\xa3\x5b\x6e\x9b\x6c\x77\x15\xf9\xbe\xa2\x08\xd7\xc8\xf2\xbb\x3d\x31\xa1\x84\x09\x27\x58\x15\x47\x5d\x2d\x5e\x2e\x96\xcc\x47\xa1\x12\xf3\xba\x89\xfd\x8a\xd1\xd1\x3c\x51\xc8\xae\xe8\x07\x3f\x27\x4e\x5f\x40\x80\x02\x8c\xfa\x16\xb6\x45\xc9\x54\x8d\x96\x80\xdd\x4d\xe8\x8b\x6f\x85\xc8\xc6\x37\x43\xbf\x5d\x3b\x08\x24\x8c\x7b\x56\xd9\x26\x6c\x48\xed\x41\x9e\x89\xbe\x90\x83\x3c\x0b\xad\x03\x41\x62\x72\xb6\xf8\xa4\xc4\x53\x65\xa6\x81\xe3\x91\x62\x97\x42\x13\xc7\x4b\x66\x20\x5e\x91\x4e\xb1\x72\xc6\x43\xe4\x32\x81\x2a\x4a\xba\x66\x93\xc4\x27\xa3\x79\x0f\x6e\xb8\x8f\xcc\x49\x9e\x29\xcb\x53\xf0\x19\x84\x80\x47\xe2\xfa\x5e\xbb\x13\x87\x43\x57\x83\x0f\xf4\xe8\xac\xec\xee\x8f\x63\x31\x4a\xc3\xb0\x26\x64\x90\xd5\xed\xc5\xdc\xa8\x55\x46\xc0\x0a\x7a\xd9\x10\x89\x9d\x8c\xeb\x06\x01\x04\x26\x44\x1a\x95\xeb\x03\x8e\xc8\xa0\x97\x56\xb7\xc6\x92\xb3\xdb\xd9\xf8\x50\x4e\xf1\x40\xdb\xa9\x1f\x0b\x00\x7b\xb5\x87\x7a\x34\xd7\x08\x8f\x65\xa4\xd9\x71\x05\xd6\x95\xde\x34\x14\xb7\x9b\x47\x1c\x1f\xa0\xb0\x06\xd2\xd6\xa0\x65\xe3\xac\xe0\xdb\x16\x62\x33\xb8\xe3\x32\xfb\x76\x60\x74\x18\x60\x3e\xf6\x51\x69\x4f\x75\x06\x3d\x1c\xd0\x42\x49\xaf\x51\x1a\x11\x92\xd3\x5a\xe3\x01\x89\x78\x9b\x16\x49\x4a\x91\x10\x90\xd1\xe0\x64\x54\x35\x05\xb8\x9e\xac\x0c\x5a\x7d\x4c\x2a\x38\x48\x50\xf4\x3c\x75\xc9\xf4\x88\x71\xd6\xfd\x8e\x60\xe3\xd9\xa1\xcf\xb1\xca\x22\x7a\x2d\xa7\x45\x9e\x02\x77\x75\xb3\xf5\xc1\xeb\xab\xc9\x68\xd9\x1f\x13\x62\x73\x86\xc0\x30\x33\xb6\x2e\xc2\x5a\xdd\xef\xa7\xf4\x0d\x24\xfe\x75\x9a\x76\x0b\xa1\x41\xd7\xf7\x5a\x08\xbb\x45\x06\x0d\xb5\x8a\xbe\x46\x28\x30\xaf\xf3\x4b\x52\xf7\xd1\xc0\xb4\xf0\xca\x80\xc6\xfb\xeb\xfb\xaa\x77\x83\xa8\x9a\x10\x49\x0e\x6c\xf2\xc4\x75\x70\xd1\x16\x1b\x05\x74\x01\x88\x2f\xc6\xa4\xf7\x20\xf8\xcf\xc7\x24\xa0\xda\xdc\xe7\x51\xee\x8b\x71\xab\x60\x1e\x82\xb3\x15\x02\x46\xb1\x2e\xe8\x6e\x10\x11\xe2\xae\xd1\x50\x21\x7a\xfb\xed\x59\x80\xcc\xcd\x8d\x63\x2b\xcd\x1e\xfd\x7b\x28\xf8\xf3\xee\xf3\x26\x0a\x41\x56\xc4\x94\xd6\x1f\x5d\xb9\x75\xe6\xb6\x17\xb9\x5e\xc9\x82\xef\x85\xb4\xdd\x5c\xa4\xe6\x90\x0f\x15\x4b\x0e\x69\xad\x54\x39\x10\xbf\x54\x45\x86\x41\xa0\xa7\x64\xed\xa0\xae\xe4\x62\x59\xa8\x1e\x7a\xd3\xa5\x72\xa5\x95\x58\xac\x0a\x93\x2f\x0b\x25\x8a\x6a\x86\xa6\xeb\x64\x46\x63\xaa\xe0\x3e\xcc\x0a\x1d\x00\x22\x40\x80\xdd\xf2\x81\x6a\x23\x7e\x61\x63\x54\x78\x4c\xad\x7f\x1f\x00\x08\x7c\xbd\x72\xed\xfc\x8b\x92\x95\x26\xa3\x4a\x2c\x9a\xeb\xe0\x66\xd0\x68\x55\x4c\x43\x5b\x0c\x82\x1c\xc8\xb2\x4e\x93\xa0\xea\x19\x3a\xd5\xb2\x35\x38\xfd\x06\x62\xdf\xc8\xb2\xad\xbc\xcc\x5c\x85\x6a\xd0\x42\xec\x8f\x98\x5b\x93\xe6\x21\xd8\x12\xd0\x44\x38\xb4\x40\xf3\x18\x05\xec\xfb\x3b\x91\x72\x35\xef\x40\xe9\xab\x18\x85\xe2\x6c\x70\xdf\xd8\x98\x5b\x8a\x2c\xce\x6b\xaf\x31\x57\xe4\xb8\x25\x6b\xa3\x32\x31\x21\x79\xd3\x3e\x4d\xd1\x83\xad\x20\x32\x98\xa1\x5d\x86\xcc\x01\x85\x5e\xf1\x85\xa5\x6e\x9d\xab\x97\xdc\x60\xfb\xf8\x10\x0f\xd7\xdf\x33\x4c\xcc\x89\xbf\x36\x4c\x58\xe8\x20\xa1\xae\xdf\xdc\x08\xfe\x16\xea\x53\xac\xfb\x4a\x63\x40\x75\xc3\x17\x2e\x74\xc8\x61\x22\xff\x5e\x8a\xb7\x27\x0c\x47\xf8\xad\x43\xf5\xb6\x0a\xb6\xb5\x6f\xd8\xf9\xba\x3d\xa8\x2c\xc6\x6b\x2b\x23\x70\xfa\x01\x01\xea\x22\x0f\xcf\x94\x58\xb5\xd9\xe7\xb7\x55\x02\xa5\xbe\xb3\xe7\xa5\xba\x32\x51\xf7\xf1\xba\x7a\x8b\x5d\xaf\x7d\xff\x5b\x7b\x7b\x5c\x66\x2d\x1d\xb6\x78\xbf\x15\x2f\x50\x21\x58\x48\x72\x40\x48\xba\xad\x5d\xf8\xda\xf8\xb8\x55\x88\x9b\x34\xa4\xbe\xd2\xbf\x62\x24\x1f\x5f\xae\x1d\xf2\xff\xf6\xb2\x75\x2e\x5a\xdb\x62\x14\x78\x14\xac\x8c\x6a\x1e\x21\x72\xcd\xc1\x87\x06\xe2\x35\xf9\xb0\xa3\x4b\xbb\xb4\xc9\xee\xe4\x48\x66\xea\x75\xe8\xbd\xb9\x46\x9b\x7c\x0e\xc1\x0b\x10\x59\x52\xe0\x60\x12\x2a\x2b\xf2\x43\xe0\xd9\xbb\xe6\x97\xa0\xd9\xda\x02\xa5\x43\x62\x0d\x6e\x20\x7a\xe8\xc5\xce\xce\xe7\x8d\xe3\xc9\x86\x91\xfe\x57\x4e\x25\xff\x9b\xc7\x91\x6f\x14\xdb\xf8\xe4\xd2\xb8\x65\x5c\xdb\xb0\x9b\x47\x1c\x1a\x1a\x7e\xf2\xef\x2b\x30\x87\x74\x07\xb0\x26\x71\x58\x2d\x62\x38\xa0\x18\x77\xc0\x8f\x2a\x9c\x73\xbe\x2a\x46\xb4\xce\x4c\x0b\x20\x6b\x57\x7a\xc7\xf5\x38\xdb\x85\xc5\x16\x63\x31\xc5\x87\x8e\x5a\x1b\x1a\xb4\x9e\xb7\xbd\xf5\x6b\x59\x9b\x15\x9f\x4d\xc3\xeb\xf6\x30\x0e\x7d\x6c\xf0\xd5\x14\xd4\x82\x3e\x14\xd6\x77\x35\x7a\x65\x75\x7d\xc0\xbe\x81\xc4\xbe\xe5\x1e\x01\x6b\xb7\xdc\x1f\x7c\xed\x2c\x7c\xaf\x8d\x80\x98\x3a\xd6\xef\x8d\xfc\xa9\x18\x0f\xcc\xa1\x01\x1b\x25\xdc\x0b\xcc\xdb\xba\xcd\x0a\xad\xd4\xb6\x66\x44\x17\x8e\x69\x04\xe2\xab\x44\xd9\x46\x8e\x4d\x77\x4a\x76\x93\xf5\x01\x4b\x5a\xf7\x0d\x2a\x75\x64\xdc\x26\xf7\xce\xc6\x95\xe7\x1f\xeb\xdb\x20\x94\xb0\x17\xc5\x73\x7e\xef\x84\x1d\x12\x39\x9b\x3d\x4f\x37\x28\x59\xff\x55\x6f\xc1\xe8\x56\xca\x12\x1e\xa1\x1b\x39\x09\xb2\x7b\xc8\x5c\x6c\x47\xae\x85\xeb\x2f\x39\x2d\x1b\x9e\xb2\x07\x62\x79\xe0\xba\xb2\xec\xad\xe5\xaf\x7b\xd2\xc6\x66\x1a\xcb\x6f\xf3\xff\x44\x87\xdd\x65\xec\xf9\x19\x5e\xc8\xac\xd0\x0b\x00\x1b\x5e\xf7\xbc\x0d\x3b\x97\xae\xea\xb0\x6f\x6b\x97\x04\xf3\xc6\xfe\xc7\xd6\x6e\x6c\xe2\xcd\x9a\xca\xc0\x29\x9c\x9f\xf4\x0a\x5f\xf3\x22\x75\xaa\x5d\x45\x7c\x59\x99\x68\x45\x7a\xb4\x8f\xe8\xb0\x4e\x71\x5e\x10\x0d\x7c\xe8\x88\xaf\x37\x64\x99\xe1\x13\x7e\xa8\x0e\x71\xfb\xa1\x16\x15\x80\xcf\x4d\x63\x53\xa3\x70\x22\x6d\xde\xd5\xdc\xc3\x71\xac\x32\x1d\x7a\x31\x45\x95\x62\x9d\x09\xf5\x9c\x20\xec\xfd\xae\xbf\xf5\x24\x93\xae\xea\x6e\x48\x8d\x56\xb3\x10\xca\x20\xc3\x90\x23\x53\x13\xfe\x14\xea\x05\x65\x40\x6e\x3b\xca\x42\x8f\x41\x7b\x66\x26\x17\x2a\x7c\xc6\xf5\x3b\xb0\x04\x19\xa9\x15\x47\x24\xc7\x8d\x58\x02\x2e\x7d\xa2\x9a\xd8\xf8\x82\xeb\x5a\xfc\x9a\x5d\x42\x3b\xa1\xb5\x2e\x6d\x06\x13\x76\xcb\x2b\xb8\xd7\xbc\xbd\x2b\xa0\x25\xe3\x4c\x32\x37\x38\xfc\x41\x37\xde\x50\x6c\x99\x24\x5d\xc4\x71\x54\xd3\xc5\x80\x43\xb2\xa2\x7f\x1f\xa7\x60\xfc\x90\x30\x72\x4d\x24\xc0\x7a\xef\xbd\xd6\x60\x36\x01\x29\xba\xcc\x6e\x7b\x80\x1b\x74\x7d\x0a\x6f\xd7\x37\x86\xca\xf0\x14\x1a\x52\xb9\x67\x67\xaa\x04\xa1\x3c\xc6\xc5\xf3\x8c\x16\x24\x31\xf6\x50\x94\xe7\x69\x47\xd8\x0b\x6c\x1a\xef\x9f\x5e\xfd\xfc\x4a\xfc\x7a\xfc\xfa\xfd\xf1\x87\xd0\x23\x0b\x30\x96\x46\xfd\x94\x67\xf9\x09\x05\x80\xd4\x49\x55\x67\xa1\x67\x96\x7b\x74\x88\xec\x41\x21\x33\x8c\x31\x1c\xc4\xb5\xe8\x14\xa6\xee\x44\x5e\x8f\x76\xc5\x50\x68\x9d\xf6\x6d\x00\x21\x6e\xda\x00\x96\xf4\x50\x25\x96\x09\x59\x3f\xa4\x5b\x7b\x70\xb2\xef\xc0\x14\xbc\xc2\xc5\x64\x56\x92\x51\x4c\xe4\x30\xdf\x87\x2b\xe6\xb1\x9b\x26\xce\x67\xd4\x41\x65\x1d\x56\xe0\x3a\xca\xd5\x51\xaf\xd4\x23\x60\x85\xba\x50\x05\xda\x6a\x8a\x43\xd1\xa9\x4d\x81\x6f\x98\xd2\x18\xe4\x56\x5e\xb4\x23\xc0\x54\x12\x5b\x0f\x7a\x43\xc6\xb5\x61\xec\xfa\x57\xac\x26\x79\x96\xbf\x43\xc6\xc9\x17\x9f\x51\xdc\x97\x3c\xcb\xdf\xcb\xda\x1c\x19\x3b\x6f\x4d\x97\x6f\x37\x0f\x5b\x62\x1d\xd4\xbf\x30\x25\xc4\x11\xd6\x66\x04\xc3\x39\xd0\x84\xa4\xe8\x53\x80\x8c\x01\xe6\x23\x8a\xa7\x9e\x87\x0f\x23\x53\x09\xdc\xe4\x1a\x11\x28\x2c\xb0\x7b\x63\x0b\x07\x04\x34\xe7\x2e\xdd\x99\xa0\x09\x6f\xa7\x1b\xdc\x35\xe4\xcd\xbd\x31\xec\x6c\x1e\xec\x8c\x8d\x26\xbe\xb7\xf9\x7b\xff\x66\xf3\xcd\x3b\x10\x67\xbc\x74\xc8\xbf\xf7\x7d\x55\xbb\x78\xf3\x2c\xaf\x69\x79\xca\x82\x86\x1e\x0d\x84\xac\x6b\x18\xb9\x3f\x2a\x31\x37\x66\xb9\xbf\xb3\xc3\xcf\xf3\x0c\xaa\x7a\xb6\x43\x71\xfb\xf4\x8e\xa9\x9f\xc1\xff\xfe\xe8\xe1\x60\x6e\x16\xc5\xba\x7b\x19\x9d\x4b\x51\xbb\x92\x6b\x5a\x60\x78\x8b\xd1\x15\xf9\x62\xc9\x11\x87\x07\xe4\xcd\x5a\xaa\x3e\xbe\xe8\x93\x62\x50\xec\x95\xf5\x56\xf3\x22\x85\xb9\x5e\x2a\xbd\x0f\x65\x5f\x8b\xe4\x75\x77\x5f\x08\x01\x92\x6f\xdf\x54\xfd\x0f\x36\x58\xc7\x07\x91\x7c\xc0\x1c\x4c\x81\x2c\x28\x02\x39\xb5\x48\x8e\xb0\x52\x94\x23\x8e\x6a\x39\xc9\x53\x28\x30\x12\xc9\xf1\x5b\x28\x70\xbc\xaa\xab\xa5\x92\x25\x3f\xc4\x08\x79\xdb\x22\x39\x3e\x69\xc9\x13\x27\x6a\x29\x6b\x69\x48\x61\xfb\xa3\x48\x8e\x3f\xb6\x95\xfa\xa8\xea\x45\x5e\xda\x62\xa5\x48\x8e\xb0\x21\x6a\x3b\x68\xa6\x27\x92\x97\xd8\xcc\xcb\x6a\xb1\xa8\xda\x1b\x59\x88\xe4\xed\xc9\x9b\xee\xbe\x78\x5b\x95\xfd\x93\xa5\x4c\x61\xce\xe0\x24\x06\x99\x13\x91\xfc\x84\xa0\x7f\xb2\x61\xf2\xde\xaa\x95\xa9\x65\x81\x8a\x42\x91\xfc\x84\x63\xf3\x5e\xd6\x72\x56\xcb\xe5\x3c\x86\x6c\x44\x82\x8d\x8b\x13\x35\x43\xc7\x86\x28\xf7\x52\x24\xbf\x63\xf6\xef\xf3\xdc\x28\x0c\x5d\x88\x8f\x55\x8a\xe4\x1d\xb6\x48\x44\xc9\xcd\xe9\x48\xb9\x89\x74\x98\x4f\x83\x87\x9d\x50\x4d\x81\x14\x47\x8f\x32\x91\xea\x02\x55\xd8\x50\x31\x29\x78\x5e\x31\x3a\x79\x17\xb5\x1c\x91\x47\x06\x6f\x2a\x82\xec\x63\x88\xc1\x21\xe3\x44\xd7\x4c\x7e\x4c\xb2\x6b\x37\x7e\x6c\x28\x72\x5a\xb9\x16\x55\x0a\x1c\x87\xce\x1e\xc5\xf5\xc0\xb3\x44\xbb\x0c\xc6\x22\x09\x9f\x23\xe5\x48\x99\x31\x31\x12\x81\x56\x99\xe2\xa7\x9a\x86\xb0\x2b\x0c\xaf\xa6\x53\x2b\x3c\x56\x97\x1f\xb1\x1c\x2c\x6e\xfb\xcf\x68\x73\xa9\x27\xd1\x3f\xad\xb5\xb9\x7c\xfb\xf6\xc7\x1f\x7f\x7c\x8b\xff\x7a\x6f\x7b\x6f\x47\xee\x1f\xa5\xbd\x7d\xbd\xf1\xdf\xb7\xe4\x73\x43\x93\x8d\xff\x7a\xd0\x3c\xb6\x4f\xf0\x7e\xfc\x71\x34\xc2\xaf\xa3\xd7\x77\x81\xbf\xa3\x59\xca\xef\x7c\xdb\xc8\x5d\x3d\x19\xf2\xe8\x3d\x99\x3e\x73\xef\x30\xc3\xfa\x70\x23\x58\xe2\xbf\xb7\x6f\xeb\x1f\x7f\xac\x7b\xf5\xdb\xb7\x0b\xff\xaf\xfe\xce\x7f\x8b\xb6\x7f\xa5\xfb\xf7\x63\x59\x42\xa1\xef\x85\xfa\x2f\xfd\xb3\x8d\xbf\xb5\x3d\x59\x2c\xde\xd2\x17\x4f\x01\x30\x86\xfe\x4e\x76\x2e\x6b\x18\x93\x24\x25\x15\x95\xdf\x7b\xaa\x4c\xe1\xbd\xd5\xd5\x74\x2f\x54\x8e\x32\x11\xda\xf7\x36\xa8\x5a\x70\x98\x85\xba\xc3\xab\xc7\xcf\x86\x50\x39\x65\xb5\x85\x07\xf6\x78\xfa\x28\x80\xd6\xf9\xd0\x59\xaf\x0b\x73\xd7\x5a\xf7\xc9\xf4\x59\xf4\x1e\xa5\x9b\xcf\x10\x19\xd1\xa7\xe9\x6f\x41\xea\x89\x52\xed\x80\x9f\xca\x34\x44\xaa\x6e\x41\x6a\x77\xb8\x09\xab\xdd\xe1\x30\x0c\x41\xd2\xb9\x5c\xab\x8d\x65\xc7\x5c\x36\x6a\x69\xd2\x89\xf5\x00\x36\xfd\x75\xc7\x87\xd4\xb5\xbc\xe4\xc3\xb1\x7d\x9d\x6d\xe3\x93\x88\xc3\x3d\xfa\xf1\x54\xa6\x67\x3b\x36\x04\x92\x66\x2e\x8a\xb5\x81\x33\x9c\xed\xf4\x44\xae\x4f\x4c\x5d\x21\x63\xda\xf9\xf4\xfa\x43\x0d\x69\x64\xb3\x75\xa4\x71\x27\xc3\xf4\xc9\xa8\x0c\x33\xde\xae\x16\x98\x0e\xa9\x5b\x21\x11\xa1\x68\x8e\x9e\xe9\xc0\x35\x9b\x86\xbe\x36\xc6\x0e\x89\xa2\xc4\x59\x7d\xf2\xe6\x90\x09\xdc\xff\xe6\x6b\xe8\xf8\x80\x8c\x93\x35\x42\xa9\x0f\x43\x4a\x7d\xa4\x17\x2c\x5d\x01\x14\xc5\x40\x5a\x05\x01\xf8\x35\x8a\xbf\x1f\x3a\x5b\x5e\x01\xe7\x5e\x96\x21\x0d\xec\xcd\x4d\x5b\xd5\xfb\xf7\xc5\x3d\x9a\x03\x7a\x42\x47\x9b\xba\xbb\xfe\x26\x61\xe3\x10\xe5\x41\xf7\x98\x4d\x71\x20\x8f\x76\x81\xb6\x50\x65\x60\xc6\x87\xef\xa1\x23\x6d\xe3\x35\x95\x5b\xa6\xf6\xa9\x1b\x7e\xec\x27\xef\x76\xd9\x15\x82\x62\x5c\x8f\x06\xe2\xf8\x4a\x2e\xd0\xea\x48\xa6\x73\xd4\xce\x6b\xde\xd6\xd1\x9c\x19\xb7\x7b\xbb\x95\xd1\x94\xd4\xab\x12\x35\x20\x16\x88\x75\xc1\x9c\x2b\xc4\xc0\x5e\xf4\xbc\x3d\x79\x63\x63\x76\x86\xc9\xcb\x5a\x5d\xe4\xd5\x4a\x07\xb5\x89\x35\x0f\xc4\x2b\x5f\x31\xd7\x36\x5a\x5a\x74\x79\x14\x20\x90\x1b\x71\x99\x17\x85\x05\x33\xe3\xeb\x27\xdb\x94\xae\xea\x41\xab\x42\xab\x87\x18\x80\xb4\x6f\x67\xdf\x79\x22\xf1\x80\x36\x95\x5a\xfc\xc6\x29\x8e\x6e\x53\xa1\xe5\xbc\x8b\x17\x28\x38\xfb\x32\x62\x4c\xed\x34\x04\x68\x6e\x1b\xab\x59\xf1\xd9\x4d\xc6\xee\xc0\x06\xfc\x98\xc8\xf4\x9c\x62\x14\x22\xb9\xe3\xd4\xb8\xc8\x59\xa8\xd5\x72\x42\x1e\x5d\xb5\x59\x18\xab\xd2\xe4\x05\x0e\x04\x39\xd3\x68\x5a\xb5\xd8\x5e\xf2\xa1\x27\x5e\xf7\xc4\xd1\x6b\x94\x68\x74\x55\x77\x31\xb6\x2f\xaa\x6b\x60\xec\x65\x69\xa1\x1c\xbd\x76\x39\xbd\x4d\xd3\xdb\x40\x00\xa6\x9a\xa5\x59\x06\x62\xa3\xb3\xda\xde\x3d\x1c\x08\x52\x30\x08\x59\x14\xe2\xe8\x35\x1a\x0e\x7c\x58\x9b\xa4\x5d\xd6\xba\xd2\x89\x2c\x9c\xa3\xdd\x70\x8e\x76\xd7\xe7\x08\xe7\xd7\xce\xc0\x6e\x73\x96\x20\x77\x2c\x3a\xa3\x0e\x9f\xe3\xf0\x57\x1d\xcd\xda\xee\x19\x6e\xf4\x9d\x78\xd2\x30\x6a\x3b\xb3\x3f\x5a\xcd\x04\x0e\x17\x34\xa1\x49\x09\x07\xcd\xb6\xda\xa0\xc3\x06\xb6\x3e\xf3\x8f\xf0\xad\x51\x0a\x05\xee\x06\x56\x5b\x01\x38\x0a\xa3\xda\x18\x77\x1d\xaf\x42\xb2\xc6\x68\x16\x0a\xa0\xa7\x24\xdb\xaf\xc1\xb6\x60\xa0\x09\x86\xec\xae\x6f\xe5\x82\xa7\x3e\x68\x83\x8e\x55\xd7\x4b\xb5\x36\x81\x0f\x05\x7a\x7a\x02\xa5\x07\x33\x32\x3c\xb3\x8e\x40\xa8\xaa\x13\x23\xeb\x0c\xb4\x3e\x8d\xbb\xc1\x34\x3e\x5c\x9b\xc6\x5d\x1c\xda\x6d\x9c\x46\xdb\x86\x9b\x57\x57\x6d\x7b\x74\xc6\xc9\xe1\x14\x3c\xc4\x29\x18\xb5\x4c\x70\x00\xba\xd7\x00\x1d\xc1\x0c\x2e\x32\xf8\x5f\x12\x23\x71\x73\x13\x62\x55\x76\xba\x6b\xed\x73\xb6\xb3\xa1\x0f\xc7\xe9\x87\xdd\x26\x65\x3c\xa6\x57\x68\xff\xb9\x52\xbc\xf4\xdd\xd4\x1a\x77\xac\xd3\x42\x66\x9f\x65\xca\x6f\x86\xd8\x02\xf1\x3a\xd4\x11\x81\x14\xc5\x1a\x1d\xf9\x85\xfa\x64\x40\xc7\xa9\xcb\x5c\xab\x9e\xa7\x14\x4d\x71\x64\x83\x56\x9d\xef\x3d\x95\xb7\x00\x58\x7e\x58\x23\x8c\x47\xf6\x3e\xe1\x51\xb8\x90\x1f\xb5\x50\xc0\xc3\x80\x02\x1e\xad\x51\xc0\x43\x9e\xa6\x70\x64\x1f\xe1\xcc\xbe\xdd\x34\xb3\x54\xe5\xc7\x4e\xd3\xcf\x93\xae\x24\xed\x75\x9d\x37\xeb\x02\xa4\x29\x0f\xb0\xdd\x06\x6a\x85\x9f\x44\xbc\x8e\xce\x54\x99\x9d\x31\x60\xe8\x0b\x85\x26\xbe\x8d\x1a\xa8\x15\x06\x25\x80\x46\x00\x52\x40\xa2\x8f\xfa\x4c\xa2\xf7\x3a\x68\x4f\x97\xdc\xd5\x00\x90\xf1\x21\xd2\xd7\x3e\xf4\x32\x46\xd4\xba\xca\xe4\x3f\x3c\x22\x67\x19\x55\x66\xd6\x47\x86\x01\x7d\x86\xe1\xb1\xb8\x78\x0c\x69\x4e\xa0\xe1\x3e\x3f\x44\x2f\xd6\x79\xd3\xde\xff\x95\x5d\x69\xc3\x8e\x24\x5e\x53\x44\x7b\x7e\xfc\x00\x37\x24\x83\xee\x05\xdf\xbc\x2b\xbd\x5e\x23\xc4\xc7\x6e\x8b\xc1\x85\x17\x6d\x32\x8f\x43\xda\x7c\xdc\x42\x9b\x8f\x02\xda\x7c\xdc\xb8\xdb\xe2\x55\xff\xda\xf1\x22\x28\xbd\xc6\x85\x1e\x23\xad\xbe\xfe\xb6\x6d\xe6\x91\xdd\x66\x3c\x8f\x78\xb4\x36\x47\x6f\x47\x4d\x2e\x51\xb2\x26\x44\x18\x7c\xa3\x00\x2f\x20\x9c\x98\x4a\x63\x65\x2b\xeb\x55\x8d\x8f\x9c\xe0\x73\x25\x3c\x31\xea\xca\xb0\xcd\x16\x7d\x8f\x03\x5d\xcc\xd9\x4d\x03\xed\xfc\x18\x8a\x83\x3e\xf0\x73\x00\xfc\x82\xb5\x4c\x96\x09\xc9\x14\x8d\x50\x6c\x9c\xcb\x4b\x55\x2b\xf1\x41\xe4\x7e\xfb\x51\xf5\xc2\x6e\x3c\x79\x2d\xf2\x72\x5a\x70\x9f\x4a\xd7\xa7\x81\xc0\xab\xac\x7e\x35\xed\xa3\x3c\xd8\xaf\x57\xa5\x48\x80\x7a\x2c\x14\x68\x58\x95\x59\xa3\x84\x02\xfa\x92\xb5\x22\xed\x1e\xbe\xaf\xc8\xd2\xa4\x7d\xd7\x21\x57\x9e\x0d\xbe\xdd\x1d\x88\xa3\xf2\x3a\x88\x06\x15\x8d\x29\x85\x85\x5c\x4c\x14\x3d\x4d\xe4\xbb\xdf\x24\xb6\x27\x96\xeb\x3d\x09\x29\xeb\x49\xac\x9c\x75\x87\x2e\x3f\xf3\x40\x29\x4f\xce\xba\x2d\x1c\x0b\x29\x61\x23\xcf\xc2\x5c\x68\xcd\x72\x2d\x2b\xdb\xd2\x43\x98\x2d\xed\x60\x99\xb3\x2e\xb3\x30\x94\x7e\x63\x26\x36\xb1\x31\x6f\x12\x80\x7b\xe8\x08\xf9\x09\xb0\xb0\x7d\xbf\x7e\xba\x4c\xfd\x51\x65\xc9\x91\x80\x92\x10\x95\x43\x11\x36\xfd\x55\x18\xcc\xb9\xb0\x6b\x16\x99\x31\x43\x3e\x14\xc9\xc4\x86\xbe\x71\xe7\xb5\x6e\x08\xb2\x85\x5b\xda\x41\x3a\xc0\xaf\xcf\x69\x98\x90\x67\x62\xf7\x2d\xd7\x24\x39\xde\xb7\x1e\x72\xce\x27\xc4\x39\x7f\x18\xdd\xc1\x3b\x7f\x55\xec\x0b\xaf\xf0\xce\xc7\x3d\x18\x6a\xef\x02\x81\x0c\xad\xae\xba\x87\x2f\xdc\xa3\xae\x10\x76\x68\x98\x5e\x0b\x66\xb2\xca\x8b\x8c\xe3\x79\xc3\xb2\xa2\xe7\x9b\x90\x7a\x39\xa2\xfb\x40\x9c\xd8\x47\x1b\xd8\xc8\x12\x1f\x41\x31\xf3\x5a\xb9\x15\xca\xe5\x93\x61\x0f\xc4\xb3\x5d\x3c\xd4\xc9\xd2\x6b\xc2\x29\xc6\x34\xca\x75\x59\xa5\x74\xf9\xc0\x20\xa1\xdb\xea\xea\x6a\x59\xe4\x69\x6e\x02\xa2\x0f\x2f\xd3\x7b\xd0\x4f\x7c\x78\x03\x90\xa5\xc8\xe3\x56\xf7\x59\xf9\xe5\x0d\x5b\x40\x71\xdd\x73\xa1\xf7\xa6\x95\x7d\x69\xcc\x1d\xef\xfa\x13\xa9\xc3\x81\x19\xf8\xf3\x3a\x42\xa3\x80\xff\x8b\xe6\x3a\xdb\xb3\xeb\x6c\x8f\xd7\x59\xe3\xfa\x23\x50\x56\xc4\x8b\x6c\x6f\x7d\x91\xd1\x99\x13\x28\x64\x2f\x26\x1e\x58\xba\x7b\x41\x23\xa4\xd9\xb9\x03\x32\xad\xf6\xbd\x68\x49\xd1\x4d\x94\xf3\xb2\x77\xca\x90\xa1\x7b\xe4\x00\x6a\xd8\x95\xbd\x16\xd1\x01\xaf\x10\xd1\x65\x2a\xff\x61\xaf\x07\x7c\x6c\x1c\x5d\x6e\x7d\x1d\x63\x8f\x1f\x5e\xfc\xbc\xee\xb4\x61\x19\x2c\x96\x5d\x8a\x89\x7a\x80\x5f\x9f\x03\xac\x83\x38\xb6\x45\x38\xc0\x6f\x57\x8b\x70\x14\x3e\xff\xb0\x1b\x8f\xaf\x2d\x4f\x0f\xf5\x7e\xc6\x83\x1c\xe3\xcf\xae\xe9\xd2\xf4\x60\x7b\x8e\xc6\x66\xc4\x6f\x00\x43\xf9\x30\xee\x85\x1d\x90\xd2\x4e\xd9\x67\x16\xa1\x1b\x83\xf0\xf9\x87\xdd\x00\xfd\x70\xda\xda\xf0\x25\x4e\xb0\x1b\x8d\x87\x9f\xb9\x3b\xd0\xdc\xed\x31\x26\x8c\x69\x54\x9b\x26\x2d\x46\xd0\xce\x2e\x35\xd8\x12\xd0\x23\x1c\x2c\x9a\xa2\x6f\x1f\x2c\x24\xa3\x96\x70\x1d\x1c\x08\x0e\x6f\x3b\x87\x67\xe1\x9d\xef\xfd\xfb\x22\x59\xb0\x2a\x0a\xe3\x8a\x26\x3b\x7f\x3f\xd5\xdb\x3b\xdd\x60\x0a\x5d\x3d\xfb\x9e\x2d\xc1\x08\x48\x8f\x10\x5c\x95\xf8\x08\xcd\x1a\x8d\x0f\x7b\x61\x95\x6e\xb7\x81\x56\xa1\xf9\xd6\xb7\xfb\x15\xc4\x4e\xf5\xf6\x0f\x11\x62\x41\x4d\x53\x89\xfe\x66\xcc\x5a\x97\x1e\x1d\x4b\x83\x2a\x98\xe4\xd0\xc3\x3f\xac\xbe\x8b\x15\x7e\x78\x49\x7e\xc8\xa0\x6b\x75\xa1\x6a\xad\x12\xdc\x80\x20\x85\xac\xd7\xba\x49\x37\x32\x92\x9e\xe4\x59\xee\xef\x3c\xed\xbd\x65\x60\xfc\x8d\x6e\xa1\xf8\x50\x92\xc8\x4d\xd7\x45\x06\x03\x18\xa4\x3c\xf4\x51\x4c\x5d\x84\x8b\xe9\xaa\x28\xae\x45\x74\x79\xc5\x61\xc1\xe3\xb7\x56\x6c\xaf\xed\x4d\x55\x6b\x90\xf0\x99\x32\x78\x19\xc5\xde\x63\x0d\xfd\x69\xc8\x8d\xd1\x3a\xc9\xf6\xd5\x11\x56\x68\xf3\xba\x5e\x12\xf6\xf1\xe0\xba\xcb\x3f\x11\x12\xb5\x14\xc6\x1d\x46\xf8\x74\x73\x7c\xfc\xb7\xe3\xb7\x1f\xc5\xaf\x47\x6f\x7f\x7e\xfd\xea\xed\x5f\x31\xe9\x35\x74\xf6\x92\x8c\xa9\xd4\x05\x86\x45\xab\xe5\x42\x5d\x56\xf5\xf9\x40\x54\xe5\x4e\x35\x9d\x0a\x59\xe8\x4a\x40\x0a\xc8\x92\xee\xfd\xe3\x1e\xde\xce\xaa\x59\xae\x0d\x4d\x06\xbd\x4b\x86\x05\xe8\x1d\x66\x38\x1a\xe3\x05\x5d\x59\xfd\xca\x09\xa4\x98\xc5\xc4\x0a\xc3\x44\x59\x5d\xb3\x5a\xe4\xc6\xa8\x9a\xf4\xb7\x91\x91\x09\xe7\x0c\x64\x96\x1d\x03\x82\xaf\xf1\xf9\x4a\xeb\xac\x26\xc4\xa6\xfc\x84\x21\xf5\x7c\x34\x8f\x5b\x7f\x60\x70\xb5\xd0\x65\x1b\x2b\xae\x01\xf4\x59\x49\xa7\x2a\x3b\x62\xdb\x21\xb7\xd5\xd8\x5d\x28\x86\xc5\x12\x04\x1b\xae\xfc\x87\x1d\x02\x3a\xa1\xae\xa5\x8e\xc5\x97\x5b\x5a\x21\x0b\xb9\xfc\x04\x70\x41\x60\x4a\xfc\x8f\x9b\x9b\x60\xd8\xba\x36\x84\x2c\x35\x1d\xb9\xc5\xcc\x94\xb1\xc5\xe2\x51\x8c\x9e\x22\x58\xc7\xe0\xfe\xfd\xf5\xc4\xb6\xb6\xa3\xc6\xaa\xe9\xf4\x1b\xa6\x8a\x02\x93\xdc\x39\x5b\x2d\x45\xbe\x6d\xc2\x28\x28\x40\xeb\x84\x05\x59\xff\xc6\x84\x61\xfc\x6e\x8c\xb5\xb1\x24\xdf\x33\x9e\x11\xc7\x67\x65\x5d\xc7\xa7\xdb\x9c\x1f\x9c\xb4\xb1\x47\x64\x5d\x73\x9b\xb6\x0a\x95\x78\x21\xfa\xa3\x30\x64\x44\x38\xf3\xb2\xae\xfd\x33\x48\x58\xdc\xcd\xb9\xcf\x22\x30\xdb\x62\xe4\x36\xa7\xdb\x35\x72\xd0\xf9\xac\x94\x45\x3c\x49\x62\xe7\x2f\x3d\x7a\x12\x48\x0f\x06\x83\xbf\xec\x78\x56\x14\xd0\xe3\x66\x3a\xb2\xf6\x49\x6e\x55\xaf\xc5\xb9\x71\x2e\xea\xf5\x0c\x40\x61\x90\xf5\xc1\xb2\xae\x4c\x85\x8a\x4e\xc4\x7e\x90\xca\xa2\x48\xac\x9b\x93\x06\x41\x7a\x83\xc1\x51\xa3\x1d\x6b\x73\xe4\xd2\x3f\xe5\x67\x1c\x33\x83\x22\x29\x41\xab\xdd\xe8\x3d\x78\xe0\x41\xc8\xcd\x98\xc9\xfb\x47\x4a\xdd\x13\xf1\xfc\xd4\x5d\x75\xa1\xea\x9a\x1c\x3b\x26\xd7\x4d\x8e\x26\x45\x52\x56\x65\xff\xe7\x77\x6f\xba\xb6\x71\xeb\xa9\xc7\xef\xa9\xda\x0d\x88\x58\x67\x29\x17\xaa\x67\x1f\x94\x5f\xd6\x98\xf8\xb3\x9a\xca\x55\x61\xfa\x56\x52\xa7\x92\x39\x9f\x17\x18\xea\xa0\x39\x7f\x3f\xbf\x7b\x43\x74\x9c\x2e\x7a\x42\xf5\x2c\x9a\x81\x15\x2c\x0c\x6c\x35\x15\x74\x87\x42\x6f\x52\x75\xac\x8d\x3d\x9c\x38\xbf\x40\x81\x7d\xa1\x7a\x0d\x44\xf6\x45\x68\x1e\x41\xf7\x80\x19\x65\xbd\xa7\x82\xce\x8e\x51\xdc\x92\xc2\x9d\x49\x0a\x50\xb1\x78\xa0\x1f\xeb\x80\x56\x17\xa2\x18\x3c\xac\xa5\xfe\x68\xc2\x4b\x14\x39\xbe\x0e\xd2\x2a\x53\x0b\x9c\x87\x57\xb3\xb2\xaa\x55\x0b\xe5\xd2\x03\x19\x47\xa9\xc9\x2f\x72\x73\x1d\x59\x77\xd2\xba\x4c\x17\x31\x13\x0b\x7f\xf3\x4b\xd5\xb6\xb6\x25\x5c\x5a\xb1\x4d\x62\xa5\x70\x8a\xe9\x02\x2a\xbd\x5b\x36\xaa\xfe\x1a\xb2\xef\xaf\x95\x41\x37\xb7\xcd\xef\x06\x34\xe9\xd8\x71\x84\x77\xd3\x44\x2b\x83\x0c\x07\xe3\x95\x53\x94\x22\x9e\x44\xad\xf8\x15\x30\x9b\x7b\xdb\x58\xe9\x73\xa9\x19\x83\x3b\xf8\xfe\xe6\x55\x6d\x2f\x63\x5f\x88\xa1\x75\x7c\xcd\x32\xc1\xcf\xc3\xc3\xb6\xbf\x50\x66\x5e\x65\x7c\x2f\x92\x56\xa5\x36\xf5\x2a\x35\x55\xfd\x40\x0b\xb7\xb4\x7b\xf6\xf5\x8e\xe6\xd2\xe1\xd5\x07\xd3\x8a\x1e\xeb\x2c\x30\x2d\xaa\x1a\x1f\x47\xbc\x50\x65\x1e\x9b\xf4\x62\x85\x37\xf9\x55\x5e\x26\xd0\x08\x75\x02\xbe\x05\x7c\x24\x16\x19\xfc\xf6\x03\x3f\xe6\xb9\xf6\x3b\xd2\x6d\x4b\x5d\x0c\xc8\xd1\x56\x79\x3a\x5d\xab\x4d\xe3\xf1\xf3\x4a\xd9\x7b\xd8\xa9\x4c\x0d\xad\xd8\x4b\x25\xb4\xc9\x8b\xc2\x3e\x50\x2c\x3e\xaf\x6a\xa9\x75\x9e\x8a\x57\xc7\x82\x9f\x26\xd6\x3d\x7c\xdb\xc1\x45\x1d\x31\xfc\xae\xbd\xe0\x67\x7c\xf9\x71\x07\xa5\x32\x95\x0d\xc2\x17\x62\xfe\x88\xd7\x6a\x12\xac\x77\x35\x88\xf3\x80\x90\x9a\x69\x49\xf4\x12\x86\x1a\x10\x0d\xfc\x0d\x18\xbf\x35\xbb\x8d\xdd\x93\xd4\x1f\xda\x54\xcb\xf7\xf6\xd9\x37\x90\xc3\xc2\x16\x1b\x99\xd4\x64\xb3\x46\xa3\xcd\x54\x96\xa9\x2a\x7e\x5a\x4d\xa2\xe7\x91\xa3\x36\xdb\xd8\x43\x28\xaa\xac\xf3\x23\x6f\x14\xd9\x92\xb9\xdf\xec\xa9\xb5\x30\x5e\xeb\x28\x36\xd4\x32\xc8\x07\xad\x03\x11\xbd\xdd\xf3\x87\x91\xf5\x4c\xd1\x8c\x38\x3c\x29\x8d\x58\x9b\xae\xd3\x63\x52\x07\x45\xcd\x4e\x56\xc6\xf8\x61\x45\x9d\x20\x08\x1d\x03\x34\x69\xe3\x81\x9e\x34\x7d\xbe\x68\xf4\xa9\xaa\xb8\x2f\x50\xb1\x06\xd5\x46\x4d\x7b\x97\xa0\xd0\xae\x2d\xf4\xf0\x8e\x42\x8f\x6c\xa1\xdd\xc8\xf2\x78\x21\x53\x14\x07\x07\xa9\xa9\x8b\xff\x54\x18\x55\x0d\x91\x1a\xc5\x40\x6d\x3c\x16\xbb\x3e\x94\x51\xa9\x11\x59\x2d\x67\x7d\x59\x66\xfd\xac\xae\x96\x28\xda\x43\xca\x51\x99\xfd\x5c\x57\xcb\x70\xcd\x39\x73\x3c\xf7\x32\xe8\x5f\x60\x99\xfc\x45\x9c\x63\x38\x97\x69\x0c\xc9\x2d\xb0\xbc\x14\xaf\x8e\x9f\xf4\x9f\x52\x70\x8c\x57\xfc\x52\x6d\xb5\x2a\x30\x4c\x26\x3e\xdd\x8b\xd7\x77\x78\x42\xb9\x56\xf8\x16\xfb\x86\x07\xc3\x9f\xb5\x9a\x92\x20\xca\xf9\x05\xbf\x84\xfe\x20\xcb\x2f\x1e\x04\xdb\x59\xc7\xbd\xf6\x8d\x2f\x95\x42\xc1\x9b\x1b\x4a\x85\x0e\xda\xc4\xad\x5b\x38\xa9\x02\xa8\x3f\x2f\xf5\xf2\xc4\xbe\x5e\xee\x69\xe1\x4f\x55\x57\xf8\xbe\x2f\x93\x49\xc2\xaf\x51\xfb\x05\x17\x55\x6c\xf3\x03\x34\x0a\xc3\x74\xe2\x7b\xed\x7a\x29\xcb\x4e\x4f\x74\x4e\x57\xbb\xc3\xe1\xa4\x63\x9d\x00\x41\xaa\x7e\xc9\x3e\x44\x47\x65\x76\x94\x65\xb6\x9d\x5e\x54\xef\x13\xc0\xea\x79\xdf\x0a\x8a\x36\xfa\x51\x5d\xa1\x03\x5c\xd2\xb9\xea\x74\xcf\xba\xde\x1b\x81\x61\x90\x93\x04\xc2\x1f\x50\x40\x54\x7e\x9d\x18\x43\x17\x39\x73\x9a\x46\x47\x10\x6f\x2e\x4f\x2f\x1c\x3f\x67\xcd\x44\x90\xc1\x80\x5e\x88\x5d\x7a\x82\xbd\xfd\xb9\x77\x4b\xb5\x74\xaa\xcc\x80\xc3\xc4\x8d\x1d\xb6\x8f\x8e\xd8\xe7\x35\x11\xe5\x0d\x87\x72\xd8\xb1\xf1\x38\x3b\xec\x35\xb2\x2f\xf2\x12\x4e\xd5\xfd\x49\x51\xa5\xe7\x07\xf4\x42\xf5\xbe\x18\x2d\xaf\x0e\xc4\x42\xd6\xb3\xbc\x24\x0d\xc1\xbe\xe8\x8f\x96\x57\x38\xf0\x80\x49\xe3\x79\xfe\x74\xd1\x87\x53\x39\xb4\xd3\xe9\x86\x6f\x1d\x66\x36\x84\xc0\x2f\xf4\xd0\x4f\x3f\xa3\x55\xf4\xea\xf8\x81\x16\x69\xbd\x5a\x2c\xae\x45\x5a\xe4\xf4\xae\x7b\x0a\x1f\xd0\x33\xab\xec\x40\xf5\x07\x3e\xac\x8a\xac\x44\x66\x3f\xe5\x59\xfe\x01\xb6\xd6\x48\x2e\xf8\x29\xc8\x58\xa7\xb3\xb0\x5a\x18\xfe\xd7\x2e\xef\x30\xdb\x45\x7a\xc2\x37\x57\xef\xa6\xaf\x8d\xc4\x74\x74\xba\x1a\x3e\xd9\x55\x47\x9d\xae\x8d\x1e\x53\x0f\x01\x1a\x46\xa4\x31\x57\xa4\x88\x1b\x75\x07\x33\x65\x7e\xe2\x0b\xb5\x97\x38\x04\x80\x83\x0b\x6c\x55\x8f\xe2\x3a\xa8\x8b\xbf\xa3\x4e\x8c\xac\x1b\x06\x2b\x14\xd6\x68\x82\x56\x0f\x07\xf8\xe4\xcd\x78\x0c\x5f\x6b\x7e\xa5\xb4\xc1\x23\xf0\x59\x71\x39\x95\x75\xee\xde\x59\x25\xdb\xe8\x92\xdf\x70\x92\x5a\x69\x91\xfc\xc7\xee\xde\xd3\x61\x30\xd9\xd1\x40\x8e\x45\x52\x8f\xa8\x01\xd1\x77\x6d\x89\xe7\xe2\x61\xd7\x3d\x59\x84\xfc\xba\xd3\x41\x0d\xa5\x8b\xcf\x31\xa9\xab\x73\x55\x06\xd2\x45\x0f\x4a\xe9\x0a\x9f\x6b\xbd\x00\x59\x9c\xc3\xdc\x17\xf8\xd2\x1a\xea\x60\x2e\xe5\x35\x70\x44\x82\xc3\xd1\x22\xc8\xc7\xb6\xc8\xe9\xad\xda\xa3\x15\x1a\xff\x75\x4e\xcb\xd3\x72\xc2\x2d\x26\x3b\xa7\xe5\x8e\x93\x0b\xef\x01\xd7\x3f\x0c\xc2\x80\xd2\x21\xc3\x6f\x64\xa4\x95\x1d\xf6\x44\xad\xf4\xaa\xb0\xef\x09\x17\xa4\x6b\xcc\xcb\x99\x57\x20\xb2\xe7\x1a\xea\x62\xc7\x22\x62\x69\x65\x50\xde\xca\xc4\x9d\x53\x58\x9f\xcb\x4a\x7b\xfe\x53\x16\x2c\x1c\x8b\x2f\x51\x15\xc6\x35\x30\x08\x24\xb7\x27\xce\xa6\x63\x33\xaa\x74\x39\x85\xed\x57\xcb\x02\x9f\x79\xc3\xc3\xd3\x29\x5a\x2c\x52\x8a\xd8\x17\x65\xe1\xe3\xf8\xd4\xee\x31\x63\x8f\x5b\xdd\xf1\x68\xd5\xc8\xf9\xfa\x81\xd9\x1b\x8d\x45\xf0\x7c\xaf\x3b\xd4\xd7\xc6\x69\xb5\x61\x20\xb6\xc7\x00\x7d\x9b\x6f\xc0\x1a\x77\x15\x4d\x28\x61\xc5\x31\xa0\xea\xea\xc5\x2e\x24\x54\x6f\xeb\x56\xec\xb7\xcd\x9b\x8b\x42\xcb\x83\xc3\x73\x5e\x9f\x96\x87\x37\x30\xf3\x07\x82\x7d\x8c\xe6\x52\x9f\xa8\xc2\x6a\x6a\xc5\x65\x5e\x66\xd5\x25\xac\x34\x9f\x1a\x12\x86\x61\xde\x62\xea\xeb\xc0\x05\x19\x38\x22\x97\xc6\x5b\x67\x18\xa9\x30\xf1\xb8\xcc\xc8\xc7\x11\x95\xd2\xaa\x65\x67\x8e\xbb\x61\x02\x19\x0a\xb9\x80\x6d\x11\x7f\xe0\x2e\x33\xa8\x2e\x4b\x55\xff\x6c\xd9\x90\x6b\x8a\x19\x12\x45\xc0\xea\xc6\x8d\x3a\xef\x2b\x02\x03\x2c\x01\x83\xfe\x91\x73\xaf\xdd\xab\xbb\x84\x7d\xab\xf8\x60\xc7\x1e\xab\x71\x8c\xb4\xe3\x32\x7b\x8f\x16\xf2\x49\x07\x3b\xff\xb1\x3a\x2e\xb3\x4e\x8f\x0a\x21\xb0\xe1\x96\x1f\xec\x97\xd5\xf2\x1a\x8f\xfb\xa1\xf7\x82\x48\x7c\x7f\x95\xdd\xf5\xb3\xfc\xa2\x63\x39\x58\xa7\x2a\xd3\x6a\x79\x8d\x02\x88\x6a\x73\xfe\x6e\xee\x49\x5c\xbe\x27\x3a\x54\xf2\x20\xdc\x99\xac\x3e\x61\x40\xa5\x70\x65\x58\x54\x3a\xac\x87\xe7\x3d\xe7\xff\xad\xaa\x85\xca\x2c\x5b\x8b\x9d\xd0\x68\xf3\x09\x4a\xb4\x6e\x3f\x21\x84\xd6\x0d\x28\x2c\xd0\xd8\xef\xbf\x5d\xc6\x01\x21\xa6\xeb\x2a\xd7\x0b\xb4\xcc\xc6\xbd\xfa\xee\x8d\x66\x5a\x57\x8b\x0f\x4c\x54\xb4\xdf\x40\xa5\xaf\x6f\x52\xed\xe8\x8f\xc9\x6d\x50\x4e\x74\x42\x48\xd0\x86\xd3\xf7\xcd\x60\x42\x57\xbc\xa0\xd0\x24\xa8\x9a\x44\x5f\xaa\xb1\xf8\x72\x4b\x6f\xfb\x2d\xf2\x85\x7a\x13\xa4\xed\xec\x88\xe3\x2b\x53\x4b\x17\x35\x88\x4e\x94\xf8\x5a\x9b\x75\xcc\x41\x20\x0f\xb4\xc8\xd4\x52\x95\x99\x2a\xd3\x5c\xe9\x1e\xbb\xd2\xe4\x78\x1f\x82\xd6\x1c\x93\x6b\x91\x14\x6a\x26\xd3\xeb\xae\x58\xa8\x74\x2e\xcb\x5c\x2f\xb4\x28\xf2\x73\x25\x8a\x4a\x66\x00\x65\xf0\x99\xb4\x00\x2b\x53\x2d\x24\xbe\xbd\x4c\xf1\xec\x20\x5f\x48\x6c\x68\x20\x92\xf7\xb5\x9a\xaa\x1a\x10\x70\x70\xec\x1e\x56\xab\x7f\xae\xf2\x5a\xed\x50\x54\x23\x7c\xb5\x5c\x0f\xba\x61\xe8\x59\x48\x87\x1e\x26\xa8\x43\x43\x90\x9e\x62\x5c\x2f\xbd\xce\x62\xd7\xaa\x49\xb0\xf1\xb0\x8f\xdf\xa1\x7f\x44\xd2\xc2\xb1\xfe\x04\xcd\x9e\x89\x31\xfe\x8a\xb4\x2c\x8c\xda\xab\x37\xc7\x09\xcc\x42\x4f\xe8\xa5\x4a\x09\x35\x37\x2b\x9f\xe0\xdb\x19\x86\xe8\x50\x69\xe3\xf5\x1e\xa8\xc9\x9a\x05\x29\xbe\x50\xef\x06\x83\x01\xbf\xf9\x7b\x8b\xa1\xfa\xf2\x99\x7b\xdd\x07\x1f\x70\x2b\x39\x0c\x18\x31\x6a\x17\xa8\x92\x46\x3a\xae\x11\x85\x03\xd7\x55\x71\x41\xa3\xe8\x91\x0c\x74\x85\x90\x18\xaa\x0b\x51\xbd\x6d\xfb\x30\x98\x4b\xfd\xee\xb2\x7c\x4f\x2f\x81\x5c\x13\x04\x1f\x5d\x03\x6a\x06\x1d\x86\x84\xb3\x58\x41\x8f\x65\xf8\x8e\x9c\x1b\x1b\x40\x47\xbe\xab\x45\xac\xd1\xee\x66\x1f\xb5\x8d\xe5\xbc\x4a\x9e\xdb\xe4\xb2\x81\x42\x34\x70\xc9\xc4\xb1\xe7\xf7\x3c\xac\x21\x31\xf7\x8b\xb6\x87\x77\x93\xcf\x3e\x94\xa5\x4a\xbb\xae\x04\x77\x83\xcd\xeb\x4a\xb2\xdd\xba\x8d\x0d\x25\x37\x0c\xef\xce\xdf\x3f\x9d\x5e\x9e\xf6\xcf\xb6\x4f\x77\xec\x97\xed\xab\x45\xf1\xc3\x0e\x7b\x37\x84\x83\xec\xf7\x70\x37\x8d\x1d\xb9\x5c\x16\x18\x26\xb7\x2a\x77\xae\x16\x45\xa7\xfb\x6f\xb5\xfc\x59\x57\xe5\xbf\xd4\x34\x54\xec\x84\x61\x60\x36\x34\x1c\x30\x71\x1e\x6e\x28\x71\x1b\x6a\x88\x5c\x24\x7c\x95\xc2\x66\xcb\xc5\x3a\xb0\x05\x74\xd6\x1f\xed\x47\x82\xc7\xb2\x89\x2c\xaf\x0d\xbf\xd6\x29\x4d\x88\xaa\x90\x69\xaa\x96\x46\x77\xf9\x59\x7f\x59\x66\xf4\xfe\x7b\x6e\x72\x59\xe4\x7f\xaa\xc0\xf4\x07\xe1\xad\xad\x9c\x99\x32\xd8\x67\xf7\x8c\xb7\x5f\x3e\x4c\x21\x6b\x6b\xcb\xc6\x55\x9b\xca\xd4\x54\xf5\x35\x73\x8e\x06\x71\x52\xac\x78\x2e\x12\x8c\xcd\x5a\x7b\x1d\x38\xd2\xed\x2c\x0b\x99\x97\x1d\xef\x2f\x0f\x10\x29\xd6\x8a\x85\xd1\xc0\xd0\xaa\x6f\xaa\x4c\x1d\x5f\x19\x55\xa2\xee\xf1\xdb\x96\x95\xba\xc2\xad\x29\xae\xda\x5c\x5a\x3e\x26\x4a\x5d\x2d\x51\xcc\xb8\x32\x3a\xb6\x0e\xba\x07\x49\xcd\x26\xa1\x78\xb7\x35\x28\xbc\x45\xf7\xdd\xe4\xf3\xc6\x4a\x9c\xff\xa9\xf3\x47\x47\x6c\x63\xd3\x96\x31\x43\x2a\xfd\xb6\xf0\xe2\xd4\x31\x22\x48\x3f\x22\xf1\xd8\x36\xc9\x0b\xd9\x75\xd3\x05\x35\x52\xe9\x60\x8e\x81\xb8\xc9\x92\xce\x21\x11\xa4\xda\x7a\x41\xca\x6d\x58\x1f\x6a\x40\x67\xe2\xc0\x59\x80\xcb\x0f\x23\x3c\x29\xc6\x85\x82\xed\xcb\x76\x80\x8c\xe6\xe2\x72\x2e\xe3\x36\xf2\xd1\xe2\x6a\xee\xca\x2b\x77\x17\x5a\x2b\x7e\x56\x82\x6e\xaf\xc3\x97\x9d\x4c\x15\x92\x3f\x99\x22\xa3\xdb\xed\xca\x68\x38\x46\xa2\x03\x78\xb0\x4c\x70\xe7\xcb\xc9\x34\xd3\x92\xa3\xa7\x15\x94\x44\xa2\xf8\xe0\xaa\xcc\x90\xaa\x17\x28\x2c\xf9\x86\x03\x31\xb6\x8d\xe8\x9a\x74\x40\x5b\xff\x61\x93\x34\xe1\xe7\x99\xd8\x6f\x52\x3b\xa7\xdb\xeb\x74\x10\x5d\x81\x8f\xfb\xd6\x7b\x44\xb4\x5b\xcd\x87\xd3\x4f\x8c\x34\x16\x57\x0d\xdf\x83\x48\x5c\xf0\x13\x1f\xc4\xa7\x38\xc2\xc1\xc1\x09\x32\x6e\x83\x65\x37\x70\xa0\xc2\x78\xe8\x51\x46\xc2\xd0\x9d\x18\xcb\xe0\xe9\xe8\xe1\x08\xa5\x44\x1a\xf1\x88\x50\xe1\x0b\x49\x87\x5d\x69\xd4\xa7\xd2\xef\x77\x90\x1c\x3c\xc3\x7f\xc4\x2f\x59\x73\xf1\x0b\x59\xb8\x27\x67\xcf\xdc\x7b\x30\x16\x08\x15\x68\xbc\x04\x83\x99\x6d\xbc\x97\x1e\xc7\x27\x94\x13\x17\x1e\x1b\xe7\x88\xd9\x2d\x90\x4d\x5e\x96\xaa\x76\x15\x38\xba\xa5\x51\xd6\x13\xcd\xbe\x1b\xeb\x02\x36\x72\x36\x0a\x8c\x40\x98\x01\x2f\x46\x50\x01\x1d\x05\x43\x42\x77\xed\xd3\x2a\x88\x85\x03\x23\xed\x6a\x38\xf5\x79\x39\xad\x98\xcc\x7c\x26\x4f\x83\x1b\xc2\x7b\x58\x0a\x5f\x0c\x99\x56\xb8\xde\xf0\x95\x65\x0e\x1f\x17\x86\x57\xb2\xf3\x85\x05\x69\xa0\x2c\xeb\xb1\xa9\x28\x35\x46\x23\x6a\xa1\x7f\x81\xac\x7d\x11\xf4\x65\x9f\xfe\x34\x6e\xed\xe1\x90\x18\x92\xa4\x1c\xf5\x84\xdc\x8d\xee\x45\xb0\x3f\xbe\x20\x2f\x91\x20\x25\xb1\x95\xf6\xc3\x17\xb8\x4f\x3e\x7e\x78\xf5\xf6\xaf\xf0\xe7\xf8\xe8\x0d\x6b\x1e\x33\x7b\xaf\x85\x9d\x58\xca\x5a\xa3\xe1\x03\x2b\x94\xb4\x20\x1e\x17\xbc\x13\x1c\xdc\xf2\x71\x69\xba\xca\xd3\xab\x34\xcd\x4b\xd8\x4c\x91\x45\x9c\xa0\x18\x70\x62\x6a\x25\x17\xa1\xe6\xdf\x0a\xb2\x46\x4e\x4e\xf2\x3f\xf9\xa1\xf7\x77\xb5\x4c\x0b\x15\x3c\xf5\x4d\xda\x0d\xfc\x6a\x8d\x12\x87\x36\x8f\x20\x38\xcd\x8e\x4d\x66\x80\x50\x8d\xbf\xdd\xdc\x88\xa7\x36\xb7\x90\xda\xbc\xac\x8a\xd5\xa2\x7c\xef\x41\xfb\x44\x7b\x31\xe6\x1a\x01\xac\x4e\x9a\x2d\x7b\x54\x6d\x28\x33\xfc\xb1\x75\x7b\xb0\xb5\x15\xf6\x37\x38\x6f\xa8\xaa\x08\x7a\x8f\x07\x79\x17\x6b\x9e\xfb\xf9\x62\x1c\xf6\x8b\xcf\x35\xb7\x07\x9b\x20\xea\xaf\x43\x1c\x8f\x1b\x9d\xd8\x0c\x6d\xa9\xd4\xf9\x5d\xe0\x62\x5d\x99\x6d\x01\xef\xf0\x5d\x64\xda\xcd\xd0\x31\x4e\x69\x03\xba\x15\x1b\x2d\xb2\xcf\x5b\x7a\xdf\x8c\x10\xb8\x19\x93\xed\x6d\x34\xf7\xd8\x88\x81\x92\x31\x02\x68\xf7\xe8\x79\x48\x3a\x17\xe3\x3b\x3b\x6a\xed\xf4\xce\x63\x69\x17\xc1\x34\xc5\xdd\xea\x1c\xe3\xc1\xd1\x13\xed\x90\x1f\xc8\xba\x36\x0f\x6d\x30\x21\x13\x45\x6f\x58\xb8\xee\x47\x02\x88\xed\x53\x02\x7c\xf7\x8f\xb5\x55\xe7\x5d\xf1\x65\x7b\xdb\x22\x75\xe0\x02\xd5\xcf\xbf\xd2\xf5\xdf\x91\x37\xde\xd1\x7f\xbb\xb8\x2c\x68\xcf\x4f\x31\x45\x49\xc3\x35\xba\x5f\x02\x8e\xe6\x49\x97\x00\xdc\x8d\xc4\xc9\x92\x9c\xb7\x9a\x54\xc0\xb7\x09\xf3\x5c\x93\x5b\xce\x3c\xd7\x07\x5b\x5f\xc5\x6b\xe7\xd3\xa9\xa6\xeb\x9a\x33\x3e\xbe\xdc\x35\x7d\x28\x45\xd2\xc8\xfd\x30\x42\x94\xff\xb5\x6e\xe8\xf3\x7c\x89\x8a\xbb\x66\x3f\xd6\xb9\xd5\xb7\x2d\x62\x84\x17\x01\x0b\xa7\xc5\x05\x87\x0a\x40\x5a\xb5\x73\x3a\xef\x89\x90\x3c\x31\x8a\x3b\x96\x7f\x41\xea\xe7\x00\x25\x4c\x3f\x08\xb5\x81\x77\x11\xcc\x44\xa6\xe7\xbf\x2d\x23\xa4\xca\x10\x5e\x7f\x2c\xca\xcd\xb5\x53\x64\xa4\x77\xad\xf6\x98\x07\x3f\x0f\xd8\x7b\x1c\xb3\x60\x8d\x2b\xa3\x99\x39\x25\x85\xb3\xdd\x0b\x20\xf4\xa2\x4d\xa0\xd7\xc2\xf4\xd7\xd2\x10\x7a\xb7\xad\xdd\xf7\x8d\xdd\x27\xde\xcf\x5b\x91\xec\xdb\x3e\xba\x7d\xe3\xf0\x2b\x68\xbb\x92\x31\xea\x5d\x7a\xa7\x75\xf3\x38\x03\x1d\x58\x47\x93\xf5\xc1\x76\x4f\x58\x6c\x68\x9a\x2e\x38\xe3\x06\xfb\x38\x06\xff\xb7\xf0\x67\xd6\x19\x60\xbe\x94\xc6\xa8\xba\xec\xa1\x65\xd1\x6a\x81\xe1\xf2\xb5\x7a\x55\x6a\x10\xec\x4d\x7e\xb1\x6e\xea\xc6\x35\x1a\x0c\xd8\xf1\x94\x14\x9d\x5f\xc6\xf1\xc5\x47\xf8\xc0\x47\x0c\x1e\xdf\xc8\xad\x07\xa6\x7a\x5d\x5d\xaa\xfa\xa5\x64\xd3\x73\x6d\xea\x83\xe0\x3a\x49\xaf\x26\xda\xd4\x8d\x45\x49\x89\x8e\xdf\xf4\x2c\x66\xd1\x3e\x86\x9e\x1d\x80\x52\x42\xc5\xf1\xae\x89\x12\xb8\x78\xb7\xe9\x67\x83\xe3\x10\xbc\x3f\x68\xcd\xf3\xf8\xba\x28\x6e\xc5\x1d\x81\x83\x75\xee\xcf\xbc\xeb\xb6\xae\x66\x6d\xd7\xa3\x9b\x29\xc7\x55\xd8\x3b\xc0\x22\xe7\xaf\xfe\xb1\x2a\x5a\xc2\xc2\xa6\x65\x4d\x59\x87\x6d\x8f\xdf\x35\x6a\x7c\xb5\x4b\x58\xd2\x3b\x0e\x30\x0c\xf7\xac\x94\xe1\x88\x91\x77\xf0\x9f\x55\x5d\xd3\xbd\x49\xb0\x26\xda\x64\x99\xa0\xb3\x21\xeb\x80\x8e\x6f\x86\x3e\xcf\x33\xf5\x0b\x59\x3c\x48\x34\xf3\x0b\x78\x64\x8f\x4e\x2a\x81\xf8\xea\x57\xd1\xf6\x58\x94\xcd\xfb\x30\x2c\xcd\xc6\x52\xd3\xbc\xc4\x67\x18\xbe\x34\x2b\x02\xb3\xbd\xb3\xbf\x45\x55\x9d\x1f\xcd\x95\xcc\xd6\x18\xb6\xf3\x2d\x60\x49\xb5\x21\xbb\x86\x0e\x01\x58\xe2\xfe\x7d\xfe\xe6\x61\x26\x25\x2e\x61\x92\xe4\xe5\x85\xca\x5e\x56\xa5\x89\x85\x39\x3a\x45\xf5\x84\xab\x13\xf4\xdf\x9e\x93\xec\x11\x89\x30\x08\x10\x76\xdf\x5d\x2b\x2d\x0d\x60\x3c\x4e\xdb\x0a\x7a\x50\x7c\x73\x5b\x14\xed\x93\x42\x7d\xba\xee\xfb\x18\x98\x98\xb4\x90\x57\xaf\xdb\x50\x02\xd9\x76\x88\x78\x31\x4e\xdf\x33\xe8\xdc\x8e\x45\x62\x60\x63\x8b\x7a\x24\xb6\x45\x19\xbd\x13\x10\x3c\x51\x5a\x8a\x17\xeb\xa8\xb9\x85\xd2\xc0\xb7\x5c\x7f\x8f\xa2\x15\x65\x90\xc1\x39\x02\x68\x73\xb3\x70\x48\x6d\x6f\x87\xfb\x74\xd4\x10\x2f\xef\xb5\x8c\x7e\x9f\xa8\xd3\xb5\x38\xad\xab\x05\x92\x4a\xd4\x10\xcd\x21\x24\x87\x91\xe8\x51\xb5\x82\x65\x03\xd5\x45\x48\x67\x8d\x03\x40\xa9\x2e\x2d\x81\xf0\x03\xf5\x4e\xa5\x02\x83\xcc\x47\x6a\xa8\x4f\xe4\xd0\x75\xb1\xb0\x31\x2d\x20\x1b\x2b\x92\xff\xab\xf0\xbb\xb6\x1b\xb7\x1b\x86\x1b\x4a\xc5\x72\x5d\xb5\xbc\x8e\x04\x6e\x43\x22\xcd\x32\x78\x5f\x16\x37\x5b\xdb\xa2\xa3\x1d\x6a\xd6\x13\x39\x9e\xe6\xdd\xaf\x86\x40\xd2\x9c\x34\x71\x88\xbd\x0a\x07\xd5\xae\xd8\x16\x12\x63\x4d\x04\xf6\x29\x8c\x08\x2d\x85\x36\xd7\x85\x62\xd7\xa7\xc4\x39\x41\x21\xe3\xc4\x07\xfb\xf0\x3d\x03\x52\x1e\xcc\x54\xa9\x6a\x14\x4c\x00\x44\xbf\x8f\x1a\xad\xbc\xbc\x90\x45\x9e\x91\xbc\x82\x69\xf4\x44\x95\x98\x5c\x8b\xa5\xcc\x29\x42\x8a\x2a\x33\xa7\x19\xd2\x5e\x6f\x04\x2d\x13\xd3\xd6\x5d\x7f\x5f\xe9\xf4\x9a\xf3\x7c\x36\x2f\xd0\x74\x06\x7d\xec\xab\x73\x55\x6a\x36\xca\xc7\x2b\xc9\x46\x20\x73\x5b\x9a\x43\x05\x5b\x12\x49\x69\x70\xf0\xcd\x9e\x54\xa1\x90\xef\xac\x13\x8f\x08\x09\x76\x10\x16\xb2\xb8\x94\xd7\x3a\x7e\xca\xc1\x3d\x31\x02\x52\x59\x3e\xbd\x66\xe3\x7e\xaa\x0f\xc3\xb2\x43\x4f\x74\x5d\xb3\xff\x01\x59\xf3\x90\x7b\x2e\x90\x07\x8c\x91\x92\xfa\x3a\x1a\xa8\xee\xc0\x91\x8b\x18\x8b\x4f\xe9\x82\xa6\x1c\x29\xe2\xaf\xaa\x3c\x23\xdc\x5f\x16\x52\x6b\xbe\x08\xe6\x10\x7d\x41\x20\x6f\x68\x22\x88\xb7\x88\xfd\x00\x9a\x59\x95\xa8\x03\xb3\x03\xc0\x1e\x63\x14\x18\x99\x49\xce\x0f\x89\xa3\x62\x7c\x91\x0c\x81\x44\x4a\x50\xb2\x4b\x09\x32\x0f\xc4\x6d\x2f\x70\xcd\x0c\xd0\x8c\x06\x78\x6d\x35\xd0\x32\x22\x22\xa4\xbe\x7c\x58\x95\xc2\x0e\x5d\x4f\xc8\xec\xf3\x0a\x83\x5e\x38\x6a\x1c\xb8\x08\x8d\x55\x7c\x66\x11\x95\x88\x02\x94\x11\x0c\xb2\xef\xa7\x61\xb4\x60\x3f\x55\x67\xf4\xba\xc0\x88\x5d\x80\x87\x58\x2b\xc2\x26\x0c\xd1\xbb\x61\xec\x18\xdc\x37\x0e\x5e\xe0\x2d\xe4\x5c\xa4\x39\x6d\x67\x47\x1c\x97\xf8\xf6\x3b\xfa\xa0\x3f\xd0\x42\x12\x59\xe3\x02\x61\x7d\xa9\x95\x73\xec\x7a\x21\xf7\x44\xa2\x2d\xc1\xb1\x18\x91\xce\x18\x28\x9f\x9b\xa5\x21\x17\xfd\xa6\x9b\x76\xfe\x07\x3f\x29\x61\x6c\xd0\x5e\xe7\xa9\x84\x39\x2f\xb0\x52\x30\xa5\x5f\x60\xda\xed\x03\xd8\x68\x7a\xc7\xdd\xfb\x94\x6f\x8f\x60\x3c\xff\xc0\x56\x02\xdf\x5b\x10\x82\xbc\xbf\x2e\x0e\xb4\x0b\x9f\x8c\x75\xa9\x4a\xe4\x62\x6b\x9f\x09\x69\x50\x5c\x98\x69\x87\xbd\x5a\xca\x7f\xae\x54\xd8\x2f\x8f\xa0\xf5\x05\x17\x7d\xeb\x16\x8e\x0d\x76\x2c\x51\x74\xc4\x36\x4f\x4c\x80\xee\x98\x27\x66\xdb\x61\xbd\xe6\x3f\x8e\xba\xfa\x03\x2e\xf7\x5c\xe4\xf6\x2b\xf4\x34\x76\xd4\xf6\x91\x91\xb5\xf9\x84\x85\xb6\x47\x67\x41\x7e\x90\x2a\xc6\x14\xdc\xff\x10\x2b\x6c\x8b\x8e\xc0\x48\x0c\x9d\x2e\x7c\x5f\xc3\x78\xcd\xcb\x99\xdd\xc0\x22\xde\x80\x17\xb5\xa8\x55\x71\xb7\x0b\x15\x39\xa4\x54\xe2\xf9\xfa\x82\x08\xdc\x53\xaa\x2e\xae\x2c\x5c\x4d\x07\x5b\xeb\x8b\xc2\x2d\x55\x7b\xc9\x4b\x1c\x06\x36\x92\x9e\x48\xa9\xf5\xfd\x10\x95\xc1\x64\x86\xdf\x40\xbc\x0a\x93\x01\x2a\x65\x1c\x46\x5c\x6d\x1f\xc5\xa2\x35\x07\xc7\xd7\x28\x21\x43\x53\x01\x0f\x5f\x2d\x33\x69\xd4\x2f\x75\x55\x9a\xdc\x0a\xe2\xee\xe1\xa1\x01\xf3\x70\x6e\x97\x7f\x7e\x1a\xa2\xe3\x7e\x93\xb5\x46\xc7\x48\x27\x92\xce\x94\xe1\x3d\xf4\x27\x0c\x93\xe1\x9a\xb6\x8f\x09\x05\x76\x82\x4a\x2b\xd6\xca\xaf\x3f\x3a\x20\x5e\x40\x83\x7c\x73\x0b\x5b\xf0\xaf\x6e\x53\xa2\x7c\x3c\x29\x59\x41\xa0\x8d\x27\x0f\x82\xbb\x0b\x6e\x8e\x0c\x2e\xbf\xb2\xbd\x05\x86\x8a\x0e\x41\x7b\x2d\x1b\x4e\x6b\x80\x3e\xd1\x13\x0f\x99\x34\xea\x88\x83\x90\xb8\x2a\xf2\x42\x25\xf7\x02\x70\x61\x79\x1c\xf1\xb1\xb5\x5e\x74\xbb\x8f\x43\x01\x52\x99\x4a\xba\xfc\x88\x13\x95\xf2\x9b\x5a\x5c\xaa\xe9\xca\xb0\x56\x63\x13\x98\xc6\x89\x34\x26\x15\xbc\xda\xe3\x71\x76\x23\xe8\xe8\xc8\x59\xb1\x07\x33\xe1\x6b\x0a\x17\x1e\xbe\x25\xbb\x27\xb6\xb7\x37\xc2\x6d\xda\x6a\x06\x63\xd6\x24\xf7\x75\xb2\x2b\xd1\x8d\x2f\xcd\x75\x70\x15\x16\x3e\x6e\xd0\x13\x6c\xbd\x1e\x3d\x80\x60\x17\x84\xc5\x33\xb8\x2b\xea\xde\x21\x07\xc3\xd6\xd7\x13\xa5\xbf\xb2\xb4\x5b\xd6\x34\x2f\x33\x3c\xa8\x3a\x72\x0b\xf0\xb2\x65\xf9\x34\x40\x75\x5e\xf8\xa7\x15\x80\xcc\xa3\x47\x17\xa8\x44\x5f\x8c\xba\x01\xa9\x6d\x35\x57\x21\xc1\x3b\x14\x6b\x27\x8e\xe8\x94\xc1\x0a\xc5\xfd\xf5\xce\x04\xd7\x63\x76\x18\xba\xb6\xfc\x56\xf8\x52\x03\x6f\x15\x65\xb8\x87\x87\x6f\x36\x2c\xeb\x2a\x55\x5a\x47\x2b\xcd\xca\x51\xe1\x72\xf3\xa6\xd1\x76\xcd\xf8\x47\x32\xd6\x96\x15\x5f\xdc\x60\x5c\x3f\x8c\x80\x57\x69\xf1\xa3\x78\xec\x22\xa4\xf2\x55\x11\xcf\xe7\xe0\x22\x57\x97\xbf\xd4\xd5\x02\xe3\xec\xa1\x3a\x35\xcc\xf9\x58\xe1\x91\x22\x58\xa8\x5d\x66\xa8\x91\x84\x63\xcf\x86\x68\xb3\x78\x6b\x8f\xa5\x9e\xbc\x44\x0b\xd5\x87\x5d\x09\x89\x98\xd3\xf9\xaa\x31\x0c\x26\x30\xad\xea\x05\xc8\xa0\x5e\x5e\xef\xf7\x69\x0c\x41\x06\xbe\x50\x74\x09\xc0\x0f\xd9\x91\xec\x4f\xab\xd4\x1e\xfe\x27\x2b\x23\xb2\xaa\x7c\x60\x70\x8e\xe3\x43\xc9\x40\xfc\x66\xe3\xcc\xfb\x50\x0e\xfc\x1e\x1b\xd4\x60\x71\xa9\xb8\x16\x17\xb9\xce\x27\x45\x78\x24\x68\xce\x63\x34\x85\x4c\x19\x47\xc1\x93\xce\x7c\xcf\x1b\x2c\x77\xb7\x2a\xf8\x9a\x13\x8f\x5c\x81\xbe\x26\x71\xd2\xb5\x65\xfa\x4e\x43\x1d\x50\x0a\x55\x77\x37\x9d\xfc\x93\x28\x87\x91\x20\xa5\x04\x1f\xd2\x71\x39\x8c\x51\x32\xf8\x82\x16\x94\x3f\x15\xb2\x3c\xc7\x6e\xb4\x6d\x16\xe1\xb3\x7a\xf7\x18\xb8\xaa\x8a\x24\xb0\xf9\x92\xd9\x47\x90\x33\xdd\x45\x3b\x94\x69\xdd\x73\x36\xa2\xba\xe6\x7d\xde\x86\x57\xc3\xba\x02\x19\xd1\xc4\x96\x69\x9a\x4d\xb8\x8c\xd0\x6c\x82\xec\xa8\x9a\x77\xfd\x4d\x7f\x5e\x32\x42\x18\x6f\xb0\x20\xb0\x4e\x61\x90\x39\xd8\x88\x43\x5b\x36\xd7\x71\xf8\x84\xfd\xdd\x34\x88\x4c\xc3\x81\x8a\xb0\xcd\x37\x78\x04\x7f\xb7\xb7\x43\xb7\x3f\x5b\x83\xaa\x82\xbc\xb2\xa9\x43\x64\xb3\x10\xa8\xaa\x71\x79\xb0\xd9\x03\x1e\x20\x92\x08\x1b\x2f\x0c\x04\xa4\xf6\x22\x9a\xdb\xe8\x94\x07\xd0\xec\x96\x65\xe6\x75\x75\x89\x74\x7e\x5c\xd7\x55\x9d\x74\xd0\xee\x0e\xa4\x52\x6c\x0d\xcd\xaa\x40\x74\x9d\xca\xbc\x60\xf3\xa3\xec\x02\x83\x1b\x32\xf8\x4e\xd7\x9a\x36\xe3\x68\x35\x6c\x03\x10\x49\xb2\x91\x0d\x88\x25\x32\x04\x08\xd1\xe4\xe8\xd5\xf6\x08\x13\x10\xe3\x9a\xa9\x00\x64\x31\x33\x40\x76\x47\x97\x16\x3e\x2c\x31\x86\xba\x20\x06\xd9\xa2\x57\x04\x21\x7a\x67\x47\xfc\x66\xc8\x7b\x17\xa6\x70\xa6\x0c\xf6\xe0\xc8\xe0\x09\x8c\x37\x34\x4c\x0a\x5c\xb0\x8c\x3c\xa7\x34\xe4\x30\x74\x47\x40\xfc\xb5\x27\xa4\xb6\xe6\x3a\xad\xfb\x38\xb3\x9b\x40\x03\xc5\x72\x3f\xef\x29\x45\xbe\x7c\x5f\x69\xda\xdb\x82\xbb\xea\xb6\x67\x39\x97\x15\x29\xfa\xba\xbd\xaf\x49\xb5\xb6\xe4\xfa\x6e\xbe\x91\xc7\xc5\x6a\x84\x8d\x8c\xae\xc7\x2a\x1a\x6b\xc9\xed\x3a\x6f\x55\x37\x63\xf1\xe9\x2c\xe4\x55\xb6\x08\x3e\x8c\xe7\x09\xf5\x39\xe2\x98\xce\xbb\xf4\x68\x5f\x0b\x3f\xbb\x8b\x49\x09\xb7\x3a\xbe\x83\xeb\xb5\xe2\xeb\x43\x20\x7d\x6c\x2c\xb1\x6b\x7c\xf2\xb9\x45\x85\x18\x83\xee\xae\x09\x82\xb6\xc3\x87\x76\x48\x48\x8a\xd9\x00\x3f\x42\x33\x72\x51\xbe\x32\xb5\x4c\x71\xfa\x59\x0e\x66\x27\xf7\x6a\x65\x96\x2b\x13\x5f\xa7\x39\x1b\xc5\x83\x83\xe6\x0b\x7b\x74\x2c\xa3\xe5\x61\x23\x46\x25\x87\xfb\x7f\xbf\x39\xd5\xdb\x5d\x74\x8c\x4c\x26\x32\x3d\x9f\x61\xe8\xcb\x7e\xf7\x30\x39\x3d\xd9\xee\xee\x04\x86\x55\x0e\x48\xd3\x90\x2a\x58\x77\xde\x2d\xca\x95\xa6\x9b\xa5\x2e\x07\x6d\xe1\x02\x8d\x5c\xb1\xed\xcb\x07\x91\xb0\xbc\xdc\x45\x1e\xc7\xbe\xcc\xe8\x4c\x1c\x8a\x0e\x1f\x42\xf1\x60\xed\x4e\x9e\x1d\x87\x31\x0d\x90\xb5\x21\x65\x77\x14\x77\x0c\x88\x73\x03\xd8\xbb\x67\xcd\xe3\xc9\x3d\x24\x8c\x0f\x6a\x76\x7c\xb5\x4c\x3a\x3c\x68\xdd\x4e\x84\xf5\xee\x19\x70\xca\xe4\x70\xff\x07\xcc\xeb\x76\xc9\x9e\x21\x6c\xa5\xbb\xa1\xf1\xed\x31\x6a\x07\xb6\xd7\x71\xb8\x8d\xae\xaa\xaf\x97\xee\x99\xea\x55\x19\xc4\xc7\x62\x87\x10\x32\xe0\x22\x19\xcc\x3e\xf2\x07\xfb\x36\xfa\x98\x0a\x52\x4d\xa6\x73\x22\xc6\xd0\xbd\x20\xd0\x83\xd1\xba\x6f\xaa\xbe\x7a\x1b\x35\x7f\xde\xc6\xa1\x90\xc6\xa8\x92\x9e\x9f\xe5\xbd\x2a\x4c\xb3\xa6\x0d\x51\x31\xef\x20\xd4\xa8\x1e\x30\x9e\x28\xc7\x4a\x04\xe9\xaa\x76\xe6\x5c\x3d\xfa\x45\x5c\x80\x59\xfe\xbf\x2b\xc5\x79\xe6\x1c\xca\x1f\x41\x0d\x99\xa1\x49\x2c\x2d\xa9\xfb\xf7\xc5\x27\x68\xf8\xac\x55\xa2\x6b\x59\xbe\x5f\x17\xf2\x62\xb5\xcf\x57\x45\xbe\xb5\xcd\xff\x4e\xbd\x44\xf0\x28\x5a\x3c\xec\xf6\xfd\x36\x0b\x32\x9a\xe8\xaf\xcb\xd7\xb6\x7d\xaf\x2e\x8c\x64\xdf\x40\x73\xe2\xb2\xa3\x59\x5b\xd3\xcc\xd9\xfc\x96\x21\xfc\x26\x76\x6f\xe5\xb4\x35\x25\x5a\x18\x5d\x2f\x10\xe5\x2c\xb7\x59\xbc\x25\x73\x72\x2b\xaa\x59\x93\x72\x5b\x05\xf3\xbb\xa8\x3b\x25\x04\x3b\x8b\x3e\x2c\xdf\x84\x7e\x1f\x32\x80\x6d\x5e\xd5\x94\xba\x2f\xb8\x5a\x33\xea\xe0\xbd\x68\x16\x6e\x6e\x3c\x3d\xdf\x1b\x37\xf5\xcc\x4c\x04\x8e\xfe\x9f\x37\xc5\x3c\xa7\x47\x0c\x96\x88\x53\xcf\x86\x65\x7b\xbe\xc4\xb6\x78\x3c\x1c\x86\x71\x73\x1d\x7c\xbf\xb6\x9a\xfa\xdc\x60\xcd\x79\xfd\xe5\xed\x37\x1c\x2a\xee\xe8\x03\x92\x0e\xf5\x60\x67\x47\xfc\xae\x26\xe7\xb9\x11\x5a\xa9\x05\x9a\xa9\xd6\x6a\xba\xd2\x8a\xbe\x95\x18\x13\x16\x96\x19\x46\xac\xa3\xd7\x25\xd1\x84\xb9\x14\x8f\xf7\x1e\x3d\x7a\x64\x81\xf8\x17\xae\x48\xb1\x6e\xbd\xbc\xf3\x52\xa6\xe9\xaa\x06\x99\x90\x3d\x0c\xc9\xd9\x2e\x27\x4f\x7e\x17\x5f\xdb\xdd\x8c\x49\xdc\x15\x71\xa0\x10\xa8\x1e\x34\x74\x02\xcd\x41\x46\xd9\xb0\x75\x88\xa7\x89\xcf\x73\x23\x1b\x4c\x57\x70\xfc\xe2\x17\x34\xb5\x7f\x46\xde\x54\xac\x5e\xc1\xfb\x2a\x7c\xb2\xdc\xe3\x48\x3b\xc0\x40\x7c\xac\xc9\x2d\x00\x63\x23\xa2\xe7\x0c\x55\xe6\x3b\x2e\xaf\xa8\xe8\x09\x5d\xb9\x8b\xac\x54\x96\x21\x6c\x09\xb5\xf1\x12\x8b\x2a\xf0\x63\x24\xd2\xe0\x61\x40\xe3\x73\x23\x76\x38\x1d\x7a\x58\x93\x6f\xec\xf4\x42\x16\x85\xd2\x46\x04\x36\x4e\xf6\xde\xcf\xa8\x92\x02\x10\x95\x4a\xf1\x03\xa1\x4a\x6a\xe3\xc4\x59\xc2\x1d\xbb\x23\xd2\xaa\xae\x55\x6a\x8a\xeb\xc6\x3b\xa1\x1b\x15\x56\xfe\x84\x9f\x97\xd4\x76\x0f\xbe\x72\xd8\xc6\xf8\xe5\x50\x12\x8e\x16\xf4\x08\x01\xd4\x16\x87\xa2\x8f\xde\xe2\xa2\x2f\x42\x55\xa0\x3f\xa1\x8a\x43\x31\x02\x32\xd8\x87\x3f\x51\x74\x28\x4d\x41\xe1\xc7\xa2\x3c\xb0\xdf\x5f\x00\xf4\x03\xd1\xef\xd3\xef\x88\x61\x53\x89\xe7\xe3\xe0\x95\x52\x7f\x4e\xf3\xea\xb5\x35\x1f\xf8\x58\xd9\x46\x50\xfa\x62\xd4\xed\xb9\xc8\xd2\x0d\x7d\x94\x97\x7a\x31\xff\xfe\x7d\x91\xdc\xb3\xdd\x05\x69\x9c\x40\x6c\xdb\xfc\x0d\xb7\xf8\xe2\x90\xe0\x07\x66\x13\xfb\x62\xd8\xb5\x1d\x08\x15\x4b\xeb\xef\xa8\x73\x1b\xbe\x2f\x34\x31\xfc\xde\xad\xb7\x4c\x0b\x4e\x1f\x64\xdc\xb6\xbe\x4d\x07\x16\x4c\x34\xa9\xe1\x6b\xdd\x6e\xca\xc5\x0b\xd7\x84\x67\x8b\xae\x42\x30\x6c\x3e\x8b\x2b\x8e\x5d\xc5\x36\x4f\x7c\x06\xd1\x50\x16\xc0\x9a\x77\x1a\x61\x9a\x18\xbe\x7c\xd8\xa8\x69\xce\xcb\x64\x5d\xcd\xec\x8c\x49\x5a\x55\xcd\xe2\x39\x29\x14\x87\x6d\x41\xcf\x98\x7b\x38\xba\x09\x09\x93\x3b\xcd\xaf\x8c\xe0\x2f\xb6\x92\xa5\x5f\xfd\x7e\x78\x58\xb0\x9a\xde\x88\xce\xf0\xbc\xd9\xa4\x29\xff\xd4\x51\x8e\x77\xf5\x0f\x03\xbe\x69\x30\x42\x3d\xb6\x35\x42\x73\x1c\x95\x09\x89\x54\xb3\x2b\xfa\x7d\x60\x3c\x5a\x5e\xfa\x1a\x68\x40\x3d\x12\xdb\x62\x57\x3c\x17\x0f\x85\x9e\x57\xab\x22\x13\xa9\x53\x28\xfa\x65\x83\xd8\x21\x0d\x7f\xc5\xea\xc4\xde\x11\xc1\x16\x1c\x5b\x8e\xc0\x40\x06\x56\x7a\x76\xec\xb8\xb0\x25\x09\x3c\xe2\x44\x34\xd0\x3e\x2b\x8d\x19\x5d\x2b\xe0\xb4\xd2\xac\x4c\x7d\xf5\xf6\x58\xfc\x7c\xf4\xf1\x48\x9c\x7c\xfc\xf0\xdb\xcb\x8f\xbf\x7d\x38\x66\x25\x6b\xe9\x7c\xb8\x06\xe2\xe3\x5c\x69\x25\xe6\x55\x91\x39\x9f\x9a\x42\x1a\xd6\xc1\xb0\x70\x8f\x6f\xca\x67\x79\x39\x83\xea\xae\x59\x8a\x43\x3e\xad\x44\x42\x0e\x39\xde\xe4\xa1\x4b\xfe\x5e\x0d\xfb\x21\x96\x87\x83\xe7\xf5\x7b\x42\x69\x93\x2f\xa4\x51\x14\xbc\x27\x50\xdb\xb0\xb2\x01\x75\xc3\x82\x7d\xd1\xde\xf8\x9a\x1c\x70\x2d\x80\xe5\x94\x33\xf6\x61\xef\x06\x6c\x71\xd8\x48\x40\x10\x5d\xe0\xae\xa8\xa6\x01\x64\x43\x93\x2d\xbc\xa6\x6b\x5a\x3f\x85\x57\x2f\x6f\x2b\x86\x70\x7b\xb0\x15\xc4\x9e\xa3\xa7\x9d\xb7\xe8\xe5\x43\xfb\x4e\x06\x6e\x37\xa5\x11\xe1\x10\xd4\xba\xeb\x5f\x49\x1f\x88\xa3\xa6\x6f\xbc\xb3\xec\xc0\x58\x93\xe9\x1c\x09\x70\x5a\xd5\x0b\x32\x8a\xc1\xeb\x7b\xde\x7f\x45\xad\xfa\xb6\x73\xa1\x1d\xcb\x03\xcd\x0f\xf1\x07\x3b\x1a\xe9\xc8\xdd\xab\xfb\xee\x28\xf6\xb5\x59\x71\x0c\xd3\xcf\x4a\x70\xa1\x66\x57\x6b\x70\x9d\x16\x5c\x52\xb8\xcb\xb4\xf8\x0a\xae\x71\xf9\xa6\x5b\x4b\x52\xd0\xe2\x20\xc6\x43\x14\xca\xd8\x95\xa7\xd0\xad\x21\x85\xd8\xb0\x27\xeb\xb4\x43\xfd\x6e\xd0\x0e\xba\x17\x6a\x1b\x45\xea\xeb\xd4\x43\x37\x3b\xfb\xb8\x88\x31\x48\x9a\x0e\x42\x59\x05\x2f\xcc\x03\xca\x7e\xcc\x83\xca\x3d\xdf\x9c\x8f\x3d\xfa\x33\x76\xc3\xca\x51\x6b\xaf\x16\x08\x53\x2b\x72\xa9\xcb\x8d\xb6\x64\x14\x4c\x6e\x5a\x28\x59\xfe\xb6\x74\xb3\x1b\x4c\x1d\x85\x23\xf1\x87\xa0\x4d\x03\x66\xdf\xf6\x2f\x2f\x54\x6d\xfc\xa5\x89\x66\xd2\x27\x13\x2c\x36\xdd\x4a\x54\x8e\x8f\xbf\xd2\x0e\x8a\x91\x07\xd8\xbb\x0a\x03\xac\x95\x86\x9f\xef\xa8\x80\xe1\xd4\xec\xf0\xc5\x33\x8f\xec\xe5\xe5\xc9\x09\x25\x0c\xc8\x05\x35\xb7\xa4\xee\x82\xa0\x62\xe8\x68\xe0\xa7\xda\x5d\xd6\xf4\x2f\xf3\xcc\xc2\xe1\xa8\x44\xf0\xfd\x63\x85\x07\xaf\x97\x18\xb9\xdb\x47\xbe\x58\xcb\xfb\x3d\x37\xf3\x37\xa4\x23\x85\x32\x81\xdf\xa0\x51\xf5\xb2\x66\xf5\x2c\x8a\xcc\x09\x2b\xcd\x58\x30\x08\x2c\x04\x68\x54\x6e\x6e\xc4\xce\xdf\x4f\xf5\x5f\x9c\x4b\x3c\xca\xd9\x6d\x76\xcd\x64\x5f\x4e\x98\xb5\x9e\xed\x0f\xef\x40\x74\x7f\x3d\x2f\xb8\x40\x83\x9f\x9f\xb0\xc0\x99\xb8\xb9\x21\xa3\xfc\x28\x91\x4f\x4e\x03\x7e\x4c\x23\xd9\x39\x3d\xd9\xde\x99\xf5\x44\x27\x5d\xf4\x7f\xb8\xdf\xe9\xda\x39\xff\xc0\xc7\x1d\x0e\x7f\x5b\xab\x65\xad\xb4\x73\x1a\xa8\xc2\x37\x69\x02\xb6\x05\xf3\x83\x0f\x4f\x50\x44\x90\xa5\x90\xe2\x01\x12\xef\x42\x2e\x1f\x58\x31\xdc\x1b\x18\x59\xe8\x74\x9e\x62\x4f\x7c\x6e\x08\x85\xf9\xa5\x4a\xf3\x69\x9e\xe2\x59\xcd\xa4\x73\x45\x4f\xd2\x20\x8f\x42\xba\xd7\x2e\xea\x08\xba\x1f\xe2\xa1\x0a\x68\x0c\x9f\xa8\xb6\xe1\x7b\x1d\xad\xd2\x36\x67\x69\x51\x47\xcd\x93\x49\x23\xe0\xd9\xf3\x2e\xff\x01\x83\x9d\x54\x2b\xb3\x46\x70\x36\x86\x27\x50\xb2\x32\x0e\x0d\x6c\xdc\x91\x12\x8e\x07\x6a\x11\x88\xef\xbb\xeb\xde\xbf\xe5\xea\x32\x0c\x62\x28\x96\x12\xdf\xf3\xa0\x80\x70\xa4\xf0\x22\x24\x15\xc5\x0d\x42\x83\x45\xba\xbd\x7c\x30\x41\xa6\x67\xc7\x94\x60\xe4\x9a\xa3\x80\x82\x0c\xc4\x27\x59\x53\x89\x89\x12\x72\x52\xe0\x29\x6e\xa6\xb8\x13\x14\xd2\x7f\xc2\x91\x67\xa8\x3a\x9c\x77\x64\x39\x2b\xf8\x5d\xde\xdc\x88\x24\x2f\xed\x49\xf5\xe5\x5c\xd6\xce\xa4\xd0\xee\x60\x18\x46\xe8\xbd\x8b\x90\x43\x2b\x9f\x3e\x2f\xa9\xf9\x43\xd1\x89\x7a\xb5\x2f\x06\xa3\xe5\x55\x87\x2f\x92\x2d\xab\xc5\x21\x42\x16\xfe\x65\x59\xab\x7d\x86\xba\xac\x55\xa7\x27\x3e\x71\x63\x67\x3d\xd1\xf1\x81\x97\xfb\xd0\x8b\x8e\xbd\x8a\x28\xcd\xbe\xfd\x12\x5a\x0e\x5a\xa5\x44\x55\xec\xe3\x7b\x93\x95\xc6\xbf\xe9\x62\x5f\xa4\x8b\x96\x82\xa6\x96\x79\x91\x97\x33\xf4\x36\xdb\x27\xc5\x54\x4b\x31\x8c\x74\x85\x65\xf4\x3e\xc6\x85\xbc\xb9\xe1\xee\x76\x39\x82\xf0\x4c\x99\x77\xb8\xae\x93\x0e\xe0\xf9\x7b\x2d\x97\x4b\x74\x30\xb9\x65\x06\x0c\x53\x3f\xe0\x91\x25\xdb\x4b\x9a\x82\x57\x46\xa1\x7a\x80\x05\x50\x25\x8a\x6a\x06\x42\x40\xf8\xc4\xc0\x42\x9e\x2b\x7a\xd7\x25\xd7\xfc\x74\x35\xdb\xa9\xb6\x5e\x0b\x8e\x69\xeb\xc4\x16\x6b\xf2\x17\x8c\x7e\x5b\xb3\x22\x38\x55\x45\xf7\x87\x81\x08\x9f\x37\x2b\x7d\xca\x41\xa8\x3f\x13\xfb\x3e\x99\x76\x31\xbb\x15\x47\xcf\x22\xf1\xf4\xb2\x46\x6e\x18\xa5\xc9\x2c\xb3\x77\x78\x98\x84\x3f\xac\x78\x4e\x83\x88\xce\x0d\x97\x79\xad\x5c\x84\xbc\xb9\x4c\xcf\x35\x3d\x7b\xe3\xcc\x76\xfb\xa4\xa0\x21\x6a\xa6\xd7\xa7\xfc\x93\x3e\xa6\x12\x99\x92\x05\x69\x0a\x26\x75\x75\xa9\x55\x2d\xfe\xb9\xca\xeb\x73\x56\xa9\x00\x1f\x6f\x46\x3a\xf4\x96\x2f\x03\x17\x75\x0a\x4e\x00\xb6\x8f\x8d\xa7\x19\xf8\xd8\xee\xdf\x4d\x08\xce\xa3\x77\xf6\x96\x1b\x4d\x9a\x85\x78\x34\xad\xee\xce\x66\x53\xa0\x79\x7e\x90\x16\x03\x59\x17\x45\x75\x69\xc5\xfe\xdf\xc8\xea\x61\xec\x26\x86\x2d\xd4\x6c\x4f\xd4\x15\xc6\xf5\x2b\xde\x50\x8f\xf0\x4c\x13\x5a\xa1\xd1\x68\x94\x5a\x91\x96\xc3\xf2\x2c\xea\x22\xa3\xd0\xdb\x68\x44\xd7\x82\x4a\x10\xf6\xb3\xcd\xde\x2a\x50\x70\xae\x65\x5b\x73\xbf\x30\xca\xbd\x1d\x05\x6b\x09\x38\x16\x9f\xab\xbc\xb4\x0a\xda\x8d\x20\x7a\x6b\x15\x6f\x6e\x50\x55\x7e\x7b\x27\x02\xee\x7a\xa7\x0d\x05\x6f\x75\xf8\x35\x24\x5c\xc9\x5e\x4b\xe5\x08\x11\xff\x66\x15\x5b\xf1\xe2\xf3\x68\x52\xa3\xf0\x45\x2f\x87\x62\xe0\xb2\x5c\x0b\xde\x27\xf1\x66\xc4\x6f\x7d\x9e\x9c\x03\x7a\x09\x5f\x4a\x5e\x27\x4a\x28\x80\xf7\x90\xf4\x28\x8c\x4d\x66\x86\x3a\x90\xcb\xa5\x2a\x33\x8c\x90\x96\xac\x45\x9d\x6d\x59\x23\xd1\xc3\xc6\x27\xa6\x22\x53\x64\x7c\x00\x81\xc2\x3f\x90\xe8\xc3\x9b\xb1\x0d\x79\x6f\x4d\x92\x43\x86\xe7\xb5\xe5\x84\xb9\x7f\x61\xa6\xc1\x42\x79\x4d\x04\x1d\xda\x54\x30\x75\x02\x61\x9b\xea\xff\x20\x69\x83\x4c\x51\xdb\xdb\x73\x30\x56\x7b\x97\x86\x2f\x68\xbe\xbb\x19\x20\x62\xb0\x01\x24\xe7\x85\x40\xed\xbb\x1e\xb7\xf6\x59\x6d\x1b\xda\x53\xeb\x95\x12\xff\xb1\xfb\x6c\x68\xcf\x1c\x76\x0b\x0a\xb8\xb7\x44\xdb\xff\xe6\x84\xa2\xdf\x29\x4c\xa7\x1b\xdf\x9d\xd3\x49\xba\xe8\x1b\x39\x39\x9d\xb0\xf0\x0a\x65\xc8\x6c\x92\xae\x0f\x10\x5d\x48\xfb\xe7\x4a\xd5\xd7\x14\xb8\xb1\x42\xa5\xde\x7a\x6a\xd2\x19\x10\xb4\x4e\x1b\x0b\xb4\x58\x38\xe0\x62\x8c\xc2\xa7\x91\x93\xfe\x65\x2d\x97\x7d\x60\xee\xc1\x33\xea\xc1\x73\x01\x1d\x62\xf1\xc0\x79\x3a\xf4\x50\x40\x63\xf7\x71\x1b\x8d\x0f\xcc\x1a\x24\x05\xfd\xd9\xfa\xb6\x95\xdc\x5a\xf9\xce\x35\x1c\xc4\xed\xa3\x42\xcd\xe8\x6f\x72\x55\x98\x13\x10\x6b\x65\x01\x22\xd5\x7b\x10\xc2\xe7\x15\x94\x8c\xbc\xb7\x0d\xef\x12\x6b\xe1\x87\x77\x77\x3b\x24\xac\xb3\x46\x20\x9d\x4b\x0a\x21\x4a\x17\xac\x26\x37\x74\x37\x74\x7a\xba\xea\x88\x6d\x91\xce\xc3\x57\xc7\x87\xdd\x81\xa9\xe8\x56\x32\x19\x3d\xf1\xb5\xe2\xc0\x8e\xb2\xce\x65\xbf\x90\x13\x55\x74\x7a\x21\xd8\x30\xbc\x23\xee\xd2\x74\x52\xf8\x29\x7c\x68\xae\xe5\xac\x30\xa5\xa3\x20\x31\x2f\x43\x1b\x1b\x32\x82\x2c\xa3\x50\xdb\x5b\xfc\x20\x9d\x3d\x28\x0c\xc4\x47\x7c\x2c\x33\x95\x75\x78\xf3\xa2\x69\xd4\x82\xdb\x15\xfb\x26\xae\x8a\xb4\xf4\x7e\x63\x4d\xdc\x7e\x65\x2f\x0b\xf1\x00\xc7\x36\x9c\xf8\x5d\x95\x19\x7f\xc3\x2e\xf6\x44\xaa\xc3\x93\x1d\x69\xf4\xd6\xd4\x9e\xcc\xf2\x3e\x92\x02\xc4\x92\x43\x20\x17\xc2\x09\xce\xff\x62\x45\x8f\x23\x9b\x50\xcc\x44\x87\x2c\xd2\xa0\x50\x48\x5d\xea\x64\xb0\x6a\xad\x75\xb9\xf6\x54\xa3\x7b\x62\xb1\xd2\x06\xe4\xca\xe0\x02\x35\x90\xcc\xdd\xc9\x94\xea\x70\x90\x03\xe8\x8c\xe5\x0f\x7e\x39\x16\x62\x7b\xfd\x9a\xd4\x4b\xf8\x9b\xc2\x30\x07\x63\xd0\x6d\xca\x27\x31\x3f\xc4\x8b\xa7\x50\x06\xdc\x0e\x9b\x73\x22\xbc\x97\x13\x36\x85\x5a\x0f\xfa\xec\xa2\x92\xc6\xd2\xe5\x5a\x4f\x22\x06\xbf\xb1\x53\x36\xc6\xeb\x2f\xb5\x9c\x2d\xac\x71\x57\x14\x96\x18\x7f\xdb\xb0\x16\x75\xe8\x2a\x62\x87\x18\xf8\xe0\x2b\x7e\xba\xc7\x9a\x09\xf1\x85\x10\x87\xe1\x82\x52\xea\x4a\xa5\x89\xb7\xee\xe5\x49\x3f\xcf\x97\x4b\x54\x7e\x2f\xc4\xa1\x58\xb0\x71\x4a\x1f\xdb\xde\x0f\x3b\x44\x69\x81\xc4\xc2\x35\x9b\x0e\x39\x14\x5e\xfb\x1b\x66\x2e\x0c\x69\x4c\x33\x63\x21\x06\xce\x2c\x77\xcc\x48\x9b\x8c\x10\xc7\x85\xbf\x32\x67\xd1\x43\x81\x1c\xcb\xa4\xad\xa2\xb9\x32\x61\xc9\xef\xa1\x27\xc6\xba\x07\x3d\xef\xae\x41\x60\x1a\xe7\x42\x6b\xd9\x4c\x38\x71\x76\xe4\x42\xb4\x68\xda\x1e\xb9\xa0\xcb\x76\xea\xbc\xfe\x9e\xc7\xbf\xed\x71\x58\xbc\x3d\x42\x23\x4c\x60\xd0\x66\xed\x15\x6c\x1f\x7e\x28\x58\xfc\x6b\xe6\x22\x46\x4e\x28\xec\xbd\x8f\x52\xd4\x8f\xba\xfa\xa3\x4d\x77\xc0\x2d\x3e\x5f\x9b\x2e\x0d\x1c\xe9\xc4\xd4\x89\x6d\xa3\xdb\xb3\x7b\x73\x27\xa0\x08\x04\xd7\xd8\x34\xea\xaa\x80\x4d\xb9\x13\xb2\xfe\xce\xdd\x55\x82\xa0\xf6\x30\x18\x9b\xa6\xcd\xe2\x62\x27\xc6\x1b\x48\xf9\xb1\xac\xf1\xc1\x77\xff\xbb\x8c\xc6\xf6\x5b\xbb\x1f\xc1\x3b\xc4\xfd\xf6\xd1\x30\x43\x3b\x2f\xf8\xba\xfb\xa8\x6d\xeb\xfd\xd6\x3e\x02\xf0\x8d\x7d\x1c\xc5\x9d\x5b\x47\xbd\x85\x20\x74\xbb\x14\x11\xb7\xf3\x3d\x38\xfd\xbb\x0b\xfd\x87\xd1\xf7\x2c\xf5\x1f\x46\x6d\x8b\xbd\x39\x1e\x5b\xdf\xcf\x0b\x46\x3d\xea\x75\x77\x6b\x6d\x99\xa3\x8f\xba\xbf\x58\x6b\xdd\x90\xc5\x38\xdc\xde\x43\xe9\x29\x66\xc4\x14\xee\xfd\xe1\xae\x8b\xf2\xc7\x3a\x60\x2f\x5d\xe0\x4b\x2e\x2c\x5f\x20\x79\xda\xed\xeb\xe6\xc6\x8b\x19\x6c\xc8\xb6\x2a\x8a\xc8\xb2\x85\x24\xca\xc0\xcc\xca\x02\x45\xbb\x35\x57\x7a\x7b\x1c\xb6\xe7\xad\x7b\x6c\xb3\x6b\xa5\x1d\x3e\xfe\x4e\xbc\x4d\xd4\x0c\x94\x6e\xae\x3a\xc9\x46\xae\x09\x12\x09\xad\x25\xab\x13\x3c\xe9\x6f\x14\x79\xe3\xae\x03\x25\x56\xee\x36\xe6\xa3\xad\xa0\x13\x12\xa2\x38\x77\x6b\x32\x96\x9d\x4a\xb2\x46\x0e\xac\x54\x23\x07\x3a\x7c\x2d\xe4\xde\x8e\x10\x3b\xb1\x64\xe4\xa3\xcd\x5f\x19\x7f\xc7\x0d\xf0\x7f\xb2\x4f\x6f\xc7\x0d\x04\xaf\x15\xe0\x6c\xb5\x99\xe5\x07\x4d\xaf\xe9\xd7\x28\x8a\x8a\xa5\xb3\x23\x93\xe4\x41\xb8\x17\x0a\x0e\x26\x30\xfe\x6e\x88\xc4\xfd\xfb\x7c\x22\x6e\x10\x24\xd0\x8c\x69\xd0\x6c\x8e\xef\xfb\x11\xa5\x06\x87\x31\x6c\xd7\x3e\x59\xe2\x66\x0b\x7b\xb2\x3d\x16\x29\xf1\xda\xb8\xe3\x0e\x9d\xf6\x37\x02\xf0\x28\xf0\x7b\x55\x9f\x5b\xa3\xa5\xb2\xc2\xe8\x38\x4a\x64\xf9\xc2\x06\xf9\x9c\xa8\xbc\x9c\xf1\x1b\x24\xec\x70\x13\x6a\xf6\xf1\xd5\xaf\x7c\x36\xc7\x77\x53\x31\xac\x39\x76\xa7\x4d\xb4\xb7\x3a\x33\xb4\x8f\x71\x8a\xb2\x20\x7a\x91\xbf\xa9\xfd\x77\x0e\x01\xde\x1a\xd0\x1a\xd9\xd1\xdf\x6d\xd1\x11\xe9\xa2\x8f\x2a\xfa\x3e\xa9\xe2\x71\x9b\x68\xa6\x79\xeb\x06\xbe\xec\x8f\xf8\x96\x75\x39\x20\x5b\xad\xa6\x08\xde\x30\xa8\xc6\x93\xff\x2f\x36\x44\x26\xbe\x63\x8e\xea\x60\xf2\xbb\x5d\x6a\x67\x05\xc5\x00\xf1\x8a\x26\xd7\xf6\x70\x61\x11\x59\x12\x1e\x0d\xc9\xa4\x8d\x6e\xc3\xb7\xac\x23\xc2\x45\xf1\x87\xc0\xd0\x1b\xc4\x0d\xa7\x6f\xc8\x1b\x98\xca\x1a\x7b\xa0\x77\x19\x24\xe1\x05\xe6\xf3\xb1\x70\xce\x21\xb1\x44\x15\x4a\x5c\x0e\xc4\x98\xfd\xcd\xe3\xb8\x37\xff\xea\x94\xba\x26\xd6\xa1\x78\x13\x72\xdb\x36\xbb\x7b\x77\x5b\xe1\x73\x0c\x2c\x0f\x3b\x34\xea\x38\x69\x5a\x98\x0a\x11\xdc\x95\x5b\x99\xbb\xd1\x4c\xc3\x2a\x84\xb3\x83\xfd\x2a\x64\x7c\x88\xfa\xcb\xaa\x80\x89\xa7\x1b\x5b\xdf\x1b\x8d\x52\x22\x5d\x07\xf7\x44\x8e\x2f\x23\xfe\x9e\x67\x33\x15\x78\xa1\x5d\xe2\x6f\x31\x16\xf7\xc2\x7c\x0a\xcb\x04\xf5\x06\x54\xe0\x2d\xb9\xa7\xa1\x76\xc9\x42\xf8\x3e\xb9\x1c\x71\xb1\x75\x9d\xf3\x55\xb3\xd1\x40\xba\xb1\xda\xc4\xbc\x5c\xae\xcc\xa0\x54\x2a\xd3\xac\x83\x76\x12\x4c\x68\xce\x76\x8f\x61\x3b\xce\xe6\x7a\x76\xd7\x66\xd2\x38\x19\x59\x65\x26\xed\x7e\x4e\x86\x21\x50\xeb\xc2\x13\x0d\x51\xc7\x8e\xf1\x20\xcf\xc2\x58\xe6\x97\xc1\x50\x8b\xcd\x3d\xd3\xca\xfc\x56\xaa\x2c\x37\x72\x52\xa8\x24\xec\xc5\x5d\x88\xfb\x72\xe1\x7e\x69\xcf\x22\x24\xf2\x6f\x92\x6a\xec\x2b\x76\xc0\x65\xdf\xa1\x23\x80\xf6\xa1\x47\x30\xfa\xba\xf4\xa1\x59\xe9\xee\x96\x6d\x42\xe4\x39\xb0\xed\xd0\xd4\xc7\x5e\xc8\x93\xd9\x04\x51\x37\x5e\xc7\xc8\x14\xed\xea\xa2\x08\xbc\x5f\xb9\x4b\x70\xd6\x1f\x7e\xbf\x45\xbb\x70\x54\xa3\x47\x96\x28\xb2\x28\x58\xe5\x12\x18\xec\xb9\xa0\x1b\xac\xf0\x90\xa5\xe3\xdd\x9e\xab\xa1\x0c\x3d\x3a\xc0\x2f\xcf\xad\xb5\x80\x63\x6d\x3f\x8c\xb6\xc7\xbb\x9b\x2f\x6b\xfc\xd2\x62\x04\x78\x05\x4b\xdb\x3a\x47\x03\xc8\x41\x00\xee\x6d\x36\x1d\xc0\x12\x18\xdf\x62\x5d\x9a\x77\x44\x47\x7c\xce\x2a\x3f\x51\x8b\x8b\xd2\x99\x6d\xda\x2a\x4d\xdc\x73\x49\x1c\x7b\x84\x19\x4c\xa7\xe3\x9d\x7b\xb4\xb6\x31\xa2\xd5\x95\x61\xfb\x23\xac\x02\x83\xc4\x7c\x0c\xbe\x1e\x3b\x5e\x49\x19\x9e\xcb\x59\xfe\x66\x19\xcd\xd6\xda\xae\x84\xaf\x29\x05\xe0\x51\xf7\x01\x5c\x62\x67\x47\xf0\x55\x94\xd5\xec\xd3\x6a\x11\x5a\x19\xa7\x39\x61\x34\x50\x3f\xe2\xf1\xe0\x9f\x27\x21\x2b\xb5\xe2\x65\x8a\x3a\x5a\x96\x8c\x85\xc7\x8c\xb9\xed\x41\xdc\xd7\x57\x25\xc6\x1c\xbf\x0e\xf6\x3f\x0c\x67\xf9\x53\x55\x9d\x03\x3a\x9a\x5f\x99\xb2\xbb\x85\xbe\x63\x67\xfc\x4c\x3b\xe3\x67\xa0\x1f\x20\xb2\x20\xce\xc5\xe7\xe6\x41\x5e\x2f\xb9\x0f\xfa\xd3\xe7\xb3\x1e\x2b\x80\x88\x96\xeb\x68\xab\x5c\xb0\xf7\xe0\x58\x74\x26\x8c\x13\x8b\x7b\xfc\xaa\x3f\xf9\x74\x03\x5f\x0e\x58\x72\x1c\x1d\x24\xee\x11\xb1\xe4\x85\x3f\xd5\x45\x6f\x6a\xb8\x3d\x98\xa1\x42\x92\xa9\x42\x53\x56\x4a\x78\x81\x05\xe0\xcc\x32\xf0\x43\x4c\x78\x51\x71\xae\x1f\xe3\xd9\x8d\x11\xe3\x26\x4d\x15\xc6\x27\x73\x09\x0c\x21\x98\xaf\x17\x94\x19\x03\x11\xf1\x8c\x62\x89\x28\xbb\x41\x39\x8e\x34\x42\x91\xc2\x0f\x77\x70\xa5\xf1\x25\x20\x40\xe7\x0b\x15\x94\x68\xab\x4d\x5e\x68\x44\x84\x49\x8a\x96\x3a\xf0\xb9\x2d\x3a\x07\x3e\xce\x0a\x96\x6b\xa9\x1d\xc8\x06\xeb\x43\xe7\xd0\x71\x65\x02\x9c\xd6\xce\x78\x21\x58\x77\xa4\x0b\xe7\xc7\x0f\x1a\x40\x4e\x3c\x81\xe3\xfb\xf1\x01\xb9\xfb\x9b\x26\x0f\xa9\x67\x27\x62\xbd\x31\x5a\x87\x70\x7a\xf2\xe7\x3f\x5e\x9a\x36\xb3\x65\xd8\x42\x12\xfa\xff\x98\x7b\xf7\xee\x36\x6e\x64\x5f\xf4\x7f\x7d\x0a\x58\x27\xc7\x21\x47\x24\x25\x39\xc9\xd9\xb3\x25\xd3\x5e\x8e\xed\xc4\x5e\xc7\xaf\x1b\x6b\xe2\x64\xfb\x78\xcd\x34\xd9\x90\xd8\x51\xb3\xc1\xdd\xdd\x14\xc5\xd8\xfa\xee\x77\xa1\x1e\x40\x01\x8d\xa6\xe4\x99\x39\x77\xdd\xfc\x31\x63\x35\xf1\x46\xa1\x50\xa8\xc7\xaf\x06\xf7\xfc\x9f\xf6\x21\x8c\x19\xae\x9c\x2c\xf3\x1a\xdd\xd8\x06\xae\xd0\x84\x25\x99\xe5\x50\x3d\x54\x47\xc3\x61\xb0\xfb\x9f\x03\x16\xd0\xac\x44\xef\x09\xc2\x7f\xd4\x47\x75\xf6\xd7\x90\xee\x62\xaa\x83\xf4\x06\x31\x5d\x49\x91\xd5\x2d\x6a\x90\xb0\xe1\x0f\xb8\x79\x2c\xdf\x80\x9b\xc7\x15\x72\xdc\xc3\x7e\x07\xc4\x1f\x61\x60\x0e\x9a\xfb\x08\x25\xd4\xf1\xa7\xee\xb6\x06\xa4\xef\xc8\x25\xa8\x09\x99\x1e\xd8\x1e\x4b\x77\x64\xb4\xfe\xbc\xce\x11\x35\x8a\x29\x3c\xe0\x29\x3c\x50\x0f\x63\x76\x23\xb8\xe0\x37\x0f\x3a\x56\xf2\x1e\x11\xf5\x68\x14\x35\xf3\xf1\x8f\x6f\x1e\x50\x4e\x6a\x3f\xd0\x90\x6c\xa2\x81\x7e\xf9\xa2\x8e\x86\x7e\xb8\xa1\x22\xa9\xa7\x5b\xd1\x86\x60\x7a\x8f\xe1\x86\x3d\x80\x6c\x7d\xb2\xc0\x10\xb5\xed\x09\x07\x20\xff\x5f\x97\x4a\xbb\xeb\x29\xe3\x3f\xa3\x89\x89\x61\x24\x00\xaa\xd2\x85\x69\x7b\x24\xd9\xfb\xe4\x71\x9e\x28\xbd\x2e\x88\x40\x3f\x4a\x00\x26\x72\x6f\x2e\xf7\x32\x5d\xaf\x20\x75\xa3\x73\x26\x2f\x75\x35\x92\x74\xd6\x6f\xf9\x60\xbd\x4a\x7c\xfb\xe1\xb3\xb6\x63\xe8\x09\x66\xe5\x89\xb0\x0b\x75\x05\x3a\x21\x12\xf4\x10\x3e\x0c\xc6\xf8\x38\x7a\xa7\xc1\xc7\x31\xae\xc7\x89\x7c\xe6\xaa\x84\x7b\x91\x78\xec\x71\xeb\xa3\xce\x9b\xde\xdf\x07\x27\x42\x46\xda\xb5\xff\xb1\xc0\x44\x93\xe6\x2e\x84\xdf\x85\xe0\x27\x8f\xc3\x83\x7b\x02\x42\x5b\xf7\x29\xa9\x22\x42\x80\xa5\x98\xc2\xb4\x87\xea\x73\xf7\x41\x29\xd6\xe3\x94\xc4\x43\xfb\xe9\x14\xb7\xdc\xb7\x85\x3f\xe9\xca\x1b\x42\x3a\xd2\x96\xbb\x44\x6f\xc2\xe7\xeb\x2d\xf2\xef\xc1\xc1\x27\xff\x8c\xc5\x96\x76\x09\xc3\x07\x07\x69\x51\x38\x7c\xf3\x92\x17\x67\xe3\x33\xcd\x64\xb5\xcf\x4b\xe3\x6c\xcd\xa0\xf9\x20\x78\x16\x08\xf3\x23\xc4\x96\xbc\xce\x36\xd5\x90\xe2\xba\x5a\x76\x5c\x75\x0f\x40\xf5\x04\x02\x13\xc0\x51\x6a\x99\x6d\x31\xec\xab\x59\x99\x0a\x5a\x5f\xae\xcb\xb6\x58\x95\xe8\x42\x2f\x3d\xf1\x20\x69\x6a\xbb\x30\x00\x8f\x08\x1e\xfd\x95\x9e\xb7\xe8\x89\xea\x4f\x26\x64\xfb\x93\x1e\xd9\xdc\x95\x0f\x6e\x21\x08\xb0\xc0\x0d\xd4\x85\xd6\x95\x02\x69\xb6\x0c\xc0\x67\xd1\x29\xbb\x2d\xaa\x35\x97\xc3\x21\x65\xd5\x96\x2b\xd4\x98\xdd\x19\x1d\x04\xf9\xf9\x55\x54\x6b\x9d\x3b\x47\xaf\xc3\x43\xf5\xc6\x3d\xff\x42\x4f\xc3\xa2\xea\xf8\x17\x3a\x50\x0b\xca\x90\xe1\x3a\x79\xec\x1c\xc8\x18\x49\xdf\x7e\x1e\x5a\xfe\x09\x3f\x10\x6f\x3d\xe6\x06\x28\xf3\xa2\x8c\xec\x90\xa0\x19\x8b\x22\xcf\xe1\xc9\x63\x2b\xbf\x6c\x5e\xc0\x9f\x22\x1c\x88\x9d\xd2\xe1\xe9\xae\x32\x5c\x65\x3b\x03\xb7\x91\x2e\x25\x11\xf9\x16\x61\xbc\x7a\x89\x89\x6b\x43\x1d\x8a\x2d\x0f\x78\x09\xe0\x60\x62\x59\xb6\xe5\x10\xfe\x31\x8a\xe0\x97\xf8\x4a\xb0\x47\xf8\x1d\x98\x5f\x7d\x3e\x26\x84\xc8\xaf\xcd\xf2\x94\x10\x94\xec\x81\xa3\xbc\xaa\x58\x3c\xc8\xbf\x63\x47\x87\xb1\xe1\x8e\x14\x18\xa9\x83\xe3\x9e\xf8\x6f\x7b\x8e\x45\xda\x5a\x6a\xcd\x31\x56\xdb\xd4\xa4\x61\x23\x1f\xc2\x18\x81\x18\x67\x7f\x18\x46\x90\x10\xf6\x57\x46\x4c\x31\x2b\x02\x58\xfd\xb9\x36\xeb\x15\xaf\xbd\x00\x34\x5a\x37\x8b\xb7\x5c\x66\x60\x56\x5e\x87\x1e\xd6\xe4\x79\x85\x5f\x27\x66\x45\x4f\x10\xb3\x1a\xc6\xf6\x77\xb3\x9a\x98\x4d\xd5\x70\xc7\x9d\x91\xf0\x45\x60\x56\xcd\x89\xfa\x68\x56\x9f\x98\xf7\xe6\xba\xcc\xb6\x3a\x7f\x9a\x95\xe5\x2c\x9b\x5f\xda\x5f\x3f\xf5\x68\xc6\xce\x8b\x5a\xbb\x72\x3f\x99\xfa\xed\xaa\x19\x5c\xf8\xf1\x5a\xc2\xc9\xca\xb2\xe1\x26\x01\xaa\x00\xca\x82\x3e\x63\xbe\xae\x1b\x53\x3f\x99\xb7\xc5\x55\xd1\x6e\xd5\x22\xab\xf2\x52\xd7\x8d\x5a\x57\x6d\x51\xaa\xca\x60\x0b\x76\xff\x8c\x3d\x25\xd9\x6a\xa5\x33\x07\x32\xe6\x5a\x9a\x2a\xe8\x71\x12\x0f\x1b\x1f\xeb\x47\x10\xd2\x25\x55\x14\xa8\x6f\x75\xf5\x03\x9d\xab\x57\xd9\xf3\xcf\x1f\x8b\x4f\x98\x7c\x12\xc5\x86\x9b\x50\xd5\x21\x9e\xa9\x17\x6e\x43\x9c\xb0\x29\x95\xb8\x48\x0c\x6e\xb0\x66\x65\x1f\xab\xe2\x6a\x37\xab\x49\xb8\x1c\x2f\x68\x35\xa4\x94\x47\x82\x41\xa7\xac\x9d\xb3\xce\xd5\x43\xd5\xdb\x4a\x80\xb6\xc1\xcd\xf5\x96\xfe\xd8\xd3\xc3\xc1\x81\x58\x8c\x11\xd4\x5f\x7a\x39\x12\xc1\x2c\x68\x8c\xa9\x35\x1e\x46\xb4\x53\x15\x21\xf1\x83\x6a\xe0\xe9\xcc\xf3\x83\x0b\x47\xbb\x9e\x94\x59\xf7\xc4\x64\xe6\xe5\x38\x87\xda\xbe\x83\x2a\x03\x04\xf7\xc4\x89\x92\x7a\x64\x18\x0c\x55\x64\xca\x47\x98\xf6\xd5\x22\xab\x9e\x45\xe4\xe6\xce\xf6\xe1\xa1\x7a\x7b\xde\x5a\xb9\x6e\xa3\xd5\x26\xc3\x40\x02\xf4\xab\x53\x10\xac\x06\xc1\x18\x19\x06\x66\xa8\xcd\x42\xd7\xda\x96\xcc\xd0\xe3\x9a\x42\xc8\x96\x45\x9e\x97\xc0\x67\xc1\x05\x7b\x63\xea\x4b\x89\xaa\x86\xcd\x2e\x34\x9f\x19\x1f\x33\x4e\x60\x20\x90\x1b\x0e\x02\x84\x96\xba\x5d\x98\x9c\x61\x96\x95\xce\x8b\xd6\xd4\x1c\x1c\xb2\x84\xd8\x87\x19\xf4\x9c\x55\xaa\xa8\xe6\xa6\x6a\x8a\xa6\xe5\x88\x10\x0c\xf1\xac\x55\x53\x2c\x57\xe5\x56\x55\xa6\x55\xfa\x7a\xa5\xe7\xad\xbd\xfb\xa8\x03\x9a\x13\x44\x4b\xac\x56\xba\x82\x48\x10\x9c\xef\xab\xac\xd5\x35\x85\x10\x6d\x16\x1a\x8a\x03\x50\x2e\xcc\xd6\x36\xc1\x67\x1e\x9d\xd4\x9a\xf9\x42\xe7\xeb\x52\x37\xe4\xa4\xb6\xa4\x80\x0a\x7d\xad\xe7\x6b\x7b\xe1\x43\x30\x3c\x78\xaf\x65\x4d\xeb\xb7\xce\x6e\x55\x33\x52\x76\x5e\xc5\xb9\x65\x1c\x76\xf6\xee\xc7\xa2\x51\x99\x25\x63\x3d\xc2\xfa\x99\x6a\x8b\xa5\x36\xeb\x16\x08\x45\x5e\x52\x62\xd4\x03\xbd\x2c\x5a\x08\x9f\x07\x9d\xd1\xe1\x5f\x46\xea\x2a\x2b\xd7\xba\x99\x4c\x26\x7f\x39\x0c\xae\x2c\x74\x4e\xe7\xb3\x13\x56\x74\x19\xeb\xb3\x9a\xad\x3b\x09\x0f\xb7\xac\xbe\xf8\x9a\xd4\xb7\xf6\x6a\x6e\xda\x9d\xf7\x84\x2d\xd0\x61\xfa\x1d\x16\x19\x26\x24\x4d\xd3\x75\xdc\x62\xb2\x50\x7c\xf7\xec\x2c\xec\xfd\xe9\x1b\xdd\x9e\xe1\x56\x0c\xec\x56\xbc\x95\xc5\x47\xa8\x15\xbc\xe9\x05\x8d\x2e\x94\x1c\x1a\x5e\x83\xc9\x88\xd1\xac\xae\x2d\x17\xcf\x56\xab\x72\x4b\x9c\xcb\x2e\xf8\xf0\x14\x01\x14\x23\xb4\x5d\x61\x93\xf3\x7b\x66\x5f\xdc\x64\x2c\x46\x8c\xdd\x42\x0d\x4f\x3b\x37\x61\x30\x7e\x91\x01\x9c\x6f\xbf\x1d\xab\xb7\x9b\xa7\xa4\x87\x47\xcd\x06\x43\x54\x9f\xf9\xf3\xc7\xe2\xd3\xc0\x07\x37\x7e\x00\xc2\xaf\x54\xd6\xc0\xe9\x75\x51\x64\x14\xdb\x6d\xcf\x1f\xc5\x0f\xc2\x71\xc9\x73\x10\xf8\x39\x98\x15\x9c\x7e\xa9\x24\x85\x0b\x62\x5c\x25\x67\x88\x2e\xf5\x95\xe5\x48\x52\xe8\xc7\x20\x58\x08\xac\x7c\xfb\xda\xb6\xbd\x9e\xb7\xeb\x5a\x27\xc3\x61\x7f\x32\x35\xbe\xd6\x9a\x20\x5c\x8b\xc4\xf5\x91\xca\x8b\x65\x13\x21\xf1\x89\x9b\xb7\x33\xc2\xc4\x05\x0c\x2f\x5d\x84\xb0\x8a\x8b\xf3\x3d\xcc\xf0\x5a\xa0\x1f\x06\x97\x9d\x30\x7e\xd4\xbe\xc5\xa2\x68\xb2\x08\x42\xca\xd5\xbe\x58\x5b\x0e\x10\xd5\xff\x19\x3e\xee\x9a\x60\x5f\x73\xa0\x24\x8d\x5a\x73\x38\x43\x77\x1a\x10\x6a\xb3\xa3\x26\xd0\x22\x18\x2f\xb9\x1f\x4a\x10\x3e\x45\x8b\xc5\x14\x79\xe3\xc2\xd9\xc9\x14\x8e\x53\xe6\xd8\xb9\x86\xcd\x90\x0d\x86\xa6\x7a\xd0\x31\x44\x9a\x26\x4c\x10\x20\xb0\x99\x56\x9b\x3a\x43\x87\x42\x7b\x09\x40\xcc\x1d\x5c\x55\x90\x25\x9d\x5b\x74\x44\x09\xbf\x61\x8d\x5a\xe5\xc5\x95\x40\x51\x83\x20\x8e\x57\x1c\x03\x46\x6f\x2f\x1f\xf8\xc7\x51\x27\x30\xa1\x8a\xb2\x46\xba\x0f\x52\xb9\x12\x95\xf2\xf9\xfb\xc3\xb0\xbb\x7d\x86\x74\x3f\xc1\xd0\xfd\xe2\x4a\xef\x87\x01\x38\xae\x65\x0a\x02\x06\x83\x82\x93\x32\xfb\x4a\x70\xbc\x28\x9a\x21\x83\xc1\x8c\xe2\x01\xdf\x74\x07\x1c\x18\x31\xc3\xe2\x6e\x70\x09\xd7\xb3\xbf\x0e\xe5\x90\x2a\xc4\x1c\xde\x96\x7a\xf2\x27\x7b\xda\x3e\x48\xe1\x20\xbb\xd2\x01\x3f\xf4\x64\xf6\xa3\xdb\xfb\x44\x2c\x26\x88\xf2\x65\x23\x8f\x25\x87\x0c\x3d\xee\x7e\x62\xb4\xa5\x41\x10\x89\x10\x07\x19\x45\x61\x72\xfc\x33\x11\xc0\xbc\x44\x8d\x5e\xd9\xa0\x12\x37\x8a\x72\xf4\x94\xba\x1f\x04\xc3\xe3\x38\xdc\x8f\xd2\x22\x47\x2d\x26\x4a\x05\x61\x17\xb6\x47\x71\x3e\xd3\x15\x02\x1a\x58\x9a\xab\x98\x04\xc4\x08\x4e\x53\x0d\xc8\xb8\x7c\x71\xb5\xe3\x10\x1d\x27\xdc\xa0\x5b\xf7\x8e\xf3\x12\x12\x55\xd0\xbe\xad\x3c\x41\x3b\x33\xa1\x50\x76\x4e\x87\xed\x6e\x84\x05\xcf\x31\x05\x53\x51\x52\xba\x80\x5b\x4c\xf3\xa9\x89\x0a\xa4\xa4\x0f\x74\xec\xc9\xeb\x29\x0e\xf6\x25\xa9\x76\x53\x94\xa5\xaa\x35\x40\x49\x81\x86\x87\xee\x1e\x0c\x33\x56\xbd\xc1\x79\x20\x1d\xae\x4c\x13\xa3\x0e\x93\xb2\xa0\x3f\xa2\x98\xf2\x23\xab\x9d\xb1\x7f\x0c\x56\x70\x0d\x4e\x18\x0e\x90\x59\xb2\xa0\x52\x40\x56\xef\x8a\x22\x14\x8f\x94\x44\x7c\xab\x6d\x9a\xfe\x92\x8e\x81\xf6\xb3\x5d\xb0\x28\x39\xde\xee\x80\x69\x17\x9f\x9e\xd7\xd9\x46\xdc\xeb\xa8\x0a\x55\x2f\xab\x56\xd7\xd9\xbc\x15\xfe\x50\x82\x56\x00\x27\x43\x5f\xc3\x53\x82\x41\xe1\x67\x7a\x9e\xf1\xc6\x00\x90\xc1\x32\xdb\x12\x52\x22\x43\x68\x22\x58\x55\x75\x5e\xae\x75\x35\x87\x92\x8d\x16\x4d\x24\x25\x88\xc4\xe5\xdc\xc3\x5e\xd0\x67\x8f\xcf\xa5\x08\x89\x6e\x3d\x1c\x4e\x7a\x29\x12\x5c\x3d\xd8\xbd\x8a\xa0\x8d\xe3\xcb\x03\x1a\x9f\xac\x6a\x1d\xde\xa8\x3b\x79\xbe\xab\x13\xf3\xfb\xb8\x05\xd9\xbe\x08\xc2\x6a\x1d\x53\xbc\x97\x60\xad\x5f\xbe\x50\x25\x1f\x53\x75\x2f\x5a\x22\x06\x01\x8d\x18\x81\x8b\x03\x0d\x3a\x09\x0b\xc9\xf8\xae\xa8\x1b\x28\x78\x8b\x10\xd3\xcb\xb9\x7a\xb6\x10\x59\x6b\x47\x35\x75\x9b\xa8\x64\xdb\xbc\xfd\x92\x8a\x37\x1d\x2e\x14\xcb\xd8\x44\x9c\xea\xe7\x5d\x8c\x34\x18\x67\x4f\x33\x3e\xed\x6c\x57\x42\x89\xf7\x85\xbb\x0c\xef\xe9\x20\xbc\x6f\xdf\x3d\x9a\xe4\x4e\x24\xb6\xe7\x71\xea\x63\xcf\x1d\xdb\x89\xbe\x8b\x6f\x59\xb9\xc7\xfd\x3b\x15\x35\xd3\xb3\x63\xb7\x8b\xca\x1d\x71\x0e\xe5\xcf\xa4\xfc\x96\xbe\x49\xa9\x42\x58\x9c\xa4\x58\xc7\x5f\x3b\x12\x00\x16\xf8\xb1\x23\x07\xdc\xb9\xc3\x1f\x83\x7b\xad\xd3\xf5\x8f\xf1\x4d\x9e\x1a\x04\xac\x37\x96\x0f\x8e\xe9\x3f\x73\xb5\x27\xba\xed\x5c\xe7\x12\x09\x02\xcb\x8f\x05\x97\x67\x50\xdb\xe4\xd0\x76\xda\xf3\xdc\x7f\x83\xfd\x52\x9f\xb7\x27\x48\x77\x12\x18\xb6\xb8\xd6\x39\x12\x83\x7a\x0c\x3b\x8f\x9f\xde\x41\xa8\xd6\x18\x3e\x60\x67\x67\xa6\xcd\x4a\x0c\xa2\xb1\x14\xbc\xba\x3e\xb5\x0f\x90\x76\x41\x6d\xee\x2a\xc9\x41\x25\x77\x95\x4c\xd2\xfb\xd8\x95\x8a\x7a\x2b\x24\x58\x3a\x1f\x58\x82\x15\xea\xb0\x0a\x6c\x82\xbc\x35\x58\x90\xf5\xeb\x04\x47\x03\x6c\x4b\xe8\x46\xc4\x18\x57\x21\x59\x80\x73\xc4\x6d\x84\x01\x6a\x57\xe8\x8d\x62\xff\xba\x67\xe3\x2e\xf4\x41\xef\xb3\xfd\xd1\xff\x8d\xbd\xbd\xe3\x8e\xf9\x69\xf8\x2d\xfa\xe6\x38\xdc\x24\x5f\x26\xb1\x2b\xb7\x1d\x3b\xf7\x8e\xf3\xad\x08\x66\x17\x20\x3e\x27\x1b\x10\x6e\x03\x3d\x9b\x09\x1e\x3c\x4c\x14\x5f\xbe\x28\xfe\xf7\xc7\x18\x9c\x05\x1d\x4b\x9b\x7d\x89\x3f\x1d\xf4\x4b\xa6\xc7\xa9\x1c\xab\x7c\x26\xba\x73\x2a\x76\xd7\xd7\xfb\xc9\xd4\x62\x88\x6c\x46\x0d\x0f\x77\x7a\x48\xaa\x4b\x1b\xba\x6c\xf7\xc3\xaa\x01\x8d\x88\x9d\x7f\xa5\xcf\xdb\x1d\x53\x4d\x9d\x74\x41\x13\x34\xfc\x97\x55\xa5\xeb\x88\x7c\x86\x41\xc6\x5b\x3e\x2d\x5e\xbb\x74\x89\xda\xa5\x4b\x4c\xb9\xc5\x3b\x83\x83\x92\x5e\x38\x97\xa1\x81\xa7\xc8\x43\x08\x69\xaa\xf0\xf1\xf2\xd3\xc8\x65\x08\x67\xe4\xb0\x45\xd6\xbc\xdd\x54\xef\x6a\xb3\xd2\x75\xbb\x1d\x14\xf9\xd0\x3b\x84\x37\x1f\x8b\x5c\x1a\x87\xce\x3d\x9f\xe9\x10\x5c\x27\x46\x0c\xf7\xee\x23\xd4\xf9\x94\x3c\x9c\xdd\x0d\xb8\x0b\x5f\x8e\xf7\xa5\xc8\xd3\x3b\x20\xca\xc1\xaa\x8b\x82\x62\xe5\x6f\x12\xd6\xc4\xbb\xa9\xa6\x3a\x57\x7f\x56\x16\x17\x95\x3d\xf1\x81\xf0\xed\xbe\xca\x27\xb1\xdb\x60\x12\xcd\xc3\x6b\xdb\xbf\x55\xd1\xfc\x2c\xfc\x53\x4f\xa1\xc6\x29\xd7\xab\x84\xae\x88\x4a\x42\x0b\xf6\xdf\xef\x8b\x59\xc9\xb8\x38\xe0\xb0\x1b\x09\x68\xd3\xce\x49\x61\xed\x5c\xf7\xe4\x76\xa4\x09\x7c\x63\xb0\x16\xc6\x7b\x7b\xef\x58\xb0\x00\x38\x20\xe3\xf7\x5b\x0a\x3a\xa0\x36\x4b\xd5\xcc\x6b\x48\xdd\xdc\x05\xd4\xf2\x20\x24\x3b\xa5\xb2\xaf\x78\x4e\xc5\x0f\x99\xde\x87\x53\xea\x61\x13\xaa\x5c\xd2\xef\x12\x27\x3a\x45\xcf\x90\x61\xac\x7b\xeb\x79\xae\xa0\x51\xf1\xf6\xf7\xca\x57\x48\xae\x77\xde\xb5\x7e\x1d\x1b\xa4\x39\x2d\x43\x3f\x1a\xc0\x58\x73\x1e\x34\x91\x7b\xc9\x00\x14\x1b\x4b\x5d\x5f\x80\xcf\x0c\x22\x04\xb2\xdb\x0c\xfa\xf0\x03\x18\xa9\xd3\xd9\x02\x88\x44\x59\x92\x2a\x7f\xc9\xda\x5a\x35\xd3\xe8\xe1\x93\x0c\x38\xb8\xf5\xcc\xc6\x25\xf1\x52\xe9\xc0\x8a\x84\x75\x31\xa3\x59\xe7\x1d\x06\x3e\x2f\x92\x63\x0b\xbb\x48\x99\x00\xdc\x12\xe6\xfd\xcf\x77\x18\x09\xa2\x6e\x7d\xea\x0e\x86\x32\xa1\xdf\x44\x9c\x6b\x67\x8b\xdd\x56\x00\xb8\xe9\xc9\xcc\xc8\x44\xf9\x98\xf9\x90\x76\x20\x61\x23\xbc\x93\x60\x1f\x2e\xc7\x48\x6d\x5c\x68\x07\x35\x8c\x2b\xb4\x69\x22\xa3\x91\x97\x13\x39\xa0\x67\xd3\xc0\xfc\xbb\xfa\xef\x8f\x14\xa8\x63\x7f\x49\xa0\xc4\x05\xbc\x4c\xc4\x0c\x4d\xd0\xd2\xfb\xda\xac\x1b\xfd\x1c\x2c\xc6\x76\x8e\xa8\x64\x8e\x43\x7e\x30\x60\x69\x8c\x86\xe5\xfd\x91\xda\xb7\x24\xe0\x40\x9b\x58\xe7\xee\x57\x9b\x02\x75\x46\x2a\x54\x90\xfb\x93\x74\xab\xa8\x58\x39\xb5\x3c\x40\x68\xbb\xed\xb1\x57\x32\x8d\x3f\x83\xed\x72\x2c\xba\x2b\xef\x47\xda\x79\x12\x97\x09\x9f\xb8\xa3\xb0\xd7\x3e\x0d\x03\x35\x26\x2f\x72\xcf\xe6\x55\x60\x94\xe6\x89\xee\xd7\xa0\x90\xdb\x1f\x76\xee\xd0\xaf\x5d\x1d\x47\x7f\x6e\x5b\x5f\xbc\x9f\xd7\x06\x5c\x64\xa1\xfb\xd3\xc4\x45\x1b\xe2\x29\xc9\x9b\xd6\x3b\xb8\xfb\x25\x25\xba\x02\x0c\x05\x10\x0e\xe8\x71\xe0\x71\x06\x84\xad\x01\x02\x51\xa7\xd1\x7b\x00\x85\x87\x0e\x49\x01\x72\xf4\xcf\xc1\xc3\x5f\x51\x4f\x63\x6a\x22\x7e\x41\x50\x21\xd1\x21\x01\x26\xbe\x12\xfd\xc6\x95\x64\xff\x37\xf1\x80\x79\x66\x9b\xb0\x64\x18\xa0\x96\x1a\x6a\xca\xc0\xf2\x43\xfc\x0b\x6f\xa7\x9a\xda\x3d\x27\x13\x53\x67\x21\xe4\xa6\xc9\xda\xcb\xac\xbe\x28\x2a\x9a\x5a\xfa\x49\x45\x23\x4e\x48\x63\xd8\x36\xa1\xe6\xca\x38\x3b\x31\xad\x85\x83\xdd\x8d\xbc\xaa\xc3\xdf\x1d\x0c\xeb\x12\x17\xca\xfe\x94\x9b\xf9\x64\xbe\x64\xe6\x37\x5f\x8a\xca\x47\x3e\x76\x91\xd1\x43\x7d\x10\xe1\xcc\xe4\x5b\xb6\x2e\xa2\xca\x55\xf2\x2f\xd4\xa7\x3a\xcf\xda\xae\x7d\xee\xd4\xaf\x5e\x62\x6b\xdc\x89\x94\xed\xd8\x87\x1c\xae\xe4\x18\xc5\x61\x48\x04\x22\x38\x0a\xbf\x0b\xcc\xf9\x79\xa3\x5b\xb1\xac\xa7\xfb\xe2\x9d\xd1\xd9\xab\xde\xce\x84\x34\x2d\x7a\xa1\x53\x33\x99\x97\x85\xae\x92\xbd\x08\x41\xb1\xd6\xd5\x93\x2a\x7f\x92\xe7\x09\xcc\xb8\xd1\x0e\x76\x8e\x0f\x7a\x31\xa0\x61\xe4\xdd\x18\x6e\xec\x54\x6e\x84\x54\x66\xe3\x52\x20\xf1\x38\x1b\x02\x46\xfb\xd7\x6b\xed\xfd\x78\x38\xb9\xd1\xba\xd1\xe8\x48\x44\x4e\x44\x80\xb8\xad\x32\x6a\x5e\x98\x78\x6d\x99\x97\x15\x71\x36\x9a\xd8\x48\xe9\xc8\x3b\x00\x10\x16\xfe\xde\x66\xb5\x2d\xa5\xad\xf4\x6e\x69\x34\x5a\xc9\x53\x28\x56\x49\xcb\xac\x8c\x75\xad\x80\xcb\x55\x30\xb5\x33\x32\xa4\x03\x94\x41\x35\xb9\xd8\x7d\x63\x0d\xd1\x85\x00\x2f\x2d\xc2\x05\x86\xe7\x94\xec\xcb\x96\xe1\x01\x35\xc5\x9f\x98\xb3\x21\x18\xa6\xdd\xcc\x44\x9a\x05\x07\xc6\xc4\x46\xb1\x77\x6f\xdf\xbf\x3c\x7b\xf9\xf6\x8d\x7a\xfd\xfc\xc9\xfb\xbf\xfd\xf2\xfc\xf5\xf3\x37\x67\xf2\x46\x40\x06\x77\x66\x56\xbc\x5e\x43\xf5\x99\x33\x50\x88\xa7\x32\x44\xae\xd2\xc6\x9d\x99\xd5\x4d\xa7\x85\x5f\x75\xdd\xf6\x37\x01\xa3\x0d\xf6\x5d\x8d\x7b\xdb\xc7\x02\xdd\x2e\x5e\x88\xf6\x39\x4b\x02\x35\x81\xe0\xd4\xef\xa8\x9c\xcc\xa2\x91\x2c\xe0\x78\x0e\x26\x8e\x4b\x1c\x8c\xf4\xa9\x40\x18\xdc\x7d\xd2\x31\xc9\xdc\x8c\x9b\xa2\xca\xcd\x66\x02\x39\xf8\x20\x69\x3f\x45\x14\x3c\xee\xfb\x65\x00\x70\x63\x9a\x73\x18\xbe\x17\xe9\xa6\xf2\xac\xcd\xd4\x54\x7d\x46\x7e\x02\x39\x50\x5e\x56\x04\x62\x2d\x6f\xa4\xe1\x48\x11\x90\x6f\xba\xcc\x2f\x00\x61\xee\x23\xbd\x9b\x37\xd9\x9b\x81\x6d\x1c\xee\x51\xcc\xb7\x27\x3e\x42\x5b\x00\xbd\xd1\xb3\x68\x53\x1c\x99\x38\xef\xf6\xef\x10\x05\x04\x98\xd7\xcf\xd9\x6a\x10\xf0\x6c\xfc\xac\xeb\x9f\xb3\x95\x1a\x4b\xb6\x55\x01\xdb\xfd\x31\xc3\xeb\x5e\x89\x3d\xa7\x12\xf0\x1d\x1b\x13\xd0\xda\xbe\x01\x6e\x39\x60\x7c\xe3\x68\x1c\x41\x97\x33\xea\x6c\xaf\xdb\x19\x5d\x67\x77\xee\xcd\x51\xf2\xee\xee\x02\x46\x47\x58\xa2\x6c\x2c\x05\x19\x69\x43\xa0\xc4\xc4\x38\x29\x59\x03\x00\x8b\x9a\xd5\x1a\xb2\x3e\x38\x1c\x76\x0c\xf7\xa6\x12\xe6\x5c\xcd\x4c\xdb\x9a\xa5\xc2\x93\xe3\xfd\xec\xcb\x2e\x48\x71\x86\xcf\x33\x76\xdb\x9a\xa0\xdb\x57\x29\x40\x91\x31\x89\xc7\x88\xbc\x30\x9d\xfb\xe7\x12\x71\x43\xb3\x4a\x99\x0a\x6c\xad\x9d\xdc\x05\xfe\xdd\x81\x73\x8d\xdf\x79\xb5\x9e\x4b\xc4\x03\xee\x2e\x50\x87\xc9\x81\xf8\x2c\x6f\x0c\xaf\xe5\xea\xdc\xbf\xdf\x21\x0d\xf9\x46\x92\xd6\x6e\xb7\x9c\x5f\xbe\x04\xf5\x3b\xe5\x50\x3a\xbb\x37\x75\x1d\x4a\xa1\x81\x1b\x99\x76\xeb\xf9\x9f\x3e\x7a\x2f\x31\xee\x69\x07\x44\x2a\x4b\x85\xdc\x9d\x50\x12\xd6\x10\x2d\x11\x5b\xa4\xbd\xee\x09\xf8\x08\x10\x1f\x02\x23\xef\x42\x0d\x81\xb6\x04\x28\x4d\x07\x39\x84\xd6\x18\x78\xe0\xbc\xa5\x37\x1d\x6a\x5b\xe8\x03\x44\x3b\x06\xa1\x4f\x10\x9c\x96\xcd\x9a\xc1\x7c\x5d\x4f\x88\xf8\xc6\x50\x8b\xfe\x1a\xaa\x47\x32\x84\xd2\xde\x4d\xb4\x4e\x28\xfa\xcb\x8a\x07\x58\xb1\x35\xab\xa1\x3a\x54\x0f\xd4\x18\xfa\xc5\xbf\x53\x31\x74\x41\x43\x50\xd4\x8d\xc0\x55\x8c\x52\x67\xb1\x2b\xe3\x32\x5b\xa9\xc1\x92\x88\xc0\xe1\x56\xba\x73\xd3\x1a\x91\x4e\x6c\x88\xa0\x98\xe0\x6a\xed\x93\x83\x11\x58\x6e\x37\x92\x85\x80\x1b\x26\x6a\x80\x9a\x17\x8c\x2d\x81\xe3\x23\xf2\x2d\x08\xfd\x0b\x3a\xc6\xd9\xd3\x17\x07\x28\x81\xeb\x33\xe9\xdd\x26\x43\x7f\xc0\x96\xd9\xea\xa7\xda\x2c\x5d\xa4\x4a\xa8\x3e\x0a\x22\x97\x3a\x56\x09\x76\x43\x60\x05\x07\xb1\xb5\xcf\xcb\x6c\x75\xd2\xa5\x4d\x40\xdd\x87\x99\x26\x7e\x84\xef\x37\xa1\xb2\xf4\xab\x74\x2b\xb1\x96\xe6\x63\xf1\x29\x1c\xde\x9d\x06\x88\x94\xba\x73\x90\xb6\xc8\x8d\x8a\x87\xca\x11\xc0\x88\x3d\xd1\x33\xdc\x6f\x8e\xbb\x03\x26\x48\x6e\x31\xee\x6f\x8e\x3f\x0d\x21\xb9\x97\x5d\xf8\xaf\x1a\xfa\x37\xc7\x77\x18\x3c\x14\x9a\x81\xee\xe0\x04\x84\xba\x1b\x56\x2b\xf9\x84\x10\x44\xd9\x0e\x7b\x9d\xa2\xb5\x40\x2b\xd3\xe7\x1d\x84\xf9\xd5\x6d\x23\xa4\xf6\xf3\xe4\xed\x53\x16\x20\x4c\x2c\x34\x6e\x6f\x90\x6f\x1b\xf0\xed\xc7\xf8\x03\x20\xee\x95\xa9\xbb\xa9\x6b\x9e\x87\x5d\x05\xea\x60\x9f\xef\x24\x88\x83\x73\xe1\x6f\x0c\x70\xff\x86\x58\x9f\x80\x40\x17\xc1\x5a\xb7\x78\x3d\xa5\x42\xb9\xe4\xf1\xb0\x8d\x39\x8b\x17\x77\x14\x29\xa5\xa1\x00\xff\x91\xf4\x7e\xe2\xa0\xae\xab\x1e\x27\x9b\xdb\xde\x59\xb6\xd7\xd7\x2c\x55\xba\x8a\x42\xa5\x6b\x1b\xa6\x8d\xfe\x59\xb7\x2a\x53\x9f\x5b\xb3\x1a\xd1\x45\x3f\x52\x56\x76\x23\xc1\xef\x46\xcd\xcc\x35\x64\x86\x28\x21\x91\x84\x99\x67\xa5\x9a\x1b\x53\xe7\x45\x95\xb5\xba\x81\x58\x4b\xdc\x4c\xe4\x56\x8e\xef\x89\xcd\x13\x49\x25\x84\x52\x72\xbe\x18\xa9\x59\x91\x35\x81\x24\x24\x8a\xbe\xab\xb5\x7d\xad\xa0\x43\xcc\x0a\xff\xa0\x59\xfd\x64\x6a\x97\x94\xaf\xa4\x24\xd5\xdc\x5a\x82\x31\xc3\xde\x82\xa0\xe2\x03\x3e\x1b\xf6\xe4\xed\x32\xd9\x30\x05\xa0\xdd\xeb\xb8\xbf\x88\x0f\xbe\x51\x8f\x02\xca\xb1\xfd\x59\x5e\xea\xd0\xf6\xd1\x8c\x27\x7f\x3e\x33\x11\xaf\x8c\x7e\xff\xc8\x5d\x83\x66\x46\x74\xfc\xc9\x3f\x2c\xbe\xce\xe1\xcf\x0d\x94\x3d\xff\xde\xc8\xe1\xf9\x8f\x07\xf0\xef\xc6\x25\xc1\xfb\x2c\xfc\xf7\x1c\x7b\x78\x1d\xdc\x59\x95\x15\xe1\x00\x9d\x0f\x4e\xf0\xc6\xa8\xa6\xd5\xab\x66\x84\xde\x8f\xba\x1d\xaf\x57\x10\x41\x04\x7b\x00\xd2\xe5\x6a\x55\x52\xfa\x2a\x70\xa6\x5e\x18\xba\xb3\xd0\x03\xdb\x67\x77\xc1\x1e\xc8\xa3\x3f\x9b\xb7\xeb\xac\xdc\x93\x29\x37\x27\xea\x27\xda\xab\x46\x95\xc5\xa5\x46\xd2\x6c\x2c\xf9\x8c\x70\xc7\xd9\x74\x90\x43\x4a\x33\xd3\x12\xf0\x5c\x9c\x91\x33\x53\xb5\xd9\x8c\x60\x2e\xed\x62\xdd\x90\xb8\x89\x4d\xc4\xb3\x40\x09\xd9\x54\xe5\x56\xe5\x90\xde\xa8\x9a\x4b\x6f\xcd\x5b\x48\xd5\xc9\xa8\xb7\x33\xa3\x7e\xf2\xa3\xad\x85\x72\xf6\x8d\x75\x15\x3b\x90\x73\xec\x29\x79\xf0\x78\xef\x2e\xae\x72\x25\x9c\xea\xb9\x52\x6f\x40\xc4\x95\x34\x23\x5d\xe8\xf6\x99\x03\xf9\xb3\xc2\xb1\xd3\x70\xcf\xd7\xf5\xdb\xd5\x04\x20\xf1\x5c\x62\x0a\x7b\xb1\x08\x75\xe4\xbd\x2b\xe7\xe9\xf1\x99\x07\x79\x17\xde\xee\xf0\x91\x20\xeb\xdc\xb4\x23\xad\x5c\x75\x24\x15\xcf\x53\xbc\x87\xd4\x09\x95\xb0\xa5\x4f\x68\x56\x56\xaa\xc3\xfc\x34\x68\x92\x86\x7b\xd5\xf6\x12\xc8\x29\xf0\x01\xfe\xed\xef\x4c\xf8\x86\x7f\x60\xd5\x45\xd6\xd0\xe3\xe4\xc4\xc1\x74\xf3\x89\xf9\x19\xd8\x4c\xc6\xd4\x91\x87\x04\x0e\x21\xcc\x23\xfe\x86\x51\x2d\x4e\xf5\x6a\xce\x55\x06\x6f\x2a\x3c\x00\x42\xb4\x1c\x98\x5a\x9d\x13\xa0\x62\xd1\xfa\x9c\x61\x30\xd0\x61\x9a\x03\xa7\xd8\x6a\xee\xf9\xe7\xc8\xae\xb2\x4c\xfe\x06\xa0\x12\x54\x8c\x66\x3b\x64\x4c\xc9\xf1\xb1\xe3\x46\x97\x7a\x8b\xb0\x91\x07\x6a\x60\xdb\x21\x37\x3d\xf2\x3b\x88\xdb\x81\x01\xc6\x2e\x08\x97\x7a\x3b\xf4\x60\x5e\xe8\xad\x10\xd6\xf8\x78\xa9\xb7\x9f\xe2\x58\x2f\x20\x2b\x57\x0e\xde\x81\x5e\xb3\x29\x3f\xcb\xe6\xdc\x81\xb1\xaf\x9d\x1f\x29\x31\x92\x7f\xf5\x0c\xa4\x83\x86\x6f\xdc\x6f\xb0\x7f\xe3\xa4\x1f\xa6\x41\x47\x23\x95\x1c\x5e\xa2\x59\x7f\x60\x94\x0b\xf5\x25\xb7\x0d\xbf\x83\xe0\x50\xd2\xb3\x7d\xc2\xee\x05\x35\x27\x33\x73\xb1\x6e\x86\x72\x29\xfc\x4a\x5a\x16\x03\xcd\x47\x51\x15\xa4\x16\xc2\x06\x84\x30\xc0\x9f\xe0\x0f\xe9\xc0\xd1\x9a\xd5\x89\xa7\x1b\xf5\x98\xcb\xb5\x66\xa5\xb8\x92\x95\x30\x44\x15\x94\x35\x92\xb5\xe8\xc1\xc5\x15\xf1\x4f\x17\xfd\x6a\x4f\xea\x2f\xb8\x9b\x34\xce\x23\x37\xbc\xa3\x11\x0e\xe5\x68\xe4\xda\x3f\x92\xba\x23\x2b\xb7\x3e\xa9\xf2\xb7\xf0\x22\x7b\x09\x36\xaa\xd7\xd9\x6a\x80\x07\x3d\x10\x47\xd8\x47\x83\x70\x20\x21\x32\xd8\xc3\xbd\x8c\xd4\x92\x72\x57\x2f\x9f\x03\x71\x83\xc0\x51\x37\xad\xcb\x95\x2b\x33\x1c\xb8\xf7\x9c\x7b\xfe\x09\x39\xc4\xbe\x15\x5b\x33\xc2\x36\x4c\xad\xe6\xa5\x69\x74\xd3\xda\x6f\x58\x07\x74\xc8\x52\xac\x4a\x3f\x8c\x7c\xde\x17\xfb\xf7\xc1\x54\x7d\xc7\x24\xba\xe4\xa4\xcf\xcb\x6c\xc5\xe0\x9d\x76\xd8\xfc\xc5\x3f\xc0\x09\x87\xf6\x21\x55\xe9\x26\x2f\x3d\x3a\x25\xb8\x17\x46\x6c\xe6\x05\x51\x53\x05\xae\x3a\x64\xa3\x12\xee\xd3\xd0\xdc\xf3\x2a\xef\x36\x06\xa9\x71\xb1\x27\x77\x94\x24\x42\xea\x71\xdc\x16\xa0\xe0\x8a\xfc\x36\x63\xf5\x1d\x60\x1a\x01\xe2\x0a\xcc\x08\x1c\x98\x70\x4a\xdf\x7d\x52\x8f\xd4\x7c\x21\xcf\x29\xcc\xd8\x16\x8b\xba\xe5\x01\x69\xf8\xe9\x58\xf8\x3d\xcd\x17\x56\x60\xa2\xe1\x07\x93\x05\x82\xdb\xef\xa0\xef\x60\x53\xde\x1c\x25\xcc\x7d\x62\xb9\x1f\x48\xdf\x2a\xde\x1e\x3f\x05\x60\x9f\xd3\x29\x79\xee\x90\x69\x5f\x9f\x43\x7a\x35\x58\x64\x75\xc2\x03\x18\x4a\xa7\x2c\x31\x3e\x68\x42\xa2\x2b\x71\x9b\xd4\xc0\xfd\xfb\x3c\x6b\x91\x23\x48\x44\xf8\x17\x7e\x29\xc7\xea\xc1\x27\x5a\x78\xf8\xeb\xbb\x4f\xf2\xb7\xe3\x4f\x62\x80\x11\xa6\x96\x9f\xf4\xa0\x50\x63\xa0\x48\x31\xf7\x7e\xf2\x51\xce\x3d\xab\x33\x7a\x5a\x76\x39\xfc\x60\x47\x93\x53\x79\x18\x13\x4d\x48\x26\x53\xbf\x31\xdf\xc3\xdc\xee\xf1\x9f\x3f\xdc\x75\x72\x07\xb7\x4d\x0e\xc7\x9d\x98\x5d\x37\xff\x2f\xf3\x60\xdb\xc3\x89\xe4\x41\x27\x82\x15\x9d\x84\xfc\xe8\x44\x70\x26\x30\x27\xbe\xc7\x0a\xcc\xa5\xe0\xdb\x73\x5b\xcd\xae\x56\x68\x66\xbd\xd0\xed\xdf\x1a\x7d\xbe\x06\xa6\x0a\x1a\xaf\x26\x66\x84\x74\x79\x32\xe7\xdd\x4b\x91\x54\x9f\x33\x8c\xd4\x10\x06\xda\x41\xdb\xc4\x80\x5a\x66\xdd\xe0\x10\xcd\xef\xf7\xf0\x0b\x99\x0b\x02\xe8\xe0\x1b\x77\xf7\xc7\x3a\x97\x84\x2a\xf2\x9b\x63\x7b\x7c\x51\x19\xe3\xd3\x4f\x27\x3a\xfe\xe6\xf8\x6e\x5d\x4b\x20\xec\x79\x1b\x2c\xe3\x5d\xef\x67\xb7\xa8\x10\x6c\x43\x7e\x7b\x89\x3b\xc9\x5d\xd7\xe1\xe5\x24\xae\x26\x2b\xce\xd8\x36\x26\x82\x46\xdc\x37\x4f\x2a\xee\x53\x40\x31\xee\x2b\x7f\xd8\x13\x7b\xbd\x27\x1c\x07\xa5\xf5\xf1\x3b\x82\xfa\x7c\x79\x6e\xa5\xcd\xa2\x51\x99\xbf\xd2\x46\x6a\xdd\x78\x7c\x1e\xc0\x6a\x6a\xeb\x42\x5f\x71\x12\x64\xa7\x31\x98\x90\x58\x93\x56\x98\x7d\xcf\xda\x31\xec\xe9\x17\xdd\xd6\x90\x72\x36\xbb\x2e\x96\xeb\xa5\x15\x85\xbf\x07\xf4\x04\x52\x6e\x3a\xd8\x71\x91\xcd\x32\xab\x7d\x12\x50\xf6\xc9\x40\x56\xe0\x00\xaa\x8b\xc6\xbe\x36\x50\xe6\x5b\x64\xb5\x5f\xec\x92\x23\x49\x18\xa1\x9d\x17\x89\xcf\x94\x3a\x20\x00\x67\xb0\x62\x8d\xc7\xd8\xe4\x4d\xd8\x4f\xa2\x92\xdd\x88\x87\x4a\xfc\x40\xbc\xfe\x5f\x1a\x89\xae\x72\x1c\xc7\xc1\x81\x26\x29\x4e\xed\xc8\xec\x10\x72\x7d\x08\x02\xb4\xe4\x31\x8d\x87\x35\x56\x71\x5f\x92\xad\x32\x33\x88\x0c\xee\xbb\xc5\xe8\xc0\xdf\x48\xb4\x12\x31\x1f\x4b\x3b\x83\x58\xec\x1a\x76\x0c\x12\x7c\x94\xe4\x84\xe1\xd4\xc2\x11\xfe\xf2\x45\x1c\x61\x97\xa3\x81\x73\xca\x45\x30\xe4\x42\xe4\x88\xa4\x01\xfc\xff\x71\x52\xd4\x11\xec\xdc\xdf\xfd\x89\x25\x3f\x3e\x1e\xfa\xb9\x2e\xb3\xed\x8c\xde\xc5\x76\x1e\x3f\x99\xfa\xbf\x8c\x59\x16\xd5\x45\xd2\x45\x02\xed\x59\x22\x8c\x36\x3e\x79\xec\x55\x45\xd0\x28\x56\x48\x84\xf0\x47\x73\xed\xe4\x4d\xd4\xab\x90\x87\x44\x24\xa3\x3c\xc2\xd5\x88\x65\x86\x58\xb4\x71\x06\xa3\xbe\x48\x81\x0f\xc2\xea\x35\x60\xd3\x52\x45\x14\x11\xec\xda\x50\x64\x64\x90\xea\x6c\xc1\x88\xe3\x7b\xfe\x71\x87\xab\xab\x13\x75\xf4\x29\xe5\xc2\x26\xc9\x72\x17\x2d\xb2\x22\xa2\xef\x80\xdc\x73\x4c\x62\x70\x0f\xda\xfc\xf2\x45\xdd\xf3\xc4\x65\x4b\x88\x0b\x42\x5a\xf1\xea\xf7\xab\xac\x4a\x9f\x8c\x60\x1d\x3e\x1e\x79\x69\x1b\xea\x74\x16\x83\xde\x35\xf0\x63\xf8\xfe\xf2\x9f\x20\xdb\x1b\xd9\x99\x05\x01\x0d\xe9\x05\x84\x05\x85\x56\x97\x3f\xd1\x6b\x6a\xd7\x12\xf2\x03\xeb\x46\xe2\x52\xc3\x5b\x6e\xea\x6c\x60\x96\x49\xc8\x37\x2d\x76\x65\x9f\x6e\x5c\xc8\x99\xcd\x3a\xe5\x38\xd6\x08\xa2\x15\x06\xd0\xf0\x01\x54\x05\x0b\xdd\x5e\x6c\x13\x0d\xdf\xec\x91\x61\x94\xb5\x42\x84\xb4\x25\x00\xb6\xd8\x90\x17\x1b\x27\x85\xd9\xc5\x8e\xc0\x15\xb4\xe2\x87\x67\x0f\x3e\x84\x11\xa6\x5d\xa8\xc7\xbe\x1c\x27\xc3\xc5\x57\xa6\x9a\x8a\x16\xdc\x25\x4a\x69\x42\x68\x27\x07\xfe\x98\xc5\xc4\x4d\x6c\xea\x44\x39\x1a\x1b\x76\xd6\x0c\x48\xa0\x13\x2f\x41\x24\x11\xb6\x8d\xe2\xfd\x63\xdf\x1a\xb7\x4c\x02\xcd\xdd\x9a\x06\x12\x0a\x88\x67\x66\x5a\xa7\xc2\xeb\x3d\x0d\x40\x43\x76\xe6\xa8\x75\x90\x89\xdb\xc8\xc9\xce\xa7\x33\x82\x04\x81\x4f\x01\xe3\x0b\xdf\xff\xef\x30\xd5\xa3\x68\x84\x49\xae\x35\xab\x53\xf7\x8d\xc8\x6a\x8a\xb4\x26\x53\x30\xf6\xe6\x26\x59\xd5\x66\x56\xea\x25\xa5\x03\x26\xc6\xa0\xd0\xbf\x82\xac\xe1\xa6\x62\xeb\x28\x24\x2d\x81\xd4\x24\x9c\x47\xbc\xa8\xe0\xb5\x3e\x6f\xcb\x2d\x0a\x1d\x7f\x1a\xb3\xc4\xac\xdb\x2f\x9f\x1f\x1f\x81\xc6\x7a\xa6\x4b\xb3\x91\xfa\xb6\x5e\x5e\x1f\x31\x78\xe7\x7d\x4d\x3e\x3c\xcd\xbc\xd6\x1a\x3c\xbf\xf0\x5f\x13\xf2\xa4\xff\xed\xd9\xbb\x97\x02\xb8\x9b\xef\xaa\x64\x19\xfa\x9a\xeb\xab\x62\xae\xe1\xa3\xe5\x61\x98\xef\xf8\xbf\x60\xec\xc8\x89\x5c\x0a\xd7\x50\xcf\x5f\xf3\xd9\x07\xe7\xa3\x79\x56\xea\xdf\xd4\x34\xd5\xd5\x61\xb7\x27\x59\xeb\xf7\x4e\xad\xdf\x13\xb5\x7e\xc7\x5a\xa1\xe6\xc9\x53\xd8\x5f\x68\x04\x9e\x03\xfa\x33\xe3\x7e\x8b\x35\x51\x8e\x49\x51\x89\xdf\x05\x13\x14\xac\x89\x7f\x0d\xdf\x43\xf3\x52\x67\x40\x89\x42\x11\x0d\x79\xf7\x7f\x32\xf5\x2e\x3c\x17\x97\x34\x3a\x0a\xc8\xed\xc9\x45\xbb\xc3\xd3\xc3\x61\x2b\xfc\xbb\x22\x0e\x82\x90\x9e\x8e\x0d\x1b\xc6\x94\x8c\x87\xea\x5d\x0a\xe7\xbf\xd4\x6f\x7d\xf2\xf3\x08\xad\x95\x3d\x76\xca\x6e\xf0\x00\xc1\x24\x86\x66\xb1\x94\xc5\x7f\xe7\x86\xc5\x66\x35\xcb\xe4\x13\x93\x84\xf2\x8d\x9f\xd6\xae\x89\x87\xd3\x46\x07\xb6\xa7\x7c\x15\x87\x16\x39\xfc\xf1\x4c\x5f\xb3\x1f\x57\xe2\x57\xe1\xfb\x46\x0b\x16\xf3\x4a\x29\x66\x81\xcc\x26\xc4\xc5\xec\x1a\x8c\xc7\x60\xab\xc9\x25\xc3\xed\xc6\x21\x42\x2a\x51\x81\x9f\x24\x7c\x1f\x2f\x34\xba\x04\xff\x36\x70\xb8\x99\x92\x81\x2e\xda\x76\xd5\x9c\x1c\x1e\xce\xd6\x17\xcd\x64\xbe\xa8\xcd\xb2\x58\x2f\x27\xa6\xbe\x38\x5c\x1d\xf2\x9f\x87\x90\xa2\xb8\x39\xcc\x75\x9b\x15\xe5\xe3\x22\x9f\x7e\xff\xd7\xff\x7c\x70\xf4\xbf\xb0\x35\xc4\x45\x01\xe4\x8d\x06\xfa\xfb\x3b\xbe\x77\x91\x79\x26\x59\x72\x6b\xec\x8b\x12\xab\xe7\xc5\xf9\xb9\xae\xf1\x37\xf8\xc7\xdc\x3b\x09\x20\x94\x27\x25\xe9\x03\xb8\xc0\x35\xa0\x73\xce\xd7\x65\x86\xeb\xc7\xf1\xca\x76\xa4\x20\xf5\x65\x55\x5e\x9b\x42\x26\x1a\x1a\x87\xfe\xdd\x7d\x12\x24\xf2\xa4\xb1\x77\x86\xec\xb8\x5c\x06\xcd\x0c\x85\x03\x3c\x05\x1e\x3a\x2f\x66\xe0\xf6\x76\x25\x7e\xa3\x95\xf8\xf2\x45\xf9\xda\xfc\x0f\x8a\x79\xb3\x3f\x46\x2d\xa3\x3f\xa0\x6d\x79\xef\x26\xb5\x95\xbf\x0f\x3c\x8f\xfa\x77\xcc\x9c\x64\xbe\xaf\x9b\xf8\x99\x59\xf5\xce\xfb\xf7\x7f\x65\xde\x67\x66\x95\x88\x15\x38\x33\x2b\xf2\xaf\xb4\x24\xff\x76\xf6\x87\xd7\xb6\x38\x7f\xf1\x23\xc1\xb7\xdf\xce\xfe\x90\x01\x4f\x7d\x9c\x55\x14\x8b\xb1\xee\x12\x2d\x01\xd4\x9f\x8f\xd5\x61\xd7\x34\x75\x30\x0d\x23\x1a\xba\xd5\x86\xea\x26\x54\x32\x2d\xa4\x57\xe7\x53\x53\x5d\x69\x20\xf7\xdb\xbc\x35\xc0\x0c\xe8\xdd\x35\xd0\x41\xcc\xe9\x5f\x28\x73\x4f\x85\xe0\x99\xfe\x07\xd5\x6c\x9b\x56\x2f\x27\x00\x35\xad\xaf\x5b\x08\xec\x9b\x69\x05\x16\x6e\xb0\x99\xef\x97\x98\x8a\x1b\x3c\xf7\xbd\x63\xb4\xfd\xfa\xac\xb8\x1a\x8e\xd4\x3e\xf4\xb7\x3f\x39\x04\x29\x65\x80\x50\x9f\xf6\x3b\x6e\xfb\xfe\x68\x0f\x6d\x1c\xfb\x76\xff\xf7\x83\x20\xbe\xd6\x3c\xb5\x23\x79\x0f\x63\x70\x76\xdf\xb7\xb3\x3f\x50\x50\xa2\xb4\xc1\xd7\xed\xc8\x8a\x63\xe5\x3a\xe7\x38\x37\x21\x41\xa5\x7e\x88\x36\xbf\x8f\x4c\x28\x7a\x81\xa4\x86\x03\x96\xe8\x4f\x03\x71\xc1\x7d\x16\xaf\x48\x1a\x15\x8a\xde\x76\x75\x86\x09\x39\xca\x05\x92\x50\x7a\x69\x57\x89\x17\xcc\x49\x5b\xdb\xb7\xe7\xe7\xee\x3d\xf1\xa4\x75\xfe\x4b\x34\xc6\x4e\x8f\x50\xdb\x36\x09\x15\x0f\xa6\xd2\xd7\x5e\xbc\x09\x3d\xbe\x0b\x95\x1c\x77\xdc\x55\xe8\x30\xa6\xe6\x05\x9b\x85\xc9\x23\xfc\x47\xda\xd1\x20\xff\x3c\x0e\x3e\xba\x78\xd0\xeb\xbe\x87\xab\x40\x5d\x1e\xbb\xad\x8f\xeb\x1f\xf6\x4f\x5d\xa9\xc7\xea\x48\x9d\x84\x1c\xce\xc7\x77\x5d\x63\xe7\xd0\x06\x3d\x8f\xef\xd4\xc8\x6f\xdc\x88\x17\x39\x0f\xa6\xd0\xda\xa9\x14\x35\xe9\x9b\x53\xd1\x7b\x4a\xd9\xfa\xa2\x9e\x4e\xb6\x58\x36\xd2\x15\xc3\x21\xe6\x33\xec\x0e\x2a\x9e\x26\xf4\x5b\x51\x3b\x4f\x26\x71\x01\x79\x38\xdd\xc9\xa2\x6d\xa2\xc3\x39\x82\x53\x26\x4f\xa3\x74\x6a\xaa\xcd\x32\x3e\x6c\xd8\xbd\x3b\x65\xe2\xea\x10\x6b\x68\x5b\x16\xf4\x4d\x43\x76\x00\xa9\x18\xe5\x85\x5f\x49\x6b\x81\x0f\x38\xfa\x84\x2f\x7f\xb6\x94\x2a\x2b\x14\x22\x2f\x22\x0a\xeb\x4c\xb8\x8f\x16\x9d\x88\x0d\x97\xf1\x34\xdc\xcd\x3d\x7a\x05\x84\x3f\xfc\x3e\x88\x61\x9d\x3a\xc7\x08\x1e\x49\xc1\xfc\x19\xf8\x75\x9e\x95\x3f\x9a\xeb\x90\xb4\x21\x62\x66\x27\x59\x33\x2d\x71\x7d\x58\x12\x37\x3a\xf9\x03\x2e\x8c\xcf\x00\xc6\xa7\xa6\xd3\xe9\x5d\xce\x53\xf8\x90\x22\x79\x45\x36\xe9\xb7\xe6\x04\xd7\x29\xfc\xb5\x35\xab\x48\x3e\x86\xf4\xa2\x76\x07\xd1\xa4\x61\x1a\xc1\x8c\x1d\x93\xf6\xb6\x0d\xe7\x27\x8f\xf7\x2f\x17\xf1\xd1\xf8\x12\xf3\x7e\xc2\xde\x3d\xca\xa7\x7c\xdc\x71\x15\xa4\x1c\x09\xe1\x07\xdb\x94\xb3\x91\x78\x32\x0e\x22\xbf\xdc\xa9\x93\xde\x8a\xa0\x80\x70\xae\x36\x0e\x96\x3a\xdb\x22\x0c\x28\xfa\xdd\x7c\x0b\x27\xf2\x5b\xb5\x22\x4f\x15\xf6\xb7\x06\xdb\x7d\xe4\xa9\x83\xce\x62\x73\x53\xe5\x59\xbd\xa5\xf6\xd1\x5d\xcc\x76\x5f\xe4\x05\x8a\xbb\x59\xbd\x9d\x60\x20\x3d\x0d\xe1\x9d\x69\x06\xec\x17\x99\xd5\x23\xb5\x8f\xae\x36\xfb\x43\x8c\x98\xc0\x76\xb3\xa5\x96\x39\x1a\x54\xd6\xa8\x7f\xd8\xe2\x6a\xac\x8e\xff\xc1\x59\xfa\xb2\xf3\x56\xd7\xe2\xbb\x2a\x2a\xb5\xa9\x0b\xc8\x31\x01\x19\x3c\xed\x30\xc3\x6a\xfd\xa3\x80\xc6\xee\x36\x08\x37\x00\x1c\x39\x7d\xec\xef\x1d\xca\x3f\xbf\xce\x96\xab\x52\x37\x6a\xb0\x5e\xad\x74\x3d\x9e\x67\x8d\x56\xa5\x86\x78\x46\xb0\xe4\xfc\x72\xf6\x6a\xa4\x4a\xb3\xe1\xdf\xec\xb7\x57\x67\xbf\x0c\x4f\x6c\x6d\xfb\x9f\x1d\xf2\xd1\x48\x1d\x8f\xd4\x64\x32\x19\xf2\x57\x1a\x83\xc2\xd5\x80\x91\xcd\xe0\x87\xec\x8b\xfb\x7f\xf8\xfa\x23\xfd\x45\xff\xff\xe3\x17\x58\x0f\x2c\xf3\x85\xfe\xff\x09\x96\x7d\x82\x65\x7e\xfc\xf2\x84\xff\x1f\x66\x70\xa5\xeb\xad\x27\x01\x5c\x7d\x07\x11\x2e\xc2\x00\x2a\xe7\x4d\xdd\x28\x80\x39\xcf\x75\x8d\xbe\x89\x4d\x5b\xcc\x2f\x01\x72\xdc\xf4\xd4\x64\x77\x12\xc1\xc6\x71\xc7\x6e\x3f\x99\xac\xef\x73\x0e\xc1\x91\x7f\x97\x3f\x9f\xfc\xaf\x2f\x5f\xfa\x8f\xea\x5e\xe4\x12\xf5\xda\x69\x3d\xe2\x8e\xbc\xe6\xb6\xc7\x13\x12\xf8\x03\x38\xcf\x0b\x53\xf4\xc0\x9e\xe2\xda\x8f\x8e\x54\xc5\xa1\x03\x54\xd2\x85\xcd\xcd\xcf\xb5\xa0\x1e\x3b\x5d\xeb\x09\x69\x46\xe5\xec\xbd\x12\x9e\x95\x97\x4b\x8e\xfe\x5e\xe2\xb5\x7f\xea\x6d\x2f\xf4\x05\x7e\x83\x42\x32\x7f\xe3\x2d\x4c\x4b\xf0\x23\x8f\xb4\x85\x67\x01\x98\xe2\x5b\xfb\xcf\x81\x2b\x8f\x6b\x3e\xc9\x0b\x2b\x37\x14\xa6\x02\xe7\x66\xcc\x04\x02\x3c\x0e\xa8\x65\x4b\x1f\xf0\x8f\x3d\xe9\xae\xc2\x0f\x0b\x91\x8c\xc9\x61\x7a\x2e\x54\xf2\xf7\x3d\x34\x7c\x51\xbb\xcc\x7a\xf6\x3a\x9e\x3c\x68\x42\xf3\x4d\x1d\x45\x15\x91\x5b\x48\x77\x4f\x4e\xd5\xcc\x2b\x65\xb7\x98\xcb\xfb\x9e\xd4\x63\xf4\x06\x82\xa4\x5c\x62\x8a\x53\xc1\x06\xe1\x7e\x94\xa4\x02\x19\xa1\x6d\xe9\x55\x56\xb7\xef\x2c\xf1\x17\xf0\x42\x8a\xc2\xb1\x7d\xe2\x62\x2a\xf7\x89\xc9\x83\xd2\xee\x96\xfa\x4a\x97\x10\x5c\x2b\xb7\xd4\x0e\x14\xdb\x8b\x07\x57\x73\xc8\x39\x75\x27\x36\x95\x7a\xc0\x6d\xb5\xe3\x7b\x97\xd5\xed\x93\x76\x00\xfd\x8f\xc4\xd4\xd8\x8e\x8f\xa2\xde\x14\x2e\x86\xb7\xf6\xdf\xec\x00\x9c\x95\xbe\x91\x70\x92\x89\xb5\x61\x24\x7e\x68\x4c\xc4\xc2\x5f\x65\xe5\x84\x7b\x90\x6d\xc1\x37\xd7\xd2\xbd\x70\x95\x7d\x90\x40\xc6\x30\xdb\x7f\xa3\xf4\x4b\xf3\x85\xce\x56\xe5\x56\xe9\xa6\x2d\x96\x56\x4e\x8b\x4c\xfb\x74\xb5\x32\x2f\xc4\x40\x10\xfb\x11\x81\x6f\x5b\x5d\x2f\x75\x5e\x80\x80\x07\x52\x19\x83\xb8\xcb\x30\x3f\x6a\x3a\xe4\x6b\xc2\x69\x1a\x0f\xa8\x25\x3c\xcc\xbb\x33\x2f\x8b\x95\xbd\x02\x64\x22\x9d\x3b\xe8\xd0\x58\x5a\x4d\x99\xd0\xd4\x5f\xe8\xac\x79\xd9\xf6\x76\x19\x26\x30\x17\x25\x1f\x70\xea\xa0\xe7\x79\x96\x94\xda\x9c\xc2\x3b\x14\xd7\xbc\x26\x1b\x5f\x4a\x7c\x98\x17\x14\xd0\x4c\x11\xd9\xb4\x03\x8d\xb7\x62\x40\xaa\x2a\xf6\x8d\x77\x01\x63\x90\xdc\x03\x71\xce\x8b\xea\xdc\xd4\x4b\x50\x99\x81\x64\x72\xfd\x8b\x2e\xed\x55\x45\x00\xfb\x10\x45\xab\xae\x3b\xb2\x0e\xa0\x99\x04\x44\x40\x39\x1e\x73\x71\xa1\xa1\x97\xa9\xab\x3a\x68\x0c\x36\xff\x48\x1d\x59\xbe\x5e\x35\x1d\x4a\xb2\xd7\x3c\xc2\xb3\x43\xff\x70\xe4\xa8\x47\x7f\x31\x7a\xb1\xcd\x12\x9e\x46\x51\x62\x48\x51\xa7\x66\xdd\xda\x2b\x16\x48\xaf\x01\xbd\x28\x45\x04\xa4\x3b\x2c\x0b\xcd\x55\xa2\xf4\x01\xf6\x90\x03\x98\x11\x58\x88\x04\xad\xbe\x33\xcd\x87\xa2\x5d\xbc\xac\xce\xcd\xc0\x87\xb4\xe0\xa9\x1a\x71\x63\x23\x98\xa9\x70\xfb\x01\xaa\x95\x72\x96\xe4\x09\x96\x9c\x60\x65\xa6\x50\x8d\x0f\x36\x36\x05\x97\xac\x69\x26\x3c\x4c\xa1\xed\x25\xfa\x59\x99\xc6\x3d\x34\x41\x39\xd7\xb3\x60\xc2\xcb\x54\xc4\xc0\x04\x4e\x3a\x87\x87\xea\x25\x6c\xed\x72\xdd\x40\x88\xae\x7b\x25\x50\x10\xd0\x40\x3c\x5c\xe5\xab\x4d\xba\x9d\x7b\x8a\x83\x93\x7c\x3d\x52\x5b\x91\x95\xc2\xcc\xe9\x79\x63\xe6\x7b\x4a\x6d\xed\x9b\x28\xa9\x95\xa0\x55\xd8\x42\x42\x50\x7f\x95\xc8\xe5\xb7\x17\xe6\x39\x3a\xe0\x1e\xb9\x74\xed\xb0\xe5\xe3\xe3\x61\x70\x8c\x39\xe2\xe2\x09\xeb\xe1\xe0\x18\x6f\x87\x23\x94\xba\xa6\xca\x35\xa5\x0e\xe0\xdf\x90\x00\x0d\xdd\x40\x44\xbc\x0f\x94\x8e\x0c\x67\xc9\x01\x45\xad\xf8\xcc\x5f\x18\x3b\x66\x5b\x91\x37\x71\x38\xf8\x63\x9f\x45\xfd\x9a\x67\x6f\xdf\x84\x47\xe1\x6b\x31\x64\x4d\x2e\x28\xed\xcd\xb0\x9b\xc1\xd9\x25\x45\x76\xef\xf2\xd0\x63\xcd\x49\x21\x14\xec\x01\x5b\xe6\xe5\x30\x84\xf0\x9a\xfa\xa0\xd2\xf7\xab\xac\x7a\xd2\x3e\xaf\xf2\x50\x97\xe6\x0b\xe3\x75\x48\x15\xef\xdf\xa7\x7f\x4d\xce\x8b\x2a\xb7\x62\x3b\x83\x6b\x91\x2f\xac\x2b\x86\x90\x83\x96\x07\x3f\xf2\x0d\x41\x92\x4d\xfb\xed\xcb\x17\xe5\x7e\x9f\x4e\x13\x05\xee\xdf\xa7\x02\xcc\x66\x22\x58\xca\x28\xee\x06\x17\xd0\x37\xd3\x1a\xf1\x30\xed\x78\x49\xc0\x66\x4b\xc7\xf9\x40\x13\x8d\xa8\x58\x00\x58\x77\x1d\xa0\xce\xa5\xa5\x71\x3a\x10\x5b\x35\xde\xa9\x9e\xf4\x99\x36\xd3\xe2\x1b\x04\x18\xea\x8b\xa2\xa2\xb0\x21\xd0\xb1\x88\x74\x34\x73\x99\xf6\xe7\x2b\x44\x69\x4b\xb3\x43\xd6\x6c\x3d\x9c\xaa\xed\xa9\xba\x21\x67\x78\xf0\x1b\xc6\x31\xfd\x3b\x7b\x44\x53\xc3\x23\xea\x09\xe6\x84\x6e\x60\xe2\x9a\x84\xaf\x27\xe2\x47\xf0\x87\xbd\x65\x23\x12\x5a\x83\xb8\x77\x74\xb6\x17\x7a\x8c\x7f\xe7\x33\x07\xc4\x03\xe8\xe0\x0c\x7d\x4a\xee\xa8\xe9\xd8\xbd\x60\x34\xe4\x11\xeb\x9f\x49\x9b\xc4\xf6\x96\xaf\xa4\x46\x37\xbe\x58\x75\x02\x37\x4d\x71\x2e\x6e\x0b\xb8\x82\x20\x8f\xcf\xcc\x5c\x83\x4b\x9a\x7b\xf9\x42\x81\xc8\xec\x30\x82\xd0\x40\xb3\x1a\xb7\x66\x2c\x2d\x17\xf6\x6f\xba\xde\xad\x90\x2c\x33\x36\x9a\xeb\x97\xcd\x13\xdb\xe8\x60\x66\xae\x91\x15\x61\x9d\x20\x62\x74\x66\xae\x25\x7d\xaa\xc7\x94\x20\xf7\x04\x7e\x21\x5a\x52\x8f\x71\x06\x27\x6a\x50\xa2\x27\xfd\x8c\x34\x61\x54\x8e\xde\x80\x8f\xd4\x75\xa8\xfc\xba\x95\x45\x1a\x79\xad\x1d\x1e\xaa\xd7\xe6\x4a\xab\x2d\x2a\x36\x93\x21\xb3\xaa\xb1\x97\x28\x1f\xf9\x3e\x55\x3f\x88\x0a\xff\x04\xa5\x91\xf1\xd6\x0a\x40\xf8\x80\x2c\xb7\x9c\x92\x4d\xfd\x23\x41\x54\xff\x80\x2c\x71\x98\xf2\xc6\xa8\x2c\xff\x63\x0d\x89\xbd\x28\xa8\xb7\x15\x98\x8c\x10\x08\x59\x34\xa4\x86\x90\x68\x7d\x2f\xee\x60\x5e\x91\xfc\xe9\x68\xd4\xcf\xca\x46\xaa\x6c\x6b\x8e\x82\xfa\xfa\xa7\x32\x0e\xfd\xa5\xcf\x00\xa5\x8a\xa6\xfa\xb6\x55\xab\xd2\x4a\xbb\x21\xbd\xa1\x9e\x04\x2f\xe9\xf3\xe2\xc2\xae\xb0\x59\xb7\xd2\x5e\x0d\xea\xba\x06\x9b\xee\xbe\x75\xb2\xb2\x84\x6d\x66\xfb\x32\x3f\x75\xe3\xc7\x67\xaf\xc7\xe4\x63\x22\x2f\x7e\x28\x12\xa0\x22\x24\xa6\x96\xdf\x87\x1d\xff\x2c\x95\x26\xc4\xce\x71\xa6\x77\xa7\xbf\xc4\x71\x71\xc5\xb3\xf7\x1e\x3f\x7b\x29\x1b\x6d\xb6\xb9\xdc\x64\x75\xae\xc6\xc7\x0e\xb7\xc2\x8a\xe2\x14\xb5\xcf\xc9\x33\x1c\xbf\x57\x83\x39\x24\x66\xe4\x26\x70\x9d\x1a\x8d\x0e\x51\x43\xcc\x84\xd2\xd6\x3a\x6b\x55\xd1\x36\xb4\xd8\x33\x4c\xce\xd1\xa0\x29\xaf\x29\xae\x28\x7c\xf2\xf0\x90\x34\xa7\xf6\x37\x7d\xcd\xbf\x41\xda\x41\x91\xca\x10\xa3\x20\xcb\xad\xca\xf2\xbc\xd6\x0d\x88\xf2\x5c\xdf\x89\xba\x0d\x63\x09\xd8\xb9\x7e\xdb\xa0\xec\xbe\x87\x9a\x41\xa4\x42\xbb\x14\x8f\x71\x29\xc0\x0e\x73\x82\xff\x86\xac\xca\xb8\x24\x44\xa4\xbe\x5c\x6b\xb8\x14\xd4\xc0\x72\x20\x89\x81\x0e\x75\x56\x54\x59\xbd\x75\x11\x60\x06\x96\x09\xdf\x3f\x30\x6f\x2f\x87\x6f\x20\x97\xb0\xf3\x7b\x98\x99\x6b\x6c\x03\x7c\x4f\x25\x27\x95\x22\xb9\x25\xeb\x8d\x56\xf5\xba\x52\xd9\xbc\x36\x4d\x03\x09\x0c\xb9\xa9\x6b\xe0\xf5\xd8\x4c\x54\xd3\x3e\x30\x08\x5f\xa7\xe5\x93\x3b\x5f\x3c\x91\x28\xff\xf6\x59\x79\xfd\x24\xc2\xfd\xc7\x72\xbb\xae\x77\x47\xea\x33\x30\x55\x7c\xcd\x2d\x8f\x7b\x41\x1c\x3a\xb2\x8d\x9f\x4a\xa6\x1e\xfd\xe6\xe3\x1b\xd3\xf7\x03\x02\xa4\x0a\xd1\x43\xa6\x4b\x87\xb0\x15\xea\x13\x2e\x8b\xfb\xf7\xfd\x45\xf0\x70\xaa\xae\x7d\x90\x8f\x58\xa0\x39\xa3\xe7\xc8\x35\xc2\x3d\x53\xa1\x1e\x90\x83\x9d\x43\xb9\x85\xd9\x5f\xd6\xe8\xdf\x3a\xef\x43\x4e\xe8\xee\x38\x17\xde\xa7\xe4\x79\x13\x33\x9d\x4d\xd6\xa0\xe4\x89\xe1\x16\x10\x4f\xef\xa6\xf5\x24\xc8\x08\x71\x78\xa8\x9e\x15\x4d\x5b\x54\x17\xeb\xa2\x59\x04\xad\x54\x3a\xab\x31\x67\x27\xb0\x49\x3b\x79\x53\xd3\x23\x9b\xaf\x75\xf2\x25\x77\x3b\x9c\xb5\x04\xe3\x78\xad\xc6\x7e\x21\x68\xe5\xc4\x87\x9a\xf0\xaa\xae\x47\x2a\x6b\x39\xf2\x90\x2b\xc3\x69\xf2\xea\x43\xb7\xc6\x07\x6a\xc0\x85\xd1\x40\x4b\x0e\xe2\x4e\xb3\xe8\x7f\x25\x1d\xa3\x3a\x91\x6a\x4a\x85\x8b\xeb\x7b\x7a\x1c\x0f\xf1\x24\x1e\x62\x1c\x45\x7c\x78\xa8\x06\x4f\xe0\xfa\x23\x65\x42\xab\x2b\x60\x79\xb8\xda\xc5\xb9\xaa\xf4\x5c\x37\x4d\x56\x6f\x27\x22\xc8\xd6\x72\x07\xfb\x5c\xc1\x87\x88\xe5\x18\x2e\x22\x11\x48\x60\x88\xb1\xd2\x07\x07\x44\x28\x96\xcd\x1a\x95\xeb\x56\xd7\x4b\x7b\x3d\xe1\x45\x83\x5a\x07\xa3\xb2\xa6\x31\x73\x50\x90\x6d\x0a\x7b\x17\x4a\xa7\x7e\xdc\x2d\x6e\x04\x37\x2d\x56\x88\x40\x52\x63\x54\xbf\xa8\xc2\xb2\x3d\xa7\xbb\x70\x2f\xff\xb0\x19\x41\x15\xe1\x82\xe3\x14\x8e\x82\x05\xc7\x6f\x89\x4b\xdb\x96\x62\x4d\xee\x09\x9d\x95\xc1\xd7\x3d\x32\x06\xc8\x66\xc1\xbf\x7f\x38\xf4\xe0\x4d\x81\x84\x61\x8f\xec\x90\xa8\x48\x3d\xa6\x8e\x7a\x08\xe2\xf0\x50\xbd\x31\x1b\x58\xc1\x6c\x3e\x5f\xd7\x76\x51\x63\x55\x25\xc8\x33\x10\xeb\x02\xd2\x29\xca\x19\xad\xc1\x4a\xdc\x8a\xa5\x2c\xf5\x9b\x5b\x40\x77\x20\xc8\xfc\x3d\xed\x1a\x62\x58\xb9\x63\xaf\x64\xa1\xde\x19\x39\x07\x9a\x3e\xf9\x7b\x18\x90\xb2\xb0\xa4\xc3\x77\xcf\x30\xb6\xea\xa1\x30\xaa\x5b\x8a\xdb\x02\x02\x09\x7e\xc2\xb5\xe3\x9b\x09\x0e\x5a\x73\x59\xac\x82\x38\xa3\x66\x20\xb7\x11\x87\x79\x2c\x5e\x58\xb1\x6a\x2b\x9c\x8a\x54\x6e\x59\x6e\x60\x07\x3c\x4c\xc8\xcd\x2c\xc0\xfc\x13\xd2\x0a\x8b\xd3\xb6\x09\xb8\x72\x51\x0e\x69\x4c\xdd\xea\x3c\x14\xe4\x46\xe4\x00\xa8\x32\x55\x99\x0a\x40\xa0\xc7\x1b\x8f\xf2\x06\xc9\x80\xdb\x75\x46\xf6\x5d\x8d\x18\x1f\xd9\xa5\xc6\xed\x87\x4e\x31\x08\x5b\x44\x65\x33\x6f\x44\x3b\x27\x07\x67\x63\x49\xc2\xc9\xb3\x97\x62\x23\x6e\x77\x90\xf6\xf0\x36\xb6\x6c\x20\xf1\x20\x8a\x4f\xdc\xc4\x41\x5a\x20\xf8\x6e\xea\x9a\x2d\x7a\xad\x19\x80\x0e\xde\x2b\xce\xf9\xc7\x11\xdf\x91\x3b\xc9\xb4\x57\xc8\xe1\x9f\xfc\xf9\x76\x36\xe1\x3b\x65\x70\xb8\x95\xe4\xf9\xde\x66\x45\xd0\x0d\x68\xf0\xf0\x2d\xe8\x43\x37\x86\x7b\xa9\x15\xb0\xeb\xf6\x49\x88\xfc\x80\x5e\x68\xc5\xfd\x70\x57\x46\x52\x10\xc4\xf0\x1e\xbb\x3b\x65\x63\xc8\x3a\x9c\x16\x9a\xb2\xc4\xfd\x9b\xd5\xda\xb6\x2f\x4d\xe1\x64\x03\xe7\x46\xb2\x96\x43\xd7\xc0\xc1\xc5\x54\xd8\x33\xa4\xa5\xe3\x97\x02\x6e\xf8\x23\x6f\x4c\x03\x45\x5e\xef\x5e\x22\x08\x28\x05\xcd\xdf\x71\x17\x43\x91\xd6\xed\x62\x87\x57\xde\xb6\x8b\x77\x63\x59\x24\x80\x30\xa9\xd1\x02\x88\x8d\x75\xa1\x87\xfc\x20\x0f\xc0\x87\xa3\x2d\xc5\xf8\x9a\x28\x1e\xda\x16\xdb\xc1\x62\x18\x8c\x3e\xe0\x34\x7f\xff\x2a\x56\xf3\x12\xf0\x7e\xe9\x0d\x86\xca\xf9\xba\x2d\x31\xc2\x95\xf5\x49\x28\xad\x83\xff\x46\xa1\x1b\x60\x25\xb9\xe5\x14\x45\x75\x21\x29\x00\x93\xa4\x77\xd9\x89\x63\x36\xf6\xb6\x59\xd7\xea\x1f\xf0\xe1\x1f\x04\xb5\x99\xd1\xe3\x33\xb3\xf2\xb8\x25\xce\xe8\x45\x91\x1b\x0d\xd4\x8d\xc9\xd8\x2d\x79\x8a\x57\x11\xe7\x9a\xc6\x26\x60\x51\x61\x28\x00\x53\x04\x39\x16\x80\x16\x81\x5a\x1b\xe3\x81\x8d\xc2\x2e\x0a\xc9\xa5\xbc\xde\xc3\x9e\x97\x26\x3b\xd7\x13\xf5\xa4\x51\xcd\xda\xde\x04\x1b\xed\x9e\xce\x74\x4e\x40\x64\x62\xa1\x84\x9e\xd1\xc1\x6a\xd2\x81\xaa\x10\x8b\xe9\xbc\xb4\x47\x85\xbb\xe5\xcc\x99\x00\x2b\x37\xb7\x2f\xd0\xac\xda\x12\xf7\x5e\x65\x9c\x94\x31\x3c\x7e\x52\x13\x51\xeb\x73\x86\xf0\xfc\x2a\xe5\xeb\x69\xa4\x9b\xa8\xf5\xf9\x04\xfe\x7d\x1a\x28\x5d\xed\x67\x5d\xe5\xa7\x21\x1b\xe2\x64\xa3\x60\x4b\x79\x86\x29\xc7\x77\xe4\xcb\x96\x4c\x2d\x08\x85\x87\x26\x05\x63\x77\x67\x6a\x85\xe7\xf8\x91\x93\x2c\x57\x96\x3d\x3f\x64\xd9\x92\x7c\x49\x8b\x6a\xad\x45\xb8\x26\x31\x92\x14\x17\xd1\x55\xfe\xdb\xd7\xbc\xd3\x90\x6b\x00\x1e\xe7\xb2\xa8\x06\xa0\xf6\xb5\x43\x18\x92\x39\x1c\x7f\xc9\xae\x07\xf4\xdc\xc1\xf1\x0e\x87\x4e\xc4\x46\x6d\x94\x95\xde\x54\x76\x91\x15\x55\xd3\xd2\x76\x6a\x7a\xf9\xa2\x9b\x8e\x65\xdd\x23\x49\x96\x5b\xb8\xed\x2d\xed\x72\x23\xab\x62\x7e\xa9\x73\x90\xc3\x0d\x9c\x37\xc8\xb9\xef\x18\x38\x99\x94\x70\x0f\x60\x9a\x0f\xd5\xb5\x7a\x0c\xf2\x09\xfc\x79\xa0\x8e\xf5\x7f\xaa\x13\xfc\x63\xac\xae\xbd\x08\x0f\x9b\x69\xa5\x76\xb1\x8f\x8f\xa0\x29\xff\x1a\xa4\x0d\x5f\xf1\xe3\x30\xd8\xf2\x1c\x93\xe1\xab\x20\xbe\x14\x9a\x1d\xc6\xfc\x2d\xbe\xd7\x90\xcd\x1d\x1e\xaa\xa7\x65\xb1\x72\xd7\x54\x98\x64\x3a\x77\x84\x0e\x24\xe1\xb8\xfb\x43\x4f\x05\xd4\xc7\x67\xfb\xdd\xa9\xc5\x5b\x23\xf9\xbf\x25\x86\x13\x71\xbd\xdc\xb8\x91\xf2\xad\xff\x08\x5e\xab\x9d\xd6\x84\x28\x60\x5b\x04\x1a\xe8\x69\x2d\x62\xd5\x68\x04\x02\x52\x3a\xa3\x2c\xac\xd2\x2c\x99\xeb\xf3\x6c\x5d\xa2\x1e\xae\x8b\xf7\xdb\xba\xa0\x99\xdb\x20\xb9\x45\x78\x4d\x37\x0f\x40\x6f\x51\x9e\xbd\x18\x20\xc7\xd7\x39\xe0\x1c\xf9\x93\x47\xe7\x1e\x32\x49\xb2\x5e\x36\x53\xb3\x75\x35\x5f\x58\xce\x67\x77\xaa\x41\x73\xf4\xac\x36\x9b\x46\xd7\x0d\x03\x0f\xc2\xc4\xb9\xea\xb9\x7d\xb0\x15\xa6\xca\x4a\x17\xa7\x1a\xc1\x22\x78\xb6\xf1\xfd\x7f\x06\x59\x52\x82\x71\x05\x49\x3b\x5c\xa4\xc4\xbc\xd6\x59\x0b\xbf\xbf\x31\xb9\x1e\xec\x5f\x7b\x9c\x98\xbe\xba\x30\xbb\x59\xcd\x05\x6f\xe2\x05\xf8\xaa\x8e\x6e\xfa\x30\x2a\x3b\x51\xee\xa2\x87\x61\x1c\xa9\x21\x7b\x0f\x60\xdd\x0f\xd5\x0f\x1c\xc5\x41\x85\x1f\x21\x34\xc5\x8e\xb0\x2b\x91\x08\x22\x8a\x47\x8b\xc6\x34\x8c\xc3\x2f\x2c\x6b\x38\x4e\x58\xd5\x99\x7c\x85\x56\xaf\xc8\xdb\xc5\x24\xf4\x9c\x45\xe7\x92\x5b\x28\xd8\x47\x8f\xdd\x46\xc0\xbe\x24\x5b\x94\xb2\x6a\xbe\x30\x2e\x2b\xa2\x65\xae\x00\x1f\xef\xfe\xdb\x17\xd6\x04\x49\xc5\x23\xf5\x11\xab\x7e\x1a\xde\x79\xb7\x08\x44\x54\x40\xc2\x60\x13\x7d\xee\xc8\x23\x97\x76\x65\x20\x7c\xe9\xc7\x32\xd4\xf9\x50\x1d\x1f\xf9\x94\x1e\x00\x0e\xf0\xa0\xbb\x95\x32\xbc\x6e\xe3\xa6\xef\x33\x42\xb4\x60\x12\x3e\x3e\xa2\x6d\x7a\x06\xb2\xd3\xba\xbc\x1c\xd7\x3a\xcb\x59\x4d\xf2\xec\xed\x6b\xf7\x8a\xc7\xa0\xb1\xa6\xf8\x53\x3b\x44\xda\xd6\x28\xce\x31\x0d\x5e\x1f\x80\xdb\xc6\x57\x92\x95\x4b\x40\xa6\x03\x2f\xa6\x52\x67\x57\x5a\xd9\xb6\xed\x3d\x04\x82\x18\x79\xb8\x12\xe3\x7e\xf6\xf6\x75\x98\xbe\x3b\x04\x4c\xf4\x2e\x10\x81\x7f\xf7\x88\xbd\x92\x3e\xdf\xf8\x95\xfb\xcc\x1b\xed\x33\xdf\xd9\x2b\xc7\xe5\xfc\xc0\x98\xb9\x57\xa8\x24\x08\xf2\x4f\xf8\x32\x32\xaf\x1c\x31\x96\x8a\x93\x4f\x88\x8c\x71\x23\xc9\x66\xec\x50\x3e\x26\x52\x09\x16\x9f\x3e\x41\x3d\x3c\x91\xaf\x30\xd4\xa2\x12\xc3\x50\x07\x62\xa8\xd0\x14\x4c\x65\x57\x5b\x02\x58\x3f\x02\x41\xe2\x0c\x3c\x27\xc0\x40\x75\xd5\x64\xad\xfe\xc9\xd4\x94\xc1\x64\x90\x07\xcf\x97\x38\xb5\xcc\x89\x58\x02\x91\x1a\xa5\x5b\xe5\x95\xf7\xba\xea\xfc\x46\x2d\x6d\xe2\x9a\x32\x87\x90\xed\x28\x91\x1d\xe5\x26\xe4\x1a\x8d\xea\x60\xfc\xfb\x20\x3e\x75\xa0\x76\x64\x73\x81\xc0\xa9\xd9\xba\x55\xeb\xc6\x52\x59\xf2\xb8\x39\xc5\x95\x6a\xd6\xb3\xf1\xaa\xb8\xd6\xe5\x98\x35\x5f\x18\xcf\x0e\x01\xf4\xf2\x01\x95\x5a\x51\xc9\xa9\x22\x16\xe4\x86\x7d\x4b\x74\xe4\x9d\x62\x24\x50\xaf\x15\xfb\xe7\xfb\xeb\xdf\x9e\x3a\x76\x06\x44\x35\x0b\xb1\x63\x30\x39\xe3\x83\x02\x43\x44\xed\xe3\xdb\x5e\xa9\xf0\x1a\xc9\x56\xab\xda\x5c\x17\xe8\xc7\xa6\xd6\x55\x5b\x94\xde\x16\x38\xd3\x73\xb3\xd4\x8d\xba\x2a\x20\xc3\xbe\x1a\x64\xa8\xa8\x69\x17\x6b\x68\x02\xfd\xfb\xcb\x2d\x5d\x3d\x90\xd2\x31\xe1\x9b\x18\xe5\x70\x00\xbb\xfe\x82\x72\x4b\xbb\xdf\x04\x20\xc7\x9d\x93\x11\xac\x10\x02\x21\xca\x45\xe0\x84\xec\x1f\x46\xb7\xa6\xa5\x38\xec\xf1\x68\x1c\xab\xef\xc4\xc5\xe6\xd5\x4b\xa5\x48\xf8\xcf\xde\x4d\x2f\x9b\x17\x80\xf2\x1d\x00\x5c\x0f\xa3\xf4\x48\x4e\xe4\x26\xf3\xf0\x0b\x19\x5f\xe9\xdb\xba\x4b\x78\x65\x27\xb6\x32\x48\x21\x10\xb7\xf4\xb1\xf8\x44\xce\x8e\xb6\xcd\xb0\xf7\x83\x30\xd7\x9c\x2f\x2a\x72\x7e\xba\xe1\xb9\x24\x0a\xb1\x67\x4f\xd4\x26\xe5\x23\x98\xeb\xa2\x1c\x78\x50\x26\x12\xe1\x0f\x79\xcf\x86\x70\x01\x0d\xd5\x5f\x14\x5d\x4e\x69\xaf\xa1\xb8\x6d\x2a\x1c\x7a\xae\x30\x9d\x85\x98\xa2\x69\xc7\xb9\x91\x2d\x6d\xef\xf5\x0e\x6d\xee\x29\x70\x3c\x2b\x5a\x5d\x0f\xd2\x1b\x0e\x2f\xc2\xc6\xcb\x48\xba\x69\x1d\x0a\x31\x41\x47\x37\x42\xb2\x86\xc9\xfb\xa5\xf7\x60\xc1\xc2\xda\x3f\xf2\x0d\x12\xdc\xce\x30\xc2\xbf\x15\xa9\x96\x46\x5e\x77\x10\xe2\x61\x7a\x07\xe2\x97\x56\xa4\x9e\xe9\x1a\xa3\x58\x8b\x06\x6d\x65\x23\x55\x58\xb9\x4b\xcf\x2f\x01\x06\x0c\x3c\x9c\x33\xe2\xd7\xca\xd4\xe4\x5d\x3c\xb3\xd4\x99\x35\x6a\x5e\xc2\xd3\x71\xc4\xe1\x29\x35\x71\x1b\x08\x52\x2d\x00\x50\x69\x93\x35\x13\x4b\x9f\xc0\x47\x8b\xc6\x72\x15\xf0\x98\x25\x54\xb1\x75\x99\x81\x0b\x73\xa3\x4b\x74\x06\x60\xed\x60\x4d\x20\xd6\xce\x21\x3a\x4b\x39\x5b\xda\xc9\xb2\x17\xb4\x54\x26\xce\xf4\xd6\xd0\xfc\x03\x07\x57\x20\xb0\x20\xa3\xde\x4f\xb5\x59\x42\xe6\x42\x78\xa6\x03\xc4\x31\x2c\xca\x88\x07\x2d\x88\x03\x8f\x7c\x20\x58\xf8\xa8\x2c\xa8\x05\xc8\x5f\x3e\x39\x55\x37\x9b\x54\x65\xda\xf1\x1c\xf1\xe8\xc3\x5c\x52\x8e\x8e\x29\xa1\x2d\xf5\x89\x8a\x3e\xf0\x6b\x51\xd3\x44\xce\xa5\xfe\x68\xb5\xc3\x43\xf5\x53\x56\x94\x8d\x5a\x57\xab\x5a\xe7\xc5\xbc\xcd\x66\xe5\x16\xa1\x55\x3e\xfe\xaf\xff\xf8\x44\x29\x04\x80\x66\x8a\xc6\x0a\x68\x17\x17\x3a\x67\xeb\xe8\x7f\xaf\x8b\xf9\x65\xb9\xb5\x4f\xa7\xb6\xde\x92\x6f\xa4\x26\x86\x68\x5f\xf9\x30\x24\xb8\x69\x4e\xd5\x56\xfc\xf6\xbb\xfb\xad\x35\x2b\x84\x4b\xc8\xda\xf9\x42\x0d\x74\x77\x8e\xb1\xb5\x27\xe1\xd2\x8a\x2c\x72\x8f\x73\x25\x23\x19\xdd\xbf\xcf\x06\x19\x74\xe8\xa5\xe4\x5d\x70\x4c\x12\x8e\xe4\x6c\xed\xb1\xe7\x0f\x91\xbc\x99\xc7\x4c\x9d\x65\x27\xb4\xb9\xcf\x4d\xf9\xac\xc0\x90\x5b\xb3\xae\xda\xa7\xa6\x5c\x2f\x2b\x3a\x85\x70\x56\xd9\xa3\x46\x5c\x3a\x6d\x36\x7b\x5f\xfc\xa9\x87\x14\xf5\x27\xc3\x3f\xdc\x0c\xc1\x9b\xde\x8f\x66\xe4\x2f\xa0\x23\xfa\x37\xac\xfe\x60\x70\x0d\x80\x00\x94\x37\x4b\xdc\x36\x4e\xb4\x4f\xde\x45\x90\xbc\x08\x87\x1e\xe7\x76\xc3\x5e\x25\x80\x3f\x67\x83\x50\x9a\x00\x01\x62\xe0\x5c\x17\xc9\x07\xd3\xe1\x1c\x6f\xa0\x84\xe3\x04\x14\x91\x2b\x10\x5d\xfe\x09\x94\x7f\x0f\xb5\x5f\xf9\x97\x5a\x95\xc0\xf6\x3f\x33\x29\x32\xa9\x12\x61\xd5\xf6\xe0\xba\x86\x42\xf7\xe5\x80\xbc\xba\xd9\x27\x20\x45\x43\x5a\x21\xd0\x01\x42\xe1\x84\x8e\x76\x00\x84\x72\x02\xc2\x97\xe3\xe3\x71\xdf\x45\x6f\xf2\xeb\xf7\xcc\xe2\x52\x10\x2f\x94\xb9\x74\x61\x36\xb2\x58\xf4\x33\x29\x11\x7d\x89\x61\x68\x1a\xec\xfc\x8e\x9a\xc7\x62\x99\xd5\xe2\x81\xcc\x5f\xd4\x74\x3a\x55\x98\x03\x5b\x0d\xfd\x47\xb0\x2a\x9c\xee\x25\x2f\x44\x0f\xbe\x75\xe3\x93\x3c\xfd\x54\x67\x17\x40\x40\x53\x16\x84\xd1\x92\xd2\xa0\xc7\xb7\x54\x67\x3c\xa3\x3f\xb9\xca\xc0\x25\x62\xd3\x65\xb7\x19\x77\x27\xdc\xa9\xa1\x9e\x1d\x05\x0f\x71\x5d\x4e\x10\x83\xaa\x0f\x2d\xf5\x1e\x4f\xff\xfe\x7d\x05\x58\xc8\x5c\xcd\x7e\x07\xe2\xed\xd1\x08\x23\x26\xe7\x34\xea\x46\x2a\x9a\x31\xb4\xe1\xbc\x36\x4b\x2b\x99\xdb\xc3\x92\xa2\x7a\x80\x56\x84\x92\xad\xe1\x72\x1d\x88\x1e\x4b\xf2\x3d\xe3\xf0\xa9\x88\xa6\xd4\x8e\x5e\xae\xda\xed\xc0\x0b\x1c\xbe\xc4\x97\x2f\x92\x6f\x59\x9a\x43\xb0\xb0\x0f\x0b\x5d\x11\xed\x48\xd9\xcd\x3e\xdd\x1d\x49\x61\x49\x20\x2c\xec\x66\xa1\xb3\x7c\x24\xc9\x20\x80\x77\x77\x9d\xf6\x34\xf7\x0b\xc0\x52\xba\xd6\x46\x92\x10\x86\xb1\x9d\x2a\x40\x21\x7b\x56\x67\x1b\xfb\xac\xa1\xe8\xda\x30\xaf\x13\xba\xa4\xf9\x04\x71\x3d\x33\xc0\xb1\x9b\x75\xbb\x5a\xb7\x71\x18\x49\xc7\x1a\x88\x85\x09\x03\x00\xcd\x13\xf8\xbf\x77\xc3\x5e\xdb\xf3\x07\xa6\x01\xa5\x12\x76\xdb\x97\xe3\x7f\xff\xff\xac\x8f\x8e\xb2\xa3\xfd\x30\x0b\x33\x56\x46\x4d\x20\xfe\x3b\x4c\xad\x0b\x21\x53\xf8\xe4\xa5\x5c\xb5\x41\x29\x8c\xa0\x5a\x99\x86\xb0\x20\x52\x65\x9c\x8e\x50\x5e\x4d\xb6\x8a\x07\x1d\xc4\xfa\x56\x20\x17\x33\x9f\x8b\x39\x73\xd3\xac\x05\x37\x0d\xc6\xca\x09\xff\xa9\xf7\x51\x1c\xf7\x48\x59\x3a\xac\xf0\x5a\x81\x78\xde\x6f\xff\x58\x2f\x57\xdf\xaa\xa2\x52\xb3\x62\xec\xdc\x50\x33\xb4\x1a\x3a\xba\x87\x76\x9f\xfe\xeb\x6b\xaa\xc4\x17\x17\x63\x2e\x97\x5b\xc9\xae\x68\xad\xbc\x40\xb8\xbf\xdf\x53\x44\x6c\x0c\xfc\x18\x6d\x4f\xaa\x8a\xdf\x25\xac\x11\xec\x55\xaa\x82\xdb\x32\xbf\xd2\xe1\x6e\xb9\x76\xec\x9e\x4d\xfe\xfa\x83\x4c\x65\x1c\xd8\x7d\x97\x2b\x22\xf8\x6c\xa4\x66\xe2\x52\xcb\x08\xa3\x68\xc6\x4e\x31\x19\x2b\x24\x66\x1c\xb2\xeb\xcf\x64\x74\x0c\x55\x66\x8f\xe9\xa2\xb8\x58\x94\x76\x98\x3a\xf7\xb2\x7e\xcf\x09\xed\x30\x85\xf8\x84\xa6\x04\xf1\x51\x1c\xf4\x04\xe1\x38\xfe\x4e\xb9\xeb\x4d\x44\x52\x97\x9a\x26\xe5\x2f\xd4\x23\xbe\x47\x5f\x21\x2a\xc0\x6e\x44\x70\x1d\xd8\x29\xd2\xcf\xee\x00\x05\x4a\x1b\x54\x3a\x75\x13\x64\xc6\xba\x1d\xaf\x04\x1c\x7a\x59\x90\x8c\x7f\x32\x5a\x37\xcb\xf3\x81\x8b\x63\x24\xdd\x26\x47\x32\xca\x1b\x0e\xfc\x32\x51\x52\x41\x02\x3b\x22\x3e\x8d\x7f\x09\xe1\x93\xd2\xf0\x71\x1e\x89\xf0\x47\x6a\x18\x2d\x2a\xb4\x76\x7d\xe7\x0d\xd9\xe3\x7e\x70\xb2\xec\x16\xeb\x7c\x7f\xa4\x06\x22\x81\x73\x36\x6b\x4c\xb9\x6e\xf5\xa9\xc2\x20\xcd\x7d\x75\xa0\xfc\x39\x39\xfd\x3f\xd5\x0e\x2f\x0a\xc2\x25\xb4\x55\xdc\x41\x39\x55\x22\xcd\x32\x29\xbf\x19\xe0\xf1\xb1\xd8\xa3\xb1\x22\x07\xc6\x0d\xa6\x8d\xbc\x53\x77\x78\xda\xa8\x6d\x77\xcc\xe0\x70\xe1\xb1\x1a\x92\xec\x2d\x77\xc9\xd2\x37\xc7\x14\xa0\xe4\x6f\x05\x82\x27\xf5\x85\xdd\xb6\x27\xf5\x45\xe0\xad\xd2\x1f\x76\x36\x0c\x0a\xbd\xd2\xd5\x8e\x98\x73\xe7\xda\x02\xae\xb2\xb8\x61\xa1\x83\xc7\x20\x44\x4e\x57\xde\xb7\x29\x02\x26\x91\x21\x95\x43\x77\x07\x86\x00\x25\x64\xdb\xf2\x8c\xb9\x37\xb2\xa0\x13\x56\xa0\x54\xd1\xea\x3a\x6b\xf5\x8f\x45\x5e\xbc\x27\x35\x00\x07\x76\xd3\x3a\x59\xa6\x73\x44\x8b\x25\xf6\x92\x97\xe1\x04\x7f\x19\x09\xfd\x1b\xdb\x55\xed\x59\xab\x47\x4a\x18\xf9\x90\x33\x98\x25\xc6\xcf\xd1\x5a\x60\xf1\xbc\xa8\x11\xb7\xa6\xad\xf7\x53\x39\x21\x44\x0b\xad\x09\xea\xa3\x73\x7b\xb7\x85\x08\x25\x61\x28\x74\x6f\xb2\x68\x9c\xd8\xd3\x0e\x87\x0c\x12\xbc\x02\x3c\xeb\xfb\xf7\x11\xdd\x88\x9c\x48\x1d\x43\x3a\xe1\x49\x79\xbf\x46\x3f\xd6\x5f\xe8\x8a\x08\x17\xf0\xfe\x7d\xfb\xce\x23\xcf\x53\xbb\x8e\xf2\x74\x9c\xe0\x14\x85\xc3\x81\xe7\x25\xef\x48\x86\x18\xbb\x3e\xc9\xef\x9b\x71\xec\xdf\x83\x20\xc4\x8f\x77\xfe\xcf\x32\x2b\x9e\xd9\x48\xb9\x66\x46\x6e\x80\x63\x15\xff\x2c\x19\x8e\x52\x21\x64\xf7\xeb\x20\x27\x67\x6f\x3f\x62\x88\xcc\x94\xf8\x53\xdc\x3a\xe9\x19\x82\x5f\xd5\x43\x3f\x52\x3b\x3b\xe6\xb8\xef\xc1\x4b\x33\x2c\xeb\x62\x4c\x7d\x85\x9b\x68\x5c\xbe\x6a\x30\x7f\xb7\xd2\xbd\x13\xdf\x0b\x16\x80\xc7\x09\xa3\x63\x48\xff\xb3\x57\x1d\x22\xe2\x8d\xbf\x85\x8a\xe4\xb6\xf3\x94\xc2\x8d\x47\x3a\x22\x9a\xbc\x95\x8c\x04\x55\xe2\x74\x02\x9a\xfc\x97\x89\x08\x07\x12\x2c\xa1\x9f\xec\x58\x85\x3f\xff\x53\x24\x44\x88\x03\x34\x5f\x9e\x4e\x44\x28\x45\x98\xb9\xc4\xd5\xc2\x14\x40\x77\x08\x93\xf4\xd4\x38\x9c\x30\x97\xe6\xff\x28\x6c\x48\xaa\x35\x1d\xe4\x00\xa0\x41\x54\x76\xc3\x9d\x27\x0b\xea\x08\x5b\x0d\x2e\x71\x71\x43\x33\x0d\x36\xa9\x52\xb7\x5a\x01\x80\x34\xda\x5f\xeb\x2d\x60\xe4\x5c\x82\x83\x4c\xd6\xaa\x85\xae\xf5\x24\xa8\xeb\x97\xc0\xf1\xb9\x15\x26\x32\x18\x1c\xfe\x9f\xe6\x70\xd2\xb2\x66\xdb\x5d\x41\x94\x53\xc1\x95\x3b\x1e\x0e\xd5\x63\xf5\x00\x22\x0f\x46\xcc\x05\x43\x72\x50\x9d\x43\x42\xdd\x46\x67\x37\xdc\xe2\xa8\xc4\xff\xc7\x47\x19\x43\x73\x5a\x36\x9d\x3b\x60\x61\x41\x1c\x91\x5f\x9a\x02\xcf\xae\x2f\x5f\xc8\x6d\xb3\x4b\x38\x33\xe3\xa2\x3a\xee\x4c\x3a\xad\x19\xa2\x53\x5d\xd0\x9a\x18\x18\x6d\x1b\xb7\x3d\x72\x57\x99\x73\x19\xc0\xc3\xb2\x73\x33\x3a\x87\x8d\x3b\xb8\x95\x59\xed\x89\xfb\x8e\xf0\xff\x41\xfd\xc0\x0f\x0d\x5a\x73\x4a\x4a\x31\x64\x11\x95\x7d\x72\xf9\x9a\x96\xe9\x28\x7c\x65\xe8\xbb\xaf\x2a\xde\xcf\xb2\xe2\x3d\x8e\x21\xe9\xf6\x0e\xee\x59\xd4\x00\xc5\x5d\xdf\xa5\xe7\x6e\x35\xd9\xeb\xcd\x50\xfa\x8b\x7f\x4e\x67\x1a\x0a\x32\x01\x80\x35\xc2\x69\x70\x50\x67\x34\x52\xcd\x99\x71\xdf\x5a\x33\x60\x0c\x16\x28\xec\x72\x44\x37\x67\x1c\x58\x8f\x84\x25\x25\x4e\x5f\x72\x84\x5d\x20\xd8\xd1\x99\x99\x60\xb4\x58\x10\xad\xe3\xa4\x8f\x50\x99\x0e\x32\xa8\x6f\x08\x92\x21\x24\x8b\xf0\x38\xbc\x10\x0a\x5c\xfc\xd7\x57\x9d\xf4\xc1\xdc\x0b\xd8\x41\xc4\x77\x6c\x58\xc8\xba\xfa\xbc\x45\x8e\x7a\x87\x49\x89\xce\x1e\xbb\x79\x04\x86\xc5\x03\xf0\xaf\x04\x5f\x20\xc7\x73\xfd\xdb\x8d\xa8\x27\xe8\x89\xa6\x14\xb7\x7e\x44\xcd\xb8\xa5\x9c\xf8\x64\x27\xb0\x41\xbe\x74\x64\x74\xc5\x09\xe1\x75\x27\xfa\xa5\xdb\xf0\x81\x64\x0e\xcc\xa2\x9e\xbb\xe4\x80\x4a\x54\x67\x36\xc0\x9f\xe2\x73\x18\x32\xb8\xb0\xa7\xe0\x6f\x81\x8b\x83\x1f\xc2\x96\x02\x0a\xb9\xcb\xb0\xa2\xa6\xe9\xa9\x95\x28\x1d\xf5\x23\x5c\xe4\xe4\x4a\x39\xf6\x1d\x4e\xc1\x6b\x15\xc3\x89\x86\xd5\x78\x91\xa2\xba\x3e\x09\x47\x42\x6d\xc4\x6f\x5b\xb6\xb1\xa2\xc2\x65\x3c\x2b\x8b\xea\xb2\xa8\x2e\xbc\xe6\xa2\xd6\xb0\xe9\x3f\xda\x1f\x9c\x62\x9f\x21\x92\x9a\x36\x6b\xf5\xe4\xdc\xcc\xd7\x8d\x96\xc8\xd0\x37\xbb\x2d\x8a\x80\x91\xfe\xb2\x6a\x75\x7d\x95\x39\xbf\x91\x09\xf4\xad\x6b\x87\x6f\x55\xf9\x8c\x96\xce\xa5\x0b\x46\xf9\xac\xb8\x22\xcd\x10\x18\x64\x8a\xb2\x68\x9d\x8e\x2a\x4a\x33\x83\x15\x60\xf0\xbf\x64\xad\x86\xc0\x89\x3d\x5c\xd1\xa8\x5b\x35\x55\x90\x44\x8b\x06\xe5\xdf\x59\x29\x87\xba\x5d\xc3\x18\xc0\xc0\xef\x99\xca\x8a\x05\xfb\xf0\x32\xc2\xd4\xe7\xfb\xa7\xea\x86\xdd\x80\xfa\x87\x28\x10\x77\x6f\x99\xcb\xc3\xee\x5c\x76\xaf\x0f\x0d\x23\x76\x19\xa8\x10\x10\x60\xbe\x6e\x6e\xdf\xdf\x8e\xc9\x06\x7e\x1b\x0c\x4f\x95\xa9\x7c\x13\x61\x07\xb9\x2e\xb3\xed\x8f\xe5\xba\x7e\x7e\x85\x6e\xf5\xce\x38\x84\xcd\xc3\xef\x45\x75\xe1\x8a\xf8\x7d\x6f\x74\x7b\x56\x2c\xb5\x59\xb7\xd1\x86\xd0\xd2\xf4\x34\xe0\x80\xe6\x76\x75\xc1\xa1\xb3\x4a\x99\xca\x7e\x27\xc7\x87\x1b\x75\x33\x52\xc7\x47\x47\xa1\xe5\xc9\xcf\x6e\xa4\xb4\x80\xb8\xdd\x35\x84\x3b\x74\x8f\xc7\x33\xda\xe7\x5a\x67\xf9\xdb\xaa\x44\x9c\xb6\xca\xb0\x92\x36\x3c\x5d\x7d\x3b\x04\x13\x6a\x8a\x8b\x2a\x2b\x61\xb0\xfb\xf0\xd3\xfe\x48\xe1\xc8\xc3\x65\xa1\x6a\x32\x73\x6c\x96\xe7\x4f\xcb\xac\x69\xa4\x71\x8e\xfc\xd3\x42\x55\x17\xd5\xf5\x2e\xcd\x10\xd9\x66\xc5\x65\xb5\xaa\xc1\x47\xa3\xc1\xb0\x2a\x78\x85\x9d\x17\x10\xbb\x02\xda\xef\x8c\x31\x0d\xb9\xe6\x52\x57\x6b\x40\xb6\x2c\x8d\x1d\x8d\xbd\x57\xe6\x5a\x20\x84\xd5\xba\xd1\xad\xda\x98\x75\x99\xab\x4b\x40\x05\xf0\x51\xa8\xa8\x71\x1b\x67\x65\x09\x91\xb1\xb8\x5b\x8b\x6c\x7e\x29\x02\x6d\x39\xbd\x34\xd8\xd5\x85\x17\x94\x2e\x7f\x32\x35\xa1\x22\xbf\xb6\x63\xb8\xc7\xea\x55\xfb\x9b\x88\xe7\x8e\x89\x1e\x06\x34\x90\xaa\x8e\x8d\x9e\x5d\x16\xb0\xe9\xbd\x24\xdb\x4d\xd6\x2e\x1b\x03\x99\x19\x60\x6b\x1e\x1c\x0d\xd5\x0d\x04\x15\x35\xcd\x5a\xab\xff\x71\xfc\x1f\xdf\x1d\x89\x5b\x23\x51\x7f\xae\x8b\x2b\x9d\x23\x81\x7a\xb3\x78\xc8\xb6\x25\xd2\xbf\xa3\xf7\xaf\xa0\x65\x47\x7a\x71\xe9\x1d\xa4\x37\x2b\xd7\xf5\xad\x94\xe7\x8f\x61\xbd\xfc\x7a\xca\xbb\xe9\xdc\x26\xa2\xb6\xb8\x50\x76\x32\x92\xdb\x38\x5d\xb3\x28\xce\xc5\x91\x05\x06\xf1\xc3\x91\x87\xb9\xc9\x72\x91\x63\xde\x65\x9f\x22\x8f\x9c\x5a\x57\x08\xd6\x4a\xfe\xfd\x59\x95\x93\xbd\xdc\xfe\x5c\xa0\x73\x50\x6b\x6c\x09\xae\xd9\x1a\xb5\xcc\xda\xb9\xf4\x07\xc7\x1a\xe4\xd1\xf5\xb2\xfa\x95\x12\x58\x84\xbe\x5d\xe9\xcb\x96\x1c\xb8\xaf\x7e\x64\x6d\x77\x04\xbe\x4f\x9a\xf8\x33\xc0\xfe\x49\x5a\x98\xfb\x92\xa8\x48\x87\x92\x75\x2d\x5a\x26\x47\x82\x91\x77\xc8\x1f\xa0\x1d\x5e\x58\x6b\xd7\xf5\x04\xef\xa3\x84\xc1\xb7\x27\xc9\xda\x5f\x43\x15\x27\x26\xd0\xb2\x0d\x41\xda\x34\x37\x0d\x75\x10\x7f\x14\xf0\x0f\xca\x8f\xc9\xd6\x1f\x8b\xa5\xa1\xdf\x83\xb5\x9a\x19\x0a\xcf\x09\xe5\x43\x8f\x5b\xe1\x7a\xda\x85\xe7\x1d\x74\x7a\xed\x6d\x57\x33\x87\xe0\xad\x84\xa9\x3b\x27\xcf\x9c\x75\x3d\x11\x7e\x73\x6a\xec\x53\x08\x04\x01\x0c\x0f\xd1\xeb\xdd\xf5\x90\x8a\x7e\xf1\xcb\x0a\x8d\x3f\x52\x93\xa3\xa3\x1f\x20\x43\x86\xfd\xf3\xa1\x1a\xdb\xbf\xfd\xea\x76\xfc\xf3\x78\x2c\xbc\xa3\xc3\xa0\xe0\x07\x99\x9b\x82\x8b\x4a\xee\x68\xbf\x75\x72\x10\xfd\x81\x14\xf6\x87\x7a\xa8\xf8\x77\x47\x5d\x7f\xf8\xf4\x43\xca\xf9\x0b\x76\xba\xb1\x55\x3e\xfe\x81\xb9\x2f\xdc\x1a\xde\xc8\x63\x09\x9e\xfa\x04\x60\x22\xbd\x80\xe1\x51\xe9\xd0\x89\x18\x39\x21\xc7\x34\x5f\xe4\xc5\x2f\x7c\x83\xe2\x73\xf8\x21\x4e\xc6\x11\xe6\x74\xfa\xa7\x3c\x57\x0f\x0e\x0a\x96\xe6\x7a\x1c\x51\xbb\x1e\xaa\x71\xba\xc0\x20\xd4\xe5\x46\xdd\x24\x42\x4f\x80\x0b\xb9\x88\x48\xe7\xce\x0c\x21\xf0\x38\x63\x4e\x8e\xa3\x06\x14\xa6\xd2\x30\x94\x26\x78\x5b\xae\x6b\x48\xa6\x43\x28\xac\x6c\xe3\x1a\x4e\x7c\xbd\x65\xe6\x50\xce\xc1\x66\x67\xab\xe3\x14\x90\xfb\xa1\xc0\xa9\x06\x8d\xd6\xca\xac\x5c\x56\x96\x77\xa6\x19\x32\x4c\x7a\x11\x00\xbb\xd2\x20\x2d\x3d\x36\x03\x69\x0e\x1d\xb9\x4e\x85\x3b\x35\x98\xfb\xdc\x60\xee\xdf\x77\xff\x86\xd7\xe7\x3d\x67\x5a\x91\xf6\x7f\x59\x64\xa8\x4e\xfa\xbc\xed\x91\x47\x0a\x83\xe2\x79\x69\x4c\x3d\xe0\xfc\x36\x0e\xa0\xd5\xf9\xab\xed\x39\x4e\x85\xec\x24\x39\x2c\xfa\xd5\x8f\x2c\xfe\x85\x01\x5b\xa3\x5b\x91\x1c\x12\x89\xb9\xed\x79\xcd\x46\x12\xa6\xd2\xce\x0c\xdc\xde\x53\x3f\xfa\x47\xea\xe1\xa1\x7a\x8e\xfb\x03\x99\x42\x29\x90\xef\x33\x5b\xc7\x6e\x30\x92\xcf\xff\x7d\xa3\xcc\xec\x0f\xc8\xb2\x92\x71\x36\xfb\x73\x53\xcf\x81\xc6\x4c\xc3\xf4\x06\x90\x66\xec\x90\x87\xc4\x55\x9c\x5b\xe2\x81\x8d\x1d\x72\x80\x62\x72\x79\x90\x5c\x02\xc7\x63\x7c\xb1\xd4\xc1\x92\x52\x39\x84\x71\x24\x7f\x62\xf8\x02\xca\xa5\xb8\x14\xa1\x34\x7a\x6f\x65\xdf\xe4\x43\x54\x57\x3b\x66\x48\x2b\xea\x4b\xd0\xf7\x9e\xa5\x0c\x50\xd9\x02\xcd\x91\x6f\x61\x38\xbc\x65\x37\x87\xf2\xd2\xb1\xe3\x13\x71\xb4\x38\x27\x34\x33\x96\x59\x83\x1d\x0c\x87\xea\xd1\x14\x0d\x25\xe1\xb0\xbf\x7e\x80\x67\x66\x28\xad\xf5\xfd\xc3\xa3\x25\xe0\x5a\x82\x03\x8b\x20\x1c\x20\x1f\x1f\x02\xea\x0e\x5d\x6b\x50\x1f\xad\x0e\xd4\xf1\xd0\xf3\xec\x71\x56\x16\x17\xc8\x75\x55\xb5\x5e\xce\x00\xca\xbf\xca\xd9\x41\x7b\x99\xd5\x97\x0d\xc2\x6d\x70\x00\x0a\x7b\x47\x2f\x4c\x5d\xfc\x69\xb9\x4e\x49\xbc\xa9\xa8\x2e\x04\x0f\x81\x76\x5f\xb8\x32\xe5\xf6\x56\xd1\x69\xc4\x9e\x95\x91\x5b\x25\x48\x8c\xfc\x0d\x9a\xa5\xb4\x41\x98\xf8\x35\x0e\xc5\xf1\x01\x54\x98\x25\xc4\xbf\xf3\x20\x40\xe9\x67\x28\x36\x4c\xe8\x4e\xec\x14\x41\xbf\xbd\x2b\xd4\x66\x7c\x4b\x60\x10\x3f\x67\x7c\xc6\x2f\x19\x11\xf6\x41\xcc\x2e\x15\x3a\xe4\x13\xb3\x2c\x85\x8b\xce\x1d\xfd\x4a\x71\xa1\xd8\xa7\xd4\xc9\x7a\x5e\x02\x4c\xaf\x44\xa0\x48\xe4\xda\x38\x38\x29\x12\x84\xbf\x84\xce\x48\x02\x64\x3f\xd5\xcc\x8f\xd9\xfc\xf2\x02\xf1\xae\x7a\x1b\xf4\x65\x7a\x9b\xf6\x02\x1b\xd2\xac\xf7\x9f\x85\xbf\xb3\x59\xe9\xd9\x0b\x7c\xe9\x93\x7e\xe0\xc7\x94\xe8\xf3\x19\x7f\xfa\xf8\xc7\xa7\xd4\x20\x44\x62\xf9\x1d\xcb\x19\x29\x88\x78\x97\x83\xf6\x06\xb4\xbf\x44\x14\xec\xe7\xe1\xe4\x07\xc6\x70\xa7\x8b\xdb\xe1\x3f\x88\x53\xca\x07\xb4\x68\x54\xd3\xd2\x13\x1d\xf5\x91\xf0\xbe\x29\xfe\xd4\xce\x83\x91\x25\x08\x76\x58\x82\x5f\x27\x21\x5a\x28\xea\x09\x58\xdc\xa2\xf8\x0d\x0c\xb6\x4c\x67\x4a\x7d\x85\x79\x0a\x67\xba\xf6\x1e\x47\x9f\x7b\xb0\xdc\xb1\x5c\x93\xc4\x79\xeb\xba\x04\x13\xb4\xb3\xaf\x48\xa9\x21\xa9\xc5\x51\x2f\xe8\xf3\x70\xb4\x2b\xa0\xc2\x36\xcb\x0a\xfb\x7b\xe1\x9b\x8c\xf3\x2d\xca\x2b\xaf\xd5\x0c\x17\x20\xc3\x6a\xfb\x1c\x93\x3e\x8a\x7f\x03\x4c\xf4\xa7\x3b\x01\xee\xc8\xff\xe4\x83\xdb\x0e\x8a\xb6\x59\x7c\xc5\x1d\x1f\xeb\xb2\xdd\x17\xc9\xb4\x8a\xaa\x42\xbe\x62\x47\x2c\x98\x5f\xc8\x57\xbc\x13\x1a\x14\x13\xbf\xa9\x31\x35\x81\x46\x1e\xb1\x2c\x3f\xcb\x93\xce\x21\xae\xe4\x97\x18\x2d\x1f\x00\x8f\xb0\x81\xd0\x5d\x39\xd8\xee\x28\xd5\x68\x38\x00\x1a\x9d\x3d\x07\xc7\xa9\xe6\xb9\xe5\xfe\x5e\x1d\x5c\x7f\xaa\x3a\x27\xd3\xec\xaf\xfe\x58\x49\xf2\x38\x51\xe3\xee\x30\x92\xab\x91\x1c\xa7\x70\xad\xc4\xe3\x84\x55\x21\xbc\x86\x74\x9e\x1d\x10\x42\x11\xef\x07\xea\x19\xe4\x03\xef\x9f\xfe\xf2\xf6\xd5\xab\x97\x6f\x7e\x56\x67\x2f\x5e\xbe\xf9\xf9\xbd\x7a\xf9\xe6\xec\xad\xfa\xf5\xe5\xf3\x0f\xf0\xf3\xcb\x73\x7b\x64\x31\x73\x9f\x6a\x8a\xd6\xa5\xfd\xb1\xd2\xab\x71\x52\x30\xe9\x45\x30\xfb\x18\x26\xa7\x28\xec\x85\x0c\x8c\x02\x2f\xb1\x5c\x99\x35\xbc\xd3\x30\x92\x1a\xd4\x88\xc8\x7c\x1a\xcf\x7d\xc8\xaf\xb5\x68\x12\x61\x19\xc0\x19\xf0\xae\xfc\x00\xfd\xa0\xb7\x65\x90\x36\x19\x35\x55\xcf\xde\xbe\x66\xb5\xf4\x48\xed\x63\xff\x68\x0b\x79\x59\xb5\xe6\xd7\x42\x6f\xf6\x87\xb1\xfe\xab\x5f\x62\x40\x9d\xc0\x9d\x82\x58\x2d\xe3\xc0\x11\x86\xd9\x5b\x7d\x82\x38\x07\x71\x49\x06\x58\x51\xde\x81\xf7\x3b\x01\x31\xc8\x22\x27\xe0\x8b\x07\x94\x36\x13\x88\xff\x85\x43\x25\xe8\xcb\x9a\x19\x8a\x79\x51\xaf\x9e\x4d\x82\x26\x81\x7f\xb8\xe7\xbd\x64\xee\xad\x16\x59\x25\x1c\x33\xc1\x3c\x0a\xa5\xec\xfb\x94\x31\x04\x9c\xb7\xf2\x83\xa3\xa3\x99\xf3\xa3\x4c\x3a\x4c\xee\xf0\x55\x74\x6e\x91\x03\x91\x58\x3e\x91\x97\x70\xdc\x93\x3a\xe3\x0e\xee\x90\x81\x2b\x64\x98\x99\x5e\x6c\x13\x4e\xf0\xe7\x6c\x05\xb7\x8e\x17\xec\x67\x3e\x59\xd2\xad\x3d\x79\xbf\xd0\x81\x40\x38\x48\x38\x7b\x3a\x6e\xf6\x60\xa4\x7a\x80\x11\xb8\x1e\xb3\xe5\x64\x16\x38\x79\x73\xf8\x1d\x22\xe8\x4c\xf7\x37\x09\x8e\x7c\x14\xdc\x9e\xef\x68\x58\xc0\x41\x44\x0d\xb3\x38\x41\x64\xc3\xfa\x06\x17\xeb\x08\x8f\x44\x90\xb9\x07\xc5\x92\xb2\xbd\x94\xdb\xe1\x48\x5d\xe9\xba\x38\xdf\x62\xc6\xb4\x0c\x04\x8a\xa2\xf5\x50\xbe\x33\x3d\xa7\xb4\x62\x14\x98\x8d\x38\xd3\x4e\x9b\x9a\xd5\xda\xc1\x38\x22\x97\xa1\xdb\x33\x1f\x75\x32\xb0\x35\x66\xa9\x11\x21\x68\x99\x6d\xd5\xb7\x79\x5d\x9c\xb7\xdf\xaa\x7c\x0d\xc6\x8b\xbc\xce\x36\xf6\x5a\x10\x7c\x06\x27\xf8\xce\x34\x6e\x85\x5c\x36\x2d\x00\xbb\xc1\x54\xb6\x9e\xe7\xe0\xdf\x02\x2c\x46\xf1\x17\x72\x57\x66\x7c\x8c\x5b\xd2\xd0\xd8\xb3\x06\x61\x1c\x53\x02\xde\x61\x73\xc8\x7b\xdd\xc2\x0f\xa8\x67\x71\xe0\x61\x51\xae\xba\x26\xc0\x88\x95\x51\xa7\x88\xd2\xd8\xb0\x87\x15\x72\x75\x9f\x2c\x4a\xa6\x0e\xa2\x94\x28\x85\x6b\x8c\x12\xdf\x80\x97\x28\x78\xe4\x6f\x0a\x48\xba\x26\x7e\x0c\x1b\xb5\xad\xbd\x33\xcd\xe0\xef\x80\xdb\xe7\x61\xe5\x82\x19\xd8\xed\x5b\x57\x73\xcc\x52\x0d\xf5\x31\x7e\x85\x7a\x7b\x0c\x2d\x70\x2a\x9d\x51\xcf\x58\xd5\x63\x31\x3a\x75\xe2\xf2\x61\xb9\x1c\x75\xf0\x09\x5a\x47\x37\x97\xde\x66\xba\xbd\xcd\xc1\xe3\x42\x66\xdd\xe3\xc6\x6e\xe4\x63\xa9\x2c\x96\x45\x8b\x42\x3f\xfe\xf3\xa1\xfa\x81\xfe\x19\xa9\xd2\x5d\x42\x6e\x6f\x1a\xd9\x0d\x1a\x4a\x79\x8b\x1c\x4e\xd7\x53\x2e\xc9\x0e\x41\x30\x27\x98\x94\x03\x0e\x57\x27\xdd\x76\x34\xbf\x88\x08\xa1\x85\x52\x0a\x39\xdd\x43\x90\x9f\xd3\xf5\x83\x4c\x67\x14\x7b\xd5\x75\xeb\x81\xdf\x84\xaf\x06\xaa\xb6\x31\x1d\x80\xb0\x3a\xa5\x2f\x72\xbc\xee\xee\x1d\x73\x86\xa3\xb8\x2a\x3b\x4a\xf8\xca\x1c\x41\x70\x40\x23\xb8\x89\x2e\x2c\x72\x7e\xa6\x64\xe0\x24\x4c\x60\xb6\x28\x92\x24\x7c\x85\x36\xab\x29\x31\x43\xf0\xde\x3e\xb3\x13\x86\x1f\xd9\xc5\x30\xf1\x1a\x27\x61\x84\x9b\xf7\x55\x05\xa0\x4f\xa0\x6d\x7f\xcf\x05\x60\x24\x89\x8a\x52\xf3\x0e\xeb\x90\xcd\x38\xc7\x95\x68\x7d\xec\x86\x3d\x54\x8f\xd4\x31\x62\x0d\x77\x52\xc1\x4b\x5f\x95\xb8\x2b\x98\x54\x67\x90\x8d\x6e\xdf\xbb\x9f\x93\x43\x84\x98\x8f\x5b\xc7\xf8\x0a\xbd\x6a\xdc\xf2\xdd\x75\x94\xf7\xe8\x77\x5b\x74\x56\xeb\xec\xb2\x1b\x65\xe7\x52\xea\x46\x37\x91\x95\x16\xcc\x79\x37\xe1\x75\xf7\x4e\xea\x5c\x01\x01\xff\xaf\x83\xa8\xfa\xaf\x20\xa7\xdb\x29\xe1\xce\x34\xe0\xc4\xb4\x5b\x76\xed\xae\xfb\xe5\x8d\x09\x3c\x05\x95\xa9\x4a\x6f\x62\x43\x80\x80\x44\xa2\x5f\x82\xac\x1e\x84\x8a\x50\x6a\xbf\xb2\xfe\xe9\x9f\x55\xa4\x4c\x46\x3b\x8c\x9f\x7f\x56\xe5\xfe\x75\x00\x13\x10\x76\x02\xcc\x58\x81\xa9\x03\xf0\xb2\xc8\xf5\x79\x51\xd1\xf5\x2e\xb3\x70\x1d\x0a\x1d\xa1\x1b\x6f\x6e\x74\xa3\x2a\xd3\xc2\xc0\xed\xb0\x67\x9a\x72\x59\x04\xba\x86\x5d\x3b\x77\x8b\x1a\xb1\xa9\xb2\xd5\x6b\xbe\xe6\xd3\x40\x2f\xb1\xec\xef\x42\xae\xe9\x6f\x29\x1e\x34\xf3\x5a\xeb\xaa\x65\x76\x23\x3d\x1b\xe0\xdf\x5d\xba\xb1\x4c\xbf\xfb\xe3\x2d\x56\x0e\xdf\x95\x7f\xd1\x78\x84\x90\x38\x54\x3a\x7e\x82\x08\x01\xf9\x11\x35\xe3\x26\xe4\xac\x21\xa1\x0c\x6d\x7b\x12\x2a\x18\x67\x82\x25\xae\xc0\xa9\xf0\x59\x9a\xff\x55\xd7\xde\xc0\xc9\x80\x66\xc4\x85\xc5\x3a\xfa\xc5\x1f\xa9\xac\xfd\x31\xe8\x9a\x06\xf2\x48\x74\x37\x16\x15\xba\x9b\xe2\x96\x9e\xd9\x1d\x07\x72\xbb\x45\x9d\xd2\x18\xd0\x79\x92\xab\x86\xd9\x30\xc3\xbe\xfd\x76\x1e\xf8\x85\x72\x57\x4b\xa5\x37\x67\xde\xdc\x64\x2f\x53\x6e\x73\xa4\x06\x6e\x3e\x8f\xc5\x0c\x4e\xe4\xdc\xec\x05\x4b\x8d\x3a\x06\x49\x4d\xde\x9b\x06\xd3\x49\x4d\x85\x4a\x86\x1e\xbc\x50\xa7\x74\xf7\x59\x1f\xf9\x49\x36\xd3\xa5\xbf\x57\x18\x96\xb6\x43\x77\x1d\x74\x27\xb4\xf0\x32\xa0\xb0\x47\xe7\x69\x97\xa3\x5f\xa9\x0d\x28\xf1\xce\x56\x68\x3e\x60\x2c\x63\xfa\x29\xe5\xb6\x87\xf5\xfe\x54\xc1\x91\x32\x27\x03\x15\x19\xe0\xdd\x90\x83\x63\x41\xb9\x0e\x8e\x8f\x7c\xde\x37\xb1\xdc\x24\x1e\x1c\x25\x9e\xf4\x54\xd1\x2f\xfb\xae\x06\xa4\x49\xd3\xd7\x1e\xbb\x71\x73\x86\x84\xa3\xe1\x30\xd1\x55\x4d\x78\x88\x3c\x81\x03\xb9\xd9\x84\x02\xd5\xd7\xb3\xcc\x77\x9f\xe8\xce\x91\xe1\xa6\x37\xde\xfd\x3d\x98\xe9\x33\x9f\x2f\x12\x99\x30\x68\x88\xe9\x15\x13\x5f\x35\x94\xa6\x85\x14\xca\x90\x29\x7b\xa5\x6b\x84\xef\x1a\x10\x27\x5f\xad\xca\x42\xe7\x1e\xcd\xc3\x97\x38\x2f\xaa\xa2\x59\xe8\x46\x5e\xe6\x59\x9e\x9f\x99\xf0\x72\x75\xa7\x9d\x83\x4c\xa7\x1d\x9c\x45\xf2\xb7\x32\xe5\x95\xbb\x98\xf1\x7e\x18\xa2\x9b\x63\xcc\x79\x31\xaf\x4f\xe7\xab\x3c\x2c\xa1\xac\x76\x92\x68\x65\x88\x01\xa1\xb4\x7a\xaf\xb3\x4b\xad\xbc\x76\x9e\x54\x64\x56\xee\x27\x75\x9b\x9f\xb7\xd4\xc1\x3b\x1d\x1a\x5c\xaf\x0b\xb3\xa9\x26\xb1\x63\x28\x2a\xc3\x7e\xc5\xd7\xb5\xd3\xab\xf7\x4e\xd7\x3b\x03\xcd\x97\x93\x0b\xdd\x12\x1a\x41\x72\x25\x50\x26\x22\x1b\xe1\x7c\x5d\xa3\x89\x10\xfe\x81\x32\xf9\x49\xd7\x4f\x16\x7b\x7c\x4d\x22\xbb\x74\xd1\xe4\x56\xc5\x83\xc6\x63\x74\x63\x1a\x44\xe6\x47\x90\xf5\x20\xc0\xcb\x4c\xcd\x46\xe4\x4f\x14\x65\x53\x9c\x6c\xaa\xae\x5d\xe1\xed\x8e\xc2\xb8\xf9\x5b\x95\x1e\x78\x14\x16\x7e\xcb\x42\xf7\xac\x26\x22\x43\x20\x51\x7c\x20\x2b\x8a\xdf\xfb\x45\xd6\x40\x32\x25\x59\xc7\x65\xa6\x6f\x34\x39\x68\x64\x15\x3c\xdf\xbd\xc8\xa5\x10\x71\x16\xde\xfa\x74\xa0\x1c\xfa\x72\x9a\xca\x50\x69\x0b\x09\xf0\x9b\x62\x09\x82\x53\xf3\xad\x37\xcc\x22\x95\x26\x34\x3f\xe0\x87\x02\xb9\x82\xd5\x06\x64\x27\xca\xe3\xca\x04\x7d\x7e\x6e\xc5\x43\x73\x9e\x4c\x09\x3c\x37\xcb\x65\x56\xe5\x0d\x18\x8b\x4c\xab\x8a\x8b\xca\xd4\x81\x14\xd7\xb3\xd1\x2c\xbf\x31\xd8\x49\x6a\x6d\xf7\x04\xda\x89\xf0\x2f\x4e\xed\x81\x8b\x95\x12\x0e\x19\x89\xe4\xc4\x3e\x08\x86\x1d\x33\x7a\x0b\xb5\x46\x6a\xe6\x98\xc6\x3d\xc1\xf8\x58\x60\x2c\x4f\x7a\xa7\x0e\x00\xc2\xed\xf5\xa5\xc6\x0a\x2e\xe0\x9d\x0f\x17\x8f\xf7\x29\x9e\xfb\xe8\x81\x41\x11\x55\xf2\x91\x1e\x6a\x05\xa0\x18\x05\x87\xa6\x94\x01\xb1\x12\x00\xca\xbb\x08\x52\xca\xba\x87\x45\x3b\xaf\x7e\x28\xcb\x6f\xfe\xd6\x74\x1e\xfb\x7b\x14\xbc\x94\xe0\x19\x4d\xf8\xf0\x09\x3e\x88\xe4\x86\xef\xb7\xd5\x5c\x5c\x4a\xd9\xac\x84\xd7\x47\x86\x2e\x67\x0c\x22\xd7\x8c\xbc\xd1\xd4\x3b\xbf\x20\x98\xdb\x15\x02\x3c\x7b\xcd\xa5\xad\xde\x71\x35\x0b\x2f\xa3\xab\xac\xf4\xfc\x6c\xd7\xdb\x1e\x0a\x92\x67\x60\xec\x35\x7e\xa1\xe7\x97\xc6\xbf\x25\x9f\xa1\xac\xf4\xbe\x58\xae\x4a\xa4\x86\xcf\xb0\x51\x57\x59\x79\x83\x3c\xd0\x3d\x11\xc5\x30\x7c\xd6\x0d\xdb\xe6\x2d\x4d\x52\x33\xf6\x29\xff\xc1\xd4\x97\x94\x0c\xb1\xe3\x64\x9f\xee\x07\xdc\x89\x48\xed\x4c\x64\x59\x4a\x81\x38\x85\x6b\x89\xff\x78\xc1\x8e\x93\xfd\xd0\x97\x2f\xc8\x2f\xcd\xae\x97\x37\xa4\xf7\x3f\x8c\x20\x92\x0b\x61\xf0\xee\x85\x03\x93\xcb\xdc\xd9\x10\xa8\x14\x02\x62\x79\x1a\x99\x04\xf3\xbe\xf3\x48\xee\x4d\x89\x1c\x92\xd3\x8b\xfa\xf6\xca\x77\x4b\xb7\x5c\x2a\x24\xd6\x80\x56\xc9\x9e\x4f\xd8\x69\xa0\x45\x07\x10\xc4\xb2\xb8\xa8\x02\x96\xda\xd5\x1f\xc0\xae\x15\xcd\x7b\xea\xe4\xf6\x1d\x84\x0a\xfd\x93\x60\xb3\xec\x2d\x00\xa6\xbc\x6a\x03\xdf\xb5\x7a\x8c\x5d\x25\x34\x6f\x9c\x81\xa0\x4f\xef\xe4\x0f\xd0\x57\x6c\x35\x09\x03\xb8\xd7\x49\x8f\xa3\x5b\x77\x96\xdf\x4d\xb7\x6e\xad\xef\xcb\x8d\x63\x07\x65\xc1\xe6\x00\x69\x49\x53\xee\x8f\x4f\x7e\x79\x8f\x49\xdf\x11\x58\x0d\x70\xae\x6b\x9d\xe5\x12\xd9\xda\x3b\xab\x0b\xbe\x36\x51\xcf\x4c\x05\x6e\xa3\xa6\xd2\x24\x3c\x82\x9c\xbe\x2c\xaa\x62\x59\xfc\xa9\xa9\xda\x21\xd9\x5a\x14\x58\x01\xda\xba\x58\x49\xc7\xce\xa5\x4b\x46\xfa\xde\xb5\xbc\x13\xe4\x5a\xb8\x2d\xa5\xde\x76\x5e\x7b\xf0\x22\x44\x75\xd9\xa5\x43\x90\x26\x41\xe1\xb9\x86\x17\xbc\x60\x12\x27\x2a\xef\xe1\x1e\x78\xd7\x17\x7a\xe3\x0b\xa6\xbc\xe6\x46\xe2\x0a\x77\xd8\xcf\x29\x5a\x1f\x29\x41\xd6\x89\x6e\x05\x14\xb5\xed\x75\x17\x8e\x34\xdd\x8f\x19\xe1\x54\xf7\x3e\x98\x79\x61\x4f\xd4\x11\x56\xb1\x6b\xc8\xb3\x31\xf3\x17\x72\xec\xf2\x7b\xca\xfc\xe9\x0d\x9f\x58\xab\x82\xf7\xdc\x8f\x99\x07\xbc\x0e\xbf\x60\xa9\x00\x32\x9b\xfe\x60\xf9\xc5\x6e\xea\x1b\xa8\xe3\xe9\x44\x4d\x1d\x16\xca\x80\xf2\xb0\xe1\x48\x2c\x2b\x41\x0a\xb2\x22\xe8\x64\x8e\x3a\x24\x06\x4b\xd4\x18\x3b\x6d\x7f\xa1\x7f\xf7\xf8\xcd\x48\x04\xb4\xfd\x65\x51\x8d\xc9\x0a\x7b\xbc\xba\xde\x1f\x7e\x0a\x23\x52\xae\xdc\xc1\x70\x90\xf9\xa0\x6a\xe4\x9e\xf8\x8f\xbb\x74\xc5\x36\xe7\xe3\xa3\xa3\xff\x79\x6a\x8f\xd3\xd8\x7d\x49\xf4\xbc\x08\x7b\x86\x85\x18\xd8\x89\x0d\x4f\xe9\x0f\xe8\x1b\xd0\xd9\x4c\x05\xbf\x38\x37\x87\x7d\x89\x26\x23\x3d\xf3\x6c\xa9\xd0\x11\x40\x7d\xa6\xc5\xc5\xdf\x84\x79\x63\x9f\x95\xab\xfb\x0e\xb4\x17\x7a\x82\x6e\x6f\xef\x0a\x8a\x05\x5c\xdc\x77\x85\xbf\x49\x51\x6c\xdf\x2b\x70\x7d\x77\x6e\xa3\x17\x7a\x7e\xa9\xf3\xff\xd2\xb5\x61\x07\x1d\x91\x1d\xf3\x0d\x69\x77\x1b\x80\x39\x07\x2e\xb5\x5e\x12\x52\x3e\x7c\x8e\x38\x1c\xe2\xc8\xfe\x87\x1a\xcc\xd6\xad\x5a\xae\x9b\x16\x5e\x14\xb6\x76\xd1\xe2\x6f\x7f\x75\x6e\xcb\x3d\xa1\x2a\x62\xef\xc9\x4f\x67\x59\x54\x0e\x31\xd9\x91\xa0\xff\x8d\x87\xbd\x7f\xfc\x57\x72\xbf\x3b\xdd\xdb\x8b\xe9\x7e\xb2\xaa\x4d\x6b\xda\xed\x4a\x4f\x88\x33\x4f\xc5\xda\x2e\x5d\xb2\xf1\x3d\x56\x20\xea\xbc\x79\xe1\x53\x62\x04\x77\xea\x23\xf7\x55\x02\x81\xa3\xd7\x93\xab\xfc\x6b\xa7\xf2\x0b\xce\x9c\x11\xd6\x76\xd8\x78\x5c\xbd\xe1\x09\x71\xb9\xf0\xdc\x73\x28\x19\xf6\xc2\x54\x11\xaf\x8b\xc0\xa0\x9b\x95\x66\x7e\xb9\x9f\x2c\xe5\x74\xca\x34\xdf\xc7\xdc\x39\xb9\x32\x9e\xa8\xfd\xa3\x7d\xef\x4d\x67\xda\xac\x7c\x11\x25\x0b\x99\x78\x0e\xae\xc6\x34\x2a\xd1\xd0\x09\x47\x2f\x61\xbe\xde\x35\x24\xe2\x7a\xf9\xfc\xaf\x90\xc8\x0b\x53\x1b\x83\x9f\xd2\x55\x56\xae\x35\xd9\x11\x2a\x7d\x01\x33\x06\x30\x92\x8b\x75\x56\xe7\xaa\x68\x27\xd1\x04\x84\x8f\x5c\x08\x77\x47\x26\x32\xa9\xd4\x4b\xee\xc3\xb8\x6f\x1f\xc4\x34\x87\x02\x12\x4f\x86\x32\xed\x58\xed\x78\xa1\x7b\xc7\x49\x4b\x7b\x13\xec\xe7\x8b\x60\x3f\xe5\x21\xd8\xb1\xa1\xb2\x18\xab\x56\x89\x06\xfb\x37\xb4\x53\x93\x94\xd3\xbc\x28\x74\xf9\x49\x3f\x38\x47\x03\x31\x81\xba\xeb\x54\x2c\x2a\xd7\x67\x9a\xf8\x35\x41\x13\x62\x0c\x9d\x65\x22\xe7\xbc\x5b\x77\x33\xee\x37\x3c\x92\x7e\xb8\x3b\xb7\xb2\x67\xa1\x3b\x2b\xd5\x37\xca\x78\x2f\xef\xa5\x59\xeb\xfd\xfb\x69\x9a\x13\x79\x09\xc1\xf6\xf8\x81\xa1\xe9\x8e\x1c\x3f\xfc\x93\x1b\x79\x91\xcd\x2f\x07\x1c\x9a\xd6\xc7\xc1\x9d\x43\xa2\x90\xcc\x48\x31\x90\xd8\x8c\x91\xd3\x04\x24\x4e\xef\xad\xec\x34\x10\x96\x03\xae\xba\x32\x8d\xd0\x01\x8b\x75\x0e\x44\x76\x2c\xa5\xd2\xbf\xa3\xf7\xc5\x8d\x6c\x23\x2f\x9a\x6c\x56\x6a\x78\x22\xb8\x8a\x1a\x1c\xc7\xdd\x12\xfc\x98\xd5\xa2\x43\xd4\xaa\x05\x15\xf9\x52\x84\xfb\xf0\xae\x13\xc4\x67\xe1\xae\xf9\x85\xd7\x7c\x3c\xbb\xe8\xd7\xfe\xb9\x59\x01\xfb\xd6\xa9\xa1\x50\x12\x57\x23\xd1\xe2\x2e\xf3\x0a\x48\x2a\x98\x98\xbf\x07\x37\xf6\x94\x67\x73\x78\xcd\x2d\xb3\xf9\xdf\x2f\xf4\x6b\xb3\x86\x18\xb5\x57\xb6\xe4\x63\xb5\x7f\xfc\x80\xf8\x0a\xdc\xbe\x7b\x89\x03\xb5\xe8\xbb\xbb\xf9\xf0\x6c\x52\xb5\x56\x06\x74\x95\xcf\x31\x24\xbe\x5b\x39\xfe\x7d\xbf\x32\x95\x76\xfd\xcb\xbd\x46\x93\x9c\x7a\xa6\xcb\x6c\x0b\xbe\x50\xf1\x9a\x45\x05\x6e\x59\xb6\xee\x7e\x04\x6b\x07\x1a\x01\x88\x05\x1f\x29\x5b\x1e\xd7\x72\x96\xd5\x7d\xe3\xce\xd6\xad\xd9\x97\xa0\x90\xe0\x85\xfb\x0c\x87\x37\x10\x4e\x6a\x67\x94\xde\xde\xac\x5b\x97\x83\x21\x14\xbe\x5c\x18\x01\xe9\xc6\x46\x6a\x23\xf2\xf4\xeb\xf9\x65\x50\x8f\x01\xde\xd7\x55\x4e\x5f\x20\x85\x0d\xdb\x87\x66\x3e\xba\xf7\xf0\x90\xd2\x25\xcc\x4d\x5d\xe9\x9a\xd5\xd6\xbe\xe3\x99\xb9\xc6\xac\x2e\xd1\x47\xae\x5d\xb4\x8d\x2e\xcf\xd5\xc0\xd9\x93\x52\xa3\x1d\x2a\x53\x83\x9a\xfd\xbc\x00\x2d\xc4\xdc\xf2\x59\x6e\xa1\x53\x95\x22\x63\x20\x61\x45\xd1\x26\xa7\xae\x2e\xb5\x5e\xf9\x21\x28\xdc\x39\x4c\x2d\x0e\xb9\xba\xb1\x8d\x11\xe5\xc0\x04\x65\x24\x6d\x0f\xa6\xcb\xa0\x14\x71\x3e\x6c\xd9\x6e\xe3\xae\x88\x65\xf0\x24\x03\xf3\xbe\xdd\x7a\xf0\x81\x83\xd3\x88\xa6\x66\x74\x1d\xa6\x65\xff\x09\x80\xa4\x8a\xaa\x85\xf4\xf8\x6c\x43\x3d\x1e\xf9\x74\xf9\x07\x22\xea\x79\xa8\x0e\xd5\x03\x1f\x77\x73\xb2\xa3\x39\xd1\xde\x81\x4b\xb5\x0f\xf5\x47\x61\x18\xf5\xb1\xc8\x3a\x52\x02\x2b\x9e\x65\x35\xf8\xff\xf4\x13\x2b\x1c\x32\x91\x6d\x45\x7d\x46\x5a\xb7\x4c\x72\x70\x7c\x74\x64\xaf\x67\x41\xbe\x1e\xab\x7b\x67\xa9\xdb\x8e\x1c\x40\x15\xf4\x70\x28\x8c\xe3\x0d\x9e\x8c\x22\xb6\x77\x4f\x51\x81\xc0\xc1\xd6\x17\x1d\xee\x28\x00\xef\x41\x18\x1a\x3c\xa4\xd7\x65\x99\x7c\x46\xc3\x60\x60\x02\x41\x89\xdd\x0f\x0e\xa1\x0e\xfb\xcc\x97\xef\xd1\x88\x95\xf7\x47\x37\xea\xe6\xb4\xbf\xbd\xfe\x1b\x17\x47\x72\x7b\xc5\xf8\x26\xbb\xa5\x5e\x72\xfd\xed\x94\x93\x5a\x77\x52\x47\x39\x41\x4d\x84\x14\xf9\x2f\xfc\xa3\x97\x22\xbb\xea\x2c\xe7\xba\x03\x1a\x70\x06\xae\x13\x40\x15\xac\x09\xc1\x12\xee\x65\x12\x16\x71\x28\x06\xf1\x18\x21\x72\x24\x18\x68\x4f\x94\xde\xf7\x2e\x97\xb2\x4b\x19\x98\x18\x85\xfa\xf2\x25\x18\x47\xa7\x14\x7e\xef\xe4\x18\xb8\xbd\x61\x74\x13\x49\x39\x34\xfb\x90\xb7\x5d\x48\x17\x37\x7b\xb1\x1b\x64\x72\xfa\x9d\x0d\x20\xe3\xd9\x2d\xab\x7f\x7a\xb7\xd5\x17\xc1\xaa\xcd\xb6\x9a\x2f\x6a\x53\x15\x7f\xa2\xf6\xe0\x1c\xac\xf0\xfe\x6c\x31\x9c\x00\x43\x83\x40\x68\x18\x25\x39\x06\x1b\x10\xe4\xc9\xe9\xb1\xf9\xa4\x77\xb6\x47\x35\xca\x04\x06\x59\x09\xa7\x4e\x65\x08\xe4\x8f\x8d\x3a\xd5\x80\x15\xa5\x73\x8a\x4d\x21\xe6\x88\xda\x50\x46\x52\x1d\xe4\x7e\xc7\xa6\xd8\x24\x59\xdb\xfc\xcb\x23\xd9\x80\xf3\xae\x1a\x08\x1d\xa0\x6b\xc2\xdb\xe0\x5c\x1b\x28\x50\xfd\x64\xea\xb9\x6b\x6a\x06\x88\x92\xae\x25\x59\x15\x6b\xaa\xc6\x94\x45\xae\xda\x3a\xab\x1a\x64\x78\x0e\x87\x5f\x0c\x15\x08\x3d\xe8\x96\x50\x03\xfd\xc2\xfc\x54\xa0\xde\x75\xc7\xa3\xb4\xaf\xf4\x22\x35\x33\xf9\xc0\xec\xab\xb8\xe9\x2e\x6a\xf7\x35\x77\x97\x41\xee\x7b\xff\x4e\x39\x84\xf0\x80\x81\x8d\x11\x55\xbc\x6f\xf4\x75\xcb\x9e\x2d\x56\xee\x08\x0b\x26\xe2\x6f\x59\xbf\x7e\xa7\x55\x4a\x14\xbd\xc3\x12\x25\x6a\x6d\xa2\xf7\xb8\x50\x0a\x27\xd7\x69\xf7\x18\xf7\xbd\xf6\xd8\x2d\xe8\x6b\x93\xeb\x52\x4d\xd5\xe7\x7d\x54\x46\xed\x9f\x74\x34\xcb\x23\xb5\x5f\xad\xcb\xd2\xfe\x12\xdc\x23\xd2\x54\x59\x54\x45\x9b\xb0\x59\x24\x6d\x3b\x33\x11\xcb\x99\x36\xd3\xc0\xb5\x24\x53\x99\x24\x4b\x31\x34\x97\xc8\x3a\xb7\x03\x31\xe9\x96\x36\xbc\x57\x5f\xb2\x20\xbd\x24\xc2\x65\x93\x79\x38\xdd\x2f\xef\xed\xaa\x7f\x12\xa8\x4a\x95\xc9\x75\x62\xba\x6c\x9c\x28\xaa\x46\xd7\xed\x8f\xe0\x3e\x02\x65\xd3\x43\xc5\x3d\x75\x1a\xb7\x77\x08\x29\x86\x09\xd9\x1a\x96\xec\xc5\x78\xc1\xcd\xe2\xb2\x40\xef\x12\x80\x71\x82\xaa\xa6\xa2\x3e\xf6\x21\x11\x58\x6e\x36\x55\x52\x17\xdd\x0b\x6a\xf5\xf5\x78\x5e\x0e\x11\xef\x66\xa4\x8e\x86\x21\x54\x2a\x00\xb6\x34\xbb\x72\xa6\x8d\x38\x61\x9a\xdd\x9e\x51\xf8\x46\x1f\xa9\xec\xba\x68\xe4\x95\x6b\xff\x06\xe1\x3c\x50\x8c\xa7\x9c\xba\xe1\xf9\x1e\x88\xbb\x29\xff\x02\x57\xea\x06\xac\x28\xbb\x28\x3a\x22\xc7\xcf\xbb\x91\xe3\x6e\xa7\x46\xbc\x54\xdf\xb2\x03\x11\xc6\x6d\xad\x29\xf2\xdc\xb6\xa3\x32\xd5\x68\xc8\x9a\x67\xce\x29\x08\xa0\x61\xcf\x40\x0c\x3a\x45\x28\x2d\x2b\xa1\x16\x95\x6a\xd6\xf3\x85\xca\xd4\x26\xdb\x52\x42\xd0\x6c\xbe\xa0\x6a\x6a\x03\xf9\x78\x17\xd9\x95\x0e\x0d\x9c\x70\x29\xa3\x4b\x5c\x56\xe5\xce\x9d\x7b\xb0\x59\x14\xf3\x05\x01\xd0\xcd\xb4\xca\x36\x97\x9b\xac\xce\x47\xaa\x29\xcd\x66\xc4\xde\xe9\x1a\x0c\x32\xab\xda\x54\xda\x3e\xe6\xaa\xa6\x85\x84\x3a\xdc\x08\xf6\x82\xd3\x9a\x65\xed\x7c\xa1\x11\x9e\xa8\x05\x27\x2d\xcc\x39\x36\x37\xcb\x59\x51\xd1\x0f\xfa\x5a\xcf\xd7\xad\xfd\xa3\x55\xa6\x9a\xeb\x09\x72\xb2\x4a\x5f\xb7\x6f\x57\x2f\x73\xc8\x97\x09\x7e\x93\x59\xdd\x92\x2f\xbe\x73\xbf\x92\xf6\x79\xfb\xbb\x5b\x56\x89\xbe\x88\xae\xbb\x53\x77\x54\x4f\xd4\x7c\xe9\xad\x8a\x4f\x31\x8c\xe2\x84\xd3\x26\x2a\x3a\x89\x3f\x95\x19\xb9\x6f\x15\x55\x5e\xcc\x29\xc5\x6a\xd6\x12\xd2\xcb\x12\xd8\xbe\xf0\xa5\xaf\x75\x5e\x67\x9b\xca\x4b\x60\x6c\x3e\x0c\x6c\xb2\x23\x25\x70\x06\x10\xc8\xcf\x35\x42\xfb\xe3\xe8\x06\x9a\x02\x8b\x3c\xc6\xfe\x77\x86\xc8\xed\x40\x19\x70\x29\xb5\x43\x10\xb2\xe3\x4b\x7b\x50\x19\xdb\xd6\x55\xfb\xc0\x2a\x05\x43\x88\x83\x1e\x81\xb0\xd5\xd7\x6d\x56\xeb\x0c\x75\x95\x5b\x2b\xb1\x86\xbd\x76\xda\x58\x14\x0d\xb5\xd2\x2c\x98\x6e\xe6\x59\xad\xcf\xd7\xa5\xed\x00\xd3\x40\xeb\xeb\xa2\xc1\xdc\xcf\xfa\xba\x85\xf4\x7f\x00\xb5\x01\x6e\x71\x2c\x13\x23\xc9\xbe\x9d\xfd\xd1\x84\x03\x06\x3b\xc4\x7c\xbe\x46\xe7\xba\x9c\x4f\x04\x26\x90\x27\xb8\x45\x22\x77\x54\x01\x60\x6b\x40\xdd\x4f\xe6\x6d\x71\x55\xb4\xdb\x17\x59\x95\x97\xba\x76\x2d\x53\x00\xa1\x39\x57\x0b\xfa\x05\x96\xb1\xa8\x75\x54\x51\x99\x2a\xd1\xdc\xd3\xac\x2c\x2d\xc5\x1c\x41\x4b\x67\x75\x86\x49\x36\xed\xd9\x89\xaa\xbb\xe6\xe1\x0c\xce\xb4\x86\x00\x8b\xd2\x12\x7b\x59\xeb\x2c\xdf\x22\xb9\xb8\x94\x56\x11\x2d\x06\x0b\xad\x7d\x39\x54\xfb\x26\x08\x0f\xb7\xfd\x75\x76\xfd\xaa\xa8\x02\x7a\xa1\x19\x3b\x9d\xcc\xa6\xc8\x75\xd3\x12\xb2\x85\x68\xcc\x92\x64\xbd\xa4\xb3\xa9\x37\xc2\x1a\x8e\x86\x75\x82\x49\x66\x66\x2a\x16\xf4\x65\xc2\x51\x91\x1d\x1f\x47\x60\x54\x5c\xad\x9b\x05\x12\xec\xb3\xb7\xaf\xd5\x56\xb7\x81\xab\x1f\x64\xb0\x8e\x28\x95\x09\x9c\x23\x6c\x8c\xe5\x8d\x2b\x3d\x2f\xce\x8b\xb9\x6b\x9c\x8e\xc9\x7c\xdd\xf0\x84\xf1\xda\xc8\x4f\xd4\xc1\x81\xe3\x22\x01\xf5\xfe\xad\x2a\xfe\x7b\xad\xd5\xcb\x67\xa4\xeb\xb0\x23\x93\xac\x03\x59\xc6\xd0\x67\x59\x2c\x9a\x45\xe0\x60\x3a\xc2\x95\x46\x0f\x4f\xed\x78\x1f\x26\x4c\xbf\xa8\x32\xbc\x9e\x73\xd4\x4f\x32\x5d\x0a\x87\xe3\xbc\xcb\xa8\x00\x0a\x58\xc6\xba\xd8\xb7\x2d\xf4\xec\xcb\x02\x76\xbe\xbb\x29\x2f\x6a\xb3\x76\x11\x1a\xa9\x67\x30\x14\x98\x98\x55\x98\x2d\xcf\x49\x55\xee\xe7\x8f\xc5\xa7\x89\xe0\x93\x2e\xeb\xa2\x0a\x46\xda\x50\x87\x32\x63\xed\x19\xe5\x8c\x67\xa6\x9f\x9b\xca\x83\x9a\x74\x5d\xd0\x83\x4b\x21\x72\x79\x65\x53\x35\x01\x70\x98\x73\xf0\x90\xdf\x9a\x35\x85\x36\xd7\xfa\xbf\xd7\x45\xe8\xe5\x9a\x1a\x9d\x58\x4b\x2b\xdc\xb9\x39\xf6\x68\x0a\xe2\xc5\x51\x8c\xa8\xf7\xec\xed\x6b\xba\xef\x65\x2f\x7f\xff\xe5\x78\x80\x0b\x36\x0c\xa3\x5e\x8b\x6f\x8e\xa9\xd1\x6f\x8e\xe3\x66\xbf\x39\xa6\x86\x3f\xd4\x45\x8b\xeb\x35\x00\x6d\xda\x30\xd5\xc3\x07\xea\xe1\x9b\xe3\x6e\x1f\x0f\xb8\x8f\x07\x9d\x3e\x1e\xdc\x65\xf0\x0f\xa8\xe9\x07\xdd\xa6\xbf\xe3\xa6\xbf\xeb\x34\xfd\xdd\x57\x0d\x9f\xfb\xf8\xae\xdb\xc7\xf7\xdc\xc7\xf7\x9d\x3e\xbe\xbf\xc3\xf0\x91\x8a\xa8\xf9\xef\x3f\xc5\xf0\xcb\xdd\x7d\xf2\xc4\x00\xce\x31\x66\x35\x99\x2f\x7b\xc1\x6a\x60\x4a\x4f\xcb\x62\x15\x3e\x77\x48\x34\x34\xab\x49\xc0\x5b\x01\xe3\xa8\xa8\x72\xfa\x93\xb4\x36\x7b\xca\x76\xb2\x5c\x37\xed\xdf\x58\x83\x68\x56\x13\x21\x65\xa8\x2f\x5f\xec\x17\x71\xa9\xd3\x97\x6e\x2c\xdb\x97\x2f\x28\xd8\x87\x4e\xd7\xf7\xef\xc3\x58\xc4\x27\x0f\x04\x17\x41\x98\x02\xc8\x1b\xb5\x92\xf8\x2f\x6a\x85\x80\xe2\xd4\xa3\x10\x07\xec\xcc\x0c\xb9\x0d\x87\xc9\x83\x53\xe6\x19\xf5\xeb\xba\x70\x35\xd6\x62\x25\xc4\xca\xdc\xbf\x8f\x0f\x05\xbd\x51\xe4\x45\x8b\x3f\x80\x78\x1e\x17\x25\x4f\x5d\xb9\x4e\xec\xc4\x79\x12\x4d\xe4\x66\x14\x2d\xf0\xb0\x9f\x48\x3e\x78\x22\x71\x03\xcd\x9f\x39\xf2\xe8\x8c\x22\x70\xfa\x7d\x79\xfe\x06\x5c\x07\x07\x44\x56\xae\x85\x1d\x1d\xc2\x01\xfc\x2a\xaa\x0c\x68\x8f\xc7\x36\xbc\x55\x7d\x88\x33\xb2\xef\xd9\x5b\x95\xb6\x7b\x7b\x8c\x54\x00\x5c\x38\xbb\x46\xa1\x80\xa3\x8f\x11\xa3\x1a\xf3\x7f\x23\x46\x94\x47\x95\x60\x8d\x70\x01\x0e\x70\x94\x3a\x5c\xf8\xd6\xb2\xc9\xe3\xdb\x86\x1c\x90\x00\xed\x57\x37\xe4\x1c\x72\x78\x18\xae\xe8\xdf\x3f\x3c\x50\x9b\xa2\x2c\x15\xfa\x98\xe8\x46\x8b\xf0\x57\x90\x97\x8d\x54\x32\xd6\xba\x29\xfe\x44\x32\x43\xc0\xd7\x3e\xf2\xec\x03\x97\xe0\xab\xd3\xac\x26\x18\x83\x05\xfa\x17\x80\x51\xa4\x99\xb9\x64\x2d\x51\xe3\x9d\x0f\x32\x2f\xc5\x90\x03\xe4\xbe\xeb\x68\x42\x5c\xde\x40\xdc\xf7\xa0\x57\x1e\x8a\xdf\xb4\xc0\x5f\xa2\xe3\x57\xb1\xcb\x45\x78\xd4\x9b\x83\x50\x1d\x74\xa7\xdb\x75\x6d\x4c\x28\x8d\x87\x3c\xbe\x65\x76\x1d\xd8\x32\xa4\xa3\xc7\xd7\xf4\x3a\xee\x44\x3a\x0e\xa5\x43\x46\xf7\x40\x12\xa3\x8c\x64\x65\xbe\x84\xcc\x8a\xb3\x2a\xe7\xef\x65\xba\xe1\x40\x65\xd1\xcd\xbb\xbc\xeb\x0e\xf9\xd0\x77\x5a\xc5\x18\xc3\x39\x45\x20\x01\xf1\xd6\x77\x3d\xe0\x12\x7b\xe1\x14\x87\xd4\x43\xb8\xde\x0f\xbb\x8e\xd8\x5e\xa0\xeb\x6a\x43\xee\x10\x3c\x80\x1e\x87\x71\x47\x43\x8a\x7b\xe8\x82\xb1\x47\xe7\xcb\x3b\x1f\xba\xd0\xd9\x36\xbb\xc4\x34\x0b\x38\x41\x10\xcd\xed\x39\x74\xff\x9e\x4e\x21\xd0\xea\x4a\x3f\x2f\xdb\x81\xb8\x61\x3b\x1b\xc8\x9b\x7b\x4b\x7e\xed\x54\xd5\x91\x1f\x86\x0f\x70\xeb\x25\xaa\xae\x15\xc8\xbd\xd8\x79\x0c\x49\x83\x59\x70\x5e\x77\xf4\xc3\x8d\x34\xba\xe5\x84\xa5\x2e\xc6\x3c\xd1\x8a\x6f\xa6\x43\xee\x18\xc5\x17\x66\x2a\xe9\x05\xab\xa7\x55\x17\xca\x80\xde\x15\x45\x74\x7e\xb3\x9a\xe0\xab\xdf\xcf\x45\x2c\xe3\xe7\x20\x87\x06\x1c\x85\x9d\x07\xc8\x09\x6c\x77\xbf\xf2\xa2\xec\xaf\xbb\x6e\xc0\x95\xe1\xbb\x99\x3e\x0e\xc2\x6b\x18\x97\xe5\xf0\x50\x3d\x99\x01\x5a\xb3\xb1\xd7\xca\x66\xa1\x75\x69\x1f\x66\x6d\xc6\x4c\xde\x6e\xc6\x08\x1f\x2d\x3e\x6e\x4f\x5f\xaf\xca\x62\x5e\xb4\xe5\x36\xba\x5e\xa0\x01\xd0\x45\xfd\x26\x01\xc1\x06\x3d\x32\x9c\x97\x4e\x82\x40\xf1\x50\xe8\x7b\x67\x9a\x61\x0c\x60\x29\xfb\x99\x26\xbe\xfe\xee\x1f\x6a\x7b\xa4\x39\x36\xab\xec\x22\x8c\x60\xf0\x91\x87\x6d\x70\x75\x5a\x19\x9e\xd9\x80\xa0\xb5\x78\xfc\x81\x86\x95\x55\xa7\xa1\x10\xc6\xb2\x16\xc7\x8c\x04\xb4\xdb\x99\x77\x5a\x65\x1b\x14\x45\xbe\x23\xb9\x0f\x0a\x27\x1b\xed\xf4\x64\x1c\xab\xd9\x55\x05\xf8\x00\x4b\x4b\x47\xaa\x31\x93\xee\xec\xde\x99\x00\x70\x92\x20\x80\xf0\xd7\x18\xe0\x6a\x5e\x16\xab\x77\xa6\x41\xd4\xe0\x84\xd8\x3d\xbc\x03\xdc\xe4\xae\x36\x5a\x33\xec\x7c\xf3\x21\x8d\x6a\x17\xbc\x1f\x33\x5c\xd0\x4f\xd4\xac\xfb\x82\xd7\xd6\x32\xab\x2f\x31\xe6\x8e\xc0\xcf\xd1\x6b\xe6\x70\x5d\xc1\xff\xab\xd9\x16\xf4\xc8\x96\xcc\x4d\x4d\x72\x58\x95\x1b\x14\xa5\xc0\xa7\x1f\xcb\xa1\x04\x6c\x87\xf0\x02\x3e\xbc\xc6\x76\x47\x6a\x5d\x75\x4a\xfc\x8d\x3e\x51\x19\x5a\x76\x9f\xf8\x20\xf5\xf6\xc6\x5f\x53\xc0\xf0\xe0\x7a\x80\x3f\x7f\x2c\x3e\x81\xd0\xc6\x8f\x45\x20\x21\xcc\xbd\xe1\x0a\x8c\x20\xe5\x8f\xde\x07\x80\x7c\xc7\xb8\x78\x94\x61\xf7\xe1\x3b\x9d\xcb\xc8\x41\x7c\x73\x2c\x87\xc1\x25\xe0\x41\xde\x37\x92\xa0\xd0\x48\xed\xc3\xdf\x7e\x3c\x31\x0b\x21\x0b\x91\x44\xb1\x77\xc7\x3f\x0a\xa7\xdb\x1d\xf2\x16\x50\x40\xa0\x04\xc5\x00\xe7\x40\x01\xe5\x94\x91\xfe\x4c\x78\x9d\xab\xbb\xa0\x44\x5a\x13\xd2\xb4\x52\x66\x93\xb0\x78\xf7\xaa\x13\x82\x18\x7e\x98\x10\xfb\xf7\x46\x8f\x5f\xd6\x95\x48\x2a\x2e\x6c\x8c\x81\xb6\x48\x44\x31\xaf\xab\x97\xd5\x5b\x64\x3b\xe7\x81\xe1\x11\xf5\x73\x02\xd8\x76\x20\x42\x2f\x03\xdd\xda\x9e\x82\xec\x98\x9d\x92\xe7\x45\x05\xa8\x7a\x9f\xbb\xda\x38\x3b\x5c\x50\x77\x64\xab\x46\x65\xbd\xe3\x14\x50\xbe\x0b\xed\xb2\x77\x72\x69\xa1\xa6\x32\xa2\x75\x37\x11\x1e\x0e\x87\xf6\x44\x88\xd1\x9d\x09\x4e\xb2\xd5\xaa\xc4\x2b\x2e\xab\x2f\x40\x82\x70\x86\xae\xe4\xac\xe3\x79\xef\x6a\x60\xe7\x62\x28\x5e\x10\xd6\xc6\x66\x79\xae\x96\xba\x5d\x18\xd4\x1a\x13\x10\x2a\xd0\x9b\x99\xab\xa2\x6a\xda\xac\x9a\xeb\x66\x84\x6b\x42\x3a\xd2\xa5\x2a\xaa\x00\xb9\x22\x8c\x8f\xb3\xad\xbd\x5d\x0d\xee\xb0\x38\xe8\x41\xdd\xb3\x3c\xf6\xc7\xdb\x17\xc8\x96\xda\xb1\x44\x3d\x8d\xf4\x2c\x12\x34\xe6\x96\xc9\x27\x03\x33\xf3\xd7\x77\x9c\x95\x93\x8b\x28\x8e\xcb\x4d\xf5\xde\x7c\x89\x69\x2e\xff\xc5\xf9\xee\x24\x88\xaf\x9b\xad\x24\x09\xa0\x09\x52\xfc\x0a\x2d\x38\xe8\x8d\x54\x9e\xb5\x99\x6a\xda\x7a\x3d\x6f\xd7\x35\x82\x62\x33\xfc\x18\x31\x2a\x14\x49\x6c\x23\xce\x35\x52\x81\xce\x2a\x43\x3c\x47\x7b\x73\x15\x95\x5a\xd5\x7a\x4c\x35\x04\x60\xd9\x44\xbd\xd2\x15\x24\x75\x29\x5c\xda\x8e\x6c\x69\xd6\x95\x4b\x7b\xd2\x58\x3a\xd5\xb9\x32\xb5\x6a\xd6\xb3\x16\xa0\x1f\x73\x7b\xf7\x11\x16\x64\x75\xa1\x27\x98\xcb\x0b\x5b\x00\x79\x19\x2c\x53\x6c\x72\xb5\xd7\x67\xb3\xca\x2a\xb5\x0c\x72\x0b\x8f\x94\x2b\x84\x27\x3f\x03\xb0\x4d\xea\xb3\xb6\xeb\x70\x55\xd8\x9e\x49\x18\x69\xac\xc4\x85\x17\x87\xaa\xf5\x85\x7f\x3c\xa9\xc1\x4c\x97\x66\x33\x44\xbc\xb0\x8b\xa2\x69\xed\xad\x8d\xc9\x26\xc7\x42\x09\xd3\x04\xc0\x0e\x17\x58\x39\x82\x33\x28\x71\x35\x3c\x93\xe4\x9c\xd0\x2c\x76\x11\x3c\x03\x3d\x6d\x10\xc7\xdb\x89\xf8\x46\x96\x04\x84\x86\xa0\x9c\x87\xd7\x2f\xfe\xf4\xb8\xb8\xf7\x7c\x9f\xdc\x3d\x61\xfb\xec\xce\xd3\x84\xe9\x20\xb1\x3c\x26\x9c\x7e\x18\xa9\x1c\x59\x39\xa8\xfc\x9d\xb9\x8e\xd0\xcf\x1b\x07\x23\x03\xc9\x7d\xfa\x0a\x3d\xc2\x1c\x17\xb1\x70\x9d\x68\x0d\x17\x88\x1d\x45\x10\xed\x42\x2a\x6e\x29\x44\x43\xae\x6e\x42\x55\x0a\xa9\xa8\x69\x77\x01\x72\xd3\x3b\x0d\x66\x9b\xa7\xa6\x2c\xb3\x55\xa3\xf3\xf7\xab\xac\x6a\x30\xf7\x07\xe7\x4a\x7d\x63\x06\x0c\xc4\x8e\x59\x39\xe2\x35\x11\xce\x30\xf6\xa5\x46\x22\x2a\x1d\x46\x0f\x70\x64\x57\x73\xda\x51\x03\x87\x03\x43\x48\x93\xbb\x8e\xec\x79\x95\x8b\xc1\xb5\x46\x1d\x78\x62\x7b\x94\xea\x89\x06\x1a\x0c\x13\x7d\x43\xc2\xdc\x52\x1d\x5d\xf5\xc1\x94\x5b\x4e\x94\x38\x33\xf1\xef\xd1\xcc\x31\x87\x7a\x77\xee\x44\x63\x7d\x9b\xf5\x93\xa5\x21\x73\xa5\xeb\x32\x43\xcf\xf3\x78\xdc\x77\xe8\x82\x9a\xb2\x12\x99\x6c\x09\x21\x82\x5a\x4a\x98\xf0\x74\xdd\x5a\x91\x1b\x5d\xbe\xe7\x74\x6c\xe5\x72\x8e\xa4\x7f\xf7\x7c\xdd\x0e\x93\x2b\x15\xe5\xe9\x98\x34\x65\x31\xd7\xb6\xf8\xa4\xa8\x72\x7d\x3d\xec\x5b\xdc\xa9\x1d\x0a\x02\xa6\xdf\x6d\x75\xc3\xcd\x4a\xec\x66\x87\xf0\xfa\x96\x98\x9c\x1c\x13\x4b\x03\xc2\x78\x72\x71\x90\xb3\xe1\xff\x8e\xc3\x75\xf9\xe6\xf8\x6b\x56\xe6\x68\x84\x1d\xf5\x2f\x0f\x28\x7c\xb1\x8c\x5f\x9e\xaf\x99\x3e\x4c\xf2\xe7\x6c\xc5\xde\x5a\xcb\x22\xcf\x4b\x2d\xe7\x79\xe6\x72\x35\xdd\x69\xa2\x54\xeb\x47\xf3\x4f\xd3\x8e\xed\xf0\xfe\x7d\x6a\xe4\xeb\x97\xeb\xcc\xac\xc2\xf5\x52\x6a\x32\x37\xd5\x3c\x6b\x07\xb3\x75\x51\xe6\x76\x25\x9e\xd4\x35\xa9\x5c\xa8\x02\x2c\xde\x88\xfa\xc4\xbf\x86\xdd\xfa\x69\xe2\xb5\x35\xb0\xc3\x9e\x1d\xfa\xa7\xa8\x93\x2f\x22\x7d\x2d\x73\x4a\xe8\xeb\x56\xd7\x55\x56\x92\xbe\x2d\x27\x96\xae\xaf\xdb\x40\xcc\xb4\xd7\x12\x28\xf5\x61\x22\x8e\xfb\xba\x4f\x62\x48\xd2\xdf\xcc\xf3\x09\x59\x14\xfe\x6d\x6f\x4f\xdf\x50\xdf\x70\xa4\x01\xde\xbb\x60\xa3\x74\x00\x98\x51\x2c\x3c\x65\x24\x2a\x60\xb6\x34\x75\xb6\x5d\x69\x0c\xe0\x9e\x69\x65\x2a\xf0\xbf\xde\x6f\xf5\x75\xbb\x0f\x89\xc9\xf6\xd1\x85\x74\xdf\xbe\xeb\xca\xac\xb1\xaf\xba\x7d\xcc\xb0\xb6\x1f\x48\x17\x5e\x3c\x71\x59\xea\x65\x58\xd4\xae\xbb\x71\x17\x36\x28\x6e\x81\x78\xcd\xf6\xef\x82\x25\x5c\x36\x45\xfa\x25\xe4\x8f\xbb\x96\xf5\x2e\x8b\x2a\xd2\xd7\xa5\xed\xa5\xaa\xcf\x0c\xda\x49\x5c\x64\x0b\xfe\xda\x3d\x49\x1f\xcf\x8b\x0a\x4e\xc8\x4b\x4b\xd0\x6e\x15\x87\x9f\x44\xd7\xf6\x67\xc8\x6a\xd7\x83\xb2\x07\x20\x9f\x75\x4d\xf9\x58\xa0\x34\x8b\xa5\x5f\xbe\x88\x26\xf8\xe3\x54\x7d\xfc\xc4\x8a\x74\x38\x47\x6f\xcf\x07\x59\x5d\xf3\xce\x4d\xa7\x96\xb7\xa8\xcf\xb6\xcd\xc9\x6a\xdd\x2c\x06\xf8\xdd\x61\xdd\x42\xb8\x08\x43\x37\x85\x38\x62\x42\xd6\xf8\x1c\x7a\xd1\xca\xbb\x25\xfc\x7a\x16\x8b\x90\xdd\x8a\x30\xe4\xee\x67\xca\x65\x30\x55\x47\x81\x5a\x39\xc9\x04\x4d\x99\xbf\x19\xa9\x4a\x6f\xde\x8c\x54\x5e\xd4\x5e\xc9\x0c\x2b\x60\x45\xba\xce\x46\xd8\x2a\x90\xaf\xc6\xb2\x4c\x1a\x46\x34\x02\x96\x6e\xbb\x62\xd1\x97\x2f\xd0\x99\x80\xd9\x49\x88\xc7\x1e\x3c\x12\x63\x85\x60\x2c\x27\x38\x24\x24\x84\x37\x27\xd0\xcc\x8d\xdb\xe8\xaa\x3b\x08\x4a\xbf\x96\xd2\x9a\x41\x4b\xc2\x93\xe7\xb3\xaa\x2c\x2b\xe2\x9c\x4c\x81\x88\x5e\xa9\x7b\x53\x9c\xb3\xe0\x6c\x79\x51\xcb\xf8\x65\x41\x34\x98\xbe\xdf\x25\xb8\x82\x88\x33\x3f\x15\xe1\x16\xa4\x38\x77\xe7\xa0\x52\x07\xd4\xb5\x6d\x00\xbb\x1f\xaa\x31\x74\xca\xcd\xdb\x5f\x0e\x0e\xd2\x22\x20\xb4\x52\xc9\x0a\xd8\x83\xfd\xd3\x4e\xcb\x96\x38\xc5\x65\xa7\xbf\xc8\x65\x6b\xb3\x28\x4a\xad\x06\x49\x09\xda\x16\x1f\x82\xce\x19\xfe\xe1\xa7\xee\x66\x09\x8b\xf0\x50\x1d\x11\x72\x67\x3c\xe9\xf4\xac\xfd\x28\x6a\xf5\x17\x31\x6b\x35\x96\xed\x1d\x43\xb4\x3c\xae\xc4\x9e\x9b\x3f\xd5\x8b\xb2\xc6\xf5\x13\x07\xbb\x9e\x81\x67\x27\x1f\x4c\x4c\x08\x77\xa5\xfd\x53\x1a\x50\xf0\x46\x8a\xb2\x0c\xe9\xe5\xaa\xdd\x62\x49\x0a\x32\x04\x8d\x4b\x0d\x3a\x68\x50\xc4\x98\xf3\x73\xef\x8c\x69\xe0\xc1\x9a\xc8\x37\x85\x26\x49\xa7\x05\xe7\x57\xe6\x3f\x9f\x46\x4e\xae\xef\xd4\xbe\x11\xbf\x7c\x51\xe9\x27\x94\xfd\xa5\xf7\x0d\xb3\x97\x90\x61\x12\xf2\x88\x1b\x6f\xa7\x3c\x71\xab\x73\x3c\x5d\x01\x31\x4a\x05\xad\x2b\x4a\xcf\xc7\xce\x9d\x7d\x5b\xdf\x9d\xb1\xa7\xa4\x9f\x61\x2c\x36\x74\xba\x7f\xb8\xbb\xfb\x84\x28\xd5\xe5\x78\xf8\xfe\xa5\xae\xfa\xd7\xa2\xbb\x00\x67\x56\x00\x6a\xcd\xdd\x7a\xef\x17\x0e\xc3\x26\x61\x5b\x76\x4e\xfc\xcc\xa8\x47\x77\xee\xd6\xc9\xac\xdd\x79\xbb\x7e\x20\x96\x35\xbe\x9b\x5a\xe3\x52\xc6\xae\x2b\xf4\x3f\xf4\x7e\x87\x9c\xca\xd3\x9f\xbb\x0d\xa4\xf8\x44\xd0\xb0\x95\xbd\x13\xab\x36\x23\xa0\x50\x38\x61\x98\xc4\x09\xdc\x84\x06\xa6\x56\x95\xa9\xe0\x90\xe9\xaa\x95\xa0\xbb\x73\xdb\xd7\xb3\xa2\x6e\xb7\xc1\x8d\x0a\x70\x4d\xc9\xab\x08\xae\xb5\x76\x0b\xb7\xe1\x9d\xd3\x11\xba\x17\x84\x10\x4f\xe8\x72\xf0\x8a\x45\x27\x40\x90\x21\x07\x32\x3a\x86\x82\x09\x49\x42\x52\xcc\x00\xbe\x78\x70\x80\x83\x8a\xb2\x0d\xc0\x47\x5a\xd4\x17\x2f\x7f\x7e\xf1\xea\xe5\xcf\x2f\xce\xd4\x87\xb7\xbf\xfc\xef\xe7\xbf\xec\x45\x5e\xfa\x02\x1b\xb1\x2d\x96\x61\x6a\x76\x30\xbc\x17\x17\x8b\x12\x22\xe6\x6a\x53\xb5\x85\xae\xc9\xed\x21\xa1\x10\xf9\xec\x53\xad\xbb\x5a\x10\xb4\x6c\x1b\x1e\xa9\x59\x51\xe5\x03\xf7\x03\xf6\x0b\x11\x1f\xb1\xdd\x3a\x2a\x13\x82\xb3\x49\x8b\x34\xe7\x84\x4a\x8d\xf2\x51\x42\x10\x4a\x08\x76\x98\x79\xe5\x00\x5c\xdf\x2c\xc9\x1c\x48\x07\xba\x8d\xa9\x2f\xcf\x8a\xa5\x76\xc9\x31\x21\x6b\xbf\x9a\xaa\x0b\xdd\x52\x0a\x7f\x8a\x29\x82\xd3\x95\x1a\x87\x83\x27\x46\xf1\x1c\xd2\x09\xa3\xb8\xb5\x07\x78\x67\x93\xa2\xb5\x33\xc4\xc6\x28\xc1\x8b\x73\x14\x49\x65\xf9\x1b\x25\xe4\xbb\x03\xf5\xc3\xd1\xd1\x50\xba\x23\xfb\xfc\xd0\xb4\x99\xa2\x83\xc4\xd2\x08\xc5\x09\x81\x2e\xd3\x91\x07\xe7\xdd\x32\x87\x78\xab\x86\x93\x41\x83\xe7\x4c\x23\x4a\x80\x64\xfa\xbe\x45\xd7\xc2\x32\x72\xc1\x52\x8f\xe4\x92\x2e\xb3\xeb\x17\xbc\x46\xaf\xf0\xf7\xc7\x6a\x6e\x56\x5b\xa8\x0e\x33\x5e\x62\x7c\x16\x8d\x18\xe8\x69\xa8\x4e\x3c\xc0\x2d\xdb\x45\xa9\x15\x78\x50\xb8\xbf\xc8\x01\x94\x1f\x4b\xd4\x8a\x07\x0e\xe5\x05\xf1\x43\xe6\x54\xf0\xae\x33\x40\x16\x77\x13\x62\x21\x4b\xcc\x5c\xf6\xa7\xf3\xee\x72\x98\x32\x7f\x5a\x86\xab\x05\x11\x47\xba\x01\x71\x08\x7f\x93\x2d\xcc\xf1\x57\x31\x3c\x2c\x36\xe4\xbc\xdc\xb2\x0d\x8c\x92\xb3\x8d\xf0\xd0\x1c\xef\xc6\x8e\x7b\x6b\x49\x99\x11\x78\x57\x43\x0f\xd8\xa9\xba\xe7\x37\xf9\xcb\x17\xbf\xe3\x22\x59\xa4\x98\x3f\x7f\x15\xfe\xac\x34\xe5\x7b\x6e\x6c\xc0\xc4\xe8\xeb\x97\x2f\xea\x1e\x7d\xc6\xc6\x9f\x96\xcd\x64\x76\x01\x23\xf3\x55\xdc\x17\x5f\xc6\xee\x49\x5c\xca\x7d\xe3\xdd\x8c\x59\xf1\x3d\x37\xad\xfb\xf7\xd1\xad\x3c\x9a\x0d\x5a\xb7\xd5\x67\x39\x7f\x57\xe6\x63\xf1\x29\x9a\xad\xfd\x22\xf3\xba\x72\x2d\x91\x16\x06\x4e\x35\xbe\xe5\xe4\x41\x1b\xc6\xc4\x93\xb5\xfa\xc9\x79\xab\x01\xa8\x9c\x29\x2e\xbb\xd2\x2e\x61\x3f\x7f\xac\xf4\x35\x65\x58\x4e\x09\xea\xfc\x6e\x0d\x0e\xd9\xc3\xe9\xee\x53\x26\xb3\xce\xae\x6a\x33\xd7\x4d\x13\x1c\x95\x09\x1e\x13\x1a\xc1\x5d\x46\x0e\xac\xe4\x7f\xaa\x1f\x50\x88\x7c\x1c\xcd\x28\x3c\xb0\x7d\x13\x73\xfc\xc9\x33\xe0\x47\x32\xb9\x58\x17\xbf\x37\xe2\xce\x80\x3a\x33\x74\x9a\x27\x99\x4f\x52\x79\x68\xc0\xf4\x0d\x11\x4e\x85\x8a\x59\xe6\x23\x4a\x78\x0f\xcf\xe8\xb7\x51\x50\xd9\x05\x2d\x4a\x7a\xf0\x9e\x09\x81\xed\xbc\x13\x06\x9a\x92\x25\x12\x0d\x45\x01\x23\x5d\xf5\x90\xac\x83\x8e\x18\xa0\x71\x62\xcc\x42\xa7\x60\x78\xf6\xf2\xfd\xbb\x57\x4f\x7e\x57\xcf\x7e\x79\xf2\xe1\xe5\x9b\x9f\x31\xc2\x2f\xf0\xfb\x96\x30\x97\x00\xae\x4b\x0e\xcd\x84\xaa\xbb\xfb\xed\xe1\xb0\x11\x5d\x62\x75\x9f\x09\x1d\x3d\x24\x30\xeb\x42\x63\x96\x1a\x81\xeb\xc8\xbc\xb7\xd1\xdf\x96\x25\x3a\x16\x95\x99\xa5\x35\x80\x41\xcc\x21\x6c\x72\x93\x61\x46\x06\x1f\x5d\x87\xe1\x28\xf6\xc3\xd0\x77\x88\x98\xd6\xd3\x9e\xe4\xfd\xfc\x24\x75\xf9\xfb\xb9\x22\x5a\xcd\x5f\x36\x2f\xd8\x93\xe6\x5e\xda\x3d\x84\xf1\x5e\xa1\x12\xfd\xe4\x00\x07\xe2\x2a\x41\xa2\xfc\xb0\x4e\x9c\xcb\x35\x81\xa1\xca\x35\x4c\xc9\x6e\x76\x51\x25\xe7\xa9\xcb\x25\x71\x69\xa6\xb8\x44\x1e\xa7\x69\xd9\xa0\xbc\xf2\xac\x58\xea\xaa\x81\xe0\x1c\x51\x49\x33\x36\xcd\xc7\x4f\x80\xd5\x12\x90\x81\xc4\x3e\x01\x57\x94\x00\xc4\x44\x2f\x8b\xb6\xd5\xb5\x54\x48\x82\x9b\x51\xd6\x50\x84\x5f\x54\x82\x65\x44\xd1\x2f\xb2\xcc\xc0\xdc\x7d\x73\xda\x3b\x06\x74\x61\x49\x00\xd9\x90\xa7\xeb\xa2\x68\xc0\x86\x61\xff\x71\xba\xd7\x23\xa4\xcb\xde\x3b\xe7\x8a\x5d\x6e\xc8\x1a\x8f\x01\x70\xd8\x2e\xd5\xa1\x60\xa3\x00\xbd\xa5\x27\x58\x65\xf7\x21\x89\x52\xba\xfb\xf8\x64\xdb\xd0\x0a\xbd\x45\x3b\xce\x46\x82\x0a\xe3\x17\x78\x88\x72\x29\xf3\xc1\x26\x2a\xa7\x32\xb8\x87\xb4\xe7\x1b\x4e\xc0\x65\x78\x98\x85\xc8\x55\xdd\xe3\x2c\xa4\x3c\xad\xc1\x97\xce\x81\x6c\x8c\x7b\x46\x7e\x4b\x2b\x08\xd5\x01\xa8\x21\x0e\x2c\xe4\xd6\x51\x74\x16\x57\x60\xfc\x85\x58\xf0\xe4\xe0\xfb\xbe\xca\x56\xcd\xc2\xb4\x31\xc6\xc2\x22\x6b\xd0\xdf\x36\xa9\x95\x02\x45\x31\xf8\x52\xab\x94\x53\xf5\x3d\xfa\x0d\x32\xf2\x1b\x80\x81\x0b\xe2\xd6\xed\x45\xf2\xac\xb8\x1a\x51\xd5\xde\x2e\x7c\x12\x2c\xd7\xc7\x09\xd5\x61\x5d\x23\xe5\xdf\xbd\xd0\xad\x77\xdf\x96\xd9\x71\x01\x8d\x22\x51\x48\xc0\x41\x34\xba\x9c\x64\xd5\x7c\x61\x6a\xc8\xa2\x7b\xff\xbe\xad\x05\xba\xfc\x0a\xe3\x8c\x76\xcd\x20\xac\x3c\x0c\x0c\xd1\xeb\xb2\x95\x0d\x4f\xa3\xc2\xa9\x82\x4e\x11\xed\x8b\xe2\xa7\xb0\x30\x38\x5a\x8b\x46\xdd\xdf\x89\x62\x41\x93\xe2\x8b\x30\x58\x25\x52\x06\x49\x5d\xbc\xbd\xc4\xfc\xc2\x35\x44\x31\x02\xae\x89\x3f\xc1\x86\xf3\x1f\x13\xb7\x67\x80\x78\xd4\xfd\x1a\xfa\xe3\x47\x2f\xd6\x6e\x79\x46\x7e\x60\x60\x16\x57\x20\xd8\x3a\xb7\x59\xce\xbb\x67\x66\x72\xca\x12\x17\x15\x1f\xde\xa9\xbc\x5b\xda\xe1\x1d\xe9\x6a\xe4\xf2\x9c\xb8\x26\xe7\xb5\xce\x5a\x8d\xf9\x40\x28\x05\x28\x38\x02\x35\xba\x7d\x5e\xe5\xa9\xa9\x74\x06\x8c\x7b\x26\x2b\xcf\xc9\x4c\x30\x80\x48\x08\xc2\x60\xd2\x25\xe1\x93\x3d\x29\x4b\xe8\xaf\x19\xf8\x5f\xb2\x3c\xc7\x31\x60\x96\x15\xf7\x1d\x49\x7d\xd0\x9d\x72\xbc\x0c\x7e\x10\x4e\xc2\x32\xe4\x85\x45\x2e\xde\x2e\x3e\x99\xa0\xff\x40\x74\xe6\x43\xa3\x7e\xcc\x8a\xb2\x51\x66\x0d\x0a\xe2\x01\xee\x36\x00\x8a\xc0\x0c\x5c\x98\x78\xad\x29\xc5\x0c\xa4\x0a\xa6\x08\x71\x53\x69\x70\xd1\x82\x4b\x3f\x27\x15\x18\x54\xec\x00\x3c\xc5\xa1\x72\x56\xb0\x63\xef\xfc\xdd\xba\xe4\x54\x14\x00\xb9\x95\x86\x92\x93\xc8\x50\x17\x99\x80\x83\xc4\xee\xde\x5b\xda\x4e\x1d\x34\x76\xc5\x79\x27\x2b\x09\x24\xfe\xc1\xc0\x7c\x55\xeb\x2a\xd7\x35\x61\x54\xf0\x12\x90\xbc\xcb\x6e\xe5\xf7\xd8\xd3\x15\xe4\x20\xe7\xb5\x44\x5f\x39\x5d\x7b\x4a\xd3\xcd\x9e\x29\x51\xd1\xae\xea\xfb\xdf\xea\x0d\xd5\x35\x6a\xba\xb6\xf9\x07\x9e\x36\x6a\x0e\xc3\x0a\x78\x4c\x3b\x4a\x4c\x80\xbd\x0d\xcd\x5e\x9c\x41\xdd\xa5\x83\xde\xce\x28\x1c\xd3\x8f\xc7\xc7\x7d\xf5\x6e\x21\xad\xce\x0e\x89\x92\x77\xf5\xa9\x59\xae\xd6\x90\xab\xb3\x59\x17\x2d\x00\x43\xda\xe7\x9d\x7b\x0f\xa0\x4d\xfe\x3e\x69\x96\xbd\x16\x2e\xa5\xee\xda\x0b\x12\x1a\xb9\xe7\x58\x6a\x57\xc7\xf2\x71\xc8\x9d\x71\x1a\x46\xd7\xb6\x4f\xc3\x27\xb3\x81\x40\xe2\xec\xee\xfe\x1f\xf4\x37\x39\xdc\xeb\xb1\x53\xa0\xa1\xc0\x6e\x0f\x8d\x2a\x51\xe2\xc1\x91\x70\x03\x0c\xde\x98\x30\xc6\x84\xd1\xc2\x67\xc0\xef\xea\xe7\xa5\xac\x48\x9f\xc7\xe8\xca\x87\xfd\x24\xa6\x1a\x93\x9e\x03\xf6\x8a\x0d\xad\xee\x91\x8a\x63\xed\x77\x92\x43\xa7\x56\x13\x94\x89\xdd\xd5\x86\xd2\x11\x24\x2f\xce\xcf\x35\xa1\x4f\x42\xeb\xf7\x12\xa7\x12\x2d\x50\xf7\x12\x96\xa9\x40\xc2\x2b\xb3\xa6\xfd\x50\x67\x2b\x1f\x36\x46\x7b\x19\x3e\xd2\xc4\x81\xe4\x1a\x0e\x3a\x30\xac\xc0\x72\x70\x9f\xf5\x6d\x2f\x32\x64\x38\x71\x02\x65\xe3\x27\xa8\xe5\xb8\xd0\xac\x8f\xc4\x15\xe8\xec\xea\x90\xc2\x85\x5c\x64\xd0\x42\xab\x25\x18\x15\xf3\xe2\x0a\xfc\x4a\xca\xe2\xa2\xf2\x90\x7e\x9c\x42\x2f\x8a\x28\x0a\x4d\xf7\xd0\x00\x89\xcb\x98\xb1\x35\x31\x52\x12\x93\xdd\x61\x70\x0f\xff\x2e\x4f\xf1\x6f\x15\xde\x30\xf0\xe2\xe3\x1a\x53\x75\x04\x81\xbd\x11\xfb\xbd\x2b\x13\xfb\xbf\xc6\x4e\xfb\xb9\x20\xda\x72\xd5\xac\xb8\xf0\x00\x36\x1b\x88\xcc\xe1\xdc\x72\xf3\xd2\x34\x60\xc4\x25\x90\xdf\x7c\x5d\x93\xeb\xbc\x0c\x95\x1e\x51\x40\x36\x39\x27\x03\x72\xcb\x7a\x15\xe6\xa4\x6b\x94\x7d\x21\x9a\xa6\x55\xb3\xda\x6c\x1a\x5d\x03\x2a\x2e\x09\x4b\xfc\xcc\x40\x31\xb4\xfb\xf4\x70\x2e\xc1\xb4\xd6\x8f\xd4\xf7\x43\x61\x85\x23\x71\xbb\x8b\x41\xe7\x71\x66\x57\x59\x3b\x5f\xc8\x90\xbc\xde\x15\x1c\x49\x06\xff\x4f\xf7\xbc\x1f\x98\xf8\xc2\xad\x8f\x8d\xd1\x08\x59\x52\x6b\x82\x6f\xf2\xa8\x3c\x99\x42\x67\x28\xa4\xfb\x4c\x71\x00\x25\xef\x06\xac\xf7\x85\x21\x6d\x12\x59\xcd\x4c\x4d\x13\x40\x84\xe2\xc6\xa8\x5a\x8f\x31\xc4\x15\x23\xdc\xbb\x22\xbb\xdf\x80\xa1\x8b\xdb\xc3\xe8\x1c\x0f\xee\x63\x05\x0e\xc4\x11\x22\xb8\x37\x80\xf4\x3d\xd7\x40\x0f\xee\x5c\xe2\x79\xc4\x36\x30\xba\xde\xd6\x43\x5e\x80\x7d\x3b\x74\xdc\x5a\x57\x8e\xd6\xb1\xe1\x67\xc5\xd5\xb0\xbf\x8c\x1b\x0a\x15\xe3\xef\x9c\x89\x28\x7a\x92\x27\x5f\xde\x22\x03\xc8\x91\x0f\x80\xa2\xd3\x1c\x6b\x12\x22\x5e\x9a\x66\xa5\xc9\x1a\xfc\x20\x4f\xb3\xd2\xae\x2e\xf7\xfb\xa3\x23\x77\x23\xec\xf2\x06\x07\x45\xf2\x5e\xa8\xdf\x95\x8f\xb1\x74\xf0\x69\x2c\xdb\x0a\x75\xa4\xbb\xe8\x49\x2b\x29\x75\x45\x28\x80\xa0\x82\xe0\xf4\xd4\xfd\x49\xc2\xb8\xb7\xa8\xdd\xc3\x5f\xe0\x31\x9f\x86\x34\xb0\xbf\x51\x4f\x1d\x2d\x5e\x57\x8d\xe7\xdf\xc8\xe0\x03\x56\xac\x58\xa6\x77\xe3\xb6\xd7\x01\x41\xba\x02\xb9\x65\x3e\x7f\x9f\x37\x0c\xb8\xd2\xe0\x37\x8e\xff\x86\x5b\x80\xa3\x3e\x85\x1d\x40\xac\xc8\xe7\x30\x4d\xe2\x1d\x53\x57\x79\xe1\x46\x26\xe9\x96\xdd\x0e\x6f\x9c\x25\xc1\x05\xa8\xe4\xf8\xfe\xc1\xc6\x19\xbc\x8d\x94\x1a\x64\xe8\x07\x10\x2d\x7c\x05\x54\xa6\xf5\x0d\xe0\xfc\xcb\x2d\x7a\xde\x30\xe2\x93\xeb\x50\xfd\x6f\xad\x57\xaa\x34\x06\x96\x7f\x5d\xb5\x45\xa9\x8a\x16\xb2\xad\x4f\x92\xcf\x81\x58\x55\x2c\x5f\x3d\x29\x6d\x31\xaf\x72\xcf\xa3\x22\xe5\x8f\xd7\xf7\xae\xe8\xb1\xa1\xe3\xce\xcc\x6a\x9d\x5d\x32\x8a\xa3\x27\xb9\x5b\x1f\x72\xc3\xa8\xee\x0e\x60\x12\xf7\x68\xbf\x1b\x30\x89\x6f\xcd\x33\xd0\xe8\x7b\x18\x8d\x2f\x82\xe8\xe9\x49\x9d\x8a\xb6\x8f\x4b\x05\x42\x44\x04\x67\x40\xbf\xc9\xa8\x48\xfc\xb4\xdf\x83\x1b\xe9\xf6\x20\x44\x86\xae\xb5\x5d\x03\xbc\x95\x58\xc8\xec\xda\xd4\xfb\xeb\x9c\x19\x3e\xab\x89\x11\x31\xb5\xa0\x5d\x86\xc2\x35\x13\x63\x4a\x98\xf1\x09\x7a\x6f\xc7\x40\x93\x14\x76\xda\x3f\xce\x94\x33\x68\x47\xe9\xd9\x97\x90\xd3\xd1\xbd\xe3\xa0\x0e\x3d\x28\x0d\x14\x24\x0f\x8a\x3f\x24\xbb\xa9\xf5\x4e\x54\xba\x93\xbf\xff\xff\x9b\x8e\x29\xea\x56\xe8\x86\x5c\x0e\x57\xe2\xe5\x2c\x3c\x01\x0c\x80\x0b\xd1\x03\xc9\x22\x74\x3f\x02\xf9\xa0\xa8\x2e\x6c\x23\x95\xc9\x35\xc6\x97\xa3\x7f\x94\x8b\x2e\xaf\x8c\x2a\x4d\x75\xa1\x6b\xcb\x49\xb1\x1e\x48\x30\xb5\xf6\x00\x79\xa6\xd2\x8d\x43\x7b\xc3\x4a\x2d\x29\x98\xb6\x9c\x8d\x39\x40\xd4\x33\x41\x17\xe8\x60\x05\xa1\x82\x76\x8a\xe2\x1a\x8e\x65\x4d\x5c\x04\xba\xc7\x7f\x22\x67\xbc\x65\x73\x9b\xba\xa9\x0c\x2e\xff\xe8\x72\xa5\x1f\x84\x47\x4e\x56\x54\x60\xaa\xed\x28\xa1\x29\x23\x38\x17\x11\xe9\x87\xf6\x64\xc2\x90\x7a\x19\xa0\x07\x33\xdc\xa9\x25\x73\x93\x6b\x30\x59\xbf\x2f\x66\x25\x46\xe4\x23\xde\xa6\xa9\x2f\x1b\x95\x41\x96\x47\x95\xa9\x76\x51\x9b\xcd\x98\x9e\x64\x94\xa3\xeb\xed\x7b\xf5\x9b\xfa\xa0\x67\x97\x45\xeb\xd8\xf7\x06\xfe\x84\x34\x46\x98\x13\x46\x9c\x4d\x7a\xd8\x7d\x58\x68\x5d\x9e\x65\xb5\x15\x7e\xa7\x38\x00\x6f\xf1\x45\x1c\xdf\x7e\x59\x1f\x1d\x41\xc2\xe2\x3e\x97\x43\x90\xa1\x01\x27\x7c\x23\x55\x73\x76\x9e\xf2\x79\x9e\x70\xf1\xa3\xad\x51\xdd\x77\x3a\x4a\xbe\xaf\x0c\x05\x5d\xc9\x04\x29\x81\xf3\xde\x48\x35\xdb\x6a\x0e\xca\xbb\x75\xad\x06\x2d\x21\x16\x02\x39\x63\x1b\x45\x15\x6f\xe4\xd0\x8b\xd9\x30\xa6\xac\xb1\x8f\xb5\x0b\x80\x93\xf8\x37\xba\xe1\x45\x5e\x78\x5c\x4b\x44\x55\xed\xf0\xc9\x8b\xd6\x1a\x2e\x0f\xa6\x3b\xf2\xab\x7a\x63\x5a\x12\x6b\xb6\xce\x6e\x01\xb4\x86\xf6\x0a\xf0\xd6\x04\x9d\x09\x2e\x9b\x73\xcc\xf8\xd5\x2f\x3c\x1d\x1f\xe1\x53\x81\x84\x9d\x42\xb7\x5e\xd7\xa1\xef\x08\x60\xaf\x90\x36\xd5\x43\x94\x3a\xd7\x6d\xbb\x1d\xf7\xa6\xe1\x84\xc0\xc1\x05\xce\x50\xbd\xb4\x05\x86\x81\xf3\x90\x3c\xdc\xe4\xea\xc4\x87\xd6\x89\x3c\xe2\xe8\x0b\x7c\x16\x27\xe7\x74\x0b\x3d\xa4\x86\x38\xc2\x04\xc6\xe2\x9b\x8e\x1c\x60\x02\x77\x48\x27\x3e\x87\x81\x17\x71\xb9\x91\x0b\xbe\x19\xaa\x47\x14\x88\x11\x4d\x85\x35\x05\xe1\x30\xed\xde\xfc\x64\x6a\xbc\xd7\x9b\xdb\xb7\xe7\xa6\x23\x2e\x62\x07\x72\xa0\xd1\x93\x2f\x31\x63\x2f\x14\x26\x7e\x9c\xd8\xf7\x55\x95\xe3\x91\x8e\xcc\x2a\x67\xfa\x1a\x48\x71\xe0\x8b\xff\x64\xec\xb3\x8b\xb9\x29\x0d\x7a\x38\x8c\x07\x8c\x5b\x1e\x92\x76\xcc\x04\xb1\xac\x0f\xbd\xe2\xc2\xa4\xb1\x15\x31\x01\x40\x37\x5d\x3a\xea\x0a\x20\x98\x09\xe0\xfd\x2a\x9b\xeb\xc0\x7a\xbe\xe9\xe6\xce\x48\x27\xe1\xed\x03\xf8\x02\x6d\x2d\xe1\xa3\x6d\xa4\x89\x39\xca\x02\x9e\xb8\xd5\x83\xfc\x17\xfd\x00\x62\x9d\xa4\x8e\x2e\x8f\xad\xb7\x46\x8b\xda\x09\x8b\x3a\xaa\xe9\xee\x56\xbd\xe7\xe1\x3f\x48\xd5\x4e\x65\x13\x89\x21\xe6\x86\x62\x3d\x20\xbc\x0d\x58\x51\x2a\x1f\x77\x90\xab\x1b\xd7\x95\xb1\x8c\x00\x65\x4f\x26\x19\xc9\xb5\x03\x18\x6c\x17\xba\xa0\x7d\xec\x18\xa5\x70\xd7\x43\x7f\x09\x9a\x60\x72\xcf\x47\x80\x33\x14\xc9\x05\xf4\x5b\x57\x87\x42\x3f\xb0\xca\xbf\x90\xce\xdb\x78\x59\x40\x6b\x91\x5f\xa0\xbb\x2d\xb0\x3a\x3a\x20\x4e\xb1\x28\xdf\x18\xf0\x33\x98\x6b\x79\xb8\xc1\x61\xec\xe4\xd9\x95\xe9\x73\x69\x55\xf7\xd5\x81\xec\x61\xe8\x4d\xef\x41\xbf\xd3\xa0\xae\x3d\x69\xe8\x1c\xdf\xec\x7b\x4e\x12\x99\xe0\x29\xc1\xf2\x14\x46\x48\x45\xec\x3f\xa3\x7c\x17\xb1\xe5\xfe\xcd\x7a\xe9\x52\xf1\x1c\x07\x8e\x14\x6c\x0f\x0f\x49\xcf\x0b\x21\x85\x7a\xac\xf6\x21\x8d\x1d\xa7\x91\x4b\x9e\x69\xa2\xb0\xd7\x90\xb0\x26\xcc\xf9\xde\x28\xda\x4c\x67\x7a\x96\x32\x04\xc4\x4c\xf6\xac\x82\x87\xd1\x96\x57\x10\xb6\x06\x59\xd5\xea\xb5\x0e\x33\xc7\x13\xcd\xfd\x64\x6a\xa1\x66\x1a\x50\xff\x9e\x0c\xcf\x41\xbc\x9b\x2a\xbe\x49\x22\x6a\x1b\xf5\xef\x0b\xe3\x12\x60\x03\x53\x35\x3e\x46\xec\xb7\x8e\x14\xeb\x41\x2f\x83\xa6\x01\xca\x29\xf8\xc2\x31\x1d\x1f\xfb\xfa\xfc\x14\x47\xc7\x43\xdf\x8f\xa8\xeb\x7b\xff\x52\xdf\x14\xd8\x31\x4c\x15\x9f\x34\x2b\x8c\x75\xb1\xfd\x51\xe0\xb3\xcb\x7f\x82\x00\x69\x99\x7d\x51\x36\x20\x9f\xf9\xaf\xef\x8a\x6b\x5d\x36\xef\x74\xfd\xb7\xaa\x68\x49\xc5\x77\x8a\xf8\xde\x25\xe4\xd0\xcb\x58\x5f\x3e\x46\x60\x7e\x9d\xa3\xfa\xd0\xca\x8e\x98\xed\xd6\x54\x4e\xa5\x6e\xdb\xb4\x8f\x26\xe0\x3d\x97\x95\xd9\xd8\x27\xcb\x44\x9d\x01\x6c\x69\x1e\xe4\x5d\x98\xd9\x87\xd7\x7c\x5d\xdb\x87\xec\x78\x0c\x74\x43\xaa\x27\xe4\x5e\x4b\xdb\xc4\x4c\x83\x76\xb7\x36\xf6\x7f\x01\x48\xff\x0f\x8a\xe5\xcd\x54\x03\x4e\xa4\xea\xbc\x2c\xe6\x97\x1a\x32\x36\x43\x12\x26\x50\x06\xc2\xd4\x20\x21\x04\x3e\x06\x06\x05\x67\xd7\x2b\xad\x4c\xaf\x74\x65\xd6\x17\x8b\xe1\x64\x0f\x13\x38\xdb\x8b\x31\xb9\x1a\xe3\xc9\x0f\xdf\xa9\x9b\x3d\xb7\x9b\x17\x7a\x7e\x69\x7a\x4b\x1f\xff\x20\xcb\xce\x17\xb5\x59\xee\x6a\xfa\x3f\x64\xe9\x26\x3b\xcf\xea\xa2\xbf\xf4\xf1\xa1\x1d\x88\x3f\x3e\x50\x0a\x12\xda\x3d\xd3\x65\x9b\x0d\xa4\xef\xc0\xb5\x9a\x2a\x8d\xa8\x78\xf0\xe3\x6f\x23\x95\x6f\xa3\x6f\xbf\xb3\xf6\xf9\xda\x99\x75\xee\xdf\x57\x7a\x92\xeb\x36\x2b\xe8\xdf\x9c\x5f\x44\x4f\x5e\xbc\xfd\xe5\xe5\x7f\xbd\x7d\x73\xf6\xe4\xd5\xdf\x9f\xfc\xf6\xf2\x3d\x58\x20\xb0\x17\x2a\xef\x8c\xa2\xdb\xbb\x34\xf7\xeb\xf3\x5f\xce\x5e\x3e\x95\x8d\x6d\xe3\xc6\x7c\x18\xd4\x56\x46\x03\x77\xe6\x11\x44\x0e\x5e\x9f\xa8\xfc\x7a\xa4\xb6\x27\x2a\xdf\x06\xb8\x43\x7e\xb5\x70\x61\x83\xe5\x82\x66\xa6\x89\x15\xc5\x7c\x7f\x6d\x36\xb9\x56\x7f\x99\x26\xf6\xc5\xfd\xbe\xed\xfd\x9d\xe3\x80\x6c\xb1\x40\xce\x31\x15\x21\xd8\xd9\x5a\x20\xe3\xdc\x69\x48\x23\x5c\x77\x1a\x16\xed\x2b\x0d\x62\x17\xc2\x0c\x67\x27\x48\xf8\x23\xe2\x73\xef\xff\x59\x17\xec\xfc\x51\xeb\x6f\x03\xf7\x16\xaa\x69\x7f\xe0\xd7\x7e\x46\xa3\xff\xcd\x79\xfd\x45\x99\xc5\xe9\x63\xe8\xcb\x18\x54\xfd\x3d\xae\xea\x92\x08\x07\x75\x9d\x95\x03\x1e\x7e\x96\x5c\xed\x7b\xdd\xf7\xff\xe5\x8b\x5d\x03\xf9\xed\xf7\xd0\x57\x0b\xa7\x87\x1a\x00\xcf\xa7\x0c\x69\x06\x32\x42\xc1\xb4\x97\xdb\x7a\x49\x5d\x37\xfe\x2a\x6b\x41\x05\x80\x6d\x04\xe9\x42\x09\x3d\x0e\xf2\x7c\x58\x51\x27\x47\xa3\x94\x2f\x00\x46\x01\xba\x36\x27\x6c\x64\x2b\x1a\xb5\xc8\xe6\x97\x6a\xd0\x68\x0d\xae\xd3\x90\xbb\xc3\xca\x68\x45\xa8\xb6\x19\xaa\x65\x76\xa9\x1b\x77\x3b\x63\x03\x6c\x77\x2b\x1a\x75\xa9\x57\x2d\x69\x3e\x26\xfe\xec\x79\x95\x06\xea\x38\xdc\xdd\xb2\x6e\x75\x7d\xe2\x5f\xe9\xf8\x0a\xd0\x13\x9c\x5e\x32\x48\xf5\x54\xd1\x53\x14\xa7\x73\xca\x5a\x9c\x75\x2d\xde\xd7\x5e\xf2\xf9\x1a\x05\x80\x12\x26\x92\x8f\xc5\x27\x17\xf2\x8f\x4f\x14\x57\x44\xdd\xa6\x97\xb1\x15\x44\x69\xd4\xb7\xc3\x54\xdd\xd7\x9b\xe0\x4d\x75\x23\x7c\x63\xde\x56\xe8\xf8\xce\x24\x31\x52\x3e\x8b\x92\x80\x3c\x05\xe8\x6d\x4c\xf0\x8e\x29\x45\x1a\xd5\x1a\xb2\x77\x82\xa0\x49\xc0\x41\x52\x4c\x5f\x64\x0d\xda\x4f\x6b\x0d\x6e\x03\x3a\x1f\x41\x13\xb6\xbd\xa2\x75\xf5\x37\x75\x71\x71\x01\x96\x23\x90\x11\xe0\xae\x05\x03\xf5\xba\x6a\xb4\x5e\x96\x5b\xb5\xc9\xb6\x13\xf5\xc1\xd2\xe2\x46\xe3\xc5\x99\x55\x44\x09\x4d\x5b\x2c\x81\x7a\x20\xd9\x6d\x73\x88\x2c\x03\x2e\x64\xb0\xa1\xc3\x3d\x89\xd8\x86\x62\x62\x58\x59\x00\xba\x56\x6d\x51\xeb\x72\x0b\x87\x7b\xa2\x5e\xb6\xdf\x96\xa5\xbd\x5d\xf1\x6e\x2d\xb7\x10\x1a\x0d\x84\x5d\x51\x2a\xfb\xd9\x9a\x4e\xc3\x4c\xc3\x5c\xdb\x45\x56\xa9\x8b\xb2\x68\xe7\xc0\x2e\xcc\xba\x9d\xf8\x9b\xc5\x4a\x3c\x70\x65\xc2\xbf\x56\x60\xf8\x05\xe2\xec\x5e\x71\x11\x48\xb4\xa7\x67\x71\xae\x9d\x46\x2d\x95\xbc\x4a\x22\x6e\x07\x7c\xe5\x0c\x72\xd0\xe6\x5b\xf5\x97\x44\xbf\x2e\xec\xb6\x0f\x25\x3a\xd1\x20\x61\x77\xe7\xd7\x3d\x2d\xb2\x76\xf2\x6d\x55\x6e\xd5\x8a\x0c\xd9\xb9\x3e\xcf\xac\x70\xe3\xd7\xbe\x38\x57\x57\xba\x6e\x8b\x79\x40\x6f\x45\xc3\xd5\x9d\x89\x6d\x65\x1a\xb4\x57\xa9\xb7\x96\x3b\x6f\x8a\x46\x8f\x2c\x1d\x01\x55\x36\x71\x23\x5c\xfd\x0f\x70\xf9\x47\x46\xf7\x9b\x6a\xeb\x6c\x7e\xb9\xca\x72\x62\x6d\x40\x2d\xbf\x41\xb6\xe1\x65\x56\x96\x0c\x8b\x89\x62\x01\xaa\xff\x58\x54\x1a\x14\x4d\xb3\xd6\xea\x7f\x7c\xf7\xc3\x7f\xfc\xa7\x7f\x19\xdd\xcb\x01\x25\xba\xbb\x47\x02\x13\xe6\xef\x34\xf7\x67\x38\xf5\x81\x8e\x03\xae\x43\x34\x5f\x10\x1a\x3c\x30\xb1\x84\x21\xb6\xd2\x5b\xa5\x56\xb5\xb9\xa8\x75\xd3\x08\x65\xa9\x38\xcf\xdf\xbe\xab\xcd\x1f\x7a\xde\x7e\x1b\xf8\x2f\x4a\x9b\xed\xdc\x69\x44\xc1\x9e\x89\x59\xac\x1a\x94\x31\xe5\xc1\xf0\x20\x75\x7a\x03\x92\xe3\x46\xa3\x2c\x8b\x52\x23\xa0\x3b\xd2\xf1\x53\x45\x3b\x0c\xd9\xef\xed\xa4\x0d\xd9\x7e\xa1\x80\xe5\xb8\x69\xb2\xf4\xb1\x14\x0e\xef\x54\x42\xa0\x42\xa6\x7b\x08\xd8\x06\xd2\xde\x1d\xef\x82\xa3\xa3\x1e\x1f\x52\x2e\x7e\x68\x56\x52\x38\x36\x45\xa5\xc6\xea\x87\xa3\x28\x5f\x1c\x76\x98\xb6\x4b\xe3\x70\x5c\xed\x03\x51\xbb\xcf\xa6\x85\x66\xee\x96\xa6\x02\x79\x83\x67\xa6\xbd\x09\xc0\xee\x83\x57\x0b\xb9\xd0\x79\xe6\x90\xa2\xa1\x70\xa1\xfb\x08\xad\x73\x98\x4f\x7b\x90\xa4\x63\x36\x92\x6a\xf5\x19\x00\x51\x5f\x47\x4d\x3c\xfb\x1d\xf6\x96\x2a\xf4\x25\x11\x0c\x2e\xc3\xdd\x13\x92\xbe\xe7\x5e\xf5\x0b\x82\x47\x72\x4a\xc2\xdb\x51\x34\xd8\xad\x9c\x9a\x66\xb2\xee\xef\x41\xdd\x06\x76\x05\x94\x5d\xd8\x8a\x70\x33\xe3\x05\xb0\xb2\x08\xfe\x78\x18\xff\x36\x0c\x33\xb0\x0c\x68\x1e\x9d\x46\x7e\x73\x8d\xfc\xd6\x69\xe4\x37\xaf\x91\x4d\x6f\x73\x7a\x4f\x45\x2c\xa4\x83\xb4\xb1\x73\x49\xae\x71\xf2\x29\x36\x48\x7c\xfd\x4b\xf8\xc4\x3e\x50\xdc\xe8\x61\x44\xc6\x07\x0c\x49\x66\xff\x3b\x38\x90\xbf\xb1\xa4\x32\x52\x0f\x8e\x8e\x76\x62\x03\xf2\xe2\x1c\xa4\x29\xef\xc0\x91\x9e\x44\xcb\xf2\xf9\x1f\xcc\xcc\xf2\x49\x44\xe5\x2c\x96\xcb\x35\x38\x06\x4f\xd4\x13\x4c\x22\x58\x81\x77\x3b\xea\xae\x01\x23\xb9\xde\x02\x1e\x01\xe3\x89\x7a\x8f\x2c\xc6\xe1\x54\x4f\xc4\xc7\xa2\x41\x98\x2d\x4b\x5f\x60\xd1\xac\xc6\x04\x71\xb7\x22\x93\xe9\x00\x5d\xc7\xab\x71\x6b\xd6\x20\x34\x0c\x31\x62\xa0\x19\xa9\x06\x4c\xe6\x68\xf8\xcc\x00\xb7\x5c\x5f\xa0\x8c\x21\xf2\x0d\xda\x36\x30\xad\x1c\x8d\x15\x52\xfe\xd7\xc5\x32\xab\xb7\x62\x20\x03\x32\x98\x42\xed\x6f\x9b\x90\xb7\xdb\x36\xd0\x0c\x86\x2e\x6c\xba\x7d\x8a\x89\x1f\x91\x04\x9a\x91\xd2\xed\x7c\x38\x01\x35\x89\x4c\x9c\xe1\x82\x31\x79\xc4\xb6\x5f\x80\xd7\xc0\xe3\x0c\x41\x6d\x35\xa3\x4f\xe1\x3f\xf8\xb3\x2b\xaa\xa6\xbe\x1a\x04\xb0\xb9\x1e\x44\x8c\x1d\x4f\xa8\x27\xdb\xba\xe8\xe8\x63\xd8\xfa\x27\xd5\xd7\xa4\xfe\xef\x75\x56\x86\x29\xdf\x8d\x15\x28\x76\xc7\xee\x41\x38\x3b\x24\xdb\x9b\xe2\x57\x39\x8a\x7a\xed\x61\x95\xa0\x90\x98\xe5\xbd\x69\x3c\xef\x2f\x5f\x14\x16\xc2\x81\x8b\x98\x76\x31\x1d\x19\xad\x1b\x3a\x8c\xee\x88\x23\x0c\xaa\x76\x8c\x8d\xa0\x93\x9a\x72\xfc\x20\xad\x5a\xf1\x69\x44\xb6\xf6\x69\x30\xaa\x00\x11\x04\x96\x0c\x49\xe3\x9d\x69\x06\x20\x25\x63\xc0\x0b\x55\xa6\xbf\x86\xe0\x7e\x96\x2a\xbd\x80\x34\xa0\xad\xfb\xf7\x30\x39\xb1\x9b\xd8\xa9\xae\x67\x0b\x73\xad\x57\x4f\xcd\xaa\x43\x16\x3b\xf6\x0f\x70\x10\x00\x6f\x13\x90\xc5\xbe\x66\x09\xc9\x6f\xd7\xac\xdb\x8f\xc5\x27\xf2\x36\xc1\x08\x9d\xb9\x59\x6d\xed\x14\xe3\x25\xe5\xe5\x18\xa9\xde\x12\xb4\x08\x62\xc6\xb6\x59\x91\xb6\x64\xdd\x8e\x22\xc2\x19\xf6\xae\x87\x7d\xc1\x81\x9e\x02\x7f\xc4\xcc\x2b\xff\x6a\x50\x6a\xff\x4a\x00\x4d\x74\x66\x04\x00\x53\x41\x84\x18\x9e\x0b\x39\x47\xf4\x9f\xea\x9b\x86\x53\xb5\x4f\xe3\x94\xbf\x22\x04\xbf\xff\x78\xde\xc3\x52\x14\xbc\xb1\x32\xcd\xbf\x72\x58\x38\x3a\x2c\x9e\xa6\x3b\x14\xf3\xe5\x0a\x43\x17\x30\xce\xcb\xbe\x0e\xed\xe4\x1f\x91\xfb\xb9\xfd\x19\x86\x8e\x3f\xb7\xc6\xfe\xf8\xd0\x05\xc3\x08\x47\xf0\x22\x26\xfd\xf1\x31\xac\x90\x1d\xc5\x2f\x34\x0a\xc7\x70\xf9\xd4\x01\xf9\x78\x5e\x8b\x9f\xd5\x54\xe1\x3f\x4e\xf1\xab\x2d\x04\x21\x00\x59\x0e\x2d\x42\x6b\x32\x80\x99\x50\x9e\x52\x9c\x75\x59\x54\x4c\xb7\xe2\xa8\x53\xa3\x43\xcb\x5c\xe3\xd6\x20\xd6\x22\xdd\x56\x76\xfd\x95\x6d\x21\x58\xd9\x2e\xa6\x6f\xab\x22\xe4\x03\xf1\x63\x6a\x19\xbf\xdd\xbf\x2f\x4a\xcd\x17\x71\x99\xf9\x02\x6e\x87\xc3\x43\x75\x96\x5d\x6a\x7b\xc7\xae\x2b\xbe\x74\x57\xa6\xd5\x55\x5b\xc0\x93\x53\x5c\xd9\x56\x7a\x85\xbc\x93\x74\xe3\x51\xbe\x63\xb4\x4d\x66\xe2\xc2\x25\xbc\xa7\xa2\x9d\xa8\x6f\x9f\x9a\xaa\x59\x2f\x75\xf3\x2d\x55\x53\x59\x5d\x67\x5b\x2b\xe8\xe5\xc5\xf9\x96\x04\x81\x22\xc0\x81\xaa\x4c\xbd\xcc\xca\xe2\x4f\xe1\x0e\xd6\x73\xc9\xc2\x03\xaa\x2e\x96\xee\x86\xfd\xe8\x2f\xbf\x3d\x0a\x3f\x6c\x26\x76\x5a\x42\xdc\xce\x46\x6a\x16\xe4\xed\x5e\x0d\x32\xa2\xdd\x91\x9a\x31\x15\x9f\x22\x4c\x85\xbc\xaa\xd9\xea\x24\x07\x33\x8c\x8f\xd7\x31\x1e\xaf\xdd\x27\x8b\x4c\xef\xfe\xfa\xb1\xef\x63\xf1\x45\x8d\xd5\x71\x78\xcc\x6c\x01\x38\x41\xe0\x47\x12\x1c\x35\xff\x7c\x10\x51\x59\x44\xbb\x50\x8d\xe7\x26\x2a\x8e\x30\x2c\x88\xa8\x32\x6a\x1c\x0e\xaa\x68\xb2\xa8\xae\x40\x50\xd1\x57\xcc\xe0\xd4\x63\xd1\x18\xe9\xeb\xf0\xa8\x9d\x28\xd1\xa5\xfd\x05\xfe\x84\xe3\xe7\x05\xed\xc2\x72\x01\xb9\x95\x6a\x3c\xf6\x0b\xcd\x42\x37\xef\x1e\x5a\xb3\xc6\xe3\x62\xa4\x1e\x8c\xc4\xcd\x63\x87\xf5\xd8\xce\xe3\x84\x62\x80\xf0\x03\x2c\xc0\x09\xe0\x9b\x05\x86\xd2\xe4\x15\xd3\xa5\xab\xd0\x05\x01\x9e\xa9\xbe\x78\x97\xf5\x24\x5b\xfd\xe8\x07\x29\x6b\x58\xc9\x80\x6e\xc5\x4f\x23\xcb\x05\x19\x62\x0d\x43\xf3\x40\x78\xe5\xa8\x23\xd2\x30\x5b\x3e\x6e\xce\x3d\xac\xed\xa0\x68\x1b\xf5\x6d\x6b\xbe\xe5\xcc\x7f\x5b\x04\xc7\x3f\xa7\x14\xcd\x28\x00\xbb\x84\x00\xf6\x36\x90\x00\x6b\xf0\xf5\x79\x95\x0f\x1c\x5c\x0e\xdf\x1b\x04\xf8\x8f\x40\x33\xfe\x6c\xd0\x57\x23\x57\xd0\x52\x0c\xfd\xe0\x53\x6b\x1e\x28\xd1\x82\x80\x8a\x8c\x12\x00\x95\x4d\x3b\x90\x5d\x71\xc9\x03\x35\x48\xd4\x9f\x4e\xd5\xb1\x25\x35\xd1\xd9\x7c\x01\xf0\x91\xbc\x76\x4f\x20\x16\x4c\x65\x41\x22\x27\x58\x0e\xb7\x1a\xa6\x69\x79\x39\xa2\xd5\x05\xab\x60\xb6\xd4\x0a\x71\x76\x4c\x2d\x97\xdc\x67\x41\xe0\x40\x58\x97\x64\xe1\xca\x2e\x76\xd1\x76\x00\x21\x9d\x2b\x12\xde\x7a\xf1\x1a\xbb\xeb\x50\xcc\x67\xc8\x6a\x18\x5a\x5b\xbe\xb1\x53\xe5\x5b\x43\xb7\x67\xbc\x3f\x72\x43\x9d\xaf\x20\xde\x0b\xb6\xc1\x9d\x1b\xe4\x96\x9d\xd2\x9b\x8e\x55\xbc\xb5\x43\xd8\x46\x65\x6f\x10\x68\x6d\xbe\xa0\xf1\xb9\xa6\xed\xf9\x0f\x5a\x41\x18\x26\xfb\xfa\xec\x0c\xd0\x6e\xe0\x58\x14\xb7\xd7\x50\x48\x5a\x04\x12\xb6\x08\x4f\xe2\x1c\x0f\xc9\x7b\x5d\x02\xe6\x11\xad\x33\x04\x03\xc8\x75\xbe\x83\x88\x0b\xea\x33\x5d\xde\x51\xf6\x09\x4b\xb3\xf0\x63\xd6\x2d\xe2\xa4\x88\x83\x1e\x91\x00\xca\x3c\x7c\xfc\x69\x8c\xbd\xe9\xb0\xd2\xb5\xf1\xc5\x40\x75\x29\xfd\xa3\x67\x39\xdd\x5b\x12\x04\x66\x1e\x71\x0f\x4b\x43\x07\x2d\xe0\xfa\x96\xb6\x4c\x99\x8f\x54\xb5\xf1\x54\x2a\x77\xd5\x94\xb9\x83\x52\x12\xd2\x9a\xad\x5c\x6d\x08\x18\x0f\x49\x02\x01\x6a\xed\x3f\x0e\x54\xb5\x99\xcc\x17\x43\x67\xba\xed\xad\x6b\x0f\xbd\xeb\x6d\xec\x3b\xe3\x36\x3d\x3a\x12\x24\xd6\x99\x6d\x55\xad\x57\x65\x36\xf7\x13\x6e\x30\x1c\xb3\x34\x1b\x85\x7e\xd8\x91\x5a\xc2\x67\x50\x01\x3f\x05\x7b\xc2\xc9\xc2\x82\x3e\x06\xd0\x5a\xae\x5a\xdd\xb4\x13\xf5\xa2\xa8\x5a\xb5\xcc\xb6\x6a\xa6\xd5\x3e\x94\xdf\xb7\x15\xf6\xb1\xc6\xfe\xa4\x43\x8b\xbf\x50\xfd\xf7\xba\x94\x84\xd8\x8c\xd4\xa2\xa8\xda\x24\x3d\x12\x12\xdd\x3b\xbc\xed\x29\xeb\x19\xc7\x17\x1f\x0d\xe1\x76\xa3\x1f\xa9\x58\x0f\x11\xb3\xc2\xa5\x4f\xbe\x60\x0c\x35\x2a\x27\x5d\xa4\x48\x40\xf0\x74\x20\x0e\xfc\x88\xbb\x75\x23\x19\x0a\xfd\x73\xa2\x96\x38\xd9\x7d\x75\xfd\x7c\xdd\xa9\x87\xef\x7e\xaa\xf4\x01\x13\xa2\x55\xe0\x65\xcd\xab\x1e\xca\x36\xbd\x87\x72\x44\x32\x8a\x65\x99\xf2\xe8\xc8\x43\x08\xac\x96\x1a\x4b\xbc\x63\x6f\x95\x26\x52\x6a\xb8\x44\x3b\x3e\x5f\xc1\x1d\xc4\x8f\x1d\x07\x56\xe4\x93\xba\xd0\x88\xc0\x4a\x89\xa4\xc0\x22\x91\xa9\xb9\xa9\x1a\xc4\x50\x55\x08\x91\x98\x5d\x64\x45\x85\x46\x1d\xe7\xb8\x85\x2b\x2e\x8e\x7f\x69\xb2\xfc\xb5\xc9\x75\x80\x57\x4e\x38\x6a\x08\x21\x40\xbf\x7a\x9f\x54\x51\xe2\x2d\x7c\xc3\xc8\xc8\x06\x8b\x22\x46\x24\x79\x92\x85\xb8\xe8\xc1\xcf\xb2\x33\xc0\xd7\xec\x07\xc6\x8c\xf0\xed\x04\x76\xa2\x80\xbc\x13\xc8\x89\xa2\xce\xb6\xd4\x11\xd6\x62\x80\xb2\x08\x22\xbd\x98\x8f\xc4\x9d\xeb\x83\x56\xed\x00\xb5\xc7\x21\x93\xc7\xa8\xa3\x75\x38\xab\xb6\xe1\x9f\x75\x05\x88\xde\xdd\x6c\x65\x3e\x3d\x91\x40\x7f\x7b\xfb\xf4\x6f\xaf\x9f\xbf\xf9\x7f\xd9\x7b\xb7\xfe\x36\x6e\x64\x5f\xf4\x5d\x9f\x02\xe6\xca\xb6\xc9\x2d\x8a\x92\x9c\x49\x66\x46\x36\xed\x9f\x7c\x4b\x7c\x12\x5f\x8e\xe5\x24\x7b\x6d\x45\x6b\x4e\xb3\x1b\x14\x3b\x6a\x76\x73\xba\x9b\x92\x19\x4b\xe7\xb3\x9f\x1f\xea\x02\x14\xd0\x68\x4a\xce\x64\xaf\xb5\x1e\x4e\x1e\x62\x11\x8d\x3b\x0a\x85\x42\xa1\xea\x5f\x1f\xd5\x8b\xe3\x8f\xc7\xea\xe4\xe3\x87\x9f\x9e\x7f\xfc\xe9\xc3\x4b\xf8\xf6\x6c\xc3\x0f\x86\xec\xbc\xc1\x91\x97\x80\xa5\x61\x44\xe9\x4c\x25\x48\x22\x33\x7d\x9e\x97\x25\xc1\x9a\x24\x30\x0d\xa6\x92\xa4\xd6\xaa\x25\x3d\x2e\x04\x85\x34\x57\x3b\x43\xe2\x0a\xa0\x9b\x0c\x91\x2d\xcd\x2d\x10\x5e\xc4\x9a\xa6\x4a\xf3\x84\xe5\x24\xae\x02\xdd\x7f\x1b\x68\x10\x03\x28\x3a\x6f\x02\xeb\x0c\x00\x50\xac\x33\x0d\xef\xd3\xa0\xf4\xcd\xcb\x76\x9d\xb7\xf9\xa5\x34\xf7\xcb\x9b\x5f\x16\x15\x7a\xf7\x91\xa7\x52\xe7\x18\xf7\xc5\x4f\x16\xfc\xd8\xad\xdd\x93\x1e\x38\x31\x94\x2c\x81\x8b\x0c\xd8\xb4\x7d\x78\xcf\xac\x20\x86\x0b\xc3\xbf\x1c\x64\xa1\xdf\x19\x34\xd9\xe7\x2d\xf8\x5e\xd7\xf3\xaa\x5e\x3a\x01\x9c\x6c\xcb\xd8\xb2\x3b\x08\xe3\xd5\x05\x78\xa9\x52\x39\xba\x31\x4e\x1d\xc2\x38\x8c\xed\xdb\x21\x85\x38\x84\xa1\xbb\xbb\x87\xc9\xf3\xaa\xaa\x87\xe5\x48\x7d\xb6\x5a\x04\x5b\x5a\x3d\x95\xbf\x4e\xcb\x33\x42\x77\xbc\x91\x75\x60\x27\x48\xa4\x42\x29\xb7\x91\x08\x12\xce\x8c\xbe\x9b\xa7\xd3\x3d\x7c\x1c\x07\xbf\xba\x1f\x13\xb3\x83\xb1\x08\x85\x41\x1c\x58\x78\xd7\x05\x63\xf6\x78\x5d\x01\xa7\x28\x33\x1c\xa0\xdb\x8e\x3a\xcb\x02\x68\x9d\xe2\x49\xe5\x1d\x7a\x50\x04\x0f\x3e\x5d\x66\x22\x12\x26\x85\x7b\x5a\x17\x42\x1c\x83\xd1\x98\x71\xc0\xb9\x60\x67\x31\x1f\x75\x06\x14\x78\xdb\x10\xa4\x94\xf0\xb7\xe1\x98\x60\xf2\x80\xc4\xe8\x5f\x4c\x81\x38\x63\x22\x05\x3d\x76\xac\xd3\xf2\x8f\x28\x85\x33\xe8\x84\x85\xe6\x60\x49\xa7\x48\xe2\x79\x58\x90\x66\x61\x3e\x69\xda\x8f\xd8\x90\xa1\x73\x20\x70\x2c\x8c\xb4\x30\x75\xe3\x0c\xee\x5f\x46\xa6\x28\x08\xe0\xd8\xc9\xf8\xb6\x0b\x1c\x01\x18\xaf\x51\x16\x07\xc9\x12\xb4\x87\xa1\x39\x99\x8b\x27\x55\xe0\xe3\xe0\xe4\x32\x3c\x18\xbb\xd5\x3d\xc0\x19\x61\xd5\xfd\xc8\xe6\x45\xdb\x28\xd9\xbd\xb1\x05\x94\x51\x7b\x5e\x21\xdf\x6c\x76\x3b\xbb\xe0\xee\xb0\x4d\x55\xde\xa8\x44\xc1\x96\xc6\x08\x71\x24\xe4\x4d\xd4\xc7\x90\xfd\x31\xd3\xe3\xe2\x60\x5f\x05\x65\xf8\x55\xcc\x74\x98\x23\xd8\x99\x7f\x37\xc0\x47\x9b\xf5\x6a\x55\xe1\xc9\x3c\xb1\xe4\x8b\xa1\xf4\xa6\x7d\xf3\x00\x2b\x21\x76\xdc\x90\xd7\xdd\x51\x00\x81\xbd\xda\x35\x75\x06\x16\xb8\x7e\x23\x0a\x7e\x4a\xf3\x68\x57\x90\xd7\x77\x24\x0e\x43\xe8\x8d\x78\x3d\x11\x6b\x25\xca\x41\xae\x4e\x80\x34\x41\xb6\x53\xdb\x39\x2f\xf0\x4f\x70\x41\x77\x22\x1a\x8d\xcd\xd6\x30\x76\x7b\x00\x6f\x9d\x0e\x8e\x1e\x39\xfa\x48\xed\x3a\xd2\xde\x8d\xe7\x06\x2e\x3f\xea\x4c\x4c\x20\x88\xd9\x35\x00\x95\xb8\x5d\x85\xc3\x9e\x55\x50\x9c\x39\x60\x1b\x5f\xdc\x99\x2e\x4f\xf9\x57\xe6\x02\xb8\xd6\x81\xe4\x5a\x07\x2e\xde\x53\x64\x0d\xd5\xae\xb9\x99\xd3\x50\x84\xb8\x29\xa2\x8e\xf5\x2c\xd6\xbf\xd2\x3d\x5a\xb4\xbe\xb9\xe9\xf4\x3d\x46\xb5\xd8\x73\xa2\xdc\x30\xd4\xc4\x9f\x3c\x77\xd1\x2d\x47\xab\xbc\x6d\x20\x01\xc5\x39\x12\x7b\x78\x17\x12\x73\x3b\x57\x3d\xc1\x30\x31\xb7\xcd\x03\x86\x93\xb9\x09\xb9\x6b\x74\xb5\x1f\x5a\xf3\x18\x79\x20\x03\x63\x74\xe7\xb1\xe4\x93\xac\x6b\x4c\x8a\x42\xcd\x31\xda\x68\x01\x51\x37\x2f\x74\x66\xa5\x19\x19\x48\x13\x3f\xbd\xa8\x52\x8a\xcc\x3d\x1f\xab\x66\x91\xd4\x3a\xfb\x3e\x6f\xda\x77\x65\xb1\x09\xc4\x95\x15\x87\x57\xc7\xec\xcd\x45\xbe\x92\x25\x3c\x83\x9d\x2a\x9d\x60\xf5\x7d\x91\xaf\x5d\x8e\x98\x1f\x10\x4b\x0c\x05\x5d\x05\x31\x27\xdf\x71\x19\x4b\xbe\x98\x00\x46\xde\x14\xba\xc2\x80\xf2\x79\xb9\xd6\x9e\xcb\x24\xf6\xd0\x1c\xa0\xb6\xab\x46\x9a\x34\xc5\x5d\x8a\xa8\xd7\x9f\x03\x30\x66\xc4\xa4\x68\x0b\x73\xee\x07\x4f\x05\xef\x66\x37\x5b\x36\x43\x27\xd7\x8d\xbd\x3b\x06\x73\x4b\x18\xb8\x80\x9e\x4f\x6a\xd0\xb6\x4d\xd2\x85\x4a\x9c\x5c\x6a\xae\x88\x25\xdd\x18\xa5\xa2\x12\x32\x1a\xa9\x94\xa2\x23\x38\xc5\x0f\x8a\xc5\x60\x12\xb6\xa8\xab\x2b\xb8\xa9\xbe\xac\xeb\xaa\x1e\x0e\xe0\x64\xb5\x55\x0b\x0c\xc0\xbc\x54\xeb\x46\x4f\x08\xcf\x1a\xef\x49\xb8\x28\x04\xdd\x9d\x22\x40\xc2\x8e\xb2\x7c\xd2\xec\x36\x82\x15\x20\x27\x7f\x79\x25\xdd\x41\x67\xfe\xbc\xc6\x0b\x32\xf8\x5b\x49\xbc\xab\x1e\x58\x17\xa0\xa3\xbc\xcc\xde\x24\x9f\x08\xdc\xcb\xf6\xc8\xc2\xaf\xe3\x05\xd7\xbf\xc9\xc2\x55\x43\xdc\xc8\x3a\xfe\x87\x9d\x8e\xc0\x74\x3d\x62\xa3\xb7\x8c\xbf\xc3\x6d\xa3\x6e\x8b\x81\x7a\x6a\x76\x28\xfa\x89\x1d\xa9\x7a\x89\x7e\x64\x51\x40\x56\xe9\x37\x64\x8a\xfa\xad\xdb\xaa\x29\x88\x9c\x6d\x7c\x3b\x70\x79\xdf\xec\x85\x03\x85\xbb\xb0\x6c\xcf\x90\x74\x55\x6f\x50\x3c\xff\x8e\x9d\xad\x0d\x6d\xd5\x75\xb2\x69\xcc\x55\xd0\x0b\xa0\x0e\x17\x41\xab\x6a\x6b\x26\xea\x45\x05\x4f\x84\xfc\x0c\x6f\xa6\xa1\x71\x46\xca\x97\x44\x94\x16\x1d\x33\x2d\x74\x52\x37\x10\x58\x7f\xa2\x7e\xc2\xf0\xfa\x20\x71\x35\x36\x54\xbf\x91\xbe\x4d\x7e\xac\xa2\xad\x20\xb3\x61\xe0\xb5\x96\xd9\x29\x78\x36\xc2\x22\x80\x79\x8a\x9d\xbb\x89\xc5\xdc\xae\x40\xc6\x3e\x3d\xa3\x67\x61\xac\x89\xaf\x1b\x36\xe9\x85\x5e\x81\x1b\xde\xeb\x72\x9e\x97\x79\xbb\xc1\x96\x59\x0f\x03\x96\xb3\xa8\x60\xe1\xb8\x72\x69\x52\xaa\x99\x56\x4b\x5d\x9f\xb3\xad\xa8\x0d\x3b\x68\x2a\x14\xa3\xe7\x76\xcc\xb1\xf2\xa6\xca\x3e\xe6\x4b\x7e\x5b\x87\xa4\x13\x5d\x50\xd2\x81\xcc\xf9\x6e\x15\x64\x82\x04\x32\x5d\x73\xb9\xea\xfc\x3c\x2f\xc3\x9c\x9c\x48\xb9\x85\x22\xd5\x4c\x55\xde\x3c\x2f\x74\x52\x0e\x47\x14\x5d\x9c\xeb\x3b\xd7\x25\xe1\xa4\x71\x7d\xcb\xe4\xd3\x77\x32\x91\x49\x04\x9c\x12\xf9\x60\x01\xf1\x5a\x25\x6a\x81\x74\xe4\x11\x0b\x2e\x65\x22\x2e\xc5\x7b\xa0\x9b\xa1\x4c\x10\x22\x08\x64\xee\x89\x0c\x38\x03\xf5\x20\xc9\xbe\xaa\xab\xe5\x36\x95\xbf\xc9\xfc\x9c\x75\x9e\x9f\x4d\x6b\x47\xd6\xec\x44\xbe\xb6\x98\x8b\xd5\x51\xf7\x51\x02\x8f\xf0\x23\x73\x05\x7b\xa6\xdb\x2b\xad\x4b\xd9\x0c\x5d\xfc\xdc\x2b\x8c\xe1\x2c\xc8\x48\x7f\xac\xd2\xa4\x00\x19\x01\x0b\xb8\x7e\x8c\x3b\xef\x28\xe3\xe0\x91\x84\x0d\x00\x3b\x07\xad\xdd\xd3\xc8\x9e\xf9\x7a\xfa\x27\xb5\xf8\x48\xdd\xb8\xc8\x2b\x54\xb5\xab\x84\xd5\x1e\xd5\x0a\xe4\x03\xa7\x4a\xa7\x3d\x59\xcd\x83\x77\x49\x5e\x6e\x78\xd5\x9f\xa8\x93\xd6\x94\x04\xe7\xd0\xc4\x23\x01\xa9\x3e\x37\x3b\xdf\xea\x40\xc1\xa7\xa9\x19\x42\x79\x5c\x50\xf2\x52\xc7\x1a\xed\x25\xc6\xca\x60\x86\xba\xe9\x1e\x8c\x85\x9c\x0e\x30\x69\x5a\xd2\x09\x53\x2c\xc7\x64\x33\x59\x55\xab\x61\x68\xc0\x6c\xd1\x98\x6c\x18\xb9\x9c\xde\x04\x4c\xf7\x3d\xca\x25\xbe\x42\xc3\x9c\xc0\xcc\x98\x49\xb0\x33\xb3\xc3\xfb\x5b\xc0\xb1\x50\xa1\xab\x64\x23\x05\xaa\x84\x27\x19\x86\x3c\x34\x55\x7a\xc1\x1b\xd0\x47\xd4\xfe\x54\xf1\x89\x32\xc5\x80\x9d\x79\x20\xbe\x66\x36\xbc\x2f\xe2\x0e\x60\xd3\x59\x46\x35\x42\x8b\x5f\xc0\xcd\xda\x1f\xae\xf4\x89\x42\xb7\x56\xfb\xe1\xb4\x93\x65\x4f\x3d\x3c\x0b\x5a\x72\x79\x60\x9d\xb6\xb7\xde\x1b\xec\x35\x5c\xa4\x37\x86\x1d\x37\x7e\xa0\xfa\x84\x10\x7c\xf2\x12\x89\x93\x98\xb4\x05\x85\x1c\xe3\xeb\x90\x56\x69\x51\x35\x86\x10\xce\x35\x9c\x25\x88\x77\x58\xaa\x0a\xb9\xa9\xa9\x0b\x2a\x28\x8a\xea\xaa\x01\xc6\x6f\x4e\xa2\xa1\x75\x84\x85\xfc\x83\xdd\xc1\x28\x38\x0d\xc2\x5d\x60\xa4\x04\xe8\xdf\xc7\x8a\x8f\x5e\x4f\x51\xd8\xd0\x4b\xe7\x58\x55\xab\xd7\x99\xcf\xea\x48\x8e\xa1\xf1\xee\xd0\x34\xe2\x99\x66\x6f\x7b\x70\x8e\xc0\xc3\x0d\x1e\x2b\x36\x9c\xcb\x98\x9c\xa5\x78\x33\xb1\xed\x18\xce\x36\x1f\x3a\x53\x68\x57\x58\x67\xbb\xaf\x74\xae\x58\xa5\x17\x4d\x8d\xd3\xcc\xda\x04\x2e\x3b\x1c\x7a\x5f\x26\xe9\x22\xa9\x8f\xdb\xe1\x01\x6a\x69\x77\x07\x60\xef\x8d\xe2\xe2\xfd\xfb\xae\x25\x3e\x26\x9f\xe0\x18\xf6\x42\xd5\x2d\x4d\x00\xbb\x45\x1a\x06\x22\xac\xc9\xb7\x35\xf9\x3f\x07\x23\x81\xed\x3c\x24\x7c\x8d\xe8\x0e\x8d\xcc\xca\x48\xaa\x9d\x80\xd8\xe0\xa0\x74\xe4\xc8\x08\x0c\x86\x55\xf1\xe1\xaf\x24\xe7\x4a\xd7\xb5\x45\x49\xf1\xec\x7c\x7a\x8e\x1c\xa7\xfb\x0e\xf3\x00\xd3\xe3\x1c\x1e\x60\xa1\x11\x71\x97\xf9\xef\x3a\x53\x69\xd2\x68\xb8\x67\xa1\x3d\x8b\xc2\x9b\xa5\xa1\xc2\xbd\xbd\x20\x98\x4b\x92\x65\xae\x06\x43\x31\xd4\x4b\xdd\x22\xb6\x15\x5a\x81\x9b\xc9\x4c\x52\x70\xfa\xda\xac\x34\x97\xa0\xae\xa8\xc8\xb3\x7f\x4c\x67\x03\x7a\xc7\x0c\x1a\x69\xd6\xb3\x3d\x37\x4f\x80\x77\xc2\xd3\x83\x1a\x9a\xbb\x48\x03\x1d\x05\x88\x5d\xa2\xe7\x49\x09\x80\x5a\x56\x52\x1b\xf3\xeb\x09\xb4\x4e\x5b\x93\x0f\x18\xf2\xe2\x9b\x76\x39\x10\x5d\x42\x28\xc3\xf5\xb5\xa2\x3f\x99\xa9\x59\x9d\xb4\xe9\xb3\x65\xdc\xde\x06\x9f\x34\xba\x18\x3b\xb6\xc7\x27\x13\x12\xe0\x67\x1a\xf3\x91\x3a\xbd\xcb\x80\xcf\x3c\x73\x02\x27\xb7\x1d\x61\xfd\x2e\xe1\x26\xe4\xb5\x10\x15\x8b\xe1\x88\xe8\xbc\x8d\x70\x74\xcb\x56\x40\x2e\x76\xc4\xe5\xb2\x36\x8b\x7c\xde\x0e\x25\x0c\xa3\x38\x00\x0e\x04\xb7\xef\x96\xf1\x1c\x31\x3b\xbd\x63\xf6\x37\xe2\x4f\x9e\x58\xba\xbb\x0b\x69\x9e\x60\xba\xa3\xba\x8c\x63\xea\x92\x9c\x7c\xdd\x62\xf4\x40\x6f\x5f\x7b\xf9\x20\xc1\xec\xf3\x9d\x08\xd7\xf3\x73\x72\xa2\xc7\x6b\xac\x31\xae\xc9\x35\xb2\x11\x6c\x48\x3d\x43\x2b\x7b\x9c\x65\x3a\x1b\x84\xb8\x3b\x8d\x77\xda\x3f\x4f\xca\x67\x1a\xf8\x4b\x86\x85\xb1\x7e\x34\x17\x84\x23\xc2\x9d\x0b\x60\x9f\x13\xf2\x3a\xf9\x94\x46\x7c\x8f\x39\x24\x25\xec\xda\x27\x32\x30\xd4\xf3\xcd\xf1\xa7\x18\x8a\xc3\x4f\x94\xd9\x3b\x46\xd7\x68\xf3\x67\x0a\xc5\x3e\x51\x51\x1b\x57\x6c\x4f\x1e\x63\xde\x2a\x3d\x9e\xb2\x42\x42\x3d\xbd\x95\xeb\xab\x23\x88\xb5\x28\x54\x5c\x3a\x83\x6b\x9a\x66\x2f\xbf\x8e\xa7\x8a\x99\xbc\x16\xfd\x45\x80\xff\x38\x6c\xe1\x86\xbd\x5b\x56\xba\xcc\xd0\xe8\xd5\x3a\xb4\x78\x62\x06\xfa\xa6\x18\x62\xa5\xc0\x12\x55\x91\x71\x21\x30\x39\x11\xe5\xe8\x3c\x78\x60\xe8\xfb\x01\x59\xc0\xc2\x3d\x32\x37\x9c\xb7\x01\x02\xc9\xe7\x79\x9a\x94\x6d\x01\x16\x7d\x0e\xd7\x7b\x98\x97\x22\xf4\x6a\xc3\xc6\xed\x6c\xb8\xa8\x97\xab\x36\x2f\x75\xd3\xa0\xfd\x5a\xbe\xd4\x23\x5f\xc8\x88\xb3\x21\x20\x1e\x14\x2d\xc6\xaa\x03\xb3\xd2\x95\x31\x98\xf4\x1c\x14\x89\x84\x4f\x71\x64\x6f\x78\xba\xe3\xa9\xe0\x55\x6a\x18\x2d\xad\x07\x9b\x27\x5e\xe6\xd5\xba\xe1\x1a\xb3\x4a\x03\xc6\x00\x62\x13\xd1\x5d\xdf\xe1\xaa\x5b\xbb\x3c\xcc\xde\xd0\x79\x45\x56\x3f\x09\x3a\x1b\x4f\x14\xee\x44\x02\xac\xf3\x85\xb1\xff\x09\x62\x5d\x52\x5c\x25\x9b\xc6\xf2\xff\x16\x22\xd6\xfa\x19\x77\x4d\x46\xac\x81\x2e\xf4\xd0\xe9\x26\x5f\xe6\x45\x52\x93\xd6\xc2\x13\x0e\x0d\x45\xe4\x4b\xcd\x7e\x9f\x20\x31\x4d\x3b\xcc\xc4\xca\x24\x43\x27\x29\xc5\xb8\x08\xef\x5f\x29\x38\x75\x59\x5a\x84\xa7\xc9\xfa\x3a\x95\x09\x89\xe8\x8e\xdc\xc5\x3f\xf7\x90\xcf\x8c\x2c\x76\xfb\x56\x01\xff\xf0\x0c\x71\xd3\x43\xeb\xaf\x9e\x03\xb1\x7b\x18\x4a\x96\xeb\x58\xb6\x95\x5d\x83\xcf\x96\xff\x12\x05\xaa\x5e\x3e\x8e\xcb\xd3\xa1\x5c\xb8\x62\x7d\xd0\x59\xa5\xee\x4d\x19\x50\x9a\xba\xdc\x7f\xfb\x42\x41\x3b\x64\xdd\xdb\x86\x98\xe9\x46\x18\x84\xa1\xcb\xad\x99\x65\x48\xb7\x88\x16\x26\x1d\x60\xfc\x57\xec\x38\x46\xbf\xd0\x5d\x6b\x88\xeb\x40\xdd\x33\x45\xed\x51\x19\x98\xca\xb5\x95\x02\x5c\x75\xb2\x10\x80\x27\x11\x95\x97\xf3\xaa\x5e\x26\x11\x4e\xd6\xd1\x0f\x87\x4a\x06\xbe\x93\x74\x03\x9d\xdb\x58\xe9\x7c\x04\x9e\x0e\xe0\xfd\xe5\x1f\x03\x8a\x17\x92\x67\x67\x63\x08\xe0\x7f\x20\x63\xeb\xc6\xc2\x6b\x90\x82\xe6\x96\x40\xbb\x6d\xb5\x35\xa6\x2e\xd8\xfd\x08\xbb\x08\x27\x92\x0d\x6d\x57\xaf\xaf\xc5\x8f\x2d\xfd\x36\x02\xd9\xcd\x68\x74\x5a\x9e\x71\xd8\x58\x69\x7e\x81\xd2\xcb\xee\x6e\x69\x55\xa9\xfb\xfb\x08\xd0\xb0\x2e\xf7\x6b\xbd\x87\x1a\x4a\x02\xb8\x6f\xd0\x4c\x80\x9c\x7b\x40\x75\xe9\x56\xa6\x21\x6e\x64\xf1\x5f\x1d\xea\xbe\xfe\xb4\x2a\xf2\x34\x6f\x8b\x0d\x92\xa3\x29\xb1\x00\xf0\x23\x12\x67\xa9\x7e\x19\x9c\x9e\xf0\xd6\x30\x3b\x2e\xa2\xb0\xf9\x40\x3f\x57\xfa\x1d\x0d\x65\x56\x01\xac\x43\xec\x55\x06\x8a\xc5\x1e\x64\xe0\x61\x04\xcc\x50\xf2\x33\x9c\xa4\x7a\xe2\xba\x4e\x5d\x19\xb1\xd7\x54\xb5\x06\xa1\x08\xcd\x22\xb1\x4e\xfb\xa0\x97\x8f\xd4\x4d\x18\xfd\xdc\xe5\x27\x7a\xa7\x96\x46\xa1\x6d\x9d\xa9\x59\x3d\xc5\x2a\xd5\x11\x14\x28\x38\x9c\xb1\xf9\x44\xe1\x4f\x59\x8b\xd0\xd6\xb9\xbe\xa4\x50\x4d\x79\xd1\x92\xa8\x60\x4e\x71\xb9\x38\xb8\x93\x08\x93\xa3\x47\xa3\x75\xae\xdb\x77\x45\xd6\xd9\x30\x5d\xdc\xb2\x5e\x5a\xe3\x95\x81\x8c\x7d\x2b\x53\x5e\x6d\xb3\x6b\xee\x9a\x77\x0b\x43\x99\xcf\xaa\xbc\xc2\xd9\x8b\x90\x07\x34\x6a\x26\xd4\xf7\xc5\xbb\x92\x2c\xc5\xb4\x28\x09\x9b\x75\x2b\x16\xea\xc6\x2a\x5f\x9e\x57\xcb\x19\x01\x20\x6b\x74\x4e\x60\x28\x2f\xb4\x9b\x65\x33\x5d\xbb\x05\x71\x9a\x5d\xdc\x06\x74\x32\xc2\x54\x56\xb7\x60\xb8\xf8\x2c\x60\x5c\x6a\xd8\x54\xb8\x65\x32\x5d\x68\xa8\xcc\x22\x00\x03\xcf\x4b\x50\xad\x07\x2a\x9f\x35\xbd\x31\xcc\xea\xbc\x3c\x6f\xd4\x2c\x49\x2f\xb0\xbd\x55\x52\x4a\x99\x09\x8e\xfe\xed\xcb\x69\x68\x64\xda\xbb\xea\x1c\x4b\xa4\xad\x75\x9b\x2e\xf0\x71\x11\xff\x86\xbc\xef\x2e\xa3\xe6\xeb\x4c\x01\x55\x21\xd7\xdf\x55\x72\x63\x37\x2f\x27\x89\x6c\xa6\x43\x37\x7d\x9e\x8c\x60\x58\x1d\x47\x53\xac\x8a\xec\x39\xdc\x3c\xab\x22\x43\x73\x29\xac\x1c\x13\x6d\x4b\xd2\xe7\x8f\x8a\xdc\xbf\x2f\xf2\x8a\xd0\xc0\x66\x84\x02\x5d\xe8\x37\xec\xc6\x6f\x86\x7b\xd8\xec\xa2\x37\xbf\x49\xec\x03\x98\x35\xb3\x6c\x53\x91\xf9\xf4\xb7\x33\x9b\xc1\x56\x7b\x81\xd5\x5e\xe0\xe8\xfc\x2a\x2f\x46\xe2\x56\xfc\x59\xf4\xf9\xf4\x82\x99\x13\xdc\x51\x56\x49\x49\x3f\xbd\xa7\x5b\xa4\xbb\x1b\xe1\xfa\x4f\x2d\x58\xde\xe3\x83\xb3\x0a\x9d\x68\x6c\x42\x70\x62\xbd\x11\xc5\xcc\x82\xab\x22\xf3\x6c\xdd\xab\x16\xc0\x45\x56\x75\x75\x99\x67\x5a\x25\xea\xff\x3a\x79\xf7\x76\xaf\x49\xe6\x6c\x9d\x64\x76\xc2\xe4\x5c\xb7\xdf\x8b\xcb\xc8\x18\xe4\x55\xb8\x3e\x68\x73\x8c\xc3\x7e\xb0\xef\xb6\x60\xba\xd6\xac\x8a\xbc\xf5\xb6\x90\xd9\x51\x57\x95\x34\x6e\x5f\x6d\xa8\x52\x78\xf9\x1b\xa2\x72\x1b\x8c\xba\xbf\xab\xab\xf5\x6a\xac\xf2\xb2\x69\x93\xb2\xcd\x11\xb0\x5d\x5c\x41\xd1\x1d\xb9\x97\x43\x05\x21\x5e\x03\x5a\xc4\x1b\xc3\x54\xd9\xa0\xae\x96\xe4\x90\xdd\xfa\x8a\x63\x05\xad\xe1\xa2\xf8\xfd\x51\x4f\xd5\x36\x7f\xe9\x49\x9a\x14\x05\x56\x39\x52\x47\xd8\x9a\x84\x6f\x36\x44\xb0\xe3\x96\xd7\x59\xd3\x37\xdc\x37\x07\x5b\x5c\xea\xab\xe7\xf6\x1b\x19\x2e\xba\x6e\x39\x6d\x8e\xcb\x77\x33\xf2\xad\x1b\xc5\xfe\x08\x4d\xfa\xbd\xcd\x11\x35\xea\xff\xed\x6c\xac\x96\x6a\xaa\x86\x97\x55\x9e\x39\xaf\x5a\xd7\x1a\xf5\x83\xde\xc3\x7c\x2b\xc6\xa3\xd0\x88\xf1\x48\x9e\x20\x37\x52\xa5\xc3\x2b\xef\x59\x6b\xac\xea\x6a\x65\x88\xc7\x05\x5e\x87\x40\x76\xe0\x28\x58\xad\x26\x70\x33\x1b\xee\xff\x07\x9e\x74\xc3\x5f\xb3\xdd\xd1\x57\xfb\xa3\x3e\x44\x68\x47\x5b\x88\x84\x39\x5c\x9e\x1e\x9a\xe3\x88\xd0\xa0\xc5\x86\x36\x52\xb3\x1b\xe0\xe8\xd4\x34\x76\xe6\x4e\x56\xf8\x29\xb2\xc3\xb9\xa0\xe3\x5f\x2d\x20\x98\xdd\xed\xc1\xa6\x34\x4b\x49\xbb\xf2\xa3\xb9\xbd\x23\x6e\xc4\x03\xb5\x4a\xea\x64\xa9\x8d\xc0\x70\x9e\x5f\xea\x12\x0d\x09\xcb\x0d\x79\x8d\x19\x66\x40\x00\x15\x70\x81\x34\x17\x45\xd6\x29\x80\x42\x15\xe1\x25\xac\x2f\x1a\x09\x74\x33\x1d\xc3\x1c\x4a\xe6\x2d\x96\xb6\xee\xb2\xbe\x3e\x63\x02\xbd\x7b\x3d\x57\xa0\x54\x33\xf7\xed\x85\x2e\x32\xeb\xca\x86\x91\x61\xe7\x45\x72\x0e\x57\x71\xdd\x8e\x29\xad\x51\x09\x79\x53\x20\x02\x46\x5e\xa6\xc5\x1a\x18\x0d\x0e\xc9\xf6\x0e\x20\x3a\xf0\xb6\x04\x46\x93\x89\x6a\x74\x5a\x95\x99\xcd\x31\x9a\x98\xf2\x02\x8e\x0a\x74\xcc\x1b\x86\xcf\x40\x4f\x1b\x68\x69\x86\x4f\xab\x08\x8f\xe6\xb5\xd2\x4c\x3c\x39\x83\x66\x68\x59\xb5\x1c\xed\xa9\x59\xa7\x12\xa7\x18\xc7\x20\x22\x84\xa2\x7f\xe5\x18\x9f\xff\x79\x8c\x4e\xe0\x95\xbf\xc9\x90\x8b\x9d\xc5\xa5\x87\x88\x3b\xe3\x24\x16\x06\x79\x19\x57\xcd\x33\xd6\x0b\xa7\xcb\xd5\x10\xdb\xeb\x7a\x96\x90\x0b\x15\xe5\xbd\x37\x45\xad\x3e\xf5\x4b\x64\xf7\xb6\x82\xed\x8d\xf0\x93\x55\x8a\x5c\xd7\xa1\xac\x25\x55\x7b\xd8\x74\x1b\x11\x53\xd0\x6d\x22\x56\x99\x60\x73\xc2\x3b\xa5\xeb\xb7\xda\x31\xd0\xeb\xe4\x46\xb3\x8b\xeb\x6b\x5a\x06\x5b\x88\x76\xcf\x4b\xa4\xc3\x38\x3a\x0b\x2d\x60\x96\x37\x69\x52\xb3\x67\x56\xd3\x76\x96\xdb\x79\xcd\xe0\xc3\xb7\x5c\x70\xeb\xab\x12\x5f\x79\x89\x9e\xc4\x29\xe2\xbd\x89\x34\x8d\x0e\x4a\x1c\xf6\x12\x79\x0a\x70\x8d\x37\x68\x9a\x14\xf4\x22\xf0\xfb\x95\x84\x29\xdd\x7a\x92\x7a\x33\x1c\xc5\x89\xf4\x0c\x1d\xbf\x58\x07\xe7\xcf\x98\xf7\x06\xdf\xc0\xa2\x83\xf9\x55\x49\x3a\xc4\x6a\x2e\x3f\x83\x08\x8d\xc7\x07\xc8\xcc\xff\x5c\x27\x05\xb2\x9d\x40\x7f\x88\x2d\xf5\xcd\x6f\xe3\x26\xb8\x89\x28\x07\x03\x77\xb6\x3f\x38\x9f\x5f\xee\x9c\x49\xf7\x18\xeb\x72\x15\x9b\x6b\xe1\x10\x06\xdd\x87\xbf\xd0\x5c\x4e\xae\x23\xc6\x13\xb9\x3a\x01\x0b\xc2\x2f\xf0\xa3\xec\xa1\x80\x13\x54\xa5\x7a\x0b\xf8\x13\xb9\xea\xd8\xf7\xdf\x5a\xbe\x54\x0b\xfe\x2d\xee\xed\x60\xa9\xfe\xae\xd4\x41\x0b\xf9\x98\xf7\x48\x67\x2d\x2c\xbe\x50\x30\x6f\x02\x1e\xda\x4e\x09\x33\xbb\xf8\x28\xfa\x21\x17\xba\xf3\xd0\x19\xec\x07\xdd\x90\x8b\x9a\xe7\x7b\xe9\x8f\xdd\x07\xfc\x3e\x09\x3c\xeb\xa1\x17\x92\xe9\x04\xa3\xed\x76\x79\xab\x6f\x7e\xa7\x8b\xdf\xe5\xa0\x53\x99\xcb\x68\x83\x64\x31\x84\xd0\x98\x75\xe3\xee\xf7\x6d\xa5\xf2\x72\x5e\xac\x75\x99\x6a\x95\xf8\xca\x7c\x8a\x22\xe4\x06\x83\xba\x83\xa0\x52\x4f\xc7\x1e\x6e\xa0\x99\x91\xfa\x88\x93\x92\x84\xe8\xd6\x6e\x2c\x6c\x96\x8f\x42\x94\x29\xff\x4c\xea\x42\xc0\x98\xff\x7c\xe0\xa9\x53\x96\x77\x62\xbb\xad\x6f\x97\xe1\x4e\x0b\x61\x5f\x7c\xd8\x9f\x22\x5f\x91\xff\xea\x58\x75\x41\x7f\xe4\xc3\x64\xdf\x7f\x3d\x55\x08\x54\x20\xa5\x6e\xb0\x26\x54\xef\x1e\x6d\x79\x7b\xc0\x83\xcc\x7b\x68\x8b\xae\x36\x9b\x45\x57\xb3\xdf\x46\x1d\xc3\x57\x57\x7c\x02\x81\xc3\xb6\xd4\x00\x19\x4c\x25\x0e\xf4\x6a\xf6\x1b\x4f\xfb\x3d\xf9\x6e\x26\xb5\x39\x11\x56\x63\x4b\x41\x75\xc1\x5b\x9b\xb5\x08\x27\xcb\x25\xd6\x0a\x80\x82\x3d\xb0\x55\xb5\x75\x92\x5f\x72\xec\xb5\x27\xa0\x44\xb2\x81\x94\x8f\x70\x68\x60\x29\x2c\x15\xf8\xed\x9b\x0d\xac\xc0\xd7\xce\x33\xb4\x22\x83\xf5\x52\x9f\xc6\xdf\x02\xd8\x2e\xd5\x76\xf0\x6d\xf5\x53\x99\x55\x91\x8e\x85\x72\x46\x64\xd3\x87\xd9\x2d\xa4\x1d\x3f\xe6\xc7\x58\xeb\x2d\xf5\x74\x18\xcc\xb6\x0e\x6e\x79\x52\xb3\xcf\xfb\xe1\xcb\x25\xb8\x7f\x4e\xf2\x4c\x1d\xa9\xb7\xc9\x5b\x9f\x37\x45\x3b\xd9\xdb\x01\x2b\xd8\x2c\x92\xe6\x7b\xe4\x5b\x5b\xa9\x7d\xe4\x1c\x1e\xe1\x95\xc8\x2b\xb5\x8d\xc8\xed\x3b\x43\x03\x87\xe4\x9d\x99\x9c\xf5\x9d\x9b\xe5\x49\x13\x7f\x2d\x84\x2f\xf4\x2a\x05\x82\xab\x27\x25\x91\xe7\x76\x47\x7a\x22\xa0\xa4\xc7\xea\x40\x3d\x55\x7b\x87\xea\x08\xad\x27\xe5\xac\xbd\x2e\x4b\x9e\x8e\xe6\x22\x5f\x1d\xb7\xd5\x32\x4f\x5f\x97\xb1\xa5\x37\x7d\x20\x33\xc8\x91\x7d\xae\x8f\x3d\x10\x31\x56\xba\x7d\x1d\x72\xa6\x4a\x3c\x43\x18\x80\x05\xc1\xde\x7e\x46\xb0\x59\xcb\x53\xfa\x77\xa9\xec\x2c\x2b\x51\x40\x89\xa4\x0b\x7e\xef\xa1\x39\xe8\x80\x98\x53\x3a\xed\xae\x90\x8b\x59\xff\x11\x4b\x78\x78\x98\xbc\x2e\x57\xeb\xd6\xca\x69\xf4\xa9\xf1\x57\x34\xa3\x20\xab\xb8\xfb\x80\x1b\xe2\xb8\x8e\xd3\x36\xbf\xcc\xdb\xcd\xd0\x0d\xfd\x26\xee\x7c\xe2\x65\x47\x5e\xc9\x67\xf0\xcf\xba\xce\xe7\x1b\x54\xd8\xfa\xc2\x82\x7d\x03\x5e\x25\x35\xe1\x4e\xe1\x47\x65\xee\xd5\x09\x2c\x24\xdc\x82\x51\x31\x4f\x4c\x52\xca\x4e\xcf\x17\x3a\xbd\xf0\x56\xba\xbb\xad\xef\x46\x1f\x76\x17\xa3\xdc\x88\xab\xee\x24\x1d\xb4\xc5\x95\x82\x0e\xe8\x9f\xef\x38\x80\x4e\xcf\xef\x46\xa8\xcb\x04\x5f\x51\x3c\x29\xbc\xef\x95\xe6\xce\xd8\x26\x5d\x5c\x13\xa7\xdc\xee\xda\x7d\x4c\x3b\x52\xa6\x33\x27\x8d\xa3\xa4\x90\x98\x7d\xcc\xb7\x5b\x37\x56\x71\xe6\x5b\x88\x14\xd3\xae\xd9\x78\x45\x66\x93\x82\xc1\xcb\x4a\xbf\xc7\xfb\x6c\xbc\x4a\x92\x1f\x5d\x85\x98\x10\xab\x8e\x1e\x98\x0c\x9b\x74\x5d\xbd\xe7\xeb\x05\xe8\x23\x34\x69\x3f\x39\x08\x28\xae\x26\x78\xd8\xea\x48\xe3\xf8\xba\xc5\x7a\xe1\x2e\x72\x84\x6d\x7f\xcc\xad\x45\x11\x24\xf0\x91\xab\xef\xd6\xe2\x4b\xea\x0a\x24\x4b\x9f\x07\x09\x82\xb3\xdb\x81\xa1\x60\xde\x9b\x7f\xb3\xbc\x8e\x51\x5c\x11\x71\x53\x66\xf8\x16\x2b\x20\x84\xcf\xaf\x3d\xfe\x5d\x61\xbe\x3e\x9d\x70\xb3\x8a\x3c\xbd\xc2\xa5\x6e\x09\x6f\x87\xa4\xc0\xb7\x2b\x39\x6c\x56\x84\xe8\xe7\xe2\xd3\x0f\x97\x13\xd0\x6e\x35\xf9\xa5\x06\x3c\xe4\xa7\x8a\x73\x3d\x66\x44\x23\x33\x4f\x9c\xc6\xe8\x33\x23\x19\x16\xcf\x54\xdc\x56\x7d\xd5\x7e\x80\x70\x15\x50\x6f\x5b\xa9\x27\x7e\xad\x26\xc5\xd6\xe9\x53\x8c\x3f\xc9\xf8\x1f\xc9\xa0\xee\x64\x46\x06\xfc\xb2\x84\xf8\x78\x9e\xf6\x74\x19\x7d\x64\x15\xa2\xb7\x8d\x90\x18\xae\x89\x8c\x47\x8c\xff\xa1\xd4\xb5\xb7\x97\x3f\xb2\x5a\xf0\x9b\xae\xa6\x54\x52\xfb\x72\x82\x6c\x2d\x70\x7c\x13\x59\x90\xa0\xc2\x17\x9e\x52\x27\x86\x19\x2c\x27\xf3\xbc\xcc\x86\x59\x5e\xd3\x99\x6e\x8e\xf4\xbd\xc3\xd1\x18\x6c\x9f\xba\x5a\x6d\x86\xc6\xe6\xec\x9d\xe9\x3f\x52\xc1\x42\xfb\xef\x40\xdc\x6c\x75\xa9\xed\xa5\xc3\xa4\x8d\xd5\x1e\x10\x3c\x7c\xbf\x7f\x1f\xfe\xb5\x00\x48\x16\x9e\xe8\x29\x92\xff\x11\xa9\x91\x6e\xbc\x4e\x6d\x2f\x0a\x0a\x11\x1c\x92\x11\x76\xb0\x4d\x9a\x9a\x11\x7d\xe5\x41\x41\x3e\xf3\xe7\x11\xfe\xf9\x44\x39\x07\x60\x25\x61\x94\xa2\xbb\x18\xab\x5e\x45\xf6\xb0\x5b\x40\x71\x7d\x9c\xc7\xd7\xc1\xc9\x56\x5b\x27\x1d\xb6\xd2\x51\x67\x19\xe4\x05\x72\xde\x9d\xf1\xb9\xe9\x21\x74\x6e\xfe\x05\xd3\x6c\x91\x53\x6b\xb3\xc9\x62\x43\x9f\xf7\x8d\xfc\xc8\xc1\x7c\xa3\x65\xb0\xe0\xa4\xab\xaa\x61\x75\x1b\xc6\xd0\xeb\x68\xbf\x73\x3c\xd4\xf3\xb2\x81\x57\xb8\x92\x4e\xf2\xae\x42\x23\x38\x86\x3c\x7e\xda\x77\x84\x9b\x69\x9d\x2a\x92\x86\xd5\x61\x60\x2a\xf0\xc5\x7c\xda\x59\x99\xdd\xe3\x44\x78\xa5\xbd\x5b\x3d\x28\x0a\xbb\x4a\x6e\x2f\xb6\xf7\x67\xb5\xbf\x27\x3a\x10\xda\x41\x38\x61\x36\x29\xdb\x97\x19\xa0\xae\x5b\x01\x55\x40\x8a\x79\x30\x5a\xfe\x79\x09\x55\x79\x47\xa0\x47\x91\x8e\x68\x9c\x2d\x91\x24\xfa\xfb\xf7\x99\x9b\x4b\x03\x7b\x0f\x29\xed\x89\xb2\xcd\x4b\x6c\x3e\xa9\xde\x20\xbc\x35\xc6\xdf\x38\x1c\x05\x2e\x49\xa1\xb9\x87\x50\xf4\x9b\x8e\x3c\x09\x3b\x02\x27\xad\x21\x9b\xf8\x71\x3c\x92\x66\x20\xd1\x3e\x3f\x56\x31\xfb\x2a\x54\x38\x78\x60\x6d\x02\x40\xf0\xd0\x4c\xee\x9d\xfa\xdd\x79\x26\x90\x35\x59\xcc\xb8\x5d\x33\xef\xa3\x4e\xf0\x73\x14\x9c\x8f\x8b\x42\xc2\x46\x79\x57\x78\x70\xeb\x5b\x4e\x2c\x2a\xc0\x70\x84\x4a\x74\x4a\x67\xa7\x7e\xc0\x39\x6d\x74\xf1\x8f\xac\x2a\x29\xa4\x8b\x55\xcf\xbe\x7f\x71\xfc\xf1\xf5\xdb\xef\xd0\x7b\x1a\x6c\x49\xf9\xb8\xc5\xfb\x2f\x3d\x47\x5b\xdd\xa0\xaf\x12\x64\xc7\xc5\x40\x09\xd8\x35\xeb\xb0\x21\xd1\xa3\xda\xbf\x34\x29\x53\x5d\xe8\xec\x08\x6f\x19\xa8\xeb\xea\xbe\xd6\x42\xb2\xff\x62\x8b\x49\xe1\xab\xad\xaf\x2c\xf3\x6c\xd2\xc7\xa2\xc1\xa3\x38\xa6\x70\x35\xfb\x6d\xc2\x3d\xa2\x6d\xf6\xc8\x0a\x9f\x2e\x64\x2e\x88\xb8\xb3\xdf\x26\x36\xf2\xbc\xab\x8c\xdf\x96\xc7\x16\x51\xd3\x34\x2d\xe9\x0f\x31\x2f\xb1\x02\x46\xd7\x91\xfb\x04\xbf\x3b\x24\x13\xb0\x35\x84\xdc\xe8\x57\x22\xf3\x9a\x6f\x22\x27\x21\x97\x42\x5e\x84\xca\x81\x7f\x5c\x0e\xb2\x87\xbd\x37\x9d\xaa\x75\x99\xe9\x79\x5e\xa2\x0d\x8d\x29\x51\xf9\x86\xa4\xe2\xac\x88\xa8\x14\xff\xb0\x26\xb1\x4f\x81\x28\x34\x88\xbc\x00\x31\x1b\x30\x8e\x6d\x87\x14\xc2\x53\x88\x8f\xf9\x38\x45\xfc\x92\xcf\x93\x30\x76\x9a\x53\x3b\x48\x56\x99\x1d\xaf\x56\xf0\x9e\xeb\x74\xde\xd2\x56\x04\xe2\x2e\x64\x19\x06\xa9\xf2\x20\xaf\x1e\x80\x85\xbc\x6f\x04\x4f\xf8\x04\x36\xaa\xd5\x6d\xe0\x12\xcb\xe4\x42\xc7\x36\x4b\x7e\x5e\x56\xb5\xfe\xa0\x93\xcc\x21\x4c\x74\x95\x1b\x18\x75\x48\xa8\x31\x24\x11\xb3\x3f\x9f\x9d\x7b\xd7\xd6\x68\x7b\x63\x8e\x52\xa8\x6e\x84\x73\x6b\xd6\xab\x55\xad\x9b\xc6\x9c\x3e\x4d\x10\x1b\xc4\x2e\x5d\x8f\x3a\xee\x4b\xb5\x70\x56\xf9\xc6\x0c\x82\x4d\x3e\xfa\xf9\x0b\xbb\xf2\x7a\x38\xbe\xb1\x6e\x82\x5b\x2f\x84\x8f\xda\x90\x19\x50\x55\x2b\x1e\x1c\xac\x30\xed\xe8\x59\xd2\xe8\x8c\x81\xce\xcc\x57\xc3\xf3\x6c\xdc\xbb\x5a\x27\xd9\x5e\x55\x42\x25\x49\x09\x91\xe4\xf3\xb6\x61\x89\x88\xaf\x6d\x05\x9c\xd4\x4d\x72\xc5\xd3\x8b\x46\xb3\xf7\xef\xab\x7b\xfe\xb4\x23\xd8\x86\x39\x91\x39\x05\x2e\xc3\xcd\x56\x07\x6c\x56\x95\x99\x66\x78\xaa\x7c\xc0\x30\xf3\x45\x68\xa2\xcd\xad\xf3\x09\xdc\x3e\xf7\xf6\x04\x74\x98\x23\x0d\x21\x9b\xd0\xf6\x82\x2a\x4e\xf3\x33\xb1\xc7\x6c\x92\xdb\x68\xb9\x7a\xaa\x4e\x07\x83\x33\xe5\xf3\xe1\x38\x0f\xbe\x19\x75\xcf\xc8\x68\x17\x24\x84\x9a\x27\xb8\x6c\xc9\xec\x60\x86\x3b\x76\xa0\x88\xa3\x2c\x80\xf3\x08\xc7\x87\x11\xf2\xba\x4e\x85\x81\xe3\x61\x40\x4e\xb0\xc4\xe4\x9f\x65\x98\xf2\xad\xd0\xbc\xa8\x36\xbf\xa3\xbb\xeb\x76\xe5\x39\x68\x6b\xdd\x3c\x9c\xc0\x03\x63\x07\x65\xcf\xd5\x76\x07\xcb\x4b\x36\xd8\xac\x35\x52\x3e\x3c\x9a\xdd\xe6\x98\xdf\x87\x6d\x73\xcf\xc7\x91\xb1\x90\xf1\x58\xf7\x58\xbe\xb5\x8c\x30\x0e\xb1\xbb\x1f\x63\x26\x53\x74\xe8\xb9\xde\x48\x1f\x4a\xce\x95\xa1\x6d\x97\xac\x4e\x98\x73\xdc\x3a\x41\xa8\xdb\xbc\xe3\xe4\xdc\x38\xed\xe7\xa5\x06\xaf\x49\xe2\x4b\xd2\x34\xda\x1d\x0f\x11\xb7\x02\xd7\x9f\x57\x75\xb5\xf4\x08\xa0\xdd\xac\xf4\x18\xdd\x79\xac\x80\x17\x63\xfe\x4e\xef\x1e\xe3\xcb\xc0\x59\xa2\x95\x78\x9a\xf3\x3e\xe7\x26\x10\xf6\xc6\x92\xa8\x49\xa3\xc9\xd4\x5e\xad\xeb\x14\x7c\x07\x37\x2b\xb8\xb1\x0e\xd6\x65\x56\x0d\xd4\x53\xe7\xbc\xa2\x8e\xa4\x17\x36\xba\x7c\xf4\x16\x20\xf8\x91\x23\x57\x9c\x38\x74\xa0\x22\xaf\x35\x02\xda\xad\x1b\x8d\x41\x44\x41\x28\xb5\x56\xcf\x69\x5b\x17\x7b\xbf\xab\xab\xaa\x7c\x40\xa1\x18\x4b\xad\xb3\x42\x37\x0d\x3b\x0c\x74\x10\x1c\xb6\xc5\x5d\x87\x41\xc6\x94\xc6\x6c\x9a\x89\x39\xa4\x69\x66\x77\xca\xd5\x53\x25\xed\x35\x61\x61\x30\x21\x78\xd5\x50\x47\xfc\x21\xf4\x9e\x95\xf8\x0c\x1c\x30\x60\x3a\xf5\xfb\x17\xb0\xa4\x3b\xba\x69\x82\x2e\xc0\x8e\xfa\x51\x7c\x7c\x02\x8a\xa0\xdf\xfa\xb4\xc7\xdb\x87\x08\x89\xfd\x7a\xb6\x4c\x53\xef\xbc\x78\xca\xc0\xce\xc3\x25\x35\xf0\xd9\x3a\x2e\xd1\xdd\xe1\xc6\x29\x5e\x6c\x3c\x44\xa9\xb2\x13\xa4\xed\x1c\xad\x7b\x51\x31\x90\x98\x9e\x41\x60\x8f\xf5\x4a\x25\xaa\x36\x3b\xbf\xb1\x18\xf8\x64\x83\x8c\xfe\xe2\x2c\x20\x56\x2b\xd0\x9b\x58\xd3\x62\xeb\x8b\x97\x5e\xa8\x61\xad\xb3\x0a\xdd\xe9\xc8\x0e\x1f\x25\xc7\xcb\x3c\xd5\xca\x54\x9d\x8c\x58\x78\x48\xca\x36\x0f\xac\x6a\xfb\x5d\xab\xf8\xcc\xa0\xf9\x76\x4e\x51\xce\xf8\x56\xd4\x37\xde\xea\x24\x1d\x77\x35\xc6\x35\x12\x49\xd7\xd7\x71\xf7\x63\x0b\xfb\x59\xe0\x34\xff\xc9\x22\xa1\xc5\xf5\xaf\xc0\x7b\xcc\x1d\x46\x2a\x57\x51\xe8\x6f\xcf\x56\x99\xf7\xac\x0f\xd0\x80\xec\xc9\x5d\xce\xb0\xeb\x86\x32\xfb\xe5\x4d\x7a\x0f\x73\x16\xff\x72\x57\x12\x53\x11\x97\xff\xcf\x6c\x65\x08\xff\x88\xb5\xf8\x12\xbf\x7e\x67\xb6\x49\x24\x6c\xc4\xae\x3b\x44\x04\x38\x02\x0b\x06\xec\xe1\xe8\x6e\x07\x63\x82\x04\xd5\xef\x04\x22\x64\xed\x5c\xbc\x05\x13\xbe\x9f\x39\x9d\x40\xd1\xf0\xba\x6c\xab\x9f\x73\x7d\x75\x8b\xf5\xb5\x80\x48\xb8\x19\x09\x93\xf3\x50\x16\x41\xf1\x9d\x61\xe0\x78\xc7\x85\x37\x2c\xc8\xf8\xc5\x62\xcb\xbf\x2e\xb8\xdc\x55\x74\xb9\x4d\x78\x71\xec\xea\x8e\x02\xcc\x6d\xcb\x84\x51\x44\x83\x18\x5f\x60\x32\xe5\xed\x0e\xff\xa6\xf0\xd5\xa1\xbb\x2b\x7c\x75\xe8\x83\x14\x1b\x9a\x46\xa0\xd7\xaa\x5a\x0d\x21\xef\x88\x2c\xaf\xcc\x24\xba\x1c\x23\x87\x2a\x8c\x29\x93\xcb\x47\xd2\x5e\x65\x3d\xdb\xbb\xcc\xf5\x55\x03\x27\xb6\x59\xcc\x9c\x5e\xd8\xd0\x56\xb3\x41\x83\x6e\xeb\x37\xad\x3f\x21\xee\x5e\x96\x69\x88\xb9\x94\xcc\xaa\x4b\x08\xad\x38\xd3\x45\x75\xe5\x41\xa0\x61\x48\x6e\x4b\x14\x52\x4b\x6d\xaa\xb4\x33\x99\xe5\x4d\x9b\x94\xa9\xa7\xf2\xc4\x94\x98\xcc\x2f\xb4\x85\x53\x5b\xd4\xb3\x45\xf0\x4d\x61\x97\xc9\x2a\xb0\xca\x94\x94\x58\x07\x97\x54\xf7\x08\x0a\x53\xf9\xbe\x6a\xbc\xf8\x19\xac\x80\xe4\x76\xfd\xa7\x63\x40\xeb\x0c\xca\xb9\xd0\x58\xdd\x52\x14\x10\xcb\x90\x06\x44\x79\xea\x31\xf5\xec\xea\x1d\x1c\x82\x1e\xf3\x68\xa1\x76\x76\x13\xb4\x27\x5a\xb4\x93\xec\xdf\x51\x9d\xbd\xac\x8b\xca\x0f\x68\x96\x10\x6f\xdd\xf0\xc1\x47\xaa\x50\x8f\xe9\xf7\xc7\xea\x91\x2a\x9c\x6d\x1e\xa0\xc8\xff\x98\x97\x3a\xe8\x4c\x31\x56\x03\x0c\x3b\x3e\x18\x79\xe8\x56\x6f\xaa\x5a\xab\xa2\xba\xd2\xf5\x5e\xa1\x2f\x75\xc1\x67\x04\xaf\xc7\x18\xd5\x9c\x80\x1a\x5f\xa2\x8d\x3f\xda\x6d\x32\x0d\x41\xac\xce\xb2\x6a\x99\xe1\x54\xa5\x6e\x46\x51\xf1\xfe\xf6\xfb\x98\xef\x8a\xea\x4e\x40\x5f\xa1\xb3\xa3\xe4\x6b\xd7\x36\xa5\x8e\x6d\x71\x74\x4b\x93\x56\x57\x13\x80\xa2\x3d\xf6\xb4\xf7\x68\xf9\xe2\x6d\x94\xc8\x85\x7a\x4f\x1d\xde\x2d\x76\x8e\x44\xb4\x12\xf2\x6c\x98\x8f\x9e\x10\x84\xe2\x3a\xb8\xb8\xec\xef\xab\xe7\x45\xbe\x92\x71\x88\xe8\x0c\x00\xb5\x3d\x78\x9e\x20\x46\x67\x5f\x0b\x91\x61\x22\xfe\x69\x3e\x0f\xf0\xcb\x83\x41\x4a\xc2\xee\x8c\x2f\x32\x5d\xf0\x6b\xe4\xab\xaf\xe8\x10\x8c\x04\x3c\x31\x47\xa1\x40\xe9\x73\x48\x75\x50\xcd\xd8\xc3\xfa\xef\x98\x95\xa2\x0e\xe6\x34\x84\xfe\x3f\xeb\xd3\xbf\xd0\x0a\x08\x14\x39\x7f\xd6\xe3\x04\xf2\x44\x11\x8e\x4b\x74\x4c\x9d\x83\x1d\x62\x18\x25\x66\x7c\xde\xdb\x0c\xd4\xe1\x3d\xcb\xf4\x8c\xc6\x57\xd2\x6c\x1f\xcb\x8e\x95\xe8\x50\x87\x46\x6e\xa9\x77\x01\x31\xb4\x56\x6f\x16\x69\x07\x8d\xfd\xee\xae\xd5\xb1\xd4\xec\x44\xa0\xc8\xb6\x7c\x5d\xbe\x04\x10\x5a\xbb\x75\xed\x06\xe5\x6d\x69\x6f\x20\x3d\x21\x13\x44\xc6\x2d\x36\x92\xbc\xd9\xa3\xcf\x3d\x28\x5b\x23\xec\x65\xd9\xea\x3a\x41\xbe\x25\x23\xab\x79\xfa\x6f\xe7\x8d\x8c\x08\xba\xd6\x35\xbf\x0d\x91\x70\x57\x10\x57\x68\xbe\x9d\x19\xda\x39\x88\x8c\xdf\xd9\xe2\xa6\x36\xd4\xc8\x98\x03\x39\x53\x0a\x1f\x11\xb7\xc7\x23\xd8\xb1\xba\x2c\x5a\xbf\x37\xc9\xa7\x1f\x59\x34\xc7\x47\x26\x95\x2e\x74\x7a\xf1\x4b\x9e\xb5\x0b\x08\x85\x6d\x3e\xd8\x70\x00\xb7\xc2\xec\xd2\x1e\x08\x6b\x30\xb9\xde\x56\xc3\xcb\xbc\x59\x27\x05\x10\x7d\x4f\xc8\x03\x81\x09\x0e\x48\x10\x41\x55\x36\xf2\x01\x3e\x37\xc6\x81\x1e\x9c\xad\x11\x18\xa5\x91\x97\xc9\x12\xb1\x7f\x7d\xa9\x34\x32\x0b\xf6\xf9\x58\xdc\x52\x44\xda\x8d\x10\x1c\xa5\x6d\xa5\x91\x0f\x38\x38\x6b\xaf\xb2\x14\xfc\x15\xd9\x70\x36\x66\x3e\x89\x36\xa1\x3b\x6a\x2b\xad\x87\xa0\xf2\xa6\x94\xdb\xaf\xb7\xac\x4d\xff\xcc\x6e\x0f\xd6\xd7\x3f\xd9\xc0\x2e\x75\x49\xab\x8c\xf3\x38\x74\xdc\x9f\x56\x43\x97\xe6\x10\xf3\xd7\xe2\x47\xef\xfd\x59\x89\xb8\xe5\x94\x81\xea\xec\xfb\x6c\xd7\xac\xd0\x65\x5f\x9e\x88\xe1\x6a\xef\xd2\x63\xe8\xdd\xce\x3a\x33\x62\x78\x58\x02\x2c\x9b\x7c\x23\xda\x37\xb6\xdf\x36\xe0\x35\x2c\x67\xad\x21\xbc\x0e\x07\x0d\x0a\xa9\x3e\x12\x35\xe8\x2f\x07\x07\xee\x4e\xaf\x4b\xb6\x10\x8a\x1d\xc3\xc3\x48\xe0\x0e\x88\xca\x87\x82\xc1\x07\xbd\xd4\xe0\xdf\xc5\x5a\xc3\x06\xe3\x58\x30\x1e\x61\x36\x46\xf4\x06\x33\x00\x76\x20\xa5\x49\x8c\x84\xf7\xb0\x92\x97\x1f\xa8\x48\xe0\x71\x38\x3a\x9a\xba\x98\x22\xfe\xeb\x42\xf8\xf0\x70\xaf\x1b\xc4\x83\x39\x9d\x77\x5f\x0b\x45\xdb\x74\x29\x66\x71\xac\x06\xa6\xee\x41\x24\xb4\xdc\x79\x3c\xbf\xc7\x4b\x68\x92\x85\x89\x3a\xdd\xfe\x48\xf1\xe2\xab\x6c\x40\x03\x43\x19\x06\x23\xee\xe6\x6d\x59\x07\xbe\x08\xc1\xd9\xaf\xaf\x83\xb6\x3c\x0c\x06\x61\x10\xc0\xaf\xff\x4e\x9a\xe0\xb7\xfe\xde\xd7\x7e\x45\xcf\x67\xd9\x51\x20\x0a\xf0\xe7\xa8\xf8\x20\xd4\x7f\x9d\xee\xba\xf7\x6b\x34\xec\x96\xe3\x1b\x2b\xcf\xef\x45\x96\x16\x63\x73\x31\xaf\xe8\x86\xfd\x6e\xf6\x1b\x18\x39\x45\xd3\xa7\xea\xf4\x6c\x34\x42\x95\x80\xad\x99\xf1\xe4\xd9\x85\x50\x17\xaf\xaa\xfa\x79\x55\x9a\x81\xbf\xd1\xe5\x9a\x95\xb9\x7e\xd0\x31\x70\x7c\xf9\x20\x24\x95\x2a\x13\xb0\x45\xbe\x41\x02\x46\xf0\x06\xfb\x02\x0c\xdb\x6c\x0e\x57\x19\x7b\xd3\x14\xf0\x62\x74\x82\x06\xaa\x31\x53\xf3\x08\xc6\x3e\xc4\x1f\x66\x00\x9c\xf7\xcc\x1e\xd2\xf8\x0d\x22\x52\x40\xf5\xf4\xfb\xf0\x6c\x4c\x7f\x3a\xf9\xa9\xdd\xac\x34\xc0\xa3\x64\xf8\x54\xd0\xb4\x75\x5e\x9e\x0f\xd0\xb0\xd2\xa2\xd6\xc3\xeb\xa3\xd9\x1b\xcd\xd0\xa4\x62\xf1\xf0\x21\xfd\x73\x84\x7e\x98\x72\x60\x2e\xac\x3d\x00\xbd\x48\xda\x97\x9d\x59\x62\x2e\x7d\xfb\x10\xb8\x0d\xd8\x04\x03\x44\xb4\x95\xca\x74\x52\xa0\x48\xa4\x3f\xb5\xba\x06\x4f\xf0\x3d\x54\xab\x65\x4c\xd9\xde\x3a\xb0\x32\xe8\x44\x17\x28\x04\x61\xb0\x49\xb7\x10\xb8\x13\x79\x19\xda\x8a\xcc\x6e\xe5\xc1\xe3\x0c\x8f\xa6\x90\x3d\x08\x53\xe3\x6c\x75\xa3\x85\x70\x3d\x6d\x5a\xca\xaa\x49\xbe\x13\x7f\xac\x73\xdd\x60\xb0\x58\xd3\x59\xcf\xa5\x96\x47\x4e\xb0\xce\x68\x13\x18\x80\x0d\x03\xca\x06\xab\x58\xd4\xeb\xb9\x7f\x33\x5b\xa7\x0c\x0a\x08\xf1\x65\x91\x1b\x27\x98\x42\x1a\x7c\xaa\x83\x7e\x41\x18\xb7\x4b\x5d\x6f\x10\x3b\xff\xc1\x4c\x2f\xf2\x32\x7b\xa0\xf2\x76\x6c\xa4\x4c\x72\x8e\xd6\x59\xd8\x54\x0e\xc6\x18\x04\x48\xea\xd7\x8e\x7f\x3e\x68\x9c\x97\x3d\xe0\xe0\xe1\x39\x96\x4d\xd4\x4f\x8d\xe9\x93\x29\x9e\x56\xab\xcd\x5e\x55\xee\x5d\xd5\x79\xab\x55\x93\x2e\xf4\x12\xe1\x62\x65\x44\xe2\x06\xe8\x38\x01\xa3\xdc\x45\x82\xc1\x36\x2b\xc4\xf7\x49\x8a\xa2\x4a\x13\x8c\x60\xbc\x04\xd3\x0f\x7c\x6e\xaa\x37\x34\xbb\x63\x35\x5b\xb7\x2a\x29\x1a\xae\x60\x55\x57\xb3\x42\x2f\xd1\x65\x19\xfc\x2b\x31\x0c\x87\x0b\xd0\x4b\x21\x98\x66\xda\x34\xb4\x2e\x9b\x64\xae\x8b\x8d\xed\x7c\x8c\xd6\x10\xad\x04\x16\x31\x4e\x69\x31\x43\x74\x09\x32\xde\xb5\x3e\x5f\xcf\xcc\xc6\x35\x59\xc0\xe6\xbc\xba\x90\x52\x06\x58\x20\xac\x67\x9d\x97\x21\xbc\x54\xad\x67\x93\xb4\x5a\xe5\x68\xc8\xe3\x57\xa4\xa6\x26\xc1\x02\x92\x0c\x47\x8f\x94\xcb\x2e\x25\x0b\xd5\x83\x14\xe2\x5a\xb5\x3d\xff\xcd\x3d\xd6\x29\x4f\x1d\xeb\x76\xa0\x2b\x75\xfa\xdb\x99\x75\xb1\x08\x26\xea\x0b\x6a\x40\x9f\x8a\x78\x79\xee\x7d\x04\x50\xc5\x0d\x08\xf4\xb0\x66\x48\x5f\x1d\xd2\xa0\x22\x10\x28\x5f\x1d\x06\x20\x28\x88\x4c\xe4\x32\x9f\xfe\xf6\xd5\xa1\x0c\xfc\x02\xbc\x84\x83\x93\x4f\x8a\xe0\x46\xc0\x1f\x28\xfa\xaa\x97\x0f\x54\x85\xf3\xb9\x8b\x93\x4e\x4a\x42\x57\x12\x18\x39\x97\x73\xc2\x85\x2b\x85\x6a\x0a\x9e\x84\x90\x5b\x4d\x95\x28\x27\x7b\x05\x84\x25\x85\x53\x85\xaf\x71\xbe\xa8\xea\x1e\x1e\xaa\x0b\x57\x1a\x29\x98\x82\xa4\x1f\x8c\x55\xce\x71\x05\x20\xb7\x7d\x90\xb9\xe9\x18\x93\x08\x95\x3d\x02\x5d\x77\x40\xcb\x3a\xb7\x4d\x2b\x56\xa9\x30\xe2\xb3\xb5\xda\xef\x13\x60\x49\x76\x65\xb1\x35\xdc\xb6\xf6\x1d\x3c\x46\x51\xd1\xcc\xfc\xce\x1e\x66\x27\xfb\xce\x36\x2f\xf2\x76\x83\x81\x8e\x56\xab\x62\x83\x58\x48\xf2\xae\x0f\x8b\x37\xdb\x90\x89\xa7\xaa\x6a\x52\xbd\x8f\x91\xa9\x99\x7b\x21\x4b\xcb\x84\x9f\x10\x40\xa1\xd4\x84\x43\xcf\xb9\xa0\x42\xc4\x8f\x25\xc1\xbb\x13\x7a\xdd\xdd\x88\xb1\x55\x9e\xf4\x8f\x60\x04\x51\xad\xdc\xe4\x97\x15\x08\x99\x98\x89\x4e\x34\xfc\xe9\x0b\x0d\xd4\x7b\x23\x36\x60\x2f\x07\x1c\xfe\x34\xf4\xd5\x49\x8b\x7c\x15\xb6\x3f\xf2\xf4\x2f\xd0\x26\xdd\xe4\xe9\xbb\x95\x51\xca\x4a\x82\x68\x84\x96\x89\x88\xae\x49\x01\x21\xcb\x6a\xe4\x3f\x8c\xc5\xd5\xd5\x65\x25\x47\xef\x41\xcf\xc1\x9d\xd0\x01\xef\x48\x7d\x4b\xad\xd1\x22\xad\xd5\x99\x39\x50\x13\xf5\xec\x63\xad\x35\x07\xc3\xa5\xc0\xa7\x85\x4e\x2e\x75\x33\xb6\xa7\x4b\xba\x58\x97\x17\x1c\xcc\xb4\xa1\x13\x7c\x89\xa7\xee\xac\x36\xac\x90\x73\xab\xf5\x0a\x14\xab\xba\xa4\x4a\x14\x2a\x7f\x10\xe0\x04\xf3\xaa\xb2\xca\x74\x23\x5e\x5e\x26\xd0\xcb\xb6\x5a\xc1\x17\x8c\x8f\x04\x60\xb3\x09\x95\x30\x35\x94\x20\x7e\x99\x16\xf3\xc6\x0f\x21\xca\x80\x5e\x6d\xa3\x8b\xb9\x1a\x2e\x75\x52\x92\x21\xe5\x02\xa9\x29\xc9\xb2\x1c\xa9\x8e\x42\xb5\x34\xd6\xea\x52\xd7\x6d\x0e\xba\xf8\xfd\x7d\xb2\x64\xa6\xde\x01\x86\x24\x3d\x05\x15\x79\x79\xd1\x50\x27\xcd\x64\xe5\x8d\x5a\x4b\x94\xb1\xf3\x0a\x85\xa5\xfd\x7d\xff\x09\xaa\xad\xbc\x78\x88\xd8\x7b\x97\xdf\x1e\xd2\x6d\xc5\x45\x00\xc7\xe7\x35\x1d\xf5\xf0\x84\x68\x26\x6a\xa3\x16\xa0\xc7\xb0\xc3\x5f\x13\x48\x69\x5a\x95\x60\x50\xc4\xc8\x40\x98\x0d\x86\x5c\x66\xb2\x6d\xdb\xf4\xdc\x05\xea\x68\x93\x82\x0a\x70\xb8\x7e\xf7\xe4\x85\xb3\x71\xa2\x35\xf6\x64\xd1\xb6\xab\xa3\xfd\xfd\x65\x52\xe7\xbf\x95\x66\x66\xea\x99\xbe\xd0\x93\xb2\xd8\x9f\x15\xd5\xf9\xbe\x91\x8c\x97\x18\x87\xc9\xb4\xb9\x67\x26\x69\xb2\x68\x97\x85\xe0\x96\x3f\xea\x64\xfe\xdc\x90\xd1\x90\xa3\x31\xee\xf4\x81\x30\x60\x0c\x1e\x8a\xb9\x09\xff\x72\x22\xad\x87\x8d\xc8\x03\xe6\x48\x38\x04\x61\x8d\x13\xf1\x95\x8b\x3a\xc8\xc1\x87\xd3\xfc\xcc\x55\x8b\x7d\x81\x8f\x54\xed\xee\xd4\x65\xa3\xd9\xc5\xb3\x00\xfa\x63\xdb\xa6\x4f\x37\x3b\x3b\x76\x9c\x0e\x3a\x8d\x6e\xa7\xb0\x89\x4e\xf2\xdf\x05\x2a\x85\x4b\x93\x76\xe4\x6e\xfc\x7c\x02\xdc\x8c\x77\xac\xaa\x82\x63\x6a\x96\x2c\x15\xb7\x14\x54\x5c\x3d\x48\xda\x07\x93\x1d\xbe\xcf\x82\x85\xa3\x68\x4a\xa4\x0e\x93\x76\xac\x4a\x29\xa9\xc5\x90\x30\xbc\xb9\x34\x25\x34\xfc\xab\x76\x55\x49\x70\x74\x91\xa0\x72\xc4\x38\x09\xfa\x82\xa7\x8e\x6f\xe0\x98\x4a\xb3\xb6\x47\x9e\x89\x76\x5a\x15\x85\x6c\x29\x7f\x5a\xd9\x88\xba\x7c\x10\x47\xc2\xe6\x22\x34\xd9\x40\x9a\xed\x89\x99\xa3\x03\x1d\x47\xba\xa3\xdc\x14\x7e\xaf\x8b\x95\xae\xc5\x16\x2a\x8a\x64\x65\x2e\x30\xaa\x59\x1a\xd1\x9b\x78\x94\x1f\x7c\xa4\xd0\xc9\xdc\x4c\x2d\xe7\x96\x4b\x48\x49\x92\xae\x89\xb6\xe0\x4a\x3e\x81\xe3\x13\xbf\x8e\x45\x0f\xbd\x4e\xbd\x86\x80\x12\x02\xd9\xcb\xde\xa5\x62\x8b\x6c\xee\xe5\xeb\xb2\xa5\xeb\x02\x61\x76\xf3\x9d\xc2\x56\x81\xf3\x0a\xd0\xda\x50\x7b\x48\x10\x22\x15\xa6\x89\x7a\xb8\x10\xb1\x94\xfb\x89\x43\x92\xff\xae\xa5\x7f\x7f\x0d\x6c\x38\x2d\x5c\x10\x16\xb0\x92\x76\x34\x49\xab\x32\x4d\x5a\x9a\x32\xfe\xd5\xc9\x9c\x70\x38\xd0\xbb\x6e\xeb\xde\x2d\x8d\xe2\x1b\xcf\x36\x63\x3c\xe7\xad\xae\xcd\xb5\xab\xba\x84\x60\x38\xf4\x14\x81\xec\xd1\xb0\x30\x33\x75\xad\xae\xdf\xca\x49\x33\xbf\x91\xaa\x9c\xbc\x71\x87\x3d\x24\xf7\x4e\xd2\xf2\xe6\x49\x5a\xf7\x26\x4d\x22\x80\xb7\x73\x92\xf6\x4c\xbe\x64\xe2\xc5\x26\x22\x8a\x3e\x03\x9a\x45\xf6\x9a\x2e\xf2\x22\xab\x39\xfe\xdc\x16\x0e\xcb\x19\x41\xe8\xc4\x3f\xd9\x5a\x33\xff\x1d\xe2\xa8\x8d\x6f\x67\xae\x5c\xb2\xef\x0a\x08\x7a\x03\xce\xc4\x9c\x00\xea\xdf\x35\xe9\x13\xc1\x00\x1f\x09\x9e\x9b\x2e\x24\x5b\x48\x17\x11\x16\x6d\x99\x30\xf5\xd6\xfc\xd3\xc7\x97\xa3\xc7\xc7\xcd\xce\x8e\x98\xb7\x7f\x91\x5d\x43\x27\x90\xc0\xfe\x24\xf6\xeb\xaa\xdd\x9b\xaa\xb2\x77\x1b\x78\x4b\xd9\x1f\xec\x13\x72\x38\xc6\x2c\x56\x64\xac\x9a\xdf\x79\x8d\xe4\x72\x48\xeb\x4b\x43\xb0\xcd\xef\xa1\x23\x72\x6d\x6e\x37\x16\x6e\xbc\x84\x8a\xf6\xcc\xf6\x06\xd7\xc4\xef\x79\x0d\xb0\x66\x8f\xcb\x2b\x4a\x0c\x27\xa5\x5e\xba\xfb\x62\xe7\xb0\x70\x75\xee\xc5\xeb\x04\x85\xc2\xef\x46\xcc\xae\x29\x0c\xa7\x37\x56\x3e\x12\xf2\xbd\xbd\x31\xc4\x71\xc3\x4a\x3c\xa2\x08\x1c\x93\x87\xa5\x69\xd8\xd4\xc6\x16\x3d\xa1\xe3\x77\xd2\x0a\x93\x3d\x76\x4c\x30\xa9\x7b\x53\x33\x1d\xf2\xe6\x89\x38\x93\x04\xcf\xb7\x2e\x30\xb8\x83\x39\x72\xf0\xe5\xa1\x54\x0f\xbf\x61\x1e\x8c\x88\x28\xf8\x1e\x91\xa3\xe1\x12\x57\x21\x0e\x24\x90\x54\x27\xf6\x56\x2b\x08\x46\x95\xea\xb1\xa9\x4e\x3a\xe0\xc7\x08\x05\x82\x8e\x5d\x5f\xab\x7b\xfe\xd7\xd3\x83\x33\xc2\xa8\x4d\xcd\x15\xc9\x8a\x34\xd2\xfd\x9e\x0f\x7b\x0f\x23\x0b\x6b\xf1\x0f\x44\xef\x93\x63\x39\xa7\x10\x33\x3a\x10\x0a\xcf\x62\x99\x4f\x0f\x02\x76\xee\xee\xe3\xb0\xdf\xee\x7c\x26\xdf\x49\xd0\xb9\xc3\xb6\x8a\x6c\xa2\x70\xd0\xa2\x7b\xff\xa7\x0e\x5f\x66\xa2\xf2\x1c\xbc\xe5\x68\xfe\xaf\xe4\x1f\xd3\x80\x81\x60\xfe\xed\xd3\xe0\xed\x45\x2c\x80\x24\x07\x8f\x65\xf6\xa7\x23\xe6\x6f\x0e\x7c\xfc\x06\x73\xff\x65\x95\xe9\x52\x2f\x41\x1b\xbf\xa8\x93\x06\x74\xc4\x14\x87\xd4\xd5\x9a\x37\x6a\xb1\x3e\xd7\x6a\xa8\x27\xe7\x13\x0c\x99\x8d\x20\xb2\x60\xe6\x50\x24\xf5\xb9\x56\xf3\xbc\xd0\xa3\xb1\xca\xdb\x07\x8d\xc2\xf0\x38\xc8\x55\xb2\x89\xdf\xec\xeb\xb2\x69\x41\xbf\x87\x42\x25\xc8\x33\xa8\x3f\x6e\x93\x0b\x5d\xc2\x65\x72\xf3\x80\x7f\x9a\x1b\x75\x55\x67\xe6\x86\xac\xd3\x64\xdd\x68\xd5\xe8\x7f\xae\x75\xd9\xe6\x70\x65\x85\x8e\x27\x69\xaa\x9b\x86\x2a\x99\x27\x4d\x0b\x18\x9f\xae\x51\xb4\x5a\x58\x52\x78\x84\x69\x6c\x82\xfe\x87\xe1\x09\xbb\xea\xe1\x37\xa2\x98\xc3\x23\xae\xcc\x56\xb6\x35\x3c\x82\x84\xc7\x91\x6a\x1e\xf9\x73\xcc\x2f\xb0\xc9\x9c\x6c\x18\xdd\xa6\x96\x65\x51\xa2\x83\x57\x0c\x53\xf1\xee\x54\x3d\xfc\xc6\x83\x66\x50\x1e\x53\x87\xdb\x81\x11\xba\x03\x1e\x2f\x4e\x86\x90\xaf\xef\xee\xe6\x63\x23\xb3\x98\x62\x7e\xc5\x50\x51\xec\x92\x47\x6c\x7b\x27\xec\x03\x33\xb6\xee\x00\x0e\xc6\x6e\x8a\x64\x23\xd4\xa7\x65\xb2\x99\xe9\x93\x55\x5e\x14\x43\xf7\xf5\x66\x8b\x52\x52\xd9\xb3\x22\xe0\x6a\x1c\x0c\x23\x41\x9d\xc8\x22\x69\xd4\x79\x5d\x5d\x95\x64\x7e\xc2\xc0\xc8\xe6\x78\x10\x00\xc8\xe0\xb6\x07\xcf\x5a\xdc\x0f\xc1\x73\x64\xe7\x84\xc7\x55\xf4\x60\x78\x3c\x55\x87\xa1\x09\x2b\xae\xb4\x8d\xba\x4b\xd6\x12\x1e\x9b\x68\x4c\xed\xa0\x84\x5f\xea\xce\x02\xc9\x24\xab\xda\xfc\x66\xac\xbe\x19\xc9\x1a\xf2\x59\x81\x04\x6c\x68\x49\x0a\xb6\x54\xb7\x17\x2b\x6d\xa9\x69\x5d\x4d\x57\xf7\xf7\xd5\x33\x9d\x56\x4b\x2d\xcd\x78\xcd\xec\x79\x52\x0b\x81\xac\x87\xb5\x8b\xce\x09\x9d\x35\x60\x91\x33\xe1\x2c\x5d\x45\x22\xb7\x39\xcb\x4c\xbe\x31\x77\xfd\x4c\xe4\x02\x3b\xb0\xd5\x06\x53\x82\xf0\x7d\x50\x0b\x0b\x78\x54\x76\x42\x52\xac\xfd\xee\x76\x03\xe7\x08\x36\x04\x2c\xc9\x06\x8c\x6e\xd5\xd4\x5a\x9d\xdb\x79\xb1\xdd\x1c\xab\xa5\x30\x23\xef\x7e\xb7\x8b\x44\x75\x21\x5a\x81\x1d\x54\xf8\x30\xc1\xbd\x11\x93\x43\x7f\x23\x1d\x73\x50\xbc\xc8\x9a\x3f\x31\x94\xb5\xe3\xf7\x22\xd8\x37\x74\x72\xfe\x49\x77\xaf\xff\x1e\xd2\xf2\x1a\xdd\x11\x62\xf2\x72\xe4\x9c\x73\x63\x5d\x83\xf7\x40\xb5\xea\x5e\x04\x23\xa2\xaa\xc9\xfc\x27\x08\xab\xfc\xc8\x0b\xa6\x3a\x57\x79\x76\xae\x5b\x3c\x77\x66\x45\x95\x5e\x28\x5d\x68\x70\x97\x60\x2b\x18\x9d\x85\xf6\xf4\xf8\x3a\x30\xd9\xd9\x31\x23\x37\xb5\xfc\x02\x95\x08\xbf\x1b\x86\xcd\xcd\x62\xb0\xbc\xdd\xe5\x14\xe1\xa7\x3c\x4c\xac\x6a\x05\x91\x1c\xc4\x27\x91\x73\xb2\x48\x9a\x77\x57\xe5\x7b\xd4\xf3\x6e\x4c\xb2\xb5\x93\xc1\x26\x4e\xab\x55\x7b\xe6\x50\x16\xf1\x27\xe3\xd9\x53\xe0\x73\x17\x90\x1f\x12\x4a\xb4\x28\x00\xbe\x72\xf3\x68\x67\xc7\x8d\x4e\x04\x4b\x40\xdf\xc1\x69\x24\xbe\x7c\x7c\x78\x40\x74\x4b\x56\x98\xb0\x86\xff\xca\x53\xa1\x4c\x68\x21\xc6\x52\xc9\x36\xe1\x27\x03\xf7\xf2\x20\xf1\xc4\x4a\x0f\x72\xeb\xde\x55\xe8\x7f\x1f\xdb\x23\x57\x1d\xad\x8a\xa9\xe9\x0a\x11\x6c\x79\x4f\x98\xe4\xab\x26\xb8\x52\xd1\xbc\x01\x67\xb6\xb5\xb0\x5a\x86\xbb\x2f\x6f\x5a\x9e\xfe\x16\xbf\x93\xc5\x9e\x69\x65\x64\xcd\xfc\xcc\x1c\xd3\x07\x1c\xaf\x8d\x7f\x75\x30\x96\x4a\x44\xb5\xc7\xa2\xa3\xb5\x23\x72\xce\x07\x5b\xc3\xfe\x2b\x95\x64\xbf\xad\x1b\x32\x7b\x35\x27\xef\xb1\xa1\x68\x86\xa3\x04\xf7\x00\x68\x79\xcf\x97\x4d\xbb\xe6\x56\x65\x35\x56\x03\x1c\xcb\x40\x38\xd1\xa8\xae\x49\x50\x61\x29\x87\xc0\xc7\xc8\x3a\xc8\x8c\x1d\x5e\x81\x70\x27\xf6\xd2\x98\x35\xdc\xfb\x12\x2a\x33\xb7\x68\xa6\x1d\x7e\x55\xe8\x52\x5e\x48\x61\x1d\xc5\x8a\x50\xc0\xd3\xc3\x65\x77\xf9\xd4\x1e\xb4\xc6\x14\x41\x86\x04\x92\xfc\x7a\x56\x57\xae\xe8\xae\x7d\xc5\xfc\xb2\xe5\xb4\x86\x52\x10\x11\xfc\x27\xc6\x5a\x11\x36\x8e\x77\x5c\x70\xf9\x2c\xbf\x6d\x09\x71\x35\xc4\x12\x7e\x75\x38\xf6\xb6\xa4\xf4\xa8\x32\xab\x0a\xe6\x25\x6f\xf2\x4f\x79\x39\x74\xeb\x3b\xda\x91\xc1\x27\xef\xde\x41\x87\x6b\x0b\xd3\x76\xdc\x3a\x0d\xba\x7a\xac\x86\xd6\x6e\x0c\xd1\x0a\x18\xbc\x14\xaa\xfe\x68\x8e\xd2\xeb\x6b\x32\x9d\x16\x89\xcc\x2a\x93\x2c\xfb\x58\x9d\x70\x32\xb4\xcc\x86\x80\x37\x5e\x77\x33\x37\x0e\xff\x91\xb6\x87\xcd\x5f\xf1\xa1\x00\xd7\x86\xa0\xac\x5f\x46\xf2\x48\x24\x52\x4b\x11\x66\x48\x58\xd3\xa4\xac\xbe\x27\xbb\x75\xb4\x3c\x65\xeb\xb7\xa4\xc8\xcf\xcb\x5f\x2c\xff\xb1\xc7\x67\xdf\xa3\x32\xef\xdf\x3e\x9b\x5e\xd7\x79\x7e\xa2\xb2\xdc\xed\xfa\x9a\x50\x1c\xdd\xf7\xd3\x33\x67\x24\x4b\x1d\xc5\x7b\xef\x71\x2b\xdf\x84\xa9\x00\xda\xf1\xe1\x8f\x00\x2c\x8a\x73\x10\xd7\xb5\xa2\x04\xa7\x3b\xbf\x13\x9f\x43\x06\x8d\x8e\x46\x20\xd9\xf9\x4d\x50\x9e\x22\x30\x2a\x76\x53\x0c\x38\x88\xaf\x9b\xef\xf3\x2c\x63\xcf\x08\x24\x6b\x4f\x72\x4a\x04\x8d\x5a\xfd\x6b\x40\x8d\x1e\x95\x51\xd9\x3b\x71\x02\x8f\xc5\x50\xf7\x3d\xc9\x4b\x34\x3e\x8a\x13\x2e\x0d\x93\xf5\x2c\x37\x77\xe4\x16\x5e\x90\x0f\x4a\x85\x9d\xbc\x85\x23\x60\x80\x62\xe4\x07\xd8\x2c\x82\x35\x44\x8d\x0e\xd4\x53\x4e\x3c\x0a\x2c\x08\x46\xee\x59\x1f\x6b\xe1\x87\xfd\x97\xff\xeb\xe3\x9b\xe3\x0f\x3f\xbc\xfc\x70\x82\x61\x7b\x6b\x8d\x11\x73\xf2\x76\x01\x38\xbf\x1f\xf5\xa7\x16\x83\xbf\xe8\xf6\x59\x55\x5d\x98\x34\x7e\xff\x9e\xa8\x63\x65\xbe\xbf\xc1\x70\x5e\x39\x19\xb2\x2d\xd8\xcd\x23\x69\x55\x9a\x94\xe6\x4a\x69\xdf\xc9\x40\xa2\xa9\x6a\x7c\x41\x4e\x18\x49\xd8\x21\xfd\x45\xac\xfa\x7e\x14\x8f\xdf\x6a\x51\x15\x19\x3e\x6b\x35\x6a\xe8\xc1\x69\xba\xa8\x8e\xa6\xf8\x67\x67\x90\x82\xe0\xa4\x37\xfc\xc0\xbf\xaa\xf2\x12\x0d\xb0\x2b\x08\x68\x43\xdf\xbd\xe7\x75\x8c\xc5\x03\xd1\x83\xf0\x35\x2c\x69\x31\x6f\xc2\xb9\xf3\x86\x30\x79\x5a\xc5\xe0\xc3\x40\x65\xea\xcd\xba\x68\xf3\x55\xa1\xf9\x19\xbf\x31\x17\x66\x6c\xd4\xfa\x8a\x25\x4b\xcd\xf5\x70\xf8\x61\x44\xf1\x49\xd2\xba\x6a\x1a\x52\xc6\xb1\xdd\x05\x07\xe6\x2b\x0a\x34\x27\x00\xb9\x87\xec\x02\x73\xb4\x0f\xda\xc7\x20\x65\x64\x87\x60\x83\xfc\x5a\xac\xe6\xda\x9a\x80\x35\x6a\xa6\x37\x15\xbd\xde\x83\x31\xfc\xbe\x2e\x33\x7e\xaf\xa2\x21\x40\x11\x34\x5e\xa0\x61\x5c\x70\xa4\x3e\xeb\xf1\x8c\x86\x95\x1b\x8e\x0f\x5c\x6c\xd0\xde\x12\x23\x21\x3d\x27\x3d\x26\xc5\x70\xa4\xba\xd4\xba\xcc\xff\xb9\xd6\x2a\xcf\x9a\xb1\xd3\x55\xb5\x95\x21\x10\xc0\xd5\x68\x2b\x4c\xa3\x38\x4d\x86\xe2\x17\x79\xba\x00\xfc\x47\xad\x33\x1b\xff\xd0\xd4\x52\x6c\x54\xa6\x5b\x5d\x2f\x51\x53\x95\x00\x22\xaf\xae\xa9\x41\x53\x03\xcf\xc2\x06\x5e\xe6\x8a\x64\xa5\x86\xf0\xcb\xac\x47\xa9\x9b\x16\xcd\x21\x7d\xb4\x68\xca\x39\x9a\xec\x20\x46\x2a\xd3\xf6\xeb\x0c\xee\x3c\x90\x2a\x28\x3e\xbc\x88\xb4\x60\x42\xf3\x39\xb4\x3e\x00\xcd\x36\xa4\xd0\xcb\x10\xf9\xfb\xc7\xaf\x06\x79\x06\xa1\xd5\x65\xe3\x20\xbe\x81\xf3\xa1\x4e\xd0\x1e\x94\xc2\x7b\xee\xb8\xce\xfc\x0b\xf7\x06\xab\xbf\x89\x46\x0b\x0d\x20\x87\x22\x17\x8c\xbc\x5d\x40\x90\x5f\x62\xf1\xcc\x06\x77\xf8\xb0\x32\x9f\xc1\x00\xd3\xd0\xdb\x3b\xeb\x45\xca\x2e\x0d\x01\x72\x17\x0a\xae\x03\x18\x84\xc3\xe0\x92\xa0\x9c\xd0\x3a\xe0\xa5\xba\x23\xd1\x86\xec\x94\xbc\xd4\xab\x6a\x8c\xe5\xc9\x5d\x08\xff\x66\xf0\x3a\x1e\xdc\xd2\xe2\x93\x18\xbe\xf1\xc9\x89\xa8\xbd\x6a\x80\x5e\xbb\x90\x5b\xec\x18\x44\x94\xc5\x73\x8d\x4b\x08\x9c\xec\x55\x55\x77\xf0\x9b\x59\x12\x1c\x85\x87\x29\x6b\x16\x78\xbb\x75\xcd\xbc\x58\xc0\x63\xf1\xd1\xf7\xde\x10\xee\x24\x4e\x26\x76\x81\x64\x27\x6d\xa5\xee\x39\xd1\x02\x27\x44\xd6\xe6\x41\x11\x43\x09\xb0\x48\x92\x65\xf2\x32\x5e\xe6\xc6\x1a\x38\x78\xf1\x7c\xa7\xf4\xc4\xe9\x26\x24\x32\x1b\x2e\xfc\xa3\xdf\x2e\x5f\x52\xef\xdf\x57\xe1\xcc\x74\x65\x0f\xca\xe1\x44\x10\x14\x6a\xdd\x53\x7a\x8f\x30\x61\xa6\xcf\x3a\x84\xb1\x6c\x38\x1a\x79\x40\x39\xb8\x3c\xde\x3b\x56\xc6\x5b\xa3\xc7\x6b\x2c\x44\x46\x38\x40\x08\x84\x3e\x2a\xf3\x11\x11\xd0\xe1\x4f\x4d\x95\xf0\xfc\xf3\x89\xee\xab\xc3\xb3\xd1\xb8\xeb\x3f\x86\xf9\xdd\x5c\xa2\xff\x98\x90\x79\x7b\x5c\xc8\xba\x39\x6c\xe3\xbd\x39\x22\x6e\x64\xdd\x4c\x11\x3f\x32\x06\x81\xa4\xb9\x5d\x02\x78\xa4\x5d\xe8\xd8\x54\x8f\x3a\xde\x48\xcb\xbc\xc4\x0d\xbd\xcb\xa1\x5c\xba\xe6\x51\xa8\xd4\x8a\xf3\x41\xd7\x1f\xcb\x2b\x09\x83\x98\x1b\x97\xe8\xb8\x3c\x4f\x9d\x0f\x9e\x7d\xb1\xdd\x75\xdd\xb8\x09\x78\x89\x0a\x69\x2a\xea\x11\x84\x07\x41\xec\xea\xcf\x63\x76\x4c\xd6\x71\x62\x5d\x66\x71\x3e\x2c\x2c\x1c\xf8\x8d\xd2\xea\x78\x4d\x1b\xc3\x11\x29\x13\xf6\xf7\xd5\x2b\xb6\x02\x74\xfe\x02\x73\x71\x38\x31\x12\x86\x93\xe4\x3e\x50\x30\xc2\x84\xc4\x33\x38\xe7\x2b\x2b\x99\xcd\xcc\x91\x3e\x4f\xd6\x45\x3b\x51\x27\x79\xa6\x59\x78\x5c\x25\x0d\x89\x8f\xe7\x10\x5f\xa6\x59\xe9\x34\x9f\xe7\xa9\x6a\xf2\x0c\x04\x94\xbd\x3d\x75\xa0\x86\xb3\xaa\x5d\x8c\xc6\x6a\xef\xd0\x90\xf1\x1c\xec\x07\x6a\x75\xa8\x86\x35\x08\xe9\x13\x7c\x08\x31\x2b\xfe\x6e\xf6\x1b\x58\x7f\xd6\x6b\x6d\x1d\x40\xde\x57\x8d\x95\x31\x2d\x7a\x08\x89\x94\x6c\xa5\xcc\x46\x90\x75\x02\x6f\x26\xf0\xda\x8e\x9f\xc0\xb2\x14\xad\x93\x87\x2c\xea\xae\x6a\xc4\xb3\x2a\xaa\xea\x02\xbc\x27\x56\xbe\x27\x8a\x6a\xaf\xf2\x54\x8f\x7a\x8e\x70\x90\x8f\xe5\x09\x6e\xc6\x3a\xe6\xee\xdf\x7e\x9c\x03\x52\x76\xc0\x0f\x27\x16\x05\x6d\x46\x82\xfc\x00\x49\x0a\x54\x91\x87\xf6\x10\x64\xd1\xf9\xbf\xdf\xb1\x17\x3b\x62\x88\x95\x08\x77\x02\x5e\x63\x0b\x63\xee\x1f\x80\xb6\x12\x79\xe9\xe3\xf9\xda\x93\xc0\xcb\xd6\x17\x4d\x9a\xfd\x77\x0f\x46\x36\x37\xa8\xbe\xa0\x7d\x84\xcf\x0c\x5b\x97\x8d\xb7\x95\xa7\x4a\x57\x5e\xa7\xee\xdf\x8f\xf9\x98\xd9\x9d\x79\x02\x5c\xa2\x71\x31\x5e\x70\x47\x3e\x68\x58\x59\x62\x5d\x52\x31\xac\x67\x0d\xe1\xba\x0d\x95\x16\xc9\xa6\x5a\xb7\xe8\x0b\xc4\xef\x81\xd6\x25\x37\xeb\x93\x37\xff\x90\x0e\x11\x9f\x8a\x9d\x2c\xb7\x77\x48\x30\xaa\x63\xa7\xd2\x41\x4e\x16\x8a\x9c\xac\x0b\x34\x35\x5c\x5f\x9b\x53\x35\x90\x53\xb7\xab\xf5\x04\x89\x3a\x30\x6c\x58\x23\x27\xaa\xc8\x90\x1a\x7c\xc6\xea\x2b\x80\x80\x2d\xb3\x9f\x73\x7d\xf5\xaa\xaa\xe1\x98\xb5\x02\x96\xa3\x52\x93\x53\x1c\x95\x86\x6d\x9a\xac\x6f\x74\xd2\xac\x6b\x78\xf3\x78\x9e\xa4\x0b\x6d\x48\x1e\xb2\x86\xda\x83\x48\x34\xa0\xbb\x69\x16\xb6\x7a\x49\xdb\xee\xf9\x62\x10\xa9\x32\x7c\x31\xc8\xd3\x6f\x74\x29\x9d\x35\xc0\xbe\xce\xdd\x7f\x53\xf4\xab\x98\x3a\xfc\x7f\x52\xf7\x7e\x1f\x55\xd8\xb3\x36\x69\xcf\xd5\x2f\xb6\x09\xa5\xc8\xe0\x06\x77\xd3\xfd\x7e\xef\x29\x6a\x6e\xe2\x8a\x74\x3a\x49\x23\x1a\x58\x46\xdf\x7c\xb4\x13\xa7\xff\xa4\x6d\x93\x74\x41\x73\x1d\xd3\xf5\xa1\x93\x6b\x47\xe2\xf0\x64\x87\xa5\xe7\x8d\xbc\xf2\x29\xde\x5e\xa8\xd8\xf5\x68\x85\x8f\x9d\xb8\x88\x7c\x61\xbf\xbe\xb6\x4f\xb7\xd1\x0c\x38\x1e\xc6\x0d\xb3\x82\xae\xcd\xfc\x53\xb9\x08\xeb\xeb\xfd\x26\xdd\x85\xb1\xd6\x1b\x69\x4e\xe9\x2c\x97\xe9\x25\xa9\x77\xf2\x30\x48\xfa\x96\xc9\xeb\x9a\x63\xf3\x20\xdd\x17\xa2\xdd\x31\xfa\x5c\xfd\x99\xd3\xfd\x28\x3e\x95\xde\xdc\x7c\xbf\x7d\x66\x22\xaa\x7a\x37\x13\x23\xa1\x76\xb3\xea\x25\xc3\x01\x6b\xad\xf2\x96\x1d\x61\x16\x5a\x81\x18\xc3\xa6\x4d\x49\x99\x49\xa8\x13\x54\xd3\x39\xb8\x03\x72\xb3\xe6\x70\xbc\x4e\x2d\x61\xce\x06\xf4\xf1\x64\xc5\xcc\xd0\xe9\x9c\x3c\x10\xbb\x11\xbc\xd4\xa2\x2a\x2f\x53\x8d\x5e\x25\x75\xd2\xea\x82\xe0\x24\x87\xdc\x26\xd5\x06\xda\xa9\x14\x7c\x4e\xd7\xa4\xe7\xca\x1b\x95\x9c\x27\x46\x06\xad\xca\x54\xab\x15\xc4\x07\x12\x8a\x3d\x40\x9a\x14\xcf\xac\x5e\xb8\xb7\x45\xa0\x7c\xf0\x9b\xbb\x65\xa0\x37\xd8\x10\x45\x13\xb9\xd2\x30\x12\x23\xc6\x09\x08\xab\xc9\x2d\xc8\x57\xdb\x51\xaf\xb0\x33\xa3\x5b\xfb\xc1\x5a\x05\xd6\x16\x95\xfa\x4a\xa8\x8f\x84\xce\xc8\x39\xee\x2d\x57\x16\xbf\x7f\xd4\x7d\xb1\x4e\xab\xd5\xe6\xdd\xec\xb7\xa1\x6d\x89\xe9\x85\xa2\xe2\xd1\xd0\x5f\x54\xe5\x83\xd6\x88\xaf\xa5\x91\xab\xf5\x72\xd5\x6e\xec\x82\xaf\xcb\x42\x37\x0d\x1e\x4b\x46\x24\x7e\x09\x5f\xf3\xc6\xde\x4c\x10\x83\x0e\xc3\xde\x00\x3c\x26\xf4\x6c\x8a\xb1\x2f\x48\xef\x14\x94\xbe\x67\xe3\xf2\xd1\x63\x8f\x58\x36\x5d\xdb\xcb\x05\x15\x26\x80\x80\xec\x97\xdc\x5d\x29\x81\x30\xab\x2b\x12\x94\xc1\xa5\x8c\x84\x80\x7c\xb9\x2a\x72\xdd\x28\x77\x91\xa6\x53\x82\x81\x06\x1a\xb8\x92\x33\xb0\x24\x76\xcf\xe6\x15\x67\x1f\x7d\xc3\xc2\x6f\xf1\xfd\x5d\x17\xed\xfb\xe1\xc0\x48\x64\x83\xb1\x3a\x8d\xf4\xef\x6c\xac\x06\xcf\xab\x4c\xbf\x41\xc7\x24\xef\x45\x96\x38\x31\x1b\x09\x98\x9d\xf2\xa6\x5a\x37\xfa\x25\x42\xfc\x82\xc6\x24\x68\x72\xd2\xe8\xf6\xb8\x6d\xeb\x7c\xb6\x6e\xf5\x70\x90\x2e\xf7\x10\x87\x7d\x0f\x9d\xdc\x07\x63\x35\x30\xfd\x1d\x48\x5c\x07\x6e\x01\x1f\x5e\x20\xa4\x52\xb4\x6a\xf7\xdd\xc7\x45\xf1\xe6\x5e\xde\x91\xdd\x2d\xb4\x2a\xe7\x45\x9e\xb6\x79\x79\x6e\x35\xb7\x02\xbe\x41\xf8\x9c\x86\x5a\x75\x11\x6f\x46\x09\x64\x9b\x7b\x3e\x22\xc9\xf6\xea\xad\xef\x6a\xa7\x72\x77\x44\xb5\x8b\xba\xba\x82\xed\xf3\xd2\xac\xc3\x70\x80\xae\x2e\x86\x5c\xd2\x40\xd7\xdc\xd5\xe6\xae\x48\x41\xac\x3f\xb1\x6f\x62\xe9\x66\xb8\xd1\xda\x76\x0a\xf1\x2b\x3d\xcc\x21\x9a\x36\x78\x03\xfa\x5e\x82\x64\x7e\xee\xc5\x52\x8f\x82\x3f\x30\xe0\xc3\x80\x99\xc7\xe0\x46\xc4\x38\x7c\x9b\xbc\x95\x80\x28\xeb\xfa\x47\x07\x9e\x40\x93\x23\xde\x2c\x39\x9a\x09\xc9\x77\x3b\x12\x6d\x08\x8b\xde\x09\xbf\xc9\x29\xaa\x3a\xbb\x66\x8b\xaa\xca\x7c\x13\x5a\x26\xac\x70\x3a\x8d\xa8\x72\x42\x4d\x5a\x04\xb4\x27\x4e\x9a\x40\x33\x34\x07\xf7\xa6\x12\x6c\xa7\x57\xde\xb3\x01\x71\x92\x2c\x0b\x54\x87\x18\x1d\x5e\x24\x12\xcb\x14\x66\x97\x5b\xff\xb3\xab\x21\x7a\xa2\x9e\x2a\xf2\x4c\xa7\xc8\x56\x7f\xa4\x36\x5e\xa2\xa7\x0a\xfc\xd5\x39\xdc\x16\x4e\xdb\xee\x2e\xe5\xe4\x27\x42\x7a\x4e\x62\xb9\x5d\x65\x7a\xa5\xcb\xac\x09\x03\x44\xb0\x0a\x86\x10\xac\x9a\x0a\x5e\x4e\x20\x00\xba\x4e\xab\x32\x03\x65\x4a\x3f\x4b\x70\x94\xd4\x87\xdf\xd3\x4f\x4b\xfd\x2f\xbb\xb7\xac\xda\xcd\xa8\xb3\xdf\xe0\x7c\x79\x57\x42\xb8\x3d\x08\x0e\x63\x97\x2d\x16\x8f\x6f\x1c\x8f\xa4\x23\xeb\x1a\x02\xc6\x68\xa7\x9d\xda\x8b\x71\x02\xdc\xc0\x0b\x95\x21\x1e\x18\xc2\xf0\xcc\x2c\x55\x12\x80\x34\x7f\x42\x87\x78\xb6\x5a\xb2\x5b\x00\x76\xae\xe9\x08\xb3\x8a\xd1\x9d\xb8\x33\xa5\xc7\x9e\x84\xc4\x67\x52\x45\xda\xb3\xee\xa6\x63\xe7\x62\x8e\xd7\x4d\x99\x12\x8e\x9e\x02\xe8\x7e\x3b\x32\x6f\x7b\xde\x0d\x6d\xab\xa7\xd7\x76\xb8\x77\xc1\x82\xea\x3c\x41\xd8\xf5\x4a\x9a\xe6\x6d\xb2\x84\xc0\x5a\x94\xd6\xe6\x6d\x21\x7f\xc3\x4b\xd2\x49\xbb\xf1\x12\x75\x99\x85\x49\x69\x23\x00\xed\x3d\x65\x96\xed\x13\x28\xb5\xec\x6e\x64\xc0\xfd\xc8\x33\x4a\x2e\xde\x4e\xba\x93\xe0\xa2\x30\x6e\xd5\xe6\xf6\xde\x3b\xe5\x3b\x3f\x1d\x7f\xbe\xde\x87\x1e\x36\x09\xb8\xf8\xfb\xe3\x0f\x2f\x5f\x74\x5e\xef\x8f\x19\xc1\x85\x8e\x42\x7c\x3a\x5e\xd2\x93\x74\x37\x14\x90\x7a\xdd\x12\x76\x0d\x44\xf1\x5f\x0a\x87\xfe\xa5\x6e\x93\x3d\xac\x66\x8f\xf4\xb3\x69\x55\xb6\x75\x55\x80\x61\xb5\xad\x13\x23\xa0\xba\x97\xe6\x06\x9f\x4e\x51\x50\x8f\x3f\x95\x2e\xf9\x36\x4a\x51\xa5\x6f\xf5\x31\x5c\xda\x9b\x15\xfd\x65\x5d\xf1\xb0\x02\x35\xe5\xaa\x7a\x54\x96\xdc\x35\xa9\xaf\xa4\x53\x9c\x3e\xc5\xbd\x3d\xcd\xa5\x35\x1c\xc9\x7f\xc6\x3b\xeb\x6d\x8f\x10\xbd\x6a\xd9\x2d\x03\xb5\xbe\x05\x76\xbc\x4e\xa1\xaf\xfa\x5f\x4d\x47\xb7\x4d\xc2\x5d\x34\xd5\xd2\xc7\x91\x56\x0a\x75\x7e\x7e\xde\xe0\x92\x1c\x36\x3a\xda\xe9\xde\x79\xef\x74\x21\x34\x5d\xe0\x5b\xe6\x34\xbc\x43\x8d\xdc\x47\xba\x77\x8a\x57\x1a\x77\x7b\x83\x7b\xfd\xdd\x6e\xda\x67\x96\xb2\x1d\xc5\x9e\x1e\x9c\x85\xe6\x6a\xdc\xa8\x13\xe1\x6f\x8b\x76\x23\x4f\x5b\xd6\x94\x7d\x8e\xd4\xe3\x54\x72\x69\x51\x95\xda\x24\x0d\x41\xb3\x6a\xe3\xd2\x20\x95\x80\x8a\xc2\x1f\x53\x37\x0c\xdc\xb8\x13\xee\x2d\x1c\x6f\xbf\x77\x35\xe0\xfa\xc2\x88\xba\x14\xc9\xde\xca\x2e\x8f\xa1\xc9\xbc\x79\x6f\x1f\x9f\x78\x43\x50\xaf\xdd\x9c\x16\x4d\xcb\x4c\x64\xc4\xf2\x91\x80\x30\x0f\xe9\xa6\xcb\x70\x3c\x8b\x43\x43\x88\x58\x84\x34\x38\x6e\xaa\xa9\x52\x04\x4b\x2e\xe1\x7b\x33\x8c\xc0\x27\xe3\xe9\x8e\xb3\xc4\x9f\x05\x8a\xf4\x48\xae\xa3\xd4\x55\x2f\x89\xe7\x3c\xa2\xe0\x3e\xc2\xf5\x70\xb5\xe9\xf4\x89\x0f\x86\xa6\x1f\x48\x2b\xdc\xff\x41\xc8\x71\xab\x88\x70\x5c\x60\x4c\x7a\x78\x3a\xc6\x84\x55\x05\x14\x78\x85\xcf\x2a\x72\x80\xab\xaa\x99\x10\x65\x2c\x3f\x56\x91\x8f\xfc\xb6\xc1\x08\x7e\x50\x09\x64\x0e\xcc\xfc\x9a\xf5\xcc\x0c\x8f\x5a\x77\x44\xe8\x0a\xf0\x90\x99\x6b\x84\xbf\xe1\x49\x8b\xe9\x89\x3e\x79\xd4\x4d\x4d\x58\xd3\x5b\xfc\x29\x1c\x4e\x5c\xe4\xea\xae\x43\x3c\xaa\x26\xfd\x75\xf0\x96\xe0\x2e\x91\x40\xa2\x73\x4e\x27\xf1\xd4\xea\x1c\x78\x3c\x59\x95\x9e\xb1\x65\x04\x33\x82\x6e\x16\x8f\x2f\x08\x7a\xa2\xbd\x86\x61\x1d\x40\xe2\xf5\xb7\xa6\x40\x2f\x0b\x26\x2b\x8a\x60\x26\xd6\x48\x8c\xc0\x1e\x21\xbf\x49\xc0\x2f\xd6\xc9\x62\x17\xc6\xae\x1c\xca\x3e\x9d\x50\x15\xee\x7b\x08\xc7\x12\x5d\x4c\xd2\xfc\xfe\x86\x2e\x02\x94\x4b\xbc\x8f\x05\xc1\x25\x6e\xd9\x11\x14\x36\x42\x8d\x1e\x99\xf5\x66\x53\xaf\x17\x55\x4a\x76\x5e\x26\xe5\x05\xd8\x65\x59\xa1\x05\x03\xca\x2d\x11\xc9\x92\x23\x9e\xe2\xd1\x75\xa2\x57\x10\xbb\x16\xc5\x3d\xa1\xf1\x87\x93\x54\xfa\x40\xbf\xa8\xd2\x51\x10\x6f\xe1\x45\x95\x7e\x49\xdd\x2c\xda\xdb\x6c\xd2\xf6\x57\x24\xaa\x03\xbc\xeb\x48\x6c\x82\x34\x29\x0a\x3a\xdc\x03\xbf\xe9\x53\x36\x9d\x1e\x0e\x06\x18\xd4\x63\x74\x36\x02\x7b\x63\x7a\x9e\xab\x01\xa6\xdd\xd6\x6f\x41\x13\xd8\x2a\x96\xd5\xe7\x98\x40\x3a\x28\x6b\x4e\x11\x31\x7f\xc0\xf4\x42\x27\xe5\x77\x32\xcc\xcf\xa1\x15\xf9\xaa\x4c\x33\x8c\xaf\x75\x34\xc8\xcf\x17\x85\xb9\x3e\x8a\x0f\xb2\x4b\x40\xae\x84\x84\x6d\x78\x91\x98\xca\x03\x3b\x16\x8c\x92\xd1\x80\xbc\xeb\x44\x74\x28\x66\xf3\x30\xf2\x24\x2a\x6c\xf9\xc6\x56\x12\x2e\x6f\x68\xa4\x07\x64\x23\xfb\xfd\x6e\x45\xa3\x59\xe2\x99\x6e\x5f\x22\x4e\x34\x07\xd2\x3f\xd1\x2b\x6b\xff\xc7\x8b\xab\xa6\x10\x65\x98\x7f\x4c\xd5\xa0\x6e\x8b\xc1\x48\x3d\xc5\x3f\xd4\x91\x1a\x14\x6d\x3d\x70\xe2\x61\xab\x4b\x27\xab\xf8\x78\x64\x18\x7a\xd5\x07\x31\xe5\x70\xac\x30\x0b\x0e\xc5\x14\x23\xb6\xde\x78\x60\xd8\x48\x24\x1c\x82\x91\x11\xc1\xdd\x9f\x80\x64\x6a\xfe\x8f\xd6\xcb\x32\x3c\x16\x16\x8d\xcf\x6f\x14\x17\xfe\x45\x95\x7a\xa8\x19\x29\x3c\x85\x18\x01\x2d\x8a\xab\x31\x46\x58\x8d\xaa\x6c\xda\x7a\x9d\xb6\x55\x7d\x64\xb6\xd0\x98\x00\x70\x24\x14\x8b\x6f\x7b\x72\xb2\x5e\xad\xaa\xba\x6d\x54\x7b\x55\x19\x46\xb1\x6c\xd4\xde\x1e\x9a\x39\x43\xb4\x8d\xaa\xa4\xe0\x9a\x49\x7d\x4e\xc1\x57\xf3\x16\x9e\x34\xe8\x19\xdd\x30\x17\x9d\xa4\x0b\x7c\x3a\xee\xd8\xb6\xfc\x92\x83\xe3\x3c\x58\xae\xd6\x5a\x43\x69\x42\x86\x69\x5c\x7f\x00\xb7\x91\x90\x75\x66\x1b\x48\xc2\xcd\x65\x7a\x05\xf6\x39\x5c\x87\x66\x85\x0d\x62\x6f\x96\x55\xb9\x67\x43\xbc\x8f\x18\x53\xc6\xb9\x35\x0e\xa5\x30\x2a\xe5\x44\xf8\x45\x34\x0b\xde\x80\x60\x3f\xb0\x27\x36\x36\x20\x09\xee\x91\x34\x6b\xb2\x7b\xde\x02\xa2\xa4\x57\xc4\xf1\x85\x5d\x87\x24\x20\x23\x07\x5b\x07\xe4\xb7\x55\xb9\xb7\x5a\xcf\x8a\x3c\x45\xd4\xff\x79\x92\x22\xae\x69\x92\x65\xa8\x99\xcd\xd0\xe8\x0f\xec\x0f\xd0\xf4\x99\x01\x0f\xc4\x00\xad\x63\xbf\x3c\x5c\x3d\x64\x99\x2f\x40\xf8\xe9\xc5\xe5\x92\x10\x50\x3e\xac\x40\x30\x67\x45\x88\x31\x70\x33\xb6\xa8\x2d\x41\xaf\x4b\xbb\x02\x3e\x52\x49\x50\xa3\xe1\xee\x3c\x67\x20\x76\x2d\x74\x8d\x06\x4a\x0e\x6f\xae\xd6\x1e\xbe\x50\x38\xad\x13\xf5\xa6\x6a\x5a\xa6\x63\xcd\x58\xaf\x49\x5e\x80\x7d\x35\x2c\xbd\x7b\xcd\x50\x43\x54\x07\x8d\xec\x11\xd5\x4c\x4c\xfb\xe7\xba\xfd\x39\x29\xd6\x72\x18\xc4\xb3\x42\x0b\x8a\xc6\xa1\x1b\x36\xb4\xf3\x6f\x27\x92\x91\xa7\x31\x04\x9e\x68\x9f\x8f\x3c\x51\x46\x37\xbe\xc7\x04\xae\xe4\x6f\x55\x6e\xfb\xa3\xae\xaf\x3d\xee\x9a\xd4\x49\x5b\xd5\xc3\x91\x5d\x8f\xc6\x0e\x25\xab\xd2\x37\x30\x8b\xef\x56\x43\x3b\x2c\x44\x70\x16\x57\x76\x38\xc9\xcc\xd9\x21\x87\x61\x24\x7c\x0a\x54\x12\x1f\x11\xa1\x69\x7a\x38\xd0\x1e\x0b\x6d\xab\x55\x5f\x54\x12\xcc\x77\x7b\x58\x12\xfe\x8f\x78\x6f\xc0\xc4\x61\x20\xe2\x95\x81\xc7\x0d\xaa\xd1\xa2\x38\x02\xc5\xc1\x4d\x18\xa6\x18\x0f\x61\xb4\x2b\xa4\x93\xfc\x79\x55\xd5\x59\xc3\x5f\xc0\xc3\xe7\xc0\x3d\x95\xdc\xca\xe7\xdb\x6a\x15\xe1\xf2\xe6\x8a\x86\xbb\xc3\x21\x83\x0b\xe2\xda\x06\x0f\x6e\x0d\xbb\xf8\x82\x81\xed\x3a\xf3\x2d\xb0\xba\x6a\x2b\xf5\x34\xc8\xd1\x56\x23\x75\xe4\xd0\xa7\x3d\x50\x72\xb2\x2a\x8a\x37\xcb\xa4\x73\xae\xdb\xb0\xa3\x2e\xef\xf6\xfd\xc0\x81\x5f\xa8\x9d\x6e\xcf\xc3\xc4\xb6\x1a\xfd\xe7\xed\x0a\x1c\x9b\xa1\x9b\x60\x83\x8f\xd4\x67\x18\x08\xd3\x39\xe5\x42\xbb\x7c\xcc\xf1\xc8\xb6\xaa\xee\xdf\x57\x05\x50\xac\x57\x25\x66\xee\x56\x0c\x57\x84\x46\x52\x3c\xbf\x0d\x50\x85\xc1\x7e\x40\x4b\x71\x5e\x08\xf3\xe5\x2d\xd8\x57\x76\x6b\x16\xd3\xc0\x36\x76\x91\x1e\xfd\x0c\x4f\x56\x10\x82\xa3\x5b\x85\xdb\x10\x28\x3d\x15\x24\x57\x6f\xc1\x72\xf5\xba\x29\x97\x23\x7c\x1b\xb3\x73\x6e\x7e\x3d\xaf\xd6\xa5\x6c\xdf\x75\xdf\xf2\x12\x18\xb2\x95\x5c\xfb\xf3\x42\x16\xc8\xcc\x8a\x86\x5b\xf2\x86\x0c\x8b\x60\x8f\x90\x0e\x45\xd9\x55\xd5\xb8\xe2\x3e\x99\x9a\x4f\x76\x6e\xf1\x01\x46\x14\x44\x19\x4f\xc6\xe9\xa3\x10\x4d\x2c\x77\xf3\x0d\x76\x38\x82\xaa\x9c\x45\x25\xca\xec\xce\xc3\xdc\x26\x0c\x16\x3a\xc9\x60\xfa\x09\x57\xc6\x46\x8e\x0b\xdf\x0e\x5c\x11\x84\xd4\xee\x14\xc2\xe4\xfe\x62\xba\xcc\x06\x7e\xdb\x6d\xe5\x25\x88\xcd\x28\xeb\x6d\xab\x61\x20\x31\xc9\xaf\x66\xb7\x0f\x03\x0a\xc1\xa1\xe3\xd2\x21\xb0\x37\x32\xcf\xc6\x5f\x40\x1f\x18\xce\xc6\xef\xa3\x73\xad\x32\x22\x41\x5e\x9e\x63\x69\x9d\x6d\x21\x2a\x5d\x4c\x3a\xd9\x87\xb4\x8e\x8d\x5b\xc7\xe8\x01\x49\x6f\xcf\x8b\xc0\xed\x16\xcf\x82\x90\xf7\x47\xb8\x5d\xcf\x86\x52\x4f\xad\xa1\xac\xa9\xdd\x4c\xf3\xc1\x88\x0c\x65\x47\x1c\x55\x52\xe8\x67\xf1\xf8\x90\xe7\x4f\x4f\x7f\x19\x4f\x1d\x51\xd1\xff\x58\x9f\xb1\x8e\x0e\x8f\x06\xaa\xbb\xbe\x76\x9f\x3b\xfd\xc3\x1b\xd9\x6d\x5d\xa4\xae\xb5\x0b\x5d\x77\x7a\x18\xd4\x10\xed\x9e\x29\x3f\xa2\x0a\xe0\xa5\xdc\xfb\x0a\xc9\x77\xe8\x5c\xb3\xa5\x77\xcd\x6d\xfd\x6a\xfc\x8e\x21\x1c\xb8\xeb\x5d\x73\x97\xf6\x9f\x6d\x7a\x7a\x30\xef\xb4\x8e\x82\x7e\x92\xa1\x9a\x72\x35\x0c\x76\xc4\x58\x91\x67\xfd\x9f\xd0\x4b\x49\x62\x7d\x53\xc4\xad\x5a\x95\x64\xa4\xbb\xdd\xb7\x1f\x52\x09\x79\x01\x03\xa2\xc8\x48\xd5\xba\x75\x60\x78\xb1\x0b\x4d\x10\x73\x20\x97\x21\x29\xab\x75\x8b\xa1\x0d\x5c\x28\x4f\x49\x1f\x5f\x1d\x52\xf4\x4d\xb8\xf1\x30\x25\xf7\xdb\x2e\xf4\x97\x05\x2a\x94\x56\x4a\x56\x3b\xef\xd4\x51\x4e\x61\x6f\x7d\xcc\xbd\xbe\xa3\x8b\xb9\x77\x3a\x60\xd8\xcf\x7e\x79\x13\x5f\x1b\xf3\xdf\xc5\x16\xae\xd6\xad\x53\xec\x47\x96\x34\xc9\x6e\xdd\x92\x5b\xb9\x86\x3d\xc9\x1a\x79\x94\xd1\x40\x08\xce\x8b\xe2\x4b\x26\x2e\xa2\x72\x7c\xfe\xef\xca\x5c\x48\x1a\xbc\xdb\x04\x30\x3d\x76\xe6\xb6\x3b\x1b\x78\x72\x8b\xe9\xd8\x76\xc1\x8b\xd1\xf0\xb6\xc9\x18\x5b\x94\xed\x3b\xd3\xad\xaf\x69\x06\xcd\x5c\x20\x3e\xfb\x54\x87\xc7\xa9\x4c\x31\xc7\x2f\x93\x7f\x21\xc1\xbe\xc9\xfb\xa2\x61\x58\x60\x8a\x75\xdf\xe8\x42\xd8\x80\x7f\x89\xb8\x4d\xa7\xfb\x97\x4b\xdd\xac\x0d\xf1\xe7\xbe\xf9\x63\x93\x6f\x6e\xff\x68\x62\x3c\xee\x5d\x88\xff\xba\x15\x90\xf3\x79\x4f\xce\x27\x69\x5d\x75\x11\x9d\x32\x72\x12\xea\x4c\x9a\xf9\x0f\x06\x4c\xe1\x5a\xbc\xb5\x63\x69\xca\x7c\x77\xea\x17\xb8\xe5\xc5\x08\x1c\x6f\x7b\x6c\xaa\x12\x5e\x32\xc1\x25\x61\xbd\xda\xce\x78\xc3\xcd\x1f\xe5\xc0\xd9\x7a\x85\xbd\x85\x98\x51\x42\x9b\x14\xf6\xad\x19\x66\xeb\x55\xb7\x47\x66\x4e\x06\xbb\x79\xb9\x5a\xa3\x99\x69\x74\x5c\x7d\x47\xd3\xed\x83\xec\xa3\xab\x54\x84\xfa\x1f\xd3\x72\xf1\x78\x7b\x27\xa4\x67\x2e\x3c\x9a\xe2\x4b\x80\xcb\xeb\x90\xdc\x5d\x54\x7c\x17\xc8\x55\xca\xcd\xa8\x33\x71\x72\xf6\x58\x68\x3f\xbe\x3a\x0c\xf5\x1f\xa7\xf9\xd9\xa8\x13\x59\x4b\x10\x0c\x3e\xf3\x5c\x9d\xc0\xd8\x2c\x60\x3b\xd8\xa7\xd2\xdf\xf7\xf8\x1e\x00\x89\xe0\xf2\xf4\x81\x6c\x81\x4f\x34\x3f\x9d\x50\xa7\xdd\x34\x87\xcf\xdf\x30\xbd\xdb\x43\x9a\xe7\x5f\x1d\xee\xed\x39\x9a\x09\xd4\x46\x66\xc7\xd9\xa9\xf9\xea\xf0\x4c\x1e\xb3\x38\x00\xdc\x52\x8e\x99\x50\x2f\xf9\xa5\x82\x8e\x0a\xca\x1a\x5c\x79\x84\xd2\x07\x01\x82\xf1\x02\xc0\x88\x40\xf6\xf3\x8d\x3d\x41\xd7\x65\x56\xf5\x10\xdc\x48\x7d\x76\x9d\x7f\x55\x57\x4b\xbf\x0b\x03\x53\x74\x30\x62\xed\xcf\x1f\xae\xc6\x14\xe5\x6a\x4c\x95\xb7\x1d\xe8\x77\xea\x16\x69\xc3\x5c\xe7\xfe\xd5\x5a\xa1\x97\xa2\x56\x94\x27\x5f\x82\x54\x9a\x97\xe7\x82\x19\x5d\x26\x66\x09\xfd\x67\x9c\xcb\xa4\xe0\x43\x22\x56\x24\xb8\xd5\x61\x31\xbc\xc4\xd1\x73\x95\x8f\x32\xee\x99\x22\x99\x1c\xee\x15\x0d\x72\x8f\x55\x56\x95\x84\xcf\x8e\x36\x8b\x5b\xb5\xe8\x36\x32\x50\xb0\xd3\x51\xaa\xb5\x5f\xcd\x81\x60\x23\x71\xa9\xdd\x5d\xa8\xf7\x26\x8c\x39\x15\x78\xb8\x8b\x40\x42\xae\xf6\xaf\x0e\xc3\xfa\x31\x07\xec\x08\xaf\x0d\xea\xfd\x8d\x7f\x2e\x7c\x66\xaa\x35\x57\x4c\x24\x3d\xcc\x68\x4f\x63\x69\x8e\xe9\xcf\xdb\x96\x47\x40\xf9\x69\xb2\x4c\x3e\xb9\xd7\x4b\xba\x51\x2f\x93\xfa\xe2\x79\xa1\x93\x32\xb2\x14\x3d\x8f\x9e\x98\x0c\x54\xe5\xd2\x87\xac\xaa\xc5\xbe\x06\x5f\xa5\x52\xb2\xaa\x53\x7d\x62\x58\xa1\xd4\x64\x89\x54\xcb\x66\xbc\xbe\x17\x49\xd3\xbe\x5b\x05\x44\x01\xa9\x27\xba\x88\x7f\x78\x87\x07\x94\x87\x71\x2e\x69\x92\xf3\x9e\xdb\x6e\x72\xf7\xf3\x26\x98\x12\x35\x3c\xd7\xa5\x0b\xe8\xbf\xad\x0e\x73\xa3\x30\xb9\xad\x7c\x15\x4c\xa0\xa7\xd5\x8c\x2e\xa7\x47\x16\x86\x04\x8e\xc0\xbe\x86\xf2\xba\x7b\xa1\x67\xde\x1b\x5c\x8b\x90\x76\x6e\x2b\x88\xb9\x46\x37\xe2\xf9\xa1\xdb\x23\x93\xf9\x45\xd2\x26\xb7\x6c\xd0\xbb\x13\x1e\xd4\x62\xb7\x20\x59\xb8\x79\x9d\xe4\x26\x71\x07\xf3\xa5\x85\x15\x2d\xee\x51\x40\xec\xb3\xad\xd5\xd0\x66\xed\xab\xc8\xea\x96\xbe\x5b\xb7\xad\xae\xd1\xce\x63\xab\x86\xe9\x1c\x32\xbe\x7e\x31\x36\x6c\x70\xad\x83\x45\x13\x00\x6b\x4e\xef\x3a\x56\x03\x2c\xd5\x8b\xaf\x16\x9a\xef\x81\x53\xe8\xb9\xe8\x92\xc0\x59\xf3\x93\xa7\xea\xf3\x8d\x6f\x55\xd4\x9c\x72\x17\xcf\x90\x57\x5b\x00\x40\x60\x50\x90\x60\xc4\x86\xbc\x01\x8f\x28\x6b\x26\x64\x71\x2b\xc3\x06\xbc\x38\x01\x61\xfc\xeb\x1b\x71\x61\x03\x36\x85\x13\xd9\x33\x85\xdc\xb3\x3b\x01\xbe\xa3\x71\xff\x2d\x01\xbd\x83\xde\xde\xbf\x1f\x19\x83\x9b\x10\x1f\x90\xdd\x5b\x2a\x46\x2f\x8c\x2f\x96\x0f\x01\xbe\xad\x89\xd0\x3a\x88\x6c\x8e\x68\xb2\xbb\x25\xef\x38\xef\xb1\xb9\x57\x0e\x6b\xd3\x0f\x43\x3e\xb2\x6a\xfc\xd7\xe5\xbc\xea\x79\x45\x00\x21\xf3\x0e\xef\x09\x92\x78\xb6\xbe\x8b\x78\xfd\x2d\xfd\x48\xdd\xfd\x6f\x12\xb2\x7a\x76\x9d\xe9\x56\x18\x40\x49\x87\x48\x3d\xa2\x92\x72\x5b\xd8\xb9\xe0\x46\xf6\xb9\x80\xc7\x88\x92\x81\x10\x8f\x88\x02\x50\x76\x87\x45\x41\x83\x27\x6f\x69\x8e\x22\xcb\xe5\xb3\x60\x53\xe8\x79\x91\x34\x8d\xa8\x04\x7e\x8f\xd5\xec\x5c\x7e\xa0\x5f\x63\x75\x55\x27\x2b\xf9\xc1\xfe\xf6\x2b\x26\xe0\xc3\x23\x0f\x82\xd1\x99\x30\x10\x22\x25\x55\x14\xd7\x9a\x12\xe2\xe3\x15\x3e\xd9\xa7\x45\x73\x1b\x07\xf3\x4a\x00\x6d\xd0\xfe\x50\x4f\xdd\x9f\x47\x6a\x00\xce\x10\xb7\x70\xb8\x55\x0d\xcf\xd6\xae\x2a\xf0\x52\x30\x15\xd9\x29\x1a\x84\x3a\xbe\x23\x91\x7d\x96\xa4\x17\xe7\x80\x00\x01\x85\x68\xfa\xb6\x16\xe9\x74\x16\x8b\x98\x1e\xdb\x49\x1e\x84\x44\x78\x6a\x3a\x7a\xc6\x3b\x13\x7f\xc1\xcb\x6e\x63\x09\xdc\xc1\x51\x99\x1a\x3e\xea\xa6\x1d\x9a\xc9\x9c\xb4\xe6\x2f\x51\x87\x04\xe9\x48\x4c\x19\xaf\x02\xaf\x81\xdd\xa9\x1a\xa8\x81\xda\xf5\xda\xe9\x65\xb8\x6c\xc2\xf1\xff\xaf\xf8\xbf\xb0\xe2\x97\x36\x42\xac\x5b\x07\x49\x0c\xe9\xba\xde\xbe\x80\x48\x01\x8d\x64\x3a\x1e\xc9\x78\x4c\x31\x80\xc3\x97\x40\x71\xe9\xba\x9e\x2c\x93\x36\x5d\x04\xf4\xe4\x63\xa5\xdf\xb3\xd8\x71\xd1\x1e\x61\x95\x64\x6b\x07\xa8\x71\x39\x61\xdb\xc3\xaf\xd3\x83\x33\x19\x37\x45\x11\x5f\x76\xe4\xbd\xae\x5d\xd4\x07\x51\x7e\xa4\x76\xb9\x69\xaa\xf0\xfa\x1a\x5b\xc1\x32\xa4\x39\x78\xaa\x06\x30\xc9\x6a\x60\x0a\xb8\xca\xb4\xe9\xf1\xf5\xb5\x3c\x16\xef\x22\x4d\x78\xf0\xba\xb7\xd0\x76\x04\x6f\xd7\x56\xee\xc3\xf4\xfa\x14\xde\xc1\xdc\x0d\x37\x16\xb7\x6e\x5b\x74\xce\x0c\xd6\x6f\x81\x5c\x53\xec\x9d\xea\x23\x9c\x1e\x51\x73\xb7\x58\xff\xac\x41\xf9\x97\xd8\x60\x08\xc7\x86\x08\x28\x01\xd8\x27\x5e\x5f\xab\x01\x5c\x3e\x07\xd2\xc6\x88\x81\x51\xfd\x67\xf4\xf8\x53\x82\x4e\x8a\x77\x2b\xd0\xe1\x7e\x96\x8e\xe6\x47\xb2\x49\xeb\xf3\x6d\xa6\xf2\x23\xa1\x36\x01\xd1\x3f\x0d\xdc\x3d\x94\x2d\xd7\xf3\x8e\xe3\xbc\xc2\x8f\x62\x83\x72\x9f\xe3\xc5\x7d\x47\xff\x23\xdc\x1a\x63\x72\x33\x8b\xd6\x88\x9f\xe2\xb5\x75\x9c\xe4\xa3\x35\x74\x72\x91\xff\x07\xbc\xab\x77\x2d\x12\xb6\x2c\x3b\x07\x8a\x19\xdb\x69\x1f\x4b\xf0\x2b\x5e\x41\xeb\xdb\x71\xdc\x76\x0c\x21\x6e\x6f\x3a\xf0\x11\x3a\x1b\x93\xdb\x5d\x28\x98\x59\x48\x21\x89\x71\x65\x45\xc5\x06\x51\x6c\x3f\xc7\x15\xad\xe6\x63\x7f\xa0\x09\x02\xd4\x82\x5c\x4e\xbb\x0a\xf1\x1c\xba\xe0\x88\xd7\xd7\x0e\x01\x4b\x3d\x9e\x52\x5c\xfe\x91\x8c\xf2\xa5\x1c\xca\x55\x58\xaa\xad\xd4\x13\x5b\x46\x02\xf1\xf8\x5e\x17\x26\xeb\xd2\x33\xef\xe7\x0a\x18\x37\x80\x25\xd0\x9b\x70\xf9\xd0\xbd\xcf\x5f\x97\xe8\xc6\x9f\xe7\x05\x7a\x07\xa3\x72\xa9\xd7\x4c\xec\x11\x45\xca\x0e\x77\xfb\x4e\x78\x5a\x9c\x9e\x31\x56\xa6\xf4\x0f\x0d\xaf\x4e\x5f\xe4\x17\xed\xd6\xc7\x5e\x40\xc3\xc5\xff\xe2\xe5\xcf\xfd\x20\xf3\xfd\x04\xc0\x5e\x08\x01\x62\x19\x5f\xe7\xde\x56\xbe\x4f\xfb\xfd\xfb\xd6\xa9\xfd\xc9\xd4\xae\xb6\xc0\x77\xc0\xff\xa2\x70\x9b\x54\x9f\xf4\xd6\xdf\x56\x32\xda\x13\x81\x18\xe1\x72\x3e\x99\xa2\x77\x7c\x40\x9f\xca\x1c\x9d\xb0\xfe\x86\xb0\xf0\x2f\x49\x75\x23\x2f\x28\xd4\x67\x3a\x77\xbf\x8c\x36\x1d\x75\x2a\xb5\xbb\x8b\xfd\x74\xe7\xa9\xc3\x63\x33\x55\x8b\x17\xbe\xe3\xa2\x08\x69\xb6\xeb\x0e\x24\xe2\xdd\xdd\x7e\x2b\xc7\x15\xbe\x95\x80\xb6\x90\x4f\xc4\x21\x54\x59\x07\xbc\x66\x65\x5f\xf6\x7c\xb4\x57\x6f\x43\x43\x1e\x3b\x41\x76\x6a\x6e\x3a\xec\xd7\xee\xdf\x1d\xe0\x9b\xaf\xea\x0a\x5f\xf5\xc5\x7c\x54\x1c\x6a\x80\xdf\x9e\xc4\xbe\x93\x86\xb7\x8d\x5e\x9d\x60\x58\xce\xd8\xc3\x6a\x27\x5a\xdd\xed\x93\xf8\x3b\xcf\xa1\x0c\x8c\xbf\xcb\xed\xc8\xd9\xfc\x5d\x3d\x51\xd8\x4d\x0c\x3e\x5a\xcd\xe7\x8f\xa2\x71\x73\xaa\xf9\x5c\x44\xde\xda\x4a\x29\x3e\x07\x62\x03\xa8\xb7\x10\x80\xdd\x99\x2c\x83\x2c\x68\x66\xcd\x33\xcb\x53\xc3\x14\x2c\x73\x79\x40\xf8\xab\xc3\xd6\x28\x93\x9d\xda\x9c\x22\x3a\x61\xfa\x24\x5d\xd8\xf3\x86\x52\x60\xc7\x3d\x96\x66\x82\xd7\xd7\x2e\xb7\x7a\xac\x64\xf8\xae\x03\xf1\x92\xf6\x47\xd6\x46\xae\xad\x68\x3f\xc2\x3c\xd5\xfe\x3e\x38\x38\xa8\x64\x06\x4e\x1b\x18\x65\x2f\x29\x0a\x40\x21\xaf\x2d\x8e\x68\x5b\xaf\xdb\xc5\xc6\xd7\xc7\xa1\x70\x7e\xeb\x42\xfb\x6b\x03\xa5\x44\x30\xc8\xd5\xc6\x7b\x3b\xb6\x8a\x50\xef\xc1\x18\x3c\xc4\xd8\x89\xeb\xcb\xed\xe0\x7b\x4d\xbc\x7d\x47\xa2\x48\x5d\xd6\x33\xac\xf5\x3c\x88\x70\x44\x5e\x60\x04\xdf\x31\xeb\x63\xb5\x7a\x24\xbe\x33\x56\x90\xef\xb9\xe5\x2a\xe9\xbe\x02\x9b\xe4\xc0\xf1\xc8\x11\x54\x67\x92\x54\x07\x19\xe3\x85\x5e\x01\xd2\x6e\x47\x6b\x0e\x1f\x44\x21\xa7\x39\x1f\xb2\x2d\xb2\x45\xce\x18\x75\x75\x4e\x08\x9f\x6e\x0d\x6d\xd1\x73\x52\x72\x1c\x5f\x10\x97\xc8\x4d\xc2\x85\x1a\xf4\xbe\x82\xc6\x49\xa6\x68\x7d\x57\x99\x3e\x2f\x00\x5b\x33\xcb\xb1\xe1\x51\xe7\xa5\x3f\x21\x57\x99\xcf\xdc\x8a\xf7\xb5\x8b\xfe\xe4\x9f\xdf\x22\xf5\x31\x98\xba\x7f\xc6\x9e\x89\x74\x37\x0c\x11\xab\x2e\x42\xa8\x16\x6d\xcc\x5e\x57\x80\xf6\xec\x73\x8b\x24\x44\xca\x7b\x2b\x09\xca\x8e\xe3\x7d\xc0\x2c\x1e\x03\x98\x89\x17\x0e\x49\x07\x50\xf2\x91\xba\xb1\xb0\x7e\x17\x1a\x6c\xa2\xbc\xdf\x12\x5c\xef\x73\x66\xd6\x98\xa2\xe6\xd9\x56\x8e\x54\xb7\x65\xda\xeb\xd0\xb8\xab\x08\xcb\xe3\x2c\xb0\xdf\xf9\x11\xc1\x02\xdf\x52\xdf\x99\xad\xcf\xf7\x0e\xc6\xce\x74\x3d\xca\x4d\x23\x23\xff\x30\xc0\x80\x7e\x37\xf8\xa4\x6d\x3a\x15\x50\x2c\x18\x72\xde\xc1\xa4\x10\x0d\x41\x85\x93\xa9\x73\xf0\x01\xd2\x86\xcf\x53\xfc\x17\x82\x0d\x38\xda\x12\x13\xdb\x27\x3b\x88\x2c\xfd\xf7\x0f\xf3\xdd\xc3\xfb\x45\x67\x7e\xff\x51\xe1\x02\x1a\xbf\x47\x3d\x41\x5a\xc0\x98\x14\xf6\x2c\xf5\x2a\xb0\x60\x8f\xc2\xe1\x17\x07\x61\xa7\x8b\x9e\x18\xf8\x6b\xcc\x5d\x3b\xbe\x14\x5f\x1d\x5a\xf9\xd0\x05\xd3\xe4\x9d\xef\x22\x2c\x23\x61\x42\x44\x0d\x5d\x6b\xa2\x89\x31\xc6\xc7\xa4\xb0\xf9\xe7\x49\x5e\xfa\x4b\xe1\xa8\xdb\x27\xef\x50\x9e\x2b\xf2\xf6\x35\x9c\xe0\xa7\x58\x2c\xcf\xce\x9c\x5a\x9f\x5d\xbf\xc9\x4c\x38\x44\x81\x60\x22\xe2\x5a\xc8\xe3\xbb\x4a\x27\x39\xb8\x7d\xcb\x37\x3d\x9e\xb5\xed\x4e\xad\x9d\x7c\xbd\x6f\x89\x9d\x97\xd2\xb1\xed\x46\xbc\xa2\xfe\xf7\xc4\xc8\xdb\x69\x58\x99\x7d\x4a\x35\xd2\xc0\x8f\x76\x62\xe4\x85\x70\x04\x2f\x0e\x3c\x63\xc4\xd4\x9c\x9f\xc2\x9b\x2a\xdb\xe2\x1a\x61\xb8\x9b\x35\xbb\x00\x6f\xb8\xfe\xbc\xe9\x92\x1e\x36\xad\xdd\x91\xe7\xfd\x50\x77\xc2\xa1\x3a\xbb\x3e\xbb\x60\x6d\x8d\x66\x4b\x41\x06\xef\x30\x73\xf5\x1f\xaf\xdb\x0a\x6a\x76\x0e\x03\x42\xcc\xda\xe2\x2f\x20\x0c\xec\x06\xbf\x96\x03\xf7\x22\xfb\x82\x19\x75\x5c\xf7\x07\x1e\xc8\x72\x1c\x59\x5e\x83\x59\x14\xba\x22\x7f\x56\xe6\xf7\x14\x1d\x91\x05\x23\x81\xd4\x69\x78\x14\x84\xd6\xcd\x6d\xe8\xee\x9c\xe5\xf5\x6d\xd2\xbb\xb4\xb7\x9c\x60\xc0\x18\x3c\x05\x2d\xb8\x41\x60\xd3\x64\xeb\x27\x20\xdf\xd0\xa0\x69\xe7\x06\x11\x57\xdf\xa3\xeb\x64\x52\xe4\x49\x33\xf1\x9d\x90\x27\xda\x01\xd2\xfa\x1f\x4c\x1f\xa1\xf4\x0f\xc5\x3a\x3b\x87\x80\x35\x57\x55\x7d\xa1\x12\xd0\xa5\x9b\xd5\x05\x6b\xb7\xd7\x2f\xd5\x4c\x2f\x92\xcb\xbc\xaa\x49\x83\x9e\xb7\x0f\x8a\x02\xbd\x36\xf2\xa5\x06\xc4\xa5\x5a\xef\xcd\xf3\x5a\x03\x32\x1b\xf0\x98\x6a\xae\xb2\x3a\x39\xdf\xab\x75\x01\x21\x98\x10\x12\x92\x70\x5f\x93\x79\xcb\x2e\xcd\x75\xb5\x52\xc3\x7f\x3b\xfc\xe6\x9b\xc3\x11\x00\x15\x14\x49\xd3\xbe\xc0\x07\x81\x03\x01\x5e\x51\x95\x26\x71\xa8\x1d\x52\x85\x85\xd1\xe6\x57\xe5\x17\x75\x72\x8e\xd6\x5f\x43\x0c\x7c\x81\x58\xe4\xe7\x65\x52\xbc\x78\xf7\x06\x74\x6f\x00\x51\xa5\x41\xd3\x0c\xfd\x79\x4d\x01\xd0\x44\xec\x0b\xf3\x3d\xc0\xfd\x34\x53\xad\xff\x41\x08\xf8\x2f\x10\xd3\x7f\x68\xc3\x49\xe6\xb0\xb0\xa2\xdb\xbb\x20\x9a\x24\xad\xb6\x10\xf4\xa8\x70\xa3\xeb\x23\x68\x02\xb1\x23\x16\x21\x7c\x9e\x17\x60\xad\xa8\x27\x59\xd2\x26\x1f\xeb\xa4\x6c\xe6\x00\x5f\x52\xe8\x26\x80\x07\x4f\x97\x93\xbc\x61\x54\xb7\xe1\x28\x20\xcb\xfd\x7d\xf5\x06\x66\x78\x66\x96\xc2\x94\x87\x19\x86\x00\x45\x18\x7d\x28\x4d\x1a\x40\x91\x05\x5f\xc7\x8d\xd2\x9f\xda\x3a\x49\x11\x56\xdd\xdc\x2e\xc8\xdb\xb6\xcc\x48\xd5\xaa\x30\x76\x32\x82\x34\x14\x18\x66\x1c\xfe\x10\x30\xc4\x57\x79\x99\x55\x57\x93\x57\x79\x01\x70\x73\xe8\xc8\x21\x12\xbd\xd7\x64\x40\x39\x70\xe5\xc7\xec\xc8\x8f\x3c\xb4\x1c\x81\x72\x33\xb3\xd6\x5b\x88\x49\x92\x64\xa6\x1e\x0f\x97\xc4\x54\x32\x56\xb9\xff\xf8\x2c\x50\x1e\x93\xa2\xa8\xae\xcc\x8a\x98\x92\x1f\x37\x2b\xe8\xba\xb8\xa2\x30\xc2\xc7\xd6\x22\xb8\x32\x08\xcb\xe2\xe3\x4c\x7b\xe4\x21\x4e\xc2\x1a\x27\x00\x8f\x25\x37\x23\xf6\x2d\xc3\xfc\x98\x54\xa5\x19\x12\x08\xb8\x2e\x6a\x45\x9f\x29\x01\xca\xbc\x65\x8b\xa8\x22\x54\x43\xad\x9b\x75\xd1\x7a\x9a\xb1\xfd\xd3\x5f\x3f\x1d\x1c\xec\xfd\xfa\xe9\xe0\x6f\xbf\x7e\x3a\xd0\x7b\xbf\x7e\x3a\x9c\x9f\x7d\x7e\x78\xb3\x8f\xcf\x8d\x54\xc5\x88\x45\x15\xac\x6e\x30\x10\x0f\x43\x66\x25\xd8\xda\x17\x32\x78\xf5\xef\xee\xe2\xc2\x4c\x55\xe9\x5b\x3a\xf8\xea\x64\x84\x87\x13\x0a\x65\x31\x8a\x05\x59\xcf\x92\x71\x2c\xa8\xb2\xdb\x0a\xff\xe8\xb9\x3d\xb2\x8b\x30\x07\x62\xf4\x91\x1e\xd0\xfe\x9a\xbe\x85\x46\xd7\x5b\x5c\x41\xac\x67\xf1\x2a\x69\x5a\x3d\x90\x06\x14\xc2\x7a\x95\x87\x82\xfd\x96\xa3\xd9\x62\xad\xca\x85\x42\x5f\x62\x18\x2c\xd6\xf4\xb2\xcc\x86\x54\xa7\x50\xec\x59\x35\xdd\xc8\x27\x16\xf3\xcf\x71\x03\xcf\x00\x10\x68\x5f\x5c\x17\x63\x22\x6e\x69\x51\x01\x78\xdb\xe0\xc6\x05\xa0\x9e\x9c\xce\x0d\x7e\x58\x06\x3c\x83\x7a\x99\x14\xc0\x25\x58\x5e\x44\xbc\xe5\xac\x52\x09\x9b\x6a\x1b\x02\xb0\xdc\x7a\x91\xac\x56\xba\xd4\xc0\x21\xf2\xcc\x61\x74\x92\x33\x1e\x2c\xd8\x64\x47\x6c\x49\xc0\x67\x9c\x98\xd3\xe0\x3c\x2f\xcf\x21\x04\x1f\x46\xdc\xa4\x6b\xf9\x84\x22\x93\x34\xf8\x48\xf1\xc4\xc3\xd6\x89\x96\x1f\xda\xd5\x70\xc8\xd8\xa6\x0f\x04\x08\x99\x37\x70\x1e\x55\xe9\xba\xd1\xd9\x8e\x5d\xb2\x8f\xf9\x52\x57\xeb\x76\x18\x85\xd7\x14\x88\xaf\x60\xae\x3e\x81\xe2\x43\x94\x3f\x1f\x1e\xb8\x45\x31\xb9\xc5\x1a\xb4\xf5\xc6\x13\x85\xcd\xe8\xe1\x62\x13\xf0\xf2\x73\x0d\xc6\x66\xc3\x01\xc0\xe5\x4a\x6b\x14\x2c\xd1\x51\x82\xd3\x74\x7a\x7b\xb0\x77\x32\xef\x45\xbf\x4c\x8c\x8c\xea\xab\x8e\xed\x2a\x01\xc6\xad\xef\xb1\x39\x1c\x09\x66\x20\x49\xfc\x6d\xf5\x53\x99\x55\xdb\x49\xdb\x2c\x9d\xff\x10\xcd\x4d\x6d\x0b\x07\xc5\x79\x82\x60\x50\x5e\x97\x3d\x67\x77\xee\xc3\x60\x30\xb6\x85\xd1\x88\x96\xdd\x9e\xfc\x54\x74\x82\x1a\x98\x59\x11\x48\x97\x44\x58\xa1\x23\x02\x2d\xc5\x58\x0d\x50\x04\x1a\x8c\x99\x43\x8c\x64\xb1\x28\x9d\xec\xc8\x5d\x4c\x01\x2c\xe0\xad\x5e\x8f\x3e\x77\xb1\xb8\x8c\x38\x93\x9c\x83\x03\x37\xcb\x24\x9f\xad\x3c\x01\x6f\xa6\xf1\x15\x35\x12\x80\x93\x2f\xf6\x9c\xd8\xf1\x58\x1d\x1e\x1c\x00\x73\xd7\xff\x68\x5a\x90\x94\x1e\x49\xc1\xe0\x8f\xcb\x42\xc1\x41\x17\x90\x75\xe3\x91\xf5\xd8\x4c\x8f\xf4\x0b\x42\xf5\x56\x50\x46\xcf\xe7\x3a\x6d\x8f\xcd\x69\x0b\x84\x38\x30\x64\xfa\xa6\xba\xd4\x03\xc2\x0b\xf9\xa9\xd1\x2a\x5b\x2f\x97\x1b\x95\x2f\x93\x73\x0d\xea\x00\x73\xf6\x18\x99\x12\xc5\x2f\x35\xab\xab\xab\x46\xd7\x0d\xe6\x98\x60\xb9\x0f\x3a\x35\xc7\xda\x49\x32\x4f\xea\x5c\x0d\xff\xdf\x6f\x27\x07\x93\x87\x23\x8c\xd6\x98\xa8\x56\x97\x99\x2e\xd3\x0d\x84\xca\xd4\xe7\x58\x0f\x85\x55\xcc\x1b\x62\x6b\x88\x32\x7c\xa5\x55\xc6\x4c\x10\x2f\xc7\xb5\x66\x31\x28\x32\x01\x75\x72\xfe\x1a\x3a\x6a\x76\x62\x03\xad\x4b\x99\x27\x5f\x9e\x23\x38\xfb\x70\x90\x2f\xcf\x07\x6c\x5f\x8a\xff\x1f\x70\xb8\xa9\x23\x35\xcf\x3f\xe9\xec\x91\x2a\xe0\x75\xfb\xe0\x91\x6a\xab\x95\xf9\x97\xf1\xd9\x97\xe7\x93\xa6\x4e\xcd\x7c\x99\x0e\x1c\xc1\xc0\xf7\xcf\xf3\xf9\xa3\x59\xd2\xe8\x6f\xff\x32\xfe\x70\x50\x7c\xf7\xee\x45\xb1\x38\xfe\xbf\x8f\x9f\x1d\x9b\xff\x9e\x7f\xff\xcd\xb3\xe3\x97\x3f\x1c\x1f\xbf\x3c\xfe\x11\x12\x4c\xfa\xcb\xe3\xe3\xe3\xd7\xcf\x3f\x1e\xbf\x3c\x7e\x77\x35\x9d\x0e\x2c\x9f\x5e\xd5\xba\x01\xd5\x1b\x73\xa6\xe5\xf9\xe4\x2a\xcf\x40\xbf\x69\xfe\xb6\xd8\x34\x87\x3b\x9d\x8d\x70\x55\x9b\xb9\xab\x27\x30\x83\xd9\xf3\x45\x5e\x64\xc3\x7c\x79\x2e\x78\xf4\xab\xaa\x4e\x35\x9c\x27\x18\x92\x07\xa2\x59\x41\xcc\x2e\x75\x05\x13\xbd\x6e\xb4\xaa\xd6\x35\x2d\xb8\x61\x17\xe6\x7a\xa1\xaa\x59\x93\x1a\xe6\x5e\xeb\xa4\xa9\x4a\xd1\xb5\x7f\x20\xb8\x89\xf9\xb3\x9a\xcf\x0d\x73\xa7\xf3\x8b\xfc\x43\xfa\x17\xc9\xf4\x8c\x90\x40\xba\x83\x87\x0a\xf1\x1d\x0d\x50\xe8\xd1\xca\xc3\x8d\x28\x02\xab\x87\x5b\xf9\xdd\x25\x01\xe0\x8a\x1b\x4a\x9f\xd8\x3f\x12\x22\x7d\x24\x24\xe5\xbc\x4e\xce\x11\x87\x10\xc1\x98\x10\x42\xea\x05\xfd\x7c\x55\x27\xe7\xe6\x5f\xe0\x38\x59\x9d\x5c\xd9\xbd\x66\xef\x3e\x64\x24\x60\xea\xb1\x4d\x89\xd5\xca\xec\x3d\xc9\x3e\xbf\xc4\x3e\x32\xc9\x66\xf9\xa5\x25\x59\x19\x3c\x20\x85\x5c\x8d\x50\xd0\xed\x99\xc2\x94\x4c\x44\x2b\x6a\x06\xf1\x6c\x95\xa4\x0c\xed\xff\x0c\x80\xaf\x87\xd1\xb6\xc7\xb2\x20\xd6\xf8\x22\xbf\x74\x10\xc2\x76\x51\x6a\x5d\x1e\x97\xd9\x71\x96\xf5\xd5\x83\x93\xe0\x81\x51\x76\xef\x8a\x96\xf7\xde\x75\x96\xdc\x58\x24\x81\xc4\x4b\x6f\x9d\x61\xb2\x77\xba\xe1\xf8\xc5\x0b\xdd\x68\xb5\x5c\x37\x70\x81\xe3\x70\x25\x69\x52\xeb\xf9\xba\x28\x36\x63\x35\xd3\x69\x62\xb6\x4a\x99\xe4\x97\xba\xd8\xa8\x5a\x9f\xe7\x4d\xab\x6b\x40\x9e\x72\xd1\x8a\x6b\x87\xef\x45\x22\x11\x85\x34\x31\x65\x9d\xa0\xd4\x18\x56\x58\xea\x4b\x5d\xab\x19\x44\x7d\x3b\x4f\xea\x99\xd9\x7f\x69\x55\xd0\xb9\x2c\x91\x45\xab\xfa\x65\x92\x2e\xdc\x7a\x0f\x45\x88\xf5\x7b\x96\x5c\xcf\x75\xfb\x12\xc1\x97\x9b\x67\x9b\xe7\x8c\x7e\x1d\xa1\xf3\x19\x7e\x95\xa4\x1e\x2f\x3b\x14\x64\x07\x74\x15\x93\x7b\xa9\xb6\x3e\xac\x50\xd0\x16\x50\x9e\xd3\xfc\x6c\xe2\x6a\x14\x92\x2a\x48\x2a\x36\x80\xe0\x0d\xa3\x29\x9e\x17\xd5\x2c\x29\x9a\x0f\x34\xd7\x02\x52\xd7\xce\x0d\xfa\x9e\x7d\x07\x19\x29\xf2\x6b\x33\x74\xb3\xd3\xa9\x21\x8c\xf0\x45\x1f\xc2\x0a\x76\x54\xb4\x71\xb0\x85\xbb\x71\xad\xf7\x15\xe7\x20\x39\xbf\x50\xec\x60\xba\x94\xab\x5a\x37\xf9\xef\xe6\x76\x7b\xa5\x01\x50\xdf\x90\x41\xad\xe7\xb5\x6e\x16\x2a\x49\xdb\xfc\xd2\x12\xc8\x64\x87\xaf\xb5\xa6\x84\x11\xa0\xcd\x7c\x81\x8d\x9b\xa9\x09\xdc\xc4\xcc\x97\xa8\x21\xbc\x19\xb9\x28\xe8\x1b\x5d\x8b\xe4\x5e\xd9\xdc\xca\xdc\x32\xb3\x30\x11\xec\x52\xa4\xb9\x8e\x39\x54\xae\x9b\x31\x48\x45\xac\x2b\x8b\xce\x45\x51\x35\xba\x51\x20\xc4\xc1\x7c\x5c\x25\x18\xda\xba\x59\x54\x57\xf2\x4e\x91\x34\x6a\x56\xac\xeb\x1a\x24\x72\x39\x01\x26\xb5\x0f\xb3\x3f\xd6\xc1\x67\xc5\xba\x1e\x11\x44\xee\xfe\xbe\x7a\x9e\x14\x66\x8f\x5f\xc5\x97\x48\x1e\x33\x38\x32\xcb\xaf\xe0\xcd\x56\xc9\x50\x15\x1c\xed\x06\xdc\x9b\x7e\xa9\x93\x15\x47\x25\x9b\xaa\xcc\x9e\xd1\x69\x91\xeb\x92\x02\x94\x19\x79\xc5\xe5\xfe\x05\x4f\xfb\x6e\x66\xf8\x10\xd1\x89\xf9\xca\x26\xd0\xe3\x34\x69\x02\x80\xea\x56\xb1\x31\xa6\x20\xe9\x80\xd3\x93\x26\xe9\x02\xf1\xf0\xb2\x09\xfc\x9d\x3d\x5f\x24\x35\xb5\x6b\xd3\x3e\xda\x90\xb4\x22\xf1\x3d\xc2\xeb\x7d\xef\x08\x20\xa3\x47\xde\x59\x52\x37\xcf\x8b\x7c\xb5\xf2\xa0\xae\x8d\xf4\xac\xdb\x13\x33\x61\x23\xde\xc7\x17\x7a\x63\xd8\x09\x3c\x8c\xee\x28\xf5\xf5\x91\x1a\x70\xc4\x85\xbf\x1d\xa9\xc1\xb3\x24\xbd\x68\x0c\x53\x1f\x8c\xd5\xdf\x8f\xd4\xe0\x63\x32\x1b\x8c\xd5\xa1\xcc\x76\xf8\xed\x91\x1a\x9c\x2c\xf2\xb9\x11\x75\x0f\xff\x7a\xa4\x06\xcf\xdb\xba\x30\x7f\x9b\x0a\x8e\x8b\x76\x30\xde\x51\xea\xd0\x94\x7e\x6f\x78\xed\xc0\x5c\x1d\x4d\xae\x64\xd5\xfc\x58\xa5\x17\xe6\xb7\x29\xf5\xb2\x49\x07\x63\xf5\xf5\x43\x53\x1b\xb5\xf8\xf5\xd7\x50\xe8\x5c\xff\xb4\x32\xbf\xfe\x42\xbf\x5e\x54\x57\xa5\xf9\xfd\x0d\xf4\x22\x83\xfa\xbf\x36\xbd\xf8\xbe\x5a\x42\x31\x53\xdd\x8f\x1a\x3a\xf4\xb5\xe9\x04\x16\x37\x3d\xf8\x60\xa6\x70\x30\x56\x7f\x31\x3d\xa0\x7a\xfe\x02\xf5\xd6\x39\xa0\x99\x41\x82\xa9\x18\xc3\xcf\x40\xdd\x7f\x31\x75\xbf\xd0\x85\x6e\x4d\xed\xdf\x98\x7a\x1e\x0d\xc6\xea\xdb\xc3\x23\x35\x98\x9a\x89\x31\x7f\xbc\xa9\xcc\xd5\xe8\xef\x0f\xdd\x9f\x5f\xf3\x9f\x66\xf8\x07\xa6\x8e\xff\x69\x66\xe5\xe0\xaf\x54\xec\xf0\xc0\xd4\xb4\x67\xfe\x3a\x34\xdd\x99\xc0\x5f\xa6\xae\x7d\xf3\x17\x4c\x0a\xb7\x6a\xaa\xf8\xeb\xd7\x9c\xfd\x6f\xdf\x52\x17\x0e\xff\x66\x2b\xfb\x9b\x19\xe8\x18\xfe\xb2\xd5\xfe\xdd\x56\xfb\x77\x5b\x2d\xf4\xf0\xff\x31\x93\x0e\x4b\x72\x6a\xfe\x82\xf5\xf8\xf5\x57\x68\xe6\xe1\x43\x93\xf5\x0c\x92\x4d\xd6\x07\x66\xa4\x5f\x3f\x84\x75\x81\x79\x34\x3f\xbe\x76\xb3\x67\x7e\xfe\xc5\xcd\xb7\xf9\xf9\x8d\x98\xe8\x6f\xbf\x7e\xf8\xd7\x87\xfe\x40\x4c\xd2\xd7\x6e\xb5\xcc\x4f\xbb\x92\xf0\xeb\x5b\xb9\xea\x26\xe1\xaf\xfe\xc2\x7f\xfb\xf5\xd7\x07\x0f\xdd\x12\x91\x9c\x80\xe8\x61\x86\xa0\x9b\x9d\xd8\x61\x78\x78\x60\x3d\x5a\x99\xe8\x4f\x73\xb5\xab\xfe\xf2\xb7\x33\x35\xf5\x93\xfe\xfe\xad\x49\x3a\x01\x60\xd5\x21\xe8\x87\xf6\xf7\xd5\x71\xb1\x5a\x24\x33\xdd\xe6\x69\xd8\x06\x5c\xdf\xbf\xfd\x86\xee\xef\x53\xf5\xf7\x03\xe1\xdd\xea\x2a\xfe\xea\xd0\xd5\x0a\x36\x00\x66\xa3\x1b\x36\x38\x84\x58\xcf\xd0\xc8\x2b\x66\x6d\x61\x13\x0f\xcd\x2d\xe3\x11\xfc\xf1\x78\xaa\x0e\x1f\xc2\x9f\x9d\x16\x1e\xaa\x5d\x43\x42\xfe\x80\x20\x15\xd6\xc5\xa4\x0f\x5e\x0d\xd4\x2e\xd4\xe3\x38\xc0\x9b\x64\x05\x86\x11\x3b\x3b\xf8\x63\x32\x4b\x1a\x88\x36\x62\x58\x02\xae\xec\x91\x1a\x9c\x57\xa6\xc3\xb4\xce\xb4\xc0\x36\x99\xd7\xdb\xd0\x08\x24\xfe\x98\x97\xb8\x80\x48\x28\x36\x0d\xd7\xd0\xd4\x6b\x16\xdc\x26\xe3\xea\x23\x4d\xd8\x44\xd0\x05\x9c\x2c\x93\x1a\x6a\x26\x92\x80\xaf\x96\x3c\x1c\x5d\xd8\x74\xd7\x02\x11\xdd\x91\x1a\x64\xba\x30\xbd\x3c\x9e\x23\xcf\x12\x7c\xcd\x7d\x44\xe1\xdb\x7c\x05\x6e\xb6\xb7\x2d\x8f\xa9\xdd\xf0\x42\xf8\x02\xb7\x66\xe4\x8c\x54\x94\x3e\xe5\xe6\x72\xdd\x1e\xaf\xdb\x8a\x47\x6c\x9a\x3f\x52\x83\x52\x5f\x19\x71\xf9\xb8\xcc\x5e\x43\x16\x53\x92\xa8\xf9\x48\x0d\xda\xea\xfc\xbc\xd0\xe6\xf6\x74\x55\xe7\xb4\x69\x80\x3d\x1e\xa9\x41\x93\x97\xe7\x42\xcf\x34\xc0\x03\xf3\x6d\xd5\x6a\x17\x0a\xb6\x81\xbb\x7d\x99\x81\x95\x82\x7d\x6c\x4a\xab\xe5\x32\x29\x11\x62\x14\xae\xf1\x7a\x9e\x97\x3a\x53\xb3\x8d\xa9\xc1\x86\x65\xfe\xa9\xd1\x35\x22\x5b\x20\x7e\x6b\x55\x36\x10\xa5\x19\xb3\xc3\x9b\xf8\x44\xfd\x54\x5e\x94\xd5\x55\x69\xeb\xdc\x21\x34\x52\x7a\x40\xc1\x88\x67\xd9\x84\xc9\x69\x95\xd2\x0b\x11\x93\x94\x39\x21\xf6\x8e\x61\x3c\x30\x92\xe3\xc2\x1c\x18\x98\xfc\x82\xa6\x5b\x63\x38\x21\x9b\xfe\xbf\x4d\x3a\xb9\xf5\xd3\x34\xbb\x74\x72\xcc\xc7\x9c\xff\xee\x52\x6c\x63\x8e\xb0\x5e\x54\x29\xd0\x95\xcd\x6e\xe9\xf0\x45\x95\x12\x19\x42\x7a\x97\x92\xb1\x7f\x3d\xe4\x0c\x1f\xdd\x5e\xf9\xae\xae\xd6\x2b\xde\x2c\xf0\x4d\xec\x18\xf8\x68\xb7\xcc\x71\xd1\x8a\x82\x96\xf0\xf9\x93\x28\x67\x77\x8a\x6d\x30\x24\x52\xa8\xd9\x51\x32\xf6\x58\x6e\x03\xc8\x60\xf7\x01\x7c\x3f\x81\x85\x48\x2e\x5d\x89\x57\x26\xc5\x50\x8f\x68\xe9\x3b\x4e\x7b\x8b\x5a\x2d\xb9\x06\xf6\xdb\xfb\x5a\x5f\x06\xdf\x5e\xe1\x6a\x80\x56\x31\xf8\xf4\x41\x7c\x02\x12\xb0\x8d\x9d\xba\xed\xf3\xa3\x06\x67\x29\x4c\x3f\x73\xe9\x6f\xec\x46\xc4\xd5\x62\xf2\x70\x7b\xc3\x6f\xec\x27\xa6\x0a\x2f\x83\x99\xe0\xd8\x17\x73\xa3\x4a\x8a\xa2\x5d\xd4\xd5\xfa\x7c\x71\xa4\x06\xc0\x12\x69\xbb\xfd\xac\xeb\x8d\x42\x1e\x59\xeb\x24\x33\x5b\x79\x5f\x2f\x93\xb4\xd9\x6b\x20\x3a\xd1\x2c\x07\x6c\x07\x23\x3c\xc3\xfb\x22\x6c\x8d\x36\x29\xb3\xa4\xce\x54\x55\xaa\x37\x49\x6a\xf7\x06\x94\xdb\x78\x1b\xe3\x55\x84\xad\xe2\x62\x77\xd9\x30\xa4\xbf\x8f\x12\xea\xdb\x18\x95\x9a\xf1\x52\xfd\xbf\x54\x75\xe6\xd1\xe0\x33\x97\xee\x55\x7f\x1c\x21\x4c\xdc\x39\x7d\x54\xf9\x73\xc8\x8d\xbd\x95\xf8\x39\xe4\xe1\xde\xbe\xf7\xf8\x34\xee\xdd\x1e\x06\x6c\xfa\xcc\xa5\x4c\xa7\x6d\x29\x18\x4c\xb0\x31\x4c\x86\x60\x5f\xfc\x60\x3e\x5d\xe4\x45\xe1\xf1\x99\x8f\xc0\x82\xeb\xa4\x6c\x56\x55\xa3\x4d\x9b\x8d\x18\xd9\x3b\xf3\xb5\x5a\xe9\x12\xca\xec\xdc\xf0\x32\x2e\x93\x0e\x8f\x5b\x66\x31\x16\xb7\xcc\xa2\x1c\x6e\x99\x45\x19\x1c\x27\x5b\xfe\xb6\xcc\x3a\xec\x6d\x99\xf5\x71\xb7\x65\x66\x99\x58\x98\x1e\x63\x7a\xa6\x6b\x96\xb9\xb9\x74\x9f\x3d\x09\xbe\xc6\x6b\xd0\xcb\xd8\x4c\x8d\x3e\x63\xb3\x74\xb5\xcc\x42\xbe\xe6\x93\xe2\x36\xb6\xe6\x4e\x90\xbe\x9c\x1e\x25\x6c\x63\x7f\xcb\x2c\xe0\x7e\xcb\xac\xc3\xfc\x96\x59\x2f\xef\x93\x9f\x98\xf5\xc1\xba\xf3\x2e\xeb\xf2\xbd\xc8\x57\xc7\xfa\x96\x59\x94\xf3\x2d\xb3\x2e\xe3\xc3\xe4\x0e\x95\xc3\x25\x35\x0b\xa7\xda\x9b\x02\x91\x87\xe6\x9c\xdb\xde\xca\x43\xf9\x7b\x87\x85\x7a\x87\x65\xe7\x74\xed\x52\x54\xc8\x5a\x4f\x89\xb7\x8e\xd5\x00\x99\xe1\xe0\xcc\xee\xab\x53\x16\xaf\x06\x67\x00\x0d\x99\xaa\xa7\xaa\xbb\xe3\x8e\x54\x28\x68\xa0\x09\xcf\xcb\x7f\x7f\x73\xfc\x5e\xbd\x78\x7d\xf2\xfe\xf8\xe3\xf3\xef\x85\xda\xce\x62\xec\xfd\x80\x52\xf2\xb0\x44\x75\xdc\x8e\x0f\xc1\x66\x52\xc9\x98\x6b\x7f\x6f\xf8\xf4\xde\x57\xa3\x7d\x73\xe5\x37\xc9\x6a\x4a\xb8\x65\xf0\x7f\x01\x02\xc5\x41\xa0\x92\xa2\x1d\xab\xb4\xad\x8b\xb1\x6a\xcc\x04\x8e\x55\xba\xcc\x7a\xf4\x74\x61\x1d\xdd\xa8\x3e\x55\x66\x1b\x24\xab\x4b\x30\x6f\xf8\x8f\x61\xba\xcc\xae\x97\xba\x4d\xae\x97\xa3\xaf\xf6\x73\x34\x6b\x58\x56\x19\x9a\x34\x2c\x33\x3f\xa2\x9f\xf5\xbc\xdd\xff\x8f\x64\x58\xb4\xa3\xa7\x9d\x22\x49\xd1\xf6\x16\x19\xa6\xd7\x66\x3c\xd7\x14\x24\x2e\xd2\x5e\x5b\x17\xbd\xa5\x9b\xa1\x99\x85\x48\x93\x30\x3b\x91\x62\x91\x90\xb0\x3f\x95\xb5\x4e\xab\xf3\x32\xff\x5d\x67\x66\x4e\xf2\x79\xae\x6b\x58\x8e\x23\xf0\xff\x36\x55\x7a\x41\x17\x93\x02\x4c\x92\x69\xc1\x80\x1b\x98\x7c\xf0\xdb\x86\x50\x6c\xeb\x42\x66\x02\xaa\xed\xe6\x5a\x66\x5e\xa6\x65\xd6\xcd\x03\x23\x91\xb9\x70\xe7\x78\xf9\x18\x59\x21\x59\x6a\xab\xdf\xce\x1b\x95\x37\x2a\x51\x17\xd6\xe4\xec\x42\xeb\x95\xa1\xe9\x65\xb2\x6a\xd4\xb2\x6a\xda\x62\x03\x66\x68\xa0\xd2\x6e\x54\x9d\x5c\x29\x8c\xd8\x07\x92\xf7\x70\x96\xa4\x17\x57\x49\x9d\x35\x80\x69\x96\xb4\xf9\x2c\x2f\xf2\x76\x33\x32\xe2\x47\xa1\x95\xbd\x16\x2c\xb5\x6a\xf3\xa5\x56\x0d\x46\xca\x50\x73\x9d\xb4\xeb\x1a\x8d\xd5\x8a\xfc\x42\xdb\x7d\x81\xb0\x3c\xe6\x0a\x01\x51\x00\xf7\x9a\xb6\xae\x2e\xb4\xe9\x91\x95\x6d\x20\xb2\xa0\x69\x0e\x2c\xa0\x40\xcf\x6e\x56\xca\xee\xac\x8c\xfa\x0f\x91\xcc\x4d\xfb\x25\x45\x1f\x69\xa0\x33\x55\x91\xd1\x10\x48\xd1\x6a\x18\xca\x0e\xc4\xc5\xc8\x9b\x49\x7c\xa7\xbe\x49\x56\x43\xac\x54\x58\xbc\xa1\xe5\x3b\x3c\x27\xdb\xad\x75\xa1\x37\x30\xe1\x79\xa9\x6c\x7e\x58\x21\xfc\x35\x59\x24\xcd\xbb\xab\xf2\x7d\x5d\xad\x74\xdd\x6e\x86\x94\x7d\x24\x77\x1c\xc2\xbd\x4c\xa9\xfc\x29\x65\xf1\xb6\x9e\x49\xb8\x16\x9c\xec\x7a\x98\xe9\xeb\xa4\x1d\xb5\x49\xba\x18\x7d\x45\x26\x46\xa2\xee\xd0\x1a\xda\x54\x43\xcd\x4c\xd5\x60\x32\x99\xa0\xf9\x25\xb0\xea\xb0\xdd\x47\xb2\xb0\xed\xe4\x85\xde\x30\x62\x2e\x65\x24\x6e\x35\x50\x83\xd1\xb8\xc3\xe5\xfa\xa3\xb8\x99\x8a\xfa\x01\xfe\x2e\x13\xb3\xad\x87\x97\x55\x9e\x41\xa4\x04\x22\x6f\x4e\x10\x66\x1b\xb9\x19\x8a\xa8\x0c\x30\x4a\x85\x11\x07\x95\x84\x1c\x60\xa6\x64\x3a\x2a\x4c\x3c\x8a\x00\x79\xe7\x26\x74\xfd\x97\x15\x58\x97\xfb\x1c\x62\x8d\xf6\x56\x08\x53\xeb\x99\x22\x30\xc4\x82\xbe\x24\x9b\xe5\x53\xb7\xb8\xfc\x0c\x59\xeb\x4b\xf6\x66\xc0\xaf\xd8\xb5\x2e\x8a\x01\x54\x73\x0f\x3e\x8e\xe2\x71\xac\xd3\xaa\x6c\xf2\x06\xac\xcb\x78\xf7\xc0\x2a\x30\x63\x18\x79\x16\x12\x71\x02\xd8\x61\xeb\x75\xbb\x7c\x80\x10\x91\xa3\x9b\x01\xa9\x81\x4c\x01\x0b\x4a\x60\x3a\x8e\x3f\x04\xdf\xc1\x4c\xde\xdb\x5f\x51\x55\x17\xeb\xd5\x0f\x1a\xf6\xc1\x58\xc1\x96\x65\x3f\x7f\xb0\x79\xfb\x44\xb0\x63\x4b\xd0\x12\x9d\xeb\x96\xb6\xa2\xd9\x57\x3b\xbe\x7f\xad\xd9\x5c\x69\x02\x4e\xec\xfc\x27\xd6\x6a\x2b\x3a\x52\x34\xaa\x33\xb6\xa0\xc4\xa2\x11\x68\xd6\x41\x59\x01\xa2\xf9\xc0\x85\xc4\xb2\x79\xed\x76\xe1\xbc\xc0\xa7\xc2\x9c\xc2\x9d\x06\x47\x84\xe9\xd2\x7e\x63\x40\x0f\x8a\x03\x19\x38\x78\x35\x11\xdb\x5a\xbe\xdc\xbc\x03\x8e\x25\xcc\x85\xdb\x8a\xf4\x79\x30\xd4\x4e\xc9\x7b\x53\x35\x38\x25\x36\x07\xc6\x9c\x67\x03\x07\xd6\xc6\x76\xcf\x9d\xf9\x97\x75\x44\xd6\xa2\xdf\xce\x2d\x28\xbb\x05\xb2\x13\x4c\x25\xd5\xf4\x96\xc6\xc1\x3e\x2e\x6c\x5f\xec\x12\xac\x46\xcc\x26\xd5\x2b\xa2\xb6\xd1\x21\xf7\x86\x0f\x6b\x73\x84\xac\x6a\xdd\x34\xba\x21\x73\x92\xb4\x5a\x97\xad\x39\xd5\x1e\xd4\x3a\x29\x1e\x78\x39\xcc\x20\xdb\x05\x3c\xc3\xae\xd6\xb5\xb9\x8f\xa9\x6a\x4e\x44\x2c\x85\x48\x71\x60\xe4\x0d\xb7\x65\x46\x25\xb0\xc6\xc0\xd2\x16\xd9\x07\x81\x36\x39\xe6\x4b\x31\xb4\xd4\x53\x4a\x3b\x72\xea\x53\x48\x98\x5c\xe8\xcd\xf3\x2a\x83\x6d\x28\x4e\x70\x28\x0b\xaf\x1d\x80\xd3\xc1\x29\xc7\x45\xeb\x27\xe0\xeb\x88\x97\xf4\xa6\xca\x06\xde\x36\x4c\xb2\x8c\x3b\x0e\x0d\xc3\xf1\x32\x46\x33\x24\xc3\xca\x4f\x48\xb8\xe0\x87\xe2\xa4\xd1\x24\xa1\xb2\x0d\x8e\xc9\x39\x49\x0a\xb3\x3d\x0d\xc5\x43\x8e\x7b\xd4\x9d\x5b\xa5\xa0\xe1\xbc\xc8\x57\x66\x28\xcf\x97\x99\x7a\x8a\xcd\x4e\x8c\x60\x69\x6a\x3b\xa2\xdf\x46\x54\xfa\x41\x6f\x46\x5e\xf5\x30\xfe\xdb\x05\xa8\x68\x03\x54\xa1\x6d\x80\x1a\x0c\x1a\x58\x66\x83\x5b\x65\xaf\x7b\x34\x43\xa6\x24\xd6\x05\xd2\x58\x38\x17\xb8\x12\x5f\x2c\xa3\xfd\x58\x55\x17\x6a\xbd\x02\xc9\x05\xb2\x55\x73\x23\xaf\xe9\x8d\xa1\x5b\xc3\xd2\x53\x50\xb1\xce\x36\x2a\x29\xb1\x79\x12\x6e\x04\x61\x12\x45\x0d\x63\x2b\xea\xec\x6d\x5c\xff\x89\xe4\x0c\xb5\x7c\xfd\x17\x9b\x7c\x3a\x48\x17\x49\x3d\x38\x8b\x62\xd9\x08\x12\xb7\xf4\xeb\x55\xc6\x4c\x97\xc9\x90\x81\x1f\x2c\xed\x7c\x57\x27\xab\x05\xac\x40\xa4\x7a\x07\x0c\x73\x07\x4a\xf5\x88\xdb\x1d\x1a\x78\x4a\x8a\x80\xc1\x76\x2b\x06\x1b\x91\xee\x7f\x97\x49\x71\xa6\x8e\xcc\x77\x5a\x8a\xef\x75\xb1\x22\x5b\x0e\x38\x29\x8d\x48\x0c\xcf\xac\xa5\x4e\x6a\x61\x74\x0b\x1e\x3b\xa3\xb1\x5a\x37\xf8\x96\x6f\xc3\x5f\x9b\x4a\x66\x7c\x6d\x1e\xd3\x71\x8b\x52\x6a\x93\x2f\xf3\xc2\x1c\x67\xd4\xef\xc4\x48\xd1\x13\x19\x2d\xd4\xe4\x7d\xab\x93\x5a\x86\xfe\x1e\x33\x92\xb0\xdb\x9d\x16\xb7\x5b\x18\xf4\x32\x84\xfa\x45\x5e\x14\x8c\x0d\xb0\xbf\xaf\x9e\xad\xf3\x22\x33\xb4\x95\xa8\x46\x43\xd8\x2f\x2a\x6c\xae\x01\x26\x2b\xb9\xa5\x2e\x75\x7d\x0e\xaf\xc8\x97\xba\x2e\x92\xd5\x2a\x2f\xcf\xb1\x02\x82\x67\xee\xb9\x5a\xf6\x83\x37\x63\x34\xac\x1f\xb0\x37\x34\x82\xa1\xc5\x6f\x46\x36\x8f\xf7\x87\xa1\xe9\x87\xf0\x6d\x48\x97\xab\x21\x96\x9c\xa0\xbb\x68\x61\x04\xdd\xbc\x28\x46\x93\xb6\x1a\xa9\xc7\x53\x70\x29\xf7\x8e\x1b\x44\xc1\x31\x74\x69\x4a\xad\xaa\xd5\x70\xe4\xb9\x28\xac\x86\x9c\x67\xc2\xde\xaa\xb6\xfe\x11\xf9\xa8\x3b\x9b\x7c\xf7\x0d\xac\xff\x45\x41\x9b\xc7\x39\xfd\xf9\xf6\xa7\xd8\xfe\xba\x59\xd0\x08\xd8\x7e\x6a\x7f\x5f\xbd\x05\xc8\x3a\x34\x5e\x52\xed\xc2\x1c\x36\x49\xda\xae\x93\x42\x4c\x71\xbd\x2e\x5f\x97\xef\x56\x3d\xae\x09\xde\x02\xc8\x49\xc3\x3b\x3d\x43\x43\x4b\x60\xe8\x5e\x43\x5e\x53\x9c\x41\x1b\xdc\xaf\xb6\x1a\xab\xc1\x2e\xd2\xe1\xc0\x02\x3f\x47\x40\x9e\xd1\xdb\x27\x88\x39\x8c\x66\x59\x49\xfd\x63\x75\x9e\x1b\x81\x65\x23\xa2\xbf\x58\xaf\x30\xa0\x8b\xa4\xc6\x08\xd6\xcd\x45\xbe\xb2\x58\xc5\xa0\x0b\x1d\x0a\x78\xbf\x74\xa1\x76\x4d\x41\x2c\x2d\x36\x35\x16\x7f\xac\x0e\xc0\xc7\x18\x7f\x3d\xe9\xba\xeb\x3f\x45\x06\x74\x44\x59\x3a\x7d\x0d\xfb\x49\xc1\x29\xbd\xae\x02\x76\x43\xdf\xc0\xa0\xc0\x84\x87\xb7\x23\xa0\xdb\x04\xdc\x12\xf5\xc1\x88\xec\xef\xab\x06\x03\x06\x4d\xbc\x89\x81\x91\x3c\x55\x03\x70\xd1\x02\xac\xae\x19\xaa\x22\xfd\xe9\xd5\x65\xf6\x6e\x0e\x70\x40\x18\x22\xaa\xd8\x60\xb0\xff\x02\x83\x9f\x33\x04\x86\x18\x00\x5c\x01\x29\xaf\xdc\x97\xec\x06\x77\xae\xdb\x77\xe6\xcf\xa1\xad\x82\x18\x4a\xcc\x1b\xdb\x64\x0c\x40\xe4\x30\x52\xaa\x1b\x81\xd9\xa8\x94\xef\x08\x1b\xc1\xa8\xe5\x4e\xcf\x74\xa9\x5f\x97\x27\x6d\x55\x27\xe7\xfa\x1d\x75\x62\x48\xe5\xc1\xdb\x67\xb8\x82\xd9\xd1\x97\x1a\x18\xb6\x35\x4b\xc7\xc8\xac\x79\x7a\xb1\xa1\xe5\x08\xaa\x89\xcd\x9e\x28\x9a\x2e\x9c\x5d\xec\x2f\x79\xbb\x50\x89\x42\x7b\x9b\x4c\xd5\x6d\xa1\xd2\xc5\xba\xbc\x50\xc3\x55\xd5\x18\xea\xde\x00\x96\x4b\x69\xb8\x21\x88\xfd\x2b\x78\x72\xc9\x72\x54\x90\x59\x17\x17\x00\x98\x30\xe2\x65\x91\xa9\x99\x78\x1e\x85\x40\x7f\x36\xbf\xca\x1b\x55\x56\xad\xaa\x4a\xf7\x11\x97\x04\x41\x2d\x5d\x65\x4d\x5e\xa6\x5a\x7e\x6b\x14\x39\x69\x58\xe7\x21\x98\xd2\x3d\x73\xdf\xd3\xe9\x1a\x6c\xc6\xa0\xe7\xcd\xc4\xd5\xf2\x71\xb1\x6e\xc0\xf5\xac\x6e\x0b\x30\xae\x4a\x6a\x0d\x62\xb8\x19\x0e\xc9\xbb\x14\x31\x94\xfd\x93\xf6\x68\xc9\xcc\xc9\x9f\xa4\xad\xf5\x9c\x32\x03\xc4\x5e\xbb\x39\x82\x51\xe6\x8d\x37\x1c\x40\x00\x19\xd2\x97\xb1\xd3\x05\x09\x9c\xd1\xfd\x7d\x23\xc9\xd8\x12\xbd\x2d\x8f\x26\x82\x6d\x0b\x52\x78\xe2\x73\x68\xba\x5e\x9b\xfb\xa2\xf9\x27\xa9\xf5\x1b\x9d\x18\x26\xf5\xaa\xaa\x61\x83\x88\x6d\x21\xdc\x08\x16\x3e\xb1\xe2\x77\x8f\x63\xec\xa9\x43\x75\x44\x6e\x70\xf6\x10\x03\xe6\x81\x48\x18\x4b\x6c\xc6\xf0\x82\xf7\xd8\x70\x86\xc6\xbf\xb5\x5e\x01\x08\xcb\xa4\x25\x9b\x68\xdb\xe0\x3c\x2f\xb3\x57\x66\xbe\x85\x9d\x5d\x2a\x03\xf7\xdc\xa9\x4e\x70\x8e\xe5\x8e\x80\x7f\xcc\xf6\x6d\xa3\x9e\x02\xf5\xe1\x21\x76\x84\x7f\x43\x90\x56\x88\x0c\x10\x38\x8d\xd0\xbe\x9a\x3a\xbe\xc3\xa0\x35\x71\xc6\x87\x9c\x62\x31\x56\x87\x12\xe9\x88\xb4\xaa\xc1\x2c\x73\xcb\x47\xa2\x3f\x01\xcc\x20\x73\x46\x87\x65\x33\xa6\xbd\x2e\x3c\xb8\x77\x7a\xb3\x6f\x5f\xd1\x23\x75\xe0\xf1\x58\x1a\xa1\x61\x13\xc8\x30\xba\x47\xd8\xcf\xc4\x31\x2d\x15\xc5\x4f\x06\xd8\xe2\x01\x0f\x8d\x33\x50\xb8\x40\x98\xec\x72\xd5\x6f\x39\x7f\xac\xd2\x97\x8e\x18\x73\xb8\x87\x07\x9c\x0d\x4b\xc6\x79\xba\x59\xc4\x77\xcb\x3e\x05\x7f\xbc\x09\x02\xd9\x01\x62\x8f\x90\xaf\x44\xcd\x07\xd1\xaa\x70\x0e\x69\x81\xf8\x4c\x78\x5f\x71\x18\xcb\x3c\xcb\xdf\x27\x75\x7b\xdc\x0e\xcd\xf0\xe5\x81\x29\x2b\x1a\x8d\xf9\x28\x31\xb9\x4e\xa9\x8a\x33\x61\x20\x2e\x67\x14\x08\x15\xdc\xc7\xef\xdf\x57\x82\xee\xff\x87\x7a\x68\x3e\x1d\x80\x2b\x8f\x59\xf1\x27\x1e\x01\x3e\x71\x83\x91\xb4\xf8\xd8\x26\x5b\xfd\x2c\x58\x88\x36\x5a\x1d\x1e\xa9\x5f\x34\x2c\x14\x44\x79\xce\x4b\x73\xfb\x2a\x5a\x3a\xf7\xdc\x4f\xb4\x56\x9d\xa8\x97\x97\xba\xc4\x78\xd0\x7c\xb6\x00\x17\x1f\x73\xa5\xa4\x6f\xc2\x60\xbb\xba\x81\xab\x05\x79\xc0\x20\xdb\xbb\x1b\x69\xc0\x64\xd3\x6c\x2f\x2f\x3d\x07\x5d\xf0\x41\x40\x22\x95\x95\xc5\x44\x97\x55\xe5\xc5\x95\x37\x4b\xf6\x94\x50\xf9\x14\xb9\x89\x9a\x8a\x1e\xb9\x85\xad\x21\xe2\x38\x18\x67\xeb\x56\x3c\xf2\x81\xfc\xd6\x7a\xfd\x48\x3d\xad\xd6\x3d\xe1\xef\x6b\x1a\x87\xb2\x79\x79\x2e\x7a\xf9\x79\xa6\xc1\x39\xf4\x60\x6c\xa4\x9c\xa3\x0e\x19\xb3\x13\x99\x60\xfa\x46\xf4\xdb\xce\xfc\x3d\xb4\x94\xab\xb0\xc3\x66\x52\xc4\x0e\xb7\xdc\x56\xd0\x72\xa7\x0c\x52\x75\x67\xec\x43\x7f\x57\xb8\x1d\xa6\x9e\xaa\xe5\xe5\x90\xd6\x6e\xef\x10\xc2\x47\x31\xb5\xed\x6c\x23\x6f\x08\xd7\x6e\x06\x18\xb2\x75\xf9\x66\x17\x93\xa5\x3a\x05\xa6\x42\xc0\x72\x96\xf9\xc0\xdb\x6d\xcf\xa2\xf2\x94\x39\x08\xd9\xf7\x1a\xfa\xb9\x90\xfa\xce\xe1\xbd\x68\x21\xe4\x53\x6e\x77\x99\xdb\x1c\x24\x75\xa6\x72\x02\x2b\xae\x8e\x14\x72\x1c\xde\xa5\x58\xe0\x71\xac\x80\x46\xcd\xaa\x93\x28\x60\x93\x3e\x8c\x6d\x52\x23\xaf\x60\x94\xeb\x5a\xb9\x14\xb2\x2a\x27\xd1\x05\x44\x14\x21\x6d\xdd\x5d\xd0\xec\x1c\x21\xf1\xe3\x2c\x14\xf4\xbb\x47\xda\x8e\x1b\xc6\xd7\x47\xea\x39\x48\x92\x46\x56\x94\xa3\x01\x3f\x39\x21\x4d\x52\x8a\x14\x21\x55\x53\xa9\x42\x27\x97\xda\x45\x7e\x4f\xd7\x75\x8d\xef\x01\x54\x90\x19\x46\xa3\x93\x3a\x5d\xbc\x2e\x7f\xb6\x41\x66\x7d\x06\x82\xac\x77\x8c\xb7\xae\xce\x1a\x48\xfa\x3b\xd7\xed\x07\xd0\x41\xc8\x6d\x1f\xa3\xa5\x80\x19\xf9\x1f\x69\xea\x9e\x46\x67\x6d\x79\x39\x44\x29\x63\x2c\x6e\x44\x58\xa0\xff\x3e\xc5\xc7\xfa\x23\x7e\xc9\x82\x5b\xf3\x23\x7b\x30\x3d\xa1\x23\x82\x7f\x3f\x86\x49\xb2\x1a\x0c\x4e\xde\x9d\x2a\x01\x64\xe2\xdd\x77\xc2\x43\xea\xf6\xdb\xcd\x93\x88\x98\x76\x2f\xb8\xdd\x58\x79\xab\x43\x70\xfd\x7b\x67\x79\x39\x8c\xee\x93\xb1\x40\x4d\xb0\x92\x34\xc3\xb5\xa6\x0b\xde\x65\xbc\xeb\xfc\x20\xca\x1f\x74\xd3\xbb\x92\x2c\xb9\xf5\x77\x56\x4a\x9d\xcb\xcb\x21\xb5\x10\x76\xa8\x6f\x48\x7e\xf7\xe2\x3c\xe0\x0b\x3b\xdb\xdd\x6a\xc9\x11\x2a\x5c\x0d\x61\x20\xb8\x95\xbb\xdd\x6d\xe1\x0e\xf4\xb0\x01\xbe\x33\xe1\x26\x1a\x5a\xb2\xb1\xfa\x8a\xd8\xf6\xd9\xb1\xef\x1a\xfe\xa3\x46\xd0\xc1\xd9\x1d\x3a\x58\xea\x4f\x6d\xa4\x83\x26\xf9\x39\x4b\xe0\x28\x00\x45\x67\xb1\x8f\x78\x60\x19\x78\xb5\x30\x5c\x18\x54\x28\x58\xff\x3d\x2b\x5c\xdd\xbf\x6f\xdb\x8b\x08\xa7\x0e\x4f\xbb\x67\xce\x5c\x17\x0f\xd4\x91\xdc\x85\x78\x4d\x81\x39\x8c\x1e\xb7\xd8\xa8\x08\x78\x1e\x9b\xd0\x60\xd5\xff\x72\xa4\xde\x56\x08\xa5\xd3\x56\x40\x2e\xe2\x46\xb1\x2e\x58\xfd\xfb\x5c\x58\x31\x9b\x09\x4f\x96\xba\xd5\xf5\x5e\xa1\x9b\x06\xdc\xb4\xaa\xb2\xc1\x3b\x70\x9a\x94\xe6\xd6\xbf\xd2\xf5\xbc\xaa\x97\x1a\xec\x2e\x93\xd2\x54\x81\xc7\xcc\x98\xed\x2a\x40\x41\x6c\x56\xf2\x42\x6f\xac\x71\xc3\x0e\xda\x16\x50\x5b\x68\xd1\x67\xed\xf8\x8e\xdc\x9f\x80\x0e\xee\x9b\x64\x7b\x88\x9e\x4b\x1f\x4d\xc1\x0b\xf7\x89\x6e\xe1\xe4\x71\x69\x83\x5a\xb3\xbb\x38\xa7\x63\x7c\xec\x4e\xc4\xfd\x47\x88\x16\xc5\xd6\x8b\xbd\x8d\xf6\xa9\xac\x5d\x76\x50\x6e\x7a\xee\x69\x10\x8d\x4f\x43\xdc\x95\x51\x00\x03\xa7\x4b\x01\x7a\xcd\xea\x4a\x17\xb3\x9b\xd0\xaf\xc3\xfb\x8d\xac\x17\xb2\xa1\xfe\xcd\xd4\x76\xff\x7e\x58\x5c\x3d\x06\x14\x06\x0a\x79\x3e\x1c\x45\xd0\x65\xbc\x40\x82\x88\x66\xd0\x56\x47\x70\xda\x84\x95\x01\x72\xf3\xc1\xe8\xc6\x7b\xb7\xff\x57\x6a\x1c\x9b\x6e\xdb\xfa\x02\x03\x85\x58\x6d\xf1\x40\x87\x82\xf7\xf1\x5a\x3a\x8b\xd0\x3f\x61\x35\xb9\xc4\xd0\x61\x67\xcb\xe1\x60\xa7\x68\x40\x07\xa4\x32\x33\x3d\x0c\x21\x6b\x5c\x11\xd3\x6b\x6f\x4e\x47\xdc\x79\x31\x00\x36\x3c\xfc\xcf\x1f\x81\x98\x5f\xfc\x14\xe9\x5d\x60\x1d\xf9\x67\x6d\x1a\x7c\x49\x59\xe1\x73\x4f\x0a\x4e\x3d\x55\x9d\x49\xca\x19\x2b\x70\x19\x47\x4d\xd1\xae\xfa\x66\xc7\x6d\xa8\x39\xdd\xc6\x4d\x51\x28\x06\xf7\x9e\xcf\x04\x78\x30\x46\xc0\x83\xb6\x5a\xdd\x70\x1d\x3b\x5d\x42\xa3\x5a\xba\x73\x10\xd2\x57\x68\xfa\xf9\xdf\x60\x06\x00\xfc\x6c\xcb\x14\x04\x1e\xe6\x2f\xf2\x4b\x02\x37\x40\x17\xc9\x5d\x75\x78\x70\xc7\x59\x8a\x6c\x47\x6e\xdb\x9b\x27\x0c\x2b\xd8\xcf\xc4\xcd\xf7\x21\x67\xc6\xb8\x83\xfd\x99\xcd\xf7\xa1\xac\xf9\x4e\xe7\x84\x97\xd1\x6b\xeb\x4e\xc5\xbd\x8c\xb6\xb8\x33\xce\xdd\x56\x36\x0c\x50\x4f\xcc\x00\x34\xd2\xc8\x90\x61\xef\xcb\x3a\x5f\x96\xd9\x1f\xa8\x51\x70\x78\x57\x9b\xf5\x31\xf8\x82\x0a\x9b\x67\x9b\x61\x3f\xfb\x28\xb8\x46\xa0\xdf\xf0\xa8\xa2\x86\x95\xfa\x6c\xe1\xaf\x76\x8d\xec\x31\x18\xab\x59\x9e\x34\x47\xea\xd0\x90\x46\xa4\x7f\xe0\x95\xf6\xe7\x77\x12\xaa\x0d\x7a\xfa\x87\x3a\xf9\x65\x6b\x72\x7b\xef\x00\x9f\xeb\x8f\x4c\xe0\x5e\xa4\x73\xdb\x79\xcf\x5d\xbb\x17\xe1\x3c\x20\x33\xdd\x8d\xf7\xb8\xc6\xfe\x4c\x9e\x73\x83\x82\x9a\x99\x01\x7f\xc8\x5b\xcf\x9b\xff\xfa\x11\xff\x91\xe1\xfc\x39\x5b\xe0\x5f\x1b\x93\x83\x94\xf9\xb2\xf3\x13\x2e\xdd\x15\x01\xe0\xa3\xc0\x8d\xd7\x44\x1b\xc1\x05\xef\x43\xc3\xfd\x5f\x4f\xf6\x47\x77\xde\xa9\x41\xe0\xf2\xaa\xd9\x36\x87\x3f\xad\xb6\x4d\x1e\x3c\x74\x0c\xf7\x0e\xc7\x6a\x60\xda\x1c\xf8\x65\x5f\x54\x57\x5b\x4f\x00\x2c\x1d\x29\x8c\x4e\x57\x77\x6c\x78\x95\x9c\x87\x65\xef\xde\x70\x50\x98\x9d\xd6\x6e\x2b\xfc\x3d\x36\x0d\x56\x4e\x7e\xe9\x5b\xb9\x06\x16\x8f\x95\xae\x8a\xf5\xb2\xfc\x92\xd6\xa1\x40\xa7\x86\x2f\xe9\x41\x58\x03\x7b\xd5\xdd\xb1\x07\x57\x55\x9d\x89\xd2\xce\xaf\xea\x6e\xcd\x9f\x9b\xfc\x61\xf9\x2f\x68\x3e\x2c\x6f\x7d\x05\xef\xd6\xbc\xd7\x7b\xcf\x73\x6f\x5b\x79\x14\x3a\x63\x04\x20\xdd\x02\xef\x52\x43\xac\x02\xe7\x00\x78\xe7\x3e\x84\xc3\xb0\x4e\x86\x77\xed\x43\x58\x81\x70\x63\xbb\x73\x27\xfc\xa5\xf0\x5c\xd8\xee\xda\x0d\xbf\x0a\xe7\x95\xbe\xad\x3c\xe6\x72\x52\xdb\xa0\x01\x3f\x7c\xbf\x92\x37\xb7\x0c\xa4\x53\x49\x92\x65\x41\x15\x3f\xea\xa6\xf9\xb2\x7e\xac\x67\x00\xcf\x2b\xea\x69\x74\xdd\x7e\x4c\x66\xdb\x45\xe2\x00\xd6\x70\xf0\x6b\x58\xc3\x49\x35\x8f\xd6\x62\x0f\x1a\xb0\x18\xe4\x08\x60\xd2\xc4\x2f\x84\x8c\x1c\xab\x36\x99\x51\xec\x14\xf1\xb6\x46\x89\xbd\xe6\xdb\xfd\xb6\x7a\xf2\xa0\xb3\x26\x7a\xee\x9e\x6b\x55\xd4\x15\xda\xf2\xad\xcb\x16\x19\xd6\x30\x76\xb4\x8d\xe9\x19\xd1\xf6\x92\xab\xc0\xf1\xd9\x18\x4a\xa9\x3e\x69\xeb\x21\x8f\x64\x0f\x6a\xff\x1f\xb6\x8c\xc4\x5c\x8d\xcc\x6f\x83\x35\x34\x16\xd7\xdc\xc1\x24\xc4\x27\x98\xa1\x3c\xab\xa5\x86\x57\xd8\x13\x82\xac\x1c\x92\x2b\x5b\x0f\x2d\xf9\x1e\x63\x20\x74\xe8\x94\x94\x84\xc3\x81\x25\x0d\xca\x08\x3d\xd9\xdf\x57\x27\x57\x09\x1a\xf3\xb6\x57\x15\x18\xb7\x34\x70\x87\x06\x23\x50\x44\xe3\xae\xe6\x08\x15\x66\x8d\x49\x1f\x34\x0a\xa4\x5e\xc2\xf8\xa9\x2e\xe1\x11\xa7\xa9\x6a\x35\xd3\x8b\x1c\x5d\x9c\xa0\xba\xe6\x0a\xdf\x96\xad\xcd\x4c\x83\xd0\xde\xe0\xa0\x85\xc5\x77\x08\x52\x56\x37\x68\x00\x0f\x98\xb1\x35\xda\xe9\xcc\xb5\xce\x1a\x95\xb8\xe2\x13\x3f\x77\x93\x26\xa5\x5a\x56\x00\xee\x9a\x94\xaa\x2a\xd1\x8e\x47\x25\x33\x30\x5b\xac\xc0\x9e\x65\x4b\xf9\xac\x52\x49\xb9\xc1\x87\x6e\x50\x89\x2a\xd0\xf4\xa1\x7a\xb8\x3f\x2b\x3c\x9b\x97\x55\xb9\x87\xb9\xed\xb4\xc0\x88\x7c\x6f\xe9\xde\x6d\xb8\xdd\x78\x32\xb4\x9b\xed\x6e\xaa\x52\x5f\x9d\xe8\xc2\xc5\xd5\xfa\xd2\x3d\x04\x6f\xdd\x6e\xfb\x38\x0d\x67\x37\x4e\x85\x8b\x6f\xea\xf2\xa3\x10\x1a\x44\x64\xb6\x78\xc8\xeb\x5a\x28\x3f\x45\x83\x7e\x8c\x2a\xa2\xf3\x75\xcd\x2a\x50\x33\xeb\xd6\x58\x84\x9a\xe4\x97\x33\xae\x13\x6b\x4f\xc9\x9b\xea\x26\x56\x55\x60\x7f\xa5\x6e\xab\x69\x57\x79\x80\xb2\x6e\x03\xa3\x21\x2a\x74\xcb\x50\xd0\x71\x3b\x94\x6d\xef\xaa\xe8\x97\x87\x5b\x60\xa5\x55\xdf\x50\x1e\x8e\xe0\xc7\x58\x0d\x76\x2d\xfd\x08\xdf\x2d\x61\xf9\xc2\x85\xd5\x13\xb6\xde\x01\x6d\x84\x3f\x60\xe1\xd1\xd5\xb7\x36\x30\x06\xb9\x3e\xca\x41\x5d\x5e\xfa\xb5\xf5\x4f\xa0\x37\x6f\xdb\x67\xee\x00\xe2\xb9\x46\x81\xb8\xd5\xee\x96\x09\x03\x33\x8a\x4b\xae\x05\xfe\x16\xee\x74\xdb\xa6\xda\x9f\x6c\x7c\xa6\xe9\x94\xdf\x36\xeb\x4a\x90\xd7\xcd\x8e\xff\x2f\x6e\x3f\x3c\x1e\xcc\xbc\x90\xcd\xb2\xa9\x2c\x5d\xd7\xe1\x81\x20\x9f\x3a\x9a\x21\x96\x1d\x49\x35\x5b\x88\x81\xf3\x2f\xb0\x8d\x46\x17\x3d\x4c\xa3\xcb\x27\x4c\xde\xdb\xcd\xb2\xc3\x65\x8d\xaf\x22\xdc\xec\x80\x37\x08\xa0\x65\xc1\x2b\x06\xbb\x00\x87\x6c\x4f\xa9\x3b\xf7\xb3\x03\x08\x2d\x38\x1a\x00\x4b\xc9\x8e\x92\x1c\x65\x28\x1e\x9b\xff\xea\xf0\xcc\x57\x8f\x23\x50\x29\xc4\x55\xb8\x83\xc9\x38\xad\x0f\x83\x5c\x7c\xa1\x54\x05\x90\x00\xf0\xe6\x6f\xc5\xab\x00\xcf\x68\x5b\x85\x41\x56\xd0\x5d\xee\xdc\xec\x48\x77\x45\x4f\x9f\x07\x36\x86\xce\xe4\xaf\x87\x39\x63\x2e\xca\x43\x6f\xb2\x53\xfa\x03\x32\xb2\x35\x92\xb3\xc7\x56\xf7\x90\x39\x8f\x28\x30\xf5\x5b\x17\x39\x1f\x33\x8c\xa4\xc9\xa3\xb3\xfc\xc6\xd8\x52\xa6\x6b\x98\x8d\x1a\x07\xbe\x71\xe3\x8f\x82\x55\x6a\x7f\xce\x18\x4c\x6d\xff\x27\x86\x41\x6f\x5e\x38\x88\xbd\xee\x28\x02\x65\x88\x0d\xa9\x8b\x76\x3a\x68\x90\xe1\xaf\x99\x15\x44\xb7\x0f\xd8\xd9\x8d\x70\xc6\xa8\x55\xfc\x16\x8b\x4e\xcc\x7f\x7d\x6d\x2d\xdd\x9d\xe1\xd5\x81\x64\x1f\x70\x9a\xbc\xad\xca\x5f\x4e\xd4\x54\xbd\x49\xda\xc5\x64\x99\x7c\x1a\x1e\x8c\xc5\x93\xb9\xa7\x0d\xb2\x05\x73\x2c\xc2\x03\x32\x15\xbb\x5e\x83\x0d\x0b\xa9\x98\xa6\xb2\x0d\x9b\x2e\x75\x45\xa1\xa5\x0c\x54\x8d\x0f\xef\xae\x68\x60\x95\xe9\x9b\xdd\xc2\x27\x7a\x25\xff\xb0\x2e\x55\x62\x71\x6f\xe1\x3d\xfc\x2a\x69\xd4\x0c\xbc\x62\xdb\x0a\x7d\xd7\xa4\x63\x53\x85\x00\xa9\xcf\xf0\xfd\x1b\x96\x09\x32\x8f\x21\xbc\x41\xe0\xa9\x46\x3e\x5b\x33\xf2\xc6\xb5\x5e\x5b\x3c\xa7\x33\x8e\xcd\x4e\xef\xe7\xa7\x90\xe0\x7c\xe7\xef\xcd\x7a\xa3\xb1\x93\x2b\x0e\x85\x2f\x30\x47\x57\x5e\xad\x1b\x05\x6c\x54\x2d\xcc\x10\xb4\x2e\x01\x74\x09\xac\xaa\xac\x4d\x3f\x0f\xb5\xd1\x00\x46\x00\x95\x08\xb7\xeb\xcb\x5c\x5f\x71\x4c\x06\x06\xd6\xdd\x89\xe0\xd6\x23\x5b\x7c\x5f\x15\x85\xb9\x78\x38\xc3\xca\xcb\x13\x02\xa9\x10\x25\x08\xd5\x83\x22\x5f\x31\xc6\xa6\x0b\x7d\x40\x17\x9a\x30\x30\x8d\x85\xb0\x6f\xd6\x2b\x70\x73\x7d\x99\xe5\x00\x36\x22\xf0\x2f\x00\xb1\x54\xcc\x7b\xa7\x59\x6e\x90\x5d\xc6\xb1\x0f\x30\xad\xc0\x52\xef\x4d\xd5\xfb\xa4\x01\xed\xa3\xb9\x0f\x24\x45\xb1\xe9\x02\x36\x73\x4d\x76\x7c\xf6\xe8\x8e\xf6\x8f\x47\x28\x48\xce\xb4\x1b\xf7\x25\x7f\x55\xd5\x18\x6b\x0b\x48\x09\x1d\x04\x71\x8d\x90\x48\x62\xa2\xbb\x6d\x19\x5d\xff\x7a\x9d\xd6\x22\xce\xcb\xd8\x40\x58\x81\xef\xbe\xbc\xf4\xcc\x51\x7a\xfd\x96\xc5\xf0\x64\x1c\x1c\x88\x09\xf4\x83\xde\x40\xb0\x9f\x48\xc3\x9d\x7c\x5e\xcb\xd8\xf4\xf5\xf5\xb6\x92\xd8\x69\xbf\xc3\x84\x6c\xc9\xe8\x7e\x63\x95\xe9\x66\x95\xb7\xda\x3a\xa2\x62\x70\x46\x25\xbc\x9f\x55\x52\x34\x95\xf5\x7a\x4c\x17\x3a\xbd\x30\x75\x98\x09\xc7\x7d\xb9\xac\xd6\x8d\x56\x69\x91\xa7\x17\xcd\x04\x21\x20\x9b\xb6\x5a\x9d\xe8\x7f\x72\x04\x49\x5d\x24\x1b\x9d\x09\xee\x90\x37\xab\xa4\x4d\x17\xa6\xdb\x6e\x39\x83\x15\x45\x39\xec\x9f\xb8\x47\xec\x32\x9c\xe8\x7f\xb2\x9d\xbc\xfe\xa7\xbc\xea\xfb\x6e\xda\x16\x22\x23\xe2\x95\x0f\x82\x13\x76\xd0\x08\x95\xc3\x6f\x0e\xe2\x51\x81\xbc\x58\x20\xd8\x34\x30\x64\xd7\xae\x47\xde\x9c\x43\x62\x27\x47\x38\x42\xad\x4d\x9b\x41\x24\x0b\xfc\x49\x9e\xb6\x66\xd0\xbb\x6a\x60\xd1\x1c\x84\x7d\x72\x97\x52\xb7\xec\x8b\x9d\x1d\x49\x9c\xc0\x57\x11\xd4\x80\x51\x86\x23\x5d\x97\x1e\xd0\xa2\x1c\xcf\x1e\x97\xc4\x20\x17\x3f\x26\x2d\xe1\xf1\x0f\x2e\xf4\xe6\x7b\xca\x83\xa7\x3c\x2d\xe9\xc8\xa1\x20\x44\xaa\x33\x04\xdc\xed\x1d\x4d\x6e\x3c\x18\x18\x58\x97\x99\x83\xe9\x59\x91\x97\x17\x2c\x62\xee\x38\x9a\x00\x83\x35\xaa\xf4\xfe\x7d\xb5\xff\xeb\x03\x46\x4e\xf1\x20\x59\xfa\x6b\xb7\xf1\x9a\xfd\xbd\x7b\x8f\x2a\x65\xaf\x61\x18\x02\xf9\x6c\x83\xf5\xa3\xd9\x41\x17\x7a\x93\x55\x57\xe4\xb1\x2d\x8e\x43\x1c\xf0\x0f\x7a\x23\xcf\xc3\x2e\x8c\x80\xf5\xe8\x76\xc1\x18\xd1\x15\xdd\xc7\x76\x67\x4e\x6d\x63\x65\x48\xcf\xf4\x7b\xc1\xaa\x0a\x1f\x07\x70\x4a\x82\x03\x05\x10\x72\x9a\xaa\xb8\xd4\x6a\xbe\x2e\x0a\x6c\x7f\x98\x97\x69\xb1\x36\xdd\x53\x0f\xd0\x89\xfd\xc1\x68\xa2\x5e\x25\x79\x81\xae\xc1\x64\x6b\x9c\x40\x94\x6d\x8e\x56\x54\x6b\x84\x1a\x42\xd5\xd5\xde\xb2\x82\xf1\xd2\x41\x4d\x3e\x26\xac\xee\xe1\x3a\x1e\x9c\x57\x0f\x46\x4e\x76\xa0\x89\x83\x3e\x98\x6c\xd5\xba\xb5\x1d\xf0\xdc\x24\x42\xb6\x11\xb8\xda\x03\x07\x71\x1b\x79\x26\xad\x4f\x62\xe2\x08\x4d\xf2\x23\x17\x0c\x0a\x38\x6a\x2f\x73\xf2\xab\xf6\x2f\xcd\x52\x8a\x09\xfc\xce\xf7\xff\xe3\xbc\x3a\x3d\xde\xfb\xdf\x67\x44\x86\xb3\x91\x3a\x52\xb3\x09\xce\xd4\x28\xbc\x7b\x6f\xef\xb2\x54\xd6\x30\xdf\xf0\x2c\xc6\x7a\x66\xea\x8f\x4c\x0f\x4f\xcc\xcd\x6d\x14\x0f\x87\x3a\x92\x7c\x48\xf1\xf0\x4c\x23\x49\x1e\x1c\x2e\xa4\xbb\x7e\x67\x4d\x1f\x98\xe5\x04\x85\x12\x20\x45\xff\xf1\x25\x25\x34\xe2\x22\x69\xda\x93\xb6\x5a\xad\x74\x66\x76\x08\xb1\x67\x81\xf8\xfe\x83\xde\xbc\xa8\xae\xca\xde\xa8\x87\xf0\x7e\xfc\x6e\x85\x21\x88\xd4\x94\xb0\xfb\x5f\x16\xc8\xc4\x7b\x43\xfe\x74\x63\x06\xbe\x7e\xa9\xb2\x4a\x37\x36\xe4\x23\xe8\x41\x1b\x54\x84\xea\x26\x4d\x56\x36\xfa\x0d\x46\x27\xca\xf5\x3f\x2e\x75\xdd\x98\x5e\x3e\x56\x87\x87\x80\xd8\x20\x41\x1c\x1e\xfe\x15\x22\x11\x4d\xb0\x95\x9f\x09\x5f\xca\x07\x6f\x00\xdc\xdd\xa9\x2b\xb7\x13\x15\xd8\x52\xaa\xf1\xf0\x5b\xc0\x6e\xb0\xfc\x84\x2a\xe1\x10\x19\xd3\x3e\x3e\xb6\x13\x8b\x6e\xd3\x99\x78\xae\xe6\x29\xb6\x77\xe4\x0e\xca\xfd\x7d\x0a\x53\x63\x04\xf2\xb2\x52\xe9\xba\x25\x16\x3a\x99\xa8\x2b\xcd\x2c\x2b\x69\x55\xa1\x93\xa6\xc5\x98\x4f\x4c\x7e\x86\xd9\xcc\x2a\x77\x17\xe0\x66\xee\xdf\xb7\xe3\xfa\xdb\xdf\x80\x33\x2e\x92\xe6\x79\xb5\xda\xc0\x2a\x81\x4b\x0b\xc2\xff\x69\x09\x4b\x62\x21\x49\x62\xaa\x1b\xa1\x96\x70\xd1\x5a\x52\xab\x8f\x61\xf3\xe3\x8f\xe8\xf9\x60\xa4\xa2\xbc\x34\x32\x53\x5d\x35\xcd\x22\xc9\x6b\x0c\x40\x70\x5c\x80\x43\xed\x42\x17\x0e\xbb\x95\xe3\xa1\xd3\x3a\x60\x7f\xf7\x7f\x9d\xc9\x50\x30\x5c\xcb\xaf\x33\x8e\x36\xd8\xb5\x2a\x49\x6d\x28\x10\x7b\x54\x2f\xaa\xab\xe7\xa6\xe8\xf7\x49\x5e\x53\xd8\x0d\x29\x61\x77\xbf\x4b\xbd\xc1\x8b\xfc\xd2\xbf\xa4\x50\xe2\x8e\x52\x49\x96\x41\xa0\x8f\x21\x25\x05\x81\x6b\xb8\xb7\x03\x90\x43\x6c\x73\x6b\x1b\x5e\x94\x0f\x2f\x41\xd1\x87\x7f\x33\xf4\x77\x4f\x13\xe8\x8c\x08\x4e\xb1\xbc\x63\x53\x98\xbd\x9a\xcf\x87\x7c\x2b\x43\xe1\x64\xbd\x1a\x8c\xd5\x7a\xd5\x93\x01\xd6\xaa\xba\x04\x08\x4f\xce\xc4\xa2\x7b\x55\xf6\x57\xe5\x7f\x0b\x6b\xf1\xe3\x17\xfd\xa0\x37\x3f\xd9\xb1\x77\x47\xfe\x2d\x42\x7d\xe5\x8d\x85\xf7\xe8\xde\xcb\x02\x3e\x83\x61\x8b\x75\xa4\xa1\xf7\x86\x23\xf7\x31\x34\x0b\xed\xd3\x13\x8b\xcc\x2c\x41\x7f\x10\x33\x8b\xb0\x63\x08\x94\x17\xca\x7c\x31\x7b\x09\x38\x94\x85\xdc\xe9\xc4\xa2\xb1\xe3\x75\xfc\x08\xa2\x35\xd6\x36\x95\x7f\x74\x10\x6c\xc4\x54\xf9\x7c\x65\xa4\x3e\x47\x39\xfc\xa3\x98\x84\xc7\xc1\xda\x2c\x84\x90\x6b\x60\x78\x4f\x4f\x10\x5b\x19\x46\x89\x7f\x3e\x56\x87\x07\xa3\x91\x43\xfb\xea\x30\xbe\xc8\x20\xc1\x51\x26\x86\xc9\xef\x06\x6a\x81\x22\x78\x54\x47\x76\x16\x28\x7e\xca\x49\xb5\xd4\x2e\xfa\x1a\xc4\xfc\xf5\x0f\x5a\x44\xb2\xb2\xa8\x33\x3b\xd6\x63\xcf\xc8\x1e\xbf\x7e\x3a\xf8\xdb\x20\xe8\x9a\xf9\xbc\xed\x4c\x0e\xb2\x77\xae\x2d\x1e\x5d\xf1\xd9\xfa\xe2\xdd\x4f\xcf\x7e\x7c\xf9\xfc\xc7\xd7\xcf\x7f\xf8\xc7\x8b\x97\x3f\x1e\xff\xbb\x9a\xaa\xbf\x1c\x1c\xe0\xc7\xf7\x49\xd3\x3e\x37\x97\x42\xe1\x31\x36\x6c\xf3\xa5\xa6\xc8\x59\xb3\x75\xdb\x56\x14\xe5\x14\x08\x1f\x90\x24\xa7\x00\x28\xc9\x49\x36\xb8\x17\x27\x60\x21\x35\xa5\xd2\x3b\x37\x8f\x76\x76\x6c\x43\x02\x46\x0d\x60\x2b\x6b\xdf\xd5\xad\xa7\x6d\x96\xf8\x6d\x17\x76\x23\xe3\x7a\x82\x38\x97\x14\xdc\x36\x5d\xae\xd0\xf3\x96\x3b\x39\xb2\x7e\xc8\xdc\xc1\xa9\xec\x2f\x74\x93\x85\x11\xe8\xea\x23\x17\x86\xb9\x5a\xcf\x0a\x4d\x89\x22\x7e\x56\x9e\x5e\x7c\xd0\x2b\x9d\xb4\xc3\x4e\x8f\xe1\xc6\x50\x5d\xc9\x28\xc8\xb4\xc2\x41\x85\xa0\x5a\xf0\x93\x78\x66\x86\x65\x75\xe5\x4f\x86\x3c\xb7\x79\xdd\xc2\xfa\xc4\xe5\x96\x2f\xd6\x6d\x9d\xaf\x8a\xd0\xb5\xdc\xd5\x41\x3d\xf8\x82\xb6\x83\xf6\xf4\x95\xa3\xa4\x6e\xc1\x4e\x8f\x3b\xfd\xcb\xa0\xba\x41\x28\x28\x7b\x65\xee\xd8\xc6\x2d\x33\x81\x6e\x3b\x03\x21\x32\x1f\x93\x14\x00\x77\x42\xf2\x1f\x4a\xc8\xbd\x07\x97\x78\xac\xb0\x7f\xfc\x0b\x67\x93\x7e\x99\x2a\x50\xe3\x5d\xcd\xdd\x03\x39\x44\xfc\x1e\xbb\x0f\x80\x55\x85\x69\x66\x20\x78\x11\x03\x14\x57\xc3\xaa\xf7\xa0\x2a\x08\xf8\x9c\xb6\x09\x34\x6c\xf2\x02\x92\x2d\x84\x92\x1b\x41\x94\xc0\x4f\x57\x39\xb8\x32\x2d\xf3\x2c\x2b\x34\x16\xda\x83\xa8\x9c\x13\xf5\xae\x56\x79\xab\x96\x2e\x08\x11\x7c\x35\xa2\x8b\xb5\xad\x80\x58\xd7\x8b\x6a\x5d\x64\x3b\xe8\xf6\x8e\x2e\xef\x73\x73\x3d\x34\xf2\xed\x58\x35\xeb\x74\xa1\x12\x73\x53\xb4\x01\x85\x14\x44\x4c\x33\x27\xd0\x44\x9e\x5f\x10\xc3\xaf\x57\x22\x1f\x2b\xe2\x4b\xb1\xa0\x4c\xbd\xc7\x16\xf3\x32\x94\xdd\x3f\x56\x6b\xf4\x39\xf4\x59\x1c\x81\xd8\x36\xf0\xb9\x13\xf4\xfb\x16\xbd\x6e\x28\x52\x0b\x21\x3a\x7a\xe6\xfa\xc1\x3f\x9d\xf4\x7a\xa5\x67\x17\x79\xeb\x79\x3d\x3f\xab\x73\x3d\x2f\x36\x0a\xba\x52\xcd\x31\xe4\xfb\x79\x82\x90\xbc\x63\x10\x8c\x8b\xa2\xba\xa2\xb9\x04\x9c\xaf\xac\x72\xc5\x4b\x8e\x3d\x8c\x01\x4e\xe9\xda\xc1\xb0\x2b\xb6\xdf\xb0\x2a\xba\x9e\x50\xe5\x85\xd4\x41\xab\x3b\x84\xf6\xdd\x5a\x91\xb9\x95\x3d\xe2\x48\x61\xe2\x59\xd7\x06\xfa\xb5\xa8\xc8\x86\xb4\x5e\x97\xdf\xad\xdb\xd6\x86\x7a\x8c\x1c\xb2\xbd\x41\x1f\xc7\x96\x01\x2b\xfd\x0f\xfc\x73\xa8\x81\xfa\x0d\x2b\xc5\x32\xe6\x02\xd2\xc7\x5e\x8f\xe4\x36\xa6\xe8\xea\x1c\x7b\x16\x8f\xe6\x7f\xfb\xfa\xe1\xb7\x87\x47\x10\xc1\x5a\x19\x1a\x18\xd3\x6b\x88\x7e\x50\x6b\xa0\x7c\xab\xf2\x48\x54\xa3\xd3\xaa\xcc\xdc\xd6\xa5\x41\xba\x33\xe2\x90\x62\x34\x93\x82\x1c\xf3\x61\x10\xda\x8e\x92\xce\xfb\x3a\x94\x9a\x35\x33\x26\x2b\xa3\xbc\x01\x63\xa1\x67\x38\x74\xb8\x14\xc3\x9f\xc4\xd2\x70\x1e\x62\x21\x67\x83\x8e\x49\xa2\xa4\x08\x9a\x85\x9e\xb7\x58\x2f\xec\x4e\x1b\x02\xd3\xd5\x19\x82\x74\xeb\x7f\x20\x82\xcd\x10\x03\xbb\x87\x24\x82\x81\x74\x3b\x52\x9a\x8c\x9e\xed\xf7\xea\x61\xa4\x57\xa1\x33\x88\x0c\x8d\x6e\x5f\xc9\xef\x46\xba\x7d\x21\xa9\xa3\x7d\xf9\xda\xb3\x33\x4b\x56\xed\xba\x46\x37\x04\x38\x1f\x4c\xed\x55\xf9\x1c\x11\x4e\xdf\xe8\x72\xcd\xcc\xc8\xb3\x2e\xcb\x74\x91\x6c\x9e\x15\xeb\x9a\xf9\x55\x2c\xf4\xe9\x17\x2d\xeb\xa5\xf5\xd9\x17\x6a\xc5\x01\x74\x69\x60\xf5\xb0\xb8\x15\xa6\xf6\x6c\x94\xe8\x95\x78\xc6\x79\xe8\x95\x76\xf0\xa2\x24\x9d\xfa\xb2\xe4\x47\x4c\x92\x25\x19\xd7\x59\x12\xfc\x53\x8a\xff\xa4\x8e\x84\xac\xf4\xd0\x24\xbf\x81\xb3\x07\x50\x16\x30\x8c\xc0\x88\x15\xe0\xfd\xea\xa2\xad\xd8\x91\x23\x8b\x21\x29\x54\x48\xf4\x52\xb8\x13\x6a\xed\x22\x6f\x8f\x7d\xef\x8e\xe2\x51\x6d\xcb\xcb\x23\x05\x0f\xf4\x5f\xf3\xfc\x50\xe6\xff\xc2\x8b\x5e\xe7\x8d\x8e\x28\xde\x3d\xd4\x75\x9f\xea\xee\xf0\x16\xe7\x33\x66\x7c\x8f\xeb\xa0\xfe\xa5\x55\x39\xcf\xcf\xd7\xb5\x76\x9c\xb7\x87\x00\xf1\x29\x0a\x8f\xea\x73\xdd\xbe\x5b\xa1\xf2\xc4\xaf\x60\x60\x8d\x10\x48\x85\x45\xa5\x9e\xd2\x1f\xb1\x06\x8e\x10\xa0\xdd\x22\x9e\x4f\xd6\x65\xde\x8a\xd8\x97\xe2\x6d\x2f\x05\x0d\xd7\xa2\xae\x96\xfa\xdd\x89\x05\x8a\x95\x2a\xf3\x38\x36\x2d\x5e\x6d\xa9\x22\xd7\x04\xd6\xf8\x54\x0d\xac\x40\x65\x28\x56\x6c\x0d\x3a\x3f\x4c\x16\xb0\x18\xf7\xbf\xd2\x96\x33\x5f\xc1\x96\xdb\x50\x3b\x78\x54\x88\x43\x10\x9b\x43\xc6\x26\x41\x55\xc9\x2e\x01\x3f\x18\x42\xf1\x33\xfa\xdf\x1d\x0a\xab\x1d\xaa\x5f\x7f\x92\x65\x6f\xf5\x95\x8c\x17\xea\xa7\x53\x70\x8c\xad\xc0\xbd\x41\x95\xcb\xea\x52\xbf\x83\x48\xcd\xdd\x6a\xe5\x37\x75\x6f\x28\x2b\x27\x25\x42\x07\x14\x58\xbc\xbe\x20\x86\xbb\xf7\x32\x7c\xdb\x69\xe4\x28\x11\x55\xaa\x10\x1a\xc2\x9d\x04\xb3\xbc\xcc\x86\x28\xc6\xbd\xc2\xb8\xa4\xe9\x12\x3c\x11\x1d\xcf\xfb\xbc\x55\xf9\xeb\x30\x99\x66\x7a\x91\x5c\xe6\x10\x6a\xf8\xd6\xad\xe1\x60\x59\x0a\x0f\xcd\x75\xcc\xd0\x7f\x10\xfa\x94\x18\x03\xbf\xe4\x1a\x51\x0a\x02\xd0\x1b\x99\xb5\x4e\xce\x8f\xcb\x8c\x7f\xde\x0b\xf8\x07\x5f\x51\x55\x8c\x24\xef\xdf\x47\x20\x3e\x68\x06\x4d\xd7\x26\xf4\xbb\x81\xf3\x74\xa4\x9e\xa8\xbd\x43\x57\x07\x00\xa9\x76\x8a\x90\x05\xab\x4d\x3e\x1b\x59\x27\x58\xe0\x41\x04\xd3\xb9\xaa\x9a\xc9\xa7\x0f\x8c\xe5\xe7\xd7\x69\xcb\x82\x17\x38\x95\x7b\x12\x94\x7b\x4c\x3e\xe1\xca\x13\x3e\xc0\xee\xc7\xd0\x11\x1e\xa9\xc8\xe0\x51\x88\xa3\x75\x70\x4b\xd8\x2d\x0c\x72\xc2\xd6\x92\x78\x75\x83\x56\x38\xe0\xaa\x99\xf3\x09\x06\xb5\xcd\x5b\xa5\xcb\xac\xb1\x4f\x60\x49\xb9\x71\xa2\x35\xa2\xbb\x16\x1b\x8c\x11\xbd\x5a\xe9\x92\x82\x55\xd4\x66\x25\xe0\xf6\x83\x77\xa7\x7c\x6e\x2a\xca\xf2\xac\x7c\x20\x2f\x3f\x5f\x36\x48\x1b\x9f\x36\x72\x21\x42\x7c\x14\x19\xab\x15\x72\xd6\xc9\xf9\x4b\x60\x15\x36\x74\x6c\x60\x04\xe9\xe9\x66\xed\x5d\xe4\x0e\xb7\x04\x61\xa7\x09\x07\x0c\xcf\x89\x11\x56\xbd\xf3\x25\xa6\x7a\x05\x95\x2a\x75\x6e\xd4\x9b\x8b\xbc\x40\xe1\xef\x37\xd5\xa5\x16\x39\x83\xee\x8d\xd5\xc0\xd4\xd6\x50\xdc\x20\xf3\x37\x4c\xe8\x2d\x25\xaa\x4e\x37\xe0\x88\x87\x99\x74\x37\xb2\xbe\x97\x63\x16\x08\x68\x7d\x88\x8f\x4a\xb0\x89\x2d\xa2\x2a\xbf\x26\xe0\xff\x6d\x1d\xcc\xea\x6f\xdc\x75\xee\x97\xaa\xbe\x50\x49\x0d\x92\xc9\xba\xd4\x9f\x56\x45\x92\x97\xb0\x12\xc8\xa3\x56\x75\x35\x2b\xf4\x52\xe5\xa5\x7a\xfd\xf2\xef\x6a\xf8\x6f\x0f\x0f\x1f\xfe\x75\x04\x64\xf8\x1c\x0e\x41\x35\xfc\xb7\xaf\x0f\xfe\xe6\x83\xf3\xc0\x42\x9b\xbd\xd7\x79\x79\x9a\x4e\xd5\xdf\xe5\x18\xfa\x64\x69\x1b\x5d\x7c\x56\x65\x1b\x27\x43\x47\x45\x6b\x14\xac\xfb\x00\x34\xa2\x45\x24\xb4\x0f\x8b\x0b\x96\x10\xa4\x82\x51\xdb\x3b\x02\x6f\x00\xfc\xf7\xfa\x1a\x0d\xf1\x92\x59\x43\xc0\xf6\x18\x76\xf9\x7f\xa9\x3d\xa5\x1f\xf2\x0f\x23\x71\x46\xb3\xfd\xbb\xcc\xf6\xef\x23\xf5\x64\xaa\x0e\x0f\x84\x61\xc6\xff\xc7\xdd\xbb\x2e\xc7\x6d\x6c\xe9\x82\xff\xf9\x14\xa9\x3a\x3e\x72\xc1\x2c\x16\x8b\xf2\xb8\x7b\x37\x29\x4a\x21\xeb\xb2\xad\x68\x49\xd4\x98\xf4\xb6\x1d\x32\xbb\x0f\x58\xc8\x62\x41\x44\x21\xb1\x01\x14\x2f\x16\x19\x31\x4f\x33\x0f\x36\x4f\x32\x91\xeb\x92\xb9\x32\x01\x14\xa9\xbd\xbb\x63\x4e\x8c\x7e\x88\x05\x20\xef\x97\x95\x2b\xd7\xe5\x5b\x6e\x89\x05\x12\xc7\x08\x08\x2b\xf3\x37\x61\xbc\x4b\xbe\xd3\x68\x6c\x06\x12\x19\xb6\x38\xc3\xbf\x14\xb6\xe6\xab\x36\xa2\x63\x0f\x87\x76\x21\xad\xed\x2d\xc5\xbf\xa6\x14\xed\xc6\xaf\x5a\x7f\x4c\xb3\xd2\xf2\xdb\x46\xa5\x55\x55\x9b\x74\xbe\x04\xd1\x02\x57\xc8\x81\xb0\xfb\x5a\x64\x4f\xa7\xc1\xe6\xda\x8f\x34\xa3\x3d\x0a\x94\x98\x16\xf4\x24\xe9\x23\x04\x36\xd9\x57\x50\x81\xa1\xe4\x21\x09\x40\xf7\xb8\xe8\x8a\xb6\xf5\xcf\x5e\x28\x25\x17\x03\x47\xe9\x1b\x53\xff\x52\xe6\xad\xe7\x61\x2c\xa7\xe9\x59\x17\x66\x6d\xc9\x01\xd1\x57\xe3\x6d\xe6\x21\x97\xbb\xf1\x06\x99\xd0\x63\x30\xb0\x89\x5e\xe4\x65\x06\x9e\x87\xed\xb8\x3f\x0f\xba\xf8\xf6\x55\xf4\xd1\x34\xce\xef\x0b\x51\x52\xfa\xf0\x5d\x9c\xfd\x2a\x03\xbb\x24\x5d\x0b\xa6\xb5\xe8\x71\x12\x62\xbd\x62\x55\x98\x92\xe0\xca\xe9\xa1\x35\xde\x84\x0d\xa4\x5a\x4e\xb4\x32\xb1\xc7\xab\xa9\x2a\x43\x76\x6a\xee\xdc\xb6\xcb\xbf\xff\x88\xed\xb0\x02\x04\x8e\xf8\xd0\x13\x36\x33\x73\xc7\xc2\x6d\xf5\x9d\x0b\x01\xc3\x67\xd6\x35\xf4\x6b\x62\x7f\xbd\x2d\x33\x7d\x4d\x15\xa2\x07\x92\x63\x03\x9d\xc7\x12\x7f\x24\x76\x8b\x45\x34\xe1\xf1\x02\x2c\x60\xe7\xb8\x40\x02\xc8\xf5\xf8\xd2\x3d\xb3\xd7\xf8\xe3\x10\xa0\xbe\x39\xe9\x33\x01\xdb\xf6\xc5\xb5\xd9\x7b\x2d\x71\xc2\x53\x21\xc8\xe8\x4b\xee\xa7\x91\x06\x15\x2b\x94\xa2\x1d\xd7\x48\xce\xc3\x8d\xac\xea\x7c\x95\xd6\x37\x64\x23\xd7\xd3\x0b\x9b\x00\xde\x49\xd3\x2f\x37\x08\x6e\x15\xfb\x0b\x5a\x20\x61\x8d\x0f\xe8\x87\x37\x5c\x39\xfb\xf3\xae\xe4\x11\x57\x10\x5a\xb9\xb3\xed\x56\xd0\xf8\x9d\xbd\xb8\xeb\xce\x3f\x8d\x87\x57\xd2\x81\x68\x2d\x42\xaf\xfc\x7c\xc5\x33\xde\x37\x05\xf8\x09\xfb\xe2\x17\x1f\x62\x0b\xb0\x77\x89\x04\x43\x18\x60\x3a\x86\x66\x18\x5b\x7e\x27\xa7\xa0\x67\x68\xe3\x51\x98\xb1\x40\xce\x73\x41\x40\x35\xec\xb0\xfb\x57\x9f\xb8\x9e\x53\xa4\x31\x08\x77\xb0\x6e\x68\x54\xbb\xdb\x26\x14\xd2\xf9\xfa\x0e\x01\x83\xb5\xd3\x8a\xc0\xa7\x6f\xa8\x45\x1c\xeb\xcc\xbf\xa7\x6c\x73\x53\xce\xd3\x56\x34\x32\xf1\x7b\xba\xcf\x99\xea\x0b\x9e\x30\xfb\xc8\x04\x4f\x94\xc3\x35\xf9\x0e\xfa\x34\xba\x8b\x64\x8c\x41\xeb\xd4\x33\x14\x12\xc7\xfb\x8f\x9d\x0d\x41\xe7\xd8\x59\xfa\x28\x78\xd8\x40\x1b\xbe\xa6\xbf\x2e\x2c\x9a\xeb\x24\x0f\x41\x90\xc0\x8d\xef\xb6\xda\x4b\x12\x0f\x02\xf6\xf5\x63\xb1\x79\x86\xd9\xd0\x0d\x2c\x72\x8e\x4a\x1d\xf5\xc3\x53\x57\xbf\xe8\x83\xf5\xe3\xae\xed\x45\xda\x10\x4e\x14\x7a\x3a\x08\x2b\x15\x1c\xac\x13\x33\x76\xde\x27\x3e\xae\x08\x65\xa3\xf3\x96\x5c\x3f\xa4\x82\x42\x89\x92\x2b\xd3\x6c\x75\x77\xed\x06\x12\x15\xb9\xad\x7e\x3a\x7d\x80\xeb\xb7\xf0\x8d\x79\xd9\x71\xd8\x66\x2f\x98\xd8\x05\x86\x22\x6e\x78\x7c\xee\xc8\x77\x9b\xd4\x2c\xf7\x14\xe8\xe1\x4d\xb0\xb8\x01\x47\x70\x46\x26\x73\xee\x30\x79\x39\xe6\xf6\x4e\xa8\x9a\x64\x42\x9e\xd2\xc2\x65\xa6\x93\x86\xca\x73\xd6\xfe\xe4\xea\x13\x16\x3a\x75\x80\xd7\xec\x9f\x8e\xf2\x31\x97\x2a\x00\x8b\x9a\x44\xd5\xc5\xb9\x93\x03\xb9\x8c\x11\x50\xf0\xd0\x96\x78\x00\x0f\xd2\x1f\x98\x70\x67\x90\xd9\x0e\xc6\x49\x8e\x91\x87\x68\xb3\x8c\x18\x8d\xaa\xff\xd4\x19\x3c\x52\xed\xc3\xf0\x1d\xe2\x18\x49\xb3\xd1\x2f\x4c\xce\x22\x3f\x4a\x46\xcc\x77\x15\x26\x13\xd5\x7d\x97\x48\x93\x52\x47\x82\x24\x9e\xfe\x33\x97\xf6\x9f\xae\xb4\xd3\x5f\xe8\x8c\xef\xb0\x6c\xcd\x9d\xbc\x54\x07\x24\x31\x19\xac\x3d\x38\xb2\x7d\x51\x0f\x22\x76\x11\xbb\x75\x2f\xd5\xbb\x87\xe8\x4b\xfc\x2a\xa2\x6d\x13\x15\x10\x3f\x67\x75\x6c\x6f\x6b\xf0\xe1\x6d\xd9\x9a\xbf\xe5\xfa\x6a\x5c\xf1\x60\x47\x68\x90\xc0\x47\x16\x19\x1f\xc1\x4c\xe0\x62\xc2\xd1\xc7\x4f\x04\xb2\x23\xc1\x4d\x50\x6c\x61\xe0\x07\x6c\x91\x54\xba\xe3\x10\x2c\x6f\x10\x68\x2b\xaa\x71\xc8\x42\xe0\xdf\x24\x76\x18\xb7\xf9\xb8\x1d\x53\x51\x88\xf2\x75\xad\xf2\xd2\x2e\x0d\x57\x25\xcb\x10\x65\xf9\xce\x4f\x22\x8e\xdb\x19\x94\x8f\x69\x7b\x6a\x48\xaf\x83\x1a\x50\xd6\x28\xe0\x95\xa2\xb5\xe6\x49\x2f\xf8\xcb\x0e\x2c\x09\xce\xc5\x29\x05\x53\x8c\x50\xd1\xc7\xf9\xaa\x2a\xf2\x05\x99\x5e\x7b\xc7\x66\xba\x29\xc1\x0a\xa4\xee\xe1\x00\x3b\x63\xd3\xaf\x38\x96\xbf\xd9\x93\x0b\x30\x66\x91\xee\xe4\x41\x87\xf8\xb4\x74\x86\xf0\xdd\x14\x91\x80\xeb\xe9\xb9\x6e\x7f\x34\x6b\x0c\xc7\x04\xd2\x8d\x9f\xed\xad\x88\xec\xd0\x7e\xa1\xdb\x14\xca\xc9\xc1\x06\xca\xac\x5b\x55\xeb\x9d\xb6\xce\x5d\xc0\x45\xb0\x4f\x03\xd3\xd6\xb4\x44\xf4\x62\x3c\x3f\xb1\x0c\x14\x84\xea\x8c\x43\xcb\xac\x74\x5a\x82\x31\xd5\x78\x5e\xe8\xb4\xa6\x8b\xb4\xca\x01\x21\xa2\xd6\x45\x0e\xd2\x8c\x9d\x1d\x95\xb6\x58\x00\xda\xfc\x9a\x92\xe4\x57\x18\x6f\x86\x9a\xd2\xa8\xa6\xcd\x8b\x82\x2a\x01\x36\x1c\x5b\x02\x65\xeb\x8c\xe0\x39\xd0\x57\x01\x5f\x72\x04\x06\x04\xd1\xb0\xef\xf3\x5a\x35\xf3\xa5\xce\xd6\x85\xce\x6c\x67\xc0\x4a\x22\x5f\x69\x88\x4d\x83\x56\xd4\xeb\xb2\x05\x4f\xd1\xd9\x56\x97\x4d\x18\x07\xa8\x63\xf3\x75\xfd\x12\x02\x50\x1e\xaa\xed\x6d\xca\x28\x3f\xf6\xde\x1e\xf8\xe6\xb0\x91\x43\xf0\x57\x98\xf9\xba\xee\xf0\x1c\xbc\x3b\xc1\x7d\x9e\x18\x10\x50\x07\x8a\x6d\x79\x8f\x2d\x3b\x1c\x01\xcc\xf9\xd8\x3a\xc4\xb6\xb8\x44\x9f\x6e\xf4\x10\xb6\xbf\xec\xd9\xd6\x8c\xe5\x65\x58\x4a\x14\x3d\xc2\x82\xcb\x30\x6d\x0d\x28\xb1\xf8\xcb\x53\xf7\x01\x62\xb2\xf5\xcb\x18\x87\xe4\xd4\x89\xfa\x82\x06\xd3\x34\x31\x87\x6e\xdc\xbd\x4d\x00\x98\x12\xdc\x25\x13\xb5\xf7\x83\x93\x36\xf6\x11\xd4\x75\xdb\xe4\x6c\x7f\x4a\xc2\xbe\xa7\x62\xcf\x00\x3c\xdc\x73\xb5\xf3\x64\x86\xf6\xe1\x94\xe4\x99\x4c\x72\x66\xda\xd6\xac\xd4\x73\x05\x89\x66\x62\x20\xa8\xf4\xe4\xc1\xdd\x0a\x0e\x7d\xee\xdf\xa3\xb0\x7f\xc1\xc4\xab\x3e\x2b\x1e\xfc\x71\x62\x2a\xb5\x7d\xc8\x3d\xf4\xc7\x3c\x0f\x0f\x93\xbf\x64\xa2\xc4\x10\x31\xe9\x10\xce\xbc\xa5\xf6\x8b\xbc\xdf\x20\x25\x90\xf1\xfb\xfd\xf2\xb6\x5c\xe4\x65\xde\xa2\x1a\x75\x48\x72\xde\x2b\x2e\xbb\x5f\x0d\x10\x68\x00\xfa\xa4\x88\x6c\xca\x6d\xaf\x10\xcb\xbc\x69\x4d\x7d\x03\x7c\xdf\xb1\x2e\x8e\xe0\x6c\xf6\x56\x7c\x3e\xbe\x0a\xca\x93\x1f\xa4\x1f\x79\x24\x4c\x8c\x40\xda\x49\xe3\x14\xd8\x78\x88\xb5\x28\x85\xd7\xeb\xaa\x53\x8b\xcd\x9e\x6c\x6d\x18\xe0\x75\x75\x8f\x3c\xd4\x8b\x42\x87\x86\x03\x85\x67\x40\xd6\x81\x4c\xc2\xd7\x1d\x57\x11\x18\x93\x65\x9f\xd7\x0d\xca\xa5\xe9\x20\x25\x1f\xad\x0a\xc2\x9b\x2b\x58\x4a\xbb\xbb\x18\xb1\x14\x60\xea\x3f\xaf\x57\x95\xca\x74\x85\x41\xfd\x18\xaf\x9e\xf0\x02\x2a\xd3\xe4\x68\xd9\x87\x34\x18\x31\x8f\xdc\x88\x76\xce\x4b\x01\xe3\x18\x70\x26\xf2\xa4\x3f\x60\xc7\x94\x98\xc9\x38\x08\x72\xbd\xeb\xc7\x01\xc0\x8f\x53\x89\x6d\x60\x09\xa7\xe4\x78\xbc\x3d\x2f\x25\xf6\x91\x5e\xa0\xfd\xe4\x2f\x2f\xfc\x7d\x9d\x34\xa4\x17\x57\xc0\xb7\x27\xc4\x12\x18\x2c\x21\x27\x49\x45\x18\x52\x09\xf2\xb8\x0e\xd8\x7b\x56\xd0\x3c\x1f\x55\x09\xf1\x09\xa0\x10\x0e\xaa\xe4\xc3\x34\x3c\x3a\xf4\x25\xb8\x88\x4a\xad\x09\xde\x0f\x36\x0c\xcc\x4d\xd2\xfa\x46\x1d\x52\x1b\xb7\xd5\x58\x94\x7d\x18\x94\xd1\x17\x00\x83\x30\x08\x5c\xb8\x01\x5f\xe0\x21\xaa\x7f\xe5\x0b\xe8\x87\x64\xfb\xc3\x26\x11\xda\x3f\x86\x1a\xc5\xb8\x75\xba\x48\x21\x4c\xde\x86\xd5\xa7\xc8\x0c\x99\x9d\x0f\xb1\x14\x5a\x68\xe3\xa7\x33\x95\x37\xbc\xe4\xf1\x3e\xf6\x6c\xc6\xcf\xee\xf2\xc5\x17\xda\xe3\xdc\x39\x2b\x78\x88\x78\x3f\x90\x12\xab\x89\x93\xab\x43\x99\x76\x27\x4c\xfa\xdd\xa6\xe8\x57\x2e\x44\x8f\x65\xb6\xfb\xa4\x89\xb6\xd8\xb7\x9b\x56\x0e\x61\xe5\x4f\x82\x55\xec\x6d\x95\x72\xbb\x68\x7d\x21\x3b\x34\xc5\xb7\xb7\xd4\x62\x80\x59\x12\xf3\xfb\x5d\x27\xfc\x90\x3d\x28\xf7\x78\x7a\xfd\xb8\x38\x71\x9c\x9b\xdc\x1d\xb5\x67\xcb\xed\xfd\xe8\xc5\x99\x62\xcc\x38\xa2\x5b\x8f\x54\x32\x4a\xf5\x8c\x52\x39\x9a\xbe\x6e\xf4\x47\xb9\x2f\x5c\x23\xb6\xf1\x5a\x0d\x79\xa9\xe1\xb3\xe4\x94\x43\xd0\x63\x34\x58\x5f\xf8\xa1\x1a\x53\x49\x51\xb8\x4a\xe7\xf6\x01\x59\x9e\x73\x7d\x1c\x14\x85\x1f\x5b\x33\xf1\x81\x86\x28\x69\x6f\x0c\x4b\x5a\xe5\x7e\x93\x1e\x72\x90\x94\x0e\x35\xa2\x5f\xcf\x69\x4b\xec\x8b\xeb\x06\x23\x4d\x89\xf5\x15\x84\x25\x22\x4a\x07\x60\x38\xbb\xbb\xea\x95\x6e\x75\xbd\x82\x20\x94\x57\x4b\x0d\x5c\xbc\x0b\x3d\x1d\xb3\xf0\xe7\x60\x9e\x8b\xb6\x0d\x96\xf9\x6f\x38\xa6\x3a\xe9\x30\x5d\x9c\x75\x35\x37\x75\xad\x9b\xca\xe0\xc9\x10\xbb\x45\x63\x39\xc2\x58\x7b\x02\xe1\x9b\x11\x62\x2a\x30\x24\x5b\xfd\x36\x51\xab\xdf\x9d\xe7\x54\x6b\xd6\xf3\xa5\x76\xa2\xb9\xd5\x6f\xc0\xbd\xd1\xdb\x4f\xb3\x53\xd6\xe7\xe2\xd7\xdf\xfb\xbf\xfe\x1e\x6f\x21\x30\xcd\xe3\xc2\xa8\x84\x03\xce\xce\x7c\x1f\xd9\x39\xa4\xed\x7c\x39\xee\x73\xca\xf6\x66\x5c\xab\xdf\x2c\xf7\x0b\xc2\xa5\x45\x61\xc0\x43\xdf\x39\xd5\x60\xcf\x9b\xa1\xdb\xd7\x14\x09\x4d\x6f\xf1\x8c\x2f\xa6\x89\xd7\xed\x35\xa0\xdd\xa0\xb8\x12\xde\x7d\x3f\x9a\x6b\x71\x23\x64\x1f\xc2\xa1\x1b\x21\x77\xeb\x77\x8a\xbc\xfb\xa3\xb9\x66\xc6\xf7\xf6\x16\xbc\x2b\xd1\x23\x17\xed\xb6\xed\x44\xca\x0e\xe8\xff\x24\xc0\xc6\x8f\xd8\x5c\xed\x78\xa2\xd5\xef\x6a\xe7\xd0\x95\x68\xb9\xed\x1d\xd7\xa6\xcb\x5c\x5f\x1d\x01\x52\xf6\xd6\x30\xc8\x07\xcb\x44\x79\x50\x19\xe6\x63\x7b\x3b\x0f\xe2\x57\x89\xbe\x72\xd2\xf9\x32\x2f\xb2\x0f\x26\x03\x40\x3e\x47\xb2\xce\xed\x5e\x3b\xdf\x3c\x39\x76\x6e\x57\xbf\x45\xd1\x4c\x90\xe1\x00\x14\xb2\xf6\x27\x6d\x93\x39\xae\x63\xf5\xbb\xbc\x4e\x61\xfd\xa1\x48\x97\xda\xc4\x0d\x61\x7f\x3f\x37\x9a\x12\x3e\x89\x77\xa0\xe3\xe1\x37\x8d\xb2\x60\xeb\x03\x33\xce\x1e\x5b\x7b\xe9\x11\xd5\xb3\x3b\x47\xf8\x0e\xed\x89\x59\xd1\x45\x71\x74\x8e\x3e\x9c\xbc\xfe\xed\x44\xbd\x7f\xfd\xe1\x17\xf5\xd3\x8b\x0f\xaf\xde\xbd\xfd\xf0\x57\xf8\x72\x62\xd0\x5a\x1e\xe9\x01\x58\x44\xab\x95\x2e\xd7\xea\xca\xd4\x17\x10\xb1\xb6\xd4\x78\x18\x9f\x91\xa7\xc3\xba\x5c\x5a\x8a\x4b\x44\xc5\x66\x48\x6b\x9d\xaa\xf1\x2a\x85\xa0\xb6\x39\xd8\x52\xad\x4b\x73\xd6\xd6\xeb\xc6\x9e\xf6\x69\xa3\x28\x94\xaf\x4e\x6c\x41\x05\x1a\x56\xd8\xdc\x30\x59\xe8\xd0\xa2\x5a\xdb\x0c\xbd\x58\xe8\x39\xc8\x13\xf2\xd0\xf1\xa4\xc7\x5a\xfb\xcb\x03\xfd\x25\xe7\x3e\xeb\x66\xe7\x85\x21\x2f\x15\x00\x78\x86\x32\xec\xc8\x8c\x1e\xe0\x8e\x27\x5b\xab\x3b\xf6\xb9\x03\xad\x71\x1d\x8a\x77\x2b\x4f\xac\xcf\x39\xea\xa7\x3e\xf7\xaf\x0d\x51\xc4\x04\x33\x86\xad\x6b\x97\x7a\xa5\x5f\x2e\xed\x19\x95\x39\x7f\x63\xd1\x41\x16\x4c\x39\x57\xe6\xd0\x01\xb9\xf3\x99\x9d\xb3\xc7\xbb\x7f\x34\xdf\xcd\x57\x3b\xcd\xce\x1f\xc7\xdb\xbb\xe7\x13\x35\x1a\x31\x2a\xa2\xd4\x9b\xd8\xda\x7d\x96\xf1\x7f\xdc\xfe\xd1\x24\x7f\x34\xdf\x41\x06\x05\xd9\x41\xd2\x02\xa2\xa2\x97\xa9\x3d\x31\xc6\x04\x9c\x63\xf7\xed\x5b\xb4\x01\xfe\xd2\x1a\x74\xf1\xf4\xd0\x73\xe3\xe4\x0b\x3b\x82\x79\xdf\xe4\xa9\x4d\x3f\xba\xa3\xcc\xb4\x35\x21\xfc\xd3\xdd\x96\xb7\x8f\xfe\x89\x4f\x4d\x78\x2f\x60\x72\xf4\x22\x2f\x35\x1a\x4d\x37\x63\x5f\x6a\x6c\x5f\x2d\xf2\x8b\xaa\xc3\x6f\xc1\x85\x9e\xec\xaa\xd1\x54\x3e\xd3\x8b\xa2\xf5\x28\x41\xa5\x69\x8f\xca\xb7\xa5\xf7\x41\x12\x45\x72\x07\x3e\xd9\x9c\xa7\x96\x9c\xda\xbc\x9e\xd3\x63\xf4\x9e\xa8\x5d\x9c\x9c\x48\x95\xab\x41\x3d\x0f\x80\xfb\x26\xea\x32\x2d\x26\xca\x14\x19\x49\x77\x4c\x91\x59\x5e\x9a\x1a\x43\x2d\x8c\x12\xde\xdd\xa9\x7d\x36\x99\x72\x4c\x5f\xd8\x64\x37\x86\xce\xb4\x9c\x2e\x0e\x1f\xd3\x86\xe4\x9b\x64\x71\xee\xd8\x17\xb8\x1b\x3b\x74\x93\xd2\xd8\xba\xc8\x8e\x39\x2c\x9e\xd6\x83\xfd\xc3\xce\xff\x4b\xdd\x20\x6e\x6f\x5a\xeb\x09\x90\x99\x32\x6f\x27\x6a\x9e\x16\x20\x5e\x64\xe0\x8c\xb9\x29\x9b\xb6\x5e\xcf\x5b\x00\xfc\x9d\xa7\xeb\x06\x08\xde\x0d\x0b\x4d\x11\x7b\xf7\x4c\x43\xf6\x1c\x44\xc0\x99\x42\x1e\x11\xf2\x53\x6c\xcb\x79\x4a\x40\x6d\x2a\x6d\x55\x5a\x14\x53\x00\x5a\x44\x33\x7b\x68\xf0\x08\xa3\xff\x77\x06\xba\x13\x47\x0c\x00\x24\xc6\xf6\x0b\x58\x2a\xb1\x11\x03\x17\xb6\x32\x99\x76\xa0\x07\x7d\xa5\xf1\x4e\xb3\x97\x17\x9b\xd8\x8d\xf9\x65\x8a\x7e\x92\x85\x49\xb3\xf7\xe0\x09\xbd\xa2\x50\x10\x58\x87\xa8\x04\x91\x27\x7f\xb1\x9b\x66\xa2\x9e\x4c\x5c\x96\x6e\x73\x30\xe5\xaf\x79\xbb\x3c\x49\xcf\x1a\x4f\x69\x7c\x0a\x80\x17\x47\x24\xd0\x51\x37\x3f\xa9\x9c\x46\x13\xf5\x7f\x4c\x7a\xe1\xa3\x01\xa7\xc9\xd6\x7d\xdc\xa6\x2d\xb7\xb9\x4b\x17\x30\xe9\x39\xd2\xb3\xb8\x67\xbe\xba\x00\xe7\xf3\xc1\xc3\x48\xb9\xc4\x18\x02\xed\x0e\x67\xcf\xfb\x9a\x94\xfa\xea\xc7\x5a\xa7\x17\xac\x38\x46\x5c\x46\x6f\x66\x0e\xb8\x7f\xb2\xfc\xdc\x9e\x0c\xbe\x11\x21\xb2\xb0\x63\xb6\xd0\xd9\x6e\x76\x70\x10\x2b\x3a\x17\xe4\x1e\xe3\x51\x0d\xe1\xbe\x78\xb4\x18\xc3\xfe\xac\xa4\xca\xd0\x36\x7c\xc1\x3e\x36\x60\x94\xa1\xce\x6c\x5b\x85\x10\x13\xeb\xc1\x44\xdb\xb6\xc7\x61\xc4\x37\xe5\xfb\x87\x7a\x3f\x19\x12\x1c\x72\x25\xb1\x3e\x07\xbf\x6e\xe3\x21\x70\xd7\x83\xdd\xea\x4b\xbc\x17\xc0\xb5\x07\xbd\x95\xe8\x90\x2b\x04\xe0\xe1\x6c\xab\xe4\x1b\x46\x4c\x95\xaf\x00\xde\xc6\x77\x30\x11\xb2\x41\xb7\x7a\x2b\x3d\xcf\x53\x08\x52\x60\x57\xf7\xee\xa7\x3f\xd6\xb3\xd9\x6c\xb6\x63\xff\xec\x2d\xec\xff\xff\xba\x80\x87\x7f\x83\x87\x34\xfb\x63\x3d\xfb\x97\xbd\xf9\x1f\xeb\x27\xb3\xd9\xd9\x0e\xfc\x59\xd8\xff\x9f\xfc\x05\xfe\xff\xb7\x3f\xd6\x0b\xbd\x58\x9c\xda\x63\x6e\x90\xe6\x46\xe2\x5d\xd1\x02\x36\x8c\xd2\xe7\xaf\xaf\x2b\x3b\xbb\xd3\xc6\xac\xeb\xb9\xb6\x37\x68\xfb\x04\x70\x24\x00\x80\x6f\xef\xb4\x70\x9d\xbd\xb5\x4f\x96\x2b\x10\x8a\x8b\x88\xa0\x03\xb0\xca\xa2\xd6\xcd\x72\xbc\x79\x04\x3e\xda\x91\x5f\x9a\x22\x03\x6c\x0d\x3a\x85\x8e\x7b\xbf\x77\x36\x73\x00\x2e\x4b\x95\xf5\x12\x38\x90\x81\xd6\xf9\x9c\x87\xbc\x4b\x71\xaa\x75\x7b\xdc\xde\x14\x28\x6b\x3d\xcb\x0b\x0d\x3e\x3e\x96\xdf\xb1\x8c\x76\xde\xa6\x67\xe4\xbe\xc6\x1c\xeb\xa8\x4f\xb6\xdf\x2e\x6b\x73\x05\xc3\xf9\xda\x1e\x21\xb2\x60\xa0\xe6\xa5\x69\xd5\xf8\x46\xb7\x89\x25\xfe\x73\xe4\x93\x20\xa6\xb1\xaa\xd7\x65\x09\xd7\x68\x20\xfd\xa3\x04\x30\xbd\xde\xfe\xf6\xfe\x75\x3f\xcd\x69\x2a\x5d\x14\x80\xd7\xc7\xe4\xf1\xde\x63\xe0\x5c\xb7\x6f\x6d\x6b\xde\xe4\xba\xc8\xc6\xc9\xd4\x17\x81\x34\xa8\x77\xe0\xea\xb6\x78\x2f\x82\xe8\x8f\x26\xea\x11\x7a\xce\x36\x32\xd5\xd5\xd2\xa0\xd2\xe8\x97\x2a\x4b\x5b\x8d\x31\x2b\x46\x3d\x67\x00\x70\x68\xf6\xd4\xa2\x79\x1e\xf5\xd3\xe7\x98\x8d\x84\x97\x74\x85\x0a\x5f\xf7\x34\x19\xa1\x11\x87\x2b\xe9\x6e\x0b\x0e\xb5\x8a\x92\xb5\x7f\x87\xfc\x70\x58\xba\xaf\x84\x15\x2e\xd6\x38\xdc\x22\x5d\x62\x5b\x98\xdb\x09\x90\xf8\xf1\x63\xc4\xd2\xce\x74\x9b\xa2\xc8\x55\x3c\x92\xf2\xf8\xda\xd9\x1e\x72\x6c\xd6\x69\xda\x72\x72\xf1\x88\x4a\x7e\x5b\xea\xed\x2d\x79\x5e\x75\x76\x94\x83\x92\xa4\x03\x48\x7e\x8b\x5c\xf2\x38\x41\x74\x84\x71\x20\x77\xbf\xa0\xae\xe8\x0d\x0d\x79\x77\xa8\x69\x4a\x46\x13\x38\x92\xfa\x66\xb2\xd1\x2d\x5e\x52\x1a\x8a\xe7\xfe\x61\xbd\x3a\xd3\x75\x23\x3c\xa0\xbe\x6e\x76\x17\xf9\xb5\xce\xb0\xc8\x11\x6b\x56\x37\x1e\xb5\x91\x50\xa0\xb1\x7b\x71\x4a\xf6\x4a\x97\x69\x01\x88\x55\xab\x4a\x97\x4d\xda\xea\x37\xa6\xfe\x09\x43\xa6\x8a\x7b\x60\xa2\xb6\xd5\xa8\xba\x86\xcd\x3f\x1b\x71\xb9\x8e\xde\xf4\x37\x73\x6e\x2e\x75\x8d\xcd\xfc\xa0\xaf\xdb\x13\x73\xcc\xc8\x08\xfd\xfb\x55\x6c\xd5\x35\xec\x21\x97\x1e\x58\x91\xde\xbd\xe9\xc0\x16\x98\x70\x8d\x4a\x90\x8f\x0f\x6c\x2a\xcb\x6b\x86\xa5\xc2\xeb\xbe\xea\xe2\xc1\x73\x35\x35\x80\xd4\xce\xfa\x47\x16\x67\x3b\x85\xe4\x83\x32\xbe\xd3\x8b\x36\xcc\x69\xdf\x6c\xe0\xad\x68\xc9\x0c\x0e\xdc\x7f\xd7\x42\xa3\x18\x86\x58\xd0\x68\xa2\xf6\x26\x51\xe6\x4d\xcd\x7d\x63\xea\x55\x4a\xab\xd4\xb7\x37\x2f\x5b\x7d\x1e\xa8\x86\xe8\x0d\x4c\xf0\x7d\xa5\x03\x9c\x17\x40\x80\xfc\xba\xd4\x64\xe3\x1e\x6c\x58\x9a\x4b\x6f\x37\xdf\x21\xc0\xc0\xf9\xba\x04\x47\x65\x78\xa3\xef\xeb\xce\xaf\x79\xa3\x5f\x9a\xea\xe6\xe5\xba\x8f\xd5\x06\x18\x11\x30\x17\xf8\xa8\x7d\xf4\xcf\x3e\xd2\x5f\x93\x1b\xe3\xe6\xf3\xca\x51\x43\xbb\x35\x0f\x0f\xd5\xa8\x34\x08\x7a\x22\x8c\x28\x4d\xf9\x63\xb1\xae\xdd\x3a\xed\x91\xa0\x9c\xd9\xef\x12\x8b\xa2\x07\xa9\x15\x5b\xc3\xcb\x80\xa8\x7d\x40\x52\xb3\xbc\xb1\xa7\x3e\x1c\x9a\x9b\x5b\x2d\x39\xf7\x21\x50\x58\x75\xd7\xb3\xc8\xd8\x65\xc6\x91\x32\x7e\x41\xed\x92\x69\x01\x08\xc4\x7e\x7b\x93\x17\xfa\xe4\xa6\xd2\x4d\x1f\x25\xc7\xd1\x02\x00\xd5\x9f\xd3\xd6\xd2\x82\x1f\xbe\x9f\x25\x9d\x04\xb8\x15\xdf\xa7\xf5\x79\x6e\x67\xab\x27\x05\x8a\x38\x71\xd9\x0f\xac\x2b\xb1\x32\xc1\x09\xf5\xa5\xc8\xf8\x51\xc3\x2e\x74\x1d\xbb\xb7\x88\x2b\x53\x5f\x9c\xe4\xc0\x1d\x10\x90\x88\xfc\x02\x30\xc3\xdd\x4f\x8b\xc2\xee\xb1\xf2\xb8\x4a\xcb\xc6\x55\x15\xde\xee\xba\x35\x21\xac\x80\x06\xd4\x39\x3f\xaf\xf7\xe5\xaa\xd0\x88\x4f\xd7\x97\x69\xd1\x6d\xc8\xba\xcc\xcc\x2b\x5d\xb5\x4b\x7b\xb7\x9d\xcd\xee\x65\xc6\xa4\xd9\x82\xcb\xeb\xf8\x30\x59\x32\xa5\x7a\x8d\x6a\x00\x1a\x85\x27\x3f\x04\xb5\x5f\xe6\xfa\xaa\x32\x75\xeb\xe6\x73\x6f\xf6\x8f\xf3\xca\xab\xf4\xfa\xa7\xfc\x7c\x59\xd8\x59\x7c\x07\x77\x18\xec\xae\xed\xd5\x7d\x83\xb4\x32\x97\xb8\x5f\xec\xe5\x1d\x97\xc3\xfd\xa7\xf4\xfd\xbb\xe7\x23\x69\x7a\xfd\x55\x22\xbc\xed\xc3\xd5\x74\xe3\xcd\x5b\x0e\x7d\x50\xfe\xb9\x76\x0c\x71\x9b\x9e\xb1\x82\xd5\x52\x9f\xdb\x5b\x35\x1a\x45\x93\x91\xae\x5b\x03\x36\x2c\x3d\x5c\x96\x53\xea\xda\x93\xb8\x68\xeb\xfb\x05\x33\x68\xfe\xde\xbe\xe2\x8c\xb1\x80\x46\xca\x0b\xbb\xc7\x16\x8c\x1e\x6e\x2b\x3a\xf9\x88\x24\xc6\x22\x8b\xb4\xc8\xcf\xcb\x9f\x4c\x9d\xff\x69\xca\xd6\x72\xf1\x2c\xf4\xf4\xc2\xc8\x90\xea\x70\x6b\xed\xac\x39\x36\xd9\xb2\xc1\x57\x69\x73\x54\x12\x1f\xfc\xf8\xb1\x64\x87\xb7\xfc\x34\xae\x41\x49\xfe\x08\xd2\x06\x81\x13\xd6\xe5\xbc\x09\xe5\xbd\xb6\xde\x37\xd4\x88\xc6\x25\xc4\xb0\x1e\x38\x0b\x6b\x7b\x0f\x33\xa5\xda\x57\x66\xb1\xc0\xbb\x01\x7c\x1d\x77\x98\x8c\x8e\x4f\x20\xd4\x37\x15\xce\x50\xf7\xe6\xb4\x57\xbd\xda\xe5\x84\xa7\x07\xe6\x24\x64\x48\xcc\x68\x1f\x1e\x98\xaf\xd0\xa9\xe3\xd7\x9a\x29\x3c\x3d\x28\x27\x9c\x18\x98\xc9\x3e\x24\x1d\xfd\x4f\xc4\xba\xbb\xf5\x12\x81\x0f\x48\xbe\x9f\xe7\xca\x61\x7f\x76\x05\xf3\x21\x36\xa7\x7d\x39\xea\xb2\x7c\xf9\x9f\xba\x26\x36\x7b\x95\x97\x18\x04\xf7\x50\x8d\x46\xbd\x09\xf9\x33\x9b\x6a\x05\x6e\x20\xab\xaf\x6e\xc7\x22\x2f\xb3\xf7\xe9\x35\x99\x04\x25\xa4\xb0\xd5\x4d\x9b\xaf\x52\xe4\x53\xf0\x74\x1a\xda\x2a\x5d\x09\xe0\x7d\xee\xa0\x83\xdc\x3a\x1c\x10\x0c\x15\xe7\x5b\xab\xf2\xb2\x69\xd3\x72\xae\x55\xad\x2b\x4b\xdc\xca\xb6\x01\x65\x3c\xdc\xfb\xa7\xea\x64\x99\x37\x60\xa4\xb2\xd4\xca\x9c\x7d\xd6\xf3\x76\x8b\x90\xb9\xd5\xba\xd1\x04\xfa\x9b\x37\x6a\x8d\x17\x72\x95\xe9\xb4\x60\x0c\xee\xa9\x58\x00\xbe\xc6\x31\xc8\xb6\x26\x8a\xb9\x60\xb7\x9b\xdb\x65\x8e\xb6\xd0\xf6\xc7\x81\x73\xf4\x02\xec\x51\xd7\x4c\xb3\x10\x45\x25\x91\xdf\xe8\x86\x4a\x40\x56\x0f\x7e\xce\xf4\xca\x09\xe8\xe5\x2f\x7b\xf9\xaa\x6e\x8e\xce\x3e\x8f\x5d\x46\x42\x7f\x91\x56\x0b\xa4\xd6\xcb\x2f\xb5\xcb\x78\x96\x36\x1a\x10\x76\xcf\xf3\x4b\x4d\x10\x22\x0d\xd8\x2c\xb0\x1e\x63\x6a\xa7\x93\x0a\xe7\x77\xae\x7d\x42\xa4\x3c\x78\x71\x70\xb7\x06\xd6\xb7\x83\x4b\x28\xef\x1c\x04\x2d\x09\x60\x86\x20\x41\x08\x32\x84\x79\x00\xc8\xd1\xcc\xc9\x87\x89\x0a\x58\x81\xe8\x1b\x4f\x2c\xb9\x1d\x9d\x24\xd9\xbf\xf6\xc1\x6a\x60\x39\x33\x92\x2c\x3a\x50\x6d\x39\xab\xb2\x6a\xdd\x52\x65\x42\x89\xe1\x05\x50\xcd\x27\x2e\xcf\xbf\x3b\x85\xc9\x4e\x3a\x16\x05\x58\x85\x7b\x84\x0e\xe0\x13\x4f\x34\xf4\x05\x0a\x4a\x04\x42\x1e\x2b\xf0\xc4\x7a\x77\xd8\xb4\xe1\x51\xc5\xf5\x06\xa2\x1e\x7e\x09\xf2\xc4\x3e\x12\xb5\x85\xf2\x5a\xd9\xbc\x1e\x9d\xe2\xf6\xa1\x1a\xa9\x98\x40\xa0\x8a\x36\xbc\x03\x63\x7d\x3c\xa4\x20\x1a\x55\x87\x44\x7d\x28\x2c\xc8\x3e\x88\x36\x14\xa0\x35\x9a\x5a\x37\x6a\x95\x56\x8d\xa5\x91\x3a\x53\x67\x37\xf6\x07\x8a\x80\xd0\x5a\xf5\x52\xd7\x45\x7a\x43\x99\x76\x77\xd5\x92\x19\x29\xb0\x9d\xa4\xaf\xe0\xce\x2c\x4b\x38\xc2\x0f\x68\xd0\x62\x32\xfd\x57\x5d\x42\x34\x6a\xa8\xf6\x6c\xbd\xaa\xbc\x45\x67\xa6\x77\xa9\x18\x12\x1f\x36\x13\x17\xbe\x23\x2f\x2f\xd3\x22\xb7\x83\x1c\xd6\x9b\x97\x0b\xe3\x9a\xc7\x41\xb5\x80\xe9\x45\x0b\x5a\xcb\x54\xe6\xe5\xb9\x73\x84\x0f\xbe\x02\xb7\xa3\xb3\xe0\x5d\x00\x30\xe5\xdc\xfd\x76\x77\x5d\x4b\xe8\xe6\x04\x44\xcd\xb6\x20\x5b\x83\xdd\xfd\x85\xbe\x89\xd4\x70\x39\x86\xe7\xb1\x37\x31\xe8\x1c\x14\x0f\x77\xca\xb7\xe5\xdc\xac\x50\x09\x8b\xc5\xcf\xd7\x6d\xe7\x9d\x1d\x61\x5d\x54\xaa\xd6\x73\x73\x5e\xe6\x7f\x6a\xcc\xbb\x0b\x18\xe3\x80\x7e\x95\x97\xb8\x48\xa7\x96\x7d\x27\x41\x81\x30\xbc\x0d\x07\x42\x00\x2a\x04\x1f\xdc\x68\xee\xcb\x90\x27\xe3\x64\x22\x96\x85\x4b\x03\x96\x0f\xba\x66\x27\x06\x5e\x4b\xc7\xfa\xef\xfb\xb4\xdb\xc1\xf9\x02\x6c\xa7\x9b\xa5\xce\x60\x54\x1a\xfd\xf7\xb5\x2e\xe7\xd8\x7f\x29\x9c\xdf\x0f\x8c\x98\xe5\xbe\x70\xac\x28\xb8\x82\xa2\xcc\x3a\xd9\x00\xb1\x81\x34\xd5\x2e\xb5\x3a\xcf\xb4\x5a\xa5\xe7\xf9\xdc\x9b\x5f\x90\xa4\x1b\x02\x70\x50\xb8\xd0\x56\xbd\x7d\x8d\x28\xa0\xf9\x0a\xdc\x41\xc0\x4f\x7d\x77\xd7\x52\x5d\xb3\xae\xd5\x32\xcf\x32\x5d\xfa\x22\x8c\x9d\xcb\xc2\xa4\xd9\x26\xa0\xfb\x64\x03\xcc\x88\x44\xeb\xfd\x66\xaf\xf7\x16\xcd\x11\x00\x18\x64\x04\x8f\xf0\xbc\x61\x7b\x05\xd6\x4a\x3b\x4a\x82\xce\x2d\x7f\x2d\xcc\x59\x5a\xb8\x8f\xb0\xe5\x81\x31\x3c\x72\x46\xda\x9e\x1e\xe5\x8d\x73\xa4\xa8\xe7\x24\xd1\x26\x00\x0e\xcb\x4c\x83\x44\xd6\x52\x73\x42\x2c\x35\x73\x67\x3d\x75\xcf\xdc\xdc\xde\x62\xe9\xcb\xb4\x79\x83\xd3\xc2\xf4\x2c\x86\xae\x32\x25\xc1\x56\x41\xab\x3c\xa2\x8a\x80\x3d\x22\x21\x08\x24\x20\x93\x7e\x56\x7e\x99\xaa\xb5\xeb\x3e\xd4\xd3\xdb\xf1\xf5\xcb\x87\xdf\xda\xb6\x1c\x5d\x95\x1f\xc1\xfa\xbb\xbd\xb1\x5f\x5d\xa3\x22\x3d\xbf\xa9\x5a\x3c\x2d\xc0\x39\x09\x3b\x0a\x2f\x27\xa4\xf3\xb9\x43\x83\xaf\xf4\xe6\x8c\x06\xcd\x1f\xa6\xc0\xe5\xf5\x52\x77\xdc\x05\xac\x34\xea\xbe\x75\x1d\xec\x37\x10\xb3\xf4\xfc\x27\x63\x2e\x62\xbb\x30\xff\xe1\x53\xce\xad\xa6\x21\x2c\xb3\xee\xa4\xef\xee\xaa\x63\xa2\x69\xd0\x86\x55\xfe\xa7\x2e\xf4\x79\x8e\x30\xac\x76\x30\x7f\x05\x94\x96\x89\x6a\x72\xcb\xba\xe5\x2d\x2a\x38\x1b\x45\xf1\x41\x77\x77\xd5\x4a\xa7\x0d\x92\x39\x8a\x75\xe7\x78\x70\xb6\x7d\xcd\x75\x04\xfa\x02\x77\xa8\x9e\x63\xce\xe3\x69\x9d\xeb\x96\x2c\xa0\x33\x38\xaf\xc7\x91\x3d\x1f\xba\x9d\xfe\xac\xcb\x4c\x43\xd5\x96\xfd\xe8\x76\xc0\x85\xf6\x89\xad\x01\x91\x4b\x8f\x8a\x50\x70\xcb\x1d\x39\xb4\xac\x93\xa5\x66\xa6\xca\x41\xa0\xa5\xc2\xd4\xa4\x99\x6e\xf5\x98\x91\xa0\x01\x09\xfc\xb4\x85\xb8\x5b\x1e\x84\xa7\x59\x93\x23\x17\x73\x73\x69\xed\xb4\x61\x41\x61\x1d\x13\x98\xd8\xee\xc5\x32\xd7\xb0\x21\x31\xc6\x95\x9e\xeb\xa6\x49\xeb\x1b\x67\xda\x1a\x9e\x35\x64\x6b\x81\x40\xb9\x6c\x65\x21\xf0\x5a\x7a\x29\x89\x8c\x9a\x90\xc5\xc6\x96\xa6\x1c\x67\xf2\x66\x06\x2e\x17\x99\xb9\x2a\x47\x93\xc8\x01\x44\x60\x1f\x27\xb4\xe4\x8e\x8a\x4c\xd7\x08\xc2\x73\x95\x17\x05\x28\x07\xc1\xdd\xce\x81\xcb\xba\xe2\x60\xf1\xa7\x01\x9e\xf4\x46\x2a\xeb\x88\x44\xd8\xbc\xec\xac\x98\x93\x79\xdf\xbd\x4e\x30\x0f\x0f\x7f\xa2\xd4\x3d\xc0\xbd\xa2\xbc\x47\x36\xd1\xed\x6d\xbf\x7d\x22\xa3\x1a\x0e\x18\xe3\xf5\x54\x3b\x8c\xd7\x05\xe2\x0a\x53\xd3\x8c\x45\xa8\x38\x81\x3f\x5c\x17\xb3\xcb\xe6\x73\x3e\xb0\xf0\xe0\x1d\x4a\xef\x92\x1e\x52\x3c\x38\xca\xe1\xb8\xba\xe0\x8b\x83\x11\x18\xfa\xc2\x1a\xdc\x25\x0c\x29\xd5\x13\x39\x40\x18\x16\xaa\xef\xc0\xde\xfc\x3b\x88\xc5\xca\x6b\xdc\x7e\x98\x38\x6f\x4b\x8c\x7c\x50\x99\xbc\x6c\xd5\x15\x68\xa4\xbf\x6d\xd5\xca\x52\x3d\x08\x54\x93\xb7\x2a\x2d\x6f\x56\xa6\xd6\x53\xf5\x52\x1a\x73\xe6\x0d\x5b\x2e\x61\xf8\x95\x3c\xc0\xf2\x66\x83\xf0\xc6\x37\x8e\xe9\xdc\xa3\x01\xf0\xdc\x70\xc0\xa4\x75\xe4\xd0\x98\xf5\x99\x70\xd2\xd8\x84\xee\xac\xcc\x9c\x12\x3c\xbb\xa0\x04\x70\x4d\x06\x4f\x56\x05\xf6\xe2\xec\x2c\xca\xd7\x61\xfb\xee\x0d\x71\x65\xa8\x6f\x45\x30\xf1\x43\xf5\x45\x97\xd9\xbe\x9a\xdd\x49\x3b\x3b\x3c\xa3\x08\x4f\x5c\x48\x32\x33\x09\x44\xee\x37\x53\x50\x3a\x60\x2d\xde\x03\x33\x15\xe0\x99\x73\xdc\x0b\x94\x2b\x38\x2f\x65\xd9\xc6\x20\x43\xfc\x7d\x8a\x20\x09\x32\xa4\x80\x8f\x82\x22\xe2\x01\xc2\x9c\xbe\xcb\x2f\xb0\x14\x5c\x9e\x51\x48\x17\x32\xb5\x67\xa3\x1a\xf4\xfb\x19\x84\xc8\x6d\xa9\x75\xd2\x44\x9f\xec\xaa\x90\xd7\x83\xd6\xd5\x69\x96\xaf\x9b\xdf\xd4\x53\x42\xcd\x96\x6f\x7f\x87\xb7\x71\x53\x17\x69\xfd\xe2\x2a\xbd\x19\x43\xca\x89\x02\xcf\x64\xd9\x4e\x78\x31\x65\x5c\x05\x46\x2b\x15\x01\xe0\x24\x8c\xef\xb5\x3d\x59\x7c\x86\x1d\xaa\x1f\x1d\x84\xb2\x1b\xf7\x15\xcd\xd7\xf1\x63\x6b\x2a\xd9\x8f\xec\x5a\x7d\x67\xff\xdb\xb6\xe9\xbf\xb3\xff\x3d\x53\x4f\x66\xea\x3b\xf5\x64\x26\x62\xcd\xc8\x45\x0f\xc5\x48\x59\x65\xdb\xe3\x84\xd8\x4f\x29\x2c\x53\x39\x38\x57\x80\x1b\xda\x8f\xb4\x4e\xab\x22\x1b\xc2\xb9\x57\x6c\x03\xc7\x2b\x33\x58\xb4\x92\xb2\x76\x23\x54\x60\xc1\xe1\x9a\xfd\x02\xdd\xdb\x57\x10\x75\x01\x40\xf2\x82\x6b\x55\xcf\x3f\xbb\x60\x21\xbd\xda\x89\x16\xef\xd3\x43\xf5\xfd\x6c\xa6\x9e\x8b\x35\x8f\x77\x23\x89\x25\xd1\x59\x9d\x12\xed\xbc\xd3\x42\xb6\x02\x08\xdc\x47\xaa\xf4\x5c\xff\x36\x90\xde\xce\x7f\x4f\xf2\xdf\x03\xcb\x34\x6f\x99\xd1\x37\xe1\xe4\xce\xd9\xb5\x1c\xea\x23\x1d\x51\xf5\x12\x66\xf0\x9e\x6a\x74\x99\xf5\xaf\x2a\xb9\x27\xbb\x14\x03\x84\x59\x1c\x40\xe1\x51\x14\xd4\x80\x97\x9e\xdf\x1c\x76\xf3\x03\x7e\xb1\xe3\x57\x95\x7a\xd4\x8a\xb6\x3e\x7e\xac\x78\x89\xb8\x8d\x83\x06\xad\x4f\xed\x6c\x86\x0e\x16\xc8\x3e\xcc\x57\xd3\xb9\x31\x75\xd6\xd8\xeb\x6f\x38\x22\x13\x35\xb2\xc3\x3d\x62\x98\x07\xc9\x56\x60\xd9\x6c\x23\x13\x51\x07\xff\x31\x01\xbb\xaa\x63\x0c\xd2\xd1\x92\xd4\x46\x79\xcc\x93\x00\x24\x2c\x04\xde\x53\x12\x43\x45\xd4\x77\x7f\xa5\xa2\x66\x44\x60\x1f\xa8\x79\x00\xbd\xcf\x55\x6c\x79\x71\x0c\x21\x72\x5f\xcb\xff\x29\x24\x3f\xd5\x0d\xc9\x3f\x1e\x42\x16\x13\x1a\x78\xe9\xda\x3d\xcc\x98\xdd\xb1\x98\xde\x9f\x9d\x1b\x17\xf2\x3c\x2d\xe7\xba\x18\x4d\x64\x16\x8e\xd6\x70\x7c\x53\xce\x09\x76\x05\x6e\x59\xba\xbd\xd2\xda\x1e\x0d\x17\xda\x07\x22\x41\xa1\x70\xad\xd3\x82\xde\x11\xbc\xe5\xee\xae\xbd\x75\xa4\x13\x86\xbf\x60\x15\x2a\xc8\xd6\xe1\xfa\x4a\x32\x37\x57\xc1\xb4\xa7\x8d\xf8\x73\xc3\x86\x76\x4e\xfb\xe8\x62\x86\xda\x07\xbf\xee\xa5\xf6\x00\x0d\x6a\x26\x2a\xeb\xf1\xf4\xe7\x61\x8d\x8d\x68\x7a\x52\xbf\x43\x98\x21\x07\x53\x17\xb8\x1a\xf9\x06\xb3\xf5\x84\xd7\xa7\xee\xee\xaa\x77\x10\x01\xdb\x72\x51\x57\x4b\xad\x0b\x0e\x47\x65\xd9\x3d\xf0\x7a\x6e\x0d\xf8\xd1\xd9\x11\xc5\x96\x93\x33\x38\x0d\x9d\x29\x41\xea\xd5\x37\x50\xc0\x8c\x41\xa1\x1b\x38\x3c\xec\xda\xaf\x36\x95\xe0\xf0\x7a\x4a\x7b\x75\xf4\x1e\x4e\xbf\xe3\xee\xf0\x3f\xa8\x44\x72\x11\xc0\x15\xaa\x48\x80\x8c\xe6\xfb\xfa\x52\xd7\x7e\xce\xb9\x6e\xaf\x77\xea\x9f\x71\xcf\xb5\xb1\x34\xda\x83\x34\x1c\x76\xde\xbe\xc3\x73\x67\xc6\x6d\xc9\x42\x45\xa8\x13\x41\x83\x06\x72\x3f\xea\xdc\x30\x5f\x80\x1e\x83\x4d\x6b\x2a\x44\xc7\x98\x38\xa1\xef\xd7\x95\x61\x00\x22\xf6\xe8\xd2\xb1\x0e\x07\x3d\xc5\xd2\xd1\x3e\x34\xf0\xaf\x18\x90\xd5\x0f\x3b\x0b\x59\x4d\xb5\xdf\xb9\x1b\x03\xa6\x2c\x26\x00\x25\xe8\xd7\x35\x18\x78\x16\x5b\x23\x5a\x1c\x60\xac\x8d\xc0\x4b\x38\x2f\x71\x1e\x62\x9d\x3f\xce\x6f\x5e\x56\x22\xfc\xdf\x50\x97\x20\xc8\xdf\x74\x9e\x16\xdd\xc5\xe9\x0a\x18\xb8\xfa\x53\x18\xd2\x24\x4e\x0e\x17\x95\xfe\xf4\x10\x8e\x2d\xcc\xc0\x86\x07\x43\x0d\x44\xa1\x62\x7f\xdb\xce\x8a\x75\xbd\x21\x2b\x19\x54\xb9\x9c\xe4\xd4\xe4\xa4\x68\xe0\x74\xb0\xd5\x71\xbd\x79\x4b\xdf\x03\x60\xe4\x45\x60\xdd\xc6\xf2\x39\xb0\xea\x5f\xd8\xd2\x41\x6a\x83\xbe\x1b\xe8\x70\x0c\x1a\x3c\xf0\x33\x00\x59\xd3\xd2\x5c\xa9\x2a\xad\xd3\x95\x6e\x75\xcd\x91\xb5\xd0\xe3\x63\x04\x61\xb3\x46\x69\x96\x8d\x76\x29\x42\x67\xb3\x3e\x6b\xeb\x74\x6e\x99\x68\x53\xab\x91\x3d\x75\x46\x04\xe7\x9e\x9e\x9f\xdb\x41\xcc\x2f\x41\x61\x8a\x08\x26\xbb\xbb\xa0\xae\xcb\xe7\xa0\x3c\x6d\x74\x8b\x34\x6d\xad\xe1\x12\x0b\x12\xdf\x8c\x82\x78\xed\xc0\xd9\x88\xbe\x28\x4d\x32\x51\x00\xca\x68\x0b\x28\xc0\x91\x3a\xa5\x90\x40\x98\xc0\xde\x18\x2d\x59\x04\xed\x18\x08\x9c\xc8\x95\x67\x65\x32\x4d\xa3\xd1\x60\xf4\x0e\x3c\x79\x10\x32\x2f\x2d\x4c\xa9\x85\xa3\x22\x16\x46\xea\xeb\x89\x2a\x27\x76\x34\x26\xa2\x27\x42\x16\x25\x10\x6a\x01\x16\xcd\x05\x8a\xb3\x03\x28\x2e\x3d\xf0\x88\x83\xe6\xa3\x05\x62\x12\x1a\x55\x19\x46\x3a\x2d\x0a\x08\x3d\x68\xc7\x05\x47\xd3\x39\x4c\x61\x5f\x32\xa3\x01\xcd\x09\xbc\x98\x52\x6e\x32\xac\x5e\x2e\x64\xa5\xdb\xa5\xc9\xa6\xfe\x1a\xc3\x6e\x43\x53\x4c\x2c\x5a\x85\x35\x04\xa0\x2a\xac\x86\x03\xd9\x27\x5c\xf9\xd1\x9e\x1c\x47\x24\x21\x35\x5d\xb0\xbd\xef\x41\x51\x14\xee\xbb\x01\x70\x5f\x69\x19\xa3\x75\x7d\x5c\xa5\x73\x1d\x01\x21\x3a\xb7\x17\x56\xd1\x0a\xdc\x3e\x40\xec\xb3\xdf\xa1\x25\x2f\x16\x2d\x1a\x74\x46\xaf\xe8\xce\xee\x63\x47\x52\x45\xe8\x5b\x18\x78\xd6\xac\xc0\xe1\x7c\xf7\x3f\xfe\x68\xbe\xdb\x4d\x3e\xcd\x4e\x27\xd1\xa0\xc2\x18\x8a\xd5\x8c\xf1\x63\x8f\x29\x52\xac\x2b\xc7\x07\x1b\xf3\xb9\x1d\x2c\x2b\x8d\x77\x69\xda\x28\x9c\x5f\xff\x52\x08\x8b\x88\xe6\x6f\xdc\xa0\xf5\x97\xef\x01\xa2\xa7\x85\x5d\x64\x07\x18\x91\xce\xdb\xc8\x07\xe5\x63\x58\x1b\x80\xa8\x17\xaf\x9f\x21\xb6\x93\x94\x46\x3e\x0a\x36\x42\x2c\x0c\x94\x4b\x2a\x10\x70\xc8\x6e\xc2\x57\xc9\xa3\xd9\x8a\x9c\x03\x15\xaa\x0e\x64\xd7\x07\xd1\x31\xcb\x9d\xbd\xa4\x77\x85\x84\xab\x39\x9a\x8b\x38\xfe\x15\x37\xcb\xee\xce\xfe\xb1\x77\x0b\x74\x5b\x2e\x6e\xef\x4c\x37\x30\x9b\x4c\x16\xef\x29\x74\xe7\x21\x85\x92\x7d\x03\x97\x5d\xa2\x41\xf4\xbd\xcd\x5d\x9a\x2b\x9e\x80\x20\x89\x83\xe4\x9c\x05\x0b\x3d\xd9\x12\xf8\x38\x65\xeb\xf6\xc9\x68\x34\x61\x37\xb5\xae\x01\x53\xe8\x2a\xc8\x72\xef\x40\x55\x24\x40\x1a\x64\x3b\x76\xdd\x84\x1d\xa8\xfc\x40\xed\xec\xe4\x89\xfa\x62\xeb\xd9\x3e\xe4\x2f\x07\x61\x53\xb6\x0f\xd5\xe8\x8f\x76\x74\xe7\x91\x1a\x4c\x03\x3a\x28\xdf\x05\x37\xe1\x3e\x4b\x43\x3b\x22\xa8\x7c\x87\xef\x95\x5b\x72\x3b\x50\xa6\x47\x87\x11\xb1\x48\x42\x5c\x5c\xbc\xe3\x91\x01\x86\xcf\x47\xee\x69\x78\xdf\xa3\x9f\x43\x3b\x72\xb4\x0d\x9c\x10\x29\x86\xfa\x29\x57\x20\xa6\x43\xe5\x67\x60\x9e\xb5\xbb\xab\x5e\x13\x74\xe0\x32\x6d\x27\x0e\x87\x0f\x78\x30\x75\x95\x36\x8c\x28\x72\xb5\xcc\x5b\x0d\xc3\xa0\x52\x3c\xf2\x19\x93\x17\xd5\xc9\x98\x0f\xef\xaa\x39\x5c\xc0\x50\x7a\x40\xb8\x3c\xba\xcc\x30\x4d\xda\xe2\x60\x4e\xc9\x30\x81\xe7\x18\x6c\x98\x66\x07\xf0\xe3\xa9\x03\x12\x0f\x60\x45\xe1\xa3\x44\x73\x95\x78\x9a\x61\x8e\x4f\xf9\x37\x7b\xa7\x82\xe6\xf8\xcb\x2e\x5e\x96\xed\xc9\xea\x40\x9b\xa7\x0c\x9d\xf3\x74\x60\xa8\x23\xaf\xca\xca\xa0\xc5\xd5\xc6\xe9\x71\x39\x06\x71\x90\xf3\x6f\xf6\x26\xa1\xa0\xc2\xbe\x80\x3f\x89\xcf\x0e\x2a\xca\xae\x6c\xca\xa9\xf5\x72\xd2\x3b\x9d\x69\x66\x84\x52\xf5\x85\x4d\xfe\xf7\xd5\x99\x31\x96\xaa\x81\x31\xc4\x27\xb4\x69\x3a\xbd\x23\x9b\xb4\x89\x6a\x0c\xdb\xa5\x4d\x90\x41\xa8\xd2\xa6\x85\x55\x78\xa5\xd5\x45\x69\xae\xd4\x95\x9d\xb0\x8b\x1c\x67\xcf\x61\xf9\x37\xe4\x20\x5d\xe5\x3a\x63\x00\x08\x58\x2c\xab\x34\xd3\xca\xac\x5b\x65\x16\x53\x1f\x4f\x17\xd2\xf1\x82\x14\x81\xcd\x75\xfb\xce\x7d\x1e\x97\xfa\xca\x3f\xe1\x90\x87\x99\xe5\xf7\xc0\x4c\x32\xad\xaa\xe2\xe6\x44\x5f\xa3\x67\x1c\x70\x18\x79\xd9\xe8\x1a\xf8\xb9\x4c\x17\x1a\x7e\x00\x76\x3f\x22\xbe\xf6\xf3\x5f\xfd\x91\xf7\x19\x33\x0f\x2f\x2f\xba\x40\xdb\x07\x81\x7b\xed\x19\x18\x30\x5b\xc1\xe2\xd0\x41\x33\xb0\x81\xb1\x27\xa3\x21\x50\x3b\x7b\x84\xd9\x6f\xa3\x2d\x0f\x48\x0c\xfe\x17\xca\x92\x9a\x22\xc7\x87\x17\xeb\xd6\x8c\xb9\x27\xc9\x44\xad\xd6\x45\x9b\x7f\xa4\x4a\x68\x73\xef\xee\x22\x9b\x5c\xa5\x96\xdf\x55\x1f\x88\xaf\x85\xa8\xf6\x1f\xc4\x84\xf1\x90\x28\x53\xe2\x2e\x55\x80\x14\x17\xc5\xbd\xc4\x1e\x3c\x7e\xac\x3a\x7b\xcf\x1e\xe4\xf2\xc0\x15\x53\xc3\x01\x84\xe1\x09\x39\x89\xcf\x26\x2f\xc7\xa3\x3f\xca\x11\x20\x8c\xb9\x2e\x84\x4a\xc9\x4e\x15\xff\xb3\x53\x8e\x17\x00\x07\xd0\xb5\xc1\x40\x7c\x3a\x75\xef\xfb\x8c\x0b\xfa\x8b\x3c\x50\xf9\xf6\x76\x22\x04\xd8\x5f\x44\xa1\x78\xcd\x81\xe9\x75\x73\x31\x8e\xca\xf9\x94\x9f\x76\xa0\x90\xef\x42\x78\x66\xc8\x27\xba\xd0\xed\x30\x86\x16\xe5\x53\xb0\xdf\x0b\xc7\xf7\x3b\xe8\xf5\x2a\xad\x7c\x25\xf2\x4a\x28\x55\x24\x9f\x8a\xd3\x03\xf6\xaa\x0e\xf1\xb6\x40\xee\x03\xdb\x05\xd7\x10\x05\xeb\x70\x71\xd2\x10\x60\x8d\x96\x0c\x6a\xe5\xaf\x70\x97\xc3\xca\xd2\x97\xba\xbe\x09\x56\x4f\x44\xc8\xbb\x7d\x45\xbf\xed\x6f\xf6\xd8\x73\xfb\x9b\xbd\x9d\x9d\xa4\x27\xce\x42\x1f\x0d\x17\x60\x5f\x75\x00\x44\xdc\x1a\xf7\xaa\x35\x63\xcf\x98\xe2\x2b\x02\xe0\x0f\x97\x1d\xd1\x03\x08\xd4\x46\x3f\x01\x18\x79\x77\x57\xa1\xb5\x00\xbe\xe6\x8b\x10\xb1\x22\x58\xb9\x25\xf8\xf6\x27\x89\x64\xe1\x27\x20\xae\x51\x49\x3d\x32\x66\x47\x0b\x9c\xd9\x1e\x30\xfe\x30\xd7\xb2\x52\xf7\x59\xd4\x0a\xbd\xb3\x75\xb6\x86\x6a\x74\xf8\xe8\x01\x13\x4b\x9f\x13\xb9\xc0\xe1\x2d\x78\xb1\x17\x4d\xeb\x57\x4a\x12\x3a\xb4\x07\x4d\x1d\xdc\xd2\x7c\x9a\x7c\xc5\x4e\xef\x8e\x9d\xeb\x8c\x18\xc0\x00\xd1\x54\xc9\x55\x49\x3a\x04\xb0\xe0\x0a\x17\x2b\x83\xb9\xd9\x19\x06\x11\x92\x3a\x54\x5f\x6c\x99\xfb\x0a\x03\xd1\xb4\x66\x5f\xb5\x86\xcf\x3c\xb1\x69\x9e\x8b\x07\xbb\xb6\xd4\xff\x94\x7b\x1e\xc7\xe5\x54\xed\x7b\x62\x3c\xa8\xe0\x62\xdc\x70\x22\xe7\xb7\xb7\x4c\x39\x9f\x33\x5d\x57\xfb\xfe\x14\x10\x36\x8f\xe0\x8e\xbe\x86\xd0\xaa\x8e\x79\xc3\xbe\xaf\xd2\x0b\xed\x8c\xd8\x51\x1a\x20\xfa\x88\xe3\x89\xa2\xb3\x77\x29\xab\x03\xd1\x2f\xfd\x67\x9d\x66\x23\x44\x9e\x8a\x72\xdc\x39\xbe\x14\x67\x45\xac\x3c\x62\xb1\xdb\x3a\x3f\x3f\xd7\xf5\x6b\x72\xac\x0f\x8e\x4e\x62\x6c\x51\xb2\x8e\x32\xb9\xbf\x21\x1c\x30\x9b\xd9\xf7\x4c\x10\x60\xa0\xca\xe9\x72\x89\xda\x9b\x0a\x6f\x02\xc4\x85\x0e\x1c\x92\x87\xfd\xe3\xc6\xe7\x70\x37\xec\x2e\xcc\xde\x18\xa0\xb7\xfc\xb1\x0e\x65\x66\x8c\x0a\x57\x9d\x99\xb4\xce\x5e\xa5\x6d\x0a\xb1\x44\xc3\x57\xd3\x73\xdd\xda\xbf\xe3\x91\xe5\x20\x46\x89\x3c\x09\xdd\x89\xa5\xa7\x91\x22\xc4\x93\x9a\x9e\xf0\x8e\x10\xf2\xd1\x9b\x7d\x7b\xff\x43\x81\x55\xb1\x2e\xdf\x96\x47\x55\x17\x5c\xd8\x41\x0b\x76\x79\x1a\x6c\xd2\x44\xcd\xf8\xae\x4a\x6b\xcd\x5b\x97\x74\x38\xfd\x10\xd6\x69\xe3\x64\x7f\x11\xcc\x44\x5a\xaa\x6f\x19\x6c\xe1\x5b\xbb\xaa\xec\x25\x54\xc3\xa9\xe0\x19\xab\x7c\xb5\xd2\x59\x9e\xb6\xba\xb8\xe1\xa2\x55\xaa\x6a\x8d\xb7\x99\x2d\x3f\x3a\x3c\x12\x01\x7c\x03\x00\xd2\x89\x8f\x02\x0b\xa6\x27\x9a\x78\x1c\x8b\xb3\x03\x35\x37\x74\xde\x08\x9c\x90\x7b\xce\x9a\xd3\xad\x9e\xbb\xc2\x1c\xf8\x9e\x19\xa0\x9e\x8e\xf3\x90\x31\xfa\x94\xdb\x3a\x4e\xc3\x4b\x45\x74\xcf\x40\xc1\xb6\x29\xdb\xbc\x0c\x8c\x15\x40\x06\xc7\x31\x77\xdf\x9b\x4c\xbf\x68\xc7\xb1\x3e\xce\x5f\xa2\x83\x28\x91\x04\xf1\x67\x32\x1d\x0e\x68\x0f\x2c\xcc\x67\xe4\x82\x3e\xab\xa7\xaa\x9b\xde\x31\x42\x9f\x25\x23\xf4\x25\x20\x18\x0e\x2d\xa6\x27\xbb\x5d\x15\x2f\xda\xf1\x67\x8a\x48\x2a\xd9\x33\x25\xdb\x1d\x09\x43\xa3\x01\x9a\x38\x91\x95\xc8\x2d\xaf\x3c\x8a\x2c\x52\x03\xee\x2a\x68\x0e\xee\xac\xe0\x8c\xef\x7e\x47\x21\x5b\x8c\x33\x1c\xcf\x96\x14\x83\xcd\x26\xe1\xe5\x30\x49\x82\x51\xfa\xfa\x0e\x06\x47\x9d\x17\x17\xc0\xde\xeb\x92\xf6\xa0\xf5\x44\xde\xe3\xe6\xf6\x21\x06\x9a\xea\xc6\x92\x1b\xb8\x52\x86\x66\x8f\x14\xf4\xe4\xd3\xe9\x44\x06\xaf\x19\xc6\x6c\x1c\xba\x82\xfb\x0b\xb8\x90\xc8\x76\xd2\x7f\xca\xc5\xce\x08\x52\x73\x6c\x8c\x2f\xa8\x88\xde\x17\xd1\x47\x66\x04\x79\xea\xdf\xb1\x56\x9b\xa8\x9b\x88\x29\xe2\x8a\x22\x57\x3b\x3b\x73\xf0\x01\x37\x15\xde\xa9\x5d\x22\xa7\xf5\xf6\x6f\x5c\x58\x07\x01\x9a\xf7\x05\x99\x06\x0a\x7d\x02\xb5\xed\xd3\xdf\x70\x9c\x89\xaa\xff\x88\x96\x72\xef\xd3\xf3\x7c\x3e\x5e\xe4\xba\xb0\xf7\x4c\x87\xc8\x82\xe3\x04\xaf\xa7\x8d\x6e\x5f\xb4\x6d\x9d\x9f\xad\x5b\x8d\x1e\xa8\x00\xbc\x0a\x2a\x8f\x91\x59\x2c\x60\x03\x0c\x26\x4d\xab\xbc\x05\x80\xb1\xfb\x52\x07\x88\x32\x8f\x1e\x89\xb6\x84\x47\x27\x58\xfd\x9f\x90\xd1\xff\x58\x2e\x12\x7b\x68\x16\xed\x58\x22\xe4\xc8\xc0\xa7\x23\xc6\x6b\xde\x57\xe9\x59\x63\x8a\x75\xab\x0f\x14\x62\x8c\xee\xab\x9d\x3d\xbd\x3a\x50\x55\x9a\x65\xe0\xdf\x31\x3b\x50\x57\x79\xd6\x2e\xf7\xd5\x5e\x75\x7d\xa0\x96\x1a\xbd\x2f\x20\x91\x59\xb7\x76\x2a\xf6\x55\x69\x4a\x1f\x5f\x3c\xcb\x2f\xb9\xfe\x2c\xbf\x1c\x4d\xd4\xa7\x56\x9f\xba\xaa\x2d\x8f\xbc\x28\xcc\xd5\x3e\xb5\xff\x40\xf9\xc6\x30\xac\xb4\xab\xf2\x7b\x59\xe5\xac\xba\x3e\x18\x25\x0e\xfe\xcd\xbb\x3b\xe4\x8d\xba\xd0\x55\xeb\x0a\xd2\x99\x2a\x75\x5a\x4b\x19\x58\x6b\x18\xec\xd6\x43\x51\x2f\xd2\x79\x8b\xb2\xac\xbc\xfd\x96\x84\x2f\xa8\xd8\xce\xf0\x82\x74\x99\xeb\x2b\x44\x96\xb3\x4c\x11\xb0\xc0\x52\x1d\xbd\xbb\x0b\xce\x17\x60\xe4\x40\xd5\xa0\xd0\x04\x32\x4e\xd5\x51\xa9\xae\xc8\x56\x1d\xc4\x32\x57\x75\x5a\x1d\x9a\xc5\x82\x98\x00\x67\xca\x89\xd7\xb0\xc2\x5c\x4d\xd5\xb1\xc0\xf0\x84\xae\x5d\xe5\x99\x06\x07\x40\x80\x73\x8f\xc3\x94\xb6\x9a\xec\xc6\xaf\xd8\xb5\x73\x6f\x36\x9b\x55\xd7\x23\x19\x5c\x1b\x10\xee\xe5\xf2\x02\x1f\x2c\x5e\x82\x6c\xd0\xfa\x76\xa1\xce\xc0\xb2\x00\x66\x7c\x67\x47\xe5\x47\xc7\x6a\x91\xe6\x45\x83\xc0\x7d\xba\x54\x17\xfa\x06\x18\x2e\x35\xce\x9b\x66\xad\xd5\xff\xd8\x7b\xf2\x97\x7f\x65\x56\x2b\x87\x08\x5e\xbe\x45\x67\x0c\xce\x3e\xda\xab\xae\x55\x63\x8a\x3c\x53\x67\x45\x3a\xbf\xc0\xb6\xf5\x6d\x3d\xe4\x68\x5d\x6c\xcf\x4b\x61\xf4\x5e\xad\xcf\x8a\x7c\x5e\xdc\xb8\xf8\x18\x2f\x3e\xbe\x9d\xaa\x0f\xa6\x25\xf7\x18\x54\x73\x1d\x55\xe3\x45\x02\x81\x4f\x40\xb5\xf7\xad\xed\xa8\x5a\x00\xa8\x53\xe9\x15\xbb\x13\x55\xe9\x7a\x61\xea\x15\x7a\x2d\xe6\x6d\xa3\xfe\x57\xbb\xcc\x9b\xff\xe5\x55\x9d\xdf\x4e\xbd\x5c\x0e\x80\x09\x5b\x12\x95\xad\x2a\x7b\x45\x04\x19\x9d\x59\x30\x36\x20\x56\xde\x4c\xd5\x7b\xd3\xb4\x24\x43\xdd\x72\xba\xb7\x86\xf0\x25\x33\x06\xec\x7f\x65\xe6\x80\x33\x0b\xaa\xc7\xb4\x68\xec\x0d\xfd\xb3\x9e\xb7\xb4\xea\x00\xe4\xd5\x6b\x77\xab\xda\xb4\x06\x61\x69\x2d\x89\x3f\x4b\xe7\x17\x57\x69\x9d\x35\x88\xae\xde\xb2\x5f\x44\x5a\x82\x08\x6f\x6e\xca\x4b\x5d\xe6\xba\x9c\x6b\xe9\x81\x9a\x66\xd9\x6b\x68\xeb\x7b\x6c\xd2\x7f\x01\xc8\x25\xe2\xa0\x17\x55\x27\xa9\x7f\xf9\x25\x06\x89\x74\x7d\x71\x66\x15\x02\x9d\x71\x5f\xa4\x14\xfe\x6e\x01\xf2\x27\xe2\x5d\xf9\x48\xaf\x81\xf3\x61\x14\xfb\x18\xe3\xc1\x35\xba\x45\x80\x44\x51\x0e\x76\x86\xdc\xea\x43\x39\xb4\x77\x8b\x95\xfe\xb2\xe0\x7a\xef\x1d\x4e\xc9\x79\x53\x4a\xa6\xa3\x2f\x96\x89\x44\x8f\x79\xe7\x56\xa2\x1e\x1d\x2a\x04\x77\xec\x51\x97\x75\xb2\x2b\xf6\x69\x0d\x2b\xd8\xe0\x2b\x94\x9b\x32\xe0\x6d\x4c\xe0\x59\x33\xe9\x71\x21\xb2\x35\x25\xf4\x55\x22\x0c\xdc\x85\xb6\x4a\x98\x60\x84\x19\xf0\x72\x3b\x42\x6f\x28\x2e\x94\x44\x53\x34\xe2\xe7\x83\x23\x9e\xa8\x2f\xc2\xad\x6c\x1a\x75\x9a\x8c\x52\xec\x45\xce\xcc\xe5\xac\x87\xb9\x32\x33\xe7\x9a\x9c\xc3\xa7\x48\xbd\x4a\xab\x09\x9d\x64\xc2\xe0\xdb\xb9\x94\x4e\xc9\x95\xf4\x93\x8b\x24\x33\xb2\xec\x06\x5c\xe5\xd7\x25\x48\x8b\x47\xa7\x63\x0f\x26\xb6\x4a\xab\xc4\x75\x0f\xaf\x66\x2b\x73\xa9\xfb\xaa\x0d\x17\x12\xb8\xa6\x1e\xf6\xd4\x1c\xb3\xf7\x82\x5d\xb3\x79\x02\xe7\xa9\x88\xa1\xb7\xdf\x3f\xe5\xb0\xb8\x56\x69\x65\x6f\x33\xf4\x66\x5a\x02\x7c\x2f\xbc\x0e\x59\x78\x28\xb2\xa9\x80\x17\xce\x27\x6a\x4f\x32\xe8\xe1\x2d\x33\x62\xd3\xfd\x10\x93\x47\xec\xbe\xa0\xb1\xdc\xeb\xa6\xd2\xf3\xc8\x99\x3d\xba\x1b\xd9\x14\xd3\xd6\x5c\xe8\x52\x3d\x87\x07\x25\xb7\x39\xdf\x9b\xc6\xe1\x66\xb3\xe9\x92\xf8\x22\x80\x41\xc2\xec\x48\xc2\x31\x13\x83\xfb\x51\x2b\x1b\xb5\x4a\x6f\x80\x5e\x9f\x69\xb4\x5e\x58\xac\x8b\xe9\xc8\x2f\x6a\xbc\x14\x1d\x1b\x7b\x31\x1a\x8b\xd9\x71\x0e\xc1\x7d\xd2\xa2\x2f\xb6\x05\xfb\x0a\xdd\xc4\xed\xff\xc7\x95\x9e\xef\x2b\xee\x7e\xfa\xf7\xb5\xde\x77\xa4\x43\x38\x92\xe1\xa7\x7e\x01\x54\x55\xe7\xa6\xce\xdb\x9b\x7d\x47\x3c\x64\x4e\xfe\x0a\xae\x28\xb3\xbb\xde\x22\xbc\xc4\x81\x1a\x2f\xcd\x88\xf0\x8d\x2b\xc7\x09\x90\x83\xcd\x40\x0e\xce\x04\xdc\x29\x21\x18\xd8\x1b\x0f\x82\x16\x89\x85\x7f\xcf\x62\x08\xd7\x40\x17\xd4\x80\xbf\xf0\x68\x87\x3b\x84\xdf\x6e\xd8\x22\x9c\xa4\x0f\x7b\x5e\x05\xc1\xbf\x38\xa5\xdd\x1e\x3c\x65\x2e\x19\x85\xce\x02\x79\xbe\x5d\x94\xb7\xb7\x8a\x14\xeb\xf0\x28\x90\x03\x40\xba\xbf\xae\xdd\x0e\x0b\x7b\xa9\x84\xa3\xf9\xd0\x36\x23\x17\xda\xfe\x11\xef\x8e\xfa\x37\x3d\x7b\xd4\x6f\xcf\x50\x53\x91\xd0\x2e\xf5\x97\xd7\xbe\x89\x29\x27\x2a\xcb\xeb\xae\xe5\x12\x0f\x04\x43\x26\xe4\x10\xff\x4a\x76\x3c\xfa\x12\x19\x1b\x70\x7e\x08\x67\xe2\x6d\x9c\x30\xba\x89\xdc\xd1\x52\x2c\x64\x29\x2e\x5e\xa5\x2d\xc9\x95\x26\x47\xca\x1b\x6a\x60\x11\xf6\xff\xe7\x64\x2c\xb5\x2f\xcc\x28\x7a\x43\x57\xe6\x0d\xdc\xdd\xf9\x88\x98\xa8\x32\xf1\x16\x00\xee\x13\x98\x71\x75\x06\xe3\x2e\x58\xe8\xa4\xc7\x67\xad\x48\xdf\x88\x2e\xcd\xd5\x43\x57\xba\xbb\xa4\x73\xcb\xc4\xed\x9a\xe3\xa5\x42\xc8\xea\xa1\x15\x3f\x7c\x71\x57\x7d\xb1\x28\x45\x58\x03\x19\xd3\xb3\xab\x45\x51\x5f\xab\x91\xf1\x59\x38\x3a\xb7\x33\x1e\xd1\x65\x46\x7a\x14\x0e\xf6\xe4\x26\x34\x0c\x08\x4b\x7b\x41\x06\x85\x25\xb5\x87\xda\x51\x63\xd4\x75\x70\xdc\xa2\x44\x6d\xab\x3d\x51\x54\x20\x10\x83\x26\xa0\x50\x0c\x22\xc4\x6e\x6f\x7f\x4e\x02\x1a\xd9\x99\xfa\x6f\xf6\x26\xea\x33\xd8\xf0\xc9\x48\xac\x0e\xd0\xf9\x67\x39\x4f\xdf\xec\x45\x33\x25\x85\x62\x0b\x35\x66\x95\x11\x07\xaf\x0a\x65\x96\x87\x87\xbe\x40\xa1\x23\x74\xef\x2c\x45\xc2\x81\x46\xc9\xe4\x2c\x6e\x79\x9f\xad\x81\x6f\xd6\x44\xe5\xd2\xe0\x00\xd5\x25\x41\xe1\x76\xca\x28\x54\x65\x66\x4a\xb2\x52\x97\xbd\x8e\x83\x60\x0b\xe9\xe7\x33\x25\xa2\x57\x53\x8f\xbb\x03\xd9\x11\x8f\x81\x69\xa4\x34\x74\xf7\x93\x1f\xa5\x8d\x86\x32\xb7\xc3\x15\x8d\xb9\x8b\x3b\x0f\x56\xd4\x3d\x9a\x0b\xe9\x44\x1e\x92\x82\x88\x30\xee\xee\xaa\x37\xba\x25\x97\xe4\x2a\xad\x1b\x30\x9c\xb7\xdc\x08\x3a\xf1\xa2\xbd\xab\x13\x8d\x4f\xd5\x2f\x8d\x65\x18\xe0\xeb\x32\x9d\x5f\x34\x5c\x0a\x5c\x32\xaf\xd2\xb2\x25\x85\x6a\xa5\xe7\xad\xb7\xc3\x44\x33\xc8\x71\x93\xde\xe0\x25\x8d\xee\x89\x96\xe5\x9d\x32\x53\x7b\x62\xab\x7d\x21\xcc\xb4\xc9\xa7\xa5\xd6\xf3\xbc\x11\x14\x99\xb9\xb2\xf4\x42\x43\x16\xa2\x5b\x41\xe2\x98\xdf\xb6\x73\x03\x89\xe5\x6d\x89\xc2\x2b\x3f\xb0\x7c\x16\xd5\x25\x2e\x8b\x9c\x4f\x51\x17\x64\x3a\xb9\xa9\x74\xdc\x17\x5f\x05\x79\x0f\x91\x9b\x8b\x27\xc9\xc2\xdd\x17\xc9\xc8\x4d\x01\x5b\x8e\x7a\x80\xc8\x38\xd4\x1e\x16\xf2\x06\xb9\x49\x1a\x2f\xca\x20\xa0\xfe\x43\x35\x9b\x50\x9c\xd1\x43\x35\xc6\x82\x85\x0a\x21\x51\xbb\xea\xc9\x04\x63\x47\x61\xe4\x6c\x49\xbb\x6f\x2a\x79\xd1\x9a\x3b\x43\x05\x45\x37\x55\x2c\xee\xd3\x93\xd3\x50\xd9\x4a\xa6\x6d\x5d\xb8\xf6\x55\x6e\x97\xfd\x98\x9a\xb6\x8d\xed\x4a\xd4\xb3\x67\x82\x9c\x01\x44\x85\x4d\xf8\x9c\x8b\xb7\x0f\xdf\xa9\x27\xa0\x8d\x80\xf8\x58\xea\xd9\xa1\x42\xd7\x33\xee\x98\x4d\xd2\x13\x44\x3a\x2a\x60\xdb\x16\xf0\x94\xb2\xba\xf1\xb1\x5f\xb7\xd5\x5e\xf7\xac\x0d\x3b\xe9\x0b\x79\x72\x7a\x10\x21\xc7\xdf\x05\x1e\xe6\x73\x50\x13\x42\xee\xe7\xf0\xc7\xa9\x19\x46\x8c\x8a\x33\x4a\x20\x8c\x5a\xb8\xf0\x6c\xbe\xa7\x6a\x46\x99\xd4\x3e\x16\x74\x08\x6f\xc0\x48\x77\x1f\x4b\x73\xf2\x7b\xfb\x7d\x87\x59\x2a\xb1\x10\x51\xe1\x32\xb4\x06\xc5\x1d\xc4\x9d\xbc\x0e\xd5\x86\x4e\x46\x32\xa3\x2d\x75\x6d\xcb\x12\xdc\x33\x64\xbc\x0b\xdb\x1d\xe0\x38\x51\x96\x31\xde\x08\xa0\x02\xbf\xc5\xa1\x21\xc8\xef\x25\xbe\x4e\xd1\xf2\x9f\x40\x42\x12\x53\x02\x08\xe4\xd4\xd9\xa6\x54\x34\x66\x69\x44\x4a\x76\xde\xed\x94\xdb\x6c\x2e\x78\x33\xbb\xc2\xa1\x06\x3e\x49\xe1\xc6\x23\x12\xe9\xc4\x52\x87\x38\xf4\x14\x66\x96\x8b\x04\x10\x81\x0e\x59\x4e\xf4\xc9\x66\x38\x9d\x04\xf3\xe2\x35\x67\x82\x3a\x08\xae\xd4\xa6\xc5\x7c\x11\x9e\x57\xb0\x95\x6c\x05\x9f\x7c\xd2\xd3\x04\x76\xe7\xba\xcc\x50\x99\xd0\xfd\xec\xd7\x74\xa0\x8e\xc2\xef\xb2\xf4\xde\x7b\xba\x4b\x39\xc4\x96\x51\x2c\xdf\xb4\xa0\xce\x8b\xca\x3f\xe5\xa7\xa7\xd1\x19\x48\x60\x94\xa2\xc1\xf0\xa6\xe7\x74\x8b\x94\x67\x38\xae\x96\x18\x5b\x06\xc3\x55\x24\xde\x47\x7d\xe9\x8e\x48\x90\xb6\x5b\x8d\x4f\x07\xb1\x65\xee\x2d\x0d\x53\x45\xfc\xf9\x90\x79\xa8\xcd\x36\xfd\xcf\x73\x00\x04\x1a\x32\x0e\x95\x57\x3a\x99\x5e\x9a\x86\xfa\x50\xc8\x55\xad\x33\xb1\x29\x2d\x8f\xf0\xf8\xb1\x62\xc2\x04\x2d\x06\x4b\xcf\x29\x0c\x30\x46\xc8\x10\x93\x11\xcc\x81\x4b\x16\x5f\x37\xe4\x6a\x8f\xb7\xe0\xb1\xb3\xdc\xbd\xff\x24\xf6\x96\x8b\x4c\xa1\xe8\x03\x6b\xe3\x8a\xbc\xf2\xe6\x41\xce\xe0\xd5\xd2\xc8\xe7\xde\x4c\x5e\x6d\xa3\x09\x63\xfe\xa7\xe5\xa1\xf7\xf6\x95\x64\xc1\x39\x8a\x54\xec\xbe\x81\x67\xac\x57\xcd\x71\xdb\xa6\xec\xbb\xe2\x3b\x85\x8a\x8d\x97\xe0\x07\x2c\xfa\x04\x0c\x38\x6e\xe5\x8e\xeb\xf0\xc4\x5d\x49\x82\x4b\x8f\x65\xeb\xd2\xfa\x66\x2c\x77\x39\x5d\x25\xfc\xed\x11\x79\x07\xcf\x33\x76\x0d\x9c\xf8\xa2\xce\x39\x47\x68\x06\x3b\xf2\xb9\xbb\x9c\x07\x22\x8f\xc6\xe7\x37\xa6\xc6\x82\x9e\x07\x37\x20\xb5\x2f\x6e\x3f\xf1\xc4\xcb\x11\x91\xdc\x19\x90\xb5\xdb\x5b\xf6\x8c\x0e\x47\x71\x99\x76\xc7\xd0\xe5\xea\x90\x7d\x9f\x9c\x2a\xe8\x67\xa6\xee\xa9\xd3\xf9\x6e\x8b\x3a\xf1\x65\x5c\x2d\xbe\xa5\x70\x99\x50\xf1\xf1\x4d\xd3\xea\x15\xd7\x2e\x32\xc5\xb5\xf9\x36\x7b\x57\x71\x99\x8b\xa0\x1b\xe8\xa1\x65\xff\x59\x6e\xa4\x8c\xe1\x27\x9a\x89\x2a\xbf\xb8\x99\xf8\x76\xb0\x99\x5f\x5a\x53\xed\x2b\xce\x6a\xeb\xdd\x57\xb3\xbb\x4e\xb3\x1d\x5e\x84\x6b\x7a\x10\x48\xd0\x0f\x31\x55\xb7\x1d\xaa\x19\x7c\xa8\xc4\x40\x30\x8c\x89\x5f\x90\x14\x26\xda\xfb\x48\x92\xf2\x72\x5e\xac\x33\x8d\x4e\xfc\x11\xaf\x82\x77\x25\xc2\xd2\xb3\x99\x8e\xce\x3e\x77\x4f\x43\x26\x02\x7d\xa2\x18\xb6\xd3\x96\xdb\x8e\x29\x84\xdf\x87\x44\x26\x02\xca\x49\x61\xe2\xc3\x5c\xec\x46\xd5\x2d\xae\x87\x05\xa5\xab\xa3\xad\x5e\xe4\xb3\x8f\x07\xd4\x33\x81\xf3\xc1\xd3\x7e\x74\xf6\x59\x78\x81\xf9\x61\x97\x04\x2c\x8a\x23\x2f\x33\x8a\xcb\x64\xb4\x41\xf3\xb2\x35\xdd\xd5\x41\x39\x79\x99\xcc\x86\x57\x48\x3c\x53\x00\x07\x54\x66\xb0\x70\x94\x97\xdc\x8d\x6d\xcf\x9e\xfb\xd1\xa1\xe5\xb2\x13\x2c\x85\x31\x55\x9b\x00\x4f\x1f\x2c\x7d\xc2\xe4\x3a\xd1\xd7\xdd\xf5\x2f\x11\x52\xdc\xf7\xb1\x5c\x87\x89\xf3\xe2\xc5\x62\xec\xc6\xfb\x15\x95\xe6\x7d\xa5\xcc\xf9\x73\xb7\x10\x3e\xbb\xfe\x46\xbe\xe3\xfd\x05\x90\x75\x66\x67\x2b\xbc\xf1\xe6\x9a\xf1\xa7\x13\x73\x27\xf4\x08\x38\x98\x31\xf9\x2b\x61\x67\xa0\x56\x7d\xa2\x2e\xb5\x3d\x54\x96\xa6\xce\xff\x8c\xce\xc9\x5e\x38\xd4\xf0\xbe\xd9\x25\xcb\xfd\x54\x53\xde\x1f\x11\x46\xc4\xde\x09\x51\x21\x84\x8b\x82\x5e\xd9\x9f\x94\xb6\x44\x15\xc4\x4d\xa1\xa7\x2e\xd4\xf5\xa1\x1a\xb1\xf1\xc4\x28\x48\x16\x28\xdb\xe7\xab\x9d\xfc\xbc\x34\xb5\xde\x41\x0f\xfe\xd1\x44\x8d\xec\x66\x18\x05\xf2\xf8\x50\x87\xd9\xe8\xf6\x97\x92\x23\x1d\x8d\x6d\xa1\x9c\x38\x44\x76\x06\xcc\xa4\xec\xe5\x32\x2f\xb2\x20\x15\x30\x95\x9a\x8f\xc7\xcb\x88\x50\xf8\x3e\x7b\x42\x28\x58\x3e\x97\x31\x3d\x33\x97\x7a\x64\x17\xbf\x7b\x55\xea\xb4\x4b\x74\x2e\x1b\x72\xda\x74\xf2\xc0\x2e\x1c\xac\x07\x5c\x98\xc4\x1b\x26\xf1\xca\x8d\xe5\x60\x49\xd8\x5f\x2c\x07\x96\xf1\x24\x00\xd0\x03\xcf\x1d\xf9\xd9\x73\x75\x00\x5e\x8c\x88\x79\xad\x71\x16\x22\x79\x79\xae\xa0\x7f\x6a\x9c\xa3\xd0\x3f\x5f\xe4\x3a\x43\xbf\x61\x8e\x70\x7a\x80\x58\x43\x57\x79\xe3\x51\xf7\xa2\x32\xce\x74\x01\x9e\x75\x7e\xdc\xdd\xf8\x7d\x0b\xe5\x7f\x6b\xc7\xcf\xaf\x2f\xb5\x8d\x6b\xc4\xc0\x01\x82\x23\xa2\x9e\xd1\x10\x02\xb3\x4a\xf3\xa2\x9e\x75\x13\x86\xac\x6a\x30\x8d\x6a\xa7\xa7\xdc\x1e\x42\x7d\x4f\x4b\x9e\x1e\x72\x53\x06\xaa\xa2\xbc\x77\xe1\xf9\x61\xb7\x4c\x50\x1c\x42\x89\x3f\xa3\x09\x0d\x0b\xa3\x0d\x46\x73\xbd\xd3\xcd\x16\xf3\xdb\x62\xef\x61\x43\x80\x0c\x43\x1c\xa0\x6e\x0a\x2a\x5d\xbc\xa9\x89\x67\x18\x8d\xc4\xee\x00\x12\x03\x4b\x1a\x3e\x07\x6b\x9a\x8a\x18\x5c\x7a\x3d\x6d\x76\x79\xfb\xea\x9d\xf9\x86\x76\x8e\xb3\xb0\x2d\xb6\x66\xe0\x63\xa9\x09\xb3\xbe\x29\xf4\xc9\x57\x79\x96\x15\x5a\x66\x18\xde\x2f\x3d\x8d\x06\xa9\x98\xa8\xa1\x3b\x8a\x34\xb1\x62\xa4\xa5\xca\x05\x89\xb6\x54\x52\xe3\x9b\xb7\x65\x6b\xec\x59\xc2\x5c\x19\x1e\xb3\xc8\x06\xc2\xd1\xdb\x9a\x6a\x82\xf1\x82\xf7\xd5\xc0\xda\x99\x38\x6b\x34\x9c\xec\xce\x52\x75\xb6\xd2\x7c\xc2\x90\xf1\xf2\x11\x03\x3c\x08\xbd\x8d\x07\x7d\x98\x74\x92\x02\xb6\x43\x9c\x16\x01\x1f\xba\x89\x7f\xa9\xf6\x19\x7c\x22\xfa\xe8\x00\xf8\x82\xa2\x3c\xcc\x24\x35\x52\x5f\xeb\xf9\x4b\xb3\x5a\xa5\x65\x26\x79\xf2\x55\xe4\x54\x35\xc7\x24\x1d\x81\x8b\x4d\x28\xc7\xdb\x71\xde\x98\xfc\xd3\x7c\x95\x9d\x22\x2a\x06\xb9\x41\x3b\xc0\xd6\xce\x38\xb1\xfd\x78\x9f\x7a\x0b\xdc\xc3\x7b\xfc\x0a\x70\x3e\xf1\xab\x13\xb1\x2f\xf2\x32\xfb\x68\x9a\x9f\x44\x7f\x50\x25\x91\xae\xcc\xba\x6c\x27\x6a\x0d\x61\x59\x2f\x29\x6a\xdd\x43\x05\x51\xa8\x02\xdc\x13\x83\x82\xe5\xa9\xa7\x28\x9b\xc5\xef\x3b\x7b\x07\x54\x8f\x7d\xa0\x5f\xa1\x94\xb2\xee\xbd\x10\xda\x26\x26\x1d\xf1\x84\x17\xf1\x60\x51\x1d\xf5\x32\x16\xc7\x5d\x0e\x94\x32\xf3\x75\x4d\xaa\xc5\xa8\xc3\x1d\x21\xc5\x32\x6f\x8f\x73\x94\x37\x46\x02\xd6\xce\x3d\x33\x98\xb9\x95\xb9\xd4\x3f\xf5\xcd\x97\xab\xf5\x21\x83\x0b\x63\x10\xa1\x6d\x36\x3f\xde\x08\xe4\x43\xb8\xf9\xc6\x12\xb6\x08\x08\x1a\xfd\x2a\x09\x45\x99\x54\x37\x58\xa8\x7d\x19\xaa\x1c\x03\xea\xcf\xc2\x93\xbe\x21\xf4\xb7\xfe\x60\x24\x29\x09\x2b\x93\xa3\x30\x88\x49\x44\x23\xfb\x6a\xb3\x8b\x05\x65\xce\xf7\x5f\xf2\xef\x50\x71\x66\x07\xdb\x1b\x40\x10\xa3\x5d\xe8\xf6\xab\x66\x00\x1d\x1e\xa4\x10\x64\xd2\x2f\xf1\x61\x4f\x4a\x80\xf8\x5e\xe6\xe5\x39\x4e\x8d\xce\xc6\xc1\x7e\xb7\x85\x90\x72\xd0\x6b\x06\x47\xce\xb6\x77\xb4\x8d\x4d\x1c\x85\x92\x0e\x59\x00\x7c\xff\xa0\xd3\x3a\xd4\x2c\x4a\xf7\x95\xce\xf4\x93\xc9\x86\x65\x85\xe4\xe2\xdf\x34\x65\x2e\xa2\x03\xff\xeb\x4c\x04\x5d\x27\xa0\x54\xbc\x3e\xf8\xa2\xee\xd4\x3e\x7f\x97\xe5\xdb\x44\x90\x5e\x08\x46\x93\x58\xe3\x47\xcd\xfb\xdb\x3d\xe4\xe8\xdc\xa4\x05\x22\x49\x7c\x25\x41\x9a\xa8\x6b\x7b\x69\x75\xd9\xff\x37\x23\x50\x50\x24\x0b\x73\x3a\x37\xa2\x6f\xf6\x88\x4e\x81\x5d\x76\x48\x99\xae\xa5\x14\xee\x1a\xd0\x36\x9c\xf8\xa6\xab\x35\x92\x1f\x0f\xd5\xb5\x48\x10\x90\xc8\xbf\xf9\x6a\x49\x84\xe4\x77\xca\x7f\x29\x5d\xfc\xdb\x3f\x4d\x17\xbb\xd2\x58\x5c\x25\x8d\xd4\x86\xe0\xf0\x16\x45\x5a\x35\xf6\x9a\xf2\x28\xb8\xbb\x21\x4d\x7c\xfc\x58\x3d\x12\xd4\xf0\xf1\x63\x87\x69\xd0\xb3\xb9\xf9\x56\xe7\xd2\x7f\x0d\x49\xe6\x86\xf4\x12\xd8\xaf\x21\x79\xac\xab\x49\xed\x94\x0d\xad\x1b\xb9\x13\x7b\x96\x0f\x7e\xf6\xfb\x82\xf1\x28\x01\x5f\x08\x4b\xe6\xd5\xd2\x49\xea\xdb\x01\x03\xce\x3a\x05\x9f\x29\x09\x1a\x4a\xf1\xab\xe3\x15\x46\x19\x06\x97\xd8\x1a\x42\xc8\x1f\x92\x8c\xc7\x99\x6d\xd8\x57\x1d\x09\x75\x38\xa4\x69\x96\x71\xd0\xd0\x13\x53\xf9\x25\x1d\x0a\x69\x09\xf6\x81\x47\x87\x6e\x65\xdc\x8d\xd6\x54\x72\xc0\x69\x96\x2a\xd3\x0c\x1d\x3b\xd8\x68\x1c\x10\x07\x60\xd1\x4b\x0a\x36\xb8\xf8\x44\x67\x47\xe8\xd8\x23\x66\x00\x29\x1a\x18\x97\xde\xf5\xd9\x50\xe4\x65\x86\xf0\x21\xa6\xce\x18\x38\x04\x6d\x27\x9c\x34\x64\x9c\x36\xd4\x2b\x8c\xa5\xe2\xc5\xc1\x64\x03\xe1\xf1\x34\x37\xe9\x6c\xe3\x2d\xd8\x87\x15\xe5\x2c\x01\xa6\x04\xf9\xaf\x22\xc3\x24\xd4\xf1\xb3\x79\x55\xa0\xf1\x67\x69\x65\x4c\x34\x51\x0d\x26\xb4\x92\xa8\x4c\x45\x21\xd5\xc8\xf6\x1b\xe3\x55\x87\x6b\x0a\xee\xd3\x4d\x9b\xcf\x2f\x6e\x60\x69\xa1\xba\x7d\x44\x02\x43\xfb\x0a\xf0\x5c\x78\xfe\x1e\x3f\x66\x4d\xc4\x17\xb5\xb3\x43\x36\x4c\x7c\x27\x54\xdb\xdb\xba\xcc\xa2\x4d\x09\x69\x6c\xcd\x0c\x52\x45\x0e\x7b\x22\x94\x9a\xa3\x4b\x14\x3e\x3a\x6f\x7e\xa5\xd6\x8e\x5d\xee\x09\xf5\x4f\xae\xeb\xe7\x32\x24\xde\x52\x02\xc5\xf9\x02\xec\x20\x52\xce\x83\xc0\x6a\x6a\x5f\xed\xfe\xd1\x10\xe8\x95\xab\x25\x19\x2e\xd3\xa7\x9e\x2f\x3b\x45\x0d\xe4\x19\x3f\x0a\x72\x11\xd4\xb2\x68\x5b\x12\x94\x74\xb5\xcc\x0b\xcd\x1a\xa5\x67\x68\x98\x05\x63\x32\xee\x0c\x1c\xd8\x13\x24\x62\x16\xba\xc5\x00\xce\xb1\x9c\xbd\xfe\xe2\x74\x99\x61\x41\xe1\xe4\x45\x27\xd6\x10\x1a\x2c\xce\x62\x88\x00\x0b\xab\x36\x09\x25\xc5\x18\x81\xee\x48\x84\x0c\xe2\xfd\x13\xb9\x30\x90\x36\x19\xc3\xfe\x11\x1c\x30\x39\x22\x1c\x76\x4c\x6d\xa1\xac\x1e\x67\x04\x66\xf7\x3b\x90\x07\x7c\xe0\xc5\x45\x6c\x05\xa4\x12\x03\xc5\x05\x27\x23\x1e\x28\xaf\xf2\xcb\x30\x58\x9c\x2b\x61\x98\x61\xe5\xb8\x73\x5f\x5f\x1c\x15\x12\x39\x31\x70\x92\x13\x18\x51\xe7\xc7\x30\xdc\x2d\xd6\xee\x50\x9c\x98\x01\x11\x7d\x57\x84\xeb\x71\x2d\xed\xc8\x23\x72\xf2\xeb\x02\x62\xcf\x92\x99\xa9\xf3\x36\xef\x2f\xf3\xd1\xa3\xc0\x2a\xde\x45\xc9\x75\xa1\x6b\x2c\x41\x9f\xa7\x65\xfb\x3a\x83\x88\x2f\xec\xef\x42\xc7\x54\x0f\x3f\xa4\xc6\xd7\x13\x05\x46\xe2\x9c\x28\x10\x96\xe3\x47\xb6\x82\x3d\x67\x74\xdb\xb7\xe5\xc2\x84\x2d\x94\x04\x97\x70\x60\x23\xb9\xbc\xc3\x87\x0d\xb7\x01\x49\x82\xfa\x41\x72\x4d\xd5\xf9\x72\x62\xaa\xd8\xf0\x9d\x5d\x01\xa3\x94\x3f\xb1\xea\x05\x1f\xff\x9a\x56\x14\xac\x66\x27\x6c\xd7\x59\x4a\x21\x71\xe3\x72\xc9\xdd\x30\x2a\x96\x25\x67\xf7\x97\x8a\x42\xab\xa8\x50\x29\xf6\xde\x67\x79\xa2\x50\xe5\x20\x16\x34\x4b\xe8\x5c\x0a\x11\xa1\x27\x14\xdd\x84\xe2\xb5\x3e\x8e\x17\x0e\xf7\x89\x5a\x41\xec\xd9\x90\x2c\x38\x66\x87\xb8\x32\xcf\x8a\xb0\x27\xaf\x54\xf0\xc4\x0c\x91\xb8\x82\x49\xa0\x77\xf2\xcf\x80\xea\xe4\xfd\x81\xdf\x84\x66\xe0\xdd\x70\xc7\x7d\x96\x2d\xa4\xea\x74\xed\xed\xd3\x75\x46\x6d\xb6\xf4\x93\xba\x3e\x4b\xba\xad\xec\x98\xbb\xa2\xcd\xf3\xbd\x43\x41\x45\x76\x8a\x13\xa3\xfa\x88\xd9\xe9\x84\xc1\xbf\xa7\xc2\x76\x1a\xea\x71\x67\x01\xbc\x72\x23\x43\x3f\x6e\x6f\xd5\x6c\x2b\x9e\xa6\xa9\xb3\xa5\x16\x6c\xb4\x6b\x25\x6f\x8e\x9f\x9d\xcf\x00\x71\xe7\x83\x4a\xd3\x70\xbf\x77\xf2\x4d\xf1\x86\xcc\xcd\x9f\x04\x4d\x0d\x8d\x79\x1c\x57\xd8\xe8\xf6\x38\xff\xb3\xd7\xdf\xe0\x0a\x05\xb8\xcb\x08\x5f\x7b\xf3\xd5\x2b\x2f\x5b\x5d\x57\xb5\x6e\x03\xfc\xda\x30\x4c\x2f\xad\x0c\x17\x8e\x1c\xd7\x85\x1d\xc2\xdd\xff\xf8\x23\xdb\xfe\x86\x78\x05\x44\x70\x83\xbc\x96\x23\xb1\xc9\x51\x86\xad\xf6\x29\xa6\xb3\x18\x6f\x74\x9c\x15\x97\x95\xb6\x2f\x9e\x61\xe8\x64\xeb\xda\x8a\xb9\x93\xa0\x40\xd2\x02\x3f\xac\x44\x67\xd0\xe0\x8b\xe4\x61\xeb\x9c\xc6\x03\x71\x62\x11\x71\xd9\x32\xc7\xef\x21\xea\x95\x5e\xe9\xb2\x85\xb0\xa9\x63\x29\xfe\xf5\x9e\xfb\x1f\x4c\x4c\xad\x59\x8d\x2b\x25\x84\x96\x02\xe4\xad\xae\xc7\x98\x65\xd2\xa7\xdd\x0d\x00\xab\x22\x9e\xda\x01\xb3\x5e\x39\x6b\x87\x7e\x60\x2f\x91\x66\x18\xd5\x2b\x2e\x0d\x7c\xde\xcc\x4f\x6c\xd9\x6e\x57\xc8\xb9\x1d\x82\xc0\x8f\x66\xa2\xb8\xed\x23\xcc\x36\x4a\x9c\x49\xab\x30\x66\x55\x6a\x7b\x1b\x13\xf2\x4a\x0f\x34\xb3\x1b\xe2\xcf\xa9\x0e\x7f\x41\xd1\xbc\x89\xaf\x88\xe4\x87\xce\x23\x53\xca\xa6\x12\x76\x6e\x64\x2c\x19\x12\xc7\x25\x12\xdb\xfb\xa8\x27\xa7\xcb\xd8\x17\x3c\x8f\x32\xcb\x00\x6b\x7d\x59\xbb\x01\xd8\xf8\xa8\xa1\x8e\xf4\x6d\xef\xc8\x61\xb6\xc8\x7e\xe2\x45\x1c\x32\x69\x76\x09\x66\xde\xb8\xc1\xb1\x02\x5d\x17\xb3\x87\x8d\xb4\x8c\x07\x2c\xf3\xf6\x32\x33\xfe\x14\x93\x3c\x46\xf8\x52\x60\xf9\xcb\x78\xa8\xa0\x4b\x0e\x6a\x00\xff\x5b\xdf\x4f\xe2\xac\x6f\x6f\x51\x4d\x9d\x9e\x35\xe2\xeb\xce\xa0\xbd\x46\xa2\x9e\xa9\xe9\x0f\x92\x59\xee\x8b\x85\x1c\xee\xd9\xaf\x58\x5d\xcd\x55\x5a\x81\xe3\x6c\x8f\x1c\xcc\xcc\x3b\x93\xd6\x95\x41\x9b\x22\x9b\xce\x57\x12\x70\x74\x20\xc2\xe2\xe6\xe9\xe8\xe1\x85\x31\x5e\xe4\xc6\xf9\x8a\xa7\xaa\x77\x96\xe2\x55\x82\xdb\xbf\x6f\x3f\x22\x04\x0b\x0d\x1b\x8d\x8c\x77\x5a\x2e\xb2\xc8\x74\xcd\x14\x59\x38\x98\xe7\x1a\x11\x9b\x80\x85\xef\xdb\x39\x1b\x39\x7e\xef\xc9\xfc\x2b\x52\xfb\xd7\x05\x50\xe5\x7b\x0b\xa2\xc3\xe1\x2e\x62\xc1\x1f\x5e\x00\xf3\xaf\xbe\x04\x5c\xd3\x0f\xcd\x4f\x91\xed\x19\xac\x19\x2c\x56\xde\xe7\xd7\x79\x29\x01\x03\x22\xa7\x7e\x0e\xd5\xf7\x13\x4b\x50\xbc\x1e\x11\x50\x0b\xca\x74\xa5\x23\x5f\xfb\x07\x19\x95\x07\x46\xe3\x01\xc4\x80\x7b\xf5\x85\x8c\x81\xf7\xd5\xa7\x53\x26\xe8\x41\xb6\x4f\x60\x8f\x2c\xdc\xe9\xef\xfa\xdb\x4e\x41\x49\x37\xf6\xa0\xaa\x75\x96\xcf\x01\x6c\x3b\xe8\xcc\xe0\x50\xf4\xf4\xbf\xdb\x42\x67\xff\x0c\x42\xcf\x2f\xb6\x92\xfd\xa8\xaa\x7d\xcc\x7c\x97\x08\xc4\x58\x88\xb0\x06\x5e\x4a\xa6\xce\xff\x34\x65\x9b\x16\x0e\x3c\x45\xad\x8c\x6d\xfc\x54\xbd\xca\x01\xec\x6b\x67\x4f\x99\x5a\xed\x91\x9d\x86\xa9\x6d\xfe\x1a\x2d\x6f\x40\x4c\xea\x70\xfd\xe7\xcb\xb4\x1e\x41\x0c\xb8\x62\xbd\x2a\x47\xf6\xc8\xbd\x80\x60\x90\xf5\x44\x9d\xad\x5b\x86\x9b\x07\x9c\x89\xda\x34\x0d\x0a\xe7\x7c\x44\xcd\x84\x24\x65\x23\x35\x4e\x31\x41\x09\x88\xb2\xa6\xce\x12\x0c\x09\x70\x5e\x9b\x75\x35\x52\xe3\x96\x10\x6b\x09\x7e\x58\x99\x05\x26\x85\xef\xf6\x09\x04\x8d\xa6\x56\xa5\x29\x77\xec\xef\x1d\xf8\xe1\xc0\x8b\xa1\x09\x80\x97\x85\x71\x0a\x58\xd9\x8a\x08\x1e\x80\xd5\x55\x9b\x02\xb0\xff\x51\xc1\x94\x97\xd8\xe5\x9d\xd6\xec\x80\x59\x17\xc1\xdd\x82\xb4\x18\x25\xee\x6a\x0f\x91\x43\x54\x6b\x40\xa5\xa0\x5a\x83\x40\x1b\x08\x9c\x79\x8d\xe1\x05\xae\x09\x49\x79\x0b\xc2\x0d\x23\xd6\x33\xc0\xcb\xf8\xb4\x1e\x69\x8d\x50\x93\xd1\x12\xc4\x38\x4c\xe6\x5a\x97\xd0\x00\x96\x9d\x62\x1f\x6a\xdd\xac\x0b\x08\xd1\xec\x64\xaa\x00\x09\x8c\xe0\xfe\x8a\xb4\x23\x87\x40\xeb\x6c\x66\xda\x30\x76\x33\xe5\xad\xaa\x35\x9c\xb7\x21\x4a\xb3\xb6\x74\x74\x6d\x77\xbe\x88\x6b\x10\x2a\xf0\xaa\x40\x62\x1e\xeb\xe9\xe9\xb0\xf8\xc8\xd1\x24\xf9\x55\x9d\x9f\xbf\x62\x1f\x5d\x01\xea\x1f\x5a\x74\x86\xb2\xda\x28\x5e\x5f\xf6\x81\xf0\x19\xc7\x01\x0e\x15\x5b\xde\xa1\x65\x3a\x96\x4e\xcc\x24\x49\xba\xd1\x06\xf5\xf6\x56\x15\xea\xd9\x61\xaf\x19\xfc\x40\x08\x3c\x54\x1b\x94\xfa\x0a\x7d\xdd\x26\x4e\x4a\xec\x65\xb8\xc9\x96\x0a\x8d\x82\x7b\x3a\x54\x24\x71\xfc\x3b\xf0\x8b\x2f\xe7\x7a\x0c\x3b\xe1\xc4\xbc\x13\xac\x30\x7a\x97\x92\x90\x1a\xa4\x73\x1d\x3b\x88\x12\x11\xbd\x56\x42\xa7\x0d\xa8\xb5\xf3\x95\xb0\x59\xe5\x69\xa2\x43\x3f\xbc\xe0\x89\x12\xde\x99\x73\x8c\xa7\x31\x1e\xca\xea\x5a\x82\xb9\xe2\xeb\x25\x90\x66\xd1\x11\xf5\xf8\x71\x34\x5d\x92\x83\xc1\x31\xb5\x6c\xe4\x02\x3e\x72\xef\xf0\x00\x8f\x7b\x40\xf2\x4d\xdb\x96\x41\x79\x5f\x77\xde\xa2\xce\xf2\x34\xd2\x98\xf6\x03\x26\x6e\x45\x2a\x1f\xa0\x6c\xdc\x49\x37\x5f\x49\x08\xad\xef\x53\x23\xfd\xeb\xa4\x67\x7f\xc8\xbe\x3c\x48\xf7\x6e\x6f\x95\x7b\x83\xb4\x4e\x2e\x84\x26\xbd\x3a\x41\x6f\x3b\xd4\xd7\x23\xb5\x3b\x8c\xb3\xb8\xf4\x4e\x27\x81\x83\xc9\xba\x44\x84\x46\xdb\xa8\x9f\x70\x37\x2d\xdc\x1b\xc8\x21\x1d\x1c\xb8\x47\xd4\xcf\x87\x88\xba\xa4\x30\xc4\x28\xd9\xd4\xe3\x47\x68\x0a\xde\x55\xc9\x7a\xd5\x35\x4d\x30\x82\xee\x91\x54\x1c\x77\x16\x60\x57\x8c\xfe\x28\x47\x52\x00\x80\xfd\x97\x62\xfc\xb5\xd7\x4e\xa8\xe7\x6a\x74\x35\x72\xcb\x61\x9f\x46\x08\x21\x18\x60\x84\xfe\x28\x47\x36\x51\x29\x13\x3d\xc2\x54\xb7\xb7\x52\xcb\xb0\x86\xd2\x04\x2b\xab\x00\x6f\x40\xda\x00\xba\xc2\xb1\x97\xf0\x8b\x7c\xe5\xb8\x9d\xa3\x66\x14\x9a\xbc\xd1\x0c\x3e\x7e\xec\x26\xf3\xd1\x61\xe4\x60\x17\x0c\x67\xa2\xbe\x90\xe1\xc0\x81\x58\x77\x07\x4a\xea\x8d\xd4\x08\x1c\x3c\x47\xfe\x42\x1a\xa2\xc5\x4b\x41\x00\x35\xcf\xaf\x24\x68\xe8\x5d\x34\x8f\xcf\x1e\x38\x8f\xcc\xe7\x01\x8a\x00\x1c\x3f\xea\x50\x35\x17\x79\xf5\xa2\x35\xab\x7c\x2e\x4e\x08\x3c\x04\x26\x4c\xf9\xbd\x6f\x30\x84\x7a\xfc\xfb\x3a\x2d\xd0\x43\xdb\x92\x56\x4e\x8b\x25\x92\x83\xa0\xfd\xc9\x1a\x7e\xe9\x0e\xc0\xb7\x5f\x48\x40\xcc\xcd\x1b\x53\x7b\x66\xe6\x52\xd7\xad\x25\x69\x30\x7c\x70\x94\x01\x5f\xb3\x4a\x6f\x2c\xcf\x42\xbc\xcd\x54\xfd\xe2\x19\x19\x88\x4b\x84\x4a\x5e\xcb\x73\xd8\x05\x3a\xfa\xff\xe4\x88\xfd\x1b\x02\xbe\x86\x3a\xe9\x81\xa0\x41\xd7\xc2\xe6\x7c\xa2\x6e\x62\x02\x86\x9e\x2b\x82\x96\xd8\x17\x14\x67\xc7\xa1\x2b\x08\xdc\xfb\x7e\xcb\x6b\x82\xcf\x02\xff\x55\xba\xaf\xde\xde\xfa\x0e\xf0\x0f\xba\x2d\x84\x71\xf2\x5c\xcd\x76\x1e\x5e\xb0\x49\x8b\x33\xd4\x76\xed\xd9\x51\xd3\x1f\xd4\x77\xf2\x16\xec\x9b\x95\x4c\xd4\xf7\x58\xd0\x0d\x1a\xab\xe2\x52\x7d\x2e\x4d\x8b\xf7\xd9\xa4\x39\x41\x06\x40\x7d\x27\x6a\xdc\x1a\xa0\xbe\x30\xc7\x3c\x3c\x37\x84\x1d\xd2\x29\x7a\x5b\x7d\xef\x8b\x57\x3b\xea\x7b\xb1\xfc\xdb\xb4\x3e\xd7\x2d\xe3\x68\x7a\xa7\x6e\x7c\xef\xcc\x61\x90\x64\xad\x48\x5b\xe2\x2f\x33\x98\x6c\x6a\xd6\x6d\xd3\x63\xc2\x22\xe9\xeb\x73\x75\xa3\x9e\x1e\x02\xc6\xc5\x0d\x73\x30\x4e\x54\x4a\xd5\x45\x1b\x25\x74\xc4\xbe\x51\xdb\x87\x34\x30\x3f\x84\xb8\x97\xd4\x07\xdc\x44\x2f\x8f\x3e\x9c\xbc\xfe\x70\xf2\xfa\xd5\xdb\x93\x17\x3f\xbe\x7b\xad\xde\x7e\xf8\xf8\xcb\x89\x3a\x3e\xf9\xfd\xdd\x6b\x0c\x28\x06\x1e\x81\xa8\x3e\x72\xd0\xc6\xf2\xee\xc3\xa8\xa3\x78\xeb\x5e\xc1\x5a\xe5\xc7\x22\x6d\xda\x17\x80\xc5\xf9\x41\xf8\xf2\xfa\xb7\xe8\x1f\x25\xdf\x83\xf6\x2c\x4e\x0c\x2f\x5d\x5a\x22\xd6\xf0\xb5\xa2\x40\x92\xc8\xb0\xbd\xd2\x45\x7a\x43\xf6\x32\xd8\x1c\xb3\xb2\x3b\x18\x13\x88\x6c\xe7\x75\x3a\xd7\x1f\x75\x9d\x1b\x09\xb6\x0b\x9f\x6a\x9d\x66\xaf\x8e\xde\x53\x38\x5d\xce\x77\x77\xb0\xb5\xd5\x37\x10\x1e\xaa\x6e\x9a\xc3\x22\x13\xa2\x4e\xe7\x3b\x23\xc2\xb8\x76\xe4\xda\x14\xe9\x6e\xcd\x83\x30\x51\x30\x84\x28\x2a\x80\x81\xf4\x48\x99\xf8\x12\x7f\x4b\xaf\x86\x57\xf9\xe5\x00\x52\x62\x96\x5f\x4e\x64\xd0\x01\x89\x10\x4a\x71\x12\x41\x3b\x8a\xd0\xd2\x83\x31\x8d\x07\x83\x9f\x77\x41\xb9\x3b\x7a\xe2\xdd\x5d\xf5\xf6\xb5\x8b\x40\x06\x01\xd0\xb1\xbf\xe8\xe6\x32\x51\x8d\x51\x57\x5a\x35\x96\x64\xae\x0b\x0d\xa0\xd2\x69\xc6\xf1\xc9\x19\xdb\x7b\x8e\x63\x8f\x97\xaa\xbc\x51\x57\xe4\xd4\x03\xd0\x20\x22\x90\xfe\xa1\xda\xdb\xc3\x98\x1d\x2e\x54\xf7\x50\xd4\xfc\x48\x2f\xfb\xcd\x1e\x21\x9b\xbf\xa9\xcd\xea\xd5\xd1\xfb\x31\x00\x6d\x4f\xd4\x13\x82\xad\xbf\x0b\x47\x8c\x56\x16\x0c\xeb\x70\x40\x68\x2a\x58\x2e\xc3\x2f\x59\xda\xa6\xfb\x4a\x4f\xed\x5f\xcb\xff\x82\x1b\xa0\x5d\x81\x77\x32\xaa\x6a\x5c\x09\xb6\x6d\x43\xd8\xe9\xb8\x2a\xd6\x28\x3c\xbc\x7a\xb5\xb1\x01\x83\xe1\x89\x85\xd5\xaf\xac\x5c\xb0\x1a\x58\x19\x70\x40\x51\x3a\xf8\x20\x5a\x6a\xa7\x9e\xc6\xff\xd8\x80\x0c\xf9\x4e\xc8\xf4\xc2\x9c\xa6\x0c\x04\xbf\x3d\x73\x34\x10\xae\x3b\x88\x75\x88\x50\x90\xf5\x5c\xbf\xf4\x5d\x7d\x5d\x66\x63\x17\x74\xd4\x95\x96\x13\x36\x73\x7f\xd8\xd8\x4d\xe3\xdf\xdf\x2b\x2c\xde\x95\x66\xca\x97\xa6\xba\x79\xb9\x6e\x1f\xb0\xf5\x3a\x9b\x8c\x63\x4f\xf4\x98\x05\xbb\x99\x08\xe3\xef\x88\xa0\x41\xe4\x4c\x8a\x60\xc8\x78\x69\xf0\xe6\x85\xe3\xe4\x2e\x09\xa6\x12\x39\xde\x43\x8c\x6c\x00\x7a\xa5\xd5\x46\x5b\x63\x4c\xd6\x01\xf5\x96\x68\xf0\xdc\x14\x1a\x80\xd8\xcb\xb9\xef\x76\x17\x40\x66\x75\x61\xb0\xef\xeb\xb2\x5d\x35\xdc\x63\x32\x87\xb3\x0f\xf7\x74\xd5\xf1\xdd\xd0\x76\xa6\x2a\xdd\xf5\xe0\x12\x35\xc1\x48\x52\x45\x8c\xe9\x35\xeb\x20\x2f\x85\x99\xef\x1d\x54\x97\xfc\x2e\xd2\xbd\x6e\xf9\x2e\x04\xc1\x0f\x7c\xfb\xe2\xa8\x08\x18\x8d\x35\x6d\xd3\xb1\x74\x7a\x64\xa2\x7b\xb8\x21\x0e\x08\x25\xdf\xdd\x05\x1c\x60\x7d\x5d\x99\x46\x93\x78\x8b\x6b\x50\x2f\x3e\xbe\x45\xc1\x60\xa3\xf5\x0a\xe4\x66\x59\xde\xcc\xed\x17\x4f\xd6\x29\x66\x05\xc0\x29\xe7\xed\x40\x33\x9b\x20\x78\xc3\x84\xb3\x87\xb3\xb6\x31\xde\x83\x9d\x4e\xce\x25\x66\x6b\x20\xe2\x83\x8a\x91\xf5\xe4\x00\xef\xee\xaa\xa3\x22\xdb\x59\xa4\xcd\x12\xa1\xa4\xcf\xea\x5c\x2f\x8a\x9b\x1d\x40\x96\xdd\x49\x77\x1c\xec\xf4\x32\x9d\x5f\x38\x16\xe0\xa2\x58\x67\x60\x3c\x10\xa3\x72\x4f\x10\x8e\x1b\xbf\xa3\xb0\x0a\x3c\x36\xb7\x68\x3d\x74\xfd\x18\x71\xd4\x08\xaa\x01\xf3\x4d\xfa\x53\xfa\xd2\x18\x3f\x7d\x4a\xd6\x5e\xf7\x4d\x2d\xc8\x17\xd2\x0c\x38\x30\x94\x30\xe0\x1d\x80\x2d\x95\xe0\x06\x80\x8a\x25\x58\xa8\x18\xc0\x82\xad\xa2\xc4\x31\xdc\xb7\x4d\x7a\xdb\x8a\x00\x92\xe8\xac\x8a\x9d\xe2\xc9\xe0\x76\x44\x71\xcb\x41\x9b\xee\x9a\x68\x59\xa3\x4b\x84\xf4\x03\x17\xd9\xa5\xb9\xfa\x88\xd6\x29\x7e\x27\x79\x5f\x27\xf5\xc3\x8c\xe5\x74\xe2\xd0\xab\x6e\x46\x13\x4f\x90\xc3\x13\x11\xce\x00\xf1\xed\x01\x9c\x61\x55\xeb\x2a\xad\xfd\x4e\x0e\xb8\x44\x7f\xd1\x73\x37\xeb\x38\xfd\x98\x58\x6b\xe1\x2f\x41\x17\xe5\x05\x4d\x0b\x25\x20\xd3\x34\x78\xab\xb3\xee\xad\xf9\xfe\xa6\xda\xe1\xea\x6f\x67\x5e\x2e\xcc\x04\xe0\xc0\x60\xa0\xb1\xd9\x40\xc9\xed\x17\x08\xf0\xc1\xad\x90\xda\x7f\x61\x93\x2c\x4e\x2c\x0c\x88\xb0\x30\xd4\x81\xdb\xdb\xa0\x60\x32\xb3\x1b\x9e\x39\xf7\xfd\xbd\xbd\xa6\x57\x85\x16\x54\xd6\x16\xfb\xa0\x59\xe9\x2b\x7f\x60\x66\xd0\x3f\x87\x6e\xc5\xf2\x78\xb4\xbb\x16\xf8\x75\x37\x43\x55\x9d\xaf\xc2\x08\x09\x12\xce\x44\x00\x29\xda\xd7\x21\x8e\x22\xbc\x01\x18\x45\x1f\x33\x33\x34\xa4\x00\xea\xb5\xea\xd8\x63\xd8\xf1\xf3\x96\x40\xcf\x3a\x69\x4e\x60\x7a\x18\x40\xf1\x69\x5f\x11\xbc\x27\xc1\xf2\x1b\x36\xe0\x8b\xa2\xa0\xf3\x54\x4a\xbb\x65\x58\xb1\xf9\xba\xc6\x5b\x1c\xd0\x85\xd5\x89\xf9\x68\x30\x94\xb5\x2d\x24\x75\xb7\x3e\xf9\xec\xf1\x30\xa8\x00\x4f\x57\xa2\xfc\x0b\xbe\x07\x8a\x47\x9f\x9b\x5c\x41\xa8\x7a\x88\xc1\xc3\x4f\xd3\xb3\x34\x23\x49\x20\x16\x4e\x5f\x91\x72\xe0\x47\x47\x7e\xaa\xf1\x2a\x2f\xa1\x5a\xce\x3e\x71\x19\x13\x72\xae\x61\xf4\x46\x99\x29\xbd\x1e\xce\xd4\x1a\xcc\x82\xc3\x26\x96\x3d\xf5\x1a\x82\x05\x74\xe6\x68\x2b\xb4\x4c\x1f\x6f\x9a\x4f\x98\x73\x74\x01\x3f\x31\xf6\xaa\x02\xa4\xc1\xb6\xd5\x5e\xca\xa8\x9d\x5f\x4a\xc0\x22\xb6\xe9\x3f\xcd\x4e\xa7\x2b\x34\xfa\x99\xae\xd2\xea\xd3\x93\xd3\x89\x42\x1f\xd9\x7d\x35\x63\xc1\x06\xc1\x6f\x0c\x2d\x92\x13\xd3\xa9\xb1\x35\x3c\x15\x8f\x04\x16\x24\x88\x7e\xb0\x32\x75\x88\xd5\x0b\x3a\x80\x41\x74\xe8\xbb\x4f\x9f\x56\xea\x50\x89\x26\x36\xea\x79\xf0\xf8\x49\x3e\xc8\xa2\xd4\xbe\x4c\x07\x05\x62\x47\xa8\xfb\xb6\xbb\xab\xb4\x92\x59\x7c\xdf\x3b\x1f\x9f\x9c\xaa\x9d\xee\xdb\xef\x4f\xef\xa4\xb2\xe0\x11\xce\x91\x25\x78\xa2\xdb\x5f\xb3\x71\xd0\xac\xc2\x39\x59\xbc\x04\x19\x19\x45\x1b\xe2\x60\x26\x2f\xda\xf1\x2c\x99\xa8\x1a\x02\x48\xb4\xf5\x8d\x5d\x48\x70\x81\x83\x2c\x68\x9e\x3e\x25\x50\x0c\xf8\x8d\x9d\x02\xab\xf0\xe0\x37\xe0\x3d\x00\xd5\x9c\x43\xc8\x6a\x7b\xbb\xb8\x03\xe6\x65\x8d\xc8\x77\x05\x0b\x28\x5f\x1d\xbd\x57\x2b\x10\xf6\x9d\x41\x54\x4f\x7b\xe1\xcc\x40\x25\x7a\xb5\xcc\xe7\x4b\x35\x4f\x1b\x0c\x38\x81\xe6\x8f\x57\x1a\xda\xd5\x1a\x88\x72\x40\xba\xe1\x7c\xc5\xa8\x08\x34\x5a\xb5\xbf\x0c\xc2\xe0\x9d\xeb\xf9\x85\xa1\x50\x88\xc1\x69\x25\x2f\x2a\xc5\x94\x7d\x96\x06\x3b\x2a\x0f\xff\x47\x75\x79\xee\x72\x04\xa0\xa4\xc3\xb3\xc2\x5f\xd3\x2c\x43\x3b\x47\xdb\xd0\x90\xcb\x0b\x6f\x1c\x9b\x8a\xea\x2f\xc8\xf3\xe1\x76\xc2\x69\x7e\x53\x21\x0d\xf3\xa6\x7f\x41\x01\x02\x5c\xdf\x5d\x97\x60\xd8\xfc\xd1\x68\x07\xe2\xaf\x5e\x86\xc5\x37\x4a\x2f\xc3\x5a\xe9\xd5\x99\x08\x2b\x39\x7e\xd8\x89\x18\x15\xdb\x73\x1a\x0e\x89\xb1\xe0\x02\xc1\xac\x5e\x2c\x62\x4b\xfa\xc5\x6e\x1b\x99\x43\xba\x3a\xf7\x0b\xea\x02\xa1\x83\x8b\x4b\x89\xf6\x62\xc2\x15\xd6\x0b\x40\x06\xef\x6b\x91\x04\xc8\xc5\xaf\x8b\x0b\x75\x12\x56\xf2\x24\xbd\x03\xc1\xd0\x43\xd9\x8c\x2e\x9b\xd2\x61\xad\xb0\xdf\x82\xf7\xad\x75\xf9\xa2\xcc\x5e\x64\xd9\x38\x66\xab\x84\x5b\x03\xf0\x50\xf8\xdc\x24\x0f\xcd\xef\xfa\xe6\x8b\x70\xaf\x1e\xd4\xa5\xce\xf2\xfa\x7a\xb6\x69\x50\x40\x1c\xee\x91\x83\x41\x81\x71\xcc\x53\xc8\x02\xa5\x0c\x39\xe0\x25\x0e\x86\x44\xca\x11\x8b\xf1\xa0\x79\xe5\xce\xbc\x2d\x31\x64\xca\x3f\x34\x08\x39\xc5\x19\x16\x27\x41\xaf\x59\x02\xd8\x07\xf8\x1e\x05\xa7\xc4\x74\x6e\x56\x2b\x53\xbe\x28\xe7\xba\x69\x4d\x6d\xdb\x9d\xe6\x25\x38\x55\x38\xe0\x07\x78\xe5\xdc\x63\x2e\x11\x4f\xe9\x41\x93\xcd\x57\x8c\xb8\x6f\xce\xde\x58\x08\x72\x9c\xef\x09\xa0\xc0\x1b\x5c\x98\xa3\x8e\x98\xac\x3b\x76\xf1\x9e\x0d\xef\x21\x58\x4f\xe7\x56\x94\x90\x76\x91\x68\x25\xf7\x4d\xdc\x0e\xef\x6c\x07\xef\xe9\xdf\x59\xb1\xee\x4c\x9d\x2f\xcb\x7e\xb5\xd4\xf5\xde\x62\xd8\xaa\xaf\x53\x54\x68\x3e\x77\xa9\x1e\xb2\xb4\xd6\x55\x65\xea\xb6\x39\x31\x6b\x80\x22\xee\x2f\x10\x34\xa3\x0f\xd9\xac\x73\x9d\x5f\x6a\x77\x83\xef\x5b\xa3\x52\x01\x21\xa7\x76\x70\x9e\xbe\x78\xed\x4b\x7c\x37\x73\x86\x1a\x5f\x02\x53\xe5\xe9\xa0\xf0\x9d\x55\x1d\x0f\xa2\xbc\x52\x62\x6a\x6b\x0f\x64\xb0\xae\xa4\x01\xc6\x02\xbf\x47\x8d\xee\x7c\xcb\xcb\xf3\x69\xa3\x5b\x5f\x9a\x8b\xb5\x81\x4e\x35\xba\xbe\x4c\xc1\x2a\x88\x25\x76\xc1\xd1\x2b\x4b\x88\xb7\x47\x5f\x01\x5f\x43\x69\xfc\x88\x7c\x3d\xa1\x61\x23\xf0\x90\x05\x79\xd4\xd1\xc8\x7d\x20\x84\xbb\x98\xbe\xf6\x24\xa5\x0f\x74\xe3\x08\x08\x6d\x90\xda\x93\x63\x2a\x57\x50\xda\x6e\xc2\x87\x53\xe0\x60\x22\x37\x51\xa8\x48\xa5\xf7\xc8\x1b\x66\x77\xb8\x12\x27\xc6\xe8\xe1\x2a\x86\x02\x95\x3e\x40\x2e\x80\xa1\xd3\x8e\x4a\xf5\xa2\xcc\x6a\x93\x67\xea\xe5\xb2\x36\x2b\x0d\x20\x6a\xa0\xb8\xfa\xe1\x5f\x26\x2a\x6d\x55\xa1\xd3\xa6\x4d\x26\x10\xbd\xab\xa9\xd2\x79\x5e\x9e\xa3\x48\x34\x2d\xb1\x88\xb5\x83\x7b\x53\x67\x85\x99\x5f\x28\x8d\x12\x38\xb4\x4f\xb0\xbb\x58\xc4\xb2\x03\x65\x59\xda\x72\x9a\x09\x16\x91\xa2\x8f\x76\x39\x51\x67\x7a\x9e\xae\x2d\x83\xd9\x7e\x8b\xb1\xcb\xb8\xec\x89\x5a\xe6\x19\xf2\xfa\x97\x79\xdd\xae\xd3\xc2\xc5\x74\x9b\x62\x21\x3f\x52\x56\xee\x0f\xeb\xf7\xd2\xa2\x30\x57\x6a\x0d\x42\xde\x74\xde\xa2\xb1\x65\xa6\x5b\x3d\x6f\x5d\xa7\x28\xaa\x5e\x55\xeb\xa6\x81\xe0\xf5\x2a\x55\x4d\x5a\x6a\x75\x95\xde\xa0\xed\xb5\x9a\xdb\xd5\x02\x7a\xca\x06\x34\x81\x10\x16\x0f\xfa\xb2\x04\x2c\xbb\xc6\x77\xa5\xc9\x57\xeb\x22\x6d\x75\xa3\x52\x5f\x03\x16\xee\xb4\x85\xf6\xe6\xc2\x41\xf1\x52\x6a\x31\xb8\xe9\xc2\x24\x3c\x7e\xac\xe2\x9d\x4a\xf6\xcd\xc2\xa5\x37\x6f\xde\x96\x68\x23\x3d\x0e\xf7\x50\x22\x39\x56\x5b\x46\x0c\x30\x35\xfe\x62\x57\xeb\xbe\x1a\x5d\xe8\x9b\xcc\x5c\x95\xa3\x89\x1d\xcc\x97\x70\x3d\xfd\xcb\x44\x85\x82\xe7\x7d\xe7\x2b\x40\x42\x7d\x28\x15\x4f\x21\xff\x2c\xe5\x9f\xe2\x7a\x29\x0f\x65\xa9\x86\x12\xab\x76\xf0\x7a\x80\x0b\x3a\xfd\xa7\xe4\x39\x80\xc3\xfb\x0f\xc9\x72\x52\x27\xc8\x81\x38\x9d\x9b\x42\x26\xb3\x5c\xd9\x37\x9e\x4d\x63\x9a\x7c\x25\x79\xec\x31\x07\x01\x85\x22\xfb\x95\x2d\xbe\x6e\x90\x0c\xdd\xde\x42\x62\xfb\x9b\x34\x5b\x1b\xcf\x24\x52\xe3\x21\x9b\xf1\x10\x6a\xf5\xd2\x29\x54\xbe\x92\x56\x71\xbf\xbb\xd7\xac\x30\xbd\x58\x23\xfd\x76\x0c\x52\x7c\x17\xc8\x2d\x3d\x70\xa6\xbf\x29\x4c\x3a\x91\x98\x87\x84\x99\x30\xad\x52\x96\x69\x5f\x50\x44\x98\xbe\x40\x28\x42\xba\x65\x4b\x07\xf5\x84\xb4\x1a\xed\x8f\xc1\xaf\x76\xd4\x9e\x8f\xf8\xc0\xd3\x1e\x7c\x76\x11\xef\xfd\x76\x30\x54\x71\x9c\xaf\x2f\x8e\x3e\xd0\x02\x29\x02\xf3\x11\x68\x1c\xe3\x13\x85\xe9\xe7\x98\xb5\xae\x42\xdf\x9e\xa7\xaa\x4f\x52\xcb\xf9\x9e\xa9\x48\xbe\x06\x01\x28\x3a\xbc\xbf\x18\x68\x88\x75\x82\x1d\x7e\x07\x16\xb2\xf6\xd7\x07\x0c\x1c\x10\xd6\x7c\x78\xd8\x5b\xf5\xd8\x95\x42\xc0\x28\x7f\xcb\xf5\x15\x3c\x3b\x11\x22\x07\xb2\xa6\xd8\x16\x68\x25\x4a\x15\x92\x15\xe7\x07\x33\x96\x85\x7f\x9a\x9d\x8a\x70\x3e\xdc\x24\x15\xb6\xc0\x26\x2a\xb1\xa5\x81\x5c\xe5\x9e\xa2\x5d\x7b\x1f\x52\x85\xef\x1c\x08\x19\x01\x0a\xb0\xd4\xd7\xed\x71\x7e\x46\x81\x58\x9d\x11\x97\x19\x1e\x04\x5e\x16\x2e\x29\x0e\x75\x6b\xc4\x40\xbb\xfc\x61\x0b\x82\x48\x22\x74\x28\x18\xea\x5d\x77\xae\xe9\x7b\xd4\x13\xb2\xe7\x81\x85\xc7\xea\xbf\x60\xc4\x5c\x89\x7d\xe3\xc5\x0d\xdb\xb6\x03\x80\xae\x96\x83\x35\x75\x33\xc0\x88\xd9\xf3\x28\x37\xeb\x46\x8e\x1a\x5f\x54\x79\xe4\x87\xaf\xa8\xfa\xea\x04\x8d\xcc\x99\x66\x54\x45\x0e\x1b\xa8\x19\xdb\x63\x01\x90\xe5\xdb\x2b\xad\x4b\xb7\xe0\xf0\x5c\xc0\xd6\xc9\xb5\x8d\xfd\x4c\x12\x2f\x33\xa5\x92\xcf\xb5\x28\x03\xb7\x32\x53\x89\x77\x2e\xae\x34\x6e\x50\x7c\xee\x6e\xfc\x77\xf1\xbe\x87\x6a\x08\xd1\x83\xfa\xc0\x93\xf9\x4c\xed\x41\xc0\x3d\xac\x5f\xbc\x95\x37\x8f\xa2\x69\x39\x1f\x6c\x1d\xfb\x4c\x39\x80\x6f\xe4\x32\x2b\x53\x8d\x93\x03\x57\x18\x3d\x62\x83\x76\x76\x62\xa1\x1f\xe5\xfa\x34\x83\x98\x16\x94\xe9\xd3\xec\x54\x96\x08\x60\x52\xb2\x4c\xf7\x82\x07\x64\x7b\x5b\x96\x2b\x0d\x0e\x85\x26\xa7\x7d\x53\x1b\x38\x98\x30\x90\xca\x6b\x90\xa1\xcf\xc4\xac\x02\xa0\xaa\x6f\x10\x58\xfa\xe2\x4b\xdf\xae\x89\x5a\xa5\xd7\x2f\x7d\x59\xce\xe0\x14\x0b\xa0\xb1\xe3\xac\x3c\xf4\x7e\xe4\x5d\x33\x9e\x06\x05\x61\x4c\x2c\x9b\x03\x91\x94\x20\x0a\x08\xa7\x4d\x78\x68\x06\x3e\x33\xd9\xde\xde\x76\xa5\x8b\xc5\xfa\xa3\x01\xeb\x06\x31\x7b\xd0\x3a\xff\x9a\x27\x71\x8b\x15\x15\xb6\x59\xaf\xc3\x60\x65\x58\x8e\xdf\xfc\xf1\x0a\x3a\x3c\x54\x7b\xea\xb9\x1f\xe4\x7d\xbb\x42\x85\xad\x47\xe7\x1f\xb6\x40\x14\x18\x2d\xbe\xbe\x02\xc3\x61\x7c\x0d\xa8\x34\xbe\xb5\x4e\x7b\x05\x5e\x20\xd0\x5c\x31\x58\x71\x07\xa8\x00\x20\x63\x38\xba\x51\x86\xb8\x81\x22\x43\x30\xde\xaf\x09\xea\x66\x77\x57\x9d\xa0\xaa\x00\x1c\xa6\x9c\x2f\xd7\x1c\xd8\x29\x50\x21\xf0\x2b\xc7\x6a\xd9\x1d\x90\xae\xce\xf2\xf3\xb5\x59\xb3\x50\xa2\x6f\x60\xbb\x7b\x93\x5f\xfb\xb3\xe5\x50\x1c\x6d\xb4\x6b\xe3\x25\x07\x1a\x43\xfa\xfd\x4c\x31\xbf\x22\xc7\xed\xbf\x7d\xe4\xbc\x59\x04\x35\x64\x67\xc7\xbf\x78\x5d\x66\x14\x0c\xd2\xed\x5c\xde\x8d\xd1\xa8\x80\x5a\xec\x90\x1b\xeb\xc2\x23\xf5\x37\x35\x61\x33\xa3\xf1\xee\x7f\xfc\xb1\x7e\x32\x9b\x9d\x6d\xef\x4e\xd4\x08\x8c\x3f\x24\xf9\x11\x0f\x54\xa4\xdb\x61\xbe\x04\x2a\xe0\x1b\x2a\x81\x89\xcb\xf2\x4d\xc8\xcb\x21\x55\x76\xf9\x5d\xb2\x13\xcf\x59\x61\x92\x68\x5e\x9f\x07\x3b\xb2\x33\x86\x84\x9b\xdf\xb3\x4e\x2c\x09\xbf\xbd\x95\xfd\xb9\xbd\x05\x3d\x2e\x36\x6d\x02\x75\xbb\xf1\xa7\xee\xa0\x2e\x86\xcf\x0c\xca\x3b\x51\x32\xcb\x44\x8d\xb6\xd1\x2a\x30\x70\x08\x73\xde\x45\x0f\xb8\x15\x60\xd4\xba\x8f\x18\x4b\xbe\x7b\x2d\xa0\xdb\x5e\x8f\x79\xe2\x03\x24\x9b\xe0\x4e\xfd\x5f\x5d\x68\x4f\xbe\x81\xeb\xcc\xa3\x8d\x17\xd1\x87\xdc\x64\x36\x9a\x70\x47\xc6\xba\x5b\x2a\x16\xda\x6e\xf5\x88\x84\x1f\x32\x68\x81\xad\xe6\x57\xa8\xc0\xee\xbf\xc2\xf5\x5c\xc4\xa3\x3b\xda\x43\x54\x62\x43\x17\xbb\x87\x58\xe2\xf6\x5a\xd1\x0e\x58\x0a\x83\x8c\x2c\x8a\x84\x13\x18\x9d\xde\xc9\x56\x75\xa7\xe3\x6e\xa2\xfe\xf2\x30\x15\x59\x90\xf7\x1f\x19\xf1\xf9\x6a\xea\x61\xb2\xc6\x89\x97\xe2\x89\x4b\xb7\xbf\xc1\x3d\x4c\x2c\x1d\x47\xdb\x9d\xce\x57\xc9\xc1\x83\x6f\xfb\x41\x64\x86\xa0\x4b\xa5\x8b\x54\x03\xec\xf6\x3c\x2c\x47\x1d\xaa\x11\xb0\xd4\xa3\x87\xd4\xe2\x41\xc8\x83\x2a\xb4\xdf\x84\xda\x1d\x3e\x2e\x5a\xa1\x98\xc3\x5e\xb3\x47\xb1\x77\xc3\x61\xe5\xf1\x0b\x23\xc6\xc3\x08\xa6\x55\x55\xdc\x58\x02\x09\x2d\x4c\xfc\x07\xc4\xd8\x01\xd9\xc0\x4b\x6a\x48\xd4\x26\x8a\x53\x05\x71\xcf\xe1\xdd\xbe\xf2\x09\x12\xba\x59\x3f\x48\xcf\x81\xed\xec\x13\x92\x23\x3c\x90\x24\x08\xdd\x61\xf7\x68\x40\x91\xf6\xea\x61\x13\x41\x71\xb3\xde\xeb\x72\x1d\xaf\xe0\x07\x52\xea\x8f\x3e\x5e\x48\x9c\xfd\xbe\xfc\xa5\xd6\x59\x43\x69\x5c\x48\x11\x36\x8e\xdf\x12\x0a\x13\x61\xbd\xe3\x10\x35\x85\x4d\x12\xdf\x86\xdf\x98\x9a\x6e\x4c\xa1\x63\x36\x2c\x0d\x48\x7b\x7b\x0b\x79\xa6\x68\xc4\x2a\x96\x95\xa3\x1a\xec\xeb\xad\xba\x92\x17\x59\x24\xaa\x9f\x16\x06\x90\xae\xaa\x37\xc4\x1e\x40\x58\x00\x5b\x01\x3a\x06\xcb\x2c\xce\xb5\x3c\x03\x97\xd7\x73\xdd\x1e\xd9\x9f\x14\x40\x89\xae\x9d\xce\x59\x3f\x99\xa8\x06\x1d\xa4\x30\x68\x02\x75\x02\x72\x87\x6e\x72\x75\x8b\xde\xeb\xf6\x7a\x99\x67\xf9\xc7\xb4\x6e\x2d\xbf\x66\x13\xb2\x0b\x38\xd9\xb4\x62\x79\x9c\xe3\x7f\xaa\x27\xea\x39\x87\x87\x50\xfb\xbe\x9e\x8e\xc3\xa4\xdd\xef\x2f\xca\x0c\x25\x9f\x6f\x4b\x80\x62\x4a\x2b\xb4\x83\x5c\xa5\x95\x77\x34\x07\xd7\x30\x6f\xe4\x69\x58\x4b\x4d\xcf\x1e\x58\xd8\x85\xa5\x50\xcf\xf9\xa3\x06\x4e\x88\x1e\x80\xab\xee\x73\x9e\x74\x4b\x42\x88\xb5\x3d\x61\x72\x5e\xc1\xcd\x3c\x2d\xa9\xe1\x07\xf0\x70\xc0\xaf\xec\x9f\x69\x95\xd6\xba\x6c\x3f\xb8\x80\x32\x88\xbf\xb4\x2b\xa0\x16\x51\x8e\xbe\x43\x5e\x86\x8c\x03\x6a\xf3\xce\x8b\xb4\x69\x3e\xa4\xab\xc0\x99\x01\x85\xaa\xd2\x55\x0d\x2d\x3e\x64\x8b\xcf\x00\x27\x17\xfd\x99\x49\x4e\x6b\x6b\xa5\x9f\xe0\xc5\x97\x0a\xa5\xa1\x40\xd0\x55\xb2\x98\x01\x69\xc4\x44\xb5\xa6\x47\x0a\xe1\x36\x4a\x8b\x32\x88\xd1\x68\xa2\xe6\x05\x9f\x94\x22\x1a\xd7\xb1\xae\xbc\xf0\x83\x5e\xa4\x75\x0a\xaa\x53\xa9\xbb\xac\xf5\xdc\x9c\x97\xf9\x9f\xfa\x7d\x5a\x5f\xe8\x7a\x9c\x67\x52\xa6\xe2\xb6\xff\x0a\xbe\xca\x88\xa3\xf0\x62\x9a\x03\x66\x6c\x9e\x1d\xd0\x68\xb9\x1c\xb6\x51\x3a\x50\x8a\x52\x33\x3d\x1f\x00\x5d\xd8\x3e\xe4\xe6\xf2\x15\x23\xec\x4d\xa0\xd8\x74\xa5\xa7\x19\xf0\xde\xe3\xa6\xad\x03\x1f\x15\xff\xa8\xb8\x05\x51\x65\x4d\x5b\xf7\x17\x79\x95\x16\x17\x62\xe9\x11\xff\x0e\xa2\x3b\x93\xe9\x13\xf2\xc0\xd8\x0b\x71\x89\xe6\x2b\x92\x05\x41\xc2\xf3\x38\x8e\x52\x0b\xa6\xfe\x82\xed\xa1\xf4\x3d\x18\x79\xdc\x23\x4a\x61\x6f\x09\xb6\x48\x5b\x02\xd1\xd3\xf8\x7a\xb3\x7b\x0e\xb7\x9b\x8d\x0e\x02\x2c\x2c\xb0\x73\xf5\xf6\xd5\x60\x3b\x31\xc1\x28\x21\x20\x3d\xd1\x60\xce\x1a\xa3\x0f\x73\xd8\x55\x90\x99\x97\x99\x5d\x3c\xcd\x78\x93\xf4\x8b\xa5\xd3\x93\xce\x8a\xdb\x76\x75\x84\x50\xc5\x18\xd9\xd2\x8b\xc3\x19\x10\x12\xeb\xb6\xf7\x3f\x5b\xf3\x78\x96\xf4\x80\x5f\xdb\x91\xec\x11\xcf\xf5\x81\x07\x26\xe8\x68\x40\x8b\x30\xe9\x62\x5e\x47\x03\xea\x96\x45\x34\x8a\x38\x49\xcc\x69\xa1\x83\x07\x71\x50\x3d\x90\xb5\x70\xda\x34\x3f\x82\xe6\xf4\x50\xed\xfe\xc7\xb8\xaa\xf5\x6d\x96\x5f\xde\x56\xc9\x37\xbb\x39\x92\x27\xb7\xf8\x80\x3a\x89\xea\x29\x23\x62\xe9\xe1\x36\xe3\x72\xfb\x10\xeb\x90\xbd\x5b\xe6\x45\x66\x29\xe4\x20\xde\xb6\xdb\x00\x22\xed\xa7\xfc\x34\x04\xf6\x8b\xaa\xc6\x8d\x2a\x42\xe5\x09\xc7\xaa\xce\xde\xf9\xde\x2f\x22\x9e\x23\x97\xe6\x6f\x1e\x6d\xc8\xed\xcc\xd0\xaf\x19\x9a\xe7\x83\x0c\xb0\x9a\x01\x60\x82\x4d\xec\xbf\x4c\x4a\x1b\x90\x9e\x74\x25\xef\x22\x4e\xdd\x56\x4c\x8a\x9d\xbe\x10\x2d\x3d\xc9\xc6\xd3\x91\x5d\x94\x75\x3b\xf9\x7b\x49\xbc\x63\xe4\x3f\xf2\x0a\x1c\x3f\xa0\x25\x9c\x41\xf5\x25\x92\x23\x8d\x35\x9d\x7a\x03\x25\xce\x29\x56\x0f\x1d\x39\xf3\xd5\x94\xe3\x2f\xd0\x63\x8f\x02\x27\x32\x4a\x22\x9b\x2d\x4b\x76\x0e\x94\x3b\xc8\x67\x1d\x35\x88\x1d\x74\xd1\x66\x38\x71\x0f\x64\x2f\xf8\xa7\x3c\x74\x43\x30\x16\x97\xf8\xf6\x56\x64\x1c\x18\xa4\x0e\xbb\xa6\x04\x16\x63\x54\x8f\xa5\x02\x7d\xaf\x07\xcb\xee\x83\x8e\xe8\xdb\x21\xfd\xae\x22\x41\x90\x64\x9e\xfc\xbf\xf5\x1a\xcd\x7f\xca\xfd\xc4\x71\xaa\x29\x2f\x0e\x37\x91\xce\xb2\x8c\x01\x7b\xcc\x3c\x6d\xe1\x13\x32\x61\xc0\x6c\x72\xf6\x78\x05\xde\x31\x98\x96\x5b\xae\x5f\x95\x9d\x17\x30\x71\x40\x34\x91\xd0\x4e\x50\x3f\x78\xc7\x2c\xe0\x66\xc4\xf1\x0b\x73\x5a\xd2\x7c\x3e\x72\x16\x7c\x54\x10\x19\xf0\x75\x17\x29\xc7\xe7\xff\x60\xfc\x88\x50\xbc\xfe\x59\xb0\x36\xe5\x3e\xa2\x42\x79\xd0\x3d\x03\x25\xd7\xb0\x83\x8a\xe8\xdf\x3c\xc1\xe2\x16\xcd\x0f\x4f\xee\xc2\xeb\xae\xa0\x69\xb5\x6e\x5a\x12\xec\x05\xef\x12\xb5\xaf\x82\xf6\x6f\xc9\xb3\x61\xa0\xb3\x09\xf2\x60\x81\x62\x07\x99\xc4\x50\x70\xca\x8c\x9c\xd8\x6c\x21\xc5\x54\xcf\xb1\xd3\xfb\xe4\x6f\xd9\x9a\x4a\xa4\x75\x77\x64\x2e\xe2\xf1\xe3\x01\x62\xef\x44\xd1\xf0\xd9\xcf\x75\x3f\x7d\x8e\x9b\x14\xb9\x00\xc2\xbd\x85\x97\x95\x1f\x6e\xce\xe5\xe9\x39\x57\xce\x5b\x8f\x44\xdd\xd4\x09\xb9\x83\x1f\xc9\xa9\x17\xbd\xec\x49\xca\xb7\x19\xef\xda\xe1\xa6\x87\x5e\x4d\x14\x38\x6e\x84\x7e\x1c\x5b\x31\x9c\xd7\x98\xdb\xeb\x46\x35\xdc\x2c\x11\xa5\xd8\xd9\x43\x52\x31\x66\xa7\x10\xe1\xff\xb1\xaf\x66\x49\x14\x51\xdd\x3b\x93\xe4\x04\xa2\x21\x1a\xa3\xc0\xe3\xa3\x61\xa2\x21\x6a\xfa\x8c\x34\xe9\x33\xe8\x4c\x2a\x47\x87\x3e\x5b\xce\xf5\xfb\x4e\xd8\x9c\x35\xdb\x2a\xaf\xd2\xea\xd3\x67\xb5\xad\x9e\x74\x02\x8c\x33\x7d\x74\x53\x7a\x7b\xab\xe4\x6b\xec\x79\x37\x78\x52\x11\xa8\x76\xb9\x0f\xc1\x46\x90\x1b\xc3\xee\x14\xcb\x2b\x44\xa5\x80\xd1\x28\x34\xee\x54\x6d\xd3\xe8\x8a\x24\x7e\x21\x41\xf9\xa2\x69\x8f\x7c\x8b\x81\xd5\x58\x8a\x4e\x72\x96\xe7\x6a\x0f\x46\xfe\x34\x08\xce\x40\xfb\x92\x37\xe4\x44\xcd\x45\x68\xcd\x10\x10\x5b\x82\x09\x31\x3f\x7b\xcf\xca\xd8\x12\xac\x69\x97\xe4\x51\xb8\x76\xb8\x01\xc2\xfe\xde\xdd\x55\x6f\xde\xfe\xf6\xfe\x35\x1a\x7f\xe5\x8d\x4a\x8b\x42\xd5\x1a\x6c\xd1\x9a\x65\x7a\x71\x33\x25\x3f\x17\x84\xaf\x00\x3b\xb7\x85\xbe\x02\x33\xb1\x46\xe5\xad\x02\x79\x8a\x6a\x0d\x25\x40\xe7\xe5\x22\xbf\xd0\x05\x28\xb1\xd0\xf4\xad\xaa\xcd\x59\xa1\x57\x8d\x3c\xdc\x00\xa0\x49\x6c\x20\xc1\x04\x81\x89\x8d\xdc\xb0\xea\xf9\x86\xbd\xbb\xc3\x1b\x7c\xdf\x2e\x4c\x28\xf6\xc0\x95\x0e\x7f\x65\xd9\x7e\xeb\x88\xe1\x84\x54\x13\x4a\x2c\xcf\x99\x99\x60\xe5\x60\x44\xe3\x03\x52\x50\x57\xba\x0d\xa0\xb5\x09\xfc\x9e\xdb\xc6\xd9\xae\x24\x6e\xc8\x55\x88\xcf\xf6\x05\x7b\xba\xcd\x0d\x95\x97\xa9\x88\x34\xb9\x81\xc3\x80\x28\x92\xf4\x84\x66\x08\x38\x7a\x20\xfe\xc5\x81\x39\xa0\x2c\x07\x3e\x2b\xfe\x88\x73\xf6\x8e\x0d\x26\x9d\x70\x16\x39\x3a\x1c\xe9\xff\x1f\x1f\x9e\x6d\x6a\xeb\x3d\x03\xf4\xcd\x9e\x1d\x22\x6a\xc1\xe0\x18\x21\x48\xcf\xc9\xeb\xdf\x4e\x5e\xfc\xfc\xfa\x45\x17\x9d\x87\xfd\xc7\x1f\x0a\xcb\xb3\xbb\xab\x8e\xb5\x16\xe6\xce\x60\x44\x29\xf0\x77\x9d\x21\x73\xad\x2f\xb9\xd0\xd1\x88\xb7\x55\x91\x9e\xa3\x1d\x66\x5e\x22\xf2\xa8\xc3\xce\x54\x57\x5a\xe9\xeb\x4a\xcf\x5b\x32\x27\x6f\x8d\xb2\x47\x0b\x48\xc0\xd2\x42\x35\xc6\x90\x0d\x6b\x69\xae\x14\xae\x4e\xd5\x98\x95\x46\x20\x18\xd8\x5e\xea\xdb\x0b\x7d\x03\xa6\x9b\xdf\x2a\x53\xab\x6f\xa1\xa0\x6f\x13\x68\x62\x5a\xb3\xdd\x28\x41\xfe\xe4\x76\xb4\x9a\xfc\x52\x17\x37\xd3\xc8\xfa\xfa\x4d\xea\xd1\xeb\xb8\xcf\xc5\x62\x07\xfa\x07\xb0\x5e\x2d\x29\x4f\x1c\xca\x0c\x47\xa1\xb8\x07\x54\x88\x11\x55\x5b\xa3\xae\x4c\x7d\xa1\xd2\x1a\x56\xd5\xdb\xd7\x2a\x6f\x9a\xb5\x56\x57\x79\xbb\x14\x2a\xec\x33\x6d\x8b\x59\x98\xfa\xdc\xb4\xad\x2e\xd1\x8c\x15\x1d\x2a\x56\xe6\x52\x37\x2a\xbd\x4a\x6f\xf0\xd6\xc4\x60\x01\xdc\x86\x65\xda\x04\xb6\xcd\x12\xa2\xa8\xa3\x12\xbb\x3b\xd8\xda\x0a\x16\xc2\x7f\x17\x2c\x11\x9b\x33\xe3\x50\xfc\x5a\xdb\x43\xd9\x4e\xce\x32\xcf\xc0\x92\x17\xe6\xdd\xf7\xc4\x43\x17\x41\x46\xcf\x04\xc7\xd8\x07\x64\x23\xb0\xd4\xaa\xd1\xab\x1c\xbf\xba\x82\x68\xc1\x35\x8a\x0c\xfa\xd9\x1a\x58\x83\xbd\xb2\xb1\x37\x7a\xcc\x4f\xdf\x27\xd0\x24\xf2\x7b\xa0\x56\x4d\x1d\xdb\xc7\x8d\x71\xa5\x03\x60\x40\xc8\x6c\xc5\xe8\x68\x01\xd0\x02\xb8\xcf\xc4\x29\x24\xc0\x02\x36\xe6\x83\xd6\x19\xae\x14\xb0\xa5\x3e\xcb\xcf\xd5\x59\xb1\xd6\xca\x12\xa5\x0b\x3b\x77\x64\xa4\x6d\x4a\xf5\xde\x9c\x59\x0e\xed\x38\x5d\xa4\x75\xae\xc6\x6c\x4b\xdd\x68\xbd\x72\x2b\x2d\x2f\x01\x60\xe3\x2f\x2a\x2d\x6f\x56\xa6\x76\xe2\xf8\xdc\xa0\xc7\xbc\x8e\x62\x0f\x40\x34\x61\x3c\x0e\x21\x52\xeb\xbd\x00\x36\x39\xf0\xb1\x02\x4b\xe9\xd9\xa1\xfa\x37\xb6\x8d\xfe\x66\x2f\x58\x90\x42\x63\x18\xad\x53\x71\x9f\xf4\x24\x06\xd5\x81\x89\x6c\xcb\x7f\x13\xe0\x14\x1a\xc9\xb2\x03\x08\x54\xf2\xb6\x9c\x9b\x95\x17\x98\x88\xa6\x2d\xd2\xa6\xfd\x18\x36\xcf\xab\x4a\xd0\xd9\xe8\x7f\x6f\x48\x9e\xff\x1f\xc1\xe9\x6c\x44\xca\xc1\x4b\x58\x3f\x58\x4e\x37\x52\x36\xd1\xbf\xe0\xf4\xe2\x8f\x02\xf7\x44\xb4\xb3\x0b\x67\xd3\x8f\x66\xd2\x07\xb0\xd3\x07\x87\x84\xab\x6f\xbe\x6e\xa3\xb5\xe7\xd8\x1e\xde\x05\x08\x26\x12\xae\xb5\x44\x7e\x47\x24\x92\x38\x01\xe3\x91\x84\x58\xee\xf7\xef\x2a\x38\x68\xdf\x96\xbf\x42\x90\x8b\xb1\x33\xf2\xc6\x9d\xf5\xb0\x55\xfd\xe0\xbd\xe5\x7d\xf0\x98\x20\x7e\x44\x55\xb3\x2a\x4d\xbd\xb2\xfc\x80\x37\xf4\x0a\x88\xf9\xf8\x4a\x33\x5f\x6e\xd6\xb5\x32\x57\x65\x12\xf6\xd7\x21\xc5\x4c\xd4\x08\x0b\xd9\x00\xc0\x86\xe8\x04\x43\xfd\xb6\xdd\xd3\xff\x19\xe9\xc0\x75\x84\xf7\x46\x33\xb1\x01\xee\x2d\xc0\xee\x25\x00\x07\xdc\xb4\x08\x76\x3a\x1e\xd9\x23\x7e\xe4\xf9\x4a\x72\x2d\x93\xa6\x31\xd1\x2b\x5c\xfb\x88\xcb\xe4\xe4\xcc\x51\x1a\x75\xe8\x09\x89\xad\x75\x1f\xff\xb0\x69\x21\x94\x00\xd4\x63\x95\xd6\x17\xa4\xb7\xb1\xdf\xa3\xb6\xb5\x66\x94\x4c\xd4\x17\xa7\x90\xdb\x0f\x82\xa5\xb9\xda\x46\x77\x42\x8a\x92\xf4\x0f\x4d\x8c\x11\xd7\xe3\x9c\xd7\x63\x97\x12\x9e\x13\x3d\x1d\x0d\x07\xa3\x3f\x8d\xb4\x83\xa1\x26\x6e\xe2\x8a\x1e\x00\xc9\xb3\xbb\xab\x7e\xd6\x59\x9d\x5e\x21\xfe\xbc\x4b\x99\x96\xd9\xae\xa9\xe9\xf8\xfe\x0a\x5f\x0a\x89\xe3\x7a\x2f\xe2\x8f\x25\xba\xd8\x86\xf7\x00\x31\xbf\xd4\x2a\xe6\x8a\x4a\x9d\xd6\xd2\xdb\xab\x35\xec\x4b\x44\xa1\x33\xec\xa8\xa4\x75\x9b\x2f\xd2\x79\xdb\x78\x48\x19\x3e\x26\x2c\x07\x0a\xc3\xf2\x6b\xde\x2e\x71\x31\xc8\x85\x3c\x10\xe6\x15\xfa\x37\x10\xf5\x4b\x84\x7b\x65\x99\xe7\xd1\x62\x21\x4c\xce\x99\x5b\x3a\xd7\xed\x8f\x96\x71\xce\xcb\xf3\x97\x80\x1d\xfb\xb3\x9e\xb7\x63\x12\xdf\x85\x59\x58\x64\x3f\x90\x85\xec\xee\x40\xdb\xdd\x6a\x34\x48\x76\x58\xb3\xb3\x89\x37\xd2\xdd\x04\x78\xab\x76\xd4\xde\x6c\xa3\x45\x6e\xf0\x4f\x84\x6a\x55\xdb\xdc\x64\x82\x8a\xa5\x3e\x03\x2e\x6d\xd4\xb8\x77\x18\xd5\xf6\x2b\x5a\xc7\x61\xe5\xbe\xa6\x71\x61\x10\x5d\xdf\x3c\x78\xf4\xed\x83\x68\xb9\x09\x0b\x44\xbb\x30\x51\x43\xfb\x66\x18\x1f\xca\xee\x94\xd2\x0b\xbc\xef\xdf\x11\x43\x70\x05\x3d\x30\x07\x50\xf6\xbd\x38\x07\xfd\xf8\x06\x98\x57\x00\x1c\x10\xcc\x2e\xbc\xc6\x25\x13\xe9\x85\xe5\x5d\x85\xb8\xea\x16\x16\x96\xcc\x83\x91\xc2\x86\xd2\x53\x04\x63\xce\xf0\x0e\xe7\x82\x72\xa0\x39\x13\x90\x97\x46\xa3\xc3\xa6\xbb\x31\xcf\x4d\x5d\xeb\xa6\x32\x65\xc6\x41\x21\x3c\xe1\x19\xe3\x26\x3f\xd3\x0a\x22\xe6\x4f\x6c\x11\x70\x15\x2a\x4d\xab\xda\x9b\x0a\xf6\x7b\x99\xd9\xc7\x25\x5c\x90\x1b\xca\xac\xb3\x64\x70\x42\xbb\x46\xa2\x58\x52\xec\xe4\xef\xcd\x9b\x3e\x6a\xd8\x85\xce\x7d\x76\xc8\xc2\x33\x5e\x05\x5b\x0f\xe1\x89\xfb\x44\x0f\xaa\x03\x47\x18\x71\xc4\xd2\x35\x92\xc9\xa3\xe3\xf3\x28\x57\xc0\x93\x47\xee\xe1\x21\xb3\x27\x4b\x49\x04\xaf\xd7\x7b\x41\x72\x60\x01\xd1\x3d\x88\xdb\x7a\x17\x02\x51\x3f\x92\x83\xdb\xd3\xdb\xfe\x2e\xd0\x18\x7c\x75\x23\xdc\x65\xec\x6e\xe3\x9e\x7e\x10\x74\x81\x3b\x76\x36\x52\x87\x87\x00\x17\x90\xc7\xd0\x86\x62\xfe\x79\xc8\x09\x30\x5c\x78\xb4\xc2\x7b\xf5\xed\x6d\x10\x57\xf5\x51\x34\xcc\x7e\xed\x01\xca\x52\x38\x05\xc4\xc7\x32\xf7\x9b\xb6\xf3\xa5\xf2\x10\x4a\x6f\x5f\xff\x05\x1d\xaf\xdb\x65\x6d\xae\x6c\xfb\xec\x8e\x75\x43\x95\x37\x4c\xf8\xf6\x55\x69\x4a\x8d\x81\x6a\x00\xc4\xf8\xd5\xd1\xfb\x7b\xe7\x65\x18\x99\xc2\x35\xcf\xc3\x53\x6c\xde\xe0\x43\xb6\x85\x5b\x1b\xa8\xdd\x30\x59\x9b\x6d\x6c\xf6\x46\xc0\x09\x42\xf7\x28\xcc\x15\xde\xbc\x15\x91\x42\xfb\x04\xd2\x38\xa4\x84\xe8\x18\xd2\x4c\xd4\x1a\x78\x3b\x88\xac\x83\xd7\x86\x3a\x6d\xb5\x32\x0b\x96\x02\x4e\xd5\xc9\x32\x6f\x20\x52\xd1\xba\x6c\x54\xda\xa8\xc2\x58\x32\xd8\x84\xf2\x21\x16\x0d\x4d\x87\x97\x2e\x35\xe9\x1f\x31\x3f\x16\x52\xc7\x3e\x2b\xef\x87\x43\x42\x0c\xda\x7c\x0b\xee\x58\x9a\x71\xf7\x90\x32\x06\x45\x12\x23\xec\xb9\xe1\xdd\x5d\xf5\xab\x3d\x30\xd2\x92\x84\xae\xcb\xb4\x51\x9f\xd7\x4d\xab\xe6\x66\xa5\x1d\x5e\x40\xde\x08\x65\x47\x9a\x41\x80\x25\x9c\x11\x88\x66\xc4\xd4\x9b\x2f\x6e\xa1\xd8\x6f\xa2\xae\x50\x9e\xaa\x16\xf6\x8a\x58\x83\x43\x30\xba\x39\x40\xe9\x1c\xd0\x89\x7c\x7f\x50\x44\xdc\x28\x83\x65\x35\xf3\x5a\xeb\x52\xfd\x7d\x9d\xcf\x2f\x8a\x9b\xe1\xe9\x62\xd9\xcd\x00\x16\xc6\x2a\x6f\x1a\x9d\x79\xd3\xbc\x18\xe0\x44\x82\x7d\x90\xb0\x98\x2e\xb0\x5e\x02\x14\xcc\xfe\xdc\x59\x15\x77\xae\x2b\x28\x7e\xa1\xef\x10\x4d\x03\x2a\x4f\xd4\x17\xd7\x0a\xb4\x45\xec\x42\x8c\xfc\xcb\x6c\xa2\xaa\x44\x7a\xe7\xf5\xb5\x0c\xfa\xc0\xd9\xfd\xc4\xb2\x30\xa1\x5b\xec\x13\x28\xd6\x73\x19\x29\x09\xf8\x49\xd2\x2c\x48\x14\x8a\x4a\xd1\xfe\x3e\x08\x52\x01\xbe\x5a\x96\xda\x4d\xdd\xa2\x11\xf3\xee\x19\x8b\x89\xca\x61\xbd\x54\x96\xcc\x30\x3e\x7b\x54\x3e\x2c\x1a\x4a\xaf\xc6\xeb\xb2\x00\x68\x06\xc8\xb6\x5c\x9f\xeb\x18\x61\x2e\x55\x60\x6f\xb7\x34\x45\xa6\x41\xb6\xbb\xbb\xab\x60\x75\x4f\xb1\x1d\x3d\xec\xcd\x44\xde\x83\x9a\xbc\x6d\x48\x55\xc6\xaa\xa0\xe2\x06\xdb\x40\xd7\x27\x35\x26\xb4\x3a\xe0\xa3\x92\x09\xd5\x6e\x0b\x6c\x4d\x0d\x28\xc4\xca\x9f\xca\xe3\x2b\xad\x56\xeb\x06\x16\xae\xa5\xde\xb5\xe3\xda\x1c\xa1\x47\x81\x34\x1c\xed\x1e\x55\x03\xb6\x12\x98\xc2\x34\xea\xed\xfb\xd7\xc9\xf0\x62\xae\xbe\x8e\xee\x74\xd9\xeb\xbc\x8f\x7d\x98\xa8\x0e\x67\xe1\x5e\x90\x52\x24\x2f\xe7\xda\x29\x49\xe7\x29\x38\x21\xa5\xea\xbb\xc2\xb4\xdf\x4d\x18\xdc\xef\x2c\xcd\x0b\x65\xd6\xad\xa5\xa9\xf3\xa5\x4e\xab\xe2\x46\xa5\x0d\xab\x62\x10\xeb\x0f\x07\x00\xa7\x14\x6e\xe9\xd8\x79\x9e\x29\xc4\xec\xd0\xd9\x54\x49\x06\x05\x8b\x80\xe3\xf3\x0c\x17\x1f\x4c\x3f\x0b\xf7\x6b\x0d\x9a\x5b\x55\x18\x0c\x89\x86\x81\xd5\xc2\xd5\x85\x45\x84\xcb\xc7\x32\x04\xb0\x3c\xda\x86\x22\xda\x5f\x99\x75\x91\xc1\x74\x5f\x57\xa8\x31\x9a\xde\xcf\xda\x3e\x8a\x89\xab\x47\xd6\x1c\xcb\x5e\xa0\x5c\x23\x81\x8d\xef\xc7\x1b\x42\x04\x45\xcc\xb1\xcb\xdf\xe3\xad\x22\x4e\x04\x0a\xe3\x80\xe5\xe0\x27\x6c\xc7\x85\xbe\x39\xd6\x7f\x8f\x50\x45\x23\x94\x00\x32\x4f\x46\x92\xc0\xb1\x0c\x2d\xa3\xb2\x70\x93\x41\x94\x6a\x02\x13\xeb\x06\x82\x62\x7c\x85\x3d\x18\x64\xd5\xbb\xce\xdf\x96\x48\x08\x85\x58\x69\xca\xc6\x0e\xf5\x3c\x10\xf4\x79\xfd\x5b\x5e\xaa\xb7\xaf\xff\x6d\x77\x6f\x86\x04\x82\xa6\x51\x5f\x57\x45\x3e\x07\x7f\x0c\x3c\x16\x52\xbb\x3e\xed\x61\x5f\xe7\x97\x96\x42\xc1\x66\x5b\x97\x39\xc1\xc3\x50\xf8\x3c\x7b\x78\x60\x11\xa0\x4e\xbc\xd0\x37\xf6\x38\x3b\x33\x80\xff\xf2\x3e\x9d\xab\xf1\xff\x78\xf2\x2f\x7f\xf9\xb7\x84\x3b\xbb\x51\xd3\x11\xf1\xd0\x64\xc3\xe1\x27\x6f\x95\xce\x6d\xd2\xdd\x4f\x7f\xac\x17\xff\x3a\x9b\xed\xd8\x3f\x8b\xc5\x29\x99\xb6\xb7\xe4\xf0\xcd\xb2\xd2\xe1\xf8\xa6\x81\x7d\xbb\xf0\xb1\xf7\x58\x1b\x91\x7d\x5d\xa3\x8b\x37\x08\xee\x46\x8b\x55\x12\x09\x17\xbe\x8b\x83\x6b\x91\xbb\xa9\x54\xf5\x63\x92\x43\x35\xbb\x7e\x32\x9b\x9d\x85\x0b\x16\x4c\xe7\xe5\xad\x0b\x6d\x9d\x47\xe2\xfa\x23\xf3\xef\x65\x2e\x68\x03\x77\xea\x20\xb8\x2d\xcc\x57\x53\x7d\xad\xe7\x2f\xcd\x6a\x95\x96\xd9\x78\xb4\x2e\x33\x33\xf2\x20\x95\xbb\xbb\xea\x4d\x8e\x30\x44\xe0\x47\xc1\x08\xa4\xc4\x49\x10\x0f\xe2\xf0\x83\x4a\x0f\x8f\x9b\xae\x34\x3a\xa9\x17\xd2\x03\xdb\x35\xdd\xb9\x98\x4b\x13\x30\x6f\x02\x05\xd9\x9f\xaa\x02\xa0\x6c\x5d\x1e\x31\x5e\x36\x41\xc2\x86\x3b\x9d\x0f\x09\xf8\x35\x43\x21\x28\x36\xd9\x88\x51\x13\xfa\x44\x21\xb6\x04\x38\xe8\x83\xfb\x2c\x14\x28\x48\xb4\x37\xfc\xb0\x5f\x7a\xe5\x3d\x64\x8b\x16\x7b\xea\x3d\x57\xa3\xef\xf0\x49\x8f\xc8\x62\x2d\x41\x45\xd8\xee\xae\x7a\x65\xca\x6f\x01\x56\xea\x52\x23\x67\xdc\x4b\x47\x55\x03\x27\x41\xde\xaa\x55\x7a\xa1\x1b\xb5\x58\xd7\xa0\xd2\x67\x45\xb8\x65\x3a\x3c\xf3\x19\x7a\xd6\xce\x66\x60\x42\x04\x6f\x21\xf0\xe5\xd1\x02\x55\x29\xea\x99\xda\xd9\xf3\xa2\x6d\xbe\xcc\x32\x47\x1b\xdc\xf1\x43\x84\x82\x9e\x24\xd0\x6c\xd2\xef\x6d\x76\x73\xec\xb8\x38\xf6\x09\x8f\xfb\x13\xa1\x64\xc1\x49\xcb\x3b\x89\x86\xc5\xe7\x0f\x17\xcf\x7d\xbd\x9c\x5d\x7a\x15\x6f\xba\x77\xdd\xe3\x4a\xdc\x77\x5b\x71\x44\x0f\xd9\xd9\x44\xe2\xfa\x45\xfc\xe7\x3d\x77\xd5\x01\x4f\x44\x5f\xf5\x3f\x26\xb8\x40\x57\x65\xaf\xa7\xdd\xdc\x84\x21\x1f\x3c\xdd\x8f\x74\x18\x85\x5a\x1a\x92\xdb\x83\xc9\x00\x26\x8a\x4c\x1b\x2a\x0e\x77\xfa\xa6\x36\xab\xf7\x66\xdd\x68\x52\x9b\x4d\x48\x02\x8f\xf2\xf3\x58\x51\xe7\x03\x56\xb3\x25\xa9\x2d\xe8\xf6\x16\x98\x68\x34\xaa\xe7\x2b\x24\xa0\xc6\x55\xba\x26\x59\xc2\x62\x91\xcf\xd7\x45\x3b\xdd\x62\xf5\x04\x73\xa2\x14\x2c\x16\xb7\x89\x3f\x70\x4d\x59\xdc\xb0\x54\x62\x5e\xe4\xf3\x0b\x28\x06\x24\x11\x18\x80\x8c\x09\x6f\x13\x32\x65\xf6\x52\xf0\x2d\x10\x76\x37\x2b\x47\x72\x74\xbf\x55\xc8\xad\xd8\xe2\xec\xba\x9c\x7a\x7d\x86\x26\xf9\x9c\x97\xcf\x0c\x96\xc2\x08\xd1\x90\x09\x11\xa1\x59\xb3\xe0\xcc\x9d\xc1\x4b\xf1\xf0\xd0\x59\x65\x49\xef\x53\x84\x17\xf3\x85\x27\x83\x48\x60\xb6\x94\x8e\x02\x39\xc0\xe3\x7e\x79\x7c\x0c\x54\x86\x04\x1d\xf3\xa6\x41\x77\x7f\x53\x64\x14\x9b\x1b\x53\xe0\x3a\x08\xa5\x22\x94\xd8\x5d\xc5\x7a\xbf\x5a\x32\xc7\x6a\xb2\x7d\x95\x9e\x35\xa6\x58\xb7\x7a\x14\x9a\x87\xff\x68\xae\x3b\x75\x0c\x2b\x3e\xe2\xd6\xf6\x57\x71\xa0\xc0\x24\x64\x5f\x7d\x3f\xab\xae\x0f\x14\x86\x90\xa3\xa7\x3f\x4a\x22\x87\xa6\xda\x57\x23\xb5\x4d\xe1\x53\x74\xd9\xfe\x4e\xba\x02\x6c\x14\x29\x37\x7e\x48\x50\x88\x7d\xa0\x0a\xbd\x68\xa3\x1c\xbf\x85\x39\x48\xdf\xe0\xb2\x70\x55\x7f\xee\xc0\x21\xb1\x0f\x07\xc7\x01\x20\xf6\x9d\x03\xcf\x48\xc5\xe5\x1a\xbc\x29\xcf\xcf\xd2\xf1\x93\x1f\x7e\x98\x28\xff\xdf\x74\xf6\x43\x02\x0e\x96\x6d\x9d\x96\x0d\x9a\x26\x8f\xa0\x78\x57\xb8\x59\xb7\x45\x5e\x6a\x94\xb6\x1d\xa8\x33\xf0\xde\xdc\xa1\xfe\xcf\x0e\xe2\xef\xe6\x52\xd7\x8b\xc2\x5c\xed\x93\x6e\xed\x40\x99\x2a\x9d\xe7\xed\xcd\xbe\xad\xec\x40\x2d\xf2\xa2\xd5\xf5\xbe\x4a\x8b\x6a\x99\x8e\xe9\xdb\xe1\x0f\xc9\xc1\xc8\x2f\x1c\x5c\x4c\xbf\xd3\x5a\xbe\xd2\x67\x17\x39\xda\x67\xbb\x4f\x1e\x21\xb2\xa1\x17\x77\x31\xbb\x4c\x68\x90\x68\x43\x36\xfe\x1f\x4f\xfe\x75\xef\x49\x22\xcc\x90\x62\x95\x7a\x58\x53\x50\xf8\x89\x19\x23\x9b\xe0\xeb\x47\xb6\x6b\x88\x13\xdd\xdd\x55\x2f\xb2\xac\x51\x23\xdc\x2d\x2a\x2d\x8a\x11\x2a\x22\x60\x9f\xaa\x95\x25\xa6\x79\xa9\xde\xbc\x61\x62\x35\x7c\x2b\x10\xd6\x15\x3d\x56\x18\x6a\x24\xc4\x15\x3d\x97\x2e\x27\x82\x19\xe4\x78\x03\x28\xba\x18\x43\x82\x73\x21\xd8\xa4\x6b\xdb\x0b\xe2\x86\xd0\x06\x50\xcf\xdb\x9d\xb4\x28\xdc\xad\xf3\xbc\xd6\x37\x3a\x83\xeb\x2d\x92\xc9\x5a\x23\x14\x26\x5c\x95\x00\xda\xde\xe6\x99\xa8\xc6\x60\x19\x70\x59\x4e\xed\x80\xa5\xea\x4f\x5d\x1b\x5c\x5c\x0a\x41\x27\x1b\x83\xbc\xeb\x95\x06\x38\xfc\x22\x6d\x75\x8d\x28\x96\x6c\x24\x49\x37\x9d\x56\x9d\x9b\xd6\x49\x2f\xa6\x3d\x86\x47\xae\xf1\x3f\xa5\xf3\x8b\x40\x8f\xde\x0a\x40\xd8\x63\x30\x36\xe8\xb8\x35\x12\x34\x29\x0a\x5c\x60\xcc\x7a\x26\x4c\xa4\xd5\xd7\xed\x65\x5a\x48\xb6\x7f\x5b\x8d\x5d\x01\xcf\xfd\xbc\xee\x13\x32\x8c\x0a\x4d\x69\x6c\xb6\xbd\x2c\x1d\x49\xf3\x48\x14\x95\xd3\x34\xef\xc0\x2a\xb2\x97\x80\x6e\x66\xac\x3c\xb4\x05\x10\xcb\x46\x34\x63\x04\xbb\x9f\x9a\xe8\x0b\x8a\x46\x03\x42\xe8\xca\xd7\x88\x50\x82\xd5\x10\xdf\x4a\x99\xe1\x08\xdd\xc1\x33\xd4\xb2\x03\x79\x89\x22\x04\xb8\x46\x1a\xe0\x80\xd1\x12\xa5\x56\x10\x4a\x0e\x63\xba\xfa\xcc\x1d\x13\x96\x95\x4e\xcb\x36\x5f\xc1\x79\x68\xff\x3d\x78\x25\xf7\x38\xc6\xd6\x7a\x99\x67\xc2\x95\x77\x78\xdb\x08\x54\xfc\x8d\xe7\x4f\x70\x96\x6d\xf1\xe8\x75\x13\xf1\xd7\x5e\xb6\xed\x29\x72\x6d\x21\x4f\x73\x96\xd6\x0d\x98\x70\x31\x63\xd3\x31\x4e\xf2\x3c\x0f\x38\x8f\x13\x73\x94\x30\x4b\xef\x01\xa2\x08\x2b\xd6\x8e\xe6\xba\x81\xed\x63\xf0\x9a\xd3\xb8\xdd\xfb\x35\x5b\x01\x03\x14\x81\x0e\xa8\xbf\x2f\x74\xf3\xed\xdb\x73\x81\xd3\x28\xde\x3a\x07\x25\x75\xca\x45\x6f\x1d\x9c\x71\x39\xe5\xc0\x78\x77\x97\x6e\x10\x68\xa6\xbb\xc0\xed\x4a\xa6\x90\xcd\x9d\x8d\xe2\x37\x6f\xe8\x55\x12\xb3\x4b\x4c\x13\x85\x59\x5f\xa0\xa1\xcc\xb7\xb7\xd5\x53\xb5\x37\x0b\x4b\x19\x26\xae\x21\x68\x8d\x1d\x9f\x89\xfa\x61\x36\xeb\x94\xdd\x57\x5a\xdf\xb6\x08\x22\x71\x0f\x1f\x5b\x54\xf6\x56\xf8\xf7\xeb\x9a\xf9\x84\x9b\x19\x84\x77\x19\xbc\xa8\x6c\x58\x25\x20\xb8\x49\xab\x76\x5d\xeb\x9f\x2d\x7b\xf5\xd2\xf2\xda\x3c\x82\xfa\x3f\x9b\xd6\x54\x63\xed\x0d\x63\x56\xf6\xaa\x00\x11\xdd\xfb\x16\x92\x59\x2c\xc6\x78\xa6\x4f\xd4\x88\x92\x8e\x26\x9c\x49\xd8\x62\x72\x6f\x90\x52\x60\x40\x0a\x3f\x1a\xa6\xbc\xa7\x94\x60\x62\x7a\x8a\xe3\xc8\x68\x9b\x75\x7d\x0f\x00\x5d\x41\xd4\x10\x78\x0a\x44\x46\xfe\x86\xe7\xf4\x99\x24\xfc\xb4\x05\xc1\x89\x24\x75\xba\x9b\xed\x52\x06\xf1\x76\x08\x41\x65\x28\xe3\x10\x74\x0a\x12\x55\x11\xaa\xbb\x46\xc0\x88\x17\xb5\x4e\xc7\x5e\x70\x42\xd7\x1c\xec\x28\x3d\x58\x2a\x4a\xbf\x9e\x83\x31\xed\xd1\xd9\xe7\xb1\x4b\xb8\xaf\xbe\xdc\xf9\xb4\x5e\x2c\x12\x28\xfd\x79\xd4\x38\x55\x9b\x9e\x01\xdb\x8c\x74\x83\x52\xb6\xe9\x19\x80\x77\xfa\x9b\x51\x94\xf8\xb0\x9b\xd6\x2d\x57\x57\xb4\x54\xb6\xc8\xd2\xc5\xfb\xb8\x02\x99\xe5\xb0\x37\x07\x4b\xf9\x8e\x75\xab\xd2\x75\x6b\x50\xa3\xdf\x1a\x34\x83\x05\x56\xcb\x5e\x1d\x85\xa2\xdc\xd9\xee\x9b\x5a\x61\x18\xf5\x25\x6b\x19\x7c\x01\x68\xdd\x42\x47\x33\x23\x9f\x4b\xed\x2e\x39\xb7\x51\x3b\x7d\xc6\xc3\xf0\x5c\xc0\xa0\x86\x0d\x6b\xa8\x85\x75\x00\x6e\x9d\x6e\x7e\x91\xdc\xf7\xd8\x4b\x85\xdd\x18\x84\xe8\x04\xae\x80\x51\xe2\x50\xe7\x1f\x3f\x0e\xca\x72\x01\x15\xcf\x4c\x76\xc3\x74\xc8\xad\xba\x26\xbd\x04\x16\xa0\x6b\xd5\x02\x32\x28\x70\x19\x1b\x27\xee\x22\x5b\xeb\xb4\x38\x5e\x9f\xad\x20\x80\x26\xcb\xea\xc8\x8e\xa1\x76\x31\xde\xc0\x70\x53\xbc\x9f\xa8\x51\x03\x99\x46\x13\xa8\x30\x71\xc2\x43\x5d\x15\xa6\x86\x1d\xb5\x4c\xe7\x17\xa8\x13\xbc\x40\x5d\x0d\xe6\x50\x96\xad\x34\x99\xca\xd0\x56\x09\xc0\x68\x14\x30\x9a\x53\xaf\x1b\x75\x76\xe9\x3a\xbd\xd4\xd8\xbc\xf7\x90\xed\x45\x61\xca\xc8\x3f\xd8\xb6\x47\xae\x29\xfb\xec\xac\xd7\xb9\x73\x00\x46\x51\xaf\xa6\x0d\x77\x55\xb1\xf5\x86\x3b\x19\xfc\xa5\x3a\xeb\xcb\x33\x78\x86\x2b\x1a\x72\xf1\x22\xcc\x16\x0c\x71\x4f\x92\x0d\x59\x83\xf6\x74\xcf\x30\x19\x9f\x2b\x3c\x96\x78\x00\x17\x79\x99\x37\xcb\xb7\xb1\x43\xcf\x7c\x25\x34\x0e\xb6\xf9\xf6\xb0\x4b\x2f\x35\xbf\x3a\xd7\x2d\x53\xae\x41\x13\x1f\x1a\xef\x03\x6f\xe6\xdd\x9a\xa1\x4c\x5e\x8d\x15\xa4\xc9\x9b\x0f\xe9\x07\x69\xe8\x0d\x7b\x1c\x54\xce\xe8\x07\x55\xa7\xa5\x6a\xaf\xf2\x39\x73\xd0\xc1\x48\x7b\x2a\xe2\x7c\x8e\x83\x48\xa0\xd8\x0f\xe2\x5f\x29\xec\xa8\x8f\x1a\xe3\x72\x23\x3b\xeb\x05\x79\xce\xf6\x7f\x70\x37\xf0\x91\xfb\x80\x2d\xe1\xca\xb9\xa9\x34\xa9\x24\x5d\x0e\x37\xcd\x87\x6a\xc4\xa3\x35\x0a\x11\x52\xfa\xd3\xcb\x75\xdd\xe7\x28\xbb\xb5\xa9\x77\xa5\x29\x9d\x0c\x09\x84\x99\x5e\xa2\x3c\xee\x40\xce\xc5\x93\x2d\x87\x3a\xf0\x70\x42\x08\x03\x97\x4c\x3a\x9a\x1e\xa8\xbb\x89\xa4\x91\x42\x40\x3d\x5f\x05\x30\x09\x69\x96\xbd\xd3\xe7\xe9\xfc\xe6\x63\x6d\xaa\x66\xec\x1b\x86\x03\xef\x9f\xa7\x06\x0c\x7e\xcd\x62\x11\xbd\x2e\xed\xdb\x32\x7c\x79\xb5\xd4\xba\x00\x0f\x85\x8f\xf9\xb5\x2e\x2c\x65\x8e\x5f\x85\x19\x5e\x81\xd5\xf5\x2b\x30\xb9\x16\xaf\x3d\x2e\xb5\xdd\x2c\xee\xe1\xc5\xba\x35\x61\xc2\xb9\x59\x97\xed\x4b\x53\xac\x57\x68\xd6\xe7\x9e\xc2\x64\x8b\xbc\xcc\x5c\x2a\xff\x10\x26\xca\x9b\x5f\x4d\x9d\xbd\x5c\xa6\x35\x6c\x17\x7e\xf8\x31\x6d\xf2\xa8\x79\x1f\x53\x10\xa4\xdb\x3f\x51\xbb\xc1\x4b\xc3\xb6\x19\x7e\x84\x1f\x09\x18\xfc\x1d\xc2\x25\xc8\x4e\x00\x7b\x86\x17\x61\xf7\x3b\x2a\x98\x2f\x72\xef\x21\x24\x20\x5f\xd2\xf8\x45\xd4\x3c\x90\x6b\x7f\x34\x51\xe3\xe6\xab\x8a\x2c\xc6\x57\x55\xf8\x65\x65\x32\x18\x69\xf8\x1b\x7d\xca\x57\xfa\x3d\x7f\xe6\xdf\x61\x92\x5a\x37\xa6\xb8\x84\x2f\x88\x82\xc6\x4f\x61\xb2\x73\xdd\x52\x12\xfa\xd5\x6d\xc3\xeb\x6b\xf0\x19\x45\x26\x2d\x7c\x11\x26\xd6\xf6\x7d\x46\xc5\xf9\x87\x78\x6d\x54\x37\xc7\x6d\xda\x6a\x72\x9a\x82\xdf\xd1\xb0\xda\x8b\x1d\xa7\xf1\x0f\xd1\xba\x28\x4b\x5d\x53\x5d\xee\x77\x5c\x15\x68\x52\xd1\x3d\x0b\x7f\x86\x09\x2e\xf4\xcd\x7b\x00\x3e\xc0\x1f\x9d\x8f\x1f\x50\x73\x4a\xbf\xe2\x75\xf9\xde\x64\xf9\x22\xd7\xf5\xbf\xeb\x1b\x58\x9a\xe2\x39\x4c\x5a\x18\x73\xb1\xae\x30\x99\xfb\x1d\x26\x41\x43\xbd\xfc\x4f\xfd\xef\xdc\xa4\xe8\x4d\x98\x1c\x71\x17\x8f\xdb\x5a\xa7\x2b\x07\xc3\x88\x8f\x51\xc2\x65\x5a\x6b\xc0\x2f\x42\x04\x2b\x9b\x38\x7a\x15\x66\x08\x92\x0e\x25\x7a\x07\x4e\x6c\xd9\x39\xe8\x2d\xfc\x43\xb4\x1a\x22\x1f\x21\xbb\x26\xa2\x57\x71\x06\x7b\xe7\xb3\x94\x2f\x3d\x4f\x49\xa9\xd5\x79\xd7\x97\xc5\xa5\x0b\x3f\xa6\x59\xf6\xb2\x40\x9a\xc0\x3f\xe3\xf5\x81\x0a\x13\x32\x3d\xb6\x3f\xa3\x3d\xb4\xe2\x02\xe8\x57\xef\x0a\x69\xfc\x12\x69\xc8\xf5\xfc\xf5\xab\xb7\x27\x47\x3f\xab\x97\x47\x1f\x8e\x4f\x7e\xfe\xe5\xe5\xc9\xd1\xcf\x5b\x5b\x99\x5e\xe4\xa5\x3e\xc2\x23\x40\x92\xf6\xad\xad\x34\xcb\x30\x54\x18\xb2\x78\xd1\x57\xba\x12\xac\x2b\x62\x1c\xc1\xee\xcf\xa7\xf8\xb6\x51\xee\x66\x66\xb9\xcd\x5a\x23\x90\x23\xdb\xc2\xa3\x3d\xe7\xb7\x8d\xe7\x9a\xc1\x07\x3e\x33\x76\x1a\x0a\x7d\x8e\xdb\x6c\x94\xb7\xba\xa6\x90\xf2\xe4\x29\x00\xdb\xd3\x92\x05\x0a\xd5\x37\x37\x65\xd3\xd6\xeb\x79\x6b\xea\x11\x9e\x05\xe3\x91\x1a\x25\x5b\x0e\x8f\xa0\xaa\x4d\x05\x76\xba\x66\xee\x2f\x8b\x8c\x35\x18\xbc\x9c\x2e\xd3\xe6\xe8\xaa\xb4\xf3\xaa\xeb\xf6\x66\x6c\x73\x26\x28\xa2\x41\x65\xb8\x6c\xdd\x44\xe1\xe7\xa7\x08\xc2\xf0\x45\x4e\x81\x2b\xf1\x93\x4d\x73\x0a\x41\x80\xd9\x99\x1f\x47\xcb\x23\x54\x07\x30\x81\x96\x27\x63\x78\x40\x48\x37\x05\xd3\x03\x0a\xf6\x67\xe6\x13\x95\xd6\xe7\x30\x5c\x0d\x1a\x0d\x26\x61\x0f\xb0\xbe\x04\xa0\x04\xb7\x60\x4d\xbf\xcf\xaf\xf3\xd2\x26\xc2\x29\x43\xd0\x81\x9f\x5e\x7c\x78\xf5\xee\xed\x87\xbf\x6e\x6d\x05\xa4\xab\x5a\xb7\xc7\x96\x2d\xb1\x4b\xe7\xcb\x88\x99\x86\xd1\x7e\x88\x4c\x00\x7e\x62\x21\x54\xdb\xbe\xea\x43\x35\xc5\x45\xf7\xfe\xe8\xd5\x6b\xf5\xea\xf5\x9b\xb7\x1f\xde\x9e\xbc\x3d\xfa\xa0\x5e\x7c\x78\xa5\xfe\xcf\x5f\x5e\xff\xfc\x3b\xd4\x6f\x57\xe5\x75\x5b\xa7\xbe\x5f\x2a\xad\x35\x1b\xef\x91\xed\xaf\xa5\xee\x76\xa5\xe8\x4a\x97\x99\x2e\xe7\xb9\x6e\xbc\xa1\x1f\xdb\x14\xaa\xb3\x1b\x35\x2e\x80\x4d\x49\xd4\x4a\xdb\xb3\x31\x6f\x56\x68\xfe\xaa\x0a\x93\x66\xb6\x94\xe9\x67\x0c\x67\xb5\x6e\xcd\x2a\x6d\xf3\x79\x5a\xa0\x3d\xa1\xfd\xae\x52\xa8\x68\xaa\xc6\x1f\x6b\xbd\xd0\xb5\x6d\x80\x2b\x07\xd4\xa3\xf6\x5a\xa4\xff\xbe\xce\x6b\xbd\x8b\xdb\x06\x0c\xed\x9a\x69\x22\x87\x11\xbf\xd0\x11\xe0\xe6\xb5\x4c\x57\x7a\xf7\xbb\x09\xd4\x30\x51\xff\xcf\xff\xf5\x7f\x7f\xb7\x2b\x24\x2a\x61\x76\x4b\x83\x1a\x38\xe3\x00\x6f\xc8\x52\x7b\xb0\x88\x5f\x17\x05\xb8\xa5\x0e\xa6\x3e\xc4\xc4\xa0\x23\x72\xad\x10\x2b\x48\xae\x1e\x4b\x12\xba\xad\x7e\xfb\xfe\xb5\x3a\x54\xfe\x01\x67\x30\x2f\xf3\x55\x5a\x28\xaa\x0c\x47\xa9\xbf\xcb\x63\x6c\xe5\x00\x0e\xf3\xf8\x4b\x6b\x2e\x74\xb9\x2f\xbe\x36\x70\x3a\x88\x34\xf8\x62\xda\x5c\xe4\xd5\x89\x01\x24\xf3\x03\x75\x77\x07\x70\xcd\xfd\xed\x1d\xc3\x42\xdd\xad\x8a\x34\x2f\x47\x13\x1e\x26\x5c\x59\xbf\x9d\xbc\xfe\x70\xfc\xf6\xe8\xc3\x71\x4f\x5f\x1d\xbb\x10\x42\x3a\xa7\x2b\x8d\xad\xef\xf0\xb6\x7e\x93\xd9\x44\xa7\x94\x6d\xeb\xae\x5b\xf4\x2b\x33\x7f\x58\xe9\xe1\xde\x8d\x8a\x95\xe5\x4a\x91\x15\xa1\xf2\xf1\x23\xd0\xe9\x01\xf6\x3c\x28\x83\x85\xa0\x87\x6a\xf4\xc3\xf4\xfb\xd9\x74\x36\xda\xda\xa2\x41\xf7\xa9\x0e\xb6\xb6\xee\x92\x24\x39\xf8\x7f\x03\x00\x00\xff\xff\x25\x1e\x3d\xf3\xcd\x99\x05\x00") func vendor_codemirror_codemirror_js() ([]byte, error) { return bindata_read( _vendor_codemirror_codemirror_js, "vendor/codemirror/codemirror.js", ) } var _vendor_codemirror_matchbrackets_js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\xdf\x73\xdb\xb8\xf1\x7f\xd7\x5f\xb1\xd6\xf7\x3b\x2e\x31\xa6\x29\xb9\x7d\x49\x25\x2b\x9e\x5c\xce\x9d\xb8\x8d\x73\x99\x4b\x66\xfa\xe0\x73\x3b\x10\xb9\x14\x71\x26\x01\x16\x00\x25\x6b\x64\xfd\xef\x1d\xfc\x20\x09\x4a\xb2\x73\x0f\xbd\xb9\x8c\x60\x60\xb1\xbf\xf7\xb3\x0b\x4e\x26\xf0\x51\x64\x78\xcf\xa4\x14\x32\x86\x54\xd4\x5b\xc9\x56\x85\x86\x28\x25\xb0\xdc\xc2\x3d\x95\xec\x77\x0e\x9f\xe8\x1a\xe5\x12\x9f\x10\x28\xcf\x40\xe8\x02\xa5\x1a\x4d\x26\xf0\x33\x53\x5a\xb2\x65\xa3\x31\x83\x86\x67\x28\x81\x72\xb8\xbf\xfb\x0e\x25\x4b\x91\x2b\x9c\x41\xa1\x75\x3d\x9b\x4c\x52\x91\x61\x65\x85\x24\x1c\xf5\xe4\xf3\xdd\xc7\xdb\x2f\xdf\x6e\x47\xa3\x28\x6f\x78\xaa\x99\xe0\x51\x25\x32\x02\xbb\x11\x00\xcb\x21\xd2\xdb\x1a\x45\x0e\xf8\x5c\x0b\xa9\x15\x2c\x16\x30\x16\xcb\xdf\x31\xd5\x63\x38\x3f\x07\x7f\x5a\x89\xac\x29\x31\x3c\x24\x60\xed\xa9\x2a\xc1\xff\xfe\x6d\x04\x00\x86\x26\x92\xf8\x9f\x86\x49\x8c\xc6\x49\x32\x49\x92\x49\xc9\x96\x81\x3a\x63\x42\xe6\x23\x00\x2c\x15\x86\x92\x33\xcc\x19\x77\xbc\x5b\x0d\xad\x68\xb7\x9f\xd0\x2a\xb3\xb2\x3e\xdc\xff\x6c\xc5\xb8\xed\xe8\xe1\xb4\x88\xc7\xd8\xe8\xd1\xcb\x99\x4c\xe0\x6b\x49\x19\x87\xa5\x14\x1b\x85\x12\x90\xaf\x3b\x6d\xfb\x70\x90\xf9\x68\x4f\x7a\x07\x05\x07\xd6\x4f\x6b\x2a\x81\xe1\xbf\x4b\xfd\x0e\x16\x30\xb9\xff\x76\x77\x0b\xbf\x65\x93\x44\xa3\xd2\x11\xa7\x6b\xb6\xa2\x5a\xc8\xa4\x51\x28\x3f\xac\x90\x6b\x02\xe7\xe7\x56\x48\x94\x89\xb4\xa9\x90\xeb\xa4\x5d\xdc\x8b\xcc\x9a\xca\x9b\xb2\x84\x97\x17\x38\x4d\x70\x0d\xef\xc8\x7c\xe4\x05\x7f\x15\x0a\x16\x41\xea\x24\x5f\x85\xea\x0e\x2b\xaa\xd3\x82\xf1\x15\x2c\x60\x37\x8e\xc6\x33\x18\x93\xf7\xe3\x18\xc6\xc4\x2c\xa3\x6b\xb3\x7c\x30\xcb\x47\xbb\xfb\x68\x96\x0f\x76\x77\x67\x96\x7b\xbb\xbb\x37\xcb\xdd\xf5\x78\x6f\xb9\xb6\x4e\x80\x9c\xf1\xec\xde\xb3\xff\x49\xd2\xf4\x09\x75\x94\x56\x31\x6c\x0a\x94\x68\xf2\x97\xe7\x6c\xe5\xfc\xe3\x74\x29\x6d\x18\x21\xad\x92\x15\xea\xcf\x8c\xe3\x27\xca\xb3\x12\x23\x7b\x21\x31\xa7\x24\x86\xda\x5a\xe3\xb6\xd2\x02\x2e\xe1\x6a\xde\x31\xa0\xb9\x46\xf9\xb1\x91\x4a\x48\xc3\xc7\x0a\x30\x99\xe0\x56\x49\x70\x6c\xaf\x98\x1c\x1a\x5c\x71\x6e\x25\xf6\x10\x0e\xb8\x4d\xa2\x7f\xbd\x00\x49\xab\xcb\x9c\xea\xcb\xd4\xee\x46\xff\xff\x02\xc4\x47\xd1\x29\xfd\x4f\x49\xeb\x1a\xe5\x6d\x89\x26\x14\x11\x49\xd2\x92\x2a\xf5\x85\x56\x48\x46\x96\xab\xc9\x43\x70\xb7\x81\x29\x9f\x8b\x19\x50\x05\x4b\xd4\x1b\x44\x0e\x7a\x23\x20\x2d\xa8\xa4\xa9\x46\xa9\x62\x58\x36\x1a\x18\x37\xff\xaf\x59\x05\xa9\xa8\x2a\x53\xd6\x95\xc8\xb0\x65\x18\xb1\x04\x13\xe0\xc2\xd0\x29\x94\xda\x1e\x92\x18\x74\x81\x81\xa8\x35\x53\x0d\x2d\xcb\x2d\x48\xac\x25\x2a\xe4\xda\xc9\xa5\x2d\x9b\x82\xad\x8a\xd2\xe0\x09\x66\xb0\x14\xcf\x20\x38\x68\x51\x83\xc8\x2d\xa3\x3f\xf3\xac\x57\x2b\x81\x5f\x0c\xac\x6c\x98\xc2\x18\x36\x08\xb4\x2c\xc5\xc6\xa5\x12\xaa\x96\x5f\x2e\x45\x05\x4b\xcc\x85\x44\x10\x3e\x36\x81\x4e\x49\x17\x35\x7b\x0f\x16\x10\x9d\x85\x1e\x3f\x3f\xb7\xa1\x7e\xbf\x80\xa9\x59\xb7\x79\xfa\x60\xd2\x20\xd1\xf8\xac\x13\xa3\xce\x07\x1d\xd5\x42\x91\x47\x02\x2f\x2f\x3e\x6c\xf0\x06\xed\xc5\x85\xa5\x9e\x77\xe1\x3f\xb3\xb4\x04\x24\xea\x46\x72\x1b\xfe\x3e\x9d\x32\x66\x02\x6f\x29\x5a\x06\x57\xc4\xe2\xcc\xfb\x31\xdc\xc0\x15\xcc\xe0\xf2\xaa\xe7\x75\x94\x6f\x06\x6f\x53\x6d\x36\x22\xc3\xea\x3d\x4c\x09\x9c\x2d\x20\xb2\x29\xdc\xe7\x30\x79\x45\xbc\xd2\xdb\xb2\xaf\x87\xef\xe2\x09\xf9\xf7\x6d\x8d\x1f\x74\xf4\x55\xa8\xa0\x28\x5c\x4d\x5c\xc0\x15\x71\x35\xef\x6e\xe7\xa2\xe1\x19\x2c\x40\xa5\x94\xff\x4d\xc8\xb0\x00\x4f\x5f\x6f\x75\xf4\x96\x4d\x09\x89\x8d\x07\x62\xaf\xc7\xcb\x8b\x55\xaf\xab\xdb\xde\x6e\x2f\xc9\x17\xcf\xb1\x2d\x7e\x63\x67\x12\x62\x76\x4a\xb8\xc9\x55\x31\xf3\x1a\x9f\x9f\xbb\x45\x52\x0b\x15\x77\x21\xed\xc2\x7a\x44\x66\x52\xe7\x20\x48\x53\x12\x43\x2e\xe4\x86\xca\x6c\x06\xde\xaa\xbd\xd1\x65\x6f\xdc\x33\x99\xc0\xd2\x39\xe3\x57\x5c\xe1\xb3\xa9\x8d\x46\x61\x06\x5a\x80\xaa\x31\x65\xf9\x16\x36\x05\x4b\x0b\xdb\xba\x4c\xfa\x7b\x6a\x4b\x90\x52\xee\x58\xa8\x42\x34\x65\x06\x4b\x04\x0a\xd2\xf0\xa9\x63\xc0\x64\x95\xc0\xe4\xe1\xe1\xb7\xc7\xc7\x89\xa5\x72\xa4\x5f\x84\xc6\x19\xdc\xe5\x30\xb6\x76\x8f\x8d\x44\xc1\x4d\xf7\x15\x35\xf2\x96\xbd\xad\x57\x0e\xba\x60\xaa\x93\xc8\x14\xb0\x15\x17\x12\xb3\x24\xe0\xf7\xab\xf5\xa7\x82\x9c\x9a\x06\xb5\x31\xb7\xb8\xe8\xee\x6c\xa8\x72\x9e\x89\x5d\x8f\xb0\xe7\x4c\x83\x44\x9a\x16\x98\x39\x16\x15\x7d\xfe\x96\x52\x6e\x30\x56\xd9\x31\x61\x45\xd7\x08\x4d\x1d\xc2\xf7\x89\xc4\xf1\xc8\xdd\x67\xc5\x29\x14\x6f\x79\x23\x37\x35\x7d\x54\x14\x81\xe8\xcf\xc8\x57\xba\x30\xa5\x0b\x57\xd3\xe9\x74\x3a\x3f\xe2\x61\xf5\xfb\x01\x17\xd5\x31\x08\xb2\x5f\x69\x9a\x3e\xc1\x02\x1e\x1e\x7b\xa6\x12\x4f\x35\x85\x41\x2e\xdc\x9c\xdc\x9d\xc1\xe4\x21\x22\xbb\xbd\x0d\xec\x7c\xd0\xae\x6e\x6d\x8d\xf5\x95\x73\x4f\x75\x91\x54\x8c\x07\x29\x0e\x17\x03\x73\x62\x53\xcf\x25\x55\xb6\xc1\x45\xc4\xd6\xed\x20\xcd\x87\xff\xcd\x3c\x4b\xfa\x6c\x5a\x4c\xce\x64\x77\xf1\x12\xae\x7c\x44\x9c\x98\xcb\x81\x18\x5f\x9f\xb9\x90\x10\xb5\xca\x7e\x11\x5d\xe7\x34\x7f\xce\xdb\xcd\xb3\x45\x6b\x4b\xb7\x75\x61\x8d\x6a\xc3\xfa\x4a\x7b\x8e\x1c\xb1\x17\xe5\x01\xd5\xb6\x69\xe3\x46\xcd\x78\x83\xf3\xe0\xbe\xeb\xdc\xbd\xaf\xa6\x30\xb3\x3c\x93\xd2\xe6\x81\x33\x08\x0f\x1c\x1a\x12\xf4\x70\xeb\x64\x85\x67\xef\x83\xbc\x3b\x16\xdf\x52\x1b\x0f\x84\x2e\x20\xc7\xe3\x84\x85\xc1\xeb\x00\x06\x5b\x1e\xd6\x95\x73\x7b\xe1\x6c\x61\xf4\x74\xeb\x43\x4f\x39\x5b\x6d\x43\xb3\xfa\x05\x5d\x6a\xde\x91\x18\x7d\x24\xfa\xc9\xa1\x20\xb6\x45\x78\xb8\x5f\x2c\xec\x74\xee\xe6\x82\x97\x97\x57\xd0\xdf\x19\x13\x20\xbf\xb1\xcb\x72\x20\xa1\x2a\xc3\x06\xdb\xf5\xc5\xb4\x78\x9c\x07\x34\x46\x9b\xe8\x74\x9b\xb3\xbf\x5d\xf7\x22\xae\xae\x92\xba\x51\x85\xd1\x3b\x64\xd2\x4d\xe5\x67\x8e\xa6\xf4\xc5\xdd\xa2\x7f\x2d\x94\x03\xff\x40\x75\x12\x83\x41\xf4\xb4\xd8\x1f\x71\xf2\x82\x44\x1d\x05\x52\xf6\xa3\xf0\x77\x1f\x76\x17\x1f\xdd\x4b\xd7\xb4\x17\x61\x37\x1b\xd6\xdb\x0c\x86\x75\x44\xe0\xc6\x23\xe9\xac\xeb\x59\xfb\xc1\x1c\x6b\x3d\xe3\x61\x50\x59\x1c\xa4\x8d\x16\x69\x89\x54\x1e\xe2\x9f\x7b\x66\xd1\x65\x89\x16\x8f\xb1\x1f\xaf\x19\x87\x52\xf0\x95\xd5\x53\xc5\xa0\x18\x4f\x11\x98\xfe\x53\x59\x42\x4a\x1b\x85\x50\x34\x2b\x2c\xb7\xa0\xcc\x24\xd5\xd4\x19\xd5\x7e\x92\xf2\x70\xf8\xa9\x9d\xce\x1c\xae\xa6\x55\xa2\x34\xd5\x98\x0c\x94\x4b\x06\x84\x1d\xc2\xf6\xf8\xd8\x33\x94\x4f\xca\xc2\x63\x0c\x92\xf2\x95\x45\x59\xe3\x27\xa6\xf4\x37\x2c\xd1\x1a\xae\xa2\x43\x10\x61\xb0\x80\xe9\x1c\x18\x5c\xfb\x5b\x3e\xca\x73\x60\x17\x17\x43\xb0\x68\x73\xce\xd1\x3d\xb0\xc7\x04\xab\x5a\x6f\x23\x9b\xeb\xaf\xbd\x0c\x7a\xe2\x02\x69\x76\x30\x6a\xb8\x3c\x75\x7c\x0d\x7c\xf7\x30\xe4\x52\xd7\x8c\x17\xae\xa8\x5b\x4c\xb8\x5e\x1c\x7a\xee\xb0\x4c\xdb\x11\xcb\x71\x70\xbc\x6f\x60\xdc\xbf\x95\x2e\xdb\x00\xfa\x86\x30\x86\xd9\xe0\x98\x0b\x7e\x48\x31\x0f\xe6\x50\xf9\xa4\x7c\xb1\x54\x89\xf9\xeb\x3b\x3e\xeb\x40\x5d\x37\x8a\x1d\xa8\x1f\x43\xb0\x91\x16\xb6\xbc\x63\xd8\x75\x2f\x89\x99\xd3\x7a\x4f\x0e\xf0\xc4\xdd\xd2\xe2\xa4\x73\xb4\xf8\xa1\x6b\x46\xe1\xa4\xf5\x86\xe2\x5a\x84\x6a\x7b\xc6\xad\xd2\x5a\xfc\x31\x95\xdb\x0a\x1e\xf5\xda\x1b\x91\x2d\x68\xb4\x51\x9a\x4c\xe0\x1f\x65\x93\xad\xd0\x0c\x5f\x1b\x21\x9f\x80\x4a\x3b\xfe\x99\x77\xc4\xdd\x2d\x2c\x9b\x95\x7b\x67\x30\xa5\x1a\x84\xff\xbb\xba\xfa\xeb\x5f\x7c\x53\x04\x33\xf7\xf7\x6c\x18\xaf\x1b\x0d\x4a\x8b\x5a\xc1\x4a\x98\x8a\xd4\xc2\x72\x31\x64\x54\xda\x39\x6a\x6d\x1f\x28\x4c\x41\xce\x24\xaa\x24\xc8\x3a\xff\x76\x77\x9e\x75\x85\x97\x8b\xd4\x8c\x8d\xc4\xc2\x89\x59\x47\xed\xf4\xed\x3b\x80\xc1\x07\x58\x74\x30\x12\x85\xb9\x97\x56\x89\xa8\x51\x52\x7b\x70\x92\xe2\x74\xd5\x85\x5e\xf2\x45\x67\xb7\x4c\xc9\x58\x81\x03\xb4\xec\xbd\x1d\x56\x50\x07\x5e\x04\x14\xea\xef\xac\x42\xd1\xe8\xc8\xc3\xd9\xbb\x69\xdf\xf0\x2c\x0e\x7b\x78\xb5\xc7\xf3\x0e\x76\xf7\xed\xe7\x83\xb4\x91\x12\xb9\x2e\xb7\x9f\x82\xd7\xe3\xa2\x03\xd2\x0e\x43\x33\x71\x7f\x80\xa2\xad\xb1\x3f\x72\x85\x7d\x59\x9d\x90\x42\x60\x77\x6a\x3b\x22\xf3\x37\x95\x6a\x5b\xc8\x2b\x34\xc7\x58\x6f\x7b\x43\xfc\x0a\xe0\x7a\x5f\x39\x4f\x5b\xa7\x04\x9f\x59\x5c\x13\xff\xa5\xb6\x06\x8d\x07\xf7\xc6\x1d\xdf\xce\x62\x23\x6b\x4d\xcb\x18\x44\x99\xb5\xd6\x1b\xdb\x45\x69\x1f\x3b\xe6\xe7\x6c\xf0\x15\xe7\x8e\x33\xdd\xbb\xc9\xb8\x31\xcf\xa3\xb1\x7b\x5c\x7f\x48\x35\x5b\x33\xbd\x1d\xc7\x87\x9e\x1f\x80\xe9\xff\xdc\xaf\xfb\x4e\xed\x35\x2d\x07\xca\x9d\x70\x1e\x2c\xda\xaf\x83\x6b\x5a\x0e\xbe\x1b\xde\xd8\x9d\x19\xec\xba\xc4\x35\xe6\xf1\x3f\x6c\x9d\x4d\x51\x57\x8e\x47\xf1\xb8\x7d\xd6\xc8\xd5\xe9\x90\x04\xd9\x37\x4c\x04\x83\x0a\x31\x68\xd9\x20\x99\xbb\x60\xbf\xc5\xf7\x44\x7b\x0b\xb9\x9b\x87\xad\x6f\x6d\x36\xda\x1f\x5d\x97\xeb\x26\x88\x9f\x68\xfa\x64\xde\xae\xea\x32\x15\x55\x4d\x35\x5b\xb2\x92\xe9\x2d\x3c\x59\x24\x0c\x13\xc3\xdd\x34\xed\xdd\x3b\xd2\xbf\x6e\x8c\x2f\x97\x42\x94\x48\xf9\x78\x58\x49\x67\xbd\xbc\x10\x8e\xfc\xb5\x76\x71\x03\x3b\xf7\xed\x62\x66\x6d\xde\xfb\xd1\xa8\x45\x13\x87\x0c\xfd\xf5\x8e\x67\xfb\xc5\xa3\x65\x74\x2c\xa0\x23\x7d\x7d\x92\x3b\x35\x1c\x38\xff\x07\x8e\x23\xa3\xb6\xea\xde\x0a\xc4\xf0\x09\x7b\x14\x83\x13\xef\xd8\x5d\xa8\xc9\xc1\x0b\x38\x50\xe2\xc4\xcd\xb9\xd7\xc8\xfc\xfb\x6f\x00\x00\x00\xff\xff\x34\x36\x5b\x14\xaa\x17\x00\x00") func vendor_codemirror_matchbrackets_js() ([]byte, error) { return bindata_read( _vendor_codemirror_matchbrackets_js, "vendor/codemirror/matchbrackets.js", ) } var _vendor_codemirror_material_css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\xdd\x6e\xe2\x3a\x10\xbe\x3e\x79\x8a\x39\xea\x0d\xa0\x84\x90\x04\x02\xa5\xd2\x91\x80\xc2\xcd\x51\x77\x9f\xc1\x71\x86\x60\x11\xdb\xd4\x9e\xb4\xcb\x56\x7d\xf7\x55\x0a\x5d\xc2\x5f\xa0\xec\xd6\x95\x2f\xf0\xf7\x33\x3f\x66\x8c\xdf\x72\x1c\x00\x80\x6f\x4c\xe2\x10\x36\x7f\x92\x11\x1a\xc1\xf2\x8f\x83\x51\x41\x0b\x6d\x36\x47\x4f\x82\x2f\x18\xe6\xf0\x3f\x93\x42\xd9\xe5\x1a\x1a\x0b\xa2\xd5\xd0\xf7\x33\x41\x8b\x22\x69\x73\x2d\x7d\xb9\xdc\x1e\x06\x41\x73\x23\xfd\xdd\x88\x4c\x28\x96\xff\xd6\x05\xae\x73\x6d\xc0\xf2\x05\x4a\x84\x64\x0d\x4f\x8c\x48\x30\x18\x59\xd2\x46\x28\xbd\x91\xb5\xfb\xba\xf8\x5c\x08\x55\x58\xcd\x85\xf6\x3f\x85\x3c\x2a\x15\x9a\x8e\xd3\xf2\x1d\xa7\xcd\xa5\x67\xbd\xcf\xa3\xf6\x44\xa7\xf8\x24\x8c\xd1\x06\xde\x9c\x7f\x12\xc6\x97\x99\xd1\x85\x4a\xbd\x0f\xf3\x21\xdc\x85\x41\xb9\x1e\x1c\x00\xbf\x75\xe2\x38\x8a\xcb\xf5\xd0\xf2\x1d\x80\xed\x67\x26\x4b\x58\x23\x8c\x22\x17\xc2\xa8\xbf\xdd\x82\xe6\x83\xf3\x7e\xe0\x0d\x15\x73\x2f\x2b\x88\xd0\xd8\xfd\x20\x6e\xb5\x6f\x0c\x22\x37\x08\xfb\x6e\x10\xc6\xcd\x92\x9a\x68\x93\xa2\x19\x82\xd2\x0a\xaf\x8a\x43\x32\xb3\x44\xe3\xc2\x95\x40\xcf\x16\x09\xe5\x58\x8b\xcf\x85\x42\x55\xc8\x04\x0d\xbc\x9d\x0b\x15\x6a\x43\xe3\x85\xb1\x65\x9b\xb6\xe9\x78\x39\xce\x69\x08\xc1\xea\x07\x58\x9d\x8b\x14\xee\xe6\x83\xf9\x60\xde\x39\xa1\x92\x8a\x97\xaa\x90\xc5\x1c\x39\x61\x5a\x4a\x55\x6a\xbd\xe9\x5b\xaf\xe7\xc2\x6e\xeb\xb4\x83\xde\x89\xb8\xaa\x6a\x73\xcd\x0b\x8b\xe9\x9f\x99\x74\x2e\x25\x5f\x96\x6f\x38\xdc\x88\x0a\xad\x2e\x96\x1a\xfe\x03\xbb\x62\xea\x06\xca\x31\xf3\xaf\xa6\xe0\x49\xfd\xd3\xbb\x21\x8f\xdb\x78\x67\xe8\x5f\xc9\xa8\x2e\x25\xc6\x49\xbc\x60\xe9\xe7\xed\xf4\x4e\x89\x77\x5c\xd8\xfe\x9f\xac\x12\x97\xde\x12\xd7\xaf\xda\xa4\x7b\x5f\x0e\xd6\x08\xee\xef\x5d\x08\xba\x71\x39\x46\xba\x1f\x63\xe4\x34\x5b\xaf\xd0\x30\xd2\xe6\x80\x7e\x3c\x85\x4e\xd3\x5f\x98\x11\x2c\xc9\xd1\x0b\x77\x02\x77\x83\xce\x64\x3c\xe9\x5e\x62\x44\xc7\xad\xe0\xd2\xa3\xf5\x0a\xab\x52\xe1\x38\x98\xcd\xce\x48\x25\x85\xc8\x49\xa8\x0a\xfc\x71\x3a\x19\xc7\xe3\x33\x70\x46\x5a\x56\xb0\xb3\x7e\x3f\x8e\xef\xcf\x60\x0f\x07\x4e\x3d\x3a\xc5\xf9\x8d\xf5\xb3\x64\x84\xca\x2a\x3e\x93\x68\x3a\x18\x3c\xd6\xa2\xaf\xaf\x35\xd7\x52\xa2\xa2\x0a\xbc\xd7\x8d\xa7\xfd\xd1\x85\xd6\x5c\x5b\x7f\x62\xd9\xb5\x91\x48\x24\x76\x2d\x96\x11\x19\x91\x14\x54\x8d\x63\x36\xab\x69\xec\xca\x94\xb7\x98\xd6\x07\x06\xa3\xe9\x19\xfc\x73\xc1\x72\x31\x17\x7b\xfd\xad\xbd\x39\x5f\xbb\xb3\xb5\x52\x7b\x35\xdb\x8d\x8f\x41\xe4\x42\x10\x84\x35\x37\x05\xb7\x3f\x35\xe0\x98\xbc\xdb\x82\x76\x67\xf3\x6e\x1f\x3f\xf8\xd3\x49\x6f\x16\xf7\x2f\x3c\xe2\x92\x11\x5f\x08\x95\x25\x86\xf1\x25\x52\xd5\xee\x75\x21\x08\xe1\x5f\x21\x57\xda\x10\x53\x74\xc6\xa6\xdb\x29\x57\x15\xf6\xee\xfc\x0a\x00\x00\xff\xff\xad\xbf\xb1\xdf\x04\x0a\x00\x00") func vendor_codemirror_material_css() ([]byte, error) { return bindata_read( _vendor_codemirror_material_css, "vendor/codemirror/material.css", ) } var _vendor_codemirror_simplescrollbars_js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\xdb\x6e\xdb\x38\x13\xbe\xf7\x53\x4c\x74\x51\x48\x8d\x2c\xbb\xb7\x76\xd5\xe0\xcf\x01\x48\x7f\x34\xdd\x62\x53\xf4\x80\x20\x58\xd0\xd2\x38\x66\x2b\x93\x5a\x92\xb2\x93\x36\x79\xf7\x05\x0f\x92\x28\xd9\x72\xd3\xc5\xf6\x2a\x26\x67\xbe\x39\x7d\x9c\x19\x75\x32\x81\x33\x9e\xe3\x15\x15\x82\x8b\x18\x32\x5e\x3e\x08\x7a\xb7\x52\x10\x66\x11\x2c\x1e\xe0\x8a\x08\xfa\x8d\xc1\x25\xd9\xa0\x58\xe0\x77\x04\xc2\x72\xe0\x6a\x85\x42\x8e\x26\x13\x38\xa7\x52\x09\xba\xa8\x14\xe6\x50\xb1\x1c\x05\x10\x06\x57\x6f\x3f\x42\x41\x33\x64\x12\x67\xb0\x52\xaa\x9c\x4d\x26\x19\xcf\x71\x6d\x8c\x24\x0c\xd5\xe4\xdd\xdb\xb3\x8b\xf7\xd7\x17\xa3\x51\xb8\xac\x58\xa6\x28\x67\xe1\x9a\xe7\x11\xfc\x1c\x01\xd0\x25\x84\xea\xa1\x44\xbe\x04\xbc\x2f\xb9\x50\x12\xd2\x14\x02\xbe\xf8\x86\x99\x0a\xe0\xc5\x0b\x70\xb7\x6b\x9e\x57\x05\xfa\x97\x11\x98\x78\xd6\x6b\xce\xfe\x7f\x3d\x02\x00\x2d\x13\x0a\xfc\xbb\xa2\x02\xc3\x20\x49\x26\x49\x32\x29\xe8\xc2\x73\x27\x88\xa2\xf9\x08\x00\x0b\x89\xbe\xe5\x1c\x97\x94\x59\xec\xda\x43\x63\xda\x9e\x27\x64\x9d\x1b\x5b\xff\xbb\x3a\x37\x66\xec\x71\x78\xb3\xdf\xc4\x6d\xac\xfd\x68\xed\x4c\x26\xf0\xa1\x20\x94\xc1\x42\xf0\xad\x44\x01\xc8\x36\x8d\xb7\x6d\x39\xa2\xf9\xe8\x29\x6a\x13\xe4\x5d\x98\x3c\x05\x95\x44\xd0\xe9\xcf\x54\x30\x1f\x8d\x00\x6a\x49\x38\x25\x22\xcc\x0a\x19\x03\x17\x14\x99\x22\xfa\x30\x06\x99\x09\x5e\x14\x56\x17\x40\xad\xa8\x4c\xbc\x7b\x48\x7d\xe9\x79\x2b\x63\xd5\x20\x75\xfa\xdd\x1b\x44\xad\x68\x7e\x29\xae\x48\x51\xff\x90\xf4\x07\x42\x0a\xaf\x3c\xe9\x92\x4b\x48\x61\x6a\x3c\x75\x47\x8c\xe7\x5a\x2a\xe7\x59\xb5\x46\xa6\x92\x4c\x20\x51\x78\x51\xa0\xfe\x15\x06\x39\xdd\x04\xd1\xbc\x2b\x9e\x64\x05\x91\xf2\x3d\x59\x6b\xc5\xac\x90\x70\x0c\xc1\x38\x80\xe3\x01\xe7\x29\x63\x28\x6a\xa7\x8c\x3e\x29\x4b\x64\xf9\xd9\x8a\x16\x79\x78\xd0\x70\xe4\x3c\xdd\x10\x01\x12\x8b\xa5\x43\xb1\xe0\x6d\x2d\x12\xce\xc2\xd6\x54\x0c\xc1\x9a\x57\x12\x73\xbe\x65\x41\xdc\x54\x24\xc4\x3a\xed\x96\xde\x98\x6c\x57\x34\x5b\xc1\x51\x0a\xaf\x22\x10\xa8\x2a\xe1\xbc\xee\x40\xe3\x5f\xa5\xc0\x0d\x32\x75\x8e\x4b\x52\x15\x2a\xc4\xa8\x96\xd2\x5e\x91\x7b\xaa\x53\xaa\x9d\xeb\x56\x32\x85\x60\xc5\x05\xfd\xc1\x99\x22\x45\x00\x27\x10\x94\xe4\x0e\xbf\x04\x30\xb3\x7f\x7d\x0d\x7c\x18\xa9\x88\x50\x90\x02\xde\x68\xc0\xdb\xd8\x1e\xd8\x72\x19\xec\x92\xcb\x5a\xbe\xa1\x58\xce\x19\x86\x6d\x50\xdd\x8c\x2c\x97\x4d\x6a\xeb\x84\xac\xf9\x06\x03\xfd\x0c\x36\x6d\x0c\xbf\x54\xaa\xca\x20\x36\x96\x1a\x95\xa7\xbe\x1f\x1a\xd0\xcf\xee\x70\x7e\x9d\xcb\xad\x71\x13\x9b\xd6\xff\xc8\xc3\x26\xe4\x63\x08\x5d\x1e\x60\x6c\x13\x11\xc1\x4b\x08\x8d\xac\x65\xf8\xc4\x2a\x6a\x86\x47\x3b\x7e\x75\x79\xf1\x9c\x24\x1c\xd6\xe8\x67\xe0\xa9\x66\xe5\x1e\x02\x6a\x7a\xc7\x10\x64\x05\xcd\xbe\x0f\x70\xef\xf9\xdc\x32\x6c\x3e\xe5\xf7\x35\x07\xcc\xef\xe4\x0e\xd5\x29\xaf\x58\x4e\xd9\xdd\x59\xa1\x09\xf7\x27\x66\x2a\x8c\x62\xd8\xae\x50\xe0\xdc\x63\xf8\xaf\x48\x19\x35\x65\x30\xaa\x9a\x7e\x49\x66\x20\xbf\xc0\xeb\xc6\x7a\x52\xe0\x52\xc1\x09\x8c\x5f\xc1\xcc\x13\x78\xd3\x0a\xd8\x61\x75\x02\x5a\x60\x5a\x3b\xa0\x9b\xec\x20\xfe\x57\x1f\x5f\xf1\xb2\x0f\xff\xd5\x87\x5f\x70\xa5\xf8\xba\x8f\xdf\x61\x8e\x7b\x21\x70\xec\x2c\xbd\x74\xfc\x30\xcd\xb1\x5f\xb6\x86\xb7\x9c\x7d\x5e\x21\x16\x7e\x71\x74\xda\x35\x68\x0e\xa9\x5f\xa8\xad\x96\xbb\xd0\x95\xfa\x40\xef\xb1\x90\x21\x46\x37\xcf\x79\xf2\xf7\xe6\xb9\x3f\x04\xb7\x7e\x59\x79\x91\x7f\xd8\xfb\xb0\x07\x42\x32\xfe\x44\x3b\x85\xd5\x97\x47\xa9\x43\x8b\x9e\x45\xab\xa7\x5f\xd0\xd6\xd0\xdd\xc4\x1a\xc4\x75\x76\xa2\xc1\x66\xeb\x94\xce\xff\xb8\xba\xd2\x7a\xd7\x66\x34\xf5\x14\x9f\x74\xca\x4f\x89\x48\x4a\xc1\x15\xd7\x73\x3d\x91\xa8\x6c\xf8\xcd\xe3\x28\xb9\x8c\x61\xc9\x45\xd6\x14\x42\x07\xa9\xe3\x7b\x0d\xd3\x08\x9a\xa1\xe5\xdf\xbc\xf1\x07\xde\xd8\x9f\x85\xb5\xc2\xd0\x7d\x8b\x73\x64\x6c\xea\x8d\xc2\x68\xa4\xcd\x8c\x6c\xda\xd5\x92\x14\x12\x77\xe6\x67\x53\xb2\x76\xe6\x24\x52\x3d\x14\x78\xb3\x3b\xd0\x77\x39\xa1\x9f\x93\xa1\x85\xe2\x65\x70\x0b\xa9\xab\xab\x89\xea\x25\x84\xed\xe8\x9e\x78\x21\x44\x91\x1e\xb2\xe5\xbd\x1b\x1a\xce\x3d\x25\x2a\xfd\xc6\x9e\xe6\xbb\x59\xb6\x34\xea\x65\xd9\x4f\xaf\xb5\x63\x6a\x61\xae\x22\x7f\xd3\xb0\x25\xe9\x47\xd3\x56\xd4\x3c\x13\xca\x4e\x2b\xa5\x38\xbb\x76\x7b\xc6\x74\x8f\x1b\x55\x99\x13\x85\xbe\x1b\xd6\x80\xd6\x89\xc1\x3e\x76\xfb\xf7\x82\x08\xfd\x47\xed\xa2\x19\x8a\xf4\x07\x9e\xad\x08\xbb\x33\xcf\xd1\x5f\x77\x8e\x52\x4f\x17\x1e\x1f\xfd\x62\x1f\xd5\x5b\x52\xe7\xce\x64\xf4\x28\xad\xcd\x34\x69\xf0\x6c\xb4\x5d\xa0\xbb\x59\xb5\x96\xe6\xfe\x7d\xbd\x6b\xb5\xc6\x3a\xd7\x6e\xfb\x72\xf6\xea\xf7\xd7\xc4\xb6\xf0\x53\xe7\xdb\x1b\xa6\x40\x4b\x5c\x4f\xf9\x75\xb7\x0e\xfd\x18\xb4\xc8\x38\xed\xd5\x6a\xec\x59\xaf\x7d\xee\xf8\xd3\x11\xf7\x5b\xc7\xbf\x22\xfc\x96\xe6\x6a\x65\x18\xbf\x42\x3d\x29\x3c\xd2\x7b\x56\x7d\x7a\xfb\xdc\xac\xdf\x5d\xec\xd3\xc1\x32\xb1\xbb\x70\x5f\xd3\x75\x59\xb8\x2e\xb4\x20\x42\xda\xed\xbb\x2c\x48\x86\x7b\xf7\x6e\x92\xe7\x67\x7a\x8f\xb5\x3b\xac\x67\xd8\xb8\x0f\x29\x30\xdc\xb6\x5b\xbc\x1f\x54\x03\x67\x95\x8c\x89\xb0\x55\x35\x8d\xd1\xdf\x99\x37\x68\x76\xbb\x2e\x9e\x3e\xa4\xd9\x41\x34\x2d\xb2\x03\x66\xb2\xa9\xd1\x2a\xfb\x1d\x60\x38\xd5\x8f\xfd\xe0\x0b\x5c\x23\x91\x95\xc0\x9d\x66\xe0\x90\x2d\x74\x77\x24\x9a\x62\x43\x0a\x5b\xca\x72\xbe\xd5\x2b\xc8\x19\x5f\x97\xfa\x8b\xf3\xda\xdc\x9c\x0c\xdd\xec\xa4\x05\x66\xd0\x3b\x4a\xb2\x4a\x08\xfd\xc0\xb4\x7c\x67\xca\xe9\x83\xa8\x1b\x75\x49\x84\xc4\xb7\x4c\xd9\xcb\xc4\x12\xaa\x33\xdd\xb4\xbb\xb5\xb4\xa7\xfa\xf8\xd8\x7c\xf6\x68\x09\x86\x98\xcb\x4b\x4d\x75\x9b\x0c\xd7\xf7\x3e\x1b\xd9\x37\xcd\xa9\x7d\xfa\xf6\xf4\xb8\xfe\x92\x6a\xf4\x3f\xed\xe8\x5f\x1a\x7f\x76\x00\xdc\xf1\x71\xe7\x5b\xac\xa9\xae\x7d\x4a\x49\x4e\x65\x59\x90\x07\x43\x14\x03\x7e\x02\xc1\xa2\xe0\xd9\x77\xf3\x74\x18\x67\x18\xf4\x49\x7a\x40\xfd\x72\xaf\x7a\x53\x70\x6b\xa2\xd7\x2d\x8c\x47\x96\x2f\xe1\xbe\xb8\xe2\xbd\x61\xc5\xcd\x96\xd7\xfb\x57\x0b\x6f\x28\x6e\x5d\x06\xc6\xce\xf2\xa5\x61\x8c\xce\xea\x0c\xa6\xed\x06\xbf\x37\x2f\x6e\xfd\xf3\xe2\xda\xba\x7a\xe8\x86\xa1\x83\x9b\x06\x3e\x01\x9a\xf0\x2e\x7b\xe1\xd9\x94\xed\x8d\xcf\x54\xb8\x1f\x9e\x3d\x1c\x8a\xae\x13\x9e\x65\x48\x1d\xdd\xa7\x4e\x74\x30\x6e\x44\x17\x44\xbc\xc3\xa5\xea\xc6\xbb\x53\x49\xbb\x4e\x7b\x34\x18\x8a\x77\x08\xc0\x2c\xec\x69\xdf\x6a\xa7\xc3\xba\x49\xe4\xf6\x88\x9f\xc6\xe4\xac\x6f\x71\x06\xd3\x18\x6c\xfa\x67\xfd\xec\xcf\x60\xfa\xd4\x36\xe1\x03\xfd\x47\xa2\xb2\xe7\x1f\x79\x39\xb0\x8e\xb4\x65\xf7\xf6\x91\xdf\x03\x7f\x67\x43\x1e\x44\xb7\x39\xfa\x5d\xf8\xac\x40\x22\x7c\x58\x7f\x3b\x29\x89\xee\x5a\x75\x97\xf1\x8a\x60\x2f\xde\xf3\xdc\x75\x33\xfb\x3b\x11\xe6\xd3\xd3\xfe\xa7\xc7\xfe\x61\x31\x24\xd8\x9d\x03\xd6\x6b\x6f\x1f\x97\xb5\xeb\x57\x3c\xc7\x22\x91\x26\x9e\x4e\x32\xf6\xcd\x40\x57\x7a\x3d\x94\x76\x26\x67\xd0\xa2\x8f\x2d\x9c\xac\x97\xfb\x2e\x96\xf3\xe7\x90\x3b\x7c\x83\xc2\xf6\xa5\xff\xc6\x1f\x87\x77\xd8\x21\xfd\xad\xf7\x4f\x00\x00\x00\xff\xff\x63\x2e\xe6\x06\x56\x15\x00\x00") func vendor_codemirror_simplescrollbars_js() ([]byte, error) { return bindata_read( _vendor_codemirror_simplescrollbars_js, "vendor/codemirror/simplescrollbars.js", ) } var _vendor_material_icons_materialicons_regular_eot = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x79\x7c\x1b\xe5\xb9\x28\xfc\x3c\xda\xc6\xf2\x26\x6b\x19\x8d\x25\xd9\x5a\x3c\x96\xc6\x99\xf1\x12\x4b\x1a\xc9\xd9\x9c\xc9\xe6\x2c\x76\x20\x21\x19\x85\xad\x34\x09\x49\x00\x2b\x40\x80\x24\x84\xb0\x4d\x29\x85\xb0\x07\x8a\xdc\x16\x28\x4d\x29\xa5\xd4\x02\x4a\x29\x50\xca\xa5\xbd\xba\x2d\xe5\x72\x0a\xed\xe5\x70\x90\xbf\xde\x96\xf6\x38\x21\xa4\x21\xee\xa5\x94\x5f\xcb\xe5\xf6\xe3\xc8\xdf\xef\x7d\x67\xb4\xd8\x31\xbd\xa7\xe7\xf4\x3b\xbf\xfb\xc7\x95\x3d\xa3\x59\xdf\xe5\x79\x9f\xfd\x7d\x9e\x57\x0f\xf4\x99\xe0\xad\x5e\x13\x20\x98\x80\x7c\x4c\x60\x35\xd3\x03\x40\x38\x8c\xe4\x7b\x64\x03\xea\x17\x5c\x00\x60\xd1\xef\xe8\x9f\x7b\xb7\xff\xea\x2e\x38\xed\xd3\x06\xeb\x61\x1b\xec\x85\x9d\x70\x25\x5c\x02\xdb\x60\x37\x84\x61\x2d\x5c\x08\x97\xc3\x65\x70\x15\x00\x34\xc3\x59\xb0\x13\x2e\x82\x7d\xb0\x1b\xb6\xc1\x95\xf4\x8d\x0c\x7d\xfa\x2a\xb8\x84\x3e\x15\x86\x7e\xe8\x85\xf9\xd0\x0f\xfd\x10\xfe\x57\x94\x68\x34\xa9\x05\x69\xfb\x86\x86\x36\xaf\x3f\xd0\xf7\x4f\x8d\x60\xea\x7d\x81\xbc\xbc\x7a\xe5\xaa\x21\x0b\xc2\x26\xc0\x9f\x36\x02\x40\xe7\xea\x0d\x67\x6e\x9a\x6c\xfd\xc3\x43\x60\xea\xd5\x00\x20\xb5\x7a\x93\xba\xfc\xf8\x9b\xdf\xde\x08\xf8\xd3\xf9\x00\x97\x6c\x38\x73\x53\x5f\xbc\x7e\x5f\xc7\x45\x00\x78\x08\x00\xb6\x5e\x78\xe9\xb6\x3d\x7f\xfc\xa0\x7f\x12\xc0\x7e\x27\x80\xcd\x74\xe1\xfe\xbd\x61\x70\xe2\x4a\x00\xc7\x61\x02\x91\x8b\xb6\x5d\xb5\x67\x7a\x1a\xcc\x80\x3f\x25\xd0\xa9\xbb\x68\xf7\x35\xbb\x2e\x7d\xa5\xf5\x1e\x00\x6e\x3e\xe0\xbe\x8f\x2f\xde\xb9\x6d\x87\xed\xed\x3b\x2e\x04\x40\x52\x7f\xea\xe2\x8b\x77\x6e\xb3\x24\x4d\x66\x00\x52\x06\x74\x5e\x7c\xe9\xde\x03\x97\xcb\xbb\xfe\x27\x00\x9e\x04\x60\x1e\xd9\x7d\xf9\x85\xdb\xfe\x65\xe8\x9c\xc3\x00\x8e\xfb\x01\x98\x87\x2e\xdd\x76\x60\x8f\x45\x80\xa3\x00\x78\x31\x00\x84\x2f\xdb\x76\xe9\xce\xd6\x7b\x4f\x2c\x03\xbc\xab\x0b\xc0\x74\x64\xcf\xe5\x57\xed\x3d\xfb\x7b\xef\x3c\x03\x78\xcf\xab\x00\xf2\x42\x0a\x0b\x34\xbd\x71\xd7\xaf\xb6\xdf\xfb\x59\xc7\xe2\x3f\x43\x83\x3e\xb2\x6f\xfe\xf6\x1b\x3f\xab\x7e\x4f\x97\x4c\x60\xa2\xed\x35\x06\x9e\xc2\xd0\x64\x99\x2e\x41\x6f\x19\x13\x2a\x03\x5d\xfe\x58\xc8\x15\xf3\xcf\xe1\x69\x68\x2d\x3f\x02\x48\x9f\x52\xa0\x57\x7f\xc2\x04\x78\x18\xac\x00\x38\x82\xbb\x00\x60\xb5\xf1\xfd\x67\xf0\xc1\xcd\xb5\xd8\x45\xde\xac\x20\x54\xf9\xa3\xc1\xfc\xe9\x69\xa3\x76\x8b\x51\x7a\xf5\x13\x06\xc9\x04\xe0\x2c\x57\x6c\x3a\x1d\xf5\xfe\xed\x1f\x09\x24\x60\x41\x01\x09\x14\x50\x40\xa5\x9b\x5c\x39\xcb\x42\x96\xde\x93\x8c\xe7\x24\xd0\xe8\x51\xbe\x72\x4d\x31\xde\x27\x4f\xab\xa0\xd1\xfb\x5a\xcd\xbd\x2c\xe4\xe8\x5d\x72\xd6\x01\x2c\x7d\xaa\xfc\xc7\xd2\x12\xc9\x5f\xf5\x98\x7c\x77\x1b\xa5\xb2\xc6\x55\xc5\xd8\x03\xa8\x70\x35\x28\x90\x05\xd5\x28\x5d\xa2\xf5\x4a\xb4\x1e\xc5\xa8\x4f\x2f\x31\x41\xcf\xf4\xcf\x79\xc0\x42\x96\x6e\x12\xbd\xc6\x1a\x6f\x0d\x1a\xe5\x03\x1d\x47\xb5\xd2\x57\x85\xc2\x25\x6b\x1c\xeb\x6d\x27\x75\x2e\xa9\xc0\x22\x52\xb9\x0b\xf4\x89\xf2\x33\xd5\x37\xd8\x0a\x84\xca\x7f\xb9\xca\x5f\xd6\x80\xb4\xc3\xf8\x23\xfd\x87\x4a\x7f\x59\x63\x3c\xea\x8c\xd2\xf4\xb6\x23\x85\x91\xde\x33\x52\x7a\x1d\xd8\xe9\x13\xbb\x68\x5b\x73\x70\xab\xd1\x8e\x72\x7b\x4e\xff\xcb\xd1\x9e\xaa\xc6\x13\x1a\x84\xe9\x38\xab\x06\xe4\xb2\xf4\x48\xa3\x35\x97\xa1\xab\xc0\xd5\x95\xbe\x2b\x95\x51\xdb\x42\x5b\x32\x4c\x9f\x93\x0d\x38\x41\x05\xd6\xe4\x93\xad\x8c\x82\x3e\x8a\x60\xc0\x59\xab\x40\x47\x83\x3c\x7c\x9f\xd6\xa6\x19\x4f\x65\x2b\x6f\x97\xf1\x0e\x2a\x7d\xd1\xcf\x55\x03\x2e\x2c\xc5\xa2\xf2\x91\x64\xb4\x50\x2f\x5b\x36\x5a\xa4\x55\x60\x5b\x1e\x31\xbd\x4d\x4a\x05\xd3\x75\xec\x50\x28\x7c\x6b\xa1\x54\xc6\xad\x32\x1c\xc8\xf6\xf8\x8c\xb1\xa9\x1d\x25\x1d\x53\x74\x9c\xed\x37\xda\x97\x33\xda\x4c\xee\x04\x69\xf9\x2c\x88\x46\xbd\x6c\xa5\x05\xb5\xb5\xea\x2d\xd4\x68\x0b\x09\x5c\x14\xa3\x5f\x6a\x0d\x7e\xeb\xef\xb8\x28\xf4\xc9\x51\x6b\x0d\x8d\x01\x9c\x03\x0a\x44\x2b\xd8\xa7\x50\xd8\xe9\xd0\x29\xb7\x75\xc4\x18\xa3\x72\xdd\x3a\x2e\x90\xb7\x54\x83\x72\xcb\x7c\xa0\x5a\x6e\x95\x2b\xb0\xf4\x2d\xd5\x38\x93\xe8\xc8\x55\x5b\xbe\xb0\xc2\x03\xc8\x53\x5b\x0d\x58\x2f\x34\xce\x55\x18\x34\xf8\x48\xb6\xc2\x63\x74\xbc\x93\x68\xcd\x39\x0a\x33\x52\xea\x5a\xda\xfb\x2c\xe5\x22\x59\x83\x4a\x8a\x90\x81\x87\xe1\x61\xfa\xbc\xde\xce\xab\x6b\x78\x52\x2d\x04\xa1\x06\xa6\x60\xe0\xab\x0e\xc5\x25\x06\x6d\x96\x47\x4b\x84\xb0\xc1\x51\xca\xa3\xac\xc3\x48\xa3\x3d\x55\x0d\xfe\x40\x9e\x28\x56\xc6\xa1\xcc\xe9\xc0\xa8\x4d\x35\xca\x57\x6b\x70\x52\xe7\x6e\x65\x8e\xa8\xd6\xd0\xbe\x52\x03\x59\x09\xb0\x02\xd9\x32\x9f\xe0\x2b\xd4\x32\x93\x66\x55\x3a\x4a\x3a\xf6\x37\x57\x38\xa4\x5a\xc1\x7a\x52\xdb\x5a\xb0\xcf\x2a\x5f\x32\xda\xa1\xcc\xa0\x43\x89\xc2\x55\xad\x94\xa1\xd4\x8c\x6f\x15\x56\x4a\x05\xfb\x74\x78\x65\x0d\x8e\x41\xa0\xdb\x50\x03\x77\xbd\xcf\x3a\x54\x7b\x8c\x27\x35\x60\xc1\x69\xc0\x32\x6b\x50\x88\x0a\xe7\xd2\xa7\xca\xbc\x3c\x59\xc1\x69\xa5\xe6\xba\x6a\xf0\x89\x72\xed\x6c\x45\x7a\x64\x67\x50\x62\x55\x76\x48\x35\xd2\x43\x9a\xc1\xad\xf5\x12\x64\x10\x28\x16\x91\xb7\xcf\x35\x78\x7d\x96\xd6\xb1\xd3\x68\x75\xf9\x79\xa0\xa5\xe5\x2b\xa3\xae\x54\x28\x41\xe7\x96\x59\x63\xdc\x97\x56\x24\x91\x54\x19\xfb\x6a\xfd\xfa\xc7\x0a\x00\x44\xce\x77\x03\x40\x3d\x80\xa9\x4d\x97\xe3\x96\x4f\x88\x96\x44\xaf\x9b\x8d\xeb\x16\xfc\x00\x00\x0e\x80\x02\x56\x18\x80\x05\xf0\x59\x38\x38\x69\x9e\xf4\x4d\x46\x26\x3b\x27\xbb\x27\xfb\x27\x17\x4c\x6e\x9a\xbc\x62\xf2\xa5\xc9\xff\x3c\xf9\xf2\xe4\xbb\x47\x2f\x3d\x9a\x3b\xfa\xd0\xd1\x9f\x1c\x7d\xf5\xe8\x1b\x47\x7f\x7d\xf4\xd8\xb1\x1d\xc7\x5e\x3e\xf6\x0f\xc7\x5e\x7f\xa7\xee\x9d\xd6\x77\x06\xde\x99\x7c\xe7\xfd\xe3\xee\xe3\xbd\xc7\x17\xbf\x9b\x7a\xf7\xca\x77\x7f\x73\x22\x7c\x62\xd5\x89\x9f\x9e\xf8\xcd\x89\x7f\x3e\x71\xf4\x77\xef\x9d\xc4\x93\xcd\x27\xd9\x93\x0b\x4f\x6e\x3c\x79\xd5\xc9\xe7\x4f\xfe\xe2\x3d\x78\xcf\xf6\x9e\xe3\x3d\x69\x6a\x64\x7a\x1a\x00\xe6\xc3\x67\x61\xdb\x24\x4c\xfa\x26\x03\x93\xfc\x64\xd7\x64\xef\x64\x62\x72\xd1\xa4\x3a\xf9\x9d\xc9\x1f\x4d\xfe\x64\xf2\x95\xa3\xab\x8e\x1e\x3e\xfa\xd0\xd1\x6f\x1c\x7d\xf5\xe8\xcf\x8f\xfe\xf2\xe8\xe4\xb1\xd8\xb1\x97\x8e\xbd\x72\xec\xf5\x77\x98\x77\xea\xdf\xf1\xbf\xf3\xd5\x77\x8e\xbd\xf3\xc7\xe3\xec\xf1\xf9\xef\xf6\xbc\xbb\xe0\xdd\x9f\x9c\x68\x3e\xc1\x9f\x78\xb9\x5c\xf3\xef\xde\x3f\xd9\x70\xd2\x79\x32\x79\x72\xfd\xc9\x4d\x27\xf7\x9d\x7c\xe1\xe4\x1b\xef\x99\xde\xab\x7b\xcf\x39\xb5\x68\x7a\x7a\xfa\x9f\xa6\x9f\x9a\x7e\x32\xdc\x15\x76\x87\x5d\x61\x67\xb8\x39\xdc\x14\x6e\x0c\x37\x84\xeb\x43\x3f\x0f\xbd\x1e\xfa\x87\xd0\xab\xa1\x4b\x42\xab\x43\xcb\x42\x8b\x42\xe9\x50\x22\xd4\x1d\xea\x0a\xbe\x1b\xbc\x3b\x78\x57\xf0\x8e\xe0\xc6\xe0\x86\xe0\x99\xed\x53\xed\xa7\xda\x4f\xb6\xff\xae\xfd\x44\xdb\x47\x6d\x7f\x6a\x7b\xb4\x6d\x6f\xdb\x95\x81\x3f\x05\x7e\x13\x78\x3b\xf0\x6b\xff\x5b\xfe\x37\xfc\xff\xd5\xff\x53\xff\xb7\xfc\x39\xff\xfd\xfe\x2f\xfa\xef\xf3\xdf\xeb\x3f\xec\xbf\xc7\x7f\x77\xeb\x8d\xa7\xe9\x75\xff\x71\x1f\xa2\x01\x83\x69\xd2\x38\x5b\x4c\x21\x0f\xb0\xc0\xc0\x97\xcf\x1a\x5b\x13\x00\x6c\x03\x80\x83\xd4\x5c\x00\xf2\xf8\x24\xb9\xdf\x05\x30\xe9\xd3\x37\x82\x5b\x93\x01\x80\xc9\x08\x00\xf4\x00\x4c\xf2\x00\x93\x9d\x00\x90\x04\x98\x24\xcf\x11\xdc\x4b\x01\x4c\xf6\x02\x4c\xf6\x03\xc0\x22\x80\xc9\x04\xc0\xe4\x02\x8a\xc3\x30\x49\xce\x37\x01\xc0\x10\xc0\xa4\x0a\x30\x79\x85\x5e\xf7\xe4\x77\x00\x26\x5f\x02\x80\xeb\x00\x26\x7f\x04\x30\xf9\x9f\x01\xe0\x76\x80\xc9\x9f\x00\x4c\xbe\x0c\x00\x77\x02\x4c\xbe\x02\x30\xf9\x2e\x00\xdc\x0d\x70\x74\x15\xc0\xd1\x4b\x01\xe0\x29\x80\xa3\x87\x01\x8e\xe6\x00\xe0\xff\x01\x38\xfa\x90\xbe\xc1\x6f\x00\x8e\x7e\x03\xe0\xe8\x4f\x00\xe0\xb7\x00\x47\x5f\xd5\x37\x98\x06\x38\xfa\x73\x80\xa3\x6f\xe8\x4a\xee\xd1\x5f\x02\x1c\xfd\x35\x00\x5a\x00\x8e\x4e\x02\x1c\x3d\x06\x80\x75\x00\xc7\x62\x00\xc7\x76\x00\x60\x03\xc0\xb1\x97\x00\x8e\xbd\x0c\x80\xeb\x00\x8e\xbd\x02\x70\xec\x1f\x00\x70\x13\xc0\xb1\xd7\xf5\x0d\xb7\x00\xbc\xc3\x00\xbc\x53\x07\x80\x67\x03\xbc\x53\x0f\xf0\x4e\x2b\x00\x9e\x0b\xf0\x8e\x1f\xe0\x9d\x01\x00\xbc\x04\xe0\x9d\xaf\x02\xbc\x33\xa9\xdb\x37\xef\x1c\x03\x78\xe7\x7d\x00\x7c\x1d\xe0\x9d\x3f\x02\x1c\x77\x03\xe0\x7f\x07\x38\xce\x02\x1c\xef\x05\xc0\x4f\x00\x8e\xcf\x07\x38\xbe\x18\xc0\xe4\x05\x78\xb7\x07\xe0\xdd\x14\x80\x89\x07\x78\x77\x01\xc0\xbb\x57\x02\x98\xc8\xb5\x9f\x00\xbc\xfb\x1b\x00\xd3\x45\x00\x27\x9a\x01\x4e\x84\x01\x4c\x37\x01\x9c\xe0\x01\x4e\xac\x02\x30\xe5\x00\x4e\xbc\x0c\x70\xe2\xa7\x00\xa6\x17\x00\x4e\xfc\x46\xdf\x4c\x2f\x02\x9c\xf8\x67\x7d\x33\xfd\x27\x80\x13\x47\xf5\xcd\xf4\x12\xc0\xef\xde\xd3\x37\xd3\x0f\x01\x7e\xf7\x3e\xc0\x49\x62\xa1\xfc\x08\xe0\x64\x03\xc0\xc9\x66\x00\xd3\x9b\x00\x27\x9d\x00\x27\x59\x00\xd3\x04\xc0\xc9\x24\xc0\xc9\x85\x00\xa6\x5f\x03\x9c\x5c\x0f\x70\x72\x23\x80\xe9\x18\xc0\xc9\x4d\x00\x27\xaf\x02\x30\xfd\x0e\xe0\xe4\x3e\x80\x93\xcf\x03\x98\xeb\x00\x4e\xbe\x00\x70\xf2\x17\x00\xe6\x75\x00\x27\xdf\x00\x78\x8f\xa0\xe1\x36\x80\xf7\x4c\x00\xef\xd9\x00\xcc\xf7\x01\xbc\x57\x07\xf0\x9e\x03\xc0\xfc\x25\x80\xf7\x9c\x00\xef\x49\x00\xe6\xaf\x01\x4c\x2d\x02\x98\x1a\x01\x30\xbf\x08\x2d\xd3\xff\x42\x37\x30\x93\x31\xb0\x55\x8d\x16\x9c\xcb\x4c\x99\x83\xf6\xcc\x16\xab\x8d\xa9\xb3\xd7\x37\x34\xfe\xab\x68\xa8\x09\x9a\x1d\x2d\x4e\x97\xdb\xc3\x7a\xb9\x56\x9f\x3f\xd0\xd6\x1e\x0c\x85\x23\x1d\x7c\x67\x34\x26\xfc\xbb\x88\xf3\xef\xf8\xa1\xf6\x31\x88\xf4\x2f\x0e\x0b\x61\x39\xac\x83\xb3\xe0\x5c\xd8\x0e\xa3\x70\x25\x1c\x84\x9b\xe0\x76\xb8\x0f\x1e\x80\x47\x60\x1c\x9e\x81\x17\xe1\xc7\xf0\x33\x78\x13\x7e\x05\xc7\xe0\x14\x7c\x08\x7f\x41\x13\xd6\xa3\x0b\xfd\xd8\x81\x22\xc6\x71\x21\x2e\xc7\x75\x78\x16\xee\xc1\x2f\xe3\xd3\x78\xd2\xd4\x62\x3a\xd7\xf4\x94\xe9\x15\xd3\x07\x66\x93\xd9\x63\x5e\x68\xbe\xd3\xfc\xa6\xc5\x64\xe9\xb5\x8c\x5a\x1e\xb7\xbc\x61\xad\xb3\x2e\xb7\xde\x60\x7d\xda\xfa\x2b\xeb\xfb\xb6\x46\x5b\xd2\xa6\xd8\xce\xb6\x1d\xb4\x1d\xb1\xfd\x92\xb1\x30\x0b\x99\x83\xcc\x97\x99\x02\x73\xac\xae\xae\xce\x5f\xd7\x5b\xb7\xab\x6e\x6f\xdd\x63\x75\x7f\xb2\x77\xd8\x57\xda\x77\xdb\x6f\xb2\xdf\x67\x7f\xc3\xfe\x71\x7d\xac\x7e\x7b\xfd\xe1\xfa\x97\x1a\xba\x1b\x26\x1b\x97\x37\x3e\xd3\x74\x71\xd3\xeb\xcd\xa6\xe6\xcd\xcd\x47\x9a\x0b\xcd\x1f\x3a\x2c\x8e\x2e\xc7\xf9\x8e\xdb\x1d\x4f\x39\x4e\xb6\x78\x5b\x2e\x68\xb9\xa9\xe5\xe5\x96\x13\xce\x7a\x67\xdc\xb9\xd9\xb9\xd7\xf9\x88\xf3\x15\x57\x9b\x6b\x8d\xeb\xa0\xeb\x6e\xd7\xb8\xab\xe0\x7a\xcb\xf5\xa1\x3b\xe8\x1e\x70\xef\x72\x3f\xea\xfe\xd0\x73\xb1\xe7\x6e\xcf\x8b\x9e\xb7\xd8\x7a\x76\x84\xbd\x85\x7d\x8a\x7d\x9b\xfd\xc8\xeb\xf7\x0e\x7a\x47\xbd\xaf\x73\x5e\xee\x6c\xee\x61\x6e\x82\xfb\x4b\x6b\x5b\xab\xd2\xba\xbd\xf5\xbe\xd6\x97\x5a\xff\xe4\x6b\xf3\x6d\xf6\x3d\xe4\x9b\xf0\x6f\xf0\xdf\xe0\x7f\xc1\x7f\x3c\xd0\x12\xd8\x10\xd8\x15\xb8\x3b\xf0\x48\xe0\xf5\xc0\xef\xdb\xbc\x6d\xeb\xda\x0e\xb6\x3d\xda\xf6\xa3\xb6\xf7\xdb\x95\xf6\x83\xed\x0f\xb4\xbf\xd4\x3e\xd1\x7e\xaa\xfd\x93\xe0\xd6\xe0\xed\xc1\x1f\x05\x8f\x87\xea\x43\xb1\x50\x32\x34\x12\xba\x2c\x74\x53\xe8\x48\xe8\xe5\xd0\x07\xe1\x1d\xe1\xfd\xe1\xbb\xc3\x4f\x84\x5f\x0d\x7f\x14\x11\x23\xe7\x47\x0e\x47\x7e\x16\xf9\x4b\x47\x57\xc7\xf9\x1d\x87\x3b\x5e\xe8\xf8\x90\x0f\xf3\x43\xfc\x95\xfc\x03\xfc\x8b\xfc\xaf\x3a\xfd\x9d\x83\x9d\x57\x76\x3e\xdc\xf9\xcb\xa8\x2d\xba\x30\xba\x3d\x7a\x4b\xf4\xf9\xe8\x9f\x62\x9d\xb1\x1d\xb1\x23\xb1\x37\x85\x36\x61\x97\xf0\x65\xe1\x47\xc2\xeb\xc2\xb1\xae\x58\xd7\x65\x5d\x77\x76\xbd\x35\xaf\x6d\xde\x75\xf3\x7e\x3c\xef\xf7\xa2\x28\x0e\x88\x67\x89\xfb\xc5\xdb\xc5\x47\xc5\x67\x25\x8b\xd4\x25\x9d\x25\xdd\x2d\xbd\xde\xdd\xd6\xbd\xb9\xfb\xee\xee\x67\x7b\xfc\x3d\x63\x3d\x2f\xf6\x06\x7b\xf7\xf6\xbe\xdd\xd7\xdc\xb7\xb7\x6f\x7c\xbe\x6b\xfe\x81\xf9\x0f\xcf\x7f\x79\xfe\xa9\x7e\x57\xff\x60\xff\xf6\xfe\x87\xfa\x7f\xdc\x3f\x19\xaf\x8f\x27\xe3\xeb\xe2\x57\xc6\x9f\x8a\x9f\x4a\xb4\x26\xe2\x89\x33\x12\xbb\x13\x77\x27\x9e\x4e\xbc\x91\x38\x99\xf4\x24\x97\x27\xb7\x27\x1f\x4e\xfe\x42\x36\xc9\x31\x79\xb9\x7c\x81\x7c\x83\x7c\xbf\xfc\x98\xfc\x51\xaa\x39\x35\x3f\xb5\x26\xb5\x37\xf5\x44\xea\x47\xe9\xe6\x74\x32\xbd\x35\x7d\x65\xfa\xee\xf4\xeb\xe9\xdf\x0e\xb4\x0c\xc4\x07\x2e\x18\x38\x34\xf0\xcc\xc0\x47\x0b\xe6\x2f\x38\x77\xc1\x95\x0b\x0e\x2d\x78\x6c\xc1\xeb\x0b\x61\x61\xf7\xc2\x5d\x0b\x9f\x58\xf8\xe6\xc2\x4f\x16\x75\x2d\xba\x6c\xd1\xd8\xa2\x97\x16\x1d\x5b\xdc\xb8\x78\xc7\xe2\xfd\x8b\x0f\x2d\xfe\xf2\xe2\xc7\x17\xff\x68\xf1\x5b\x4b\xe6\x2f\x59\xb3\x64\xc7\x92\xc3\x4b\x9e\x5f\xf2\xd6\x60\xfd\x60\x7c\xf0\x86\xc1\x23\x83\xaf\x0e\x7e\xb4\x34\xb6\x74\xd7\xd2\x67\x96\xfe\x56\x31\x29\x83\xca\x56\xe5\x88\x72\x6a\x59\xf3\xb2\x81\x65\xbb\x96\xdd\xbd\xec\xf9\x65\xbf\x5a\x0e\xcb\x83\xcb\x77\x2f\x7f\x62\xf9\xf1\x15\xcd\x2b\x16\xaf\xd8\xb0\x62\xf7\x4a\xd3\xca\xb1\x55\x7b\x87\x2e\x1e\x3a\x38\x74\xff\xd0\x53\x43\xbf\x5d\x6d\x5b\x2d\xae\xbe\x60\xf5\x9d\xab\x9f\x5d\xfd\xd1\x9a\xee\x35\xbb\xd7\x3c\xba\xe6\xfd\xb5\xdd\x6b\xf7\xaf\x7d\x7c\xed\x47\xeb\x82\xeb\x36\xac\x3b\xb8\xee\xf9\x75\xbf\x5c\xf7\xc9\x70\xc7\xf0\xca\xe1\x5d\xc3\xb7\x0f\xff\x68\x78\x72\xa4\x71\xa4\x77\xe4\xac\x91\xdd\x23\xda\xc8\x91\x91\x89\x91\xdf\xaf\x0f\xae\x5f\xbc\xfe\xa6\xf5\x3f\x5e\xff\xc9\x19\x43\x67\x8c\x9d\xf1\xc6\x99\xcd\x67\x66\xce\x7c\xf4\xcc\xdf\x6e\x18\xdc\x70\xf7\x86\x93\x1b\x5b\x36\x9e\xb1\xf1\xee\x8d\x85\x8d\x6f\x9d\x65\x3b\x6b\xd7\x59\xaf\x6e\x6a\xdc\xd4\xbb\x69\x64\xd3\x05\x9b\x1e\xdf\x5c\xbf\x79\x74\xf3\xab\x6a\xab\x7a\x81\xfa\x90\xfa\xb2\xfa\xfb\xcc\xf6\xcc\x2d\x99\x42\xe6\xa3\x2d\xf5\x5b\xd6\x6c\x79\x60\xcb\x13\x5b\x4e\x9c\xdd\x78\x76\xf2\xec\x5d\x67\x1f\x39\xfb\xe5\xb3\x3f\x3e\x27\x76\xce\xe8\x39\xf7\x9d\xf3\xc4\x39\x3f\x3b\x17\xce\x75\x9d\xdb\x79\xee\x95\xe7\x8e\x9d\xfb\xec\xb9\x27\xcf\xf3\x9f\x77\xc6\x79\x57\x9e\xf7\xf0\x79\x6f\x9d\x6f\x3b\x7f\xfb\xf9\x0f\x9d\xff\xea\xf9\x9f\x7c\x26\xf5\x99\x3d\x9f\x79\xe0\x33\xaf\x5f\xd0\x78\xc1\xc2\x0b\x46\x2f\x78\xec\x82\x89\xcf\xc2\x67\xb5\xad\xb0\x35\xbe\xf5\x86\xad\x2f\x6f\xfd\x70\x5b\xd7\xb6\xcb\xb6\x1d\xda\xf6\xa3\x6d\x93\xdb\x5b\xb7\x5f\xb0\xfd\xee\xed\xcf\x5c\xe8\xba\xf0\xc0\x85\x47\x2e\x9c\xd8\x11\xdc\xb1\x7b\xc7\x53\x3b\x3e\xd8\x29\xee\x3c\x77\xa7\xb6\xf3\x89\x5d\x75\xbb\x36\xec\xba\x7f\xd7\xf1\x8b\x3a\x2f\xda\x7c\xd1\xfd\x17\xbd\x7a\xd1\xfb\x17\xbb\x2e\x9e\x7f\xf1\xf6\x8b\x6f\xbe\xf8\xf5\x4b\x6c\x97\x74\x5e\x32\x72\xc9\x4b\x97\xfc\x7e\xd4\x3f\xba\x67\xf4\xa5\xd1\x52\xb6\x2b\x3b\x92\xbd\x2f\xfb\x4c\xf6\xf7\xbb\xbb\x77\x67\x76\xef\xdf\xfd\xf0\xee\x9f\xed\xfe\xe0\x52\xf1\xd2\x0d\x97\x6a\x97\x3e\x75\xe9\xf1\xcb\x3a\x2e\x1b\xbd\xec\xc8\x65\xaf\x5c\x6e\xba\xdc\x73\xb9\x72\xf9\xc5\x97\x8f\x5d\xfe\xf2\xe5\x7f\xd9\x13\xdc\x13\xdf\x33\xb6\xe7\xf5\x3d\x1f\x5f\x21\x5e\xb1\xf8\x8a\x3d\x57\x3c\x72\xc5\xeb\x57\xb6\x5e\xb9\xee\xca\x87\xae\x3c\x7e\x55\xc7\x55\xa3\x57\x3d\x72\xd5\x0b\x57\xbd\x7c\xd5\xdb\x57\x9d\xbc\xaa\xb4\xb7\x73\x6f\x6a\xef\x9a\xbd\xe7\xee\xdd\xbb\xf7\x96\xbd\x5f\xde\xfb\xd2\xde\x63\x7b\x3f\xd9\xd7\xb9\x6f\x64\xdf\xde\x7d\x87\xf7\x3d\xb1\xef\xc7\xfb\x7e\xb9\xef\xfd\xfd\x96\xfd\x6d\xfb\x93\xfb\xf7\xee\x7f\x6a\xff\x2f\xaf\x36\x5d\xdd\x7d\xf5\x9e\xab\x1f\xbb\xfa\xf8\x01\xff\x81\x35\x07\x46\x0f\x3c\x7e\xe0\xc4\x35\xf1\x6b\x2e\xbe\x66\xfc\x9a\x4f\x0e\x2e\x3e\xb8\xff\xe0\x91\x83\xaf\x1c\xfc\xe0\x5a\xef\xb5\x43\xd7\xde\x7e\xed\x2b\xd7\x7e\x78\xdd\xfc\xeb\xf6\x5e\xf7\xd4\x75\x6f\x5e\x3f\x70\xfd\xd6\xeb\xef\xbc\xfe\x89\xeb\x7f\x7b\x43\xe3\x0d\x83\x37\xdc\x7c\xc3\x8f\x6f\x28\xdd\x18\xbf\x71\xeb\x8d\x87\x6e\x7c\xfc\xc6\x13\x5a\xb3\xb6\x4e\x3b\xac\xbd\xfa\xb9\xba\xcf\x0d\x7c\x6e\xc3\xe7\x2e\xfe\xdc\xa1\xcf\x3d\xf3\xb9\xb7\x6f\xb2\xdd\xe4\xbf\x69\xff\x4d\xaf\x7f\xde\xf2\xf9\x75\x9f\x3f\xfc\xf9\xd7\x6f\xae\xbb\x39\x7e\xf3\xae\x9b\x1f\xbd\xf9\xd8\x17\xfc\x5f\xd8\xf0\x85\xb1\x2f\xfc\xe2\x16\xf1\x96\xa1\x5b\xf6\xdc\xf2\xe8\x2d\x3f\xbe\xe5\xfd\x5b\xbb\x6f\x5d\x73\xeb\x4d\xb7\x3e\x7b\xeb\x47\x87\x7a\x0f\xed\x39\xf4\xd2\xa1\x8f\x6e\x6b\xbb\x4d\xb9\xed\x82\xdb\x6e\xb9\xed\xe1\xdb\x0a\xb7\x9d\xbc\x3d\x73\xfb\x81\xdb\x1f\xbe\x7d\xe2\x8e\xba\x3b\xe6\xdf\x71\xd3\x1d\xcf\xdf\xf1\xc1\x9d\xcb\xef\x3c\x70\xe7\xf1\xbb\xea\xef\x1a\xbc\x6b\xf4\xae\xf1\xbb\x3e\xb8\x5b\xbc\x7b\xc7\xdd\x0f\xdd\xfd\xd6\x3d\x96\x7b\x7a\xef\x39\xeb\x9e\xd1\x7b\x6e\xbf\xe7\x97\x87\x4d\x87\xe3\x87\x87\x0e\x6f\x3f\x7c\xff\xe1\x17\x0e\xbf\x75\xb8\x74\x6f\xdb\xbd\x83\xf7\x8e\xde\xfb\xf4\xbd\x3f\xbe\xf7\xd8\x7d\xae\xfb\x86\xee\x1b\xbd\x6f\xfc\xbe\x13\x5f\xac\xfb\xe2\xc8\x17\xaf\xfc\xe2\x63\x5f\x7c\xfb\xfe\x85\xf7\xdf\x7c\xff\x43\xf7\x3f\x7b\xff\xc9\x5c\x5b\x6e\x24\x77\x30\x77\x77\xee\xd9\xdc\xcf\xc6\x2c\x63\x1d\x63\xeb\xc6\x0e\x8c\x8d\x8d\x3d\x3d\xf6\xe6\x97\x52\x5f\xda\xfe\xa5\x3b\xbf\xf4\xca\x97\x2d\x5f\x5e\xf9\xe5\x5b\xbe\x3c\xfe\xe5\x5f\x7e\xc5\xf6\x95\xf8\x57\xb6\x7e\xe5\x81\xaf\xbc\xfc\x40\xdd\x03\xcb\x1f\x78\xfe\x81\xe3\x0f\xb6\x3e\x38\xf2\xa0\xf6\xe0\xc3\x0f\xbe\xfa\xe0\x89\x87\x9a\x1f\x1a\x7c\x68\xd7\x43\xf7\x3d\xf4\xd6\x57\x93\x5f\x1d\xf9\xea\xc1\xaf\x3e\xf2\xd5\x9f\x7d\xf5\x4f\x0f\x67\x1e\xfe\xc5\xc3\xa5\xaf\xc5\xbf\xb6\xe3\x6b\x8f\x7d\xed\xcd\x23\xcd\x47\x2e\x3b\xf2\x8b\x23\x1f\x7f\x7d\xc3\xd7\x6f\xff\xfa\xab\x5f\x2f\x3d\x32\xf8\xc8\xc1\x47\x1e\x7d\xe4\xed\x6f\xb8\xbe\xb1\xf9\x1b\x87\xbf\xf1\xec\x37\x26\xbe\xf1\x97\x47\x5b\x1f\x3d\xe3\xd1\x8b\x1f\xbd\xe9\xd1\xc7\x1e\x9d\x78\xf4\x93\x6f\x6e\xff\xe6\x23\xdf\x7c\xe3\x9b\xa5\xc7\x56\x3e\x76\xd9\x63\x47\x1e\xfb\xc5\xb7\xfc\xdf\xda\xfc\xad\xdd\xdf\xba\xe1\x5b\x63\xdf\x7a\xea\x5b\xbf\xf8\xd6\xfb\x8f\x07\x1f\x1f\x78\xfc\xac\xc7\x77\x3f\x7e\xff\xe3\xcf\x3e\xfe\xdb\x6f\xdb\xbe\xdd\xf9\xed\x81\x6f\x5f\xf7\xed\xc7\xbf\xfd\xc9\xf8\xf9\xe3\xb7\x8f\xff\x6c\xfc\xa3\x7c\x57\x7e\x71\x7e\x7f\xfe\x99\xfc\x9b\x4f\xd4\x3f\xb1\xf0\x89\xfd\x4f\x1c\x79\xe2\xd5\x27\x3e\x7c\xd2\xf5\xe4\xf2\x27\x77\x3c\x79\xcb\x93\xcf\x3f\xf9\x97\xa7\x7e\xfc\xd4\x89\xef\x74\x7c\x67\xe4\x3b\x0f\x7d\xe7\xed\xa7\xbb\x9e\x5e\xfe\xf4\x75\x4f\x3f\xf5\xf4\xdb\xdf\x0d\x7e\x77\xf0\xbb\x37\x7f\xf7\xd1\x67\x3c\xcf\x0c\x3c\x73\xd9\x33\x2f\x3d\xf3\xc9\xf7\x86\xbe\x77\xe0\x7b\xf7\x7d\xef\x8d\x67\xeb\x9f\xbd\xf9\xd9\xd7\x9f\xb3\x3d\x37\xf8\xdc\x95\xcf\x3d\xfb\xdc\x27\xcf\x2f\x7c\x7e\xf7\xf3\x8f\x3f\xff\xc9\xf7\x0f\x7c\xff\xa5\xef\xbf\xff\x42\xeb\x0b\xca\x0b\x4f\xbf\x70\xfc\x07\x63\x3f\x78\xe9\xc5\x96\x17\xb7\xbe\x78\xe7\x8b\x9f\x80\x89\xfa\x51\xbf\x82\x2a\x98\x81\x81\xde\xef\x22\xf4\x2d\x7e\x86\xb1\xc0\xff\x88\x7f\xd7\x66\x7d\x7b\xf1\x33\x66\x13\xfc\x8f\x38\x7c\xd7\x4c\x2e\x5b\xc9\xe5\x67\x18\x1b\x7e\xb2\xf8\x19\x24\xd7\x13\xce\x84\x53\x48\x38\x79\xe7\xa1\xab\x77\xed\x42\xb5\x94\x77\x62\x62\xb6\x66\xd3\xff\x7f\xcf\xff\xef\xf9\xbf\xef\xdc\x0c\x12\x48\x58\xc4\x22\xc5\x51\x07\x40\x54\xe6\x59\x4e\xe6\x59\x53\xdc\xeb\xb1\x75\xc4\x92\xc8\x8a\xa2\xb8\xe2\xe9\xeb\xaf\x7f\xfa\xfa\x29\x4d\xcb\x48\x12\x2a\xd7\x93\x33\x3a\xad\x50\x7e\x97\xbc\xe9\x06\x0e\x20\x15\x4f\x25\x63\x1d\x36\x8f\xcb\x78\x3b\x9d\x60\x79\x36\xc1\xf2\x2f\xde\xb9\x73\xe7\x9d\x3b\x37\xd1\x62\x0a\xa2\x28\x8a\xea\x4e\x72\x05\x03\xb4\x2c\xb7\x26\x49\xd4\x3a\x65\x41\xc1\x29\xa3\x2d\xf5\xd5\xb6\x30\x01\xa4\xcd\x98\x98\x9a\x2a\x66\x32\xaa\x24\x29\x98\x2b\x65\xc1\x0c\x0a\xb0\x58\xc0\x22\x34\x40\x08\xa2\xf4\x79\x99\xa7\x15\x26\xe4\x10\xb2\x11\x39\x2d\x27\x53\x64\x8b\x7b\xdb\x31\x88\x2c\x93\x20\x8d\x42\x55\x11\x15\x45\xbc\xa1\xa7\xa4\xf5\x28\xfd\x9e\x36\x4f\xbf\xf2\xc3\xcd\xbe\x0e\xdf\x29\x49\x51\x24\x45\xd9\xd8\xc3\x71\x3d\xd7\x25\x36\x36\x38\x9a\x3d\x9e\x66\x47\xc3\xc6\x44\xd1\xe9\xf7\x03\xd4\xc2\x8a\xf4\x97\x03\x28\xf7\xd2\x66\xf4\x3a\x65\x9c\xff\x4f\x57\x63\xa3\xab\xd1\xbd\x61\x60\x60\xc3\x40\x1d\xed\x33\xb2\x8d\xe4\xda\x25\x03\xe4\xda\xbf\x18\x00\xb4\x80\x02\x0a\x16\xb0\x40\xcb\x23\x3a\x3c\xa4\x92\x7a\x19\x29\x5a\x4e\x2a\x2e\x24\xf4\x22\xe5\x64\x5a\xe6\x18\xc1\xc6\x7a\xbc\xf1\x94\x9c\x8c\x09\x2c\xef\x31\x1e\xd5\x1a\x5d\x4d\x4d\xae\x3f\xd1\xfd\x6d\xec\x86\x3d\x7b\x8e\xec\x59\x7f\x6f\x70\x6f\x64\xcb\x75\x5b\xd6\xa5\x44\x5a\xad\xde\x9e\x20\xdd\xe7\xf7\x1c\xd9\xb3\x67\xc3\xd6\x05\x78\x6f\xf0\xaa\x79\xf2\xe0\x96\x2d\x83\x03\x9b\xeb\xe6\xfd\x33\x79\xbb\x91\xf6\x51\x01\x15\x0b\x98\x07\x0e\xfa\x88\x0d\x8f\x72\x32\x26\x61\x87\xad\x1d\x3d\xde\x45\x18\x4f\x2d\x41\x9e\xe5\xe5\x04\xcb\x7f\xca\xf5\x74\xdc\xcb\x3a\x3d\x36\x3e\xd2\x11\x93\x9d\xc9\x54\x02\xb5\x46\xbb\x62\x6f\x6a\xb2\x2b\xf6\xc6\xb0\x24\xed\xa3\x07\xf4\x52\x58\x92\x7e\xe6\xf4\xfb\x9d\xa5\x09\x97\xcf\xe7\x42\xd6\x4b\xae\x67\xc8\xce\xdb\xa0\x34\xcc\x3c\x1b\xf3\x3b\xa7\x81\x3c\x8c\xe0\x34\xc6\x42\x05\x15\xf3\x98\xa7\xb8\xd2\x00\x80\x09\x96\x8f\xc8\x09\x96\xf0\x4d\x54\x33\x99\x69\xc8\x88\x19\x54\xa6\xf2\x79\xcc\x94\xc6\xc1\x54\x81\x75\x03\x04\x48\xaf\x78\x36\x21\xf3\x32\xd9\x4e\x6b\xb1\xa2\x69\xaa\xaa\x8e\xeb\x6d\xa3\x95\x2a\xd2\x84\x24\x89\x92\x56\xb9\x20\x92\x56\x98\x40\x05\x0d\x5f\x43\x0d\x4c\x74\x36\x8e\x63\x78\x27\x87\xec\xf3\xcf\x17\x9e\x47\x4d\xd3\x10\x34\xf2\x8c\x0c\x1a\xe6\xcb\xcf\xb8\xd3\x4e\x5e\x48\xff\xf9\xf9\xc2\xf3\xcf\x23\x68\xd3\xa0\x69\x33\xe8\xc8\x02\x76\x68\x06\xb7\xde\x1b\x81\x49\x73\x2c\x6f\xe6\x18\x5e\x8e\x32\x82\x9c\xc0\xad\xfb\xf6\x29\x5b\x15\x45\x0b\x2b\xca\x3e\x64\x15\x45\x43\x45\x23\x17\xf4\x13\x72\x55\x1f\x3f\x09\x0b\x78\x82\xe2\x94\x0c\xe0\x32\xd0\x44\xb0\x79\x38\x26\x96\x4c\xbb\xe3\x29\x39\xe1\xb1\xf1\x1d\x42\x4c\xff\xa3\xe4\xc1\xf2\x04\x81\x59\x0f\xe7\xd5\xff\xfe\x1c\xee\x0e\x85\xba\xaf\x1c\x18\x08\xae\x5a\x75\xc2\xe9\x93\xe2\xbc\xc7\x31\xcf\xc5\xb4\xcf\xf3\x70\x5b\x6e\xc8\x48\x4b\xce\x1d\x74\x36\x77\x76\x35\x34\x71\x75\x28\x92\x27\x43\x3f\x1c\x38\x32\x10\x5c\xf5\xe3\x55\xa5\xcb\xfd\x4e\x3e\xce\xb0\x69\xaf\x37\x18\x9d\x27\x2e\xcd\x64\x96\xf6\x0c\x0e\xf6\x84\x43\x81\x40\xb0\x23\xd6\x48\x67\x22\x2d\x15\x1c\x33\x03\x07\x3c\x24\x08\xe5\x26\x58\x6e\x06\x46\xb1\x09\x39\x11\x4f\x31\x84\x9e\xe9\x58\xcd\x81\x59\xb2\x14\x36\x70\xab\x25\xdc\x62\x6f\xcc\x85\xa5\x70\xb8\x16\xa5\x26\x15\xa5\x21\x63\xa0\x51\x38\xdc\xd8\xa8\xc9\xb2\x26\x49\x53\x33\x50\x89\x8c\x21\x8b\x79\x9c\x82\x66\x68\x27\xed\xe0\x18\x99\x92\x1b\x47\x68\xcd\x1d\xf7\xb2\x1e\x46\x20\x14\xc7\xb3\x42\x1a\x41\x55\x87\x76\x06\x42\x8e\x61\xd9\xf8\x52\x55\x4d\x51\x33\xca\xce\xa1\xf8\xbc\x50\x20\x22\x0f\xa3\x54\x39\x54\xd4\x0c\xf5\x4c\x64\x41\xc1\x1c\x16\xc1\x41\xf1\x2e\xe1\xb1\x31\x2c\x2f\xf7\xa2\x9c\x20\xa4\x6c\xeb\x88\x2d\x41\x9d\x3f\x79\xf0\x8a\xce\x61\x59\x94\x87\x3b\x57\x9c\xbf\x62\x4b\x32\x16\x4b\xc6\x90\x4d\x6d\xac\x1b\x1a\xaa\xdb\x98\xea\x5b\xb2\xc4\x19\xf3\x6b\xfe\x18\xd9\xe9\xf8\x5f\x2d\xb7\x0d\xba\x4e\x2f\x59\x60\x3d\xde\x44\x3c\x25\xa7\xc9\xc0\x7a\x3f\xa5\x9a\x3b\x1c\x0d\xf5\x0e\x6c\xf1\xb4\x24\x4f\xaf\xef\xbb\x37\xd7\x3b\x9a\x1b\x6e\x6e\x70\x38\x7e\x5e\x53\xb3\xd9\xa0\xa3\x22\xf8\x20\x02\x02\x80\x1b\x19\xa1\xa6\xe2\x44\x3c\x2d\xd8\x78\x52\x9d\x60\x15\x74\xd4\xe2\x28\x04\xcf\xc3\x9d\x81\x73\xbc\x11\x5a\x71\xaf\xaf\x95\xaf\xb3\xf9\x63\x84\x44\x62\xc9\x98\xea\xf6\xdb\xb1\x50\x7a\x30\x70\x4e\xb3\xd5\xa8\xbd\x81\x37\xc5\xfc\x2d\xda\x17\x6f\xb4\xd0\x8a\xa3\x91\x80\x87\x03\x04\x09\x54\x2c\x62\x1e\x5a\x49\x7f\x6b\x70\x61\x11\x72\x09\x21\xa1\x6f\xa8\xa9\x3e\x67\x69\xdc\xe9\xf3\x39\xbd\xa2\x22\x8a\x92\x22\x11\x81\x91\x2f\x15\xcb\x83\x9e\x21\x9f\x19\xfc\x9c\xf0\x84\x4e\xca\x15\x2a\xf2\x63\x36\xb6\x31\xce\x08\x4b\x8f\x31\xa7\x4a\xaa\x2a\x65\x49\x05\x3a\x22\x65\x50\x2a\x15\x9d\x3e\x64\xc9\x75\x55\x2d\xf8\xaa\x08\xe6\x53\x4b\x45\xd1\xe7\x44\xea\xb4\xb7\xce\x90\xb5\xd5\x3a\xa9\x8c\x4b\x93\xed\xd3\xeb\x2c\x6a\x5a\xb1\x38\x75\x7a\x9d\x59\x51\xcc\x4b\x92\x2a\x49\x9f\x52\x6b\xb5\x8f\x75\xe0\x85\x18\x80\xbb\x5c\xa6\x55\xe6\xd9\x18\xdf\x61\x23\xc8\xb2\x04\x67\x57\xad\x1a\xe5\xab\x6a\xb3\xcb\x1b\x0e\x77\x87\x6a\xfa\x8b\x9a\x51\x3c\x2b\xee\x6b\x20\x8c\xc2\xbb\x7f\xb4\xb6\x76\x30\x64\x79\x04\xa7\xf0\x9f\x69\x5f\x03\x55\x59\x1e\x65\x38\x07\x0a\x4c\x1f\xa6\x85\xb4\xb0\x14\xb9\x74\x08\x19\x2a\xdc\x11\x92\xcc\xfa\xae\xb5\x6b\xbb\xd6\x33\xc9\xca\x91\xae\x72\x64\x17\x9d\xe9\x5c\x19\x0a\xad\x70\x9d\xb9\x68\xf1\x19\xe4\x68\xa5\xf3\xcc\xb9\xe4\x71\x94\x12\x6a\x07\xe3\x26\x48\xc8\x7a\xbc\x15\x1d\xe6\xd6\xce\x9d\x43\x8b\x7b\x2e\x59\xdc\xf3\x41\xe7\x4e\x17\x15\xc8\x5f\xea\x59\x3c\xb4\xb3\xb3\xf4\x8b\xce\x0f\xc8\x01\x6a\x65\x9d\xc6\x04\x1a\x64\x51\xc3\x1c\x6d\x37\xc1\x32\x09\x89\x44\x91\x54\x35\xaf\x62\xae\x34\x81\x62\x69\x02\x3e\x45\x6f\xe2\x6b\xf5\x26\x45\x12\xa5\x56\x5a\x57\x7e\x7c\x7c\x7c\x1c\xc5\x72\x15\x35\xfc\xde\x0c\x0d\xba\xde\x44\xf8\x9f\x6d\x96\xee\xc4\xc9\x09\x16\x59\xe9\x96\x1a\xd5\x29\x27\xe5\xc7\xc7\x33\xb5\xaa\xd3\x93\xe3\xe3\x80\x90\x87\x2c\xe6\x30\x07\x26\x00\x37\xc7\xe4\x4f\x9d\xc2\x5c\x8e\x9c\x95\xeb\x31\x11\x6d\x6a\x29\x0a\x31\xa3\xe8\xa2\xa6\xf5\xd0\x02\x8f\x6c\xdd\xba\xaf\xd2\xae\x99\xf0\x74\x9d\xae\xcd\x71\x32\x57\xab\xc8\x8d\x6b\x33\xb4\xb8\x17\x0a\x5b\xf5\xbe\x11\x1a\xd5\xc0\x5c\xd6\x09\xd3\x84\x77\x13\x3d\x90\xa7\x02\x37\x21\xb0\x11\xd9\xca\x46\x64\x69\x3c\x4f\xe9\x45\x52\xa7\x01\x61\x1a\xf2\x44\x2f\xcc\x64\x44\xa2\xe0\xa9\x92\xf4\x1f\x4f\x9f\xba\x5c\x22\x6d\x6f\xa2\x73\x8b\x3e\x5d\x0e\xb3\xba\x2e\x96\x88\x73\x56\xd2\x13\x36\x22\x47\xd9\x88\x8c\xd9\x51\x25\x96\x8c\xc5\xfc\x75\xcd\xa5\x62\xde\xe8\x02\x6a\x52\xc1\x4f\x38\xa9\x25\x26\x8a\x9a\xd1\x8d\x4a\x3f\xa6\x28\x5c\x23\xa4\x1f\x11\x96\xe8\x2a\x16\x03\xbe\xe6\x28\xc7\x24\x66\xf4\x07\xf3\xa5\x71\x04\xa9\xf4\xff\x52\xbe\xdc\x82\xcd\xcd\x4f\xff\xc5\xd5\xda\xea\x2a\x8d\xbb\x5a\x89\x14\x92\xa4\x3c\xa9\x3c\x89\xa6\xcb\x3a\x57\xfb\x5c\xd3\x40\x7a\x8b\x10\x04\x2b\xb0\x90\xc5\x29\xcc\xd1\xba\x42\xc0\x13\x1e\x1d\x95\x49\x35\xed\x98\xd2\xa9\x3d\x79\x9a\x24\x75\x26\x9c\xee\x84\x93\xc7\x86\xe5\x8b\x97\x5f\x15\x6b\x6f\x8f\xb5\x6f\x20\x72\x73\x1a\x88\x70\x45\x45\x94\x24\x29\xd7\xe2\xf5\xfb\xbd\x2d\xaf\xb4\x93\xdb\x5b\xe8\xbd\xc6\x46\x3b\x82\xbd\x51\xa7\x09\x83\x2e\x4c\x86\xfe\x41\xf8\x8d\x53\xc7\xeb\x08\x2b\xa4\x59\x99\xe5\xe5\x08\x11\xae\x98\x15\xa7\x41\x55\x45\xd2\x8b\x5c\x46\x53\x54\x55\x99\xd0\xbf\x2a\xba\x4b\x11\x6c\xe0\x20\x3c\x3e\x4a\x30\x26\x9d\xe0\x4e\x2f\x84\x0d\x87\x25\x36\x53\x2d\xa9\xa0\x7a\xd9\xfc\xcc\xd2\x80\xc6\xb1\x28\x54\xb6\x13\x8d\x8a\x88\x72\xa2\x49\x53\xe9\x58\x96\xe7\xab\x77\xec\xbc\x73\xa7\x34\x3c\x3a\x3c\x2c\x67\xb3\x98\xdb\x31\xb4\x7a\xc7\x8e\xd5\xf2\xf0\xf0\xe8\x70\x26\x9b\x9d\xa9\x67\xda\x28\x56\x40\x94\x4b\xb3\x7c\x5a\x48\x27\x58\x01\x05\x74\xa0\x90\xc6\xc5\x2b\xba\xf7\x77\xaf\xe0\xf6\x77\x97\xfe\x14\xc4\xc6\x1b\x83\x97\x07\x8f\xd1\x2b\xbf\x33\xae\xac\x08\x5e\x1e\x04\x83\xb7\x68\xa8\x51\xda\xb0\x95\x79\x0b\x87\xaa\x24\x15\x9f\x43\x8d\x60\x90\x56\xf3\x8c\x89\x3c\xe3\x4e\x3b\x31\xe1\xe4\x5f\x7b\x6e\x1a\x24\x89\x6a\x8c\x04\xcd\x6a\x64\xc9\x2f\xc1\x0e\x4e\xf0\x41\x3b\xc1\x2b\xb7\x9c\x60\x19\xa2\x9a\xa7\x67\x5b\x24\x51\x46\x48\x93\xb6\x16\xb4\xf5\xeb\xb5\xf5\xc3\xd7\x6d\xd9\x72\xdd\x96\x55\x47\x88\xad\x80\xb9\xc0\xf6\xc0\x6b\xdb\x03\xdb\x91\x95\x62\xe7\x4a\xc2\x39\x85\xb3\xc9\xdd\xd2\x15\x0f\x5f\x71\xc5\xc3\x23\x91\x4d\xe1\xf0\x59\xe1\xb3\x80\xb6\xad\xdc\x76\x70\x47\x9c\x11\x4d\xc7\xf7\x69\xa3\x2d\xba\x5c\xd6\xe5\x1a\xc1\xbb\x0a\xbf\x27\x14\x2b\xb3\x09\x39\x3a\x1b\xe7\xf2\x13\x13\x19\x71\x22\x83\x14\x75\x75\x79\x5d\xa4\x14\x23\x49\x9a\x24\xe5\x67\x29\xfc\xd5\x3a\x18\x68\x81\x56\x88\x10\xe3\xb5\xc2\x97\x52\x49\x81\x21\x9a\x5a\xcc\xe8\x36\x43\x34\x38\xa2\xf1\xe2\xac\x5a\xff\xd0\xe1\xf7\x77\xf8\x1f\x8d\xc7\x43\xb1\xe8\x0d\x43\xf1\xf8\x50\xdc\x1a\x8b\x06\xe3\x71\xec\xac\xb6\x02\x25\x3f\x79\xea\xf6\xf8\xdd\xf1\x50\x2c\x99\x8a\xda\xe2\xe4\xc1\x34\x39\x0c\xc6\xef\x8e\x63\xe7\xe9\xb6\x48\x95\xcf\xba\xa8\xac\x4b\x0b\x9f\xce\x9e\x40\xd3\xf2\xa7\xf1\xa6\xd7\xb6\x6e\x5d\x37\x27\x5b\x42\x50\x40\xc3\x02\x6a\x14\x87\xd3\xac\xc0\xea\x85\x12\x75\x2e\x11\x89\x7b\x59\xcc\xaa\x6a\x53\x95\x1a\x9b\x30\xac\x9e\x52\x87\xc9\xd9\x04\xd9\xe9\x78\x27\x19\x3a\x1b\x95\x92\x54\x63\x2b\x97\xb1\x08\x05\x2b\x4b\xac\xcc\x76\x1c\xc2\x83\x81\x95\x36\x9b\x5e\x54\xcb\x42\xcc\xfd\xe1\x66\x7b\x13\x16\x4b\xb7\x04\x56\x5a\x68\x69\x0b\x57\x1d\xff\x43\xa3\x7d\x98\xea\xb4\x2a\xde\x81\x79\xb0\x82\x1d\xc0\x9d\x48\x3b\x05\xbe\xd3\xc3\xc8\x59\x35\x9b\x55\x31\x9c\x42\x25\x5b\x1a\xcf\x5e\xbb\x3f\xf0\x04\x20\xe4\x40\x45\x95\x3e\x6b\x3c\x99\xcb\x8c\x8e\x66\xf4\x47\x6a\x6d\x60\x02\xbb\x20\xe5\xf2\x6c\x1f\x52\xa5\x52\x4e\xa5\x05\x56\xe0\xe5\x84\x60\x4d\xc6\x04\x39\x88\x54\x17\x17\x3c\x8c\x20\x7b\x11\x7a\x0e\xe0\xce\x40\x77\x74\x9e\x8f\x3b\x2f\xab\xee\xdc\x89\xea\xa2\xbe\x65\x9b\xbd\xe1\x06\x19\x93\x32\xe6\xcf\xed\x59\x5e\x7a\x30\xd0\xdd\x5e\xdf\xcd\xb8\xce\x3b\x9c\xd5\x76\x7e\x33\x71\x46\x73\x77\xf3\x25\x2b\xe7\xcf\x8b\x04\xda\xed\x96\x64\x9f\x9f\xf2\x9b\x55\x58\xc0\xff\x44\x71\x96\x05\xc0\x20\x7a\x6c\x8c\x3c\x88\xc9\x98\xe0\xf5\x30\x32\x43\xdb\x8b\xd2\xb2\xcd\x9b\x97\xf5\x2d\x5a\xd4\x27\xcb\x53\xb4\x87\xff\xa9\xf9\x92\x43\x97\x34\x77\x37\x9f\xb1\xeb\x8c\xe6\x4d\x07\xfc\x4f\x78\xcb\x7d\x99\x49\x07\x86\xd6\x23\x18\x94\x30\x1b\x17\x31\x9f\x61\xa7\xa6\xa6\x30\x53\x45\x3d\xad\x50\xc8\xaa\x6a\x56\x55\x51\x9a\x85\x64\x55\x38\x99\xa1\x09\x7c\x30\x4f\xe7\xad\x02\x9b\x20\xda\x5b\x32\xc6\xd7\x5a\x4a\xee\xd3\x2d\xa5\x61\x6a\x08\x69\x73\x98\x48\x5b\x35\x6a\x20\x69\xba\x75\x84\x30\xd3\xc6\xb5\x42\x07\xf4\xe3\x9b\xf8\xdf\xc0\x0e\x8d\xe0\x01\x0e\xfc\x00\x51\xca\x63\x88\xb5\x6f\x4d\xf4\x61\x82\xe3\x05\x9e\xe1\xb9\x04\xe3\xe6\xd3\xb8\xe1\xa6\xe7\x6f\xb8\xfe\xbb\xa5\x87\x36\x89\x4e\x7e\xab\xe0\xb9\xd4\x23\xfc\xe0\xc2\x78\x62\x67\xfc\xf1\x8e\xc0\xf7\x3b\x02\x37\x5d\xde\xfb\xa7\x64\x92\x8f\xe3\xee\x38\xc1\x4b\x16\x24\x9c\xc2\x82\x5e\xaa\x01\x1f\x09\xe5\x84\x33\xe2\x4c\xb0\xbc\xd1\x7a\x77\x9a\xc3\x02\x69\x91\xaa\x96\x34\x55\x25\x47\x8a\xa6\x61\x81\x42\xc8\x27\x12\x3e\x44\x68\x05\x9c\xfe\x52\xd6\xb0\xa7\xab\x7c\x3f\x09\x8b\xe0\x4c\x80\xa8\x27\x11\x5f\x8a\xa9\x25\x18\x23\x0a\xa2\x03\x6d\xed\xe8\x4d\x7b\x1c\x68\xe3\x3b\x88\x29\xdc\x8b\x02\xa1\x86\xa5\x98\x4a\xc4\x89\xa0\x0f\x9a\x38\x2f\xcb\xf0\x32\x23\xa7\x13\x4c\x32\x95\xa0\x56\x21\x95\x9d\xb2\xee\x42\xf2\xd7\x5b\x4d\x16\x93\xc9\x6e\x32\x9b\x2d\x66\x73\x97\xc9\xc6\x58\x4c\x76\x93\xdd\x62\xb2\x99\xec\x26\xc6\x66\x9c\x30\x16\x8b\xe9\x1c\x0f\x1b\x33\xdf\xbf\x63\x75\x36\x9b\x1c\x19\xb9\x78\x44\xda\x79\xe7\xce\x97\x18\x93\xd5\x62\x92\x2c\x16\xab\xd9\x42\xbe\xdd\x4d\x96\x26\x9b\xc9\x84\x16\xb4\xfa\x1c\xe5\x63\x53\xa3\xad\x41\x1e\xb2\x39\x1a\x03\x43\x3b\x32\xd9\x6c\x86\xca\xa8\xd5\x3b\x76\xcc\xea\x9f\x00\xab\xe1\x36\x80\xf4\x1c\x8d\x4c\xff\xf5\x3e\xc7\xe6\xe8\x32\x1f\x27\x4f\x4b\x68\xeb\x68\x47\x3e\x69\xdc\xf1\xb6\xa3\x8d\xf5\xf0\x1d\x8c\x97\x23\x3c\xb6\x19\x99\x1a\xa8\xc9\x09\xd6\xeb\x59\x84\x29\xe3\x45\x59\x9d\xd1\xd3\xff\x5a\x03\x26\x93\x49\x34\xc0\xc4\xb4\x98\x2c\x66\x33\x39\xae\x2b\x43\xe9\x0a\x87\xc9\xd2\x60\xb2\x78\x1b\x18\xac\xc3\xc6\xc6\x3a\x93\xc5\x64\xb5\x9b\x2c\x04\x26\x16\xc6\x64\x37\xd5\x99\xb0\xce\x64\x77\xd1\x87\x4c\x96\xa6\xa9\x99\x30\x69\x9d\x13\xa0\x75\xd8\x68\xaf\x73\x34\xd8\xaa\xf0\x6c\xb2\x90\xb7\x2d\x75\x0e\x93\xcd\xe2\x60\x2c\x26\x8b\xd5\x6a\xae\xb3\xda\x4d\x68\x43\x8b\xc9\x84\x26\xb4\xb6\xd0\x27\x1a\x4c\x16\x07\xe8\xfe\x1d\x1d\xce\x71\x18\x02\x48\xdb\x58\x86\x27\x8a\x2c\x13\x97\x93\x29\x79\x11\xc6\xb9\x20\xd6\x80\xc4\x80\x47\x19\xea\x7d\x18\xe3\x85\x39\x86\xe5\x2f\x8c\xa9\xc9\x9a\x88\x9a\x4c\x66\x8b\xa5\xce\x8c\x36\xb4\x93\xd6\xd5\x39\xec\x26\x64\x4c\x76\x67\x93\xc5\x64\x35\x91\xee\x7c\x7b\x06\x24\x7f\x6b\x46\x73\x9f\xc3\x6d\x42\x44\x33\x5a\xd0\xde\x6c\x27\x10\xa9\xa3\x8d\x6e\xae\x37\x59\x2c\xa6\x26\x8b\xd5\xd4\xf4\x57\x71\xe5\xdf\x4f\x0b\xe9\xb9\x94\xa8\x99\xb4\x20\xfe\x15\x5a\x38\x8f\xd0\x02\xa7\xeb\x5c\x23\x17\x8f\x8c\x24\xb3\xd9\xbf\x8d\x16\xee\x39\x4d\x41\xab\xf6\x8f\x05\x19\xae\x86\x3b\x6a\xfa\x97\x8c\xc9\xff\x81\x98\x3f\x27\x6c\x82\x0d\x04\xa1\x4c\x75\x26\x0b\x21\x80\xae\xbf\x1b\x01\x24\xe6\x02\x22\x5a\xd0\xf4\x77\xa4\x80\xe7\x66\x03\xbb\x4a\x0f\x49\x58\xf3\x57\xe9\xc1\xfc\x29\xf4\x20\xcf\x01\xa3\x4f\x18\x93\xe3\x34\x7a\xb0\x58\xd1\xd4\x30\x9b\x22\x66\xf4\x79\x4e\x82\xb0\x98\xd1\x34\x8b\x24\xbe\x3f\x97\x4e\xaf\xcf\x33\x14\xa8\xdc\xe7\x89\xc6\x51\x31\x4e\x59\xce\x19\x71\x12\x49\x64\x26\x92\x88\x5c\x2d\xcb\x50\x7d\xd6\x20\x5f\xd2\x50\x73\xfa\xd1\xe7\xcc\x8e\x67\xa9\xdf\x5a\xd2\xa7\x0d\xc6\xa8\x3e\x2c\xe9\xb6\x98\x24\x11\x81\xe4\xf2\x01\xd8\x2a\x75\x35\x81\x07\x82\xd0\x0b\x71\x48\x95\xbd\xea\x44\x58\x73\x09\x21\xc5\xa4\x79\x46\xe0\x39\xc1\xb8\x18\x4f\xcd\x56\x96\xb9\x04\xcb\x13\xa1\x8b\x05\x57\xf3\x70\xd8\xe7\x0a\xbb\xdd\xdf\x8b\x85\xbd\x6c\x38\xba\xdc\xdd\x34\x3c\xdc\xe4\x46\x96\xb4\xa5\xa4\x91\x7d\x58\x92\x90\x95\x24\x6c\x60\x9b\x5d\x9a\x24\xf5\xd8\x53\xda\xda\xb5\x5a\x58\x69\x76\x69\xae\xf7\x7d\xae\xb2\x74\x77\xf9\x8e\x28\x0a\x5b\xf6\x47\xe8\x7a\x8b\x13\xda\x41\x80\x74\xd5\x9b\x41\x36\xdd\xbf\x2f\xd4\x78\xcc\x89\xae\x21\x90\x53\xee\x34\xad\xfe\x39\x7f\x6b\xa0\x35\xd0\x64\x57\xed\x8d\x39\x55\x95\x65\x39\xe5\x4f\xf9\xfd\x69\x74\x94\xad\xd7\x56\x57\x31\xbb\x75\x78\x78\x6b\xd6\xde\xd8\x78\x4e\x40\x0b\x70\x81\xd6\x9d\xda\xf0\xb0\x36\x3c\x3c\x45\x60\x47\x41\x4a\x21\xa7\xb7\x2b\x8b\x45\xea\xd7\xb0\x41\x3d\x34\x13\xeb\x8b\x89\xca\x11\x6a\x84\x5b\x75\x23\x7c\xb4\x54\x40\x56\x2d\x8d\xe1\x68\x69\x6c\x4a\x51\x88\x31\x25\x8a\xba\xdd\x4d\x6c\x86\x1c\x16\x31\x0b\x16\xf0\x40\x2b\xb4\x41\x18\x20\x2d\x30\x02\x93\x66\xc9\xe8\x96\x35\xe0\xb8\x97\x58\x98\xc4\xb8\xe4\x78\x39\x31\x39\x3f\x1a\x88\x3e\xe7\x77\x6a\x54\x21\x73\xfa\xa5\x71\xf2\x29\x28\xf3\xc3\xf3\x35\x8d\x80\x8e\xec\x5e\x92\xa4\x09\x49\xd2\x44\x6a\x63\xea\xf6\x21\x53\x9d\xbd\xd1\xdd\x22\xba\xab\x04\x74\x3d\x47\xc5\x29\xcc\x53\x6f\xcf\x0c\x2d\xd3\x62\xbc\x81\xd9\x81\x35\x6b\x06\x62\x7d\x7d\xb1\xd2\xb8\xee\x53\xf9\x66\xf3\xf9\xfb\xcf\x6f\xee\x6e\x5a\xbe\x79\x79\xd3\x7f\xd6\x4b\x32\xd7\xe0\x92\x93\xd8\x7b\x29\xea\x95\x90\x0d\x1f\x45\x19\x73\x6b\xc7\x23\x1f\xf3\x33\xcd\x59\x25\x96\xfc\x83\x8e\xb7\x7e\x67\x89\xee\x1f\x4b\xc6\x2c\x37\x4b\x63\xfe\x28\x4b\x6d\x77\x75\x86\xd2\x67\x99\x61\xcf\x78\xa9\xc6\x27\xb0\xd1\x59\x96\x07\x75\xe3\x44\xe4\x08\xaa\x1a\x42\xc5\x76\xca\x38\x7d\x2a\xa1\x83\xd2\x38\x66\xf2\xab\xee\x78\x90\x9a\x3a\x79\xa7\xdf\xff\xb2\x28\x6a\x52\x19\xd7\xa6\x50\xa3\xb6\x03\xb5\xa8\x91\x63\x84\x34\x17\x35\x7c\x2b\x74\x58\x5f\x0b\xe7\xb6\x85\x97\x95\x8a\xe3\x19\xc3\xaf\xd2\x10\x1e\xdb\x1a\x56\xbc\xa2\x58\xac\xf8\x86\x58\x08\x9b\x00\x0b\x60\x05\x27\x74\x01\x10\x0b\x57\x48\x0b\x35\x7e\xa6\x34\x31\x6a\x78\x39\xe2\x8c\xe8\xd7\x0c\x90\x98\x60\x6b\x58\x51\xc2\x77\x28\x3a\x3d\x3b\xfd\x52\x49\x43\x45\xd2\xa9\x59\xa3\xf7\x86\x29\x49\xab\x3e\xd7\xf8\xf8\x34\x88\x15\x62\xae\xc2\xdf\xf0\x69\x12\xfe\x60\xfd\x54\x7e\x31\x8e\xec\x1c\xcc\x42\x9a\x9b\x51\xd8\xa0\x1b\xba\xb1\x88\x6f\x41\x03\x38\x81\x83\x76\xdd\x73\x03\x15\x4c\x91\xbd\xe6\xb4\x97\x63\x63\x82\x97\x63\x62\x42\xda\xc6\xf0\xa9\xa5\x68\x63\x84\x54\x3a\x84\x36\x06\x8b\x97\x6d\x5c\x9a\xc9\x2c\xdd\xf8\x7e\x30\xda\xb7\x54\xb5\xb5\x05\xe7\xd9\xd6\xb7\xd9\x24\xdb\xbc\xc3\x7d\xd1\x60\x62\xa9\xb4\x74\xe9\x32\x3c\xeb\xd1\x83\x75\x52\xdd\x36\x6d\x5b\x9d\x54\x57\xba\x27\x48\x6e\xff\xa0\xaf\x33\x94\x58\x7a\x43\xb4\x6f\x69\xa2\x83\xbe\xf4\xcd\xbe\xbe\x7e\x30\xfc\x38\xe5\x39\x1a\x37\xe1\x07\x91\xd3\xed\x17\xea\x0d\x75\xf9\xca\xb6\x84\x56\x2c\x9e\x66\xb6\xd4\xd8\xed\x76\xc3\x6e\xe9\x31\xac\x22\xca\x3f\x78\x6a\x1f\x95\x79\x61\x3c\x35\xdb\x6c\x26\x8c\x0f\xf3\x01\x39\x10\x48\xdd\x12\x96\x08\xf3\x93\x9a\x5d\x53\x55\x5e\x12\x96\xa4\x82\xce\x3d\x34\x6d\x98\xf2\x3b\xf7\x93\xb5\x6c\xe4\x0e\xd6\xa0\xbf\xf2\xb8\xb9\xf5\xda\x4f\xb3\x90\x0a\x85\x42\x95\x3a\xb2\x9a\x36\x8b\x24\x4e\x2f\x63\x0e\x78\x14\x66\xd2\x58\x56\x51\x66\x97\x02\xb3\x70\x88\xab\xfa\xff\x4f\xe3\xa4\x50\x28\x14\x6a\x8b\xc3\xac\x28\x66\xa8\x63\xe4\xaf\xb4\x0b\xe7\x2e\x69\x46\x39\x90\xcb\x15\x66\x14\x62\xaa\x8c\x91\x09\x5a\x08\x56\x27\x08\x7f\xe4\xad\xc6\xfb\x11\x54\xf6\x85\x2b\x04\x0e\x78\xc7\x7e\x6f\xde\xe9\xc3\xea\x18\x9b\x2a\x3e\x8a\x06\xc3\xf3\x53\xf1\xd2\x2e\xc5\x39\x3c\x16\x12\x91\x97\x92\x36\xd3\x6f\x31\x25\x52\x82\x94\x67\x79\x2f\xfe\x0d\x70\xcf\x9f\x3a\x85\xec\x6c\xb8\x37\x52\x1f\x48\xd1\x80\xbb\x1b\x38\x08\x18\xde\x51\x09\xfa\x20\x01\x0b\x00\xa2\xc4\xa8\x25\x42\x40\xa6\x21\x0b\x74\x33\x1b\xa3\x53\xde\x66\x9f\xbb\xa9\xa9\x8a\x9a\x24\x49\x99\xbc\x44\x3e\xa2\xfe\x91\x8c\x4f\xbe\x58\xca\x14\x0b\x92\xa4\x8a\xe2\x78\x51\x12\x25\x49\x44\xa0\xe3\xa8\xd2\x6b\xb3\x4e\x4a\x45\xd4\x80\xfa\x7c\x74\x5b\xbf\x0d\xc0\xed\xe5\xd2\x29\xce\x4b\x3d\x34\x1e\x1b\xe1\x2e\xba\xc8\x62\x3d\x9c\x97\xb9\x6b\xfe\x67\xfa\xea\x1b\x3b\xbb\x08\xac\xc6\x8a\x8d\x76\x02\x39\x8b\x1d\xfd\x9f\x99\xdf\x57\x6f\x6d\xa4\xe7\xc5\x31\x72\xb3\xab\xb3\xc9\x4e\x63\x3f\x9e\x32\x01\x66\x21\x08\x80\x1d\x0c\xeb\x61\x6c\x8c\xad\xa3\x0f\x63\xc9\x74\x2a\xcc\x79\x89\x86\x6c\x68\xc7\x31\x84\x64\x6f\x63\xd8\x67\x73\xd9\x64\x9b\xed\x12\xec\xb8\xc4\x66\x93\x6d\x2e\x9b\x2f\xdc\x18\x47\xc5\xb1\xdc\x61\x75\xb4\xea\x57\x76\xec\xd0\x9f\x69\x75\x58\x9b\x97\xb7\x18\xf2\x30\x87\x39\xa8\x03\x70\x27\x58\x5e\x66\x84\x34\x5f\x28\x8a\x1f\x07\x3f\xbe\x0b\x73\xc5\xbb\x3e\x0e\x7e\xac\xe3\xcc\xd5\xb0\x1e\x6f\xc3\xe7\xa0\x0e\x1a\x01\xdc\x69\x8e\x67\x19\x21\x2d\xbb\x85\x34\x77\x64\xeb\xd6\x61\x2d\xb8\x57\x5b\x1b\x5c\x8b\xea\xd6\xad\x87\xb4\xe0\x55\x57\x97\x3e\x5e\x13\x5c\x03\x3a\x6c\xee\xc2\x02\x66\xa1\x5e\x97\x1c\x7a\x30\x02\x87\x8f\x04\x0b\x39\x29\xbf\xfd\x6a\xcc\x06\x0b\xb9\xed\x79\xe9\x6a\xf2\x6c\x16\xb2\x54\x36\xd7\x01\x20\x75\x8c\x26\xd8\x34\xe6\x3f\xbe\xab\x28\x7e\x8c\x77\x7d\x2c\x16\xef\x32\xda\x52\x96\xe1\x75\xe0\x00\x70\x33\x1c\xcb\xcb\x02\x23\x2f\x42\x56\x60\x84\x74\xb1\xff\x0a\x71\x67\xff\x84\xd6\x3f\x18\x1c\xc4\x7c\xff\x15\xcf\x3e\xb2\xb3\x5f\xa3\x67\xb3\xe6\x72\x18\x68\xa0\x73\x06\x72\x84\xe2\x86\xcc\x46\xaa\xb3\x14\x8c\x1e\x0b\x31\x0d\xf9\x3c\x82\x44\x3d\x3e\x45\xd5\xe7\x44\x95\x7a\x3b\xb3\x92\x94\xd3\xdd\x7f\x2a\x6a\x74\x02\xcd\x0c\x0a\xe4\x68\x3f\x8d\xf8\x06\x77\x84\x8d\x30\x72\x84\x25\x14\x90\x43\xa9\x54\x54\x51\x9a\x06\x14\x31\x2b\xe5\x25\x29\x23\x8a\x9f\xda\x16\xab\xb1\x45\x9d\x42\x99\x64\x22\x71\x2f\x1a\xbe\x64\xba\xa9\x6a\xa9\x58\x16\xdf\xa4\x49\x0a\xfd\x9f\x28\x69\xaa\xee\x8e\xf4\x51\x3e\x0e\x58\x34\xc1\xdf\x32\xaf\xe0\x94\x23\xac\x93\xaa\x69\x6b\x57\xae\xbd\xb1\xab\xad\xad\xab\xed\xda\x1a\x3f\x6b\xa6\x34\x9e\x0b\xb7\x06\x83\xad\xe1\x5f\xb7\x91\x9b\x5b\x6a\x85\x47\x49\x95\x24\x13\x18\x7a\x5c\x95\x1e\xc2\x10\xd3\x35\xe8\xe8\x5c\x04\xe1\x40\x9d\x5a\xd2\x44\xac\x50\x55\x80\xe2\x87\x4c\x71\x84\x25\xc4\x8d\xf9\x99\xb4\xd2\xd7\x77\x41\x9f\xbd\xa9\xb3\xcb\xcb\x2a\x12\xab\xd0\x7e\x67\xbc\xcf\xcd\xa2\x9c\xbe\xf3\xfb\xfb\xec\x96\xc6\x49\xaf\x97\xb2\x2e\x2f\xab\xb0\x5e\x49\xb7\x25\xea\x2b\xf1\x03\xfa\x1c\x64\x08\x04\xe8\x83\x34\x2c\x85\xd5\xc4\xd6\x2e\x7b\xa8\xbd\xc6\x77\x6a\xd6\x79\x79\x42\x2e\x65\xdc\xb3\xcc\x7a\xae\xfc\x5d\x2e\x47\xf7\x5f\xeb\xff\x0f\xd4\x1c\xef\xa2\xfb\x97\xe8\xbe\xf4\x72\xcd\x8d\xda\x47\x71\x8a\x9e\xed\xaa\xb9\x53\x7b\xfc\x72\xcd\xfe\x81\x9a\x7d\x49\xff\x82\x1a\x39\x61\xa5\xde\x52\x99\x11\x58\xee\xb4\xb9\xa4\x3c\xf9\xd4\x8c\xb2\x2a\x65\xb3\xd2\x68\x61\x96\x62\x50\x9d\x9b\x6c\xa2\xbe\x3f\xa2\x3d\x31\x06\x6a\xb2\x1c\x29\x53\xa0\x51\x04\x04\x79\x9a\xec\x45\xb5\xd1\x8e\xac\xbd\x49\xb5\x37\xaa\x53\xf6\x46\x64\x11\xec\x8d\x19\x94\x68\x24\x51\xa3\xbd\x54\x50\x1b\xed\x52\x01\x6a\xe2\x2d\x0a\x74\xbe\x06\xa2\x09\x46\x48\xc8\x09\x81\xa3\x1a\x20\xaa\x8a\xaa\x2a\x62\x8e\x98\x72\x39\x55\x1d\xcb\xa9\x63\x63\x06\xad\x85\xb1\x80\x6f\x50\xfa\x6f\x27\xbc\x42\x48\x73\x41\x64\x04\x56\xa6\xf3\xc8\x21\xea\x31\x27\x06\x6d\x5a\x48\x03\x42\x7f\xf0\xcc\x6b\x62\x2e\xef\x83\xbb\xfc\x23\xff\x83\x09\x2c\xec\x5b\xbc\x3a\xde\xcb\xcc\x5b\x14\x40\x09\xbf\x38\x9f\xdc\xcb\xf6\x3d\xf0\x4f\x17\xed\xea\x90\x92\x23\x81\xba\xc0\xc2\x58\xbc\xef\xf3\xf1\x45\x81\x52\xd1\xa8\x4b\x8f\x59\x63\xc1\x07\xdd\x00\x98\xa2\x44\xc4\x26\xe8\x58\x53\x5f\x45\x22\x99\x66\xaa\x3a\x8a\x84\x8c\x50\x51\x2a\x97\x79\xe2\x43\x71\xd1\xdf\xe1\x6f\xf2\xfb\x44\x9f\x4f\xa4\x41\x4a\xaa\xa2\xa8\x54\xe1\x89\x7a\xda\xf8\x44\x82\x77\xfa\xfd\x1d\x4d\x81\x40\xa4\xa1\x23\x70\x9f\x24\xa1\x4a\x78\x8d\xd3\xaf\x28\x7e\x27\x4a\x84\xb9\xe8\xb0\xcf\x63\x11\xdc\xc4\xfa\x75\x7b\x39\x46\x68\x46\x07\xf6\x5a\xe4\x64\x5a\x48\x73\xe9\x0e\x46\x48\x25\xaa\xa1\x2f\x7f\xb9\x74\x65\x60\x4d\x4b\x67\x7d\xbd\xcd\x93\x14\xc2\x96\x95\x81\x67\xea\xb8\x96\x55\xdd\xca\xe0\x96\xce\xf5\xce\x10\x36\xec\x5e\x19\x58\xdd\xda\xdb\xd0\xc0\x70\xab\x96\x9d\x15\x6a\xf0\xae\x0c\x3c\x73\x91\x6b\x65\xef\x96\xc1\xf9\xab\xce\x70\xb4\x7a\x43\xe5\x71\x91\x68\xbc\x0a\x03\xad\x84\x2e\xf4\x89\x9a\x18\xa9\xa5\xd9\xa4\xd7\x7d\x8a\x46\x12\xd9\xaf\xdb\x12\xea\x96\x1c\x2d\xb4\x32\x6c\x08\x91\x8b\xf9\x2d\x83\xa1\x0d\x43\x4b\x5c\x4e\xbd\x8a\xc1\xff\x2d\xaf\xc3\xd3\xf8\x6e\x85\xd7\xcd\x64\xbe\x3a\xa7\x23\x06\x4c\x95\xfb\x62\x0d\x6e\xc2\xac\x92\xf2\xd5\xb7\x8b\xb5\xef\x98\x6a\x62\xb8\x5c\x00\x51\x67\xc4\x99\x9e\xfd\x6a\x69\x5c\xaa\xa9\x3d\x4f\xc4\xbd\x84\xe2\x4c\xbe\x6f\x82\x04\xb4\xe3\x4f\xa8\x6f\xc2\x65\xcc\xd5\xe8\x96\xaa\x10\x65\x85\x74\x22\xee\x3d\x03\xf7\xb5\x75\x35\xd6\x4d\x38\x7d\x03\xb8\xfd\xc3\xf8\x98\xd3\x87\x4f\x96\xee\x6c\x9b\x67\xf3\x3b\xff\x30\x60\xfe\x5f\x1f\xc6\xa9\xbe\xf3\xff\x97\x0e\x61\x06\x09\x64\xda\xcf\x0e\x88\xc3\x72\x00\x37\x47\xf0\x93\xe9\x88\xc9\x34\xe6\x82\x63\x7a\x91\xce\xbd\xb1\x1e\x6f\xf9\x98\x9b\x85\x4f\x9c\x60\xc4\x69\x18\x57\x87\x58\xdc\x19\x38\x82\x16\xa7\x1f\x3b\xec\x22\xdb\xce\x7b\x82\x91\x5e\x81\xed\x5f\xd0\xdd\x5d\x94\xa2\xa1\xf8\x92\xb3\xaf\x0f\x85\xd9\x9d\xfd\x3c\xc6\x79\xbb\x85\xf7\xfa\xe5\x61\x7c\xcd\x5b\x7a\x30\xf0\x75\xf4\x3b\x2d\x1d\x2e\x4f\xbf\x2f\xea\x5c\xc4\xc7\x42\xa1\xde\x54\xef\x99\x5c\xb4\xed\xc2\x85\xeb\x16\xf4\x58\x3d\xa1\xd0\xf5\x67\x2f\x89\x87\x84\x79\x43\x3b\x7f\xcd\x5b\xec\x7c\x1c\x79\xfb\xb0\xec\xa7\xcb\x61\x28\xd4\x76\xd4\x39\x76\x1f\x40\x34\x96\x4c\x27\xd2\x82\x8d\xb1\x79\x38\x2f\x97\x16\x18\x43\xb2\xb9\x3e\x6d\xc6\xfc\xfa\xba\x3a\x3e\x2c\x76\x3b\x6c\x36\x47\xb7\x18\xde\x77\xf6\x86\xb3\x1f\xa0\x53\xf5\xa7\xa8\x1e\x9a\x21\xfb\x22\xdb\xcd\x8a\x52\x24\xc9\x76\xb3\xc9\x88\x24\xaa\x6c\x7b\x34\xda\xce\x22\xd0\x89\xfb\x5d\xb3\x14\x54\x6b\xa5\x4d\x7a\x4c\x08\x0f\xf3\xa8\x36\xdf\x8e\xff\x9b\x96\x58\x19\x41\xe6\xd2\x58\x1c\x9f\xab\x09\x98\x53\x14\x45\x41\xd0\x34\xed\xd3\x6b\xcf\x8a\xa2\x97\xca\x59\x02\x97\x15\x26\xa0\x38\x4c\xb4\x32\x11\xc0\x1d\x23\xfc\x80\x28\xc5\x84\x25\xce\xd0\x10\x67\xeb\x8f\xb7\xad\x33\x05\x47\x2e\x13\x7f\x39\x12\x1c\x51\x75\xd5\xb0\xad\xbd\xb1\xf7\xe2\x19\x5a\x24\xf6\xad\xc3\xd0\xc8\xa1\xd1\xd1\xf3\x86\x83\x23\xff\xa2\x5f\xf6\x37\x5b\x9b\x97\x3b\x66\xa8\x94\xb4\x2d\xe7\x81\x84\xdf\xc4\x29\xaa\xf7\x07\x08\x9f\x8a\xea\x11\x52\xed\x58\xf5\xdd\x24\x62\x71\x8e\x89\x75\x30\x02\x97\xd2\x0f\x50\xd1\xae\xaf\x6f\x6e\xae\x3f\x48\x76\x7c\x61\x55\x70\xe0\xe1\x81\xe0\xc2\xee\x1b\xba\x43\xa1\x73\x43\x6a\x3e\x5f\x6c\xae\xff\x6f\xe4\xd6\x7f\xab\x77\x90\x9b\x03\xc1\x25\xdd\xdd\xc1\x50\x48\xb7\x33\xf4\xb8\x09\xdd\x8e\x8a\xb0\x91\xa8\x2e\x8d\x28\xc9\x10\x68\x1b\xd1\x3f\x9f\xf3\x39\xab\xd6\x06\x66\x27\x26\x08\x45\xd3\x5d\x99\xcf\xb1\x98\x33\xda\x0d\x51\x27\xef\xac\xf0\xf1\x32\xee\xd4\xbe\x93\xa5\xfe\x97\x1b\x7d\x65\xe3\x4c\xa3\xf6\xd8\xff\x39\x6d\x41\xc3\x07\x97\xa7\x71\x2b\x9c\x1e\x0c\xb3\x04\x75\x9c\xa4\xc2\xd5\x08\x2b\xa4\x51\x64\x3c\x6a\xaa\x12\x1f\x8a\xfb\x3b\xfc\x44\xd2\x1a\x47\x98\xcf\xe4\xf8\x78\x9c\xcf\x91\x52\x73\xaa\x9a\x23\x42\x4a\x3f\x99\x9b\x8f\x57\x7d\x8f\xd1\x99\x2c\x34\x2b\x11\x13\x0a\xbd\x55\x26\xcc\xea\x66\x56\xa1\x96\x8b\x9a\x01\x20\x67\x02\xd4\xa8\x4e\xc6\x03\x74\x1a\xd2\xa6\x1c\x15\xd1\x49\xb4\x29\x02\x47\x1a\x9f\xe8\x61\x12\x31\x39\x89\xbb\x07\x25\x69\xb0\xfb\xd4\x60\x77\xf7\xa0\x84\x7d\xdb\x57\xae\xec\x2f\x9d\xea\x5f\xb9\x72\xfb\xaa\xc0\xd6\x40\xa1\x9b\xde\xa4\xfb\xfb\x57\x6e\x5f\xb5\x8a\xdc\x96\xc2\x61\xc9\xf0\x95\xb0\xa0\x51\x9f\x16\x43\xda\x5f\x8e\x9a\x2a\xc7\x3c\x35\x23\xaf\xc7\x0f\x79\x6f\x26\x7a\x94\xef\x1b\xbf\x91\xd4\xcf\x34\x2d\x17\xe5\xe1\x61\x59\x5c\x5e\xa4\xca\xd5\xe2\x8c\xaa\xc6\xfa\x86\x47\x87\xfb\x0c\x7b\x9a\xe8\x08\x53\x34\x3a\xb6\x3a\x2f\x4a\x00\x9f\x60\x13\x4e\x52\x6a\x32\x95\xe0\x18\x8e\x11\xa8\xd7\x8b\x4b\x23\x05\x67\xd1\xe9\x97\x8a\x45\xc9\xef\x54\x55\x95\x55\x33\xac\xaa\xb2\x19\x15\xa7\xca\x86\xb1\x22\x61\x46\x52\x9c\xfe\x07\xca\xb7\x58\x55\x2d\xc7\xb8\xe8\xf5\x31\xd0\x0e\x32\x80\xdb\xe0\x39\x89\x59\xd4\xa6\xc7\x73\xa6\x3f\xa5\x3d\xaf\xb9\xfd\xee\xf3\xea\x5b\x9c\x0d\xfb\xea\x5b\x5a\xea\xa3\xbd\x9d\xdf\x99\xd1\x26\x64\xc3\x8d\x2d\x2d\x8d\xe1\x96\x86\x61\xf2\xd0\x70\xbd\x23\xec\x0d\x87\xbd\xcf\xcf\x6e\x9d\x2e\xdb\x59\x1a\x2f\x45\xf0\xd6\x0f\x1d\x73\xe3\xae\xd5\x4b\xc3\x01\xd2\xf4\x2b\x29\xa0\x54\x83\xca\x28\x79\x3c\xac\xcb\xb5\xbc\xab\xcb\xdb\xde\xae\x12\x4b\x03\xc7\xfc\x35\x78\xfd\x12\x9b\x74\x7b\x7d\xad\xcb\x63\xd9\xa8\x37\x74\x66\x1b\x81\xc1\x60\x05\xe6\x21\xd8\xfc\xe9\x50\x37\x95\x47\x97\x58\x1b\x36\x5e\xb0\x39\x90\x3e\x94\x16\x62\x02\x63\xeb\xc3\xe4\x52\x94\x85\xd8\x52\x4c\x25\xb8\xd4\x52\x24\x62\x96\x25\x12\x25\x15\x42\x8f\x03\x67\x0d\x53\xac\xc3\xe7\xeb\xf0\x5f\xc7\x59\x4c\xac\xc9\xd2\xd6\x6c\xb5\x5a\x51\x32\x99\xd1\x62\x6d\x0e\x9a\xac\xac\xa9\xb5\x95\xdc\xb0\x06\x9a\x18\x8b\x15\x25\x9b\xd5\xda\xdc\x66\xb2\xb0\x26\xee\xf4\x11\x2d\x9d\xa2\x58\x64\x73\x5b\x4c\x51\x53\x83\xdd\x14\xb0\x5a\x30\x60\xb2\xdb\x4d\xd6\x4e\x8b\xc5\xe9\x75\x56\x2e\x5b\xc9\x55\xb4\x74\x5a\x4c\xce\x5a\x5f\x94\x0d\xea\x89\x16\xee\xe6\x89\x19\xce\xcf\xe5\x48\x2e\x8a\xaa\x2a\x66\xa6\x4a\x1a\x6a\xd5\x99\x06\x04\x55\x55\x97\x61\x77\xe9\x2d\xcc\xf8\x5c\x46\x1c\xbf\xe8\xf2\x19\x34\x21\xe3\x14\x1e\x01\x3b\xc4\x08\xef\x26\xf2\x9e\x4d\x25\xe2\xe6\x38\xe7\xd4\xc3\xcf\xf9\x0e\x86\x6c\x1d\x54\x21\x71\xa6\x12\x71\x2e\x85\x85\x88\xb8\x2c\x99\x5c\x26\x08\x23\x22\x63\x31\x9b\xe6\x2d\x59\x96\x94\xd6\xa5\xe6\xa3\x19\x2d\x8c\x34\xbc\x4e\x92\xf6\x7d\x54\x1f\xfe\x73\x18\xc3\xe1\xd2\x3f\x58\x18\xf4\x86\xc3\x1c\xda\x2c\xb8\x20\x1c\x0e\xeb\x71\x38\x65\x3f\x96\xee\x5b\x4b\x47\xa8\x91\x72\x9a\xc7\x08\xf2\xd4\x3f\x9d\xaf\x8d\xbd\x40\x36\x3b\x0d\xc5\xd1\xd1\xd3\x9d\x98\x26\x00\x50\x4d\x40\x7d\xfc\x7a\x74\x0f\x6b\x63\xa8\x6f\x32\x22\x27\xaa\x8e\x2d\x42\x2a\xc8\x66\x32\x97\x70\x92\x3a\xa6\x96\x40\x75\xb5\xb6\xba\x68\x0d\xaf\x6d\xd8\xd0\xeb\xb8\x6c\xe1\x41\x49\xf2\xb9\x8a\x04\x48\x45\x23\xa6\x03\x20\x60\x02\xfc\x35\xd5\x19\x23\x10\x05\x48\xa7\xd2\x82\x4d\x40\x46\x28\x97\x9c\x16\xd0\x43\x68\x9c\xb5\x75\x30\x02\xb1\x8d\xcc\x09\x96\xcf\xb5\xf7\x77\x84\x2f\xc3\x6f\x06\x16\x96\xae\x57\x5d\xad\xcd\x11\xfc\xa1\x77\x7f\x47\xc6\xc4\x98\xf6\xa0\xd3\xe9\x6b\x59\xe4\x2c\x74\x35\x76\x84\x8e\x97\xce\x0b\x2c\x94\x7c\xce\x09\x77\x63\xa4\x74\xca\xd7\xb8\x3f\x7c\x66\x0f\xe2\xe5\xad\xae\x69\x7d\x11\x91\x19\xbe\x14\x77\x9a\x4b\xeb\x79\x1d\x8c\x12\x7c\xe4\xea\xed\x79\x29\x87\xeb\x83\x8f\x5c\x2d\xe5\xb7\xe7\x2a\x71\x70\x5f\xc7\xaf\x53\x9e\xea\x03\x70\xeb\x49\x03\x74\x4a\x8f\x7c\xb3\xba\xad\xca\x77\xc4\xd4\xb3\xaf\x5b\x72\xce\xe0\x6d\x3f\x59\xfc\xb5\x2b\x02\x5d\xfe\x80\xdb\x13\xc0\x79\xd7\x9d\x3d\x78\xce\x73\x3f\xb9\xed\x8a\xaf\x1d\x75\x07\xfc\x5d\x81\x80\xe1\x9b\xc9\x61\x0e\x1a\x00\xa2\xd5\xe9\xb7\x04\xe6\x34\x51\xd3\x44\x6d\x8a\xec\xb4\xd9\x79\x1b\xd1\xbf\x12\x01\x8a\xd9\x8c\x98\xc9\x88\x5a\x35\xba\x65\x8a\x86\x93\x66\x8a\xb3\x74\x2d\x53\x4d\x5c\xa9\x7b\x66\x99\x65\x7b\xdc\x28\xeb\x52\x3d\xef\x49\x2f\xe6\x54\x39\x50\x76\x66\x9c\x6c\x60\x8e\xac\x27\xb6\x3a\x0d\x51\x1b\x30\x7b\x8a\x96\x33\x33\xf5\x89\xd6\x93\xa9\xc4\xd5\x17\xe8\xaa\x2d\x41\x00\x77\x44\x88\xb8\xd3\xb4\x65\xd1\xda\x7e\x12\xce\x12\x89\x73\x97\x62\xcc\x33\x0d\x9f\xdb\xb7\x2e\xb3\x0e\xa5\x7a\xbd\x83\xf5\xed\xf5\x0e\x04\x47\x3d\xe6\xbc\xa5\xc9\x7d\x92\x74\xb8\xd1\x51\xfa\x88\xf6\xbb\xde\xd1\xd8\xd9\xa8\x2f\x0b\x52\xd1\x33\x1b\xf4\x79\x1d\x3a\x1f\xc6\x31\x5c\x9a\xab\xfa\xc4\xfb\x30\x9d\x4a\x60\x6e\x64\x24\x38\xb2\x3e\xb8\x7e\x7d\x70\xfd\xc8\x05\x14\xa8\x05\x4f\xf3\x55\x57\x35\x7b\xbe\xb7\x5e\xbf\x4a\xfe\x09\xb1\x90\xba\xdd\x4f\x3e\xe9\x9e\x33\x47\x2a\x1a\x4f\xc9\x49\x81\xf1\x0a\x1e\x2e\x1d\xe3\x3b\x6c\x65\x8f\x06\xc2\xd0\xce\xce\x0f\x7a\x2e\xd7\x03\xb0\x75\xf8\xa8\x3b\x87\x16\xf7\x7c\xd0\x99\xa7\x71\xda\xf7\x54\xe2\x92\x67\xe0\x0a\xce\x90\x7a\x57\x5f\x1d\x2c\xff\xe3\xd5\x35\x27\xb4\x1d\x3a\x3f\x27\x32\xa4\x6d\x6e\x09\x92\x66\x23\x4e\x5e\x9f\xca\x38\x45\xb5\x66\xba\x1b\xa7\xf1\x44\x0a\x4a\xa5\x62\xd9\x76\xd6\x2d\xe7\x0c\xb9\x22\x55\xe7\x35\xca\xf6\x5e\x1d\x8d\x48\x94\x69\xb4\x30\x23\xd8\xe2\xc9\x8e\x6a\xf8\xa5\xfe\xcd\x21\xcb\xd3\x08\xc5\x72\x24\xb1\x9e\x24\xa1\xab\x1f\x98\x53\x72\x52\xd8\xeb\xbd\xa5\xc6\x61\x73\x0d\x32\x4a\x2e\xce\xc4\x87\xe2\x71\xde\xe3\x88\xc7\x1d\x1e\x3e\x1e\x1f\x8a\x63\x81\x1d\x93\x86\xbd\xcf\xfb\x3a\x7d\xbe\xce\xdf\xd1\xbd\xb3\xf4\x31\x9b\x2b\xdf\x67\xe2\xe5\x77\x00\x2a\xb9\x40\x86\xcf\x2e\x4a\x61\x40\xb0\xd2\xf9\x29\xb6\xc4\x22\x1c\xc4\xb8\x97\xc3\x9c\x38\x21\x3e\x4c\x93\xc5\xb4\x6a\x0e\xd4\x39\x4c\x58\x0c\x33\x2a\x66\x14\xa5\x34\x8e\x1a\xcd\x2b\x6b\xac\x9d\xf6\x73\xb7\xb6\xba\xa1\x86\x5e\xed\xd0\xac\x7b\x52\x52\xf1\x10\x7a\x3d\xd6\x34\xc7\xf0\xf8\xa2\xb0\x41\xb0\xb9\x6c\x71\x5b\x49\xfb\xfd\x86\xdf\x6f\xc0\x51\x72\x6e\x8b\xdb\x5c\x93\xbf\xdf\xf0\xfb\x72\xac\xa2\x6a\xc8\x7e\x17\xe5\xb5\x8c\xb5\x3a\x81\xb0\x14\x39\x2f\xc2\xd3\x4f\x3f\x8d\x5f\xd0\xab\xf6\xfc\x97\xff\xe2\x99\xba\xec\xa2\x8b\x2c\x74\x90\x8a\xbe\xc6\x2b\xae\x68\xa4\xfd\xd6\xe7\x23\x0c\xdf\x69\x5a\x8e\xb0\xd1\x08\x1b\xe1\xe4\x04\xab\x21\x94\x0a\xa8\x95\xb4\x5c\x66\x4a\x14\x73\x52\x51\x92\xca\x38\xa6\x50\x1f\xb0\xdd\xc8\xbe\xe2\x59\xde\x99\xc0\xc4\x81\xb1\xba\x03\x62\x01\xb5\xa2\x98\xc3\x2c\xd4\xcc\xf7\xda\x88\xa6\xca\x31\x32\x2f\x23\xe4\xf3\x79\x54\x33\xf9\x7c\x66\x5c\xef\xc3\x12\x03\x06\x75\xb0\x8a\x52\x40\xba\x19\x59\x8f\xb7\x0f\x53\x69\xc3\x0e\xb6\x31\x36\x6f\x22\x9e\xd6\xcf\xb9\x04\xab\x2b\x89\x72\x32\x95\xee\xb5\xf0\x1d\x4c\xb3\x89\xb1\xc5\xe4\xe4\xa0\x39\x9d\x12\x62\xd8\xd5\xdc\x66\x09\x86\xeb\x0b\xd1\xfa\xba\x40\xc8\xcd\xb7\xb5\x35\xd8\xac\x75\x76\x87\x37\x30\x7f\x81\x38\xcf\x2c\x27\x6d\x83\x91\xb6\xae\xc5\x69\x44\x2b\xd3\x5c\xdf\xb6\xc8\xd9\xd4\xda\xc0\xc7\x1b\x5c\x2d\x0e\x74\x36\x30\x7b\xa3\xb1\xba\x58\x13\x63\xff\x5f\x9d\x8d\x75\x81\x60\x28\xd8\x25\x74\x3a\x5b\x5d\xde\xce\xc5\xe9\x0e\x79\xd5\xa0\x10\x88\xac\xa9\xaf\xb3\x35\xd9\xac\x6b\x59\x87\xc7\xdc\x30\xbf\xd3\xd1\xd9\x11\xf0\x62\x9b\xc5\x3c\x73\x2c\x7d\xfa\xdc\x0b\x8d\xdb\x90\x4f\x9b\x3d\xcb\x95\x8a\x99\x58\x32\x46\x63\xf3\x4a\x45\x22\xf7\x0a\xc5\xa2\x3f\x16\xf3\x23\xe8\x01\x07\x15\xbd\xc0\x5c\x99\x93\x77\xe8\xde\x27\x24\xfc\x40\x42\x39\x41\x48\x45\x42\x99\x91\x13\x6c\x27\x4d\x00\xa3\x04\x42\xbf\x31\xdb\x3d\x38\xd8\x9d\xc9\x04\x04\x21\x90\x19\x1d\x2f\x95\x84\x40\x26\x63\x5c\xc2\xec\xd2\xb3\x97\xce\x13\x52\xc2\x3c\x4d\x14\xe7\xa7\x84\x79\xe4\xf4\xef\xef\xab\xfc\x7b\x95\x85\x10\x81\x3c\xed\x7f\x33\x8d\xe7\xe5\x29\x53\x64\x84\x41\x4c\xc4\xf1\xb6\x91\xc2\x19\xf3\x07\x07\xce\x71\xc6\xbd\xfb\xd6\xaa\x18\x5c\x5f\x58\xdf\xb5\x2c\xd9\xb2\x32\xa3\xe3\xe7\x14\xe6\x90\x25\xd6\x4d\x34\x22\x47\x74\x0b\x70\x4a\x9c\x21\xcf\xcc\x54\x9a\xca\x3c\x5b\xe1\xb2\xd9\x09\xb7\x21\xc3\xc4\x4f\x91\x5f\xee\x39\xf2\x3c\x66\x65\xec\x8e\x4e\x4c\xcc\x10\x5a\x2b\x44\xaa\x3b\xa8\x58\x30\xe6\x79\x82\xc8\xd1\x58\x9e\xe2\xc5\x57\xb8\xd6\x3f\x9c\xcb\xa1\xe2\xf8\xdc\x79\x97\x6e\xa1\x39\x28\xba\xee\x44\x9e\x6b\xa6\xb1\x0f\xfa\x93\x0e\xe4\x58\x21\x8d\xac\xf1\x82\xa6\xaa\x35\x6f\x11\xdb\x31\x97\x9b\x21\x13\xcb\x92\x9a\xf5\x1a\x6d\x75\x73\x2c\xc3\x0b\x72\x1a\x59\xb1\xde\xeb\x74\x7a\x9d\xbb\xf7\xec\x39\xb2\x67\xcf\x94\xa6\x9d\xef\xf4\xb6\xb4\x78\x31\xbc\x87\xc6\xb7\x03\xcc\x2a\xc7\xb0\x30\xab\xe5\xcc\xcc\xfd\x2c\x5e\x4b\x9d\x28\x79\xb5\x92\x98\xaa\xa8\x6a\x51\x4f\xb6\xe8\x53\x8d\xb1\xd4\xf5\x08\x57\x4d\xb9\x7a\xdc\xbb\x1b\x38\x3a\x47\xd1\x09\x5d\x74\x95\xc6\x14\x2c\x84\x41\x58\x0e\x43\x30\x0c\xe0\x66\x13\x14\xbb\xcd\xc6\x96\x96\x13\xac\xa0\x1f\x7b\x6c\xe4\x80\xde\x64\x79\xd9\x2c\x27\xda\x89\x88\x4a\x10\xbd\x95\xce\x60\x90\x3b\x6e\xe3\x71\x21\x99\x4a\xb0\x05\x2d\x3f\x41\x67\x1b\xa9\xf5\xeb\x77\x4a\x45\x51\x95\x54\xc9\xe9\x97\x48\xdb\x24\x4d\xcc\x4b\xa2\xa4\x91\x3b\xa8\x68\x5a\x7e\x62\x02\x41\x92\x4a\x7a\xa6\x58\x5e\x92\xa6\x41\x72\xfa\xf3\x34\x75\x0c\x35\x49\x2a\x15\x25\x49\xf5\x3b\x51\xf5\x3b\xf5\xe8\xfb\x69\x90\xa4\xbc\x28\x8e\x3b\xfd\x12\xc5\x59\xc9\xb0\x13\xac\x84\x97\xf6\xa0\x6c\x95\x50\x29\x15\xb0\xa0\xe4\x24\x29\x57\x28\xcb\x9a\x39\x79\x2e\x2b\x27\x58\x45\xcf\x15\x28\x69\x5a\x85\xe5\x9a\x0d\x99\x9e\xa7\xb9\x49\x54\x52\x24\x1c\xc8\xa7\x13\x1c\x2f\x30\x11\x36\x82\xd0\xb5\xe1\x33\x9e\xee\x9d\xe1\x9d\xdd\x9e\x9f\x51\xbf\x84\x96\x8d\xf5\x4d\x4d\xf5\x9d\x2b\xd2\xf6\xe4\xf1\x9f\x0d\x1a\x8a\x53\x3f\x23\xdf\xc1\x70\xbc\xcc\xa5\xb0\x61\xed\x5e\x2e\xee\x3c\x67\x60\x70\xfe\x19\x85\x91\xa5\xa8\x66\x56\xb6\x24\x97\x75\xad\x2f\xac\x4f\xcf\xc0\x7b\x23\x8e\xd9\xcc\x9b\x13\xe9\xc4\x6c\x7e\xc6\xa5\x39\xdc\xdc\x73\x69\xd7\xa5\x3d\xad\x07\x2e\xaf\x92\xf4\x8d\xdd\xdd\xfb\xd0\x5b\x3a\xa5\x60\xb8\x56\xf0\xfd\x79\xff\xfe\x5a\x1c\xb3\x41\x0b\x84\xa9\xe4\xa3\xe1\x64\x9f\xce\x34\x55\x62\x51\x8d\x9e\xc6\x39\x51\xca\x64\x14\x25\x5b\xe6\x9f\xba\xfc\xad\xe1\x9f\x73\xe8\x89\x1c\x43\x74\xd7\x44\xfa\xaf\xeb\x89\xcb\xea\x75\x94\xae\x51\x13\xf7\xef\x93\xa4\x7f\x6c\x6c\x29\x6b\x89\x2d\x8d\x3c\xd1\x12\xcb\x70\x2a\xd0\x18\x1d\x9e\x66\x8e\x31\x1c\xe3\x64\x13\x4b\x90\x98\x39\x89\xaa\x23\x4a\x0f\xa0\x22\x76\xf1\x94\xaa\x7a\x15\x25\xe3\xf4\xd5\x98\x54\x19\x9f\x73\x5f\x46\x65\x15\x05\xeb\x45\x51\xf2\xb9\x44\xbf\x93\xa6\x30\x4e\x39\xfd\xe2\x0c\x3f\x97\x13\x04\x3a\x92\xed\xd8\x8c\xed\x18\x91\x93\x31\x81\x94\x69\x99\x59\x11\x39\x8b\xc8\x49\x62\xbf\xbb\x5b\xa7\xa1\xd5\xed\x77\x62\x5f\x47\x79\xde\xbf\xc3\x8f\x22\xe6\x7c\xce\x5e\x26\xcc\x76\x77\xb3\x61\xa6\xd7\xe9\x1b\xf5\x3b\x69\x1e\x58\x96\x1a\xcb\x8a\x73\x66\x1e\x89\x9e\xe3\xd5\x0e\x80\xc4\x90\x4b\x27\x38\x42\x95\xba\x7a\x18\xd5\x27\x8b\x69\x10\x00\x4a\xd3\xa0\xb0\xaa\x37\x5f\xa4\xf1\x60\x08\x9a\x96\xcb\xa9\x2a\xe6\x44\xd1\xeb\x2d\x4d\x15\x89\xea\x71\xaf\xa4\xd1\xf0\xa6\x4a\x2c\x5d\xce\x88\x9c\x0a\xd2\x28\x2d\x2a\xc5\x6c\x44\xaa\x51\x8d\xa1\x23\x6d\x14\x4f\x36\x69\xe3\x82\xe1\xe1\xae\x81\x81\xae\x06\x45\x69\x58\xf0\x1d\x1a\x6d\x36\xfe\xe6\x95\x1b\xc5\x81\x0d\x03\xa2\xa2\x48\x92\x74\x44\x3a\x22\xce\xcc\xf9\x61\x68\xbe\x02\x6d\x7b\x6a\x56\xa6\x4f\x9a\xe5\x18\x41\x26\x1a\xb2\x95\x11\xd2\x3f\xae\xc9\xf4\x79\x4d\x6d\xd9\xb9\x62\x7b\x60\x3b\xae\x09\x6c\x0f\xa8\x35\x59\x3e\x81\x3d\x71\xff\x62\xed\xc2\xb3\xc2\x67\x9d\x15\xd9\x14\xae\xd6\xf3\xab\x7f\x6b\x3d\xce\x1d\xcb\x2f\xa4\xf5\x5c\xd8\x66\xd4\x43\x79\xb1\xff\x8a\x84\x7f\x50\xdb\xbe\x31\xbc\x71\x63\x78\x73\xb8\x56\x0e\x59\xa1\x89\x4a\x56\x5a\xa6\x69\x96\x34\xc2\x86\xad\x2d\x7b\xfa\x6b\xc4\x11\x66\xf7\x2c\x08\xac\xd4\x4a\xa7\x6a\x65\xd2\x0c\xf8\x34\x50\x9f\x71\x48\x8f\xed\xac\xda\x62\x9f\x96\x15\x85\x2c\x8d\x3d\x99\x37\x67\x5a\x14\x8d\xee\x94\x94\xa9\x39\xd3\xa2\x0c\xd9\xab\xe7\xd6\xf8\x89\x15\x8d\x44\x39\x60\x05\x46\x4e\xcb\x8c\xbc\x14\x39\xb6\x0f\x75\xb7\x99\x12\xc0\x0d\x81\x6b\xa5\xe1\x75\xe2\xf8\x8d\xd9\xfc\xca\x6f\xb9\xfd\x6e\x3c\x1c\x28\x3d\x1d\x38\x78\x66\x38\xcc\xb2\xe1\xf0\x3e\x59\xdc\x10\xc8\x8a\xec\xb7\xce\x68\x72\xbb\x9b\x66\x94\x0d\x04\x3a\x6e\xae\xa6\xe4\xf2\xaa\x16\xdc\x7f\xff\x5d\x9e\x96\x39\xee\xf6\xbb\xf3\xa8\xe4\xe4\x7d\x95\xd2\xb2\xfb\x48\x41\xfb\x8c\x98\xd7\x1c\x48\x98\x35\xfc\xac\x35\xf9\xb8\xb3\x6c\xa2\x45\x48\xb3\x4e\x45\x51\xbc\xb0\xd1\xe9\x6c\x7c\x88\xec\xf8\x4c\x31\x9b\x55\x25\x09\x25\x67\x63\xe9\x07\x8d\x2d\x2d\x8d\xb8\xba\xd1\x29\x8a\xba\xae\x5b\x2e\xd7\x4a\x24\xeb\x52\xe4\x65\x26\x91\x9e\xa3\xcc\x29\x22\x9f\x6a\xcb\x54\x8f\xec\x3f\x32\x79\x5a\x81\x58\x29\xcf\x3d\xc3\x07\x57\x6d\xdb\x19\x35\x65\x60\x7e\x76\x01\xff\xde\xf7\xab\x70\xf2\x40\x2b\x74\x1b\x39\xc5\xb5\xf3\xb3\xec\xec\xe9\xd9\xda\xc2\xfb\x1d\xb1\x64\x2c\xec\x6a\x73\xd9\x3d\x9e\x0e\x97\xa3\x6b\x7b\x4d\x65\x7f\x74\xb0\x84\xa5\x37\xb9\xdd\x7e\xbb\xc7\xc3\xb5\xb8\xb6\xcd\x9b\x87\xe2\xac\x06\x98\xe9\x3c\xe9\x41\x1a\x7b\x69\xa5\x3a\x8f\xc0\x3a\xd9\x74\x82\xe1\x18\x1a\x4a\x23\xa4\x39\x39\x81\x4b\xba\xba\x96\x9c\x7f\xfe\x41\x76\x3b\xb1\x76\xb7\xb3\x8f\xce\xdb\x88\x75\x1b\xe7\x9d\x7f\xfe\x35\x8f\xe8\x57\x1e\xa1\x31\x13\x3a\xee\x98\xc1\x06\x76\x1a\xef\x44\xe3\x65\x98\x39\xca\xa3\x34\x90\x93\x24\xb1\x77\x66\xb9\x59\x91\x0c\xba\x24\x49\xe7\x9f\x56\x41\x51\xd2\xed\x26\x33\xa8\xc6\x5c\xb2\x09\x9a\xc0\x4b\x2c\x36\x9a\xbd\x65\x94\xce\x11\x95\x85\x63\x08\x89\x75\x75\x3d\x82\x03\xc1\xfe\xf3\x49\xe1\x77\x15\x44\xf6\xe0\xb2\x60\xc7\x75\x5d\xf3\x7e\x5b\x7a\x35\xd8\x7f\x1e\x29\xf6\x2e\xfb\x2a\x29\x7b\xcd\xb2\x20\x0f\x46\xcc\x87\xde\x7e\x1d\x0e\x01\x88\xcc\x0d\x0b\xce\x70\xff\x32\x69\x62\x57\xa1\xbb\xab\x6b\x71\x4d\x0f\x5e\x0f\x45\x7c\x2c\x9b\xe9\xaf\xaf\x3f\x1d\x46\x3b\xe2\x07\x93\x3e\xf1\x6c\x31\xd3\xef\x6b\xf5\xe9\xb2\xd5\x01\x0e\xfc\x23\xfe\xb1\xaa\x1f\x08\x3c\x93\x48\x27\xd2\x1c\xc3\xf2\x8c\xc0\xcb\x42\x5a\x4e\xa4\xb9\x04\x93\xe6\xb0\x7f\xde\x2a\x71\xd5\x3c\xc7\xca\xdb\x86\x86\x76\xac\x5e\xbd\x43\xdf\xbf\xec\xf3\xe5\x0b\x05\xf1\xca\xca\x85\xa1\xa1\x1f\x9c\x71\x06\xcc\x2a\x9b\xe6\x47\x56\x23\x43\x74\x9e\x14\x9d\x55\xc7\x6f\x68\x76\x62\x78\x74\x78\x78\x74\x18\xa5\xda\x4a\x50\xa5\x09\x89\xdf\x18\x26\xf7\xae\xab\xa9\x4a\xa7\xc7\xda\x3e\x54\xb8\xb6\x75\x46\xd9\x2c\xf7\x9a\x51\x6e\xb5\xd4\x21\x8d\x96\xe7\xda\x51\xad\x6a\x66\x79\xd4\xf6\x89\xd2\xa8\x7d\x6e\x56\x69\x08\xf2\xf0\xb0\x9c\x9f\x55\xd8\x7f\xad\x2d\xaa\x6c\xa3\xbc\x45\x63\xcc\x21\x1a\x4f\x73\xc6\x44\x74\x9a\xa5\xc6\xb1\xdb\x48\xef\x23\xb2\x1f\x61\x4d\xf7\x80\xb2\xfb\xec\xeb\x2f\xdf\x98\x5a\xb7\x65\xd3\xc6\xcb\x5d\x03\xf5\xeb\x52\xd9\x81\xc8\x96\xeb\xcf\xde\x74\x4d\x9d\x52\xb7\x79\x60\x70\x0b\x5e\x52\x77\xcd\xa6\xf9\x42\xa4\xcd\x3f\xb0\xb9\x8e\xe6\x81\xe8\x71\x38\x4d\xe0\x06\x9f\x1e\x9d\x94\x60\xab\x0e\xfc\x34\x23\xa4\x39\x86\xa3\x58\x13\x35\x26\x50\xf4\x00\x61\xcc\x8a\x74\xd6\x40\x54\x82\xdb\xb7\x07\x57\x7c\x3f\xb8\x62\x45\x70\x7b\xe9\x94\x71\x31\x2b\x52\xdd\x4c\x15\x37\x92\xbb\x2b\xb7\x07\x57\xae\x0c\x6e\xcf\x91\x8b\xe8\x73\xaa\x22\x18\xab\xea\xea\xfe\x61\x33\xb8\x89\xee\x37\xd7\x4c\x65\x94\xa5\xee\x62\x52\x6f\x84\xc5\xa2\x9a\xa5\xf9\x78\xf6\xa6\x26\x7b\xe9\xd4\x44\xa9\x28\xf9\x9c\xa8\xe5\xc6\xc6\x0a\x8d\xf6\x22\xb9\x58\xb4\x37\x4a\x53\x8a\x32\x45\x34\x70\xdb\x8c\x98\x51\xdd\xce\x10\x88\x3d\xa1\xc7\x2b\x5a\xcb\xdf\x9f\x12\x89\x9c\x13\x45\x11\xc5\x53\xa7\x4e\xcd\x8c\x47\xd6\x8d\x52\x1a\x78\xa8\x87\x1f\x16\xf4\xf0\x08\x3d\xad\x4e\x0f\x4c\xae\xc6\xac\xb2\x38\x45\xe7\x87\x42\xa4\xe6\x32\x56\x45\xa9\xe3\x42\x5f\xfc\x43\xe0\xe5\xc4\x20\x12\x9b\x26\x88\x36\x03\xb7\x75\xad\x00\x37\x77\x77\x33\x5b\x57\x88\x2b\xb6\x32\xe5\x83\x5f\x53\xe4\xce\x6e\x21\xf7\x37\xd5\xde\xa0\x07\x66\x8a\xdf\xfa\x1c\x42\xb5\xde\xff\x6d\xad\x9f\x5a\xdb\xa7\xd5\x33\xbb\x6f\x3e\x1a\x09\x40\x43\x17\x12\x71\x73\xba\xba\xb0\x09\xa9\x25\x95\xb6\x26\x58\xde\xc6\x54\x63\x17\xf4\x5a\xf1\xbc\x7f\x0c\x6d\x19\x8c\x7f\x18\xc0\x9d\x81\xee\x9e\xb4\x5e\xb6\x2d\x8a\x9b\xba\xbb\xad\x2d\xe1\x86\x2d\x83\xc1\x40\x38\x14\x15\x57\x6c\xbd\xfd\x1f\xe7\xc5\x07\xb7\xe0\xc2\x40\xe9\xc1\x40\x77\xd4\xa6\xb7\x24\xdd\xb3\x43\x14\xda\xc3\x81\xe0\xe0\x96\x86\x70\x8b\x55\x6f\xd5\xff\x89\x6d\xfa\x8f\x18\x8b\x5a\x99\x55\xc6\x73\xea\x8b\x63\x9c\x09\x27\x5d\x21\xc8\x99\x70\x0a\xce\x84\x93\xc8\x2a\x95\x58\xad\x44\xe9\x46\x29\xa3\x12\xcc\x55\x33\x99\x71\x1c\x2f\xe9\x27\x35\x31\x3c\x26\x80\x68\x04\xb1\x58\xca\xe0\xb8\x84\xe3\x54\xc7\xa8\x83\x14\x7e\x4c\xfd\x5a\x54\x26\xce\x4f\x0b\xa9\x38\x87\xcf\xe2\x73\xcf\xe1\xca\x6b\x4a\xd7\x20\x87\x93\x93\xb8\x59\x55\x6b\x75\xd4\x56\x68\xa3\xf1\x5a\x7a\x6e\x2a\x9b\x90\x79\xd6\x48\x66\x4a\x12\x65\x2c\xe1\x9e\x63\xd6\x0c\xb5\x69\x50\xc5\x71\xc5\xeb\xef\xf0\x7b\x7d\xce\xb1\xd2\xf8\x8c\x19\x27\x1a\x96\x24\x8d\x8f\xcf\x6f\xf4\x11\x6a\xf4\x35\xce\x77\xfa\x4b\x45\x3a\x5b\xa9\xd5\x5a\x98\x00\x60\xab\x59\xc7\xc5\x49\xe7\x44\x05\x98\x0f\x40\x67\x1a\x08\x87\xb1\x1a\xcc\x8e\x98\x99\x84\xa9\xf1\x72\x39\x80\x90\xe1\xd2\x5c\xc4\x4c\x39\xde\x22\x64\xd5\xb1\x31\xa7\x0f\x35\xd1\xe7\x24\x07\xe2\x58\xc6\xed\x77\xbb\xfd\x9f\x57\x24\x65\x1a\x24\x72\x75\x6a\x8c\xde\xa3\x77\x49\x2b\xc6\xc6\xc4\xeb\xc9\x23\x6e\xed\xcc\x05\x2a\x4a\xf4\x3a\x94\x7d\x83\x6f\xe3\xdb\x95\x1c\x0e\x6a\xce\xe8\xe1\xb8\xc4\x8e\xc2\x0b\xaf\xb9\xe6\x33\xf9\x33\x0e\xe4\xf3\xf9\x3c\xbe\x7d\xcd\x81\x7c\xfe\xc0\x19\xf9\xcf\x94\x7e\x93\xcf\x83\xa5\x66\x8d\x8a\x76\x3d\x93\xdf\xcd\x26\xa8\x9a\xc5\xd4\xce\x34\xb7\xa3\x61\xff\x71\x7a\x44\x57\xad\x2d\x98\x38\x91\x74\x78\x1d\x4e\xc2\x44\x7d\x9d\x3e\xf2\x35\x5a\x9a\x40\xb5\x26\xcc\x5d\xf2\x7a\xeb\x1d\x8e\xdb\x1b\xed\x8a\xbd\xd1\xeb\xf4\xb5\xba\xbc\xfa\xe1\xc4\x04\x82\x31\x4b\x3c\xe1\x34\xf2\x8c\x6a\xe3\x24\x02\xa4\x3d\x73\xcd\x16\x70\x7f\xb5\x8d\x33\x22\x29\x36\xce\x6e\x9c\x1e\x5a\xa1\xd5\x4e\x41\x17\xe6\x6e\x1f\x6d\x0f\xa1\xb5\xbf\x50\xbf\x7d\x3b\x08\x74\x15\xb6\xbf\x5a\xb7\x35\xcd\x31\x1d\x31\x21\x11\xc4\xa8\x11\xa2\x83\xb1\xe4\x52\x4c\xc5\x43\x44\x13\xe3\xd2\x42\x1a\x77\xad\x65\x83\x5e\xda\xa2\x70\x77\x88\x7c\x95\xfe\xdc\xb6\xb1\x79\xc7\x17\xeb\xc2\xb6\x55\xb8\xa7\xbe\xfe\x90\xdd\x5f\x3f\x0d\xf5\xf5\xb7\xda\x03\xf5\xc9\x60\xcf\x35\x1f\x1e\xe8\x0b\xe2\x6b\x0d\x0d\x0e\x96\x7d\x80\xe6\x87\x37\x78\x43\x21\x6f\x03\x3d\xfc\x73\xdb\x46\x3c\x74\xe1\xa2\x6d\x77\xda\x03\xf5\xb7\xd6\xd7\x23\xd8\xfd\xf5\x87\xea\xeb\x93\xc1\xee\x03\x1f\x5e\xd3\x17\xd4\x7f\xc1\x08\xa7\x4d\x40\x73\x3e\x48\x0f\x60\x29\x96\x5b\xc8\xa5\x91\x49\xe3\xcc\x66\x12\x05\x31\xee\xe5\xf8\x5e\x3c\xd2\x6e\x34\x6a\xe5\x3f\x1e\x9a\x86\x43\x0f\x23\xea\x4d\x2b\x4d\xd3\xef\xc3\x95\xdb\x29\xda\x86\xc5\x5b\xdd\x87\x10\x0e\x7d\xad\x34\xad\x37\x01\x91\x7e\x07\x8c\x9b\x46\x7e\xa8\xae\x9f\xce\x19\x5f\x52\xeb\xc5\x75\xa7\x51\x93\x58\x89\x95\xf2\x64\x88\xa6\xc1\xe9\xc7\x1b\x51\xa5\x8b\x45\x65\xaa\xe4\x08\xda\x8c\x1c\x0e\x37\x9d\xdd\x9e\x83\xf4\xdd\xba\x72\x93\xd0\x1d\xfc\x74\x6a\x74\x76\xa2\x82\xe6\x8f\x45\x5a\x2d\x6c\x6f\x9b\x68\x41\x02\xdd\x51\x7d\x26\xbd\x76\xb6\xb2\x34\x15\xf3\xfb\x3a\x4d\x52\x34\x10\xea\x0e\x01\xcc\xe2\x6b\x69\x74\x4a\x94\xa9\x95\x32\x33\xe7\xde\xf4\xf8\x2d\x48\x23\xcb\x3b\x13\x86\xdf\x50\xc2\x71\x55\x12\x45\x51\xc2\x71\xad\x34\x21\x8a\x6a\x3e\xff\x77\x8c\x37\xac\x5d\x6b\xc8\x4a\xb9\xa4\x1d\x23\x94\xe9\x6a\xa5\xdf\xa1\x8f\x1e\xad\x28\xfd\xce\x90\x23\x45\x9c\xa2\x56\x09\xad\x2f\x92\x16\xa2\x4e\x61\x17\x5e\x1e\x10\x4b\x5f\xf8\xe1\xad\xb8\xef\xfb\x78\xa4\x74\x38\x20\xfd\xf0\xd0\xae\xd2\xbd\xdf\x9f\xc1\xaf\x2d\x00\x51\x33\x61\xd5\xf0\xf1\x35\xa5\x6b\x52\x28\xd3\x00\x16\x33\xd8\x41\xa2\x73\x9a\x01\xe0\xf5\x4c\x0e\xc6\x9c\x1e\x64\xe2\x41\x5b\x08\x99\x18\xdf\x61\xe3\xfe\x6a\x40\x0b\x0e\x0f\xff\x4f\x9b\xad\xc9\xeb\x0b\x77\x0a\x3d\xbd\x3d\x42\x67\xd8\xe7\x6d\xb2\xd9\xba\x6d\x2d\x3d\x4b\x6e\x77\xfb\xdd\x99\xba\xa6\xa6\xba\x2c\xd9\x05\x7b\x43\xaf\x0d\x5c\x80\x29\xab\xc5\xde\xdc\xe8\x68\xa8\xb7\x5a\xeb\x1b\x1c\x8d\xcd\x76\x8b\x75\xc0\xb4\x64\x7d\x98\x98\xdb\xe1\xe6\x3a\x95\x3c\xaa\xd6\x35\x87\xb9\x60\xc8\x4b\x61\xa3\xb7\xff\x28\xd4\x43\x0b\x80\xdb\x0b\xc4\x0e\x33\xa7\xd2\x82\x95\x86\x40\x0e\x35\x62\x60\x4d\x60\xf5\xa6\x8f\x23\x3d\x12\xfe\x7c\xef\x6f\x7a\xba\x6f\xc4\xa3\x8d\xa5\x13\xeb\x02\xab\x2f\x42\x39\xe0\xe9\x3e\xef\xde\xb7\xeb\x0d\x19\x30\x73\x9d\x15\xba\xbe\x92\xee\x57\x8e\xb0\x34\xab\x2a\xc2\x46\x38\xe3\x5c\x95\x54\x1c\x2f\xe5\x25\x91\xe0\x87\x48\x4e\x88\x5d\xaf\x64\x32\x63\x64\x5f\xa0\x87\x80\xb0\x0b\x62\x94\xf7\x75\x57\x56\x3b\x92\xb0\x46\xb2\x51\xe9\x62\x2c\x12\xe8\x61\x88\xd8\x4b\x73\x54\xfa\xa1\xa2\xb2\x3e\x97\xe2\x0f\x74\x05\xfc\x8a\xcb\xe7\x6f\x8b\xb5\xf9\x74\x57\x09\x8b\xd9\x8c\xe8\xf2\x2d\x6b\x6e\x73\xb7\xb5\xb9\xdb\x9a\x97\xf9\x5c\xdd\xcd\x01\x4f\x20\xe0\x69\x6b\xea\x1e\xcf\x64\xc6\x45\x5d\x67\x96\x68\xac\x21\xe1\x71\xf3\xaa\xb9\x04\x73\x0f\x91\x40\x6e\x31\x98\x0a\x73\x4c\x0c\x8b\x64\x4c\x28\x57\x25\xbb\x50\x77\x38\xd5\x3d\x38\x3c\x0d\x7b\x30\xbc\x67\x81\x2d\xaf\x8f\x02\xcd\x40\x6d\xb4\xab\xf6\xa6\x30\x25\xad\xc1\xee\x25\x17\xa2\xaa\xaa\x23\xa8\xd3\x49\x9c\xfa\x37\x39\xe8\xa1\x6b\x24\xd2\xb4\x64\x46\x18\xd4\x83\x2d\x2b\xa1\xab\x56\x8f\xa1\x5b\x75\x54\x22\x5b\x53\x71\x6f\x59\xbb\x7d\xfc\xe9\xeb\x17\xf4\x7b\x85\xbe\x1d\x77\xef\xa0\xd1\xaa\xa8\xf2\xed\xac\x18\x1f\x8a\x8b\x6c\x3b\x3f\x3c\x3a\x7c\xaf\x1e\x74\x5f\xb8\xee\x9c\x85\x17\xb6\x45\xb9\x33\x7b\x87\x76\xec\x18\xea\x3b\x83\xc6\xa7\x9e\x73\x0e\xbf\xc8\x19\xf5\xf5\xf3\xf1\x38\xaf\x47\xaf\xca\xc3\xc3\x0d\x3e\x3d\xce\x1e\x21\x07\x2c\x6a\x38\x45\xbd\xa2\x09\x7d\x28\x9c\x46\x9c\x9d\x4d\x37\x67\xf4\x78\x3b\xda\x32\x27\x75\x2f\xe3\xd6\xf0\xca\xed\xab\x12\x43\xf1\x50\x77\x38\xdc\xe4\x6a\x0c\x75\x87\x13\x43\x71\xd4\xfe\xdc\xbf\x6a\x55\x3f\xd6\xf3\x89\x04\x3f\x49\x20\xf1\xda\x6b\x04\x2e\x93\xde\x70\xd8\x5b\xfa\x88\x5c\x25\xf5\xdd\x0a\x0a\x6e\xc5\x02\x74\x01\xb8\x83\x66\xb6\xbc\x92\xa0\x90\xa0\x4b\x08\x26\xe9\x22\x91\xba\x62\xc7\xf1\x84\x9e\x58\xcf\x27\xde\xf6\xb0\x73\x5e\x87\x12\x91\x4c\x7d\x96\x45\xa1\x80\xb2\x43\x0c\x2b\x11\x1e\xfb\x4c\x49\x7f\x08\x39\x5b\x23\x1b\xf6\x86\x04\x5b\x6f\x2f\x23\x46\x7a\x38\x47\x67\x0b\xb7\xac\x7d\x1e\xd3\xdb\x57\xd7\xdd\xde\xe3\x75\xb5\xd7\xe4\x74\xd4\xea\x7a\x86\x4f\xaa\xbc\x62\x8a\x39\xe2\x8c\x60\x4e\xa3\x91\x20\x9a\x84\x5a\x49\x43\x56\xd3\xc6\xcb\xff\xa8\x96\x34\xc2\x7b\x9c\x73\xce\xc3\xcc\xcc\xef\x4a\xc3\x22\x58\x0a\x2b\x88\xc6\xc4\xcb\x2c\xa1\x16\x96\x97\xe9\x0a\x2a\x09\x96\x27\x16\x94\xb5\x3c\xbd\x62\xc8\x06\x9a\x03\x64\x6c\xe5\x63\xb7\xf1\x9d\x25\x6d\xc9\x4b\x48\x17\x2b\x2a\x4d\xe8\x07\xaa\x24\x89\x1a\xdd\x8a\xa2\x24\x69\xa2\x24\x15\xe8\x5c\x4a\x91\x26\x83\x69\x92\x48\x53\x86\x33\x34\x85\x95\xce\xae\xe8\x79\x5f\xfa\x2c\xcc\xb4\x6e\x88\x19\xbf\x2b\xf5\xaf\xec\xcb\x6a\x18\x86\x33\x61\x13\x81\x9b\x3e\x79\x54\x9e\x5d\xa2\x49\xf9\x32\x9d\x13\xa0\xe7\xe5\xc9\x25\xa1\xe6\xb8\x76\x4b\xcc\xf1\x0c\x2a\x74\x6a\x89\x68\xd8\xd2\x38\xd9\xd1\x4f\x51\x6f\xbd\x71\x4b\x34\xae\x13\x7d\x7c\x5c\x9f\x4d\xa2\x20\xa1\x3b\x63\x0e\x29\x43\xfb\x3c\x5e\xce\x71\xcb\x18\x77\xd5\x72\xe7\xc7\xcb\x7e\x24\xca\x28\x4d\x40\xd7\xb7\x71\x01\xc8\x11\x36\x52\x8d\x1e\x70\x20\x2f\xa7\x4d\x50\x02\x7c\x51\xdc\x20\xd2\x08\x82\x55\x13\x1b\x26\x54\x15\xc7\xc9\xb9\x2d\x6e\x73\x91\xf3\xbf\x11\x17\xa2\x86\x0f\x5e\x28\xcf\xc6\x11\x5c\x90\x23\x14\x0e\x69\x63\x32\x8e\x33\xac\xeb\xb2\xce\x50\x9e\x86\x93\x59\x5e\x76\x12\x38\xe5\x24\x4d\x87\x92\x24\x95\xf2\xa8\x15\x45\x8d\x74\x4b\xd4\xe8\x90\xab\x04\x03\xe8\x0a\x94\xc6\xcc\x9b\x66\x00\x4a\xd5\x3d\x6b\xaa\x01\x0e\x49\x2a\xe9\xcb\xc5\x4d\xe8\xb3\x71\xd0\x34\xa3\x1f\x73\xf7\x81\xb6\x5f\x9f\x34\xac\xfa\xb8\x49\xfb\xdc\xe4\xb4\x06\x97\x13\xfa\xa4\x22\x6d\xb3\xdb\xe8\x33\x19\x33\x29\x9f\xcf\x8b\xf9\xbc\x4a\xa7\x11\x55\xa9\x28\x69\x7a\x83\x34\x29\xa7\xb7\x50\x23\xb7\xc5\x3c\x69\x1b\xd2\x7b\x06\x1e\x90\x26\x1a\x2d\x95\xa4\xbf\x0d\xe6\x65\x5c\xe5\xca\xb8\x96\x60\x79\xa7\x71\x8d\xb4\x0d\x9d\x09\x67\xcd\xcc\x68\x65\x96\xb4\x7c\xce\x94\x71\xb3\x9c\x62\x49\xc0\x5c\xd2\xca\xa7\x62\xf9\x53\xc5\xc9\x3c\x21\x39\x4a\x60\x92\x84\x40\x10\x93\x70\x12\x1d\xf5\x4a\xfa\x7d\x7d\x18\x8c\x67\x80\xf9\x94\xfe\x50\x8f\x0b\xc1\x07\xce\x19\x71\x12\xde\x14\x35\xe0\x4b\xf0\xa3\x20\x69\xe2\x38\xe1\x05\x84\x4b\xe9\x0d\x21\xe2\x96\x94\xac\xa7\xd8\x97\xb4\x22\x5d\xe0\x50\xc7\xf7\xbf\x09\x66\xee\x1a\xfa\x4c\x1b\x70\x70\x27\x9c\x7c\x2d\xcd\x96\xbf\x39\x63\x7c\xcb\x70\xe3\x0d\xb8\x4e\x55\xd2\x52\x45\x3a\xc4\x06\x21\x93\xef\x32\x7f\x22\x60\x55\x29\xd4\x0c\xc8\x18\x70\xca\x50\xcc\xd5\xb3\x0c\xf3\x06\xf3\x1a\xd7\xf1\x9d\x76\xa6\xae\xa6\x2f\xf6\xca\xda\x89\xed\xfa\x4a\x87\x09\x3a\x0b\xec\xe4\xa3\x35\xfc\x86\x37\x78\x8e\x81\x87\x44\x2b\x2e\xb3\x53\x42\x3e\x04\x0f\x49\x5b\x34\xa9\x94\xcf\x57\x59\xc6\xdf\x8e\x6b\x51\x03\x1e\x66\x03\x06\x04\x26\x18\x61\x23\xd6\x59\x30\x63\x66\xc1\xaf\x0c\x37\x03\xd7\x44\xca\xd1\x45\xbd\x9d\x9a\xd1\xcc\xe2\x2c\x2e\x38\xa5\xf3\x3f\xa8\xa0\x11\x52\x48\xaa\x65\xd8\xa9\x65\xb2\xd7\xd9\x1e\x3d\xfb\x5b\xf1\x20\x5a\xc3\xe3\x39\x83\x76\xd8\x32\x4c\x0d\xba\xc1\x1a\x3a\x11\x0c\x38\x33\xb3\x69\xa7\x4a\x3d\x04\xde\xa5\xa2\x41\xd7\x3a\x22\x54\xfa\xa2\x37\xb6\xcc\xb1\x48\xdf\xd5\x19\x3d\x2c\x77\xc3\x78\x70\x6e\x99\xee\x26\x1a\x29\x95\x47\x46\x16\x6a\x82\xe5\x15\x5a\xd6\xc4\x84\x4a\xe1\xa9\x95\x8a\x13\x13\x58\x20\xdc\x92\x16\xa7\xcd\xcc\xf9\x9c\x55\x16\x5b\x93\xe5\x45\x36\xc5\x28\xa3\x66\xc3\xc2\x0c\x61\xf3\xe9\x65\x39\x8d\x7c\xda\xf2\x8a\xa4\x35\x65\x95\x33\xc6\x0a\x65\x16\xa1\xd1\x51\xfc\x2b\x7d\x9c\xab\x5d\x1a\x02\x29\x8c\x94\x35\x57\xc3\x8c\x79\x39\x0d\xaf\xa5\xf3\xd1\x34\x96\x34\xaa\xc7\x41\xb1\x32\x9b\xd0\x7d\xed\x5e\xaa\x91\x3b\x89\x09\x89\xe1\x66\x97\xab\x79\x58\x21\x1a\xee\x40\x6f\x4f\xc7\x97\x6e\xe9\xec\x7f\xce\xed\x77\x2b\x05\xc5\xed\x77\x9f\xc7\x26\x3b\xfa\x50\x8a\xaf\xa9\xae\xf9\x97\xa7\x71\x37\x4e\xda\x42\x9e\x11\xd2\x7c\x1f\x72\x74\x72\x26\x2d\x68\x28\x5d\xd7\xd1\xe3\x48\x2c\x5e\x68\xc3\x64\xe0\x9a\x88\x92\xbc\x1f\x73\xca\x86\xee\xce\xc5\x16\x6b\xe9\xb5\xc0\x35\x67\x5c\x7b\x3f\x94\x7f\x3a\xd8\x90\xcb\xcd\xfa\xaa\x23\x54\x32\x97\x0d\x84\x54\x3a\x9a\x10\xf4\xc4\x20\x9e\x66\x02\x2d\x45\x41\x17\xd4\x39\xc9\xdf\xe1\x63\xeb\x4b\xef\xfe\xfc\xa2\x3b\xeb\xeb\xf7\xd5\x37\x35\xd6\xef\xaf\xaf\xbf\x2c\x11\x52\x55\x6c\xe8\x6b\x23\x16\x6e\x63\xac\xb1\x67\xd7\x86\x7a\xbf\x7d\x5f\x7d\xfd\x3e\xbb\xbf\xfe\xb2\x44\xb0\x9c\x8f\xbd\x04\x1f\xc7\x97\xf4\xa8\x1f\x7d\xbd\x42\x6a\x8d\x08\x56\x0f\x23\xa4\x83\xa6\x3d\x38\x10\x58\x10\xed\x93\x87\xdb\x56\xa3\x64\xfe\xfe\xc2\x66\x69\x35\x1e\x2e\xbd\x1a\x18\x08\x0f\xcb\x1d\xa9\xd5\x5f\x73\x34\xbd\x30\xdc\x92\xba\xb6\xaa\x57\xd0\xf5\x05\x69\x9c\x89\x3b\xd1\x87\x09\x37\x5d\xb1\x8e\x89\xb0\x91\x9f\xef\x4a\xb0\xe2\xbe\xf9\xdc\x2d\xad\xf3\xf7\xd1\x66\xc3\xad\x0b\x4a\x45\x45\x51\x54\x62\x6f\xcd\x1e\x6b\x17\x78\xf5\xf5\x6c\x85\x32\x5f\x23\x18\x94\xa6\xc4\x38\x55\x2c\x16\xab\x58\xa8\x66\x8a\x53\x94\xfa\x35\x8a\x40\x05\x75\x5c\xcf\xb1\xfa\x57\x94\x49\x38\x55\x94\x63\x08\xa2\x57\xcb\xcc\x17\x4b\x9a\xaa\xa2\x56\x2e\x94\x90\x60\x41\x55\xb3\xa4\xd0\xf2\xda\x9c\x79\x9a\x27\x4e\x68\x8d\xb2\xaf\x34\x5f\xcc\x2f\x5e\xd3\x47\x36\xcc\x2b\x79\x45\xc9\xd3\xf1\x0c\xc3\x30\x16\xf1\x39\xa3\x7e\x56\x8f\xd4\xa1\x39\x93\x11\x36\xc2\xb3\x34\xa7\x87\x4f\x73\xc5\x4a\xc2\x24\x4c\x83\x2a\xaf\x1b\x96\xe5\xe1\x75\x53\xa2\xa8\x89\x22\x8a\xe2\xc4\xba\x75\x13\xeb\xd6\xd1\xfe\xc8\xb0\x15\x0b\x78\xc4\x28\xcf\xc8\xd5\xaa\xa5\xd4\xce\x59\x39\xcc\xe5\xdc\x67\x9a\xc5\x6e\x6c\x87\xa8\x8b\xb1\xf6\x1f\x73\xa4\x2a\x4d\x14\x65\x7a\x8e\x6e\x57\x9b\xcb\xd5\x76\x19\xdd\x57\x6c\xe1\x42\xc5\x16\x66\x21\x40\xac\xa5\xda\xbe\x30\x95\xd5\x50\x05\x99\xaf\x4a\x1e\xaa\x25\xd5\xd6\x5d\x1c\x55\x04\x41\x89\x39\x89\x71\xac\x88\x2c\x5b\xe9\x64\xc6\xeb\xe9\xf6\x7a\xba\x15\xc5\x9b\x29\x78\x33\xde\x7a\x6f\xbd\x1e\xff\xa9\xfb\xa8\x43\x35\xf6\x32\xb5\xc9\x64\xfe\xb4\x95\x2e\x34\x25\xdf\x68\x97\xec\x8d\x45\xb6\xb2\x98\x2e\xd8\x1b\x31\x9f\x2f\x10\x23\x6c\x4a\x65\xc9\x25\xb5\xba\x4e\x67\x16\x72\x98\xc3\xac\x91\xbb\x4c\xe3\xf1\x19\x5e\xff\x42\x49\x54\x34\x71\x4a\x52\x34\x29\x97\xd1\xb4\x0c\xd9\x0c\x3f\x6c\xd6\x88\x67\x71\xe8\x9a\x02\xd5\x48\x22\x2c\xef\xe4\x9d\xbc\x52\x50\x14\x05\xd9\x51\x25\x8b\xa0\x28\xb9\x5c\x5e\x99\xd6\x7f\x02\xc4\x4c\xdf\xd3\xe1\x47\xb0\xb0\x1c\xaf\x45\xd5\x48\x37\x8d\xd9\xd2\x4a\x79\x14\x47\x33\xa3\xa3\x19\xa2\xed\x29\x8a\x32\x0d\x8a\x52\xcd\xe5\xd5\xd7\xe9\x65\x01\xa2\x8c\x1c\x91\x23\xb2\x50\x0e\xd7\xd4\x95\x22\x2c\xd0\x35\x91\xf3\xc4\xc2\xcd\xd3\x1f\x4f\x50\x15\x51\xc9\x10\xf3\x78\x6a\x6a\x8a\xd2\xb8\xee\x97\xa3\x65\xa4\x09\xbe\x08\x4b\x71\x66\x19\x79\x82\x7b\x99\x8c\xa8\x97\x21\x4a\x52\x4e\x54\x54\xb5\xa6\x8c\x72\xae\x37\xcd\x6f\x23\x65\xa4\x6a\xad\xe3\x04\xeb\xa1\x7e\xd7\x9f\x8d\x0e\xcb\xdd\x83\xdd\x72\x56\x52\x87\xe5\x7c\x3e\x24\x49\xa1\x7c\x5e\xd6\xe9\x46\x2d\xd3\x0d\xb2\x3c\xc7\x24\xd8\x08\xc1\x16\xd4\x72\xa3\xa3\xb9\x69\xb8\xe3\x0e\xcc\x2b\xd9\xac\x22\x69\x46\x6c\xcf\x4c\xda\x0d\xcc\x5c\x27\xeb\x34\xe7\xbf\x91\xad\x06\xd5\x20\xea\x5c\x26\x33\x31\x31\x36\x56\x0e\x9a\x3f\x6d\xbd\xa5\x4f\xcf\x65\x16\x6a\xa7\x14\x6a\x73\x99\xcb\x2b\x37\xcc\xc8\x65\xae\x2c\xdc\x50\x03\x67\x7d\x6d\x17\xba\x5e\x67\xc5\xe3\x99\x4c\x21\xbb\x7f\x7f\x2e\xaf\x19\xfe\x4e\x1f\x2a\xfb\xc2\x9a\xb1\x9a\x34\x9d\x78\xb0\xce\x8a\xd1\x69\x87\x28\x40\x67\x47\x4c\x48\xd8\x62\xc6\xfa\x04\xde\xf2\x3a\x05\xb3\xe3\x76\xa2\xeb\x16\x35\xfd\xaa\xe9\x61\x4a\xce\x9f\xa7\xfb\xef\xd6\x44\xf1\xdc\x31\x2f\x12\xd9\x56\x43\xf1\xff\x34\x23\x9a\xa7\x1c\xe7\x36\x05\x66\xaa\x0d\xd1\xe8\x63\x77\x82\x4d\xcc\x0e\x59\x27\x2a\x0e\xd1\xc9\x31\x57\x9a\x38\x25\xb1\xd5\xe4\x0f\x56\x1a\xf7\x66\xb3\xa7\x4e\xa1\x36\x03\xda\x92\x54\xc8\x66\xff\x23\xe3\x90\xcb\x38\x63\x01\x0f\x40\x9a\x89\x08\x0c\x57\x83\x24\x84\x4d\x3c\xb7\x0e\xc5\xad\xeb\x66\x64\xa9\x4c\x6e\xd5\xb6\xca\xe5\x13\xbf\xf3\xdf\xb3\x5e\x4a\x6d\x2e\xfb\xcc\x15\x40\x8a\xb5\xab\x7e\xe4\x6b\x16\xfb\x80\xbf\x47\x1c\x7f\x96\xae\x03\x93\xa7\xb9\x65\xb0\x14\xe9\x0a\x0c\x42\x84\x8d\x64\x73\x39\x55\xa3\x36\x51\x71\x6c\x4c\xd3\x26\x24\xca\x53\x0b\x98\x47\x45\x5f\x71\x9f\x2e\x8d\x1e\x41\x4d\x2a\x8d\x4b\x08\xf4\xd7\x58\xaa\x6b\x0c\x15\x20\x04\x03\x00\x69\x4f\x22\x2e\x27\x63\x42\x47\x2f\x4a\x84\x56\x78\x8f\xbe\x44\xa3\xb1\xbc\xa3\x9c\x4e\xf2\x1d\x8c\xfe\x7b\x26\x7c\x32\x26\x13\xdd\x81\x2e\xe8\xc8\xbe\x3a\xd8\xdf\xe4\x44\xab\xc5\xf4\x73\xd4\x36\x99\x91\x59\xc1\xfa\x5a\x1c\x9d\x1e\xe1\xa9\x44\x67\x83\xb9\xa5\xa5\x79\xbb\xa5\x2e\xdc\xd1\x2f\x07\x43\x27\x53\x9d\x2d\xcd\x75\x26\x93\x24\xa1\x15\x9d\xae\x25\x6e\x9b\x99\x71\xb4\xc7\x0f\xf4\x78\x6d\x75\x8e\x86\x7a\x2b\x9a\xb1\x89\x8b\xfa\x5b\x03\x6d\xf3\xa0\x66\xad\x50\x3d\x2e\x93\xf2\xa2\xa8\x1e\x01\xaa\x67\x1f\x82\xaa\x2a\x62\x56\xca\x67\x32\xc5\x62\x35\xe7\x32\x4f\xf1\xbb\xde\xd0\xd0\xca\x6f\x98\x69\x16\x9e\x5c\xf3\xe2\x28\xd9\x21\x2b\x8e\xab\x6a\x26\x53\x9a\x20\xfb\xd3\xeb\xa4\x5a\x68\xcd\xab\x19\xfa\x52\x41\xd2\x6a\xeb\x54\x68\xcc\xb6\xb1\xaa\x9b\x81\xf3\xac\x90\x36\x94\x4d\x7d\x69\x7b\xea\xd6\xc8\x12\xa6\x2b\x29\xca\x7c\x4a\x51\xef\x92\x02\x35\x64\xe3\x43\x71\x49\x51\x24\x7f\x87\x9f\xc8\xc8\xd2\x84\xa8\xcf\x05\x6e\x01\x05\xbf\x8d\x05\xf0\x40\xc7\x8c\x5f\x04\xa1\x0e\xc4\xb4\x10\x93\xf5\x35\x00\x2a\x2e\xc4\x2b\x31\x1d\xe8\x73\x47\x94\x48\xb7\xa9\xcf\xb2\x38\xda\x3c\xbc\x69\xed\xb3\xee\xe6\x50\xb3\x4b\x09\xf3\xd8\x67\xc2\x6f\x97\x5e\x0d\xcc\x77\x32\xba\xf7\xd0\xb3\xce\xb7\x68\x6d\xc4\x16\x62\xac\xba\xfb\x90\xf6\x5b\xc7\x17\xfa\x1b\x0d\x44\x72\xc9\x6c\x44\xef\xb4\xee\x73\x23\x36\x69\x79\xbe\x5a\xd7\xfb\x5c\x10\x84\x0e\x88\xc1\x42\x80\x74\x42\xe0\x78\x86\x86\x1a\xa7\x13\x44\xd8\xf1\x44\xf5\xaa\x24\x81\x31\x32\xcf\x3a\xd9\x84\x6c\xa5\xc1\x9f\xba\xff\x44\x36\x2c\xd6\xe3\x03\x6d\xd1\x61\x07\xbf\x36\xb8\xa6\x63\xab\xe1\x6d\x98\xa0\x56\x35\x6a\x92\xa4\x4d\xe8\xbb\x0f\xce\xba\x54\x2c\x14\x4e\x51\x8f\x8e\x44\xee\x4f\x10\xbb\x8a\x3c\xa1\x4e\x94\x1f\x03\x0b\x0c\x83\x84\xcf\x55\x78\x3e\x5d\xdd\x9b\x63\xa2\x69\x8e\x49\x1b\xd6\x12\x01\x21\x8e\xf6\x04\x7b\x4a\x3f\x09\xf6\x04\xaf\x12\x45\x22\xc3\x35\xdc\xdb\x13\xec\xed\x0d\xf6\x84\x34\xa5\x90\xcd\x2a\xa3\xa3\x3a\x8d\xbf\x86\x45\x94\x69\x8c\x97\x9e\x85\x27\xf0\x36\xb2\x19\x99\xc7\x5c\x22\x45\x36\x3c\xe2\x0d\x85\xbc\x9d\x4d\x83\x4d\x6b\x9a\x06\x9b\x3a\x6b\x4f\x50\x0e\x75\x87\xc2\xe1\x70\xd8\xf8\x2a\xe3\x74\x2d\x9c\x09\x38\x22\x6c\x44\x9d\x98\x20\x90\x9e\xa2\x86\x9a\x09\x64\xc8\xe2\x6b\x65\xfd\xa3\xbc\x92\xa6\x60\xe8\x1f\xf8\x9a\xa2\x28\x13\xe8\xcd\x2a\x59\x24\xfa\x87\x92\x35\x14\x90\xea\x7c\x51\x07\x88\x7a\x94\x1d\xf5\x32\x93\xb6\xc6\x04\x99\xa7\x41\x41\xd4\xf6\x21\x7d\xf1\x72\x6c\xa2\xf2\xc3\x1a\xc1\x15\xe7\x0e\x04\x5a\x7b\x4c\xa2\x69\xd1\x82\xf6\xe8\x39\x0b\xb8\x36\xd9\x22\x9a\x57\x2c\xd8\x4f\xc5\xca\x0d\x4d\xa9\x25\x5c\x73\xc0\xe1\xe9\x5a\xe0\x10\x45\x1b\x1f\x18\xf0\x36\x45\x9a\x58\x72\x56\xfe\x95\x0f\xac\xc4\x9e\x33\xba\x65\x44\x5a\x9a\x45\x71\x9f\xb2\x0f\xcb\x0a\x12\x81\xa9\x46\xe5\x43\xd4\x88\xe0\xd5\x69\xa5\x22\x0b\x3c\x8b\x50\x97\x14\x7a\x5c\x2f\xcb\x77\x48\x2b\xfb\x27\x09\xd1\x3c\xe7\x0d\x87\xbd\x47\x1e\xb1\xdb\xbf\x4f\x48\x67\x32\xd4\xdd\x1d\x7a\xed\xb5\xfe\x97\xcb\xce\x79\x89\xf5\x75\xf8\xbb\x07\x25\x89\xd6\xa3\xc7\x0d\xb9\x68\x66\x84\xa1\x3e\x12\xa3\x6a\x10\x13\x71\x2f\x7e\x75\xde\xc2\xa5\xdd\xa5\x29\x79\x78\xf9\x7c\x76\xa4\x67\xe1\xd9\x28\x9a\x97\x88\xdd\x4b\x87\xe5\xfe\xb5\x56\x61\xfe\xda\x99\xf3\x6e\x2e\x1a\xb1\xa6\xb7\x29\xa9\x27\x95\x90\xa6\x55\xe1\xb6\x95\xce\xe0\xc6\xf9\x60\x0f\x63\xf6\xc7\x62\x7e\xb3\xfe\xe3\x24\xa1\xee\x10\x9f\x88\xb6\x61\x2c\x19\xab\xf9\x8d\x92\x6a\xce\xab\x15\x5a\xf5\x08\x70\x81\x89\x9e\xde\xc6\xe2\x5d\xc1\xcb\xbb\x83\xe8\x9a\xd5\xd2\xdc\x5d\xc1\xcb\xba\x83\xeb\x66\x36\xb7\x5a\xa6\x8d\xe6\x13\x51\xe2\xe2\xd2\x73\x74\x3c\xab\x64\x94\xec\xec\xde\x4f\xa9\x6a\x76\x7c\x36\x00\xca\xf3\x48\x79\xea\x25\x95\x00\xdc\x46\xa0\x35\xa6\x8d\x75\x73\x92\xa9\xb4\xb5\x1a\x5b\x26\x61\xcd\xd2\x23\xdf\x8c\x92\xf1\x7a\xa3\xf4\x41\x00\x77\x06\xa4\xbf\xc8\xc3\x6b\x12\xd8\x31\x6f\x61\x4f\x28\x12\xf3\x87\x57\xf6\x87\xb8\xb0\xd0\xb7\xf0\x6c\x94\x12\x43\x71\x6c\x09\x94\x1e\x0c\x88\xc3\x72\x72\x9d\x49\x32\x2f\x11\xd3\xe1\x90\x2b\xe6\x8f\x35\xf4\xaf\x6c\x0a\xf9\xd6\xd6\xc2\x4b\x9f\x11\x36\xb4\x08\x7d\x20\x68\x93\x12\x73\x40\x0f\x73\x64\x20\xfe\x3f\xe6\xfe\x06\xbe\x91\xe3\xbe\x0f\xc6\x67\x00\x02\x4b\x10\x20\xc1\x05\xb0\xbb\x04\x48\xe2\x6d\x89\x5d\x72\x87\x2f\x77\x5c\x2c\xf6\xee\x78\x47\xee\x9d\xee\x4d\xc7\x7b\x93\x4e\x8b\xa3\xce\x72\x4c\x9d\xee\x6c\x8b\x70\xac\x3b\x47\xb2\x64\xd9\xb2\x37\xae\x1d\x45\xb2\xe3\xc6\x91\xc1\x24\x4e\x6d\x9f\x95\xc6\xb1\x09\x3b\xf1\x3f\x8d\xec\xb6\x4e\x6c\xd4\x4d\x93\xda\x8a\x93\xda\x35\xf8\x6f\x9a\x26\x55\xd3\xe6\xed\xf8\x24\xce\xa7\x9f\x38\xcd\xe3\xa6\xb8\xe7\x33\xbf\xd9\x05\x16\x20\x4f\x76\x5b\xd7\xcd\x1d\xb8\x58\x2c\x16\x33\xb3\xb3\xb3\x33\xbf\xd7\xef\x37\x7f\x7c\xff\xf4\x72\x34\x4e\xdb\x82\x27\xfb\x2e\xda\x51\xca\xb4\x92\x7d\x25\xfd\xe4\x62\xff\xc5\xf7\xf7\xa7\xae\x72\xba\xa0\xef\xd5\x9f\x84\x4a\xb1\xd5\xb7\xf4\x77\xe8\xc6\x46\xb5\xbe\xab\x4c\xb6\x6e\xef\x5e\xc7\x58\x08\x83\x46\x57\x6f\x87\xec\xd4\xeb\x00\xb5\xbe\xd7\xf9\x26\x73\x11\xc2\xf9\xb6\x4d\xcf\x27\x55\xa7\x5e\x77\x7c\xfc\x4d\x74\xbd\x93\x7c\x69\x04\x2c\xc5\x9c\xf8\xd3\xa7\x1a\x04\x12\xe5\xbd\xc4\xa9\x80\xcf\xf7\x29\x74\x70\x00\xfd\xbf\x5f\xc2\x12\xb0\xa6\xf8\xe1\xf4\x89\xd3\x6a\x61\xe4\x2b\x88\x78\x7e\x72\xbb\xa3\x33\x15\xf6\xc4\x31\xeb\x2f\xb9\xbe\x54\x5e\x62\x20\x5b\x96\xbf\xfc\xba\x98\x94\xa4\xa4\xd8\xc8\x14\xd3\xe9\xe2\x95\xbe\x8a\xba\x6d\x8e\x32\x6e\xb1\x9e\xdc\xe5\x5d\x35\x00\x1e\x69\xb5\x8b\x6d\xe9\x90\x16\x83\x16\x6e\xb8\x59\xe3\x18\x25\xd2\xc4\x8d\x0f\x61\xf1\x07\xb4\xfd\x29\x88\x05\xf4\xb2\xb0\xfd\xef\x3d\x80\xfa\x2c\xe4\x51\x78\xf8\x79\x72\xf3\xc2\xf2\x1a\x59\x99\xcd\x28\x16\x86\x48\x87\x7a\xbd\x4d\x45\x64\x4c\x9e\x7f\xf8\xe2\x0d\x72\x79\x79\x76\x85\x28\x19\xec\x72\xdd\x11\xac\x59\x16\x9f\x81\xe8\x4f\x56\x27\x9d\x67\x0a\x68\x06\xcd\xf7\x21\xf6\xb3\x0a\x38\xb7\x01\x25\x41\x9e\xc7\xaa\xc1\xf5\xb4\xa7\xe9\xab\x8e\x40\x4b\xb0\xf3\x54\xea\x75\x2b\xd5\x4e\x83\x9a\x3d\xb5\xd6\x69\x8b\x6a\xdb\x2b\xeb\x29\x79\xd3\x6d\x57\xef\xdc\x14\x64\xfe\xef\x82\xc1\xef\x91\x8b\x6f\xe3\xaa\xdd\x46\xb6\x27\xe1\xa6\xb1\xd3\x6a\xdd\x41\xc4\x1b\x57\x2d\x37\xb7\x8f\x71\x10\xd0\x75\x38\xdd\x83\x2f\x49\x30\xb8\x7e\xe4\x5d\x28\x93\x75\x6d\x4b\x63\x38\x0e\x2c\x94\x88\x6a\x4e\x96\x20\x58\x1d\xf2\x2b\x7f\x99\xe3\x3d\xd1\x21\x04\xb2\x11\xa8\x3c\x71\xf7\x52\x41\xe9\xf5\x60\xa1\x88\xa6\x91\x4e\xb9\xe1\x1e\x0c\x4b\x66\x7b\x5c\x70\xb3\x55\x75\x81\x41\x71\xeb\x82\x1c\xe2\x0b\x7c\xa9\x0b\x61\xd9\xab\x6c\x4c\x62\x9d\x8a\x94\x4e\xad\xe6\xc0\x96\x61\x4e\x82\x6f\x20\xc3\xbb\xea\x00\xe1\x33\x1a\x16\x9c\xed\x5a\xcd\xb2\xaa\x1a\x48\xea\x80\x5c\xd9\xd5\x47\x34\x14\x44\x8e\xeb\xa3\x0e\x7a\x0c\x56\xbb\x42\xe2\x75\x10\x24\xed\x2d\x00\x29\x63\x9b\x66\xab\x45\x2f\xad\x5b\x51\x5b\x23\x04\x7d\x9f\x39\x10\xbd\xdc\xc4\x1d\x7a\x47\x13\x5e\x3c\x81\xa1\x7b\x11\x06\x2c\x62\xae\xfc\xd9\x5b\x37\x94\x8c\x65\x5f\x7e\xc7\x65\xdb\xca\x28\x78\xe7\xe6\x85\xcd\x8c\xd2\x20\xcb\x97\x2f\x2f\x93\x86\x92\xd9\xbc\xe0\x61\x24\xb0\x3c\xf2\xc9\xde\xb2\xe4\xbd\xcb\x73\xea\xb6\xbf\xc4\xed\x8c\x42\x84\xfe\x32\x63\x1d\x5c\xeb\xbd\x6d\xfe\x4b\xbb\x3d\xe1\xfe\x7d\x53\xd0\x0d\x55\xd0\x0d\xc9\x7d\x37\xfb\x22\xe3\x70\x5d\xd3\x34\x91\xde\xd1\x2d\xba\xb5\xdc\x4f\x9b\x7e\x86\x1b\x38\xcc\x5e\x55\x42\x36\xd9\x59\xbe\x83\x96\x3f\x42\x0e\x23\x07\x7d\x01\x3b\xf8\x41\xe0\x70\x91\x4c\x89\x53\x3f\x7a\xf5\x6a\xd6\x71\xf0\x83\xf0\xc6\xfa\xa9\x81\xde\x87\xef\xc5\xef\xa3\xe7\x94\x20\xd6\x1a\xdf\x9b\x75\x9c\xec\xd5\x4f\xc1\x96\x9d\xf3\x79\xf4\x5e\x6c\xe3\xf7\xd2\x73\x56\x30\x3d\xe7\xf3\x50\xc0\xcf\xb3\x62\x68\x3d\x9f\xc7\x0e\xb6\x21\xcf\x50\x85\x7a\xe0\xc7\x9f\x67\x45\x74\xb9\x70\x06\x21\x67\x4b\x62\xd5\x34\xdb\xdf\x38\x4b\x4f\x38\x8b\x05\xed\x1c\xdd\x39\xe7\xe3\x5a\x7a\x0e\x7c\x52\xa0\x23\xa8\x70\xba\x83\x91\x43\x6b\xcb\x3a\x84\x7c\x0d\x76\xd0\xb0\x8b\x37\xd3\xec\xe0\x8c\x7b\xb9\x5b\x54\x63\xd0\xd0\x3c\x5a\x46\xa8\xa4\xea\xe6\xff\xce\x4d\x41\xf6\x96\xf5\xdd\xee\x8b\x50\xbd\xed\x59\x71\x98\x2b\xae\xee\xfa\x8e\xbb\x07\x2d\xdf\xec\xc5\x64\x54\xda\x1f\x43\x4c\x6f\x66\x1d\x52\xc0\x75\xd2\xfe\x35\xd6\x13\x38\x8d\x6b\x8e\xd7\x29\x0c\xa7\x88\x71\xb3\xc5\x80\x7f\x4a\x86\x4e\x36\x0b\x46\x01\x37\x34\xed\x57\xe1\xbc\xf6\xd7\xf1\x02\x76\xee\xa0\x3f\x82\x4f\x9a\x0f\xbb\xaf\xf9\xbf\xc4\x61\x89\x3a\x9c\x92\xcb\xcb\xbd\x1c\x96\xdf\xcf\x79\xdc\x8b\xc1\x6f\x76\xf9\xf8\x18\x0a\x6b\x01\x4a\xe4\x0b\x54\x36\xd8\xae\x62\x44\xda\x88\x60\x3a\x0f\x59\x82\x40\x08\xb6\x7a\x7e\x4b\x9f\x46\xb9\x1b\xdd\x1c\x84\x16\xb9\x13\x68\x5f\xab\x18\xa7\xee\x26\xae\xda\x0c\x6c\xad\xdb\xbe\x1a\x60\x23\xe0\xec\xed\xdb\xed\x1d\xda\x40\x17\x56\xe2\x76\x0f\x96\x4c\x93\xad\x37\xdd\x6b\x36\x7a\x8b\x97\xfb\xaf\x9a\xc7\xf5\x56\xab\xbd\x43\x88\xd0\x73\xdd\x7e\x9b\x64\x27\x2a\x40\x16\x4a\xde\xdc\xcf\x32\x01\x58\x36\xc0\x11\xec\x99\xbf\x3d\xc3\x99\x01\x06\xb5\x49\xac\x73\x86\x0b\x8f\x5a\xdb\x86\x84\x9f\x34\x0f\xb6\x4b\x3e\xdd\xfb\xa1\xa1\xd9\x4e\x7d\x7b\xdb\xd9\xe3\x2b\xf6\xc1\xd6\x34\x1b\x26\x04\xcf\xbe\xf1\xe7\x68\x00\xc5\x40\xde\x13\xe4\x72\x25\x68\x14\xc0\x6f\x94\xcc\x62\x41\xde\xd9\xbc\x7c\x19\x57\xaf\xbf\xff\x7a\x73\xe5\xf2\x26\xfe\xf3\x4f\x1d\x5d\x6f\xff\x47\xdb\x3e\x79\xfd\x3a\x7e\x6c\x70\xfd\xa8\xcb\x71\xea\xc5\xe5\x42\x36\x4b\x89\x97\xf9\x3d\x72\xd6\x74\x7c\xe3\x95\x9f\xab\xc2\xc0\xda\x82\xd1\x85\x49\x9b\xde\x5e\xdc\x50\x32\x6d\x38\x82\xab\x19\xc5\x2b\x8f\xad\x59\xcc\x7a\xcb\xcb\x7c\x27\x0f\xbc\xbf\x4c\xbb\x79\x09\x2c\x93\x6f\xa5\x6a\x53\x83\x6e\xa0\x5c\x9b\xb9\x23\x3e\x93\x17\xdb\x9b\x54\xd1\xc3\x1b\x62\xfe\x07\x90\x03\x32\x80\x10\x92\x03\x08\xff\x01\x4a\x20\x01\xe6\x25\x84\xbd\xd2\x55\x9d\xa1\xa8\x43\x05\x18\xa2\x0b\xa1\x16\x53\x0d\x15\xd4\x02\xde\xa1\xb5\x0c\x58\xf3\x36\xa1\xf5\xfc\x71\xfb\x5b\xf7\x61\x52\x1c\x5f\x6c\xff\x18\x19\x52\xf1\x6f\xb5\xff\x94\xe0\xe3\xd8\x86\x2a\xad\xcd\xc7\xc8\x83\x91\x58\xe9\x8f\xf1\xe9\xfb\xda\xdf\x2c\x8e\x2f\x5a\x3b\xf1\x98\x7a\x6c\x2f\xbf\x55\x0e\xcd\x30\xde\xde\x1e\xac\xb6\xbe\xb4\x60\x5d\x30\x39\x4f\xd9\x92\x3a\x3b\xd8\x22\x79\x2d\x4f\xb0\xd0\xb5\x8b\xb7\xc8\x7e\x5e\x28\xe4\x05\x3e\x3b\x3d\xb3\x7f\x66\xff\xbe\x19\x7e\xee\xc8\xf2\x9c\x1b\x6c\x52\xcb\xf0\x2c\x05\x87\xcf\xd8\xf6\x8f\xf1\x82\xc0\x67\x87\xa7\xa6\xf8\xb9\x39\xe4\xe3\xab\x66\x6b\x69\xa6\xdb\xa2\x52\x16\xf7\x4c\xc0\x85\x92\x89\xeb\x2d\xa2\xe1\xa5\x68\xbc\x63\x69\x8d\xb5\xbf\x19\xaf\xd3\x3a\x9e\x0d\x4a\xc3\x4f\xb8\x95\xfc\xf0\xb4\x0f\xa7\x75\x07\xa4\x11\xaa\x9f\x4b\x42\x2a\xcc\xcd\xe3\x23\x58\x12\x96\xb1\x29\x1b\x9c\x80\x51\xf3\xcd\xf7\xdf\xff\xe6\xe6\xd2\xfd\x83\xf5\x3a\xde\xa9\x3a\x0f\xbe\x90\x4a\xbd\xf0\xa0\x53\xff\x52\xf2\xd1\x7b\x7e\xed\xd8\xd3\xb4\x7d\x5c\x5f\xfc\x31\x5b\xeb\x4b\xbd\xcc\x60\xaa\x8f\x2b\x0f\x27\x3d\x81\xcd\x04\x4d\x18\x8c\x4c\x84\x6c\x13\x87\x60\x01\x33\x3b\xbd\xd3\xe0\xd3\x4d\xdb\x26\x9a\xe6\xd8\xf0\x0f\x02\x5e\xac\x4e\x84\x72\xfa\xfb\x83\xfd\x37\xe0\xc3\x6c\x8d\x33\xce\xb1\xfe\xac\xb5\x24\x68\xb6\xf4\x43\x5f\xce\xa7\xfe\x27\x30\xfb\xa7\xd6\x56\x56\xd6\x56\x80\xfb\x80\xcf\x64\xae\x74\xf1\xd9\x18\x0e\xe5\x7b\x57\xe8\xf7\x58\x62\xa0\x37\x5a\x5f\xce\x43\xa8\x63\x23\x1d\xec\x72\xfe\x25\x3d\x66\x30\xd1\x05\x47\xee\x24\xf5\x7a\x4d\xe9\x6f\x89\xd3\x6a\x25\xd2\xb7\x80\xd0\x7a\xf8\xe4\xe2\xe2\x49\xfd\x0d\xc5\x4c\x3a\xc1\xa7\x17\x46\x25\x69\xf4\x9f\x8c\x8a\xe2\x28\xae\xb7\xa9\xba\x89\xed\xcf\xcd\xe6\xf3\xb3\xb9\xfc\xe2\x49\x5d\x3f\xf9\x97\xe9\xa9\xb1\xb1\xa9\xe3\xd2\x68\xfb\x6b\x70\x8e\x3e\x2a\xf5\x70\x79\xb8\xfd\xda\xc9\xb9\xea\xe5\x45\x60\xf9\x61\x6e\x9c\xb7\x2f\xb1\xca\x53\x68\xe9\xf8\x42\x80\xcd\xd3\x99\xdb\x0a\xfe\xb9\xad\x5b\xda\xcf\xb5\xbf\xfa\x9b\xd5\x06\x9d\xc5\xee\x20\xba\xad\x61\xbb\xdd\xa0\xb3\x5b\x4b\xc9\xb4\x61\xd2\xc3\x0e\x9d\xdd\x98\x5e\xeb\x95\x19\xf5\x34\x8f\xbe\xf9\xcd\xdf\xca\xe6\x0b\x30\xc1\x7d\x8e\xce\x6d\xed\x16\xdd\x42\xd9\x2c\x25\x04\xff\xbb\x9c\xd8\xde\xa0\x07\xf1\xa6\x98\x73\x73\x12\x76\xf0\x0e\x0a\xb9\x0c\x15\x08\x33\x26\x1f\xb0\x30\x0a\x60\x75\x74\xc3\xa9\xd1\x89\xf5\x93\x3b\xfb\x4e\x9c\xd8\x47\xff\x4e\xac\x9f\xc4\xc8\xdd\xd9\xf1\xbe\xe8\xc5\xf5\x97\x7a\xfa\xb1\x97\x45\xa3\xd9\x9f\xb2\x56\xdf\x3b\x4b\x2d\x80\x6c\x84\x70\x03\x72\x26\x92\x08\x25\x18\xbf\x50\x11\x22\x07\x55\xa5\xbc\x82\x75\x89\x25\x38\xbe\x72\x54\xd8\x12\x8e\xd2\x0d\x36\x20\x09\x72\xfe\x1f\x97\x9f\x7e\x7a\xf1\x93\x8b\x4f\x3f\xdd\x8b\x9b\x3b\xe6\xf2\xdc\xa9\x1c\x38\xd3\x0d\x37\xfa\x17\x82\x63\x71\xcd\x06\x9e\xbe\x6a\x72\x4c\x29\x2b\x63\xc9\x46\xed\xe8\x95\x2b\x47\x6b\xf6\x71\x2e\x0f\x39\xbe\x42\x9e\x3b\xce\x74\x9a\x26\x6e\xba\xf6\xd3\x28\x93\x4a\x5c\xf7\x86\xa1\x43\xac\x36\xb6\x6b\x77\x50\xed\x0e\xda\xd8\xc0\xf5\x76\xad\xe9\x45\xb4\x21\xd0\xb7\xbb\xe3\x6c\x1c\xcd\x78\xac\x3c\xfd\x6b\x8a\x37\xfc\x4d\x01\xe2\xb3\x65\xf0\x75\x18\xaa\x8f\x3f\xaf\x20\xe0\xa6\xbd\x31\x38\x32\x32\xe8\x0c\x0e\x0f\x0f\x3e\x09\x37\xfd\x8c\x28\xda\x82\xe0\xd2\xe9\x61\xc7\x69\x34\x5a\xc3\x83\x2d\x7a\x52\x6b\x70\xf8\xab\x30\x02\xae\x2a\xa9\xf1\x89\x94\xa2\x24\x27\x27\x92\x8a\x73\x07\x11\xcf\xb2\x31\xe0\xc3\xbb\xa4\x12\x21\x5d\x1f\xfa\x10\x36\x55\x9f\xad\xa3\xd4\x2f\x0a\xff\xd4\x44\x22\x31\x91\x38\x06\xed\x60\xd9\xf5\xee\x5a\xe0\xf2\x53\x80\x8f\xff\x7e\xd8\xa6\x19\x2b\x44\xdd\xd3\x1f\x5d\x59\xef\x07\xcb\x0b\xbc\x0b\xd3\x0c\xb9\xa9\x55\xbb\x3c\x9e\xc0\x08\x5c\x5e\xf7\x63\x15\x64\x60\x1e\xdc\xe9\x83\x2a\xe8\x60\x7c\xb6\xdc\x55\xcb\x5c\xc0\x71\x9c\xc3\x7b\x61\x7e\x4f\xaf\xad\x4d\xd3\xbf\xba\x87\xf5\x4d\xdf\xff\x62\x9a\x1d\xc6\x56\x3f\xba\xf7\xff\x0c\x96\x95\xe3\xfa\xcf\xe3\x6e\x2c\x43\x17\xab\x54\xc2\xa8\x6e\xe3\x81\x4a\x69\xfa\xc0\x81\x69\x3e\x8e\x9b\xd6\xce\xd4\xfe\x03\x17\x0f\x84\x11\x42\x23\x7d\xfd\xd1\x8b\x79\x7f\x19\xbd\x0e\xbd\x01\x3d\x86\x90\x17\xf7\x21\x2d\x0a\x29\xb9\x68\x94\xfb\x7b\x2b\xe4\x1e\xf7\xbe\x57\x8b\x46\x59\x5f\x14\x52\x5e\x7c\xbd\xf7\x99\xeb\x3f\xcf\x7d\xef\xc7\xd4\xc7\x45\x2a\x77\x0f\x8b\x43\x43\xd1\xd7\xfb\xef\x80\x35\x34\x14\x8d\x0e\x0d\x45\x8d\x68\x74\x28\x09\xa7\xd0\x23\xab\xd1\xe8\xd0\x99\x68\x74\xa8\x12\x8d\x0e\x1d\x4d\x0c\x0f\xc3\x17\xc3\x89\xd8\x0e\xec\x2d\xd3\x1f\xac\xfa\x6f\x9a\x4c\x0b\xb1\xe9\x61\x87\x6e\xf2\x70\xf6\x6c\xe7\xb3\x45\x37\x75\x7a\xce\x19\x28\xe0\x2a\x7c\x4f\xfb\xca\x9b\x4f\x58\x5f\x4d\xa2\x12\x9a\x41\xfb\xd1\x41\x74\x14\xdd\x8b\xce\x21\x1b\xbd\x16\x5d\x07\x8f\x3a\x5c\x87\xd2\xf7\x2e\x15\xcb\xfa\x62\xca\xeb\x89\x52\x41\x28\x84\xbc\x5e\xba\xcb\x2f\xa8\x88\x1d\xd8\x83\x41\x80\xbe\xe3\xac\x77\x95\x9d\xad\x05\x5d\x13\x1d\x6a\xbf\xcc\x02\x57\xa3\xd1\xa1\x4f\x83\x66\xf3\x5a\x5f\x2c\xce\x2a\x76\x98\xba\x13\xf3\x7d\x55\x87\x02\xee\x8d\xb9\xdb\xe1\xe1\xc4\x65\x51\xac\xd2\xb2\x9e\x20\xdf\x86\x42\x59\x4f\xc2\x73\x7c\x0f\x14\xd4\xfe\x5b\x42\x30\x82\x73\x1f\x86\xdf\xbd\x09\x0e\x23\xc0\x52\x32\x90\x81\x5f\xc6\x2f\x43\x9c\x41\x12\xa5\x51\x01\x46\xd5\x03\xe8\x0a\xba\x8a\x36\xd0\x5b\xd0\xd3\xc8\x41\x3f\x86\xde\x8f\x7e\x06\xdd\xa2\x1a\x9a\x90\x2a\x1a\x62\x67\x84\xa5\xe4\x62\x59\xe9\x39\x36\x05\x9f\xbc\xb1\x04\x99\xb3\x3e\xfc\x3d\xb5\x83\xb7\xd6\x3d\x9a\xc3\x50\x4c\xe2\x2e\x9d\xd7\x0d\x77\x30\xca\x8b\x82\x0a\x37\x46\x87\x2d\x37\x8f\x55\xc3\x85\xbf\xf4\x88\x1c\x0c\x51\x3c\x06\x9d\xb5\x11\x8d\x0e\x6d\x7a\x1f\xf0\x19\x51\xfc\x73\xe8\xfa\xf7\x8d\xe3\xd7\x4c\x5c\xc4\xb4\x2f\x22\x03\x81\xc3\x81\x44\x6c\x38\x39\x1a\x3d\x8c\x69\xb7\x44\xc2\xbf\x30\x34\x14\x7d\xd4\xd7\xe3\xec\xf5\x79\xb8\x63\xaf\x88\xe2\xdf\xb8\xe3\x37\x3e\x34\x8a\x69\x0f\x0e\x47\xa0\xcc\x57\xa2\x43\x43\x16\x9c\xba\x2c\x8a\xb7\x87\xa2\x51\x0b\xee\x40\xa0\x73\x18\x73\xe3\xed\x5f\x18\xbf\x2f\x30\x10\x81\xc6\x1c\x8e\x8e\x26\x87\x63\x89\xc0\xe1\xc0\x40\x84\xfe\x1e\xff\xb5\x28\xe2\x3c\x9c\x79\xd5\x37\x88\x3f\x06\x47\x2e\x47\x87\x86\x9e\x17\x45\x51\xdc\xc2\xa3\x43\xa1\x61\x3a\x02\xd6\xe1\x0b\x04\xd8\x87\xec\xde\x79\xf3\x41\x09\xcd\x21\x1d\x2d\xa1\x7b\xd0\x2a\xba\x84\x5e\x83\x1e\x41\x8f\xa2\xc7\xd0\x13\xe8\xed\xe8\x1f\xa0\xe7\xd0\x07\xd1\x4f\xa3\x8f\xa1\x5f\x44\xbf\x4c\xd7\x8d\xde\x98\xb0\x70\x5f\xc7\xb3\x3b\xdb\xbd\x0d\xf4\x9e\x2a\x7d\xbf\xe9\x9f\x07\xfa\x39\x35\xd8\xad\x0a\xfa\xc6\x88\x09\x47\xc2\x3d\x37\x74\xaa\xd3\x02\x7a\x46\x3f\x4f\x47\x67\x8e\xc9\xfa\x1e\x8b\x15\xe8\xf5\x41\xa6\x25\x0e\x0d\x45\x03\x70\x7f\x6e\x89\xe2\xf2\xae\x5b\xc7\x5e\x3f\x0f\xa7\xce\x74\xa6\xa9\x28\x1b\x1b\x7f\x13\x8d\x0e\x61\x36\x2a\x44\xb1\xcd\x1e\xbf\x8a\x37\x64\xfc\x2f\xbc\x0a\x15\xb3\x87\xe9\x1c\x1c\xfb\x32\xec\xff\x85\x28\x9e\xe9\xdc\xa5\xa6\xef\x91\xfc\x98\xef\x6e\x4a\x70\xea\x73\xde\x00\x69\x6f\x8a\x62\x3d\x3a\x34\xf4\x8a\xff\xb7\x1b\xb0\xf7\xc0\x50\x34\x2a\xec\xfa\xbd\x2f\x96\xc4\xc7\x75\x47\x60\x76\xfc\x24\x4c\xb5\xee\xda\xc3\xf4\x9d\x61\xf0\x4a\x80\xff\x16\x08\xcc\x2a\xad\x07\x9f\x79\xe6\xc1\x43\xfb\xf6\x1f\x3c\xb8\x7f\x1f\x6e\x3d\xf3\xd9\x67\x26\x26\x1e\x79\xfc\x91\x89\x09\x58\x87\x98\x9e\xb1\xeb\x37\xcd\xb5\x67\x9e\x59\x2b\x66\x8f\x5d\xba\x74\x2c\x0b\xbf\x89\xa4\x6e\x7e\xe0\x66\x2a\xe2\xc3\xa5\x18\x66\x78\x12\x15\x70\xeb\x01\xb5\x9e\xd8\x8f\xd7\xc1\xf0\x29\x32\xe3\x85\x99\x99\xc2\xf8\xbf\xf2\x63\x69\x50\x99\x30\x16\x5f\x39\xbb\x12\x8f\xfd\x56\x0f\x92\xc6\xdf\x57\x1c\x8d\x1f\x1c\x8e\x88\xb7\x6e\x0d\x33\xe4\x98\x4e\x6c\xa3\x64\x4a\xa6\xa0\x72\x2a\x07\x16\x07\x60\x12\xb2\x98\x42\x6d\xd9\xd5\xba\x65\x57\x6d\x8b\xb9\x09\x70\xcc\x7a\x98\x8a\x2a\xef\xb7\xaa\xd5\x3f\xa4\x9b\xea\x51\xfa\xb9\xcb\x47\xde\x44\x11\x24\x22\x04\xe9\x3d\xaa\x59\x59\x94\x06\x16\x5d\x87\xff\x62\xc5\x28\xe3\x7f\x1e\x0e\x7f\x69\xe9\x4b\xe1\x44\xb8\xfd\x87\x65\x65\x51\x2e\x17\xe2\xe3\xf8\x23\xe1\x04\x1c\x0c\xff\xb1\x92\x91\x17\x89\x04\x8b\x47\xd8\x37\x2e\x63\x28\x81\xd2\x28\x0b\x58\xca\xcb\x18\x40\x46\x54\x9d\x9b\xc7\x49\x49\x56\x8c\x72\x88\xca\xc8\x0b\xd8\x94\xcd\x2c\x8e\x63\xb0\x46\x7c\x63\xe0\xbc\x70\x7e\xe9\xac\xf0\xf9\xdf\xbd\x30\x7f\x4f\xfe\x4d\xb7\x06\xf0\x27\x06\x0e\xbc\x3e\xfc\x73\xf4\xe3\x5f\x07\xe8\x37\xe9\x7d\xdc\x8f\xcb\xcf\xee\xab\x3f\xcb\x9f\x42\x77\xbe\x90\x1c\xbb\x34\x9d\x1c\xbb\x74\xe4\xb3\x51\xe1\x59\xfe\xd4\x85\xc0\xb3\xfb\x42\x7e\x9f\x62\x0b\xd0\x95\x7c\x36\xc4\xa4\x2e\xed\x8a\x59\xf3\x54\xd7\x6f\x82\x76\x4c\x1c\xf5\x78\xd7\x06\x7c\x5c\x9e\x3e\x30\x3d\x7d\xa0\xce\x34\x63\xac\xf9\xb5\xc6\xdf\xa2\xdf\x4c\x83\x5e\x8e\x70\x1d\x74\x9d\x1c\x78\x0c\x50\x12\xe0\x97\x85\x23\x5d\xdf\x15\x67\xf8\xfd\x4c\x5e\x8c\x1e\x55\x0b\xea\xf7\x1e\xbf\x97\xd6\xb4\x69\x59\x1b\x1b\xe0\xcd\x7c\x07\xe0\x90\x6f\x6c\xe0\xd6\x2b\x63\xd9\xec\xd8\x2b\x6e\xc0\x9c\x65\x11\xf0\x3e\x69\x7c\xa6\xc1\x98\x80\xfe\xc4\xc5\x3b\xf1\xea\x1f\x04\xac\x43\x84\xdd\x6b\x15\xcd\xbb\x54\x9f\xd4\x05\x19\x42\xcb\x8a\x99\xf4\x33\xbd\x75\x6f\x6e\x6c\x60\x07\xdc\xa7\x19\x67\x57\xb5\x6d\x00\x58\xe1\xdc\xfb\xbb\xd3\x63\x43\xd1\x77\x7b\x49\xd4\x2e\x2b\x9b\xdc\x83\xcc\xc4\xe2\x37\x20\xb9\x14\x37\xdc\xc0\x1d\xfa\x56\xdd\xda\xca\xf0\xe0\x75\x16\x21\x57\x54\xe0\x33\xd8\x82\xc4\x3d\xff\x0b\x0b\xed\x26\x98\x25\x2c\x3e\x03\x11\xbb\x42\xc6\x97\x07\xc0\xf0\x18\x64\x7a\x17\x4a\xbb\x40\x18\x38\x0f\x77\x81\xf3\x80\x1a\x3a\x2b\x49\x1d\x70\xfa\xf9\x0c\xb1\x5d\xc4\x7e\x9b\xcf\x7c\x84\xe1\xa2\xc0\x61\x6c\xd3\xa3\x84\xc0\x87\x96\x4d\xcf\xa9\x33\x60\x94\x70\x8f\x4c\x39\x86\x0a\x48\xa3\xbd\xd1\x8f\xd0\x26\x7d\x0f\xad\x61\x7c\x52\x83\x50\xed\xed\x3d\x1a\xc4\xd8\x09\x5e\x0f\xf5\xfe\xd3\xbb\x35\xab\x57\x47\x1a\x64\x33\x72\x52\x77\x15\xaf\x3d\x43\x1e\x89\xc6\x74\xaf\xa6\x85\x51\x75\xe5\x4b\x7e\xcd\x0b\x3b\xa0\x7a\x35\xec\x8d\x0b\xe3\xde\x31\xc6\x67\x11\xea\x93\xa5\x73\xa8\xdc\xd5\x3c\x95\x3e\x0d\xb4\xa3\x17\x2f\xb2\x04\x0a\x48\xeb\x85\xd9\x45\x29\x57\xf0\x1b\x61\x25\x9e\x83\xed\x65\xdf\x7e\xfd\xc2\xcd\x95\xd9\xd2\x48\x62\x34\x31\x72\xf1\xc6\x0d\x57\x15\xbd\xc7\x17\xa5\xfa\x46\x38\xf2\x4b\xd7\x4e\xcd\x2e\x27\x87\xa3\xa9\xd8\x48\x82\x61\x8c\xb2\xf9\xf2\x2b\x60\xcf\x10\x58\xbc\x4c\x49\x8c\x03\xe0\x96\x6c\x00\x58\x75\x65\x51\xfa\xd0\xa7\x67\x3e\x8d\x2f\xc4\xe3\xf7\xcc\x64\xb3\x5f\xba\xfe\xc5\x6c\x76\xe6\x9e\x70\x22\x5c\xfb\xf4\xcc\xa7\xff\x9a\x1d\xfc\xe2\xf5\x2f\xc1\xc1\xb0\xcf\xfe\x38\x8c\x46\x81\xaf\xaf\xe3\x6b\x97\x78\xd9\x08\x1a\x5c\xd2\xd0\x79\x9f\xa1\x04\xb4\xc3\x8d\x8d\x8d\xea\xc6\x06\x21\x1b\xd0\x71\xae\x33\xbd\xe9\x60\x81\xb4\x9b\x8e\x83\x2d\xd2\xf6\x9e\xac\xdd\x7a\xed\xf7\x07\xc7\xbc\xcb\xad\xc3\xca\x54\xbb\xec\x1b\xde\xb8\x0c\xa7\x44\x49\x98\xc7\xe5\x8a\x29\x84\x25\x5f\x0d\x38\xe0\xc3\xdf\xb3\xe7\xd5\x03\xa7\x4f\x1f\x50\xff\x0e\xf4\x7f\x86\x1a\xc3\x50\x04\xa7\xd6\xee\x4d\xcc\xa7\xae\x3d\x7d\x2d\x35\x9f\xc8\x43\xcc\x84\xd5\xc3\x41\xd9\xe1\x89\xdc\x65\x77\x00\xc4\xdc\xae\xd1\xb9\xb1\xb5\xd5\xea\xb1\x2b\xf4\x73\x9e\xee\x05\xe8\xd2\x57\xc6\x5e\xa6\x3d\x1f\x56\xce\x28\x4a\x43\x4c\x4c\x8f\x03\x46\x4f\xd2\xcb\xa5\x8d\xab\xe3\x6a\x55\xdb\xe6\xd3\x74\xdb\x68\xf0\xe9\xba\x56\xad\xa6\xf9\x6d\xad\xda\x6e\x35\xe8\x23\xd0\x89\xef\x6f\x7a\x5c\x30\xa5\x3d\x90\x50\xfa\xdb\x54\xef\x47\x38\x09\xf8\xb8\x04\xbf\xc7\xbe\x69\x3a\x4e\x83\x31\x1d\xd3\x4d\x8f\x3c\xf0\x3d\xf7\x4d\x6d\x0f\x6a\x61\x9f\xbf\xca\x9b\x37\x99\x1f\x83\x0e\x81\xa4\x37\x61\xa9\xee\xf4\x14\xf0\x92\x01\xe8\xe8\x26\x36\x4c\x36\x2d\x66\xb2\xb2\x6d\x42\xc7\xb7\x6d\x93\x76\x83\x4d\x5a\xec\x5b\xba\x87\xbe\x4f\xfd\x16\xf4\xc5\x6e\x0f\x82\x3d\x50\x92\xcd\x1c\xde\xeb\xd2\xb5\xd5\xdb\x87\xb4\x4f\xf4\x96\xf7\x9d\xeb\x67\xf5\x7b\xf6\xea\x83\xbe\xbc\x85\xef\xd1\x36\x6f\xf7\x71\xb6\x7a\x38\xe4\x77\xbf\x1f\x90\x29\xe0\x61\x99\xdc\x65\xac\xd2\x39\xe0\x7d\xb8\x85\xdf\xe7\xe7\x99\xf4\xfe\x03\xb2\x48\xe7\xef\x7d\xc4\x22\x96\xd6\xf3\x9c\x04\xdc\x88\x80\x52\x21\xf8\xe3\x4f\x3d\xd5\xfe\xd7\xd8\x69\x62\xa7\xd5\x22\xed\xad\xef\x47\x0c\xb9\x9f\x87\x3a\x8c\x44\xc6\x03\x83\x93\x7b\x18\xf9\x92\x2e\x79\x04\x8c\x95\x46\x7b\x4b\x74\x9a\x5d\x89\x6a\x07\xd6\x7b\xc2\xc2\xa9\x59\x6c\x43\xd7\xcd\xd0\x06\x9b\xab\x06\xfd\xe9\x00\xc7\x00\xc4\xab\x97\x64\x83\x33\x4c\x3d\x44\xe5\x96\xba\x66\x5d\x0b\xb7\x9b\x8d\x86\xf3\x9f\xc5\xa9\x29\x47\x03\xf9\xd5\x71\xc7\x56\x9e\x65\x5c\x95\x16\x19\xa8\x7b\x1c\x43\xc2\x51\xc5\x84\x78\x56\xb9\x28\xc8\x65\xb3\x42\xb6\xb6\x70\xb9\x3a\xc0\x0d\xf0\xd2\x91\x77\xfd\xd3\x07\x13\xc3\x5c\x60\x68\x62\x7e\x7e\x2c\x8d\x05\x6d\x6b\x75\x24\x9a\x0c\x8f\x4b\xc7\xa6\xf2\x0f\x27\xc4\xd8\xe8\x70\x28\xb3\x7f\x6a\x2c\xed\xb6\xa7\x01\xed\x49\x74\xda\xc3\xf9\xa7\xcb\x06\xb1\xae\x71\xdb\x30\x15\x43\xcb\x34\x77\x0a\x76\xdb\xd7\x02\xbe\x84\x7d\x80\x0f\xd2\xf9\x91\xd4\xdb\x3c\x2e\x0c\x0d\x64\xb1\xf1\x92\x0b\x4c\xcf\x35\xc0\x1c\xba\x0d\x4d\x1d\x8c\x0e\xa5\x84\x91\xe8\xfc\xd8\x48\x3c\x21\x26\x12\x29\x4e\x1a\x8d\x85\x46\x22\x2e\x3f\x46\xf5\xb7\xa0\xd9\xc3\xf1\xd1\xf8\xf0\x48\x74\x6c\x6a\x6c\x24\x14\x0e\x0d\x72\x29\x79\x2c\x93\x0a\x8d\x46\x60\x0c\x7c\x12\x39\xf8\x41\x5c\x47\x02\x30\x9a\x95\x55\x45\x55\x8a\xb4\x9a\x49\x9c\x92\x00\x03\xff\x08\xe6\xca\xb4\xfe\x49\x2c\x33\x42\x31\x88\xe0\xc7\x24\x3a\x30\xc4\x89\xdc\xd0\x40\x34\xcd\x45\x85\x68\xec\x3d\x6b\x47\x79\x0e\x8f\x8d\x8c\x8c\x4e\x8f\x8e\x8c\x8c\xe1\xe9\x69\x3e\x1c\x1e\x18\x08\x87\xf9\xe9\x83\x07\xe2\x03\x7c\x62\xfa\x20\xf7\xf8\x72\x66\x62\x76\x29\x37\x1a\x0a\x87\x43\xa3\xe3\x2b\x1d\x2c\xa5\x1d\xd7\x0f\x96\x66\x63\x68\x0f\xb4\x1e\x88\xf0\x2e\x75\x6c\xc5\x4d\xc6\xf4\xe0\x85\x44\x6d\x12\xbb\xbd\x83\xed\x76\x83\xcf\xb0\xcc\xb1\xaa\x3f\x58\x8a\xce\xd6\xad\x96\xeb\x42\xea\xa9\x33\x85\xc6\xd0\x34\xe0\x49\xb9\x92\x97\x37\xf3\x83\x9b\x63\x2f\x9e\x9d\xae\xb9\xba\xe6\xa4\x79\x62\xdb\x89\x74\x86\x27\x8d\xde\xe6\xd8\xac\x29\x3b\xc4\x4e\xa4\x89\x36\x96\x20\x89\xb4\x56\xdd\xdd\xae\x6a\xb7\x49\xbe\x36\x8d\x01\xd3\x8c\x81\x50\xc9\x17\xc9\xd4\x69\x96\xbc\x28\xfa\xba\x61\xaf\x59\xa5\xe6\xc9\x7f\x89\x74\x72\x78\x38\xd9\x6e\xb1\xc6\xe0\xbe\x36\xee\xd0\xa6\x11\xda\x3a\x00\x64\x79\xde\x6d\x0b\x70\xc3\xf7\xb5\x13\xed\xba\x4f\x13\x10\x95\xf9\x6a\xdd\x13\x92\x64\x53\xea\xbf\x4d\x6e\xbf\xe0\x95\xb3\x3b\x4b\xda\x1e\x37\xca\xeb\x90\x9b\xd7\x56\x17\x77\xd5\x39\x79\x57\x24\x27\x2f\xfa\xff\xee\xe3\xa3\x61\x6b\x84\x78\x3d\xb1\xe7\x08\xb1\x1d\xdb\xde\x7b\x8c\xf0\x10\x69\x34\xdf\x73\x3f\x04\x19\x12\x9d\xbe\x87\x1b\x61\x3b\x55\x28\xff\x55\x6e\x82\xa3\x91\x74\xc2\xf9\x2e\xfd\x1f\xf2\xf5\x85\x04\x3e\x9d\x32\x43\x1d\xe3\x3c\x6f\x3e\x6b\x13\xc3\x63\x7b\xd5\x81\x2b\x10\x20\xb9\xac\x56\xa1\x21\xce\xde\xb7\x48\xd0\x34\x3b\x9d\x70\x12\x63\x80\x0b\x9e\x48\x93\x57\x19\xbe\xdd\xbe\x62\x3c\x55\x32\x9d\x0f\x21\x2b\xf2\xbb\x34\x44\xb3\x6d\xc7\xde\xb3\xfe\x66\x43\xd3\xb6\x5f\xed\x89\x09\xfb\xfa\x83\x03\x9b\xfd\x41\x74\x8c\xf5\x88\xda\xed\x15\xdd\xeb\x9c\xce\xc3\xf3\xbd\xf5\x0f\xed\x21\xfa\xf0\xa4\x79\xc2\x9e\xa2\x57\xeb\xa7\x2a\x21\x8d\x34\x7b\x8a\xf2\xc0\x79\xcf\xf6\x5e\xb5\xcb\xee\x72\x3f\xfd\xfe\x43\xa6\x9e\xc3\x55\xec\x05\x5d\xd8\x6d\xaf\x45\x08\x9d\x84\x6c\x1b\x6e\xeb\xde\x53\x11\x40\x47\x8c\x25\x1c\x3a\xde\xd2\x09\x92\x18\xdb\x6b\x9c\xf9\xe7\xa3\x6e\xfb\x18\x9b\xb4\x09\xfe\x70\xa3\xc0\x17\x8c\x2e\x19\x54\xff\x32\x2f\xe9\x86\x2c\xf5\xb6\x1d\x68\x4c\xd5\xde\xe7\x12\xe6\x1d\x5f\x1b\xab\x10\x9c\x6b\x59\xe0\x64\x14\xf8\xcc\x8e\xd7\x66\xa7\xdd\x72\xc0\x10\xd0\xf0\x37\xb3\x21\xd0\x69\x55\x48\x27\x84\x44\x3a\x9d\xb0\xba\x8d\x0e\xf6\xc8\xc0\x22\xe3\xd3\xd9\xd5\x46\x4e\xc7\xf5\x7a\xdd\x27\x56\xd6\xeb\x35\xac\x39\x3d\xbc\xfd\x8d\xad\x7e\x7d\x76\x14\xd6\x26\xd2\xb5\xe7\x7d\x2f\xda\x3b\x8b\xb1\x68\xed\xa1\xb7\xbb\x9e\xc8\x5f\xbe\xab\xca\xde\x8d\xbd\x93\x20\xff\xc6\x97\xaf\xc0\x65\xb1\x20\x33\x7b\xce\xab\xe6\x2c\x1c\x9a\x9a\x31\x08\xb0\x0d\xdd\x2d\x6b\x61\x21\x7a\x62\x56\xd6\xf7\xc8\x5c\xe8\xe8\x9e\x10\xab\x30\x04\x18\xfc\x05\xa1\x20\xf1\xb2\xca\xc9\xfd\x43\x71\x09\x9b\x92\x0b\x95\xb9\x7e\x66\xf5\x61\x7f\x80\x7f\xd5\xb6\xb1\xdd\x22\x98\xac\xae\xf6\x0f\x36\xdb\x46\xb8\xe3\xa7\x0e\x23\x84\x93\x05\x53\x32\x55\x4c\x9a\x6d\xcd\x59\x2f\x1e\x06\x2e\x76\x27\x7d\x5f\x0f\x06\x6c\x87\x2b\xea\xd5\x9e\x87\xbd\x17\x9d\x57\x59\x6e\xe8\xf5\x46\xd0\x2c\x9a\xc5\xdf\xc4\xdf\x74\xe3\x27\xd2\xe0\x25\x21\x68\x3f\x32\x11\x5a\xc1\xa2\x24\x28\x66\xc5\x94\xc2\x9c\x59\x31\xf5\x30\xa7\x78\xe0\x9d\xa2\xc4\x29\xaa\x19\xe6\xe4\x8a\x19\x52\x54\x53\x94\x54\x4e\x51\x0d\x91\x0b\x73\x6a\xc5\x7c\x5b\xb6\xb4\xb0\xf2\xe8\xc2\x54\x4e\x5f\x79\xcb\x44\x98\x84\x67\xae\xc3\x5d\xff\x97\xe1\x89\xec\x4c\xf8\x1c\x1c\xc1\xe7\xd9\x07\x76\x66\x29\xab\xaf\xbc\x26\x4b\xbf\x28\xc1\xe1\x9a\x32\xb7\xac\x7f\x1c\x46\x91\x0d\xc5\xbc\xb3\xb4\xb0\xa2\xbf\x05\xce\xfb\x49\xdf\x79\x54\x8e\xdb\x8f\x78\xfc\xbb\xf8\x5b\x80\x8e\xd3\xb1\x14\x70\xe5\x8a\xa9\xce\x63\xa3\x22\x89\x12\x0c\x11\xc8\xb4\xa9\x98\x15\x29\x15\xe6\x46\x02\x5c\x36\x20\x65\xb1\x10\x56\x15\x70\xb3\x31\x3e\xe0\x30\x17\x66\x46\xe9\xa7\xe7\x4a\x89\x6c\xd1\xb2\x22\x83\x01\x79\x72\x52\x0e\x0c\x46\x2c\xab\x98\x0d\x70\xe1\x60\x30\xcc\x05\xfa\xbe\x69\x80\x0d\xea\x01\xe5\x44\x2c\x92\x58\x2a\x94\x4a\x03\xdc\x48\x58\x5e\xe2\xf9\x25\x39\x3c\xc2\x0d\x94\x4a\x85\xa5\x04\x1e\x08\x62\x1c\x1c\xc0\x7b\x7d\xcf\xee\x81\x7f\x4e\x8f\xf6\x44\x5d\x33\x04\x06\x53\xe2\x56\xb0\xc4\x29\x3e\x1e\x1c\x13\xd8\xf7\x64\x23\x8e\x55\x93\x3e\x81\x3b\xda\x47\xe6\xb3\xf3\x9f\xc8\xce\x67\xdf\xc3\x88\x62\x1c\x67\x72\x3e\x3b\x6f\x6b\x6a\x76\x3e\x8b\x1d\xc1\x71\x7e\x74\x3e\x3b\x3f\x9f\x9d\xcf\xfe\x6b\xb8\x19\x21\xed\x5d\xf3\xd9\xf9\x47\x1c\xe7\x83\xd9\xf9\xec\x8f\x40\xbe\x24\xb3\xed\xfc\x7b\xd0\x6b\x20\xf7\x13\xeb\xaa\x29\x01\x24\x85\x59\xd0\x39\x3d\x68\xc8\xf8\x0d\x8b\x69\xe1\xc4\x4c\xfc\x78\x7c\xe6\x44\xbb\xd5\xb2\xed\xba\x85\x5f\x7b\x5e\x6b\x12\xd2\x6c\xde\x41\x4d\x2f\xef\xab\x0e\x79\xd9\x4c\xb7\x32\x74\x4e\xc5\x9c\xca\x19\xb2\xa1\xe2\x5a\xe1\xa5\xed\xea\xef\xe2\x0b\xe3\x6b\xe7\xac\x0d\x4c\x0e\xbe\x34\xbf\x55\x6f\x7f\x76\xfc\xc1\x7f\xd0\xbc\x50\xf3\x61\xe4\x87\xa9\xf6\x02\x15\xd6\xb7\xab\xd5\x4d\x0b\xb7\xb6\xa0\x74\xda\x57\x9e\xfd\x89\x61\x49\x8e\xa2\x14\xa0\x6a\x13\xc0\x23\xf6\x18\x6b\x54\x17\x58\x87\xe3\x75\x50\x61\xe5\x02\x93\x14\xdc\xe8\x93\x92\x87\x05\x5b\x27\x19\x1e\x20\x86\x5a\x9a\xc3\x67\x48\xbb\xd1\x99\xa7\x6c\xe2\x10\x8b\x91\xd1\x6c\x31\x60\x19\x07\x6f\xb7\x35\xdc\xc8\xf0\xf4\xc4\x6d\x92\xe1\x5b\xec\x38\x42\x43\x9d\xf9\xd2\x8b\x98\x67\xf8\x38\x0c\x0b\x0d\x72\xe6\x75\xc1\x8d\x6a\x35\x74\x43\x78\x95\xdc\x7c\xc9\xcd\x97\x50\xf5\x6e\x92\xa7\x24\xe8\x46\x41\x16\xc0\x2e\xa0\xb9\x08\x39\x7d\xf9\xfb\x9a\x0b\xe5\x03\x5f\x38\xda\x1d\xa4\x69\x58\x70\x1c\x76\x6a\x9d\x45\xef\x60\xcb\x3f\xd3\x3b\x5d\x54\x2a\xc2\xf2\x52\x3d\xbd\xbd\x3f\x76\x02\xf5\xe3\x63\xec\xf2\x89\xba\x36\xfc\x81\x3e\x9f\xa4\x77\x1e\xd0\xfe\xa7\x1f\x03\x53\xfa\x63\x60\xd7\x5d\x82\x7d\x86\x43\xd8\xfe\x0d\x1f\xbd\x1c\x7c\x9d\xc6\xcc\xaa\x7f\x18\x60\x07\x0f\x83\x0d\x7e\x09\x8e\xfc\x86\x7f\xeb\xfb\x16\xc6\x05\x42\x08\xff\x31\xfe\x63\xe0\xd8\xa4\xe3\x82\xae\x84\x79\x34\x85\x8e\xb0\x0c\x34\x43\x95\x05\x95\x6e\x24\x96\x47\x2b\x09\x7a\x10\x73\x2c\xef\x5c\x0d\x41\x17\x03\x8f\x25\xaf\x1a\xb2\x1b\xb8\xea\xbe\x63\x3b\x97\xd3\x62\x67\xb4\xd8\x99\x6a\x35\xf7\x70\xee\xf7\xf0\x57\xc7\x49\xfb\x73\x7c\x9a\x60\xbb\x7a\x07\xe5\x08\x3e\xc3\xa7\xb5\x1c\x39\x53\x65\x1b\x3b\x97\x3b\x13\xab\x3a\xf4\xaf\x5a\xc5\xb9\xdc\xc3\x39\x3c\xda\xae\x8c\x93\x34\x8f\xcf\x90\x5c\xb5\xaa\xa5\xf9\xf6\xe7\x48\x4e\xab\x9e\x61\x1b\x3a\x7e\x7a\x71\x16\xfc\x79\x17\x3e\x6f\x02\x20\x0f\xde\x65\x7f\x97\x10\xde\x00\x78\x58\xcd\xb7\xed\x41\x78\xb6\xab\xb4\x75\xb4\x81\x68\x8f\xbd\x3e\x90\xe7\x01\x94\x45\x59\xfc\x35\xfc\x32\x4a\x01\x7a\x16\xd5\xdd\x45\x0c\xbe\xbc\x0e\x90\x9b\x6e\xe8\xaa\x24\xab\x20\x89\xab\x26\x95\x44\x65\xd5\xd5\xdd\x38\x3a\x85\x18\x57\x71\x65\xec\xc5\xd3\xf9\x3c\xc9\xe7\xc9\xe0\x13\xff\x6d\x30\x3f\x3d\x9c\xcc\xaf\x13\x32\x38\xb6\x3a\x9c\x4c\x26\xf3\xc9\x31\xfc\xf2\x23\xed\xaf\x49\x2f\xde\x9b\x7f\xd4\x30\x1c\x42\x9e\xa8\xe7\x93\xc3\x33\xf9\x88\x20\xac\x4b\x8f\x26\x87\x05\x89\x9b\x23\x4c\x36\xf1\x62\xd7\x86\x01\xcd\x8b\xf4\xc5\x9f\x19\x0c\x4f\x85\x35\x2b\x64\xc8\x82\xce\x5a\x20\x80\x2e\x09\x1c\x22\x54\x50\x3d\x63\x41\x5b\xb0\x45\x56\xa1\xf6\xfc\xea\x70\xf2\x15\xcb\x5a\x4f\x0e\x5b\xc3\x49\x87\x10\x87\x36\x62\x48\x10\x52\x43\x73\x84\x38\xc0\x7b\x12\xec\x89\x2f\x93\x76\x7b\x36\x3c\x5f\xfd\x15\x18\xdf\xe0\xbd\xd0\x71\x01\x5c\x9c\x7e\x87\xc5\x6b\xc1\xb3\xb9\x47\x79\xfd\x16\xe9\x0e\xeb\xe7\x69\x28\x8a\x95\xf4\xf3\xb0\xdf\xf0\xf9\x48\xf3\x2e\x2e\x3d\x87\x34\xa4\x75\xf8\xd6\x18\xd3\x8c\x8a\xce\x32\xb6\x42\x2f\x87\x30\xdc\xe7\x97\x50\x4d\x95\x13\xdd\xef\x18\xa2\x21\x00\x26\xb9\xfc\xe9\x2b\x58\xf5\x10\x9b\x5d\x1b\x19\x87\x1f\x39\x7f\xfe\x5c\x16\xc2\x02\xee\x05\xef\x7f\x0e\xf6\xa7\xce\x9d\x3b\xff\x05\xf8\x7c\xdd\x0e\x87\x1f\x0a\x47\x86\xc2\x0f\xd8\xe1\x44\xf8\xb5\xe1\xb0\x6d\x87\xc3\xaf\x0d\x27\xc2\xf6\x03\xe1\x64\xf8\xa1\x70\xf8\xfc\xf9\x73\xe7\x9f\xf6\x05\x03\xe4\x60\x3f\x77\xfe\xdc\x79\x19\x3e\x97\xef\xf2\x3b\x1b\x0a\x4e\x86\x7b\x6d\x78\xff\x7b\xf8\x15\x7e\xec\xda\xee\x53\xb7\xa7\xa4\x25\xf9\x10\x38\x21\x27\xa1\x2f\xab\xb3\x01\xeb\x88\xa6\xed\x61\xcf\x84\xd9\xb6\xea\x81\xec\xf9\x73\x23\xc2\x28\x01\xb6\x1f\x3a\xcf\xf3\xd8\x64\xcb\x84\xd1\x0f\x01\xcd\xf4\xea\x5a\x4d\x6b\x6f\x0f\x91\x3c\x21\xf9\x6f\xfb\xe4\xf8\xfc\x19\xac\xb5\xb7\xbf\x4d\x0f\x13\xb2\xde\xc7\x29\xfb\xbd\xca\x9a\x7e\xdf\x5d\x0c\xa5\xd0\x04\x9a\x02\xf4\xdb\x72\x45\x17\x18\xcb\x8c\x2e\xc8\xee\x87\x60\x2a\x2c\x1b\x8b\x15\xba\xd8\xc2\xbb\x4c\xdf\xb1\x97\xa1\xb9\xd3\x49\xd7\x74\xe8\x9e\xa3\x64\xac\xe5\xcb\x1a\xa4\x51\x3e\xfc\x3c\xb9\x71\x11\x3b\xf0\x11\xf6\x33\x8a\xd5\xa3\x6f\x30\x19\x74\x0e\x66\x3d\x5a\x17\x27\xa9\xf4\x2d\x08\x49\xd2\x1c\xb0\x0c\x08\x72\xd9\xf4\xb6\xb2\xb1\xc8\xb6\x2b\x18\xce\xc0\xa7\x0f\xae\x2c\x68\xc7\x8a\xe3\xd9\xd8\x73\xc5\x9c\xd8\x1c\xc7\xd7\xc7\x8f\x24\xb5\x5c\x8e\x90\x03\xc6\xb1\xea\x09\x23\x37\xb3\x58\x1c\x5f\x8b\x16\x83\x38\x52\x24\xe2\xb1\x62\x54\xc3\xc2\xca\xc1\x9c\xb6\x30\x3e\xde\xfe\xb9\xf1\x23\xe3\xc5\xc5\x99\xac\x71\xbc\x7a\xcc\x38\x40\x48\x2e\xa7\x25\xd7\xb2\xe3\xc5\x68\xac\x17\xdf\x9a\xeb\xae\x88\x2c\xba\x04\xe2\x3f\x9e\xf9\xac\x7f\x4c\x8e\xa1\x69\x3a\x6f\x03\x60\x9a\x97\xef\xa8\x33\x60\x5c\x79\xb1\xb2\xeb\xce\x5a\x60\x95\x20\xd5\x2a\x9f\x4e\x8c\x8c\x24\xd8\x98\x62\x29\xbb\x79\xaa\x50\xd3\x55\x3d\x9d\xc8\x8f\x24\x12\xbf\xd4\x77\x7b\xc1\xa7\x53\x87\xfb\x1b\xa5\x33\x48\x82\xe5\xb5\x16\x69\x07\x55\x7c\xfb\x1f\xfb\xf2\xf3\xe4\xc6\xad\x1b\xe4\x97\x9e\x5e\xd3\x56\xd6\x56\x34\xec\x3c\xff\xf0\x85\x9b\x37\x2f\x3c\x6c\xac\x2d\xcf\xae\xac\xcc\x2e\xf7\xdb\xc5\xd3\xdd\x8c\x05\x7d\x77\xec\xb7\x45\x34\x62\x3b\x7e\x17\x05\x5d\x38\xfa\xe0\x83\x7c\xe5\xf1\x0c\x73\xb1\xa7\x23\x08\xde\xcd\x94\x6c\x39\x20\x7d\xa5\x13\xda\x56\xb7\x70\x6c\x11\x87\x5e\x3f\x49\x8c\x11\xa7\xff\xfa\xbb\xba\x6f\x92\xc9\xcb\xd8\x90\x8b\xe1\x49\x9c\x12\x97\xf0\x5d\xeb\x01\x3c\x4f\x16\xaf\xaa\xf5\xd7\xe6\x68\xd8\x22\xe9\x04\xf0\x88\xef\xaa\x91\xc9\x7b\x01\xdf\x78\x15\x58\x3f\xed\xd1\x47\xa4\x4a\xfc\xda\xf6\x36\x69\xdc\xbd\x7f\x52\x2c\x5a\xd8\x1b\x2f\x90\xbd\x09\xb6\xcf\x3d\xc6\x0a\x15\x51\xb5\x44\xda\xa1\x1b\xdb\xd7\x4b\x02\xa1\x23\x65\x2c\x51\x25\x64\xec\xd7\x7b\x2a\xf2\xfb\x53\x93\x7e\x96\x8c\x44\x37\x66\x7b\x6f\x9f\x6a\x9a\x6f\xac\xf5\x7b\x55\xd7\x1a\x7c\xba\xeb\x57\x0d\x74\x72\x7f\xc7\x41\x02\xe7\x65\x37\xe4\xde\x0d\xbf\xaf\x94\x15\xd9\x00\x95\xbd\xbf\x87\x96\xb0\xa9\x4b\xb8\xd1\x98\x5b\x5e\x9e\x9b\x98\x9e\x9e\xa0\x7f\x74\xdf\x97\x6c\x7f\x42\x71\x94\x1a\x46\xe2\x91\x2b\xcb\xca\xf4\x21\xf5\xb9\xe9\x43\xaa\x72\xe4\xca\xb2\xe0\x65\x21\x33\x27\x3c\xf1\xb8\x20\xd9\x3c\x3e\x06\x19\x84\x3d\x39\xec\xba\xaa\xb3\x3f\xec\xd8\x5e\xd9\xa2\x66\x69\x1a\x64\x31\x5a\xb8\xd1\xee\xe4\xc7\x83\xa8\x84\xbc\x18\x64\x07\xe2\x8c\x3c\x3c\xb5\x4e\x04\xb2\x63\xeb\x27\x17\x17\x65\x41\xc4\x4d\x7b\x5b\xa6\xcb\x71\x0c\x75\x62\xcc\x7e\x16\x7f\x83\xea\x4e\x5e\x4e\x55\x37\x3c\x1f\x0b\x4e\x7b\xdb\xa9\x9c\x5a\x7b\xc7\xe5\xb3\x9f\xbc\xa4\x69\x0f\x44\x2e\x99\xcb\x6b\x6b\xcb\x07\x1f\xe8\xe0\x65\xfc\x1e\xfe\x06\x58\xf5\x90\x17\xec\x59\x4a\x85\x39\x28\x48\xee\xc4\x8a\xc8\x42\xa7\xd0\x37\x43\xc0\x3a\x7e\xf0\xec\x01\xab\xdd\x10\x80\xa6\x41\x68\x40\x05\x58\x80\xa8\x80\xd4\xc1\x07\xb8\x4b\xda\x06\x80\x92\x57\x2d\xb7\x42\xc8\x89\x75\xf0\xbd\xd8\x01\x44\x7c\x0e\x68\xb0\xee\x65\x89\xb3\x57\xbd\xc4\x59\x8c\x3e\x8f\x1c\x6c\xb3\x73\x92\xf4\x14\xb5\xe5\x38\xd9\xab\x57\xb1\x03\x6f\x7f\xff\xe3\x1e\xbc\x3c\x85\xae\x7c\x10\xda\x53\x3e\x00\x2a\xcb\x4e\x72\xd1\xb7\x3b\x02\x02\x8c\x2f\x1f\x8e\x09\x64\x6f\xf6\x47\x22\xf8\xa3\x0f\xec\xdd\xb1\xf4\xde\x98\x94\x60\xfe\x5b\x14\xf8\x94\x5c\x04\x37\x93\x5c\x34\x78\x70\x2e\x2d\x9a\x15\x00\x87\x12\x60\x64\x7d\x25\x16\x0b\x0c\xac\xff\xe6\xfa\x40\xc0\xdb\x99\x38\xff\xda\xb5\x4b\xf7\x3f\xb8\x76\x09\x37\x46\xda\xbf\x39\x12\x90\xe5\xc0\x08\x3e\x04\xef\xe6\xd8\xd8\x9f\x8d\x8d\xb9\x78\x38\x2c\xb6\x71\x10\xe5\x11\x32\x75\xa5\x6c\xca\xa2\x90\x0a\x89\x42\x4a\x2e\x14\x8d\xb2\x59\x01\x10\x1b\xbd\x00\xde\xc0\xd4\xfb\xff\x8c\xfe\x12\x87\x02\xbd\x25\xda\x97\x3e\x4b\x6b\xaa\x75\x2b\x77\x77\x7a\xaf\x25\xc9\xa2\xfb\x72\x01\x31\x15\x0f\x84\x8b\x0b\x01\xa5\xbc\x12\x10\x8b\x5c\x38\x05\x57\x53\x56\xff\xc9\x87\x5f\x9b\x0c\x27\x12\xe1\xe4\x6b\xbd\x9d\xbf\x7a\x7f\x35\x1e\xaf\xd2\x0d\x6e\x8c\x06\x93\xc7\x7e\xec\x58\x32\x38\xea\xed\x8c\x8f\x1c\x7c\xcb\xc1\x11\xba\xf9\x7e\xca\x75\x5d\xfe\xb7\x01\xb6\x9a\x99\x05\x95\x5b\xc0\x82\x29\xed\x5a\x0d\x1c\x8c\xee\xb7\xe6\x2d\xa3\x52\xef\xfa\xa4\x6b\x3f\x7c\xbf\xf9\x97\x8d\x7c\xbe\xd1\x9f\xfb\xf5\x83\x8c\xa7\xfb\x41\xc4\x2e\x71\x3e\xdd\x93\x6a\xcd\x19\x34\x85\xf6\x31\x9b\xb7\xde\xb5\x5f\x4b\x00\x52\x2c\xbb\xb2\x29\xe7\x2e\x54\x8b\x15\xd5\xdd\xdb\x73\xa5\x22\xc2\x0e\x6b\x50\x5d\x78\xc5\xca\xe7\xf3\x46\x62\xc4\x30\x46\x12\xb5\xe4\xb0\x91\x17\x86\x93\x9f\xeb\x26\xbc\xe0\xa8\x65\x3d\xe1\x26\xb6\xac\x8a\xa2\x98\x77\xb4\xbc\x68\x51\x3d\x2c\x69\x8a\xc3\x49\x47\x4b\x7e\xc6\x7f\x35\xa8\x4f\x86\x76\xb1\x3d\xf7\xf4\x91\x09\x2c\xf9\xcb\x0b\x92\xef\x8f\xad\xf8\x76\xf3\xd8\xe1\x63\x67\xe9\xe2\x33\xb1\x47\x34\x43\xfb\x8f\x47\x47\xc5\x4c\xc6\x9a\x54\x26\x27\x15\xa6\xaf\xad\xe3\x1d\x7c\xcb\xcd\x3b\xdc\x15\xe3\x5a\x59\x14\xa5\x11\x5c\x54\xd4\x8a\x3f\xcb\x70\xe2\xa3\xce\xc4\x84\x43\x37\xae\xf5\x9b\x65\x17\xfe\xf6\xda\xe9\xd3\x6b\x6b\xa7\x4f\x23\x60\x94\xa7\xf7\xe0\xaf\x3c\x66\x56\xaa\x66\xd1\x49\xc1\x04\x3f\x74\x59\x05\x66\x6a\x61\x31\x24\x99\xaa\x21\x71\x2a\xfe\xc8\x81\x03\xe6\x7d\xfb\x49\x7e\xbc\xb0\x3c\x4b\xc8\xec\xf2\x95\x2b\xf7\xb5\xff\xfc\xfc\xf9\xf3\xcf\x3f\xff\x3e\xfc\x96\x03\x1f\x3b\x70\x60\x2c\x37\x3c\x4b\xde\x31\x3b\x7b\xe2\xca\x6b\x4e\x7c\xf1\xfc\xf9\xf3\x87\x9f\x7f\xfe\x79\xda\x67\x97\xd1\x65\xc8\x5b\x1c\x41\x29\x94\x01\x36\x60\x08\x4c\x36\x20\xa8\x59\x50\xcd\xa0\x29\x4a\x82\xa2\xfa\x8c\xbb\x58\x58\xb9\x7c\x79\x65\xfe\xc8\x91\xf9\x87\x1f\x7e\x67\x4e\xca\xee\x3b\x18\x1a\xcd\x4e\x84\x8f\x26\x06\x48\x78\x12\x7f\x6a\x70\xfd\xdd\xeb\x83\x64\xf0\xd4\x0f\x9d\x1a\xbc\xf4\xba\x87\xdb\x1f\xc8\xf1\x21\x12\xfe\xc0\xe4\x58\xb6\x34\xff\xba\xcc\xf8\x9c\x02\x3c\x37\x97\xf1\xa7\x3a\xf9\x79\x79\x84\x4a\x15\x53\x0f\xc7\x31\xb3\x2a\xcb\x8a\x6a\x8a\x2a\x67\x8c\xe0\x4e\xf4\x95\x81\xdf\x48\x4b\x99\x78\x4b\x56\xca\x4d\xed\xfb\x10\x09\xf1\xb9\x89\xcb\x0f\xd3\x26\xd0\xa6\x7c\x4e\xca\xce\x97\x44\x7a\x2c\xfc\xc5\xac\x94\x2d\x9d\x7a\xdd\x25\xa8\x9e\x40\x53\x8e\xa1\xbd\xfd\x21\xbb\x47\x46\x0e\x73\xfd\x83\x61\xa3\x56\xdb\x63\x10\xd4\x80\xcb\x25\xd0\xd1\xa3\x00\x95\xd1\x9f\x5f\x7c\x97\x3c\x63\x1d\xa0\xa3\xd9\xcb\xcf\xae\xd3\xd8\xb2\xdd\x7f\x7d\x61\x5e\x68\x00\x8d\xa1\x7d\xf8\x0f\xf0\xbf\x82\x5c\x93\x3c\x52\x10\x32\x0d\x49\x2e\x2a\x9d\x28\x6f\x31\x0c\xea\xb9\x1a\x54\x0c\x20\x52\x5e\x94\xf0\x3c\x5e\xc1\xc2\x33\x67\x72\x7c\xa6\xc8\x62\xf1\xef\xe1\x46\x46\x3f\x32\x18\x99\x88\x6e\x04\x33\x1f\x8d\x0c\x8e\x47\xdb\x5f\x1d\x1d\xe1\xca\xaf\x79\xf6\x57\x32\xff\x1d\xe2\xe5\x3f\x31\x5a\xe0\x8e\x06\x33\x18\xd1\x2f\x8f\x06\x33\xed\x5f\xe1\xf2\xa3\xcf\x34\xbb\x73\x7c\x0b\x45\x20\x76\x1d\xec\xcb\x9c\x64\xe8\xe6\x5e\x92\x9b\xb5\xba\xea\xac\xae\x3a\x35\xdf\x94\xa6\x3a\xea\x4b\xab\xab\x95\xca\xea\x6a\xa5\x87\x5f\x5e\x63\xb1\x29\x0c\x5b\xa4\xaf\xec\x15\xcc\xab\x7d\x58\x30\x02\x16\x56\x57\x9d\x33\x67\x9c\x9a\x6d\xc7\x22\xed\x16\x95\x5e\x30\x89\xc4\xbc\xb2\xcf\x54\xdb\xb7\xab\xab\x70\x14\x79\x18\xb5\xff\xb7\xf0\x40\x43\x3d\x18\xf3\x71\x88\xe5\x40\x2b\x58\xe0\x4c\x2a\xe4\x98\x58\xe7\x40\x70\xe3\x8c\x92\x28\x61\x45\xfd\xcd\xef\xfc\xfa\xaf\x67\x78\xcd\x6e\x37\x34\x3b\xf3\xf3\x47\xbe\x83\xd7\xd3\xe1\xf6\xc7\x25\xce\xfa\xce\x91\x5f\x27\x7c\xc6\xc6\xc4\xd6\xf8\xcc\x77\x8e\x7c\x81\x93\xda\x2f\x72\xd2\x1e\x39\x7e\xfd\x12\xc8\x14\x7d\x53\xcd\x9e\x38\x48\x1c\x39\x7b\x66\x43\xb9\xd2\x23\x90\x4c\x9f\x7d\xe3\x59\xe5\x8a\xe3\x61\x67\xbf\x33\x80\xf0\xbb\x01\x7d\xd0\x46\x0f\x01\xd2\x14\x8b\xbb\x99\xc4\x29\x29\x8b\x17\xcd\x65\xac\xba\xc1\x2f\x29\xb9\x68\x94\x8a\x42\x2a\x1b\xd2\x45\xc9\xfd\xef\x21\x5a\x1a\x3a\xe0\x5d\xce\x07\x21\x34\x06\xb0\x2c\xa9\xce\xa9\x2a\x25\x53\xe7\x65\x83\xc3\xc9\x21\x4e\x1a\x1a\x94\x02\x78\x74\x76\x30\x3c\xf0\xf6\x4b\x33\x49\xf1\xfe\x4b\x78\x22\x8b\x03\x81\x81\x00\x87\x23\x43\x91\xe4\xe0\xc8\x60\x28\x34\x1b\x4b\x1c\xe4\x43\x33\x4a\x21\x1c\x1e\x91\xc3\x83\xb1\xa4\x16\xe3\x0b\x9a\x96\x88\xb5\xef\xbd\x1e\x26\xd6\x9f\x54\xa6\xf8\x78\x70\xa4\x6c\x8c\x45\x42\xf9\xd1\x58\xe2\xd4\x0f\x8f\x4d\x1c\x9c\x79\xf3\x9b\x0d\x29\x18\x0a\x06\x03\x38\x38\x80\x03\xe1\x60\x24\x14\x1d\x8a\x96\xe2\x03\x6a\x6c\x28\x2b\x85\x23\xc1\x70\x24\x10\x1c\x1c\x96\x94\x91\x81\xec\xa4\x30\x10\x3c\x54\xba\x83\xbe\xc6\x78\x8f\x1e\x44\xef\xc4\x5f\xc6\xef\x46\x07\xd0\x0f\x21\x84\xe9\xc5\x0d\x2c\x8a\x7b\x5e\x9e\x08\xd7\x87\xe9\xf5\xf5\x5e\x21\x07\x67\x15\xe9\x39\x92\xa8\x2f\x96\x01\xa2\xd5\xac\x18\xe5\x4e\xf4\x12\x20\xa3\xbf\x35\x87\x71\x30\x30\x10\x08\xe3\x48\x24\x9a\x18\x1c\xe1\xc2\xa1\xd9\x58\xf2\x00\x1f\x9a\x16\xf9\x42\x38\xcc\x85\x46\x27\x52\x09\x76\xb1\xc9\xd8\xc7\xb5\x31\xe9\xcc\x02\x89\x0e\xf3\xda\x7c\x26\x9d\x8f\x04\x94\xcc\x50\x50\xdb\xc7\x8f\x2a\x1a\x2e\x48\xc1\x81\x60\x10\x07\x77\x5d\x6a\x3c\x4e\xaf\x35\x18\x18\x08\x0f\xc7\xc6\xe0\x5a\x53\xa1\x60\x76\x54\x2b\x25\x52\x4a\x31\x35\x38\x74\x7f\x41\x0a\x45\x95\x54\x38\x32\x97\x0c\x4d\x9d\xf6\xd6\x4e\x02\x3e\x14\xae\xc3\x05\xee\x65\x69\xf8\x72\xd1\x4c\x51\x02\xf2\x0b\x41\x36\x5c\xda\x44\xa2\xdd\xb8\x75\xe3\xc6\xc5\xa3\x66\x76\x74\xe4\x2b\x1a\x71\x18\x89\xf6\x4b\xc6\xb1\x0b\x37\x6f\x7e\xf4\x26\xc9\x0d\xf3\x9f\x76\x1c\x0c\x80\xe2\x21\x54\x72\xfd\x34\x1e\x4b\xc8\x02\xb0\xab\x02\x63\x64\xd0\x87\x9c\x0e\xa2\x85\x20\x1b\x39\x0c\x3d\xda\xa5\x8c\x04\x4d\x4b\x9d\xfa\xed\xd4\xe5\x77\xe3\xb7\x8f\x57\x16\x0f\x5c\xbc\x91\x5f\xfa\x4d\x8d\x38\xdb\xd9\xac\x96\xcf\xa5\x2e\x2f\x4f\x17\xf3\xfb\x0e\xdd\x63\xd8\xc2\x6f\x17\x67\x96\xd7\x70\xb5\xfd\xde\xf1\x4a\xfe\xe6\x85\x43\xfb\x96\x1e\xcc\xde\xfb\x1f\x09\x39\x9b\xcd\x19\xc7\x0e\xed\xcb\x15\x67\x96\x2f\xa7\x72\x79\xc8\x11\x18\xec\xc1\x73\x1a\x46\x09\x68\x5b\x01\x6c\x5d\x15\x53\x16\xa4\x8a\x29\x4f\xe2\x8a\x29\x1b\x82\xae\x2c\x60\x6f\x13\xe4\xe9\x02\xd5\x81\x2c\xfc\x85\x40\xe0\x43\x37\x62\xc1\x77\xe5\xb3\xcb\x1f\x0a\x04\x7e\xf2\x5d\xc1\xd8\x8d\xe5\xec\x99\x95\xcb\x97\x07\xe0\xf9\x6b\x85\x47\x45\x8b\x0f\x89\xcb\x03\xa3\x4d\x71\x34\x6c\x89\x21\x7e\x39\x35\xda\xfe\x15\x7c\x3f\x5d\xa4\xf0\x5b\x3b\xf6\x22\xe2\x72\x8e\x0d\x52\x99\x3a\xc9\xec\xe5\xb2\x21\x79\x68\xe7\x1d\x68\x14\x53\x92\xf9\x42\xcb\xe1\x33\xc4\xb1\x89\x65\x69\x5b\x7c\xc6\x86\x1d\xac\x61\x9b\x64\x78\xc7\x01\x48\xb6\x0c\xbf\x45\x88\x65\xdd\xe9\xb3\xe7\xf9\x59\xc7\xdd\x68\x44\x49\x36\x74\xc8\x22\x97\x0d\x5d\x92\xd9\xc1\xa0\xc7\x2b\x6f\x11\x1b\x82\x82\x5a\x84\xd8\xb6\xa3\x69\x8d\x46\xab\xd5\x72\x1c\x6c\x01\x73\x8c\x46\x1c\xa2\xb5\x1c\x02\x70\xeb\x1a\xc3\x8d\xb2\x5e\x15\x37\xca\xc5\x02\x13\x0c\x1f\xbb\x7c\x97\xd9\x86\x3e\x38\x1d\x76\x10\x8f\xf5\x06\x3b\xb6\x6d\x37\xab\x4d\xbb\x69\xef\xd8\xcd\x6a\x75\xc3\x16\xe0\x83\x6d\xe3\xba\xdd\xf2\x16\xd0\x8d\x6a\x95\x1e\xaa\x31\x2e\xbc\x1a\xe3\xc5\xec\x6d\x4b\x87\x03\xa1\x00\xd8\xe1\xf5\x76\xad\x8e\x51\xbb\xe6\xe0\xba\xb3\x55\xaf\xd7\xeb\x1d\x9e\x5c\xfc\x77\xe0\xfb\xca\x52\x4d\xcd\x74\xf9\x95\x4b\x3a\x27\xab\x9c\xac\x76\xb3\x8f\x75\xc9\xd4\xa5\x92\x29\xfd\x87\xe9\xe3\xe4\xf8\x4c\xfc\x38\x1e\x54\x67\x4b\xf9\xbc\x12\x10\xee\xdf\x7f\xea\xda\xb5\x53\xf7\xeb\xa3\x99\x7c\x31\xdf\xde\x4e\x8f\x35\x9a\x4d\x6d\xb3\xf9\xee\x77\x47\x48\xf9\xfa\xfb\xaf\x5b\xcf\x3e\xfb\xec\xc8\xf9\xf3\xdf\x17\x6c\xcd\x30\x12\x50\x01\xef\xe0\x57\xe0\x1a\x3b\x9c\x26\x1e\x46\xab\x0a\xa5\x16\x5d\x6e\x2c\x4e\x90\x0d\xc9\xf5\x21\xe3\x1b\x59\x25\x2b\x58\x56\x0d\x78\xc0\xe4\x49\x67\xc7\xda\xd6\xbe\xa2\x64\x95\x67\x26\x95\xec\x57\xc9\x7b\xf8\x43\xb2\xb1\xba\x6a\xc8\x87\xf8\x37\x34\x09\xb9\xb3\xb2\x72\x49\xcd\xaa\xcc\x3f\x4d\xeb\xfb\x6b\x17\xc3\xa8\xc7\x3f\xbd\x82\x25\xba\x8c\x0b\xde\xb3\x11\xd2\x05\x99\x33\x25\x2e\xe9\xfa\xa7\x69\xfd\x26\xa7\x9a\x67\x95\xac\xf2\xa3\xda\x19\x37\xdf\xcb\xb2\x96\xb2\x4a\x36\x0b\xc7\x36\xad\xb7\x67\x95\xec\xe3\x6a\x56\x35\x56\x56\xf0\x06\x73\x69\x90\xa7\x26\x95\x2c\x5e\x55\xb2\x8a\xb1\xb2\xf2\x4d\x42\xde\x96\x55\xb2\xfd\x5c\x82\x29\x88\xcf\x30\x64\x61\xe5\xee\x41\x11\x8d\x9a\x51\xd9\x9d\x59\x8f\x1a\x8d\xfc\x4b\x7b\xa6\xd5\x77\xf1\x1f\x98\xfe\x59\x50\x39\xb5\xd4\x57\x7a\x8d\xaa\x9f\x15\x1c\x1d\x1d\x1f\x1f\xa5\x32\xdd\xf8\x68\xdd\x59\xb7\x5e\x1e\x1f\x6d\x6f\x8f\x8e\x53\xa1\x71\x74\x1c\x8d\xf8\xca\x61\x4f\xc4\x18\x9a\x00\x7f\xe4\x0c\x9a\x43\xfb\x51\x05\x1d\x42\xcb\x30\xd2\xb8\x05\xcc\x1a\x9b\xf4\x7c\xbf\x82\x5c\xae\x60\x9d\x79\xab\x43\x10\xc4\x2b\xb2\x27\x53\xd5\x05\x39\x99\x0a\xcb\x47\xb0\xfb\xa8\x5a\xad\xe3\x86\xba\x8e\x09\xbd\x90\xaa\xcb\xc0\x30\x8e\x97\x34\x4d\xd3\xda\x5b\x84\xe0\xc6\xe8\x38\x01\xd7\xf0\xf6\xf8\x28\x40\xd6\xbc\xe6\xc4\xfc\xeb\x5b\x19\x9e\xd1\x61\x91\xd1\xf1\x76\x83\x60\xfa\x54\x3b\xe3\xa3\xf4\xb9\xa6\x17\x40\xb6\x34\x42\x50\xbc\x8f\xdb\x79\x14\x62\x46\xe9\x15\xa8\x68\x16\xed\x43\x65\x74\x10\x1d\x41\x47\x19\xf7\x90\xee\xdd\x67\x68\xb9\x4b\x48\x16\x74\xff\x92\x0c\xfa\x1e\xdc\xf0\x1d\xc2\xb2\x54\x98\xf9\x50\xe8\x81\x3a\x70\x52\x11\x32\x8e\xaf\x83\x37\xba\x45\x08\x9f\xd9\x6e\x41\xd3\x1d\xaf\xe5\xb8\xe9\x12\xfc\x34\x58\xab\x81\xdc\xa5\xed\x32\xdb\xb4\x5b\x19\xde\x76\x30\x5c\x04\x81\xe3\x70\x19\x9a\xcb\x65\x12\xf0\xe1\x52\xfa\x24\xa8\xfe\xdb\xfa\xcf\x3e\x70\xed\xda\x07\xae\xe1\x5a\x57\x54\x67\x29\x93\xdf\xee\xb7\x39\x73\xe8\x2c\x2a\xe0\x5f\x75\x9f\x07\x1f\x0f\x93\xa9\x9a\x52\x90\x3e\x67\x9c\x6a\x72\xb2\xa1\x27\x25\x6e\x01\xbb\xa8\xc9\x1b\x59\x25\x7b\x3c\xab\x64\xf1\xb1\xac\x92\x7d\x9b\xa6\xfd\x68\x56\xc9\xbe\x57\xd3\x1c\xac\x55\x73\x4a\x16\x4f\x65\x95\x6c\xfb\xff\xcd\xaa\xd9\xa7\x57\xf0\xeb\xb2\x4a\xf6\x35\x2b\xb7\xc1\x0e\xd7\xe5\x39\x19\x45\x69\x54\x42\xfb\xf7\xc8\xdb\x90\xbc\x30\xd9\x20\x23\x2b\x55\x39\x75\xb1\x12\x34\xa5\x22\x5d\x63\x55\x3d\x8b\x1b\xb4\x93\xb6\x12\x69\x42\xc8\x96\xe3\xf0\x99\x77\x31\xae\x52\x63\xf2\xbe\xe0\xe0\xeb\xe8\x26\xc8\x0e\x34\x08\x61\x6b\xc8\xb6\x43\xd2\x09\x07\x93\x1f\x7f\xe4\xf0\x7a\x7a\xe2\x3e\xdc\xf6\x68\x4d\x7d\x72\xf6\x20\x1a\x45\x53\x68\x16\xe2\xf7\x16\x45\x41\x2f\x2b\xb2\x10\xf0\x8c\x7c\xba\xd0\xab\x2e\x08\x8b\xa2\x6a\x30\x7f\x44\xc0\x35\x8a\x60\x3b\x91\x9e\xd0\x26\x7f\x14\x74\xe4\xed\x0d\x9f\x12\x91\x48\x8b\xc6\xea\xc4\xd2\x97\xc1\x40\x82\x9d\x74\x62\x52\x9b\x68\xef\x2c\xd3\x13\x7f\x7a\x87\xa1\xf4\xf0\x19\x62\xa5\xdf\x30\xb1\x6a\xcc\x2c\xb5\xef\x1c\x9a\x9e\x3e\xa4\xba\x7d\x45\x20\x8e\x26\x82\x78\xb0\x63\xa0\x4a\x19\x04\x36\x1f\x1c\x8f\x0a\x3d\xe6\x33\xd5\x1c\x09\xea\x1d\xd3\xf7\xd7\xa7\x27\x26\xa7\xa7\x0f\xc5\x69\x55\xcb\xc4\xaa\xab\xc7\x61\x30\x34\x68\x75\x16\xb1\xfe\xe9\xa1\xe9\xe9\xc9\x89\x69\x05\x9a\xf2\x6e\x58\x70\x19\x27\xc1\xb6\xc3\xf0\x42\xfa\x31\x5c\xa7\x11\xc2\x2e\x82\x06\xe7\x21\x69\xdc\xd5\x36\xfd\xe8\xec\x6c\x2a\x35\x3b\x9b\xba\xbe\xb4\x34\x9e\x59\x5a\xca\x34\xf6\xb4\x55\x63\x38\x27\x35\x9b\xc9\x8c\xc3\x79\x30\xa3\xb9\x7a\x96\x45\xff\xf9\xf5\x5f\xda\x86\x22\x42\x58\x8a\xe3\x05\xbc\x82\x25\xba\xc9\x61\x4e\xea\xbd\x3d\x82\xcc\x17\xf0\xf8\xa1\x43\xe3\xf4\xaf\xc6\x8a\x9f\x95\x34\xcf\x07\xd5\x6c\x62\x82\xc7\xc7\xd9\x09\xda\xac\x5b\x7f\xd3\x7b\x22\x48\x7b\xdb\x8d\x1b\x66\xdc\xc9\x03\xee\x4c\x01\x73\x9b\xda\x6f\x15\x92\x75\x5e\x0e\xea\xbc\xbc\xd3\x3a\x5e\x51\x5e\x8a\x0c\x0f\x47\xee\x80\x0e\xb7\x01\xce\xd1\xfa\x95\xe3\xf3\xbf\x16\x73\x0f\x51\xe5\x8e\x2a\xe8\x50\x7e\xa0\x13\xf7\x13\xa2\xf3\xb2\x8b\xfb\x0c\x85\xc7\xb1\xea\x02\xf5\x36\xb3\x2f\x9e\xcd\xd2\x36\x25\x3f\xf3\x99\x64\x86\x6f\xc0\xe7\xed\x0c\xdf\xfe\x7f\x84\x91\xc7\x1f\x1f\x11\x70\xca\xcd\x19\xa2\x63\xf8\x0f\x00\xa7\x25\xe3\xea\xa2\xcc\xe5\xa2\x9b\x62\x1c\x7b\x9e\xef\xca\xa2\x84\xc9\x99\x33\xb5\x48\x4c\xab\xfe\xe3\x91\x91\x66\x38\x11\x6e\x86\xc3\xf4\xed\xe5\x33\xab\xc6\x70\xc4\xb6\xe2\xa3\x23\xee\x91\x66\x38\x4c\xd7\x65\x86\xf9\xfc\x0a\xf4\x7b\x09\x38\x3c\x8f\xec\xf6\xea\xab\x30\x0b\x7a\x1a\x7c\x0e\x8b\xba\x50\x5c\xc0\x81\xfe\x58\x02\xcf\x62\xf5\xd6\xe5\xd9\xd9\x65\x32\x79\x65\x79\xf9\xca\x91\x13\x0b\xda\x89\x58\xec\xf0\xa0\x98\x8c\xcf\xe4\x67\x57\xe6\xf8\xdf\x59\x26\x64\x79\x36\x7b\xe5\xc8\x91\x2b\xcb\xf8\x21\x88\x9e\x59\x25\xf4\x07\xcf\x2f\xd3\x63\x3f\xb4\xff\x3d\x1b\x87\x07\xc5\x44\xec\x70\x2c\x36\x93\x27\x73\x7c\xfb\x6f\x7d\xdf\x7e\xc5\xe5\xf5\x1c\x70\xf1\xfa\xbd\xb8\x81\xfd\x2c\x66\x49\xdc\x85\x9d\xe3\x82\x29\x72\x1d\x6e\x99\x2e\xcb\x8c\x82\x9d\x3b\xe8\x1b\xe0\x8f\xf8\x25\xd8\x92\xb5\x4f\xac\x89\xb1\x88\x10\x19\xde\x1a\x8e\x08\x91\x98\x88\x85\x5a\xcd\xf1\xe9\xd1\xc1\x96\x5e\x2c\xea\xad\x89\x94\x42\x6f\xb6\x28\xd2\xad\x92\xf2\xdb\xf6\xea\x6e\x7b\xe6\xa8\x14\xa7\xca\xfd\xed\x29\x49\x9d\xda\x0b\x9d\x3d\xb3\xb2\x84\x17\x6b\x58\xcb\xdf\xfe\x03\xa8\xe7\xff\xcf\x48\x7b\x66\x66\x63\x11\x31\x12\xbb\x83\xe0\x6d\x36\x9c\xbe\x9d\xc6\xc2\xfa\x57\x7d\xcd\xf9\xb2\xd3\xe8\xb6\xa3\xe1\x08\x20\x6b\x94\xee\xb4\xf1\xef\x43\xac\x59\x11\x19\x74\xad\x33\x25\x03\xab\xca\x0a\xee\x20\x15\xd2\x0e\x91\xc4\x38\x96\x8b\x6a\xb8\xa8\x86\x61\xbd\x2e\xaa\x61\x95\x51\x76\x98\xe2\xa2\x29\x3a\x8e\xd3\xfe\xe6\x34\x27\x8c\x67\x78\xcb\xb1\xf8\xcc\xb8\xc0\x4d\xe3\xfd\xa5\xd2\x7a\xa9\xb4\x1f\x57\x35\x6d\x6e\xc6\xb6\x67\xe6\x34\x6d\x7e\x5a\x7d\x48\x9d\xc6\x8e\xad\x69\x76\x7b\xe7\x03\x29\x2e\xf2\x08\xc3\xcf\x79\x24\xc2\xa5\x3e\xc0\x22\xb5\x84\xd9\x59\x81\x4c\x8c\x8f\x4f\x20\x17\x87\xac\x7b\xdf\xe2\x48\x82\x4c\x16\x43\xee\xdc\x39\xd5\xb7\x9f\xf0\x62\xc0\x85\x82\x61\x82\x85\x0a\x3b\xb5\x23\x70\xab\xec\x1a\x38\x51\x12\x73\x9f\x58\x9b\xcd\xe5\xef\xa0\x7c\x6e\xb6\x7b\xb3\x7e\xd8\xdb\xc1\x73\x45\xfd\xe5\x1c\xc9\x47\xa3\x79\x92\x7b\x59\xef\xf0\x36\x34\x5c\xdc\xc2\xc9\xde\x51\xd3\x19\x2d\x9d\x2a\xe9\x08\x61\xf1\x5f\xce\x9a\xaf\x26\xb2\xb1\xb1\x09\xc1\x31\xe1\x57\x74\x59\xd6\x5f\x71\xab\xf8\x7b\x70\x7d\x01\xc0\x12\xae\xe3\x57\x00\xf5\x05\x25\x83\xba\x09\x30\xaa\xa6\xa8\x1b\x74\x8e\x90\x8b\x61\x99\x13\x74\xc3\xf4\x22\xe0\xbe\x7e\x78\x4e\x9d\x25\x73\xc3\xf3\xa7\x96\x27\xc5\xb8\x10\x8c\x06\x1f\x23\xca\x3a\xa3\xdb\x3d\xd6\xfe\xb7\x0d\xe2\xdc\x22\x96\xa1\x95\x8b\x42\x60\xe1\xda\xe9\xf8\xbd\xee\xf3\xc7\xe6\xa3\x26\x6e\x21\x84\x04\x84\x92\x92\x2a\x48\x82\xca\x19\xa6\x41\xff\x58\x37\x4a\xbf\xf7\xa7\x0d\xb2\x7a\x46\xdb\xda\x4a\x66\x92\x0d\x6c\xd5\x8d\x27\xf2\x79\x41\xc8\xe7\x9f\x30\xb4\xda\x13\xc3\xc9\xe4\xf0\x13\x35\xe4\xf3\x7b\xd5\xd1\x08\x60\x18\x30\x8d\xb2\x00\xc2\xa4\x6e\x74\x00\x77\xea\xb2\x0e\x3c\x10\x8d\xc3\x0c\x0c\xb5\xa6\xcb\x4d\xcb\xc2\x56\x73\xd3\x01\x13\x35\xcc\xb7\x2b\x2e\x0e\xd4\x30\x42\xa5\x79\xac\x9a\xd2\x08\xe6\x00\x97\x15\xa3\xc8\x07\x95\x66\x53\xf9\xc9\xa1\x8f\xc8\xcd\xa6\xdc\xe0\x6e\x4e\xd6\xeb\x93\x37\x56\xde\x3e\x5e\xaf\x8f\xb3\x35\x70\x05\xf4\xda\x38\xac\x05\xc0\xbc\xc1\xa9\xa6\x64\xaa\x1c\x2d\x47\x0d\x85\x39\xd5\x4c\xaa\xa6\x74\x12\xff\xc3\xf1\x8b\x1b\x4d\xf9\x23\xab\xd9\xb9\xc8\x07\x95\x13\x57\x70\x7d\x7c\xe9\x93\xcb\xbf\x98\x4b\xe7\xf0\x4e\xfb\xc6\xf8\x7d\xf7\xd7\xc7\xdf\xbe\x94\x2d\x72\x37\x27\x2b\x57\x7e\x52\x98\xff\xe4\xbe\xf6\x4e\x2e\x99\xed\xc4\x63\xd0\xf6\xa5\x10\x2a\xed\xd5\x61\xb8\xe9\xeb\xb0\xc6\x5e\xdd\x15\xec\x89\xfd\xd1\x5f\x25\xcb\xa6\x1b\xd5\xef\xea\xcf\xdd\x64\x29\x16\x05\xd4\x45\x47\xdf\x24\xb6\x05\x13\x89\xe6\xed\xb8\xf1\x40\xe9\xc4\x1d\xe4\xa1\xa5\xb7\x6f\x8b\x9a\x4b\xfb\xdf\xd9\xf1\xfb\xd8\x22\x90\xf3\xa3\x82\xc8\x20\x71\x66\x25\x25\xea\x1d\x9c\x8b\x45\xb0\x90\x18\x1e\x24\x6b\x11\x9f\x95\x4e\x5e\x29\x14\x5e\x73\x4a\x3a\xdb\x48\xf3\x4c\x64\x48\x8c\xd1\x3d\x5c\xe5\xd3\xfc\x87\x2f\x1f\x0a\x3d\xf0\x40\xe8\xd0\xe5\xfd\x27\x8b\x19\x96\xa2\x9a\x4e\xf0\xee\x5e\x6f\xfe\x6c\x1c\xa1\xa4\x6e\xce\x60\xce\x75\x5d\xab\x46\xe1\x63\x5f\x56\xda\xff\x15\x9f\x6a\xd4\xee\xa0\x5a\x03\x3b\xb8\xa6\x35\x37\x08\xd9\x68\x76\xf0\xc7\xba\xb8\xdf\x69\x86\x66\xcc\xfb\x63\xf1\x3a\xd3\x32\xd0\x8c\xd0\xee\x21\x8b\xb2\x23\xeb\x16\x21\x98\xea\xa1\xe9\x84\x95\x18\xb3\x64\x5d\x97\x5b\x20\x57\xb3\x35\xfe\x5b\x9d\x79\xff\x00\xba\x07\x9d\x07\x2d\xec\x7f\x62\xf6\x57\x40\xf5\x5d\xc1\xa2\x90\x12\xf7\xdc\xfd\xae\xcb\x03\x37\x76\x7b\x6c\x27\x93\x1c\x1d\x1c\xcc\x3f\x38\x91\xa0\x6f\x6b\xec\xd3\xce\xfa\xcb\x6c\x2a\x81\xd7\xbf\x74\xb6\x00\x75\x01\xb0\x17\xb6\x1c\x51\x4b\x0e\x47\x26\x87\x86\x4a\x02\x1d\x5f\xbb\xf6\xfc\xb2\x21\x68\xd4\x5d\xc6\x7f\x1d\x10\x22\x60\x5c\x19\xb2\x01\xa6\x53\x40\x46\x33\x0a\xd8\x16\x04\x91\xd8\x96\xa6\x59\xa4\x65\x6d\x55\xb7\x2c\xac\x61\x54\x63\x90\xcb\xa2\x60\x09\xa2\xd5\xbe\x5d\xad\x62\xd1\x72\xfd\x1e\xec\x99\x08\xa2\x11\x88\x83\x30\x0b\x92\x08\xe3\x65\x01\x87\x85\x54\xb0\x10\x1c\xc1\xb4\xa3\x54\xfc\x6c\xa4\xfd\x4a\xe4\x87\xcb\x4a\x7e\x74\xd4\x72\xb0\x43\x02\x63\xa3\xdb\xa3\x63\x01\x6c\x57\xab\xb7\x95\x4c\xf2\x50\x32\x79\x9a\x64\xf0\xf1\xf6\xdb\x47\x05\x61\xb4\xdf\x66\xb8\x1f\x99\x54\xae\x41\x6e\xd4\x20\x57\x36\x5d\x86\x14\xf7\xd1\x63\x22\x37\xe7\x62\xa6\x08\x8c\x1a\x9c\xea\x22\x52\x51\xa1\x4a\x40\xb9\xa2\xa7\xc2\x58\x9c\xcd\xe5\x66\x73\x5f\xcc\xe5\xf2\x62\x3c\x9e\x9b\xcd\xc5\xe3\x62\x9e\x7e\xe0\x87\x73\xb3\xb9\x61\x5e\xcc\x3f\x77\xf1\xc6\xc5\x1b\x37\x2e\xde\xc0\xef\x03\x8c\xcc\x93\x85\x78\xbc\x20\xe6\x87\x06\xc4\x7c\x5e\x1c\x18\xca\x8b\xf0\x39\x17\x19\x10\x73\x39\x71\x20\x92\xfb\x2f\x37\x2f\xdc\xbc\x70\xe1\xe6\x85\x9b\xee\xba\xf4\x92\x6b\xfb\x32\xba\x31\x09\x9c\x21\x0b\xa5\x0e\x59\x39\xed\x62\x1f\x00\xc7\x24\x66\xec\x6c\x9e\x61\xd2\xc4\x4f\x82\x43\xa5\xe6\x60\x85\xb6\x2f\xbf\x0d\x39\xe7\x02\x9f\x89\x25\x62\x91\x98\x98\x2b\xce\x49\x98\x30\x00\xa4\x8d\x8d\xa5\xb8\xf4\x32\x20\x55\xde\xc2\xf0\x68\xd5\x33\xfc\x3a\x7d\xfa\x3f\x3c\x90\x13\xa7\x46\xe6\x44\xe4\xc6\x8f\x12\x77\x4e\x05\x5c\x0e\x2f\x5e\x14\xeb\x52\x81\x76\x59\x1c\x87\x09\x8e\xe3\xd4\x12\x06\x83\x40\x79\x05\xab\x72\xc7\x4b\xc1\x82\x4a\xdb\xad\x93\x29\x7c\x38\x12\x0b\x9e\x8d\xa5\x3f\x96\xc4\xa1\xff\x46\x15\x90\xd0\xe4\x39\xc2\x42\xa7\x19\x62\x09\x7e\x4c\x1b\x8e\x84\x42\xcf\x8b\x72\x30\x44\x32\xfc\xd0\x90\xf1\x62\xbb\xc5\x22\xa5\xbb\xcf\xbb\xc7\x13\x77\x57\x84\x42\xec\xd8\x55\xdb\xae\x6e\x74\x1d\x64\x2d\xfa\xd9\xb6\x77\xfa\x14\xe2\xef\xd7\x9a\x13\xea\xf8\xec\x99\xaf\x43\xa5\x92\x5f\xc7\xdf\xe1\x8e\x36\x1f\x17\x46\xef\x3c\x6d\xd2\x7e\x62\xb8\x47\x0c\x4e\x4e\x87\x6d\x9d\xce\xb9\x6c\xe6\x3d\xfe\x54\x7a\xf1\xa4\x0d\x3a\x3d\x8e\xfa\xc0\xe6\x4c\x6f\xee\xa6\xf3\x78\xfb\x37\xde\x96\x3e\xb5\x08\xfd\x94\x73\xef\x15\x4f\xc7\x3a\xbb\x08\x0e\xa2\x12\x15\xd9\x58\x74\x01\x14\xad\x8b\x37\x1e\xbb\xef\xbe\xc7\x6e\x60\x1b\xae\xe1\xe6\xea\xed\xb3\x67\x6f\xfb\x9e\xc5\x1d\xf0\x7a\xaa\x70\x1d\x86\x0c\x66\x39\x39\x55\x81\x88\x4a\xa9\xdf\xab\x06\x71\x42\xdf\x5c\x5b\x21\x4a\x59\x21\xef\x2d\x2b\x8e\x2f\xbc\x4b\x5b\x59\x5b\xd9\x59\x9e\xcd\x28\x4a\x66\xf6\xa7\x95\x4c\x26\xe3\xa9\x9e\x54\xef\x9b\x5d\x59\x99\x75\x31\x7d\x3d\xde\xad\xae\x5d\x82\xf4\x46\x90\xfb\x41\xe2\xb1\x3b\xd3\xb0\xd9\x86\x25\x28\x60\x96\x19\xb0\xc5\x72\x06\x90\xb7\xbb\xc5\x58\x98\x3d\xd2\x65\xb6\x83\x19\x97\x14\x4c\xee\x04\xf5\xc4\xca\x80\x77\xdc\xf3\x5a\xa6\x5c\xa5\xca\x4d\x8c\x93\x58\xb4\x0f\x7e\x3c\x16\xdb\x8c\x4d\xc5\x9a\xb1\x34\xbf\x99\x88\xe1\x1a\x88\x61\x4f\xc4\xa6\x62\x9b\xb1\x58\x33\x96\xd8\xe4\xd3\x31\x90\xc1\x18\x26\x01\xdc\x07\x97\xdb\x88\xae\x30\x0c\x91\x95\xc7\x19\x88\x14\xb3\x8c\xd5\x55\xc3\xb2\xb1\x90\x29\x66\xaa\x8d\xd5\x8d\x55\x07\x3b\xfe\x78\x92\x1d\xc6\x5f\xd8\x33\xde\x05\x4e\x62\xbc\x8a\x05\x53\xe2\xb0\x0d\x98\x1d\x0d\xc6\x78\x8e\xe3\xb9\xc5\x31\x97\xe6\xa4\xa9\x39\x0e\x21\x8e\xa3\x55\x93\xf7\xf8\x70\x58\x27\x10\x4a\x8a\x92\x59\x91\x44\x2f\xfd\x14\x56\x18\x48\xfc\x4b\x49\x22\xf7\x13\xfb\x5e\xbb\x30\x14\x9b\x9a\xa6\xb3\xc0\x66\x2b\x16\x59\x8d\xc4\x62\x03\x11\x9c\x79\xed\xbe\x85\xa1\x50\x0c\x3e\xb7\x36\xe9\x97\xd3\x53\xc3\x11\xdf\xdc\xcd\xb8\x53\x3a\xe3\x5e\x71\x11\x63\x95\x45\x29\xea\xc2\xe2\x58\x20\x2e\x17\xff\xe4\x5c\xb3\xd9\x84\xa7\xfa\x45\x78\xf6\x2d\xbb\xdd\xc0\x36\xfa\xbf\x25\x47\x78\x75\x42\x4c\x24\x36\x38\x55\x90\x76\xcd\x28\x0d\xfa\xcf\x9f\x86\x40\x6a\x35\xb2\xd1\xec\x85\x7e\x00\x7c\x05\x4f\xae\xa0\xa3\x78\x12\x58\x15\x8c\x01\xdf\x2c\x6e\xb2\x48\x38\x16\x17\xc7\x10\x25\xd8\xd3\x4c\xb6\x6e\x67\x14\xfb\x0e\xb2\x95\x0c\x6e\xda\x76\x13\x8e\x7e\x7c\x63\xe3\xb6\x92\x71\x6c\x9b\x01\x12\x07\xd0\x21\x74\x08\x6f\xe3\x7f\xe1\xe2\x05\x73\x12\x88\xa7\x4a\xc5\x5c\xc6\x62\x98\x1b\xc1\x9c\xaa\x94\x4d\x09\x1f\xc9\xbd\x90\x7d\xe1\x85\xec\xbf\x89\xf1\xe9\xdc\xd9\xf9\x48\x2e\x6d\x7d\xf2\x4a\x3a\xbd\x89\x87\xdc\xe3\x63\x56\x3a\x17\x99\x3f\x97\x4b\x8f\x8e\x5f\x49\x9f\x4c\xd7\x7f\xf0\x78\x5b\x5e\x8c\x1b\xf3\xf1\xcc\x74\x6d\x0d\xa6\x2c\xe8\x03\x5d\x49\xc9\x9b\x78\x60\xeb\xc2\xbc\xbf\x05\xa4\x18\xcb\x78\x5d\xfb\x93\x2c\x8c\x70\xd5\xa2\x13\x0f\x9d\x8b\x81\x75\xe7\x09\x78\x1c\x3f\x63\xbc\x0f\xde\xbf\x66\xd7\xe8\xdc\x43\xff\x76\xf8\x4c\xb5\x27\xfe\xc6\xb5\x19\xfc\x4f\xe9\xe8\xa0\x3b\x7f\x0f\x7a\xba\xe1\x18\xdf\x4d\x53\x07\x23\x6f\xd0\x87\x5b\x0b\x36\xaf\x3d\xb8\x93\x76\x21\xd8\x3a\x6b\x17\xd7\x7e\x66\x5f\xb1\xb8\xaf\xf8\x1a\x0f\xc3\x96\xae\x13\x8d\xe4\x64\xa9\x34\x99\xfc\x2f\xc5\x7d\x85\xc2\xbe\x37\xee\xc6\xb1\xf5\xcb\xcc\x10\xff\xab\x0a\xc9\x45\x66\x88\x8a\xe3\xa2\xc1\x97\x57\xb0\x64\x62\xcb\xf9\x76\x74\xf0\x29\xe7\x2d\x41\xd8\xd6\xfe\xc7\xdc\xff\xc0\xd3\xd1\xf6\x17\x07\x03\x33\x73\xb3\x38\x8a\x8f\xc1\x8e\x2f\xc7\x93\x61\xa6\x75\xad\xd3\xba\x20\x8f\x60\x97\xae\x50\x36\xf4\x65\xcc\x58\x0a\xbd\xac\x2b\xd7\x25\xfb\xc0\xec\x2c\xb7\x7e\x8f\x76\xcf\x3a\xe7\xed\xfc\x3e\xc3\xea\x02\x64\xa2\x4b\xfe\x2f\x60\x27\xe8\xe6\x8a\x60\xb4\x8e\x2c\x7c\x0b\xe2\x25\x10\x4e\xd2\x07\x00\xa3\x5b\xf1\x0f\x7e\x30\x8e\x5b\xed\xa7\xe3\x96\x15\x67\x78\x6a\x2c\x97\x2f\x88\x62\x2e\x62\x50\x21\xe1\xe2\xaa\x17\xa5\x54\x38\x8e\xe7\x03\x20\xf3\x41\xd8\xcc\x46\x86\x4f\xa4\x33\xc5\x0f\x5a\xf9\xfc\x08\x39\xb5\xba\xb1\x6a\x6b\x98\x65\x7a\x11\xf2\x44\xa9\x14\x2f\xbf\x83\x18\xab\xab\x3e\xde\x0e\x7a\xaf\xc6\xba\xeb\x84\x42\x27\xce\x91\x40\x1c\xcf\x0f\x18\xe5\xdb\x20\x1d\x46\xde\x71\x39\x37\x4b\xe2\xa3\xe1\x54\x59\xcd\xe3\x68\x8e\x1e\x6c\x5c\x5e\xce\x5d\x3c\x79\x24\xc1\x73\xd2\x89\xa3\xf7\xe7\x96\xfd\x3e\x21\xda\x4e\x86\xb5\xcf\xc9\xba\x59\x59\xc0\x4a\x1c\x77\xcc\xfc\x1c\xbb\xe7\x4f\x90\x75\xe3\x85\xc1\x41\x65\x90\x7b\x01\x13\x16\x69\x6f\xa7\xf9\x16\x21\x2f\x0c\x72\x0a\xc7\xbd\xf0\x32\xf3\x0b\xd9\xd8\x61\x18\x45\xff\xe7\xe6\x8a\x01\x5f\xac\x63\x8c\xc5\xc8\xb3\x28\x45\x2f\xa7\x42\x58\xac\xec\x92\xca\x98\xf3\xe9\xcc\xf2\x65\x42\xa5\x81\xdb\xbe\xc0\x75\x67\xdd\xca\xaf\x2d\xcf\xae\xd4\x8e\xaa\x19\x6d\xaf\x38\x79\x0f\x43\x8a\xf7\xa2\xd6\x4b\x9d\xe0\x25\xc3\x2c\x48\xaa\x50\x30\x30\x72\xb0\x25\x10\x7b\x5b\x10\x70\x55\x10\xda\x5b\x8e\x6d\xdb\x8e\xe3\x38\xa4\x56\x6b\x30\x4e\xef\xef\x2d\x9f\x64\xa0\x23\x8b\x44\x50\x02\x8d\xa3\x7b\xe1\x3e\xc3\x33\x29\xb0\x15\x4d\x76\x1f\x4c\xd8\x31\x21\xce\x99\x6e\xbc\x49\x62\x1e\xb3\xe0\x69\x77\xd3\x11\xd4\xe9\x39\x7f\x39\x95\x4e\xc3\x8b\x8e\x38\xf7\x6d\x7b\x6a\xc2\x9a\x9a\x18\x8e\x6c\x45\x86\x27\xa6\x2c\xf6\x82\x4f\xd6\xd4\x04\xb6\x32\x3c\x95\xef\xf8\xf7\xc2\xca\xf9\x1e\xb0\xbb\xfc\x62\x76\x6e\x70\x2c\x3b\x3b\x98\xa6\xd3\x48\x7a\x70\x36\x3b\x36\x38\x97\x1d\x1b\x9c\xcd\xc2\xbc\x22\x66\x67\x07\x59\x6c\xed\x32\x12\xc1\x06\x94\xa1\xb3\x0a\x20\xa6\x81\xab\x6b\xb1\x63\xbb\x55\x39\x30\xe8\x7a\x46\xa0\x7f\x5b\x1f\x7c\xb4\xa8\x6a\x8f\x05\xa3\x41\x21\x2e\x4c\xae\x9c\x9a\x1f\x9e\x23\x73\xf7\xc2\x12\xfd\xc8\x24\x11\x3e\x13\xbf\xf7\xda\x42\x40\x28\xea\xc4\xb0\xb4\x5b\x8e\xf6\xb2\x97\xc2\xe8\x7b\x2e\xa2\x54\xba\xf0\xa3\x87\xf7\x3c\x1b\xae\xa8\x72\xa9\xe7\xe1\x20\x0c\x91\x7c\x6b\xd7\xd3\xe1\x7f\x8e\x39\x14\x83\xd5\x94\x3d\x19\x12\x67\xaa\x9c\x50\xe9\x29\x7a\x39\x1c\x4e\x85\x43\xf1\xdc\xc5\x53\xb9\x53\x81\x9e\x0a\x5e\x17\x0a\xa7\xc2\x61\xf6\x4d\xae\xd5\x5f\x0d\xf6\xe5\x44\x20\x1c\x94\x17\xb0\x81\x9b\x1f\x17\x0e\xfc\x14\x6e\xb6\x9d\x9f\x3a\x20\xf4\xb7\x83\xa7\xbd\x59\x59\x34\x61\x40\x54\xdc\x41\x61\x94\x7b\xae\xf3\x2b\x6f\xce\x76\xd8\xed\x1e\xf5\xb7\xa5\x35\x9f\x4c\xa7\x93\x9f\x84\xbb\x9f\xe0\x8f\xf7\xb7\xa5\xfb\x5c\x85\xd1\x30\x4a\x81\x9e\x23\xc8\x40\xdc\x24\x1b\x40\x13\x65\xe8\x10\xf5\xae\x03\xf7\x12\x6e\x3a\xfb\x97\x73\x47\x7e\xd7\xd9\x7f\x24\xb7\x7c\xc1\xb7\xdf\xdc\x75\x84\xed\x7b\x6b\x80\x27\xaf\x8d\x23\x84\xcb\x15\x90\xa5\x55\x40\x47\x60\xb3\xf6\x11\xcc\x44\x6a\x6c\x1f\xd5\x8c\xca\x86\x36\x5f\x34\x8a\xf3\x10\x0c\x98\x35\xdb\xd5\xad\x5a\xbd\x5e\xdc\x1f\x68\x36\x03\xfb\x8b\x6e\x20\x42\x57\x6f\x0d\xa1\x61\x96\x7f\x2f\x1b\x9c\xee\xad\x08\xe6\xf7\xac\xb9\x36\x6c\x62\x93\xdf\x06\xcd\x74\xe9\x6e\xaa\xab\x53\xaf\xdd\x5a\x05\xed\x75\xe1\xbb\xa9\xae\xcc\x9f\xb4\x03\x32\x34\x44\x7f\x27\x53\x12\xe7\x8a\x30\x61\x4f\x86\xe1\x2a\xfa\x22\x5b\xec\x8d\xf2\xb7\x67\xbe\x3e\x9c\xe1\x3f\x3c\x9a\x07\xe1\xe5\x74\xd9\x2a\xe4\x32\x7c\x1d\x3b\x07\x67\xbe\x3e\x0c\x33\x52\xf6\x3c\x48\x3c\xa7\xd4\xe8\xbb\xf8\xcc\x13\xf1\x9e\xf8\x3d\x11\x58\x64\xe6\x51\x85\xad\xe1\x6e\x36\x8f\xce\x09\xba\xa9\x4b\xba\xa1\x2e\x56\x82\x59\x2c\xf0\x05\xbe\x5c\x31\x2b\x8b\x9c\x2e\xc8\x5e\x13\x3c\xe8\x5f\xec\x1c\x5b\x5e\x3a\x51\x90\xc6\xa6\xf2\x87\xf3\xf9\x31\xa9\x30\x40\xe6\xdb\xd5\x79\x42\x5e\xfc\x42\xab\x35\x04\x12\xe1\x73\xa0\xf8\x7d\xe6\x05\x2a\xd1\xbc\x20\x15\xc6\x06\xf3\xf9\xc1\xb1\x02\x9e\x1f\x3d\x3e\xd7\xfe\x33\x3c\x36\x77\x7c\x94\xaf\xd7\x74\x1f\x1e\x79\xaf\xbd\x9d\x73\xed\xd1\xfb\xba\x12\x97\xaa\x1b\x32\xe7\xb3\x47\x27\x3b\xf6\x68\x48\xa0\x77\x6d\xd2\xcb\x01\x7c\x3f\x73\x8f\xd4\x6a\x9a\x6b\x96\x76\x2e\xad\xcd\xe6\xf2\x44\xbb\x4f\xdb\x97\xcf\xcd\x4e\x18\x46\x1d\xc4\x9c\x7f\x60\xdb\xb6\xbd\xd9\x6b\x9a\x26\x04\x8c\xd3\xe3\x53\xa3\x61\xd4\xbb\x3e\x47\x01\x2d\xc3\x57\xbf\x99\x0a\xcb\x7a\xa7\x72\x3a\x1a\xcb\x15\x3a\x9e\x74\x41\xe6\xb2\x58\xc0\xb5\xed\xd7\x42\xed\x2f\x4d\x66\x02\xac\xf2\xa2\x94\x3f\xbe\xc4\xbf\x7e\xfb\xe4\xe8\xca\xd1\x56\xad\xb6\x0e\x55\xc7\x27\x94\xfc\x90\xa6\x0d\x15\x43\x53\xd2\xaf\xce\xe4\x02\xf9\x7c\x3e\x1f\xc8\x6a\x20\xa3\x0b\xb8\xe5\xda\xc6\xa7\xd1\x42\xbf\x7d\x5c\x01\x03\x79\x1c\xfb\xed\xe3\x49\x03\xf0\x57\x4d\x5d\x90\x05\xd5\x7c\xfb\xd2\x5c\x69\x9e\xcc\x0e\xcf\x9d\x9a\xdc\x1f\x4f\x45\xd3\x11\xee\x86\xa6\x3c\x0c\xf3\x64\xc3\x30\x9e\x30\x9e\x78\xc2\x30\x5c\xb3\xf9\xc7\x67\x2d\x53\x9b\x1c\x2b\xa6\x82\xf3\xd7\x4e\x8d\x32\xbb\x79\xfb\xf3\x25\xa3\xa2\xe4\xaf\xe4\x4b\x46\x05\xa1\x88\x0f\x77\xae\x3f\x06\x09\xf0\x4f\x3d\x58\x00\xc6\x62\xcc\x22\x8d\x38\x17\x3f\x09\xb0\x00\xec\x6a\xb5\xba\x0d\xa0\x65\xd5\x6d\x48\x9a\xde\xae\x76\xb2\xa4\xfd\x1b\x8c\xaa\x55\x04\xdc\xe0\xac\xbe\x1e\xce\xb7\x46\xfb\xef\x9e\xcc\x36\x1a\xd9\x27\xb1\xa0\x3d\x45\x77\x9e\x02\x5b\x75\x1d\x35\x71\x0d\xa2\x4b\x50\x52\xe7\xea\xdb\x35\x4c\x6a\x7e\x7d\x39\x00\xd8\x6e\xa6\xdc\x49\xf8\x45\xf6\x16\xa3\xc1\x6d\x55\xb7\x3a\xf9\x24\xb4\x9c\x16\xae\x61\x8b\x96\xb3\x82\xa5\x7a\xad\xd6\xaa\xd5\xfa\xdb\xe2\x12\xa7\xa9\x18\xd1\x76\xb4\xff\x0e\x0f\x3c\x49\xf5\xae\xec\x53\xda\x53\x3d\xbc\xbc\xc0\xed\x5c\x52\x4d\x95\x53\x39\x89\x93\x4c\xa9\x13\xdd\x56\x3b\x77\x2e\xeb\xbd\x7e\x01\x5a\xf1\x4f\x7c\x47\xb0\xe5\x35\x08\xa3\x7b\x01\xcb\xf0\x39\xc6\x9b\x27\x61\xd5\x6c\xfe\x51\xf6\x0e\x7a\x32\xfb\x8b\xec\xcd\xe5\xdf\xfb\x7e\xe4\x1a\x79\xdc\xc8\x75\x14\xed\x4a\x61\x74\x31\xc6\xf5\x27\x9f\xcc\x7a\x2f\xfc\xa4\xef\x43\x2f\x6f\x1f\x40\x9e\xaa\x18\xd1\x02\xb3\xd8\x86\x37\x37\xcf\xab\x81\x1d\x7c\xaf\x77\x8e\x29\x61\x60\xdf\xbb\xea\xd2\x04\x82\x2c\xe3\xd5\xdd\xe5\x98\x81\xd8\x39\x16\xb5\x46\x47\x95\x3c\x19\xa0\xbb\x98\x6c\xd0\x65\x78\xa3\xb9\x61\x59\x1b\xb8\xbe\x61\x6d\x5b\x1b\xda\xe6\x86\x66\x55\x2d\x6d\xe3\xae\xe5\xe8\x41\x40\xd6\x82\x72\x0c\x16\x25\x87\x6d\x6b\x43\xd3\x36\xac\x2d\x6d\x63\x43\xc3\xb6\xb6\xd1\xde\xde\xd0\xac\xdb\xd6\x86\xb6\xa5\x6d\x78\xb6\x5e\x0f\x57\xb4\x8b\x8f\x68\x14\x84\x90\x51\x10\x2c\xe0\x4c\x80\x3f\xec\x90\x0d\x4d\xab\xb9\x3a\x92\x8d\x5a\xb8\x81\x89\x17\x4b\x9c\xb8\x0b\x42\x3d\x33\x33\x7c\x18\xb6\x7f\xc2\xdc\x57\x24\xe3\x83\x69\xc8\x30\xbf\x55\x10\xb5\x90\x8d\x49\x07\x33\x02\xed\xa2\x27\x70\xf7\xbf\xe5\xfb\xe1\x61\xd8\x32\x84\x87\x0f\xc3\xf6\xb8\x5b\x1c\xc2\xa8\xea\x8e\x63\xb0\x5d\x0b\xb2\xc9\x84\x44\x7d\xb1\x62\xea\x9d\x18\x3c\xfc\xb6\xc5\xcd\x13\x4a\xd9\x58\x5d\x35\xb4\x63\xc3\xb3\x23\x0f\x2d\x9d\xbc\x76\xed\xe4\x29\x76\x78\x75\x63\x75\x41\x39\x70\xfa\xda\x07\xae\xc1\x58\xff\x28\xb2\xf1\x55\xb0\x49\x44\x19\xce\xa3\x64\x06\xe9\xfa\xcf\xc1\xe0\x3b\x7e\xfc\x13\xb0\xc5\x3f\x01\x6f\xed\x7f\x0d\x6f\xec\x77\x16\xbe\xea\xe6\x23\x43\x5c\x9d\xba\x82\xd9\x03\x8e\x8e\x67\xe1\x2c\xba\x7d\x07\x6c\x7f\xe3\xb8\x3b\x94\x7a\x9f\xc3\x24\xfd\x15\x2f\xf3\x9c\xdd\x68\xe4\x9e\xd4\x9e\xf2\x3d\x8e\xbd\x5c\x28\x43\x30\xe6\x75\x43\xe7\x65\x89\x53\x77\xb2\xe7\x7e\x83\x7c\xeb\x5c\xd6\xc1\x56\xf6\xdc\xf6\x1d\x74\x2e\xeb\x40\xb9\x16\xf0\x82\x0f\x31\x0e\x4b\x30\xd6\xa9\x26\xae\x3b\xd9\x73\xdf\x22\xbf\x71\x2e\xdb\x74\xb2\xe7\x30\xda\x3e\x97\xed\x9b\x0b\x68\x9b\x79\x9d\x37\xe9\x04\xd0\x6d\x04\x1e\x68\xff\xdd\x93\x1d\x2e\xca\xe7\x60\x0c\x45\x20\xbb\x48\x66\x0c\x99\x0e\x21\x38\xc2\x1e\x02\xe7\x0e\xca\x7a\xcf\x41\x00\x3d\x09\xdc\x95\xee\xf9\x5d\x9e\x46\x6c\x13\xf2\x87\x9d\xf3\xff\xc8\xff\xdc\x08\xb8\x8e\xff\x93\x8b\x09\xaf\xee\xe6\xe3\xa1\x32\x4d\x01\x64\x16\xa9\xb2\x28\x99\x12\x76\x89\xf8\xb0\x09\xd2\xcb\xe3\xb0\xfd\xcc\x91\xf6\xf6\x91\xb9\xc4\xfe\xfc\xf1\xfc\xfe\x44\xfb\x4f\xb0\x46\x15\x5f\xcb\x47\x18\x72\x79\x6e\x55\x14\x57\xe7\xe6\xf8\xfd\xa3\xa3\xfb\xf9\xf6\xef\xdb\xf6\xf2\xda\x1a\xcb\x4f\x64\x32\x5a\x00\x85\x20\x06\xb6\x00\xbe\x42\x5e\x30\xa9\xfc\x27\x1b\x6c\x0a\x31\x74\x49\x4c\x71\x6a\xa5\xac\x72\xa6\x28\xa4\x38\x9c\x9c\x9e\x3e\xfc\xd0\x43\x4f\x0b\x57\xe9\x3c\x72\x55\xf8\xed\x5c\x21\x2d\x08\xd5\xfd\x43\x43\xff\x78\xe6\x3e\x3c\x78\xdf\xcc\x43\x0f\xbd\xed\x45\xf6\xdd\x8b\xd7\x16\x9f\x2e\xa7\xb5\x35\xad\xba\x3f\x3d\x96\x4e\xbb\xb6\x2b\x2f\xfe\x87\x87\xd8\xcc\x8e\x46\x6f\x32\x06\x01\xa5\x5c\x09\xb9\xd1\xb0\x0c\x19\x45\x3b\x75\xed\xda\xa9\x93\xd7\xae\xe1\x09\x4d\xd3\x18\x4e\xc4\xaf\x5d\x7f\xff\xf5\x6b\x1f\xb8\x66\xd5\x6c\x4d\xdb\x23\x07\xa0\x44\x45\x65\x95\x13\xd5\x94\x04\x8f\x48\x07\xbb\x1b\x9d\xbc\x5e\xfa\xd6\xbe\xb7\x94\xbe\xb5\xef\xe0\xc9\x4e\x56\xe2\xc9\x83\xfb\xbe\x55\x6a\xd0\xcd\xf5\x7f\xd8\x59\x4b\x76\x97\xe9\x06\x5e\x27\xdd\x18\xed\xce\x6a\xf0\xec\xd4\xf5\x93\x87\xe7\x1e\x3d\x3c\xf7\x57\x53\xd7\x13\x50\xe4\x4f\xcf\x1d\x3e\x79\x7d\xaa\xfd\x3b\x53\x7f\x45\x77\x3c\xf6\x7a\xa6\xcf\x7a\x3a\xe6\xff\x99\xb8\x0d\x6e\xec\xf6\x18\x26\xaf\xea\x84\xf3\xe5\xff\xec\x00\xcf\x71\xa1\x87\x3d\xb9\x6b\x7c\x73\xd7\xfe\x38\x66\xab\x48\x37\x15\x88\x2a\x15\x02\xd9\x22\xb9\x77\x1d\x97\xe6\xde\x58\xbb\x7d\xbb\x37\x1f\x88\x10\x42\x3e\x0d\x5f\xa1\x5d\x75\xa9\xaf\x5e\x57\x90\x2d\x59\x12\x5d\xbe\xf6\xaa\xf1\x9f\x49\xe5\xb2\x54\x2e\x8b\xf4\xb5\x67\xbd\xed\x16\x3b\x03\x5e\x1d\x3d\x87\xe1\x46\x31\x49\x47\x90\x8d\xd0\xab\xb4\x80\x83\x45\x6a\x13\xa3\xdd\x95\x0b\xdb\x2d\x4d\xdb\xd8\xab\xd6\x3a\x21\x3d\x36\xe5\x71\x9f\x4d\x79\x65\x0f\xb6\xf3\x77\xf1\xe6\xe9\xc9\xc9\xd3\x26\xbf\x52\xeb\xe1\x24\x3f\xb5\x2f\x7c\xcf\x3d\xe1\x7d\xa7\x4a\xbf\xd9\x4b\x48\x1e\xf0\xc5\xf4\x26\xdc\x98\x5b\xb3\xc7\x6a\xc3\x8c\x1e\x7f\xd3\xb5\xd6\x38\xeb\xd6\xad\x1e\x3b\x4d\x2f\xbe\xb7\x84\x94\xae\x64\xde\x9f\x81\xdc\x8d\xfb\x5c\xc0\x66\x45\xc7\x3f\xee\xcb\x3a\x7e\x90\x99\x42\x21\x95\xb4\xfd\x65\x71\xe4\x47\x7e\x64\x24\xf5\x8a\x6f\xb4\xb1\xd7\xef\xb0\x1e\x4a\x7e\xe6\x33\xc9\xae\x5f\x8f\xd9\xf0\x26\x99\x1c\xee\x32\x30\xf7\x71\xa2\xb1\x4c\x70\x95\x7e\x15\x9e\xc4\x05\x2c\x14\x15\xdc\x4c\x4c\x24\x6c\x3a\x76\x37\xe8\x26\x37\x9b\x33\xa6\x0f\x08\xed\xdb\x78\x33\xc0\x35\x18\xa2\xe2\x70\xc4\xa6\xea\x98\x1d\x19\xce\x53\x35\x6d\xfd\xc0\x74\x38\x39\x69\xe1\xcd\x7f\x81\x7d\x36\xa4\x1d\x34\x81\x72\xa8\x48\x35\x92\xd2\x5e\xee\x88\x38\x66\xbe\x0a\x55\x30\x55\xc1\xec\x4c\x7c\x30\x0d\xe2\x46\xaf\x8f\x62\x61\xe1\x87\x16\x22\xc3\x53\xc1\x54\x2a\x75\x25\xbe\xb4\x14\xdf\x3f\x74\x64\x7e\xfe\xc8\xd0\x4b\x7d\x3e\x8b\x85\x87\xf6\x2f\x44\x06\x62\xff\xbf\xe9\xd4\x8d\xe9\xd4\xdb\xe2\x87\x0f\xc7\xf7\xdf\x47\x4f\xbc\xaf\x6b\x23\xdd\x81\x76\xc9\xdf\xad\x4d\x0c\x02\xf8\x6e\xcd\xb0\xed\xda\x5d\xaa\x5e\xb7\xaa\x56\xad\x3f\xde\x71\x96\x6a\xe3\x8a\x6c\xb8\x31\xa9\xf4\x9d\x7b\xb5\xda\xb1\xa5\x64\x66\x57\xb4\xcb\xcb\x17\x6f\x08\x7b\x36\x00\xa3\x8c\x42\x56\x66\x97\x2f\x93\x1b\x17\x57\xf7\x6e\x88\x7f\x1e\xa0\x63\xe0\x10\x43\x73\xb8\xfb\x18\xe0\x5f\xb5\x45\x1f\x16\xb3\xc2\x15\x5a\x05\x10\xb1\xe6\x66\xf3\x7b\xb7\xab\x31\x14\x17\xc5\xf8\x50\x77\x7c\x0c\x89\xf9\xbc\x48\xe7\xca\xbd\xdb\x18\x40\x08\xdd\x03\xcf\xc8\x24\x9a\x46\xa8\xc4\xfc\x72\xaa\xa2\x2a\x47\xb0\x52\xe4\x18\xca\x32\x04\x3f\x9a\x95\x7c\x89\xc5\x75\xd3\xd9\x0a\x7f\x27\x1c\x36\xc2\x89\xf0\xc4\x64\x6c\xfe\x8d\xf3\xb1\x7c\x3a\x9c\x08\x1b\xe1\xf0\xa3\xb8\xd8\xfe\x4e\xde\x59\x5d\x77\x84\xfa\x3f\x62\x87\x32\x23\xa1\x91\x63\xf1\xf8\xb1\x78\x28\x3e\xc6\x7e\x73\xed\x7d\xab\x4e\x7e\xdd\x11\x36\xfb\xf2\x32\x19\x3f\x07\xad\xe0\xd5\x7a\x22\x48\xa7\xab\x3a\x21\xe2\x9e\x1d\x30\x46\x70\xb3\xfe\xd6\xbd\xaf\x16\x47\xeb\xae\x8d\xb5\x97\xe7\x34\xdd\x8d\xba\xe8\x07\xd9\x49\x9a\xd8\x21\x02\x11\x48\xc3\xcb\x03\xc7\xef\x02\xad\x90\x6a\x7e\x1d\x97\x15\x72\x7c\xb9\xe5\x2c\xff\x02\xf4\xee\x7e\x8e\xcc\xa4\x89\x05\x4d\xd3\xea\xdd\xb2\x76\x36\x36\xaa\x84\x60\xcb\x5f\x94\x0f\x4b\x7c\xcf\xf6\xf5\x19\xaf\x6b\x0c\xf9\x4d\xec\x4c\x84\x0c\xb4\x95\x90\xa6\x7f\x32\x0c\xf6\x94\x29\x74\xfd\xbf\xc9\xde\xd2\x68\xfb\x9a\xdd\xa2\x88\x6d\xd3\xf6\xa1\x3e\xfb\xb7\xc7\x75\x3a\x02\x79\x9b\x54\x83\x07\x2b\x93\x44\x85\x84\xe4\x62\x37\x67\x4b\x50\x4d\x8c\x6c\xfb\xe4\xf5\xf1\x5c\x7c\xd5\x70\xdf\x6c\xdb\xb1\xec\xaa\x75\xfd\xe4\xe2\x4c\x6e\xbc\x60\xac\x62\xd2\xd9\xb5\xec\x2a\x8c\x89\x23\xe8\x08\xc8\xab\x31\x24\x43\x7c\x5f\x27\x0d\x4c\xe5\x5c\xc8\x1f\xce\xa8\x80\x4c\x22\x81\x4a\x60\x94\x57\x30\xa0\x4c\xe2\x86\xae\x67\xf2\x71\x65\xe1\x2f\xc7\xf1\x85\xf1\xc5\xb1\xb1\xc1\xc8\xa7\xe3\xca\x82\xa3\xeb\x99\xd7\x87\x87\x72\x69\x91\x9e\x70\x62\x9f\x96\xcb\x4e\x96\x95\x05\x27\x3b\xde\xfe\xec\xf8\xe2\x48\x78\x36\x18\xfa\x34\x3b\xc2\xbe\x0d\x84\xf3\xf1\x50\x8f\xec\x92\x40\x22\xf0\xf4\x00\x4f\x30\xe0\x43\x1a\xcb\x18\xda\x43\x15\x35\xb5\x5c\x31\x85\x11\xec\x35\x67\x47\x6b\x2c\x2e\x9e\x3e\xa0\x2c\x94\xf6\xd9\x5a\x8b\xed\x38\x8b\x8b\x3b\x8e\xd3\xd4\x17\x4f\x2e\x3d\x34\x32\x3b\x7c\x4c\x33\x4a\x0b\x4e\xfb\x36\x21\x35\xdf\x67\x7d\x11\xf5\x70\x49\x33\x0c\x61\x2a\xdf\xeb\x80\x20\xbc\x07\xf8\xbe\x6d\xdb\x96\x56\xf5\x21\xf0\xef\x54\xab\x1b\x1b\xce\x1e\x14\xb9\xae\x7d\xa6\x0e\x58\xdf\x13\x2c\xbf\xad\xc3\xd4\xa1\xa8\x3a\x2f\x0b\x0a\xf0\x24\x71\x2c\x28\x5f\x16\xe8\xbb\x1b\xa1\x2f\x63\x58\xb7\xe7\x82\xfc\xd1\xed\x34\x9f\xe6\x37\x1e\x7e\x4e\xbb\x79\x21\xa3\x58\xe0\x74\xc0\xb7\xd3\x7c\xbb\xce\xa7\x89\x86\x05\x27\x1a\xfc\x08\x9f\xd9\x79\xee\xea\x85\x9b\x8e\x92\xd9\x5c\x5b\x9e\x5d\xf9\x7b\x24\x07\x86\x3b\x32\x41\x1f\xb6\xd7\xee\xae\x4d\xba\x96\xa1\x90\x97\x7f\x66\x6f\xbd\x34\x92\x48\x8c\x34\xe9\xe6\xdb\x44\x20\xa4\x5d\x23\x35\xe2\xa6\x87\x27\x46\xda\xf0\x05\xb6\x46\x12\xed\xd6\xf6\x76\xc3\x21\xdb\xdb\x04\x6c\x19\xfe\x18\x08\x98\x19\x38\x80\x4d\x30\xfb\x9c\x50\x76\xa3\xe1\x74\xa5\x99\xc6\xf1\xe3\x8d\x13\x5f\xe8\x93\x67\x3c\xbf\xe0\x10\xe0\x30\x9e\xa3\xe3\x91\x76\x10\x08\xe7\xa6\xee\x42\xa7\xb0\xb8\x2b\xa1\x13\x6b\xe7\xd2\xa6\x2f\x4a\x15\xa3\x6c\xbe\xea\x0a\xd4\xe2\xd3\x6f\x18\xa8\xb6\x09\x7e\x66\xed\xc1\x67\x9e\x79\x30\x57\xc8\xf0\x24\x16\x21\x4e\x64\x58\xc8\x0d\xcd\x2e\x08\x59\xe1\x41\xbf\x54\x72\x54\x4b\xf3\xe2\xeb\x47\xc5\xa3\x0f\x7f\x9e\x1b\xa1\x3f\x58\x7b\x66\xa8\xc2\x67\xb4\xc8\xb0\x36\x1c\xb1\x26\x17\x8e\x8f\xfc\xca\x9e\xab\x11\x1b\xe3\x1a\xe0\xfe\xd7\x60\x7d\x16\x11\x4a\x8c\xe0\x79\xbc\x8c\x45\xce\xcd\x64\x29\x09\x05\x43\x5f\x14\x1b\x4a\x59\xc1\x4a\x59\x79\x17\xde\x72\xb6\x1c\xbc\xd5\xde\x69\xca\x8b\x98\x87\x63\x58\xb9\xa1\x11\xb2\xa1\x39\x3a\x82\xd5\xa3\x86\xff\x14\xff\x42\xa7\xbc\x30\x2d\x2e\x8b\x39\x33\xc4\xa9\x82\x6c\x94\xb8\x92\x29\x65\xf1\xaf\xee\xd3\x45\x7e\x9f\x2e\xfe\x42\x1c\xd7\x47\x1e\xde\xc2\xfb\xe2\xed\xbf\x9d\xfb\x5c\x31\x8b\xf7\xc3\x61\x7e\xdf\x1b\xa6\x7f\x6a\xba\x58\x5c\x1f\x98\x7e\xdd\xdb\x8e\xc5\xac\x0e\x96\x56\x0d\x0d\x41\x76\xde\x22\x28\xa7\xfd\x31\x4c\x6d\xcd\x1f\xc1\xe4\x6c\x6f\x7a\xe1\x4b\x2e\x16\xd2\x5f\x02\x16\x55\x8e\xae\xaf\xe1\x38\x56\x65\x96\xfe\xa4\x03\x82\x9e\x58\x4a\x89\x4b\x98\x81\x24\xeb\xf8\x4f\xb9\xa1\xd8\x85\x7b\xeb\x19\xc5\x59\x1d\x8f\x9e\x1e\x8b\xa5\xdb\x8f\x2b\x19\xc7\x99\x5d\xd6\x7e\x32\x96\x09\x4f\xd5\x95\x4c\xc3\x19\xab\x47\x43\x83\xd7\x41\x00\x69\x76\xe5\xaa\x56\xa7\x0e\x16\x07\x63\x74\x6a\x11\x27\x71\x4f\x1d\x2f\x51\x11\x72\x9d\xd6\x51\xe3\xd3\xed\x6d\x28\x7f\x85\x38\x89\x89\x04\x14\x9f\xe1\xeb\x4e\xa7\x70\x56\xf6\x67\x20\x36\xac\x80\x50\xd2\x5f\x8e\x48\x6b\x31\xbb\xd5\x08\x9c\xbe\x28\xd6\x94\x8c\x6d\xcf\xae\x10\xbc\x12\x4c\xc6\xd7\x05\x87\xd5\xa2\x65\x63\x49\x57\x66\x6a\xb6\x3f\x11\x97\x2c\xdb\xad\x29\xee\x8b\x19\xfd\x77\x10\x01\x49\x65\x65\x09\x1c\xf2\x0b\x58\xa9\x98\x7a\x25\x87\x45\x53\x08\xab\x39\xa8\x77\x01\xeb\x52\x16\xeb\x01\x7a\x73\xa5\x2c\x0e\xe3\x2b\x6f\xcf\xdf\xf7\x53\x92\x1c\x9a\x0c\x4a\x49\x2c\xc6\xe5\x7d\xe5\x7d\xcb\xe2\x23\x9b\xd3\x87\xc3\x9a\xa6\x0d\x4c\x8d\xad\x4c\x84\x53\xf2\xc8\x08\x97\x6a\xae\xe7\xad\x49\xe9\x9d\xa9\xfc\x40\x30\x36\x5e\x1a\x9a\x1f\x2c\x5e\xb6\x89\xae\x7e\xfd\xab\x52\x0e\x27\x53\xf2\x04\x37\x14\x95\x27\x60\x1d\x37\x70\x03\x6f\x83\xcf\x41\x83\xb9\xb7\x0b\xdf\x9d\xc3\x59\xac\x0b\x45\x55\xd0\x39\x5f\x47\x54\x5c\xeb\x16\x6e\xe4\x56\xdf\x94\x51\x26\x93\x38\x39\x9a\xe5\x0f\x66\x96\x0f\x9c\xf9\x92\xdb\xb9\x0b\x60\xe9\x7a\x20\xb7\xaa\x64\xde\x9e\x9c\x1c\x2d\x24\xc7\x16\x16\x2e\x08\xac\x3f\x04\x66\x04\xf3\xdb\x09\xd8\xba\x3f\xdd\x1b\xa5\x65\x32\xc8\xac\x3d\x63\x75\x00\xc2\x52\xd3\xb4\xdb\x74\x02\xe9\x8f\xd3\xc1\xab\x9a\xb6\x0e\xaf\x5b\x99\x9e\x38\x1d\xaa\xe6\xf9\x74\x15\xc6\x5d\x32\x09\xb6\xa7\xd0\xee\xb0\xe7\x25\xcc\x14\xd5\x66\xbd\x8e\x11\xa3\xba\xf6\x92\xe2\x5e\x3c\x19\xb7\xed\xf8\x49\x4c\xaa\x36\xe9\x46\x36\x33\x81\x26\x91\x66\x5f\xb2\x7a\x58\xce\x1d\xad\x27\x43\xd7\x75\x23\x74\x37\x32\x6d\xbb\x53\x09\xe3\xd3\x86\x30\x69\xc1\x6e\x6c\xfb\xcb\x67\x9c\xda\x89\xf4\xff\x22\x47\x37\x2d\xb3\xbe\x77\x79\x5d\xac\xaf\x94\xfb\xd4\x73\x60\xd6\xed\xea\xcd\xb8\x3a\x9a\x59\xdd\x58\xcd\x8c\x62\xad\xaa\xe1\xda\xf8\xe8\x13\xab\x96\xb5\xfa\xc4\xe8\xb8\x6d\xdb\x9e\x8c\xd9\xec\xf0\x55\xcd\x74\xe3\x05\xbd\x89\x23\x29\x1b\xb2\xc9\x46\x95\x1c\xea\x01\xf3\xc2\x6f\x01\x4f\xf6\xef\xc1\xf6\x25\xcb\xaa\x44\xb3\x81\x6c\xb4\x62\xb5\xbf\x9d\xcf\xf0\x16\x9f\xc9\x63\x07\x08\xdf\xd3\xb0\x6d\xff\x94\xf3\x62\x36\xfb\xa2\x73\xeb\x09\x7a\x2b\x9e\xb8\x05\xfd\x6c\xe3\x1d\xfc\x71\x17\xb7\x11\x99\x95\x45\x89\x53\x8a\x9c\x44\xdf\xd5\x4a\x1e\x3e\xd4\x96\x7f\xf9\x88\x36\xfb\xce\x59\x92\x39\x9b\xb1\x76\xae\xe2\xe4\xc3\xe4\xe2\x2b\x17\x77\x8e\x1c\x21\xb3\xb3\x24\x93\xb1\x76\x1e\x7e\x98\x5c\xb8\x80\x50\x17\x37\x89\xf9\xfa\x48\x6f\xc4\x9c\x2a\xe8\xb0\xa6\x48\xbd\x48\x27\x4b\xd8\x0d\xfc\x75\x1d\xd3\x97\xdf\xa3\x56\xd4\x2f\x77\xc1\x94\x84\x95\xb5\x95\x06\x73\x4f\xb7\x08\x19\x57\xd5\x93\x5d\x36\x23\x32\xbb\xb2\x32\xeb\xe3\x15\xdf\xea\xe0\x90\x4f\xd3\x6b\x91\xb8\x30\xa7\x03\xbe\xb8\x09\xdb\xc2\x32\x96\x38\x25\xcc\x95\x16\x85\xa0\xe0\x72\xe5\xae\xe0\x4a\xcd\x7a\x68\x62\x7f\x69\x3b\x1a\x8f\xe5\xc7\x88\xba\x3f\x7a\x42\x6f\x6b\x4b\x3f\x77\x21\x7d\xe4\xc9\x39\x9c\x8c\x96\x83\x63\xf1\x44\x3a\xf4\x58\x70\xc7\x0a\x1e\x09\x97\xa2\x43\xcb\xa3\x63\x9a\x9a\x3a\x9c\xd6\x97\x16\x46\x0e\x0e\xce\xcc\x39\x43\xed\xbf\xc0\x23\xa9\x74\x22\x3a\xf4\xb7\x83\xfe\x5c\x33\x81\xca\x0b\x49\x41\x5d\xc6\x7a\xc7\xd7\xaa\xb2\x3e\x00\x08\x03\xd6\x01\xa6\x6a\x7e\x51\x0d\x2d\xcd\xcc\xae\x08\x7c\xe6\x0f\x1e\x57\x2b\x2a\x0e\x64\xc6\x06\xc3\xf4\xea\xa5\xd9\x0c\x76\x32\xea\x74\x65\x65\x96\xa4\xf9\x5f\xf9\x0f\xf4\xf2\xdb\x1f\xca\x8c\x05\xd2\xfc\x76\x3a\x46\x32\x5d\x1d\xa5\x05\xb8\xd7\x74\xe5\x21\xe0\x89\x80\xd4\x7c\x43\x16\xc2\xdd\x9c\x4a\x37\x80\x0b\x26\x22\x03\x30\x81\x00\xd1\xb6\x66\x59\x8d\x86\x60\x03\x1a\xeb\xf0\xb6\xb6\xa5\x94\x15\xc2\x67\x36\xab\x96\xb5\xc3\x67\x70\xcb\xb2\x08\xd9\xb6\x2c\x07\xac\xa5\xba\x96\x51\x94\x4c\x9a\x87\xbb\x41\x32\x3c\xea\xe0\xcc\x33\x7d\x01\xf8\xd6\x4c\x5d\x95\x55\x1f\x46\x43\x48\x56\xdd\x98\x6e\x55\xaf\x9f\x21\xb9\xeb\xf8\xd6\xc4\x52\xe5\x9e\xb5\x67\x94\xc3\xb8\x7a\xe6\xc3\xb0\xf7\x48\x6e\x47\xfb\x42\x7b\x7d\xfc\xb0\xf2\xcc\xda\x3d\x95\xa5\x8f\x7d\x18\xde\xaf\xa1\x1e\x99\x28\x08\xf6\x74\x43\x16\x3a\x16\xcb\xda\x76\x12\x6c\x8a\x3b\x9a\x76\xdb\xb3\x23\x06\x50\x0b\x59\x98\xb8\xb1\x65\x60\x97\x4e\xb9\x4f\x53\xab\x5a\x85\xc8\x0f\xdc\xbc\x83\xde\x00\x8f\x45\x5f\x4e\x78\x04\xd8\xec\xf5\x11\xcc\xf1\x59\x2c\xc9\x2a\x3f\x8f\xcb\x15\x2c\x7e\x89\x7b\xd3\xd9\xb3\x6f\xe2\xbe\x44\xee\x7b\xec\xb1\xdb\x67\xdf\xc4\xe1\x2d\xee\x4d\x67\xbf\xd4\xae\x0e\x3e\xfd\x89\xa7\x7d\x3a\xd8\x00\x1a\x72\xad\xa1\xcb\xd8\x94\x95\x94\x28\xf1\x61\x53\xd0\xe7\x3b\xc6\x50\xe1\xd0\x25\xee\x43\xcd\xaa\xb5\xf2\xe8\x87\xb8\x4b\xbf\x08\x2d\xbf\xcc\x5d\x3a\x54\x7d\xf7\xfa\x20\xbe\x7f\x70\xf0\x43\x87\x2e\xe9\xec\x2a\x82\x3d\x78\xda\x69\x84\x12\xee\x15\x84\xbb\xf3\x82\xce\x0c\xc2\x7f\xb8\x54\x3d\x7c\xb8\x3a\x08\xcf\x77\x6b\x7a\x72\x62\x7a\x7a\x62\x12\xa7\xe9\xb1\xa5\x1b\x30\x2b\x3c\x74\x60\x5a\x3d\xa4\xb2\x9c\x97\xb7\x02\xb6\x01\x44\x22\x89\x92\xac\xa8\x6e\x62\x4d\x07\x32\xc3\xc4\xad\xa3\x25\x8e\x84\xd3\x55\xdb\xc9\xdf\xb2\x8f\x2c\xd9\xf7\x2e\x65\x4f\x5f\x79\xfd\xa9\x23\xf8\x4d\xf7\x2e\x9d\xd6\xe7\x1f\xae\x3a\xf9\x5b\xd5\x93\x27\xca\x59\xeb\xc2\xf1\x6e\x99\xcf\x23\xce\x8d\x6e\x91\x38\x75\x35\x7f\xcb\xfe\xe9\xec\x4b\xf6\x5b\xf3\xb7\xaa\x5b\xd9\xdf\xae\x76\xe3\x99\x03\x08\x8d\x03\xb2\x39\x72\xed\x7e\x1e\x54\x30\x17\xf6\x65\xc8\x00\x7f\x52\x67\xf1\x12\xf5\xc5\x15\x2c\x89\x8b\x2b\x58\x65\x8f\xab\x04\x68\x88\x4e\x46\x49\x17\x63\xf3\xf3\x31\x39\x36\x37\x1f\x2b\xa6\x95\x4c\x4d\x3b\x27\x66\xc5\x54\x2c\xd2\xde\x8a\xc4\x92\x52\x56\x94\x24\x61\x59\x90\x56\xf9\x0c\x37\x35\xc5\xa5\xb1\xa5\x64\x0a\x7c\x9a\xfe\x84\xfe\xa5\xf9\x42\x46\x21\xa4\x2e\x0e\x5f\xa5\x02\xe7\xd5\x61\x7a\xba\x20\x7d\x31\xc3\x47\xa3\x2b\x2b\xd1\x28\x8b\x7b\x8a\xf5\xe4\xa8\xf4\xe3\x52\xe8\xe8\x20\xb3\x99\x42\x2e\xba\x97\x83\x21\xf4\x62\x6b\xf7\x63\x6d\xbb\x4c\x9e\x05\x9e\xc5\x4a\x57\x1b\x5d\x28\x75\xc6\xde\x09\x99\xea\xad\x76\xb5\xd5\x84\x40\xe9\xad\x16\x80\x40\x61\x04\x31\xd3\x36\x1c\xeb\xfb\xd0\x6e\x61\xc7\x9f\x43\x3b\xe4\x22\xf0\xa2\xd2\x62\x16\x4f\x62\xd9\x28\xab\x95\x22\xec\x16\x8c\xf2\x32\xee\x03\x34\xc2\xf6\xc4\xb1\x03\x8e\xc6\xfd\xb3\x03\xc7\xcc\x76\xeb\xc0\x53\x54\x1a\x2d\xbd\x97\xf1\xfb\x8f\x4e\x49\x86\x31\x9b\xc5\xf0\x2e\x4d\x1d\x02\x51\x55\xf1\xe2\xed\x11\x72\x02\x08\xd7\x5d\x9b\xa9\x8c\x16\xc0\x87\x07\xb5\x94\xdc\x8a\xbb\x8c\xef\x6a\xa5\xac\xb2\x31\xab\x0a\x5d\x2e\x94\xbf\xb8\xb8\x76\x07\xe1\x91\xd2\x01\xeb\x83\x50\x2e\x19\x8a\x24\x93\x91\xa1\x8c\xa2\x7c\x0b\x52\xa2\x77\xe4\x49\x42\x26\x73\xe1\x9c\x44\x48\xf1\x34\xab\x3b\x38\x7e\x7c\x3c\xa8\x94\x15\x91\x05\x58\xd3\xfb\xe4\x61\xe8\xef\x85\x81\x3e\xdb\xb5\xb0\xf4\xdf\x07\x7f\x34\xbb\xa9\x0b\x05\x5e\x37\x4c\x09\xd7\x35\x4d\xab\xba\x37\x84\xbd\xb7\x9c\xb6\xe3\x58\x56\x73\x77\xe7\x6f\x75\x76\x5a\x10\x43\xf5\x7f\x15\x4b\x6a\x8f\x7a\x2b\x8b\xa2\x24\xef\xba\xe5\xfd\xf5\xfe\x3e\x54\x5b\xbc\x4b\xb5\xad\x99\x42\xe1\xd1\xbb\x56\xdb\xc1\x8f\x7c\x19\x25\xc1\x02\x01\x51\xf1\x80\x1e\xc2\x96\xf5\x2c\x16\x38\x00\x3a\x0a\x63\x87\xb4\xb7\x88\x3e\x97\x98\x48\xcc\xe9\x4e\x22\x5d\xcd\x34\x88\x20\x90\x8d\xc5\x33\xd1\x38\x55\x34\xe2\xd1\x33\x8b\xb7\xd3\x3c\xd8\xa0\xbc\x32\x39\xcf\x07\xc3\xb4\x51\x73\x8f\xd2\x19\x8c\x12\xb6\xe7\xcf\xcf\xb7\x7c\x15\x3c\x56\xcc\x54\xeb\xce\x8c\x69\xce\x38\xe2\x9e\xd5\x74\xe4\x95\x26\xb4\x3d\x0d\xfe\x17\x75\x19\x9b\xba\xb9\xe8\xea\xb9\xbe\xf2\x83\x59\x2c\x71\x2a\x54\x6e\xaa\x26\x76\xbe\x14\x1c\x0a\xe0\x30\x0e\x07\xa0\xb2\x37\x4f\xa5\xab\xef\x19\x7b\xb9\x32\x4e\xda\xbf\x4f\xf8\xc3\xe3\xbf\xf5\x15\x1c\xc2\xc1\x40\xb7\xbe\xb1\x44\x02\x1f\x4a\xff\x9b\x83\xe3\x44\x20\xb5\x99\xfc\xd2\x44\x67\xdd\x78\x19\x85\x5c\xde\x14\x3a\x4a\x0c\x3d\x65\x0a\xbb\x2f\x52\x02\xf9\xa5\xc4\x40\xf5\x12\x53\x69\xbb\xea\xbb\x52\x2d\x74\x32\x7b\x29\xd4\xfe\xda\xa9\x10\x09\x5d\x22\x69\x3e\xf1\x8d\x8d\xfe\x0b\x56\xab\x7a\xd6\x7a\xc3\x73\x8b\x97\xdf\x60\xf9\xe5\xb4\x97\x01\x4f\x6d\xca\x45\x57\xe6\x04\xdd\x90\x73\xf8\xee\xf7\xcf\xd8\x58\x5a\xda\x58\xfa\xb1\xfe\xbb\x88\x17\x14\xe5\x5e\x45\x59\xba\xcb\xcd\x44\xaf\xc2\x8f\x69\x72\x46\x52\xf5\xf8\x31\x39\xd3\xc7\x8f\xa9\x4a\xc0\x8f\x59\x13\xab\x55\xb1\x96\xe1\x9d\x0d\xb1\xca\x50\x35\xaa\x62\x0d\x37\xd9\x7b\xbb\x45\x8f\xd5\x2c\x76\xc6\x16\x9c\xed\x8b\xa1\x1f\xf6\x70\xa3\x2a\x46\x59\x95\x19\x70\xac\x68\x16\xc3\x42\x4a\xd2\x99\xbd\x58\xd9\x13\x9b\x0e\xcd\xae\x04\xe6\x06\x94\x8c\x5d\x28\x77\xf6\x9e\xec\x05\xaa\xab\xaf\xcc\x72\x23\x23\x5c\x46\x21\xdb\x9d\x3d\xab\x0f\xb4\x0e\xfd\xe0\xe7\x64\xae\x53\x9f\x87\xa9\x3b\x83\xf6\xa3\xe5\x6e\xb6\x9d\xa7\x51\x28\x7d\x9f\x25\xe6\xbe\x15\xdd\x49\x3b\x3c\x89\x4b\xee\x4c\x4e\xc5\x82\x0a\xbe\x09\x8a\x67\x6c\x79\x76\x76\x79\xf6\x3b\xbe\xfd\x57\x4e\x4d\x65\x94\x68\xfe\xd4\xe9\x53\x98\x90\xf5\xb6\xb6\x4e\x16\xf6\xef\xc7\x4f\x40\x88\xd5\x43\xb3\xcb\x84\x2c\xdf\xeb\xdb\xff\x78\x66\x68\x22\x36\x3c\x9c\xc9\x0c\x4d\x4c\x0c\x65\xd6\xd5\xdc\xa1\x43\x39\x55\x14\x91\x8f\xf7\xd3\xc5\xc9\x75\xeb\x76\x5b\xf7\xd5\x37\x3d\xd1\xde\xfa\x1d\x88\x4c\x6f\x2d\x28\x84\x28\x57\x16\x4f\xea\xba\xab\x27\x7a\x39\x0c\x49\x2a\x7b\x4e\xb9\xbf\x54\xbb\x70\xd4\x1d\x96\x70\x3c\x44\x8b\x11\x18\xd6\xc6\x7f\xf6\x95\xf6\x5e\x58\x48\x6a\x6e\x99\x03\x9d\xb6\x44\x40\x93\x28\xd0\xf6\x74\x6e\x94\x87\xd9\x49\xbb\xa8\x60\x94\xbd\x7e\x7c\xc5\x3a\xbb\xd2\xde\x5a\xb9\x17\x4a\xfd\xd1\xb5\x2a\x1e\x78\x4c\xc9\x64\x94\xcc\x4e\x42\xcb\x58\x56\x46\xfb\x86\x4e\xbf\xf9\x5c\x21\x26\x49\xb1\xff\x94\x51\xd2\x69\xc5\xc7\xcd\x19\x82\xdc\x24\x93\x97\x8d\x38\xf6\x53\x61\x1a\xeb\x5a\x65\x1d\xe0\xb3\xf1\x3b\xa5\xf6\xce\x1f\x45\x03\x36\xb1\x6d\x62\xf7\xe2\x97\x72\x9d\x5c\xbc\xbb\xf2\xc2\x78\x96\x7f\x1f\xe7\x4b\xbd\x5a\xdd\xde\xde\xdc\xec\x03\x15\xef\xca\xc2\x92\x6b\xd3\xa8\x18\x65\x45\xdd\x6d\x21\xe4\xba\xd6\xc4\x8e\x74\xfb\xce\xb9\xa5\x7d\x19\x5e\x1b\x8e\x68\x4e\x24\x26\x64\x7f\x9c\xcf\xbc\x3e\xe4\x42\x9a\xfd\xc4\xbe\x7b\x8c\x6a\x32\xc2\xa7\x49\x24\x46\x62\x11\xeb\x81\x99\x0c\x2f\xbc\x3e\x95\x38\xda\x85\x33\xf3\xe9\xe5\x61\x14\x03\x6e\x7e\xd9\xe0\xd4\x1c\x36\x05\x4e\xc5\x68\x87\x34\x77\xaa\xf5\x7a\xbd\x8e\x9b\x4e\xe3\x43\x8f\x3a\x0f\xde\x7f\x7f\xf5\xbe\xfb\x58\x2c\x8c\x85\x66\x61\xed\x57\xc0\xa2\xe5\xa2\x57\x99\x6a\xd8\x83\xdd\x82\x04\x53\x26\x2d\xab\x9c\x98\xe2\xa4\x0a\x76\x32\x53\xa5\xc5\x12\xfe\xe9\x64\x1a\x14\x9a\xe4\x66\x80\x3e\x40\x99\xb1\xd4\x66\x20\xf0\x33\x89\x4f\x95\xd2\x99\x52\x29\x33\x34\xb0\xc6\x2b\x65\x85\xbf\x3c\x14\xca\xd0\x07\x2c\xb1\x36\x34\x34\xb4\x36\xea\xc3\x4c\xfe\xaf\x28\x0a\x98\xc9\x30\xc3\x84\x39\x70\x6a\x74\xf0\xb3\x4c\x01\x82\x8f\x68\x07\x7e\x87\x2c\xc5\x72\xc7\x0f\x4f\xdf\x63\xad\x5e\xfb\xc0\xb5\x13\xb3\x85\xfc\xcc\xe0\x40\x6d\x89\xcc\x6a\x33\x23\xc3\xc6\x84\x8a\x9f\x2d\xd7\x1f\x38\x79\xed\xda\xc9\x37\xdd\x3f\x58\x98\x9f\x2b\xa6\xca\x71\xdf\x7a\xee\x8d\xc3\x19\x77\x3d\x57\x8a\x9c\x5c\x11\xfb\xd6\xf0\xfe\x30\x56\xba\xa6\xcb\xe9\xab\x69\x79\x38\xe3\x5b\xcb\x37\x58\x70\x28\x6c\x5b\x33\x05\x4d\x2b\x5c\xf6\xaf\xe6\xfb\xba\xab\x7c\xb2\x17\x17\xd3\x9b\x4f\xe4\xdd\x18\x92\xfd\x35\x73\xba\x20\xff\xf3\xbb\xd4\xf9\x4e\xc7\xb1\xef\x56\xa1\x95\xbf\xdb\x35\x9b\x3a\xe0\xe2\xea\xdf\xed\x9a\x7f\x97\x5e\xee\x12\xbd\xf0\x81\xbb\xd4\xdf\xd0\x0a\x33\x33\x05\xe7\x7b\xbb\x66\xfa\x5c\x4e\x02\x12\x0b\xeb\xf7\x8a\xe9\x8b\xc0\x60\x5b\xe6\x0a\xdf\x5b\x9e\xe2\x24\x49\x92\x44\x09\xfe\xfd\x23\xdf\xfe\x73\x7d\xb2\xd5\x03\x92\x28\x89\xa2\x28\xd2\xef\xef\x11\xd9\x59\xf4\xc8\xb7\x7a\xe5\x2c\x7f\xbb\xa2\xde\xcc\xc4\xe4\x4a\xd0\xe2\x80\xe3\x4b\xe5\xee\x22\x53\xfe\xbc\x28\xcd\xcd\x4b\x47\xe7\xe7\x24\x51\x7a\x4b\x9f\x4c\xf9\x94\x24\xcd\xcd\xb1\x3f\xa9\xd9\x53\x69\x1f\x57\x81\x1f\x37\xa7\x3b\xbb\x78\xc0\x39\x89\x74\x3a\xc1\x02\x42\xea\xcd\xdc\x8b\x67\xb3\xcd\xbb\xf1\x15\x50\xe9\x1c\xf5\xcf\x51\xa1\x02\x5f\xc0\x3e\xca\x03\xf0\x95\x68\xb8\xa7\x10\x00\x0b\xfa\xdf\xc1\x54\xff\xae\x78\xa8\x95\x3d\x4a\xf9\x14\x44\x9b\xf7\xf2\xc2\x43\x68\x3a\xd3\x7f\x2d\x77\xbc\xa2\x12\x67\xaa\x0c\x20\x09\xa3\xf7\xc8\x8f\xff\xec\xe1\xc3\x3f\xfb\xb8\xfc\x93\x17\x37\xaf\x0f\xff\xc4\x4f\x0c\x5f\xdf\xf4\x6c\x19\x96\x7b\x0f\xe3\x54\x56\x56\xcd\x05\x2c\x71\x92\x0a\x3f\x95\x30\xba\x28\x9c\xfa\xa1\xa9\xd6\xe3\xf2\x7b\x58\x01\x9f\xdf\xf7\x9a\xe5\xc1\xea\x3d\xd7\x37\x2f\xb2\x62\x7a\xcb\x88\x40\x0c\xae\xe4\x05\xd3\x94\xfa\xcb\x99\xfa\xa1\x53\x02\x2e\xf5\x15\x56\x1d\x5c\x7e\xcd\xaf\xfa\x0b\x0c\x21\x8c\x10\xbe\x13\x40\x50\x5e\x0e\x1d\x47\xe7\xe1\xee\xb8\x58\x60\x52\x19\x66\x7d\xb3\x62\xa8\x0c\xd0\x95\x03\x96\x24\x97\x55\x59\x2e\xba\x30\xa7\x0c\xc1\xb4\xec\x72\x43\xeb\x8b\x00\x83\x6a\x4a\x1c\x83\x10\xc3\xe8\xda\x0b\x83\xf9\xd0\x09\x63\xf2\xbe\xc7\x16\x52\xc9\xa9\xa1\xc0\x82\x91\x0c\x09\xa2\xbc\x7f\xff\x44\x28\x1c\x8a\xa7\xc7\xb2\xe3\xf1\xd8\x44\x6e\x74\x74\x32\x93\x9e\x88\x8f\x8a\xf2\xc8\xc0\xe9\xc9\xfb\x46\x18\xb0\x58\x00\x3d\xfb\xc8\xd2\x7a\x7a\xe2\xbe\xff\x7e\xf0\xed\x45\x8e\x7f\x70\x21\x26\x0e\x2a\x82\xb8\x75\x29\x3a\x31\x34\x14\x1b\x88\x8d\x49\xd1\x91\x8a\xb8\x28\xf1\xf1\xe1\xf1\xc1\x98\xf4\x7b\x1e\xda\x98\x3f\xcf\x02\xe2\x95\xb1\xec\x62\x23\xc8\x46\xa1\x13\x2c\xdd\x04\x04\x3b\xec\x7c\x9d\x85\xaa\x5a\xed\x1d\xc7\xc1\x02\xd9\x70\xe1\x55\xdc\xe7\xae\x97\x33\x0e\x25\xa9\x88\x1e\x02\x97\x5f\x41\x08\xba\xe0\x7a\xdf\x7e\xb9\x5d\xc3\x9a\x65\xb5\xb7\x71\x7d\xc7\xb2\x1c\xcb\xc2\x3b\x35\x42\xec\xcd\x0d\xcb\xc2\x68\x73\x73\xd3\x8d\x61\x68\xb9\xd8\x02\xa5\x6e\x94\x11\x07\xd1\x55\xbd\x40\xc6\x93\xd8\xcb\x5e\xc0\xa7\x61\x76\x32\x5a\x82\x17\x72\x45\x9f\x86\x26\xdd\x61\xe1\x45\xa7\xb6\xb6\x88\xd0\x05\xb0\x17\x3c\x50\xe8\xde\xd8\x96\x1c\x42\xa6\xc0\x84\x96\x8a\x2b\xb9\xa8\xae\x53\xc0\x7b\x12\x1d\x8c\xd6\x2e\xae\x35\x41\x9a\xfc\xf7\xac\x1a\x56\x65\x5d\x10\x26\x4b\xa5\xc7\x41\xd0\xf4\x3d\xa5\x7b\x3f\x53\xe6\x3c\x2e\x86\x3b\x9c\x51\x5e\x4f\xff\xf2\x8b\x0b\x78\xed\xfc\x1a\xfe\x30\x14\xf2\x33\xf0\x6c\xbd\xfe\xc4\x84\x52\x9a\xbc\x0d\xf5\xbd\x9e\x3d\xa6\x03\xe0\x63\xf8\x97\x78\xc7\x9d\x7b\x0f\x22\x64\xf6\x60\x1a\x18\xba\x28\x65\xb1\xa4\x57\x4c\x89\x8e\x45\x4e\xec\x8b\x3f\x36\x8d\x2e\x6f\xfa\xcf\x76\x21\x0e\x4e\xa6\x52\xa1\xa9\xa1\xcd\x55\xae\x74\x7f\x2c\xfd\xb1\x64\x13\x72\x0b\x7f\x8d\xe1\x1e\x80\x3d\xf3\x5f\x79\x68\x07\x9a\x46\x22\xe7\x84\x1f\x1f\x11\xea\xa2\x7c\x1a\xf2\xab\x32\xb0\xfd\xf7\x20\x39\xfa\x75\xfc\x7f\x07\xd7\xcc\x30\x34\x77\xf1\x79\x99\x82\xc4\xa9\x06\x9d\x9b\x43\x9c\x6a\xb2\x8c\xcb\x13\xb7\x6e\xdc\xb8\x75\xe3\x65\x7b\xf4\xfa\x3d\x57\xc7\xaf\xe2\xd3\xe3\x57\xc7\x19\x0c\x6e\xfb\xe6\x47\x6f\xde\xfc\xe8\xf8\x8d\xc5\xcc\x61\xe7\x91\xfb\xf3\xf7\xdf\x5f\xb8\x94\xf7\xd7\xe3\x47\x61\xf5\xc9\x88\xe1\xbe\x3a\x4b\x9c\x6a\xc6\xb1\x6a\x62\x01\x2e\x69\xc6\x57\x29\xae\x8f\x5f\x1d\x7f\x99\xd6\xca\x24\x60\x6b\xc7\x57\xf1\xd9\xc2\xa5\x7c\xfe\xfe\xfc\xfd\x70\x6d\xb2\x5b\x27\xc3\x65\x2a\x40\x76\x2e\x40\xee\x84\x41\xa2\x09\x8a\x48\xea\x5a\x77\xe9\x0a\x48\xaf\x8f\x63\x26\xc4\x4e\x44\x47\x23\x91\x4b\x7e\xe3\x1b\xc5\xcb\xcb\xe5\xbf\x39\x8b\xd3\xa5\xf1\x05\xf3\xd4\xc5\x1b\x0b\xfc\x58\x76\x6c\x12\xff\xca\xf8\xd5\xf1\x1f\x19\x1f\x2b\x68\xda\xc5\x1b\xc9\x42\xe4\x32\xfe\xe7\xf1\x6c\xbc\x7d\xeb\x1b\x9a\xb1\xbc\x86\x9f\x3e\xdb\xfe\xb3\xd2\xf8\xc2\xc2\xcd\x0b\x27\x4d\x3e\x95\x4b\x4e\xce\x17\x2e\xe5\xd7\x22\xf9\xd4\xcd\x0b\xb3\xd3\xf9\xb1\x89\xe5\xcb\xfe\x7e\x61\xb6\x0e\xe8\x7f\x58\xff\x4c\xb1\xff\x2e\xb8\xfd\xff\x9f\x1e\x95\x9c\xe3\x62\xdc\xd7\x21\x6f\xf4\xee\xc0\x57\x37\xe8\x57\x2f\xfa\xba\xe3\x9d\x9d\x3b\xc0\x38\xbe\x10\x6e\x05\x06\x40\xd6\xce\x20\x05\x2d\xa2\xb3\xdd\x38\x1b\x53\x14\x0a\x65\x53\x55\x2a\x39\x40\x54\x37\x2b\x22\x1d\x90\x5e\xae\x55\x79\xca\xb7\x2f\x19\x05\x4f\x92\xf6\xe0\xcf\xe0\xbd\xa8\x60\x4b\xa8\x0a\xef\x33\xee\xa0\xf2\xc4\xe0\x28\x97\xcf\xe4\xb2\x99\xfc\xe0\x08\x77\x14\x1e\xfb\xf6\xa7\xe0\xcd\xc6\x28\x16\x11\x93\x99\xa4\x96\xcc\x24\xc5\x48\x0c\xd7\xa9\xd0\x70\x44\x39\x7a\xac\x34\x31\x38\xc2\xe5\x47\x46\xf2\xdc\xc8\xe0\xcf\x26\x87\xeb\x23\x89\xc4\x48\x9d\xea\xe0\xee\xde\x97\x5b\xad\x48\x6c\x95\xee\xaf\xb2\x6d\xac\x77\x2d\xf4\xc5\x21\x99\xfe\xa8\xa6\xbd\xe2\x7c\x9a\x84\xd8\x8e\xd3\x13\x30\xe4\xea\xb9\x9e\x4f\x2d\x09\xd6\x8c\xbb\x72\xa0\xe9\x02\x6c\x0d\xcf\xbf\xe6\x39\x06\xff\x3f\xea\xde\x04\xbe\x8d\xe3\x3c\x14\xdf\x6f\x66\x81\x05\x48\x1c\x02\x71\x91\x20\x05\x82\x84\x08\x48\x58\xde\x20\x08\x5a\x07\x09\xd9\xb2\x2c\x4b\xb2\x2d\xc9\x06\x25\xcb\x07\xb4\x04\x96\x24\x08\x10\x0b\xef\x2e\x48\x51\x71\x12\xa4\x6e\x2e\x3b\x77\x4a\x39\x69\xd3\xc4\x49\x9a\x34\x15\x73\xf5\xb5\x49\x9a\xbc\x1e\x4c\xd2\xb4\xef\xd5\x4d\xd2\xa4\xa1\x9a\xa6\x97\x7b\xa4\x87\xd9\x36\x6d\xda\x34\x4d\x0f\xfa\xff\x9b\x99\x5d\x00\xa4\xe4\xf4\xff\x7e\xff\xf6\xfd\xdf\xa3\x84\xdd\x6f\x66\xaf\xd9\xd9\x99\x6f\xbe\xfb\xcb\x52\xbf\x87\x25\x18\xdc\xf9\x06\xcd\x37\xdb\xcc\x35\x99\x29\x89\xe4\xff\xde\xbc\x0d\xff\x99\x7c\x8f\x65\x97\x2d\xac\xe1\x0d\xdf\xaa\x51\xed\xb8\x7d\xdc\x90\x23\x40\x38\xc2\x20\x94\x6e\x92\x9b\x32\x7b\xf3\x96\xc4\x56\x0f\x0b\x91\x44\x44\x68\x86\xbe\x00\x91\x99\x9d\xb7\x3e\xdb\xdb\xd9\xe9\x6d\xb1\xc3\x64\x38\x74\xa8\x29\xf1\x32\x9f\x1c\xfb\xe1\x2d\xa8\x5f\x3a\x77\x89\x21\xd6\xf4\xed\x5b\x51\x0a\xef\x1f\x18\xd8\x1f\x06\x8e\xe2\xda\x57\xbc\x4c\x43\x76\xd9\x84\x32\x49\xea\x40\xd3\xc7\x3a\x78\x1b\x4b\xb5\x66\x1b\xbe\x4f\x1f\x9c\x48\x24\x5a\x13\x62\x19\x5d\xb0\x4e\xd5\x47\x5f\xae\xd7\xb3\x7b\x53\x89\xd2\xc7\x36\xed\x1f\xad\x9c\x8b\x4a\x49\x52\x34\xbe\xff\x7f\xd0\xed\xd9\x6c\xa9\x64\xbf\xfd\xeb\x6e\x66\x33\x4b\xa5\x0c\x70\x2f\xff\x9e\xb7\x3e\x33\x4d\xc7\xd1\xcb\x84\x88\x31\x9f\xc9\x95\x32\xb3\x99\x97\xf9\xd2\xf5\x52\x36\xbb\xf5\x72\x4f\x6c\x3e\x8f\xe0\xac\xa8\x49\x4d\xff\xf0\xc7\x6d\x6d\x84\xdf\x9c\x0e\xbf\xf1\xf6\x8f\x5b\xdf\x08\xbf\x29\x1d\x7e\xb9\x07\xee\xb1\xbd\x03\x6a\xf3\x43\x33\x81\x4c\xa6\x26\x46\x68\x06\xa5\xa0\x40\x4d\x80\x52\x41\x01\xde\xd6\x2d\x9f\xcc\x66\x53\x67\xdc\x4f\xa4\xce\xb8\x7b\x69\x01\x1e\x39\x34\x7e\x52\xce\xcc\x66\x33\x67\x52\xe1\xf0\x89\x33\xa9\xbe\xee\x5e\xa3\x86\xd1\xa1\x66\x2c\x6a\x2b\x8d\x8d\x92\x8c\x0b\x49\x7f\x32\x7d\x9b\xa0\xd4\x62\xa6\x54\xca\xcc\xaa\x7b\x42\x53\x6f\x2f\x2d\xcd\xae\xef\x89\x4e\x8d\x5a\xf2\xee\xf8\x8c\x88\x89\xb7\x24\xdc\xd9\x95\x6a\x07\x36\x6e\x97\x67\x87\xf9\xc7\xac\xc3\x26\xd7\x66\x70\x1a\x71\xc3\x04\xd2\xd3\xb5\xbe\xde\xe5\xa1\x6c\xc5\x46\x26\x03\x59\x33\x0f\x9e\x79\x3e\x4f\xe9\x72\x4f\xd4\x93\xf6\xb6\x5e\x76\xb3\x64\x5c\x59\x07\xff\xce\xf6\x08\x78\x76\x5f\x8f\x77\xc5\xce\x49\x37\x71\x47\xda\x1f\x0d\xec\x67\x09\xc0\x04\x1a\x92\xa1\x3f\x46\x08\x18\x23\xf6\xee\x44\x3a\x9a\x4a\x4e\x36\xdc\x57\x84\x40\x10\xc4\xd9\xd9\xd9\x9b\x43\x48\x14\xd1\xd0\x51\xcf\x91\x93\x47\x3c\x47\x8d\x82\xbb\x33\x1a\x1e\x71\x87\xdd\x23\xe1\x68\xa7\x1b\x38\xa6\x74\x48\xb8\x6c\x7e\xd1\x2f\xb8\xc4\xfd\xd1\xe8\x7e\xd1\x25\xf8\x45\xbf\xcd\x95\xe8\xf2\x44\xc3\xc3\x18\x0f\x87\xa3\x1e\x6a\x9f\xe0\xe2\x9c\xb0\x0d\x7f\x4b\x73\x99\xd0\x1c\x20\x23\x60\x8d\xc5\x87\x21\x1d\x4c\xc7\x27\x09\x2d\x25\xc0\x9f\x09\x60\x1b\x73\xbb\xbf\x70\xe0\x7c\x38\xb2\xcf\xf7\x78\xe6\xd1\xd8\xa5\x48\xd8\xe3\x2e\xf1\x5e\x81\x54\xbb\x3d\xe1\xc8\xa5\xd8\xa3\x99\x47\x3b\x5c\x91\xf0\xf9\x03\x2d\xf9\xb1\x5c\x2c\xb3\x90\x10\x4f\x52\x51\x8b\x10\x8b\xf6\x5b\x07\x82\x51\x9f\x99\x80\x66\x32\x15\xdd\x63\xc3\xe9\x6f\x29\x64\x9a\x36\x9f\x11\xd3\xf6\x73\x77\xbe\x28\xc4\x22\x4c\xf4\x79\x85\x3e\xe0\xb6\x76\x66\xb7\xde\x00\xfb\x68\xd0\x3c\xcb\xb7\x76\xe9\x86\xc9\x9c\x32\x67\x94\xb1\xf2\x33\xbe\xf4\x18\xa5\x33\x19\x47\x6a\xa6\x5a\xa4\xdc\x6c\x86\xb6\xbf\x69\xdb\xd7\x6a\xd9\xb7\x2b\xa3\x72\xca\x8c\x6c\xbf\xb9\xb9\xd9\x5c\xaf\xb6\xae\xd3\xbf\x12\x19\x0f\x14\xa3\x6d\xb3\x3c\x7a\x9e\xd0\x0b\x91\xa7\x23\xfe\xc8\x7f\xda\x58\x26\xef\x58\x87\x2d\xea\xdf\x48\xfd\xc9\xa8\xd7\x14\xf3\x27\x4b\xe7\xf3\xe1\x7a\xfd\x4d\xe1\x7a\x3d\x9c\x7f\x2f\x75\x88\x6c\xb8\x5b\xed\x8a\x4f\x48\x23\x57\x83\xe1\xdf\x77\x6b\xb6\xdf\x9d\x1b\x30\xbb\x3b\x0e\x21\x64\x45\x71\xab\x5e\xdf\x1d\x77\xf0\xd6\xf5\xd7\xcd\xac\xb0\x3d\x29\x1a\xf2\x8f\xd9\x3e\xfa\x37\x36\x36\x76\xea\x1b\x1b\x1b\xb0\x59\x7f\x89\xdb\xda\xaa\xd7\x37\xb6\xb6\x76\xcd\x31\x16\x8b\x89\x5c\x91\x4e\x06\xb1\xa7\xcf\x30\xa5\x84\xf5\x9d\x9b\xa7\x03\x4b\x81\xe7\x81\xa3\xfc\x0b\x6c\x88\xa2\xdf\xbf\xb3\x09\x1c\xed\x9e\xdd\xf6\xd8\x88\x5a\x3b\xd0\x6c\x7d\xf1\xc6\xb2\x14\x6c\x98\x4f\x53\xc2\x65\x65\x25\x73\xe3\xc6\x8d\x7a\xdd\x30\xa1\xee\xf2\x40\xa6\xf6\x02\x55\xd8\x41\xb6\x6e\x18\x1d\xb1\x3e\xe6\x5b\xf8\xa4\x20\xd7\xcb\x8d\x34\xd7\xbc\xbd\x79\x79\x5e\xae\xfe\x47\x59\xf2\x69\x1a\xb4\x71\xe7\x06\xd9\x8e\xdc\x52\x03\x19\xca\x47\xcc\x3b\xec\x75\xbb\xd3\x69\xaf\xdb\x1d\x3b\x1b\x94\xb9\x58\xa0\x05\x5a\xfd\xf2\x7e\xb1\xfb\x3f\xfc\xa7\xa6\x5f\x2c\xe6\xec\x5c\x09\x7e\x00\x6f\xa4\x90\x93\xd1\xbe\xf4\xd4\x20\xa1\x77\xed\xe1\xd5\x30\x5c\xee\x7d\x89\xbb\xda\xfb\xf0\xeb\x5f\x1f\x7e\xfd\x9f\x90\x72\x98\x5e\xfc\xf0\xaf\xbe\x21\xfc\x86\x3d\x7e\x47\xbd\xcc\xef\xc8\xcb\x4c\xf3\x6e\x71\xfc\x09\x52\x33\xfa\x9d\x9b\x2f\x32\x16\xb3\xe1\xf3\x13\x28\x95\x5e\x7c\x11\xea\xe2\x6e\x87\x9f\xcd\x52\xa9\x55\xd6\x13\xa4\x79\xa2\x5a\xe2\x65\x43\xd2\xdf\xe7\xe9\xa3\x89\xb5\x92\x5e\x82\xff\xe8\x40\x5e\x37\xef\x2c\x42\x62\xe7\xa6\xd8\xd5\x51\x4e\x7f\xe5\x2b\xe9\x70\xa9\xd4\x14\x00\x65\xb3\x90\xc8\x66\x3d\xa1\x9d\x7f\x98\x4a\x4c\x85\x4b\xa5\xbd\x34\x2c\xf3\x48\x4e\xbb\x61\x6f\xc6\x71\x18\x39\xff\x89\xf3\x07\x29\x1a\x78\xde\xe7\x74\xfa\x9c\x5f\xfb\xc4\xf9\x4f\x40\x96\xe2\x82\xe3\x4e\x52\x63\xc4\x03\xdd\x86\x6d\x9a\x6d\xc2\x88\x0e\xc6\xa2\x11\x50\x22\x8c\x19\xcd\xb0\xe8\x61\xa9\x16\x93\x25\x2a\x0d\x87\x4f\x05\x22\x91\x40\xa4\xcb\x73\xbe\x7f\xb4\xff\xbc\xa7\x2b\xd2\xd9\xd7\xd7\x19\xe9\xf2\xcc\xf6\x0e\xf6\xce\x7a\xba\xc0\xcf\xf6\x66\xb5\x79\x96\x71\xd1\x2c\xc7\xb5\xda\xf1\xbb\xb8\x00\x17\xe6\x62\x2c\xe2\xdb\x04\xe1\xb2\x98\x5c\xd9\x7c\x29\x7e\x0f\xb3\xfb\xb9\x37\xc9\x82\x77\x7f\x25\xd3\xf7\x00\x18\xd9\x7b\xda\x02\xfb\xf6\x05\xf6\x55\xe9\x36\x2b\x9f\x0c\x84\x2c\x97\xcf\x45\xad\x8e\x93\x86\xe8\xea\x41\x37\x39\xe2\xa6\x5b\xfa\xde\x77\x50\x79\x04\x8d\x83\x3a\x8c\x0d\x7d\x0f\xe5\xe3\x5c\x20\x00\xd7\x9b\x1a\x3d\x12\xb8\x6b\xfc\x70\x2c\x76\x78\xfc\xae\x89\x63\x77\xdf\xd1\x33\x3a\x7c\x22\xbd\x7f\xec\xc4\xd0\xd0\x89\xb1\xf8\x43\xd3\xd3\x14\x3f\xb1\x7b\x74\x52\xba\x75\x1a\xb3\xb8\x0b\x42\x74\x18\xa2\x84\xca\x08\xa3\x5e\xf0\x9a\x91\x39\xe2\x34\xe6\x0f\xd5\x29\xa1\xd1\xe1\x49\xbf\x18\xe9\x12\x6d\x07\x6d\x62\x57\x44\xf4\x4f\x0e\x8f\xa2\x2b\xe3\x77\x05\x8e\x8c\xa6\x7a\x7b\xef\x3e\x36\x41\x1f\xab\x8b\x83\x47\x87\x03\x91\x44\x4f\x20\xd0\x93\x88\x04\x86\x8f\x0e\x8a\x08\xee\x3f\x31\xb6\x3f\x7d\x62\x78\xb4\xa7\x7b\x7a\xfa\xa1\x38\x69\xcc\x6d\xf8\x99\xff\x8f\x7e\x0b\x66\x2c\xc1\x3e\x1a\x07\x9e\x76\x77\x30\x3e\x69\xa8\x7c\x92\xe3\xe9\x60\x03\xd5\x1c\x81\x20\x93\x98\x7c\xe9\x42\xc7\xcc\xa5\x99\x99\xc1\xde\x9e\xc7\xdb\x5d\x06\xce\xd9\xa8\x7f\x8d\x92\xe5\xf7\x5d\xe8\xe9\x1d\x9c\x9e\xbe\x34\xd3\x91\xb3\x31\xbc\x53\x67\xcf\x99\x84\xdf\xa0\xf9\x3c\xfa\x98\x35\x2b\x55\x52\xa4\x92\x02\xf3\x5b\xb6\xc6\x49\x47\x12\x32\x8a\xf9\x0b\x40\x7e\xa1\x77\xf1\xe0\xe8\xf4\xe0\x60\x7d\xb2\x77\x28\x7e\x87\x4d\xe4\xdf\x1a\x3f\x6c\x13\x6d\x0f\x4d\x1d\xa3\x75\xbf\xb4\xd8\xbb\xb0\x9f\x42\xa3\x03\x07\x7e\x6a\x74\x60\xf2\x34\x2d\x70\x1c\xe7\xdc\x85\xbb\xf7\x19\x5c\x73\x3f\x17\xa3\xb6\x2c\x13\xdc\x14\x77\x94\xc5\x3a\xc0\xa9\xa4\xdf\x62\xa6\xc0\xb0\xa4\x92\x3e\x6b\xdc\x88\x76\x60\xe9\x8f\xa5\x68\x52\x3c\x9a\xc6\x48\x60\x29\x1a\x26\x26\x1b\x29\xad\x33\xa2\x28\xbe\xc4\x11\x7c\xdd\xd1\x45\x33\xcb\xd0\x72\x47\x97\x98\x25\x2c\x81\x58\xa7\x89\x88\x99\x4b\x20\xa1\x60\x12\x2f\x71\x62\xc8\x03\xdc\x4d\xd1\x13\x32\xa2\x02\x92\xa2\x28\x86\x3c\x5b\xf4\x0c\x4f\x68\x83\x65\xbd\xb6\xdf\xc2\xf7\xf5\x72\x51\xee\x20\xcd\x25\x41\x3d\x2d\x92\x46\x8a\x41\xef\x1e\x6b\x75\x9a\xab\x37\x95\xf4\x7b\x48\xcb\xcd\x20\x0e\xeb\xa2\x98\xa8\x6f\x51\x1f\xc2\x2d\x82\xcb\xea\xe2\xce\x16\x4d\x7f\x2b\xd2\xc8\xa8\xa2\x58\xdf\xda\x22\x6b\x10\x3b\xc3\x13\xa2\x21\xfd\x38\xf2\x2a\x21\x4f\x82\x66\xe2\x36\x69\xc6\x2c\x5d\xcf\x30\xa1\x32\xd3\x7d\xfe\x3e\xc3\xfb\x82\xd9\xf9\x27\xd6\xd7\xb3\xf5\xba\xb8\xbd\xbe\x4e\x4d\xfb\xff\x97\x65\xc5\xfc\x2d\xba\x97\x86\xb4\xd0\x8c\xea\x87\xf6\xca\xfa\x67\x06\x23\x91\xc1\xde\x2c\x8d\x74\x95\x25\x9b\x48\x92\x49\xf9\x69\xcd\xe7\x69\xcd\x4b\x1c\x2d\x80\x68\x10\x43\xcd\x79\xe3\x67\x3a\x05\x30\x02\x2d\x25\xe9\xa8\x77\x83\x75\x3f\x24\x27\xd2\x42\x2a\xda\xc8\xd2\x02\xc7\x7d\xe3\x27\xc7\x13\xa1\xfe\x90\x33\xd4\x95\xe8\xea\x4a\xdc\xc5\x50\xcf\x3e\x5f\x4f\x74\x7c\x3c\xea\x09\x85\xfa\x9d\xdd\xdd\x7d\xed\x7d\xdd\x6f\x4f\x24\x60\xc9\xb4\x69\x6b\x7d\x9f\xee\x5b\x65\xef\x96\x16\x8d\xca\xae\x7c\x64\x8e\x70\x3a\x6d\xfe\xdf\x25\x86\xc7\x2d\x07\x0c\xfd\xe1\x16\xd5\x55\xf4\x50\xba\x24\x28\xc4\x19\x9a\x64\x94\x28\x7b\x29\x61\x04\x92\x13\xc0\x45\xce\xec\x7b\xe4\xf0\x7b\x9f\x78\xe2\xbd\x53\xe1\xc1\x63\xd3\x97\x2e\x3d\x79\x31\x33\x8b\x1e\xcc\x40\xf6\xf2\x50\x28\xbd\x55\x7d\xae\x3a\xd5\x3b\x78\xf1\xc9\x8b\x17\xa7\x67\xf1\x83\xe7\x1a\xf9\x81\x29\x3f\x41\xd8\xc4\x74\x90\x4a\x1c\xb6\x96\x32\x5b\x5b\x99\xa5\xd9\xec\xc6\xe6\xe6\x46\x9d\xf4\x65\x9d\x13\xa1\x6e\xd8\x12\x7a\x39\x0e\xc8\xa0\x0c\xc6\x05\x7f\x12\xf7\x99\x01\x23\x81\xcb\xde\xb8\x91\xcd\xde\xd8\x22\xc4\xef\x4b\x5c\x36\x0b\xed\xd9\x33\x67\x36\xb3\xd9\x33\x50\xaf\x67\xb3\xe4\xc7\x19\xb1\x25\xd8\xbd\xec\x34\x3e\x83\x71\x75\xbd\x71\xd5\x56\xf3\xe4\xa6\xdd\x2d\xe9\xdb\x78\xd3\x7f\x30\xd0\xf4\x1e\xbf\xbd\xcd\xed\x9d\xf1\xc9\xf8\x18\x0b\xaa\xb0\xdb\xe4\x16\xb2\x62\x77\x3c\xde\x2d\x6e\x52\x9b\xf3\x0f\xdf\x6a\x73\xbb\x1b\xdf\xba\x9b\xf8\xb6\x69\xee\x98\x48\x98\x23\x23\x23\x8a\x1b\xf5\x7a\x23\xf8\x07\xbf\x67\xdd\x0e\xd2\xfc\x55\xfe\xbd\xba\xab\x60\x2a\xe9\xdf\x4e\x3c\xd2\x32\x16\x36\x13\xe4\x56\xdb\xad\x83\xe0\x8b\xf5\xfa\x2e\xdd\x71\x98\x60\x04\xea\x12\x9a\x7e\x19\xb2\x63\xfb\xe6\xcd\x6c\x43\xf2\x24\x42\x7d\x87\xd0\x30\x1b\x99\x44\x26\xbb\xd9\xd5\xb1\xb3\x45\xde\x73\x76\x16\x06\x67\xb3\x46\x7c\xda\x2c\x37\x01\x1b\xf0\x5b\x9c\x95\xf1\x86\x54\xcd\x9b\x66\x2d\x9c\x01\xe0\x2e\xc7\xce\x7e\x6c\xbc\xf0\x96\xc2\xf8\xda\xe3\x90\xba\x1c\x4b\x4d\x9c\xfd\xc1\xf8\x9b\x0b\x85\x37\x8f\xaf\x51\xdd\x34\xcb\x27\xe5\xa2\x56\xb9\x0d\xc4\x74\x04\xc6\xe1\xea\x63\x8f\x39\x03\x34\x04\xdb\x8b\x01\x78\xea\xa9\xa7\x3a\x68\xf7\x52\xda\x89\x5d\xc3\x33\x8a\x26\x1e\xf5\x0f\xec\xb9\x34\x7b\xf6\xec\x8b\xe0\x6c\xb9\x7e\xbd\x54\xba\xf9\xb7\x8d\x5b\x70\x6d\x2d\x73\xcd\xc1\xf9\xb8\x2e\x2e\x4c\x63\x06\x8f\xb2\x9c\x12\x03\xc9\xc9\x89\x78\x34\xe0\x13\x26\xd3\x51\x6b\x9c\xc0\x56\x5f\x2f\x4c\xa6\xa3\x81\xf8\x64\xda\x2a\xf8\x03\xc1\xd8\x08\xd0\x3c\xc0\x56\x5f\xda\x2a\x24\x63\xc1\x58\x3c\x10\x6c\x68\x4c\x1e\x3b\x65\xb5\x9e\xc2\x87\x8e\x45\x66\xda\xba\x30\x2e\x60\x3c\xde\xe3\xbc\xe0\xbc\xa3\xcd\x77\x2c\x12\x39\xe6\x6b\x3b\x77\x0a\xe3\x53\xd6\x0d\x52\x77\x95\x94\x3f\xc6\x34\x9d\x3d\xe1\x1e\xff\xe0\x33\xbe\xa9\x83\x17\xfc\x83\x7e\xff\xa0\xff\xd5\x87\x06\x07\x6f\x1e\x3c\xe0\x9b\xba\x31\xe5\x3b\x70\x30\xe1\x1f\xf4\xf7\x84\x3f\x7b\x68\x70\x70\x90\x14\xeb\x7b\xf5\x8f\x36\x1a\x27\x8b\xa6\x0a\x8a\xa7\xa3\xde\xd4\x2d\x39\x48\x40\x5c\x17\xbf\x16\xfe\xda\xd9\x25\xd1\x24\x51\xd7\xd7\x61\x73\xfd\xec\xd7\xc2\x5f\xdb\xb9\xb9\xbe\xbe\x3b\xdf\x88\x95\xcb\x70\xeb\xb0\x09\xa5\x5d\xf6\x82\x8d\x28\x28\x03\xf4\xc7\xd6\x3c\xba\x60\x80\xb8\xb3\x65\xfc\x58\x80\x5b\x28\x89\x1b\x74\x25\xc8\x8a\x06\xf0\xff\xd3\x1c\x34\x9f\x89\x8d\x2c\x74\x8c\xbf\xdb\xfb\x9c\x46\x4a\xff\xfd\xd0\x70\x46\xaa\x93\x95\xba\xf9\xbc\x2f\xc4\x27\xe3\x87\x66\x2e\xcd\x5c\xa6\x0d\xc9\xde\xbc\x49\x48\xa2\xc6\xf3\x48\x33\xe8\x33\x37\xcd\x70\x2b\x0d\x5e\x8c\xe5\x6f\x88\x32\x6b\xff\x3e\xbf\xf7\x3f\xb0\xf2\x6f\x7d\xfe\xf4\x6d\x4c\xfd\x9b\xcf\x17\x6f\x6f\xed\xbf\xd9\x88\x1f\x63\x8e\xf1\x7d\x5c\x27\xb3\x55\x99\xa0\x31\xa3\xe2\x31\x4a\x76\xf6\x36\x92\xa2\xdc\x1a\x42\x18\xaa\xfb\x7a\x03\x41\xf7\x3e\xb7\x3b\x18\xe8\x75\x3f\xf2\xb1\xdb\x45\x14\xfe\xdc\xbe\xc1\x5e\xf7\xbe\x7d\x6e\x72\xe2\x23\xe0\xb8\x5d\x78\x61\x83\x6f\xd8\x42\x1c\xe5\xaf\x6f\xc3\x3c\x45\xfd\xc9\x14\xb4\xc4\xac\x15\x37\xea\x09\xa8\xb7\x46\x5f\xae\x67\x37\x5a\x7d\x82\x11\xe7\x62\xab\x57\xdc\xdb\xe2\x3a\x71\x1b\xce\x96\xfa\x4a\x04\x76\xf1\xb6\x3b\xff\xc4\xdc\x24\x20\xd1\xca\xdd\xa2\x86\x3f\x25\xc5\x8d\xc0\x56\xae\x46\x40\xd3\x54\x32\xd5\xe7\x4f\xfa\x1b\x6e\x2f\x5c\x36\x93\xc8\xbc\xd8\xd1\x45\x18\xae\x9d\x9b\x59\xea\xf9\x03\xe2\x6c\xbd\x7e\x93\x3d\x4a\xdc\xda\x12\x1b\xb1\x76\xff\xab\xe6\x67\xd3\x7f\xb1\x25\x06\x1f\xcd\x6a\x38\x40\x3d\x1b\x52\x02\x8d\x01\x46\x48\x3e\xb2\x12\x33\x09\x23\x04\x4a\x99\xcc\x66\xa6\x54\xca\x92\x12\x01\x32\x99\x52\x66\x36\x93\x99\x25\xa0\x9f\x6c\x76\xcb\x45\x9c\xcc\x46\x76\x20\xdd\x42\xd6\xdf\x92\x0c\xae\xc1\x45\xce\x87\xa7\xdd\x53\xe7\xa6\xa6\x0e\x86\xba\x9e\x6a\x7e\xd0\xa7\x29\xc5\xf5\x64\x78\xba\x2b\x74\x70\x6a\xea\xdc\x94\xfb\xef\x5b\xad\x00\x4b\xbd\xe4\xf0\x7f\x8d\x2c\x06\x35\x6c\xd3\xdb\xa9\x95\xa3\x81\x6d\x08\x69\xd8\xfc\xb8\xd3\xd0\x08\x1b\x1e\x08\x9a\x1f\x99\x59\x39\x1a\x31\x99\xa8\x23\xe9\xf5\xa1\x69\x71\xfc\xe4\xb8\x38\x3d\x74\xdd\xb4\x70\xdc\x66\xde\x5f\x9e\x50\xc8\x70\x2d\x1d\xb2\xdd\x33\x12\x4d\x26\xa3\x23\xf7\xd8\x86\x58\xda\x3b\x51\xdc\x2d\x47\x37\xf0\xde\x5e\xcd\xc5\x2d\x92\x6d\x83\x5e\x6f\xd1\x59\x64\x77\x07\x13\xa9\xfb\xf7\x0f\x0c\xec\xf7\x1b\xba\x8a\xf9\xbd\x11\x45\x58\xce\x45\x0e\x76\x10\xc7\x09\xdc\x5d\xdc\x7d\x2d\x91\x8b\x83\x01\x26\xdf\x74\x83\x4f\x84\xfe\x54\x3c\x16\x17\xac\x23\x10\x9b\x81\x89\xd8\xc4\x64\x2a\x1e\x9b\x81\xc9\x5e\x98\x9c\x81\x89\x23\x30\xee\x0f\x06\x82\xe9\xc9\x5e\x08\xb8\xa9\x70\x3c\x4e\x45\xe2\x51\x10\x62\x46\x50\x0f\x25\x88\x91\x1f\xf3\x21\xec\xe6\xad\x09\x2b\x6f\x6b\x0b\x59\x90\x1f\xe1\x20\x00\x39\x80\x2c\x21\x87\x95\x1e\xe0\x5d\x8d\x03\x0f\xdc\xf9\x38\xfa\x3e\x6c\x80\xeb\x0c\xc5\x17\xc8\x83\xf9\x01\x0b\x6a\xc7\xc2\x7e\x9e\xdf\xcf\x5b\xdb\x91\x65\x80\xc7\x1e\xb0\xf1\x02\x74\x60\x7e\x80\x47\xed\x36\xdc\xc3\xf3\x3d\xc8\xde\x8e\xf8\x01\x1e\x77\x60\x01\xd9\x6e\x3c\x7e\xa7\xcd\x05\x1b\xdf\x47\x8d\x18\x48\xdb\x0d\x39\xe5\x6d\xfd\x8f\x1b\x0c\x58\xa9\xc5\xbb\xbb\x9e\x48\x24\x4a\xb7\x3a\x77\xdf\xac\xd7\x67\xe9\x87\xfb\xdf\x65\xe7\x88\x8d\xbc\x56\x84\x26\x0e\x50\x1b\x04\x23\x42\x4b\x23\xf0\x0b\x63\xa1\x1b\x2c\xe7\x3a\x88\x67\x52\x67\x5e\x30\x73\xa7\x41\x97\xa7\x4e\xb8\xca\x3a\x79\x87\xcd\x2b\x99\x2b\xa5\x66\xfc\x97\xae\x84\x68\xa6\x5e\xdc\x95\xfb\xbf\x8f\xe1\x22\xe1\x87\x86\x87\x00\x6e\xb3\x9e\xd9\x1b\x35\x64\xf4\x31\x1a\x1c\x63\x73\x3d\x33\xb9\x37\x34\xc4\x63\xa3\x34\x10\x86\xf9\x3e\x8c\x17\x75\x72\x9c\x37\x99\x8a\x32\x39\x43\xd0\x0e\x93\xdb\x89\x44\x22\xe1\x7f\xc3\xd5\x97\xb8\x97\xb8\x15\xc8\xd2\x99\xeb\x7f\x64\xe7\xd7\xe0\xc8\xe5\x56\xbf\x46\xf6\x3d\x6f\xab\x25\xb5\x90\x2f\xb9\x47\x3b\x0a\xd9\x1b\xb7\x51\x8d\x66\x09\x67\x09\x5c\x3b\x97\x85\xef\x51\x7c\x46\x68\xcc\x68\x3a\x8e\xa3\xf1\x74\x52\x08\x7a\x61\xfd\xca\x95\xec\x95\xa9\x8f\x64\xd9\x8e\x06\x50\xcf\xef\x7c\x97\x6c\xc1\xb5\x3b\x16\x35\x6d\x0d\x34\x8c\x27\x83\x66\x48\xd5\x11\x20\xad\x79\xf2\x44\xf5\xb9\xea\x89\x70\xfa\xe2\x93\x17\xd3\xf7\x26\xe0\x1d\x87\x2f\x9d\xab\x56\xcf\x5d\x3a\x1c\x1e\xba\x67\xfa\xe2\xc5\xe9\x7b\x06\xef\xa3\x22\xde\xff\xf2\xd8\xeb\x78\x8f\x8f\x03\x07\xd4\xc6\xe2\x16\x3e\xb8\xfd\xca\xbe\xea\x58\x2b\x0b\x59\xaa\xde\xd1\x7d\xa2\xbe\xf3\xe2\x1e\x83\xb0\xa6\xfe\xc0\x49\xbd\x4c\x69\x84\x6f\x33\x8f\x38\xcd\xb0\xc0\x5c\x7a\xfb\x52\x50\x72\xda\xb7\xb2\x0e\x3b\xf8\xed\xce\xac\xdd\x91\xdd\xb6\x3b\xc0\x0f\x9c\xdd\x31\x0b\x22\x19\x21\x19\x87\x7d\x67\x33\xeb\xb0\x8b\x9b\xad\xf9\x4e\xb6\x8c\xec\xaa\x03\x1c\x97\xf6\x04\xd3\xcd\x7f\x1e\xea\x7a\xc5\xfe\x0d\x18\x6b\x01\x8d\xbd\x17\xb9\xfd\x1f\x44\x98\x5c\x85\xfc\x44\xb8\xd1\x7a\x68\x67\xb6\xa5\xf0\x3d\x53\xd5\xcc\x6c\x24\x98\xbc\xc1\x41\x29\xa4\x08\x77\x9c\xea\x55\x83\x42\x2c\x6e\x25\x8b\x34\x7d\xe0\xde\xc4\x18\xb7\x90\x6d\x2c\x48\x40\x2f\xa4\x0d\xe3\x0e\xd8\x58\x1e\x8a\x66\x6c\xb6\x4c\x74\x68\x99\xac\x54\x7a\x4b\xa8\xb5\x96\x45\x6b\x84\x8f\x85\xfa\x7c\xed\xed\xbe\xbe\x50\x8c\xdf\xaa\x1f\xed\xba\xd8\xde\x7e\xb1\xeb\x68\x7d\x29\x91\x80\x4c\x4b\xf6\x8c\x70\x57\xc7\x8b\x04\xed\xbf\xd8\xd1\xe5\x12\x42\xb1\x1e\xb7\xbb\x27\x16\x12\x5c\x5c\x73\xae\x30\xfe\xb2\xad\xe9\xc5\x23\x74\x03\x65\x2d\x6f\x6e\x6f\x6f\xcd\xce\x66\x45\x91\x26\xe6\xfd\x2f\xe5\xff\xff\xeb\x62\x8e\xff\x67\x8d\xe3\x0c\x77\xc6\xc8\x59\xd3\x12\x33\xae\x17\x84\x78\xca\xb0\x83\xa6\x1f\x2f\xf8\xc1\x73\x84\x48\x79\x61\x29\xb2\x64\x8d\x4d\x1c\x3e\x7f\x5e\x3f\xd7\x67\xdd\x9a\xa2\x95\x4b\x91\x25\x8f\xb5\xef\x9c\x7e\xfe\xfc\xe1\x89\x98\x95\xdc\x73\x88\x13\xe1\xb7\xe9\x3b\xcf\xb4\xc4\xa1\x6b\xae\xb0\x64\x01\x1a\x81\xc6\x0a\x1b\x9b\x48\x37\xd7\x57\xe6\xad\xdc\x5c\x5f\x7d\x7f\x4c\xfd\x05\x5e\x1c\x12\x2c\x22\x6f\x4f\xf9\xdd\x36\x64\x9b\xb5\x21\x9b\xd7\x93\xb2\xf3\xa2\x45\x18\x02\x78\xf9\x43\x9f\x1a\x24\x17\xb7\x45\x2d\xf6\xd3\x02\xf6\xbb\xad\x53\x76\xfb\x94\xcd\xe9\xc7\xc2\x69\xbb\x25\x2a\xf4\x08\x2f\x77\xa0\xc5\xfe\x2d\xcd\xdd\xc3\x3d\xc0\x71\x07\x26\xe2\x46\x60\xf7\xd8\x08\xc4\x44\xe8\x77\x83\x55\x88\xc7\xdc\x60\xed\x05\xab\x2f\x28\x58\x7b\x21\x30\x03\x81\x5e\x08\x1c\x81\xf1\x19\x98\x4c\x07\x03\x33\x30\x39\x02\x7b\x15\x77\x0d\xaa\xb0\x0a\x11\x0b\x1f\xc6\xd6\x01\xa7\xc3\x8a\x2c\x47\xad\x60\xdd\x67\x1f\xb0\xf0\x61\xde\x12\x81\x97\x3f\x14\x6b\xda\xca\x52\xbd\x51\xe8\x9f\x7c\x96\x4e\xde\x3a\x61\x41\xee\x36\x4b\xdc\x6a\x3d\x28\x08\x6e\x64\x4d\x5a\xf9\x4e\xcb\xcb\x1d\xf8\x6a\xeb\x42\xb0\x1e\x32\x73\xc1\x71\xc6\xfb\x06\x08\xad\xdf\x61\x18\xbd\xb7\x0e\xff\x78\x72\xc2\x34\x75\xfd\xe4\x73\xd5\xea\xb9\x3b\x93\xe1\x83\x23\xd3\x17\x2f\x92\x09\x90\xcd\x6c\xd3\x1b\xc1\x66\xf5\xb9\xea\xc1\x70\x37\x9d\x00\xd9\xec\xb9\x19\x23\xec\x00\x67\xe5\x4a\x1c\x07\xd7\x10\x67\xc4\x44\x34\x35\xa7\xb7\x89\x8a\xe8\x35\xa2\xe4\x52\x4a\xef\xd8\xc1\x83\xc7\x5a\x62\x22\x66\xc4\x9b\xa2\x98\xf8\xea\xc1\x73\x20\x9c\x3b\xf8\xc8\xa3\xd7\x3e\x30\x17\xbe\xba\x1a\x9e\xfb\xc0\x0e\xc7\xdc\x1f\x39\x0b\x47\x16\xb6\x3a\xe2\x5e\x46\x3f\xbb\x2b\xf2\x8a\x99\xf9\x1b\xb2\x37\xa8\xe1\x09\xdd\xac\x8b\xf5\x44\x5d\xdc\xa0\x38\x33\xcb\x08\x09\xb2\x8a\x7a\x42\x8d\x67\x34\x6d\x96\x2c\x54\xf2\x79\x88\xcc\x42\xd2\x4d\x42\x2a\x9e\x4e\x25\xd3\x41\x82\x40\xfc\x51\x21\x1e\xbc\xcd\x1a\x0d\x5c\x28\x16\x53\x22\x91\x94\xf9\xff\x85\x3d\xeb\x75\xa6\x1e\x9b\x88\xad\xa7\x5a\xce\x38\x7e\xeb\xfa\x4d\x2d\xcc\x6b\xf0\x1d\x78\x86\xb3\x50\x3d\x1e\x8b\xea\x4a\x63\xd8\x0a\x46\x66\x7b\x2a\x83\x60\x91\x6f\x5f\xa1\xeb\x7d\x8f\x3d\xa6\x24\x66\xc5\x0d\x31\xf4\xd8\x63\x7d\xba\x0e\xcf\x3c\xf3\x4c\x77\xb5\xfa\x5a\xc3\x5b\x31\xf1\xda\x6a\xb5\xfb\x99\x67\x18\xee\xec\x37\x62\x6e\xf7\x70\x07\xe9\x48\xf0\x47\x0d\x31\x80\xc5\xcf\xc4\xac\x29\xe6\x16\xe1\xa7\x68\xcc\x3c\xf8\xbe\x2f\x3c\x2d\x56\x9f\xab\x8a\xc0\xdd\x1b\xce\x64\xc2\xf7\x46\x7a\x07\x7b\xb5\x27\x2f\x26\x66\x2e\xcd\x24\x60\xfb\x69\x89\xac\xfb\xd2\x3b\x4e\xb2\x83\x27\x9d\x07\x02\xbd\xbd\x81\x03\x9f\xbd\x38\x4d\x58\xf3\x69\x9a\x5b\xdc\x8c\x3b\x13\xe0\xfa\xa9\xf5\xe6\xdd\x4c\xab\xc0\xe2\x9a\xc7\xb0\x9f\x7e\x2c\xfa\xe4\x60\x13\xa4\x42\x7a\x1f\x8b\x7c\x9e\x6e\x89\x82\xde\x7a\x3a\x94\xea\x9d\x5e\x31\x31\x2b\xd6\x45\x47\x87\x63\x43\xac\x27\x9c\x1d\x8e\x9d\x6c\x3d\x21\x7a\x3b\x37\xea\x9d\xde\x84\xb7\x33\x9b\x20\xc7\x9c\x1b\x89\x84\x3f\x22\x5c\xbe\xec\x86\x8b\xd9\x7a\x3d\x6b\x77\x3a\x1f\x67\x3b\xfb\xce\xcd\x44\x62\xc8\x7d\xf9\xb2\x10\xf1\x1b\xe7\x08\x11\x98\x31\x4e\xe2\xfe\xaf\x6f\x7f\x6b\x0e\x80\xfd\x1c\xe7\x65\x49\x99\xe8\x2f\xc8\xc2\x37\xc6\x1b\xd9\x10\xfc\x1b\x89\x40\x22\x90\x10\xfd\x99\x1b\x19\xbf\xa1\x70\xcf\x90\x41\x94\xc9\xd4\xeb\xf4\x47\xb8\x08\x8e\xea\xd2\xcc\x1c\x23\x4c\x0f\x11\xe7\x92\xdc\x91\x66\xfe\x31\xd3\xde\x62\xaf\xf4\xd6\xc4\x91\x93\x6c\xbe\xd2\xa7\x5a\x8d\x2b\x60\x9a\x72\x58\xc7\xe8\xf6\x43\xd4\x1c\x33\xf7\x85\xa7\x9f\xfe\xc2\xd3\xef\xa4\x35\x1b\x1d\xae\x8c\xab\x83\x6c\x98\xdb\xc6\x26\xb5\x72\x7e\x25\x85\xbf\x59\x25\xa7\xc3\x91\xa7\xc9\xf9\xef\xa7\x07\xbe\x41\x2f\x7a\x25\x73\xe1\xb0\xee\xa2\xb1\x03\x5c\x17\x8d\x6d\x78\xfb\xec\x8c\xc2\x08\xf8\xe3\x03\x41\x21\x1e\x8c\xee\xa5\xb8\xb7\x45\x31\x9b\x82\x54\x2a\x55\x17\x67\x6f\x43\x7a\xef\x6c\x4f\x4e\x12\x46\x4a\x14\x3f\x3d\xb9\xdb\x2e\x22\xc2\x1d\xa0\xf1\x58\xfe\xa3\xe8\x74\x71\xc3\x6c\xf1\x76\x11\xea\x18\x17\xd2\x29\x8a\x09\xc8\x88\x57\x6e\xcf\x88\x3c\xc3\x58\x61\x1a\x57\x9e\x33\xe2\xc9\x35\xa2\x54\xf5\xa5\x92\x7e\xfc\x32\xd4\xbc\xc7\xc4\x97\x19\xb1\xed\x74\xe1\x2d\x85\xd3\xe1\x63\x67\x96\xce\x4c\x0f\x25\x12\x75\x51\x14\xe1\xfd\x13\x97\x4e\x16\x0a\x27\x2f\x4d\x84\x63\xa7\x52\x67\xce\xa4\x4e\x0d\x3c\xb8\xb5\xb5\x63\xe2\xcc\xcb\x9c\x1f\x3e\x8c\x38\x9a\xbf\xbb\x93\xbe\x27\x0b\x18\x12\x9f\x14\x8c\xd0\x21\x2d\xe2\xce\xdd\xf1\xc7\xb8\xfc\x5d\xe1\xa9\xe7\xa6\xc2\x77\xdb\x07\x9f\x1c\x0c\xf7\x5e\xee\x3d\x42\x97\x95\x12\x33\x7c\x70\x38\xec\x88\xbb\x3b\x3c\x35\x15\xbe\xfb\x35\x83\x83\xe1\xde\xde\xf7\x9b\xb6\x12\x2f\x71\x64\xe4\x13\x5a\x9b\xb3\xd0\xf5\x67\x9d\xe6\x06\xf5\x52\x9f\xf3\x38\xa5\xda\xd9\x64\x4b\x25\xe9\x5b\x62\xe3\xfd\x26\x19\x09\x4b\xbf\x01\x8d\xd1\xbe\x7e\x26\x95\x48\x9d\x39\x70\xd7\xa3\x77\x8d\x89\xf5\x84\x85\x4a\x1e\x36\x44\x10\x27\x2f\xd8\x4e\x9e\xb4\x5d\x98\x1c\x99\x9e\x1e\xd9\xd9\x22\x2f\xba\x1d\x0b\xd5\x43\x31\xb2\xd9\xf9\x8e\x28\x36\xe3\x0e\x6d\x99\xf1\x68\x66\x20\x9e\xa6\x93\xaa\x31\x9c\x1a\xd3\x6a\xf3\xb9\xe7\xfc\xb3\x89\x3a\x23\x84\xeb\x9d\x1d\xb3\x1d\x9d\xf5\x52\xb6\x24\x8a\xe2\xce\x36\x0b\x4d\x43\x53\x59\x1a\x76\xee\x64\x5e\xb1\x7b\x32\x49\x54\x8a\x4d\xd5\x86\xd6\xc2\xbc\xab\xc5\xdf\x67\xd6\x01\x57\xab\x65\xc5\x52\x57\xc7\xce\x56\x47\xe7\x52\x57\x47\xb6\xa3\x6b\x67\x13\xb2\x9d\xa4\xdc\xb5\x99\xcd\x90\x47\x31\x9a\x5a\xa4\xda\xcd\x6d\xf2\xb8\xed\x16\x7a\x9a\x50\xd3\xfd\x4d\x8a\x2e\x9e\x8c\xd3\xe4\x52\x2e\x10\x58\x58\x53\x36\x5a\xd3\x93\xe3\x41\x16\x7a\xdb\x5f\xcf\x28\xf3\x76\x67\xdb\x41\x8b\x3d\xb2\xf3\x62\xc4\x3e\x09\x4e\xfb\xfc\x63\xd6\x4e\x2b\x23\x3b\xde\xfe\xf8\xe3\x0e\xfb\xc1\xb7\x7b\x7b\x7b\x7f\x0d\xf1\x76\xc7\x9b\xec\xf6\xff\x23\x72\x15\x0a\x7b\x62\x23\xb2\x11\x33\xf0\x43\xf2\xd9\xed\x89\xb2\xb6\xb1\xb1\x51\x2a\xb1\x90\x0c\x2d\xa9\x7e\x20\xcb\xd2\x67\x8a\x62\xdd\x04\x76\x1b\x0f\x60\x6e\x82\x8b\x18\x74\x05\x99\x25\x46\x5c\x78\xd2\xcb\xf1\xa8\x10\xf5\x26\xbd\xf0\xe5\xf0\xf3\xe5\xf0\xfd\xcf\x5e\x1a\xcc\x76\x5d\xed\x1c\x5a\x3e\xb8\x0c\xf6\xf0\xf3\xcb\xe1\x07\x3e\xbb\xf2\x42\x26\x03\xfe\x9d\xed\xdd\x71\x4f\xec\x9c\xa7\x35\x0f\x5b\x43\xbf\x76\xb9\xf3\x5c\xf1\xd0\xa1\xe2\xb9\xce\xcb\x97\x28\x77\x50\x5f\xb8\xdb\x7e\x45\xb2\xdd\xbd\x30\x09\xbd\xa6\xce\xf5\x3f\x27\x6f\x0f\xcf\x65\xb9\x12\x6c\xd0\x9c\xda\x86\xdd\x97\xa9\x2b\x49\xf9\xfb\x52\x41\x7f\x34\x95\x65\x62\xcb\x9d\x1b\x37\x6f\xc2\x7a\x62\x83\x76\xcf\x46\x22\xc1\x64\x02\x4c\x9f\xd5\xc6\x75\x18\x79\x70\xc6\x83\x56\xea\x69\x3c\x0d\x81\xf1\xc0\xae\x40\x11\xa6\xb3\xee\x66\x60\x7f\x72\x3d\x7d\xe7\xb3\xa7\xcf\xbd\xe8\xa1\x13\x75\x85\xb2\x57\xdb\xd6\x9e\xe1\xd1\x54\xf0\xc0\xbe\x40\x24\x34\x3a\x1a\xba\x42\x05\x84\x47\x0c\x29\x2b\x67\xe8\xce\x36\x61\x9d\xca\x8d\x39\x30\x85\xc5\x34\x40\x3e\x6c\x66\xaf\x5f\xbf\x79\xfd\x7a\x16\x32\xd9\x4c\x22\x53\xcf\x24\x32\xd9\x5d\x76\x69\xf4\x1a\x2f\x93\x8f\x07\xa9\xb4\x39\xb9\x49\xa5\xe1\x99\x6c\x36\x93\x60\x97\x67\xb3\xd7\x77\xc9\x21\xac\x8c\x7f\x1b\xa0\x3d\x1a\x8c\xd3\xd5\x36\xde\xd0\x94\xd5\x52\x62\xea\xcc\x73\x64\x33\xc4\xd4\x97\xd9\xec\x99\xe7\xb3\xd9\x33\xa7\x1b\xb1\x13\xfc\x5c\x0a\xb6\xe1\x53\x5c\x90\xca\xe6\xf7\x4a\x4a\xfd\x51\x4f\x9f\x27\x9a\xc2\x71\x96\x5c\xb1\xc5\xfc\xb0\x5e\x87\x7a\x9d\xbe\x07\x7c\xca\x4c\xb5\x4f\x46\x69\x62\x67\x0b\xc4\xc4\xce\x76\x76\x73\x73\x97\x4f\xad\xc5\xf8\xfa\xa9\xe8\xad\xb4\xec\xe6\xc6\x56\xeb\xca\x57\xda\xca\xee\xdc\xdc\x1d\xc7\x99\xf4\xad\xbb\x65\x5d\x25\x63\x60\x9f\x91\xa9\x3f\xc2\xc5\xa9\x1d\xc6\x04\x77\x07\x77\x8c\xc9\x18\x18\xfe\x4d\x33\x0d\x9a\xcf\x0a\x86\x51\x89\xd7\xf8\x61\xf6\xcd\xb1\x69\x93\x11\x24\x75\x13\x93\x4d\x7d\x1b\x94\x12\x75\x32\x7e\xc4\xd0\xce\x8f\xd3\xa8\x28\x5b\xa2\xe8\x09\xdd\xdc\xa2\xe2\xdf\xba\x78\x93\x1a\x96\x30\x53\x8d\x8d\x44\x62\x43\xf4\x84\xc8\xac\xdc\xd9\x10\x45\xb2\x7f\x89\x23\x13\x36\xe4\xc9\xd6\x77\xea\xd4\x60\x83\x1a\xfc\x79\x42\xe2\x0d\xaa\xae\xe3\xfe\x8f\xc8\x75\xc9\x68\x2a\xf2\xfc\x1e\x16\x0b\x9f\x76\x8a\xcf\x0d\xf1\xd8\x31\x48\x13\x8a\x21\x1d\x65\x39\xfe\x61\x7d\x76\x36\xeb\x09\x39\xdf\x14\xb4\xfb\x5f\xef\x09\x01\xe0\xe3\x6d\xfb\x61\xf3\x25\x8e\x99\xa8\x38\xdf\x1c\xb4\x3b\x85\xb9\x2e\x0f\x3a\x64\xb3\x5d\x0f\x35\xbf\xf9\x36\xfd\x3a\x1c\x08\x49\x03\xdd\xd2\xe5\x70\x06\x82\x81\xfd\x20\x24\xc7\x03\x16\x4f\xd2\x03\xdb\xec\x76\x9b\xcd\xfb\xef\x24\x66\x41\x64\xf7\x6a\xbd\xfd\xbf\x11\x4e\x8a\xf2\x97\x1c\xe2\xa8\xbe\x6b\xc4\x8c\xe2\x43\xda\x9c\x9a\x06\x16\xde\x8f\x36\x39\xbe\xf7\x89\x64\x6d\x49\x8e\x07\xe0\x05\x57\x87\x7d\xc9\x23\xe0\x76\x50\xec\x0e\x34\x66\xf7\x9d\x23\x9b\xb7\xb5\xd6\x82\xe8\x75\x3e\xe3\xb2\x17\x3d\x42\x9b\x6b\x42\x70\xd8\xbb\xb1\xed\x09\x5f\x96\x6e\x77\x1d\x78\x39\x1d\x2e\xcd\xd6\x62\x44\xc8\xef\x6b\xe8\x72\xfb\xfc\x84\xcc\x22\x6b\x70\xbd\xa9\xcb\xdd\x26\x14\x0f\x8d\xbf\x33\x6b\x8c\x0c\xbc\x27\x26\x3a\xe7\x35\x5c\xfc\x5e\x2e\x22\xfa\x7a\xa9\x74\xbb\x68\xe8\x20\x96\xb2\xb7\x8b\x85\x6e\xc6\xcb\x62\xb6\xd3\xcc\xa7\x8b\xeb\xf0\x05\x82\xfe\x61\x98\x98\x4c\xfb\xad\x7b\xbd\x97\x32\x23\xb1\xa9\x53\xa7\xa6\x62\xef\xa1\x99\x69\x0f\x53\x51\x10\x24\x1e\xa2\x99\x2b\x56\x1e\x75\x0d\x3a\xff\x9a\x26\xa4\x7d\x81\xca\x83\x1a\xfa\x48\xd8\xe2\x52\x0d\x69\x2e\xc5\x23\x0d\x52\x30\xe5\x02\x83\x16\x8c\xa7\xcd\xca\xc9\xd6\x5a\x78\x76\x9a\x20\xa7\x4b\xfe\x40\xa8\x3f\x14\xe8\x39\x30\x7e\x72\xbc\x2b\x1c\x3b\xb3\x74\xe6\xd8\xf0\xcc\x45\xf9\x4d\xf2\x38\x3c\x3b\xfd\xf0\x25\x82\xcc\x3e\xe9\xe8\x22\xef\xd6\xe5\x18\xb2\x0d\x86\xa3\xe3\xe3\xd1\xbe\xee\x30\xcb\xac\x31\x72\x8f\x4d\xb4\x5d\x39\x7e\x52\x96\x4f\xde\x33\xce\xed\x89\x1b\xd8\x46\xa3\xa8\x26\xe3\x69\x2f\xcd\x2e\xe4\x75\x03\x4d\x89\x17\x4f\x06\x82\x93\xe9\x86\xe7\x9e\xd5\x0d\xf0\xe0\xdd\xd1\xc0\x15\xb1\x53\xee\x14\xaf\xdc\xe7\xb9\xb3\x14\x5e\x3e\xd8\x29\xfa\x7b\x86\x03\xdf\xb9\x9e\xb8\x3e\x13\x4a\xc1\xfa\x63\x77\xbc\xc4\x65\x32\xc0\x95\x07\xef\x5c\x0a\x97\x06\x53\x07\x7b\x93\x33\x62\x22\x21\x9e\x3b\x02\xac\x2f\x98\xdd\x34\xcd\x8e\xc3\x22\x5d\x05\xd3\x7e\xc8\x8e\x2d\x66\xdf\x1b\xae\x67\x5f\x37\x56\x6f\x42\x2c\x8e\xc0\x06\x6c\x41\x96\xe6\xa6\x13\x52\x7d\xa9\xbe\x14\x6c\x65\x77\x36\x21\xc3\x94\xa2\xdc\x9e\x7b\x02\x4d\x00\x46\x6f\x0b\xd9\xfa\xd8\xeb\xb2\xf5\xf0\x7b\xb3\x8b\x50\x6f\x80\xff\xfb\xfd\x10\x9a\xb1\xe7\xa8\x7f\x31\xb3\x87\xf7\x06\x09\x3b\x3a\x0c\xc7\x80\x79\x93\xd4\x37\x2b\x17\x2e\x54\x98\xf3\x08\x70\xb3\xf5\x87\xdf\xe9\xf3\xbd\xf3\xe1\x7a\xd3\xb7\x98\xf9\x68\xf7\x36\xa2\x74\x35\x6c\x9c\x2d\x7b\xca\x2c\xe6\xfa\xce\x3a\xb5\x6d\x2e\xb5\xc0\x9b\x4d\x0b\xe7\xad\x16\xd3\x66\xaa\xe7\xae\xd3\xf5\xd9\xc8\x3b\x93\xf6\x24\x3d\xde\xa4\x27\xda\xe7\x49\x7a\x36\x36\xfd\x99\xcc\xce\x56\x86\xbe\x9a\xf9\x63\x6b\x6d\xa9\x25\xd6\x25\xe5\xac\xfa\x68\x90\xe3\xa4\x07\xea\xd9\xec\xce\x46\xd6\x7f\x13\xea\xdb\xdb\xdb\x09\xc8\xec\x6c\x9a\xfe\x18\xbb\x9e\x03\xc6\x33\xc8\x3f\xc8\x96\x4a\x2f\x71\x25\x7f\x09\xd6\xf7\x3e\xc7\xe4\xe1\x1a\xd6\x20\x7b\xdf\x18\xa7\xfa\xfc\x22\xac\xef\x94\xa0\xde\x7c\x5d\x3f\xf9\x62\x19\xd1\x61\xbe\xa8\x63\x67\x3b\x93\xf9\x61\x34\x93\xc5\xc0\x49\x0d\x9a\x89\xfd\x60\x9d\x2c\x15\xe6\x2a\x65\xa5\xd7\x6f\xb6\x5c\xff\x43\x6d\x54\x36\x4d\xf5\x00\x70\x3b\xeb\x34\xea\x38\xac\x67\xb7\xb2\xd9\xa5\xd9\xd9\x52\xd6\x00\xe8\x3d\xeb\xb7\xde\x13\x92\x7e\x11\x8c\x85\xd8\x94\xa6\xb1\x38\xc6\xa5\x52\xbd\xe4\x2f\x6d\x97\xb6\x4b\xa5\x12\xac\xd7\xeb\x75\xf2\x63\x3b\xd3\x06\x64\xf7\xfd\x28\xc6\x24\xf7\xa1\xbd\x9d\x4a\xfa\xb7\xb6\xb7\xeb\xa5\x9d\x75\xda\xdd\xe4\x32\xd2\xd9\x46\xac\xe3\xd6\x6b\x1b\xef\x95\x85\xd2\xce\x3a\x18\x27\x9b\xfa\x7a\xd6\x0f\x6e\x66\x99\x0f\xbb\x19\xcb\x23\x7b\xca\xc9\xe8\x5e\xc6\x93\x06\x75\xa6\x66\xf8\x37\xa9\xaa\x86\x14\xb7\x19\x44\x06\xeb\x3a\x65\x31\x09\x44\xb7\xb7\x87\x19\x0e\xbb\x02\xdb\xf0\x5c\x23\x26\x5f\x43\xce\xd1\xc0\xd9\x41\xea\xe0\x33\xf9\xe7\x94\x62\xf5\xd1\xb8\x01\x3d\xef\xad\xf7\xf4\xd4\xc9\x06\x32\x94\x5a\x7d\x2d\x8d\x1d\xf0\x9b\x97\x4e\x9d\xba\x74\xe9\xd4\x29\xce\xe0\x03\x5f\x34\x68\xb4\x01\x82\xb9\xbd\x2c\x54\x24\x73\xb7\x4d\xc7\x9b\x39\xe5\x85\x61\xa0\xa5\xf8\x64\x7a\x18\x82\x86\xc7\x6d\xd0\xca\x3c\x6e\xff\x1d\x87\x62\xef\x73\xcc\x0c\x06\x3b\xfb\x6c\xd6\x50\x0c\x3d\xdb\x0d\xd7\xba\x2d\x29\x97\x38\xfe\x40\xbd\xa7\x2b\xed\x10\xbf\xee\xf3\x0e\xc7\x87\x1f\x78\x75\x4f\xe7\xd8\xb4\x6d\x06\x32\xb1\x10\x9f\xec\x0c\x0e\xce\x38\xfa\x50\x2c\x64\xb5\x3d\xdb\xbd\xf3\xba\x6e\xcb\x84\xab\xe3\xd2\xa9\xe9\x41\xc7\x60\xda\x36\xec\xbe\x74\xea\x48\x62\xda\xeb\xa3\x71\xb9\xff\xef\xd7\x27\xb5\xf2\x83\x3d\xbb\x6c\x30\x98\xcd\xb0\x3f\x2e\xa4\xa2\x0d\xd4\xd6\x6a\x88\x31\x9b\xcd\xd2\x3d\x88\xf5\x7a\x49\x14\xc1\xdf\xd9\xb1\xdd\xd1\xb5\x94\x48\x2c\x75\x75\x6c\x77\x74\x36\xf4\x9e\x5b\xc6\x9c\x1a\xda\xed\x97\x6a\x31\xec\xa2\x6e\x67\x13\xc5\x22\xb9\xc2\x46\x46\xac\x8b\x19\xf2\xc4\x52\xbd\xd4\x7c\xed\x4c\x57\x47\xbd\xa3\x6b\xab\x9e\x48\x24\x12\xec\x5d\x45\x51\x6c\xbe\x22\x95\x24\x88\xad\x31\x21\x30\xd5\xb9\xa6\xa2\xfe\xe4\xcb\x3f\x4b\x9c\xbd\xd9\x7c\xc2\x2c\x95\x50\x10\xba\xf4\xd6\xdb\xd2\xf5\xee\x0c\xd5\xa9\x45\x98\x75\x3a\xd5\x26\xed\xd5\x27\x18\x5f\x32\x08\xa5\xa5\xde\x92\x35\x36\x11\xeb\x8b\x78\x7d\xd4\x1a\xe6\xf4\xa5\x0b\xa9\x0b\x77\x1c\x3e\xdf\x6f\xdd\x5a\x8a\x94\xf6\x59\xfb\xbc\xbd\x36\x6a\x43\x93\xcd\xde\x71\xe1\xfc\xe1\x64\xdc\xca\xd6\x3c\x96\xd7\x0c\xd1\x95\x37\xd8\x27\xf4\xf9\xfb\x80\x7b\xcb\xce\x9f\x09\xd4\x7c\x61\x7d\x4b\x4c\xb4\xc4\x7e\x66\xb1\x0c\x08\x0d\x31\x02\xd4\x84\xda\xfa\x43\x72\x64\x03\xd7\x7d\xf8\x70\x77\xf7\xe1\xc3\xf7\xdc\x2e\x49\xf6\xfa\x91\xee\xd0\x91\x23\xa1\xee\x73\x33\x97\xa6\xa7\x2f\x01\x88\x5d\x4d\xdb\x9d\xae\xdd\x36\xd8\x5e\x9a\x8f\x3b\xce\x24\xe9\x3e\xab\x3f\x3a\x31\x8d\x4c\xbb\xba\xbd\x61\x69\x08\xfa\xfb\x83\x93\xe3\x99\x84\xaf\xd3\x17\xea\x0f\x25\xdc\xbb\x0d\x58\xeb\xe3\xd1\xee\x3b\x82\xc1\x3e\x77\xc0\x45\x5a\x11\xfd\x41\xab\x32\xef\x9b\x86\x6d\x46\x66\x0f\xee\xbf\x65\xed\x68\xc9\xd2\x46\x33\xb5\xed\x5a\x3b\x70\x43\x1f\x48\x68\xcc\x01\x8e\x83\x66\xc8\xc5\xa4\xf5\x65\xb5\x83\xc0\x89\x7e\x51\xf4\x8b\x8f\xdd\x46\x4b\x08\x22\x39\x22\x96\x6e\xab\x2c\x6c\x3e\x0f\x1b\x92\xe7\xa4\xbf\x11\xb1\xff\xd6\xe7\xac\x97\x4a\xae\xdb\x3d\x22\xe3\x9f\xbd\xbd\x2e\x92\x60\xc6\x4d\xd8\x86\x0c\x8d\x31\x1b\xe4\x7a\x4d\x5e\x2d\xdd\x98\xbb\x4c\x53\x62\xbc\x26\xdd\xb3\x3c\x8d\x51\x26\xeb\x7c\x5e\x14\x9d\x5e\xaf\x53\x8c\xd4\xae\x44\x22\xd7\xaf\x44\x22\xd9\x48\x44\x8c\x44\xa0\xdd\xef\x4f\x79\x9d\x7e\xa7\x57\xac\x47\x22\x91\x2b\x57\xc8\xaf\x5d\xac\xa7\x52\x75\x71\x97\x3d\x03\xd3\xce\x74\x51\x4e\xdf\x14\xc9\x25\xfd\xd1\x01\x83\x3f\xa0\xde\xe7\x25\x96\x28\x75\x67\x33\x93\x81\xa5\x4c\x66\x67\x13\x66\x33\x37\xb7\xa9\x3a\x6a\x29\x93\xc9\x6c\xd4\xeb\x99\x0c\x19\xef\x29\x2e\x03\xcf\xc3\x96\x21\x91\x89\x8d\x40\xaa\x17\xa5\x7a\x51\x18\x04\x17\xc4\x2d\x64\xf0\x8b\x17\x9e\xec\xef\xf5\x2d\x1d\x3a\xf2\x84\xd3\x89\xf9\x80\x73\xe7\x5d\x70\x7d\x67\xe9\x37\x83\x91\xb6\x8a\x6d\xbc\xe7\x93\xed\x9b\x61\x3e\xe8\x74\x3a\xf0\x5d\x74\xee\xc7\xb9\x0c\x7c\x0b\x7e\x9e\xdd\x8f\x0b\x58\x05\xab\x1b\xc5\x08\x59\x4a\x7e\x93\xf4\x86\xdf\xb0\x3a\x9d\x4f\x5e\x78\xa2\x5f\x18\xeb\x4d\x2c\x5d\x3a\xf4\x4e\xd5\xb9\x73\x95\xdc\x12\x66\x42\x01\xbe\x2f\x10\x6e\x73\x3c\x64\x8b\xf4\xbc\xbb\xfd\x8d\x61\xfe\x4f\x44\x96\xdb\x2d\x4b\x06\x15\xd7\x4e\x73\x2a\x31\xc1\x6a\x92\x8c\xee\x74\x92\x4e\xfa\x3a\xb5\x17\x3b\xb3\x74\xa6\x94\x38\x73\xe5\xca\x99\x2d\x42\xff\xa7\xce\x9c\xf9\xde\xea\x95\x2b\x46\x5e\x8a\x4d\x58\x87\x0c\x67\x37\x62\x56\x44\x8d\xa0\x15\x64\x75\xde\x4f\x4a\xa9\xa4\xbf\xe9\xa7\x71\x04\xf9\xa3\xb0\x9e\x11\xc5\xc8\x95\x2d\xbb\xe3\x74\x22\x62\xac\xcd\xb5\x48\x04\x22\xfe\x88\x58\x77\xd8\xdb\x33\x11\x6a\x68\x31\x6b\x77\xd4\x77\xe5\x50\xf7\x1a\x52\xad\x5b\x7c\xff\x6f\xb6\xfa\xfd\x6f\x27\x12\x5b\xbb\x25\x1a\xad\x3a\x78\x2a\x61\x63\xd4\x32\xf5\xf6\x37\x26\xf2\xef\xbf\x35\xfc\xc4\xa1\xf0\x4d\x23\xc8\xf0\x16\x2d\xbd\x47\x14\x0d\xdf\x31\xaa\x0f\xbd\xcc\x5d\x80\x4f\xc0\x4f\x53\x9c\xd4\xc1\xf9\xb9\x4e\x1a\x85\xce\x70\xd7\xef\x30\x14\x20\x42\x2a\xe9\x89\x92\x51\xe2\x49\xfa\x21\x75\xe2\x84\x74\xe2\x44\xe5\xd2\xa5\x27\x67\x67\xcb\xd9\x2c\x64\xb3\xd9\x37\x90\x1a\xe9\x04\xb4\x91\xba\x27\x2f\x65\x08\x49\x4b\x0e\xec\xf1\x99\x18\xb9\xd5\x67\x22\xd8\xbf\x1f\x7c\x49\xfa\x6d\x68\x30\x9e\x63\x60\x46\xdf\x89\x4e\xc4\x63\xf1\x58\xab\x1f\xc5\xd7\x0f\x1e\x74\xfb\x62\x01\x7f\xf8\x60\xc2\xd7\x19\xeb\xf3\xfa\x63\xd8\x82\xda\x76\x39\x54\x74\x1f\xb6\x1e\xf6\x38\xbb\xbc\x1d\xa3\x09\xeb\xa1\x60\xb7\xd7\xdf\x23\x58\xdb\x50\x1b\x67\xe1\xa6\x39\x11\x7e\x15\xb6\xb8\x49\xee\x34\x27\x73\x4f\x72\x6f\x26\x33\x21\x16\x37\x55\x88\x2c\xfd\x72\xb4\x9f\xfa\xaa\x05\x03\xd6\x78\x6c\x82\x39\x7f\x1b\x2c\x26\x4d\xdc\x1d\x0c\x04\x03\x82\x35\x4e\xa3\xa2\x8d\x53\x38\xda\x4f\xee\x90\x1c\x17\x68\x1e\x21\xe3\x5e\xfd\xbb\x4e\xc7\xfd\xb1\xf4\x64\x7a\x72\xdc\xb8\x38\x16\x1f\x06\xc1\x2a\x58\x07\xfa\xe3\xb1\x68\xbf\x60\x8d\x19\xef\x6b\x85\x69\x3c\xdc\x37\x1c\x9b\x8c\x77\xc5\x42\x8f\x64\x86\xcf\x7a\x1d\x2e\xec\xc3\xfb\xdc\xfe\x8b\x13\xf7\x2e\xc4\x27\x63\xa1\x58\xd7\xc1\x9e\x84\x1d\xa1\x63\xe9\x43\xc8\x65\xb7\x03\x6a\x77\xb8\x0e\x86\x92\xed\x6d\x77\xf0\xb8\x7b\x5f\xf0\x9e\xc2\x3d\x81\xc3\x17\x0e\x7b\x9d\xdd\x36\x1b\x7e\x5a\xb0\xf2\x91\xd1\xf1\xab\xe3\x63\xbd\x56\x7b\x9b\xa5\x7b\x68\xb8\x3c\x3c\xd4\x83\x61\x90\x87\x23\x47\x8f\x4f\x5a\xed\x96\xc3\xf7\x1c\xcf\x08\xbc\xe8\xe8\x1b\x3e\x1e\x1a\x18\x08\x79\x3a\x3b\x3d\x47\x67\x47\xe2\x5d\xd1\x83\x03\x6d\x56\xfb\xd0\xfd\xe1\xa1\xc9\xfc\xdd\xa1\x03\x07\x42\x04\xc5\x4f\x1d\xec\x69\x07\x87\xed\x3d\x03\x93\x08\x5b\xda\x11\xf2\x46\x0f\xb7\x7f\x10\x77\x87\x0f\x4e\x8c\x9c\x38\x31\xd2\xd6\x16\x4f\xa7\xe3\xa3\xfd\xc1\xfd\x82\x0d\x03\x6a\xb3\x0e\x77\x86\x42\x9d\x43\x6d\x16\xab\x3d\x1e\x0c\x42\x67\xf0\x20\x5f\x85\x70\x18\x0b\xed\x7c\x24\xc2\xef\xe3\x1a\xf6\xb1\xdf\x6a\xc4\xab\x70\x1b\x99\x4f\x83\x42\x5c\x48\x83\x30\xd0\xe7\xef\xbb\x70\xf5\xe8\xda\x77\xaf\x1e\x5d\xbb\x7c\x14\x86\x8f\xee\xac\x52\xce\x60\x72\xed\xe8\xd5\xef\xae\x1d\xbd\x7a\xf9\xe8\xce\xd7\x8f\x86\xc4\xd6\x1c\xc0\x4e\x1a\x2b\x92\xc5\xfb\x63\xd6\xd3\x66\xde\xf0\x66\x52\xf5\x58\x6a\xc2\xdb\x98\xb6\x70\x6c\x78\xe6\xd2\xcc\x70\xc7\x6c\xf1\xc9\x8b\x19\xca\xf5\x64\xb2\x75\x3a\x3d\xff\x2a\x92\x1e\x9c\x99\x19\x4c\x47\x9c\x63\x63\x3f\xb8\x38\x7d\xff\xe0\x18\x99\xb7\x63\x83\xf7\x4f\xef\x7c\xc1\xef\xb7\x3b\x1c\x2f\x63\x07\x37\xb0\x3b\xfc\x11\xcb\x36\xb7\xb9\x53\x87\x8d\x50\x8b\xfd\xe2\xac\x61\x08\x67\x0a\x3c\xbb\x3c\xaf\x31\x79\x11\xd3\xce\xd0\x4e\x35\x70\x53\x84\xaf\x61\x21\xb1\x92\x2c\xcf\x5c\x34\x45\x5d\x40\x0c\x95\x6c\xc3\xe2\xb9\x75\x19\x31\xa8\x3f\xee\xa5\xe3\x29\xdf\x44\xca\x97\x3a\xee\xdf\xf4\x74\x25\x76\xea\xe0\x17\xc5\x0d\x71\x9d\xea\x6f\x36\x4b\xa5\x46\x76\x2d\xc8\xc4\xa6\xe3\xf1\xe9\x58\x26\xdb\xd9\x41\xb8\x4a\x51\x4c\x24\xa8\x79\x74\x47\xe7\x4e\xfd\xfa\xf5\x4d\x87\x7d\x93\x9c\xb6\x69\x77\x70\x88\x93\x39\x0e\x3e\x04\x9b\x5c\x0f\x8d\x49\x1c\xd8\x4f\xf0\x3d\x35\xa1\xa1\xb4\x70\x32\xd8\x70\x2a\x0d\x36\xe6\x82\xc0\x3e\x07\xbc\xc3\xbb\x0f\x3a\x1c\x6f\x77\xda\x97\x3c\x42\x1b\x60\xb8\xd7\x1b\xf2\x7a\xb0\xed\x09\x71\xea\xdc\x54\x22\x32\xd8\xfb\x31\xbb\x8f\x7f\xc2\xe1\x26\x87\xc1\xfd\x6d\x57\x47\x87\xab\x8e\xc6\x7b\x26\x0e\x4e\x4d\x1d\x4c\x75\x9f\x0b\xf4\xf6\x06\x5a\xbe\x35\xa1\x4f\x53\x2c\xce\x39\x53\x4d\xb2\x8c\x44\x64\x5a\xc6\x27\x26\x83\x49\x7f\xc0\x48\x4d\xcf\x88\x48\x96\x13\xe1\x28\x18\xe9\xb1\x3b\x06\x6d\x87\xe3\x83\xd3\xa3\x03\xde\xce\x58\xc8\xdf\x37\x99\x08\x80\x60\xed\x39\x30\x3e\x35\x9e\xf1\x74\x25\x4a\x9e\x10\x0d\xb1\x5e\x1f\x18\x9d\x1e\x8c\x1f\xb6\x0d\x0a\x7d\xfe\x50\xac\xf3\x6b\x9d\x3d\x4e\xc0\xd6\xde\x78\xe2\xd0\xbd\x21\x4f\x6d\x29\xe4\xf9\x5d\x33\xfe\x3a\x6a\xe8\x07\xa8\xfc\x7d\x20\x9e\xf6\xd3\x24\xcb\x34\x86\x3d\x64\xb2\xd9\xf5\xf5\x7a\x36\xbb\xbe\x4d\xb3\x17\x51\x49\x7c\x6b\x6e\x4e\xdc\x88\xc8\xfd\x43\x73\x27\x0a\x0d\x5a\x9c\xf9\x32\xdf\x92\xbe\x90\x06\x8a\xc9\x6e\x6f\x53\x2d\x2f\x75\x01\x02\xd1\x13\x22\x64\xf7\x75\x66\x5a\x71\xab\xff\xda\xc0\x34\xa4\x93\x2e\x10\xd2\xc3\x10\x4f\x85\x21\x18\x77\x41\x43\x92\x07\xfe\xd1\x7b\x85\x8c\x6d\xf1\x5c\x5d\xb8\x77\xf4\xdc\xa2\xed\xc5\xf1\xfb\xef\x1f\x3f\xaf\x28\xe7\xcb\xc2\xa9\xd1\x73\x45\xe1\xc5\xd1\x53\xc2\x71\xdb\xe2\xb9\x57\xdb\x66\xcb\xb3\xb6\xe3\xb6\x6b\x1f\xbe\x66\xbb\x45\xaf\x40\xa8\x8d\x49\xf6\x88\xd8\x6d\x9e\xd0\xed\x7c\x97\xad\xf8\xc0\x41\x47\xcf\x03\x45\x1b\x75\x03\x22\xf7\xff\xa2\x2d\x72\x5f\x59\x78\x31\x62\x7b\x97\x50\xbe\xef\xa0\xd0\x7f\xb0\x5f\x78\x17\xbb\x7b\x7b\x8b\x2e\x68\x6f\x8c\xec\x38\xa1\xa7\x08\x85\x19\x34\x3c\xf9\x5b\x25\x01\xd1\x16\x79\xbe\x09\x53\xea\x73\x6b\x63\xa7\xbe\x71\x43\xac\x53\x53\x9b\xba\xf8\x62\xe9\x7b\x4b\xdf\x2b\xc1\xc6\x6c\x96\x0a\xe6\xc5\xc6\x9f\x11\x4c\x7b\x4f\x6e\xa7\xff\x97\x74\xed\xc6\xec\x52\x26\x73\x3d\x10\xc8\x98\x76\xdf\x25\x23\xe6\xb8\x9f\xac\x87\x8d\xfc\xe9\xd1\x54\x92\xba\x1b\xd3\x51\x3c\xd0\x8c\xc1\x29\x44\x8d\xd4\xbf\x47\x68\xe4\x30\x78\x05\x65\xcd\x3f\x7e\xf4\xa8\xd0\xe7\x0b\xc5\x62\x21\x5f\x1f\xf7\xd2\xa1\xa9\xe9\xcb\xc7\xac\x47\xa2\xb6\x3b\xe2\x43\xd3\xd3\x43\xdf\x17\xcf\x3e\xbe\x4e\x59\x75\x8b\xe8\x0d\xc6\x26\x62\x9d\xef\xc0\x47\xc5\xa1\x63\xc7\x86\x7c\x1d\x47\x06\x46\x8f\x5d\x9e\xa6\xfc\x08\xe2\xb2\xdc\x38\x6c\xc0\x57\x38\x2b\xa1\x1e\xd2\x7d\x13\x23\x20\x58\x1b\x42\xd5\x19\xa8\x03\x17\xbb\x7c\x39\xf6\x03\xe6\x1b\xb6\x95\x8e\x3d\xfe\x58\xec\xd4\xf8\x49\x9a\xaf\x75\x7c\x8d\xf2\xd3\x09\x4a\x5b\x8a\xd4\x9e\xe2\x2e\xee\x0c\xc7\x0d\x84\x05\x6b\x80\xac\x6f\x31\x11\xfa\xc9\x6a\x17\x9b\x86\xf4\x34\x90\x15\x30\x49\xd6\x39\xb2\x0c\x86\x61\x72\xe2\x96\x5c\xc9\xbb\xb2\x03\x80\x8a\x9c\xbc\x13\x3b\xc0\x8e\x2d\xb8\x3d\x2e\x3c\xd8\xc3\xf7\x3c\x28\xc4\xdb\xb1\xcf\x13\x68\xeb\x6b\xeb\xf0\xf2\xd8\xda\xee\xb0\x60\xde\xdb\x61\xef\xc7\xd4\x46\xf1\xd5\x74\xfb\xbe\x16\xf8\x8b\xc8\xc9\xbb\x2c\x2e\xeb\x3e\xc1\xc3\x27\x6c\xd0\xd6\x06\xb6\x84\x2f\xd1\x11\x68\x3f\xd8\x1e\xb0\x22\x00\x64\x0d\xb4\x1f\x3c\x4f\xdd\x1f\x6a\xd4\xb1\x34\x42\xb7\x93\x14\xa0\xfd\xb3\xc1\x89\x90\xa5\x6b\x8b\x9f\xc6\xc9\xa7\xb4\x39\xc5\x6b\x01\xb3\xc5\x90\xcd\x64\x12\xb1\x89\x58\x62\x9d\x26\x30\xd8\x9e\x5d\x5a\xba\x4e\x3e\x8b\xe7\xd5\x26\x7a\x30\xec\xb4\x5e\x6c\xf5\x83\x05\x33\xe3\xae\xb1\xb7\x9a\xf1\x82\xcd\xbb\x7e\x74\x7a\x3a\x3a\x38\x18\x8d\x44\x0e\xb8\x5c\xbf\x50\xae\xed\xdc\x98\x1d\x3f\x39\x3e\x7e\x12\xb6\x8e\x6f\x4c\xf7\x27\x9f\x1a\x1d\x88\x5e\x8a\x1c\xf0\x0e\x79\x6f\xd0\xf8\xbf\x6f\xa2\xd6\xec\xe4\x59\xed\x0d\xba\xf2\xd6\xf9\x31\xc2\x25\x39\x8e\xf0\x19\x34\x08\x40\x72\x3c\x00\x0d\xdb\x1a\xa6\xde\x32\x73\xc2\x9b\x12\x39\x0b\x81\x69\xdc\x10\x31\x16\x5a\x5a\x1a\x9c\xd9\xa9\xd3\x50\xfe\x4c\xb5\x45\xb5\x41\x54\xbb\x0c\xd9\xa5\xa5\x50\x4c\x9c\xd9\xf9\x15\xa3\x96\xce\x9f\x86\x63\xd9\x2c\x41\x4d\x86\x4c\x93\xa3\xb2\xdd\x10\xd7\x4f\xf1\x1d\x63\xab\x52\x01\xc3\xdc\x92\x06\x67\x8c\xa7\xac\x42\x30\x69\xaa\x88\x71\x30\x2a\xc4\x61\x33\x93\x79\x56\x70\x86\xa6\x3a\xc2\xfb\xbc\xe0\xdd\xef\x3b\xeb\xdb\xff\xba\xc8\x79\xaa\xda\xbf\x32\x29\x9e\x89\x64\x32\x99\xc8\xb3\x30\x0c\x5d\xde\xbe\x7d\x3d\xbe\x57\x84\x7c\x67\xc7\x3c\xce\xd7\x41\x89\x6a\xf7\x77\xfe\x65\xf2\x74\x84\xf9\xa3\xfa\xb9\x3a\x6c\x43\x9d\xf4\x03\x67\x04\xd3\x6d\x06\xdb\x6d\x94\x5a\x43\xee\x12\x66\x6f\xd2\x2c\xc1\x76\xc8\x63\xc3\x67\x51\xa8\x3f\x84\xd2\xd6\x36\xab\x44\x20\x52\x25\x41\x57\x7f\x08\x26\xf1\x3e\x7a\x10\xe6\xfb\xbb\xe0\xac\xd5\x42\x70\xb0\xc5\x9a\x46\x48\xb2\x5a\x3c\x34\x92\x86\x84\x6d\x1e\x7a\xc1\x24\xc0\x19\x52\xb9\x2b\x3e\x69\xd8\xb4\xa2\x0d\x46\xd3\x84\x46\xf4\x05\xc6\xd3\x8c\x2e\xee\x8f\x93\xe1\x16\x4c\x43\xfb\x69\xf7\x23\x5b\x6f\x3f\x32\xf8\x8a\x41\x71\xf6\xc9\x41\x51\x9c\x9a\x7a\x6e\x6a\xaa\xfa\xde\xa9\xc3\xcc\xec\x77\x69\xe8\xe8\x20\x88\x83\x57\x2f\x0d\x8a\xc7\x1e\x48\x4f\x4d\xa5\x7f\xb2\x3a\x75\x74\x6f\x8c\x99\x81\x74\x3c\x15\xf5\x37\x34\xbc\x97\x3d\x57\x22\xcc\xc7\xf5\xc3\x3d\x87\x95\xba\x91\x85\x04\xa8\x4d\xef\x36\xe2\x68\x3e\x51\x26\x8c\x1c\x01\x3a\x85\x7b\x1b\xb1\x23\x6e\xbb\x87\xed\x64\xf4\x27\x0e\x74\x7d\xa4\x1b\x84\x36\xc1\xfa\xa8\x37\xe4\xf5\x77\xf4\x74\xf8\xbd\x21\x6f\xc0\x1b\xf2\xc2\x33\x3b\xbf\x11\x1d\xef\xda\x08\x59\xf1\xc4\x0e\xe1\x67\xaf\x3f\x4f\xd6\xfa\xe7\x3f\x4d\xe0\x4f\xaf\x38\xbd\x5e\xa6\xc7\x60\x7d\x42\xc6\x08\x8d\x53\x60\x04\x1d\xa2\xe1\x86\x68\x2c\x01\x1a\xa6\x87\x8c\x4d\xab\x2f\x98\xf4\x47\xc3\x00\x99\x64\x3c\x36\x79\x7a\x3a\xef\x3b\x73\x1c\xe0\xf8\x19\x5f\x7e\xfa\xf4\x64\x2c\x9e\x8c\xdf\xd9\xf1\x8a\x37\x22\xf4\xc6\x57\x74\x1c\xaf\xf5\xc7\xc6\x4e\x4d\x89\x42\x8f\x20\x4e\x9d\x1a\x8b\xf5\x1f\xea\x17\x5d\x2e\x97\xd8\x7f\x68\x57\xcc\xdc\x4e\x6a\xed\x7e\x9c\x8c\xd5\x01\x0f\x99\x29\x41\x53\xa1\x43\x9d\xbb\x83\x02\x21\x32\x02\xc1\x69\x98\x81\x68\x2f\x4a\xc7\xe2\x13\xf1\xa8\xbf\x99\x9e\xbd\x17\xd2\xf1\x66\xda\x76\x53\x90\x1b\x8f\x36\xd3\x03\x6f\x3a\xec\xbf\xd8\x75\x28\x78\x5f\x77\x5b\xef\x61\xf7\x61\xaf\x47\xbc\x6e\x77\x5c\xb7\xbb\x1d\xfb\x10\xce\x0a\x16\xa7\xc3\x35\x85\x1e\x1a\xc1\x01\x9f\x3f\x1c\xf6\x7b\x9d\x28\x84\xba\xfa\x0e\x24\x93\x07\x06\x46\x7e\x99\x0c\xa8\x0d\x3f\x75\x70\xaa\x7b\xb3\x10\xb0\x3b\x66\x03\x81\x40\xfc\xc0\x1d\xfb\xee\xf0\x1e\x11\x1d\x3f\xeb\xf5\xb8\xf6\xdb\x6c\xc1\x7d\x23\xed\xee\x93\xed\x7c\x9f\xc3\xd7\x9b\xe8\x75\x42\x17\x04\x93\xa7\x92\xa3\xef\xe9\xf2\xec\xbc\xe8\xe9\xca\x74\x79\x20\xe0\xe9\xca\x18\xf4\x26\x07\xdf\x86\x6f\xd3\x78\x36\x9d\x46\x94\x60\x16\x73\x30\x6e\x1a\xb9\x08\xc9\x78\xd4\x0d\x3e\x4b\x33\x5e\xa2\x91\x74\x68\x04\xd2\x2c\x62\xcc\x1f\x6f\x42\x2f\x35\x72\xf9\xf5\xb2\x38\xee\x05\x38\xdb\x7d\xcc\xe9\xf7\x84\x3a\xc2\xef\xf3\x74\x59\xf6\x8f\x3c\xde\xcd\x0c\x5d\x5e\xbb\xc9\xec\x5c\x44\x31\x8a\x2d\x1f\xea\x3e\xd6\xd1\xe5\x09\x38\xf7\x53\x8b\x97\xfc\xe3\xdd\x1c\xd7\x1a\xb3\x82\x5a\xb9\x0c\x8c\x53\x77\x48\x21\xee\x4f\xc6\xcd\x5c\x31\xf1\x68\x18\xf6\xb8\x12\x72\x84\x54\x3f\x1c\xe9\xce\xf6\xfb\x86\x7b\x07\x07\x7b\xe3\x81\x01\x47\xea\x6c\xd3\xad\xb0\x3e\x73\x69\x7a\xac\x27\xdb\x7f\x50\x9c\x1e\x8c\xec\x8f\xee\x09\x9c\x43\xfa\xc0\x0a\x5b\xf0\x7b\x9c\x87\x5a\x03\x34\x63\xbd\x08\xf1\x64\x2a\x1a\xa7\x79\x86\x82\x2c\x42\x0f\x06\x21\x1e\x15\x3c\x71\xd8\xf0\x74\x75\x7a\xd6\x8b\x3f\xe6\xff\x99\x8d\x57\x1d\x22\xa8\x4e\x86\xcf\x75\x5f\xdb\xcc\x8a\xb0\x45\xe5\x6f\x5d\xb0\x2e\xfa\xc5\x43\xaf\xda\x14\x4b\xa2\x08\xd6\x9d\x93\xdd\xd7\xb2\xb0\x24\x9a\xf9\x2e\xcd\x18\x42\x5e\x2a\xe9\x4c\xb2\x30\x42\x42\x50\x08\x52\x81\x07\x61\xe1\x9b\x11\x85\xce\x9c\xa6\x21\x85\x5e\x33\x3c\x14\x1e\x32\xfe\x3f\xd8\x1a\x5d\xe8\x97\x8c\x03\xc3\xe1\xe1\xe1\x4f\xb7\xc4\x19\x6a\xea\x51\x45\x8a\xf3\x83\x42\x3c\x4a\x70\x0b\x73\x6f\x4c\x45\x85\xb8\x11\xb9\x26\x99\xa2\xc6\xce\xfe\x74\x50\xf0\x27\xd3\x41\x01\xb6\x1e\xbe\x3b\x9c\x17\x0b\xbd\x77\x27\xee\xee\x2d\x88\xf9\xf0\xdd\x0f\xef\xad\x00\xff\xcb\x1e\x6a\x54\xb0\xb8\x93\x66\x2c\x7f\xe6\x4b\x13\x64\xd9\x0c\x20\xd9\xcc\x85\x19\x6f\x49\xf0\x44\xfa\x7a\x20\x68\x26\x79\x62\x5b\xea\x61\x93\x29\xcd\xfa\x0f\xb2\x00\xdb\xd9\xfb\x69\xba\xcb\x48\x36\x0b\x62\x7d\x32\x36\x11\xab\xc5\x26\x62\x62\x57\x07\xf8\x67\x5f\xa0\xb6\x95\xab\xb3\xb3\x4f\x1b\x40\xa2\xbe\x44\x16\x62\xf2\xdb\xec\xe8\xa4\x7d\xc2\x71\x6f\x46\x1c\x68\x2c\x13\x7f\x80\x66\xef\x49\x07\x59\x5b\x04\xab\xdb\xf0\xec\xed\x05\x21\xce\xbc\xc5\xd2\x93\x33\x00\x8f\x5d\xb9\xeb\xae\x2b\xfd\xdd\x91\xae\xc0\xd1\x44\xe2\xa8\xff\x1e\xef\xd1\x3e\x56\xd3\xd7\xd9\xa8\x01\xed\xc4\xe3\x27\xfa\x3b\x7b\xfc\x81\xc4\xd1\x84\x7f\xba\x23\xd5\xb7\xa7\xcc\x21\x6e\x86\xe2\xb4\x5f\x67\x3e\x70\x30\x0c\xc2\x64\x20\x28\x0c\x43\xda\x1a\x08\x0a\xb1\x89\xf4\x44\x72\x32\x18\x08\x0a\xe4\x0b\xe8\xe3\x4f\x4d\x8f\x6a\x63\xd7\xc6\xc6\xac\xfe\xc8\xf8\xb1\x99\x19\x38\x39\x77\x7e\xea\xdd\xbd\x6f\xec\x85\x13\xe3\x11\xbf\x75\x6c\xec\xda\x98\x36\x3a\xfd\xd4\xf8\xb1\x99\x9f\x9b\x81\x93\x36\xeb\xd4\x2f\xf4\x3e\x1d\x6e\x95\x2f\x63\x6e\xbf\x29\x5f\x6c\x64\xbf\x24\x9c\x43\x43\x92\x9e\x4e\x06\xfd\x42\x32\xd5\x62\xa6\x07\xe2\x2c\x73\xba\x9b\xad\x77\x74\x76\x79\xb2\x62\x56\xac\xcf\xae\x33\x1b\xff\x75\x28\x25\x12\x34\x1b\x9b\x28\x76\x75\x64\x3c\x21\x42\x04\x6c\xfa\xa9\x67\x6d\x96\xf9\xa2\x37\x63\xf4\x32\xfb\xda\x34\xe9\xe1\x66\xcc\x47\xe6\x6b\xb2\x7b\x6f\xd6\xdf\x62\xcd\x73\xa1\x25\xd9\xf8\xfd\x2d\x5b\xf6\x1f\xfc\x2d\x21\xb6\x33\xb4\xee\xeb\x74\x7b\x7f\xcb\x96\xd5\xc0\xf0\x1e\x5b\xf5\xa6\x2d\xd1\x00\xa5\x56\x1f\xe4\x38\x16\x99\x9d\xb9\x9c\x26\x19\xc6\xb1\x46\x69\xf4\xdf\xfe\x06\x1a\x4f\x06\x06\x5c\x84\xd5\xed\x8f\xc5\x87\x81\x09\x86\x28\x3d\x3b\x4e\xc3\xf8\x06\x7c\x07\xf6\x44\x71\x7f\x6e\xd3\x31\x91\x99\xe8\x9b\x7f\xc0\x09\x3c\x63\xf3\x79\x70\x3e\xb0\xbb\x08\x25\x3e\x12\x0c\xe4\xd4\xc7\x03\xc1\x3e\x1e\x21\xbe\x2f\xe8\xd9\x3f\x79\xef\xe1\xc7\x68\x71\xe7\x4b\x34\xc0\xd1\x23\x34\xc6\xd1\xd6\xfe\x68\xf4\xbe\xa3\x23\x10\xea\x0f\xc1\xc8\x51\x13\x38\xd3\x39\x20\x8c\xcc\xcc\x8c\x08\x03\x9d\x36\x87\xad\x73\x40\x88\x75\x8e\x4e\x8f\xd2\x52\x37\x8d\x9c\xc4\xfe\x37\x75\x00\x66\x7e\xbe\x83\x04\xcf\xef\xcd\x0d\x3f\x60\xe4\x53\x8d\x47\x0d\x8e\x3a\x4d\xd6\xdb\x60\x9f\x2f\x3e\x1e\xf0\x47\xe1\x71\x3a\xfb\x0c\x27\x73\x4f\x97\xd8\xdb\x93\xe0\x87\xf8\x43\x3d\xbd\x83\xf1\xa1\x91\xd3\x3e\x48\x6f\xdc\x53\xd8\xc8\xb6\x64\xd8\xb9\x3b\xd8\xd7\x2b\x0e\x74\x77\x0f\x88\xbd\x83\x81\xc7\x45\xf1\x8e\x1f\x14\x4e\xb6\xe0\xa4\x6e\xaa\x8b\x09\x32\xef\x31\x16\x81\x97\xc5\xa5\x4f\x53\x2c\x08\x9f\x09\x0f\x85\xc3\xbd\x43\xbd\xe1\xde\xb3\x9f\x39\x1b\x0e\xef\x2a\x7d\x91\x40\xa4\x26\x7c\xf6\x33\x67\x7b\xc3\xbb\x4a\x66\x1c\x43\x33\xdf\x55\x17\x8b\x6a\xb3\x5b\xce\x6e\x4a\x49\x0c\xdd\xb5\xc8\x74\x45\xe3\xd1\x7a\x34\x59\x12\xc1\x9f\xc9\x94\xc8\x18\xef\xca\x44\x93\xc9\xe8\x56\x73\x5d\x22\xfd\xe7\x66\x99\xc7\xfc\x2d\x19\x12\x92\x1e\x33\xb3\x19\x94\xea\xc3\x47\xcf\x2c\x9d\xc9\x88\xcc\xd8\x1b\x7e\xe4\xce\xcf\xa3\xce\x7d\x34\x4b\xa5\x63\x00\xea\x3b\xaf\xa4\xe3\x97\xe3\x6c\x46\x3f\x6c\x72\x2e\x2e\x4c\xe3\x17\x25\xb8\x61\xee\x4e\xee\x34\xe1\x0b\xdc\x10\x4d\x4f\xc6\x63\x33\x90\xa4\xae\x3c\xb4\x48\x9d\x93\x92\x82\x35\xe8\x6d\x51\xc9\x45\x59\xca\xa7\x56\x3b\x5b\x42\x7d\x34\x19\x93\x3b\xfa\xac\x70\x08\x5b\xfc\xfd\x56\x38\x84\x2c\xde\x8b\xfd\x56\x74\x10\x59\xbc\xc8\xd8\xdb\x13\x54\x62\x90\x78\xea\x2f\x98\x36\x29\xb3\xdf\xeb\xdb\xb7\x9f\xaf\xd1\x54\x8b\xf0\x54\x64\xc4\xee\xe8\xf6\xf7\x0f\xdb\x9d\xdd\x3e\xe8\x1b\xb6\x3b\xba\x7d\xc0\x4a\x3b\x5f\xab\x1b\x7f\x1b\x34\x2e\xc0\xc6\x3e\x5f\xcf\xbe\x3e\x4b\x81\xe6\x6a\xe3\x0c\x7b\xee\xd6\x9c\xe3\x6e\xd3\x0e\xc9\x43\x35\xeb\xb7\xf7\x1b\xdf\xa0\x69\xaa\x4c\x03\x80\x8e\x2e\xb6\x7e\x77\x75\x00\x57\x02\x2e\xe3\x2f\x95\xb6\x3f\xff\x79\xa0\x36\xc9\x6c\xf1\x6e\xd1\x59\x6e\x52\x4b\xa7\xf3\xdc\x6b\x38\x8e\x33\x33\x38\xf4\xc7\x63\x71\x42\x88\xa5\xc6\x03\xbd\x60\x65\x72\xda\x7e\xc1\x6a\x31\x84\xae\xd1\xbd\xfb\xd4\x38\x93\xc2\x26\xf7\xee\xfd\x7b\xce\xbc\xdd\x05\xad\xe7\x83\x48\x79\xcf\xb7\x3b\x9c\xbc\xe3\x6e\x7f\x24\x75\x68\xa2\xf3\x8d\x56\xec\x74\xb4\x3b\x03\xe3\x01\x27\x78\x82\xc1\x76\x97\xb3\x3d\xd8\xb9\x77\x7f\xbb\x3a\xb2\xdf\x53\x37\x1a\x6c\x77\xba\xda\x83\xc1\xdb\x54\x75\x06\xdb\x9d\xc0\x18\xd9\xac\x0d\x5b\xee\x0e\x44\x52\xde\xce\x37\xf0\x60\xb3\x39\x9d\xb6\x2b\x2e\x41\x70\x99\x3f\xb1\x09\xba\x84\x67\x5e\xf6\x08\xb7\x4b\xb6\xc5\x72\x1e\x84\x21\xd8\x37\x0d\x0d\xe6\x88\xaa\x66\xe2\x33\xb3\xfc\x4e\x9d\x9f\x9d\xe1\x43\xfd\xa1\x97\x38\xb8\xb1\x33\x0b\x97\x9d\xd2\xf1\xe3\x92\xb3\x4d\x20\x5f\x4b\xf8\x6a\xc2\x8c\x43\xed\x37\x6c\xd0\xbb\xb8\x43\xdc\x10\x37\x46\xf3\xcf\xc5\x93\x71\x4a\x3b\xfb\xfb\xad\x7e\x5f\xc0\x48\x0c\x9a\x9a\x88\x45\xd3\x66\x0e\xb6\x68\x8a\x29\x08\x92\xfe\x68\x3a\xe9\x8f\x0e\xa4\x09\x25\x96\x4a\x42\x69\x66\x66\x72\x7f\x22\xb1\xdf\x13\x08\xee\xeb\x0b\x0f\x46\xba\x3c\x47\xc3\x03\x91\xb1\x03\xfb\x82\x91\x38\x75\x59\xda\x59\x09\x41\xa9\x7b\x7d\x6b\xfd\xa3\x33\x8f\x88\x87\x13\x11\xff\x3e\x4f\x28\xde\xd3\xdf\xed\x0b\x5e\x70\x1d\x3e\x30\x38\x78\x20\x19\x09\x7a\xc2\x5f\xc8\x64\x32\x5b\xdd\x3b\xeb\xdd\xd7\x33\x66\xfe\x8c\x12\x6d\x67\xc0\xb0\x0b\x9d\x32\xb3\x3d\x51\xd6\xb9\xa5\xb1\xc9\xdd\x4d\xa4\xbb\x80\xbf\xd9\x50\xd2\x3d\xb3\xbd\x62\xa4\xcb\xd3\x67\xb6\xf3\x31\xa3\x85\xc1\x7d\xfb\x13\x66\x23\x21\xb3\xb3\x09\xb1\xd8\xfe\x68\x8f\x2f\x68\x36\x33\xe5\x3a\x1c\x1d\x1d\x3d\x30\x1e\x09\x7a\xf6\x05\x23\x89\xfd\xe1\x2f\x65\xc8\xdf\x9e\x1c\xdb\x04\x1f\x59\x85\x58\x7c\x32\x1d\xb0\x8c\x13\xae\x24\xe9\xb3\x0a\xa4\x62\x18\xe0\x74\x22\x12\x49\xd8\xee\xba\x6b\xe7\x2f\x4e\x54\xfb\xfa\xaa\x27\x72\x67\x3d\x5d\x7e\xff\xd9\x1c\x24\x83\xfd\xfd\xc1\xdc\x5d\x77\x2d\xdc\x99\x4c\xde\xf9\xd0\xeb\xba\xad\x16\x6c\xeb\x7e\x1d\xa5\x8f\x98\xfc\xf9\x7e\x2a\xa1\x70\x83\x35\x1a\x17\xac\xfd\x23\x48\x08\xfa\x08\xff\x87\x04\x1a\x92\x20\x1d\x15\x82\x01\xca\x0f\xb2\x7d\x8a\x7a\x62\xf5\x05\xd2\xb1\x74\x20\x18\x98\x8c\xc7\xe2\xfd\xf1\x58\x7a\x22\x19\x86\x5e\x08\x23\xc1\x17\x84\x97\x00\xba\x10\x72\x0b\xc8\x8e\x5c\xc1\x11\x0f\xef\x43\xc8\xd7\xd6\xc5\xfb\xf9\xe0\xeb\xa3\x36\x64\xf5\x61\xe8\xe9\xb7\x22\x6b\x80\x77\xfa\x83\xd0\x31\x3a\x62\x73\xf5\xd8\x04\x3b\xb2\x1f\x00\xe4\x40\xfc\xfe\x43\x02\x8f\x05\x0b\x20\x98\x06\x0c\x11\x84\x03\x3c\x1f\xb6\x54\xdf\xc0\xe3\xf3\x9e\x39\xcc\xbf\xfe\xce\x13\x16\x34\x1f\x3f\x6a\x41\x53\x17\xde\x66\xf7\x43\x7f\xc0\xe5\xb3\xf0\xed\x42\x8f\x0b\xb0\x05\xf3\x03\x1e\xcc\xdb\xdc\x36\x0b\xe2\x38\xce\xc5\x7d\x9c\xbe\x25\xf9\x1b\xe5\xe6\x0c\x18\x38\x17\xf7\xb3\x06\x8c\x38\x81\xfb\x2d\x03\xc6\xdc\x21\x18\x34\x60\x9e\x73\x81\x6e\xc0\x16\xce\x05\xef\x37\x60\x2b\xe7\x87\xdf\xe7\x30\x07\xbc\x9d\xe3\x38\xa6\x39\x24\x30\x70\x3d\xdc\x3b\x0d\x18\x71\x2e\x6e\xd3\x80\x31\x77\x81\xfb\xa6\x01\xf3\x5c\x0f\xcc\x1a\xb0\x85\xeb\x81\xa7\x0c\xd8\xca\x25\xe0\x93\xdc\x5d\x9c\xc2\x55\xb9\x35\x4e\xe5\x8a\xdc\x02\xb7\xc8\xe9\x5c\x84\x1b\xe7\x46\xb9\x31\x2e\xc5\x45\xb8\x7b\x38\x85\x53\xb8\x05\xae\xcc\xc9\xdc\x20\x17\xe1\xee\xe5\x2a\x5c\x9e\x1b\xa6\x36\x2d\x65\xae\xcc\x45\xb8\x0b\x8d\xeb\x34\x5a\x92\x39\x8d\x93\x39\x95\x5b\xe1\x64\xae\xc0\x0d\x73\xdc\x5d\x4a\x75\x4d\x2d\x2e\x2c\xea\x91\xf1\xd1\xb1\x54\xe4\x1e\x45\x59\x28\xcb\x83\x91\x7b\x2b\xf9\xe1\xc8\xf1\x72\x39\x72\x81\x1c\xd3\x22\x17\x64\x4d\x56\x57\xe4\xc2\x30\xc7\xdd\xc7\x49\x9c\x4e\x6f\x52\xe4\x24\xfa\x90\x7b\xb9\x3c\xa7\x70\x15\x4e\xe3\xb8\xfb\x24\x5d\x56\x8b\x52\x39\x72\x6f\x5e\xa9\x68\x1c\x7d\xe2\x02\x57\xe3\xca\x9c\xc4\xa9\x1c\x77\x41\x5e\xa8\x95\x25\x95\xe3\x4e\xd2\x0b\x74\xba\x57\xb9\x05\x4e\xa6\xef\x35\xcc\x8d\x72\x11\xee\x30\x17\xf9\xa1\x0f\x61\x67\x4c\x71\x43\xdc\x38\xfd\x91\xde\x98\xe4\xb8\x93\x4a\x45\x3f\xa9\xa8\x0b\x72\x64\x7c\x78\x34\x72\x38\xb2\xbb\x29\x91\xc3\x91\xa9\xa1\xf1\xa1\xf1\xd1\xb1\xc9\xff\xc5\x57\x98\xa5\x27\x6a\x5c\x91\x9e\x10\xe1\xc6\x68\x33\xc7\xb8\x31\xc2\x26\xce\xca\xaa\x56\x54\x2a\x91\xb1\xe1\xd1\xb1\xb1\xc8\xad\x77\x6e\xde\x77\x68\x6f\x5f\x98\xcf\xa1\x8f\x19\x6a\xf4\x0c\x62\x03\xf3\xa5\xa7\xb8\x71\x83\x5b\xd9\xf5\x87\xbf\x4c\x6b\x11\x20\xc0\xc0\x83\x05\xac\x20\x80\x0d\xec\xd0\x06\xed\xe0\xe0\x4e\x70\x77\x73\x27\xb9\x7b\xb8\x53\xdc\xbd\xdc\x69\xee\x0c\x77\x96\xbb\x8f\xbb\x9f\x7b\x80\x3b\xc7\x9d\xe7\x2e\x70\x0f\x72\x0f\x71\x59\x6e\x96\xbb\xc8\x5d\xe2\x1e\xe6\x2e\x73\x8f\x70\x8f\x72\x8f\x81\x13\x5c\xe0\x86\x7d\xe0\x81\x0e\xf0\x82\x0f\xfc\x10\x80\x20\x74\x42\x17\x84\xa0\x1b\x7a\x60\x3f\x90\x39\x1c\x81\x3e\xe8\x87\x28\x1c\x80\x01\x88\x41\x1c\x0e\xc2\x21\x48\x80\x08\x83\x30\x04\xc3\x30\x02\xa3\x30\x06\xe3\x90\x84\x09\x48\xc1\x24\xa4\x61\x0a\xee\x80\xc3\x70\x04\x8e\xc2\x31\x98\x86\x19\xc8\xc0\x71\xb8\x13\xee\x82\x13\x70\x37\x9c\x84\x7b\xe0\x14\xdc\x0b\xa7\xe1\x0c\x9c\x85\xfb\xe0\x7e\x78\x00\xce\xc1\x79\xb8\x00\x0f\xc2\x43\x84\x24\x83\x8b\x70\x09\x1e\x86\xcb\xf0\x08\x3c\x0a\x8f\xc1\xe3\x90\x83\x2b\x20\xc1\x1c\xe4\xa1\x00\x32\xcc\xc3\x02\x2c\x42\x11\x96\xa0\x04\x65\x58\x86\x0a\x28\x50\x85\x27\x40\x05\x0d\x74\xa8\xc1\x0a\xac\xc2\x55\x58\x83\x6b\xf0\x0a\x78\x12\x5e\x09\xaf\x82\x57\x43\x1d\x5e\x03\x3f\x02\x4f\xc1\x8f\xc2\x6b\xe1\x75\xf0\x7a\x78\x03\xbc\x11\x9e\x86\x67\xe0\x4d\xf0\x66\x78\x0b\xbc\x15\xde\x06\x6f\x87\x77\xc0\x3b\xe1\xc7\x60\x1d\xae\xc3\xb3\xf0\x2e\x78\x37\xfc\x38\xfc\x04\xbc\x07\x7e\x12\xde\x0b\xef\x83\xe7\xe0\xfd\xf0\x01\xf8\x20\xfc\x14\x7c\x08\x3e\x0c\x3f\x0d\x1f\x81\x9f\x81\x1b\xb0\x01\x1f\x85\x8f\xc1\xc7\xe1\x13\xf0\x49\xf8\x59\xf8\x6f\xf0\x73\xf0\xf3\xf0\x29\xf8\x34\x7c\x06\x7e\x01\x3e\x0b\x9f\x83\xff\x0e\xbf\x08\xbf\x04\xbf\x0c\xbf\x02\x9b\xf0\x79\xf8\x02\x7c\x11\x7e\x15\xbe\x04\xbf\x06\xbf\x0e\xff\x03\xfe\x27\xfc\x06\x3c\x0f\xbf\x09\x5f\x86\xaf\xc0\x57\xe1\xb7\xe0\x6b\xf0\x75\xf8\x6d\xf8\x06\x6c\xc1\x4d\xf8\x1d\xf8\x26\xfc\x2e\x7c\x0b\x7e\x0f\x7e\x1f\xfe\x00\xfe\x10\xfe\x08\x5e\x80\x3f\x86\x3f\x81\x3f\x85\x3f\x83\x6f\xc3\x9f\xc3\x5f\xc0\x5f\xc2\x5f\xc1\x8b\xb0\x0d\x7f\x0d\x7f\x03\x7f\x0b\xdf\x81\xbf\x83\xbf\x87\xef\xc2\x3f\xc0\x3f\xc2\xf7\xe0\x9f\xe0\xfb\xf0\xcf\xf0\x03\xf8\x17\xf8\x57\xf8\x37\xf8\x77\xd8\x81\x97\x10\x19\x32\x08\x61\xc4\x23\x0b\xb2\x22\x01\xd9\x90\x1d\xb5\xa1\x76\xe4\x40\x4e\xe4\x42\x6e\xb4\x0f\x79\x50\x07\xf2\x22\x1f\xf2\xa3\x00\x0a\xa2\x4e\xd4\x85\x42\xa8\x1b\xf5\xa0\xfd\x28\x8c\x7a\x51\x04\xf5\xa1\x7e\x14\x45\x07\xd0\x00\x8a\xa1\x38\x3a\x88\x0e\xa1\x04\x12\xd1\x20\x1a\x42\xc3\x68\x04\x8d\xa2\x31\x34\x8e\x92\x68\x02\xa5\xd0\x24\x4a\xa3\x29\x74\x07\x3a\x8c\x8e\xa0\xa3\xe8\x18\x9a\x46\x33\x28\x83\x8e\xa3\x3b\xd1\x5d\xe8\x04\xba\x1b\x9d\x44\xf7\xa0\x53\xe8\x5e\x74\x1a\x9d\x41\x67\xd1\x7d\xe8\x7e\xf4\x00\x3a\x87\xce\xa3\x0b\xe8\x41\xf4\x10\xca\xa2\x59\x74\x11\x5d\x42\x0f\xa3\xcb\xe8\x11\xf4\x28\x7a\x0c\x3d\x8e\x72\xe8\x0a\x92\xd0\x1c\xca\xa3\x02\x92\xd1\x3c\x5a\x40\x8b\xa8\x88\x96\x50\x09\x95\xd1\x32\xaa\x20\x05\x55\xd1\x13\x48\x45\x1a\xd2\x51\x0d\xad\xa0\x55\x74\x15\xad\xa1\x6b\xe8\x15\xe8\x49\xf4\x4a\xf4\x2a\xf4\x6a\x54\x47\xaf\x41\x3f\x82\x9e\x42\x3f\x8a\x5e\x8b\x5e\x87\x5e\x8f\xde\x80\xde\x88\x9e\x46\xcf\xa0\x37\xa1\x37\xa3\xb7\xa0\xb7\xa2\xb7\xa1\xb7\xa3\x77\xa0\x77\xa2\x1f\x43\xeb\xe8\x3a\x7a\x16\xbd\x0b\xbd\x1b\xfd\x38\xfa\x09\xf4\x1e\xf4\x93\xe8\xbd\xe8\x7d\xe8\x39\xf4\x7e\xf4\x01\xf4\x41\xf4\x53\xe8\x43\xe8\xc3\xe8\xa7\xd1\x47\xd0\xcf\xa0\x1b\x68\x03\x7d\x14\x7d\x0c\x7d\x1c\x7d\x02\x7d\x12\xfd\x2c\xfa\x6f\xe8\xe7\xd0\xcf\xa3\x4f\xa1\x4f\xa3\xcf\xa0\x5f\x40\x9f\x45\x9f\x43\xff\x1d\xfd\x22\xfa\x25\xf4\xcb\xe8\x57\xd0\x26\xfa\x3c\xfa\x02\xfa\x22\xfa\x55\xf4\x25\xf4\x6b\xe8\xd7\xd1\xff\x40\xff\x13\xfd\x06\x7a\x1e\xfd\x26\xfa\x32\xfa\x0a\xfa\x2a\xfa\x2d\xf4\x35\xf4\x75\xf4\xdb\xe8\x1b\x68\x0b\xdd\x44\xbf\x83\xbe\x89\x7e\x17\x7d\x0b\xfd\x1e\xfa\x7d\xf4\x07\xe8\x0f\xd1\x1f\xa1\x17\xd0\x1f\xa3\x3f\x41\x7f\x8a\xfe\x0c\x7d\x1b\xfd\x39\xfa\x0b\xf4\x97\xe8\xaf\xd0\x8b\x68\x1b\xfd\x35\xfa\x1b\xf4\xb7\xe8\x3b\xe8\xef\xd0\xdf\xa3\xef\xa2\x7f\x40\xff\x88\xbe\x87\xfe\x09\x7d\x1f\xfd\x33\xfa\x01\xfa\x17\xf4\xaf\xe8\xdf\xd0\xbf\xa3\x1d\xf4\x12\xe6\x30\x60\x84\x31\xe6\xb1\x05\x5b\xb1\x80\x6d\xd8\x8e\xdb\x70\x3b\x76\x60\x27\x76\x61\x37\xde\x87\x3d\xb8\x03\x7b\xb1\x0f\xfb\x71\x00\x07\x71\x27\xee\xc2\x21\xdc\x8d\x7b\xf0\x7e\x1c\xc6\xbd\x38\x82\xfb\x70\x3f\x8e\xe2\x03\x78\x00\xc7\x70\x1c\x1f\xc4\x87\x70\x02\x8b\x78\x10\x0f\xe1\x61\x3c\x82\x47\xf1\x18\x1e\xc7\x49\x3c\x81\x53\x78\x12\xa7\xf1\x14\xbe\x03\x1f\xc6\x47\xf0\x51\x7c\x0c\x4f\xe3\x19\x9c\xc1\xc7\xf1\x9d\xf8\x2e\x7c\x02\xdf\x8d\x4f\xe2\x7b\xf0\x29\x7c\x2f\x3e\x8d\xcf\xe0\xb3\xf8\x3e\x7c\x3f\x7e\x00\x9f\xc3\xe7\xf1\x05\xfc\x20\x7e\x08\x67\xf1\x2c\xbe\x88\x2f\xe1\x87\xf1\x65\xfc\x08\x7e\x14\x3f\x86\x1f\xc7\x39\x7c\x05\x4b\x78\x0e\xe7\x71\x01\xcb\x78\x1e\x2f\xe0\x45\x5c\xc4\x4b\xb8\x84\xcb\x78\x19\x57\xb0\x82\xab\xf8\x09\xac\x62\x0d\xeb\xb8\x86\x57\xf0\x2a\xbe\x8a\xd7\xf0\x35\xfc\x0a\xfc\x24\x7e\x25\x7e\x15\x7e\x35\xae\xe3\xd7\xe0\x1f\xc1\x4f\xe1\x1f\xc5\xaf\xc5\xaf\xc3\xaf\xc7\x6f\xc0\x6f\xc4\x4f\xe3\x67\xf0\x9b\xf0\x9b\xf1\x5b\xf0\x5b\xf1\xdb\xf0\xdb\xf1\x3b\xf0\x3b\xf1\x8f\xe1\x75\x7c\x1d\x3f\x8b\xdf\x85\xdf\x8d\x7f\x1c\xff\x04\x7e\x0f\xfe\x49\xfc\x5e\xfc\x3e\xfc\x1c\x7e\x3f\xfe\x00\xfe\x20\xfe\x29\xfc\x21\xfc\x61\xfc\xd3\xf8\x23\xf8\x67\xf0\x0d\xbc\x81\x3f\x8a\x3f\x86\x3f\x8e\x3f\x81\x3f\x89\x7f\x16\xff\x37\xfc\x73\xf8\xe7\xf1\xa7\xf0\xa7\xf1\x67\xf0\x2f\xe0\xcf\xe2\xcf\xe1\xff\x8e\x7f\x11\xff\x12\xfe\x65\xfc\x2b\x78\x13\x7f\x1e\x7f\x01\x7f\x11\xff\x2a\xfe\x12\xfe\x35\xfc\xeb\xf8\x7f\xe0\xff\x89\x7f\x03\x3f\x8f\x7f\x13\x7f\x19\x7f\x05\x7f\x15\xff\x16\xfe\x1a\xfe\x3a\xfe\x6d\xfc\x0d\xbc\x85\x6f\xe2\xdf\xc1\xdf\xc4\xbf\x8b\xbf\x85\x7f\x0f\xff\x3e\xfe\x03\xfc\x87\xf8\x8f\xf0\x0b\xf8\x8f\xf1\x9f\xe0\x3f\xc5\x7f\x86\xbf\x8d\xff\x1c\xff\x05\xfe\x4b\xfc\x57\xf8\x45\xbc\x8d\xff\x1a\xff\x0d\xfe\x5b\xfc\x1d\xfc\x77\xf8\xef\xf1\x77\xf1\x3f\xe0\x7f\xc4\xdf\xc3\xff\x84\xbf\x8f\xff\x19\xff\x00\xff\x0b\xfe\x57\xfc\x6f\xf8\xdf\xf1\x0e\x7e\x89\xe7\x78\xe0\x11\x8f\x79\x9e\xb7\xf0\x56\x5e\xe0\x6d\xbc\x9d\x6f\xe3\xdb\x79\x07\xef\xe4\x5d\xbc\x9b\xdf\xc7\x7b\xf8\x0e\xde\xcb\xfb\x78\x3f\x1f\xe0\x83\x7c\x27\xdf\xc5\x87\xf8\x6e\xbe\x87\xdf\xcf\x87\xf9\x5e\x3e\xc2\xf7\xf1\xfd\x7c\x94\x3f\xc0\x0f\xf0\x31\x3e\xce\x1f\xe4\x0f\xf1\x09\x5e\xe4\x07\xf9\x21\x7e\x98\x1f\xe1\x47\xf9\x31\x7e\x9c\x4f\xf2\x13\x7c\x8a\x9f\xe4\xd3\xfc\x14\x7f\x07\x7f\x98\x3f\xc2\x1f\xe5\x8f\xf1\xd3\xfc\x0c\x9f\xe1\x8f\xf3\x77\xf2\x77\xf1\x27\xf8\xbb\xf9\x93\xfc\x3d\xfc\x29\xfe\x5e\xfe\x34\x7f\x86\x3f\xcb\xdf\xc7\xdf\xcf\x3f\xc0\x9f\xe3\xcf\xf3\x17\xf8\x07\xf9\x87\xf8\x2c\x3f\xcb\x5f\xe4\x2f\xf1\x0f\xf3\x97\xf9\x47\xf8\x47\xf9\xc7\xf8\xc7\xf9\x1c\x7f\x85\x97\xf8\x39\x3e\xcf\x17\x78\x99\x9f\xe7\x17\xf8\x45\xbe\xc8\x2f\xf1\x25\xbe\xcc\x2f\xf3\x15\x5e\xe1\xab\xfc\x13\xbc\xca\x6b\xbc\xce\xd7\xf8\x15\x7e\x95\xbf\xca\xaf\xf1\xd7\xf8\x57\xf0\x4f\xf2\xaf\xe4\x5f\xc5\xbf\x9a\x7b\x86\xaf\xf3\xaf\xe1\x7f\x84\x7f\x8a\xff\x51\xfe\xb5\xfc\xeb\xf8\xd7\xf3\x6f\xe0\xdf\xc8\x3f\xcd\x3f\xc3\xbf\x89\x7f\x33\xff\x16\xfe\xad\xfc\xdb\xf8\xb7\xf3\xef\xe0\xdf\xc9\xff\x18\xbf\xce\x5f\xe7\x9f\xe5\xdf\xc5\xbf\x9b\xff\x71\xfe\x27\xf8\xf7\xf0\x3f\xc9\xbf\x97\x7f\x1f\xff\x1c\xff\x7e\xfe\x03\xfc\x07\xf9\x9f\xe2\x3f\xc4\x7f\x98\xff\x69\xfe\x23\xfc\xcf\xf0\x37\xf8\x0d\xfe\xa3\xfc\xc7\xf8\x8f\xf3\x9f\xe0\x3f\x79\xdb\x35\x30\x67\x91\x55\x55\x51\x9d\x74\x9b\x53\x6a\x7a\xb9\x58\x91\x85\x55\x49\xad\x14\x2b\x0b\x76\xa9\x50\xc8\x49\x65\x59\xd5\x2d\x52\x79\xae\xb6\x6c\x93\x56\x72\x7a\x71\x59\x56\x5d\xf9\xb2\xa2\xc9\x85\x5c\x5e\xaa\xea\x45\xa5\x62\x97\x9f\xa8\x49\xe5\xe2\x35\x59\xb5\xc9\x57\xab\xe5\x62\xbe\xa8\x3b\xe6\x25\x4d\xcf\xcd\x2b\xea\xaa\xa4\x16\xda\x69\x41\x95\x57\x8b\x95\x82\x65\x41\x5a\x96\x35\x61\x51\x96\xd4\x62\x65\xc1\xb1\x58\x5c\x58\xcc\xd1\xab\xf5\x35\xbe\xac\x28\x55\xbc\x5c\xcc\xdb\x96\x8b\xf9\x5c\x45\xa9\xc8\x02\x01\x94\xf9\x79\xcb\xb2\xb2\x52\x94\xdb\xcb\xc5\x39\x55\x52\xd7\x72\x52\xa1\xe0\x34\xe1\x39\x45\x29\x69\x8d\xd2\x72\x4d\x2b\xe6\x1d\x15\x79\x35\xa7\xca\x65\x59\xd2\x64\xcd\x55\x51\xf4\x5c\xb1\xa2\xcb\xaa\xac\xe9\x72\xc1\x52\x95\x6a\x9a\xec\xa5\xdb\x5c\xbe\xa8\xe6\xcb\x72\x6e\xbe\x58\x2e\xcb\x05\xdf\xae\x3a\xa3\x27\xda\xaa\x65\x69\x2d\x27\xa9\xaa\xb2\xda\x41\xc1\x5d\x97\x78\x5b\xab\x8c\x2b\x1c\xa4\xae\x5c\xd4\x74\xd2\x4a\xcb\x13\x35\xb9\x26\xb7\xd3\x2d\x6b\x9b\x45\x95\x0a\x45\xc5\xa9\xca\x79\xb9\xa2\xe7\xa4\xbc\xae\xa8\x9a\x55\x95\xab\xb2\xa4\xb7\xb1\x5d\x4e\xa9\xc8\xa4\xa6\x2c\xad\x09\xda\x62\x6d\x7e\xbe\x2c\xdb\xb5\x52\xb1\x9a\xab\xc8\x57\x75\x27\x85\xaa\xaa\xbc\x52\x54\x6a\x9a\x55\xab\x28\xca\x35\x99\xd7\x74\xa5\x6a\xd7\x6a\x73\x7a\x51\x2f\xcb\x9a\x4b\xab\xa9\xaa\x52\xab\x14\x72\x1a\xd9\x3a\x57\x8a\x05\x59\xc9\x19\x3d\x64\xa3\xa5\xbc\xb4\xec\x30\x01\xd2\xbf\xed\x2b\x4a\xb9\xb6\x2c\xe7\x0a\xca\x6a\xc5\x84\x97\x6b\xba\xdc\x66\xc0\xca\xfc\xbc\xdd\x00\x6b\x55\xbc\x2a\xcf\xa1\xc5\x82\x53\x53\x54\x3d\x37\xb7\x96\x93\xca\xd5\x45\x49\x90\x8a\x2a\x69\x72\x9b\xf1\xc9\x73\x63\xa3\x0d\x30\x39\x6a\x37\xc1\x94\x9d\xbd\x59\x6e\x6c\xd4\x84\x92\xa3\x36\x03\x4a\x39\xc8\x78\xd3\x95\x1c\xed\x2f\xfb\x7c\x71\x4e\x56\x73\x85\x15\xd5\x80\x2a\xf2\xaa\xb3\xd1\xb9\x04\xb0\x4b\xaa\x9e\xd3\x55\x29\x5f\xf2\xb2\x33\x96\xa5\x4a\x4d\x2a\xe7\x54\x39\xaf\xa8\x85\x0e\x56\xa7\x2d\x93\xb3\x58\x55\x3b\xfd\x04\x39\xfa\xe6\x4e\xad\x36\xa7\xe5\xd5\x22\x1d\xc0\x5a\x47\xeb\x57\xcb\xe5\x17\xe5\x7c\xc9\xcd\xbe\x1a\x6d\x19\xe9\x7a\x8f\x2a\x2f\x2b\x2b\x72\x6e\x5e\x55\x96\x59\x0b\x3d\x5a\x59\x59\xcd\x2d\x2b\xe4\x0e\xec\xa6\xf6\x55\x79\x2e\x27\x69\x9a\xac\x1b\x6d\xae\x16\x2b\x1d\x73\xaa\x54\x29\x14\x2b\x0b\xb9\x55\x42\x52\x2f\x4b\x6a\xc9\x95\x97\xca\x65\xf2\xa2\x52\x9e\x5c\xdb\x31\x2f\x4b\x7a\x4d\x95\x0b\xec\x61\xa4\x19\xae\x46\x15\xbd\x2f\x5f\x51\xc8\xc7\xa0\x1f\x92\x5c\xdb\x6e\x7c\x53\x69\x4e\x2e\xdb\xe6\x6a\x5a\xb1\x22\x6b\x1a\x4f\x8e\xd8\xe8\xad\xe5\x4a\xc1\x4e\x81\x65\xa9\x20\xb7\x31\x48\x56\x17\xe4\x76\x06\x16\x35\x4d\x2e\x38\x29\x4c\x06\x62\x71\x45\x2e\xb0\x93\xb4\x6a\xb9\xa8\xf3\xf9\x45\x49\xb7\xe7\xcb\xb2\xa4\xe6\xa4\x72\x59\xc8\x2b\xcb\xcb\x72\x45\xb7\xe5\x95\x8a\x2e\xe5\x75\xad\xad\x50\x24\x38\x21\xa7\x15\xab\x02\x01\xab\x52\xc1\x22\x2f\x4b\xc5\xb2\x65\x5e\x51\x6b\xcb\xce\xe2\x72\x95\x8c\x0c\xf9\x2a\xd9\x79\x8a\x95\x15\x59\xd5\x73\x79\xa5\xac\xa8\x1a\x1d\x48\xe5\xe2\x8a\x9c\x5b\x94\xcb\x55\x47\x59\xc9\x4b\xb4\xf3\xc8\x10\x6c\x16\x2a\xc2\xb2\xac\x69\x12\x69\xee\xa2\xa4\xe7\xe6\x6a\x73\x73\x65\xd9\xdb\x02\x9b\x73\xcd\x5a\x51\x72\x5a\x71\xd9\x52\x5d\x54\x2a\xb2\x87\x3c\x4e\x22\x47\x57\x8b\xf3\x45\x72\x4b\xa7\xd1\xe2\x1c\x3d\xee\x30\x4b\xa4\xa9\xed\x04\xf9\xe4\xd8\x90\x76\x6a\x55\x59\x2a\x91\x8f\x45\x4e\x0b\x68\x3a\x99\xd3\x35\x55\x25\x13\xb4\x2c\x55\x0a\x5a\x5e\xaa\xca\xfe\x5d\xd5\xe4\x51\xaa\x54\xd4\xd9\xc9\x55\xb5\xb8\x4c\x90\xcf\x9e\x93\xcd\x6a\xf3\xe4\x36\x6d\x55\xaa\xd2\xcf\xa7\x09\xba\x7c\x55\xd7\x96\x35\xfb\x8a\x52\xcc\xd3\xbe\x13\x56\xaa\x95\x5c\x49\x5e\x73\xd3\x46\x94\x8b\x95\x52\x4e\x56\x25\x4d\x76\x35\xcb\x65\x25\x5f\x6a\x29\x92\x37\x68\x39\x5b\x93\xf5\x5a\xd5\x55\x55\x65\x8d\x34\x90\x8c\xad\x72\xd9\x6d\x7c\x0a\xf3\xcb\x39\xc8\x93\x1a\x88\x4a\xcb\xab\xb2\x5c\xc9\x69\x8b\x92\x2a\x7b\x08\x0a\xc9\xb5\xd6\xf8\x5a\x86\x0a\xb9\x64\x41\x29\x56\x16\x6c\xaa\xa6\xe5\xe6\x65\xb9\x80\xa5\x42\x41\x20\x53\x65\x4e\xb9\xda\x46\xa7\x0c\x45\x82\x1d\x4d\xb0\xb1\x96\x48\x6a\x7e\xb1\xb8\x22\xdb\xe7\xa4\x7c\x49\xab\x4a\x79\xd9\x32\x47\xde\xc4\x42\x07\x18\xfd\x28\xa4\xc1\x79\xa5\xba\xd6\xde\x28\xd4\x74\xa7\x09\x57\x25\x4d\x97\xad\x79\x55\x96\x74\xd9\x5a\x50\xa5\x79\x5d\x6b\x9f\x2f\x96\x75\x59\xa5\x13\x85\x9f\x2f\x4b\x0b\x82\x81\x5e\x84\x05\x59\x23\xb3\xc6\x52\xac\xcc\x29\x57\x79\xd2\x2f\x3c\x79\xe5\x36\x32\xe9\x6a\x15\x55\x96\x0a\xbc\x2a\x17\x14\x2b\x9b\xca\x4e\x63\x46\xb3\x06\xfb\x77\x95\xcc\xe6\x5b\x08\x6e\x5a\xa3\xb8\x8a\x60\xba\x32\xc1\xcc\x8a\xaa\xf3\x9a\xb4\x22\xb7\x69\x72\x59\xce\xeb\xa4\x9a\xd7\xe4\x4a\x81\x27\x18\xb1\x9d\x7c\x5a\xb2\xf0\x2d\x4b\x3a\x5f\xab\x14\x14\xe7\xbc\x52\xd1\x29\x66\x2d\x2b\x52\xc1\x49\x9f\xa1\x2b\x39\xda\x44\x7b\xad\x62\x76\x0f\x41\x31\xb9\x55\x59\x2e\x09\x64\x23\x57\x0a\x8e\x82\x5c\x96\x75\x39\xa7\xad\xca\x32\x99\x2a\xab\x64\x40\x29\x6a\x51\x5f\x73\x48\xf9\xbc\xac\x69\x39\xa9\x2c\xa9\xcb\xce\xd6\x82\xd6\x6e\x94\xc8\x2a\x6d\xac\xde\x92\xba\xec\x67\xc8\xb9\x22\x2f\x2b\x05\x39\x57\xac\x10\xb4\xb3\x22\x7b\x77\xd5\xb2\x3a\xe7\x9c\xa4\xeb\x32\x59\x62\xc9\xaa\xef\x37\x4b\xf9\x45\x49\x5d\x20\x33\x66\xbe\x56\x2e\x3b\xcc\x5a\x52\x68\x37\x0b\x9a\x5e\x70\x9b\x70\xad\x52\xaa\x28\xab\x15\xfb\x5c\xb9\x26\xeb\x8a\xa2\x2f\x7a\x1b\x10\x19\x8b\x15\x39\xaf\xcb\x85\x8e\x66\x5d\xa1\xa8\x91\x89\x5b\x68\x39\x4d\x93\x69\xc7\x54\x16\xdc\x73\x54\xfe\x53\xa1\xef\x58\xd3\x95\xd6\x32\x21\x1e\x5c\x2d\xe5\xb2\xb2\xea\x69\x29\x2e\xcb\x85\x62\x6d\xb9\xad\x20\xe9\x52\xae\x46\xf0\x89\xab\x20\xaf\xc8\x65\xa5\x4a\x96\x0a\xa5\x20\x0b\x05\x79\xa5\x98\x97\x35\x4c\xd6\x98\x85\xaa\x96\x9b\x2f\x5e\x95\x0b\x4e\x02\x11\xa2\x81\x96\x04\x52\x52\xe6\xe7\x3d\x0d\xf4\x64\x36\xb6\xa3\x51\xd3\x68\x6b\xdb\x82\x2a\x55\x17\x8b\xf9\x9c\xfc\x84\xa3\x22\xeb\xab\x8a\x5a\xca\xe5\xe5\x72\xb9\x51\x20\x98\x09\x57\xe6\xf3\xf6\x55\xa9\x5c\xae\x4a\x55\x59\x15\x56\x8b\x85\x05\x59\xd7\xfc\xc6\xdc\x23\x53\xa3\x89\x48\x7c\xad\xb5\x26\x1e\xd9\x55\xa9\x2a\x3a\x6d\x84\xdb\xa8\x34\xcb\x6d\x5a\x21\xa7\xe9\x8a\x2a\x2d\xc8\x9d\x9a\xac\xeb\xc5\xca\x82\x96\xd3\xd6\x34\x5d\x5e\xce\x15\xa4\xb5\x82\x2a\x4b\xcb\x7e\xad\xb8\x50\x91\xca\xb4\x89\xb5\xb2\xa4\xe6\x26\x72\x73\x92\x2a\xee\xad\x6d\x7c\xb1\x5c\x45\x61\x94\x54\x45\xd6\xd9\xb9\x81\xbd\xe7\x32\x84\xec\xbb\xa5\xba\x56\x2e\x7b\xf7\x56\x92\x5e\x35\xea\x28\xc6\xde\x75\xc7\x66\x0d\x7d\x4f\x77\x6b\xb5\x32\x3f\x2f\x18\xef\x86\x6b\xda\x9c\x9d\x56\x52\xec\x48\x21\x5d\xd6\x17\x65\x82\x1d\xdb\x25\x5d\x97\xf2\x8b\x84\x58\x93\x1d\x06\xbc\xac\x54\xe4\xb5\xb6\x39\x45\x2d\xc8\x74\x75\x73\x1a\xe0\x9c\xa2\xeb\xca\xb2\xc3\x28\x31\xdc\x64\x16\xc8\xd2\xe5\x31\x0a\x8b\x8a\x5a\xbc\x46\xd0\x69\xd9\x3c\x5c\xac\x54\x64\xb5\xdd\x28\x94\xe5\x79\xdd\x3c\xa0\xd4\x74\xb9\x71\x13\x3a\x2a\xcd\x82\xa6\xaf\x95\x65\xb3\x11\xba\x52\x75\x1b\x20\x59\x29\x8b\x79\xa9\xec\x65\xe8\x23\x27\x95\x8b\x0b\x95\x1c\xa1\x14\x65\xd5\xb7\xab\x6e\xa9\xa6\xe9\xc5\xf9\x35\xcf\xae\x4a\xf2\xf0\x8e\x5d\x35\xf4\xa9\xed\x46\xd5\x9c\x52\x2e\x38\x0c\x98\xbe\xa0\x79\x35\x7d\x41\x4a\xd2\x76\xec\xaa\x21\x6b\x89\xbe\xfb\x24\x82\xdc\x02\x46\x4d\xb1\x52\x20\x08\xba\x20\x13\xe4\xac\xc9\x7b\xaa\x8b\x15\x56\xed\x34\xab\x75\xa9\x5c\xcc\x9b\x6f\x46\x50\x6b\x8e\xac\x06\xc5\xca\x82\xaf\x51\xa7\x91\x05\xbe\x4c\xb0\x5e\x61\x57\x65\xa5\xb6\x3c\x27\xab\x72\xa3\xf5\x55\xa9\x58\xd1\xcd\xc2\x13\x35\x45\x97\xcd\x77\xd4\x8a\xd7\x64\xf3\x52\x4d\x57\x8b\x25\x59\x5f\x54\x95\xda\xc2\x62\xb7\x51\x49\x5e\xa0\x50\x54\x65\x4a\x78\xe5\x28\x11\xa6\xde\xfe\x18\xf9\x32\xb9\xb2\xf9\xfa\xb5\x4a\x41\x56\x49\xab\x0b\xf6\xf9\x5a\x85\x9e\xa1\x39\x8a\x15\x8d\xd2\x36\x8b\x92\xaa\xbb\xcc\x02\xa3\x96\x3c\x46\xb1\xa0\x12\x6a\x87\x8c\x40\xb7\x51\x23\x13\x82\x31\xaf\x54\xcc\x33\x8a\x95\x95\x22\x9b\xb3\xed\x46\x0d\x59\xb7\xcc\x7b\x57\x17\x15\x5d\x69\xa3\xc4\x5b\x4e\x5f\xab\xca\x0e\x8a\xac\x8d\x87\xd8\x69\x41\x2e\x14\x75\xa1\x5a\x9b\x2b\x17\xb5\x45\x3b\x5d\x61\xc9\xb4\x71\xef\x7a\xfd\x9c\xe6\x37\x07\x97\x31\x34\xd8\x80\xdf\x5b\xcb\xc6\x5a\xc7\x9e\x5a\xc2\x5e\xac\xaa\x52\x95\xf6\x90\x9d\x4e\x21\x4a\xb2\x15\x54\x69\x21\xb7\x28\x55\x0a\xe5\xc6\x67\xd6\x16\xa5\xaa\xac\xd9\x09\x66\x2e\xd3\x21\x4f\xfa\x4c\x52\x73\x5a\x5e\x2a\xcb\x6d\xda\x22\x21\x47\xc8\x5d\x8c\x65\xb2\x28\x97\x0b\x9a\x9b\xdc\x51\x2f\x5e\x33\xc9\x3f\x0b\xe5\x63\xda\xd8\x8c\x25\xef\x69\xc9\x97\x95\x5a\xc1\x41\xb7\xc6\xfa\xdc\xc6\x0a\x05\xa5\x22\xbb\x4c\x90\xad\xb0\x76\x56\x24\xed\x63\x10\xa5\xd5\x8d\x8b\x6b\x55\xba\x08\x93\xef\xd1\xb8\xa0\x9d\x96\xd8\x11\xeb\xbc\x52\x2e\xc8\x6a\x3b\xdb\xe5\x94\xaa\x5c\x71\x1a\x30\xa5\x8a\x0a\x1e\x46\x89\x10\x66\x24\xc7\x0e\xf0\x79\x49\xd3\x5d\x64\xd3\xc4\x94\xb6\xbc\xb2\x5c\x25\xd3\xbf\xbd\x20\x6b\x25\x42\x5a\x2d\x4b\x79\xb7\x09\x13\x36\x58\x59\xd5\xdc\xcd\xd5\x68\x4e\x91\xd4\x02\x5f\x50\xf2\x25\x81\xb0\xc7\x55\xa9\x40\x18\xe4\x82\x26\xeb\xed\xc6\x3e\x47\xd8\xe2\x92\xbc\x46\xcf\xf4\x9a\x00\xe3\x4c\xe9\x9b\xec\xad\x23\xc8\xc0\xb7\xa7\x8e\xa2\x03\xcf\x9e\xca\x5a\xb5\xa3\x51\xd3\xa0\xd1\x9a\x27\xe5\xa5\xaa\x46\x70\xab\xb3\x51\xb3\x58\x2c\xc8\xee\x46\x49\x95\xf5\x9a\x5a\x71\x34\xca\xba\x34\xe7\x6a\x14\x28\x79\x6b\x2d\x4b\x55\x5d\xa9\x7a\xd8\x2e\x97\x5f\x54\x95\x65\x99\xb0\xed\x6d\x46\xcd\xb2\x94\x77\x19\xa0\xd1\x35\xd6\x65\x79\x59\x51\xd7\x2c\xcb\x4a\x4d\x93\x9d\x94\xc8\xcd\x49\x95\x82\xaa\x14\x0b\x0e\x56\x2a\xd2\x9d\xbd\x41\xff\x3a\x9b\x94\xb0\x32\x3f\x6f\x55\x29\xf2\x15\xb4\xbc\x44\xb0\xb3\x4d\x93\xf3\x35\x42\x39\xd9\xb4\xe2\x72\x2e\x2f\xa9\x85\x36\xca\x16\xd2\x6b\x04\x83\xfc\x6f\xb0\x01\x0b\xaa\x52\xab\x5a\x29\x2b\xa1\xbb\xd8\xce\x7c\x78\x9b\x51\x5c\x96\xf2\xbc\xae\xac\x69\x48\x5f\xb1\xac\x4a\x7a\x7e\xb1\x8d\x91\x12\xb9\xc5\xda\x5c\x7b\x55\x59\xa5\xcb\x42\xb5\xa6\x3b\x0d\x0a\x23\xa7\x90\x25\xc9\x4d\xb9\x36\xf2\x81\x19\x8f\xe8\x34\xd8\x5d\x3a\xc7\x35\xab\x54\x20\x58\xdd\x2e\x69\x5a\x51\xd3\xa5\x8a\xee\x6e\x40\x06\x16\x90\x6a\x85\xa2\x42\xf9\x5d\xe7\x5c\xb9\xa6\xd2\x99\x40\x56\xd2\x76\x5a\x62\x13\xcd\x46\x61\xb2\x42\x32\xa0\xe2\x68\x21\x88\xc6\x5a\x0b\xe3\xad\x85\x64\x6b\x61\xa2\xb5\x90\x6a\x2d\x4c\xb6\x16\xd2\x8e\x39\x55\x29\xc9\x95\x5c\x71\x59\x5a\x90\x2d\x73\x6a\x4d\x5b\xb4\xe6\xa5\x65\x59\x95\xda\xd8\x2e\x27\x95\x75\x87\x01\xce\xab\x4a\x45\x6f\x37\x0a\xaa\x2c\xa9\x0d\x58\x29\x97\xbd\x0c\xef\xe4\xe6\x95\x7c\x4d\x23\x88\x5b\xa9\x2c\x78\x76\xd5\xad\xca\x52\xa9\x3d\xaf\x94\xcb\x0c\x3b\x6b\x6d\x6c\x3d\x2a\xcb\x15\xcd\x46\xc1\xe2\x35\x99\x70\xaa\x55\x49\x95\x29\xef\xa0\x2a\xe5\x5c\x55\x29\x56\xf4\xe0\xae\x52\xae\x50\xab\x96\x8b\x79\x49\x97\xed\x79\x55\xa9\xe6\xc6\x26\x73\x77\xd8\x28\x94\xcc\x8d\xf3\x04\x60\xa5\x54\x6e\x82\x01\xe9\x5c\x8a\x01\x85\x62\x85\x5d\x32\xaf\xca\xb2\x8b\x42\x0d\x3a\xcd\x49\x8b\x8a\x5a\x5c\x28\x56\xa4\x32\x2b\x99\xe4\x5a\x3b\x2d\x69\x4f\xd4\x24\x55\xb6\x16\xe4\x45\xe9\x1a\x21\x3c\x75\xa9\x58\xd6\x78\x82\xba\x6d\x84\x51\xd6\x6a\xaa\xec\x32\x81\x5c\x45\x5e\xc8\x8d\xed\x2e\x8e\xbb\x1b\xc5\x6a\xb9\xa6\xe5\xc6\xf6\x94\xc7\x9d\x8d\xf2\x35\x59\x55\x6c\x06\x8b\x34\x66\x02\xe3\x26\x90\xb4\x32\xc0\x2c\x4f\x98\x40\xca\x04\x26\x4d\x20\x6d\x02\x53\x26\x70\x87\xd3\x04\xe8\x53\x5d\x46\x69\x8e\xcc\x8f\xdc\xaa\xd7\x28\xb6\x7e\x38\x87\x51\x57\x50\xa5\x65\xc9\xbc\x7a\x5e\x95\x96\x65\xad\xcd\x28\x2d\x16\x54\x93\xa3\xab\x10\x3e\xde\x80\xf5\x62\x99\x2c\x27\xc5\x79\xdd\x7c\xcc\x4a\xb1\xa2\x93\x91\x36\x5f\x96\x54\xb9\x6d\xbe\x2c\x69\x8b\x94\x25\xb0\x33\x50\x99\x9f\xb7\x19\x50\x85\x9f\x2f\x17\xab\xb6\x05\x55\x2a\x14\xc9\xfa\xb1\xa0\x4a\xc5\x8a\x6d\x41\x2d\xd2\x75\x41\x60\x40\x45\x58\x2c\xd0\xa9\x62\xa5\xfb\x4a\x1b\xd9\xb1\xb1\x67\x23\x20\x19\x72\x04\x0d\x97\x8b\x95\x05\x0b\x1d\xe3\x1d\x74\x9b\x93\xb4\x2a\x61\xfb\x54\xb2\x5e\xe1\xa2\xa6\xd8\x1b\xe3\xc0\x56\x96\xa5\x52\x4e\x2a\x14\xda\x29\xc0\x38\x4a\x9e\x0c\x52\xa1\xac\x28\x25\x2d\x97\xb4\xd0\xbd\x51\x9a\x30\xf6\x29\x63\x3f\x69\x67\x7b\x82\xd9\x18\xa4\xaf\x2a\x96\xb2\x52\xab\xca\x9e\x65\xa5\xa2\x30\xd4\x69\xe0\x0b\x17\x95\x89\xe6\xe8\x7a\x44\x08\x7e\x26\xdb\xaa\x28\xba\x6c\xad\x50\xd9\x91\x93\xed\x72\x55\x59\xa9\x96\x65\x77\x45\x5a\x29\x2e\x90\xa5\x6b\x4e\x9e\x57\xe8\x51\xa3\x4c\x38\x4f\xa1\x2a\x95\x65\x5d\x97\x6d\x55\xa9\xa2\x90\x4f\xe5\x31\x81\xdc\x7c\x51\x5b\xcc\xc9\x6b\xb2\xb7\x51\xd3\xa4\x81\x9b\x67\x35\x48\xd7\x46\xcd\x6a\x91\x70\x95\x95\x85\xb2\x6c\xa1\x0d\x6e\xa7\xdb\x1c\x15\x24\x3b\x18\xcc\x30\x80\x93\x15\x0c\x01\xa5\xab\x5a\xcc\xd3\x66\x4b\x5a\xae\x5a\x98\xb7\x99\xd3\xc8\x65\xb0\xe7\xaa\x5c\x20\xad\xf1\x53\x46\x47\xce\xdd\x31\x9a\x2b\xc8\x0b\xaa\x2c\x6b\xb9\x7c\x7e\xb5\xdd\xa8\xa5\x64\xb8\x01\x53\x84\x65\xd7\xca\xc5\x82\xac\x2d\x2a\xab\x6d\x1a\xb9\xdd\xc2\xa2\x2e\x57\x2c\x94\x0e\x77\x6a\xab\x45\x3d\xbf\x68\x34\xc6\x61\x94\x98\x38\x4f\x97\x16\x72\xf3\x52\x5e\x66\x02\x9b\x9a\x2a\xdb\x09\x63\x5d\x96\xaa\x9a\x6c\xa3\x82\xf0\xdc\xd8\xa8\xc0\x80\xa4\x85\xee\xed\xac\x44\xc6\xa2\xae\x54\xa8\x58\xdb\xae\xab\x52\x45\x23\xf4\x11\xaf\xd7\x2a\x72\xdb\x4a\x51\x5e\x25\x14\xdc\xfc\x9a\xc3\x04\xab\x52\x5e\x17\x56\xe7\xd8\x68\x5e\x9d\xcb\x51\x62\x65\xcd\xbd\x3a\x47\xc8\x68\xa9\x52\x90\x35\x32\xa7\x6c\xab\x73\x39\xad\x56\xa9\xac\xf9\x5a\x10\x21\x15\x80\x2f\x4b\x6a\xa9\x93\x75\x23\xa1\x80\x73\xa6\x60\x22\xaf\xd7\xa4\x72\xf0\xd6\x03\x65\x49\x5d\x90\x6f\x53\xaf\x2d\x4b\xe5\xb2\x6d\xa5\xb8\x50\x21\x83\xc1\x49\x9e\xaf\x16\x8d\xa7\x33\x3c\xc6\x3a\xd5\x49\x16\x5a\x2a\xff\x27\x7d\xd6\x4e\x05\x0d\x6c\x58\x3a\xd8\xa8\x64\x33\xd6\xf8\xcc\xac\xd0\x36\x57\x53\x35\x9d\x32\xde\xb6\x39\x59\xae\x2c\xca\xaa\xdc\xd6\x20\xb7\x35\x77\x13\xcc\xcd\x15\x4b\xb2\xab\xb5\x5c\xd3\x5a\x8b\x79\x49\xdd\x75\xb6\x22\xe9\x9e\x96\xb2\x56\x9b\x5b\x95\xd6\x3a\x5a\x6a\x54\xa9\x58\xde\x53\x45\xbf\x49\x51\x6f\xbd\xcf\xaa\x54\x2e\x59\xe7\x29\xd5\x6a\x59\x54\x74\xb9\x6c\x2d\x4b\x6b\xb2\xaa\x39\xd8\x8e\xf1\x4c\x4e\xc2\xf5\x97\x73\x52\x51\x25\x03\xd3\x6e\x94\xf4\x65\x97\x01\xe5\xf5\xe2\x0a\xf9\xe6\xac\x38\x27\xa9\x6d\x0c\xca\x4b\xf3\xb2\xcb\x04\xd5\xdc\xaa\xa4\x2d\x06\x8d\xa2\x52\x59\x91\x2b\x45\xb9\x92\x97\x29\xc7\x2e\xb7\xb3\xfa\x82\x4a\xc8\x1a\x06\xcf\x93\x05\x4e\xd3\x3d\xac\xb4\x20\x91\x35\x92\xce\x7a\xaf\x51\xa3\x2a\x79\x26\x84\x51\x54\xf3\x31\x8b\x8a\x56\x25\x4c\x57\xbb\x59\xd4\xe5\xb2\x9f\xc1\x65\xa9\x56\x29\x90\xd3\x65\x95\x90\x27\xc6\x43\x8c\x09\x68\x34\x98\x8c\x04\x87\x01\x92\x4f\xaa\x19\xf7\x51\xe6\xe7\x65\xb3\x17\xaa\x92\x5a\x2a\x56\x16\x8c\x07\x56\x17\x25\x75\x59\xca\xaf\xb5\x9b\x45\xa5\x62\xbe\x4b\xb5\x78\xed\x9a\x64\xdc\xb8\x5a\x96\xd6\x8c\x17\xa9\x2a\x9a\x4e\x6e\x58\xcc\xcb\x6e\xa3\x46\x2d\x56\x74\x6d\x51\xa9\x1a\x8f\x2e\x14\xa9\x1e\x8a\x15\x34\xd9\x7c\x37\x6d\xb1\x58\xad\x16\x2b\x0b\xc6\x2d\x75\xe9\x6a\xb1\xad\x2a\xab\x9a\x52\xc9\x55\x8b\x15\xbc\x2c\x55\xdb\x97\xd7\x72\xa6\x80\xa6\xcd\x40\x75\x45\xa5\x62\xab\x16\x2b\xb9\x82\xaa\x54\x2d\xd5\xb2\x94\x97\xdb\x55\x8a\x21\x64\x32\x0f\xdd\xaa\xac\xe9\x52\x4d\x25\xf4\xd6\xb2\x5c\xa9\xd9\x35\x49\x97\xcb\xe5\xa2\x2e\xfb\x68\xb7\xd2\x1e\xc9\xb1\xf1\xa2\xa8\x6b\x82\x2e\xab\x64\x55\x11\x74\x55\x22\x6f\xd0\x3a\x40\xd5\x5a\x85\xaa\x32\xcc\x06\x38\xc9\x3a\xdf\x28\x09\x94\x21\x5a\x96\x3d\xcd\x16\x1b\x4c\x8d\xe3\x9a\xa2\x2c\xe7\x94\x1a\x21\x30\xab\x6d\xcd\xf6\xb4\xc9\x2b\xe6\x07\x27\xe8\x4b\x96\x75\xd2\x60\x2b\x1b\xe8\x16\x82\xcf\x2a\xbc\xae\x4a\xcb\x5d\x0c\xd3\xc8\x6a\x6e\xb5\xa8\x2f\x16\x2b\x39\xc9\xbc\x8c\x97\xaa\x55\xad\x8d\x11\xfc\x84\xc8\x77\x1b\x8c\x03\x25\x6c\x94\xd5\x4a\x60\x4f\xd9\x68\x90\xb3\xa5\xba\x56\x35\x4a\x86\xb0\xd5\x9a\x97\x2a\x79\xb9\x6c\xa1\xca\x12\x47\x7e\x51\x5e\x51\x15\x26\x83\x70\x9a\x05\x8a\x7a\x2d\x54\x57\xd8\x2e\x5f\xad\x12\x22\xa1\x2c\x6b\x9a\x09\x2f\x2b\x64\x19\xaf\x95\xcb\x4c\x76\xe5\x6e\x82\x39\xf9\x6a\x51\xe7\xc9\x57\x68\x23\x27\xb1\x15\xc7\x4e\x41\xb2\xd0\x08\xaa\x3c\xaf\xca\xda\x62\x7b\xad\x42\x78\x30\x76\x53\x03\x26\x27\x39\x4c\xce\x86\xb4\x33\xa8\xd5\xe6\x1a\x5f\xad\x85\x39\xea\xbc\x4d\x3d\x6d\xb0\xab\xc9\x54\x91\xeb\xdb\xe6\x8b\x04\x6f\x55\xa5\x05\xd9\x5e\x96\x0c\x08\x4b\x85\x39\x77\x53\x5a\x49\x29\x73\x7b\xa1\xa8\xe5\xa9\x50\xb4\xa3\xa0\x50\x09\x62\xa1\xa8\xe9\x35\x75\x8e\x90\xc1\xae\xdd\x55\x76\x26\x17\x90\x75\xc9\x2d\xaf\x50\x4d\xe0\x8a\x54\x2c\x13\xe6\xa2\x8d\x95\xe7\x6a\xda\x9a\x01\x92\x25\xdd\x65\x32\xa1\x55\x39\x5f\x94\xca\x78\x79\x59\xe3\xc9\x9b\xba\x4c\xc9\x22\x61\xd1\xe4\x42\x90\x31\x47\x2d\x62\x54\xc6\xd3\x30\x3d\x81\xf9\xe5\xe4\x82\xc1\x52\x15\x2b\x39\x5d\x2a\x97\x0c\x96\x8a\xdd\xc2\x28\x30\xc1\xbf\x51\xa0\x9a\xd1\x82\xa0\x15\x28\xef\xe4\x32\x99\x28\x26\x24\xc6\xda\xb2\xd6\xa6\x2d\x6b\xb9\x79\xa9\x58\x96\x0b\xbc\xb6\x56\xc9\x3b\xc9\xa6\x21\x29\x75\xd0\x52\x55\x55\xe6\xca\xf2\xb2\xd3\x10\x42\xd6\xaa\x05\x49\x97\x1d\xba\x54\xa5\xc4\x23\xc1\x0a\x4e\xb2\x76\x52\xa9\x8b\x2c\xad\xc8\xf6\x15\x82\x8f\xe8\x98\xa7\x6c\x64\x2e\xbf\x28\xe9\xb6\x95\x2a\x13\x7c\x7a\xa4\xa2\xca\x84\x48\xb2\xa4\xe7\xe6\xcb\x92\xde\x79\x4b\x0d\xa3\x3e\x0a\xfb\x77\x1d\x28\x56\x0a\xc5\x95\x62\xa1\x46\xb0\x48\xad\xa8\xcb\xa1\x5d\x47\xcb\xf2\x82\x4a\xe6\xa0\x7c\x55\x57\xa5\xee\xdb\x1e\xaa\x28\xea\xb2\x54\xee\xb9\xed\x31\x55\x2e\xd4\xf2\x72\x61\xf7\x3d\x55\x39\x4f\x0b\xb7\xb9\xa7\x79\x88\xdd\xd3\x9b\x57\x2a\xf3\x45\x75\x99\xc9\x41\x98\xd0\x4b\xa0\xda\x32\x7d\xc5\xa5\x54\x0a\xf2\x32\xe9\x29\x4a\x99\xb8\x18\xee\x90\xca\xac\x68\xa1\x3c\x27\x5a\xcd\xf3\xab\xc5\xf9\xa2\x57\xae\x2c\x92\xb9\x59\xc8\xc9\x95\xbc\xba\x46\x35\x9c\xce\x86\x3c\x9a\x4c\x57\x67\x45\x69\x39\x66\x57\x57\x72\x8b\x8a\x52\xaa\x55\xf7\x0e\x5c\x65\x7e\xde\xb3\xb7\xaa\xe2\x34\xf5\x10\x54\xfe\x6e\xaf\x16\x65\x26\x01\xeb\x68\x40\xa6\xf2\xa4\xe0\x30\xf4\x75\xb4\xd6\xbd\x5c\x2b\xeb\x45\xfa\xbe\xb4\xdc\x46\xc8\x31\x06\xf2\x79\xa9\x24\x5b\x0b\xca\xb2\x54\xac\x58\x28\xff\x6d\xa7\x5b\xa6\xe9\x37\xe5\xec\xf9\xa2\xbe\xc6\x2f\x2b\x4a\xc1\x46\x36\xb9\x39\xa9\xe0\xac\x28\x7a\x71\xbe\xc8\x8e\x6b\x1d\xbb\x4a\x8c\x99\xd8\x5d\xa5\xcc\xcf\xfb\x76\xd7\x30\xb5\xc7\x9e\x4a\x36\xde\x2d\x64\xa2\x6b\x6d\x55\x49\xd5\xd7\x28\xd9\x62\x65\x94\xb4\x8b\xed\x1a\x4a\x48\xf6\x29\xcc\xf5\x47\x2a\x14\x8c\x8f\x63\x9e\x60\xa3\x0c\x9a\x52\x91\xf9\xaa\x52\x2e\x5b\xa9\xa4\x2e\x6f\xd5\xf2\x8b\x8a\x52\xb6\x50\xa9\x92\x6d\x75\x51\x22\xab\x9e\x1e\xd0\xe4\x0a\x99\x04\x15\xda\xdf\x9a\xa4\x17\xb5\xf9\xa2\x5c\xf0\x34\xab\x2b\x72\x4d\x57\xa5\xb2\xb7\x59\xd3\x38\xab\xbb\x59\xb7\x42\x88\x81\xd6\x3b\x74\xee\x39\xd6\x38\x60\xa7\xe3\x21\x37\xa7\x5c\x0d\x36\x20\xb3\xe1\xb9\xb9\xb2\x54\x29\x05\xa8\xc5\x42\x6e\xae\xa6\xeb\x4a\x25\x57\xab\xd0\xd3\xe4\x82\x6f\x57\xb5\x51\xc9\x6b\xba\xa4\xda\xc9\x26\xb7\x28\x95\xe7\xdb\x29\xc4\x84\xdb\xed\xc9\x42\x43\x39\x61\xe8\xac\x8a\x73\x45\x42\x1f\xbb\xa5\x7c\x5e\xa9\x11\x9c\x27\x95\xc9\xb0\x0d\xec\x29\x13\xc2\xac\x2c\xeb\xed\x8d\x6a\xe5\xaa\xcb\x84\xd9\x32\xe5\x21\x8b\x2d\xa1\x1a\x08\x4d\x40\x50\x93\x6e\xa1\x7a\x2f\x3b\xdd\x92\x4f\x62\x40\x84\x2c\x37\xa0\x8a\x60\x0a\x94\xa4\x4a\x45\xa9\x55\xf2\x32\xe9\x1d\x47\x2b\x6f\xd7\x26\x69\x9a\xac\x69\xa4\x9e\x80\xc5\x85\x0a\x01\x5d\x4d\x90\x20\x13\x77\x4b\xb1\x2c\xe9\xb2\xa7\xa5\xcc\x64\x63\xde\x5b\x6a\xe4\x82\xaf\xa5\x8e\xd5\xe4\x8a\x15\x3b\x21\xff\x55\xb9\x22\xaf\x5a\xc9\x1a\x5d\xab\xf2\x84\xb6\xb7\x99\x04\xbe\xdb\x04\x8c\x1e\x6d\x9b\xab\x2d\xe4\x98\x3a\xd2\x32\x57\x2b\x96\xc9\x8a\x9c\x5f\x94\x0b\xae\xfc\xa2\x54\x59\x90\x73\x8b\x45\x42\xb7\xac\x39\xd8\x77\x35\x14\xb4\x06\x0b\xa9\xca\x52\xc1\xd0\x82\x59\xf2\x65\x49\xd3\xf8\xbc\x52\x90\xdb\xf3\x2a\xa5\x54\x08\x72\xb7\x17\x24\x6d\x91\x4a\xf1\xac\x4c\x11\xd9\x4e\xf8\x00\xc3\x5e\x02\x17\x2a\x1a\x5f\x50\x2a\xb2\xad\x40\x45\x73\xe5\xb2\x85\xae\x55\xed\x64\xdd\xa6\xca\xe7\x6a\x55\x90\xaf\x56\xcb\x8a\x2a\xdb\xe5\xab\xba\x5c\xd1\x08\x11\x42\x58\x29\xdb\xbc\xb4\x42\xb0\x87\xec\x36\x01\xe3\x75\x6c\xf3\xb2\x5c\x20\xef\xed\x98\x2f\x56\x48\x77\xd0\x85\x96\x15\xa8\x81\x48\x5e\x76\x10\xae\x9e\xdc\x9e\x9c\xe6\x34\x0b\x54\xb2\x24\x2c\xc8\x3a\x79\x2a\x61\xf5\x0b\x72\x1b\xc3\x1e\x04\xe1\xf1\x8b\x72\xb9\xea\x6c\xc8\xa3\x29\xff\x6f\xf4\x0c\xbf\xa8\x2c\xcb\xee\x45\xa5\xa6\x2e\x90\x2e\xc8\xc9\xcb\x55\x7d\xcd\xd5\x2c\x93\xa5\xdc\xb2\xa8\xeb\x55\x8d\x2f\x56\xe6\x15\x07\xd9\x34\xf4\xc2\x4c\xbe\xb7\xcb\xba\xc1\x42\xed\x31\x9c\x74\xdb\x98\xfc\x65\xa9\xb2\x50\x93\x16\x64\x2b\x21\xba\xf3\x8b\x3c\x55\x5a\x93\x15\xcc\x4e\xf5\x77\x4a\x55\xae\x38\x18\x64\xe8\xcb\xcb\xca\x9a\x54\xd6\xd7\x3a\x9a\x3a\x6b\x6a\xb1\x30\xa7\x5c\xb5\x11\x4a\x80\x8c\x66\x37\xb9\x8a\xf4\xd0\x9c\xaa\xac\x6a\xb2\xda\x6e\x96\x2b\xf2\xaa\x9d\xc2\x84\xfe\xb3\x91\xfe\x23\x84\xa2\x50\x95\xd6\xc8\x48\x73\x57\x65\x75\xd9\xe0\xd9\x72\xcb\xc5\xbc\x9f\x95\x0d\xb3\x88\xbc\x54\x96\x2b\x05\x49\xf5\xd0\x5a\xaa\x34\x35\x14\x87\x41\x56\xc3\x24\x9c\xa4\x13\x8c\x25\xca\x49\xeb\x8b\x05\x82\x5a\xf4\xb5\x36\x5a\x5a\x96\x0b\x45\xc9\x45\x41\x83\x90\xd0\x16\x58\x51\xcb\x4b\x15\xaa\xbf\xeb\x30\x39\x7c\xf2\x89\x19\x28\x54\x95\xf2\xda\xb2\xac\x76\x30\xd9\x69\x43\x61\x59\x91\x57\x2d\x94\x25\x70\x3e\x51\x23\x68\x8b\x0e\x73\xf9\xff\xa1\xec\x5b\xc0\xe4\x2a\xaa\xfc\x4f\x55\xdd\x7e\xce\x74\x4f\xf7\x9d\x99\x66\xfa\x95\xee\x9e\x0c\x03\x22\xc6\x88\x88\x11\x23\x46\x8c\x18\x31\x22\xc6\x88\x88\x91\x64\x26\xd3\x49\x06\x26\x33\xe3\x3c\x42\xc0\xa8\x18\x11\x31\x62\x8c\x11\x11\x23\x62\x16\x23\x62\x8c\x11\x11\x11\x31\x22\x62\x44\x8c\x6c\x96\x65\xdd\x2c\x8b\x31\x1b\x59\x96\x65\xd9\x2c\xcb\x62\x16\xb3\x88\xf0\xff\xea\x57\xe7\xd6\xbd\xb7\xbb\x27\xf8\xe7\xfb\xc8\x74\xd7\xfb\x71\xea\x3c\x7e\xe7\x54\xf5\x44\xc7\x87\xa7\xeb\x93\x10\x09\x03\xa3\x93\x97\xd5\x27\x62\x88\x62\x19\x9f\x8a\x4e\xd4\x87\xea\xf5\xb5\x69\x73\x28\x3c\x8d\x23\xa6\x15\xe9\xb1\x89\xba\xa3\x45\x74\x7c\x52\x1f\x91\xe9\x91\x7a\xd4\x78\x6d\xe3\x5e\x5f\xdd\xb6\xd3\x81\x71\x83\x10\x6a\x51\x70\x82\x4d\x35\x27\x72\x39\xb7\xe5\xfa\xe9\x9e\xae\x95\xb2\x49\x2b\xeb\x23\x9a\x41\x7b\x05\x2c\x62\x9a\xb5\x69\xf0\x50\x8e\xd6\x35\xbf\xe7\x14\x90\xd3\xf2\x81\xd1\xa9\xfa\xe8\xe8\x40\x4f\x43\xf2\xca\xb1\xb5\xe3\x63\xa3\xf5\xd1\xa9\x96\x19\x93\xc3\x53\xf5\xce\x86\x8c\x35\x43\x6b\x87\xbb\x1b\xd2\x26\xa1\x2a\xf8\x83\x18\x5b\x57\x9f\xd0\x9b\x92\xb6\x29\xd8\xb1\xc0\x57\xbd\x19\x1d\xf6\xeb\x44\x7d\xad\xd6\x44\xed\x77\x68\x65\x8e\x66\xbb\x71\xfd\xcf\xf2\xa9\xcb\xc6\x3a\x2c\x13\x1e\x1c\x98\xbc\xb4\x3e\x95\x0a\x31\x65\x8b\xb0\x6b\x3a\x9e\x4c\x4e\x8e\xd7\x47\x46\xc0\x9c\x22\x5a\x4e\x4c\x46\xb0\xb2\xb1\xc9\xe9\xc1\x4b\xea\x2b\xa7\xdc\xc9\xe9\x71\x6d\x9e\x4e\x8e\x4d\x2c\x67\x6e\x6f\x02\x68\x8c\x2d\x80\x8f\xfa\xec\x75\xd9\x4f\x70\x58\xb1\x40\x08\x29\x99\x5a\xff\x56\x53\x03\x83\xe9\xa9\x81\xc1\xe5\xd3\xa3\x06\xeb\xa8\x0f\xc5\xa7\xd6\xd4\x07\xa6\xea\x13\x93\xc9\xa9\x35\xd3\x6b\x07\xa1\xf0\xc7\xcd\xc7\xe9\xf1\x34\x3e\x4c\x2e\x9f\x36\xf6\x90\x9a\x1a\x5b\x19\x99\x1a\x1b\x1a\xb8\xdc\x99\x1a\x1b\x19\x49\x01\x85\x5f\x6e\x18\xed\xa4\x01\x78\x34\xf3\x4f\x4d\x4d\xd4\x4d\xac\x97\xae\xe4\x7f\xd3\xda\x68\x9b\xfd\x36\x3d\x9e\xb0\x3c\x3f\x65\x3f\xe9\x55\x49\xad\xab\x4f\x0c\x6b\xb1\xbc\x7c\x5a\x1f\x6b\xc0\x43\x03\xab\xf5\xb1\x34\xa8\xd1\xc0\xc4\xc4\xc0\xe5\x29\x83\x1a\x0d\x4c\x8c\x4d\x4f\xd6\x47\xda\x18\x43\x1a\x99\x5e\x3b\x1a\xc7\xe7\x21\xaf\xc8\x9a\xfa\xc0\x90\x66\x29\x09\x7c\xd3\x8c\xc7\x14\x5e\x3b\xa6\x0f\x80\x69\xf1\xc3\xd3\xc3\x23\x9c\xac\x2d\xcb\x81\xb5\xa6\xf0\x65\xf5\xfa\xa5\xc9\x75\xc3\x9e\x88\x4e\xfb\x1f\x4d\x60\x95\xd6\xfe\x57\x0f\xaf\x9a\xd2\x1f\x3a\xf0\x6d\x6d\x5d\xab\xab\xda\x30\x6f\xc3\xf7\xa9\x89\x81\x75\xf5\x11\x47\xb3\xe0\xae\xcb\xc7\xa6\xa7\xa6\x07\xeb\x1c\x28\x51\x1f\xd2\x86\x48\xa4\xae\x77\x39\xcd\xdc\x88\x35\xd6\x76\xcd\xac\x2d\x27\x9c\xa8\x43\x30\xc4\x60\x15\x0f\x8f\xc6\x3d\xeb\xd8\xd1\x3c\x99\x8d\x23\xad\x46\xb7\x19\xd0\x06\x70\x7c\x9a\x3f\x4f\x0d\x5c\x5a\xd7\x23\x45\x44\xdd\xaa\xb1\x09\xc8\x02\xb5\x7a\x78\xd5\x09\xc3\xa3\x43\xf5\xa9\xfa\xc4\xda\xe1\x51\x4d\x1a\x56\xe9\x69\x1b\x5b\xb5\x0a\x4a\xcf\xf8\xf0\x68\x4c\x5b\xfa\x63\xd3\x53\x6d\xab\x86\x47\x57\xd7\x27\xc0\x81\x22\xab\xf5\x7c\xb2\x68\x7d\x70\x7a\x64\xd0\x1b\x65\xae\x99\x9b\x69\x7a\xcb\x9a\xd0\xab\x01\x38\xc8\xe1\x03\x4a\x4c\x8d\x4d\xaf\x5c\xa3\xb9\x4b\xd2\x53\x7f\x46\xea\x69\x76\x59\x18\xfb\x73\x32\x09\x72\x9d\xd0\x54\xd5\x36\x34\x36\x3a\xcd\x48\x1d\x7f\x06\x3a\x97\x34\xd6\xc3\xd4\xe5\x23\xf5\x36\x7c\xbc\xac\xae\x87\x94\x5c\x3b\x36\x35\x36\xb1\xf2\xf2\x95\x23\xf5\xd8\xd8\xf8\x00\x54\xe5\xf1\xfa\xd4\x64\x7a\x7c\xa2\xbe\x7a\x54\x0f\xe3\xb2\xb1\xb5\x03\xa3\x59\x13\x08\x69\xce\x2e\x38\x40\x1a\xa1\xa2\xf5\xa1\xe5\x2b\xc7\x26\x46\xeb\x13\xd1\x89\xb1\xcb\x86\x47\x57\x03\xdd\x84\x76\x6b\x8e\x50\x1b\xbc\x5c\x50\x70\x26\xe2\xe3\x03\xa3\xcb\xa7\xc6\xc6\x46\xda\xea\xd3\x13\x63\xcb\x27\x2f\x5f\x3b\x38\x36\xd2\xb6\x7a\xb9\x3d\x05\x5d\x0c\xd5\x86\x0e\x7f\x3b\x73\x4e\x48\xf5\x6c\x88\x13\x68\x92\x4a\x73\xb4\xd3\xaa\xb1\x89\xfa\xba\xfa\x44\x6c\x60\xe5\xf2\xe9\xd1\xe1\xa9\x0e\x06\xda\x96\x4f\xae\x99\x9e\x9a\x1a\xa9\xa7\xf4\xce\x0c\x8f\xae\x1c\x99\x9e\x1c\x5e\x57\x6f\x1f\xac\x0f\xe8\x25\xc5\x72\x76\x78\x71\x90\xec\x7f\x88\xae\x1c\x98\x1c\x1e\x1d\x4b\xae\x5c\x33\x3c\x02\xc3\xb5\x9e\x36\x1f\x57\x4d\x0c\xd7\x47\x87\x46\x2e\x4f\xaf\x1a\x9e\x0a\x94\x4f\xaf\x9a\xa8\xd7\x97\x0f\x4e\xd4\x07\x2e\x5d\x35\x30\x39\xd5\xb6\x7a\x6c\x64\xd5\xf2\x95\x63\xd3\x13\x93\xf5\xd8\x9a\x31\xad\xa6\x0d\xc6\x2e\x1d\x9e\x5a\xb9\xa6\x3e\xea\x8c\x8f\x8d\x8d\xb4\xc3\xe2\x63\x08\x2d\x39\xb9\x76\xec\xd2\x3a\x5c\x43\x29\xfd\x51\xcf\x5a\xe7\x4f\xaa\xc9\xf1\x01\x67\xf5\xd8\xc0\x94\xb9\xc5\xf7\xd2\x4b\x24\x71\x6b\xaa\x9d\x88\x4a\xfc\x33\x0f\x8a\x4e\x22\x41\x27\xab\x07\x49\xe2\xad\x0f\xc9\x37\xab\x92\x34\x8b\x4e\x25\x31\x32\x30\x35\x4a\x71\xf3\x12\xca\x4b\x2f\x21\x47\x8c\x0c\xaf\x1e\xa0\x38\x97\x13\xe4\x20\x57\x50\x9c\xc4\x9a\x17\x28\x4f\xf3\x68\x69\xfc\xb1\xf4\x91\x13\xb6\x97\xb6\x54\x6e\x7d\xc5\xe1\x57\x8e\xbe\x6a\xf1\xab\x6f\x7f\xcd\xe8\x1b\x36\xbf\x69\xee\x82\xe4\x82\x9d\xe7\xde\xfd\xce\x9b\xce\x77\x2f\xbe\x68\xf0\xb4\xc1\x1d\xab\xb6\xae\xd9\xb4\xe6\x2e\xdd\x86\x7c\x8c\xda\x28\x8b\x37\x0a\x4b\x54\xa3\x34\xd5\x28\x47\x25\x2a\xd2\x22\xda\x4a\xfb\x45\x5c\x2c\x10\xeb\xc5\x6e\xf1\xb8\xcc\xc9\x85\x72\x42\xde\x24\x1f\x90\xcf\xa8\x1e\x75\x96\x1a\x54\x57\xab\x9d\xea\x41\x75\xc4\x69\x77\x4e\x75\x16\x3b\x23\xce\xb5\xce\x4e\xe7\x01\xe7\x89\x88\x8c\xcc\x8a\x9c\x19\xb9\x20\x32\x11\xd9\x1c\xb9\x35\x72\x5f\xe4\x60\xe4\xb9\x68\x26\x7a\x4a\x74\x61\x74\x59\x74\x2a\x7a\x6d\x74\x47\xf4\xee\xe8\x43\xd1\x27\xa2\x2f\xc4\xdc\xd8\xc9\xb1\xb3\x62\x4b\x62\xab\x62\x57\xc4\x36\xc7\x6e\x8e\xdd\x19\xdb\x17\x3b\x18\x7b\x3a\xf6\x62\x3c\x1d\x9f\x15\x9f\x13\x3f\x2b\x7e\x5e\x7c\x59\x7c\x4d\x7c\x2a\xfe\xb1\xf8\xd5\x72\x07\x95\xf1\x2b\xc7\x79\xca\x51\x91\x5c\x4a\x51\x95\x5c\x8c\x38\x85\x94\x2c\xe5\x68\x36\xe5\x28\x4b\xbd\x94\xa6\x3c\xf2\x7b\x29\x47\x35\x72\xe5\xb7\xa8\x34\x63\xdd\x3c\xb9\xd4\x85\xf9\x97\xa8\x80\x95\x70\xd1\x46\x46\xff\x95\xb7\x50\xf1\xaf\xae\x59\xc4\xef\xa1\x15\x74\xef\xf2\xdb\xc7\xa9\xa7\x7b\xc8\x04\x72\x82\xf5\xbe\x49\x85\xbf\xba\x3f\x97\x4e\xa4\x1a\x55\x28\x2d\x6f\x3d\x4e\xad\xc6\xde\xfc\x5a\xdf\xa0\x9e\x19\x6b\x75\x52\x9e\x3f\xa5\xa9\x48\x5d\xe8\x3b\x2b\x2f\x41\x79\x3d\x82\x3e\xbc\xda\xab\x3f\x95\xf1\x49\xa7\x14\x29\x45\x19\x94\xd0\xfd\xb9\xf2\xdf\x28\x47\x19\xca\x50\x89\x7a\xa9\x88\xb6\x3a\xb0\x33\xba\xc5\x0c\xfa\xeb\xc3\x77\xdd\x76\x8d\x7e\x47\xdd\xa8\x5b\xe6\x12\x2e\x15\xa8\x44\x59\x94\xd3\xe3\x4b\x53\x06\xd4\x39\x9b\x5c\xf9\x1c\x75\x51\x95\xaa\x94\xc3\x2f\xd8\x17\xc8\xe5\xf6\x6b\xd4\x4b\x15\xd4\xcd\x9a\x5a\xf2\x7f\xa9\xb3\x65\xc9\x0a\xfa\xf4\x4b\x1f\xc4\x2f\xda\xb5\xee\x3d\xd0\x33\x7d\x1f\xa5\xb3\xe1\x99\x52\x0a\x73\xac\x79\x2b\x29\x9f\x44\x99\x2c\x56\xb4\x1b\x6b\x54\x46\x4e\x17\xea\xa5\xa9\x42\x35\x79\x94\xb2\x2f\x37\x32\x79\x33\xa8\xfa\xf8\x3b\xf4\x3b\x1e\x49\xab\x91\x97\xa8\x93\x3a\xe5\x1f\xa9\xa3\x65\x4f\xa6\xbe\x2b\x3e\x6b\xf3\xab\xe0\x01\x26\xb7\x8c\x91\xd7\xa8\x24\x87\xf1\x52\xc2\xcc\xbb\x7e\x90\x3a\x8e\x33\x82\xa2\xfa\x89\xcd\xd7\x74\x5e\xe3\x55\xd1\xeb\x55\x03\x9d\x3c\x4e\x1d\xc7\xa3\x13\xf9\xef\xd8\x81\x60\x7e\x90\xca\x3e\x8e\xf5\xf4\x47\x67\xc6\xd4\x87\xd4\xac\x7c\x96\xd2\x2d\xe7\x0e\x8e\xa1\xf6\x60\x15\xf2\xfc\x5d\xb7\xd7\x8b\xb2\x9a\xc6\x2e\xc5\x5e\x34\xcf\xba\x97\xca\xe2\x1a\xa4\x64\x41\x71\xa5\xe0\x5a\x51\x55\x8e\x84\xea\x75\x62\xce\xde\x68\xfe\x15\x63\xd7\xb4\x6f\xc6\xd4\x81\x5f\x51\xd4\x3c\xaa\x9f\x1e\x09\xe5\xa5\x78\x05\x34\x5f\xa8\xca\x0d\xd4\x1e\x68\xb3\x97\xca\x5e\x8b\xa2\x9d\xda\xb1\x8e\x7a\x85\xba\xf1\x5b\xdb\x25\xec\x40\x3f\xad\xa2\xf6\xd0\x18\x67\x51\x2f\xb9\xfa\x7f\xf9\xdf\xd4\x4e\x55\x2a\x83\x2f\x18\x8a\x63\xbe\x2f\x9f\xa6\x76\x2a\x82\x1f\xf5\xf2\x19\xe5\x15\x93\x1f\xb4\xad\xe5\xa9\x04\x1a\xf6\x24\xc5\x3f\xe1\x57\x0b\x5a\x8c\x5b\x3e\x81\xdf\xb2\x0a\xef\x6b\x89\x4e\xa4\x7f\xe6\x74\xaf\x86\x6e\xa9\x40\xae\xac\x40\x16\x65\xd1\x46\x60\x4d\x45\x1b\xb5\x85\xe6\x68\x7e\x7b\xd2\x95\xff\x43\xc9\xe6\xbd\x95\x6b\x28\x19\x58\xab\x0e\xd4\xea\x51\x37\x53\xb2\x61\xe5\xf5\xb9\xbd\x8d\x92\xcd\xa7\x59\x3e\xc3\xed\x9a\xb2\xdc\xae\xb8\x16\xbf\xed\x97\xc5\xac\xc1\x3f\x75\xbb\xe2\x5c\x4a\x06\xc6\xe6\xd1\xd7\x25\x78\x9d\xdb\x70\x24\x2e\x29\xff\x93\x12\x76\x47\xf9\x64\xd2\x2b\xf1\x3e\x76\x96\x57\xcd\x45\x9d\x47\x43\x69\x66\x25\x9f\x0a\xd5\x4d\xeb\x7c\xf9\x27\x4a\xe0\x0c\x95\xc0\x31\xf4\x9e\xf7\x89\x4d\x94\x68\x3c\xc9\xf2\x08\xc5\x43\xfd\x16\xe9\x55\x14\xa7\xd9\xfe\xba\x53\x45\x6d\xc3\x9b\x34\x79\xcb\xc7\x6e\xc7\xcb\x25\x19\x70\x64\xcd\xf5\xbe\x87\x97\xd8\xb2\xde\x0e\xca\xff\xa2\x18\x24\x6e\x05\x72\x35\x4b\xcb\x29\x16\xe0\x00\xfd\xea\x6e\x8a\x51\x06\x94\xaa\xa5\x60\x4d\x7c\x06\x2f\x79\x9e\x80\xd3\x55\x93\xff\x41\x11\x3b\xa2\x53\xf1\xb9\x83\x7a\xa9\x20\x57\x93\x03\x4e\x59\xa5\xdd\xf8\x55\xbd\xac\xdc\x88\xbf\x1d\xf4\x7a\x1a\xa7\x1b\x69\x2f\x1d\x11\xae\x98\x27\x96\x89\x2b\xc5\xcd\xe2\x3e\xf1\x98\x94\xb2\x57\x9e\x2d\x07\xe5\x46\xb9\x5d\xee\x91\x8f\xc8\xa3\x2a\xad\x4e\x56\x67\xab\x65\x6a\x9d\xda\xa2\x76\xaa\xbd\xea\x90\x3a\xe6\xb8\xce\xa9\xce\x39\xce\x0a\xe7\x0a\xe7\x3a\x67\xb7\x73\xbf\x73\xc8\x79\x2e\xd2\x1e\xe9\x8d\xcc\x8b\x9c\x17\x19\x8c\xac\x8b\x5c\x13\xd9\x16\xd9\x15\xb9\x27\xb2\x3f\x72\x30\xf2\x64\xe4\x68\x94\xe8\x10\x75\x83\xc2\x6b\xd8\x93\x7e\xd0\x47\x37\x46\xdc\x65\xf9\x78\x27\xf5\x62\xcd\xfe\x15\x9c\xb8\x17\x5c\xbb\x04\xda\xe8\x46\xf9\x12\x4e\x92\x39\x63\x5a\x66\xfc\x5b\xcb\x72\x86\x9f\x7b\x6b\xad\x5b\x9e\x46\x9f\x69\xd6\x68\x4c\x5f\x7d\x86\x53\xb3\x96\x50\xa1\x1e\x7a\x9c\xdc\x16\xad\x65\xb1\xf3\x69\xa6\xee\x2c\xfd\x07\xf6\x48\x9f\x8f\x6e\xaa\x61\x34\xe6\xc4\x15\x90\x9b\xd3\xab\x2e\xb2\xe0\x99\x15\xf0\xeb\x0a\x5e\x14\x2d\xa1\xce\x49\x98\x41\x0d\x5a\xc9\x9f\x31\x9f\x12\xf5\xd8\xfe\x1b\x24\x1e\x3d\x01\x19\xd1\xdc\x53\xda\xd0\xa8\xba\x07\x7b\x5c\xe5\xd2\x26\x2f\xc3\xa7\xc5\xa5\x8a\xe8\x01\x65\xf9\xa3\x98\xcd\xa7\x21\x07\x5e\x93\xa7\x7f\x9f\xa1\xfd\x6e\x93\x26\x3f\x89\x39\x37\xae\x47\xda\x9e\xd8\x3f\x80\x13\x04\x77\x54\xd3\x66\x0f\x78\x5d\x1f\x15\xe5\x9f\xd1\x7f\x78\x86\xc1\x11\x3d\x89\xd4\xe6\xfe\x35\x37\xec\x13\x69\xac\x87\x3f\xfa\x0e\x8c\x40\x8f\xa4\x20\x3e\x87\x52\xbd\x48\xf7\xb8\x4c\x2f\xd3\xff\xef\x31\xc6\xe0\xa8\x2c\x1f\x10\x2e\xb5\x87\xda\xcc\x31\x3d\x55\xc4\x97\x21\x0d\x9a\xc7\x92\x14\x99\x86\x3a\x7a\xd7\xf0\x2b\xbd\xa2\xa3\x29\x27\x6f\x28\x4f\x5c\x3f\x43\x6b\x09\xf1\xa5\x19\x72\xe2\xe2\xba\x19\x72\x62\xe2\x8b\x33\xe4\x44\xc5\xd6\x19\x72\x22\xe2\x0b\x33\xe4\x38\xf2\x6e\x6a\xa7\x5e\xea\x60\x7a\xf6\x4f\x61\x4d\xdc\x80\x3a\x7a\xbf\x5c\xe8\x9d\x39\xec\x5b\x17\xb9\xea\xa7\xd4\x8e\x99\x65\x98\x02\x2c\xd7\x17\xb9\x86\x35\xa8\x42\xee\xea\x96\xff\x85\xda\x1b\xf6\x81\x4f\xb7\xe8\x6e\xa8\x63\xc7\x29\xba\x1a\x72\xcc\x79\xd0\xfb\xb3\x99\xda\xec\x8e\x7b\xe7\x43\xaf\x74\x27\x7e\x33\xdc\xaf\xa1\x7b\xee\xa4\x1a\x1d\xa6\xb6\x86\xde\xf5\xc8\xb2\xe2\x04\x4a\x86\xca\x6b\x7a\x2a\x8b\x54\x43\x2a\x34\x68\xf9\x02\xa4\x53\x17\xeb\x8f\xac\x69\xc9\x5e\xa4\x56\xd0\x5e\xca\x6a\x65\x8f\x41\x9a\x84\xcf\xca\x0f\x28\x61\xe4\x14\x34\x83\x34\xf4\xae\xd9\x14\x27\x17\xeb\xdb\x8d\xbe\x5c\xf9\x3c\xc5\xc3\xa7\x44\x7c\x1e\xd2\xa5\x97\x57\x40\xcb\xb4\x0d\x14\x0f\x9f\x74\xb1\x05\xd2\xc5\x2b\x53\x94\xc7\x28\xca\x7d\x69\x5d\xea\x2b\x14\xa1\x0a\x6a\x74\xcb\xbf\x50\x04\x36\x5b\x9e\xb2\x74\x07\x24\x43\x09\xb2\xf3\xff\xc8\xe1\x7e\x2f\xa0\xdd\x74\x48\xa4\xc5\x3c\x31\x28\x36\x89\xdb\xc5\xa3\x92\x64\x9f\x5c\x24\x2f\x91\x9b\xe4\xad\xf2\x7e\xf9\xb8\x92\xaa\xaa\xce\x52\xcb\xd4\x15\xea\x06\x75\x87\x7a\x48\x1d\x71\xe2\x4e\x9f\xb3\xc0\x59\xe6\xac\x77\xb6\x3a\xbb\x9c\xfb\x9d\xc3\xce\xf3\x91\xae\xc8\x9c\xc8\x39\x91\x8b\x23\xeb\x22\x9b\x23\xb7\x44\xee\x89\x1c\x88\x3c\x1d\x8d\x46\x67\x45\xcf\x88\x2e\x8e\x0e\x46\xd7\x47\x37\xc3\x4e\xdd\x1f\x7d\x2c\xfa\x5c\x2c\x19\x9b\x15\x3b\x2d\x76\x4e\xec\xc2\xd8\x25\xb1\x0d\xb1\xcd\xb1\xed\xb1\xdb\x63\x7b\x63\x07\x62\x4f\xc4\x9e\x8b\x3b\x71\x37\x5e\x8d\xcf\x89\xcf\x8f\x2f\x8a\x2f\x8d\xaf\x88\x8f\xc4\xd7\xc7\x37\xc6\xaf\x8d\x5f\x1f\xdf\x1e\xdf\x29\x6e\xa1\x13\x98\x8b\x56\x70\x12\x53\xd8\x99\x1c\x6b\x43\x59\x68\x72\x79\xe6\x71\xda\x4e\x3d\x48\x27\x60\xad\x33\x96\xff\x9c\xd8\xc4\x69\x53\x38\x0d\x5a\x3e\xf4\xc8\x13\xa8\x0b\xed\xe6\x59\xce\x18\x8d\xac\xca\x75\x83\xdc\x6c\x17\x75\xb1\xad\x95\x82\xad\x68\xf4\x9b\xac\x6d\xbd\x8b\xc7\xd5\x45\x5f\xa4\x4e\x96\x7e\x29\xf0\x6c\xff\xf4\x85\xc6\x21\xbe\x4e\x9d\x3e\xff\x66\x4d\x37\x83\x7d\x34\xf4\x5b\xc1\x58\xba\xe4\x4e\xe4\x14\xd9\xbe\x2a\x04\x34\x47\x6d\xf9\xf6\x52\x01\xbf\xef\x51\x51\x02\xbf\xf2\x51\x81\x6d\xeb\x32\x1d\xa7\x2d\x95\x33\xed\x8a\xf7\x43\xa2\xb9\x2c\x0f\x53\x46\xef\xe1\xde\xf3\xa6\xb4\xd8\x8e\xbf\xad\x47\xd6\x87\xba\x3d\x72\x27\x4b\xe8\x19\x47\xa5\xae\x81\xc4\xa8\x60\x8d\x0a\xd0\x84\x31\x4e\xd8\x2e\x39\x2a\x8b\xf3\xb0\x9e\x25\x48\x18\xdf\xee\xd0\x29\x69\xca\xca\x97\x28\x8d\x55\xd4\x2b\xea\xb2\x9c\xaa\xb2\xb6\xd6\x4f\x73\xb8\xae\xb7\x07\x7a\xff\xcb\xde\x08\xd4\x37\x28\x8d\x55\x28\xa3\x7f\x63\x81\x7a\x1a\x6d\x55\x7c\x80\xd2\xb0\x69\x6a\xad\xb4\x0c\xf5\x73\xf4\x6b\x4e\x90\x9e\xb9\xe6\x57\x2e\x74\x89\x3c\xf5\xab\xcf\xa1\x6e\x81\x35\x8c\x14\x9f\x6d\xcf\x1e\x5f\x87\x5c\x43\x23\xc6\x66\x48\xfb\x54\x25\x76\x63\x14\xc6\x06\xca\xb3\x7e\x52\xe5\x91\xbb\xe2\x9b\xac\x5b\xb6\xa0\x74\x39\x8e\xf9\xbb\x34\x9b\x69\x22\xc0\x45\xe9\x2e\x5b\xcf\xb5\x76\xa7\x99\x9d\xab\x3e\xcd\x33\xd7\x33\xd1\x7a\x97\xe6\x95\x19\x4e\xf9\xb2\xad\x97\x66\x2b\xc6\xd8\x0b\x9a\x32\xbf\xc7\x78\x56\x99\xa5\x72\x8e\xb5\x36\x3d\xb7\x8d\x1e\xc7\xb4\xc8\x88\xcb\x3a\x6e\x56\xdc\x16\xa8\xe7\xd9\xaa\x7a\x9d\xb4\x7d\x76\x03\xb8\x7d\xb0\xbf\x02\x72\xf2\xe2\x3d\xd4\x1e\xa0\x03\x73\xa2\x41\x03\xe2\x46\x48\x15\x7f\xb5\x3b\x79\xfe\x35\xba\xd3\xb6\xe6\x5a\x8b\x56\xf7\xdb\x2f\x16\x87\x5a\x0b\x5a\x25\x63\xd4\xde\xb0\x8a\x2c\x3f\x14\x71\x8e\xe1\x1a\x81\x3a\xea\x33\x90\x2c\x15\xb6\x02\xf5\x28\xf4\x4c\xf3\xb2\x4c\x6d\x76\xa6\x3e\xf2\xe7\x8a\xbf\x81\x84\x6a\xe2\x27\xe2\x26\xb4\xe3\xcf\xc4\xec\x71\x5e\x7c\xad\x29\xdd\x68\xb3\x5b\xa9\xad\x25\x0f\xf9\x11\xda\x0f\xcf\xbb\x97\x6a\xe2\x7c\x48\x4c\x6f\xd6\xd6\x52\x15\xdf\x0f\x8c\xb3\x8a\x74\x9c\x08\xe5\x20\xdd\xe8\xb0\x35\x8b\xa9\x64\xe9\x13\x18\x4f\x13\x97\x53\xf7\x52\x32\x70\x2a\x32\x7c\xae\x3e\x49\x49\x5b\xba\xca\x9c\xb8\x26\x6e\x86\x7c\x85\xd6\xc4\x6b\xac\x57\xe0\x5d\x94\x6c\x38\xed\x9a\xd2\xbe\x8a\x16\xfc\xf9\xeb\xd6\x6a\x74\x65\xa0\x5d\x93\xa7\x79\xc0\xa7\x20\x75\xcd\xfa\x30\x0d\x8a\xef\xc2\x4e\x34\xf3\xeb\xc4\x98\x5c\xf1\xad\x40\x9a\x83\x5f\xc7\x6a\x97\xbf\xa3\x44\xa3\x5c\x50\x5f\xa5\x84\xa1\x99\x80\x4e\xf2\x6e\xf4\xe1\x8d\xd2\xc8\xe3\x8f\x43\xb2\x7b\xa3\x31\x1c\xf5\xd3\x90\xe3\x3e\x35\x57\xc5\x37\x90\x92\xb7\xba\xbf\x2b\xbe\x43\x71\x3b\x8e\x24\xb4\xbe\x9d\x81\x94\x38\xb4\xbd\x5b\x03\x29\x51\xe8\x72\xbb\x02\x29\xb0\x5f\xc4\x45\x68\x59\x73\x33\xd6\x8f\xe8\x63\x14\xb7\x23\x02\x6f\x12\x3b\xf0\xbb\x81\x3e\xc7\xbb\x9a\xbf\x7b\x36\xfd\x5a\x68\x0c\x86\x4b\xe5\xd5\xcf\xf0\xcd\x68\x18\x25\xfa\x31\x45\x7d\x89\x20\xb6\x21\x8f\x77\x44\xbe\xc8\x9a\x46\x37\xce\xf7\x3b\x59\xa3\xd0\xab\xf3\x43\x7c\xc6\x6e\x28\xc9\xf6\x68\x95\xaa\x72\x14\xaf\xf1\x62\xa5\xe5\x87\xb9\x7c\x95\x5c\xf1\x6d\x72\x78\x5e\x57\xe1\x77\x13\xd2\x54\x53\x0a\x5a\x89\x5e\xcf\x8f\x92\xc3\x7a\xd8\x4f\xf1\xa9\x87\x5c\x71\x21\x3e\x69\x4e\xf6\x6a\x5a\x41\x57\xd3\x2e\x7a\x98\x8e\x89\x92\x58\x20\x06\xc5\x55\xe2\x16\x71\xbf\x78\x42\x46\x65\xbf\x3c\x47\x0e\xc1\x7e\xbd\x47\x1e\x94\xcf\xab\x9c\x9a\xab\x16\xa9\x15\x6a\xbd\xda\xa2\x6e\x55\xf7\xa8\xdf\xaa\xa7\x1c\x72\x72\xce\x29\xce\x59\xce\x12\x67\xc8\x99\x72\xae\x72\xae\x73\x6e\x76\x6e\x73\xee\x71\x1e\x74\x0e\x38\x87\x9d\x27\xe5\x0f\xc9\x05\xb7\x2e\xe2\x24\x7b\x56\xa0\xc1\x10\x3b\x2c\x0a\xf8\xa9\x97\x29\x05\xda\x95\xaf\x04\x3f\xac\x34\xe9\x13\x35\xb6\x49\xf5\xaa\xd7\xe4\x29\x33\x94\x32\xdc\x32\x0f\x7b\xb5\x5f\xbe\x82\xd1\xcb\xc6\x52\x55\x70\x04\x53\xe6\x4e\x9c\xa5\xe3\x8d\xbd\x28\x3f\x45\x19\x48\x9b\x06\x34\x8d\xaa\xbc\x6b\xdd\xf2\x14\xe6\x7a\xad\x47\x9d\xa3\xa2\x3c\x79\x86\x12\x9d\xa0\x94\x0a\xf5\xcb\x93\x19\xa5\x6c\xa5\x49\xa5\xa9\x26\x4f\x9d\x21\xdf\x60\xd8\x3d\xf2\xc4\x19\xeb\xe7\x40\x0f\x1f\x82\xfe\x00\xfe\x0b\x3a\xf2\x2d\x45\x83\xe4\x2d\x43\x7e\x15\xef\xfc\x9b\xf3\xd3\xc7\x7e\x0d\xc8\x7d\x79\x11\x66\xd2\x6a\xcd\x7b\xa9\x28\x4f\x9a\x21\xd7\xf0\xba\xff\xa4\x74\x8b\xbe\x59\xa7\x92\xfd\x33\xd4\x85\xc5\x2e\xaf\x86\x36\x32\xc3\x0e\xa9\x1f\xa3\x65\x83\xe0\xbb\x76\x87\x4c\x5f\x15\x71\x35\x4e\xf8\x6c\x68\xb8\x2e\xda\x34\xd6\x86\xee\xff\x1f\x61\xa7\xf9\x35\xab\xd0\xcd\x5c\x2a\xab\x5b\x58\x4a\xf4\x32\x56\x5c\x60\x6e\xf9\x41\xfc\x66\x5e\x70\x85\x74\x4e\x46\xc5\x38\x3d\x03\xde\xe5\xeb\x51\xdf\x0c\xb5\x93\x67\xfc\xc6\x15\x67\x43\x7a\xa4\x61\x2d\x75\xb3\x26\xa3\x25\x6c\x1f\x25\x9b\xd7\x41\x5c\x45\xc9\xc0\x1c\x52\x40\xae\x3b\xe8\x1a\x94\xf5\xac\xf5\x14\xce\x45\x59\xed\x00\xe7\xaf\xb1\xfe\xea\x69\x7f\x4f\x71\x6a\x1a\xfa\x41\xd5\xd8\xa9\xf2\xd3\xe0\xf3\x46\xf7\x48\x61\x15\xd2\xf2\x2a\x4a\x60\x75\x33\xbe\x05\xaa\x22\xe0\xdf\x5a\xeb\xb4\xb4\xa2\x92\xcc\xbf\x5d\x2b\x49\x7e\x40\x31\xd3\x06\xce\x5f\x95\x8e\xe0\xbb\xbf\xf2\x9f\x01\x42\xa7\xcb\x96\xa1\x9b\xdc\x4e\x51\xe8\xdb\x69\xcd\xeb\xe5\x3d\x14\x05\xbf\xc5\x59\xa1\xbb\xc1\x51\xd3\xd0\xb7\xaa\x2a\x8a\x92\xbc\x4f\x0a\xaf\x83\x42\xf6\x5d\x8c\x4f\x19\xea\x51\x71\xfc\x56\x54\x95\xfe\x8b\x14\xb4\x93\x59\x74\x16\x8d\xd2\xf5\x74\x17\x3d\x4a\xcf\x8b\x82\x38\x53\x5c\x28\xd6\x89\xad\x62\xb7\xd8\x27\x1e\x13\xcf\x4b\x57\x9e\x22\x17\xc8\x0b\xe4\x88\xdc\x28\xaf\x97\x3b\xe5\x1e\xb9\x5f\x1e\x92\x4f\xc9\xe7\x94\x54\x69\xf5\x39\xbc\x44\xdf\x1d\xf0\x12\xf9\xe8\x7a\x90\x0f\xb1\xf7\x42\x7e\x1f\xbf\x20\xea\x97\xcf\xb2\x54\xc9\x40\xd3\xb6\xd4\x20\x7e\x44\x19\x3a\x11\x7a\x5d\x15\xb4\xeb\xb2\x8e\x50\x64\xcb\x20\x22\xee\x7c\x99\x12\x8e\xbc\x06\xbf\x8f\xea\xe9\x2e\x5a\x9b\x32\xeb\xcd\x88\x9b\xf8\x31\x75\x34\xb5\x50\x66\xaf\x82\xee\xe1\xae\xe3\xe6\x3b\xe2\x47\x94\x6e\xca\x2f\xc2\xeb\x67\xc6\x37\x73\xae\x23\xee\xa6\x54\x53\xee\x49\xa0\xce\x92\x5c\xc6\xe7\xb6\xd6\x02\xbf\x7f\x85\xf5\x57\x54\x9a\xfc\x58\x13\xd4\x86\x36\xd3\xcc\x7f\xf3\xc6\xa2\x57\xed\x48\xcf\x31\xc2\x6d\x2c\x85\x32\x95\xe5\x64\x43\xf9\x82\xe1\x06\xea\x0e\x6a\xc3\x98\x4a\x38\x29\xfd\xb0\xa5\x4a\x94\x97\x9f\xc1\x6f\xd6\xbb\xd6\x3b\xa0\xd7\xa1\x5f\x7d\x31\x94\xca\x1e\x2f\x39\x80\xd4\x14\x23\xdb\x3c\x7a\xb9\x29\x54\xd6\xf0\x28\x97\x5e\x4d\x09\xd6\x16\xf3\x46\x9b\xa1\x8a\x4a\x53\x02\x9e\x4f\x97\xa5\x98\xa6\x89\x1f\x52\xbc\x61\xcd\xe6\x72\x8a\xb1\xca\x73\x54\x53\x29\x8a\x71\x8a\xe1\x6c\x9b\x28\xe2\xe9\xfe\xea\x5a\x8a\xd0\x09\x86\x5f\xa8\x36\x8a\xd8\x91\x9c\x0c\x4c\x03\x6b\x2a\xee\x20\x87\xd7\xfe\x22\xba\x93\x9e\x16\xfd\x62\xa9\xd8\x28\x76\x89\x03\x92\xe4\x29\x72\x89\xbc\x42\xde\x2c\xf7\xc9\x67\x54\x4e\xcd\x67\xaf\xfa\x7e\xf5\xac\x93\x73\xe6\x39\x17\x39\x57\x38\xdb\x9c\xbb\x9c\x03\xce\xd1\x88\x1b\x99\x1b\x39\x2f\x32\x12\xb9\x26\xb2\x23\x72\x6f\xe4\x60\xe4\x58\xb4\x2b\x3a\x37\xba\x38\xba\x2a\x7a\x65\x74\x5b\xf4\x8e\xe8\xfe\xe8\x93\x31\x19\x2b\xc5\x4e\x8f\x2d\x8e\x0d\xc5\x36\xc4\xae\x8b\xed\x8a\xed\x8d\x1d\x8c\x1d\x8d\x27\xe3\xd5\xf8\x19\xf1\xc5\xf1\xc1\xf8\xfa\xf8\xb5\xf1\xed\xf1\x3b\xe2\x0f\xc4\x0f\xc6\x9f\x49\xc8\x44\x57\xa2\x3f\x31\x2f\x71\x6e\x62\x59\x62\x34\x71\x65\x62\x6b\x62\x47\xe2\xce\xc4\x03\x89\x47\x12\x4f\x24\x8e\x26\x65\x32\x9d\x2c\x24\xfb\x92\x73\xc4\xab\x02\xfe\x69\xb3\xdf\xc6\x83\xdc\x2c\xdb\x53\x16\xa5\x4a\x51\x5e\x9c\xfa\xff\x51\xcf\xb7\x38\x2b\x62\x36\x52\xfd\x7a\x46\x06\x06\xfd\x76\x19\xd6\xf7\xb4\x5e\xd6\x7b\xdc\xd2\x59\xf4\xe3\x97\xee\x07\xce\xe1\x97\xce\xb3\x2c\x33\xb4\x97\xb7\xd2\x28\x2b\x5e\xd9\x50\xd2\x20\x1a\x90\xe4\x90\x60\x15\x9c\x94\x2e\xea\x16\x27\xcd\xd8\x66\x00\xdd\x40\x9b\x85\x86\x92\x86\x3a\xbb\xb0\x02\xec\x1b\x81\x95\xdb\x2f\x4e\x64\x39\x1a\x6c\xd3\xf3\xff\x1a\x74\x0e\x58\x8d\xc8\x37\x94\x0b\xb6\x18\x44\xd7\x7f\xc5\x3e\xb3\x9a\x45\x7f\x5b\xe3\x23\x97\xa2\x5c\x87\xd5\x0f\xd2\x98\x43\x3a\x60\x2d\x03\x79\x14\x55\xe8\x92\x7e\xbf\x99\x80\xc5\x54\x01\x8f\xd0\xab\x34\x02\x2d\xb1\xc3\x4a\x48\x83\x45\xd5\x1a\xda\x2a\x35\xb4\x15\x9c\x83\x8f\x13\x5c\x06\xdd\x20\xcd\x7a\x87\xe1\xf2\xec\x6d\xf2\xd7\x5c\x3c\x08\xea\xf2\xe7\x59\xe3\x6f\x29\x46\x6d\x3a\xa9\x26\x6a\xec\xef\x68\x35\x76\xa6\x51\x51\x6c\x28\x13\x1c\x13\x5b\xdd\x62\x4e\x43\x99\x5e\xa6\x3c\xdf\x5b\x9f\x15\x95\xe3\xf4\x65\x76\x24\x2f\xe6\xf0\x4a\xcc\xd8\x8e\xca\x82\x5f\xcf\x66\xdb\xac\xd6\x8c\xc5\xa9\x2c\xb0\xaa\x70\x89\x80\xf7\x42\x4e\x5b\xfa\xae\xf2\x79\x30\xa8\xb9\x6b\xb8\xb8\xb8\x9f\xe5\x58\xcd\x6a\xa5\x29\xcb\xc3\xfb\xd4\x97\xec\xfc\xbb\xf9\x24\xc3\xc2\x31\x76\x85\xba\x8f\x11\x92\x96\x7e\x1d\x5a\x0f\xfd\x30\xbc\x6f\x26\x4a\xc7\xa5\x92\xf8\xdb\x86\x7e\x67\x33\x36\x6a\x90\xfc\x5f\xb0\x35\x68\x66\x63\x4e\x71\x0f\x75\x1a\xab\x4a\x7e\x16\x7a\x69\x3e\x80\xe6\x1b\x8f\x36\xb4\x1c\xf1\x4b\xf0\x02\xbf\xe5\x76\x5f\xd2\x8a\x25\x9c\xe7\x36\xe3\x76\xf4\x90\xc5\x95\x9a\xf2\x44\x1f\xe3\x49\x3e\xaf\xa9\xf1\xca\x64\xc4\x05\xc8\x0b\x8e\xa6\x9b\x47\x9f\x15\xbf\x6e\x18\x4b\x27\x74\x18\x6d\xa3\x56\x55\x8e\xa9\xb7\x6c\x39\xa0\x45\x89\xc4\x5b\x1b\xfa\x33\x6d\xea\x59\x56\xc5\x2b\xd8\xfb\xe0\xe5\x69\x69\x07\xd9\xa7\xba\x81\x20\x05\x5b\x64\x1f\xb8\x98\xd5\x50\xc7\xf7\x01\x3d\x40\xed\xa1\x11\x66\x79\x84\x69\x71\x72\x43\x9d\x32\xeb\x88\x35\xd5\x85\x3a\x45\x8e\x1e\x73\xf9\x34\x66\xc8\x55\x9d\x81\x9c\x1c\xe8\xac\x6c\x76\x94\x5e\x03\x44\xac\xca\xf1\x2b\x01\x5b\x4e\xfc\x86\xda\x42\x23\x28\xb2\x7e\xfb\x93\x86\x74\x3e\xe9\xea\x46\xa4\x1b\xfd\xba\x42\x65\xd0\xbd\x5e\xb3\x53\xd8\xc7\xe2\xaf\x99\x41\x33\xde\xc7\xc8\x96\xef\xad\xd1\xeb\x58\x54\xd7\x01\x79\xf2\x69\x9b\x91\x4d\x51\x6e\x68\xa7\x83\x6b\x9f\x06\x84\xa9\x6a\xb9\x18\xdb\x68\xe2\xbd\x3c\x4e\x37\x8c\x01\xca\x29\x78\x60\x1a\x4f\xde\x00\xfb\x70\xfa\x2c\x3a\x17\x25\x25\xf6\xc1\xa6\xf0\xe7\xda\xad\xf7\x41\xfc\x1d\x90\x27\x63\x01\x58\x7f\x2a\xad\x68\x6a\xc1\x21\x25\xaf\x64\x0b\xa6\x6a\xf7\x4a\xdb\x3b\x0f\x71\xf4\x80\x69\x01\xa7\x56\xbc\x1a\xd1\x03\xc5\x90\xc5\x37\x05\xeb\xc3\xe3\xd7\x26\x62\x69\x4d\x28\xcd\xa0\xed\x83\x40\x9e\x82\x7d\xc7\x69\x75\xa8\x5c\x56\xdb\x01\xe2\x3e\x8a\x87\xe6\x93\x14\x3f\x6f\x48\x49\x88\x7b\x1b\x52\xe2\xe2\x67\x0d\x29\x31\xe5\xb2\x1f\x2a\x6b\x29\xf9\xa7\x0d\x65\xa2\x62\x4f\x43\x4a\x44\xfc\xa4\x21\xc5\x11\x7f\xcf\x91\x10\xde\x3a\x14\x55\x06\x48\x54\x80\x6f\x8a\xbd\x0d\xb5\xda\xc5\x2f\x1a\x52\xda\xe8\xa7\x40\xa7\xfc\xa8\x9e\x57\x51\xd4\xa7\x21\xb1\x14\xb6\x94\xe7\x8b\xd0\x96\x95\x5f\xfb\xb3\x14\x41\xcd\x5e\x2a\x88\xfd\x36\x0a\xc2\x15\x0f\x93\xc3\x67\x76\x0f\x3e\xa5\xa9\x4b\x75\x00\x3f\xca\xc0\x4a\x3b\x95\x16\xd1\x0a\x5a\x4f\x9b\x69\x07\xdd\x45\x0f\xd2\x21\x7a\x46\x90\xc8\x88\xaa\x98\x2b\x16\x88\xc5\xe2\x42\x31\x24\xc6\xc5\x06\x71\x35\xfd\x37\x76\xae\x1a\xb0\xd7\xb5\x9c\x39\x11\x28\xe8\x5e\x3e\x03\x9d\x2c\x89\x8c\x67\xd0\x55\x3f\xa4\xb6\x56\x96\x15\xfd\x11\x91\x34\x69\xd8\x5f\x39\xd8\xa4\x2e\xcd\x52\x79\xa4\x96\x40\xe5\x29\xea\xc3\x7c\x7a\xe4\xbd\x8c\x5a\x9a\x54\x44\xa8\xd0\xd3\x94\xe0\xb1\xd8\x31\x88\x7f\x04\x3e\x98\xf3\xf1\x49\xf1\x0f\x48\x49\x43\x72\x9b\x48\x9b\x03\x88\x3e\xf1\xca\x14\xd5\x09\x6c\xdb\xb2\x95\x41\xf7\xe0\xbb\x87\x41\xb8\x62\x39\xc5\x98\x9f\xc2\xb6\xa5\x67\x28\xc6\xfd\x1a\x09\xd5\x03\x6d\x1c\xc8\xa7\xfa\x1a\x45\x3c\x14\x9c\x5e\x8b\xcf\xe0\xc3\xe2\xb7\x5c\x26\x47\x45\xf9\x33\x7c\xc6\x5c\xd4\x83\xb0\x72\xd3\x54\x53\x5f\x26\x05\x0d\xe2\x04\x9a\x4b\x4b\x68\x82\xb6\xd0\x2e\xba\x9f\x0e\xd3\x31\x91\x16\xbd\xe2\x74\xb1\x50\x2c\x15\x43\x62\x4a\x5c\x25\xae\x13\x37\x8b\xdd\xe2\x6e\xb1\x57\xec\x17\x8f\xa8\x22\x64\x92\xa6\x8d\x20\x9f\xa9\x70\x94\xdc\x6c\x72\xd5\x2c\x70\x97\x5e\xa0\x13\x8c\x43\x62\xad\x0b\xb0\x5e\xfb\x55\x05\x92\xae\x31\xdf\xc3\x07\x8c\xf7\xbb\xb1\x7d\x83\xfd\xbe\x0e\x9c\xb8\x0b\xf4\xee\xdb\x43\xba\xcd\xcd\x8c\xbe\x94\x9b\xfc\x7a\x03\x40\x53\xd2\xc0\xd7\x5c\xf6\x74\x68\x09\xf7\xcf\x88\x95\xaa\x84\xbd\x7b\x62\x21\xce\x7d\xa8\x77\xf1\x28\xc5\xb9\x24\x7b\xdb\xc4\xef\xb0\x63\x69\xee\xa3\x4b\x95\x80\x46\x58\x7f\x98\x58\xc1\xf9\xdc\xa7\xfa\x25\x4e\x98\x17\xd1\xd9\x41\xa7\x73\x7e\x85\xf5\xde\x7f\x42\x3c\x92\xf5\x39\x8b\x47\x10\x5f\xe4\xf9\x97\xe7\xe0\x94\xd5\x80\x15\x57\x29\x02\xcf\x7a\x99\xaa\xaa\x40\x8e\x99\xb3\xda\x4a\x8e\x49\x55\x65\xec\xaf\xa6\x81\x0f\x91\xa4\x2c\xce\xda\x32\xda\x48\xb7\xd0\x3e\x7a\x5a\xb8\xe2\x74\xb1\x54\x4c\x31\x76\xf1\xb8\x78\x51\xf6\xc8\xb9\x72\xbe\x5c\x24\x97\xca\x8b\xd5\x0d\x40\x2a\xb2\x6c\x33\x54\x18\x2b\xf0\xf0\x9f\x4c\x23\x62\x2f\x7e\x8f\x3d\x4d\xb3\x47\x30\xdd\x3a\x06\x4f\x9c\x46\x59\x9c\x42\x97\x75\xe5\x6c\x00\x25\xe2\xc8\x37\xfa\x1c\xca\xcc\xb6\x65\x7c\xbd\xd2\xa7\xfa\xed\x94\x05\x05\x19\x3f\x56\x3a\x60\x11\x59\x54\x48\x9c\xde\xd0\x57\x0e\xad\xe6\x82\x16\xb6\xea\x03\xfa\x3a\x73\x5f\x45\xba\x95\x3a\x02\x3d\x79\x5e\x49\xdf\xb7\xf0\x5a\xfc\xaa\xb7\xdf\x8b\xa1\x7c\x13\xdb\xa3\xad\xf0\xd7\x30\xdf\x09\xf6\x60\xb1\x7f\xd5\x07\x5e\xd6\xba\xff\x6b\x41\x9d\x7e\xcf\x2e\x5b\xf3\x15\xaa\xa9\x5e\xc4\x32\x76\x42\x03\x0a\x53\xf8\x19\xc8\xf1\xfb\xf3\x23\x0d\xe7\x36\xe4\xf8\xf1\x26\xaf\xa3\xb6\x50\x8e\x69\xab\x47\xcd\xa6\x08\x15\xd9\xb7\xf1\x33\x7c\x36\x7b\x7d\x90\x51\x02\xad\xc7\xd6\xc8\x31\x23\x11\x87\x48\x51\x95\x47\x74\x0e\x30\xb2\x3d\x74\x58\x38\xa2\x5f\x9c\x23\x86\xc4\x95\x62\x9b\xd8\x25\xea\xa0\x8f\x7e\x1f\xed\x0b\xf9\x7f\x83\x11\x28\x43\x40\xaf\x67\x2e\xe9\x59\x2a\x2b\x5f\xa6\x1c\xeb\xb9\x62\x35\xa4\x6c\xb8\x5c\x47\x63\x54\x88\x58\x05\x1a\x9a\xb9\xb5\x5e\x2a\x8b\x35\x2d\xca\x18\x4f\x71\xd5\xc6\x74\x5c\x06\x1a\x6c\x2c\x13\xf0\x21\x8b\x4b\xa0\x4f\x84\x4b\x04\xa2\xa3\xc5\x08\x6c\x8b\x70\xfe\x6c\x78\x9d\xf5\x38\x87\x41\x0f\xe1\xdc\x6e\x63\x79\x88\x4b\xc1\xfd\xc2\x79\x9a\x5e\x3b\xc4\x20\x74\x8d\x40\x8e\xba\x1f\xbc\xaa\xc6\xe7\xb9\x48\xef\xa6\xed\xf4\x10\xbd\x20\xfa\xc4\xb9\x62\x54\x6c\x15\x77\x8a\x47\xc5\x8b\xb2\x2a\xcf\x96\x43\xf2\x6a\x79\x8b\xdc\x2b\x1f\x53\xa4\x66\xa9\xf9\xea\x22\xb5\x4e\x6d\x55\xbb\xd5\x3e\xf5\x84\x23\x9d\x59\xce\x99\xce\x05\xce\xb8\xb3\xc9\xd9\xe1\xdc\xe3\x3c\xe2\x3c\x1b\x69\x8f\xf4\x45\xe6\x47\x96\x46\x46\x22\x57\x45\x6e\x8c\xdc\x11\x79\x30\xf2\x78\xe4\xf9\x68\x26\xda\x1f\x9d\x1f\x5d\x12\x5d\x13\xdd\x10\xdd\x12\xdd\x11\xbd\x2b\xfa\x60\xf4\x70\xf4\x68\x2c\x1e\x2b\xc5\xe6\xc4\x16\xc4\xce\x8f\xad\x88\x8d\xc7\xae\x8c\x6d\x89\x6d\x8f\xed\x8e\xed\x89\xed\x8b\x1d\x88\x3d\x16\x7b\x3a\x76\x2c\x2e\xe3\xed\xf1\x9c\x7c\x3d\x62\x4e\x32\x6c\xb5\x9b\x15\x35\xb8\x54\x8e\x71\x51\x97\x79\x38\xf0\x2c\x79\x16\xa8\xdf\x2b\x9f\x87\x86\x69\x62\x3b\xfb\x19\x7d\xab\x78\x1c\x43\xbe\x91\xb1\x02\x53\xd6\xdc\x45\xc8\x84\xa2\x96\x0c\x46\xf6\x2c\xac\xc3\x4c\x28\xaa\xa2\x29\xd2\x51\x2e\x02\xe5\x79\xad\x19\x14\xce\x97\x5d\xa6\xc7\x33\x43\x65\xba\xc0\x35\x1b\x30\x40\xfa\x1f\x5b\xc6\xef\xad\x21\x12\x52\xdd\x84\x14\x23\x1d\x8d\x2d\xdc\xd1\xc4\x17\x46\x29\xcb\x71\x18\xc6\xbb\x90\x09\xc4\xa3\x70\x3c\x8d\x3c\x0f\x2b\x1a\xee\x2b\x14\xdb\x21\x5f\x6b\x4b\xe4\x6d\x74\x5f\x25\x18\x49\x21\xdf\x11\x2a\x61\x6d\x17\xff\xb6\x80\x3c\x37\x54\xa2\xc2\xda\x4e\x1a\x74\x6f\xa2\x7a\xdf\x81\x11\x35\xb7\xe1\xb5\x70\x06\x74\x06\x9f\x0a\xd2\x2c\x8f\x8d\xbf\xec\xb5\xa1\x5c\xff\x7e\x03\x74\x03\xb9\x38\x94\xcb\xf1\x2e\xde\x0d\x06\x39\x3f\x94\xdb\x8d\x5d\x2b\x7b\xb6\xb0\x18\x47\x0c\x49\x79\x06\x1f\xd6\xc2\x50\xdd\x32\x73\x57\x78\x71\xa8\x5f\xbe\x01\x3b\xe2\xe5\x76\x5a\x6f\xb4\xb6\xf6\xdf\x1a\xca\x2b\x73\x54\x93\x19\xd1\x2c\x96\x5c\x3d\x81\x68\x1a\xcf\x03\xfc\xe6\x50\xbd\x3c\x6c\x94\x0a\x6a\xf7\xd3\x9b\x50\xcf\xff\x9e\xc2\xef\xbf\x57\x41\x79\xf3\x9b\xf2\xbc\x88\xaa\xaa\xfc\xb9\x6d\xd3\xa7\x81\x0c\xaf\xdd\x6b\x42\xfd\xa5\x83\xf7\x1e\x94\x89\xef\xec\x80\x0e\xd2\x18\xd5\xf5\x79\xd8\xd9\xe1\x36\x8d\x1c\x3f\x95\x73\x9a\x62\x6e\xe5\xb9\xb6\x4e\xde\xf3\xb6\xf3\x8a\xcc\x85\x9d\xdd\xcf\xf1\x4a\x01\x4b\x9f\x0e\xa0\x4e\x9f\xa5\x19\xcf\xf2\xe9\x97\x6f\x09\xb5\x66\x74\xd3\x1c\xb4\x84\xb7\xb1\x3d\xef\xc5\x2e\x54\xb9\x94\x4b\x5b\x60\x51\x34\x8e\xba\x28\xcf\xb1\xe9\x79\xb6\x24\x4f\xa2\x93\x28\x2d\xe7\x85\xd2\xb3\x4c\xb5\x3d\xf4\x46\x58\xcf\xc1\xd5\x86\x05\x21\xfe\xc0\xba\x68\x4f\x58\x63\x96\x6f\x0a\xb5\xd3\xed\x69\x7b\xf2\xec\x50\xba\xe1\x23\x2e\x55\xe4\xdb\x1a\xc6\xc3\x91\x42\xea\x56\x46\x11\x5c\xd6\x55\x99\x43\xa8\x6f\xc1\x8e\x2e\x5a\x4e\x89\x28\x51\xb9\x00\x36\xb7\xbf\x42\xc6\xe3\xff\xba\x50\x6a\x06\x7e\x33\x57\x8c\xc1\xe7\x57\x0e\x7b\x2a\xe5\xbb\x42\x65\x6b\xf0\xe7\xe4\xe4\xdb\x43\xa9\x8c\x6a\xca\x77\xc2\xca\xf6\x4f\xa1\x4b\xae\x3c\x3d\x94\x86\xf8\x34\x79\x5a\x28\x4d\xef\x44\x41\x7e\x82\x7d\x86\x41\x14\xe0\x3f\x50\x0e\x14\x8c\xbe\xfb\xa8\xa4\x5e\xc9\x75\x7b\x7c\x44\x44\x3c\x19\x2a\x67\x7c\x7d\xff\x82\xf6\x42\x11\x5f\xb4\x19\x9a\xff\x6c\xf6\x89\x42\xaf\x16\x87\x21\x3d\xcd\x7e\x61\x07\xd5\x49\xb0\xb0\x8b\xd4\x05\xeb\x43\x6b\x43\xaf\x82\x6e\xdf\xcf\xb1\x32\xfd\xe2\xdf\xf1\xdd\xeb\x2f\x21\x9e\x08\x7d\x8f\xe3\x57\xe0\xfd\xef\x31\xf9\x1d\xc8\x63\xd3\x6f\x8d\x66\x8b\x7f\x0d\xe5\x47\xe5\xab\x11\xf3\xc1\xb4\xaf\x4e\xc6\x37\x83\x74\x74\x0b\x13\x47\xc2\xbb\x22\x9e\x82\x9d\xd0\x8b\xf8\xb5\xc7\xf1\x19\xad\xa8\x13\x61\x17\xe2\x9c\x8a\xc7\x60\x33\x68\xcd\xef\x5e\x72\x98\x5a\xcf\xe0\x68\xd4\xb2\x7a\x05\xd2\xaa\x54\x53\xa7\x78\xde\x50\x3a\x89\xce\xa7\x75\xb4\x8d\xee\xa1\xc3\x42\x8a\x3e\xb1\x50\x0c\x89\x8d\x62\xbb\xd8\x23\x0e\x88\x67\x64\x52\xf6\xca\x33\xe5\xf9\x72\x95\xdc\x20\xb7\xca\x5b\xe5\x1e\xf9\x90\x7c\x5c\x1e\x53\x49\x55\x52\xa7\xaa\xf9\xea\x5c\x75\x81\x1a\x54\x23\x6a\x9d\xba\x52\x6d\x52\x5b\xd5\x36\x35\x87\xcf\x5d\x0f\x66\xe1\x45\x45\xda\xf8\x33\xd6\x37\xff\x93\x63\x92\x4a\x21\xa9\x15\xba\x99\x44\x5f\x84\x56\x66\x62\xa2\x3c\xe4\xac\x91\x0f\xcd\xd7\x9c\xb8\x89\x53\x06\xb8\x1f\xfd\x91\xe3\xd7\x6b\xe0\x1b\x7c\xbb\x25\x14\x6b\xff\xa6\x19\xda\xb0\xdc\x55\x2c\x42\x7b\x45\xe8\x72\x9a\x37\x34\xf2\x8f\x9f\xb0\x8c\xae\xf1\xfd\xa8\x62\x43\xf4\xf7\x11\xc8\x11\xc3\x9f\x52\xd6\xc3\xe3\xb5\xf1\xc6\x80\x57\xa0\x89\xa7\xd0\xdf\xa3\x0f\x8f\x7e\x4a\x2c\x3b\x4c\xac\xed\xb7\xc1\x37\x73\xcd\xfc\x59\xcc\x03\x77\xcc\x72\x7f\xc1\xd8\xa4\x2a\x72\xbc\xb1\x04\xfc\x2c\xf2\x7c\x6a\xe3\x71\x84\x79\xe4\x5a\x78\x43\xab\x8c\xa9\x58\x34\x5c\x5e\xc6\x98\x9e\x1b\xbc\x85\x21\x5e\x8f\xf8\x83\x0a\x5b\x8d\x35\xf8\xb4\x5d\xf1\x5f\xc0\x15\xbd\x36\x3c\xbf\xe7\x7d\xe0\x3a\x0d\xb4\xa2\xbe\x8d\x76\x8d\x7e\xa2\x77\xc6\xc4\x13\xae\x67\x14\xcf\xf5\x6f\x5b\x88\x37\x20\x2d\xcb\x11\x09\xf0\x5a\x8a\xb7\x20\xcd\xdc\x29\xf3\x78\xea\x56\x4a\x34\x52\x92\xfc\x05\xc7\x86\x7b\x56\x43\x96\xe6\x01\x39\xcb\x04\xd0\xdc\x37\xe0\xec\x66\x6c\x3b\x5f\x60\x24\x87\x63\x22\xc4\x87\x11\x6b\x50\x60\x54\x60\x82\xcf\xa7\xee\xe5\x4c\x7c\xc6\x2a\xcb\xfb\xf8\xfc\x65\xe9\xe7\xc0\xc8\x72\x94\x97\x9f\x43\x9a\xd6\x67\xd7\xf1\x89\xed\x95\xef\x26\xa5\x4f\xbb\xbc\x96\x14\x15\xa8\x4a\xaf\x07\x82\x93\xa1\x02\x9d\x41\x2b\x68\x13\xdd\x46\xbf\xa5\xe7\x44\x4e\x9c\x2e\x96\x88\x51\xb1\x49\xdc\x22\xee\x13\x87\xc4\xf3\xb2\x4b\xce\x91\x8b\xe4\x0a\xb9\x4e\x6e\x92\x37\xca\x5d\xf2\x6e\xf9\x80\x7c\x58\x3e\x00\xef\x9d\xf1\xd0\xe5\x42\xfb\x59\x65\x2e\x6b\x46\x9a\x95\xbf\x3a\x6e\xc9\xe0\x3d\xd6\x5f\x42\x4f\x9e\xa9\x24\xaf\x9a\xbc\x1f\x67\x7b\xa6\x52\x26\xba\xeb\x57\xa0\xca\x99\xcb\x14\xc5\x33\xec\x23\xca\x41\x8b\xf6\x7c\x44\xae\x17\xb1\x23\x37\xc3\x9a\xaa\x79\x88\x9e\xa5\x5b\xa3\x55\xbd\x19\x27\xce\xc3\x08\x6a\xec\xd3\xac\x1a\x6f\xa9\xfc\x01\xfa\x68\x19\x77\x21\xf7\x72\xd4\x4f\x8b\x91\xc9\xdb\x39\xf2\xc5\xef\xd3\xa2\x26\xe2\x7f\x38\xc2\x22\x38\xde\x22\xfb\x90\xff\x84\x36\xfb\x02\x37\x88\xcb\x2c\x95\x2a\xe2\xbf\x59\x0a\xfa\xf1\x15\x2e\x64\x9b\xd6\x57\xce\x82\xdd\xd7\xc7\xda\x44\xde\xf3\x0b\x53\x95\xfe\x17\x39\xc1\x91\xf4\xf1\x88\x8f\x36\xe5\x20\x0a\x91\xf2\x74\x0c\x5a\x45\x1f\x97\xcd\xe2\x1c\xd4\xa8\x2a\xdf\x83\x53\xe8\x8f\xdc\xcc\xf6\x1f\x70\x66\x4e\xc4\x1a\x9a\x48\xa7\x1e\xf5\x6a\x9c\x99\x1a\xe3\x41\x59\xca\xca\x0f\x59\xa4\xcb\xc4\x8e\x5e\x07\x34\xd9\xf8\x31\x0a\xe2\x69\xc8\x2f\x6f\x6e\x97\x83\xe6\x75\xed\xe7\x48\x51\x27\x65\x90\x3b\x87\x16\xd3\x10\x6d\xa0\x2d\x6a\x2e\x75\x18\x99\x6e\xfd\x30\x1d\x5e\x14\x39\x4e\xec\x2e\x96\xe9\x2e\x7b\x7a\x43\xbe\x39\xf5\x1a\x6a\x6b\xa8\x0d\xf4\x5f\x7d\x85\xda\x70\x76\x7d\xbe\x0c\xcb\x40\x9d\x06\xb4\xd7\x94\xef\x83\x6c\xe8\x56\x3b\x81\xc4\xa6\x3d\xed\x98\xde\x4f\xb7\xd1\x63\xc2\x15\x67\x8b\x09\x71\xb3\x78\x48\xbc\x20\xfb\xe5\x79\x72\x9d\xbc\x49\xde\x2f\x8f\x28\x57\xcd\x53\x17\xab\xab\xd4\xad\xea\x41\xf5\x8c\xd3\x85\x08\x88\x0d\xce\x4d\xce\xbd\xce\xe1\x08\x45\xaa\x91\x05\x91\x8b\x23\x1b\x22\xdb\x22\x77\x45\x0e\x44\x8e\x46\xdd\xe8\xdc\xe8\x79\xd1\x91\xe8\x35\xd1\x1d\xd1\x7b\xa3\x07\xa3\xc7\x62\x5d\xb1\xb9\xb1\xc5\xb1\x55\xb1\x2b\x63\xdb\x62\x77\xc4\xf6\xc7\x9e\x8c\xcb\x78\x21\x7e\x5a\x7c\x51\xfc\xe2\xf8\x54\x7c\x13\xc7\x3e\x3c\x1a\x3f\x12\x7f\x31\x91\x49\xf4\x26\x4e\x4f\x2c\x4c\x2c\x4d\x0c\x25\xa6\x12\x1b\x13\x5b\x12\x37\x25\x76\x26\xee\x4c\xdc\x97\xd8\x9f\x78\x34\xf1\x44\xe2\xd9\xc4\x0b\xc9\xa8\xec\xa1\x9e\x40\xec\x11\xfb\x92\x58\x1b\xcb\x5b\xec\xce\x9c\x68\xa0\xab\x32\x8f\x1b\x1c\x2f\x57\xc3\xc6\xa2\xc9\xc2\x5f\x55\xde\xc6\xc0\xc9\xcf\x73\x79\xff\x26\x48\xf3\x8d\xc2\x32\xeb\x60\x2e\x55\xd4\x3c\xc4\xa7\x98\xbb\x9f\xd9\x50\x1c\x5b\x8e\xd1\xb1\xd0\xed\x07\xf5\x75\xca\xa1\x84\x7f\x7e\x3c\x0f\x5e\x38\x15\xda\x9b\x3a\x83\x63\xf9\x0a\x4d\xa8\x5f\xca\xda\x08\x45\x58\xd5\x15\x3a\x1b\xa7\xc1\xf0\xc8\xe3\xde\x9e\xa7\xb7\xf1\xdd\xf6\xfe\x97\x29\xf7\x16\xf8\x82\x5b\xb7\xc8\xde\x75\xf8\x1c\xfe\x84\x72\x26\x1a\x05\x5e\x4d\x7b\x62\xdd\xe0\xfb\x06\xe2\x7f\x5b\x94\x6b\x71\x1b\x52\xbd\x19\x1c\xa5\xcf\x7a\x7a\x5d\xd8\xf8\xc6\x1b\x59\xb5\x5e\xb2\x85\xd8\xc1\x56\xb3\x08\x8c\x4d\xfe\x18\x56\x47\x48\xbb\x69\x9a\x67\x96\xc6\x6c\x5b\x7e\x74\x49\xda\xde\x5c\x66\x8e\xa9\xde\x84\xb6\x5e\x66\xef\xd4\xeb\xd9\x07\x6a\x28\xc2\x8b\x4b\x0c\xcd\x42\x5e\xcc\x65\xaa\xac\x93\x95\xb9\xa5\xc0\x3c\xc4\x73\xa8\x1d\x5e\xad\xc6\x5b\x9b\xd7\x73\xfc\x43\xcd\x22\x31\x3e\x5f\xf5\xb0\xfb\xa3\x2d\xda\xe9\xc4\x2c\xbb\x19\xc1\x73\x69\x21\xfa\x3c\xce\x5a\xaa\x79\x8c\x43\xcd\x48\xe7\xea\x8c\x40\x89\x96\xb4\x2a\x8e\xe2\x6f\xeb\x91\x60\x1c\xea\x75\xec\xe1\x2c\x84\x51\x06\xcf\x47\x42\xdf\xa0\x0e\x7b\x3a\x19\x21\xc6\x1c\x2a\x46\xce\xc8\x2d\x81\xfc\xc6\x68\x66\xbd\xcf\xb7\xb4\xac\x5f\x65\xcc\xb3\x2c\xbf\x0b\x19\xed\xed\x8b\xb1\xf8\x2c\xc7\xa6\x6f\xe2\xee\x4f\x63\x6d\xf6\x99\xc8\x07\x51\xd7\x93\x84\x8d\x58\xc2\xdf\x85\x5a\x6e\x8c\x2f\x99\xcf\xb9\x05\x6b\xfd\x17\xfd\x9d\x54\x6f\x0c\xe4\x96\x03\xf3\xd3\x3a\x57\x17\xed\x68\x39\x2a\x4f\xb7\xf8\x16\x47\x49\x54\x03\x6f\x78\x94\x6c\x54\xeb\x0b\xd0\xee\xc2\x7c\xc7\x68\x5b\x59\xea\x54\xbb\xb8\x6e\x17\xd6\xa2\xc8\x92\xd5\xc4\xb1\x16\xe5\x8f\x78\xee\x16\xe1\xf0\x6f\x0b\xab\x37\xf0\xae\x14\x40\x1f\x5e\xbc\x98\xf1\x8c\x5d\xcf\xfc\xb9\xdf\xee\x90\xf5\x72\x8a\x49\xe6\x08\x45\xcb\x39\xec\x1d\x78\xb1\x2e\x90\xe7\xcf\xd3\xe8\xb9\xc3\xb6\x4d\xff\xfc\xb2\x9d\x2f\xfe\x6c\x11\x8c\x52\xa3\xcd\x22\xbf\x10\xea\xcf\x9c\xc1\x1a\xc7\x9b\x5f\x87\x5b\x3f\x25\x2b\x83\x7d\xfd\xf3\x8b\xa1\x9c\xc0\x3d\x18\xb9\x35\x94\x13\xd0\xef\xc4\x54\x28\x27\x17\xb8\x4d\xf5\x3c\xe7\x98\xf1\x05\xa9\xfe\x1c\x44\x9a\xb4\xe0\x4a\xb2\x16\xaa\x13\xb0\x89\xc4\xff\xe1\x66\x50\x29\xb0\xcb\xb8\xfb\x2f\x3e\xc5\xba\x94\x7f\xd7\xd9\xf8\x54\xde\xca\xd1\x0f\xfd\x41\x2f\x83\x3a\x93\x6d\xa2\x42\xe0\x2e\x7b\x5a\xee\xe7\x54\x8f\x86\xcd\x58\xce\x6b\x48\x05\x2f\x93\xfb\xd8\x52\xaa\xb1\x65\x6a\x22\xe1\xef\x02\xa6\x11\xb6\x35\xa7\x71\xf7\x26\xb4\xaf\x72\x09\x2c\x9b\xa2\xff\x2e\x88\xf8\x0b\x34\xb9\xc0\x8d\x31\xf9\x10\xdf\x8c\xf5\x51\x94\x3f\x32\x16\x62\xf9\x8b\xfa\x01\xa7\xa4\x58\x82\xe7\xd5\x6b\x91\xd2\xc5\x1c\x4c\xeb\x5b\xa7\xc3\xbb\xdd\x6f\xdf\xa1\x38\x93\x62\xf0\x89\x9a\x35\xef\x16\xcf\x22\x3f\xcf\xfc\xdb\x55\x67\x01\x0f\xc9\x73\x8d\x8a\x7c\x98\xa2\xb6\x7c\x46\xfe\x06\x16\x16\x73\x01\xf9\xb7\xf8\xc6\x6b\xa3\x16\xc0\xef\x6d\xf4\xfb\x05\xc0\x40\x40\x51\xe2\x18\xee\xc4\x98\xb7\x60\x76\xc3\x0e\xc3\x3e\xc9\xf7\x72\x04\x83\xe6\xab\x5f\xe2\x32\x9a\x97\xfc\x1a\x75\xf5\x1c\xaa\xf2\xef\xa1\xa3\x6a\x0e\xfd\x2b\xb6\xda\xf2\xea\x3b\xb0\xd0\x6a\x54\xc5\x2b\x11\xf3\x69\x88\xae\xa2\x1d\x74\x2f\x3d\x42\x5f\x46\x74\x7d\xce\xde\x64\x0b\xf9\x11\x19\xe3\xf4\x62\xee\x6f\x80\x07\x7c\xe6\xb2\x1e\x3e\x32\x0e\x0a\xc3\x7d\xb2\x50\xcc\x20\xdb\x12\xea\x6c\xce\xaf\x06\x30\x08\xe3\x8f\xc4\x2c\xd5\x5b\xe0\xd3\x72\x2d\x0e\xe2\xdd\x4f\xd6\x29\x8b\x60\xc9\x7b\x6d\xfb\xe8\xf1\xdb\x71\x8f\xd9\xa4\x9f\x4a\x17\xd1\x35\x74\x07\x1d\x16\x49\x71\xba\xb8\x50\x6c\x10\x37\x89\x7b\xc4\x21\xf1\x82\x2c\xc8\x79\x72\xa9\x1c\x97\x9b\xe4\x0e\x79\x8f\x3c\x20\x9f\x56\x51\x55\x52\xa7\xa9\x73\xd4\x45\x6a\x54\x6d\x54\xd7\xa9\x5b\xd4\x9d\xea\x7e\x75\x40\x3d\xa1\x8e\x3a\xd2\xc9\x38\xb3\x9c\x53\x9d\x33\x9d\x45\xce\x52\x67\x85\x73\x89\xfc\x3d\x56\xc3\x60\x2e\x66\x64\xe6\xcd\x81\x22\x47\x11\xfa\x1e\x68\x7d\x42\xee\xc7\xb7\x82\xc5\x3e\x8e\xa3\x59\x89\x97\x78\xbf\x3d\xbb\xab\x9d\x14\xcb\xd5\x2e\x8e\x61\xaa\xf2\x6b\x35\x7d\xea\x4e\xec\xb4\xdf\xee\xcc\x2f\x1e\x1d\x82\x06\xd8\x7a\xbc\xe1\xb1\x7e\x98\xad\x92\x92\xf5\x7b\x57\xf8\xcd\x2b\x7b\x37\x50\x7d\x97\xa3\x7b\x4b\x8d\x9e\x3f\x8b\xef\x54\xe4\xef\xd1\x77\xeb\x1e\x8d\xdd\xfc\x3e\xbe\x75\x13\xf2\xae\x30\x57\x29\x52\xaf\x3c\xc4\x58\x46\xeb\x16\x8a\x6a\x37\xc7\x66\x14\x59\x82\xa7\x78\x44\xe6\xa5\x86\x17\x21\x19\xfd\x79\x54\xec\xfd\x04\xad\x4d\xbc\x0d\xb9\xbe\xf7\xba\x8c\x59\x1a\x3d\xa9\x40\xbf\xb4\x9e\xf2\xe6\xfd\x3a\x17\x79\x99\xc0\x4d\x84\x0c\xe3\x3b\x55\xf5\x00\xf0\xa8\x12\xcb\xea\x80\xf7\x4e\xfd\x08\x96\xac\xef\xa5\xb3\xd8\xb0\x14\xa8\x53\x0b\xdc\x5d\xf1\x7c\x65\x5f\xb1\x71\x76\x66\x85\xf3\x88\x69\x76\xe5\x52\x7e\xb3\xc0\x9b\x15\x73\x2b\x49\xe0\xe3\x7e\x4b\xec\x83\x96\x2b\xc0\x85\x1b\xd7\x79\x31\x52\xcb\xf6\x4d\x2b\xc3\x65\x1f\x80\xa5\x5c\x06\x0f\xf3\x6e\xeb\x0e\xd9\x34\x73\x7a\xa3\xa4\x68\x65\x43\x9a\x43\x4a\xde\x41\x09\xdc\x12\xe8\x66\xbc\xb2\x97\xca\x54\x07\x2a\xed\x97\x8b\xd3\x77\x29\x6e\xa3\x68\x10\x59\xa6\x3e\x0f\xbb\xdb\x46\xcc\xaa\x73\x6c\x8c\x91\xb9\xc1\xf0\x56\x7c\x37\xb7\x85\xcb\x54\x93\x97\xe3\x7b\x27\xeb\x2e\xdd\xea\x7b\xb0\xd3\xfb\x78\xad\xde\x09\xbe\xea\xcd\xeb\xd7\xfc\xcd\xec\xf3\x5e\x8b\x71\xcd\x26\x57\x5c\x86\x7a\x7c\x33\x52\x2d\x44\x5e\x16\x63\x2a\xd0\xbb\xb8\x9e\x19\xf7\xaf\x28\x62\x57\xe5\x1d\xe0\xb0\xa0\x4a\xf5\x76\xe6\xab\x05\xfa\x05\xf8\xaa\xd6\xb8\xa7\xe9\x88\x58\x28\x36\x88\xdd\xe2\xb0\x74\xe5\x42\xb9\x4e\xde\x22\x0f\x28\x47\x9d\xa6\x56\xa8\xcd\x6a\x8f\x7a\xca\xc9\x39\x67\x3b\xa3\xce\x36\xe7\x7e\xe7\xd9\x48\x29\x72\x4e\x64\x3c\xb2\x2d\xb2\x37\x72\x24\xda\x15\x9d\x1f\x1d\x8a\x6e\x8a\xde\x16\xfd\x6d\xf4\x58\xac\x14\x5b\x10\x1b\x8a\x5d\x13\xdb\x15\x7b\x28\xf6\x6c\xbc\x2b\x7e\x46\xfc\x82\xf8\xba\xf8\xf5\xf1\x3b\xe3\x07\xe2\x47\x13\x6e\x62\x6e\xe2\xbc\xc4\x48\xe2\x9a\xc4\x8e\xc4\xbd\x89\x83\x89\x63\xc9\xae\xe4\xdc\xe4\xe2\xe4\x9a\xe4\x55\xc9\xed\xc9\x3d\xc9\x03\xc9\x67\xda\x92\x6d\x7d\x6d\xf3\xdb\x96\xb4\xad\x69\xfb\x58\xdb\x75\x6d\x3b\xdb\xee\x6d\x3b\xd0\x76\xa4\x5d\xb6\xf7\xb4\xcf\x69\x5f\xd8\x7e\x61\xfb\x48\xfb\x95\xed\xd7\xb5\xdf\xda\xbe\xa7\xfd\xa1\xf6\xc7\xda\x8f\xa6\xa2\xa9\x9e\xd4\x29\xa9\x33\x53\xe7\xa6\x2e\x4a\x5d\x92\xba\x22\xb5\x29\x75\x43\xea\x96\xd4\x1d\xa9\xfb\x52\xfb\x53\x8f\xa6\x9e\x48\x3d\x9b\x7a\x21\x1d\x4d\x67\xd2\x85\x74\x5f\x7a\x4e\x7a\x5e\x7a\x81\x20\x7a\x25\xc7\x66\x7b\x1e\x18\x83\xce\x78\x6f\xac\xb4\x7a\x8b\xc7\x60\x6b\x41\x2c\xab\xc8\xb1\x4e\x31\xeb\x57\xf9\x67\xa4\x15\xed\x2b\x49\xe6\xa4\xcd\xb6\x92\x20\xcb\x7a\x95\xb1\x9d\xab\xd0\x72\x74\xdb\x2f\xf2\x1d\x81\xa0\x45\x58\xa5\x7e\xc6\xca\x3c\xab\xab\xdf\xbe\x63\x50\x50\xef\x6d\x51\xc3\xd7\x80\x3c\xbc\xd9\xf8\xc7\x11\xa5\xa8\x96\xfc\xd5\x35\x78\x0e\xf2\x51\x7e\x29\x65\xa6\xd9\x34\xcd\x43\x7e\x0c\xa7\xa7\x23\x74\x5f\xa3\x64\x91\xf4\x16\xf1\x28\xf2\xa3\xb8\xc5\xf0\xf2\x35\xbc\x7b\xeb\x8b\x81\x4d\x84\x67\xd1\xe1\xbf\x0c\x12\xf0\x7c\xe3\x0c\x0a\x01\x6c\xe2\x78\x3b\x5d\xf4\xb1\x32\xf5\x1e\xcc\x63\xe6\x35\x4a\xdb\x7b\xe8\xba\xbd\xaf\xb1\x07\xbb\xdf\x7a\x46\x0b\xd6\x6f\xd0\xf4\xda\x01\x7d\x35\x50\x3a\x03\x7e\x56\x09\xbd\xaa\x17\x7e\x1b\x21\xd2\x30\x6e\xdf\x02\xb6\xd4\xe6\x6b\xe3\xf2\x80\x17\x07\x19\xda\xa9\x19\xa8\x4d\xbd\x0f\x72\x73\xe6\x59\x56\x03\x88\xde\x3b\x5b\x94\x35\x11\x95\xf9\x26\xcc\xf8\x46\x70\xff\xd6\x33\x6c\x7c\x1b\xe1\x25\xb6\xab\x66\xde\x17\x7f\x9e\x37\x05\xda\x6d\x5c\xe7\xc6\x76\xff\x8f\xba\x43\xb7\x15\xf2\xd6\x57\xd9\xbc\xc6\x12\x6f\x3c\x1c\x9f\x36\x10\x2f\x29\xdf\x4f\x5d\x01\x09\x58\xb0\x37\xd1\x9b\xa9\xf6\xcf\xd4\x35\x43\xff\x8d\xaf\xa5\x3e\x3f\x63\xc9\x86\x39\xa9\xd5\xd4\x05\x8b\xbf\xdc\x02\x2d\x09\xe3\x2b\x0a\x7b\x7c\xbc\x19\x99\xf8\x80\x77\x43\x86\x35\x9e\xa2\xa6\xf7\x94\xd4\xd2\x16\xe5\x82\x94\xd2\x8d\x78\xc1\x9c\x7c\xc4\xbe\xeb\x12\xa4\xbf\x66\xca\x7b\x17\x66\xdb\xd8\x6f\x03\x1e\xa9\x86\xa0\xad\x95\xad\x1e\x52\x65\x8b\x3a\xf4\xa2\xa3\x70\x38\x3a\xe7\x78\x27\xe4\x3b\x94\xb5\xde\xf4\xf0\x2d\x16\x7b\xd7\x42\x9d\xcf\xd1\x98\xc1\x31\xb9\xf6\xc6\x31\x78\xbc\xfc\xa7\x80\xbd\x5f\x08\xdc\x1c\x74\xb1\x0e\x15\x20\x7c\x17\xb4\x68\x87\x75\x4a\x0f\xff\x50\x77\x51\x36\x88\xb4\x06\xbc\x70\xd6\x2b\x43\x13\xb8\x59\x6c\xb8\x9e\x17\xf3\x68\x74\x47\xff\x54\xae\xa1\x6c\x48\x3a\xf4\x02\xdd\x48\x5b\xaf\x40\x9e\x6a\xea\xdd\xd8\xfd\xf0\x78\x0c\x47\xf0\x5e\xdc\x5b\xad\x75\xf1\x06\xba\x0a\xbf\x05\xb2\x06\xbe\xbf\x99\xfa\xa9\xd1\x6c\x31\x9f\x3a\x66\xba\xe5\x86\x55\x7e\x01\xef\x74\xfa\xeb\xde\x70\x0a\xd4\x87\x18\xbd\x0a\xea\xfe\x1d\x40\x6c\xd0\x9e\x88\xe2\x2e\x7c\xab\x5d\x36\x94\xfc\x01\xe8\xe2\xe1\x59\x56\x6c\xb4\xa8\x2b\xaf\xc7\x19\x2a\x04\xde\xfb\x08\xbe\x9b\xb8\x94\x35\xcb\x8a\xd5\xc7\x53\xa0\x36\x7c\x56\x17\xb2\x77\x2b\xd8\x76\xd9\xb3\x64\xd5\xfb\x5b\xe6\x7a\x51\x22\x17\xb5\xc8\xb5\xd6\x86\x8c\x58\x7f\x47\x86\x5f\xfe\xb3\x08\x89\x5a\xce\xfe\xa7\x16\x34\x22\x3e\xda\x94\xd7\x65\x23\xe8\x2f\xe6\x9b\x3f\xe6\xe6\x89\xa7\x05\x23\x5e\x4a\xed\x63\x5a\xea\xb1\x6b\xec\xbd\x08\x5c\x95\x37\x52\x6a\xa6\x3d\x56\x17\xb3\x56\xdc\xc2\x32\xa3\xf3\x29\x85\xf6\xca\xcc\x95\x8d\x3e\x6f\x7c\xaf\xa3\x68\xa7\xa3\xf9\x7e\x3d\x55\xd5\x79\x7c\xbe\x82\x2b\xc3\x7c\x4a\x6e\xc3\x58\x8a\xf0\xf6\x36\xbe\x4b\xb8\xad\x69\xee\x76\xb5\x65\x94\xda\x43\xeb\xe9\xfb\xc7\xbf\x4a\xed\xb6\xc5\x90\xad\x24\xff\x80\x57\x50\xd3\x2d\xe2\x19\x76\xe2\x75\xd2\x16\xbc\x42\xfe\x01\xaf\x8a\xa6\xed\x2b\x0c\x9e\xe6\xaf\x2d\x95\x32\xf3\x5a\x6b\x95\xca\x1b\x28\x09\x3c\x33\x05\x1f\x41\x8e\xa3\x0a\xeb\x94\xb4\xa7\xce\x7a\x0a\xd4\xaf\x51\xd6\xbc\x4d\xe7\xbf\xeb\xf2\x11\xa4\x9a\xf5\xf6\x51\xd2\xdf\xc0\x02\x0a\xfa\x92\x74\xbf\x7f\x41\xac\xbd\x1f\x51\x69\xd0\x94\xaf\x07\x7a\xcb\x70\xc9\xaa\x1c\xc4\x0b\xa4\x15\xe6\xc6\x9e\x1d\xa6\x38\x35\x6d\xe5\x80\x4b\x45\xb9\x07\xef\xe0\x18\x7e\xe4\x23\x5c\xe7\x70\x6a\x25\x74\x4f\xf7\xbd\xb8\x21\xd4\xc1\xb8\x28\x6e\x7e\xcb\xc3\x94\xb0\x6b\xd6\x8d\x11\x74\x4a\x89\xdb\x45\x39\x8e\x2d\x41\xeb\x6a\x15\x25\x9a\xb8\xd1\xbb\x29\x61\x69\x8c\xb1\x17\xf1\x46\xf8\x0c\xd3\x6c\xb5\x1b\xbd\xfb\x02\xc4\x1a\xd5\x78\x07\xcc\xad\x9c\xcb\x61\xc1\x19\x3d\x04\x28\xad\xb8\x02\x08\x5c\x80\x17\xa8\x65\x14\x67\xfa\xf6\xa2\x9b\x16\x51\xdc\x7b\xfb\x05\x52\xd3\x55\xe7\xa2\x9d\x00\xbd\xaa\x95\x8c\xa6\xf1\x2d\x6e\x3a\x8f\x62\xc0\xa0\x8c\x87\xd3\x95\x5f\xc2\x4d\x03\xdb\x8b\xd8\x00\x8f\xa6\xa5\x5c\xb1\x1e\x18\x56\xda\xbe\xcd\x18\xa3\x58\x70\xcf\xe4\x3f\x50\x14\x63\x00\xf2\x45\xef\xa1\x28\x38\x40\x89\x4e\x22\x57\xbd\x03\xf6\x1d\xc7\xc4\xca\x95\x8c\xd3\xe1\x5d\x14\x35\x80\x7b\x0b\x3a\xaf\x2a\x7f\x0b\x6c\xcd\x50\xad\x83\x74\xc4\xa3\xa9\x41\x7c\x36\x9a\xcc\xdf\x72\xfc\x43\x4d\xfe\x0b\xee\x36\xa4\xa9\xa2\x3e\x88\x97\x6a\xf4\x8a\x3c\xc8\x31\x11\x59\xf9\x15\x72\xf8\x0c\xed\x43\xec\x84\xde\x9d\x25\xa8\x51\xa2\xb2\xfc\xb2\x89\x94\x50\xbf\x21\x85\x7d\x79\x15\x2d\xa3\x2d\x74\x3b\x3d\x44\x4f\x8b\x76\x71\xb2\x58\x28\x56\x88\x0d\xe2\x06\x71\x3b\xbf\xe4\x90\x91\xfd\xf2\x4c\x79\x9e\x1c\x44\xac\xc4\x4d\xf2\x76\xb9\x57\x1e\x90\x4f\xca\xe7\x55\x3b\xc7\x33\x2d\x56\xcb\xd4\x25\x6a\x9d\xda\xa8\x36\xab\x6d\x6a\x87\xda\xad\xee\x52\xf7\xa9\x7d\xea\x61\xb9\x8a\xf2\xf6\xc6\x51\x27\x73\x01\xf6\x1b\x33\xb6\x9a\x6e\x8c\xf4\x55\xd3\x7c\x96\x83\x6f\xa3\x86\x25\xf7\x28\xbc\x0d\xe6\xde\x75\x95\x39\xa0\x1f\xe1\xfe\x71\x44\xa7\x76\x30\x5a\xda\x80\xe0\xab\x4b\x38\xd7\xa0\x67\x41\x0f\xac\x3e\xeb\x13\x7c\x4b\x23\x63\xe3\x14\xbc\xf7\x3d\xaa\xf2\x26\x7e\x81\xd2\x8f\x29\x32\xb1\x05\xb3\xc9\x55\xeb\xd1\x5e\xe8\x55\x72\x4f\x0e\xa8\x29\x96\x70\xc1\xf9\xf0\x58\xd5\x74\x8b\x3c\x7e\xf3\x5b\x7e\x0d\x71\x4a\xe5\xc0\x2d\x5d\x4f\x0f\x58\xc7\x2f\x63\x05\x6b\xe9\x35\xd8\x8f\x48\xca\x13\x03\x37\x2f\xe1\xf5\x15\x6f\x0f\xa5\xe7\x30\xe7\x2c\x55\xd5\x08\x78\x82\x59\x47\x7f\xfd\xcc\xcb\x56\xfe\xfa\x99\xf7\x57\xfe\x06\x11\x42\xbd\xf6\xc5\xcd\x32\x95\x65\x0a\x48\x7a\xc1\xc6\x98\x75\x52\xa7\x4c\xd8\xb4\x3c\xdf\x05\x70\x65\x0c\xa7\xbd\x8b\xf9\x2a\x6e\xa5\xc8\x0e\xdc\x25\xf3\x28\x03\x63\x55\x97\x81\x1b\x85\x56\x51\x4d\x06\xca\xf1\x9d\x35\xb5\x16\x5c\xc0\x1b\x77\x2f\x95\x65\x9a\xdf\x4a\xf1\xef\x3e\x5d\x8a\x32\xae\x7d\x53\xb7\x2a\x93\xcc\x4d\xf8\xa6\x20\x29\x75\x9b\x4d\xf1\x3c\x64\x71\x20\x3e\x27\x5a\x5f\xd4\x76\xfb\xbd\x0a\xd9\xfb\x01\xdc\x5a\x4b\x7b\xb1\xeb\xb2\x0d\xb1\x4e\x5e\x9b\x51\x79\x21\xca\x57\xbc\x5b\x66\xe2\x63\x88\xd6\xe0\xb5\x14\xef\xa0\x88\xc7\x67\x65\x3b\x3e\x1b\xf4\x7e\xc8\xbf\x97\xa6\xc6\x81\xbd\x03\x3d\x10\x9f\xc0\x79\xef\xa7\xaa\xac\xe3\x65\xaa\x34\x15\x64\x86\x1c\x50\xae\xab\x3e\x6c\x51\xf7\x31\x52\xda\x16\x51\xc3\x88\x85\xea\x10\x1b\x49\xd2\x6c\x8e\x90\x3c\x8b\x96\xd0\x0a\xba\x44\x7e\x04\x77\x5b\xbc\x17\x14\xed\xab\x1d\xf2\x8a\x86\x74\x7e\xfd\x83\x1e\xa6\x04\xd6\x33\xf0\x42\xb4\xfa\x3e\x45\x03\xfa\xe4\xdf\xe1\xc6\x4b\x96\x4a\x22\x8e\x1b\x2f\x1d\x74\x22\x2d\xa6\xf5\xb4\x83\xf6\xd1\x11\x91\x16\x73\xc4\x62\xb1\x46\x5c\x65\xa3\x22\xe3\xb2\x2a\xe7\xc9\xf3\xe5\x1a\x79\xa5\xbc\x41\xee\x96\x7b\xe5\xa3\xf2\x99\x06\x34\xfc\x7a\x75\xab\xba\x5b\x3d\xa8\x0e\x89\xb3\x58\x9f\x0f\x5a\x4e\x33\xbd\x7c\xf0\xa6\x97\x29\x1b\x7c\xa9\xf7\xcd\x90\xa1\x33\x97\x35\xd6\xc7\xfb\xa0\x55\x67\xf9\x35\xad\x4c\xf3\x7b\x79\x32\x8b\x12\x2e\x4b\x59\xad\x99\x75\x86\xbd\xe0\xe2\xd3\xd0\x84\x4d\x1b\x5d\xac\x2f\xa6\xf8\x66\x9f\x4b\x35\x75\x35\x76\xbc\xf1\x85\x78\x4f\x4f\xfe\x38\xe8\xdf\xb4\xdf\xcd\xf1\xa0\x9e\xbe\xf3\x3e\xeb\xd1\x6c\xf2\x26\xaa\x0d\x81\x7a\x19\x7e\xcd\xd1\xf8\x0c\xf3\xea\x72\xf6\x88\xe6\x2c\x8e\x95\xe2\xbc\x8a\x74\x11\xff\x1d\x9c\x4f\x99\x11\xe7\xf7\x23\x27\x6b\x6f\x7b\xd8\x97\xcd\xd5\x27\x81\x1b\x9b\x3a\x55\xd6\x4f\xd2\x54\x50\x1f\x0d\xa4\x67\x2c\x9e\x5c\xa4\x8f\x20\xdd\x1f\x37\xc7\xdf\xaa\x4f\x04\xca\x1b\x2f\x9d\x91\xe4\x57\x04\xd2\x8d\x76\x64\xe2\x4c\x2e\xe4\x3b\xae\xbd\xbc\xa6\xde\x1d\xfe\x0f\x34\xa4\x17\x0c\xe6\xaa\x3e\x85\x48\xef\x86\x95\x56\x1f\x41\xaa\xd7\xba\x39\xb3\xfd\x74\x05\x52\xfd\x9d\x37\x11\x39\xdb\x11\x5d\xe9\x79\x1e\x8c\x5c\xa8\xc9\x6c\xa0\x05\x8f\x06\xfa\xd5\xc6\x40\xea\x2c\xf6\x24\xd5\xe8\x22\x7e\x71\xd0\x1b\x9b\xe1\x96\x5f\xe7\x1b\xd5\x95\x80\xfc\xbb\x8a\xfd\x93\x7d\x81\x18\xb2\x2b\x03\x69\x9e\x1f\xd6\x70\xe4\x1c\xbf\xe0\x6f\xf4\xd5\x0f\x22\xcd\xef\x45\xf3\xc6\x22\xb8\x5c\x17\xa3\x9f\x7a\x3d\x3e\x86\x14\x97\xef\x85\xe9\x59\x5f\x80\x94\xc0\x1e\xcb\xbf\xa1\x38\x95\x43\x38\xc7\xcd\xd0\x8a\x8a\xb0\x22\x5c\xea\xc7\x1d\xd9\xa5\x34\x45\xd7\xd1\xed\xb4\x9f\x9e\x12\x52\xe4\xc4\x29\xe2\x2c\xb1\x44\xac\x12\xeb\xc5\x26\xb1\x4d\xec\x14\x77\x8b\x7d\xe2\x80\x38\x2c\x9e\x12\xcf\xaa\x6b\xd0\x57\x3e\x20\x57\x9a\xde\x5b\x95\xdd\x78\x45\xd2\x7b\x01\xc6\x8b\x5c\xab\x7a\xa7\x5d\x7d\x9a\x7f\x35\xc2\x6b\xa3\xe1\xc5\x50\x91\xc4\x3a\x18\x7b\xb3\x16\x40\x05\x4c\x74\x44\x89\x5f\xbd\xc8\xf1\xcd\xe3\x60\xcb\x9f\xb1\x7a\xb9\x1b\x78\xd3\x1f\x77\x88\xd5\xed\xec\x07\x31\xb2\x2f\x6f\x65\xca\x24\x7c\x13\x1d\xc1\x53\x4d\x7f\xb2\x2f\x31\xfa\xd1\x8a\x0b\x58\x86\x95\x03\xaf\x8f\x18\x39\x69\x46\xea\xa1\x82\x5d\x94\x40\x6b\x19\xfb\x82\x61\xbf\xfc\x47\xc8\xb1\xb4\xbd\xf5\x53\x93\x39\x8a\xa3\x54\x15\x72\xa0\x48\xfd\x74\x0c\x52\xc8\x8f\x4d\xec\xa4\x18\x8f\xca\xbc\x23\xf0\x5b\x48\x25\x97\xd1\xe1\x2c\x9d\x02\x6f\x72\xc5\xbb\x49\x22\x3e\x09\x4f\x03\xe6\xa7\x36\xb1\x8e\xd9\x23\x6f\x43\xdc\xbb\x1e\xe1\x32\x52\x7a\x9e\xf2\x7b\x24\x29\x43\x82\x1c\xf5\x59\x44\xbf\xf6\xf2\xcd\x5d\xb7\xe1\xe6\x97\x1b\x78\xc7\x4f\xe1\xa5\xe8\xd3\xe5\xf2\x80\xc7\xaa\xc4\x68\x94\xa6\xda\xb2\xfa\x02\xc7\x14\xdb\x1c\xb5\x85\xa3\xfd\x0b\x4c\x09\x92\x1c\x8a\x52\x94\x08\xbb\x2b\xa8\x87\xfa\x28\x49\xfd\x74\x12\x9d\x60\x7f\x4f\xe9\xf4\xd6\xbf\xa7\x34\x39\x7c\x45\x9d\xd3\xb6\x53\xf8\x3f\x9d\x4f\x0f\x4f\x7c\x76\x3d\xfe\x1e\xfa\xc6\xaf\xf9\xef\xbe\xff\x17\x00\x00\xff\xff\x86\xc6\x59\x3b\x9a\x2f\x02\x00") func vendor_material_icons_materialicons_regular_eot() ([]byte, error) { return bindata_read( _vendor_material_icons_materialicons_regular_eot, "vendor/material-icons/MaterialIcons-Regular.eot", ) } var _vendor_material_icons_materialicons_regular_ijmap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x7d\x4b\x77\xa4\x38\xd6\xed\x5f\xd1\xaa\xf1\x1d\xf0\x0e\xe2\x9b\xa5\x5f\x99\xbe\x9f\x9d\x19\xe5\x88\x4c\xaf\xdb\x33\x01\x0a\x87\xda\x04\x8a\x16\x60\x97\xb3\x57\xff\xf7\xbb\x80\x73\x04\x1b\x70\xf5\xa4\x6a\xa5\xf6\x86\x10\x7a\x1c\x9d\xa7\xfc\xef\x3f\x74\x6e\xaa\xfa\x8f\xff\xf9\xf7\x1f\x2a\x8d\x8a\xee\xff\x95\x3c\xab\x3f\xfe\xe7\x8f\xb0\x10\x4f\xa6\x91\x8d\x36\xd5\x1f\xff\xf9\x3f\x7f\xa8\x2c\xcc\x26\xe8\x97\x5c\xfc\xac\x74\xd3\x23\xfe\xd6\x03\x24\x57\x75\x2d\xbe\x94\xd2\x9e\x09\xf6\x3f\x81\x6b\xc2\x83\x25\x7e\xd0\x67\xd5\xa3\x69\xa4\x16\xa8\xce\x74\xa9\x9b\x8f\x1e\xdf\xfa\xd1\x0a\x5e\xf2\xc3\x47\x04\x4d\x5b\x35\xe2\x4a\x96\xb2\xca\x89\x11\x7b\x9f\x33\xc4\xb3\x2c\x4b\xd5\x10\xd1\x5f\x23\x9a\xbf\x08\x0d\x57\xd0\x6b\x6d\x73\xea\x49\xe2\xc1\x67\x14\xd9\xf0\xe9\x51\x0c\xad\x45\xdf\x1a\x85\x5b\x6c\x15\x5f\xc4\xee\x64\x1a\x43\xc3\x15\xce\x51\x37\xd4\x9e\xb7\xc4\x94\xa5\x59\x8a\x92\x19\xc6\x9d\xf7\xa3\xcd\x0c\x99\x74\xdc\x8f\xd2\x55\x50\xfc\x68\x9b\x52\x57\x03\x29\x4e\xe6\x6f\x78\x30\xf9\xb8\x74\xd2\x38\x9a\xc1\xfb\x93\xb9\x5c\x74\xf5\x22\xae\x25\x75\x2f\xdc\x16\x33\xce\xc1\x0c\x5f\x3d\xac\x12\x2f\xce\x97\xf8\x9f\xad\x6a\x15\x3d\x8e\xe3\xfb\xcf\xb6\x1e\xde\x9b\x84\x30\xc1\xda\x76\x9d\x16\x7b\x25\x1b\x71\x57\x4a\xe6\xf8\x7f\xc7\x11\x5f\xaa\x97\x52\x15\x44\x0d\x3e\xa3\xde\x57\x85\x7e\xd3\x45\x2b\x4b\xb1\x6f\x75\x43\xf3\x1e\x86\x9f\xf1\x1f\xd4\x8b\x35\xe6\x2c\x6e\xff\x6a\xac\x24\x72\xf4\xdf\xc8\xdf\x8d\x3d\xcb\x92\xd8\xf1\x7f\x63\x3f\xa9\xa2\xcd\x5d\xcf\x93\xcf\xe8\x4f\x2a\xef\xff\x31\xed\xc9\xe6\xbf\x91\x27\x3d\xf1\xb7\xb3\x9e\x5c\x4a\x59\xa9\xb3\x29\x94\xf8\x92\x37\xfa\x8d\x56\xd2\x36\xfa\x8c\x75\x5f\xc9\x91\xe7\xc5\xcb\xb7\x7d\x90\x08\xca\x67\x88\xb1\x8d\xd8\x9f\xda\xa6\xe1\x0d\x8f\xcf\xba\x8d\x91\xc6\xc9\xbc\x5d\xf0\x76\x4b\xe3\xcd\x02\xfb\x71\x3c\x12\x96\x2e\xb1\x61\x51\x7b\x3e\xec\xd2\x32\x6b\xcf\xd4\x49\x58\xc8\x65\x29\xee\xab\xbc\x6c\x6b\xfe\xbc\xad\x97\xcd\xf0\x1f\x2d\x8b\x18\x78\x63\x55\x58\xa3\xb9\x8b\x12\x90\xca\xb4\x55\xae\xce\xaa\x1a\x1e\x8c\x73\x58\x64\x97\x0b\x09\xd6\x08\xde\x67\xf3\x13\xf7\x21\xce\x61\x2a\xac\x35\xef\xe2\x4a\xe6\xaf\x03\x58\x64\x0b\xf0\xc6\xbc\x57\xef\xd2\x16\xf4\x74\xbc\x24\x58\x73\xe9\x59\xc4\x48\x3e\x67\x4c\xa5\x4b\x9c\x6f\xd6\x89\x3f\x2f\x84\xa7\x0b\xfc\xce\xd8\xb1\x2b\xc5\x12\xff\x79\x71\xb0\x97\xc0\xe6\xb7\x8d\x38\x58\xfe\xcc\x34\x86\xcf\xac\x2f\x2a\x6f\xc4\x53\x27\xb4\x08\x86\xb5\x56\xd7\xaa\xae\xdd\x80\xa7\x71\x81\xa0\x7e\xa9\x26\xa0\x5a\x05\x3b\x01\x41\x84\xe3\x3a\xe1\x41\x92\xd4\x48\xb1\xdf\x23\xe3\x49\x35\xad\x25\xa1\x9a\xf8\x7f\xc7\xa1\x5d\x9f\x26\xc1\x3a\xeb\xd0\x73\xc4\x7d\x45\xe2\x73\xde\xa5\xba\x91\xf4\x3d\xa1\x9c\x77\xa6\xc7\x26\x47\x52\x10\xc0\x74\x37\x8d\xcc\x4f\xe2\x4e\xd3\x1c\x07\xc1\x66\x89\x3e\x9a\x4a\x0d\x9b\x3a\xc8\xf2\x05\xec\xc6\x32\x94\xf0\x91\x6d\xa1\x4d\x33\xce\x60\x02\xcb\xbe\x6d\x8c\x55\x95\x7a\xa7\xdd\x09\xb3\xfb\xd6\x2b\x14\x96\xb6\xc5\x74\x33\x75\xcb\xbe\xbe\x48\x56\x07\x92\x68\x86\xb5\x17\x12\x5e\x39\x00\x4d\xa3\xec\xc7\xf4\x74\x95\xe1\x0a\x7e\x7d\x92\xf6\xa5\x3b\xe6\xee\xda\x92\x44\xa5\x8c\x56\x78\x13\x38\x5e\x81\xf7\x4d\x41\x68\xb2\x82\xfe\xac\x5e\x2b\xde\x78\x59\x38\x5d\x7b\x57\xaa\x1b\xea\x41\x27\x1a\xb6\x4b\x50\x00\xac\xaa\x93\xb2\x7c\xce\x4f\x07\xec\xaa\x34\x34\xc8\xbe\xdc\x40\x7b\xab\x1a\x63\x9a\x13\x29\x35\xc7\x35\x4c\xf4\xf3\x44\x4f\xa7\xab\x8c\x6b\x53\x55\x2a\x6f\x14\x7f\xd7\x76\x95\x75\xa3\x6b\x99\x95\x8e\x24\x57\x49\x7b\x25\x3b\xc9\x56\xbd\xd0\x82\x09\x90\x65\x7b\x71\xd3\x96\xd2\x12\x1e\xce\xf1\x07\x5d\x29\x87\x46\x73\x94\x4f\x82\x10\x67\xa6\x87\x78\x23\x02\x62\x0c\xaf\xce\x64\xd6\x7c\x96\x96\xa1\xcd\x0a\x24\xae\x8c\x2d\x68\x8d\x06\x01\x8c\x5b\x0f\x88\x2f\xb4\x48\x82\x60\xbb\x04\xaf\x4c\xd3\x98\x33\xe1\x72\x89\x5f\x97\xfc\x91\x41\x90\xad\xc0\xa6\x34\x0c\xe7\x4b\xf8\x9b\xb1\xfa\xb7\xa9\x1a\xc9\x3d\x28\x96\x9c\xfb\xaa\x72\xbd\x57\x4b\xf8\x41\x1d\x1b\x42\x8f\x4b\xf4\x47\xdb\xf0\xc3\xa0\xb0\x11\xfc\xa4\x5f\x4e\xf4\x34\xe8\x6a\x04\xef\x9b\x0f\x16\x36\xa0\x9f\x11\x7c\x30\x17\x02\xc3\x25\xf8\x4b\xd9\x46\xe7\xf4\x61\x5e\x02\x63\x63\x65\x55\x74\xdb\xf7\x59\x36\xca\xba\xe9\x0b\x71\x1b\xda\xae\x6f\x55\x67\xb4\xf8\x04\x6f\xd6\xe1\x80\xe0\x74\x1d\x0e\x09\xde\xae\xc3\x11\xc1\x72\x1d\x8e\x09\xce\xd6\xe1\x84\xe0\x7c\x1d\xde\xd0\x16\xfb\xe4\xe9\x4e\xb6\x12\xe3\x93\x17\x7c\xd3\x2f\x27\x62\x14\xeb\x8c\x07\xf3\x4e\x04\xb5\x4e\x78\x54\x85\x26\x1d\x2a\x9c\xbd\xc4\xbc\xaa\x4a\xdc\x9f\xe5\x0b\x29\xfb\xb3\x57\xb4\x35\xc9\xa3\x02\x1e\x6b\xb3\xac\x54\xbd\x0c\xa6\x83\x39\x81\x91\x6f\x5f\xc4\x93\xea\x34\x48\x02\x61\xdc\x5b\x5d\xb2\x31\x06\x5f\xdc\xda\xba\x11\x8f\xa6\x20\x55\x55\xc2\x52\x6e\x6b\x5d\xb1\xa8\xcd\xc2\x35\x48\x5c\xab\x8a\x17\x7a\x9a\x4c\xa7\xf2\x5a\xe6\x27\x92\x74\x1b\xb5\x05\xe0\x95\x7e\x2c\xf3\xa0\x99\xa4\x81\x97\xf9\xb3\x66\x71\x4b\x8a\x86\x97\x05\x73\xe8\x51\x72\xd7\xb3\x70\x81\x29\xfb\xc2\x60\xb4\x00\x75\x5d\x53\xff\x3c\xf5\x09\xda\xed\xe2\x17\xc3\xa2\xd8\xcb\xe2\x39\xed\x49\xe5\x4a\xbf\xf1\x6b\xb2\x64\x8e\xef\x2f\x25\xf9\x14\xbc\x24\x9f\x83\x07\xd3\x5b\x13\x64\x53\x86\x30\xf4\xd7\xf2\xac\xc8\x74\x09\x67\xc3\xd4\x01\xe2\x4b\x49\xb3\x7c\xcc\x97\xe0\x6d\x75\x72\xfe\x80\x70\x36\x9a\x3d\xe1\xce\x1a\xd6\x47\x66\x23\xda\xc3\x4f\xee\xf8\x98\x8d\xe9\x80\x1a\x9a\xa8\x38\xc7\x69\xad\x72\x55\x52\xa7\x70\x20\x6c\x21\xbe\xea\x63\x93\xb3\x16\x9b\x1e\x37\x73\xfc\x51\x9d\x33\x65\xeb\x93\xbe\x10\x23\x9d\x33\x0e\x56\xbe\xd1\xfb\xb3\x08\x47\xa4\xd6\xd5\xb0\x9b\x43\x0f\x5f\x4c\x26\x73\xe8\xa5\xb3\xe6\xd9\x79\x1d\xe2\xf2\xe8\x97\xb4\xb8\x33\x79\x5b\x8b\x7d\x63\x0d\x1f\xc5\x38\xff\x53\xd6\xb3\x92\x7c\x12\x4e\x25\xce\xf5\x49\x56\x2f\x4a\x7c\xd3\x75\x63\xec\x07\x2d\x92\x0d\x12\x68\x79\xe4\x72\xd6\x2c\x86\xed\x4e\x68\xb6\x8e\xa2\xd3\x62\xf6\x0e\xc5\x6a\x25\x58\xe1\x7d\xfb\xe8\xe7\x01\x9b\xdb\x61\xfc\x5e\x71\x55\xca\x8a\xbf\x2c\x5f\x30\xc1\xf0\xc1\x2e\xaa\x37\x6b\xaa\xf1\x8c\x8c\xf3\x7c\x05\x1e\x4f\xc1\x2c\x82\x65\x7a\xd2\x65\x21\xae\x25\xa9\x72\x59\x14\x2c\xc0\x3b\xab\x55\x55\x94\x1f\xd4\xb7\x02\x08\xd6\x9c\x55\xb7\x8a\xbb\xe3\xd0\xc9\xb6\x34\x99\x0a\xd9\xeb\x52\xd6\x6c\x55\x42\xd7\x9c\x5a\xe1\x65\xe9\xbc\xdd\x69\x2c\x71\x0e\x3f\x58\x9a\x9a\x26\xca\xcf\xe7\xed\xdd\x77\x5c\xdc\x2e\x0f\xb2\xd9\x83\x6d\x41\xed\x6a\xde\x3e\x1d\xdd\x20\x3b\x2e\xe0\x1b\x43\xf3\x1e\xe4\xde\x0a\xf8\x5e\x95\x46\xd2\xcb\x73\x7f\x41\x60\x35\x30\xc8\x83\x05\x36\x7a\xa1\x02\x30\xc4\x07\xf4\xe7\xc5\xbd\x38\x4d\xa0\x5b\x3c\xd2\x21\x0a\x42\x53\x96\xaa\x97\x73\x35\x1d\x40\xfe\x3a\x2a\x40\xa7\x0c\x71\xa3\x74\xea\x9c\x78\x50\xf4\x8e\x10\xe7\xa6\x03\xf5\x6f\x16\xf5\x20\x95\xcc\x79\xb4\xbd\xe6\xc8\x85\x17\xd8\xd6\x8f\x97\x88\xe8\xad\x6f\xfa\x3d\x4f\xce\x08\x4e\xbd\x4b\x42\xec\x4a\x75\xd4\xf6\xdc\xbb\x0a\xc5\xf7\xb6\x13\x6a\x43\xaf\x0a\x0f\x59\x8d\xcc\x1b\xf1\x28\x35\x9d\x79\xf9\x71\x05\xde\x9d\x78\x8a\xbd\x4c\x2e\x71\x5e\xbe\xc5\x0c\xea\xac\xe1\x6b\x73\xf9\x20\x58\xad\xc1\x2d\xfb\x50\xe7\xbf\xdb\xa1\x3b\x59\x37\x3c\x93\xf3\xdf\xb5\xa6\x14\x3b\xa3\xdd\x90\x66\x9f\xe1\xe2\xa6\xbd\x94\x3a\x67\x0f\xc0\xd6\x83\x9d\x61\x2e\x1f\xd6\x6d\x7e\x1f\x7c\xd6\xd7\x56\xf1\x43\x01\x4a\x8d\x1e\x10\xdf\xd5\xbb\xb8\x33\x25\x5b\x16\xe9\x66\xf6\x70\xa1\x9b\x4e\x74\xb0\x64\x87\xcf\xb7\xa4\x38\x87\x59\x3e\x6b\x16\x7e\x22\xb6\x84\x15\x73\x2c\x64\x55\x17\xb7\x61\x07\xc5\xac\xc7\xe2\x26\xec\xa0\x0d\xeb\xb0\xb8\xfd\x7a\xb7\x91\xa6\x43\x1f\x77\x5f\x07\xdd\x59\x45\x63\x8f\x7b\xaf\xc3\x1e\x64\x55\xd4\xb9\xbc\x30\x21\x9a\x13\x7e\x58\xfd\xa2\x2b\xd2\xfd\x43\x70\x6b\xf5\xf8\xce\xd8\xc6\x4a\x52\x49\x22\xf0\x89\xf6\x78\x1f\x20\xe1\xb7\x27\x73\x74\xff\xaf\x96\x77\x4c\xba\x99\x7e\xd3\x8d\xac\x4f\x99\xe1\x31\xf7\x41\x93\xb9\x91\x8d\x14\x3f\x6b\x56\x75\xb7\x7e\x82\xa0\x12\x4f\xdd\x21\x49\xbf\x39\xed\xd1\x8d\x3a\xc9\xdf\xfc\x73\x01\x00\xa5\xe2\x65\x05\xb6\xdf\x00\x88\x3b\x63\xd5\x1b\x3b\x47\xe0\xd8\x22\xc2\xfe\x5d\x29\x52\x34\x36\x21\xc0\x75\x6e\xf5\x28\xad\x43\x0f\xdf\x5e\xbf\x36\xe6\x22\x1e\x65\x4e\x68\xbe\x82\x3e\xeb\xaa\x70\x62\x03\xbc\x7d\x37\xaa\x91\xba\x64\x81\x52\x00\xf2\xa6\x4a\x73\xe9\xad\x5e\x37\x8a\xa0\xf6\x8d\x0c\x77\x9e\x85\x70\x74\xdf\xa8\x37\x9d\x2b\xf1\xad\xa5\x40\x0c\xa8\x7d\x03\x48\xbf\x1c\x6e\x96\x88\xf8\xd1\x9c\x58\x52\xc1\x96\xbe\xd1\xb2\xec\xec\x51\xd2\xcb\x3c\xd8\x37\x1d\x78\xa1\xa3\x20\x06\x13\xf9\x46\xdb\xa9\xc8\x8f\xc1\x42\x1e\x41\x71\xa5\xc9\x16\x88\xc1\xcc\x9d\x32\x0c\x69\x48\x31\x98\xd1\x53\x46\x4b\x3f\x02\xe7\xca\x84\x70\x4d\x07\x7a\x0c\x7a\xd0\x84\xf0\x24\x75\xf9\x4e\x2e\xf9\x18\xbc\x1c\x53\x52\x4b\xae\x60\xb0\xb9\x27\x84\x7d\x9b\xb9\x97\xe0\xd4\x8c\x9c\x83\x95\x55\xad\xf9\x83\x3e\xf9\xa5\x67\x59\x0e\x47\x60\xe2\xe3\x27\xd7\xf9\xe8\x58\x4b\x37\xf0\x13\x34\xd0\x89\x0f\xc3\x68\xc4\x77\xd3\x88\x1b\x5d\x37\xad\xcd\x88\xe0\x7f\x4a\x70\x46\x45\x12\x85\x9f\x93\x58\x71\x48\xa2\xe8\x6f\x48\xbc\x7f\x60\x51\xb0\x0b\x6e\xa3\xb0\xf9\x2c\x49\x1c\xa6\x1b\x18\x12\x3e\xfd\xd2\xcd\x66\xd6\xec\x14\xb1\xad\x3f\x83\xda\x46\x3c\x48\xeb\x84\x4d\xba\x40\xf7\x67\x36\x34\x7d\x88\x80\xde\x58\x79\xa4\x23\x35\x00\x6f\xf8\x8d\x95\x2f\xe2\x9b\xac\x0a\x8e\x7c\xfa\x30\x3a\x56\xbf\x29\x71\xdb\x48\xda\x76\x30\xfe\x6f\x64\x46\x81\xa1\x74\x5b\xf0\x02\x00\xf3\xbd\x6b\x9e\x45\x19\x8f\xd3\x9d\x78\xfb\x4f\x95\x93\xad\x00\x67\xda\xed\x99\x95\x88\x04\x2c\x74\x32\x02\x0b\x71\x5b\xe5\xf6\x63\x94\x69\x9e\x3f\xfd\xb8\xdb\x7f\xb5\xb2\xd4\xbf\x79\xef\x7b\xd3\x05\x77\x6b\xad\xe1\x76\x7f\xde\x0e\x96\xc7\x16\xfc\xe5\xb7\xad\x35\x62\xff\x71\xce\x0c\x29\xcb\xa0\x9d\xdf\xbe\x89\xfd\x24\x0a\x9f\x6e\x60\x10\xde\x58\x59\x4b\x20\x0c\xde\xb7\x8b\x2f\x6f\x52\x97\x32\x73\xf3\x10\x2f\x18\x57\x6d\xfd\x41\x60\xb2\x00\xbf\x1b\xa7\x8b\x84\x0b\x70\xaf\x48\xce\xa4\x1b\x98\xac\xbf\x74\xd3\x1b\xea\x17\x8e\xdf\xc0\xd8\xff\x75\x91\x55\x21\x1e\x9c\x3b\x1a\xd4\x38\x42\x1f\x8d\x65\xe3\x60\xf6\x6c\xa9\x73\xcd\x3f\x2a\x67\x10\x3f\x14\xe6\x33\xc4\xd4\xad\x83\xb2\x15\x48\x7c\x57\x2f\xec\xb8\x03\xf5\x09\x08\xa4\xcf\x80\x19\xe3\x08\xbb\xb2\x75\xbe\xbf\xf9\xf7\x4e\x18\xfc\x8e\xe3\x1a\xe3\x1f\xca\x52\xdc\x69\x83\xbd\x6c\x54\x55\x8f\x93\x3f\xed\xe0\x1d\x07\x2d\x3c\xff\x08\xcd\x75\x03\x31\x32\x2f\xf0\xe6\xf0\x93\x7a\xd7\x1c\x8c\xda\x14\x80\xbe\x19\xcb\xb1\xeb\x74\xa3\x56\xa0\xa9\x9b\xda\x83\xa5\x7a\xa7\x64\xd3\x5a\x55\x88\x5d\x29\x3f\xc4\x83\xae\xd9\x95\xa3\xd6\x48\xbf\x74\xa1\xf8\x93\xa1\xff\x4a\x15\x19\x87\x78\x3c\x10\x2d\x77\x3a\x53\x56\xb0\x98\xf0\x20\x00\x36\x60\x8f\xb2\x6a\x65\xef\x67\x32\xfc\xf5\x10\x8d\x1b\x58\xdf\x39\x48\x04\x1e\xb8\x01\xdb\x91\x6c\xf5\x20\x70\x36\x60\xfb\xb3\xb4\xcd\xf4\xe5\x01\xa8\x94\x77\xba\x54\x73\x4b\x32\x99\xe3\x13\x73\x30\x2c\x42\x44\xd9\x46\x0a\xc1\xfa\x19\x00\x5e\x60\x85\xbf\x84\x68\x65\x15\xc1\x12\x22\xa7\x72\x11\x2d\x21\x52\xc4\x8b\x78\x09\x91\x22\x5e\x24\x4b\x88\x1c\xc9\xc5\x66\x09\x6d\x08\x4a\x97\x50\x4a\xd0\x76\x09\x91\x15\x51\xc8\x15\xa8\xdf\x38\x84\x67\x4b\xfc\x4a\x7c\xa9\x0a\xf1\x4c\x84\x7c\x49\x98\x3a\x9d\x88\x55\x2c\x59\x37\x56\x9e\xc9\x77\x58\xa8\x25\x7c\x67\xe5\x99\x95\xc1\xe2\xb8\xc4\xbf\x15\xa4\x3a\xc7\x2b\xe3\xef\x76\x41\xa8\x56\xe6\xf4\x3b\x1f\xd9\xa1\x5a\x79\xf6\xa0\xcb\x46\xec\x4f\xfa\xc8\x6f\x58\x2e\x17\xf1\x4b\x57\x0d\xdb\x0a\x69\x8a\x3f\x51\x15\xe2\xbe\x12\xbb\x11\xf6\xe7\xf0\x93\xba\x94\x2c\x45\xb6\x1e\x0e\x4d\xf5\xa2\xec\xc5\xb2\xe5\x1a\xcf\x86\xd7\xd6\xcd\xf8\xe6\x2c\xc2\x9e\x35\x73\x57\xb7\x0f\xe9\x51\x77\xa5\x24\x0f\x21\x38\x92\xef\x4a\xb6\x96\x42\x15\x63\x7b\x7d\x1a\x43\x10\xa1\x4a\x16\xa0\x0b\xd2\xa9\xcd\x12\x63\x3d\x14\xd6\x5e\xe9\xac\xe9\xad\x17\x2d\x80\xde\x72\x24\x34\x5e\xa2\x07\xf9\xaa\x8c\xfb\xc9\x14\x09\x64\x28\xa5\xc1\xac\xb9\x3b\x16\x5d\x8e\x45\x9a\x86\x2b\xf0\xe8\x67\x0e\xc0\xb2\x9b\x98\xef\x01\x98\x48\x03\x20\x7e\x5c\x14\xb9\xcb\x40\x73\x22\x74\x7f\x92\x96\x73\x80\xfc\xe5\x6b\xc5\xfe\xa2\x72\xcd\x99\x3c\x09\x12\xaa\x66\x26\xd0\xc0\x26\xb8\x33\xf6\x2c\x1b\xf1\xa5\xd4\x2f\xd5\x74\xba\x03\xd0\xe7\x81\xf5\x7f\xdb\xba\xd1\x47\x8a\xfc\x83\x46\x0f\xb4\x31\x58\x18\x6e\x3e\xe3\x4c\x63\x82\xe9\x92\x74\x65\x4a\xee\xf3\x76\x89\x4e\xc2\xa1\xa1\x5c\x81\x7b\xff\xd9\x9d\xe6\x88\x2b\xe4\x3e\x02\xe7\x49\xd5\x8a\x7b\x91\x7f\x46\x3a\xa8\xbf\x98\x53\x2c\x39\xf7\x55\xd1\xa9\x54\x37\x2a\xb7\x4a\xd6\x1c\xc7\x54\x9f\x12\xef\x2b\x20\x1e\x57\x88\x8d\x2c\xf5\x60\x75\x07\xe0\xfc\x27\xfc\xa1\xcf\xe6\xba\xc8\x9c\x63\x35\x01\xf8\x93\x1d\xab\xee\x54\xc4\xb2\x54\xec\xf8\x0f\xc0\xb3\x3c\xa5\x0d\xbe\x3b\x47\x0b\x97\xb4\x9d\x64\x59\x12\x44\x2b\x8b\xe8\xcf\x96\xd5\xcd\x20\x5e\xf9\xf4\xfd\x49\x5e\x48\x08\x07\xd1\xca\xea\xda\xb3\x3f\x33\x88\x56\x16\xd5\xbe\xb1\xfa\x55\x35\x27\x6b\x5a\x0a\x53\x06\xd1\xca\xba\xea\xa6\xa9\x60\xc3\x52\x3c\x74\x5b\xf2\x89\xd8\x2b\x0b\x0c\xd9\x4f\x1d\xfb\x81\xd8\x2b\x0b\xee\x67\x55\xa8\x3e\x8b\x8e\x83\x5f\xb3\x69\xa3\xc8\xa7\x1f\xcf\xc6\x66\x54\xe3\xe2\x64\x89\x08\xdf\x23\x70\xb3\x02\x86\x0c\xa6\x2b\x60\x4c\xa2\x1b\x7e\xcf\x2a\x25\xae\xac\x92\xaf\x47\x0e\x06\xc5\xa8\x8b\xb4\x65\x59\xe7\x56\x91\xbc\x89\x51\x1b\x71\xa0\xe8\xec\x00\x1a\x0b\xd8\x5d\x6d\x35\x71\x73\x6c\x21\x31\xe8\xeb\x60\xed\x97\xce\xa1\x06\xc9\x25\x5f\xe5\x59\xb1\xef\xc4\x0b\xfc\x19\x42\xef\x03\xf3\xf9\xab\x8b\x7f\xf9\x90\x14\xf8\x55\x75\x36\x37\x1f\x89\x11\x20\x8d\x33\x5c\xb6\x10\x03\xfb\xaa\x8f\x34\x5a\xf0\x26\x53\x1e\xc5\xb5\x69\x2d\x6d\x45\x1f\xc2\x7f\x5f\x2f\xb5\xb8\xd3\x7f\x71\xf6\x0a\x84\xcc\x3a\xac\xb3\xff\xa7\x78\x3c\xc3\x5d\x0a\x62\x0a\x88\xe5\x00\x6e\x08\x51\xe2\xae\x5d\x3b\xcf\xbd\x92\x08\x91\x4e\xeb\x43\x18\xe0\xab\x95\x97\x93\xce\xc5\xed\xbf\xe8\xa1\x0c\x40\x5d\x4c\x8e\xd5\x7c\x01\x0d\x6f\xdc\x28\x98\x24\x6b\x28\x5d\x6a\x73\xf4\xe6\xed\x63\xbe\x65\x9a\x2c\xb0\x67\x63\x59\xe1\x9f\x4a\x98\x6f\xa4\x28\xab\x02\x1a\x27\x59\x39\xe0\x1a\xe9\x11\x72\xa5\x1c\xfd\x19\x30\x8d\x4c\x1e\x83\x19\xe8\x02\x92\x21\xf8\x90\xbe\x29\x59\xb0\x78\x0f\xc1\x15\x44\x88\x78\x24\x31\x1b\x1e\x43\x44\x4b\x17\x06\x0f\x66\x88\x65\x24\x4d\x37\x80\x94\x1c\xcc\x2d\x66\xcd\xe0\x3c\xf0\x82\xe9\x4a\xfa\xa6\x5f\x4e\xe2\xcf\x56\xba\x7c\xf8\x00\x92\x0b\x3b\x78\x54\x75\xd2\x34\x5d\xc3\x26\x4b\x6d\x0b\xf8\x18\x86\x4d\xd3\xe9\x8a\xfa\x66\xce\xac\xf8\x25\xd0\xdc\x88\x03\x39\x54\xe3\x10\x1f\x68\x38\xd6\x9d\x66\xd0\xde\xda\x97\x52\xd6\xb5\xb8\x3d\x5f\x1a\xfe\xa9\x7c\x95\xe1\x5c\x79\x5b\x0f\x66\xaf\x69\x58\xe3\x2a\x66\xcd\xa4\xb3\x1f\xa7\xe3\x35\x49\x22\x39\xc6\xf3\x76\xb1\xc8\x02\xf5\x40\x6b\xbf\x3f\xf7\x09\xc7\x10\x4f\xf2\x20\xec\x40\x8c\xce\xac\xa7\xbc\x92\x2d\xb8\x18\x07\x5c\xf6\xa7\xfd\xe8\x63\xf6\x41\xb4\xdf\x57\x19\x45\x9b\xb7\xde\x16\xda\x0b\xd5\x28\x7b\xd6\x95\x6c\x94\x98\xc5\xa5\x53\x05\xcc\x23\x59\xd6\xe9\x71\xd6\x0c\x4b\x29\x85\xc2\x8d\xfb\xea\xd2\xb2\xd0\xce\xa0\xbd\x56\xdd\x57\xbb\x3c\x9a\x00\x22\xc0\x0c\x4f\x22\x87\x01\xc4\xd8\x88\x30\x78\xfe\xc6\xac\xd0\x48\x2d\x39\xb7\x67\xd3\xe8\x9c\x63\xbf\xd1\x71\xc9\xb8\xaf\xde\xf4\xc4\x1d\x16\xc4\xde\x92\xf3\xa0\x29\x06\x1f\x80\xc7\x92\xd0\x31\x6d\x35\xdd\x22\xfc\x36\x7c\x47\x69\x2c\x4f\x6d\xf4\x19\x3e\x0a\x20\xc8\xdd\xb8\xaf\xc9\x46\x81\x49\xff\x5f\xf5\x31\x46\x7b\x42\x70\x87\x32\x24\xc6\x34\x6b\x62\x45\x9f\xb3\x9c\x72\x1c\x82\x4b\x6f\xc6\x1a\xd5\xe3\x10\x9c\x7b\x33\x1a\x25\x5a\x87\x60\x19\x38\x0e\x66\xc7\x86\xe0\x1f\x76\xa4\x6b\x79\xa9\x5d\xbe\x68\xe8\xcb\x35\xce\x37\xcd\xc7\x16\x24\xe6\x3a\x7c\x92\xd8\x1c\x42\x52\x80\x63\x1c\x64\x46\x70\xb1\x06\xff\x32\x3a\x67\xa1\x04\x9f\xa2\x9b\xfc\x44\xea\x4a\x0a\x95\x46\x0f\x32\x63\xa1\x04\x25\x35\x7d\x3b\xec\x93\x10\x12\x70\x30\xaa\x98\x42\x55\xc3\x83\xac\x5e\x5a\x27\x61\xc0\x81\xf9\x20\x2f\x0d\x87\x53\xc1\x61\x37\x00\x62\x48\xc3\xc8\x38\x7d\x34\x04\xaf\x1d\x71\x5c\x28\x0d\x34\x20\x02\xa7\x91\xb4\x18\xfc\x1c\x0f\x72\x6a\xad\xa7\x50\xad\xf1\x20\xdb\x2a\x3f\x91\xcc\xce\x00\xf8\x50\x96\x43\x45\xf9\x02\x98\x58\x50\x21\x64\x1f\x3d\x28\xf9\xea\xce\xfa\xf0\xb8\x9d\x43\x4f\xea\x6c\xde\x78\x5c\x25\xa0\xa4\x17\x7a\x10\x1b\x7b\xd0\x99\x95\xf6\xc3\xbd\xd2\x83\xe0\x18\xa3\x57\xc6\xbc\xd2\xd3\x10\xf8\x62\xfc\xb1\xad\xe9\xa4\xde\x7a\xf8\xfc\xcb\xa9\xc9\xda\x32\x43\x07\x3d\xd4\x76\x0c\xd6\x92\x4b\x31\xdd\xc2\x0a\xef\xc1\x67\x35\xda\xa2\x89\x37\x43\xa5\x15\xfb\x5c\x72\x39\x15\x28\xea\x4e\x52\x45\x60\xc1\x76\xcd\x7d\x22\x8c\x4b\x6a\x4b\xb7\x09\xe0\xec\x5a\xcd\xb1\xf9\x4d\x09\xa7\x46\x24\xe1\x76\x8e\x1d\xde\x68\x3a\x61\x04\x4c\x2e\xcb\xa1\x4e\x87\x75\x88\x18\xac\x54\x22\x0c\xd5\x36\x84\xab\x25\xde\x0c\x06\x4c\x0c\xf6\xe6\x80\x5d\x71\x44\x11\xac\xcc\x01\xbb\x96\x47\x0a\x69\x82\x6d\xc9\xa0\x15\xcf\x92\xb2\x3b\x63\xb0\x2a\x89\x60\xaa\x37\x55\x69\x55\xe5\xdd\x0c\x71\x10\x20\x86\xf3\x74\x60\xde\xe8\x8a\xf5\xae\x18\x6c\x1e\x82\x2d\x4f\x45\x0c\x3a\xfe\x80\xde\x95\xc6\xf2\x98\xc7\xd1\xf2\xe5\x5f\x65\x0d\x51\x9a\x18\x44\x10\x71\xac\xc9\x87\x64\x7e\xd7\x4d\xb0\x2a\x07\xd6\x37\x53\x5f\x34\xa7\x59\xc7\x60\x48\x32\x81\x55\xa9\x18\x4c\xab\x01\xed\x76\x73\xd1\xfd\x88\xb2\x6f\x2c\x0f\x63\x38\xcd\x89\x37\x6c\x0b\xc2\xf3\x05\xfe\xc8\x41\xbf\x38\x5a\x2e\x85\x47\xf3\xa6\x49\x73\x89\xa3\xe5\x4a\xf8\x71\x3c\x2a\x9e\xef\xe5\x42\xdb\x49\xfb\xea\x26\x22\x5e\xae\x95\xdd\x49\xda\xb3\xcc\xa9\x6b\xf1\x72\xc1\x8c\x59\x3e\x71\xbc\x5c\x31\x3b\xfd\xfb\xb7\x24\x74\xb9\x5c\x76\x5c\x49\x16\xc7\xcb\x25\xb0\x33\x75\xaf\x0a\xbb\x71\x8b\x97\x0b\x61\x67\x75\xd5\xd4\x27\x92\xe3\x71\xbc\x9c\xe6\xbd\xe2\xa7\x97\x93\xbb\x3f\xe9\xbe\xea\x91\x08\xcb\xc9\x3d\xc8\xbf\x34\xd9\x4f\xf3\x0f\xef\x9d\x0c\xd7\xbc\x43\xfd\x6c\xbe\x08\x7b\x1c\x0a\x26\xbc\x7c\xde\xbb\x9e\xc3\x9a\x8b\x97\xcf\x3b\x38\xc0\x6c\x2a\xae\x3e\x8c\xc5\x16\xe9\x76\x46\x22\xe7\xe6\x76\xf6\xe6\xd7\xd1\x43\x99\x6e\xb7\x0b\x0c\x4e\x5a\x5c\x8b\x2c\xd4\xc3\x63\x36\x6f\xe7\xd0\xc6\xb1\x58\x20\x14\xd9\x38\xaa\x05\x42\x81\x8d\xe3\x71\x81\x0c\x71\x8d\xc8\xf3\x16\xc8\x0f\xea\x5b\xe4\xf9\x0b\xec\xf0\x4e\x76\x42\x80\x9f\x4c\x0b\x24\xf2\x70\x85\xb6\xa4\x34\xf8\x09\x76\xfa\xbd\x5b\x58\xc6\xf2\xec\xa6\x5b\xdc\xd9\x1f\xb2\xe4\x79\x87\x55\x35\xe6\xc3\x29\x7f\xd6\x8c\x99\xae\x50\xea\xf6\x28\xa9\xa4\x09\x16\xe0\xa3\xb4\xaf\x6d\x65\x15\xa7\x2a\x6e\xb3\x55\xb0\xcf\xc1\x63\xfb\x24\x0c\xa6\x9f\xf7\xa8\xce\x6c\x2e\xc6\x05\x02\x55\x4b\xfa\x38\x36\xdb\x17\x25\x0e\x1f\x17\x4e\xda\x85\xee\xa8\xda\xe5\x40\x79\x50\xef\xc2\x16\xb7\x07\x55\x2e\x8f\x3a\x1f\xa3\x29\x1e\x64\x39\x75\x90\xcb\xc2\x00\x0d\xf6\xf1\xcc\x09\x0c\x53\x51\xf1\x68\x0a\x85\xe6\x0c\x08\x8b\x1e\x76\x49\x09\x41\x82\x8f\x56\xaa\xd1\xbf\x61\x27\x05\x50\x48\xd8\xd7\xbd\xb9\xee\x44\xde\xec\x69\x93\x0f\xc9\xb8\x93\xc2\xe7\x0d\x38\x2b\x1e\x8d\xa1\x22\x81\x63\x38\x6b\x16\x57\x92\xbd\xfc\x30\x5e\xee\xb8\x29\xc2\x59\xf3\x50\xd6\x43\x60\x34\x07\x7f\x29\x67\xc2\xc2\x70\x9a\xc6\xd8\xfc\x83\x53\x6d\xc3\x00\xdf\xda\xb2\x33\x0c\xb2\x35\x1e\x4d\xa7\x7e\x18\x31\xda\xb6\x5e\x80\xc3\xf2\xa6\x79\x97\x45\xf3\x76\xd1\x67\x32\xf2\xd9\x1a\x81\x67\x61\x20\x4c\x62\xa7\x09\x84\xe8\x1e\xdb\xb2\xd1\x7d\x66\xf6\x68\xbe\x46\x10\xd2\xe9\x15\xc3\x31\xd7\xc1\xc3\xf9\xec\xc1\x31\x52\x1d\xe3\x5c\x7e\x60\x02\x4a\xe4\x4d\x85\xf2\x77\xe9\xdc\x8c\x11\xe4\xd9\x0f\x80\xd8\x29\x73\x29\x19\x4f\x01\x7f\xd3\x2f\x9d\x89\x7f\xa5\x8e\xc6\xbd\x61\xbb\xc6\xf8\xce\x71\x85\x18\xe2\xe4\x84\x3b\x6d\x04\x4a\x5b\xbe\x77\x0a\xe9\x23\x7b\x2c\x11\x69\xde\x8d\x7d\x15\xd7\x8a\x0e\xff\x04\x74\x39\x07\xbb\x4c\xf9\x04\x34\x61\xc6\x3b\xa1\xee\xbc\x9a\x6b\x84\x67\x7d\xd4\xa4\xaa\xfb\x00\xbf\x8b\x27\x55\x2a\x59\xb3\x5b\x24\xc1\xa7\xff\x6a\xc4\xb3\x52\x54\x96\x08\x69\x77\xdf\x8f\x39\x75\x18\x5e\x68\x16\xc9\x3c\x90\xe1\xf1\xdd\x88\xbd\xa6\x8b\x13\x20\x4b\xed\xbb\x69\xc4\x7d\xd5\x28\xab\x6a\x8e\x7c\x78\x90\xba\xed\x96\x4b\xba\xcd\x67\xcd\xce\x4e\xd9\x80\xdf\xe9\xbb\x69\xf4\x51\x0f\x8b\x85\xf7\xf5\xe6\x33\x7c\x5a\x35\xbf\x01\x37\x15\xd2\x9c\xc0\xdb\x80\x17\x02\x49\x2c\x6b\x36\x60\xa5\x21\x67\x27\x5b\x2e\xee\xd9\x42\xea\xf6\x8f\xe3\xb1\xdf\x3d\x9c\x15\x91\xc0\xe6\xfb\x51\x15\xea\x2c\xab\x69\x2e\xc7\x16\x8c\xf7\x1f\x17\x99\x8f\x87\x5a\x01\x88\xaa\xc4\x7d\x25\xae\xac\x79\xaf\x39\x35\x19\xee\x70\x60\x06\x27\x6b\xa4\x50\xa2\xdc\xa3\xcf\x9a\x0a\x51\x37\x60\x66\x76\x96\xee\x30\xc6\x29\x94\x2e\x77\xed\x6f\x9a\x5e\x17\xc1\x77\xee\x64\xa9\x1a\x97\x23\x1b\x03\x52\x89\x83\xa1\xd4\xac\x08\x12\x5c\x77\xb2\x32\x2e\x75\x20\x82\xec\x56\x86\xc4\x9d\xae\x4f\xe2\xf6\x83\x77\x71\xb1\xc6\x99\x15\x57\x46\x10\xc6\x70\x2c\xa8\x53\x8c\xc0\x88\x75\x9c\x67\x5d\xa8\xe1\xb6\x0a\x1a\x16\xfc\x46\xdb\x7c\x4c\x6a\xd7\x20\x94\xdb\xaf\x00\x6a\x8f\xe7\xed\x7c\xe5\xc7\x9d\x2e\x9d\x72\x09\xb1\x5b\x60\x81\x87\x11\xea\xb7\x77\xf2\xc3\x1d\xaa\x1b\xd0\xe8\x26\xc2\x70\x03\x2a\xe0\x00\xcc\xde\x19\x00\xc1\x9e\xc9\x52\x76\xce\xf8\x14\x8a\x7c\x07\x06\xd5\x08\x5c\xcb\x52\x55\x05\xd9\xa3\x29\x94\xfb\xf6\xbc\x3e\xfd\x7a\xaf\x9a\xc6\xe9\xb8\x50\xf7\x3b\x70\x86\xdc\xe1\xfb\xea\x68\xa8\x74\x81\x98\xc9\x9c\x79\x5f\xa8\xaa\x71\x1b\x00\xea\x42\x7b\xfc\x51\x15\x9a\x0c\x7c\xa8\x0a\xed\xc1\xde\xd0\x11\x8f\x35\xf7\x63\x3b\x27\xec\x73\x59\x8d\xc2\x74\x03\x8a\xf0\x4e\xd9\x9a\xfa\xb5\x01\x3d\x78\x00\x26\x52\xea\xb8\x04\x51\x77\x94\x4b\x02\x8b\x83\x38\x59\x07\xe1\xe6\x9b\x30\x5b\x70\x64\x09\x22\x03\x3b\xee\x1c\xeb\xd0\xec\xac\xbe\x10\xe2\x1f\xc3\x20\x4d\xef\xca\x48\x40\x5b\x19\xf0\x49\xb5\xf8\x45\xc9\x57\x56\x15\x40\x56\x0d\x4c\x8a\x8e\xba\x7c\x89\x45\x1f\x3a\x91\x74\xe0\x8c\xe3\x10\x45\xc5\x80\x5f\x5c\x57\x13\x70\x00\x0e\xf0\xe4\x74\x4c\xc0\x0d\x48\xd3\x3d\x96\x59\x26\xe0\x01\x1c\xe0\x89\xa0\x0e\x21\x89\xb4\x87\x4b\xf6\x61\x78\xc5\x62\x0c\x3a\x4c\xdc\x5a\x4e\x1b\xf0\x8a\xc5\xb7\xf7\x0c\x67\xc4\x85\x10\x9c\x1d\x09\xce\x7c\x2c\x16\x43\xd3\xe3\x4f\x2e\xee\x55\x2c\x3e\xbe\x27\xec\x55\x43\x41\xc2\xc8\x9f\x7d\x20\xf9\xe5\x23\x88\xb4\xf5\xed\x62\xbc\x5f\x25\x02\xdf\xfa\x80\x4e\x3c\x65\x51\x98\x2d\xe0\x89\x7a\x18\x81\xfb\x7d\x80\xa7\xce\x90\x28\x5c\xbe\x7d\xaf\x7f\x2b\xb1\x57\xa5\xca\x9b\xee\x64\x6e\x59\x06\x87\xcb\x57\x4d\xa9\x63\x5e\x75\x14\x46\x7f\xcb\x1c\x73\xac\x23\xf0\xe8\xef\x74\xde\xab\x8a\x5f\x6a\xb1\x2b\x28\x44\x07\xf5\xdf\x4c\xb8\xef\x76\x5d\xee\xf4\xcd\x2d\x0e\xe0\x82\x34\x66\xae\x43\x84\x63\xa7\xa7\x6a\x72\x92\xc7\x6b\x18\x0b\x07\x2a\x63\x80\x5c\x8d\x6e\xe7\xdf\x58\xe7\x1c\x81\xd5\xed\xf2\xcc\x3c\xc8\xe8\xe9\x53\x45\xfb\x48\x04\x81\xe9\x1c\x5c\x3b\x7b\xb6\x9f\x90\xc0\x87\x0b\xda\x78\xcf\xba\x33\x76\x12\x69\xc6\x85\x52\xca\x8f\x52\xd7\xcd\xe8\x66\x86\x5b\x1d\xa6\xf0\x44\x01\xf6\xe6\xdf\x38\x90\x9c\x9b\x29\x05\x77\x42\x9f\x05\xcc\xde\x84\x14\xbc\x09\x3b\x2e\x12\x4e\xa1\x04\x7f\x67\xca\x0f\xbe\xb6\x24\x03\x6f\xe1\x8e\x55\x12\x0f\x32\x8e\x77\xc6\x36\x32\x2b\x55\x7f\x2c\x8c\x66\x26\x04\x80\xa0\xa8\x29\x01\xd7\xfe\xce\xbc\x73\x0a\x2a\x9e\xef\x5d\xbb\x18\x03\x84\xa9\x5c\x3c\xc5\x87\x66\xed\x14\xb6\x2d\x4a\x3f\xab\x5e\x2a\x59\x35\xe2\xd9\x9c\x25\x69\xe3\x60\xaa\xed\xac\xaa\xfb\x8b\x69\x8c\xab\x56\x48\xe1\x1a\x80\x9d\x4b\x46\x4c\xc0\x45\xcb\xae\x93\xf1\x0e\x82\x14\xd5\xb4\x36\x73\xc9\x50\xe0\xd2\xeb\x01\x72\x2e\xa7\x70\xa5\xc0\x9f\xad\xb2\x1f\xa2\xbf\x04\x80\x75\x53\x28\xd2\xfa\xb3\x55\x75\x6f\xe3\x7f\xa9\x6a\x1e\x31\x0f\x46\x72\xac\x09\xf5\xc0\x99\xde\xb7\x4f\xa2\x11\x1e\xd4\xcf\x0c\x68\xbf\x56\x9d\x69\xe7\x81\xb3\xfd\x49\xf2\xd5\x2a\x29\xec\xa3\xbe\x5d\x5c\xb5\x4d\x63\xaa\x61\x81\xf2\x05\x40\x30\x91\x40\xfb\x59\xe5\x13\x62\x0c\x81\x8b\xa7\xbe\xd2\x6c\x54\x97\x53\x28\xaf\xea\xeb\xf8\x2f\xdc\xbf\xe3\x0c\xa9\x7a\x31\xc9\x51\xd4\xad\x3f\xc3\x0d\x47\xeb\xc4\x0f\xae\x3a\x4b\xa1\xfc\xea\x49\x15\x4a\x71\x3a\x94\x44\x80\xec\x70\x48\x5a\x7e\x52\x47\xab\x68\x1e\x7d\x70\x75\x4d\x62\x4d\x3e\x98\xee\x03\x00\xf7\xdc\x81\x05\x0d\x38\xa6\x5f\x40\x86\x24\xf1\xee\xac\x39\x4f\xca\x80\x23\x7f\x85\xf3\xa4\x0a\x67\x08\x6c\xc1\x5d\x48\x84\xe5\x9d\x78\x29\x68\x6e\x4f\x6a\x92\x78\x1f\xe1\x74\x5c\xb8\x1c\xc3\x8b\xfc\x05\xe0\x64\x8e\x07\x21\x96\x3e\xf9\x97\xaa\xec\xc1\x15\x38\x00\x63\x6a\x99\x5c\x62\x2e\xb3\x2c\x5b\x62\x31\x8d\xa7\x9a\x41\xec\xc1\x3c\xce\xdb\xdd\x7e\xf7\x93\xd9\x57\xb9\xcb\x39\xb2\x60\x01\x88\x9d\x35\x59\x49\xeb\x24\x4e\x70\x76\xeb\x46\xb6\x96\x2f\xb0\x8a\x13\x7f\x15\x14\xce\x31\x99\x42\xe6\x56\xc7\x60\xc7\xcb\x36\xd8\x2e\x91\x31\x96\xea\x41\x02\x5c\xa7\xfb\x88\x5f\xa6\x6c\xf9\xee\x4a\x48\xfa\x7a\x32\x74\x3f\x4f\x06\x61\x9d\xae\x19\xe2\x35\x11\xf8\x28\x87\x12\x53\xb1\xf5\xc4\x8d\x7a\xb1\x4a\xd5\xe2\x3a\x27\x0b\xd6\xdf\x2e\x79\x2e\x37\x20\x02\xdf\x0c\xa1\x63\x4e\xc0\x16\x94\xcb\x27\xd3\x56\x85\x2a\xc4\xb5\xb1\x7c\x87\x4f\x88\x4b\xd4\xb8\x02\xee\x2d\xc4\x9e\x9f\xcc\xbb\x53\xf8\x20\x6b\xfb\xa9\xae\xc5\x9d\x62\x55\x16\x17\xde\x9b\xf8\x66\x0c\xdf\xac\x15\x43\xa1\xc5\x5e\x36\xaa\x2c\xb9\x02\xc5\x87\x99\xdb\x4b\x8e\x1b\xc3\xa4\x74\x66\x50\xe5\x04\x49\x0c\xc8\x49\x15\x2d\x5f\x0d\x08\x06\xfa\x3e\x3f\xf1\x09\xea\x43\x7d\xd8\x7e\x48\x60\xec\x23\x13\x18\xe9\xf7\x21\x65\x73\xca\x83\x13\xd5\x87\xca\xe6\x29\x0d\xae\x53\xf5\xa1\xca\x99\x68\xc0\xf0\xa0\x26\x80\x18\x7d\x32\x37\x99\x07\xd3\x35\xbb\x2f\xc6\x22\x6e\x1f\xaa\xa4\xf7\x45\x1f\x72\x74\xd1\x7f\x88\x1c\x0d\xf1\x1c\x1a\x54\x09\x40\xde\xba\x78\x84\x8f\x53\x44\x9a\xb0\xdb\xb4\xd0\x0f\xc5\x75\x45\xa0\x83\xee\x3b\x3b\xb8\xbf\x77\xee\x46\xd7\xb5\x6c\x74\x7d\xd4\x7c\x40\xf9\xc1\x2a\xf1\xbb\x6a\x1b\x4b\xaa\x76\xea\x87\xab\x9c\xfd\xec\x4d\xd1\x2a\xeb\x57\x77\x98\xaf\xfc\x6e\xfc\x39\x7b\xf6\x62\xc8\x9b\x64\x45\x87\xa0\xed\x0a\x24\xbe\x5c\x86\x62\x7e\xe7\xed\x4b\x33\xb9\xc6\x1b\x6e\x98\x13\x53\x89\x93\x82\x67\x73\x64\xc2\xcd\x6b\x29\x14\xdd\x8f\x24\x77\x9b\x12\xb1\xf2\x35\x96\xf3\xef\xa6\xb8\xf2\x19\xbf\x6d\x4e\xca\x56\x7c\xef\x2d\xae\x7a\xe6\xf4\xba\xa0\xf8\x52\x35\xaa\xaa\xc8\x83\x81\xeb\x1e\x89\xd7\xe6\x7c\x31\x95\xbb\x21\x11\xd7\xfe\x0a\xb5\x76\x35\x68\xb8\x96\x91\xfa\xad\x38\x6b\x62\x85\x9f\xb3\xf6\x6f\x63\xa5\x59\x1e\xad\xf1\x3a\x3d\xa4\xce\x49\x2b\x4d\xf3\x78\x8d\x33\x3a\x20\xd2\x3c\x59\x25\x38\xdd\x39\x85\xc0\xab\x23\x74\xc7\x3c\xcb\xb5\xf5\xfe\xee\x3f\xea\x46\x9d\xc5\x8d\xfc\x28\xac\x92\x74\x73\x69\xbe\xb6\xf6\x26\xe9\x4e\x29\x38\x15\x47\xf9\x90\x42\x3c\x6d\xcf\x31\xeb\x14\x0a\x24\xbb\x66\x17\xc4\x4c\xa1\x40\xd2\xa9\x23\x57\xb2\x7e\xe5\xc5\x00\xfe\xf3\xa5\xc2\x12\xa0\xbc\x3e\x75\xc7\xb4\xab\x7d\x48\xd4\x0c\x7c\x9f\x58\x9b\x1e\x24\x77\xec\x4f\xed\xf1\xc8\x8a\x19\x0e\x80\x7e\xa9\x64\xd9\x2f\xe1\xb6\x94\x56\x44\x2e\xb9\xc4\x07\x7f\xd1\x9c\xe7\x2e\x30\x12\xdf\xcd\xe0\xdb\xaf\x54\x03\x4f\xab\xbf\x79\x7a\x12\x29\xf0\xa1\x7e\x73\x41\x74\x17\x39\x42\xda\xfc\x9c\xc6\x86\x99\x5f\xac\x7c\x5b\x6f\xba\x4d\x7a\x06\x45\x73\x0b\xce\xe8\xb1\xf1\xa1\x84\x6e\x4a\x74\xc9\x8a\x10\x17\xdd\xeb\xf3\x78\x66\x24\xe0\x55\x63\x68\x72\xc1\xa5\x07\x49\x33\xfb\x57\x7d\x99\x98\x28\x60\x8f\xf5\xd8\xce\xaa\x37\x6d\xa8\xea\x2e\x02\x97\xdc\xbe\xd4\x85\xaa\x4f\x6c\xf1\x43\x9c\x70\x5f\x9a\x77\xf1\x68\x7a\xdb\x6a\xf4\x10\x86\x10\x2b\xec\xab\x30\x47\x27\x5b\x06\x69\x30\xfb\xb3\x79\x55\xe3\xa5\x20\x19\xe4\xbe\x74\x60\xb7\x5e\x3b\x95\x8b\x2e\x00\x00\x07\xde\xde\xb5\x26\xd8\x2a\xee\xa4\x76\xde\x07\xc8\xff\xd9\x57\xc6\xfc\x66\x65\x05\x46\x88\x75\x57\x0f\x82\xcb\x5d\xb3\xb8\xea\x54\xde\xcb\x49\x52\x17\xe1\xe3\x2e\x92\x2c\xd5\x04\x5b\x73\xe5\x56\x44\x08\xb7\x2f\x4e\x3d\x9a\x21\x64\xce\x11\x22\xc6\xb4\xfc\x34\x5f\x79\xb2\x0f\x7e\x72\x45\x86\xfc\x0c\x9f\x38\xfe\x82\x15\xce\x54\x3c\xce\xfa\x50\x96\xf9\xe4\x6e\x2d\x98\xed\x86\x1d\xf1\x10\x56\xea\x9a\xa7\x55\xc6\x29\xf8\x7b\x7a\xf4\x9b\x2c\xc9\x1f\x86\xfb\xac\x91\x9c\xbb\x0b\xc1\xee\x7d\x23\x3f\xc4\x75\x6b\xed\x70\xcb\xee\x54\xab\xf3\x20\xf0\x0d\x44\x50\xeb\x3c\x30\x39\x7b\xde\xce\xea\xb3\xb4\x1f\x8b\x17\x26\x9f\x11\xf1\x85\x90\x23\xb6\xe7\xdc\x50\x4f\x85\xb3\x66\xb1\x50\xfd\x7c\x70\xef\x82\x76\x07\xf6\xc8\x24\xd5\x2c\x09\xe7\xed\x7d\x8e\x97\x18\xee\xd1\xe0\xbc\x8d\x08\x3c\xe2\xfb\xae\xb3\x2f\xa7\x86\x8b\x7d\xa0\x8e\x7b\xdf\x58\xa5\x1a\xe7\x1f\x08\x62\xfc\x9a\x49\xbd\x95\xd8\xd3\xbb\x61\xed\xb9\x74\xca\x18\xe5\x5b\x9b\x15\xdc\xa5\x79\xba\x73\x8c\x02\x6e\xc9\x1c\xcd\x9b\x14\x17\x69\x9b\x8d\xb7\x41\xe0\x2e\x6d\x33\x77\x85\x0d\x2d\x1c\x70\xb3\xed\xdb\xac\xd1\x4d\xc9\xd9\x6e\x10\x04\x9e\x5c\x60\x92\xe2\x6a\x6b\x2f\x9d\x39\x57\x1b\x2b\xe8\x2f\x01\xd0\x9b\xf1\x43\xad\xed\xac\x2e\xb1\xef\xfe\x4b\x2b\x07\xc6\xf0\x5d\x5e\xc4\xb5\x2c\xe9\x06\x9c\x14\xd7\x69\x07\x8e\xd9\x1b\x29\x2e\xce\x0e\x74\xd9\x1b\x29\xae\x47\xc6\x74\x9f\x3e\x39\xfa\x3f\x22\xf0\xd6\xed\xdf\x75\x93\x9f\xc0\xaf\x0e\x6e\x1c\xc2\x47\x11\x9d\x40\xb8\x60\xff\x51\x51\x40\x1e\xac\xc8\xae\x19\x73\xd4\x12\xb4\xe4\x3a\x7c\x6a\xd6\x27\x28\x8f\x06\xf5\xe8\xe7\xa5\x70\xf7\x64\xe3\x88\x4d\xf1\xf1\xca\x47\x38\x63\x39\x8b\x3c\x85\x55\x77\x90\x99\xf8\x59\xd5\xbd\x61\xe3\xc2\x2b\x47\x24\xf0\x1f\x82\x08\x21\xbf\x78\x00\x20\x00\x15\x42\x56\x03\x11\x38\x73\x3b\x0a\xf0\xe9\x17\x71\x27\xb9\x0c\x24\x81\xe3\xf9\x20\x2f\x7d\x79\xfb\x98\xb3\x08\x2b\xf7\xa0\xac\xab\xeb\x0a\xc0\x3e\xeb\x14\x2e\x71\xa7\x55\x59\x70\x1a\x45\xbc\x40\xfb\xc0\x25\x2d\xba\x74\x86\xd6\x74\x0a\x46\x60\xe8\x77\x88\x2b\x9b\x83\x8d\x78\x38\x29\xd9\x70\xaa\x78\x0a\xa2\xe9\x70\x6a\xcf\xd9\x58\xd5\x90\x42\xd0\x69\x00\xa9\xfe\x20\x85\x70\x52\x0f\xd5\xe2\xe7\xe4\x4a\xf9\x04\x74\x80\x83\x3e\xf7\xf9\x44\x0f\x8a\x7d\x02\x11\xe4\xa2\x75\x78\x29\x2f\x35\x3b\x71\x16\x18\xbb\xf3\x22\x50\x00\xc6\x4b\xc2\x23\xb0\xae\xfb\x76\x76\x88\x45\xa0\x2a\x0d\x50\x48\x48\xb2\x40\xdc\xc5\x81\x38\x7b\xda\xfd\xc5\x02\x08\x93\x1d\x0c\x45\xb0\xc1\x35\x7e\x30\x05\x0b\x1a\xa8\x47\x3a\x70\xd4\x20\x82\xdd\x77\x30\x95\x9c\xfc\x7d\x14\xf8\x10\xd3\xe6\x27\x57\xe4\x18\x42\xb0\xeb\x60\x3e\x68\x0e\x41\x51\xef\x6f\xcc\x17\xc3\xd5\x9c\x2c\x06\x63\xc4\x8f\x47\xf2\x66\xc7\x70\xb9\xdc\xc1\x2d\xd0\x78\x33\x7b\x23\x79\xed\xe0\x9a\xb2\xbe\xfc\xf3\xa8\x6c\x9f\xd6\xa1\x2b\xf1\x05\x52\xaa\x23\x90\x24\x03\xd7\xf0\x5f\x77\x50\x8b\xf7\xb8\x32\xd2\x14\xce\xd3\x83\x55\xc3\x8d\xce\xe3\x9a\x84\x3b\x08\x1c\xee\xfe\x36\x48\xaa\xe2\x35\x9c\x96\x6d\x04\xf2\xeb\xd0\xb2\x0e\x04\x77\x14\xe0\x55\xfb\x29\xdc\x51\xe0\xb0\x4e\xcb\xa2\x49\x81\x0e\xbf\xd1\x1e\x9e\xfe\xce\xcf\x4a\x4e\xfe\x98\x83\x0f\x21\x84\x9f\x95\xf3\x91\x63\xf3\xd1\x94\xd3\xab\x77\x40\x72\x12\xfa\x38\x7a\x3d\xa7\x7d\x98\x08\x5c\x1f\xd6\xdf\xcf\x9a\x84\x29\xdc\x81\xf0\x4b\x59\x7d\xd4\xaa\x10\x3f\x39\xb1\x27\x88\x67\xf8\x70\xfa\x0c\x65\xfc\xd3\x8b\xcb\xc1\x0d\x3d\xe3\x4d\xef\x17\x00\x97\xf4\x8c\xc7\x97\x7d\x27\xa0\x25\xff\xd2\x99\x9d\xb8\xd6\x60\x9d\xf6\xa7\x98\x18\x2f\x54\x86\xc5\x3a\x80\x63\xad\x90\x07\xe6\x06\xa1\x93\x00\xb2\x07\x16\x47\x8f\xe7\xb4\xdc\x3d\xd0\xf4\x19\x1a\xad\x33\xd0\x8d\x7b\xf8\x45\x9e\x95\xf8\x52\x73\x09\x6a\x0a\x25\xbf\xbf\xb4\x7a\x17\x5f\x5e\x54\x55\x90\x03\x46\xc9\x05\x6a\xad\x13\x1c\xd9\x1c\xbc\x96\xd6\xb4\x35\x97\x40\xa9\x7c\x81\x9b\xb2\x3d\xf3\xe6\x5b\xbc\xfa\xda\x9c\xe9\x1a\x87\x28\x58\xbe\xda\x9c\x2f\x32\xe7\x4e\x17\x73\xf8\xc6\x75\x4a\xcd\xa1\x6f\x4a\x16\x63\xa6\x0f\x54\x17\xf7\xb8\x2b\x7d\x49\x8f\xde\x1c\x7b\x34\xa3\xb3\xf7\xe8\xcf\xd1\x3f\x5b\xed\x2e\x81\x0e\xe6\x60\xa7\xcd\xb2\xc3\x05\x12\x6b\x7b\xd4\x65\x1d\x46\x90\x1b\xf5\x4b\xbf\x54\x2e\x6b\x2c\x85\x74\xbf\x5f\x1a\xfe\x48\x55\x7a\x8c\x57\xc1\x31\x2f\x19\x0c\xb7\x21\x3a\x36\x5e\x76\x0c\xba\x4a\x0f\xba\x4b\xcc\x3c\xa8\xcf\x18\x62\x0f\xa3\x70\xf3\x22\xb5\x44\x1f\x5b\xce\x75\x85\xf2\x0c\x42\x9d\x99\x07\xb5\x19\x04\x92\xd4\xf3\xe0\xfc\xff\x75\xa9\xc4\xff\xd2\x1f\xf3\x48\x40\x6b\xea\x90\xd1\x3d\x01\xce\xc8\x67\x59\x96\x17\x79\x71\x17\xa9\x05\x80\x59\x57\xab\x13\x42\xea\xc4\xb3\x6c\xc8\x5b\xbd\x0d\x16\xed\xfd\x9f\x4f\xe1\xd3\x1b\x7e\x2b\x1b\x6f\x8f\x89\x40\x2a\x3c\x67\xa2\xbf\xa4\x97\x17\xb2\x42\xec\xbe\xca\x65\x55\xa8\x3a\x67\xc7\x65\x04\xc1\xd4\x8e\x61\x35\xe2\x1e\xe2\xfb\xb6\xaa\x68\x64\x20\x0c\xfc\x4c\xd1\x5f\xa8\x6f\x79\x56\x19\x99\x28\x5b\x6c\x9d\x88\x00\x1f\x2e\xcc\xee\x16\xa6\x73\xb8\x43\xda\xe0\xf3\x49\x36\xf5\x89\x8e\x14\x1f\xbc\xc5\xcf\xba\x78\xe1\x24\xab\x04\x82\xcb\x2e\x97\xcc\x07\x0d\xa0\xf7\x21\x8d\xf3\x08\x87\x6d\x8f\x1d\x54\x73\x52\x63\x59\x3b\x24\x63\xba\x7c\x8b\x00\x62\x85\xcf\x56\x5e\x46\xd7\x60\x0a\x89\x8a\xff\xcf\xb4\x4d\x9b\x29\x2a\x36\x51\x45\xa7\xae\x12\x6d\xba\xba\xfe\x61\xcc\x99\x0f\xd5\x2d\x24\x5a\xf4\x08\xff\x55\xa5\x18\x46\x8c\x21\xd1\x57\x41\xfc\xe7\x3f\xff\x3f\x00\x00\xff\xff\x5f\xa1\x95\xdb\x00\x6f\x00\x00") func vendor_material_icons_materialicons_regular_ijmap() ([]byte, error) { return bindata_read( _vendor_material_icons_materialicons_regular_ijmap, "vendor/material-icons/MaterialIcons-Regular.ijmap", ) } var _vendor_material_icons_materialicons_regular_svg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x79\xaf\x23\xc9\x96\x1f\xf6\x3f\x3f\x45\xb8\x04\x08\x36\xec\xc8\x8e\x7d\x99\xf7\xfa\x09\xd6\x3c\xbd\x81\x00\x97\x2d\x8c\x46\x32\xfc\x17\xc1\xca\xcb\x2a\x52\x9d\x45\xd6\x30\x79\x59\xdd\xf7\xd3\x1b\xe7\x77\x22\x37\x32\xb9\xdc\xba\xdd\xf5\xba\x85\x41\xf7\xad\x64\x46\x6e\x11\x27\xb6\xb3\xfe\xce\x9f\xff\xc3\xcf\x9f\x1b\x71\x5a\x1f\xda\xed\x7e\xf7\xe3\x3b\x5d\xa9\x77\xa2\x3d\xae\x76\x4f\xab\x66\xbf\x5b\xff\xf8\x6e\xb7\x7f\xf7\x1f\xfe\xb2\xf8\xf3\xff\xf2\xd7\xff\xe7\x1f\xff\xe5\xff\xfb\x2f\xff\x49\xb4\xa7\x4f\xe2\xbf\xfc\xb7\xff\xf8\x7f\xfd\xe7\x7f\x14\xef\xe4\x0f\x3f\xfc\xbf\xf6\x1f\x7f\xf8\xe1\xaf\xff\xf2\x57\xf1\x5f\xff\xfb\x3f\x09\x5d\xe9\x1f\x7e\xf8\x4f\xff\xf7\x3b\xf1\x6e\x73\x3c\x7e\xf9\x87\x1f\x7e\xf8\xfa\xf5\x6b\xf5\xd5\x56\xfb\xc3\xa7\x1f\xfe\xe9\xb0\xfa\xb2\xd9\xd6\xed\x0f\xff\xf5\xbf\xff\xd3\x0f\x74\xe3\x5f\xff\xe5\xaf\x3f\xb4\xa7\x4f\x5a\x57\x4f\xc7\xa7\x77\x82\xbe\x21\xe5\xc2\x28\x1d\xa4\x91\xe9\x1f\xc4\x3f\x1e\xd6\xab\xe3\xfa\x49\x7c\xdd\x1e\x37\xe2\x6f\xfb\xdd\xf1\x6f\xfb\xc3\xa7\xb5\xf8\x5f\xcb\xab\x3f\xee\x77\xc7\x8f\x54\x42\x6f\xff\xdf\x16\x52\xfe\x65\xf1\x67\xaa\xdb\xcf\x9f\x9b\x5d\xfb\xe3\x4c\x05\x8c\x52\x8a\x3e\xf8\x8e\x6f\xf9\x87\x9f\x9b\xed\xee\xa7\xb9\x1b\x75\xce\xf9\x07\x5c\x7d\x37\xa6\x8b\x7e\xf7\x97\xc5\x9f\x3f\xaf\x8f\xab\xa7\xd5\x71\xf5\x97\x45\x57\xbd\x0f\xbf\x8c\x2a\x67\x94\xf6\x5a\xeb\x24\x56\x47\xf1\x7e\xbf\x13\x7f\x5b\x7f\x10\x22\x09\xad\xff\xc1\xa7\x7f\x50\x86\xae\x87\x85\xf8\x8f\xbf\x88\x76\xf3\xcb\xee\xe9\xf3\x6a\xb7\xf8\xc7\xfd\x97\x5f\x0e\xdb\x4f\x9b\x23\x9e\x15\xff\xb4\xdf\x7f\x6a\xd6\xff\x87\xf8\xcf\xbb\xba\x12\xff\x67\xd3\x88\x7f\xa6\x6b\xad\xf8\xe7\x75\xbb\x3e\x9c\xd6\x4f\xd5\xe2\xcf\x3f\x0c\x75\xf8\xf3\xd3\xfa\x63\xfb\x97\xc5\x9f\x89\x16\x62\xfb\xf4\xe3\xbb\xf7\xab\xe3\xfa\xb0\x5d\x35\xff\xb9\xde\xef\x5a\xf9\xcf\xeb\x4f\xcf\xcd\xea\xf0\x4e\x6c\xf6\x87\xed\x8b\x5c\x3d\x9d\xe4\xcf\x3f\xbe\xf3\xda\x10\xb5\x85\xc0\x63\xf2\xe3\xaa\x5e\x8b\x85\x10\x42\x94\xd3\xcf\xdb\xe6\x97\xe1\x4d\x02\xaf\x7a\x37\xdc\xf0\x75\x4d\x35\xfa\xf1\x9d\x53\x6a\x54\xda\x1e\x0f\xeb\x63\xbd\xa1\xe1\x72\xf8\xbc\x6a\xf8\xca\xf3\x6e\x7b\x6c\xe5\x97\xf5\x41\xae\x3f\xf3\x77\x51\xfc\x65\xb5\xdb\xb7\x6b\xa9\x7f\x7c\x67\x84\x12\x5e\x58\xa1\x86\xff\xf8\x96\x55\x5b\xaf\x77\xc7\xd1\x33\x4f\xeb\x52\x52\x6e\xf8\xf0\x61\xff\xf3\x8f\xef\xe8\x09\xaf\x8d\xe8\x6f\x7b\xde\x3d\xad\x0f\xcd\x76\xb7\x96\xc7\xcd\xb6\xfe\x69\xb7\x6e\xdb\x1f\xdf\x79\x75\x7e\xf1\xcb\xbe\xdd\x1e\xd1\xad\x52\xab\xfe\xea\xb6\xde\x3f\xad\xe5\x61\xb5\xfb\xb4\xfe\xf1\xdd\x7f\xfb\xdf\x95\xb2\x4a\x6a\xf5\xb7\xbf\xfd\xed\xaf\x74\xc7\x0f\x7f\xc1\x6d\x7f\xfe\xbc\x6d\xdb\xed\xee\x93\xfc\xd4\xfc\xf2\x65\xd3\x97\xf2\x19\xfe\x95\xbb\xd5\xe7\xf5\x8f\xef\xec\xd3\xf2\xb0\x3f\xae\xe8\x33\xef\xba\x97\xff\xf8\xee\xdf\xff\xbb\x9f\xad\xfd\xd3\xf8\xd2\x82\xba\xcd\xf8\x40\x8d\xa8\xb5\x75\x42\x09\xe3\x9c\x90\x5a\x59\x61\xbc\x17\xd2\x58\xb7\x91\xd6\xd4\x32\x8a\xa4\x84\xf4\x51\x68\x17\x85\xd4\x26\x0a\x9d\x54\x23\x4d\x16\xd2\xa4\x46\x26\x2d\x92\x7e\x79\x6f\xbd\x15\x26\xa8\x5a\x09\xeb\xaa\x6c\x7d\x10\x52\xdb\x2a\x84\xac\x85\x8f\x42\xba\x28\x7c\xdc\x48\xa3\x4e\x52\x1b\xbb\xd1\xb9\x36\xbe\x0a\x0e\xdf\x75\xaa\x32\x51\x67\xa1\x6d\x95\xbd\x4e\xc2\x05\x61\x5d\x6d\x44\x14\x46\x68\x2f\x8c\x30\xee\x94\x5e\xde\x5b\x45\xe5\xba\xb6\xa9\xd2\x49\x67\xa1\x44\x50\x55\xb6\x86\x2a\x95\x2b\x6b\x75\x12\xd1\xd0\x97\x6a\x34\x43\x50\x1b\x0c\xfd\x6b\xdd\x49\xa6\x45\xad\x84\x34\xa1\x72\x8a\xaa\x13\x2b\x1f\xb5\x72\x42\x3a\x4f\xbf\x84\x34\x5a\x48\x9f\x6b\xaa\xb3\xd3\xc6\x88\xe1\x87\x55\x95\xf7\x3a\xe3\x65\x44\x05\x69\xcc\x46\xba\x7c\xd2\x51\x6d\xbc\x7a\x79\x6f\x54\x14\xc6\xa7\x5a\xfb\xca\x2a\x6b\x85\x0c\x95\x36\xda\x6a\x61\x92\x90\x3a\x55\xc6\x05\x8f\xdf\x36\x53\x15\x92\x90\xf4\x76\x27\x24\xd5\x4f\xb5\x92\x08\x45\x25\x5a\x48\x1d\x6a\x99\x2b\x1b\x93\xf6\xa8\xa2\x32\xde\x50\x47\x54\xde\xc5\xcc\xb7\x39\x45\xc7\x5a\x5a\x5d\xa9\xec\x89\x08\xd2\x3b\xa1\x7d\x15\x9d\xd3\xf8\xed\xe2\xc6\x44\xb4\x56\xfb\xca\x11\x3d\xb5\xae\x82\xa2\xda\x1b\x2f\x88\x5a\xc6\xd7\x3a\x56\x29\x64\x7a\xdc\x24\x91\x2a\x6f\xb3\xcd\xf4\xd3\xc4\x5a\x09\x9d\xaa\x44\x3d\x23\xb5\xa9\x6c\xf6\x1a\x0f\x51\x83\xe2\x46\xea\x70\x32\x66\xa3\x03\xbd\xc1\x2a\x8b\x37\x64\x91\x2a\x65\x55\x08\xf4\xd3\x78\x7a\x43\xa8\xbc\x71\x41\x48\x7a\x93\xd2\x44\x20\x22\x3e\x5d\x94\xda\x55\x8e\xea\xaa\x50\x1f\x99\x2a\x9f\x88\x5a\x38\x31\x76\x23\x4d\xa2\x17\xb8\x2a\x65\x1b\x44\x24\xda\x07\x2b\x8c\xc3\x0f\x1a\x0e\xd6\xd4\xb9\xca\x26\xaa\x2c\x62\x95\x9d\x0e\x51\x18\x55\xa5\x9c\xa2\xd0\x56\xd8\x24\xb4\x5d\xf0\xe0\x8a\x9e\x07\x97\x4d\x3e\x0b\x99\xab\x18\x69\x70\x51\x4f\xc6\x9a\xfa\x49\xa0\x89\xf4\xaf\x51\xa0\x17\x0d\xac\x98\xb8\xdd\x34\x9e\xa5\xc9\x55\x08\x31\x72\xe5\x6c\x78\x79\xaf\x83\x12\xde\x35\xd4\xce\xd4\x24\x2d\x64\xd2\x0d\x3a\x53\xd3\xd0\x71\x68\x94\x73\x02\x43\x8b\x66\x91\xb1\x7e\x63\x4d\x9d\x84\x4c\x0a\xf3\x40\xbb\x24\x34\x86\x6c\xd2\x2f\xef\x6e\xcc\xe3\x55\xbd\xa4\x75\x6c\x34\x87\xfb\x12\x4c\x5d\x17\xb2\x30\x31\x9e\xa4\x33\x1b\x99\x72\x13\xb2\x90\x21\x37\xd2\x2a\xea\xab\x46\xe6\x2c\xb4\x52\x1b\xe9\xec\x49\x3a\xdb\x68\xa5\x84\xcc\x74\x5d\xd3\x90\x6e\x64\xc8\x22\xe4\x93\x4c\x79\x23\x9d\x39\xa5\x8c\x12\x7e\x83\x16\x56\xe1\x81\x9c\x4f\xce\xd2\x2b\xf0\x3a\x5a\xb3\xf0\x7e\xab\x1b\x3c\x4d\xdf\x3d\x39\xb3\x29\x0f\x87\xdc\xf0\xc5\x72\xef\xc6\xd9\x13\x3d\xca\x6f\x6a\xf8\xb5\xfc\x91\x53\xca\x1b\x67\x4e\xa5\xde\x01\x17\x51\xab\x52\x4d\xaa\xf2\xc6\xd9\x86\x1b\xd1\x74\x6d\xe2\x87\x17\x9b\x94\xef\x90\xae\x5e\xb7\xed\x72\xd5\xac\x0e\x9f\x27\xf4\x1b\x17\xf7\xeb\x5f\xf2\x75\xa2\xad\x40\xbb\x2c\x42\xc4\x41\x7b\x9a\x97\x01\xbf\x25\x0a\x5c\x6e\xf1\x83\x4a\x65\x57\xdc\xe2\xc4\xab\x72\x1f\x16\x03\x1f\x84\x33\xb1\xd6\x2a\xd0\x2b\xb3\x11\x32\x05\x3e\xea\x6c\x5a\x3a\x91\xdd\x59\x29\xa2\x5f\x5d\x31\x15\x94\xfb\xcb\xdf\xcb\x7b\x13\x22\x2d\x7b\x27\xa9\xb5\x69\x92\x17\xd2\x13\x9d\x02\xcd\x27\xa2\x97\x16\x41\x9d\xb4\x49\x1b\x6b\x68\x78\x26\xe1\x9c\x6a\x64\xa6\x11\x67\x1a\x69\xa2\xb0\xa6\xc9\x49\x24\xf3\x82\x21\x63\xb3\x5a\xa0\x58\x5a\x8b\xdb\x92\x6d\x70\xd3\xc3\x14\x6d\xaf\x90\xb4\xfd\xed\x69\x1a\x7b\x9a\xfa\x31\x4d\xfd\x3c\x4d\xfd\x88\xa6\xfe\x2a\x4d\x2d\xd3\x94\xa6\x71\xec\x68\xaa\x44\x30\x23\x9a\x66\xe1\x6c\xe6\x29\x40\xd3\x7d\xa0\xa9\xbe\xa0\xa9\xc1\x6d\xc9\x35\x26\x3d\x48\xd3\xe3\xf6\xf3\xfa\x92\xa2\x5c\xca\xf4\xa4\xba\x06\xcb\xfd\x9f\x03\xed\x41\xa5\xff\xe9\xa8\x8d\x08\xa9\xaf\x6b\xa1\x7d\xa6\x85\x48\x47\x2d\x62\xc4\x41\x47\xdd\xca\xf2\x5b\xf6\x05\x38\xa3\xc5\xad\x2b\x6e\xbb\x93\xae\xa0\xd0\x3e\xe4\x9a\x78\x4b\x25\x8c\xb6\x42\x66\xcf\x47\xa3\x6d\x4b\x27\xb2\x3b\x2b\x45\xf4\xab\x2b\xa6\x82\x72\x7f\xf9\x7b\x80\x24\xdb\x0f\xdb\x66\x7b\xfc\xe5\x82\x28\x7d\x39\xaf\x7f\x8e\x28\xac\x36\x52\x9b\x74\x92\x26\x46\x2c\x75\x44\x08\x5a\xcf\x24\xff\xb0\x27\x5c\xa0\x5b\x9c\xdd\xd8\xe4\x68\x61\x19\x5a\x65\x68\x8c\x3a\x4b\xe3\x04\x07\x67\x5a\x69\x94\x90\xf8\x8d\xbf\x96\x8e\xa5\xc8\xd9\xd6\x28\xe1\x0c\xdd\xea\x1e\xe9\xdb\xed\x87\xe6\xb2\x6b\xb9\x90\x7b\x36\x3a\x41\xf5\x74\xae\x26\x7e\x45\xd2\x88\xa7\x5d\x07\x23\x57\xd1\xde\xe8\x6b\xc9\x7b\x3c\xad\x27\xe0\xbe\x54\x10\x5a\x85\x5a\x09\x6f\x84\x0d\x44\x68\x1a\xdb\xca\x9f\x24\xbd\x85\xb6\xa9\xcc\x75\xb7\xa5\x0d\x41\xd3\xd6\x66\x3d\xed\xcd\x32\x38\x11\x1c\x1d\x6a\x43\xfd\xe9\x8d\xd0\x49\x04\x2d\x40\x14\xda\x3d\x35\x6d\xbe\x26\x57\x39\x65\x2d\xac\xad\xac\x8f\x49\xf8\x50\x79\x95\x13\x3d\x6a\xf3\x86\x66\x4d\x4d\xfd\x2b\xa8\xba\x02\x43\xa2\x01\x7f\xa3\x6b\xe2\xa2\x8c\x15\xd4\x08\x9b\xb1\xaa\x59\x5a\xcb\xcd\xa2\x96\x96\x26\xaf\x8c\x89\xbe\xc8\xcd\xd1\x27\x19\xed\x86\xea\x82\x6e\x20\xfe\x84\x0f\x0e\x83\x3d\xa2\x23\xb5\x0a\x1b\xa9\x55\xac\x25\xee\x9a\x74\xc7\x49\x9b\xc0\xf5\x76\xe0\x5b\x8c\x13\xd4\x91\xa5\x83\x5a\x74\x6c\xea\x3b\x56\xe7\x8b\x8e\x2d\x45\xee\xee\xa8\xdc\x3f\xef\x8e\xcb\x0f\xab\x66\xb5\xab\xcf\x7a\x74\x7a\x85\xbb\xd5\x79\xe1\xb2\x6e\x8c\xa2\x0a\xa8\x88\xcd\x4c\x3a\xe5\x4f\x44\x66\xeb\xb4\x30\x39\x6f\x82\x3b\xd1\xf2\xb6\x91\xc1\x9d\xb0\xcc\x71\x93\x82\xdb\xd0\x9d\x32\x38\x3c\xc2\xcd\x9b\xbd\x3f\xf9\xd9\xf2\x57\xb4\x64\xf9\x75\xd5\x34\xeb\xe3\xf5\x06\xf5\x37\xa0\x5d\xa8\xb9\x71\x35\x96\x02\x6b\x84\x76\xf4\xaf\x25\xd2\xe2\x97\x2c\x67\xb6\xf0\xb7\x5c\xd4\x96\x9f\x7c\xc6\x73\x4f\x47\x0d\xf6\xd9\x68\xea\xe9\xa8\x36\xb4\x58\xbc\x60\x4a\xf3\x6c\xc6\x98\x35\x56\x9c\xcd\xc6\x8d\x34\x39\xd5\xd2\xb8\x8b\x91\x40\xe5\x4a\x18\x74\x29\x4a\x84\xb3\x1b\x2a\xec\xa7\xb8\xe1\x03\x8d\x2d\xa3\x37\xb4\x33\x8c\x5e\x34\xfa\x0e\x2a\xb4\x28\xdf\xef\x07\x08\xbe\x4e\x5b\xc7\x43\xe4\xdd\xff\x3c\x47\x53\x2a\x05\x21\xb5\x49\xb4\xbd\xa1\x22\xc6\x87\x13\x9a\xeb\x78\xe2\x63\xfb\x33\x49\x84\xd0\xe2\x08\x2a\xe0\x47\x08\x2f\xef\xad\x21\xca\x43\xc8\xa2\x19\x98\xcb\x6c\x16\xc1\xb5\x74\x90\x65\x8e\xcb\xe0\xda\xc9\x74\x6f\x83\x13\x7c\x77\x70\x2f\xef\x83\x13\x4e\xf9\x57\xd0\x0b\xc4\x7d\x6d\x7f\x3c\x44\xaa\x7a\x7b\xa8\xcf\x17\xc9\xc9\x85\x9e\xa5\xd0\xca\xd4\x1e\x3c\x85\x82\xd0\x02\x22\x91\xc0\x86\x25\x23\x85\x11\xe5\x6a\xaa\x84\x62\x51\x95\x2a\xd7\xd1\x8f\x16\x3d\xe9\xb4\x88\x9e\xd8\x48\xc1\xa5\xb9\x6c\x07\xca\xd7\xb4\x4a\x2a\xf1\x30\x21\xdb\x49\x07\xfc\x16\x7b\xe5\xe2\x26\x09\x9f\x3e\x8c\xe9\x46\x67\x3c\x4d\xcb\x18\xd1\x06\xb5\x10\x99\xfe\x31\xba\x95\x59\x40\x06\xa4\x49\xdc\x42\xde\xa5\x3d\x07\x2b\xb6\x69\x33\x5f\x80\x20\xfc\xf2\x9e\xf8\xa4\x37\xbe\xc2\x3a\x27\x9c\xce\xb5\xa5\x2e\x88\xb4\xc7\xc8\xa8\x71\xd0\x46\x9d\x20\x43\x9b\x9c\x4e\xc6\xd0\xd0\xcf\xb4\x74\x67\x4b\x97\xb5\x51\x8d\xa4\x05\xd4\x37\x24\xb9\xc6\x86\x36\x45\x97\x6b\x43\x1d\x4f\x5d\xad\xd1\xd3\x3a\xb4\x24\x5e\x96\x5e\x0f\x74\x97\xcb\x8b\x06\x7b\x4b\x7c\x79\x4f\xac\x22\x2d\x32\xc9\xd3\xa0\x3e\xd1\x46\x4a\xa2\xb7\x2d\xbc\xa6\x57\x1d\xc3\x49\x4c\x69\x61\x52\x65\xe1\x52\x6f\x8f\xdb\xa7\xa7\x09\xd1\x9f\x3a\x6e\x44\xb1\xac\xc7\xdc\x48\xc7\x85\xe0\x08\xe6\xc3\x6c\xe8\x80\xcd\xbe\x30\x27\xb8\xf1\x1e\x1b\xf1\xf4\xb4\x5c\x2d\xbf\x6c\xf6\xc7\xfd\xf4\xab\x43\x29\xcf\x0f\x45\x3d\x64\x69\x59\x48\xc2\x2a\x41\x32\x15\xcd\x8e\x96\x04\x26\xab\x05\xcb\x4d\x2d\x64\xbf\x80\x41\x4f\xc7\x96\x7e\x93\x68\x45\xf7\xa6\x97\xf7\x86\x38\x44\x15\x6b\x70\x1c\x44\x41\x87\x73\xe2\x37\x5a\x49\x4b\xb3\x02\x03\x82\xc2\x16\x5b\x38\x95\xf2\x0f\x2a\x1a\xf1\x27\xf8\xf1\x82\x85\xce\xe4\x4c\x9b\x5a\x70\xf4\xaf\x76\xb9\xb1\x58\x53\x37\xe1\xca\x5a\xe3\xc3\x64\xad\x31\x65\xad\x31\x1b\x69\x9d\x5e\x8c\xd8\x80\x6e\x6d\x36\x27\xa3\xe9\xfd\xbc\xae\x99\x88\x2d\xd4\x62\x07\x0d\x8e\xf7\x5e\x3a\x62\x43\xc5\xfe\x4a\xa7\x54\x01\x77\x9f\xf6\xe7\x12\xe4\x50\x56\x18\x38\x12\x05\xd4\xfc\xb7\xcc\xe4\x5b\xa8\xd5\xc0\xa1\xff\xae\x25\xce\x22\xd3\xcc\x8b\x89\x8b\xdb\x42\xe6\x7d\x92\xae\x0f\xc7\x0b\x92\xa2\x6c\x60\x32\x2c\x88\x26\x99\x6a\x60\xe7\x0b\x29\x25\xd3\x52\x82\x98\x3c\xac\x5e\xde\x3b\x65\x85\xf6\xb6\x71\x5e\x48\xe7\x4f\x50\x22\x11\xab\x6f\x50\xe4\xfc\x49\x1b\x57\x63\x52\x30\x7f\x21\xb4\xb6\x42\x13\xfb\x08\x55\x55\x86\x52\xc9\xf1\xff\x2d\xd4\x5e\x38\x87\xda\x50\xfb\x3a\x78\x94\xd0\x43\x92\x18\x76\x3a\x6a\xf0\x09\x86\x16\x7d\x4d\x8b\xff\x26\xb9\x6e\xd4\xf6\x6c\xa6\x29\x6c\xa6\x11\x65\x20\xdf\x63\x33\x9f\x9e\xce\x39\x87\xae\x84\x29\x13\x2c\x2d\x31\x27\xe8\x7b\xc2\x29\x05\xa6\x0c\x1d\x53\x80\x1a\x88\x0e\x29\x10\x65\x52\xd8\xa4\xf0\x82\x55\xc9\xb9\x5f\x73\x53\x9f\x65\x1a\xee\x36\xeb\x72\x97\x1f\x15\x7e\x6b\xe3\xbe\xb3\x68\xda\xd7\x78\xb9\x7f\x3e\x36\xdb\xdd\x7c\x73\x86\x8b\x63\x5d\xc8\xef\x59\x1e\xe7\x45\x2c\x58\x50\xb7\xd0\x5a\x16\x62\x4b\xa6\x36\x9d\x72\x0f\xa0\x03\xee\xd2\xa9\xd9\xd7\xe7\xf6\x87\x69\xf1\x30\xd3\x33\x14\x88\xb3\x33\xdd\x5c\xce\xf4\xae\xf5\xc9\x94\xd5\x53\x96\xe5\x93\xd6\x46\x68\x70\xa1\x49\x67\x15\x6f\x1c\x7e\xf1\x4a\xaa\x31\x93\x1d\xd4\xa6\xb5\x12\xc9\xf4\x8b\x2f\xff\xdd\x6d\x57\xbb\xd9\x7f\xf9\xb2\xdd\x7d\x5a\xd6\xab\x8b\x35\xec\xec\x1a\xf3\xf9\x9e\xa6\x4a\x84\xfc\x2d\x0c\x09\xcb\x5e\x48\xbf\x31\xae\x88\x84\xb4\xd7\x75\xfb\xd9\x68\x95\xa8\x15\x5b\x3e\x9c\xf0\xc2\xa8\xc6\x64\xe1\x6d\x83\xe1\x12\x0c\xf6\x30\x67\x36\x51\xd5\xda\x56\x5e\x41\x67\x95\x2a\x6a\x9a\x09\x55\x82\x31\x04\xe2\x3a\x09\xd8\x0a\x1a\x04\x1d\x2b\x65\x69\x34\x58\x5f\x05\xeb\x2d\x89\xf5\x49\xe9\x40\x0c\x59\xe5\xad\x8e\xc2\x83\x91\x8b\x1b\xed\x55\x6d\x62\x65\xb3\x15\x2e\x57\xd9\x29\x27\xbc\xaf\x4c\x08\x5e\xe4\x5c\x39\xa5\x0c\x11\x4d\x7b\xd5\x80\xab\xd3\x8d\x4c\x4c\xee\x45\x2d\x89\xda\xb6\xe3\x05\x85\xb4\xc5\x4e\xa2\x7d\x6e\xb0\x24\x5a\xff\x82\x49\xae\x4d\x9a\x91\xf7\x8b\x74\x6e\xba\xbf\x89\x74\x6e\x5a\x5e\xb6\x58\x52\x7f\x8f\xde\x32\x73\x8b\x5a\x7b\xc6\x32\x60\xf1\x2d\x2f\x76\xa6\x2d\xab\x96\x61\x6d\x87\xf5\xd8\xba\x2f\xf7\xe8\x2b\xbb\xf9\xdd\xd1\x71\xdc\x33\x4f\xd6\x9e\x8d\x8c\x51\xf9\xc0\x2a\xc6\x88\x1d\x2e\x79\x62\x51\xb1\x1e\xd3\x31\x79\x7c\x95\x0e\xc9\x13\x13\x93\xfc\x26\xf9\x97\xf7\xce\xc4\x91\xbe\xca\xb0\xbe\x0a\x84\x9a\x30\x4c\xd3\xad\x67\x3a\xbe\x26\xeb\x38\x1e\x31\x28\xea\xb4\x25\x24\x88\x42\xa7\x00\x25\x99\xc9\x79\x63\xa0\x86\x07\x9f\x9e\x47\xc3\xb4\xa7\xe7\x89\x6e\x7a\x8c\x2e\xff\xfa\xbc\x7e\x3e\x5f\x2f\x87\xe2\xc9\x6a\x70\x9f\x87\x2a\xfd\x53\xd4\x05\x2e\x53\x73\x78\xc3\xa7\x06\x6f\x6c\x2a\x97\x26\x1b\x5f\xa7\xe0\xb3\x8d\x84\xa9\x69\x4a\xb3\x7e\xdc\x6d\x06\x7d\x8d\x8e\x0a\x5d\xc4\xba\x27\x77\xc9\x74\x32\x11\xdd\x64\x33\xa4\x8f\xdf\xa6\xc7\xff\x78\x6e\xa7\x4b\x07\x17\xf4\x92\x5b\xa9\x5a\x11\xef\x8b\x0c\x0a\xc9\x53\xb2\xe8\x59\xc4\xfd\x4e\x08\x15\x2c\x93\x0e\xa2\xe8\x1f\x5f\x09\xbc\x85\xb1\x7c\xd9\xae\x57\xc7\xe5\xc7\x66\x35\x21\xd7\xe5\xb5\xb2\xd2\x1a\x61\x7c\x51\x80\xd2\x5f\x60\x7b\xa3\xcc\xb4\x29\xb4\xf4\x13\x8b\xbf\xc8\xaa\xc5\x52\x29\xb2\x12\xba\xa5\x3b\x82\x17\x9a\xee\x83\x02\xce\x68\xbb\x71\xa6\x6c\x82\x2c\xa1\x8d\x87\x02\x24\xb9\x97\xa9\xe9\x8d\x7e\x40\x9e\xcb\xa6\x76\x51\x28\xd8\x1d\x6c\xc6\x21\x85\xd7\xb5\x74\xb9\xda\x7d\x6a\xd6\x4f\xb7\x1a\xdc\xdf\x52\xda\x1d\x84\xc9\xae\x66\x9d\x9b\x87\x8c\x2d\x59\x02\xb0\xaa\x95\x46\x44\x4d\x12\x5e\x0a\x6d\xd4\x82\x99\x7e\xab\x5a\xc3\xf7\x91\xe8\x97\xa0\x54\x12\xc6\xdb\x46\x7b\xe1\x54\x43\xab\x93\xd4\x2e\xb0\x55\x13\x5c\x7e\x14\xc4\x09\x5b\xc7\x84\xc8\xc4\x57\x46\xda\x99\x62\x83\x4f\xd2\x3d\x26\x38\x91\x3d\xb1\xdb\xda\xe8\x46\xd3\xb6\x10\x42\x4d\x0c\x39\x89\xeb\x09\x54\xf6\x30\x72\xdf\x11\xaf\xc7\xcd\xdd\xee\x9e\xb6\xa7\xed\xd3\xf3\xaa\x59\xb6\xcf\xdb\xe3\xfa\x1a\x59\x2e\xef\xeb\xd7\x59\x1b\x6c\xe9\x94\xd0\x6b\xa4\x89\xb7\x61\x01\x3d\x2a\x88\x8e\xe0\xe5\xbd\xda\x40\x2b\x89\xa3\xe2\x5d\xc6\xd8\xb1\x4e\xe8\x81\xb9\xd7\x9e\xcd\xd9\xc7\xdb\xda\xac\x3f\x1d\xf6\xfb\xcf\xcb\xf5\xcf\xc7\xc3\xea\x5a\x43\xcf\x6e\xe2\x56\x26\xe2\x61\x5c\x9d\x41\x6a\xea\xd5\xc0\x23\xc1\xb9\x46\x46\xda\x78\x43\x23\x23\xc9\x3b\x79\x03\x2e\x69\xa6\x41\x27\x1d\xf5\xa6\x57\x5c\x44\x5f\x6b\x12\x25\x2d\x4d\x0b\x61\x93\x90\xc6\x35\x91\x37\xfa\x86\xd6\x3b\x4d\xd7\xa3\xb0\x34\x71\xb0\xb6\x3a\x56\x46\xf7\x2b\xd7\x44\x63\xb6\x19\xa6\x91\x49\x13\x73\x46\xea\xd4\x05\xf1\xa4\xb3\x61\xc5\xc8\x3d\x0d\xeb\x1c\x39\x8a\xeb\xcf\x1d\xa2\x75\x77\x31\xd5\x6c\x04\x0f\xd1\xa9\xb2\x07\x0d\x76\x3b\x52\x5d\xd3\xdf\x46\xe6\x70\x7a\x9c\x78\xb4\x5b\xcc\x9a\x33\x5c\x66\x63\x22\x9c\x45\x5e\x43\xa8\x58\x08\x15\x07\x42\xd9\x6f\x24\xd4\x61\xfd\xf4\x5c\x5f\x5f\x5e\x2e\x6e\xe3\x25\xe6\x46\x8d\x0b\xbf\x32\xb1\x53\x5d\xaf\xef\x7b\x67\x58\x8d\xeb\x58\xe4\xd4\x34\x5a\x61\x37\xa2\x23\x08\x1d\x5c\x63\xb4\x48\xbe\xd0\xe0\xdb\xa8\xdd\x60\x33\x07\xc5\x55\x19\xca\xfc\x35\x4b\xbb\xd3\x2b\x96\xe4\xc3\xba\xc6\xc9\xcd\x49\x79\x76\x53\x61\x66\xa0\x51\x69\x34\x71\x18\x39\x34\x65\x2c\xc1\x57\x8a\x18\x1a\xed\x42\x4d\xcd\x66\xb7\x2a\xe2\x97\x83\x15\xde\xc0\xa7\x4a\x9b\x50\x4b\x47\x5b\x94\xb6\xc4\x99\xdb\x2c\x7c\xd8\xe8\x5a\xfb\x4a\xc7\xec\x84\xa9\x74\x48\x2e\x09\x93\x2a\xab\x2d\xc9\x37\x95\xf2\x5a\x25\x41\x2c\x77\x6e\xc0\x38\xc4\x1a\x9a\x6f\x8d\x4d\xcf\x3a\xa8\xcc\xa5\xa1\x0d\x8b\xde\xad\x04\x71\xeb\x91\xe6\x30\x2d\xc8\xc2\x84\x86\xaa\x90\xe2\x46\x2b\xc7\x06\xaa\x81\x0b\xf2\xaa\x96\x50\xbb\xcb\x9c\xb0\x18\xd0\x94\xcd\xaa\x61\x89\x85\x18\xc0\x86\x89\x6f\x16\xb5\x47\x5f\x52\x5b\x3d\x0f\x11\xef\x36\xd0\x51\x69\x9a\x5e\xd9\xd4\xc4\x6d\xd1\xf4\x32\x16\xc2\x89\x56\xc2\xe7\xd6\x81\x8b\xf2\x19\x0b\x0b\x44\x39\x3a\x97\x54\x0b\x2d\x64\x50\x35\xfb\xd7\x64\x14\x81\x67\x0b\x78\xf6\xf5\xfd\x78\x7b\xa1\x38\xbf\x8b\x17\x0a\x13\x45\x72\xc5\x6b\x46\x37\x32\x7a\x11\x69\x74\xaa\x2b\xa3\xd3\x90\xf4\x66\x02\xf5\x29\xb1\xa0\xf4\x3f\xf5\x9d\xab\x92\x0d\xb4\x0f\x41\xbc\xca\x42\x26\x3a\x28\x03\x33\x8e\x0e\xec\xe0\x62\x6b\x28\x63\x3c\x7a\x8d\x78\x4d\xa5\x78\xf1\x70\xb1\x96\xec\x30\x95\x12\x46\x0b\x31\x62\x24\x44\xc6\xbc\x89\x8e\xd5\xac\x3a\xce\xda\x79\x5f\xbd\xa8\xbc\xd7\xc1\x08\x9b\xe3\xa2\x96\x9a\x78\x45\x62\x01\x05\xcc\x29\x41\xb5\x54\xa9\x28\x82\x12\xaa\xa5\x2b\x6c\x65\x09\x0a\xd2\x1a\xdc\x27\xe8\xd2\xbd\x7e\xf9\xd2\xac\x76\xeb\xcf\xfb\xa7\xf5\x72\x55\x1f\xb7\xa7\xb3\x6d\xfd\xf2\x2a\x2b\x52\x34\x34\xad\x85\xe9\x8f\xf0\xd6\xd0\xc2\xb3\xa1\xb8\x81\xbd\xdb\x9c\x30\xc5\x88\x35\xa1\x8e\xa2\x61\xa6\x4f\x16\xc3\xd3\x9a\x13\xdd\x46\xfc\x8b\x90\x9e\x04\xe8\x86\x7e\xa2\xed\x9a\x3d\xde\x7a\x6b\xa6\xb0\xa6\x9d\xec\x08\xfc\x09\xe6\x86\x31\x2d\xee\xae\xbc\x43\x1b\xb6\xbb\xdb\x6d\x1c\xae\xa3\x95\x30\xcc\xa9\xc6\x44\x61\x62\x63\x69\x27\xb7\xb4\x7d\x63\x32\x53\xf5\x0d\xc9\xcf\x86\xfa\xfd\x9b\x9a\x4c\x63\x59\xbd\x74\x5a\xeb\x49\x93\x1a\x19\x12\x5e\xa2\x43\x14\x3a\xc4\x53\x4c\x8f\x90\xe5\x01\x4a\xfc\x72\xd1\xf6\xb1\x07\xc7\x55\xed\xe4\x75\x33\x40\x82\x96\x30\xf9\x33\xb9\x0f\x7b\x91\xe1\xbd\x68\xce\x46\x30\x96\x79\xc7\xe2\x1a\x66\x8f\xb3\x8d\x66\x9b\x22\x8e\xcc\x1f\x92\x44\x7c\xaf\x7d\xfb\xc3\x71\xd9\x6e\x9e\x8f\xc7\xe6\xbc\x8f\x27\x57\x06\xf1\x2e\xd2\x2a\x1b\x1b\xe2\xd0\x53\xd8\x50\x7f\x31\x0f\x4e\x2c\x9a\xcd\x6f\xb5\xad\xc7\x08\xc1\x04\x3a\x3b\xcf\x1a\x3d\x5f\xd6\x87\x37\xbf\x9c\x16\xba\x18\x89\xce\xc3\xeb\x59\xa7\xe3\x94\xef\xc9\x76\x92\xf0\xd8\xf0\x6e\xf1\x88\x18\xbb\x91\x3c\xff\x1e\xb8\xd1\x59\x5a\xa7\x58\xe4\x9e\xe8\x2d\xf2\x1d\xc5\xdd\xb9\x0d\xe7\xdf\xdc\xff\x5e\xef\xfe\x47\x34\x5b\x9e\xd9\x3e\x87\xb2\x7f\xb3\x85\x7d\x83\x2d\x0c\xe4\xdb\x7f\xfc\x78\x41\x52\x94\x31\xeb\x1d\xb5\x70\xb4\x36\xc3\xac\xed\x7b\xcf\x5c\x22\xd1\xcb\x7b\xeb\x8b\xb5\xdc\x10\x0f\xa7\x55\xcd\xca\xd7\x00\x8e\x8f\x76\x7a\x1c\x73\x67\xf9\x3e\xa7\x56\x6d\x89\x46\x01\x0c\x59\xf6\xc2\xfa\x97\xf7\xc1\x08\x17\x6c\xad\xad\xae\x4c\x84\xff\xbe\xae\x14\x31\xa8\xc1\x54\xec\x05\x1d\x74\x95\x89\x1e\xb4\x32\x64\x3b\xec\x4c\x2e\x0a\x62\x52\x6c\xf1\x9c\x88\x09\x0e\xff\x52\x53\x6d\xe8\x02\x77\xc8\x39\xb1\x6b\x05\x8b\x5c\x12\x59\xc3\xd6\x6c\x7c\xc3\x4c\x07\x0d\x51\x08\x09\x9d\xbb\x31\xd4\x6c\x60\x8f\x4d\xbe\xd3\x27\x18\x04\x36\xb9\x5a\x62\xb9\xc3\xca\x62\x85\xf4\x24\xcd\x36\xd2\x5a\x61\x4d\x6d\xbc\xd0\x46\x78\x2c\x24\x89\xfe\xbd\x32\x62\xb0\x32\x31\xbb\x4c\xf4\xa4\xdd\x04\xcc\x20\x5e\x12\x84\x0e\x22\x0b\xeb\x44\x16\x9e\x6e\x2d\xee\x05\xe3\x61\xfb\xc8\x10\xd8\x5d\x8e\x80\x3e\x3c\xc3\x78\x61\x94\x69\xb4\xf2\x42\xab\xd0\x60\x3b\xb4\x8d\xec\x16\xdb\x86\x4d\xf7\xc4\xbe\x9b\x3f\xc8\x7c\xfa\xed\x96\xa8\x0f\xcf\xd3\x65\x1e\xe7\xfd\x32\x6f\x62\xec\xdd\x59\x64\x2e\x6e\x2a\xad\xcc\xc5\x64\x51\x4e\xe1\xeb\xc2\x6e\x2c\x6d\x71\x7a\x11\xa6\x68\x40\x75\x50\xec\x80\x94\x03\x6d\x3d\x39\x88\x1c\xc0\xf9\xe6\x40\x42\x1e\xce\xe8\xa7\x83\xcc\x47\x7f\x6d\xf9\xc9\x67\xdf\x5d\x8f\xda\x34\xcb\xed\xae\x6e\x9e\xdb\x33\x06\x74\x5a\xce\xac\x49\x8e\xc2\x46\x5d\x07\xe8\x8c\x35\xed\x32\x86\x8f\x5a\xfb\x16\x93\xa7\x3b\xc3\x3f\x9d\xf4\x1a\x14\x4d\x24\x99\x8c\xb0\x0e\x7d\x66\x5c\x63\x8d\x30\xa9\x81\x22\x96\xa4\x56\x36\xa7\x5b\x8e\xc5\x21\x49\xd1\xd4\x4e\x09\x25\x22\x38\x8b\x48\xff\x83\xf3\x88\x46\x48\x9c\x41\x4a\x54\x6c\x42\x8a\x3c\x71\x8d\xae\xa5\x55\x95\xb6\x88\x13\x09\x95\x07\x6f\x1c\x54\xe5\x22\xad\x30\xde\x54\x29\xa8\xc4\xda\xde\xa4\x1a\x08\x88\xde\xd6\x7d\xd7\x7a\xc5\xfe\xb0\x89\xa4\x38\xbb\xa8\x25\xda\x89\xd6\xb0\x56\xd2\x53\x63\x5b\x5a\x50\xf9\x27\xfd\xd5\x68\x22\x64\x4d\xd8\xbd\xa4\x75\x0d\x3b\x94\x61\x05\x40\xec\x13\xf1\x22\xba\x86\x7b\x80\xc7\x27\x10\x23\x44\xb3\x11\x72\xb6\x42\x93\xc0\x4f\x71\xf3\x5a\xdb\xb5\x92\x0e\x35\x1a\x6a\xa3\x80\x09\xce\xe8\xba\x6b\x63\xd7\xc4\xae\x85\x5d\x03\xb3\x12\x49\x35\x41\x09\x6f\x6b\x1e\x9c\x5e\x11\x6d\x93\x16\xf6\xfe\x60\xd8\x3f\x1f\xcf\x86\x01\x4a\x8a\xc6\x82\x44\x3b\x55\xc3\x61\x42\x40\x8f\x4b\xd5\xd7\xc1\xb7\x92\x7e\xb2\x2a\xd7\x0b\x92\xf5\x3c\x7c\xb8\x40\xc0\xe0\x5b\x0d\xfe\xdc\xc3\xba\xaa\x88\x1f\x0c\xc2\xfa\x54\xfb\x24\xa4\x4f\xc2\x63\xe7\x02\x3b\x6e\xb4\x6e\xf1\x9b\xca\xe9\x8c\x5e\xe6\x93\xe0\xcb\x74\x95\x7e\x79\x12\x43\x34\xbd\x29\x53\xd3\x52\x67\x02\xd3\xd1\x8b\x64\x8a\xc5\xec\xe5\xbd\xb3\x1a\x62\x4a\x31\x9b\xbd\x40\xe5\xe2\x4c\x67\x3b\xbb\x4d\x8b\xdd\xd3\x61\xbf\x9d\xf0\x32\x5d\x49\xcf\xa7\x3b\xe5\x4f\xf0\x51\xd3\xf0\x55\xc3\x1a\xa0\xed\x5c\x31\xf5\x97\x0b\xa1\xb6\xa6\x77\x7d\x0e\x1a\x07\xad\x8a\x0d\x0e\xdc\x2a\x6d\x35\xec\x71\xad\x68\xe3\x4c\x82\xe4\x71\x27\x9c\x90\x4e\x50\x83\x85\xf6\xad\xd6\xc2\xd1\x48\x52\x0d\x33\xdd\xb5\x8e\xb4\xc3\x44\xd8\x82\xe9\xdf\xd6\xc2\xe7\x1a\xc1\x75\x98\x69\xd6\xd4\xf4\x8e\xfe\xc1\xd6\x41\xd3\x85\xe0\xaf\x17\xa8\x39\xad\xd3\x33\x6a\xce\x13\x9b\x6d\x11\xf4\x24\xce\x54\x9e\x98\x8e\x3d\xf3\x7f\x62\xd3\xfa\x54\x14\x7c\x79\x1f\xfd\xad\x37\xbf\xe1\xc5\x45\x0e\x3b\x19\x6d\xe1\x1c\x2b\xd9\xb1\x0d\xc1\x6f\x93\xd5\x7a\x23\x21\x0a\xfb\x87\xbe\x15\x3d\x7b\x17\x44\xff\x58\xa3\xe9\x7e\x9a\xc4\xd8\x32\xc6\xdb\xc2\x9d\x91\xb5\xdb\x3f\xef\xea\xf5\xe7\xf5\x6e\x32\xd5\x26\xc5\x3d\xb7\xac\xb3\xe1\xf0\x2a\xc3\xe1\x4e\x23\x01\x6e\x12\xc6\x00\x93\xd3\x37\x5a\x80\x73\x6e\x10\x4e\x90\xfc\xc9\xc2\x47\xa9\x78\xef\x18\xfe\x7f\x63\xef\x69\x33\xbe\x7c\x99\xd8\xb3\x71\xda\x1b\x6c\x59\x16\xec\x9c\x45\x20\x0e\x3a\x22\x92\x3d\x2f\x46\x6c\x81\xd3\x73\x77\x3b\x13\x47\x65\xa7\xee\xee\x99\x97\x24\x7f\xa5\xf4\xb2\x1a\xf4\x86\xcb\xd2\xe4\x67\x2a\x71\xb3\xf5\x87\x7a\x73\xb6\x79\x76\x25\x45\x37\x9e\x69\x49\xd8\x98\x4c\xbb\x9f\x12\x58\x1a\x7c\xd9\xe9\xb5\xcd\x8d\x26\x76\x56\xc7\x8d\x8c\xec\xd1\x06\xff\x1a\x4b\xa7\x34\x39\x93\x70\x4a\xd5\x81\xb6\x39\xad\xa0\x40\xd3\x45\x4f\x6b\x42\xb8\xed\x9c\x35\x63\xd4\xc7\x23\x5a\x09\x70\xb5\x24\x12\xc4\xc6\x64\x61\x43\x1d\x44\xa4\xb5\x41\x1b\x01\xbe\x97\x66\x55\xad\xb1\xba\x63\x31\x31\x58\xcf\xef\xd0\xe1\xb0\xff\xba\xfc\xb0\xaa\x7f\x9a\x90\x62\x28\xec\x75\xa5\x83\x59\x34\xa8\x46\x43\x9d\x5b\xb8\x78\x0e\xef\x63\xbb\x72\xd3\x1d\xfb\xf2\x72\xe7\xc6\x84\x3b\xfa\x43\x7c\xf4\x69\xff\x75\xf7\x75\x75\x78\xba\xa8\xcd\x70\x61\xa8\x91\x0f\x4d\x6f\xdc\x1e\x6a\x50\x44\x29\x7c\x57\xe7\x93\x09\x0a\x06\x28\x54\x9b\xe8\xa7\xef\xf0\xee\xfc\xb9\xc3\xfe\x0b\xbe\x79\x59\x91\xe1\x0a\x8f\x14\x97\x11\xad\x61\xb4\x6b\x64\xe7\x48\xfb\x9a\x2f\xcc\xf8\xd0\x5d\xb9\x61\x60\x79\x39\xb6\x8d\xc6\x39\x4c\x9a\xdf\x99\xfd\x1c\xaa\xf7\xfc\x65\xbe\xda\x54\x3e\x50\x47\xdb\xa6\x28\xa4\x9b\x8e\x40\xb4\xd1\xde\x31\xa2\xe2\x6d\x1f\xf7\x87\xd9\xe1\xd0\x97\xf7\x34\x71\xa6\x53\xe5\x76\x83\x81\x7f\x91\x98\xc9\xc3\x81\x46\x21\x0d\x83\x93\x33\x34\x1a\x79\x6c\x6a\xf3\xc8\xb0\x7c\xfe\x32\x5b\x8b\xae\x18\x95\x60\x43\x69\x33\x9e\x08\xa5\x06\x7a\x98\x0a\x34\x22\xa9\x0e\xd8\x03\xb8\x12\x6c\x30\xbb\x37\x28\x8f\xcb\xe3\xe1\x7c\x96\xf6\x65\x45\xa4\x74\x30\x4d\x49\x97\x44\x20\x4e\x36\x0a\xe9\x52\x27\x86\x95\xd3\x0d\x89\xae\x2c\x48\x73\xc0\xfe\x55\x57\x51\x58\x15\x2e\x5d\xd8\x4e\xfc\xc8\xe0\x2a\x4a\x85\x9b\x79\xaf\xad\x97\xf7\x26\x43\x26\xa5\x15\x52\x47\xd5\xfb\x5c\x14\x71\x30\xd8\x89\x17\x46\x7f\x81\xdd\xed\x23\x3a\x8a\x1f\xbb\xb3\x88\xb5\x5f\xd6\xf5\x71\x79\x58\x1d\xb7\x13\x6f\xfa\x49\x71\xaf\x98\xd6\x2a\x9c\xac\x52\x45\xc1\x4c\xbf\xe6\x1d\x8b\x1e\xf3\xa8\x85\x3e\x62\x6e\xd1\xee\x3c\x6a\x2f\xb5\xd2\x2e\xf7\xea\x34\x8e\x83\x8b\x1b\xaa\x53\xd1\xab\xb1\x6f\x2f\xf8\x23\xcc\x13\xba\x34\xd6\xad\xdd\x26\x44\xbb\x6e\xdb\x73\x1e\x65\x54\xd8\x7b\xe4\x52\xa7\xc0\x0d\x94\xbd\x43\x5d\xf1\x16\x85\xd3\x95\x2e\xfe\x9a\xf0\xa0\x30\x1c\x33\x42\x17\x10\x8b\xd6\xb9\x54\xd0\x13\x6f\x72\x42\x7e\x90\x64\x77\x9d\x90\xdb\x76\xfb\x69\x77\xd9\xe4\xbe\xb0\x6f\x32\xd1\x1c\x9f\xd7\xac\xc3\xa4\x05\x68\xe2\x9d\xcc\x17\x0c\x5f\x18\x8d\x5c\x6a\x2f\x9e\x18\x34\x27\x2e\x8d\x18\xc8\x81\x79\x6d\x19\x4b\xa2\x84\xcd\x18\x8d\xcd\x9a\x43\x6a\x3a\xc5\x04\x94\x0e\xdf\x83\x70\x29\x2f\xea\x4c\x2c\x80\x85\x3e\x3d\xd0\xa5\x16\xe2\x7e\x82\xe8\x8b\x5b\x1e\x24\xed\x72\xbb\x7b\x9a\x25\x2f\x5f\x60\x12\x27\x07\xb3\x9b\x55\x8f\x85\xbc\xd1\xd4\xdb\xf4\x2c\x95\x0d\xf6\x57\x09\xd2\xfa\x7b\x74\xcc\xe2\xd5\x3d\xf3\xeb\x75\x4c\xb3\x9a\x7a\x4f\x9d\x5f\x19\xb6\x47\xe5\x7b\x2d\xd9\x6c\xe3\xdb\x1b\x14\x2b\xe2\x8b\xb6\x97\xe2\x0b\x56\x0d\x0e\xc2\x1e\x8b\x3b\xdf\x67\x84\xdf\xa1\xe3\x7d\x38\x89\x81\x5c\x87\xf5\xf1\xf9\xb0\x9b\x27\x65\x77\xad\x97\x8e\x48\xbe\x2b\x5e\xbd\x61\xe0\xfa\x42\xcf\xdd\x9c\xe0\x41\xf3\x47\x5a\x2b\x1e\x18\x91\xb7\x43\x16\xcf\xa9\xb5\xbe\xb2\x60\x0c\x57\x87\xf8\x4f\x93\x3a\xfe\x10\x96\x24\x50\x36\xb0\x02\xe8\xef\x3a\xb1\xff\x8e\xf3\x9a\x89\xb4\xdc\x5e\x19\x91\xa3\xcb\xc5\x89\x02\x5b\x7a\xcf\x7c\x16\xae\x57\x6a\x47\xdf\x77\xaa\x91\xde\x0b\xef\x3b\x71\xed\x7f\x22\x9a\x3e\x34\xc7\xdb\xe3\xea\x82\x3f\x28\x65\x4c\xbe\x1c\x84\xb1\xb1\x49\x24\xb7\x37\xb2\x1c\x9c\x12\x29\xe1\x20\xe9\x98\x12\x3c\x62\xcb\x81\x4b\x0b\x11\x66\x01\x27\xe0\x6b\x7f\x8d\x08\xc9\x37\x65\x83\x6b\x3a\x33\xf8\xc4\xbd\x61\x4c\x96\x3c\xe3\xd2\xff\x00\x57\x84\x06\x5e\x86\x98\x9e\x5f\xe1\x45\x4d\x45\x61\x93\xdb\x70\x04\xaf\x66\x9e\xa7\x91\x49\xb0\xb7\xb4\x62\x37\x47\x6a\x94\x0d\x0f\x44\xcb\x1f\x8f\xab\x7a\xb3\xfc\xb8\x9d\x4a\xb5\xe3\x52\xfe\xaa\x37\xf8\xaa\x25\x5a\x39\xa8\xfb\x02\x1b\x28\xe0\x07\x25\x35\x9c\x94\x74\x6a\x71\x0a\xc5\x2b\x30\xaf\x52\x51\x89\xb8\x28\xd8\xf3\x17\xff\xb7\x13\xf7\xec\x93\x34\x86\x23\xf7\x32\x47\x8a\x43\x3d\x8d\xbf\x56\x7a\x76\x44\xf3\x4e\x78\x7b\x32\xca\x72\x0d\x54\xa7\x8d\x2c\xa1\xcf\x1c\x10\xdd\x0e\x51\xd2\x27\x7e\x65\x79\xa3\xe7\x97\x7a\x87\xf7\xc1\x37\x1d\x45\xae\x57\xf2\x70\xfd\xd8\x21\x84\x0e\x0b\xaa\x22\xd7\x30\x85\x93\x71\x77\x94\xd9\x4c\xaf\xcf\xfb\xdd\xfa\x97\x4b\x32\x96\xe2\xb2\x88\x1a\x61\x62\xae\xe1\xf9\x55\xbc\xcb\xac\xe1\x63\x46\xa3\x9c\x63\x33\x49\x48\x42\x46\x2f\x64\x24\x71\x23\xb0\xdd\x3e\xc0\x05\x2d\xe3\x82\xf5\x30\xf1\x26\xb3\x71\xb1\x66\x58\x31\x28\x1e\xbd\x08\x34\x70\x3d\xbb\x5c\xfb\x44\xe3\xd1\x27\x61\x31\x63\x8b\x0b\x26\xf3\x69\xde\xd4\xb0\x1d\x01\xa8\x4d\xa1\x94\x8e\x89\xee\x74\x70\xd4\x0c\x49\x44\x27\x62\x3c\xb9\xc0\xee\x04\x91\xdd\xc9\x35\xdc\xc9\x9d\x43\x4c\x73\xd2\x1b\x36\x2f\x03\xa1\x4c\x07\x98\x29\xbc\x13\xce\x2f\x6a\x09\xfb\x36\x00\xdb\x68\x80\x00\x83\x0e\x28\x5f\x46\x09\x0d\xcf\x2a\xb0\x85\xee\x8e\x06\x10\x74\x3c\x17\x1c\x46\x85\xc5\x9d\x58\xf0\xc8\x64\x37\x77\x1e\x7f\x91\x8e\x1b\x1a\x0c\x97\x61\x01\x2d\x1c\x5f\x59\x31\x2b\xb0\x85\xe9\xa4\x6b\x1a\x85\x8c\xe7\xd6\x8f\xbb\xd6\x78\x1a\x42\xf8\x7f\xa3\x43\x27\x1c\x87\x5e\x35\xad\x39\x1e\x1f\x63\x71\xa3\x93\xed\x97\x98\x4e\xf0\x6e\x87\x05\x57\x60\x61\x35\xae\xf3\x26\x8c\xec\x1d\xca\x7d\xed\x11\xfa\x4a\x34\xa7\x33\xb7\x31\xaa\xc8\xdd\x34\xe2\x69\xc6\x29\x9e\x6a\x3c\xef\xa0\xd6\xbc\xb3\xd9\x3f\x3f\x6d\xf7\x17\xea\x88\x51\xe1\xc0\x75\xb2\xc6\x81\x65\xdd\x84\x08\x5e\xa2\x48\x2d\x3d\x47\x98\x03\x48\xce\x43\x5b\xc5\xae\xc6\xec\x8f\x0a\x33\x6c\xb1\xbc\x76\x06\x59\x91\x43\x0d\xfb\x07\xa6\x25\x4c\x12\xe1\xa4\xef\xad\x83\xcf\xc7\xfd\x61\xbd\x5b\x7f\x9d\x54\xb4\x2f\x2b\xd1\x04\x4a\x58\x17\x6b\x06\x89\xc2\x78\xa3\x01\x1e\x85\xcc\x70\xbc\xcc\x6e\x1a\x46\x83\x7f\x4e\x58\xb9\x31\x91\x1b\xd6\x53\xcb\xe0\xea\x08\x6b\x8f\x49\x30\xe9\xb0\xb5\xa3\xe6\x0a\x07\x56\xed\x7b\x11\xd4\xc8\x8f\x21\xb2\x3d\x87\x04\x22\x8c\xe6\x62\xfc\xc7\x58\x06\xbe\xa1\x03\x4c\xa2\x0c\xaa\xf3\x53\x85\xef\xa6\x01\x44\x14\x2c\x70\x26\x0a\xd4\x32\xbb\x51\x30\x10\x00\x12\x82\x6b\x78\x44\xf6\x66\x82\x7b\x51\x0b\x27\x60\x53\x1d\xc6\xa4\xea\x8b\x7a\x74\x13\x36\x49\x68\x23\x06\x23\x7a\x6b\x60\xc0\x29\xcb\xe5\x08\x38\xe2\xc2\xf2\xfe\x02\x29\xb1\x58\x35\x2e\xcc\x3e\x2d\x3d\xd2\xf1\x1e\x6d\xc7\x74\x08\x5e\x82\x7b\xd6\x83\x03\xfc\x68\x60\x19\xfd\x06\xf7\x05\x9a\xd2\x56\x58\x85\x29\x4d\xa4\xf3\xf6\xa4\x1b\x8d\x95\xc8\xf5\x8c\xd2\xa2\x91\x5a\x07\xd8\x8c\x07\x1f\x9c\x62\xe7\xa4\x63\x76\x63\x1f\x9c\x12\x70\x0a\x97\x0b\x78\x69\x84\x2e\x00\xb5\x56\x98\x7c\xb0\x1d\x70\x1f\x0b\xed\xd2\x49\x3a\xcd\x91\xb8\x9e\x5b\x55\xec\x66\x20\xae\x29\x3c\x57\xc1\xe2\x28\xdc\xd8\x0d\xb7\x86\x9b\x9d\xfb\x61\x55\xff\xd4\x7e\x59\x4d\x30\x8e\x46\x65\x7d\x58\x8d\x8e\xb9\x81\x03\x79\x6c\xf8\xdf\x8e\x93\x8c\x81\x66\x01\x82\x55\x4b\xa9\xb4\xaa\xa1\x79\x51\x4a\xe9\x38\x94\xf2\xf3\x32\x46\xd6\xe8\x7d\x8b\x62\xcd\x28\x98\xdf\x81\xed\x29\x12\x7b\xbb\xe7\x86\x4d\xfa\xd1\x36\xe5\x58\xd3\x82\x8c\x50\x7f\x38\xec\xe8\xbc\xb1\x77\x34\xba\xd4\xec\x89\xde\xba\x2b\x28\xac\x20\xeb\x1f\x3b\xb9\x8e\xc4\xba\x5e\xc0\xc3\x7e\xc5\x46\x26\x04\xe1\x03\xc0\x29\xd5\x9e\x66\xaa\xc8\x19\xee\x08\x0c\x91\x88\x11\xee\x73\x87\xa3\x11\x87\x7f\x10\x57\x36\x9e\xfa\xdd\xcc\xe7\x89\x1f\x82\xf0\x4a\xb0\xa1\xc2\x09\xcd\x0e\xff\x5e\x8b\xa4\x04\xe2\x81\x8c\x48\xb1\x8e\x09\x7e\x40\x46\x10\x5b\xaf\xf9\x05\xb7\xb9\xe0\x0f\xab\xe3\x71\x7d\xf8\xe5\x02\xa4\xe1\xac\xbc\xb7\x60\x42\xd6\x57\xb1\xc8\xfa\x2a\xde\x92\xf5\xad\x75\xec\x4b\x14\x18\x32\x54\x82\x2c\xc4\x79\x9d\xa4\x05\x7c\x17\xbc\x1a\x61\x7a\x48\x85\x21\x4b\xc4\x61\x86\x5a\xe2\x19\x0e\x8e\xc0\xc1\xa4\x13\x3f\xa2\x11\x25\x01\xb7\x30\x61\xf2\x86\x55\x74\x25\x88\xdd\xde\x66\x9c\xba\x36\xd5\x9b\xd5\xe1\xd3\x76\xf7\x69\xf9\xf1\xb9\x69\x66\xda\x7c\x76\x9d\xdb\x6e\x69\x31\xa7\x95\x53\x07\xd6\x76\x6a\x9d\x78\x05\xa5\x02\xc6\x2f\x4b\xbf\xdf\x36\x5f\x69\xea\xa8\x85\xbf\xd7\x9a\xb7\xc7\xa7\x99\x8a\xa3\xf4\x77\x5d\xef\xe7\xdd\x4f\xbb\xa9\x9d\xf0\xe2\x4a\x11\xb1\xbc\x30\x4e\xd7\x59\x00\x96\xc4\x60\x67\xb7\xe1\x01\xc0\xaf\x8d\x35\x77\x3c\xf6\xc1\xa6\xc0\x19\x92\x48\x80\x2d\x14\x56\x6b\x89\x35\x54\x15\x30\xa7\x02\xcb\xcb\x0b\xed\xc6\x3a\x36\x2a\x27\x44\x3a\x27\x61\x5d\x1d\x04\x6d\x58\xb0\x28\x3b\x38\xa2\x9a\x18\x84\x36\xf9\x84\x6d\x4a\x61\xbb\x72\xea\xee\xe0\x5f\x7c\xff\xbe\x58\x93\x48\xc4\x28\x8c\xe3\x8e\x98\x14\x73\x2f\xc0\x39\xcd\xd5\x32\x84\x2a\x79\xe5\x44\x77\x94\xda\xe7\xca\x13\x2b\x97\xaa\x0c\x0c\x05\xe3\x6c\xe5\x6c\x14\x41\x57\x3a\x85\x54\x07\x5b\xc5\xe4\xb4\x88\x95\x89\x9e\xa4\x44\xe7\xab\x9c\x10\x73\x5e\x45\xab\x92\x30\xda\xe0\x01\x99\x0d\x9e\x68\x24\xc3\x4d\x1b\x83\xcf\x39\x1f\x44\x39\xc8\x9c\x2b\x17\x10\x32\x95\xaa\x40\x52\x69\x79\xa4\x7b\x47\x2d\x4d\xac\xa2\xa6\xcd\x23\xd9\x2a\x79\x48\x0d\x55\x08\x36\x00\x06\x2b\x54\x3e\xf5\x15\xeb\x6b\xda\xc8\xa0\x85\x0c\x7a\x51\xd3\x43\xd9\x3b\x2d\xba\xa3\x24\xb6\xcb\xa8\x8a\xd6\x31\x55\x69\x1b\x43\x24\xe6\xc7\x55\x29\x98\x5a\x55\xda\x64\x9b\x93\xd0\x95\x56\x3e\x19\xa1\x2a\x1d\x42\xd0\x28\x70\x3e\x1a\xa1\xa9\xc9\x2e\x76\xc7\x3a\xb9\x4a\x69\x43\x6f\x4f\xc1\x58\xbc\x39\xab\x84\x73\x1d\x5c\xf7\xe2\xe1\x53\x2f\xef\x4d\x22\x41\x91\x8d\xf3\xba\xd1\x16\xa0\x12\xa9\xb3\x8d\xde\xe9\xdc\xf5\x6e\xb3\x3e\x4c\x38\x97\xbe\x68\xd0\x7e\x45\xdd\x14\xd6\x6e\xd0\x7e\x51\x1d\x74\x30\xcc\xd1\x84\x41\xfb\x05\xa5\x4d\xd6\xf3\x2c\x49\x64\xee\xd4\x33\xa0\x77\x14\x05\xe4\xa2\x91\x3a\x42\x03\x11\xf8\x97\xd6\x34\x98\x35\x71\x26\x3a\xb3\x10\x9c\x85\xf5\x27\x7e\xfe\x95\x56\xac\x0f\xcd\x7e\x22\x4c\x95\xf3\x3b\x48\x33\x75\x91\xaf\xad\x20\x5e\xcb\x06\xa1\x95\x6f\xa4\x71\x80\xaa\x56\x35\xa6\x1d\xb3\xa6\x7c\x8d\x81\xae\x47\x01\xbd\x19\x18\x9f\x31\x08\x84\x16\x2b\xdf\x18\x84\xec\x29\xc8\xab\x86\x9d\x9e\xcb\x25\x5a\xaa\x64\x66\xe7\xca\x73\x60\x81\xef\xed\x80\xf0\xa1\x79\x5e\x1f\xf7\xfb\xe3\x66\x42\xb1\xbe\x8c\x27\x3a\x09\xb2\xc4\xc4\x39\x05\x3c\xd2\xa4\x4b\x78\x54\x4a\x74\xd2\xa0\xf8\xe5\xbd\x8d\xb4\xf2\xa5\x46\x92\x9c\x90\x4d\x53\x0e\xdd\xcc\xd5\x70\x08\xc4\x10\xca\x49\xc8\x9c\x26\xfe\x04\xcc\x8e\xf2\x0f\x2e\xe6\x9b\xe8\x81\xcd\x3d\x86\xbc\xab\xef\x12\x82\xf3\x5c\x4b\xba\x2b\x85\x29\xf3\x97\xed\xb1\xfe\xa2\x3d\x54\xf4\x5b\xb5\xe7\xbd\xd3\x51\xd8\x00\xc8\x3e\x78\xd3\x31\xf4\x9f\x85\x0f\x31\x64\x65\x08\xb9\x06\x90\xe8\x90\x8f\xb4\xb6\x0d\xb0\xe9\x7d\x4d\xfd\x1a\xe0\xd8\x4a\x1d\x2d\x52\x68\x25\xeb\x70\x71\xf2\xf2\xde\x2a\x48\x86\x05\xef\xaf\xe6\x58\x77\xdd\x69\xb2\x84\x74\xb9\x95\x8e\x9d\xfe\xe9\xf4\x0e\x9a\xdf\x40\xc4\x7a\xbf\xdb\xad\xeb\xe3\xc4\x1e\x31\x7b\x75\x80\x70\xc9\x1c\x84\x87\x78\x63\xdb\xc7\x1d\x03\xe2\xf5\x77\x30\xaa\xd8\xa7\xc6\x87\x46\xf6\x41\xd1\xb4\xc6\x34\xf7\xe1\x6e\x87\x66\x3f\x6d\xdb\xd5\x87\xe6\x0a\x4d\x86\x8b\x83\x43\xa3\x71\x68\x9b\x9a\xb4\x9c\x44\x30\x67\x62\x63\xa9\xcb\xad\x36\x83\x37\x18\x3a\xb1\x34\xff\x81\xd6\x3a\x2d\xb4\x1b\x93\x32\xe4\xa6\x73\x37\x51\x71\x63\x74\xd3\x51\xae\x81\x86\x38\xf8\xee\x1d\xd6\x89\x7b\xbc\x41\xdf\xae\x76\x0d\x1f\xbf\xdd\xa7\xd9\x56\x8f\xae\xfe\xdb\x84\xfb\xa6\x09\x77\x80\xa3\x1a\xe7\x87\x19\x13\x78\x5c\x3e\x96\xb1\x87\xa8\x8d\x1b\xfa\x8d\x33\x8d\x90\x11\x5d\x44\x4c\xce\x88\xdb\x80\xfe\x47\x01\xae\x1a\x6a\x4c\xd4\xb9\x63\x79\xb5\x6a\x25\x1c\xa8\xe9\x5f\xad\x5a\x0f\x5d\x01\xfd\xff\xdd\xb1\x74\x16\xdf\x84\xe0\x06\xbf\x15\x95\xfb\x56\x3a\xd1\x35\xcb\x95\xbc\x22\xa5\xd1\x5a\x0b\xd6\xa1\x6b\xdd\x82\x14\x68\x70\xf1\x6f\x31\xee\x0d\x64\xca\xc4\xd5\x10\x07\xcb\x6a\xe2\xb9\xcf\xb4\x37\xaa\xf6\xb2\xe0\x57\x8c\x30\x67\xcf\x82\x74\x4c\x8f\x33\x4b\xbf\x35\xeb\x3e\x8d\x19\x2b\x00\x8b\x9b\xf1\x50\x0d\xa4\x80\xc1\xe7\x5b\x7c\x17\xff\xb7\xf4\x55\x78\xcc\xa3\x1a\xbe\x54\x03\x7f\x65\xd5\xec\x28\xa1\x41\x09\xcd\x94\xf0\x5d\x5d\x0b\x25\x94\x60\xda\x68\xd5\x3a\x6e\x20\x53\x82\xb8\xcc\x6e\xc4\x3d\xf8\x82\xc5\xe4\x0d\xf0\xfc\xea\x7a\xf3\x7a\x5d\xdb\x2b\xed\x2b\xee\xd3\xfd\xc4\x31\x3c\x71\x0c\xd3\xee\x86\xda\xb5\x1d\xd4\x89\x85\x92\x7d\x6f\x5c\x6a\x6e\x4d\xf7\x87\x57\xf4\xa6\xb0\x71\xd0\xd4\xdd\x75\xa0\xd9\xee\xd6\x97\xab\x40\x57\x3a\xec\x2a\x2e\x8f\x0c\xd0\x73\x9f\x9a\x53\x2d\xf7\x15\x2c\x5e\x29\xd6\xcf\x38\xf3\xdf\x79\x47\x4f\xa7\x3e\x66\xfe\xca\x3b\x7a\x2d\xec\x2d\x62\x97\x69\xe6\xfc\xfc\x2c\x29\x73\x69\xd1\x5e\x4e\xc0\x61\x9a\xf0\x54\xb7\x7a\x78\xc5\xcc\x74\x9c\x79\x43\x3f\x85\x19\x24\xd7\xa5\x2e\x17\x02\xfb\x37\xba\xb2\x88\xd0\xc0\xfd\xe6\x29\xdc\x79\x00\xde\xed\xac\xeb\x73\xfb\x65\xc1\x70\x33\x66\x88\xde\x1c\x05\x65\xb4\x57\x35\x1b\xe7\xa0\x3d\x8c\xb3\x43\x93\xe8\x8d\xaf\x61\x54\x8f\x21\x75\x04\xc8\x35\xe0\x63\xdf\x19\x0d\x37\xf6\x2c\x7e\x87\xb1\x7e\x71\x6f\x58\x5e\x0f\x57\x2c\x30\xd7\xf6\xad\xad\xbc\x3b\x51\xa7\x51\xca\x43\x51\x87\x59\xf1\xd8\x82\x79\x65\xeb\x28\x60\xf8\x6f\x09\xce\x24\xd1\xd6\x5f\xa9\xc1\xf5\xf5\xb2\x5f\x70\xa1\x8b\x78\x64\xbd\x1d\xe6\xc4\x62\xb2\x7d\xc2\xe2\xf5\x20\xa7\x72\x65\xbd\x75\x2e\xbd\x8d\x8c\xc5\xb7\xe7\xea\x82\x7d\x7d\xcd\xef\xe9\xe8\xed\x18\x7d\xc4\x45\x21\xad\x8b\x0d\xeb\xe6\x62\x43\xcc\x63\xd2\x8b\x1a\x00\x73\x4c\x26\x21\x5f\x69\xa2\xab\xa9\x72\xc4\x4a\x11\x1b\x89\x30\x4d\x5a\x70\x0a\x74\x1d\xa7\xb4\xe1\x51\x69\xe2\xdc\x98\x2e\xea\x3f\x23\xac\x12\xc5\x5f\x9d\x5f\x71\xbd\x4e\x63\xb6\x61\x7e\x3d\x6a\xa8\x2e\xcc\xc1\x74\x83\xe8\xfa\x02\xbc\xb8\xe0\xa1\xfa\x0e\xb0\xc9\xb1\x7f\xea\xb7\x4f\x67\x98\x3d\x63\x7c\xcb\x02\xca\x0e\xb6\x79\x2e\x72\xed\xf1\xa5\x09\x9b\x7f\xb0\x77\x97\xa6\x9b\x3b\x26\x46\x74\x4a\x77\xf6\x93\x5b\xbc\x18\x02\x2e\x6d\x9c\xe7\xe6\xca\xec\x6d\x6f\xcc\x78\xee\xd4\xd1\x1b\x66\x7b\x6e\xb2\x5b\x2e\x2e\x36\x35\x93\x9d\x30\x21\x02\x84\xaa\xb8\xba\x58\x8c\x53\x13\x4f\xfe\x8e\xc2\xfd\x12\x4b\xce\x17\x56\x79\x34\x4e\x1e\x30\x66\x9f\x77\xd0\xfd\x05\x7b\x77\xb1\x5e\xef\x46\x52\x15\x31\x10\xf7\x91\xef\xda\xab\xfb\x09\x37\x82\x38\x99\x37\xbe\xe5\xed\x6b\x16\x86\xea\x43\xcd\x59\xdc\x6b\xcf\xfd\xd9\x7f\x7d\xf2\x97\x38\x80\x47\x36\xb1\xf9\xfe\xfe\x15\x76\x00\x9a\xf9\x63\xff\xed\xbe\x0e\x8b\x87\x77\x52\xac\x61\x8f\xc9\x60\x57\x98\x7e\x5e\x7f\xde\xb4\x9d\x63\x15\x7c\xdb\x6e\x0a\x09\xc8\xf9\xc5\xaf\x30\x3e\x1f\x58\xd2\x6f\x0b\x0e\x6f\x5f\xc4\x5e\xcf\xde\x2c\xce\xf9\x9b\xb7\xb1\x16\xaf\x5d\x45\x67\x16\xd1\x37\xaf\x79\x0f\xed\x27\x8b\x3b\xc2\xbd\x49\xf3\x33\xe4\xe1\xb1\xf9\x0d\xac\xe2\x05\xa7\xf8\xc6\x09\x76\x95\x5f\x7e\x7c\x9a\xbf\x9d\x5f\xbd\xb9\x03\xed\xf7\x13\x23\x15\x4e\x7b\xcf\x30\x67\xe2\x09\x01\x8f\xde\x12\x03\xe7\x31\xf3\x80\xea\x89\x88\x58\x5e\xc5\xae\x78\x4a\x5b\x67\xae\x81\xc2\x4d\xa1\xce\x07\xd8\x37\x7e\x64\x06\xea\xfc\x5e\x0b\x3e\xaf\x0e\xe7\xad\xe0\xa2\x3e\x52\x6c\xf0\x56\x9a\x42\xbd\x5a\x87\x94\xb0\x19\xe1\x95\x8c\xb2\xe3\x4e\xd6\xe9\xcb\x78\xc8\x7b\xc1\xad\xdd\x47\x97\x1f\xf6\x87\xa7\x89\xcb\xdd\xc5\x95\x21\x64\xcf\x24\xce\x79\x88\x38\x35\x13\x39\x98\xd6\xc5\x97\xef\x56\x67\xaa\xd0\x72\x35\x75\x30\x19\x15\x4e\x30\xf0\xfb\x04\x49\x5d\x4a\x24\xb6\xba\x02\x98\xf1\xf2\x92\xb1\x57\x9f\x82\x5f\xdc\xfc\x53\x63\x85\x87\x4d\x8e\x35\x1e\xf7\x80\xda\x4b\x8d\x3f\xec\x8f\xc7\xfd\xe7\xcb\x96\x74\xe5\x3d\x42\xae\xce\xa6\xa4\xf9\xb3\x27\xa4\xae\xbd\xae\x3b\x50\xa3\x28\x79\x4e\xe6\xd0\x45\x49\x96\xd8\x43\x67\xbb\x57\xf5\xd1\x13\xa3\x32\x28\x6b\xa0\xde\x08\xf6\xfc\x93\xa0\x1d\x87\x23\x9e\xbf\xa4\x84\x2f\xa2\xd8\x70\x71\x19\x10\xe7\x2f\x31\x31\x8e\x8a\x01\x51\x01\xff\xad\x60\xcf\xea\xbd\xe8\x6f\x1f\xaa\xd2\xdf\x8e\x51\x37\xff\xf2\xe1\x2d\x06\x55\x2a\xc1\xa3\x57\xee\x1e\x28\x3b\xbc\x3b\x9b\x19\x12\x3e\xd0\x9d\x75\x73\xa6\x70\x9c\x14\x4f\xc0\x5f\xce\x48\x08\xec\xc6\x19\x12\x1a\x55\x3a\x79\x7c\x33\x5c\x4f\xcb\x3b\xfa\xca\x5f\xed\xcb\x2e\x13\xc5\xcc\xdd\x57\x06\xc4\xe5\x17\xaf\xf4\xf0\x95\xf1\x80\x79\x54\xee\x36\x5d\x57\xbc\x2c\x4a\x5e\xc0\xf3\xbb\x83\x9b\xab\x47\x70\x73\x1f\x0c\x6e\xee\x7b\xfd\x4c\x38\xaf\x44\x29\x1d\xb5\xba\xf8\xb7\x9e\x17\xf3\xd2\x74\xfe\x8a\x82\xd1\x7e\x5e\x09\x2a\xbe\x6c\xc7\x23\xc3\x63\xdf\xec\xe7\x86\x07\x17\x63\x78\x28\x91\xfc\xc6\x6b\xc3\x71\x67\xf4\x03\x68\x44\x00\x53\xe9\x6c\xad\x86\x75\x25\xaa\x41\x69\x9d\x04\x40\x7b\x91\x6a\x4d\x35\x1e\x46\x32\x24\x04\x17\x09\x5b\x7e\xf1\x36\xb1\x11\x3c\x52\x43\x0b\xb7\x40\x54\xb5\x4c\xea\x94\x54\x43\xe7\x0f\xae\xba\x9b\xfd\x61\xfb\xb2\xdf\x1d\x57\x33\x8b\xef\xf8\x5a\xbf\x06\x5f\xd2\xf4\xfa\x88\x9e\xe9\x96\xd7\x2d\x5a\xc3\x90\xe1\x15\xd1\x94\x15\x71\x7e\x24\x5c\x1b\xbb\xf3\xab\xd3\x95\x55\x68\x7e\x89\x5b\x5c\x5b\x6f\xae\x2c\x5a\xf3\xa3\x6f\x7e\xac\x5f\x59\x99\xe7\xa6\xc0\x03\x1d\xba\xdd\xed\xd6\x33\x23\xb2\x14\x0f\xfe\xd8\xf3\x6b\xfe\x4c\x3f\x76\xd4\x03\x8c\x7a\xd4\x25\xd1\x05\xfd\x00\x0b\xe6\x3a\x56\x2c\x6a\x86\x55\xd0\x38\x07\x29\x67\x07\xc6\x95\xae\xbe\x32\x30\xae\xec\x38\xd7\xc8\x3e\xdf\x49\x3d\xdd\x17\x8f\x10\xfe\x6a\xdf\x7d\x4b\x77\x34\xeb\x8f\xc7\xcb\xde\xe0\xd2\x6f\xd8\x3d\x5e\xbd\x96\x5f\xa1\xf4\x4c\xf7\x5f\xef\xad\xf9\xb5\x3c\x80\x25\x42\x29\x78\xa4\x57\x2f\xaf\x8b\x2b\x94\x9e\xdf\x6b\xae\x6d\x7a\x57\x76\xce\x2b\xcb\xcf\xec\xc2\xf1\x40\x37\xee\x9f\x8f\x73\xb3\xaa\x14\x33\x4f\x37\xcb\x62\x5c\x63\x48\x3a\x9e\xd5\xe4\xc4\x69\x4d\xe9\x1f\xb8\xf3\x5d\xe7\x3e\x67\x18\xaa\x5b\x1c\xd2\xfc\x02\xf7\x40\x63\x0f\xdb\x4f\x9b\x99\x41\x5b\x8a\x7b\x77\xf6\xd7\x75\xc6\x4c\x8f\xde\x18\xfa\xb7\x97\x8d\x32\xde\x0a\x51\xe6\x67\xca\x95\x01\x70\x95\x35\x99\x67\x42\x2e\x5f\xbc\xb8\xb2\xf9\xcc\x72\x2c\xaf\x9a\x0f\x57\x98\xa9\xd9\x49\xf2\x40\x2f\xb6\xc7\x5f\x26\x61\xb2\xd3\xe2\x21\xdf\xcd\x2c\x35\xa6\xf6\x5e\xa7\x21\xef\x0d\x34\x7f\x3d\xf3\x78\x49\xb0\xf9\xc9\xff\x0a\x16\xe3\x01\x1a\x1c\xf7\x5f\x2e\x29\x80\xc2\x01\x5e\xfd\xd1\x45\xf6\xca\x90\xbf\x3e\x5a\xe7\x47\xd4\xac\x25\xfd\x06\x3d\x67\xfa\xe7\xb5\x43\x7b\x6e\x10\xcf\x0e\xd7\xf9\x69\x70\x9d\xed\x9e\x99\xd3\x37\x46\xfc\xb7\x74\xe0\x69\x7d\x38\x6e\xeb\x39\xe6\x74\xb8\x72\xab\x2b\xe7\x7b\xe7\xca\xc2\xf3\x3a\xde\xf4\x46\x9f\x5d\x15\x5d\xb0\x61\x9a\x6e\x01\xbb\xce\xb2\x5e\x5f\x20\x2e\x6f\xbe\xde\x97\x57\xfa\xe1\xd1\xee\x79\x8d\x70\x77\xb3\x2b\x0f\xab\xdd\xd3\x76\xf7\x69\xf9\x75\x75\x5c\x1f\xce\xb5\x64\x33\x17\x47\x88\x5a\x9d\x7a\x26\x77\x29\xb0\xb3\xf9\x7e\x88\x5a\xb7\x1b\x45\xbb\xe1\x6e\xdd\xb6\x4b\x3d\x69\x4e\x5f\xfc\xef\xff\xdd\xcf\x56\xff\x69\x14\xee\xcd\x01\xae\x3a\x89\xa9\x33\x5e\xfb\x2d\x5e\xed\x8f\xd6\xcd\x5c\xaf\x9b\xf9\xd3\x28\xca\x61\xec\x5f\xe8\x4a\x6d\x5c\x57\x9b\xd0\x57\x84\x8b\x6a\x69\x73\x09\x06\xd7\x25\x33\x97\x49\x35\x8d\x0b\x84\x35\x0e\x7f\xc9\x73\x3e\xcd\x3e\x6f\x57\x02\x44\xb2\x4e\x22\x44\x24\xe4\xc7\x93\x8f\xb6\xc5\x5e\x6f\x8b\xfd\xd3\x88\x09\x7b\x55\xbc\x40\x5d\xe4\x69\xe7\x84\x45\x5c\x54\xae\x13\x71\x53\x1c\x60\xab\xa0\x38\x17\x46\xb9\x56\x06\x23\x74\x97\x21\xd6\x28\x57\xd3\xca\x22\x9c\x11\x08\xb0\xba\x13\x24\x39\xd4\xd6\x5d\x6f\x84\xfb\xd3\x14\xbb\x66\x2e\xea\xbb\x95\xe5\x77\x1f\xd9\x39\x82\xbe\xf6\x0c\x44\xa1\x4d\xed\x38\x5f\x56\xe4\xc8\xaf\x08\xdb\x4a\x68\xe1\x45\x4d\xbd\x59\x0a\x6a\x64\x74\x45\xe2\x6a\x6d\x18\x06\xa3\xe0\xc6\x5a\x13\x9b\x48\x3d\xac\x1b\xc9\xc7\x93\xd4\x4a\x6d\xe8\x9f\x06\x99\x00\x23\x1f\x23\x97\x9d\xb8\x5c\x89\xa8\x1b\xfc\x4b\x05\x1b\x2a\xc4\x3d\x0d\x3f\x41\x05\x78\xcf\xa3\xc4\xf2\xd7\x89\xe5\xbf\x85\x58\xed\x65\x48\x7c\x3b\x8a\x92\xc5\x0f\x26\x80\x4e\xfe\x57\x6d\x71\xa1\xe6\xa3\x0d\x0f\xd7\x1b\x1e\xbe\xa5\xe1\x27\xc6\x98\xfd\x1d\xb4\x2c\x5e\x6f\x59\x1c\xb7\xcc\x3a\x3d\x02\xc1\x48\x0c\x82\xe1\xcf\x41\x30\x5a\x89\xf4\xb3\x38\x4d\xbe\xe5\xfb\xf0\xff\xcb\x6f\x34\x30\x7e\xbb\x99\xb1\x78\xd5\xd4\x58\x3d\x4f\xd0\x77\x2e\xae\xf4\xa1\xa1\x50\xc6\xe8\x46\x86\x4c\x62\xe8\x86\x13\x37\x21\x33\x85\xa1\x72\x44\x5a\x6c\xc2\x6f\xde\x3a\x6e\xdc\x7b\x63\xb5\x30\xce\x34\xc6\x8b\xc8\x88\xff\x31\x6d\xee\x86\x00\x0c\x8d\xdb\x6c\x3f\x6d\xe6\x9b\xcd\x57\xfe\x6d\xfc\x3c\x48\xc8\x66\xff\x75\x9e\x8e\xb8\xf0\x3f\xef\xca\xfa\x79\xfd\xb4\x9d\x64\xfd\x98\xb9\xf6\xc7\x5b\x5e\xf7\x3f\xad\x77\xcb\xed\xe7\xd5\xa7\x89\xc0\x3f\x29\xee\xb1\x34\x4d\x48\x0d\xc7\x7f\x9f\x24\x67\x9a\x7f\x0d\x98\x9a\x76\xaa\x3c\xdd\x14\x90\x9a\xc0\x29\x81\xc1\x94\x2b\x6a\xbc\x53\x05\x7a\xac\x00\xc4\x84\x92\xba\x6c\x38\xa5\xab\xfe\x84\x8f\x5f\xc6\xb3\xce\xe1\xfd\xde\x6e\xfd\x73\x3b\x5d\x13\x70\x5e\x84\x08\x23\x9c\xb6\x17\xb6\x93\x46\xea\xac\x69\x0d\xd4\x8d\xf4\x59\xf8\xdc\xd0\xb9\xce\x7a\x6a\x7a\x79\xe9\x60\xa6\x6b\x20\x88\x4e\x12\xf7\x16\x1c\xae\xb3\x05\x05\x69\x95\x19\x6e\x4c\x47\x14\x3a\xcb\x2e\x45\xe0\x83\x19\x42\x9f\x43\xf3\x47\x29\x81\x6f\xb7\xef\xf9\xc3\x87\x66\x0d\x50\x89\x89\x52\x6e\x52\x5c\x80\x9a\x39\x06\x5d\xd1\x58\x75\xc4\x9c\x5b\xa1\x15\xd2\x47\xb4\xf4\x5b\xba\x80\x32\x49\x05\x80\x48\xa2\xab\xb2\x14\x21\xfa\xc0\x70\xda\x0e\x3c\x04\x15\xa2\xed\xb0\x86\x26\x59\xcb\xdb\x71\x3e\x01\xdb\x22\x39\xc2\x90\x44\x60\x92\x8a\xdf\x72\x60\xb0\xf2\xd4\xea\x24\x2c\xd0\xb8\x42\x16\x21\xb5\x21\x21\x57\x12\x92\x3d\x27\xe6\x4e\xf9\x37\x9f\x87\x8c\x2c\xac\xb8\xf7\x0e\x85\x3e\x2d\x0f\xeb\x2f\xfb\x33\xfa\x0c\x85\x43\x70\x98\x0f\x63\x50\x7d\xe0\xfe\xe7\x2c\x8a\xed\x42\x16\x50\x80\x54\xe6\x32\xf4\x5e\x10\x91\x7d\x4d\xb3\x52\xb0\xdb\x31\x42\x35\x4e\xd2\xe8\xb1\x46\x40\x1a\x84\xcd\xd1\x92\xc7\x79\x22\xe0\x98\xb3\x71\x25\xdd\x2d\x9c\x96\x0d\x8f\x96\x2e\x61\x9d\x46\xb2\x52\xd7\xca\x94\x81\xbc\x44\xe7\xc8\x79\xc6\xc2\xb5\xaf\xa5\x16\x11\x6e\xca\x78\x9d\xd1\x27\xa3\x07\x3b\xc5\x09\x1f\x8c\x42\x03\xf4\x01\x79\x04\x1c\xe4\xfa\xa0\x16\xb5\x56\x34\xfc\x8c\x25\x72\x5b\xea\xa6\x46\x5a\x2f\xac\x2f\xc1\x80\x34\x6e\x1d\x10\xfd\x01\xc0\x0d\xb8\x22\xdb\x22\xd4\x1c\x24\xb7\x74\x87\x0b\x3d\xd6\x3e\x12\x62\x21\xc7\xb3\xd4\x9a\x11\x19\x80\x37\x27\xf1\xb9\x3b\x7d\xb3\x6d\x26\xd1\xa0\x7c\x5e\x12\x51\x03\xd9\xb7\xce\x42\x06\xd1\x79\x11\xf5\x71\x9e\xd2\xe5\x5a\xe6\xde\x4f\x3c\x63\xac\x60\xe6\xd2\x50\x74\x35\xee\xd1\x0c\x8a\x83\xcb\xda\xd1\xf6\x5a\xf3\xa8\x03\x18\x1a\xa0\x71\x68\x89\xf6\xa9\xc9\x0e\xf1\x93\x65\x61\xca\x46\x64\x53\x7b\x0d\x5f\x15\xce\xc5\xa3\x01\x7b\x95\x6a\xa7\x91\x36\x16\xd9\xbf\x52\xf1\x04\xbc\x8d\xbb\xff\xe1\xf9\xd0\x1e\x97\x9f\xf7\x4f\x93\xd5\x77\x54\xd8\xab\xcc\xb5\xcb\x1b\xa3\x2d\x92\x70\x65\xd5\x00\xd7\x2f\xa4\x86\x86\x85\x0b\x05\xd1\x48\xf9\x4b\xef\xd6\x3e\x63\x87\x36\xe2\xcc\x5f\xb0\x38\x32\x5d\xf8\x1b\x9e\x66\x00\xb5\x18\x16\x19\xb6\x33\xe5\x39\x79\x41\x66\xd8\x5d\x18\x1e\x8c\xe6\x72\xdb\x95\x43\x37\x72\xa7\xe9\xed\x76\x77\x06\x8e\xd1\x17\x0d\xf0\xcd\x97\xae\x2e\xc5\x71\xfd\xc2\xa7\xc5\x70\x7e\x59\x86\x8a\x84\xb5\xd1\x8e\x34\x55\xc3\x69\x99\x75\x6c\x71\xec\xfd\x2e\x4f\xc5\x02\x22\x3b\x13\x88\x66\x83\xc9\x19\xb0\x10\xbc\x88\x67\x52\xa9\x00\xe3\x30\x9e\xbf\x04\x1e\x78\xdd\xbb\xf9\x9b\xd0\x99\x99\x34\xbc\xbb\xab\x59\x71\xb6\xc3\xbb\x17\x97\xe5\xdd\xcb\x87\xb7\x14\x8c\x6a\x1a\x15\xc0\xf5\xa4\x2f\x07\xe8\x09\x51\x72\x27\x2f\x51\x47\xeb\x65\xbd\xde\x9d\x19\xa8\xce\xaf\x0c\xae\xdc\xa5\x29\xe7\x8b\x5d\xb0\xb3\x7e\x5e\xbc\xd3\xcd\x65\x8a\xe9\x10\x9b\xba\x0c\x25\x0c\xec\xef\x0a\xb0\x3f\xee\x46\xa4\x75\x70\x97\x3e\x61\xc8\xc8\xda\x14\x28\x56\xdf\x74\xda\xbb\x52\x9f\x82\xbb\xb1\x49\x81\x96\x3c\xe0\xfc\x25\xa0\x78\x1a\x37\xaa\xc6\x84\x53\x71\x67\x7e\x7c\xf6\x94\x3c\x3f\x69\xf4\x6d\xd0\xc1\x7a\x55\x6f\x26\x01\xeb\x5d\xc1\x18\x9a\x6e\xd3\x73\x33\x9e\xb9\x19\xbf\x41\xb3\x2e\xe0\xf1\x6a\x8b\xc4\xc7\xec\x27\x4b\x3c\x86\x89\x23\x88\xbd\xc4\x71\xd0\xa9\x80\xef\x09\xed\xaf\x62\xf5\x15\x75\xb4\xd3\xcc\x61\x01\xb2\xf8\x2a\x6a\x60\x2d\xad\xed\xd8\x0e\xba\x47\x23\x1e\x47\x0b\x76\x73\xa7\xaa\x00\x1d\xce\x73\x6e\x32\x3f\xc7\xd4\x02\x12\xf9\x36\x9d\x7e\x5a\x4f\xa8\xf4\xd3\x98\xab\xb4\x46\xcd\x30\x49\x27\x69\xed\x64\xf8\x98\xee\xaf\x2e\x39\xa7\x0c\x3c\x88\x81\xda\xd3\x10\x4b\xe2\x02\x0e\x48\x3b\x8e\xfd\xa6\xa4\xc7\xa3\xa3\xcf\xb4\xfe\x3b\x3f\xb9\x09\xac\x1d\x67\x67\x62\xdc\x1f\xa9\xcd\x28\xbf\x44\x37\x0c\xcd\x09\x35\x99\xf2\x5d\x1b\x4c\xc8\xde\xae\xc1\xde\xa4\xb4\x6f\x44\x5d\x03\x68\x94\x5d\xc0\x87\x34\x74\x5d\x6a\x78\x0f\x76\xce\x2e\x4e\x92\xd5\xcd\x33\x99\xa6\xac\x9b\x8b\xa8\x39\xe5\x54\x23\xac\x9e\x77\x7c\xcb\xe8\x8d\xb6\x46\x72\x34\x12\x3f\x05\x52\xc1\x35\xc4\x16\xdb\x92\xbc\xb1\x46\x38\x55\x02\x16\x0b\x16\x11\x27\x14\xdf\x30\x42\x7c\xbc\x64\xd5\x6b\x45\x5c\xac\xd0\x41\x44\x7a\xa3\x0d\x22\xd8\x06\x49\xf0\x6c\x4d\x9d\x83\x5c\xee\x0e\x1c\x86\xb9\x98\xe2\xf7\xd9\xee\x7a\xea\xaf\x59\x0f\x9e\x9a\xda\x69\x61\x92\xa9\x2d\x72\xb1\x8b\xa4\x39\x67\x7c\x81\x8c\xd6\x0d\x67\xfe\x04\x26\x94\x67\x6e\xdb\xd7\x34\xb1\x93\xf0\x4c\x4a\x24\x12\x35\x97\xee\xca\x7d\xea\xae\x73\x6a\xd7\xd2\x28\x64\x97\xe3\x88\x54\xcb\x3f\x68\x45\x3b\xdf\x00\xe3\x8c\x2b\x37\x1a\x1f\x69\x18\x7a\x03\xf0\xa8\x18\x6a\x83\x0c\x4b\x65\xd8\x21\x4c\xea\x1e\x2d\x96\xeb\xdd\xd3\x19\x3d\xb8\x68\x50\x49\x18\x85\x7c\xa7\x34\x4f\x59\x5b\x9b\x31\x29\x4f\x92\x51\x7d\x13\xca\x00\x4d\x6c\x18\x61\xab\x38\x5a\x03\x29\x9a\xba\x87\xd6\x07\x9b\x6b\x89\x0c\x70\x12\x6c\x13\xe2\xe0\x02\xdc\xc7\x0b\x0e\x68\x03\xf0\x60\x5b\x32\xc5\x81\xb1\x22\x4a\xb7\x46\x10\x7f\x49\x4b\x4e\xf0\x22\x18\x24\xd1\xd3\x4a\x09\xe3\x15\x1d\x5b\x5d\x34\x25\x06\xbd\xa0\x54\x8d\xaf\x80\xb5\xc2\x67\x5a\x44\xdd\xe9\xf2\xd1\xa6\x60\x1e\xdf\xa9\x4c\xc9\x09\xcf\x48\x41\x34\x39\x7d\x14\xd4\x82\x28\x6c\x8f\x88\x4c\x87\x7c\x0a\x01\x19\x22\x35\x27\x6a\x00\xdc\x58\x12\xfa\xb6\xd7\x35\x88\xfc\x79\xf5\xb4\x3e\x27\x3c\x97\x0d\x16\x01\xe5\xcb\x06\xab\x79\xc7\xa7\x61\x28\x8d\x03\xc4\x55\x8f\x9c\x41\xe7\xc6\xa5\x0d\x0d\xd2\xd3\x1d\x4f\x09\xfe\xca\xfa\xf0\xe9\xf2\xd3\x5c\xc8\xdf\x0e\x0a\x2b\x38\x40\x66\x1b\xce\xe9\xb9\x91\x91\x84\x64\x1b\xc6\x39\x59\x3b\xe8\x0e\x20\x82\x9e\xb4\xce\x74\x17\xfb\x7b\x00\x05\xd3\x8a\x68\x0a\xef\x1e\xad\x90\xf1\x91\xca\x6d\xdb\x76\x7d\x31\x22\xbb\x52\xe6\xbf\x35\x18\x9b\x21\xa5\x56\xc1\x34\x6d\x3a\xc4\x51\x5a\xde\x18\xab\xb0\xf7\xfd\xb2\x1b\x99\x53\x9f\x04\xeb\xd1\x6a\x2c\xf7\xcf\xc7\x4f\xfb\x29\x42\xca\xfc\xe5\x2e\x40\xd8\x5a\x5b\x1a\xdc\x83\x6d\x15\x40\x13\xaa\x00\x67\xf5\xe9\x5d\xd0\xec\x29\xa7\xa6\xcf\x4a\x7b\xbf\x52\x87\x75\xbd\xde\x9e\x2e\xa9\x33\x94\xf7\xb9\xc0\x6c\x8e\xc3\x48\xd9\xe8\x4e\x22\xa4\xd1\x44\x83\x09\x28\x96\x4e\x77\x63\xe7\xfe\xa7\xdb\x2f\xcd\xf6\x78\xfe\xdd\x52\x38\x58\xe3\x90\x20\x19\x22\x50\xa3\x35\xa3\xaf\x9c\xa4\x4e\x9c\xdd\x09\xa0\x2f\x5a\xd1\x5c\xd1\xdd\x6d\xa7\xc1\xad\x3d\x67\x24\xc8\xeb\x3c\xda\x7b\xcc\x1c\x22\x63\xe8\x31\xcc\x82\x11\xe1\x81\x51\x74\xdc\x2f\x57\xf5\x71\x3b\x89\x0e\x3c\xbf\x30\x31\xd7\x86\xe2\xaf\x04\x78\xc1\xef\x99\xfe\xe8\x76\x53\x3e\xaf\x0f\xab\x49\x13\xb8\xa0\x50\x5c\x09\x97\x6a\xeb\x2a\xeb\x9d\x15\x3e\x57\x56\x1b\x2b\x42\xaa\x0c\x09\x64\x5a\xe7\x4a\x25\xd6\x9c\xe8\x98\x9a\x08\x30\x74\x5f\xc3\xe4\x46\x53\x27\xb9\x82\xc6\x6a\x01\x3e\xdd\x21\x11\x5a\x2c\x82\x2e\x08\xff\xf2\xde\x03\x3f\x6e\x63\x14\x4d\xe6\x5c\x9e\x0f\x90\x3e\xa5\x56\x49\xc4\x92\xbe\x46\x5b\xff\xf2\x9e\x3a\x50\x11\x37\x55\xe5\x4c\x6b\x46\x30\x95\xb5\x36\x8a\xa8\xab\x98\x81\xc5\x63\x5c\x95\xa2\x85\x79\x52\xea\x14\x37\x12\x28\x0c\x16\x8a\x02\x27\x68\x55\x71\xcc\x00\x20\xa5\x1b\xcc\xac\x3e\x08\xed\xa8\x3b\x02\x70\xa8\x16\xb5\xc5\xee\xef\xc0\x52\xd0\x63\xe0\xd3\x7c\x10\x65\xd3\x09\x7c\xa2\x1d\xe0\x6a\x8d\xd0\x31\x34\xb4\x8f\xe8\x8d\x0e\xc8\xa6\xa5\x68\x3f\xdb\x48\x6a\x52\xcc\x54\xf1\x3a\x68\x74\x25\x6a\xc5\x7a\x23\x34\xf4\xe5\xbd\x51\xc4\x10\xa4\x06\x3a\x91\x46\x46\xb4\xb3\xb6\x91\x38\xa9\xe4\x90\xd0\xdb\x7a\xea\x02\x66\xaf\xa0\x05\x20\xf6\xee\xb6\xec\xc3\x7d\xb8\x5c\x35\xc7\x8b\x8e\xe5\xc2\x41\x8d\xeb\x72\x4d\xbc\x23\xf4\x01\x3c\x4e\xe9\xaf\x95\xe5\xb7\xec\x0b\x70\x36\x46\xd6\x6d\xbb\x93\x3e\x01\x5f\x67\x62\xa6\x09\xd6\x74\x3a\x90\xf9\x10\x99\x1b\x59\x36\xc1\x1d\xce\x24\x41\xe3\x47\xce\x84\xa5\x90\x5e\xde\xeb\xd4\x41\x64\x5b\xe8\x26\x91\xc5\xfb\x42\x89\xb6\x98\xd1\xa2\x25\x51\x8a\xee\x68\xd1\x0a\xe9\xd6\xbb\xcd\x6a\x57\xaf\x2f\x69\xda\x5f\x18\xd3\x15\x59\xe0\x7c\x6e\x18\xd9\xbc\xa1\x7f\x43\xc3\x45\xc0\x3b\xcf\x0d\xb4\x2a\xa1\xe1\x0c\xbe\x71\x30\xab\x5c\xef\x90\xd0\x51\x3c\x74\x1d\x32\xa0\x1c\x87\x6b\x1d\xe2\xd2\xd0\x21\x76\xd2\x21\x8f\xa5\x3d\xbd\xd1\x21\x8b\xcb\x1c\xa8\x8f\x91\xf2\xe3\x61\xbf\x9b\x19\x9c\xa5\xb8\x4f\x63\xe8\x42\xee\x92\x4a\xd8\x20\xa2\x16\x45\x73\xe5\x5d\xcb\x8d\x2c\xa3\xd4\xbb\x93\x31\x8e\x13\x1c\x82\x35\xf0\xda\xcc\x8f\xbb\x61\x59\xbd\x90\xd9\x7d\xaf\xbe\x2f\x7a\x48\x4e\x44\xa6\x02\x9c\xb7\x39\x25\x1c\x49\x9a\xb3\xb4\xc8\x33\x19\xfa\x38\xa9\x59\xb1\xb8\xcd\x3c\xd5\x8e\x6e\x5e\xb4\x93\x0d\xa0\x3d\x5b\xf5\x79\xf3\x22\xb9\x5d\x85\xe2\x66\x8e\x7a\x3d\x42\xeb\xc3\x34\x4c\x67\x52\x3a\x70\xe0\xc9\xf5\x04\xeb\xa2\xfb\xda\x61\x80\x20\xf5\x81\x9b\x50\xad\xed\xf5\x09\xa2\x77\x47\xff\x1d\x91\xfd\xdb\xc9\xb5\x3f\x93\xde\x46\xa5\x03\xef\x53\x12\xdb\x8d\xb4\x58\xd0\xcf\x75\x48\xdd\x43\xb1\x75\x7a\xb8\x7b\x04\xe0\xed\xf4\x1c\xae\x77\x97\x25\xf2\xec\x25\x65\x65\xb8\x28\xce\x9c\x31\x17\x09\x1b\xb1\xe7\xe8\xa8\xae\x05\x75\x42\x17\x32\x27\xfc\x1b\x35\x43\x43\xc3\x4a\xf4\x09\x2e\xfe\x62\x93\xe6\x70\xb0\xa0\xef\x37\x73\xc8\xae\x77\xc8\xbd\xab\xd7\x53\x4a\x73\xc1\x10\x7d\x09\x60\x7c\x06\xb6\x8f\x13\x60\xfc\xf8\x6a\x60\xfc\xc8\xc0\xf8\xdf\x17\x34\xb5\x5e\x1d\x9e\x96\x9f\xb6\x1f\x8f\xf5\x34\x93\xe9\x59\xf9\x90\x5d\xb7\xcb\xf6\xa6\x55\x6e\x5c\x97\x84\x82\xbe\xed\x6b\x69\x5c\xa5\x00\x72\x69\xaa\x60\x90\x11\x29\x55\x56\xa7\x28\x82\xaf\x94\xa6\x8d\x20\x1a\xc1\xa6\xc9\x2a\x24\x12\x28\xad\xa9\x72\x42\x0e\xd2\x58\xe5\x40\x1c\x50\xf0\x95\x8d\xd4\xf5\xd1\x14\x60\x44\x2f\x8c\xa7\x4f\x05\x98\x60\x33\xbb\x12\xda\x2e\x49\x76\xa7\x95\xb5\x45\xe7\x6b\xfb\xf0\x42\x33\x06\x56\x19\xe9\xdd\xdb\x4e\x9d\x23\xa6\x79\x7c\xda\x5e\x61\x0f\x4c\x01\xb8\x99\x9a\xb8\x78\xd3\x4b\x30\x11\x69\xdd\x72\x67\xfb\x19\xad\x38\xd6\xf5\x5a\xd1\x34\xb7\x9f\x5d\x2a\x63\xf9\x11\x46\xe6\xee\x27\x82\x8b\xb5\x34\x22\x22\x3a\x9d\x59\x48\x7d\xa1\x2b\xab\x61\x3b\x75\x1c\xb1\xee\x01\xc0\xdd\x20\x76\xdd\xd3\x41\x63\xce\xe8\x48\xdc\x9b\x41\x4a\x25\x93\x16\x57\xac\xa6\xb0\x69\x49\xfe\x10\x6c\x64\xb7\xad\x2b\x18\x47\x9f\xd7\x9f\x3f\xac\x0f\xed\x66\xfb\xe5\x7c\x84\x8d\xaf\x0c\x63\x2c\xb3\x44\xc4\x7d\x3a\xed\xed\xa2\xf7\xb7\x65\x41\xb2\x93\x5c\xe9\x3d\x91\xd3\xc0\x34\x58\x7f\x8d\xc8\x09\xb9\x54\xd9\xb0\x8d\x18\x3e\x64\x56\x39\x69\x85\x3c\xe1\x57\xe8\xef\x07\xfa\x3f\x9a\x52\x1d\x0d\x3d\x1e\x56\xa7\xb3\xa5\x64\x54\x7a\x39\xbd\x82\x1b\x1b\x57\x38\xc2\x79\x74\x4e\x97\x1f\x9e\x06\xac\x1e\x2d\x6b\xf3\xe0\xcb\xf2\x1b\x0f\x4b\xec\x92\x83\xed\xb9\x8b\xc5\xd7\x34\xb4\xf8\xbb\x96\x7b\xaa\x04\xfb\xe3\x91\x3b\x84\x6c\xb7\xbb\xfd\x84\x86\x5c\x30\xa4\x0d\x33\xaa\x87\x00\xe9\x90\x3d\xda\x01\x0b\x44\x14\xf8\x8f\x11\x24\x48\xdb\x43\x81\x30\x00\x9c\x85\x16\x31\xbd\xf1\x2d\xc8\xc6\x6d\xdc\x1b\xdf\xa2\x59\x4c\xbb\xf3\x96\xc5\x23\xaf\x79\x7b\x93\x7e\x0f\x59\x7d\xeb\x55\x3b\xe5\xc8\xdb\x41\xef\x42\xab\x46\xad\x91\x50\xcb\x30\x38\xad\xe7\x1f\xc8\x2d\x85\x91\x08\xe1\x64\x94\x10\xa8\xac\x26\x30\x9d\x1a\x6d\xeb\x44\xd5\xd4\x5e\x01\xe0\x1c\x47\x4e\x6f\x07\x59\x9c\x93\xb6\x8c\x05\xce\x13\x5b\x1d\x41\xdb\xcb\xb5\x12\x73\x34\x7c\xbb\x0a\xa5\xcb\x8f\xed\x32\x47\x99\x75\x6a\x19\x09\x9b\xdc\xe2\x5b\xd4\x28\xed\x71\x16\xf6\xfa\xfc\x42\xaf\x11\xfa\xd5\x6b\x7d\x25\xf5\xf5\xdb\x3a\x0f\x86\xb6\x60\x39\x31\xb5\xd4\xd0\xbc\x47\x91\x1c\x8c\x6d\x1a\xd9\xcb\x62\x22\x46\xed\x64\xfd\xa6\xb3\x94\x5f\xed\xee\xc5\x5b\xfb\xfb\x66\x17\xc0\x9a\xbb\xfc\xb8\xaf\x9f\xdb\x65\x7b\x3c\xec\xa7\x2a\xd5\xb9\xab\x43\xc8\xaf\x8a\xa7\xc4\xe6\xfd\x62\x4d\x9d\xcd\x1f\x79\x82\x49\xf6\xf6\x74\x4d\xa0\x69\x97\xaa\xb6\x3c\x50\xfc\x0a\x46\x57\x67\xd2\x6e\x16\x7f\x98\xee\x7e\x78\x06\x24\x3f\x2a\x9f\x9d\xeb\xa8\xf6\xcb\x2b\x1c\x3b\x17\x37\x3c\x3b\x1f\xa6\xef\xd7\xf5\xea\xa7\x6b\xd4\xe5\x6b\xbd\x64\x49\xa3\xa1\x23\x54\xd7\xde\x69\x1a\x3d\x96\x2c\x07\x72\xb7\x7d\xeb\x8a\xe8\xfb\xab\x38\xad\x7e\xc7\x7e\x5e\xfc\x76\x1d\x7d\xb3\x87\x36\xab\xdd\xa7\xf5\x72\xb3\x6d\x8f\xfb\xc3\x38\x7f\xe5\xf9\x85\x21\x57\xa0\x89\x0d\x24\x1d\xcb\x8e\x1d\x5d\x66\x70\x17\x1a\xa9\x2d\x34\x9e\x69\x63\xee\xd9\x54\x36\xab\xe3\xf4\x63\xc7\xb1\xf5\xdb\x69\xb0\x46\xc8\xae\x4f\xdb\x90\x2f\x9e\x65\xc4\x8d\xb9\x91\x2b\x0b\x9c\x55\x0a\xa4\x53\x77\x67\xf7\xe4\x88\x0d\x7d\x9d\xee\xca\xe4\xdc\xe7\xe2\x23\x9e\xec\x42\x5d\x75\x97\xbf\xdc\xac\x8e\x4b\x76\x28\x3c\x6b\x63\x5f\xda\xf3\x97\x7f\xe7\xfa\x2d\xf7\xcf\xc7\x66\xbb\xbb\x52\xcf\xe1\x6a\x5f\x5f\xa2\xbc\xf1\xa1\xf0\xb5\x25\x05\x03\x38\x85\xfc\xf7\x24\xf8\x7a\x92\x96\xa5\x9c\xf7\x06\x4b\x1d\x62\x63\x0c\x71\x80\x83\x13\x9e\x81\x72\xde\x87\x33\x64\xff\xfb\xdf\x59\x7e\xd8\xff\x7c\xfe\x2d\x2e\x9b\xa6\x78\x1e\x27\xb9\xd1\xf7\x92\xdc\xd0\x82\xe1\x6e\x6e\xec\xb7\xfd\x74\x66\xf8\xb8\x91\x7f\xe9\x7d\x3e\xae\x6b\x44\xd7\xe3\xcb\x0f\xcd\x6a\x77\x41\xd2\xb9\x3b\xfa\xfd\xf0\x7b\xf0\xa2\xfc\x21\xe5\xa7\x31\xfe\x77\xdd\xea\xb8\xf2\xf5\xf6\x50\x9f\xcd\xc8\x71\xf1\xb7\xf5\xde\x77\x56\x0e\x6d\xd6\xa7\xc3\x7e\x77\x0e\x83\x31\x2d\x2e\x01\xbc\x59\x58\xef\xfa\x74\x16\xa3\xac\x16\x6c\x9c\x66\x37\xa5\xa6\x1c\x1f\xfa\xea\x39\x90\xc1\x59\x79\x4f\x40\x9b\x5c\x33\x18\xe3\xcf\xcd\xf2\x39\x09\xaa\x08\x0e\x77\x3e\xbb\x6d\x9e\x96\xf5\xea\x30\xed\xb3\xa1\xb0\x77\x0a\x30\x1a\xc9\xae\xd9\xc5\x89\xb6\x72\xcf\xc1\x87\x88\xce\x83\x4b\xb0\x82\x83\x50\x0e\xa2\x4b\x54\xaf\x55\xac\x43\xaa\x94\x42\xbf\x69\xe3\x2b\x63\x8d\x70\xae\x4a\x0c\xef\x07\xd7\xc5\x82\x96\x2c\x35\x5c\x36\xee\x70\x24\xb5\xe4\xc8\x47\xb8\x2c\xe3\x7e\xa9\x63\x15\x83\xb3\x22\x98\x4a\x47\x97\x85\x8c\xae\xca\x39\x9a\xc2\xc5\x96\x8f\xc8\xa1\x1e\xb2\xab\x88\xec\x6a\x82\xbb\x24\x6e\x2b\xaf\xc7\xdb\xf5\x62\x34\x71\xae\xb2\x41\xa5\xfe\xf0\x53\xa9\xbb\xca\xc8\xae\x36\x5d\x65\x98\x9d\x2e\x9f\x79\x79\xef\x52\x16\xc6\x19\xe4\xfe\x85\xbb\x56\xe2\x0c\x99\xf4\x17\x68\xbe\xa6\xca\x84\x88\xc2\x4a\x2b\xef\x89\xad\xaf\x92\x85\x47\x1c\xfc\x4f\x38\x1c\x52\xd5\x32\xa6\x2a\x25\xf6\xd0\xd1\xce\x57\xde\x18\xe1\x55\xa5\x5c\x82\xbf\x9d\x15\xb8\xc9\xc2\x9b\xcb\x7b\x24\xb0\x0a\x4a\xd0\x27\xd8\x89\x0d\x5e\x5e\x42\xbb\x96\x33\xdb\x0b\xed\x16\x35\x32\xcc\x9b\x4c\xd2\x00\xdf\xab\xb5\x30\x8e\x3a\x17\x7e\x6c\x22\x98\xda\x3a\x61\x95\x88\x09\x96\x30\xda\x90\x52\x9d\x54\x65\xb2\x41\x2e\x4e\x5f\x69\x05\x13\x7f\xa5\x1d\xed\x66\x96\xeb\x6a\xe1\xc0\xe4\x91\x7a\x0b\x5e\x7d\xf4\x6a\xa8\xee\xe0\xd8\x44\x0d\x68\x65\xa7\x6f\xa4\xb3\x97\xf7\x3a\x06\xc0\x61\x2a\x78\x3b\x1b\x01\x44\x62\x61\x62\x0b\x57\x34\x53\xb2\xff\xc2\x7b\x07\xa8\xda\xdd\x39\x54\xfe\x05\xc0\xf8\xe5\xbd\x49\x76\xf4\x16\xa4\xd1\x46\x72\xe3\xd6\xb0\xe3\x12\x9e\x8c\x8b\x56\x96\x67\xca\x5f\x4b\xaf\x43\x11\xdd\xfc\xc0\x34\xfa\x78\xd8\xae\x77\x4f\xcd\x2f\x17\x53\x69\xb8\xd0\xeb\xd0\x93\x7f\xab\x9e\x24\xea\xb7\xbf\xc4\x41\x03\x6a\x6b\x20\x93\x3b\x61\x38\x55\x36\xd2\xb7\x73\xd6\x76\xcd\xa9\x74\xa2\xeb\xfe\x6a\x9a\xfb\x1c\xe2\x40\x83\x36\x72\xbe\x7e\xe7\x79\x28\x07\xce\x91\x43\xcb\x42\xc4\xf2\xb0\x18\x65\xe1\xc6\x8b\xbc\x88\x60\x3e\x92\xd0\x41\x78\x2b\x6c\x16\x21\xd0\xc3\x11\xa9\xd5\xb3\x2b\x87\x8d\x74\xf0\x73\x8c\xae\xe9\x92\x34\x72\x96\x1f\x64\x79\x2b\xe9\xbc\x39\x1f\x9b\x2b\x88\x4f\x21\x0f\x19\x6c\x68\x0b\x29\x9e\xa6\x8a\x59\x59\x1d\xef\xf1\x1d\x87\xfd\xe7\xf5\xf2\xb0\x5e\x3d\xad\x0f\xe7\x9e\xf1\x73\x17\x27\x3e\x24\x00\xa3\x84\xc0\x40\xbf\x86\x90\x7f\x13\xaf\x24\xd6\xbb\x1a\xc5\x74\xd5\x8b\x24\xce\xc4\x1e\xb1\x26\x21\x46\x61\x94\xdd\x68\x0f\x6b\x13\x4c\x77\x27\xdb\xa1\xe9\xa8\x3c\x7f\x81\x18\xcc\xf3\x0b\x37\xe9\xd3\xac\x26\x3e\xf3\xe5\xfc\x0f\x05\x79\x7a\x8e\x8c\x38\x86\x44\x84\x46\x25\x7a\x66\x55\xe9\x9f\xde\x63\x6c\xb4\xa1\x8f\x13\x55\xf5\x97\xae\x67\xb0\x9a\xbc\xea\xae\xef\x19\x55\xe6\x0c\x52\x74\x54\xd6\xdb\xde\xe1\x7a\x9f\xf3\xa9\x63\xeb\x4f\x53\x98\x8d\xf1\xa5\x82\xc3\xc9\xe0\x19\xe0\xe6\x40\xd2\x7b\x3c\x41\xb3\x6f\x27\x83\x9f\xcf\x7f\x2f\x54\xda\xb7\x6b\x62\x4e\xbe\x9c\xbb\x78\x9d\x5d\x18\x82\x07\x63\x3c\xc1\x5d\x98\x7d\x70\x8b\x0b\xae\xd1\x6c\xbc\xee\xb1\x9a\x07\x68\xe2\x93\x4c\x5d\xe0\x4a\x0f\x4e\x0c\xab\x4f\x70\xbd\x27\x6e\x31\x7c\x9d\x8c\xd9\xd0\x30\x97\x5a\x17\x6d\x5f\x49\x8b\xbc\xb1\x66\x40\x72\xed\xbf\xde\x23\x10\x9f\x7f\x5e\x8f\xbc\x83\x47\x9f\x1f\x9b\xdb\x86\xaf\xf7\xa6\xdf\x5b\x5f\x5f\x14\x3e\xfe\xda\x02\x34\x48\x8a\xf3\x02\xc3\x8c\xd0\x73\xe6\xe7\xf3\x98\xd0\xd3\xec\x9f\x9f\xa6\xbd\xf4\x3c\xf8\x72\xfe\x61\x52\x86\xa3\xda\x33\xc2\xcd\xa4\xb8\x37\xc8\xe8\xa8\x6b\xa8\x75\xbd\x25\xc6\x09\xbe\xcd\xad\xe4\x5f\xec\xe9\xbc\x91\xd8\xcc\x4a\x30\x26\x47\x4b\x88\x14\x6a\xe9\xe0\x13\x1e\x4b\xb2\xe0\x64\x4a\x7e\x3f\xa1\x6b\x09\xed\xeb\x59\x3a\xe4\xb6\xfc\x2c\xda\x58\x9d\xbe\x7b\xfe\x51\x26\xc1\xd3\x7e\x77\x49\x17\x2e\x9c\x8a\x7c\x9c\xdd\x70\xc8\x4a\xcb\x50\xe2\xaa\x91\xce\x09\xe7\x46\x02\xfb\x1f\x6d\x6c\x3c\xed\xbf\xee\x9a\xfd\xea\x62\xac\x8f\x2e\xf4\xbc\x1f\xf4\xfb\xc1\xb1\x8e\x32\x9c\x4a\xa4\x4c\x33\xb8\x87\xfd\xe1\x5a\x3f\xcd\x9d\x34\x2a\x2b\xe2\x23\x1c\x38\x37\xd2\xc6\x5a\x42\x59\x0c\x4d\x14\x71\x72\x1c\x5e\xdd\xf6\xaa\x61\x84\x0d\x19\x55\x20\x05\x87\x3c\x3d\x08\x23\xf0\xb1\x29\xac\x39\xe7\xf9\x04\x7b\xa0\x6e\x34\x19\xd2\x86\x36\xf4\x07\xe7\xce\xfb\x94\x05\x47\x59\x5c\x11\x1d\xd5\x86\x43\xa1\xac\xae\x41\x38\xe2\x61\x89\x7d\xb6\xc2\xcf\x65\x2b\xc7\x6a\xac\xf5\xa2\xe6\x70\x2a\x5a\x0a\x10\x1b\xa1\x23\xfd\xa8\xa5\xe1\x88\x0f\x38\xbb\x22\x90\x52\xdb\x86\x73\x59\xd6\x54\xc9\x20\x3c\x98\xef\x14\x84\xf1\xdf\xdc\x17\xff\xfa\xbc\x7e\xbe\x9c\x8c\xa5\x74\xb0\xac\x8c\xec\x39\x9d\xcb\x44\x3b\xd7\x98\x6b\x6d\xf1\xd8\x21\x88\x74\xa0\x19\xad\x25\x34\x8e\xb5\x7f\xac\x8b\xe3\xf7\x1a\xe6\x8b\x5f\x73\x9c\x3f\x7f\x99\x9d\xe3\x5d\xf1\x38\xa3\x27\xc2\xef\x8a\x53\x68\xd3\xfb\x82\x6e\x82\xa3\xfd\x7d\x93\xc2\x09\x51\x8c\x7f\xa0\x89\x7e\x26\x11\x0d\x32\x90\x85\x33\x4d\x6a\x72\x66\xa5\x13\x0e\x85\xb5\xbb\xd0\x50\xb1\x6b\x35\xdd\x7e\x4d\x4d\xd6\x6b\x8f\x89\x0e\xf7\xd8\x8b\x7d\xd3\xac\xe1\xd3\x3f\x11\x4d\xc6\xa5\x1d\x96\x59\x87\x63\x47\x0b\x11\xf3\xc8\x60\x85\xf3\xac\xef\x1d\x78\x67\xb0\x6f\x9e\xb1\x1f\x30\x66\x3d\xc3\x42\xa0\x43\x03\x09\xb3\x99\xe3\x9f\x39\xfd\xf8\xbc\xda\x7d\x22\xbe\xcc\x30\x53\x67\xe2\xcb\x35\xb5\xfe\xa3\x54\x58\xce\x64\x75\x98\xbf\x3c\x78\xdf\xf8\xd0\x8b\x69\x23\x09\xee\xdb\x2d\x0d\xaf\x6c\x32\xc0\x16\x60\x32\x7f\xb4\x6b\xee\x61\xc2\x02\xca\x7c\xd9\xac\xcf\x07\x45\x5f\xc8\xc3\x36\x32\xc0\xdd\x1b\x5d\x67\x54\x86\x0d\xf4\x8d\xae\x33\xca\xfe\x0a\x6f\xd1\x36\x3f\xd0\xa2\xbb\xae\x33\x60\x20\x5d\xaa\xb5\x42\x06\x98\x6c\x10\xbd\xcb\x2e\x08\x3c\xd2\x87\x65\x29\x0c\x6e\xee\xbc\xbd\xf7\xf9\xec\x46\x1f\xe0\x48\x41\x8b\xf0\xba\x04\xd7\x41\xe8\x5c\x19\xdd\x04\xa2\x4e\x12\x67\x09\x8b\x6a\xc9\x5f\x87\xd3\x03\xf1\xc7\xc5\x58\xd0\x16\x67\x88\xf2\x77\x7f\x18\x6c\x5f\xd6\xe7\x83\x00\x45\x45\x9c\x86\xf6\xa6\xd1\x91\x98\x76\xd3\x48\xa7\x05\x72\x84\x40\x63\x1b\x0d\x63\xde\xdb\x6c\x18\x8d\x85\xc5\xb1\xb2\x3a\x85\x28\x64\x88\x0d\x43\x2f\x0c\x8b\x59\xc7\xd8\x32\x56\x0b\x9c\x37\xf5\x49\x2b\xdd\xe8\x4c\xb4\xec\x59\xdf\x82\x6a\xc1\x4f\x87\x28\x42\x3c\xc3\x71\xb9\xdd\xb2\xcf\x9f\xd7\x53\x3f\xfd\xae\xe4\xb6\x7d\xb7\x93\x87\xe7\x2f\x14\xc3\xef\xe4\x02\xf0\x1d\x4c\x04\xfe\x67\xc3\x1b\xf8\xf9\xdc\xbc\x12\x0a\x32\x32\x2c\xce\x2c\x21\xf7\xda\xf7\xe5\xcc\x24\xd1\x95\xbc\xc5\x14\xa6\x55\x38\xe9\x6c\x1a\x1e\xb6\x5d\x0a\x99\xe2\xca\xae\x55\x17\xc5\x6f\xd2\x89\xb7\xac\x72\xdb\x70\xc9\xb9\xd4\x83\x88\x46\xd5\x61\x43\x60\xb3\x7e\xd8\xc4\x46\x2f\x7b\xa0\xed\xcb\xd5\xe1\xb0\xff\xda\x5e\x92\xa0\xbf\x30\xc6\x90\x2d\x3d\x03\x7c\x23\x0f\xdf\x23\x84\x42\xc2\x89\x92\x7e\x84\x92\xce\x95\xba\x98\x61\x90\x18\x15\x80\xed\xc1\xc4\xeb\x41\x7b\x64\x36\x77\x63\x11\xf7\x9f\xbf\x9c\xe1\x8a\x0f\x45\xa8\x51\xbf\x98\x6b\x38\xaa\x32\x2c\xc6\xe0\xb1\x69\x52\xef\x4f\xe1\xb5\x61\xff\x8c\xf9\xb1\xa4\xed\xa5\xfb\xfb\x64\x2c\x8d\xe3\x18\xb4\x9d\xdf\x8e\xee\x34\x66\xf7\x71\x7b\xf8\xbc\xa2\xad\x71\xb9\x7b\xfe\xfc\xe1\xac\x5d\x33\x57\xfb\x7c\xcd\xd6\xea\x0b\xe4\x8e\xd8\xeb\xda\xce\x8b\xb5\xcd\xe7\xc5\x34\xb1\xa6\xf3\x68\xa4\xfb\xec\x63\x38\x4c\xe7\xd4\xf2\xda\x20\xa0\xe4\x7b\x3f\xd7\x69\xd8\x88\x1d\xdd\x31\xc6\x48\xba\xa4\xef\xc8\x3d\xf6\x9e\x0b\xd2\x7e\x77\x5c\xd5\xc7\xe5\xe7\xd5\xb6\x99\x52\x70\x54\xcc\x33\x37\x30\xa2\x11\x7b\xd3\x47\x55\x20\x72\xa3\x2a\xa8\x46\x34\x29\xa1\x19\x81\x38\x41\xbc\x2c\xd8\xc3\x10\x0a\x5a\x9b\x29\x51\x87\x32\x04\x0e\x6f\x00\x3a\x4c\xd4\x8c\x28\x70\x5f\x45\xd2\x5e\x15\x77\xca\x52\xf7\xfa\x55\xc5\x99\xab\xb3\x7f\xc6\x61\x11\xbe\x3c\xce\x25\x04\x59\xa3\x8a\x40\x37\x74\x60\x6d\x80\xf5\x23\x9d\xa5\x03\xbe\x7a\x6f\x99\x64\xfa\x7e\xd9\x9c\xa9\x5f\xa6\xe5\x65\x4b\x60\xff\x3f\xc9\xa9\x3d\x13\xac\x37\x89\x46\x05\xa0\x94\x12\x7a\xdf\x37\xd6\xc0\x2b\x1c\xa3\xa1\xe6\xa4\xb8\xb4\x45\xb1\x60\x82\x7d\x9f\xa6\x2b\xe3\x4c\x48\x06\x77\x90\x81\x8d\xa2\x2c\x0a\xc3\x24\x0a\xc4\x10\x87\xb0\xc8\xe0\x04\x3f\x85\x3c\x31\x2c\xee\xc2\x65\xdb\x7f\xa7\x1e\x5f\x7c\xdf\x2e\x9f\xef\xf1\x07\x7a\xb1\xbd\xec\xc0\x76\x1c\x73\xe3\xf2\x09\x9c\x14\x49\xdb\x1c\x70\x27\x4b\xc4\x9d\xec\x42\xee\x64\x17\x73\x27\xad\x19\x05\xb9\xc1\xa0\x0c\x66\xca\x31\x9e\x1c\x8e\x2e\xb5\xe5\x67\x39\x43\x66\x4e\x81\x73\x24\xf0\xe4\x62\xe1\x8a\xe7\xfc\xa0\x49\xfe\x6d\x22\x46\xb1\x45\x24\x2f\x10\x63\x55\x22\x1d\x16\xa3\x9d\x03\xe9\x88\xba\x28\x88\x72\xff\x3d\xb2\xae\x77\xc7\x65\xbd\xff\xf2\xcb\x19\x69\x87\xe2\x71\x8a\x20\x68\xa8\x8c\xed\xe4\x10\xeb\x7a\x4f\x98\x59\x9b\x15\xad\xdd\xd7\x34\xe8\xf6\x5a\x20\x78\x9e\x91\x80\xe8\x43\x96\x18\xcf\x5c\xc0\x0a\xc0\x7f\x15\x5c\xa5\xe1\x99\x49\x14\xd8\x5d\x81\xb0\x34\xf2\xf9\x38\xd7\xf4\xe7\xe3\x94\x8f\x82\x52\xc2\xe8\x0e\x8e\xc0\xab\xa6\x83\xc1\x83\x9f\xa8\xeb\xd3\x72\x96\x4c\x98\x6d\x9f\x5d\x53\x94\x34\x90\x43\x66\xc8\xb6\xcb\x08\x39\x24\xa3\x4c\x03\x01\x3b\xd3\xc1\x9c\x9f\xe9\xe0\x7c\x75\xee\x67\x0a\xe7\x43\xa7\xdf\xf8\x16\xa3\x82\xb0\x2e\x2f\x1a\x43\xb2\xbb\xe1\x36\x43\xf1\xda\x61\x47\x34\xb2\xe4\xad\xe2\x36\x00\x66\x46\x40\xf1\x38\x8f\x9c\x78\xdd\xab\xb5\xd6\x54\x55\x03\x0f\x0b\xeb\x85\x8c\x8d\x57\x82\xe8\x8a\x43\xdd\x91\xcc\x00\xb3\x05\x26\xf3\xb1\x66\x74\xf6\x95\xed\xc4\xc1\x16\x52\x93\x65\xc8\x3e\x57\x5e\xf2\xd0\x90\xf8\xb2\x6a\x8f\xe7\x7b\xc5\xa8\xbc\x1f\x16\xc9\x9f\x6c\xc7\xb1\x04\x8e\xe0\x05\x9f\x58\xcc\xb5\xc5\xa7\xbc\x98\x1a\xe6\xcc\x58\x37\x63\xc5\x3a\x1b\x5c\x99\x62\xdf\x60\x16\x9e\x78\xb5\xdd\x31\x0b\xa7\x5c\x13\xd7\x41\x02\xae\xb3\x22\xd0\x77\x5a\xaf\xb1\x64\x06\xf6\x2d\x48\xf7\xb8\xde\xdd\xf1\xb0\x6f\x96\x5f\xf6\xdb\xdd\xf9\x8c\x1a\x95\xf7\xee\xbb\xc9\x0f\x9e\x08\x03\xd6\x56\x2b\xcb\x6f\xd9\x17\xb0\xab\xc2\x08\x1a\xab\xed\x4e\xba\x82\xdf\xc2\x9e\x33\xa4\xd9\x61\x4d\xa4\xec\xb0\xd5\x52\x40\x07\x27\xc4\x82\x9d\x80\x6c\x46\x27\x0f\xac\xb4\x3d\x15\x96\x4f\xcf\x5f\x9a\x6d\xbd\xba\x18\x64\xb3\x77\xf4\x32\x8c\x56\xb1\x4e\xec\x3d\x94\x45\x28\x50\xf6\x2e\xb7\xb2\xfc\x96\x7d\x01\xe7\xed\x2c\xa0\xf6\xf4\x4f\xdb\x9d\xf4\x60\x2a\x1c\xc5\x38\xd5\x60\x8c\x82\x28\x5a\xd9\x29\x14\xe4\x50\x74\x47\xcf\x30\x64\x43\x90\x00\xc8\x61\xe8\x4b\x9a\x8b\xda\x92\x38\x13\x6a\x19\x1d\x03\x64\x99\x24\x72\x87\xb3\x9b\x74\xeb\x9d\xd0\xb0\x42\xe0\x94\x6e\x5d\xd4\x92\x46\x1f\xf0\xa3\x3c\x3b\xb2\x94\x17\x95\xa8\x64\xa7\x31\xe7\xba\x68\xb8\xd0\x45\x93\x98\x53\x89\xb8\x70\x66\x83\xb8\x8b\xfb\x3d\xf3\xe5\x97\x0b\x87\xc2\xa1\xec\x8f\x33\x5e\xbd\x15\x56\xc7\x5a\x5a\x55\xc5\xc0\x8b\x0d\x00\xa6\x62\x65\x0c\xf5\x1a\x9d\xf8\x74\x92\x6c\xc3\xa1\x9b\xb2\x16\xb9\x32\x9e\xd8\x5e\xe9\x93\xe0\x1b\x16\xb5\x4e\x55\x8c\x09\xfa\x31\xda\xc3\x2a\x17\x8c\xa3\x9f\x56\x6d\x2c\xc3\xa2\xe5\xca\x1b\x05\x0d\x7c\xe5\xe9\x2d\xd2\xba\xca\xa8\x0e\xbc\xd2\xc1\x66\x5f\xa5\x6c\xb1\xc1\x55\xca\xb3\xcf\x58\x95\x15\x46\x5f\x12\x92\x57\x96\x5a\x7a\x57\xf9\xe4\xc0\x9f\x26\x23\x6c\xa8\x54\xa4\x71\x93\x8c\xc8\xea\x04\x06\xc8\x57\xc9\x07\x23\x62\x65\x82\x32\x56\xb8\x5c\x39\xa7\xb0\x74\x05\x57\x6b\x5b\xe9\x9c\xb5\xd0\xbe\x52\xc9\x45\x61\x5d\x65\x9d\x81\xb3\x5a\xa0\x7f\x6b\x63\x2a\x6d\x03\x70\x7a\x55\x15\x0c\x35\x34\xd2\x51\x05\x40\xbf\xe9\xbc\xa8\xa9\x82\x0a\x31\x8d\xe5\x07\x9a\x11\xab\x9c\x22\xaf\xcc\x2e\x6f\x24\xda\x4d\xe3\x4f\x64\x21\xad\xa0\xfe\x70\xf4\x93\x84\xf5\x5a\xfa\xca\xe9\x68\x92\xe8\x8e\x52\xbb\x2a\xc4\x50\xf2\x36\x7b\xa1\xef\x68\xaa\x0e\xeb\xb3\xa5\xa0\x14\xf4\x58\xc7\x16\x00\x3f\xf4\xe9\xdc\x65\x94\xb4\x59\xd8\xfc\x68\x46\x49\x78\xbe\xb8\xc6\xd8\x20\x8c\x0d\x4d\x22\x72\xab\x46\x1a\x44\x49\xd8\x50\xf2\x4b\x3e\x50\xc9\xe5\x6e\xfd\x75\xf9\x71\xdf\x4c\x73\x10\xcf\x5c\x1b\x72\xfb\x16\x85\x59\x18\xb6\xc6\x32\x41\x39\xae\x13\xa7\x3c\x6b\x21\x6c\xdc\x8a\x3f\x2d\x0a\x8c\xd7\xc4\x9f\x32\x17\x3d\x8d\x3f\xd5\x26\x15\x64\x4a\xc4\x6d\xdc\x69\xf5\xd3\xf6\xb8\x3c\x0f\x81\x1f\x97\x0e\xb0\x0a\x45\x99\x78\x11\x81\x5c\x94\x65\x73\x51\xcb\x10\x18\xe6\x9a\x5a\x04\x86\xb7\x36\xf5\xae\x00\x70\x98\x64\xd2\xe2\xd3\xde\x8b\x4a\xbb\xbc\xe9\xc2\x86\xcf\xf7\x3e\xa3\xdd\xbc\xe9\x01\xe9\x4a\x27\x1b\xe3\x89\x05\x14\x48\x68\xf9\x22\xad\xe4\xac\xe9\xa4\xa4\xa0\xbc\x5b\xf7\xa5\x0e\xcb\x7c\xd6\x80\x92\xa1\x87\x93\x6a\xe0\x24\xff\x69\x6c\xd4\x65\x3f\xc7\xe2\xb9\x4f\xbf\x7a\x87\xfe\x01\x47\x64\x2a\xe5\x9e\x03\x53\x3c\x82\xa7\x1e\xd5\x37\x44\xb1\x52\xed\xed\x24\xb9\x4f\xdf\x20\xfb\xa7\x69\x76\x9f\x62\x9f\xe6\x18\x18\x0e\x42\xf0\x61\x14\x9b\xf0\xad\x3e\x4d\x77\x6c\x52\xaf\x6a\x8a\x9f\xa4\xc5\xe9\x9b\xe2\xff\x34\xcd\x8b\xd3\x25\xcb\xc2\xd0\xe1\xa6\x68\x37\x09\xb3\x98\x17\x2e\xb5\x7b\x2d\xe7\xcb\x8f\x9c\x0b\x97\x8f\x34\x25\x4e\x92\xd6\xf4\x4d\x89\x7f\x9a\x66\xad\x41\x53\x68\x8c\x9b\x2e\xfd\x23\xfd\x1a\x06\x58\xb0\xf3\x03\xcc\xbc\x3a\x34\xa5\xc0\xb7\x7f\x43\xaf\x3c\x6d\x77\xe7\x4d\x41\xd1\x24\xa0\x74\x26\x7f\xe5\xef\x22\xce\x9b\x6a\xfb\xf1\xb0\x5e\x9f\xb7\x80\xcb\xee\x1a\x3e\x66\x03\x1f\xbf\x21\xb8\xf2\xf5\x31\xae\x9c\x74\xed\x56\x40\xe5\xa8\x76\xf7\x69\xd0\xac\x76\x4f\x6d\xbd\xfa\x72\x41\x88\xd1\x85\x3f\xcc\xe4\xda\x1f\xb6\x9f\xb6\xbb\x49\x36\xc0\xb3\xf2\xe2\x34\x02\x14\xd3\x26\x22\x0e\x5c\x43\x87\xd4\xf8\x24\x62\x68\xe0\xa4\xa1\x6f\xa6\x5f\xfd\xdd\x0c\xdf\x2f\xfb\xc3\xf1\xb0\x9a\xa2\x45\x4e\xcb\x07\x85\x66\xdf\x14\xed\x4a\x53\x3a\x90\xb0\xa1\x29\x0f\xa3\x55\x4d\xb7\xec\x07\x80\xa8\xee\x36\xe5\xb0\x3f\x9e\x73\xae\xa3\x52\xe6\x23\x58\xee\xd9\x74\x06\x53\x39\x49\xb7\xc8\xa0\x4f\x73\x9e\xb4\x7a\xb0\x1d\xf6\xff\x72\x34\x2d\x89\x7f\x03\xd8\x10\x83\x97\xd0\x6a\x78\x31\x8c\x79\x61\x2d\x89\x1a\x3d\xb4\xa3\xb5\x46\x18\x90\x71\xd0\x0c\x3b\x61\x7c\x07\x25\x60\x4d\x4d\x5c\xb3\x02\x94\x2d\x67\xb6\x43\xda\x17\xdd\x40\x6b\x6e\x52\x23\x93\x16\x49\xd7\x24\xac\x64\xa1\x85\x76\x42\xbf\xbc\xd7\x3e\x0b\xef\x1a\x93\x85\x49\x0d\x89\x17\x49\x93\xe8\x0a\xb7\xaf\x3e\x67\x84\xae\x25\x7f\x57\xd2\x87\xe9\xbb\x92\x3e\x4c\xdf\xb5\x6c\x36\x57\xec\x9f\x54\x22\x85\xa4\x4e\xf7\xd8\xd2\xfd\x97\x65\xfb\xaf\xcf\x67\xf6\xdf\x71\xe9\x00\xd2\xdf\x33\x09\x50\x99\x12\x93\xd0\x19\xb3\xbf\x85\x49\x78\xc4\x71\xa5\x9f\x0e\x77\x54\xb0\x4f\xab\x76\xf3\x61\x3f\xe5\xad\x47\x65\xbd\x1d\x11\x28\x80\x80\x85\x65\x8b\x98\x3e\xb1\x93\x54\x8c\xd0\x49\xeb\x02\x1a\xdb\x25\x17\xe8\x92\xf6\xb2\xd5\x6c\xf4\x58\x9f\x3d\xf3\xf2\x91\xdb\xd5\x3c\xae\x96\xcf\xed\x34\x0b\xcf\xb8\x70\x40\x4e\x54\xb1\x04\xfa\xc3\xfb\x5c\xeb\x20\x7c\x68\x7c\x10\xd2\x72\x76\x45\x4e\xe4\xa7\x68\x9c\x40\x27\x60\xe8\x47\x2d\x59\x0d\x70\x2e\xe2\x23\xad\xa4\x16\xc9\x09\xb8\x83\xc1\x34\x0d\xf1\xa9\x96\xb1\xe4\x8b\x80\xd1\xa7\x43\x19\xa5\xf1\x03\x37\x12\xcb\x16\xa2\x89\xba\x87\xa3\x7f\x52\xcd\xe0\xa2\xba\x28\x7a\xca\x7b\xa5\xd1\xd0\x22\x5a\x8e\x18\x0c\xac\xf7\x83\x63\xa7\x0f\xc2\xda\x3a\x08\x1d\x49\x9a\xb5\x00\xa2\xf7\x40\x19\x89\x88\x80\x12\xda\x76\x8a\x1c\x97\xee\xc1\x5c\x3c\x91\x98\x78\x58\xed\xce\x29\xd9\x17\x8e\x55\xab\x98\x96\xbc\x86\x77\xf8\x1c\x37\x39\xdb\x33\x5b\xc3\xc5\x8e\x75\x9e\x4a\xe0\xd2\x6e\xc0\x83\x56\x8f\xb2\xa8\xea\xa8\x46\x67\x46\xbf\x36\x57\xf7\x7c\xf2\xf0\x9b\x24\x5a\x6f\x56\x13\x77\x9c\xae\xa0\xf7\xd1\xcb\x7e\xe3\x4c\xb7\x98\x9a\xc0\x50\x27\x08\xde\x9b\x2d\xd7\x49\x97\x72\x53\xca\x6f\x8b\x55\x4f\xeb\x66\x7d\x9c\x56\x80\x0b\x06\xe6\xaa\x00\x47\xa1\x73\x4a\xf8\x19\xa2\x35\xb4\x0a\x4d\x09\x03\x89\x6e\x48\x8d\x51\xd6\x9c\x9b\xeb\x0a\x6f\x03\x17\xeb\xca\x03\x35\x5d\x7e\xdc\x1f\xd6\xa7\x89\x3e\xe2\xfc\x02\xaf\x85\x56\x03\x40\x39\xba\xab\x95\x7f\x79\xaf\x93\x12\xc6\xe7\x86\xb3\x10\x20\x29\x81\x74\xbe\xf3\xb6\x74\x5e\x38\x00\xce\x95\x32\x5b\xd2\x16\xa0\xcc\x85\xde\xb1\x09\x77\x84\x92\xd2\xe0\xbb\xd1\xa1\xfd\xba\x5e\x7f\xb9\xa4\x42\x29\xee\xdd\x6e\x01\xe5\x52\xa2\xc6\x58\x49\xda\x20\x7a\x67\x93\x3c\x77\x9e\x81\x22\x26\x94\x9d\x43\xdb\x1e\x62\xfd\x46\xc2\x90\xd9\x3a\xb3\xe3\x8d\x0f\x8c\x59\x3d\xa4\x16\xe1\x0b\xd6\xe9\xa9\x03\x4e\x97\x75\x1b\x19\x42\x06\xae\xf8\x6e\xe3\xdb\xfa\xb0\x3d\x0f\x74\x9a\x94\x0e\xfe\x28\x46\x6d\xb4\x4e\x0d\xd6\x5b\xad\xe3\x49\x6a\x1d\x07\x86\xa2\xd0\xbf\x00\x7a\xa8\x29\xce\xe5\xe4\x02\xe8\x18\x72\xef\xba\x7b\xd9\xa5\xf7\xa3\xf3\x1a\x2d\x7a\x43\xcc\xd8\x15\xec\xee\x6e\xb4\x6e\x7f\x3a\xee\xbf\x2c\x3f\xaf\xea\x69\x83\x87\xd2\x3e\xea\x92\xe1\xcc\x3b\xe8\x6e\xfa\x35\x60\x77\x5f\xb1\x27\xdd\x1a\x9b\x2e\x83\xd1\xee\xac\x82\x44\x12\xa3\xa9\xa8\x38\x47\x3d\xee\xd2\x7a\x0f\x92\xaa\x6b\xce\xd7\xed\xee\x69\xea\xe1\x75\x71\x65\x08\x31\xed\x11\x41\xd0\x58\x1f\xde\xda\xd8\x02\x6c\x5a\x46\x68\xd9\x09\x18\x65\xf0\x57\x6e\xec\x71\xb5\x6d\xa6\x8d\x2c\x25\xcc\x42\xdb\x50\xa0\x0c\x98\x47\xc0\x0f\x70\x2e\xc6\xb1\x72\x97\xd6\x35\xf8\x1e\x62\x33\xbf\xa7\xf4\x7b\x5a\x9f\xd6\xcd\xfe\xcb\xfa\xb0\xbc\x60\xbe\xce\xaf\x0c\x40\x48\x31\x62\x52\x82\x95\x4a\x9e\x19\xb0\x92\x41\x69\xc3\x4e\xd1\x2a\xb2\x7b\x34\xa2\x73\xba\xfc\x47\xc5\xd3\x8e\x3d\xe8\x4a\x72\x25\xeb\xf9\x89\x14\xf8\x81\x54\xd8\xd1\x91\xe0\x96\x3b\xc1\xad\x78\x8f\x03\x1f\xb6\x87\x9a\xed\x77\x59\x39\x49\x5e\x4f\xc5\xd7\xc5\xb8\x2b\xde\x98\xb3\xb2\x4f\xce\x8b\x59\x1e\xa3\x4b\x8a\x7f\x6f\x49\xea\xa8\x78\x16\x21\x7d\x7e\x61\x22\xe7\x95\x77\x5f\xf7\x62\xbb\x26\xbe\x25\xdf\x91\x84\xdd\x59\x34\xed\xf9\xa3\xd0\x01\xc6\xb9\xe0\x7f\xed\xd8\x31\x37\xbd\x00\x9d\xa3\x8b\x33\xb0\x0a\x3e\xb6\x09\x57\x43\x17\x9d\xc0\x78\x1d\x43\xea\xfa\x8e\xf4\x1d\x38\xd4\x88\x6e\x8d\x61\x61\x67\x4e\xa1\x0b\xd5\x06\xd8\x22\x79\x4f\xb2\x7c\x5a\x9f\xb6\xf5\x7a\xb9\x79\xfe\x30\x25\x5d\x5f\x38\xc2\xd8\xe5\x9d\xa2\x1f\x7a\x81\xfd\x35\xb3\x62\xb7\xcd\xac\x4e\x32\xf8\x7e\x54\xd2\x0e\x87\x1c\x4f\x27\x78\xfb\x78\xc1\x04\xb6\xbc\x56\x07\x75\x81\x8d\xda\x5e\x60\x9c\x9a\x34\xd8\xaf\x00\x61\x41\x5f\xb8\x2d\xf3\x73\xcd\xdb\x8b\xb6\xb4\x23\x6f\x3f\x5a\x6c\xb4\x57\xac\x05\xa2\x1f\x50\x4b\x65\xcd\xfe\xee\x97\xf9\x72\xca\x66\xac\xc7\x11\xb9\xd8\xb9\x79\x2f\xee\xe3\x75\x35\x1f\x00\x88\x5c\x92\xe6\x70\x78\x6d\x61\x79\x68\x12\xf7\xbe\xa8\xc4\x64\xeb\x62\x46\xa5\x19\xc8\x91\xb2\x05\xd8\xf4\xcc\x0f\x29\x15\x26\xea\xfe\xd2\x86\xa6\x2e\xf7\xc7\xcd\x19\x87\x36\x29\x1f\xd6\x70\x93\xd8\x3e\x00\x42\xa0\x7b\xcb\x02\x40\x84\xd0\x67\xe8\xcd\x23\x4a\xb0\xa7\x0d\x93\xc2\x8c\x49\xd1\x65\xa3\xd2\xc5\x9d\xa2\x27\x85\xee\x48\xa1\x7b\x52\x20\x95\x9f\xcd\x6f\x8d\x53\x60\xe0\x80\x93\xb4\xa9\xd6\x9c\x0e\xc7\x30\x7c\x09\x8c\xa3\xb1\x95\x25\x1e\x8c\x5d\xcb\x16\x74\xe3\x86\x21\xa7\x6a\x09\xdf\x6a\xae\x29\xfb\x86\xb8\xd4\x26\x0c\x4b\x2d\x5c\x3c\xd9\x04\x8a\x04\x27\xfa\x4d\xee\x8e\xfa\x71\x56\x30\x7f\xbc\xff\xb6\xab\x66\x7d\x58\xb6\x13\x7c\xde\x71\xe1\x80\xc7\x95\x66\x47\xea\xdf\x2f\xb3\x53\x03\x67\x24\x17\x39\x5f\x95\xbe\x93\xaf\x2a\x8e\xf3\x55\x41\x68\xee\xf2\x55\x15\x43\x9d\xf2\x88\x24\x07\x62\xb8\xd9\x18\xf3\xb2\x60\x15\x4a\xf1\x0c\x2b\x48\x96\x65\xa1\xe6\x3d\x10\x1e\x16\xca\xf7\x06\x4f\x63\x38\xbf\x67\x17\x87\xde\xf1\x51\xec\xc5\xba\xe9\x70\xe8\x9d\x4b\x65\x49\x33\x06\xcb\xd6\x1d\x0f\x57\xea\x8e\x2f\x93\x80\xbb\xbe\x64\xc0\xca\xcb\x73\x10\xe7\xe7\x40\xfd\xed\x64\xe8\xb4\xa3\x11\xd3\x6f\xe8\x6f\x7c\x0b\x82\x2e\x7e\x95\xb7\xd0\xba\x74\xf9\x96\xc5\x6b\x9b\x34\xff\x9a\xd7\x56\xc6\xa9\xd9\xc9\x37\xbe\xf1\x5e\x8a\x84\xc2\x19\xbd\xad\x32\x8b\x8e\x25\x7b\x63\x9b\x80\x55\xf2\xab\x0c\x19\x80\x57\xbd\xe5\x2d\xb7\x47\xfe\xe1\x32\xb0\x71\x5c\x38\xc4\x9a\x2a\xdb\x44\x27\xa2\x6b\x24\x1d\xfc\x49\x02\x5f\x40\x5d\x01\x82\x07\xbf\xc2\x4e\x09\x29\xd0\xbd\xb4\x09\x59\x61\xa2\xae\x89\x1d\x3a\x4f\x39\xcd\xfe\x51\x5d\xce\x42\x83\x3c\x80\x7d\x56\x5b\xf8\x46\xd5\xec\x91\x81\x2d\x80\x83\x3e\x4b\xf9\xe3\xf1\x4c\x43\xbb\x96\x1f\xb6\x93\x94\x8d\x17\x57\x7a\x4d\x4d\xf4\x35\x90\x85\x18\x58\x08\xb8\x42\xad\xb4\x0e\xaa\x3b\x3a\xf3\x2d\x10\x8b\x6c\x87\x5c\xe4\xdb\x02\x64\xc4\x38\x46\xac\x70\xa3\x1d\x24\xa8\x92\xd5\x85\x16\xd5\x3e\x89\x4e\xc9\xe0\x32\x8a\x6f\x6b\x71\xca\x29\xa8\x11\x04\xda\x22\x37\x35\x02\x7c\x05\x0b\x06\x56\x21\x69\x10\x16\xe7\x7c\x92\xda\x32\x3f\xc9\x01\xa3\x99\xd8\xb0\x92\x99\x0e\xb8\xf3\x74\xb0\x8a\xf7\x6b\x8b\xa4\x47\x06\x8c\xaa\xa2\x1b\x83\xc8\xd0\x4b\x52\x91\xd0\x66\xd1\x12\xdb\x6c\xd9\xf3\xcc\x94\xb8\xb1\x5a\x73\x3a\x61\xc7\x9b\x34\xad\xe9\x16\x2c\x7c\x2d\x8b\xdf\x91\xe2\xef\xa8\x24\x9c\x6f\x90\xd6\x2e\xb2\x81\xaf\xa7\x9e\x03\xf5\x1c\x53\xcf\x32\xf5\x1c\x53\xcf\x17\xea\x79\xa6\x9e\x2b\x57\x98\x7a\x00\x96\x19\xa8\x17\x0a\xf5\x42\x47\xbd\xd0\x53\x2f\xf4\xd4\x8b\x85\x7a\x9c\x28\xa7\x50\xbb\xfc\xbd\x40\x89\x65\xb3\x9f\xd3\x27\x2c\xa6\xab\xcd\xd8\x2a\xd4\x9e\x25\xe9\x7c\x78\x9c\xed\x27\xe0\xa8\x17\x57\x7a\x5c\x23\xf0\x13\xc9\x37\x8c\x71\xc4\x6a\x11\xc8\x08\x05\x00\x95\x85\xbb\x46\x3a\xc4\x53\xd7\xd2\x55\x31\x19\xea\x60\x57\x59\x47\xcc\x4c\x95\xb3\x52\x5a\x18\x5b\x85\x60\x91\xf0\xca\xc4\xc6\x44\x91\x4f\x63\x77\xf0\x8e\x7d\x61\x5f\x22\xe8\x5d\xb0\x8d\xce\xca\x6a\x99\x53\x15\xe5\x5a\xab\x4a\x19\x45\xcc\x59\x65\x9d\x52\x49\xe8\x54\xc5\x04\x57\x3c\x53\x05\x9b\x02\x27\xe2\xe6\xea\x49\x0d\x61\xbf\x4f\xe8\xe8\x05\x14\xe1\x81\x08\xcc\x89\x1b\x89\x45\x00\xfb\x6f\x44\x49\x0c\xd0\x22\xb3\x21\xfb\x23\xc3\x39\xa7\xbb\xab\x10\x1c\xce\x77\xf4\x56\x66\x25\xd8\xdf\xa9\xc8\xac\xb5\x04\x08\x8a\xf4\x59\x44\xdc\x49\xbc\x91\x77\x45\xd2\xd0\x25\x7a\x44\x47\x25\x18\xbd\x1a\x7c\xa7\x8f\xbc\x50\xa5\xc0\x39\x49\x59\x29\xe1\x4c\x4d\x8b\x88\x08\x34\xd6\x80\x8f\x90\x6a\xaa\x82\x0d\x42\x53\xed\xe8\x88\xf7\x18\xc6\x6f\xf0\xfc\x72\xbc\xe4\x8e\x08\x33\xea\xf8\xe7\xf9\xb5\x96\x2f\x4c\xf0\x84\x98\x85\xf1\x81\x99\x19\x36\x3a\x11\xbf\xe6\xde\xca\x60\x03\xb6\xfe\xcd\x6f\x49\xec\x0a\xc4\xd2\x00\x2d\x86\x51\x70\x91\x48\xbe\x65\x4f\xcd\x02\x93\x46\x1c\x76\x27\x67\x70\xe2\xf2\x81\x7b\x27\xe6\x7d\x71\x25\x55\x2c\x75\x65\x2f\x8a\xe5\x02\x69\x04\x2e\x12\xca\xc4\x12\xd6\x3b\x97\xf9\x5b\xcf\xa5\x98\x1d\x8b\x07\x86\xc5\x03\x23\xee\xe4\x26\x1c\x75\x50\x3d\x41\xf5\x3a\xbf\xc0\x53\x59\xc1\x88\xb1\x31\x00\xe8\x34\x22\x07\xd8\xd8\x5f\x10\x06\x8e\xe4\xb9\x6f\x0e\xbd\x7e\xfb\x5b\x9c\x82\xf0\xd3\xc0\x84\x8b\x64\x88\x1c\x6f\x3d\xd7\x01\xb3\xa9\x7a\x8d\xe9\x6c\xa1\xe6\x6a\xcf\xcd\x3e\xa8\xa3\xa6\xaf\x92\x5c\xe9\x04\x52\x59\xd3\x86\x64\x39\x03\xbb\x75\xb5\x86\x69\x39\x22\x8e\x1b\x2f\x7a\xb4\x6b\x0e\xab\x6d\xf3\x75\xf5\xcb\x7c\xf7\xf4\x17\x87\xc9\x95\x33\xe7\x22\x29\x93\xab\x58\x74\xbb\x94\x78\x6f\xc3\x2b\xa7\x39\x90\x88\x48\x6e\x98\x16\x0c\x13\x98\x42\x99\x16\xc5\x91\x39\x85\x2e\xbd\x19\x43\x20\xf6\x4c\x04\x1d\x1b\xee\x2e\x86\xdd\x42\x30\xa3\x6e\xd0\x89\x73\x58\x87\x0f\xd3\xe9\x79\x77\x85\x46\xcf\xbd\x9a\x5f\x6b\x91\x33\x47\xab\x98\xdc\x24\xe1\x6c\xa3\x15\x6c\xaa\x8d\x75\x42\x47\xcb\x8e\xb4\xda\x9f\x64\x2c\x49\x63\x95\x6a\xb4\xd6\x2c\x0c\x82\xd1\x00\xe7\x61\x6a\xed\x87\xfe\xc4\x4a\xdb\x18\xb4\xb3\xd6\x9c\x21\x92\x76\x01\xaf\x45\x86\xef\x49\x61\x29\x38\x3c\x85\x05\x55\xad\xa3\xf0\xb6\x41\x0c\x4a\x70\x6c\x37\x22\x8a\x04\xf6\x6c\xe0\x24\x9e\xb4\x65\xbc\xbc\x37\x29\x9d\xed\xeb\x53\x6e\xb8\xa8\x92\xdb\x89\x56\x6d\xd1\xbe\x26\x90\x77\x44\xae\xf6\xf9\xc3\xd5\xe1\xd6\x5d\xbb\x5c\xca\x7b\x2d\x6f\xc9\xa7\xfd\x6b\x2c\xe5\x1d\xfa\xdb\xcc\x07\x7e\x9d\x55\xbe\x73\xb4\x1f\x40\x2f\x27\xab\xba\xb2\xf3\xc3\x77\xf1\xaa\xf1\x7b\xe2\xf7\x9c\x6d\x22\x8f\xf6\xc6\xf1\xb0\xda\xb5\xdb\x2b\x8c\x56\x7f\xf1\xdf\xfa\xe3\x7b\xf5\xc7\xd7\x55\xf3\xd3\x7c\x67\xf0\x15\x5e\x67\x54\x16\xd6\x98\x46\x06\x48\x81\x7a\xe3\x7c\xc3\xdb\x1b\x36\xa6\xce\xf7\x88\xa6\x79\x28\x56\x62\xdb\x68\x8b\x84\x5b\x89\x25\x11\x05\x6f\x10\x00\x46\x79\x7b\x72\x43\x4b\x1c\x14\x85\x59\x0b\x6f\x1a\xda\xe3\xad\x23\x91\x88\x03\x41\xb0\xb0\x58\x66\x13\x19\xfb\x43\x33\x10\x70\x44\x0e\x56\x60\xc5\x39\x74\x9b\xa2\x8f\x47\xd3\xd8\x24\xb4\x9f\x5b\x61\x7a\xc9\xe1\xae\x9a\xa2\x37\x66\xbe\x2c\x6e\xd3\xb0\xad\x97\x1f\x9f\x27\xe0\x9c\xa3\xb2\x1e\xe4\xee\xa1\xa4\x1a\x37\x42\xfd\x5f\xba\x64\xca\x63\x28\xdb\x21\x0a\xa7\x9d\x04\xdf\x94\x22\xe2\x7c\xb9\x18\x0f\xb4\x05\xfa\xb6\x9c\x96\xb8\x83\x50\x12\x3f\xd3\xe0\xc7\xc6\x10\x5f\xfa\x5c\x03\x9d\xe9\xc7\xdc\xf5\x4b\x7f\x9a\xaa\x23\x7a\x3d\x04\x70\x49\x8d\xba\xd2\x74\xd3\x75\x86\x2c\x6b\x7c\x91\xd5\xce\x9b\x0e\x65\xa4\x4b\x73\xba\xd6\xe2\x45\x3c\x63\x15\x40\xcc\x40\xcf\xd0\xf4\x80\x9d\xc5\x89\x78\xaa\x70\xe5\xfc\x60\x2e\x4f\x54\x37\x9d\xf2\xff\x91\x6e\x32\x1d\x7a\x09\x23\x27\x59\xbf\x18\x2a\xdb\x83\x7b\x5e\xd4\x76\xc4\x7d\x4d\x6b\x3b\xb0\x5f\xa3\xca\x96\xa4\x8e\x77\xe3\x1b\x9e\xf6\xcb\xdd\xfe\xb8\x7c\xda\xb6\xc7\xe7\xc3\xc4\x9e\x74\x76\x81\x97\x57\x84\x12\x41\xed\x65\x32\xed\xf9\x21\xd0\xbf\x1a\x7e\xbb\xd9\x89\xf3\x58\x2f\xb8\x74\x29\xe0\x28\x63\x93\x07\xa3\x61\x0b\x2b\x96\x7c\x8d\xab\x34\xd2\x2c\xbd\x43\xd8\xd0\x48\xe3\x94\x30\x8e\x7d\x3c\xe0\x58\x08\xb4\xf1\xd0\xc1\x34\x43\x5b\x9e\x9d\xf8\x1e\x11\x63\x8f\xd3\xed\x2c\x19\xf3\xdc\xc5\x3b\x61\x72\x9c\xdf\x98\xf6\x05\x68\x4c\x22\xd1\xa3\x91\x86\x38\x31\x63\x33\xc9\xad\x44\x90\x10\xbb\x6b\x74\x04\x2f\x5a\x2c\xf4\xb4\x88\xf1\x66\x60\xa1\xab\xf1\x0d\x3d\x4b\x8f\x12\x23\x46\xb4\x0c\xb1\xbb\x24\x6c\xac\x65\x66\xb4\xf7\xf3\x50\xbc\x31\x1d\x63\x4f\xc7\x30\xa6\x63\x98\xa7\x63\x18\xd1\x31\x7c\x2b\x1d\xa7\x10\x90\x73\x17\xfb\x95\xc2\x58\xbf\x89\xae\xc7\x70\xb4\x48\x50\xff\xf2\x1e\xce\x0c\xae\x71\x3a\xd0\x36\x49\x03\x2a\xb1\xee\xc2\xb3\xea\x8c\xb6\x4d\x04\x3b\x97\x04\x04\x1a\xfb\x45\xba\xe1\x62\xe8\x3c\x91\x36\x45\xea\x20\x6d\x34\x76\x34\x9f\x7b\x47\xb7\x0d\x31\xf3\x52\x23\x42\xd3\xd5\xd6\x09\xe3\x68\x48\xf3\xcd\xc2\xa6\x2b\x03\x12\xdb\x38\x03\xa6\xc3\xd5\xb1\xd4\x05\x80\x75\xb4\x37\x01\x19\xe6\x55\xa4\xdb\xdd\xa0\xdc\x6e\x0a\x1c\xda\x99\x99\x47\x46\xf1\xef\x3c\x7b\x26\x59\x60\xf8\x94\x2b\xe8\xe0\x70\x79\x2a\x7e\xa7\x8a\x3d\x50\x7b\x67\x23\x97\xd5\x43\x38\x0a\x93\xcc\xb8\x6a\xde\x1b\x7f\x46\x71\xc6\x98\x20\x06\x61\x6a\x9d\x3f\x93\xbc\x87\xf9\xfe\xb4\xff\xbc\xda\x4e\x89\xcf\x05\x83\x87\x71\x36\x63\x97\xee\xde\x42\x73\xe9\x25\xd9\xe5\xa3\xec\xdc\x6e\x4b\x32\xe0\xfe\xb6\xfe\xb4\xf3\x13\x67\x77\x28\x4e\xe6\x11\xec\x05\x6a\x90\xb6\x3d\x52\xd7\x38\x0f\xb1\xb6\x7d\x3a\xd0\xf3\xe2\x92\x0c\x73\xf4\x92\x62\x31\x39\xf5\x55\xe0\xaa\xc2\x1e\xd3\xbd\x7b\xc8\x5a\x0c\x5f\x3e\xbc\x7b\x71\x59\xde\xbd\x7c\x78\x4b\xe7\x06\xc3\x2e\x74\x0c\x57\x11\x4e\x36\x39\x2e\xb9\xc7\x94\x4e\x21\x6b\x46\x58\xc1\x9c\x4c\x28\x94\x64\x42\xf1\x46\x32\x21\xda\xc8\xee\x75\xf0\x6e\x7d\x06\xa9\x3e\x14\xe1\x6b\xb9\x4b\x58\x34\x06\x22\x1f\x60\x88\xa3\x13\x36\xdb\xc6\xea\x8b\x3a\x00\x5f\x33\xd3\x15\xab\x9a\x94\x49\x32\xee\x6d\x80\x24\x17\x23\xa2\xbb\xf7\x9b\xd4\x30\xbf\xdf\x71\x19\xdf\xef\x9e\x8f\xcb\x66\x75\xf8\x74\x46\x99\xa1\xb4\x77\xf7\xd3\x2a\xd5\xc1\x09\xd0\x41\x04\xcb\xe1\xe5\x26\x6e\x80\x29\xae\x8a\xd1\x02\x51\xe5\x69\x14\xe6\x7e\x0a\x25\x24\x08\x00\xa2\x3d\x12\x0e\x54\xa8\xe5\x0d\xa7\xe0\xeb\x62\xf1\x10\x78\x36\xf9\x3e\x70\x7e\x03\x1c\x31\x92\xa3\x9c\x72\x35\xd0\x76\x66\x1d\xb5\xe1\x5b\xa2\xb1\x8c\x72\xc1\x49\x06\x5f\xb3\xe2\x5f\x97\x10\x7b\x55\xaa\x45\xcb\x0f\xed\x85\xca\x88\x0e\xa0\x4c\x86\xbb\x43\xe7\xf9\xb8\x6c\x3f\x5f\xf4\xeb\x50\x3a\xd0\x29\xfb\xda\x68\x11\x48\x80\x32\x46\x38\x25\x9c\xda\x68\x6f\x3a\x2a\xe9\x39\x2a\x69\x6f\x5e\xde\x5b\x1d\x99\x4c\x11\xfa\x6f\x9d\x61\x7b\xc1\x0b\xe8\x86\x29\x91\xb2\x1e\x11\x09\x8f\x13\x95\x10\xb2\x5e\x40\x31\x68\x4d\xb3\xc5\x28\x18\x34\xa0\x77\x3c\x34\x1f\x32\x10\x7b\xcb\x35\x7a\x90\x3e\xf4\x81\x9b\x04\x3a\xac\x3e\x4e\xf0\x84\xba\x82\xc1\xe5\xcd\xfa\x46\x13\xf7\xa6\x55\x23\xf1\x43\x59\xfe\x21\xb5\xb2\xbd\x5b\xca\x4d\xd7\xd8\xab\xe8\x3e\xec\x83\xe2\xd9\xf0\x67\x94\xb0\xb1\xd1\x99\xa4\x41\x8b\xa3\xd4\xda\xd6\xf0\x6c\xc0\x43\x86\x9f\xb5\xb7\x13\xac\x3c\x1d\x56\x9f\x96\x9b\xd5\xee\x69\x82\xbf\x3e\x29\xed\xd0\xe7\xca\xf2\xd8\x85\x2a\x0f\x08\x42\x5d\xfe\xba\x47\x11\x84\x9e\x0e\xdb\xd3\x7a\xb9\x3e\xae\x26\x5f\xec\xcb\x06\xb5\x32\x60\x4b\xe7\xd4\xca\xd9\xfc\x1a\x6a\xe5\x37\xbf\xc5\x29\x98\xf1\xc7\x6a\x65\x75\x45\x9a\x32\xf3\xc2\x94\xd1\x9d\x5e\x59\x2f\x5e\xf7\xa4\x8e\xea\x42\xb1\x6c\xa0\x58\x36\x53\xc5\x72\x66\xc5\xf2\x9d\x2e\x39\x4d\x14\xfd\xa7\xc3\x98\xab\xec\xa3\xb0\x8a\xc9\x88\x45\x3d\x0c\xe3\x69\xe4\x42\xb1\xfc\x9e\x3a\xb0\x26\xa4\xcd\xe8\xf0\x9e\xfa\xfb\x71\xa1\xe0\x33\xc1\x7f\xcb\xe5\xab\x3e\xb8\xb3\xb1\x77\x8d\xd4\xe2\x02\x1e\xab\x37\x54\x16\x1d\x54\xe7\x7f\xed\x3a\x9b\xfd\x1c\xbf\x73\xc5\xcf\xe9\xb6\xca\x62\xfd\x34\x51\xbc\xf1\xe9\xef\x09\x76\x01\x40\x03\xcd\xbe\x5e\x9d\x39\xb8\x9f\x95\x17\x8c\xe9\x24\xac\xd7\xb5\x15\xf4\x1f\xc0\xab\x75\x43\xa4\x36\x24\x18\x08\xdb\x01\xcc\x6a\x38\x26\x78\xe4\x78\xc7\xa6\x4d\x1c\x96\x01\x76\x4b\x43\x52\x9b\x2e\x70\xee\x8d\x84\xf8\xa4\x4f\xd2\xea\x8d\x1d\xc9\x4e\x3d\x08\xcd\x18\x79\x86\xdd\xf0\x4c\xc1\x9c\x31\x31\x0e\xbf\x18\x90\x46\x07\xcf\x45\x9c\xa5\x27\x99\x11\x86\x8d\xb8\x87\xa9\xb9\xfe\x1f\xeb\x7a\xd2\x53\x7c\x3e\x38\x38\x29\xdf\x00\xaa\x9b\xfd\xa2\x53\xb1\xbe\x6b\x97\x27\x39\x5d\xee\x09\x1d\xeb\x33\x74\xc6\xf5\x18\x96\xb1\xc7\x78\x68\x8a\x3c\xa9\x22\xff\x2a\x83\xb4\x29\xa5\xe1\xfb\x81\xc1\xdd\x6c\xcb\x6e\xb3\xda\xd5\xeb\xa7\xe5\x7a\x57\x1f\x7e\x39\x8f\x90\x98\xbd\x3a\xc8\x28\xac\xf1\x9a\x45\xed\x30\x97\xa8\x1d\x3a\x2b\xd1\xf9\x14\x6a\x6b\x38\xbd\x3b\x12\x5d\x01\x6a\x5d\x86\x00\xac\xc2\xc0\x25\x92\x8b\x5e\x3a\x08\xde\x57\x07\x20\x5f\x49\x77\x34\x1f\x80\xac\x4f\x5d\xda\xe6\x92\xb5\xb9\xfc\xb5\xec\xce\x32\x64\x72\x5e\x30\xa0\xef\x6d\xab\xdd\xfa\x5f\x9f\x57\xcd\xf6\x65\xe2\xcc\x3a\x2a\xeb\x09\x68\x8d\x82\xeb\x10\x82\xd8\x52\x38\x19\xeb\xa1\xcf\x48\x1e\xfe\xad\x74\x89\xfd\x5c\x0b\x6a\x6e\x81\x12\xa3\x72\xcb\x68\x1b\xb7\xab\x71\x38\xec\x27\x55\xe0\xf3\x9e\xa5\x23\x21\x98\x63\x5f\x0b\xe2\x48\x0f\xb2\xca\x09\x90\x26\x72\xd1\x77\x95\x8d\x51\xd3\x99\x6c\xaf\x67\xe5\x7f\x1c\xd8\x25\xeb\x07\xc5\x71\xa1\xf8\xe0\x4c\x9c\xcd\x38\x3e\xe1\x8e\x85\x6e\xfd\x7c\xd8\x2f\xdb\x5f\x3e\x7f\xd8\x4f\x96\xa0\x71\xe9\x80\x05\xa6\x63\x49\x4d\x01\xf5\x22\xcd\x3f\xd7\xd8\xc4\xba\x1e\x62\xc2\x69\x61\x8f\x99\x61\x49\xd9\x1f\x27\xd7\x32\xb1\x56\xcc\x7b\x86\xc6\x4c\x08\x6f\xda\xc8\x08\x5c\x03\x88\x1f\x82\x68\x06\x5d\x1b\x70\xe8\x14\xc2\x9c\x39\x13\x13\x6e\x8a\xbe\x36\x41\x44\x27\x72\xec\xe0\xba\x98\x6f\xc9\x82\x55\xa4\xba\x48\x34\x8e\x24\xc4\x52\x9f\x02\xaa\x84\xe4\xcc\x42\xa2\xae\xb5\xf4\x98\xc0\x5a\x95\xb0\x53\x6d\x60\xbd\xd9\x68\x53\xe4\x7f\x6d\xe3\x82\x2a\x24\x63\xc9\x74\xc8\x40\x7e\xba\xe5\xa0\x6a\x76\x95\xd0\xb6\x63\x0f\x0c\x6c\x0a\xd2\x39\x11\x32\x14\x85\xe5\x85\xb7\x29\x7e\x5a\xb6\xc7\x8b\xad\x75\x54\x38\x84\xb0\x9b\xd4\x24\x20\x29\xb0\xed\x96\x96\x7e\x08\x45\x01\x76\x16\x99\x3b\x7c\x70\xa4\xab\x9f\xe4\xbf\x9a\x80\xf9\xb5\x37\x00\x00\x69\xdb\x30\xc2\xfa\x54\xb3\xdc\x45\xf2\x01\xad\x73\x1a\xa0\x86\xbd\x75\x0c\x9e\x1f\x8e\x43\x89\xf9\xaf\x95\x9c\x44\x89\xf3\x26\xb1\xf1\xce\x76\x96\x66\xa3\xdd\x89\x16\xd9\x4b\x90\x6d\x33\x0f\x86\x80\x3d\x53\xcf\x07\xc0\xe4\xb9\xac\x5b\x23\xe0\xc2\x93\xf6\xae\x06\xd2\x22\x6b\xc4\x5d\xc1\xc6\xed\xdd\x9c\x46\xf5\x2c\x3b\x9a\xa3\xb5\xda\x3a\x20\x3f\x72\x30\x25\xd5\xf3\xce\xd6\x76\x9a\x22\xbb\x97\xf3\x29\x82\x89\xed\x01\x2f\x6c\x01\xbc\x28\x08\xa2\x9d\x8a\xc9\xcc\x39\xb8\x3e\x00\x06\xf1\x68\xae\x63\x7d\x1a\xd4\x59\xcc\xbe\x16\xad\x6a\xe7\x13\xd5\x07\xa6\x68\x75\x5b\xb2\x43\xfb\x96\xab\xd3\x6a\xdb\xac\xa6\xc9\xbc\x2f\xae\xdc\xa3\xc1\x9b\x60\x30\xbe\xbd\xe5\x03\xcd\x5f\xde\x5b\x1a\x05\x11\xfa\x21\x38\x78\xc6\x46\x86\x24\x42\x42\xc7\xdb\x2e\xbe\x56\x2b\x40\x25\x3c\x40\x97\x0f\xcf\xed\x2f\x17\x24\xe1\xc2\x3f\x00\x35\x74\x2e\xb8\xaa\xdc\x7a\x6f\x60\xf6\xe5\x43\x5f\x24\xbd\x29\x57\x20\x4e\x5a\xdc\x50\x0a\x65\x31\x13\x77\xc5\x77\x14\x1f\x4c\x9e\xdd\xfe\x78\x39\x8c\xb8\x70\x70\x9a\xd6\x45\x33\xab\x3d\x62\x1f\xb5\x57\x2f\xbf\x73\x62\x62\x7a\xf5\xc9\x1d\x35\x4b\xad\x77\xe2\xcd\xb8\xed\xed\x7a\x75\xb1\xa2\x94\xc2\x69\x4e\x32\x7a\xeb\x2c\xba\xd7\xd5\xf5\x34\x2a\x0e\xd0\xcf\xb9\x0f\x15\x01\x5f\x5d\x84\xec\xcb\xe2\xe4\x3b\xf8\x8a\x1e\x31\xae\xe3\xc4\xfb\x08\xad\x3b\x48\x0b\xeb\x9f\xb7\xc7\xe5\x71\xbf\x5c\x7d\x19\x47\xee\x4c\x4a\xdf\x9e\x30\xfd\xb2\xcf\x7a\x08\xa5\x2e\x1d\x7a\x19\x23\x3d\xb2\xd1\x7c\x76\xc4\xf7\x46\x7b\xa1\x63\x6e\x88\x33\x09\x1b\x69\x14\x42\xd3\x8d\x0a\x8d\x44\x51\xa7\x7c\x2e\xac\x7a\x9f\x2b\xea\xce\xb2\xf9\xf3\x97\xd5\xee\x69\xd9\xac\x27\x49\x59\x27\xa5\x3d\x9f\x69\x9d\x6e\x26\x19\xc2\x47\xb1\x93\x72\x94\xb4\xfc\x8e\x32\xbd\xbc\xfc\xf3\x7e\x82\xcc\x32\x29\x2d\x29\x10\x9d\xb0\x26\x37\xe3\xfc\x4e\x43\x12\xa8\x92\xe1\x69\x08\xbf\xbc\xf3\xc9\x66\x5b\x4f\xf5\x18\x7d\x51\xcf\x30\x5a\x53\xf4\x27\xa6\x40\x40\x75\x81\xed\x1d\xa8\x15\xe4\xbd\x29\x28\xd6\xdf\x1b\x2e\x89\x9a\x71\x41\xc8\x66\x44\x44\x00\x81\xe6\x86\x78\x50\xe4\x5b\x05\x4c\xac\x06\x52\x0f\x9d\xfc\x46\x38\xab\x41\x98\x98\x0b\x7a\xb5\x65\x9f\x06\x7a\xd8\xb6\xec\xc8\x6b\xbb\xbf\x16\xcc\x1b\x17\x19\xdb\xf2\x7d\xf8\xff\x5e\xab\xf7\xed\xf3\x79\xb3\x4b\x51\xaf\x89\x60\x81\xb1\x21\x69\x11\x11\xdf\xc5\x6f\x43\xc5\x3e\x4a\x17\x1d\xcc\x71\x90\xb7\xf3\x54\x8d\x20\xa4\xcf\xd5\x6f\x53\x85\xc4\x80\xf2\x38\x8b\x5c\x60\x7b\x04\x87\xc2\x25\x4f\xb0\x9b\x2e\x42\xb5\x8b\x61\xf0\x21\x5a\x2c\x77\xeb\x4f\x4b\x3d\x43\x11\x5c\x60\xc0\xc7\x29\x30\x22\x03\xc3\x83\xb7\x70\x70\x38\xb1\xa1\x21\x61\xc3\x86\x4d\x40\x6e\x69\x76\x2f\x88\x91\x81\x80\xd8\x94\x7a\xd7\x28\x3d\xf9\xac\xb9\x55\x9f\x01\xa8\xd1\x96\xaf\xa8\x31\x90\x00\x71\x41\x1a\x71\x63\x5e\x57\x21\x29\x12\xe5\xe0\x89\x6f\x2b\x67\xd9\xe7\xb6\xc4\x4e\x26\x86\x91\x8a\xcc\x4c\xfb\x16\x29\xfd\x63\x71\xfc\x82\xc5\xa8\xca\x1e\xc6\xa4\x58\x79\x9a\x11\xd2\xf8\x8a\x2e\x5a\x3e\x00\xd5\x57\x35\x00\xf5\x09\x61\xa3\x91\xa7\x28\x6c\xa4\x4e\xee\x64\x4d\x93\xb2\xc8\xb1\xd6\xb6\xf2\xf0\x1f\x2e\x47\x63\x2a\x63\x4d\x16\xc6\x57\x36\x25\xe8\xa2\x9d\xaa\x7d\xa5\x62\xf4\x5e\xa4\xca\x05\xe3\x93\x88\x42\xfb\xca\x9b\x68\x44\x14\x9c\x56\x8f\x04\x75\x20\xae\xeb\xb4\xa8\xa5\xaf\xb2\x4f\xc4\xdd\x54\x29\xc3\xf6\x15\x2b\xed\x15\x43\x40\xdb\x24\x4c\x00\x58\xb1\xb3\x11\xb2\x01\xe2\x5e\xe8\xd5\x31\xf0\x09\x46\x51\x01\x01\x0e\x21\x26\xa1\x55\x65\x19\xce\x81\x8f\xc6\x89\xa0\x6a\xed\xab\x90\x8d\x17\xdd\xd1\x86\x2a\xb9\x60\x84\xf1\x22\x24\x61\xee\x48\x80\x5d\xbf\x7d\x69\x9e\xdb\xf9\x11\x86\x2b\xd3\x21\x56\x92\xf4\xd0\x00\x9e\x1f\x62\xb1\x0c\xb1\xce\x70\xfd\xeb\x80\x88\x4f\xab\x34\x3b\xfc\xfa\xca\xf6\xe3\x0f\x69\x40\xba\x2a\x94\xf8\x7d\x80\x0d\x06\xde\x92\x03\xaf\xfa\x86\x2e\x52\x15\x48\x48\xa1\xb9\x8e\x08\x9b\x6f\x1f\x2b\xae\x4a\x26\xf9\x28\x52\xa5\x5c\x0c\x46\x24\xa1\x43\x15\x52\xb2\x22\xf1\x58\xd1\xb6\xca\x29\x09\xe9\xaa\x9c\x7c\x8e\xf4\x9a\x9c\x34\xeb\xa7\xad\xae\x65\xa8\x6c\x8a\x39\x89\x54\x79\x1d\xa1\x21\xf0\x95\xb2\xb4\xd4\x5b\x68\x11\xb5\x5d\xd4\x54\x86\x90\x1e\xc6\xb9\xb6\x16\xc6\x5a\x1c\x0d\xa7\x0c\xd0\x8e\xde\x94\x73\x50\xb8\x52\x7e\x70\x30\x78\x15\x15\xd2\x48\x62\xae\x3c\x34\xd4\x12\x35\x83\x46\xbd\x30\x59\xe8\xdc\xd2\x10\x13\x4e\x89\x50\x4c\x34\x1e\xb9\x0c\x82\x90\x1e\x22\xbc\xc3\x06\x98\x60\xba\xd1\x9e\x08\xe7\x94\x41\xde\x84\xca\xa5\x98\xb0\x6d\x58\x55\x65\x1a\xb5\xf4\xdb\x33\xf6\x83\xaa\x8c\x41\xd6\x83\xca\xfa\x04\xd7\xb0\x4a\x47\x38\xd0\xd0\x9b\x15\xf0\xe5\xb0\x2c\xa8\xb2\x12\x44\x5e\x18\xa0\xd2\x8f\x65\xf7\x79\x70\xd8\xbf\xac\x0f\xfb\xb9\x71\xc4\xe5\x83\x28\x90\x3b\x30\x6e\xa0\x7c\xeb\xca\x39\x8b\xd4\xfd\x55\x08\x00\xd2\xd6\xc2\xc7\x5a\x3a\x11\x84\xcc\x02\x06\x01\xa1\x0d\xd2\x5e\xb0\x4e\xc8\xb5\xec\x21\x57\xf0\x8c\x79\xab\x0c\x05\x1e\xcf\xd4\x32\x57\xde\x7a\xc0\x1d\xbb\xca\x2a\xd3\x75\x8b\xae\x8c\x09\x65\xb1\xf3\xf1\x24\x7d\x84\x37\x98\xab\xac\x51\x46\xb8\x2a\x04\x45\x1c\x92\x4f\x55\xcc\x21\xa0\x03\xa2\xae\x3d\x30\xba\x69\xed\x83\x59\xda\xd5\x3a\x54\x31\xc0\x6a\x61\x5c\x95\x94\x37\x22\x54\x46\x45\x40\x02\x09\x1d\x17\x75\xaa\x52\x54\x0a\x63\xda\x2a\xcf\x51\x86\xae\x72\x0a\xf8\x79\xc2\xa7\x93\x8f\x88\xdf\xd2\xb4\xa2\xa4\x4c\x4b\x5d\xaa\xbc\xc9\xc4\x13\x54\x36\x26\xc6\x7a\x4b\x89\x0e\xb5\x0b\x95\x57\xc0\x4f\x8f\xba\x4a\x0e\x4a\x9c\x2a\xeb\x14\x04\x72\x55\x9b\xda\x21\xcb\x5f\x64\x37\x60\x4e\x46\xe3\xdc\x46\x22\x8c\xc5\xe6\x2a\x3a\x85\xde\x0f\x29\x78\x1a\xb5\xb9\x52\x8c\x53\x08\xe5\x19\xc2\x4c\xf3\xa8\xe7\x39\x5b\x20\x7a\xbd\xf8\x11\x86\x56\xd2\x88\xc2\x49\x80\xcb\xa6\x2e\x00\x04\x9a\xe6\x4c\xac\x9c\x0b\x4e\xe8\x5c\x05\x5a\xbb\x91\x74\x5b\x57\xc6\x7b\xf6\x1d\xcb\xea\xe4\xee\x09\x17\xc7\xf5\xae\x3d\xd3\x9a\x0d\x65\x65\xdb\x63\xd7\x00\xce\xf1\xcd\x6f\xf6\x8e\xb5\x55\xd4\x4d\xd0\x5c\xe1\x9c\x75\x55\xe9\xaa\x09\x30\xe9\x92\xd4\x87\xaa\x1a\x00\x94\xe8\x93\xf0\xb1\xa5\x03\xbf\x2b\xf1\xe8\xb0\xb8\x7b\x96\x61\x49\x7a\x63\x4d\x6d\x69\x08\xf8\x28\xf8\x35\x3e\xa1\x2a\xfc\xb4\xf0\x09\x15\x49\xfa\x92\xb1\x49\x81\x6b\x40\x8b\x1c\x5a\xe1\xad\xf0\xae\xf5\x98\x67\x9c\xb0\x9c\xf3\x09\xa5\xb0\x98\x47\x3f\x09\x1b\x7b\x7b\x69\xff\xb8\xaa\xc7\x0c\x1f\x9f\xde\x77\xaa\x44\x24\x0a\x3b\xbe\x0b\x97\x6a\x2c\x01\x45\xf9\xeb\x39\x85\x91\x07\x58\x20\x32\xa1\x78\xa4\x59\xd1\x91\xba\x98\x7d\x2e\x3c\xf1\x04\x46\x48\xf6\x38\xc0\x3c\x86\x12\x18\x33\xb3\xc4\xa6\x01\xa8\xff\xfb\x79\xa5\x32\x68\x58\xd0\x8b\x21\xfc\x46\x6b\x1c\x0c\xb2\x5d\x89\x92\xdd\x9a\xfe\x5a\x89\x8d\x18\xa7\x26\xb6\xda\x50\xc7\xd2\xef\x50\x90\xf7\x82\x7e\xdb\x5b\x6e\xf7\x58\x7b\x5c\x7e\xdc\x1f\xbe\x4e\x21\x94\xa6\xc5\x03\xf4\x58\x72\x0d\x3b\xd0\x40\xc6\x2b\xbf\x4e\x5d\x6a\xd7\xf2\xbb\xbf\xe5\xfe\x97\x0f\xeb\xaf\xdb\xdd\xc5\x87\xbb\x52\xfe\xae\xe3\xdc\xbc\xf4\xd2\x0e\xa4\xac\xd8\x25\xba\x4a\x20\xa5\xf0\xf8\xf2\xed\xef\x9e\xf6\x87\xed\x71\x3a\x4e\xbb\xa2\x7e\xac\x7a\xce\x06\xce\xe0\x2b\x4a\x40\xc1\x8f\x4f\x84\xe2\x43\x64\xb0\xd1\x86\x20\x68\x9d\xe5\x4c\xd9\x6c\xce\x88\xb4\x62\x5a\xec\x10\x99\xd8\x3f\x80\x21\x98\x08\xd3\x9d\xa7\x22\xe7\xeb\xc0\x21\x5a\x11\x63\xb7\x4b\xb6\x0d\x36\x59\x0b\x46\xc5\x44\x4c\x7a\xc2\xb2\x76\x5b\x3b\xd0\xd5\x7d\xf9\x61\x7f\x98\xe6\x33\xb8\xb8\x52\x1a\xc7\xcb\xbb\x56\x46\xc0\xfd\x2e\x0b\xed\x2d\x8e\x46\xfb\x92\x9d\x8d\x56\x74\x57\xc2\x50\x6a\x69\x6d\x09\x22\xc6\x6c\x8b\xd8\xbe\x37\xd2\x71\x72\x23\xc3\x86\x4b\xcf\x0e\xe4\x5e\xd5\x74\xc6\x91\x2c\x6c\xbd\x41\xe4\x0b\xb2\xa9\xc0\x54\x0e\x13\x09\x7d\x4d\x1a\xed\x1b\x6a\x20\x47\xfd\x90\x94\xfe\x00\x59\x42\x4f\x96\x80\x0e\x02\xa4\x2d\x75\x54\xbc\xe8\xa8\xd0\x75\x54\x5c\x7c\x73\x4f\xdd\x26\xfd\x7a\x75\x7c\x3e\xac\x9f\x96\x5f\x9a\xd5\x2f\xcb\x66\xdb\x8e\x95\x17\x73\x17\x07\x35\x4d\xf1\xd4\x64\x9f\x53\xb3\x41\xde\x99\x02\x50\xc6\xfa\x8d\xe2\x8c\xca\x09\x69\xae\xfa\x9d\xdc\x54\x62\x20\x6b\xde\xa3\x4a\x8c\x7b\x10\x3a\x7d\x73\x4e\xdb\xa7\xf5\x7e\xae\x9d\xe5\xc2\xe0\x78\xe6\xc3\x09\x22\x34\xda\x42\xbf\x7e\x47\x8d\x59\x3f\x7d\x58\x4d\xbc\x9b\x87\xa2\xc1\xfa\x9c\xf3\xa9\x00\x7e\x31\x90\x46\x01\x45\x2a\x18\x8b\x23\xdb\xf3\xb7\xa6\xcf\xce\xb9\x4f\xcc\x4a\xed\x9b\x55\x45\xdc\x6c\xc7\xf6\xc3\xfa\xb0\x9c\x7a\x4a\x8d\xca\x06\x00\xc5\x10\x39\xf3\x62\xc9\xbe\xdc\xbb\x93\xc1\x68\xca\xb9\x3c\xe0\x49\x65\x7c\xc3\x89\x3a\x36\xd6\x34\x68\x85\xaf\x39\x19\x1c\x43\x54\xc0\x0b\xf7\xbd\x09\x70\x55\x6b\xd8\xed\x93\xf8\x0d\xd6\xdc\x47\xdb\xd0\x0a\x11\xc1\x0b\x35\x96\x53\xd5\x6f\xe0\xdc\x16\xb5\x30\xc6\x9d\x00\x3f\x76\xbd\x12\xd1\x5f\xb8\xbf\x8d\x06\x8c\xbb\x04\xc6\x9e\x83\x09\x67\x04\x9d\x6e\xc4\x5c\x55\xc8\xbb\x89\xfa\x16\xfe\x5d\x39\x30\xfc\xac\xed\x81\x90\x42\x71\xef\xeb\x8a\x0b\xce\xd1\x1d\xef\x0a\xee\x82\xcf\xab\xdd\xf3\xaa\x59\x1e\xd6\xf5\x7e\xba\xb5\xce\x5d\xed\x3c\x1a\x79\xb4\x30\x93\xd2\xf1\x28\x3a\xea\xf6\xc1\xe8\x30\x3d\x66\x6e\x1e\xa8\xe3\x6e\xfd\xf5\xa2\x66\x28\x1b\x98\x5f\x5d\x2c\xb1\x26\x9c\x24\x5c\x1e\xdd\x29\xfa\x8d\x24\x99\x1a\x47\x77\x42\x29\xc7\x58\x16\xb3\x6a\xef\x13\x08\xeb\x76\xf2\xe7\xb6\x64\x8e\xe3\x33\xd9\x9e\x4c\x2c\x20\x69\x9c\x2c\x98\x4e\xbd\x3d\x19\xbb\xf1\xb6\x3f\x71\x1b\x6f\x5f\xde\xc3\x44\xdf\xe7\xa4\x08\xf4\xf5\x86\x58\x6f\x54\x22\x94\x0c\x15\xe1\x14\x7d\xe3\x81\x62\xb2\x31\xfe\x1b\x93\xd3\x2c\x7e\xe5\xec\x34\x4c\xd6\x2f\x93\xe8\x83\x51\xd9\xa0\x8b\xe9\x5b\x17\x4b\xeb\xac\xe8\x48\x8d\xd6\x45\xb4\xce\x71\xeb\x88\x07\x0a\xa3\x87\x6c\x97\x94\xa7\xc3\x6b\x7e\x74\xce\x3b\x3b\x37\xe9\xbe\x53\x56\x9f\xc5\x7b\xda\x8d\xbf\x65\x7a\xb5\x9f\x57\x87\xe3\xb5\xd9\x35\xbd\xd8\x5b\xbe\x9c\xd1\x35\xf1\x35\x3a\xb3\x77\x07\xb3\xac\x42\xea\xe0\x5b\x88\x71\xcc\x5f\x94\xa2\x93\x73\xb5\x87\x70\x92\xbc\x08\xc8\xcd\xa8\x49\x44\x05\x7a\xb8\x2b\x4f\x6b\x92\x32\xdf\xd3\xa8\xfe\x7e\x33\xb7\x59\x2f\x9f\xf6\x5f\x77\xcd\x7e\x35\x6d\xf9\xa4\xbc\xf7\x59\x2e\xa9\x5b\xc6\x70\xd1\xc5\xfd\xd5\xa8\xa6\x4f\xad\xd7\x67\xc6\xdc\x30\x2c\x2a\xe3\xd2\xf0\xb4\xbc\x5f\x9d\xe7\x2f\x73\x95\xe9\x4a\x6f\x57\x05\x3e\xf0\x0c\x86\xbf\x01\xfa\x4e\xc9\xd0\xd9\xd5\x6c\x58\x20\xee\x8b\x14\xdb\x66\x9a\xb0\xbc\x2b\x18\x90\x19\x5d\x2e\xd9\x5f\x19\x9c\x35\x17\x70\x56\x77\x0d\x29\xec\x0e\x22\x7b\x9e\xcf\x1e\x35\x9b\xc9\x95\x3e\xc4\xf9\x53\x4e\xff\x3f\x7b\x6f\x96\xe3\x38\xae\x75\x8d\xbe\x7b\x14\x04\x2e\x70\xdf\x64\x88\x3d\x89\x7f\x0c\x39\x86\x80\x4b\xe9\x2c\xf9\x96\x22\x1c\x5f\x28\xd2\x75\x2a\x46\x7f\xb1\xd7\xde\xa4\x24\x5b\x6e\xb2\xa9\x3a\x79\xfe\xef\x00\x99\x61\x8b\x92\x25\x76\x22\x77\xbb\x56\x63\x9d\xee\x39\xfc\x18\x6f\x8d\x5e\x95\x6d\xe8\x22\x36\x64\x92\xd2\x6e\x06\x8e\xd9\x6f\xfb\xc6\x58\x3f\xf8\xac\xa2\x67\xc6\x90\xdb\xbe\x3c\xee\x83\x85\x51\x58\x8a\x96\xd6\xe0\x5f\xa0\x77\xc0\x12\x5d\xb8\xb5\x38\xdf\x4a\x50\x6b\x90\xae\xfc\x5d\xbd\xf7\x40\xd7\x98\xf5\xae\xa9\xb6\xe7\x92\x8f\x57\xc1\xbf\xd7\xf8\xd4\x85\x08\xa4\x18\xa1\x67\xd1\xa0\xa9\x46\x83\xba\xca\xfc\x76\x41\x33\xcd\x31\x0a\x29\x7c\xfc\x12\x03\xc1\x1d\xbd\xf9\xe9\x3d\x6d\xd7\x7b\xda\x9e\xf5\xf4\xb5\x5e\x5a\x38\x79\xe7\x9e\xb9\xdb\xdd\x6e\x19\xa2\x28\xcd\x13\x27\xe8\x7f\xdd\xf7\xa6\xfd\xf1\x84\x2c\x8a\xef\x7a\x4b\xbf\x7f\xdc\x36\x3f\x6d\xe0\x1e\x18\x02\xb7\x3e\x04\xee\x57\x5a\x07\xe0\x7d\xcd\xa6\x10\x5c\x71\xe4\x2f\x2b\x61\x35\x38\x83\x17\x05\xfb\xb7\x2d\x0a\x7e\xbd\x9f\xfc\xf7\x4c\xd5\xf9\x96\x5a\x7c\x67\x2c\x79\xad\xb1\xfd\x7c\xef\x4a\xf7\xf7\x0c\xdd\xe6\xa7\xcf\xc0\xb0\xde\xb3\xe1\xff\xcc\x75\x6f\xc9\xba\x75\x25\xa3\x55\xe2\xbe\xf3\x9a\x23\xbf\xd2\xc8\xb9\x73\x7b\xf7\x43\xbd\x7d\x7d\x4d\xfe\x87\x17\xe3\xcd\x4f\x14\x1a\x1e\x18\x87\xb8\x3e\x0e\xf1\xff\x2c\x92\x2a\x91\x4e\x35\x30\xfc\x4c\x59\x67\x65\x22\xff\x4a\x7b\xd5\x4f\xef\x9d\xb4\xde\x3b\xe9\x81\x59\x0a\x3f\xf5\xb4\x37\xdd\x9b\xbc\xd8\x9e\x74\xaa\xda\x17\xe0\x80\x18\xe7\x80\x75\x32\xd6\xdb\xc4\x79\xb3\x9c\xe3\x8b\x49\xfd\xdd\x3b\xde\xb7\xbc\x01\x9b\xff\x8b\xc6\x38\xaf\x8f\x71\x25\x5a\x9d\x47\x9c\xcd\xb2\xe4\x05\x11\x7b\xb5\xe7\x0b\x07\xe6\x7d\xe9\x65\x75\x2e\x40\x42\xbc\x18\xe3\xff\xbb\xd7\xa1\x8c\x70\x8f\x6b\x43\x21\x27\xab\x6c\x42\xe3\x21\xbc\xa4\x53\x2f\x9c\x4a\x1c\xcb\x2c\xfd\x73\x19\xba\x65\xea\xe8\xfd\x73\xda\x8c\x85\x8e\xdd\x1b\xcd\x49\xb5\xc8\xb1\x66\x25\x67\x66\x42\x39\x9f\x25\x01\xd1\xbe\x20\x84\xeb\x91\x83\x7b\x99\x23\x66\xd9\xb0\x63\xdc\x32\x0c\x71\x25\x03\x8d\xc1\x19\xfe\xae\x81\xfb\xed\x69\xf7\xf2\xf9\xe9\xcf\xcb\x91\xab\x27\x2e\xc9\x58\x41\x48\xc3\xb1\x7c\xff\x50\x68\x66\xf1\xab\x14\x5b\x47\x6c\x41\xd8\x74\x0f\x30\x44\x9a\xd2\xed\x5f\xe8\xe3\xcb\xb1\x5b\x9b\xa2\xcb\xb3\x93\x7b\xc7\xb4\x92\xd6\x34\x67\xde\x18\x91\xf3\x22\x40\x0c\x38\x0e\x4e\x49\x51\x70\xe3\x8c\xb1\xe3\xbb\xc8\x5c\xbf\x99\x30\xb6\x46\x59\x9e\x85\x35\xaf\xf3\xba\x5e\x63\x8b\xdd\xdc\xa0\x8b\x7d\xa0\x7f\x3f\xbf\xed\x9e\x77\x97\x1d\x2b\xc5\xf3\x50\xc8\xda\xa3\xa5\xa3\xc6\xa9\x6b\x41\xdd\x64\xcd\x49\xd3\x7b\x11\x3c\x33\x2a\x88\xff\x10\xbe\xbe\xc6\x62\x3f\x85\x0f\x31\x21\x0a\xa0\x71\xb1\xf3\x1c\xc2\x42\x47\x81\x3f\xb4\x81\xe1\xbf\x6b\x95\x63\xb8\x9f\x14\x60\xe8\x4b\x61\x84\xa7\xc6\x66\x46\x91\x48\x61\xb4\x6c\x40\x64\xff\x4d\x8f\x38\x39\xa7\xad\xa2\x79\xe8\x11\xbf\x90\xb3\x6a\x7c\x8b\x0f\xdd\xe2\x7d\xf7\x99\xa3\x19\x4a\xd8\xb7\x12\x82\x84\x18\x37\x5d\x13\x01\x9b\xa7\x4d\x62\x12\x4d\x8e\x9f\x16\xc7\x65\xab\x18\x84\xc4\x29\x6d\x62\x67\xa2\xf2\x5a\xa5\x56\xa5\xa8\xb4\x33\x2a\xc5\x2e\x22\x4f\x1a\xd6\x20\xaf\x34\xdf\xe0\x21\x61\xfc\xcb\xdb\xee\x79\xbf\x32\xb3\x4b\x79\x85\xc7\xa1\x65\xa1\x00\x03\x30\x27\x66\x09\xe0\xc5\x9e\x94\x83\x60\xd2\x0f\x82\x22\xde\x37\x39\xf2\xfa\xbc\xa4\x89\x5f\x25\x7b\xcd\xdf\x1a\xb9\xbb\xba\xea\xa6\x30\x60\x40\x06\x19\x93\x3b\xd9\xa7\xd2\xd2\xfe\xf3\xa5\xc5\x90\x0b\x6b\xdc\x18\xc2\x1e\x40\x30\xe9\x43\xdf\xb8\xd8\x22\xc6\x5e\x47\x3d\x64\xb6\x17\x0f\xd6\x29\xe3\x01\x3a\x75\x87\xf3\x54\xee\x7f\xee\x2c\x9e\x97\x56\x3c\x72\xc1\x80\x62\xfc\x02\x23\x20\xe4\x4c\x9a\xb2\xe0\x3e\x39\x15\x30\x41\x09\x86\x17\x85\xe7\x5e\xf6\xad\x3c\xf4\x65\x09\xcf\xb3\x28\xfd\x65\x2c\x02\x7f\xd3\x0e\xf6\x7e\x18\xde\x9f\xc6\xfe\xf0\x65\x65\x30\xe6\xe7\x64\x48\xb4\xca\x9a\x33\x1a\x3a\xf1\x7e\x78\x8e\xe2\x4c\xa0\x1f\x10\xf0\x5c\xab\x9c\x6a\x92\x11\xf0\x5c\xa7\x5c\x64\xf9\x3f\x81\xc4\xc5\x01\xd9\x3c\xa8\x64\x91\xeb\x0a\xb4\xa1\xae\x91\xa8\x30\x40\x15\x60\x03\xd7\x58\xa1\x38\xd9\x4e\xf0\xfc\x34\xe2\x37\x6d\xab\x3c\x32\x0d\x13\x54\xda\xc6\xf1\x0f\x00\xa4\x0e\xd4\x4c\xa0\xae\x54\xd6\x42\x04\xe3\x79\xf5\xf0\xd6\xb3\x24\x8b\xfa\xd8\x7c\x4a\x48\xc3\xee\x38\x1c\x4b\x07\x45\x73\xdc\x52\x03\xad\xe4\x97\xd0\x18\x84\x42\x3f\x15\xb9\x0a\x5a\x3b\xc1\x93\xd2\xca\x06\x0d\x75\x06\xd2\x8e\xe5\xec\x49\xe4\xf6\x26\x5e\x6a\x1d\x0d\xb5\xd1\x2a\x19\xc5\xbf\xa4\xc5\x42\x70\x8b\x1c\x90\x42\x74\x50\xc0\x27\x75\x2a\xb9\xd2\xfd\x20\x40\xc0\x5c\x8b\x5a\x71\xa3\x1d\x2b\x2c\xd4\x5d\xce\xe8\x92\xfd\x02\x7f\x14\xc8\xae\x2c\xf5\x5d\x83\xa5\x8c\xe4\x6c\x4c\x46\xc4\x32\x82\x57\x09\xfd\x2d\x90\x47\x86\x76\x35\x8b\xc8\x4b\x20\xa3\x52\xb3\x79\x88\x25\x79\xa6\xb3\x08\xaf\xa2\x47\x5b\xc5\x63\x7c\x97\x4f\x4d\xa6\xd5\xe9\xf0\xf2\xbe\xe4\xe0\x3d\x3f\x31\xf1\xf0\x46\x2d\x3c\xbc\x5e\xd1\x56\x44\x6b\xdb\xd8\xf0\xb7\x46\x8e\xb0\x29\x25\xd9\x94\xfc\x72\x53\xfa\xf8\xe4\xb2\xd2\x36\xd2\x6e\x96\xb7\x46\xd3\xd2\xa1\xb7\x36\x00\xb5\xc5\x6c\x35\x77\xba\xd6\xb9\x6b\x82\x42\xc4\x96\x62\x4c\xfd\x0c\x10\x57\x23\x5b\x6b\x10\xe4\xa8\xb6\xb3\x8c\x17\x12\xa1\xa1\x98\xa4\xda\x2e\x20\x46\x95\x59\x8b\x30\x08\x92\x7c\x6d\x24\x80\xde\xb4\xbc\x95\x9a\xa0\x12\x26\x95\xd6\x9a\x6e\xd3\x18\x33\x6d\xdd\xf4\x3b\x06\x9b\x89\x1c\xa9\x67\x39\x49\xba\xed\xbc\xa2\x5f\x48\xb8\xb2\xee\xb8\x52\x19\xbc\x59\xfc\xfc\x16\xb9\xd2\x58\x64\x12\xd7\xb3\xa1\x8a\x22\x84\x94\x23\xff\xa2\xec\xf8\x54\x55\xa6\x59\x0a\x8a\x0b\x1c\x13\x1c\xa0\x1a\x41\xd5\x9f\xda\x42\x7e\x12\xc5\xc7\x89\x07\x35\x41\xf1\x0d\x39\x5e\x55\xeb\x0e\x39\xdd\x06\xb5\xe5\xca\xb6\xfc\xf6\xd1\xd4\x4c\xb9\xd4\x45\xe3\x86\xc6\xd4\xa6\x4a\x1f\xb4\x2a\x2a\x04\x81\x53\x1f\x71\x2c\xb4\x44\x74\xa7\x92\x18\x81\x41\x90\x70\x59\xae\x12\xaa\x72\x67\x92\xbd\x7c\x7e\x3a\xbc\x3c\xbd\x9e\x4f\xb1\x79\x71\xc5\x5e\x63\xfb\xe5\x2d\xb6\xb8\xdb\x32\x2b\x6f\xeb\xd9\x0d\xb4\xdc\x25\xd3\x01\x53\x9d\x7a\xd7\xe2\xaf\xcf\x8c\x58\xc1\xf0\x14\x33\x3e\x90\xa6\x70\xb0\x4c\x8c\x2b\x45\x2c\x2a\x52\x51\x07\xfc\x19\x47\xfd\xed\xb3\xd2\x69\x20\xe9\x2c\x7b\x64\x65\x03\xf3\x85\x49\x6a\xe8\xe3\x5b\xb9\x49\x37\x3d\xed\xdc\x33\xd2\xd3\x7b\x11\x76\xd4\x79\x6f\xfb\xd7\xe1\x2c\xb8\x75\x51\x2c\xe9\x70\x5e\xe9\x94\x07\xdd\x22\xa1\xca\x71\x84\x9a\xd5\x43\xc3\x69\xc0\x16\x7c\x7d\x4c\xbd\x27\x6b\x72\xa2\x56\xe4\x0a\x9a\x9c\x85\xc5\x25\x28\xe7\x06\x4c\x6d\xe7\x8a\xed\x78\xe0\x48\x63\x57\xb9\x60\x22\xd6\x64\x60\x64\xea\xce\x1b\x86\x2e\x00\xd2\xab\x53\x10\xc0\xbb\x86\x63\x7b\x39\x89\x3d\x71\xa8\x68\x90\x55\x0e\xf1\x31\xf8\x15\xe2\x5b\x05\xb9\x55\x89\x36\xd0\xe9\x56\x45\xa3\xa2\xe0\xcd\x31\xa9\x9d\x10\xc9\xf0\x0c\xc5\xc5\x0e\x0c\x06\xce\x6d\x26\x0f\xed\xe0\x9d\xf2\xae\x83\x93\x3d\x23\x05\x46\xc2\x00\xed\x3d\xc9\xe8\xe5\xf7\xfd\xdb\xeb\xdb\xe1\x65\xb9\x19\xcf\x4a\x2b\x3e\x10\x76\x7f\x20\x44\x64\x00\x32\x20\xfa\x08\xd1\x4a\xbc\x3e\xe3\xb1\x81\x9f\xce\x6f\x9b\x4c\x72\x4b\xda\x41\xb0\x63\x60\xd6\x10\xac\x6d\x05\xf6\x0c\xb5\xd5\xa0\xd8\x71\x7a\x74\xe0\x4c\x71\x5e\x01\x74\x20\xd1\xe0\x90\x84\x1d\x18\x78\x42\xbb\xd0\x35\x81\x25\x76\xda\x1d\x40\xd6\xe3\x40\x27\xd0\xd5\x37\xd8\x14\xc0\x50\xda\x45\x3a\x4e\x73\xe0\xfd\x1d\x28\xb0\xb1\x73\x5b\x1f\x13\x84\x75\xbb\x8d\x16\x5f\xfc\xd6\x05\xc4\x31\xa7\xad\x35\x21\xb1\xec\x04\x08\x89\x56\x71\x5c\x82\xf2\x00\x6c\x50\x1c\x30\x16\x94\x57\xb4\xca\x7b\x15\x72\x47\x2d\x6a\x55\xd6\xa4\x73\x68\xfa\x96\xbb\x1c\x11\x70\x1d\x10\x9d\xc9\xa8\x6f\x21\x15\xa1\xc0\x72\x54\x26\x23\xd9\x98\x91\x94\x20\xcc\x10\xaf\x82\xbc\x36\x55\x4c\xf7\x0c\xea\xec\x44\x44\xa7\x3e\x62\xae\x75\xe6\x9d\x89\xad\x72\x34\x91\x42\x07\xa0\x37\x3e\xa2\xc9\x89\x5c\x80\x0e\x81\xd8\x89\x16\x4c\x34\x16\xc1\xd9\x1e\xf1\xd9\x92\x00\x42\x6a\x7a\xf0\x4a\x8b\x33\xcc\xa5\x6d\xf4\xd1\x2a\xd7\x6e\x4d\xa2\x57\x84\xda\x14\xe8\xa3\xcb\xdb\x1c\x30\x0d\xad\xd9\xc6\x68\x8d\x8a\x5b\x8b\xf4\x09\x6a\x50\xe8\x38\xea\xdb\x56\xdc\x32\x3c\xcc\xf0\x7e\x22\xdb\x0a\x0d\x3d\x5e\x44\x3c\x48\x31\xb0\x0f\x6d\x82\x96\x29\x0e\xbd\x06\xa9\x8c\xd7\x2a\x5b\x64\x83\x79\xd0\x2c\xd2\xbf\x91\xea\x0a\xf2\xf8\x46\xeb\x8f\x4f\xa6\x4d\xca\x91\x72\xa9\xb8\x98\x1a\x68\xeb\xcc\x37\x8c\x73\xe6\x2c\x92\x4a\xb4\x47\xc2\x98\xb1\x88\xd4\x37\x56\x65\xea\xbf\x60\x95\xa7\x0d\x01\xa1\x24\xf4\xb9\x19\x81\x75\x0b\x46\x40\xcd\x91\xec\x9c\x62\xe2\x25\x53\x06\xd8\x4c\x35\x25\x85\x76\xf2\x0e\x12\x21\x8d\x09\xd6\xc8\xac\xb2\x1b\xe9\x03\x22\x37\x7d\x66\x27\xac\xf8\x01\x2a\x28\xd5\x8d\x16\x6b\x24\xe2\x61\x97\x07\xcc\x23\x3d\x94\xc4\x3c\x27\x37\x06\xc4\x4a\xd7\x70\xdf\x21\x17\x05\x7c\x60\x1f\x9f\xe8\x55\x6e\x7d\xd7\xa4\x6d\xd2\x3a\x46\x8e\xca\xdf\xa6\x4c\x02\xd1\x36\x39\x8f\xe4\x19\x1d\x3a\x92\xfd\x5a\xe5\x12\xb5\x30\xb5\x2a\xb6\x5d\x88\xa0\xde\x27\x49\xcc\x2b\x63\x5a\xd5\x6e\x3a\x18\xa3\x03\xb6\x09\x9b\xf1\x9e\x85\xdc\x59\x7a\xa2\x91\x57\x88\xea\x31\x96\x41\xd4\x5e\x7a\x98\x26\x2a\xad\xf2\x11\x5a\x7d\x30\x78\x1d\x21\x2d\xda\xcc\x49\x16\x2d\xb3\x0d\x65\xde\x2d\x68\xed\xa4\x35\x2e\x5a\xbc\xf2\x0d\xdf\x99\xb7\xdd\xa4\x1a\xf7\xf1\xc9\xa6\x56\x39\xe0\x38\x62\x66\xc8\x98\xb2\x28\xc4\x31\x3c\x16\x03\x90\x95\x6d\xc7\x26\xd9\x32\x20\x99\xc5\x4c\xad\xb7\x21\xd3\xee\x15\xb7\xad\x86\x50\xa2\xb7\xc1\x66\x1a\xc8\x6d\xcb\x61\xe3\xad\xd2\x79\xd3\x39\xc8\x2f\x09\x94\xad\x9a\x26\x89\xe9\xc0\xe1\x95\xe4\x12\xe0\x69\x9b\x2e\x6f\x75\xeb\x31\x11\xb7\x2e\x58\x6b\x95\xdf\x9a\x96\x33\x23\x5b\x26\x87\xbc\x27\x0a\xbc\x8d\xef\x97\x82\xc0\x54\x38\xe7\xbd\xea\x25\xb0\x8b\xe3\xaf\x40\x72\x94\x6d\xe5\xd4\xad\xb9\xdd\x08\xb4\x9f\x32\xbb\x4b\x72\xf9\xbd\xdc\xee\x2f\x87\xf7\x97\xfd\x38\x8a\xb9\x6c\x51\x9d\xe5\x09\x09\x3b\xa4\x39\x2a\x74\xf5\x7a\xc9\x5e\xaf\xa7\xfa\x30\x1c\x6b\x39\x5b\x0e\x97\x67\x63\x50\x40\xe8\x48\x56\x69\x52\x58\x78\x1d\x64\x21\x5e\x17\xee\x7b\x3e\x60\xd0\x96\xc5\x19\x81\x82\xe5\x33\x72\xb0\x38\x53\xee\xa7\x31\x19\x92\x95\xe7\x71\x4d\x6f\xf7\xc8\xb0\xfb\x7d\xde\x0f\x38\x94\x6c\x70\xa4\x59\xf4\xda\x08\xac\x72\xa3\x7d\x3b\x34\x49\x71\x12\x74\xcb\xa1\xd4\x8d\x33\x27\x70\x56\xe7\x3b\xb1\x87\xc3\x6e\x91\x82\x2d\xc7\xac\x62\x80\x8f\xb5\x7a\xd7\x25\xdb\x98\x94\xb6\x56\xd1\x33\x5d\x50\x2e\xd4\x61\x46\x2a\x2b\xcd\x0b\x1d\x80\xd9\xcb\x1d\xc1\xa5\x13\x8a\xee\xcf\xb1\x7e\x16\xd0\xee\xea\x30\xe7\x24\x70\x9a\x94\x02\x67\x38\x7b\xae\x95\x9a\xb2\x92\xed\xb2\x5e\x20\x58\x31\x38\x64\x0e\xca\x4e\xd5\xdc\xe0\xf7\x4e\xda\xc0\xd8\x91\x15\xe6\x59\xf2\xcd\xef\x86\x9a\x0d\xbb\xb1\x7f\xda\x7d\x7d\x3f\x2e\x7b\xb7\x16\x8a\x40\x98\x95\x75\xb9\xf7\x00\x14\x56\xb1\x98\xbd\x43\x1e\x42\x16\x0c\x59\xa7\x01\x63\x08\xdb\x7f\x62\x44\x43\xf8\x9b\xf4\xc0\x61\xd6\x7d\x89\x07\x08\xb9\x37\xda\x0a\x60\x53\x36\x7d\xf2\x62\xd2\x46\xa4\x3d\x63\xf6\x9e\xee\x66\xbf\xa0\x8a\x4b\x04\xf7\x59\xd9\x14\xda\x90\xf3\x00\x14\x5b\x1f\x07\x86\xd8\x4a\xfa\xe4\x42\x6f\x34\x49\xfb\x81\xed\xe8\x29\x7c\x7c\xa2\x9d\xdf\xa5\xc1\x42\x9e\x00\x37\x40\x64\x28\xf7\x94\x54\xca\x03\x47\x3b\x5a\x5d\x2b\x18\xf3\xd0\x14\x1a\xc5\x07\x2a\xfa\x72\x59\xcf\x97\x19\x12\x28\x77\xca\xa2\x4a\xd4\x85\xed\x59\xa7\xd8\x3b\xf9\x00\xc3\xe1\xf7\x7e\x21\x75\x4a\x81\x90\x7d\x00\x50\xf6\xa3\xd0\xf3\x33\x5a\xa2\xb7\xa7\x46\xeb\x38\x70\xba\xcc\x09\x41\xf0\x91\x5e\x28\xd8\x41\x1b\xa3\x4f\xd6\x0c\x0e\x8e\x5b\xba\x0c\x94\x1d\xcc\x90\x32\x80\xae\xa3\x8d\x27\x4e\x6e\x59\x7a\x7e\xc7\x33\xe7\x2c\xfd\xb6\xc0\x34\x9e\xee\x71\x76\x70\xb5\x9f\x86\xdd\x32\xa5\x6a\x5e\x3a\xe3\x12\x75\x5d\x13\xd2\xd6\xd8\x60\xc0\x25\x18\x20\xab\xda\xb8\x6d\x1d\xb2\xcf\xb3\xc7\xdc\x6a\x49\xe0\x1c\x48\xc0\xd5\xed\x49\x6b\x5e\xfb\xd2\x60\x38\x1f\x1f\x6a\x1d\xd8\xae\x03\x98\x2a\xb5\x1e\x3c\x4f\xec\x41\x73\x86\x33\x68\xa6\x58\xae\x64\xdc\x08\x24\x0e\x95\x1c\x5f\x91\xc7\xc0\xa0\x60\x3e\x3e\x79\x60\x9b\xf7\xae\x2d\xf8\xae\x6d\xb8\x07\x37\x27\xad\x7b\xdf\xfd\xb1\x3f\x9f\xd5\xcb\x13\xbc\xb7\x44\xda\x17\x02\x72\x57\x23\x8b\x8a\x62\x3e\xb0\x19\xdd\x11\x63\x02\x39\xfa\xd6\x18\xe4\x0d\xda\xb8\xf5\x2d\xc8\x6a\xb6\x2e\x4b\x7f\x34\xd4\x21\xd2\xbc\x81\x45\x7f\xda\xff\xa9\x0f\x95\xd5\xdb\xdc\x32\x03\x04\x93\x42\x06\xbb\xcd\x29\xb0\x9a\x92\x03\xf5\x5e\x42\xd4\xa6\x35\xe8\x3c\x52\xeb\x52\x22\x99\x88\xfa\x4f\xeb\x81\x33\xbf\x6c\x1c\x34\xcd\x02\x74\x1f\x67\x3c\x06\xc5\x3c\x13\xdf\xdb\x4b\xaf\xcb\xbe\x99\x43\xe7\xb0\xcf\xd1\xd9\x75\x27\x93\x00\xfc\xb0\x31\x7a\x82\xb9\x9f\x98\xa1\x17\x70\xf7\xe2\xbb\x62\x80\xc6\x79\xb1\x6c\x37\x2e\xb6\xec\x8d\x8d\x2d\x6f\x37\xd7\xfd\x56\xe2\xc2\x2d\xd6\xdf\x5b\xde\x29\xb8\x0c\xef\x92\x88\x17\x78\x27\xf6\xe9\x6f\x16\xd5\xa3\xc6\x94\x7e\xa8\xa5\xf7\xba\xf4\xe9\xfd\xf8\x74\x9e\x48\xb4\x28\x9e\x90\x0e\x2f\x3b\xe4\x4a\xf7\xe9\x56\x22\x48\x48\x1c\x9b\xb0\x8b\x61\xe2\x58\xc9\x66\xf1\x0c\x76\xb0\xe8\xf4\x5b\xe3\x28\xf1\x0c\xe7\x03\xb6\x32\xbc\x08\xcc\x76\x79\xed\xb1\xf2\x73\xd9\x72\x5d\x3a\x47\x63\x96\x31\x5d\x43\xdf\xab\x83\x2a\x21\x31\x17\x40\xce\xd9\xcc\xee\x68\x2f\x90\x96\x24\xbb\xe1\x92\x95\x41\x43\x36\xb0\x67\x1c\x0e\x8f\x8c\xe0\x97\xb7\xe3\xcb\xfb\xca\x10\x4a\x79\xdd\x6c\x2e\xa6\x07\xe6\xb4\x94\xd6\x86\xc8\x58\x14\x7a\x0c\xe6\x4c\xd0\x20\x4f\xb8\xe3\xf4\xd6\x57\x06\x0e\x37\x59\x1f\x7d\x7d\xd9\x41\x7d\xcd\x3f\xbe\xac\x6f\x70\x6b\xe3\x4f\x33\x2e\xac\x26\x4b\xf5\xce\x6e\x4e\xe5\x97\x2b\x53\x38\xb8\x95\x89\x73\xb3\xcb\x8f\xc3\x59\x92\xaa\x14\x54\x5a\x2d\x67\x78\x4f\x05\x30\x9a\x5e\xf7\x17\x7e\x07\x52\xfd\x1a\xf4\xf0\x5d\x19\x0f\x75\x7b\x3a\xbe\xee\x5f\x2e\x6a\x2c\xa5\x73\x20\x15\x1e\x6f\xcb\xb0\xbf\x76\x72\x7b\xda\xe4\xfe\xee\x66\xcc\x7a\xec\x91\x16\x8d\xfd\xee\x6d\xff\xf9\xb2\x4d\xa5\x7c\x72\xbb\xbb\x7c\x02\xc1\xab\x61\x74\x01\x61\x0b\x76\x86\x1d\x0f\xda\x15\xf2\x60\x50\xff\x33\x01\x0c\xc7\x4c\xcd\x16\xe0\x0b\x9a\x4e\x23\xd1\x52\xe3\x55\x4a\xae\x5f\xb6\xe3\x5e\xf7\xdd\x61\x37\xac\xf4\x5c\x39\x21\xfe\x72\xcb\x60\x88\x3a\xaa\xa8\x07\xef\x95\x4b\x03\xcc\x14\x03\x14\xa2\x38\xb0\x32\x14\x51\xd8\x04\xa4\xac\xd1\x25\x24\x93\x44\x3d\x04\xab\x6c\xfc\x05\xfb\xe0\xe5\x7d\x35\xf1\x68\x59\x2e\xe0\xd1\x48\xe4\xee\xc1\x45\xde\x92\x7a\x45\x1a\x59\xcb\x07\x0d\x1d\x39\x3f\xc0\xf9\x42\x8a\xee\x3f\x08\xec\x45\x52\x9d\x31\xb0\x5a\x6b\x9d\x98\x27\x41\xa7\xbe\x49\xf7\x96\x82\xb7\xe7\xdd\xfb\xd3\x6e\x38\xfc\xfe\xb2\x62\xc6\x58\x3b\x8b\x7e\x20\xc9\xc5\xa5\x4b\x6f\x3d\xe8\x0a\xc0\xa8\xe3\xe6\x28\x8f\xf3\x15\x95\x7f\x63\xf0\x1b\x94\xf3\x72\x3e\xbf\x95\x30\xdc\x65\x73\x71\x9f\x87\xdb\xf2\xff\x7d\x1d\xdf\x0f\x5f\xfe\xba\xd6\x98\x7a\xfa\x66\x6b\xa6\x6d\x65\x59\xbb\x1b\x8d\x91\xcd\xe4\xe2\xfa\x95\x46\x3e\xdc\x96\x61\xbf\xf4\xe3\x5f\x9e\xbb\xd7\x8a\xb5\x2e\xbe\xd6\x08\x2c\x74\x45\xde\x20\x39\xcd\x49\x58\x4c\xc9\x5e\x38\x3f\xf1\x70\x3b\xde\xce\xb5\xd1\x95\x93\xb7\x67\x17\x89\x42\x3c\x20\x73\x01\xf2\x7a\x5b\x44\xd4\x5b\xfd\xc1\xf7\x8d\xc8\x6f\xc7\xe1\xf3\x65\x13\xb8\x94\xf7\xfa\x04\xd8\xed\x3b\x7c\x27\x9c\xac\x1a\x5c\x0f\x18\x44\x4d\xeb\xa2\x2d\x74\xf9\xf7\x7e\x09\x4b\x92\xb5\xca\x24\x03\xb6\x52\x12\x2e\x02\xbb\x78\x60\x07\x2e\xe4\x6e\x88\x45\x10\x9c\xf1\xa4\xfb\x46\x7b\x8d\x58\x17\x6d\x5d\xe7\x92\x18\x66\x8b\xd7\x9d\xe3\x36\x05\xc9\x1b\xbf\xf6\xaa\xf1\x77\x42\xad\xb8\xf1\xdd\xb0\xdf\xad\xac\x1a\x52\x5c\xad\xb1\xae\xf5\x08\x69\x45\x0e\xba\x36\x8e\x35\xcc\x24\xb8\xd2\x6e\xd0\xa4\x9d\xf7\x8d\x67\x8e\xbb\xd0\x9e\x1c\x1b\x61\x5a\x3f\x90\x6a\x3a\xd8\x36\x91\x62\x9a\x27\x4b\x0c\x5c\x0b\x88\x88\xb0\xaa\x89\x40\x61\x1d\xe0\x60\xb0\x43\x03\xcf\xde\x1d\xfa\xf5\x52\xd1\xe3\x70\x7c\x7b\xfa\x72\x18\x86\x95\x46\xcc\xce\xa1\x25\xd4\x6b\xbd\xd7\x1c\x2d\xd8\xd0\x97\x12\xa3\x68\x42\xec\x5a\x91\x7e\x5d\xe4\x10\x8e\x2b\xe1\x8d\xe3\x62\x03\x63\x31\xc4\x19\x15\x3d\xff\xfd\xf8\xa4\x01\x40\x92\x7b\xd3\x62\x9f\x21\xbd\xd8\x30\x32\xb3\x35\xba\xd3\x0c\xdf\xad\x99\x8f\xa9\x65\x3b\x71\x85\x15\x21\xe5\x3f\xb0\x6f\xa0\x00\x5e\xc2\xb1\x12\x14\x60\xf0\x14\xf8\x92\x74\xe2\xf0\x41\x61\xac\xd7\x30\xda\xb7\xca\xf9\x01\x60\x23\x74\x8d\xd7\xca\x6b\x26\x07\x7b\xbc\x17\xdf\xf6\xe3\x7e\xe5\x15\x5f\x9c\xe4\x19\xa1\x8d\x72\x6d\x3b\x58\xb8\x42\xb4\x99\x46\xd5\x47\x25\x6e\x6f\x76\x08\x48\x90\x3f\xe2\x54\xcc\xf5\x70\x42\x13\x80\x05\x16\xa9\x2f\x53\x02\x39\x4a\xd4\x82\xfa\xce\x32\x05\xbc\x1a\xbc\xd7\x5a\xc6\x57\x61\xfb\xb9\xeb\x2c\x46\xcd\x27\x1a\x01\xfc\x1d\x85\xf6\x2b\x70\x1e\xb5\xb9\x67\xf5\x9e\xb7\xf2\x7d\xff\xaf\xab\x3d\xc0\xe7\x84\xa2\x18\xa8\x08\xbd\x6e\x0d\xfa\x5a\x5b\x2f\x51\x3a\x2e\xf5\xce\x0c\x18\x4f\xe6\xa4\x4b\x40\x9f\xc6\x6b\x63\xdd\xd0\x70\xfc\x0a\x95\x7f\xac\x4f\xc7\x07\xaa\x7a\x78\xf9\xbc\x27\xe9\x66\xdf\xbd\xed\x77\xe3\xfe\xb2\xbe\x17\x17\x4c\xa6\x75\x89\xde\x2b\xf0\xd3\x13\xcf\x82\xac\xcc\xba\xec\x1d\x5a\x4c\x1c\xdf\xb8\x29\x79\x09\x77\x14\x6c\x66\x20\x22\xc9\x1a\x3e\xbf\xf5\xe3\xad\x3c\xbc\xdc\x69\xe5\x74\xc1\x4f\x6e\xe5\xb5\xba\x43\xb2\x70\x5a\x02\x3a\x2b\x58\x0a\xda\xfb\xdd\x5b\xd3\xe1\x7d\x37\x1c\xba\x95\x46\x4a\xf9\x5c\x15\x65\x58\x55\x20\x55\xb7\x2c\xac\xeb\xa8\x7b\x17\x65\x75\x8e\x1a\xdc\x31\xed\x10\x0d\xe7\x47\xb9\x78\xba\x03\x69\x2d\x0f\x1b\x0e\x2f\xfb\xa7\xf1\x75\xd7\x1d\x5e\x7e\xbf\xac\xca\xf2\xec\x44\x39\xbd\x16\x10\x3a\x23\x84\xbc\x3c\x81\xcd\x64\x56\x7a\x9a\x73\x45\x02\x40\xd9\x5b\x36\x58\x47\x37\x30\xde\x13\xa0\x37\xb4\xeb\x1b\x6f\x07\x14\x0c\x7c\x9a\x0a\x1e\x6b\xd9\xf8\xfe\xf4\xdb\xd7\x61\xd8\xbf\xef\x57\x44\x80\xb3\xd3\x93\x25\xbf\x6c\x7b\x12\x20\x7a\x2a\xac\x5e\xa5\xd1\xb3\x73\x95\xd9\xf9\xf2\x44\xf2\x4a\x87\x76\x96\xe7\xe4\x45\x24\x60\x60\xc9\x29\x15\x0a\x4c\x6a\x52\xc4\x3c\x6a\xc5\x04\x8f\x9b\x38\x1d\x56\x92\xa5\xc6\xb3\x7c\xaa\x71\x91\xa1\x75\x71\x13\x93\xd2\xca\x4d\x36\xdf\x70\x97\x47\xfb\xfb\xe5\xeb\xf3\x6f\xfb\x73\x9d\x7e\xed\xf4\x9c\x99\xf7\x1b\xba\xf5\xea\x08\x31\x2e\xf0\xc9\x30\x9d\x92\x69\x99\x69\xcc\xb9\xde\x66\xd8\x04\xe0\x7e\x69\x07\x9b\x94\x73\xf4\x86\x96\x57\x5a\x60\xe0\xe9\x87\x02\x2d\xc8\xd4\x21\x56\x6c\x0e\xb8\x1d\x95\xd2\xef\x71\x8d\x6e\xcb\x0f\x8c\xc6\xc1\x3d\x67\x08\xb7\xff\x75\x77\x16\x50\xb4\x28\xae\xe1\xed\x0e\x8c\x9a\x42\x67\x84\x97\x5e\x67\x73\x85\xd9\xdb\xd9\x35\x62\x6f\x63\x3d\x16\xaf\xe4\x4b\xae\xcf\x35\xfa\x3c\xda\xb6\xe5\xf7\x82\x95\x43\x3a\x29\xe7\x5f\x30\x7a\x0e\x83\xe7\x18\x4d\xef\xee\x1a\x47\xfa\x3d\x84\x14\x6e\xe3\xff\x7c\x5d\xd2\x23\x2c\x8b\xab\x27\x48\xbb\x3c\x38\xa3\xa4\xb3\xe7\xd8\x1f\x03\x14\x6d\x3e\x21\xe4\xb0\x74\xad\xbd\x72\xad\xad\xd7\x3e\x50\xb9\xb1\xdf\xbd\x2e\x13\x0f\x96\xe5\x5c\x3d\x93\x94\x71\x6d\xef\x99\x22\x3a\x91\x02\x0f\xb4\x52\xdb\x03\x21\x07\xce\x52\x52\x62\xfc\xc0\x24\x8c\xbd\xc5\x5a\xcc\x9e\xd5\xc2\xf3\x47\x13\xb7\xe6\x62\x9e\x6a\x56\x23\xef\x1e\x8b\xc4\xbe\x50\x97\x52\x26\xe2\xaa\xb9\x64\x85\x86\xb9\x90\x7a\x15\x16\x7d\xd0\x32\xb3\xfd\xf4\xfc\x66\xbc\xd7\x9d\x27\x82\xba\x0c\x1c\xe3\x5e\x8c\x38\x1c\x78\x51\x42\xe7\x4e\xa2\xc1\x6f\x26\xa8\x09\xb8\xb0\x65\x41\xe6\x44\x67\xf1\x8a\xb3\xed\x80\x2d\x38\xa7\xfb\xc8\x28\xd2\xb9\x87\x8f\x95\x09\xc1\xa5\x45\xa3\xa4\x5d\x22\xb8\x1e\x1a\x6c\x61\x4b\x43\xc8\x01\x0d\x38\x7f\x8a\x95\xde\xc4\x1e\x76\x78\x6c\x85\x6d\x90\x00\x12\x76\x42\x33\x2b\xcc\x83\x53\xe1\xfd\xed\xf0\xc7\xfe\xbd\x7f\x3b\x7e\xfd\xbd\x5f\xa9\xde\xf2\x74\xad\x27\xe3\xb0\x9d\xd9\x43\xda\xc8\xf5\xca\x69\x56\x2f\xfa\x92\xd0\x2a\x1c\x83\xda\x56\x76\xcd\xe0\x90\x2e\xc1\x57\x3c\x52\x59\x12\x4d\x3f\x1f\xde\xf6\xdd\xfb\xe1\xf8\xf2\x34\x3c\xbd\x1f\x9f\x56\x94\xba\xf5\xab\xa6\x74\x0a\xb8\xfd\x58\x98\xc1\x42\xe8\x43\xd9\xbf\x4b\xef\x22\x47\x02\xd1\xdf\x0d\x87\x7f\x4b\xc4\x77\x09\x04\x27\x81\xb6\x62\xbe\x63\x32\x59\x4e\xe3\xe2\x4f\x33\x15\xdc\xf5\xb4\xaf\x55\xf9\x8d\xaa\xbc\xa2\xe8\xad\x5f\x35\x11\x4c\xb9\xbc\x94\x37\x48\xd7\x6c\x52\x40\x56\x4e\x80\xb0\x5a\x7a\xff\x3b\x1b\x68\x4e\xa5\x5d\xdf\xda\xc0\xaf\x2f\x9f\xf7\x6f\x24\x59\xad\xec\x92\xf3\x73\x13\x5c\x51\x1b\x2f\xe1\x8a\x10\x98\xef\xf2\x15\x05\x0b\xd0\x35\x08\x0d\x00\xb0\x6d\xe3\x34\x92\x25\x90\x19\x45\x1f\x63\xf4\xca\x5a\x05\xb9\xea\xfc\xda\x08\x74\x68\x55\x49\x34\x1e\x80\x50\x3d\xbe\x7d\x7d\x5e\x36\x86\x8e\xa7\x20\x0e\x5f\x88\xae\x1a\x81\x64\x93\x8d\x08\xd2\xb5\xcc\xc0\x20\x69\x37\xa0\xc3\x62\x36\x2c\xda\x78\x62\x94\x8d\x07\x1b\x18\xff\x0c\x9b\x22\x2f\x9e\x36\xb9\xb5\x8d\x09\x98\x52\x3c\x76\x34\x3c\x6b\xfb\x24\xad\x5c\x31\x22\x36\xe3\xbe\xa1\xf2\x1c\x96\x76\x89\x48\xcb\x84\x27\xa7\x14\x86\x02\xa5\x35\x54\x50\x2d\x40\xc2\x03\x57\x2a\xb6\x0f\x98\xb6\x71\xdf\x27\xdd\x5e\x3e\x4c\x60\x92\xe8\x6f\x5b\x93\xff\x93\x51\x3a\x71\x1c\xed\xd6\x04\x6f\x55\xd8\x5a\xe3\x61\xbe\xc7\x8e\x1e\x3b\x60\x34\xab\x56\x45\x65\x06\xa7\xfc\x68\x94\x53\x46\x05\xce\xf0\xa6\x2e\x81\x99\x41\xc1\x24\xbf\x8d\xde\x04\xad\x9a\xb4\x35\x9a\x74\x6d\xc6\xf9\x9d\x22\x11\x05\xcb\xd8\x0e\xc8\xf6\x19\x1b\xa6\x24\xb3\xaa\x81\xa9\x6e\xc4\x21\x1d\x7d\x7c\xb2\xe0\x58\xce\x1c\x33\xda\xd6\x54\x0a\x1d\x07\xd8\x3a\xec\xd8\x70\xd4\x83\xd6\xc0\xd7\xce\x7c\x96\x2e\xa2\x03\xfe\x81\x19\x1b\xd8\x40\x74\xab\xc2\xa6\x6b\xc2\x36\x3a\xd7\x5a\x65\xb7\x36\x9a\x16\xb3\x41\xe7\x6d\x74\x01\x03\x6f\xdb\x13\x42\x54\x85\x33\x81\xd4\xa0\x21\x2a\x6d\xc7\xa0\x02\xf5\x44\x18\xb3\x42\x32\x88\x19\x73\xa1\x55\x18\xc1\x02\xc1\x55\xa0\x97\x43\x71\xd5\x18\x80\x1d\xb5\x3d\x35\x1a\x5a\xbe\x65\xad\xca\xb4\xa7\xd8\x02\x5b\xb2\x09\x27\xed\x19\x78\xb2\xb7\xa7\x26\x6b\x96\xb3\x91\xc7\x50\xb0\xd7\x5a\xc1\x5e\x6b\x31\x31\x2e\xb8\x76\x4e\x29\x74\x4d\x6c\xcb\xcb\x0b\xd8\xed\xf2\xb6\x6d\x46\x5f\xf9\xd1\xf9\x0b\x2c\x1c\x3e\x09\xeb\x7a\x12\xe7\x7a\x76\xea\x87\x61\xdc\x64\x76\xd9\x6b\x53\xce\x2e\xa7\xdc\xcf\x6c\xe6\xcf\x6d\xe5\x27\x93\xdc\xcf\x7a\x1b\x36\xdf\xf3\x3a\x18\x26\x15\x29\xaf\x03\x0e\x8d\xbc\x0e\xe1\x3b\x5f\x07\x30\x92\x68\xc3\xbf\x0a\x5b\xed\xb2\x55\x6e\xeb\xa3\x0b\x1c\xc4\x9d\x3a\x7e\x88\x53\xb8\x03\xdd\x8a\xc1\xfa\x69\xca\x96\x57\x02\x09\x3e\x54\x30\xe0\x0a\x9a\xe8\x5a\xab\x30\x26\x85\x4c\xa4\xd9\x2b\xb1\x79\xf8\x9d\xa0\x57\xc9\xb8\x2e\x6d\xb5\xce\x16\x6f\x9d\x57\x6e\x9b\x7d\xd6\xa0\x58\x24\xa1\x88\x7a\x04\xd1\xd2\xe5\x9b\x53\xa6\x6f\xb4\x1e\x25\x98\xdb\xe1\x75\x97\xa0\x78\xd5\x90\xfc\x04\x52\xef\x56\xe5\x6d\xca\x96\x96\xef\x6d\xd2\x39\x3a\x78\xd0\x92\x32\x16\xe3\x87\x5a\xb7\xca\x74\x69\x1b\xa2\x01\x1c\xbb\x8e\xdb\x60\x11\xeb\xbe\x4d\x1a\xf4\x17\x4e\x35\xa1\xf3\xdb\x36\x38\x64\xb6\x6c\xbd\x35\xce\x29\xcc\xb2\xad\x6e\x33\xbe\xe5\x53\x13\xe7\xa3\xb6\x29\x07\x3c\x9c\x1c\x6b\x1e\x55\x83\xac\x43\x90\x34\x72\xcf\x24\xea\x99\x8c\xa5\xc9\x8e\xad\x2a\xc3\xa5\x47\xe4\xe9\x71\x3a\x01\x46\x54\x32\xa9\xdc\xd9\x02\x97\x98\xaa\x93\x16\x38\xce\xdc\xd2\xca\x75\x8d\xdf\xfa\xd4\x92\x52\xb1\x8d\xb9\x75\x1c\xbc\x6e\xb7\xbe\x4d\x8e\x37\xb6\x5e\x93\x04\x30\xa2\xaf\xa8\x9a\xfc\x8d\x6a\xd6\x6b\x3d\x52\x99\x53\x06\x9f\x46\xb9\x13\xf7\xf2\x4a\xef\xdb\x93\xf6\xfd\xdd\xed\x1c\x6f\xbf\xbf\xb2\x22\x54\xec\x29\xe3\x69\x5f\xa6\x39\xba\x8d\xd9\xb4\x4e\x35\xed\x36\xea\x90\xf8\x8d\x6b\xcc\xd6\xb5\xc6\x32\xe7\x28\xd3\x0f\x2b\x09\x77\xa7\xbf\x54\x97\xc1\x2b\x17\x7b\x4f\x1b\xba\xef\x1b\x1b\x07\xf4\x52\x1e\xb1\xa1\x2b\x33\x5a\xa5\x95\x55\x16\xc7\x4e\xb5\xbd\xeb\x9c\x6a\x41\x88\xc1\x73\x7c\x0c\xc8\x9d\xa4\xb1\x76\x5b\x67\x83\xa3\xde\x96\x2f\x48\xba\xd8\x06\x5a\x14\x10\xaf\xd6\x95\x60\xfa\x69\xb8\x78\x78\x25\xc9\xcd\x6f\x83\xa1\x8b\xa7\x2f\xda\x6e\x4d\x96\x04\x2f\xd2\x29\x37\x5d\xb9\x01\x27\x40\x60\x83\x62\x99\x86\xc7\x2f\xfb\x80\xe1\x8b\xe0\x94\xd0\x7a\x0b\xde\x6e\xda\xa7\x7a\xc6\x0f\x8f\x5b\xd7\x3a\x17\x94\xa7\x1b\xb7\x9c\x73\x02\xef\x40\xdb\x49\x13\x55\x50\x86\x7a\xa5\xae\x4c\x24\x1f\x19\xe5\x86\xc6\x2b\x3f\xca\x82\x42\x03\xe9\x7e\xee\x8e\xf3\xc0\x52\xbc\xf9\x59\x3b\xce\xdb\x7e\xff\xf4\xdb\xdb\x7e\xf7\xc7\x97\xdd\x32\xfb\xfc\xec\x44\xd9\x6f\x48\xfe\xb5\x25\xb0\xc9\x32\xf3\x6f\xe5\x0f\x17\x84\x64\x30\x68\x4b\xf1\x84\xd2\xbc\x04\x8c\x0d\x95\x03\x1b\x78\xb1\x33\xff\xfd\x74\x56\xe0\x16\x1a\xc1\x5b\x80\x21\x41\x9b\x54\x35\x04\x8e\x7e\x24\x15\x22\x9c\x4a\x74\xcd\xcd\xc6\x7e\x1d\x86\xb1\x7b\xdb\x2f\x43\x77\x66\x85\xd5\xfc\xe1\x5a\xdf\x43\x4b\xd4\x2d\xd3\x19\x89\xd2\x8b\x78\xf3\xc0\xf6\x28\xa6\x09\xe7\x2b\x34\xb3\xfa\x05\xd1\x36\x81\x3e\xd3\x06\xbe\x85\x90\x8d\xb3\xdb\xa1\xd8\x2f\x75\xf1\x58\x4a\x80\x79\x1b\xf0\x83\x87\x1b\xf0\xb4\xff\xd7\x82\x16\xef\xe2\xcc\x44\xd7\xed\xf4\xca\x63\x44\xe5\xca\x6c\xda\xbb\x5e\xd7\xa8\xcb\xc0\x5e\x6b\xab\xf0\xa9\xaf\xf4\xd6\x9d\xa6\xbc\x40\x5d\x5c\x58\x7b\xa6\xb2\xb9\x0d\x4e\x94\x76\x97\x87\x92\x30\xca\xd1\xe2\x00\xca\x00\x76\x4c\x55\x97\xed\xa0\x6d\x16\x0e\x08\xfe\xf2\x88\xa3\xfd\xf7\xa7\xf7\xb7\xdd\xcb\x38\xec\x16\x96\xb1\x45\x69\xd5\xd2\x01\x48\x9d\x58\x35\x9a\xb3\x1f\xf7\x8d\x4e\x69\x30\x3c\x4b\x1d\x9b\x24\x2d\xac\x9d\x31\xb2\xd1\xd3\x44\x24\xaa\x1a\x09\x71\xf6\x16\x9a\x60\x13\xfd\xc0\x34\x2d\x6c\xb9\xd2\x61\x60\x0e\x18\x40\xad\x37\x3a\x0f\x88\x95\xce\x43\x89\xfb\xd3\xbe\x5d\x81\xce\xce\x49\x19\x6f\x3b\x5f\x57\x31\xc3\x74\xc4\x36\x74\x06\xc9\x96\xd6\x2a\x9f\xf9\x2f\x10\x75\x11\x7a\xdd\x33\xec\xb6\x51\xc6\xc6\x01\xf9\xa0\x71\xd0\x46\x69\xcd\xb9\x85\x9a\x39\x8d\x98\x74\x49\x59\x30\x6c\x44\x65\xe0\xef\x76\x5b\xda\x64\x2c\xed\x32\xda\xb5\xd6\x6a\x2c\xb1\xa9\xe5\x3c\x6f\xdf\x37\xc9\x9d\x1a\x6b\x7b\x4e\x85\x63\x86\x24\xce\xcf\x67\x0f\xb9\xe9\x1a\x83\xbd\xd7\x73\x52\xb9\xd7\xca\x9b\xd1\x58\xe5\x8d\xc2\xf7\x4e\x93\x20\x03\xfc\x03\x36\x95\xdb\x81\xfe\x0e\x24\xbd\x79\x5a\x86\x75\x47\x77\xd4\x9c\xa6\x0a\x8e\x29\x48\x25\x0d\xdc\xf3\xc8\xd4\xc6\xea\x10\xe9\xff\x28\x5f\xf9\x88\x29\xbd\x93\x53\xd6\xd3\xdf\x54\x40\xc1\x5b\xbf\xce\x71\xc3\x03\xbe\x1a\x6c\x04\xf5\xd2\x68\x76\x30\xfa\x76\x1d\xc1\x22\xa6\xcb\xc0\x23\x64\x4d\x21\xd3\xa5\xd7\xf9\xb6\xdb\xf1\xf7\xdd\xf3\xfe\x75\x11\x5d\x55\x4b\x24\xa1\x04\x91\x1d\xbd\xd6\xb1\x98\x0d\x35\x33\xb7\x15\xbb\x91\x0e\xed\x80\xc3\x81\xf3\x6c\x90\x42\x20\xb6\x44\x1d\x3f\x3e\xe9\x80\xf8\x3c\x39\x3b\x48\x36\x0e\xee\xc3\xd6\x45\xba\x08\xb1\x2d\xde\x94\xb3\xf2\x00\xba\x81\x98\x1b\xf5\x6d\x8b\xcb\xef\x67\xa0\x32\xbf\xcf\xc1\x64\xfe\x53\x9a\x70\xda\x0f\x8b\x26\xe0\x98\xf7\x46\xa3\xac\x6e\x07\x6d\xb0\xa3\x73\x20\x06\x1c\x84\x1c\x69\x01\x8a\x04\xab\x5c\xd6\xb7\x2e\xd1\x60\xe7\x6a\x07\x04\x71\x0c\x96\x34\x6b\xdb\x9a\x72\x21\x30\xc5\x83\x5b\x84\xe3\xdc\x0b\xec\xfa\x7d\x3f\xbe\x2f\x19\x37\x6b\x89\xec\x76\x81\xa9\x5f\x48\x13\x73\xc8\x3c\x71\x41\x45\xdf\x31\x69\xa1\xe1\x64\x60\x17\xf8\x13\xd9\xfb\xb4\x34\x64\xbc\xce\x1a\xa9\xc3\x1f\x9f\x72\x52\x36\xf8\xa1\xb1\x51\xd9\xd0\x79\xd6\xf2\x69\x21\x49\x0a\x80\x0d\x5e\x59\x30\x15\xd1\x1b\x1a\x3b\x5d\x78\xb3\x34\x93\xf5\x07\x5d\xb8\xdf\x21\xa0\x73\x16\x76\x13\xdb\x8e\xa3\x0e\xc4\x2d\x86\x58\x06\xf0\xdf\x77\x45\x08\xe4\x15\x94\x04\x5a\xdd\x41\x6b\xca\xd0\xa0\x48\xf1\xe4\x87\x22\x38\xd5\x65\xe5\x13\xad\x26\x06\x04\x59\xa1\x45\x96\x7a\x68\x37\x5d\xa0\x77\x35\x31\x5b\x17\x64\x8c\x0c\xd3\x9b\xb7\x7d\xe3\x4d\x87\x4c\xe1\x56\x32\xa1\x35\xb2\x48\x5b\xa4\x92\xea\x82\x1c\x15\x12\xb2\x3f\x43\x52\x21\x8c\x48\x86\xd1\x9c\xb6\xcb\x39\xb2\xc2\x60\x95\x20\xc4\xd8\xd4\xd1\xd2\x4f\x97\x6b\x5e\xf8\x69\x2d\x8a\x1c\xc2\x8d\xc6\x3b\x69\x24\xa0\xaa\x72\xd7\xb8\xbc\x8d\x11\x92\xa0\xdf\x46\x8d\x95\xcb\x2b\x93\xb6\xc6\x59\x0e\xb1\x45\xb4\x12\x2d\x97\x41\x91\x52\x1a\x10\x07\xd1\x71\xdf\x23\x94\x23\x00\x35\x32\x2a\x81\x82\x81\x94\x4e\xbd\x1b\x3e\x36\xb7\xa7\xcc\xfb\x19\xb9\x72\x2d\xf9\xa7\x00\xe4\x7f\x3f\xcc\xb3\x76\x70\x54\xe3\x8f\x4d\x62\xce\xe8\xc6\x30\xdd\xbd\x35\xd5\xc5\x02\xb8\x2f\x93\xfa\x1c\x18\xb3\x59\x62\xde\x84\xd0\x56\xb3\xa2\x27\x56\x49\xad\xfb\x26\xb2\xa8\xe3\xcc\xc9\x9a\xde\x56\x30\x6e\x41\xdc\x98\xbb\xf7\x82\x43\xbc\x0f\x9b\x2d\x0b\x95\x85\x3e\x61\x2b\x04\x18\x49\x35\x92\x42\xae\x72\x8c\xf2\x57\xf8\x17\xa4\x5e\xb7\x9b\x7c\x5c\xb0\x74\xf3\x21\x1a\xed\x41\x1b\x99\x3a\x0d\x55\xab\x64\x21\x23\x79\x10\xfb\x28\xca\x45\x93\xa3\xb9\x04\x41\xc2\x0e\x10\x36\x4c\x27\x19\xcd\x9c\xa4\x8e\x36\x0c\x70\x3b\xb7\x08\x8c\xf1\x83\xa0\x03\x19\xc8\x19\xda\x32\x38\x90\x9a\x29\xdf\x7d\x83\xc8\x6d\x40\x8f\xf2\xe3\x49\x0b\x6a\x55\x02\x84\x85\xa2\x75\x9a\x6a\x22\xe8\x7c\x45\xab\x74\xd0\x2a\x8d\xae\x06\x1a\xdc\xd0\x0d\xb4\x0d\x5a\x4f\xfa\x26\xad\x17\x9e\xde\xae\x81\x74\x46\x34\x8f\x69\x14\x39\xff\xda\x6f\xf8\xc1\x9a\x1f\xcc\xf7\x80\xc7\x0f\x51\x3f\xf4\x0e\xd8\x3c\x00\x7b\xe8\xe2\xa7\xb0\x5c\x94\x07\x6b\xf9\xa5\xb6\xca\x87\x01\xf8\x36\x27\xed\x1c\x68\x05\xa1\x8c\x2a\xdb\xf6\x06\x74\x54\xc8\x4c\x6f\xb4\xca\x5e\x59\x31\x42\x01\xa7\x25\x28\xf4\x0b\x87\xbc\x23\xc4\x13\x04\xb5\x4c\xf4\x88\x64\x2c\xed\x94\x76\xf4\x48\xd8\x0a\xe8\x32\xa0\x23\x74\x0d\xe0\x1c\x92\x53\x7a\xeb\x4d\x30\xfc\x36\x1b\x24\x79\x6d\x6d\x48\x6c\x87\x00\xc0\x95\x32\xca\x2a\xa7\xec\xa6\x73\xb0\x5c\x44\x16\x23\x22\x38\x01\xa9\x85\x1c\xf5\xa6\x01\x41\xd1\x58\xb6\xac\x71\x3e\xba\x51\xcd\x9d\x7d\xeb\x38\x7c\x79\xea\x8e\x5f\xdf\x16\x71\x3c\x8b\xd2\xea\x1f\xb0\xc8\x96\xa4\x9a\x06\x92\xe8\xb3\xed\x02\x5b\xb0\x90\xd5\xa7\xf9\x73\x8a\xbe\xf6\x91\x57\x2e\xfc\xc2\x99\x91\xf5\xd6\xcc\x05\xb8\x8c\x56\xde\x40\x0b\x65\x70\xca\xc6\x53\x63\x23\xbd\xb6\x1c\x2e\x9b\x9c\x02\xfd\xe6\xad\x7c\xc7\xdb\x91\x11\xb7\xdb\xfd\x3a\x3e\x7d\x39\xfc\x6b\xe1\xdc\x99\x95\x4d\xa0\x4a\x6d\xec\x92\x05\x5a\x5e\x56\x01\xbe\x1c\xfa\x3f\x36\xf2\xbd\xa9\x05\x38\xc2\x86\x20\xc5\x63\x39\x28\x05\x1f\x9f\x9c\x03\x0a\x70\xef\x8a\x7b\xd8\xf1\x4e\x96\x32\xc7\x94\x6a\xc0\x47\x45\xfe\xc3\xfc\x98\xa4\x47\xbb\x8e\xae\xc0\x96\x07\xc8\x38\xbe\x46\x23\x25\xce\xc1\xfd\xec\x68\xc6\xa5\x4c\xe7\xe8\x12\x39\x7d\x72\xe2\x79\x76\x5d\xca\x2c\xff\x07\xa6\x47\x2b\xcf\xf8\x28\x5e\x91\x4d\x85\x8e\x9a\x10\xa3\xc6\x19\x54\x14\x1f\x5f\xf3\xbc\xdd\xed\xea\x97\xe3\xfb\x6a\x77\xcf\xca\xff\xd7\x74\xf9\xbd\xbe\x5a\xe6\xa5\xd6\x12\x51\xdb\xa3\xd2\x36\xd1\x2a\x9b\x61\xaa\x86\xda\x61\x84\x3c\xcf\x33\xc4\x4f\x93\x21\x36\x25\xab\xce\xbb\xa3\xb3\xb0\x5d\x21\xa6\x33\xd3\xd6\xc1\x71\x07\x46\x0f\xa0\x81\x1c\x00\x2a\x63\x49\xc3\x2c\x61\xa3\x80\xeb\xe9\x98\x6f\xd5\xb2\xa4\x67\xd1\xae\x56\xf0\xd0\xbf\xa1\xbf\x1c\x4d\x1e\x03\xa0\x20\x47\xab\x46\xbb\x3e\x3a\x56\x80\xb4\x5a\x01\x21\xd2\xb4\x07\x6c\x06\x7e\xa9\xbb\xc8\xe0\x5e\xc0\x8c\x02\xff\x2e\xcb\x69\x67\x73\xa3\xa3\xb5\xb8\x65\x1e\x70\x27\x7e\x52\x5d\x6e\x01\xe8\x14\xe5\x80\xf3\x16\x12\x9c\x8c\x3f\x36\x68\x6f\xbb\xcf\x8b\xd5\x93\x8f\xa7\x09\xed\x1c\xed\x31\x06\x61\xd9\x40\x34\x41\xac\x30\xcd\x74\x3d\x80\x4d\xd1\x92\x58\xaf\x9d\x1e\x30\x19\x1d\x97\x92\x5e\xcb\x70\x41\x74\x1d\x58\x4c\xef\x70\xb7\xd0\x83\x0f\xfb\x45\xfc\xd2\x54\x34\x49\x49\x31\x16\x48\x64\x11\xb9\x24\x3a\xc5\xcd\x71\xc8\x2b\x04\x72\x41\x45\x66\x64\x01\x98\xb8\x24\xf4\x64\x16\xbd\x82\xec\xcc\x52\x3c\x31\xdd\x41\x3d\xbb\xbc\xfa\x1f\xc3\xf2\x45\xde\x8c\x69\x4b\x5e\x62\x4d\x26\x95\xac\xb3\x59\x72\x62\x8d\x2b\x45\x71\x6d\xfb\x2c\x69\x74\x49\xe0\xdf\x97\x3b\xcd\xc8\x5e\x38\x2b\xb5\x99\x45\x22\xce\x3a\xe3\xae\x36\xf6\xb6\x5b\x50\x7e\xc9\xf1\x3c\xba\x74\xa5\xbf\xc6\x9b\x21\xf0\xe3\x2c\x75\x8b\x4d\x7a\xd6\xe9\x15\x3b\xc6\x78\x96\x14\x36\x2e\xfa\x77\xe4\x3c\x32\xdc\x48\x22\xbf\x7d\xb8\x5e\x97\x0a\xdc\x39\x2e\xd0\xd5\xc6\xd9\xe0\x88\x79\x71\x35\x5f\x73\xf3\x40\x65\xea\x6d\x04\x69\x76\x6d\x56\xcc\x2f\x1c\x6f\xf6\x99\x84\xaa\xc5\x35\x5c\xd2\x95\xfe\xbd\x5a\x19\xc4\xc9\xba\x15\x58\x6d\xf3\xc0\x5d\x4a\xff\x6e\xd8\x65\xf7\x68\x07\xcf\x8c\x49\x8b\xc1\xbe\x33\xd3\x5e\xfb\x43\xf7\xb4\xff\x9f\xe5\x74\xab\x85\xd3\x4a\x91\x33\xe3\x49\x17\xd6\x7c\xc9\x56\x62\xde\xde\x39\x08\xd0\x47\x09\xb1\x4a\x61\xf6\x0b\x89\xbc\xa7\xf7\x25\xc8\x22\x13\xa6\xf7\x63\xed\x36\xb7\xeb\x7d\xf8\x7c\xbe\x39\xd6\xa2\x6a\xd4\x4e\xbe\x07\xec\x0f\xed\x6e\xa7\xc6\x0a\x82\x7a\xf2\xa7\x48\x8b\x30\x2d\x47\xac\xdc\xa5\x00\x3c\x12\x50\x4d\x6a\x7b\xe3\x6c\xf2\x88\x0d\x49\xa1\x96\x92\x14\x14\x0d\xdd\xbc\xc7\xfd\x69\xc0\x68\x03\x2b\xc7\x51\xb9\xe4\x07\xe7\x21\xea\xa7\xd9\x5e\x6a\x19\x89\xce\xae\x1b\x03\x2d\x70\x73\x64\x62\x3b\xcd\xf6\x6d\x3c\x52\x2a\xc0\xf5\x71\x26\xf6\x0c\x74\x64\x91\xa6\x68\xdb\x75\xd3\x24\xdf\x8e\x29\x23\xf4\xfc\x17\xd1\xd5\x06\x51\xab\xbf\xe1\x92\x07\x86\xe7\xe5\x62\x74\xe6\x69\xcf\x1c\x7e\xb3\xe8\x4c\x2a\x96\x89\x73\x5e\x7c\xd9\xf3\xb2\x84\xad\x15\xaf\xdc\x43\x06\xfe\xac\xb4\x38\x2e\x56\x8a\x57\xee\xb1\x3e\x03\xee\xe4\x9f\x6e\x7e\x5a\x02\xea\xed\x0e\x3f\x7e\x5d\x98\x62\xf8\xb8\xbe\x09\xc6\xfa\xce\xb7\x70\xf9\x03\xe0\x86\x3f\xa3\x67\x33\x16\xbd\x7d\xde\x0a\xc3\x3c\x29\xaa\x81\x95\x4a\xd7\x01\x69\x94\x94\x63\x7a\xd5\xa5\x63\xea\xad\x18\x40\x88\x3f\xcb\xad\x4c\xce\x7c\x2b\xcf\x84\xca\x91\x1f\x85\x8c\x2b\xfa\x71\x8c\x5d\x03\x84\xa7\x1b\x30\xc2\x96\xb1\x9f\xac\x60\x3f\x25\xc1\x7d\xc2\x31\xbf\x0e\x0f\xdc\x66\x73\x1b\x8d\xf4\x7e\x6f\x3e\xed\x3e\x7f\x3e\xef\x51\x2e\x9b\x48\x5c\xac\xef\x40\x59\xcd\x29\x4c\x9a\x3f\x83\x9b\x9b\x5d\x99\x16\x3b\x79\x20\xd8\x9a\xc4\xd0\xa7\x9a\x24\x02\x0d\x1c\xe1\xa8\xb2\x85\xbb\x87\x3e\x42\x7b\x9a\x98\x1c\x68\x16\x78\x0e\x35\x90\x96\xb4\x1f\x85\x3b\xe6\x7e\x27\xde\x6c\x3c\xef\xdc\x11\xae\x26\x8e\x6d\xe1\xac\x2d\xdb\x69\x53\xd8\x7a\xa1\x9f\x07\x3d\x36\x51\x09\x76\x63\xd0\x9b\x2e\x70\xfc\x09\x66\xa7\x7d\x00\xab\x4b\x86\x1d\xb1\xff\x76\xe6\x35\xb4\xd5\x57\x0a\xc6\x8a\xe0\x0a\x77\xee\x43\x43\xf3\xe7\xf1\xed\x8f\x8b\xb1\xe1\xc2\x3a\xe5\xb5\xcd\x9d\x11\x1b\xb2\x71\xf4\xd7\xd3\xae\xe9\x01\xbc\x2d\x47\x5e\xf4\x0b\x14\xd9\x51\xbe\xf2\xd1\xc7\x27\xd3\x5a\x6c\xe2\x6c\x76\x5e\x9c\x1c\x3d\x1c\x67\x38\x1e\x1b\xbe\x3d\xce\x3a\xb9\xa9\x97\x9b\x4a\x07\x4c\x95\x39\xff\x9d\x95\xbb\x32\x8b\x28\x1e\xe2\xb8\x32\x5e\xee\x28\x95\xf1\x01\xcb\x8c\x46\x56\x08\xed\x33\x4d\xf6\xfc\x69\x34\x49\x4a\x19\x24\xeb\x76\xfa\x33\xe2\x5b\x29\xa6\x02\xf9\x81\xfc\xbf\xd9\xcf\xfd\x7c\xee\xf7\xd5\x87\x44\x9a\xa6\x99\x0f\xd7\xc4\x5c\x04\x7c\x39\x93\xfa\x14\xce\x1d\x8f\x62\xff\x3c\xf7\x84\xa6\xc2\xc5\x3f\xe7\xa1\xf5\x2c\x81\x7b\x3b\xa7\xa5\x9d\x61\x87\xd8\x9b\xb0\x3f\x0f\xa8\x0c\x57\x59\x9d\xcf\x90\x50\xee\xe0\x12\xf6\x9f\xdf\xce\xe4\x8f\x5a\xc2\xd6\x58\xab\x9c\xcf\x9d\xb6\x7e\xeb\xa0\xc1\x5a\xbf\xcd\x40\x33\xd0\xdb\x44\x7a\x9c\x89\xed\x36\x79\xe5\x5a\x92\x0c\xda\xc0\x39\x87\x48\xab\x0d\x46\xe9\x40\xb2\x87\x39\x45\x2b\x7a\xea\xa9\xd1\xad\x47\x97\x48\x07\x35\x7e\xb2\x63\xdb\xb9\x7a\x96\x86\xc2\x5c\x21\x8b\x45\x4a\x7d\x93\xe4\x36\xbd\x03\x2a\xd4\x59\x7e\xd3\x09\x40\x72\xfc\x9c\x5c\x59\xab\x8b\xe5\x9c\xd3\x56\xb8\x18\xb9\x11\x09\x75\x35\xf6\x44\x55\x8a\x7e\xb3\x7a\x47\x49\x61\x61\xe4\x4f\x13\x24\x27\xb4\x85\x33\xd3\x79\x26\xfe\x46\x7f\x83\x07\xfa\x9e\xb8\x87\xbe\x7d\x39\xef\xec\x97\xf9\x52\xcc\xb3\xb2\xe1\x98\x85\xca\xb8\x0e\xb3\xfe\x4a\xf5\x38\x72\x04\xb6\xec\x45\x6a\x17\x24\x3e\xf0\x89\xd3\x8b\x6b\x73\x61\xd5\x9f\x9b\xe8\x6f\x8d\x00\xad\xed\x41\x08\x94\x4b\xa2\x46\xa5\x0e\xe2\xf4\xe5\xda\x29\xee\x7e\xa7\xd4\x07\x44\xbf\xd2\x8c\xcd\xdd\x6c\x1e\xea\xa6\xf1\xfd\xed\xb8\x48\x14\x9c\x17\x56\x4f\x8d\xd1\xb6\x4a\x30\x45\x07\x19\x27\xad\x45\x89\xa2\x72\x01\xc8\x62\x55\x55\x9c\x5a\xc8\x74\x8f\xd9\x0e\x83\x92\x88\x9d\xe4\x47\x9b\x61\x38\x0c\xf0\xb0\xb3\x6d\xd9\x75\x08\x91\xd7\x82\x1d\x53\x03\x9c\x2e\x83\xdc\xc7\xf3\x30\xfa\x51\xae\x97\xff\x77\xbb\xe7\xcf\xfd\xee\x8f\xb3\xce\xe1\xa2\x6a\xea\x7e\x08\x4b\x3f\xcc\x63\x90\x46\xe1\x7a\xe1\xa3\xbf\xa1\x51\x3f\xa7\xb3\x6f\x76\xcd\x7e\xf7\x79\x99\x67\x5e\x4b\xaa\x2d\xcb\x65\xdd\xe9\x16\x81\xa4\x19\xc9\x5e\xfc\x89\xf4\x1f\xed\xdb\x75\xfe\x08\x4e\x06\x8a\x1a\x6c\x66\x76\xdd\x62\xb7\x62\xcd\xc5\xdb\xc0\x09\xcb\xe2\x67\xbb\x14\x80\x4e\xfc\x50\xaa\x92\xd4\x45\xfe\x3f\xd2\xd2\xa7\xe7\x45\x62\xef\xa2\xf4\xa1\x16\x1b\xed\xae\xb5\x58\xcc\x5e\x48\x4f\x64\x26\xc4\x5f\xac\x03\x86\x65\x2a\x71\x2d\xa9\xd0\xf4\x31\x0d\x31\xd1\xdf\x86\x3e\x22\x63\x73\xc6\x24\xea\x16\x09\x92\x35\x2b\x71\xca\x59\x1c\x17\x64\xfe\xe3\x24\x10\x8c\x73\x41\x40\xf2\x62\xb2\x39\x17\x1b\xc6\x9a\x3c\xa2\x8c\x19\x1b\x71\xcc\x4a\x2a\xca\x58\x92\x42\x14\x33\xa3\x71\x8a\x73\xcd\x3b\xc9\x9c\x04\x39\x56\x57\x2e\x1f\x71\xc6\x89\xb8\x6b\xcf\x6e\xa1\xc1\xf5\x95\x86\x18\x55\x4c\x1b\xb4\x10\x0d\x4d\xd2\x50\x81\xa7\x9d\xd2\x52\xce\xee\x64\xe4\x41\x23\xbb\x7e\xa5\xd6\x8b\x86\xda\x98\x4a\xee\x7d\x93\x7c\x47\x2f\xa5\x62\xca\x88\x02\x88\x4c\xdd\x27\xcc\x2c\xb8\xbf\xa0\x4c\x04\x80\x58\x33\xdc\x75\x18\x1a\x44\x23\x95\x2c\x30\xc4\x39\x14\xe2\x09\x00\xb3\xd3\x8d\xac\xa2\xfb\xe0\xf6\xf0\x4d\x02\xec\x96\x29\x8e\xb0\x32\xb9\xe9\x24\xad\xfa\x56\x0f\xf4\x13\xb3\xe9\x9c\x72\x48\xbe\x00\x2e\x7c\x87\xa9\xae\x39\x58\x4b\x35\xa5\xe6\x03\x2a\xd0\xd1\x0d\x8c\x55\x49\x59\xad\xda\x01\x75\x37\x53\xa3\xa0\xd9\xde\xb1\x13\xf4\xfb\xdd\xdb\xc5\xd4\x7b\x9b\x65\xae\xb3\x87\x9c\xc4\xb3\xac\x58\x74\x67\xc9\x5d\x04\x77\x11\xc6\x67\x32\x3c\x1f\xb3\xc8\xcf\x52\xfe\xc7\x27\x1d\x48\x18\x0b\x1d\x03\xd7\x7b\xe0\x69\x02\x84\xdb\x23\x64\x23\x8c\x46\xa2\x36\xe4\x78\xe2\x7f\x61\xfd\xbb\x09\x19\x41\x1b\xf8\x0c\x61\x04\x66\x9b\x53\x7c\xc4\xab\x7b\xa5\x8f\x9e\x76\x4f\xc9\x84\xa8\xd1\xa9\x75\x45\xae\x53\x08\xde\x6e\xeb\x55\xdc\x00\x6b\x1c\x19\xa9\x41\x59\x04\xf2\xa9\x18\x48\x39\x33\xa2\x97\x71\x4c\x86\x13\x6e\x04\x40\xe8\x43\x08\x08\x5a\x05\x41\x88\x67\x94\x54\x2f\x39\x06\x58\x58\x5c\x75\x99\x79\xa8\xeb\x23\xaf\x2a\x5e\x4d\x04\xf9\xa8\x64\x60\xd6\x83\xc2\xa8\x41\x5f\x2e\x89\x36\x20\xbb\x18\x9a\x19\xb0\xe5\x46\x60\xa1\x53\x9d\x4d\x52\x96\x63\x6c\x7c\x0b\x92\x09\x71\x40\x0b\x8e\xbf\xa7\x8e\x73\x1d\xc2\x4a\xf8\x1d\xa1\xba\x07\xd5\xf8\x76\xc3\x51\xfa\x88\xe7\xc1\x1d\x6f\xeb\x7e\xfd\x7e\x78\x5d\x4c\x95\xa1\x9a\x38\xe8\x05\x8b\x58\x41\x34\x46\x80\xa6\x4b\xab\x5c\x9a\xb1\xb1\x5d\x23\xbe\xe9\x8b\xbd\xe5\xaa\x91\xb8\x24\xc2\x79\x81\xef\x11\xf4\x56\x60\xf2\x73\xe7\x23\x68\x11\x9e\xb7\xc8\x9f\xa4\xc8\x6b\xcd\xb7\xb6\xc8\x7d\x70\x8e\x26\x70\x51\xe1\x25\x55\xb8\xf8\x11\x20\xae\xde\x54\xf0\x56\xf4\xbb\xcd\x8f\x29\x78\xfb\xe1\xf5\xe9\xf8\xf5\x7d\x38\x2c\x38\xbc\x96\xc5\x53\xae\x5c\x72\x2b\xb2\x46\x27\x94\x4c\xb4\xcf\xf9\xc2\x5b\xd3\xc6\x9e\x1d\xff\x61\x32\x47\x28\x9e\x3e\x73\x56\x08\x46\xee\x73\x0b\x10\x3a\xf9\xa1\x8b\x6a\xee\x4f\x46\x05\x92\xef\xb2\x53\x1c\x2d\x8f\xc0\x79\x04\xad\x8f\x8d\x7c\x6f\x6a\x01\x8e\xe6\xe1\xee\xe3\x2c\xc8\x1d\x5f\xfe\x16\x5d\x9a\x35\x59\xde\xe7\x67\x80\x9e\x37\x47\xe0\xf0\x7b\xff\xf4\x3f\x5f\x77\xc3\xe1\x7d\x0e\xa2\xb6\x2c\xbe\xa5\x76\x0b\xf0\xce\x15\xf5\x1a\xb1\x48\x97\x9b\xf2\x49\x80\xa8\xb4\x51\x8b\xed\xb9\xd7\x88\x86\xea\xc1\x16\xdc\xeb\x0b\x25\xfe\x47\x74\xf5\x55\x77\x15\x0c\xfd\x37\x74\xf5\xcd\x35\xd0\xda\xef\x50\xd6\x0f\xbf\xf7\xe7\x38\xdd\xb3\x32\x91\xf4\x8d\xb2\xd1\x14\xc8\xfe\x02\x5d\xef\x19\xba\x3e\x92\xe8\x1f\x0b\x72\x7d\xe1\x0d\xe0\x0d\x8e\x1d\x1b\x21\x4b\xbc\xbc\x84\xb6\xb3\x0f\x88\x86\x07\xb9\xc0\x1e\x71\xef\xb1\xc4\x94\x96\x20\x79\x93\x4e\xba\xbd\x1d\x76\x5e\x2b\x7a\x6e\x6f\x58\x96\xd7\x57\xf5\x1f\x7c\x53\xbe\xeb\x45\xb1\x1a\x36\xf7\xda\xc5\xde\x03\x15\x5b\x3e\x9a\x59\x31\x1d\xce\x8a\x6d\x3b\x4c\x85\xde\x0f\xb5\xa8\xf1\xfe\x76\xa8\x62\x7f\x18\xdf\x8f\x6f\xcb\x97\x4c\x4a\xe6\xd9\xc0\x50\xe3\x73\x3b\x44\x19\x5f\x2c\xea\x61\x68\xb2\x56\xde\x63\x9c\x0a\x68\xf1\x15\x25\x80\xf5\xc0\x72\x84\x3f\x1d\x2d\x90\x2d\x07\x49\x60\x33\xb7\x5e\x79\xa6\x0f\xd0\x1d\x3b\x83\x60\x39\x75\xae\xb0\x22\x49\xbc\x8b\xe7\xd8\x0c\xd9\xb8\x9b\x10\x65\xd3\x2e\x05\x17\x0a\x42\x2f\xe9\xf2\x4d\x0a\x43\x63\x94\x1d\x48\xc4\x49\xb6\x87\xa9\xe3\x5b\x55\x82\xe3\xf3\x62\x53\xc0\x61\x75\x3f\x27\x2f\x39\x22\xac\x89\x0c\x00\x44\xc8\x06\x9f\x4d\x01\xce\x17\x38\x14\xba\x8c\xd6\x8b\x14\xee\x23\x4d\xf4\xc7\xf7\xa7\xf7\xaf\xbf\x2d\x1e\x2c\x25\x42\xdf\x44\x6a\x34\xf8\xbd\x68\xdd\x42\x94\x0b\x02\x86\x1b\x30\x03\xa8\x26\x83\xfb\xc0\x2a\x6d\x3a\xbb\x6d\x7d\x30\x41\xe9\xb8\xb5\x3a\x91\x5c\xbc\x75\x6d\x68\x8d\xb2\x9e\xbe\x60\xc7\x76\xa9\x63\xfc\x14\x48\x26\x24\xa7\x98\xa4\x52\x3b\x68\x95\x7b\xa7\x39\xb1\x8d\x89\xb0\x34\x92\xfe\xac\x53\x85\xeb\xcf\xe6\xb4\xa8\x8a\xe1\xaa\x24\xae\x8a\xe1\xaa\xb4\x83\x41\x55\x20\xda\x80\x78\xb1\x01\xdf\x9f\xa4\x25\xac\x3d\xda\xd0\xa3\x5b\x79\xf4\x66\xfd\xd9\xb4\xa4\x4a\xa0\x6c\xe1\x0d\xe7\x70\x0c\xd3\x4e\xe5\x02\x0d\x52\xfc\xae\x6b\xe5\x34\x71\xd6\xee\x63\x2c\xb4\x94\xde\x58\x5d\x01\x06\xbe\xc5\x81\x45\x03\x4f\xba\x68\x60\xc8\x38\x63\x94\x4b\xfc\xaf\xd3\x7e\x6b\x13\x18\x6b\x4c\xda\x6a\x0f\x88\x18\xfa\xd4\x11\x12\xa1\x0e\x03\x18\x6c\xec\xa6\x03\x6a\x3d\x33\x16\x21\x92\x51\x0b\x8b\xb0\x65\xee\x2a\xc4\xeb\x14\x0f\xf7\xb8\xe0\xad\x9e\xc5\x0c\x4c\x61\x10\x95\x26\xfd\xde\x04\x5c\x04\xee\xcb\x71\xf5\x81\xdb\x60\x45\x0a\x62\xe2\x01\x7e\xdb\x4e\x42\xc6\xc1\x2e\x0d\x80\x8a\x88\x8b\xa3\x84\x95\xd0\x79\xe0\x09\xf8\x96\x91\x8e\x25\x24\xe4\x07\xbd\x38\xb7\x9b\xf2\xf5\xed\xf7\x61\x37\x8e\x4f\xfb\xe7\xd7\xa5\x7c\x71\x7e\xa6\x2e\x81\x26\x44\x81\x85\x8b\xf4\x86\xc7\xf6\xd4\x44\xcf\x0e\x37\x1d\x0a\x38\x43\x05\x1f\x69\xa2\xa7\xc6\x9c\xe0\xda\x33\x89\xf9\x34\x7c\x10\x44\x9f\xa2\x28\xca\xb5\x1c\x63\xe4\xb1\x18\xcc\xd5\x50\x7f\x37\xe0\x79\xaa\xee\x97\xaf\xc3\xb0\xda\x0e\x3e\x31\xa1\x60\xfe\x4d\x15\x79\x7f\x5f\x68\x1f\x38\xe4\xa9\xe1\xf3\xaa\xc9\xd7\xe7\xab\xf6\x67\x31\x8f\xaf\xd8\x9f\xcf\x62\xd4\x01\x5e\x1a\x60\xc6\x27\xb9\x8c\x43\xd6\x59\xde\xca\x01\x9f\xfc\x21\x73\xea\xee\x55\x39\x7c\xb3\x49\xfb\x5e\xa7\x8c\x67\xbd\x52\xb3\x75\x8c\x81\x73\x1d\x0a\x14\xbd\xde\xb6\x65\xd6\xbc\xa0\x42\x40\x04\x27\xb3\xc8\x05\x8e\x21\x76\xb6\xd7\xd6\x4c\x28\x29\x45\x62\x2c\x6a\xd9\x12\xe6\xfb\x9e\x35\xba\x44\x03\x5d\x06\xe0\x54\x4b\xdd\x2a\xbd\xf0\x3a\x1d\xe4\x89\x7f\x22\x4a\xa2\xc4\xe7\xf4\x46\xda\xe6\xb3\x02\x4d\x65\x2c\xff\x37\x23\x2b\xcf\xa9\x72\x52\x0a\xea\xd2\xcd\xbe\x3c\x3c\x2f\x09\xb7\xe4\x98\xe7\x75\xd2\xc0\x9e\x06\xde\x5e\x0e\x24\xf1\x0e\x4d\x0e\x9c\xc3\xc8\x65\x42\x32\x23\x7a\xfa\x4f\x08\x99\xbb\xe6\x5f\xbb\xdf\x88\xa7\xdd\xf8\xba\xef\xde\x9f\xde\x76\xef\x87\xe3\x79\x8b\xce\x4e\x2e\x61\xf0\x7d\x28\x30\xf8\x3e\x3c\xc0\xfe\x3d\x29\x10\x3f\x84\x64\x6e\x8b\xfe\x5d\xfd\xd4\x95\x04\x62\xe9\xbe\x9e\x8a\x11\x85\x50\x90\x2b\x19\xe9\x0b\x7b\xb0\x9b\x5f\x5d\x98\x29\x6e\x77\xd8\xeb\xf1\xed\xfd\xa9\x3b\xbe\xbc\xef\xba\xf7\x71\xd1\x5b\x67\x67\x26\x0c\x28\x1d\x4f\xc6\xf1\x4c\xa5\x79\xc6\xc1\xb6\xd1\x2b\x90\xd0\x02\x78\x02\x54\x34\x8e\x59\xec\x79\xc5\x71\xbe\x33\x99\xb6\xcd\x04\x79\x45\x83\x9a\xa8\x03\x4c\x85\x67\x34\x0a\xcf\xd4\x84\x36\x5a\x60\x18\x3a\xb7\x35\xad\xa3\xf3\xb9\xdd\x46\x80\x32\x68\xbd\x6d\x2d\x3d\x07\xc9\x05\x08\x7b\xc2\x42\xe6\x2b\x14\x06\xff\xaf\x89\x20\x85\x08\xcf\xb6\x4c\x00\x1d\x21\xf2\xe8\x96\x44\x9f\x2b\x55\x05\x7d\xb2\xb1\xcc\xfb\x69\xb8\xd8\x1a\x66\x55\x6e\x99\x84\xaf\xa4\x5c\x19\x5b\x1f\x24\x69\x1d\xba\x6b\xbc\xa4\xfa\x7b\xe1\x38\x3c\x59\x6d\x3b\xbe\x65\x0c\xdc\xf2\xa4\xac\x19\x13\xe3\x35\xc8\x43\xe5\x02\x3f\x75\xcd\x23\xa3\xb6\xff\x17\x7d\x5c\x8e\x59\x29\x9f\x82\x11\x8a\x7c\x3e\xa1\x91\x26\xdf\xb3\xc5\x9e\x73\xa6\x7d\x5b\x09\x4c\x0a\x09\x3d\x8b\xd1\xbe\x65\x42\x32\xfa\xbc\xb3\xe9\xf3\xd3\x77\x00\x95\x3d\x1d\xba\xfd\xe5\x6c\x5a\x9c\x93\x8d\x9f\xe3\x5c\x03\xe9\x55\x56\x35\x96\x09\x9a\x82\x19\x1a\x6f\x94\xcd\x52\x9a\xa9\x14\x85\x24\x83\xd3\xd5\x48\x32\x5c\x0b\x7f\x4a\x35\xfc\x49\x6c\x41\xd0\x80\x59\x30\x82\x5c\x19\x63\x7d\x9b\xe6\xa1\xb5\x92\x22\x2e\x88\x77\x57\xe8\x63\xca\x0b\xec\x4a\x78\x14\x07\xbe\x25\xc7\xf8\x78\xb4\x8f\x53\x47\x61\xc9\x85\xb8\xd5\x46\x3e\x63\x62\xdc\xac\xc1\x4e\x5d\xc7\x6a\xa4\xa5\x74\x05\x84\x8a\x7f\xb0\x84\xbc\xba\x07\x23\x76\x78\xf9\xed\xf8\xaf\xf9\x60\xf0\xf1\x44\x96\x51\x29\x5f\xc0\x91\xaf\x6d\x9f\x0a\xfd\x7a\x15\x0c\x21\x02\xb2\xa4\x88\xe3\xbe\xa0\x62\x2f\x42\x21\xaa\x18\x7c\x27\x14\x62\xea\xdc\xc5\xea\xc8\x5b\xc1\x42\xba\x06\x8b\xfe\xed\xc6\x7d\xde\xbf\xef\xdf\x9e\x0f\x2f\xbb\xf7\xfd\x53\xd7\xef\xbb\x3f\x9e\xce\x9b\x7b\xe5\x8a\x09\x6e\x8c\x21\x45\x2b\x58\x22\xc0\x11\xff\xa9\xd0\xf0\xdb\x8d\xfb\xb2\xd8\xc1\x70\x58\xa3\x0e\x04\xa9\x78\x1e\xe6\x0e\xeb\xae\xcb\x2b\x6a\xd5\x4f\x37\xa5\xdc\xab\xf7\x8a\x79\x77\x59\x5c\xa1\x98\x0b\xb3\xcf\x8c\x89\xe8\x3f\xc1\x94\x54\xb0\x9f\xcf\x79\x28\x6f\x77\xcc\xeb\xd7\xc5\x8a\xcd\xc7\xb5\x2b\x04\x98\x99\xd9\x30\x98\x1d\x23\xb8\xa1\xb2\xe2\x93\x1e\x7b\xf5\x7d\xcb\xd7\xc4\x4a\x10\x66\xaf\x88\x95\x53\x84\x34\xad\x8e\xb6\x6d\x65\x99\x2c\x41\xd6\x2b\xc4\x65\xf7\x90\xaa\x0f\x2f\xe3\x9e\xa4\x86\x7e\xb7\xdc\x98\x16\xc5\x53\x6c\x83\xcb\x27\x79\x18\x10\x29\xec\x34\x81\x0b\x86\xa9\x60\x96\x4e\x4c\x0f\xbc\x23\x59\x5e\x5f\xff\xc9\x14\x8e\x47\x9a\x7d\x7c\x7e\x5e\x26\xbd\x9c\x9f\xa8\x90\x21\xac\x9a\x08\xd4\x64\x25\xe0\xe0\xb8\xc8\x2b\x27\x18\x36\x74\x79\xe2\x66\xf8\x6f\x72\x13\xa4\x21\x96\xdc\x3b\x02\xe9\xa3\xe1\xbe\xd2\xa8\xcf\x6f\x87\xd3\xfe\xe9\xcb\x61\xd8\x5f\x36\x78\x7e\x6e\xbe\x5e\xf5\x5a\xa7\xca\x4e\xc0\x58\x06\x55\x6b\x3e\x23\xb7\x3f\x33\xcf\xdf\x57\x93\xae\xb0\xe6\x3f\xd2\x94\xfd\xf3\xf1\xfd\xd0\x2d\x62\xbc\x2e\xce\x4c\x49\x54\x36\x77\x0d\x62\x90\x9b\x6c\x98\x5a\xb9\xcd\x2a\xba\xde\xe8\xd4\x41\xab\x76\xe2\x91\x8a\x8e\xcf\x35\x88\xe7\x4a\x12\x39\x8c\x15\xe8\x2a\x72\xf6\xed\xbc\xd2\x8f\x4f\xd6\xfe\x94\xdb\x7c\xc3\x02\xbb\xf9\x77\xad\xb0\x0f\x0c\xdc\xe1\xe5\x74\x78\x27\x55\x6e\x65\xe8\xe6\xe7\x26\x59\xa7\x8d\x27\x63\x9d\xa4\x9c\xd1\x37\xa4\x67\x21\xcb\x21\xeb\xe2\x3b\x32\x6b\x19\x38\x3f\x31\xbc\x53\xcf\xfc\x54\x48\xd5\x2c\xf9\x5b\xe2\xa8\x61\x11\x12\xd0\x41\x77\x65\x3b\xb4\x75\x38\xbc\xfc\x71\xd9\x03\x5c\x3a\x65\x4d\x07\xdb\x79\x60\x50\x20\x3d\x3a\xa9\x02\x50\x34\xce\x3d\xed\x82\x59\xd4\xa4\x70\x72\x9a\x24\x41\xe8\x49\x81\xb3\xa3\xd9\x78\x32\x37\xa5\x4c\x17\xd6\x00\x7d\x40\x2d\x21\x85\x15\x72\x75\xfb\xf1\x29\x55\x48\x57\x1b\x94\x98\x5d\xf8\x0e\x00\x31\x76\x88\xc7\xed\x1a\xcf\x40\x69\x6d\xe0\x14\x77\x89\x05\x70\xc5\xb2\x81\xc3\xc5\x0f\x58\x85\x5b\xda\x72\x1e\xe9\xae\xd7\xfe\xf8\x7e\xbc\xec\x2f\x29\xfe\x0f\xb3\x79\xbc\x9c\x78\x8b\x19\x8e\x6f\x0b\x95\x6b\x59\x5e\x97\xaf\x4c\x5b\x7d\x1e\x9a\x4c\xeb\x57\x2b\xd0\x1e\x8e\x63\x12\xbc\x84\x8b\x70\xda\x6e\x48\xdb\x98\x41\x71\xbf\xd5\x39\x9f\xc1\xbd\x91\xa6\x1e\x95\x75\xb6\x0b\x11\xaa\x75\xc0\x8a\xe0\x38\xb6\x84\x94\x6e\x66\xaf\xc1\xb2\xe1\x19\x4c\x86\xbe\x8c\x60\x8d\x8d\x7c\xec\xdb\xae\xfc\x34\xd0\xa2\x43\xbf\x36\x8e\xb6\x01\x10\xff\x3c\xde\xee\x33\xef\xe4\xca\xb9\x29\x8a\xae\xb5\x43\xe3\x32\xf3\xd6\xb1\x17\x2f\x66\x15\x33\x1e\x4a\xb5\xea\x3c\x83\x9c\x04\x12\xb0\x4c\x66\xcf\x49\x06\x62\x85\x57\xda\xbb\x53\x96\x80\xac\xec\x4e\x9a\x6e\xa6\x5b\xa3\x74\x6b\xba\x05\x33\x30\xd2\x53\x02\x35\xff\x81\xae\x74\x4e\xab\x10\x87\xa8\x9a\x59\x92\x96\x4f\xca\x27\x18\x1e\x38\xa8\x23\xf3\xd8\xe0\x35\xb5\xa9\xa3\x5d\x86\xed\x17\x8b\xde\xe4\x7a\x87\xa0\x74\x40\x73\x94\x31\x69\x33\xd0\xab\xe5\x33\xe7\x56\x77\x5a\x87\xad\xcb\xb0\x50\xf0\x17\x63\xcd\xd6\x22\xa8\xc9\xda\x2d\xbd\xe9\x34\x5e\xd6\xdd\x51\xbc\xc6\xc5\x1b\x34\x1e\x97\x82\x1d\x2f\x61\xd6\xf4\x50\x86\x8b\x33\x1e\xcb\x2f\xbd\x49\x86\x3a\xc1\xe4\x24\xd9\xb1\x3a\x2a\xeb\x41\x46\x3d\xb9\xef\x65\x8d\x14\xb3\xb4\x58\xa5\x17\xdc\xaf\xff\x6e\xb1\xef\x8f\xfd\x5f\xbf\x1d\x97\x40\xcf\x53\xd1\x3c\x77\xf1\x3c\xda\x66\x46\x5c\x3b\x2f\x2e\xf6\xbb\xb5\xe2\xf5\xab\x85\x7b\x46\x10\x03\xec\xcc\xbf\x73\x79\x9b\x19\x79\xc6\xa2\x98\x13\xa3\xe4\x58\xce\x4e\xc9\x69\x67\xc5\xa0\xce\xb9\xbc\x1a\x6a\xdc\xfc\xea\x8d\x30\xca\x32\x64\xd9\x3a\x62\xd9\x64\x08\x7f\xd4\xb9\x57\x0d\xe1\xdf\x22\xae\x96\x21\x79\xda\xbd\xbd\x1d\xff\x04\xe1\xe3\xca\x80\x2d\xce\xf2\x0e\xe0\x93\xb2\xce\x0f\x34\x53\x73\xa2\x8f\x9c\x6a\xdc\x40\x79\x77\x87\xe6\x91\x50\xef\xb3\x87\x9c\xf1\xfd\xad\x9e\x15\x27\x46\x56\x3a\xe4\x29\x2e\x41\x1e\x36\x94\xcf\x52\xce\x75\xfc\x96\x3a\x9c\x73\xf5\xad\x9f\x96\xad\xd0\x2a\x1d\xac\xf4\x40\x53\x3b\xc2\xb6\xc3\xb2\x1b\xee\xfa\xd8\xcf\x1e\xb2\x48\x1a\x5c\x39\x57\x87\x41\x27\x5b\xd6\xea\x79\x0f\xf0\x93\x67\x7d\xf0\x68\x17\xfc\xb6\xeb\xfe\x18\x5f\x77\xdd\x7e\xed\xf9\xb3\x93\xd5\xe6\x5d\x69\x9b\x6d\x6b\x86\x88\x65\xfd\xfe\xa0\xf0\x75\xbd\x6d\x1f\x9c\x9f\xdd\xee\x75\x1c\x8e\x0b\x52\xee\x95\x73\xd5\xd3\x38\x01\x47\xce\x78\x0f\x11\x4c\x62\x6d\x99\x11\xf7\x7a\xed\xb1\x8a\xf5\x87\xcf\xab\x3d\xc5\xe5\x93\x07\x57\xb3\xbe\x19\x78\x19\x82\xcf\x5a\xd4\xdc\x99\x89\xaa\x00\x3f\x9c\x15\x0b\x0c\xe8\x5a\xf1\x95\xab\x75\x36\xeb\x6b\xdf\xca\x6d\xb0\xf6\x5d\xde\x06\x8b\x9c\x69\x2f\x30\x13\xa8\x58\xe8\x39\x66\xc5\xc5\x56\xb5\x2c\xde\x70\xf9\xe5\xe5\x15\x59\xf6\x27\xb1\xe0\x9e\x51\x66\x57\xdf\xd1\x43\x43\xf8\xb6\x7f\xff\xfa\xb6\xba\xee\x95\x33\xf3\x38\x83\x89\xdc\xc5\x1a\x37\x20\xda\xfe\x91\xf9\x8e\xeb\x7a\x93\xf4\xe9\x0e\x25\x49\x7d\xf8\xfb\xee\xb7\xb5\x3a\xa1\x78\xca\xd5\x4e\x0c\x8a\xc2\xa9\xf9\xe6\xc4\x13\xdd\x91\xc8\xe0\xae\xae\x43\x55\xb6\x8b\x2a\x46\x7a\x6f\x81\x95\x61\xdb\xdb\x6a\x65\xad\xc1\xe9\x78\x58\x5f\x1d\xe4\x84\x88\x3a\x19\xb1\x2a\x0c\x48\x16\xad\x20\x24\x5b\x5b\x92\x69\xa8\x1b\x23\x7b\x50\x62\x0b\x28\x65\x2d\x58\xca\x51\x3e\x35\x0d\x22\x7e\x1e\x38\x8d\x53\xb7\x59\x69\x86\x78\xce\x23\x7d\x71\x1e\xc7\xba\xcd\x53\xae\xc2\x6a\xf6\x05\x58\x12\xd9\x66\xbf\x1e\xc2\x81\x21\x5d\xcf\x12\xb9\xdd\x29\x87\xf7\xae\x5f\xe0\x11\xd7\x92\xca\x9f\x02\xf8\x84\xa5\xd3\x45\x40\x02\x5a\x7f\x1e\x9a\x08\xfb\x97\x69\xd9\x31\x53\x55\xde\x6a\xe8\x4a\xfe\xa4\x73\x31\x74\xd1\xb7\x7a\x66\xb2\x74\x31\x24\x73\x71\xa9\xcf\x88\x96\x1f\x75\xa9\x8b\xa5\xc8\x2d\x5d\xea\x77\x30\x78\x87\xdd\x6f\x8b\x08\x1d\x39\xe6\xb9\x10\x03\x82\x34\x33\xe0\x72\x34\x92\x20\x18\x87\x31\xb1\x5f\xd2\x30\x50\x2d\x3a\x5f\xa7\xbe\x31\x76\xdd\x2a\xbb\xee\xec\xb7\xae\xd3\xd0\x8e\x80\x3f\xce\xf7\xb8\x5f\xd7\x15\x1b\xfc\x59\xf9\xdc\x47\x48\x1b\x1b\xa2\x44\xf9\x13\x55\x64\x03\xac\xb1\x34\x6c\xbf\x5c\x0b\x5f\x3e\x8f\xdd\xee\x75\xd9\xba\x5a\x56\x71\xb2\x6d\x72\x03\x02\x22\x79\xfd\x88\xb2\x1b\x46\x3d\xe4\xc0\x4b\x85\x75\x80\xeb\x05\x5c\xd4\xbd\x47\xfe\xfe\x75\x19\x27\x31\x15\x49\x57\x02\x00\xa2\x8f\x88\xbc\x73\x2a\x30\xc6\xa5\x03\xcd\x02\xde\x39\x24\x58\x46\xd3\x89\x7d\x8e\x33\x18\x24\x74\x8c\x5f\xcb\x12\x44\xa2\xb5\xca\xbe\xb3\x59\x69\xab\xe0\x15\x57\xd9\xaa\x18\xfa\x26\xd8\x8a\xd2\x0c\xe0\x65\xc3\xf6\x8f\x48\xaf\x49\x1b\x38\x9b\x12\x58\x75\x0a\xf7\xe6\x5b\xf3\x9d\xb1\x61\xb6\xc0\x4a\x64\x9b\x20\x03\x99\x72\x05\xf8\xf9\x02\xe1\xdc\x0a\x24\x5b\x02\x9f\xa0\x81\xf3\xda\x3b\xc5\xc0\x26\x4d\x32\x9b\x2e\xab\xe2\x2c\xf7\x59\x01\x2d\xd4\x57\xbd\xa1\x23\x4d\x13\xb0\x83\x30\x91\xc6\xd0\x31\x5a\x97\xe5\x75\x92\xae\xa6\xe9\x13\x43\x1f\x90\xbd\x29\xb0\x37\xbc\x38\x79\x06\x5c\xe0\x0b\x80\x69\xc9\xe9\xc9\xca\x21\x63\x55\xfa\xe0\xe3\x53\xd6\xa5\xaf\x1b\x31\x83\x2a\x6e\x0c\xda\x82\xa6\x48\x67\xc3\x47\xcf\x64\x0b\x00\x49\x50\x42\x3f\x43\x6b\x23\xf7\x36\x4c\x03\x26\xc0\xae\x0a\xc5\x1d\x51\x95\x4e\x60\x50\x7d\x4f\x0d\x6e\x38\x17\xc6\x00\xa6\xba\x41\x4f\x90\x3c\x53\x90\x7f\xb0\xfa\xd2\x6f\x48\x03\xc7\x50\x81\xc9\x17\xe9\xca\x30\x08\xf0\x20\xa1\xc5\xff\xac\xb5\x74\xd8\xbd\xbe\x1f\x5f\x17\xb3\x96\x0b\x0a\x62\x3e\xbb\xc7\x19\x9e\x9e\x7d\xc1\x35\xfc\x85\x91\x50\x59\xc4\xf4\x1a\xe2\x4d\xf2\xdf\x24\xa1\x7c\x9b\x04\xf4\x40\x43\x9e\xba\xfe\xed\xf8\xbc\xff\xed\x78\xfc\xe3\xa2\x4d\x8b\x73\x53\x78\x4f\x9e\x9a\x55\x1b\x2a\xe0\x4f\x26\x71\x5e\x64\x40\xec\x1c\x40\x55\x42\x16\x0a\x83\x45\xb3\x4b\x4c\xa5\x41\x80\xdb\x6d\xd9\x59\x2a\xf3\xbc\xeb\x2e\x6b\x88\xc2\x05\xc8\xe0\x5a\xee\x61\xc9\xa5\xb8\x9d\x37\x88\x24\x7e\xcf\x96\x6c\x8c\x9d\x75\x17\x63\x77\xcd\x16\x82\xe9\x7e\x69\x0b\xb9\x3a\xbc\xd6\x7d\xc3\xf0\x5a\xf7\xfd\xc3\xfb\xe7\xe1\xe5\xf3\xf1\xcf\xf1\xb2\xe7\xea\x89\x32\x6f\xb9\xed\x8f\xcf\xdb\x93\xd1\x7f\xe3\xd4\xbd\x9b\x11\x3f\xec\xc6\xf7\xa7\xd7\xf3\x0d\xa4\x96\x4d\x7c\x08\xc9\xcd\xc1\xa8\x58\xe2\xd5\x3a\x3f\x24\xf1\xde\xd7\x83\x87\xdd\xd7\x97\xae\x5f\xd4\x81\x0b\x26\x6e\x09\x97\x98\xb5\x40\xd2\xf4\x4e\x31\x30\xd2\x23\xfd\x29\x0f\x12\xe4\xc7\xbe\x89\xa1\x42\x2b\xc3\x6f\xe1\x18\xac\x4b\xbb\xfc\x53\xdc\x25\x25\xff\x98\x13\x91\x8b\xd1\xf0\x76\x03\xff\xda\xbf\x2d\xe7\x0f\x17\x4c\x6f\x5d\xd4\x5d\x13\xdc\xb6\xd5\x46\xb9\xbc\x0d\x1e\x1e\x10\x13\xb7\x89\x56\xd9\xbc\xf5\x06\x38\xda\xec\x74\x1e\xe6\x9f\x1c\x1b\x14\xdc\x56\x27\xa4\x6a\xe4\xad\x8b\x59\xf3\x8f\x73\x8a\xaa\xc9\x79\x6b\x5d\x70\x25\x0b\xc3\x15\xb9\x5d\x87\x41\x23\x93\xde\x02\x42\x11\x04\xf7\x72\xc5\x50\x9f\x04\xf3\xda\x03\x6d\xbb\x20\xe5\x5f\x16\xa3\x9d\xb1\x05\x94\xbb\xcd\x34\x49\xdb\x76\xb2\x2c\xa7\x02\x8c\x1c\x54\x93\xcc\xd9\xc3\x51\xc9\x86\x6a\x19\xbd\xf2\x75\xb0\x99\x11\xc1\x7d\x43\xa7\x85\xac\xbc\x83\x9f\x21\xb7\xc2\xbd\x07\x90\xe6\xb4\x4d\xa9\xa5\x39\x61\xb6\x5a\x67\x92\x5f\xe2\xd6\x59\xe4\x9f\xba\xad\x0f\x4c\xa2\xa2\x9a\x40\xfd\x13\x92\xd2\x21\x0d\xc1\x28\x97\xe8\xb5\xe6\x54\x0f\xc6\x54\x1b\x8c\x57\x3a\x0f\xc8\x4e\xbd\xb3\x18\xef\x77\x7f\x9c\x01\x2a\x4d\x45\x75\xce\x23\x55\x85\xa1\x4a\x0b\x52\x29\xcf\x3c\x33\x79\xa6\x38\xae\xb6\x26\xa5\xb2\xa2\x4f\xaa\x09\x7e\xbc\x54\xbe\x0a\x0b\x29\xe7\x87\x73\x22\x8c\xc9\xf0\x63\x09\x01\x79\xc1\x6b\xec\x1a\xce\xe8\x69\x4a\x4a\x4f\x4d\xe0\x11\x84\x1b\x52\x03\x91\x4e\xda\x48\xba\x7e\xcd\xbb\xe1\xec\x7c\x67\x8a\x63\x2f\xce\x82\x81\xfb\xb2\xc5\x39\x97\x36\x1c\x66\x86\xd8\x45\x9a\x7c\x76\xf6\xe7\xe4\xec\x2c\xa5\x68\x4a\xd4\xe9\x0b\x96\xa0\x3c\xfb\x52\x6d\x3c\xdd\x87\x4c\x42\x47\xbf\xed\x9f\x8f\xa7\xfd\x79\xf7\x97\x52\x31\x75\x92\x90\xe9\x3b\xea\x15\x8d\x58\x49\xa7\x34\x89\x54\x8e\x7b\xc8\x22\x14\x2e\x70\x9a\x79\x42\x42\x21\x4d\x08\x8f\xf9\xd1\x58\x92\xc1\x3a\x1d\x55\xac\x70\xac\x4a\x6b\x1e\x3b\x66\xcf\x0a\x08\xd2\x04\x22\x7f\xed\x14\x64\x48\x3b\xc1\x44\xc1\xf4\xa6\x3e\x6a\x65\x7e\x91\x3a\x62\x10\x32\xea\xf1\x37\xe5\x4a\x8f\x7b\x03\xa6\x36\x68\x15\x74\xc7\xd4\x95\x51\x30\x56\x12\x7f\x06\x2d\x29\xa6\x68\x1a\x5c\xaa\x5a\x65\xbd\xe1\xe7\xb5\xc0\xde\x87\xcb\xcc\x71\xfc\x29\xe7\xa7\x0a\x71\x73\x0b\x62\x02\xad\xb4\x46\xa6\xb8\xf6\x1c\x0d\xe9\x6d\x07\x09\x95\xc6\x26\x3b\x49\x2a\x87\x03\x0b\xf0\x5f\x08\xa0\x4d\x59\xe9\xa0\xb4\xa1\x4d\xad\xb4\x0d\x2e\x25\xaa\xd4\x84\xd4\x4b\x9f\xa7\xba\xe5\x39\x15\x81\xd6\x9f\x17\xd3\xcf\x30\x8a\xad\x13\x00\x7a\x6a\x38\x77\xbd\xa1\x9e\x57\xda\x93\xce\x71\x37\xea\x78\xd8\x2f\x28\x75\xf8\x70\x72\xd0\xfd\x73\x62\xf1\xe1\xb7\xb7\xdd\xdb\x5f\xe7\x4b\xc3\xbc\x74\x81\x55\x4b\x7b\x50\xf2\x20\xca\x46\xc8\x92\xc7\x61\x81\xc6\x48\x20\x6b\x26\x55\xc1\xdf\x0e\xcc\xb9\x11\x38\xbe\x34\x57\xac\x24\x9e\x9e\x9b\x2b\x26\xe1\x3d\xe7\x05\xc9\xf9\xba\xff\x24\xe7\xbb\x63\x23\xad\x27\x01\x7a\x5c\xe9\x15\x29\x9f\x5b\x0b\x25\x76\xd2\x4a\xec\xa4\xa0\xda\x56\xf3\xac\xb0\x3e\xb3\xa3\x73\xd6\x93\xfc\x0b\xcb\xbf\xf8\x8f\xef\xaf\xe7\xaf\xe3\x02\xc2\xe5\xac\x7c\xa9\x68\x7d\xc3\xb3\xd9\x5a\x26\x9d\x8c\x1c\x22\x1d\x49\x11\x8d\x78\x19\x05\xd7\x00\x31\xef\xd8\xa2\x00\xe3\xe6\x05\xc6\xcd\x2d\x61\xdc\xe6\xb0\x71\x27\xad\x53\xbf\x1e\x41\xfd\xd3\x3b\x7e\x73\xdf\xb0\x76\xf8\xbd\x7f\xff\xed\xeb\xf0\xdb\x9a\xc1\xea\xf2\x9c\xe4\x63\x46\x65\xac\xed\x04\x6c\x21\x28\x6f\xe8\x6f\x8a\x9c\x13\x33\xcf\x7f\x99\x43\x4a\xa4\x25\xa4\x04\x62\x2e\x11\x7d\xe0\x48\x18\x8a\x03\xd2\xfd\x68\x62\xe6\x3e\x85\x53\x11\xde\xa8\x87\x92\x29\xb0\x93\x35\x1d\x96\x05\x5c\x2f\x1e\x7a\x5a\x85\x20\xf7\x19\x43\xbf\xbf\x16\xd8\x6d\xd2\x2a\xbb\x70\x86\x85\x84\xb6\x80\xe0\x54\x04\x6c\x05\xad\xd9\xb4\x71\x27\xa3\xe4\x91\xf2\x9f\xc3\x21\x83\x23\xc5\x95\xa3\xe5\xf4\x95\xa7\xa5\xb0\xf2\xb0\x3b\x63\xf1\xb2\x7f\x1a\xdf\xff\x1a\x96\x83\x30\x15\x16\x1e\x73\x67\x62\x5f\xe3\x45\xe9\x4b\x92\x14\x65\x86\x9e\x14\x0e\x6c\x38\x68\x18\xdd\x7d\xb5\x5c\xf2\x49\xa7\x78\xa8\xa6\xc0\x62\x5f\x96\x4a\x2e\xe9\x59\xac\xb0\x64\x92\x9e\x5d\x1b\xdc\xda\x6d\x9d\x9e\xb8\xe0\x62\xe1\x9b\x8b\x0c\xb6\x38\x27\x89\x13\x22\x3a\xdc\x66\xf9\x83\x0d\xff\xe2\x6e\x0f\xfe\xb9\x3f\x73\xb0\x2e\x4a\x6f\xf6\x21\x75\x95\x05\xbf\x7a\x4d\xe7\x44\x8a\x01\x37\xc9\x18\x2e\x36\x66\x2a\x96\x30\x80\x05\xa5\xfc\xbd\x1a\xee\xde\x9e\xc6\x6e\x77\x31\xca\x53\x31\x2f\xf1\x3a\x28\xdb\x4e\xf0\x91\xd7\x71\x6f\x3a\x41\x12\x02\xf8\x25\x9b\xbb\x4c\xdf\x04\xc3\xe6\xe1\xcc\xe6\x4a\x50\xab\x65\x0e\x49\x7c\xf0\xc2\xba\xb2\xd9\x09\x04\x73\x2c\xcb\x18\xc9\x3f\x78\xac\x43\x76\x3b\x1b\x08\x4d\x1f\x4c\x07\x00\x51\x03\x5a\x36\x3c\x61\xbc\x7b\xc5\xbd\x1e\xfb\x63\xd9\x53\xff\x8d\xac\xbb\xe8\xa0\xfd\xe7\xa7\x6e\xf7\xbc\x7f\xdb\x9d\xf5\xd4\xac\x7c\x6e\xe2\x10\xce\xcd\x79\x1c\x7b\xcf\x4e\x2c\x8c\x11\x16\xc1\xa8\x15\x2d\x17\x46\x42\xae\x68\xd5\x9e\x34\x9d\x5a\xfd\xf1\x81\xd5\x7e\x9c\xb5\x5c\xf1\xcb\x8d\xa1\x33\x2d\xbf\xf2\xcc\x8c\xfa\x6d\xe1\x28\x6b\xe9\x7c\x21\x0d\x16\x28\x8a\x58\x98\x83\xdb\xac\x34\x53\x02\x4e\x9d\x3e\x99\xb4\x8e\xcb\xd7\x37\xe8\x09\x0f\x30\x08\x60\x19\x03\xc4\x01\x56\x79\x9d\x00\xed\x41\x1d\x05\x72\xaf\x90\x55\x48\x2a\xe4\x31\x24\xc8\xf2\xf4\x11\xf2\xd8\x08\xef\x97\xfc\x1f\xe7\x54\x60\x77\xcc\x27\x87\x71\xb9\x72\x55\x72\x55\xb8\xd7\x83\xed\x6b\x96\x21\xe2\x8c\x24\x9d\x5f\x56\xa1\xf9\xb9\x45\xd4\xd1\x5c\xe4\xc1\xb2\x55\x12\x3f\x96\xcb\xb6\xdc\xe6\xac\x54\xee\x31\x31\x21\xdc\x69\xc1\x69\xff\x74\x86\xd8\x34\x2b\x9b\x60\x9b\xb2\xbd\x09\xdb\x14\x04\x49\x51\x60\x9b\x72\xe5\x78\xfd\x87\x60\x9b\x3c\x60\x9b\xf4\x55\x5a\x0b\x44\xc1\x2d\xbc\xa2\xb3\x44\xe3\x7c\xc5\xfc\xb6\x01\xb9\xe6\x92\x5f\xb0\x07\x34\xd8\xaa\x45\x2e\x2f\x42\xae\x58\x92\xbe\x67\x7f\xa3\xae\x7e\x3f\x9d\x77\x3e\x95\xf0\x34\xca\x46\x99\x9c\x07\x48\x51\xe0\x72\xc2\x17\x20\x13\x7e\x54\x0a\x53\x1f\x66\x79\x7b\x9c\x64\xe7\x12\x2f\x1c\x6b\x09\x30\xd7\x13\x06\xae\x25\xc0\xd4\x6c\xbe\x79\xd0\x9f\x0e\x66\x68\x62\xab\x62\x3b\x68\xaf\xb4\x1f\xa6\x1c\xfe\xe4\x07\x8c\x9b\xc7\x05\x4d\x6c\xe9\xe2\xdb\x1d\x71\xec\x76\xc3\xd3\xae\x7b\x3f\x9c\x96\x38\x4b\xe7\x27\x78\x46\xd2\xa8\x7b\x07\xd2\xb3\x14\x87\x48\x3a\x3f\x0c\x68\x7e\x68\xac\x55\xc9\xe1\xa3\xa1\x4f\x52\xd7\xfd\x40\x2b\x24\x70\xfd\x2d\x64\xd7\x18\x14\x88\x86\x4c\x54\x53\x6f\xd4\xe6\x2a\x51\x5a\xbf\x35\xf0\x24\xf9\x4a\x8e\xbc\x8e\xcd\x5a\x33\x85\x1e\x31\x9e\x27\xbf\x99\x3d\x65\x36\x54\x8f\xf4\xe3\xe1\xed\x2c\xe3\xf5\xac\x7c\xca\x51\x8e\x7a\x40\x7e\x82\xb7\xd0\x98\x06\xaa\x2c\x52\x86\x69\x70\x3d\x42\x95\xa2\x43\x0e\xa6\x35\x03\xe0\xec\x4e\x60\xf3\x04\xcd\x8e\x27\x6d\x6b\x00\x6d\x50\x1b\xa9\xfc\x0e\xfb\x17\x3f\x82\x53\x21\x58\x4a\x7c\xa4\x31\xef\xcf\x97\x0d\xa1\xb2\x87\x73\xd2\x57\x18\xab\xcb\xb0\x3b\xa1\xac\xbe\x18\x5e\x77\xb6\x89\xcd\x53\x5a\xd3\x79\x4e\xba\x24\xb8\x99\x4a\x35\xc3\xe2\xe7\x1c\xdc\x6b\xa6\xc1\x88\x85\x73\x9e\x99\x6a\x0c\x5d\x8f\xda\x4f\x4b\x37\x29\xb1\xc6\xf4\xc1\xad\x25\xc4\xd2\x7e\xb9\xae\xc9\x18\xbe\xcb\x63\x9d\xfb\xdb\xd2\x36\x3e\x95\x49\x48\x21\xef\x62\x3a\xbb\xc1\x26\x85\x2d\x29\x8a\x8d\xda\xb5\x7e\x90\x34\x97\x2c\x6c\xd2\x05\x41\xa1\x29\x0a\x0c\xb3\x51\xf3\x65\x62\xe6\x10\xd1\xfb\x81\xaa\x75\xbb\x2f\xfb\x8b\xba\x71\x21\x8f\xbc\x55\x0c\x4c\xbf\x90\xe6\x7f\x80\xbe\xdc\xfd\x93\xf4\xe5\xa5\x39\x6f\x4f\x7f\xee\xc6\x7e\xa5\x9d\xe5\xc4\x84\xfd\x6c\x3d\x27\x57\x58\xa3\x72\x40\xd4\x88\xc0\x7d\x9b\xd4\xc1\x0c\xc8\x39\x4e\xfc\xde\x4d\x2f\x9d\x12\x96\xbd\x59\x6a\xd3\x58\x53\xa1\x38\xc9\x49\xe8\xb5\x7f\xf0\x2e\xe2\xe0\x1f\x60\x29\x06\x37\x68\x6c\xe7\x73\xd4\x14\x54\x58\x66\x74\xac\x2f\x46\x05\xb8\x83\x7b\x19\xd1\x4c\x46\x6f\xbe\xed\x97\x3a\xb6\xf4\x5c\x6a\x84\x23\x6d\x49\xc3\x12\x6d\xe9\xdc\x32\x62\x46\x22\x13\x44\x1d\x76\xad\x5f\x4b\x10\xeb\xf0\xb6\x59\xa3\x7c\xe2\xbf\x58\xc6\x2c\x73\x57\x7b\x18\x78\x75\x52\xab\xb9\x62\xdf\x77\xc7\xcd\xb5\x5b\x92\xe4\xfd\x53\x2b\xf9\xc0\x9c\x3c\xbe\x9c\xf6\x2f\x87\xfd\x4b\xb7\x7f\x1a\xdf\x8f\x6f\x2b\x2f\xe1\xe5\x15\x13\x85\x89\x0f\x12\xaf\x26\xc6\x0b\x23\xf9\x9b\x82\xf8\x5e\x4c\x99\x12\x21\x9f\x73\x61\x98\x68\xca\x02\xa8\x2b\x3c\x3c\xdb\x6d\xe0\xd7\x35\x35\x85\x95\xd6\x23\x5c\x1e\x13\x87\xb4\xce\x88\x5e\x70\x4c\x27\xd8\xe3\x82\xd4\xb5\x7b\x6e\x17\xb4\xe8\xf3\xe1\x65\x09\x70\xbb\x2c\x9e\xec\x68\x21\xc0\x31\xd0\x58\x3d\x68\x68\xac\x6e\x1e\xef\x49\x8a\x16\x15\x2c\x4e\xc1\x01\x9c\x94\x69\x13\xa4\x59\xf8\x2d\x54\x44\x90\x8b\xd6\xb6\x23\xfd\x46\xab\xcc\xe0\x34\x54\x16\x41\x70\x91\x0b\xf0\x10\x18\x8a\x1d\xfb\x5c\x52\xf1\xc3\xc0\xa8\x4f\x4a\x43\xb4\xca\x98\x28\xce\x43\xe4\x12\x49\x3a\x51\x8a\x50\x96\x48\x36\x6b\xd9\xb9\xfa\x40\x2f\xbc\x9d\x29\xef\xf3\x52\xee\x83\xcc\xa8\x80\x59\x51\x6f\x9b\x94\x06\x2c\x7a\xbd\x29\xbc\x94\xa4\x77\x16\xba\x91\xe2\xe2\x63\x6e\x15\x98\xe9\xb4\x2f\x9f\x23\xc4\xea\x68\xc4\x12\xa8\xfd\x1a\x90\x02\x3b\x91\x42\xee\x91\xa2\x0b\xd1\x24\x65\xa6\x1b\xd4\x2c\x12\x59\x61\x2c\xb5\x98\x71\xae\xd8\x56\x2c\x3c\x39\x80\xb0\xbd\x63\x82\x42\x13\xbf\x0c\xc7\xb7\x33\x55\x6e\x59\x3e\xe1\x0f\x66\x3f\xb3\xb3\xcc\x08\x44\xc6\x07\x89\x47\x38\x3c\x81\xd4\x29\xbc\xbe\xda\xd2\xbe\x61\x35\x50\xee\x74\x52\x12\x2a\xc6\xbe\x26\x68\x58\x02\xa9\xcc\xd4\x28\x00\xe8\x65\x51\xc0\x49\x46\xed\xc9\xc9\x45\x42\x9e\xa2\xbc\x1b\xa5\x6a\x5c\xb3\x53\xe3\xba\xac\x02\x08\xb5\x5b\xcc\xba\xb6\x32\xae\x34\x7c\xeb\xc6\xf3\x0e\xa8\x45\xff\xe2\x5a\x34\x2e\x6d\x68\x4b\x28\x6b\x66\x54\x5c\x58\x08\xbe\xa7\xc6\xb3\x59\x0b\x55\x03\xce\x1e\x8c\x21\xa4\xc3\xd6\x4b\xcf\x91\x9f\x67\x36\xaa\x93\xeb\x0a\x86\x76\xc6\x72\x4f\xed\xca\x33\x3b\xfd\x0c\x23\x1a\x2b\xec\xd2\x0d\x5c\xbc\xc0\x80\x26\x5f\xc5\x7b\xac\x3f\x5b\x03\x58\xec\xc4\xdc\x73\x89\x09\x79\x1b\xac\x92\x27\xc8\xef\xbb\xf1\x69\xbc\xc8\xab\x5d\x39\x57\xf3\xd9\x49\x4d\xfc\xfe\x28\xa6\x82\x7e\x54\x61\x49\x59\xee\x82\xc7\x88\xf6\x3b\x9f\xc0\x63\xac\x5b\xc0\x54\x1b\x38\x1a\x1b\x9b\x4e\x8d\x69\xed\x43\x63\xc1\x18\x30\x24\xcf\x85\x96\xd1\x15\x98\x5a\xe7\x2c\xe1\x8b\xf6\xd9\xb5\x84\x32\xed\x72\x4f\x7b\xf7\xda\xb9\x5c\x00\x6d\xe7\x4d\x9a\xc1\xcd\x9f\xb4\x77\x08\xd7\xb4\x3c\x0b\x1d\xf7\x81\x5b\xb3\x6b\x8a\x1a\xe5\x48\x84\xb3\x4e\x79\x0e\xbb\x70\x7e\xa0\x7a\x3e\xb2\xc9\xfd\xfe\x76\xec\xf6\x6f\x7f\x5d\xd9\xe0\xce\xce\x4e\xe9\x7a\x66\x2d\x4b\x61\x3c\xb3\x83\xdd\x64\x51\xd4\x58\xcf\x62\x3b\xb0\x42\xd7\xdb\x19\x86\xef\x04\x83\xdf\xb1\xfb\x58\xab\xd2\x1f\x92\x25\xa3\x6d\x42\x17\xe9\xb2\x04\x1a\xb1\x8a\x98\xbe\xd1\x1e\xe1\x31\xb4\x8a\x02\x66\xd3\x32\xa9\x34\x4c\x2b\xf4\xa6\xf6\xc6\x4d\xe2\xf9\x9a\x02\xdb\xb5\x2a\x2a\x08\x18\x5e\x99\x76\x30\x59\x79\xcb\x08\xfb\x20\xba\x81\x66\x53\x79\x00\xff\x3e\xb2\x43\x1e\x82\xfe\x38\xbe\x1e\xde\x77\xc3\xc5\xd8\x4c\x27\xa6\x77\xaa\x90\xc0\xb1\xcb\x19\xc2\x80\xb8\x9c\x53\x28\x2e\xe7\x14\xaa\xcb\xf9\x17\xc8\x88\x2c\x6d\x59\x22\x59\x2e\x4a\xff\x13\xf1\x2c\xb9\x01\xc3\xee\xeb\xcb\x67\x7a\x7d\xf6\x6f\xa7\x65\x76\xc8\x95\xf3\x73\x54\xe4\x6a\xe5\x9d\xc8\x54\xc6\xb9\xc1\x57\x55\xe6\x95\x05\x23\xcb\x38\xe3\x61\x91\x64\x61\x08\xf8\x66\x8e\x0e\x75\x8d\x99\x62\x3c\xe7\xa2\x30\xcc\x14\x61\x3e\x2a\x91\xeb\x0f\xdd\xa4\xe6\x64\xb8\xd5\x9c\x8c\x4d\x55\x3f\xf3\x5a\x52\x46\xb1\x35\x8a\xa1\x62\x9e\x94\xb1\xb0\x35\x22\xf6\x31\x07\xa5\xbd\x1d\x34\x48\x3f\x75\x27\xd2\x20\xac\x61\x1c\xdf\x43\xb5\x4b\x12\x3f\x43\x57\xdd\x89\x08\xe3\x01\x63\x1f\xfd\xe5\x40\x96\xf2\x39\x3e\xf3\x8f\x92\xde\x31\xc6\x69\xe8\x3c\xac\xcb\x5a\x27\xb0\x13\x66\xa3\x22\x87\xef\x76\x0d\x27\xcf\x6b\x2c\xc2\x59\x36\xec\x18\x80\x35\x02\xc1\x9b\x7e\x22\xbb\x79\x0c\x08\xc7\xc5\x2f\xf8\x07\x89\xe5\x82\x78\x9b\x58\x87\xdb\xf7\xbc\x1b\x2e\x5f\x4f\x2e\x9c\x92\xf9\xac\x5f\xf3\xb4\x48\x2c\xd2\x4a\x2c\xd8\xb8\xe8\x99\x72\x1d\xa3\x53\x9e\xf9\x5d\x20\xb7\x90\x64\x58\x7b\x74\x76\xaf\xbe\x26\x32\x4d\xbd\xc9\x58\x6f\xad\x5f\x1a\x7f\x6f\x80\xb9\xcf\x27\xdb\x62\x7d\xbb\x30\xfe\x2e\xd6\xb7\x0d\x1b\xdf\x2f\x20\x35\x2f\x10\x35\xef\x46\x85\x70\x97\x1e\x4f\x87\x05\x0c\xde\xb2\x78\x02\x03\x2a\x40\x5e\x13\x31\x35\xd6\xff\x92\xac\x6d\x85\x14\x9b\x8b\x4b\xce\xf7\xec\xea\x92\xc7\xb8\x52\xbc\x72\x13\x98\xad\x2e\x6f\x82\xb7\xd9\x71\xd4\xbb\x4d\xae\x66\xdd\x17\x47\x0c\x03\x95\x4c\xc7\xb4\x24\x27\xb7\xe4\xea\x2e\xb9\x98\xcc\x49\x7d\xbf\x87\x8e\x5f\xbe\xec\x2f\x2d\x75\x52\xca\x26\x22\xa0\x33\xdb\x1f\xb5\xe1\xf8\x88\xe8\x42\xf0\xc3\x68\xc6\x09\xd4\x48\x9b\x19\x21\x90\x19\x36\xca\x40\xdb\x85\x62\xe9\xdb\xc2\x6c\x03\x63\x83\x64\xd8\x68\x33\xd2\xb5\x0e\x47\xba\x44\xce\x66\x23\x74\x36\xda\x28\xb9\xda\xb6\xc2\x86\x74\x96\xab\x4e\x85\x85\x25\xa8\xa8\x3a\x8f\xcc\xa4\xd7\xdd\xdb\x1f\x6b\x9a\x7c\x2d\xe7\xf7\x36\x19\x60\x03\xdd\xa6\x52\xeb\x9b\x90\x21\x41\x84\x3c\x41\xca\x3f\x4a\x0e\xd6\x97\x3c\x42\xc8\x21\x34\xfe\x8f\xe9\xe0\xaf\xfd\xee\xed\x79\xd7\x5d\xae\xb5\xd3\x89\xc9\xd6\x22\x48\x57\x61\x41\xaa\x57\x98\x4d\x25\xb0\x16\xb9\x84\x1c\xc1\xc4\x56\x5b\x9a\xde\x83\x84\x4c\xa6\x41\x3e\xab\x01\xf5\xe4\x2c\x95\x21\x4c\xde\x09\x71\xbc\xe9\x4d\xd4\x83\xd5\x2a\x85\x01\x83\x9e\x99\x07\x31\xc4\xfe\x5e\xbc\x92\x54\xfd\xf8\x72\x29\x05\x48\xa9\xb8\x4b\xb5\x32\x09\xf8\x9e\x9c\x5d\x46\xab\x38\xf8\xf5\x99\x5c\xdf\xd1\xd2\xda\x05\xe6\x3b\x02\x53\x12\x7c\x2d\x4d\x52\x8c\x98\xc2\xeb\xbd\x59\x33\x94\x47\xbf\x6a\x27\xef\x1a\xd3\x02\x9a\x0a\x72\x7d\xb0\xfc\x85\x5e\xa0\x73\xdb\x7c\xf4\x97\xb7\xc5\x1a\x1a\x69\x7e\x7b\x38\x45\x69\xfb\xa1\xbf\x20\x68\x0d\xe2\xcc\x7c\xa4\x67\x0e\x1f\x1f\xbb\xcb\x9e\xe1\xd2\x29\x06\x3f\x9b\x2b\x38\xcb\xd7\x28\x5a\x2e\x58\xff\xd8\x1d\x2d\x4b\xff\xe2\xe4\xf8\xf0\x4d\xa7\x08\xaf\x08\x35\x1b\x81\xee\x56\xd4\x6d\x2f\x41\xfa\xd6\x69\xfe\x26\xbc\x77\xd4\x3f\x9a\x04\x3b\x8e\x99\x7e\x64\xd7\x7d\x1d\x76\x2b\xd3\x1f\x85\xff\xf5\xfe\x3d\xd2\x7f\xc7\x11\x6c\x23\x6b\xa2\xf7\xe2\xdc\x82\xe4\xdb\xd9\xe2\xce\x69\xa3\x78\x6c\xd8\x9d\x53\xfc\x75\xe1\x9f\x43\x79\x7e\xa0\x8d\x6f\x87\x97\xf7\xb1\x5f\xe6\xea\x9d\x9f\xa9\x72\x83\x73\x89\x55\x42\xe3\xa1\x05\x32\x24\x60\xeb\x31\xfe\xab\x64\x74\x45\x76\xbf\x43\x68\x87\x38\x39\xf6\x72\x09\xbe\x02\xec\x31\x33\x54\x87\x15\xf2\xe5\x69\x5b\x98\xd7\xa9\x61\x70\xfb\x8b\xec\x88\x07\x55\xc9\x71\x7f\x39\xd8\x28\x9b\x56\x11\x97\xd7\x92\x1f\xbe\x21\x24\x28\xd6\xeb\x04\x04\x39\xe4\x1e\x69\xc1\x50\x5b\xfa\x70\x05\xc2\xe1\x27\x4d\x8c\x90\x24\xa2\x07\x27\x25\xa2\x27\xf1\x3f\x8e\xe8\x69\x39\xa2\x27\x6d\x7e\x24\xa4\x87\x7b\xae\x3f\xbc\xbe\xae\xc9\x11\xd3\x89\x3a\xb9\xb4\x8e\x3f\x2a\x74\x71\xec\x60\xdf\x78\x06\xf7\xcf\xc2\xd5\xf0\x13\xee\xcc\x2f\xf7\x40\x13\x0f\x31\xd1\x48\xc5\x79\x50\x31\xb9\x0a\x82\xb0\xb9\x54\x61\x4e\x1c\x15\x76\x61\x05\x11\x01\xea\x11\xab\xc1\xfb\xee\x5f\x87\x8b\xfe\xe6\xc2\xc9\x07\x1a\xe3\x15\x1f\x68\xd4\x3f\xc3\x07\xfa\xc3\x77\x81\x0f\x34\xb9\xb9\x0f\xf4\x5a\xc4\xf1\xc2\x93\x59\x83\x03\x8c\x29\x2e\x50\x73\xdd\xc1\xbf\x0a\x78\x1d\xf5\x85\x07\x14\xec\x3b\x46\xf7\x9e\x75\x0e\x11\xf3\xbc\x9d\xdc\xa1\x89\x4d\xfb\x77\x22\x9d\x8f\x1d\xcc\xd8\x4f\xdd\x65\x6c\xce\xac\x7c\x81\x93\xbd\x12\x7f\xb5\xc6\xa6\x17\x63\x8d\xd9\x3f\x2b\x5e\x41\xa1\x41\x6c\xd7\xe5\xbd\xaf\x30\xf5\x5d\x83\xb2\x71\x79\xed\x26\x28\xbe\xbc\x89\x35\x2d\x26\x9d\x04\x8f\x8b\x8c\x6c\x32\x16\xbe\x93\x33\x03\xde\x80\xcd\x30\x5b\xd9\x1f\xeb\xca\xcf\x87\x71\xf7\xdb\xb0\xff\xbc\xd6\x9d\xd3\x39\x11\xf5\xa3\xd2\x36\x71\x5e\xa9\x69\x73\xc7\xc1\xbf\x9e\x9d\x34\x53\x5e\x92\xa4\xbd\x95\xac\xb7\x1a\x79\x6f\x1d\x47\xcf\x92\x58\x4b\x33\xe2\x6e\x6a\x96\x73\xe0\xb0\x34\xcc\x0f\x8a\x5c\x32\x60\x12\xb4\x2d\xaf\xe8\x8e\x95\x0d\xba\x26\x31\xa9\x81\x2e\x42\x7b\x6c\x95\x06\x90\x0b\x60\x99\x9d\xeb\xe8\x75\xa0\x35\x21\xc2\x4c\x85\xb0\x4c\xe7\xf8\x45\x76\x4e\x42\x14\x1d\xbb\xf4\x1c\x6f\xb4\xb4\xd7\xd0\x54\x0f\x69\x23\x74\xe7\x1d\x00\x12\xb4\xae\x29\x6b\xeb\x74\xbc\x40\x16\x68\x39\xe9\xca\x89\x75\xb0\x30\xa6\x77\xc8\x08\x53\x0e\xd1\x3b\x21\x21\x91\x80\xc1\x72\x9c\xeb\x52\x66\x97\x49\xa0\x0e\xd4\x0a\xa1\x4d\xb4\x87\x3f\x34\x90\x4b\x40\xc5\x65\xb1\xec\xbd\x2d\x38\xc5\x7d\xde\xea\x18\x3c\x89\xa2\x5b\x97\x5b\xaa\x4f\xda\x9a\xc4\x94\x0a\xdb\x96\xda\xc0\x60\xb1\x61\x1a\x89\x68\x54\xd4\x08\x32\x86\xbb\x26\x82\xbc\xb5\x7c\x32\xbb\x98\xa6\x5b\xca\x5c\xef\x90\xe8\x02\xc2\x2a\xa7\xac\x1d\x78\xbf\x93\x71\xd6\x91\x36\xf1\x4a\x92\x1b\x6d\x47\xaa\x8a\x38\x85\xa2\x0c\x71\x1a\x1a\x44\xc9\x76\xf4\x9b\x44\xb3\x06\x8c\xa3\x49\xb9\x20\x8c\x67\x42\x68\x36\xcf\xeb\xb0\xc2\x7f\x4b\xd5\xc7\x77\x1d\x85\x99\x37\x75\x20\x77\xc0\x62\x84\x25\xc9\x66\xf6\x56\x4e\xe1\xf1\xca\xdf\x97\x69\xb9\x47\xcf\x5d\x6c\xb5\x74\x4e\x8d\x54\x03\xf0\x97\xee\xd7\xf2\xa8\xb1\x91\xd8\xfc\xe2\xfe\x5a\xb8\x6d\x67\x39\x2c\xd7\xda\xaa\xb5\x91\x7c\x52\x83\xd1\x92\x6f\xab\x63\x71\x91\x23\xfb\x58\x43\xc7\xfd\xee\xad\xeb\x2f\xa5\x8f\xf3\x93\x0b\x64\x84\x5a\xe1\xe9\x89\xe3\x03\x7c\xd5\xe3\xf9\x6a\xb1\xfe\x7a\xd2\x7b\x49\x6f\x09\xde\xf1\xc0\xaf\x87\x12\x40\xb1\x6f\x58\x0c\x34\x72\x2c\x13\x88\xaa\x94\x9c\xfe\xf1\xf7\xf0\x2c\x64\xe1\x8f\xff\x12\x1b\x7d\x17\xb1\x11\x75\xdd\xd3\xf1\x75\x7f\xf6\x9a\x95\xb2\x2a\xef\x02\x1c\xc2\xd5\x40\x2d\x37\xc1\x4e\xfd\xdd\x0d\xd6\xd9\x3d\x36\x9a\x7d\x03\xa7\xf5\x7d\xf3\xf4\x14\x8c\x24\xa3\xbe\xe2\xe0\xdb\x8c\x57\x63\xd7\xc7\x33\x27\xe1\x03\xfd\x7b\x99\xb6\xb7\x28\xbe\xd3\xcb\x3a\xb7\x15\x41\x4f\x03\xf9\xf5\x81\xde\xf8\x37\xcf\xc6\xbb\x9d\xbe\x59\xeb\xf5\x9f\xd6\xe9\x67\xd9\xb9\xb3\xac\xdc\xc2\x98\xac\xb1\x65\x20\xc9\xbf\x60\x0e\x34\xc6\x7a\x51\x94\x4a\x70\x48\x8d\x0d\x01\x83\xe8\x2a\x00\xc1\x3a\x70\x41\x8d\xda\x98\x27\x46\xa6\xca\x13\x2a\xa9\xee\x8f\x65\x62\xca\xc5\x92\xe7\xc8\x24\xa3\xf4\x79\xbf\x0f\x9e\xec\x79\x2f\x3c\xfd\xbf\xff\xcf\xbf\xac\xfd\x3f\x75\xb5\x6c\x85\x97\x8e\x3d\x8b\x67\x96\xf0\xc4\x2b\xa4\x7c\x4c\x4e\x12\x3e\xac\x67\xab\x01\xa0\x38\x26\xf9\x7e\x12\x87\x58\xb5\xa8\x0b\x25\x8b\x14\x84\x70\x1d\x04\x72\x72\xca\x5f\xa4\xd7\xe6\xd5\x77\xf6\x9a\x53\xfe\xde\x0e\x4c\xdd\xe2\x56\x3b\xca\xcd\x3b\x6a\x22\xde\xb0\xc2\x02\x62\x2a\x3f\x47\x81\xd3\x11\x9e\x8e\x5f\x23\xd8\x80\x5a\xe1\x57\xdb\xe5\xe7\xed\x2a\xae\x31\xd6\x5c\x67\xb8\x40\x35\x7b\xbf\xb6\xa3\xe0\xce\xf0\x4b\x0f\xd8\xb1\x99\xe9\xb8\xb0\xaa\xfd\x3a\xe1\x16\xd4\xde\xb0\xda\x03\x61\xad\x07\x66\xd0\x4e\xf3\x59\x67\x2b\x34\x24\x27\xc3\x4c\x5b\x7e\xef\xcc\x2f\xdc\x37\x95\x15\xfc\x71\xde\x73\xee\xa0\x73\xc7\x4d\x2d\xab\x68\x30\xf5\x5d\x90\x45\x00\x7d\x14\xf5\x2f\x36\xf9\xdf\xff\x3c\x5e\xb4\x03\x65\xd3\xe2\x07\x53\xc1\x6c\xbc\x8a\xa8\xb7\xc0\xae\xe0\x8e\x5b\xcc\x8d\x9a\x3e\x82\x77\xbe\xe4\x9e\x95\xf4\xeb\x69\x52\x48\xd6\xc8\x2f\xd3\x2b\x4b\xd3\x79\xb5\x97\x63\x53\x36\x69\xa2\x53\x12\x3a\xbc\x70\x0a\xae\x6b\x32\x87\x5e\x30\x11\x4a\x21\x36\x21\x19\x84\x74\x7b\x15\xbc\x32\x51\x65\xcd\x58\x43\x9a\xf5\x06\xe6\x05\x16\x74\x17\x64\xef\x01\x04\x16\xd0\x33\x67\x11\x3b\x8c\x2d\x18\x27\xb6\x95\x39\xc5\x0a\x34\x4d\xcb\x36\x82\xe0\x39\xfb\x39\xeb\x8a\x41\xc3\x99\x47\x5e\x59\xfc\xc5\x43\xa2\x56\xe7\x91\x43\xa7\x26\x14\xb2\x1f\x24\xaa\x85\x07\x02\xc4\xbf\x2e\x91\x33\xf9\xf8\xdf\x41\xe4\x7e\x93\xe7\x19\x40\x5d\xfc\xbb\xfb\x8c\x5c\x62\x76\x43\x78\x9c\x64\xf1\x97\x10\x7a\xd9\xca\x52\x40\x1e\x53\x00\xf9\xd5\xbd\x95\xe2\xcf\xa7\xd7\xb7\xc3\xf1\xed\xdc\x3a\x38\x2f\x2e\x29\x3b\xa4\xa2\xb7\x2a\x06\x15\x8c\xd2\x34\x56\xfc\xbf\x8f\x9e\xab\x11\x7d\xe1\x62\xcf\x81\xe7\x3e\x7d\xe6\x30\xca\x57\x3e\xea\xb5\x16\xe3\x5b\xc9\xcc\x6c\x38\x17\x08\xac\x96\x91\x83\x83\x6d\x62\x6a\x0a\x3c\x21\x0b\x88\x61\xd4\x35\xf6\xa2\x29\x8c\x32\x74\xc2\xa4\xb4\x7e\xc2\xb5\x7e\x91\x4a\x7e\xba\xdb\x1b\x7f\xed\x86\xb3\x8e\x90\x12\x89\x23\x4d\x4a\xa7\x80\x09\x0b\xba\x4d\x63\xe9\xaf\x4d\x2b\x86\x11\x24\x0c\xb4\x0c\xc5\x59\xdf\x20\x66\xbc\xd7\x61\xa0\x93\x3a\xe0\x25\xd3\xed\x2c\xda\x57\xe9\x65\x8c\x7a\x35\x76\xc0\x7e\x81\x60\x50\x93\xe4\xda\x21\xc3\x74\xf8\xf1\xb7\x87\x8f\x6c\x7e\xf5\xf8\x91\xe7\xdd\x61\x1e\xeb\xc5\x87\xff\x91\x1e\x52\xaa\xfa\x8a\xa2\xb9\x2c\x9e\x6c\x66\x91\x33\x32\x39\xf2\x7b\x06\x0a\x79\x32\x7a\x6a\x70\x49\xe2\x03\x00\x40\x41\x05\xfd\x35\x1a\xfb\xba\x68\xe3\xeb\x5c\x4c\x6f\xe3\xc9\x78\xcb\xc8\x8f\xce\x53\xa5\x48\x28\xb1\x1c\xc9\x83\x18\x06\xf0\xd1\x32\x1b\xee\xa9\xb1\x1c\x78\xed\x61\x3e\xce\x3c\x29\x01\xe3\x0e\xb4\x8e\x72\x9b\xa1\xd1\xe0\xf8\x77\x03\x22\xb3\xbb\x26\x2c\xa9\x6c\xf5\x89\xef\xe3\x95\x53\x59\x91\x4a\x87\x68\x4c\x27\xa4\x6d\xce\x0f\xf4\x7b\x77\x7b\xd7\x79\xde\xbd\xfd\xf1\xf5\xe5\x6d\xbf\xfb\xbc\x68\xdd\x54\xf8\x1f\x3a\x33\x4b\x03\x9e\x68\x36\x2e\xe9\x47\xd7\x4e\xce\xa1\xed\x1f\xaa\xf9\xf7\x82\x51\x38\x0b\x7a\x4a\x40\xee\x24\xdf\x57\xdf\x1d\x49\xcb\x74\xc2\xe8\x3b\xe3\xb5\x7f\x3e\x2e\x02\x64\x4b\xc1\x82\xc3\x91\x2d\x3a\xba\x80\x85\x6b\x09\xca\x32\x31\x5e\xa8\xd4\xfc\x79\xad\x6d\xb3\xab\x66\x7e\xac\x29\x10\x71\xb5\xe1\x73\x6a\xec\x12\xea\x58\x42\x10\x2f\x57\xd0\x7a\x72\x62\x6b\xa8\x11\x8c\xab\x20\x58\xf5\x02\xf1\xdf\x21\x9e\x72\x73\xe1\x4d\x03\x31\x04\x02\x20\xa8\x8f\xd1\xe9\x77\x7c\x66\xcf\xfb\x97\xaf\x8b\x9e\xa5\xc3\x02\x0c\x64\x93\x5b\x24\x00\x9f\x96\x30\x18\x7c\x6a\x8e\x00\xc4\xf2\xf9\xc3\x08\x40\xcf\xfb\xb7\xdf\xf7\x4f\xef\x7f\x2d\x64\xc0\x79\x21\xfb\xa6\x43\xcb\x79\x71\x24\xa0\x0c\x22\xa3\x34\x24\xd3\x68\x1b\x2e\x91\x67\xb5\x0e\x4a\x6b\x7f\xd2\x3a\xd3\x55\x9c\xe6\x19\xe3\xd0\x44\xab\xa2\x11\xe0\xda\x08\x87\xcf\x9d\xca\x8d\xe3\x12\x24\xb7\x96\xfc\x93\x04\x9a\xb7\xe0\xcf\x72\x2e\x74\xda\x27\x7a\x87\xbf\x99\x94\xe8\x79\x01\x16\xf7\x5c\x21\xe2\x40\x29\x11\xe3\x4f\xa6\x94\x48\x85\x52\x22\x31\xa5\x84\x13\x4a\x09\xd1\x4d\x8c\xb6\xff\x30\xa5\xc4\xf3\xa1\x7b\x7a\x59\x2a\xe1\x53\xd1\xbf\xa9\x23\x6c\xab\x1c\x88\xbb\x2d\x67\xcf\x01\xa4\xb3\x31\x5e\x01\xb3\xc5\x8f\x06\x3b\x2a\x1d\xfb\x41\x2b\xbe\x0a\xcc\xf1\x86\xaf\x08\xca\x84\x11\x00\x2f\x5a\x38\xe0\x4c\xf8\xf6\xfe\xdd\xfc\xbc\x0e\x5e\xba\x70\x6b\x09\xba\x37\x6b\x70\xbd\x5f\x3a\xc9\x53\x56\x29\x77\x2c\x8b\x17\x1f\x68\x50\x8d\x07\x5c\xe8\x0f\xf5\x78\xa7\xa3\x02\xf6\xa9\x53\x2e\x2b\xb8\xb0\xbd\xb2\xbe\x93\x8c\x30\xd2\x11\x58\x06\xbf\xc2\x6f\x12\x26\xae\x2d\xb1\x6c\xb8\x52\x12\x4f\x97\xf0\xbb\x17\xfd\x68\xf5\xc7\xa6\x00\x50\xe2\xbd\xf6\xf0\x0f\xc3\x5e\x9d\x55\x13\x19\x9d\xc7\xc4\x2e\x28\xd2\x33\xa1\xf2\x63\xf7\xbf\x1d\x0b\xfc\xfc\x3c\x37\xc4\xe3\x68\x8a\xeb\xd1\x76\x8d\x38\x72\x00\x49\xc0\x0f\x80\x2f\xfe\xf0\xea\x73\xfc\xbc\x5f\x61\x2b\x5e\x16\xb3\x90\x12\x90\x6c\xf4\x63\x6c\xc2\x2b\xed\xbb\x5f\xbd\xfd\xe7\xc3\x45\xdd\xb8\x4c\x50\x5e\x8c\xb2\xc1\x0c\x9c\xd5\x9b\x19\xd4\xba\x1d\x6c\x56\x36\x77\x89\x83\xa9\x11\x1c\xd7\x22\xb6\xdb\xb7\xac\xbc\x25\x55\x52\xa9\x5b\x01\x9b\x72\x83\xb1\xa4\xad\x86\x21\xb5\xaa\x49\x34\x0b\x68\xd2\x1b\x1b\xfa\x26\xb5\xa7\x74\xdb\x09\xf1\x7c\x7c\xd9\xbf\x1f\x3e\x56\x5c\xf9\x17\x67\x24\x44\x9f\x66\x42\xe8\x6c\x54\xe0\xbd\x34\x49\x81\x00\xb3\xe3\xbc\x65\x17\x15\x2d\x75\xb9\x55\xc9\x8d\x0d\xd2\x70\x80\xe9\xcb\xc9\xaa\xad\x02\x04\xbc\xf2\x9a\xde\x1b\xc4\xbf\x38\x7e\x3f\x1d\x4d\xe4\xb6\x27\xd1\x50\x23\x2b\xca\x68\x15\x8c\x6a\x82\x56\x91\x59\xfa\x7c\x64\x34\x64\x8b\xe8\x28\x76\xa5\x69\x71\xa5\x15\x20\x64\x6a\x77\xf0\x2a\xd1\xdb\x90\x3a\xc7\xb4\x2e\xb4\x42\x70\xda\x5a\xe3\x38\xd5\xd5\x72\x3a\xb3\x63\xe4\x4b\xeb\x00\x5c\xd9\x62\x8d\xd0\x9c\x40\xe0\xb0\x4a\x6c\x3a\x03\x38\x40\xcb\x4b\x16\x20\x93\x58\x68\xf2\xf1\xe4\xfe\x71\xca\x60\x1a\x90\xbf\xce\x17\xc5\xa9\x4c\xb2\x4d\x9c\x72\xc6\x0f\x16\xc0\xaa\xa4\xa1\xd7\xe0\xa1\xc8\xb9\xec\x56\xb4\x79\x89\x5e\xf6\xf4\x49\x32\x57\x40\x82\x82\x0b\x80\x63\xa6\x0e\x0c\x48\x61\x8a\x59\x25\xd3\xbb\xd8\xc9\x56\xd2\x02\xcf\x8d\xd6\x24\xe7\x39\xa6\x83\xf6\xa0\x96\x86\xd4\xb4\x80\x26\x8a\x0e\x19\x5f\xda\x23\xea\xc9\x71\xf0\x13\xbd\x7c\x24\x44\x91\x10\x1a\xa2\xb2\xc1\xa3\x2a\x92\x5f\x67\xd8\x82\x18\x66\x46\x43\xcf\x89\xd8\xd6\x28\x6d\x4e\x2e\x20\x6b\xc2\xc5\xce\xb1\x32\x17\x98\xa4\x3a\xd0\x2b\xa1\xfb\xc6\xc5\x0d\xcd\x1b\xf0\xc9\x78\xe5\x38\xff\xdd\xdd\x8e\x69\x7f\x3e\xbe\x1c\x99\x6a\x83\x69\x73\xc7\x65\xaf\x9e\x9f\x9b\x40\x8d\xa0\xbc\x22\xac\x58\x9f\x1a\x63\xba\xd0\x4a\xec\x6e\xe3\xa6\x1c\xb1\x05\x6e\xa2\xb8\x57\x6d\xea\x1a\x0b\x3b\x60\xe0\xf0\x3e\x06\xbd\x9b\x85\xcb\xd2\x22\x1f\x3b\x5c\xc3\x97\xf0\x15\x53\x04\x2d\x5d\x43\xb7\xc1\x33\x9b\xf2\xd0\x8a\xcf\x38\xba\xb8\x8c\x07\x06\x6c\x07\x63\x92\xdd\x22\xb2\xbc\xa9\x66\x6e\x1e\x5f\x2a\x43\x06\x1c\x91\xe5\xe8\x63\x18\xe0\xfb\x70\xdb\xb7\xf7\x7c\x3c\x2e\x54\x69\x1c\xfe\x97\xaa\xfc\x57\xa2\x2a\xa7\x31\x79\xfa\x6d\x77\x3e\x4c\x5c\x34\x23\x4f\xb4\x1d\x46\x2a\xb3\xad\x50\x06\x83\xf4\x6a\x48\x4e\xce\x29\x4f\x43\xa7\x78\x04\xff\x3b\x48\x3f\x7b\x90\x16\x78\x09\xcf\x13\x40\x02\x24\x46\xe3\x7e\xd0\x82\x0c\x5b\xfc\x0f\xdf\x05\xb8\x89\x3f\x7c\x17\xc8\x74\xd7\x1d\x75\x9b\x6b\x9e\x3a\xab\xd3\xcc\x72\x9f\xa0\x1c\xe8\x3c\x34\x5a\x7b\xa5\xa3\x1d\xe4\xb3\x23\x91\x1f\xb0\x2c\xe0\xce\xd6\xb9\xbf\x47\x96\x44\xbd\xfd\xd4\x1f\xdf\x0e\x1f\x67\x43\x50\x0a\xa7\xb7\x24\xe7\xeb\x08\x0d\xb5\xaa\xe3\xd5\x90\x9b\x8f\x0a\x56\xf2\x63\x77\x21\xb5\xe3\x87\xef\x72\xb7\x4b\x4e\xfb\xb7\xf7\xf3\x1e\xe1\xb2\x05\x8f\xcd\x8f\x35\xe5\xe7\x74\x6b\x4d\x92\xff\xdb\x42\x9e\x9e\x8f\xef\xc7\xb7\xee\xaf\x6e\x58\xbe\xa7\x53\xe1\x14\xa7\xef\xf2\x05\x58\xd3\xb8\x48\x26\x1f\xcf\x72\xce\xc7\x33\x78\x26\x1d\x10\x91\xdf\x37\x01\x61\x13\xa1\xed\x1a\xc0\x15\x91\x98\x45\x5b\x7b\x20\x19\x60\x3d\x7d\x7d\x79\xab\xce\x90\xce\xeb\x35\xc2\xb3\x5b\xf4\x94\xd3\x5e\x59\x9d\x3b\x40\xfb\xaa\xcc\x1a\x68\x66\x01\x04\x9a\xb3\xa0\xf2\x15\xbc\x68\x91\x87\x80\xdd\x1c\x4a\x26\x3d\x5d\x49\xab\x9a\x32\x41\x05\x65\x85\xe1\xbd\xf1\xb9\x6f\x48\xa3\x46\xbc\x79\x66\xe9\x34\x21\xfe\x0b\x89\x32\x73\xc1\xa7\xc8\x3d\x22\xf6\xcc\x02\xdb\x7a\xe3\xe2\x50\x62\x04\x22\xfc\xa5\xf9\x8e\xb1\xe1\xf8\x75\x5c\x8e\x0a\x8e\x79\x92\x5a\xaf\x5c\xca\xa7\x46\x87\xdc\x37\xec\xd4\x4a\x11\xe1\xbc\x3e\x73\xac\x57\xc8\xa0\x65\xd0\xd9\x9c\x92\x07\x93\x97\xe4\x29\x66\xb7\xdc\x25\x78\xab\x38\x77\xd3\x4b\x12\x73\xca\x5d\x72\x82\x11\x44\x42\xb3\xe1\xcf\xf2\xd8\x93\xbe\x2b\x49\x9d\xf6\x4f\xef\xc7\xa7\xc3\xcb\x99\xfd\x7e\x59\x3e\x65\x29\x57\x25\x3c\x14\xda\x63\xce\x49\x66\xe7\xfb\x94\x1e\x52\xa8\xe7\x90\x35\x44\xdf\x52\x58\x03\x05\x1b\x67\xb3\xf5\xc7\x82\x68\xf2\x0c\xe7\x73\x26\x71\x56\x6a\xad\x19\xce\xe7\xbd\xd0\x31\x40\x15\x2c\x3b\xe3\x30\xb7\xc2\x3a\x13\x11\x3f\x32\xc3\x1a\xfe\x21\x4f\x8b\x01\x18\x2b\xe7\x56\x0d\x74\x21\x7a\x15\xd9\xdc\xa5\xcc\xa2\xcc\x4e\x65\xf7\x1b\xf0\xd4\xbd\xed\xcf\xc1\xac\xce\x4f\xfc\xa7\x35\xe9\xcb\x61\x78\x5f\x40\x27\x2c\x8b\xc5\x86\xaa\x95\xf1\x71\x70\x0e\xca\xa5\x7c\xd0\x34\x72\x03\xcf\x1b\x87\xd2\xc6\x00\x65\x92\x3e\xb8\xf4\xe3\x93\x71\xad\xd2\x29\x0e\x3e\x2b\x13\xb0\xb8\x18\x36\x12\xfa\xcc\x20\xd6\xf4\xe9\x91\x24\x30\xe0\x23\x0c\x5c\xfa\xf1\x77\x76\x22\x32\xfe\xd1\x89\x78\xc1\x06\xc6\xdf\x2b\x9d\x08\x1c\xc6\xcd\x54\x78\xbb\x17\xbf\x0e\xef\x07\x70\x32\x74\xfd\x6e\xb9\xcd\x9e\x9f\xa9\x86\x30\x8b\xa0\x0c\xd2\xea\xe1\x2a\x02\x28\x65\xc6\x52\xc3\x2c\x52\xcc\xd4\xd4\x38\x66\xaf\xf5\x4a\xf0\xd8\x73\x1c\x10\x53\x8b\x4f\x5a\x28\x16\x9e\x13\x92\xcb\x06\x24\x0e\x84\x76\x90\xf5\x24\x68\x15\x5b\xe4\xc7\xf0\xd4\x51\x01\x59\x0c\x4e\x85\x49\x9f\x0b\xfc\xea\x6b\xc0\x62\x1a\x71\xc1\x74\xce\x51\x95\x74\x8b\xcd\x4f\x07\xea\xa8\x2e\x20\x3b\xd6\x30\x04\x9d\x86\xff\x25\xd3\x23\xee\xa4\x8c\x82\xb9\xe6\xe9\xe5\xf8\xbe\x58\x00\x66\x85\x13\x63\x93\x4b\x9c\x49\x56\xe0\xa9\x24\xf8\xda\xc5\x39\x66\x3a\x7d\x02\x47\x1d\x78\xb3\x5e\x25\x3f\x32\xc4\x3a\xfa\xa4\x43\xd2\x8e\x85\x9f\x9a\xc1\x1b\x4e\xc6\xdc\x31\x41\xa0\x2e\xa7\xc3\xe7\xfd\xf1\xa2\x86\x52\x5a\xf9\xa9\x19\x12\x6f\x69\x21\xee\x80\x25\x09\xfb\x09\x10\xd9\x4e\xda\x9a\x09\xec\x17\x36\x63\x6c\x57\x93\xed\xdd\xca\x2e\x6f\x97\x99\xa2\xec\xee\x84\x65\x23\xa7\x82\x59\x9e\xd3\x84\x59\xfe\x1d\xcb\xf8\x12\xb3\xfc\x4e\x58\xdc\x5d\x6f\xdf\x5f\x4f\x25\xd3\x66\xde\x53\xf3\xd2\xff\x35\x59\x37\x45\x54\xdd\x08\xf8\x18\xc7\x16\xb1\x35\x7d\x6c\x64\x6e\x36\xe5\xf8\x62\xba\x7a\xfe\x77\xb3\xbb\x5f\x76\xef\x5f\x17\xea\x64\x29\xe0\x4e\x06\xf2\x1c\xbd\x2d\x25\x77\x95\x51\x8a\x40\xee\x61\xd2\x89\x06\x9e\x66\x2c\x62\x8a\x3c\xec\xc1\xf4\xa9\x5d\xc9\xbd\x92\x10\x79\xfe\x3f\x2e\x19\x89\x78\xc2\x92\x74\xc4\xee\xb2\x2c\x2b\x84\x76\xb7\x5f\x76\xae\xe1\xd3\xeb\xfe\xf8\x3a\x5c\xd6\xbc\x96\xb3\xef\x28\xfc\x0c\x8b\x81\x8b\x56\x59\x1d\xae\x56\x17\xfd\x13\x8a\x9b\xdb\x69\x06\x23\x30\xfa\x04\xf1\x69\x89\x65\xb2\x8e\x25\x9e\xf8\x7a\x60\x4a\x45\xfd\xa3\xfd\x7a\x1b\x37\xf3\x65\x77\x3a\xfc\xbe\x7b\xdf\x3f\xfd\xb6\xff\x72\x3c\x1b\xfb\xb3\x33\x12\xc7\xc3\x64\xae\x4d\x4e\xaa\xc9\x69\x90\x8f\x09\x73\x97\x3d\x5d\x43\xf1\x78\x3d\xf4\xec\x97\xfd\xbf\xde\xd7\x9e\xcc\xe5\x3c\xf9\xb4\x65\x42\xf4\xdb\xf4\xb1\xa8\xd7\x9d\x58\x5b\xb9\xfd\x72\x4d\x99\x17\xce\x19\xfd\xb0\xc3\x35\x36\x23\x40\x4e\xc2\xfd\x60\x08\xe7\x4f\x84\x3b\x82\x6e\xe1\xf6\x23\xf7\xbb\xb7\xa7\xe7\x45\xef\x96\x92\x0a\xfd\xef\x1c\x35\x2a\x68\xc5\x20\x56\x46\x0f\x0d\xf2\x71\xc0\x32\x11\x94\x0f\xa7\x3b\x09\x63\x2f\xfb\xf7\x3f\x8f\x6f\x7f\x3c\x75\xfb\x05\x4a\xda\xb2\x78\x72\x8e\x31\x91\xf2\xe0\x0c\xf8\xc3\x69\xba\xde\xf6\x17\xd6\xfb\xf4\xfb\x45\x8a\xdf\x59\xf9\x1c\x1f\xbd\xe3\x85\x1e\xbb\xba\x55\xda\x07\x15\xf4\xc0\x44\xe6\xba\x63\x48\x5b\x4e\x67\xd6\x8c\xd5\xce\xa9\x7a\xc1\xce\x43\x0b\x23\x43\xa7\x06\x65\xf4\xa0\x8d\x0a\x06\x64\xeb\x9a\xc9\x76\x8c\x55\x9e\x7e\xd6\xd6\xc0\x9d\x8e\xfd\xd9\xec\x7c\x0a\x40\xd9\xf3\x79\xd0\x5a\x05\xc8\x18\x0d\x63\xdf\x80\xc3\xc9\x08\xf5\x3c\x50\xbb\xdb\x0e\x7e\x38\xa5\x73\xab\xb4\x6e\x95\xc9\x56\x65\x33\x30\xa8\x6e\xec\x9a\x24\x4e\x63\xa0\x23\x03\xe1\x93\xc4\xa9\xf4\xf1\xc9\x5a\xc4\xa4\x6e\x6a\xfc\x9a\xe3\xf8\xb5\x76\x60\x1f\x0b\x82\x4e\xd8\x57\x2c\xd0\xe9\xd6\x09\x46\xb2\x9b\x83\x09\x4a\x36\x57\x45\xfd\xf4\x70\x85\x0c\x5a\x6b\x65\x5c\xea\xf4\xd6\x47\x93\xa3\x72\xdb\xa8\x53\x56\x6e\xeb\x83\x26\x11\x84\x6a\x75\x67\xba\xcb\xf8\x0c\xc7\xee\x8f\x45\x7e\xfb\xf9\x89\x39\x09\xc5\x7a\x9e\xd0\xb9\x81\xee\x04\x46\x2a\x27\xc4\xe3\x51\x4f\x21\x9e\x15\xb3\xa5\xa8\xc4\xda\xcc\x61\x5b\x84\x51\xae\x9d\x48\xde\x18\x86\x96\x04\x1a\xc6\xe5\xd1\xe0\x91\x01\xe6\x8b\x32\x46\xd2\xa0\xb2\x9a\xf1\x67\x8d\x0b\x56\xaf\x53\x45\xee\x80\x1e\xb9\x16\xb2\x7c\x6a\xc2\xe4\x07\x43\x3d\x04\xc8\xc1\x31\xdf\x51\xdf\x98\x98\x06\x24\x3e\xb5\x80\xf3\x84\x48\xdc\x16\x18\x29\xad\x1e\x7b\xfd\xfe\x3c\x7c\x39\xac\xf4\x32\x17\x4b\xd8\x75\xd8\x1a\xaf\x4c\x4c\x5b\x4f\x9b\xc2\xd6\x24\x87\x60\x83\x76\x6b\x8c\x71\x29\xab\x76\xeb\xad\xa3\x79\xdf\x6e\x9d\x4e\xb6\xd5\xaa\xdd\x46\x97\xa3\xc7\x45\x3e\xf9\x9c\xed\xd0\xe8\x84\xce\x74\xfc\xcd\x18\x47\xb7\xd2\x3e\xb4\x4e\xb5\x5b\x1d\x62\xc8\x46\xb5\x5b\x17\x7c\xa0\x02\x1b\xac\xc7\x19\xb9\xd1\x74\x9f\x10\xa9\x2c\xa9\xe4\xb6\x4e\x43\x3e\x89\x4a\x83\xde\x8e\xa6\x1e\x09\x10\x86\x64\x89\x98\x70\xd8\xdc\x13\x22\xf6\x7f\x3e\xbd\xed\x87\xfd\x6e\x5c\x40\x08\x2e\x8b\xab\x40\x61\x2c\x60\x76\x38\x2c\x0d\xdc\xf5\x05\x41\xa2\x00\xfd\xcd\x40\x2b\x32\xf0\xec\xf9\xc5\xf2\x79\x88\x50\x08\xc4\xd2\x32\x00\x67\x20\x24\xf8\x1b\xad\xc6\x47\x43\x9f\xae\x55\x21\x32\x6c\x6e\x1a\xa2\xa2\x5f\x78\x43\x8b\x82\x37\x2a\xb4\x43\x13\x55\x4c\x03\x4c\xfd\x03\x5d\x9a\x06\xf9\x21\xdf\x46\x6e\x5a\x9e\x81\x47\xde\x69\xfe\xbf\xde\x9f\xfe\xdc\xef\x97\x4b\x64\x2d\xab\xb6\x25\xad\xe3\x20\x4a\x15\xa7\x3f\xc8\x6b\x71\x16\x44\x2f\x88\xa7\x0c\x13\xd7\x73\x16\x40\x03\xc2\xc2\x5c\x8c\xe1\x5b\x4b\x8b\x51\xf1\xee\x6d\x5d\x4e\xbe\xc6\x63\xe2\x37\x57\x88\xee\xbf\x9d\x36\xcc\xae\x20\x66\xa1\x4a\x6b\xc5\xb7\x7b\xe9\xcb\x3c\x8c\x0c\x47\x53\x84\x5c\xa1\x4e\x42\xc4\x1b\x7d\x99\x32\x7d\x40\x62\x81\xf8\x7f\xc8\xd4\x10\xb3\x52\x47\xef\x4e\x54\x42\x4b\xc1\x18\xcc\xeb\xea\xc9\xd2\x12\xdc\x21\xde\x1f\xc8\xff\xc6\x28\x1b\x4f\x2e\x5d\x36\x04\xe8\x4a\xce\x44\x95\xfc\xc9\x4a\xef\x00\x25\x76\x16\x73\x7d\x25\x12\x86\x61\x61\xaf\x75\xf1\x66\xb5\x8f\xed\xbc\x33\x1f\x0d\x8b\x79\x39\x3e\xed\x5f\xba\xb7\xbf\x5e\xcf\x85\x9a\x65\xb9\x50\x58\x49\xca\xb2\x09\x88\x41\xb1\xb9\x0b\x58\x50\x5b\x95\x1d\x5e\xfb\xec\x26\x5c\xaa\x95\x3c\xe1\xd5\xac\x65\x1d\x13\x4d\x60\xea\xfd\xb6\xd7\x3a\x3c\x9a\x09\x0d\xc1\x27\x0a\xbd\x58\x00\x8c\xa1\x71\x2b\x91\x55\xf7\x92\x9f\x75\x10\x30\x7d\x63\x95\x15\xc8\x14\x3b\x40\x14\xb8\xd7\x73\xe3\xe1\x79\xd9\x65\x28\x60\x22\xfa\xa4\x9c\xc9\x83\xc5\x8a\x10\x0d\x8b\x2e\x40\x62\x6c\x95\x43\xa4\x79\x01\x47\x17\xa3\x46\x28\xac\x07\x2b\xe6\x21\x9b\x21\xd0\x15\xa8\x33\xbc\xd2\xc6\x01\xba\xd1\x28\xe3\xcc\xe0\x5b\xe5\x5b\x64\x4a\x5c\xbe\xaf\x77\x1a\xf1\xfe\x74\x78\x79\xdf\xbf\xed\xc7\xf7\xe5\x0e\x7f\x76\xa2\x72\x46\x68\x8f\x61\x24\x59\x1e\xb4\x8b\x96\xba\x8f\x5e\x6e\xb1\x5c\xcf\xdd\x9e\x25\x4a\x86\xf1\xce\x85\x87\xdd\x86\xea\x3a\xc5\xd9\x88\xd8\x33\x0d\x74\x6c\x6a\x51\xab\x8c\x6b\x3b\x7e\x03\x33\x47\xe3\x61\xe8\x61\xbc\x2f\x36\xf2\x7f\xb7\xef\xf4\xcc\x44\x34\x33\x0e\x21\x30\x3a\x83\xb4\x38\xf5\x5a\x47\x96\x70\x60\x08\xbf\x9a\xf2\x35\xd0\x4b\x8d\x04\x84\x87\x8d\x83\x77\xd0\x3a\xa9\x42\x67\x1c\xdf\x53\x51\xdd\x41\x41\x04\xa9\x49\x77\xd0\x80\x28\x03\xa9\xd7\x82\x32\x76\x15\x90\xd4\x5c\x02\x92\x62\x4b\x21\x95\x47\x34\xab\xdb\xf0\xc4\xeb\xef\xe3\xa0\xd5\xea\x12\x46\xc3\x7b\xa7\xad\x87\x2f\x07\x36\xea\x8c\xcb\x06\xcf\xcb\x27\x94\xb7\xa8\x87\x6a\x8d\xd2\xbc\x2a\x1b\x14\x39\x7b\x62\x3f\x53\x40\x24\x13\x89\xf9\x99\x66\xa7\x3f\x81\xd4\xe4\x0e\x1f\x9a\xef\x48\x03\xd3\x1e\x89\x6d\x11\x3f\x6d\xe8\xb7\x33\x00\x68\xbb\x22\xb6\x1b\x71\x8e\x5c\xf6\xd4\xe3\xad\x66\x56\xbd\xfd\xb5\xc6\xd7\xd3\x93\x7a\x7a\xa5\x26\xbc\xb1\xbb\x6d\xb2\x78\x67\xd3\x36\x68\xd2\x56\xa6\xa9\x3a\x05\x9c\x23\x95\xe8\x1f\xec\x47\xda\x30\x83\x32\x29\x75\x8d\x45\x68\x1e\xf8\x22\xe9\x12\xaf\xb4\x8d\x1c\x6a\xdf\x21\x3c\x2f\x43\x51\xcb\x59\x25\x9a\x8d\x01\x29\x19\x1f\x9b\x4f\x3a\xd0\x7c\xf2\x1d\xec\xff\xa4\x42\xd2\xe2\x9c\xea\xfa\xc4\x78\x7a\x16\x71\x54\x9c\x6a\x9a\x92\xd2\xe1\x36\xeb\xcc\xb2\x9f\xcf\xe2\xbb\xd7\x4e\x56\x67\x1a\x49\xa9\x1c\xe8\xec\x41\xd4\x87\x76\x26\x6a\x35\x33\x6f\xc2\x33\xe2\x59\xfb\xe0\x84\x96\xf6\xe3\x57\x98\xbf\x17\xef\xed\xcf\x98\xbf\xcb\x10\xc5\x95\x73\xd3\xdb\x9b\xc1\x8d\xa1\x95\x69\x75\xe7\x15\x74\x3d\x4f\x3a\x6f\xec\xf5\x10\x14\x0d\xa0\x56\x41\x81\x8b\xe4\xdb\x9b\x1d\xf2\xd4\xec\x82\xaf\xb5\x7c\x57\xd2\x59\xab\x2f\xb0\xfe\xd9\x95\x6e\x93\xee\xb2\xdd\x06\xcd\xe1\xcf\xdb\x08\xd7\x6f\x8a\xdb\x10\x01\x32\xb2\xcd\x39\x2a\x03\x2d\x2c\xb7\xb3\x90\x4b\x76\x41\x9b\x6c\xe7\x43\x1a\x37\x1d\x30\xfe\x40\xf8\xae\xa3\x8a\xa4\x79\xb5\xa4\x88\x00\xdb\xeb\x1b\xfa\xf9\x75\xf7\x75\x3c\xdf\xe7\x57\x4e\x73\x6f\xb7\x24\xdf\xda\x93\x4d\xd0\xb7\x4f\x8d\x4d\x7d\x71\x81\x45\x00\xa6\x83\x45\x98\x4e\x17\x1f\xd8\x23\x53\xd3\xff\xf2\x4b\xeb\xf1\xcb\x17\xf8\xc2\x5e\x0f\x73\x89\x78\x51\xca\x0b\xa9\x81\xa0\x31\x68\x7a\xa4\xb3\xc5\x9a\xc8\x9c\x5e\x5a\xdb\xa1\x01\x23\x58\xb1\x70\x7e\x14\xe2\x19\x4e\xc9\xd1\x4e\xa4\x62\x37\x17\x5e\x62\x15\x5e\xc2\x5c\x78\x09\xeb\xc2\x4b\x98\x09\x2f\xe1\x61\xe1\xe5\xf8\xf2\x79\xff\xbc\x7b\xf9\x7c\xe1\x47\x3a\x3f\x31\x39\xfe\x63\x5c\x21\xac\x45\x1e\xdc\x3a\x63\xed\xc2\xfb\x53\x19\x6b\x41\x66\x73\x23\xcf\xaf\x3a\xa2\x0a\xee\xbe\x6e\xe3\xda\xb0\xce\x08\x3c\xf3\xe3\x1e\xa1\xe3\xeb\xee\x0c\xf5\xb2\x96\xb0\x7a\x63\x12\x67\x2f\xe0\xe6\xa8\xb8\x83\x17\xd2\x26\x95\x2d\x13\xb3\x39\x7c\x34\x99\x67\x1b\xfe\xdb\x24\x41\xe1\x89\x24\xd3\x8f\x4f\x36\x46\x46\x0b\x66\xbe\x0e\xcf\xc6\x7e\x06\x37\x6f\x47\x58\x00\x69\x5b\xf2\x85\xc1\x03\x9e\x00\x3e\xa0\x2f\x23\x9d\x05\x5d\x9c\xd1\x8a\x0e\x7d\xab\x22\x5f\x4f\x97\xeb\xa8\x12\xee\x06\x42\x38\xa3\xa9\xf0\x4e\xab\xf7\x2f\x4f\x87\x97\xa7\xdf\xde\x8e\x7f\x8e\x0b\xef\xf9\xc5\x99\x79\xc8\xd9\x50\x98\x31\x2b\xc8\xb1\xa4\x4f\x36\x85\x97\x62\xe2\x63\xbd\xcd\x4b\x31\x73\xf0\x31\x92\x06\xf0\xb0\x18\x05\x43\x82\x43\x2a\x34\xcd\x3a\x1d\xf3\x99\x00\xfc\x10\x2a\x46\x69\xdc\xcb\xfe\xcf\x95\x26\xa3\xb4\xe2\x9e\xc0\x97\xeb\x32\x73\x5e\x51\x1b\x80\xdb\xd8\x92\x0e\xd9\xe6\x89\xf8\x0f\x88\x9d\x1c\x1e\x64\x27\x18\x54\xfa\x8d\xf0\x65\xdd\x86\xfb\x58\xe3\x99\x4e\x97\x0d\x43\x45\x30\xf7\xe9\x8b\xc9\xe9\xb1\xa6\xfe\x79\x78\xef\xcf\x1b\xca\x65\x13\xbc\x4b\x2e\x5c\x8c\x43\x8d\x30\x1f\x4a\xec\xb7\xf0\x2c\xa6\x30\xb3\x95\x55\xed\x5d\x24\x7f\xc4\x69\x9c\x10\x2c\xc6\x64\xd6\xa7\x3a\x43\xca\x3d\xe9\x96\xf2\x29\xcf\x62\x2b\x94\x35\xad\xdc\x65\x98\x5f\xc6\x40\x58\xa2\x4d\x34\x77\x0c\x3f\xaf\xbb\xdf\x17\x66\x41\x39\xae\x31\x70\xd7\x3c\xce\x9c\xa1\xda\xc6\xc1\x18\xb6\x99\x05\x58\x97\xe9\xd1\x9c\x58\xc5\x29\xbd\xb0\xa2\x25\xa1\xbe\x2d\xd0\x40\x2b\xa3\x89\x5c\x57\xe0\x66\x33\xd5\x08\x5b\xdf\x52\x18\x52\x50\xc6\x08\x30\x33\xf8\x64\x57\x5c\xd9\x10\xe4\xe8\xc7\xc1\x21\xb6\x7e\x8d\x8e\xed\xc4\x03\x83\xdb\x0d\x7c\x6f\x5e\x1a\xef\x39\xc5\xa8\x43\x4e\x87\xc5\x84\x9f\x8a\x78\x2d\xf7\x49\x69\xe3\x24\x2d\xb5\x09\x70\x8a\x64\x05\x2f\x14\x82\x6b\xbd\xf2\x5a\x24\x52\x67\x05\xa1\x03\x12\xe9\x2d\x08\x8f\x4e\x93\x1e\x6f\x03\xc9\x27\x5a\x69\xff\xcf\x65\xa8\x7f\x32\xce\xc3\x03\x33\xb1\x20\x16\x82\xc6\xcd\xc8\x0e\x18\x57\xfe\x33\x3d\x9e\x17\xf2\xc6\x71\xe6\x0e\xb8\xd3\xa9\xc3\xfe\x7d\xa1\xec\xd7\x12\xee\xd2\x68\x19\x7b\xfe\x87\xe2\x93\x21\x6b\xb9\x1f\x85\xac\x36\xad\xfd\x09\x77\xd1\x36\x3f\xd0\xa2\xcd\xdd\xca\x08\xe3\xd1\x8c\xc9\x91\x41\x9f\x2b\x04\x90\x00\xe5\x2d\xc3\x3e\xfb\xc6\xce\xfd\xec\xb3\x07\x00\x14\x59\x59\xc8\x81\x00\x16\x1e\xd9\xc7\x94\x0a\xcd\xde\x25\x47\xee\x35\x7a\xc9\x71\xc9\x1c\x79\x67\x02\xbc\x3c\xbd\x1f\x8f\xc3\x62\x06\x94\x22\x5e\x7c\xb2\x66\x93\x8f\xd5\xed\x7a\x0c\x50\xdf\x68\x3f\xc1\x90\x79\x95\x91\xa6\x66\x00\x00\x03\xa7\xd9\x48\x82\x3c\x69\xb7\xca\x84\xce\x2b\x38\x02\x03\x89\x01\x74\xd4\xd2\xf5\x20\x18\x6d\x6c\xa7\x25\x5f\xc2\x1b\xf9\x38\x19\x50\x7e\xde\x93\xa0\xdb\xde\xe8\x13\x73\x47\xde\xbe\xd4\xb4\x24\x94\x9e\x74\x32\x77\x2e\xdd\x9c\x1a\x9d\x4c\x4f\x4b\xa9\x4e\x77\xae\xbd\xd7\xc3\xc7\xb7\xdd\xf3\x6e\xd9\xc3\x52\xc4\xa2\x59\xd2\xca\x38\x5f\x92\x49\xd7\x12\x4c\x79\xdf\xba\xb1\x6e\x5f\x8d\x2e\x5a\x21\xc5\xea\x6f\x90\x6e\x3d\xd4\x94\xa7\x2f\x87\xb1\x7f\xda\xff\xb5\x5f\x69\xd3\xec\xdc\xbf\x03\x7a\xea\x67\x9b\x42\x6b\xb3\x90\xb8\x70\x7c\x59\x32\x3d\xae\x9e\xe5\xb7\xc6\xf3\x1e\xc1\xec\xc6\x00\x6f\xc1\x8c\xa1\xd7\x08\xa1\x74\x19\xf8\x2d\x92\x6e\xde\xc0\x36\x8e\xc1\x53\x5a\x35\x41\x99\xae\x09\x16\xb9\xa2\x1a\x71\x25\xf4\x6e\x93\x6a\x39\x4a\x34\x8d\xe1\x02\xc4\x86\x1b\xf8\x04\x38\x6b\x30\x20\xd9\x3a\x32\x81\x9e\xe2\xcc\x75\xed\x4e\xfc\xcc\xac\xbc\xe2\x24\x78\xed\x3a\x7a\x1a\xbc\x09\xf8\x49\xb0\x8c\xcb\x04\x9b\xb4\x57\x72\xef\x51\x23\xdd\x50\xf1\xb3\x3b\xa3\xb4\x72\x8a\x6e\x5b\x18\x1b\xa2\xd9\x74\x9c\x49\x1e\x0b\xd9\xb3\x93\xc1\x33\x6e\x6c\x40\xa8\xc3\xc7\x86\x74\x28\x6b\x3a\xef\xe1\x92\xd0\xc0\xbd\xe6\x13\x23\x5d\xd6\x24\x25\x3f\x3b\x99\x07\x5f\x28\x64\x4e\x1c\xba\xf5\x01\x99\xce\x09\x6f\x53\xab\x92\xef\x0d\x16\xcd\xa0\xa8\xca\x86\xa1\x02\x1a\xae\xc7\x98\x40\xff\xc3\x07\x3d\xaa\x2a\x59\xf2\x46\x78\xac\xa5\x65\x23\xd0\x76\xe8\x9c\x14\x50\x57\x78\x15\x74\xa7\x11\x77\x48\x23\x41\x03\x81\x30\x28\x66\x0b\x36\x65\x9c\x7b\x0c\x7e\x93\x99\x15\x50\x79\xc1\x24\xa0\x17\xb4\x74\x2d\xbd\x97\xc1\xb2\x11\x01\x03\xaf\x33\x0d\xba\x51\x18\x77\x3e\x46\x6a\x27\x3d\x0c\x63\x1e\x10\x18\xe1\x79\x58\x95\x36\xbd\xd5\x6e\xd3\x65\x89\x84\xf4\x82\x68\x80\x75\x63\x3e\x51\xd8\x07\x01\x3e\x29\xcf\xb3\xac\x91\x69\x36\xa2\xc2\xb4\xcc\xf1\xf1\x63\x83\xf1\xe7\xe1\xf3\xfe\x69\xf7\xf2\xfb\xb0\xba\x28\xcc\xcf\x4e\x66\x5a\x13\x3b\x9f\x10\x1d\x82\xa9\xcb\x11\x7d\x61\x00\x37\xec\x80\xfd\xac\xa3\x33\x0c\x86\x8f\xf8\x41\x46\x8c\x18\xa9\x5b\x11\x0e\xc8\xc7\x03\x93\x32\x0b\xab\x6c\xc7\xa1\x67\x15\x03\x3d\x94\x78\xc4\x30\xa2\x44\x8e\x01\x3f\x90\x15\x7e\xac\x33\xe2\x2d\x10\x07\x93\x94\xdc\x99\x1e\x14\x14\x3f\x95\x1e\x82\xdc\x28\xfa\x05\x55\x5a\x73\xad\x35\xd7\x5a\x8b\x9d\x06\xab\xb0\x37\x9c\x92\xa1\xf9\x0d\xf7\x08\xa1\xdc\x70\x94\x64\xc1\x16\x8c\x82\x44\xaf\xb5\x1b\xf9\x50\x8e\x90\x45\x92\x15\xf2\x3b\x68\x38\xf9\xd7\x23\xdd\xcd\xe3\x88\xe3\x10\x18\x3c\x90\x7f\x46\xf7\x68\xbc\x92\x5b\xd2\x3d\x68\xda\x66\x4e\x12\xc1\xe8\xe3\x67\x77\x86\xf1\xed\xfd\xaf\xa7\xe7\xe3\xe7\xe5\xe8\x4d\x85\xf7\xd8\x79\x30\x09\x69\x1b\x97\xe8\xdb\x1e\xe9\xd0\xf4\x0a\x70\x43\x5c\x61\x23\xbb\x84\xbd\x80\x6a\x4c\x3b\x96\x09\x30\x24\x38\xcb\x91\x48\x25\x09\x29\xd0\x88\xe6\x29\xbf\x77\x06\x33\xdc\xd5\x20\x14\xbc\x74\x46\xf7\x0e\x0b\x62\xc4\x42\xea\xf0\x2e\xea\x4b\xa6\x22\xa8\xe2\x2d\x47\x43\xf1\xee\x97\x3c\xa7\xf2\xb0\x64\xbf\xf9\x9b\xf9\x81\x06\x9b\x15\xc7\x86\x4e\x94\x44\x77\x86\x67\x99\x8f\x23\xc7\x93\x8e\xdf\x7a\x89\xce\x67\xbe\x26\x40\xa9\x22\xd2\x50\x42\x98\x67\x27\xef\x3f\xe8\xa9\x3b\xbc\x75\x03\x52\x0f\x96\xc4\x1f\xab\x67\x27\x14\xb3\xa8\x39\xf8\x80\x91\x55\x5b\x20\xab\x22\xa2\x63\xf5\xc4\x3f\xbc\x8d\xcf\x6a\x7e\x09\x39\xb7\x7e\x7a\x0a\xee\x95\x06\x94\xfa\xd7\xb9\xf9\x8b\x0b\x36\xb0\x64\xac\x55\xfe\x76\x57\xfd\x75\x86\x22\x52\x4b\xce\xb0\xdc\x24\xe4\xc3\xcd\x50\xf6\x0a\x54\x16\x9f\xa1\x6f\x4b\x00\x3e\x77\x16\x0c\x32\x7b\xad\xdc\x1c\xa2\x76\xfe\x5a\xb9\xb3\x58\x10\x3b\x33\x90\xa6\xc7\x31\xdd\x2e\x22\xa1\x17\x21\xd0\xb0\x03\x5b\xcf\x19\xdb\xc8\x33\x33\x9e\x3f\xa3\x07\xd7\x15\x2c\x23\x80\xa6\x84\x00\x16\x39\xbe\xd2\xa8\xe8\x3a\x5a\x81\x68\xad\x06\x9e\x47\xb5\x9c\xc8\xad\x1c\x53\xe0\xe0\xb3\xdc\xca\xe4\xcc\xb7\xf2\x2d\x62\x40\x23\x3f\x2a\x7a\xf9\x71\x8c\xf7\xb9\x89\x39\x80\x80\x13\x18\x46\x0e\x1d\x75\x25\xa1\xe1\xa3\x98\xb5\xef\xdd\x66\xf3\x03\x14\xda\xdc\x7d\x6b\x2f\xd3\xd9\x09\xb1\xcd\x18\xa6\x72\x59\x01\xab\x3e\x63\x81\xbc\x4e\xf4\xf8\x81\xdb\xc0\xc1\xee\x34\x42\x2f\x3c\xb0\x48\xa2\x57\xd1\x8f\xd6\xa9\xe8\x14\x00\x37\xc6\xc8\xa9\x9d\xf4\x11\xdd\xd8\xc8\x45\xf2\xff\x83\x61\xd0\x7e\xbc\x36\x74\x9b\x2b\xb5\xd9\x7c\x4b\x75\x9c\xcf\x4a\xdb\x7c\x32\x12\x08\x4f\xfb\xb7\x95\x6d\xce\xa6\x99\x66\x4d\x72\x4e\x60\x79\x0e\xa8\x2f\x9a\x69\x3c\xe9\xc3\x84\x53\x63\x42\xaf\x43\xcb\x88\x22\xd7\xef\x27\x70\xfd\xa6\x98\x25\x6c\xc2\x2f\xe1\xaa\x41\xff\x5a\xdf\x39\x58\x35\x2c\xc3\xbc\xe2\x33\xb6\xa7\xc6\xa7\xbe\x71\xb1\x3d\x79\x52\x43\x5d\x50\xd9\xaa\xc8\x97\xc5\x76\xd3\x19\xfa\x4d\xf0\x54\x2f\xb8\x6e\xc0\x92\xaa\x01\x13\x63\xe0\xff\xbd\xc3\x34\xfa\xba\x7f\x7b\x7e\xea\x76\xcf\xfb\xb7\xdd\xd3\x12\x4d\xed\xe2\x4c\xdd\xf8\x8c\xf5\x95\xae\xf2\x26\xef\xc9\x8c\x29\xf3\xea\xf0\x7e\x37\x28\x88\xf6\xed\xc9\xf9\x2e\x30\x52\x6e\x1b\x11\xd4\x4d\x72\x91\xa9\xf4\xda\xb0\x9a\xa4\x62\x31\xa1\x4f\x4e\x45\x61\x43\x4a\xaa\xd7\x05\x2b\xd4\xe0\x05\x3a\x05\x11\xe8\x30\xb1\xb4\xdf\x02\x3c\xc2\x32\x86\x9d\x64\x0c\x7b\x57\xc6\x40\x27\x93\x0e\xdb\xbd\x3f\x75\xbb\x61\xff\xf2\x79\xf7\x76\x31\x08\x17\xe7\x27\xd7\x35\x90\x58\xbb\x2a\x4f\x21\x75\x08\xd4\x4c\xc2\x82\x6f\x0a\xd2\x5b\x00\x36\x2b\xc3\xf5\x55\xa9\xf9\x7e\xea\xf5\x78\x35\xfb\xfb\x07\xa1\xca\x1f\xf4\x5d\x80\x38\xa4\x60\x4b\xb2\x0f\x6f\x53\x0e\xef\xb8\xa9\xd0\x77\x9f\x77\xef\xbb\xa7\x71\xff\xfe\xbe\x64\x4c\x5a\x39\x57\x8d\xfe\xd1\xff\x28\x32\x44\x72\x2a\x87\x01\x5d\xcf\x90\x45\x8a\x8d\x11\xaa\x89\x03\x62\xbc\x61\x8f\x84\x4a\xc8\x70\xb2\x34\x4f\x11\x76\xa8\x75\x27\x45\xe0\x0d\x16\x65\xab\x1d\xa0\x40\x32\x9d\x16\xfe\x39\xac\x4a\x8e\xe1\xe6\x31\x3d\x03\xdb\x30\x1c\x5d\x6a\x72\xd7\x44\x65\xab\x39\x02\x30\xb3\xbc\xf6\x68\xb0\xa9\x69\xb9\x3e\x92\x26\x66\xb4\xb2\x02\x5d\x44\x67\xa8\x9e\x71\x00\x21\x17\xed\xbb\x54\xc4\x4a\x86\x1e\xe9\x9b\xe6\x7b\x59\xa5\x69\x14\x59\x25\xf6\xb8\x68\xc0\x8d\x3a\xba\x8d\x57\x56\x45\x65\x06\x79\x64\x50\x30\x80\x24\x28\x75\x7a\x70\x8a\x11\xfb\x94\x55\x4e\x05\xe5\x7a\x67\x3a\x6a\x43\x10\xcb\x88\x1b\xa8\xb5\x89\x56\x5b\xcb\xfc\xc9\xac\x83\xea\x81\x7b\x88\xc3\x31\xa0\xfb\x98\x41\xba\x13\xbd\x29\xca\x1f\x77\x33\xd0\xf7\xa9\xdc\xaa\xd2\x5c\xdd\x8e\x74\x36\xe1\x1a\xad\x85\xe5\x35\x50\xe3\x13\xac\xc3\x48\xaf\x89\xa6\x24\xd4\x09\x18\xbd\xe2\x40\x01\x64\x10\xf4\x8d\x71\x71\x10\xd1\x8a\x9d\xcf\x2e\x76\x4b\x7d\x48\x3d\xb0\xe4\x7e\xde\x9f\x0e\xdd\xfe\xe9\xf0\xf2\xe5\xf8\xf6\x7c\x9e\xfe\x73\xf5\x8a\x09\x2f\xb6\x64\x49\x32\x5e\x6c\x4e\xb2\x93\xd0\x4a\x96\xdb\xf5\xf8\xdf\xe4\xae\x22\xe1\x5d\x89\x12\x5d\xa0\xe2\x89\xc8\x37\xf1\x2f\x2e\x7c\xb8\x73\xbe\xc6\x12\x1d\xcd\x81\xf2\x77\xbb\xe2\xf0\x79\xff\xf2\xbe\xf4\xa2\x9f\x95\x4f\x5e\x64\x92\xf0\x62\x81\xff\x37\x99\x3f\x05\x2a\x00\xe2\x6f\xa0\x1a\xfb\x48\x1a\xb9\x4a\x00\xf6\x50\x29\x4c\xdc\x01\x53\xb2\x22\x07\x74\xd1\x8e\x70\x37\x59\x51\x72\x6b\x85\x92\x28\x3b\x98\x09\x91\x34\xdc\x72\xd0\x17\xbe\x00\x42\xda\xf6\x26\xb4\x27\x63\x05\xd4\x32\x44\xe0\x80\xd1\x79\xe7\xcb\xba\x1b\xba\x06\x11\xf2\x90\x2d\x04\xca\xac\x71\x9e\x25\x20\x87\x1f\x38\x37\x3a\x8f\x5e\xa7\x15\x76\xc3\x22\x10\xae\xba\x07\x28\x86\x9e\x7b\xde\x7f\x3e\xec\xce\xbb\x53\x0a\xc5\x32\x07\xdf\x6d\x0f\xf4\x85\xe8\x15\xc0\x14\x2d\x47\xfa\xe3\xf0\xa3\x40\x16\xae\x2f\xee\xda\x5e\x35\x89\xaf\xa3\x97\x0c\x5a\xad\x6e\x99\x85\x64\x1e\x31\x99\xed\xc7\x27\x67\x25\x1c\x3c\xe7\x05\x3a\xef\x7a\xb0\x75\xce\xfd\x3d\xbd\x8a\x5a\x0e\x2e\xf9\xa7\xe7\xf1\x62\x03\x98\x9d\x58\x66\x61\x67\x23\x9e\x7b\x78\x03\x04\xfb\x12\xca\x1d\xf4\xad\xa4\x7f\x2d\x2e\x79\xe0\xea\x35\x2e\x3e\xc6\x90\x8f\xdc\x04\xbf\x11\x8a\x7c\xe4\x65\x16\x8a\xfc\xfb\x7d\x39\x76\xbb\x97\xf3\xa4\xa2\xf3\x13\x35\xab\xc4\x3a\xdd\xbb\x39\x99\xea\xc7\xa4\xd9\x5f\x64\xd9\x54\xdf\x1e\x8c\x93\x29\x83\xaa\x93\x4a\xc1\xe3\x81\x2f\x56\x3b\xfe\x66\xb5\xef\x42\x84\x6b\xd8\x25\x95\xf9\xba\x7c\x1b\x1e\xe9\x75\xff\x36\x9e\xaf\xb2\xe3\x92\x20\x52\xdb\xf9\xea\x22\xc6\xf1\x12\x4a\x62\x9d\x30\xaa\x95\xd5\xc5\xf3\xea\x52\x28\xbc\xa0\x92\xc0\x09\x70\x6d\x01\x19\x6f\x2e\x3c\x0f\x54\xfe\x2c\xfc\x7a\x5e\x38\x31\xd5\x7c\x6f\x23\x04\x8c\x89\x93\x85\xed\x14\x42\xe1\x6c\x09\xd6\x70\x56\x42\x3a\x68\x0d\x80\xc2\x6b\xda\x7f\xa6\xdd\x6b\xfa\xee\xf2\xc4\x7f\xb7\x88\x6f\xd9\x22\xa8\xeb\x96\xa1\x88\xf3\xc2\x79\x58\xfb\x49\xe7\x47\xb5\x0b\x9d\x67\xda\x45\xce\x1d\x89\xc4\x2d\xa7\xa4\xc3\xe8\x9b\xe8\xff\x88\xaf\x51\xe1\x28\x8e\x3e\x29\xe3\xe9\xc0\x47\x80\x3e\xf3\x45\xca\x27\xd1\x2e\x42\x5e\xa7\x25\xcc\x57\x23\xa3\x92\x2f\x0b\xf6\x50\x08\xc8\xaf\x05\x81\xe1\x26\xd3\x86\xc4\x44\x85\x39\x6d\x1e\xec\x3d\x31\x5d\xae\x76\x62\x3d\xb7\x58\x5c\x2c\x94\x75\x48\xb3\x89\x1a\x47\x8f\x17\xa8\x57\xc7\xe6\x70\xc7\x81\xda\x5a\x14\x56\x07\x90\x3a\x7a\x8b\x69\x99\x76\x92\x2d\x3c\x9b\xac\x33\x5b\xca\xd4\x11\x6b\x0c\x64\xe3\x8c\x79\x6c\x45\x73\x9f\x71\xdb\x4e\x34\x84\xf1\xfb\xb8\x6d\x37\x13\x07\xe1\x83\xe4\xb6\xdc\x6f\xbb\xe1\x22\x7a\xf4\xfc\xc4\x94\x14\xfc\x9f\x15\x27\xfa\xba\x7f\x5f\x84\x99\xe1\x50\x62\x7d\x5a\x78\x17\x39\x97\x0b\xa6\x45\x9a\xff\x30\x13\x19\xe4\x74\x71\xe6\xb2\x60\x8c\x32\x06\x33\xe6\x87\x05\xca\x30\x8d\x8f\x4e\x2a\xf7\x8d\x2b\x79\xc6\xba\x2d\xce\x6a\x9a\x3b\x19\x54\xdd\x01\xbf\x37\x1c\xf4\x49\x77\x08\x54\x73\x93\x54\x74\x0a\x68\x25\xa6\xd3\x19\x79\x87\x4e\x39\x04\x6b\x05\x03\x12\x22\x4e\x79\xb6\xca\x46\x52\xda\x48\xc5\x22\x45\x28\x2a\xd3\x91\x46\xa5\x35\xfd\x89\x4a\x8f\x10\x5c\xe0\x90\x86\x93\xdb\x8b\xda\x68\x3a\xed\x49\x48\x01\x28\x6e\xa0\xbb\x34\x26\x6d\x3a\x49\x3e\x47\xee\x39\x87\x86\x05\xc3\xda\x8b\x6d\xf3\x94\x5b\xcd\xf1\x54\x8e\x73\xab\x3d\xe7\x56\xbb\x71\xc6\x59\x04\x92\xe6\x86\xf9\x9c\x85\x2d\x9a\x91\x7d\xb3\xbf\x93\xa1\x2d\x77\x29\x77\x3a\x0b\xe5\xe2\x88\xa5\x1f\xbf\x8b\x43\x83\x36\x3f\xd6\xa2\x9b\x13\xab\x5f\xa6\x87\xc8\xb1\x08\xf9\x5a\x99\x64\x1e\x13\x0a\x81\xf4\xed\x45\x26\xe4\xd8\x61\x91\x09\x7f\x2d\x51\xf7\x7e\x6f\x3c\xed\x5e\x3e\xbf\x1d\x0f\x9f\xcf\x7b\x65\x2a\x9f\x98\xb6\x4c\x82\x12\xd1\x18\x23\x3a\x87\x31\x92\x79\x06\x79\x9f\x79\xcf\x8c\x46\x0c\xab\x75\x5a\xb9\xac\x2b\x26\xe2\x1c\x15\x5f\x72\x6b\xd7\xdc\xac\x1a\x10\x54\x97\x40\xfc\xfc\x93\x33\x1f\xe9\x3d\x3e\x6b\x6e\xc8\x6f\xc3\xd7\xfd\xfb\xf1\xf8\xde\x3f\x8d\xaf\xfb\xdd\x1f\x8b\x08\xec\xab\x57\x4c\xd0\xd1\xbf\xb6\xf6\xa2\x1f\xd2\x5e\x56\x95\x17\xce\xd7\xf6\xe9\xd4\x38\x40\xb0\x19\xc9\x6e\x72\xbe\xdd\x2c\xca\xb4\xa3\xd7\x52\xa0\x52\x06\x9f\x91\x79\xcf\x1f\x5c\x84\xdd\x36\x9f\x92\xee\x75\x3b\x04\x54\x6b\x00\xc6\xb5\x0b\x83\x7c\x34\x5c\x4c\x1b\xc5\x29\xdd\x31\x44\x62\x4c\xbe\x1c\xdf\xfe\xdc\xbd\x7d\xde\x5f\x4e\xcc\xd9\x99\xff\x2d\xa3\x64\x22\x87\x80\x27\x7f\x4a\xc8\xa8\x0f\x6e\x53\xc3\xb7\x1f\xe8\xcc\xc3\xcb\xd3\xfb\x6e\xf8\xe3\xa2\x2b\x6b\xf9\xa4\x0f\x61\xbf\x96\x37\xb3\x1a\xaf\x49\x09\x5a\x4d\x2b\x67\x37\x33\xec\x82\xf8\x61\xb2\xea\x1c\xb2\x8b\x7e\x3b\x8b\x40\x9d\xb1\x3f\xcb\x8f\xff\xfd\xc3\xb7\xf9\x1b\xc7\xef\x81\xc1\x59\xdd\x95\x6a\xf1\x94\xae\x58\x96\x5f\xd8\x5b\xe8\x9b\xce\x12\x80\xed\x7e\x94\x6b\xd0\x5a\x5e\xad\x39\x8a\x7b\xbe\xdb\x9e\x1a\x1b\x38\x32\x2b\xab\xb3\xed\x5b\x78\x32\x2b\x3b\x62\xdd\xc9\x4f\xfc\x93\xe5\x26\x7e\x37\x8b\x98\x9b\x7d\x81\x74\xb3\x2c\xe6\x37\x5e\xb7\xe0\x07\x41\xb0\x2f\x10\x85\x22\x64\x25\x4b\x1f\x23\x27\xaa\x47\x4e\x58\xb7\x48\x93\xed\xe3\x14\x38\x33\xcd\x08\xcd\x1f\x4b\x9c\x9b\xc5\x4c\x13\xb9\x56\x60\x6e\x40\xb1\x80\x89\x55\x61\x6e\x20\x04\x02\x39\x41\x2a\x73\x26\xb7\x38\xee\x49\xc7\x3d\xa9\xdb\xef\x99\xee\x9b\xff\xa4\xe5\xea\xfe\x00\x3f\x1f\xc6\x71\x65\x80\x4b\x31\x06\xd8\xb7\xf4\x9c\xd0\x21\x3a\x2a\x50\x5b\x10\x38\x36\x22\x3c\x50\x73\xc4\xa2\x1f\x0a\x13\x67\xe3\x0a\xc9\xa0\x44\xac\x21\x88\x0e\xee\x19\xaf\x02\x28\x07\x34\xe3\x17\x00\xe9\x31\x2a\xd7\x4e\x0e\x1f\xb8\xa7\x8d\xd2\xf9\x14\x02\x60\xad\x34\x8b\x1e\x74\x9f\x9c\x14\x3d\x34\x44\xf4\x52\x46\x5c\xdc\xa9\x09\x61\x16\x1b\x1b\x05\x91\xa8\xed\x1a\x99\x52\x80\xb2\x01\x83\x0a\x82\xd0\xef\xd4\x6e\x60\xa9\x75\x43\x97\xc1\x4b\x85\xeb\xb4\x1f\x8d\x04\xa0\xfb\x2e\x78\xf0\xbb\x7a\xc6\xe2\x32\x1c\x8f\x31\x6a\xc1\x10\x34\x90\x3e\xdb\xb6\xca\xe0\x34\x8f\xfa\xc6\x9a\x42\x07\x07\x9c\xa7\x26\x7a\x61\x52\x2b\xe0\x6e\x03\xcf\x0e\x49\x2a\xbc\x47\x7b\xcf\x63\x74\x91\xbb\xba\x2c\x9e\xe7\x01\x95\x8c\x2c\x18\xc4\x18\x94\xf1\xdf\xbf\xce\xff\x8d\xf3\x7e\xc3\xce\x24\x97\x16\xad\xbe\x6b\x6f\xa7\xfe\x1b\x0e\x2f\x17\x3b\x33\x97\x55\xbc\x37\x64\xaa\xfb\x96\x71\x4e\xe9\x0b\xa0\x9a\xb3\xe6\x5c\x93\xcb\x0e\x15\x8f\x43\xe9\xd1\x02\x99\x65\x24\x2d\xaa\xc2\x76\x69\xfe\x30\x00\x8b\x9e\x80\xbb\x34\xaf\x6a\x9c\x9c\x05\xe3\x1d\x22\xa3\x7d\x0f\xf7\x19\x09\x22\x26\x67\xb1\x6c\xae\xe2\x0a\x3d\xcc\x08\x58\x1b\xfb\xb4\x7f\xdb\x8d\x17\x9b\xe0\xfc\xcc\x34\xbb\xf2\x1a\xfa\xfc\xc2\x63\x77\xe1\x43\xd7\x76\x35\xf3\x40\x8c\xb3\x70\x8e\x5b\x46\x08\x02\x35\xb4\xb0\x3b\x06\xb7\x42\x06\x5e\x39\x9f\x6d\x2c\x7c\x58\x05\x41\xb7\x29\xef\x94\x80\x42\x71\x20\xc5\xc0\x7b\xc6\x12\x30\x4a\x8a\x42\xf9\xf9\x3d\xc3\x6e\xed\x0d\xda\x08\x57\xbb\x89\x4f\xb0\x01\xad\xb5\x10\x19\x19\x07\x8e\x09\x76\x4c\xc2\x86\x6f\x92\x88\x02\x5a\xe8\x84\x52\xc5\x81\x33\x16\xc4\xed\x1d\x28\x7e\x84\x51\x0e\xd0\x3e\xb1\xbe\xa1\x02\x98\x83\x52\xd8\x29\xfb\x46\xeb\x58\x59\x81\x80\x23\x03\x0c\xbf\x74\xc2\x2f\xb4\x05\x60\x3c\xd8\xec\x8c\xe7\xfa\x20\xf3\x8d\xb6\xc4\xd0\x62\x8b\x14\x9a\xe6\x2c\xc2\x46\xe1\x74\xff\xae\x41\xde\xfc\xcc\x51\x7e\x6c\x3c\x96\xb8\x09\x67\xe5\x53\x72\xd2\xb7\xbe\xa7\xd5\x1c\xeb\xc2\xec\xcd\xd7\x5a\x00\x0a\x4e\x29\xdf\x78\x5d\x63\x3a\x35\xc6\x90\x7a\x4e\xeb\xae\x56\x0e\xa3\x9a\xb6\x2c\xb5\xdb\xb4\x35\xe0\x9c\xf3\xdb\x9c\xc0\xfd\x1e\xb6\x21\x19\xe5\x10\x8c\x4c\xfb\x6a\xc1\x42\x60\x50\xa3\x86\xee\x37\x7f\xd9\x49\xfa\x42\x1c\x61\x0b\x7c\x6e\x6c\x3b\xec\x01\x65\xf0\xcb\x54\x6a\xb9\xe9\x2d\x68\xaa\x1e\xed\xcb\xb7\xb3\xa8\x93\xb3\x13\x35\xa2\xaa\xa0\x79\x61\x39\xa2\x6f\x9c\xc2\x9f\xf3\x6c\xda\x2c\xe3\xa2\x7f\x92\x37\x5f\xc2\x06\x48\x6f\x6e\x6d\xf7\xff\xb3\xf7\xa7\xbb\x8d\x23\x4f\x97\x38\xfc\xdd\x57\x91\xc0\x00\xf3\x8d\x44\xee\x0b\x9e\x6b\xa8\x6b\x10\x54\x2c\x75\xd3\x6f\xb3\xac\x1a\xd1\x56\x3d\xed\xab\x7f\x11\x27\x22\xb9\x48\xb4\x69\xf7\xf6\xf4\x6f\xfe\x03\x74\x97\xac\x24\x45\x32\x17\x66\x46\x46\x9c\x38\x47\x5e\x03\xcb\xfc\x48\x90\x3b\xe2\x77\xdd\x76\xc6\x30\xea\x5d\xb1\x5e\x1a\x96\xbf\xa2\x9c\xcf\x1d\x6c\x16\x03\xe3\xda\x38\x76\x40\x66\x3b\xf0\x2c\xdc\xb9\xac\xbc\x01\x70\x1e\x0b\x9f\x71\x3b\x70\xa8\xa9\x81\xc6\xd3\xf3\xcb\x8f\xcd\xa6\x93\x23\xff\xa6\xd9\x13\xf8\x51\x33\x0b\xdf\x72\x3f\x79\x37\xce\x31\x8b\x0d\x74\xdc\x1a\xf2\xf8\xfa\xc5\x06\x8b\x8c\x34\xee\xd3\xae\x26\x9b\x70\x66\x4b\xc5\x0d\x3d\x20\xf5\xc8\x2e\x53\x8f\x40\x04\x66\x98\x00\xcc\x4f\xc2\x72\x06\x9e\xe1\x01\x56\x41\x5a\xfc\x88\xf1\x8c\x41\x74\x80\x19\x39\x04\x40\x51\x00\x72\x28\xd1\x65\x90\x8a\x02\xd4\x8f\x28\x4c\x6a\xf6\x23\x0b\x62\x69\x09\x1c\x82\x33\x1c\x59\x4d\x56\xe5\x01\x99\x3c\x57\xb2\x42\xf0\x57\x57\x73\x73\x38\x67\x46\x00\x42\x16\x00\x21\xcb\x00\xa1\x34\x03\x84\x3c\x19\x40\x5a\x00\x42\x7c\x9a\x57\x41\x45\x15\x7a\xef\x1e\x3a\xcf\x08\x21\x47\xff\x84\x81\xab\x15\x81\xfa\x01\xdf\x9e\xd4\xd7\x66\x55\xe4\xa7\x0c\x26\x72\x8c\x10\x62\xc7\x3f\x27\x7b\x35\xd2\xa0\xc0\x67\x5d\x3f\xe0\x54\x7c\x3e\xaf\x47\xe2\xf3\x79\x99\x44\x68\xfd\x4e\x12\x21\xbb\x17\xde\x87\xc3\x7d\x90\xa2\x9c\x0a\xdf\x80\xdb\xed\x57\xe2\x70\x1c\xbe\xbe\x7c\xbf\xad\x4a\x2d\x9d\x08\x2b\x20\x5e\x12\x68\x61\xa7\xd9\xb8\x70\x38\x8d\x5e\x69\x1f\x55\x90\x40\x31\xc4\x2c\x4d\x32\x43\x70\xca\xd9\x21\x60\xf3\x7d\x45\x16\x17\x72\xd1\xe1\x76\x7b\x23\x78\xb7\x20\x22\xfc\x20\x8d\xd7\xcc\x43\x58\xdf\x2c\x84\xea\xf6\x12\x27\x51\x3b\x46\xb0\xde\x55\xba\x16\xef\xa5\xd8\x8c\x4b\xe7\x10\x17\xdc\x25\xc4\x8c\xf5\xcb\xe4\xc0\x42\x0e\x80\x8f\x65\x9d\x6d\xf2\x37\x27\xb8\xbc\x7e\x31\x39\x57\x7f\x17\x44\x3b\xab\xa2\xdf\x08\x09\x85\x2a\xdf\xf7\x30\x32\xe9\x61\xae\xff\x8f\x90\x02\xd4\x22\xed\xf7\x81\x36\xbd\x53\xcd\x58\x17\x8b\x44\xa7\x53\x36\xbb\x01\xe1\x5f\x5a\x7a\xe5\xd3\x82\xa5\x9c\x45\x30\x32\x8a\x6d\x1a\xf8\x5f\x14\x71\x18\x08\xc0\x24\x91\xd8\x60\xc1\x0d\xfe\x97\x8b\x44\x74\x43\xc4\x36\x44\x7b\x83\xcc\x2c\xf0\x8c\x80\xba\x9e\x95\x0a\xde\xd2\x7d\xfd\xf8\x0b\x07\xd7\x14\xe2\x81\xec\xa3\xca\x3d\xed\x14\x76\x13\xbc\xd1\x1e\xc3\xe3\xd7\xcb\x71\xa5\xfb\x7e\x53\x2e\xfc\xbb\xb0\x32\x24\xac\x8d\xcb\x0b\x97\x7d\xd9\xe6\x3d\x2d\x85\x33\x7c\xf0\x8e\xe2\xdd\x0c\xf2\xbe\x42\xd3\x68\x40\x3e\x42\x2a\x33\x0f\xf2\x5b\xed\xb0\x7a\xd9\xde\xc8\x5e\x5e\xbc\x6c\x6f\x01\xb4\x3f\xd0\x12\xe3\xe3\xeb\xe9\x30\x9e\x86\x53\xf7\x7c\x38\x76\xcf\x2f\xeb\xf4\xd1\x37\x4f\x99\xd8\xbb\x69\xe7\xf9\xae\x02\x70\x8d\xfb\x9a\x3a\x35\xda\x3b\x24\xb2\x50\x3d\x7f\x42\x1d\x02\x66\xe8\xc7\x63\xbc\x77\xd5\x18\x8e\x97\x5f\x4f\xef\x56\x54\xce\xa8\x72\xf5\x98\x79\x8d\x1b\xe8\x45\x2c\x46\x20\x79\x05\x06\xa9\x67\x6a\x70\x9b\x52\x3f\x29\x20\xbd\xd9\x83\x80\xd2\x61\x1e\xf3\xb9\x9f\xe4\xff\x2d\x48\x66\x30\x33\x89\x3b\x63\xd2\xfc\x67\xf2\x10\xda\xeb\x73\xd1\x5d\xed\x5f\x2b\xea\xf4\xf6\x72\xe2\x24\xb8\x2d\x86\x69\xe0\x6e\x6f\x22\xdd\xf4\xb0\xd1\x4f\xab\x73\x36\x7e\x0a\x71\xaa\xfb\xc7\x46\x82\xbe\xac\xad\x77\x1d\xcc\xc8\xf1\x89\x8c\xbd\x17\x0a\x62\x1c\xb1\xb2\x2e\x17\x7b\x73\xc9\xcf\x75\xf1\xf8\xfd\x38\xbc\x3f\x96\xe5\x8c\x09\x76\x39\xb7\x72\x05\xc8\xb2\xb8\xd7\xdc\xf8\xf5\xb1\xa3\x90\x22\x4e\x8f\xdc\x7f\xa8\xa3\x2a\x8b\xd0\xcd\x4d\xc4\x8d\x75\x5b\x8c\x1c\xc2\xe9\xec\xe5\xbd\x67\x24\xef\xb2\x34\x6e\xbf\x31\x59\x5c\x29\x4c\x8c\x53\xd9\xbc\x76\xfb\xba\x98\xad\xdb\x38\xcc\xf2\x77\xed\xf1\xb1\xbe\x2e\x66\xab\xd5\xf0\xdb\x3a\x95\x4f\x67\xbf\xdb\xd7\x8f\x1d\x34\x3b\x8e\xe3\xe1\xc7\xb7\xd5\x8e\xf8\xe6\xc0\x9c\x16\x13\x11\xd3\x12\xad\x8c\xc6\x9a\x85\xab\xe9\x83\x13\x3b\xba\xc4\x40\x64\xb6\x5c\xad\xc5\xb5\x80\x39\xa7\x06\x75\x49\x39\x67\xae\xce\xce\x0c\x5a\x0e\xaa\xd4\xce\xa2\xd0\x59\xfa\x89\xab\x09\x5b\x78\x9a\x0d\xda\xfc\x1e\xfc\xf4\xf4\xeb\x70\x1f\x64\x11\xfa\x1b\xdc\xfd\xdd\xdf\xf2\x9d\xad\x79\xd8\xb8\xc4\x1f\xd5\x63\xff\xe4\x7a\xf4\xa1\xee\x7b\x7c\x3a\xc8\x9f\x1b\x5d\xb8\x3c\x38\x43\x8b\x74\xbc\x3a\xad\x05\x5a\x44\x7f\xfd\xa3\x02\x44\x78\x51\xf1\x52\xc8\xbb\xa4\xaf\x95\xaa\xf3\x73\xf5\x3d\x1c\x87\xe7\x77\xeb\xcc\x27\xec\xd6\x7b\xf1\xd6\x7d\xaa\x7e\xe5\xbe\xd3\x56\x14\x28\x6b\x38\x9f\xc4\x5c\xa7\xb4\x82\x8f\xd7\xfb\x5e\x7a\x6c\x51\x26\xd9\xc4\x59\x59\xe7\x7b\x53\x0c\x13\x02\x80\x26\xa0\xc0\x53\x61\x14\x98\x3f\xe9\x9f\xab\x29\x50\x41\xcc\x9c\x10\xac\x39\xfa\x81\x53\x8a\x56\xf5\xac\x7e\x71\xaa\x03\x42\x11\x62\x25\x74\x61\x49\x0d\x2c\xb4\x6d\xe2\x80\x30\xf2\x83\x33\x59\xae\x4c\x0c\xb4\xeb\x85\xab\x4f\x5e\x81\xad\xdf\xb6\xaa\xb5\x38\x38\x65\x4b\xe7\xd4\xa5\x84\x4c\x38\x97\x55\x62\x5c\xb4\xf1\xd4\x90\xec\xc1\x67\x47\x9a\xbc\x7d\xac\x1c\xd9\x98\x90\x27\x75\xc7\xab\x73\xb9\x6b\x44\xfa\xb1\xa9\xda\x8f\x4d\x3d\x2c\x0b\xb0\x0d\xb8\x56\x6f\x20\xe2\xae\xc1\x99\x4d\x37\x43\x9e\x23\xdf\xf1\x9f\x66\x9e\xfc\xf1\xf8\x74\xf8\x76\x39\xaf\x7c\x45\x53\xd1\x64\x40\xd2\xfa\x54\x56\x22\x51\x42\x22\xe7\xcd\x32\x41\x51\x56\x28\x3b\xb1\x10\xd6\x1d\xd6\xf8\x6e\x9e\xa3\x78\xd0\xf8\x5a\x45\x40\xb2\x8d\x75\x7e\xfe\x8b\x01\xb3\xdc\x50\x16\xc3\xb1\xd3\xd4\x4f\x81\x69\x81\xe5\xff\xd1\x08\x1e\xb4\x92\x5e\xbf\x5f\xf5\xe1\xd8\xad\xa6\x35\xfe\x3e\x43\x4e\x63\x9a\xe2\xdf\x15\xc2\x36\xce\xe0\x35\x25\x48\xb3\x05\xfa\x6c\x9c\x50\x67\xf4\xb1\x00\x85\xba\x09\x14\x1a\xff\x18\x28\x54\xc4\xa1\xe2\xc7\x31\xa1\xc3\xf1\xf7\xc3\xf1\x72\x39\xff\x5c\xd7\x70\x2a\x9c\x44\xe9\xbc\x0e\x03\xb7\x35\x18\xf7\xe4\xaf\xeb\xae\x4b\x84\xae\xf5\x26\xe9\xc2\xc6\xc1\x49\xf9\xc9\x44\x8d\xa0\x63\x11\x09\x42\xd0\x29\x17\xfb\x8f\xd3\x2b\x2c\x9e\x71\x03\x20\xbf\x75\xf4\x3f\x85\x1c\xaa\x36\x33\x6d\xb4\x99\x00\xbe\xec\x2c\xf7\x54\xdb\x5f\xce\x97\xc3\xcf\xf3\xe5\xb7\xdb\x56\x98\xcb\x57\xa4\xac\x53\x8e\xf0\x04\xe5\x07\xb8\x9f\xb1\xfd\xf8\x2e\xa7\x50\x45\x43\x52\x93\xc6\x17\xfe\xe1\x17\xba\x16\x23\x52\x81\xf5\x40\x07\xf6\x3f\x98\xd2\xa7\x30\x08\xb9\xe1\xc0\xcc\x86\x7d\x0a\x57\x63\xf6\xc7\xfd\xf0\x38\x3e\xdf\xe6\x7a\xac\x8a\xab\xe3\x40\x28\xf5\x59\xf4\xcf\xf6\xcd\x44\xe8\x3d\x71\xa0\x5a\x0e\xb4\x70\xae\xf3\x95\x3e\x72\xb8\x82\x96\xfd\x0a\xb5\xd4\xeb\x24\xdf\x32\x85\x38\x6d\x88\x57\xd1\x03\x60\xbb\xb6\x94\xbb\x03\x1f\xad\xc1\x9d\x3e\xd7\xd6\x41\xe1\xee\x82\x05\x3d\xb0\xad\x39\x47\xf1\x87\xa6\x24\x7a\xd3\x58\xe1\x33\x06\xa6\x5a\x78\xab\xee\x7f\x4f\x45\xe8\x8f\xad\x3a\x70\xf9\x94\x94\x69\x5d\x18\x40\x3c\xc8\xd4\xa5\xf8\x03\x0c\x9b\x78\xdc\x82\x3d\x17\xef\x4d\xe8\x19\x52\x5a\x48\x6f\x20\xcd\x2d\xb2\x35\x1f\x65\xb7\xe6\xac\x96\x98\x73\xc4\x4f\xe9\xc0\xfb\x8f\xfb\x32\x1e\x6e\x80\x57\x53\xd1\x4c\xbf\x9d\xed\x40\xcb\x2b\x99\xad\x29\x61\x2b\x68\x2d\x7b\x52\x1a\x63\xae\xae\x4c\x0b\x23\x84\x48\x73\x14\x22\xdd\xc8\xba\xa4\x1e\xea\xd2\xf4\x95\xd5\x76\xe8\x25\xd9\x79\xac\xf3\x7a\x87\x7c\x9e\xb6\xc3\xc2\x92\x7a\x95\xc1\xd9\x60\x40\xce\x7a\x4b\xd6\x88\x4a\x04\xfd\x51\x37\x46\x13\x70\x00\x70\x8c\xc0\xb4\x36\x7f\x2a\x11\xfd\xe3\x9e\xf7\xbd\x6a\xfe\xfe\x7d\xed\x14\xad\x25\x73\xa8\xca\x26\x80\x56\x4c\x32\x3c\x33\xc0\x61\x9e\x81\x64\x41\x59\x88\x0a\x5c\xf4\x11\xce\x52\xcd\xd9\x2c\x72\x90\x3f\x7a\x29\x61\xe7\x3b\x4d\x2e\x65\xa0\xd3\xe9\xec\xbd\x90\xfb\x0d\xe3\xe4\xcc\x36\x89\xb7\xe6\xcf\x43\xe6\xc5\xc0\x14\x34\x86\x01\x20\xc9\x06\x95\xa1\xe5\xab\x9a\xa2\x38\xb3\x25\x0f\xb1\xa8\x58\x6a\x64\x91\x55\x76\x90\xdd\xe2\x58\x68\xdd\xd9\x6b\x70\x1d\x92\x19\xaa\x16\xb9\x49\x48\xe2\x30\x0e\xf1\xde\x88\x24\x76\x0e\x7f\x31\x12\x29\x74\x4d\x66\xfc\x92\x43\x7e\x37\x3d\x16\x4d\xd1\x88\x6d\x59\xaf\xd8\x5c\x8d\xcc\xb7\xe7\x30\xeb\x1b\xf7\x30\x36\x74\xbd\x24\x4a\xf1\x6e\xba\x86\xe5\x6b\x78\xd5\x64\xf1\xa2\x46\x5d\x93\x41\x1c\xd8\xf5\x3c\x38\xc1\x9a\xac\x42\x0d\x95\xd9\xa0\x12\x6e\x88\x30\x99\x57\x4d\xe2\xbd\x46\x94\xcd\xae\x97\xbb\xf8\xf1\x5f\x71\x89\xab\x77\x0f\x1c\xc0\x37\x51\x59\xea\x80\xd4\xa1\x85\xa8\x81\xbc\xa2\xf6\xf1\xa3\x03\x45\x20\x34\xee\x7d\x87\xb6\x11\x6d\xab\xa0\x9a\x34\xfe\xe3\x3f\xe4\x0c\x52\xea\x8f\xe8\x3f\xdf\x1d\x0f\x7f\x6b\x7f\x24\x5c\x22\x2d\x2e\x01\x42\x34\xaa\x25\x13\xb4\x5b\x1e\x94\x8b\x4b\x08\x7e\x95\x2b\x0b\x50\xf1\xdf\xd4\x1d\x0f\xa3\x03\x71\x0d\x3f\xac\xfc\x12\xc8\x31\x54\x6a\x34\x89\x7e\x19\xa6\x5f\xc2\x97\x83\xe6\x78\xff\x87\xfb\x40\x88\xf3\xe5\xf9\xf8\x75\x38\x21\x2f\xf8\x16\x58\x72\x7f\x8c\x55\xae\xb4\xf2\xa1\x30\x98\xcf\x0e\x0e\x98\xc3\x90\x66\x08\x07\x6b\x7c\xd3\x36\x1c\xa4\x18\x6f\x65\x9b\xfb\xa1\x71\xb4\x25\xeb\x2a\x19\xa4\x80\x7d\xc1\xbd\xdf\x89\xe0\x6e\x02\x61\xb0\xa7\x1a\xf9\x99\x98\xc3\x21\x17\x66\xa6\x40\x51\xc6\xd0\xc6\xce\x46\x95\x94\x47\x88\x3a\x0a\x85\x3b\x00\x7d\x8c\x1c\x72\x8e\xb5\x43\x1d\x34\xa9\xb4\xb0\xca\x60\x2f\xc2\xd9\x7e\xb4\x3f\x5e\x04\xf1\xa3\x07\xc0\x97\xac\x04\xe1\x2a\x8e\xca\x00\x84\x8b\x8d\x13\x19\xc7\xde\x2b\x03\xc9\x40\x3f\x65\x86\x72\xca\x1f\xc3\x93\x23\x66\xae\xac\x39\x06\xe6\x0c\x3d\x8e\x43\x98\x30\xd1\xa3\xd1\x53\x53\xd1\xb6\x51\x0e\xcb\x97\x75\x24\x9b\x54\x24\x45\x15\xa1\x7e\x8b\x1f\x61\xc3\x68\x8d\x0a\x00\x24\x66\xbd\x2d\xc6\xf5\xfa\xc5\xa5\xa0\xac\xce\x43\xe3\x40\x56\x6a\x94\x87\x4c\x8a\x51\xb8\x85\xf0\xef\x48\xe6\x6c\x0e\x0f\x22\x61\xc9\xbc\x82\xd4\x52\xd3\x0f\x83\x8a\xf4\xd0\x45\xf9\xac\x4a\x97\x0c\x18\x5c\xd7\x7b\xe1\x4e\x0b\x0a\x9a\x5b\x19\x4c\xcf\xbb\xc3\xef\x72\x7c\x7c\xbe\x19\x75\x5c\x34\x2d\xca\x33\x95\x06\xc4\x03\x84\x1d\xff\x1f\xb3\x29\xe0\xac\x35\x31\x5c\x1b\x13\x39\xca\x08\x35\x67\x67\x69\xf4\x79\xb0\x3a\xf9\x3c\x62\xc5\x67\x72\xf4\xea\x62\xb1\xc1\x40\x5e\x56\x23\x18\x0d\x6f\x78\xa6\x53\xad\x55\xf8\x83\xfe\xf6\x99\xdd\xee\x34\x37\xe5\x87\xb1\x91\xb3\xe4\xff\x9d\xc6\xfb\x79\x63\xcd\xfc\x9c\x6c\x19\xe7\x2d\x50\xab\xec\xda\xe7\xfc\xc4\x1a\xcf\x36\x10\xa6\x0c\xcc\xbb\x86\x04\x28\x1d\xaf\xc2\x2b\x81\xed\x4f\x92\x98\x85\x59\xa8\x1a\xb2\x19\x59\x0d\xce\x8f\xd8\x94\x3f\x4f\x97\xc3\xe3\xd3\x8f\x97\xe7\xdb\x47\xac\xa5\x73\x96\x01\x1b\xde\x73\x82\x67\x8d\xcf\x6f\x1e\x98\x2d\x75\xe8\xd3\x70\x79\xe4\x4c\x3e\xab\x7b\x36\xd6\x5d\xdf\xd0\x1f\xbb\xb3\x1f\x3d\x8e\xf0\x0b\x8d\x37\xb2\x11\x5b\x07\x25\xef\x5a\x2b\xaf\x6d\x47\x6f\xa7\x0b\x08\xd9\x67\x84\xf1\x1b\x83\x84\x61\xde\x58\x54\xe2\xf1\xe9\x9f\xf1\x96\x8f\xbc\xd3\x0a\x51\x75\xcc\x03\x31\x43\xba\x99\x45\x63\x3a\xbc\x3e\x88\xc3\x07\xc8\x13\x31\x99\x30\x8b\x88\xb3\x93\x66\x25\x3f\x3f\xae\x25\xec\xe5\xbd\xa6\x69\x21\xe3\xa7\xc6\x84\x29\x3e\x27\x81\x49\x68\xf4\xec\xb3\xbf\x5c\x4e\xbf\x3e\x1d\x9f\x9e\x0f\x3f\xcf\xdf\x8f\xab\x64\xf4\x9b\x03\x4b\xb2\xc0\x59\x20\x02\xcc\xee\xb4\xc3\xa2\x4f\x6f\xaf\xac\xda\xbe\xce\xa8\x5b\x53\xed\x75\xb4\x52\x1a\x1e\xb2\x8e\x65\x49\xab\xf4\x04\xcd\xac\x53\x5a\xaf\xf8\xab\x47\xc4\x2e\xb2\xc4\x2e\xc6\x1b\xa6\xc4\x71\x09\x51\xd9\x19\x09\x97\xd3\x78\x7a\x7a\x3e\x00\x6c\x33\xac\x2b\xba\x3a\x30\xb9\x98\x90\xdb\xec\x2d\x03\x69\x19\x8d\xcb\x9b\xaf\x46\x76\x5f\xc0\x4b\x7f\x20\x5a\xe1\x6f\x13\xa1\xe7\xd9\xcb\x2f\x42\x30\x2b\x6f\xfe\x9d\x0a\x74\x9d\xbd\x3e\x99\xf4\x7c\x79\x5c\x33\x5a\xf2\xf7\x89\x5d\x00\xc3\x85\xaa\x43\xdb\x71\xc6\x30\xcc\x99\x57\x55\xbb\x59\xf2\x51\xc6\x59\xc3\x59\x59\x3b\x4e\xa9\x09\x6c\x26\x8c\x35\x8d\x45\x21\x52\x86\xb7\x5e\x27\x1e\x18\xf0\x0f\xd0\x5f\xcc\x2f\xa3\x03\x2b\xe9\x6c\x24\x71\x22\xee\x00\x67\xc9\xfc\x4c\x10\x27\x62\xb6\xaa\x75\xa6\xe6\xee\x76\xf0\xf2\x78\xbe\x3c\x3e\xff\x7e\xe8\x1f\x7f\xed\xd7\x8d\xb0\x2c\x9f\x3a\xdc\xfb\x8c\xbd\x36\x3a\x3e\x43\x68\x56\xbc\x60\x7a\x6b\x60\x3a\x1e\x98\x4e\x06\xe6\xaa\x1b\x3f\x33\x30\x5f\xbe\x0e\x6b\xd2\x3f\x29\x90\x4e\x22\x4b\xd0\x74\x16\xe8\x20\x1f\x54\x32\xf4\xaf\x81\xbc\x16\x99\x01\xb0\x50\x9c\x60\x9f\x42\xbe\x36\xe5\x2d\x60\x17\xc3\x03\xde\x92\xde\x16\xf0\x00\x35\xf4\x06\xa6\x18\x31\x55\x11\x04\x61\xdb\x1c\x73\xa3\x66\x87\x5b\x4e\xd7\x6d\xca\xa1\x2b\x72\x41\x34\x82\x31\x4c\x7a\xc6\x74\x6b\xd8\xb1\x56\x2b\x70\x8a\x84\x94\x29\x12\xf2\xfa\xf0\x4f\xfb\x71\xa9\xcd\xc7\xfe\xb6\x17\xc6\x7e\x29\x5f\x0f\x4d\x30\x3c\xe4\x50\x3d\x63\x02\xa1\x46\xb4\xac\x32\xc0\x82\xc8\x45\x23\x2d\x4c\x02\x1e\xa2\x8a\xb4\x33\x10\xfe\xcf\xcb\xe9\xf2\xfb\xe1\xeb\xcb\xe3\xf0\x6d\xb5\xea\xdf\x94\xf3\x70\x8d\x42\xf3\x65\x0c\x5c\x49\x4d\x80\x59\x2e\xe6\xb9\xb1\x2a\xf2\xc3\x54\xc5\x8e\x7f\xb9\xaf\x79\xa7\x59\xc6\xe7\xc7\xf3\xd3\xe1\xf8\x34\xfe\xbc\x6d\x98\xf5\x91\xd9\x0b\xc8\x31\xb6\xad\x71\x0e\x6c\x0f\xa7\x56\x48\x80\x74\x9d\xf5\x83\x64\x85\x2a\x5a\x5f\x44\x42\x5a\x62\x0b\xc0\xc5\x64\xbf\xf5\x82\x38\xda\x00\xb0\xc3\x1a\x42\xda\x1b\xe9\x7d\xe2\x79\x64\xb8\xcb\x5e\x95\x5f\x4e\xeb\x8a\xbe\x2c\x93\x55\xe8\x32\x22\xbc\x85\x25\xc9\xc9\x92\xc4\x76\x91\x4c\x9f\x8c\x08\xc9\xe1\x9f\xc3\x02\xfc\x21\xa8\xc5\x6e\x3b\x1c\xbe\xbf\x8c\xab\xf9\x71\x55\x3a\x75\xb9\xcb\x7e\x36\x17\xb1\x94\x94\x37\xf8\x00\xc6\x37\x59\x81\x59\xb4\x22\x80\x2c\x92\x1a\xe1\x6a\x52\x00\xe2\x66\xf2\x73\x9b\xea\xe7\x36\xc2\xbc\xb4\xe1\xce\x66\xad\xe0\x0d\x07\xf8\x7e\x55\x11\x2a\x79\x3a\xfd\xf7\xf3\x5d\x75\x17\x47\x38\x99\xd1\x58\x46\xe1\xd5\xe0\x86\xf8\xe6\xa9\x1a\x92\xe5\x31\x54\x34\x49\x4a\xdb\xa4\x52\xf6\x9e\x54\xca\x32\xa9\xd4\xdb\x1c\x2e\x13\x95\x36\x13\x9b\xcf\xd4\x2f\x56\x4f\x78\x9f\xbf\x8f\xc3\xe5\x72\xfc\xf6\xb8\xc4\x81\xcb\xf7\x29\x63\xbf\x5a\x0c\x4e\xac\x34\x69\x7c\x79\x26\x40\xef\x7c\x81\x44\xb5\xd8\x1e\xdb\xb4\xaa\xe3\xbb\x74\xac\xaf\x5f\x90\x94\x62\x06\x9b\xb4\x32\x86\x16\x03\xd5\xb8\x38\x34\x26\x45\xd5\x24\xd3\xdb\xa0\xdf\x25\xfc\x76\x42\xf8\x7d\x27\xb0\x7f\x4b\xf8\x5d\x5b\x09\xe4\xa1\xca\x79\x65\xa3\xf2\xef\x63\x31\xd0\x22\x87\xaf\x2f\xcf\xcf\xe7\x27\x8e\xed\xac\x62\xaa\xdb\x87\xff\x73\x42\x92\x22\x8b\xb0\x49\x1b\x30\xae\x00\xe1\x52\x24\x48\xf2\x09\x39\x3e\xa3\xca\xd5\x1e\xcb\xc1\xaa\xad\x5e\x9e\x76\x1a\x73\x71\xc2\x7f\x4a\x73\xbe\x5f\xf9\xe7\xd3\xe1\x72\xab\x3b\xb7\x2a\x9d\x36\x11\xd6\x38\x7e\xd5\x0d\x4b\xdd\xc2\x8e\x8c\xfa\x75\x8a\xf2\x06\x32\x9c\x92\x32\x3e\x75\x5e\x79\x96\xc1\xa2\x89\x76\x68\x5c\x06\xcf\x37\xb2\x53\x8c\xc1\xbf\x41\xe9\xa1\x31\xec\xee\x4c\x57\x40\x20\xfe\xe8\x02\x56\x4a\x4d\xa6\x5c\x27\x5e\x55\xe6\xcb\x3d\xe6\xfc\xcb\xa9\x3b\x3d\xfe\x58\x4e\xc6\x53\x49\x85\x0b\x03\xde\x18\x6b\xc4\x94\x27\xe1\x3f\xfb\x05\x60\xa6\x3a\xa3\x37\x35\x18\xfb\xa7\xbf\x0a\x42\xc6\xf2\xbc\x4c\x53\x63\x33\xad\x58\xd4\x8b\x0e\x41\x69\x39\x60\xe7\x03\x4c\xb7\xb1\xfe\xc5\xc3\x5e\xb3\x3d\x01\x41\x7e\xbe\x8c\x37\x8d\xb7\x28\x9f\x0c\x59\xc4\x13\xc5\xe1\xd6\xb0\xc7\xad\x61\x97\x5b\x23\x3e\x37\xd6\x29\xcc\xf0\xcf\xc1\x12\xa3\xd7\xc2\xf9\xb4\x70\xbe\x2d\xfc\x6a\xe3\xe4\x88\xc3\x37\xf6\xcc\xb1\x33\x6e\xf6\xc4\x29\xf8\xf0\x58\x42\x64\x33\x8b\x72\x36\x21\x6f\xd8\x1b\x16\xf1\x35\x6c\x8e\xb1\x1f\x36\x75\xaa\x5e\x67\x4f\x72\x23\x2e\xc8\x82\x19\x6a\x97\x1f\xfa\xa6\xc2\x9f\x81\x56\x70\xa2\x52\xc2\xfb\xfc\xbd\x41\x79\xbe\x7c\x3b\x5c\xcf\x8f\xdd\xe9\x70\xbe\xae\x2c\xe2\x8d\x63\xb2\x36\xe6\x8a\x21\x6a\x72\x04\xa1\x8a\x35\xe0\x43\x02\xa2\x1f\x34\xa1\x34\xa9\xc6\xac\x68\x17\x86\xc4\x43\x4b\xbb\x3b\x17\xb2\x72\x25\x77\x9e\xe3\x75\x30\x05\x24\xb4\x18\xe8\xf5\xa5\xe9\xb8\x33\x20\x10\x34\x59\x41\xd3\x28\xbb\xc9\xb5\xf7\x07\x49\x30\x75\x82\xf8\x23\x7c\x5c\x15\x06\xa2\x18\x15\x32\xbb\xb2\xdf\x27\x84\xdc\x69\xc1\x6f\xa7\xd3\xf7\x55\xb3\x71\xc1\x6c\x47\x18\xd6\xf4\x6c\x8c\x2e\x03\xe4\x07\xf4\xc0\x96\x24\x68\x0c\x5b\xed\x52\x56\xce\xb6\xd1\x66\x0c\xa6\xd6\x19\xda\xc5\x86\x56\x63\xe2\x4a\x56\xb1\x0b\xba\x8d\x19\xfa\x52\xb6\x2d\xd9\x21\xc6\xd9\x96\x08\xc6\xc9\xd0\xba\x44\xf3\x55\xa2\xf1\xc5\x5d\x60\x03\xdd\x2a\x6a\xdc\xf5\x46\x43\x84\x86\x8f\xd8\x09\x78\x39\x5d\x8d\xc5\x23\x1a\x31\xed\x35\xde\xf2\xc7\x8c\xd8\x87\xe0\xeb\x38\x6d\x6a\x94\x15\xec\x39\x84\x7f\xfe\xcc\x45\xa0\x8c\x92\xfd\xb6\xd1\xe3\xfc\xa7\x55\x4e\xf0\x93\x1b\x95\x13\xbc\xec\x3b\xfa\x46\x9d\x45\x1a\x24\xc7\x54\x10\x37\xcf\x03\xe0\xa0\x61\x40\xee\x2c\xbd\xe7\x26\x29\x67\x94\xcd\x00\xe4\xe5\x87\x0d\x2f\x94\x08\x98\xd5\xd0\x20\xab\x2b\xed\x98\x0a\xa7\x6f\xe7\xf5\x78\x9a\x64\xb6\x0b\xdd\x26\x0e\x29\x2a\xe0\x6a\x8b\x45\x80\x61\x48\x59\x41\xa5\x44\x23\x72\x18\x69\x1a\x60\x92\x08\xd0\x88\xb0\xb8\x25\x15\xc1\xcf\x10\x91\x5b\xcf\xb9\xd3\x26\x76\xb6\x40\x9c\xcb\x38\x65\x02\xb5\x83\xa5\x4f\x79\xd7\x34\xf7\x98\xf1\xf0\x0b\xef\x3c\xf4\x2f\x97\xd3\xca\xe7\x31\x95\x08\x2d\x62\x52\x2e\xa5\x01\x09\xdb\x0c\xf4\x00\x18\x08\xc8\x01\x6c\xe9\x40\x48\xc2\x6f\x5d\xd1\x58\xc8\x11\x34\x6a\x6a\xd4\x68\x06\x6a\x2d\x30\x5a\x1c\x47\x0a\xe0\x6e\xd2\x9e\x05\xdf\x0c\x80\x5e\xbe\xc3\x12\x9e\x98\x87\x53\x7e\x1c\xf9\xaf\xae\x81\x25\x05\x01\x33\xb6\x8d\x30\xb1\x8c\x29\x8a\x59\x85\xaf\x4c\x1c\x0b\x54\x71\x51\xa2\xbc\xbd\xd3\x06\xdf\xcf\xd7\xd3\xaa\x09\xb8\x60\xde\x6b\xbb\x50\xe1\xaa\x15\xbe\xfa\x81\x2b\xde\xf3\x92\xde\x94\x2f\x01\x4b\xd7\x29\xed\x7c\xca\x3a\xff\x67\x6d\xbd\xe5\xa3\x6d\xc0\x18\xdf\x38\xfe\x9f\x62\xe6\x7e\x11\xf8\x6b\x5f\x9b\x18\x6d\xfd\xb1\x6e\xfc\xe5\x72\xfe\x7e\xb8\x75\xc7\x6c\x1c\x9b\xa3\x23\xd5\x21\x20\xfb\x5f\xf6\x78\xff\xe7\xb1\xa5\x4a\x1d\x2f\xa7\x6f\x37\x72\xa7\xb7\x07\xa6\x51\x40\x4b\xf6\xfd\x64\x7a\xab\xac\xf4\xb6\xf3\xe5\xf5\x6f\x48\x01\xc6\x60\x32\xb1\xa3\x12\xad\x4c\x01\x4b\x32\xbd\x72\x2c\x2c\x01\xe8\x51\xf1\xd3\x54\x83\x96\xe6\x63\x63\x43\x67\xc7\xc8\x25\x74\xb2\x4b\xaa\x78\x06\x89\x47\xad\xa4\x74\xcf\x10\x46\x5b\x8d\xfd\xf9\xc7\x8f\xc7\xa7\x5f\x0f\xdd\x3a\x47\x62\xfb\xf0\x2c\x0e\x60\xb7\x22\xdf\xe3\x8d\x5f\x7f\x5c\x39\x0c\xc6\x95\x4a\x84\x73\x96\xa5\xcc\xc5\x1e\xeb\x6d\xde\x62\x2a\xeb\x38\x23\xdf\xb0\x06\x0a\x6b\x9d\x80\x81\x08\x33\xba\xb0\xb3\x88\x0b\x15\xec\xb1\x64\x7b\x04\x4e\xdc\x33\x3a\x0b\x2f\x47\xdf\x04\x2d\x42\x94\x01\x63\xd7\xb1\x54\x0a\x3c\xfe\x41\x35\xe1\xf5\x8b\xcf\x41\xd9\x05\x8e\x24\x1a\x15\xcd\x43\xc7\xc2\xa2\x1c\xb0\x20\x1b\x01\x88\x8d\xbc\x95\x84\xce\x7c\xdd\x09\x21\xd5\xac\xe8\x3e\xb4\x80\x16\x5a\x97\xca\x56\x9a\x36\xc4\x19\x01\xa5\x09\xc8\x5c\x2e\x2a\x38\xb0\x33\xd1\xce\xb0\x78\x55\xfc\x40\xd6\xde\xde\xe2\x7e\xbe\x7c\xbb\x31\xb3\xa5\x64\xda\x05\xea\xb0\x92\x4a\x40\x6e\x83\xe4\x0e\xde\x32\x17\x49\x92\xe9\x95\x73\x71\xa6\x9f\x70\x39\x87\xbd\x3f\xcc\x74\x74\x39\xfd\x38\x1d\xd7\x43\x8a\x0b\x6e\xb1\x9d\x95\xe5\x9f\x37\x71\xd1\x57\xc6\x20\xfc\x2b\xe1\x1d\xcf\x33\x25\xc2\x0a\x39\x4e\xaa\x22\xf4\x8b\xe8\x25\xfe\x39\xed\xa7\x39\xbb\xee\x23\x4f\x77\x03\x87\x5d\x16\xce\x3a\x83\x85\x73\xe7\x72\x90\x14\xba\xc1\x3b\x6c\x9f\x0c\x1e\xfb\xf5\xdf\x50\x95\x35\xfe\xb8\x16\xcc\x9a\x15\x7a\xb1\x0a\x36\x62\x96\xd0\xdc\x3c\xae\x56\x3c\x91\xd2\x95\xa5\xb2\xae\x7d\x33\xc8\xfd\xd6\x50\x1a\x05\xe1\x5e\x93\x53\x96\x60\x1c\x90\x37\x82\x22\x4a\x66\xbd\x41\x3e\x01\x28\xdf\xaf\xce\xc1\xe8\xbb\x1a\x1d\xfe\xf7\xff\xfa\x6f\x67\xfe\x8b\xfe\xd5\xff\x35\xd1\x08\x58\x65\x32\x23\xb6\x5a\x1b\x83\x53\xb1\x75\x36\x18\xe0\x36\x69\xb3\x90\x84\x6f\x1a\x6f\xdb\xe0\x55\x18\x2d\x8b\xfa\xf2\x16\x4f\xaf\x24\x7b\x6d\x9b\x82\x8d\xb4\x15\x6c\xad\x31\x99\x39\x4e\x8c\x4a\x93\x0e\x34\x2b\x23\x35\x0e\xd8\x32\x3f\x8a\xd4\x92\x53\x0d\xdc\x0f\x23\xbe\xd2\x37\xda\xbc\x78\x65\x41\x56\xdd\xc4\x0a\x67\x82\x46\x21\xeb\xe2\xba\xb1\x0a\x11\x1b\x10\xe4\x15\x3e\x4a\x27\x8d\x13\xfe\xc9\x8e\x4d\x54\x8c\x70\x8d\x0f\x5d\x13\xdb\xe4\xbd\x76\xca\xb5\x2e\x59\x8d\xcd\xbf\x29\x6d\xf2\x11\xce\x01\xa7\xaf\x08\xbc\xb2\x48\x1c\xcd\x2c\x69\x48\xca\xb8\x11\x5c\x6e\x5a\xc5\xb1\x28\x90\xa1\xd0\xce\x49\x33\x71\xd5\xc8\x7b\x16\x3c\x02\x64\xa6\xf8\xd1\x98\x2e\xcb\x32\xfd\x09\xd0\x1b\xce\x89\x04\xb3\xbe\x26\xcd\x30\xb5\x78\x35\x61\x70\x19\xe2\xc6\xd7\xa6\x54\xf3\xe8\xaf\x18\x6a\x80\xa6\xac\x86\xda\x03\x8f\xb5\xbc\x18\x6b\xf9\xaf\x1b\x6b\xee\x8d\xb1\xe6\x6e\xc7\x5a\x9c\xc7\x5a\x8a\x01\x83\xad\x58\x13\x78\xb0\x99\x3a\xd8\x98\x89\x66\x63\xb0\xd9\x9b\xc1\xe6\x5c\x00\x17\x43\x1b\xa2\x4e\x01\x83\x4d\x4f\x83\x2d\x4c\xab\x5e\x1d\x6c\x33\xab\x0f\x06\xdb\xa4\x6a\x4d\x83\x2d\xfe\xc1\xc1\xd6\x35\x46\xb7\x86\x3d\x55\x26\xb6\xc6\x17\xa7\x7c\x1b\x92\x67\xf3\x42\x65\x60\xf2\x70\x2b\x5c\x82\xae\xe5\x50\x57\x1a\x11\x75\xc4\x19\x1a\x4e\x54\x30\xe0\x0c\x1a\x47\xc6\xa8\x38\x66\x05\x26\xc2\x3f\x32\xe2\x68\xa0\x5a\xdf\xe5\xd6\x98\x02\x5d\x04\x13\x94\x6f\x4b\x28\xd8\x5a\x2a\xe3\xae\x68\x11\x6e\xd2\x71\x12\xf9\xee\x1b\x63\xc6\x05\x05\x52\xfd\x1b\x21\xb3\x86\x66\x53\x5a\xa8\x4b\x9b\x8b\xa3\x49\xb9\xcd\xa6\x24\x0f\xdf\x6b\x56\xd6\xa1\xfb\xf0\xd0\x5a\xd9\x87\x2e\xb7\x31\xd9\xc4\xcc\xf5\x6d\x74\x60\xa5\x6f\xb3\x09\x85\x01\xae\xb1\x0b\xad\x8e\x3e\x67\x2a\x0e\xce\x7a\x0f\x61\x75\xdb\xd2\x4e\x97\xfe\x2a\xd7\x26\x2d\xbb\xad\xfe\xcd\xdd\x19\x30\x71\x24\xd5\x84\x0e\xc7\x4b\x6d\x99\x3c\x02\x88\x0a\xae\xa6\x91\x99\x37\xd1\x3e\xa3\xc8\xba\x45\x60\xd7\x13\xcf\x47\x06\xd7\x5a\x4d\x1f\x2c\x55\xa6\x69\xfa\x48\x8a\x5b\xd6\x77\x4d\x68\x43\xd6\xb4\xe3\x6f\x53\xd1\x1e\x1c\xa3\xc6\xb5\x41\x67\xcf\xae\xc5\xde\xd0\x06\x72\xac\x72\x74\xfe\x61\x9c\x86\x6b\x6f\xcc\xc8\x9c\x49\x16\x9f\x56\xf9\x2b\x37\xf3\x46\xf3\xbb\xab\x09\x7d\xfe\x5b\x67\x83\xbf\x75\x32\x08\xdb\x73\x41\x98\x66\x81\x60\x95\xb5\xf4\xe2\xb4\xa9\x58\xed\x55\xa3\xdb\x64\x62\xe6\x25\xa7\xb1\xad\xd7\xd6\xf1\x9b\xeb\x45\xe0\xdd\x2a\xc9\x47\x80\x2c\xe5\x10\x94\x4f\x7d\x20\xf3\x81\x4c\x0a\xb2\x39\x69\xac\x8c\xb0\x7d\x95\x1d\x9d\x32\xca\x29\x37\xca\x54\xd2\x7b\x50\x5b\x15\xd6\xd8\x53\x0d\x4d\xe8\x0d\x46\x5a\xec\x7c\xeb\x5d\xf4\x34\x04\xe4\x0f\x3a\xcb\xb5\xd1\x66\x0f\xe7\x2f\xe3\x78\xd5\x6a\x0c\xf1\x98\x4b\xfc\x85\x13\x24\xf2\x5b\x4b\x90\xe1\x25\x88\xa1\x0a\xfe\x01\x83\xa8\x84\x88\x31\x94\x32\x86\x90\x69\x91\xd9\x49\x4b\x51\x6f\x58\xfb\xbb\xf5\xda\xfb\xa8\x42\x6b\x4b\xd0\xac\xfa\x0e\x30\xaf\x5e\xcd\x8e\x41\xf9\x69\x76\x34\x8e\x1a\xc1\x0f\x64\x8d\x8f\x32\xab\xd1\x60\xf2\xff\x9e\x61\xf4\xf0\xa9\x71\x74\x6b\x8e\xfd\xbe\x80\x72\xd1\x66\x94\x13\x61\x8d\xb2\xc6\xd7\x84\xdf\xa0\x18\x9c\x11\x58\x92\x96\x99\xb6\x8a\xec\xf1\x74\xb9\x36\x39\x0d\x15\x77\x39\x54\xaa\xf1\x3d\x7d\x24\xdc\xfb\x06\x54\xb8\x28\x9b\x8c\xdc\xbf\xfa\x99\xd8\xc4\xf5\x66\x4d\x18\x1a\xd8\x26\xbe\xfb\xc1\x8e\xa8\xf1\xe5\xf4\xe3\x7c\xb3\x39\xe5\x82\xe9\xf1\xad\x0b\xdb\x8a\x61\xc6\xbb\x0e\xc1\x04\x24\x57\xd3\xbf\xc8\xcc\x74\x10\x1c\xa1\x6f\x89\x65\x9a\x41\x69\x8c\xa4\xaa\x11\x2f\x40\x56\x2c\xb8\x42\xfb\x54\xe8\x8e\x0d\x9c\xc9\x6c\xe8\xfa\x51\x0f\x4d\xfd\xda\xcf\x5f\xe9\x20\x52\x7f\xf9\x6f\x84\x19\xf7\xab\x75\xf8\x71\x39\x7f\x1d\x6e\x5c\xfe\xeb\x03\x73\x35\x0d\xa7\x68\x02\x41\x10\x27\x4d\x45\x1a\xaa\xb3\x86\x1a\x17\x1b\x15\xfd\x20\x09\xa7\xf8\x6c\x68\x1f\xd8\xf8\x1d\xba\x84\xcb\x69\x7c\x3e\xbe\x5c\x8e\x4f\xeb\xe6\x9e\x0b\x27\x67\x12\x07\x2d\x1d\x22\x59\x19\x28\x79\xc5\x09\xa5\x11\x24\x20\x40\x60\x04\x7f\x65\xbf\x99\xe3\x6c\x45\x10\x04\xb3\x74\x5e\x27\xa2\x55\xf4\x64\xd9\x72\x9e\x02\xe0\x6a\x85\x49\x44\x4c\xb1\x1d\x9d\xe0\x70\xc8\x6b\x7c\xe4\x20\x1c\xc3\xcc\x39\x4c\x3b\xa7\xe5\xd7\x3d\x4f\x62\xad\xc5\xe1\xfb\xe9\xe9\x65\xb3\x7e\x72\x84\x2b\x69\x92\xb2\x31\x22\x75\xa2\x71\x66\xa8\x61\x5f\xa6\x3b\x74\x12\x08\x46\xc1\xea\x90\xd3\x83\xd5\x59\x59\x9d\xbb\xc6\x04\xe5\xb0\x27\x48\x64\x9f\x2b\x63\x5c\xe7\x8d\xa2\x79\x1a\x89\x0c\x86\xca\x12\x92\xea\x8b\x24\x2f\x18\x67\x3a\x38\x19\xe8\xff\xcc\x72\x5e\x8d\xc1\x98\x2c\xaf\x5f\x4c\x22\xab\x28\x0d\x74\x7a\x61\xa0\xb6\xe3\x74\x87\x0c\x27\x92\xd5\x03\xc3\x14\x77\x92\xe7\xa9\xc6\xe7\xcb\xe9\xa6\x0d\xce\x97\x95\xcf\xcc\x9b\xde\xd9\x6b\x53\xf4\x90\xa0\x1b\x26\x20\xbe\x38\x34\xc5\xa8\x10\xae\xc0\xbd\x0b\xae\xfb\x0d\xc1\x83\xf1\x1e\x88\x3e\xab\x10\x89\xa7\xc7\x05\x15\x00\x3d\x77\xa6\x63\xe7\x0b\xdc\x73\xde\x2b\xa3\x59\xe2\x8a\xd9\x05\x82\x06\xc8\x3c\x80\x68\x60\x9c\xd5\xa7\x6a\x41\xa5\x1f\x68\x2a\x2e\xbd\xc7\xfe\x3b\x0a\x51\xb1\x72\x43\x93\x9d\xca\xae\x67\xd6\x1b\x1d\x95\x3c\xa8\xfc\xff\x91\x06\x3b\xfc\x38\xfe\xba\xd1\x6a\x52\x3c\x73\x05\xda\xfc\x8e\xa3\x30\x56\x4f\x60\x44\x2e\x91\x24\x90\x5b\xcd\x83\x00\x1c\x05\x49\x59\xc6\x3e\xe7\x50\xf3\x94\x0c\x92\xb7\x5c\xa2\x77\x21\xd2\x92\xd8\x41\xdf\xfc\x5d\x11\xf3\x49\x25\x0e\x93\x5f\x13\x0d\x28\x7a\x5c\xea\xc0\x0e\x9f\x41\xd3\x1f\xbd\x82\xeb\xb1\xf2\xc9\xc6\x32\xd4\x35\x70\x05\x60\xd8\xa0\x62\x7c\xd8\x72\x83\x0d\x46\x4d\x6c\x8c\x2b\x25\xcf\x1d\x31\x84\xcb\xe3\xd3\xaf\x87\xeb\x79\x78\xf9\xbe\x6a\xe0\x65\x29\x7b\x1f\x5d\x02\x17\x2d\xb6\xee\x09\x72\xee\x64\x11\xa4\xc0\x43\x68\x00\xce\xa9\x0e\xcc\x58\x24\x0d\x80\xa6\x0a\xcd\x33\xa6\x0f\x46\xb9\x04\x71\xe2\x86\xad\x09\x6e\x2d\x7c\xd6\x37\x98\xae\x18\x5f\xff\x55\xb4\xfc\x0f\xff\x08\x2f\xff\x9f\xa7\xe5\x7f\xb7\x93\xcf\xe7\xd5\x42\x87\xaf\xff\x77\xf0\x91\x50\x5d\x0e\xe3\xe9\x72\x7d\x5c\x71\xae\xac\x8b\x25\x9b\x3a\x28\xe7\x23\x00\x0f\x06\x2b\x08\x52\x78\x0c\x18\x92\x21\x65\x90\x7d\x17\x69\x46\x4f\x34\xed\xf1\x11\x83\xb7\x59\x85\xba\x47\xf4\x2c\xbf\xbd\x46\xba\x8e\x2b\xde\xa4\x4e\xf2\x48\x79\x60\xd0\x32\x22\xf9\x4b\x58\x3a\xa3\x40\x22\x6d\xdc\x0d\x37\x9d\x9f\x8f\xcf\xa7\x43\xd1\x87\x6f\xa7\x5f\x2f\xa7\xd3\x78\xe8\xba\x15\xf0\x8a\x8f\xd3\x26\xa9\x88\xc3\x64\x7d\xa6\x48\x98\x38\xe5\x92\xee\x64\x76\x82\x39\x59\xe0\x76\xb0\xc9\x70\xb4\x03\x08\x89\xc4\xa9\x8b\xc6\x45\xfa\xa3\x8a\x44\x46\x47\x1b\x9e\x42\x73\xe0\x20\x29\x88\x05\x4e\x2f\x6c\x78\x14\xd4\xb8\x5d\x87\xd9\x94\x0c\xa2\x80\x69\xd6\xfb\x0e\x5a\x91\x4a\xda\x90\x16\x1c\x96\x6f\x41\x90\x27\x43\x55\x91\x4f\xbc\x82\x47\x11\xab\xea\x40\xff\x1a\x2a\xe8\x3c\x0d\xc6\xc2\x64\xc9\xfc\x40\xe9\xf5\x4b\x2a\xca\xba\x34\xd0\xf6\x27\x65\xc4\xca\xf3\xd0\xe0\xe3\xf5\x8b\x09\x49\xb9\x14\x06\xe6\xf1\x71\xf9\x61\x68\xea\x9f\xf4\x57\xd9\x25\xb8\x96\xb6\x1c\x4e\xbf\x3c\xdf\xb7\x30\x97\x4e\xd6\xa0\xb7\xa1\xab\xf9\xef\xc2\xc7\x54\x73\x14\xc6\xa6\x66\x2d\x4c\x0c\x4d\x57\xef\xba\x88\x59\x85\x16\x1f\x46\xfd\x28\x63\xe3\x88\xc4\x66\x53\x17\x25\x1a\x17\xd9\x31\xa9\x46\x18\xe8\xdf\x44\x13\x0d\x55\xcd\x28\x63\xcd\xc0\x89\xa4\x86\xb3\x66\x1d\xe7\x08\xe1\xa5\xe4\x0c\x0e\x9a\x3f\x3d\xd2\x66\x69\x86\x01\xeb\xd1\xeb\x17\xb2\x73\x68\x1f\xc1\xa3\x93\xa6\x26\x97\xb0\xf8\x07\x57\xad\x29\x84\xd7\x6d\x00\x0d\x2d\x5d\xce\x79\x5a\xaa\x81\x8a\x0d\x56\x39\xa7\x1f\x3a\xcc\xb8\xb8\x71\x61\xf3\xc8\x5a\xba\x02\x68\x0e\x3d\xcc\x2b\xe8\x83\xba\xa0\xf2\x8e\x25\xc8\xcd\x79\x79\xfc\xb5\xdf\x68\x65\x29\x96\x28\x85\x56\x26\x43\xe2\xce\x90\xb1\x00\x9c\xab\x55\x01\xe4\x30\xf0\xfc\x6a\x9e\x4a\x83\x84\x86\x72\xe5\xa7\x70\x9a\x46\x28\x74\x11\x0d\x4f\x68\x76\x60\x43\x12\x8b\x32\xea\x10\xe4\x02\x19\xe6\x1e\x33\x1e\x5a\x20\xe8\x99\x7d\x9b\x57\x55\xa3\x59\x16\x91\x6e\x8b\xd6\xd7\x2c\x8f\x18\x78\x15\xe1\x24\xe2\x2c\x11\x35\x57\x3c\xfa\xae\x29\xe1\x9a\x5d\x07\x11\x32\x66\x34\x4b\x78\x89\x24\x20\x69\xe3\x88\x34\x71\xaa\x94\x14\x50\xef\x3d\x80\xe1\xab\x12\x7c\x55\x7e\x2f\x1a\x4f\xb0\xbc\x38\x07\x86\xc6\x52\xdc\xd9\x01\x9f\x5f\x9e\xbe\x9d\xbe\x1d\xba\xf3\xe5\x69\x1d\x9c\xba\x39\x30\x91\xcb\x81\x4e\x84\x57\x6a\x47\x2b\xf5\x86\x24\x17\x67\x8a\x72\xe2\xe5\x36\xc8\x56\x08\x28\x17\xa8\xea\xa6\xc2\xaa\xef\x4b\x69\x4f\x22\xa5\x13\x35\x29\x9f\xcb\xa9\x9b\xab\x93\x39\x8c\xb6\x51\x2a\x88\xc5\x9b\x52\x41\x25\xde\x94\x0a\x9a\x62\x66\x19\x7d\x7d\xe0\x04\xe3\xfb\xb3\x25\xef\xf8\x13\xd4\xa3\x97\xf3\xcb\xf3\x6d\x53\xcf\x64\xcb\x60\xf1\xac\xbb\xc4\x19\x70\x6e\x7d\xd8\xda\x3c\xc2\x71\x72\x7f\xb6\x20\x4e\x36\x33\x9e\x59\x4e\xea\x33\x09\xcf\x39\x6c\x92\xe5\x5f\x39\x3b\xa4\xe1\x1c\xdf\x2f\x9e\x26\x19\x9a\x9a\x61\xdf\xa4\x8e\x25\xf9\xb0\x6d\xc4\xfc\xe1\x01\xf8\xa2\x29\x36\xb2\x4d\x80\xa4\xae\xa4\x4c\x82\x88\x28\xad\x85\x98\x1a\x12\x59\x75\x63\x60\xb3\x2d\x49\x7a\x98\xa7\xb7\x09\x5a\xca\x91\xe1\x42\x59\xd1\x24\x5f\xb4\x72\x71\xe4\xb7\x85\xb6\x9f\xa5\x22\xe8\x69\xc9\x65\x31\x0f\x5a\x3b\x64\x8d\x09\x8c\x13\x09\x32\x1a\x77\xdc\x31\xe7\x9f\x6b\xc5\x87\x5a\x30\xbd\x08\x92\x21\x31\xcb\x13\x5f\x41\x76\x44\x93\x6f\x30\x1c\xf1\x66\xec\x57\x8d\x49\x5f\x7d\xec\x1c\xcb\xa9\x26\x06\xe3\x53\x83\xc2\x18\x76\x5d\x6a\xa3\x8e\x39\xab\xfa\x69\x75\x6b\x82\x03\x81\x00\x30\x02\xbd\xe9\xe0\xfa\x5f\xe5\x81\x5f\x1b\xc3\x8e\x43\x93\xe1\x1a\xc4\x54\xab\x59\xd4\x10\x76\xf1\xd5\x97\x8e\xd3\xf3\x0d\x33\x03\x00\xd3\x5a\xb0\x29\x36\x58\x12\x9c\x67\x9e\x51\xea\xdc\x4d\xf9\x85\x87\xf1\x66\xa0\x8c\xab\xd1\x31\x2e\x46\xc5\x2b\xb3\xe8\x6b\x37\xb0\xaa\x58\x0f\xfc\x09\x6f\x78\x2a\x7a\xf8\xdd\x36\x1f\xc7\xc3\x2f\xa7\x35\x38\x7e\x2a\x42\xbb\xe7\xa0\x6c\x49\x13\x1f\xa1\x15\x54\x0f\x30\x84\xb6\x6f\xa2\xa9\x3a\x7f\x64\x46\x00\xb2\x87\xde\xb8\x46\x66\x70\xf5\x26\x75\x06\x16\xa7\x73\x62\x5d\xe2\x0f\x07\x26\x56\xdd\xc9\xf2\x6c\xac\x55\x36\xd1\x45\x13\xfe\xb8\x46\x8d\x9f\x1b\x88\xc4\xd0\x10\x34\xca\x47\xe5\x69\xdb\x82\xd9\x99\xda\x00\x5a\x92\xd2\x56\x89\xb9\x40\x3c\xed\x23\x79\xf9\x84\x56\xd3\xfb\x95\xbf\x1e\xfa\xf3\xf9\xb7\x95\x54\xc6\xa2\x6c\x0a\xc5\xd3\xb6\x6f\x31\xec\x24\xf1\xa6\x41\x6e\x91\xeb\x39\xc5\x68\x62\x0e\xab\xca\x8c\x4d\xf4\xc8\xe1\x42\x9a\xe5\x0c\x54\xae\x18\xe3\x71\x42\x2c\xe3\x25\xb5\x4b\xcd\x97\x71\x12\x62\x62\xc8\x06\x70\xa4\xe2\x1d\x12\xb2\xae\x8f\x24\x48\x89\x4a\xc5\xbd\x20\x40\xf4\xbd\x09\x9a\x1f\x14\x96\x6e\xcd\x3b\xe2\x77\x0a\x50\x71\x17\x1e\x36\xe7\xb2\x3d\x5a\xc5\xf1\xf8\x7c\x1a\x86\xc7\xe7\xa5\x99\xbf\x28\x9b\x49\xc9\x6d\x7e\x97\x94\x1c\x79\x9b\x21\xce\x9b\x95\xaa\x88\xcd\xf4\x55\x54\x7f\x32\xe0\xfc\x9c\x33\xc2\x46\x1a\xd3\xdc\xc0\xb5\xa0\xe3\xb5\x89\x73\xc6\x90\xc3\xbf\x31\xf4\x9c\x28\xf5\x2f\x60\xbd\x1a\x8f\xd7\x75\x33\x4d\xf8\x45\x24\xa2\x59\x0d\x58\x05\x44\x54\x40\x11\x2d\x7b\x38\xa3\xd3\x9f\x4c\x83\x12\xde\xf1\xc9\xef\x7c\xeb\xc9\xb8\xab\xf0\x96\xfe\x7b\x5e\xc9\x28\x70\x85\x77\x72\xe5\xc6\xee\xf8\xb4\xb6\x79\xa6\x92\x99\x51\xa4\x26\x2d\x98\x49\x4c\x86\x2d\x8f\x7a\x60\xb1\x16\x7b\x7a\x49\xb2\x87\x4c\xb6\x67\x75\x2a\x16\xa9\x72\x05\x5c\x1a\x7f\xc9\xb2\x1b\x33\x99\xe1\x40\xe8\x0e\x26\xec\xa5\x71\x8d\x5d\x7f\xfa\xf6\xb2\x02\x90\xce\x45\xff\x5f\xcb\x00\x1e\xbb\x7e\x4d\x9b\x56\x0b\x66\xf0\x8d\xcf\xec\x80\x87\x47\x0d\x28\x0a\x68\xe5\xe5\x41\x7c\xa2\x3a\x0c\x1c\x50\xb1\x59\x26\x05\x78\x9b\x0b\x44\x55\x90\x13\x68\x25\x12\x85\x32\x51\x30\xcc\xe6\xba\x13\x87\x1a\xbb\xcb\xe9\xf4\x04\x99\xb4\xc3\x70\x7c\xfa\x36\x76\xc7\x1f\xeb\x4e\xdb\x3c\xce\x0f\xee\x24\x7f\xd4\xda\x3e\x58\x21\xfb\xf6\xac\x90\x16\x58\xf1\x2c\x8c\x90\x45\x03\x38\x8e\xba\x56\x82\xf6\x50\x48\xbd\x4f\x30\x66\xa7\xeb\x32\x9b\x99\x2f\x3a\x7b\x09\x81\xa1\x9b\xa1\xa6\x79\x66\x7f\xde\x94\x18\x67\x2c\xfc\x46\x0a\x4c\x16\x96\x88\x89\x22\x90\x79\x7b\x8c\x17\xde\x1e\x4e\x6b\xd9\xe6\x99\x36\xfe\xe1\x2d\x7f\xe7\x9a\xc8\x7a\x81\x60\x35\x7e\x93\xc8\xfa\xc3\x5d\xb3\xc1\x42\xb4\x7d\x78\xc6\xcd\x4d\x8c\x44\xc6\x0b\x23\x91\xa9\x53\xde\x3f\x21\x07\xf6\xcf\x0c\x8e\x87\xbf\x6b\x74\x7c\xb4\x63\xe0\x0f\x78\x3c\x3f\xbd\xd1\x31\xf3\x61\xee\x98\x40\x7b\x02\x4c\xca\x7d\x72\x57\xa6\x04\x83\xeb\x05\x9b\x0a\x64\x23\x31\x9f\x20\x7c\xc0\x50\xeb\x65\x2a\x12\x67\xf5\xa6\xe2\x6e\xbc\x6b\x14\xbe\x28\xfc\x24\xe0\x54\xbc\xa3\x60\xa4\xbb\x6f\x35\x47\x7e\x2b\x5f\x8c\xc9\x8e\xb2\x51\x29\x0c\x08\x7a\x0e\xd9\xd4\x39\x06\xe4\x69\x06\x7a\x6e\x8d\x45\x38\x06\xe2\xbe\x9c\x76\xe0\xec\x43\x97\x11\xa1\x0a\x95\xdb\x1b\x51\x83\x6c\x5e\xbf\xf8\x12\x95\xf5\xba\x33\xe2\xd9\xe6\x08\x95\xec\x20\xe0\x47\x33\xc2\x42\x80\x5d\x84\x93\x4f\x8f\xec\x4a\xa6\xae\x8a\xd8\x60\xc8\x19\x70\x01\xfa\x30\x18\x9a\x24\x1d\xb8\x5f\x0c\x02\x5f\x86\x0c\x57\xa5\x07\xda\xd7\x05\x3b\x07\xe6\x7c\x80\x30\x10\x92\x2c\x8c\xd5\x83\xc5\xdb\xe0\xed\x60\xb0\x0f\x36\x03\x5b\xce\xd8\x24\xed\xad\x75\xe8\xf0\xb7\x87\xc2\xcd\x28\x30\xd0\x78\x1c\xa8\x8f\x3e\xd1\x94\xb5\x25\x53\x6d\xc9\x24\x2d\xe9\x4c\x84\xe8\xbc\x8b\x54\xf1\xa9\x71\xa6\x56\x04\x07\x4c\x56\x9e\x7a\x2f\x80\x91\x30\xad\x5a\x9d\x51\x8b\x61\x3e\xff\xed\x56\x27\x5b\x34\x6d\xb7\x7a\x5c\xb6\x3a\xfe\xa5\x1f\x31\x33\x99\x0f\xf9\x61\x60\xa9\xec\x3c\x34\xd9\xa8\x4c\x6b\x97\x32\x1d\xd7\xd6\xb2\x8b\xd5\x2b\xaa\x2c\x14\x55\x1b\x67\xbb\x26\xab\xcc\x11\x10\xe4\x02\x19\x16\xca\xfd\x48\x47\x8c\xfd\xf1\xb2\xb1\x86\x49\xf1\x1c\x28\xd7\x6e\xc8\x51\x65\x8d\x00\x60\xd6\xd7\xc6\xc7\xae\xc9\x42\xf2\x02\x6f\x67\x9c\xb9\x9a\x03\xed\xea\xbd\x56\xb1\x54\x34\x48\xc8\xd7\xc6\x27\xd9\x96\xd8\xdc\xd7\xcc\xc0\x60\x80\x81\xce\x61\x91\x1b\xb6\xd0\xdd\x02\xa9\xdd\x4d\x6e\x98\x9b\xe6\xad\x9b\xdc\x33\x26\xd9\xbb\x9f\x91\xdf\x6f\x86\x6f\x87\xee\x78\x59\xee\x65\xa7\x92\x29\xe5\xd9\x79\x73\x4b\x99\x0b\x63\xfb\xbe\x58\xc2\xbc\x77\x67\xff\xa5\xe2\x6c\x83\xc1\x90\x35\xd2\x94\x7b\x71\xc0\xf1\xdb\x61\x7c\x3e\x5f\xd6\x71\xd6\x65\xe1\xff\x2d\xf5\x3c\x1d\x2f\xdd\x32\xc1\xad\x16\xcc\x82\xb6\x46\x48\x6e\x4b\xa4\xc7\x02\x43\x38\xdc\x24\x4c\xab\x81\x6f\xc8\x3d\x66\x01\x85\xa6\xc4\x51\xfe\xe4\x6f\x2c\x72\x0f\x66\x20\x61\x90\x9c\x93\xae\x85\x57\xf2\xca\x08\xd1\x88\xe1\x8c\x45\x21\x44\x61\x4f\xa4\xa9\xd4\x75\x64\x6c\x23\xb6\x52\x14\x5c\xc9\x1c\xc2\x18\x23\xcd\x02\xa5\xfe\x3f\x22\xc6\x81\x32\xc4\x3a\x10\x69\x63\x71\x03\x8e\xc8\xf3\x05\x07\x7a\xeb\x7a\xf3\xbe\xc3\x62\x3c\x75\x2f\x97\xc7\xe7\xdf\x57\x0d\x53\x8b\x66\x9b\xba\x98\x41\xb0\x06\xd7\x89\xfa\x11\xee\x2a\xf8\x13\x8a\xc0\x0d\x78\x1d\x81\x6a\xab\xf0\xde\xe1\x01\x8b\x05\x19\x07\x73\xb2\xf3\x8c\x7a\x6d\x4c\x31\x5d\xc2\xd2\x6a\x20\x47\xea\x78\x2f\x0e\x41\x0f\x5f\xe6\x13\x4d\xce\x43\xc5\x1a\xd0\xbd\x6d\xbf\x17\x19\xac\xa2\x65\x2b\x10\xd6\xb2\x90\x57\x8e\x62\x99\xd1\xbb\xaa\x98\x57\xe2\xa6\x79\x6b\x08\x1b\x16\x26\x9f\x91\xb4\x00\xf6\xb0\xdd\x7b\xa6\xa9\xf8\xde\xe5\xfd\x8e\xb3\x79\xc3\x8f\x4d\xc5\xf5\x1a\xdb\xbb\xcc\xc9\x25\x7c\xe3\xd6\x7e\xcb\xb7\xce\xca\x62\x37\x1a\x4b\x0f\x6f\x38\xcc\x11\xa5\xda\xd4\x8e\x91\xd3\xde\x73\x70\xdc\xca\x82\xdd\xaa\x5a\x6d\x7b\xee\xb7\x03\x05\x9b\x9e\x7b\x89\x08\xdc\xed\xa5\xa7\x9f\xbd\x3f\x20\x9e\x56\x33\x38\xbe\x56\xca\xfe\xe8\xaf\xc6\x97\x01\x1d\xeb\xe8\x85\xd5\x8a\xa5\xd5\x07\xef\x79\xf0\xee\x5d\xfb\xf9\xf1\xfb\xe9\xe9\xf9\xf0\xed\x71\x1c\x8f\xcf\x8f\xe3\x2f\x8f\xa7\x9b\xbb\x6d\x9e\x30\x47\xe1\x69\xda\xd1\x34\xed\x58\x84\xa7\x00\xf8\x4b\xbe\x6f\x60\xb3\x05\x98\xf8\x8c\xea\x68\x92\x87\xf4\x09\xc2\x8c\x89\x93\x63\xb1\x55\x0a\x9d\xa1\x66\x57\xa1\xa8\xe4\x71\x81\xe4\xff\x95\x3b\xfd\x87\xcd\x7c\x4c\x07\x24\xbd\xc9\x93\x64\x95\x72\x76\x64\xd7\xae\x48\x5d\x8d\xb0\xe9\x44\xf6\x0a\xdf\x59\xe0\xaa\x92\x59\x80\x30\xfd\xcf\x5e\xe5\x63\xdd\xfc\x74\x7a\x79\xbe\x1c\x87\xcd\x1e\x9e\x8e\xfd\x47\xa5\xc3\xfe\x65\xcd\xff\xf0\x27\x2f\x23\x8a\x4c\x98\x8d\x1b\x67\x99\x46\xef\xc3\x1d\xf3\xfe\xcb\xb7\xf5\xe6\xd1\xee\x18\x56\x77\x28\xca\x24\x85\xb7\xab\xc7\x5b\x97\x18\x07\x18\x24\x03\x5d\x5e\xc9\xb1\x81\x12\x1c\x7f\x4f\xbe\x67\x9e\xe4\xc6\x06\x21\xa0\x51\xfc\x42\xfe\xbf\x37\xef\xef\x79\xf3\xae\xa7\xcb\xef\xfb\xb3\xec\xc6\x59\xfb\x53\xad\x35\x79\x73\x0a\x35\x31\xf1\xfe\x0f\x04\x07\x83\x05\xac\x60\xf5\x85\x03\x2a\xf5\x0b\x70\x19\xac\x64\xcd\x67\x2c\xbf\xf2\xef\x5e\xbf\x38\x0f\x3c\xd2\xee\xd9\x56\xc9\x8f\xe6\x1f\x6f\x3e\x81\xe3\x90\x0e\x0f\xba\x87\x7f\xd5\xa8\xfb\x94\x67\x77\xdd\x85\x1f\xe8\xe5\xcd\x77\xda\x95\xae\x41\x1f\xdf\xbc\xac\xd4\xc5\x6f\xbd\xd8\xaf\x5f\x4c\xa6\x61\xac\x07\x0e\x97\x4d\xcd\xed\x03\xed\xc8\x11\x05\x0c\xb5\x2b\xd8\xc8\xa1\x93\x7d\xc4\xd1\xb0\x3c\x7a\xd3\x6f\x7f\xdf\x5c\xf0\xf0\x8f\x75\x0b\x53\x62\xaf\xba\xa1\x16\xcd\xcd\x9e\xcd\x84\x8f\x75\x5e\x01\x70\x06\x74\xec\x04\x3f\x1b\x11\x42\x9e\xf1\xb2\xa3\xfc\xc9\xdf\x5e\xbf\x78\x03\xd3\x76\x60\x90\x7a\x87\x2c\xcf\x00\x9f\x1a\xcd\x23\xcc\x25\x96\x3c\x88\x63\x03\x67\xd0\x88\x3f\x05\x40\x4a\x6b\x18\xae\x94\x65\x87\xcf\x1e\x40\xa0\x13\x32\xe3\xda\x0c\x7e\x17\x58\x8b\x9f\x46\x47\xdf\xe4\xd8\x35\x81\x93\x75\x18\xd6\x55\xe8\x6c\xf1\x85\xf1\xc4\x4e\x3b\x2a\x47\x13\xc7\x20\x68\x87\x87\x0e\x9c\xb5\x82\xf2\x61\xf6\x5b\x3c\x1c\x3f\x1b\x8e\x01\xe4\x69\x3c\x55\x05\xab\x09\x12\x0d\xd9\x63\xab\xac\x19\xe1\xbc\x35\xb8\xa6\x9c\x81\x1c\xd6\x00\x57\x24\x7e\x87\xab\xd1\xc5\xb2\x8a\x70\xff\x0c\x7c\xf3\xce\x18\x95\xe1\xa4\x85\x93\xd3\x9a\x01\x8f\x6b\x54\x50\xf4\x6b\xaa\x41\x9f\x63\x17\x38\x7d\x89\x91\x45\x65\xe0\x06\x30\xb8\x85\x65\x25\x0c\x69\x1b\x6e\xb8\xc0\xf9\x77\x86\x85\x58\x06\x69\x68\x3e\x5d\x5c\xca\xd4\x05\x0f\x83\x24\x10\x74\x48\xb6\x62\x58\x04\x93\x01\xe9\x19\x22\xb1\xb7\x09\x17\x7e\xf5\xe3\x8f\x1f\xc3\x63\x07\x4f\xde\xd6\xc8\xba\x39\x2e\x9e\xf8\x2a\xa6\x1e\x80\x45\x42\x9b\x86\xc1\x59\x65\xe9\x69\xad\x72\x8a\x9e\xca\x68\xf8\x25\x83\xed\x1a\x8b\xd4\x60\x05\x0c\x2e\x99\xf6\xc0\x8d\x74\x4d\x56\x4c\x24\x86\x9a\x05\x50\xcf\x45\x45\xd3\x86\xa1\xf3\x9d\x82\x90\x43\x04\x94\x80\x73\xb9\x18\xd4\x99\x54\x13\x91\xde\xe9\x75\x07\xb1\x03\x36\xc2\x45\xdc\x86\x86\xa8\x4b\x8a\xae\xef\x14\x67\xa3\x19\xd6\x44\x60\x37\x29\xc4\x01\x6a\x5a\x5a\x46\xeb\x69\x10\xbd\x59\x5f\xc7\xa6\x99\x07\x55\x18\x39\xa3\x10\x7f\x3f\xb0\x1b\xc1\xfa\xaa\xb2\xe3\xea\xe5\xe9\x12\x74\x6d\xdb\x59\x79\x70\xa4\xa1\xb9\x81\x9f\x04\x2f\x89\xe1\xb0\x00\x9e\x31\x0c\x08\x64\x76\xc8\x26\x45\xdb\x50\xa5\xfa\xa8\x3b\x49\x12\x53\x49\xc5\x01\x60\x77\x7a\x25\x4c\x52\xcc\xe6\xe5\x07\x69\x3b\x07\xdc\x0b\x24\x25\x3c\xdd\x3a\x98\x8e\x1a\xd9\x22\xfb\x92\x9b\x1e\xdd\x41\x23\xd2\xc8\xa0\x0a\x8b\x8d\xa3\x7f\x37\x32\x7e\xcb\x7e\x6e\x4b\x7e\xf8\x44\xa4\xb8\x54\xf7\x42\x29\x6f\x73\x65\x7c\x04\x00\xf3\xa1\x11\xfc\xf5\xd8\xfd\xf6\xf2\xe3\x70\x9f\xd9\xf1\xe6\x19\xcb\x08\xe5\x67\xf2\x37\x3c\x1a\x20\x33\x10\xcb\x90\x99\xa2\xd9\x93\xce\xf4\xf9\x49\xc1\xd5\x9b\x54\x46\x32\xc7\x02\xde\x30\x81\xa9\xc7\x25\x2c\x7b\x37\x7b\x23\x54\xf2\xe2\xb7\x12\x37\x58\xbc\xed\xad\x00\xff\xba\x61\x1f\x96\x2d\x3b\xae\x7a\xe4\x83\xed\x3c\xbc\x9c\x9e\xcf\xe7\xe7\x7e\xb3\x89\xe7\x83\x73\x0e\x91\x4e\x43\xe3\xb5\xf2\xfa\xda\x64\x2d\x2e\x09\x87\x2f\x03\x8a\x5f\xbf\x80\xb1\xad\xe8\x81\x4c\x84\xa6\x98\x01\x1f\x76\x00\x64\x08\x2e\xa6\xc6\x9a\xab\x89\x76\x00\xf4\x1f\x94\x6c\xc8\x52\x30\x60\x92\x42\xfa\x59\x51\xc6\x14\xee\x86\x81\x4f\xa2\x1f\xf4\x56\xb8\x80\x37\x7d\x1d\x77\x85\xd6\x05\x29\x9c\xdd\x36\x1f\x6b\x14\x80\x66\x9f\x4e\xe3\xe6\xe4\xb9\x3c\xba\xa4\xe4\x61\xd7\xdd\xfb\x38\x0f\x41\x23\x26\x73\x05\x56\xb8\xf2\x51\x42\x02\xac\x0f\x6e\xc5\x50\xd9\x07\x77\x6d\xb8\xac\x99\x19\x26\xaf\xc0\x08\xcb\xaf\x67\xc6\xc9\x9e\xd9\x3b\xff\x49\x41\xe7\x87\x6d\x45\xe7\x0f\xb5\x70\x77\xba\x71\x1f\xae\xca\x67\x31\x93\x64\x98\xc9\x09\xb2\x06\xf4\x17\x4b\x3e\x7a\xa3\x82\xb1\x9b\x75\x99\x25\x6e\xef\xea\x62\x92\xde\xac\x0b\xff\xe4\xa6\x2a\x7c\xa3\xad\xb1\xb6\x35\xac\x36\x07\xe0\x87\x5a\xe2\xf4\xdc\x9f\x2e\x4f\xa7\xe7\xad\xd6\x98\x8f\x09\x4b\x1c\x74\xeb\x06\x86\xb7\xbb\x32\x34\xf3\x5f\xce\x29\x9b\x86\xe2\x94\x31\xf4\x5e\xe1\x93\x1f\xb5\x7a\xfb\x6c\xcd\x90\xe0\xd0\xfa\x86\x6a\x3c\x72\x45\xee\x7d\x83\x26\x92\x39\x94\x71\x55\x86\xc0\xc8\xa7\x08\xab\xf0\x63\xd0\x53\xc8\xe7\xc7\x2a\x0e\xe1\x9a\xc3\xf1\xe9\xf9\xf4\xf4\x74\xdc\xaa\xfd\xcd\x09\x4b\x6f\x79\x67\x90\x58\xc3\x38\x14\x1d\xa7\xd4\x5e\x01\x9a\x55\xcd\x98\x69\xa6\x9f\x14\x63\x56\x0b\x40\x3d\xdb\x16\x55\x2f\x22\xff\x0b\x93\xb7\x4e\xd7\x26\xe9\x21\x91\x45\xe0\xe6\x78\xec\xcc\xfc\x0d\x80\xa1\xa4\x58\x39\x95\xdc\x35\x31\xf2\x3f\x63\xeb\x6d\x13\x3e\x90\xaa\xf3\x9e\xd2\x60\xa7\x45\x1e\xcd\xb1\x4a\x95\x03\xfe\x74\xca\x15\x7f\xd8\xce\xff\xe9\x39\x27\x06\x98\xba\x5d\xc2\x2e\x39\xf9\x73\x39\x40\x37\x3d\xd1\x9d\xbf\xff\x38\x3f\x9d\x9e\x36\x87\xea\xdd\x29\x33\xbc\x43\x08\xdd\x2d\x08\xfd\x3a\x11\x10\x33\x64\x36\x1b\x7e\x37\xa3\xbe\x36\x85\x99\xce\x8b\x46\x3e\x01\x73\x6c\x39\x76\xfb\x44\xbd\x48\x7f\x13\x3c\xf5\x4a\x06\xa2\xe2\xc0\xcc\xa4\x9f\xa2\xac\x1d\x57\xbc\x5b\x93\xa0\xc0\xc6\xaf\xed\xf4\x6b\x16\x5d\x61\xcd\x95\xd5\xcf\x39\x09\xdc\x9a\xb7\x2a\x93\xa4\x32\xb6\x56\xe6\xe1\xb6\x36\x8e\x6b\xe3\x50\x1b\x0c\xc9\x8f\x37\x8b\x7d\xfb\x42\x7a\xd1\x2c\xf6\x63\xcd\xc2\x9b\x2b\x41\xaa\x7e\xb6\xfb\xc7\x1b\x9c\xe8\x9b\xa7\xfc\xbf\xee\xff\xbf\xac\xfb\xfb\x6f\xdf\x1f\xdf\xee\x79\x3e\x3a\x6b\x94\xdb\x04\x38\xb5\x87\xc4\xaf\xe5\xa5\xe7\xf6\x0b\x72\x60\xaa\x82\xb3\x8b\xae\x52\x90\xf1\xcc\x8a\x96\x91\x53\xae\x32\xdd\xd6\xaa\x55\x8c\xd5\x0d\x4c\x8d\xd6\xf7\xad\xe0\xf7\x0e\x1f\xc3\x4d\x55\xc6\xeb\xe3\xb7\xd3\xf9\xed\xaa\xd6\xe3\x3c\xc2\x1d\x14\xd7\x3a\xf8\x8a\x3e\xe1\x93\x1d\x17\xbe\x5c\x32\x98\x1d\xb6\x55\x7f\xee\x2a\xb4\x5c\x44\xbf\xd8\xfa\xcc\xfb\x8a\xf1\x03\xab\xe1\xb8\x50\x53\x53\x0b\x81\xf7\x62\x1e\xde\x5a\x6e\x47\x06\x71\xd7\xaf\x52\xc6\x6c\x1a\x52\x4e\x25\x77\x8b\xab\xc9\x7f\x49\xab\x59\xad\x5c\x9a\x52\x3b\xd6\x3f\xec\x9b\x48\x3b\x7f\xe4\xa3\xbf\x75\x09\xda\x81\xdd\x3f\x02\x9b\xe8\x36\xa6\x87\xed\x2b\xbf\xfd\x48\x6b\xa7\xfc\xc7\xc6\xdc\xf9\x7a\xba\x8c\xdd\x4a\x0e\x6e\xe3\xd8\x94\x4f\xf3\x8f\x19\xf7\xdb\xb6\x3d\xb6\xa6\x90\x6e\xf6\xd0\x44\xc6\x67\xf0\x7d\x8e\xa2\x40\x50\x0a\x63\x7b\x03\xa7\xba\x20\xc3\xa2\x14\xf8\xd7\xbc\x63\x27\x1f\x74\xd9\x05\xc4\x52\xc2\xc0\x17\xda\x47\x32\xd6\x46\xf9\xd1\xaf\x49\x0e\x6f\x0f\x4c\xb0\x74\xe8\x17\xae\x12\xce\x18\xff\x94\x37\x21\x85\x29\x6c\x42\x0a\xbb\xc6\x6a\xcd\xc2\xbb\x4e\x99\xe8\xf8\x0f\x17\xdd\x9d\x98\x51\xda\xa0\xb6\x47\xbb\x27\x24\x90\x5a\x56\x92\x8d\x9d\xad\xde\xbd\xc8\xf2\x5c\x76\xe0\x54\x98\xd4\x39\x43\x93\xbe\xca\x86\xd9\xa9\x0d\xc8\xb5\xbd\x19\x00\xee\xeb\x40\x7b\x17\x54\x42\xc2\x66\x07\xb1\x66\x05\x4b\xd0\x2a\x10\x88\xda\xd7\x07\x16\xe7\xa9\x32\xea\x13\x24\xa1\x32\xe2\xdc\xa0\x06\x3e\xd6\xda\x37\xb2\x98\xb7\x07\xa6\xdc\x87\xbb\x5d\x92\xa3\x21\x60\x52\xe7\x3d\x92\xaa\xc0\x34\xcd\x21\x3c\xe3\x91\x0c\x23\x02\xab\xa0\x97\x6e\x66\x06\x24\x38\xf1\x63\xf5\xca\x6b\xd6\x75\x94\x60\x52\xf2\xca\xb0\x77\x86\x75\x1d\x13\x0f\xeb\x68\x24\x6d\x82\x5b\xee\x63\xf4\x8e\x1d\xa7\x23\xd9\x00\xc7\x4e\xa4\xd5\xbf\x2c\x0c\x8d\x1b\x5d\xc7\xcd\x4d\xdf\xc3\x1f\xdf\xf5\x5d\x4e\xdf\xcf\xdb\x96\x54\x3d\x32\x6d\x77\x68\xa3\x1b\xe1\x93\x05\xa8\x29\x42\x33\xa0\x11\x4d\x5e\x6e\x87\x80\xec\xd2\xec\x54\x4d\x35\x0f\x91\xa6\x66\x19\xc5\x92\x7b\x2e\x1b\x95\x8e\xc1\x0e\x74\x34\xb2\xfe\x40\x2c\xaf\x5f\x4c\xd0\xca\x65\xd7\x81\xa2\x55\x45\x56\xe3\x45\x2a\xf9\x98\x18\x0e\x81\x19\xdd\xfb\x55\x82\xb3\xe1\x7c\x1e\xc7\xbc\x13\xce\x8c\xc2\x44\xce\xf4\x13\x4e\xa2\x29\x34\xd3\xd7\x89\xa9\x4e\x28\xe3\x8c\xe6\x06\xe6\xc2\xaf\x70\x83\xf0\x6a\xf1\x5c\xa4\x26\x00\x10\x38\x9d\x76\xc5\x23\x6c\xe5\xcf\xed\x99\xca\x7c\x02\x22\x0b\xd3\xbe\xb5\xb3\x7a\xc4\xe2\xed\xdd\x4d\x92\xaa\xdd\x33\xfe\x3e\x3e\x9f\xbe\x1f\xbe\x1d\x7f\xff\x76\x39\x1d\xbf\x6f\xf5\xe0\xdd\x29\xff\x9a\xd9\x5b\x0c\x4f\x8c\x18\xa6\xe3\x98\xd2\x8c\x3a\xad\x1c\xe4\xed\x23\x80\xbb\xd1\xf5\xcc\xd1\x12\xc0\xd1\xe2\x54\xa4\x7f\x99\x91\x20\x02\x1d\x8b\x57\x39\xfa\xde\x4c\x1c\x17\xf3\x86\xf6\x61\x5c\x90\x5a\x70\x52\xfb\x87\xdd\x02\x10\xd4\xd8\x6a\x56\x39\x30\xb3\xc5\x43\x51\xae\x49\x9c\xe9\xda\x70\xa6\x26\xde\x75\xef\x69\xdb\x8e\xd7\x97\xf6\xe3\x49\xc2\x19\xf4\xcc\x46\xe6\x04\xef\x7b\x87\x71\x13\x3d\x68\x63\x68\x76\x31\xcc\xea\x56\x46\xc3\x90\x60\xb0\xfe\xeb\xd2\xbb\xf8\x19\x47\x10\x5c\xe4\x2e\x6c\xb5\xf1\xa6\xb4\xe6\x78\x2f\xcb\xb9\x9d\x2a\xf8\x47\xa6\x9b\x5b\x78\xf1\x02\x57\x0c\xb9\x99\x58\x3a\xe0\x9a\x23\xf3\x85\xd1\x47\xb4\x4c\x21\x16\x45\xe1\x3b\xba\x91\x3e\xf1\x2c\x56\x61\xe1\x93\x00\x91\x51\xc6\x73\x2e\x6f\xce\x02\xc4\x36\x2c\xb4\x5b\xe3\xc0\x26\x6d\x35\xc3\x4a\x06\x0e\x49\xaa\x10\xa3\x61\xfa\x8a\x04\xc6\xa7\x9c\xba\xc6\x48\xb4\x0f\x9c\x83\x20\xe6\x7c\xaf\xe1\x6e\xc9\xcf\x11\x8c\x66\xdb\x8f\x1f\xc6\x80\xbd\x02\xc4\x12\xb9\x33\x35\xfa\xa6\x99\x2f\x66\xac\xd1\x21\xcb\x0a\x16\xc1\xf2\x69\x9c\xfd\x89\x28\x0f\xcd\x99\x3b\x26\x4a\x7f\xfe\xb1\x6a\xec\xf3\x8f\x05\x18\x92\x36\x36\x10\x73\xd7\xa2\xea\x2e\xf4\x60\x9c\x49\x82\x0d\x93\x77\x7d\x8e\xac\x36\x58\x73\x29\xb2\xe7\x2d\x22\x53\xb8\x7c\x4e\xda\x23\xa5\x9e\xd3\xde\x67\x14\x77\x65\x2f\xca\x71\x21\x20\x92\x27\x81\xa7\xdd\xe1\x74\xfe\x71\x78\xfe\x79\xbe\xa9\x24\x17\xcd\xb1\xea\x62\x07\x63\x92\xca\x61\x40\x38\x05\x83\x7a\x72\x67\x09\x78\x31\x07\x51\x55\x14\xd8\xb2\x0e\x2c\x4c\xbd\x94\x30\xb9\x0b\x57\x95\xb7\x24\x4c\x7a\xa6\x52\xb8\xa7\xde\xcf\x61\x53\x12\x78\xc1\x76\x00\xaf\x61\xf5\x19\xfb\x7b\xb5\xb8\xe5\x5d\xc1\xaa\x5a\xf3\xa4\x5c\xd8\x63\x68\x9b\xc8\xe6\xbf\x1e\xc7\xdf\xd6\x0e\xde\xdb\x23\x73\xe3\xf9\xf2\xc6\x5a\xe9\x6a\x28\xad\xf1\xab\xb5\xe0\x76\xa9\x14\xe0\x6d\x5f\x37\xd2\x05\xa9\x54\x89\xcb\xb4\xbd\x17\xdc\xa4\x37\xa5\x75\xc6\xc2\xa8\x68\xb5\xd5\xc8\xe5\x69\x73\x40\x73\xb8\xd0\x66\xda\xec\x20\x08\xa6\x3d\xc2\xf3\xd4\x0a\x56\x72\xe5\xe1\xaf\x34\x7d\x63\x41\x41\x25\xa6\xb2\x12\x4f\xa6\x33\xc8\x0e\x36\x85\xe6\x07\xbc\x69\x40\x02\xa8\xf8\x70\x2f\xdf\x64\x34\x1c\xcb\x64\x1c\x7a\xe6\xdb\x2d\xd4\xdc\x65\xc4\x56\x0b\x2d\xbf\xb3\x82\xbc\x41\xfd\xbf\xc5\xf9\x0f\x6b\x7e\xe2\xfc\x5f\xe6\x96\x8d\x37\xe2\x0f\x2b\x75\x61\xbb\x4e\xe4\x47\x86\x7b\xe9\x93\x1e\x18\x53\xdf\x3b\x13\xff\x12\xce\x7f\x90\xec\xbf\x4b\xf0\xdf\x5b\x9f\xae\x77\xd2\xa1\x3b\x74\xfc\x0f\x03\x20\x31\xb1\x3a\xfd\x5f\xff\x1a\xed\x83\x9d\x4e\xb9\x3c\x1f\x9e\xd7\x32\x9b\xcb\xc2\x89\xb1\xc0\x05\x11\x0d\x71\x22\x1a\xe2\x58\xe4\xd4\xea\xde\xd5\xf5\x95\x95\xac\xf6\x6e\xf8\xf3\xd0\xf5\x77\x43\x60\x2a\xc4\x0d\x13\xad\xee\xb9\x06\xe0\x30\x2d\x47\xcd\xc9\xd5\x71\x00\x1f\x42\xaa\xdb\x8c\xa1\x31\x19\xe4\x14\xc2\x7e\xbf\xb7\x06\xbc\xfc\xf2\xcb\x3a\x97\xb8\x96\x48\x04\x35\x2a\x6b\xe3\x10\x69\xcf\x91\x06\xef\x41\xd6\x64\x4c\xee\xe9\x1f\xfe\x3e\x34\x31\xa9\x98\x5e\xbf\x38\x5d\xa0\x6c\x6c\x4c\xc6\x39\x43\x23\xc7\x6d\xa4\x37\x30\x4e\x81\x53\xfa\x6e\x63\x7e\xfd\x62\x2d\x99\xe1\x71\xc1\xe9\x48\x4b\x98\x31\x1f\x49\x0d\x7b\xfc\xf5\xe9\x38\x20\x00\xf7\x32\x1c\x2f\x07\x7f\xf8\x7a\x5c\xed\xfc\x6e\x8e\xff\xef\xff\xf5\xdf\xce\xff\x17\x9f\x54\xc1\xde\xde\x0d\xde\xd2\x52\x19\x85\x39\xd3\xdb\x9d\xe6\xba\xb9\x68\x77\x7e\x7a\x3a\x75\xcf\xa7\x6f\x87\xa7\xf3\xe1\xf1\xe9\x19\xd1\xaf\xdd\x47\xd9\xfe\xd5\xde\x03\x4e\xfa\xe7\xc8\x3d\x75\xde\x88\xf8\xa1\xbb\x8d\x96\x49\xd6\xd4\x15\xe4\xbb\xb6\xe6\x3c\xef\x6c\xa0\x6f\x1e\xf1\xe9\x7c\x18\x1f\xbf\xbf\x53\x87\x7a\x02\x0f\x4f\x5a\x92\xcb\xe0\xc8\xb6\x75\xc9\x0e\xcc\xe5\x9a\x39\xee\x6e\x3a\x50\xf6\xf3\xbc\xc1\xbc\x1a\x4d\x7c\x3b\xef\xd5\xba\x32\x34\xb4\x8d\x94\x3c\x62\xaf\xa9\xca\xa0\x65\xa4\xf3\xbc\x65\xd1\xa9\xde\x04\xbd\x31\x1d\x7e\xae\x92\x2f\xeb\xa0\xee\xe6\x61\xee\x8a\x58\x78\x9b\x3d\x8d\x12\x16\x36\x8b\x91\xea\x0a\x0d\x3b\xd3\xdb\x6c\xae\x76\x2f\x8f\xee\xe6\x1e\xe7\x5f\x7e\x79\xe7\x09\x70\x54\x08\x2d\xac\xf2\x26\x0e\xb4\x32\x36\x08\x6e\x56\xa1\x14\x4e\x73\x6b\x5c\x2a\x83\xc9\xb4\x04\xd1\x44\xcc\x99\x9a\xb2\x53\x2b\xe6\xda\xb8\x48\x56\x5c\xa6\x75\xe9\x43\x6d\xf4\xf3\xf1\x97\xc7\xb7\xc6\x31\x8e\xdd\x8d\x56\x6c\xfd\xe9\x5d\xf7\x19\x08\x60\x43\x13\xba\xd1\x10\xe8\xb3\x20\xa9\x1d\xad\x03\x69\x1b\xbe\xee\x31\x27\xdf\x3d\x07\xb2\x7e\x77\x1f\x46\xce\x9a\x7c\xdd\x56\xbb\x2b\x7c\x09\x29\xa8\xa6\xe0\xf1\x68\xff\xaf\xbb\x02\x55\x06\xcf\x4f\x97\xe6\xa7\x2b\xf8\x0a\xd4\x0b\x90\xa1\xb1\x13\x02\x6e\x2c\x66\xb4\xf4\x77\x4d\xd4\xcc\xa0\x1a\x99\x11\xa6\xa6\x77\xbd\x62\x98\x98\x64\xae\xa0\x94\x31\xcc\x4b\x24\x8e\x58\xf1\xc3\x82\xad\xac\x02\x23\xe0\xd1\x7d\xfd\xe2\x0b\x02\x35\x1d\x94\x4f\x2d\x2b\xd4\xcd\x71\x1c\xce\xad\x5a\x28\xef\xcd\xa9\xc3\xc0\x38\xae\xbd\x05\xe6\x9a\x03\x8c\x15\x53\xa3\x43\x70\x21\xe0\x81\xc0\x02\xb7\x08\xe9\x7a\x6c\xd3\xc1\xea\xe3\xae\xbb\x0e\xe0\x45\x73\x6f\x0e\xda\xf9\x08\x4f\x09\x5a\x79\x78\x2e\x6d\xeb\x34\xc3\x68\xda\x58\xa8\xef\x43\xeb\x69\x2b\x6e\xbd\x6f\x03\x4d\xff\x77\x23\x3a\x19\x95\xcc\xc0\xe9\xa2\xda\xcd\x23\x2a\x28\xb8\xaa\x6d\x54\x34\xdf\xb0\x9e\xac\xf7\xaf\x5f\x82\x46\x38\xa6\xa2\x0b\x00\xbe\x45\xb5\x75\x67\x93\x8a\xf0\xa1\x69\xc8\xe2\xe9\xce\x78\xf0\x10\x7e\x6a\x20\x7e\xbf\xcb\xf9\x9c\x8a\x66\xe3\xac\xd8\xa5\xde\x7a\xf5\x62\x56\x05\x37\x5f\x83\x48\x42\x4f\xa7\x13\x9f\x6d\x27\xa6\x2d\x09\x64\xdc\x5e\xa4\xf2\x0d\x4c\xf2\xd9\x82\x7c\xa0\xb3\xef\x8b\x79\xad\x48\x03\x19\x60\x9f\x4e\xa0\xbc\x72\xfa\x64\xae\xe9\x93\x1b\x92\xba\x1f\x6a\xa8\xc3\x71\x38\xad\xad\x99\x9b\x03\x6b\xda\x70\xa1\x87\x6d\x2a\x3f\x2c\xda\xe7\x9e\x88\xe5\x7f\x36\x59\xf4\xb7\xc7\x1f\xb7\xda\xeb\x8b\xb2\x25\x29\x77\x2f\x6a\xde\xac\xd7\x1a\x24\xce\x40\xcb\x31\x6e\x98\xd9\xa1\xb3\x7f\xb7\x1f\x97\xd3\xf5\xf1\xfc\x32\xde\xde\x71\x2e\x9f\x13\x55\xe5\xc2\x95\x32\x98\x6f\xb9\xf5\x2c\xef\xde\x75\x78\xfc\x76\x22\xc3\x73\x79\xc7\xb9\x6c\x66\xcf\x99\xd8\x2f\xc0\xeb\x51\xb2\xf0\x7a\xfc\x43\x6c\x47\x4c\xe1\xef\x0d\xe4\x00\x30\x4d\xcb\x1f\x57\xb3\xc3\xad\x3e\x0e\xe7\x9f\x87\xef\xe7\xe7\xc7\xf3\xd3\xe1\x2e\x64\x7a\x7f\x6c\x5a\xf7\xab\xc3\xd6\x08\x55\xa4\xd5\xd4\x87\x05\xd3\x30\x84\x6a\x33\x28\x61\x41\x0a\x23\x59\xab\x60\x00\x0d\x20\x8f\x15\x66\x5b\xf0\x7f\x32\xb8\xc5\x28\xfc\x98\x56\xf4\x7a\x15\xea\x31\xa3\x8a\xa9\x38\x4e\xde\xd7\x83\x87\x53\x2b\xa1\xa7\x04\xd5\x16\xb5\x03\xe2\x12\xbc\x4c\x78\xe5\xd3\xeb\x97\x8c\x37\xa9\xe3\xb8\x05\x72\xeb\xb5\x90\x52\x8a\x5d\x6d\x40\xb1\x27\x71\xf8\xc4\xc4\x65\xc6\x78\x9e\x49\xac\x51\x0e\x4a\x6b\xd8\x25\x0b\x25\xa6\x50\x80\x36\xd9\x0b\xbd\x27\x34\xb7\x54\xb6\x8a\x7f\xca\xbe\x44\x6f\x43\xc7\x9b\x6a\xdc\x13\x21\x22\x7e\xda\xea\xbb\x97\xe9\xda\xd0\xef\xf9\x71\xd9\x99\x61\x13\x4d\xe9\x6e\x88\xd0\x0e\xee\x1a\x6f\xdb\x6c\x0a\x2d\x8d\xa6\xcd\x9e\xc5\x80\x5b\x9f\x8a\x6a\xa2\x6b\x73\xc0\xfb\x6e\x21\xfd\xfc\x7e\x17\x7f\x3f\x5e\x9e\xef\x02\x6e\x8b\xc2\x8f\x71\xb8\xe8\x4d\x35\xf1\xbf\x88\xc3\x65\xa7\x02\xe7\xdf\x4e\x87\x5f\x2e\xa7\x75\x05\xe6\xc2\x05\x4c\xc5\x0e\x4d\x74\x2a\xba\x3e\xba\x6b\x13\x1d\x6f\xbf\x9c\x8d\x5d\xe3\x8a\xb0\x9a\x3b\x87\x8f\x84\x48\x2f\x96\x55\x95\xc8\x18\xb4\x5d\x03\x39\xdc\x06\xfc\xbd\x81\x3f\x5d\x1a\xe1\x07\x75\x60\xf5\xf5\xae\x77\xae\xf3\x64\xe9\x24\xf6\x5b\xc2\x7f\x9e\x68\xb6\x65\x21\x36\xf0\x1f\xe7\xf9\x45\x17\x3b\x14\x89\xc1\x56\x79\x9d\x3b\xcf\x62\xab\xd8\x3b\x6a\x7c\x18\x9d\xaf\x8d\xe7\x0b\x78\x6a\x1b\x5a\x80\x1d\x63\x95\x69\xb3\x9a\xc8\x52\xc1\xa3\x39\x78\x53\x5c\x51\x5e\x83\xec\x44\xf3\xdc\x91\x99\xa6\x18\xa9\xf2\x66\x12\x27\x07\x51\x7e\xe4\xcb\xc2\xa2\x72\x69\xbb\x98\x66\xc5\xc1\x46\x65\xd3\xe0\x24\x38\x3a\xdb\x1d\x13\xf9\x9b\x70\xec\xed\xc2\xcd\xbe\x9f\x7f\x7b\x7c\xfa\xf5\x70\x39\x9f\xbf\x8f\x37\xfd\xb5\x28\x97\xd5\xc1\x2a\x5b\xfc\xa2\x41\xf3\xdc\xa0\xa2\x6c\x97\xdf\x68\xd0\xbf\xb0\x43\xb9\x6f\x9c\x4f\x9b\x7d\x43\x2f\x67\xe6\xbe\xc9\x8b\xbe\x89\xdc\x37\x71\xab\x6f\xc6\xc6\x24\x5c\xde\x15\xe5\xca\x95\x7a\x0a\x0f\x9b\x18\x16\x88\xfc\x25\xf3\x4e\xe7\xd1\xde\x74\xa3\xf3\x36\x8b\xa5\x54\xd7\x62\x7d\xdd\x03\xca\xdc\x74\xcb\xb8\xd4\xd6\x65\xf9\xc5\x15\x1d\x2b\x99\x24\xb5\x78\x41\xc7\x5a\xec\xd6\xd9\xd8\x7b\x4f\x06\xc9\x7a\xaa\xb8\x95\x66\x5d\x4e\x15\xa5\x4c\xea\x82\xab\xe9\xa1\xba\xba\xdd\x9e\x99\xf5\x7d\x3c\xfc\x72\x7c\x1c\xd6\x99\x70\x8b\xc2\xd9\xbc\x2a\xe5\xd6\xca\xac\x2a\x26\x77\x2c\x77\xff\x43\x75\x79\x3a\x9f\x5f\x57\x53\x9d\x14\x4c\x51\x08\x69\x78\x4e\x01\xce\xf0\x07\x36\x45\xf7\xa9\xea\xdb\xda\x7c\x75\x65\x48\x49\xe5\xd2\x37\x29\x4d\xf9\x75\x1b\xa4\x8e\x1f\xc9\x7a\x18\x99\xb7\x5b\x4f\xda\x16\x12\x05\xb0\xe9\xe3\x19\x1a\x0c\x55\x5a\x80\x93\xc6\xdb\x7c\x09\xb2\x2a\x90\x6f\x00\xc0\xad\x43\x5a\x41\x76\x83\x4d\xca\x21\x48\x0f\x6a\x74\xcd\xd9\x06\xd9\xe2\x34\x67\x07\x3a\x69\xa7\x39\xd7\x32\x3d\xe3\x2c\xd2\x33\x93\x28\x80\x6c\x43\x2c\x63\x0e\x2a\x64\xbf\x12\x15\xbd\x56\x12\x65\x66\x20\x66\xc0\x1f\x37\xf5\xee\xcd\x0f\x5f\x7f\x3f\x1c\x87\x1f\xfd\xf1\xe6\x29\x16\xe5\xb2\x33\x8f\xca\xc4\xdc\x1b\xa7\x79\x3d\x31\x99\x16\x94\xc1\xd8\xa8\x4c\xc6\xcd\xc2\xd5\xf9\xde\x50\x3f\xdb\xf4\xfa\x05\x88\x2c\x6b\x7a\x32\x69\xbc\x55\xc6\x18\x66\x35\x77\x29\xf7\x2e\x80\xe3\xd0\x62\x59\x29\x03\xcd\x34\xc1\xb2\x3c\x3f\x66\x1d\xfa\xe2\x0a\x19\x8e\x45\x95\xd2\xd3\x98\x0d\x1a\xea\xdf\x5f\x1c\x0d\x56\x03\x7d\x64\xc3\x6e\xa5\xf7\xab\xf8\x63\x55\xb1\x1f\x73\x75\xc8\xd8\x49\x1d\xc7\x12\x03\xd0\x33\x9c\xda\x48\x7b\xeb\xd4\x71\x0e\x28\xf3\xc5\x32\x6d\x43\x48\x5d\x50\x01\x44\xf8\xb4\x69\x4d\x41\x99\x68\x3b\x4e\x1d\x45\xbc\x9a\xac\xc3\x84\xcc\x45\x8b\xa9\xcf\x96\xd2\x95\xd0\x9a\xa4\x59\x0e\xcf\xb4\xc9\x47\xd5\x04\xdf\x5a\x6b\x0b\x67\x7b\x1a\x93\x3a\x6f\x5a\x5b\x62\x54\xd1\xb6\x99\x76\x83\xc6\xa4\x36\x07\x7c\xe2\x24\xa1\xac\x44\xe8\x98\x65\x4f\x8a\x80\x59\xac\x0f\x1d\x90\x63\x9c\x3d\xd4\x48\x5c\xc9\x18\x66\x9d\xe0\xd0\x25\x87\xb2\x60\x2d\x6a\x8d\xb4\x41\xc0\x5e\xe0\xd8\x48\x86\x36\xf7\x7b\x0d\xd8\x9d\x6e\x9d\x4a\x73\xd9\x4c\x2d\x24\x50\x28\xb8\x3c\x9d\x28\xb4\xca\xae\x98\x06\xf0\xde\x96\xfd\xc7\xe9\xf8\xdb\x1a\x06\x54\x4b\xe6\xdc\xef\x10\xff\x02\x49\xea\x1c\xfe\x6a\x45\x6a\xbb\x14\xea\x5e\x86\xcd\xea\xde\x15\xdf\x76\x62\x6e\xaf\x95\x54\xf8\x61\xdb\x92\x9d\xf7\xcb\xb7\xca\xe1\x6b\x4b\x76\x8a\x9f\x5c\x37\x35\x65\xf6\x94\x71\xa5\xd5\x0f\xbf\x5e\xce\x2b\x06\xe4\x9b\x72\x9e\xec\x6d\x66\x57\xaf\xf3\xa6\xaf\xcc\xac\x60\xe9\xda\xca\xf8\xa3\x93\x2a\x83\x3a\x0d\xdc\x89\x96\xcf\xf3\x7f\x9c\xaf\x10\x18\xde\xe1\x6f\xd1\x1d\x23\x88\xcb\xc1\x66\xad\x20\x5b\x52\x0a\x64\xbc\x7d\x52\x5a\xe5\xa0\x1c\x24\xb5\x72\x00\xb3\xf9\x64\xfe\xf0\x54\x4f\xb6\x0e\x8b\x1a\x8d\xf8\x33\xc8\x09\x22\xdf\xe3\x97\xdb\xd9\x45\x48\x78\x9c\x36\x05\x08\x4e\x51\xdb\x4a\x78\xfb\x61\x9c\x5d\x19\x82\x41\xcc\xcc\x23\x69\xd8\xd4\x6a\xd8\xd6\x02\xe3\x2c\xcd\x32\xe2\x07\x34\x62\x4d\xe1\x50\xee\x1b\x93\x0a\xa4\x67\x34\x8a\x0d\xeb\x79\xb8\x7c\xe5\x9f\x00\x0b\x4e\x97\xa1\xc2\xd2\x9b\xb4\x63\xda\x4a\x0f\x3d\x9d\x9f\x4f\xe3\x46\xcf\x49\xf9\x8a\x0b\xac\x12\x56\x37\xcc\x58\x2d\xc6\xb9\x18\x4e\xeb\x03\x56\x4f\x56\x48\x95\xaa\x67\x26\x44\x32\x71\xe5\x52\x0b\x53\x0b\x53\xcb\xbd\x05\x86\xe2\x6a\xcc\xfc\x0b\x0c\xb3\x65\xdb\xdc\xfa\x48\xef\x8f\xb1\x7f\xe1\x83\xcf\x5a\x83\xfc\x86\x61\xa9\x62\xc0\xf4\x86\xa9\xa7\x1a\xb0\xd9\x0a\x30\x2c\x96\x45\x83\x9b\xa1\xc1\x9a\x6a\x63\xef\xbc\x16\xcc\x6b\x4a\x3d\x5d\x64\x22\x4c\x7a\xb3\x25\xe9\xe1\x52\x18\x3c\x6e\xed\xed\x62\xa7\x64\xad\x42\x5e\xa4\x29\x76\x6e\xb4\x68\xe5\xa2\x1f\x6a\xa6\xbb\x6d\xfa\xba\x7c\x02\x6a\xc2\xb3\x63\xfa\x99\xbe\x97\x45\xbf\x69\x3d\x2b\xb9\x33\x70\xe7\xb2\x10\x2b\xe0\x86\xb4\x9b\xe7\x97\xa4\x32\xe4\x73\x31\xfd\x4f\x17\xb1\xc8\xe6\x67\xf0\x84\x1c\xb5\xfe\xca\x3f\xc1\xfa\x48\xd3\x08\x15\x86\x09\x4e\xde\x45\x90\x35\xc0\x7d\x95\x58\xa5\x68\x0b\xcd\x68\x05\xcd\x18\x04\xcd\x58\xdf\x53\x3a\xf8\x26\x9a\x31\x30\x9a\x11\x82\xe4\xe6\xe1\x06\xce\x98\x94\xf7\x63\xd6\x02\x67\x4c\x02\x67\x34\x6b\x38\x63\x7c\x07\xce\xb8\xd3\x0f\xc3\xd0\xf5\xa7\x75\x50\x65\x51\x28\x0e\x30\xa3\x6c\x0c\x53\x6c\xd9\x6a\xac\x4a\x34\x06\x35\xc4\x28\x25\xe7\x15\x72\x3c\x54\x13\x87\x3d\x54\x9f\x39\xf8\x6b\x4c\x7e\xfd\x62\x63\x64\x0c\xb6\x0d\xac\x23\x62\xe9\x42\x8c\xc6\x6b\x7c\x18\x8c\x2e\x3c\x28\xf5\xc0\xea\x96\x10\x60\xd9\x59\x5a\x9e\xd7\x46\xc4\xf3\x2a\x0e\x65\x40\x3f\xea\xa0\x6b\x38\xb8\x40\xd6\xbf\x24\xfd\x69\x33\x40\xce\xc9\x0d\x11\x88\xe5\x01\x7e\x2b\xcf\xa5\x8d\x99\x82\x08\xda\x0c\x48\x1e\xd8\xb3\x08\x9f\x8f\x97\xc3\x57\x51\xfc\x5f\x3d\xcd\x54\xba\xe0\xc4\x70\x03\x14\x05\xf9\x5d\x2d\x66\x48\x46\x21\xa9\xd8\xab\x3c\x34\x2e\xaa\x1c\xf1\x01\x40\x7a\xf1\xaa\xc9\x74\x46\x43\xa7\x00\x42\x6a\x64\xe7\x60\xc2\xfd\x53\x72\x75\xb3\xfe\x64\xb5\xf7\x2b\xd7\x1f\x87\x5f\x6e\xab\xc6\x65\x9f\xaa\xd8\xb5\x31\xa5\xfc\x0f\x3c\xff\x78\xf3\xec\xb3\x3f\x46\x44\x01\x68\x1a\xd0\x78\x7e\xc8\x9c\xe8\xa0\xca\x40\xf3\x6c\x89\xf8\x68\x4a\xe2\xd2\x26\xa3\x8e\xb1\xf0\xd0\xa5\xdf\x14\xad\x82\xff\xc7\x69\x71\x9e\x8f\xbf\x1f\xba\x97\xcb\xe5\xf4\xf4\xbc\x4d\x2b\xfe\xc6\x09\x73\x9e\x41\x74\x6b\x52\xee\x2b\xb3\x4a\x5b\x49\x13\xb8\x5d\xf6\xb2\x7f\x8b\xac\xfb\x93\x5c\xdd\x1f\xaf\xd7\x16\x27\xf7\xf6\xf1\x7f\xbd\x43\x97\x1e\xfb\xc7\xe5\xf1\xfb\xf1\xf2\xfb\xdb\xdd\xb5\x71\xc2\x7f\x42\x77\xd5\xc7\x7e\xab\xbb\xee\x8f\xff\xfb\xbb\x6b\x0d\x89\x7d\x3e\x2f\xf7\x27\x2e\x7b\xf6\x9f\x20\xa6\x46\x7f\xed\x06\xd5\x9e\xcf\x3f\x0e\x6f\x71\x27\xdf\x1f\xe3\x3b\x81\xf7\xd4\x76\x16\xde\x60\x70\x69\xab\x94\x15\x08\xb6\x21\x45\x0a\x82\x19\x44\x6a\x12\x8b\x98\x79\x5a\x2b\xe2\xeb\x97\x60\xd8\x5e\x83\x36\x8d\x35\xb3\xbd\x06\x0d\x3e\xea\xe8\x74\x47\x9f\x3c\x6f\xf1\x78\x84\x80\xea\x88\x5a\xcc\x03\x0d\x09\x85\xdb\x0a\x6c\x40\xa6\x8a\x81\x0e\x27\xac\x1f\x06\x00\x0e\xa0\x7e\x35\x26\x0f\xf4\x78\x16\xac\x21\xa9\x5c\x1b\x0f\x26\xa3\x66\x22\xbf\x81\xb5\x55\xa5\x9a\x4d\x6f\x93\x5b\xee\x4e\x67\x50\x2f\x06\x82\x0f\x00\x3c\xf6\xa1\x88\xf7\x69\x87\xb6\xf6\x9e\xb2\x78\xc5\x57\x9c\xc3\xc4\x1f\xc0\x78\x29\x26\x30\x75\x55\xd2\x19\x00\xab\x5c\xa1\x3d\xe8\xeb\xe8\xee\xa2\xeb\x80\x3d\xaf\xce\x45\x66\x58\x66\x5a\xd7\xfb\x8b\xe7\x70\x77\xed\xbd\x4a\xdc\x56\xe1\x46\xd6\x16\xfe\x5c\x23\xe2\xb4\x30\x84\xbd\xcf\x20\x49\x6c\x24\x19\x95\xd5\x2d\x2a\x54\x0c\x7f\xd0\x2b\x26\x7f\x5c\xbd\x1b\x80\x16\x49\xb4\x9d\x19\x18\xf6\x29\x31\x39\xec\x45\x04\xd6\x2d\xc8\xc5\xfd\x3d\x0f\xe4\x77\xbf\x1f\x87\xe1\xf0\xed\xf1\x72\xea\x9e\xcf\x97\xdf\x6f\x6b\x70\x77\xf8\xdf\x5d\xa1\xcb\xf1\xf1\xd7\xfe\xf9\xb4\x4a\x70\x5c\x14\xce\xb9\x31\xc9\xb0\xca\xb6\xf8\xa5\x1a\xbf\x02\x6f\x20\x6d\x70\x76\xbe\x4f\x5f\xef\x4f\xa6\x8b\x4c\x69\x35\xab\xe9\x7b\x29\x8a\xc4\x2f\xdf\x67\xd2\x6a\xf8\x27\x9f\x25\x3c\x79\xbe\x9c\x4e\xcf\xd7\xc7\xd3\xcf\x75\xfd\xa7\x42\xee\x3c\x1f\x44\x80\x1c\xbe\x86\x88\xac\x16\x58\x4b\x64\x51\xc1\x86\xd7\x05\x34\xf3\xd8\x86\x19\xfe\x70\x7a\x3b\xac\x6f\x82\xef\x98\xea\xaa\xf0\xf4\xe2\x25\xdd\x10\x5e\xb6\x94\xe4\x56\xa1\x2c\x5c\x6c\xf0\xaa\xdd\x0a\x10\x8e\x2b\x0f\x9b\x14\x89\x6b\xae\xfa\xda\x68\x3b\x92\x95\xd5\x11\xb1\x69\xaf\x12\xa2\x63\x64\x64\xba\xc2\xd1\x2d\xcf\x6a\xc3\xd8\x53\xd2\x80\x4b\x0f\x6f\xf2\xb3\xf8\x72\x65\x87\xaa\xd1\x2a\x28\xb0\x01\xd1\xc6\x71\xa7\x81\x1f\x7f\x3b\x3d\xf7\x97\xf3\xcb\xaf\xfd\x61\x6d\x9e\xde\x1c\x11\x80\x07\xb5\x97\xe5\xa6\x6e\x8d\x35\x51\x59\xdf\x9a\xe0\x03\xe6\xfe\x68\xe9\xa3\xb3\xb1\x35\x01\xdb\x54\x5a\x3c\x74\x1b\x93\xb6\x0a\x9b\x4a\x34\x77\x5b\x0c\x72\x0d\x6d\x1b\x33\xbd\x5e\xa5\x75\x5e\x42\xfd\x2e\x0b\x43\x59\x16\x21\x64\xdf\x37\x96\xdd\x0a\x53\x54\x20\xbb\x0e\xac\x6f\xe0\x80\xf3\xaa\x49\x1d\xf3\xe3\xb1\x2c\x66\x02\x09\x1c\xe4\x25\x5a\x8b\xe7\x72\xba\x35\x39\x5b\xe0\xf3\x7d\xc6\x4e\x2f\x91\x4d\xcf\xfe\xe5\xaa\x1b\xc5\xe0\xb9\x88\xae\x17\x10\x1b\x10\x0c\xee\xa1\x6b\xac\x69\x8b\x21\xbb\xba\x75\xd9\x41\x3e\x57\xb7\x51\x23\x4f\xbb\xf5\xc1\xb2\x48\xad\x45\xd4\xb3\xcd\x1c\x0e\x6f\x0d\xd4\xdd\x10\x87\x6c\x8b\xc1\x36\xb9\xa8\x54\x7a\x84\xc6\x8d\x51\x2e\x30\x08\xae\x4d\x09\x69\x55\xa5\x8d\xd4\x48\x01\x0c\x06\xb4\x58\x59\xdb\x86\x84\xe4\xb0\xc6\x95\x36\xda\x1c\x54\x93\x5a\x1b\x62\xb1\x2c\x03\x86\x1b\xa2\x02\x8e\xd7\x40\xda\x83\x74\x4c\xcd\xc6\xba\xa8\xac\xd0\xde\x65\x6a\x28\xde\xe1\x30\xe7\x64\xe8\x9b\x29\xa7\x00\x54\x6b\x5e\x85\xae\x89\x80\xed\x65\xe4\x35\xd0\x8a\x03\x82\xa2\xdc\x26\x0f\x59\xe2\xb6\x38\x4d\xd6\x50\xeb\x3c\xb3\x28\x44\xd7\x59\xdd\x06\x0f\xb0\x49\xeb\x52\xce\xca\xa7\x36\x1b\x4b\x43\x42\x65\x07\xe2\xbb\xd0\xea\x18\x12\xfc\xda\xad\x71\x10\x81\xd1\xad\x36\xc5\x41\x42\xcf\xa6\xce\xa4\x36\x44\xda\xc5\x9b\xd0\x66\xed\x2d\xdc\x07\x2e\xb5\xc5\xc7\x8c\xbf\x63\xe9\x77\x19\x08\x9e\x7f\x5f\x63\xc6\xf9\xbb\x18\x4a\x41\x15\x73\x35\x2e\x0c\x48\x9e\x4d\x64\x78\x98\xad\x19\xea\x15\x91\x2e\x67\xf7\xa5\xeb\xcc\x22\xcb\x79\xe4\xac\xc9\x89\x27\x23\x69\x65\x92\xed\x24\x97\xd2\x48\x4f\x39\xf6\xb9\x98\x90\x54\x13\xc3\x44\xd2\x68\xb8\xd3\x68\xc8\x2e\x12\xae\x0c\x07\xce\x6d\x64\x62\x7e\xc6\x8c\x29\x80\x96\xf9\x17\xfc\x8e\xa3\xbb\x9c\x51\x36\x2a\x97\x07\x13\xb2\x8a\xe1\xa1\x8b\x0a\x0c\x8f\x0e\xfe\xd5\xce\x44\x85\x73\xd0\xf3\x00\xbd\xbf\x7e\x09\x5e\x15\x87\x20\x50\x61\x28\xa8\x63\xe0\x65\x18\x90\x65\x2d\x69\x55\xef\xb6\xf7\xcb\xd7\x69\xfd\x3c\x1c\x2f\x97\xf3\xcf\x5b\x89\xe2\x37\xcf\x10\x39\x29\x24\x26\x4c\x5e\x9c\x94\x54\x93\x52\x6f\x4a\x04\xa9\xfd\x04\x13\xb3\x1c\x4b\x6d\x52\x5a\x20\xf2\x19\xbe\xf6\xd9\xe7\xbb\x55\xf7\x7d\xfb\x94\x19\x59\xc6\x9c\x6b\x9c\xfd\x3c\xd1\x14\x25\x95\x12\x9e\x0c\xc4\x5a\x2c\xdd\xe1\xe9\xd1\x51\x8d\xf4\x21\x15\x99\x97\xaf\xff\xbf\x53\x77\xf3\x34\x5c\x52\xad\x43\xaf\x83\xa4\x6d\x58\xb1\x15\x2c\x1b\x76\xa5\x9a\x0d\x93\x19\x21\xd0\xef\x9a\x9f\xbe\x30\x2c\x38\x90\x20\xa6\x20\x27\x85\x7c\x20\x48\xf2\xf2\x75\xec\x2e\x8f\x3f\xee\xb8\x2f\xd7\xe5\x4b\x8a\x31\x6e\x25\x88\xeb\x3b\x71\xaa\xb0\x86\x42\x32\x6f\xc5\x75\x38\xe9\xee\x3e\xae\xc3\x3f\xb9\x51\x99\x5a\x69\xa6\xcc\xd0\xfa\x8a\xc1\x9c\xe2\xc7\x12\x4f\x96\x06\xf1\x66\xd9\x18\xfb\xc9\x79\x2f\x5f\x9f\x1f\x9f\x87\xd3\x4d\x9d\x6b\xd9\xe4\x1e\xaf\x7e\xe9\x9a\x6c\xc3\xdb\x03\x49\x71\xe0\xdc\x43\xc9\x44\x94\xf6\x97\xe2\xd5\xf9\x64\xff\x87\x78\x9b\xb1\x28\x06\xe2\xa6\x62\xd7\x3b\x91\x82\x75\x5b\x2e\x32\x17\x42\xdc\x6c\xcb\xbd\x66\xf8\x79\xfc\x7d\xdd\x06\x28\x98\x93\x5e\x93\xbb\x1a\x4f\x33\x50\x80\x94\x9f\x12\xb6\x19\xc8\x33\x60\xcd\xe7\x97\xa6\x0a\xea\x70\xfe\x22\x5c\xe0\x8e\x89\x3e\x91\x4d\xc1\x13\x62\xf5\x91\xe7\xde\xc5\x41\x48\x45\x74\xe5\xef\x73\xf6\xca\x1e\x31\x5a\x48\x8c\xc2\x0d\x6d\x50\x92\x8c\xe1\xb2\x56\x3e\xd8\x2e\xf0\xb2\x9f\x69\x0d\x2f\xf8\x30\xb6\x5c\x1b\x9b\x35\x6f\x89\x6c\x26\xbb\x33\x22\x4b\x96\x8c\xae\x4c\x7d\x52\x3a\x32\x14\x83\x42\x7d\xc0\x0c\x60\x12\x08\x5c\x2c\xd3\x04\x98\x24\x39\xfd\x56\xf7\xd6\xb8\x87\x2b\x93\x80\x51\xe7\x73\x64\x28\x22\xea\x7d\x9b\x07\x3f\x2e\x13\x03\xc7\x46\x54\x4d\xe5\xff\x71\x95\x46\xcf\xf8\xb8\xe9\x1a\x8b\x54\xbe\x71\x99\xa0\x3f\xae\xb3\xf2\xa1\x9b\x3a\x89\xa5\xee\xf4\xe4\x8f\xd3\xe5\xfa\x38\x9e\x2f\x87\x63\xd7\x9d\x5f\xd6\xbc\x63\x1b\x07\x67\x90\x8b\x0b\x9d\xf1\x92\x57\x6c\x55\x30\x30\x8b\xbc\xc4\x2d\x82\xc8\xc2\xd0\x67\xf2\x0c\xd1\xa2\x49\x06\x3c\x6c\x01\x02\xf9\x09\x3b\x50\x95\x02\x8b\x42\x59\xe3\x18\x85\x65\x90\x83\x50\xf8\x13\xa2\x4a\xb4\x69\x72\x9e\xf1\x5d\x64\x1e\xb1\x38\xbf\x49\x2a\xe4\x09\xe9\xb4\x97\x03\xfd\x7e\x22\xb3\x3c\x02\xd6\x50\xd8\x52\xc1\x29\x09\xbf\x06\x37\x5a\x0e\xd0\x3a\x15\xfc\xc3\xfb\x41\xda\x9d\xb6\xbe\x40\xcb\xfc\x30\xd2\xbf\xab\x76\x5e\x1f\x98\xe3\xfd\x7f\x96\x05\xf6\x8b\x83\xae\x7c\xe8\xe0\x12\xa1\x86\x4f\x89\xfe\x35\x18\x78\x49\x65\x32\xfa\x44\xde\x4c\x94\xe6\x2d\x93\x46\x93\x1d\x10\x12\x3e\x8a\x1e\x67\x55\x9e\xc4\x3e\xfd\x2a\x3d\xb0\x1d\x7d\x0e\x1c\x63\x0e\x23\xc2\x6c\x0e\xf9\x0a\xf4\xff\x28\x7f\xf2\x37\x26\x3d\x34\x31\x3e\xc0\x3b\x64\xf9\xd4\xc0\x41\xe0\xa2\x47\x63\x55\x8c\xca\x25\x55\x4c\x0d\x44\x81\x0c\x91\xfe\x0f\x9a\x79\x4d\x58\x24\xd9\x00\x33\x98\xb3\x92\xaf\xff\x92\x59\xf2\xe7\xf1\xc7\xa1\x3b\x0e\xc3\x6a\xb5\x58\x14\x4e\xb3\xa5\xb7\x49\xf2\x22\x7b\x99\x09\xc1\xba\xe0\xd3\xb2\xf1\xd0\x80\x0d\xb7\x35\x37\xe2\x95\xcf\xb3\xcb\xc1\xb1\x91\xbc\x7c\x9d\xa9\x71\xc3\x9a\x1a\x57\x2e\xe0\xd1\xcf\x39\x2a\x86\x0c\x64\x86\x62\xf2\x03\x4d\x0f\x63\x17\x63\x0c\xa3\x6e\x01\xe4\xb8\x82\x29\x71\xcf\xfe\xa6\x9a\xf7\xe7\xcb\xe3\xeb\x6d\x73\x48\xe1\x2c\xec\x6f\xf5\x14\xa0\x45\xec\x2d\x68\xd0\xb8\x41\x9c\x59\x18\x34\x13\x73\x9f\x51\x19\x8b\x3f\x07\x40\x2c\xa5\x6e\xfb\x0f\x72\xbd\x49\xf7\x98\xcb\xa6\x19\x6e\x96\x02\x96\x5e\x09\x4c\x77\x81\x4f\xcc\x19\x1e\x08\xfa\x37\x9a\x36\x68\x4e\x64\xdc\x8b\xc6\xd5\x3b\x3f\x76\xc7\xe1\xd0\x3d\x5e\xba\xf5\x2e\x65\xf3\xb0\x30\x95\x22\x85\xa7\x6f\xc2\xda\x4d\x13\xdc\x50\x09\xe9\x0d\xed\x2c\xad\x06\xc9\x2d\xb3\xfa\xe5\xd0\x07\x96\x42\x4f\xe1\x1f\x0f\x03\xfd\x7c\x7c\xee\xfa\x43\x77\xfc\x7e\xba\xac\x40\x69\xeb\xf2\x29\x8a\x6e\xb2\x19\xf0\xa0\xf2\xbc\x57\x70\x58\x91\xad\x14\xbc\xa8\xb9\x07\xa9\xea\x35\x08\x87\x43\xf0\xff\xcc\xcb\x1f\xf3\xe0\x8a\x62\x72\xc1\x01\x50\x65\xdb\xc7\x9d\x0d\x07\x57\xf3\x2e\x8d\x63\x55\x3c\x01\x61\x77\x2a\xef\xb9\xf2\xfe\xae\xf2\x40\xb6\xe8\x32\x30\xfa\xb9\xb1\x29\x4b\x4a\xf5\x9b\xf4\x5b\xc2\xbf\x70\xaf\x26\xba\xc5\xe1\x03\x06\xbd\x2d\x66\xaf\xf7\xab\xfe\xfb\x53\xb7\xac\x32\xbe\xae\x5c\xaa\xd1\x0f\x8b\x57\x88\x26\x1e\xb2\x14\x0b\x5b\x8a\x2c\x39\x51\x35\x24\x98\x45\xc7\x68\x15\x83\xb2\x58\x1d\x64\xe9\x62\x7f\x5c\x16\x30\xb9\x7c\xc6\xb7\xa8\xaa\x66\xec\xda\xa4\x6b\xb1\x14\xb3\x80\x29\xea\x38\x85\x31\x0a\xbc\xb0\xf0\x32\xe9\x4c\x67\x58\x2b\x06\x93\xb1\x09\x0a\x37\xa1\x1f\x0a\xf5\x55\xbd\xd1\x62\x4a\xaa\x1d\xb2\x37\x4b\xfe\xfe\xd4\x1d\xbe\x3d\x8e\xc7\xaf\x37\x60\xe9\x75\xf9\x0c\xc4\x41\xa8\x04\xe0\xf4\x8e\x9b\x01\xa6\x58\x72\xf8\x30\x56\xaf\xea\xc1\xdc\x56\x4d\x61\x92\x7b\x67\xba\xb2\xaa\x46\x28\x4c\x00\x43\x0d\x17\xeb\x3a\x5c\xa9\xd3\xae\x22\x32\xf7\xfa\x25\x1a\xe5\x4a\x1a\x80\xfb\x18\x1c\x9d\xef\x20\x34\x5a\x03\x37\x64\xe1\x01\x80\x09\x7f\x93\xf8\x45\x3d\x92\x04\xae\xde\xb3\xf3\xc1\xaa\x00\x6e\xfe\xa1\x31\xc9\xc2\x19\xd2\x94\xfb\xce\x0b\x45\x68\x7a\xd0\x93\xd5\x1c\x79\x60\xb6\xb6\x99\x8a\x73\x08\x54\xeb\x8e\xfb\x06\x46\x27\x08\x8b\x8c\xe2\xfa\xcb\x68\x81\x14\x7a\xd1\x92\x8d\x45\x26\x63\x9c\x1c\x2c\x41\x12\x81\xb8\x7f\x6d\x67\x82\x2a\x20\x44\x8b\xb4\x3a\x62\xdb\xfc\x81\x7e\xfb\x71\x39\x7f\x1d\x4e\xdf\x6f\xbb\x6d\x2a\x9e\xfc\x1a\x48\x22\x64\x5e\x54\x09\x17\x08\x7b\xaa\x97\x06\x5c\x76\x27\xf3\x2f\xb1\x69\x83\xee\x84\x0e\x2a\x38\xde\x62\x65\x63\x8a\x81\x5a\x36\x20\x81\x37\x07\x7a\x33\x72\x20\xb3\xae\xf6\xa7\xe7\xfe\x4c\xdc\x9f\x79\xdd\x9f\xe0\x92\x14\x35\xbd\x05\xc9\x12\x35\x18\x66\x80\xac\xc9\xfe\x35\x8c\x3e\x50\x74\xaf\xc6\xfb\x8e\x6d\x2f\xce\x81\xc1\x1b\x92\xa1\xcb\x61\x6a\x8f\xb1\x07\x15\x06\xa3\x1e\xa8\x6a\xe9\x61\xd9\x63\x7a\xd5\x63\x9a\x7b\x8c\x66\x9b\x9d\xe5\x92\x79\xbf\x5e\x7e\x7c\x3b\xae\xa9\xdd\xd6\xe5\x93\xe7\xc1\xba\x69\x46\x91\x79\x10\x8b\x33\xf2\x36\x39\x7f\xb3\x2a\xff\xff\x5b\xa3\xbb\xcb\x8a\x1d\x8e\xc3\xf3\x5b\x95\xe6\x63\x93\x11\xe5\x5d\xda\x8e\xa9\x97\xf2\x79\xae\xb3\xb2\xc1\x03\xcb\xa4\xba\x12\x08\xb3\xa5\xc0\xf5\x4e\x9f\x28\xe1\x33\x64\xa3\x10\xf5\xd2\x30\x2a\xcc\xfc\x40\x9f\x3b\x93\xe1\xf3\xf1\xeb\xa2\xb6\xf8\xb6\xa0\x79\x4b\xe0\x0d\x04\x68\x90\xcc\x1e\xe0\x6f\xa9\xdb\xfe\x51\xba\xb7\x9d\xc7\x3f\xbc\x3c\xb1\x6a\xe7\x6a\x32\xbf\x3d\x30\x21\x0c\xee\x05\x30\xc9\x14\xd8\x50\xe5\xf4\x79\x8b\x44\x9e\x8a\xf7\xe4\x37\x11\x5a\x12\xf5\xcf\x25\xb5\xbe\x4e\x6f\xc9\x6f\xde\x4b\x85\xa2\xfd\x37\x44\x41\xdf\x69\x73\xee\x21\x0e\x81\x02\x4f\x8b\x5d\xf9\xc3\xbb\x5a\x9d\xd6\x6c\x8a\x7c\x16\xbb\xd1\x22\xd6\xbc\xaf\xad\x49\x27\x6c\xa9\x8e\x9a\x0d\x51\xcf\x9d\x3e\x1d\x56\x34\x53\xb5\x60\xf6\x08\x73\xda\x74\xc5\xbf\x84\x28\xb9\xc6\x3c\xbb\x6f\x34\x0e\xb8\x87\xde\xb3\x4b\xdf\x1a\x93\xd5\x2e\xfd\xe4\x98\x1c\x4e\xcf\x87\xe3\xd3\xb7\xcb\xf9\xf1\xdb\x5d\x3d\xe6\x03\x5c\x1f\x50\x32\xa4\x2b\xfb\x49\x8d\x66\xa4\xbb\x33\x5a\x90\xe3\xee\xca\xfa\xf8\x57\x32\x23\xc1\xa7\x96\x3d\xb8\x34\xef\xb3\x14\xa6\xd9\xf2\x9e\x74\x4f\x32\xde\x37\xb8\xfc\xf8\x27\x6b\x4a\xba\x7e\x0f\xbf\x22\x35\xf9\x7e\xec\xee\xab\x87\xc2\x55\x5a\x38\x57\xcd\xd6\xaa\x59\x2d\x00\x7d\x33\xb1\x16\x57\xf2\xe1\x71\xa6\x1d\x9e\x99\x31\x26\xd6\xe2\x71\x62\x2b\x66\x7e\x63\x57\x02\xcb\x67\xdc\x11\x37\x5e\x1b\xaf\xb9\xb3\x8b\xba\xa3\x70\x64\x2a\xb4\x3b\x1f\xd4\x95\x7f\xb2\x16\x38\x20\x63\x7c\xa7\x25\x7e\x3d\xfc\x72\xec\x56\xee\xea\x45\xd9\x9f\x17\x9c\x33\xec\x7a\x7b\x9f\x01\xfa\x7d\x19\x45\x51\x9c\xfe\xf3\x97\xf9\x84\x48\xdd\xc3\xbf\x51\x3b\xf0\xf9\xf8\x83\xde\xbe\xc3\x8f\x61\xe5\x5a\x5f\x17\x4f\x2b\xc5\x9b\x26\x49\x74\x6f\x85\x53\x10\x2e\x46\xef\x42\xb3\xbe\x01\x4e\xbd\x8f\x01\x24\x86\x6c\xf5\x30\x9b\xab\x57\x91\x51\xe3\x4c\xb7\x4f\xb3\x76\x48\xf7\x56\x0b\xa0\x48\x50\x65\xd3\xa0\x27\xc1\xd0\x08\xfc\x07\xcb\x84\xd8\x37\x64\x42\xae\x13\xd6\x68\x63\xa2\x80\xb3\x65\x4e\x9e\x5d\x09\x73\xa4\x29\xc7\x51\x64\x45\x02\x93\xe3\x0a\x72\x22\x32\xbf\xc8\x4e\x3b\x9f\x2e\x97\xe3\xe3\x12\x2a\x33\x95\xf0\x0b\x51\x0a\x32\xae\xab\x1a\x78\xdf\xf8\xa4\x99\x63\x24\x19\x64\xed\x61\xcb\x4f\xc6\xf1\xc0\x54\xd2\x3b\xb7\xfb\xef\xe7\xc3\x2f\x8f\xa7\xe1\xdb\xea\x2d\x5c\x96\xf2\x7c\x14\x8a\x9a\xf2\x84\xc5\x09\x88\x3f\xea\x67\xf4\x3d\x12\x31\x03\x23\xba\x6c\xaa\xd4\xfd\xa0\x74\x0c\xec\x3a\x64\x1d\x1f\x9d\xf6\xb2\x8c\xf9\xfe\xe7\xcb\xf7\xe3\xf3\xdd\x53\x49\xe9\xac\xba\x94\x3d\x48\xb1\x10\xdd\x80\x1a\x95\x76\xca\x4a\xd6\x62\xe3\x81\x7b\x1f\x8c\x36\x92\xbd\x3e\x30\x27\x32\x06\x80\xc7\x39\x74\x0a\xa8\x86\x00\x67\xf1\x05\x80\x50\x21\x7e\x24\x4b\x71\xf7\x49\xd7\x39\xd1\x53\xc9\x7f\x7e\x5e\x34\x55\xe5\x65\x85\x9f\x9b\x4a\xc4\x0d\x49\x06\xdd\x60\x83\x56\x16\x0e\x4e\x33\x34\x06\xd1\xab\x4c\x83\xc2\x54\x31\x2a\x4e\xb0\xb2\x6d\x49\x0e\x38\xa6\x56\xbb\x10\xd6\x96\xad\xb7\x03\x3b\x8d\x27\x73\xcf\x7b\xda\x80\x4e\x15\xa8\xc9\x72\x6b\xf6\x45\x1a\x6d\x3e\xf7\x11\x99\x10\x74\x93\xa0\xaf\xb8\x2f\xed\x8c\x7d\x84\x78\xb0\x57\x92\x43\xca\x69\x1e\x43\xe3\x02\xfd\x01\x27\x80\x6f\x63\xf2\x45\xf9\xd6\x14\x0b\x30\x47\x68\xb3\x0e\x45\x99\xd0\x3a\x4b\x53\xc3\x7e\x24\xfc\xb9\x3f\x1d\x9f\x4f\x2b\x54\xfc\x5c\xb4\x4c\xbf\xbc\xed\x55\x21\x5a\xb8\x85\x44\x22\x3e\x59\xc9\x7a\xd6\x99\x59\x1b\x17\x41\x9a\xd1\xfd\x45\xb0\x52\xdc\x5f\x04\xde\x7c\xcf\x79\x9f\x8e\x89\x48\x96\xa7\x40\x67\x63\xf9\x9d\x77\x84\xfd\x74\x85\x2b\x8b\x62\xcd\xdf\x76\x5a\xe6\xe5\xfb\xd7\xc3\xb7\xf3\xcf\xd5\x6c\xb6\x28\x9c\x2c\x1d\x7a\xa6\x5c\x41\xc0\x99\x31\xc0\xf0\xb1\xbe\xb9\x47\x32\xae\x3a\x0b\xc3\x2c\x9c\x04\x6c\x85\x97\xec\x13\xd6\x97\xed\x9a\xa8\x80\xae\xc5\xf2\xa8\xac\xbd\xa6\xc1\x1a\x45\x1b\x69\xe3\xc2\x5b\x3c\x46\x7d\x63\xae\xe0\x83\x8d\xca\x08\x12\x25\x0e\x60\x9f\xd1\x1d\x28\xf8\x2d\x43\x56\x8a\xb2\xb1\xdf\x43\x9a\x70\x8d\x57\xd9\x9a\x73\x11\x37\x41\x31\x90\x48\x80\xa5\xdd\x23\xc9\xac\x63\x51\x4c\x33\x03\x6c\xe2\x00\x37\x06\x3d\x02\x8e\x04\x71\x90\x4a\x02\xa5\x8d\x3d\x6b\x19\x6e\x99\xe2\x46\xb4\x0a\x82\xb2\x56\x01\x36\x38\x50\x3b\x51\x33\xb1\x88\x6e\x17\xe9\x76\x05\xcd\x58\x98\x26\x2d\x49\x8a\x4c\xee\xa9\xa1\xee\xf7\xea\xd8\x9d\xc8\x9c\xbe\xe8\xbb\xfd\xa6\x18\x0f\x2f\x3f\x36\x47\xc5\xe2\x00\x37\x4b\xd6\x6f\x48\xa2\x00\xa5\x01\x01\x81\x09\x7c\x54\x58\x1a\x58\x88\xe3\xc2\x80\x04\xaf\xd4\x35\x1e\xe8\x3a\xc4\x9b\x51\xe0\xdb\x12\x10\xa2\xf1\xad\xcb\x86\x66\xa7\x56\xeb\x6c\x94\xcf\x6d\x0c\x99\xf5\x15\xe8\x4d\x40\x92\xf6\xbd\xcf\x99\xa6\x32\xaf\x0c\x13\xab\x9a\xc1\x83\x32\xbc\x0b\x60\x2b\x8a\xd4\xe4\x64\x03\xeb\xde\x78\xc9\x62\x01\xe0\x0f\xbf\x9a\x81\xdb\x70\xea\x0d\x0d\x4c\x05\xe3\x58\xee\xd6\x88\x1f\xd2\x56\xc3\x5b\xf7\x8d\xf1\x9b\xf2\x25\x57\xae\x7b\x61\x7c\x54\x51\xd6\x0d\x6c\x5b\x84\x01\xb1\x69\x40\x09\x3d\x14\x71\x81\x27\x44\x2b\x48\xad\x9b\x5a\xed\xa6\xd6\xbb\xa9\x15\xc7\x88\x4a\xae\xa7\x9a\xdf\xb9\xd0\xdf\xef\xd5\xc7\xef\xa7\xc3\xf3\xf9\x30\x9c\x8e\xd7\xd5\x62\xb1\x2e\x17\xd2\x45\x90\x68\xd0\x1a\x0b\x27\x6f\x01\x44\xca\xbf\xd6\x70\xd1\x9f\xdc\xd6\x18\x57\xfe\x82\xab\x78\x0d\x3a\xea\xc1\x57\x0d\xa2\x8a\xd3\xbf\x17\x18\x40\xf2\xe3\x86\xbe\x80\x61\x34\x0f\xe4\x8c\x3f\xf5\x4b\x93\x34\xdd\x97\x4c\x5d\x8f\xec\x49\xa8\x7d\xd0\x1e\xc4\xf6\xd6\x79\x06\x35\xc0\xdb\x8f\xf5\x6c\x07\x40\x41\x5d\x30\x1c\x7f\x8c\xb7\xdd\x22\x65\x93\x11\xf5\x2f\x93\xd2\xbf\x53\xd2\x77\x3e\x2a\xe7\x63\xc7\x2c\x13\x1c\x3c\x70\x2c\xde\x9b\xf5\xd8\x18\xf1\xd2\x82\xa7\x57\x0f\x45\xab\xa2\xc1\xb4\xef\x68\xda\xc2\xb4\xe9\x54\x01\xde\x77\xbf\xb9\x1e\x9f\xee\x5a\xeb\x71\x56\x95\x29\x48\xa7\xde\xce\xfb\x11\x31\x63\xbc\xb1\x34\x21\x30\xc7\x73\x8a\xac\x06\x0c\xd5\x17\xa6\x7f\xd8\xfc\xf5\x9a\x66\x5a\xe6\x99\xcc\xf3\x4c\x13\x82\x0a\x10\x3e\x5e\xce\x21\xaa\xb1\xa3\x28\x1d\x1b\x65\x87\xa6\xd0\xb0\x48\xef\xde\xed\x3d\x58\x86\xf8\x4e\xa1\x54\x9c\x01\x75\x51\x8d\x19\x4a\x52\x25\x3d\x88\x74\x73\x15\xda\xbe\x47\xb8\xad\x85\x67\x79\xbe\x63\x7e\x22\x3c\xde\x00\x4e\x4c\xdf\x39\xc5\xea\xc6\xd4\x3c\xe3\x7c\x93\x14\x55\x0a\x72\x0f\xc0\x9f\xed\x74\x8f\x3f\x26\x6e\x4b\xdd\x76\xb9\xe9\xc6\xcb\x7a\xc0\xff\x75\x7c\x36\x5e\x47\xe5\x00\x19\x47\x30\x4b\x08\x49\x98\xea\xa3\x74\x95\xd7\xf4\xd3\xac\x36\x9d\xa7\xdd\x67\x66\x31\x05\xc3\x7d\x05\x68\x26\x78\x4d\x65\x6e\x36\x08\x04\x35\x4e\x8b\xd2\xa7\x71\xf7\xa1\x1b\x58\x52\xc5\x3c\xcc\x04\x3f\xcc\x42\xb3\xdf\x82\x07\xa3\x6f\x1b\x11\xcc\xb0\xe6\xbf\xe8\x5f\xfd\x5f\x53\x44\x98\x36\xd6\xfa\x1a\x78\x93\xd1\x9a\x98\x68\xb6\x6b\x6d\xb6\xb6\x28\xaf\x5b\xe3\x12\x4b\x2d\x04\xd7\x35\x64\x5b\x07\xcb\xa0\xfa\x80\xf5\x3a\xb4\x56\x7b\x83\x30\x1a\xbd\xd5\xc0\x71\xd7\x74\x73\xa1\x65\xe8\x1a\x53\x5a\x07\xce\x74\xd3\x46\xea\x42\x0c\x6a\xe7\xda\x52\x26\x11\xa0\x78\x15\x29\xcd\x29\x1f\x9d\x66\x74\x37\xf2\xea\x86\x55\xbc\x0b\x6d\x28\xc6\x63\xc9\x6d\x4d\xa6\xc7\xf0\xad\x49\x9a\xd7\x5f\x38\x97\x68\xdb\xd0\x7a\xeb\x22\xf2\xe0\xdb\x68\xa2\x51\xa1\xb5\x8e\xea\x82\xa0\xdb\x43\xe7\x14\xb4\x98\x2c\xbd\x9f\x66\x44\x04\xc5\x22\xab\xcb\x04\xc6\x7b\x31\x58\xdc\x50\xbb\xe8\x36\xe6\xe8\x21\x5e\x94\xa1\x26\xd2\xd9\xd0\x16\x07\x34\xa0\x4f\x6d\xf6\xd9\xab\x26\x53\xdd\x7c\x54\x11\x8f\x4d\x0f\x60\xa1\xd9\x63\x4a\x1b\xa2\xf6\x80\xe3\xf9\xdc\x06\x5a\xa9\x81\x6d\x0f\x93\x95\xe8\xda\xa2\x13\x9f\x1a\x3d\xc2\x69\x80\xc0\x5b\x16\x42\x6a\xa2\x6d\x75\x31\xfc\x32\x3a\xe5\x63\xab\x53\xce\xf8\xdb\x18\x7d\x05\xe5\xb5\x8b\xca\xe6\xd2\x35\x26\xb6\xce\x64\xf8\x39\xa9\x21\x62\x1b\x53\x16\xc6\xc4\xc6\x3a\x5e\xc8\x7c\x1b\x7c\x4c\x0a\x20\x79\xe4\x80\x84\x36\x58\x24\x6a\x34\x56\x77\x2c\xd7\x01\x40\x3f\x95\x84\x8e\xb5\xed\xf1\x37\x88\xd8\xf2\x88\x40\xa6\x62\x19\xe8\xd1\x88\x08\x3b\x0c\xdc\x91\x95\xf3\x43\x95\xcd\x72\xba\x2d\xd8\x84\xd1\x8e\xb1\x80\x14\xd1\xb7\x9a\x3f\x21\xc9\x5e\xcd\x3f\x96\x8a\xa7\xa7\xf4\x5d\xe3\x02\xd9\x3a\x70\x51\x46\xd7\xfa\x90\xd1\xc3\x9e\xc6\x17\xbd\x95\xae\xd0\x2c\x9a\x90\x4d\x00\x66\x1e\x6b\x7b\x99\xcf\x4d\x6b\x73\xce\xca\xa4\x56\xa7\x28\x7b\x3f\x1a\x7a\xfa\xa1\x33\xb9\x8d\x25\xc2\xa8\x70\x2a\xb4\xb9\x38\x9d\x21\x96\x03\xc3\xda\xb5\x01\x3b\xdb\xdc\x06\x63\x9d\x57\x26\xb6\x59\x63\x76\xa0\x77\x94\x96\xf9\x36\x41\xaf\x98\xaa\x11\x41\x64\xd4\x16\x9d\xb3\x2a\xad\x2e\x3a\x89\x7a\xab\xef\x24\x61\x04\xb6\x9b\xa5\xa9\xb1\xa3\x41\xaa\x83\x8f\x2a\xb5\x2e\x96\xc4\x92\x18\x26\xb7\x21\x81\x07\xb3\x66\xa3\xa4\x36\x44\x9b\x69\xa8\xb9\x94\x68\xe7\xdb\xa6\x62\x03\xcd\x40\xc1\x76\x30\x14\xb3\x82\xe3\xda\x77\x5e\xb7\xc5\x01\x52\x9f\x02\xc6\x8c\xa1\xbd\x78\x42\x34\x9b\x66\x0b\x96\x65\x68\x6d\x02\x78\xa3\xcd\xde\x21\x2d\xa4\xf5\x51\x73\x04\xdc\x22\x07\x51\xe0\xf8\xbc\xaf\x7e\xfd\xa2\x95\xf3\x09\xae\x15\x97\xfa\xb8\x60\x48\x25\x4b\x1c\xfe\x33\x7b\x75\x3b\x7b\x03\x4c\x2e\x6e\x73\xba\x71\xff\x35\x81\x8a\xbc\x0c\xd5\xd0\x16\xaf\x39\xb1\x84\x3a\x96\x7a\x00\xd3\x07\x9c\x3b\x3c\x05\xb4\x31\x5b\x6a\x63\xa7\x4b\xc0\xce\xa9\x4d\xd6\x65\x2c\x7a\xd3\x50\x05\xd3\x26\x24\x37\x65\xa8\x82\xde\x0a\x3e\xfe\xbf\x63\xa8\x5a\xde\x07\xe0\x00\x86\xaa\x2b\x01\xaf\x66\xb4\x6d\x24\x6b\xcf\xb7\x29\x82\x49\xd9\x29\x57\x1e\x36\x86\x2a\xe7\xac\xe9\xd6\x5b\x9a\x30\x73\x1b\x1c\x2d\x10\x8e\x69\x6d\x9c\xfe\x93\x23\x35\x08\x2f\xb7\x87\x39\x1a\x69\xfb\xd1\x66\xba\x40\x9b\xa2\x09\x85\x47\x6e\x40\x6c\xa2\x75\x5a\x3b\x1e\xb9\xd4\x1f\xba\x0d\x36\x3b\x95\x5a\x6d\x32\xbb\x80\x94\x29\xad\x0f\x96\x33\x51\x3f\x3b\x4e\x1f\x76\x07\x2a\x57\x47\x1b\xd4\xc6\xea\x40\xcd\xd3\x3a\x6d\xf8\x1d\x99\x46\x69\x91\x57\x0a\xd1\xb4\xa0\x6c\x28\x9d\xf5\x6d\xb2\x64\x43\x94\xd6\x26\x96\xf5\x69\x6c\x68\x7d\xe6\x35\x3b\x70\xf8\x95\xd6\x89\x42\x03\xa0\xcd\xc1\x17\xb8\xab\xda\xe8\x69\x6e\x43\xd8\x03\xcc\x5e\xad\x76\x20\x28\xb1\xad\x76\x3a\xa0\x75\x7c\x70\xd2\xcf\x91\xc7\x59\xe3\x63\x9b\x53\x02\x8b\x50\xf6\xca\x86\xd6\x82\xac\x3b\x7b\x95\x6c\xef\x65\x5a\x35\x6d\xd0\x64\xe3\xb4\xc6\xc3\x0f\x65\xdb\x1c\x0d\x8f\x4f\x9b\xbb\xd4\xba\x60\x80\x86\x6d\x83\x71\xe0\x36\x6f\x83\x03\x91\x91\x64\x43\xe9\xce\xd2\xb4\x15\x02\x7b\x08\xe9\xd1\x12\xf0\x43\x8a\x85\xcd\x73\x1b\x91\xb8\x94\x5a\x1d\xa3\x47\x62\xa1\x8f\xca\xd3\x36\x25\x5e\x9d\xeb\x6d\x40\x22\x94\x4e\x18\x39\xa1\x35\x3a\x3b\x95\x5b\x9b\x74\xcc\x0a\x40\x85\x0e\xee\x03\x80\xbc\x95\x41\x6f\xfa\x36\x67\xf4\x8d\x6d\x7d\x48\x86\x27\xcb\x8c\xf4\x37\x93\xe9\x5d\xc3\x1a\x5c\xda\x84\xb6\x49\x98\x42\x40\x4c\x4e\xed\xf2\x70\x9f\xf7\x55\x7d\xf2\xce\xb7\x0e\xe0\x08\xdb\x96\xa0\x82\x6b\x4b\x56\x08\x1d\x77\x98\x72\xac\x51\x01\x83\xbb\xf3\xb9\x4d\x06\xb7\xc9\x58\xa1\x5a\x9f\x8a\xc3\xdf\x49\xe4\x74\xa9\x53\xc9\x7e\xa2\xe5\x35\xab\xc6\x87\x16\xfe\x49\xc0\x87\xdf\xc7\x84\xf1\xe4\xb3\xa6\x1c\x5a\x94\x2d\x0d\x49\x9b\x38\x86\x96\x69\x74\x22\x47\x9c\x16\x6c\xed\x3b\x96\x75\xb1\xf2\xda\x73\x4c\x43\x60\x6e\xac\xc2\x7d\x63\x47\x46\xc6\xda\xba\x04\xa6\xd1\xb2\xc0\x2c\x79\x15\x3c\xf3\x02\x63\x64\xb1\xa8\x38\x9b\x95\x8e\xf6\x91\x9a\xed\xa5\xb5\x39\xc9\x78\x74\x16\x87\x44\xe2\x40\x1c\x9a\x50\x54\x28\x6c\x2a\x3a\x63\xae\x8e\x51\xa0\xc9\x4d\x46\xe2\x9d\x8d\x08\xeb\xd6\x9b\xca\x57\xf3\x30\x11\x20\xbf\x69\xed\xba\xb2\x60\xcc\xe1\xc7\x9c\x80\x69\x0e\xf9\x01\x20\x42\xb5\xf4\x66\xb3\x20\xf9\xad\xd9\x0d\xda\x3f\xcd\xa4\x7f\x89\xc3\x7a\x76\x02\x85\x39\x4d\x3f\x85\x9c\x11\xc2\x37\x6e\x69\x28\x47\x31\x94\xf7\xb6\xc5\xcf\xc3\x7a\x93\xf7\x3c\x2c\x3d\x14\x88\x60\x94\x1a\xc1\x30\x77\x11\x0c\xb3\x1f\xc1\x38\xaf\xc2\xbb\xe7\x65\x5c\x77\x0b\x1a\x21\xac\x14\xb7\x62\xa5\x3a\x6c\x61\x0c\xe2\xe4\x21\x86\xd8\xaa\xf8\xfa\x5f\x97\x94\x94\xa5\xa6\x14\x49\xb9\xb8\x8e\x57\xe7\xbf\xff\xfc\xdf\xd6\x71\x3e\xfe\x3e\xb1\x29\xd8\x52\x58\xad\x0b\x39\x25\xf4\x17\x72\x4a\x26\x36\x73\xe7\x2b\xc2\xc0\xf9\xbf\x80\xcd\xfc\x9e\xae\x6e\x82\xbc\x2c\xb5\xbe\x90\xbc\x5e\x9b\x4a\x9c\xd9\xf2\x6d\xcf\x87\x75\x5e\xe9\x96\xf0\xd7\x89\xe7\x93\x63\x2c\x21\x32\x5a\x8d\x25\x2e\x1a\x63\x0d\x23\xcd\x12\x1b\xbb\xc6\x66\x29\x07\x0a\x6d\xfc\x04\x28\x8d\xdf\x3e\x43\x33\xbd\x01\x2f\xd6\x52\xa5\x74\xbc\x85\x6d\x8e\x8c\xaa\xab\x88\x51\x08\x9b\xde\xc3\x47\xf1\x3e\xbf\x05\x1f\x1d\x57\x3e\x1c\x29\xba\x01\xb2\x3e\x8c\xb3\x27\x48\xed\xd1\xf9\x3f\x9f\x9f\x8e\xc3\xe3\xf3\x7a\xc8\xd4\x22\x81\x83\x82\x10\xad\xa3\xed\xbd\xa3\xad\x1e\x6d\x6a\xc0\xb3\x76\x6d\xac\x65\x8f\xa9\xcb\xfc\xfa\x07\x85\xf0\xae\x01\xb2\x92\x75\x3c\x13\x9f\x65\x04\x74\x94\x53\x67\xad\x42\xbf\x1b\x68\x17\x5a\xdd\x37\xd1\x5e\x1b\x2b\x52\xf1\x18\xe9\xb8\x2e\x92\x84\xd9\xa5\xc0\xd1\x20\xdc\xb5\xe6\xc1\x47\xc7\xa7\x59\xf8\x8a\xd9\x69\x6a\x18\x63\x8a\x13\xeb\x0d\xbd\x0d\x74\xf1\x3e\x5a\xe6\x09\xa3\x81\xc8\x82\x24\xb8\x39\x4f\xa9\x39\x5d\x9d\xcb\x0f\x1d\x28\xdb\x61\x30\x86\xba\x15\x43\xcf\xc7\xea\x3d\x80\xb7\x01\x05\xff\x78\x1c\xff\xfc\xd2\xf5\x87\xe3\x8f\x55\x38\x62\x2e\x93\x49\xca\x2a\x93\x5c\xc7\xd0\x53\xa1\x10\xc0\x0e\x8f\x66\x8f\x01\x8e\x6a\x03\x1a\x49\x76\x5a\x1b\x01\x20\x63\x7d\xa2\xe9\xc0\x07\x32\x78\x99\xd9\x84\x97\xc0\x32\x48\x00\x3c\x0e\xec\x98\xf7\x8a\xb6\xc4\xd4\xcf\x49\xa5\x0e\x14\xd8\x8a\xf5\x1e\xcd\x00\x96\xd6\x70\xb5\x96\x96\x13\x32\x24\xdf\x82\x59\xb0\x8f\x03\x57\xd3\xd5\x33\xa5\x9a\x29\x90\x6a\x41\xd2\x2f\x84\xdd\x9e\x3f\x90\x49\x07\x69\x6a\x55\x22\xff\xf7\x30\x92\x9d\xc7\x05\x4d\x89\x13\x24\x39\xb2\x02\xa6\x07\x79\xd6\x15\x3f\x84\x6b\xbe\xa6\x57\x29\xd0\x5e\xba\x25\x4a\xe6\xda\xe4\x9d\x68\xe1\xf9\xf7\x55\xa4\x10\x5f\x57\x0c\xaa\x02\x84\x0e\xcc\x3e\x3b\xff\x33\x82\x13\x86\x8b\x91\x5f\xd6\x43\x47\xbd\xfe\xac\xa6\x2d\x9a\xa4\xea\x4f\xe9\x47\x81\xb6\xf9\x9c\x8e\x06\x09\xb1\xd5\x6f\x98\x84\x0f\x89\x6c\x4e\xcd\xf7\xa9\xf7\xa8\xb7\xce\xd7\xd5\xaf\x00\x88\x90\x1f\xd4\xdb\xe0\x74\xb9\x17\xfd\xac\xc7\x8d\xde\x6d\x88\xcb\xb1\xfb\xed\xd0\xf5\xc7\xa7\x5f\xd7\x00\xa0\x75\xb9\x8c\xc7\xa4\xbc\x4e\x9d\x90\xa2\xd3\x0e\xba\x58\x7c\x98\x60\xd8\x7c\xce\xea\xf3\xef\x49\x0f\x3a\x94\x14\x3b\x30\xf7\x4a\xc6\xa3\x62\x06\x9e\x8f\x38\x4d\x39\x81\x1d\x3e\x21\x9a\x8b\xd2\x95\x86\xbd\x4b\x33\x98\x9d\x46\x4e\x84\xb8\x84\xe4\x4b\xad\x12\xcc\xc6\x45\x62\x9a\xe4\x49\x19\xa6\xca\x80\x04\xef\x43\x55\xae\xe0\xd4\x76\x36\x59\x05\x62\x2e\x39\x03\xab\x25\x80\xd7\x81\x46\xd6\x8e\x66\x96\xb8\x06\x6d\xad\x62\xce\x37\x5a\x48\x20\x93\xf9\xf6\x0c\x25\xba\xdc\xb7\x6e\xfd\x71\x1d\x1a\xe0\xbc\x2c\x9a\x09\x8b\xae\x49\x7a\x7b\xfd\xfd\xcb\x2f\x8f\xdd\xba\xa7\xb9\x64\x86\x72\x58\x3d\x69\x75\x56\xb7\x2f\x0b\x7a\xae\xa4\xa2\x97\x6c\xbe\xb3\x12\xaa\xf4\xd8\x8a\xd3\x57\x06\x2d\xad\x3a\xfe\x3d\x72\xdf\x8f\xf0\x03\x0b\x58\x58\xa7\xe9\x5a\xd5\xfb\xfd\xf1\x6b\xd9\x29\x76\x8a\x34\xec\x52\xb0\xf9\xf3\x2c\x11\x0f\x19\x63\x0c\x17\x5a\x92\x7c\x0f\x41\xe6\xf9\xe0\x34\x96\xc8\x18\xad\x31\xa5\x49\xc1\xca\x8a\x82\x55\xd2\x53\x54\xc9\xaa\x4a\xeb\x70\xb5\x3c\x30\x65\x5c\xca\xb0\xcc\xb6\x27\x83\xd6\xaf\x0e\xf1\x23\x64\xb7\x71\x68\xf5\x2b\xbb\xa1\xde\x99\xf4\xbd\xb2\x28\x16\xd7\xb7\x6a\xf2\x20\xf5\xdc\x1b\x38\x6b\x38\xd4\x02\x0c\xe5\x82\x85\xbd\xf0\xe7\xc2\x7d\x62\x2e\xf4\x55\x42\x0a\x76\x2d\xe8\x87\x01\xed\x2c\xcb\xc2\x7e\x4e\x9d\xfe\xf3\xf7\x95\x85\x7f\xb6\xd0\x8c\x7c\x42\x92\x50\x73\x14\xc5\xcc\xbc\xe7\x48\x26\xf3\x0f\xc3\xb4\xf8\x99\x1e\x00\x5d\x91\xb5\xc8\x66\x98\xb0\x3f\x3e\x5f\x8d\xe1\x6c\xf4\x8e\xae\x81\x8d\x27\x6b\x5d\x04\x95\xfc\x95\xaf\x9e\x82\xe4\x55\xd2\x5d\x77\xf2\x12\x9f\x2f\x2b\xa9\x73\xfe\x3a\x63\x9c\x38\xab\xbc\x02\xf5\x74\xe2\xf4\x04\xcb\x3c\xe9\x7f\x3a\x1e\x4b\x86\x20\x3b\xda\x98\x14\x06\x11\x99\x40\x46\x74\xec\xed\xdc\x1e\x7a\x6e\x0f\xbb\x68\x0f\xcb\xed\xa1\x07\x21\x7b\x73\x30\x16\x02\xb7\x47\x08\x90\xe5\x66\xbb\xa0\xa8\xa8\x55\xb2\xca\xd8\xa4\x92\x27\x53\xc5\x81\xf7\xde\x5e\x9d\x65\x6d\x52\xfa\x9e\x68\x17\x6c\x78\xef\x9d\x1c\xbb\xbc\x21\x4b\xc4\x9f\x89\x5a\x60\xcf\x0e\xb8\x1c\x9f\xc6\x5f\x4e\x97\xc3\xcf\xc7\xe7\xfe\xf1\xe9\x70\x3c\x8c\xcf\xc7\xe7\xc7\xf3\xcd\x48\x7f\xeb\x1c\xa1\x85\x71\xca\x59\x8b\x4d\x7d\xe3\xb4\xe9\x7d\x18\x58\xe8\x63\xf0\x51\x52\x6b\x99\xe4\xdd\x44\x53\x85\x43\x8d\x53\xd1\x77\xf4\x98\xce\x83\x16\x3f\x04\xac\x0d\x4d\x00\xc6\xaa\xea\xa2\x70\xc4\xa1\x38\x15\x1c\x40\x72\xd4\x6c\x49\x89\x4c\xad\xe5\x8e\xb0\xba\x6b\x82\xaa\x5a\x7a\x6c\x30\x39\x66\xa3\x6b\x7c\xa4\xee\x80\x77\x21\x99\x01\x8c\x56\x8c\xcc\x73\x65\x13\x75\x33\xae\xc2\x7c\xef\xa9\xf1\xbe\x3e\x00\xdd\x55\xcc\xd5\xa5\x81\xad\xae\x81\xad\x2f\x7f\x05\x69\xb7\x49\xd4\x59\xc6\x24\x4e\x9b\x37\xd9\xf4\xd8\xc2\xa3\x27\xf1\x47\x1a\x18\xb6\x3c\x20\x69\xfe\xba\x1b\x15\x46\x3f\x9c\x2f\xdf\xef\xfa\x06\x65\xbc\x7c\xb1\x84\x96\x38\x4d\xb6\xf9\xc6\x96\xc4\x6b\xec\x59\x89\xe0\xd6\x60\x1a\x36\x6c\x55\x07\xc1\x9c\x0f\x8c\x30\xef\x99\xfb\x83\xa7\xf5\x6d\x3e\x32\xfc\x78\x56\xd3\xf6\x6e\xc0\x2f\x87\x8a\x56\x15\x8c\xa0\x80\x1a\x77\xf6\x06\x54\xa9\x61\x9d\xb9\xb4\x28\x13\x61\x06\xe6\xc9\x06\x5d\x73\x50\xc5\x31\x96\xdc\x96\xc2\x92\x11\xec\xf8\x07\xe5\x05\xc3\x3f\xcd\x82\x98\xd8\xd1\x39\xcc\x39\xf3\x8a\xa0\xa1\x29\x66\x10\x04\xf7\x40\xef\x74\x8c\x43\xe5\x19\xab\xf4\xce\x20\x30\x36\x22\x05\xe1\xd8\x91\x16\x79\x09\x29\xa9\xf7\x0e\xd6\x9b\x65\x97\xbd\x2f\xca\x17\xc8\xe3\x38\xa3\x1c\x78\x11\x92\x53\x31\x43\x9a\x0b\x84\x37\xe0\x46\xd3\x0b\x79\x57\x4e\xd1\x76\x7d\x13\x5d\x87\x11\x1c\x24\x28\x5f\x58\xba\xb2\x31\x8e\x81\x59\xe6\x61\xa7\xed\x4e\x4f\xdf\x1e\x9f\x7e\xbd\x43\x36\xad\xcb\x67\xce\x19\x9b\x07\x3c\xee\x00\x87\x82\xd1\x8b\x2c\x6d\x13\xb2\x32\x21\x0b\x0f\xf4\x44\xdf\xc3\x89\x9a\x06\x48\x66\xe7\xf9\xd7\x73\xce\xda\xc7\x9e\xee\x97\x61\x0d\xa9\x5d\x97\x2f\x05\xda\x56\x39\xee\x70\x1f\xd9\xfe\x03\x02\x41\xd3\x15\xd7\x80\xb7\x65\xe9\x4a\xdb\x8f\xf1\x35\x10\xb6\x95\xd6\xa8\xf5\x93\xc4\xd4\x3b\xfa\xa2\xda\x3a\xd2\x5a\xd2\x7a\xef\x3f\xd4\xcb\x1a\xd3\xf1\xb2\xa2\x43\xa7\x5a\x55\x35\x0c\x7e\x93\xb0\x64\xc8\x4b\xb9\xcc\x68\xe2\x34\x2e\x30\x10\x39\x41\xaa\xfa\xb2\x96\xd6\x10\x44\x25\x10\xab\xfc\x52\xd6\x2c\x29\xce\xce\x97\xd8\x3c\xf3\xf6\x4b\x8a\x1a\x13\xf9\xb3\xff\x57\x87\x7a\xf1\x7a\xb3\xea\xef\x5b\xe7\xb4\xed\x79\x38\x5f\x2e\x4f\xa7\x6f\x87\xb5\xe5\x34\x97\xcd\x40\x7d\xbf\xa5\x80\x8e\x6c\x13\xe6\xc4\xa7\xb9\x88\x31\x10\xfe\xca\xc0\x97\x9b\x54\xf3\x3d\x32\xa6\xe9\xae\x87\xa7\xf3\xf3\xd6\xd3\x70\xf9\x52\x93\x7d\x01\xf9\xb7\x29\x41\x96\xd0\xa7\xd7\x7f\xea\x79\xaf\xcb\x87\xbc\x2e\x73\xfa\x3c\x13\x66\x35\x0c\xea\x0b\x71\x2f\x97\x6f\x33\x75\x6a\x91\xf2\x50\x85\x1a\x26\xdc\x2d\x4f\x73\x9b\x32\xa2\x9f\xcf\xa5\x7a\x79\x3a\x5e\xba\xfe\x71\x05\xc9\x5b\x94\x89\xb3\xbb\xf0\x90\x2b\x8c\x85\xb7\x55\xc5\x08\xdb\x31\x4d\xaf\xa3\xb8\x05\xfa\xe4\x17\x5c\x4f\x09\x09\x10\x59\x79\x6d\xba\x58\xf1\x95\x40\x53\xaa\x06\x09\x97\x31\x7e\xda\xa1\x8b\x9f\xd0\x0e\xb8\xd2\xd6\xe5\xc1\x16\xe5\x42\x17\x55\x82\x2b\xd0\x2a\x4b\xff\xf6\xc8\xea\xd0\x50\x8e\x42\x54\x14\x3e\xd4\x9d\xa6\xf8\x76\x5e\xb5\xc2\xb7\x89\xcb\x20\x82\x66\xab\x2b\xe0\xf6\x01\xc1\x62\x50\x16\x5b\xab\xe0\x39\xd7\xd9\x44\x10\xcd\xc5\xcc\x89\x22\x68\x8f\x68\x61\xd6\x52\x4f\x4a\xc6\xb3\xa9\xc0\x0b\x2f\xcc\xfd\x09\x78\xdc\xab\x29\x76\x00\x0a\x0c\xee\x0b\xe7\x55\x31\x8a\x4c\x2e\x9f\xd5\x4e\x04\xea\xe5\xe9\x97\xf3\xf0\xed\x30\x9c\xc6\x71\xf5\xec\x8b\x52\xd9\x04\x79\x24\xbc\x63\xc5\x2a\x19\x9f\xa5\x2e\x1e\xf4\xd4\x31\xd3\x47\xcc\xaf\x5f\x30\x75\x9a\x30\xf0\x19\xf5\xfc\x4a\x4b\x87\x93\xf0\xd1\xec\x70\x45\xc8\x43\x7c\x5f\x93\xeb\xae\x4a\x17\xf4\x09\x9e\x6f\x3f\x51\xe5\x6d\x3c\x67\x05\xcb\x4e\xb7\xaf\x93\xfd\xd6\x93\xbe\xff\x68\xb7\xa9\xd7\xab\x9c\x6b\xe9\xee\x6b\x53\x34\xd8\x29\x3c\x56\x5b\xd5\xd8\x38\x34\xe8\x18\xe4\x5e\x3b\x49\x77\xb7\x25\xc2\x99\x39\x60\x5f\xd0\x31\xe7\x33\x75\xb5\x63\x9c\x8e\x31\xca\x8e\x0d\x17\x31\xe1\xa6\xce\x23\x54\x0f\x42\x56\x74\x54\x77\x16\x82\x54\xde\x91\xc9\x02\x5f\xb5\x97\xe4\x57\x61\x68\x06\x66\x8f\x45\x2e\xc8\xc2\x0e\x92\xc3\x56\x6a\xd4\x2b\x59\xa5\xc7\x06\x96\x12\x80\x9f\x31\x8f\xa6\xd0\x0e\x4e\xd9\xa4\x95\x1e\x42\x56\x51\x5f\x1b\x13\x76\x5e\x80\x71\x99\xaa\x8c\x6f\xf3\xf2\x17\x79\xcd\xcb\x91\x09\x82\xc5\x95\xe2\x97\x5a\x3b\xfc\xea\x46\x7f\x6d\x62\x40\x52\x45\x56\x36\x32\xc0\x2a\x4e\xce\x97\xc8\xbe\x08\xe6\x63\xa0\xff\x47\xfa\x94\x22\xb0\xa7\xc1\x13\x49\x2f\x01\x44\x95\xaf\x11\xd4\x35\x8b\xd9\x60\x72\xb8\x5c\x01\x7d\x0e\x0a\x74\x8f\x4c\x21\x14\x25\x92\x1d\xe9\x8a\xb8\xa0\xf2\x69\x04\x33\xa5\x61\xe7\x2e\x4b\x94\x64\xf6\x8a\x38\xb6\x0a\x1b\x8f\x20\x0d\x32\xbb\x99\x59\x98\x2c\xe3\x1c\x1f\x60\x20\xe7\x38\xf3\x05\x47\x50\x0b\x52\x0b\xec\x80\xd8\xaf\xa7\xcb\xe3\x2f\x8f\xa7\x6f\x87\x97\x71\x05\x31\xbc\x29\x9f\xb6\x05\xc6\x97\x41\xbc\x66\x75\x54\x37\x06\x7c\xbc\x5e\x0b\xb0\x73\x1a\xd9\x55\x1f\x65\x10\x51\x3c\xce\x79\xab\x1e\xce\x0c\x0e\xb6\x22\x08\x42\x78\x7d\x69\xca\x41\x7a\x4b\xb1\xca\x80\x97\xa2\x80\x29\xec\xba\x67\x11\x4e\xa4\x3d\xc7\xe1\xf1\xd7\xa7\xc3\xd7\xf3\xf3\xf3\xf9\xfb\xba\x36\x5b\xc7\x2b\xb9\xa3\xb0\x43\x2f\xf9\x1a\x5f\xdf\x61\x34\xb0\x86\x33\xb7\xe9\x73\xc7\x80\xbc\xb9\x71\x77\x7a\x7a\xbe\x6d\xe6\xad\xe3\x0b\x4e\xf2\x7b\xd6\x49\x7a\x30\xaf\xc3\x06\x0f\x52\x66\xa6\x85\xcc\x44\x0b\xe8\x26\x9d\x86\x89\x12\x65\x62\x57\x62\xb2\xf1\x2b\x53\x60\x7d\xe6\xf9\xd7\xec\xf7\x5b\x07\x27\xbe\x4c\x9f\xef\x9b\x54\x74\x9a\x98\x9e\x65\xc5\xc2\x05\x76\x01\x70\xcc\xbb\xfd\x67\x7a\xfc\x7a\xb9\xf5\x2e\x2c\xca\xe6\x4d\x49\x25\x99\x40\x92\x0f\xfd\x65\x92\xe6\x6d\x34\x59\x38\x5b\x89\x18\x8e\x49\x3f\x4c\x56\x37\x29\xaf\x92\x8e\xb2\x91\xbf\xc0\x3f\x59\xc7\x75\x38\x79\xb0\xc6\xbb\x27\x06\x55\xe3\xc5\xfe\x8e\xf7\x66\x36\x93\xbd\xf8\xed\x1f\x40\x56\x72\xb2\xea\xe5\x27\x3b\x6d\xf4\xed\x74\x06\xf7\xd9\xaa\x91\xe6\xc2\x29\xfd\xb2\xe6\x5b\x71\xd6\x23\x26\x90\x9a\x15\xe9\xe1\x1d\xa5\xaf\x1e\x7a\xb7\x95\xbd\xc3\xe6\x5c\xf3\xdb\xec\xb4\xb5\x59\x52\x1e\xdd\x3a\x72\xf9\xe5\xbe\xcf\x3f\x61\x41\x81\x35\xe7\x11\x99\x43\xf7\x7e\xd7\x1d\xce\x23\xae\xd9\x70\xfc\x7a\xba\xaf\xaf\x94\xae\x78\xd9\x11\xd1\x67\xc3\xd7\xf9\x7f\x0f\x89\x85\x3c\x30\x8d\xe5\x15\x4d\xfe\x4d\xf9\x1c\x61\xd3\x0e\x1b\xea\x12\x79\x63\x59\x22\x53\x05\xff\xe1\x1c\xcb\x95\x18\xfe\x1b\xec\x07\x95\x94\x04\x96\x35\xa2\x3e\x9e\x39\x49\x96\x30\x8d\x4d\x2e\x59\x3a\x69\x67\xa7\x87\x9a\x76\x2b\xdf\xec\x5c\x34\xfb\x67\xff\x9d\x03\xb0\x3b\x7e\xbf\xc1\x58\xad\x8b\xf1\xfc\x49\x53\xcf\x0c\x40\x70\xb9\x94\x67\x58\x14\xcc\x4a\x24\x45\x58\x16\xd7\xe4\xaa\xf8\x4f\x3d\xbd\x89\x22\xe6\x21\x6a\x01\x09\x80\x00\xba\x8b\xa3\x57\xbd\xf4\xc6\xd9\x3f\x5a\xbd\x5f\x8f\xdf\x4f\x87\xe3\x38\xae\x28\x39\xee\x8e\x08\x97\x05\x47\x57\xff\x24\xad\x83\x33\x7f\x41\xfe\x53\xe5\x80\xfa\xc4\x24\xf7\xc7\x85\x16\x36\x49\x56\xfe\x98\xd2\xc2\xf5\xf1\xf4\xf3\x70\xfc\xf5\xf4\xf4\xed\xb8\x6a\xef\x45\xe9\xcc\x4c\x46\xeb\xd9\x3d\x53\x5c\x35\xb7\xee\xf3\xb5\x1c\x1c\x84\x1b\x09\x5b\xf8\xc5\x7a\x4c\xb9\x28\x59\xdb\xa0\xa1\xad\x77\xe1\x60\x19\x92\x2b\x6f\x6e\xb3\x20\xbb\x5b\xdf\x66\x1a\xb9\xcb\xbb\x58\x8e\xb9\xe1\x2e\xfb\xcd\x71\xb9\x1c\x7f\xbf\x6b\x0d\x2e\x64\x17\x40\x32\x93\xcf\x85\xd6\x4c\xd6\x8a\xc3\x9c\x88\x74\x61\x0d\x3b\x89\x4b\xc9\x92\x4b\x89\x59\xbc\xe5\x27\x8b\x63\xfb\x0f\xd3\x1d\x2f\xe7\x97\xf1\x66\xc5\x59\x95\xcf\x09\xd3\xd9\xf7\x3c\x5b\x05\x78\xd3\x00\x41\xf0\x8e\x57\x7b\x17\x96\xc7\xd8\x0b\x07\xb6\x14\x50\x1d\x23\x4a\x03\xcd\xf9\x8f\x3c\xd2\x79\x78\xf9\xfe\x74\xf7\x40\x52\x3a\x59\x46\xd4\x0c\x4c\x65\x90\x04\xef\x76\xdb\x10\xab\xa3\xcc\xe2\xb6\x7d\xe8\x03\x8f\xf4\xfd\x97\xbb\x2e\x93\xc2\x99\x94\x55\x73\x1b\x64\x6e\x1e\x6a\x05\x64\x8e\x73\x0c\x73\x3e\xc2\xde\xc7\x5a\x1c\xa5\x38\x4e\xb6\xee\xed\xd9\x71\xf3\x1a\xc8\x55\x67\x5d\x9f\xba\x55\xac\x97\xc6\x83\x4c\xd7\xc5\x83\xd4\x5c\xf5\x8d\x07\xa9\x17\x11\xfd\x9e\xfa\x20\x1b\xd7\x8e\x5b\x77\x7c\xa8\x58\xc6\xf5\xa5\x3f\xd2\xa4\x3f\x8e\xdd\xf3\x46\xa3\x72\x71\x45\xfa\x51\x65\x20\x99\xcb\x16\xa3\x0e\x6c\x65\xa2\x33\x75\x02\xd9\x05\xd3\xc2\xfb\x32\xcb\x7d\xd7\x23\xec\xca\xf6\x65\xdf\x1d\x8f\x9b\x7f\xbb\x7f\x2f\x67\x8c\xa5\x67\x62\x03\x3c\x0b\xe6\x5f\x1d\x98\x75\x84\x69\xe1\x3f\x30\x75\x7d\x6e\x4e\x59\xcf\x5c\xa0\xfa\xa2\xf9\x7d\x71\xfb\xfd\x0a\xf5\xa7\xe3\xb7\x9b\xec\xc9\x9b\xf2\x3d\x69\x00\xe1\xbe\x58\x4b\x03\xf0\x6e\xf3\xca\x7c\x15\xd3\x4f\xde\x94\x12\xd8\x7d\xcc\xe1\x71\xbc\x1b\x08\x5c\x36\x73\xeb\x6a\x16\xc5\x66\x5e\xb0\x20\xa3\xba\xd8\xfa\x6a\x2c\x8f\x09\xd8\x8c\x87\x2a\x1f\x88\x72\x20\x87\x69\xac\x2e\x5e\x3c\xa9\xcf\x7d\xe9\xfd\xbb\xb1\x5b\x97\xef\xe7\x6f\x2f\xc3\x5d\x83\xd7\xd2\xfb\xd9\x8b\x83\x45\x3a\xcd\xc3\x9a\x9a\x1c\x20\xba\xe5\xe1\xd7\x1a\xa2\xda\x3a\x54\x67\xb6\x8d\x43\x32\x1d\x6e\x1f\xd9\xbe\xd3\x6e\x15\xff\xcf\xcb\xe3\x70\xd7\x5f\x52\x38\xf9\x58\xd0\x61\x6e\x12\xb3\x72\xf2\xde\xbe\x53\x8b\xfd\x99\xfb\x0f\x3c\xeb\xf8\x7c\x39\xdd\x58\xe2\x8b\xd2\xd5\xe8\x8f\x93\x16\x7b\x94\xad\xec\xa2\xf1\x56\x47\xf7\x6f\xfb\xf3\x74\xfa\xed\xf6\xa6\x5c\x36\xf1\xf5\x7a\x1d\x36\xc1\x39\xbc\xb3\xd9\xda\x00\x44\xff\x51\xd2\xdd\x3a\x2f\xcd\xf7\x58\xcd\x4b\x8b\x7b\xdc\xcc\x4b\x8b\x5b\xac\xc0\x4a\xf1\x1e\x5c\x04\xef\x0c\xeb\x99\xbf\x71\x8f\x87\xfd\x9b\xec\xd7\xe3\xfd\xa6\xfe\xf5\xe9\xf4\xfc\xbc\x7e\xdb\x6a\xd1\x92\x2d\x78\x06\xf4\x04\xc1\xcb\xd9\xcc\xa9\xf4\x88\x64\xd6\x02\x33\x21\xf8\x00\xfd\xb1\x99\x53\xe9\x99\xc9\x49\x40\xdc\xff\x8e\x2d\xf6\xf8\xf8\xf5\xf1\x06\xdc\xbd\x2c\x5c\xe1\xf7\xee\x19\xb3\x6e\xd5\x0c\xc6\x37\x55\x10\x04\x2f\xe4\x4b\x17\x10\x8e\x61\x99\xb1\x49\xf0\x7f\x21\x4b\xa6\x26\x1d\xb2\x95\x3e\xd9\xb8\x50\x25\x53\xf2\x36\x87\xa8\xbc\x89\x1d\x95\x68\x65\x4a\x06\x76\xc8\x02\xc8\x1f\x35\xe3\x35\x8b\x9f\x88\x6a\xd1\xa0\x7c\x6c\x6c\xc0\x6f\x14\xb9\x84\x4e\x76\x49\x15\x2f\x80\x7e\xad\xa4\xf4\xf5\xe1\x63\x8d\x77\xb7\xcf\x5d\x1f\x90\x46\x74\x70\x73\xb9\x4d\x86\x42\x7a\x05\xa2\x51\x4e\xbb\x0e\xfa\x8f\xb2\xdd\x75\x32\xee\xd9\xff\xcd\x92\x6e\xab\x46\xe8\xa0\xca\xe4\x9c\x0a\xca\xd3\x20\x14\x09\xca\x2a\x25\x59\x98\x4d\x80\xee\xb5\xc5\x72\xd8\x41\x87\x4d\xf2\xbe\xbc\x48\x36\x9a\x4a\xaf\x7c\xb3\x27\xa7\x51\xd7\x96\x0c\x3f\x70\x1b\x33\x1c\xf0\xb9\x35\xce\x42\x57\xcb\x6a\x1d\x81\xff\x4b\xe6\x01\x34\x82\x2c\xdc\x20\xee\xc3\x02\x38\x67\xd7\x70\x4f\xdd\x35\xbe\x49\x70\xa4\x04\x95\xb2\xca\x20\x6e\x43\x4a\x78\xd0\x48\x9a\x6f\x7d\xc1\x26\x36\xb7\x31\xb8\xa4\x5c\x69\x9d\x8f\x1c\x88\x09\x82\xb1\x67\x2b\x08\xa1\x06\x80\xd5\x39\x51\x29\x0f\x48\x84\x8b\x9d\x85\x16\x55\x40\xca\x01\x4d\xc5\x61\x1a\x32\x49\x86\x8c\x97\x21\x03\xbe\x68\x81\xe6\x01\x96\xe7\x58\x77\xb9\x89\x56\x45\xdb\x05\xc9\x0b\x0f\x2a\x2b\x30\xb5\x84\xa2\x6e\xc7\xee\xfb\x58\x92\xeb\xf9\xb1\x3b\x1d\xba\x7e\x05\xd5\x58\x16\x4e\xbb\x00\xc0\xee\x92\x61\xc7\x76\xcc\xd7\x98\x05\x4e\x00\x55\xf7\x64\xae\xb1\xfc\xcf\xd1\x87\xe1\x89\xbf\x1f\x1f\x87\xdb\x5a\x70\x19\x57\xa2\x04\xa6\x3a\x30\x4a\xab\xe4\x95\xf3\xf4\x6f\x0a\x23\x8d\xd1\xc4\xb8\xc7\xe4\x11\x01\x6b\x04\xbd\xd8\x24\x3f\x3a\x46\x43\x4e\x42\x02\x26\x2d\xae\x12\x70\x95\xc0\x57\xf1\x4a\x90\x93\xb8\x8a\x97\xab\x78\xbe\x4a\x85\x43\xf2\x55\xe8\x59\xa8\xa2\x31\x4c\xb0\x78\xbb\x84\xc5\xdb\x1b\x58\x7c\xdf\xd8\x94\xbb\x26\x86\x7b\xe0\x7d\x1e\xe5\xa7\x6b\x80\xbc\x9d\x00\xf2\x2c\x80\x28\xb1\xaa\x20\xf9\x13\x29\xf4\x25\x82\xd1\xd2\xf2\x20\x45\x74\x2b\x71\x9a\x5c\x0c\x33\xe8\x1e\x80\xfe\x9d\xb6\x1f\x5e\xbe\x9f\x6e\xc1\x48\xab\xd2\x29\xdb\x8d\x66\x1c\x00\x69\x78\x9f\x48\x56\xf4\x50\x07\x2a\x36\x97\x6c\x4b\x95\x50\xf3\x13\xa0\xc2\x66\x55\x93\x84\xe9\x3b\xc7\xab\x49\xb6\x73\x9c\x0e\x02\xf9\xdc\xac\xf8\xc0\x47\x1e\xf2\xfb\xcb\x7a\x51\x5d\x96\x4e\x09\x67\x78\xc8\x38\x54\x16\xc5\xfa\x90\x51\x1e\xf2\x03\x01\x2f\xbe\xec\xcd\x2c\xbc\x28\x9c\x96\x31\x08\x9c\x82\x89\x3c\x28\x1f\x5e\xbf\x14\x03\xb1\x0d\x07\xed\x97\x90\x66\xff\x23\x10\x95\x1d\xbf\x3c\x19\xe8\x33\x38\xd4\x30\x27\x96\xab\xf7\x9d\xc9\x0a\x83\xd1\x78\x24\x3c\x06\x04\x99\x0b\xbd\x9e\x50\xd3\x5f\x37\x71\x8f\x39\xc4\x68\x9a\x6b\x0d\xc7\x42\x24\xdd\x22\x23\x8d\xdc\x00\xe8\x40\x35\xe6\xf8\x68\x16\x7d\x44\xba\x6d\xa9\xf9\x93\x99\x45\xaa\xd8\x1f\x1a\x25\xfd\x34\x17\xce\x9d\x74\x1d\xd2\x6d\x8c\x51\x2e\xd2\xbf\x60\x59\x63\x65\x21\x8c\x47\x0c\xe4\xc2\x58\x4e\x37\xd0\x70\x0d\xf6\xea\xd3\xd4\xb1\x9c\xee\x4d\x1f\x1f\xeb\xd8\x15\x04\x6c\x51\x36\x45\x52\xbc\x77\x6f\x55\x63\xc4\xd3\x9b\x98\x2b\xf3\x4a\x4e\x60\xe7\xb7\x08\x1c\xe9\x08\x81\x26\x6e\x8c\x71\xa3\x75\x66\xc9\xa4\x3a\x5e\x8d\x8c\x57\x77\x37\x5e\x57\xd5\x12\x07\xc3\xfe\x0b\xf1\x6e\xfd\x7f\x3c\x1d\x7e\x3b\xad\xec\xa5\x5a\x32\x67\x50\x1a\x37\x99\x75\xdb\x59\x09\x63\xe3\xed\x92\x24\x68\xca\x47\x10\xed\x38\x9b\x34\x73\x69\x91\x05\x5c\x43\xd9\x93\x3f\xa8\x6f\x0a\x0b\x32\x02\xc4\xb2\x48\x36\xa4\x3f\xba\x86\x13\xd2\x6f\xb2\x45\xc6\x39\xeb\x10\x86\x6c\x88\x30\xc3\x3c\x53\xe6\xf3\x4f\x77\x2b\x3e\x9c\xbb\xdf\x6e\x6a\xce\x45\xd3\x6e\x2d\x32\xd4\x78\x2b\xde\x81\x86\x76\xca\x68\xcb\x64\x47\x9c\x23\x0e\x3b\x82\xfa\x11\xa9\xd3\x89\x19\x9d\x62\x4d\x9d\x4e\x9a\x29\xbb\x18\x58\xda\x81\x20\xc9\x30\x1c\xbb\xf2\x33\x2c\x12\x84\xfc\x94\x20\x44\x96\xa9\xf1\xc8\xfa\xa2\x4f\x2a\x28\x51\x92\x83\x3c\xf7\xcf\x8d\x78\xad\xbe\x36\xc1\xbf\x65\x74\x73\x3e\xef\x1b\xde\x63\xef\x1e\x18\x6e\x6a\xf3\xbc\x0f\x33\xfc\x61\x2d\x9c\x2c\xd6\x74\xa0\x2d\x71\xcc\x2d\x41\xd6\x85\x2d\x9d\xcd\xca\xe1\x19\x12\xcd\x42\xca\x18\x5a\x0b\x60\x97\xc0\x7a\x83\x9a\x54\xb0\x98\xb3\x0c\x5c\xe6\x92\x75\xc7\x89\xf6\x2e\x8d\x0c\x99\x97\xbc\x7b\x87\x8c\xdd\x3e\x59\x0e\xa9\x7a\x9b\x36\x9f\x26\xbf\x9d\x60\xa2\xe3\xd6\x9e\x0d\x3f\x90\x2d\x9b\xe5\xff\xae\x46\x3f\xcc\x9c\xd0\x22\x50\xb6\xd6\x27\xa3\x67\x79\x77\x38\xfd\x3c\x0e\xc3\x8f\xe3\x8f\x55\xfc\x7f\x51\x36\xc5\xfc\xb1\xf3\x0f\x7a\xa5\xb7\xb4\xad\xcd\x08\xd9\x23\x36\x89\xe8\x3d\x9e\x55\x90\xde\xc4\xe8\x4d\xea\x4e\xef\x1b\x52\x2b\xf9\xa5\xe5\x8f\x5c\x24\x63\xdb\x6c\x07\xc9\xc7\x0f\xf2\x49\x8b\xaf\xc6\x05\xc0\x56\x52\x79\x18\xbc\x53\x21\x31\x88\x25\xcc\xee\x26\x2c\x5d\x8b\x47\xb9\x37\xda\x96\x4d\xb4\xd3\xf6\x97\xa7\xc7\xa7\x5f\x57\x2d\x2f\x25\x93\x57\x41\x3c\x56\x8d\x40\x28\xaa\x22\x40\xd5\x8b\x5c\x30\xdb\x82\x2b\x72\x20\x5b\xde\xeb\x80\xcf\xc6\xeb\x00\xf2\xe2\x9d\xa7\x78\xee\xfa\xd5\x33\xe0\xbb\xe4\x3f\xe4\x3a\xc3\x6f\x08\xe8\x8c\x9f\xcf\xa2\x96\x98\x8d\x64\x7b\x8b\x1a\x0d\x4d\x47\xcc\xbc\xe9\x3c\x53\x62\x1a\x24\x06\x27\x8d\x6f\xc6\xda\x8e\x76\x03\x90\xf9\x0d\x20\x9f\x88\x41\x19\xe7\x47\x4b\x0b\x14\x4d\x76\xf4\x6d\xe0\x53\x7b\xfa\x99\x5c\x83\xd3\x19\x0d\x26\xb3\x5c\x59\xea\xde\xdf\x8a\xa3\xf6\x87\xe1\xf8\x7c\xf3\x46\x2c\x4a\xc5\xe7\x07\xe5\xba\x81\x2c\xc9\x3c\xd0\xb2\x1a\xf2\xd5\x18\x50\xc9\x5f\x17\xea\x42\xc8\x3a\x4e\x53\xd6\x71\x5c\x66\x1d\xc7\xed\x6c\xca\xb8\xc8\xa6\x8c\x1f\xce\x3a\xfe\xf9\xf5\x70\x7c\x79\x5e\x62\x30\xa7\x12\x1e\x4c\x16\x0e\x93\xde\x33\x0c\x11\xba\x61\xc8\x86\x60\x44\x53\xef\xcd\x60\x68\x74\xf7\x51\xd2\x26\x5c\x74\xbd\x2b\x30\xc1\x70\x02\x92\x3a\xe8\x5d\x72\xcc\x13\xd1\x18\xa7\xfb\xc6\xd1\xc6\x54\x95\x0e\x96\x76\x88\xbc\x04\x16\x64\x77\xd3\x14\x1d\xde\x90\x70\xba\x49\x7c\xef\x40\xd1\x63\x34\x30\x57\xca\x38\xe4\xc8\xf5\x26\x0e\x18\x1e\x2e\x0c\xb8\x6f\xe8\x9d\x1f\xf8\xce\x88\x48\x45\x65\xbd\x1d\x2c\xed\x57\x07\x4b\x2f\x6d\xee\x1b\xff\x3e\xe9\xc2\xcf\xaf\x87\x6e\x38\xbf\x7c\xfb\x7d\xdd\x4e\xb5\x4c\xe2\xc4\x4e\xd9\x92\x3b\x10\x28\xab\x52\xb0\xbc\x17\x30\xc1\x44\xd9\xff\xdf\x4b\xb6\xd3\x4e\x25\xbd\xb1\xe6\x93\x81\x19\x59\x75\x91\x76\x3d\x64\x49\xa5\xce\x26\x15\x0c\x0d\xe6\x9c\x94\xf1\x56\xe5\xd4\x81\x19\xc6\x80\x20\x87\x76\xc7\xb8\xc0\x6e\x75\x1e\x9f\xba\xe3\xd3\xb7\xd3\xd8\x9d\x56\xd2\x9d\x77\x47\x04\xa7\x40\x0f\x04\xa2\x11\x5b\x06\x66\x93\x99\x91\x71\x78\x35\x73\x46\xc0\x51\xc0\x88\x5e\x68\x4b\x5c\x4a\x9d\xec\x49\xe0\x2b\x71\x22\x35\xff\xb9\x3c\x59\x9f\x94\x8d\x2a\x67\xfa\xb1\x31\xfa\x6a\xb4\x93\x90\x8e\x76\xec\xc0\xce\x79\x71\x6b\xb8\x24\xc1\xa3\xe2\xae\x91\xd1\x6d\x51\x74\x49\x12\xd2\x6d\xa9\x06\xae\x4c\xa8\x57\xd4\x67\xbf\xc1\x2e\x8f\xdb\xcd\xb5\x28\x97\x8d\x5b\x54\x59\x72\x64\x90\x60\xe5\x2a\xc0\x16\xf7\xf7\x46\x54\x9c\xef\xdb\xd1\xf1\xd3\x35\x8b\x07\xe3\xc7\x74\x42\x9d\xe0\x78\xea\x9e\x2a\x25\x14\x30\x3e\xad\xeb\x52\x31\xba\xdc\x0a\x81\x93\xbd\xa4\x0d\xae\x51\xb4\x5c\xac\xe6\x84\x27\xa4\x1f\xb1\x73\xbe\xbc\x6f\x3b\xff\xfc\x7a\x18\x5f\x9e\x9e\x6e\xde\x01\x29\x62\x3c\xc8\x3b\xcd\xfb\x46\x8f\xc0\xff\x53\xc2\x4c\xaf\xb1\x5c\x0d\xc6\x0f\x8c\x8f\x1b\xcb\xf8\xed\xe1\xf8\xfe\x18\x76\xdc\x33\xeb\x06\xe4\xde\xe3\xb6\x0f\x5a\x2f\xda\xb0\xaf\x71\x31\x1e\x79\x0f\xcb\xa1\x67\x68\xf7\xa9\xcb\xba\x1f\xf3\x07\xa4\xbb\x7f\x2e\x93\xb0\x7f\x76\x8b\x54\x5a\x76\x1b\xdf\x81\x71\x47\xb1\x1f\x90\xa7\x27\x49\xd7\x95\xb2\x74\x0d\x11\xe6\xcc\xd8\xbf\xe0\x32\x88\x70\x73\xab\x62\xd0\x44\x3f\x04\xaf\x4c\xb4\x1d\xf8\x1c\xac\x83\x51\x6c\x94\xd3\x7d\x05\xbb\x30\xc9\xab\x67\x8e\x77\xe8\x8f\x45\x2b\x52\x05\xd4\x5f\xb4\xce\x21\x13\x52\x63\x11\x14\x17\xcc\x8d\x2b\x3c\xbe\x01\x60\x31\x49\x56\x4e\xfa\xf5\xce\xde\xf7\xe7\x69\x09\xb5\xc6\xb7\x09\x74\x82\xf8\x0e\xad\x56\x99\x61\x67\x2c\x4a\x63\xe1\x4b\x66\x95\x28\xc7\x41\x6d\xa0\x1d\x84\x13\xe6\xfe\xc0\xbf\x41\x3e\xf6\xe7\xe9\xeb\x1d\xb2\x69\x51\xb6\xd6\x1b\x32\xae\xb2\x01\x19\xb7\x60\x03\xb2\x73\x2e\xfd\x2a\xb0\x11\x3e\x9f\x3c\x72\x53\x05\x66\x03\xda\x9b\x69\x4e\xa7\xdf\x4e\x2b\xa9\xe3\xa9\x64\x09\xb3\xd8\xd4\x29\xf3\x11\xaa\xc0\x8d\x34\xb1\x13\x16\xdf\x08\x29\x3e\x51\x72\x87\xcb\x34\x63\x9c\x07\x83\xe3\x51\x5f\xfd\x5b\xb8\x40\x4e\x38\xd8\x52\x54\x46\x3e\xf5\x36\x67\xf0\x6d\xa8\x67\x4e\x19\xe2\x9f\xbc\xc7\x9f\xcb\x9b\xce\x92\xaf\xd1\xdf\xbf\x0a\xef\x37\x5c\x7f\x7c\x1e\xfb\x55\x36\xd7\x5c\x24\x6e\x34\x84\x6f\xba\x90\xc4\x72\xf2\x01\x1f\xb4\xaf\x67\xc6\x3a\xcf\xa9\x14\x56\x65\x4e\xaf\xe1\x20\x91\xa4\x0f\xc0\xac\x09\x23\x42\x03\x30\xac\xc9\xaa\x66\x57\x4e\x62\x4b\x3b\x21\x77\x39\xa6\xd7\x2f\x36\x67\xe5\x4b\xee\x40\x23\x96\x94\x71\xec\x12\xe0\x3f\x2c\xef\x64\x8b\xaf\xa4\xd5\x7a\x22\x3c\xd2\x42\x78\x14\xab\xd9\x07\x91\x4c\x4b\x36\x00\xfd\x34\x16\x65\x8a\xbe\x36\x70\x39\x78\xcf\xa9\xf3\x05\x56\x62\x2a\x63\x72\x34\xe1\x24\xa7\x12\x28\x1c\xa0\x74\x18\x61\xee\xcb\xe7\xfb\xed\xf7\xf8\xed\xd7\xd3\xf3\x32\xab\x67\x2a\x91\xb9\x38\x28\x9f\xe2\x60\x78\xa7\x60\x86\x46\xfe\xd2\x7d\x71\xec\xdb\x87\x97\x9f\xfe\x48\x99\x8e\xc2\x7a\xbb\xc2\xc6\xac\x07\x10\x06\x28\x4e\xa4\xcc\xe6\xa2\xfa\xeb\x9d\x27\xfc\xe5\x71\xf5\x78\xf4\x75\x26\x70\x77\x60\x4f\xce\xb4\xf5\x8f\xf8\x28\x59\xe9\x4a\x3e\xd0\x31\xc9\x1c\x19\xd9\x01\x9f\xd6\x78\xa5\x05\x3f\xe1\x4b\x47\x0b\x74\x50\x05\x2d\x48\xcb\xa9\x1e\x26\x99\x73\xd6\x3b\x83\x64\x8f\xb1\x45\x71\xf8\xbe\x28\x8f\x54\x17\x99\x04\xba\x4a\x24\xa4\x1a\x9b\xd8\x15\x48\x2f\x81\xda\x59\xf4\x1e\x7f\x79\xbc\xf5\x4c\x2d\xca\xa6\xc4\x57\x6a\x22\x67\x19\x9e\xfe\x2e\x66\x12\xf9\xe4\x88\x7c\x17\xde\x24\x6c\xc1\xfc\xf2\x5b\x92\xb6\x48\xf4\xbb\x8f\x4a\x57\x37\xca\x0c\xf2\xe3\x87\x59\x0b\x6b\x8d\x81\x65\xec\x41\xa9\xed\xae\x4c\x91\x40\x2f\x86\x2e\x68\xfb\x4a\x38\xed\x45\x75\x88\xfe\x61\x71\x96\x44\x33\x56\x19\x1a\x98\x43\xde\x3c\x90\x3d\x84\x75\x15\x2a\xe9\x4c\x67\x38\x9a\xcc\x3c\xaa\x96\x37\x4c\x03\xac\xa3\x14\xbb\x26\xc2\xab\x66\x99\x75\x5d\xed\x0f\xa0\xc3\xf3\xe9\xb9\x3f\x5d\x6e\x9c\x08\x37\x07\x66\xaf\xbb\xcf\x6f\x50\x60\xc1\x8a\x17\xb7\x8c\xe1\xbd\x0d\x55\x8a\x1e\x0d\xbc\x3b\x5d\x20\x43\x60\x52\x08\x57\x06\x52\xfc\xf2\xce\x4f\xaf\xfc\xf4\xc6\x37\xf5\x95\xaf\xc0\xd4\xe8\x14\x62\x7b\x46\xf8\xdb\x7c\xe6\x7d\xbe\x4b\x60\x55\x72\x93\x78\x53\x94\x3f\xb8\x9b\x4c\x56\x77\x34\xf5\x2c\xe9\x52\xd5\xd1\x69\x7f\x98\x25\xf6\x6d\x8c\xc1\x55\x5d\x7a\xe8\x2c\x82\x8c\xd5\x25\xa3\x92\x17\x36\x9d\xf7\xc4\xe9\xc5\xad\x0f\x7f\x6e\x11\xd2\xc5\xf9\x31\x1d\xd3\xd4\x72\x20\xbd\xc1\x06\xc6\xb0\xe6\xef\xda\x6e\x1d\x6f\x6d\x5f\x61\xc8\x49\x5b\x6a\x9c\x1f\x50\xf2\x97\x15\xec\xfd\xa1\x70\xbe\xac\xde\x3a\x7c\x5d\x6a\x59\x71\xc2\x74\x94\xf4\x52\xc1\xb8\x65\x2f\xb6\xc1\xc2\xcd\xe6\x00\x5e\x9f\xb2\xd3\xf2\x96\x79\xe3\x6f\x7c\x7e\xee\xca\x3f\xb1\xa0\xf9\x9d\xcc\x1b\xa4\xb1\xce\xc5\xd5\x3b\x96\xe3\xe2\xae\x79\x72\xee\xf1\x83\xbd\x5b\xc9\xcb\xf1\xc7\xff\x9f\xba\xb3\xdb\x4d\x1c\x06\xa2\xf0\x7d\x9f\x82\x17\xb0\xc0\x0e\x71\x6c\x09\xf1\x2a\x11\x85\xd0\x6c\x37\x34\x6d\x03\x2c\xed\xd3\xaf\x3c\x33\x49\x4e\x4a\x05\xb3\xd2\xde\xf4\xa2\x6a\x71\xf2\xb5\xd8\x2e\x8e\x7f\x66\xce\x29\x8f\xd5\x65\xf2\x4c\x1c\xcb\xd0\x0b\x6a\xbb\x4c\x0f\x45\xe9\xdd\xde\x38\x7f\x6a\xa4\xdf\x3b\xf0\x88\x0c\x04\x4b\x3a\xf0\x5e\x5a\xb8\x73\x68\x50\x1b\x17\x38\x45\xbd\x08\x43\x58\x0e\x06\xda\xd5\x5f\x82\xea\x30\xab\xfc\x66\x15\x3f\xda\xd3\xf1\xf4\x58\x95\x5d\xb5\x79\xdf\xd6\xd5\xae\xdc\xb7\xb8\x0b\xf5\xfd\x65\x14\x88\x69\xfa\x4f\x10\xa9\x81\x9a\x6c\x3c\x54\x39\x93\xbb\xcd\xcc\x53\xff\xd1\x3f\x75\xce\xe2\xa2\x86\x4c\x1b\x32\xd2\x71\x63\x9d\xa9\x82\x56\xf4\x36\x36\x2c\x06\xca\x0e\x40\x8e\x32\x12\xe9\x38\x7f\x9b\xa7\xe6\x89\x7e\x10\x78\xeb\x46\x65\x37\x7a\x25\x5a\x6f\x86\x8b\xea\xf4\x29\x22\x3d\xf4\xbc\x31\xc1\xcd\xc8\x80\x9e\x95\x71\xbc\xa3\x89\x80\x7c\x75\x34\x9f\x90\xb2\xde\x7e\x46\x16\x1d\xa4\x46\x93\x86\x90\xb8\x68\xfc\xcc\xf8\xfa\xce\xe1\xec\x67\xdb\x1e\xa6\xa9\xf9\x43\xc9\x98\xa8\x12\xe3\xe8\xc3\xc4\xba\x96\x86\x0d\x2d\x59\x61\xc0\xd9\xde\x85\xc9\x38\x2b\xa6\x67\x36\xfb\xc7\xda\x77\xf2\x23\xbf\x12\xaf\xc3\x69\x47\xb9\xbe\xa3\x68\x00\x3c\xa7\xc5\xeb\xcd\x8e\x2a\x38\x78\x23\xcd\xa0\x2c\x7f\xb7\x59\xe8\xae\xda\x32\x48\x5b\x06\xba\x87\x4e\x1f\x33\x89\x67\xf1\xc3\x6f\xd4\x37\x66\x7b\x3a\x7e\x6d\x4d\x2a\x9a\x1c\x1f\x73\x9c\x9f\x95\xf0\xed\x1f\xdf\x68\xff\xa1\xcd\xca\xc3\xe6\xf5\x9b\x76\xe3\xe2\x31\xfd\x2b\x3a\xb0\xc6\x16\x99\x0e\xef\x66\x9e\xac\xed\x33\xdb\xa4\x37\xed\x5d\xef\x7d\xcb\xfa\x14\x72\xab\x59\xc6\x74\xd9\x3b\x71\xc1\x27\x90\xac\xe1\x24\x90\x5b\x6c\xbe\xd9\x0e\x29\xdd\x4c\x97\x65\x84\x48\xb7\x27\x78\x30\x03\xbb\x96\x0b\xe1\xbf\x2d\xfa\xc2\x0d\xbd\xab\x9b\x55\x47\x81\xf9\x4c\x2a\xb9\xb8\x33\x79\xc4\x25\xe2\x4e\xc9\x94\xc0\x94\x4a\x06\x87\xd3\x77\x25\x83\x7b\xea\xad\x92\x99\xc8\x70\x28\x19\xcc\xa8\xd9\x28\x19\x5c\x42\xfc\x52\x32\x38\x2a\xbe\x28\x19\xdc\xd0\xda\x2a\x99\x13\xe6\xc3\x2b\x19\x8c\x52\xa9\x94\x0c\xae\xf2\x3a\x25\x83\x01\x53\x8d\x92\xc1\xa8\xe3\x83\x92\xc1\x8d\xaa\x47\x25\x83\xfb\xb2\x1f\x4a\xe6\x0f\x4e\x8a\x94\xcc\x05\x98\x8b\x92\xc1\xb1\xec\x55\xc9\xe0\xe1\x62\xad\x64\x70\x3d\xf3\xa4\x64\xde\x80\x79\x53\x32\xcf\xc0\x3c\x2b\x19\x8c\x6e\xda\x2b\x19\x54\xbc\x39\x2b\x19\x9c\xd2\xff\x56\x32\x9f\xf8\xac\x51\x32\x16\x18\xab\x64\x1c\x30\x4e\xc9\x2c\x81\x59\x2a\x99\x1c\x98\x5c\xc9\x78\x60\xbc\x92\x29\x80\x29\x94\x4c\x04\x26\x2a\x99\x00\x4c\x50\x32\xe8\x0f\xb5\xb8\x66\x56\xf3\x7d\xfb\x72\x5c\x3f\xac\xe6\xbb\x6a\xdf\xad\x57\xf3\xee\xfc\xb4\x7e\xf8\x1b\x00\x00\xff\xff\x72\xc3\x47\x2f\x3a\x4c\x04\x00") func vendor_material_icons_materialicons_regular_svg() ([]byte, error) { return bindata_read( _vendor_material_icons_materialicons_regular_svg, "vendor/material-icons/MaterialIcons-Regular.svg", ) } var _vendor_material_icons_materialicons_regular_ttf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x79\x7c\x1b\xd5\xb9\x30\xfc\x1c\x6d\x63\x79\x1f\x49\xa3\xb1\x24\x5b\x8b\xc7\xd2\xd8\x33\x72\x1c\x6b\x34\x1a\x67\x73\x26\x9b\xb3\x38\x09\x09\x61\x94\x84\xa5\x4d\x42\x12\xc0\x22\x90\x40\x56\x08\x30\x05\xca\xbe\x16\x94\x96\x3d\x65\x2d\x16\x7b\xcb\xd6\xd2\x56\xbd\xa5\x2d\x6d\xa0\xdb\xbd\xf2\xdb\x16\x28\x4e\x02\x21\xc4\x6d\x69\xfb\x96\x5e\xda\x4b\xe5\xef\x77\xce\x8c\x64\xc9\x31\xbd\xb7\xdf\xed\x7b\x7f\xef\x1f\xaf\xec\x19\xcd\x7a\xce\x73\x9e\xf3\xec\xe7\x39\x47\x80\x00\xa0\x09\x74\xb0\xc2\xf6\xc5\x0b\x17\x0d\xd8\x00\xd6\x00\xba\xb1\x06\x00\x3a\x16\xaf\x3a\x65\xcd\x68\xcb\x87\xf7\x02\xba\x31\x0e\x00\xa9\xc5\x6b\xb4\xf9\xef\xfe\xfc\xf1\xd5\x80\x6e\xdc\x0c\x70\xde\xaa\x53\xd6\xf4\x24\x6a\x2f\x6e\x3f\x1b\x00\xed\x05\x80\x0d\x67\x6f\xdb\xb8\xfd\x0f\xbf\xef\x1d\x05\x70\xee\x05\x70\x58\xce\xde\xbd\x33\x0c\x34\x5a\x08\xd0\xb4\x1f\x00\x6c\xe7\x6c\xbc\x78\xfb\xf8\x38\x58\x01\xdd\x08\x00\x50\x73\xce\xf9\xfb\xb6\x2e\xbc\xec\x37\x36\x00\xb6\x15\xd0\x45\x4b\xce\xdd\xb2\x71\xb3\xe3\x57\x37\x6e\x05\x80\x4f\x70\x7d\xe7\x9e\xbb\x65\xa3\x0d\x59\x6c\x00\x28\x89\xe1\x39\x77\xdb\xce\xbd\x43\xc7\xce\x1b\x00\x40\xbf\x00\xa0\x0e\x9e\x7f\xe1\xd9\x1b\x67\x75\x1d\xf8\x3c\x40\x93\x0e\x40\xdd\xbb\x6d\xe3\xde\xed\x36\x1e\x0e\x03\xa0\x75\x00\x10\xbe\x60\xe3\xb6\x2d\xad\x4d\xf2\xbb\x80\xae\xdf\x0c\x80\x2e\xd9\x7e\xe1\xc5\x3b\xc7\xaf\x81\x04\xa0\x1b\x46\xf1\x7d\xd2\x76\x64\xf9\xe9\x29\xdf\x6e\xbf\xee\xb3\x4d\xb3\x3f\x02\xa7\x05\xc3\x05\x3f\xff\xf5\x43\x3f\x32\xbf\xdf\x00\x18\x2f\x5a\x00\xc3\x00\x35\x60\xdc\x06\xfc\x9e\x71\x58\xde\x23\xa8\xfe\x58\xf1\x15\xeb\x1b\xf0\x0c\xb4\x94\x1f\x44\xe4\x29\x15\xa6\x91\x2b\x36\x0b\xa0\xdb\xc0\x0e\x80\x96\x23\xdc\xe2\xc5\xe6\xf7\x47\xe0\x83\xab\xf1\x0b\x76\x6b\xb9\x34\xe4\xc2\x2f\x54\x96\xaf\xc3\xf4\xf1\xf1\x4a\x18\xaa\x20\x08\x83\x68\x01\xa0\x2b\xee\xfe\xb3\x3e\x22\x88\xc0\x80\x0a\x22\xa8\xa0\x82\x46\x36\xb9\x7c\x96\x81\x0c\xb9\x27\x9a\xcf\x89\xa0\x93\xa3\x5c\xf9\x9a\x6a\xbe\x8f\x9f\xd6\x40\x27\xf7\xf5\x8a\x7b\x19\xc8\x92\xbb\xf8\xac\x1d\x18\xf2\x54\xe9\x8f\x21\x25\xe2\xbf\x89\x63\xfc\x1d\x37\x4b\x65\xcc\xab\xaa\xb9\x07\xd0\x60\x0f\xa8\x90\x01\xcd\x2c\x5d\x24\xf5\x8a\xa4\x1e\xd5\xac\xcf\x28\x51\x22\x67\xc6\xe7\x0c\x60\x20\x43\x36\x91\x5c\x63\xcc\xb7\xfa\xcd\xf2\x81\xf4\xa2\x56\x6e\xab\x4a\xf0\x92\x31\x8f\x0d\xd8\x71\x9d\x73\xca\xb8\x88\x94\xef\x02\x79\xa2\xf4\xcc\xc4\x1b\x4c\x19\x43\xa5\xbf\x6c\xf9\x2f\x63\x62\xba\xc9\xfc\xc3\xed\x87\x72\x7b\x19\xb3\x3f\x6a\xcc\xd2\x0c\xd8\x11\xc1\x91\xd1\x32\x5c\x7a\x0d\x38\xc9\x13\x5b\x09\xac\x59\xb8\xd6\x84\xa3\x04\xcf\xc9\x7f\x59\xd2\x52\xcd\x7c\x42\x87\x30\xe9\x67\xcd\xc4\x5c\x86\x1c\xe9\xa4\xe6\x12\x76\x55\xd8\x53\x6e\xbb\x5a\xee\xb5\xb5\x04\x92\x41\xf2\x9c\x6c\xe2\x09\xca\xb8\xc6\x9f\x4c\xb9\x17\x8c\x5e\x04\x13\xcf\x7a\x19\x3b\x3a\xe4\xe0\x45\x52\x9b\x6e\x3e\x95\x29\xbf\x5d\xa2\x3b\x28\xb7\xc5\x38\xd7\x4c\xbc\x30\x84\x8a\x4a\x47\xa2\x09\xa1\x51\xb6\x6c\x42\xa4\x97\x71\x5b\xea\x31\x03\x26\xb5\x4c\xe9\x06\x75\xa8\x04\xbf\x95\x58\x2a\xd1\x56\x09\x0f\x78\xfb\x4a\x55\xdf\x54\xf6\x92\x41\x29\x06\xcd\xf6\x9a\xf0\x65\x4d\x98\xf1\x9d\x20\x29\x9f\x01\xc1\xac\x97\x29\x43\x50\x59\xab\x01\xa1\x4e\x20\xc4\x78\x51\xcd\x76\x69\x15\xf4\x6d\xbc\xe3\x22\xd8\xc7\x47\x2d\x15\x3c\x06\xb0\x1e\x54\x88\x96\xa9\x4f\x25\xb8\x33\xb0\x53\x82\x75\xb9\xd9\x47\xa5\xba\x0d\x5a\xc0\x6f\x69\x26\xe7\x96\xe4\xc0\x44\xb9\x13\x52\x81\x21\x6f\x69\xe6\x99\x48\x7a\x6e\x02\xf2\x99\x65\x19\x80\x9f\xda\x60\xe2\x7a\xa6\x79\xae\x41\xbf\x29\x47\x32\x65\x19\x63\xd0\x9d\x48\x6a\xce\x12\x9c\xe1\x52\x97\x92\xd6\x67\x88\x14\xc9\x98\x5c\x52\x80\x34\xdc\x0f\xf7\x93\xe7\x0d\x38\xf7\x54\xc8\xa4\x4a\x0c\x42\x05\x4e\xc1\xa4\x57\x03\x8b\x73\x4c\xde\x2c\xf5\x96\x00\x61\x53\xa2\x94\x7a\xd9\xc0\x91\x4e\x5a\xaa\x99\xf2\x01\x3f\x51\x28\xf7\x43\x49\xd2\x81\x59\x9b\x66\x96\xaf\x55\xd0\xa4\x21\xdd\x4a\x12\x51\xab\xe0\x7d\xb5\x02\xb3\x22\xa0\x32\x66\x4b\x72\x82\x2b\x73\x4b\x35\xcf\x6a\xa4\x97\x0c\xea\x6f\x2c\x4b\x48\xad\x4c\xf5\xb8\xb6\xa5\xe0\x9c\x54\xbe\x68\xc2\xa1\x56\xf1\xa1\x48\xf0\xaa\x95\xcb\x50\x2b\xfa\x77\x02\x57\x6a\x99\xfa\x0c\x7c\x65\x4c\x89\x81\xb1\x5b\x57\x81\x77\xa3\xcd\x06\x56\xbb\xcd\x27\x75\x60\x80\x36\x71\x99\x31\x39\x44\x83\xd3\xc9\x53\x25\x59\x9e\x2c\xd3\xb4\x5a\x71\x5d\x33\xe5\x44\xa9\x76\xa6\xac\x3d\x32\x55\x9c\x38\xa1\x3b\xc4\x0a\xed\x21\x56\x49\x6b\xa3\x04\x19\x78\x42\x45\xf8\xed\xd3\x4d\x59\x9f\x21\x75\x6c\x31\xa1\x2e\x3d\x0f\xa4\xb4\x5c\xb9\xd7\xd5\x32\x27\x18\xd2\x32\x63\xf6\xfb\xdc\xb2\x26\x12\xcb\x7d\x3f\x51\x3f\xfe\xd8\x89\x9d\x00\x80\x6d\xab\x5a\x00\x4b\xab\xa1\xc3\x6d\x9f\x18\xd6\x03\xc4\xc1\x6a\x5e\xb7\xa1\xdf\x03\xc0\x5e\x50\xc1\x0e\x7d\x30\x03\x3e\x0b\x97\x8c\x5a\x47\x7d\xa3\x91\xd1\x8e\xd1\xf8\x68\xef\xe8\x8c\xd1\x35\xa3\x3b\x46\x5f\x19\xfd\xf6\xe8\xab\xa3\xef\x1d\xde\x76\x38\x7b\xf8\xde\xc3\xdf\x3d\xfc\xda\xe1\x9f\x1e\x7e\xf3\xf0\x91\x23\x9b\x8f\xbc\x7a\xe4\x87\x47\x5e\x3f\x5a\x73\xb4\xe5\x68\xdf\xd1\xd1\xa3\xbf\x7b\xd7\xfd\xee\xb4\x77\x67\xbf\x97\x7a\xef\xa2\xf7\xde\x3e\x16\x3e\xb6\xe8\xd8\xf7\x8e\xbd\x7d\xec\x9d\x63\x87\xdf\xff\xe0\x38\x3a\xde\x78\x9c\x39\x3e\xf3\xf8\xea\xe3\x17\x1f\x7f\xe1\xf8\x8f\x3f\x80\x0f\x1c\x1f\x34\x7d\x20\x8e\x2d\x1f\x1f\x07\x80\xe9\xf0\x59\xd8\x38\x0a\xa3\xbe\xd1\xc0\x28\x37\xda\x39\x3a\x6d\x54\x1a\x9d\x35\xaa\x8d\x3e\x3d\xfa\xad\xd1\xef\x8e\x7e\xff\xf0\xa2\xc3\xb7\x1d\xbe\xf7\xf0\x43\x87\x5f\x3b\xfc\xc6\xe1\x5f\x1c\x1e\x3d\x12\x3b\xf2\xca\x91\xef\x1f\x79\xfd\x28\x75\xb4\xf6\xa8\xff\xe8\x7d\x47\x8f\x1c\xfd\xc3\xbb\xcc\xbb\xd3\xdf\xeb\x7e\x6f\xc6\x7b\xdf\x3d\xd6\x78\x8c\x3b\xf6\x6a\xa9\xe6\xf7\x7f\x77\xbc\xee\x38\x7d\x3c\x79\x7c\xc5\xf1\x35\xc7\x77\x1d\x7f\xe9\xf8\x4f\x3f\xb0\x7c\x50\xf3\x01\x3d\x36\x6b\x7c\x7c\xfc\x5f\xc7\x9f\x1a\x7f\x32\xdc\x19\x76\x87\x5d\x61\x3a\xdc\x18\x6e\x08\xd7\x87\xeb\xc2\xb5\xa1\x37\x42\xaf\x87\x7e\x18\x7a\x2d\x74\x5e\x68\x71\x68\x5e\x68\x56\x48\x09\x49\xa1\x78\xa8\x33\xf8\x5e\xf0\x96\xe0\xcd\xc1\x1b\x83\xab\x83\xab\x82\xa7\xb4\x8d\xb5\x9d\x68\x3b\xde\xf6\x7e\xdb\xb1\xd6\x3f\xb7\xfe\xa9\xf5\xe1\xd6\x9d\xad\x17\x05\xfe\x14\x78\x3b\xf0\x56\xe0\x4d\xff\xbf\xf9\x7f\xea\xff\x81\xff\x7b\xfe\xc7\xfc\x59\xff\x9d\xfe\x3b\xfc\x5f\xf0\xdf\xee\xbf\xcd\x7f\xab\xff\x96\x96\x2b\x4e\xb2\xe9\xfe\xe7\x3e\xf5\x78\x67\x19\x35\xcf\x66\x13\xcc\x03\xcc\x30\xe9\xe5\xb3\xe6\xd6\x00\x00\x1b\x01\xe0\x12\x00\x68\x04\xc0\x8f\x8f\xe2\xfb\x9d\x00\xa3\x3e\x63\xc3\xb4\x35\x1a\x00\x18\x8d\x00\x40\x37\xc0\x28\x07\x30\xda\x01\x00\x49\x80\x51\xfc\x1c\xb1\xeb\x01\x46\xa7\x01\x8c\xf6\x02\xc0\x2c\x80\x51\x09\x60\x74\x06\xa1\x60\x18\xc5\xe7\x6b\x00\x60\x00\x60\x54\x03\x18\xdd\x61\xd4\x3d\xfa\x34\xc0\xe8\x2b\x00\xb0\x1f\x60\xf4\x5b\x00\xa3\xdf\x06\x80\x1b\x00\x46\xbf\x0b\x30\xfa\x2a\x00\xdc\x04\x30\xfa\x7d\x80\xd1\xf7\x00\xe0\x16\x80\xc3\x8b\x00\x0e\x6f\x03\x80\xa7\x00\x0e\xdf\x06\x70\x38\x0b\x00\xff\x0b\xe0\xf0\xbd\xc6\x06\x6f\x03\x1c\x7e\x08\xe0\xf0\x77\x01\xe0\xd7\x00\x87\x5f\x33\x36\x18\x07\x38\xfc\x06\xc0\xe1\x9f\x1a\x06\xee\xe1\x5f\x00\x1c\x7e\x13\x00\xd9\x00\x0e\x8f\x02\x1c\x3e\x02\x80\x6a\x00\x8e\xc4\x00\x8e\x60\x1b\xbf\x0e\xe0\xc8\x2b\x00\x47\x5e\x05\x40\xcb\x00\x8e\x7c\x1f\xe0\xc8\x0f\x01\xd0\x1a\x80\x23\xaf\x1b\x1b\x5a\x0b\x70\x94\x02\x38\x5a\x63\xf8\x09\x47\x6b\x01\x8e\xb6\x00\xa0\xd3\x01\x8e\xfa\x01\x8e\xf6\x01\xa0\xf3\x00\x8e\xde\x07\x70\x74\x14\x00\x5d\x07\x70\xf4\x08\xc0\xd1\xdf\x01\xa0\xd7\x01\x8e\xfe\x01\xe0\x5d\x37\x00\xfa\x25\xc0\xbb\x0c\xc0\xbb\xd3\x00\xd0\x27\x00\xef\x4e\x07\x78\x77\x36\x80\xc5\x0b\xf0\x5e\x37\xc0\x7b\x29\x00\x0b\x07\xf0\xde\x0c\x80\xf7\x2e\x02\xb0\xe0\x6b\xdf\x05\x78\xef\x6d\x00\xcb\x39\x00\xc7\x1a\x01\x8e\x85\x01\x2c\x57\x02\x1c\xe3\x00\x8e\x2d\x02\xb0\x64\x01\x8e\xbd\x0a\x70\xec\x7b\x00\x96\x97\x00\x8e\xbd\x6d\x6c\x96\xaf\x03\x1c\x7b\xc7\xd8\x2c\xdf\x00\x38\x76\xd8\xd8\x2c\xaf\x00\xbc\xff\x81\xb1\x59\xbe\x09\xf0\xfe\xef\x00\x8e\x63\xef\xe4\x5b\x00\xc7\xeb\x00\x8e\x37\x02\x58\x7e\x0e\x70\x9c\x06\x38\xce\x00\x58\x46\x00\x8e\x27\x01\x8e\xcf\x04\xb0\xbc\x09\x70\x7c\x05\xc0\xf1\xd5\x00\x96\x23\x00\xc7\xd7\x00\x1c\xbf\x18\xc0\xf2\x3e\xc0\xf1\x5d\x00\xc7\x5f\x00\xb0\xd6\x00\x1c\x7f\x09\xe0\xf8\x8f\x01\xac\xcb\x00\x8e\xff\x14\xe0\x03\x4c\x86\x1b\x01\x3e\xb0\x00\x7c\xe0\x00\xb0\x7e\x01\xe0\x83\x1a\x80\x0f\x9a\x00\xac\x5f\x04\xf8\x80\x06\xf8\x40\x04\xb0\x3e\x00\x30\x36\x0b\x60\x6c\x39\x80\xf5\xeb\xd0\x3c\xfe\x37\xb2\x81\x15\xf7\x81\x63\xc2\x61\x41\x96\x29\xdc\x94\x29\x78\xcf\x6a\xb3\x3b\xa8\x1a\x67\x6d\x5d\xfd\x7f\x89\x87\x1a\xa0\xb1\xa9\x99\x76\xb9\x3d\x8c\x97\x6d\xf1\xf9\x03\xad\x6d\xc1\x50\x38\xd2\xce\x75\x44\x63\xfc\x7f\x8b\x39\xff\x89\x1f\xe2\x1b\x43\x17\xf9\xeb\x85\x19\x30\x0f\x96\xc2\x6a\x58\x0f\x1b\xe1\x3c\xd8\x01\xfb\xe0\x73\x70\x3d\xdc\x0e\x77\xc1\x97\xe1\x71\x78\x16\x5e\x86\xef\xc0\x0f\xe1\x67\xf0\x4b\x38\x0c\x1f\xc0\x1f\xe0\x2f\x08\x21\x27\xa2\x91\x0f\x45\x50\x17\xea\x45\x33\xd0\x3c\xb4\x14\xad\x46\x17\xa0\x2c\x7a\x12\xbd\x6b\xa9\xb7\x68\x96\xaf\x58\xf2\x96\x13\x96\x4f\xac\x0d\x56\xc9\x7a\xb5\xf5\x47\xd6\xbf\xd8\x3a\x6c\x1b\x6c\xf7\xdb\xbe\x67\xfb\xc4\x9e\xb2\xef\xb0\x3f\x68\x3f\x64\xff\xb5\xfd\x3f\x1c\x9c\xa3\xc7\x31\xe0\x38\xd7\x71\x8b\xe3\x7b\x8e\xdf\x53\x31\x6a\x0b\x75\x15\x35\x4c\x1d\xa2\x7e\x5f\x63\xa9\x61\x6a\x56\xd4\x9c\x51\x73\x53\xcd\x2f\x9d\x94\xb3\xd3\xb9\xca\xb9\xd5\xb9\xdb\xf9\x35\xe7\x5b\xb5\xce\xda\x45\xb5\x17\xd7\xde\x5f\xd7\x50\x97\xaf\x8f\xd4\xdf\xd6\x30\xd0\xf0\x78\xc3\x3b\x8d\xd3\x1b\x2f\x6d\xbc\xbb\xf1\xf5\xc6\xb7\x9b\x50\x93\xdc\x74\x76\xd3\xb5\x4d\xdf\x69\xfa\xb0\x39\xd5\xbc\xbe\xf9\xee\xe6\x57\x9a\xdf\xa1\x29\xba\x8b\x5e\x42\xef\xa6\xef\xa2\x3f\x74\x05\x5c\x2b\x5c\x1b\x5c\x97\xba\x6e\x77\x3d\xec\xfa\x8e\xeb\x37\x6e\x87\x3b\xe9\xde\xe1\xfe\x96\x27\xe9\x59\xef\xb9\xda\x73\x9f\xe7\xe7\x8c\x87\x59\xc1\xec\x62\x1e\x62\xbe\xc9\x8c\x7a\xad\xde\x1e\xef\xed\xde\x5f\xb1\x01\x76\x03\xfb\x25\xf6\x1b\xec\xdb\x2d\xd0\xd2\xde\x72\x6a\xcb\xfe\x96\xaf\xb6\xfc\xca\x47\xfb\xd6\xfb\xee\xf0\x37\xf8\x67\xfa\x77\xfa\x1f\xf0\xff\x28\xe0\x0c\x04\x03\x03\x81\xd3\x03\x57\x05\x1e\x0c\xbc\x1e\x18\x6f\x9d\xd6\xba\xb6\x75\x47\xeb\xc1\xd6\x3f\xb4\x89\x6d\xcb\xda\xce\x6f\xfb\x7c\xdb\x5d\x6d\xc3\xc1\xc6\xa0\x12\xcc\x04\x6f\x0b\x3e\x1f\xfc\x59\xf0\xd7\xc1\x8f\x42\x6c\x48\x0c\x2d\x0d\x9d\x1f\xfa\x62\xb8\x36\x1c\x08\x4b\xe1\xd5\xe1\x6d\xe1\x7b\xc2\x3f\x8e\x40\x24\x19\xb9\x20\x72\x5f\xe4\x47\x91\x62\x7b\xa2\x7d\x7d\xfb\x17\xda\xbf\xdd\xfe\x2e\xd7\xc4\xa5\xb8\x34\xb7\x9b\x7b\x81\xfb\x55\x47\x43\x47\x5f\xc7\x8e\x8e\xfb\x3b\x7e\xd6\xf1\x71\xb4\x35\xba\x3c\x7a\x7d\xf4\xe5\xe8\xc7\xb1\x64\x6c\x4b\xec\xe9\xd8\x5f\x78\x81\x5f\xc5\x9f\xc5\x5f\xcc\xbf\xc0\xff\xad\x33\xd0\xb9\xa9\xf3\xf1\x2e\x67\xd7\xca\xae\xbd\x5d\xcf\x77\xfd\x4b\xd7\x9b\x5d\x45\xc1\x25\x88\xc2\x4c\xe1\x7a\xe1\x09\x61\x44\x74\x89\xab\xc4\x83\xe2\x2f\xe2\xae\xb8\x12\xbf\xaf\xbb\xa5\x7b\x76\xf7\xc1\xee\x3f\x4f\xfb\xcc\xb4\x5b\xa7\xfd\xa9\x47\xe8\xb9\xbd\xe7\xdf\xa7\xb7\x4e\x9f\x3f\xfd\xdc\xe9\xb7\x4e\xff\xfa\xf4\xb7\x7b\xbd\xbd\xb3\x7a\xd7\xf7\x5e\xd9\xfb\x44\xef\x77\x7a\x8f\x27\xb8\xc4\x67\x13\x37\x25\x1e\x49\xe4\x13\x6f\x27\xc6\xa5\x88\x34\x4f\x5a\x27\x5d\x2d\x3d\x27\xfd\x3c\xd9\x98\xec\x4f\x5e\x94\x3c\x90\x7c\x36\xf9\x7a\x72\x4c\x46\xb2\x5b\xde\x24\xef\x93\xef\x96\x9f\x95\xdf\x4a\x79\x52\xb1\xd4\xee\xd4\xbd\xa9\x1f\xa4\x7e\x99\xfa\x48\x91\x94\x45\xca\x1e\xe5\x4b\xca\x77\x95\xdf\xf6\x79\xfb\x4e\xef\xbb\xb3\xef\x5b\x7d\x85\xbe\xb1\x19\xce\x19\xd3\x66\x6c\x9c\x71\xd3\x8c\xef\xcf\xac\x9b\x39\x7d\xe6\xfa\x99\x57\xcf\xfc\xd1\xcc\x3f\xcc\x62\x67\xcd\x9e\xb5\x65\xd6\x37\x67\xfd\x78\xd6\x3b\xb3\x3e\x9c\x35\x3e\xdb\x33\x5b\x98\x7d\xcd\xec\xfb\x67\xbf\x3c\xfb\xdd\x39\xce\x39\xb1\x39\x67\xcc\xb9\x72\xce\x1b\x73\x7e\xd7\xef\xed\x5f\xd0\x7f\x71\xff\x73\xfd\x7f\x9b\xdb\x39\x77\x70\xee\xb5\x73\x1f\x9f\x7b\x5c\xed\x55\x35\xf5\x72\xf5\x09\xf5\xdf\xd4\x4f\xe6\x85\xe6\x2d\x9a\x77\xf6\xbc\x67\xe7\xfd\x7e\x3e\x3f\x7f\xd5\xfc\xcb\xe6\xdf\x3e\xff\x89\x05\xf3\x17\x14\x16\x7e\x75\xd1\x63\x8b\x5e\x5a\xf4\xf3\x45\xbf\x19\x68\x1d\x58\x30\x70\xce\xc0\xdd\x03\xaf\x0d\x7c\xb8\xb8\x67\xf1\x96\xc5\x0f\x2f\x7e\x73\x49\x74\xc9\xd9\x4b\x9e\x58\xf2\xf6\x52\x61\xe9\xa9\x4b\xaf\x5a\xfa\xe4\xd2\xe3\xcb\x9c\xcb\xba\x97\x9d\xba\x6c\xe7\xb2\xec\xb2\x97\x97\xfd\x66\xb0\x71\x70\xe6\xe0\x99\x83\xfa\xe0\x5d\x83\x4f\x0c\x1e\x5a\x8e\x96\xb3\xcb\x97\x2e\x3f\x67\xf9\x13\xcb\xc7\x56\x74\xac\xd8\xb6\xe2\x95\x15\x1f\xad\x4c\xac\xdc\xb7\xf2\x07\xa7\xa0\x53\x36\x9e\xf2\xcc\x2a\xe7\xaa\xe9\xab\x2e\x58\xf5\xe4\xaa\x77\x56\xfd\x71\x35\xb7\xfa\xaa\xd5\xef\x9e\xca\x9f\xba\xf4\xd4\x73\x4e\xdd\x7b\xea\xbf\xac\xe9\x58\x73\xd5\x9a\xc3\xa7\xf5\x9e\xb6\xe7\xb4\xaf\x9d\xf6\x96\x66\xd3\xf6\x69\xf7\x69\x23\xe9\xba\x74\x30\x7d\x46\xfa\x89\xf4\xb7\xd2\xff\xbe\xb6\x75\xed\xc2\xb5\xbb\xd6\x3e\xbd\xf6\x5f\xd7\x51\xeb\xe4\x75\x7b\xd7\x3d\xb0\xee\xa5\x75\x85\xf5\x75\xeb\x5b\xd7\x77\xaf\xbf\x64\xfd\xfd\xeb\xbf\xb1\xfe\x77\xa7\x87\x4e\x3f\xf5\xf4\xdd\xa7\x7f\xf9\xf4\xff\x75\x46\xcd\x19\x67\x9f\x71\xdf\x19\x3f\x3c\xe3\x6f\x67\x2a\x67\x6e\x3f\xf3\xae\x33\x7f\x74\x56\xed\x59\x7d\x67\x9d\x73\xd6\x43\x67\xfd\xeb\x59\x9f\x7c\xe6\xd2\xcf\xfc\xf5\xb3\xf1\xcf\xee\xf9\xec\x37\x3f\x3b\xb6\x21\xbc\x61\xeb\x86\x2b\x36\x3c\xbf\x61\x64\x63\xe3\xc6\x35\x1b\xaf\xda\xf8\xd8\x26\x6a\xd3\xf9\x9b\xee\xd8\xf4\xda\xd9\xcd\x67\x9f\x75\xf6\x03\x67\x1f\xde\xec\xdf\xbc\x74\xf3\x05\x9b\xef\xde\xfc\xe7\x2d\x73\xb6\xe8\x5b\x7e\xb2\xb5\x71\xeb\x9c\xad\xfb\xb7\x3e\xb3\xb5\xb0\xf5\x2f\xe7\xb0\xe7\x2c\x39\x67\xe8\x9c\xe7\xce\xf9\xcd\xb9\xce\x73\xa7\x9f\x7b\xf0\xdc\x9f\x9c\xfb\xc9\x79\xa7\x9e\x77\xdf\x79\xef\x0c\xd5\x0c\xc5\x87\x2e\x1a\xba\x7d\xe8\x47\x99\xda\x4c\x32\xb3\x26\x73\x69\xe6\xb1\xcc\xeb\xe7\x3b\xce\x17\xcf\x3f\xfd\xfc\x6b\xcf\xff\xe6\xf9\xff\xb1\x6d\xfe\xb6\x3d\xdb\xee\xdb\xf6\xcb\x6d\x63\x17\x78\x2f\xe8\xbf\xe0\xfc\x0b\xee\xba\xe0\xc7\x17\xfc\xf1\x42\xfb\x85\xe7\x5e\x78\xdf\x85\xaf\x5d\xf8\xd7\xed\x75\xdb\xe7\x6e\xdf\xbe\xfd\xae\xed\xef\xed\xf0\xee\x38\x67\xc7\x53\x3b\x7e\x73\x51\xf2\xa2\xf3\x2f\xfa\xdc\x45\x37\x5f\xf4\xf0\x45\xcf\x5c\xf4\xbd\x8b\x4e\x5c\xf4\x1f\x17\xd7\x5f\xdc\x76\xb1\x72\xf1\x92\x8b\xd7\x5f\x7c\xd9\xc5\x0f\x5e\xfc\x8d\x8b\x8f\xee\xac\xdd\xd9\xbb\x73\xc5\xce\x73\x77\x5e\xb6\xf3\x8e\x9d\x8f\xef\xfc\xd6\xce\xc2\xce\xdf\xec\x8a\xef\xda\xb2\xeb\xd6\x5d\x2f\xed\x3a\xbc\xbb\x63\xf7\xfa\xdd\x5f\xdc\xfd\xc6\xee\xff\xd8\xd3\xb6\xe7\xf4\x3d\x5f\xdc\x73\x64\x6f\xcb\xde\xd3\xf7\x3e\xb1\x77\x6c\x5f\xc7\xbe\x95\xfb\x76\xee\xbb\x7f\xdf\xab\xfb\xfe\xf7\x25\xca\x25\x17\x5d\x72\xff\x25\x6f\x5e\x1a\xbc\x74\xed\xa5\x97\x5e\x3a\xba\xbf\x66\x7f\x72\xff\x69\xfb\x3f\xbf\xff\xb9\xfd\x47\x2f\xeb\xba\xec\x9c\xcb\x1e\xbc\x6c\xe4\x72\xdb\xe5\xf1\xcb\x97\x5f\x7e\xc3\xe5\xcf\x5e\xfe\xdb\x2b\xa4\x2b\x86\xae\x78\xfc\x8a\x5f\x5c\xf1\xa1\xee\xd0\x63\xfa\x2a\xfd\x12\xfd\x61\xfd\xc5\xcf\xb9\x3e\x77\xee\xe7\x0e\x7e\xee\xbd\x2b\x85\x2b\xb7\x5e\xf9\xe0\x95\xaf\x5f\x39\x7e\xd5\x9c\xab\x2e\xb9\xea\xd9\xab\xde\xbf\x3a\x7e\xf5\xe6\xab\xf3\x57\xbf\xf5\x79\xc7\xe7\x67\x7e\x7e\xdd\xe7\xaf\xfe\xfc\x77\x3e\xff\xd6\x35\xcc\x35\x8b\xaf\xb9\xee\x9a\xfc\xb5\xe8\xda\x15\xd7\x5e\x7b\xed\x93\xd7\xfe\xec\xda\xdf\x5d\xe7\xbd\xae\xfb\xba\x95\xd7\xed\xba\xee\xc8\xf5\xd6\xeb\xbb\xae\xdf\x70\xfd\xed\xd7\xbf\x7c\x43\xed\x0d\xfd\x37\xec\xb9\xe1\x87\x37\x14\x6f\x3c\xef\xc6\x5b\x6e\xfc\xce\x8d\xbf\xbd\xa9\xfb\xa6\x8b\x6e\x7a\xe2\xa6\xf7\x6e\x6e\xbb\x59\xbb\xf9\xea\x9b\x9f\xba\xf9\x67\x37\x1f\xbf\x85\xba\x45\xbb\xe5\x8a\x5b\x9e\xba\xe5\x3b\xb7\xbc\x75\x6b\xe3\xad\xbd\xb7\x2e\xbf\x75\xf7\xad\x77\xdc\xfa\xb5\x5b\xdf\xb9\x2d\x7a\x5b\xea\xb6\xf4\x6d\xd7\xdc\xf6\xf2\x6d\x6f\xdf\xde\x7a\xfb\xba\xdb\x2f\xb9\xfd\x5b\xb7\xbf\xfb\x85\x96\x2f\xac\xf8\x42\xee\x0b\x7f\xba\xa3\xee\x8e\xf6\x3b\xd2\x77\xdc\x70\xc7\xd7\xef\x38\x7e\xc7\x27\x77\x46\xee\x4c\xdd\xb9\xfd\xce\x5b\xee\x7c\xe1\xce\xa3\x59\x94\x0d\x64\xe7\x64\xbf\x9c\x7d\x3d\xfb\xe7\x03\xd3\x0f\x6c\x3b\xf0\xe4\x81\x0f\xbf\xe8\xfe\xe2\xbc\x2f\x5e\xf0\xc5\xbb\xbe\xf8\xfd\x2f\xc1\x97\x84\x2f\x6d\xfb\xd2\x63\x77\x05\xee\x5a\x72\xd7\xfe\xbb\x9e\xb9\xeb\xdd\xbb\x2d\x77\xc7\xef\x5e\x7a\xf7\xf6\xbb\x1f\xb8\xfb\xfb\x77\xff\xe1\x1e\xe9\x9e\x2f\xdc\x33\x7c\xcf\x2f\xee\x85\x7b\xf9\x7b\x57\xdf\xfb\xd5\xfb\xc4\xfb\x4e\xbf\xef\x96\xfb\xf2\xf7\x5b\xee\x9f\x76\xff\xd0\xfd\x3f\x7a\x40\x78\xe0\xb4\x07\x9e\x78\xe0\xd8\x41\xee\xe0\xfa\x83\x77\x1d\x2c\x1c\x1c\xff\xb2\xf2\xe5\x6d\x5f\x7e\xfa\xcb\x63\x0f\x36\x3e\x38\xfd\xc1\xd3\x1e\xbc\xe8\xc1\xc7\x1e\xcc\x3f\xf8\xcb\x07\xff\xf6\x50\xfc\xa1\xd5\x0f\xbd\xf0\xd0\x9f\x1f\xee\x78\xf8\xd4\x87\xbf\xf4\xf0\xbf\x3c\xfc\xbf\x1f\x89\x3c\x72\xfe\x23\x8f\x3e\xf2\xad\x47\x7e\xf2\xc8\xfb\x8f\x14\x1f\x6d\x7b\x74\xf6\xa3\xe7\x3f\x7a\xcd\xa3\x0f\x3c\xfa\xf2\xa3\x87\x1f\x43\x8f\x89\x8f\x9d\xfa\xd8\x85\x8f\x5d\xf9\xd8\xf7\x1f\xfb\xe3\x57\x16\x7d\xe5\xe1\xaf\xfc\xfc\x71\xd7\xe3\x73\x1e\xbf\xf0\xf1\x2b\x1f\xff\xc6\xe3\x7f\x1e\xf6\x0e\xaf\x1c\xbe\x7c\xf8\xe5\xe1\xa3\xb9\xba\x9c\x9c\x3b\x2d\x77\x75\xee\xd1\xdc\x0f\x72\xff\xfe\xc4\xac\x27\x2d\x4f\xc6\x9e\xdc\xf4\xe4\x8d\x4f\xbe\xf9\x54\xe0\xa9\xad\x4f\xe9\x4f\x7d\xfd\xa9\xb1\xa7\x7d\x4f\x9f\xfe\xf4\x25\x4f\x7f\xfb\xe9\x77\x9e\x59\xf9\xcc\x8e\x67\x1e\x7d\xe6\x7f\x3f\x9b\x78\x76\xff\xb3\x4f\x3d\xfb\xda\x73\x8e\xe7\xe6\x3e\xf7\xd2\x73\xe3\x5f\x9d\xf1\xd5\xed\x5f\x7d\xe8\xab\xef\x7e\x4d\xfc\xda\x79\x5f\xbb\xe7\x6b\xff\xeb\x79\xf1\xf9\x47\x9f\x3f\xf1\x42\xeb\x0b\x8b\x5e\xd8\xf6\xc2\x5b\x2f\x36\xbf\xf8\x9d\x17\x8f\xbd\x34\xe3\xa5\xeb\x5e\xfa\xda\xcb\x1d\x60\x21\x31\xd4\xbb\x90\x06\x56\xa0\x60\xda\xb3\x08\x7a\x66\x3f\x47\xd9\xe0\xb7\x89\x67\x1d\xf6\xb7\x66\x3f\x67\xb5\xc0\x6f\x13\xf0\xac\x15\x5f\xb6\xe3\xcb\xcf\x51\x0e\xf4\xc9\xec\xe7\x10\xbe\x2e\xd1\x12\xcd\x4b\x34\x47\x5f\xb7\x67\xeb\x56\xa4\x15\x73\x34\x92\xaa\xed\x9a\x5e\xf8\x7f\xe7\xff\xef\xfc\xbf\x75\x6e\x05\x11\x44\x54\x40\x05\x42\xa1\x4d\x00\x51\x99\x63\x58\x99\x63\x2c\x09\xaf\xc7\xd1\x1e\x4b\x22\x46\x10\x84\x05\xcf\x5c\x76\xd9\x33\x97\x8d\xe9\x7a\x5a\x14\x91\x7a\x19\x3e\x03\x5b\xf9\x4d\xfc\x9e\x1b\x58\x80\x54\x22\x95\x8c\xb5\x3b\x3c\x2e\xf3\x5d\x45\x62\x38\x46\x62\xb8\xaf\xdf\xb4\x65\xcb\x4d\x5b\xd6\x90\x42\xf2\x82\x20\x08\xda\x16\x7c\x05\x05\x48\x49\x6e\x5d\x14\xc1\x0a\x0c\xa8\x68\xcc\x84\xa3\x76\x02\x0e\xca\xed\x26\x20\x8c\x8c\x8d\x15\xd2\x69\x4d\x14\x55\x94\x2d\x66\xc0\x0a\x2a\x30\x28\x8f\x0a\x50\x07\x21\x88\x92\xe7\x65\x8e\x54\x27\xc9\x2c\xcb\x44\x64\x45\x4e\xa6\xf0\x96\xf0\x32\x8c\xd7\xcb\x50\x12\x06\x09\x69\xaa\xa0\xaa\xc2\xe5\xdd\x45\xbd\x5b\xed\xf5\xb4\x7a\x7a\xd5\x6f\x9e\xe6\x6b\xf7\x9d\x10\x55\x55\x54\xd5\xd5\xdd\x2c\xdb\xbd\x5f\x5a\x5d\xd7\xd4\xe8\xf1\x34\x36\xd5\xad\x96\x0a\xb4\xdf\x5f\x89\x25\xdc\x56\x16\xa0\xd4\x42\x87\xd9\xe2\x94\x79\xfe\xef\xae\xfa\x7a\x57\xbd\x7b\x55\x5f\xdf\xaa\xbe\x1a\xd2\x5e\xc4\xd4\xe3\x6b\xe7\xf5\xe1\x6b\x7f\x33\x50\x07\x36\x50\x41\x45\x79\x94\x27\xe5\x09\x90\x00\x48\x25\x8d\x32\x52\xa4\x9c\x54\x82\x97\x8c\x22\xe5\xa4\x22\xb3\x14\xef\x60\x3c\xde\x44\x4a\x4e\xc6\x78\x86\xf3\x98\x8f\xea\xf5\xae\x86\x06\xd7\x9f\xc8\xfe\x7a\x66\xd5\xf6\xed\x07\xb7\xaf\xb8\x3d\xb8\x33\xb2\x76\xff\xda\x65\x29\x81\x54\x6b\xc0\x13\x24\xfb\xdc\xf6\x83\xdb\xb7\xaf\xda\x30\x03\xdd\x1e\xbc\xb8\x4b\xee\x5f\xbb\xb6\xbf\xef\xb4\x9a\xae\x77\xf0\xdb\xf5\x04\x9f\x1a\xca\xa3\x1c\xb0\xd0\x83\x3d\x77\x24\x27\x63\x1c\xd7\xee\x60\x18\x8f\x57\x92\x12\x29\x19\x63\x57\x96\x18\xee\x53\xae\x2b\x09\x2f\x43\x7b\x1c\x5c\xa4\x3d\x26\xd3\xc9\x94\x84\xf4\x7a\xa7\xea\x6c\x68\x70\xaa\xce\xfa\xb0\x28\xee\x22\x07\xe4\x52\x58\x14\x7f\x44\xfb\xfd\x74\x71\xc4\xe5\xf3\xb9\x10\xe3\xc5\xd7\xd3\x78\xe7\xad\x53\xeb\xaa\xcf\x0e\xf8\xe9\x71\xc0\x0f\x23\xa0\x49\x3f\x68\xa0\xa1\x1c\xca\x11\x2a\xa9\x03\x40\x12\xc3\x45\x64\x89\xc1\xb2\x12\x69\xe9\xf4\x38\xa4\x85\x34\x52\xc7\x72\x39\x94\x2e\x0e\x83\xa5\x8c\xe7\x3a\x08\xe0\x36\x71\x8c\x24\x73\x32\xde\x4e\x82\x57\xd5\x75\x4d\xd3\x86\x0d\xc8\x48\x95\xaa\x38\x22\x8a\x82\xa8\x97\x2f\x08\x18\x06\x0b\x68\xa0\xa3\x43\x48\x07\x0b\x19\x7d\x63\x29\x8e\x66\x11\xf3\xc2\x0b\xf9\x17\x90\xae\xeb\x08\x74\xfc\x8c\x0c\x3a\xca\x95\x9e\x71\x2b\x34\xc7\x2b\x1f\xbd\x90\x7f\xe1\x05\x04\xfa\x38\xe8\x7a\x05\xf7\xd8\xc0\x09\x8d\xe0\x36\xda\xc2\x53\x0a\xcb\x70\x56\x96\xe2\xe4\x28\xc5\xcb\x12\xda\xb0\x6b\x97\xba\x41\x55\xf5\xb0\xaa\xee\x42\x8c\xaa\xea\x48\xd5\xf1\x05\xe3\x04\x5f\x05\xd2\x77\x22\xca\xa3\x63\x84\x9a\x64\x00\x97\x49\x20\xbc\xc3\xc3\x52\xb1\xa4\xe2\x4e\xa4\x64\xc9\xe3\xe0\xda\xf9\x98\xf1\x67\xb0\x05\x87\x49\x97\xf1\xb0\x5e\xe3\xef\xa3\x70\x3c\x14\x8a\x5f\xd4\xd7\x17\x5c\xb4\xe8\x18\xed\x13\x13\x9c\xa7\xa9\xcb\x45\xb5\x75\x79\xd8\xb5\x97\xa7\xc5\x39\xa7\xf7\xd3\x8d\x1d\x9d\x75\x0d\x6c\x0d\x12\xf0\x93\xa1\x6f\xf6\x1d\xec\x0b\x2e\xfa\x97\x45\xc5\x0b\xfd\x34\x97\xa0\x18\xc5\xeb\x0d\x46\xbb\x84\xb9\xe9\xf4\xdc\xee\xfe\xfe\xee\x70\x28\x10\x08\xb6\xc7\xea\x6d\x06\xbd\x1b\xd4\x65\x05\x16\x38\x90\x30\xbf\x4a\x0c\x5b\x45\x4b\x8c\x24\x4b\x89\x14\x45\xe8\x09\xf7\xd3\x14\x34\x25\x8b\x61\x93\xaa\x9a\xc3\xcd\xce\xfa\x6c\x58\x0c\x87\x2b\x89\x69\x54\x55\xeb\xd2\x26\x01\x85\xc3\xf5\xf5\xba\x2c\xeb\xa2\x38\x56\x45\x44\xb8\xff\x18\x94\x43\x63\xd0\x08\x6d\x18\x0e\x96\x92\x09\x9b\xb1\x98\xc7\xdc\x09\x2f\xe3\xa1\x78\xcc\x69\x1c\xc3\x2b\x08\x34\x6d\x60\x4b\x20\xd4\x34\x28\x9b\x5f\x9a\xa6\xab\x5a\x5a\xdd\x32\x90\xe8\x0a\x05\x22\xf2\x20\x12\xcb\x87\xaa\x96\x06\x0b\x64\x40\x45\x59\x54\x80\x26\x42\x71\x92\xc7\x41\x31\x9c\x1c\x8b\xc9\x12\x66\x60\xcc\xd0\xa6\x4c\xf2\xa0\x1d\x1d\x83\xb2\x20\x0f\x76\x2c\x38\x73\xc1\xda\x64\x2c\x96\x8c\x21\x26\xb5\xba\x66\x60\xa0\x66\x75\xaa\x67\xce\x1c\x3a\xe6\xd7\xfd\x31\xbc\xc3\x3d\x3c\x51\x6a\x2b\x74\x9e\x5c\x2e\x8f\x31\x98\x48\xc9\x0a\xee\x52\xef\xa7\x54\x72\x63\x53\x5d\x6d\x13\x6a\xf6\x34\x27\x4f\xae\xed\xd9\xab\x6b\x9b\x1a\xeb\xae\xae\x6b\x6a\x7a\xa3\xaa\x5e\x83\x7f\x0a\xe0\x83\x08\xf0\x00\x6e\x44\xf1\x15\x15\x4b\x09\x85\x77\x70\xb8\x3a\xde\xce\x1b\x55\xb2\x04\x7b\x67\xa0\x2d\x81\xf5\xde\x08\xa9\x78\x9a\xaf\x85\xab\x71\xf8\x63\x98\x35\x62\xc9\x98\xe6\xf6\x3b\x51\xbe\x78\x4f\x60\x7d\xa3\xdd\xac\xbd\x8e\xb3\xc4\xfc\xcd\xfa\x1d\x57\xd8\x48\xc5\xd1\x48\xc0\xc3\x02\x02\x11\x34\x54\x40\x39\x68\xc1\xed\xad\xa4\x03\x89\x95\x78\x73\x43\xba\xe6\xa3\x8b\xc3\xb4\xcf\x47\x7b\x05\x55\x10\x44\x55\xc4\x2a\x22\x57\x2c\x94\x3a\x3c\x8d\x3f\x15\x12\x1c\x4b\x82\x0e\x22\x0b\xca\xfa\x62\x32\x9d\x51\x74\x84\x21\xc7\x28\xab\x89\x9a\x26\x66\x70\xf1\x06\x09\xa5\x91\x58\x2c\xd0\x3e\xc4\xe0\xeb\x9a\x96\xf7\x4d\x90\x96\x4f\x2b\x16\x04\x1f\x8d\x44\x00\x7b\x95\x56\x9d\xa8\x91\x68\x34\x05\x6f\x9f\x5e\x63\x41\xd7\x0b\x85\xb1\x93\x6b\xcc\x08\x42\x4e\x14\x35\x51\xfc\x94\x3a\x27\x5a\x58\x03\x5e\x88\x01\xb8\x4b\x65\xda\x65\x8e\x89\x71\xed\x0e\xa2\x41\x4e\x6a\xac\x66\x96\xaf\x69\x8d\x2e\x6f\x38\x1c\x0f\x55\xb4\x16\xe9\x66\xf1\x8c\xb0\xab\x0e\x8b\x07\xef\xee\xa1\xca\xda\x81\xe8\xed\x08\x1a\x43\xef\x90\x96\x06\x26\xf4\x76\x94\x62\x29\x8a\xa7\x78\x5e\xc1\x7f\x0a\xab\xb0\x2c\x45\x14\x39\x82\x24\xb5\xa2\x73\xe9\xd2\xce\x15\x54\xb2\x7c\x64\x98\x16\x99\x59\xa7\xd0\x0b\x43\xa1\x05\xae\x53\x66\xcd\x5e\x89\x8f\x16\xd2\xa7\x9c\xac\x7b\xa3\x84\x39\xdb\x29\x37\x26\x3e\xc6\xe3\x2d\x5b\x2a\xd7\x76\x6c\x19\x98\xdd\x7d\xde\xec\xee\xdf\x77\x6c\x71\x11\xe5\xfb\xc5\xee\xd9\x03\x5b\x3a\x8a\x3f\xee\xf8\x3d\x3e\x40\xba\xa1\x7e\x2d\xa0\x43\x06\xe9\x28\x4b\x60\xc6\xb4\xc5\x71\x58\x7f\x88\x9a\x96\xd3\x50\xb6\x38\x82\x84\xe2\xc8\xd4\x96\x11\x57\x69\x19\xa9\xa2\x20\xb6\x90\x7a\x72\xc3\xc3\xc3\xc3\x48\x28\x6b\xf7\x89\x37\xeb\x0c\xcb\x08\x4b\x3b\xc7\x24\xeb\x88\x95\x25\x06\x31\xe2\x35\x15\xc6\x51\x56\xcc\x0d\x0f\xa7\x2b\x8d\xa3\x27\x87\x87\x01\x41\x0e\x32\x28\x8b\xb2\x60\x01\x70\xb3\x54\xee\xc4\x09\x94\xcd\xe2\xb3\x52\x3d\x16\x6c\x31\x29\x0a\x1f\x33\x8b\x2e\xe8\x7a\x37\x29\xf0\xe0\x86\x0d\xbb\x4c\xa8\xaa\xf1\xe8\x3a\xd9\x5a\x63\x65\xb6\xd2\x50\x1b\xd6\xab\xac\xb4\x97\xf2\x1b\x8c\x96\x61\x9e\xd4\xc1\x5a\xb2\xf9\x14\x2c\xa7\xb1\x9d\xc7\x11\xc5\x2a\xf1\x4c\x44\xb6\x33\x11\x59\x1c\xce\x11\x0e\x11\xb5\x71\x40\x30\x0e\x39\x6c\xf7\xa5\xd3\x02\x36\xe1\x34\xb1\x8a\x5e\xff\x27\x38\xd2\xd0\x40\x18\xf2\x06\x32\x66\xe8\x33\xf4\x2d\x63\x58\x5b\x52\x82\xb5\xe3\x76\x30\x11\x39\xca\x44\x64\x94\x19\x52\x63\xc9\x58\xcc\x5f\xd3\x58\x2c\xe4\xcc\x06\x20\x5d\xcc\xfb\xb1\xdc\xb4\xc5\x04\x41\x37\x1a\x51\x6a\xc3\x18\xc1\x69\x04\xb7\x21\xc2\x60\x7b\xc4\x66\xe2\xd6\x1a\x65\x29\xa9\xaa\x2d\x28\x57\x1c\x46\x20\x16\xff\x83\xc8\xe0\x66\xd4\xd8\xf8\xcc\x5f\x5d\x2d\x2d\xae\xe2\xb0\xab\x05\x6b\x1b\x51\xcc\xe1\xaa\x93\xc8\x72\x41\xc7\x62\x9f\x6b\x1c\x70\x4b\x11\x04\xc1\x0e\x0c\x64\xd0\x18\xca\x92\xba\x42\xc0\x61\x79\x1c\x95\x89\x0e\x67\x52\x06\x77\x27\x4f\xd2\x98\xb4\x44\xbb\x25\x9a\x43\x75\xf3\x67\xcf\xbf\x38\xd6\xd6\x16\x6b\x5b\x85\xf5\xe3\x38\x60\x25\x8a\x54\x41\x14\xc5\x6c\xb3\xd7\xef\xf7\x36\x7f\xbf\x0d\xdf\x5e\x4b\xee\xd5\xd7\x3b\x11\x38\xeb\x0d\x4e\x20\xdc\x60\x31\x6d\x0c\x2c\x5d\x68\x83\x9e\x23\x0c\xaf\x30\x32\xc3\xc9\x11\xac\x42\x51\x46\x18\x07\x4d\x13\x70\x1b\xb2\x69\x5d\xd5\x34\x75\xc4\xf8\x2a\xdb\x27\x05\x70\x40\x13\x96\xe6\x51\x4c\x2b\x8a\xc4\x9e\x5c\x08\x13\x0e\x8b\x4c\x7a\xa2\xa4\xbc\xe6\x65\x72\xd5\xa5\x21\xd0\x40\x25\xfa\x1b\xdb\x4c\x58\x5d\x63\xa5\x4a\xb4\x60\x49\x67\x2f\xde\xbc\xe5\xa6\x2d\xe2\xe0\xd0\xe0\xa0\x9c\xc9\xa0\xec\xe6\x81\xc5\x9b\x37\x2f\x96\x07\x07\x87\x06\xd3\x99\x4c\xa5\x15\xe9\x20\xd4\x00\x51\x56\x61\x38\x85\x57\x24\x86\x47\x3c\xa2\x28\x5e\x41\xb3\x17\xc4\x77\xc7\x17\xb0\xbb\xe3\xc5\x3f\x05\x51\xfd\x15\xc1\x0b\x83\x47\xc8\x95\xf7\xcd\x2b\x0b\x82\x17\x06\x81\x48\x12\x1d\xe9\x84\x1f\x1c\x25\x49\xc2\x22\x4d\x14\x0b\xcf\x23\x1d\xd3\x8d\x5e\xf1\x8c\x05\x3f\xe3\x56\x68\xfc\xd8\xa1\xe7\xc7\x41\x14\x89\x35\x88\x89\xab\xac\x31\x7e\x01\x4e\xa0\xc1\x07\x6d\x98\x9a\xdc\xb2\xc4\x50\xd8\xe4\x56\x26\xfb\x19\x51\x8a\x57\x30\x9c\x79\x7d\xc5\x0a\x7d\xc5\xe0\xfe\xb5\x6b\xf7\xaf\x5d\x74\x10\x7b\x00\x28\x1b\xd8\x14\x38\xb4\x29\xb0\x09\x31\x62\xec\x74\x91\x5f\x9f\x5f\x87\xef\x16\x77\xdc\xbf\x63\xc7\xfd\xcb\x23\x6b\xc2\xe1\x53\xc3\xa7\x02\x81\xac\x04\x39\xb8\x23\x74\x44\x37\x68\x7c\x1c\x0c\x58\x0c\xcd\x6b\x68\x2f\x4c\x6d\x65\xb9\x8e\x79\x54\x66\x24\x39\x3a\x99\xd2\x72\x23\x23\x69\x61\x24\x8d\x08\xc1\x1a\x1a\xb9\x40\xb8\x44\x14\x75\x51\xcc\x55\xd9\x60\x13\x35\x50\xd0\x0c\x2d\x10\xc1\xae\x68\x59\x0e\xa5\x92\x3c\x85\xad\xb0\x98\xd9\x68\x0a\x5b\x67\xd8\x96\x45\x93\xea\xfc\xb0\xdd\xef\x6f\xf7\x3f\x9c\x48\x84\x62\xd1\xcb\x07\x12\x89\x81\x84\x3d\x16\x0d\x26\x12\xa8\x63\x02\x06\x24\xfa\xf1\x53\x37\x24\x6e\x49\x84\x62\xc9\x54\xd4\x91\xc0\x0f\x2a\xf8\x30\x98\xb8\x25\x81\x3a\x26\x7b\x18\x13\x32\xd5\x45\xf4\x99\xc2\x7f\xba\x30\x02\x5d\xcf\x9d\x24\x89\x0e\x6d\xd8\xb0\x6c\x4a\x21\x84\x40\x05\x1d\xe5\x91\x4e\x28\x57\x61\x78\xc6\x2c\x54\x4e\xa6\xa4\x48\xc2\xcb\xa0\x8c\xa6\x35\x4c\xf0\x5f\x03\x0a\x6b\x27\xb4\x41\x7c\x36\x82\x77\x40\x24\xbe\x61\x8f\x11\x4d\x48\xac\xb1\x72\x09\x12\x6f\x67\xb0\xd7\xc8\x30\x03\xe8\x92\xc0\x42\x87\xc3\x28\xa8\x79\x26\xca\x7e\x78\xb5\xb3\x01\x15\x8a\xd7\x04\x16\xda\x48\x59\x33\x17\xbd\xfb\x61\xbd\x73\x90\x58\xab\x1a\xba\x11\xe5\xc0\x0e\x4e\x00\xb7\xa4\xd0\x3c\xd7\xe1\xa1\xe4\x8c\x96\xc9\x68\x28\x9c\x42\x6a\xa6\x38\x9c\xb9\x74\x77\xe0\x09\x40\x90\x05\x0d\x69\xe4\x59\xf3\xc9\x6c\x7a\x68\x28\x6d\x3c\x52\xe9\xd3\x62\xcc\x05\x89\x44\x67\x78\x9e\x18\x8c\x72\x4a\xe1\x19\x9e\x93\x25\xde\x9e\x8c\xf1\xb2\xd7\xb0\xb1\x79\x0f\xc5\xcb\x5e\x04\xdd\x7b\xd1\x96\x40\x3c\xda\xe5\x63\xcf\xc8\x68\x5b\xb6\x20\x6d\x56\xcf\xbc\xd3\xbc\xe1\x3a\x19\x25\x65\x94\x3b\xbd\x7b\x7e\xf1\x9e\x40\xbc\xad\x36\x4e\xb9\xce\xb8\x2d\xa3\x6f\x79\x44\x5a\xd9\x18\x6f\x3c\x6f\xe1\xf4\xae\x48\xa0\xcd\x69\x4b\xf6\xf8\x89\x84\x59\x84\xf2\xe8\x1b\x84\x5a\x19\x00\xe4\xf5\x7a\x70\xb5\xa9\x64\x8c\xf7\x7a\x28\x99\x22\xf0\x22\x71\xde\x69\xa7\xcd\xeb\x99\x35\xab\x47\x96\xc7\x48\x0b\xbf\xd1\x78\xde\x75\xe7\x35\xc6\x1b\x57\x6e\x5d\xd9\xb8\x66\xaf\xff\x09\x6f\xa9\x2d\xd5\x1c\x60\xda\x35\xbc\xc9\x03\x93\xe9\x10\xe5\xd2\xcc\xd8\xd8\x18\x4a\x4f\x90\x9d\x9e\xcf\x67\x34\x2d\xa3\x69\x48\xac\x22\xb0\x09\x2c\x59\xa1\x01\x7c\xd0\x65\xc8\x52\x9e\x21\xae\x74\x32\xc6\x55\xfa\x3f\xee\x93\xfd\x9f\x41\xe2\xde\xe8\x53\x38\x3e\x1b\x74\xe2\xf6\xe8\x86\xcf\x83\xa0\xda\x6b\xb5\x43\x3b\xf4\xa2\x9f\xa3\x9f\x80\x13\xea\xc1\x03\x2c\xf8\x01\xa2\x44\xb6\x60\xef\xdd\x2e\xf1\xbc\xc4\x72\x3c\x47\x71\xac\x44\xb9\x39\x05\xad\xba\xf2\x85\xcb\x2f\x7b\xb6\x78\xef\x1a\x81\xe6\x36\xf0\x9e\x6d\x1e\xfe\xe5\xb3\x13\xd2\x96\xc4\x57\xda\x03\x2f\xb6\x07\xae\xbc\x70\xda\x9f\x92\x49\x2e\x81\xce\x4f\x60\xaa\x64\x40\x44\x63\x28\x6f\x94\x5a\xc2\x0e\x27\x4b\x74\x84\x96\x18\xce\x84\xde\xad\xb0\x28\x8f\x21\xd2\xb4\xa2\xae\x69\xf8\x48\xd5\x75\x94\x27\xf8\xf1\x09\x58\xfe\x60\x3e\x01\xda\x5f\xcc\x10\x0f\x79\x42\xce\x27\x61\x16\x9c\x02\x10\xf5\x48\x09\x45\x49\xc9\x72\x8c\x18\x80\x94\x83\x61\xbc\x8a\x87\xa2\x1c\x5c\x3b\x71\x6e\xb1\x67\x2b\x27\x15\x25\x25\x25\xb0\x4a\x0f\x5a\x58\x2f\x43\x71\x32\x25\x2b\x12\x95\x4c\x49\xc4\xd3\x33\xac\x60\x23\x18\xe4\xaf\xb5\x5b\x6c\x16\x8b\xd3\x62\xb5\xda\xac\xd6\x4e\x8b\x83\xb2\x59\x9c\x16\xa7\xcd\xe2\xb0\x38\x2d\x94\xc3\x3c\xa1\x6c\x36\xcb\x7a\x0f\x13\xb3\xde\xb9\x79\x71\x26\x93\x5c\xbe\xfc\xdc\xe5\xe2\x96\x9b\xb6\xbc\x42\x59\xec\x36\x8b\x68\xb3\xd9\xad\x36\xfc\xed\x6e\xb0\x35\x38\x2c\x16\x64\x43\x76\x5f\x53\xe9\xd8\x52\xef\xa8\x93\x07\x1c\x4d\xf5\x81\x81\xcd\xe9\x4c\x26\x4d\x74\xd2\xe2\xcd\x9b\xab\x5a\xc7\xc3\x62\xb8\x1e\x40\x99\x02\x44\xe5\x3f\x69\xf1\x14\x0d\xe6\x12\xf8\x69\x8e\x73\xb4\x33\x0c\x97\x34\xef\x78\x19\xc6\xc1\x78\xb8\x76\xca\xcb\x62\xde\x73\x38\xaa\x70\x26\x31\x5e\x8f\x24\xa5\xcc\x17\x65\xad\xaa\x9d\x3f\xa8\x40\x92\xc5\x22\x98\x48\xa2\x9a\x2d\x36\xab\x15\x1f\xd7\x94\x70\xb4\xa3\xc9\x62\xab\xb3\xd8\xbc\x75\x14\xaa\x41\xf5\xf5\x35\x16\x9b\xc5\xee\xb4\xd8\x30\x46\x6c\x94\xc5\x69\xa9\xb1\xa0\x1a\x8b\xd3\x45\x1e\xb2\xd8\x1a\xc6\xaa\x31\xd2\x32\x25\x3a\x6b\x50\xbd\xb3\xa6\xa9\xce\x31\x81\xcd\x06\x1b\x7e\xdb\x56\xd3\x64\x71\xd8\x9a\x28\x9b\xc5\x66\xb7\x5b\x6b\xec\x4e\x0b\x72\x20\x9b\xc5\x82\x2c\xc8\xde\x4c\x9e\xa8\xb3\xd8\x9a\x88\xaf\x6f\x60\x39\x01\x03\x00\x8a\x83\xa1\x38\x6c\xac\x52\x09\x39\x99\x92\x25\x8c\x98\x4a\x84\x98\xd8\x28\xe1\x9c\xe7\x63\x1c\x3f\x45\xa7\xfc\x95\xb2\x34\xd8\xa5\xa8\xc5\x62\xb5\xd9\x6a\xac\xc8\x81\x9c\x18\xb6\x9a\x26\xa7\x05\x51\x16\x27\xdd\x60\xb3\xd8\x2d\xb8\x31\x8f\x57\xe1\xf1\xd7\x56\x64\xed\x69\x72\x5b\x10\x42\x56\x64\x43\xce\x46\x27\xc6\x47\x0d\x01\xb9\xb1\xd6\x62\xb3\x59\x1a\x6c\x76\x4b\xc3\xdf\xa1\x93\xff\x3e\x17\x28\x53\x99\x4b\xd5\x5c\x20\xfc\x1d\x2e\x38\x03\x73\x01\x6b\x58\x57\xcb\xcf\x5d\xbe\x3c\x99\xc9\xfc\x63\x5c\x70\xeb\x24\x53\x6c\xa2\x75\x0c\xc8\xb0\x07\x6e\xac\x68\x5d\x32\x26\xff\x0f\xd2\xfc\x94\x98\x09\xd6\x61\x52\xb2\xd4\x58\x6c\x98\xf4\x3b\xff\x69\xa4\x2f\x4d\x85\x42\x64\x43\x96\x7f\x22\xed\x3f\x3f\xd9\xea\x9d\xe0\x85\x24\x2c\xf9\x7b\xbc\xd0\x68\xfd\x14\x5e\x90\xa7\xc0\xd1\x27\x94\xa5\xe9\x24\x5e\xb0\xd9\x91\xa5\x6e\x32\x37\x54\xb5\x79\x4a\x66\xb0\x59\x91\x65\x12\x3b\xbc\x78\xb2\xed\x6e\x8c\x13\xe4\x89\xa6\xe7\xb0\x8d\x51\x76\x3d\x19\x96\x8e\xd0\x58\xfb\x58\xb1\xf6\xc1\x57\x4b\x7a\xd3\x88\xfa\xe7\x8a\x3a\xd2\x69\x3f\xf2\xd1\x99\xe1\x0c\x89\x3d\x8b\x46\xd8\xff\x00\xb1\x7d\x45\xc3\xdb\x12\x45\xac\x84\x5c\x3e\x00\x47\xb9\xae\x06\xf0\x40\x10\xa6\x41\x02\x52\xa5\xc8\x38\x56\xd0\xac\xc4\xa7\x28\x85\xa3\x78\x8e\xe5\xcd\x8b\x89\xd4\x64\xc3\x98\x95\x18\x0e\x2b\x5a\x94\x77\x35\x0e\x86\x7d\xae\xb0\xdb\xfd\xd5\x58\xd8\xcb\x84\xa3\xf3\xdd\x0d\x83\x83\x0d\x6e\xc4\x60\x58\x8a\x3a\xde\x87\x45\x11\x31\xa2\x88\xea\x98\x46\x97\x2e\x8a\xdd\xce\x94\xbe\x74\xa9\x1e\x56\x1b\x5d\xba\xeb\x77\x3e\x57\x49\xa3\xbb\x7c\x07\x55\x95\xa9\xb4\x53\x68\x68\x03\x1e\x94\x89\x28\x05\xde\x8c\x08\x3d\x5f\x11\xf5\xc6\xd6\x05\x8f\x4f\xd9\x93\xec\xf7\xe7\xfd\x2d\x81\x96\x40\x83\x53\x73\xd6\x67\x35\x4d\x96\xe5\x94\x3f\xe5\xf7\x2b\xa8\xa9\xe4\x9d\xb6\xb8\x0a\x99\x0d\x83\x83\x1b\x32\xce\xfa\xfa\xf5\x01\x3d\xc0\x06\x5a\xb6\xe8\x83\x83\xfa\xe0\xe0\x18\xc6\x1c\x41\x28\xc1\x1b\x86\x2a\x83\x0a\x24\x5e\xe1\x80\x5a\x68\xc4\x1e\x16\x15\x95\x23\xc4\xc1\xb6\x1b\x0e\xf6\x50\x31\x8f\x18\xad\x78\x00\x0d\x15\x0f\x8c\xa9\x2a\x76\x99\x04\x01\xfb\xd4\xd8\x37\xc8\xa2\x02\xc2\xd2\xc1\x03\x2d\xd0\x0a\x61\x00\x85\xa7\x78\x4a\xc1\xf6\x32\x57\xb2\x76\x13\x5e\xec\x3f\x62\xd7\x91\xe5\x64\x69\x74\x7a\x34\x10\x7d\xde\x4f\xeb\xc4\xf8\xa2\xfd\xe2\x30\xfe\xe4\xd5\xe9\xe1\xe9\xba\x8e\x91\x86\x77\xaf\x88\xe2\x88\x28\xea\x02\xf1\x21\x0d\x0f\x90\x9a\x18\x79\x31\xc2\x1d\x46\x08\x84\xd8\x34\x1a\x1a\x43\x39\x12\xc1\xa9\xb2\x27\x6d\xe6\xf3\x28\xd3\xb7\x64\x49\x5f\xac\xa7\x27\x56\x1c\x36\x22\x25\x8f\x34\x9e\xb9\xfb\xcc\xc6\x78\xc3\xfc\xd3\xe6\x37\x7c\xdb\x28\xc7\x5a\x41\x43\x34\xf6\xe9\x52\x24\xda\x20\x9b\xb1\x87\x12\xc5\x56\xf6\x44\x2e\xe6\xa7\x1a\x33\x6a\x2c\xf9\xa1\x41\xaf\x7e\xba\x48\xf6\x8f\x26\x63\xb6\xab\xc5\x03\xfe\x28\x43\xbc\x72\xad\xca\xc0\xb3\x55\xf9\x2d\x5e\x62\xdd\xf1\x4c\x74\x92\x87\x41\x82\x33\x11\x39\x82\x34\x1d\x41\xd9\x43\x4a\xd3\x3e\x0d\xd3\x7f\x71\x18\xa5\x73\x8b\x6e\xbc\x87\xb8\x34\x39\xda\xef\x7f\x55\x10\x74\xb1\x44\x65\x63\x48\x27\x5e\x02\xf1\x98\x11\x4b\xf1\x0a\x1b\x35\x63\x26\xa4\x4b\x0f\x85\xb3\x1b\xc3\xf3\x8a\x85\xe1\xb4\x19\x2f\xa9\x0b\x1f\xd8\x10\x56\xbd\x82\x50\x28\x47\x7c\x18\x08\x5b\x00\xe5\xc1\x0e\x34\x74\x02\x60\x2f\x96\x57\xf8\x8a\xe8\x11\x16\xc3\x0c\x27\x47\xe8\x08\x53\xc9\xc0\x16\xd8\x10\x56\xd5\xf0\x8d\xaa\xc1\xc7\xb4\x5f\x2c\xea\x48\x15\x0d\x2e\xd6\xc9\xbd\x41\xc2\xca\x9a\xcf\x35\x3c\x3c\x0e\x42\x99\x89\x27\xf0\x6f\xc6\x27\x11\xc3\xc9\xf6\x4f\x95\x13\xc3\x88\x99\x42\x48\x88\x53\x0b\x08\x07\xc4\x21\x8e\x0a\xe8\xdf\xa0\x0e\x68\x60\xa1\xcd\x88\xc9\x40\x99\x52\x64\xaf\x55\xf1\xb2\x4c\x8c\xf7\xb2\x54\x8c\x57\x1c\x14\x97\x52\x14\x07\xc5\xa7\x14\x96\x75\x50\xa8\x70\xc1\xea\xb9\xe9\xf4\xdc\xd5\xbf\x0b\x46\x7b\xe6\x6a\x8e\xd6\x60\x97\x63\x45\xab\x43\x74\x74\xdd\xd6\x13\x0d\x4a\x73\xc5\xb9\x73\xe7\xa1\x53\x1f\xbe\xa4\x46\xac\xd9\xa8\x6f\xac\x11\x6b\x8a\xb7\x06\xf1\xed\x97\x7b\x3a\x42\xd2\xdc\xcb\xa3\x3d\x73\xa5\x76\xf2\xd2\x23\x3d\x3d\xbd\x40\x22\x34\xa5\x31\x16\x37\x96\x03\x91\x93\xfd\x14\x12\xdb\x74\xf9\x4a\x5e\x83\x5e\x28\x4c\x72\x4f\x2a\x3c\x73\xa7\xe9\x9f\x74\x9b\xbe\x0f\x91\x1a\x1c\xf1\x82\x4a\xf2\x2f\x91\x9a\xec\x1a\x63\x61\x87\x72\x01\x39\x10\x48\x5d\x13\x16\xb1\xc0\x13\x1b\x5d\x63\x13\x12\x24\x2c\x8a\x79\x43\x66\xe8\xfa\x20\x91\x71\xee\x27\x2b\x85\xc7\x8d\x0c\xe1\xbc\x52\x8f\xb9\x8d\xba\x4f\xf2\x83\xf2\xf9\xfc\x04\x5f\x64\x74\x7d\x12\x33\x9c\x5c\xc6\x14\xb8\xc8\x57\x73\x57\x46\x55\x27\x97\x52\x4d\x3b\xec\x44\x04\xff\x24\xd9\x09\xf9\x7c\xbe\xb2\x30\x94\x11\x84\x34\x09\x7a\xfc\x1d\xa8\xd0\xd4\x25\x55\x95\x03\xd9\x6c\xbe\xaa\x10\x4b\xb9\x7f\x2c\xd0\x8c\xa9\x59\x22\x52\xd1\x6e\xbe\x1f\x41\xea\xae\x70\x99\xb1\x01\xdd\xb8\xdb\x9b\xa3\x7d\xa8\xd4\xbb\x96\x72\x04\xa2\xce\x8c\xe9\x4c\x44\x5c\xa7\x8a\x47\x88\x58\x3b\x8a\x7a\x75\x54\x62\x4c\x20\x6c\x28\x9f\x14\x9b\xf8\x87\x71\x9e\x3b\x71\x02\x31\xd5\x38\xaa\x27\x11\x8e\x82\x89\x73\x37\xb0\x10\x30\x63\x9d\x22\xf4\x80\x04\x33\x00\xa2\xd8\x69\xc5\x62\x5f\x26\xc9\x05\x64\xb3\x9a\x3d\x53\xda\x26\x9f\xbb\x89\x2b\x8a\x74\x51\x14\xd3\x39\x11\x7f\x04\xe3\x23\x9a\x9f\x5c\xa1\x98\x2e\xe4\x45\x51\x13\x84\xe1\x82\x28\x88\xa2\x80\x80\xf4\xa1\x46\xae\x4d\x3a\x29\x16\x90\x0e\x24\x9e\x63\xf8\xf2\xad\x00\x6e\x2f\xab\xa4\x58\x2f\x89\xbf\x78\xc8\x98\x98\xa1\xa4\x18\x0f\xeb\xa5\x6e\x9e\x7e\x56\x4f\x6d\x7d\x47\x27\xc6\xd4\x81\x42\xbd\x13\xe3\xcd\xe6\x44\xfe\xb3\xa6\xf7\xd4\xda\xeb\xc9\x79\xe1\x00\xbe\xd9\xd9\xd1\xe0\x24\x39\x1a\x4f\x59\x00\x65\x20\x08\x80\xda\x29\x6c\xbc\x52\x8e\x76\x9e\x8f\x25\x95\x54\x98\xf5\x62\x5b\xd8\xb4\x83\x63\x08\x92\xd3\xea\xc3\x3e\x87\xcb\x21\x3b\x1c\xe7\xa1\xf6\xf3\x1c\x0e\xd9\xe1\x72\xf8\xc2\xf5\x09\xa4\x36\xcd\x6f\xb2\x37\xb5\x18\x57\x36\x6f\x36\x9e\x69\x69\xb2\x37\xce\x6f\x36\x35\x60\x16\x65\xa1\x06\xc0\x2d\x31\x9c\x4c\xf1\x0a\x97\x2f\x08\x1f\x07\x3f\xbe\x19\x65\x0b\x37\x7f\x1c\xfc\x18\xf7\xe9\x1e\x58\x81\xae\x47\xcf\x43\x0d\xd4\x03\xb8\x15\x96\x63\x28\x5e\x91\xdd\xbc\xc2\x1e\xdc\xb0\x61\x50\x0f\xee\xd4\x97\x06\x97\x22\x6d\xc3\x86\xeb\xf4\xe0\xc5\x7b\x8a\x1f\x2f\x09\x2e\x21\x78\xb9\x19\xe5\x51\x06\x6a\x0d\x4d\x61\x24\x0e\xb0\xe8\xc1\x60\x3e\x2b\xe6\x36\xed\x41\x99\x60\x3e\xbb\x29\x27\xee\xc1\x38\xcc\x40\x86\x68\xe2\x1a\x00\x44\x82\x9d\x12\xa3\xa0\xdc\xc7\x37\x17\x84\x8f\xd1\xcd\x1f\x0b\x85\x9b\x3f\x36\x6c\x57\xcd\x7c\xaa\x09\xc0\x4d\xb1\x0c\x27\xf3\x94\x2c\x49\x0c\x4f\xf1\x4a\xa1\x77\x87\xb0\xa5\x77\x44\xef\xed\x0f\xf6\xa3\x5c\xef\x8e\xaf\x3d\xb8\xa5\x57\x27\x67\x55\x63\x31\x14\xd4\x91\xb8\xbf\x1c\x21\x34\x21\x33\x91\x89\x71\x06\xca\xc8\x59\x18\x87\x5c\x0e\x81\x48\xe2\x38\x05\xcd\x47\x23\x8d\x44\x2f\x33\xa2\x98\x35\x42\x7a\x1a\xd2\x69\x1f\x89\x37\x65\x49\x0b\xcd\x3c\x04\x77\x84\x89\x50\x72\x84\xc1\x54\x9f\x45\x62\xb1\xa0\x21\x71\x1c\x90\x80\x32\x62\x4e\x14\xd3\x82\x00\x9f\x06\x89\xdd\xdc\xa2\x34\x5f\x62\x93\x48\xc2\x8b\xcc\xb8\x30\xd9\x34\xad\x58\x28\x29\x6a\x0c\x90\x4a\xfe\x47\x8a\xba\x66\x04\x18\x7d\x44\x6a\x03\x2a\x58\xe0\x1f\x19\x1b\xa0\xe5\x08\x43\x13\x63\x6c\xe9\xc2\xa5\x57\x74\xb6\xb6\x76\xb6\x5e\x5a\x11\x37\x4d\x17\x87\xb3\xe1\x96\x60\xb0\x25\xfc\x66\x2b\xbe\xb9\xb6\x52\x51\x14\x35\x51\xb4\x00\xb1\xd6\x26\x78\x20\x0c\x31\xc3\x42\x8e\x4e\xc9\x04\x94\xc1\x21\x0a\x56\x21\x44\xe5\x13\xba\x90\x09\x6d\x30\x98\xa1\x51\xae\x9a\x3f\x7a\x7a\x3e\xd3\xe3\x6c\xe8\xe8\xf4\x32\xaa\xc8\xa8\xa4\xd5\x69\xef\xf3\x93\xb8\xa5\xe7\xcc\xde\x1e\xa7\xad\x7e\xd4\xeb\x25\xc2\xca\xcb\xa8\x8c\x57\xc4\x9e\x42\x6d\x79\x9c\xdf\x18\x37\x0c\x01\x0f\x3d\xa0\xc0\x5c\x58\x8c\xbd\xe8\x52\xb4\xd9\x6b\x7e\xa7\x26\x9d\x97\x86\xd2\x52\xe6\x3d\xdb\xa4\xe7\x4a\xdf\xa5\x72\x8c\x58\xb4\xf1\x7f\x77\xc5\xf1\x56\xb2\x7f\x85\xec\x8b\xaf\x56\xdc\xa8\x7c\x14\x8d\x91\xb3\xad\x15\x77\x2a\x8f\x5f\xad\xd8\xdf\x5d\xb1\x2f\x1a\x5f\x50\xa1\x15\xec\x24\xfa\x29\x53\x3c\xc3\x9e\x34\x16\x94\xc3\x9f\x8a\x1e\xd6\xc4\x4c\x46\x1c\xca\x4f\xca\x8e\x28\x51\x69\x03\x89\xe5\x61\x0b\x89\x32\x89\x92\x61\x71\x89\x3c\xb1\xc0\x31\xd9\x34\x38\x0b\x5a\xbd\x13\x31\xce\x06\xcd\x59\xaf\x8d\x39\xeb\x11\x83\xc0\x59\x9f\x46\x22\xc9\xf4\xa9\x77\x16\xf3\x5a\xbd\x53\xcc\x43\x39\x2b\x22\x4f\x46\x5c\x20\x2a\x51\xbc\x24\x4b\x3c\x4b\x8c\x2f\xa4\xa9\x9a\xa6\x0a\x59\xec\xa4\x65\x35\xed\x40\x56\x3b\x70\x80\x70\x58\x18\xe5\xd1\x4f\x09\xc7\xb7\x61\xd9\xc0\x2b\xac\xd7\x4b\xf1\x8c\x4c\x46\x7d\x59\x96\xe2\x0d\x37\x55\xe1\x15\x40\xd0\x1b\x3c\x65\x5f\xcc\xe5\xbd\x67\xab\x7f\xf9\x6f\xa9\xc0\xcc\x9e\xd9\x8b\x13\xd3\xa8\xae\x59\x01\x24\xa2\x3b\xa6\xe3\x7b\x99\x9e\xbb\xff\xf5\x9c\xad\xed\x62\x72\x79\xa0\x26\x30\x33\x96\xe8\xb9\x2a\x31\x2b\x50\x2c\x54\x64\x92\x31\xe0\x83\x38\x00\x4a\x19\x8c\x23\x91\x3e\x26\xf1\x07\x29\xa9\x50\x15\x76\x08\xf6\xf8\x4a\x48\x9d\xe7\x49\x0c\x24\x04\x7f\xbb\xbf\xc1\xef\x13\x7c\x3e\x81\x24\x10\x69\xaa\xaa\x11\x93\x26\xea\x69\xe5\x24\x89\xa3\xfd\xfe\xf6\x86\x40\x20\x52\xd7\x1e\xf8\x82\x28\x22\x0d\x4b\x17\xda\xaf\xaa\x7e\x1a\x89\xb4\x0f\x4c\xac\xe7\x50\x01\xdc\xd8\xa7\x75\x7b\x71\xe3\x1c\x14\x35\xcd\x26\x27\x15\x5e\x61\x95\x76\x8a\x4f\x49\x13\xa9\x29\x7f\xdd\xb6\x30\xb0\xa4\xb9\xa3\xb6\xd6\xe1\x49\xf2\x61\xdb\xc2\xc0\x73\x35\x6c\xf3\xa2\xb8\xda\xbf\xb6\x63\x05\x1d\x42\x75\xe7\x2f\x0c\x2c\x6e\x99\x56\x57\x47\xb1\x8b\xe6\x9d\x1a\xaa\xf3\x2e\x0c\x3c\x77\x8e\x6b\xe1\xb4\xb5\xfd\xd3\x17\xad\x6c\x6a\xf1\x86\x8c\x1e\x11\x49\x46\x09\x05\x2d\x98\x1b\x8c\xa1\x96\x18\xae\xa3\xd1\x62\xd4\x7c\x82\x64\xf9\x38\xf7\xaf\x0d\xc5\xc5\xa6\x66\x52\x15\xaa\x0b\xe1\x8b\xb9\xb5\xfd\xa1\x55\x03\x73\x5c\xb4\x51\x41\xff\x7f\x2a\xdd\xd0\x49\x72\xb6\x2c\xdd\xaa\x85\xad\x21\xdb\xb0\x73\x32\x21\x6d\x51\x05\x4d\xc2\xa4\x92\x72\x13\x6f\x17\x2a\xdf\xb1\x54\xe4\x57\xb9\x00\xa2\x74\x84\x56\x26\xbf\x5a\x1c\x16\x2b\x6a\xcf\x61\xb5\x2e\x22\xa1\xba\x14\x09\xda\xd0\x77\x49\xb4\xc1\x55\x1a\x6f\x31\xf2\x5d\xa2\x0c\xaf\x48\x09\xef\x4a\xb4\xab\xb5\xb3\xbe\x66\x84\xf6\xf5\xa1\x4d\x7f\x4c\x1c\xa0\x7d\xe8\xc9\xe2\x4d\xad\x5d\x0e\x3f\xfd\x61\x9f\xf5\x2f\x7f\x4c\xf8\xff\xcf\xd9\x09\x56\x10\x41\x26\x6d\x6c\x87\x04\xcc\x07\x70\xb3\x88\xe2\x39\xaa\x3d\x26\x93\xcc\x08\x96\x8a\x19\x23\x67\x98\x5d\xcc\x63\x76\x12\x25\xb1\xbc\x99\x4d\x61\x5e\x1d\x60\xd0\x96\xc0\x41\x64\xa3\xfd\xa8\xdd\x29\x30\x6d\x9c\x27\x18\x99\xc6\x33\xbd\x33\xe2\xf1\x82\x18\x0d\x25\xe6\xac\xbb\x2c\x14\x66\xb6\xf4\x72\x28\xc1\x39\x6d\x9c\xd7\x2f\x0f\xa2\x43\xde\xe2\x3d\x81\x2f\x23\x3f\x6d\x6b\x77\x79\x7a\x7d\x51\x7a\x16\x17\x0b\x85\xa6\xa5\xa6\x9d\xc2\x46\x5b\xcf\x9e\xb9\x6c\x46\xb7\xdd\x13\x0a\x5d\xb6\x6e\x4e\x22\xc4\x77\x0d\x6c\x79\x93\xb3\x39\xb9\x04\xe2\x9c\x83\xb2\x9f\x2c\x4a\xa1\x12\x9f\xd0\x90\xd1\x3d\x00\xd1\x58\x52\x91\x14\xde\x41\x39\x3c\xac\x97\x55\x78\xca\xd4\x63\xae\x4f\x1b\xe3\xbe\xac\xa6\x86\x0b\x0b\xf1\x26\x87\xa3\x29\x2e\x84\x77\xad\x5b\xb5\xee\x6e\x32\xb8\x7e\x82\x58\x9a\x69\xbc\x2f\x30\x71\x46\x10\x23\x49\x26\xce\x24\x23\xa2\xa0\x31\x6d\xd1\x68\x1b\x83\x80\x0c\xb5\x6f\xad\x32\x41\xed\x65\x88\x8c\xec\x0d\x0e\xba\x0c\x5b\x9d\xf9\x4f\xe0\xb0\x53\xbc\xcc\x2a\xa8\x30\x3c\x15\x00\x28\xab\xaa\xaa\x8a\x40\xd7\xf5\x4f\xaf\x3b\x23\x08\x5e\x51\x24\x38\x59\x60\x01\x42\xbb\xd8\xee\x12\x00\xdc\x31\x2c\x05\xb0\xd1\x4b\xc4\x60\xa5\x05\x38\xd9\x3e\xbc\x7e\x99\x25\xb8\xfc\x02\xe1\x17\xcb\x83\xcb\x35\xc3\xf4\x6b\x6d\xab\x9f\x76\x6e\x95\x95\x88\x7a\x96\xa1\xd0\xf2\xeb\x86\x86\xce\x18\x0c\x2e\xff\x9b\x71\xd9\xdf\x68\x6f\x9c\xdf\x54\x65\x32\x82\x0d\xce\x00\x11\x3d\x82\xc6\x88\x4d\x1f\xc0\xb2\x29\x6a\x66\x2f\x55\xc6\x62\x62\x09\x96\x8a\xb5\x53\x3c\x9b\x32\x0e\x90\xaa\x5f\x56\xdb\xd8\x58\x7b\x09\xde\x71\xf9\x45\xc1\xbe\xfb\xfb\x82\x33\xe3\x97\xc7\x43\xa1\xd3\x43\x5a\x2e\x57\x68\xac\xfd\x09\xbe\xf5\x93\xda\x26\x7c\xb3\x2f\x38\x27\x1e\x0f\x86\x42\x86\x0f\x61\xe4\x38\x18\x1e\x52\x84\x89\x44\x4d\xdd\x53\xf2\x4d\xcc\xfc\x9c\xcf\xf9\xe8\x09\x4f\x02\x65\x46\x46\x30\x1f\x93\x9d\x21\xdb\x18\x94\x35\xa1\x86\x28\xcd\xd1\x65\xc9\x5d\xa2\x99\xca\x37\x32\x24\x9e\x72\x85\xaf\xe4\x74\xe9\x44\x0f\xfe\xdf\x02\x09\x32\xa3\x69\x39\x92\x5f\xc2\x1a\x29\x2b\xb2\x49\x8b\x44\x91\x9a\xa9\x7e\x24\xbb\x8b\x43\xba\xa6\x26\x06\x12\xfe\x76\x3f\xd6\xaa\xe6\x11\xca\xa5\xb3\x5c\x22\xc1\x65\x71\xa9\x59\x4d\xcb\x62\xa5\x64\x9c\x4c\x2d\xb9\x27\x62\x88\xd1\x6a\xa1\x99\x11\xb1\x73\x84\xbc\x13\x62\x97\x31\x1c\xa8\x7c\xb5\x7d\x0c\x90\xb5\x00\xd2\x89\xed\xc5\x01\x74\x98\xfa\xa5\x94\xc7\xd0\x81\xad\x26\x8c\x45\x02\xbb\x87\x92\x62\x72\x12\x9d\xdf\x2f\x8a\xfd\xf1\x13\xfd\xf1\x78\xbf\x88\x7a\x36\x2d\x5c\xd8\x5b\x3c\xd1\xbb\x70\xe1\xa6\x45\x81\x0d\x81\x7c\x9c\xdc\x24\xfb\x3b\x17\x6e\x5a\xb4\x08\xdf\x16\xc3\x61\xb1\xd7\xa0\x1a\x9d\xc4\xa7\x28\x0c\x7d\x29\xaf\xa9\x94\x95\xe4\xc0\x52\x36\x89\xc5\xdb\xd5\xd8\x5a\xf2\x3d\xf4\xb6\xa8\x9d\xd5\x30\x5f\x90\x07\x07\x65\x61\x7e\x81\x98\x50\xb3\xd3\x9a\x16\xeb\x19\x1c\x1a\xec\x21\x3e\x32\xb6\x07\xc6\x48\xa6\xea\xc4\x68\x26\x46\xba\xc4\x48\x34\x2e\x33\x99\x92\x58\x8a\xa5\x78\x12\xbf\x62\x15\x44\x50\x59\xa0\xfd\x62\xa1\x20\xfa\x69\x4d\xd3\x18\x2d\xcd\x68\x1a\x93\xd6\xd0\x58\xc9\xd9\x55\x45\x94\x16\x55\xda\x7f\x77\xe9\x16\xa3\x69\x46\x2e\x8a\x51\x1b\x05\x6d\x20\x03\xb8\x4b\x3d\x3b\x89\xc7\x8c\x5e\x56\x3e\x05\x9a\x43\x6e\xbf\xfb\x8c\xda\x66\xba\x6e\x57\x6d\x73\x73\x6d\x74\x5a\xc7\xd3\x55\x10\x21\x26\x5c\xdf\xdc\x5c\x1f\x6e\xae\x1b\xc4\x0f\x0d\xd6\x36\x85\xbd\xe1\xb0\xf7\x85\xc9\xb0\x19\x7a\x9c\x21\x19\x4d\x98\x62\xfd\xd0\x3e\x35\xd5\xda\xbd\x64\x00\x5f\x21\x5f\x49\x1e\x89\x15\x44\x8c\x44\x8f\x87\x71\xb9\xe6\x77\x76\x7a\xdb\xda\x34\xec\x47\xa0\x03\xfe\x0a\x8a\x7e\x85\x49\xba\xbd\xbe\x96\xf9\xb1\x4c\xd4\x1b\x3a\xa5\x15\xe3\xa0\xbf\x8c\xf1\x10\x9c\xf6\xe9\x38\xb7\x94\x7a\x16\x7b\x13\x0e\x8e\x77\xe0\x3d\xd7\x1e\x53\xf8\x18\x4f\x39\x78\x3e\xa9\x28\x32\x1f\x53\x94\x94\xc4\xa6\xf0\x5e\x4a\x30\x2c\x51\xb7\xac\x87\xa2\x26\x75\x52\xac\xdd\xe7\x6b\xf7\xef\x67\x6d\x16\xc6\x62\x6b\x6d\xb4\xdb\xed\x48\xb4\x58\x91\xcd\xde\x18\xb4\xd8\x19\x4b\x4b\x0b\xbe\x61\x0f\x34\x50\x36\x3b\x12\x1d\x76\x7b\x63\xab\xc5\xc6\x58\xd8\x93\xfb\xb3\x78\x82\x50\x90\xc3\x6d\xb3\x44\x2d\x75\x4e\x4b\xc0\x6e\x43\x01\x8b\xd3\x69\xb1\x77\xd8\x6c\xb4\x97\x2e\x5f\xb6\xe3\xab\xc8\xd6\x61\xb3\xd0\x95\xb1\x25\x07\xd4\x62\x4b\xdb\xcd\x61\xe7\x9a\x9b\x2a\x20\x5c\x10\x34\x4d\x48\x8f\x15\x75\xa4\x4f\x8c\x14\x20\xd0\x34\x6d\x1e\x8a\x17\xff\x0d\xa5\x7d\x2e\x33\x97\x5e\x70\xf9\x08\x37\xc8\x68\x0c\x1d\x04\x27\xc4\xb0\xbc\xc6\xda\x9d\x49\x49\x09\x6b\x82\xa5\x8d\x24\x70\xae\x9d\xc2\x5b\x3b\x31\x3f\xe8\x94\x94\x60\x53\x28\x1f\x11\xe6\x25\x93\xf3\x78\x7e\xb9\x40\xd9\xac\x96\xae\x39\xf3\x92\xe2\xb2\xd4\x74\x64\x45\x36\x4a\x1c\x5c\x26\x8a\xbb\xfe\x5c\x1b\xfe\x28\x8c\xc2\xe1\xe2\x0f\x6d\x14\xf2\x86\xc3\x2c\x72\xd8\xd0\x8c\x70\x38\x6c\x64\xcd\x94\xa2\x52\x46\xa4\x4c\x89\x10\x27\xe4\xa4\x08\x10\xe4\x48\x94\x39\x57\x99\x2b\x81\x98\xcc\x38\x14\x86\x86\x26\x07\x23\x2d\x00\xa0\x59\x80\x44\xe9\x8d\x4c\x1c\xc6\x41\x91\x18\x63\x44\x96\x2a\xc2\x54\x8c\xc7\x81\x98\x74\xfa\x3c\x56\xd4\x0e\x68\x45\xd0\x5c\x2d\x2d\x2e\x52\xfe\xa1\x55\xab\xa6\x35\x5d\x30\xf3\x12\x51\xf4\xb9\x0a\x18\x41\x05\xda\xb0\x38\x02\x16\x40\x6f\x12\xcb\x30\x02\x51\x00\x25\xa5\xf0\x0e\x1e\x51\x7c\xa9\x5c\x85\x47\x1e\xcc\xdb\x8c\xa3\x9d\xe2\x71\x15\x56\x89\xe1\xb2\x6d\xbd\xed\xe1\x0b\xd0\x23\x81\x99\xc5\xcb\x34\x57\x4b\x63\x04\x7d\xd3\xbb\xbb\x3d\x6d\xa1\x2c\xdb\x11\x4d\xfb\x9a\x67\xd1\xf9\xce\xfa\xf6\xd0\xbb\xc5\x33\x02\x33\x45\x1f\x3d\xe2\xae\x8f\x14\x4f\xf8\xea\x77\x87\x4f\xe9\x46\xe8\xc2\x16\xd7\x38\x71\xd2\x2b\x63\x23\x6e\x85\x55\x8c\x39\x15\x94\x1a\x7c\x70\xcf\xa6\x9c\x98\x45\x2b\x82\x0f\xee\x11\x73\x9b\xb2\x66\x96\xda\x97\xd1\x97\x89\x0c\xf5\x01\xb8\x8d\x94\x7d\x32\x0c\x87\xbf\x19\xc3\x07\xe5\xda\x63\xda\xba\xfd\x73\xd6\xf7\x5f\xff\xdd\xd9\x0f\xec\x08\x74\xfa\x03\x6e\x4f\x00\x75\xed\x5f\xd7\xbf\xfe\xf9\xef\x5e\xbf\xe3\x81\xc3\xee\x80\xbf\x33\x10\x30\x23\x2d\x59\x94\x85\x3a\x80\xe8\xc4\xa0\x99\x84\xb2\xba\xa0\xeb\x82\x3e\x86\x77\xfa\xe4\x39\x13\xd1\xbf\x93\x95\x89\x32\x69\x21\x9d\x16\xf4\x89\x3c\x94\x31\x92\xe2\x99\x2e\x9c\x14\xb3\x2c\x65\x7a\xba\xab\x4b\x2c\x79\xd9\x66\x49\xdb\x8c\x79\x46\x46\x21\x27\x8c\xc4\xd5\xea\xbc\xd5\xc0\x14\xb3\x8c\x98\x89\x01\x84\xca\x04\xd6\x13\xa4\x94\xea\xa9\x46\xa4\x96\x74\x39\xaf\x3d\x4f\x56\x48\x09\x02\xb8\x23\x7c\xc4\xad\x10\xb8\xa2\x95\x6d\xc4\x52\x24\x92\x60\xb7\xa1\x98\x67\x1c\x3e\xb7\x6b\x59\x7a\x19\x12\x6b\x8d\xc6\xd5\xb6\xd5\x36\x21\x68\xaa\x45\x59\x6f\x71\x74\x97\x28\xde\x56\xdf\x54\xfc\x33\x69\x73\x6d\x53\x7d\x47\x7d\xbd\xb1\x26\x81\x61\x49\xd6\x19\xe3\x31\x64\x14\x8b\xa5\x58\x85\x9d\x88\x68\xf3\xbc\x92\x92\x50\x76\xf9\xf2\xe0\xf2\x15\xc1\x15\x2b\x82\x2b\x96\x7f\x86\xa0\x33\xef\x69\xbc\xf8\xe2\x46\xcf\x57\x57\x18\x57\xf1\x3f\x66\x0f\x5c\xb3\xfb\xc9\x27\xdd\x53\xcc\x49\x8a\x26\x52\x72\x92\xa7\xbc\xbc\x87\x55\x62\x5c\xbb\xa3\x14\xa1\x40\x30\xb0\xa5\xe3\xf7\xdd\x17\x1a\x49\xd0\x06\x6e\xb4\x2d\x03\xb3\xbb\x7f\xdf\x91\x23\xb9\xd2\xb7\x9a\x19\xc2\x55\x14\x82\xaa\xf4\xdb\x9e\x3d\xc1\xd2\x3f\xda\x53\x71\x42\xa0\x30\x64\x37\xd6\x17\xad\x53\x6b\x0b\x85\x89\xd0\x9c\x31\x00\x71\x82\xd8\xc4\x64\x37\x4c\xf2\x7d\x54\x24\x16\x0b\x25\x8f\xd8\xf0\x87\xd3\xf8\x8a\x58\x1a\x8d\x28\x79\x71\x35\x24\x53\x50\x26\x79\xbb\x14\xef\x48\x24\xdb\x27\x92\x22\x8d\x6f\x16\x31\x1c\xc9\x1c\x2c\xe5\xf4\x1a\x93\x13\x0c\x13\x03\x65\xd5\xac\x18\xf6\x7a\xaf\xa9\x08\xbe\xec\x43\x94\x9a\x4d\x50\x89\x81\x44\x82\xf3\x34\x25\x12\x4d\x1e\x2e\x91\x18\x48\xa0\x3c\x73\x40\x1c\xf4\xbe\xe0\xeb\xf0\xf9\x3a\xde\x27\x7b\xba\xf8\x31\x93\x2d\xdd\xa7\x12\xa5\x77\xca\x73\x6f\xcc\xc8\x5b\x94\xb4\x1f\xd3\x22\xfd\x69\x5e\x82\x94\x4a\x25\xbc\x2c\xca\x0a\x23\xc2\xfd\x64\x5a\x96\x3e\x31\xe3\x68\x3d\x15\x16\xc2\x94\x86\xd2\xaa\x5a\x1c\x46\x3a\x99\xc1\x55\x5f\x39\x4c\xe7\x6e\x69\x71\x43\x05\x87\x3a\xa1\xd1\x88\x8c\xa4\x12\x2c\xeb\xf5\xd8\x15\x96\xe2\xd0\xd7\xf9\x55\xbc\xc3\xe5\x48\x38\x8a\xfa\x6f\x56\xfd\x66\x15\x1a\xc2\xe7\x8e\x84\xc3\x35\xfa\x9b\x55\xbf\x99\x88\x15\xe1\x1e\x73\x11\xa9\x4a\xd9\x27\x02\xff\x8a\xc2\x7a\x11\x3c\xf3\xcc\x33\xe8\xf3\x46\xc5\x9e\xef\x7c\xc7\x33\x76\xc1\x39\xe7\xd8\x48\xf7\x14\x7c\xf5\x3b\x76\x18\xb3\xc5\x8c\x71\x04\x33\xfe\xa9\xc8\x11\x26\x1a\x61\x22\xac\x2c\x31\x3a\x82\x62\x1e\xe9\x45\x3d\x9b\x1e\x13\x84\xac\x58\x10\x45\x83\xb6\x54\x12\xc1\x75\x9a\x33\x9d\x38\x86\xa3\x25\x24\xed\x3d\x50\xb3\x57\xc8\x23\xbd\x20\x64\x51\x06\x2a\x46\x66\x1d\xd8\x0e\x65\x29\x99\x93\x11\xe4\x72\x39\xa4\xa5\x73\xb9\xf4\x30\x86\x7f\x8e\xd9\xfa\x1a\x58\x44\xa8\x5e\x71\x60\x0f\x97\xe7\x53\x8a\xe9\xd9\x3a\x28\x87\x57\x4a\x28\xc6\x39\x2b\x31\x86\x09\x28\x27\x53\xca\x34\x1b\xd7\x4e\x35\x5a\x28\x47\x4c\x4e\xf6\x5b\x95\x14\x1f\x43\x9d\x8d\xad\xb6\x60\xb8\x36\x1f\xad\xad\x09\x84\xdc\x5c\x6b\x6b\x9d\xc3\x5e\xe3\x6c\xf2\x06\xa6\xcf\x10\xba\xac\x72\xd2\xd1\x1f\x69\xed\x9c\xad\x20\x64\xa7\x1a\x6b\x5b\x67\xd1\x0d\x2d\x75\x5c\xa2\xce\xd5\xdc\x84\xe8\x3a\x6a\x67\x34\x56\x13\x6b\xa0\x9c\x7f\xe9\xa8\xaf\x09\x04\x43\xc1\x4e\xbe\x83\x6e\x71\x79\x3b\x66\x2b\xed\xf2\xa2\x7e\x3e\x10\x59\x52\x5b\xe3\x68\x70\xd8\x97\x32\x4d\x1e\x6b\xdd\xf4\x8e\xa6\x8e\xf6\x80\x17\xb5\xda\xac\xd5\xbd\xe8\x33\xc6\x4b\x48\x5e\x85\x7c\xd2\x68\x57\xb6\x58\x48\xc7\x92\x31\x92\x31\x57\x2c\x60\xed\x96\x2f\x14\xfc\xb1\x98\x1f\x81\x91\x12\x60\x6a\x7e\x6b\x79\xe4\xbc\xc9\x88\x23\x21\xa2\x1f\x38\x59\x22\xd9\x1a\x9c\x4c\xc9\x12\xd3\x41\xa6\x5a\x19\x16\x31\xfe\x46\x99\x78\x7f\x7f\x3c\x9d\x0e\xf0\x7c\x20\x3d\x34\x5c\x2c\xf2\x81\x74\xda\xbc\x84\x32\x73\xd7\xcd\xed\xe2\x53\x7c\x97\x2e\x08\xd3\x53\x7c\x17\x3e\xfd\x67\x47\x1b\xff\x39\x25\x21\x88\x40\x8e\xb4\xbd\x91\xe4\xd6\x72\x44\x04\x52\x7c\x2a\x25\x25\xd0\xf5\xcb\xf3\x2b\xa7\xf7\xf7\xad\xa7\x13\xde\x5d\x4b\x35\x14\x5c\x91\x5f\xd1\x39\x2f\xd9\xbc\x30\x6d\xd0\xe5\x18\xca\x22\x06\xfb\x2c\xd1\x88\x1c\x31\xbc\xba\x31\xa1\x42\x6b\x59\x89\xc6\x94\x39\xa6\x2c\x51\x33\x23\x6e\x53\x53\x09\x53\x6a\x29\xf7\x14\xb3\x2b\x26\xcd\x83\x1d\x1a\x19\xa9\x52\x4d\x0b\x04\x62\x1b\x68\x28\x6f\x8e\xc9\x78\xbd\x2c\xc9\xb0\x29\x9c\xbb\xc3\xb5\xe2\xfe\x6c\x16\xa9\x4d\x9f\x3b\x63\xdb\x5a\x32\xef\xc3\xb0\x8b\xf0\x73\x8d\x24\x37\xc1\x78\x92\xa2\x58\x86\x57\x10\x63\xbe\xa0\x6b\x5a\xc5\x5b\xd8\x1b\xcc\x66\xab\x34\x5f\x49\x1b\x33\x5e\x13\x56\x37\xcb\x50\x1c\x2f\x2b\x88\x11\x6a\xbd\x34\xed\xa5\xcf\xdf\xbe\xfd\xe0\xf6\xed\x63\xba\x7e\x26\xed\x6d\x6e\xf6\xa2\xf0\x76\x92\x63\x3e\xa9\x14\xd3\x63\x9c\x28\xa5\x7a\x5e\x65\xe1\x52\x12\x0c\xc9\x69\xe5\x29\x9f\xaa\xa6\x15\x8c\x49\x0e\x3d\x9a\xd9\x87\xd8\x4e\x70\x55\x94\x6a\xe4\x9d\xbb\x81\x25\xe3\x0a\x1d\xd0\x49\x56\x3c\x4c\xc1\x4c\xe8\x87\xf9\x30\x00\x83\x00\x6e\x46\x22\x14\x6d\x35\x37\x45\x96\x18\xde\x38\xf6\x38\xf0\x01\xb9\xc9\x70\x32\xbe\xc9\xb4\xc7\x64\x09\x5b\xa3\x64\xd4\x01\xdf\x71\x9b\x8f\xf3\xc9\x94\xc4\xe4\xf5\xdc\x08\x19\x15\x24\xbe\xac\x9f\x16\x0b\x82\x26\x6a\x22\xed\x17\x31\x64\xa2\x2e\xe4\x44\x41\xd4\xf1\x1d\xa4\xea\x7a\x6e\x64\x04\x81\x28\x16\x8d\xf9\x58\x39\x51\x1c\x07\x91\xf6\xe7\xc8\x04\x2d\xa4\x8b\x62\xb1\x20\x8a\x9a\x9f\x46\x9a\x9f\x36\xb2\xdf\xc7\x41\x14\x73\x82\x30\x4c\xfb\x45\xe2\xcf\x1b\x96\xbf\x1d\xcb\xcd\x68\x54\xb6\x8b\x48\x2d\xe6\x51\x5e\xcd\x8a\x62\x36\x0f\x9f\x2e\x5d\x19\x59\x62\x54\x23\x4f\xbf\xa8\xeb\x65\xe1\x6a\x35\xf5\x76\x8e\xcc\x03\x22\x1a\x41\xa2\x28\x4e\x91\x58\x8e\xa7\x22\x4c\x04\x41\xe7\xaa\xb3\x3c\xf1\x2d\xe1\x2d\x71\xcf\x8f\x48\x84\x41\xcf\xc4\x7a\xc6\xc6\x7a\x4e\x17\x08\x34\x39\xf4\x8e\xc9\x37\x09\x12\x27\xe4\xda\x29\x96\x93\xd9\x14\xaa\x5b\xba\x93\x4d\xd0\xeb\xfb\xfa\xa7\xaf\xcc\x2f\x9f\x8b\xb4\xf4\xc2\xe6\xe4\xbc\xce\x15\xf9\x15\x4a\x15\xbd\x9b\xb9\xc4\x56\xce\x2a\x29\xd2\x64\xe9\xc5\x2a\x2c\x3a\xad\x7b\x5b\xe7\xb6\xee\x96\xbd\x17\x4e\x30\xf1\x15\xf1\xf8\x2e\xe4\x2d\x9e\x50\x51\xb8\x52\xc1\x7d\xb4\x7b\x37\x54\x50\x97\x03\x9a\x21\x4c\x34\x1c\x49\xef\xfa\x74\x11\xa9\x61\x0f\x69\xe8\x24\x39\x89\xc4\x74\x5a\x55\x33\x25\x69\x69\xe8\xd9\xb2\xb4\x9c\xc2\x06\x64\x29\x32\x0d\x55\xf9\xfb\x36\xe0\xbc\x5a\x83\x94\x2b\x4c\xc0\xdd\xbb\x44\xf1\x67\xf5\xcd\x25\x0b\xb0\xb9\x9e\xc3\x16\x60\x09\x4b\x79\x92\x39\xc3\x91\x39\x5a\x14\x4b\xd1\x8c\x24\x63\x2b\xbe\xec\xe4\x97\x53\xf8\xf1\x6e\x4c\xd3\xbc\xaa\x9a\xa6\x7d\x15\x2e\x52\xda\x47\xef\x4a\x6b\x8c\xaa\xa2\x5a\x41\x10\x7d\x2e\xc1\x4f\x93\x29\x82\x63\xb4\x5f\xa8\x8a\x56\xd1\xc0\x1b\xfe\x33\xe3\x70\x30\x4c\x44\x4e\xc6\x78\x5c\xa6\xad\xba\x22\x7c\x16\x91\x93\xd8\x1b\x77\xb7\x8c\x43\x8b\xdb\x4f\xa3\x9e\xf6\xd2\xb8\x7c\xbb\x1f\x09\x28\xeb\xa3\xa7\x51\x61\x26\x1e\x67\xc2\xd4\x34\xda\x37\xe4\xa7\xc9\x9c\xab\x0c\x71\x7d\x55\x1a\xaa\xe6\x70\x18\x33\xaa\xda\x00\x10\x76\xcd\x14\x89\xc5\x2c\x67\x18\x80\x51\x63\x48\x97\x0c\xd3\x23\x71\x1c\x54\x46\xf3\xe6\x0a\x24\x47\x0b\x81\xae\x67\xb3\x9a\x86\xb2\x82\xe0\xf5\x16\xc7\x0a\xd8\xc4\xb8\x5d\xd4\x05\x5d\x2c\x67\xb6\x65\xcd\x6c\xa6\xa0\x91\x39\x85\x35\x96\x03\x6b\x30\x62\x19\xb4\x2b\x66\xe1\x78\x13\x57\xcf\x18\x1c\xec\xec\xeb\xeb\xac\x53\xd5\xba\x19\x4f\x93\xfc\xaf\xe1\x9f\x5f\xb4\x5a\xe8\x5b\xd5\x27\xa8\xaa\x28\x8a\x07\xc5\x83\x42\xe5\x4c\x1b\x8a\xcc\x15\x20\x70\xa7\x26\xcd\xaf\x51\x18\x96\xe2\x65\x6c\xff\xda\x29\x5e\xf9\x97\x8a\xf9\x35\x87\xb4\xe6\x2d\x0b\x36\x05\x36\xa1\x25\x81\x4d\x01\xad\x62\x6e\x4d\x60\x7b\xc2\x3f\x5b\x3f\xfb\xd4\xf0\xa9\xa7\x46\xd6\x84\x27\xea\xf9\xd5\xff\xdf\x7a\xe8\xcd\xf3\xcf\x26\xf5\x9c\xdd\x6a\xd6\x43\xa4\xaf\x7f\x87\xe4\xef\xd7\x37\xad\x0e\xaf\x5e\x1d\x3e\x2d\x5c\xe9\x07\xd8\xa1\x81\x68\x51\x52\xa6\x65\x92\xfe\x41\x75\x1b\x9a\xb7\xf7\x56\x28\x20\x94\xd9\x3e\x23\xb0\x50\x2f\x9e\xa8\xd4\x42\x15\xd8\xa9\x23\x11\xdf\x90\x91\x63\x39\xe1\x61\x7d\xda\x4c\x24\xc4\x90\xac\x90\xae\x29\xa7\x22\x91\x2c\x4b\x51\x1d\x9b\x6a\x2a\x92\xa1\x67\x8d\x39\x2d\x7e\xec\x13\x23\x6c\x04\x30\x3c\x25\x2b\x32\x25\x2b\x0a\xcb\xf0\xe6\xd4\x62\x35\x80\x56\x05\x2e\x15\x07\x97\x09\xc3\x57\x64\x72\x0b\x1f\x73\xfb\xdd\xe8\xb6\x40\xf1\x99\xc0\x25\xa7\x84\xc3\x0c\x13\x0e\xef\x92\x85\x55\x81\x8c\xc0\x3c\xb6\xb2\xc1\xed\x6e\xa8\x28\x19\x30\x5e\xdc\x6c\x65\xb9\x26\x17\xb0\xbf\x7c\x3f\x47\x4a\x1c\x76\xfb\xdd\x39\xa4\x66\xe5\x5d\xe5\xb2\x32\xbb\x70\x31\xbb\x48\xd6\x69\x16\x44\x94\x31\x63\xa4\x15\xb3\x5c\x27\x7b\x3a\x12\x99\xd3\x29\x08\xc2\xd9\xf5\x34\x5d\x7f\x2f\xde\x71\xe9\x42\x26\xa3\x89\x22\x12\xe9\xfa\xe2\xcb\xf5\xcd\xcd\xf5\x68\x71\x3d\x2d\x08\xd8\x8e\x2a\x95\x6a\xc7\x3a\x54\x51\x38\x99\x92\x94\x29\x4a\x1c\xc3\xba\xa8\xb2\x44\xed\xe0\xee\x83\xa3\x93\x8a\x43\xe5\xd2\xdc\xd5\x11\xb4\x32\x5c\x2b\x2b\x4a\x40\xb9\xc9\xd0\xfc\x77\xdf\x9f\xc0\x91\x07\x5a\x20\x6e\xce\xd3\xad\x1a\x47\x9d\x3c\x8c\x5a\x59\x78\x6f\x53\x2c\x19\x0b\xbb\x5a\x5d\x4e\x8f\xa7\xdd\xd5\xd4\xb9\xa9\xa2\xb2\x3f\x34\x31\x58\x80\x37\xb8\xdd\x7e\xa7\xc7\xc3\x36\xbb\x36\x76\x75\x21\x61\x12\x00\x56\x32\xa2\x79\x09\xc9\x80\xb4\x13\xcb\x86\x67\x68\x46\x91\x28\x96\x22\xc9\x2d\xbc\xc2\xca\x12\x9a\xd3\xd9\x39\xe7\xcc\x33\x2f\x61\x36\x61\xff\x75\x13\xf3\x70\xd7\x6a\x54\xb3\xba\xeb\xcc\x33\xf7\x3d\x68\x5c\x79\x90\x64\x34\x18\x54\x63\x05\x07\x38\x49\x06\x12\xc9\x62\xa1\xa6\x28\x8f\x50\x7e\x56\x14\x85\x69\xd5\xe5\x66\x04\xdc\xe1\xa2\x28\x9e\x79\x52\x05\x05\xd1\xc8\x85\xd4\xcc\x11\x5f\x0b\x34\x80\x97\xf8\x61\x3c\xa2\x78\xb3\x6c\x16\x9b\x26\x2c\x61\xab\xce\xce\x07\x51\x5f\xb0\xf7\x4c\x5c\xf4\xcd\x79\x81\xb9\x64\x5e\xb0\x7d\x7f\x67\xd7\xaf\x8b\xaf\x05\x7b\xcf\xc0\x85\xde\xec\x5c\x24\x66\xf6\xcd\x0b\x72\x50\x01\xbb\x81\x83\x00\x44\xa6\xc6\x03\x6b\x06\x6e\x29\x05\xfb\x4b\xc8\xdd\xd9\x39\xbb\x02\xfa\xd7\x43\x11\x1f\xc3\xa4\x7b\x6b\x6b\x4f\xc6\xcf\xe6\xc4\x25\x49\x9f\xb0\x4e\x48\xf7\xfa\x5a\x7c\x3e\x32\x0f\xb8\x09\xfd\x01\xfd\x61\xc2\x0e\xe0\x39\x4a\x52\x24\x85\xa5\x18\x8e\xe2\x39\x99\x57\x64\x49\x61\x25\x4a\x61\x51\x6f\xd7\x22\x61\x51\x57\xd3\xc2\xeb\x07\x06\x36\x2f\x5e\xbc\xd9\xd8\xbf\xea\xf3\xe5\xf2\x79\xe1\xa2\xf2\x85\x81\x81\x97\x57\xae\x84\xaa\x92\xc9\x0c\xc4\x89\x8c\x0d\x43\x02\x45\x27\xd5\xf0\x36\x99\x01\x18\x1e\x1a\x1c\x1c\x1a\x44\x62\x65\x15\x48\x23\x93\xfe\x1e\x1a\xc4\xf7\xf6\x57\x54\x84\x79\xb0\x12\xfe\xb2\x7c\xb6\x57\x95\xcc\xb0\x87\xcc\x52\x27\xca\x1c\xd0\x49\x69\xae\xcd\x13\x15\x55\x96\x46\xfc\x99\x28\xf1\xbb\xd8\x49\x65\x21\x90\x07\x07\xe5\xdc\xa4\xa2\x7e\x50\x59\x50\xc9\xf7\xf8\x37\x92\xd7\x0d\xd1\x84\xc2\x96\x3c\x58\x86\x38\xbb\x6e\x6f\x79\x04\x97\x47\xb0\x24\xde\xa7\x9e\xbf\xee\xb2\x0b\x57\xa7\x96\xad\x5d\xb3\xfa\x42\x57\x5f\xed\xb2\x54\xa6\x2f\xb2\xf6\xb2\x75\x6b\xf6\xd5\xa8\x35\xa7\xf5\xf5\xaf\x45\xe7\xd5\xec\x5b\x33\x9d\x8f\xb4\xfa\xfb\x4e\xab\x21\xf3\x2e\x8c\xdc\x98\x06\x70\x83\xcf\xc8\x16\x92\x98\x89\x90\xbb\x42\xf1\x0a\x4b\xb1\x84\x5a\xa2\xe6\x80\x87\x91\x9a\x8b\x32\x02\x89\xf3\x0b\x6a\x70\xd3\xa6\xe0\x82\x17\x83\x0b\x16\x04\x37\x15\x4f\x98\x17\x33\x02\xb1\xbe\x34\x61\x35\xbe\xbb\x70\x53\x70\xe1\xc2\xe0\xa6\x2c\xbe\x88\x7c\xb4\x26\x18\xeb\xcf\x1a\x31\x5d\x2b\xb8\xb1\x6d\x37\xd5\x78\x62\x94\x21\x21\x5e\x12\xdf\x65\x50\x41\xcb\x90\x39\x6f\xce\x86\x06\x67\xf1\xc4\x48\xb1\x20\xfa\x68\xa4\x67\x0f\x1c\xc8\xd7\x3b\x0b\xf8\x62\xc1\x59\x2f\x8e\xa9\xea\x18\xb6\xae\x1d\x55\x39\x9b\x86\x0f\xc1\x63\x5f\xc1\xc8\x19\xb4\x97\xbe\x3f\x25\x03\x38\x2b\x08\x02\x12\x4e\x9c\x38\x51\x9d\x07\x6c\xb8\x99\x24\xf9\xcf\x48\x01\xcc\x1b\xa9\x0b\xc6\xd4\x35\x23\x21\xb8\x94\x31\xca\xa0\x31\x32\x9a\x13\xc2\xf5\x96\xe8\x29\x4a\x82\x10\xc6\xc2\x19\x3c\x27\x4b\xa9\x14\xf6\x56\xbc\x5e\x87\x49\xd3\x86\xe6\x47\xa7\xc5\xe3\xd4\x86\x05\xc2\x82\x0d\x54\xe9\xe0\x4d\x42\xd4\x99\xb5\xf8\xfe\x9a\xca\x1b\xe4\xc0\x4a\xe8\xda\x18\x01\x9b\xa8\xf7\x3f\xad\xf5\x53\x6b\xfb\xb4\x7a\xaa\x5b\xe6\x23\xa3\xf4\x24\xad\x40\x4a\x58\x95\x89\x25\x41\x48\x1d\x8a\x1d\xd7\x4a\x4d\xe4\x15\x18\x75\xa2\x33\x7e\x16\x5a\xdb\x9f\xf8\x63\x00\x6d\x09\xc4\xbb\x15\xa3\x64\x47\x14\xad\x89\xc7\xed\xcd\xe1\xba\xb5\xfd\xc1\x40\x38\x14\x15\x16\x6c\xb8\xe1\x67\x5d\x89\xfe\xb5\x68\x66\xa0\x78\x4f\x20\x1e\x75\x18\x70\x28\xdd\x9b\x05\xbe\x2d\x1c\x08\xf6\xaf\xad\x0b\x37\xdb\xff\xef\x85\xe9\xff\x7c\x4f\x54\xea\xa7\x12\x85\x93\x88\x1a\x45\x4b\x34\x59\x55\x87\x96\x68\x9e\x96\x68\xac\x97\x34\xec\x8b\x62\x83\x1a\x89\x69\x0d\xd3\xac\x96\x4e\x0f\xa3\xe1\xa2\x71\x52\x91\x59\x63\x01\x88\x46\x10\x2a\x14\xd3\x68\x58\x44\xc3\x80\xa0\x06\x52\xe8\x63\x12\x9d\x22\xda\x6f\xba\xc2\xa7\x12\x2c\xfa\x1a\x7a\xfe\x79\xb4\x70\x5f\x71\x1f\x62\xd1\xe8\x28\x3a\xcd\x18\xc3\x2c\x95\xd2\x02\xad\x24\x83\xca\x98\xf7\xc9\x48\x32\xc7\x98\x53\x86\x92\xd8\xe0\x92\xdc\x53\x8c\x6e\x21\x7d\x1c\x34\x61\x58\xf5\xfa\xdb\xfd\x5e\x1f\x7d\xa0\x38\x5c\x35\x36\x44\x52\x85\xc4\xe1\xe1\xe9\xf5\x3e\xcc\x85\xbe\xfa\xe9\xb4\xbf\x58\x20\xa3\x8a\x7a\xa5\xe7\x08\x8e\x8a\xf5\x4f\x68\x32\x72\xc9\xc3\x74\x00\x32\x3a\x80\xe5\x8a\xdd\x14\x70\xc4\x79\x24\xc6\x6c\x29\x91\x8f\x62\x15\x36\x62\x35\xa4\x9c\xc4\x68\x07\x0e\xd0\x3e\xa4\x0b\x3e\x1a\x1f\x08\x07\xd2\x6e\xbf\xdb\xed\xbf\x4a\x15\xd5\x71\x10\xf1\xd5\xb1\x03\xe4\x1e\xb9\x8b\x61\x38\x70\x40\xb8\x0c\x3f\xe2\xd6\x4f\x99\xa1\x21\x91\x5c\x37\xa3\x7b\x6f\xa1\xb7\xca\xf3\x25\x88\x9b\x62\xa4\xc2\x62\xef\x08\x9d\xbd\x6f\xdf\x59\xb9\x95\x7b\x73\xb9\x5c\x0e\xbd\xb5\x6f\x6f\x2e\xb7\x77\x65\xee\xac\xe2\xdb\xb9\x1c\xd8\x2a\x56\x7a\x68\x33\xe6\xc6\xbb\x19\x89\x18\x53\x54\xd5\x68\x30\x63\xca\x4d\xd6\xcc\xb0\xaa\x74\x25\x8f\x25\x9b\xbc\x4d\x34\x16\x9c\xbe\x0e\x1f\xfe\x1a\x2a\x8e\x20\xad\x22\xb5\x5c\xf4\x7a\x6b\x9b\x9a\x6e\xa8\x77\xaa\xce\x7a\x2f\xed\x6b\x71\x79\x8d\xc3\x91\x11\x04\xe6\x48\xee\x08\x4d\x66\xf3\x54\xe6\x30\x04\x30\x34\x53\xc5\xf8\xd9\xbf\x0b\x61\x55\x96\xc3\xea\xc9\xa0\x19\x69\x0f\x7a\xe5\x20\x71\x7e\x6a\xe8\x08\x6e\x18\xf4\x57\x12\x6f\x6f\x03\x9e\xac\x54\xf6\x77\x6b\xb6\x2b\x2c\xd5\x1e\xe3\x25\xaf\x37\x6a\xa6\xcd\xa0\x18\x76\xe9\x13\x2c\x36\xe9\x58\x85\x57\xd0\xd6\xa5\x4c\xd0\x4b\xe0\x09\xc7\x43\xf8\xab\xf8\x51\xeb\xea\xc6\xcd\x77\xd4\x84\x1d\x8b\xd0\xf6\xda\xda\xeb\x9c\xfe\xda\x71\xa8\xad\xbd\xd6\x19\xa8\x4d\x06\xbb\xf7\xfd\x71\x6f\x4f\x10\x1d\xaa\xab\x6b\x62\x98\xbb\xc9\x9c\xeb\x3a\x6f\x28\xe4\xad\x23\x87\x1f\xb5\xae\x46\xd7\x9d\x3d\x6b\xe3\x4d\xce\x40\xed\xb5\xb5\xb5\x08\x9c\xfe\xda\xeb\x6a\x6b\x93\xc1\xf8\xde\x3f\xee\xeb\x09\x82\x0d\x10\x00\x1a\xb7\x00\x99\x5f\x81\x5b\x00\x4a\x19\x42\x56\x41\x94\x82\x26\x81\x49\xf1\x4a\xc2\xcb\x72\xb1\xd8\xc1\x36\x13\xa8\x85\x3f\xbb\x6e\x1c\xae\xbb\x1f\x21\x03\xb4\xe2\x38\xf9\xbe\xad\x7c\x3b\x45\x60\x98\xbd\xc1\x7d\x1d\x82\xeb\x1e\x28\x8e\x1b\x20\x20\x44\xbe\x03\xe6\x4d\x62\x03\x18\x16\xe8\x94\x79\x1f\x95\x51\x58\xb7\x82\x74\x91\x11\x19\x31\x87\xbb\x67\x1c\x68\x3f\xba\x02\x69\x64\x61\xa5\xf4\x04\x13\x92\xdf\x80\xaa\x9c\x03\x10\x33\xf2\xee\x26\x33\xbc\xdb\x30\x64\x24\x23\x38\x4f\x42\xd4\x93\x27\x06\xe8\xfe\x58\xa4\xc5\xc6\x4c\x6b\x15\x6c\x08\xe3\x76\xc8\x18\xe7\xae\x1c\x55\x2c\x8e\xc5\xfc\xbe\x0e\x8b\x18\x0d\x84\xe2\xa1\x49\x92\x4c\x41\xb4\x48\xc4\x58\x31\x5d\x29\x9d\x8c\x6c\x2a\x50\x10\xc3\xd1\x92\x19\xfd\x13\xd1\xb0\x26\x0a\x82\x20\xa2\x61\xbd\x38\x22\x08\x5a\x2e\xf7\x4f\xca\xfa\xab\x5c\x9d\xc7\x4e\x64\x22\x42\x11\x22\x60\xf5\xe2\xfb\xc8\x47\x8e\x16\x14\xdf\x37\x35\x46\x01\x8d\x11\x6f\x83\xd4\x16\x51\xf8\x28\xcd\x6f\x45\x17\x06\x84\xe2\xe7\xbf\x79\x2d\xda\xf5\x22\x3a\x58\xbc\x2d\x20\x7e\xf3\xba\xad\xc5\xdb\x5f\xac\x90\xcd\x36\x80\xa8\x15\x8b\x65\xf8\x78\x5f\x71\x5f\x0a\xc9\x9a\x06\x56\x70\x82\x48\x46\x1d\x03\xc0\x19\xf3\x25\x28\xab\xd2\x4f\x25\x82\x0e\x96\xa5\x62\x5c\xbb\x83\xfd\xbb\x29\x26\x68\x70\xf0\xdf\x1d\x8e\x06\xaf\x2f\xdc\xc1\x77\x4f\xeb\xe6\x3b\xc2\x3e\x6f\x83\xc3\x11\x77\x34\x77\xcf\xb9\xc1\xed\x77\xa7\x6b\x1a\x1a\x6a\x32\x78\x17\x9c\x16\x3a\xd4\xf7\x19\x94\xb2\xdb\x9c\x8d\xf5\x4d\x75\xb5\x76\x7b\x6d\x5d\x53\x7d\xa3\xd3\x66\xef\xb3\xcc\x59\x11\xc6\xce\x73\xb8\xb1\x46\xc3\x8f\x6a\x35\x8d\x61\x36\x18\xf2\x82\xc5\x84\xfd\x30\xd4\x42\x33\x80\xdb\x0b\x98\x0d\xad\x29\x85\xb7\x93\x14\xc4\x81\x7a\x14\x58\x12\x58\xbc\xe6\xe3\x48\xb7\x88\xde\xd8\xf9\x76\x77\xfc\x0a\x74\xb8\xbe\x78\x6c\x59\x60\xf1\x39\x48\x0e\x78\xe2\x67\xdc\xfe\x56\x2d\x91\xf5\xd5\x2b\x94\x90\xb5\x88\x8c\x88\x70\x84\x21\xf3\x95\x22\x4c\x84\x35\xcf\x35\x51\x43\xc3\xc5\x9c\x28\x60\x8a\x10\xf0\x09\xf6\xd1\xd5\x74\xfa\x00\xde\xe7\xc9\x21\x20\xd8\x0a\x31\x22\xe7\xe2\xe5\xb5\x81\xb8\x4a\xfd\x45\xd0\x64\x2e\x9d\xe7\xa1\xb0\x72\x53\x58\xa2\xe3\x90\xaa\x31\x3e\x97\xea\x0f\x74\x06\xfc\xaa\xcb\xe7\x6f\x8d\xb5\xfa\x8c\x80\x07\x83\x32\x69\xc1\xe5\x9b\xd7\xd8\xea\x6e\x6d\x75\xb7\x36\xce\xf3\xb9\xe2\x8d\x01\x4f\x20\xe0\x69\x6d\x88\x0f\xa7\xd3\xc3\xa6\x45\x2c\x92\x6c\x3f\x2c\xd1\xba\x26\xf2\xf6\xa7\xee\x1e\x1e\xdf\xa2\x50\x2a\xcc\x52\x31\x54\xc0\xfd\x41\x24\x28\xde\x85\xe2\xe1\x54\xbc\x7f\x70\x1c\xb6\xa3\xf0\xf6\x19\x8e\x9c\xd1\x03\x64\x46\x67\xbd\x53\x73\x36\x84\x09\x2b\xf5\xc7\xe7\x9c\x8d\x34\x4d\x5b\x8e\x0c\xde\x48\x90\xf8\x24\x0b\xdd\x64\xe5\x40\x32\xc5\x97\xe2\x53\xa6\xef\x5e\x4a\x1c\xb5\x7b\x4c\xeb\xa9\xbd\x9c\x57\x9a\x4a\x94\xad\xd7\xaf\x3c\x73\xd9\x8c\x5e\x2f\xdf\xb3\xf9\x96\xcd\x24\x57\x14\x69\x5c\x1b\x23\x24\x06\x12\x02\xd3\xc6\x0d\x0e\x0d\xde\x6e\x24\xb9\xe7\xf7\xaf\x9f\x79\x76\x6b\x94\x3d\x65\xda\xc0\xe6\xcd\x03\x3d\x2b\x49\x76\xe8\xfa\xf5\xdc\x2c\x3a\xea\xeb\xe5\x12\x09\xce\xc8\x1d\x95\x07\x07\xeb\x7c\x46\x5e\x3b\x82\x2c\x30\x48\x47\x63\x24\xaa\x29\x19\x5d\x41\x9b\xf9\x6e\x0e\xc3\x55\x31\xf2\xde\x08\x64\x34\x39\x46\x1b\xc2\x0b\x37\x2d\x92\x06\x12\xa1\x78\x38\xdc\xe0\xaa\x0f\xc5\xc3\xd2\x40\x02\xe9\x1f\xf5\x2e\x5a\xd4\x8b\x6a\x39\x49\xe2\x46\x31\x26\x0e\x1d\xc2\x78\x19\xf5\x86\xc3\xde\xe2\x9f\xf1\x55\x5c\xdf\xb5\xa0\xa2\x0d\x28\x0f\x9d\x00\xee\xa0\x95\x29\xad\xb2\xc7\x4b\x64\x79\xbd\x24\x59\x3a\xd1\x30\xdd\x58\x0e\xf3\x12\xe3\xf9\xc4\xdb\x16\xa6\xbb\xda\xd5\x88\x68\xe9\xb1\xcd\x0a\x05\xd4\xcd\x42\x58\x8d\x70\xa8\xc7\x92\xf4\x87\x10\xeb\xa8\x67\xc2\xde\x10\xef\x98\x36\x8d\x12\x22\xdd\x6c\x53\x47\x33\x3b\xaf\xad\x8b\x9a\xd6\x53\x13\x6f\xeb\xf6\xba\xda\x2a\x66\x50\x54\xda\x73\x66\x7c\xa9\xb4\xe2\x88\x35\x42\x47\x50\x56\x27\x19\x1a\xba\x88\xf4\xa2\x8e\x18\x5d\x1f\x2e\xfd\x23\xad\xa8\x03\xd0\x53\x8e\x9f\x54\xcf\x9f\x52\x60\x16\xcc\x85\x05\xd8\x2e\xe2\x64\x06\xf3\x0a\xc3\xc9\x64\x05\x12\x89\xe1\xb0\x77\x64\x2f\x0d\x8b\x98\x9a\x80\xcc\xb4\x31\xb7\xd2\xb1\xdb\xfc\xce\x60\x48\x72\x22\x22\x8b\xfc\x14\x47\x8c\x03\x4d\x14\x05\x9d\x6c\x05\x41\x14\x75\x41\x14\xf3\x64\x0c\xa4\x40\x26\x5b\xe9\xa2\x40\x26\xe1\xa6\xc9\xb4\x50\x32\x2a\x62\xcc\xab\x32\x46\x4f\xc6\x0d\x27\xcb\xfc\x6d\xa5\xff\x62\x5b\x16\xc3\x20\x9c\x02\x6b\x30\xd6\x8c\x41\x9f\xd2\xa8\x10\x99\xde\x2e\x93\x88\x3e\x39\x2f\x0d\x0a\xf1\x15\xc7\x95\x9b\x34\xc5\x33\x48\x25\x43\x42\xd8\x86\x16\x87\xf1\x8e\x7c\x0a\x06\xf4\xe6\x2d\xc1\xbc\x8e\x2d\xee\x61\x63\x14\x88\xa0\x84\xec\xcc\xb1\x9f\x34\x69\xf3\x70\x69\x0e\x59\xda\xbc\xab\x95\x1a\x3f\x6c\x44\x85\xc8\x4f\x59\x58\x80\xac\x0e\xe3\x02\x90\x23\x4c\x64\x62\x7c\x9f\xa2\x38\x59\xb1\x40\x11\xd0\xd7\x85\x55\x02\x19\xe3\x5f\x34\xb2\x6a\x44\xd3\xd0\x30\x3e\x77\x24\x1c\x2e\x7c\xfe\x0f\x52\x42\xd4\x8c\xa0\xf3\xa5\x31\x34\x4c\x09\x72\x84\x60\x41\x31\x87\xd0\x58\xd3\x6f\x2e\xd9\x07\xa5\xc1\x33\x99\xe1\x64\x1a\x63\x29\x2b\xea\x06\x8e\x44\xb1\x98\x43\x7a\x41\xd0\x71\xa3\x04\x9d\x74\xb8\x86\xfb\x9f\xac\xcc\x68\x8e\x97\xe9\x26\x9a\x34\x23\x4a\xa6\x99\xc8\x10\xc5\xa2\xb1\xb0\xda\x88\x31\x86\x06\x0d\x55\xed\x98\xba\x0d\x04\x7e\x63\xa8\x6f\x22\x4a\x8d\xe1\x73\xe3\xd3\x0a\x4a\x96\xcc\xa1\x40\xd9\x84\x9f\x33\xe0\x16\xc5\x5c\x2e\x27\xe4\x72\x1a\x19\xfc\xd3\xc4\x82\xa8\x1b\x00\xe9\x62\xd6\x80\x50\xc7\xb7\x85\x1c\x86\x0d\x91\x7b\x26\x15\x60\x10\x4d\x48\x45\xf1\x1f\xc3\x79\x89\x52\xd9\x12\xa5\x49\x0c\x47\x9b\xd7\x30\x6c\x88\x96\xe8\x8a\xf1\xcc\xf2\xd8\x66\xe9\x9c\x2a\x51\x66\x69\x02\x23\x46\x73\x51\x2f\x9d\x0a\xa5\xcf\x04\x45\xe6\x30\xc3\x11\xf6\x12\x45\x04\x98\x2c\xb1\x14\x31\x08\xaf\x68\xdc\x37\xba\xc1\x7c\x06\xa8\x4f\x69\x0f\x89\xa5\x60\x7a\x60\xe9\x08\x8d\xe5\x52\xd4\xc4\x2f\xa6\x8f\xbc\xa8\x0b\xc3\x58\x12\x60\x09\x65\x00\x82\x55\x2d\x2e\xd9\x98\xb4\x5e\xd4\x0b\x64\x21\x40\x4c\xed\xff\x10\xc6\xdc\x15\xbc\xa9\x98\x58\x70\x4b\x34\x57\xc9\xaf\xa5\x6f\xd6\xec\xdd\x12\xd6\x38\x13\xab\x63\xe5\x29\x9f\x02\xe9\x60\x93\x89\xf1\x77\x49\x36\x61\xa4\x6a\x04\x67\x26\x5e\x4c\x2c\xa5\x09\xdd\x1a\x73\xf9\x72\xa6\xe0\x1a\x36\xa8\x5d\x14\xa1\xa6\xa2\x25\xce\xf2\x0a\x83\x6d\xc6\x8a\x80\x12\x19\xbb\xa5\xb9\x68\x85\xa4\xe1\x4c\x69\x63\xd2\x20\xb6\x7e\x4b\x82\x14\xb3\x0e\xa6\x41\x0c\x89\x2e\x16\x73\xb9\x09\x61\xf1\x8f\xd3\x59\xd4\xc4\x86\xd5\xc4\x00\xc6\x08\x8a\x30\x11\xfb\x24\x8c\x51\x93\xb0\x57\xc2\x9a\x49\x67\x02\x91\xe5\x82\x01\xa7\x6e\x82\x59\x98\x24\xff\xc6\x0c\xc9\x07\x65\x12\x42\x04\x8f\x5a\x09\x73\x5a\x89\xe5\x0d\x81\x47\xce\xfe\xf1\xd6\x94\x64\x3b\x6b\x72\x0d\x53\xc2\xa8\xc9\x31\xa8\x82\x43\x78\x13\xcb\xd4\x64\xae\x99\xe0\x1b\x8c\xed\x62\xc1\xe4\x68\x83\x08\xca\x2d\x31\x40\x2d\xc9\x2a\xdc\x72\xad\xaa\x7d\xa5\x46\x98\x0f\x4e\xad\xc9\xdd\xd8\x0e\x25\x7a\xc8\x9c\xe7\x29\x31\x9c\x4a\xca\x1a\x19\xd1\x08\x36\xf5\x62\x61\x64\x04\xe5\xb1\x9c\x24\xc5\xe9\x7f\xa7\x24\xa6\x62\x4e\x15\xde\x54\xb3\x84\x8a\x0d\xe5\xab\x54\xcc\xa7\x97\x45\x9b\xf3\x55\x4b\x2b\x76\x56\x94\x55\x9a\x9f\x95\x2f\x89\x06\x9d\xf4\xe0\xdf\x69\xe1\x54\x70\xe9\x08\x70\x61\xb8\xac\xa9\x00\x23\x23\x46\x3a\xba\x94\x8c\x20\x93\xcc\x4e\x23\x5e\x4e\xd6\x17\x34\x22\xe7\x5e\x62\xff\xd2\xd8\x49\x44\xe1\x46\x97\xab\x71\x50\xc5\x36\x6d\xdf\xb4\xee\xf6\x2f\x5e\xd3\xd1\xfb\xbc\xdb\xef\x56\xf3\xaa\xdb\xef\x3e\x83\x49\xb6\xf7\x20\x31\xb1\xa4\xb4\x46\x5e\x8e\x64\xc7\xd0\x04\x3a\x8e\xe2\x15\x8e\xe7\x59\x32\xbc\xa2\xf0\x3a\x12\xf7\xb7\x77\x37\x49\xb3\x67\x3a\x50\x32\xb0\x2f\xa2\x26\xef\x44\x59\x75\x55\xbc\x63\xb6\xcd\x5e\x3c\x14\xd8\xb7\xf2\xd2\x3b\xcd\x1f\xcb\x35\x35\x71\xa3\xb1\x72\x07\xd1\xc5\x25\x77\x20\xa5\x44\x25\xde\x98\x88\xc3\x19\x33\x6f\x14\xde\x50\xcd\x59\xd1\xdf\xee\x63\x6a\x8b\xef\xbd\x71\xce\x4d\xb5\xb5\xbb\x6a\x1b\xea\x6b\x77\xd7\xd6\x5e\x20\x85\x34\x0d\xd5\xf5\xb4\x62\xff\xb5\x3e\x56\xdf\xbd\x75\x55\xad\xdf\xb9\xab\xb6\x76\x97\xd3\x5f\x7b\x81\x14\x34\xe6\x38\xcf\x41\x5f\x41\xaf\x18\x79\x39\x86\xd7\x49\x3c\x0f\xde\xee\xa1\x78\x25\x68\xd9\x8e\xfa\x02\x33\xa2\x3d\xf2\x60\xeb\x62\x24\x5a\x5f\x9c\xd9\x28\x2e\x46\xb7\x15\x5f\x0b\xf4\x85\x07\xe5\xf6\xd4\xe2\x07\x9a\x1a\x5e\x1a\x6c\x4e\x5d\x5a\xb2\x22\xc8\x4a\x7c\x24\x1f\xc4\x2d\xf1\xbc\xe4\x26\xab\xbb\x51\x11\x26\xf2\xc6\x56\x89\x11\x76\x4d\x67\xaf\x69\x99\xbe\x8b\x80\x0c\xd7\xce\x28\x16\x54\x55\xd5\x00\x1c\x27\xf5\xb0\x0b\xbc\xc6\x2a\xaf\x7c\x49\x92\x61\xba\x51\x08\x03\x8e\x15\x0a\x85\x09\xda\xd3\xd2\x85\x31\xc2\xef\x3a\x21\x9b\xbc\x36\xec\x15\xc5\xff\x4a\x89\x58\x32\x45\x59\x0a\x13\xf7\x44\x89\xb9\x42\x51\xd7\x34\xa4\x97\x8a\xc4\x4c\x97\xd7\xb4\x8c\x91\x4d\x68\xac\x5e\x99\x23\x73\xaf\x31\x77\x11\x71\xa5\x70\x85\xdc\xec\x25\x3d\x78\x43\x39\x35\xa7\xaa\x39\xb0\x41\x18\x06\x51\x01\x3d\x6f\xd6\xce\x18\xd9\x34\x64\x4e\x62\x84\x89\x70\xc6\x0c\x1a\x4e\x61\x0b\xe5\x09\x89\x30\x0e\x9a\xbc\x6c\x50\x96\x07\x97\x8d\x09\x82\x2e\x08\x48\x10\x46\x96\x2d\x1b\x59\xb6\x0c\x1c\x20\xc3\x06\x94\x47\x07\xcd\xd2\xcc\x39\x51\x95\x9c\xd9\x31\x69\x5e\x70\x69\x3e\x31\x99\x15\x6e\x6e\xd7\x91\x70\x61\xe5\x3f\xca\xe2\x8a\x74\x41\x90\xc9\x39\x72\xbb\x5a\x5d\xae\xd6\x0b\xc8\xde\xf4\x76\xf3\x65\x6f\x97\x81\x00\x89\x1b\x55\xb4\x83\x2a\xaf\x14\xca\xcb\xdc\x84\x8e\x21\xb6\x50\x65\xcd\x85\x21\x95\xe7\xd5\x18\x8d\xdd\x5f\x55\x60\x98\x72\x03\xd3\x5e\x4f\xdc\xeb\x89\xab\xaa\x37\x9d\xf7\xa6\xbd\xb5\xde\x5a\x23\x17\xd3\x88\x34\x87\x2a\x3c\x62\xe2\x75\xc9\xdc\x49\x6b\x45\xe8\x6a\xae\xde\x29\x3a\xeb\x0b\x4c\x79\x79\x59\x70\xd6\xa3\x5c\x2e\x8f\xdd\xac\x31\x8d\xc1\x97\xb4\xd2\x5a\x11\x19\xc8\xa2\x2c\xca\x98\xf3\x81\x49\x16\x3c\xc5\x19\x5f\x48\x14\x54\x5d\x18\x13\x55\x5d\xcc\xa6\x75\x3d\x8d\x37\x12\x4f\xcd\x98\xd9\x26\x4d\x86\x35\x40\x6c\x8e\x08\xc3\xd1\x1c\xcd\xa9\x79\x55\x55\x11\x33\xa4\x66\x10\xa8\x6a\x36\x9b\x53\xc7\xc9\x0f\x68\x93\xb7\x0c\xcc\x61\xca\x2b\x65\x52\x11\x33\xd1\x4d\xb2\xa9\xf4\x62\x0e\x09\x43\xe9\xa1\xa1\x34\xb6\xe6\x54\x55\x1d\x07\x55\x2d\xcd\x8f\x35\xd6\xac\x65\x00\xa2\x94\x1c\x91\x23\x32\x5f\x4a\x9b\x34\x4c\x1e\x94\x27\x6b\x03\xe7\xb0\xef\x9a\x23\x3f\x15\xa0\xa9\x82\x9a\xc6\x8e\xef\xd8\xd8\x18\xe1\x68\x23\xc2\x46\xca\x50\x22\x64\xb5\x5b\xa5\xba\x8c\x1c\xa6\xb7\x74\x5a\x30\xca\x10\x44\x31\x2b\xa8\x9a\x56\x51\x46\x69\xe6\x34\x99\x41\x86\xcb\x48\x55\xfa\xbd\x12\xe3\x21\xd1\xd3\x1f\x0d\x0d\xca\xf1\xfe\xb8\x9c\x11\xb5\x41\x39\x97\x0b\x89\x62\x28\x97\x93\x0d\x4e\xd1\x4a\x9c\x82\x18\x8e\xa5\x24\x26\x82\xa9\x04\xe9\xd9\xa1\xa1\xec\x38\xdc\x78\x23\xca\xa9\x99\x8c\x2a\xea\x24\xeb\xa6\x9a\x57\x03\xd5\xeb\x49\x9d\x14\xba\x37\x67\x83\xc1\x44\x0a\x73\x36\x9d\x1e\x19\x39\x70\xa0\x94\xaa\x7e\xd2\xea\x44\x9f\x3e\x3b\x98\xaf\x1c\x10\xa8\x9c\x1d\x5c\x5a\xfd\xa0\x6a\x76\x70\x79\xf1\x83\x0a\x2c\x1b\x2b\xa2\x90\x95\x2c\xcb\x91\xcb\x64\x0a\x31\xbb\x77\x67\x73\xba\x19\xb7\xf4\x21\x75\x57\x58\x37\x57\x55\x4e\xd3\xbe\xca\x1c\x73\x23\x7f\xa6\x0d\xa2\x00\x1d\xed\x31\x5e\x72\xc4\xcc\x79\xfe\xde\xd2\x7c\xff\xc9\x39\x35\xd1\x65\xb3\x1a\x7e\xd5\x70\x3f\x61\xe1\xab\xc8\xfe\xd9\x8a\x0c\x9b\x1b\xbb\x22\x91\x8d\x15\x5c\xfe\xaf\x55\x99\x36\xa5\xfc\xb3\x31\xb0\x12\x7b\x87\x64\x00\xbb\x25\x46\x9a\x9c\x30\x8e\x8d\x18\x6c\x6f\xa3\x6c\x71\xe4\x84\xc8\x4c\x4c\xb6\x60\xc4\x61\x6f\x26\x73\xe2\x04\xd2\xab\xb0\x2d\x8a\x79\x63\xa5\xb4\xff\xa9\x6c\xe0\x12\xcd\xd8\xc0\x03\xa0\x50\x11\x9e\x62\x2b\xe0\xc7\xc2\xe1\xf9\x65\x48\xd8\xb0\xac\x6a\x56\xc8\xe8\x06\x7d\x83\x5c\x3a\xf1\xd3\xff\xff\xd7\x1a\xa9\x9c\x1b\x5e\xbd\x86\x46\xa1\x72\xdd\x8c\x5c\xc5\x72\x19\xff\xed\x0c\xfa\x0c\x59\x3b\x25\x47\xe6\x6e\x81\x42\x26\x6e\xc9\x7c\x84\x89\x64\xb2\x59\x4d\x27\x9e\x4e\xe1\xc0\x01\x5d\x1f\x11\x89\x0c\xcd\xa3\x1c\x52\x8d\x95\xe6\xc9\xe2\xe0\x11\xa4\x8b\xc5\x61\x11\x01\xf9\xcd\x91\x89\x55\x79\xf2\x10\x82\x3e\x00\xc5\x23\x25\xe4\x64\x8c\x6f\x8f\xe1\x5e\x8a\x30\x9c\xc7\x5c\xc0\xd0\x5c\xfc\x50\x49\x72\xed\x94\xf1\xbb\x1d\x5c\x32\x26\x63\x0b\xc1\x58\xee\xf0\xb5\xfe\xde\x06\x1a\xd9\x6d\x96\x37\x90\xbe\xc6\x8a\xa8\x05\x8c\xaf\xb9\xa9\xc3\xc3\x3f\x25\x75\xd4\x59\x9b\x9b\x1b\x37\xd9\x6a\xc2\xed\xbd\x72\x30\x74\x3c\xd5\xd1\xdc\x58\x63\xb1\x88\x22\xb2\x23\xda\x35\xc7\xed\xb0\x52\x4d\x6d\x89\xbd\xdd\x5e\x47\x4d\x53\x5d\xad\x1d\x59\x51\x03\x1b\xf5\xb7\x04\x5a\xbb\x26\xd6\x0d\x34\xf2\x24\x89\x04\x8a\x1a\xf9\x98\xc6\xdc\x3e\xd0\x34\x55\xc8\x88\xb9\x74\xba\x50\x28\xcd\x67\xcc\x11\xaa\xae\x35\xed\xaf\xd2\xf3\x56\x03\x51\x15\xaf\x0d\xe1\x1d\x62\x84\x61\x4d\x4b\xa7\x8b\x23\x78\x3f\xb9\x3e\x62\x5d\x56\xbc\x98\x26\xaf\xe4\x45\x7d\xa2\x3e\x95\xe4\x4c\x9b\xab\x9e\x99\x54\xce\xf0\x8a\x69\x44\x1a\x4b\xba\x93\x20\x45\x06\x0b\x59\x51\x55\xa7\x13\x1e\x7a\x0f\x17\xa7\x23\x26\x31\x90\x10\x55\x55\xf4\xb7\xfb\xb1\x2e\x2c\x8e\x08\x02\x58\x60\x2d\xa8\xe8\x71\x94\x07\x0f\xb4\x57\xfd\xea\x05\x09\x04\x2a\x7c\x4c\x36\x66\xd2\x97\x43\x81\x17\x21\x25\xd0\xe3\x8e\xa8\x91\xb8\xa5\xc7\x36\x3b\xda\x38\xb8\x66\xe9\xd7\xdc\x8d\xa1\x46\x97\x1a\xe6\x50\x8f\x05\x3d\x5e\x7c\x2d\x30\x9d\xa6\x8c\x28\xa0\x67\x99\x6f\xd6\xd2\x88\x23\x44\xd9\x8d\x30\x20\x69\xb3\x41\x25\xe4\x17\x09\xb0\x96\x92\x99\x88\xd1\x60\x23\x7a\x06\x50\x53\x1e\x59\x36\xac\x3a\x17\x04\xa1\x1d\x62\x30\x13\x40\x91\x78\x96\x33\x12\x7e\x15\x09\x2b\x36\x0e\x9b\x56\xe5\x69\x56\x94\xcc\x31\x34\x23\xc9\x76\x92\x84\x69\xc4\x42\x64\xd3\x03\x7d\xb7\xaf\x35\x3a\xd8\xc4\x2d\x0d\x2e\x69\xdf\x60\x46\x0e\x46\x88\x8f\x8c\x74\x51\xd4\x47\x8c\xdd\xef\x4f\xdd\x26\xe4\xf3\x27\x48\x74\x46\xc4\xf7\x47\xb0\xa7\x84\x9f\xd0\x46\x4a\x8f\x81\x0d\x06\x41\x44\xcf\x97\x65\x3c\x59\xe3\x9a\xa5\xa2\x0a\x4b\x29\xa6\xff\x83\x51\x88\x86\xba\x83\xdd\xc5\xef\x06\xbb\x83\x17\x0b\x02\xd6\xd6\x3a\xda\xd9\x1d\x9c\x36\x2d\xd8\x1d\xd2\xd5\x7c\x26\xa3\x0e\x0d\x19\xa3\x39\x87\x50\x01\xc9\x24\xf7\xca\x98\xe5\xc6\x73\x0e\xbc\x99\x73\x79\x59\x29\x85\x37\x74\xd0\x1b\x0a\x79\x3b\x1a\xfa\x1b\x96\x34\xf4\x37\x74\x54\x9e\x20\x39\x14\x0f\x85\xc3\xe1\xb0\xf9\x05\x27\x61\x19\x23\x23\xc2\x44\xb4\x91\x11\x8c\xe7\x31\xec\x78\x91\x5f\xee\xc9\xa0\x43\x25\x3b\xa3\xb4\xba\x24\x6f\xda\x19\xe8\x90\xaa\xaa\x23\xc8\x9b\x51\x33\x08\xdb\x19\x6a\xc6\x30\x34\x2a\x46\x7b\xda\x41\x30\x72\xdf\x48\xac\x18\x43\x1a\xe3\x65\x8e\xa4\xed\x18\xfe\x4c\x3b\xcf\x79\x59\x46\x2a\xff\x8c\x44\x70\xc1\xe9\x7d\x81\x96\x6e\x8b\x60\x99\x35\xa3\x2d\xba\x7e\x06\xdb\x2a\xdb\x04\xeb\x82\x19\xbb\x89\x12\xb9\xbc\x21\x35\x87\x6d\x0c\x34\x79\x3a\x67\x34\x09\x82\x83\x0b\xf4\x79\x1b\x22\x0d\x0c\x3e\x2b\xfd\x9e\x05\x2a\xe7\x7f\x53\x86\xbf\x83\x21\xcd\x20\x61\x97\xba\x0b\x99\x86\x10\xc1\xa8\x4e\xb4\x41\xd4\xcc\xa4\x35\xf8\xa4\x2c\xf9\x3d\x92\xa9\x17\x8c\xfc\x5a\x86\x6b\x17\x17\xf6\x8e\x62\x86\x79\xde\x1b\x0e\x7b\x0f\x3e\xe8\x74\xbe\x88\xd9\x66\x34\x14\x8f\x87\x0e\x1d\xea\x7d\xb5\x14\x62\x17\x19\x5f\xbb\x3f\xde\x2f\x8a\xa4\x1e\x23\xb7\xc7\x45\x66\x25\x94\x4c\xc4\x64\x4a\x49\xa5\xa4\x84\x17\xdd\xd7\x35\x73\x6e\xbc\x38\x26\x0f\xce\x9f\xce\x2c\xef\x9e\xb9\x0e\x09\xd6\x39\x42\x7c\xee\xa0\xdc\xbb\xd4\xce\x4f\x5f\x5a\x89\x45\x17\xc9\x25\x33\x20\x4a\x1a\x53\x39\x08\x60\x65\xac\x6d\x20\x63\xae\x09\x2e\xd8\x4d\x59\xfd\xb1\x98\xdf\x6a\xfc\x10\x47\x28\x1e\xe2\xa4\x68\x2b\x8a\x25\x63\xe5\xdf\xe3\x98\x98\x47\x6a\x87\x16\x23\x07\x9b\xa7\xa2\x27\xc3\x57\xb8\x39\x78\x61\x3c\x88\x5c\x93\xa0\xcc\xde\x1c\xbc\x20\x1e\x5c\x56\x0d\xea\x44\x99\x0e\x32\x7b\x87\xb0\x15\xab\x4c\xd1\xe8\x8c\x9a\x56\x33\x93\x5b\x3e\xa6\x69\x99\xe1\xea\x12\x4b\xe3\x40\x39\x12\xe9\x14\x01\xdc\x66\x57\x20\x05\x19\xeb\xcd\x24\x53\x8a\x7d\x22\xef\x8b\xe3\x2a\x16\xee\x78\x24\x8a\x7b\xea\xa7\xc5\xdf\x07\xd0\x96\x80\xf8\x57\x79\x70\x89\x84\xda\xbb\x66\x76\x87\x22\x31\x7f\x78\x61\x6f\x88\x0d\xf3\x3d\x33\xd7\x21\x51\x1a\x48\xa0\xe6\x40\xf1\x9e\x80\x30\x28\x27\x97\x59\x44\xeb\x1c\x41\x09\x87\x5c\x31\x7f\xac\xae\x77\x61\x43\xc8\xb7\xb4\x12\x5b\xc6\x08\xae\x69\x2d\x18\x9d\x60\x80\x34\x05\xee\x50\x16\x77\x42\x78\x61\x6f\x67\x7f\x5d\x13\x86\x05\xb5\x4d\x6a\xb2\x1e\x4b\xe2\x4a\xa6\x47\xa5\x81\xc4\xf0\x49\xfd\x5e\x8d\x4d\x89\xa7\x24\x46\x9a\x0a\x9b\x22\xb6\x55\xd3\x17\x4d\x46\xe7\xd0\x50\x3a\x7b\x52\x99\x86\x96\x3e\x59\x6f\x19\xe9\x06\x02\xd6\xd5\xba\x38\x96\xcd\xea\xfa\x94\x4f\x2b\xc6\x00\x1f\x79\x5a\xd3\xf0\xd3\x62\x5a\xcf\x66\xf5\x8a\x5f\x26\xc2\xfa\x8d\xad\x4c\xe2\x27\xd3\xb5\xc5\xca\xc9\x4a\x39\x91\x4c\x3a\x9f\x58\x81\x6f\x62\xe4\x92\x99\x58\x25\x8f\xa9\xfa\x75\x23\xf2\x1b\x21\x95\x8b\xc9\x8b\x7a\xa1\x80\xa0\xa2\x20\xb1\x72\xce\xb5\xf9\xdb\x23\x53\xad\xf7\x35\xa9\xdc\xec\xac\xe4\x2c\x63\x41\x2a\xb5\xb2\xf4\xac\xd7\xcd\xb2\x6e\x6f\xce\xdf\xee\xf3\xb5\x9f\x5e\x55\xcd\x04\xbc\x75\xc6\xaf\x65\x55\xcf\x06\x9e\x5c\x3e\x59\x9f\x33\x3d\xb1\xde\xa3\x2e\x16\x8c\x25\x76\x73\xe6\x0c\x6c\x04\x2e\x9f\x48\xb2\x38\x8c\x3c\x01\x0c\xbb\x87\x64\xe8\x95\x66\x35\x57\x7e\x57\x2d\x25\x6f\x24\xe8\x30\x1b\x6f\x10\x77\x9c\xd2\xbf\x4e\x9c\x1b\xf7\xc7\x54\x44\x32\x12\xb2\xd9\x22\x36\x81\x91\x78\xc3\xc6\x55\xdb\xc5\xb5\xfd\xf1\xb9\x62\xcc\x8f\xcc\xdf\x6d\x13\x91\xa0\xaa\x64\x5d\x97\x52\x9d\x58\xb6\x44\xa0\x0b\xa6\x4d\x5a\xab\xde\xa8\x80\xfa\xff\xa8\x7b\x1b\xf0\x46\x8e\xfb\x3e\x78\x06\x20\xb0\x04\x08\x7e\x2c\x80\xdd\x25\x00\x12\x5f\x4b\xec\x92\x3b\xfc\xb8\xe3\x72\xb1\x77\xc7\x3b\x72\xef\x74\x5f\x3a\xde\x97\xee\xb4\x38\xea\x2c\xc7\xd4\xe9\xce\xb6\x08\xc7\xba\x73\x24\x4b\x96\x2d\x7b\xe3\xda\x51\x24\x3b\xae\x1d\x19\x4c\xe2\xd4\xf6\x59\x69\x1c\x9b\xb0\x13\xbf\x69\x64\xb7\x75\x62\xa3\x6e\x9a\xd4\x56\x9c\xd4\xae\xc1\xb7\x69\x9a\x54\x4d\x1b\x27\x39\xbe\x89\xf3\xf4\x89\xd3\xbc\x6e\x8a\x7b\x9f\xf9\xcf\x2e\xb0\x00\x49\x59\x6d\x9d\xa4\xef\x1d\xb8\x58\x2c\x16\x33\xb3\xb3\xb3\x33\xff\xcf\xdf\xcf\x6d\x40\x49\x90\x15\x45\x35\xb8\xae\xf6\x34\x7c\xd5\x11\x68\x09\x76\x9e\x4c\xbe\x6e\xb9\xd2\x6e\x50\xa3\xab\xd6\x1a\x6d\x51\x75\x6b\x79\x2d\x29\x6f\xb8\xed\xf2\x8f\xf6\x20\xf3\x5a\x17\x0c\x7e\x97\x9c\x76\x1b\x57\xec\x16\xb2\x3d\x09\x36\x85\x9d\x66\xf3\x2e\x22\xde\x78\x6a\xba\x79\x1f\xc4\x65\x4d\x4c\x75\x63\x2e\xca\xe0\xb2\x91\x77\x20\x2f\xd6\xb4\x4d\x8d\x21\x21\xb0\x40\x1f\xaa\x15\x59\x82\x60\xb5\xb5\xa9\x4e\x89\x99\xee\xf8\x0d\x26\x3d\xe8\xc6\x2b\x94\x09\xca\xac\x07\xa1\x44\x34\x8d\xb8\xa5\x86\xbb\x50\x1d\x99\xdd\x70\xce\xcd\x03\xd5\x05\x06\x43\xad\x0b\x72\x88\x2f\xf0\xa5\x0e\xa8\x63\x8f\x12\x21\xe8\x54\x68\x74\xaa\x55\x07\xb6\x0c\x85\x11\x2c\xfa\x69\xde\x15\xf4\x09\x9f\xd6\xb0\xe0\x6c\x55\xab\x96\x55\xd1\x40\x0e\x07\x2c\xc7\x8e\x9e\xa1\xa1\x20\x72\x5c\x9f\x72\xd0\xe3\x66\xda\x19\x92\x0e\xe2\xa2\xbd\x09\x60\x5e\x6c\xd3\x68\x36\xe9\x85\x75\x2a\x6a\x69\x84\xa0\x1f\x28\x8f\x9f\x97\xff\xb7\x4d\xef\x65\xdc\xf3\xfe\x1b\xba\x17\x0f\xc0\xe2\xd8\x16\x3e\x77\xfb\xa6\x92\xb6\xec\x2b\xef\xb8\x62\x5b\x69\x05\x6f\xdf\xba\xb0\x91\x56\xea\x64\xe9\xca\x95\x25\x52\x57\xd2\x1b\x17\x58\x49\x2c\x2b\x7b\xbc\xbb\xa4\x3d\x4a\x73\x6a\xb6\xbf\xbc\xad\xb4\x42\x84\xee\x12\x63\x6d\x4c\xe7\xdd\xed\xf4\x8b\x3b\x7d\xd6\xfe\x7d\x53\xd0\x0d\x55\xd0\x0d\xc9\x7d\x37\x7b\xa2\xd5\x70\x4d\xd3\x34\x91\xde\xcb\x4d\xba\xb5\xdc\x4f\x1b\x7e\x1e\x17\x38\xcc\x5e\x15\x42\x36\xd8\x59\xbe\x83\x96\x3f\x6a\x0d\x23\x07\x7d\x11\x3b\xf8\x01\x60\x2b\x91\x4c\x89\x53\x3f\x76\xed\x5a\xd6\x71\xf0\x03\xf0\x86\x80\x55\xeb\x7d\xf8\x5e\xfc\x3e\x7a\x46\x09\xe2\x9d\xf1\xbd\x59\xc7\xc9\x5e\xfb\x34\x6c\xe9\x19\x5f\x40\xef\xc5\x36\x7e\x2f\x64\xea\x99\xf4\x8c\x2f\xc0\x8f\x7f\x8e\x15\x41\xeb\xf8\x02\x76\xb0\x0d\xdf\xab\x50\x07\xfc\xf4\x0b\xac\x80\x0e\xdf\x4b\x3f\x64\x46\x49\xac\x92\x46\xeb\x9b\x67\xe9\x09\x67\xb1\xa0\x9d\xa3\x3b\xe7\xda\x1c\x41\xcf\x82\xff\x08\xe4\x7f\x15\x4e\x76\x30\x72\x68\x5d\x59\x87\x90\xaf\xc3\x0e\x1a\x74\x11\x5a\x1a\x6d\x74\x6d\x2f\x43\x8a\x6a\x03\x1a\x9a\x45\x4b\x08\x95\x54\xdd\xfc\xdf\xb9\x1d\xc8\xde\xb4\xbe\xdf\x1d\x11\x2a\x77\x3c\x8b\x0c\x73\x9a\xd5\x5c\x1f\x6f\xe7\xa0\xe5\x9b\xab\x98\x04\x4a\x7b\x23\xca\x34\x61\xd6\x1d\x05\x5c\x23\xad\x5f\x65\xfd\x80\x53\xb8\xea\xb8\x5d\xe2\xa2\xfa\x30\xae\xb1\x18\xe3\x56\x82\x2e\x36\x0b\x46\x01\xd7\x35\xed\x57\xe0\xbc\xd6\x37\xf0\x1c\x76\xee\xa2\x3f\x84\x4f\x5a\x1b\xd7\xae\xf1\xbf\xc4\xbf\x88\xda\x8c\x88\x4b\x4b\x7e\xfe\xc5\x1f\xdc\x8c\xed\xc5\xbf\x37\x3a\xac\x72\x0c\x8d\xb4\x00\xe5\xf1\x05\xba\xf6\x6f\x55\x30\x22\x2d\x44\x30\x9d\x75\x2c\x41\x20\x04\x74\x16\xef\x97\xf4\xf9\x93\x3b\xb1\xc5\x41\x68\x8d\x7b\xf7\x7a\x5a\xc4\xf8\x5f\x37\x70\xc5\x66\x40\x64\x9d\xb6\x55\x01\x5d\x00\x67\xef\xdc\x69\x6d\xd3\xc6\xb9\xa0\x0c\x77\x7c\xb8\x2b\x0d\xb6\xaa\x74\xae\xd6\xe8\x2e\x5c\xee\xbd\x5e\x1e\xd7\x9a\xcd\xd6\x36\x21\x82\xef\x8a\xfd\x36\xc5\xb6\xc7\x5e\x16\x4a\xed\x39\xbe\x6d\x5f\xa4\xa5\xb7\x27\x29\xd7\xf0\x65\x30\x83\x98\xa0\x73\x86\x0b\x12\x5a\xdd\x82\xc4\x9a\x14\x0f\xb6\x47\x3e\xd5\xfd\xa1\xae\xd9\x4e\x6d\x6b\xcb\xd9\xe5\x2b\xf6\xc1\xd6\x34\xdb\x71\xda\x76\x8a\x3f\x45\x7d\x28\x06\x72\x9c\x20\x2f\x94\x83\x46\x01\xfc\x3b\x09\x51\x14\xe4\xed\x8d\x2b\x57\x70\xe5\xc6\xfb\x6f\x34\x96\xaf\x6c\xe0\x3f\xfd\xf4\xd1\xb5\xd6\x7f\xb4\xed\x93\x37\x6e\xe0\x47\xfb\xd7\x8e\x42\xbe\x91\x17\x17\x0b\xb9\x23\x25\x5e\xe6\x77\xcb\x09\xc3\x37\x5f\xfe\xd9\x0a\x0c\xa5\x4d\x18\x4f\x98\xb4\xe8\x4d\xc5\x75\x25\xdd\x82\x23\xb8\x92\x56\x90\x5b\x1e\x5b\x97\x98\xe5\x95\x97\xf9\x76\x4e\x75\x6f\x99\x76\xe3\x32\x58\x15\xdf\x4a\xd5\xa0\x3a\xdd\x40\xb9\x36\x73\x1f\x7c\x36\x2f\xb6\x36\xa8\xda\x86\xd7\xc5\xfc\xdf\x7a\xce\x45\x1f\x42\x48\x0e\x20\xfc\xfb\x28\x8e\x04\x98\x85\x90\x27\xd3\xca\xaa\xce\x10\xc3\xa1\x02\x0c\xd1\x7e\x50\x8b\xa9\x86\x0a\x6a\x01\x6f\xd3\x5a\xfa\xac\x59\x9b\xd0\x7a\xfe\xa8\xf5\x9d\xfb\x30\x29\x66\xe6\x5b\x3f\x46\xa2\x2a\xfe\xcd\xd6\x1f\x13\x7c\x1c\xdb\x50\xa5\xb5\xf1\x28\x79\x20\x12\x2b\xfd\x11\x3e\x7d\x5f\xeb\x5b\xc5\xcc\xbc\xb5\x3d\x1c\x53\x8f\xed\xf4\x2f\xe5\xd0\x14\xe3\x97\xed\xc6\x30\xeb\x4e\xb3\xd5\x05\x93\xf3\x94\x27\xa9\xbd\x83\x2d\x92\xd7\xf2\x04\x0b\x1d\x7b\x76\x93\xec\xe7\x85\x42\x5e\xe0\xb3\x93\x53\xfb\xa7\xf6\xef\x9b\xe2\x67\x8e\x2c\xcd\xb8\x01\x20\xd5\x34\xcf\xd2\x5d\xf8\xb4\x6d\xff\x18\x2f\x08\x7c\x76\x70\x62\x82\x9f\x99\x41\x6d\x3e\x65\xb6\x5e\xa6\x3b\xed\xa1\xba\x53\x97\xef\xa4\x64\xe2\x5a\x93\x68\x78\x71\x60\xb8\x6d\x1f\x8d\xb5\xbe\x35\x5c\xa3\x35\x3c\x13\x94\x06\x1f\x77\xab\xf8\xe1\xc9\x36\x56\xe9\x36\xc8\x1a\x54\xcb\x96\x84\x64\x98\x53\x14\xc3\x90\x84\x72\xd9\x94\x0d\x4e\xc0\xa8\xf1\xe6\x4b\x97\xde\xdc\x58\xbc\xd4\x5f\xab\xe1\xed\x8a\xf3\xc0\xf3\xc9\xe4\xf3\x0f\x38\xb5\x2f\x27\x1e\xb9\xe7\x57\x8f\x3d\x85\x10\xd7\x13\xf9\xcb\xd6\xf2\x52\x37\xc7\x95\xea\xe3\x7b\xc3\x09\x4f\x14\x33\x41\xa3\x05\x33\x11\x21\x5b\xc4\x21\x58\xc0\xcc\xb2\xee\xd4\xf9\x54\xc3\xb6\x89\xa6\x39\x36\xfc\x83\xf0\x13\xab\x1d\x1b\x9c\xfa\xc1\xa0\xe1\xf5\xf9\x70\x4b\x87\x19\x7f\x56\x6f\x5e\x58\x02\x74\x54\xfa\xa1\x37\x97\xf2\xdb\x30\xcb\x27\x57\x97\x97\x57\x97\x01\xdb\x9f\x4f\xa7\xaf\x76\x70\xcb\x18\x22\xe3\x7b\x97\xe9\xf7\x58\x62\x10\x31\x5a\x57\x8e\x41\xa8\x6d\xdd\xec\xef\xf0\xd6\x25\x3c\x8e\x2b\xd1\x05\x05\x6e\xa7\xc8\x7a\x0d\xe9\x6d\x87\xd3\x6c\xc6\x53\xb7\x81\x6e\x79\xf0\xe4\xfc\xfc\x49\xfd\x0d\xc5\x74\x2a\xce\xa7\xe6\x46\x24\x69\xe4\x9f\x8c\x88\xe2\x08\xae\xb5\xa8\xe2\x88\xed\xcf\x4f\xe7\xf3\xd3\xb9\xfc\xfc\x49\x5d\x3f\xf9\xe7\xa9\x89\xd1\xd1\x89\xe3\xd2\x48\xeb\xeb\x70\x8e\x3e\x22\xf9\x78\x2a\xdc\x3e\xed\xe4\x35\x75\xa1\xfe\xb3\x0c\x2c\x37\xba\xda\x97\xbc\xe4\x29\xa6\x74\x64\x21\xc0\xb1\x69\xcf\x66\x85\xae\xd9\xac\x5d\xda\xcf\xb6\xbe\xf6\x1b\x95\x3a\x9d\xb7\xee\x22\xba\xad\x62\xbb\x55\xa7\xf3\x59\x53\x49\xb7\x60\x9a\xc3\x0e\x9b\xcf\x48\xbb\xc4\x01\x4f\x97\xe8\x9d\xcf\x7c\x6d\x6c\x3c\x0f\x13\xda\xe7\xe9\x5c\xd6\x6a\xd2\x2d\x94\xcc\xd2\x2f\xf0\xbf\xcb\x89\xad\x75\x7a\x10\x6f\x88\x39\x37\x0b\x60\x1b\x6f\xa3\x90\xcb\xbd\x80\x30\x63\xa6\x01\x7b\x96\x00\xb6\x2d\x37\x9c\x19\x9d\x58\x3b\xb9\xbd\xef\xc4\x89\x7d\xf4\xef\xc4\xda\x49\x8c\xdc\x9d\x6d\xef\x8b\x6e\xec\x7a\xa9\xbb\x17\xbb\xf8\x21\x1a\xbd\x49\x61\xb5\xdd\xf3\xc0\x02\xc8\x46\x08\xd7\x21\x4b\x21\x81\x50\x9c\xf1\xe5\x14\x21\x82\x0f\x62\x05\x74\x89\xa5\x0f\xbe\x7c\x54\xd8\x14\x8e\xd2\x0d\x36\x20\xc5\x70\xf6\x1f\x2f\x3c\xf5\xd4\xfc\xa7\xe6\x9f\x7a\xca\x8f\x1b\x3b\xea\x72\xb5\xa9\x1c\xb8\xb9\x0d\xc5\x0b\x43\x0e\x73\x02\xae\xda\xc0\x34\x57\x49\x8c\x2a\x0b\xca\x68\xa2\x5e\x3d\x7a\xf5\xea\xd1\xaa\x7d\x9c\xcb\x43\xd6\xac\x90\xe7\x8e\x33\x3d\xa5\x81\x1b\xae\xed\x73\x80\x49\x1e\xae\x3b\xc2\xd0\x21\x5a\x1a\xdb\xd5\xbb\xa8\x7a\x17\xad\xaf\xe3\x5a\xab\xda\xf0\xe2\xca\x10\x68\xce\x9d\x31\x96\x41\x53\x1e\xcf\x4c\xef\x1a\xe2\x0d\x7c\x53\x80\x08\x69\x19\x7c\x13\x86\xea\xe3\x80\x2b\x08\xb8\x61\xaf\xf7\x0f\x0d\xf5\x3b\xfd\x83\x83\xfd\x4f\xc0\x2d\x3f\x23\x8a\xb6\x20\xb8\x94\x70\xd8\x71\xea\xf5\xe6\x60\x7f\x93\x9e\xd4\xec\x1f\xfc\x1a\xdc\xff\x6b\x4a\x32\x33\x96\x54\x94\xc4\xf8\x58\x42\x71\xee\x22\xe2\xd9\x27\xfa\x7c\xd8\x8f\x54\xe2\x23\x08\xa1\x1e\xac\x49\xd5\x67\xb3\xe8\x5d\x09\xf0\x4f\x8e\xc5\xe3\x63\xf1\x63\xd0\x0e\x96\xa5\xee\xce\xfe\x2e\xff\x02\x78\xe0\x2f\xc1\x36\xc5\x78\x0f\x6a\x9e\x46\x08\x4f\xcd\xdf\x25\x87\xed\x0e\xc4\x2f\xe4\x26\x30\xed\xf0\x4b\x02\x7b\xed\xc2\x9a\x3f\xdb\x3f\x0d\x73\xdf\x76\x97\x0b\xb2\x8d\x75\xd9\x74\xd7\x28\x53\x55\x39\x4e\x92\x76\xc3\xb9\x9e\x5c\x5d\x9d\xa4\x7f\x35\x0f\xdf\x9a\xbe\xff\xd9\x24\x3b\x8c\xad\x5e\x44\xeb\x57\x8f\xf7\xe4\xb8\xfe\xed\x61\x37\xc6\xa0\x83\xd7\x29\x61\x54\xb3\x71\x5f\xb9\x34\x79\xe0\xc0\x24\x3f\x8c\x1b\xd6\xf6\xc4\xfe\x03\x17\x0f\x84\xd1\x50\x4f\x4f\x74\x63\xbb\x5f\x41\xaf\x43\x6f\x40\x8f\x22\xe4\xc5\x62\x48\xf3\x42\x52\x2e\x1a\x0b\xbd\xfd\x14\x72\x8f\x7b\xdf\xab\x45\x63\x41\x9f\x17\x92\x5e\x5c\xbb\xf7\x99\xeb\x3d\xcf\x7d\xef\xc5\x8e\xc7\x45\x2a\x53\x0f\x8a\xd1\xe8\xc0\xeb\xfd\x7d\x6f\x45\xa3\x03\x03\xd1\xe8\x80\x31\x30\x10\x4d\xc0\x29\xf4\xc8\xca\xc0\x40\xf4\xcc\xc0\x40\xb4\x3c\x30\x10\x3d\x1a\x1f\x1c\x84\x2f\x06\xe3\xb1\x6d\xd8\x5b\xa2\x3f\x58\xf1\xdf\x2e\x99\x16\x62\xd3\xc3\x0e\xdd\xe4\xe1\xec\xe9\xf6\x67\x8b\x6e\x6a\xf4\x9c\x33\x50\xc0\x35\xf8\x1e\xa1\xa1\xf6\x2c\xc2\xfa\x6a\x1c\x95\xd0\x14\xda\x8f\x0e\xa2\xa3\xe8\x5e\x74\x0e\xd9\xe8\xb5\xe8\x06\x78\xbc\xe1\x3a\x94\x9e\x77\xa9\xb8\xa0\xcf\x27\xbd\x9e\x28\x15\x84\x42\xc8\xeb\xa5\x3d\x7e\x41\x85\xe8\xc0\x2e\x48\xf9\xf4\x1d\x67\xbd\xab\x6c\x6f\x2d\xe8\x9a\x81\x68\xeb\x25\x16\x34\x3a\x30\x10\xfd\x0c\x68\x2d\xaf\xf5\xc5\xc7\xac\x60\x87\xa9\x32\x31\xdf\x57\x35\x28\xe0\xde\x98\xbb\x1d\x1c\x8c\x5f\x11\xc5\x0a\x2d\xeb\x71\xf2\x5d\x28\x94\xf5\x24\x3c\xbd\xf7\x40\x41\xad\xbf\x26\x04\x23\x38\xf7\x21\xf8\xdd\x9b\xe0\x30\x42\x71\x64\x20\x03\xbf\x84\x5f\x82\x28\x80\x84\xcb\x77\x3f\x87\xee\x47\x57\xd1\x35\xb4\x8e\xde\x82\x9e\x42\x0e\xfa\x31\xf4\x7e\xf4\xd3\xe8\x36\xd5\xbd\x84\x64\xd1\x10\xdb\xe3\x2b\x29\x17\x17\x94\xae\x63\x13\xf0\xc9\x1b\x49\x90\x91\xea\x43\xa6\x53\xdb\x88\x64\x9d\xa3\x12\x2b\x26\xbe\x47\xd7\x75\x82\x11\x8c\x85\x79\x41\x85\xdb\xa2\xc3\x96\x53\x14\x86\x90\x91\x0c\xcb\x1e\x5d\x81\x21\x8a\xc7\xa0\xab\xd6\x07\x06\xa2\x1b\xde\x07\x7c\x46\x14\xff\x14\x3a\xfe\x7d\x19\xfc\x9a\xb1\x8b\x98\xf6\x44\xa4\x2f\x70\x38\x10\x8f\x0d\x26\x46\x06\x0e\x63\xda\x29\x91\xf0\xcf\x47\xa3\x03\x8f\xf8\xfa\x9b\xbd\xbe\x00\xf7\xeb\x65\x51\xfc\x2b\x77\xf4\x0e\x47\x47\x30\xed\xbf\xc1\x08\x94\xf9\xf2\x40\x34\x6a\xc1\xa9\x4b\xa2\x78\x27\x3a\x30\x60\x41\xff\x07\xda\x87\x31\x97\x69\xfd\x7c\xe6\xbe\x40\x5f\x04\x1a\x73\x78\x60\x24\x31\x18\x8b\x07\x0e\x07\xfa\x22\xf4\xf7\xf8\x2f\x45\x11\xe7\xe1\xcc\x6b\xbe\x21\xfc\x71\x38\x72\x65\x20\x1a\x7d\x4e\x14\x45\x71\x13\x8f\x44\x43\x83\xf4\xfe\xaf\xc1\x17\x08\x50\x01\xd9\xbd\xf3\x66\x83\x12\x9a\x41\x3a\x5a\x44\xf7\xa0\x15\x74\x19\xbd\x06\x3d\x8c\x1e\x41\x8f\xa2\xc7\xd1\xdb\xd1\x3f\x40\xcf\xa2\x0f\xa1\x9f\x42\x1f\x47\xbf\x80\x7e\x89\xae\x15\xdd\x51\x5a\xe1\x9e\x8e\x67\xb7\xa4\x73\x1b\xe8\x3d\x55\x7a\x7e\xd3\x3b\x0b\xf4\x32\x47\xb0\x5b\x15\xf4\x8d\x11\x13\x8e\x84\xbb\x6e\xe8\x44\xbb\x05\xf4\x8c\x5e\x36\x8a\xf6\x0c\x93\xf5\x3d\x14\xcb\xd0\xeb\xfd\x4c\x0f\x8c\x46\x07\x02\x70\x7f\x6e\x8b\xe2\xd2\x8e\x5b\xc7\x5e\x3f\x07\xa7\x4e\xb5\x27\xa9\x01\x36\x36\xfe\x6a\x60\x20\x8a\xd9\xa8\x10\xc5\x16\x7b\xf8\xca\xde\x90\xf1\xbf\xf0\x0a\x54\xcc\x1e\xa5\x73\x70\xec\x2b\xb0\xff\x67\xa2\x78\xa6\x7d\x97\x1a\xbe\x07\xf2\xe3\xbe\xbb\x29\xc1\xa9\xcf\x7a\x03\xa4\xb5\x21\x8a\xb5\x81\x68\xf4\x65\xff\x6f\xd7\x61\xef\xfe\xe8\xc0\x80\xb0\xe3\xf7\xbe\x58\x0f\x1f\x6b\x1b\x81\xb9\xf1\x53\x30\xd1\xc2\xaa\xc3\x34\x9b\x41\xf0\x28\x80\xb7\x15\xa8\xb8\xca\xcd\x07\x9e\x7e\xfa\x81\x43\xfb\xf6\x1f\x3c\xb8\x7f\x1f\x6e\x3e\xfd\xb9\xa7\xc7\xc6\x1e\x7e\xec\xe1\xb1\x31\x58\x81\x98\x46\xb1\xe3\x37\x8d\xd5\xa7\x9f\x5e\x2d\x66\x8f\x5d\xbe\x7c\x2c\x0b\xbf\x89\x24\x6f\x7d\xe0\x56\x32\xe2\xc3\x79\x18\x64\xf8\x0c\x65\x70\xc5\x01\x49\x9c\xd8\x8b\x7c\xc1\xf0\x1e\xd2\x99\xc2\xd4\x54\x21\xf3\xaf\xfc\xb8\x14\x54\x06\x8c\x0d\x2f\x9f\x5d\x1e\x8e\xfd\xe6\xff\x0f\x50\x29\xfe\xae\x10\x39\xbc\xf5\x6a\x90\x21\xaf\xb4\xe5\x35\xc9\x94\x4c\x41\xe5\x54\x4e\x35\x3c\x96\x1c\x8b\xa9\xcc\x96\x5d\xa9\x59\x76\xc5\xb6\x98\x99\x1f\xc7\xac\x87\xa8\x78\xf2\x7e\xab\x52\xf9\x03\xba\xa9\x1c\xa5\x9f\x3b\xfc\xd9\x0d\x14\x41\x22\x42\x90\x6a\x0b\xa1\x3f\x7d\xf3\xae\x6b\x7e\xbe\x6c\x2c\xe0\x7f\x1e\x0e\x7f\x79\xf1\xcb\xe1\x78\xb8\xf5\x07\x0b\xca\xbc\xbc\x50\x18\xce\xe0\x8f\x86\xe3\x70\x30\xfc\x47\x4a\x5a\x9e\x27\x52\x22\xed\xcb\x38\xe7\x50\x0c\xc5\x51\x0a\x65\x19\x9a\x70\x19\xe0\x3a\x54\x9d\x53\x14\x53\x92\x15\x63\x21\x04\x5e\x5b\xd5\x94\x4d\x51\xe4\x98\xad\xe1\x9b\x7d\xe7\x85\xf3\x8b\x67\x85\x2f\xfc\xce\x85\xd9\x7b\xf2\x6f\xba\xdd\x87\x3f\xd9\x77\xe0\xf5\xe1\x9f\xa5\x1f\xff\x32\x40\xbf\x49\xed\xe3\x7e\x5c\x7e\x66\x5f\xed\x19\xfe\xd4\xdd\x2f\x26\x46\x2f\x4f\x26\x46\x2f\x1f\xf9\xdc\x80\xf0\x0c\x7f\xea\x42\xe0\x99\x7d\xa1\xb6\x07\xb0\x09\x98\x44\x3e\x8b\x60\x42\x97\x76\x44\x91\x79\xca\xe9\xb7\x40\xfb\x25\x8e\x7a\xbc\x63\xc9\x3d\x2e\x4f\x1e\x98\x9c\x3c\x50\x63\x9a\x2f\xd6\xfc\x9a\xe1\x6f\xd2\x6f\x26\x41\xef\x46\xb8\x06\x1a\x4d\x0e\x2c\xfe\x28\x01\x00\xc4\x02\x20\x99\x31\x8f\x13\x67\xf8\xfd\x43\x5e\xd4\x1c\x15\xff\x6b\xf7\x1e\xbf\x97\xd6\xb4\x61\x59\xeb\xeb\xe0\x7b\x7c\x07\xe0\x6f\xaf\xaf\xe3\xe6\xcb\xa3\xd9\xec\xe8\xcb\x6e\x08\x9b\x65\x11\xf0\x1a\x69\x7c\xba\xce\x38\x6e\xbe\xad\x31\xdb\x18\xab\xbd\x1f\xd0\x00\x11\x76\xaf\x54\x34\xf7\xa8\x3c\xa1\x0b\x32\x04\x7b\x15\xd3\xa9\xa7\xbb\x6b\xde\x58\x5f\xc7\x0e\xb8\x3a\xd3\xce\x8e\x4a\x5b\xb6\x86\x38\xf7\xbe\x6e\x77\xd9\x47\xf4\x9d\x1e\x0e\xb5\xc3\x2e\x26\x77\xe1\x19\xb9\x94\x1e\x82\x3e\x2f\xe2\xba\x1b\x56\x43\xdf\x2a\x9b\x9b\x69\x1e\xbc\xc3\x22\x64\x64\x0a\x7c\x1a\x5b\x90\x20\xe7\x7f\x61\xa1\xd5\x00\x93\x83\xc5\xa7\x21\x6a\x56\x48\xfb\x22\xef\x19\xba\x81\x4c\xef\x40\x69\x07\xa4\x01\xe7\xa1\x18\x70\x9e\x83\xa7\xbd\x72\xd4\x00\x99\x9e\x4f\x13\xdb\xc5\xa8\xb7\xf9\xf4\x47\x19\xba\x08\x1c\xc6\x36\x3d\x4a\x08\x7c\x68\xda\xf4\x9c\x1a\x83\x17\x09\x77\x49\x90\xa3\xa8\x80\x34\xda\x1b\xbd\x58\x66\xd2\xab\x68\x0d\x63\x49\xea\x87\x6a\xef\xec\xd2\x20\x86\xc6\xff\x7a\xa8\xf7\x9f\xee\xd5\x2c\xbf\x26\xd4\xcf\x66\xe0\x84\xee\x2a\x57\xbb\x86\x1f\x12\x8d\xe9\x57\x0d\x0b\xa3\xca\xf2\x97\xfd\xda\x15\x76\x40\xbd\xaa\xdb\xeb\x17\x32\xde\xb1\x14\x8f\x7c\xfd\xed\xc9\x14\x0b\x1d\xcd\x52\xe9\xd1\x30\xdb\x7a\x2f\x9b\x45\x20\x2d\x94\xcd\x27\xca\x42\x19\xbf\x11\x56\xdd\x19\xd8\x5e\xf1\xed\xd7\x2e\xdc\x5a\x9e\x2e\x0d\xc5\x47\xe2\x43\x17\x6f\xde\x74\x55\xcd\x7b\x7c\xf1\xa2\x6f\x84\x23\xbf\x78\xfd\xd4\xf4\x52\x62\x70\x20\x19\x1b\x8a\xdf\xbc\x7d\xd3\x9d\x1f\xbf\x0a\xb6\x0a\x81\x45\xb3\x94\x44\x0e\xd0\x9a\x65\x03\xe0\x9a\xcb\xf3\xd2\x87\x3f\x33\xf5\x19\x7c\x61\x78\xf8\x9e\xa9\x6c\xf6\xcb\x37\xbe\x94\xcd\x4e\xdd\x13\x8e\x87\xab\x9f\x99\xfa\xcc\x5f\xb2\x83\x5f\xba\xf1\x65\x38\x18\xf6\xd9\x14\x07\xd1\x08\x30\xce\xb5\x7d\xe2\x12\x2f\x1b\x41\x83\x4b\x18\x3a\xef\x33\x82\x80\x06\xb8\xbe\xbe\x5e\x59\x5f\x27\x64\x1d\x3a\xcd\x75\x7a\x37\x1c\x2c\x90\x56\xc3\x71\xb0\x45\x5a\xde\x13\xd5\xab\xb7\xfe\x60\x10\xbc\x3b\xbc\x31\xac\x4c\xb5\xc3\x31\xe1\x8d\xc7\x70\x52\x94\x04\x45\x01\xcc\x24\xc9\x57\x03\x0e\xf8\x30\xea\xec\x59\xf5\xc0\xe9\xd3\x07\xd4\xbf\x01\xdd\x9e\xa1\xae\x30\x9c\xbd\x89\xd5\x7b\xe3\xb3\xc9\xeb\x4f\x5d\x4f\xce\xc6\xf3\x10\xd7\x60\xf9\xf8\x13\xdb\x1c\x87\x3b\x2c\x0a\x80\x1f\xdb\x31\x20\xd7\x37\x37\x9b\x3e\x8b\x41\x2f\x4b\xe7\x6e\x80\x28\x3d\x25\xec\x66\xae\xf3\xe1\xcc\x8c\x00\x76\x5c\x87\x2f\x95\xc1\xba\x27\xe8\x1b\x6d\x5a\x0d\x57\x2a\xda\x16\x9f\xa2\xdb\x7a\x9d\x4f\xd5\xb4\x4a\x25\xc5\x6f\x69\x95\x56\xb3\x4e\x07\xbe\x1b\x59\xdf\xf0\x98\x4e\x7a\x23\x52\x76\xbb\xa6\x5a\x2f\x46\x48\xc0\xc7\x87\xf7\x2a\xfb\xa5\xe1\x38\x75\xc6\xca\xcb\x3b\x6e\xbf\x78\x56\xfc\x57\xd9\x2f\xd5\x5d\x68\x70\x7d\xde\x26\x6f\x9e\x64\xbe\x08\x7a\xeb\x13\xde\x04\xa5\xb2\xe9\xe8\x48\xc0\x0b\xc4\xa7\x63\x9a\xd8\x30\xb9\x34\x99\x19\xca\xb6\x09\x1d\xd5\xb6\x4d\x5a\x75\x36\x49\xb1\x6f\xe9\x1e\xfa\x81\xf4\x59\xd0\x17\x37\xdd\x0f\x16\x3e\x49\x36\xa5\xdd\xf8\x1f\xb0\xb6\x72\xe7\x90\xf6\xc9\xee\xf2\xbe\x77\xe3\xac\x7e\xcf\x6e\x3d\xd0\x93\x31\xf0\x2a\xad\xec\x76\x0f\x62\xbf\x87\xc2\xbd\xf7\xdd\x80\x28\x7d\x0f\x0f\x64\x8f\x51\x4a\x9f\xfc\xf7\xe1\x26\x7e\x9f\x9f\x27\xd1\xfb\x0f\xf8\x1c\xed\xbf\xf7\x11\x8b\x58\x9a\xef\xf9\x08\xb8\x9e\xfb\x52\x21\xf8\xe3\x4f\x3e\xd9\xfa\xd7\xd8\x69\x60\xa7\xd9\x24\xad\xcd\xff\xdd\xf8\x6d\x3f\x57\x72\x18\x89\x8c\xe3\x04\x27\x76\x31\xd9\x25\x5c\x8a\x04\x18\x23\xf5\xd6\xa6\xe8\x34\x3a\x52\xd3\x36\xac\xeb\x84\x85\x33\xb3\xf8\x83\x8e\xab\xa0\x05\xf6\x53\x0d\x7a\xd2\x01\x4c\x7d\x88\x15\x2f\x31\x1e\xfe\x10\x95\x4e\x6a\x9a\x75\x3d\xdc\x6a\xd4\xeb\xce\x7f\x16\x27\x26\x1c\x86\x38\xed\xb8\xa3\x2a\xcf\xf2\x9a\x4a\xf3\x0c\xce\x9c\x63\xc9\x3d\x65\x13\xe2\x4a\xe5\xa2\x20\x2f\x98\x65\xb2\xb9\x89\x17\x2a\x7d\x5c\x1f\x2f\x1d\x79\xd7\x3f\x7d\x20\x3e\xc8\x05\xa2\x63\xb3\xb3\xa3\x29\x2c\x68\x9b\x2b\x43\x03\x89\x70\x46\x3a\x36\x91\x7f\x28\x2e\xc6\x46\x06\x43\xe9\xfd\x13\xa3\x29\xb7\x3d\x75\x68\x4f\xbc\xdd\x1e\xce\x3f\x3d\xd6\x89\x75\x9d\xdb\x82\xa9\x17\x5a\xa6\xb9\x53\xae\xdb\xbe\x26\xf0\x03\xec\x03\xb4\x8d\xf6\x8f\xa4\xee\xe6\x71\x61\x68\x20\x8b\x4b\x97\x5c\x48\x76\xae\x0e\xc6\xcd\x2d\x68\x6a\xff\x40\x34\x29\x0c\x0d\xcc\x8e\x0e\x0d\xc7\xc5\x78\x3c\xc9\x49\x23\xb1\xd0\x50\xc4\xe5\x81\xa8\xfc\x26\x34\x7b\x70\x78\x64\x78\x70\x68\x60\x74\x62\x74\x28\x14\x0e\xf5\x73\x49\x79\x34\x9d\x0c\x8d\x50\xfd\xeb\x53\xc8\xc1\x0f\xe0\x1a\x12\x80\x9d\x6b\x41\x55\x54\xa5\x48\x2b\x11\x84\xa4\x04\xd8\xef\x86\xc1\x2d\x40\x54\xbc\x20\xbb\xf4\x58\x8a\xaa\x18\x98\x0c\xf4\x45\x39\x91\x8b\xf6\x0d\xa4\xb8\x01\x61\x20\xf6\x9e\xd5\xa3\x3c\x87\x47\x87\x86\x46\x26\x47\x86\x86\x46\xf1\xe4\x24\x1f\x0e\xf7\xf5\x85\xc3\xfc\xe4\xc1\x03\xc3\x7d\x7c\x7c\xf2\x20\xf7\xd8\x52\x7a\x6c\x7a\x31\x37\x12\x0a\x87\x43\x23\x99\x65\x9f\xf7\x21\x08\x96\xa2\xe2\x1e\x38\x37\x10\x63\x5d\x6a\x5b\x7d\x1b\x8c\xd5\xc0\x0b\x56\xda\x20\x76\x6b\x1b\xdb\xad\x3a\x9f\x66\x19\x5a\x15\x7f\x18\x13\x9d\x9d\x9b\x4d\xd7\x09\xe4\xab\x31\x89\x46\xd1\x24\x60\x30\xb9\xb2\x95\x37\xcf\x83\xab\x62\xb7\xd9\xa3\x63\x76\xae\x3a\x29\x9e\xd8\x76\x3c\x95\xe6\x49\xbd\xbb\x31\x36\x6b\xc8\x36\xb1\xe3\x29\xa2\x8d\xc6\x49\x3c\xa5\x55\x76\xb6\xaa\xe2\x35\xc8\xd7\xa2\x51\xe0\x50\x31\x10\x2a\xf9\x62\x8c\x3a\x8d\x9a\x17\x7d\x5d\xb0\xdb\x3c\x52\xf5\xe4\xbb\x78\x2a\x31\x38\x98\x68\x35\x59\x53\x70\x4f\x0b\xb7\x69\xc3\x08\x6d\x1b\xc0\x9a\x3c\xe7\xb6\x04\x78\xcb\x7b\x5a\x89\x7a\xee\xd0\x18\x44\x47\xbe\x52\xd7\x84\xe8\xd4\xdb\x7b\x83\xdc\x3e\xc1\xcb\x67\xb7\x17\xb5\x5d\x6e\x91\xd7\x19\xb7\xae\xaf\xcc\xf7\xd4\x38\xbe\x27\xf6\x91\x17\x77\xbf\xf7\xb8\xa8\xdb\x1a\x21\x5e\x2f\xec\x3a\x32\x6c\xc7\xb6\x77\x1b\x1b\x3c\x44\x01\xcd\x76\xdd\x09\x41\x86\xf8\x89\x57\x71\x0b\x6c\xa7\x02\xa5\xbf\x42\xf7\x3b\x1a\x49\xc5\x9d\x57\xec\xf9\x90\xaf\x1f\x24\xf0\xc7\x2c\x30\x84\x2e\x0f\x9d\xcb\x6b\x11\xe0\x96\xbd\xe2\x70\x15\x08\x90\x33\x56\x2a\xd0\x0c\x67\xf7\x9b\x23\x68\x9a\x9d\x8a\x3b\xf1\x51\x40\xc5\x8e\xa7\xc8\x2b\x0c\xda\x4e\x4f\x31\xce\x25\x99\xce\x7f\x90\x73\xf8\x7d\x1a\xa2\xd9\xb6\x63\xef\x5a\x7f\xa3\xae\x69\x5b\xaf\xf4\x9c\x84\x7d\xfd\xc1\x81\xe5\xfd\x20\x3a\xc6\x7a\x44\xf5\xf5\x8a\xd7\x39\x9d\x87\xe6\x55\xf5\x0f\xed\x21\xfa\xd0\xa4\x78\xc2\x9e\x9e\x57\xea\xa7\x0a\x21\xf5\x14\x7b\x7a\xf2\xc0\xc5\xce\xf6\x5e\xb1\xcb\xf6\xb8\x9f\x7e\xdf\x9f\xab\x74\xef\x05\xef\xd7\x69\xaf\x45\x08\x9d\x7a\x6c\x1b\x6e\xeb\xee\x13\x10\xc0\x2f\x8c\xc6\x1d\x3a\xda\x52\x71\x12\x1f\xdd\x6d\x94\xed\xd6\x3a\xc6\x7a\x6c\x82\x17\xdb\x28\xf0\x05\xa3\x43\x70\xb4\x93\xa3\xde\x90\xa5\x9e\x96\xd3\x8e\x57\xbb\x9f\x48\x98\x6d\x7c\x2d\xac\x40\x90\xac\x65\x81\x7b\x50\xe0\xd3\xdb\x5e\x8b\x9d\x56\xd3\x01\xf5\xbe\xee\x6f\x64\x5d\xa0\x53\xa9\x90\x8a\x0b\xf1\x54\x2a\x6e\x79\x4d\x0e\x76\xc9\xb9\x22\xe3\x8b\xd9\xd1\x42\x4e\xc7\xb5\x5a\xcd\x27\x3c\xd6\x6a\x55\xac\x39\x5d\x7c\xf2\xf5\xcd\x6e\x2d\x75\x04\x56\x22\xd2\xb1\xca\xbd\x1a\x7d\x9c\x45\x44\x34\x77\xd1\xc4\x5d\x1f\xe2\x2f\xed\xa9\x84\x77\x62\xe2\x24\xc8\x78\xf1\xe5\x09\x70\x22\xc4\x4c\x7f\xdf\x5c\x81\x43\x13\x53\x06\x01\x26\x9d\xbd\xb2\x05\xe6\x06\x4e\x4c\xcb\xfa\x2e\x19\x03\xae\x4e\x09\xd1\x05\x51\x40\x9e\x2f\x08\x05\x89\x97\x55\x4e\xde\x31\x04\x75\x53\x72\x61\x24\xd7\xce\xac\x3c\xe4\x0f\xac\xaf\xd8\x36\xb6\x9b\x04\x93\x95\x95\xde\x41\x66\xdb\x08\xb7\x7d\xcb\x61\x84\x70\xa2\x60\x4a\xa6\x8a\x49\xa3\xa5\x39\x6b\xc5\xc3\xc0\x15\xee\xa4\xee\xf3\xa1\x90\xb6\x19\x90\x5e\xe9\x29\xd8\x7d\x91\x79\x85\xe5\x05\xa1\x08\x9a\x46\xd3\xf8\x5b\xf8\x5b\x6e\xb4\x43\x0a\x3c\x1c\x04\xed\x47\x26\xd5\xff\xa9\x96\x6b\x96\x4d\x29\xcc\x99\x65\x53\x0f\x73\x8a\x07\x6b\x29\x4a\x9c\xa2\x9a\x61\x4e\x2e\x9b\x21\x45\x35\x45\x49\xe5\x14\xd5\x10\xb9\x30\xa7\x96\xcd\xb7\x65\x4b\x73\xcb\x8f\xcc\x4d\xe4\xf4\xe5\xb7\x8c\x85\x49\x78\xea\x06\xdc\xef\x7f\x19\x1e\xcb\x4e\x85\xcf\xc1\x11\x7c\x9e\x7d\x60\x67\x96\xb2\xfa\xf2\x6b\xb2\xf4\x8b\x12\x1c\xae\x2a\x33\x4b\xfa\x27\x60\xfc\xd8\x50\xcc\x3b\x4b\x73\xcb\xfa\x5b\xe0\xbc\x0f\xfa\xce\xa3\x72\xe3\x7e\xc4\xe3\xdf\xc1\xdf\x01\x4c\x99\xb6\xf6\xcf\x2d\x94\x4d\x55\x51\x8c\xb2\x24\x4a\x30\x38\x20\xb7\xa5\x6c\x96\xa5\x64\x98\x1b\x0a\x70\xd9\x80\x24\x8a\x42\x58\x55\xc0\x45\xc6\xf8\x6b\xc3\x5c\x98\x19\x95\x9f\x9a\x29\xc5\xb3\x45\xcb\x8a\xf4\x07\xe4\xf1\x71\x39\xd0\x1f\xb1\xac\x62\x36\xc0\x85\x83\xc1\x30\x17\xe8\xf9\xa6\x0e\xf6\xa4\xfb\x95\x13\xb1\x48\x7c\xb1\x50\x2a\xf5\x71\x43\x61\x79\x91\xe7\x17\xe5\xf0\x10\xd7\x57\x2a\x15\x16\xe3\xb8\x2f\x88\x71\xb0\x0f\xef\xf6\x3d\xbd\x03\xfe\x59\x7c\xa0\x2b\xf6\x99\x21\x19\x98\x12\x67\x9a\x12\xa7\xf8\xd8\x5e\x4c\x60\x90\x93\x0d\x8e\x53\x4d\xfa\xe4\x6d\x6b\x1f\x9d\xcd\xce\x7e\x32\x3b\x9b\x7d\x0f\x23\x44\x71\x9c\xf1\xd9\xec\xac\xad\xa9\xd9\xd9\x2c\x76\x04\xc7\xf9\xd1\xd9\xec\xec\x6c\x76\x36\xfb\xaf\xe1\x56\x84\xb4\x77\xcd\x66\x67\x1f\x76\x9c\x0f\x65\x67\xb3\x3f\x02\x08\xe7\x16\x12\xf0\xbf\x07\xbd\x05\x72\x2b\xb1\xae\x9a\x12\xc0\x3a\x98\x05\x9d\xd3\x83\x86\x8c\xdf\x30\x9f\x12\x4e\x4c\x0d\x1f\x1f\x9e\x3a\xd1\x6a\x36\x6d\xbb\x66\xe1\xd7\x9e\xd7\x1a\x84\x34\x1a\x77\x51\xc3\xcb\xb0\xaa\x41\xb6\x33\xd3\x9c\x0c\x9d\x03\xe0\x71\x43\x36\x54\x5c\x2d\xbc\xb8\x55\xf9\x1d\x7c\x21\xb3\x7a\xce\x5a\xc7\xe4\xe0\x8b\xb3\x9b\xb5\xd6\xe7\x32\x0f\xfc\x83\xc6\x85\xaa\x0f\x21\x3e\x4c\xb5\x13\xa8\xb0\xb6\x55\xa9\x6c\x58\xb8\xb9\x09\xa5\x47\xda\xb6\x24\x86\xb5\x38\x82\x92\x80\x2e\x4d\x00\x9d\xd7\xe3\x65\x51\x5d\x30\x1a\x8e\xd7\x41\x35\x95\x0b\x4c\x2e\x70\xe3\x44\x4a\x1e\x42\x6a\x8d\xa4\x79\x00\xe5\x69\x6a\x0e\x9f\x26\xad\x7a\x7b\x6e\xb2\x89\x43\x2c\x46\xb9\xb2\xc9\xe0\x58\x1c\xbc\xd5\xd2\x70\x3d\xcd\xd3\x13\xb7\x48\x9a\x6f\xb2\xe3\x08\x45\xdb\x73\xa4\x17\xb3\xce\x50\x65\x18\x72\x18\xe4\xa1\xeb\x82\x1b\x69\x6a\xe8\x86\xf0\x0a\xf9\xee\x92\x9b\xab\xa0\xea\x9d\x44\x4a\x49\xd0\x8d\x82\x2c\x80\xbe\xaf\xb9\xb8\x32\x3d\x39\xf1\x9a\x0b\x7f\x03\x5f\x38\xda\x5d\xa4\x69\x58\x70\x1c\x76\x6a\x8d\xc5\xd9\x60\xcb\x3f\xb7\x3b\x1d\x14\x27\xc2\x72\x3f\x3d\x7d\xbc\x37\xde\x61\x07\x8f\xfd\x0e\x4f\xe6\x1e\xfc\xf5\xde\x79\x40\x49\x9f\x7a\x14\xcc\xe1\x8f\x82\x75\x76\x11\xf6\x3f\xb4\x93\xb1\x1e\xbe\x4e\x61\x66\x97\x3f\x0c\x10\x7d\x87\xc1\x8e\xbe\xb8\x83\xa5\xfe\xd7\x7d\xdf\xa2\x08\x42\x08\xe1\x3f\xc2\x7f\x04\xec\x90\x74\x54\xd0\x95\x2f\x8f\x26\xd0\x11\x96\xeb\x65\xa8\xb2\xa0\xd2\x8d\xc4\x32\x55\x25\x41\x0f\x62\x8e\xe5\x72\xab\x21\xe8\x60\x60\x61\xe4\x55\xc3\x0b\x28\x75\xdf\xb1\x9d\xcb\x69\xb1\x33\x5a\xec\x4c\xa5\x92\x7b\x28\xf7\xbb\xf8\x6b\x19\xd2\xfa\x3c\x9f\x22\xd8\xae\xdc\x45\x39\x82\xcf\xf0\x29\x2d\x47\xce\x54\xd8\xc6\xce\xe5\xce\xc4\x2a\x0e\xfd\xab\x54\x70\x2e\xf7\x50\x0e\x8f\xb4\xca\x19\x92\xe2\xf1\x19\x92\xab\x54\xb4\x14\xdf\xfa\x3c\xc9\x69\x95\x33\x6c\x43\x47\x4f\x37\x72\x81\x3f\xef\xc1\xe7\x11\x00\x8c\xbe\x3d\xf6\x77\x88\xdb\x75\x00\x4e\xd5\x7c\xdb\x2e\xc4\x63\xbb\x42\x5b\x47\x1b\x88\x76\xd9\xeb\x06\x3d\x46\x7d\x28\x8b\xb2\xf8\xeb\xf8\x25\x94\x04\xbc\x29\xaa\x97\x8b\x18\x7c\x70\x6d\xd8\x33\x46\xb5\xaf\x82\x70\xa9\x9a\x54\xea\x94\x55\x57\x3f\xe3\xe8\xf4\x61\x5c\xc3\xe5\xd1\x17\x4e\xe7\xf3\x24\x9f\x27\xfd\x8f\xff\xb7\xfe\xfc\xe4\x60\x22\xbf\x46\x48\xff\xe8\xca\x60\x22\x91\xc8\x27\x46\xf1\x4b\x0f\xb7\xbe\x2e\xbd\x70\x6f\xfe\x11\xc3\x70\x08\x79\xbc\x96\x4f\x0c\x4e\xe5\x23\x82\xb0\x26\x3d\x92\x18\x14\x24\x6e\x86\x30\x69\xc4\x8b\x31\x1b\x04\xfc\x2b\xd2\x13\x27\x66\x30\x5c\x12\xd6\xac\x90\x21\x0b\x3a\x6b\x81\xc0\xf4\x45\x2a\xa5\x52\xa1\xf4\x8c\x05\x6d\xc1\x16\x59\x81\xda\xf3\x2b\x83\x89\x97\x2d\x6b\x2d\x31\x68\x0d\x26\x1c\x42\x1c\xda\x88\xa8\x20\x24\xa3\x33\x84\x38\x89\x41\x58\x83\x3b\x51\x60\xd2\x4e\xdf\x84\xe7\x5d\xbf\x0a\x63\x1b\xfc\x0f\x3a\x2e\x80\x63\xd2\xef\x72\x78\x2d\xf8\x23\xd1\xce\xf2\x7a\x6d\xcb\x6d\xde\xca\xd3\x50\x14\x2b\xe9\xe7\x60\xbf\xee\xf3\x6c\xe6\x5d\x7c\x76\x0e\x69\x48\x6b\x73\x89\x31\x5e\x15\x15\x9d\x65\xec\x7b\x5e\xbe\x5e\xb8\xc7\xbb\xa0\x9a\x2a\x27\xba\xdf\x49\x1d\xa8\x21\x8f\xe9\xdb\x54\x3d\x1c\x63\x0f\x1d\x10\x3f\x7c\xfe\xfc\xb9\x2c\x38\xf2\xef\x05\x7f\x7d\x0e\xf6\x27\xce\x9d\x3b\xff\x45\xf8\x7c\xc3\x0e\x87\x1f\x0c\x47\xa2\xe1\xfb\xed\x70\x3c\xfc\xda\x70\xd8\xb6\xc3\xe1\xd7\x86\xe3\x61\xfb\xfe\x70\x22\xfc\x60\x38\x7c\xfe\xfc\xb9\xf3\x4f\xf9\xdc\xf7\x39\xd8\xcf\x9d\x3f\x77\x5e\x86\xcf\x0b\x7b\xfc\xce\x86\x82\x13\xe1\x1f\x1c\x1a\x84\x1f\xe1\xb5\xf3\xc4\xed\x2a\x5b\x49\x3e\xa4\x4a\xc8\x10\xe8\xc9\x9e\xac\xc3\x0a\xa2\x69\xbb\x58\x28\x61\x9e\xad\x30\x38\x3a\x7f\x9e\x42\x18\xc5\xc1\xaa\x43\xe7\x77\x1e\x9b\x6c\x79\x30\x7a\x61\x91\x99\xee\x5c\xad\x6a\xad\xad\x28\xc9\x13\x92\xff\xae\x4f\x62\xcf\x9f\xc1\x5a\x6b\xeb\xbb\xf4\x30\x21\x6b\x5d\xd6\xd5\x57\x27\x57\xfa\xbd\x6e\x31\x94\x44\x63\x68\x02\xd0\x61\x17\xca\xba\xc0\x58\x55\x74\x41\x76\x3f\x04\x93\x61\xd9\x98\x2f\xd3\x05\x16\xde\x65\xfa\x8e\xbd\x4c\xc8\xed\x76\x5a\xa4\x43\xf7\x1c\x25\x6d\x2d\x5d\xd1\x20\x5d\xf1\xa1\xe7\xc8\xcd\x8b\xd8\x81\x8f\xb0\x9f\x56\x2c\x9f\x56\xc1\xe4\xcd\x19\x98\xe9\x68\x4d\x9c\xa4\xd2\xb7\x20\xa4\x20\x73\x80\xb2\x2f\xc8\x0b\xa6\xb7\x95\x8d\x79\x77\x6b\xc2\x19\xf8\xf4\xc1\xe5\x39\xed\x58\x31\x93\x8d\x3d\x5b\xcc\x89\x8d\x0c\xbe\x91\x39\x92\xd0\x72\x39\x42\x0e\x18\xc7\x2a\x27\x8c\xdc\xd4\x7c\x31\xb3\x3a\x50\x0c\xe2\x48\x91\x88\xc7\x8a\x03\x1a\x16\x96\x0f\xe6\xb4\xb9\x4c\xa6\xf5\xb3\x99\x23\x99\xe2\xfc\x54\xd6\x38\x5e\x39\x66\x1c\x20\x24\x97\xd3\x12\xab\xd9\x4c\x71\x20\x86\xba\x23\x41\xe2\x1d\x14\xda\xa7\x3f\xf7\x34\xc4\x69\x78\xb1\x8d\x5e\xf4\xec\x24\x9d\xa9\x01\x5a\xcc\xcb\x2d\xd4\x19\x68\xac\x3c\x5f\xde\x71\x47\x2d\xb0\x39\x90\x4a\x85\x4f\xc5\x87\x86\xe2\x6c\x24\xb1\x94\xd8\x3c\x55\x97\xe9\x2a\x9e\x8a\xe7\x87\xe2\xf1\x5f\xec\xb5\xbc\x0b\xa8\x06\xf7\x75\x80\xce\x19\xf1\x79\x57\x0b\xa2\xb7\xc9\xb7\xff\xf1\xaf\x3c\x47\x6e\xde\xbe\x49\x7e\xf1\xa9\x55\x6d\x79\x75\x59\xc3\xce\x73\x0f\x5d\xb8\x75\xeb\xc2\x43\xc6\xea\xd2\xf4\xf2\xf2\xf4\xd2\x2e\xdc\x90\x4c\x1e\xd1\x77\x46\x63\x5b\x44\x23\xb6\xe3\x77\x33\xd0\x65\xa2\x07\x7e\xc7\x57\x1e\xcf\x30\x09\xbb\x3b\x41\xde\xc9\xec\x6b\x39\x20\x69\xa5\xe2\xda\x66\xa7\x70\x6c\x11\x87\x5e\x3b\x89\x8f\x12\xa7\xbb\x86\x8e\x5e\x9b\x60\x52\x31\x36\xe4\x62\x58\x10\x92\xa2\xbe\x77\x2d\x80\x74\xc9\x22\x49\xb5\xde\xba\x1c\x0d\x5b\x24\x15\x07\xae\xeb\x1d\xf5\x31\xc9\x2e\xe0\x1b\xa7\x02\xeb\xa5\x5d\x7a\x88\x54\x88\x5f\x93\xde\x22\xf5\xbd\x7b\x27\xc9\x62\x78\xbd\x91\x02\x79\x92\x60\xcb\xdc\x65\x94\x50\x61\x54\x8b\xa7\x1c\xba\xb1\x7d\x7d\x24\x10\x3a\x46\x46\xe3\x15\x42\x46\x7f\xad\xab\x22\xbf\x1f\x34\xe1\x67\x87\x88\x77\xe2\xa8\x77\xf7\x85\xa6\xf8\xfa\x6a\xaf\x37\x74\xb5\xce\xa7\x3a\xfe\xd0\x40\x3b\xc3\x36\x03\xb2\x36\x2f\xbb\x41\xf0\x6e\x40\x3c\x55\xce\x0d\x50\xc8\x77\xf4\x90\x6e\xea\x12\xae\xd7\x67\x96\x96\x66\xc6\x26\x27\xc7\xe8\x1f\xdd\xf7\x25\xb1\x9f\x50\x1c\xa5\x8a\x91\x78\xe4\xea\x92\x32\x79\x48\x7d\x76\xf2\x90\xaa\x1c\xb9\xba\x24\x78\x99\xbe\xcc\x6d\x4e\x88\x2f\x33\x7e\x14\x32\xf6\xba\xb2\xc3\x75\xd5\xfd\xc3\x8e\xed\x95\x2c\x6a\x96\xa6\x41\xd6\xa0\x85\xeb\xad\x76\xde\x39\x08\x45\x6e\x6c\xb0\x03\x91\x40\x1e\xfe\x58\x3b\x32\xd8\xb1\xf5\x93\xf3\xf3\xb2\x20\xe2\x86\xbd\x25\xd3\x85\x37\x86\xdc\xf8\xaf\x9f\xc1\xdf\xa4\xda\x91\x97\xd1\xd4\x09\x96\xc7\x82\xd3\xda\x72\xca\xa7\x56\xdf\x71\xe5\xec\xa7\x2e\x6b\xda\xfd\x91\xcb\xe6\xd2\xea\xea\xd2\xc1\xfb\x5d\xbd\xe8\x77\xf1\x37\xc1\x4a\x87\xbc\x20\xcc\x52\x32\xcc\x41\x31\x72\xdb\x3c\x27\x0b\xed\x22\xdf\x0c\xc1\xe3\xf8\x81\xb3\x07\xac\x56\x5d\x00\x82\x02\xa1\x0e\xc5\x63\x01\x3c\xf8\xc9\x83\xf7\x73\x97\xb5\x75\x80\xe8\xae\x58\x6e\x75\x90\x79\xea\xe0\x7b\xb1\x03\xb8\xf0\x1c\xd0\x3c\xdd\xcb\x92\x53\xaf\x79\x99\xa5\x5f\x40\x0e\xb6\xd9\x19\x09\x7a\x82\xda\x74\x9c\xec\xb5\x6b\xd8\x81\xb7\xff\xb3\xe3\x13\xbc\x6c\x81\x8e\x04\x10\xda\x55\x02\x00\x42\xc6\x76\x6a\xcf\x77\xdb\x22\x00\x8c\x28\x1f\x16\x08\xe4\x49\xf6\xc6\x0c\xf8\xe3\x04\xec\xde\xa8\x76\x6f\x14\x4a\x30\xdb\xcd\x0b\x7c\x52\x2e\x82\x83\x48\x2e\x1a\x3c\xb8\x85\xe6\xcd\x32\x88\x53\x02\x8c\xa6\xaf\xc6\x62\x81\xbe\xb5\xdf\x58\xeb\x0b\x78\x3b\x63\xe7\x5f\xbb\x7a\xf9\xd2\x03\xab\x97\x71\x7d\xa8\xf5\x1b\x43\x01\x59\x0e\x0c\xe1\x43\xf0\x6e\x8e\x8e\xfe\xc9\xe8\xa8\x0f\x77\xac\x1f\xe5\x11\x32\x75\x65\xc1\x94\x45\x21\x19\x12\x85\xa4\x5c\x28\x1a\x0b\x66\x19\x20\x60\xf4\x02\xf8\xf0\x92\xef\xff\x13\xfa\x3b\x1c\x0a\x74\x97\x67\x5f\xfe\x1c\xad\xa7\xda\xa9\xda\xdd\xf1\x5f\x47\x82\x45\xdb\xe5\x02\x62\x72\x38\x10\x2e\xce\x05\x94\x85\xe5\x80\x58\xe4\xc2\x49\xb8\x92\x05\xf5\x9f\x7c\xe4\xb5\x89\x70\x3c\x1e\x4e\xbc\xd6\xdb\xf9\x8b\xf7\x57\x86\x87\x2b\x74\x83\xeb\x23\xc1\xc4\xb1\x1f\x3b\x96\x08\x8e\x78\x3b\x99\xa1\x83\x6f\x39\x38\x44\x37\x3f\x38\x89\xad\xc3\x68\xd6\xc7\x56\x2d\xb3\xa0\x72\xaa\x2a\x98\xd2\x8e\x79\xdf\xc1\xe8\x92\x35\x6b\x19\xe5\x5a\xc7\x7f\x5c\xfd\xe1\x4b\xe6\x9f\xd7\xf3\xf9\x7a\x77\xc6\xd5\xdf\x65\x8c\xdb\xdf\x7e\x54\x11\xe7\xd3\x26\xa9\x1e\x9c\x46\x13\x68\x1f\xb3\x59\xeb\x1d\xfb\xb3\x04\x40\xbd\xb2\x2b\x73\x72\xee\x72\x34\x5f\x56\xdd\xbd\x5d\xd7\x23\x22\x6c\xb3\xe6\xd4\x84\x97\xad\x7c\x3e\x6f\xc4\x87\x0c\x63\x28\x5e\x4d\x0c\x1a\x79\x61\x30\xf1\xf9\x4e\xb2\x09\x1e\xb0\xac\xc7\xdd\xa4\x92\x15\x51\x14\xf3\x8e\x96\x17\x2d\xaa\x59\x25\x4c\x71\x30\xe1\x68\x89\xcf\xfa\xaf\x05\x75\x49\xc6\x2e\xe2\xe5\xae\xbe\x2d\x81\xa5\x5c\x79\x81\xea\xbd\x11\x10\xdf\x6d\x1c\x3b\x7c\xec\x2c\x5d\x60\xc6\x76\x89\x39\x68\xfd\xd1\xc8\x88\x98\x4e\x5b\xe3\xca\xf8\xb8\xc2\x34\xb0\x35\xbc\x8d\x6f\xbb\x79\x7e\x3b\x62\x4d\xcb\xf3\xa2\x14\x0e\x17\x15\xb5\xec\xcf\xea\x1b\xfb\x98\x33\x36\xe6\xd0\x8d\x6b\xbf\x66\xd9\x7c\xbf\xb5\x7a\xfa\xf4\xea\xea\xe9\xd3\x08\x38\xcf\xe9\x1d\xf8\x0b\x8f\x55\x14\x8b\x0c\x59\xcd\x04\xaf\xf1\x82\x0a\x4c\xca\xc2\x7c\x48\x32\x55\x43\xe2\x54\xfc\xd1\x03\x07\xcc\xfb\xf6\x93\x7c\xa6\xb0\x34\x4d\xc8\xf4\xd2\xd5\xab\xf7\xb5\xfe\xf4\xfc\xf9\xf3\xcf\x3d\xf7\x3e\xfc\x96\x03\x1f\x3f\x70\x60\x34\x37\x38\x4d\xde\x31\x3d\x7d\xe2\xea\x6b\x4e\x7c\xe9\xfc\xf9\xf3\x87\x9f\x7b\xee\x39\xda\x67\x57\xd0\x15\xc8\x14\x1c\x42\x49\x94\x06\x16\x5b\x08\x0f\x36\x20\xb4\x58\x50\xcd\x20\x18\x6e\x55\x9f\x91\x16\x0b\xcb\x57\xae\x2c\xcf\x1e\x39\x32\xfb\xd0\x43\xef\xcc\x49\xd9\x7d\x07\x43\x23\xd9\xb1\xf0\xd1\x78\x1f\x09\x8f\xe3\x4f\xf7\xaf\xbd\x7b\xad\x9f\xf4\x9f\xfa\xa1\x53\xfd\x97\x5f\xf7\x50\xeb\x03\x39\x3e\x44\xc2\x1f\x18\x1f\xcd\x96\x66\x5f\x97\xce\xcc\x28\xc0\xe8\x72\x05\x7f\xba\x9d\x15\x97\x47\xa8\x04\x16\x61\x8e\x59\x87\x65\x45\x35\x45\x95\x33\xc2\x9d\xc8\x28\x03\xbf\x91\x96\x32\xf6\x96\xac\x94\x9b\xd8\xf7\x61\x12\xe2\x73\x63\x57\x1e\xa2\x4d\xa0\x4d\xf9\xbc\x94\x9d\x2d\x89\xf4\x58\xf8\x4b\x59\x29\x5b\x3a\xf5\xba\xcb\x50\x3d\x81\xa6\x1c\x43\xbb\x79\x33\x76\xd1\xcf\x24\xae\x77\x28\xac\x57\xab\xbb\x0c\x81\xaa\x6d\xbb\x59\xff\x54\x86\x06\xcc\x42\x7f\x16\xef\x5e\xd9\xbc\x00\x9d\xcc\x5e\x7e\x0e\x99\xfa\xa6\xed\xfe\xeb\x0a\xc0\x42\x7d\x68\x14\xed\xc3\xbf\x8f\xff\x15\x64\x7a\xe4\x91\x82\x90\x69\x48\x72\x51\x69\x47\x59\x8b\x61\xa6\x6a\x07\x15\x03\xc8\x7f\xe7\x25\xac\x28\xa6\x29\x3c\x7d\x26\xc7\xa7\x8b\x2c\x12\xfe\x1e\x6e\x68\xe4\xa3\xfd\x91\xb1\x81\xf5\x60\xfa\x63\x91\xfe\xcc\x40\xeb\x6b\x23\x43\xdc\xc2\x6b\x9e\xf9\xe5\xf4\x7f\x87\x68\xf5\x4f\x8e\x14\xb8\xa3\xc1\x34\x46\xf4\xcb\xa3\xc1\x74\xeb\x97\xb9\xfc\xc8\xd3\x8d\xce\xac\xde\x44\x11\x88\x1d\x67\x36\x62\xc9\xd0\x7b\x1f\x69\x90\xcb\xac\x95\x15\x67\x65\xc5\xa9\xfa\x26\x32\xd5\x51\x5f\x5c\x59\x29\x97\x57\x56\xca\x5d\x1c\xe8\x1a\x8b\x20\x61\x28\x1d\xbd\x65\x9b\xbc\xda\x8b\xa7\x82\x85\x95\x15\xe7\xcc\x19\xa7\x6a\xdb\xb1\x48\xab\x49\x65\x14\x4c\x22\x31\xaf\xec\x33\x95\xd6\x9d\xca\x0a\x1c\x45\x0c\xb5\xf5\xef\x0b\x29\x33\xd4\x85\xae\x3e\x0c\x31\x17\xc8\x34\x05\xce\xa4\xc2\x8c\x89\x75\x0e\x84\x33\xce\x28\x89\x12\x56\xd4\xdf\xf8\xde\xaf\xfd\x5a\x9a\xd7\xec\x56\x5d\xb3\xd3\x3f\x77\xe4\x7b\x78\x2d\x15\x6e\x7d\x42\xe2\xac\xef\x1d\xf9\x35\xc2\xa7\x6d\x4c\x6c\x8d\x4f\x7f\xef\xc8\x17\x39\xa9\xf5\x02\x27\xed\x92\x57\xd7\x2b\x6b\x4c\xd0\x37\xd5\xec\x8a\x4d\xc4\x91\xb3\x67\xd6\x95\xab\x5d\xa2\xc7\xe4\xd9\x37\x9e\x55\xae\x3a\x0c\x3d\xfa\x9d\x01\x84\xdf\x0d\x28\x7d\x36\x7a\x10\xd0\x99\xdc\xc8\x18\x21\x29\x89\x74\xd5\x2e\xab\x6e\x80\x4a\x52\x2e\x1a\xa5\xa2\x90\xcc\x86\x74\x51\x72\xff\x7b\x78\x8f\x86\x0e\x68\x90\xb3\x41\x08\x5f\x01\xa4\x47\xaa\x49\xaa\x4a\xc9\xd4\x79\xd9\xe0\x70\x22\xca\x49\xd1\x7e\x29\x80\x47\xa6\xfb\xc3\x7d\x6f\xbf\x3c\x95\x10\x2f\x5d\xc6\x63\x59\x1c\x08\xf4\x05\x38\x1c\x89\x46\x12\xfd\x43\xfd\xa1\xd0\x74\x2c\x7e\x90\x0f\x4d\x29\x85\x70\x78\x48\x0e\xf7\xc7\x12\x5a\x8c\x2f\x68\x5a\x3c\xd6\xba\xf7\x46\x98\x58\xdf\x2e\x4f\xf0\xc3\xc1\xa1\x05\x63\x34\x12\xca\x8f\xc4\xe2\xa7\x7e\x78\x74\xec\xe0\xd4\x9b\xdf\x6c\x48\xc1\x50\x30\x18\xc0\xc1\x3e\x1c\x08\x07\x23\xa1\x81\xe8\x40\x69\xb8\x4f\x8d\x45\xb3\x52\x38\x12\x0c\x47\x02\xc1\xfe\x41\x49\x19\xea\xcb\x8e\x0b\x7d\xc1\x43\xa5\xbb\xe8\xeb\x22\x0a\xa0\x07\xd0\x3b\xf1\x57\xf0\xbb\xd1\x01\xf4\x43\x08\x61\x7a\x69\x7d\xf3\xe2\xae\x17\x27\x02\xd6\xa5\xa2\x2a\xbd\xd7\xc7\xc1\x59\x45\x7a\x8e\x24\xea\xf3\x0b\x00\x5c\x6a\x96\x8d\x85\x76\x74\x11\xa0\x82\xbf\x35\x87\x71\x30\xd0\x17\x08\xe3\x48\x64\x20\xde\x3f\xc4\x85\x43\xd3\xb1\xc4\x01\x3e\x34\x29\xf2\x85\x70\x98\x0b\x8d\x8c\x25\xe3\xec\x52\x13\xb1\x4f\x68\xa3\xd2\x99\x39\x32\x30\xc8\x6b\xb3\xe9\x54\x3e\x12\x50\xd2\xd1\xa0\xb6\x8f\x1f\x51\x34\x5c\x90\x82\x7d\xc1\x20\x0e\xee\xb8\xd0\xe1\x61\x7a\xa5\xc1\x40\x5f\x78\x30\x36\x0a\x57\x9a\x0c\x05\xb3\x23\x5a\x29\x9e\x54\x8a\xc9\xfe\xe8\xa5\x82\x14\x1a\x50\x92\xe1\xc8\x4c\x22\x34\x71\x9a\xad\x96\x04\x7c\x20\x5c\x9b\xb9\xda\xcb\x8f\xf0\x65\x80\x99\xa2\x04\x64\x0f\x82\x6c\xb8\x24\x80\x44\xbb\x79\xfb\xe6\xcd\x8b\x47\xcd\xec\xc8\xd0\x57\x35\xe2\x30\xd2\xe7\x17\x8d\x63\x17\x6e\xdd\xfa\xd8\x2d\x92\x1b\xe4\x3f\xe3\x38\x58\x24\x60\x69\x2d\xb9\x7e\x16\x8f\x15\x63\x0e\x58\x42\x81\xff\x30\xe8\x43\x0e\x07\x51\x42\x90\x0d\x49\xe2\x3a\xc0\x71\x1e\xda\x01\x52\x27\x7e\x2b\x79\xe5\xdd\xf8\xed\x99\xf2\xfc\x81\x8b\x37\xf3\x8b\xbf\xa1\x11\x67\x2b\x9b\xd5\xf2\xb9\xe4\x95\xa5\xc9\x62\x7e\xdf\xa1\x7b\x0c\x5b\xf8\xad\xe2\xd4\xd2\x2a\xae\xb4\xde\x9b\x29\xe7\x6f\x5d\x38\xb4\x6f\xf1\x81\xec\xbd\xff\x91\x90\xb3\xd9\x9c\x71\xec\xd0\xbe\x5c\x71\x6a\xe9\x4a\x32\x97\xd7\x10\xea\xef\xc2\x42\x1a\x44\x71\x68\x59\x01\xac\x56\x65\x53\x16\x24\xba\x11\xca\xa6\x6c\x08\xba\xa2\xaa\xde\x26\xc8\xd3\x05\xa9\x0d\xec\xf7\xf3\x81\xc0\x87\x6f\xc6\x82\xef\xca\x67\x97\x3e\x1c\x08\x7c\xf0\x5d\xc1\xd8\xcd\xa5\xec\x99\xe5\x2b\x57\xfa\xe0\xb9\x6b\x86\x47\x44\x8b\x0f\x89\x4b\x7d\x23\x0d\x71\x24\x6c\x89\x21\x7e\x29\x39\xd2\xfa\x65\x7c\x89\x2e\x4a\xf8\xad\x3e\x1d\x80\xb1\x6a\xf5\x53\xd9\x39\xc1\xec\xdd\xb2\x21\x79\x88\xdf\x6d\xb0\x11\x53\x92\xf9\x42\xd3\xe1\xd3\xc4\xb1\x89\x65\x69\x9b\x7c\xda\x86\x1d\xac\x61\x9b\xa4\x79\xc7\x01\x08\xb3\x34\xbf\x49\x88\x65\xdd\x45\xa8\xcb\x32\xe7\x67\xc9\x76\x23\x05\x25\xd9\xd0\x21\x5b\x5b\x36\x74\x49\x66\x07\x83\x1e\x03\xba\x45\x6c\x08\xde\x69\x12\x62\xdb\x8e\xa6\xd5\xeb\xcd\x66\xd3\x71\xb0\x05\x3c\x29\x1a\x71\x88\xd6\x74\x08\x40\x8e\x6b\x08\xc5\x5c\xd4\xeb\xbd\x50\x97\x5c\x0c\x2d\xc1\xf0\xf1\xa0\xfb\x58\x5c\x64\x1f\x17\x86\xc7\xf0\x82\x1d\xdb\xb6\x1b\x95\x86\xdd\xb0\xb7\xed\x46\xa5\xb2\x6e\x0b\xf0\xc1\xb6\x71\xcd\x6e\x7a\x4b\xe6\x7a\xa5\x42\x0f\x55\x19\xc7\x5b\x95\xb1\x3c\x76\xb7\xa5\x8d\xfb\x5f\x00\x1c\xed\x5a\xab\x5a\xc3\xa8\x55\x75\x70\xcd\xd9\xac\xd5\x6a\x35\x97\xeb\x15\xff\x0d\x78\xad\xb2\x54\x13\x33\x5d\x6e\xe0\x92\xce\xc9\x2a\x27\xab\x9d\x4c\x5f\x5d\x32\x75\xa9\x64\x4a\xff\x61\xf2\x38\x39\x3e\x35\x7c\x1c\xf7\xab\xd3\xa5\x7c\x5e\x09\x08\x97\xf6\x9f\xba\x7e\xfd\xd4\x25\x7d\x24\x9d\x2f\xe6\x5b\x5b\xa9\xd1\x7a\xa3\xa1\x6d\x34\xde\xfd\xee\x08\x59\xb8\xf1\xfe\x1b\xd6\x33\xcf\x3c\x33\x74\xfe\xfc\x0f\x00\x7b\x32\x8c\x04\x54\xc0\xdb\xf8\x65\xb8\xbe\x36\x7f\x87\x87\x5f\xaa\x8a\x1d\xe8\x7f\x43\xe7\xe8\x50\x72\xfd\xbe\xf8\x66\x56\xc9\x0a\x96\x55\x05\xae\x2b\x79\xdc\xd9\xb6\xb6\xb4\xaf\x2a\x59\xe5\xe9\x71\x25\xfb\x35\xf2\x1e\xfe\x90\x6c\xac\xac\x18\xf2\x21\xfe\x0d\x0d\x42\xee\x2e\x2f\x5f\x56\xb3\x2a\xf3\x29\xd3\xfa\xfe\xd2\x45\x02\xea\xf6\x29\x9b\x12\x5d\xb6\x05\xef\xa9\x08\xe9\x82\xcc\x99\x12\x97\xf0\x7c\xca\x82\x6c\x98\x9c\x6a\x9e\x55\xb2\xca\x8f\x6a\x67\xdc\x0c\x2b\xcb\x5a\xcc\x2a\xd9\x2c\x1c\xdb\xb0\xde\x9e\x55\xb2\x8f\xa9\x59\xd5\x58\x5e\xc6\xeb\xcc\x1d\x41\x9e\x1c\x57\xb2\x78\x45\xc9\x2a\xc6\xf2\xf2\xb7\x08\x79\x5b\x56\xc9\x76\x33\xe4\x25\x21\x96\xc2\x90\x05\x73\xef\xf4\xf5\x7a\xd5\x28\xef\xcc\x5d\x47\xf5\x7a\xfe\xc5\x5d\x13\xd7\x3b\xe8\x0a\x4c\xc3\xa4\x7a\x61\xa9\xa7\xf4\x2a\x55\x30\xcb\x78\x60\x24\x93\x19\xa1\xf2\x5b\x66\xa4\xe6\xac\x59\x2f\x65\x46\x5a\x5b\x23\x19\x2a\x1e\x8e\x64\xd0\x90\xaf\x1c\xf6\x2c\x8c\xa2\x31\xf0\x23\x4e\xa1\x19\xb4\x1f\x95\xd1\x21\xb4\x04\xa3\x8c\x53\x55\xd6\xd8\x84\xe7\xb1\x15\xe4\x85\x32\x76\x7d\xcc\x21\x08\xac\x15\xd9\x13\x49\x9f\x93\x44\x32\x2c\x1b\x86\xfb\x88\x5a\xcd\xe3\x86\xba\x86\x09\xbd\x90\x8a\xcb\x3d\x90\xc1\x8b\x9a\xa6\x69\xad\x4d\x42\x70\x7d\x24\x43\xc0\xa1\xbb\x95\x19\x01\x10\x98\xd7\x9c\x98\x7d\x7d\x33\xcd\x33\xca\x27\x32\x92\x69\xd5\x09\xa6\x4f\xb3\x93\x19\xa1\xcf\x33\xbd\x00\xb2\xa9\x11\x82\x86\x7b\xb8\x89\x47\x20\x9a\x93\x5e\x81\x8a\xa6\xd1\x3e\xb4\x80\x0e\xa2\x23\xe8\x28\x63\xd8\xd1\xbd\xbb\x0c\x2d\x77\x49\xb7\x82\xee\x5f\x82\x41\xc0\x83\xf3\xbc\x4d\xca\x45\x2f\xc2\x74\xfd\x20\x35\x60\x5e\x22\x24\x83\x6f\x80\x0f\xb9\x49\x08\x9f\xde\x6a\x42\xd3\x1d\xaf\xe5\xb8\xe1\x12\xd9\xd4\x59\xab\x81\xc8\xa4\xe5\x72\xb8\xb4\x9a\x69\xde\x76\x30\x5c\x04\x81\xe3\x70\x19\x9a\xcd\x2c\xaf\x1d\xfc\x46\x9f\xbc\xd4\x7b\x53\xff\xd9\x07\xae\x5f\xff\xc0\x75\x5c\xed\x08\xe5\x2c\x3d\xf1\xbb\xdd\xf6\x57\x0e\x9d\x45\x05\xfc\x2b\xee\x93\xe0\x63\x1a\x32\x55\x53\x0a\xd2\x27\x8c\x53\x4d\x4e\x36\xf4\x84\xc4\xa9\xaa\x8b\x25\xbc\x9e\x55\xb2\xc7\xb3\x4a\x16\x1f\xcb\x2a\xd9\xb7\x69\xda\x8f\x66\x95\xec\x7b\x35\xcd\xc1\x5a\x25\xa7\x64\xf1\x44\x56\xc9\xb6\xfe\xdf\xac\x9a\x7d\x6a\x19\xbf\x2e\xab\x64\x5f\xb3\x7c\xc7\x71\x7c\xac\x1e\x23\x28\x85\x4a\x68\xff\x2e\x99\x13\x92\x17\xbc\x1a\x64\xb4\x9b\x2a\xa7\xce\x97\x83\xa6\x54\xa4\x93\x95\xaa\x8b\x62\x9d\x76\xcf\x66\x3c\x45\x08\xd9\x74\x1c\x3e\xfd\x2e\xc6\xba\x69\x8c\xdf\x17\xec\x7f\x1d\xdd\x04\xd9\x81\x3a\x21\x6c\xd5\xd8\x72\x48\x2a\xee\x60\xf2\xe3\x0f\x1f\x5e\x4b\x8d\xdd\x87\x5b\x1e\x41\xa7\x4f\xa2\xee\x47\x23\x68\x02\x4d\x43\x74\xdd\xbc\x28\xe8\x0b\x8a\x2c\x04\x3c\xb3\x9d\x2e\x74\xab\x05\xc2\xbc\xa8\x1a\xcc\xa3\x10\x70\x4d\x1e\xd8\x8e\xa7\xc6\xb4\xf1\x1f\x05\x2d\x78\x6b\xdd\xa7\x2c\xc4\x53\xa2\xb1\x32\xb6\xf8\x15\x30\x7f\x60\x27\x15\x1f\xd7\xc6\x5a\xdb\x4b\xf4\xc4\x9f\xda\x66\xb8\x37\x7c\x9a\x58\xa9\x37\x8c\xad\x18\x53\x8b\xad\xbb\x87\x26\x27\x0f\xa9\xd0\x53\x04\x22\x5e\x22\x88\x07\x2b\x05\xa0\x06\x83\x01\xb1\xd8\x41\xd6\xa0\xfd\xe5\x33\xc3\x1c\x09\xea\x6d\xf3\xf5\x37\x26\xc7\xc6\x27\x27\x0f\x0d\xd3\x8a\x96\x88\x55\x53\x8f\xc3\x30\xa8\xd3\xca\x2c\x62\xfd\xd3\x43\x93\x93\xe3\x63\x93\x0a\x34\xe4\xdd\xb0\xc0\x32\x54\xfe\x2d\x87\xe1\x70\xf4\x22\x9c\x4e\x22\x84\x5d\x7c\x0a\xce\xc3\xa9\xd8\xd3\xc2\xfc\xc8\xf4\x74\x32\x39\x3d\x9d\xbc\xb1\xb8\x98\x49\x2f\x2e\xa6\xeb\xbb\x5a\x9c\x31\x9c\x93\x9c\x4e\xa7\x33\x70\x1e\xcc\x64\xae\x36\x65\xd1\x7f\x7e\x0d\x97\xb6\xa1\x08\x4c\xbe\x9c\xaa\x9a\xa6\x04\x1b\x89\x93\xba\x6f\x8e\x20\xf3\x05\x9c\x39\x74\x28\x43\xff\xaa\xac\xf8\x69\x49\xf3\x3c\x48\x8d\x06\x26\x38\x93\x61\x27\x68\xd3\x6e\xfd\x0d\xef\x59\x20\xad\x2d\x1f\xfb\x6f\x9f\x3b\x3f\xb0\x19\xad\x77\x3e\x96\x75\x5e\x0e\xea\xbc\xbc\xdd\x3c\x5e\x56\x5e\x8c\x0c\x0e\x46\xee\x82\x9e\xb6\x0e\xee\xcc\xda\xd5\xe3\xb3\xbf\x1a\x73\x0f\x51\x05\x8e\x2a\xe0\xad\xad\x36\xe2\xc7\x36\x0a\xc1\x5c\xcc\xb0\x90\xa1\x68\x8e\x53\x5d\x00\xdb\x46\xf6\x85\xb3\x59\xda\x9e\xc4\x67\x3f\x9b\x48\xf3\x75\xf8\xbc\x95\xe6\x5b\xff\x8f\x30\xf4\xd8\x63\x43\x02\x4e\x42\x8e\x08\x1d\xbb\xbf\x0f\xd8\x27\x69\x57\xd7\x64\x0e\x13\xdd\x14\xb9\xb6\x97\xba\x3c\x2f\x61\x72\xe6\x4c\x35\x12\xd3\x2a\xff\x78\x68\xa8\x11\x8e\x87\x1b\xe1\x30\x7d\x7b\xe9\xcc\x8a\x31\x18\xb1\xad\xe1\x91\x21\xf7\x48\x23\x1c\xa6\xeb\x30\xc3\x41\x7e\x19\x7a\xbc\x04\xbc\x94\x47\x76\x7a\xe0\x55\x98\xf7\xda\x1a\xba\x24\xea\x42\x51\x55\x03\xbd\x7e\x7f\xcf\x16\xf5\xd6\xa5\xe9\xe9\x25\x32\x7e\x75\x69\xe9\xea\x91\x13\x73\xda\x89\x58\xec\x70\xbf\x98\x18\x9e\xca\x4f\x2f\xcf\xf0\xbf\xbd\x44\xc8\xd2\x74\xf6\xea\x91\x23\x57\x97\xf0\x83\x10\xe5\xb2\x42\xe8\x0f\x9e\x5b\xa2\xc7\x7e\x68\xff\x7b\xd6\x0f\xf7\x8b\xf1\xd8\xe1\x58\x6c\x2a\x4f\x66\xf8\xd6\x5f\xfb\xbe\xfd\xaa\xcb\x55\xd9\xe7\xe2\xd6\x7b\x3e\xfe\xfd\x2c\xb6\x48\xdc\x81\x46\xe3\xc2\x0f\x72\x6d\xe4\x9c\x0e\xaf\x8a\x82\x9d\xbb\xe8\x9b\xe0\x55\xf8\x45\xd8\x92\xd5\x4f\xae\x8a\xb1\x88\x10\x19\xdc\x1c\x8c\x08\x91\x98\x88\x85\x6a\xd5\xf1\x69\xca\xc1\xa6\x5e\x2c\xea\xcd\xb1\xa4\x42\x6f\xb4\x28\xd2\xad\x92\xec\xd8\xec\x6a\x6e\x6b\x66\xa8\xbc\xa6\xca\xbd\xad\x29\x49\xed\xba\x0b\xed\x3d\xb3\xac\xeb\xf3\x55\xac\xe5\xef\xfc\x3e\xd4\xf2\x7f\x33\x8a\x9a\xa9\xe9\x58\x44\x8c\xc4\xee\x22\x78\x9b\x0e\xa7\xee\xa4\xb0\xb0\xf6\x35\x5f\x63\xbe\xe2\xd4\x3b\xad\xa8\x3b\x02\x0a\xa2\xd2\xdd\x16\xfe\x3d\x88\x07\x2b\x22\x83\xae\x6c\xa6\x64\x60\x55\x31\xcd\x36\xc2\x1f\xed\x0c\x49\xe4\x38\xb9\xa8\x86\x8b\x6a\x18\x56\xe7\xa2\x1a\x56\x19\x55\x85\x29\xce\x9b\xa2\xe3\x38\xad\x6f\x4d\x72\x42\x26\xcd\x5b\x8e\xc5\xa7\x33\x02\x37\x89\xf7\x97\x4a\x6b\xa5\xd2\x7e\x5c\xd1\xb4\x99\x29\xdb\x9e\x9a\xd1\xb4\xd9\x49\xf5\x41\x75\x12\x3b\xb6\xa6\xd9\xad\xed\x0f\x24\xb9\xc8\xc3\x0c\x93\xe6\xe1\x08\x97\xfc\x00\x8b\xa6\x12\xa6\xa7\x05\x32\x96\xc9\x8c\x21\x40\xf3\xea\xdc\x31\xaa\xf9\x4f\x31\xd9\x47\xec\x20\x07\xb5\xf7\x3d\x1f\x9d\x24\x14\x0c\x13\x2c\x4f\xd8\xa9\x1e\x81\x9b\x64\x57\xc1\x11\x12\x9f\xf9\xe4\xea\x74\x2e\x7f\x17\xe5\x73\xd3\x9d\xdb\xf4\xc3\xde\x0e\x9e\x29\xea\x2f\xe5\x48\x7e\x60\x20\x4f\x72\x2f\xe9\x2e\x73\x41\xdd\xc5\xfb\x1b\xef\x1e\x2d\xed\x51\xd2\xae\x90\x8e\x0c\x16\x9f\xe5\xac\xfa\xea\x21\xeb\xeb\x1b\x10\xc0\x12\x7e\x59\x97\x65\xfd\x65\xb7\x82\xbf\xe7\x6b\x0b\x00\xc6\x6e\x0d\xbf\x0c\x38\x2a\x28\x11\xd4\x4d\x80\x1a\x35\x45\xdd\xa0\xf3\x82\x5c\x0c\xcb\x9c\xa0\x1b\xa6\x17\x9d\xf6\x8d\xc3\x33\xea\x34\x99\x19\x9c\x3d\xb5\x34\x2e\x0e\x0b\xc1\x81\xe0\xa3\x44\x59\x63\xb4\xb1\xc7\x5a\xff\xb6\x4e\x9c\xdb\xc4\x32\xb4\x85\xa2\x10\x98\xbb\x7e\x7a\xf8\x5e\xf7\x99\x63\x73\x50\x03\x37\x11\x42\x02\x42\x09\x49\x15\x24\x41\xe5\x0c\xd3\xa0\x7f\xac\x0b\xa5\xdf\xfd\xe3\x3a\x59\x39\xa3\x6d\x6e\x26\xd2\x89\x3a\xb6\x6a\xc6\xe3\xf9\xbc\x20\xe4\xf3\x8f\x1b\x5a\xf5\xf1\xc1\x44\x62\xf0\xf1\x2a\x6a\x7b\xad\x6a\x68\x08\x90\x01\x98\xb6\x58\x00\x81\x51\x37\xda\xf0\x35\x35\x59\x07\x16\x84\xfa\x61\x06\x18\x5a\xd5\xe5\x86\x65\x61\xab\xb1\xe1\x80\xb9\x19\xe6\xd7\x65\x17\x51\x69\x10\xa1\x92\xa2\xa8\xa6\x14\x0e\x73\x80\x5c\x8a\x51\xe4\x43\x4a\xa3\xa1\x7c\x30\xfa\x51\xb9\xd1\x90\xeb\xdc\xad\xf1\x5a\x6d\xfc\xe6\xf2\xdb\x33\xb5\x5a\x86\xad\x77\xcb\xa0\xb3\x0e\xc3\xcc\x0f\xbc\x13\x9c\x6a\x4a\xa6\xca\xd1\x72\xd4\x50\x98\x53\xcd\x84\x6a\x4a\x27\xf1\x3f\xcc\x5c\x5c\x6f\xc8\x1f\x5d\xc9\xce\x44\x3e\xa4\x9c\xb8\x8a\x6b\x99\xc5\x4f\x2d\xfd\x42\x2e\x95\xc3\xdb\xad\x9b\x99\xfb\x2e\xd5\x32\x6f\x5f\xcc\x16\xb9\x5b\xe3\xe5\xab\x1f\x14\x66\x3f\xb5\xaf\xb5\x9d\x4b\x64\xdd\xb8\x09\xda\xba\x24\x42\xa5\xdd\x3a\x0b\x37\x7c\x9d\x55\xdf\xad\xab\x82\x5d\x91\x39\xfa\x2b\xe4\xb9\x74\xa2\xeb\x5d\xcd\xb8\x93\xa8\xc4\x62\x74\x3a\x38\xe1\x1b\xc4\xb6\x60\xea\xd0\xbc\x1d\x37\x5a\x27\x15\xbf\x8b\x3c\xdc\xf0\xd6\x1d\x51\x73\x49\xea\xdb\x3b\x7e\x2f\x59\x04\xb2\x6e\x54\x26\x1c\x70\x66\x39\x29\xb6\xd7\x66\x63\x1e\x2c\x1f\x6d\xf0\xd2\x22\x3e\x2b\x9d\xbc\x5a\x28\xbc\xe6\x94\x74\xb6\x9e\xe2\x99\x70\x10\x1f\xa5\x7b\xb8\xc2\xa7\xf8\x8f\x5c\x39\x14\xba\xff\xfe\xd0\xa1\x2b\xfb\x4f\x16\xd3\x2c\x21\x34\x15\xe7\xdd\x3d\xd4\x95\xad\x3a\x8c\x50\x42\x37\x0b\x05\xce\x75\x37\xab\x46\xe1\xe3\x5f\x51\x5a\xff\x15\x9f\xaa\x57\xef\xa2\x6a\x1d\x3b\xb8\xaa\x35\xd6\x09\x59\x6f\xb8\x32\x4d\x07\x09\x3b\xc5\xb0\x7e\x79\x7f\x8c\x5c\x7b\x1a\x06\x82\x0d\xda\x39\x64\x5e\x76\x64\xdd\x22\x04\x53\x2d\x33\x15\xb7\xe2\xa3\x96\xac\xeb\x72\x13\xe2\xa9\xe9\x6a\xfe\x9d\xf6\x2c\x7f\x00\xdd\x83\xce\x83\x8e\xf5\x3f\x31\xd7\x2b\x4c\xad\x35\x45\x21\x29\xee\xba\xfb\x7d\x17\x03\x6e\xf4\xce\xe8\x76\x3a\x31\xd2\xdf\x9f\x7f\x60\x2c\x4e\xdf\x56\xd9\xa7\xed\xb5\x97\xd8\x04\x02\xaf\x7f\xe9\x6c\x02\x9e\x01\xa0\x1a\x6c\x3a\xa2\x96\x18\x8c\x8c\x47\xa3\x25\x81\x8e\xad\x1d\x7b\x7e\x09\x10\xb4\xe5\x0e\x43\xbd\x0e\xd8\x0b\x30\xa6\x0c\xd9\x00\x53\x28\xe0\x8b\x19\x05\x6c\x0b\x82\x48\x6c\x4b\xd3\x2c\xd2\xb4\x36\x2b\x9b\x16\xd6\x30\xaa\x32\x38\x62\x51\xb0\x04\xd1\x6a\xdd\xa9\x54\xb0\x68\x81\x6c\xc7\x9e\x86\x20\x1a\x82\x88\x05\xb3\x20\x89\x30\x52\x54\x35\x2c\x24\x83\x85\x60\x18\xba\x49\xc5\xcf\x44\x5a\x2f\x47\x7e\x78\x41\xc9\x8f\x8c\x58\x0e\x76\x48\x60\x74\x64\x6b\x64\x34\x80\xed\x4a\xe5\x8e\x92\x4e\x1c\x4a\x24\x4e\x93\x34\x3e\xde\x7a\xfb\x88\x20\x8c\x74\xdb\x00\xf7\x23\x93\xca\x2f\xc8\x8d\xe4\xe3\x16\x4c\x97\x17\xc4\x7d\xe4\x98\x50\xcd\xb9\xf8\x23\x2e\xad\x35\xd5\x35\xa4\xa2\x42\x85\xfc\x85\xb2\x9e\x0c\x63\x71\x3a\x97\x9b\xce\x7d\x29\x97\xcb\x8b\xc3\xc3\xb9\xe9\xdc\xf0\xb0\x98\xa7\x1f\xf8\xc1\xdc\x74\x6e\x90\x17\xf3\xcf\x5e\xbc\x79\xf1\xe6\xcd\x8b\x37\xf1\xfb\x00\x57\xf2\x64\x61\x78\xb8\x20\xe6\xa3\x7d\x62\x3e\x2f\xf6\x45\xf3\x22\x7c\xce\x45\xfa\xc4\x5c\x4e\xec\x8b\xe4\xfe\xcb\xad\x0b\xb7\x2e\x5c\xb8\x75\xe1\x96\xbb\x0e\xbd\xe8\x5a\xb3\x8c\x4e\x14\x01\x07\x68\xa5\x1e\xd1\x36\xed\x5e\x1f\xac\x85\xe0\xf2\x8f\x79\x86\x46\x13\x3f\x01\x8e\x91\xaa\x83\x15\xda\xbe\xfc\x16\xe4\x75\x0b\x7c\x3a\x16\x8f\x45\x62\x62\xae\x38\x23\x61\xc2\x60\x84\xd6\xd7\x17\x87\xa5\x97\x00\xe1\xf1\x36\x86\x47\xaa\x96\xe6\xd7\xe8\x53\xff\x91\xbe\x9c\x38\x31\x34\x23\x32\xff\x1f\x71\xe7\x51\xc0\xba\xf0\x22\x38\xb1\x2e\x15\xa0\xc3\xb8\xb0\x2c\x73\x5c\x52\xd7\x41\xd1\x5f\x30\x4d\x55\x6e\x7b\x1b\x58\x98\x67\xab\x79\x32\x89\x0f\x47\x62\xc1\xb3\xb1\xd4\xc7\x13\x38\xf4\xdf\xa8\x82\x11\x1a\x3f\x47\x58\x20\x33\xc3\x00\xc1\x8f\x6a\x83\x91\x50\xe8\x39\x51\x0e\x86\x48\x9a\x8f\x46\x8d\x17\x5a\x4d\x16\xb7\xdc\x79\xca\x3d\x26\xb4\x3d\xb1\xfd\xb0\x63\x57\x6c\xbb\xb2\xde\x71\x71\x35\xe9\x67\xdb\xde\xee\xc9\xab\xfe\xc1\xac\x32\xa1\xb6\xaf\x9d\x79\x2c\x54\x2a\xdf\xb5\xbd\x16\xee\x48\xf3\xf3\x40\x74\xcd\xcd\x26\xed\x25\x86\x1d\xc4\xe0\xd8\x74\xd8\xd6\xe8\x3c\xcb\x66\xdb\xe3\x4f\xa6\xe6\x4f\xda\xa0\xab\xe3\x01\x1f\x58\x9b\xe9\xcd\xd7\x74\xee\x6e\xfd\xfa\xdb\x52\xa7\xe6\xa1\x97\x72\xee\x9d\xe2\xe9\x38\x67\x17\xc1\x41\xbc\xa0\x22\x1b\xf3\x2e\xf4\xa0\x75\xf1\xe6\xa3\xf7\xdd\xf7\xe8\x4d\x6c\xc3\x35\xdc\x5a\xb9\x73\xf6\xec\x9d\xf6\x33\xb8\x0d\x1e\x4b\x15\xae\xc2\x90\x61\xc8\xc9\xc9\x32\xc4\x39\x4a\xbd\x7e\x31\x78\x6e\xbe\xb5\xba\x4c\x94\x05\x85\xbc\x77\x41\x71\x7c\xe1\x57\xda\xf2\xea\xf2\xf6\xd2\x74\x5a\x51\xd2\xd3\x3f\xa5\xa4\xd3\x69\x4f\xad\xa4\x3a\xdd\xf4\xf2\xf2\x34\xa0\xdf\x7a\xfc\x52\x1d\x6b\x03\xe9\x8e\xe5\xf6\x83\xa6\x63\x77\x76\x61\x33\x0c\x4b\x14\xc0\x2c\x42\x7f\x93\xc5\xee\x23\x6f\x77\x93\xf1\x07\x7b\x74\xc1\x6c\x07\x33\xde\x24\x98\xce\x09\xea\x8a\x6b\x01\xbf\xb6\xe7\x75\x4c\xba\x4a\x93\x9b\x90\x26\xb1\xb8\x1c\xfc\x58\x2c\xb6\x11\x9b\x88\x35\x62\x29\x7e\x23\x1e\xc3\x55\x10\xb8\x1e\x8f\x4d\xc4\x36\x62\xb1\x46\x2c\xbe\xc1\xa7\x62\x20\x6f\xb1\x9c\x7f\xb8\x07\xd8\xe5\x51\x35\x5d\x2e\x2c\x99\xc7\x69\x88\xe3\xb2\x8c\x95\x15\xc3\xb2\xb1\x90\x2e\xa6\x2b\xf5\x95\xf5\x15\x07\x3b\x9d\xd5\x6c\x9b\x31\xf3\x75\x8d\x73\x81\x93\x18\x5f\x60\xc1\x94\x38\x6c\x03\x0e\x46\x9d\xf1\x74\xe3\xe1\xdc\xfc\xa8\x4b\xef\xd1\xd0\x1c\x87\x10\xc7\xd1\x2a\x89\x7b\x7c\xb8\xa5\x63\x08\x25\x44\xc9\x2c\x4b\xa2\xb7\xf4\xc3\x9a\x02\xb3\x48\x52\x12\xb9\x9f\xd8\xf7\xda\xb9\x68\x6c\x62\x92\x3e\xfb\x1b\xcd\x58\x64\x25\x12\x8b\xf5\x45\x70\xfa\xb5\xfb\xe6\xa2\xa1\x18\x7c\x6e\x6e\xd0\x2f\x27\x27\x06\x23\xbe\xf9\x9a\xb1\x86\xb4\x47\xbc\xe2\xe2\xab\x2a\xf3\x52\x30\xc8\x20\x66\x2c\x10\x8a\x8b\xdf\x3e\xd7\x68\x34\xe0\x69\x7e\x01\x9e\x79\xcb\x6e\xd5\xb1\xfd\xf7\x24\x33\x78\x75\x42\xb4\x22\x36\x38\x55\x90\x76\xcc\x23\x75\xfa\xcf\x9f\x0c\x40\xaa\x55\xb2\xde\xe5\xe7\x05\xfc\x02\x4f\x86\xa0\xe3\x77\x1c\xd8\x05\x8c\x3e\xdf\xbc\x6d\xb2\x48\x35\x37\x6e\x0d\xb2\xdf\xd8\x33\x4c\x36\xef\xa4\x15\xfb\x2e\xb2\x95\x34\x6e\xd8\x76\x03\x8e\x7e\x62\x7d\xfd\x8e\x92\x76\x6c\xdb\x49\x2b\x28\x80\x0e\xa1\x43\x78\x0b\xff\x0b\x17\x57\x17\x90\x65\x54\x53\x29\x9b\xe5\xb2\x18\xe6\xc2\x61\x8e\xea\xf5\x12\x3e\x92\x7b\x3e\xfb\xfc\xf3\xd9\x7f\x13\xe3\x53\xb9\xb3\xb3\x91\x5c\xca\xfa\xd4\xd5\x54\x6a\x03\x47\xdd\xe3\xa3\x56\x2a\x17\x99\x3d\x97\x4b\x8d\x64\xae\xa6\x4e\xa6\x6a\xe8\xef\x18\xaf\xca\x8b\x42\x63\x3e\x9a\xa9\x8e\x05\xc1\x94\x05\xbd\xaf\x23\x13\x79\x93\x0d\x6c\x5d\xf8\xf3\xb7\x80\xbc\x62\x19\xaf\x6b\x7d\x8a\x85\xf8\xad\x58\x74\xb2\xa1\xb3\x2f\xf0\xcc\x3c\x0e\x0f\xe1\x67\x8d\xf7\xc1\xfb\xd7\xed\x2a\x9d\x6f\xe8\xdf\x36\x9f\xae\x74\xc5\xcb\xb8\x96\x80\xff\x29\xdd\x1b\xb4\xe2\x57\xa1\x7f\x1b\x8e\xf1\xfd\x34\x70\x42\xda\xf8\x3e\x4d\xcf\x82\xb5\x1b\x4f\x50\x2f\xda\xab\xb3\x7a\x71\xf5\xa7\xf7\x15\x8b\xfb\x8a\xaf\xf1\xf0\x5e\xe9\xba\x50\x4f\x8c\x97\x4a\xe3\x89\xff\x52\xdc\x57\x28\xec\x7b\x63\x2f\xe6\xab\x5f\x2a\x86\x78\x5c\x55\x48\xcc\x33\xc3\x12\xc7\x15\x0d\x7e\xc1\x34\x25\x13\x5b\xce\x77\x07\xfa\x9f\x74\xde\x12\x84\x6d\xf5\x7f\xcc\xfc\x0f\x3c\x39\xd0\xfa\x52\x7f\x60\x6a\x66\x1a\x0f\xe0\x63\xb0\xe3\xcb\xaa\x64\x78\x63\x1d\x1b\xb3\x2e\xc8\x61\x8f\x8c\x4f\x36\xf4\xb2\xcb\xc1\xe7\xe5\x3b\xb9\xce\xd4\xfb\xa7\xa7\xb9\xb5\x7b\xb4\x7b\xd6\x38\x6f\xe7\xf7\x18\xd6\x15\x20\xfc\x5c\xf6\x7f\x01\x3b\x41\x37\x53\x03\xa3\x35\x64\xe1\xdb\x10\xe3\x80\x70\x82\x0e\x7d\x8c\x6e\x0f\x7f\xe8\x43\xc3\xb8\xd9\x7a\x6a\xd8\xb2\x86\x19\x1a\x19\xcb\xa1\x0b\xa2\x98\x8b\xbe\x53\x88\xbb\x98\xe3\x45\x29\x19\xe6\xb8\xd9\x00\x48\x77\x10\xe4\xb2\x9e\xe6\xe3\xa9\x74\xf1\x43\x56\x3e\x3f\x44\x4e\xad\xac\xaf\xd8\x1a\x66\x39\x56\x84\x3c\x5e\x2a\x0d\x2f\xbc\x83\x18\x2b\x2b\x6d\xe6\x0a\x7a\x9f\x46\x3b\xeb\x82\x42\xa7\xca\xa1\x00\xc7\xcd\xf6\x19\x0b\x77\x40\x0a\x8c\xbc\xe3\x4a\x6e\x9a\x0c\x8f\x84\x93\x0b\x6a\x1e\x0f\xe4\xe8\xc1\xfa\x95\xa5\xdc\xc5\x93\x47\xe2\x3c\x27\x9d\x38\x7a\x29\xb7\xe4\xf7\xea\xd0\x56\x32\x04\x7a\x4e\xd6\xcd\xb2\xaa\x2a\x1c\xd7\x36\xd5\x73\xec\x7e\x3f\x4e\xd6\x8c\xe7\xfb\xfb\x95\x7e\xee\x79\x4c\x58\xc4\xbb\x9d\xe2\x9b\x84\x3c\xdf\xcf\x29\x1c\xf7\xfc\x4b\xcc\xb3\x63\x63\x87\xdd\xe9\xbf\xad\x39\xa2\xcf\x17\x8d\x18\x63\xd1\xea\x2c\x8e\xd0\xcb\x6a\x10\xe6\xcb\x3b\xa4\x2f\xe6\x3c\x3a\xb3\x74\x85\xd0\x95\xff\x8e\x2f\x88\xdc\x59\xb3\xf2\xab\x4b\xd3\xcb\xd5\xa3\x6a\x5a\xdb\x19\xb1\xee\x21\x31\xf1\x5e\xfc\x78\xa9\x1d\x66\x64\x98\x05\x49\x15\x0a\x06\x46\x0e\xb6\x04\x62\x6f\x09\x02\xae\x08\x42\x6b\xd3\xb1\x6d\xdb\x71\x1c\x87\x54\xab\x75\xc6\x45\xfd\x6a\xb2\x39\xfa\xda\x52\x47\x04\xc5\x51\x06\xdd\x0b\x77\x98\x3d\x89\x6c\xf5\x92\xdd\xc7\x11\x76\x4c\x88\x3b\xa6\x9b\xb6\x69\x50\x61\xa1\xcc\xee\xa6\x2d\x8a\xd3\x73\xfe\x7c\x22\x95\x82\x17\x1d\x69\xee\xdb\xd6\xc4\x98\x35\x31\x36\x18\xd9\x8c\x0c\x8e\x4d\x58\xec\x05\x9f\xac\x89\x31\x6c\xa5\x79\x2a\xc5\xf1\xef\x85\x55\xf2\x3d\x60\x4d\xf9\x85\xec\x4c\xff\x68\x76\xba\x3f\x45\xa7\x8e\x54\xff\x74\x76\xb4\x7f\x26\x3b\xda\x3f\x9d\x85\xb9\x44\xcc\x4e\xf7\x8f\xa2\x00\x5a\x42\x22\xd8\x75\xd2\x74\x26\x01\xb4\x31\x70\x52\xcd\x77\x6c\xb0\x1c\x18\x66\x3d\xc3\xce\xbf\xad\xf5\x3f\x52\x54\xb5\x47\x83\x03\x41\x61\x58\x18\x5f\x3e\x35\x3b\x38\x43\x66\xee\x85\xc5\xf8\xe1\x71\x22\x7c\x76\xf8\xde\xeb\x73\x01\xa1\xa8\x13\xc3\xd2\x6e\x3b\xda\x4b\x4c\xf4\xf6\x3d\x0d\x03\x54\x8a\xf0\xe3\x6a\x77\x3d\x11\xae\x48\x72\xb9\xeb\x91\x20\x0c\xa9\x7b\x73\x97\x67\xa2\xf3\x8c\xc5\x60\xdd\x64\x4f\x83\xc4\x99\x2a\x27\x94\xbb\x0a\x5e\x0a\x87\x93\xe1\xd0\x70\xee\xe2\xa9\xdc\xa9\x40\x57\xf1\xaf\x0b\x85\x93\xe1\x30\xfb\x26\xd7\xec\xad\x04\xfb\xb2\x12\x10\x0e\xca\xaa\x6a\xe0\xc6\x27\x84\x03\x3f\x89\x1b\x2d\xe7\x27\x0f\x08\xdd\xad\xe0\x69\x3f\x96\xe7\x4d\x18\x08\x65\x77\x30\x18\x0b\x5d\xd7\xf8\xd5\x37\x67\xdb\xbc\x6d\x8f\xf8\x5b\xd2\x9c\x4d\xa4\x52\x89\x4f\xc1\x5d\x8f\xf3\xc7\x7b\x5b\xd2\x79\x96\xc2\x68\x10\x25\x41\x87\x11\x64\x20\x2a\x92\x0d\xa0\x44\x32\x74\x88\x3e\xd7\x81\x6d\x08\x37\x9c\xfd\x4b\xb9\x23\xbf\xe3\xec\x3f\x92\x5b\xba\xe0\xdb\x6f\xec\x38\xc2\xf6\xd9\x8c\xef\x49\x64\x19\x84\xf0\x42\x19\x64\x65\x15\x90\x07\x5c\xde\x1d\x17\xef\x04\xdb\x47\x35\xa3\xbc\xae\xcd\x16\x8d\xe2\x2c\x84\xea\x65\xcd\x56\x65\xb3\x5a\xab\x15\xf7\x07\x1a\x8d\xc0\xfe\x22\x04\x0d\x74\xb4\xd1\x10\x1a\x64\xf9\xed\xb2\xc1\xe9\xde\xec\x6f\xbe\x6a\x7d\xb4\x6e\x13\x9b\xfc\x16\xe8\x9b\x8b\x7b\x29\xa4\x4e\xad\x7a\x7b\x05\x74\xd2\xb9\xef\xa7\x90\x32\x3f\xd0\x36\xc8\xc8\x10\x8d\x9d\x48\x4a\x9c\x2b\xaa\x84\x3d\x59\x85\xa3\x4f\x01\x4b\x74\x5c\xf8\xee\xd4\x37\x06\xd3\xfc\x47\x46\xf2\x20\xa4\x9c\x5e\xb0\x0a\xb9\x34\x5f\xc3\xce\xc1\xa9\x6f\x0c\xc2\x0c\x94\x3d\x0f\x92\xcd\x29\x75\xe0\x5d\x7c\xfa\xf1\x61\x9f\x2f\x50\x04\x0e\x95\x59\x54\x66\x6b\xb5\x97\x47\xc3\x09\xba\xa9\x4b\xba\xa1\xce\x97\x83\xa2\x28\xf0\x05\x7e\xa1\x6c\x96\xe7\x39\x5d\x90\xbd\x06\x78\xa0\xb8\xd8\x39\xb6\xb4\x78\xa2\x20\x8d\x4e\xe4\x0f\xe7\xf3\xa3\x52\xa1\x8f\xcc\xb6\x2a\xb3\x84\xbc\xf0\xc5\x66\x33\x0a\x32\xdf\xb3\xa0\xd0\x7d\xf6\x79\x2a\xb7\x3c\x2f\x15\x46\xfb\xf3\xf9\xfe\xd1\x02\x9e\x1d\x39\x3e\xd3\xfa\x13\x3c\x3a\x73\x7c\x84\xaf\x55\x75\x1f\x4e\xb7\xdf\x5e\xce\xb9\x36\xe5\x7d\x1d\xa9\x4a\xd5\x0d\x99\xf3\xd9\x94\x13\x6d\x9b\x32\x24\xa8\xbb\x76\xe5\xa5\x00\xbe\xc4\x1c\x1b\xd5\xaa\xe6\x9a\x96\x9d\xcb\xab\xd3\xb9\x3c\xd1\xee\xd3\xf6\xe5\x73\xd3\x63\x86\x51\x03\x51\xe6\x1f\xd8\xb6\x6d\x6f\x74\x9b\x97\x09\x01\x03\x73\x66\x62\x24\xdc\xb5\x0a\x0f\x00\x02\x85\xaf\x76\x33\x19\x96\xf5\x76\xd5\x0a\xe8\x54\x26\x40\xbd\xc8\x9c\x28\x0a\xb8\xba\xf5\x5a\xa8\xfb\xc5\xf1\x74\x80\x55\x5d\x94\xf2\xc7\x17\xf9\xd7\x6f\x9d\x1c\x59\x3e\xda\xac\x56\xd7\xa0\xe2\xe1\x31\x25\x1f\xd5\xb4\x68\x31\x34\x21\xfd\xca\x54\x2e\x90\xcf\xe7\xf3\x81\xac\x06\x12\xb8\x80\x9b\xae\x7d\x7b\x12\xcd\xf5\xda\xb8\x15\x30\x72\x73\x5d\x36\xee\x84\x01\x18\xa5\xa6\x2e\xc8\x82\x6a\xbe\x7d\x71\xa6\x34\x4b\xa6\x07\x67\x4e\x8d\xef\x1f\x4e\x0e\xa4\x22\xdc\x4d\x4d\x79\x08\xe6\xc5\xba\x61\x3c\x6e\x3c\xfe\xb8\x61\xb8\xa6\xef\x4f\x4c\x5b\xa6\x36\x3e\x5a\x4c\x06\x67\xaf\x9f\x1a\x61\xb6\xef\xd6\x17\x4a\x46\x59\xc9\x5f\xcd\x97\x8c\x32\x42\x11\x1f\x5e\x5b\x6f\x9c\x10\xa0\x84\x7a\x69\xf7\x8c\x89\x97\x45\x03\x71\xee\x93\x09\xb9\xf6\x76\xa5\x52\xd9\x02\xc8\xaf\xca\x16\xa4\x25\x6f\x55\xda\x79\xc8\xfe\x0d\x46\x95\x0a\x02\x56\x6b\x56\x5f\x17\xb3\x59\xbd\xf5\x37\x4f\x64\xeb\xf5\xec\x13\x58\xd0\x9e\xa4\x3b\x4f\x02\x66\x40\x03\x57\x21\x0a\x04\x25\x74\xae\xb6\x55\xc5\xa4\xea\xd7\x82\x03\x80\x8b\x66\xca\xed\x94\x5a\x64\x6f\x32\x32\xd7\x66\x65\xd3\x8d\xe6\xa2\xa5\x34\x71\x15\x5b\xb4\x14\xd3\x94\x6a\xd5\x6a\xb3\x5a\xed\x6d\x87\x4b\x0e\xa6\x62\x44\xdb\xd0\xfa\x1b\xdc\xf7\x04\xd5\xa7\xb2\x4f\x6a\x4f\xfa\xea\x03\x66\x62\xaa\xf1\x71\x2a\x27\x71\x92\x29\xb5\x23\xcf\xaa\xe7\xce\x65\xbd\xd7\xcf\x43\x0b\xfe\x89\xef\x08\xb6\x3c\xb6\xdd\x7b\x01\xfb\xef\x59\xc6\x0a\x27\x61\xd5\x6c\xfc\x61\xf6\x2e\x7a\x22\xfb\x0b\xec\xed\x07\x92\xdf\xe3\x71\xfa\xd6\x80\xb7\xdf\x95\xaf\xe8\x72\x8b\x6b\x4f\x3c\x91\xf5\x5e\xf8\x09\xdf\x87\x6e\x3e\x3a\x2c\x31\xd9\x95\x16\x97\xc5\x36\xbc\xc1\x19\x75\xec\xe0\x7b\xbd\x33\x4c\x09\x03\xab\xdc\x35\x97\xfa\x0e\x70\x7e\x59\xbd\x1d\x66\x15\x88\x65\x63\x71\x64\x74\x0c\xc9\xe3\x01\xba\x8b\xc9\x3a\x5d\x66\xd7\x1b\xeb\x96\xb5\x8e\x6b\xeb\xd6\x96\xb5\xae\x6d\xac\x6b\x56\xc5\xd2\xd6\xf7\x2c\x47\x0f\x42\x9c\x0d\x94\x63\xb0\xb8\x35\x6c\x5b\xeb\x9a\xb6\x6e\x6d\x6a\xeb\xeb\x1a\xb6\xb5\xf5\xd6\xd6\xba\x66\xdd\xb1\xd6\xb5\x4d\x6d\x9d\x59\x69\x3d\xcc\xcd\x0e\x86\xa0\x51\x10\x42\x46\x41\xb0\x80\x33\x00\xfe\xb0\x43\xd6\x35\xad\x0a\x1a\x8f\x8d\x9a\xb8\x8e\x89\x17\xcf\x1b\xdf\x03\xa1\x9d\x99\x0a\x3e\x02\xdb\x6f\x33\x67\x13\x49\xfb\x00\x0f\xd2\xcc\xcb\x14\x44\x4d\x64\x63\xd2\x46\x5f\x40\x3b\xe0\xf9\xdd\xfd\xef\xf8\x7e\x78\x18\xb6\x0c\x2b\xe1\x23\xb0\x3d\xce\x8a\xc3\xa8\xe2\x8e\x59\xb0\x38\x0b\xb2\xc9\x44\x3f\x7d\xbe\x6c\xea\xed\x88\x38\xfc\xb6\xf9\x8d\x13\xca\x82\xb1\xb2\x62\x68\xc7\x06\xa7\x87\x1e\x5c\x3c\x79\xfd\xfa\xc9\x53\xec\xf0\xca\xfa\xca\x9c\x72\xe0\xf4\xf5\x0f\x5c\x47\x01\xf4\x31\x64\xe3\x6b\x60\x55\x18\x60\x48\x88\x92\x19\xa4\x6b\x3b\x07\x83\xed\xf8\xf1\x4f\xc2\x16\xff\x04\xbc\xb5\xfe\x35\xbc\x21\xf8\x9d\x85\xaf\xb9\x39\xbe\x10\xe5\xa6\x9a\x26\x7b\x8c\xd1\xf1\x2c\x9c\x45\xb7\xef\x80\xed\xaf\xc3\xb6\xe7\x79\x4b\xd0\xdf\xf0\x32\xcf\xd9\xf5\x7a\xee\x09\xed\x49\xdf\x63\xe7\xe7\xff\x88\xc2\x08\xd7\x0d\x9d\x97\x25\x4e\xdd\xce\x9e\xfb\x75\xf2\x9d\x73\x59\x07\x5b\xd9\x73\x5b\x77\xd1\xb9\xac\x03\xa5\x5a\xc0\x5f\x1d\x65\x4c\x8c\x60\x66\x53\x4d\x5c\x73\xb2\xe7\xbe\x43\x7e\xfd\x5c\xb6\xe1\x64\xcf\x61\xb4\x75\x2e\xdb\xf3\xc4\xd3\xf6\xf2\x3a\x6f\xd2\xc7\xbc\xd3\x04\xdc\xd7\xfa\x9b\x27\x5c\x4e\xc5\x67\x61\xdc\x44\x20\x97\x47\x66\x2c\x8f\x0e\x21\x38\xc2\x06\xbd\x73\x17\x65\xd9\xb8\x0f\xa0\x27\x80\x81\xd1\x3d\xbb\xc3\x36\x88\x6d\x42\xfe\xa0\x7d\xf6\x1f\x76\x9e\x12\x01\xd7\xf0\x7f\x72\x91\xd0\xd5\x9d\xac\x33\x54\x52\x29\x80\x24\x22\x95\xe7\x25\x53\xc2\x2e\xb5\x1c\x36\x41\x26\x79\x0c\xb6\x9f\x3d\xd2\xda\x3a\x32\x13\xdf\x9f\x3f\x9e\xdf\x1f\x6f\x7d\x1b\x6b\x54\x75\xb5\x7c\x04\x19\x57\x66\x56\x44\x71\x65\x66\x86\xdf\x3f\x32\xb2\x9f\x6f\xfd\x9e\x6d\x2f\xad\xae\xb2\xec\x3f\x26\x77\x05\x50\x08\x22\x50\x0b\xe0\xcf\xe3\x05\x93\x4a\x74\xb2\xc1\x26\x0b\x43\x97\xc4\x24\xa7\x96\x17\x54\xce\x14\x85\x24\x87\x13\x93\x93\x87\x1f\x7c\xf0\x29\xe1\x1a\x9d\x31\xae\x09\xbf\x95\x2b\xa4\x04\xa1\xb2\x3f\x1a\xfd\xc7\x53\xf7\xe1\xfe\xfb\xa6\x1e\x7c\xf0\x6d\x2f\xb0\xef\x5e\xb8\x3e\xff\xd4\x42\x4a\x5b\xd5\x2a\xfb\x53\xa3\xa9\x14\xac\x78\x5e\x2c\x0e\x0f\xd1\x91\x6d\x8d\x9c\x59\x19\xe9\xb0\x0d\xb9\xb1\xa8\x0c\x53\x44\x3b\x75\xfd\xfa\xa9\x93\xd7\xaf\xe3\x31\x4d\xd3\x18\xca\xc2\xaf\xde\x78\xff\x8d\xeb\x1f\xb8\x6e\x55\x6d\x4d\xdb\x25\xee\xbe\x44\x45\x5f\x95\x13\xd5\xa4\x04\x0f\x45\x1b\xbb\x1a\x9d\xbc\x51\xfa\xce\xbe\xb7\x94\xbe\xb3\xef\xe0\xc9\x76\xce\xdf\xc9\x83\xfb\xbe\x53\xaa\xd3\xcd\x8d\x7f\xe8\xae\x13\x3b\x4b\x74\x03\x9e\x13\x6e\x6c\x74\x7b\xae\x7f\x66\xe2\xc6\xc9\xc3\x33\x8f\x1c\x9e\xf9\x8b\x89\x1b\x71\x28\xf0\xa7\x66\x0e\x9f\xbc\x31\xd1\xfa\xed\x89\xbf\xa0\x3b\x1e\xb7\x7a\x9f\x4f\x4b\xfc\xdb\x89\xa3\xe0\x46\xef\x8c\x62\xf2\x8a\x6e\xb2\x76\x14\xd2\x36\xb0\xf2\x16\xba\x99\x7e\xdb\x26\x33\x77\x3d\xe7\x38\xb6\x4e\x74\x52\x6e\xa8\x7a\x20\x90\x4d\x92\x7b\xd7\x71\x69\xe6\x8d\xd5\x3b\x77\xba\xf3\x6e\x08\x21\xe4\x33\xf0\x15\xea\xa9\x49\x7d\xe5\x9a\x82\x6c\x49\x92\xe8\xf2\xb4\x5b\x7d\xff\x4c\x5a\x58\x90\x16\x16\x44\xfa\xda\xb5\xd6\x56\x93\x9d\x01\xaf\xb6\xbe\xc2\x50\x96\x98\xec\x22\xc8\x46\xe8\x95\xae\x15\x16\xa2\x0d\x8c\x76\x56\x2e\x6c\x35\x35\x6d\x7d\xb7\x5a\x6b\x84\x74\x59\x80\x33\x7e\x0b\xf0\x2e\xac\xd6\xef\xe2\xcd\xd3\xe3\xe3\xa7\x4d\x7e\xb9\xda\xc5\x9a\x7d\x6a\x5f\xf8\x9e\x7b\xc2\xfb\x4e\x95\x7e\xa3\x9b\x99\x3b\xe0\x8b\xa7\x8d\xbb\xf6\x0b\xb3\xcb\xde\xc2\x0c\x16\x7f\xd5\xb1\xb3\x38\x6b\xd6\xed\x2e\x0b\x4b\x37\xbe\xb5\x84\x94\x8e\xa4\xdd\x9b\xd5\xdb\x89\xba\x54\x55\xb3\xac\xe3\x1f\xf7\x65\xf2\x3e\xc0\xcc\x97\x90\xa8\xd9\xfa\x8a\x38\xf4\x23\x3f\x32\x94\x7c\xd9\x37\xd2\xd8\xeb\xb7\x59\x0f\x25\x3e\xfb\xd9\x84\xe7\x79\x63\x96\xb7\x71\x26\x57\xbb\x8c\xc1\x3d\x6c\x5f\xcc\x7f\xa9\xd2\xaf\xc2\x82\x50\xc0\x42\x51\xc1\x8d\xf8\x58\xdc\xa6\xa3\x76\x9d\x6e\x72\xd3\x39\x63\xf2\x80\xd0\xba\x83\x37\x02\x5c\x9d\xe1\x0d\x0e\x46\x6c\xaa\x58\xd9\x91\xc1\x3c\x55\xb8\xd6\x0e\x4c\x86\x13\xe3\x16\xde\xf8\x17\xd8\x77\xff\xc7\x50\x0e\x15\xa9\x76\x51\xda\xd5\x6d\xc0\x31\x9f\x82\x2a\x98\xaa\x60\xb6\xa7\x3a\x98\xf8\x70\xbd\xdb\x97\x30\x37\xf7\x43\x73\x91\xc1\x89\x60\x32\x99\xbc\x3a\xbc\xb8\x38\xbc\x3f\x7a\x64\x76\xf6\x48\xf4\xc5\x1e\xdf\xc2\xdc\x83\xfb\xe7\x22\x7d\xb1\xff\x6b\x32\x79\x73\x32\xf9\xb6\xe1\xc3\x87\x87\xf7\xdf\x47\x4f\xbc\xcf\xb3\x6a\x6e\x43\xab\xe4\xef\xd7\x22\x06\x86\xbb\x57\x23\x6c\xbb\xba\x47\xc5\x6b\x56\xc5\xaa\xf6\x46\x1b\x4e\x53\x8d\x5a\x91\x0d\x37\x1e\x94\xbe\x73\xaf\x54\x3b\xb6\x94\xf4\xf4\xb2\x76\x65\xe9\xe2\x4d\x61\xd7\x06\x60\x94\x56\xc8\xf2\xf4\xd2\x15\x72\xf3\xe2\xca\xee\x0d\xf1\xcf\x00\xf4\xfe\x1f\x62\x78\x08\x7b\xdf\x7f\xfe\x15\x5b\xf4\x11\x31\x2b\x5c\xa5\x55\x00\x9d\x68\x6e\x3a\xbf\x7b\xbb\xea\xd1\x61\x51\x1c\x8e\x76\xc6\x46\x54\xcc\xe7\x45\x3a\x43\xee\xde\xc6\x00\x42\xe8\x1e\x78\x3a\xc6\xd1\x24\x42\x25\xd7\x77\xa6\xa8\x8a\x61\x28\x45\x4e\x70\x11\x7f\x55\x65\xc1\x2c\xe7\x4b\x2c\x9a\x9a\xce\x53\xf8\x7b\xe1\xb0\x11\x8e\x87\xc7\xc6\x63\xb3\x6f\x9c\x8d\xe5\x53\xe1\x78\xd8\x08\x87\x1f\xc1\xc5\xd6\xf7\xf2\xce\xca\x9a\x23\xd4\xfe\x11\x3b\x94\x1e\x0a\x0d\x1d\x1b\x1e\x3e\x36\x1c\x1a\x1e\x65\xbf\xb9\xfe\xbe\x15\x27\xbf\xe6\x08\x1b\x5d\x59\x8f\x8c\x8d\x82\x16\xff\x4a\xfd\x10\xa4\xd3\x54\x8d\x10\x71\xd7\xcb\x1f\x25\xb8\x51\x7b\xeb\xee\xd7\x8a\x07\x6a\x35\x16\x5b\xe8\x67\xec\x4c\x75\x22\x21\x7a\x41\x69\x12\x26\x76\x88\x40\x04\x52\xf7\x72\xab\xf1\xbb\x40\xbb\xa3\x1a\x5c\xdb\xad\x84\x1c\x5f\xbe\x36\xcb\x77\x00\xfd\xb9\x97\xf1\x31\x61\x62\x41\xd3\xb4\x5a\xa7\xac\xed\xf5\xf5\x0a\x21\xd8\xf2\x17\xe5\x43\xd4\xde\xb5\x7d\x3d\xc6\xe6\x2a\x43\x48\x13\xdb\xd3\x1f\x83\x32\x25\xa4\xe1\x9f\x02\x83\x5d\x65\x0a\x1d\xff\x6c\xa2\xbb\x34\xda\xbe\x46\xa7\x28\x62\xdb\xb4\x7d\xa8\xc7\x5e\xed\xf1\x76\x0e\x41\x5e\x24\xd5\xc4\xc1\x4e\x24\x51\xa1\x20\x31\xdf\xc9\x8d\x12\x54\x13\x23\xdb\x3e\x79\x23\x93\x1b\x5e\x31\xdc\x37\xdb\x76\x2c\xbb\x62\xdd\x38\x39\x3f\x95\xcb\x14\x8c\x15\x4c\xda\xbb\x96\x5d\x41\x41\x74\x04\x1d\x01\x99\x34\x86\x64\x88\xb3\x6b\x27\x5b\xa9\x9c\x0b\x93\xc3\x19\x65\x90\x40\x24\x10\xf8\x8d\x05\xd3\x04\x14\x46\x5c\xd7\xf5\x74\x7e\x58\x99\xfb\xf3\x0c\xbe\x90\x99\x1f\x1d\xed\x8f\x7c\x66\x58\x99\x73\x74\x3d\xfd\xfa\x70\x34\x97\x12\xe9\x09\x27\xf6\x69\xb9\xec\xf8\x82\x32\xe7\x64\x33\xad\xcf\x65\xe6\x87\xc2\xd3\xc1\xd0\x67\xd8\x11\xf6\x6d\x20\x9c\x1f\x0e\x75\xc9\x2a\x71\x24\x02\x17\x0d\x30\xdd\x02\x7e\xa2\x51\x66\xed\xa1\x0a\x98\x0a\xa4\x08\xed\xe6\x6c\x6b\xf5\xf9\xf9\xd3\x07\x94\xb9\xd2\x3e\x5b\x6b\xb2\x1d\x67\x7e\x7e\xdb\x71\x1a\xfa\xfc\xc9\xc5\x07\x87\xa6\x07\x8f\x69\x46\x69\xce\x69\xdd\x21\xa4\xea\xfb\xac\xcf\x23\x1f\x0f\x32\x43\xd5\xa5\x12\xbc\x0e\x98\xba\xbb\x00\xcf\xdb\xb6\x6d\x69\x15\x1f\xfa\xfc\x76\xa5\xb2\xbe\xee\xec\x42\xf4\xea\xda\x58\x6a\x80\x79\x3d\xc6\xb2\xc8\xda\xcc\x14\x8a\xaa\xf3\xb2\x00\xac\x67\x3a\xc7\x02\xe1\x65\x81\xbe\xbb\x51\xf1\x32\x86\x95\x7a\x26\xc8\x1f\xdd\x4a\xf1\x29\x7e\xfd\xa1\x67\xb5\x5b\x17\xd2\x8a\x05\x2e\x02\x7c\x27\xc5\xb7\x6a\x7c\x8a\x68\x58\x70\x06\x82\x1f\xe5\xd3\xdb\xcf\x5e\xbb\x70\xcb\x51\xd2\x1b\xab\x4b\xd3\xcb\xff\x87\xc8\x7c\xe1\xb6\x04\xd0\x83\x80\xb5\xb3\x5b\x13\xae\x65\x27\xe4\xe5\x78\xd9\x9b\x2f\x0e\xc5\xe3\x43\x0d\xba\xf9\x2e\x11\x08\x69\x55\x49\x95\xb8\x29\xd7\xf1\xa1\x16\x7c\x81\xad\xa1\x78\xab\xb9\xb5\x55\x77\xc8\xd6\x16\x71\x9c\xae\xc8\x04\x98\x0f\x38\x00\x21\x30\x7b\x5c\x45\x76\xbd\xee\x74\x24\x97\xfa\xf1\xe3\xf5\x13\x5f\xec\x91\x5d\x3c\xdf\x5d\x14\x50\x0a\xcf\xd1\x71\x48\x3b\x07\x44\x70\x53\x17\x3b\xf3\xa4\x6b\x2e\x65\x1b\xd7\x96\x2b\x95\x8d\x05\xf3\x15\xd7\x9c\x26\x9f\x7a\x43\x5f\xa5\x45\xf0\xd3\xab\x0f\x3c\xfd\xf4\x03\xb9\x42\x9a\x27\xb1\x08\x71\x22\x83\x42\x2e\x3a\x3d\x27\x64\x85\x07\xfc\x32\xc8\x51\x2d\xc5\x8b\xaf\x1f\x11\x8f\x3e\xf4\x05\x6e\x88\xfe\x60\xf5\xe9\x68\x99\x4f\x6b\x91\x41\x6d\x30\x62\x8d\xcf\x1d\x1f\xfa\xe5\x5d\xd7\x1f\x3a\xb6\x35\x40\xbc\xaf\xc2\x7a\x2c\x22\x14\x0f\x87\x15\xa5\x5c\x16\x39\x37\x6b\xa4\x24\x14\x0c\x7d\x5e\xac\x2b\x0b\x0a\x56\x16\x94\x77\xe1\x4d\x67\xd3\xc1\x9b\xad\xed\x86\x3c\x8f\x79\x38\x86\x95\x9b\x1a\x21\xeb\x9a\xa3\x23\x58\x2f\xaa\xf8\x8f\xf1\xcf\x77\xca\x83\xe2\x44\xce\x0c\x71\xaa\x20\x1b\x25\xae\x64\x4a\xa2\xf8\x2b\xfb\x74\x91\xdf\xa7\x8b\x3f\x3f\x8c\x6b\x43\x0f\x6d\xe2\x7d\xc3\xad\xbf\x9e\xf9\x7c\x31\x8b\xf7\xc3\x61\x7e\xdf\x1b\x26\x7f\x72\xb2\x58\x5c\xeb\x9b\x7c\xdd\xdb\x8e\xc5\xac\x36\xf2\x54\x15\x45\x21\xff\x6d\x1e\x94\xcf\xde\x98\xa2\x96\xe6\x8f\x28\x72\xb6\x36\xbc\x70\x22\x17\x3d\xe8\xcf\x01\xbd\x29\x47\xd7\xd3\x30\xc7\x9c\xc1\xe0\x8a\x96\x24\xb3\x2c\x96\x92\xa2\xee\x82\x06\xeb\xf8\x8f\xb9\x68\xec\xc2\xbd\xb5\xb4\xe2\xac\x64\x06\x4e\x8f\xc6\x52\xad\xc7\x94\xb4\xe3\x4c\x2f\x69\x1f\x8c\xa5\xc3\x13\x35\x25\x5d\x77\x46\x6b\x03\xa1\xfe\x1b\x20\x70\x34\x3c\x29\xaa\xd9\xae\x81\x45\xa6\x18\xed\x3a\x44\x41\xe8\xaa\xe1\x45\x2a\x2c\xae\xd1\x1a\xaa\x7c\xaa\xb5\x05\xa5\x2f\x13\x27\x3e\x16\x87\xc2\xd3\x7c\xcd\x71\x8b\x66\x25\x7f\x16\xa2\xb4\x0a\x08\x25\xfc\xa5\x88\xb4\x0e\xd3\x57\x09\xa7\xcf\x8b\x55\x25\x6d\xdb\xd3\xcb\x04\x2f\x07\x13\xc3\x6b\x82\xc3\xea\xd0\xb2\xb1\x84\x2b\x1f\x35\x5a\x9f\x1c\x96\x2c\xdb\xad\x67\xb8\x1d\xb3\xf9\xef\x20\x06\x91\x4a\xc4\x12\xf4\x8e\xaa\x2a\x65\x53\x2f\x4b\x92\x68\x0a\x61\x55\x92\x04\x38\xa6\x4b\xa2\xa8\x07\xe8\x6d\x95\x44\x31\x8c\xaf\xbe\x3d\x7f\xdf\x4f\x4a\x72\x68\x3c\x28\x25\xb0\x38\x2c\xef\x5b\xd8\xb7\x24\x3e\xbc\x31\x79\x38\xac\x69\x5a\xdf\xc4\xe8\xf2\x58\x38\x29\x0f\x0d\x71\xc9\xc6\x5a\xde\x1a\x97\xde\x99\xcc\xf7\x05\x63\x99\x52\x74\xb6\xbf\x78\xc5\x26\xba\xfa\x8d\xaf\x49\x39\x9c\x48\xca\x63\x5c\x74\x40\x1e\x83\x55\xdb\xc0\x75\xbc\x05\x5e\x02\x0d\x66\xdb\x0e\x88\xb5\x44\xeb\x16\x8a\xaa\xa0\x73\xbe\x6e\x28\xbb\x96\x2a\x5c\xcf\xad\xbc\x29\xad\x8c\x27\x70\x62\x24\xcb\x1f\x4c\x2f\x1d\x38\xf3\x65\xb7\x63\xe7\xc0\x6a\x75\x7f\x6e\x45\x49\xbf\x3d\x31\x3e\x52\x48\x8c\xce\xcd\x5d\x10\x58\x6f\x08\xcc\xa0\x85\x7c\x36\x00\xb6\xca\x4f\x76\xc7\x4c\x99\x0c\x5e\x6a\xf7\xe8\x19\x58\xa6\x35\xed\x0e\x9d\x38\x7a\x23\x67\xf0\x8a\xa6\xad\xc1\xeb\x76\xba\x2b\x72\x86\xaa\x72\x6d\x7d\x84\xb1\x75\x8c\x83\x35\x29\xb4\x4b\xc8\xb1\xce\x54\xd1\x46\xad\x86\x11\xa3\x69\xf6\x92\xce\x5e\x38\x39\x6c\xdb\xc3\x27\x31\xa9\xd8\xa4\x13\x55\xcc\x84\x97\x78\x8a\x7d\xc9\xf4\x1e\x96\xd3\x46\xeb\x49\xd3\x55\xdc\x08\xed\x45\x04\x6d\xb7\x2b\x61\x5c\xd0\x10\xa2\x2c\xd8\xf5\x2d\x7f\xf9\x8c\x0f\x3a\x9e\xfa\x5f\xe4\x97\xa6\x65\xd6\x76\x2f\xaf\x83\x8c\x95\x74\x9f\x76\x0e\x8c\xb3\x1d\xcd\x18\x57\x46\xd2\x2b\xeb\x2b\xe9\x11\xac\x55\x34\x5c\xcd\x8c\x3c\xbe\x62\x59\x2b\x8f\x8f\x64\x6c\xdb\xf6\xe4\xc9\x46\x9b\x91\x69\xaa\x13\xb7\xe7\x4d\x18\x09\xd9\x90\x4d\x36\xa6\xe4\x50\x17\xfc\x15\x7e\x0b\xf8\x9a\x7f\x17\xb6\x2f\x5a\x56\x79\x20\x1b\xc8\x0e\x94\xad\xd6\x77\xf3\x69\xde\xe2\xd3\x79\xec\x00\x51\x79\x0a\xb6\xad\x9f\x74\x5e\xc8\x66\x5f\x70\x6e\x03\x8d\xfd\xe3\xb7\xa1\x9f\x6d\xbc\x8d\x3f\xe1\xe2\x1a\x22\xb3\x3c\x2f\x71\x4a\x91\x93\xe8\xbb\x5a\xce\xc3\x87\xea\xd2\x2f\x1d\xd1\xa6\xdf\x39\x4d\xd2\x67\xd3\xd6\xf6\x35\x9c\x78\x88\x5c\x7c\xf9\xe2\xf6\x91\x23\x64\x7a\x9a\xa4\xd3\xd6\xf6\x43\x0f\x91\x0b\x17\x3a\xa8\x43\xcc\x2f\x47\xba\xa3\xd7\x54\x41\x87\x75\x44\xda\xc1\xff\xcf\x42\x6f\x5d\xe7\xf1\x95\xf7\xa8\x65\xf5\x2b\x1d\x28\x22\x61\x79\x75\xb9\xce\x5c\xc8\x4d\x42\x32\xaa\x7a\xb2\xc3\xdb\x43\xa6\x97\x97\xa7\x7d\x9c\xd8\x9b\x6d\x4c\xee\x49\x7a\x25\x12\x17\xe6\x74\xc0\xda\x36\x61\x5b\x28\x97\x25\x4e\x09\x73\xa5\x79\x21\x28\xb8\x9c\xaf\xa6\x59\xae\x5a\x0f\x8e\xed\x2f\x6d\x0d\x0c\xc7\xf2\xa3\x44\xdd\x3f\x70\x42\x6f\x69\x8b\x3f\x7b\x21\x75\xe4\x89\x19\x9c\x18\x58\x08\x8e\x0e\xc7\x53\xa1\x47\x83\xdb\x56\xf0\x48\xb8\x34\x10\x5d\x1a\x19\xd5\xd4\xe4\xe1\x94\xbe\x38\x37\x74\xb0\x7f\x6a\xc6\x89\xb6\xfe\x0c\x0f\x25\x53\xf1\x81\xe8\x5f\xf7\x23\x5f\x4e\x97\x40\x25\x84\x84\xa0\x42\xca\xb3\xbb\x7a\xaa\xac\x0f\x00\x14\x80\x75\x80\xa9\x9a\x5f\x52\x43\x8b\x53\xd3\xcb\x02\x9f\xfe\xfd\xc7\xd4\xb2\x8a\x03\xe9\xd1\xfe\x30\xbd\x7a\x69\x3a\x8d\x9d\xb4\x3a\x59\x5e\x9e\x26\x29\xfe\x97\xff\x03\xbd\xfc\xd6\x87\xd3\xa3\x81\x14\xbf\x95\x8a\x91\xb4\x37\x76\x9a\x80\x02\x4d\x57\x1b\x02\x9e\x04\x48\x76\x37\x64\x21\xdc\xc9\x59\x74\x43\xaa\x60\x0a\x32\x00\x55\x07\x30\x5e\xab\x96\x55\xaf\x0b\x36\x20\x94\x0e\x6e\x69\x9b\xca\x82\x42\xf8\xf4\x46\xc5\xb2\xb6\xf9\x34\x6e\x5a\x16\x21\x5b\x96\xe5\x80\x05\x54\xd7\xd2\x8a\x92\x4e\xf1\x70\x2f\x08\x43\x99\x12\xc0\xf3\xd6\x84\xc8\xfb\x0c\xcb\x29\x57\x7d\x88\x07\x21\x59\x75\x23\xaa\x55\xbd\x76\x86\xe4\x6e\xe0\xdb\x63\x8b\xe5\x7b\x56\x9f\x56\x0e\xe3\xca\x99\x8f\xc0\xde\xc3\xb9\x6d\xed\x8b\xad\xb5\xcc\x61\xe5\xe9\xd5\x7b\xca\x8b\x1f\xff\x08\xbc\x5f\xf7\x5b\x6e\x82\x60\x15\x37\x64\xa1\x6d\x83\xac\x6e\x25\xc0\x4e\xb8\xad\x69\x77\x98\x6d\x30\x80\x9a\xc8\xc2\xc4\x8d\xf3\x02\x0b\x73\xd2\x7d\x86\x9a\x95\x0a\x44\x64\xe0\xc6\x5d\xf4\x06\x78\x18\xba\xb2\xac\x23\xc0\xbf\xae\x87\xc3\x1c\x2f\x8a\x92\xac\xf2\x8a\xb2\x50\xc6\xe2\x97\xb9\x37\x9d\x3d\xfb\x26\xee\xcb\xe4\xbe\x47\x1f\xbd\x73\xf6\x4d\x1c\xde\xe4\xde\x74\xf6\xcb\xad\x4a\xff\x53\x9f\x7c\xca\xa7\x63\xf5\xa1\xa8\x67\xdd\x2c\x9b\xb2\x92\x14\x25\x3e\x6c\x0a\xfa\x6c\xdb\xb8\x29\x1c\xba\xcc\x7d\xb8\x51\xb1\x96\x1f\xf9\x30\x77\xf9\x17\xa0\xd5\x57\xb8\xcb\x87\x2a\xef\x5e\xeb\xc7\x97\xfa\xfb\x3f\x7c\xe8\xb2\xce\xae\x20\xd8\x85\x2b\x9d\x42\x28\xee\xb6\x3f\xdc\x99\x0b\x74\x66\xde\xfd\x83\xc5\xca\xe1\xc3\x95\x7e\x78\xa6\x9b\x93\xe3\x63\x93\x93\x63\xe3\x38\x45\x8f\x2d\xde\x84\x99\xe0\xc1\x03\x93\xea\x21\x95\x61\x73\xbe\x15\x70\x02\x20\x32\x48\x94\x64\x45\x75\xd3\x58\xda\xd0\x13\x26\x6e\x1e\x2d\x71\x24\x9c\xaa\xd8\x4e\xfe\xb6\x7d\x64\xd1\xbe\x77\x31\x7b\xfa\xea\xeb\x4f\x1d\xc1\x6f\xba\x77\xf1\xb4\x3e\xfb\x50\xc5\xc9\xdf\xae\x9c\x3c\xb1\x90\xb5\x2e\x1c\xef\x94\xf9\x1c\xe2\xdc\xa8\x13\x89\x53\x57\xf2\xb7\xed\x9f\xca\xbe\x68\xbf\x35\x7f\xbb\xb2\x99\xfd\xad\x8a\x17\x1f\x1a\x40\x28\x03\xf8\xde\xc8\xe5\xe4\xf2\x40\x73\x01\x4e\xc4\x9b\x23\x81\x25\xa8\x3d\x29\xd0\x0f\xa6\x24\xce\x9b\xa6\xca\x1e\x51\x09\xf0\x02\x9d\xb4\x92\x2a\xc6\x66\x67\x63\x72\x6c\x66\x36\x56\x4c\x29\xe9\xaa\x76\x4e\xcc\x8a\xc9\x58\xa4\xb5\x19\x89\x25\xa4\xac\x28\x49\xc2\x92\x20\xad\xf0\x69\x6e\x62\x82\x4b\x61\x4b\x49\x17\xf8\x14\xfd\x09\xfd\x4b\xf1\x85\xb4\x42\x48\x4d\x1c\xbc\x46\x05\xcb\x6b\x83\xf4\x74\x41\xfa\x52\x9a\x1f\x18\x58\x5e\x1e\x18\xa0\x7a\x4e\xac\x2b\x23\xa4\x17\xdf\x41\x47\x07\x99\x15\x14\x32\xbb\x8d\x0e\x80\xa9\x1f\x61\xba\x17\x71\xda\xe5\xa4\x2c\xf0\x2c\x4e\xb9\x52\xef\xc0\x89\x33\x1e\x4a\xc8\xfb\x6e\xb6\x2a\xcd\x06\x04\x29\x6f\x36\x01\x3e\x09\x23\x88\x57\xb6\xe1\x58\xcf\x87\x56\x13\x3b\xc8\x97\x9b\x1a\x75\x11\x69\xa9\x24\x07\x41\xec\x0b\x6a\xb9\x08\xbb\x05\x63\xa1\x5c\xee\x81\x03\xc2\xf6\xd8\xb1\x03\x8e\xc6\xfd\xb3\x03\xc7\xcc\x56\xf3\xc0\x93\x54\xea\x2c\xbd\x97\x31\xd2\x8f\x4c\x48\x86\x31\x9d\xc5\xf0\x2e\x4d\x1c\x02\x91\x54\xf1\xe2\xdc\x11\x72\x02\x08\xd7\x5c\x2b\xa8\x8c\xe6\xc0\xfb\x06\xb5\x94\xdc\x8a\x3b\x4c\xe5\x6a\x79\x41\x65\xe3\x55\x15\x3a\xfc\x1f\x7f\x76\x71\xf5\x2e\xc2\x43\xa5\x03\xd6\x87\xa0\x5c\x12\x8d\x24\x12\x91\x68\x5a\x51\xbe\x03\x89\xc6\xdb\xf2\x38\x21\xe3\xb9\x70\x4e\x22\xa4\x78\x9a\xd5\x1d\xcc\x1c\xcf\x04\x95\x05\x45\x64\xe1\xcd\x1d\x14\xf9\xdd\x70\xc0\xa7\x3b\xb6\x93\xde\xbb\xe0\x8f\x23\x37\x75\xa1\xc0\xeb\x86\x29\xe1\x9a\xa6\x69\x15\xf7\x76\xb0\xf7\xa6\xd3\x72\x1c\xcb\x6a\xec\xec\xfa\xcd\xf6\x4e\x13\xe2\x9a\xfe\x1e\x51\x98\x76\xa9\xb7\x3c\x2f\x4a\xf2\x8e\xdb\xdd\x5b\xef\xef\x41\xb5\xc5\x3d\xaa\x6d\x4e\x15\x0a\x8f\xec\x59\x6d\x1b\x67\xf1\x25\x94\x00\xeb\x02\xc4\xa3\x03\x0a\x07\x5b\xc4\x45\x51\xe0\x00\x26\x28\x8c\x1d\xd2\xda\x24\xfa\x4c\x7c\x2c\x3e\xa3\x3b\xf1\x54\x25\x5d\x27\x82\x40\xd6\xe7\xcf\x0c\x0c\x53\x75\x62\x78\xe0\xcc\xfc\x9d\x14\x0f\xb6\x25\xaf\x4c\xce\xf3\xa7\x30\x7d\xd3\xdc\xa5\x74\x06\x42\x84\xed\xd9\xf3\xb3\x4d\x5f\x05\x8f\x16\xd3\x95\x9a\x33\x65\x9a\x53\x8e\xb8\x6b\x35\x6e\x2d\x0d\x68\x79\x0a\x7c\x29\x6a\xb9\x6c\xea\xe6\xbc\xa7\xc7\x76\x4a\x0f\x8a\xa2\xc4\xa9\x50\xb5\xa9\x9a\xd8\xf9\x72\x30\x1a\xc0\x61\x1c\x0e\x40\x55\x6f\x9e\x48\x55\xde\x33\xfa\x52\x39\x43\x5a\xbf\x47\xf8\xc3\x99\xdf\xfc\x2a\x0e\xe1\x60\xa0\x53\xdb\x68\x3c\x8e\x0f\xa5\xfe\xcd\xc1\x0c\x11\x48\x75\x2a\xbf\x38\xd6\x5e\x2d\x5e\x42\x21\x97\x2f\x84\x8e\x11\x43\x4f\x9a\xc2\xce\x4b\x94\x40\x56\x29\x31\x10\xba\xf8\x44\xca\xae\xf8\xae\x53\x0b\x9d\xcc\x5e\x0e\xb5\xbe\x7e\x2a\x44\x42\x97\x49\x8a\x8f\x7f\x73\xbd\xf7\x72\xd5\x8a\x9e\xb5\xde\xf0\xec\xfc\x95\x37\x58\xc8\xd7\xb7\x11\x34\xce\xf0\x74\x65\x41\xe7\x04\xdd\x90\xa5\x57\xb8\x77\xc6\xfa\xe2\xe2\xfa\xe2\x8f\xf5\xde\x41\x3c\xa7\x28\xf7\x2a\xca\xe2\x1e\x37\x72\x6f\xbe\x47\x93\x33\x12\xaa\xc7\xf7\xc8\x99\x3e\xbe\x47\x55\x02\xbe\xc7\xaa\x58\xa9\x88\xd5\x34\xef\xac\x8b\x15\x86\x4d\x51\x11\xab\xb8\xc1\xde\x5b\x4d\x7a\xac\x6a\xb1\x33\x36\xe1\x6c\x5f\xfc\xfa\xa0\x87\xb8\x54\x36\x16\x54\x99\x81\xaa\x8a\x66\x31\x2c\x24\x25\x9d\xd9\x7f\x95\x5d\xd1\xdc\xd0\xf4\x72\x60\xa6\x4f\x49\xdb\x85\x85\xf6\xde\x13\xdd\xd0\x6e\xb5\xe5\x69\x6e\x68\x88\x4b\x2b\x64\xab\xbd\x67\xf5\xc0\xbc\xfd\x9d\xcf\xc3\x5c\xbb\x3e\x0f\x6d\x76\x0a\xed\x47\x4b\x9d\xac\x36\x4f\x6b\x50\x7a\x3e\x4b\x2e\x1f\x90\x3b\x51\x87\x05\x86\xde\x57\x60\xb6\x9f\x32\xbe\x05\xaa\x65\x6c\x69\x7a\x7a\x69\xfa\x7b\xbe\xfd\x97\x4f\x4d\xa4\x95\x81\xfc\xa9\xd3\xa7\x30\x21\x6b\x2d\x6d\x8d\xcc\xed\xdf\x8f\x1f\x87\xd0\xa7\x07\xa7\x97\x08\x59\xba\xd7\xb7\xff\x89\x74\x74\x2c\x36\x38\x98\x4e\x47\xc7\xc6\xa2\xe9\x35\x35\x77\xe8\x50\x4e\x15\x45\xe4\xe3\xb1\x74\x31\x64\xdd\xba\xdd\xd6\x7d\xed\x4d\x8f\xb7\x36\x7f\x1b\xe2\xc2\x9b\x73\x0a\x21\xca\xd5\xf9\x93\xba\xee\xea\x82\x5e\xf6\x40\x82\x4a\x99\x13\xee\x2f\xd5\x0e\x38\x73\x9b\xdf\x1a\x47\x69\x31\x02\x43\xad\xf8\xcf\xbe\xd2\xde\x0b\x8b\x47\xd5\x2d\xb3\xaf\xdd\x96\x08\xe8\x0b\x05\x68\x8f\x77\xa3\x3c\x74\x4b\xda\x45\x05\x63\xc1\xeb\xc7\x97\xad\xb3\xcb\xad\xcd\xe5\x7b\xa1\xd4\x1f\x5d\xad\xe0\xbe\x47\x95\x74\x5a\x49\x6f\xc7\xb5\xb4\x65\xa5\xb5\x6f\xea\xf4\x9b\xcf\x17\x62\x92\x14\xfb\x4f\x69\x25\x95\x52\x7c\x8c\x93\x21\xc8\x05\x32\x79\xd9\xe0\xba\x08\x1e\x8d\x35\xad\xbc\x06\x60\xd2\xf8\x9d\x52\x6b\xfb\x0f\x07\x02\x36\xb1\x6d\x62\x77\x23\x7d\x72\xed\xac\xb7\x3d\xf9\x50\x3c\x4b\xbe\x8f\xeb\xa4\x56\xa9\x6c\x6d\x6d\x6c\xf4\x40\x6c\x77\x64\x5f\xc9\xb5\x5a\x40\x92\xe5\x4e\xdb\x1f\xd7\xb1\x13\xb6\xa5\xd9\x77\xce\x2c\xee\x4b\xf3\xda\x60\x44\x73\x22\x31\x21\xfb\xe3\x7c\xfa\xf5\x21\x17\x0c\xec\x27\xf6\xdd\x63\x54\x12\x11\x3e\x45\x22\x31\x12\x8b\x58\xf7\x4f\xa5\x79\xe1\xf5\xc9\xf8\xd1\x36\x10\x58\x47\xf3\x0e\xa3\x18\xb0\xc9\xcb\x06\xa7\x4a\x92\x29\x70\x2a\x46\xdb\xa4\xb1\x5d\xa9\xd5\x6a\x35\xdc\x70\xea\x1f\x7e\xc4\x79\xe0\xd2\xa5\xca\x7d\xf7\x21\x88\xe1\x9d\x86\xd5\x5e\x61\x1e\x3f\x86\xfc\x64\xaa\x6d\xc0\x2a\x93\x21\x40\x43\xce\x26\x27\x26\x39\xa9\x8c\x9d\xf4\x44\x69\xbe\x84\x7f\x2a\x91\x02\xa5\x25\xb1\x11\xa0\x0f\x4f\x7a\x34\xb9\x11\x08\xfc\x74\xfc\xd3\xa5\x54\xba\x54\x4a\x47\xfb\x56\x79\x65\x41\xe1\xaf\x44\x43\x69\xfa\x70\xc5\x57\xa3\xd1\xe8\xea\x48\x7b\x95\xfb\xaf\x68\x00\xd0\x84\x61\x66\x09\x73\xe0\x9e\x68\x23\x4f\x99\x02\x84\x09\xd1\xae\xfb\x1e\x59\x8c\xe5\x8e\x1f\x9e\xbc\xc7\x5a\xb9\xfe\x81\xeb\x27\xa6\x0b\xf9\xa9\xfe\xbe\xea\x22\x99\xd6\xa6\x86\x06\x8d\x31\x15\x3f\xb3\x50\xbb\xff\xe4\xf5\xeb\x27\xdf\x74\xa9\xbf\x30\x3b\x53\x4c\x2e\xf8\x23\x4c\xbd\x11\x38\xe5\xae\xe0\x4a\x91\x93\xcb\x62\xcf\xaa\xdd\x1b\x54\x4a\x57\x71\x39\x75\x2d\x25\x0f\xa6\x7d\xab\xf7\x3a\x0b\xd6\x84\x6d\x73\xaa\xa0\x69\x85\x2b\xfe\xf5\x7b\x5f\x67\x5d\x4f\xf8\x11\x24\xbd\x79\x44\xde\x89\xb6\xd8\x5b\x2f\xa7\x0b\xf2\x3f\xdf\xa3\xc6\x77\x3a\x8e\xbd\x57\x75\x56\x7e\xaf\x2b\x36\x75\x40\x8e\xd5\xbf\xdf\x15\xff\x0e\xbd\xd8\x45\x7a\xd9\x7d\x7b\xd4\x5f\xd7\x0a\x53\x53\x05\xe7\xd5\x5c\x31\x7d\x1a\xc7\x01\xcf\xc4\x95\x9a\x4c\x5f\xf4\x04\xdb\x32\x57\xf6\xee\xd2\x13\x27\x49\x92\x24\x4a\xf0\xef\x1f\xf9\xf6\x9f\xed\x91\xa4\xee\x97\x44\x49\x14\x45\x91\x7e\x7f\x8f\xc8\xce\xa2\x47\xbe\xd3\x2d\x55\xf9\xdb\x35\xe0\xcd\x47\x4c\x8a\x04\x5d\x0d\xd8\xac\x54\x6e\x0f\x09\xf2\xe7\x44\x69\x66\x56\x3a\x3a\x3b\x23\x89\xd2\x5b\x7a\x24\xc8\x27\x25\x69\x66\x86\xfd\x49\x8d\xae\x4a\x7b\xf0\xfa\xfd\xd8\x33\x9d\x39\xc5\x03\x9f\x89\xa7\x52\x71\x16\xcc\x51\x6b\xe4\x5e\x38\x9b\x6d\xec\x85\xd9\x4f\x25\x71\xd4\x3b\x33\x85\x0a\x7c\x01\xfb\x60\xff\xc1\xf3\xa1\xe1\xae\x42\x48\x6b\x0b\xfd\x6f\xa0\x8c\x7f\x5f\xd4\xd0\xf2\x2e\x65\x7c\x1a\x62\xbe\xbb\x19\xcd\x21\x40\x9c\xe9\xb8\x96\x3b\x56\x51\x89\x33\x5d\x78\x21\x8c\xde\x23\x3f\xf6\x33\x87\x0f\xff\xcc\x63\xf2\x07\x2f\x6e\xdc\x18\xfc\x89\x9f\x18\xbc\xb1\x81\xda\x78\xff\xf4\xfe\x0d\x53\xa9\x58\x35\x55\x55\xe2\x24\x95\xfd\x10\xa3\x8b\xc2\xa9\x1f\x9a\x68\x3e\x26\xbf\x87\xfd\xfc\x0b\xfb\x5e\xb3\xd4\x5f\xb9\xe7\xc6\xc6\x45\x56\x88\xbf\x84\x08\x44\xc4\x4a\x5e\x08\x4c\xa9\xb7\x94\x89\x1f\x3a\x25\xe0\x52\x4f\x51\x95\xfe\xa5\xd7\xfc\x4a\xa7\xb8\x10\xc2\x08\xe1\xbb\x01\x04\xa5\xe5\xd0\x71\x74\x1e\xee\x8a\x8b\xa0\x25\x2d\xc0\x1c\x6f\x96\x0d\x95\x41\x9e\x72\xc0\x06\xe4\x32\x03\xcb\x45\x17\x0a\x94\xa1\x7c\x2e\xb8\xfc\xc6\x80\x8e\x9a\xe4\x4c\x89\x63\xc0\x5b\x18\x5d\x7f\xbe\x3f\x1f\x3a\x61\x8c\xdf\xf7\xe8\x5c\x32\x31\x11\x0d\xcc\x19\x89\x90\x20\xca\xfb\xf7\x8f\x85\xc2\xa1\xe1\xd4\x68\x36\x33\x1c\x1b\xcb\x8d\x8c\x8c\xa7\x53\x63\xc3\x23\xa2\x3c\xd4\x77\x7a\xfc\xbe\x21\x06\xc7\x15\x40\xcf\x3c\xbc\xb8\x96\x1a\xbb\xef\xbf\x1f\x7c\x7b\x91\xe3\x1f\x98\x8b\x89\xfd\x8a\x20\x6e\x5e\x1e\x18\x8b\x46\x63\x7d\xb1\x51\x69\x60\xa8\x2c\xce\x4b\xfc\xf0\x60\xa6\x3f\x26\xfd\xae\x87\xd1\xd5\xc9\x71\x80\xc8\x61\x2c\xbb\x58\x03\xb2\x51\x68\x87\x2c\x37\x00\xef\x0d\x3b\xdf\x60\x41\xa4\x56\x6b\xdb\x71\xb0\x40\xd6\x19\x4c\x49\xc8\x45\xdd\xf0\xb3\xa2\xa1\x04\x95\x85\x43\xe0\xb4\x2b\x08\x41\x17\x88\xee\xbb\x2f\xb5\xaa\x58\xb3\xac\xd6\x16\xae\x6d\x5b\x96\x63\x59\x78\xbb\x4a\x88\xbd\xb1\x6e\x59\x18\x6d\x6c\x78\xb1\x07\x4d\x37\x5b\xbf\xd4\x89\x0a\xe2\x20\x1a\xaa\x07\xe2\x57\xf0\x72\x07\xf0\x69\x98\x8f\x8c\xa6\xe0\x85\x48\xd1\x27\xa0\x41\x77\x58\x38\xd0\xa9\xcd\x4d\x22\x74\xe0\xdc\x05\x06\x96\xdc\x1d\x8f\x92\x43\xc8\x74\x85\x93\xb2\x2b\xa1\xa8\x6e\x45\xde\xb3\xe7\x60\xb4\x7a\x71\xb5\x01\x52\xe3\xbf\x67\x95\xb0\x0a\x6b\x82\x30\x5e\x2a\x3d\x06\x02\xa5\xef\xb9\xdc\xed\x29\x32\x15\xa5\x18\x6e\xb3\x22\x79\x7d\xfc\x4b\x2f\xcc\xe1\xd5\xf3\xab\xf8\x23\x50\xc4\x4f\xc3\xd3\xf4\xfa\x13\x63\x4a\x69\xfc\x0e\xd4\xf6\x7a\x2f\x5e\x4f\x40\x04\xff\x4b\xbc\xed\xce\xb5\x07\x11\x32\xbb\x30\x02\x0c\x9d\xce\x86\x92\x5e\x36\x25\x40\x10\x10\x7b\x62\x82\x4d\xa3\xc3\xf9\xfd\x33\x1d\xc8\x80\x93\xc9\x64\x68\x22\xba\xb1\xc2\x95\x2e\xc5\x52\x1f\x4f\x34\x20\x7f\xef\x57\x19\x8e\x00\x58\x27\xff\x95\x87\x1e\xa0\x69\x24\x72\x4e\xf8\xf1\x21\xa1\x26\xca\xa7\x21\x9b\x29\x0d\xdb\x7f\x0f\xf2\x61\x47\x7f\xff\x77\x70\xc5\x0c\x67\x72\x07\x5f\x95\x29\x48\x9c\x6a\xd0\x99\x38\xc4\xa9\x26\xcb\x69\x3c\x71\xfb\xe6\xcd\xdb\x37\x5f\xb2\x47\x6e\xdc\x73\x2d\x73\x0d\x9f\xce\x5c\xcb\x30\x88\xd8\xd6\xad\x8f\xdd\xba\xf5\xb1\xcc\xcd\xf9\xf4\x61\xe7\xe1\x4b\xf9\x4b\x97\x0a\x97\xf3\xc8\x57\x8f\x1f\xa3\xd4\x27\x07\x86\x7b\xea\x2c\x71\xaa\xc9\x71\xaa\x89\x05\xb8\xa0\x29\x5f\xa5\xb8\x96\xb9\x96\x79\x89\xd6\xca\xa4\x5c\x6b\xdb\x57\xf1\xd9\xc2\xe5\x7c\xfe\x52\xfe\x12\x0a\x21\xd9\xad\x91\x21\x1a\x15\x20\xf3\x15\x20\x6b\xc2\x20\xb9\x04\x45\x24\x75\x2c\xb5\x74\xb5\xa3\x57\xc7\x31\xa3\x60\x3b\x06\xa3\x1e\xcf\x25\xbe\xf9\xcd\xe2\x95\xa5\x85\xbf\x3a\x8b\x53\xa5\xcc\x9c\x79\xea\xe2\xcd\x39\x7e\x34\x3b\x3a\x8e\x7f\x39\x73\x2d\xf3\x23\x99\xd1\x82\xa6\x5d\xbc\x99\x28\x44\xae\xe0\x7f\x3e\x9c\x1d\x6e\xdd\xfe\xa6\x66\x2c\xad\xe2\xa7\xce\xb6\xfe\xa4\x94\x99\x9b\xbb\x75\xe1\xa4\xc9\x27\x73\x89\xf1\xd9\xc2\xe5\xfc\x6a\x24\x9f\xbc\x75\x61\x7a\x32\x3f\x3a\xb6\x74\xc5\xdf\x2b\xcc\x8a\x01\xbd\x0f\x6b\x9d\x29\xf6\xde\x03\xb7\xf7\xff\xd3\x23\x92\x73\x5c\x1c\xf6\x75\xc7\x1b\xbd\xfe\xff\xda\x3a\xfd\xea\x05\x5f\x67\xbc\xb3\xdd\xff\x61\xb0\x8c\x37\x03\x7d\x20\x4b\xa7\x91\x82\xe6\xd1\xd9\x4e\x5c\x8c\x29\x0a\x85\x05\x53\x55\xca\x92\x04\xf2\x64\x59\xa4\x43\xd1\xcb\x6e\x5a\x98\xf0\xed\x4b\x6e\x7c\x41\x3b\xf3\xc9\x7d\x2f\x2a\xd8\x12\x2a\xc2\xfb\x8c\xbb\x68\x61\xac\x7f\x84\xcb\xa7\x73\xd9\x74\xbe\x7f\x88\x3b\x0a\x0f\x7b\xeb\xd3\xf0\x66\x63\x14\x8b\x88\x89\x74\x42\x4b\xa4\x13\x62\x24\x86\x6b\x54\x3c\x38\xa2\x1c\x3d\x56\x1a\xeb\x1f\xe2\xf2\x43\x43\x79\x6e\xa8\xff\x67\x12\x83\xb5\xa1\x78\x7c\xa8\x46\xf5\x6b\x77\xef\x2b\xcd\x66\x24\xb6\x42\xf7\x57\xd8\x36\x86\x76\x46\xe5\x00\xbf\x9b\x3f\x06\x69\xb7\xa8\x9c\x06\x21\xb6\xe3\x34\x76\x44\x09\x78\x3e\xb1\x04\xd8\x28\xf6\x64\xf7\xd2\x05\xd8\x1a\x9e\x7f\xcc\x73\xec\xd9\x90\x7d\xb0\x8e\xa7\x5b\xdf\x02\xee\xd4\x0e\x7f\xa2\x55\x25\xf4\xf5\xb7\xa7\xd1\x84\xba\x62\x55\xdd\x0c\x73\xbf\x37\x34\xbe\x07\xfa\x86\x4e\x75\x3d\x09\x57\xb7\x68\xa1\x2c\x0a\xdc\x47\xdf\xf4\x00\x97\xd7\xf2\x5c\x07\x44\x02\x13\x16\x0c\xee\xaf\x3b\x31\x3a\x9a\xf0\xc5\x4a\xb2\x79\x73\xa6\x63\xc3\xf2\x6a\x56\x5e\xb9\x05\xce\xea\xc5\x55\x36\x99\x9a\xbb\xb7\xa2\x9a\x1d\x2f\x95\xc6\xb3\x18\xc1\xfc\xfa\xf6\x3d\x1a\xd2\xd5\x92\x01\x40\xec\x6b\xe7\x2e\x4b\xbb\x44\x94\x75\x5a\xf0\xdf\xa0\x5a\x4d\xd3\xfc\xb4\x4f\x6e\x07\xd4\xc0\xfd\xf3\x75\xc7\xb1\x7b\xa9\x31\xa1\xd2\x4e\x8c\x62\x18\x0d\x81\xf5\xc3\x00\x9c\xfb\xef\xd3\xe9\xb6\x5d\xad\x46\x76\xbf\xd8\x86\x6d\xad\x57\x2d\x8c\xf6\xba\xca\x9d\x35\x9a\x30\x86\xf6\x02\x59\x71\x6b\x44\x55\xab\x62\xed\x71\x97\x9d\xaa\x6d\x37\xbf\x7f\x7d\x74\x9e\x92\x3d\x69\xf9\x95\xab\x6b\xd6\xb3\x3f\x61\x66\x9f\xdd\xbd\xba\x5a\x3d\xfb\x7e\x33\xbb\x57\x85\x3d\x11\x72\x18\x6c\x5a\xc0\x84\x41\x15\x51\x15\x4c\x5b\x1c\x98\xb6\x0c\x89\xc3\x1f\xcc\xdc\x38\x69\xdb\xc6\xca\xf0\x2d\x63\x65\x38\x07\x1f\xf0\x6b\xa6\xe6\x4f\xde\xb0\x2a\xb6\xb5\x62\x64\xb3\xc7\x57\x8c\x42\x26\xe7\x1e\x41\x3e\xae\xe8\x30\x20\x8c\xe8\x2a\xa7\x0b\xba\xb9\x0b\x4c\x33\xb1\xaa\x55\xab\xf2\x96\x1e\xb0\xe6\xed\xf5\xf5\x4a\xad\x07\xaf\x39\xe0\xe3\x9b\x49\xba\xc8\x82\x3b\x88\x66\xba\x28\x66\x70\x7d\x27\xbf\x0c\xcb\x53\xa9\xe1\x06\x8a\xba\x5a\x84\xea\x06\x29\xf2\xa9\x5a\x2d\xc5\x83\xca\x50\xb7\x2c\x6c\x33\xad\xc3\x3b\xbb\x0f\xa4\x6e\x5e\xe6\xcd\x84\xff\x47\x5b\x55\xf7\x77\x0e\x16\x5a\xdb\x73\x98\xf7\xff\x3a\xd8\x85\x3c\x63\x76\xe6\x0b\x53\x90\x45\x01\x56\xe6\x24\x07\xf0\x06\x45\x80\x36\x70\x11\x69\x17\x4c\xd9\xd0\xcb\xed\x44\x12\x4e\x94\x30\xa9\x54\x2a\x5b\x33\x01\x42\x02\x33\x87\xf9\xc5\x93\x8b\xfc\x61\xf7\xc3\xf0\xa8\x9c\x9d\x1b\xce\x0e\xcf\x65\xe5\xd1\x61\x8c\x98\xe3\x40\x1b\xea\x17\x88\xc0\x0d\x91\x71\x59\x1e\x27\x43\x9c\x40\x84\xfe\x21\x2d\xc5\xcb\xd9\xd9\x60\x70\x36\x2b\xf3\x10\x51\x30\x84\xfe\x3f\xea\xfe\x06\xbe\xad\xea\x3e\x18\xc7\xbf\xe7\x9c\xab\x7b\x25\x5b\x92\xf5\x76\x25\xeb\xc5\xd2\x95\x64\x4b\x8e\xae\xed\x38\x96\x65\x99\xbc\x38\x0a\x84\x10\x92\x00\x49\x40\x4e\x1a\x20\x0d\x10\xde\xac\x14\x52\x08\x69\x4a\xb3\x56\x85\x96\xd2\x40\x29\xa5\x38\x50\xd6\xd1\xac\xa5\x8c\xc5\x94\x76\x1d\xa5\xb4\xa3\xcc\xa5\x94\x76\xc0\x18\xed\x6a\x3f\x1d\x63\x7d\x28\xeb\x58\x17\xf3\xd0\x8e\x51\x4a\xbb\xce\xf9\x7f\xee\xf7\x9c\x7b\x75\x25\xdb\xe9\x9e\xcf\x7f\x7b\x7e\xcf\x03\xb1\x7d\xef\x39\xe7\x9e\xf7\xf3\x3d\xdf\xf7\xaf\x87\xcc\x91\x37\x30\x8a\x07\x46\xc0\xc8\xe7\xe5\x5c\x3e\x97\x2b\x47\xca\xf9\x11\x03\x67\x52\xc8\xcf\x14\xe2\x5c\xd1\xd1\xf1\x54\xf7\xb6\xa4\xe6\x0b\xed\xae\x5c\x94\xdb\xa9\x25\xfd\x1d\x35\x29\xa8\x18\xc9\x1d\xfe\xa4\xb6\x33\x77\x51\xe5\xa2\x80\x57\x4b\x6e\xeb\xb6\x45\x82\xf2\xf2\x68\x3a\x4a\xbe\x88\xcc\x13\x25\x97\xcd\xc8\x3d\x91\x6c\xc8\x0c\xbc\x32\x52\xca\xb6\x68\x58\xaa\xb6\x97\x4a\x43\x23\x53\x33\x35\x33\xed\xfe\x54\x28\xf7\xd5\x90\x0e\x2a\x69\x02\x33\xf3\xe3\x33\xb7\x12\x1f\x3a\x98\x73\xbc\x64\xa3\xef\x8c\x73\x64\x9e\x22\x71\xc3\x73\x5a\x73\x0d\xe2\x92\x9c\xca\x9c\x31\x65\x1d\xfc\x6e\xb2\x47\x9f\x6c\xd2\xbc\xb3\x47\x04\x36\x1d\x47\x93\xe9\xe9\xe9\xc6\xdd\x34\x73\x14\xff\xab\x19\xfb\x00\x21\xd8\x1c\x8f\x0e\xe7\x8f\xbd\xa2\x1d\xd1\x54\xed\xbf\x68\xff\x1a\xe3\xab\x93\x19\xb4\x24\x44\x3b\x2e\xb4\x5a\xe2\x76\x5c\xe5\xcb\x2e\x4b\xd6\xeb\xb7\x27\xeb\xf5\xe4\x65\xf7\xa3\xe1\xa1\x30\x76\x6a\xf2\xe1\x87\x1e\x9c\x89\xb0\xa7\x5b\x18\xab\x76\xfe\x38\x19\x6f\xf6\xd5\x47\xaa\xba\x3e\x53\xaf\x37\xfb\xe6\x5b\x78\xd3\x76\x70\xbd\x68\x7f\x09\xdd\xe2\x71\xbd\x44\x75\x6a\x6a\x6a\xbe\x3e\x35\x35\x45\xa6\xeb\x27\x61\x66\xa6\x5e\x9f\x9a\x99\xb1\x9d\x2a\xee\xbd\xc8\x28\x5f\x2e\x46\x98\x3f\x2d\x94\x1c\xc9\xe4\xfc\xec\xa6\xf0\x44\xf8\x39\x02\x48\x97\x90\x29\x5d\x57\xd5\xf9\x69\x02\x38\x31\x76\xfd\x68\x8a\x5a\x09\x18\x7d\x2e\x6f\x5d\x3f\x11\x4b\x9d\x19\x51\x93\x83\x07\x2b\xc7\x8f\x1f\xaf\xd7\x85\x4a\x73\xd4\x4f\x2a\x37\xbc\x82\x62\x36\x52\xad\x0b\xc5\x20\x63\x6e\x25\x1b\xf5\x13\x81\x14\x2c\x6f\xdc\x6c\xad\x31\x68\x96\x4a\xff\x08\x0f\x99\x8c\x2e\x0d\xe7\x8f\x1b\xbf\x97\x2f\x48\x21\x15\xa4\x0f\xae\x70\xbb\xea\x2e\x8f\xc7\x55\x77\xb9\xe7\xa7\x90\x68\xb8\x12\x5f\x30\x79\x69\xab\xd3\xae\x07\xff\x91\x5b\x9d\x32\x70\x41\x8d\xfc\x86\x7c\x1c\x9f\x3c\x1c\xab\x25\x46\xc1\x88\x81\xc9\xba\x92\xef\x4b\x92\x5d\xa9\x93\x70\x28\xf5\xae\x8f\x7d\x2c\xf9\xb1\x57\x8d\xf7\x24\x7e\xfa\xae\xa7\x6f\x4d\xde\xda\x62\xf9\x93\xe2\x96\x3f\x41\xae\x36\xb7\xc0\xf4\x26\x82\x0a\xed\xf3\xb3\x27\x38\xd1\x68\x59\xdd\x84\x6b\xb5\x13\x27\x48\x5d\x6f\x36\xb9\x99\xae\xd5\xec\x1c\x9b\x08\x46\x43\xb2\x55\x6b\x6c\x11\x7f\x1a\xc3\x47\x15\x83\x06\xb4\xc3\xed\x3b\x69\xd6\xac\x93\xc2\xfc\xac\x1e\x0d\xec\x2b\xbf\xf0\x42\x39\x59\xab\x35\xd8\x38\xd5\x2a\x29\x54\xab\xfe\xd8\xfc\xbf\x8d\x16\x46\x93\xb5\x5a\x33\x7e\xca\x2d\x7d\xcb\x8a\xd2\x1a\x23\x9b\x2c\xdf\xf6\xe5\x6d\xbd\x78\xec\x9f\x0b\x79\x3c\x21\xcf\x0f\xbe\xbc\xed\xcb\xa4\x8a\x67\x7f\x9d\xc7\x48\x11\x9e\x32\xe7\xc8\x1c\xc6\x58\x10\x7e\xb4\xb8\x65\x3f\x22\x59\x5c\xad\x85\xfb\xd9\xb2\xab\x14\x21\x1f\x9b\x7c\x2d\xac\x69\x61\x2d\xea\xdf\x96\x19\xcc\x6c\xf3\x47\xb5\xce\x74\xba\x53\x8b\xfa\xc7\x53\x7d\xa9\x71\x7f\x94\xa8\xfc\xaf\x99\x6c\x96\x12\x1f\x8d\xdb\xf5\xe9\xbd\x10\x86\x24\xe4\xb8\x5f\xb4\x61\x83\x76\xe2\x5c\x61\x73\x48\x52\x0b\xf9\xfa\xcd\xdb\x2f\x57\x82\x5d\xd7\x54\xd2\xe7\x11\x11\xa7\xa6\x2d\xec\xf3\x85\x7d\xfb\xf1\x77\xf5\xf2\x0d\xe1\x98\x63\xd7\xd6\xac\xec\xde\x20\xd8\x4f\xe7\x77\x18\x39\x1d\xf8\x1b\x47\x7d\x1a\x72\x17\xd0\x3f\xe8\x00\x13\x72\x1a\xee\xf7\x5b\x56\x08\xa4\x4a\x83\xab\xc2\x67\x0c\xad\xcc\xe5\x56\x0e\x9d\x31\xbc\xe6\xcc\xd3\x12\x83\x03\xeb\xcb\x5d\x2b\xd6\xf7\xf7\xaf\x5f\x91\xbf\x60\x6c\x0c\x21\x12\xaf\xa3\x13\xb1\xd2\x31\xc6\x7d\x18\x28\xd9\x1c\xba\x32\x08\x25\x69\x24\x12\x34\xfd\x5b\xe4\xd1\x53\x0e\xca\x82\xe8\xe0\xc0\x88\xaa\x6b\x51\xdd\xd9\xeb\xd4\xa3\x9a\xae\x8e\x0c\x0c\xd2\x3d\x43\x67\x84\x57\x0d\x96\x52\xa9\x33\xd7\x0c\x63\xb3\x07\xf4\xbe\xd5\x03\x61\xad\x90\x08\x87\x13\x05\x2d\x3c\xb0\xba\x4f\xa7\xe4\xdc\xf5\x2b\xba\xca\xeb\x07\x06\x13\xf1\xb1\xb1\x0b\xf2\x46\x67\x16\xa1\x54\xfe\xff\xb4\x1f\x30\xfd\xed\xa5\xd1\x13\x3a\x4e\x77\x24\x3f\x22\x44\x35\xc5\xa1\x72\xa4\x01\x62\x8a\x11\xce\x01\xf9\xee\xf6\xc0\xda\x9d\x6b\xd7\xf6\xa5\x12\xbb\xdb\xbd\x02\xd6\x4c\xd5\x7f\x80\x48\xf7\x39\xdb\x13\xa9\xbe\xb1\xb1\x9d\x6b\x03\xef\x76\x72\x78\x53\xe7\xed\x8c\x90\x67\x31\x8a\x45\x9a\xeb\x99\xa2\x80\xa1\x54\x54\x84\x7d\x70\xde\x98\xc8\x11\xa4\x18\xd5\x6c\x39\x47\x2e\xbb\x32\x75\x55\xef\xe0\x58\x5f\x5f\x7d\x24\xd5\x9f\x3f\xcd\xa9\x4b\x9f\xcc\xaf\x74\xea\xce\x0b\x46\xd7\x60\xda\xb7\xae\x4a\x5d\xd9\x85\x4f\x83\x3d\xdd\x0f\x0c\xf6\x8c\x6c\xc2\x17\xf0\x34\x41\x6b\x9f\xa0\x84\x33\x90\x43\xad\x93\x61\x18\x85\xd5\xdc\x73\x00\x2b\x15\x55\x87\x19\xfa\xc1\x61\x86\xf0\x57\x8c\xd4\x4c\xae\x84\x41\xdf\x30\x64\x8f\xc2\x43\x13\x0c\x8f\x58\x61\x98\x2b\xba\xae\x9f\x04\x03\x46\x07\xa2\x18\x49\x05\xdf\x03\x51\xbd\x6a\x20\xfc\x7a\x1d\xc3\xe8\x72\x73\x3c\x03\x53\x29\x9c\x04\x3d\xe6\x27\x30\xab\xfb\x63\xc2\x77\x9e\xf1\xaa\xf3\x58\xfe\x04\x78\xb8\xff\x71\x5d\x07\xd7\x02\x9a\x2e\x05\x59\xe8\xc5\x18\x0a\x68\xf1\x50\x14\x01\xf4\x82\x2d\xda\xe3\x18\x6f\xb6\x54\x54\xfd\x46\xcf\x4d\x97\x08\x93\xba\x5e\xa8\xcf\xa0\xfd\xde\x8c\x01\xc5\xea\xfa\xfc\x0c\x86\x70\xd5\xd1\x67\xa8\xae\xd7\x67\x66\x8c\x7b\x87\x97\xf0\xc7\xd0\xf5\x1d\x18\x43\xc1\xc8\xfe\xe3\x85\x02\xc7\x0b\xab\x78\x83\x31\x03\x8f\x2c\xa7\xd5\xb4\xb0\x82\xe0\x3a\xf7\x85\xc9\xc9\x6a\xbd\xae\xcf\x4d\x4e\xd6\xeb\xff\xbb\x9c\x5e\x69\x81\xcc\xc4\xe2\xf9\x99\x7e\xef\x68\x2b\x97\x7e\x6d\x9f\xa6\xf5\xa5\xaa\xe8\x19\xaa\x6a\xfc\xd2\x8a\x9c\x3f\x8f\x29\xdf\xc6\x94\x93\x80\x2f\x44\x5f\xc0\xcf\x56\xb9\x34\x80\x08\xf7\x44\x45\xee\xcf\x51\x91\x55\xb5\x38\x5c\x56\x4a\x59\x2b\x2a\x09\x59\x17\x1a\xda\x30\x54\x88\x65\x62\x9e\x58\xb4\x10\x8d\x16\xce\xe0\x20\xc7\x17\x4a\x64\x87\x86\xb2\xfe\x58\x2c\xe3\x89\xc7\xd3\xed\xe9\xf8\xa7\x0a\x05\x32\x61\xea\x9c\xd9\xc7\x13\x5f\xc8\x37\x77\xd8\x64\x21\x4d\x11\xb7\xdc\xc9\x72\xd9\xfc\xd7\xc4\x42\x67\xb6\x0c\x21\xf1\x9b\x41\x29\x43\x02\x71\x90\x88\x92\xe7\xe0\x91\xe3\x9a\x7c\x50\x4a\x3e\x5f\x1c\x26\xa0\x6d\xf6\x5d\xb8\xf2\xfe\xf7\xbe\xf7\xfe\xd1\x64\xdf\x9a\xb1\x9d\x3b\x0f\xef\xa8\x8c\xd3\xf3\x2b\xa4\xba\xab\x3f\x56\x9e\xd9\x7f\x6c\xff\x68\xaa\x6f\xc7\xe1\x1d\x3b\xc6\xc6\xd9\xf9\x5b\xad\xf8\xb6\x48\x2d\x18\x04\x60\x39\x82\x7c\x84\x99\x89\xca\xcc\x4c\x65\x62\xbc\x3a\x35\x3d\x3d\x55\x37\xe6\xb2\x0e\x3a\xa9\x0b\x5d\xbf\x20\x00\x31\xb6\x63\x24\xaf\xa8\x45\x96\x36\x5d\x2a\x12\xa8\x1e\x3f\x5e\xad\x1e\x9f\x31\xd0\xdb\x93\x50\xad\x92\xf6\xea\xe6\xcd\xd3\xd5\xea\x66\x52\xaf\x57\xab\xc6\x0f\xd7\xf4\xe5\x35\xb9\xd0\xf3\x81\xf8\xb6\x6e\x7d\x33\x63\x16\x6d\x68\xc2\x1a\xf3\x9a\x6f\xd8\xed\x85\x6d\xd1\x5f\x17\xd5\x82\x3d\x3d\x3f\x92\x5f\xc1\xdd\x15\x34\x2b\xc1\x92\xaa\x1e\xcf\xe7\xe3\xfa\x34\x6a\x80\x3f\xb8\x50\x0b\xb6\x19\xc6\x76\x34\x60\x6c\x43\x15\xb1\x50\x30\x77\x45\x45\xd7\xa7\xea\x75\xd3\x8d\x46\x93\xcd\x58\x3b\x62\xd9\x60\x9c\xcf\x56\x89\x53\xa4\x54\x54\xe7\x0a\x17\xda\xf6\xc1\x74\xc1\xa8\x6a\xce\xbe\x01\xbe\x83\xd6\x2b\x0d\x49\x6f\xd2\x80\x03\x68\x8a\x59\x5e\x02\xcd\x98\x9b\x9d\xad\x5a\x9c\x24\x9d\xd4\xe7\x0d\x9c\x65\xaa\x52\xa8\x54\xa7\xa3\x81\xf9\x19\x63\x9c\xe3\xe3\xa4\x6f\xbc\x8a\x5e\x5b\xab\x30\x4c\xa6\xc8\x8b\x20\x73\xaa\x0f\xc5\xb2\x65\xc1\x25\x2c\x13\xd8\x95\xdb\xf2\xa5\xa1\xbd\x77\xec\x1d\x7a\xff\x6e\x52\xda\x95\x2b\x0d\x6f\xf9\xcd\xd0\x27\xf6\xee\xfd\xc4\xd0\xfb\x51\x92\xcc\xa3\x26\x79\x51\x4f\xb6\x01\x8c\x8a\x43\xe4\xd0\xc5\x17\x7b\xc2\xe8\xae\xec\x44\x98\xdc\x7c\xf3\xcd\x01\x9c\x5c\xc4\x94\xf8\x37\x12\xc7\x60\xf2\x59\xb5\xa7\xe5\xd3\xea\x96\x2d\x27\x88\xc7\xf6\xfd\x64\xad\x36\xfb\x86\x55\x05\xb4\xd9\x4e\x99\x1b\x42\x10\x85\x24\xfa\xd1\x1d\xe4\xd1\x14\x7a\x8a\x23\xc3\xf9\x6c\x38\xa4\x8c\x94\xb3\x72\xde\x78\x96\x43\x91\xc8\x48\x39\x1b\xce\x8f\x94\x65\x45\x0d\x47\x72\xf9\x3c\x46\xb4\x95\x43\x65\x59\x29\xe6\x22\xb9\x7c\x38\x62\xc9\x3b\x2e\xde\x28\xcb\x1b\xd9\xb2\x35\xda\xda\xb6\x28\x63\x7b\x19\x1b\x4a\x78\xb6\x7b\x4e\x6b\x0b\xad\xd1\xb4\x35\xa1\xb6\xad\x1b\x19\xdb\x28\x4f\x19\x69\x87\x8c\xf7\x2f\x71\xe9\x64\x22\x99\x50\xfb\x6e\x0b\x8d\xf6\x6e\x57\xfb\x54\xb5\x4f\xfd\xd0\xb2\xbe\xbe\xd9\xde\xee\xd0\xe8\xf1\xd1\x50\x77\x6f\x41\xed\x53\x13\xc9\x6f\x2c\xeb\xeb\xeb\x33\x5e\xeb\xad\x32\x43\x27\x7a\x98\xc2\xb0\x38\xf9\x72\x36\x58\x5a\x10\x77\x83\xe8\x93\xfa\x0f\x92\x3f\xd8\x32\xa1\x9b\x08\xe9\xe4\x24\x99\x9e\xdc\xf2\x83\xe4\x0f\xe6\x67\x27\x27\xed\x62\x3f\x19\x2a\x30\x49\xa6\x49\xad\x49\x9b\xcf\xf2\x2c\xd2\x83\x3f\xfc\x96\xc3\x2b\x82\xe8\xf3\x33\xe2\x87\x3b\x7e\x25\x35\x7d\x0a\x61\x7f\x55\x17\x0f\xff\x1f\x9d\x3f\xb3\x4d\x26\xe2\xac\x09\x1a\xae\xa5\x9d\x46\x10\x7a\xd5\x32\x08\xaa\x1b\x77\x73\xa3\xbd\xa7\xf2\x23\xf9\x65\x6b\x77\xae\xdd\x85\x1d\xa9\xce\xce\x1a\x28\x90\xd5\x9e\xd1\x0d\x6c\x73\x3a\xd6\x88\x76\xa1\x5b\xd1\x0b\xb2\x5c\xf3\x3e\xad\x06\x7f\x8f\xc6\xbd\xbd\xf5\xb1\x45\xd4\xee\x1b\xad\xeb\x8b\x6b\xde\x4f\x5b\x3e\x59\xcc\xfd\xed\x83\x4e\xae\x51\x82\x9a\x46\x4a\x9e\x23\x99\x91\x08\x5d\xd2\xb1\x2e\xd9\xef\x4b\x85\x23\x1d\xbe\x8e\x8e\x48\x38\xd5\x71\xe1\x97\x16\xf3\xb3\xfb\x4d\x5f\x5f\xaa\xc3\xe7\xeb\x30\x0a\x5e\x48\xdc\x8b\x39\xdd\x15\x34\xc2\x0c\x05\xa4\xa0\x17\x21\x93\xb2\x6a\xb1\x44\x6c\xde\x5c\xf5\xa9\x7a\x81\xd4\xed\x1e\x89\xeb\xd5\x29\xbb\x25\x2e\x05\x2f\xbf\xb3\xf2\x41\x9b\x19\xc3\x22\xf4\x2b\xda\x2d\x84\x9b\x28\xd8\xf9\xb7\xb9\xc9\x02\x29\xd8\x69\x58\x6a\xd9\x32\x22\x54\x24\xfc\xbe\xb2\x5c\x7e\x96\x8a\xa5\xb4\xca\xed\x84\x10\x19\x86\x6a\xa5\x50\x39\x11\x88\x1a\xa4\xd5\xfc\x6c\x15\x2d\x70\x88\x3e\x5e\xaf\xcf\xf2\xa6\xf4\x99\x19\x5d\x78\xa1\xfd\xef\x39\x99\x0d\xdb\x41\x9b\xcf\x3a\x8c\xd8\xd7\x83\x36\x06\x25\x05\xbd\x67\x19\xe8\x9d\x71\xf7\x72\x7e\x21\x09\xd7\x2a\x95\xe9\x4a\xad\x56\x35\xde\x8c\x87\x4a\xa5\x56\x19\xaf\x54\xc6\x8d\x47\xd5\xf8\x65\xe7\x79\x78\xb8\xee\x6a\x4f\xd9\x8e\xbe\xb7\xb2\x5e\x2c\x5a\xf1\x8a\xe4\x58\xc7\xe8\xd6\xd1\xd1\xde\x58\xf4\xe6\xc6\x52\x1e\x41\x0c\xeb\x70\x72\x2c\x1a\xeb\x1d\x1d\xdd\x3a\xda\xf1\xaf\x76\x1d\xbd\x5a\xca\xc8\xfe\xef\xe1\xb3\x34\x22\xfd\xb7\xa3\x0e\xa2\x80\x32\x06\x2a\xd8\x58\xd6\x91\x86\x13\xed\x70\xc4\x5a\x5e\xd4\x41\x14\x1e\x8e\xd0\x84\xf3\x68\xff\x98\x3e\xb4\x61\x48\x1f\xeb\x3f\x6a\xea\x1f\xce\x71\xfb\x2b\x7f\x2c\x26\x8c\x3a\xfb\x9d\x67\x2d\xcf\x16\x8b\xd9\xe5\x67\x39\xfb\xad\x40\xff\x4d\x5e\x02\x3a\xb8\x9f\x90\x66\xe9\xc3\x02\x0e\xb5\xe9\x07\xb0\x21\x77\xa8\x36\x3b\xec\xa8\xab\x5d\x3d\x3d\x5d\xaa\x90\x37\x5c\xd1\xea\xb5\x83\xc7\x13\x04\x32\x4f\x01\x14\x38\x03\xce\xb1\x79\xf4\x8d\x84\x39\xbf\x52\x51\x42\xd9\x6c\xa6\x94\xcf\xe5\x8d\xd7\x5c\xb9\x3c\x9c\x1b\x1e\x29\x19\x0f\x23\xc6\xed\x56\x1e\x2e\x16\x87\xd4\x08\xda\xe4\xa3\x71\xbe\x1a\x92\x39\x6b\x3b\x4b\x94\x9c\x70\x9c\x71\x6d\x84\x51\x95\x49\x31\xd6\x21\xc9\x05\x59\x72\xb6\xc5\x1c\x54\xa5\x2c\x42\x88\x91\x41\x1d\x31\xb7\x8c\x19\x92\xd7\xca\x38\xef\xf4\xdd\xf4\xd7\x64\x8a\x78\x37\x23\x9c\xa0\x7e\x26\xf5\x38\x68\x3b\x53\xba\x24\xa9\x4b\x92\xdb\xa9\xa3\x47\x62\x7e\xe2\x94\x14\x12\x60\x52\x8f\x44\xdb\x9d\x2c\x21\x49\x09\xea\x6a\xa7\x52\x8f\xc4\x02\x4c\xa1\xce\xe3\xbb\x4f\x77\x7a\xc9\xd4\xaf\xa9\xe5\x5d\x68\xce\xe2\x3e\x2e\x6a\xf5\x6b\x11\x5a\x35\x9b\x3d\x75\xbd\x50\x28\xd4\x16\x9a\x53\xcf\xd6\xeb\x06\xe5\xf4\x7f\x4a\x07\x91\x89\x18\x4e\x06\xfe\x1b\x46\xbd\x01\xd3\x07\x8a\x1a\xb2\x93\xc9\x16\x61\x39\x49\xf4\xcd\xa5\xcd\xaf\x98\x11\xc2\x48\xd4\x5f\x37\x68\xc7\xba\x31\x82\xe9\x3d\x95\x3d\xb5\x86\x87\x95\x68\x41\x37\x03\x0b\x36\xc5\xae\x4f\x73\x18\xa4\x9c\xd2\x11\x03\x81\xe9\x7a\xa5\xd5\x3b\xc7\xe0\xc5\xe8\x84\x62\x7a\xb2\x32\xd2\xea\x84\xe1\xe2\x41\x74\x38\x61\x8e\x87\x53\x9c\x1e\x80\x60\xb1\x94\xe5\xbc\x84\x08\x21\x23\x73\x85\x42\xa1\xa0\xde\x7a\xe8\x24\x9c\x84\x83\xa4\x8a\xa7\x56\xbd\x70\xfe\x19\xb2\x6a\x97\xdd\xae\x90\xaf\xe6\xa2\x52\x4e\x87\xb1\x8e\x2d\xd2\x4d\x52\x3d\xbe\x88\x68\xb3\xca\x29\xc8\x76\xa8\x92\x5f\x21\x2c\x33\xb0\xca\x6c\x39\xcf\xb2\xf9\x72\x51\x89\x04\xc9\xe4\x9e\x3d\xd5\x3d\xa3\x0f\x55\xf9\x1f\x74\x28\x7e\xd9\xfc\x9b\xc6\x6f\xe2\xb5\xcf\x18\xf6\x85\x58\xaa\x85\x11\xd3\xf5\x68\x3e\x6f\xf4\xe5\xf0\xfa\xfd\xc7\xf6\xaf\x4f\x96\x77\x1c\xde\x51\x3e\xbb\x40\xee\x5a\xb9\x73\xeb\xfe\xfd\x5b\x77\xae\x4c\xf6\x9f\x35\xb6\x63\xc7\xd8\x59\x7d\xe7\xcc\xcc\xc0\x7f\xb3\x27\x72\xd6\x62\x71\x00\x04\xb5\x22\x16\x50\xbb\xed\x7b\x7c\xfb\x57\xd8\x09\xc5\xda\xfe\xd3\xe2\xeb\xeb\xf3\x27\x5a\xb4\xcf\xcc\xda\x3c\x68\xdd\x89\x1e\xaf\x4d\x45\x19\x8c\x31\xc0\x0d\x69\xd3\x25\x52\xf3\xb8\x66\xaa\x6e\x17\x51\x5d\x9e\xaa\xcb\x5d\x9d\x73\xb9\x89\x4a\xc0\xe5\x1e\x27\xba\xb1\x33\x2a\x6e\xd7\xfc\x74\xd5\xed\xd2\xa7\x1b\x91\x3e\x66\x44\xbc\xd0\x1e\x80\xb2\x3f\x52\x6e\xfc\xef\x47\xe3\x27\xfe\x7f\x8f\x80\xfe\xe8\xb9\x4e\x5b\xfc\x3f\xa2\x71\x9e\x89\xf1\xa3\x93\xe3\xf6\xac\xf9\x71\xdb\xcb\xaf\x4c\x11\x31\xd7\x69\xe0\xfc\x04\x37\x62\x43\x1a\xac\x43\x89\x68\x44\xc9\xe5\x65\xe3\x4a\xc6\x06\x5b\xc3\x42\x2c\x40\xd1\x84\x41\x7e\xa4\x2c\x94\x31\xc8\xd4\x7b\xfa\xb3\x15\xa7\xb3\x92\xed\x7f\x8f\x71\x37\x1d\xb0\x39\x2e\xb3\x5d\x53\xcb\xa5\x5c\x2c\x1d\x6a\x6f\x0f\xa5\x63\x39\x69\xa6\xbe\x3a\xba\xa3\xbd\x7d\x47\x74\x75\x7d\xa2\x50\x20\x15\x5b\xec\x88\x64\x34\x70\xc2\x00\xf5\x27\x02\x51\xaf\x12\xcb\x25\x3a\x3a\x12\xb9\x98\xe2\xb5\xce\x07\xa7\x21\xdb\x1a\xb6\x34\x4a\x30\x88\xe4\xe3\xec\xdc\xdc\xcc\xf8\x78\x55\xd7\x31\xc8\xec\x7f\x2b\x7d\xff\xdf\xe7\x83\xfb\xbf\x66\x07\x57\x60\xb3\x88\xd4\x62\xf3\xbf\x16\x41\x55\x21\xae\x99\x8c\x0b\x17\xf9\xc2\x56\x03\x25\x79\x65\x42\x9b\x90\x73\xc3\x2b\xb7\x6d\x3b\xb0\x35\x2d\xcf\x8c\x62\xe2\x84\x36\xe1\x97\xd3\x5b\x0f\x6c\xdb\xb6\x72\x38\x27\x1b\xf0\xa0\x1f\x74\xf2\xb7\x38\xe2\xb5\x36\x9f\x6e\x8d\x1b\xd5\xb8\x70\xf2\x8d\x1b\x35\x37\x5c\x6e\xdc\xa7\xc2\xe6\xdc\xba\x4f\x43\x3f\x45\xed\xfd\x13\xfd\x8a\x43\x97\x5c\x25\xb5\xc3\x49\x9d\xe3\x4e\xea\x0c\xfa\x4b\x2e\x49\x77\x28\xfd\x84\x2c\x9d\xf5\xb5\x3e\xe3\xe3\xb6\xac\xc3\xb5\x49\x61\x6a\x87\x3c\xea\x72\x8d\x3a\x3d\x2a\x53\x36\xb9\x1c\x59\x25\xa1\x2c\x95\x61\xd3\x52\x2b\xc3\x59\x70\x1e\x40\xf7\x70\x5e\xb8\x39\x47\x3f\xac\x06\x59\x20\x2b\xc6\xab\x1c\x89\xc8\xa1\x88\xf1\x27\x5c\x2e\x87\x23\x91\x70\xd1\xc0\xfc\x46\xca\xc6\xeb\x48\x7e\x41\x88\x45\x0b\x07\xdc\x4f\x34\x87\x94\x64\x72\x8f\xc7\x2d\x53\xc7\x6a\x99\xc8\x3e\x57\x8f\x43\x4a\x4a\x0e\x8d\x2c\x9d\x95\x6b\xe8\xb0\xa2\x1c\x28\xf6\x76\xc8\xd1\x29\xc9\xc3\x0e\xda\xd1\xe6\xc8\xcb\x72\xaf\xa2\x74\x50\xb9\x28\x4b\x9d\x8e\xa5\x32\xfe\xc6\x0e\xfa\x27\x63\x66\xd4\x33\x10\xe3\x0d\x1b\x38\x7d\x40\xa8\xa1\x37\x6d\xfe\xe2\xb0\xa9\x84\xfa\x95\x63\xfb\xf7\x6f\x3d\xbd\x98\xec\x5d\x3e\xb6\x63\x87\xb1\xfd\xab\x95\x39\xac\x88\x4c\xef\x3f\xb6\xbf\x37\x19\xc7\xed\x5f\xad\x6e\x5d\xcb\xcd\xfc\x65\xa8\x01\x90\x1b\x29\x08\xdf\x82\xa6\xf4\x73\x11\xef\x82\x41\xe1\x49\x16\xf1\xba\x35\xbd\xbd\x6b\x6c\xbe\x05\x2b\xfa\xac\xae\x17\xfe\xa6\x77\x2b\x51\xb6\xf6\x5e\x78\xd1\x8d\x9f\xbf\x34\x79\xe8\x7d\xc9\x4b\x3f\x3f\x0f\xdc\xfc\x10\x1c\x60\x5c\x64\x75\x0a\x4b\xc9\x58\xed\xde\x4d\xcc\x08\xd6\xa4\x7a\x1c\x95\x45\xf0\xd7\xa4\x5e\x2f\xd4\xf5\x29\x84\x96\x55\x8e\x38\x18\xb7\xa6\x3f\x66\xb5\xd1\xd0\x31\x72\x20\x57\x73\x99\x71\x02\x8d\x49\x52\x4a\xf9\x72\xa9\x58\x8e\x18\xc0\x43\xcd\x2a\xf9\xc8\x22\x77\x32\x81\x58\x2e\x77\xad\xa6\x95\xcc\x7f\xaf\xb4\xdc\xcf\x95\x7a\x6e\x38\x37\x59\xb2\x95\x58\xb7\xf0\xbe\x46\xbd\xef\x1b\xc8\x2f\xc8\x6d\xe0\x40\xb9\x1c\xf7\x85\x8a\x3e\x5f\x15\x11\x9d\x1d\xf9\x0c\xdc\x4f\xec\x07\x0e\x1c\x48\x5f\x7c\xf1\xb5\x85\x71\x7d\x4a\x8f\x5d\x7c\x71\xfa\xc0\x01\x72\xdb\x6d\xb7\xc5\xf7\xef\xff\xa8\xb0\x17\x2c\x7c\x74\xff\xfe\xf8\x6d\xb7\x71\xbc\x22\x23\x3c\x52\x27\xa0\x17\xf7\x81\x9a\x15\xa4\xbe\x43\xe5\x2c\xd4\x12\x37\x53\x50\x11\x84\x99\x99\x9f\x7b\xea\x88\xbe\xff\xd8\x7e\x9d\xc0\xd9\xc9\x4a\x25\x79\xb6\x96\xea\x4b\x5d\x7f\x78\x47\x61\xed\xce\xb5\x05\x32\x77\xe4\x12\xe3\xa6\xbf\xe4\xae\x0d\x3c\x73\x83\xa7\x3b\x9c\x4a\x85\xbb\xbf\xb1\x63\xcc\x20\xc0\xc7\x30\x4e\xb6\xe9\xdd\x25\x0c\x19\xd4\xb1\x3c\x93\xcb\x0a\x84\xcf\x6f\xa6\xe2\x62\x61\xcb\x91\xc6\x23\xb2\xde\x43\xdc\x2b\x78\xd9\xe6\x21\xdc\x5e\x9c\xd4\xea\x9d\x41\xbd\x30\xae\xd7\x75\x77\xc0\x3d\xa5\xd7\x0b\x9e\x80\x7b\xbe\x5a\x2f\xe8\xc1\xce\xa9\x7a\x67\xb0\x10\xec\xac\x16\x8c\x3c\xcf\x54\xa1\xa0\x6a\xca\xae\x5d\x1d\x64\x47\xb5\x5e\xaf\xba\x3c\x9e\xdd\xfc\x8f\x6b\x7e\xb6\x50\xe8\xef\xd8\xb5\x4b\xd1\x54\x51\x46\xd1\xc8\x5a\x51\x08\xfe\x9f\xef\xbf\xdd\x33\x7e\x17\x40\x50\x35\x29\xab\x62\x29\x52\x14\x7e\x20\xac\xf8\x00\x53\x85\x70\x21\x5c\xd0\xd5\xca\xf1\x8a\x2a\x44\xe7\x15\x63\x13\x55\x2a\xf5\x3a\xfe\x18\x34\x03\xa0\x7c\xcc\x8c\xb6\xc1\x65\x0c\x79\x28\xc2\xaa\x46\xd4\x2d\x93\x36\x68\xe5\xce\x9a\x10\x72\x84\x9f\x57\x6c\x55\x16\x5f\x90\x31\xa4\xa7\xd6\xe0\xef\x2f\xa2\xe2\xe4\xbb\x9f\x3a\x72\xe4\xa9\x23\x9f\xc6\x94\xa9\x80\xb7\xe2\x0d\x18\xbf\xb8\x29\xc5\x34\xea\x21\xff\x01\x3e\xff\x78\xbf\x51\x9c\xac\x3a\x62\x94\xff\x63\xcc\xf8\x11\x7e\xf4\x07\xdc\xac\x42\x6e\xc2\xa9\xc3\x10\x45\x8f\x81\x8b\x47\x22\x54\xf2\x79\x35\xdf\x13\x51\xf2\x91\x6c\x2b\x86\x3d\xa7\xeb\xd5\x12\x29\x95\x4a\x75\x7d\x7c\x11\x54\x7b\x7e\x6e\x64\xc4\x20\x9b\x74\xfd\xb1\x91\x66\xfd\x06\x0d\xba\xd1\xfb\xc9\xef\xf3\xfb\x96\x17\x8a\x86\x8b\xf9\x7e\xe3\x54\x47\xa7\xae\x17\x48\x45\xdf\xb3\x38\xe1\x71\x9b\x80\x94\x55\x00\xe1\xa9\xcd\xf2\x03\x95\x2e\x15\x55\xb6\x04\xf6\xee\x37\xa1\x65\x45\x6f\xdb\xb4\xf7\x8e\xbd\x9b\x92\x6b\x36\x4f\x6c\x1e\xeb\x2f\x14\xea\xba\xae\x93\x3f\x1e\xde\xb9\x61\xef\xde\x0d\x3b\x87\x93\xb9\x8d\xa5\xcd\x9b\x4b\x1b\x7b\xce\x9f\x99\x99\x37\x21\xe6\x2e\x50\xc9\x83\x14\x30\x22\x75\x27\x8e\x92\xbb\xe7\xc8\x8f\x28\xc2\x51\x87\x9d\xa1\xd9\xe4\xdd\x0b\x2e\x3b\x23\x39\x7a\x6c\x34\x79\xa6\xab\xef\x70\x5f\x32\xb5\x2b\xb5\x0a\xaf\x94\x1a\x57\x62\x70\xbb\x5d\x14\xce\x4c\x8e\x8e\x26\xcf\xfc\x70\x5f\x5f\x32\x95\xfa\x63\x53\xef\xe1\x24\x18\xfb\xde\xc0\xb0\xc1\x81\xb7\xcf\x24\xc6\xc0\x0c\xa2\xc5\x77\x1e\x71\x75\x11\x4c\xa0\x88\xa3\x64\x62\x7c\x23\x1c\x75\xc5\x15\x40\x2f\xe6\x93\x9b\x4b\x85\xd2\xe6\xee\x33\x2e\x3a\x63\x85\x5e\x2f\x38\x90\xcb\x30\xa5\x13\x7d\x64\xbb\x73\xc3\x06\xe7\xf6\x91\xe5\x63\x63\xcb\xe7\x67\x8c\x81\xce\xe5\x62\xf5\x58\xce\xf8\x35\xff\x0b\xdd\x16\x97\x71\xc6\xf4\xfe\x52\x2e\xe7\xcb\x78\xa4\xac\xcd\x64\x1d\xaa\xe9\x63\xc7\xd4\xf1\x42\x9d\x23\xc0\xf5\xce\xc0\x78\xa0\xb3\x5e\xab\xd6\x74\x5d\x9f\x9f\xe3\x8e\x60\x30\x6c\xa3\xd0\x45\x37\x4e\x15\xaf\x93\xf3\x9c\x4a\xfc\xa0\x5a\x32\x09\xb3\x56\x87\x9a\x36\xd3\x08\xdc\x70\x43\x55\xaf\x45\x03\xf3\x33\x81\xce\x89\x68\xa0\x1a\x88\xce\x4f\x93\x6a\xa7\xf1\x1e\x9d\xae\x56\x8c\xa6\x38\x2e\xad\xa3\xc4\x72\xce\x68\x6e\xce\x86\x49\x1b\x78\x74\xa6\x81\xcd\xe5\x8b\x79\x0c\xb0\x24\xcb\x0a\x77\x13\xca\xf7\x6a\x79\x64\x28\xc2\x5d\x56\xab\xf5\xca\xb5\x57\xb8\x3c\x6d\xbd\x0e\x97\x36\x7f\x42\x73\x8d\x10\x8f\xeb\x8a\x8b\xe5\x4e\x99\xa3\x1c\x9f\xda\xbd\xdb\xed\xea\xfd\x54\x30\x95\x7a\x86\x4a\x2e\xf7\xed\x2e\xd7\xff\x15\xf1\xf9\x94\x16\xaf\x83\x7c\xc7\xf4\x9c\x22\x92\x5b\x8b\x27\xb3\xa9\xa9\xa9\x5a\x8d\x3b\x44\xb0\x05\xbd\x21\x55\x1e\x2c\x52\xd7\xeb\xe6\x43\xb3\x3a\x00\x83\x61\xd0\x04\x56\x61\x9c\x12\xe1\x49\xdd\x98\xe5\x7c\x56\xc9\x06\x8b\x41\xf2\xd7\xc9\xe7\xf6\x25\xcf\xbd\x67\x67\x5f\x35\x7a\xa8\xb3\xff\x3d\xbd\xef\x21\xae\xe4\x73\xef\x49\x9e\xf7\x8d\x83\xaf\x54\x2a\x44\x9d\x9f\xb3\x5b\x1e\xb9\xc0\x6f\xf7\x40\x6b\xc9\xce\x76\x75\x6e\xbd\x7a\xd9\xb2\xab\xb7\x76\xee\xda\x89\x54\x41\xfd\xca\x33\x5d\x7b\x2e\x71\x9e\x79\xe5\x08\x49\x99\xb2\xd4\xff\x9a\x18\x36\x12\x54\xa1\x46\xa6\x30\x5a\xb4\xd0\xdd\x32\x65\x21\x25\x35\x5d\x8a\xa8\xd9\x52\x95\xb3\x27\xe7\x8f\xcf\xce\x92\xc9\xc2\x14\x4e\xce\x14\xb7\x45\xd6\x85\xb4\xaa\x0d\x02\x22\x2e\xcc\x50\x44\x46\x8b\xdf\x91\x91\xf0\x50\xb3\x93\x06\xd3\x68\x76\x3a\xdc\x55\x9c\x2c\x9f\x7e\xcf\xa6\xad\x27\xfc\x78\x4c\x0f\x22\x59\x35\x27\x27\x06\x06\x4b\x91\x6e\x5f\x58\x8b\x0d\x0e\xc6\xf6\x20\x2b\x70\x95\xe0\xa6\x72\xb9\xd8\x34\x99\x44\xde\x30\x10\x93\x21\x8c\x0e\xe5\xc9\x74\xf5\xe8\xd1\xd9\xa3\x47\xab\xa4\x52\xad\x14\x2a\xf5\x4a\xa1\x52\xb5\x69\x96\xe1\x17\x41\xce\xfd\x8e\x20\x3f\xb9\x38\x8d\xbc\xee\x4a\xb5\x5a\x29\xf0\x8f\xab\xd5\xa3\x36\x8a\x4d\xe6\x14\x5b\x0f\xce\x65\x24\x8f\x77\x6c\xde\x92\x80\xdd\x50\xd2\x4b\x9b\x8f\x19\xbf\xfa\xb9\x50\xb2\x5a\xdd\xfc\x5c\xb5\xba\x79\x93\xe5\xb5\x40\x85\x12\x99\x23\x5f\x83\x08\xf2\xdd\x5b\xb9\xa1\x6a\xd6\x9f\xf6\x67\x4b\x2c\xcf\xc3\x09\xda\x14\x07\xeb\x75\x52\xaf\xe3\x18\xc8\xd7\xcc\xb0\xf1\xc6\xee\x2c\xcc\xcf\x10\xbd\x30\x3f\x57\x9d\x9e\xb6\xc9\x3a\x1d\x62\xd5\x4b\xd9\x85\xf8\xeb\xf4\xd4\x8c\xfd\xb6\xab\xcd\x54\xe7\x67\x9b\xbd\x21\x03\x5a\xa0\x98\x37\xa9\xb1\xf2\x3e\x11\x73\x5e\x83\x3c\xea\x53\x0c\xc3\x69\xb0\x86\xf3\x13\x38\xcc\x2d\x73\xb9\x58\x48\x26\x42\x39\x24\x28\x7e\x18\x5f\x69\x66\xea\x56\x44\x8c\xb4\xe1\x91\x86\x14\x8d\xd4\x0a\x75\x63\xd7\xe8\xb1\xf9\xfb\xd0\x0f\xc9\x8c\xae\xfb\x63\xb3\x33\xc8\xde\xad\xeb\xb3\xa8\x20\xc2\x55\x2e\xa6\x0a\x85\x29\xdd\x1f\x33\x4e\xe2\xfc\x94\xae\x1b\x7f\x4f\x82\x71\x48\x63\xfe\x6a\x7d\xbe\x8e\x8a\x17\xa8\xae\xe7\x8f\xe9\xc7\x51\x08\x07\xff\x17\xc4\x75\xe4\x38\x94\xd1\x7e\x82\x7b\x90\x67\x3c\xd0\xbb\x92\xcf\x95\xb8\x17\xba\x72\x96\xc7\xab\x27\x93\xe3\xe3\x55\x7f\xcc\x73\x7b\xc4\xa5\x7e\xcc\x1f\x23\x84\xad\x6b\xeb\x22\xd3\x27\x81\x2b\x9a\x78\x3e\x11\x71\x79\x94\x4b\xa3\x7e\xba\xcc\xe9\x3c\x1a\x6b\xf8\x0f\x9b\xc3\xb5\x01\xa2\x14\x05\x80\xe5\xfe\x9c\xca\x91\xb0\x8a\xae\xed\x1c\xfe\xa2\x9f\xcc\xf1\xea\xa6\x1b\xf5\xcf\x17\xc6\x89\xce\xeb\xb2\x57\xff\x3b\x83\x72\x42\x6a\x12\x28\xa0\x14\x6b\xb9\xe9\x33\x07\xfb\x3c\x32\x52\x36\x1b\x18\x29\xe6\x17\xb4\x28\xcb\x46\x93\xe4\x15\x6f\xc0\x35\xe1\x57\x58\x3b\xb9\xd6\xe5\xa6\x2b\x5c\xa1\xad\xc6\xaf\x3b\xed\xa9\x44\x0f\x7a\x6e\xf3\xba\xae\xf6\x2b\x6d\xde\x61\xc5\xed\x8a\x33\xe7\x7b\x43\x55\xfc\xdd\x94\xb1\x94\x5c\x16\x23\x98\x08\xdf\xf2\x69\x4b\x3e\x9b\x56\x0d\xb4\xca\xb8\x75\xeb\x0d\xf9\xec\x9c\x81\xe3\xa0\xbf\x9b\x71\xb1\x2f\x58\x8b\x57\x71\x08\x0a\xa3\xbb\xa5\x7c\x8a\x4f\xd6\x6a\x8b\xf9\x13\x27\x7a\xad\xba\x98\x37\x71\xbb\xb7\x00\x6e\x69\x05\x81\x50\x38\xa2\xe6\x72\xe8\x64\xb5\xd5\xaa\xa8\xb2\x3c\x37\xba\x71\xe3\x68\xee\xb3\x18\x7f\x75\x25\x32\x7d\x48\xe1\x02\x8c\xf1\x70\xf0\x22\x6f\x9f\xe7\x75\x0c\xbb\xfa\x0a\x72\x7e\x2c\x19\x23\x99\x81\x92\xc5\xad\x45\xf8\x61\xa1\x7e\x25\xd9\xc2\xfd\xca\x66\xe2\x88\x3d\x95\xdc\x33\x66\x00\xa5\x9d\x6a\x38\x96\x89\x85\x13\xdd\x43\x1b\x86\xa2\xc9\xdc\xe6\x89\xcd\x6b\x06\xd6\xee\xb8\xfc\xf6\xcb\x87\xc8\x3d\x63\xef\xda\x69\x00\xb1\xaf\xb8\xa3\xc6\xc8\xa2\xee\x7e\x67\x5f\x32\x3b\x34\x94\x4d\xc7\x93\x3c\x06\xc5\xf2\xb3\x9c\xba\x73\xcf\xba\x0d\x97\x5f\xbe\xe1\xac\x21\x68\xf2\xc9\xd7\x86\x5e\x49\x8b\xf9\x72\x10\xa3\xed\x04\x15\x1e\x0a\x2e\x5f\x0c\x47\x46\xca\x96\x2d\x9d\xac\x28\xe4\xfc\x33\xb3\xe1\x3d\x7a\xe7\xe5\x9d\xfa\x9e\x73\xfc\xa7\xd7\x92\xef\xe9\xed\xd4\xd5\xc4\x40\xf8\x17\x47\x0b\x47\xd7\xc6\x4a\x64\xf2\xe2\xd3\x4e\x42\xa5\x42\x60\x5f\xdf\xe9\x13\xc9\x5a\x5f\xa9\x37\x55\x5c\xab\x17\x0a\xfa\xd6\x55\x84\xcf\x04\xd7\x74\xc6\x78\x31\xdc\xa3\x54\xa4\xac\x92\xea\x8a\xab\xaa\xf7\x27\xeb\xd5\x5b\x56\xd4\x1b\x4f\xdc\x86\x7f\x8a\xcc\x90\x2a\xc6\x65\x53\x4a\xe9\x52\xba\x44\x66\xaa\xf3\xd3\xa4\xc2\xc5\x9c\xcd\x35\x12\x0c\x82\xc5\x5d\xe7\x57\xeb\x2b\x6e\xa9\xd6\x93\xf7\x57\xaf\x22\x75\xeb\x11\xfe\x8f\xda\x0a\x34\x7c\xba\xa1\x7d\x2f\xd7\x5b\x0f\x46\x0c\xa2\x33\x97\x2b\x95\xb8\xa5\x47\x7d\xfa\x9a\xed\xdb\xaf\xe1\x86\x1d\x04\xc6\xeb\xef\xfa\x74\x28\xf4\xe9\x77\xd5\x4d\x19\x21\xb7\x8e\x4e\x59\x7e\xb0\x2c\x56\xaf\xa3\xe5\x9d\xfb\x2b\x9f\x9f\x44\x6d\xe4\x9a\xed\x79\xba\xa1\x93\x3c\x63\x53\x46\x46\x89\x75\x1d\x6f\x62\x11\x93\xa5\xec\x2f\xfa\x83\x45\x7f\x36\xed\x2f\xfa\xa7\xa6\xd5\x4a\x65\x7e\xa6\x82\xc3\x32\x7f\x38\x86\x5d\xb3\x79\x8f\x44\xea\x29\x8d\x8e\x82\x8b\x7e\x52\xaf\x56\xe7\xa7\xaa\xea\x2c\xa9\xcf\xcd\xcd\x15\x48\x65\x7e\x7a\x91\x56\x88\x68\xc1\xf8\x9f\x54\x6b\xb5\x93\x50\x53\x6b\x64\xb2\xb5\x15\x93\x4a\xb3\x74\x3a\x5a\xc7\xcb\x4a\x69\x55\x27\x93\xf3\x35\x52\x6f\x0c\x56\x35\xd6\xaa\xa2\xbb\xcd\x61\xba\xe7\xe7\x2a\x95\x53\x61\x46\x0e\x01\x85\x2c\xcc\x88\xff\x90\x49\xe3\x72\x30\x6f\x25\x19\xbf\x9f\xb6\x7d\x7f\x4a\x4d\x93\x69\x93\xf5\x4f\x60\x7e\x12\x7d\x76\x93\xc9\xea\x4c\xb5\x3a\x31\x3e\x5e\xab\x8a\x07\xac\xb3\xbe\xb0\x4e\x63\x3e\xb3\xe2\xe2\x35\xf9\x65\xdc\x1b\x70\xad\x56\xaf\xa9\xb5\xb9\xda\x5c\xad\x56\x23\x93\xf5\x7a\xdd\xf8\xe1\x7f\x38\xee\xd7\x5c\x1b\x42\xc8\x08\x6a\x4b\x15\xfd\xc6\xf9\x9d\x99\x9b\xab\xd7\xe6\x27\x71\xb2\x8d\x8f\x8c\xa9\x46\x8d\x2b\xfb\x97\xd6\x98\xaa\xa4\x36\x3f\x49\x44\x51\x73\xdd\x8d\x52\x1d\x5c\x87\x9e\xb4\x90\x8d\xc5\x96\xf7\x6c\x2b\x59\x89\x2e\x91\x51\x61\x7e\x16\xc5\x2f\xc6\xeb\x1c\x7f\x32\x36\xe9\x24\x12\x90\xc6\x13\xfe\x5e\xfc\x99\xc3\xac\x3d\x64\x8e\x1c\xb3\x7c\xdd\x59\x3c\x0c\x0b\x42\x47\xd0\xf4\x66\xe4\x35\xc4\x48\x43\x68\xab\x9f\xb8\xbf\x9e\x48\xd4\x8d\x5f\xa4\x82\xd8\xe8\x47\xd1\x5e\xff\xf9\x9d\x1b\x37\xee\xdc\xb9\x71\x23\x08\x2a\xef\x84\xc0\xc5\x7a\x0c\x38\x1d\xe4\x8e\x17\xb9\xd1\x6b\x39\xdf\x88\x91\xae\xe4\x72\xf8\x96\x1f\x29\xe7\x72\x11\x61\xf7\x1a\x91\xb9\xdd\xeb\x7f\xb0\x58\xee\x73\xee\xb5\x7d\x91\xce\xb4\x53\x8e\xe5\xe8\x3d\x71\x72\x63\xdc\x51\xf2\xea\x43\xe7\xd5\x13\xd1\xb2\x5b\xff\x61\x28\x38\x90\x1f\x38\xef\x43\x89\xce\x15\x63\xce\xb5\xa4\x92\x8b\x49\xc5\xce\x48\xdf\x5a\x77\x9a\xe6\x62\xb2\xf3\x9e\xf8\xfc\x2d\x71\xc7\xb0\x37\xb0\x73\xe3\x58\x9f\xbb\xaf\xec\x1c\xe8\xd8\xb9\x71\x55\x61\x2c\x18\xea\x5b\xfb\xff\xbc\x8c\xc8\x4e\xe9\x25\x9a\xf5\x28\xb8\x6d\x6c\x5e\x29\x65\x2d\x70\x66\x57\xa6\x18\xaf\x56\xf1\x2f\xd1\xeb\xf5\x9a\xae\x13\xb5\x33\x30\x17\x88\x4e\x14\x0a\x13\xd1\xc0\x5c\xa0\xd3\x92\x61\xce\x88\x93\xd4\xdf\x6c\x21\xea\x10\x5a\x4d\x8b\x69\x34\x71\x8f\xa8\x64\xaa\xa2\xd7\xf5\x8a\xd1\x62\xad\x5e\x6b\x0c\xba\x12\x0d\xd4\x03\xd1\x99\x7a\xa1\x50\x28\xf0\x91\xea\xba\xde\x18\x20\xf2\x08\x74\xbb\x1f\x06\x86\xf2\xd3\x52\xd6\xf2\x7a\xbd\x48\x5b\xfa\xf8\x6c\xa3\x85\x71\xe4\x3d\x18\xf8\xe7\x82\x6a\x8d\xbb\x6d\x33\x4a\xc9\x34\xae\x47\x8e\x12\xa2\x56\x19\x81\x58\xc5\x08\xa9\x4d\xa4\x6a\x72\x6e\x38\x97\xd6\x82\x21\xd4\x67\xd9\xb4\x73\x7b\x69\xfb\x69\x2b\xb7\x65\xe4\x99\x09\xad\xe6\x93\xd3\xc1\x94\x13\xb5\x60\xaa\xd5\xd3\xb6\x6f\x5b\x59\xcc\xcb\xfc\x86\xe3\x31\xbe\x28\xde\xb1\x91\xb4\x92\x56\xd3\x04\xee\x98\xff\x99\x82\x2a\x08\x93\x33\x7a\xc1\xe2\xac\x70\x1f\x02\x06\xae\x90\xe7\x0a\xcf\xf2\x29\xa2\x3f\x13\x88\xaf\x5c\x19\x8f\xaf\x5c\x79\xd6\x62\xe1\x9f\x27\x57\xc5\x63\xab\x56\xc5\xe2\x5b\xd7\xee\x1c\x1b\xdb\x49\x88\x1e\x6d\xe8\xde\x44\xed\x9a\xa5\x41\x8c\x33\x9d\xe7\xbc\xf1\x90\xac\x66\x87\xc7\xa8\xa9\x0d\xd7\xea\xfc\xc5\x00\x78\xff\xb0\x61\xa8\x52\x08\x75\x86\x62\x99\x58\xa1\xa3\x59\xe5\xb4\x3e\x94\x8d\x9f\x16\x89\xa4\x3b\xc2\x5e\xa3\x0f\xd9\xdf\xd8\x45\x73\x3f\x46\xce\x59\xa5\x05\xd2\x2f\xb8\x29\x6c\xd1\xca\x30\x62\x59\xd3\x4d\xc1\x2c\xe9\x9e\x81\x45\xf6\x00\x90\x86\x0b\xc3\xa2\xbc\xa4\xac\x8f\x80\xae\xea\xba\xaa\x5f\xbc\x88\xcc\x8f\xe8\x46\x8e\x5e\x5b\x54\xf4\xd7\x68\x8f\x09\x4e\x72\x51\xb5\x7c\xdc\x2f\x6c\x67\xb2\x56\xf3\x2e\xd6\x44\x45\x1d\x5f\x5c\xb2\x68\x40\xc3\x69\x32\x47\x2a\xe8\xa9\x35\x02\x29\x93\x16\x2b\x5b\x67\x96\x4b\x3e\xc4\x30\x55\xeb\x1d\x4f\x5e\x51\x25\xcf\xe9\xba\x27\x18\xf4\xe8\xda\x0d\x7b\x34\xed\xe8\x1e\x4d\xab\x6a\x9a\xae\x69\xa4\x5d\x55\x4b\x41\x8f\xea\x09\xea\x75\x4d\xd3\xf6\xec\x31\x7e\xda\xf5\x7a\xa9\x54\xd7\x6d\x1a\x09\x5c\xd6\x12\x45\x0a\xde\x64\xb1\x15\xd5\x6c\x8f\xc0\xfe\xd1\xfa\xbb\xc6\x83\x82\xce\x4f\x57\x2a\x64\xa2\x52\x99\x9f\x26\xe3\x95\xd9\x39\x14\x2e\x4d\x54\x2a\x95\xa9\x7a\xbd\x52\x31\xf6\x79\x09\x2a\xe4\x39\x32\x23\x78\x2c\xb9\x7c\xbe\x94\xa2\xa5\x14\x0d\x87\x15\x59\xce\x3b\x8c\x4d\xaf\x6f\x3f\x9c\x49\x85\x26\x96\xad\x7a\xaf\xc7\xc3\xa4\xb0\x67\xfe\x5e\x72\x74\x7e\xe2\xf9\x88\xd6\x76\x8d\x73\x28\xf1\x95\xf6\xe9\xa4\x14\xf1\x78\xdc\xec\x0c\x3c\xf1\x79\xa8\x90\x97\xc8\xa3\xbc\x3e\x08\xcb\x8a\xdc\x41\x73\x06\xea\x69\xfc\x8c\x60\x85\x3f\x92\x3d\x9e\xc3\xdb\xdf\x9b\x51\x56\xa4\x0a\x13\x3b\x97\x7d\xfa\x3a\xcf\xfc\x21\xa3\x4a\xb2\x36\x16\x96\xd2\xe1\x64\x9b\xfb\x02\xa7\x96\xf8\x4c\xfb\xc7\x93\xd2\xab\x58\x67\x1d\xaa\xc6\x96\x82\x76\x8c\x39\xc4\x19\xa5\x45\x63\x67\x97\x8b\x78\xd8\xeb\xa8\xe9\xb5\x79\x62\x73\xad\xb0\x79\xcf\x9e\xcd\x33\x06\x7e\x5f\xda\xbc\xf9\x57\xef\xdb\xb3\x07\x63\x38\x4c\x93\x49\x52\x01\x97\xf0\x13\x91\x15\x8e\x22\xf0\x36\x46\x45\xc6\xa2\xcd\x92\x62\x15\x55\xb3\x64\xb2\xa2\xeb\xda\x9e\x19\x97\x7b\x53\x41\x13\x77\xf1\x0d\x9a\x46\x34\x55\xd3\xeb\x6e\x57\x7b\x45\x43\x65\x89\x71\x97\xbb\xde\x14\x19\x3c\x28\xb8\x54\x0b\x2c\xef\x67\xed\x56\xf7\x73\x85\xc2\x4c\x6b\xbc\xe6\x86\x2c\x1d\x39\x66\x1c\x27\x46\x5b\x7b\x71\x84\x5f\xfe\x64\xf2\xbd\xcb\x92\xb3\xc2\x51\xef\x0c\xbe\x7d\x56\xd7\x85\x65\x17\xc8\xb0\x0b\xb6\x93\x2f\x93\x3f\x41\x48\x14\x00\x15\x3a\xd1\xb7\x9b\x30\x95\x0f\x08\x51\x86\x52\x2a\xfa\xb3\xc6\x0e\xf1\x17\x55\x52\x5a\xbf\xfe\x92\xf5\xeb\xaf\xd9\xb9\xf3\xf0\xf8\xf8\xbe\x6a\x95\x54\xab\xd5\x5b\x8d\x94\x4b\xd6\x93\x36\x23\xed\xf0\xce\x8a\x81\xb8\x1a\x19\x2d\x96\x0d\xcb\x17\x5a\x36\x44\x32\xaa\x1a\x2a\xe2\xba\x70\xa7\x37\x25\xd3\xcb\x4d\x76\x38\x9f\xcb\xe7\xec\xd6\x0e\x3f\xec\xed\xed\x08\xe5\xc2\x6a\xb2\xb7\x10\xea\xcc\xa5\x83\x6a\x8e\x39\x68\x5b\x93\xd9\x43\x7c\xa5\xbc\xd2\xef\x89\x06\x03\x83\x05\x79\x59\x24\x1e\x54\x13\x8a\xdc\x46\xdb\xc0\x01\x63\xa0\x93\xa7\xc9\x0c\x8c\xc0\x26\xb8\x1c\x0e\xc3\x27\x8c\x53\x90\xcb\x9b\xc2\x40\x1e\x62\x38\x9b\x41\x4b\xb2\x48\x58\xc6\x38\x39\xc2\xc8\xcb\x40\x55\x30\x28\x75\x24\x1c\x09\x2b\x72\x1e\x3d\x8e\x0d\xe1\x73\x36\x63\xd4\x50\x1c\x52\x78\xa4\x1d\x5e\x57\xa6\xa9\x38\xcb\xe4\xca\x23\xe5\x91\x21\xf1\x71\x2e\x9f\xcb\x29\xb2\x22\xf7\x64\x30\x1c\xaa\x9c\x13\xe3\x95\xc9\x18\x1b\x48\x0f\xe4\x46\xf2\xd1\x5c\xec\xc2\xca\xc0\x96\xa0\xdb\xcb\x42\xcc\xd7\xa1\xee\x18\x3e\xfb\xca\xfc\x48\x2e\x96\x8b\xf6\x26\x0a\x2e\x4a\xd7\x94\x97\x51\xaf\xcb\x45\x68\xbb\xdb\xdb\x1b\x2b\xb6\xb7\x9d\x26\xb1\xb8\x2f\x72\xd6\xde\xb3\xc2\x2b\xb7\xaf\x0c\x7a\xe2\x4e\x27\x3b\xa2\xc8\x92\x36\x38\x74\x68\x68\x45\x4a\x76\xb5\x39\xe2\xfd\x03\xfb\x06\xfa\x13\x8c\xf4\x49\x64\xd5\xea\x75\x23\xb2\xcb\xb1\xf2\xac\x75\x15\x45\xd2\xdd\xe9\x81\x75\xb1\x9e\x9e\x98\xbf\xb3\xd3\xbf\x7a\x7c\x79\x3e\x9a\xed\xed\x69\x93\x5d\xfd\xe7\x26\xfb\x47\x2e\x3b\x33\xd6\xdd\x1d\x33\x40\xfb\x68\x6f\xa2\x9d\xb8\x9d\x9f\xed\x19\xa1\xcc\xd1\x4e\x69\x30\xbb\xb2\xfd\x0b\x2c\x9e\xec\x1d\x5e\xbe\x7e\xfd\xf2\xb6\xb6\x7c\xb9\x9c\x1f\xcc\x44\xba\x14\x27\x23\xb4\x4d\x1e\xe8\x8c\xc5\x3a\xfb\xdb\x1c\xb2\x2b\x1f\x89\x90\xce\x48\xaf\xb4\x9f\x24\x93\x4c\x69\x97\x34\x4d\xf2\x99\xd1\x30\x5e\xb2\x3c\x45\x74\x88\x88\x9f\x11\x25\xaf\x94\x89\xd2\x93\x56\xd3\xdb\x0f\xad\x7e\xff\x9b\x87\x56\xbf\x7f\xd7\x6a\x32\xb0\x7a\xfe\x7d\x88\xff\x8f\xbc\x7f\xf5\xa1\x37\xdf\xbf\xfa\xd0\xae\xd5\xf3\x3f\x5c\x1d\xd3\xed\x51\xa3\x3d\xe8\x7f\x91\xfb\xd0\xe3\xba\xce\x66\x54\x6c\x5b\xb8\xf0\xd2\x70\xd0\x3a\xb2\x64\xcd\xc0\xda\x9d\x6b\x07\x02\xe3\x57\x1f\xde\x51\x41\xda\xa6\x52\xad\xe3\xd1\xfc\x17\xad\xdc\xb7\x76\x6d\x5f\x59\xf3\xac\x58\xf1\x9b\x1d\x63\xe7\xf6\xad\x30\xce\xec\x8a\xbe\x73\xc7\xe6\x9f\x52\x55\x97\xdb\xbd\x84\xfe\x5a\x4f\x8b\xa3\x21\xc5\xd4\x5f\x9b\x8a\xd9\xb4\x0e\xc7\x85\x02\x9b\xc9\xc2\x8c\xfa\x3f\xcc\x29\x0e\x53\x3b\xd0\x85\x72\xb4\x51\xb4\x0d\x47\xa7\x53\x45\x1e\x7f\x2d\x5b\x42\x43\x0d\x21\x58\xb5\x08\x01\xfb\xe5\x21\x50\xa3\x93\xeb\x4a\xa1\xe1\x52\xa8\xb4\x4e\x9d\xf6\x47\x0b\xf3\x75\xa2\xea\xfa\x94\x3e\x89\x62\x98\xe9\x5a\xcd\x0a\x3d\x45\x2a\xb9\xb1\x7c\x7e\x2c\x57\xa9\x76\x06\x0c\xc2\x51\xd7\x0b\x05\xd4\x64\x0e\x74\xce\xd7\x8f\x1e\x9d\x76\xbb\xa6\x8d\x62\xd3\x2e\x8c\x2e\x75\x39\x00\xf9\x22\x99\x86\x04\xfa\xf6\x0d\xab\xaa\x22\x73\x35\x18\xc4\x7b\x8b\x11\xcb\xd8\x33\x62\x9d\x03\x85\x2f\x06\xb9\x2b\xe8\x23\x01\xf7\xa7\x3c\xae\x09\xbf\xd2\x46\x18\x39\x3b\x18\x0b\xfa\x99\xf3\xbd\xfa\xe8\xd6\xd1\x82\xd6\x97\xfa\x92\x2b\x24\xbd\xd7\xdd\x61\x64\x93\x8e\x7f\xf2\x06\x02\xde\x3a\x1d\x4a\x0c\xf7\x8e\x8e\xf6\x96\xe2\x5b\xc3\xa9\x54\xd8\xb6\xd2\x06\x36\x5a\xe2\x9e\xc2\xb9\x80\x91\x47\xed\x31\x8e\x64\x7e\x78\x24\x52\x54\xc3\x22\xe8\x3a\x47\x19\x79\x24\x81\x61\x33\x08\x74\xa0\xcf\xb9\x32\xdf\x37\x36\xd8\x13\xec\xcc\xc5\xd4\xf4\x48\x21\x4c\x14\x39\xd1\x3d\x34\x3a\x54\xf1\x47\x0b\x35\x7f\x0c\x5d\x94\xd7\x7b\x06\xc7\xfa\xf2\x2b\x9d\x7d\x4a\x5a\x8d\xe5\x3a\x7f\xd0\x99\xf0\x10\x26\xa7\xf2\x85\x65\x67\xc7\xfc\x37\x4c\xc4\xfc\x7f\xc7\xfd\x97\x53\x8b\xcf\x8f\xbc\xf4\x9e\x7c\x59\xc5\x60\xc2\xe8\xfb\x9d\x54\xaa\xd5\xc9\xc9\x7a\xb5\x3a\x39\x87\x11\x7e\x90\xab\x6e\x8f\x53\xc9\x2c\xaf\xd6\xa7\x8e\x5d\x68\xe1\xdd\xdc\xbe\x78\x41\x50\x3f\x74\xcf\x52\x9d\x9b\x43\x49\x2d\x9a\xe9\x10\xdd\x1f\x33\x50\xec\xa3\x5c\x3d\x62\xa1\x7d\x59\xcf\x08\x06\x56\x55\xca\xb9\x5c\xbe\x14\x0e\x47\xf2\xb2\x6c\xf1\xe7\x88\x3a\x78\xb6\x52\x71\x5e\xb5\xb5\xae\x9c\x3d\xb8\xf5\x2a\xe7\x89\xa1\x73\xcf\x1d\xda\x76\xed\xb5\xdb\xf6\x29\x1b\x07\xb7\x5e\xad\x9c\x18\xdc\xa8\xac\x73\x5e\xb5\xf5\x43\xce\xf1\x7d\xe3\xce\x75\xce\x1b\x1f\xbc\xd1\xd9\x22\x23\x30\x30\x0c\xb3\x81\x45\xea\x8f\x7b\xee\x75\x5e\x7d\x5e\xaf\x3b\x71\xde\xd5\x4e\x34\xd5\x31\x6a\xff\x8e\x53\x3b\x67\x9f\x72\x42\x73\xde\xab\xec\x3b\xa7\x57\xc9\xf4\x66\x94\x7b\x79\xdd\xed\x36\x89\x4e\xab\x9f\xe9\xbc\x81\x41\x19\x38\x65\x44\xd8\xd4\xdb\x29\xfd\xac\x8d\x3f\x6f\x3e\x23\xbe\x39\x33\x35\x5f\x9f\x3a\xae\xd7\x51\x59\xa6\xae\x9f\xa8\xfd\x6a\xe2\x57\x35\x32\x35\x5e\x45\x46\xbb\x6e\xfd\x27\x1c\x52\x37\x45\x3f\xfa\x4f\xe2\xb1\x53\xe3\x13\x95\xca\xd1\x70\xb8\x62\x6a\x69\xd7\x84\xcf\x6e\xd5\xb8\x05\xad\x08\xe1\xd9\x52\x31\xd7\x88\x75\xdb\xf0\x6a\xa9\x64\xcd\xb0\xb7\x45\xa3\x0c\xf9\x00\x92\xdf\x8f\xac\x5e\xad\xa4\x43\xb1\x5c\x2e\x16\x4a\x9f\x5c\x36\x3a\xb6\x6b\x8d\xbc\x2a\xeb\x3c\x2d\xdf\x3f\x36\xd6\xff\x6b\x7d\xcb\xee\x49\xa4\xc6\x1d\x7a\x30\x92\x1b\xce\x75\xde\xc5\x56\xeb\xfd\x6b\xd6\xf4\x87\x02\xab\x7a\x06\xd7\xec\x1a\xd3\x0b\xdc\x9a\x76\x88\x4c\x91\x17\x40\x46\x7c\x21\x3d\x9c\xcf\x2b\xb2\xc5\x24\x2d\x97\xeb\x04\x72\xbb\x76\xe5\x7e\xc3\x6d\xb7\x66\xca\xb9\xdd\x17\xe7\x36\x0e\x6d\xc0\xb8\xa5\x43\xef\x47\x9a\xb9\x80\xb8\xa4\x8e\xda\x10\x67\xc0\x66\x80\x9e\xa4\x22\x87\x8d\x3b\x2d\x97\xcd\x66\xf0\x86\x1b\x19\x29\x1b\xff\xca\x23\x45\xe3\x6e\xc3\xab\x2f\x3c\x32\xbc\x20\x46\x70\x93\x5f\x7d\x72\x1d\xf5\x48\x1e\xe6\x26\x2e\xe6\x60\xed\x79\xe5\xfc\x84\x94\x38\x5f\xc9\xb7\xb3\x90\x3f\xdc\x96\x6e\x0b\x04\x25\x26\xb7\xbb\x1d\x4c\x0a\x06\x5c\x19\x86\xda\x85\x1f\xc2\xdf\x9f\xb3\x3d\x7f\x87\x7a\x24\xaf\xc3\x2b\xfb\x14\xbf\x54\x70\x92\xb6\x36\xe2\x2c\x84\x0a\x81\x70\x7b\x6f\x7b\x58\xa6\x84\x50\x39\xdc\xde\xbb\x0d\x0d\x15\x6e\x40\x93\x4f\x0d\x7f\x8f\xe0\x03\x50\x98\x02\x9d\x54\xf1\x3e\x51\xd1\xc7\x3c\xe2\xe1\x08\xcd\xc2\x66\x7f\x49\xb5\x52\x29\xe4\x86\x73\x85\x49\x74\xfc\x3f\x37\x3e\x31\x71\xd4\x58\x12\xff\x87\x38\x50\x10\x1a\x56\x27\xec\xd6\xa9\xc4\x8c\x39\x2b\xfe\xca\xa6\xd7\x5d\xb3\xce\x87\xc7\xc6\xb2\x7d\x7d\x59\x4d\xeb\xf6\x7a\x1f\xdf\x77\xc3\xfc\xf1\xf1\xa1\x0d\x43\x43\x1b\xc8\xcc\xba\xa9\xb1\x4c\xf1\xe6\xc1\x9e\xec\x4e\xad\x3b\xd8\x1f\x3c\x8e\x5e\x74\x6f\x47\xbd\x73\xc0\x93\xc1\x71\xc8\x85\xa7\x62\x39\x14\x01\x08\xca\x19\xd1\x83\x60\x98\x58\x3a\x31\x5c\x48\x65\xc6\x3b\x37\xf9\x6c\x0e\xe3\x19\x7d\x76\xe8\xb9\xd8\xc4\x44\xdf\xda\xf9\x3a\xba\xc0\xe7\x02\x2a\x94\xea\xa0\x5c\x98\x54\x27\x26\x62\x39\x7d\xed\xfc\x5f\x8a\x54\x3c\x35\x96\xd1\xd7\xb8\x01\x8e\x90\x4f\x09\xc8\xab\x8d\x41\x06\x21\x1c\x27\x9e\x4a\x61\xa1\x22\x89\x12\x95\x7c\x49\x56\x22\x45\x53\xb8\xcb\x22\x59\x25\x4f\xa6\x2b\x95\x7b\x14\x4f\x6c\x34\x90\xf4\x05\x49\xb0\x2b\xb4\x25\xd4\x75\x8b\xb6\x0d\x45\xf2\x7b\x46\xf4\xcd\x5a\xa5\x52\xd1\xee\x21\x03\x24\x1a\x4c\xfb\x12\xa1\x0f\xc4\x42\x5b\x56\xf8\x3d\xb7\x90\x1a\x4a\xe5\xe7\x7f\x3b\xb2\x49\x03\x20\xa0\x42\x9d\xcc\x91\xba\x31\x07\x20\x1c\xd2\x36\x1c\xd6\x5a\x6f\x76\xb7\xb5\x06\x41\x37\x62\xbe\x91\xb9\x98\xdf\xc9\xb6\xd0\x58\x26\x46\xcb\x72\x9b\x7c\x89\xf1\x64\x24\x5d\x42\xa2\x99\x18\x19\x61\x3e\xcc\x24\x57\x64\xa2\x64\x8b\xec\x30\x60\xae\x43\x2e\x53\x7a\x89\xec\xf0\xa3\x2f\x8b\x4b\x98\xd3\x8f\x1f\x8c\x10\xb2\xd9\x48\x6c\xf2\xf4\x99\x34\xb5\x5e\x23\xd9\xb2\x81\x0d\x86\xc2\x43\x65\x8e\x01\x67\xf2\xc6\x36\x8b\x94\x49\xfb\xa6\x8e\x0b\x67\x3e\xb5\xaa\xef\x03\x7d\xfa\xf8\xe1\x3e\x5d\x1f\x1d\x3d\x36\x3a\xba\xff\xfe\xd1\x95\x5c\x4d\x77\xa2\x7f\x75\x1f\xd1\xfb\x0e\xed\xec\xd3\xd7\x9c\x57\x1e\x1d\x2d\xff\xd1\xfe\xd1\xd5\xad\x9e\x5d\x7a\xca\xf9\x52\x56\xb5\xe4\xb3\xbb\xfc\x7b\x34\x6e\x77\xfa\x60\x62\xe5\xb5\xf5\x13\x66\xec\x76\x15\x80\xcc\x51\xc0\xd8\x9a\x9c\xc9\x98\xcf\xf3\x83\x6b\x5d\xea\x8b\xfe\x25\x73\xc5\xec\x1f\x76\x47\x1f\x8a\x13\xa5\x4d\x91\x2f\x0a\xc6\x82\x6a\x20\x11\x50\x83\xb1\x60\x38\x18\x0b\x92\xdb\xe6\x9f\xcd\x0e\x45\xa7\x62\x32\x1b\x9e\x37\x68\xd6\xa3\xcf\x19\x37\xfb\x73\x8f\x19\xcf\x8f\x1d\xf4\x04\x83\x5c\x1e\xc1\xe7\xc4\xd8\x21\xe8\x2f\x40\xb8\xf9\xe1\x0e\x7e\x2c\xc7\x38\xe8\x02\x28\x14\x31\xa8\xf1\x30\xa9\x14\xf3\xb9\x91\x4d\x63\x97\x85\x36\xaf\x23\x64\xdd\xe6\xd0\x65\x63\x9b\x46\x72\xf9\x62\xfe\xf4\xc0\x07\x3e\x4e\xe9\xc7\x3f\x10\x58\x77\x43\x26\xb7\x62\xe3\xa8\xae\x24\x14\x7d\x74\xe3\x8a\x5c\x66\x59\x46\xf7\x7a\xbd\x7a\x66\x99\xcd\xc7\x6b\x27\x6a\xa6\xaf\x33\xf6\x69\x8f\xdf\x38\x23\x11\x4b\x2c\x13\xc1\x30\xf8\x06\x42\x11\x8e\x8c\x8c\x94\xcb\xd9\x14\x2d\xe7\xf2\xc3\xf9\xac\xda\x08\x46\x1e\x89\x94\xf3\x0d\xc0\x6d\xb2\x67\xf3\xd9\x46\x88\xdc\x69\xb7\xeb\x89\xe8\xb2\xc8\x39\xf1\xb6\xd4\xca\x8e\x95\x41\xbf\x7e\xd4\xe5\x3e\xea\xea\x70\xfb\x28\xab\x2a\x0e\x8f\xdb\x3b\x4a\x2f\x58\xce\xc2\x21\x35\x99\x54\x83\x1e\x1a\xa3\xd1\x74\x77\xb1\xd8\xdd\xb3\xfc\x49\x63\x3b\x4d\xa9\x68\x7e\x54\x0f\x56\x49\xd8\xe5\x1e\x0f\x87\xc3\xf9\xee\xd3\x7c\xa7\x05\x57\xe9\xee\x3f\x0b\xfa\xbd\x5d\x4e\x67\xc4\xb7\xbc\xbd\x63\x43\xbb\x94\x76\x87\x52\x85\x94\x87\x44\x49\xa4\xb8\xb1\x38\xf8\xd9\xa8\x7f\xfe\x84\x3f\x5a\x89\xfa\x49\xd8\x1f\xad\x20\x66\x09\xe4\x9f\xc8\x3f\xa1\x27\x99\x4e\xe1\x6b\x97\xdb\xe9\xe6\x4d\xb5\x14\xa5\x98\xcf\x2a\x4a\xc8\xd1\xf0\x44\x28\xc2\xf2\xe4\xf3\x65\xee\xaf\xe5\xa7\xd3\x24\x85\x6a\x29\xdf\xdb\xa7\x0f\x05\x09\xd9\x12\x5f\xe3\x51\xfd\xb1\x40\xf2\x73\xfe\xa8\xa3\x6b\xf9\xee\x38\x57\x4d\xf9\xe8\x34\xd7\x4c\xd1\xf5\x2c\x73\x7c\x31\xbe\x26\x10\xf5\x87\x3d\x5d\xa8\xa3\x72\xd9\xee\xb8\xdd\x6b\x04\x6a\xa5\xf4\x0c\x71\x13\xc5\xbc\x5a\xcc\x9b\x51\x55\xf2\xd9\x70\xb8\xc5\xbc\x0f\x0c\x84\x7c\xa5\x16\xaf\x66\x42\x03\xa9\xbe\xbe\x54\x3e\xdc\xe3\x2e\x6d\x69\x98\xfa\xd5\xd7\xee\x1c\x5b\x91\xa8\x66\x7a\xf5\xb1\x3e\xad\x2b\xdb\xec\xb2\x06\x67\x40\x26\x33\xe4\xef\xc1\x8f\x92\xfc\x86\xa7\x15\x25\x5f\x2c\x65\xf3\x18\x89\x27\xc2\x7d\xe3\x30\xa2\xe4\xb3\x8a\x3f\x4f\xa6\xfc\xd1\x4e\xff\xe4\xd5\x77\xab\x7f\x3a\xf5\xc1\x65\x06\x80\xbb\x9c\x7c\x33\x7e\xe3\x74\x55\x27\x33\xc8\x59\x8b\x92\x49\x5d\xd5\x97\x7d\x70\x5a\xaf\xe9\x3a\x91\xe7\x37\xc4\x6f\xac\x92\x09\x41\x93\x98\x9e\x7b\x82\xc8\xbd\x2c\x72\xe7\x3d\x4a\x44\x89\x20\x3b\xc3\x20\xd1\x1b\x7e\x7c\x36\x6f\x42\x47\x3e\x1f\x1e\xe8\x4f\xf6\x8b\x7f\xe7\xdb\x7d\xfa\x7c\x4b\x64\x0c\x24\x07\x06\x1e\xb3\xbc\xfb\x34\x64\xa0\x3a\x42\xf9\x88\x92\xcf\x1a\x10\x85\x1b\x1c\x96\xb2\x4a\x5e\xf8\x8c\x29\x96\x50\x2d\x59\x2d\x47\x14\xb5\x58\x8e\x28\x64\xe6\x5d\x67\x26\x2f\xd3\xf7\xa6\xce\x2c\x9c\x99\xda\xab\x5f\x96\x3c\xf3\x5d\xad\x09\x44\x5d\x32\xcb\x4a\xe0\x3a\xa3\xdc\xff\x3d\xb7\x73\x89\x70\xff\xff\xa4\xd8\x88\x0a\x99\xb7\x05\x3f\x32\x66\xb9\x27\x62\x06\x40\xe2\xbf\x91\x31\x5d\xa9\x8d\xab\xbd\xdc\x39\x75\xf5\x5c\x0c\xfc\xa8\x55\xab\x44\xaf\x8f\xe4\x86\x73\x37\xe4\x86\x73\x7a\x34\x40\xd4\xf1\x57\x50\x07\xf2\x7d\xe3\xe3\x47\xc4\x43\xa1\x3e\x61\x5c\xba\xc6\xcf\x74\xa0\x13\x08\x00\x7c\x82\x02\xb9\x9e\xc7\x9d\x47\xcb\x87\x7c\x39\xc2\x7b\xa2\xc8\x8a\xc2\xf1\x8d\x48\x44\xc9\x73\x1b\xae\xf2\x48\xb9\x4c\x2e\xde\x73\xc6\x19\x7b\x32\x71\x2d\x1a\x5e\x5d\x28\xac\x56\xcf\x0a\xae\x4e\xf3\x94\x74\xa7\x95\x42\xae\x5f\xbf\x7b\x7d\xa6\x33\xa1\x86\x0b\xab\x0b\xea\x58\xa0\x94\x6e\x79\xb7\x20\xfb\xf7\xb8\x5d\x1a\xc9\xe5\x94\x91\x70\x44\xc9\xe5\xca\xb2\xf1\x67\xb8\x3c\x5c\x1c\x89\x84\x23\x8a\x31\xfb\x07\x86\x6e\x1e\x1b\xbc\x7e\xc5\x8d\x2b\x56\xc8\xaa\x36\xb4\x66\xed\x5a\xb2\xe1\xd2\x6d\xa3\x9f\x49\x7d\x3c\x45\xd6\x0f\x69\xaa\xbc\x62\xc5\x8d\x2b\xae\x1f\x1c\xbb\x79\x68\xcd\xda\x3f\x5f\x4b\x36\x38\xe5\xd1\xc7\x53\x47\x92\x60\xe3\x18\x33\xe8\x32\xb9\x86\x56\x24\x48\x83\x36\xb0\xf8\xe2\xe5\x62\x44\x55\x8a\x25\x9b\x3a\x1d\xd1\xc7\xb9\x21\xdc\x78\x3d\xd0\x19\xf5\x57\xf5\xaa\x5e\x1f\x9f\xe4\x7a\xf8\x93\xa4\x56\x28\x60\x8c\x32\x5d\x8f\x06\x2a\xfe\x98\x71\xe5\x4f\xab\x68\xe5\x5a\x05\xd4\x3e\x68\x78\xbb\xe5\x5a\xb0\xe5\x46\x64\xff\xb0\x65\x0d\xd2\xfc\xd7\x4c\x5f\xa0\x7f\xb3\xdd\x16\x64\xfb\x5c\xdb\x6f\xfe\x8f\xa8\x36\xf7\xd4\x15\x4c\xfb\x21\xfe\x3e\xd7\xf6\x9b\xa7\x90\x81\x16\x8d\xf2\x86\xf6\x4f\x0f\x62\xa5\xe7\x03\x70\x9f\xe6\xdc\x08\x94\xfb\x25\xca\xc8\x59\xf4\xa4\x9b\xb1\x40\x77\x31\xdc\x23\xcb\x0a\xca\xb8\x72\x39\xce\xf4\x41\xbc\x75\x08\x5d\xe2\x86\x43\xdd\x2d\xfe\xcf\x8f\x4d\xbb\x87\x2b\xc3\xe9\x2b\xce\xf3\x10\x89\x13\xf1\x12\xf1\x9c\xd7\xfc\x4a\x6a\x92\x16\x09\xbf\xfb\xba\xdd\xe1\x48\x5a\xa2\x54\x4a\x47\xfc\x5d\x23\x67\xaf\xbc\x18\x5f\xe7\xbf\x8b\xae\x85\x2e\x44\xef\x42\x33\x5d\xd9\xec\x39\xab\x97\x93\x58\x26\x46\x96\xaf\x36\x1f\x36\x77\xf6\x28\xcb\xd7\xae\x5d\xae\xf4\x74\x3a\xdd\xce\xce\x1e\x25\xd7\x39\x38\x36\x88\x6f\x71\xf4\x59\xc4\xff\x99\x5c\x7d\x33\x66\x5d\xaf\x01\xdb\x5b\x23\xa2\xf7\x88\xc8\xa2\xf9\xac\x6c\x81\xf6\x52\x31\x92\x0e\xe5\x87\xc2\x6a\x96\xec\xc6\x93\x27\xcc\xbd\xfd\x51\x3d\x95\x28\x48\xfd\xd2\xb2\x44\xaa\x2f\xdf\xbf\x7c\x53\x88\x94\xa7\xce\xda\x3b\x55\xb5\x45\xa2\x39\x33\x92\x4e\xe9\x3d\xf1\x78\x8f\x9e\xea\x0b\xef\xd6\xf5\xd3\x7e\xb3\x77\x83\x0d\x1a\xc5\x51\xb2\x12\xe1\xb6\x5d\xdc\x9f\x2d\xf7\xe8\x5e\x46\xe8\x47\xbe\x9e\xec\x4f\x26\x53\xfd\xa9\x64\x6a\xcb\xd7\xb7\x24\x93\x4d\x6f\xdf\x31\x9e\x8c\x94\xe4\x96\xaf\x6f\x49\x25\x9b\xde\x4c\x4f\x81\x66\x4c\xa8\x28\xf7\x28\xd3\xcc\x3b\x37\x79\x20\x42\xfa\xac\x73\xb9\xcf\x50\xb6\x9e\x2d\xd6\x74\xa2\x56\x2a\x35\x63\x87\x47\x2b\xd9\x62\x31\x3b\x63\xde\x45\xc6\xec\x75\xf0\xb8\x5c\xaa\x2d\xaa\x40\xd1\x6f\xc6\xfd\x22\xb5\xfa\xc0\xea\xcd\x13\x9b\x2b\x3a\x57\xc7\x26\x37\x9d\xfe\x6d\xda\xe9\xc3\xa8\x8d\xee\x1e\x52\x9f\xff\x03\xdc\xbb\x00\x4e\x31\x0b\xd3\xe0\x85\x24\xfa\x0d\x2a\xc0\x00\x9c\x0e\x9b\x0c\xfc\x5f\x51\xb2\xe5\x91\x7c\xae\x5c\x2e\xa2\xa9\x0d\x7f\x35\xdf\x83\x36\xe1\x5a\x96\x87\x45\x6a\xd2\x85\x1d\x8a\x44\x1a\xe4\xc7\x69\x69\x99\x2c\x63\x0e\x35\x23\x93\x65\xd4\x11\xdc\x91\x91\x69\x2f\x75\x04\xa9\xf8\xeb\x2a\x20\x3f\xa0\x70\xf3\x3f\x73\xd9\x50\xa5\x2b\x18\xf2\x75\x49\x37\x60\xf0\x41\x72\xb3\xb6\xdc\xe5\x8e\xab\x99\x01\x97\x27\x1e\x22\xe9\x01\x97\x3b\x1e\x22\xfc\x6d\xfe\x07\x75\xf1\xdf\x14\xda\xe7\x4f\xf9\x42\x09\x5f\xda\xb1\x17\x23\x99\x01\x6a\x5c\xdb\xe3\x6d\x77\x98\x7a\x43\x7e\x94\x8c\x2f\x6e\xc3\x3d\x85\x81\x9c\x4c\xf1\x7d\x20\xca\x6f\xec\x68\x80\x40\x8d\x40\x45\xad\xd5\xe6\xbe\xfd\x6d\x82\x5a\xc3\xfc\xba\xb6\xc9\x1e\xa7\x51\x33\x69\x1b\x7c\x18\x00\xcc\xa8\x07\x99\x7c\x2e\x6f\xa0\x5d\xa5\xa1\x70\x24\x22\x73\xee\x6b\x46\x91\x1d\x82\x95\x9a\x6d\xfd\x5b\x1a\xe2\xbc\xd5\x62\xeb\x5f\xb5\xa5\xe4\x62\x1f\xd8\xcb\x13\x1d\xa9\xcb\x4f\xb9\x3d\x92\xfb\x4c\x55\x2b\x2d\x1b\xee\xfc\xb8\xcc\x3c\xee\x76\x4f\x78\x28\xec\x21\xfe\x48\xa4\xdd\xeb\x69\x8f\x74\xb6\xfe\x5d\x2c\xcd\xf8\xdb\x92\x36\x18\x69\xf7\x78\xdb\x23\x91\x45\x92\x3a\x23\xed\x1e\xc2\x49\xd5\xaa\x93\x39\xce\x0c\x6b\xa5\x60\xe7\xad\x12\x71\x3a\x3d\x1e\xe7\x1e\xaf\xa2\x78\xcd\x1f\xbd\xf1\xe8\x55\x6e\x5b\x32\x07\x6c\x5c\x2b\x1e\x27\x20\x8c\x31\x19\x2d\x32\x08\x45\x2d\xf9\xb5\xe3\xd2\x7c\x5d\x1a\x5f\x2b\xc5\x32\xb1\x93\x40\x8e\xcf\x8f\x93\x5d\x9e\x4b\xd6\xad\xbb\xc4\xd3\xa6\x18\x6b\xa5\xfc\x4d\x81\xfb\x73\x56\x85\x86\x78\x14\x96\x41\x3f\xac\xc0\xd8\x6c\xf9\x62\x1e\xb1\x64\x35\x83\x9c\xb9\xa2\xa9\xf0\x9a\x2d\x9b\xf1\xc9\xb2\x25\xce\xf2\x2f\xaa\xd9\x72\x51\xcd\xf6\x94\x0d\xbc\xab\x54\x24\xb5\xb5\x6b\x47\xba\x0a\x85\x2e\x7f\x38\xe2\x4b\x27\xfb\xb4\xa8\x7f\x75\xb2\x47\x5b\xd1\xed\x8b\x68\x79\x34\x27\x9a\x3f\x18\x23\xb5\xf8\xe4\xcc\xe4\xc3\x6b\x2f\xd4\x57\x16\x34\xd5\xe7\x8f\xe5\x13\x99\x78\x28\xb2\xdd\xbb\xb2\xbb\xaf\xaf\xbb\xa8\x45\xfc\xc9\xa7\x2a\x95\xca\x4c\x7c\x7e\x32\x7e\xb4\xc2\x6d\x41\x6b\xd8\xcb\xb0\xd0\xdf\x1c\x35\x23\x22\x21\x71\x6c\xef\x6a\x73\x07\xf1\x4f\x58\x6d\x74\xd3\x98\x9a\xf1\x94\xae\x45\xfd\x69\xb3\x97\x17\x8b\xfe\x45\x7c\x5d\x05\xb3\x8b\xa4\x32\x3f\x4d\x72\xb9\xae\x6c\x22\x14\x31\x3b\x59\xf2\xae\xcc\x0e\x0e\x76\x0f\x69\x11\xbf\x2f\xa2\x15\xba\x92\xdf\xad\x18\xff\x35\x45\x5b\x30\xa0\x90\xac\xe4\xf2\x23\xe5\xb0\x63\xc8\xa0\x3d\x8a\x21\x59\x31\x12\x72\x39\xb2\xa9\xa0\x69\x05\xe7\x19\x67\xcc\xff\xf3\xfa\xfd\xe9\xf4\xfe\xf5\xef\xde\xe2\x8f\xaa\xea\x96\x77\x93\x62\x24\x93\x89\xbc\xfb\x8c\x33\xae\x3c\xbd\x58\x3c\xfd\x82\x5b\xe2\xb2\x83\x39\xe3\xb7\x20\x46\xc4\x39\xca\xe7\x72\xfe\x83\x22\x67\xf3\x8a\x9c\x59\x4e\x95\x48\x28\x9b\x35\xfe\xa2\x63\x80\x72\x56\x89\x84\x91\xe6\xe3\x7f\x4b\x68\x21\x95\x0e\x97\x73\xe5\x70\x24\x3c\x92\xcf\xe5\x33\xf9\x5c\x79\xb8\x18\x0e\x47\x22\x49\xaa\x84\x22\xe4\x24\x21\x51\x4a\x3b\x14\xea\xa2\xde\xc8\x72\xbf\x14\xa2\x34\xd4\x16\x95\x54\x29\xf2\xb1\xac\x93\xca\x21\x46\x12\x19\x99\xca\x61\xc9\xa3\x46\x48\x60\x70\xb9\xd3\x9b\x70\x2a\x2e\xea\xea\x26\xd4\x4d\xa5\xae\x65\x8a\xc4\x14\x07\xa1\x64\x8c\x30\xa2\x51\x16\x96\xa4\xa4\x63\xff\xad\x12\xdb\xe6\xbf\x94\x49\x1f\x3b\x7d\xbd\x83\x5e\x91\x5f\xed\xa0\xa3\xdb\xef\x74\xa9\x24\x13\xf6\x86\x1c\x52\xbb\x92\xf0\x12\xe6\x60\x52\x8f\x9f\x49\xce\x0e\xa7\x83\x02\x80\x02\xbb\x80\x01\x91\x5c\x00\xb0\x07\x40\x3c\x13\x48\xc0\x1e\xf1\x4c\xc1\x0b\x87\xc5\x33\x83\xed\x70\x44\x3c\x4b\xb6\x32\x0e\x88\xc1\xcb\xe2\x59\x86\x02\xbc\x0d\x67\xc0\xb5\xb0\x1f\xde\x0f\xd7\xc1\xd5\x70\x25\x5c\x05\x07\x40\x83\x21\x18\x84\x15\x50\x02\x0d\xce\x82\x6b\xe1\x5a\xb8\x12\xf6\xc1\xe5\xd0\x07\x1a\x9c\x0d\xd7\xc0\x65\x30\x80\xda\x23\xfb\x60\x1f\x68\xb0\xdd\xfa\xee\x7a\x7c\xbb\x1c\xae\x87\xcb\xe1\x3a\x38\x08\x97\xc3\x5e\x18\x80\x73\xe0\x12\x38\x80\x29\x57\xc3\x25\xf8\xc5\xd9\x70\x19\x5c\x0b\xd7\xc0\xf5\x58\xfa\x4a\xb8\x01\xf6\xc1\x25\x70\x1d\x6c\xc0\xd4\x03\xf8\xf7\x3a\xb8\x12\x2e\xc7\x9e\x0c\xc0\x20\x68\xb0\x12\xb4\x53\xd6\xc4\x4b\x8c\x42\x3f\x0c\xe1\x8f\xd1\xff\x11\x18\xc7\xd2\xd7\xc3\xd5\x58\x4a\x83\x15\x58\xdb\x0a\x58\xb1\xa0\xae\x46\x4d\xfd\x2d\xbd\x12\x5e\x27\x00\x4e\xde\x0c\x43\xb0\xf8\x7f\xe4\xe4\x49\xa0\xb8\x07\xdd\x00\x90\x10\xea\xb4\x0c\xf2\x40\xa0\x97\x3d\x0f\x14\xa9\x32\x22\x7e\xda\x20\x09\xc3\x40\xf6\x5d\x72\xe0\x1a\x70\x72\x8a\xf5\xe4\x49\x9e\x7b\xfd\xd5\x37\x5e\x2e\xd2\x8e\x35\xb7\x20\xbe\xeb\x5b\xfc\xbb\x7d\x57\x5f\x79\x09\x38\xad\x36\x24\xd1\x9e\x13\xc8\x55\xbf\x83\x28\x8c\xc2\x05\xce\x57\xbd\xaf\x47\x8e\x25\xee\x4c\x3d\xb4\xec\x15\xfd\x9a\xfe\x2d\xcb\xbf\xba\xe2\x9a\xd3\xee\x58\x33\x58\x69\xab\x1c\xdf\xf4\xcd\xcd\xf7\x6f\x0d\xec\xde\x75\xe9\xd0\xa5\x0f\x5c\x71\xd7\x55\x47\xae\x7a\xdc\xa8\x83\xbe\x8a\x71\x61\x3c\x90\xc2\xe8\xfb\x5e\x48\x43\x18\x12\x10\x87\x8d\x70\x17\xbc\x40\x9c\xa4\x42\x0e\x91\x47\xc8\xcf\x68\x98\xae\xa7\xd7\xd1\xfb\xe9\xf7\xe9\x2f\x59\x27\x1b\x63\x97\xb2\x5b\xd8\x71\xf6\x3c\x7b\x5d\x72\x4b\x7d\xd2\x16\x69\x9f\x74\xbb\x74\x5c\xfa\xbe\xf4\x9a\x83\x3a\x92\x8e\x95\x8e\x71\xc7\x75\x8e\x3b\x1c\x0f\x39\x9e\x72\xbc\xec\x78\x5b\xf6\xc9\x05\x79\xbd\x7c\x91\x7c\x40\xbe\x5d\x7e\x40\xfe\xa6\xfc\xa2\xfc\x9a\xfc\x3b\x25\xa0\xf4\x2a\x63\xca\x76\xe5\x0a\xe5\x46\xe5\x0e\xe5\xf3\xca\x63\xca\xb3\xca\xcb\xca\x1b\xca\xbc\xd3\xeb\x4c\x3a\x07\x9c\x63\xce\x73\x9d\x17\x39\xaf\x72\x1e\x70\x7e\xd0\x79\x0b\x7d\x00\xba\xd0\xcb\x44\x14\xc2\x10\x87\x00\x78\x40\x83\x00\xf6\xd8\x83\x29\x7e\x08\x43\x16\xc2\xe0\x87\x0c\x78\x21\x8a\xf9\x19\x08\x43\x1a\x02\xf4\x4f\x20\xb1\xe4\xb7\x51\x08\x40\x08\xc7\x9f\x80\x18\xce\x44\x00\xeb\xf0\x19\x7f\xe9\x83\x10\xff\x4f\x7f\x19\x47\xfb\xb4\x98\xd1\x3a\xfd\xd3\x53\x7c\x67\xb4\xe0\xb3\xe5\xd8\xbf\xfb\x22\xc4\xfe\xd3\xed\x05\xa0\x07\xd2\x90\x02\x2f\x7d\xe8\x14\x5f\xb5\xb6\xd6\xf8\xea\x0b\xd0\xb9\xe4\x57\x41\x88\x8a\x27\x2f\xc4\xd1\xb3\x98\x31\x1b\x13\x58\x3e\x85\xb1\xe8\x3c\xe0\xc7\xa7\x2e\x7c\x32\x52\xe2\xe0\x01\x1f\x96\x30\xda\x0b\xd0\x7f\x82\x30\xf8\xc0\x07\x09\xc8\x60\xfc\x45\x0f\x74\xe0\xca\x18\x35\xfa\xb0\xbd\x6e\x7c\x8f\xa2\x1f\xcc\xbf\x07\x15\xbf\xed\x12\x25\x02\x10\x83\x04\xf8\xb1\x9c\xd1\x3f\x2f\xf8\x70\x77\x66\x21\x40\xdf\x86\x10\x68\xa0\x41\x18\x7d\x07\xc5\x20\x20\xea\x4f\x43\x06\x52\xf8\xad\x9f\x7f\x45\x7f\x05\xc1\x45\x4b\xa6\xb0\xcd\x46\xe9\x97\xd1\xc2\x70\xf1\xd6\x6d\x2d\xc3\x9f\x61\x69\x7f\xf3\x48\xc1\x83\x63\x4c\x9b\x33\x49\x7f\x8e\x65\xfc\x38\xa3\x2a\xce\x51\x17\xe6\x84\xf0\x3b\x2f\xa4\x20\x4d\xdf\x02\xff\xef\xeb\x19\xfd\x3c\xee\xea\x53\xaf\xd0\xdf\x8b\x9e\x2c\xd6\xf3\x04\x04\x21\x48\xff\x0d\x3a\x16\x6d\x89\x7f\x1f\x20\xb7\x59\xf9\x1a\xc2\x00\x9e\xdb\x85\x3d\x4f\x43\x82\x5e\x8d\x98\xf1\xd2\xab\xfe\x32\x74\x9c\xa2\x07\x71\xf6\x17\x56\xbe\xb1\xcf\xd3\x62\x56\x8c\xf9\x4a\xe3\x3e\xf9\x19\x74\x9c\x6a\x9f\xd0\x7f\xc6\x15\xb0\xe7\xdb\x77\xd9\x87\x70\x3e\x1b\xbd\xe3\x7d\xea\xc6\x54\x3f\x7d\x13\xbc\x8b\x8e\x1d\x21\x06\x7b\x02\x67\x21\x2a\xde\x8d\xfa\x32\x58\xd6\xd8\x63\x35\x5c\x8b\x85\xa3\xce\x40\x17\xb9\x15\x53\xfc\xb8\xe3\x12\xf6\xb9\x02\x8d\xee\x6b\xfa\x2e\x88\x63\x36\x7b\xf3\x8f\xd8\x77\x63\xef\xf3\x3e\x75\xa0\x55\xab\x01\xa3\x72\xf0\xe3\xa6\x3c\x8f\x98\x01\x03\x2e\x68\xf4\x30\xb8\x6d\x75\x66\x30\xe2\x26\xd6\x48\xdc\xe0\xc6\x79\xf4\xa2\x77\x57\x0f\xce\xbc\xb1\x02\x39\xb8\x02\xdc\x4d\x7d\x34\xe8\xb7\x80\xf1\x43\x7f\x01\x6e\xd0\xa0\x0b\xe1\x02\xdf\x71\x02\xee\xd3\x37\xc0\x0d\x71\x84\x47\x19\x71\x46\xc5\x8c\xd1\x0b\xad\xda\xa2\x90\xc0\x3d\x6c\xde\x14\xff\x03\x75\x4d\x17\xe9\x37\x7d\x0d\x2d\x8d\x9a\xd7\x35\x01\x3d\xf0\x77\x22\xdd\xfc\xc2\xa8\x29\x06\x01\x9a\xc2\xbb\xc8\x8f\x75\xd8\xe6\x94\xb4\x43\x7b\xd3\x18\xb9\x2d\x70\x80\xfe\x2b\xb4\x2d\x5c\x5b\x7a\x15\xb4\xd9\xe6\xaa\x03\xbf\xea\x64\x9f\x87\xb6\x96\x99\x37\xce\xed\x57\xa0\x6d\xe1\x69\xa6\xbf\x14\xf5\xf2\xb2\xa2\x5e\x72\x3b\x5a\x5b\xfa\x71\xd4\x08\x3f\x8d\x7a\xc9\x26\x68\xb3\xf5\xcd\xdc\x5f\x13\xa8\x61\xc5\x21\x92\x28\x49\xe7\xc0\x65\xad\xa8\x38\x99\xa0\xa3\x8e\x93\x5f\xcc\x5a\x00\xbf\x79\xa9\x29\x8d\xcf\xe4\x89\xa6\x6f\xbd\x46\x3e\xfd\x35\xb8\xf0\x0c\x25\x10\x62\x18\x6b\xde\x4d\x8e\x80\xab\xf5\x24\xd3\xd7\xc1\xd9\xd4\x6e\x1c\xfa\xc1\x09\xd9\xc6\xbc\x43\x8a\xdd\x87\xfc\x87\xa8\x05\xc7\xbe\x8a\x94\xaa\x0f\x21\xb2\x01\xf5\xbe\x8c\x9c\x76\xbf\xb9\x82\xf4\x7f\x61\x44\x5d\x7e\x26\x8c\x1b\xf7\xdd\xa0\xd8\x20\x40\x8e\x7d\x13\xbd\x0d\x7b\x70\xdd\xc3\x90\x26\x1f\x47\xd9\x6c\x04\x4f\x57\x9a\xfe\x0b\x46\xab\xe5\x3d\xea\xc3\xe7\x0e\xc8\x40\x8c\x5e\x09\x12\x42\x4a\x0d\x1e\x41\x4b\x47\x3f\xbd\x09\xff\x76\x40\x19\xf6\xc3\x67\xe1\x69\x78\x9d\x04\xc8\x28\xb9\x88\xd4\xc9\xe7\xc9\x53\xe4\x55\x4a\x69\x86\x9e\x4e\x2f\xa5\x37\xd1\x63\xf4\x09\xfa\x63\xfa\x16\xf3\xb2\x5e\x76\x3a\xbb\x88\x1d\x64\x77\xb2\xe3\xec\x69\xf6\x13\xf6\x8e\x14\x90\xfa\xa4\x0d\xd2\x1e\xe9\x46\xe9\x6e\xe9\x11\xe9\x19\xe9\x27\xd2\xdb\x0e\xb7\x23\xe3\x18\x75\x9c\xeb\xb8\xd4\x71\xd0\x71\xab\xe3\x3e\xc7\xc3\x8e\x27\x1d\x2f\x38\x5e\x76\xfc\xdc\xf1\x96\x0c\xf0\x13\x50\x71\x87\xa7\x71\x4d\x72\xb8\x3f\x54\xec\x71\xc8\x82\xe3\x41\xc8\xe0\x9c\xfd\x23\x42\xe2\x0c\x42\xed\x04\xee\x0d\x15\xcb\x27\xf0\x24\xf1\x33\x66\xdc\x19\xff\xb4\x68\x39\x0e\xcf\xcd\xb9\x36\x6a\xbe\x01\xdb\xf4\x0a\x8c\x86\xb7\xd5\xcd\x21\xb5\xc0\x12\x52\xd0\x09\x3f\x83\xc0\x22\xb5\xf9\x71\xe5\xbd\x62\x77\xfb\xe1\x5f\x70\x8d\x8c\xf3\xa1\x42\x1a\x7b\xc3\x4f\x5c\x0c\x73\xc3\xc6\xac\x13\x3f\xc2\xcc\x14\xc2\xeb\x14\x4a\x89\x13\xf8\x4d\x1e\x47\x90\x46\xac\xe4\xdf\x71\x3c\x09\xe8\xb4\xda\x6f\xb9\xf1\xe0\x35\xbc\x23\x16\xb6\xe4\xe5\x7b\x94\x3d\x89\x6b\xac\x89\xd2\x3c\xcf\x27\x4e\x4b\x00\x52\xa4\x13\x77\x56\xa3\x17\x59\x71\x1a\xc2\x08\x6b\xa2\xf0\xcf\x4b\xd4\xaf\xf2\x34\x7a\x33\x8e\xb9\x75\x3e\xbc\xd6\x89\xfd\x29\x42\x02\xfb\x8a\x1a\x7b\xb3\x13\x61\x5d\x37\xc4\xe9\xbf\x63\xfb\xcd\x23\xb4\xf7\xe8\xe7\x98\xba\xb0\x7d\x03\x1a\x76\x13\x2f\xce\x47\xa3\xf7\x1d\xd8\x03\xa3\x27\x31\xf2\x09\x2c\x95\xc1\x74\x13\xca\x64\xc4\xfe\xff\x07\xec\xa3\xbd\x57\x16\x1c\x20\x01\x70\x37\xd5\x19\x16\xfb\x29\x45\xee\xc1\xdb\x60\x61\x5f\xda\x88\xaf\xe5\x1b\x63\xd5\xd0\x6b\x02\xe9\x58\x90\x13\xe5\x3b\x8f\x1c\x5d\xa2\x36\x17\x99\x5c\x22\xc7\x49\xee\x5e\x22\x47\x21\x9f\x5e\x22\x47\x26\x77\x2d\x91\xe3\x20\x9f\x5a\x22\x47\xa2\xdf\x04\x37\x64\xa0\x43\xec\xe7\xc6\x29\x4c\x93\x7b\xf1\x1b\x63\xbd\x02\x88\x77\x86\x71\xdd\x42\x10\x60\xdf\x02\x37\x8e\xcc\x27\x76\x80\x05\xf5\x49\xb8\x65\x0e\x34\xbc\x77\x8d\x9a\xff\x27\xb8\x5b\xd6\x41\x9c\x6e\xa2\xb6\x7c\x63\xf5\x93\x84\x5a\x72\xf8\x79\x30\xd6\xe7\x0e\x68\xb7\x56\xdc\x3c\x1f\xc6\x4c\x07\xd1\x87\x4b\xe3\x0b\xa3\xe5\x20\xa4\xe1\x15\x68\x6f\x69\xdd\xe8\x99\x9f\x44\xa0\xad\xa9\xbc\xb1\x9f\xba\x88\xa7\x25\x15\x31\x68\xfa\x3b\xbc\x9d\x42\x02\x7f\x14\x98\x16\xcd\x60\x6a\x0a\xeb\xf3\x58\x58\xd9\xab\x78\x9b\x34\x9f\x95\x3f\x07\x17\xbf\xa7\x10\x33\xf0\x22\xde\x95\x05\x27\x04\x70\x7e\x55\x6c\x2b\x40\x7f\x0b\xce\xe6\x53\x42\x3e\x89\xb7\x4b\x46\xcc\x80\x71\xa7\x1d\x06\x67\xf3\x49\x27\x77\xe2\xed\x62\x96\x89\xd3\x77\x30\xba\x92\xd1\x96\x81\x4b\x7d\x06\x1c\x90\xc2\x2f\x54\xfa\x1f\xe0\x40\x9a\x2d\x0a\x7e\x78\x14\x6f\x86\x04\xde\x9d\xbf\x41\xfe\x86\xd1\xee\x38\x3c\x02\x3f\x21\x5e\x32\x4a\x2e\x25\x47\xc8\x57\xc9\x4b\x14\x68\x37\xdd\x48\x27\xe8\x11\xfa\x10\x7d\x86\xfe\x8c\x51\xa6\xb1\x31\x76\x11\xbb\x91\xdd\xcb\x1e\x65\x2f\xb2\xd7\x25\xa7\xd4\x2d\x55\xa4\x8b\xa4\x43\xd2\x5d\xd2\xc3\xd2\x33\xd2\x2b\xd2\x6f\x1d\x21\xc7\x80\x63\x83\x63\xb7\xe3\xa0\xe3\x0e\xc7\x83\x8e\x27\x1d\xb3\x8e\x37\x64\x59\x4e\xca\x23\xf2\x16\xf9\x52\xf9\x90\x7c\x07\xd2\xa9\x2f\xc8\xaf\xca\x6f\x2b\x6d\x4a\x52\x19\x52\x36\x28\x3b\x95\x09\xe5\xb0\x72\x87\x72\x4c\xf9\xaa\xf2\xb4\x32\xab\xbc\xa6\xbc\xed\x94\x9c\x01\xa7\xe6\x1c\x70\xae\x76\x6e\x74\x5e\xe0\xdc\xe3\xdc\xe7\x3c\xe4\xbc\xc9\x79\xbb\xf3\xa8\xf3\x98\xf3\x38\x79\x10\x22\x02\x8a\xa6\xf0\x24\x7a\x70\x65\xc2\x02\x1b\xf2\x23\x26\x17\x15\x30\xce\xa0\x53\x5f\x86\x08\xce\xb5\xcf\x82\x3f\x3d\x0b\x20\xad\x07\x4f\x83\x71\x3f\x74\xd2\x08\xc6\x05\xe7\x14\x94\xcf\xc2\xc8\x34\xf1\xad\x1d\x9a\x3d\x0c\x21\x41\x6b\x79\x90\x56\xe4\xf8\x8d\xdf\xaa\x3d\x24\xfa\x15\x82\x4f\x43\x50\xdc\x7e\x1e\x84\xd9\x8d\xd3\xd7\xd4\x0f\xf2\x39\x08\x36\xe0\xb7\xc0\x74\x7d\xb8\x8e\x7c\xff\xa6\xb0\x2f\x21\x7a\x1c\x73\xe2\x82\xbe\x8a\xd9\x30\x47\x83\xf2\xcd\x40\x0c\xb5\xb4\x53\x8c\xa0\xae\x76\x0a\x69\xdb\x80\xd8\xc7\x5e\x6b\x97\x8b\xbd\x4b\x76\xe0\x8d\x16\x10\xf7\xa1\x87\xe3\x3d\xa2\xf5\x28\x2f\x4d\x8e\xe1\xdf\xc5\x7b\xd6\x8d\xdf\x76\xd2\xe3\xe2\x86\x5e\xb2\x57\xec\x56\xbc\x31\x52\x38\x47\x31\xc4\x84\xb1\x9f\x48\xbb\x84\xa1\x8b\x9c\x8b\xf3\x99\xc0\x1b\xa6\x41\x77\x18\x29\x5e\xf0\xd3\x93\xe0\xc5\x59\x34\x66\x34\x20\xee\x29\x4d\x60\x6b\x39\x18\x10\xdf\x9a\x6b\xe0\xc3\xd8\x49\xa2\x07\xec\x0b\xe8\x1f\x38\x86\xe7\x30\x25\x28\x50\x13\xa3\xd5\xc8\xbb\xc0\x8b\x34\x4d\x7a\x31\x2c\x83\x7d\x1b\xdb\xe5\x27\xc8\x83\x31\x5a\xc3\x38\x17\x7e\x88\x42\x8e\x7d\x02\xbf\x8d\x09\x0c\xc3\x23\xce\xb6\x49\x8f\x1f\xc4\x5c\xbe\x47\x38\xcd\xe0\x6d\xec\x2a\xf2\x08\xf6\x82\xd3\x40\x51\x81\x9f\x68\xa2\xe7\x01\xf2\x45\x81\x5b\x2e\xb2\xd3\xe9\x7e\x1c\x7f\x00\xb2\x62\x4f\xd8\xa0\x28\x3c\x6e\x7d\x17\xb0\xe8\x4e\x3e\xba\x00\xfb\x98\x18\xb9\x1f\x7d\x04\x87\x11\x56\xfa\x44\xca\x3d\xd6\x77\x5e\x41\xc5\x70\x7a\xc1\xd8\x99\x5f\x16\xfc\xac\x2e\x71\x2b\x87\x05\xd6\x66\x8c\xed\x26\x13\x62\x5a\x9c\x91\x80\xc0\x71\xfd\xe4\x2b\xb6\xef\x4c\x5a\x35\x85\xb1\x59\xd2\x70\x2f\x42\x7b\x7b\x7b\x31\xcc\x89\x92\x6d\xe0\xb6\xed\x03\x7e\xa2\x71\x0f\x90\xcf\xe2\xad\xd2\x98\xed\xa0\x18\x7f\x1a\x1e\xb3\x6a\x0b\x58\x14\xad\xd1\x6e\x8e\x6c\x69\xaa\xcd\x4e\x95\x5c\x0b\xee\x96\x59\x14\xf7\x07\x03\x91\xc3\xa1\x86\xed\x1b\xf6\x71\xbc\x59\x52\x82\x0a\x34\x7a\x61\x8c\x34\x4a\xbb\xa0\xdd\x1a\x69\x83\xf3\x17\x20\x7f\x8c\x37\xd4\x02\x78\x42\xee\xc7\x7a\x1a\x23\xe1\x6b\x1c\x25\x7f\xb4\x20\x9d\x63\xb3\x77\x41\xfb\xa2\x30\xe4\xeb\x58\x7f\xf3\xb8\x33\x90\x26\x5b\xf1\xc6\x34\x47\x6d\x51\xaa\xe4\xcf\x6c\xfd\xd4\x30\x1d\x4f\x04\x93\x30\x9d\xe3\xb0\x69\x8b\xa7\xe2\x87\x0f\x63\x7f\x16\x40\x39\x36\x0d\x6d\xb6\x53\xe1\x13\xe7\xea\x66\x68\xb3\x4a\x6b\x02\x12\xa7\xc9\xe7\xf1\x7e\xe5\xbe\xa6\xf8\x1c\x1b\x33\x70\x0e\xb4\xb5\x9c\x76\x63\xa7\xfd\x21\xd6\xd0\x18\xbf\x17\xbd\xed\xd6\x6d\xf5\xf2\x3c\x03\x06\x7c\x14\x6f\x5d\x3e\x3f\x62\x0f\x92\x2f\x21\x9d\xc8\xc7\x17\xc4\x3e\x05\xc8\x9f\xd8\xd2\x24\xb4\x6f\x72\xd3\xbf\x07\x57\xeb\xbd\xc0\xfe\x10\x5c\x7c\xcf\xd8\x70\x92\xf3\xb0\x0d\xb3\x97\xfc\x3e\xfe\x10\xde\xec\x66\x6f\x38\x44\xfd\x18\xde\xe3\x8d\xdd\xac\x91\x2f\x60\x4a\xd4\xc2\xfd\x03\x64\x0a\x9c\x56\x3f\xda\x10\xeb\x3b\x6e\x4b\x71\x22\xb6\xf7\x90\x2d\x45\x46\x5c\xee\x61\x5b\x0a\xd2\x2f\x64\x17\xd6\x1c\xc3\xb8\x33\x1c\x22\x7f\x10\x9c\x56\x8f\x10\x36\x91\x07\xd0\xde\xb3\x01\xf1\x6e\x11\xef\x26\x4d\xff\x1e\xc4\x18\x38\x94\x8a\xb2\xbf\xc4\x37\x8e\x61\x24\xe0\x1b\x20\x37\x6e\x04\x72\x1f\xe6\x89\x15\xa1\xf3\x02\xd3\x50\xf1\x7c\x6f\x16\x18\x85\x31\x3b\x5f\xc3\x67\x5c\x0d\x46\x05\x3d\xaa\x81\x46\xaf\x41\xbd\x0b\x9c\x69\xfa\x5e\x51\x5e\x83\x00\xf9\x53\x90\xc4\xb8\x3e\x82\xda\xb0\x5e\x48\x33\x86\x58\x89\x31\x9f\x7f\x00\x92\xc0\xc3\xbe\x85\x4f\x9d\x10\x20\x3b\xf1\xc9\x80\x64\xcb\x61\x0f\xdc\x02\x0f\xc3\x0f\xe1\x1d\x92\x20\x15\x72\x29\xf9\x08\x79\x90\x3c\x43\x5e\xa3\x32\xcd\xd1\x0d\x74\x2f\xd2\xaf\x4f\xd2\x97\xe9\x6f\x59\x98\x0d\xb2\x8d\x6c\x0f\x3b\xc4\xee\x64\x0f\xb1\x27\xd9\x8f\xd8\x09\x09\xa4\xb0\x54\x90\xc6\xa4\xed\xd2\x5e\xe9\x80\xf4\x11\xe9\x6e\xe9\xf3\xd2\x57\xa4\x27\xa5\xe7\xa5\x59\xe9\x15\xe9\xe7\xf4\x6b\x10\x40\x68\x1d\xc7\x93\x6c\x52\x81\x9c\x87\xd8\x61\x71\x01\x3f\xfa\x7b\x4a\xe1\xde\xa5\x3a\xc2\xc3\xd4\x02\x7c\x22\x2d\x68\x52\x63\xd6\xd3\xb4\xb0\x44\x29\x0e\x2d\xa3\x48\xaf\xe6\xe8\x32\xc1\xbd\x6c\x2d\xa5\x21\x44\xe0\x65\x1e\xc3\xb3\x74\xaa\xbe\xc7\xe9\x47\xc1\x87\xb7\x4d\x0b\x37\x0d\x34\xb1\x6a\x2a\x2d\x08\xa8\xb7\x78\xaf\xc3\x10\xa7\xbd\x4b\x94\x08\xe2\x4e\x49\x41\x8e\xf6\x0a\x2e\xe5\x62\x98\x94\x17\xd2\xb4\x6f\x89\x7c\xce\xc3\xee\xa4\x3d\x4b\x7e\x1f\xc6\xfd\x70\x31\xe2\x0f\x08\x7f\x71\x1f\x35\x28\x45\xce\xc9\xbb\x08\xf3\x35\xd4\xe2\xe4\xe7\xa7\x5b\xc8\x35\xf0\xde\xa7\xbb\x70\x24\x8b\xcd\x79\x06\xe2\x34\xbf\x44\x2e\x87\x75\x73\xe0\x5d\xa4\x6d\x81\x53\xd1\xdc\x12\xdf\x22\xc5\x4e\x6f\x41\x6c\x64\x89\x15\x62\xdf\xc0\x9a\x39\x07\x3f\x60\xad\x10\x6f\x2b\x45\x6e\xc1\x13\x9e\x45\x0c\x37\x80\x75\x72\x6a\xc3\x68\x7f\x06\xe9\xb4\xc6\x97\x1a\xe2\x66\x01\xe8\x62\x0f\x8a\x5b\x22\x23\x78\xc5\x31\x01\x2d\x2f\x44\xab\x47\xfb\x0c\x19\x39\x3e\xa6\x88\x74\x1f\xc2\xae\x06\x1e\xf5\xc5\xa6\x7a\xa2\x82\x7f\x13\x20\xa7\xe3\xed\xe1\x45\x6a\x49\x15\x98\x8c\x71\xc3\x76\xa3\xaf\xc8\x96\x79\x20\x1f\x41\x8f\x57\xe6\x18\x3c\xc8\xb9\xee\x80\x5b\xb1\xac\x49\xad\x7b\xf0\x5c\x74\xb1\x07\x10\xf2\xa7\x05\xfe\x6a\x62\x7f\x27\x44\xaa\x17\xf1\x03\x8d\xd3\xa9\xf4\x63\x08\xe7\x39\xee\xe1\xc1\x59\xf0\xd2\x8f\x80\x0b\x67\xd7\xd7\xa0\x40\x99\x03\xe1\xb7\x81\x75\x5a\x7b\x85\xb5\x09\xf8\x1d\xb0\x6e\x92\x3f\x07\x85\xd7\x81\xe7\x4f\x83\xd7\xf1\xbd\x31\xf3\x1f\x47\x0e\x9d\x17\xfd\x57\x1b\xb8\xc9\x57\x41\x46\x7c\xdb\x6b\xc0\x7a\xfa\x24\xc8\x08\x6f\xf1\xac\xc0\x37\x11\xa2\x7a\x11\xdf\xd2\x98\x8c\x25\xc5\x3a\x31\x2e\x69\x36\xee\xbe\xdd\xf8\xe4\x83\x4e\xe6\x44\xbb\x1f\x0d\xfe\x17\x30\xc4\x4e\x92\x30\x06\xd7\xc0\x51\x78\x1c\x5e\x82\xdf\x92\x18\x59\x49\x76\x92\x83\xe4\x2e\xf2\x08\x79\x96\xbc\x4a\x7e\x4b\x03\xb4\x40\x2b\x74\x9c\xee\xa3\x37\xd1\xa3\xf4\x38\x7d\x82\xbe\x40\x7f\x42\x4f\xd0\xb7\x19\x65\x5e\xf6\x09\xd4\x39\x54\x6d\x52\xa2\x06\x77\xdd\x0e\x87\x84\xf4\x82\xfe\x19\xda\x7f\x37\xca\xfb\xc5\xad\xe2\x43\x4c\xdb\xda\x0d\xe4\xeb\xe0\x83\x1e\xc4\xeb\x34\xdc\xbb\x01\x81\x23\xc4\x05\x65\xe0\x20\x8f\xfd\x9e\x12\x12\xbd\x15\x6d\xdb\x4d\xdc\xc5\xc0\xa6\xf8\x7c\x0b\x8e\x1b\xf9\x06\x46\x46\x6e\xae\xa1\x4b\x48\x15\x8c\x16\x1e\x3f\x65\xbe\x44\xbe\x0e\xde\x05\xf9\x71\x94\xfa\xf1\xfe\x2d\x9d\x2b\x91\x6f\x82\x67\x41\x6e\x1e\x77\x67\x82\x5e\x24\xce\x6d\x7a\x11\xfe\xfd\x32\x4b\x5e\x91\x5a\x20\xc7\xba\x0e\xda\xb1\x4e\xaf\x80\xbf\x51\x4e\xd1\x33\x37\xa6\x87\x05\x87\x9b\x53\x0a\x5d\xd0\x45\xaf\x6f\x29\x1f\xe3\xd0\x80\x3d\x0a\xed\xd8\xa7\x04\x9e\x94\x1c\xd2\x52\x09\x88\xd2\x8f\xa3\x5f\xa1\x80\x25\x1d\x30\xe6\x21\xc7\x3e\xdd\x94\x2a\x24\x5e\xf4\x12\x4c\xf5\x08\xce\xb6\xe8\x3d\x3d\xd2\x54\x96\xc3\xa8\x00\x2c\x07\x97\xc0\x16\xa3\x1c\x9b\x81\x14\xf3\x82\x0b\x25\x9f\x01\x71\x8b\x19\x7b\xe2\x6b\xe0\x6c\x99\xb3\x41\x91\xc2\xa9\xf2\x30\xa4\x99\x07\x14\x91\xc2\x21\xdb\x11\xd4\xaf\xc0\x75\x67\xb7\x83\x03\x22\x1c\x5e\xb0\x76\x8c\x8c\xcf\x7b\xd2\x8b\x3c\x0d\x9c\x53\xf2\x28\x48\x62\xee\x77\xc1\x63\xf0\x06\xc9\x91\x0b\xc8\x4d\xe4\x61\x32\x4b\x81\x16\xe8\x76\x7a\x23\xfd\x3c\x7d\x96\xfe\x92\x85\xd9\x6a\x21\x55\x7f\x81\xbd\x29\x85\xa5\x51\x69\x97\x74\xa3\x74\x9f\xf4\xb8\x34\x2b\xbd\xe5\x08\x38\x06\x1d\xe7\x3a\xf6\x39\x6e\x75\x3c\xe0\x98\x76\xbc\xec\x78\x47\x0e\xc9\x83\xf2\x16\xf9\x0a\xb9\x2e\xdf\x27\x3f\x2a\xbf\x20\xff\x5c\xa1\x4a\x42\x19\x56\xb6\x28\x7b\x95\xc3\xca\xdd\xca\xc3\xca\xd3\xca\xcb\xca\x5b\xce\x36\xa7\xe6\x1c\x71\x6e\x71\x5e\xea\x3c\xe4\xbc\xdd\x79\xcc\xf9\xa8\xf3\xfb\xce\x97\x9d\xbf\x74\x51\x57\xc8\x95\x73\x8d\xba\x36\xb9\x2e\x72\x5d\xe3\xaa\xbb\xee\x72\x3d\xe0\x7a\xcc\xf5\x7d\xd7\x8f\x5d\xaf\xb9\xde\x6a\xa3\x6d\xde\xb6\x58\x5b\x77\xdb\x00\xe9\xb7\xc9\xa7\xf9\x7a\x73\x09\xf2\xc2\xbb\xdd\x63\x71\xa9\x3c\x10\x25\x7d\xff\x1b\xdf\x35\x28\xce\x14\xc9\x62\x6a\xe3\x3b\x7e\x07\xda\xe5\x76\x3e\x81\xef\x19\x78\x59\xe6\x94\xa5\xfd\xd8\x4e\xa3\x74\x0e\xf9\x1c\x8d\xd2\x51\x71\x97\xf1\xbd\x17\xb5\x6e\x23\x3f\xd1\x5b\x4a\x72\x8e\x06\xde\xe4\x78\x83\xa5\xf0\xa4\x84\x40\x25\xf9\x25\xeb\xb4\x71\x37\xb0\xce\x58\x4b\x49\xbe\x3b\x43\x38\x03\x42\x36\x82\x54\x6e\x8e\xf4\x88\x7b\xd4\x5e\xa7\x29\xff\xe5\xdc\x39\xe4\xd5\x90\x68\x4b\x39\x7b\x8d\x76\xee\xfa\xf7\x84\xcc\x2c\x6d\x71\x7f\x17\xe7\x8f\xd4\xb0\x5c\x87\x85\x1f\x78\x71\x0c\x5e\x1b\xb5\x8c\x9c\x47\xa2\x21\x2e\xd9\x68\xd7\x67\xa3\x98\x52\x08\x23\x8c\x59\xda\x87\x58\x62\x87\x75\x43\x72\x5e\x54\xba\xa5\xae\x44\x4b\x5d\xf6\x31\x34\xf8\x04\xef\x43\xdc\xc0\x2b\xf0\x0e\x0e\xe5\x85\xb4\xa9\x31\xe7\xe4\x79\xdc\x5d\x8d\x71\xa6\xc5\x9b\x47\x70\x6d\x82\x90\x26\x69\x21\xef\x58\xac\xef\x62\x8f\x92\x78\x4b\x19\x7b\x9f\x04\xd5\x4d\x06\x5a\xca\x64\xc4\xce\x6b\x48\xeb\xfd\x24\x75\x8a\xb6\xf8\x8a\x44\xc9\x80\x98\x89\x25\xeb\x61\x7e\x84\xd7\x59\x41\x9b\xa5\x17\xf2\xe2\x98\x1f\x79\x55\xcd\x25\x6c\xd2\x0b\x7a\x83\xb5\xbf\x35\x71\x1e\x38\xd7\x3c\xc0\xa1\x38\x79\x46\xdc\x63\x69\x0b\x2b\xf5\x58\x30\xbc\x9b\x4d\x5a\xe3\x57\xc5\x49\x46\x0a\x87\xd3\x15\xec\x29\xc1\x21\x59\x54\xae\x03\x87\x10\x3f\x6c\x5e\x37\xae\xa5\x13\x80\x04\xf9\xeb\x96\x76\xb3\x82\x37\xca\x39\xf9\xdf\x11\xd4\x20\x1f\x0d\x3f\xc5\x9d\x10\xe4\x54\x15\xbd\x0d\xf1\xd2\xa8\x8d\x9b\xcf\x25\xda\x88\xe5\x90\xef\x22\x2c\x68\xd4\xec\x6e\xdc\xb4\x64\xbb\xc8\x0b\x2c\xe4\xdb\xc1\x8b\x16\x5f\x69\x41\x1e\xe9\x16\xfc\xa4\x06\xac\x49\x8b\x99\xf1\x91\x71\xcc\xb3\xf7\x46\x15\xbd\xf7\x93\xbf\x6a\xe9\x4b\x10\x71\x18\x83\x46\xd5\x58\x58\xec\xde\x2e\x0b\x02\x5a\x5c\x22\x72\x46\x4b\x7b\xbc\x4e\x63\x94\x1a\x59\x26\xa4\x0f\x66\x9e\x71\xdb\xe1\xdd\xc7\x54\xe4\x20\xd9\x6b\x14\x32\x70\x92\x6c\xf9\xa6\x21\x03\xfa\x3e\xb8\x9b\x7a\xe8\x17\x3d\xf4\x92\xde\x96\x6f\xba\x04\x8e\x98\x66\x21\xfc\x26\x2e\xb4\xc7\x02\xe2\x34\xfa\x20\xc0\x82\xb6\x9c\x30\xee\xb3\x2e\xbe\xa2\xb0\x02\x39\x62\x9a\xd0\x5f\xb1\xd1\x72\xe4\x39\x68\x6f\xea\x41\x5c\xe0\xb7\x7f\xd1\x92\x2e\x4e\x3a\xfb\x2c\xa6\x73\xfc\x3a\x05\x5d\xb8\xef\x8d\x39\x2b\x08\x19\x4b\x63\xce\x38\x37\xa3\x2a\x38\x5b\x0d\x69\x8d\x31\x8f\x71\x76\x37\x72\x9e\x1a\x7b\x5b\x70\x36\x49\x57\x4b\x3d\x1d\xe2\xeb\x21\xe4\x30\x69\x16\x14\x13\x34\x1a\x39\x5f\xf4\x33\xd0\xcc\x03\xa4\x07\x50\x02\xd3\x7a\xf2\x2e\x11\x32\x9c\x6e\x8b\x3b\x27\x03\x23\xcf\x22\x4d\xd1\x18\xab\x6a\xac\x03\xf9\x1b\xe4\x3c\x71\x0a\xc0\x92\xa7\xc2\x9e\x05\x35\x48\xc0\x68\x5d\x50\x30\x9a\xb5\x56\x06\xbd\xf3\xa2\xd0\x1e\xe0\x35\xe0\xa9\x25\xcb\x51\x7b\x20\xde\x44\xf1\x1d\x40\xea\xc3\x84\xd7\x5c\x63\xe9\xaa\xa6\x34\xce\x6d\xbf\x14\x39\x4f\xf6\xb6\x9d\x70\x65\x53\x39\xbf\x41\x07\x90\xa7\xc0\xd9\x34\x9e\x36\xf2\xed\x96\x14\x17\xc6\x95\xb3\xa7\x38\xc9\x5f\xb6\xa4\x28\x2c\x20\xe4\x50\x7e\x6b\x27\x7f\xab\xa5\x8c\x4c\x9e\x68\x49\x71\x90\xbf\x68\x49\x91\xc8\x0f\x84\x26\x84\x39\x0f\x71\xe6\x43\x4e\x94\x0d\x6e\x92\xa7\x5b\xbe\x72\x93\xef\xb4\xa4\xb4\xc3\xb7\x90\x3b\xd5\xd0\xea\xe9\x07\xb9\xb1\x87\xc8\x05\x48\x4b\x99\xb2\x08\x83\xb2\x6a\x7c\x7d\x1b\x46\xb3\x49\xa1\xdc\xfd\x05\x4b\x0b\x22\x40\x7e\x08\x92\x38\xb3\x4f\xe0\x93\x17\x42\xac\x03\xf9\x47\x3e\xa4\xd2\xfa\x60\x23\xec\x81\x43\x70\x07\x3c\x00\x8f\xc3\xf3\xf0\x13\xf8\x25\x01\xe2\x23\x1a\x19\x24\x15\xb2\x85\xec\x24\x7b\xc9\x7e\x72\x98\xdc\x02\xbf\xc0\x95\xd3\x6c\xf4\xba\x71\xcf\xf4\x20\x17\xf4\x69\x71\x06\x82\xe2\x26\xe2\x92\xc1\x00\xfb\x1a\xb4\x2f\x46\x59\xc1\xbf\xa1\x26\x8d\x17\xe9\xaf\x30\xd2\xa4\x01\x48\xb2\x28\xa6\x26\x70\x97\x7b\xa0\x1b\xc7\xd3\x49\xa7\x05\xd7\x92\xa7\xa2\x86\x0a\xbc\x01\x2e\xd1\x17\xab\x0f\x64\x06\xf9\x83\xe1\x06\x7f\x92\xfc\x2d\xa6\x78\xf1\xe6\xe6\x9a\x36\xb3\xa8\x7d\x62\x96\x89\xb3\x88\xa0\x6d\x05\x95\x01\x4f\xe2\xbb\xc9\x83\x08\x90\x77\x83\x22\xe0\x29\xd2\xb6\xf0\x4b\x50\x44\xbb\xfc\x86\xea\x44\x6c\x1c\x39\x9f\xec\x8f\xc0\x61\x72\xc1\xa1\x88\xcf\x08\x87\xc9\x8f\x44\x99\x30\xc4\xe9\x5f\xe2\x33\x8e\x85\x3d\x8f\x54\xae\x17\xd2\xec\x1e\x60\x88\x41\x44\x60\x10\xb6\xc3\x75\x70\x27\x3c\x0c\xcf\xc0\x2b\xf0\x0e\xf1\x92\x0c\x19\x26\xeb\xc9\x05\x64\x2f\x39\x40\x3e\x42\xee\x26\x9f\x27\x8f\x90\x6f\x92\xa7\xc9\x0b\xe4\xc7\x2c\x8e\x77\x52\x08\x23\x93\x34\xe0\x4c\x4a\x68\xc9\x65\x21\xc0\x92\x08\x5d\x32\xc8\x9d\x10\x7c\x48\x9c\xeb\x18\x52\xaf\x39\x96\xc2\x9b\xae\x35\xdf\xe4\x0f\x70\xe9\x77\x6b\xfd\x9c\xf7\x5b\x42\x48\x1c\xc2\xfd\xde\xa0\x87\x8c\x3a\xef\x10\xdc\x97\xae\x05\x72\xbd\x4b\x90\x9b\xe2\x45\xfe\x5a\x40\x48\x3a\x8c\x1b\xee\xef\x50\x57\x2a\xd5\x2c\xdd\x23\xeb\xf1\xdc\x37\xb5\x4e\x5e\x02\xa7\x28\x29\xa4\x6d\xe4\xef\x71\xc5\xbc\xa2\x8d\x10\x4b\x20\x37\xc2\x92\x87\x91\x3d\x22\x5f\xb4\xc9\xbe\x8b\x27\xcc\xd4\xe8\xec\x80\x61\x91\x9f\x12\x78\xef\xff\x40\x7d\x24\x4b\xe6\x4c\x7e\x8c\xfa\x45\xa6\x7c\x79\x00\x4f\x59\x1a\x79\xc5\x1a\x38\x50\xb2\xde\x05\x1a\x8b\x81\xc4\xc7\xcc\xee\xc2\x48\x72\x69\xe8\x62\x5d\xb8\xbe\xc6\x1e\xb8\x18\x28\x7a\xea\xea\x83\x8b\xe0\x26\x78\x10\x9e\x85\x37\x48\x80\x0c\x93\x0b\xc8\x01\xc1\xbb\xf8\x19\x99\xa7\x9d\x74\x90\xae\xa6\x1b\xe9\x05\x74\x37\xbb\x17\x39\x15\x7e\x41\x33\xa4\x04\xaf\xc0\xe4\xff\xf8\x5a\x39\xf6\xe4\x1f\x70\x4d\xbd\x42\x22\xe8\x5d\x5c\x07\x8f\x0c\x81\x1f\x4f\x61\x40\xe0\xca\x7e\x1b\x97\x48\x68\xbe\xc1\x27\xb0\x4c\xd6\x2a\xd3\xc0\x2b\x1b\xbb\xfe\x18\xf8\x71\x07\x71\x39\x96\xd7\x46\x11\x59\x5c\x21\x32\xdc\xd2\x56\x18\x6b\x0d\xdb\x29\x6c\xd6\x8d\xdc\xd7\xa5\xdb\x8a\xc3\x43\xd0\x61\x6b\xc9\x94\x4a\x36\x64\x0b\x45\xf4\xd0\xd2\x68\x85\xef\x7c\xae\xdb\x63\x50\xe1\x2b\x04\xdc\xb1\xb7\x60\xf1\xfe\x59\x37\xc2\xb2\xc5\xdb\xbf\x1d\x77\x67\xa3\xe5\x80\xa0\xe6\x53\x90\x66\x19\xd4\x65\x0c\x22\x06\xd4\xbc\xc3\x47\x30\xa7\xd1\x5e\x43\xd3\x70\xb0\x25\xa7\xa1\x6f\x52\xc2\x08\xf4\x8d\x1c\x5e\x57\x27\xcb\x82\x03\xe2\x42\xb6\xf1\x97\xf8\xcc\xd7\xfa\x65\xc1\x25\x30\xf0\xd8\x34\x48\xbc\x27\xe4\x27\x18\x55\x84\xf7\x68\x03\xf2\xc8\x9e\x80\x57\x88\x44\x72\x64\x03\xd9\x4b\xea\xe4\x3e\xf2\x30\xb9\x1c\xf7\x47\xae\xc1\xed\x6b\x92\xff\xda\x35\x50\xf6\x22\xf7\x7a\xe9\x92\x26\xa5\x72\xd9\xef\x29\x27\xf0\x5c\x72\x25\xde\xb2\xcd\xe5\x3a\x5a\xb5\x42\xc8\x15\xb8\x87\x96\xae\x2d\x03\x5d\xe4\xaa\x45\xca\x70\x49\xb1\x66\xe9\x74\xbc\x0f\xf7\x60\x6b\x19\x9b\x0c\x99\x4c\x20\x3e\xd1\x5c\xc2\xa6\x1d\x4d\xf6\x21\x6d\xd1\x9c\x9f\x45\xa9\xb3\xd1\xcf\xab\x71\x3f\x34\xe7\xaa\x9c\xf2\x20\x35\x84\x7e\xcd\x79\xc6\x7e\xed\x20\x97\x22\xae\x61\xcb\x61\xcf\x20\xac\x4a\x8b\xf3\x1c\x87\xf3\xe0\x18\xbc\x08\xbf\x23\xdd\x64\x13\xb9\x86\xdc\x45\x1e\x23\x2f\x91\x79\xaa\xd1\xd3\xe9\x5e\x7a\x0b\x7d\x90\x3e\x4d\x5f\x65\xc0\x92\x6c\x35\xdb\xc5\x0e\xb2\xbb\xd8\x23\xec\x59\xf6\x9a\x44\xa5\xa4\xb4\x52\x1a\x97\xf6\x4b\x47\xa4\x07\xa4\x27\xa5\x1f\x4b\x6f\x3a\xdc\x8e\x6e\xc7\x6a\xc7\x05\x8e\x7d\x8e\x8f\x38\x3e\xeb\x78\xd4\xf1\xbc\xe3\x67\x8e\xdf\xca\x3e\x39\x27\xaf\x96\xb7\xcb\x57\xc9\x87\xe5\x3b\xe5\x07\xe4\xc7\xe5\xe7\xe5\x57\xe4\xb7\x14\xa7\x92\x50\x06\x94\x8a\xb2\x55\xd9\xa3\xec\x57\xea\xca\x9d\xca\x31\xe5\x11\xe5\x09\xe5\x59\x65\x56\x79\x55\x79\x43\x79\xc7\x49\x9d\x6e\x67\x98\x96\x51\xe7\xc4\x27\xa8\x76\x3e\xa3\x9c\x2f\x15\x16\x7c\xd1\x80\x80\xe1\xc8\xcf\xa2\x63\xb8\xfb\xcd\xf2\x51\xc4\x30\xb9\x6e\x67\x4e\x70\xdf\x52\x26\xc4\xa0\xab\x04\xaf\x80\x97\xe5\xb6\x08\xbe\x26\xad\x25\xce\x23\x7b\x13\xa9\x43\x5f\x93\x56\xc5\x02\x4d\x47\xba\x11\x77\x9e\x59\x1b\xe7\xc2\x35\xee\x2e\xde\xe2\xca\xa6\x32\x21\x84\x9a\x2d\x3c\x40\xf8\x57\xab\x4c\xa3\xb5\x16\x4d\x48\x76\x3f\xa6\xf0\xdb\x91\xd3\xc2\x1d\x0b\xe0\xc2\x35\xe0\x17\x7a\x18\x5c\xba\xe0\xb3\xe9\xa3\x08\x7d\x1a\x7a\x2e\xce\x68\x73\x5b\x4d\xba\x1d\xb4\x68\x95\x88\x5a\xda\x7d\x29\xbb\x26\x05\x3d\xbb\xa9\x84\x45\xbb\x34\xac\x05\xe8\xa6\xa6\x12\x29\x81\xed\x78\x71\xdf\x73\xad\xde\xb3\xb1\x47\x0b\xeb\x30\x6b\x18\x41\x9c\xa1\xb1\x0b\xbc\xe2\x3e\xe6\xf2\xb2\x62\x53\x6e\xc3\xbe\x01\x71\x03\xba\xa5\x29\x57\xe8\xbb\x98\x16\x0c\x74\x75\x53\xae\x8a\xab\xd6\x65\xd2\xc2\x64\x3f\xea\x90\x74\x2d\x21\xc3\x5a\xdf\xf4\x6d\x97\x80\xae\x28\xc5\x81\x1c\x3d\x0d\x57\xc4\xcc\x0d\x5a\xd2\x68\x83\xda\x3f\xa3\x29\xaf\x4b\x68\x35\xf1\x1e\x25\xc5\xcd\xd5\x69\xd3\xa6\x31\x25\xc0\x6b\x9b\xbe\x8b\x22\x8d\x92\xc2\xaf\x73\xb0\x06\xbf\x6b\xbc\x7b\xd0\xb3\x8f\x86\x3b\x6f\xf5\x82\x3c\x53\xa3\x4a\xa3\xdf\xb6\xea\x6c\xec\x01\x9f\x98\xbb\x15\x4d\xed\x79\xed\x76\x0f\x8c\xeb\x77\x76\x20\x0e\xd2\xaa\xd5\xf5\x49\xa4\xb3\x9b\xeb\xe4\xf7\x78\x9f\xc8\x59\xa0\x73\x4b\x37\x59\xdf\x44\x4d\x69\xbb\x98\x91\x41\xa4\xb3\x73\x42\x5f\xc9\x46\xe9\xc3\x2c\x7e\xd3\x6d\xed\x19\x93\xf2\xc9\xd1\x75\x4d\xb5\x71\xdc\x34\x8c\x58\xc2\x99\x82\x9e\x37\x75\x17\x34\x51\x2a\x00\x77\x22\x45\xd1\xda\xeb\x38\xdd\x60\xa5\x47\x05\x25\x99\x87\x3c\x78\xe9\x68\x53\xba\x5f\xec\xda\x4e\x58\x85\xd4\xb3\x7d\xb6\x91\x82\x20\x3f\x15\xb8\x68\x67\x33\xc6\x4c\xd7\x34\xd5\xa3\x9a\xd8\x1e\x3d\xbd\x29\x9d\xc3\x91\x00\xa4\xe8\x99\x2d\xfd\x11\x9a\x42\xec\x21\xc1\x45\x08\x08\x5c\x55\x40\x08\xf6\x27\x48\x47\xc7\x2d\x48\x89\x5a\xa2\xb4\x82\x34\x77\x63\x86\xb8\xc4\xbf\xd4\x94\xea\x43\xb9\x59\x80\x5c\x8b\x32\xbf\xae\x66\x49\x25\x3d\xa7\xa9\x6c\x1a\xe5\x39\x61\x7a\x56\x53\xaa\xe0\x6a\xd2\xcd\x48\x65\x37\x4e\x61\x00\x02\x74\xb8\x29\x0d\xf5\xd3\xe8\x50\x53\x9a\xb1\x12\x31\xfa\x61\x21\x33\xb4\x73\x01\xfe\x05\xcb\xe1\x0e\xc6\xb6\xbb\x21\xc1\x74\xf1\x6d\x67\x83\x23\x42\x7e\xde\x54\x8e\xcb\xfa\xfe\x27\xd6\xd7\xa4\xf1\x05\x77\x20\xe6\x9f\x15\x32\x51\xc4\xab\xc9\x2b\x78\x7b\xf2\xf5\xc2\x15\x64\x79\xa4\xb0\xe3\x10\x42\xea\xc3\xc0\x86\xfa\x11\xb7\xcf\x09\x5d\x99\x1c\xf9\x67\x7c\x37\xdb\x73\x91\xd7\x9a\xde\x9d\xe8\xe5\xa7\xf1\xae\xd0\x29\xbc\x8f\x79\xbb\x69\xc8\x92\x7f\x6c\xca\x97\xe9\x72\xd4\xf9\x10\x7b\x9f\xf5\xe2\x1b\xe7\x74\xa8\x84\xeb\x91\x88\x55\x21\x27\x90\x4e\xc8\xa0\xfe\xda\xcf\xf0\x19\x6b\x61\x3d\x48\x17\xe2\x39\x25\xaf\x22\xcd\x60\x60\x7e\xd3\x18\xe5\xda\xd8\xad\x23\x42\x1b\xb5\x8b\x2d\xc3\x34\x0d\xd2\xac\x60\x4a\x43\x21\x0f\x5b\xe1\x20\xdc\x07\x4f\xc2\x2b\x84\x92\x6e\xb2\x9e\xec\x25\x37\x91\x63\xe4\x09\x32\x4b\x7e\x49\xdb\x68\x86\xae\xa4\x5b\xe9\x15\xf4\x30\xbd\x8b\x3e\x44\x9f\xa0\x2f\xd2\x9f\xd1\x77\x58\x1b\x4b\xb0\x3e\xb6\x9a\x6d\x62\xe3\xec\x52\xb6\x8f\x1d\x64\x75\x76\x84\xdd\xc5\xee\x63\x03\xe2\xdc\x75\xe2\x28\x4c\xad\x48\x4b\xff\x4c\xe0\x9b\x73\x42\x27\x29\xd1\x74\x6b\x35\x59\x26\xc1\xa7\x11\x2b\xe3\x3a\x51\x26\xe7\xac\x15\x0e\xad\x36\x20\xf1\x02\x48\x69\x83\x7e\xf0\x6f\x42\x7f\x3d\x8d\x70\x43\x58\xb7\x34\xe9\xda\xaf\x59\xa2\x0e\x0b\xba\x92\x8d\x58\x5f\x1c\x71\x39\x03\x36\xb4\xc2\x8f\xbf\x10\x77\x74\x5a\xd8\x47\xc5\x5b\xb4\xbf\x5f\xc7\x7b\x84\xc3\x27\x8f\x25\xe1\x31\xeb\x58\x65\x93\x0a\x2c\x80\x29\xf0\x03\x6c\xc3\xdc\x3f\x09\x71\x77\x70\x5d\xdb\x3f\x45\xb8\x19\x5e\x08\x9f\xc9\x28\x42\x47\xbf\x68\xcf\xae\x9b\xa4\x61\x8e\xd9\x17\x9b\x9c\x85\x6e\x85\x76\xd1\x8f\x66\x18\xf9\x1e\x94\x86\x6a\x82\xa7\x62\x71\xc3\xe9\xfb\x04\x4f\x2f\x60\xb7\xc2\x20\x65\xd4\x3f\x48\x09\xaa\x31\x8d\x32\xed\x00\xf9\x5f\xc8\x57\x34\xeb\x30\xe5\x9e\x4f\x21\xd4\x69\xd9\x2b\xec\x4f\xb1\x5e\x8e\x9f\x18\x2b\xc3\xf5\x09\x0f\x09\x2e\x5e\xa0\x61\x6d\x41\x4e\xc3\x34\xbf\xd0\x48\x40\xa9\x25\x59\x87\x69\xdc\xa6\xcc\x84\xa9\x77\x81\xab\x75\x27\xd1\xef\x08\xdd\x70\x93\x6a\xf0\xc3\x28\x72\xce\x7c\x36\x6e\xee\x69\x78\x76\x7d\x56\x3d\x9f\x12\x9c\x1c\xa1\x13\x41\xde\x8b\xba\x06\x31\xc1\x15\xb8\x4e\x9c\x4f\xa3\x95\x95\xf8\x8c\xb3\x4c\x9f\x12\xe7\xcf\x0f\xdf\x46\x1e\x59\x18\xa2\xf4\x13\x98\x66\xe0\xb3\x07\xc5\x89\xcd\xd0\xf3\x80\x19\xa7\x9d\xde\x0e\x0c\x62\xa0\x41\x19\x39\x38\x3e\x88\xc1\x08\xec\x81\x23\xf0\x15\xf8\x11\xbc\x4d\xc2\x64\x98\x6c\x27\xd7\x90\x23\xe4\x41\xf2\x14\xf9\x09\xf9\x2d\x0d\xd1\x01\xba\x91\xee\xa1\x07\xe9\x11\xfa\x59\xfa\x30\xfd\x26\xfd\x3e\xfd\x21\xfd\x3e\x4a\xef\xb8\x84\x2e\xdc\xb4\x9e\x9a\x80\xb2\xbc\xa7\x7e\xfa\xbd\x53\x96\xb4\xdb\xb1\x7e\x17\xf1\xe4\xa5\x4a\x8a\x59\xa3\xcf\xe0\xd9\x5e\xaa\x14\xd7\xee\xfa\x1e\xee\xca\xa5\xcb\xc4\xc9\x2f\x85\x8c\x28\x8c\x58\xb4\x29\x23\x0a\x98\x1a\x3b\xf4\x0e\xa4\xa6\xd2\x26\x47\xcf\xda\xb7\x1c\xab\x5a\x8b\x27\xce\xe4\x11\xa4\x85\x4c\x53\xe3\xd2\x52\xfa\xe7\xd8\xc6\xa2\x7a\x17\xf4\x69\xa1\xf5\xb3\x48\xcf\xe8\x57\x85\xe6\x4b\xa3\x4d\x8b\x6b\x42\xfe\x55\x68\x58\xd8\xfb\x1b\x17\x32\xe4\x5f\x63\x9d\xdd\x36\x0b\xe2\x2e\x71\x2b\xa5\xc8\x2f\xc4\x2d\xd8\xd0\xaf\x08\xe0\xdd\x66\xe0\x2b\x63\x48\xf7\x75\x0b\x6c\x22\x6a\xca\x85\x41\x83\x5f\x61\x8e\xbd\x27\xdd\xa2\xc7\x6f\x2d\xc8\x41\x2d\x44\x88\xc2\x3b\x88\x55\x74\x8b\xb2\x7e\x3c\x07\x69\xd0\xe8\x36\x3c\x85\x8d\x9e\xf3\xd1\xfe\x2d\x9e\x99\x1e\x9c\x43\xae\xe9\xd4\xc9\x96\xe3\x99\x49\x0b\x7e\x90\x1f\xfc\xf4\x62\x8b\xd3\xc5\x75\x47\xef\x46\x6e\x32\x97\x63\xc4\xc8\x1b\x78\x7f\x99\x63\x7b\x3f\xee\x79\xe3\xeb\xb7\xd1\x6b\xb3\x0f\x73\x07\x60\x0b\xec\x85\xc3\x70\x27\x1b\xc4\x58\xfd\xa6\x7d\x4c\x5c\x48\xd1\x10\x13\xc7\x13\xfb\xb0\xb8\xd3\x03\x42\xd2\xdb\x24\x9b\x63\x2b\x30\x5e\x80\xfd\x6b\xe4\xfe\xb3\xcf\x60\xe4\x82\xa0\x0d\x2e\x23\x65\xc0\x86\x90\xdb\xcb\xcb\x77\xe3\xdd\xa0\xb2\xe3\xc8\x89\xf5\x9a\xd8\x31\xec\x80\xaf\xc0\xab\x24\x40\x4e\x27\xd7\x91\xcf\x93\x17\xc9\xef\x68\x8e\x9e\x4b\x0f\xd2\xfb\xe9\x33\xf4\x75\x16\x60\xa3\x6c\x37\xfb\x08\x7b\x88\x3d\xcf\x7e\x29\x85\x50\x03\xe2\xb0\x74\xbf\x34\x2d\xbd\xe2\x00\x87\xe6\xa8\x38\x76\x3b\x0e\x3b\xee\x73\x3c\xee\x98\x75\xbc\x25\x07\xe4\x41\xf9\x5c\x79\x9f\x7c\xab\xfc\x80\x3c\x2d\xbf\x2c\xbf\xa3\x84\x94\x41\x65\x8b\x72\x85\x52\x57\xee\x53\x1e\x55\x5e\x50\x7e\xee\xa4\xce\x98\x73\xc8\xb9\xd1\xb9\xdb\x79\xc0\x79\x44\xe8\x3e\xbc\xe4\x7c\xdd\x39\xef\xf2\xb9\x32\xae\x61\xd7\x7a\xd7\x05\xae\xbd\xae\x03\xae\x9b\x5c\x77\xba\xee\x77\x1d\x77\x3d\xe6\x7a\xca\xf5\x82\xeb\x25\xd7\x6b\xae\x37\x5d\xbf\x6b\x93\x69\x27\x74\xda\x74\x8f\x84\x2c\x49\x60\x63\x51\x8b\x77\xc7\x4f\x34\x72\x57\x69\x14\x2d\x38\x7e\xdf\x17\x96\x2e\x1a\x8d\xfd\xa7\xca\x5b\x3a\x70\xf4\x93\xa2\x7c\xc3\x12\x64\xa1\x45\x61\x97\xc0\xc1\x02\x90\x62\xa3\xa8\x9f\xc2\x6d\x3f\xfd\x4d\x7a\x6c\x61\xc1\x1d\x6b\xb2\x7e\x60\x9f\x83\x30\x96\x68\x9c\x1f\x53\x82\xd7\x9c\x8a\xd8\x1b\x1b\x11\xba\x7c\xb1\x05\x5c\x3f\x8f\x45\x23\xc4\x91\xaa\x4e\xc1\xe9\x78\x1a\x38\x8c\x3c\xa5\xf5\x3c\x9c\x29\x6c\xdb\x73\xbf\xa7\xdc\x3a\x94\x05\x2f\x5e\xa3\x90\xae\xa3\xcc\xe1\xd7\x58\x8e\x6b\xa3\xa0\x54\xd3\x3a\xb1\x01\xbb\x7f\x03\xf2\xab\x45\xca\x2d\x62\x0d\xc9\xd6\x22\x44\xe9\xb6\x24\xbd\x01\xa4\xf1\xb9\x34\x52\xb3\xa4\x64\xeb\x71\x05\x17\x1b\x85\xad\x6f\xf4\x1b\x48\x75\x34\x61\x37\x0b\xc6\xe9\x87\x6b\xad\xba\x1a\xda\x25\x5e\xcb\x72\x59\x40\x4c\xb6\x06\xeb\xfa\x3d\x6b\xc7\xca\x42\x06\xca\x77\x84\xa9\x97\xd8\x34\x0a\xba\x5b\x94\xd1\x04\x4e\xd6\x25\x6a\xb2\x8d\x83\xbc\x8d\x5f\x37\xcf\x56\xab\xd5\xe6\x51\xa1\xff\x90\xb6\x38\x31\x0d\xb8\x6a\xf2\xee\xdf\x5a\xa4\x9e\x20\x8e\x52\x15\x1c\xbc\x00\xac\xc7\x36\x4f\x31\x97\x6c\x54\xf0\xa1\x96\xdc\xe7\x6c\xc4\x56\x62\xd1\xbd\x4a\xde\xc2\xbf\x8b\xf7\x04\xfb\xc1\x4a\x42\xc2\x19\x6b\xe6\x32\x98\x32\x12\xf8\x02\x46\xda\xe4\xa7\x53\x70\x88\x71\x0c\x29\x7e\xcf\xd0\x3b\x6d\xf9\xad\xda\xcc\xc6\x3a\x3f\xb8\xe8\xf7\x9a\xe0\x79\x76\xd1\x2f\xe1\x1d\x6d\xae\x0b\xa7\xf8\x2c\x88\x0d\x5f\x44\xdb\x9f\xd6\xaf\x85\xcc\x84\x3e\x8f\xdf\x9a\x37\x61\x2b\x2f\xe1\x6f\x9a\x6a\x6e\xd5\x2f\x59\x2d\x72\x63\x16\xf5\x1f\x6f\xac\x24\x5b\x65\xcb\xed\xb2\x8d\xcf\xc0\xb9\x42\xf0\xc0\xa2\xbd\x32\x71\x8b\x3f\x11\x5a\x12\x9a\xcd\x87\x47\xc2\xd2\x6a\xfd\x1d\x62\x77\xcd\x70\x87\x63\x5b\x7e\x08\xb2\x87\xc5\xb7\x21\x9c\x8b\xb8\xb8\x59\xb9\x1e\x6b\x9c\x7e\x5d\x8c\xdd\xe2\x70\x34\xac\x85\xd9\x69\x62\x55\x62\xb8\x3f\x4c\x7d\x31\x2e\x19\x3b\x2a\xe0\x73\xce\x5a\x21\x4b\xca\x49\xae\x17\x10\x21\x6e\x41\x0e\xcb\x06\x9e\x1c\xb4\xe5\x35\xc6\xc9\xf1\xdc\xab\xad\x3a\x1b\xe7\x57\xd0\xf9\xe4\xdf\x2d\x0e\x46\xa2\x95\x66\xa1\x9f\x6a\x6a\x8f\x9f\xc1\xb4\xd0\x37\xbf\x1b\xad\x7e\x12\xd6\x1d\xdc\xc0\x3f\x3f\xdd\x94\x63\xb3\x83\xa1\x77\x35\xe5\xd8\xf0\x3b\x72\xa0\x29\x27\x6c\xb3\xa6\xfa\xad\xc8\xe1\xfd\xb3\xef\xfa\x0d\xa8\x69\xb2\x08\x54\xa2\xe9\xa6\x6f\x6c\x34\x11\xf9\x0d\x5a\x06\x25\x6c\xab\x8c\xb6\xff\xe4\xa3\x02\x97\x6a\xd8\x3a\x73\x99\xca\x19\x42\xfb\x21\x67\x97\x32\xb0\x95\x82\x26\x8a\xd9\x6c\xd9\xbd\xf4\x05\x91\x6a\xee\x61\xde\x97\x73\x5b\x52\x11\x96\xd1\x67\x05\xa5\x94\x16\x94\x29\xd7\x84\x7f\x1c\x79\x1a\xcd\xb4\xe6\x0d\x68\x7b\xd3\xb4\xae\x74\x3b\x52\x36\xf1\x86\x5f\x10\xf2\x1f\x88\xc9\xd9\x2c\xc6\xe8\x8b\xc2\x32\xb6\xc1\x45\xf9\x37\xc1\x0b\xb1\xe0\x0b\xfb\x73\x91\xe2\x11\x37\x78\x94\x15\x31\x25\x24\x20\x98\x81\x6f\x0d\xa3\x74\x3b\x67\xf9\xa1\x58\x09\x0a\xca\x44\xf9\x9c\xab\xe4\x4d\xcc\x8f\x0a\xf8\x1d\x60\x63\xc8\x0f\x89\x8a\x2f\x52\xf4\x87\x20\x5b\xe5\x7d\xf4\x39\xa4\xb0\x04\x14\xa0\x7f\x8d\x6f\x62\x6e\x58\x05\xe5\xde\x1c\xbf\xaf\x20\x0f\x04\x77\x14\x79\x07\x6d\x62\xb8\x2f\x98\x47\x90\x0e\xc3\x75\xa2\xe7\x0b\x0d\x06\x03\xae\x4e\x8a\x32\x06\x2c\xf9\x2b\xfc\xd6\x18\x83\x46\x7f\x80\x38\xaa\x01\xa1\xbf\x27\xa8\xb6\x28\x9b\x42\x0a\x2d\x0d\x1a\x7a\x89\x58\x0d\x7b\xe1\x23\xf0\x00\x4c\xc3\x8f\xe1\x1e\xd4\xae\x0f\x5b\x96\x6c\x4d\x72\x44\xc1\xe3\x34\x75\xee\xef\x45\x09\xf8\xd2\x65\x4d\xfe\xc8\x7e\xdc\x61\x68\x4f\xd6\xa4\x33\x28\x68\x09\x76\xba\xc8\xd7\x6c\x3c\x08\x2e\x8f\xc4\x51\xb2\x75\x28\xd3\x0a\x58\x7c\x10\xd3\x3e\xd9\x48\xd9\x88\x94\xbc\x59\x77\x83\x7b\x7c\x16\xda\x31\xf3\xf4\x3e\xd8\x05\xb7\xc2\xa3\xf0\x0a\x69\x23\xc3\x64\x27\x39\x4c\xee\x27\x4f\x92\x9f\x90\xdf\xd1\x18\x1d\xa5\x17\xd0\xfd\xf4\x08\x7d\x80\x3e\x49\x67\xe9\x1b\x4c\x66\x09\x36\xc4\x36\xb0\x5d\xec\x1a\x76\x13\xbb\x9b\x3d\xc8\x1e\x63\xcf\xb0\x59\xf6\x1a\x7b\x4b\xa2\x92\x4f\x4a\x4a\x7d\xd2\x4a\x69\xa3\x74\x81\xb4\x47\x9a\xa0\xff\x80\xb3\xc1\x79\x2e\xbc\x67\xdc\xe7\x40\x5c\x68\x11\x36\x24\xd0\xc6\x09\x79\x06\xdf\x62\x16\xef\xe3\x14\x98\x15\x39\x29\xd6\xdb\xa4\xbb\xdc\xc0\xc4\xbd\x1a\x12\x3a\x4c\x9a\xf0\x56\xd3\xcd\x1e\xc3\x95\x6e\xd4\xbb\xb4\xc7\xa3\x9f\x20\x06\xb8\x78\x7f\x9b\xfb\xfa\x5e\x41\x95\x24\x2c\xb9\x77\x4a\xf8\xbc\xb2\x6c\x03\xd9\x97\x84\x76\x6f\xa2\x55\xf2\x67\xf1\x77\x52\xf4\x1f\xb0\xed\xc5\x5b\xe4\x74\x73\x55\x58\xdd\x34\x49\x57\x04\x54\x89\x43\x86\xfe\x44\xf0\x32\x16\xaf\x21\xce\x1e\x11\xba\x19\x71\x71\x83\x7b\x44\x8f\xb8\xa7\x86\x79\xbc\x19\x1b\xe3\x48\x59\xf6\x09\x06\x36\x71\x26\xe6\x36\xa4\xd7\x5d\x38\x4a\x8e\x27\xc5\xe0\xbb\x96\xa4\x7c\xe1\x7a\x6d\xc2\x3c\x9f\xcd\x12\xc1\x27\xf8\x3b\x1a\xfb\x3e\xf2\xa3\x12\xe2\xae\xb6\x49\xef\xd8\xd7\x91\x92\x6d\x48\xe9\x2c\xde\x30\x25\xf8\x4d\xda\x66\xbb\x62\xca\xca\x3e\x63\xe9\xd9\xf1\x19\x8e\xa2\x4e\x73\x80\x5e\x20\x7c\x16\x98\xa3\x12\xd0\x8a\x02\xc2\xf1\x46\x4d\x42\x06\x4d\xf7\x20\x14\x6e\x9d\xe7\x2d\x98\xda\x65\xf9\xb4\xe2\x50\xf6\xfb\x48\x29\x77\x21\x0c\x33\xad\x75\xf7\x5a\x69\xfc\xf4\xca\xc0\xe0\xb2\x96\x34\x09\x18\x7d\x14\x5c\x68\x25\xa0\x0a\x7e\x65\x06\xba\xe0\x72\xe4\x4a\x37\xca\x39\xe1\x4b\xe0\xb4\xb4\x68\x50\xb3\x8c\x7d\x12\xe9\x6e\x4b\x63\x96\x6d\xb0\x74\x8c\xb8\x05\xc3\x19\xf8\xce\xad\x85\xbb\x20\x4d\xdf\x8f\xef\x41\x81\xbb\xa8\xec\xcb\x48\xa7\x77\x8b\xb9\xda\x8c\x70\xd5\x1c\xd7\x5f\x89\x37\xbe\xce\x4f\x5b\x3c\xae\x2c\x04\xc8\xfb\xf0\x3b\x61\x19\xc9\xd6\x63\x9e\x1f\xfb\x14\x83\x73\xc4\x77\xbc\xdf\xdf\x03\x87\x35\x2b\x67\x23\x84\xc5\x5d\xc9\xce\x12\x70\x35\x06\xdf\x41\xb8\x6a\x60\xdc\x37\xc0\xeb\x64\x3d\x39\x4c\x1e\x21\xaf\xd0\x00\x5d\x4f\x0f\xd2\x07\xe9\x2c\x93\xd8\x10\xdb\xc3\xee\x60\x4f\xb0\x13\x52\x58\x3a\x5d\xba\x46\xba\x4f\x7a\x46\x7a\xd3\x91\x70\x6c\x70\xec\x77\xdc\xe7\x78\xda\xf1\xba\x1c\x92\x57\xcb\x7b\xe5\x23\xf2\x57\xe4\x1f\xc9\xef\x28\x09\xa5\xa2\xec\x55\x6e\x55\x1e\x56\x5e\x54\xde\x74\x86\x9c\x23\xce\x71\xe7\x41\xe7\x51\xe7\x63\xce\x59\xe7\x5b\xae\x80\x6b\xd0\x75\xae\x6b\x9f\xeb\x56\xd7\x03\xae\x69\xd7\xcb\xae\x77\xda\x42\x6d\x83\x6d\x5b\xda\xae\x6a\xfb\x48\xdb\xb1\xb6\x27\xda\x66\xdb\x7e\xd9\xde\xd6\xde\xdd\xbe\xba\x7d\x7b\xfb\x55\xed\x1f\x6c\xbf\xbb\xfd\x78\xfb\x74\xfb\x6c\xfb\xeb\x6e\xea\xee\x74\x0f\xb8\xd7\xbb\x77\xba\xf7\xb9\xeb\xee\xbb\xdd\x0f\xb9\x9f\x70\xbf\xe8\x7e\xd5\xfd\x96\x47\xf6\x74\x7a\x0a\x9e\x95\x9e\x4d\x9e\x5d\x9e\x09\xcf\x8d\x9e\x23\x9e\x7b\x3d\x0f\x7a\x1e\xf5\x3c\xe5\x79\xc1\xf3\x92\xe7\x35\xcf\x9b\x9e\xdf\x79\x65\xaf\xcf\x1b\xf3\x76\x7b\x07\xbc\xa3\xde\x0a\x01\xd0\x85\x6e\xb6\x29\x81\xe1\xdc\x19\xd3\xc7\xca\x62\xbe\x78\x38\x6f\xcd\xce\xcb\x8a\x0b\x5d\x27\xc5\x92\xab\xfc\x1d\xa6\xc5\x2d\x2f\x49\xfc\xa4\x65\xad\x9b\xc0\x2f\xf0\x2a\x4e\x3b\x6b\x88\xe5\x18\x75\xcf\x0b\x1b\x01\x3b\x45\xa8\x41\x4e\xf0\xca\x4c\xaa\x2b\x67\xf9\x31\x88\xb1\xf3\x17\xf9\xa2\x81\x01\x99\xfc\x66\x2e\x1f\x47\x2d\x45\xb6\xfd\x3f\xfd\x85\x18\x03\x7d\x49\x78\x4a\x59\x6a\x34\x0b\xc6\x41\x3f\x88\xa7\xa7\xa3\xc9\x5e\x23\x61\x71\xd2\x17\xd1\x47\xa1\x7f\x80\x56\x0c\xbf\xff\x0b\xd3\x6e\x7d\x0b\xf2\x26\x9a\x47\xd1\xd1\xf0\x0c\x62\x93\x7c\xe3\x19\x24\x04\x79\x13\xa7\x5a\xe9\x78\x83\x57\xc6\xb6\xe1\x38\x96\x9e\x23\xaf\x65\x87\x6e\xd4\xf7\x47\x42\x82\x9d\xb3\x24\xa3\x31\x4b\x6e\xb0\xc0\xdb\x01\xfc\xa1\xad\xb4\x0f\xe1\x59\xaa\xc9\xab\x5e\xb3\x6f\x04\x47\x4b\xbf\x1b\x14\xb0\xb5\xdb\x1a\xd8\x38\x9d\x35\xf5\x20\x9b\x56\x6a\x89\xdd\xc6\xaa\x78\x6f\x2e\x3d\x4a\xcd\xc6\xd1\xdb\xbc\x48\x59\xae\x51\x19\x5d\xc0\x33\xfe\x2c\x42\xff\xc5\x47\xd8\xea\x1b\xe1\xa4\xa0\xab\x96\x5e\x97\xc6\x38\xef\xb7\xd5\xdb\x3a\xcf\xad\xf5\xfe\x06\xd4\x26\x6b\x85\xa8\x25\xab\x5c\x38\xc7\x14\x7d\x3c\x9c\x7a\x6f\xa0\xbe\x24\xdd\x01\x21\xdb\x0d\x18\xb3\x2c\xd1\x17\xee\xda\x7f\x87\xd0\x12\xed\xb7\x7a\x4b\xfd\xed\x92\x25\x5b\xc6\xc4\xae\x84\x10\x52\xfc\x5d\x8b\x70\x4b\x9a\xf9\x2b\x0c\xd7\xf8\x54\x23\xe2\xfa\x01\xe7\xe1\x1d\xd6\x7a\x8a\x16\xf8\x53\x62\x17\x2c\x52\xce\xbe\x53\x54\xd4\x17\x0c\xd3\x1f\x5b\x7e\x5d\xec\xfb\x6f\xe1\xce\x3b\x07\x47\xdb\xda\x6e\x0b\x3f\x92\xed\x45\x6c\xad\xcb\xc2\x43\x34\x41\x51\x37\x79\x74\x24\x92\xd0\xce\x39\xd5\x09\x99\x02\xbf\x25\x4d\x6f\xb6\x62\xb1\x6c\x2d\xd8\x56\xa1\x8d\x69\xef\x53\xc0\xb2\x38\x46\x18\x4f\xff\x87\x8d\xde\x8f\xd9\x2c\x07\x03\x38\x0f\x29\xe4\xf0\x8d\x2f\x52\x8f\xc0\x29\x4d\xfe\x07\x7b\x1c\xfc\x76\x4e\xab\x4d\x0a\x67\x49\x65\xe0\x3a\xb4\x2c\xe6\x50\xcf\xd4\x79\xe4\xb8\x63\xe3\x54\x5e\x05\xfe\xa6\xdb\x21\x83\xdc\x0d\xaf\x25\x15\x88\x42\x9a\x9d\x87\xab\xdf\xdc\x1f\x0e\x11\x4c\x8f\x7b\x57\x1a\xb8\x78\xcb\xbe\x6a\xf6\x05\x72\x15\xca\xfe\x96\x6a\x27\x0d\x59\xb2\x1a\x3a\x96\xb2\x72\xc3\x59\xfe\x1d\xfa\xe9\x6c\xcc\x7b\xcb\x29\x60\x17\x0b\xee\x95\x1d\xf7\xef\x40\x8e\x0d\xd6\x47\x64\xb4\x85\x5f\x6c\x95\xf9\x4e\x7e\x17\xe2\xe2\xcd\xa3\x4c\x59\xda\xa2\x01\x7a\x14\xcf\x50\xcc\xe6\xef\xc3\xee\x37\xf1\x02\x81\x59\xa6\x2c\x7c\xdc\x83\xbb\x0d\x9f\xd9\x4e\x21\xdd\xb2\xd7\xdd\x65\x52\xb2\x6c\xc7\xa2\xb9\xa6\x96\xc8\xae\x45\x72\x2d\x6a\x83\x3a\x2c\x79\x87\x4f\x78\xfe\xb3\x38\x24\xec\xdd\x42\xfe\xb4\xc8\x1e\x21\x7f\xb0\x20\x2f\x64\x69\xd0\xef\x16\x96\x3f\xdc\xf2\xc4\xc4\x82\x51\x5f\x8a\x3d\x2b\xf6\x52\xa7\x35\xc7\xa6\x47\x60\x8d\x7e\x16\x3c\x4b\xad\x31\xdb\x2d\xb0\xe2\x45\x28\x33\xd8\x0a\x1e\xac\xaf\x4b\x40\x65\x8e\xcf\x73\xd9\xeb\x35\x58\x4f\xc7\x42\xfb\x7a\xd0\xd8\xb9\xe2\x7c\xd9\x67\x46\xc0\x29\x7a\x1f\xf6\x25\x8e\xd2\xde\x56\xbf\x84\xf7\x2d\x18\xbb\x35\xdb\x54\x06\x77\xd3\x7c\x36\xe4\xe3\x7f\x08\x6e\xab\xc6\x26\x5a\x89\xfe\x14\xbd\xa0\x7a\x17\xd1\x67\x38\x8e\xde\x49\x17\x81\x15\xf4\xa7\xe8\x55\xd4\x6b\x79\x61\x30\x31\x7f\x83\x52\xe9\x12\xb0\xd6\xa2\x4a\xe9\xbd\xd0\x86\xfc\x4c\x0f\xca\x08\xc2\x42\xab\xf0\x72\x68\xb3\x4e\x9d\x25\x29\x60\x7f\x85\x65\xb9\x6f\xba\x86\x5f\x97\x0f\x60\x2a\x9f\xef\x06\x97\xf4\x39\xa4\x80\xec\xb2\x24\xa3\xdd\xff\x40\x5d\xfb\x86\x46\x25\xe7\xa6\x7c\xce\xd6\x9a\x4f\x94\xd4\xe8\xa5\xe8\x81\x34\x25\xa0\xb1\x49\x87\x31\x91\xea\xb5\xee\x81\x00\xc4\xe9\x13\xe8\x07\x87\xc3\xa3\x06\x87\x6b\x83\x48\x4d\x35\xd9\xe9\x9e\x8f\x16\x42\x1d\x82\x2f\x8a\x96\xdf\xf4\x15\x70\x59\x73\xa6\x62\x0f\x82\x94\xa2\x75\x51\x58\xe8\x96\x60\xed\xec\x0a\x8c\xf9\xda\x0c\x8d\xce\x03\x97\xb5\xc7\x04\xef\x85\xac\x42\x99\xa1\x57\x50\xed\x1c\xef\x1e\x47\x5d\xa3\xb4\x58\x01\x6e\x95\xf3\x7e\xa4\xe0\x38\x1e\x82\x5c\x5a\x72\x23\x72\xe0\x6c\xb0\x80\x5d\x04\x4e\xb1\xbf\x4d\xed\xa6\x8d\xe0\x34\x7d\xbf\xe0\xad\x19\x60\x9b\xb0\x1e\xdb\x7e\x65\x97\x09\x6e\x9a\xb0\xe2\x86\x73\x31\x9e\x65\x46\x48\x38\x03\x74\x12\x2d\x0d\xac\x56\xc8\x61\x94\x68\x5a\x3b\x97\x1c\x42\x1e\x96\xd7\xf2\xcd\xa8\x80\x62\x5f\x33\xfa\xb7\x20\x63\x1f\x90\xf3\x05\xdb\x40\x46\x08\x90\x80\x3c\x04\xd8\xd9\x48\xdf\x09\x9d\x58\x7a\x99\xe0\xd3\xa1\x5f\x14\x76\x09\xda\x2d\x18\x79\x1a\xfd\x11\xf2\xd6\xf8\xae\x95\x30\x1d\xf5\xd1\xd8\xa5\xf8\xcc\x31\x99\xbf\x16\xfa\x0f\x69\xfa\x3f\xd1\xb6\xc1\x0b\x29\x76\x21\x7a\xaa\x31\x66\xe4\x79\xa1\x13\xe1\xa7\x9f\x01\x49\x9c\xa1\x67\x51\x77\xc2\x58\x9d\xed\xf8\x45\x02\xba\xe8\x3d\x5c\x53\x82\x3d\x87\x31\x99\xbc\xd0\x0f\x17\xc1\x9d\xf0\x55\x78\x11\xde\x20\x6e\xd2\x4b\xd6\x93\x3d\xe4\x30\xb9\x97\x7c\x55\x78\x72\xf0\xd1\x1c\x5d\x49\xcf\xa5\x97\xa2\xae\xc4\xfd\xf4\xab\xf4\x69\x3a\x4b\x7f\x4e\x7f\xcb\xdc\x42\x9f\x69\x0b\xbb\x88\x4d\xb0\x83\xec\x26\x76\x07\xbb\x8f\x3d\xc0\x1e\x61\x8f\xb3\xa7\xd8\xb3\xec\x87\xf4\x0a\x88\x5a\x16\x47\x41\x01\x05\x84\xdc\x58\xf0\x56\xbd\xad\x9a\xbe\xec\x06\x71\x96\xed\xbe\x51\x9b\x6f\xee\x6b\x50\xda\xc0\xed\xae\x35\x01\x01\x1b\x1a\xee\x1f\x42\xed\xd4\x0e\xc1\x2d\x6d\xe1\xe0\xb3\x09\x91\xcb\xb9\x67\x76\x09\xac\x71\xd6\xaf\x13\x56\x1a\x3e\x4b\x4f\xc1\xf4\xef\xa1\xd1\xfb\x85\x07\xca\x86\x4e\x11\xd7\x2d\xc8\xc2\xff\x8f\xb0\xab\x87\x6d\xa4\x88\xc2\xef\x27\x18\x27\x10\xff\xac\x7d\xe6\x6c\x67\xf1\xda\x5c\x8c\x74\x05\x15\x05\x0d\x81\x0e\x21\x5d\x81\x4e\x1c\xdc\x01\x12\x14\x80\xc2\x9f\x00\x25\x40\x48\x20\xe4\x0f\x02\xa1\x01\x09\x21\x84\x84\x48\x10\x05\xa2\x80\x90\x32\x35\x55\x84\x82\x84\x80\x82\x02\x51\x47\x14\x88\x06\x4a\xb4\xdf\xbc\x99\x1d\x3b\x44\xd7\x25\x6f\xc7\xe3\x99\xd9\xd9\x79\x6f\xdf\xfb\xbe\xcf\x89\x2e\xa1\xbf\x11\x55\x72\xef\x07\x74\xd1\x3c\x5c\x3c\x1f\x1b\xab\xbe\xf2\x3f\xd7\x4c\xf3\x5b\x3e\x03\x4e\x29\x8d\x58\xba\x3e\x0e\x78\xd5\x94\xb1\xe2\x4f\xe5\x6b\x70\x0c\x24\xe5\x6c\xc4\xbc\x44\xd5\x97\xef\x1b\xb1\xb7\x30\xe7\x3a\x65\xfa\x3c\xce\x04\xb7\x8e\xc5\xfa\x39\x65\xab\x62\xfd\x9c\xfe\xca\x1e\x10\x42\x83\xa0\xb8\x99\x52\x2a\xd3\xc8\xa4\x77\x02\xc6\xac\x41\x0d\x99\x0c\xb6\xb6\x71\x01\x12\xb9\x11\x4f\x7b\xd3\xce\x55\xb0\x52\xa4\x0a\x2e\x99\xdf\x19\x18\xab\xbe\x86\xd3\x68\x64\x15\x75\x21\x6a\x67\x9c\x35\x7d\x01\xa7\x80\x1f\xf7\x80\x52\xa9\x98\x56\x4a\xc1\x7d\x7a\x0e\x6d\x92\xa0\xa9\x9b\xc9\x94\x9d\x26\xc6\x14\x24\xd5\xfd\x60\xf1\x15\xb2\x32\x32\x3e\xb3\xa1\x16\xb5\x1b\xfe\xcf\xe0\x7b\xaf\x81\xb5\x56\xf1\xd8\x75\xb9\x09\x58\x27\xdf\x67\x49\xae\xa2\x7d\xcf\xb3\xcc\x78\x15\x68\x0d\x5b\x4b\xbe\x9f\x6e\xf0\xe7\xac\xdc\x8c\xbf\x5d\xf6\xfe\xc9\x82\x97\xa6\x2f\x21\xf7\x8e\xec\x01\xaf\xe3\x79\x1f\x52\x26\x4f\x41\x99\xaa\x42\x1d\xa9\xd1\x04\x76\x6e\xa2\x2f\x87\xac\xfb\x8b\xa4\xf9\xbb\x88\x3e\x03\x2c\x54\x95\x37\x48\xe8\x36\x43\x48\xce\xd1\x65\x7a\x82\x9e\x95\x15\x70\x5b\xbc\x82\x62\x50\xed\x90\xe5\x31\xbb\xa9\x7f\xd0\x4f\x34\x89\xf5\x8c\x14\xa2\xf5\x3b\x2a\x45\xf1\xe4\x8f\x60\xbc\xd4\x69\x86\xcb\x60\xbc\x54\x69\x96\x2e\xd1\x12\x7d\x49\x47\xf4\x27\x57\xf8\x0e\xbe\xc4\xf3\xbc\x15\x50\x91\x65\xc9\xe4\x2e\x79\x40\xe6\x65\x4d\x3e\x91\x6f\xe4\x7b\xf9\x4d\xfe\x1a\xcb\x86\x7f\xac\x5f\xe9\xa1\xfe\xa0\xbf\xf3\x9c\xc5\xf3\xf1\x9b\xd3\x59\xca\x07\x77\x5f\xa7\x6d\xac\xd4\x7b\x0f\x7c\xe8\xd9\x6d\xdd\xdb\xc7\x15\x44\xd5\x75\x53\xd3\xaa\x9d\xd6\xcb\x93\x3a\x5a\x24\xe6\x65\xf3\xc8\xac\x31\x5a\x05\xe7\x6d\x44\xc2\xae\x8f\xa6\xc5\x8b\xd3\xc6\xec\x4b\xa8\xaf\xef\xe0\x8e\x8f\x2b\xc4\xfb\x38\xf9\x2d\xec\x7f\xd7\xff\x39\xc3\x83\xfa\x78\xe7\x4a\xa8\x68\x9e\xaa\x26\xea\x1b\xd1\xe7\x6a\xa6\xe6\xe8\x6a\x86\x6d\x7d\xdd\x2a\xa2\xad\x90\xc7\x9a\xb6\x6b\x3d\x49\x80\xff\x8e\xe7\x93\x5a\xc6\xf9\x61\x5c\xa9\x07\xb6\x47\x50\x36\xd7\x4d\xe4\x8d\xdd\x67\x32\x8b\x4f\x2a\xd4\xd1\x37\x23\x7b\x2d\xe4\x93\xbb\xb4\x02\x7b\x31\x6e\xc3\xdf\xea\x7a\xd4\xde\x55\xe9\x9c\x27\x5f\x8e\xec\x2e\x3a\x72\x38\x93\xab\xc6\x71\x1d\xd8\x9a\x7a\x0e\xff\xb5\x31\x7b\xc7\xe5\x5c\xf5\x6d\x20\xbd\xc7\x56\x5a\x57\x60\xf5\xbd\xbb\x67\x76\x48\xcb\xb0\x16\x77\xde\x21\x72\x76\x81\xae\xf4\x95\x07\xe7\x17\xfa\x52\x8f\x7a\xf0\x7b\x60\xa8\x1b\x91\xf5\x56\xab\x24\xf5\xe9\x11\x53\x1c\xf4\x63\x73\xa7\xe5\xe7\xc6\xa8\xee\x45\xfe\x6f\xcb\xea\x93\x17\x22\x0c\xd9\x5a\x64\xf3\x75\x58\x77\x22\xb7\x4c\xc1\xdf\xc5\xab\x8f\xc2\x56\x7c\x4b\x7e\x36\x76\x71\xca\x35\x2d\xfb\x99\xaf\xc7\x2a\x2c\x89\xf1\xc2\xf2\x59\x3f\x04\x4b\x74\x8f\x65\x8f\xca\x94\x8e\xe4\x39\xbe\x40\x54\xd4\xc5\x5b\x44\x42\x43\x70\x64\x1f\xa4\x45\xfa\x88\x0e\xe8\x98\x4e\x58\xb8\xc5\x17\x79\x8e\x2f\xf3\xd3\xbc\xc4\x3b\xfc\x29\x7f\xcd\x87\x7c\xc4\xbf\xf2\x1f\x7c\xc2\x7f\xeb\xbb\xf8\xae\x76\xe4\x57\x4e\xe9\xad\xca\x39\xa8\x48\x7a\x05\x18\x8f\x5c\xcb\xfc\xd3\xae\xdb\xf6\xab\x11\xbe\x8f\x31\xc5\x50\x9e\xc2\x3a\xb8\xf7\xcd\x7e\x94\x15\x70\xe8\x88\x19\x53\xbd\x68\x19\xf3\x38\xee\xf9\xbd\x10\x97\x27\x91\xa6\x3f\x38\xc4\x7a\x60\x75\x10\xe7\xfb\xda\xc1\xa7\x2c\xa0\x36\x51\x8d\x9f\x6a\xfa\x27\x28\x31\x16\x68\xc5\x7b\xcd\x87\xa5\x91\xfa\x88\xf3\x93\x6e\xa4\x3e\x2b\xd8\xa4\x49\xf4\x56\x0b\x0a\x86\x43\xf9\x05\x7e\xac\x12\x58\x3f\x7d\x69\x51\x19\xad\x32\xf8\x81\x2e\x0d\xe9\x5f\x78\xa1\x02\x9b\xd8\xc0\xef\x2a\x16\x3a\x02\x3f\xc3\x2b\x25\x96\x1d\xae\xd3\x45\x54\x93\x7b\x9e\x49\xc2\x9b\xa8\x34\x60\x7e\xba\x63\x31\xe6\x79\xd9\x07\xee\x3d\x1f\xe1\x63\xa4\xf9\x3c\xe5\x5b\x12\xaa\x11\xd3\x84\xbe\x0f\xf4\xeb\xc0\x98\xbb\xc9\x18\xf3\x2b\x89\x74\xfc\x14\x4a\xd1\x77\xca\xe3\x51\xc5\x6a\xc6\xb2\x51\xf9\xae\x4d\xf5\x43\xc3\x14\x87\x2b\xfa\x81\xa1\xfd\x3b\xb6\x13\x84\x26\xa8\x44\x25\x22\xdc\x5d\xa6\xf3\x74\x81\xa6\x68\x48\xb7\xd3\x2d\xff\x05\x00\x00\xff\xff\x11\x1e\xc9\xd5\xb4\xf4\x01\x00") func vendor_material_icons_materialicons_regular_ttf() ([]byte, error) { return bindata_read( _vendor_material_icons_materialicons_regular_ttf, "vendor/material-icons/MaterialIcons-Regular.ttf", ) } var _vendor_material_icons_materialicons_regular_woff = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x9a\x53\x90\x2e\x0c\xd0\x9c\xdf\xdd\x3d\x6b\x9d\xb5\x71\xd6\xb6\x6d\xdb\xb6\x6d\xdb\xb6\x6d\xdb\xb6\x6d\xdb\xb6\x99\xfa\xfe\x24\x17\x49\xd7\xf4\xcd\x54\x57\xcd\x53\x73\xdd\xae\xb2\x22\x22\x00\x20\x00\x00\x00\xd8\x47\x06\xc0\x01\x00\x00\xa0\x27\x27\x00\xd0\xff\xde\xfc\xff\x12\x15\x12\x16\x01\x00\x80\x84\x00\x00\x00\x21\x00\x00\x20\xfa\x03\x00\x28\x8a\xca\xc9\x2a\x02\x00\x40\x66\x00\x00\x80\x1a\x00\x00\xb0\xec\xa1\xdf\x66\x89\x2a\x2a\x0b\x00\x00\x40\x69\x00\x00\x29\x2f\x00\x60\x2e\x77\xb4\x50\x2e\x2f\xab\x48\xcb\x00\x00\x90\xad\x01\x00\x00\x3e\x00\x00\xa0\x07\xe5\x48\x60\x68\x68\xad\x6f\x07\x00\x90\xa3\x03\x00\x20\xd8\x00\x00\x18\xf0\xfd\x1d\xfd\x9e\xa9\xbe\xa3\x1d\x00\x40\xc5\x04\x00\x00\x20\xfe\xf3\xef\x2f\x00\xc4\xd4\xca\xdd\x04\x00\xa0\xe2\x02\x00\xca\x67\x00\x40\x0e\x98\xbf\x61\xea\xc1\x66\xc6\xfa\x46\x00\xc0\x0a\x0c\x00\x00\x60\xfe\xef\x2e\xd8\xc6\xb9\x8c\x99\x99\xb1\x3e\x00\xb0\xf2\x1f\x1f\xca\xff\xf0\x01\x01\xff\x31\xb3\x76\x72\x03\x00\x56\xb4\x00\x00\x60\x76\x00\x00\x3c\xcf\xe2\xc4\x5c\xc4\xca\xd6\x50\x1f\x00\x58\x4b\x03\x00\xc0\x03\x01\x00\xf0\x2c\x78\x5f\x8b\x21\x6b\x7d\x37\x3b\x00\x60\x0f\x1b\x00\x00\xe0\xff\xe7\x3f\xa4\x80\x7d\x1b\x7d\x6b\x63\x00\x60\x8f\x0b\x00\x00\x0c\x02\x00\x40\x1e\xd8\xf0\xcc\x47\x76\xb6\x8e\x4e\x00\xc0\xfe\x7f\xef\x40\xfa\x2f\xf7\x1b\x02\x60\x70\x03\x32\xd4\x33\xd2\xd3\xdb\x03\x32\xc0\xc0\x37\x01\x16\x30\x01\x73\xce\x4b\x03\x7b\xc4\xc0\xcf\x04\x25\x03\x4b\x02\x07\x20\x81\x03\xa9\x02\xfe\x6f\xc6\x20\xce\x90\x4e\x5f\x6f\x4a\x9c\x6a\xdc\x70\x4f\x4f\x4f\x1f\x10\xf0\xfb\xdb\xcf\x10\x35\x9c\xae\x5c\x2e\x57\x0f\x0a\x63\x07\x00\x74\xe3\x82\xf9\x03\x00\x00\x37\xa0\xa8\x64\x90\x38\x62\xee\xbf\xa3\x9c\x18\x35\x27\xfa\xef\x4d\xf0\xb9\xd6\x9b\x2d\xff\x67\x1a\x9f\xee\xad\x36\x7f\x96\xad\x5e\x94\x55\x5c\x55\xcb\xa5\x3a\x3e\x77\xe1\x44\x92\xc2\x96\x24\x3a\xab\x28\x2e\x96\x0a\x67\xb8\xb5\x05\xec\xe3\xc7\x06\x82\xf1\x03\xae\x8a\x90\x62\x04\xc0\x50\x64\x53\xfb\x23\x84\xb2\xd9\x64\x19\x1a\xf2\xaf\xb0\xe0\xc2\x47\x9a\x79\xd2\x7b\x1b\xdf\x0e\x24\x02\x55\xd8\xbd\x9b\xb5\x57\xdd\x3c\xab\x17\x59\x3b\xbc\x1b\x99\x5b\xab\xb6\x1f\x8e\xb3\x79\x77\x8e\xef\xb9\x17\x43\xf1\xbc\x9e\x36\x44\x79\x3d\xbf\xb6\x49\x77\xbc\x0e\x42\x03\xe0\xb9\x85\x2e\x88\x88\x61\x15\x92\xba\x92\x88\x0d\x5a\xf8\x8e\x8d\x44\xdb\x35\x7d\x54\xf3\x37\x14\xb4\xcb\x74\x54\x07\x9d\x22\x77\x54\x72\xab\xf1\x56\x79\x2f\xc4\x65\x32\x1b\xdb\x1d\x9b\x1c\xbb\x1f\x1b\x1e\x2b\x19\x67\xaa\x5d\x55\x9d\x5d\x9d\x65\x9d\x6d\x9d\x75\x5d\x7c\x9d\x44\xdd\x36\x2c\x5f\x59\x5e\x5e\x5e\x67\x5e\x6c\x5e\x75\x9e\x7a\x5e\x3e\xdc\x19\xbf\x8a\x7a\x1b\x7a\xab\x7d\xcb\x7c\x6b\x7c\x2b\x7f\xab\x7e\xeb\x7f\x4b\x79\x07\x72\xd1\x8a\x02\x51\x02\xa7\x03\xbb\x03\x0f\x03\x23\x03\x37\x03\x4b\x03\x5f\x03\x73\x03\x7d\xfa\x83\xf4\xf8\xd1\x83\xaf\xf7\x2f\xf6\x4f\xf6\x6f\xf6\xf3\xf7\xc3\xf7\xdb\xf7\x8f\xf7\x9f\x3f\xd4\xc9\xe3\x34\xe5\x19\xbc\x1c\x13\x48\x4e\x11\x75\x19\x42\x04\x08\xc8\x7b\x26\xe9\x14\x15\xf8\x33\x10\xec\xca\x50\xef\x9a\x7c\xf8\x1f\xbc\x37\x4c\xf2\x32\x82\x3e\x30\xd4\xdf\x08\xb8\x78\x88\xc8\xab\x3e\xdc\x9f\x52\x57\x18\x46\x35\x82\x08\x3a\x7c\xca\x69\x39\x91\xfe\x99\xff\x6b\xd9\x76\xac\x92\xc4\x80\xb7\x61\x3f\x12\x0e\x7f\x8a\xbc\x93\x44\x9b\x6e\xf1\x10\xd9\xf8\x68\xb2\x48\x8a\xca\x27\xa8\x23\x61\xeb\xc8\x97\x8d\x79\x1e\xe7\x4b\x01\x15\x1f\x56\xfa\x57\x12\x27\x06\x47\x41\x6e\x76\x27\xac\x0b\x1f\x2a\x23\x81\x58\x05\x1c\x42\x2b\x2e\xf6\x27\x40\xb4\x68\x68\x10\x4c\x67\x0e\xf4\x5b\x37\xc3\x70\x33\x60\x5e\x4c\x12\x75\x52\xa9\x4a\xd4\x67\x2c\xc1\xac\x7e\xd4\x2d\x87\x5f\x84\x58\x04\xda\x12\xae\xbb\xe9\x5e\x97\x44\x01\x21\x43\x8b\xb3\xea\xc9\xc9\xfc\xaa\xdc\xbc\xc3\xc0\xf2\x55\xb0\x36\xf6\xcc\xc5\xc8\x9d\x72\x45\xc6\xb9\x1a\x39\x06\x73\x9e\x3e\x7b\xa9\x90\xc8\xb8\x49\x42\x49\x38\x16\x1d\x7f\x01\x79\x53\x78\x2d\xf9\x99\xe9\x8e\xd8\xa8\x24\x57\xc4\x14\x92\x53\x68\x37\xc1\xdb\x24\x47\xb4\x52\x5e\x36\x59\xc8\x36\x3e\xca\x5b\x63\x5b\x61\x58\xf2\x2e\x9e\x1f\x5a\xe0\x44\xce\xdd\x1b\xf1\xed\xc0\xa5\x1b\xcf\x6d\x17\xe3\x28\x4b\x96\xc3\x9e\x8d\x82\x55\x3b\x5f\x17\xa6\xa3\x34\xd4\x9f\xf6\x24\xeb\x2c\x5e\x0e\x75\xe7\x3a\x49\xfb\x5f\x7c\x72\xf6\x78\x78\xb8\x92\x82\x07\x94\xe5\xec\xc6\x74\xe4\xbe\x17\xa6\xeb\x3f\x43\xb7\x2f\x84\x7c\xa3\x99\x35\x72\x31\xcf\x72\xcc\xe8\x80\x8e\xf8\x66\x43\xdf\xf3\xd8\x6d\x4a\xf2\x73\x45\x6b\xce\x0f\xd9\xe9\x65\xab\x90\x91\x76\xc5\xc4\x71\xf2\x7e\x23\xdb\x7a\x2d\x9d\x9f\x7a\x7a\x33\x8e\xbf\x9a\xc6\xf7\xee\xe5\x4b\x9a\x3c\xe3\x79\x8b\x85\x15\xe0\xf9\xb1\xf6\xa1\x19\xfd\x67\x5d\x75\x20\x6f\x9c\xb8\x43\x33\xf5\xda\x14\x63\xe9\x1e\x04\x62\xe2\x50\x76\xe2\x8e\x07\x53\x9d\xb5\xa4\x7e\x47\xe8\x4e\x1b\x5b\xf2\x8b\xf4\xde\x62\xcb\x9a\x60\x4c\xe6\xdf\xe4\x3f\x60\xe7\xcc\xb6\xdc\x02\x17\x1d\xb7\x94\x4f\x0e\x0f\xb4\x0e\x9b\xc0\xb2\x02\xd8\xda\x49\x1c\x48\x84\x0d\x9e\x15\x17\x71\x9b\xcc\x0e\x8a\x87\xd9\xb9\x54\xcd\xdc\xaf\x2a\xb9\x64\xcd\x2a\xb5\x88\xf5\xca\x99\x8f\x4c\x0b\x35\xd9\xa3\x81\x5d\xe1\x4d\xa3\xd6\x2b\x89\x1c\x5f\x98\xda\x87\xaa\xdb\x11\x4d\x88\xbb\xa2\x0d\x02\xac\x2f\x95\x2e\x29\x1a\x94\xac\x85\x94\xa4\x92\xd1\xec\xe7\xca\xd2\xdc\xa8\xe9\xe7\x52\xa7\xd3\x49\xca\x71\xce\x2a\x52\x47\x6b\x27\xbc\x84\x8d\x9c\xec\x23\x2d\xc6\xa0\xab\x8c\xf1\xca\x41\x3f\xf8\xc4\x14\x8e\xea\xce\x8c\x0d\x36\xac\xea\xb1\x89\x73\x31\x91\x56\xcc\x44\x93\x4a\x9f\x32\x4a\xa7\xfa\x90\x73\xe3\x4a\xbb\xf5\xad\xfb\x91\x02\xc2\x27\xcb\x9e\x20\x39\x69\xd9\x9c\x65\xa3\x83\xa7\x53\xd9\x66\xfa\xdc\x02\xc0\x97\xa0\x6a\x3b\xef\xe8\x3c\xe1\x2c\x9f\x31\x5d\x55\x36\x88\x78\xd5\x2a\x6e\x0f\x0b\x85\xc3\x95\x26\x4d\x16\x52\xa4\x7c\x0d\x1f\x7f\xec\xef\xe5\xf8\x4e\x9d\xed\x0f\x30\x6b\x51\x55\xe6\x60\x8f\xa4\xdc\x95\x7a\x92\xed\x29\xaa\x59\x94\x42\x2b\x28\x97\x17\x2f\x2c\x99\x85\x2c\xb5\xe7\x35\x2f\x0b\x9f\x97\x3f\xc4\xbf\xcb\x7f\x44\x65\x1d\x09\x4c\x85\x4d\x2d\x4f\xe5\x4e\xbd\x4e\x65\x4e\x8d\x4f\x35\x4d\xfd\x18\x27\xa5\x3b\x2b\x3b\x36\x3b\x45\x3b\xd0\x3a\x5f\x3b\x6a\x3b\x77\x3b\x41\xb6\x30\x74\xba\x55\xef\x59\x9e\x5c\x5e\x63\x5e\x66\x5e\x6d\x9e\x70\x5f\x74\x9e\x79\x5e\x7d\x5e\x3f\xdc\x0b\xbb\xcc\x7b\xc6\x00\x14\xa7\x41\x8c\x67\x31\x54\x78\xb9\xf0\x44\x73\xd2\xcb\xae\x5d\xf1\x59\x8c\x51\xf9\x72\x18\x67\x4d\x75\x68\x51\x0c\x19\x67\xa3\xd9\x33\xe9\x9c\x29\x25\x11\xfb\xdd\xe7\xe9\xaf\x5b\x4f\x1c\x2f\x5e\x39\x7f\x91\x30\xbe\xab\x47\x0e\x5a\x32\xb5\x1a\xea\x5d\x32\x61\x02\x2f\xcf\x61\xa1\xb9\x44\x4e\x9c\x4a\x8d\x98\x1a\xc3\xaa\x20\x9b\xa2\x68\x1d\x0f\xef\x80\x23\xb2\x6a\x28\x3f\xa2\xbc\xe3\x69\x7f\xfa\x33\x40\xe1\xac\x40\x57\xb0\x55\xb2\x04\xb8\x55\xcb\x42\xe7\x55\xa2\x77\xaf\x63\x49\x09\xc3\xd6\x35\x8b\xca\x0e\xa3\x38\x72\x03\x47\x6d\x2b\x83\x89\xa7\xad\xff\xd5\x58\x80\xb4\x36\xaa\x8d\x6c\x85\xa0\x36\x8d\xf1\x89\xbc\xdc\xe0\xd1\xa4\x9c\x5b\xf6\x79\xbe\x10\x56\xec\xac\xf5\xef\xad\xc4\x64\x34\xae\x8f\x44\xfd\xa2\x29\xa5\x9d\xc9\xe7\x67\xcf\x93\x15\x75\x0f\xcf\x42\xbc\x50\x04\x54\x5c\x60\x4a\x1a\xdc\x4f\x57\x6c\xee\x8d\x4b\x45\xac\x50\x2a\xd2\x9f\xf6\xf2\x32\x70\x52\x5e\xe2\xc8\x99\x97\xb7\x7a\x43\x65\x1b\xf2\x55\x82\xf3\x79\x4c\x16\xab\x10\x77\xae\x13\xed\x8f\xfd\xcd\x14\x82\x0f\x62\x43\xf4\xdf\xda\x0d\x6d\xc5\x74\xd6\xc5\x13\x2b\xbb\xb9\x06\x81\x5c\x22\x90\xa8\x06\xee\x48\xd6\x0a\x95\x78\x31\xc2\xbf\x2e\x19\x27\xf2\xb6\xde\x48\x5d\x75\x87\x99\x7c\x4b\xff\xd5\x35\xf9\x7f\xb5\xd2\x2e\x6a\x3a\x72\xcf\xb2\xfd\x08\xdf\x84\xab\x9e\x62\xac\x99\x52\x73\x84\x3d\x9f\x4f\x7a\x34\xc8\xf9\x94\xf4\x56\x07\xc7\xed\xdf\xae\xe3\x31\x22\x1f\xbb\xe1\x68\x0f\x3d\xfa\x50\x8f\x4e\x78\x0a\x8a\x95\xb0\xdd\xdf\xce\x4c\xd6\xcc\x2a\x2e\x9b\x31\x1a\x21\xb1\xff\xec\xae\xf4\x89\xdb\x27\x2a\x13\x70\xa4\x5a\xb6\xc9\x09\xde\xbd\xbd\x75\x19\x3d\xfe\x7c\x14\xb2\x1a\xf8\xe9\xf7\xc8\x9e\xd6\xf1\x80\x34\xfa\x3d\x97\x5d\x03\xbd\x8d\xe1\x9f\x7e\xc9\x70\xa2\x9c\xcf\xd9\x58\x69\xc2\x7c\x53\xd8\x30\x09\xef\x69\x71\xef\x84\x8b\x02\xb1\xf1\x15\x76\xb6\x24\xf7\x55\x26\x36\x19\x05\xe2\x0c\xf1\xe0\x07\x4b\x77\xe1\x2c\xf1\xd5\x29\xa0\x0a\x01\x6b\x0f\x35\x96\x07\xbc\xc5\x9c\x63\x20\x51\xdf\xdb\x9d\x46\xc9\xbc\xab\xb8\xe5\x23\xf9\xf6\x37\xff\x4c\x83\xb9\xe4\x5a\xcc\xfe\x53\xfa\x54\x90\xdc\xc1\x0d\x6c\xba\x15\x19\xf1\x04\x38\x85\x23\x46\x82\x29\x08\xa1\xfb\x84\xd4\x3c\x56\xd0\xa9\x76\x3e\x59\x49\xa1\x6a\xde\xb6\xa7\x90\xef\x54\x3b\x83\xa6\x24\xb5\x9d\x40\x5e\xcf\x79\x27\x97\xf6\xf4\x14\x36\x1d\xd2\x44\xa7\xb1\x67\x7d\x37\xcb\xf2\x86\xc5\x56\xc3\x90\x71\x5c\x56\xb5\x69\x73\xd3\xf0\x3a\xf9\x45\x7e\x5c\xee\x50\x4f\xe0\x6e\x56\x6f\x58\x6f\x73\xef\x6e\x4f\xe0\xfe\xb7\x16\x6c\x37\x15\xb3\x38\x5d\xc2\x31\x55\x05\xf5\xd6\xd7\xee\xdc\xea\xfe\x5b\x36\x95\x07\x6e\xd0\x4e\x8a\x4d\xb5\x4d\xaf\xcd\xa3\xcd\xda\x8d\xee\x61\x29\x74\x70\x75\xb0\xb6\xd0\x81\x89\x24\x83\x3a\x83\x53\x83\x45\x83\x77\x43\x9e\x61\x59\xb1\x70\xb2\x90\xb3\xb0\xb4\xb0\xb5\xb0\xf6\x10\x5f\xe6\x50\xca\x61\xb9\x77\xe4\x71\x44\x72\xa4\x72\x04\x6b\x64\x73\xa4\x73\x14\x7c\x44\x74\xb4\x74\xe4\xf4\x71\x7d\xa9\x54\x47\xc9\x0a\xe5\xbe\x39\x38\x0c\x92\x29\x88\xaa\x91\x58\xe9\x8d\xed\xa8\x9c\x56\x01\xef\x45\x63\x25\xab\x90\x78\x77\x11\x4a\xbb\xde\xbe\xf7\xbc\x10\xec\x88\x85\x5e\x04\x01\xe3\x26\xe6\x76\x9a\x06\x59\x46\x0d\xea\x4a\x2f\xe9\x20\x53\x83\x46\xfb\xc8\xac\x89\x3d\xe0\x02\xf3\x5b\x48\xc2\xfe\xd3\x8b\xfb\x0d\xb9\x02\xed\x47\x33\xbe\xc6\x8d\x65\x2a\xe7\x3c\x42\x38\x87\x1d\x8f\x3b\x30\x43\x17\x16\x79\x0c\x21\xfd\x96\x2d\xff\x09\x10\x58\xf7\x75\x3d\x4c\x16\x2e\x63\x31\x9a\xbc\x35\xb1\xec\xe2\x8e\x51\x61\x3e\xab\x66\x07\xf4\x7a\x76\x25\x0d\xcc\x9a\x2b\xd1\x1c\x93\x21\xdd\xb7\xe6\x33\x5f\xc1\xd1\xa0\xe2\xa2\x3b\x0f\x8d\xae\x79\x58\x7c\x21\x8e\x61\x20\x13\x89\x36\xe2\x33\x91\xe3\x27\xf8\x08\x27\x27\x64\xf9\x18\xf9\x75\xbd\xbc\xc5\xbe\xcc\x96\x4c\xae\x91\x29\xc4\x78\xae\xc6\x0d\x92\xe5\x1b\xa9\x04\xe2\x09\xa6\x5c\x07\x4d\x3d\x45\x5b\x98\x0d\x43\x7a\x78\x7c\x54\x09\xac\x3e\x98\x07\xe3\x89\x75\x32\x0c\x3b\x30\x31\xac\xab\x4f\x6b\x21\x90\x6e\x04\x3f\xa0\xa6\xc7\xa3\x67\xb5\x75\xcd\x85\xb7\x8b\xd9\x5d\x87\x30\x8d\x41\x11\xac\x7c\x3f\xac\x34\xee\x98\x57\x72\x90\x28\xc5\x2c\xfb\x4e\x95\xef\x52\xe7\xd4\x48\xbe\x92\xbb\xe0\xd6\x0c\x39\x1a\xb9\xd0\xfc\xde\x96\xc4\x74\xbb\xb4\x5c\xec\x82\xf7\xbe\x80\x04\xb8\xa9\x80\x6e\xae\x48\x32\x14\x1b\x2d\x8f\xc9\xa0\xed\x63\xa0\x8d\xa7\x5d\x56\xaa\x87\x91\xc3\x5a\x69\xe1\x2c\x1f\x9d\xa2\x24\x2c\x37\xd8\xc2\xd4\xd5\x88\x52\x84\x87\x7a\x8a\xf9\x92\x3a\x88\x66\xdd\x05\x78\x64\x74\xa5\x3d\x95\xe1\x98\xd9\x94\xb0\xf4\x91\x4a\xc8\xd6\x6f\xb2\xc1\x26\xdb\x33\x3b\x7b\x56\xd6\x18\xec\x88\x77\xe9\xfd\x9b\x9e\x94\x60\xc9\xb7\xb1\x45\x63\xf6\x51\x13\x88\xf5\x80\x75\x8d\xda\x8e\xed\x78\xc0\x19\xd2\xa8\x5b\x28\x31\x87\xd4\x56\xbd\x50\xfa\x51\xe0\x91\x3e\x1b\x7c\x43\xe2\xc1\x70\x70\x22\x46\x07\xa1\xe1\x19\x2f\xa5\xcc\xe0\xd6\x3a\x1b\x7c\x8f\xb3\x0c\xba\xa9\xd5\xf4\x82\xa2\xa5\x70\xd2\x6e\xce\x2c\x7f\x30\x8e\xc9\xc1\x38\x6b\x43\x60\x01\xe0\xa0\xa7\xe0\x0b\xab\xb6\x67\xce\x85\xde\x3b\xbc\xa8\x50\xa0\xb5\x0a\xb4\x2b\x6e\x08\x96\x4d\x44\x97\x85\x4a\x65\x11\x2b\x2a\x2d\x15\xd1\x63\x72\xd6\xc5\xc9\x65\x6f\xd6\xa4\xb8\x04\xc8\x65\x3f\x0b\x6e\xa8\x6d\x2c\xc7\x47\xf2\xbc\xf9\x75\x93\xc9\x4f\x25\x8b\x5a\xf7\x84\x25\x78\x79\x3b\x9f\x25\x3d\xb0\xc3\x51\xe7\x09\xfd\xb8\x64\xa2\x91\xdd\x1f\x06\x70\xf3\x9b\xd5\x61\x80\x27\x52\x09\x88\xe7\x17\x8f\x1c\x6a\x93\x91\x37\xc9\xc7\x76\xc0\x0f\x5b\xaf\x64\xdd\x63\xe4\x31\x39\x5e\xe5\x3e\x80\x22\x9f\x7a\x24\xf9\x7f\xcc\xb8\x92\xd1\xcf\xed\xb4\xc3\x11\xff\x49\xe9\x9c\xcb\xc7\xf7\xdd\x3f\x26\x57\xb1\x2d\x79\x0b\x73\x29\x61\x5b\x85\xe8\x09\x9f\x2d\x2a\x9b\x3e\xbc\xae\xde\xcd\x90\xcd\x8c\x26\x9b\xea\x56\x5a\xdc\x09\xa0\xc5\x87\xd9\xef\x88\x19\x20\x20\xb8\xbb\x3f\x5b\x44\xa2\xe7\xa5\x5c\x38\x1b\xfe\xd6\xf1\x93\x78\xbf\xd1\x0a\x66\x91\x19\xc4\x6c\x92\x27\x65\xc0\x92\xd4\x74\xdd\xb0\x02\xe3\xe8\x62\xca\x15\xf5\xaf\xb1\x94\x35\xef\x6f\xa9\x2e\xe6\x43\x58\x96\x41\x26\x83\xeb\x84\xac\xf6\xc1\xa8\xa7\x02\xbd\x18\x37\x29\x51\x36\x16\x46\x5b\x38\x7c\xa2\x8e\x3d\xf1\x7d\xb8\xe8\x22\xcd\x9d\x76\x7d\xdc\x24\x61\x4a\x9c\xda\x32\x91\x3e\xaa\x65\xcd\x44\x9b\x7e\x75\x49\xca\x1e\x9e\xb1\x54\x6d\xde\x94\xf8\xf1\xa8\xe9\x5e\xe7\x31\xdf\x85\x27\x43\x47\x91\x82\xfe\xc1\xa5\xc2\xad\xc2\xb0\xc2\xb8\x22\x57\xbf\x3a\xef\x2f\xee\x9f\xee\x0f\xec\x5f\x0c\x30\xde\x61\x56\x95\x87\xb2\xe5\x0e\xcb\xac\x52\xcf\x5b\xf9\xeb\xf9\x40\xb1\xa7\x43\xe8\x50\x7e\x9d\x71\xbe\x0f\x1f\xca\xc5\x95\xbf\x03\x72\x2d\x3f\xc0\x6c\xed\x46\xf3\x9c\x22\x7d\x54\x99\x38\xa5\x34\xb5\x6f\x6f\xae\xdd\x23\xea\x5e\x83\x9a\x13\xef\x8c\x87\x3c\x5d\x19\xc6\xa2\xc3\x1c\xcd\xc0\xdd\xac\x33\x5f\xba\xa1\x6e\xb9\xe4\x5f\xea\xb4\x57\x36\xa8\x40\x44\x02\x0d\x5e\x91\x34\x48\x40\xce\x6e\xcd\x38\x78\xf7\xad\x31\x78\xc3\x8a\xc4\x19\x83\x07\xea\xa9\x06\xf9\x06\xf4\x83\xe6\xa2\x64\x14\xa1\x06\x5b\x1b\xf6\x23\xe5\xe6\xff\xf8\x4f\x9d\x49\xd5\x28\x3e\xfd\xb8\x7c\x41\x7f\x76\x74\xfc\x83\x04\x7e\xb7\xb2\xe7\x06\xa4\xe2\xcd\x11\x2d\x6d\x42\xea\x82\x0e\x15\xa3\x73\x3d\x93\x22\x5b\x76\x4c\x07\x7c\xbc\x6c\x4f\x51\xc2\x43\x80\x63\xf5\xef\x2d\x35\xb2\x39\xc8\x7e\x49\x5c\xb8\x15\xc8\x23\xaf\xf0\xb6\x35\x21\xa3\x5e\x63\x92\xc6\x8b\x55\x34\xe2\x61\x93\x0a\x57\xde\x8e\x03\x68\x7e\xeb\xf5\x5f\x8f\x0a\x16\x05\x0f\x94\x9e\xca\x3e\x79\xd3\x76\x07\x3d\xca\xbb\xa1\x2f\x5b\x21\xf8\x71\x54\x7f\x49\x3f\xa3\xbf\xfa\xa4\x72\xef\xad\x9f\x7d\x9e\x50\xcd\x6a\x81\x51\x7e\xcf\x37\xd0\x3a\xd3\x2b\xf9\xc5\x53\x56\xb3\x45\x0e\x31\x52\xa1\x0e\x4f\xaf\x3d\x0a\x94\x7d\xe0\x18\x26\x32\xd3\x3c\x77\x8f\x7d\xb8\x6b\xc4\xe7\xac\x9e\x0a\x01\xdb\xd5\xa8\x18\x65\xd4\x90\xb0\x2a\x3a\x6b\x11\xd4\x95\xbf\x32\x8f\x62\x0e\xa0\xc2\x71\xfe\x9f\xa4\x5b\x78\x07\x9d\x6b\xef\xdf\x64\x0a\xde\x9a\x7d\x24\xa9\x8a\x62\xe4\x2a\xb4\x3d\x3b\x5b\x52\xff\xbe\xa8\x6f\xa0\xb4\xe1\x63\x35\x80\x76\x26\xac\x20\x64\xb8\x49\x33\xe5\xf2\xea\x6d\x8d\x9b\x86\x64\x37\xd2\xa8\xa8\x4e\x08\x1b\xf8\x48\x0d\xcf\x6e\x9b\xe8\x71\xa4\x57\x17\x1e\x9f\xb8\xe1\xef\x72\xdd\xd5\x77\x32\xe0\x4f\x23\xdf\x7d\x7c\xb2\x7b\x59\xcb\xd3\x4d\x7e\xcc\x53\x58\xb0\x22\x76\x39\x37\xb2\x68\x93\x3b\x43\xa7\x27\x4f\xbc\x1f\x9b\x99\x5b\x08\xd0\x9b\x6b\x61\x93\x3b\x96\x9d\x57\xe1\xcf\x2f\x83\xdb\xa3\x2e\x68\x78\xbf\x84\x22\x5a\xb6\x2e\x06\x30\xdf\x30\xf3\xa5\xfe\xd4\x4c\xea\x75\x96\x1b\xfc\xa9\x87\xaf\x16\xd4\xfa\xe6\xc4\xf6\x8f\xcf\xf2\x1b\x39\x5d\x13\x9e\x4b\xba\x69\x55\xd9\x7a\xe3\xb8\xb8\x27\x06\xa8\x9e\xc1\x78\x5d\x87\x7d\xfb\x9f\xa9\xdd\x7f\xda\x4f\xc0\x2e\xd7\x3a\xda\xf6\xad\x4e\xea\xf6\xba\x32\x54\x39\x36\xa9\xcb\xdf\x5e\xaf\xe9\x5f\xbc\x2a\x3e\xbe\x46\xfc\xe3\x1d\x65\xcc\x54\x44\x33\x3a\x88\xd1\xa3\x62\xf0\xd8\x84\xe5\x38\x3a\x4e\x17\x88\xd4\x30\x81\x8e\xf5\x05\x28\x28\x7a\x16\xcf\x09\x93\xda\x99\x30\x41\xb6\x27\xe5\xc1\x36\xe2\x25\x47\x7e\x2f\x41\xed\x13\x79\x0a\xf1\x53\xeb\x74\x4d\x59\xe4\x11\xb4\x52\x35\xb1\x7e\x76\x76\x5d\x14\x2a\x84\xb7\x41\x02\x51\x1b\x10\xaf\x81\x6a\x22\x6c\x08\x09\xe7\xa4\x6f\x0c\x29\x23\x7b\x7a\xb2\x40\xfb\x17\xa8\xb7\x57\xcd\x41\xcd\xc8\x43\xad\x08\x7c\x2a\x86\x23\x7f\x6e\x82\x14\x6f\x8b\xde\xa1\xb5\x44\x4a\xb4\x93\x28\x16\x55\x7b\x4e\xa8\x2a\xe4\x79\xf6\x72\x69\x4b\xe3\x3d\x12\xe9\x24\xb8\x9e\x42\xbf\x9b\x0b\x3a\xc0\xa3\xb2\x6e\x66\x2e\x4e\x7f\x9f\x28\x86\x7f\xf9\x2e\xab\x3e\x87\x5e\x9f\x22\xde\xff\xa2\x53\xd1\xa2\x5c\x1e\x06\x5a\x12\x4f\xf8\xaa\x4b\x48\x36\x8a\x35\x7b\x08\x96\x2b\xe7\xaa\x77\x28\x5f\x2c\xed\x86\x44\xdb\xa1\x96\x2b\x57\xe1\xdc\x60\xe2\xe2\xe9\x90\x27\x47\xb8\x12\x22\x45\xc7\x9c\x84\xa1\x46\xad\x24\x51\x0c\xc7\xcf\x07\x2b\x14\xba\xd1\x7f\x30\xd0\x48\x7a\x1b\xd4\xb8\xf5\xbb\x39\x97\x4b\x61\x93\x29\x87\x53\x1e\x7a\x1e\xa2\x1d\xca\x22\x25\x32\x25\x88\x8f\xe3\x25\xbe\x27\xa2\x24\x46\x27\x6a\x27\x0e\x26\x32\x26\x56\x26\x7a\x26\x9a\x26\xb6\x26\xd2\x4e\x96\x68\x91\xc3\x27\x91\x26\x99\x1e\x60\x64\xbf\x9a\x67\xb5\xf6\xe0\x7f\xd6\xe3\xb8\x6b\xdb\xc0\x4b\xe7\xec\xff\xa2\xab\x1a\x65\x09\x52\xf1\x4c\xe2\x94\xd2\xcf\x79\xb7\x56\x1a\x78\x81\xb6\x59\x6d\x89\x6d\x99\xb5\x6f\x25\x96\xed\x3b\x1c\x26\x35\x6e\xbd\x3c\x11\x63\xaa\xd9\x7b\xc4\x2a\xb6\xed\x55\x7f\xf6\xfb\x73\x80\x5e\x58\x77\x73\xb5\x27\x4a\xb5\x76\x00\xa5\x83\x5c\x67\x59\x64\xc3\x5e\xf9\xf5\x44\xe3\x4f\x66\x0f\x21\x95\xdf\x4c\x2a\xd9\xd6\x2e\xb3\x7b\xb1\xb6\x89\x3f\xc7\x20\x6e\x5f\x7c\x70\x7f\x98\x84\xd0\xb6\xce\x56\xc6\x5a\x01\x7a\x70\x8b\x23\x95\xaa\xf2\x0f\x8c\x26\xcb\xb8\x1a\xae\x8a\x39\x6d\xe5\x4d\x55\x7a\x60\x3a\x9b\xfe\x15\xc7\x34\x49\x59\xca\x1b\x72\xab\x17\x92\x5f\xb7\x85\x14\xc8\xd4\xc1\x16\xb3\x09\xef\xc1\x3d\x3f\x7c\x6c\x28\x5d\xb1\xf3\x92\x39\xb9\x66\x1b\x42\xea\x7e\x1c\x44\x41\x01\x47\x82\xba\x2c\x69\x5b\x27\x0d\x87\x70\x5c\x14\xa9\xb3\xce\x1e\xdd\x47\x29\x4e\x52\xea\x5c\x5a\x72\x2d\xb9\xd3\x70\xc7\x97\x8c\x95\xc7\x50\x8d\xae\xec\xd5\x8e\x5a\xda\xb0\xac\xd4\x0e\xfb\x17\x8e\x9e\xda\xe9\xd2\x4e\xa9\xb4\x7b\x9b\x7a\xe0\xc9\x31\x8f\x5a\x04\xe7\xde\x96\x48\x6c\xf6\xfc\xc3\x93\xc3\xe3\xe9\xc7\x4d\xae\xed\x55\xb5\x65\x60\xc0\x16\xd0\xd1\xb7\x5d\x85\x1a\xaf\xbb\xe5\x68\xa2\x56\xfe\x72\x5c\xd4\x3d\x1f\x73\xf3\x19\xcb\x56\xf5\x34\x2a\x52\x79\xb8\x9d\xb3\xfa\x5b\xc9\x2f\x79\x92\xcc\x1e\xaf\x9c\x0e\x52\x56\xc0\xcc\x1b\x35\xad\xdb\xe4\xef\xf0\x46\x93\xdf\x96\xd0\x19\x29\x36\x19\x69\xa9\xfb\xb1\xd9\x81\xc3\x9d\xb1\x9a\xec\xb3\x38\x8a\x34\x77\xfa\x86\x69\x16\x21\xd6\x2f\x59\x38\xbb\x5c\xa2\xda\x5c\x7b\xef\x9d\x43\x93\x70\x6e\x19\x93\xb1\x2e\x6f\xd1\x4d\xfd\xec\x27\x93\x1c\xf6\x7b\x38\x0d\x9e\xae\x66\x3c\xa2\x58\xbe\x79\x2d\xd8\x24\x78\xd5\xd8\xbd\x74\x2d\xbe\xc4\x6a\x87\x7b\x18\x4d\xbe\xe3\x77\x93\x8c\xab\x3a\x98\x61\xa1\xb6\x4f\xbe\x93\x96\x62\x30\x54\xdf\xe2\x4f\x5f\x87\xe0\xed\x68\x66\x90\xb3\xb4\x12\x89\xfb\x35\x4a\x86\xbf\xaf\x5e\x0c\x5e\x7a\x7a\xea\xf0\x05\x70\x6e\x36\xa7\x2b\x7b\x7b\x01\x8b\xad\x61\xdd\xce\x81\xe0\xb8\x63\xde\xc9\x0e\x85\xd0\xb8\x67\xca\x6f\xbd\x4e\x57\x61\x4c\x01\xe6\xe6\xc5\x9b\x0e\x00\xbb\x8e\x17\x70\xb5\xd6\xa4\xcc\xdc\x7a\x38\x7a\x3a\x3b\x5b\x0f\xaa\xa1\xec\xab\x60\x16\x3d\x24\x56\x9a\x6d\xea\x06\x33\x6b\x29\x7a\xa0\x63\x95\xad\x8b\xea\xf4\x50\x92\xa5\xda\xa5\x55\x72\xad\xee\x5e\x60\x1c\x8a\x85\x50\x7e\xdc\x3a\xe0\x4e\x56\x21\xd6\x15\xe0\x5b\xb9\x82\x82\x74\xbb\x25\x77\xc9\xc6\x2b\x1e\x8a\xf7\xd3\x9c\x0c\x88\xdb\x33\xdf\x8a\xb2\x95\xcc\x47\xf9\xe9\x08\x4e\xae\xbe\x5c\x68\xda\xe8\xe1\x20\xde\xd9\xa2\xaf\x3e\x7c\x80\x94\x7e\x00\xf4\x68\x9f\xdd\x78\x4c\x78\x65\x8a\x8a\xbf\xa9\xc4\x22\x3e\x52\xe3\x12\x37\x94\xf7\x08\x2e\x3b\x48\xf6\x8c\x1f\x42\xbe\x8b\xc4\x2a\x1c\x60\x71\x49\xf4\xc5\x42\x0e\x6f\x87\xf2\x6b\x16\xb7\x6d\xdb\x3e\x64\xef\x94\xd9\xf4\x0c\x16\x3a\xcd\x4b\x23\xb7\x5f\xb2\x32\x2a\xa8\xad\xfd\xa5\x15\xd7\xd7\x37\xa7\x4a\x4f\x66\xfc\x00\x50\xe8\x17\xed\x01\xfb\xb0\xfd\xa2\x08\x4d\xc4\x2a\xe6\xb9\xbe\x88\x34\x1d\x6d\x59\xc5\x36\xd9\xe5\x0a\x5d\xc0\x30\xd5\x66\xbd\xb5\x38\xd1\x65\x8b\xaf\x2e\x04\x3e\x31\x78\x4f\x0c\x29\xcf\xb8\xa1\xfe\x90\xd2\x8e\x4d\x3e\x64\x74\x91\xdf\x8e\x79\x2e\x92\xb2\xb5\x57\x8d\xad\x22\x98\x92\x14\x40\x79\x94\xee\xf8\x73\xfc\x43\x3c\x9f\xd4\xb3\xa8\x45\xfc\xa0\x4b\x47\xf1\xe6\x37\x9e\xd3\x08\xcb\x56\x1e\x8a\xa4\x6f\x11\x17\x18\x36\x5b\x22\xab\xcb\xf1\x71\xa4\x24\x86\x43\xe9\x95\xcb\x8f\x0d\x06\xd3\x86\xc2\x79\x23\x8f\xa8\x5f\x75\xf7\x4e\xc8\x05\x08\x8b\x40\xa0\xd8\x07\xe6\x96\x8c\xed\x63\x34\x79\x67\x6c\x5a\xa4\xf0\xb3\x1e\x72\x12\x46\x93\x77\x41\x09\x5f\xc8\x6a\xc6\x3d\x92\x0b\xa7\xa9\x9a\xd6\x7d\x2b\x2d\x60\x28\x78\x26\x34\x35\x43\xc9\x34\x16\xc2\xf2\x4e\xc9\x2a\x90\xd7\xa2\x6c\x07\xb0\xac\x18\xe0\x15\xf9\xc9\xfd\xd6\x8f\xc6\x81\x06\x9c\x15\xaa\x9b\xd9\x6f\x64\xc1\x15\x43\x9f\xdb\x78\x24\xf7\x1c\x43\xc5\x1e\xb2\xbf\xf5\x76\x15\x65\x0d\xa4\x74\x91\xe2\x8d\x97\x3e\x0e\x7b\x71\xef\x8e\xc3\x3f\x36\xaa\xdc\xa4\x6d\x84\x5c\x9a\x86\x3c\xa9\x3a\x14\x84\xe3\x08\x72\x7b\x60\xc2\x36\xcb\xce\xe3\x7c\x53\xef\x67\x1b\x09\xd3\xf6\xee\x96\xc3\xef\x3d\x6f\x26\xd6\x52\x96\xb2\x97\x6b\x9a\x2f\xa2\xbc\xff\x35\xc2\xad\x5a\x4e\x4d\x89\x25\x76\x63\xbe\x58\x48\x65\xcd\x63\x9b\xf6\xaf\xfc\xc2\x4e\x46\x40\xdb\xd0\x79\x7d\xeb\x4d\x7a\x6b\x7c\x7c\x44\xa6\x2c\xed\x69\xb9\x87\x66\xab\x8f\x98\x99\xaf\x2b\x24\x77\xd8\x1d\x74\x53\xbe\x5e\x65\xbf\xd6\x6e\xd3\xef\xc3\x2c\x6b\x99\xca\xff\x16\x8c\xf0\xcc\x8d\xb7\x9d\xca\x63\x79\xa2\x0a\x7e\x7f\xcd\x4b\x0f\x97\xc8\x00\x67\xb1\x16\x21\xee\xaa\x8a\xe4\x5e\x03\x82\x82\xb0\x6c\x09\x95\x84\x56\xda\x2c\xe0\xd3\xc5\x56\x25\x10\x64\xde\x6a\x46\x31\x77\xe5\xc8\xbc\x29\x8d\x65\x4f\x76\xd4\x4e\x68\x5d\xda\x18\xce\xfc\x6a\x3c\x67\x6d\x4c\xeb\xcd\x70\x9f\x4e\x30\x31\xf6\xa4\x7a\x26\x57\x19\xbc\x5e\xd1\xf0\x5f\xf1\x2d\xbb\x50\xbd\x7a\x27\xce\x22\xf7\x62\xb0\x72\x5f\xdb\xdd\xbb\xb7\x52\x1a\xa4\x46\x0e\x8f\x10\x88\xa0\x90\xd7\x36\x9c\xe2\xdf\xe3\x8f\x9e\x1e\x4c\x0e\x5e\xce\xa5\xe0\x02\x79\xe7\x54\x29\x1e\x0b\x8b\xa8\xf8\x3b\xbb\x3f\x4d\xfc\x51\xb8\x3a\x5e\x77\xfd\xa7\x22\x86\x29\xf5\x29\x5b\x92\x9b\x23\xd1\xc1\xcd\x16\xba\x51\xb2\x97\x13\x9a\x0a\xef\xa1\x7f\xbc\xb1\x62\xd7\xde\x84\xcc\xe2\x57\x45\x4e\x75\xf4\x1d\x3e\xc9\xd6\xd4\x64\x4f\xfd\xbb\xe1\xb0\x2c\x13\xcc\x9f\xc1\x0b\x3a\x17\x9a\x9b\x23\x57\x53\xf7\x40\xbd\x2b\xe7\xe0\x95\xc4\x51\x21\x75\xb3\xb0\xe1\xe3\xda\x8d\x62\x3e\xaf\xc7\x7a\x2b\x80\x65\x26\x43\x37\xa9\x25\xa7\x19\x47\x12\x88\x1f\xc9\x27\x9d\xca\xb8\x62\x7e\xab\x2c\x7e\x5b\xac\xd6\xa1\x2f\xd1\xcd\x46\x27\xd1\xf5\xf8\xf0\x5d\x40\x07\xfa\x85\xbe\xbc\xec\xa5\xfd\xb6\xd7\x46\x66\xc8\x52\xa1\x9b\xb1\x34\xb1\xbc\xea\x9e\xd3\x2b\xc2\xf1\x7d\x55\xa4\x06\x78\x22\x9e\x70\xfc\x27\x8a\x8c\x5f\x9c\x42\xbe\xb2\xdd\x53\x94\x71\xb3\x74\x9d\xb9\x31\x74\x7c\x6a\x8a\xc9\xd4\xc4\xe4\xe4\x31\x3d\xfd\x7e\x66\xaa\xc9\xca\xe4\xe4\xf2\x58\x9b\x91\xb1\x51\x9b\x56\x47\x49\xa5\xd8\x42\xc3\x11\x1e\x33\x81\x82\x91\x81\x81\x61\x4f\xf4\xc6\xcf\xa3\x42\xbb\x18\x07\xc5\xa0\x45\xb4\x7a\xd1\x2c\xe0\x7c\x8d\x7e\x5b\x84\x70\x58\x3a\xf2\x9c\x0d\xb0\xec\x94\x69\x04\xb3\x7e\x15\x15\xb1\x39\x20\x2c\x9a\xa9\x2d\x6f\x53\x9b\xda\xa9\xd5\xb6\x79\x15\x84\xaf\xbc\x09\x5b\xcf\x35\x45\x43\xd6\xee\x6c\xb1\xac\x34\xb5\x32\xd6\xc9\xfc\x15\x36\x56\x71\xef\x91\x03\x5e\x8f\x4a\x33\xea\xf8\xb6\x13\x95\xa6\x3c\x7d\x93\x6f\xf4\x56\xfd\xae\x49\x86\x96\xc1\x14\xda\x52\x7c\x78\x6e\xe1\x11\xa6\x63\x7c\x47\xeb\x86\x69\x3b\xf1\xf9\x98\xee\xc5\xc8\xdb\x6f\xeb\x71\xf4\x3d\x90\x79\x60\x7d\x76\x7d\x9e\x7d\xa6\x8d\x31\x62\xf3\x73\xe0\x9d\x41\x6e\x2c\xc2\xb0\xc8\x70\x19\xaa\x93\x6d\xc8\x88\x66\x7a\x33\xc5\x95\xec\xce\xfd\x68\xdd\x92\x61\x6d\x5c\x6a\xbc\x3a\x7d\x93\xc6\xcd\xe4\xe9\x11\x26\xf0\xee\xfd\x52\x7e\x35\xb9\x3e\xeb\xf8\x3e\xd7\xd9\x28\x66\xa3\x62\x73\xbd\xb5\xb5\x95\xd3\x4e\xe8\x58\x1a\xca\x96\x94\xe9\xe8\x1a\xcc\x8e\x54\xd8\xae\x3a\x58\x15\x5e\xfb\x98\x44\x7b\xec\x69\xa6\xde\x9f\x05\x61\x31\xa3\xa0\xf4\xa5\xe0\xd1\x1b\x21\xbb\x3c\xb1\xc3\x31\xcd\xd7\x6a\x4d\xfb\x51\xab\x91\x17\x20\xa4\x10\xa3\x1a\xce\xaf\x38\x8f\xd2\xba\xac\x15\x54\xb7\xd5\xb2\x4c\x7f\x4f\x7e\x51\x93\x6a\xaf\x23\x26\xaa\x81\xd1\xec\xc6\xf4\x3c\xb0\xde\x29\xd9\xcb\x36\x6c\xbe\xf8\xb7\x7c\xfd\x04\x64\x88\x74\x63\x24\xa5\x28\x3e\xce\xab\x3c\x69\xac\x5d\x5e\xb3\x2d\x21\x01\xba\xb3\x90\x84\x0b\x53\x18\xad\x02\x92\x2b\xe2\xc0\xdc\x4c\x5a\x49\x71\xd7\xa1\x0e\xa7\xa9\xc8\x7a\xde\x76\xde\xfb\x30\x41\x0c\x4a\x63\xd8\x5c\xdf\x3a\x95\x4d\xd3\x4f\x45\xba\xe5\x6f\xc4\x44\x44\xf0\xad\x70\x42\xa8\xa1\xd2\x09\x73\x08\x8e\x3e\x46\x52\xa2\x56\x9e\xfc\x29\x42\x74\x2a\xf5\xf9\xd2\xc5\x96\xd2\x43\xab\xd9\xb3\x51\xb5\x87\x8c\x15\x18\x88\xb4\xe4\xca\xc4\x6a\x86\x02\x69\x4b\xdd\x3a\x92\xb1\xe4\xa0\x13\x8c\xa5\x7b\xe9\x6d\x9d\x84\x6a\xf8\x41\x9e\x70\x22\x02\x91\x45\xa7\xd2\x04\xb4\xb5\x79\xbb\x51\xf6\x48\xf8\xa7\x93\x48\xef\x5c\x66\x25\xad\xc8\xe2\x1a\xc4\x9d\x54\xa9\x6e\xef\x1a\x99\x7e\xbb\xdd\x95\xd3\x9f\x99\x5f\x20\x30\xe4\x76\x95\xe1\x26\xa5\x6c\x07\x40\x86\x13\x6f\x00\x32\xbc\x52\xb2\x4b\x24\xe7\x2e\x25\xe9\x23\xae\xda\x5d\x36\xc1\xe2\x87\x62\x59\xcd\xa2\x9c\xc3\x68\xd3\xeb\x9b\x80\x46\xe2\xc0\xd6\x42\x45\x8b\xac\x2f\xb2\xb5\x6a\x04\x15\x89\x8b\x8b\xe4\xbd\x04\xa4\x24\x5e\xe1\x82\xe9\xd0\x43\x94\x9c\x9a\x09\x0f\x27\x7b\xc6\x45\x09\x77\x01\x71\x55\xde\x8b\x57\x90\xb6\x99\x45\x25\x87\x8c\x28\x3d\xb7\x25\xcc\x42\x84\x46\x4d\x27\x31\xcb\x9b\x50\x92\x79\x82\x22\x4d\x46\xf4\xd5\xa6\x12\x32\x8e\x45\x25\xa8\xbe\x8e\xbc\x76\xd3\xec\x72\x9a\x79\x07\xa3\x8c\x6b\xd1\xf5\x3c\x76\xa9\xd6\x19\xe9\x4f\x2d\x4a\x96\x43\x24\xf2\x81\xe5\x72\xa4\x9c\xaa\xb6\x32\xf1\x1f\xdd\xc0\x00\xea\x56\x32\xf9\x8c\x60\x81\x04\x01\xcc\x7b\x5d\x0e\x75\x8a\xde\x41\xdb\x0c\x6e\x39\xbb\x19\xff\x3b\xb6\xea\xfd\x26\x1c\xda\xfb\x2c\x5c\x8d\x71\x72\xe5\x5a\x92\x6a\xb0\x5d\xf6\x60\xe7\x25\x73\xf2\x52\xa9\x3b\xf3\x26\xa1\x06\x29\x17\x03\xbf\x98\x84\xb4\xfc\x4b\x50\x37\x70\x9f\xa1\xfe\x87\x6b\x04\x98\xfb\x80\x8d\x56\xda\x97\xb0\xb4\xd6\xc4\x6b\xa6\x95\x57\xdb\xb7\xeb\x30\xda\x2c\xa8\xdd\x8b\xe2\xed\xbf\xdd\x1b\x5d\x51\x5d\x37\xa9\x37\xf8\xb2\x42\x3a\x87\x79\x48\x4a\x58\x1a\x6a\x4e\x9f\x29\x06\xc6\x1a\x27\xd4\x47\x88\xbb\x8f\xd3\x99\x33\xbf\xee\x8f\x21\x8f\xbe\x31\x36\x7c\x33\x3e\xae\x5c\x3e\xe6\x3a\x8e\x17\x8d\x4d\x64\x0d\xf4\xb7\x8f\xb5\x47\xbc\xf7\x4e\x79\x9b\x10\x31\x44\x1b\x28\x8f\x34\x0c\x16\xf5\x2b\xd3\x97\x63\x42\x85\x77\xbe\xf8\x48\xd9\x8a\x8f\x14\x5c\xd1\xe8\xdb\xe0\xb2\xed\xce\x18\xc2\x85\x70\x8f\xb5\xfb\xe5\xbc\x16\xfe\x64\x98\x11\xe1\x6a\x58\x9f\x87\x02\x5b\x81\xa9\xb0\xe9\x08\x8d\x5d\xeb\x2b\xd8\xd6\x34\xac\xae\xe9\xf2\x8f\xf4\x28\x66\xc0\xd2\xf9\xcd\xe6\x9e\x1c\x49\x33\x45\x96\xe7\x34\x1e\x31\x3a\xa5\xb5\xed\x7d\x82\x5d\x7f\x65\x0f\x95\xdd\x05\x77\x32\x5c\x8f\xbf\xdf\xc5\x78\xe2\x67\x8f\xa0\xdd\x11\xb8\x5d\xbd\x1b\xa0\x84\x85\x47\xde\x18\x97\x59\x77\x15\xa5\x16\xe2\x1c\x2d\xd9\xd3\xc5\xd9\xa0\x99\x9f\xe7\x57\x08\x67\xd5\x25\xe0\xa4\x05\x95\xb9\x2f\x0c\xc5\x78\xbd\xc0\xfa\x6b\x27\xc3\x5b\xd7\xa9\xe1\x56\x7c\x3a\x38\x45\x34\x3a\x32\x92\xe5\xfd\xed\x52\xa2\x18\xe8\x89\x79\x07\xa2\xe8\x3f\x61\xb3\xd3\x0b\xa3\x7b\x63\x1b\x92\x65\xfd\x3f\x96\x0f\xe8\x4b\x46\xe4\xfd\x9b\xa4\xfa\x1f\x1f\xa2\xc3\x7c\x43\x9e\x6e\xfe\x52\x1c\x70\x24\x25\x55\x5c\x77\xf4\x13\x25\x59\xc9\x64\x1a\xe6\xca\x29\x5a\x38\xd1\x8c\xb3\x41\x57\x47\x17\xcc\x0c\x26\xc7\x77\xe6\xa3\xcb\x13\x9c\xc3\x96\x82\x2c\x95\xaa\xca\x9a\xe8\xa7\x19\xcb\x87\xd1\x19\x31\x1c\xa6\xdc\x5d\x82\x93\x0d\x19\xae\xb5\x9d\x82\x90\x15\xb9\x07\xd7\x26\xda\x0b\xf3\xc6\x67\xc7\x6f\xfa\xc1\x05\xd9\xf6\x96\xac\x24\xa7\xc3\xec\xd6\x28\xcc\x3b\x9b\xb0\x7c\x91\x95\x4e\x4d\x2c\x31\xee\xb7\x3a\x22\x72\x97\xad\xdd\x8d\x59\x94\xe9\x23\x3e\xcc\x7f\x39\x05\x8d\x8f\x89\x8b\x33\xcd\x60\x5c\x8c\x9b\x57\x44\x6d\x48\xd6\x81\x81\x5c\xa0\xac\x61\x39\xf0\x1c\x53\x2a\xc6\x85\x97\x49\xc1\xf7\x2d\xd2\x6e\xc3\xc3\x37\xe8\x3a\x41\x71\x2d\x9b\xbe\xae\x22\x71\xfa\xaf\x00\x17\x46\xe9\x73\x60\x44\x01\x31\xd5\x53\xa9\xf5\xf0\xf8\x19\xd3\xa1\x91\x1e\xa8\x74\x05\xd1\x4a\xc7\xaa\x4f\x54\x59\xba\xb0\x92\x66\x54\x4e\x83\x9c\xe8\x9e\x68\x5a\xcc\x11\x34\x31\x4c\x17\x7f\x9f\x0b\x75\xa4\xd9\x14\xf1\x2e\x18\x3e\x01\x73\x87\x84\x68\x54\xef\xe3\x72\x7e\xae\x07\x89\xa9\x67\x9b\x47\xe3\x5e\x2f\x2d\x8c\x1b\x7a\xa3\x3f\xc3\x51\x27\x5b\x3c\x41\x58\xe0\x68\x40\x12\x0f\xda\xaa\x70\xb6\x60\x30\xe1\x59\x46\x95\x89\x36\x9d\x91\x89\x28\xc5\xfe\xe5\x74\xa2\x98\x70\xc0\x5d\x2e\x44\xbb\xaf\xb6\x50\x66\x3c\x1e\x2a\x8f\xe5\xf3\xa8\x54\xa1\xa0\xec\x11\xec\xa1\x97\xdd\x02\xe5\x0e\xd2\xab\x4a\x9f\xbf\x86\xd8\xb2\x1d\xd1\x41\x7a\x84\x0c\x58\xf2\x02\x67\x0e\xf9\x4a\x8e\x62\x47\x34\xfd\x0b\xfd\x0d\xba\x6a\xc4\xb3\xa0\x39\x77\x40\x19\x34\x32\x58\x50\x3b\xc5\x27\x7e\x7f\xa0\x9f\x9d\x94\xc4\x3c\x7b\x0b\x9d\xb4\x61\xc2\x50\xc0\xf8\xc3\xa5\xac\x28\xac\xdd\xf3\xce\x1c\x31\x4f\x75\x04\xc3\x5a\xa4\x9d\xb8\xc2\xff\x8f\xdd\x51\xfb\x3a\xf2\xce\xf9\xc5\x9f\x20\xfb\xc3\x4d\xfe\xe8\xf9\xa8\xc2\xa9\x80\x9a\x40\x36\xd5\x40\x74\x56\x44\x45\x1e\x89\x1b\x9d\x0e\x8f\x20\x53\x6d\x93\xff\xae\xe9\x35\x55\xcf\x29\x9f\xa2\x39\x52\xcf\xd9\x2a\x52\xd0\x9e\x83\x36\x04\xea\x48\xa6\xd5\x3e\x4d\x22\x88\x20\x15\xc9\xb3\x70\xe7\xdc\x39\xfa\x89\xa3\x9e\x5d\x07\x5b\xb8\xb4\xd5\xe3\xf7\x1d\x18\xf9\xf8\x6a\xc4\x41\x9d\x0a\x44\x07\xb8\xc7\x9a\x97\xc0\x55\x90\x55\x37\x36\xeb\x2a\xca\x62\x74\x0d\xa2\xf5\x40\x59\x91\xd5\x71\x6a\x27\x3f\xf6\x89\xfd\x91\xbb\xd9\x4c\x7a\x23\x97\xa6\x58\xf4\xcc\xbb\xe6\x91\x68\x27\x21\xf6\xd8\xf2\x9d\xfc\x67\xcd\x12\x02\xf8\x40\xee\x56\xe1\x96\xe7\xf6\x18\x86\x61\x7a\xaa\x8a\x4e\xf7\x70\x8e\x4e\xf5\xf6\x35\x7d\x9e\x4e\xb2\x16\xf7\x00\x6f\x65\xea\x26\x83\xfb\x5f\x53\xfc\xed\xe4\x0f\xe1\xa7\x73\x4d\xbc\x26\x95\x10\xaf\x15\xde\xc6\x08\xda\xc9\xcd\x14\x77\xa2\x27\xa7\xec\xbb\xff\x17\xa2\xbe\xc9\x48\xca\xbb\xf7\x23\x29\xc5\xcb\xbe\xed\xfb\xeb\x23\xef\x87\xb2\x6f\x40\x6f\x52\x6f\x57\x6f\x4f\x6f\x75\x6f\xad\x6f\x93\x6f\x87\x6f\xb9\xaf\x77\x98\xaf\x5b\x9f\xef\xc8\xaf\x66\x98\xdf\xdb\xd2\x6f\x4f\x5c\x31\xcf\xd3\xfa\xe7\xe2\x48\x82\x12\x96\x62\x54\x13\xf7\xfc\x81\x76\xb1\xcf\x93\xcb\xcd\xbe\xc1\xbc\x99\x5e\xcf\x35\x0e\x0c\x76\x76\xc9\x75\xf0\xc3\x79\x56\x2b\x19\x5c\x05\xc2\x86\x3d\x17\x64\xf7\x45\xa6\x93\x97\x6f\x47\x29\x2a\xb7\x5e\xb7\x77\x6a\xbe\xa8\xc6\xda\xa3\x21\xa1\x9b\x4d\xb9\x99\x6d\x17\x4c\xc7\xf5\x59\xcd\x2a\xad\x5c\xb4\xd2\x5d\x77\xc3\x06\xbb\x99\x1a\xc6\x3a\xbd\x27\x2e\xa5\x99\x8d\xa7\x25\xcf\xb5\x49\xa1\xe5\x14\x02\x73\x07\x0d\x7d\x68\x6d\x91\x36\x99\x74\x61\x59\x09\x77\xfd\xf3\xd1\x27\xd8\x49\xa4\x53\xa7\xbb\xb1\xe0\x83\xd4\xd2\x31\xb2\x79\x91\xea\x19\xaf\x4e\x61\xbc\x34\x16\xb1\x26\xae\xb3\xb6\x70\x68\xfb\x3c\xde\xd0\x85\x5d\x53\xe6\x12\x87\xe5\xda\x60\x4c\xf1\xbd\x6c\xe5\x34\x11\x11\x89\xac\xa8\xf7\x8f\xe7\xe8\x64\x41\xca\x1e\xc4\x30\x71\x47\x65\x1e\x75\xb3\xb4\xa2\x4a\x35\xe9\x96\x76\xe8\x3b\x62\x33\x8b\x45\x71\x23\xcb\xac\xf2\xd7\xa0\xdb\x65\x78\xbd\xc3\xf2\xc7\x0d\xaf\x6c\x2c\xe1\xb3\xb4\x53\x25\x78\x6d\xcc\xb1\xfc\xb5\x94\x64\x4e\x90\x85\x29\xcf\xa9\xb1\xdc\xf5\x54\xe5\xbe\x54\x85\xe1\x8c\xd0\x49\xbf\x64\x61\x81\x21\x9b\x4e\x08\x99\x48\xc0\xaf\xf0\x70\x8e\xcc\xf3\x5f\xc2\x39\x16\xe9\xa5\xf3\xa7\xb6\x1e\x6e\x60\x9a\x4f\x2f\xe7\x8e\xde\xed\x4c\x48\xf4\x92\x4c\xb9\x98\x57\x61\xb2\xac\xb8\xb5\x36\xa8\x63\xa7\x5b\x32\x13\x01\xd9\x7c\xec\xdd\x20\x72\xdd\x81\xc6\x99\x31\xeb\x66\x2e\x58\xe3\xce\x9b\x12\x85\xf1\x1b\x22\x59\xe9\x25\xb8\xd1\x4b\xa4\xec\x4a\x7f\xca\xc5\x46\x89\x33\xd4\x55\x32\x09\x01\xa6\x71\x74\xd9\xb2\xb2\x95\x5b\x79\x9b\x54\xce\x0a\xeb\xe5\xb9\x61\x56\x8b\xdd\x90\x39\x01\x8f\x49\x6a\xea\x56\x8c\x6f\x38\xff\xcb\xfd\xb0\xc6\x60\x77\x06\x60\xce\x43\xdc\x48\xb4\x44\x15\xaf\x9a\x89\xd3\x94\xed\x7f\x58\xc7\x4c\x9f\x63\xe8\xa8\xee\x99\x53\xfe\xac\x9f\x84\x62\xb5\x8a\xcf\x5b\xd9\x7f\x8b\x66\x6a\x37\xde\x4f\x38\xaf\x49\x2f\x5d\xac\x51\x39\x06\x63\x30\x72\x4f\xee\x23\x58\x79\xb1\x88\x35\x4f\x2f\x72\x4d\x87\x99\x6d\x70\x61\xb2\x31\x56\xdb\x3e\xb2\xd7\x57\xcb\xcf\xc3\x5f\xe7\xbd\x22\x13\xb2\x73\x27\x9f\x29\x0b\x98\x6c\xcb\x85\x0e\x0f\x79\x6a\xa4\x8d\x7a\xf8\xe9\xe5\x15\x63\x1c\x7e\xa7\xed\x2b\x24\xcd\x6b\x1a\xa3\xcb\xa9\x42\x03\x7c\x08\x11\x8c\xf7\xc8\xc9\xce\x7e\x86\xdb\xaf\x8c\x3d\x44\x24\x93\x43\x9d\x69\x2c\x0b\xe2\x52\x8c\x9f\x82\x34\x24\x06\xd0\x50\x21\x7f\x3d\xdf\xae\x17\xd6\xae\xc0\x7b\xbd\x75\xcd\xb5\x8f\x8e\x69\x3f\x69\xc2\xde\x81\xdc\x59\x0d\xa3\x72\x16\xa7\xd6\xd6\x22\x1f\x30\x1e\x6a\xbc\xf6\x39\x9b\x88\xe6\xb0\xba\x72\x53\x93\x12\xc0\x84\x02\xc2\x7b\x9a\x91\x1d\x1a\x7c\x9a\x59\xa7\x91\x8f\x88\x48\x28\x98\x44\x5b\xdf\x95\x2e\x3e\x95\x7d\x56\xdd\x43\xde\x04\x3f\x9a\x47\xd9\x3c\x80\xd4\x37\x7b\x24\x64\x09\xb0\x24\x81\x3c\x30\xd7\xd3\x58\xb8\xa0\x31\x2e\x45\xe1\x7e\x63\xd8\x26\xbc\xa2\xa5\x9a\x4c\x9d\x18\x19\xe6\x79\xe6\x3d\xc6\x84\xd2\xf0\xb2\x08\xad\x8d\xb2\x9f\xd8\x18\x3a\x42\x48\xb8\xe1\x65\x4d\x16\x67\x63\x07\x16\x99\x77\x00\xb2\x26\x9b\x42\x32\x5c\xd5\x9b\x07\x6a\x5a\xe1\x9f\x77\x68\x59\xa4\x67\x1f\xb8\xfb\x13\x4a\xd8\xf2\x65\x38\x86\x37\xb3\xa2\xaa\xa5\x2d\x2b\xbc\x0d\xa4\x14\xf2\x3c\xea\x5e\x17\x06\x9a\x01\xa7\x66\xde\x8c\x2f\xfc\x66\x5c\x0a\x2a\xe3\x8d\x08\x62\xde\x47\xe0\xf3\x5f\x46\xe4\xea\x18\xc2\x9c\x2e\x0b\x9e\x5d\x88\x0c\x2d\x5e\xff\xac\x22\x90\xec\x48\x75\x58\x40\x1b\x93\xd6\xd7\xb0\x2d\x68\x98\x5f\xd3\x7c\xd3\x6f\xcd\xfd\x48\xe6\x3f\x9a\x48\xb3\xc5\x54\x17\xb8\x99\x24\xf0\x1c\x52\x42\xdd\x20\x75\xe2\x59\x8f\xb7\xdf\xcd\x78\x32\x6b\x4f\x76\x1f\x08\xb9\x26\x6c\x1f\x4e\x71\xdd\x97\xe9\x42\x9a\xe4\xd0\x85\x35\xd6\x35\x77\x33\x2f\xaf\xa5\x7e\x91\x2d\xc2\x66\x85\x4d\x51\x1d\xfc\x6a\xf8\xb8\x75\xca\x34\xa1\x6f\x10\x9c\x46\x71\x97\x66\x32\x92\xdf\xc5\x5f\x39\x1b\x3a\x25\xf4\xba\x55\xb1\x22\xf4\x2d\x2e\x2c\x99\x09\xbf\x34\x99\x0e\xec\x39\x7b\xdc\x9e\x68\x99\x46\xb2\x6a\x39\x57\xbb\xe5\x1c\x47\xae\x14\x62\x55\x08\x58\xe3\x6c\x15\x9c\x6e\xe5\x3c\x8f\x66\x3f\x5c\x47\x82\x91\x2b\x62\x9e\x85\x9b\x33\x59\xf9\x88\x51\xb4\x11\xa6\x02\x3f\xfe\xfe\x04\x4b\x84\x22\x80\xbd\x9b\x0c\x9b\x84\xe1\x18\x1b\xa6\x1d\x3e\x15\x87\xe0\xc9\xbb\xac\xe4\x43\x88\x2d\x93\xa8\xc4\x69\x44\xc3\x95\x89\xfa\x88\x3d\x17\x01\x71\x45\xe9\x4d\x7d\x6b\x28\x5f\x20\x9b\x9a\x53\xff\x0d\x0f\x7f\x34\x24\x5b\x47\x1b\xc8\x3a\xc3\xf9\x95\xa1\x5a\x67\x93\x30\xf5\x1e\x34\x92\x8b\x78\xdd\xec\xdf\xd6\xd1\xb3\x77\x11\xd0\x8f\x37\xfb\x67\x6d\xe6\x8d\x8c\x54\x5d\xdd\x44\x90\x77\x16\x55\x44\x6f\x96\x11\x29\x90\x31\xa3\xa6\x2d\x11\xba\xec\x59\xea\x80\x18\xdb\xaf\xca\xa5\x3f\x69\x72\x69\x53\x69\x3c\x7f\x3e\x1d\x50\x1f\xad\x49\x02\xd1\xc6\xb9\x2f\x99\xc2\xd7\x3a\xc7\xa7\x83\xde\xe7\x32\xc6\x79\xfd\xd0\x06\xe9\x1e\x59\x80\x60\x84\x91\x4b\xe2\xd2\x2a\x3c\xf5\x10\x31\x46\x6c\x3e\x3c\xf9\xaf\x14\x39\x15\x86\x90\x43\xec\xe7\x56\x61\xbb\x38\xd3\x16\x81\xd3\x5b\xc8\xbc\x19\xb3\x21\xdc\x99\x3b\xc6\xca\x20\x17\x4f\x80\x65\x47\xd5\xd1\xef\x69\x71\x4a\x4c\x47\xe7\x62\x00\x43\x2c\x92\x39\x4e\x7a\xea\x53\xde\x88\x4a\x59\x85\x9f\xe4\x40\x42\x07\x32\xe7\xe6\x35\xf0\xae\xe8\xf5\xef\xcb\xe0\xa7\x89\xbb\x63\x59\xfb\x7a\x97\x94\xb3\x46\xce\x4b\x69\xa5\x79\x12\xb7\x4e\xc0\xe9\x43\xb9\x17\x5a\xef\xe5\xb3\x9b\x63\xd7\x76\x37\x74\xb7\xe8\x00\xdb\x93\x9c\xc9\xf0\x54\x4e\xbe\xf6\xb7\xdc\xc9\xb7\x15\x61\x14\xb7\x6d\x26\x37\xbd\xa7\xe5\x4b\xf1\x5c\x01\x2e\xd4\xe1\xf4\xe6\x89\x0c\x84\x23\x64\xce\xa4\x77\x86\x6d\x90\xfb\x1f\xac\x93\xd7\xd9\xdc\xcc\x5f\x6b\x1f\xa6\xdf\x76\xdd\x57\xb4\xc7\xd5\x27\xd7\x67\xd9\xbb\xda\xa7\xdb\xc7\xdf\x7d\x5f\x6d\x33\x64\x54\xca\x2a\x9d\xb5\x7a\x3b\xab\xfd\x87\x01\xed\xe0\xf9\x81\xd1\x61\x01\xfb\x22\xb6\xea\x36\x1b\xfb\xd1\x83\xfd\xe1\xc6\xc8\x55\xb4\x5b\xca\x18\xd4\x5d\x5a\xf9\xf2\xda\x26\x31\xf3\xf7\x85\x91\x62\x6d\x49\xd1\x94\x19\x1a\x6d\xcd\x8e\xca\x27\xad\xf3\xe5\x85\x53\x7e\x96\x33\x68\x54\x88\x92\x3f\x95\x60\x99\x60\x9c\xe0\xe0\xe0\xa4\x60\xa7\xe0\xaa\xe0\xae\x60\xf0\x7f\x66\xff\xf8\x42\xef\xc0\xf0\xc0\xf6\xd0\x9a\x4e\x2e\x3f\xf0\xb9\x17\x75\x89\xb9\x2b\xb8\xa7\x00\xa1\x22\xdb\x28\x7b\xaf\x79\x98\x3e\x45\x27\xbb\x1b\x8f\x57\xda\x52\x9f\x4f\x62\x2a\x55\x29\xce\x8c\x28\xff\x44\xf0\x57\xa2\x5d\x6c\x5b\x52\x67\xa5\x44\xd3\xb1\x2e\xbb\xd8\x14\x40\x73\x33\xbc\xc4\x9e\x49\xaa\x07\x49\x37\x2d\xa9\xa2\xaa\x6b\x53\x7f\xc6\xf4\x03\x6a\x53\x6f\xf4\x99\xf1\x23\x43\xe7\xdf\xda\xf2\x90\xdd\xb7\x7f\x5d\xe1\xb5\x41\xbe\x61\xbd\xb3\x55\x12\x75\xc0\x71\x68\x4a\x4b\x0f\x8e\x2c\xc3\x74\x5d\xa8\xb8\xa0\x70\x42\x76\xde\x5f\xc5\x8e\xaa\x6b\x63\x76\x96\x28\x28\xee\x27\xf1\x19\x5c\x0e\x60\x30\x03\x73\xde\xaf\x9e\xf4\xae\x28\x0f\x9d\xe7\x16\xe3\x45\x8e\xc9\xe0\xb5\x47\x3a\x85\x08\xd7\xa8\xb1\x30\x70\xea\xec\x03\x97\x2c\xc1\xdb\xc6\x5a\x52\x60\x5c\xd4\x33\x17\x98\xb6\x37\x8c\xb6\xdc\x35\xa1\xd9\xfa\xad\xeb\x59\x64\x0a\xcf\xc4\x6f\x97\xd4\xb6\x46\xb0\xf2\x3a\x0f\x29\x32\x21\x63\x77\x2c\xce\x5b\x22\xca\xae\x64\xdf\xa3\x68\x45\x5e\xd5\x28\xa5\xba\xa3\xff\x5a\x40\x67\xbf\x0c\xab\x9f\x16\x73\xd8\x64\xcc\x9c\xdb\xf7\xf2\xb7\x26\x56\xe7\x21\x67\x90\x46\x43\x46\xbf\x3f\x84\xec\x11\x9b\x13\x32\x21\xb2\xee\xf9\x4d\x0b\xc9\x3a\x5e\xbb\x9a\x4d\x7d\x7e\x96\xaf\x2a\xf4\xe2\x14\x1a\x5b\x48\x77\x81\x60\xa2\xc7\xb3\x97\x76\x13\xd7\xf8\x06\xcf\x2f\xbb\x0b\x47\xc0\xab\x41\x6b\x9f\x2b\x26\xf9\xc8\x86\xaf\x8a\xaa\x8a\xca\x9c\xa3\x76\xe9\xc1\x7f\x83\x6a\x9b\xff\x08\x66\x3c\xae\xf0\x71\x33\xeb\x4c\xe0\x8d\x6f\x46\xb4\xb0\x58\x3d\xc7\x95\x68\x2c\xcd\x44\xc6\x8c\x08\x5a\xf7\x90\x1e\x81\x2d\x59\x31\x6d\x4f\x1b\xd4\xb7\xa3\x76\xb1\x58\x94\xb3\x8b\xf7\xa8\x50\x1d\x9e\xcf\x96\x15\xaf\x92\x3a\x23\x39\xe5\x7e\xb8\x0f\x2e\xb1\xa9\x94\x46\x7d\xe1\x7d\x79\x2e\x25\xe4\xac\x08\x21\xcf\x88\x18\xd7\xb1\x5a\x0c\x40\x13\x5a\x18\x52\xf4\xb2\xf9\xbc\xe0\xc8\x4b\xee\xc0\x09\x50\xdf\x4f\x12\x7f\x55\x59\xe6\x67\x64\xc4\x8a\xfd\xf9\x3c\xd8\x81\x2b\x2b\x79\x9b\xd8\x2f\xbd\xe3\x5c\xae\xef\x29\x8c\x7f\x32\x2f\x8b\x4a\x3e\x26\x51\xfa\xc1\x4d\x4e\xbb\x39\x57\xec\xd3\x0f\xe9\xac\xfc\xbc\xdc\x61\xfe\x77\x98\x4e\x45\xf1\xb8\x63\x7c\x7c\x24\x2d\x67\xaf\x6a\x2e\x8f\x27\xa0\xca\xa1\x3a\x33\xe7\xd7\x4c\xb6\xe5\x8a\xb4\x2a\xaa\x7e\x9c\x74\x71\xc8\x60\xfa\x9d\xc9\x2a\xc2\xce\xfc\x62\x67\x34\xfe\x20\x52\xbe\x41\x24\x61\xb4\xe8\x64\x6d\x65\x2d\x27\xa2\x52\x00\xc1\xbf\x2a\x38\xa0\xf9\x0f\x3d\x52\x74\x4a\xbf\xbc\x23\x44\x78\xce\x36\xbc\x4f\x03\x14\xa5\x12\x14\x5a\x27\x22\x57\x4e\xe7\x22\xd2\xcc\x4a\xf7\x8f\xcd\xc2\x30\xc4\xc8\x86\x21\xdc\x28\xf6\x24\xc3\xe0\x06\x84\x51\x97\x7e\x7a\xe2\xc5\x23\xa6\xe7\xb6\xf6\x48\x79\xd1\xe3\xe5\xfc\x11\x33\x42\x11\x59\xa1\x43\x04\x4d\x52\x3b\x4c\x41\x86\xc8\xe1\xfe\xc0\xd2\x06\x75\x33\x79\xa4\x82\x94\x2c\x29\x8f\x0f\x82\x84\x8b\xd0\xa8\x4a\x81\xaa\x1c\xa2\x8c\xd4\x21\x46\x8d\xa8\xf9\x4e\x03\xc1\x95\xe2\x12\x8f\x4c\x0d\xf6\xac\x30\xd0\x20\x85\x65\xb5\xb2\xc4\x69\xa1\x1f\x50\x33\xfa\x50\x2d\x3e\x83\x1d\x27\xf2\x55\x79\x63\x3c\xb0\x0f\x36\xe8\x76\xbe\xc7\x81\x76\xaa\x60\x91\xd2\x19\x4e\x2d\xaa\x6c\xc1\xde\x48\xc2\x51\x27\x2f\xc4\xca\x0e\x01\xc5\x72\xa6\x83\xfa\x81\xa5\xb2\xf5\x7a\x51\xb5\x7c\x9c\x22\xe5\xc2\xda\x86\x7e\x55\xb1\xb1\x27\x7c\xd0\x65\x69\xa7\x5c\x1c\x6d\x2c\x1b\x6e\x0d\x4a\xb3\x53\x56\x62\x69\x27\xae\xd7\xba\xeb\x7d\xe4\x04\x4c\xe6\x13\x83\x97\x64\xa3\x4d\x3a\x3f\x1a\x82\xd7\xd3\x25\x2e\xf3\xbf\xc2\xc7\x97\x3b\xc5\x05\x33\xea\xb7\x94\xd1\xa5\x57\x83\x92\x81\x58\xbb\x61\x95\xdb\x9d\xbf\x3d\x76\x55\x57\x7e\x26\xc7\xd8\x41\x5d\x72\x66\x02\x47\x93\xcc\xe0\x84\xb7\x13\xc0\x3b\xd8\xee\xc7\xb7\x10\xdb\x4d\x0c\x0f\x1d\x81\xcc\xed\xcc\x97\x5d\x14\x0f\x34\xbd\x0f\x2c\x17\xd2\x8b\x54\x36\x55\xe1\x59\x6f\x79\x44\x03\xe1\x1c\xd9\x84\xe9\x60\x2f\x94\x27\x72\x47\x09\x59\x96\x70\x42\x32\x17\x05\xad\x18\x8e\x63\xc4\xaf\x51\x3a\x42\x2a\x27\xf8\x39\xb4\x55\x81\x54\x60\xc7\xb7\xe1\x65\x8f\x14\x63\x23\x69\x6a\x1b\x60\xeb\x6f\xda\xc8\x3f\xb2\x46\x49\x0b\xd2\x1e\x90\x18\x93\xcd\x39\x49\xad\x46\xcc\x9a\x84\x86\xcc\xe9\xa5\xfb\xe7\x99\xbe\xbf\x21\xe0\xe7\xe3\x99\xfd\x8a\x11\x5c\xc5\x69\x61\x98\xda\x00\xd9\xd9\x39\xa4\x3b\x26\x24\x13\xed\x73\x84\x96\xc2\x47\x7c\x31\x48\x1f\x44\xaa\xcf\x06\x3a\x96\xd1\xf3\x36\x9c\xd9\x7d\x41\x45\x86\x5e\x86\xc9\xcc\xf6\x13\x39\xc7\x9e\x76\x6d\x5d\x87\x32\x85\xc8\x92\xb9\x8c\xa6\x66\x3d\x62\x9a\xe2\xcd\xf3\x7f\x98\xc5\xad\xe7\x9a\x34\xe4\x39\xe6\xce\x3b\x59\xae\x27\xdf\xef\x66\x3c\xc9\xb4\x47\x94\xef\x26\x3f\xdc\xbc\x7d\xb2\x77\xd0\x4d\xdc\x1f\xd6\x23\xf1\x79\x4f\x07\x6d\xf5\x1f\x2a\x93\xd7\x62\xba\x3b\xb2\xb3\x0d\xde\x58\xcc\xce\x8e\xb7\x31\x0c\x1d\xcc\xb7\x1d\xe5\x88\x74\x22\x6d\x78\xfe\x0d\xc9\x02\x87\x9b\xdc\x6f\x5d\x8d\x2b\x11\xaf\x54\x18\xfe\xc9\x8d\x3d\xad\x26\xe6\x65\xbd\xf4\xf7\x1d\x9a\x89\x34\xcb\x68\x64\xd4\x25\x62\x1e\x50\xce\xef\x7c\x7f\xae\x6b\x13\x44\x5f\x01\xb7\x91\xf8\xcd\xb8\xe9\x95\x55\xcc\xda\xa5\xb6\x3e\x8b\xc4\x64\xe7\xe7\x0b\x6d\xdd\xcb\x20\x2f\xa2\xf3\xd7\xc5\x4c\x6e\x60\xc2\x91\x3c\x62\x42\xde\xd3\x12\x32\xee\xb1\x55\xed\x21\x24\xb7\x11\x01\xc5\x86\x52\xbd\x84\xf2\x62\x0b\xb2\xbb\xba\xed\xc0\x3d\x62\xda\xf1\xab\x1f\x88\x42\x00\x5d\x72\x03\x66\xe5\x07\x6b\xf5\xde\x13\xe0\x25\x72\xd2\x52\xed\x95\x12\x87\x3c\x71\x94\xb7\x14\x46\xa7\x1a\x2f\xc0\x97\x0b\xc5\x03\xcf\xdd\xa6\xe3\x8a\x1b\xeb\xd1\x75\x97\xf1\xb1\xd2\x4a\xab\xc2\xc1\x56\xa9\x76\x51\x74\x0f\x3a\x31\x69\x95\x9f\x97\x41\x0b\x6e\x9a\x6d\xb4\x84\x55\x10\x55\x6c\x96\x1c\x45\x84\xb0\xb6\xcd\xaf\xed\xc4\x76\x27\xa4\x03\x03\xd6\x70\x8d\x22\x42\xfb\x50\x9a\xfa\x86\xda\x46\x6c\x64\xc3\xd4\xd4\xfe\xd8\x48\x13\x53\x25\x3e\xd2\xb8\x3a\xc5\x3f\xa4\xe7\x22\xeb\xc3\x2e\xa6\x1d\x45\xaf\xdb\x03\x6e\x3a\xd1\x71\x77\xdb\x7c\xf1\xcd\xfe\x44\x54\x10\xa5\x60\xd2\x2c\xcd\xd3\xee\xaa\x55\x6f\x78\xba\x10\xb9\xe3\xec\xbe\x84\x5d\x3b\x26\x88\x5e\xa5\xa0\x23\x98\xaa\xc8\xf6\xb5\x74\x38\x7e\xf9\x7a\xc0\xf7\xb8\x2a\xe7\x99\x5e\xe9\x56\xcf\x8f\x3f\xda\x1e\x34\x37\x12\xad\xd0\xa3\xf5\x18\xc9\xd3\xb8\xe9\x3e\xbf\xdc\x2e\x09\xbc\x88\xa2\x0e\xb7\x3a\x0e\xf8\x81\x04\x97\xff\xab\xf4\x3a\x95\x81\x0a\x2b\x67\x86\x21\x35\x05\x83\xac\x74\x86\x90\xe5\x62\x8c\x13\x51\xb6\x2c\xeb\xa2\xe0\x13\xeb\x47\xdb\x34\x96\x0f\x8d\xee\xa4\xef\x51\xe9\x9b\xae\x09\x58\x87\xf6\x64\xf9\xe0\x24\xf8\x22\x67\xab\xb3\xce\x45\x76\xb8\x47\x69\x8b\x85\xb7\x95\x9f\x45\x51\xfc\x58\xab\xc2\xed\xb1\xbc\xb4\xc6\x12\xbd\x01\x37\xbd\xb6\x0d\xf2\xd6\x17\x1a\x85\x4b\x54\xc8\x45\x24\xe2\xe6\xd2\x57\xeb\xa1\xf1\xe8\xa6\x4e\x58\xab\xc7\x03\x02\x44\xc1\x7d\x72\xac\xa5\xca\xee\x7a\x9f\x08\x93\xe2\xbc\x10\xcf\xd2\xcb\xe2\xe7\x54\xc1\xe5\xc7\x3b\x7e\x74\xd8\x8b\x1a\xaf\x4a\x9e\xf3\x61\x59\x8c\xc2\xa6\x47\xc8\xf2\x61\x17\x82\xc4\x8b\x65\xc1\xeb\x06\x3b\x6e\x60\xc1\x0b\x02\x86\x8d\xb7\x76\x28\xf1\x44\xe5\x4a\x2e\x57\x58\x1c\x78\xb6\x3b\xe5\x4f\x4a\x6c\xc3\x75\x30\xed\xb5\xb4\x8f\x5d\x81\x96\x8d\xc6\x70\xba\x55\x54\x01\x0e\x73\xfa\x6e\x6f\xb8\x22\x4d\x3d\x66\x3c\xda\x68\x7e\x5c\x09\x13\x1e\x41\x31\x47\x47\xce\x3a\x2a\x5c\x8a\x42\xe7\x63\xc4\x58\x3b\x76\x30\xdb\x43\xde\xeb\x80\x5b\x45\x7e\xdc\x81\x3f\x2a\x9e\xb5\x24\x71\x42\xbe\xfd\xbc\xb4\xbc\xd8\x8c\x74\xf1\xb1\xf1\x9d\xf3\xeb\xc1\xe7\xad\xda\xdb\x06\xef\x48\x1c\x0e\x46\xea\x3a\x5b\x95\x98\x51\xb6\x22\x32\xf8\x26\x8c\xcf\x17\x4a\x72\x74\xe0\x18\xa5\xab\xe8\xfc\xe0\x60\xb1\x90\x88\x22\xef\x71\xc8\x58\xa7\xa7\x94\x2a\x7e\xac\xfe\xe8\xec\x3d\xef\x98\xb9\x38\xde\x85\x99\x78\xcc\xd5\xc7\x1a\x9a\xe9\xa1\x0b\x57\xa0\x2b\x6c\x3a\x6e\xa3\x5f\xba\xfe\x0a\xf3\x66\x26\xc8\x74\xf8\x89\x80\x63\xf7\x7b\xa1\xfb\x40\x54\x46\xea\x74\xe7\x89\x22\x0f\x7f\x4f\xf1\x6d\xed\xd4\x67\xb7\xf2\x45\x8a\x2a\xd1\x33\x28\x7a\xa4\x96\xa5\x48\x69\xf6\x20\x23\x4a\x6c\xbc\x0f\xfd\x12\xb2\x5c\xcb\xcb\xc9\xdb\x1a\x65\xde\x59\x98\x9d\xe8\xbf\x42\xc9\x70\xce\x07\x5f\xc2\x30\x51\x17\xdd\x85\xa3\x4d\x62\x38\xc4\x75\x8a\xef\x17\x99\x75\x51\x03\xa4\xe4\xa3\xf2\x11\xd5\x3b\x45\xb3\x61\x75\x8f\x50\x58\x52\x1d\xbc\xfb\xfd\xcd\x74\x8a\xe0\x72\x20\x5d\x91\xca\x0d\x34\x18\xcd\x27\x5f\x87\xd8\x64\xeb\x95\x59\xb7\x0b\x7e\x1d\x0d\xe6\x63\x5c\x74\x21\x68\x5d\xc2\x53\x3d\xa4\xce\x38\x41\xe2\xfb\x98\x3e\xc9\x31\xfe\x37\x31\xd9\x39\xe0\x31\xc8\x6e\xa6\xc4\x21\xec\x40\xa9\x26\x1e\x1e\x84\x1c\x13\xcf\x5d\x28\x59\xd3\x36\x76\xf4\x7d\x8e\x73\xd4\xbf\x15\x74\x77\x6f\x44\x4c\x4b\x60\x99\xf8\x9c\x67\x26\x3e\xcb\x48\xb7\x6f\xf5\x5d\xc8\xdd\xc8\xd6\xc9\x61\x6a\xe2\xb2\xcb\x54\x21\xef\x30\x47\xdb\x98\x3c\x38\xed\x65\x42\x26\x62\x77\x71\xc2\xa8\x71\xdb\xcc\x67\x83\x10\x50\x66\xfa\x04\x1e\xbe\x60\x5d\xf6\xd7\x1c\xff\xd3\xb7\xd3\x37\xd0\xcb\xea\xeb\x9b\xe8\xeb\x3b\x1b\x4c\x1b\xe9\xeb\xdb\x83\x2b\xee\x65\x10\x63\x68\xa2\xa3\xa3\xa3\xaf\x63\x60\xec\x03\x14\xfe\x8d\xd3\xd3\xe7\x03\x86\x85\x01\xfb\xfd\x65\xf4\x4f\x97\x92\x63\x16\x6b\x80\x82\xd9\x00\x04\x29\x81\x7d\xbb\x01\x0d\x4d\x83\xc4\x51\xa9\x22\x87\xde\x33\xaa\x6d\x76\x5e\x9b\x4e\xdf\x30\xba\xb8\x1a\x6c\xb6\x58\x63\x05\xaf\xb5\x24\x0a\xc8\x45\xe4\x5a\x67\xb6\x76\x82\xb7\x1a\xa2\x05\xcc\xa0\x61\x0d\xbb\x56\xf8\x3c\xff\xa2\x32\xaa\x0a\x49\xc4\x09\x80\x25\x13\x88\x4b\x22\x26\x15\xf5\xee\xb7\x26\x19\xad\xe5\xfa\xe4\xca\x78\x11\x10\xa4\x4e\xbe\x78\x99\x04\x38\x4d\xda\x3b\x14\x4b\x94\xc3\x2d\x8b\x3e\xab\x62\x30\x2b\x38\x57\x06\x2e\x81\x5a\x14\x64\x14\x98\x54\x74\xf9\xc6\xfc\xfa\xfd\xb6\xf1\x0e\xe6\x5e\xd2\x3e\xb3\xbe\xf1\xdb\x39\xd0\x31\xa6\xa1\x51\xc1\x4c\x0e\xbe\xd8\x09\x94\x0d\xc4\x3a\x48\xb7\xd7\x68\xb1\xf0\xd2\xf8\xea\xfb\x28\xf6\x53\x5e\x29\xa4\x29\xaf\x29\xad\x29\xdc\x45\xc6\xcb\x9c\x69\x6c\x17\x78\x3e\x01\x7d\x10\x7c\x87\xe8\x60\x8b\x2b\x61\x2e\x0b\x0f\xee\xec\x72\xc6\x08\x1b\xfd\xa1\xcd\xcd\x0b\x4a\x95\x5e\x96\x85\x55\xd1\xb6\x68\xba\x50\x0e\x2d\x5b\x5d\x32\x62\x16\x9c\x7e\x71\xbd\xbf\x3d\x39\x3e\x75\x73\x8f\xef\x5d\x51\xed\xef\xd3\x33\xa0\xcb\x4c\x9d\x1c\x98\x98\x83\xc8\x85\x08\xbc\x5b\xd4\x92\xb4\x11\xea\x61\xdc\xcd\xce\x95\x2f\xa3\x7e\xa2\x9c\xfa\x3a\x3e\x3e\x10\xed\x90\x60\x3d\xa3\xf7\xc0\xf3\x8e\xeb\x11\xea\x2d\x4e\x15\x19\x2f\xe3\xb2\x70\xeb\x65\x8d\x39\x44\xb9\xaf\xbc\xa7\xdc\xd1\xab\x1d\xb7\x7c\xc2\xec\xd2\xa8\x1d\xa9\x7c\xa9\xe8\x92\x70\x8d\xef\x9c\xcb\x3e\x9d\x71\x9e\xb5\x73\x75\x74\xb5\xf3\xdc\xbe\xbf\x31\x63\x3d\x84\x73\x79\x98\xc9\x9e\xc1\x99\xb1\x9e\x01\x9a\xf9\x99\xf1\x79\xf9\x7c\xf1\x6c\x69\x89\x74\xe9\xff\x98\xf8\x18\xf0\xd8\xe9\x58\xeb\x98\xfb\x1a\xd8\x32\xb2\x61\x62\x45\xa7\x8c\x2e\x1e\xc1\x36\x4c\xb9\x4f\xb8\xf7\xb3\xef\xb5\xcf\xb5\xaf\xb5\x8f\xb5\x6f\xb5\x4f\xb5\x37\xfd\x74\x4e\x88\xab\x76\x5e\x8e\x2b\x42\x8c\x99\x34\xf8\xd3\x11\x3f\x60\xcf\x5b\xd9\x0f\xd9\x86\xd8\x4c\x20\xd1\xb7\x6b\x4c\xb7\x09\x24\x16\xc2\x3c\x1f\x7a\x63\xf4\x99\xcf\xcb\x1d\x82\x13\x05\xc3\x1d\x73\x3d\x20\xd6\x91\x8a\x13\x6d\xe3\xc1\xd9\x82\x06\x3e\xdf\xd9\x10\xba\x07\xfc\xc1\xf6\xc2\x2c\x55\x54\x6b\x42\x6a\x08\xe5\x4d\xc9\x09\xc2\x78\xbe\xb9\xbe\x3e\xb6\xe8\x1a\xf1\xd6\xb9\x87\xfd\xa1\xfc\x62\xc3\xc5\x57\xab\x8f\x07\x6e\x84\xf4\x89\x6d\x32\x97\xb9\xde\xee\x37\x74\x45\x40\x85\x22\x0e\xd1\x89\x8a\x75\xc6\x54\xf9\x77\xee\x98\xa0\x9f\x2f\x4b\x4a\xb5\x1e\x89\x3e\x71\x27\x31\x3b\xda\xfd\x89\xff\x4a\x00\xc8\x3b\x4d\x4c\x2d\xc4\xe1\xc3\xae\x05\xf1\xfa\x29\xbe\xca\x1f\xf2\x09\xe3\x0a\x49\xee\x69\xda\xca\x2f\xf6\x2c\xf8\xaa\x94\xa0\x9d\xc4\x03\x67\x33\x80\xe6\x03\xcb\xe5\x4f\x03\xc1\xb8\x4a\xbc\x17\xe9\xc8\xfc\xf7\x9a\x8d\x96\x98\x6b\x03\x63\x5d\x38\x8f\x74\x91\x1c\x74\x6c\x4f\xfc\x75\xa8\xf6\x19\xf8\x5a\x7a\x9a\x70\xef\xb0\x0d\xe2\xdc\x6d\x9d\xe6\x9f\xa7\xce\x2a\xda\x3c\xd2\x08\x64\x42\x20\xee\xf0\x6f\x31\x21\xd2\xb3\x71\x2b\x14\x8b\xf3\x63\x2b\x10\x8d\xb3\xe5\x2b\xf4\xa7\x39\xac\x35\x6f\x3b\x00\x4e\x1d\xf8\x3e\x41\xc7\x98\x4e\x00\xab\x90\xc2\xf1\x95\xa6\x9a\xd4\xed\x38\x0d\x4a\x78\x10\x8f\xbf\x74\x41\x52\x4f\x2a\xb5\x28\xce\xf7\xdf\x4d\x3f\xfd\x27\x45\x82\xdb\x57\x03\xdb\x0f\x9c\xf2\xd8\x5e\x94\x39\x68\x61\xc4\xe2\xbf\xfb\x6b\x45\x61\x7b\xf0\xa9\x71\xbd\x5a\x14\xda\x0a\x1a\x2a\x3a\xf2\xea\xca\xd4\xbf\xa7\x16\x45\x2d\x35\x3d\xf9\xf5\xe5\xed\xc5\xcd\xd5\xdd\x83\x74\xd4\x9b\xef\x3e\x0f\x50\x11\x12\x13\x14\x15\x16\x17\x30\x81\x40\x00\x80\x16\x4a\x70\x0b\x00\x00\x00\xfa\xfd\x05\x00\xbb\x01\x5d\x79\x80\xba\x6d\xaa\xb5\xdc\x75\x47\x50\x0f\xd3\x0f\xe3\x93\xb7\x20\x25\x1a\x50\xc6\x27\x74\xd4\x53\x53\x0a\x96\x4b\x9c\x3b\x29\x64\x61\xb8\xdb\xfd\xd2\x82\x9c\xdb\x5c\x1e\x6f\xcf\x50\x39\x8b\x4c\x4e\x5d\xd2\x30\x8e\x4e\x46\xed\xde\xe2\xe1\xd2\x04\x3e\xa6\xb5\xeb\x98\x38\xed\xb6\xab\x3a\x50\x71\x9e\x1b\xfa\xcc\x86\xd7\x14\x55\x56\x3a\xce\x70\xbf\xde\xa1\x18\xc8\xfd\xf9\xf7\x64\x61\x55\x40\x3f\xf4\x4f\x29\x5c\x89\xc0\x81\x98\x40\x38\xc7\xf1\x37\x9d\x71\xed\xaa\x99\xa0\x2d\x80\xce\xe1\x3b\x65\xee\x77\xeb\x77\xf6\x9b\xf7\xd2\x07\xa6\x5c\x6c\x18\x67\x2b\x9f\x01\x4d\xa4\x2c\x4f\xbc\x0b\x02\x5c\x11\xf5\xc0\xaa\x47\x6d\xb8\xab\x80\x0c\x9c\xd7\x6e\x7f\x00\x9c\xc6\x89\xba\xb2\xa6\x62\xad\x8d\xef\x26\xae\xf4\x97\xc4\x9b\x36\x44\x28\xc8\xe2\x58\xa3\x39\xcd\xf4\x50\xfe\x54\xbb\x7b\x40\x92\x0b\x3b\xd7\xa3\x7f\x64\x04\x9a\xc5\xa6\x80\x6f\x03\xea\x6b\x0a\x76\x21\x50\x11\x59\x61\x4a\x41\xb9\x6f\x86\x10\xc4\x15\x87\x83\x04\xcc\xc9\xae\x1e\x9d\x58\xbf\x72\xf3\x7a\xe9\xb2\xa4\x02\xb3\x6d\xdd\xb2\x8f\x0c\xe4\xbe\x0d\xf6\xf0\x9b\x2c\x10\xca\x89\x2b\x8a\xe4\x8c\x22\x83\xec\x81\x5d\x7a\xb5\x82\xd9\x21\x09\x34\x07\xed\x4f\x4e\xe5\xdf\x84\x3a\x73\xb2\x90\x7c\xae\xba\xb5\x46\xd4\xe8\xe2\x37\x27\xaf\xf1\xb7\xab\xe9\x70\xaf\x83\x04\x0b\xf4\x3b\x5f\x0f\x79\x64\xb4\x5c\x05\xf6\x6b\xf8\xd0\x83\x7b\xb9\x35\xdf\x8e\x85\x70\xa2\x44\x1b\x9a\x7e\xad\x71\xa9\x4f\x46\xa3\x6c\x8c\xd5\xac\x4f\x3c\x51\x10\x7f\x33\x7c\x17\x0b\xf7\xf7\xa5\x07\xb6\x6c\xda\x13\x90\xa2\xdb\x2b\x86\xf3\xcf\xe2\x69\x8e\x23\xa0\x0b\xd8\xbc\x1e\xe9\x7d\xf2\x32\x98\xae\xca\x0d\x3a\x8b\x3f\x70\x5a\x93\x28\x58\x45\x2a\xcb\xcc\xf1\x89\xea\x3c\x34\x49\x96\x1a\xcd\x64\x8f\x0a\x5b\x18\x16\xa0\x05\xfd\x7a\x4f\xe0\x4d\xde\x34\xbe\x17\xf3\xb1\x3e\x8b\x85\xb1\xbd\x4c\xdf\x6f\x5b\xd4\xb2\xed\xc7\x21\x19\x02\xf3\x1b\x4f\x45\xe6\x9b\x01\xa7\xb1\x3c\xcd\x3e\x28\x3e\xe6\x1f\xf6\x8f\x1b\x13\xd4\xad\x55\x54\xbb\x5c\x3c\xbf\xa2\x47\xd7\x80\xe3\x52\x48\xe4\x66\x3d\x17\xe2\x26\xf8\x7f\x30\x6d\x44\xe4\xb3\x0f\x7e\x6d\x0a\x40\x4b\x41\x9d\x1a\xa0\x31\xdb\x9f\xce\x7b\x8e\x44\x33\x12\xec\xf8\xec\x0a\xd5\xca\x75\x28\x77\x18\x3d\x7a\x7f\x33\xf8\x54\x94\x67\x17\xa1\x37\x40\x5d\x7b\x21\xb5\xa2\x9f\x5a\x0a\xc2\x85\x90\x1f\x81\xcf\x6b\x13\x45\xee\xb0\x7e\xf6\x3b\x23\xc7\xc7\x8c\x85\xc0\x0c\xcd\xc6\x39\xd2\xf8\x8c\xa1\x5b\xcb\x92\xde\xfc\x25\xf0\xc9\xc0\xd7\xc2\xab\x87\x4c\xba\x7d\x30\x96\x93\x39\x58\x3a\xaa\x51\x6b\x5e\x59\x10\x16\x4f\x19\xa3\xa4\xe3\xd9\xfd\xbd\xfc\xb2\xe2\x0c\xc1\xbb\x43\x8c\xd3\x4b\xda\xcd\x15\x45\xe4\x31\x2f\x52\x2a\x28\x2a\x9a\xb7\xf3\xff\x62\xa2\xe7\xf5\x0f\xe4\x0e\xa2\x6a\xb9\x03\x95\x8c\x89\x23\x20\x3c\xe2\x7d\xaa\x7d\x1a\xae\x35\x50\x45\x51\x31\x88\x04\xd2\x57\xff\xa4\xa5\xe1\xc6\x1b\x7d\x87\xd2\x1d\x18\xde\xbd\x31\x34\x54\xf9\xbf\xf4\x25\xc3\x07\xcb\x4d\xe5\x44\x4e\x9d\x13\xd0\x46\x03\x49\x55\xf7\x8d\x6b\x80\xd6\xe6\xf2\xda\x56\x61\x85\x24\x33\x47\x3d\xa6\x85\x42\xe7\x25\x3a\xf5\x45\x2f\x46\x9e\x6d\x94\xd3\x4d\xf6\x16\x2d\x14\xf9\x3b\x71\x00\x13\x34\xda\xc7\x83\x30\x47\xf5\x33\x28\xeb\xd5\xb8\xb7\x9b\xfd\xae\x5b\xfc\x43\x98\x3f\x3e\x2c\xd0\xfb\xfd\xa6\xeb\x8c\x1b\xa7\xe2\x72\x71\x67\xf7\x7e\xbb\xd3\x15\x41\xb4\x50\x8f\x08\x3d\x2d\xdc\x9a\xf2\xd2\xea\x3a\xf6\xef\xf0\xd8\xbe\xa6\x8c\x9f\xbb\xca\xe2\x25\x8b\x31\x0c\x8e\x9a\xf2\x72\x79\x97\xa6\x7b\xf9\xc5\xbd\xe1\xa6\xc0\x88\x9f\xc0\xae\x85\x16\xe8\xa0\xab\xbd\xaa\x5c\x7d\xa5\xae\xa9\xa2\x32\x61\x2c\x57\xe2\xd0\x85\x71\x2b\xeb\xe2\x5c\x60\x06\x7b\x20\xce\x87\x9a\x5f\x85\xa2\xed\x30\x0e\x27\xa3\x19\x43\x12\x3d\x86\x5c\x31\x67\x4d\x5f\x58\xaa\x22\x54\x4e\x5c\x17\xd7\xcd\x4b\x57\x6e\x54\x6f\xa5\xfb\xae\xd7\x7f\xbb\x8c\x01\x18\x37\xfa\xfb\x15\x9b\xeb\x69\x75\xd8\xfc\x2b\xb8\x1c\x1d\xdc\x70\xf2\xbf\x64\x0c\x82\x8b\x5f\x2c\xcb\x08\x17\x1a\x35\xf0\x63\x98\x19\x67\x16\xc0\xa0\xbd\x44\x4f\x3f\xb9\x10\xa1\x40\xd2\x59\xcc\x4a\x34\xd7\x08\x51\x67\x65\x51\x99\x7c\x4c\x57\x92\xd1\x1c\xbc\x78\x21\x7e\x02\x79\x02\x03\x86\x06\xbd\xc4\x2c\x41\x04\xb7\x3a\xd5\xe3\x19\x2e\x50\xf9\x07\x25\x85\xbc\x51\x2f\x6e\xff\x95\xb6\xce\x2c\x3d\xbf\x62\x02\xbf\xe3\x7e\x97\x62\x51\xaf\x46\x6d\xd0\xe3\xe2\xe1\xe5\xec\xfc\xe5\x54\xed\xb4\xed\x1c\x6f\xb0\x20\x81\x9a\xff\xcf\xe1\x36\x80\x23\xfa\xc4\x65\x20\xd9\xdf\xa9\x20\x8a\x43\x5d\x61\x1f\x4a\x2c\x07\xef\x45\x36\xe8\xde\xc8\xab\xa1\x03\x69\x13\x3c\x97\x1e\x01\xee\x3d\x77\x1f\x3e\xb4\x77\x6f\xe4\xf2\x4c\x16\x9c\x58\x0e\x6e\x1c\x7f\x3c\x2d\x11\x3c\x0c\xa8\x98\xa6\x11\x91\x9f\xd4\xd3\x18\xab\x58\xac\xdd\x15\x7c\x47\x6c\x9b\xe4\x88\xec\x80\x3b\x9c\xdc\x3c\x4b\x1a\x35\xdc\x02\xa0\xc1\x98\xf2\xb4\xef\x72\xdb\x5c\xbe\x29\xa0\x03\xde\xa9\x6b\x10\x31\x2e\x7e\x79\x0c\xef\x41\x76\x20\x40\x83\x82\x86\x20\x42\xc1\x60\x0f\x6e\x64\x12\x31\xb5\x4a\x0d\x8e\x52\x4f\xc0\x09\xde\x32\x25\x54\xd4\x8a\x21\x4e\x44\x10\x60\x40\x16\x61\x51\x36\x24\xdc\xe4\x91\xfd\x13\xb0\x3a\x3e\x6b\xdc\x1f\x4e\x9c\x06\x1a\x46\xe3\x4b\x4f\x61\xaa\x45\x34\xba\x68\xb9\xc5\xa4\xbc\xa8\x84\x05\xd8\x41\xc8\xe7\x50\x01\x72\x02\x7e\x9c\x83\xff\xbd\x1e\xe2\x6b\x42\x34\xa9\x2d\x24\x22\x50\x13\x1e\xbb\x7c\xa9\xa0\x89\x5a\x2a\x3c\x3f\x6a\x63\x18\x89\x31\x76\xe6\xd8\xce\x46\xc7\x8a\x58\x50\x50\xb6\xf3\xeb\x3c\x74\x9a\xb6\xc3\x86\x2c\x83\xb0\x5c\x0e\x3d\x07\x0d\x12\x96\x63\xbc\xe0\x77\x91\x5a\x71\xda\xcb\x34\x21\xa3\x30\xea\x07\x6b\x33\x89\xa4\x06\xe7\xaa\xcd\x7a\x45\x7a\xc4\xdf\x72\x9d\x89\xc6\x91\xef\xcd\x1e\xd4\xfe\x12\x75\x2a\x29\xf7\xdf\xa5\xb1\x23\x18\x1d\xcf\xa2\xba\x3c\x92\x45\x73\x96\x3f\x2a\x23\x1c\x2d\x9b\xc0\xc9\xe5\xf4\x70\xba\x61\x53\xdd\xee\x69\x10\x8c\x1c\x61\x26\x25\x0c\x65\x48\x0f\x9c\x4f\x5c\xd5\xf2\x0c\xd0\xc2\x89\xc8\xda\x3a\xf7\x84\x56\x62\x7f\xd4\xaa\xaa\x52\x6c\x6d\xc3\x29\xe7\xf2\x74\x31\x7c\xde\x18\x6e\x5c\xa5\xf1\x31\x75\x21\x94\xc8\xbe\xa5\x44\xab\xd5\xde\x4e\xbb\xf6\xb6\x7f\xe1\x3c\x02\xd6\x6c\xf9\x34\x8e\x0b\xc6\x5c\x1b\x90\x96\x60\x8c\xa7\x16\x27\xf8\x01\x59\x69\x34\x16\x70\xaa\x0f\x4e\xde\x59\xb9\x89\x8f\x3f\x8a\x89\x82\xb1\x83\x53\x44\x96\xb5\x44\xf2\x51\x3b\xf7\x74\x5d\xcd\xf4\xc1\xc4\x90\xb7\x1c\x8d\x11\x12\x25\x78\xf2\xc7\xe6\x9e\x44\xc1\x66\x56\xf6\x53\x72\x05\x17\xbd\xdd\xde\x12\x42\x6f\xf6\xdb\x21\x99\x9b\xec\xab\x88\xd0\xba\x5c\x20\xde\xb2\x4a\xe8\xe4\xc1\x0d\x11\x92\xea\xa0\x41\xc3\x99\xc3\x17\x8c\x44\xde\xcb\x5c\x59\x9d\xe5\x54\x82\x7d\xa4\xef\x60\xd4\x40\x62\x9e\xc7\x29\xb3\xd6\x10\x94\xdf\x20\xdd\xb8\xa4\x63\x14\x25\xa5\xf6\x3b\x19\xf2\xe2\x98\x0a\x18\x71\x47\x74\xae\x42\xc1\x10\xa0\xa5\xc5\xbe\x30\x89\x34\x83\xf8\xd2\x15\x41\xd7\x16\xa1\x06\xf5\x71\xbe\x9b\x21\x41\x31\x78\xb2\xad\x8a\xdf\xf3\xc7\x9e\x08\x24\x0b\x70\x4b\xaa\xfb\xa6\xb6\x15\xd5\x4c\x6e\x38\x23\x7e\x04\x74\x40\xdb\xed\x8d\xb0\x83\x50\x29\xd3\xb3\xe3\x5e\x38\x6b\xcc\xfc\xa9\x2b\x6e\x49\x1c\xb2\xf1\x88\x88\x30\x98\x17\xb7\x9a\xcd\x97\x74\xcf\x20\x74\x04\x70\x00\x25\x8c\xee\x5f\xab\xf1\x1f\x51\x08\x3a\x02\x2d\x36\x85\xc7\x6f\x7c\xb2\x37\xf7\x27\xb2\x21\x7f\xf4\xcd\x16\x28\x2a\xce\xef\x98\x38\x41\x11\x22\xe5\xb5\x44\x1c\x21\x98\xe0\xb2\x7b\x12\x21\x04\xb7\xf7\x49\xd1\x4b\x10\xd2\xca\x6d\x03\xa4\x2d\x15\xb4\x30\x88\xfe\xa5\x8f\xa1\x3c\xef\x7b\x4d\xaf\xdc\x5c\xc0\xc5\x42\x3a\xe0\x80\xbc\x8f\xfc\x80\xac\xe2\xba\x69\xd9\x9b\x94\xb0\x39\x46\xbc\x8d\x4e\x86\xb1\xc9\x5b\x91\x55\x54\xb0\x90\x06\x1b\x29\xa4\x7d\x2d\x63\x3c\xbc\xa1\x7e\xc0\x88\xe8\x99\x95\x93\xcc\x81\xd0\xcb\x44\xf1\x57\x49\x0e\xa5\x9c\x62\xbf\x89\xea\x04\x3a\xcf\x22\xa0\x41\xbd\x9c\x33\xc4\xd5\xea\x99\x65\x38\xdf\xc5\x97\xd4\x1b\xe7\xce\xad\xbd\x74\x52\xc9\xf1\x80\xda\x22\xa9\xcf\x53\x1e\xc8\xe0\x73\xbd\x39\xf6\xf0\xf8\x2d\xb1\x80\xf6\x30\xc3\xc0\x76\xc4\xf3\x7f\xb3\x86\xa7\x4f\x00\xab\x0b\x8c\x42\xbf\x78\xbf\xc4\x7b\xf2\x3b\x2c\x37\x3b\x5a\x5a\x6a\x80\x20\x9f\xee\x2c\x13\xbe\xee\x78\x0a\x69\x06\xc6\x78\x14\xee\xc7\x10\xa8\x23\x17\x35\x22\x38\xeb\x2c\x18\xff\x35\xc4\x98\x4c\x3b\x04\x8c\x34\x83\xa3\xdd\x68\xb2\x91\xed\xb4\xce\x7d\xf2\x63\x82\xe3\x4a\xf1\x52\x7c\x97\x36\x9d\xd6\x66\xe5\x04\xce\x05\x96\x11\xd7\xd7\x09\x3f\xfb\x5f\x6b\x22\x22\x0c\x12\xb8\xf0\x44\x50\x13\xb0\xa6\x58\xc2\x04\xaa\x61\x42\x27\xe8\xe7\x7e\x9e\x19\x17\x55\xdc\x65\x41\xad\xf6\x19\x7e\xb1\x3c\x00\x09\x43\x32\x09\x16\x91\x83\xc1\x1c\x88\x8d\x55\xc7\x9e\x60\x80\xe6\xc5\xcf\xad\xb7\xc4\xe0\xb5\xc6\xd4\x72\x1f\xa3\x86\xbd\xc3\xf7\x86\x1b\x01\xda\xd2\x3b\x38\x9f\xdb\x3b\x15\x5d\x03\x05\x90\x6d\x55\x8f\x37\x37\x5a\x13\x4a\xbb\x47\xbb\xf6\xe9\x63\xdd\x07\xeb\xb7\xa4\xd7\xaf\xa2\xd7\xb1\xfc\x95\xd0\x8e\xc9\x52\x22\x8f\xa8\x04\xc0\xf2\x31\xcc\xec\x9b\xb6\xc2\x1b\xc2\x9b\x60\xaf\x3a\xfe\x84\x82\x61\x6a\xa0\x27\x37\xad\xac\xa8\x68\xaf\x57\x20\x35\x5f\x7a\x1e\xc1\xcd\x23\xbe\xa9\xe3\x2f\xdd\xa0\x4f\x05\xfb\x0b\x26\xe2\x23\xb0\x27\x44\xd8\x6c\xe6\x6b\x28\x9f\x88\x21\xab\x38\x91\x4c\xc7\x9f\x45\x0d\x35\xb8\xfd\x39\x6d\x7d\x1c\x37\xe2\x79\x6f\x71\x60\x57\xa4\xe2\xaa\xd3\xa0\xa9\x4d\xe9\x1e\x16\xe8\xd0\x1a\x69\x04\xc1\xac\xcb\x20\x2a\xcc\x51\xf5\x41\x88\xaa\x58\x81\xb2\x4a\x87\x59\x1a\x37\xc6\xfc\xb8\xbb\x12\x0b\xd9\x6f\x28\x97\xbf\x98\x75\x7a\x9f\x18\x81\x50\x57\xb1\x0c\x25\xfe\xd8\xfa\xf8\x80\xed\xc4\xfc\x07\xe3\xa1\xe7\x8f\xab\xa6\xe4\xe0\xac\x73\x82\x93\x87\x09\x98\x06\x42\xdc\xa2\x9b\xde\xe3\xfb\x0d\x60\xb3\xd4\x61\x58\x1d\xdb\x46\x35\x0f\xeb\x2a\x97\xe1\x12\xe1\xfa\x17\x3d\x02\xf6\x97\xa2\x21\x35\x35\xbc\x7e\x5f\xf5\x3e\x51\x21\x54\x6d\x05\x8c\xc9\x9d\xd9\xc6\xe7\x13\x03\x50\xb5\xe8\xa9\x72\x11\x17\x3a\xd0\xf1\x71\x97\xeb\xcb\xb9\xa7\x59\x38\x5f\x11\x9e\x1b\xab\x59\x47\xc0\xe3\xa7\x3a\x4f\xd8\xc0\x84\x75\xda\x14\xb2\x6e\x96\xc6\xa6\x39\x28\x52\xd8\xba\xee\xf6\xe0\x5d\xfe\x0a\x78\x96\x46\xb7\x5c\xa8\x9f\x19\x33\xf9\xde\x6a\xef\xe0\x1e\xca\x5e\x44\x9c\x29\x2e\x17\x3e\x35\x4e\x07\x8b\xd2\x90\x4e\x75\x57\x5f\xf0\x13\x1a\xd3\x63\xee\x8f\xa9\x37\x36\x63\x02\x2a\x1c\x26\xe5\x6b\x6a\x93\x4b\x93\x0d\x73\x65\x9a\x8a\x86\xb5\xd2\x51\xdc\xf0\x6d\x8c\x7b\xb6\x6c\xab\xd8\x5f\xb9\x8e\x04\xc7\x57\xd3\x4a\x4b\x57\xdb\x2b\x70\xed\x2a\xd2\xb7\xee\xea\x76\x20\x68\xfa\xcb\xe1\x69\x76\xeb\x45\xc3\x7c\xf8\xa8\x24\x29\x6e\xa1\x0f\x07\x72\x23\xab\x68\x7e\x0c\xd4\x88\x3f\x04\xb9\x81\x99\x87\xa4\xc7\x83\x5d\x8c\x56\xf9\x69\xdb\xe3\xee\x7b\x9e\x61\x29\x91\xb1\x52\xcc\xf8\xe5\x74\x76\xe5\x38\x03\xdc\x84\x64\x2a\x13\x64\xe3\x21\xf0\xc0\x1d\xc0\x98\x8a\x00\x6b\x77\x80\xb9\x3e\x0f\xd4\x25\xf8\x72\xe9\xd5\xba\x39\xfc\xec\xbf\xa6\x7e\xcd\x42\x45\xf2\x65\xb8\x4c\xad\x47\x43\x13\x9d\x8f\x7f\xf6\xde\x65\x2d\x69\x9c\x53\xb2\xa0\xd7\xb7\xf5\x2e\x6b\x65\xfa\xd3\x28\xb2\x88\x65\x99\x3a\x64\xba\x5d\x60\x1e\x6b\x7c\xca\x85\x0e\x6b\x5a\xad\x93\x24\x2a\xf9\x56\xf9\x26\x59\x37\x03\x84\x0c\x7e\xee\x3f\x03\xdc\x4c\x4d\xe4\xf9\xaa\x62\x14\x56\x42\xac\x7e\x40\x54\x3f\x30\x4c\x84\x93\xeb\xb1\x31\x8a\xdb\x76\xd7\xbf\x73\x69\xa3\x40\xb0\xd0\x81\xed\x2b\xa4\xf5\x73\xc4\x7d\x3c\x21\xf2\xae\xfd\xbe\x34\xfa\x58\x5e\xca\x6d\x31\x0b\x5f\xa1\x5c\x1e\x85\xa7\x43\xa2\x30\x4e\x88\xe2\x6a\xbf\x19\xb2\x71\x0a\xd7\x17\x7d\x44\xe0\x37\x90\xcf\x53\x12\xd9\x26\x4d\xc6\x30\x8d\x5b\xb4\x71\x34\x51\xc7\x87\x47\xe6\x8b\x08\x55\xcf\x2b\x11\xe0\x50\xbe\x8a\x8f\xd1\x30\x39\xa3\x3a\xcf\x7c\x46\x34\x87\x15\x1a\x24\x08\xce\x83\x62\x0e\x18\xf3\x3f\x44\x7a\x62\xcb\x2a\xe6\x92\xb6\x89\x64\x98\xff\x83\x2e\x4f\x3e\xd8\x9b\x66\x22\xe4\x1f\x2a\x95\x01\xa2\x3b\x08\x04\x34\x34\xc8\x26\x5f\xa7\x0d\x23\x21\xe3\x86\x01\x3f\xf8\x96\x56\x4f\x3f\xbb\xb6\x86\x3d\xe8\x80\xdb\x76\xef\x8e\x8e\x2a\x83\x7d\xb9\x65\x87\x0b\xef\xa8\x99\x45\x1b\xd3\x7d\xb0\x43\x18\x2d\xf2\xbc\x56\x1f\x8a\xa3\xd8\xdf\xeb\x15\x62\xd8\x85\x2b\xf2\xec\xd6\x65\x88\xeb\x10\x03\xca\xcd\x9f\xa2\x5f\x07\xee\x89\xb4\xff\xc3\x8c\xa4\xf7\xbd\x41\x81\x05\x57\xa4\x72\x0b\xba\xab\x58\xca\x03\xd9\x35\x3f\x77\x65\xe4\xf4\x87\x1b\xed\x9f\x37\x1a\xe2\x73\xaf\xe7\x48\xa7\xb4\x1a\x45\xe2\x7c\xc2\xd0\x89\xfb\xd8\x5d\x36\xa9\x1e\x32\xbe\x12\x18\x44\x80\x98\x53\xac\x71\xa8\x9b\xca\x7e\xb0\x5b\xb1\x82\xa3\xce\xd2\x54\xbe\xfb\xcf\x86\x9f\xb8\x9d\x02\x36\x89\x7d\x22\x4c\x5d\x94\x56\xec\xab\xfb\x53\x1a\xdd\xe1\x3d\x23\x6e\xff\xec\xbe\x3d\x36\x44\xd4\xa0\xa6\x0e\x1e\x53\x1f\x02\xfc\xe8\x9b\x1e\x7e\x48\xbd\x3c\x47\xd8\xfd\x9f\xce\x41\xec\xf4\x8d\xe4\x6c\xc0\x18\x2b\xee\x4b\x23\x88\x0d\x18\xf7\x91\xf5\xac\x5b\x9a\x3e\xb7\x3e\x1c\x4d\xf7\x4e\xbd\x7d\x5f\xa0\x3a\xcc\x91\x3e\x98\x27\x69\x7e\x22\x01\x24\xa1\x49\xe6\xa4\x71\x13\x14\xb6\x09\x3f\xb6\x58\xdd\x44\x72\x33\x85\x5d\x1a\xdd\xc8\xf4\xdf\x50\x2c\xef\x9c\x49\x07\xf9\x04\x57\xf5\xa4\x5c\x7b\xa9\x39\x4d\x72\xba\x29\xf4\x39\x7a\xb0\x30\x20\xce\xbb\x7f\x30\xa4\x69\xa6\x7f\xc8\x9e\x18\x8c\x18\x6e\x71\x0f\x0e\xf1\x62\xf6\xeb\x15\xd8\x46\xf4\xa2\x46\xfd\x88\x7b\xe2\x62\xef\x0c\xb3\x12\xb0\x33\xfc\xc8\xe9\xf9\x63\x53\x21\xe1\x1c\x8f\x75\xd5\xa0\x9f\xb4\x07\x8a\x11\xa8\xe5\x7e\xe0\xa8\xdb\x02\xcd\xfc\xcd\x44\x55\xe9\x2a\x0d\x97\x45\x0e\xf1\x4a\x41\x69\x71\x21\x87\xc1\x1a\x0f\xe3\x43\x6e\x44\x67\x5d\xa7\x6b\x34\x96\x7e\x60\x8d\x7d\x54\x67\x8a\xbe\x71\x07\x30\xe2\x8c\x08\x3e\x1c\x7f\x0d\x0a\x74\xd7\xa3\x83\xe9\x52\xde\xd1\x92\xbe\x63\x63\xea\x36\x8a\xa1\x95\x9d\xbe\x77\x8b\xa1\xf3\xeb\x29\xcf\x02\x5a\xa0\x63\x7d\xfa\xe9\xf7\x71\x3a\xf6\xee\x0d\x46\x78\x2b\x60\x05\x1d\x77\x94\x31\xb8\x0c\xd3\x30\xe4\x43\x63\x63\x67\x0a\x7a\x65\xe7\x4a\x72\x74\x04\x20\xe0\x15\x64\x75\xfe\xf8\x0a\x76\xcd\xa2\xbb\xe1\x6d\x5c\xba\xe1\x96\x5e\xec\x5e\xa8\xaf\x45\x10\xd9\x13\x2c\xac\x59\xcd\x6d\x34\x5a\xa4\x7e\xd3\x2e\xac\xa9\x36\x37\x52\x2b\x13\xcb\x90\x65\xf0\x85\x6d\x8f\xa0\xfc\x89\x4d\x17\xf1\x94\xc3\x58\xce\x9a\x60\x73\x9e\x33\x10\xae\xb1\xef\x18\x1a\x4f\x20\xe3\xcc\x3e\xde\x30\xd3\xa3\x02\x8e\x85\xb6\xdb\x73\x61\x6a\x4a\x91\x16\x6a\xac\x5f\x0b\x8d\x54\xf7\x9f\x45\x85\x1b\x0a\xb0\xb4\xec\x47\x3f\x81\xa4\xe6\x8e\x6c\x52\x57\x1e\xe6\xc2\xf6\xe1\x41\x06\xa5\xed\x39\xab\x54\x17\x8d\x15\x48\x47\xbb\x29\xd8\x0d\xe0\x8f\x11\x8d\x25\xd9\x31\x42\xef\xe2\x94\x09\xe7\x1b\xc1\x27\xf4\x96\x2b\xf6\x1b\x2c\x9f\x9b\xac\xa9\x60\x05\x5f\x65\x68\x47\x11\x1d\x1f\xc2\x93\x96\x29\x2e\x51\xe0\xcf\x85\x74\x56\x5e\x5c\x62\xaa\x4e\xa9\x22\x4e\xe4\x80\xe3\x5c\x27\x6f\xca\x1e\xf9\xd8\xd8\xf0\x00\x21\x88\xdb\x54\x50\x91\x90\x92\xb6\x56\xb3\xb4\xbc\xdb\x25\xce\x2a\x84\x09\x5e\x29\xa9\x00\x52\x62\x36\x1f\x61\xf4\x17\x20\x1a\x3c\x80\xd2\x88\x21\x59\xd3\xe1\xec\xe7\x59\xb5\x34\xdc\xb9\xd2\x1e\x3a\xf5\x40\xeb\x0c\xe1\x57\x20\x11\xf6\x4f\x39\x01\x93\x76\xcb\x54\x0b\x65\xcb\x10\x58\x24\x83\x5e\xa0\x70\x64\x28\x7d\x34\xd2\xfe\x9c\xb7\x51\xf7\xfb\x8a\x2f\x89\x21\x98\xba\x8e\x7d\x45\x55\x08\x8e\x25\x21\x44\x85\xed\x21\x10\x77\x4e\xfc\xda\x18\xd9\xb9\xd2\x99\x24\x90\x22\x9c\x36\x55\x52\x98\x6f\x45\x0e\x6a\x65\xe4\xb3\xa9\x7b\x34\x48\xe5\xbc\x42\x84\x88\x36\x97\x52\xfb\x44\x2d\xdf\x83\x19\x4d\xc4\x35\xe5\xb2\xa1\xd2\xf5\xfd\x76\xa8\x57\xa2\x78\x61\x39\xaf\x7c\xbb\xce\xe7\xbc\xed\x64\x6c\xfa\xcb\x65\xf7\xe8\xbf\xf7\x5b\x62\xa7\xf5\x20\xc1\x30\x8d\x3d\x0c\x56\x51\xc2\xde\x0c\x4e\x51\x4f\x48\x39\x4f\x41\xd2\x2e\x07\x02\xf5\x77\xb7\xe4\x41\xc2\x80\x6b\xa3\x07\x44\x02\x7e\x56\x8e\x96\x04\x9a\x6b\x7a\x62\x3a\x1f\x30\xcb\x98\xd4\x0a\xc1\xd4\x91\xf8\x3e\x20\x16\xc2\x1f\xc9\xc8\x4e\x1d\x2a\x0d\x5d\xe8\x53\x26\x31\xa0\x92\x38\xc6\x8b\x4c\x72\x51\x3d\x38\xeb\x4b\x2d\x6d\xae\x01\xf8\xf8\x4d\x14\x10\xd5\x9d\xe8\x58\x2b\x50\x07\x9e\x4e\xab\x87\x18\x2f\x85\x88\xbf\xd4\x13\xe7\x4d\xb5\xde\x49\xde\xde\xbd\xb4\x5a\xc9\xf6\x08\xe7\xf5\xb4\xe7\xb6\x84\x88\x30\x28\xf5\x6f\xb9\x31\xc1\x08\xda\x04\x90\x0a\x54\xac\x11\x45\x06\xf3\xaa\x3e\x87\xa5\xe9\xb7\x85\x78\x25\xb9\x52\xd2\x05\x02\x12\xe2\xbd\x7b\xf4\x2f\xe9\xa9\x68\xeb\x46\xe4\xac\xa9\x5b\xce\x1a\x99\x2b\x26\x4c\x08\x3a\xda\x21\xed\x8d\x74\xc3\xb5\xbf\x5c\x2f\x12\xd1\xfb\x3c\x6a\xcd\x48\x59\xe8\x7b\x23\xe3\xe5\x5c\x59\xff\x52\x69\xf0\x41\xf7\x3d\xd6\x12\xf2\x4e\x89\x0a\x31\xba\x48\x83\x59\x4b\x46\x90\x44\x9d\x07\x8c\x09\x42\x11\x38\x08\xab\x9b\xb2\x97\x97\x08\x52\xae\x3a\xc9\x1b\xb1\x6f\xb9\x1f\x99\x37\xa8\x3a\x7c\x68\x9e\x0b\x98\xe7\x8e\xcb\x94\x9e\xae\x1f\x2e\x56\x4d\xcc\xf4\x16\x29\x89\xa9\xbe\x94\x7f\xbe\x5c\x8f\xb2\xf6\x5c\x8b\x1f\x5e\xbc\x69\xaf\x68\xcf\xbd\xe8\x64\x91\xc4\xf2\xaa\x67\x4c\x2b\xbd\x70\x03\x6e\x95\x1e\x9e\x8a\x5b\x53\x25\xe2\x78\x18\x6b\xb8\x51\xe3\xd4\x0a\x6c\x0a\x13\x8c\x57\x59\x0a\xc3\x7d\x56\x00\xc1\x27\xf1\x4f\x43\xc9\xe9\x9f\x59\x5f\x46\xf1\x7d\x17\x9a\xb0\xe1\x5a\xd6\x9b\xbd\x0e\xd2\xbb\xc3\x6b\xfb\x2a\x12\x92\xc5\x16\xb3\x13\x15\x43\x7b\xe5\xf9\x66\xae\x7a\xfc\x7d\x3d\xcd\xd6\x99\xfa\xea\x96\x4b\x23\xc3\x3b\x97\x2c\xb8\xb3\xa7\x08\x87\x1a\xf5\xe8\xc3\xdd\x8c\xf0\x16\xad\x9b\x20\xdd\x7e\x46\xfa\x42\x18\x22\xfa\x57\x13\x91\x2f\x75\x2e\xcc\x30\x86\x7f\x26\xc2\xae\xc2\x02\xa1\x7e\xe0\x36\xc3\xfd\xf0\x59\xe9\x14\xaa\x6a\x2b\x2d\x2e\x6f\x8b\xa0\x6e\xe1\xcc\x21\xe0\x2c\x58\x36\x05\xf9\xd2\x7e\x3e\xfa\x96\x89\xe2\x4f\xa0\x9a\x23\x74\x4e\xbf\xb1\x59\x66\x4c\x5b\x51\xb0\xf6\x4f\x77\x49\xfd\x58\x0e\x7f\x2e\x18\x36\x51\x20\x78\xab\xcf\xdb\x28\x6b\x3a\x97\x09\x95\x02\xcd\x92\x99\xb5\x92\xcf\x28\x94\x60\x9b\xe7\x37\x86\x78\x73\x4e\x8b\xe2\xa6\xe1\x1f\xc9\xf8\x28\xb1\x71\x42\x4f\x8b\x06\xb2\x1c\x2c\xb2\x29\x28\xf2\xa1\x3a\xa0\xf0\x13\x8b\x50\xe0\xe4\x09\x93\x36\x47\xd1\xd5\x31\x56\xe9\x3d\xf0\x0a\xcb\xc9\x5a\xf8\x52\x2f\xa9\x93\xbf\x90\x3f\x4b\x39\x7a\x55\x4a\x55\x6f\x9b\xfa\xe5\xc8\x27\x4c\x44\x83\x6d\x40\x09\x3b\x42\x48\xce\xb1\xba\xcf\xe3\x05\x18\x06\x36\xdb\xbf\x98\x04\xe8\xf9\x97\x2c\x0b\xf8\x2e\x69\x8d\x2a\x9b\xcf\xd8\xc8\x1b\x7a\x27\xba\xed\x6e\x05\x25\x90\xfc\xd7\xd9\x07\xca\x23\x71\xca\xba\xfa\x82\x47\x43\x13\xe1\xd7\x35\x33\xee\xc0\xce\xbc\x4f\x09\xdc\xd9\x58\xb1\x9e\x80\xb4\x82\x76\x46\xf1\xb7\xf8\xcc\xf9\x12\x4e\xc5\xee\x26\xea\xdd\x21\xfa\x2b\x3c\xa8\x29\xa1\x88\x50\x5d\x0e\xf6\x08\x44\x96\xb9\xfd\xad\x02\xa2\x1b\x30\x27\x73\x86\xdf\x1b\xa9\x2a\xfb\xa5\x09\xb0\xc8\x0c\x09\xbd\xf0\xaf\x60\x65\xd7\xb9\x5f\x77\x2c\x63\xd3\xa1\x3c\x05\xc1\x49\x70\xe0\xc5\x5e\x90\x47\xfc\x5d\x14\xc0\x01\x9a\x54\xcd\x9c\x13\xb2\x0b\xbc\xee\xff\x6c\x5c\x74\x20\x4c\x1b\x4a\x5e\x0b\x0f\xdf\xda\xdf\x0a\xe9\x28\x00\x87\x4e\xf2\x07\xfa\x59\xa8\x20\x87\xf0\x9a\xd0\x96\x2a\x1f\xf7\x2b\xf3\x4f\xf2\x56\x35\xb5\xbc\xa3\x12\xbc\x37\x3f\x3b\xb2\x35\xb2\xba\xb2\xef\x0f\x02\x5b\x60\x1f\xa4\x56\xb2\xfa\xbe\x6c\xf8\x07\xad\x45\x9b\xd2\xcd\xce\xaf\xdf\x6d\x40\x68\xae\xad\x4b\x9f\x90\xf0\x58\x65\xfc\xdc\xf4\x73\xfe\xed\x50\x38\x15\x87\x2b\xb2\x3a\x10\x45\x7b\x68\x3f\x42\x40\x12\x57\x6b\xcb\x4e\x22\xc1\xfe\x70\x32\x41\xf6\x0c\xe0\xf2\x94\xb4\x20\xdc\xd9\xc5\xa3\x64\x58\x92\x9a\x2b\x0b\x12\x1e\xa0\xad\x29\xb8\x8f\xf1\xad\x56\x54\xea\x4f\x70\xee\x22\x2e\x07\x88\x2e\xd1\x3a\x45\xca\x53\x5b\x7a\xb9\xfe\x85\x0f\x90\xc7\xb3\x2a\xd0\x84\xc9\x2b\xf6\x1c\x24\x65\x71\xe2\x95\xa9\xb0\xca\xd6\x1b\xc4\xdc\x48\x82\x41\xfc\x97\xd2\xd2\x0c\x82\xe0\x14\x11\xfc\xc2\x71\x20\x6d\x42\x17\x99\x6a\xc1\xae\xf5\x50\xb8\x82\xfd\xb0\xcd\xa0\x04\xa5\x64\x67\x12\x49\x6e\xd9\x85\x7f\xe3\x71\x98\xff\x55\x98\xa2\xc5\x66\x0f\x06\x41\x19\xec\xca\x23\x05\xc0\x7c\xf4\x82\x0a\x23\x77\xf6\xa5\xe5\xa9\x60\xed\xc3\x05\xfe\xd0\x7b\x82\x20\xf4\x61\xe6\xf7\xaf\xcd\x0b\x8a\xe2\x65\x65\xe6\xe4\x64\xfa\x34\x54\xda\x68\xdc\x5a\xb3\x34\x2a\x9e\x3f\x29\xbd\xbc\x96\x8c\x0f\x6a\x6e\xc5\x14\x80\x1b\xd1\x85\x09\x59\xd2\xe0\x8c\x15\x14\xe0\xfc\x43\x73\x51\x06\x9e\x59\xf9\xdb\xf0\x6d\xde\xe9\x95\xde\x1a\xa8\xe0\x20\x88\x8c\xd9\x1a\xf2\x5c\xa8\xf4\xa1\x4b\xac\x6b\xe7\x22\xb3\x07\x9b\xcc\x7a\x56\x75\x39\x20\x2a\xda\x54\xec\x74\xaa\x30\x7e\x0a\xf9\x55\x8f\x2f\x67\x08\x6a\xe8\xce\x4f\x9c\x3e\x20\xe4\x9b\xbb\xbb\xce\x3a\x05\x90\x95\x10\x13\xfd\xcc\xdb\x70\x70\x90\xb3\x46\xcd\x72\xb4\x3e\xea\x59\xbb\x75\xcd\x71\xff\x78\x25\x3c\xe5\xc1\xd6\x88\x74\xf9\xd1\x3d\xec\xe0\x11\xdc\x9c\x9d\x6b\x79\xfd\xcd\xde\x99\xcf\x6f\x93\xbc\x9d\x61\xdb\x2e\x5c\xfd\xdd\x5d\xee\x19\x59\x7e\xb9\x42\x72\x70\x07\xa5\xad\xf6\x09\x60\x78\x2c\xe8\x29\x94\x10\xf7\xa9\x41\x61\xf1\x97\xbd\x68\x6f\xf1\xd4\xd6\xf6\x8c\xe0\xd7\x98\x24\x44\x40\x3c\x85\x20\xa6\x45\x0c\x63\x88\xee\x0b\x5f\xfb\xe3\x8d\x83\xa4\x05\x7c\x0b\x2d\x30\xa3\xe7\xe2\x0d\x34\x95\xa8\x5d\xc8\xa1\x32\x7e\x80\x0e\xa4\x5b\x0b\x3b\xbb\xcc\xb2\xf1\x43\x51\x20\xed\xaa\x25\x97\x3f\x30\x6e\x54\x29\x57\xd4\x8f\xc6\x32\xde\x13\xb3\x10\x34\xe8\x37\x75\x68\xb0\xd8\xe5\x16\x6f\xa1\x86\x7a\x74\x31\xa9\x74\x68\xea\x87\x88\x68\x07\x05\x2c\x25\x55\xd8\xd9\x43\xb0\x86\xc2\x29\x1d\xfc\x17\x51\xbf\x29\x89\xe7\x7d\xc8\x40\xc9\xed\x3a\xfd\xa8\xde\xd6\xa1\xbc\x52\x72\x15\x97\xfc\x76\xff\xa4\x56\x5c\x1f\xa5\xd7\x8b\xd6\x7d\x85\xac\xfb\xc4\x12\x9e\x3b\x51\xb5\x72\x54\xe1\xb0\xbc\x32\xf2\x78\x61\x71\x72\xb5\xc8\x03\x67\x35\xd5\xc8\x48\xd5\x0e\x88\x6e\xd9\x6a\xb8\x7c\x8e\x99\xe4\x19\xbc\x6d\x89\x5d\x15\x5b\x80\xa1\x87\x47\xf1\x75\x54\x5f\x90\xdf\xdf\x19\x82\x04\x49\x82\x20\xdf\x6a\x01\x8a\x94\x88\x89\xa9\x88\x7c\xa8\xb4\x58\x42\x38\xa0\xc7\x8b\x2e\x79\xe2\xfd\xb1\x3c\xb5\x9c\x82\x25\xdc\x39\x9c\x08\x16\x24\x0d\xae\x05\x8c\x5d\xcb\x16\x08\x96\x9e\x48\x5e\x17\x38\xd1\x90\xdd\x26\x36\xf4\xca\xeb\xac\x20\x27\x34\xaf\x9e\xe1\x8d\xe9\xd8\x34\x96\x2d\xa9\xc3\xc7\xc1\xc5\x20\x20\x5a\xf5\xb8\xea\x54\xee\x42\xf0\xf0\xe0\x68\x1f\xd4\xf0\x38\x65\xfd\x30\x1e\xe6\x85\xf7\x4b\xee\x62\xec\x7f\x01\x00\x40\xff\xbf\xd4\x1e\xbf\x9f\x13\x0f\xef\xbf\x31\xe3\x17\x60\xc0\x43\xa3\x87\xf6\xdc\xb2\xb2\xf7\xf0\x89\xf0\x94\x90\xb1\x57\x44\xc5\x4d\xba\x1b\x3c\x05\xda\xe0\x6c\xb5\x14\x09\x8e\x10\x63\x63\xbe\x44\xbf\xf2\xf1\x3d\xe5\x96\xcc\x82\x1a\x9e\xa4\xa8\xb0\x3f\x43\x3a\x5b\xb7\xac\x64\x4e\xad\x5e\x17\x8d\xd8\x08\x56\xfe\x5e\xeb\x86\x47\xec\xac\xcb\xba\x0d\x1b\x5b\x83\xfe\x63\xe4\xb6\xb6\xd8\x25\x93\x68\x04\x52\x6b\xf0\x76\xc7\xf5\x8e\x4b\x8e\x3d\x28\x0a\x12\x07\xee\x5f\x1f\x7d\xb5\xb7\xa9\xba\xb0\xb7\x88\x5b\x57\xb1\x32\x0c\xa5\x82\x66\xf0\xff\xa3\xd5\x86\x68\x7f\xbf\x85\xca\xbf\x5c\xe0\x65\x1d\x56\xe4\x04\x3e\x3f\x3d\x17\x18\xdf\x8a\x24\x96\xf1\xdd\xdf\x2b\x5f\x04\x0b\xfd\xde\xde\x0b\xa6\xe7\xd9\x64\xe4\xdb\xcb\x63\x3f\xfd\x5e\x39\xf9\xaf\x17\x27\x90\xbd\x2a\x8d\xce\x31\x8f\xca\xe8\x00\xc0\x16\x31\x48\x26\x07\x30\x75\xa2\x23\x90\x74\x00\x74\x7a\x29\xf4\xaf\xc5\x11\x49\x12\x69\x2b\x6d\xf7\xae\xf2\x78\x23\xf5\x26\xec\x81\x0c\x28\xef\x53\xf8\x19\x29\x9e\xce\xed\x91\xf9\xa5\xab\x16\x16\x3a\x6a\x21\x53\xbe\xee\xd6\x0b\x99\x2c\xbf\xb1\x24\xe1\xb2\xe4\xf3\x48\x42\x52\x5b\xc3\x9f\x13\x60\x83\xe6\xcd\x10\x64\x7a\xf2\xd1\xf8\x52\xa2\x10\xb9\x46\x2a\x66\x32\x7b\x6a\x7b\x4e\x8a\x85\xe9\x7b\xae\xbe\xe1\xaa\x45\x6f\x3c\x93\xb9\x70\xeb\x75\xe5\x8c\x3c\xbf\xba\xf1\x7b\x92\xc7\x27\x95\xb1\xe4\x5b\xd3\x48\xde\x8a\x90\x41\x72\x42\xc7\x46\x97\x60\xad\xc8\x87\xa3\x40\x35\xc7\x02\x4b\x44\xc8\xfc\x1d\x3f\x16\xbd\xd2\x1e\xf7\x85\xf1\x71\x29\xab\x2c\x84\x59\x36\xbc\xa0\x64\xcf\xdf\x7a\xea\xd6\xd7\xd0\xcd\xf5\x4b\x34\xd2\xac\x93\xb6\xc3\x2f\xf0\x8a\x9a\xab\xc2\xa9\x9a\x53\x15\x93\x9f\x29\x14\x66\x78\x8c\x8a\x64\xe0\x99\xa1\x10\xd4\xdb\xa7\xc8\xf9\x7a\x43\x42\xf3\x76\xac\xce\xff\x3d\x74\x78\x39\x59\x13\x75\xdc\xd9\xdc\x8d\x00\xdc\x34\xe0\x47\x36\x0c\xad\x2b\xe3\x86\xac\x41\x50\x55\xca\x93\x83\x0c\x22\xb2\x4b\xe3\x2e\x05\x56\xb6\x08\x56\x80\x06\xbd\xd4\x0c\xba\x23\xc0\xd1\xf8\xf0\xb9\x37\x30\xe9\x63\x8f\x54\x7e\xfb\x58\xfa\x98\x69\x87\x7e\xd3\x33\x81\x3d\x0f\x1b\x8a\x12\x71\xe9\x06\x9c\x39\xf6\x9c\x73\xe7\xee\x58\x4b\x1f\xfb\xa5\xdd\x9d\x0c\x41\x60\x18\x1e\x0a\x19\x01\xff\x1d\x48\xc5\x6f\xc7\x5d\x1a\xd3\xa7\x90\x64\xe7\x63\x64\xe6\xee\x5a\x4c\xb1\x0c\xe2\x05\x22\x24\xd6\xec\x0b\x6c\x58\x17\x26\x42\xa1\x89\x27\x91\x46\x6a\x1f\x4e\x2f\xbf\x61\x39\x7d\xf5\xc2\x03\x60\x3a\x6e\xcf\x98\xad\x56\x27\x34\xf1\x25\x78\x04\x4d\x98\x3c\x5c\x4e\x5f\xb7\xb0\x90\xce\x50\xab\xe4\x7c\xe3\xe0\x64\x48\x10\x55\x15\x1c\xdf\xd3\xcf\x4d\x9c\xef\x73\x9e\x9a\x88\x0c\x32\x09\xdc\xd8\xda\x22\x7a\x4c\x1b\xdb\xb6\xf1\xb8\xe9\x50\x0d\xba\x2f\x45\xb6\x2d\xb7\xb3\x56\x43\x6f\x34\x68\x3d\xe5\xc1\x44\x3f\xe9\x82\xf6\x3f\x10\x25\xd8\xa9\xa6\xb5\xe8\xf7\x25\xa2\x64\x97\x60\x1d\x59\xa4\x8e\xd4\xf9\xd4\x4f\xa0\x1f\xe3\x62\xcb\x34\xc0\x23\x81\x43\x32\xcc\xed\x2b\xdc\xaa\x37\xa5\x72\x59\x6a\x12\xa8\xe0\x63\x9b\xe0\x94\x9c\x9b\x5d\x2d\xb7\xab\x86\x58\x18\x36\x9a\x0d\x95\x24\x47\x58\x18\x98\x5d\x5e\xa5\xbf\xf6\x70\x7c\x8c\x50\x13\x24\xd8\x42\x9c\x5d\xa5\x9d\x75\xfc\x0b\xeb\x9c\x67\xcb\x82\xcd\x45\x4a\x7b\x9c\xab\x80\x71\xc2\x0f\x5f\x51\xd5\x95\x85\x4b\x2b\x0b\x0b\x2b\x2a\x2e\xdd\x7d\xe8\xd0\x52\xef\xd2\xd2\xa1\x43\x77\x1f\x4e\xad\xa7\xda\x0b\xf4\x21\x6d\x5f\x01\x5d\x87\xc9\x63\xb2\x09\xba\x64\x4b\x8d\x85\xbb\x14\x5b\x62\xf0\x5d\x53\xff\xab\x24\x96\x58\xd9\x2a\x31\x6f\xcf\x20\xd1\x52\xe2\xad\x7f\xa0\x9a\x0f\x09\x1e\x50\xa0\xa8\xac\x29\x07\x3a\x34\x84\xba\xb6\x6e\x9a\xc5\x12\x14\x99\x4b\x88\x71\xe2\x81\x2e\x12\x09\xe5\xd8\xb5\x5e\xf4\x43\x63\x02\x13\xa0\x89\x1c\xa8\x22\x27\x53\xef\x8c\x29\x2b\xc1\xa3\xab\x9d\x8e\x4a\xf6\x37\x4d\xde\xac\xf3\xd0\xd6\x4d\xdc\xed\x27\xbb\x86\x8a\xeb\xaa\x11\x49\xbe\xa6\xff\x08\x5a\xfa\x2d\x8a\x83\x8d\x83\x28\x47\x03\x4d\xef\xaf\xec\xb0\x8e\x39\xab\xac\x5f\x81\x9a\xcf\xc5\x92\xb1\x3b\x26\x26\x23\xfe\xf3\x13\x93\x93\x13\x85\x3d\xb3\xef\x1f\xa2\x08\xf3\xd9\xc0\xe4\x64\x20\x3b\xe9\x5f\x83\x41\xd0\x84\xb3\x42\x36\x2b\x7c\x6c\x94\x36\xdb\x8f\xf3\xb8\xe3\x48\x6c\x12\xe5\x77\x97\x5a\xaf\x40\x37\xf0\x75\x7a\xaa\xca\x58\x75\x09\x31\x56\xe3\x71\x3e\x1a\x3d\x30\x37\x27\xcc\xcc\x98\x24\x8f\xc0\x17\x93\x2e\x89\xfe\x0c\x5f\x8d\x09\x89\xa9\x03\xc5\x46\x41\xc8\x9c\x9c\x26\x3c\x58\xd9\xe6\x78\x06\xdd\x7c\x65\x9e\x33\xfd\x95\x25\xd9\x04\x2b\xc9\x2c\x69\x61\x90\x0e\xa6\x90\x63\x65\x19\x76\x85\x34\xb9\x48\xb6\x86\xc4\x1a\x69\x2b\x65\x5e\xa4\xee\x56\x04\x83\x39\xb2\x48\xc5\x7c\x22\x91\x4f\x3e\x45\xf4\x30\x3c\xe3\x99\x0e\x79\xbd\x5e\xac\x32\x63\xd8\xe3\x0d\xa5\x19\x2f\xcf\x4c\x4d\x91\x07\xde\x54\x90\xf3\xc0\x03\xd6\xeb\x0d\x4d\x33\x1e\x9e\x11\x77\xae\x67\xef\x12\x95\x20\x36\xe6\x61\x0a\x64\xd7\x23\xe5\xf5\xe0\x14\xe3\xf3\x31\xde\x59\x8f\x27\x22\x44\xb6\xbb\xbd\xa4\x17\x7b\x66\x3d\x4c\xc4\x5d\x5b\x22\x15\x72\x60\x3c\xec\xb9\x93\x70\x78\xb7\x82\x70\x47\x31\x4d\xa5\xde\x25\xb5\x93\xc1\x4e\x01\x46\x20\x66\xfb\xf1\x42\xef\xeb\xb8\x0e\x7d\xb4\x9e\x47\x6a\x7b\x54\x1b\x34\x80\xfc\x26\xe4\x43\x45\x62\xaf\x89\x77\xe7\x41\xfc\xc7\xca\x22\x81\x9a\x97\x49\x07\x39\xfe\xb6\xba\xff\x00\x6c\x24\xb9\xee\x84\xf1\x2e\xa4\x06\x49\x30\x80\x40\xa3\x09\x80\x44\x20\x08\x80\xec\x66\x06\x41\x70\x86\x33\x9c\x9e\x1c\x38\xbb\x93\x16\x98\xd9\xd9\x20\x6e\xd6\x12\x2b\xed\xac\xb4\xb3\x79\xa5\x56\xdc\x24\xf9\x24\x4b\x18\x85\xb3\xa4\xd5\xfa\x94\x08\xcb\x79\x25\x67\xc1\x92\xa3\xd6\xb2\x4f\x3a\x81\xce\xf7\xad\x83\xac\xbb\xe1\x9d\xe5\xf3\xff\xd6\xe9\xf3\x61\xfe\xef\xbd\xea\x06\x8a\x20\x39\x92\xef\x24\xfb\x3e\x12\x5d\x1d\xd0\xa8\xaa\xae\xae\xf0\xe2\xef\x0d\x7b\xe8\x75\xa2\x3c\x7a\x9e\xd5\x92\xda\xfe\xb9\xb9\xfd\xd9\xec\x49\x4d\x76\x39\x1d\x63\x7b\xf7\xcf\xe9\x27\xe6\xa7\x51\x3d\x23\xeb\xcb\x27\xc0\x82\xff\xef\x3a\x13\xaf\x25\x58\x22\xd1\xf8\x6d\x97\xcc\xa0\xfb\xa8\xcc\xe3\x62\xbb\x12\x89\x04\x3c\x8d\x20\x95\xe2\x92\xb2\x42\x92\x98\x10\xb6\x45\xbe\x55\x25\x29\x73\x55\xb4\x95\x60\x4a\xf9\x9a\x54\x5f\x5d\x6d\x17\x46\x02\x3b\x2b\x15\x1d\x12\x49\xe9\xb9\x25\x8e\xe2\x91\x49\xc6\x08\x26\x76\x34\x2c\x9a\x13\x32\x53\x4a\xa5\xfb\x55\xbd\x78\xa5\xd8\x90\x8a\x28\x68\xa4\xfc\x5f\x39\x7d\x7a\xb2\xf7\x8d\xbb\x9f\xd0\x41\x72\x5b\xc7\x06\xaa\xfb\x39\xc5\x11\x85\x5c\xff\x98\x28\xc3\x24\xfa\x8e\x14\xe6\x81\xdc\x40\x4b\x15\x3b\xdf\x42\x96\x41\xc7\xc6\xf2\x60\x55\xc3\x22\x9c\x30\x97\x54\x86\x66\x86\x13\x6f\x64\x9f\x8a\xee\x6e\x3c\x0d\x65\xf4\x24\xd9\x2f\x87\x1e\x19\x2e\x39\x64\xc7\x25\xe6\xf7\x87\xfb\x16\xfd\xb5\x51\xdf\x70\xfc\x2f\x1b\xb7\x44\x77\xeb\x30\x16\x02\xbe\x64\xe3\x6a\xd8\xf7\x48\xe2\xd4\x04\x63\x0f\x0e\x80\x94\x53\x97\x44\xd9\x08\xc9\x53\x0a\xdc\xa7\x42\x36\x62\x2f\x3d\x0a\x12\x91\x0a\xbb\x01\x0e\x40\x46\x52\xb1\xac\xd4\x3e\xc9\x3e\x49\x73\x68\x18\xee\xe6\x26\xfb\xa9\xbc\xb5\x57\x88\x3f\xc1\x77\x58\xbc\xf0\xd4\xde\x9b\x97\x9e\xfb\xca\x9e\x4f\x3c\x14\x1d\x8d\x44\x03\xc1\x28\x1b\x7b\xea\xc2\xd2\xcd\x2f\x7f\xe5\xb9\x87\x3e\xf1\x67\x81\x68\x64\x34\x1a\xe5\x92\x16\x92\xf8\x74\x41\x5b\xb6\x94\x66\x20\x15\x36\x35\x13\x3e\x1b\x98\x98\xed\x3e\x13\xe9\xeb\x58\x65\xb2\x72\x09\x4d\x3a\xcd\x96\x1d\xca\x06\x9c\xc3\xa7\xde\x2e\xb3\x6c\x5a\x7a\x06\x36\xe7\x68\x73\xd9\x56\x4e\x6f\x20\xcb\x53\x2b\x93\xab\x64\x77\xda\x66\xb7\x1a\xdd\xc6\xcb\x48\x69\x29\x10\x44\x03\xd6\xab\x94\xcb\x66\x57\x23\x2a\x05\xac\xc1\x05\x2b\x9c\x4e\x29\x86\xf2\x9b\x6c\x32\x50\xa0\x7a\xa5\xc5\x67\x2c\x14\xb0\x8b\xa9\x6f\x60\x99\xe0\x35\xe9\x6d\x97\x4f\x94\x4e\x30\xbd\x93\x3f\x5c\xe7\x10\x18\xd3\x4b\xbd\x9d\xac\x12\x6a\xbc\x7a\x59\xd7\xdf\xe7\xeb\x6d\xfc\x1d\x3d\x73\x67\xaf\x6f\xc4\xe7\xc3\x75\xc9\xa6\x24\xbb\xb8\x3e\x86\xb4\x58\xb0\x70\x14\xd4\x96\x44\x1b\x0c\xa4\x51\x30\x7f\x12\xc8\xb5\x1b\x62\x37\xc0\xe7\xe4\xed\xd4\x9c\xb5\x60\xcf\x9b\xdf\xdc\x13\xfc\x19\xb8\x64\x7f\x98\xce\x4b\x0e\x7c\xfe\xf3\x01\x69\x1b\xbb\x68\x58\xff\xd1\x72\x2e\x1b\x54\x0b\x68\xee\x6d\x4b\x28\x98\x74\xe4\x1e\x30\x80\x7e\x90\x1b\x41\xf3\xb6\x29\xde\x73\x04\xcd\xa4\xab\x64\x2b\xfd\xef\x78\x43\x6f\xee\x21\x6c\xd3\xfa\xf6\xe8\xa3\x31\xfb\xc3\x1e\x15\x4e\xa8\x16\x34\x77\xd3\x7a\x31\xb8\xfd\x6a\x01\x3a\x22\xb8\x4a\x0a\x88\xab\x44\x13\x53\xb2\x46\xf6\x3e\x06\x4a\xcb\x6c\x8e\x98\xf3\xc3\x25\xbc\xa2\x93\x36\x42\xe0\xe2\xbc\x64\x29\x98\x27\xbb\x5d\x60\xc3\x66\xe7\x86\x5b\x46\x91\x7c\xaf\x32\x74\xa0\x09\xb5\x6c\x7a\xb9\x73\x02\x27\x31\x58\xc5\xa8\xe8\x89\x50\xe8\xdd\x82\xf0\xe5\x71\x26\x1b\x95\x59\x19\x88\x24\xf4\x75\x99\x9d\xed\x0d\xa6\xd0\x88\x90\xd5\x94\x2b\xfa\x72\xe8\x0b\xe1\x91\x70\x78\xe4\xdb\x94\xfa\x1b\xff\xa0\x54\xec\xef\xe5\x59\xfb\x37\x4d\xdf\x1b\x4b\xf2\x96\xc6\xe7\xa7\xbe\xe8\xdf\x89\x4b\xc8\xcd\x43\x75\x54\x56\xd1\xd6\xb5\x8f\x93\x5b\x96\xd9\xf2\x38\xba\x59\x4e\x68\x09\x19\x96\x4c\xc3\x80\x59\xd2\xf4\xd1\xf7\xa2\x9a\x2e\x30\x30\x10\x90\x84\x11\x8a\x9e\x43\x24\x19\x01\xc2\x1b\xb8\x02\x77\x01\x1c\x87\xd8\x2f\x64\x4f\x67\x81\x7a\x9f\xf5\x34\xcc\xff\x76\xfa\xbf\x9d\x66\xab\x78\x0e\xa7\xfd\xaf\xc2\x69\x53\x56\x44\x6f\xac\x9f\x66\x55\xd9\xdd\x12\xfc\x17\x60\x6d\x65\xd2\x4f\xfe\xe4\x4f\xb2\x77\xf1\x82\x83\xbf\xfa\xab\xc1\x8d\x37\xde\x77\x9f\x8b\x5e\x4f\x3d\xec\x7b\xe8\x21\xee\x2d\x46\x7a\x04\x5b\xfe\x59\x40\x09\x26\xd0\xc8\xa8\xd8\x34\x99\xd4\x80\xaf\x1a\x66\xa5\xb4\xa1\x69\x15\xbd\xae\xeb\xbc\x6f\x19\x24\xc1\xed\xb0\x3c\x9d\xa0\x99\x40\x22\x9f\x7b\xec\x8a\xf7\x31\x0d\x6e\xaf\x6b\x15\x56\x86\xaf\x04\xdb\x5c\x89\xa1\xe5\x0d\xc8\x05\x25\x90\x5b\xb1\x22\xac\x1a\xa5\x35\xac\xff\x5e\xeb\xe9\xbd\xd2\x61\xea\xf5\x05\x0f\x72\xb8\x59\x50\xab\x11\x0f\x4b\xdc\x10\xba\xa6\xf0\x73\x54\x49\x79\x2c\x46\xbb\x30\xe9\x82\x75\x0f\xe4\x1b\x1e\x38\x5b\x72\x16\xe6\xb3\x19\x36\xda\x33\xe8\x8a\x25\x3a\x6b\xe9\x4e\x6f\x34\x1e\x48\x0d\x0e\x76\x79\xdc\xde\x8e\xde\x50\x74\x7a\x97\x36\xe6\xcc\xcf\x79\x96\x92\x83\xa3\x7b\x0a\x8c\xb9\xe5\x9e\xce\xc1\x45\x7f\xf7\x40\x57\x6a\xb6\xab\xbf\xaf\x97\xf9\xbb\xe4\x87\xd3\x19\x6f\xa6\x5b\xee\xf8\xc7\x11\x9f\x37\x1a\x8b\xc7\x46\xb3\x23\xfe\x81\xfe\xd0\xc8\x9e\xc2\x70\xfe\xf0\x52\x36\x9a\x3c\xd6\xe9\x05\x03\x0e\xf7\x71\xa5\x37\xe8\xec\x9a\x1e\xe9\x1d\x19\x8e\x86\xd8\xa0\xcb\xb9\xf9\x2d\x86\xb9\xbe\x24\x47\x34\x7c\x60\xab\xd6\xae\x5e\x42\xc7\x19\xea\x28\x75\x5c\xdd\x6a\xf5\x3a\x7a\xca\x30\x89\x9b\x04\x58\x2b\xbf\xd3\xd6\x9c\x93\x6d\x3e\xa7\x5d\xb9\x1d\x1e\x0e\x10\xd8\xcb\xf0\x76\x46\xc8\xd5\x8a\x86\x05\xed\x59\x79\x7c\x69\x69\xbc\x54\x8a\x66\xb3\xd1\xd2\xea\x5a\xa3\x01\xbb\x92\x75\x89\x95\xf7\x5d\xd8\x37\x06\x74\xde\x98\xa9\x69\xd3\xb0\xc3\xd3\xef\xa3\xb4\xf1\xfb\x98\x13\x83\x95\xbc\x4a\xcf\xde\x43\xb6\xb5\x29\x9a\x02\x81\x38\x85\x2e\xc0\x9e\x3b\x59\xbb\x71\x7a\x69\xe1\x66\xff\x6c\xe8\xf2\xf1\x22\x8b\xdd\x50\xbb\x61\x74\xff\x5c\xdf\xa1\x12\xef\x97\xc0\xe5\x31\x05\x79\x96\x34\xaa\xc6\x89\xab\xdb\xd0\x24\x87\xe8\xc5\xc1\xf9\xde\xe6\x8c\x5a\x5e\x0f\x58\x2b\x95\xb6\xed\x2a\x15\xd8\xc6\xbb\xa2\xcd\x0f\x76\x75\x7d\x7d\xd3\xd2\x74\x50\x93\x18\xd7\xe0\x5a\x3a\x19\xb0\xc6\x21\x0b\x9b\xfa\xeb\x1f\xea\xbf\xe1\xe3\x95\x0a\x33\x7a\xdf\x76\xcb\x1b\xce\x57\x2a\x36\x5d\x44\xf7\xe1\xd3\xda\x77\xca\xb2\x0a\x29\x53\xac\x1f\x80\xda\x4e\xf8\x15\x72\x83\xf0\x5b\x71\xe5\xb3\x57\x63\x25\x64\xd5\x35\xa0\x82\x4d\x50\x36\x0f\x59\x68\x9d\x21\x3f\xd0\xae\x0f\xa0\x45\xf9\x25\x20\x0c\x6e\xf5\x87\xfa\xfa\x42\x2c\x01\xa7\xf0\x69\xcb\x85\x38\x46\x31\x97\xcd\x7e\x95\xf5\x27\x49\x18\x52\x2d\x36\x5d\x3e\xa1\x2e\x75\xee\xe4\x30\x05\x86\x07\x4d\x3a\xa1\x5f\xc8\x15\x67\x15\xf2\x30\x21\xbd\xc2\x08\x58\x0b\x8c\x83\x8d\xf8\xbc\xb4\x1b\x78\x85\x03\x60\xcb\xb7\x0c\x2d\xa4\xe4\xa8\x47\x3b\xad\xad\x00\x5b\x96\x1f\x07\x3d\x78\x40\x5f\xc2\x64\x8c\x5f\x2a\x68\xb6\x04\xe3\x81\xb4\x0e\xf4\xb3\x80\x75\x3b\x5a\xf8\x29\x35\xb3\xba\x4e\x5a\x41\x4c\x60\x99\xd5\x81\xe6\xd6\x8b\xb0\x06\xe9\x58\x33\xdd\xd4\xaa\xf0\x95\x89\xdf\x30\xc3\x84\x7b\xd7\x99\xa4\xeb\x0d\xee\x8f\x05\xe9\x35\x09\x6e\xad\x92\x83\x16\x33\xe1\x0b\xb4\x78\x80\x5b\x61\x43\xeb\x77\xfa\x5e\x87\xaf\xd7\x20\x2b\xe2\xe7\x39\xe5\xef\xc6\x79\x33\x9d\xce\xbb\x75\x66\x34\xe0\xb1\x61\x81\xd2\x2b\x35\x69\xe7\xd9\x55\x81\xea\x1a\xdc\x4e\xbf\x61\x9a\xcd\xc9\xd5\xc9\xd7\x6d\xa2\xbe\x3b\xf9\x8a\x90\x93\xd1\xb8\x4b\x85\xe5\x10\x7e\xc6\xa4\xd1\xd3\xb7\x05\xc7\xef\x49\xdc\x33\x1e\xfc\x2a\x49\x18\xcc\x72\x66\x6a\x63\x63\xea\xa2\x46\xb5\xa9\xb2\xff\xc7\x1a\x37\xb3\x24\x27\x84\x29\x12\x14\xfd\xc0\x13\x74\x1d\x7f\x58\x9d\xf5\xdf\xbc\xb0\x34\x7d\x63\xed\xe4\x3e\x98\x81\x0f\xf5\xcd\xed\x1f\x85\xd1\x53\x10\xfb\xbb\x6d\x4b\xec\x4c\x39\x73\x85\x5c\xfb\xec\x05\xc4\x0e\xbb\x69\xe2\x0d\xa3\x6f\x98\x18\x78\xec\xc1\xd6\x20\x7e\xeb\xf8\xf8\x65\x16\x6a\x5c\x35\x58\x42\x5c\xe0\x5e\x7b\xe4\x11\x49\xe8\x5d\x1e\x58\xf3\x13\xb4\xc2\x91\x79\xd7\xce\x53\x64\x11\x39\xa4\xd5\x2d\xf3\x24\xd3\x4b\xb0\x96\x96\xed\xd9\x12\x2e\x8b\xb3\xe5\x36\x34\xa0\x2a\x93\x1b\x6a\xe1\xfa\x34\xe0\xfe\x4e\xde\x95\x05\x12\xf0\x11\xa0\x00\xbf\xee\xeb\xb3\x29\xc0\x3e\x5f\xca\xe7\x6b\xd1\x68\x35\xb2\x9c\x49\x91\x8f\x16\xd0\x55\x7e\x28\x03\xa8\x78\x9b\xc9\x17\x4c\xf8\x31\xd9\x28\x16\x43\x86\x01\x8d\x21\xb0\x48\xa5\xb0\xff\x32\x48\x0c\x0c\x83\x75\x6a\x1a\x70\x33\x5a\xc4\xbf\x01\xd7\x21\x89\x68\x9b\xa4\x55\x7e\x29\xcb\xf9\x67\x05\x16\x45\x25\x89\x0e\xe3\x98\xa7\x6b\x73\x41\x70\x86\xdf\x21\x37\x1e\x18\xb8\x26\x0d\x04\xa0\xce\x53\xc3\x5c\x86\x45\xfa\x28\x8d\x81\xbe\x73\x52\x4e\x28\xe3\xe3\x4a\x42\x9e\xf4\x87\x57\xc1\x42\x82\x24\x54\xc4\xfa\x1a\x7e\x49\xf4\xe1\xe0\x1e\x55\xa4\xa5\x41\xd6\x0c\x3a\x1e\x0e\x39\x4e\x00\x92\x8d\xb9\xa5\xa6\x47\x9d\xa8\xa1\x14\x43\xd5\x3a\xd9\x68\xa1\x34\xb4\x02\xd2\x28\x56\x01\xb9\x67\xa8\xb1\x51\x47\x12\xe3\xfd\x30\xd8\x4c\xbd\x69\xd9\x56\xe1\xd6\x4c\xf8\x7e\xe6\xad\x15\xcb\x83\x2b\x18\x51\x06\xc3\x05\x9e\x39\x6d\xfa\x99\x5d\xcb\xcb\xa3\x0b\x0b\xa3\x5d\xe0\x04\xbc\xeb\x27\xd6\xe8\xef\x1b\x6f\x3a\xa3\x81\xe7\xbd\x86\xda\x43\xfd\x45\xfd\x45\x4d\xf4\xb4\x81\x99\xda\xae\xf7\x7c\x9b\x7f\x4d\x41\x51\x41\x9a\x8b\xf4\xaf\x1b\xb6\x2f\x0b\xfe\x35\xaf\x14\xfb\xee\x39\x88\xee\x35\xc7\xc0\xcf\xa6\x28\xf8\xd6\x44\x2f\xcd\x46\xf6\x98\x77\x81\x77\xcd\x59\xf0\xb2\x69\x95\xf3\x47\xff\xbb\xe5\xf8\xef\x3e\x70\x17\x95\x73\xd7\xa0\x55\x0e\xcd\xbe\x91\x87\x72\x91\x25\xf3\xce\x33\x89\x33\x67\x12\x37\x25\x44\x3e\xc0\x2d\x75\xd3\x2a\x4a\x79\x3a\xda\xd6\x1f\xd6\xb5\xd2\x77\x69\x46\x58\x80\x58\xf9\xd2\xae\xe8\x21\xb3\x71\x55\x5c\x85\x84\xd6\xc1\xd5\x81\xdb\x5e\x48\x4c\xe0\xb0\x76\xf2\x44\x62\x0a\x59\x85\x8c\x6d\xeb\x8a\x04\xcd\x8f\x9f\x8d\xed\x5c\x91\x68\x9d\xe5\x3e\x2d\x24\x07\x29\x30\x24\x02\x14\x10\xfb\x17\xf2\xb0\x15\xe0\xd0\x72\x2d\x36\xa2\xec\x74\xf4\x49\x10\x46\x68\x6b\x6f\x2d\x57\x0f\x7d\x06\x64\x5e\xec\x7d\xd1\xc6\x4f\x46\x9f\x38\x95\x48\x28\x4a\x22\x71\x39\xaf\x9d\x8e\x96\x35\xe5\x33\x37\x76\x07\x02\xdd\x42\xce\x12\xb6\x4b\x40\x15\xf3\xb5\x46\x81\xfa\x87\xdf\xae\x52\x8e\x6b\x90\x5b\x95\x19\x95\xfc\xe5\x66\x5e\xe5\xcb\x98\xcd\x65\xb2\x3a\xad\x40\x4e\x20\x85\x6d\xf7\x72\x6d\xe7\x74\x70\x9a\x22\x2f\xd7\xbb\x7c\x7e\xbf\xef\x47\x30\x49\x95\xea\xe0\x69\xa2\xa3\xaa\xc9\xd7\xf8\x79\x14\xc3\xb1\xa3\x3e\x3f\x5a\x04\x38\x9a\xb9\xba\xa5\x30\xce\x0d\x29\xf4\x53\xd9\x26\xc7\x0d\x5c\x8b\xc4\x1c\x8b\x2f\x3e\xf2\xe2\xab\x6d\xd9\x31\x3b\x37\x92\x57\x6f\x57\xaf\x1b\x85\x1c\x58\xb5\xed\xe7\xff\x87\xbf\x17\xda\x88\xac\x36\xc7\xa1\x8d\xb6\xe8\x51\x45\x35\x6a\x7b\xe6\x33\xbd\x30\x75\x27\xfa\x07\xfb\x3b\x82\xc1\xe1\xfe\xde\xd1\x3b\x85\xc2\xfe\x47\xaf\x82\x13\x38\xbc\x8d\x08\x7c\xab\xf6\xf5\xdf\x31\x36\xc6\xb4\xb6\x0a\x38\x49\xa3\xf9\x04\x59\x40\xba\x89\xb2\xc9\x82\x79\x03\x78\x7e\x20\x98\x02\x67\x64\x81\x02\xd8\x3b\x3a\xba\xf7\xd6\x5b\x9f\x50\xee\x44\xfe\xf5\x4e\xe5\x3f\x8c\x9d\x61\xde\x33\x63\xb7\xde\xfa\xf8\x4b\xfc\xca\x4b\x92\xdb\xf6\x56\x24\x9f\xbe\x0e\xb2\x40\x22\x2b\x16\x79\x9b\xfc\xa8\xe7\xc3\xb2\xad\x4d\x6e\xce\xb7\xac\xe1\x0b\x87\xbf\x5b\xb7\x14\x50\x87\xab\x5c\xee\xcb\x35\xbe\x0e\x18\xb5\x21\xe2\xc3\x50\x02\x65\xe5\xad\x22\x69\xa2\xd2\xb0\x1a\x1d\x7d\x89\x2d\xc4\x66\x6e\xc5\xac\xdf\x5b\xd3\x94\x27\xf6\xc7\x86\x9f\x1a\x1d\xfb\xcf\x8d\xdf\x8a\xcd\xdc\xf2\x12\x5e\xec\x38\xac\x97\x1f\xdf\x1f\x4b\x49\x42\xdd\x79\x1b\x44\xa5\xe4\xf6\xed\xa0\x5a\x82\x5b\xb9\x80\xfc\x12\x0b\x8c\x8e\xee\x11\x6a\xff\x3b\xf1\x64\x58\x51\x4a\x33\x9d\x9d\x5b\xdb\xe7\xee\xd9\x27\xe6\xc2\xda\x05\xad\x34\x13\x1e\x08\x87\xc9\x0f\xb8\x97\xfd\x0f\xf6\x3f\x5a\x74\x00\x68\x20\x61\x09\x00\x56\x54\x41\x3d\x79\x1e\xcc\x85\xe0\x24\x27\x17\x54\x36\x33\x76\x58\x3b\x3c\xd6\x7b\xe8\xb9\x23\x47\xee\x3e\x7a\xf4\x6e\x9e\xfe\x5a\x38\x5c\xad\xd5\xb4\x37\xf1\x0b\x94\xfe\xfc\x8d\x37\x4a\x62\xce\x70\x14\x17\x2d\x36\xf8\x0c\x94\x6e\x2b\xe1\x4f\xc9\x03\x30\xb1\x8a\xb6\xe2\x4c\x17\x8b\x60\x45\x72\xfa\xfb\xd1\x65\xfc\xee\x29\xa1\x20\x1c\x83\x62\xfd\x9b\xf3\xb3\x7b\x53\xce\x8a\xfa\x8a\x95\x2b\xff\x19\xa5\x26\xe5\xd6\xcf\x4f\x29\x15\x73\x23\x7e\x26\x4d\x7c\x97\xda\x96\x17\x93\x50\xf3\x50\x6d\xcb\xea\x37\xc5\x8c\x6c\xde\xe3\x9b\x64\xd7\x0d\xf9\x14\x54\x9b\x83\x55\x88\xd9\x0d\x84\x9a\x1a\xdc\x2c\x93\x8e\x8d\x2f\x18\x0f\x5c\x78\xfa\xc1\x33\xf3\x27\xce\x9f\x3b\xf3\x60\xff\x42\xe7\x89\xf9\xf2\x42\xf2\xfc\xd3\x17\xce\x3d\xee\x35\xbc\x37\x2d\x2c\x9d\x67\xf7\x7b\x1f\x3f\x37\x9d\x4d\x0e\x46\x00\xf4\x45\x72\x35\x6d\x63\xba\xa1\x97\x84\xa5\x2c\xf7\x42\x6b\x89\xdc\x0b\xa8\x66\x94\x55\xea\x2d\x69\x4b\xe1\xc1\x4d\x73\x59\x59\x23\x39\xbf\x66\xc4\xee\xbc\x33\x76\xf0\x8b\xb1\x83\x07\x63\x77\x36\xae\x5a\x17\xcb\x1a\x51\x5f\x45\xed\x0c\x7e\x7b\x08\x3e\x87\x62\x77\x56\xf0\x22\x0b\xc3\x55\x78\xab\xb6\x4c\x97\xe4\x45\x89\xed\xf5\x89\x69\x85\x44\xbc\x24\xdf\x55\x58\xbd\x58\x26\x9f\x37\xf4\x58\x6e\x5c\x5d\x07\xe2\x1a\x35\x6e\x95\x2b\x57\x6a\xbe\x8e\x3a\x5c\x84\xc4\xa7\x83\x09\x39\xd0\x42\xba\x6d\xb3\x2f\xf2\x10\x84\x5b\x61\xd9\x0c\xba\x69\xbf\xb3\x05\x70\x05\x01\x0a\xb4\xab\x68\x97\x28\xda\x01\x73\x36\x93\x8c\xff\x8a\x94\xd6\xb8\xe9\x42\xc4\xdf\x32\x08\xb6\x2d\x46\x15\xb6\x81\xda\x1c\xb2\x37\x6a\xf6\xa7\x34\x09\x21\x38\x70\x06\xfa\x41\xce\xcf\x23\xb7\x12\x0a\x79\xac\x3e\xcd\x57\x7e\x76\xd3\xf8\xb8\xbc\x72\x50\x3b\xb8\x22\xdb\x07\x7f\x4c\x9d\xba\x7c\x1e\xbf\x3f\x27\x7e\x41\x07\x4e\xea\xd7\xd0\xef\xc4\x72\xbf\x7b\xa9\x3b\x96\xb6\x53\x39\x9b\x9f\x2c\x4c\x5a\x7a\x32\x2b\x00\xad\x02\xae\xd7\x62\x19\x05\x37\x96\x2a\xb7\xec\x0a\x78\x99\xec\x96\xaf\xc7\xcf\x2f\xcd\xfe\x6d\x14\x7d\x3d\x27\x0a\x3c\x67\x4f\x9a\x9d\x1b\x1f\x77\xf7\x25\xba\xce\x2f\xc5\xa2\x89\x78\x1a\x2e\x3f\xff\xf5\xb1\x59\xe8\xaf\xbb\xa3\xe8\xf5\x99\xf6\xf0\x7a\x14\x26\xee\xd6\xb2\x43\x89\x68\x6c\xe9\x7c\x57\xa2\xcf\xfd\x7f\x6f\x9d\x7e\xf0\x6f\x42\x5c\x9f\xec\x1e\x4e\x12\x35\x19\x7c\xfd\x09\x55\x07\xf6\x59\xd8\x70\x5d\x2a\x02\x2f\x4a\x04\x35\xd3\x4b\x45\xec\xb3\x80\x91\xb4\xc6\xd6\x1a\xfc\x44\xb0\xac\x71\xa0\xf4\x83\x31\xb0\x82\x65\x6b\x3a\x43\xcc\x09\xaf\x34\xcf\xfe\x81\xa4\x53\xb4\xfa\x4d\x17\xb2\x20\x64\x64\x3f\xcb\x5e\x7e\x99\x1d\x7a\xbc\xf1\x38\x53\xd9\xab\xaf\xb2\x9b\x8a\x45\x91\x02\x05\x6f\x0d\xb2\xa0\x22\xbf\x4f\xf2\x3a\x51\x42\x8a\x8d\x62\x85\x2e\xa0\xdb\x68\xb7\x98\x09\xb5\xd2\xd6\x8c\x10\xf0\x1d\xa1\xb0\xff\x4a\x63\x4d\xd4\x0d\x71\x53\x21\xf0\xe6\x98\xf6\x85\x71\x14\x86\x7d\xd3\xa0\x72\xab\x93\x56\xd1\x14\x39\x47\xc9\x23\xe0\x9f\xf8\x49\x73\x99\x95\xa6\x25\x09\xb5\x03\x34\xaf\xb8\xad\x09\x8e\x98\x47\x22\x66\x6d\x43\x3e\x14\xc8\x27\x51\x50\x40\x0c\x46\xf1\x0a\x1a\xf1\x98\x30\xa1\xe1\x81\x76\xa5\x14\x88\x00\xdd\xf1\x0e\x20\x5f\x81\x8b\xc7\xab\x1b\x57\xe8\x3b\xfa\x96\x99\x78\xa8\x3d\x8d\xb7\x04\xcc\x53\xbb\x8a\x4c\xa7\xeb\x96\x74\xef\x4f\xd8\x9f\x34\xfd\x25\x88\x4d\xc9\x62\x42\xd2\x0a\x76\xd7\xe3\x8f\xdf\x56\xbd\xf1\xb1\x2a\xfc\xb1\x3f\x79\x1c\xf6\x8f\xdd\x58\xbd\xad\xf1\xa7\xd5\xaa\xe4\x12\x90\x1e\x86\xc8\x37\x9e\x64\x1d\xd8\x91\xe4\x4d\xda\x60\xc5\x9a\x37\x91\x31\x66\x6d\xac\xe4\x5f\xcd\xf5\x86\x7a\xfd\x38\x71\x82\x00\x1b\x77\xab\xe8\x33\x22\x98\x96\xeb\xa1\x50\x67\x6f\xef\xf3\x3e\xc4\xe5\x02\x75\x3e\x48\x2d\xf9\x21\xca\x36\x68\x32\xa7\x04\x35\xc2\xa2\x0d\x43\x54\x9a\xd9\x5e\xc6\xaf\x5e\xb7\x86\x9b\xac\x1c\xce\xb4\x57\x8d\x9b\x3d\x98\xa2\x92\xb8\xb6\x7d\xed\xa8\x6d\x14\xf6\x4f\x0e\x89\xda\x26\x4b\x48\x65\xd7\x2d\x19\x64\xe2\xf0\x45\x36\x17\x0a\xa5\x2d\xb3\x19\x06\x6c\x17\x09\xcc\x51\x19\x03\x0b\x1c\xbb\xf7\xb8\x12\x0b\x51\x7d\x00\xe2\x06\x77\x8d\xd7\x06\xcf\xf4\xdc\xfd\x01\x6f\xc2\x73\x98\x5d\xea\xec\x7c\xb6\x23\xd2\x79\x4d\xea\xec\x7c\xa6\x23\xda\x39\x17\x9b\x78\xfc\x6f\x1f\x9b\x8a\xb1\x57\xba\xba\x7a\x15\xe5\xa3\xe4\x73\xdd\x15\x02\x64\x9c\x2e\x3a\x84\x5f\xb2\x67\xef\x5a\xbc\xe3\x3d\x70\xef\x33\x9d\x9d\x4c\x82\xdf\x3e\xdb\x09\x3f\x1b\x7f\xec\x6f\x1f\x9f\x8a\x41\xfd\x19\xd4\xf8\x9a\x43\x22\xff\x0a\x7c\x02\xa9\xd0\xac\xa1\x0a\xf3\x56\x81\xb5\x55\x53\x46\xfc\x01\x35\x95\xc9\xbc\x38\x64\x55\xea\xd0\xd7\x9f\xbd\x26\x3d\xfb\x71\xc6\x78\xd5\x1a\xd7\x68\xff\xbe\xe6\xd7\xf3\x54\x87\x3d\x2b\x81\x67\x99\xf4\xec\x27\x1a\xd7\x78\x15\x18\xa3\x7d\xd4\xfa\x52\x72\x71\x0a\x74\x27\xbb\x0f\x51\x0a\x0b\x3c\x99\xa9\x2b\xf0\x8f\x4e\x41\x24\x75\x65\x6f\x65\xc5\x12\xfd\xb5\x06\xa1\x64\x6e\xf2\x98\x08\x90\xf6\x79\x9b\x01\x1f\xe0\x84\x4c\x8e\x0b\xe7\x49\x44\xdd\xee\x18\x00\x00\x54\xc9\x01\x97\x32\x39\xa8\xb9\x18\xb6\xed\x2a\xd7\x73\x8b\x5a\xc5\xc6\x46\x26\x12\x1e\x71\xe8\xe9\x28\x58\x24\xb6\xcd\x64\x05\xe6\xd7\x69\x1a\x6b\x94\xc4\xd9\x89\xac\xa9\xf0\x5b\xd4\x3c\x58\xd2\x3f\xb8\xa9\x88\xbe\x00\xb0\x37\x1b\xeb\x9a\x06\xd6\x49\xdf\x27\xab\x3f\x11\x9d\xc7\x4d\x73\x22\x63\x49\x9a\x60\xcd\xc6\xb7\x59\x98\x8e\x0e\x36\xbe\x4d\x2b\x06\x59\x5c\x10\xb7\x41\xa5\x25\x0b\x59\x30\x07\xbf\x97\x3d\x18\xd5\x1a\xef\xfa\xe5\x67\xd8\xe5\x2f\xb2\x17\x1b\xef\x8b\xea\xbf\xfc\xec\xbd\x8d\xf7\x7f\x51\x98\x9b\x5d\xd0\xc2\x4e\x9c\x96\xa5\x7f\x80\x29\x79\x9e\xe5\x61\x3a\x76\x42\x2e\x3a\x6a\x1d\xc9\x5e\x8b\xfc\x25\x64\x67\x61\x49\x9e\x8d\x79\xa0\xcb\xa3\x54\x5c\xbd\xae\x89\x09\x5b\x5e\xfe\x7b\x8f\xa7\x3b\x14\x4e\x8c\x64\x27\x26\x27\xb2\x23\x89\x70\xa8\xdb\xe3\x19\xf7\xf4\x4d\xec\x7d\x1e\x66\xb9\x92\xb7\xbb\xdb\x5b\xc6\x24\x36\x19\x7f\x65\xe1\x76\x36\xef\x76\x75\xf4\xf8\x00\x5b\xcc\xed\xee\xec\xea\xf5\xf5\x74\xb8\xdc\x0b\x8e\xbd\x37\x24\x90\x79\x4e\xf4\x78\x8b\x70\x2b\x24\x3d\x09\x35\x16\x0f\x49\x0e\xab\xee\x7f\x06\x32\xb7\x3e\x94\x72\x4b\x38\x0c\x9d\xa0\x80\x77\x93\x09\xe2\x11\x1f\x8b\x1e\x8b\x1e\x3d\xf7\x0f\xc9\x09\x9d\x7d\xed\xe1\x3f\x9d\x18\x7f\x2b\xfb\x33\x5f\xe3\xaf\x4e\x44\x8f\xde\xc7\xf2\xd1\xe0\xf8\x2d\xef\xff\x93\x4e\xc9\x63\xcb\x9e\x44\x49\xb1\x2d\x11\x4e\x2a\xe4\xaf\x84\xda\x28\xeb\x1c\xd8\x67\xe8\x0b\x20\xc2\x85\xb4\xa4\xe1\x09\xf2\xe8\x46\xa9\x74\x05\xd3\x1a\x1d\x42\xab\xde\x2b\x65\x68\x9e\x1b\x6f\x62\x03\xa5\xc4\xf5\x8b\x9a\x09\x8e\xb8\xc5\x12\x64\x4d\x16\x1b\xb0\x63\x46\x51\x09\xf7\x1b\x91\xe8\x68\x34\x62\x80\x77\xd5\x60\x66\x30\xcc\x05\x1e\x0a\xea\xb5\xfb\xc3\xfb\x7b\x06\x03\x83\xf0\xe9\xd9\x1f\xee\x1f\xef\x89\x06\xa3\xd1\xe0\x60\xf7\xf8\x1a\x2c\xc5\x9c\x22\xa6\xf7\x55\xa7\x19\x8d\xf0\x20\xae\xf7\x7a\xb2\xf8\x95\xcc\xe6\x13\xf0\x2e\x59\x1d\xdf\x07\xcd\xa0\x98\xc4\xc7\x13\xf3\xe3\x4b\xcb\xd7\xa4\x4b\x20\xa8\xdf\xe5\xa9\xf2\x37\x40\x1e\x9d\x3e\x48\xba\x13\x34\x94\x96\xc6\xf7\xde\x85\xf2\xd2\x93\x8c\x8f\x8d\x59\x92\x4f\xaa\xd2\x04\x21\x07\xe2\xb3\x91\xda\x84\x2a\xd1\x34\x1c\x75\xd3\x45\xeb\x1a\x5d\xc2\xca\xd8\xd4\xeb\x67\x7f\xf2\xe9\x5d\x33\xa1\xec\xd4\xdd\x3f\x74\x37\xd9\x8a\xb2\x62\x6a\x48\xd1\x80\x36\x45\x03\x52\xe0\x6d\xde\xcf\x8d\xdc\x6b\x4f\xdd\xbc\xfb\xae\xc1\xb4\x7a\x6a\xf2\xc8\xdd\x77\x1f\x99\xba\x91\xac\x43\x6f\xbe\x39\xb5\xe8\x4f\x87\x67\xd0\x3c\x8d\xdb\x8e\x02\x77\xd4\x15\xc6\x5f\x70\x99\x84\xc2\x4c\xb6\x41\x52\x4d\x5c\xbf\xf9\x1c\xc2\x5b\x86\xb3\x2a\x24\x10\xe6\x35\xf3\xd3\x31\x5b\x49\x80\x81\x58\xee\xc8\x2c\xb4\x47\x02\xb0\x2d\x61\x07\x27\xcc\x7c\x6d\xe6\xf0\xe1\x19\xd6\x89\xa6\x6f\xaf\x62\x4b\xbc\xf2\x0a\xb6\xcb\xab\x68\x08\xd5\xf8\x3b\xbc\x8a\xe5\x3d\x23\x19\x6c\x85\xd5\xd0\x3b\x31\x10\x73\x2a\x36\xca\x1e\xcc\xce\x39\x52\xaf\xe3\x83\x13\xe9\x86\x53\x72\x0a\x5b\xe3\x9f\x43\x43\x09\xff\xd8\xb0\x91\xd4\x1d\x53\xae\xc5\x78\xd4\xb8\x5b\x4b\x18\xc9\x14\x9b\x72\xcc\x45\xe2\x4c\xf5\xf8\x14\x68\xf7\xac\x67\x72\x52\xd6\x92\x13\x6a\xef\x48\x9f\xba\x7f\x68\x4c\x9e\x9c\xf2\x8e\x0f\x4d\x84\xfa\x87\x24\xf7\x36\x5a\x8f\xa6\xa7\x59\xd6\xda\x3b\xc1\x23\x92\x55\x4c\xb2\xd0\x30\x75\x14\xff\x33\xc5\x34\xd7\xec\x0f\x2b\x36\x4c\x49\xf2\xb7\xe7\xb4\x8d\xff\x54\x41\x5a\x84\x35\xf3\xa0\x24\x21\x17\xa4\xe0\x58\x81\x3d\x21\x90\x40\x8f\x77\xc3\xb1\xdb\x56\x8b\x58\x2b\x01\x79\xda\xe0\x26\x1c\x07\xac\x7d\x19\x6b\x52\xd5\x19\x81\xfc\x34\xd6\xf9\x01\x6c\x9a\x49\x5b\x5d\xd3\x75\x13\xb6\x1a\xec\xc8\xbd\x57\xc7\x03\x48\xd7\xc9\x25\xa6\x4e\x7e\x57\xdc\xaf\x8a\x0e\x48\x91\x42\xec\x95\x24\x29\xff\x82\x67\x39\x2a\x2d\x83\x47\xc7\x39\x6c\x35\x52\xfa\xd0\xe6\xb4\x70\xc9\xf0\x38\x67\x9d\xdb\x4a\xa1\xac\x70\x2c\x6e\xb9\x6d\xee\x61\x06\x56\x93\x68\x68\x7d\x0d\x13\xfa\xab\xf3\xda\x5b\x5f\x69\xd6\x75\x56\x81\x7b\xe8\x39\x78\x93\x50\x62\xe9\x7e\x4a\xf4\xcc\x6b\x74\xb1\x48\xa7\xfc\x16\xfe\xf0\xf4\x0d\xcd\x05\xb8\x70\x38\xf0\xa8\x1b\xd7\x1e\x84\x13\x6b\xe9\xf7\x65\x19\xb8\x57\x87\xd4\x90\xd8\x2f\x68\xa7\x35\xd2\xf1\x1f\x5e\x3f\xbd\x5e\x84\x09\x0d\xce\x49\xc7\x8f\xe7\xff\xc2\x9e\x80\x6f\x3f\x65\x3d\x6d\xc1\xee\x09\x50\xb0\x6c\x9d\x3b\xad\x37\x5f\xa0\x1e\xc1\x37\x5b\x79\x96\x87\x63\x3f\xec\xe1\xc9\x4d\xde\x46\xa8\x16\x43\x6d\xbe\x89\x0f\x05\x29\xbe\xf0\x22\xa4\x64\xd7\x6f\xeb\xcb\x4c\x6a\x26\x3a\x63\xcd\x46\xa0\xdf\x9a\x74\xb8\xce\x75\x68\x52\xb7\xf8\x1c\x3b\x3c\x03\xd5\x9f\xde\xb8\x20\xa5\xc6\xfa\x05\xf0\x54\xe8\xc9\xf8\x94\x4e\xab\xce\x01\x3a\xa3\x7a\x43\x85\xaa\x55\xad\x5a\x05\x32\x80\xaa\x02\xfc\x12\xa4\x54\xe7\x0a\xaf\xa1\x09\x5f\xc3\x07\xeb\xc6\xe8\x3b\xd3\xaa\x6c\xdd\xae\x29\xfc\xfd\xcb\xda\xdc\xee\xa9\x2a\x6f\x47\x6a\x73\xbf\x75\x0d\xeb\x86\xb8\x6d\xf4\x2e\x44\xdd\xa6\x70\x2e\xdb\x3d\x53\xb3\x3b\x21\x1c\x35\x4c\xfb\x54\xb3\xff\xec\x1e\x49\x5d\xac\x8e\x7d\x91\x9e\x08\x76\x5c\x89\xc8\x3b\x5e\x83\x7f\x4f\x4f\x6d\xdf\x23\xc9\x3b\x3c\x8f\x14\xb0\xfa\x03\x9a\x2a\xe2\xbc\x94\xa6\xf6\xe5\xfd\xa3\x06\x9d\x60\xad\xb1\xce\x67\x28\x5e\x11\xa6\xf0\x9c\xb9\xd3\x7a\x03\xba\x86\x46\xdd\xff\x5f\xd8\x4b\xed\x1e\xd7\xec\x95\xb0\x21\xb2\x9d\x7d\x4d\xdc\x93\x7b\xbd\xd0\x6a\x29\xab\x55\x37\x9a\x2e\x9f\x1a\xbd\x60\x3e\x88\x69\x6f\xcf\x4d\xcc\xa0\xa7\x5f\x6b\xb6\x0b\x6f\x25\xf2\xe6\xa5\x4f\x89\x5a\xd3\x1e\xb2\xfc\x1e\xc9\x2b\x3c\x09\xd2\xf5\xb6\x3e\x2c\x49\x6f\x9a\x74\xb7\xfe\x94\xdd\x4f\x65\xab\x46\xb9\x56\x1f\x6c\x98\xad\x89\x14\x86\x0e\xf5\x41\xac\x89\x09\xd9\x37\x67\x48\xfe\xf7\x2f\x1f\xdb\xaa\xdd\x5a\x56\x8b\x30\xa8\x8d\xbb\xad\xc5\xe4\xb6\xd6\xa3\x56\x6b\xf5\x33\x8d\xe6\x72\x8d\xd7\xd3\xb4\xaa\x59\x6f\x9b\xff\x36\xf8\xcc\x27\x35\xbb\x10\xa3\x76\x2c\xda\x2d\x57\x84\xef\x85\x09\x8f\xce\xfe\xe5\x4f\x43\x23\xdd\xae\x25\x1f\xe1\xbc\x45\xad\x11\xc3\xf0\x7b\xe1\x69\x72\x74\xdc\x36\x6a\xec\x71\x43\xad\x4d\x22\x92\xe6\x45\xe1\x49\xa8\xaa\xcd\xb9\x0a\x9f\xbc\x39\x76\xec\x87\x10\x6f\xdc\x7e\x25\x0f\x20\x1d\x4a\xeb\x90\xe5\xe7\x09\xc7\x06\xe5\x05\x06\x20\xb8\x87\xad\x0e\x3c\x77\x4d\xd7\xac\x16\x32\xaf\x93\x93\x82\xb9\x08\x1b\xe5\xb4\x79\x63\x35\x71\x89\xb9\x4e\x5e\x7e\xcb\x5f\xd5\x46\xec\x14\xf2\xb2\xfd\xb3\x6a\xf6\xd4\x60\x42\x7a\xdd\x27\xdc\xae\x5e\x26\x93\x20\x33\xca\x6b\xbb\x8a\x91\xc6\xc8\x64\x4f\xb2\x2a\xb7\xec\xb4\xe5\xe5\x84\x2f\x48\x47\x6a\x88\xe8\x5f\x3f\x32\x89\x2c\xd1\xd3\x0f\x78\x02\x06\xd2\xb4\x0b\x93\x13\xc3\x1f\x7a\xf7\xc8\xcc\xcb\x40\xfe\x1a\x35\x03\x6d\xdf\x95\xb9\xe1\x29\xa6\xcf\x1e\xb3\x31\xf2\xaa\x64\x1d\xe3\xa7\xda\xa5\xd0\xb5\x39\x9b\x55\x49\xbd\x52\xc8\x9a\x4c\x7f\x6a\x78\xa2\x37\xb7\x67\xb7\x87\xcd\x45\x1f\x4f\x1a\x73\x1f\x64\x15\xe3\xf4\xf8\xc8\x1e\x97\xbb\xf1\x4a\xf4\xf1\x1b\x9f\xfc\x20\x48\x3d\x84\x95\xb8\x87\x90\x3b\xf8\x5a\x8c\x35\xe2\xfc\x2b\x28\x3a\xb8\x23\x4e\x8a\x7b\xde\x14\xb2\x7c\x69\xae\xe8\xe0\x63\xa0\x74\x36\xbe\xf5\xb5\xfb\xde\xd3\xd9\x79\xb9\xb3\xdb\xd7\xf9\x48\x67\xe7\x1b\x73\x71\x58\xa6\xbb\xa6\x06\x91\x7f\xf5\x65\x7c\x13\xf7\x9e\xee\x8c\x74\x5c\x86\x1b\x3a\x22\xf0\x65\x8c\xfb\x38\xef\x65\x9f\x65\xbf\x44\x9a\x57\x8b\xeb\x24\xce\x23\xeb\x46\x63\xe4\x18\x98\x19\x2f\x44\x77\xa5\xa7\xf2\xcb\x83\x47\x99\xee\xfc\xe2\xee\x1e\xfd\x28\x7b\x5f\xe3\xb7\xa2\x0b\x89\xe5\xfc\xf0\xfc\xd1\x4f\xf4\x76\xff\xdc\x72\xdf\xfc\x93\x36\x15\xc1\x6a\xb6\x3d\x48\x00\xd1\xdd\x02\x84\xee\x86\xf6\x20\x5f\xbb\x37\x07\x78\xbe\xd3\xea\xbb\x07\xa6\x2f\x53\x95\xa5\x67\x76\x35\xea\x86\x61\x14\x25\xc9\xd3\xfe\x86\x49\xff\x2e\xd9\x33\x69\xda\xee\x37\x05\x1a\x80\xa0\xb2\xaf\xb7\xfa\x5e\xb1\x54\xdf\xa0\xf1\x6e\x52\xb7\xa9\x15\xd7\x42\xba\xfe\xbd\xe4\x18\xc0\xbd\x2a\x43\xe7\x16\x72\xac\xc2\x1e\x9a\xcc\xb4\xb3\xbc\x26\x61\x96\xc5\xb2\xae\x37\xd1\x2b\x09\x9d\x85\xbc\xd7\xb9\x74\xad\x90\xaa\x57\xf7\x1c\x9b\xc2\x8d\x55\x8d\xaa\x61\xa0\x2c\x2d\x21\x2d\xb3\x3a\x7b\xd9\x2a\x5d\xc1\x92\xa9\x8f\xd2\x3c\x98\x22\x0f\x1a\xe4\xe4\xea\xd4\xe1\xad\xad\x98\x3f\xb1\x9c\xcf\x2f\x9f\x80\xb2\x4d\x54\x08\x68\xeb\x27\x4e\xc0\x07\x9e\x25\x2f\x01\x77\xc0\x5e\xe4\xb9\xd9\x3e\x51\xe2\xc8\x1c\x69\xf3\x0b\x0e\x59\x7b\xf2\x0a\xb7\xb6\x67\x49\x5c\x28\x7e\x58\x05\x0b\x82\x4f\x9e\xce\x59\x00\x14\xa1\xfd\x83\x6f\xa4\xd4\xe2\x76\x6b\x4d\x6e\x57\x81\x52\xb3\x9b\x9f\x43\x6e\x22\x85\x02\xc7\xd0\x5a\x63\xf2\xb8\x89\x25\xd7\x57\x8d\x6c\xd6\xc8\xf8\x91\xfd\x35\x34\x45\x69\x3e\x60\x29\x14\x1c\x87\x8f\x61\x84\x4a\xb5\x50\x29\xd4\x19\xea\xe4\xb6\x98\x5c\xd2\x1c\x17\x38\x62\xe8\x92\x98\xf1\x16\xac\x08\xd3\xa8\x82\xb3\x2f\x38\x28\x2a\x36\xbc\x2c\x3a\x03\xb3\x6a\xb5\x86\x6c\xd6\x46\x51\xc1\x4b\xc4\x8a\x72\xbf\xa8\x0a\x43\x83\x4f\xee\x0f\x5c\xa0\x3a\xa7\xf8\x8e\xe9\x9a\x61\x6a\x1b\xba\x01\x04\x58\xc9\x34\x4b\xb8\x91\x3c\x95\xbc\xa0\x68\xae\x20\x6a\x80\x68\x0e\x18\xdd\x7e\xf8\x37\x6a\xe8\x5d\xa7\xac\x1a\x65\x26\x19\x60\xe7\x56\x35\xf0\x45\x4a\x4e\xfa\x15\xb5\x1c\xf5\x3c\xdb\x92\x8a\xc8\x44\xc8\x83\xe6\xa9\x2a\xd3\x56\x11\xc8\x12\xa9\x39\xc8\xe5\x1a\x64\x40\x35\xb4\x31\x6b\x49\x93\x07\xd3\x37\xfc\x67\x6d\xb3\x49\x4e\xf2\xb0\x1a\x61\x03\x57\x91\x77\xad\x52\xa8\x00\xf4\x61\x2e\x21\xe3\x0b\x70\x90\x92\xa3\x29\x61\xa3\x3c\x0a\x49\x42\xbb\x2d\x6c\xce\xa3\x8a\xfd\x0d\x8c\xd2\x29\x0f\x5c\x81\x2a\x1a\x98\xc7\x09\x79\x90\xe7\x34\x97\xa8\xf1\x3c\xe6\x45\xbe\x17\xf6\x24\x3d\xfd\xea\xea\x72\x7e\x7c\x69\x1c\x58\xb2\x22\xe8\x16\xab\x71\x5d\x8f\x57\xab\x79\x3e\x52\x8a\xf6\x48\x61\x4a\x0a\xe5\xd0\x49\xec\x25\xcc\xac\xac\xae\x56\xae\x49\x2f\x00\xfa\xa7\x51\x2e\x1b\xba\x89\x56\x37\x6d\x63\x35\xba\x19\x4f\x4a\x94\xe4\x89\xde\x60\x52\xcb\x84\xb9\x52\x2a\xad\xaf\x5f\xb9\xc2\x74\x51\x56\xf7\x3d\x79\x07\x13\xfc\xc1\x76\xde\xc1\x84\x7e\xd0\xee\x1d\xdc\x04\x3f\x10\x5a\x99\x23\xa2\x10\x92\x65\x53\x72\x39\x37\xcf\x94\x47\x1e\xa9\x54\x4d\x4b\x6e\x19\x46\x80\x14\x28\xa0\xa9\x36\x90\xdc\x6d\xf6\x33\x43\x68\xc5\x3d\x82\x02\x59\x4f\xc6\xf2\xf3\x0f\x59\xfb\x76\x04\x6f\x96\x3e\xb1\xd8\xfd\x47\xdd\x1f\xa7\x21\xfc\x0e\x4a\x7f\x4a\xb0\xb0\x79\x61\x2c\x99\xbc\x43\x18\xe5\xff\x49\xb4\xb4\xb1\xed\xcf\x48\xae\x1e\xe5\x68\x2c\x49\xe4\x59\x72\x6d\x8d\x4c\x3e\x1a\x40\x6f\x93\xbf\xe1\x55\x5d\x69\x39\x5b\x28\xfa\x5a\xa8\x5c\x06\x5d\xa5\xb9\xa9\xb5\x61\x9a\x2c\x97\xa5\x7f\x3d\x6b\x60\xbb\xcf\x10\x5e\x97\x54\x90\x93\x20\x56\x17\xea\x8f\x93\xc3\xcb\x27\x98\xb6\x72\x62\x93\x57\xc8\xab\x2b\xe6\x4a\x9e\x9f\x60\xfa\xbf\x8f\x35\x22\xfa\x86\x6f\xc6\xd0\xa8\x8b\xb8\x19\x55\x01\x2e\xe3\xff\xd4\x82\x9e\x50\x73\x2b\x64\xa3\x4e\xb8\xeb\x84\x63\x80\x02\xc7\x32\x98\xb3\x99\xc4\xe9\xd4\xaf\x5c\x31\xcd\x75\x9d\xe6\x50\x98\x7f\x98\x41\x48\xf3\x38\xf6\x60\x63\xa6\x8e\xbe\xe7\x12\xc5\x1c\x69\xa1\xf2\xd4\xa0\x17\x2c\x48\x12\x62\x7e\xa2\x5e\x7f\x38\x83\x6f\x09\x26\xab\x20\xc7\xe5\xb3\xc1\x0f\x0b\x73\xa0\xc2\xe4\x71\x3b\xc0\x0d\x28\x8f\x14\x02\x87\x3b\xfc\xad\xa5\x99\x6e\x3f\x03\xa8\xbd\xaf\x31\xf3\x9c\x93\xc9\x07\x95\x70\x5f\xef\x48\x30\xfb\xe3\xb9\x91\x2e\x67\x5f\x5f\xcf\x9d\x2e\x6f\x62\x78\x26\x1f\x8b\xff\x97\xf9\x91\xbe\x1e\xaf\xc3\xa1\xeb\xcc\xcd\xfc\xfd\x7b\x03\x1e\xa7\xdc\x3b\x34\xfb\xd8\x44\xc8\xe3\x45\x39\x2e\x73\xb2\x6e\x35\x0d\x78\x70\x83\x63\x2d\xdc\x40\x6e\x27\x49\x33\x50\x9a\xdb\x63\x72\xdf\x3e\x09\xc1\x1b\xca\x7a\x15\xbc\x7e\xea\xd0\xeb\x6c\xcb\x02\xba\x9b\xe8\xaf\xe6\xfd\x4e\xde\x50\xc2\xcf\x56\x31\x61\x8a\xb6\x06\x33\x5e\xa9\xb1\x8e\x69\x7b\x79\x44\x5d\x0a\x3f\x2c\xd1\x4f\x80\xcf\x6c\x96\x47\x6f\xd2\xb6\x13\xb4\x7b\x39\x4c\xb4\x16\x11\x49\x90\xee\x5c\x48\x51\xc6\x49\x56\x37\x8c\x69\x1a\x43\xdf\xc2\xec\x4c\xa6\xc0\x54\x0b\xd7\x10\x26\x1a\xd7\x42\x54\x02\x40\x1d\xce\x43\xae\x9f\x83\x3a\x04\xa5\x61\x4e\x8b\x89\x82\xc0\x02\xbc\x05\xf2\xa4\x6f\x89\x02\xdf\xc4\x0a\xd1\xa9\x40\xd2\x48\x8e\x83\x14\x70\x4f\xba\x67\xf9\xdc\xf1\x9f\x0d\xf4\xc4\x7b\xfa\x8d\x04\x8a\x02\xd9\xe7\x80\x4e\x9b\xf6\xcb\x5c\x0a\x18\x3c\x11\x5e\x3c\x9e\xf4\xc4\x65\x37\x17\x03\x4a\x0e\xbb\x97\xe0\xfc\x48\xab\x14\xa1\xd3\xd0\x03\x73\xe9\x99\x24\x79\x9b\x9a\x65\xa2\xea\x08\x63\x79\x58\xca\x48\xbb\xe1\x7e\x84\xd2\x20\x83\x5f\xd8\x60\x61\x23\xc1\x61\xae\xe9\x66\x25\xc3\x1e\x4d\x4e\xdd\x78\x42\x17\xe9\x4b\xe2\x8d\xfe\x72\x61\x30\xbd\xdc\x9b\x3a\x1e\x3b\x36\xbc\x62\x49\x0e\xd6\x61\xe3\x76\xcc\xe6\x3a\x4f\xfe\xe6\xec\x1b\xb4\x5a\xed\x2a\x49\x67\x74\xf8\x1e\x3e\x3a\xbf\xa3\x68\xdd\x41\x5e\xeb\xcb\x92\xce\x5e\x6e\xce\xf1\x84\x71\xad\xca\x69\xd8\x0a\x16\xff\x83\x4d\xc8\x56\x27\x62\x13\x8d\xaf\xc4\x26\x62\x6f\xd6\x34\x5c\xad\x4d\xf6\xf0\x44\x6c\x72\x32\x36\x11\x37\x0d\x98\xb8\x8c\xd5\x55\xae\xcd\x79\x85\xd5\x59\x5e\x8a\xda\x6f\x74\x38\x9b\xf2\xc0\x66\xfb\xf2\xaa\xb9\x79\xdc\xd8\x8b\x28\xc9\x1d\xe9\x5e\xea\x3e\x06\xdb\x88\x78\xc2\xf2\xa0\x18\x4a\xc0\x9f\xb5\x93\xda\x5b\x19\x6b\x85\x34\x3d\x30\x62\xd8\xce\x1b\xd0\xcc\x3c\x72\x4f\x99\xbd\x62\xd3\x19\x36\xba\x64\xd6\xa2\x33\xd8\x2b\x40\x21\xac\xb3\x50\xd9\x28\x33\xa4\x33\x8c\x32\x11\x1a\xa2\xb6\x67\x18\xfd\xf5\xd3\x5c\x56\xcc\x6b\x9a\x41\x29\xae\x87\x46\xac\xc2\x9f\x24\x04\x9a\x89\x66\x18\x89\xd8\xc1\x8b\x0b\xd1\x81\x09\x87\xe6\x58\xdc\x35\x94\xbe\x79\x97\x3a\x98\x77\x69\xce\x83\xbb\x1e\xa1\x45\xe4\x2d\xdd\xf3\x7b\xd5\x9e\x68\x6f\x70\x74\x57\xaf\xa6\x79\x52\xd1\x85\x50\x77\xb2\x5b\xc1\x33\x3b\x9e\x05\x6b\xda\x7f\xcb\x34\x5e\xa8\xa6\x65\xa6\x5d\x36\x2e\x33\x4e\x08\xf1\x16\x35\x69\x35\x48\x5b\x96\xb4\xd4\xaa\xad\x99\x3f\x98\xe3\xc3\x85\xec\x6b\xe9\x8a\x7e\x68\xe6\x55\x1c\x30\x2f\xa3\x84\xfc\xc5\x97\x3a\x3a\xbe\x88\xc3\xe6\xd5\xf8\xf8\x78\xfc\x95\x57\x66\x7e\xcd\x16\xb1\xeb\x0a\x08\xeb\xd1\x2f\x5b\x62\x4d\xdb\x9e\x7e\xf2\x4a\xe0\x24\x22\x31\x4b\xe8\x86\x11\x62\x1f\x1b\xdb\xbd\x6f\xbc\xb1\x91\x5f\x3e\x30\xad\x9c\x9c\xd8\x7d\x81\x69\xce\xbd\xda\xf8\xbe\xe5\xfc\xcc\x71\x77\x76\xfa\xb8\xd8\x8a\xfd\x52\xa4\xc9\x0f\xce\x71\x57\x0e\xaa\x58\xb3\xd5\x56\x48\xe7\x3a\x9b\x8a\x4d\xc8\x4e\x34\x0e\x74\xf2\x40\x1c\xf0\xb2\x53\xb9\xf4\x20\x03\x63\x42\x3b\x1e\x87\xe0\x47\xea\x96\x06\xb8\x0d\x76\x56\x4e\x6f\xad\x5f\xfd\xbd\xb1\x07\xc7\x63\xac\xbf\xad\x96\x95\xf7\xc6\xde\x38\x1e\x3b\xb1\xa9\xaa\x42\x9e\x1e\xf2\xde\xa1\x61\xa5\x16\xb6\x79\xe8\xb2\x51\x32\xca\xed\x4f\xbe\x01\x8c\xcc\xda\xe6\x1c\x6d\x3d\x50\x95\x24\x9d\x3a\xbc\x49\xeb\x55\x30\xb4\x66\xb1\xac\xbf\xdc\x2d\xbb\xaf\x54\x4a\x00\xee\xf8\x54\x1a\xdf\xd4\x7f\x6c\xfc\x0d\x9a\xb2\xe8\xff\x94\x5f\x3e\x96\x63\xc3\x63\xbb\x27\xe2\xc9\x4c\x24\x71\x68\x26\xae\x26\xb2\x53\xd0\xde\x3a\x2a\x42\xfa\xd0\x8a\x45\x5b\xce\xcf\x9d\x70\xe8\x50\x85\x42\x22\xde\x9f\x89\x64\xba\x66\x0e\x75\xc7\xc3\xc7\xc5\xd6\xe2\x1a\x5c\x8b\x5a\xe0\x2f\x81\x57\x69\x9b\xb6\x63\x95\x48\x86\x8a\x1a\x5d\xea\xea\xc5\xba\xb0\xa1\xb6\x47\x86\xd8\x3f\x58\xc8\x74\x1a\xea\xd0\xf6\xe8\x5b\x5a\x33\x97\x45\x3b\xfc\xed\x5a\x53\x47\x5a\xb5\xf4\xa6\xf6\xe6\x04\xf2\xbd\xd2\x9e\x27\x5f\xa5\xb7\x59\xb7\xb8\xb9\x81\x86\x6b\xb5\xa9\x6f\x80\xa3\x8c\xb9\xed\xdd\x05\x52\xf0\xf1\xbb\x8b\x45\xbc\x5b\x2f\x99\x70\xb7\x10\x99\x08\xd7\x37\x95\xf4\x74\xa2\xbb\xb6\x2e\x3a\x2b\x55\x75\x72\x3a\x6f\x22\xf0\x09\x9a\x4b\xa5\x85\x92\x27\xfe\x3e\xa7\xb2\xea\x66\x23\x18\x53\x47\xa4\x46\x49\xc8\x48\x17\x7d\xae\x29\xf6\xc8\xf6\x78\x5f\x6d\xf9\x56\x16\xe7\x16\x39\x20\x95\x21\xe6\x5e\x09\x05\x54\x35\x10\xaa\x46\xd0\x27\xfe\xa2\x58\x8c\x50\xdf\x2e\x69\xa8\xdd\x1b\x78\x6b\xfe\x84\xcf\x59\x6a\xe1\x3d\xa2\x28\x93\x8c\xbf\xab\xe4\x81\xcd\x41\x1e\x61\xad\xb0\xed\x04\xa8\xee\x41\xb2\xd0\xb3\xbd\x9a\xc5\xfd\x26\x28\x79\x6e\xa0\xa3\xdc\xf1\xbc\xfe\xd0\xa9\xa5\x0b\xfa\xbe\xf1\x48\xc6\x60\x55\x62\x3a\x2a\x0d\x24\x81\x99\xfe\xfc\x1d\xa7\x2f\xe9\xe7\x97\xc6\xf7\xe9\x99\x08\xb3\xe2\xb6\xe9\x0c\xea\x44\xb8\x2e\x56\x99\x34\xb7\x24\x41\xd3\x3a\x29\x49\xdb\x14\x20\x5b\x15\x00\xb1\x76\x06\x66\x6e\x79\x53\x7d\x6a\x42\x71\x3a\xd5\x84\x99\x8f\x05\x5f\xb7\xaf\xd4\xac\x50\x6d\x53\xa9\x15\xac\x51\x79\x7d\xdf\x4a\x30\x75\xc5\xaa\x97\xd8\xdb\x9d\xa4\xb5\x46\xf2\x64\x1b\x9f\x76\x58\xfd\xd1\x9b\xdd\xa6\x60\xc3\x0c\x3a\x01\x0a\x41\xe8\xfd\x50\x62\x23\xef\xd3\x9a\x1b\xde\x8c\xb9\x98\x22\x95\x4d\x6a\x0b\xf2\x62\x45\x5b\xd3\x38\x12\x02\x19\xfa\x10\x57\x64\x28\x8a\x61\x73\x53\x42\x8e\xd1\xcd\xf6\x1b\x29\x85\xcb\x14\xae\x93\x27\x31\xb3\x36\x84\x12\xd0\x12\xba\x95\xab\x47\x40\x75\xb4\xe5\x86\x53\x96\x1f\x28\x6c\x05\x4b\x82\x83\x56\x99\x69\x2a\x86\xb6\x36\x26\x42\xc9\x21\xd1\x68\x96\xcb\x26\xa5\x1c\x85\x51\xc3\xbf\x88\x9f\x13\xfa\xe8\x34\xac\x31\xc5\x5c\x87\x39\xc2\x28\x69\x44\x87\x13\x96\x63\x8b\xcf\x40\x3b\x71\xd3\xd2\x29\x3b\xed\xd8\x4c\x5b\x4d\xd2\x89\x5c\x2c\xae\x11\x98\x17\x4f\xc0\xe5\x12\x1e\x4c\x28\xa8\x01\x19\x4b\xdf\xd7\x38\x7e\xb6\xff\xdf\x86\x14\xe6\x9a\x78\x85\xf7\x4c\x3e\xae\x6d\x3b\xb6\xb9\x9f\x7c\xf1\x52\x06\xc0\x5d\xc0\x40\xb0\x68\x44\x32\x6c\xe3\xa1\x53\x57\x22\x99\xaa\x8e\x01\x1d\x75\xc0\x0e\xbe\x72\x8a\xe7\xa4\x50\x4e\x43\x9b\x73\xda\x21\x37\xb3\x52\x14\xf3\x5b\x8f\x64\x74\x65\x73\x8e\xbe\x26\xa6\xf3\xf6\x72\xfa\xc5\x36\x9d\x75\xdb\x71\x01\xe6\x8b\x2c\x6c\xaa\xb5\x2f\xb4\x59\xab\x31\x34\xbc\x0d\xc1\xa6\xad\x61\x6a\x58\x67\x57\xc4\x38\x2e\x74\x19\x3f\x24\x41\xbe\xc2\xef\x12\x2e\x1a\x82\xd5\x1a\xc9\x3d\x7e\x91\x99\xec\x66\x8a\x56\x02\x0c\x84\x9c\xfd\x38\x58\x24\x9b\x70\x85\x76\x12\x45\xd5\x7a\x81\x1d\x67\x2f\xe0\x1d\x69\xb2\x77\x66\xc7\xe1\x9b\xd8\x9d\x9f\xa3\x14\xef\xf8\xa2\xf4\x2e\x56\x64\xef\x22\x4f\xbd\x02\xde\xf1\x45\xfa\xf1\x8f\x52\x4a\x65\x7c\x11\xca\x28\xd2\xf7\x59\x2a\x83\x7e\xfa\x45\x4a\x85\x78\x2f\x5e\xf2\x8c\x52\x79\x21\xb5\xc6\x37\x4e\xe2\x0d\x27\x99\xa2\xdd\x80\x07\x37\x34\x63\x04\x3d\x47\xfa\x23\xa2\xff\xb3\x74\xb3\x09\x65\x60\x59\x31\x53\xd7\xbf\x46\x07\x52\xb7\x85\xd0\x52\x6b\xa2\x6b\x73\xce\x87\x73\x03\x1a\xcc\x6a\x4b\x68\x09\x9b\x2b\xfc\x9f\xbc\x0e\xa9\xb8\x66\x7c\xb7\x37\xa2\x94\xae\xda\x12\x19\xae\x34\xab\xd0\x81\x2e\x5c\x34\x84\xb9\x8a\x28\x50\x6a\x8d\x4e\x1a\x23\x56\x73\x24\x51\xfd\xf5\x4b\xbc\x1d\x58\x98\x95\x4d\x7e\x68\xa3\xfa\xf0\x58\x63\x3e\x1e\x5b\x89\x9a\xb8\x80\x4e\xba\xa0\x92\xf8\x59\xba\xaf\xf1\x75\x36\x85\x02\xa3\x3f\xa7\x33\xad\x89\x6b\x57\xfb\xdf\x8a\xbf\x28\x35\x23\x22\x2e\x2d\x09\xf1\x17\xbf\x8f\x33\xb6\x6d\xff\x5e\x6b\x45\x95\xe3\x68\xa4\x49\xca\xcf\x9f\xc4\xb5\x1f\xa3\x28\xe9\x0d\x78\x0e\x9c\x75\x60\x72\xc6\xa0\xbb\xc2\x2f\x71\xfc\xa5\x5a\xb6\xc5\x4e\xaa\x0d\x7f\x7b\xed\x35\xe2\xf1\x5f\xaf\x40\xbd\x38\x10\x59\xab\x6e\x65\x42\x17\x60\xb1\xab\x57\x1b\x1b\x58\x39\x02\x65\xa0\x44\x72\x08\x75\x0c\x8b\x4f\x9b\xdf\x9c\x79\xaa\xfd\x79\x31\x7a\x61\xbd\xb1\xa1\xeb\x8a\xf0\xc4\xa2\x4c\xd1\xd6\xd8\x23\xae\x54\x73\x8e\x6f\xca\x17\x31\xf7\xe6\x24\xc5\x05\x5f\xb4\xd1\xdc\x2f\xe7\x2d\x90\xd0\xf2\x3a\x39\xd6\x84\xfd\x24\x7b\xf4\x87\x37\x9f\x54\xb5\xa2\x59\x59\x5f\x37\xb7\xf9\x8a\x4e\xc8\x84\xdf\x34\x9b\x72\x8a\xff\x0a\xf5\xf3\x11\x1d\x87\x81\x23\x9c\xf9\x24\xe9\x77\xd0\xbd\x22\xb5\x71\xe5\xfc\x79\x86\xc1\xf8\x6a\xfb\xce\x5f\x61\xff\xf5\x73\xfb\x57\x1a\xff\x0f\x46\x03\xbd\x87\x3d\xe8\x5d\xd9\x2f\x39\x05\xbb\x58\x59\x52\xb9\x55\xec\x76\x3e\x61\xec\xd2\xab\xff\xbe\x44\x5d\x69\x0d\x13\x93\xe9\x0d\x7c\xa9\x0c\x66\xd6\x06\x5d\x61\xa5\x48\x46\xe2\xf9\xf1\x75\x89\x24\xaf\x94\x5f\xd3\xa7\xba\x3d\xcf\x62\xed\x1c\x49\x15\x1f\x41\x36\xa8\x8a\x09\xe5\x5b\xe4\xea\x83\xcf\x83\x49\xd3\x15\x64\xdb\xd8\x6a\x28\xf1\x83\xf6\xb9\x20\x5d\x59\x0a\xf2\xff\x53\x98\x89\x14\x9a\x85\x24\x66\xe7\x9e\xcd\xd1\xb4\xc3\x0b\x60\x64\xed\x47\xa5\x80\x52\x0b\xdc\x6d\xd9\x06\x96\xe2\x32\x26\x8b\x3a\x96\xf3\xad\xc6\x77\xce\x30\x7d\x38\x3a\xdb\x78\xb7\xde\x99\x65\xbf\xd9\xf8\xb6\xce\x0e\xb1\x22\x15\x69\x5c\x79\x50\xbf\xb9\xc3\x97\xfe\x16\x3b\x76\xa6\xf1\x4d\xb8\xc7\xd8\xe8\xf5\x65\x0f\x6c\xd5\x2f\xc5\x81\xb2\xcb\x6d\x96\x5b\xa7\xdb\xdd\x6c\xc9\xc3\xc5\x66\x9e\xd4\xe6\x01\x33\xf4\x84\x96\xd0\x99\xd2\x92\x67\xd7\xf5\x19\xc0\xc8\x4d\x28\xfe\xd8\xe8\xd8\xcc\xd8\xcc\xf4\x98\x7f\x62\xef\xd2\x84\x65\x00\x52\x8e\xf8\xc9\xa2\x1a\x92\x62\xf1\xdd\x7e\x05\xee\xea\x1e\x19\xf1\x4f\x4c\x48\xcd\x78\xca\x7c\xbd\x8c\xb4\xea\x93\x0e\x6d\xae\x4b\x32\x5d\x80\x51\xa3\x6b\x6c\xb1\xab\xd7\x2e\x94\xf9\x1a\xdf\xec\xad\x60\x09\xcf\x38\xd5\xee\xcb\x56\x11\x6f\x18\x6d\x62\x95\x6e\x10\xad\x81\x5c\xb6\x0a\x79\xa1\x39\x1e\x4c\xe5\xf3\xf3\xe8\x40\xa8\x30\xa9\xf6\xc6\xb3\x67\xdf\x58\x5b\x3c\xeb\xad\x40\xef\x2c\x99\x37\x7f\x20\x18\xfc\xc0\xcd\x66\xe5\x4b\x81\xfb\x0f\xfe\xd2\x81\x27\x24\x49\x6e\x4a\xcc\xc5\xb5\x3c\x2d\xc4\xb8\x12\xf6\x24\xf7\x0f\xd8\xa4\x58\x81\x38\x5a\x14\x13\x91\x19\x97\x09\x6d\xc5\xb8\x64\x1d\x03\xa1\x81\x7a\x0e\xbe\x31\x8b\xf4\x47\xe6\x27\x46\xd3\x36\x38\xfc\xfd\x41\xc3\x73\x09\xb8\xa5\xbd\x84\x4f\xbf\xc5\x2f\x2c\x40\x3c\x2a\x9e\xb4\xfb\x52\xfe\x15\xcd\xf2\xc1\x0b\xfb\x40\x72\x4d\xd8\xfe\x90\xed\xc5\x66\x71\x16\x22\xe3\xbb\xf6\xe1\xf7\x4c\xe5\x10\x31\xda\x26\x1f\x03\x77\x53\xba\xe9\x6d\xc5\xad\x0b\xd8\x31\xae\x42\x5c\x49\xd0\xc2\xa5\xb1\x2b\xd2\x5e\x0f\x58\x16\x20\x82\x07\x85\x5b\xee\x46\x07\x9e\xdc\x7d\xc3\x11\xa8\x4c\x78\xaa\x4f\x55\xfb\x7e\xa6\x2f\x14\xea\x63\x95\x06\x32\x8e\xac\xf8\x85\xf1\x04\xdc\x97\x80\x7b\x72\x47\xfe\x3a\x3c\x32\x30\x30\x72\x48\xed\x6b\x7c\x8d\xee\xc9\xf5\xa9\x42\x9c\x0a\xde\xa6\xb6\x5f\x53\x3b\xea\x3f\xf7\xc0\xe2\x0d\x49\xa1\xfe\xda\xb0\xb6\xb0\x67\x49\x84\x63\xd3\x9c\xcd\x92\xc2\x6c\x26\xe4\xf6\xef\x1b\x5f\xfd\x8d\x52\x15\xe7\xad\x6b\x12\xa6\x65\x56\x6c\x54\x71\x3e\xab\xc3\x7c\x46\xd3\x1c\x83\x94\xf8\x53\x3b\x47\x7b\x3e\x4b\xb6\xcf\x67\x62\x1d\x6b\x1f\xa0\x09\xed\x0b\x38\x97\x35\xea\x98\x52\xce\xdc\xfd\x82\xfd\x01\x5c\x5c\xc5\x8b\xec\x4a\x28\x2e\xb9\x9a\xb2\x50\x37\x8f\xbd\x40\x48\xc5\x7c\xf9\x43\x1e\x91\x64\x5b\x96\x39\xb3\x74\x78\xe5\xc8\xc6\xf4\xe1\xc3\xd3\xb8\xc1\x31\x93\xac\x83\x0d\xfb\x8b\xcd\xd8\xf5\xf4\xec\x3b\xc4\x87\xa8\xb5\x3b\x85\x55\xb6\xf5\x03\x23\x49\x23\xcc\xb7\xe4\xa5\x10\x80\x1e\x1a\xe4\xcf\x4d\x16\x7c\x64\x2b\x90\x53\xb9\xfb\xe0\xab\xfb\x95\x35\x65\x3f\x26\x2c\x4f\x2e\x86\x93\xff\x61\xee\x89\x27\x66\x3f\x3b\xfb\xc4\x13\x22\x6e\xec\x80\x15\xab\x2d\x2b\x93\x9a\x3b\x6f\xd9\xdf\x92\x79\x2a\x2b\x17\x29\xd2\x5c\x29\x30\x00\xfd\x77\x20\x50\x2d\xef\xbf\x78\x71\x7f\xb9\x78\x48\x4e\x90\xd7\xac\x92\x90\x0f\x71\x3e\x05\x72\x62\x46\x73\xcc\xf3\x18\x9e\x7c\x23\x6b\x69\x56\x04\x18\x36\xf8\xac\xae\x62\x84\xfd\x9a\x6d\x57\x86\x1a\x32\xb1\x8f\x45\x61\xcc\x15\xb6\x5f\x43\xec\x8e\x5f\x40\xab\x69\xac\x2a\xd9\x4d\x67\xed\xf1\xc1\x97\x96\x5a\x71\xd5\xdb\xd3\xe3\x35\xd1\x2c\xfc\x51\x7a\xe5\x27\x42\xa1\xa2\xa2\x58\x21\xe1\x98\x69\x02\x40\x68\xb7\xb7\x0e\x37\x41\xd2\xfd\x55\x7a\xff\x77\x66\x82\xd1\xc1\x60\x26\x13\x18\x1a\x0c\x64\x80\xdc\xd3\x6d\xf9\x84\x4b\xc0\x7e\x44\x8a\x0f\xaa\x2b\xb5\x61\x4d\x66\x05\x99\x45\xfb\x4a\xc0\x7e\x18\x35\xec\xfd\x07\xa8\x1e\xdc\x4b\x9d\x29\x62\xfc\x05\xd2\xc0\x9f\xa5\x34\xcc\xe3\x1e\x54\x88\x23\xa4\xe4\x5f\x39\x86\xed\x16\xc4\x2f\xc9\x72\x60\xda\xa2\x97\x34\x68\x26\x5b\x11\xbd\xfd\x23\x34\xf7\x6d\x6c\x52\x41\xda\x58\x97\x94\x63\x84\xfb\x20\xcb\xb2\xaa\x6e\x87\x73\x3d\x7a\xe1\xc2\x28\x6e\x15\x1b\xdf\x1a\xf7\xff\x7d\x94\x5f\x66\x46\x3b\xa2\xf5\xf7\x8e\xf7\x64\x5a\xfa\xed\x5e\x7e\x9f\xd2\xc2\xeb\x54\x99\x54\x29\x32\xd7\x7c\x1a\x51\x1d\xfc\xbd\xac\x66\x6c\x8c\xcc\x00\x9a\x83\x47\xea\xb1\x5b\x62\x5b\x6c\xf7\xf3\xd2\xeb\xa4\xfb\xa4\x07\x25\xc9\xb6\xc5\x50\x67\x31\x0e\x58\x7e\xae\xbd\x9d\xdc\xfc\x7a\xf3\xfb\x2c\x6c\x39\x38\xb6\xed\xda\xed\x73\xb9\xfd\x3e\x6b\xdf\x8e\x1d\xcf\x86\x91\xa6\xee\x0e\x75\x76\x76\xdd\x2b\xb6\xbd\x01\x17\xba\x60\xcb\x43\x1a\xa0\x5b\xf0\xca\x32\x9c\x9d\x80\x6d\x1e\xb6\xfd\xfd\xdd\xdd\xf4\x05\xa4\x1b\x74\xb4\xd4\x85\xb7\x88\xaf\x2b\x85\x99\x14\xf1\xb2\x89\x49\x82\xee\x1e\x6f\x9e\x1b\x98\x54\x3a\x31\x53\xca\xe0\x4e\xfa\x5e\x92\x7a\x9a\xb3\x08\xb5\x15\xe9\xb7\xc7\x60\xdd\xda\x25\xed\x97\x8e\x4b\x37\xc0\x4c\x75\x9b\x74\x0f\xb4\x95\xf5\x1c\x99\xb6\xbd\x3a\x0c\x4d\x10\xb4\x5b\x02\xad\x75\xdc\x76\x2b\xed\xf0\x0b\x24\xa2\x1d\x42\xab\x88\x7b\x16\xe3\x4f\x29\xa4\x06\x36\x0d\x6c\x8d\x57\xb8\xd1\x28\x1c\xfe\x18\x71\x2d\xb7\x09\xf6\x31\xcb\xcc\xe4\xac\x8c\x4f\xf8\xaa\x42\x19\x1c\xf7\x51\x4a\xf9\x9d\x0f\x85\x4a\x98\xd7\x65\xfd\x35\xca\x94\xb7\x24\x8d\xde\x83\x94\x51\xe3\x1f\xd0\x7c\x80\xee\xbd\x83\x7e\xf7\x00\x5d\x86\x29\x5a\xca\x4b\x10\xc3\x88\xbd\x22\xb9\x2d\x9f\xe8\x24\xf5\xa9\x9b\xa4\x8b\xd2\x9d\xd2\xaa\xf4\x26\xe9\x09\xe8\xa9\xef\x96\xde\x23\x7d\x58\x7a\x11\x79\x2f\x25\x38\x9c\x0f\x35\xfb\x17\x74\x87\xb9\xcc\xa6\x6b\x23\x74\x66\xf7\x24\xf2\x48\x15\x90\xe9\xb2\x4d\x44\xb2\xd6\x55\x95\x67\xd3\xbf\x43\xd3\xb5\x8c\x11\xf2\x73\xb3\x4a\x96\x5e\x4b\x8e\x52\x19\xe5\x94\xfc\xde\x94\x1d\xae\x20\x1f\x0a\x1d\xa0\xa6\x5a\x85\xe6\xb8\x62\x9f\x30\x98\x6a\xff\x2b\x35\xfc\x0b\x51\x76\xcb\xe0\x69\x86\x2d\x01\x31\xec\xf6\x38\xfa\x7d\xdd\x81\xbe\xae\x3d\x0c\x1b\xa5\xc3\xf3\x29\x68\xbc\xfb\xe1\x68\xf3\xe7\x8b\xf4\xbe\x20\xd2\xc2\xdf\x59\xbd\xb7\xb7\xb3\x8f\x61\xfb\x75\x77\x50\x9e\xaf\x42\x9b\x1b\x74\xeb\x52\x28\x74\x15\x9a\xdf\xa0\xf6\x77\x34\x2f\x33\x39\xda\xf8\x54\xf4\x8c\xc3\xd5\x41\x95\xd9\xd3\xd5\x17\xe8\x86\xef\xf7\xc0\x05\xfc\x3d\xfb\x9f\xa1\x10\x4b\xd0\x9d\x77\x0a\x5d\xf8\x13\x74\xe5\x3c\xe4\xf2\x7c\x08\xfe\xd6\x58\x5f\xa7\xbb\x1b\xdf\xff\x0a\x7d\x21\x49\x03\xf6\xbb\x6b\xce\x06\x69\x69\x42\xca\x01\xa7\x79\x10\x74\x92\xe7\x00\xc3\xfa\x2e\xe9\x7e\x98\x0f\x2e\x4b\x4f\x4a\xef\x80\x48\x9b\xef\x97\x3e\x24\x7d\x42\xfa\x8c\xf4\x13\x92\x24\xb5\x59\x69\x79\xda\x1a\x9e\x5e\x49\xf3\x8c\xbf\xf5\x4c\xdb\x6f\xda\x67\x81\xf6\xc8\x11\xfc\x55\x39\x85\x3e\x52\xa0\x2b\x9e\x4d\x2f\x74\xc4\xae\x01\xdd\x31\xbf\x43\xde\x2c\x26\x0c\x8a\x7d\xd4\xea\x5e\xce\x07\xc2\x2b\x71\xd0\xfb\x79\x31\x14\x5a\x82\x83\xed\x3e\x3f\x4a\xb7\x8e\x35\x27\xa9\x2e\xde\x37\xfe\x0e\x76\x8c\xf7\x8a\x50\xa8\xc1\x07\xdf\xbc\xdd\x65\xc4\x0f\x5b\xa6\x82\xf9\x50\xba\x81\xae\x7d\x99\x8e\xff\x7b\x28\x74\xa2\xf9\x96\x6a\xc2\x80\xfc\x84\xf0\x36\x55\xba\xf5\x39\xbb\x83\x34\xa0\xe4\x0a\xdc\xfe\xaa\xf8\xdb\x55\x3a\xba\x09\xaa\xa6\x6c\xf9\xbd\x60\xeb\x21\x44\x6d\xd3\x69\x6e\xfc\x2c\x4d\xb4\xb4\xea\x70\xce\xa6\x9b\x34\x0a\xa4\x6d\xa5\x50\x5c\xf3\xf5\x9b\x9f\x7e\xfa\xe6\xdd\xd3\x33\xbb\x76\xcd\x4c\xb3\x3a\xdc\x3c\x38\x78\xd7\xc3\x77\x0d\x0e\xd2\x0a\xa4\xb3\xca\x76\xbf\xa9\x5d\x78\xfa\xe9\x0b\xc3\xb1\x03\xe7\xce\x1d\x88\xd1\x6f\x3a\x82\x0f\xfd\xd0\x43\xc1\x0e\x01\xe7\x01\x7c\x38\x6d\x1d\xd9\xb0\x4c\x41\xe2\x42\xed\xc8\x17\x1c\xef\x21\x12\x4d\x8e\x41\xc0\xe2\x5f\x17\x71\x29\x90\x06\xf4\xf5\xee\x3b\xb9\xaf\xd7\xf7\x9b\xff\xf7\xa3\x52\xfc\xab\x21\x72\xd8\xeb\x55\x37\x47\x5e\x69\xd2\x6b\x2a\x42\xe0\x67\x65\xf8\xcf\xdb\x51\x72\x0c\xce\x32\x1b\xc5\x52\x05\xb6\xa2\xc1\xc5\xfc\xcc\x67\xdc\x81\xe4\xc9\x7b\xc0\xaf\xef\x3f\x63\x52\xda\x8f\xe7\xa4\x7d\x6b\xda\xfd\x84\x24\x89\x5c\x6d\xc9\xf4\xc7\x35\x6b\xa9\xe6\xd1\xc9\x8b\xfd\x82\xc7\xf3\xa5\xc5\x2f\x81\x05\x50\xe3\x3f\xc3\x88\x4d\xcd\x25\x7b\xa3\xec\x63\x70\x8a\x17\x3d\xdf\xca\x44\x52\xb3\x3a\x74\x66\xc9\x23\xf4\x47\x1f\xac\x20\x61\x29\xc6\xd1\x84\xe7\x09\xae\x23\x9b\x83\x89\x19\x34\x88\xe8\x3e\x47\x5a\x5b\xb0\x42\x06\x95\xa6\xcc\x65\x0d\xdf\x70\xdd\xa8\xdc\xb8\x78\x52\xf9\xe2\xef\x9d\x9a\x3c\x98\x78\xe0\x45\x17\xfb\xb4\x6b\xe1\x5e\xcf\xbf\xc7\xd3\xff\xe9\xc0\x6f\xc2\xd3\xf2\xb3\xa9\x67\xa6\x2b\xcf\xf8\x8f\x5e\xfb\xc5\xc0\xc0\xb9\x51\xd8\xf6\xfe\x64\x97\x02\xe7\xa7\x1c\xcf\x4c\xbb\x6d\x0d\x20\x95\x1f\x15\x25\x82\x81\x9c\xba\xc5\x8a\xcc\x66\x4e\xbf\x49\xdc\xaf\x6e\x66\x0f\xb5\x24\xb9\x87\x52\xa3\x0b\xa3\xa3\x0b\x15\xce\xf9\x32\x4d\xe4\x0c\x7f\x13\xbf\x19\x25\xbe\x5b\x62\x15\x87\xc4\x91\x2d\x48\x3f\xad\x10\x0f\x92\xcf\x37\x35\x4e\x72\x5e\xd4\x0f\xd9\x56\x73\x48\xfe\x57\x20\xc4\x10\x96\x74\xc5\x00\xfb\x0e\x03\x8f\x9e\x22\xfc\x6d\xe0\x35\xea\xaf\x62\x90\xa1\x57\x75\xeb\x4d\xa2\xb3\x01\x7f\x8b\x55\x1e\xe3\xe6\xaf\xc8\x47\xd2\x2e\xdd\x4b\x68\x80\x12\xb3\x9e\x34\x54\xd8\xa1\x70\x34\x0a\x86\xea\x63\x19\xe1\xa7\x37\x97\x7c\x05\x0a\x35\x23\x54\xbc\xb9\xa5\xd0\x46\x51\x93\x64\xeb\xbd\x6e\x6c\x92\x8f\xe4\xda\x35\x1c\xcd\x3d\xf9\xa1\x6c\xc2\x33\xc2\xc4\xc2\x77\x63\x55\xcb\xac\x06\x77\xa5\xb5\xb5\x88\x9f\xb4\xc3\x21\xf2\xc8\x04\x56\x03\xfd\x11\x6a\x9b\x3f\x4c\x69\xd4\x48\xe4\x00\x0a\x44\xb2\x9a\x55\x22\x82\xe5\x3d\x47\x37\x48\xe1\x1b\x48\x6f\x81\x34\x90\x6d\x14\x03\xd9\x56\xf0\x34\x57\x8e\x0a\x21\xd3\x03\xcf\x54\xac\xd3\x11\x1e\x7f\x8c\xa3\x8b\xd0\x65\x56\xc4\xab\xba\x4e\x27\xf5\x22\xde\x53\xe1\xf0\x22\x1e\x91\x82\x24\xa9\x87\x26\xe5\xb6\x62\x99\xa9\xdf\x43\x6d\x78\x94\x24\x2f\x15\x7b\x75\x9b\x0a\xd5\x79\xec\x23\x2a\xf7\xe7\x76\xaa\x96\xc8\x09\x79\xf9\x0c\x1c\xc8\x59\xcc\xd5\xb6\xe6\x87\xba\xc6\xf9\xab\x9a\xc1\xa4\xd2\xbe\x2f\x89\xdc\x15\x33\x89\xbd\xaa\x16\x57\x4f\x45\xed\x6b\x61\xbf\x24\xb4\xb7\x4d\x53\xcc\xb5\x38\xcb\x8c\xc0\x61\x8a\xfb\x02\x9f\x45\xc8\x2d\x94\x8e\x70\x04\xb0\xd7\xd3\xaa\x3b\x41\xe9\x79\xe1\xb8\x72\xea\xa1\x7d\xe3\xe9\x9e\xfe\xbe\xfe\x9e\xd3\x97\x2e\x31\x49\x20\x53\xf9\xe7\xf5\x74\xe5\xc7\xef\x3e\x3a\xbe\x14\xe8\xee\x0a\xfa\x7a\xfa\x11\x7b\x93\xcf\x8f\xbf\x4d\xb2\x0a\x85\x5b\xb3\xa4\x61\x52\x51\x09\x3b\x0a\xb5\x50\x38\x9f\x7d\xf0\xc7\xc6\x7e\x8c\x9d\xea\xed\x3d\x38\x16\x8b\x7d\xe9\x9e\x5f\x89\xc5\xc6\x0e\xc2\xfc\x55\x86\xab\xff\x93\x5f\xfc\x95\x7b\xbe\x44\x17\x3d\x82\x4c\xb1\x1b\x64\x5a\x31\x51\x27\xae\xfa\xd1\x63\x4e\x0e\x80\x5e\x42\x10\x82\x10\x07\xb8\xba\x8a\x36\xd3\xba\xbe\x8a\x27\xb6\xd2\xbb\x66\x32\x45\x6f\xd4\x4c\x8c\xcd\xd9\xb0\x47\x94\xf4\x83\x40\xf0\x16\xe2\xc6\xf0\x3c\xb3\xc0\xc1\xb4\xf5\x47\x4f\x10\x63\x6f\x66\x08\x33\x49\x15\x4a\x60\x0e\x01\xa3\xae\x38\x99\xc5\x28\xae\xd9\x7f\x26\xde\xbe\x7c\xbe\x85\xb3\x37\x72\xe1\x78\xff\x64\xf0\xee\x27\xee\x0e\x4e\xf6\x27\xe0\x4b\xf8\x08\xf1\x13\x9b\x31\x0e\xdb\x25\x0a\x1c\x3f\xb6\x25\x40\xae\xae\xad\xd5\x05\x89\x41\x7b\x94\xce\x76\x7c\x84\xf6\x1c\xb6\x17\xd7\x89\x38\x33\x7d\x52\x98\xec\x55\x36\xa9\x50\x72\x01\xdc\x61\xd5\x2a\x0c\xda\x0b\xe4\x9b\x98\x22\x8a\x6e\x05\xda\x0f\x04\x9e\x5a\xa9\x51\xaf\x62\xc7\xe7\x96\xf5\x24\xa9\x16\xe2\x36\x5e\xff\x99\x2a\xed\x18\x21\x0e\x3b\x1e\xde\xf7\xde\x2e\xd0\x4b\xaa\x14\x95\x97\x12\x61\xd5\xff\x9e\xdb\xa5\xbc\x4d\x18\x5c\xc9\xb5\x65\x9e\x94\x98\x3d\x1d\x05\xec\x09\x2a\xcb\xa7\xa3\xbd\x0e\xdb\x10\x9f\x55\x70\x1a\xa2\xc9\xa5\xce\xc5\x50\x70\xc2\x6a\xb4\x6b\x54\xf1\x8a\xfd\x2d\x1e\x49\xdf\x97\x36\x73\x0a\x76\xd3\x5e\x92\xf0\xa9\x60\x6f\xa4\x6e\xf7\xe0\xda\xf2\xd5\xdd\xda\xa7\x37\xe7\xf7\x4f\xf7\x9c\xcc\x1d\xdc\xae\x05\x44\x8f\x81\xef\x55\xca\xde\x96\x89\x10\x6f\x71\xe7\xb7\x41\x56\xfa\x1c\x0f\x64\xa7\x5e\x4a\x23\xff\x05\x56\x67\x2f\x88\x71\x12\xed\x7f\xc2\xe7\x68\x6e\x2f\x60\xf8\x3e\x4d\x18\x1f\x0e\x4b\x73\x9f\x4e\x3a\x9f\x7d\xec\xb1\xc6\x6f\x31\x13\xa5\x46\x75\xb0\x9c\xfe\x3f\xb5\xdf\x16\x63\x25\x7b\xa4\x10\x8f\x71\xc2\x02\xdb\x88\xec\x02\x34\x96\xf8\xdc\x81\x8a\xd9\x90\x59\x6b\x51\x4d\x1b\xb4\xae\xeb\xdc\x9c\x99\xec\x0f\x04\x55\x41\x83\xe4\xa7\x1a\xb5\xa4\x49\x98\xfa\x64\x2b\x9e\xe6\x71\xf8\xdd\x39\xec\x73\x9a\x71\xb7\xa7\x51\xab\x56\xcd\xbf\x08\x8d\x8c\x98\x1c\x71\xda\xb4\x7a\x55\x82\xfb\x35\xa5\x67\x39\x9c\xb9\xcc\x9d\x7b\xe6\x0b\x64\x57\x9a\x1a\x56\x52\x60\xf4\x0d\xa8\x48\x6c\xae\xe4\x92\x5d\x7e\x75\xef\x5b\x7f\xee\xe6\xfe\x6e\xd9\xd1\x39\x38\x39\x39\x10\x46\x8b\xea\xe5\x9e\xae\x80\x27\xaa\x1e\x18\x49\xdc\x01\xd8\x39\x7d\xdd\xee\xc8\xcc\xc8\x40\xd8\xaa\x4f\x95\xea\xd3\xdf\xac\x8f\x2c\x4e\x8f\x55\xdd\xb8\x5b\x5e\xa7\xa9\x97\x6a\xa6\x59\x53\xae\x55\xbf\x3a\xc5\x07\x98\x86\xfa\x09\x3f\x52\x37\x57\x4f\xf6\x50\x05\xb9\x5d\xba\x1a\xb2\x9e\xa1\x4a\xc2\xcd\x75\xaa\xaa\xb7\xab\x33\xa8\xf4\x74\x4d\x0e\xf4\xf4\xf6\x87\xfa\xfb\x83\xb2\xda\xe7\x73\xf7\x74\xb0\x32\x2f\xec\x37\xa9\xda\xdd\xbd\x7d\xbd\xdd\x3d\x5d\x03\x23\x03\x3d\x6e\x00\x65\x97\x83\xa9\x81\x48\xd0\xdd\x87\xfc\xd7\x67\xa1\x26\x37\x43\x4d\x14\x8a\xce\x05\x85\x66\x33\xc3\x58\x08\x8c\x41\x95\xb0\xdf\xf3\x79\x79\x0e\x4b\x87\xa1\x4f\xa5\x73\xdb\x79\xa6\x77\xb9\x3a\xe5\x90\xdc\xe9\xea\x0a\xcb\x5d\x4a\x97\xef\x9d\x17\xf6\xfb\x65\x36\xd0\xd3\xd3\x37\xda\xd7\xd3\x33\xc0\x46\x47\xfd\x1e\x8f\xcb\xe5\xf1\xf8\x47\x77\x2d\xf4\xba\xfc\xfd\xa3\xbb\xe4\x87\x97\x22\x83\xe3\x8b\xf1\x3e\xb7\xc7\xe3\xee\x8b\xee\x13\xb4\x0f\x4e\x92\x14\x0d\xef\x80\x73\x43\x36\xd6\xe9\xa6\xd4\xb7\xc6\xa3\x1a\xd8\xc6\x4a\x57\xf4\x62\x63\x03\x35\x1c\xfe\x08\xf7\xd0\x2a\x89\x66\x4c\x38\x3b\xd7\xeb\x96\x12\x48\x28\x11\xb1\x35\x47\x09\x83\xc9\xa2\xad\xec\x79\x9e\x54\x15\x34\x7b\xec\x28\x76\x2e\x9b\xa8\xff\x2e\x62\xfc\x67\xbd\xba\xb9\x32\x45\x5e\x91\x0d\x1d\xbe\xd5\xb5\x81\x7e\xbd\x3f\xac\x95\xb6\xd6\xaa\x64\x57\x48\xa8\xd1\x00\xc5\x50\xc9\x43\x8d\x9a\x36\x46\x62\xa5\x60\xd7\x6a\x82\xed\xe6\x91\x32\xcd\xb2\x54\xaf\x40\x77\x77\x00\x8a\xa4\xaa\xb0\xb6\x1a\x6e\x60\xc5\x74\xac\x1b\xc1\x9a\x3c\x6f\xd5\xe4\x9a\xb4\xb5\x96\x52\xdb\x1b\x1a\x24\xeb\xc8\xeb\x35\x8d\x1b\xa7\x5e\x56\xdb\xb6\x4d\xd8\xbe\x93\x1b\x8b\x5a\x65\xe7\xc6\x78\xe8\xee\xe5\xd9\xb6\x12\x87\xa4\xcc\xf5\xfa\x44\xee\x7a\xfd\xa2\x5a\xd4\x74\x2c\x6b\xe7\x9e\x51\x04\x55\xc9\x76\x7d\xc3\x4f\x56\x40\x93\xe2\x9b\x20\x53\xba\xef\xed\x15\x14\xcd\x12\xe5\x7e\x9d\xe6\x37\x11\x7a\xda\xbc\x6e\xcb\xbb\x85\x76\x50\x49\x1f\x33\xc7\x11\xba\x6c\x74\x2e\x5e\x23\xde\x37\xae\xdf\x5d\x15\x5d\x27\xe8\xeb\x12\x55\xc3\xdc\xf6\xe5\x10\xb8\x00\xd4\xa9\x7f\x80\x50\xb1\xa1\x92\x3b\xbf\x27\xa1\xa5\x28\xe6\x12\x45\xb3\xe3\x3e\x87\xdf\xa5\x22\x5a\x11\x9a\x7c\xdb\xf2\x6b\x55\x70\x86\xb8\xde\x38\xf1\x08\xed\x21\x93\xe4\x7d\x97\x74\x80\xb7\x48\x56\x68\x15\x6b\x67\x37\xcc\xf7\xda\x3e\xd0\x42\x34\x68\x60\x5c\xf3\xd1\x73\x9d\x76\x22\x08\x83\x30\x1f\x3d\x09\xb4\xcd\xe5\x47\xd7\x6d\xb2\x9d\xde\xa7\xa0\xfb\xb3\x99\x6e\x82\xf7\xbb\x6e\x7d\x0d\x1d\x2a\x49\x83\x9d\xba\xf9\xf6\xf5\x44\x4b\x32\x30\x1b\xc6\xde\x16\x86\x59\x08\xc0\xc9\xbf\xb7\xda\xf1\xa8\xc7\x05\xd2\x62\xe7\x01\x94\x22\xdf\x0a\x70\xb4\x35\x46\x7d\x3e\xa5\xb6\xd5\x1c\x1b\x3e\xbb\x79\x44\xd2\x6c\x23\xd4\xb0\x44\x46\xb2\x86\x41\xea\x41\x48\x36\xec\x1a\x43\x8b\x9b\xc4\xde\x57\xc5\x4a\x56\x15\x9c\x4a\x15\xf0\xd2\x43\x43\x03\xc3\xae\xb2\x73\x13\x9d\x1b\x22\xfa\x6c\x6b\x0d\x65\x20\x1f\x2b\x95\x16\xb1\x07\x27\x65\xa6\x99\x9b\xe2\xc9\x57\xd7\x36\x73\xa9\x7d\xb4\x12\xe9\x24\x95\xfb\x9e\xf9\x71\x6e\x11\x51\xdf\x86\x13\xb7\x74\x88\x3f\xb1\x13\x13\x2e\xd8\xc4\xa9\x92\xb6\xd9\x4f\x40\x0e\x91\xcd\xf4\x77\xf5\x15\xd8\x3d\x32\x96\xd7\x67\x8f\x5c\xc7\x5b\x60\xaa\xeb\xf0\x78\x2a\xb7\xd5\x63\xc0\xe6\x29\x1d\x12\xd9\xeb\x0f\xf1\x08\x8d\xc0\xaf\x02\x13\xbc\xa5\x0b\x82\x28\xd2\x82\x91\x5c\x39\xb1\x7c\x07\x13\x61\xf5\x8b\x45\x06\xcf\xcc\xf4\xe5\xe5\xf6\x4e\x56\x2c\x4a\xcc\xd6\x2d\x53\x2c\x9a\x40\x12\x58\xeb\x2c\xd3\x6b\x0d\xcd\x5c\x19\xde\x43\xb1\xc2\xcd\xf0\x19\xc9\xd9\xb6\xd6\x5c\x7f\xa5\xd9\x61\x91\xa9\x5c\xaf\x97\x77\x48\xe3\xd2\x38\xfb\x26\xfb\xa6\x65\xed\x10\x26\x0d\x87\x0e\x54\x40\x01\xf9\x7f\xe4\x72\x0b\x28\x72\x94\x21\xcd\x81\x35\x90\x0d\x6b\x89\xd8\x5d\xd9\x02\x38\x6d\x80\xdf\x08\x1c\x84\xd4\x2c\x9c\xe7\x43\xb2\x07\x1d\xd7\x1e\x8f\xa5\xa7\xf6\xdd\x3f\x35\x12\xcf\xed\x7b\xd3\xa0\x47\xf7\x8c\xdd\x43\xef\xfb\x2b\x9e\xc1\xd8\x98\xe7\x06\xba\xc2\x6e\xe4\x27\xfc\xce\x74\x2c\xb7\xef\x96\x18\x7e\x91\xa6\xcb\xe5\xcc\xc4\x52\xee\x93\xd4\x7f\x8a\x94\xcd\x5b\xe0\xb6\xdc\x9b\xe8\xbe\xf7\x09\xf7\x21\xdd\x38\x23\xf9\xd9\xef\xb1\xef\x10\xa6\x4c\x93\xfb\x97\x51\xfb\x05\x96\x0c\xf3\x40\x22\x52\xe7\x20\xdf\x16\xe8\x23\x30\x38\x31\x46\x4f\xcc\xa1\xc2\x15\x4f\x36\x43\x2a\x32\x1e\xbf\x16\x08\x39\x2e\x54\x7e\x62\x22\xdd\x1f\x1b\x36\x8c\x0e\xaf\x23\x35\x34\x94\x72\x78\x3b\x0c\x63\x38\xe6\x90\x3d\x4e\xa7\x47\x76\xb4\x7d\x53\x25\x79\xd2\x4d\x99\xc3\xbe\x8e\xfe\xc5\x64\x3a\xed\x92\x7b\x3c\x80\x3a\x06\x58\x63\x9e\x1e\xd9\x95\x4e\x27\x17\xfb\x99\xcb\xc9\x98\xd3\xc5\xb6\xfb\x1e\xdf\x80\x38\x8b\x77\x89\xb6\xcf\x16\x92\x01\x7a\xb9\xc1\x96\x11\xa2\xbd\x20\x86\x32\x05\x1b\x81\xbd\x0c\xfb\x0d\xed\x63\x93\xb1\xc9\x4f\xc7\x26\x63\xef\xe4\x01\x51\x4c\x73\x08\x2e\x14\xb5\x2c\x5c\x62\xa6\x62\x9a\x6f\x83\x53\xf8\xc4\x7e\x8b\x5e\x85\x5b\x7b\x2b\x9c\xdc\x65\x9a\xef\x87\x4b\xe0\x2c\x67\x49\x6a\xfe\x88\xf8\x16\xf2\xad\x64\x39\x28\x97\x60\x1d\x0a\xc9\x9c\x9c\x73\xe6\x53\xec\xbe\xd9\xb0\x82\x10\xdb\xbd\x63\x87\x1b\x75\xe0\x65\x2b\x06\xbb\xed\x46\x0d\xe5\x8a\xb5\x6b\x52\x8d\xd3\xf0\x5c\xdb\xe1\xb6\x38\x27\x00\x31\x27\xe0\x71\xf4\x72\x63\xe5\xe4\xcb\xeb\xa5\xdf\x63\xa7\xa2\x17\x6e\x30\x56\x99\xbe\xeb\xe5\xc9\xb5\x0a\x00\xec\xdf\xfc\x8e\xda\xa9\xb2\x80\x10\x0f\x2f\x35\xc0\x0b\xac\x00\xa3\x70\xc5\x60\xf5\x35\xca\xbd\xa3\x29\x4b\xe2\x58\x8b\x7d\x52\x90\xd0\xa5\x75\x42\xe7\xb5\xe3\xb2\xe0\x16\x80\x0d\x01\x6b\xc9\xed\x23\xc9\xe9\x02\xcb\x4e\x24\x6d\xa1\xb5\x90\xc4\x92\x40\x79\xea\x18\x62\x0e\x18\xf1\xe6\xdc\x54\x84\xcb\x06\x0f\xb9\xb2\xc6\xe1\x58\x4c\xb6\xde\xd0\x18\xdc\x81\x37\xae\xa3\xc5\x2d\xbf\x2e\x49\x9d\xcd\x39\xd2\xb6\x59\x27\x54\x19\x8e\x1c\xc6\xfd\xd0\x73\x64\xaf\x41\x5b\x5e\xb9\x8e\xbf\x3b\xbd\x55\xf2\x59\x68\x3a\x52\x12\xee\x29\xc0\x48\x10\xbf\x4f\x2b\x86\xbe\xc5\x27\x5e\xe3\xf0\x37\xfc\x5b\x53\x83\xb0\x67\xe8\xa4\x60\xf2\x5b\x2b\x3a\xfd\x31\x43\x9c\xdb\xcd\x16\x8a\x93\x4e\xbe\x9f\x36\x3f\xde\x6e\xef\x20\xe8\x60\xda\xf6\x9e\xeb\xc5\xaf\x17\xee\xa3\x90\xf4\xe1\x07\x49\x1c\xfe\x20\x49\x67\x17\xe9\xf8\xfd\x5b\x23\xd6\xd3\xd7\x61\x56\xa5\xb3\x3d\x61\x4a\x49\x8e\xbe\xc8\xe3\xd3\x8b\xa9\xf0\x2d\xf4\x0a\xf8\x63\xdf\x62\xdf\xc2\xe8\x90\xd4\x2b\x60\xe5\x23\x39\xfe\x5e\xee\xeb\x95\xcf\x82\x2c\x1d\x13\x95\x3c\x55\xb1\x4d\x9d\x4c\xe6\xbe\xdc\x59\x37\x35\x70\x36\x49\x18\x01\x79\x6e\x50\xda\xdc\xb3\x62\x3c\xae\xf9\x4e\xc0\xa7\x54\x8a\xdf\x11\xff\x43\xf6\xd5\xa8\xde\xf8\x02\x98\x62\xb1\x62\xe9\x9a\x14\xd7\xd9\x09\x00\xe3\x8d\xeb\x27\x4a\x3c\x81\xbb\x4f\xf8\x4a\x26\x6e\xa5\x12\x8b\xc3\x2f\x58\x5f\x63\x3e\x8a\x76\x5b\x27\xf4\x78\xa9\x84\xd6\x7e\x5f\xd0\xe3\x5a\xe9\x04\x25\xd4\x7b\x6c\x59\xc1\x16\xbf\x07\x41\x23\x40\x9b\x73\x87\xe3\x2d\xe4\x76\xb5\x84\x7f\x9a\x90\x8a\x6b\x12\x02\xab\x9a\xf4\x61\xd2\xd6\xa3\x36\xd0\x63\x18\x67\x31\x29\xc6\xbe\x06\xba\xef\x20\xe1\x4d\x21\x5f\x1e\x62\xa4\x83\x6b\xc2\x9e\xf1\x50\xfb\x59\x22\x2e\xb3\x05\x38\x05\x23\x34\x8b\x3f\x93\x71\xfa\xc8\xdf\xc9\xe6\x07\x5e\x3a\x96\x48\xe8\xf0\xf1\x5e\xfe\x7b\x6f\x62\xb4\x3b\x90\x00\x77\x60\xef\xc0\x32\xd0\x88\x81\x44\x60\x80\xbd\x72\x57\xe3\x6b\xea\x4b\xc7\x13\xf7\xe7\xf3\xd0\x39\x2f\x57\x12\x81\xee\xb1\x44\x87\xa2\xac\xa8\xf7\x07\xba\x15\x55\x9e\xd0\x89\x1a\x69\xda\x98\x75\x13\xfe\x95\xde\x66\x27\x46\x98\x03\x76\xb5\xdc\xb0\xcf\x51\x0d\xe8\x1c\xee\x41\x2a\x15\x89\xd2\x13\x06\xd5\x85\x19\xfa\x32\x95\x9e\x80\x6a\xbc\x6a\x18\x2b\x81\x6e\x80\xff\x81\xe2\x4d\xac\x44\x27\x64\xd9\x39\x01\x27\x81\x6e\x28\x4f\xb4\x02\x53\xb7\xea\x26\x6c\xed\xfa\x45\xea\xdb\xa4\x7f\xc8\xb1\x24\x29\x26\x45\x95\xc3\x6d\xa4\x8f\x94\xb6\xe6\xd7\x2e\x5b\x6e\xc6\xad\x3c\x46\x59\xf1\x9c\x7e\x94\x8e\xab\x82\x66\x33\x41\xc7\xa8\x33\xd3\x24\x8d\xf7\xa2\x66\x5c\x95\xac\x74\x92\x47\xdf\xb3\xfd\xf5\x3c\x6d\xda\x85\x2c\x7c\x17\xb2\xbe\x53\x5b\x50\x43\xb2\xc7\xc6\x1b\xb2\x71\x8c\x6d\x74\x40\x76\xd7\x8d\x37\xde\x10\x23\x45\xfe\x71\xd2\xd7\xc7\xe9\x78\xe4\x86\x1b\x6e\xfc\x45\x3a\xbf\xa7\xe8\xf1\xdc\xea\xe9\xe8\xf4\xdc\x54\x04\xf1\xd8\x6d\x1e\x4f\x11\x2e\xdc\x06\x87\xc5\x9b\x3c\x01\xf8\xc6\x03\xbf\xbf\xf1\x09\x41\x7d\x1f\xa7\xe3\x38\x5c\x4d\xd1\xf9\xdc\x0e\xbf\x2b\x62\xc6\x70\xf8\x7d\x43\x83\x10\x11\x5e\x85\x11\xb7\x2d\x6d\xa5\x0a\x48\x95\x05\xd8\xda\xbd\x27\xab\xb4\x82\x68\xda\x36\x12\x4a\x9a\x67\x4b\xc4\x1a\x89\x7e\x0a\x24\x1b\x43\xa9\x0e\xce\xef\x7e\x56\xe0\xcb\x03\x99\xf6\x6d\x0d\x81\x5a\x2e\x83\xfc\xb4\x53\x4f\xe8\x7a\xe2\x35\x81\x62\x4f\x9c\x60\x70\xfd\x35\xb8\x0c\x9f\x15\xf1\x59\xbf\x47\xba\x52\xd4\xba\xf9\xa0\x2d\x07\xa5\x11\x42\x87\x45\xfb\x56\x8a\xaa\x02\xfb\x14\x3f\x21\x43\xd5\x3c\xa8\xae\x73\xd6\x3e\x85\x7b\x66\x7b\x42\x6e\x34\xdd\x22\x4d\x3c\x32\xc1\x7b\x6c\xe9\xbc\x46\xee\x8a\xe0\xc2\x78\xe9\x34\x33\xe9\x94\x8e\xe1\x9a\xc0\x55\x70\x7a\x73\x82\x66\x3a\x2c\x49\x56\xb3\xb8\x73\x92\x0b\xb2\x8c\x36\x4d\x24\xe8\xb3\x53\x28\xdb\x4a\x0b\x74\x07\x3b\xb6\x6b\xdf\x94\x76\x60\x38\x1a\xf3\x3d\x37\x1c\x0f\xd5\xd0\x39\x79\x6f\x40\x8b\xc7\x75\x7d\x21\x7f\xa0\x74\x38\x1f\x1f\x9b\x1d\x8e\x5e\xe8\x1a\x76\xb2\x8e\x61\x3d\x74\x60\xb8\x4b\x63\xca\xbe\x5d\x71\x6d\x2a\x8a\x3e\xca\x7b\xa3\xc3\xb3\x63\xb1\xfc\xa1\xd2\x81\xfc\x82\xae\xc3\x44\x1f\xb8\x10\x8b\x0e\x77\xf9\x24\xd1\x12\xa4\xb5\x02\x72\x1b\x10\x56\xb7\x6d\x1b\x05\xeb\xd9\x51\xf8\x09\x72\x26\x2d\xdf\x42\x44\x73\xc5\x2b\xb3\xf3\x5b\xde\xa8\x41\x32\x07\xbd\x04\x5d\xa8\xbf\xa7\xa7\x1f\x76\xcd\xe0\xa4\x09\x60\x97\x69\x15\x0f\xf7\x23\x1c\xd9\x8f\xb7\x4b\xde\x15\xa9\x42\xef\xb5\x4b\x52\xa9\x5e\x9c\x0b\xc2\xd7\x24\x1c\x7f\xe2\xcb\xcf\xeb\xa0\x61\xd2\x7f\xfc\x89\x0b\x1a\x68\xdc\x35\x06\x6f\xe5\xd4\x43\x0f\x9d\xba\x23\x7f\x01\x5e\xd1\xbe\xf1\xa5\x6d\x62\x43\x72\x7a\x24\xb7\xd5\x1a\x1b\x35\xd7\x45\x53\x54\x33\xe0\x32\xd1\x06\xbf\x23\xe4\xe7\xe7\x98\x84\x9b\x1b\x21\x95\xdf\xda\x08\x26\x51\x5a\x20\x53\x59\x6b\x65\x0e\xa5\xc1\x88\x21\xbe\x5c\x37\xc5\x12\x44\x6d\x46\x00\xa9\x62\x2a\x03\x9e\x16\xc3\x31\xec\x5c\x0a\x21\x5d\x72\x4b\x52\xad\xbd\x2c\x53\x83\xd2\xc2\x28\x09\xd8\xa6\x3c\xa2\xec\x84\xa7\xe2\x76\x2d\xdb\xb7\x90\x5e\xd2\x2b\x62\xfb\xe8\xd5\x9d\x5b\x27\x28\x8d\x08\x3d\x85\x1e\x80\xa4\x68\xdb\xf5\x12\x24\x46\x41\xe0\x64\x62\x52\x14\xda\x48\xd1\xb1\x8f\x0c\xf4\x97\x20\xf9\x65\xb1\xa0\x4d\x7a\xd0\x80\x18\x1d\xa2\xe9\xa1\xb9\x93\x2e\x14\x26\xb1\x0b\xed\xda\xd0\x0b\xa0\xcc\x6b\xe9\x43\x1d\x4d\x0f\xdb\xa8\x34\xc5\xa5\x0a\xdc\x08\x9e\x1b\xc4\x13\x73\x9e\x27\x86\x7c\x4b\x0b\x61\xbc\x36\x56\xad\x4e\x2c\x2d\x4d\x0c\x8e\x8e\x0e\xe2\x86\xc7\x82\x13\xfb\xe1\x8c\x99\x29\x33\x29\xb4\xf7\xe2\x52\x66\x74\x77\xf6\x39\xd8\x32\x70\xac\x30\x4d\x54\xa5\xeb\xba\xe0\x19\x3f\x40\x1e\x7b\x62\x29\x6a\x2e\x6b\x6d\xcc\x2c\xda\x39\x87\xd0\xb1\x90\xbc\x06\x0d\x94\x38\xda\xf3\x32\x11\x45\x96\x6d\xb0\x49\x96\x40\x36\xfe\x58\xd3\x32\xd8\x2c\xe6\x50\x70\xa0\x84\x58\xad\xb8\x9e\xc2\x85\xd7\x27\x59\xf6\x5f\x1f\x61\xdf\x40\xee\xc8\xf2\x68\x12\x8c\xe5\x99\x02\x18\xef\xe6\xfc\x51\x08\x43\x76\xf2\xb3\xe7\x34\xed\xa6\x8e\x73\x85\xa5\x0b\x17\x96\x76\xdd\x64\xf1\x45\x7f\x08\xbf\x44\x29\x9d\x64\x1b\x61\x82\x24\x55\xa6\x6c\x52\x4d\xf1\x5c\x4a\x69\x66\xf9\x46\x32\x1e\x67\x37\x9f\x5c\x00\xf9\x8e\x42\x01\x0a\x94\x2a\x65\xcf\x14\xd2\xe0\x07\x77\xdd\x24\x9f\xd3\x56\x09\xa2\xbb\x64\x58\xc5\x91\xe7\xa9\xc9\x8e\x33\x93\x70\xe1\x65\x0a\xf3\x74\x9c\x3b\xa7\xde\x49\x3b\xf2\x3c\x35\x59\x91\xdf\x11\xc0\x1b\xb2\x75\x74\x29\xbd\x93\x99\xb4\xfb\xbf\xda\x3e\xc1\xf6\x16\x10\x28\x00\xf7\xb6\x14\x00\x93\xc4\x88\x0f\xaf\x35\x49\x00\x09\x53\xc9\x21\x5a\x0d\x6c\xb5\x19\x10\xed\x04\x36\x59\x08\x88\x18\x0b\x2a\xcd\x76\xb3\xd0\xdd\x53\xc3\xa4\x20\x02\xab\x6d\x3f\xa9\x85\x40\x43\x44\xe4\x94\x42\xbd\xe9\xb7\x7d\x3e\x87\x6b\xe5\x37\x56\x5c\x0e\xfb\x60\xf0\xc6\xdb\x2e\x9c\x3b\x7b\xf3\x85\x73\xac\xda\xd3\xf8\x8d\x1e\x47\x2a\xe5\xe8\x61\xbb\x69\x5f\x18\x18\xf8\x2f\x03\x03\x02\xee\x18\xda\x24\x49\x85\x1c\x8c\xdd\x14\xb4\xaa\x1b\x36\x78\x58\x44\x65\x22\x08\x98\x5c\x92\x74\x78\xc1\xf7\xfc\x17\xfc\x1d\x73\x3b\x36\xe7\x57\x3c\xf7\x93\x58\x4e\xb9\x59\xb4\x7d\x20\x3e\x47\x80\x5b\xdb\xc5\x1d\xa1\x60\xaf\xc3\x33\x3c\xe5\xc8\xcc\xed\x73\x84\x86\x21\x57\x78\x12\x2c\xe7\x67\x3e\x7a\x5b\xc0\xd3\xdf\xef\x09\xdc\x66\x1f\xfc\xcd\x7b\x4a\xbd\xbd\x25\x4c\x58\xb5\xcf\x19\x38\xf0\xee\x03\x01\x67\x9f\x7d\x10\xed\xd9\xf5\xa6\x5d\x3d\x98\x7c\xdf\x28\x36\x21\xa2\x99\x8b\xaf\x5a\x05\xc8\x28\x9b\x55\x0a\xea\x96\x79\xdf\x64\xd2\x59\x63\xd2\xc8\xcf\x57\x5a\xfa\xe3\xf2\x1b\xce\x16\xfe\xba\x9a\x48\x54\x37\x79\x5c\xfd\xab\xda\xb8\xfd\xe0\xad\x8a\x64\x81\x9b\x44\x3e\x38\x02\xeb\xcd\x34\x97\x59\xe7\x5a\xf2\x67\x95\x80\x7a\x53\x16\xcd\x29\x5b\xcb\xd1\xec\x7c\xd6\x3a\xda\x76\x3d\xd2\x95\x0d\x5e\x9d\x8a\xf2\x2a\xb0\x4f\x89\x7c\x7f\x4f\x3e\xdf\xd3\x5f\x0e\x74\xe7\x13\x4a\x77\x00\x78\xe2\x66\x05\xbb\x00\x6d\xc0\x72\x2a\x59\x06\x83\xea\x84\xa9\x25\x42\x06\x72\x56\x81\x42\x08\x52\x2d\xf0\x79\xf1\x59\x44\x9b\x0a\xf2\xff\xd9\x89\x0e\x0f\x28\xdc\xe5\xca\x36\x54\x6f\xb7\x80\x78\xad\x76\x60\xcf\x81\x93\xb8\xc0\x0c\x6e\x63\x73\xd0\xf8\x16\x04\x18\x8e\x44\x8c\xa1\xcc\xd0\x50\x86\x73\x60\x2b\x6c\x83\xbd\xc8\xfd\xfc\xb6\xda\x9a\x42\x09\xaa\x07\x2e\x64\xe7\x45\xaf\xbe\xc1\x8f\x9b\x83\x83\x26\x26\xcc\x10\xbc\xf9\x7e\xe7\xc2\xb1\x63\x17\x60\xc3\x7c\xfb\xe9\x0d\xfc\x8d\x1d\x55\x94\x85\x38\xb2\x5a\x01\xb4\xc6\x34\x62\x09\x3a\x6c\xd6\x0d\x34\x79\x1e\x26\x5e\xf6\xb1\x85\x85\xc2\x99\x19\x3d\x11\x4d\x2e\x8d\xeb\xfa\xf8\xd2\xc5\x8b\x67\x1a\xff\xf5\xc6\x1b\x6f\x7c\xfe\xf9\x17\xd8\x9b\x16\x3e\xb1\xb0\x30\x10\xef\x1e\xd7\x9f\x1a\x1f\x3f\x7c\xf1\x96\xc3\xbf\x02\x5f\xec\x79\xfe\xf9\xe7\xb1\xcd\xce\x4b\xe7\xc9\x53\xb0\x07\x46\x55\x84\xa2\xd8\x92\x79\x70\x9e\x4c\x8b\xa1\x0c\x27\x09\x6e\xb3\x82\x90\x16\x68\xdf\xf3\xe7\xf7\x4d\xee\xdd\x3b\x79\xc7\x1d\x6f\x89\xab\xb1\xe9\x5d\xee\x3e\x10\xa4\xee\xef\x77\xe9\x9e\x21\xf6\x39\xef\xca\xdb\x57\xbc\xba\xf7\xe8\xed\x47\xbd\xe7\x5e\x77\x47\xe3\x87\xe2\x7e\xb7\xee\xf9\xa1\xa1\x81\x58\x7a\xf2\x75\x91\xe8\x44\x06\xca\x2c\x42\x99\x9f\xb3\xbd\xe2\xc8\xd3\x97\x24\xc2\x32\x97\x0e\xa7\x50\x08\x0c\xd2\x16\x4f\xcb\x32\x2a\xcf\x5e\x8f\xb9\x0c\xbe\x29\xa6\xc6\x47\xa6\x3f\xa8\xbb\xfd\xf1\xc1\xf3\x77\x60\x15\xb0\x2a\x5f\x50\x63\x93\xe9\x10\x5e\xf3\xfc\x4a\x4c\x8d\xa5\x8f\xbe\xee\x1c\x15\xaf\x53\x55\x0e\x48\xed\xda\x8c\x1d\xf8\x33\x55\x6e\xef\x0a\xab\xe5\xf2\x36\x5d\x00\xec\x10\x25\x87\xcd\x1b\x11\x1d\x29\x7a\xf1\xee\xe8\xcd\x4b\xd0\xc9\xfc\x23\xc6\x90\xa9\xae\x15\xad\x3f\xd1\x00\x0b\xdf\xcc\x80\x34\xcd\xfe\x94\xfd\x3a\x79\x7a\x24\xa4\x0c\x4a\x70\x55\x58\x0a\x9b\x56\xd6\x21\x0f\x67\xb5\x9d\x28\x71\x26\x1b\x06\x06\x86\xbc\x05\xe5\xe9\x13\x71\x7f\x64\x98\x5b\xc2\x1f\x94\x7b\xfa\x3e\xe6\xed\x18\xec\x5a\x75\x46\x3e\xde\xe1\x8d\x76\x35\xbe\xda\xd7\x23\xcf\xdd\xf2\xcc\x4f\x47\xfe\x5f\xb2\x56\xff\x74\x5f\x52\xde\xef\x8c\x30\x09\xbf\x84\x83\xc6\x4f\xcb\x89\xbe\xa7\x49\x02\x6b\xcf\x68\x1d\x64\x3b\xce\x65\xc4\x30\xe6\x0b\xdb\xd1\x65\xc6\xf2\xb2\x09\x9f\xb2\x30\x91\x65\xcd\xec\xcb\xcb\xcb\xf3\xf3\xb0\x6d\x8a\x81\x4e\xb8\x75\x36\x4a\x47\x7b\xde\x05\x7f\xb6\x1d\x4f\x85\x29\x90\xf1\x89\x13\x26\x34\x3b\x84\x3c\xaa\x23\x8d\xc2\x00\xbf\xd5\xce\xfb\x44\xa9\x71\xb5\xb4\x4c\x57\x25\x4c\xff\xed\x90\x32\xdd\x22\xba\x3a\x49\xe0\x28\x5a\xaa\x22\x17\x90\x98\x29\xb0\x9c\x8c\xdd\x00\xd2\x74\x08\xde\x54\xf6\x37\xfe\xe9\x97\x81\xee\xd6\x40\xaf\xa2\x15\x23\x3f\xba\xf7\x9f\xd8\x4a\xd8\xd3\xf8\xa4\x2a\x1b\xff\xb4\xf7\x97\x51\xb1\xc3\xf4\x22\x74\xb6\x7f\xda\xfb\x8b\xb2\xda\x78\x49\x56\xb7\xf1\xab\x6b\xa7\x35\x46\x70\x97\x2d\x6c\xb2\x4d\x64\x1d\x27\x4f\xac\x66\x2e\x6e\x22\x3d\x46\x4f\xbe\xfe\x64\xe6\xa2\xc9\xd1\xa3\xdf\xe2\x90\xd8\xdb\x09\xa5\xaf\x28\xdd\x0a\xef\xc2\xb6\x8c\x21\x0b\x15\x5c\xb5\xe7\xb3\xdc\x40\x85\x7c\xc9\xd2\xc3\x4a\x30\xe6\xce\x85\x54\xfc\x17\xf0\x1e\xf3\x39\x42\x83\x9c\x74\x92\xf9\x0a\x21\x3d\x02\x27\x09\x59\xa5\x0b\x68\x94\x29\xb3\x40\xa7\xac\x76\x7a\x55\x07\xeb\x1b\xf7\x7a\x5c\x4f\x9e\x1b\x0b\x84\xce\x9e\x63\x83\x31\xe6\x70\xb8\x1c\x32\xeb\xe8\xec\x08\x78\x7b\xbc\x6e\xf7\xb8\xaf\x7f\x97\xdf\x3d\x96\x49\x7a\x3c\x3d\x29\x8f\xd7\x17\xd0\x7c\xfe\xa4\xa6\xf5\xfb\x1a\xc7\xef\xf1\x00\x10\x40\xef\xbf\xe8\xc6\x5f\xcd\x8f\xf8\x7b\x9d\x3d\x73\xf9\x81\x0e\x77\xa2\xcf\xd7\x7f\xf4\x0d\x03\x83\xbb\xc6\xde\xf8\xc6\xbc\xea\x74\x3b\x9d\x0e\x54\x8d\x38\x3c\xce\x0e\x77\x57\x67\x57\xba\xd7\x95\xf5\x75\xc6\x54\x4f\x87\xd3\xd3\xe1\x70\x7a\xbb\xd5\x4c\x8f\x2b\x36\xa4\xb8\x9c\xbb\xd3\xd7\xa4\xaf\x61\x8c\x9f\x9b\xa5\xb7\xb0\x2f\xc3\xd3\x2f\x48\xb7\x4b\x12\xc3\x47\x03\xf1\xf3\xb6\x0f\x17\x22\xac\x4b\x78\xb6\xf6\xe7\x93\xf1\x2e\x72\xe9\x25\x83\x9e\x39\x02\x2e\x45\xfb\xa2\xa6\x75\x11\xa1\x82\x3f\x12\x67\xcc\x09\x4f\xea\x61\x1d\x1d\x5d\xfd\xde\x1e\xd9\x03\x4f\x1a\x58\xf0\xbb\x47\x43\x7e\x78\x54\xd9\xdd\x37\x18\xec\xe7\x8f\x1a\xf0\x7d\x52\x1b\x50\x4f\x4c\xe9\x5d\xdd\x7e\x6d\x32\x12\x4e\x74\x38\x32\x91\x4e\xa7\x36\xed\xef\xcb\x68\x2c\xa9\x3a\x5d\x4e\x27\x73\x6e\x79\xd0\xde\x5e\x7c\x52\x28\xc3\xd3\xed\x1b\xa0\x27\x0d\xba\x9d\xb1\x3e\x2d\xdd\x0f\x2e\x59\x41\x6f\xe7\xd9\xa4\xea\xee\x02\x9d\x5b\xc7\x44\xc0\x3d\x72\x8c\xaf\x96\x3a\xe9\x40\x64\xbe\xc6\x08\x51\x00\x05\x0f\x30\x98\xfd\x51\x18\x8a\x8b\xa6\x15\x04\x50\xd7\xd0\xee\xf4\xf4\xfe\x42\xac\xaf\xe7\xb7\x35\xdd\xe4\x41\x9f\x5f\xce\x1f\x00\xe1\xc0\xc7\x1f\xd2\xe3\xdd\xfe\x1f\x33\x4d\x16\xd2\x49\xd2\x9a\xe6\x7a\x96\x66\x54\x8c\x29\x8a\x12\x4a\xf1\x0f\x9d\x02\x72\x38\x91\x12\x50\x04\xcc\xc1\x4d\xe0\xb8\x26\xda\x81\x94\x1d\xf9\x9d\xe0\xf9\xb7\xb3\x27\xa3\xf3\xb3\x0b\xa7\x2f\x25\x16\x7f\x03\x4a\x5d\x8f\xc5\xb4\x44\x3c\x78\x7e\x69\x74\x38\x31\xbd\xfb\x60\xbe\xa8\xfc\xce\xf0\xd8\xd2\x05\x56\x6a\xbc\x2b\x3a\x9f\x78\xe8\xd4\xee\xe9\xc5\x9b\x63\xc7\xff\x1f\x5d\x3f\x19\x8b\xe7\x0f\xec\x9e\x8e\xc3\xb7\xe7\x83\xf1\x84\x86\x5a\x0a\x11\x0b\xa9\x5b\xea\xa7\x9a\x01\xd2\x16\xad\x43\x20\x0c\xc7\x44\x81\x24\xaf\x00\x26\x62\xd6\x4e\x9c\x7e\x5c\x90\x9a\xc0\x7e\x9f\x72\x38\x3e\x78\xc9\xe7\x7c\x6b\x22\xb6\xf4\x41\x87\xe3\x7d\x6f\x75\xfa\x2e\x2d\xc5\x4e\xc0\x72\xe4\xa2\x71\x57\xf7\xf4\x85\x0c\xbf\x3b\xb4\xe4\xea\xab\x85\xfa\x3c\x06\x2c\x4f\x4b\xc1\xbe\xc6\x4f\xb3\xb3\xb8\x28\xb1\x47\x04\x1e\x80\x47\xd5\xf2\x4a\x71\xc2\x8b\xe6\x4a\x70\x95\x23\x7e\x0b\x60\x23\xa0\x41\xf3\x27\xeb\xa8\x60\x32\x8b\xba\x61\xa0\x0c\xa2\x48\x07\x4c\x63\xa8\xe9\x36\x4d\x82\x30\x83\xd5\x43\x87\xfd\x35\x49\xda\x24\x99\x13\xa3\x64\x5b\x96\x82\x2a\x64\x4b\xde\xda\xb0\x87\x63\xba\xe8\xb4\x23\xa0\x1b\x7a\x91\x8c\x77\xea\x3a\x1c\x98\x9a\x06\xbe\xce\xf5\x3a\x1a\x4c\x9b\x84\xff\xaf\xc3\xae\x0e\x1b\x43\x8c\x4d\x44\x5d\x32\xae\x87\xba\x64\x63\x68\x29\x79\x48\x84\xcd\x8e\xe2\x82\xc7\xaa\x70\x9d\xe2\xd9\xa0\x60\xa7\x56\xaa\x15\x6b\xc5\x0d\xd8\x97\x56\x8b\x0a\x9d\x60\x18\x76\x34\x7e\xe5\x7f\xab\xa5\x12\x5e\x2a\x97\xe8\xaf\x4c\x51\x1e\xdb\xea\x62\xe3\xfe\x93\xff\xb8\x81\x2e\xe3\x15\x26\x35\xca\x26\xab\x98\x6b\x15\xf8\xb3\x62\xbd\xb2\x7f\x26\xad\x55\x0c\x39\xb1\x82\x15\x1b\x38\x9d\x03\x0d\x04\x7c\x3c\x2d\x34\x4f\x15\x16\x3b\x80\x0a\xfd\x93\xd1\x43\xfa\x21\x50\x5f\x32\x6f\x76\x3c\x9d\x48\x64\x1c\xca\xd9\x99\xa3\x77\xdf\x7d\xf4\x6c\xae\x2f\x92\x18\x4e\x34\xd6\xc3\x03\x18\x2c\xf8\x4a\xed\xed\x6f\xef\xd0\xe7\x60\xee\x35\x9e\x79\xe6\x99\x9e\x1b\x6f\xfc\x3e\x60\x4f\xa2\xa5\x4e\x92\x6d\xb0\x57\xe9\xf9\x9a\xf1\x3b\x6c\xfc\xd2\x2c\xe5\xc9\x73\x04\x95\x29\x76\x25\x4b\xef\xcb\x2e\xc5\x32\x31\x05\x8c\xc7\x29\xd6\x55\x6a\xc8\xdc\x30\xd6\xb5\xdf\xce\xc4\x32\x4f\x0f\x65\x62\x5f\xd5\xdf\xe9\xdf\x9d\x42\xd7\xaa\xd4\x6e\xff\x7d\x35\x50\x4a\xee\xdb\x77\x2e\x1b\xcb\x92\x4e\x99\xca\xfb\x9f\x58\x5e\xdb\x9b\xa5\x98\x80\x98\xbf\x3d\x2a\xd0\x60\x54\x86\x6b\x01\x5b\xa7\x0c\x5b\x01\x8e\x4f\x42\x31\x6f\xd3\x4e\x58\x1e\x56\x86\xb1\x08\x55\x89\xd1\xb5\x2b\xc6\x93\x70\xf0\x30\x14\x95\xdf\xb7\x8f\xad\x72\x75\x84\xfe\x18\x54\x89\x2d\xc3\x0d\x70\xf1\x9b\xba\xfe\x38\xdc\xb2\x29\x42\x1e\x69\x91\xb8\x7d\xcf\xce\xee\xeb\xd5\x72\x7e\x7e\xab\xef\xba\x54\xad\x26\x5e\xde\xd6\x71\xbd\x89\xae\x40\xf9\x73\xbe\x30\xdd\x96\x7b\x19\x19\xcc\x79\xd6\xd5\x17\x8d\xf6\x21\xfd\x16\xed\xab\x98\x2b\xc6\x2b\x70\xb2\xde\x17\x45\xf2\xb0\x2f\x2a\xf5\x08\xf9\xd0\x58\xa0\x78\xa3\x09\x92\x8b\x4f\x80\x8d\xc1\xbc\xb4\x5b\x5a\xa2\x5e\x06\x7c\x27\xaf\x6c\xc0\xd6\xd8\xa2\x0c\x96\x59\x3a\x66\x6c\x4c\x2c\x9f\x46\x64\x16\xb6\x00\x0a\xca\xf2\xd6\x10\x35\xea\x87\xf2\xd9\x15\xa6\xe3\x83\x94\xac\xd8\x03\x51\xb6\xa8\xc1\x5f\x03\xa6\x00\xe0\xa6\xa3\x3a\x29\x74\xd7\xa3\x7d\x04\x02\x73\xcb\xe1\xc9\x7b\xeb\x50\x45\x1e\xa2\xa5\x2f\x8a\x81\x5c\x70\x34\x9b\xd1\x3e\x48\x74\x7c\x00\x7d\x0d\xc1\xe2\x7a\xdb\x62\x13\xa3\x76\x9c\x3f\x41\x56\x1a\x07\x3e\x70\x0e\x6c\xc3\xf6\x4a\xfb\x79\x84\x9d\x9c\xfd\x96\xa9\xe6\x56\xd0\x2d\xa7\xb5\x05\x38\x04\x3c\x29\xcf\xed\xa0\x5c\xf4\x10\x34\xd7\xc3\x56\xa1\xc8\x4b\x3a\x54\xfc\x1e\xd2\x21\xd7\x75\xa0\x7c\xd6\xeb\x54\x75\xd3\xae\x39\xab\x59\x81\x6c\xaa\x54\x6b\x1e\xc8\x84\xf6\x12\xec\xe1\x91\x8a\x26\xa3\x87\xd0\xe9\x3a\x3e\x06\xb5\x87\x88\x97\xb1\xc9\x3f\xb1\xfd\xa5\xfe\xfc\x0f\xdd\x0d\x21\xe1\x58\x59\x08\xec\x48\xfd\xf0\xb5\xcd\xf2\x57\x19\x34\x61\x49\xf6\xb3\x34\x12\xc4\x59\x8e\x30\xd5\x9c\x38\xc2\xd0\x82\x02\x9a\x04\x25\x61\x59\x0b\x4b\x78\x15\xba\xee\x21\xd8\xd8\x01\x48\x1e\xd7\xb4\xb7\xc1\xee\x5d\xa8\xe4\xd1\x4a\x71\xb8\x3a\x02\xa7\x8d\x7f\x8c\x65\x63\x4f\xec\x63\xaf\x83\xe3\x5b\xf6\x5d\x35\x4d\x21\xaa\x07\x5a\x4b\xa5\xa5\x99\x6d\x3c\x27\x54\xdb\x78\xd5\xc9\xc3\x6e\x66\x65\x70\x0a\x84\x5a\x0c\x7b\x52\x3c\x4a\x67\x15\x9b\x67\x0d\x84\xbc\x90\x9a\xf0\x54\x6f\xe5\x51\x37\xf3\x43\x67\x9c\xde\xd7\x61\xe2\xe4\x17\xa0\x21\xf9\xaa\xb1\x6e\xa2\x20\x9b\xe9\x18\x76\x33\x0c\xe1\x37\x1b\x76\x80\x4e\x81\xa2\x46\x3c\x99\x11\xe8\x05\x73\xdc\x5f\x21\x87\x88\x93\x0e\x5b\x6c\x97\x53\x36\xb3\x05\x20\xda\xcd\xe6\xb9\x46\xc1\x61\x89\x3c\x18\x58\x9b\x0d\x6a\x43\x6f\x23\x2e\x78\x7d\x55\x60\x16\xfa\xc3\x21\x88\x18\xb2\xf8\x65\x12\x7f\x30\x33\xdc\x3f\xa4\x0d\x36\x36\x96\xf0\xc6\x0f\x6d\xe0\x3d\x04\xa4\x61\x84\xef\x1b\x5c\xce\x8f\x2d\x36\xae\xed\x1e\x05\xf1\x2e\xb5\x94\xce\x36\x08\x69\xc8\x4f\x52\x0a\x42\x0d\x86\x42\x05\x80\x9b\x2c\xb5\x97\x20\x86\xd9\xeb\xcc\x35\xc5\xd7\x5f\x1f\x1d\x1c\x82\xac\x7a\xb1\xa0\x25\xdd\xa8\x64\x0f\x51\x37\x00\x63\x27\x42\x04\xfd\x39\x28\x67\x68\x70\x34\x43\x15\x79\x3b\x2d\xb0\x1c\x95\x7f\xdd\xc4\xaf\x8d\x76\x84\x53\xd2\xe1\x58\xf8\x14\xb2\xb5\x0f\xec\x28\x61\xbe\x7f\x7c\x3c\x18\x84\xed\x9e\xc5\xc5\x68\x64\x71\x31\x52\xdd\x56\xe2\xcc\xf0\x1e\xd8\x22\x91\x28\xdd\xc7\xf4\x96\x08\xda\xc0\x3f\x81\xc3\xa5\x3a\x0c\x53\x24\x5f\xf4\xe4\x2c\xa8\x94\xc0\x2c\xbd\xf9\xe5\x28\x40\x4c\xb0\xe8\xee\xdd\x51\xdc\xca\x3c\xfb\x71\x55\xb3\x35\x48\xb5\x1a\xd3\x59\x34\xca\x6f\xd0\xe8\x4b\xd8\x6a\xf6\x58\x80\xc9\x42\x88\xfe\xeb\xe2\xf3\x83\x35\xa3\xb5\xcf\xc7\x29\xa0\xff\x9d\xb0\x6d\xd4\x0f\xcd\x67\x5e\x46\x37\xc1\x6b\xc4\xa7\xad\x92\x3a\xb3\x72\xf1\xd0\xe4\x2f\xf9\xac\x4b\x0c\x52\x64\xc0\x21\x77\x0b\xf1\x83\x64\x04\xc1\x26\x16\x32\x65\x0d\xcf\xc5\x73\xae\xd7\x62\x2f\x9d\x8c\x61\x7d\x02\x9f\xff\x7c\x00\x38\x69\x3a\x5f\x87\x97\xf7\xdf\x94\x9e\x87\x1f\xee\x51\x58\xd0\x1f\xb1\xe4\xb3\x7f\x4a\xd8\x27\x1c\x3b\xc4\x56\x98\x00\x70\x2f\x45\xb0\xb5\x15\xd4\x4c\x3f\x71\x02\xe0\xc4\xb4\xd2\x7f\xe8\xe9\xa9\x81\xd6\xb8\xe6\xf1\xe0\xee\x15\x88\xb1\x02\x11\x41\x8c\xde\xbe\x1e\xba\x42\x5f\xe0\x3a\xcc\x71\x90\x5f\xa5\x16\x4f\x53\x5c\xca\xbd\x5b\x35\xf0\x59\x9a\xf7\x9a\x1c\x3a\xf0\x08\x0a\x94\xe8\x68\xd7\xfb\xdb\xb2\xa8\x47\x96\xc6\x01\xa3\x7a\xe8\xe2\xd2\xd2\xc5\xbd\x87\xa7\xb4\xc3\x3e\xdf\x1e\x6f\x28\xd0\x3b\x96\x18\xdf\x37\xe1\xff\xdd\x25\x5d\x5f\x1a\x8f\x5d\xdc\x0b\x4a\x0d\x76\x2b\x59\xb9\x2c\xeb\xf8\x83\xe7\x97\xf0\xda\xed\x33\xef\x5c\x85\xbb\xfb\x7d\x7b\x7c\xbe\xb1\x84\x3e\xe1\x6f\xfc\x83\xf0\xed\x6f\x5b\xb1\x2a\x5d\x1c\xb7\xbe\xa9\xe3\x9f\xe1\xb6\x45\xa1\x76\x34\x1a\x1b\x7e\x50\x6e\x22\xe7\xa4\x9a\x47\x19\xd4\xfe\x7e\x83\xb4\x0a\x3f\x4e\xa9\x7e\xe1\xd3\x17\xc0\x55\x14\xbc\x40\xd7\xba\x21\xf5\x85\x98\x02\xf8\xa7\x02\xa7\xec\xac\xe7\x86\x87\x73\x75\xc0\xc6\xc1\x17\x1d\x0a\x61\x9a\x09\xb6\x64\x76\x15\xab\x36\x13\x48\xaf\x65\x53\xed\xb5\x49\xab\xcd\xb2\x93\xcd\xa3\x02\x6a\x3a\x60\x41\x4e\x5c\xfd\x53\x2a\xe5\xf7\x29\x65\x63\xe3\xbe\x0e\xc8\xff\x9a\x44\xbb\x71\x4f\xf8\x6a\x98\x29\x2b\x5f\x15\x2a\xf3\x65\xb3\xda\xaa\x45\xd5\x54\xa0\xec\xf4\xb5\x06\xfb\x63\xb2\x07\x1b\x46\x1f\x81\x00\x8a\x83\x59\x36\x53\xa0\x70\xe0\x4d\x74\x3f\x15\x3a\x0c\x30\x84\x1e\xf8\xd0\xea\x0c\x7b\x38\x22\x8e\x2f\x04\x1f\xd3\x34\x1b\xdf\x1c\x95\x15\x20\x04\x0c\xd3\x00\xe2\x40\x91\x47\xd9\x4c\x3a\xbd\x92\x4e\xcf\x30\x58\xa3\x27\xc6\x8a\xc5\xb1\x09\x4d\x9b\x1c\xcd\xde\x9a\x1d\x65\x26\x62\xfc\x35\x36\x7e\x28\x28\x77\xdc\xc5\x31\x69\xee\xea\x90\x83\x3f\xc4\xad\xa9\x94\xf1\x71\x45\x1f\x8c\x46\x61\x58\xb9\xc5\x37\x46\x9c\xff\x18\xa7\x7d\xec\x56\xca\xe2\x71\x9b\x8e\x4e\xc5\xf0\x29\x24\x79\x62\x66\x79\x2f\xbd\xa4\x62\xb9\x9f\xf6\x13\x9f\xbe\x00\x50\x5d\xd7\x24\x40\x9c\x6f\xbd\xa6\x37\xd8\x07\x6c\x62\x38\xf7\x4a\x5c\x4f\x74\x75\x25\xf4\xf8\x2b\x39\x28\x93\x97\xce\xf1\xfe\x86\xec\xde\x22\xf4\x12\xb1\x40\xea\x19\xdc\x3e\xcb\xbc\x20\x94\xa3\xaf\xae\x5e\x21\x03\x16\xcf\xab\xb9\x54\x2a\xf7\xaa\x55\xc0\xbf\xf1\xb3\x39\x24\x93\x90\xde\x5e\x25\x1c\x15\x29\xe0\xcc\x15\x08\x6a\x14\x84\xac\x79\x9c\x17\x60\xa2\x48\xc9\x70\xa1\x60\x5b\xa7\x7d\x7d\xcf\x44\x76\x5c\x9f\xe8\x9e\x3c\xba\x34\x14\xea\x55\x9c\x5d\xce\x07\xf5\xcc\x0a\x3d\x2e\x3b\xd0\xf8\x4f\x55\xdd\x7c\x51\x37\xf2\xda\xdc\xb0\xe2\x98\xba\xfb\x58\xef\x71\x3e\xe6\xf8\x1c\x44\xf8\x45\x92\xa4\xa0\xa6\x2c\xab\xa8\x0a\x48\x38\x0b\x79\xdc\x78\x13\xaa\x7f\xf8\xed\xaa\xbe\x7c\x42\x5b\x5b\x83\xaa\x56\x99\x51\xc9\x5f\x4e\x24\x14\x25\x91\xb8\x9c\xd7\xca\x97\xd1\xdc\xe8\x72\x59\x6a\x6a\xad\x2a\x40\x65\x86\x9a\x3e\x83\x49\x22\x18\x73\x79\x4f\x53\xa4\x9d\xca\x51\x14\x84\xea\x1e\x0e\x18\x5a\xce\xa5\x6a\x86\xc1\x8c\xda\x15\x93\xc4\xcd\x34\xbf\xee\xa3\x1a\xc9\x14\xd9\x08\xe8\x07\x90\xbd\x7a\x64\x42\x2e\x85\x79\xf8\xfd\x99\x5a\x2d\xf3\xbe\xce\x8f\xa5\x6a\xb5\x54\x55\x7e\x68\xa8\x52\x19\xba\xb4\xef\xc9\x68\xa5\x12\xe5\xeb\xdd\x3e\xe2\x59\x7b\x69\xe6\xa7\xb8\x13\x08\x92\x0a\x93\x34\xe6\x93\x75\x7b\xe0\x2c\x00\x17\x8e\xb0\x7f\x17\x3d\xbd\x5a\x4b\x7d\x6c\x39\x36\x01\x59\x1e\xbe\xc8\x2a\xd1\xc5\xcf\x2e\x7d\x26\x1e\x8e\xb3\x8d\xc6\xa5\xe8\x99\xb3\x95\xe8\x93\x8b\xb1\x61\x28\x60\xfe\xe2\xfb\x94\xc9\xcf\x4e\x37\x36\xe2\x81\x98\xc4\x9a\xed\x15\x84\xba\x6d\xd7\x58\xac\x26\x34\x56\x75\xbb\xa6\x72\x6e\xb2\xcc\xc9\xed\xec\xe7\x22\x58\xd7\x5b\x9c\x71\xcb\x51\x89\x6c\x74\x04\x9c\x70\x70\x86\x32\x68\xea\xd0\xec\x03\xcb\x5a\x27\xdc\x7f\x4d\xb2\x71\xc3\x1b\x57\x43\x9a\x15\xa4\xbe\x79\x20\x6a\xc9\x3a\xc8\xeb\x26\xcb\x89\x03\x30\x86\x06\xe1\x52\x53\x4e\x3c\x4b\x92\x8f\x26\x78\xe9\x30\x3b\xa9\x1e\xb9\x98\x4c\xde\x72\x54\x3d\x59\x0d\xfb\x39\x71\xd0\x3f\x80\x47\xac\x04\xc9\x47\xcf\xef\x76\xdf\x74\x93\x7b\xf7\xf9\x99\x23\xc3\x11\xee\x10\x8a\x68\x81\xfc\x48\x12\xbd\x55\x29\x1a\x55\xae\x90\x4c\xca\x96\xba\x39\x9b\x4f\x7e\xe2\xcb\x99\xc6\xdf\xb2\xa3\x55\xc4\x53\xab\x32\x93\x95\xb5\x1a\xba\x4a\xd7\x88\xa6\x11\x91\xb0\xc3\x1c\xeb\xd7\x2f\xda\xc8\x35\xa7\x61\x0a\xb0\x81\x8d\xa3\xcf\xa6\xcc\x54\x0e\x03\x1f\x21\x97\x09\xce\x04\xfd\x03\x06\xc6\x2b\xc6\x3e\xc6\x57\xf3\xef\x34\x67\xf9\x05\xb0\x6a\xbd\x11\x72\xfd\x17\xcd\xf5\x19\xce\xd6\x16\x80\xb8\x0b\x6d\x7b\xf8\x5d\x17\x03\x79\xe0\xea\xc0\x46\x24\xd0\xe7\xf5\x26\x6e\x1e\xec\xc7\xdd\x05\x7e\xb6\xb1\xf2\x0a\x4d\x20\xfc\xf3\x15\x73\x8d\xf0\x0c\x14\x4c\xd7\xcc\x90\x06\xd0\x41\x43\x9d\x9d\x69\x50\x50\x6d\x73\x24\x52\x80\xc4\x2d\xb7\x22\xd4\x03\xe7\x4d\x69\x8a\xec\x33\x48\x14\x4a\xf8\x62\xf9\x24\x2b\x2a\x4a\x48\x2f\xa2\x3f\xa6\x5e\x37\xd6\x4a\x6b\x06\xd3\x98\x54\xe6\x70\xc4\x21\xc5\x50\x42\x06\xc8\xb5\x4b\x2c\x64\x10\x6d\x47\xa3\x01\x8e\x7a\xc8\x62\xa1\x90\x54\x43\xd4\x53\xb2\x28\x49\x73\x26\x9d\x1e\x6a\xa6\x2c\x7b\xa6\xa3\xf1\x6a\xc7\x1b\xe6\x32\x89\xbe\x3e\xc3\x64\xa6\xee\x18\xe8\x5b\xef\x1b\x70\xa0\xad\xe6\xd5\x4c\x24\xb0\x3b\x10\x38\xa6\x47\xd8\xa1\xc6\x93\x7d\x8a\xd2\xb7\x49\x06\x48\x56\xfa\x40\xbf\x48\x96\x25\x9f\x3c\x57\xb0\xe2\x82\x58\x43\x8e\x13\xd5\xb2\x85\x3f\x62\x85\xb5\x86\xc3\x8c\x0a\x07\xf0\x15\xdc\x1b\xf4\xb0\x10\x82\x45\xc6\x7f\x25\x1e\x4f\x84\x7a\x7b\xe1\xa8\xb7\x37\x94\xc0\x13\x7f\x37\x9c\x74\xfb\x43\x89\xe7\x4e\x5f\x3a\x7d\x09\x3e\xec\x05\xc2\x95\x3c\x92\xec\xed\x4d\x86\x12\x9d\x2e\x44\x81\x75\x75\x26\x42\x74\x1e\xef\x70\x21\x86\xa2\xab\x23\xfe\x97\x0f\x9d\x7a\xe8\xd4\x29\x48\xac\x75\xe8\x65\x4b\x9a\x95\x6f\x59\x11\xc8\x84\x56\xaa\xf0\x1a\x51\xf3\x0a\xb0\x16\x8a\x15\x7f\xcc\x16\x34\x16\xd8\xa3\xa4\x18\x29\x9b\x2c\x83\xf5\x4b\xac\x93\x5f\x37\xf8\xc9\xc0\x45\x18\xa7\xf1\xe1\x09\x95\xe9\x3e\x0e\x49\xb5\xba\xd8\xab\xbe\x42\x08\x8f\x2f\x32\x1a\x52\x80\xa9\xb7\x82\xa3\xfe\xa3\x2e\x88\xdf\xd2\x33\x11\xe2\xfa\x3f\xfe\x6e\x64\x8e\x75\x61\x5b\x70\xb2\x9c\x9a\xa4\x06\x93\x11\x9f\x4e\x86\xb0\x25\xc4\xe8\xa3\x3d\x64\xaa\xa9\x6d\xe0\x66\x9e\x8d\xfa\x91\x20\xdb\xd3\xe1\x73\x9e\xf4\x85\x3f\x11\x60\xee\xbf\x47\x06\xc3\x3d\x74\x83\xce\x0d\x99\x39\x06\x08\x7b\x50\xeb\xee\x70\xbb\x9f\x0f\xa5\x9c\x6e\xe0\x41\x3a\x3b\xf3\x2f\x35\xea\xf4\x8d\x30\xca\x39\x7e\xe5\x75\xb0\xfd\x98\x59\x04\x5f\x92\xd2\xaa\x00\x1c\x0b\xe7\xf0\xd9\x10\x59\xdd\xef\xdb\x2a\xe3\xe6\xba\xf6\xa6\xc6\x22\x2b\x4d\x08\x5a\x0b\xab\xa7\x35\xe3\x40\xb4\xcf\xcd\x05\x6c\x25\x8e\x1d\xc4\xe1\xd8\x72\x94\x56\xfa\xc3\xf6\x6c\x7b\xe8\xb1\xf0\xec\x91\x22\xf1\xea\xac\x4b\x00\x6b\x2b\xd8\xf3\x35\xce\xdd\x8d\x5f\x7b\x3c\x7c\x74\x96\x5a\x29\x6e\xbd\x29\x3f\xf6\x73\xfe\x10\x32\xd9\x0b\xc2\x94\x3b\x6b\x41\x0f\x1a\xa7\x2f\x3d\x78\xe6\xcc\x83\x97\x58\x91\x9e\xe1\xa1\xe5\xab\x27\x4f\x5e\x6d\x8e\xc1\x0d\xd2\x58\x66\xe9\x29\xf2\x29\x7c\x8b\x90\xce\x93\x9d\xa3\xda\xae\x17\xa3\x71\x03\x3a\x7e\x1d\x32\xd2\xdf\x35\x97\x31\x05\xf3\x2b\xb4\xa8\xdb\x58\x1a\x47\x07\xa3\xf1\x0f\x65\x22\x11\xb2\x2f\xb0\xb9\x5c\xb4\xae\x93\x64\x4e\x19\xb5\x45\x9c\xd5\x37\xdb\x72\x67\x85\x63\xc6\x67\x17\xda\xe8\x3d\xc1\xc6\xb8\x85\xfe\x1a\xa5\x4c\xa2\x43\x4a\xc8\x81\x8d\xfb\xda\xd9\x07\x8c\xde\x25\xec\x31\x95\x44\xbb\x16\xd2\x6b\x37\xb5\x8e\x41\xce\x34\xd9\x0e\x69\x2a\xb7\xcb\x61\x0f\xfb\x7c\x57\x7c\x23\xbe\x9a\x0f\x5c\x86\x41\xf1\x58\x26\x82\xeb\xb2\x6f\x04\xae\xc2\xc5\x7e\x00\x64\xf7\x49\x8e\x26\x8a\x22\xbd\x03\x66\xc5\x51\x2d\x90\x09\x18\x56\x9b\x45\xc8\x8e\xcb\x40\x41\xa4\x51\x64\x0a\xd0\x55\xa5\x2a\xbc\x5f\x93\x99\xcd\xd5\x8c\xde\x41\xb8\xad\x9f\x2b\xb2\xca\xe3\x05\x26\x51\x0e\x53\x24\x1c\x8c\xaa\x4e\x4f\xc4\x7a\xe3\xb3\x03\x56\x78\x8f\x9a\x66\xc2\x15\xd3\xd4\x4a\x81\x83\x02\x6e\xe9\x20\x5a\xa3\x83\x7d\xb2\x1a\xe2\x53\x06\x9f\x2d\x68\x16\x41\x2d\x98\xfc\xde\xe9\xdb\xa6\x3a\x7d\x23\xa3\x38\xf6\xaf\xd4\x7d\x1d\xa8\x6e\x74\x75\xb0\xc8\x6d\xd3\x53\x9d\x6e\x1f\x9d\xd7\xaf\xe0\x97\xa3\x23\xdd\x1d\xc2\x7c\x4d\x51\x43\x5a\x3d\x3e\x63\xe1\xab\x66\x66\x55\xa7\x93\x43\xcc\x18\x44\x14\x0f\xff\xd5\x0d\xb5\x5a\x8d\x46\xf3\x4b\x34\xe6\x0d\xd0\x0a\xb2\xe2\xbf\x11\xcd\x60\x97\x49\xd6\x8a\x2c\x2f\x03\xfd\xb5\x65\x1e\xa9\xe2\x9f\xe8\x0c\xa0\x97\xcb\x40\x39\x6c\x82\x55\x70\x09\x34\x04\xf4\x5f\xe2\x1d\xe0\x25\xb9\x84\x79\xbb\x40\x33\x8b\x6d\xb7\x46\xde\x6f\x7c\x0c\xeb\x6b\x57\x23\x19\xf0\xdd\x2d\x66\x22\x0c\x24\xfc\x35\xba\xfa\xc9\xd5\x55\x58\xc5\x30\xac\x46\x24\x03\xf5\xdc\x2d\xed\x66\xeb\xec\x57\x2d\x5c\x5d\x59\x25\x22\x34\x83\x82\x74\xd0\x8c\x03\x2d\x8b\x7c\xbd\xca\xf6\xc6\x3f\x10\xfb\xc0\x07\x62\xff\xd1\xe7\x0f\xc7\x4f\x4e\x76\xc4\xc3\xc6\x67\x2f\x86\xc3\x57\x58\xa7\x75\x7d\xc0\x08\xc7\x3b\x26\x6f\x88\x87\xfb\xa2\x17\xc3\x47\xc2\x15\xe9\x5f\x19\xaf\xca\xb6\x42\xe3\x3a\x9a\xb1\x96\x04\xa1\x00\x5d\xdb\xd5\xa2\x89\xec\xc9\x86\x52\x0b\xfe\xfc\x4d\x44\xaf\x18\xf9\xd7\x35\x3e\x4b\x47\x6c\xd9\xc0\xc9\xc6\x84\x8d\xe2\xcc\x5c\xa6\x41\xf8\xf9\xfc\x0b\xb4\xff\x5a\xb1\x8c\xf3\x0d\x6e\x1b\x20\x33\x16\xed\x65\xb8\x24\xe0\x5f\xc6\x7b\xd3\x04\xf3\xbd\xf0\xdf\x79\x33\xff\xdd\x38\x70\x5d\xe7\x5e\x63\xcd\x51\x33\xbc\x7d\x9c\xa0\x76\xb4\x57\xf3\xc2\xe9\x0b\x1f\x9e\x1e\x1e\x9e\x1e\xbe\xc5\xc6\x7b\xc5\x75\xa1\x1a\x18\x4a\xa7\x87\x02\x7f\x39\x3c\x9d\x4c\x4e\xbf\xbe\x1d\xf3\x55\xa4\x8a\xc9\x1e\x37\x0b\x12\x6a\x2e\x58\x92\x65\x34\xbc\x2b\x00\x2b\xc3\x0c\xf3\xb5\x2e\xef\x63\xe6\x9b\x9c\x94\x96\xff\xd7\xc4\xff\x62\xa3\x5d\x8d\x5f\xf1\x3a\xc6\x26\xc6\x59\x17\x3b\x40\x07\x82\x57\x25\xe1\x8d\x09\x32\x66\x20\xfa\x3c\x76\x30\x3e\x60\x32\xe6\xad\x18\x7c\xb6\xbf\x93\xa5\x4c\xbd\x69\x7c\x5c\x5e\x39\xa8\x1d\x5c\x91\xed\x83\x3f\x26\xbf\x41\x8e\xf0\x73\x4e\xfc\x82\x0e\x9c\x96\xa7\x06\x93\x56\xe0\x19\x5e\x24\x1b\x07\x89\x05\xb0\xeb\x33\xe9\xc5\xde\xf7\xbf\xbf\x97\xd5\x1b\x4f\xf4\x1a\x46\x2f\xf4\x63\x1b\x83\x9c\xac\xb8\x38\xfa\x4e\xb2\xdf\xc2\x1c\x1f\x46\xef\x45\x79\xd2\x41\xd4\x1d\x19\xb9\xac\x46\xfc\xe0\xf7\x3c\xfc\x7e\xb0\xca\x82\x88\xcd\x30\xe9\x16\x35\xc6\x7d\xac\xc0\x91\x26\x9d\xee\x9d\x7b\x4a\x87\x69\x59\x72\x08\xc8\xe6\x03\xad\x75\x21\x83\x53\x65\x8f\x03\xb2\x74\xe5\xe7\xae\x12\x15\xd8\xf1\xd4\xf9\xf8\xb8\xde\xdb\xe7\x09\xce\x65\x13\xac\x2b\x8e\x17\xab\xe7\x97\xe2\xa7\x8f\xec\xed\xf7\xcb\xea\xe1\xfd\x67\xe3\x4b\x82\x56\x87\x6a\xc9\x11\xe8\xe5\x54\xae\x30\x0f\x4b\x8c\x2c\x37\x45\xf5\x32\x7f\xdf\x97\xf5\x95\xfc\x07\xbc\xde\x8c\x57\xfe\x00\xd3\xb9\xc5\x7b\x31\x8c\x4e\x74\x1f\xf0\xca\x70\xfb\x07\x5e\xe1\x9a\x9d\x22\x33\xe1\x4d\xff\xe0\xe6\x08\x61\xec\xf0\xb8\x0c\x49\xdb\x8e\xd0\xf6\x6a\x50\xe0\xa0\xb0\xad\xf2\xe8\xc4\xd2\x79\x1d\x57\xfe\xab\x82\x11\x39\xe8\x90\x12\x68\x55\x5f\xde\x9f\x8d\x68\x6d\x16\xeb\x02\x12\x93\xdf\xb6\x1f\x4f\x37\xcd\x8c\xf2\xc0\x0b\x60\x64\x74\x26\x99\xcc\x50\xf4\xe2\xba\xa2\xb0\x92\xa2\x34\xd6\x50\x7f\x6a\xc2\x1f\x4c\xcc\x18\x12\xfd\x7b\xf3\xe6\xb0\xa5\x83\x64\xd1\xdf\x0f\xb3\xdf\x71\x7a\xc3\x7c\x24\xd2\x28\x44\x99\x48\xeb\xa0\x40\x76\xc7\x90\xd8\x13\x03\x45\x30\x11\x12\x9b\x14\xa7\x7b\xfe\x7a\x24\x1c\xa6\x0f\xf4\x34\x7b\xb7\x3e\x32\x68\x8c\x0c\x76\x77\x00\xc3\x35\x38\x62\xf0\x0f\x9d\xc1\x55\x34\x5e\x47\x2a\xce\xff\x2e\x5a\x25\xdf\x19\xc6\xf4\x33\xb1\x09\xef\x40\x6c\xdc\x1b\xc6\xa9\x23\xec\x1d\x8f\x0d\x78\x27\x60\x1b\x8f\xd1\x5c\x12\x82\x6f\xd0\xe6\x75\x49\x0a\x91\x5c\x27\x82\x33\x09\xa1\x8d\x91\x92\x6a\xb6\x25\x83\x95\x49\x30\x6b\x0b\x76\xfe\x53\xc5\x7b\xff\x70\x56\x7b\x10\x24\x3a\x4a\xaf\x32\xb4\xef\xe8\x64\xf7\x84\x3e\x71\x9c\x16\xe3\xbb\x86\x74\xe5\xf3\xbd\xc7\xef\x9e\x72\x28\xc3\x39\x3d\x6f\x68\x2f\x9a\xda\x2b\x9c\xf4\x16\x46\x43\x97\x34\xb8\x19\x57\x7b\xd3\x88\xb0\x48\x92\x73\x9b\x86\x84\xce\x91\xba\xd7\xb6\x8e\x09\x61\x8c\xf9\x68\xdd\xe4\xa3\x01\x35\x0a\xb2\x32\xbf\x29\xe3\x25\x0f\x4c\xd5\xee\xde\xf8\xe9\xa3\xf1\xa3\x8e\x4d\xd9\xbf\xce\x0d\xdf\x78\xf8\x37\xf1\x7a\x7b\x21\x4c\xf0\x4a\x90\x98\x33\x95\xcd\xe6\x59\xed\x93\xca\xc2\x0f\x23\x7a\xfc\x0f\x2f\x28\x9b\x6b\xe1\x97\x86\x71\x6e\x2b\x50\x47\x98\xa7\xce\x40\xdd\x42\xac\xca\x6f\xbf\x31\xd6\x8c\xdb\x76\xbf\x58\x93\xfa\x64\x20\x1c\x0e\x7c\x96\xde\x7a\xbf\xff\x50\x7b\x4d\x9a\x63\x89\xa2\x6c\x07\x89\x87\x51\x52\x14\xa8\x28\x85\x60\x9a\xe4\xfb\x0b\x69\x21\x47\xd1\x86\x58\xcd\x9c\x59\x8a\xef\xfd\x3d\x73\x66\x6f\x7c\xe9\x94\x70\x5c\x13\xaf\x08\xc7\xf0\x96\x04\x8a\x0c\x72\x67\x73\xf3\x44\x2b\xa3\x9d\x41\x33\xee\x8e\x85\x77\xc2\x8a\xfb\xb5\xfc\xfc\xaa\x36\x39\x9c\x1f\x9e\x24\x53\xbd\x58\xa1\x51\x5a\x83\x88\xb9\xc3\x33\x8e\x5a\xcd\x31\x33\x5c\x81\x3f\x81\x1b\x45\x1b\x33\xf2\x6f\x07\x3d\x68\xce\x9e\xfd\x0b\xdf\x33\x3f\x5a\x2d\xea\x45\xfd\x77\x88\xdf\x5c\xdc\x89\x21\x35\x2b\xe5\x17\x97\x89\x27\x9d\xfa\x6e\x0c\x29\xe9\x81\x68\x3d\xea\xe2\xd6\xd8\x81\xa0\x2a\x5b\xa4\x8a\xc7\xa6\x55\x64\x1c\x05\xdc\xd1\x71\xee\xb5\xb1\xaf\x77\x47\xfc\x1f\xed\x4b\x10\x91\x72\x6c\xce\x48\xc6\x21\x5b\x66\xee\x82\xeb\x34\x03\xc5\x6e\x24\xca\xe6\x68\xb6\xeb\xad\xfe\xc8\xe5\x5e\x41\x17\x18\xa2\x18\x2a\x93\xd2\x3c\x5f\xab\x6d\x3f\x1a\x98\x10\x0a\x08\x5e\x81\xea\xc8\x10\x4c\x80\x49\x28\x1c\xd4\x2b\x88\x0c\x65\x57\x60\xde\xda\x33\xf3\xc0\xd2\xe2\xe1\xa4\x3a\x30\x92\xd8\x93\x48\x0c\xa8\x49\x97\x3e\xd9\x28\x4d\xea\xfa\x4b\xbf\x58\xaf\x77\x12\xcd\xf7\x1c\x31\x74\x9f\xff\x00\xd2\x2d\x1f\x50\x93\x03\xde\x44\xc2\x3b\x90\x64\x93\x7d\x87\x26\x1a\xff\x85\x0d\x4c\x1c\xea\xf3\x57\xca\x39\x01\xa7\x5b\x94\x97\xcb\x96\x4c\x79\xba\x45\x55\xa1\x4d\x8d\x2c\xc8\x94\x03\x4d\x99\x32\x39\xa8\x5b\x72\xe5\x25\x07\x3b\xcb\x15\x1b\xe0\x36\x67\x89\x96\xcd\x73\x28\x5a\xd6\xb5\x33\xda\x34\x48\x97\x07\xf3\xf9\x0a\x91\x32\xef\x28\xc2\xdf\x95\xcd\xe2\x65\x5d\x27\x01\x73\x74\xa4\xcf\xb3\x69\x15\xee\x22\x04\x0a\xa1\x74\xb4\x0c\xcc\x35\x8b\x86\x5e\x48\x92\x2c\xd2\xaa\x23\x38\x05\x2b\xaf\xdf\x46\x65\xbf\x3c\x14\x71\xf0\xa2\x87\xd5\xc4\xa1\x45\xff\xbd\xeb\x47\xfa\xf6\xed\xaf\x97\xcb\x2b\x54\x70\xef\x60\x26\xd1\xa9\x69\x9d\xc3\xee\x11\xf5\x67\xc7\xe2\x8e\x04\xfc\x39\x62\x9a\xe4\xe2\xd6\x45\x96\x7c\x7b\x54\x9a\x6a\x97\x71\x67\x48\xc8\x2d\x6f\x92\x71\x07\xc0\x9e\x98\x84\x55\x0a\x9a\x18\x3f\xb9\x38\x91\x9e\xd4\xc7\xbb\x27\x8e\x0e\xcd\xf4\x06\xbb\xc2\x1d\xf2\x25\x2d\x73\x07\xcd\x8b\xd5\x7c\xfe\x72\xfe\xf2\xe5\x7c\xde\x12\x7d\x7f\x72\xdc\x28\x68\x43\x03\xc3\x41\xe7\xe4\xdd\x47\xfb\xb8\xec\xbb\xf1\xc5\x74\x7e\x3e\x93\xb8\x98\x80\x9d\x24\x75\x08\x78\x6d\xed\x76\x42\x84\x12\x9a\xb5\x36\x1e\x89\x17\x12\xd8\x70\x9f\xb3\x7d\xed\x41\x90\x55\x5a\x27\xc8\x2f\xd8\x81\x47\x11\xa4\x4d\x3f\x64\x21\x21\x4f\x64\x49\x62\x76\x79\x9b\x23\x9b\x55\x1b\xff\xfc\x68\xac\x5a\x8d\x3d\xca\x14\xed\x31\x3c\x78\x8c\x30\x03\x6a\xac\x4c\x56\x20\x88\x19\x50\x59\x87\xe3\xb2\xc8\x05\x3b\x08\x17\xad\x90\x6a\xba\xd4\x4a\xc5\x35\x27\x37\xf5\x2a\xad\x71\x6b\x2e\xca\xa5\x0e\xb9\x18\x92\x83\x6c\x63\x2a\xe5\x32\xbc\xa3\xf6\x7a\x58\xc1\xc1\xb2\x4c\xc2\x3a\x34\xfe\x99\xb9\x1e\x65\x55\xac\x85\xf6\x98\x50\x5e\x17\x21\xda\x65\x49\xf1\xa9\xca\x30\x0d\x36\x2d\xcf\xca\x37\xdc\x10\xb3\x3f\x9f\xa2\x1a\xfc\x8c\x70\x85\x19\x76\xb4\xdd\xe3\x84\xfd\xf7\x9c\xe4\xa6\xba\xb0\x6c\xa1\xf6\xe7\xb1\x6b\xd2\xa3\xb1\xcf\xf0\xdd\xf7\xc3\xbf\xc7\x8e\xe9\x4b\x58\x6b\x36\x7d\x45\xcb\x2d\xab\x3c\xfa\x68\xcc\xfe\xb0\x47\x85\x93\xcd\xf1\xe8\x18\xfd\x84\x49\x98\x5d\x8c\x15\x69\x47\x77\x54\x19\xd4\xcd\xbe\x03\xaa\x0f\x15\x82\x2f\xad\xd0\x77\x92\xcb\x2e\x57\x88\xac\x42\xb6\x6c\xdc\x8e\x2c\x8b\xe9\x90\x03\x0f\x99\xbe\x8a\xcb\xec\x6a\x6d\x15\x90\x75\x59\x65\xd5\x58\x37\x56\xb5\x2b\x70\xad\x04\x17\x77\xcc\x07\x30\x23\xa8\xff\x53\x6e\x0a\xa5\xac\x08\x3f\xd4\x56\x8d\x35\x6d\x75\x55\x63\x45\x6d\xb5\xb1\x0e\xb9\x5c\x85\x8b\x70\x85\xa4\xb4\x36\xe6\xa6\x80\x21\x08\x2c\x93\x1b\x36\x83\x62\x06\xd0\xc6\x4c\x1d\xb2\x29\xeb\x3a\xad\x21\xc0\x67\x33\xdd\xb6\xe7\xed\xdf\x01\xa1\x9d\x8b\x0a\x3e\x4a\xe9\x5f\x51\xca\x74\x48\x36\x7f\x70\xbd\xae\x43\x2f\xd3\x59\xd5\xce\x6f\x0b\x3c\xbf\x75\xcc\xf3\xe3\x9f\x3d\x94\x56\xe9\xe4\xa3\x94\x1e\xe2\xd9\xc1\x08\xe2\x7d\x96\x4b\x9c\x61\x41\xe6\xa4\x1f\x3a\x75\xe4\x9a\x16\x71\xec\xf1\xd9\x2b\x87\x33\x73\x28\xaf\xd1\x0e\x74\x8f\xf7\xdc\xba\x78\xe4\xee\xbb\x8f\x1c\xe5\x97\x81\x87\x98\xca\x2c\x1c\x03\xdb\x1a\xe8\xd7\x1f\x87\xdc\xee\x24\xa9\x02\xf5\x14\xec\x23\xce\x02\xbe\x7c\xea\x6c\x87\x0e\x7d\x9a\x52\xf6\x5e\xda\x35\x7e\x8b\x76\x12\xfd\xce\x80\xdf\xd5\xf8\xef\xd2\xa4\x9f\x2a\xf0\x61\x2c\x1d\x8a\xe1\x5d\x94\x3e\x45\xe9\xaf\x51\xda\x36\xde\x02\xf8\x1b\x40\x97\x94\x8b\xd5\x6a\xfc\x51\xed\x31\x61\xd8\x89\xf1\x3f\x3a\xa9\x87\xe7\x10\x43\x16\xee\xdf\x88\xdd\xf0\x6b\xfa\x77\x20\xc6\x1f\x33\x62\x37\xac\x5f\x93\xe0\x88\x72\x35\x58\x85\xee\xa5\x48\x8c\x24\x66\xcb\x42\x57\x87\x90\x7e\xdf\xd1\x7f\xed\x86\x58\x0d\x0e\x98\xb4\x7e\x43\x6c\x73\x0d\xe8\x69\x01\x44\xa4\xc0\xaa\x62\x15\x98\x0b\xe6\x21\x2b\xa6\xe2\x73\xd4\x6f\x3a\xc8\x97\x27\xc5\xa3\x3c\xa2\xe8\xaa\x83\x7a\x3b\x52\xe7\x31\x3a\x82\xbb\x1f\xa5\x08\x8c\x74\xb7\x18\x6d\x10\x6d\xa2\xfe\x73\xf3\xee\x3f\x6f\x8e\x12\xd2\x6f\xfe\x99\x85\x84\x9e\x6d\x8f\x3a\xc3\x29\x95\x24\x51\x22\x2a\x98\x40\xc0\x38\xb3\x42\xcb\xb1\x02\xd1\x24\x0f\x53\xfa\xf9\xbd\x8d\xf5\xbd\x13\xfd\x33\x89\x43\x89\x99\xfe\xc6\x5f\x31\x0d\x59\x57\x43\x08\x90\x71\x7e\x02\x3c\x74\x96\x27\x26\xfc\x33\x7d\x7d\x33\xfe\xc6\x1f\x17\x8b\xe8\x40\x28\xb9\x9b\x74\x97\x03\x8e\x03\x68\x65\x4b\xfa\x3c\x3f\x4c\xf0\x32\x52\x77\x7c\xb2\x00\xe3\x9c\x10\x1a\xfd\xce\x65\x65\xd4\xe2\xc8\x2c\x30\x3a\xba\xe7\xd6\x5b\x9f\x50\xee\xc4\x19\xe3\x4e\xe5\x77\xe2\xc9\xb0\xa2\x94\x66\x3a\x3b\xff\xc3\xd8\x19\xe6\x3d\x33\x76\xeb\xad\x8f\xbf\xc4\xbf\x7b\xe9\xee\xd9\x27\xe6\xc2\xda\x05\xad\x34\x13\x1e\x08\x87\x25\x97\x60\x8b\xe3\x27\xeb\xc8\x26\x47\x4e\x52\x46\xea\xb6\x6e\xcb\x16\x95\x63\x8a\x68\x68\xb8\x09\xbd\x96\x0d\x6a\x9a\xc6\x51\x16\x7e\x09\x2c\x36\xa1\xd7\x1a\x65\x90\x8c\x6e\x63\x77\x9f\x46\xd2\x37\x2b\x87\xb2\x41\x95\x06\xc5\x7c\x73\x49\x38\x72\x4f\xfa\x3b\xd3\x6f\x82\x6d\xd7\x91\xa6\xcf\xdf\x91\x5d\xd3\xdf\x49\x57\x31\xb9\xe7\xdf\xd1\xd4\xbc\x5d\x8e\x96\xc1\x73\x80\x6c\xa3\x05\x2b\xe3\x67\x46\xee\x39\xb2\x67\xe2\xfe\x3d\x13\x7f\x33\x72\x4f\x3f\x65\xf8\xa1\x89\x3d\x47\xee\x19\x69\xfc\xee\xc8\xdf\xe0\x81\x1d\x5b\xdd\x65\x73\x89\x3f\x28\x3b\x0a\x52\x9d\x31\xfd\xba\x6a\x32\xdb\x0a\x89\x6c\x05\xf8\xbb\x86\x62\xb6\xc0\x5c\x59\xeb\xb9\x4c\x73\x80\xe8\x72\x83\xec\x81\x02\xc2\xe9\xf8\x5b\x0f\xa9\x13\xaf\x2f\x5f\xbd\xba\xd9\xef\x46\x87\xbf\x1f\xa3\xaf\xa4\xb6\x92\xb2\xd7\x2f\xc9\xc9\x97\x24\x15\x97\xa7\xed\xca\xfb\x79\x75\x6e\x0e\x3e\x21\xfc\x6c\x5b\x6a\xa3\x4e\x77\xf0\x8f\xe4\x12\xca\x96\x89\x76\x21\x94\x4b\xf7\xf5\x9e\x95\x16\xa2\x2b\x4c\xda\x5a\xb8\xb2\x5e\x87\x55\x65\xbb\x52\x2b\xba\xbe\x49\x02\x1c\x15\x25\xc0\xdb\x44\xb5\x7e\xab\xbf\x70\x6c\x68\xe8\x58\xc1\xbf\xaf\xbc\x29\x6a\xf6\xd1\x69\xcf\xc1\x83\x9e\xe9\xa3\xe9\xdf\xd8\x1c\x99\xdb\x21\xd8\xd3\xf6\x93\xfc\x42\xb0\xde\x92\x5b\x02\x8b\xbf\x6b\xc9\x59\x40\x4e\xf1\xa2\x28\x61\x69\xc3\xb7\x56\x51\x4a\x3d\xb2\xbd\x57\xaf\x60\x75\x99\xcd\x42\x97\x63\xcf\x0a\x9e\xbc\x37\x73\xf1\x65\x9e\x9a\xe6\xcb\xa1\x9e\x37\xbf\xb9\x27\xf8\x2a\x5c\xd9\xfc\xf9\x5d\x6a\x21\xb2\xf6\xb2\x35\x6f\x5c\xf2\x36\x44\x74\xb5\x1d\x31\xb8\x2d\xda\x17\xd7\x5f\x66\xf1\x2b\xf8\x24\x99\x02\x93\x5b\x0d\x4d\x46\xb0\xd7\xae\x62\x02\x6c\x57\x7e\x74\x41\x69\x5c\x65\x57\x1c\x72\x95\xe3\x0d\x82\xc5\x17\x32\x56\x70\x53\x02\x19\xae\x95\x85\x51\x4f\x60\xc8\x60\x57\x7e\x95\x09\xef\x7f\x10\xde\xfe\x30\x72\x17\xe9\x6d\xd5\x06\x32\xd7\x29\x64\x95\x02\x7c\x9a\x53\x1d\x4d\x7c\xac\xba\x59\x97\x30\x35\x75\xfb\x54\x47\xf7\x88\x33\x18\x0c\x5e\xec\x5d\x5c\xec\x9d\xe9\xdc\x3b\x39\xb9\xb7\xf3\xe5\x36\xdd\xc2\xd4\xad\x33\x53\x1d\x2e\xdf\x4f\x8d\x06\x2f\x8d\x06\x1f\xef\xdd\xb3\xa7\x77\xe6\x0c\xde\x78\xc6\x96\x6a\x6e\x50\xad\x52\xdf\xad\x46\x1c\x0c\x77\xa7\x4a\x80\x41\xfd\x0e\x05\xaf\x00\xd5\x54\x6e\xb7\x36\x1c\x97\x24\x86\x0a\x08\x6e\x0f\x4a\x7b\xf9\x7a\xa5\x33\x23\x03\x2a\x2e\xed\xfc\xd2\xe9\x4b\xca\xb6\x15\x60\x52\x24\xa3\x03\xc0\xc4\x79\x00\xfa\x58\xde\xbe\x22\xad\x3a\xf0\xf7\xbf\x1b\xea\x70\xdd\xf7\xef\xbf\x6e\x8d\x3e\x1a\x8a\x29\x17\xb1\x88\x32\x26\xf1\xf1\xc4\xf6\xf5\xaa\x76\xf6\x86\x42\xbd\x9d\xad\xbe\xd1\x89\x6a\xeb\x6b\xd2\x0e\x75\x24\xec\xc1\x83\x34\x3a\x86\xd0\x2e\x34\xcd\x75\x67\xe4\x42\x94\x07\x37\x6f\xf4\x1c\xb2\x0d\x10\xe7\x13\x69\x6e\x4d\x8d\xf3\x14\xfb\x27\x8f\x27\x0f\x86\x86\x83\x43\xbe\xc9\xd7\x4f\xfa\x12\x61\x38\x06\x77\xc8\xfb\xd9\x70\xe3\x9f\x12\xe6\xf2\x8a\xa9\x54\x7e\x84\x5f\x8a\xf4\xb8\x7b\x0e\xf4\xf6\x1e\xe8\x75\xf7\x0e\xf0\xdf\xdc\xfd\xc2\xb2\x99\x80\x3b\xae\x88\x5e\x8f\x56\x34\x0a\xcc\xfe\x7a\xed\x80\x36\xdb\x0c\xa6\x9d\xd0\xb6\x8f\x3f\xa0\xb3\x5a\xe5\x91\xed\x9f\x95\x75\x55\x50\x2a\xda\x16\xb1\x33\xdc\xb2\x84\x68\x07\xa5\x09\x14\x98\xa9\x2b\xf0\x5f\xb5\x7d\xab\xd9\x5b\x89\xbb\x83\xbf\x16\x76\x94\x04\x74\x8e\x98\xa7\x2d\xff\x6c\x8f\xf8\x08\xb9\x29\xb0\x7a\x57\x5a\x79\x6d\x00\xf0\x3f\xc2\x95\x09\x59\x89\x88\xda\xdb\xd6\xaf\x4d\xd8\x5c\xe6\x08\x69\xa1\xe6\xf4\xc7\x14\x9d\xfe\x6a\xe2\x14\x28\xca\xaf\xa9\x7e\xac\xbd\x7e\x94\x1b\xd5\xaf\xd6\xca\x4a\x2f\x16\xb1\x7e\x52\x9b\xbc\xda\x8e\xdb\xd9\x43\x7e\x91\xc8\x89\x93\x9c\x48\x45\xa2\x00\x33\xb4\x7d\xa3\x14\xb4\xd2\xc2\x28\xbf\xd1\x78\xef\x72\xde\xda\x81\xc0\xd7\x28\x96\x8c\x7b\x8e\xcc\x8e\xc5\xa3\xc9\xfc\x32\xd3\x9b\x87\x70\x1d\xea\xb7\x57\xda\x4b\x34\xa9\x4f\x4a\x91\x9d\x9d\x6c\x67\x98\x95\x39\x4c\x0e\xfa\xfd\x12\x05\xa2\x22\xc1\x4f\xe6\x0a\x84\xc2\xc8\xaa\xb9\x5c\x24\xd1\x9b\x99\xfa\xeb\x28\x80\xee\xcd\x0e\x0c\x78\x3b\x7e\x0c\xce\x4c\xb8\x7a\xaf\xa7\x33\x1e\x0e\xe1\x0d\x87\xa7\xb5\x78\x6c\x68\x0e\x2e\xc7\xa2\x00\xc6\x37\xdb\xe3\x19\x77\xba\x7f\x8c\x5f\xe1\xdf\x3a\x3c\x89\x5e\xb7\x48\xab\x50\x4c\xf0\x34\xc7\x26\x2c\x60\x6d\xb0\x02\xbc\x3e\xc8\x80\x65\x29\x28\x42\xb3\x3a\x1b\x5a\x75\x76\xf6\xd8\x42\x66\x2a\x3d\x5d\xd4\xea\xfc\xc0\x9c\x9d\xdd\x30\xcd\x5a\x6e\xf6\xc8\xe2\xad\x3d\xe3\xdd\x07\xb4\x7c\x7a\xca\x6c\x5c\xd5\xf5\xb2\x70\x9e\x9b\x95\x84\x38\xc8\x84\xaa\x4b\x14\x3c\x2e\xcd\xea\x76\xc0\xf3\x20\xd2\x31\xb4\x92\x80\x3e\xbf\x01\x1e\x48\xab\xe6\x36\x81\x5e\xa9\x4f\x51\xbe\x84\x7d\x94\xa4\x76\xb5\xb3\xcb\x64\x81\x3e\x57\x28\xea\x59\x4e\xe6\x86\xf0\x29\x05\xf7\x79\xeb\x84\xd1\x4a\x3d\xe1\xf4\xef\x5f\x47\xfd\xec\xea\x1d\xcf\x69\x0f\x9d\x02\x6c\x23\x52\x11\xb0\xab\x50\x52\xc5\x1f\xd6\x11\x86\xaf\xcb\xf9\x31\xc0\x72\x7d\xee\xce\x53\x0f\x99\x10\xe9\x1e\x75\x05\xff\x97\xd0\x7c\x1e\x9b\x02\x68\x47\xc0\xda\xda\xac\x01\x4b\xb2\xe3\xb6\x7d\xbc\x8a\x6b\x2f\x03\x3c\x51\x4f\x0d\x93\xd7\x74\x18\x5d\x8d\xb2\x0e\xff\xdc\xe5\xba\xbf\xa7\x41\x5f\x30\xa3\xa7\xbf\x51\x5f\x5f\xaf\x82\x43\xc8\xba\x6e\x9a\xa2\x65\x02\x9f\x0f\x64\x02\x21\x28\xb4\xa9\x8a\x80\xdd\x33\x5b\x94\x4b\xf5\xd0\xa1\xea\xe1\x5f\x14\x46\x9b\x88\xbe\xdd\x49\x28\x85\x37\x60\x3f\xc4\xc6\x21\x12\xbc\x90\x0b\x35\xe7\x49\x5b\x5c\xca\x13\x4b\x96\xab\x42\x3f\x2d\x5c\x77\xcd\x01\x77\xa3\xfb\x5c\xa5\x86\xce\x9e\xbe\x80\x51\xbd\xe2\x49\xc0\x89\xf4\x75\xe8\x26\x04\xd4\x89\x77\x8e\x4f\x29\x31\xe5\x66\x91\x06\xd9\xaf\x81\xd9\xff\xbd\x7d\xa1\xfd\x77\x7c\x51\xee\xc1\x1f\x5c\x78\xba\x73\x1e\xfc\xa5\x3b\xba\xc1\xf4\xc7\x18\x9a\x3a\xd4\xf3\xd3\xdb\xae\x3f\xd8\xb7\x35\x42\xbc\x2f\xd3\x7a\x0c\x17\xfa\x3d\x9e\x4c\x06\x74\x5c\xb2\xe5\x35\x92\x06\x1e\x0f\xea\x58\x45\x2b\x1d\xd8\xde\xca\xd6\xcc\x35\x93\xad\x35\x36\x6a\xa9\x59\xe6\xc7\x6b\xb0\x5d\xd2\x74\x10\x4d\x98\x39\x89\xd6\x8b\x32\xfb\x36\xfb\x54\x2b\x3f\xca\x2e\x24\x17\xdc\x32\x3a\xf1\xa4\x65\xe0\xc4\x43\xa1\x9f\x9d\xce\x85\xfc\xb0\x7d\xaa\x97\x55\x7a\xee\x58\x63\xd3\xbd\x8d\x7f\x98\xf8\xc2\x70\x8c\xcd\xe0\x65\xd8\xee\x1b\xfd\xe1\xd1\xe1\xe1\x15\xd7\xe8\xeb\x1e\x3f\xe0\x33\x9a\xc8\x53\x65\x68\xf1\x7e\x3e\x4e\xa0\x62\xed\x36\x45\x0d\x4d\xb4\x28\x32\xd7\xaf\xd8\xe6\x44\x16\x7a\xd0\x5f\xb3\x1a\x97\x6d\xa7\x41\x87\xc7\x95\xc1\x98\x07\x21\xcc\x85\xd2\x88\xe4\xa4\xf0\x6b\xec\xdb\x72\xa7\xef\xd4\x71\x80\xf1\x35\x97\xa3\x5d\xc7\x06\x7c\xe1\xc6\xc3\x60\x3f\x60\x8e\x2f\x69\xef\xf3\x45\x3c\x23\x95\x4c\xa4\x6a\x0e\x54\xba\xdc\xde\x7b\x88\xe0\xa8\xd9\x54\x54\xbd\x59\x02\xb7\x4c\xc9\xdb\x65\x60\x85\x37\x95\xf0\x32\x12\x8b\x2b\x58\x02\x8c\xe4\xc6\x3a\xe5\x0e\x56\x00\x30\x54\x28\x73\x10\xa5\x9b\x3c\x6b\x2b\xe7\xcf\xa3\x95\x16\xd9\x1a\x8b\xb9\x84\xb0\x8c\x82\x50\x88\x0c\x49\x39\x03\x0e\x9e\x90\x19\xdb\xe7\x0c\xf4\xae\x28\x26\x2f\x43\x8b\xf9\x02\x4c\xe2\x79\x36\x3e\xdd\xab\x1a\x45\xab\x9c\xde\xa6\xcd\xe6\x1f\xa0\x0d\x22\x51\xc4\x2a\xb5\x0e\xd0\x17\x20\xb2\x99\x07\xbd\x17\x4c\xa6\x59\x55\x55\xe8\x5a\x0e\xde\x5f\xce\x81\xaf\x15\x0e\x3c\xec\xe2\x93\x89\x33\x3f\xac\xa6\xdc\x43\x4e\x35\xc0\x42\xbd\xa9\xe9\xb9\xe9\xa5\xd0\x5d\x57\x46\xf7\x78\x60\xdd\x72\x8d\x0c\xec\x1b\xf4\x04\x53\x3d\x3d\x72\xb0\xb6\x92\x30\x86\xd4\xb7\x04\x13\x2e\xa7\x2f\x9a\xee\x9c\xf4\x0e\x9f\x2f\xea\xb9\xec\xd7\xbf\xaa\xc6\x59\x20\x98\x1a\x94\x3b\xbb\x52\x83\xb4\x6a\x03\x91\xcb\xd6\x49\x4b\xa0\xd1\x6c\x6b\x0f\x0e\x52\xc1\x91\x0e\x4e\xc9\xc9\x42\x33\xcc\x5b\x92\x2a\x56\x8d\x2f\x3f\x10\xc9\x0c\x05\x58\xa0\x2f\xe6\xdf\x15\x59\x5a\x38\xf1\x25\xab\x61\xa7\x48\x6a\x75\x53\x7c\x39\x13\x79\x32\x30\xd4\x97\x0c\x0c\x4c\x4d\x9d\x52\x78\x6b\x28\x5c\xa0\x25\x09\x32\x00\xbe\xca\x8f\x6e\xb6\x99\x2a\x0c\x7b\x76\xb6\x9e\x61\x8a\x86\x7f\x57\xfd\xe1\xad\x96\x33\x6c\x59\xd3\x56\xe8\xf3\x62\x44\xb4\x9c\x21\x93\x83\x26\x3f\xc2\xa3\x75\x0c\x91\x34\xc9\xbd\x8d\xc9\x71\x8e\xb3\xa2\xb5\x0a\xba\xa1\x9a\x22\x12\xc4\x4b\x47\x7a\x8b\xc5\xde\x23\x4c\x2f\x15\xf5\x96\x55\x31\x27\x5e\xfa\xc3\xfc\x4b\x18\x9b\xb6\x4f\x1b\x95\x13\xc1\x55\x3c\xef\xde\x29\x10\x74\x11\x0a\x11\x63\x41\x93\x89\xb2\x52\xac\xae\x8b\xf9\xeb\x3a\x2f\xe1\x7f\x2f\xbe\x34\xe5\x59\xd9\x36\x3f\x01\x19\x2b\x68\x8d\x76\x99\x84\xb3\x2d\xce\x98\x95\xfa\x22\x20\x26\x8c\xf4\x31\xad\xa4\xb1\x72\xb4\xef\xf2\xb2\x61\x2c\x5f\xee\x8b\xc2\x0a\x4c\xf4\xa4\x60\x49\x15\xc5\xb5\x55\x6a\x0b\x37\x1a\x80\x6a\x15\x78\x9f\x4a\xb9\x37\xc1\x5f\xb1\x37\x91\xae\xf9\x0f\x29\x7d\xd9\x30\xe6\xbb\x62\x8e\x58\xd7\xbc\xd1\x78\x2d\x01\xfe\x19\xfe\x48\x82\x99\x14\xa8\x3c\x4c\x69\xe3\x87\xcd\x97\x62\xb1\x97\xcc\x17\x29\x8c\xfd\xe5\x17\x25\xa7\x65\x99\xf3\x49\x0b\xd7\x50\x42\x17\x21\x19\xa8\x76\x15\xf7\xd9\xf9\x04\x9d\x94\x97\x7e\x02\xdc\x73\xdf\x32\xae\x47\x4e\x46\x8c\x8d\x3b\x59\xe0\x0e\xfd\xf4\xab\xa7\x37\xf6\xee\xd5\xc7\xe1\x1a\x5c\xba\xe3\x0e\xfd\xd4\xa9\x16\xea\x10\xd7\xcb\xe9\x9b\xad\xd7\xb2\xb0\xe1\x3a\xa2\xb6\x21\x86\x58\xcb\x88\x62\x29\x8f\xcf\xbf\x33\x3b\x9f\xfd\x72\x0b\x8a\x48\x01\xb5\x5c\x95\xab\x90\xeb\xba\x1e\xcd\x66\x8f\xb4\xe2\xf6\xe8\x68\x43\x28\xc4\xc4\x5e\x6b\x62\x72\x8f\xe2\x93\xa8\xc0\x78\xe4\x08\x6b\xbb\x40\x69\x72\x1e\x2e\x65\x3c\x60\x6e\xa1\x38\x15\x12\xee\x92\xc3\x52\xd9\xb8\x75\x70\x26\xbd\xde\xd5\xeb\x4b\x0c\xe8\xd9\x99\xae\xc3\x30\x37\x2f\xfe\xfb\x53\xe1\xbd\x8f\x4e\xb0\x40\xd7\x9c\x73\xa0\xb7\x3f\xec\x7e\xd0\xb9\x61\x38\xf7\x7a\xd2\x5d\x9d\x4b\x7d\x03\x5a\x36\xb8\x27\x9c\x5b\x9c\xea\xd9\xe5\x1d\x9b\x30\x3b\x1b\xff\x9d\xf5\x04\xc3\xfd\x5d\x9d\xff\xe0\x95\x04\x9f\x2e\x05\x29\x84\x80\x02\xe1\x2b\x5b\x7a\xd1\x2c\x6f\x03\x26\x67\x79\x03\x90\x4c\xf2\x57\xb2\xee\xc5\xb1\xf1\x7d\xa0\x0d\xfd\xd3\x87\xe1\xe1\x99\x23\x32\xe0\xf5\xe0\xd3\xab\xe3\x18\xbe\x3d\x3b\x3a\x0f\x4f\x19\xf6\xff\xf4\x9f\xe0\xe3\x37\x3e\x18\x19\x70\xc0\xd3\x87\x7d\x3a\xcd\x02\x45\x4e\x25\x10\xbd\xd7\x4f\x96\x93\x3c\xf8\x1e\x4e\x02\x4d\xf1\x67\xce\x36\xac\xc2\x22\x09\xab\xb7\x40\xf5\x61\x65\xc3\xa8\x56\x95\x22\x21\x94\x76\xaf\x6b\x6b\x68\x53\xe5\x8f\x5c\x29\x19\x06\x18\x4f\xb1\xba\x61\xe8\xfa\xba\x61\x98\x24\x01\xcd\x69\x68\x54\x15\xf6\xd3\xbb\xd0\x09\x65\x8a\x68\x0b\xe2\x0a\xa8\xe7\x92\x4f\x79\x56\x40\x3c\x70\xa7\xb2\x96\x45\x75\x36\x57\x01\x18\xdf\x7b\xd8\x8b\x83\x8b\xf3\x07\x2f\x3c\x9d\xd9\xc3\x4a\x27\x3e\x4a\x47\x77\xc5\x37\xb4\x5f\x6c\xac\x44\xf7\x64\x9e\xbe\x70\x70\x7e\xf1\x13\x1f\xa5\xfd\xdd\x82\xe4\x86\x28\x3f\xe2\x88\x9a\x32\xc8\xf2\x7a\x80\xe4\x84\x1b\x30\x8b\x91\x6c\x10\xee\xae\x4b\x06\x83\x71\xc4\xef\xa6\x28\x80\xd6\x18\xaa\x97\x4a\x64\x91\xc1\x00\x75\xfb\x3e\x1a\x0c\x9b\xbc\xac\x3b\x28\xfe\x3a\x48\xfb\x65\x7f\x08\x9c\x4c\xb3\x7e\x04\xe3\x61\xa1\x2f\xc9\x0f\x9c\x3c\xf9\x80\xfc\x25\xfd\xcc\x83\x0f\x5e\x85\x03\xb6\x06\x17\xbe\xd4\x28\x79\x9f\xf8\xf4\x13\x92\x4b\xf8\x7d\xa7\x2d\xdd\x04\x30\x05\x30\x7e\x54\xfd\x1e\x68\xdc\xc9\xa6\x70\x53\xd9\x7d\x4e\xfe\x60\xad\x64\xec\xbb\xff\x83\xf2\xb9\xcf\x50\xad\xcf\xcb\xe7\x76\x97\x00\xb4\x07\x60\x12\xbc\x1f\xdc\x7d\x2e\xc7\x9f\xc0\x29\xe2\x4a\x93\x35\xaa\x55\x7f\x4f\x6b\x2e\xc8\x71\xf1\xee\x7f\x5e\x2c\xed\xd9\x53\xf2\xd2\x98\xae\xa3\xe7\x26\xb8\x77\xb2\x30\x5e\x5b\xbc\x44\x33\xc1\xad\x0b\xa3\xd9\xdd\x59\x8e\xcd\xf9\x08\xe1\x04\x90\x65\x10\xfa\xd0\x66\x2d\x37\x96\x26\xf4\x44\x81\xd5\xf7\xa7\x65\xdd\x13\x2e\x15\xcd\xc4\x8b\xc5\xbd\x8b\xc5\xe3\x8b\xb1\x63\x17\xef\x3d\xba\x97\x3d\x70\x7c\xf1\x58\x6e\xf2\x8e\x12\x5c\x2f\x1d\x39\x3c\x17\x33\x4e\x1d\x6a\xe5\xf9\x3c\xd4\x53\xb2\x64\x8e\xd9\x65\xf8\xe5\x87\x62\x2f\x17\x1f\x81\x3b\xd7\x62\xbf\x53\xb2\xed\x43\x1d\x92\x14\x25\x7c\x6f\x89\xf1\x71\x4f\xa0\xb9\x94\x08\xfe\x28\x14\x25\xa8\x39\x29\xe0\x09\x10\x5e\x90\x64\xf9\x10\x55\x09\x2f\x10\x68\x83\xf0\xb0\x6f\x72\xd2\x97\xf2\x4d\x4c\xfa\x86\xc3\x99\x48\x59\xbb\x21\x14\x0b\x05\x01\x30\x67\xad\xc3\x17\x50\x63\x21\x58\xf6\x97\x14\x75\xd9\x1f\x91\x47\x46\xe4\x30\x8a\x60\x92\xfe\x30\xfe\x04\xb7\xb0\x3f\x09\x6b\xa8\x5e\x09\x75\xdf\x89\x84\xe5\x9d\xdd\x78\xbb\xa2\xfe\x4a\xc4\xdf\xd5\xb5\x6f\x5f\x57\x17\xf2\x39\x3e\xd1\x23\x64\x0b\xbe\x43\x4e\xda\x45\x52\x50\xee\xd9\x6d\xfb\x3c\x28\x22\xc2\x34\xdf\xda\xcf\x11\xbb\xcc\xcf\xed\x94\x4b\x55\x0e\x27\xce\xff\x74\xeb\xaf\x5a\x6f\x94\xea\x35\x32\x52\x5e\xab\x13\x7c\x12\x93\xc8\x5e\xb9\x48\xd7\xda\x4e\x1a\x75\x66\x4a\x82\x6f\x6a\x27\x47\xa4\x25\x4a\x8e\x8c\xd8\xe7\xc0\xe4\x87\x0e\x93\xd0\xc2\xf3\x6d\x70\x40\xac\x38\x78\x60\xc1\xd4\xe4\x9f\x5f\x38\x50\x68\xd4\x17\x1e\x43\xaa\x33\xfd\x2e\x1e\x91\xbe\x6f\x44\xcd\xe7\xc7\x63\x8c\xf6\xea\xc8\x6e\xb8\x66\x7f\x50\x4b\x29\x99\x0e\x89\x55\x2c\x29\x68\x4a\x9a\x22\xed\x1b\x95\x92\xb6\x0a\x6e\x45\x2a\x47\x4d\x07\xef\xaf\x59\xa5\x15\xff\xe3\xbf\x9f\xbe\x00\x6b\x68\x4f\x7a\xc1\x78\x3f\xe5\xab\x03\x24\x4e\xa0\xa3\x13\x66\x96\xef\x90\xa3\xf1\x46\x6a\x48\xd7\x87\xe2\x9e\xb8\xaa\xeb\xc3\xc7\x78\xd9\xce\xe8\xa1\xa8\x13\xf6\x21\x6e\xde\xdc\x44\x91\xdf\x16\x07\x7c\x1c\x5a\x61\x87\xb7\x90\x15\x8e\x61\x4a\x84\x37\x92\x2f\xa8\xac\xa2\x41\xdb\xd2\xcb\xb0\xf7\x75\xb3\x61\x9a\x60\x46\xbd\xb5\xe9\xd7\x9a\x07\x75\xb2\x6b\xfa\xb7\x42\x61\xda\xbe\x5c\x28\x45\x4d\xd1\xeb\xbe\x5e\xb9\x7f\x4c\xc5\x0e\xef\x50\x6c\x1d\x8a\xbd\x7f\xc7\x62\x9b\x38\x8b\xaf\x48\x01\x92\x2e\x90\x3d\x3a\xf4\x31\xdb\x65\x0d\x7a\x81\x4c\x30\x41\x30\x5c\x75\x40\x68\xc8\x4d\xa0\xbb\x62\x0e\xfc\xde\x4b\x91\xaa\xae\x28\xfa\xea\xec\x89\xae\x5e\x64\x27\x7a\xbb\x4e\xcc\x02\xeb\x4f\xb2\x25\x3b\x4f\x99\xf4\x29\x4d\x19\x77\x61\x9b\xdc\x3d\x94\x3b\x2b\x4e\xde\x38\x59\x17\x0a\x00\x27\x92\x52\xc5\x1c\x2b\x14\xc6\xcc\xd0\xb6\xc5\x58\xa5\xd4\xa8\xe6\x61\xd2\xa5\x64\x61\xc2\xce\xa1\xb1\x5c\x7b\xee\x60\xd0\x03\x33\x1a\x16\x4d\xbe\x34\xe6\x97\x9c\x9d\x0e\xe6\x61\x1e\x07\x15\xf5\xc6\x91\x70\xe9\x9d\x03\xaf\x00\x50\x7d\xe3\x8f\x75\xff\x9e\xe8\x6f\xfe\x36\x73\x33\xa7\xa3\x55\xda\x40\x7f\x3f\xdb\x1d\xfe\x8f\xbb\xa2\xba\xa2\x97\xc7\x12\x8b\x83\xf6\x6a\x41\xf1\xec\x79\xbc\x10\x69\x84\x4a\x2a\x28\x5b\x1f\x51\x25\x5a\x25\xcd\x41\xe8\xfa\x47\xc2\xc5\x92\xf0\x9c\x9a\xfb\x48\xec\x9c\xbb\xf1\xb5\xa3\x6e\xdd\x7d\x0e\x68\x82\xfe\x6f\xac\xb6\x3f\x6e\xb6\x94\x8b\x19\xf7\x3d\x37\x7b\xfe\x3e\x43\x12\xda\x16\x31\xc8\x46\x2c\xb4\x61\x19\x1d\xb5\xd4\xeb\xbc\xbb\xfc\xea\xe2\xe2\xea\xe2\xbb\xdb\xdf\x20\x9b\xca\x64\x8e\x67\x32\x8b\x3b\xbc\xc8\x9d\xe3\x3d\x16\xe4\x7c\x20\x6b\xc7\x7b\x94\x0b\x42\xbc\xc7\xac\x4a\xf1\x1e\xcb\xa1\x52\x29\x54\x06\xa3\xb0\xd5\x50\x89\x63\x53\xc0\x29\xab\xf1\x7d\xa3\x8e\xd7\xca\x06\xbf\x63\x8d\xee\x16\xec\xd7\xbb\x39\xe2\x12\xd7\x57\xa6\x42\x54\x4a\xa8\x80\xd6\x7b\x6a\x8e\xcb\x7f\x33\xdb\xa2\xb9\x49\xe3\xfb\x1c\x13\x2e\xe0\x3f\x93\x73\xcd\xa3\x47\x37\x43\xbb\x55\xf6\x8d\xcb\xc0\x0e\xc2\xb2\xb1\xde\x3c\x32\xda\x60\xde\xfe\xd5\xe7\x61\xd9\x2e\xaf\x89\x36\x3b\x06\x56\xed\x4b\x2d\xaf\x36\x9b\x6b\xc8\xb4\x9d\xab\x5c\xfd\xca\x6b\x46\x23\x0c\xea\xc9\xeb\x86\x82\x1e\xf6\x10\xb1\x96\x3e\xf4\xa6\x1f\xff\x27\xe1\xf8\xd5\xa3\x23\x91\x4c\x57\xe2\xe8\xb1\xa3\x4c\xd7\x57\x1a\xda\x8a\x3e\x35\x33\xc3\x2e\x93\xe9\xd3\xad\xe3\xe8\xae\x7f\x5c\x38\xfe\x64\xa4\x73\xd0\xd7\xdd\x1d\x81\xdd\x60\x67\x64\x25\x1b\xdf\xbd\x3b\x9e\x0d\x91\x6f\xa8\x48\xdf\x34\x57\x0e\xbb\x59\xbe\xfa\xc0\xe5\xc6\xda\xef\x92\x5d\x78\x7d\x0a\xd6\xe9\xcc\x45\x80\x11\xce\x11\x2f\xd8\xf4\x1e\x20\xed\xba\x34\x62\xfd\x32\x9b\x6b\x2d\x2c\xcd\x46\xed\xc4\x6c\x14\x8e\x5a\xf1\x17\x42\x6e\xef\xa2\xc5\xa3\x6c\xe5\xe9\x6a\xd6\xa5\x83\xf8\x85\x24\xd5\xc7\xaa\x50\x33\x2a\xc7\xb0\x87\x2e\xd8\xed\xf8\xaa\x71\x72\x5f\x63\x6d\xdf\x71\xca\xf5\x6d\x17\x4a\xcc\xf5\x20\x1a\xec\x45\x36\xfa\x35\x34\xbc\xd7\xbe\x91\xc3\x6f\xbe\x90\xf4\xa9\xaa\xef\xcf\x80\x58\x09\x67\x84\x88\x93\x6e\xf2\x05\x2a\x20\x4c\xdc\xa6\x00\x8f\xf9\x15\x6d\x7e\x85\xc0\xa4\xd9\x5b\xd4\xc6\xc6\x9f\x77\x39\x8a\x7a\x11\x3e\x9b\x91\x3e\x65\xdb\xeb\x6d\xe7\x78\x28\xac\xbc\x25\xd6\x49\x05\xcc\xc8\x40\xb0\xc4\xf4\x1d\x90\xaf\x55\x4b\x6a\x41\x4e\x96\x5b\x65\x7f\xb2\x2d\x27\x14\x54\xf5\x6f\x99\x58\x9c\x8e\xf8\x41\x54\xa7\x99\x80\xaf\x1c\x7b\xd6\x1f\xb9\xd7\x6d\x81\x81\xbd\x77\xfa\x60\xbe\x14\xe8\x00\xb6\xac\xc3\x07\x12\x40\xe3\xa6\x31\xe0\xde\xee\x0d\xf6\xef\xb7\x81\xc0\x04\xce\xdb\x23\xf9\x28\x9a\x3c\x1a\x47\x80\x44\x4b\x41\xe3\xa8\x0d\xbd\xb6\x51\xaa\xc0\x1f\xab\x99\xd5\x0f\xde\x6f\xde\x7c\xf6\x6c\xe9\xcc\x19\x89\x6c\x78\xc7\x69\xb5\xcf\xd0\xc8\x82\x3a\x72\xee\xa2\x09\x58\x45\x4e\x9c\x9c\x32\xce\xca\xa0\x7e\x82\xbe\x6c\x46\x46\xd2\xb3\x69\xf6\xa1\x40\x98\x98\x96\xc0\x15\x40\xe9\x85\x83\x81\xe0\x15\x87\xe3\xc3\xfd\x9f\x4b\x87\x23\xe9\x74\xa4\xd3\x75\xc1\x0f\x97\xfd\xe7\x3b\xdd\x11\x1c\x5c\xfd\x17\x3a\x3b\x3b\x2f\xf4\x35\x57\xb9\xbf\x95\xba\x08\x4d\x98\x66\x16\x8f\x4c\xea\x89\x50\xb3\x7c\x38\xcb\x71\xff\xd4\x7f\xd2\x17\x7d\xf1\x43\x7b\x46\x0f\x1a\xcb\x60\x50\x71\x78\x3c\x99\x18\xf3\xba\xca\x8b\xfa\xb8\x36\xd6\xd3\x9d\x1f\x04\x8f\xd5\xb9\xca\x4d\x68\x32\xf4\xc0\x59\x6f\x72\x72\x62\x38\x38\x27\x5a\x98\xda\x3d\x70\xcc\x5a\xc1\x33\xc3\x30\xf5\x87\xda\x56\xed\x76\xa3\x52\x5c\xc5\x53\xe1\x3b\xc3\xa9\xee\x88\xb0\x7a\xaf\x72\x63\x4d\x4a\x61\x25\xd7\xb4\xe4\x79\x71\xfd\x9e\x86\xeb\xf6\x47\x44\x90\xb4\xe7\x11\xf2\x02\xba\x7e\xb9\x68\xe0\xfa\x0b\x3b\x94\xf8\x16\xd3\x2c\xee\x54\x9c\x91\xd8\xe9\x89\xd1\xce\x8a\xb0\x7c\xbe\x4b\xc9\xbf\x87\x0f\xbb\x88\x8f\xed\xda\xa1\xfc\xaa\x96\x1c\x1b\x4b\x9a\xdf\xcb\x13\xc3\x68\x24\x9a\x69\xc2\xa6\x9a\x0a\x82\xf5\x04\x4f\x65\xba\xb2\x3d\xf5\x24\xab\xf0\x17\x52\xe9\xef\x47\x84\xe3\xe7\xda\x28\xa9\x9b\xe0\x8b\x10\xfc\xe1\xf7\x07\x29\x55\xe9\xca\x77\xc4\x3a\x6e\xae\x57\x17\x6f\x1b\x9b\x8a\xcc\x52\x75\x0a\x64\x43\xb6\x03\x05\xf9\xa3\x21\x75\x62\x52\xdd\x3f\x39\x01\x59\xbf\xa9\x8d\x82\x7c\x4c\x55\x27\x26\xf8\xa6\xd6\xc4\x42\xdb\xf1\xfa\x45\xec\x19\x3e\xa7\x88\xe0\x33\x28\xfd\xe2\xc6\x1c\x95\x5a\x1c\xae\xd4\x76\xc0\xec\x27\x4a\x5c\x6a\x9f\x99\xdc\x10\x02\x90\x09\xb0\xff\xa4\xf9\xd0\x98\x98\x09\x81\xed\xfc\x1f\xa0\x8c\x7f\x57\xd4\xd0\xf9\x6d\xf2\xf8\x1c\xd9\x7c\x6f\xca\x29\x40\x06\xe2\x9c\xc7\x35\x78\x5f\x45\xa9\x6e\xc1\x82\x17\x62\xd2\x3b\x53\x0f\x7f\x64\xcf\x9e\x8f\x3c\x9c\x7a\xdf\xe9\x2b\xf7\x74\xbf\xf7\xbd\xdd\xf7\x5c\xb1\x25\xf6\xf4\xfe\x48\x96\xa0\xa2\x01\x0b\xdc\x9e\xe5\x3f\x64\xd2\x69\xe5\xe8\xed\x23\xf5\x87\x53\xef\xe4\x3f\xff\xe2\xf4\x2d\x4b\xde\xd2\xc1\x7b\xae\x9c\xe6\x99\x88\x39\x74\x90\x45\xac\x6a\x9b\xc0\xa4\xdb\x73\x19\xb9\xfd\xa8\xc2\xd2\x6d\x59\x95\xbc\x4b\xb7\xfc\x6c\x2b\x3b\x37\xd4\x5f\x62\xd7\x1c\x12\xe5\x16\x97\x0e\x21\x0a\x01\x6b\x22\x68\xa9\x73\x34\xc7\x03\x7e\x67\x96\x43\x9e\xca\x14\x0d\x28\x84\x07\x70\x48\x34\xa0\x8d\xf2\x09\xe9\xb0\x05\xf0\x49\x50\xa1\xd0\x11\x39\xf0\x16\x93\x10\x58\xcb\x7d\x18\x90\xb6\x1e\x9c\x0a\x06\x46\x3a\x1d\x53\xf9\x80\x5b\x09\xa5\x66\x66\x06\xdd\xe0\xaa\x11\x1e\x88\x45\x7b\x7d\x83\xf1\xbe\xbe\xa1\x48\x78\xb0\xb7\x2f\x94\xea\x71\x1d\x1b\x3a\xd3\xc3\xe1\xb8\x1c\xd2\x33\x77\x2d\x22\xfe\xd6\xff\xbb\xeb\xc9\x61\xd9\x7f\xf3\x94\x2f\xe4\xcd\x28\xa1\xb5\x73\x5d\x83\x9d\x9d\x3e\x97\x6f\x40\xed\xea\x81\x39\x50\xf5\xf7\x76\x47\xbd\x3e\xf5\x0f\x2d\x8c\x2e\xc1\xc7\x81\x2c\x87\x59\x8a\xbc\x81\x31\x4d\x36\x4d\x96\x6b\x84\xf7\xc6\xcc\xaf\x73\x23\x52\xa3\x01\xaa\x53\x06\x04\x2b\xd1\x28\x7c\xac\xb5\x45\x45\x93\x02\x48\x0b\xbb\x49\x69\x97\x54\x9c\x16\x10\xdd\x6b\xaf\x34\xca\x0c\x98\x3c\xe8\xac\x95\x0d\x10\x82\x19\xb0\x74\xc1\x1a\x5b\xbc\xb2\x0a\x47\xd2\x95\x2b\xb6\xed\x41\xdd\xf2\xd6\x4f\xb7\xac\x82\x64\xb2\x86\x6a\x83\xf8\x55\x6c\xdf\x01\x76\x8c\xe6\xa3\x7c\x5d\xb1\x4d\xa4\x70\x04\xd4\xf0\x80\x9b\x03\x1d\x5d\x03\x8b\xa9\x16\x9c\xbb\x42\x60\xc9\x6d\xf6\x28\x71\x18\xb3\x16\x71\x32\x6f\x51\x28\x59\x2c\x48\x18\x7b\x26\x93\xc0\x73\xb0\x46\x54\xe3\x1f\xf1\x42\x78\x81\x15\x45\x01\xd7\xc1\x87\x89\xa0\x14\xc6\xe5\x76\xa3\xa8\x90\x81\xbc\x9b\x51\x91\xec\x36\xfe\x89\x97\xa6\xd8\x85\x1b\x2f\xb0\x8f\x52\x16\x1f\xa6\xd1\x74\xef\xe1\xc1\x4c\x7a\xe8\x2a\x95\x76\xaf\x65\xaf\x47\xda\x82\xaf\xb0\x0d\x6b\xae\xdd\x05\x75\xde\x84\x11\x90\xcf\xe1\x6c\xa8\xe6\x00\x12\x9b\x10\x04\x42\x6d\x36\xc1\x85\x7c\x2b\xe6\xf7\x47\x5a\x90\x01\x47\x82\x41\xf7\x48\xe7\x95\x65\x39\x7d\x16\xc1\x04\x6a\xe4\xbf\xf7\x4b\x1c\x47\x80\xa4\x93\xbf\x6e\xa3\x07\x68\x9a\xde\x71\x83\xf2\x6c\x8f\x52\x09\xa5\x8e\x45\xe8\x3e\x4a\xff\x88\xe8\xc3\x16\xff\xfe\x07\xf4\xc4\x84\x33\xb9\x35\x5e\x55\x41\x41\xef\x1c\x9c\x89\xdd\xb0\x71\x9f\xc6\xc3\x80\x0e\xfb\xe2\xa5\x57\x8a\x7d\xf7\x1c\xbc\x33\x7a\x27\x3b\x16\xbd\x33\xca\x21\x62\x1b\x00\x0f\xfb\xd0\xc7\xa3\x97\x66\x23\x7b\xcc\xbb\xce\x26\xce\x9e\x4d\x9e\x4b\x48\x42\x39\x22\x46\xa9\x40\x07\x7a\xda\xca\x44\xeb\x58\x19\x36\xa6\xd0\x03\x8d\x09\x85\xb2\x0a\x14\xf6\x0a\x96\x6a\xf0\xa7\xd8\x10\x0a\x3e\x09\xc5\x25\xa0\x58\x28\x31\x65\x95\xc8\x11\x8d\x92\xe4\xf9\x4a\x90\x35\x1e\xa2\x5c\x9c\x21\x49\x6d\x4a\x6a\x69\xb5\x73\x63\x99\x24\x14\x6c\xd9\x60\x54\xfb\xe3\x81\x6f\x7c\x63\xf8\xfc\xd2\xdc\xdf\x9d\x64\xe1\x74\x74\xaa\x70\xf4\xf4\xa5\x29\xff\x40\x6c\x60\x88\xfd\x34\xd4\xe3\xcd\xd1\x01\x20\x33\x4e\x5f\x0a\x24\x3b\xce\xb3\x5f\xe8\x8d\xf5\x36\x5e\xfc\x86\x96\x07\x88\xda\x27\x4e\x36\xfe\x0b\xdc\x3e\xf5\xd0\xa9\x23\x05\x7f\x30\x1e\x18\x9a\x84\x9a\x5d\xe8\x48\x04\x1f\x3a\x35\x3e\x9a\x18\x18\x5c\x3a\x2f\xb6\x0a\x97\x62\x50\xeb\xd3\x5a\x57\x08\xb5\xbf\x03\xab\xf5\xff\xec\x7e\xd5\x3c\x14\xea\x15\x9a\xe3\xf5\x76\xfb\x7f\x75\x15\xbf\x7a\x49\x68\x8c\xb7\x34\xdb\xdf\x43\x92\xf1\xba\xc3\x45\xb4\x74\x04\x28\xc9\x59\xe9\x64\xcb\x2e\x06\x0c\x72\x93\xd0\x08\x19\x50\x1f\x12\x3d\x39\x1f\xc2\xae\x68\x7b\x37\xcd\x8d\x08\xc7\xaa\x65\x5f\x60\x9d\x37\xf7\x60\x6f\x67\x28\x25\xe5\x85\xfc\x35\x69\x6e\xd0\xdb\x27\x27\x22\xf1\x58\x24\x01\x18\xc8\xfb\x69\xb0\x37\x3e\x47\xbb\x22\x43\xa3\x03\x38\xd0\x60\x03\xe3\x03\x56\x09\xc1\xdf\xde\xcc\xfe\x03\xe9\x41\xb8\x37\xd1\xd3\x93\x90\x7b\xbc\x1f\x09\x74\x57\xd0\x28\xa0\xd2\x1d\x68\x1e\x7d\xb9\x0e\xa0\xe0\xcb\x78\xbc\xcc\x53\x9f\xb8\xea\x09\x56\x43\x05\xdc\xae\x67\x95\x83\x72\x2d\x30\x26\x69\xb7\x12\xb0\x75\x62\x24\x1f\x89\xef\x1c\xdd\x2b\xa7\x50\x9a\x67\xb5\xcd\x8a\xbd\x22\x79\x1f\xac\xb2\xf1\xc6\x37\x59\x69\x53\xfc\x44\xa3\xac\xe3\xe7\x07\xc7\xd1\xb8\x45\x5b\x55\xdb\xc3\x5c\xd4\x86\xf6\xef\x80\xbe\x91\x43\x5e\x4f\x05\x6d\x02\x66\xca\xad\xc0\xcd\x56\x61\x37\xcb\x09\x2d\x21\xb7\x40\x24\x98\xce\x8d\xc1\xc5\xb2\x03\x03\x03\x01\xc1\x56\x92\xcf\x9b\x13\x4d\x19\x56\xb3\xe4\xcc\x75\x6b\x40\x2e\xde\x7c\x32\x2d\x6c\x5f\x8b\x72\x0c\x9d\xbd\x63\x4c\xa2\xf9\xf5\xc9\x1d\x2a\x22\xd6\x84\xe4\xa2\xe9\x96\xef\x72\x53\x16\xbd\x6d\x0d\xfe\x9e\x8a\xd5\xe0\x6f\x6d\x4b\x03\x54\x48\xfd\xf3\x35\xa0\xee\xd1\xd6\xac\xbd\x50\xc1\x46\xd1\x23\xf5\x90\xf4\x23\x4f\x38\xf7\xdf\xa5\xd1\xc1\xfe\xb2\xdc\xb1\xfd\xc3\xd6\xc0\x09\xa5\x6c\x30\x69\xa7\xa7\xdc\x5a\x62\x81\xfa\xd0\xfc\xf5\x4b\x94\x40\x84\x64\xec\xf0\x96\x11\x78\xbf\xfe\x5d\xcb\xa3\x79\x2a\x65\x53\xcb\xd7\x2f\xae\x5e\x8d\xbd\xb7\x10\x7b\x6e\xfb\xe2\x2a\xd5\xd8\x7b\x0a\xb1\x9d\x0a\x6c\xb3\x90\x63\xc8\x72\x92\xce\x8e\x18\xd1\x2c\x89\xb6\x64\x12\x6d\x81\xed\x1c\x7b\x5f\xf4\x9e\x23\xc5\x62\x7e\xb9\xf7\x21\xd8\xe2\x74\xc2\x6e\x19\x9b\x3d\x72\x8f\x51\x2a\x1a\xcb\xf9\x58\xec\xd0\x72\x3e\x19\x8d\x5b\x57\x24\x21\x56\xb4\x47\x0a\xf3\x98\x9f\xb0\xc2\x16\xb6\x81\x69\x86\x61\x0b\x4d\xf6\xa6\x36\xb0\x66\x34\x3a\xac\xb4\xe1\x35\x3b\x84\x78\x33\x48\x4f\x6d\x1b\x68\x66\x53\x88\x19\x56\xdd\x1a\x5f\x06\xde\x90\x85\x9c\xd2\x69\x71\x11\x59\xcb\x48\x11\x22\xa9\x54\xc2\x7e\x62\x19\xaa\x86\xc1\x8a\xc4\x75\x34\xef\x76\x49\xbd\xdc\x16\xab\x10\x10\x7f\xb4\x5e\xb6\x7e\x67\x32\xa5\xb1\x31\xc5\xfc\xe2\xaf\x9d\x9b\x90\x67\x0a\xad\xf9\x02\xa4\x93\x21\x85\x56\xe6\xa0\x0c\x29\x31\xa7\x30\xdf\x59\x88\xb4\x73\x05\x48\xe7\x9b\x8e\x24\x32\x74\x2b\x1d\xbd\xf5\x26\x1c\xba\xee\x98\xd8\xe3\x5f\x3c\xb2\xe8\xdf\x63\x9d\xf4\x0e\xa4\x62\x53\xb0\x24\x4e\xc5\x52\x03\xbd\x4c\xe2\x8a\x03\xad\xc7\xab\xe8\x8a\xdc\xa3\x0f\xa5\x40\xd5\xd1\x23\xc3\x89\xb7\x07\x9a\x21\x15\x9b\x74\x3a\x27\x63\x29\x9c\x8d\x19\xbc\xf7\x6e\xb6\xc1\xfe\x5a\x0a\x59\xf6\x3f\x9e\x6c\xd6\x03\x06\xb5\x19\xf4\x67\x9f\x47\x9a\x49\x66\x7f\x29\x33\xef\x4c\x6f\xef\x97\x47\xce\xc4\x12\x7d\xc1\xdb\x8d\x5b\x33\x17\x12\x31\x7f\x6f\xd9\x15\x90\xf1\x72\xaf\x3f\x96\xb8\x90\xb9\xd5\xb8\xb5\xbf\x27\x11\x3b\x33\x22\x44\x82\xa2\x3e\x15\x40\xe0\x75\x12\x9e\xc8\xe8\xdc\x91\x56\x53\x41\x3b\xf0\x0a\xf8\xf6\xb7\x59\x58\x2a\xc2\x89\xd1\xb2\xc8\x4c\x58\xfb\xbc\x88\xa7\xe2\xe0\x58\x0d\xc9\x80\x9c\x64\x12\x6a\xb5\x9e\x65\x7d\x04\x30\xe7\xfe\x23\xc9\x21\x6a\x2d\xec\x51\x64\xaf\xf0\x9c\xd7\xdc\x4b\xb4\x24\xe7\x32\xeb\xb6\xae\x83\xd6\x26\x31\xfa\xa4\x60\x79\xd7\x16\x11\xd8\x06\x8e\x66\x00\x35\xd3\x5a\x9b\xea\x57\xe8\xaf\x8c\xfd\x80\x66\xb0\x0d\x1e\x1d\x0e\x22\x27\x25\x9e\x4f\x28\x89\xef\x53\xff\x85\xe7\x23\x0b\x35\xd3\xf6\xe3\xca\x12\xdf\x8e\x29\x2b\xdc\x75\x57\xcc\x34\xdf\x03\x5b\xec\xae\x8f\x93\xe3\xa1\xe5\xec\x24\x62\xf8\x11\x82\x33\x61\x4f\x6e\xe7\x67\xc1\x71\xfa\x36\x63\xf5\xa1\x47\x54\xdd\x34\x37\x63\xf3\x6d\x5d\x69\x7b\xb9\x5d\xb4\x1f\x9a\x27\x69\xdb\x25\x2a\xe0\xa7\xd5\x30\x21\x61\x35\x70\xa6\x42\xe0\x7b\x80\xbf\xa7\x51\x25\xa2\x17\xe1\xfd\x20\x2d\x77\xfa\x93\x96\x91\x23\xfa\x96\x9c\x08\xad\x86\x5e\x61\x12\xf1\x25\xac\xaa\xeb\x8a\xd2\xa8\x31\x89\x1a\x46\xb4\x8f\x76\x90\x55\x02\x45\x9f\xcb\x36\x97\x1f\xb5\x69\xce\x4c\xa4\xc9\x23\x8f\x18\x6b\x6b\x00\xdd\x6c\x99\x34\x43\x4b\x1a\x97\x5f\x25\x35\x1b\x2b\x42\xb5\xec\xb6\x15\x9e\x48\x26\x59\xd5\x54\x6b\x65\x6b\x8f\x41\xb3\xd3\xf5\x77\xf2\x90\xc9\x04\x69\xd8\x58\xc3\x74\x6a\xcb\x15\x66\x10\x7f\x70\xaf\xaf\xc3\x04\x83\x45\x48\x7c\x8d\x2a\x31\x0d\xf7\xd1\x09\x5d\xde\xd9\xeb\x74\xe8\xd3\x7f\x81\xbb\x18\xf9\xad\x95\xd9\x3f\xc2\x1d\x78\xd4\xcd\xa9\x5a\x86\x37\xaa\x48\xc9\x76\xc4\x1e\x8d\xb1\x8b\xf1\x6b\xd2\x63\xf1\x9b\x9f\x79\x26\xf6\xcc\x9f\xe3\x79\x8c\x7e\x7a\xf3\xaf\x3d\x1b\x7b\xb6\xcd\xf3\x27\xce\x3d\x7f\x02\x30\x4d\x6f\xe3\x7a\x43\x54\x19\xbe\x95\xab\xba\xb2\xc9\xeb\x26\x54\x46\x3f\x1f\x53\xdf\xec\x72\x53\x2b\x97\x45\x89\x8d\x2a\x25\x36\x4b\x6c\xb0\x8b\x00\xba\x3c\x19\x19\x05\x70\xb6\xa3\xee\x5b\xb1\x73\xd6\x51\x7a\x03\xbd\xed\x81\xc2\xef\xfe\x6e\x21\x56\x2e\xb7\xc4\x38\xb0\xec\x68\x18\xa6\xb2\xf1\xff\x5b\xd0\x16\xe0\x9b\xcd\xf4\x29\xf7\xf4\x05\x9e\xa6\x3d\x46\x36\x9b\x3a\xf3\x13\x67\x46\x69\xd8\xbf\x12\xec\xee\x0e\x76\x7f\xfd\x27\xce\xfc\x04\x2b\xd2\xd8\xdf\xdf\x8d\x57\x48\x1a\xc3\xbd\x60\xa6\xa8\xae\xb6\xa4\xda\x56\x63\x70\xb3\x16\x8e\xb3\x25\x9a\x14\xe5\x30\x61\x2f\xa3\xf9\x68\x22\xec\x3f\x03\x00\x3a\x67\xfc\xe1\xc4\x40\x32\x39\x00\xa7\x25\x30\x46\x45\x7b\x37\x85\xf6\xfc\xb2\x70\x97\xf5\xa3\x92\x60\x4f\x4f\x38\x71\x31\x29\xc3\x71\xd1\xe6\x90\x77\xe2\x52\x61\xfb\x91\x5c\x22\xfb\xca\x85\x4d\x72\x60\xe8\x8d\x46\xf2\x14\xb3\xe2\xd4\x74\x86\x20\xb0\x56\xdf\x25\x4a\xc1\x69\x2e\x14\x71\x5f\x3c\x9d\xf2\xf8\x8e\x58\xe2\xa7\x73\xbd\xf8\x4d\x2f\xa5\xf4\xd4\xbb\x48\xba\x40\xf8\xa0\x93\x4e\x4b\x4f\xc3\x71\xbf\x3d\x32\x93\xe2\xf9\xe9\xc5\xd0\xc1\xd9\xdd\x99\xcc\xee\xd9\x83\x73\x7b\x0f\xef\x1a\x9c\x9e\x3c\x54\x18\x9a\x39\x34\x31\x71\x68\x26\x7b\xd3\xd2\x92\xe4\x68\xe6\x31\x40\x54\xe9\x92\x93\x63\x18\xc8\xa9\x0c\xee\x94\x60\xcc\xa1\xaa\x01\x1b\xdf\x22\x3b\xe9\xb0\xca\x60\x8e\xe9\xc9\x79\x45\x4f\x84\x75\xef\xa8\x57\x0f\x27\x74\x65\x7e\x72\xda\xb1\x32\x7b\x30\xb4\x38\x9d\x8f\xc7\x0f\xef\x9d\xa3\x62\x1f\xd6\xc7\xf7\x4c\x86\x12\xda\x60\x28\x34\xa8\x25\x42\x93\x7b\xc6\x75\x07\xbb\xf1\xd0\xcc\x50\xe1\xd0\xe4\xf4\x60\x74\x69\xe9\xa6\x2c\x56\x46\xfa\xbe\xfb\x0f\xd8\x78\x7b\x20\x27\xb5\xe5\xc3\x2a\xf1\xab\xdc\x79\xb7\xa0\xb6\xa6\x98\x9c\xca\x25\x20\xbf\x7e\xb6\x1f\x85\x7b\xe3\xf1\xc1\xdb\xbb\x7a\xac\xb9\xa6\x6a\x7e\x9d\x88\xee\x1b\xce\x0e\xc6\xc7\x97\x00\xfd\xbc\xff\x75\x5e\x3e\xdf\x98\xbc\x9c\x79\xf6\x55\x8a\x62\x91\xe4\x76\xa6\xa4\x60\x00\x9c\x0e\xcb\x3f\x38\x8b\x0d\x89\xa4\x12\xb7\xdc\x67\x77\xdd\x17\x7f\xfd\xe8\x34\xe8\xcc\xcc\xf9\xf8\x44\x76\x97\x57\x77\xfd\xbb\xec\x6e\xaf\xee\xbd\x69\x61\x2f\x5d\xfb\xe5\xd7\xc7\xef\x1b\xa2\xa3\xe9\xf4\xc8\x7f\x98\x4e\xcf\x9f\xa0\x13\xa9\x7b\xd3\x6c\xdd\xc7\x39\x61\xc4\x9d\x20\xab\x93\x39\x69\x41\xda\x23\x49\x76\x24\x7e\xb7\x1d\xfa\xc1\x6d\x87\xf0\x97\xf1\x2a\x5c\xa1\xa0\x6f\x14\xb2\x47\xe6\xa1\x09\xe6\xe6\x9b\x61\x98\x0d\x1d\x43\xf0\x33\x09\x17\x09\x8a\xa4\x42\xe7\x30\x9c\x8b\x48\xf0\xeb\x26\x85\xd1\xe5\xee\x78\x48\xa9\x40\x5c\x7c\xb8\x87\x49\xeb\x18\xd7\x9f\xf3\x3f\x78\xaa\xf3\x58\xfe\x4c\xc2\xcb\x3c\x52\x73\x47\x3b\x4f\x47\xb2\x8d\x51\x8a\xa1\x40\x1e\x0f\x39\x2b\x80\x5e\xa0\xcd\x7a\x9c\xe2\xcd\xc2\xe6\xc7\x9a\xdb\x90\x08\x50\xbc\x66\xd6\xeb\xb4\x66\xe3\x2c\x66\x82\x57\x22\x85\x70\x85\x3f\x03\x13\xf8\x92\x49\xe4\xe1\x47\x49\xc3\xe4\xf5\xbd\x06\xd7\x34\x8a\x1e\xcd\xe9\xc2\x22\xab\x50\x8d\x3a\x39\x1e\x94\xe5\x05\xc1\x6d\xee\xb5\x4a\x05\xf8\x5f\x7d\xa3\x52\x31\xcd\x7f\xa9\xa4\xd7\xb5\x45\x67\x22\x8d\xb4\xe1\xde\x39\xda\xa5\xf4\xfb\xc6\x13\x80\x02\x5a\x24\x64\xa8\x22\x26\x89\x1c\x97\xcf\xd3\x95\x5f\xa5\x2b\xd7\x24\x3a\x61\xfa\x16\x79\xb6\xc2\xb5\x01\xcc\x82\x27\xca\x71\x3c\x47\x98\x75\xe0\xb0\x80\x3e\x01\x4d\xd5\xdc\xfe\x20\xa8\x25\x35\x10\x79\x76\x47\xc2\x5a\x38\xac\x1d\xa4\x52\x58\x5f\x70\x10\x22\xb2\xa6\xa0\xc1\x86\xbb\xa3\xd1\x64\x57\x32\xfa\x7e\x4d\x63\xab\x54\x50\x9b\xc4\x2f\xba\x55\x6e\xee\x16\x74\x21\x9b\x22\x6e\xf9\x62\x85\x82\xfd\xd9\x24\x42\x77\x0a\x5f\x58\x1a\xbf\x3a\x69\x19\x06\x89\x06\x81\xdc\xf8\xf4\xc8\x69\x4d\xfe\x50\x18\x49\x62\x8e\x49\x89\xe5\xbe\x5b\x76\xa3\xe0\x66\x21\x36\xbe\x77\xe9\x02\x48\x72\x8c\x92\xe3\x9c\xc1\x8a\x17\x27\x22\x85\x3a\xc8\x7a\x16\xe2\xe3\x08\x19\xb6\x54\x72\x9e\x3b\xdd\x8c\x6f\x5b\xa3\xb7\x8c\x16\xb2\x2a\xc9\x11\xea\xab\x46\xbd\x6e\xac\x96\x8a\x10\x9c\xa6\x6a\x62\x5b\x9a\xf0\x8c\x26\xb7\xf5\x23\xa9\x31\x76\x47\x35\x0b\x6a\x58\x67\xd2\x86\x54\x44\xa0\x8b\x35\x8c\x4e\x07\x07\xc5\x6b\xb0\xb1\xae\xe2\xf2\x32\x80\xf2\x2d\x33\xe0\x7b\x8b\xb8\xc1\x0f\xed\x9c\xc8\x87\xbd\xf9\x5b\xb3\xf9\x9b\xba\x7d\x6b\xd3\x12\x96\xda\x35\xdb\xf4\xdb\x6b\x61\xa2\xec\x64\x05\x7b\x00\x2c\x40\x67\x38\x5c\xc1\x66\x23\x58\x56\x44\xf3\xcf\xa8\x5e\x23\x0b\xf0\x4f\xb7\x5b\xc1\xb6\xcf\xb1\xbd\xad\x39\xb6\x65\x8a\xa8\x69\x76\xaf\x80\xc1\x54\x35\x4d\x1b\x46\x43\x72\xb5\xad\xd4\x2a\x45\x69\x52\xda\x35\x4e\x2a\x5c\xdb\xd0\x6e\x11\xfa\x41\x4d\xc3\xac\x36\xc4\x0e\xf0\x15\xd3\xdc\xa4\xe9\x8d\xc1\xdb\xe1\xae\x98\x85\x1d\xc8\x8c\x8d\xf5\xf5\x62\x53\x92\x04\x0d\xdc\x40\x9a\xa5\x0a\x72\xcf\x62\x0d\xf4\x4e\x75\x7c\xce\x52\x89\x8d\x97\x80\xb8\xa0\x59\x79\x0e\x5a\xf6\x3f\x4a\x1e\xce\xf5\x91\x5a\xb6\x60\x49\x09\x0b\x4c\xba\x98\x39\xf9\xf9\x59\x50\xc3\xce\x3e\x7e\x3b\xcb\x5f\x04\x6e\xf6\xe4\x3f\xce\xbe\xf7\xee\xbb\xdf\x3b\xfb\xb8\xc4\x9a\x51\x93\x7a\xc8\x4e\xb6\x35\x19\xe5\x66\xd9\x63\xb7\xdd\xd6\x1d\x22\xb8\xb2\xab\x21\xf6\x8e\x77\xbc\xa3\x9f\x1a\x57\x72\x34\x7f\xe3\xe2\x14\x4c\x16\x5c\xe8\xda\x7e\x5a\x04\xf0\x54\xd6\x2d\xfc\x1e\x20\x51\xd6\xff\xba\x99\x85\xd4\xd9\x6c\x5d\x6e\x65\x1d\x96\x62\x84\xa3\x3b\xcd\xa3\x29\xa4\x73\xf3\x68\xb8\x12\x94\xc1\x80\xd4\x93\xc5\x63\x90\xd6\xa8\x70\x12\x02\xa7\x34\x8f\xac\xa0\x49\x50\x96\x22\xda\x42\xbf\x41\x93\x66\x38\x87\x6b\xf6\x5b\xbd\xed\x98\xc7\x73\xcc\x39\xb6\x37\xb1\xaf\x33\xec\x74\xde\xed\x74\xce\x0e\x76\x9f\xed\xde\xd5\x19\xdc\x9b\x48\xec\x0d\x76\x9e\x3e\xe6\x74\x1e\xf3\x54\xf1\xda\x63\x78\xfe\x79\xae\x9d\x1c\x8c\x0d\x2a\xe3\x2f\x04\x17\x46\xcf\x2a\xe3\x0a\x7c\xde\x3a\x36\x3e\xbe\x3e\x3a\x12\x5c\x58\x5b\x08\x8e\x8c\x6a\x70\x65\x30\xf6\xf3\x70\x6d\x1c\x4f\xcd\x76\x9d\xa1\x57\x8a\x5a\x18\x22\x88\x10\x11\xc8\x6f\x89\xbb\xc1\x60\x25\xf9\x7a\xec\xeb\x27\x57\x75\x9b\x20\x45\xbd\x7e\xe5\x24\x5c\x6b\xac\x57\x2a\xa2\xda\xcf\x03\xb9\xc2\x77\xac\x2c\x5a\xf3\xb5\x90\x45\xd2\xb4\xf1\x55\x8e\x96\x08\x0c\x0c\x62\x6d\x1c\xf8\x95\x95\x11\xdf\x95\x87\x07\xe2\x07\xff\x46\xe3\xcf\x2e\xd3\x49\xba\x6d\xdb\x5b\xbf\xad\x1c\x21\x08\xbd\xd2\x74\x08\x32\x71\x6d\x6e\x95\xf7\x65\xa8\xc4\x18\x94\x79\x91\x2a\x52\x5c\x5f\x67\x92\x50\x1e\x56\x83\xca\xe4\x55\x81\xd1\x2b\x94\xdc\x45\x3d\x8b\xf3\x0b\xd7\xb1\xb8\x6f\x2f\x7d\x69\x8b\xd9\xbd\x58\xba\xbe\xbd\xe5\x3d\x2f\x5f\x9c\x79\xfa\xa4\x01\x6e\x51\x42\x96\x46\x72\x96\x13\x99\xaa\xea\xd8\x11\x58\x97\x5d\xea\x8b\x87\xd4\xde\x3e\x88\xec\x17\x8a\xf7\xde\xf2\xf9\xed\x70\x76\x7f\xa1\x0f\x30\xb6\xfb\xfa\x7a\xf1\xc6\x5b\x98\x6f\x3b\xd0\x5d\x89\xf1\x3a\x38\x24\xe2\xa0\xb7\xb2\x49\x84\x4e\xce\x04\x34\x57\x98\xff\x34\x66\x8a\x88\xc4\xe0\x4c\x27\x7a\xe2\x3a\xa4\x1e\xbe\x66\x65\x03\x82\x1b\xc3\x36\xfc\x2b\xf9\x2d\x84\x36\x71\xb0\x8d\xbf\xd3\xe8\x32\xd3\x44\x1e\xd6\xd1\xf4\x65\xa4\x59\x91\xf1\xf5\xca\x9e\x15\x71\x8a\x4c\x42\x19\x4d\x07\x14\x09\x3d\x22\xae\xf6\x87\x91\xb5\x6a\xac\x17\xc9\x03\x87\xe9\x25\xd3\x5c\xe7\x45\xe9\xf5\xba\xce\xcd\xd0\x7e\x30\x23\x53\xf0\x1d\x14\x30\xeb\x28\x62\x5f\x5a\xa6\x19\x5d\x56\x48\x2c\x59\xe0\x6b\x2f\x97\x17\xb2\x50\x19\x6c\x67\xe1\xa8\x08\x1b\x1e\xc0\x29\x0a\x5e\xe1\x03\x87\x0a\x26\xa2\xcc\xa3\x9b\xdb\xae\xa6\x0b\x22\xf9\xde\x2e\x7a\x69\xf2\x8a\xf7\xc6\x96\x7a\x17\x4e\x2f\x2c\x8c\x46\xc2\xef\x68\xbd\xca\xe7\x89\xc2\x7a\x2a\xb6\x14\x8e\x8c\x2e\xc0\xd7\xbd\xff\x43\xb4\xd1\x2b\xc7\xf1\xeb\x1f\x88\x9c\x45\x88\xf4\xdf\x25\x4d\xb5\xa4\xfe\x48\x0a\xb6\x5e\xeb\x7c\x0b\x44\x3b\x04\x04\xb9\x60\x83\x68\x23\x1c\x91\x0b\xe7\x95\x89\x25\x1d\x28\x38\x7d\x69\xe2\x8a\x6d\x7f\xb8\x41\xfe\x57\x98\x58\x4e\x9d\x13\xde\xa3\x53\x18\x6d\x60\xea\xa8\x77\xc2\x0e\xf4\x2f\xca\xa7\x69\xb6\xdb\xaa\x7d\x28\xec\x80\xd8\x21\xe8\x1d\x8a\x9b\x01\x3b\x4c\x05\xf5\x0d\x0a\x93\xb8\x3e\xb7\x0d\xb5\x83\xca\x84\x3f\xd6\x70\x48\x50\xe6\x41\xe9\x06\x01\xd1\x57\x0d\x71\x79\xa5\x2c\x07\x61\x91\xcc\x03\x10\x00\x9e\x66\x0a\x85\x39\x98\x6e\xf2\x78\x80\x6a\x36\x38\x85\xe1\xaf\xa8\xe4\x93\x8f\x3f\x41\xa6\x96\x8b\xb6\x53\x4c\xce\x58\xc0\x19\x0f\xaa\x4e\x87\xe2\x74\x45\x9c\xbd\x2e\x8f\xe6\x71\x79\x3b\x23\x6e\x87\xe2\x70\xaa\x8c\xe1\x17\x0e\x77\xc4\xe7\xa1\x2f\x5c\x3d\xcd\x2f\x4e\x1d\xb8\xdd\xf1\xf7\xac\xca\x7a\x96\x69\x9e\x70\xf8\x9d\xae\xb4\xdb\xd1\xe5\x94\x87\x5c\xae\x21\x97\xa7\xcb\xe1\x4e\xbb\x9c\x7e\xe6\x75\xc9\xac\x1f\xbe\x72\x39\xba\xbc\xce\x41\x97\x6b\xd0\xd1\xd1\xe5\x80\x53\x67\xbf\x53\x76\x78\xd7\x6e\x3f\xe0\xed\x61\xd5\xbf\x77\x34\xd1\x85\x36\x6c\xe9\xe3\xf6\x5e\xbf\x4d\x46\xab\x2c\xf8\x53\x9b\x40\x6f\x95\xb7\xba\x53\xaf\x9b\x26\x70\x4e\xff\x6a\x36\x88\x4e\x1e\xc3\x89\xe8\xdf\x90\x14\x17\x30\x50\x94\xa0\xc8\x26\x37\x19\xcb\x0a\xd3\x97\xf3\xcb\xaf\xda\x11\xc2\x18\x3c\x08\xf2\x8e\x26\x3e\x41\x6d\xc5\x58\x29\xb7\x10\x56\xc2\x9a\x6e\x07\x16\xdc\x14\xbb\x3e\xc9\xe7\x20\xf9\xba\x40\x0c\x4c\xaa\x99\x46\x3b\x3a\xc7\xf4\x6d\x04\x42\x51\xab\x18\xf3\xed\x20\x0c\xb7\x4d\x13\xe0\x84\xfd\x3c\x9c\xe3\xec\x46\x59\x76\x3e\xc5\x65\x09\x2a\x63\xf3\x1b\x1a\xfc\x29\xcf\x3e\x76\x0d\x78\xdd\x47\x58\x91\x46\xad\x72\x4b\xe3\x37\xd8\xe2\x45\xd1\xaf\x90\xde\xe6\xf6\x5a\x4e\xb7\x92\xda\xa2\xdd\x64\xc5\xb5\x6d\x54\x9b\x45\xce\x41\x76\xc1\x7b\x7c\x0d\xe7\x32\xa2\x2a\x01\xd4\x13\x80\x46\x11\xfb\x29\xc0\x2a\x2b\x2b\xc5\x95\x85\xcf\x16\xf9\x8e\x00\xc5\xef\x6a\xfc\x2d\xa6\xac\x47\x6c\x31\xaa\x0b\xe9\x79\x5a\x48\x08\x5c\xd9\x83\x75\x79\xea\x10\xf0\x3e\x87\x62\x05\xe0\x7d\x0a\xc7\x35\xf6\xc3\xbb\x2f\x60\x74\x89\x0b\xbb\x63\x13\x47\x97\x80\x1b\x3a\x3a\x7e\x03\x08\x6e\x7f\xc0\x48\xe4\xce\x36\x8f\x03\x89\x91\x55\xc4\x16\x6e\xb7\x6b\xa5\xef\xd2\x8c\xc8\x28\x96\x2f\xed\x8a\x1e\x02\xb0\x82\x36\xeb\x33\x3b\xb7\x6e\xf2\xee\x24\xc4\x6b\xdb\x50\x46\x25\x25\x0e\xf7\xe5\x87\x01\xd5\xdd\x51\x2f\x82\x60\x16\x7c\xf1\xc1\x21\xbc\xb8\x01\x4a\x73\x05\x63\xa8\x95\x98\x8e\x3d\xc3\x00\xc9\x6d\x0d\xbe\xd7\x6b\xad\x48\x1f\x75\x1e\x2f\x94\x30\x17\xfc\x6a\xa1\xf5\x0f\xaa\xa1\xe6\x7f\x9a\xcf\xfe\xb4\x19\x89\xed\xff\x58\x82\x64\x26\xb4\xe9\x6c\x4d\xfc\xaa\x51\x12\x4e\x5e\xb3\x55\xc4\x92\xe4\x6e\xca\x13\x7c\x44\x0d\x25\xa4\xfd\xa4\x11\xc5\xc8\xf2\x1e\x5c\x92\xa9\xc0\xf6\xb0\x10\x5b\x48\x34\xcb\x21\x5f\x2d\x58\xc6\x18\xac\xfa\x86\x89\x94\xe1\xf5\x1a\xa9\x89\x37\xe0\xda\xc4\xd5\x98\x3c\x15\x96\xa9\x29\xb0\x62\x4f\x06\xbb\xba\x82\xe0\xea\xe4\xaa\x9b\x7b\xc2\xe7\xbb\xba\xce\x87\xf7\x98\x00\xc6\xc7\x0c\x21\x76\x44\x2c\xdc\x0f\x84\x05\x25\x68\xd4\x3e\xd8\x0b\xe0\x9a\x11\xb9\xa7\x39\x3e\x38\x0f\xd9\xd9\xf2\xa5\x91\x03\x01\x62\x1f\xd7\x37\x36\xc0\x9d\x0e\x16\x43\x0a\x32\xfb\x83\xe4\xef\xbf\xdf\x18\xdc\xdf\xf7\x1e\x6c\x48\xcb\x3c\x52\x8b\x88\xbf\xa6\x62\x96\x96\x65\x32\xbd\x38\xf5\x47\x4f\x23\x49\xf2\xea\x6a\x62\xd5\x93\x99\xdb\x7d\xe6\xcc\xc3\xa7\x93\x9e\xfa\x02\x5d\x84\x6b\x7e\x4f\xf2\xf4\xc3\x67\xce\xec\x9e\xcb\x78\x70\x3e\x98\x80\x1a\xfe\x27\x7a\xe2\x7d\x94\x67\xdb\x8a\x4a\x6c\x67\xb6\xb5\xa2\x02\x4f\xd8\x5a\x4f\x89\x9c\x16\xd6\xd3\xe0\x9f\x91\xf5\xfe\xd5\x09\xd9\xad\xbb\x3a\xf2\x4a\xaf\xd7\xe1\x2d\xc1\x16\xf0\xe7\x3b\x5c\xba\x5b\x9e\x60\x6c\xe7\xaf\x5e\x1e\xc7\x1f\x77\xa6\xdc\x1d\x27\x64\x00\x8b\xf6\x2c\x74\x74\x2c\x78\xbb\x15\xa7\x7c\xa2\xc3\x9d\x92\x07\xe5\x9d\xbe\x10\xac\xd4\x0a\xd2\x51\xe9\x14\xd0\x05\x73\x59\x0b\xe6\x9c\x70\x58\x91\x2d\x40\x44\x72\x48\x55\x15\xda\x0b\x77\xa1\x42\x21\x04\x29\xd4\x1f\x9e\xa2\x80\xa7\xf0\x83\x1d\x69\xc0\x4b\x2c\xe1\x76\xc5\x9c\x9e\x74\xb7\xcf\xe3\x70\xef\xf1\x30\x4f\x5f\x47\x1a\xae\xb8\xdc\x09\xb6\xf3\x57\x99\x96\x0d\x2b\xe9\x81\x22\x7f\x17\x74\x0f\xb8\x3c\x73\x6e\x47\x6f\xa7\x3b\xeb\xf1\x8c\xca\x72\xaf\xc3\x93\xf3\xb8\x06\xdc\x3b\x7d\xf1\x7b\xe2\xd4\x5f\x89\xd8\x51\xcf\x24\xfe\xbc\xa4\x1b\xe0\xe8\x96\xa9\xb6\xce\x9f\x9b\xb3\x8d\x50\x7f\x12\x83\x8a\x1f\xc8\xc5\x46\xa7\x96\xd0\x82\x09\x35\xf4\x1b\x94\x11\xab\x41\xf7\x1f\x8d\x45\xa9\xfb\x17\x8b\xa7\xf7\x51\x1d\x25\x8f\x84\xc0\xaa\x4f\x38\xb0\x1c\xb7\xad\xfd\xdc\x1e\x5d\x30\x80\x3c\x8e\x4d\xd7\xed\x1d\x1d\xdd\x2b\x60\x0b\x1a\xfa\xba\xae\x6b\xbf\x37\x7a\x9a\xc9\xa7\x47\x6f\xb9\xf5\x09\xc0\x15\x7c\x0c\x71\x05\x1b\x92\x4e\x7f\x90\x37\x2e\x64\xa6\x43\xda\x49\xc7\x2a\xa2\x9b\xa4\x68\x23\x64\x13\x32\x16\xa1\xa4\xa2\x9b\x9a\xa9\x57\x69\xb6\x2c\x12\xe1\x00\x17\x51\xd5\x6e\x97\x21\xd8\x18\xb9\xe1\x28\x4c\x36\x3a\x0a\x36\x92\x0c\x38\xbd\xa0\x64\x54\x71\xf2\x00\x9a\x21\xab\x6e\xb3\x26\x23\x1a\x44\xe6\xc1\x44\x22\x6f\x7f\x5e\x6d\x5b\x9f\x0d\x13\x8d\x19\xf3\xc2\x1d\xfb\xb7\xae\xd7\x64\xf7\x7d\x99\x7d\x87\xbd\x00\x47\xa8\x97\xe3\x58\xa8\x84\xf9\x2a\x5b\xd1\xd9\x71\x9f\xe5\x38\xb1\x4f\x3e\xfc\x70\xf2\xb6\xdb\x1e\x84\x89\xbd\xaa\x47\x6e\xbb\x2d\xf9\xf0\xc3\xec\x85\x17\x5e\x88\x5e\xba\xf4\x2e\xcd\xfa\x7b\xd7\xa5\x4b\xd1\x17\x5e\xe0\x74\xc5\xb0\x85\x48\x3d\x28\x8d\x52\x3f\x50\x52\x16\xab\xef\x56\xb8\x08\x35\x9f\xc9\xf3\x49\x21\x23\x7c\xf9\x89\x2f\x3f\xaf\xc3\xab\xd7\x41\xa7\x18\x33\x8c\xd8\xf1\x04\xcc\x5e\x6f\x7e\xea\x3c\x86\xce\xd1\xd8\xc6\xf3\x77\xe0\x4a\x7f\xc7\x0f\x1f\xe1\x5f\x1e\xe9\x1e\x41\x9c\xb6\x91\x9f\x3f\xbf\x84\x0c\xf8\x92\xe4\x11\xd0\x5d\x42\xd2\x30\xd9\x58\x1e\x86\x37\xd7\xc2\xfc\x76\x2a\xf4\xb2\xa8\x64\xb5\x75\xa8\x30\xbc\x85\xee\xc8\x14\x5a\x77\x6f\xba\x9d\x95\xcd\x81\x80\x0e\x4f\x6f\x62\xac\xa8\x2a\xbc\x60\x58\x3b\x1a\x45\x53\xd3\x03\x03\x55\xf8\x4a\x0b\x0c\x14\x35\xfc\xae\x1b\x74\x01\x4a\x42\xbe\x78\xb1\x97\x9d\x47\xf9\x27\x68\x4e\x6f\xe7\xbb\x8e\xc6\xba\xa6\x4d\xf4\x5e\xbc\x28\x27\x14\xba\x07\x8f\xd8\x3e\xeb\x26\xe9\xff\xeb\xf5\x17\x91\xf1\xc9\xaa\x82\x46\x1f\xdf\x54\x0e\x88\x98\x6d\xc5\x07\xa8\x6a\x21\xf8\xd7\x15\x63\xcd\x50\x2c\xd5\xb9\xa1\xc1\x9f\x61\x98\x26\x6d\xc8\x33\x48\x92\x6c\xb7\x49\x53\xc7\x90\x95\x72\xd2\x22\xcc\xa4\x6d\xb6\xec\xed\xd2\xd9\x90\xfd\x3d\x1f\xaf\x54\xaa\xc7\xfa\x05\x5b\x22\x7e\x6a\x2f\xa5\x9f\x22\xc3\xc9\xd7\x7d\xf9\xf9\xe7\xbf\xfc\xfc\x07\xe8\x4a\xb5\xbf\x07\x00\x88\x30\xe1\xae\x14\x35\xb2\x43\x7e\x9a\x8e\xff\xe0\x12\xde\xce\x16\x9f\xc7\xfb\x3f\x49\x5f\x7c\x93\x7e\xf4\x34\xa5\x92\x67\x13\x4d\x1d\x82\x91\x3d\xb8\x93\xfd\x60\x00\x08\x01\x25\x8b\x9a\x34\x35\xd5\x4e\x61\x6f\xe8\x7a\x31\xcf\xf2\xf9\xbc\xa9\x97\xb6\x21\xb5\x1b\x1b\xf3\xf3\xc0\x36\xc1\xdf\x17\xe6\x39\xa5\x27\xa2\xbe\x8d\x7e\x0f\xb8\x6f\x59\x32\x32\x14\xb1\xdf\xda\xb9\x8e\x01\x5d\x47\x71\xf6\xca\xf6\x8c\xc7\x0b\xd6\x4c\x59\x94\x24\x8e\xd4\xd6\xc2\x81\x4a\xa2\x6e\x6e\x07\xea\xdd\x6f\xcf\x96\x86\xde\x79\x02\xe4\xd2\x27\x62\x7b\x01\x0b\x64\x69\x42\xd3\x50\x7a\xc9\x3e\x39\x77\x01\x3d\x83\x2e\xcc\xc5\x32\xc7\x10\x60\xf8\x58\xfa\x5c\xbd\xde\xb0\x67\xcc\x8b\x92\xc2\x3e\xed\x90\x28\x22\xf5\x00\x3d\x25\x87\xe7\xc8\xce\xcb\xf3\xfc\xa8\x29\xd0\x6c\x47\xf7\x92\xee\x3a\x18\x5b\x78\x71\x21\x76\xb8\x63\xfc\xa9\xf1\x58\xfc\x62\x7c\x91\x96\x14\xc2\xfe\x33\x31\x71\x48\x87\x63\x0b\xf0\xfd\xdb\xc6\xe1\xeb\xf8\x27\x6d\xbb\x87\x6b\x12\xf6\x7b\xa4\xb0\x25\x37\xae\x3e\xc4\xfb\x92\x4c\x96\x47\xc3\x67\xcd\x60\x02\x39\x7a\x4a\xa7\xf5\x7c\xf3\x9c\x74\xa5\x37\x80\xd7\x58\x05\xd0\x92\xf3\xcb\x23\x07\x6f\x3d\x38\x03\x43\xcf\x4d\x52\x86\xaa\xce\xf4\xf9\xb3\xde\x23\x47\xbc\x67\xe7\xa7\x96\x96\xa6\x40\xbb\x07\x7f\x1b\xc0\x65\x44\x32\x98\x34\xbe\xa3\x0b\x71\x19\xb9\x05\x49\x84\x2c\x85\x0a\x34\xa4\x9a\x9d\xa9\x39\xa8\x6a\x2f\xbe\xa8\x94\x34\x93\x13\xc0\xb0\x2b\x41\x5a\x2e\x96\x21\xd7\xc6\x06\x07\x82\xa1\xb0\x8d\x92\xab\x89\xa4\xc9\xf3\xe4\x32\xa7\x3c\xe5\xda\xa4\xbc\x9b\xb9\xba\x95\xa4\x7d\x8d\x49\x97\x2f\x17\xf5\x32\x2a\x22\xfa\x07\x56\xc3\xfd\x20\x86\x6b\xd4\x58\x71\x00\xcf\xc3\x60\xa9\x88\x45\x71\x5a\x5a\xc7\xd4\xdc\xc0\xe2\x36\x04\x4a\x1a\xe9\xe8\xe1\x16\x35\x97\x05\x5b\x18\x2c\x02\x34\xf8\x1c\x26\x94\xf7\x55\x04\x5e\xe1\x90\xd5\x8a\x69\x3c\x78\x2f\xa0\x5e\x8d\xba\x3b\x12\x8d\xab\x89\x8e\x79\xd6\xdd\x71\xef\x6d\x9e\x01\x0f\x27\x39\xde\x7f\xfb\xed\xd0\x2d\xdf\x1f\x88\xc7\x7f\xc3\xe1\xea\xf0\xbd\xa7\xa3\xe3\xff\x8a\xf8\x7c\x72\x93\xba\x16\xa5\xf8\xe9\xeb\x44\x72\x6b\x43\x32\x03\xa6\xb8\x5c\xe6\x80\x08\x42\xd0\x1b\x86\xac\x06\x7d\x4c\x7e\xd0\x6e\x0e\xe0\x04\xfd\x78\x82\x53\x15\x34\x4a\x2c\x24\x75\x6c\x65\x8c\x37\x10\xc8\x05\xd8\xd7\x62\xaf\x3c\x10\xbb\xf1\x43\x17\xc6\x8b\xe1\xc7\x06\x26\xde\x30\xfa\x06\xd6\x11\x7b\xe5\x0d\xb1\x53\x3f\xff\xc8\xab\x86\x81\x26\x61\x30\x8f\x8b\xbe\x69\x22\x02\xad\xa3\xd9\x4a\x03\xa7\xef\x1f\x1b\xbb\xff\xf4\xc0\xc5\x0b\xc4\x15\x98\xf7\x1d\xee\x58\xb9\xc3\x7b\xf8\xbe\x79\x16\x27\x8e\xe0\xfb\x15\xc3\x86\xe4\x42\x65\x56\x65\x95\x66\x4b\x36\x75\x21\x79\xf8\x3d\x4a\x9a\x8a\x24\x9e\x84\x0d\x64\xf3\x15\xad\x4a\x8d\x53\xe5\xbe\xc8\x3a\xd7\x56\x11\x1a\x0c\x8f\x0b\x33\x0b\xf3\x11\xe9\xd9\xe6\x61\x81\xa0\xa3\x76\x68\x82\x5a\x68\x28\x57\x29\x1c\xf8\xd0\x89\xd3\x57\xfd\x34\x4c\x1f\x21\xb6\x6a\xc3\x33\x38\x39\x0d\xde\xc7\x7d\xa1\x44\x64\x7a\x3a\xb2\x42\xa2\xc0\x45\x2e\x4d\xe5\x7a\x31\x8a\x69\xed\x21\xb9\x87\x2d\x10\x26\x40\x79\x56\x2b\x5e\xb9\x02\x26\xd5\x45\x66\xa0\x0c\xdb\x84\xad\x28\x58\x96\xd1\x2f\x02\x5c\xfa\xad\x92\x3c\x39\x57\x23\x59\xb7\x51\x84\x1d\xff\x31\x84\x9b\x10\x38\x36\xf8\x05\xb5\x28\xb5\xa5\x9a\xa5\x35\x36\xdb\xd4\x80\x5d\xce\xeb\xf9\xe5\x17\x31\x99\xa0\x77\x83\x6a\xdb\x57\x60\x3b\xd1\x44\x2d\x50\xa4\x3c\xdb\x60\x2f\x43\x8f\x8c\x89\xda\x01\x21\x4e\xbc\x1f\x2c\x26\xb2\x3c\x9c\xa0\x60\x38\x68\x9a\xcc\x34\xe9\x19\xd8\xcb\x76\xd8\x78\xec\x9d\x1a\xaa\x9f\xb4\xc6\x46\xb1\x86\x08\x55\x22\x5d\xcb\x31\x8f\xb6\xd2\xaf\xb5\x6a\x5d\x5c\xed\xca\xf5\x22\xc2\xff\x6d\xf6\xa3\xeb\x6d\xe6\xc4\xdf\x7c\x9f\x15\x73\x3e\x21\x65\xc9\x9e\x62\x0e\xa8\xa3\xbd\x5c\x9e\xc0\xe7\xdc\x02\x6c\x32\xf7\xd8\xe7\xc6\x21\x01\x6b\x73\xf2\x37\xed\xb4\x6d\x2b\x54\xbc\x06\xd5\x68\x6a\xd1\x58\x59\x33\xb1\xd7\xe8\x91\xc6\x47\x09\x87\x04\x26\x62\x90\x4c\xd6\x49\xbc\x6b\xea\xa0\x61\xb0\x4c\x2e\xa8\x63\x55\xe1\x3b\x1c\x89\x0d\xe8\x6a\xb8\xbf\x26\xc1\x1e\x26\x80\x22\xc8\x04\xc9\xf0\x82\xcc\xf5\xe0\xb7\x6b\xa4\x84\x93\xfe\xed\xe3\x3a\x72\x1a\x8a\xca\x1f\xe4\x08\xf2\xd4\x24\x3c\xae\x3e\xa1\xd0\x41\xc2\xe3\xd5\xb3\x4a\x09\x35\xcb\xdd\xef\x51\x3b\x94\x67\xe0\x39\x99\x73\x7f\xe7\x10\x62\x05\x71\x43\x93\xee\xf7\xaa\x1d\xdd\xf2\x9d\x61\xbf\x63\xcc\xeb\xbd\x12\xe1\x79\x73\x0c\xe2\x01\xca\x5b\x46\x42\xb4\xa9\x10\x26\xb4\x1a\x82\xb6\x73\x03\x18\x3e\xdb\xe0\xd9\xd5\x5a\xf9\x37\xb4\x12\xd3\x79\x5e\x62\xf6\xff\x0c\x9c\x13\x71\x93\x98\xc0\x4e\x25\x5b\xb7\x56\x9d\xe7\x00\xbc\x20\x43\xdf\xe7\xa9\xd2\xbc\xca\xd9\x2d\x25\x7a\x3c\x58\x24\x7b\xb5\xa7\xbf\x63\xd5\x2f\x3b\xbb\xd8\x83\x1d\x3e\xc7\x4c\x47\xf0\x34\x26\xef\x13\xaf\x32\x3d\xd0\xfd\x42\x4f\xc7\xfd\x7e\xb9\xb3\x67\x4e\xf6\x75\x44\x9d\xde\x87\x82\x45\x4a\x37\x7d\xb1\x93\x5e\x96\x22\x98\x58\xd8\xf2\x49\xae\x9f\xa5\x8d\x55\xe8\x3d\x35\xcc\x96\x7e\x16\x44\xb1\x26\xbe\x22\x5b\x39\xbb\x19\xd1\x5c\xa6\xc8\x3d\x90\xd3\xf5\x30\xc5\x41\x93\xbe\x1d\x9e\x38\xd3\xcb\xc5\xed\xd0\xc4\x45\xb4\x00\xee\x69\x25\xf5\xa3\xd2\x25\x93\x21\x90\xd5\x76\xaf\x22\x03\x23\x37\x00\xc4\xea\x8f\x50\xfc\xd5\xdd\x24\xf4\x61\xda\x4d\x14\xe3\xe1\x11\x44\x56\xfd\x6f\x14\x76\xf5\x55\x92\xfc\x48\x12\x6b\xce\x47\xf9\xa6\xb4\x96\xe6\x8f\x26\xe9\x97\xf7\x34\x69\xbf\x82\x7d\x71\x5e\xbc\xca\x3e\xb4\x84\x93\xd2\x05\x25\x04\x8b\x79\x68\x70\x04\xa4\xf8\xe1\x58\x06\x4a\xd9\x3b\xb9\x0f\x7d\xb5\x67\xe1\x06\x80\xc4\x84\x7b\x7e\xd2\x17\xc6\x27\x0b\xfb\x26\x20\xec\x17\x5a\xf0\x24\xa3\x31\x1e\x83\x02\x94\x3f\xba\x77\x65\xff\x91\x7b\xee\x39\x02\x21\x5f\x37\x61\xf2\x75\x4a\x29\xb2\xe8\x2f\x04\x52\xb4\xfa\xc9\xc4\x78\xa2\xc3\x26\x48\x88\x9a\xbe\x74\x20\x48\x62\xe7\x0e\xa7\x42\x2b\xfa\xc0\x3d\x03\xfa\xca\x0d\xfe\x03\xe5\xd8\x1b\x46\x07\x74\x65\x70\x32\xf4\x9d\x2b\xda\x95\x7d\x11\x20\x92\x6f\xdb\x75\x4d\x42\x47\xc7\x07\xc6\x0f\xac\xc6\xca\xe3\xf9\xd1\x78\x6e\x9f\x0e\x33\xc5\xe9\x45\x46\x2d\xc1\x2d\x9d\x79\xbc\x18\xb2\x71\x86\x7f\x85\x15\x67\x5e\x5f\xfc\x78\xcc\x2c\xbe\x7b\xc6\x6c\x1d\x71\x1f\xfe\x2a\xdc\x5f\x94\x3c\xb4\x56\x24\xe1\x9f\xc1\x14\x58\x63\x06\x57\x73\x8a\x39\x12\x2d\x6f\xc3\x54\xb1\xa2\x39\xf3\xee\xa2\x19\xfb\x78\xf1\xf5\xcc\x6c\x1e\x4a\xff\x8a\xbe\x02\x22\xa6\x1b\xf9\xf7\x72\xbb\xf5\x80\x8a\x4c\x27\x46\x33\xe2\x9e\x1e\x66\xed\x8d\x67\xcf\xbe\x91\x3b\x76\x30\xa9\x64\xde\xfc\x81\x60\xf0\x03\x37\x9b\x44\x5b\xd8\xde\xd1\xd8\xe3\xdb\x2d\x02\xdc\x6d\xe7\x1c\xaf\xbc\x51\xc1\x94\x95\x85\xe3\x5a\xcb\x26\xb9\x2e\x18\x23\x93\xc6\xda\x64\xb5\x26\xbd\x20\x15\x60\xe2\x41\xfc\xb3\x24\xec\xab\x35\xc5\x30\x1a\x75\x83\x1e\xcb\xde\x38\x85\x5d\x16\xd0\x23\x89\x7b\x42\x2e\x46\xc5\x49\xcb\x04\x7d\x73\xb5\xa8\xac\x33\x73\x63\x63\x43\x63\x46\xa3\xb6\x4d\x29\x8c\x97\x40\xff\xac\x58\xc6\xf0\xea\x4a\x99\x55\xda\x4b\xb1\xb9\xb4\xa6\x4d\x47\xfb\xf3\x3a\x61\xf4\xeb\x28\x4c\x66\x66\xeb\x61\x15\x7c\x57\x86\x4e\x9c\x0a\x25\x0d\xf0\xc0\xbd\x1e\x65\xe4\xb6\x66\x21\xa2\x8c\x5a\x1b\xab\xe0\xe2\x60\xaf\x4a\x1e\xfa\x3d\x3d\xc3\xf7\x62\x69\x42\x26\xed\x7c\x6b\x54\x4a\xf8\xc7\x2a\xc5\x7a\xb1\xb8\x5a\x2a\x95\x8b\xd6\x01\xe5\x69\xb6\xe7\xc9\xdb\x93\x7c\xe5\x04\x79\x19\xe6\x89\x2d\x65\x42\x43\x6d\xc0\x7f\x19\x9a\xcb\x34\x4d\xdc\xf8\x8e\x68\xbf\xb6\xdc\x68\x86\xc4\x5c\xa8\xad\x61\x5f\xdf\xd8\x30\xcb\x8d\x0a\x35\x36\xfc\x88\x5e\x2c\x59\x5c\x89\xbf\x6c\x3e\x53\x91\xc1\xbd\xcc\xba\xd5\x7a\xef\x74\x57\x2f\xb7\xa1\x67\x6d\x6c\x63\xae\xed\x3c\xd5\x76\xce\x08\x12\x99\x0c\xe6\xd7\x31\x31\xf0\x74\x83\x8e\x30\x61\x15\x64\x20\xe9\x88\xd2\xed\x8f\xf9\x9c\xb5\xc2\x36\xd8\x8b\x36\xd6\x9d\xcd\x8d\x08\x33\xb4\x4a\xae\x37\xf3\x7f\x45\x14\x69\x90\x7c\xf5\x07\x3f\x6e\x0e\x0e\x9a\x98\x30\x83\xa8\xd1\x77\x91\xbf\xfe\xef\x5c\x38\x76\xec\x02\x6c\x92\xc5\xe5\x5d\xb5\x68\xb1\x34\xce\xd3\x01\xb2\x02\xb7\x9c\x5e\x0b\xd9\x56\x8c\x74\x18\xbb\x74\x06\x46\x56\x99\x8c\x4a\x7e\xaf\x58\x28\xf7\x7b\xfd\x5f\xce\x48\xe6\x13\xbe\x7d\xe3\xea\x40\xd2\xeb\x89\x64\x1c\x1f\x8a\xb2\x27\xa2\xee\x7c\x8f\x3e\x7b\xca\x1c\x0c\x17\x7c\xfa\x37\x82\x81\xc9\xec\xe4\xa9\xb7\x0e\x0e\xcc\x2c\x79\xf7\x21\xd4\x9c\x2b\x37\xa0\x8e\xef\xf3\x25\x1d\x99\x88\xc7\xfb\xa1\x68\xe3\xdd\x51\xf7\x5c\x4f\xff\x85\x63\x4b\xe3\xbe\xf1\x82\x77\xb2\xf7\xc2\xb1\x45\x6d\x29\x10\x1c\xdf\xf7\xff\x79\x1d\x91\xc8\xe9\x0d\x6e\xb6\xa3\xe0\xbe\xb1\x59\x99\x43\x4d\x6e\x31\xa6\x28\x15\x8b\xb4\x67\xba\x69\x02\xe3\xcc\x14\x60\x95\xfb\xc3\x18\x71\x2a\x0c\x07\x03\x4d\x1d\x66\xdd\x1a\x49\x13\x9b\x3d\x44\xdd\x96\x55\xd3\x96\xa6\x68\x22\xa2\xb2\xaa\xa1\x9b\xba\x81\x25\xc2\x38\x6b\x3d\xb4\x01\x9c\x79\x7f\xb8\x6e\x6a\xf0\xc7\x9f\x54\xd7\xf5\xd6\x03\x92\x8c\x40\x17\x71\x18\x9c\xd2\x90\x85\x96\xb5\x73\x59\x7a\x69\xbd\x55\x42\x89\x64\x0f\xcc\xdc\x9a\x2d\xad\x6d\xcb\xa4\x25\x4b\x70\x3b\xf2\x7c\x76\x1b\x1d\x81\xf5\x16\x55\x56\x5e\x8d\x97\x3d\xd0\xbd\x93\x89\x40\x90\xec\x59\x4e\x5c\x38\x9b\x3f\xbb\x6b\xf7\x99\x61\x4f\x7d\x35\x51\xee\xf3\x24\x03\x71\x2f\x59\xc1\x14\x8b\xbb\xce\x9e\xd9\x9d\xcb\x92\xee\xc8\x8e\xf1\xe5\xa0\x35\x56\x4d\xca\x30\x05\x30\xe9\x87\x1a\x7f\x29\x93\x09\x42\xa5\xae\x6b\x4d\xc9\x0a\x61\x08\x10\xad\x90\xe5\x06\xcf\x9e\xeb\x44\x7f\x66\x52\x74\xf7\xee\x28\x6c\x47\xb7\x0b\xff\x5c\x59\x8c\x46\x16\x17\x23\xd1\xd3\xfb\x2e\x80\x05\x3d\x63\x7a\xb8\x65\x7b\x13\x16\x2c\x4b\x89\x1a\x23\x09\x52\x3f\x3e\x27\xca\xbe\x97\x1c\xb6\x35\x5c\x68\x1b\x43\xd3\x3f\x3d\x32\x6b\x68\xc1\x81\x20\x10\x4a\x5a\xef\x66\x93\x53\x73\x36\x15\xdd\xa5\xaa\xc9\xde\x50\x0f\xd6\x21\xf5\x8f\xa2\x6a\xee\x0f\x48\x72\x46\xdc\xe9\xce\x2b\x85\x18\xad\x8c\xb6\xcd\x2b\x85\xd3\xd6\xee\x11\x15\x89\x52\x8c\x16\x84\x61\xce\xb3\xa3\xae\x8f\x49\xba\xa2\xc3\xe7\xb6\x6d\x74\x7e\x4c\xc7\x6f\xf4\xf2\x76\xaa\x3f\xa1\x3c\xee\xad\x4f\xb3\x7e\x68\xc7\x72\x80\x2a\xee\xd9\xae\x08\x43\x29\x6d\x9b\x3d\xcd\x86\x40\xbf\x30\x03\xf2\x27\x99\xb2\xcd\x8b\x15\x9a\x63\x96\x6b\x3e\xac\xc7\x54\x9a\xe7\x70\x0f\x9e\xb3\x57\x74\x1d\xbd\xd1\xf5\xc4\xe5\x95\x44\xe2\x0a\x6c\xc5\x44\x42\x4f\x80\xb6\x55\x51\xf2\x81\x6e\xa5\x3b\xa0\x9b\xa0\x08\x5f\x59\xc1\xad\x4b\x37\x51\x8c\x2b\x58\x24\x70\x5d\x4b\x98\x38\x78\x5b\xc4\x06\x99\xa7\x39\xf5\x4f\xa5\xb0\x32\x0f\x0a\xda\xa8\x19\x06\x5b\x35\x80\xe8\x60\x25\x63\x7d\x83\x94\x4b\x70\x6a\x54\x51\x48\x8e\xfd\x3c\x0f\x79\xbe\xc2\xea\x96\x8c\x05\x94\x8a\xf9\xb8\x03\x3e\xa1\x90\xec\xf1\x64\xdd\xd8\xe9\xf5\xb3\x4f\x0d\xc7\x83\xab\x63\x8b\x0f\x75\x77\x3b\x5d\xa1\xee\xc6\x87\xd9\x95\xc6\xea\xef\xa8\x89\xce\x37\x7a\x67\x07\x7f\xb2\xab\x16\x73\xa9\xdd\xdd\x3e\xe7\x41\x1a\xf1\x59\xc8\xef\x8f\xd8\xcf\xf2\xfc\x24\x8c\x98\xdc\xeb\xc8\x20\xe9\x89\xdb\x3c\x65\xf8\x4d\x4f\x77\xf7\x53\x67\x1f\x1a\x96\x67\xe2\xda\xea\x85\xb1\x0f\xbc\xa9\xbb\xf1\x18\x66\xc9\xf6\x45\x42\xae\x64\x28\xd6\xe9\xbb\xc9\x9b\x18\xfc\x48\xd7\x73\x31\xd7\x9f\x53\x9e\xa6\x54\xc4\x2e\x25\x75\x51\xcc\x21\x2e\x28\xcd\x61\xcf\x2e\xe4\x68\xb0\x9b\x64\xe9\x05\x64\x7f\x59\x5b\x5e\x59\x59\xae\x23\x7d\x0f\xa4\xfd\x6b\x8f\xae\xac\x50\x0c\x07\xe8\xb9\xf0\xae\x3a\x2c\x9c\x88\x94\x05\x14\x41\xab\x31\x19\x32\xe6\x04\x4f\x8a\x45\x87\x92\x62\x15\x98\xcf\x12\x2b\x00\x11\x70\x42\x4b\x58\x6b\xf1\x65\xb4\x5f\x50\x12\xba\xe9\xeb\xe8\x32\x12\x3a\x5e\x2a\x75\xf8\xcc\x4d\x91\xc1\x03\x96\x94\x6a\x8b\xe7\xfd\xba\xe8\x75\x0f\x7c\x5c\x5d\xe4\xb4\x36\xeb\xd2\x49\x62\xc6\x69\x62\xe4\xe4\xed\x21\xfc\x27\xff\x2e\xf6\xd0\x58\x6c\xdd\x02\xea\xad\xd3\xd9\x8f\xa0\x98\x80\x0b\x65\x3c\x20\xdb\x3e\xcb\x7e\x82\x7d\x86\x66\xa2\x7e\x68\xfb\x01\xc2\x76\xb3\x5c\xe5\xfb\x2d\x55\x06\xf4\x41\x04\x77\x21\xa1\x00\xcb\x1f\x3a\x74\xc7\xa1\x43\x6f\x04\xc3\x81\x52\xe9\x81\x62\x11\x03\x58\x3c\x0b\x57\xe0\xc3\x3a\xf1\xda\x53\x17\x0c\x20\x5c\xe9\x8b\x36\xcf\x86\xa9\xad\x9e\x0d\xea\x30\x74\xfc\x1c\xbd\x17\x0e\x7a\x93\xb7\x51\x6e\x52\x73\x18\xbc\x46\xf4\x76\xf8\xc6\xe8\x68\x6f\x30\x13\x52\x62\xa3\x30\x21\x65\x92\x01\x25\xe3\x74\x3b\x3a\x37\xb9\x3d\x44\x77\x7b\x76\xfb\xbb\xc3\x81\xfe\x69\xcd\x33\xa6\x46\x03\xca\xa0\xec\xe9\x74\x74\x42\xfb\x2c\x41\x3d\x7e\x0d\xea\x31\x2f\x9d\x90\xee\x91\x9e\x92\xde\x8b\xa3\x00\x0a\xe0\xc2\x72\xea\x1a\xdc\x27\xcb\x83\xda\x0a\x0f\xc5\xc9\x81\x8a\xd8\xec\x63\x66\x98\xae\xab\xd0\xbd\xb3\x84\x38\x36\x4b\xc7\xa9\x61\xcc\x01\x40\xda\x60\xdf\xcc\x6b\x78\xd3\xed\x4e\xe8\x6e\x18\x94\x96\x9f\xe1\x6d\x19\x19\x4a\x49\x0f\x53\x38\x54\x4f\xc6\x7a\x5e\x0f\x5b\x72\x4e\x26\x27\x33\xf3\x59\x80\xd4\xbd\xc5\x98\x3c\x19\xf0\xf5\x38\x83\xce\xbe\x5e\xe5\xfc\xdc\xf1\xfb\xb2\xf3\x19\x30\x23\x1b\x1d\xd4\x3a\x1c\x8e\xbd\x85\x31\x47\x4f\x47\x07\x73\x74\xf9\x7a\x46\x23\xb9\xae\xce\x5d\x2e\x67\xb4\x4f\x3d\x7a\xf7\xd1\xd0\xee\xb3\xbb\x03\x00\xd5\xe3\x75\x3e\x2f\x7b\x5c\x89\xe9\xd9\xc7\x66\x67\xe2\x9e\x8e\x4e\x77\x74\x62\xf2\x81\xc9\x89\x41\x27\x1b\x77\xb1\xc5\x3d\xfb\xe7\x3d\x1d\xee\xdd\x47\xf7\x1b\xb2\x4b\xf7\x25\x27\xf7\x23\x08\x9b\x7f\x60\xc0\xbf\xa7\x34\x95\x0d\xa7\x46\xd3\x9d\x9e\x8e\x89\x1b\x63\x13\xf3\x77\x1d\x8e\x8c\x8c\x44\x70\x6a\x5f\x18\x1d\xec\x62\x3e\xef\x8f\xa4\xe7\x1d\x4e\x77\x97\xc3\x11\x48\xed\xee\xfa\x51\x67\x34\x36\x3a\x37\x75\xe8\xd0\x54\x67\x67\x16\x3a\x1e\x84\x8b\x1d\x92\xbd\x4e\xe6\xe8\xf4\x4c\x0e\x44\x22\x03\x13\x9d\x6e\x4f\x47\x56\x55\xd9\x80\x3a\xea\xba\xc4\x62\x31\xa7\xdc\xe5\x4a\x24\x5c\x7d\x76\x34\x8c\x3f\x62\x1b\xc2\xba\xc0\x11\xbf\xb2\x18\x1a\x26\x0d\x83\xfd\xec\x63\x7b\x1e\xff\x5b\xd8\x2e\xee\x61\x93\x7b\x1a\x8f\x12\xfd\x3f\xff\xf8\x9e\xc7\xfe\x16\xb6\x8b\x7b\x1a\xdf\xd8\x13\xd1\xc5\xa8\xd1\xdd\x84\xbf\xc8\x31\xf4\xb8\xad\xb3\x1d\x15\x5b\x08\x17\x9e\x9f\x0b\x34\x87\x2c\xdb\x3b\x09\x8b\xe8\x64\x7f\x09\xa2\x47\x1b\xc4\xdb\x18\x45\x93\x86\xe6\x7f\x4d\x14\x50\xab\x5b\x48\x74\xcf\xcc\xfc\xe3\xf9\xa5\x1b\xc7\x67\x70\xcc\xce\x8c\xdf\xb8\xd4\xf8\xb2\xa2\xc0\xf1\x0e\xf6\x6b\xe9\x36\xa0\x21\xd9\xb6\x5f\xab\x46\x04\xab\xc3\x92\x65\xc0\x46\xe7\x24\x60\x7f\x1b\x71\x1c\x4d\xeb\xc0\x0e\xd2\xa3\x2d\xe0\xda\xc3\x41\xa7\x72\x64\x87\x0b\x99\x91\xa3\x86\xa5\x58\xb5\x19\x01\x71\xf1\xb0\x69\xbd\x6b\xfb\xf3\xc1\xb9\x7c\x30\xbf\x5f\xa9\xa1\x88\xd4\x64\x0a\x4a\xe8\x2a\xa4\x86\xa9\x95\x89\x97\xa5\x04\xa8\xe5\xa5\x6c\x76\x29\x63\x80\x16\x05\x19\x47\x84\x43\x26\x4b\xe6\xfe\x81\x86\x79\xe5\x0a\x30\xba\x35\xb8\x0d\x13\x9c\x4b\xef\x91\x24\xf6\x29\x78\xe2\x41\xc2\xf6\x45\xe1\x9a\x87\x9b\xc1\x10\xdd\x9b\x53\x9b\xce\x9e\x6a\x73\x1c\xc8\xfc\x65\xb0\x1f\x0e\xf4\xb1\x7e\xdf\xfb\xbb\x51\xfa\xd5\xc9\x9c\xec\x38\xe8\x2b\xfd\x20\xe9\xd2\x61\x89\xd4\xc0\x64\xf8\xf3\x1d\x41\xd7\x43\xbe\x5e\xfc\x9a\xf5\x7e\x0b\x15\xa0\xa6\x63\x76\x70\x0e\x88\xae\xd1\x7c\xf4\x34\xaa\xda\x85\x37\x8d\xd4\x68\x9e\x23\x85\xe3\x03\x5b\x51\x7b\x68\x48\x02\xf2\x12\x68\x91\xc8\x86\x85\x02\x3e\xf0\x66\xa3\xbb\xec\x20\xd0\xfd\xe3\xde\xdd\xd9\xf1\xa5\xe9\x74\x60\x20\x13\x51\x92\xf3\x5a\x88\xc9\x1e\x90\xff\x2c\xcc\x1a\xd0\x56\x65\x7f\x84\x20\xca\xcd\x34\xb8\x0f\x82\xcf\xe0\x38\x10\x6f\x91\xcc\xc0\xd7\x07\x06\xbb\x99\xd3\x13\xcf\x6a\x63\xc7\x01\xaf\x7f\x35\xe2\xff\x43\x8e\x5f\xee\xe0\xfc\x3b\x97\xbe\x93\xbe\x02\x5f\x8f\xcc\x83\x1a\x33\x10\xa3\x83\x73\x1b\x24\x1b\x14\xe1\xc7\xc0\x54\x8c\x53\xe9\x6c\xa2\x5a\x5f\x3f\x76\x21\x3e\x83\xb5\x6d\x17\x51\x50\x21\x78\x96\xe2\xc6\x06\x69\x6a\xc9\x4d\x87\x81\xa0\x58\x83\xbf\x2b\x1a\xfd\xb5\xfb\x97\x71\x94\x74\x84\x5a\x07\x96\x2b\x9b\x0f\x85\x54\x30\xb0\x69\xca\xe7\x98\x32\x7d\x5c\x36\xbc\xaf\x3f\x6d\xca\xc7\xa7\x4f\xbf\xde\x7b\x75\xf6\xc6\x1b\x67\x01\x7d\xfd\xcc\x03\xf2\xb1\xe9\xd3\xf7\xcb\x57\xa7\x8f\xc9\xfb\xe1\xeb\xb7\x7a\x4b\x0f\x94\xbc\xfb\x11\x88\xdd\xdb\xa6\x23\x40\x0a\xc3\x2e\x60\x9b\xfc\xa3\xdd\x1f\xf6\xde\x7f\x6a\xd4\x37\x78\xea\x7e\x2f\xb9\xea\x60\xee\x5f\xf1\x26\x6e\x78\x40\xbe\x9a\xf0\x7e\x58\x7e\xe0\x86\x51\x79\x78\x74\x58\xfe\x30\xcf\xbb\x4b\xd0\xe8\xd0\x6c\xd1\x86\x08\x4e\x34\x25\xf1\xe6\x22\xa7\x2f\x6c\x05\xe1\x98\xe8\xcd\x3a\x7a\xdc\x83\x75\x35\x1a\xcb\x40\x7a\xb5\xfc\xda\xea\x6b\x20\xd1\x40\x83\x3a\x1c\x2a\xcd\x3f\x0b\x90\x5a\x8c\x7e\xf4\x3d\xd2\xb1\x90\x19\x50\x4b\x57\x42\x21\xc3\xb6\xd2\x2e\x5b\x98\xdd\x8a\x34\xd5\xb2\xd2\x26\x48\x8b\x56\xac\xdb\x16\xaa\xa5\x9c\xb2\xc3\xde\xe6\xf0\x1e\xf6\x24\xb1\xdf\x3f\xbe\x67\x8f\x9c\x0c\xa2\x8e\x36\x98\xbc\x36\xb6\xb0\x74\x71\xaf\x67\x31\xe5\xdd\x95\x9d\x58\x5a\x9a\xf8\x7b\xfd\xe4\xed\x15\xe2\xc6\xdd\x7a\x40\x85\x83\x81\x1f\x76\xee\xd1\x27\xf6\xee\x9d\x08\xf6\x2f\xa6\xa7\xf7\x5e\x5c\xd2\x35\xee\x4d\x3b\xcb\xaa\xec\x77\x25\x0f\xd1\x0b\xc9\x39\xc4\x80\x2f\x34\xcb\x2d\x98\x4c\xca\x5c\xbc\x98\xf9\x47\xee\xbb\x55\x2f\x64\x6e\xbf\x2d\x73\x6c\xf6\x08\xc5\x2d\x9d\x7d\x9c\x78\x66\x8d\x68\x49\x9d\xac\x21\x0e\x4a\xcb\xf0\xae\x63\xb2\x27\x84\x6b\x1a\xda\x95\xd1\x0a\x07\xdd\x0b\x3f\x30\x35\xe0\xda\x46\x4b\x5f\x68\xde\xb6\x98\x68\xdb\x7b\xac\x3d\x7b\x93\xa3\xdb\xd5\xed\xf4\xb1\x0e\xa7\xdb\xd9\x95\x95\xcf\x0d\xba\x06\xcf\xc9\xd9\x2e\x67\xd0\x1f\xea\x4c\x76\xf6\x07\x5c\x4e\x4f\x97\xcf\xed\x74\x05\xfa\x3b\x86\x9d\x64\x5d\xf8\x56\x4a\x3f\x21\x1c\x7f\x05\xf2\x80\x30\x75\x9e\x3e\xd9\xef\xd2\xbc\xac\xb3\x93\x79\xb5\xa0\xd6\x1f\xea\x1a\xed\x0a\x79\x1c\x8c\x39\x3c\x70\x78\x86\x1c\x15\x2e\xc3\xfd\x74\x00\xe9\x3c\x1d\x40\xeb\x54\x25\x9d\x15\x59\xdd\xd2\x73\x71\x3a\x9c\xcf\x66\x21\xbb\xbe\xac\x68\x18\x1a\xb4\xaf\x56\x21\xe0\xff\x0d\x08\xd6\x75\x05\x5f\x89\xff\xad\x78\xda\x44\x71\xba\x2a\x7a\xa7\x32\x3b\xe6\xac\xb5\xf7\xd8\xa8\xbb\x76\x9e\x3f\xb6\xb4\x94\x1a\x1f\x4f\x25\x12\x23\x3d\x3d\x3f\x87\xd8\xb9\xa5\x59\xb4\x20\x67\xf5\xfd\xd5\xa5\xe1\xdc\x3b\xa6\xd3\xa9\x0b\x89\x91\xc0\x44\x60\x8d\x50\x74\xdf\x43\x76\xe7\x92\xd4\x65\xd3\x90\xe2\xa8\x10\x70\xf2\x25\x46\x7a\x46\x42\x10\x0c\x31\x3e\x9f\xd0\x66\x5b\x0b\xc8\x82\x9c\xcd\x8d\xc7\x84\xd9\xa1\x67\x22\xab\xab\xe3\xfb\x1a\x26\x4e\x2c\x34\x42\xf8\x1f\xd3\x28\x2d\xae\xae\x62\x14\x9c\xc6\x97\xac\xab\x34\x6a\x9a\x4e\x5f\x25\x9c\x8e\x48\x4e\x29\x91\xac\x16\xb4\x9f\x34\xc3\x71\xe6\x29\x1f\xe2\x26\x92\xb4\x64\xc1\x25\x8f\xac\xe6\x6c\xe5\xae\x53\x05\xab\x33\x06\x7c\xc7\x87\xe4\xee\xc8\x42\x7f\xac\x2f\xc0\x02\x43\xc1\x93\xc1\xa1\x77\x27\xce\x90\x4a\x7e\x65\x5e\x5f\x4e\x00\x0f\x92\xf8\x10\x9b\x64\xe1\x40\xb2\x6f\x30\xf8\x64\x24\x78\x72\xc6\xdf\xfd\x6e\x56\x26\xad\x7c\xe3\x9f\xe6\x4f\x24\xa0\x60\x78\x03\x26\xdb\x60\x26\xb6\x81\xc4\x01\x69\x05\xc0\x5a\xfb\x4c\x84\xad\x25\x86\x6e\xde\x3e\x63\x1b\x11\xbf\xd7\x79\xd2\x01\x99\x3a\x0a\x9e\x4e\xcf\x1d\x78\x84\x97\xee\x60\xa0\xa4\x67\xf3\xce\x3e\xfa\x92\xdd\x3b\x1c\x66\x27\x3d\x6e\x9c\x73\xdd\x9e\x82\xc3\x71\x07\x1c\x13\x96\xc5\x1d\x4e\xaf\x9f\x7e\x30\xcf\xd8\x32\x5e\xdc\x84\xf4\x19\xb3\xad\x5e\xd5\x14\xcc\xc0\x32\x0a\x96\x0a\x9c\x02\x1e\x06\xba\x13\x6b\xc1\xba\x4e\xf4\xde\x52\x7f\xff\xe2\xf8\x93\xe3\x7a\xe9\xa9\x71\x5d\x5f\x00\x23\x92\x85\x4b\x1f\x5f\xd8\xcd\xcd\x74\x57\x27\xf6\x8c\x33\x7d\xfc\xb1\x0b\xe3\xfa\xde\x53\x85\x85\x85\xc2\xc7\x2e\x2d\xec\x69\x43\x76\x21\xcb\x8a\x94\x92\x69\xea\xce\xfd\x2b\x09\xee\x77\xfa\xe9\xc1\xdd\x0f\x9a\x56\xc4\x0e\x46\x36\xb8\x1b\x0e\x89\x62\x6b\x72\x21\x63\x36\xcb\x07\x6e\x73\x51\xdf\x76\xcf\x36\x72\xa9\x7f\x3f\x12\xfe\x6c\x94\xc9\x9d\xb2\xe7\x56\x58\xd4\x15\x30\x4b\x52\x60\x1f\x82\x8d\xbd\xd0\xf8\x6a\x6a\x36\x5c\x8d\x78\x9c\x73\x0d\xe4\x59\xaf\xbc\x82\x2b\xfb\x2b\x5f\xc0\xe3\x2f\x3c\x02\x29\x14\x67\xb7\x09\xf5\x10\xc2\x0b\xb0\x60\x7e\x38\xc0\x4f\x13\x18\x87\x20\x80\x82\x2a\xa4\xa1\x10\x33\x72\x30\xc1\x9c\x58\xba\x2b\xb8\xbc\x9f\xb1\xfd\xcb\xc1\xbb\x96\x4e\xcc\x83\x6e\x25\x7b\xa0\xff\xc9\xe7\x1c\x8e\xe7\x9e\xec\xdf\x7f\x79\x38\x33\x73\x6c\x41\x07\x03\x59\x7d\xe1\xd8\x4c\x66\x78\x6c\x58\xef\xe9\xe9\xd1\x87\xc7\x04\x8c\xd7\x01\xb2\x4c\xdf\x2f\x15\x91\x7a\xc3\x31\xa2\x36\xd5\x32\xf0\x66\x60\x43\x82\x02\xf4\x35\xd0\x5f\x53\x71\x07\xac\x63\xe0\x10\xaa\x70\xa2\xc3\x92\xf7\x65\x5b\x13\xb7\x2d\x9e\xcd\x36\x05\xb8\x2a\x2a\x0a\x7e\x29\x3c\xa6\xde\x10\xed\x8c\xef\xee\xdd\x1d\xf0\xeb\x60\xc9\x74\xa5\xa3\xd7\xd7\xe7\x70\x16\x65\x77\xb7\xaf\x67\xc1\x71\xd3\x94\x33\x14\x54\x62\x31\x25\xd0\xed\x88\x38\xc2\xc9\x91\x5c\x6e\x24\x3d\xf5\x2b\xd8\x9d\xaa\x0a\xb9\x1f\x99\x81\x22\x0b\x81\x95\x7d\x28\x14\xca\x8e\xec\xea\xdb\x15\x58\xd4\x7d\x3f\x15\xf0\xf7\x0c\x79\xbd\x6a\xdf\x54\x57\xef\x91\x2e\x57\xd2\x17\x8c\x6b\xf1\x6e\x16\x66\x6a\xee\x58\x6e\xfa\x47\x40\x24\x04\x21\xa5\x0c\xa0\x02\x42\xb0\x23\xca\x52\x62\xdf\x62\xdf\x22\x24\x19\xc2\x9f\x68\xa2\xf9\x65\x6d\xb3\x14\x39\x97\x45\xc3\x14\x77\x0b\x89\x90\xef\x0a\x40\xde\x71\xbc\x96\x3f\xab\xb1\x38\x99\xa5\xfc\xe6\x03\xfa\x6c\x80\xb1\x93\xd1\xbd\xdd\x80\x73\xd2\x1f\xfb\x04\xda\xa7\x4c\xdd\x1e\xe5\xa6\x29\xef\xaa\x71\xcb\x14\x5d\x07\xdb\x94\x4f\x45\xf7\x82\xef\x6d\xa8\x7b\x88\x6c\x54\xee\xba\x3d\x2a\xa2\x46\xa8\x64\xfb\x33\xcb\x5d\x14\x81\x58\x23\xb9\x2f\x0d\x55\x78\xc7\x6d\xee\x7d\x12\x12\xe4\xbb\x13\xd1\xe2\x70\x70\x32\x3e\x3e\x0e\x40\xe6\x69\x5f\xfe\x64\xcb\xd5\xcf\x04\xa1\xd7\xcc\x60\x71\x78\x54\x5f\x1a\x4f\x0c\xa5\x36\x43\xd6\x50\x0b\x78\xe0\x9d\xff\xb1\xe4\x47\x4d\xbe\x80\xb4\x82\x36\x0f\x29\xdc\x94\xac\xca\xb1\x71\x9c\x4c\x86\x96\xf0\x67\xd1\x45\x71\xc0\x5f\xb9\xff\x83\xca\xe7\xaa\x6f\x19\xd3\xe1\xef\x1e\xf6\x0b\xd1\x27\x6a\x45\xe8\x3c\x24\x59\x0b\xb3\x8a\xae\xe8\x63\x6f\xa9\xe9\x28\x40\xf5\x34\x8e\x44\x9f\x28\xb2\x55\x5c\xeb\x05\xe4\x9e\x00\x49\x2f\x89\x30\x21\x33\x61\x95\xc4\x19\xc8\xa2\xb7\x70\x7c\x96\x4f\x10\x90\xcf\xdb\x26\x27\x62\x13\xd6\xe7\x9c\x88\xe9\xf3\xcb\xd6\x17\x93\xb1\xc9\xc9\x2f\xd8\xe8\x3e\x82\x0e\x54\xa7\x59\x5e\x85\x6a\x2b\x90\x70\x87\xc3\x7c\x0a\x12\x8e\x19\x93\xcb\x43\x82\x34\x90\x0a\x46\x21\x90\xb0\xfa\xcd\x87\x63\x77\xe9\x77\xc7\x0f\x6b\x87\xe3\x77\xeb\x77\xc5\x0e\xdf\xdc\x7e\x81\x29\xdb\x7f\x25\x5e\x80\x16\x6d\xe2\xdf\x73\x3f\x17\x95\xe3\xff\xb3\x5c\x2b\x2a\x64\x56\x08\x7e\x84\xad\x9c\x56\xed\x00\x48\x3c\x25\xc1\xb4\x51\x2e\x29\xa3\x1c\x9c\xba\x78\x23\x05\x7e\x4c\x14\x8b\x4c\x37\xe7\x61\x89\xbd\x0c\x9b\x8e\xc6\x63\xa5\x57\xc9\x06\xf2\xd1\x52\xe9\x79\xeb\x00\xc4\xc7\xb8\xe8\xe2\x56\x03\x89\x35\x83\x77\xfc\x5e\x87\xc4\xde\x4c\x71\xe7\xb9\xe7\x03\x3c\x38\xaf\x09\xf4\x6f\x99\xd3\x1b\x28\xc3\xe3\x3e\x5c\x05\x18\xd7\xec\xb6\x95\x83\x07\x57\x86\xa3\x89\x70\x68\x8f\xa6\xed\x51\x8e\x06\xf6\x24\xf9\x95\xe4\x40\xf3\x0a\x7b\xf3\xa1\xdb\x0f\x0d\x0f\x0c\x2a\x21\x6d\x8f\xa6\x2c\xf5\xe7\x93\x6d\xe7\xcd\x99\xfd\x37\xb9\x5f\x1a\x83\x19\x7d\x3e\x04\xf3\x56\xa6\xe0\xc1\xdd\x1c\xb8\xd8\xcd\xab\x70\x84\xad\xff\xf0\xec\x3b\x96\xa6\xdf\x3c\xf3\xc4\xcc\x8c\x47\x49\xcc\xee\xdd\xb7\x8f\x1d\xb9\xf3\xcc\xc2\x47\xe2\xcf\xc5\xd9\xa1\xd9\x84\xe2\x99\x81\xaf\xde\x3c\xbd\xf4\x0e\xf8\xea\x67\xe0\x3b\xaf\x67\xe1\xe7\xe2\xcf\xc7\x24\x41\x62\x8c\x12\x71\x7d\xb3\x4c\x9c\x78\x83\xa6\x5c\x1c\x1c\x1a\x61\x1d\xcf\x0b\xe6\x74\x28\x21\xa7\xc9\xa4\x64\x62\x84\xb9\x22\x2c\xd6\x66\xa9\xc2\xed\xf0\x41\x2b\xa5\x69\x14\xa3\x0c\x25\xe6\xb0\xc3\x25\xbf\xa6\x90\x97\x6b\x11\xde\xb2\x3d\x43\x0b\x56\xb0\x85\x56\x64\x7f\xfb\x4d\x67\xc4\xbd\x70\x7d\x8b\xfd\xcd\x59\x21\xc8\xf6\x8d\x42\xca\x3f\x4c\x11\xe0\xa9\x0d\xba\xf6\x0d\x4a\x6f\x14\x52\x7e\x85\x4d\x6e\xb6\x28\x17\xac\x7f\xd2\x44\x95\x9e\x93\x24\x8e\x69\xce\x9d\x40\x73\x7c\xa6\xf1\xa4\x08\x49\x77\xb8\x39\x75\xe7\x42\x69\x60\x53\x48\xc7\x95\x81\xcf\x9c\x4d\xb7\xa2\x78\x07\x3e\xc1\x91\x36\xfc\xf3\x17\x6b\xbe\x39\x63\x2e\x79\xef\xa9\x6e\xe6\x22\x26\x1e\x76\xdd\xa7\x36\x9f\xb2\xb2\x2b\xa1\x86\x5e\xf7\xa6\xdb\x43\x6a\xd2\xe5\x70\xb8\x92\xaa\x7f\x68\xfe\xf8\xee\xdb\xe8\xb4\xf1\xeb\x04\x2d\x74\x0b\xa1\x0b\xd5\x01\x7e\xee\x86\x3d\x53\x0c\x11\x92\xa7\xf6\xd8\x07\xcb\x03\x69\x79\x6a\xdf\xbe\x29\x39\x3d\xe0\xf5\x79\xe1\x24\x33\x30\xbd\x34\x4d\x67\x51\xf8\x95\xfd\x21\xa9\xbe\x10\xb3\x6e\x54\x9a\xd8\x1a\x11\x3d\x0d\x13\x3c\x5f\x55\x3d\xcd\xa9\x3d\x0f\xf6\x88\xc1\x2c\x5a\xbf\xb3\xdb\x69\xe4\x59\xee\xde\xe0\xc6\x1a\x1f\xd4\x5c\x13\xae\x31\xc0\xe1\xc9\x4e\x4c\x9d\x08\xb2\x42\xf5\xe8\xdd\xd5\xa2\x10\x89\xe6\xb0\x9a\x8c\xeb\xe9\x68\x34\xad\xc7\xc7\x43\xb7\xeb\xfa\xae\x7f\xbc\xfb\x88\x30\x1b\x21\x6f\x69\x61\x95\xc8\x34\xd3\xd9\x88\xee\x05\x9a\xfd\xd8\x17\x63\x13\xb1\x58\x7c\x22\x1e\x8b\x9f\xfc\xe2\xc9\x58\x6c\xd3\xd9\x57\xe0\x88\xae\xc4\xe0\x0c\xae\x89\x67\xa4\xf9\x16\x62\x42\x85\x39\xa2\xcc\x66\xd9\xb9\x2d\x03\xb1\xb4\xcf\x3a\xd7\xfb\xcc\xa6\xcc\x54\xae\xac\x23\x84\x6f\x19\x7b\x78\xd8\x40\xd7\xdd\x3a\x5f\x8b\x78\xeb\xf5\xf2\xb8\x5c\x8a\x10\x55\x20\xe7\xb7\xe3\x7e\xb1\xb2\x39\xb9\x07\x64\xc4\x86\xce\xcd\xb1\xd9\xdb\x0f\xfc\xaa\x63\xa0\x8f\xa2\x36\xfa\xd2\xcc\x6c\x3c\x4d\x7d\x17\xad\x83\x79\x2b\xd4\xa4\x1e\x29\x46\xb8\x41\x9a\x34\x29\x1d\x90\x4e\x20\xfd\x2f\xcb\x10\x3a\x10\xbd\x84\x72\xe4\x6a\xc3\x4f\xed\xf3\x00\x0e\x60\x61\x2b\xb4\xd9\xc2\xc2\xbc\xd5\x62\x3f\x76\x25\x3d\x6c\xcc\xe9\x56\x86\x61\xe7\x70\x07\xce\x0f\x7b\x1c\xa3\xb0\x77\x58\xfb\x0e\x1c\xc0\xf0\x79\xc7\xb7\xb9\x6e\xc8\x18\x0a\x04\xfb\x86\x5c\x97\x29\xf8\x20\x7b\x47\x62\xaa\xc3\x17\x55\x86\x27\x3b\xba\xa3\x41\x96\x9c\x84\x93\x20\xe3\x67\x8d\xaf\x9b\xd6\x5f\xb5\x4a\x14\x08\x40\xd6\xf4\x25\xdd\x77\xe3\xef\xa0\xb9\xdd\x6d\xf1\xb6\x7b\x6d\xbb\x21\x3f\x6c\xea\x0e\x3e\xdc\x55\x0a\xe4\x64\xab\xef\xfb\xc3\x7c\xc5\x46\xb7\xed\x32\x93\x0c\xa5\x5c\xde\xf8\xd5\x5f\x65\x64\x35\xcc\x97\x6b\x41\xf7\x58\x23\xcb\xa4\x33\xd2\xdb\x24\x49\xb2\x1e\x9d\x84\xac\x85\x2c\x85\x7d\x57\x55\x0f\x49\x5f\x71\x76\x77\x5b\xa2\xd4\x54\xdb\x1e\xee\xe3\xb2\xd5\x5c\xfb\x5e\x69\xbb\x73\xbb\x1f\x88\xf7\x33\x9d\xb8\xcb\xf7\xfb\xba\x5d\xbe\xc3\x4a\x22\x3f\x36\x37\xf0\x9c\xc7\xd9\xed\xeb\xea\x06\x63\xce\x6e\xe6\x57\x01\x28\xbd\xbb\x4b\x1d\x68\xdf\x8b\xc7\xe2\xbe\xed\xda\xb4\xda\xd5\xdd\xd3\xa5\xaa\xdb\x5c\x1a\x80\x3d\xe3\xac\x6a\xd1\xeb\x74\x1f\x0e\x25\xf2\x81\x81\x67\x5d\xcc\xeb\xed\xee\xf6\xae\xf4\xc8\x72\x8f\xbd\xe9\x7c\xc7\xb7\x17\x76\xfc\x46\x12\xa4\x56\x3c\x4e\x40\x88\x62\x32\x36\xd9\x20\x52\xb5\x64\xf7\x95\x5c\x0d\xd3\x55\xda\xe7\x82\x19\x09\xde\xdd\x5a\xa3\xc4\x2e\x76\xdf\xb1\x7f\xff\x1d\xdd\x9d\x32\xbe\x2b\xf9\xf7\x34\x8e\xe7\xac\x70\x0b\x71\xf2\x24\x9a\x90\x66\x28\x36\x1b\x10\xe3\x44\x25\x2b\xc3\x24\x99\xcb\xd9\x06\xaf\xa9\x42\xc8\x3e\xca\x73\x91\x3f\xf4\x9d\x02\x6c\xe9\x02\x93\x49\xce\x51\xde\xb7\x6f\x7e\x48\xd3\x86\xfc\x21\xb5\x2f\x19\x1b\x07\xe8\xb7\x3d\xb1\x74\x62\x66\xa4\x4f\x4d\x64\xc9\x9d\xa8\xf1\x48\x84\x95\xa3\x95\x7a\xe5\xc7\xf6\xdd\xa2\xef\xd6\x12\x4a\x9f\x3f\x92\x1d\x1c\x8e\x06\xd5\xb3\x3d\xbb\x47\xc6\xc7\x47\x72\x09\xd5\x1f\xfb\x32\x70\x89\xf5\x68\xa3\x12\xbd\x62\x70\x5f\xd0\x32\xd5\x32\xc4\xed\x37\x51\xba\xca\x9a\x75\x4a\x89\x55\xdd\x5c\x41\xda\x85\x94\x56\x35\xb1\x69\x4a\x71\x1d\xaa\x95\xb4\x6b\x79\x9b\x55\x3f\xb5\x6f\x48\xb3\xab\x88\xb6\x3a\x40\x06\x0c\xa5\x06\x83\xaa\x5d\xc9\x7c\xcf\xee\xd4\xf4\xf4\xc8\x2c\x54\x0f\x1e\x46\x1b\x8a\xfd\xba\x81\x7f\x62\xb4\x05\x9a\x85\x3c\x32\x9a\x42\x84\xdc\xb3\xc8\x7b\x80\xb2\x4a\xc6\x0b\x99\x0c\x03\x8d\x52\x42\xf3\x1e\x3c\xd8\xf8\xf6\xa1\x4b\xc9\xe4\xa5\x43\xaf\x3b\xe9\x0f\x2b\xca\xc9\xd7\xb1\x9c\x3a\x3c\xac\xbe\xee\xe0\xc1\xfb\x0e\xe4\x72\x07\x6e\x7a\x77\xd4\xe3\x76\x7a\xa3\xef\x96\x58\x53\xa2\x7c\x23\xbe\x63\xb2\x54\xc4\x70\x7f\x53\x0e\x59\x45\x44\x00\xd8\xe3\x0e\xec\x2f\x65\x35\x44\x3c\x1f\xdf\xe7\xc9\x43\x2a\x19\x2a\x64\x0a\xb0\xfe\xc1\x94\x95\x85\xc1\x01\x24\x0c\xf4\x12\x35\x06\xbf\x51\xd9\x35\xc6\xc2\x0e\x47\xaf\xec\xe8\x70\xf4\xa8\x53\x7e\x57\xd0\xe1\x08\x76\x86\x5d\x8a\x4b\x7d\x26\xe5\x75\x78\x82\x4e\x36\x08\x73\x91\x27\xe4\xea\x56\x54\xd6\x3f\x3d\xe5\xed\x19\xf4\xca\x1d\x8e\x8e\x11\xe6\xf0\x39\x5c\x43\x63\xb2\xcb\x29\xbb\x99\x83\x2d\x31\x27\x4b\x38\x9c\x21\x97\x2b\xe6\xbe\xf4\xac\xcb\x79\xc6\x7f\xa7\xd3\xf5\xcc\x81\x43\x6e\xc7\xbd\xd9\x3d\x6e\xc7\xc2\xd9\xf7\x75\x28\x6c\x38\xd4\x13\x74\xbb\xba\xe4\xc1\x1e\xe6\x04\xd9\x4f\x1a\x70\x04\xbc\xbd\x5e\xb7\xe3\xff\x0f\x5f\x5d\xb1\x80\x00\x00\x78\x01\x63\x60\x64\x60\x60\x60\x64\xba\x30\x65\x7a\xf6\xb2\x78\x7e\x9b\xaf\x0c\x9c\x4c\x0c\x20\x70\xe9\xde\xe2\x53\x60\xfa\x3e\xe3\x56\x06\x86\xff\xff\x98\x18\x98\x58\x80\x5c\x0e\x06\xb0\x34\x00\x77\x1b\x0c\x4e\x00\x00\x00\x78\x01\x63\x60\x64\x60\x60\x62\x00\x02\x38\x09\x14\x41\x05\xcc\x00\x00\xf7\x00\x0c\x00\x00\x00\x78\x01\xad\x94\x35\x92\x18\x31\x10\x45\xdf\x6e\x62\x66\xab\xca\x89\x99\x99\x99\x14\x9a\x52\x99\x99\x6d\x1d\x60\x53\x65\x3e\xc1\xa4\x4e\x4d\x07\xf0\x49\xf6\x3c\x86\xae\x57\x6d\xce\x3c\x7f\x40\x1a\x75\xff\x6e\xfd\x96\x34\x0b\xab\x00\x66\xf9\xaf\xd7\x5e\xf6\x52\xa8\xec\xa5\x52\x69\xf1\x1c\xcf\x5e\xa7\xc7\x58\x80\xc2\x5e\x46\xb4\x3e\xe1\xbf\x18\x2d\x5a\x37\x06\x43\x1b\xc7\xe8\x4c\x54\xf9\xb7\x50\x68\x24\x28\x14\x2d\xb3\x1d\xdf\x7d\xb2\x06\xc2\x33\xde\x40\x63\x8e\x4a\xa7\x11\xec\xf1\x6e\xf1\xed\x46\xe9\x32\x1e\x8d\x1e\x71\xdd\xa1\xd0\x29\x8e\x41\xd1\xeb\x82\xfc\x80\xb3\x95\x13\x92\x29\x58\x8d\x79\x3e\xb5\xd8\x9c\xa3\x50\xd3\x26\x3d\xd4\x4a\x88\x29\xd1\x55\x7a\x85\xd8\x4b\x8b\xac\x12\xc1\xb0\x90\x60\x33\xf7\x19\x9a\x9c\x47\x83\x7d\x21\x8b\xc2\xe2\x39\x04\xf7\x1b\xf3\x80\xfa\x0f\x4c\x31\xd3\xa6\xc5\x60\x53\xd4\xb9\xa9\x5c\x8f\xd6\x88\xc8\xaa\x4b\x65\x2e\xe7\x5e\x69\xe2\x46\x64\x72\x35\xec\x8e\xab\x13\xf1\xe0\xd5\x55\xc2\x7a\x82\x3a\x8f\x54\x67\xf0\x89\xcf\x11\x6d\x68\xd5\xf1\xca\x75\x87\x99\xda\x8f\xa8\x55\xc6\x86\x2d\x35\xea\x72\x1f\x37\xa3\x91\xda\x5a\x31\x73\xb2\x52\x7e\x89\x6f\xa1\x0a\x75\x48\xbb\xe6\xf3\x9e\xf2\x27\xf4\x23\xd7\xec\x61\xf3\x9b\xcc\x19\xf6\xb2\x81\x1a\xa3\x7b\x62\xc4\x58\xd9\x12\x66\x38\xe8\xec\x0d\x5d\xaa\xf3\x6a\xe4\xfa\xd6\x67\x75\xa8\x5f\x29\xac\x23\xf7\x18\x70\x8b\xca\x76\xa2\x1f\x20\x35\x2f\xe2\x9a\x35\x32\x76\xb4\x5b\x78\xb5\xc0\xc8\x73\x20\x79\x7d\xaa\xca\x87\xea\xe6\x33\x7e\xc9\xfc\x0c\xe1\xab\x9a\x0f\xd5\xfa\x8c\xfd\xc6\x05\xcf\x91\x4e\xf8\xab\x6d\x8f\x77\x8b\x75\x39\x05\xeb\xe5\x98\x7d\x67\x30\xf4\x68\xcc\x73\x9d\xb7\xdf\xd0\xe8\xe6\x39\x17\x23\x66\x29\x72\x5f\x0b\xc2\x37\x94\x73\xdf\x76\xdc\xd7\x51\x8d\x4d\x14\xb2\xca\xa9\xd2\xa0\x51\x9c\x6d\x0b\x8b\x79\x19\xf2\xa4\x03\xa3\x35\xf9\x73\x25\xea\x6b\x5f\x9d\x84\x91\x04\x33\xd4\xdf\xce\x89\xad\x8e\xe4\x0c\x44\x83\x5c\xfd\xcb\xb5\x2d\x32\xbb\x2f\xb9\xcc\xa2\xe4\x17\xe6\x51\xe9\xbf\x9d\xdd\x43\x5f\x6b\x99\xf5\x4d\xad\xac\x99\x59\x43\xc4\x20\x5a\x85\x25\x19\xc5\x39\xab\xea\x7e\x2d\x07\x85\x55\x14\x47\x8a\x2a\xdc\xa6\xa7\xc2\x7b\x39\x96\x6b\xba\x92\xff\x3d\xff\xc9\xe8\xc5\x18\xdd\x5a\xb7\x7c\x84\x9e\x7b\x13\x9e\xbd\xc9\x70\x9c\x9d\x0c\xbd\x6f\x7b\xd6\xf7\x88\xf1\xcc\xac\xb5\x87\x60\xfb\x94\x55\xb7\x7e\xee\x10\xcc\x12\x2e\x86\x7d\x51\x27\x33\x4a\xf0\x15\x69\x21\xd0\x31\x00\x00\x00\x78\x01\x1c\xc1\x03\x14\xe3\x40\x14\x00\xc0\xbf\x71\x52\x6f\x1d\xa3\x3e\xdb\xb6\x6d\xdb\xb6\x6d\xdb\xb6\xed\xa7\xb3\x6d\xdb\xb6\x3d\x03\x00\xf8\x7f\x11\x4c\x48\x41\x66\xc8\x0d\x85\xa1\x34\x54\x86\xda\xd0\x18\x5a\x43\x67\xe8\x0d\x83\x61\x34\x4c\x86\xd9\xb0\x18\x56\xc3\x66\xd8\x0d\xfb\xe0\x18\x9c\x83\x6b\x70\x0f\x9e\xc1\x3b\xf8\x86\x08\x24\x20\x8c\x44\x64\xa2\x14\xca\x8c\x72\xa3\x1a\xa8\x3f\x9a\x8e\x4e\xa2\x8f\x44\x7e\x62\x12\xb1\x8a\x38\x4f\x3c\x24\x3e\x91\x32\xd9\x8e\xdc\x42\xde\xa3\x1c\x54\x29\x6a\x04\xb5\x9e\x7a\x48\x6b\x74\x6d\x7a\x0c\xbd\x95\x3e\x4c\x3f\x60\xec\x4c\x88\xc9\xc0\x54\x62\x7a\x30\xeb\x99\xab\xac\x8b\x2d\xcf\xb6\x65\xa7\xb0\x5b\xd9\xab\xec\x73\xf6\x17\x97\x9d\x2b\xca\x75\xe3\xf6\x71\x6f\x78\x0f\x9f\x8b\xaf\xc0\x37\xe0\xe7\xf1\x07\xf9\x77\x42\x7a\xa1\xae\x30\x42\xf8\x64\x5b\x65\x17\xec\xbd\x1c\x19\x1c\x93\x1d\x47\x9c\x61\x67\x53\xe7\x10\xe7\x36\xe7\x21\xe7\x33\x97\xea\x2a\xeb\xea\xe8\x5a\xed\xba\xe2\xd6\xdc\x85\xdd\x43\xdc\xcb\xdc\x47\xdc\x6f\x3c\xd8\x93\xc9\xd3\xc0\x33\xd8\x73\x05\x53\x38\x3b\x2e\x85\x9b\xe2\xde\x78\x1c\x5e\x8d\x2f\xe2\xd7\x5e\xc5\x5b\xdb\xbb\xc2\xa7\xf8\x0a\xfb\xda\xf9\x86\xfb\xf6\xf8\x7e\xfa\xb3\xfb\xeb\xfb\xc7\xfa\x97\xfb\x8f\xfa\x5f\x04\x42\x81\xde\x81\xfd\x41\x2a\x58\x2a\x38\x28\xb8\x34\x78\x28\xf8\x34\x64\x0b\xe5\x09\x35\x0b\xcd\x0d\xed\x0f\x7d\x0b\x17\x0e\xf7\x0d\x7f\x12\x2d\xb1\x9e\x38\x52\xdc\x22\xbe\x93\x58\x29\x83\x54\x44\x6a\x2b\x8d\x91\xb6\x49\x4f\xe4\xa0\x5c\x50\xae\x2d\x8f\x92\xaf\x29\x3e\x25\x8b\x52\x4d\x69\xaf\x0c\x56\xa6\x28\x9f\x55\x5d\xad\xaa\xf6\x52\xe7\xab\xbb\xd5\xc3\xea\x2d\x0d\x34\x9f\x96\x59\xab\xa6\x0d\xd4\xde\xeb\x94\x2e\xeb\xb9\xf5\xea\xfa\x50\x7d\x87\xfe\xd4\x50\x8c\x1a\xc6\x70\x63\x8b\xf1\xd8\x94\xcc\xc2\x66\x1f\x73\xa5\x79\xd2\xfc\x62\x69\x56\x01\xab\x81\xb5\xc0\xda\x6f\x7d\x8a\x18\x91\xda\x91\x11\x91\xdd\x91\xbb\x51\x3a\x9a\x2d\xda\x39\xba\x38\x7a\x37\xa6\xc4\xca\xc7\x66\xc6\xee\xc5\xbd\xf1\x5c\xf1\xe2\xf1\xba\xf1\x05\xf1\x47\x09\x2a\x51\x26\x31\x39\xf1\x2e\x99\x23\xd9\x28\x39\x3f\xb9\x26\x79\x20\xf9\x38\xf9\x3d\xe5\x4b\x59\xa9\xce\xa9\x69\xa9\x3f\x04\xc1\x03\xb4\x55\x01\x00\x00\xb0\x6c\xdb\xf6\xd3\xb5\x6d\x2b\xdb\xb6\x6d\xdb\xb6\x6d\xdb\xb6\x6d\x77\x98\x5d\x7f\x3b\x5a\xe3\x77\x8c\x8c\x8d\x8f\x1d\x8f\xfd\x8e\x97\x8b\x8f\x49\xa4\x4f\x54\x4e\x8c\x4f\x3c\x4d\xea\xc9\x7e\xc9\xc7\xa9\x82\xa9\x01\xa9\x67\x40\x66\x20\x06\x84\x40\x3f\x60\x25\x70\x06\xf8\x0f\x56\x02\x25\xb0\x23\x38\x1b\xdc\x00\x5e\x87\x72\x41\x06\xd4\x1b\x9a\x02\xad\x87\xce\x40\xef\xe0\x1c\x70\x0d\x58\x84\x3b\xc3\x0b\xe1\x83\xf0\x77\xa4\x2a\xd2\x10\x19\x8a\x2c\x40\x76\x23\xb7\x90\x0f\xc8\x1f\xd4\x46\x5b\xa0\x23\xd1\x05\xe8\x69\xf4\x2f\x96\x17\x6b\x8a\x8d\xc6\xb6\x61\x27\xb0\x27\x78\x29\x3c\x89\x37\xc3\x87\xe3\x9b\xf0\x3b\xf8\x7f\x42\x26\x06\x13\x6b\x89\x23\xc4\x2d\xe2\x13\x59\x94\xb4\xc8\xde\xe4\x56\xf2\x0b\x55\x9c\x92\xa8\xce\xd4\x4e\xea\x01\x9d\x8e\xae\x4c\x7b\xf4\x1a\x7a\x2f\x7d\x8e\xbe\x47\xbf\xa3\xff\x32\x05\x99\xae\xcc\x58\x66\x05\x73\x99\xf9\xc4\xe6\x65\x15\xb6\x23\xbb\x87\xbd\xcb\xfe\xe7\xe2\x5c\x23\x6e\x21\xf7\x86\xcf\xcf\x23\x7c\x37\x7e\x06\x7f\x5d\x28\x21\x70\x42\x5b\x61\xb6\x70\x58\x78\x2d\x66\x13\x93\xa2\x23\x2e\x10\xef\x4b\xf9\x24\x52\x6a\x23\x0d\x90\x66\xcb\x31\xf9\x88\xb2\x48\x9d\xa6\x2e\x57\x0f\xaa\xb7\xb5\xcc\x5a\x5c\x0b\xb4\x91\xda\x76\xed\x9e\x5e\x4c\xf7\xf4\xc9\xfa\x29\x23\x8f\xe1\x18\xb3\x8d\x33\x66\x41\x93\x36\x3b\x99\x73\xcc\xeb\xe6\x27\xab\x88\x45\x5b\x8d\xad\x21\xd6\x0a\xeb\xb6\xf5\xdd\xae\x68\xab\x76\x7b\x7b\x84\x3d\xdb\xde\x65\x7f\x70\xd2\x39\x90\x13\x38\xb3\x9d\x5b\x6e\x6e\xb7\x8e\xbb\xda\x7d\xe2\x95\xf4\x5a\x78\xdb\xbc\x0f\xbe\xe5\xcf\xf7\x3f\x05\xc5\x83\xba\xc1\x9c\xe0\x5c\xf0\x30\xcc\x15\x76\x0a\x2f\x47\xf9\x22\x28\x0a\xa2\xe6\xd1\xc6\x9a\x69\x04\xc1\x03\x00\x14\x01\x00\x00\xb0\x6c\xdb\xb6\x6d\xdb\x7e\xdb\xd6\xd9\x66\xb6\x6d\xdb\xb6\x6d\xdb\xb6\xb5\x15\x1c\x1e\x1f\x7e\x72\x44\xb9\x11\xee\x11\x73\x46\x1c\x19\xf1\xc6\xe0\x35\x28\x86\x7d\x86\xcf\xc6\xdc\xc6\x1e\xc6\x29\xc6\x65\xc6\xfb\xa6\x9c\xa6\x86\x26\xa7\x69\xba\x69\xb7\xe9\xbd\xb9\x92\xd9\x63\xd6\xcc\x0b\xcc\x7b\xcd\x9f\x2d\x39\x2d\xa5\x2c\x3e\x8b\x6a\x59\x6c\xb9\x66\xcd\x63\x6d\x6f\x75\x59\x47\x5a\xf7\x5b\x3f\xd8\x06\xd8\x14\xdb\x46\xdb\x53\x7b\x15\xbb\xc5\x2e\xd8\x37\xd9\x3f\x39\xaa\x3a\x86\x38\x46\x3b\x76\x3b\x9e\x38\xfd\xce\x47\xae\x92\x2e\xb7\x6b\xa9\xeb\xb2\x3b\xaf\x7b\xb0\x3b\xec\x9e\xeb\xde\xe7\xfe\xe6\xe9\xe0\x89\x7b\xc6\x7b\xde\x7b\x0d\x5e\xca\xbb\xc1\xfb\xc3\xd7\xcb\xa7\xf9\x4e\xfa\xb3\xfb\x9b\xf9\x4d\x7e\xd1\x7f\x2f\x50\x2b\x10\x09\x6c\x0f\x7c\x0b\xd6\x0a\x06\x82\x33\x82\x7b\x83\x0f\x43\x59\x42\x4d\x43\xc3\x43\xb3\x42\x57\x42\x1f\xc3\x65\xc3\x7a\x78\x7b\xf8\x49\xa4\x7d\x44\x89\x1c\x8f\x7c\x88\x96\x8c\xda\xa2\x44\x74\x53\xf4\x53\xac\x62\xac\x43\xcc\x1f\x1b\x1f\xdb\x12\x7b\x17\x2f\x11\xef\x1e\x4f\xc7\x97\xc6\x1f\x27\xea\x27\xdc\x09\x25\x71\x30\x71\x39\xf1\x2f\x59\x3b\x69\x48\x0a\xc9\x6d\xc9\x5b\xc9\xb7\xa9\xa1\x29\x25\xb5\x21\xf5\x28\xf5\x39\x5d\x27\x6d\x49\x0b\xe9\xb3\xe9\x7f\x99\x21\x99\x69\x99\x2b\x40\x45\xc0\x00\x44\x01\x04\x18\x03\xcc\x00\xd6\x02\x97\x80\xc7\xc0\x17\x30\x17\x58\x05\x6c\x0a\x76\x03\x83\xe0\x28\x70\x31\x78\x1a\xfc\x04\x95\x83\x5a\x41\x43\xa1\x20\x44\x41\x13\xa1\x65\xd0\x5e\xe8\x0a\x5c\x12\x1e\x04\x63\xf0\x02\xf8\x24\x52\x10\xe9\x86\x70\xc8\x56\xe4\x31\x9a\x0b\xed\x8e\x72\xe8\x29\x2c\x2b\xd6\x1d\x9b\x82\x5d\xc6\x0b\xe2\xad\x71\x07\xae\xe2\x6b\xf0\xdb\x44\x15\xc2\x46\xa8\xc4\x61\x32\x37\xd9\x85\xf4\x93\x27\xc8\x0f\x54\x45\xaa\x23\x95\xa4\x66\x51\xa7\xe9\x62\xf4\x10\x7a\x14\xbd\x8f\x7e\xc3\x94\x64\x5a\x32\x20\x33\x93\xb9\xca\x56\x60\x87\xb3\x13\xd9\x03\xec\x75\xf6\x1d\x57\x98\x6b\xcb\xf9\xb8\x31\xdc\x7c\xee\x17\x3f\x94\xd7\xf9\xb3\x42\x71\x61\xb0\x30\x4a\xd8\x22\x3c\x17\x6b\x89\x3e\x71\xa6\x78\x5e\x2a\x29\x0d\x94\x56\x48\x47\xa4\x77\x72\x75\xb9\xab\x9c\x90\x57\xca\x47\xe4\xbf\x4a\x13\x25\xa3\xac\x50\x5e\xaa\xad\xd4\xb4\x3a\x55\xdd\xa9\x5e\x53\xff\x69\xa5\xb4\xd6\x9a\x53\x3b\xa5\xbd\xd6\x8b\xe9\x7d\x75\x42\xff\x5f\x10\x3c\x40\x59\x11\x00\x00\x00\xcc\xb6\x6d\xdb\x76\x8f\xd9\xb6\x6d\xdb\x5e\xdb\xf6\x37\x37\xdb\xb6\x6d\xdb\xba\x19\x75\xeb\xe7\x6d\x35\xb7\x8d\xd9\x16\xdb\xf6\x7c\x7b\xbf\xed\x8b\xb7\xbb\xdb\xaf\xed\x28\xb1\x63\xf8\x0e\x62\xc7\x39\x20\x07\xd0\x01\x98\x09\x50\xc0\x2e\xe0\x22\xf0\x01\xec\x00\x4e\x01\x29\xd0\x05\x8f\x82\xdf\xa1\x32\x50\x73\x68\x34\xb4\x02\x12\xa0\x13\x70\x01\xb8\x22\xdc\x11\x9e\x0d\xab\xf0\x31\x24\x3b\xd2\x19\x19\x8f\x58\xc8\x59\x34\x33\xda\x02\xc5\xd1\xbb\xe8\x17\x2c\x2f\xd6\x11\x9b\x8f\x69\xd8\x45\xec\x29\x9e\x07\xaf\x88\x0f\xc5\x17\xe3\x12\x7e\x06\x7f\x45\x64\x23\x6a\x10\xdb\x88\x24\x71\x9f\x2c\x4d\x0e\x22\x49\xf2\x06\xf9\x87\xaa\x43\x0d\xa6\xd6\x51\x61\xea\x25\x5d\x94\x1e\x44\xc3\x4c\x36\xa6\x31\x33\x91\x61\x98\xb3\xcc\x6b\xb6\x38\xdb\x84\x1d\xca\x6e\x61\xc3\xec\x2d\xae\x1c\xb7\x9c\xc3\xb8\x83\xdc\x4b\xbe\x10\xdf\x86\xe7\x85\x62\x42\x57\x61\xb1\xe0\x08\xaf\xc5\x92\x62\x7f\x31\x2e\x15\x95\xda\x4b\x84\x74\x5e\xce\x27\x77\x91\xd7\xc9\xfb\xe4\x17\x4a\x25\x65\x90\x42\x2b\x57\x94\xef\x6a\x69\xb5\xbd\x3a\x5c\x85\x55\x47\x3d\xa4\x3e\xd3\x8a\x6b\x6d\x34\x49\xbb\xaf\xe7\xd7\xdb\xea\x6b\x75\x4f\xbf\x63\xe4\x31\x06\x1a\x90\x61\x19\xbe\x71\xc1\x78\x6e\xe6\x30\xab\x9b\x03\xcd\xd9\xe6\x16\x53\x35\x4f\x99\xaf\xac\x62\x56\x5b\x6b\x88\x35\xdd\x0a\x5b\xb7\xed\x06\x36\x60\xef\xb6\x7f\x3b\x35\x9c\x21\xce\x74\x47\x77\xee\x3b\xff\xdd\x96\xee\x64\x57\x75\xcf\xb8\x5f\xbc\x0a\x5e\x7b\x6f\xa6\x07\x79\x11\xef\x41\xa0\x5a\xe0\x75\xb0\x60\xb0\x7b\x70\x41\xf0\x48\x28\x5b\xa8\x77\x68\x6a\x48\x0b\x5d\x09\x67\x09\x77\x0d\x8f\x0f\xdb\xe1\x13\x91\x96\x91\x61\x11\x28\x72\x27\x5a\x36\x3a\x31\x4a\x45\xa3\xd1\xf7\xb1\x5a\x31\x25\xf6\x22\x5e\x25\x3e\x34\xbe\x23\x7e\x36\x51\x2c\xd1\x2f\xb1\x21\x71\x20\x59\x2c\x09\x25\x2f\xa7\xb2\xa7\x1a\xa4\x06\xa5\x8e\xa6\x7e\xa6\xdd\xf4\x79\xbf\x8a\x3f\xd7\x17\x76\xe6\xcf\x00\x4d\x30\x30\x5f\x00\x00\x01\x00\x00\x03\xcd\x00\xb0\x00\x18\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x01\x00\x00\x00\x40\x00\x2e\x00\x00\x00\x00\x78\x01\x7c\x8e\x35\x52\x03\x61\x00\x46\x1f\xee\xf4\x38\x2d\xee\x5a\xe1\xee\x0e\x0d\xee\xee\x7a\x02\xce\x98\x73\xa4\xce\x9b\xc9\x5a\x95\xb5\xcf\x77\x7e\xa0\x84\x03\x0a\xc8\x2b\x2c\x03\x8e\x20\xe0\x79\xd4\xab\xb2\x3c\x9f\x6a\xfe\x02\x5e\xc0\x06\xff\x01\x2f\x4c\x74\x8a\xa8\x25\x15\xf0\x62\x5a\x49\x33\xc9\x23\x4f\x7c\xf3\xc2\x35\x97\x5c\xf1\x46\x33\xbd\x74\xd3\xc3\x80\x6c\xd6\xf4\x51\xff\x8e\x73\xda\xd5\xf3\x3c\x70\x4a\xa7\x6c\x5c\xef\x4e\xdc\x88\x76\xaf\xa8\x38\x17\xcf\x79\xe1\xc3\xef\x99\xcd\x65\x8e\xcd\x74\xb8\x96\xb9\x60\x9e\x53\x1e\x79\xb0\x67\x9b\x4b\xde\x75\x8f\xcd\x67\xd0\xb5\x2b\xaa\x2e\xcd\x3c\x09\x9d\x74\x8b\xa3\xbe\x39\xfe\x14\x34\x86\xe9\x70\xd1\x11\x9c\x7f\x90\x1d\x6c\x9b\x5e\x63\x8b\x66\xbd\x4e\x4c\xbc\x33\x43\x37\x0b\x61\x92\x2e\xaa\xab\x00\x7f\x67\x36\x10\x00\x78\x01\x63\x60\x66\x00\x83\xff\xcd\x0c\x46\x0c\x58\x00\x00\x28\x44\x01\xb8\x00\x01\x00\x00\xff\xff\xac\xc4\x23\xe9\x14\xe1\x00\x00") func vendor_material_icons_materialicons_regular_woff() ([]byte, error) { return bindata_read( _vendor_material_icons_materialicons_regular_woff, "vendor/material-icons/MaterialIcons-Regular.woff", ) } var _vendor_material_icons_materialicons_regular_woff2 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x12\x40\xed\xbf\x77\x4f\x46\x32\x00\x01\x00\x00\x00\x00\xad\x0c\x00\x0e\x00\x00\x00\x01\xf8\x1c\x00\x00\xac\xb1\x00\x01\x02\xd0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\x24\x1b\x36\x1c\x81\xd2\x50\x06\x60\x00\x8c\x02\x11\x08\x0a\x85\xeb\x44\x84\xb1\x0e\x01\x36\x02\x24\x03\x8f\x20\x0b\x8f\x1c\x00\x04\x20\x05\x82\x7a\x07\x20\x5b\x55\x92\x51\xa3\x6c\xfb\x44\x89\xa0\xbc\x01\x6c\xbb\xd6\xaa\x7d\x2a\xff\x6c\x44\x04\x1b\x07\x19\xd8\x83\x5f\x18\x0a\xb8\x31\x74\x33\xc6\x01\x00\x9e\x6f\x0c\xd9\xff\x7f\x52\x72\x30\x86\x02\xdb\x40\x35\x33\xdb\xde\x0b\x4e\xd8\xa5\xa2\xf5\x6d\x1b\xfb\x36\x06\x06\xcd\x5a\xa6\x28\xe5\xa8\xab\x63\x6f\x68\x8b\x8c\xe0\xac\xea\xab\x8c\x9f\x5c\xdf\x39\xe7\xaf\x52\xff\xb8\x75\x7a\xcf\x11\x9c\xe6\x50\x09\x87\x13\x0a\x59\x98\x6a\x6f\x19\xe3\x90\x9b\x5a\x6c\xeb\xae\x8a\x63\x69\x4b\x5b\xda\xd2\x96\xee\x0e\x0c\xbf\x27\x47\x09\x57\x3d\x5e\xf7\xcb\x7f\x97\x5a\xc6\xa5\x8c\x2a\xff\x3f\xe5\xe6\xc5\x46\xfc\xb0\x11\xc3\x64\xed\xf7\x9f\x87\xa9\xd0\x5d\x70\xe3\x1a\x58\x95\x43\x81\x1f\x98\x62\xae\x54\x27\x3a\x22\x1e\xd1\x6e\xbd\x0a\x28\xc7\xe6\xd4\x48\xda\xf3\xe4\x4b\x1e\xd9\x55\xbd\x33\xad\xaa\x6a\x4c\x0f\x4e\xcf\x1c\x0a\x22\x28\x49\x0d\x44\x04\x42\xfb\xcf\xad\xcf\x1c\x17\x2c\x3f\x37\x2c\x79\x10\x92\x00\xcb\xf6\x56\xa7\x50\x1d\x5f\x55\x7f\x1a\xd3\xf1\x6b\x4c\x85\xac\x90\xd5\x6e\xaf\xe1\xaa\x4c\x21\xd0\x09\x4c\x08\x70\x34\x4c\x96\x53\xf3\x57\xf7\x52\x29\x31\xbf\x2f\x51\xe5\x79\xfe\x0f\x41\xef\x7b\xef\x67\xd0\x9c\x14\x4a\x00\x03\x1a\x91\xd1\xb1\x04\x7b\xca\x73\x79\xb1\x58\xe0\x06\xb0\x64\x6b\x08\xcf\xbc\x24\x2f\xa3\xed\x1b\xda\xf6\x36\x07\x7a\x9a\x4d\x93\xb4\x5d\x77\x5b\xdd\x38\x8e\x38\x71\x8e\x37\x2e\xe5\xc5\x88\x98\x8c\x19\xb7\xea\xa4\xae\x3d\xb2\xcd\x1c\xeb\xc2\xb6\xa8\x05\xcb\x95\xd4\xf2\x6a\xa9\xa7\x6a\xc1\x74\xe2\x7f\xe7\x32\x97\x01\xa1\x3a\x23\xa7\x36\xe5\xf6\xe6\xe6\xe5\x84\x45\xca\x51\x0a\x49\xbb\x5f\xa2\x14\x10\x9e\xff\xbf\xda\x9d\x6f\xbd\x09\x77\xf5\x59\xf6\x56\xa1\xe8\x76\x02\x0d\x23\x09\x3c\xcc\xb2\x85\xe9\x60\x7c\xa6\x1c\x24\x5c\xdc\xdf\x16\x44\x92\x98\xf4\xf3\xbc\x6e\xfe\x01\x11\x08\x33\x2f\xe4\x05\x08\x23\x21\x20\x90\x7b\xc3\x12\x82\x0a\x98\x3c\x20\xac\x04\x65\xbd\xfb\x18\x0e\xd8\x4a\xa2\xe2\x60\x39\xea\x7b\xb5\x56\xc1\xb6\xd6\xb6\x09\x1f\x68\xeb\xea\xe4\xc5\xd6\xfe\x5f\x5b\xfb\xc5\x36\x74\x4c\xb0\xe3\x7f\x92\xbf\x1a\x6d\x7f\x7f\x87\xf8\x8d\x7f\xd8\xda\x69\x06\xe7\xa5\x3a\x5c\x76\x3e\xe4\xda\x96\x52\xfc\x89\x70\xe3\x2c\xc1\x7b\xf9\xa5\xa6\xb6\x87\xeb\xd2\xfa\x64\x17\xd1\xfa\x2d\x07\x58\xeb\x22\xce\x77\x90\x15\x86\x09\xa0\x0b\x34\x61\x9a\x00\x6d\x01\x55\xc0\x0d\x90\x02\xe8\x14\x48\xaf\xb7\x29\xf1\x80\x63\x43\x38\x4e\xb5\x17\xa8\xca\x54\x52\xf7\x8d\x01\x66\x36\xa3\x6a\xcb\x2d\xa9\x2d\x34\x46\x03\x06\xcc\xa4\xbd\x10\xf3\xe3\x73\xff\x57\x3a\xeb\xd7\xec\xad\x6a\xf7\xd6\x41\x12\x69\x82\x94\x09\x76\x26\x48\xc2\x13\x09\x4e\x80\xab\xba\x30\xda\x84\xfb\x79\x74\xb9\x56\x5f\xbb\xdf\xdc\x5a\x2d\x30\xcc\x64\x8c\x02\xe0\x09\x59\xc9\xf6\xa4\x24\xa0\xba\x7b\xf6\x4d\x5e\x36\x1c\xe4\xd4\xfe\x67\xec\x8f\x33\xd2\xc7\xb4\x5d\x04\x59\x6a\xbb\x44\x89\xb2\x08\x8e\x3d\x90\x44\x97\x3a\x6a\x56\x97\xab\x7d\xb5\xaf\x96\x9d\xa6\xbb\x1c\xee\x02\x15\x78\x19\xe2\xf8\xfd\xed\xe7\x85\xe7\xf7\x2d\xdd\x4e\xce\xcd\xbf\x93\x10\x0f\xdd\x28\x8c\xb9\xcd\xa6\xf4\x7d\x79\x6b\x2c\x63\xff\x68\x40\x81\xc3\xe9\xd2\x52\x50\xf4\xdf\x37\xb5\x6c\xf5\x2f\x52\x57\x2d\x9d\xb2\x9c\xb2\x8a\xce\xb1\xdf\x15\xb6\xa8\xce\x45\xe9\xfc\xe6\xcd\xfb\x1e\x3e\x3e\x7e\x70\xc7\x73\x0b\xdd\xec\x68\x80\x93\x28\xe2\x96\xd6\x0a\x86\x9c\x02\xff\x0c\x0f\x18\xce\xca\x86\x28\x27\x72\x44\x1f\xc8\x11\x65\x50\xd2\x5d\x2e\x4a\x87\x98\xcb\x2b\x9d\xbb\xeb\x2a\xbb\xe8\x5c\x94\x2e\x6b\xf7\x86\x3b\x17\x75\x65\x1e\xbe\x6e\xa4\xfb\x20\xc8\x02\xfd\xd8\x44\x2b\x16\x62\x13\x34\xf3\xa7\x0d\x82\x04\xc2\xc4\x8e\xe9\x80\x4e\x4f\x50\x4f\xd0\xcf\xf2\xf7\xa6\x78\xf5\x5c\xa1\x53\x01\xa2\xd1\x7a\x32\xa3\xd3\x6a\xb4\x28\xf5\xbb\xe0\xb4\xc6\xef\x5d\xda\xcf\x01\x94\x02\x88\x09\x81\xf9\xfb\x52\xad\xba\x22\xa9\xa6\x9a\x6c\x4b\xd5\x38\xf5\xcc\x1a\xf5\x5a\xd5\x38\x73\x5f\xef\x4e\x73\xb8\xee\xe1\x92\xf9\xfe\xc7\x4f\xe4\xff\xf8\x09\xe6\x4f\x26\x08\x64\x0a\x12\x08\x88\x12\x09\x92\x12\x90\x20\xab\x40\x50\x54\x31\x13\x09\x14\x98\x64\x77\x80\x10\x55\xbe\x37\x54\xae\x8d\xaa\x62\x56\xad\xee\x1a\x63\x41\x50\xac\xa5\x29\xd5\x90\x54\x57\x7b\x7f\x5a\x67\xab\xd4\xaa\x31\xce\x1d\xd7\x1f\x8e\x73\x9c\xbd\x9e\xf7\x7c\x99\xc3\x71\x4f\xd7\x85\xff\x6d\xb9\xa7\xf0\xbd\xd4\x21\x62\x78\x88\x11\x32\xdc\xf9\xe6\x17\x4e\x97\xe4\x27\x7d\xc7\x55\x4a\x09\xc1\x04\x61\x84\x56\x08\x21\x84\x56\x18\x93\x37\x33\x5f\x7b\xfb\x9d\x1f\x7d\xaf\x7b\x98\xfd\x99\xf5\xbf\xbb\xef\x1a\x11\xd1\x22\x22\x22\x4a\x94\x28\xe5\x28\x25\xe2\xdd\xaf\xe5\xf7\x7f\x18\x42\x99\x4e\x3a\x97\xaa\x42\x10\x01\x45\x04\x7d\xd3\x6a\x5e\x4d\x7f\xf9\x07\x59\xae\x5a\xda\x6a\xd5\x75\x6f\xaa\x75\xa4\xaf\x40\x21\xbc\x01\xf2\x42\x02\x09\x24\x3c\x33\xf7\x23\x73\xfe\xff\xd3\x0e\xdb\x3b\x96\xb5\xd8\xaa\x55\x04\x54\x9c\xa8\xb0\xb3\x4e\x92\x93\xa1\xff\x3f\x0f\x2b\x41\xcc\xa8\xea\x5e\xa4\xaf\x4f\x3d\xaa\xf5\xe2\x76\x44\x18\xc4\x4a\xe5\xb3\xa3\xcd\x20\xb5\x9f\xbc\x1a\xd0\x8b\xe9\x6a\x83\x65\x06\xfc\x0e\xdc\xfd\xc5\x35\x5e\x74\xc3\xab\xd0\xeb\x71\x9f\x7c\xd8\xb9\xad\x46\x17\x46\xb4\xa0\xfe\x2f\xde\x07\xff\x50\x69\x98\x45\xfb\x7f\xc5\xbd\x3b\x4f\x2c\x50\x75\x68\x1f\xe0\xb4\xb0\xbe\xe8\x50\x5e\x20\x3a\x6f\xad\xd8\x38\x82\xc3\xdf\x75\x0f\xea\xad\x32\x4e\x1d\x6d\xdb\x35\x76\x6d\xf1\x9c\xe7\x3d\xcd\x7b\x3f\x28\x61\x7d\x84\x38\x44\x61\x78\x54\x23\x19\xda\x34\xf3\x5c\xcd\x3c\xa4\x1c\x39\xbb\xfc\x75\xb7\xea\xcd\x77\x5a\xaf\xe1\xe6\x29\xce\x75\xce\xf0\xa2\xb9\x67\x19\x4b\x08\xa5\x41\x58\x65\x61\x79\x02\x30\xdf\xf0\xb8\xc8\x53\x45\xc2\x84\x92\xd9\x9a\x73\xe1\x57\x13\x97\x8d\xbc\x70\x66\x70\x13\x1f\x26\x51\xb6\x44\xa2\xa6\x1a\x2e\x93\x04\xa1\xf1\xd3\x55\xab\xad\x52\xa3\x4e\x7d\x6d\xac\xa4\xc5\x3a\x1f\xea\xf4\xd5\x20\x39\x8a\xa4\x01\xa2\x02\x54\x43\x4c\x34\x4e\xaa\x92\xb8\x80\x4a\x88\x2a\x90\x3c\xa8\x5d\xf5\xb6\x4e\x02\x32\xe9\xa1\x51\xa8\xc0\xd0\x5e\x63\xb7\xcf\x4c\x6d\xaa\x35\x79\x0b\xb7\x3a\x05\xf1\xc7\x5b\x67\x8b\x2a\x86\x55\x13\xca\x9d\xd3\xaa\x8a\xea\xb9\xbd\x4e\x9e\x0b\xda\xb1\xde\xb1\xd5\x2e\xe7\xd7\xac\x22\x0a\xd4\xdd\xd3\x33\xcc\x28\x25\xd8\x77\x06\x72\xaf\x14\xbb\xfb\xb5\x16\x76\x9e\x86\xed\x61\x8d\x41\x9b\x3d\x55\x95\x61\x61\xa0\x71\xd8\x98\x02\x68\xcc\xa8\xf8\xdc\x02\x6e\xc7\x7b\x57\xb1\x88\x3d\x5c\x05\x05\x11\x07\xd6\x2e\x51\x96\x5f\x5e\x05\x7d\x93\xc3\x0f\x96\x32\x5a\x01\xae\x9d\x26\x70\xd7\x3a\x6f\x28\xed\xab\x0c\x44\x8a\xd8\xc0\xb1\xb6\xc8\x88\x2d\x52\xdf\x2d\x53\x0e\x17\xf9\x66\x53\x6b\xc3\xab\xd8\xea\x85\x00\x08\x2b\xa1\x0f\xdb\x2a\x67\xab\xa2\x77\xcb\xf7\x45\x60\xb5\x58\x53\xef\xe6\x38\x9a\xbd\x6a\x89\xb7\x36\x4e\x4f\xfb\xcc\x93\x60\x6b\x0c\xcb\x3e\x62\x8c\x3f\xae\x9c\x59\xbf\xc9\xab\x26\x9f\x9e\x0d\xf7\xb6\xd0\x23\x79\xac\x6f\xba\xd4\x8c\x68\x57\x11\xd0\x0a\x96\xbb\x0c\x3d\xe1\x3d\x52\xd2\x73\xee\xc8\x76\xd8\x70\x12\xc7\x8c\xf8\x70\x59\x39\x99\xf7\x89\x93\xad\xd3\xc2\xbf\x19\x05\x44\x6d\x01\x2b\x0a\xd0\x5f\x07\xfb\xb1\x82\x2f\xef\xec\x32\x76\x30\x81\x36\x96\x4e\xd3\x30\xff\x16\x0e\x72\x89\x49\xf8\x98\x15\x21\xc0\x07\x34\x61\x95\x4f\xa3\xd1\x5b\x75\x21\xe2\x21\x13\xb6\xb1\x78\x06\xcf\x21\xa7\x75\xc7\x88\xc0\xa0\x19\x56\xb5\x04\xa8\xae\xf4\xf1\x68\x2b\x86\xdf\xe5\x4d\x00\xef\xcd\xde\x97\x61\x65\x33\xc1\x71\x1b\x65\x7e\xb3\x77\xce\x4b\x16\xd5\x83\xee\xa4\xd6\xc5\xec\x90\x54\xca\xb2\x2e\xe1\xbd\x49\x3a\xe7\xf2\x9e\x21\x4b\xef\x6f\xd5\xe9\x6d\x04\x06\x14\xa0\x68\xc5\xaa\x1d\xbf\x4f\xeb\x39\x39\x42\x70\x27\x0f\x0a\x4b\xd3\x0f\xf8\x08\x6d\x9d\xcc\x1b\xea\xc4\xa6\xe1\x84\xfc\x9a\xa0\xea\xd0\xbc\xe8\xe6\xe4\x20\x07\x7d\xc0\x74\x60\x54\x16\x97\xe3\xed\xb0\x64\x54\x77\xd3\xe2\x74\x35\x2f\xba\xb4\x6c\x07\x5c\xae\xd7\xcd\x5e\x03\x55\x28\x94\x6d\x3d\xb5\x8a\x05\x2e\x00\x97\x77\xf6\x96\x8a\xfd\xaf\xda\x6a\xfa\xd2\xec\x3b\xbc\xdb\xca\x8e\xf0\x81\x82\x72\x59\x20\xc4\xd3\xbd\xa1\xaf\xf7\xa5\xf5\xd6\xe2\xd0\x7c\x07\x77\x55\x54\x04\x28\xc3\xc2\x5b\x29\x25\x44\x24\xde\x23\x6e\xa2\xc8\xbc\x66\x6f\xbf\xb2\xc4\x01\xba\xed\xf0\x5a\x2a\xfc\xab\xd7\x4d\x39\x5b\x97\xd6\xb4\xb3\xdf\x6f\x99\x24\xa7\x12\xac\x6d\xdf\x4b\x62\xe5\x5e\x8f\x33\x89\x7d\x3d\x2f\x3c\x25\x3b\xe8\x46\xb1\x3c\x4e\xbd\xfd\x77\x49\x7c\xb2\x8b\x15\x4e\x7b\x93\xcd\xa0\x62\x1f\x1e\x2e\x66\x78\x31\xcc\x51\xd5\xc2\x1a\x85\x25\x7d\xaa\x98\x46\xf8\xa6\xba\xd7\xd1\xd5\x87\x47\x27\x8f\x45\x21\x2f\x41\x95\x80\x54\xb5\xd5\x91\x23\x59\x19\x03\xdf\x71\x98\x80\x50\x3c\x00\x2d\x54\x12\x28\x26\xc2\xed\x09\xa1\xa7\x0a\x54\xe3\x01\x27\x22\x2c\x81\x2a\xb2\x0c\x0f\x83\xa0\x17\x7f\x9c\xc2\x1c\x12\x9b\x8d\x2f\x58\x40\x41\x65\xd1\xf1\x3a\x0d\x70\x9f\x42\x28\xcb\x49\x67\x40\xe5\x3d\xe9\xc0\x36\xe1\x3b\xec\x91\xc8\x83\x0b\xe0\x69\xb9\x4f\xa4\x48\xec\x4c\x17\xea\xec\x2a\xf7\x25\xbb\x68\x6c\x0b\x9e\x0e\x1b\xc3\x41\x4d\x2a\x5e\xdb\x04\xfe\x61\x8e\xcd\x24\x70\x00\xe7\xae\xec\x61\xea\xa4\x7e\x4b\x08\x4c\x4e\x9d\xd4\xed\x0e\xf7\x19\x4f\x52\xd7\xfe\x6c\xdd\x1c\x9f\xab\xba\xee\x04\xb1\xae\x25\x4d\x8f\x4e\xc2\x40\x8e\x20\x84\x12\x8b\xc0\x6e\x3e\xc7\xae\x8f\xfb\x66\x69\xa4\x68\x61\x74\x58\x47\x3f\xe4\xcd\x44\x5f\x5e\xca\xe9\x5e\x51\xda\x6f\x5e\x9c\xcd\xe6\xe0\x2f\xb8\xb5\x96\x5a\x27\x47\x02\x6e\x30\x6c\x62\xcf\x22\x2c\x96\x0b\x18\x0e\x5c\xc2\x48\xf0\x7e\xd1\x7b\x2c\x23\x9d\x01\xd3\xa3\xd0\x81\x27\x93\x97\x4e\x77\x2b\x67\x78\x14\xf5\x21\x83\x83\x61\x35\xb5\xdb\x7f\xa4\xd5\xba\x72\xdd\xc7\xb3\x32\xa4\x71\xba\x94\x4e\xe7\xa3\x52\x72\x3e\x32\xc5\xe7\x23\x52\x74\x3e\x3c\x85\x55\xd6\xa9\x68\x97\x78\x99\x02\x08\xca\xa8\x8a\xa5\xc2\xc8\xaf\xd5\xcb\x0b\x54\x04\x37\x6b\x7c\x9f\xc8\xe8\xc4\x5f\x58\xc2\xc4\xb5\xe7\x02\xea\xe8\xfb\x8c\x05\x3a\xd8\xfb\x8d\x7a\xd5\x1c\x07\x47\x55\xa5\x28\x80\x35\x71\x1e\x32\x5b\x25\xd1\x2a\x8f\x52\x6a\x07\x03\xa9\x97\xce\xd1\x0f\x10\x31\xb2\x3a\xce\x47\xab\x6d\xad\xb5\xe1\x63\x61\x76\x05\x87\x67\xbf\x3f\x9d\x49\xb2\xd1\xd1\x1d\xb2\xfc\x38\x2a\xec\xb0\x0c\x19\xc8\x8a\x3f\x02\x31\xb9\x74\x1b\xe8\x51\xce\x50\xa0\xe8\x4e\x88\x53\x0b\xaf\x2d\x0b\x9a\x37\x5d\xea\x97\x1d\x90\xd6\xf2\x69\x99\xd4\xcf\x0a\x0e\xa0\x43\x3e\xb9\x02\xea\x78\x4b\xf7\x83\xa4\x59\x08\x3b\x56\x49\x28\xe0\x55\xd1\xdf\xb3\x7c\x27\x29\xdc\xed\x38\x66\x6c\xe5\xfd\xc4\x29\xff\x76\x96\xd8\xea\x69\x56\x21\x54\x5c\x23\x32\xc8\x4b\x11\x79\x5a\xed\x26\x2a\x2a\xd5\xa9\x3e\x8c\xb0\x4d\x71\xf6\x53\xd7\xdf\x68\xd9\xf0\xae\xe6\xd9\xa9\x44\xaf\x92\xd5\x54\x4b\x8e\x54\x55\x44\x24\x2a\xde\xa1\x54\x11\x50\x61\xf8\x9e\x15\x9b\x2d\x0f\x86\x96\x5d\x3d\xa3\x7e\x3b\x89\xb9\xb3\xf4\x72\x8b\x96\x2a\x8f\x49\x84\xc5\x97\x87\x19\x84\x86\x04\x92\x95\x29\x5f\x10\xdf\x7f\xd0\xa6\xb7\x05\xc5\x95\x6b\x74\xb7\xe7\x85\xc5\x69\x52\x04\xe5\x09\xca\x2e\x84\x4c\x4c\x11\x39\x08\xb1\x1b\xe2\x44\xe5\x1b\x9c\x51\xc3\x1b\xe5\x3a\x1b\x96\x3d\xf9\x9d\x29\xab\x08\x8e\xc5\x9d\x3c\x5a\x19\x26\x2b\x38\x0d\x63\xc5\x88\x24\x99\x77\x43\xeb\x5a\x0a\x1e\x10\x39\xda\x18\x8e\x2c\x19\xa7\xad\xcc\xe9\xb2\xce\x07\x08\x3a\x78\x89\x1c\x26\x56\x2f\xcb\x6e\x77\xc8\x65\x66\x21\x7a\x97\x1d\x8f\x30\xab\xab\x2a\xfa\x6c\x95\x2d\x86\x46\x8f\xec\x4e\x50\x48\xc6\x8f\x0e\x04\x3c\xd1\x10\x15\xc0\xc3\x42\x1d\xae\x7d\xdb\x9a\x95\x50\xe5\x06\x50\x0b\x8d\xd8\x75\x05\x9c\x6d\x0d\x02\x2b\x3e\xdb\xee\xc6\x5c\x97\x84\x51\xf3\x32\xc2\x19\xaf\xb1\x57\x12\x47\xf0\xe8\x32\x92\x9d\x21\x07\x7a\x64\xf9\x99\x03\x76\x1e\x45\xfd\x97\xf1\xdc\x2c\xd0\xa3\x04\x07\xb5\x28\xea\xd3\x46\xfa\x83\xf5\x8d\x4c\xbe\x7e\xcd\x9c\x02\x6c\x57\x05\x5d\xa7\x9b\x9d\x38\x1b\x8e\xc6\x49\x1b\x30\xfc\x5b\xa4\xc4\xf0\x80\xe8\xd0\x91\x3a\xec\xe4\x94\x78\xb9\x6d\x02\xc3\x85\xdc\x62\x4d\x67\xf1\x47\xef\xc5\xd1\x79\x21\xa3\x1d\xd5\x5e\x1f\x77\xfe\x91\x34\x9a\x08\xb2\xbe\x4b\xb0\x56\xd6\xe5\x7e\xc1\xd2\x23\x50\xf5\x43\x77\x82\xde\xe2\xee\x16\x7d\x2a\x93\x2c\x6c\x1b\x2e\x9d\x55\x3f\x8c\x64\x4e\x0a\xdb\x99\xb3\x5b\x1e\x4d\x59\x16\x65\x1b\xd6\xcf\xb2\x94\x95\x06\x7f\x78\xb0\x96\x1c\x96\x96\xfa\x87\x22\x0a\x54\x75\x88\x6f\xa0\x85\xd2\xd3\xd1\xc8\x9b\xb2\xe8\x1c\x86\x8a\xa1\x5a\x55\x33\xd1\x1e\x80\x30\x93\xfd\x93\xab\x61\x94\x46\x23\xb0\xbd\xe8\x4e\x46\x30\x5b\xca\x38\x4e\x1f\x29\xf1\x44\x32\x1a\xc4\x28\xa8\x7b\x47\xfb\x00\x32\x89\x61\xc3\xdb\x97\x89\xd4\x43\x19\x20\xf2\x59\x2a\x66\xed\xd6\x0f\xfd\x4e\x85\x35\xa2\x2c\x99\x5e\x1d\x12\x51\x2f\x80\x7d\x57\x5b\xc3\x2e\x57\x71\x5a\x7a\x7e\x14\xdf\x85\x24\xdf\x77\xe0\x67\x8c\x66\x7d\x4a\xdd\xbb\x41\x8e\xb5\x5a\xc3\x30\xf8\x87\x55\x70\x7c\x45\x04\x14\x78\xe0\xa1\x28\xe1\xda\xb7\x00\x03\x41\xc0\xe7\x80\xc3\xa1\xd4\x14\xbe\xe2\xd7\x04\x07\x26\x57\x5f\x10\x3f\x6a\x00\x83\x8e\x2e\x1b\xad\x86\xd2\x01\x69\xd8\x3b\x04\x13\xeb\x10\xff\xe8\x48\x30\x6e\xe9\x8e\xdd\x5e\x2f\x90\xc6\x81\xcf\x30\xac\x7d\xbf\x9c\xe9\xdc\x0c\xbd\x4e\xea\x09\x1b\x57\x0d\xfc\xd2\x3d\x8e\xc4\x46\x80\x21\xf5\xe2\xe1\x83\x01\x13\x4c\xd3\xd1\xa3\x69\x27\x87\xb8\xe6\x9d\x51\x63\xff\x36\xac\x9b\xe6\xc0\xfd\xc0\x97\xed\xba\x28\x75\xb6\x4c\x87\x12\x67\xf1\xf4\xe0\xd9\xa5\x35\x5b\x3a\xc9\xdc\xd1\x68\xd3\x41\x34\x1b\xcc\xa5\xe9\xb5\x50\x69\x27\x47\x6d\xe9\x3c\x1f\x07\x90\x09\x15\xaa\x9b\xdf\xe0\x70\x31\x67\xdc\x43\x76\x83\xe6\xaa\x4c\x9b\x11\xf4\xdf\x90\xc1\x22\xda\xb1\x1e\xa1\xcc\xda\x1d\x84\x11\xc1\xc1\x67\xd1\xa5\x0a\x0b\x74\x55\x0e\x0a\x81\xbe\x33\x82\x75\xe2\x92\x2e\x1d\x81\xfb\xba\x75\x08\x60\xc3\x54\x74\x20\x3e\x82\xf1\xec\xdd\x9b\xdb\xca\x1a\x53\xec\xa7\xef\x6b\x9d\x49\x36\xbb\xe9\x47\xd6\x28\x07\xc6\x8a\x10\x27\xd0\x59\x98\xa7\x9a\x45\x67\xd7\x2f\xa7\xf6\xad\xd5\xa6\x89\x4d\x7b\x60\xf2\xf3\xfb\x95\xa6\xae\x9a\x7d\x10\xbb\x73\x04\x8e\xe2\x31\x3d\xe8\x90\x63\x9d\xd3\xc3\x9d\xde\x51\x4f\x74\xc8\x51\x8f\xd9\x3b\x29\x23\xc1\x10\xb2\xf1\x0a\x10\xf1\xa1\x49\x00\xe0\xae\x6f\x27\x10\x6d\xfd\x04\xb9\x30\xc7\xcd\xbe\x66\x0e\x78\x78\xb2\xf1\xaa\x08\x20\x53\xb2\xd2\xaa\xa7\x5f\xf1\xe3\x37\x57\x36\xc0\x8f\x1a\xbb\x03\x75\x7b\x5a\xb5\xc4\x21\x89\x20\x2d\x80\x03\xbb\xab\x22\x01\xac\x62\xf8\x11\xf0\x6e\xf8\xa2\xcb\x03\xe0\x38\xf1\xfa\x24\x45\x44\x9d\x4e\xb5\x84\x3e\x84\xaf\xc7\xcb\xe3\x7e\xca\x13\x15\x3c\x07\xea\x9e\x7b\x1d\x0a\x69\x95\xe8\x42\x3c\xb6\x8f\x3d\x03\xe5\x3c\xa0\x3a\x80\x12\x57\x7e\x25\xdb\x5e\xfa\x7d\x7a\xa0\xe3\x8d\x10\xcf\x15\x7f\xcd\x95\xd5\x72\xea\xe3\x88\xe7\x19\xaa\xf5\x19\xbb\xc3\x0d\xc7\xdf\x64\x56\x84\xf7\x06\x6e\x2c\xd3\x71\xbb\xc3\xfe\x13\xa9\xbf\x98\x3c\x47\x25\x31\xfa\x3a\xf3\x68\xa9\x2a\x41\x64\xaf\x6d\x41\x48\xc0\xc4\x52\x30\x65\x91\x1d\xea\x0e\x54\x23\x7b\xb8\xef\x79\xc6\x91\x12\xaa\xbf\x35\x07\xa7\xcf\xf2\x0c\x4c\x15\x29\x51\x44\x84\x0f\xf3\xe5\x7a\x00\x97\xb6\x1e\x4c\xee\x16\xac\x1f\xc0\xe0\x5c\x7e\x4a\x23\xa5\xce\x64\x26\xb6\xed\xb5\x40\x51\x6a\x8a\xf0\x93\xaf\x02\x8a\x3e\x7d\x87\xa8\x5f\x3a\xc7\xa3\xec\x60\xd2\x81\x55\xda\x5b\x56\x9d\xa0\x56\x9f\x1b\x87\x0d\x3a\x82\x77\xd1\x24\x38\x02\xee\x36\xb0\x44\xc2\x61\xea\x39\xce\xde\x71\xf4\x0d\xd5\xf5\xe8\x58\xaa\x56\xb6\xb2\xa4\x33\x44\xf2\x8d\x7f\xf0\x23\x68\x8e\xb4\x8a\x99\x50\xbb\x97\x4d\xab\x54\xa8\xe2\xe1\xe8\x11\xb5\x0e\x1f\xb0\xb5\xc7\x8e\x7f\xe0\xc7\xaa\x21\x1e\xa0\x64\x09\xbf\x15\x0b\x93\x7f\xbc\x2e\xc6\xd8\xc9\x22\xfb\x3d\xf4\x2b\x10\x4c\xac\x43\xd3\x4c\x27\x41\x78\xaa\xfa\x0a\x54\xb9\xf7\xc5\x35\x7a\x5e\x5c\xd2\xa4\x72\xed\x66\x23\x08\x09\x92\xab\x5c\x90\x5a\x10\xd8\xe6\x20\x51\x7a\x69\x74\x50\x96\x2a\x7c\xa1\x80\x13\x5e\x26\xee\xd8\xb8\x44\xa7\xa4\xab\xa2\x20\x20\x0f\x22\x2d\x20\x88\x8f\x64\x2c\x7a\x81\xf5\x3c\x60\x0e\xd9\x12\x69\x47\xaf\x5d\xd8\x56\xbe\x49\xfe\x71\x9c\xa9\xec\xbb\x9f\x88\xdd\x3c\xcb\x38\x07\x06\x4b\x56\x5b\x8f\x91\x9b\x67\x99\x62\xd5\xe3\x96\x63\xb2\x9f\xd9\xab\x79\x74\x6f\xba\x5b\x15\xf9\xce\xc2\x0a\x43\x51\x3e\x9c\x0f\x14\x42\x0b\xe8\x1f\x51\x08\x73\x91\x4a\x38\x29\xb3\x85\xa5\x86\xc0\x48\x35\x35\x02\x7c\x94\xe9\x54\x51\x41\xe3\x79\x55\x26\xec\x25\xc2\xc1\xe1\x78\xc5\x01\x6d\x76\x5d\xc8\xa5\xc0\xd6\xb2\xa8\xf7\x96\x95\x46\xfc\xb4\x05\xfa\x6a\x15\x8a\x20\xc2\xe9\x40\xf3\x48\x6e\x79\x10\x9d\x82\x74\x58\x69\x94\x96\x7e\x5f\xa8\xc8\x17\x64\xeb\x88\x81\xbc\xd8\xbc\xd6\x8e\x23\x64\x7f\xf3\x72\x4e\xfd\x9e\x2b\xda\x47\x08\x78\x15\x6b\xdd\x34\xf6\xb3\xb5\x11\xbc\xef\x3f\xff\x0a\x7b\xbd\x4b\x3f\xe6\x31\xd2\x0a\x2b\x22\xcf\x6a\x5a\xb5\xcb\x06\x0d\x37\x4d\xde\x50\xff\xf1\x93\x19\x37\xd6\x24\x47\x9f\x54\x0d\x35\x13\x93\xc0\xa3\x30\x81\xf1\x40\xe8\xfa\x67\x52\x38\x5a\xf1\xe0\x88\xb9\x81\x47\x4e\x6c\x06\xcb\x35\x46\x86\xa0\xb0\xb4\xd3\x0a\x0d\x8d\x68\xaf\x6a\xad\x0e\x85\x95\x5b\x2e\xec\xa8\x5e\x69\xc3\x91\x2e\x8e\x9a\xb3\x6e\xaf\x4b\x8f\xef\x78\x68\x93\x79\x1b\x0e\x26\x0e\xe9\x75\x0f\x87\x38\x52\xc2\x11\x61\x6b\x1a\x47\x8d\xe6\x71\xda\x5a\x8f\x89\x42\x85\x3b\x2b\x4d\xe8\xc9\x8d\xe9\x39\x65\x9c\xa4\x36\xe9\x6c\xcb\x4e\x98\xd4\x53\x75\xd7\x1c\x89\x70\xb7\xaf\x73\x79\x64\x60\xb0\x41\xda\x19\xb5\x88\x46\xf8\x04\x93\x08\x66\xe0\x12\x0f\x78\x44\x01\x3f\x6a\x1b\x47\x8c\x37\x9f\x0d\x36\x9c\xeb\x15\x31\x20\x31\x6b\x99\x78\xb2\x45\x1c\x85\x7b\x3c\x8e\x5b\x9a\xa4\xb1\x0f\x81\x39\xc4\x34\x95\xd1\xf7\x94\xcd\x06\xeb\xb2\x6e\x97\xd1\x6b\x37\x16\x8d\xf0\xf6\x29\x92\xbc\xe1\x02\xfc\x33\x54\x29\x23\x74\x9c\x1e\x1b\x28\xa9\x11\xb3\x9b\x02\x47\xf3\xde\x0e\xd2\x4c\x52\x31\x54\x9e\xff\x28\xa6\xf4\xfa\x6d\x44\x10\xed\x2d\x95\xf7\x12\x54\x5f\x83\x18\x4d\x5d\xfd\x9e\xde\x8e\xd0\xa2\xb4\x1f\x42\x80\x8d\x97\xfe\x2b\xf6\x5e\xea\x26\x7a\xce\x34\x46\xbc\x1e\x52\xdc\xfb\x4d\x24\x2e\x3b\xe9\xb4\x51\x3f\x2b\x3e\xd6\x32\x38\x8c\xbb\xa1\x26\x82\xe5\xf0\x8f\x9c\xab\xe5\xd0\x65\xfd\x1e\xc3\x51\xf4\x15\x25\xb6\x71\x71\xb1\x08\x6a\x0b\xce\x02\x02\xf3\xba\x67\xf0\xe9\xad\x71\x3d\x8b\x8d\xdb\x27\x3e\xaf\xb4\x75\x11\x53\xec\xa8\x1b\xd4\x14\xc1\x2d\xc1\x91\x74\x4b\xa7\xd4\x3e\xdc\xc8\xd0\xa1\x03\xad\x83\xdb\x2d\x89\x41\x68\x42\x88\x2f\xcb\x4a\x10\x1b\x81\x3b\x50\xd6\x53\x45\xd5\x2c\x1b\x8d\xfb\xdc\xa9\xb8\x06\x80\xe9\xf4\x56\xd9\xac\x99\x61\xc9\x06\x33\x0d\x5f\x05\x90\xdd\x2d\x5e\x42\x4a\x29\xf7\x4d\xe3\xb2\x79\x46\x7c\x57\x42\x36\xcb\xdb\xaa\x44\x44\xe5\x45\x7c\x9b\x9f\x28\x70\xfa\x34\xc2\xa3\x21\xae\xb1\xec\xa7\x01\xd1\xe0\xd4\x4a\x51\x3e\x95\x8f\xe1\xf8\x75\x84\xa1\xd3\xe1\xda\x9b\x3e\x6a\x1d\xd9\xb4\xfd\x3d\x30\x96\x74\xdb\xfe\x51\x1b\x56\x75\xd7\xbb\x22\x1a\xbe\x5b\xb2\x3c\x0c\xfd\x51\x5d\xa2\x9d\x63\x02\x93\xe8\x59\xcf\x52\x06\xe1\x86\x0f\xde\x31\x02\xfd\x75\x0c\x2e\x51\xc7\x4d\x6f\x1b\x15\x97\x45\xda\xf6\xdf\x17\xd2\x53\xee\x5f\xcd\xf5\x48\x2d\xab\x5a\x0e\xf4\x5a\x49\x40\x3b\x82\x8c\x51\x0b\x34\x1a\x54\x40\xf3\xfa\x4a\x10\xad\x35\xd4\xdc\x6f\xcc\x39\xc4\x3c\x8c\x06\x68\xaf\xde\x69\x98\xf4\x59\x30\xb3\x1a\x73\x00\xff\x1d\x56\x38\x9c\xba\x91\xf5\xb0\x71\x07\x9c\x1c\xa7\xd9\x82\x6d\xd6\x46\x0b\x36\xb7\x0f\x35\x6e\x97\x95\xba\xbf\x75\x8f\x17\xd8\x4d\x4d\x26\xab\x87\x3a\x7e\x61\x07\x85\x5e\x38\xb1\xeb\x13\xd5\xca\x32\x96\xda\x1b\xde\x03\x70\x35\xba\x95\xb2\xdb\x7c\x13\x68\x2f\xda\x00\xca\x8e\x2a\xbf\x53\x6a\xee\x0c\x30\xbd\x25\xba\x95\xa2\x3e\x8b\x5f\x2b\x75\x59\x58\x49\x65\x3e\x92\xa3\xb0\xa0\x0c\x27\x71\xde\x6c\xbc\x48\x64\xe6\xb5\x12\xcf\x74\x95\xe5\xd0\xea\xc1\x09\xfa\xc8\xb4\x70\xe6\x7e\x5b\x79\x50\x34\x64\xf9\x75\xfc\xce\x7f\xca\xd1\x33\x24\xac\x89\x3e\x93\x33\x27\x6d\x88\xe1\x39\xf2\x61\x78\x3c\xf1\x08\x7e\xe5\x6e\xf6\x1c\x10\x5b\xb0\x23\x7c\x5e\xf9\xfe\x3f\x4b\x54\x3c\x52\xd6\x3c\xfa\xbc\x42\x2f\xd3\xb4\xf9\x6d\xcc\xb2\xc1\x7e\x97\x3d\xf5\x21\x08\x5f\x0b\x5b\xc4\xa2\x9c\xd3\x3c\x06\x25\x1b\x16\xc7\xfb\xa1\x65\x51\xab\xab\xc0\x9d\x00\x54\x56\xe8\xcf\xe9\x47\x8c\x29\x78\x2a\xdc\x28\x52\x55\xeb\x7e\x86\xdf\x3b\x33\x41\x62\x9f\xb0\xcb\xd1\xff\x86\x46\xc4\x13\x20\x65\x3b\x6f\x01\xbc\x5c\x77\xca\xa2\xef\xb0\x0e\x5d\x7e\x7d\xa7\x74\x9f\x0d\x27\x21\x1f\x7f\x29\x2a\xd2\x65\x33\x7c\x46\xc5\x23\x7d\xb4\xba\xd6\x55\x18\xbe\x07\x2e\xc2\x0f\x5b\x30\x27\x8a\x4b\x9d\xfb\x36\x3f\x50\x94\x94\xfd\xc9\x47\xa7\xf1\x0a\x5c\x2d\x01\xc0\x7d\x03\xff\x29\xa8\xe2\x4e\x08\x13\xd5\xe6\x0b\xb6\xb1\x71\x3b\x38\xfa\x79\xfc\x95\x8b\x1f\x9a\x54\x45\x3f\x0b\xf4\x33\xc7\x66\x67\x3d\xf7\x23\x1a\xe2\x88\x54\xd4\x73\x1b\x14\x12\x2b\xa7\xe1\xd2\xc9\x22\x34\xef\x19\xee\x08\xa3\x85\xc5\x31\x52\x1c\x72\x0b\xd5\xd6\xb1\x48\x06\x21\x19\x35\x15\xc2\xd1\x6b\x67\x79\xf1\x58\x51\x42\x03\xc5\x8c\x48\x6e\xc2\xbe\xd1\x60\x1d\xdf\x59\xa2\x85\x00\x4f\xf2\xc0\x4b\xbe\xb5\xf4\x22\x17\x64\xba\xa1\x80\x83\xeb\x0b\x4a\x6c\x97\xd0\x36\xf6\x4a\xa7\x0e\x0a\xaf\xef\x8a\x4e\xd2\x46\xdb\x85\x5d\x9b\x85\x2f\x68\x98\x3a\x26\xcd\x56\xd8\xd4\x9c\xa9\x72\xfe\xad\x4e\x17\xb9\x39\xa3\xc4\xfb\x58\xbd\x3c\xad\xec\x1c\xd0\x35\x7d\xe2\x0b\xf2\x67\xa8\x13\x99\x30\xf6\x98\xd8\x63\x63\x79\xe3\x59\x78\x0c\x4e\xbb\x1b\x57\x84\x07\x5a\xc7\xac\xc1\x6c\xec\xac\x16\x71\x73\xf6\xf5\x57\x19\x67\x93\x8b\xde\x65\x33\x52\x31\x0f\xc1\x16\xdf\x8f\x9e\xae\x73\xc5\x2a\x5f\xed\xde\xf6\x7d\x7d\xe5\x32\x8d\x7c\x39\xc0\x8c\xd0\x4f\xae\x85\xf5\x9b\xbb\x2b\x75\x28\x38\x34\x4e\xf7\xdf\x3d\x7e\x12\x38\x63\x36\x14\x20\x04\x88\xb4\xeb\xcd\x77\x62\xfc\xfa\xaa\x25\x29\xbb\x08\x0f\xbf\x00\x35\x85\x85\xd5\xa0\x72\xc6\x02\x42\xfb\x4d\xaa\x0c\x4f\x19\xfb\xa4\xba\x9e\xfd\xb8\xb0\x7b\x5b\xbb\x86\x7f\x53\xd4\xb2\x15\x46\x24\x25\x05\x90\xf4\x80\x8d\x49\x95\x89\xdb\xb1\x3e\x8b\xfd\x67\x3b\x2e\xa4\xb4\x77\x42\xe8\xa2\x28\x65\xe9\x87\x7f\x1c\x3e\x46\x95\x26\x92\xdb\x93\x41\x97\xb2\x5d\x86\x7d\x62\x41\xdb\x6b\x32\x2a\xad\xfd\xc2\x3c\x4b\xf9\x71\x6a\x44\x5b\x83\x1f\xfc\x87\x63\x7e\xcc\x0d\xb1\x71\xec\x1a\xaa\x78\xa7\xdd\x13\xab\xd5\xf0\x14\x3c\xf6\x9d\x1c\xf6\x3c\xd3\x10\x4f\x34\x83\xc2\x03\xd2\xca\x16\x7c\x8f\x08\xfa\x2c\xeb\xd7\x76\x9f\x8c\xef\x2e\x4b\x22\x95\xb2\x7b\xb7\x8f\x96\xb8\xe5\xf3\x92\x5e\xb9\xc6\x11\x32\xeb\x3c\x85\x4c\xe8\x8d\xcd\xf7\x8e\x93\xbd\x6d\xd0\xcf\x71\x40\x94\xe4\xb6\xec\xe3\xb2\xf9\xf2\x1f\xdb\x19\x5d\x3e\x7f\xee\x03\x7d\x9c\x65\x8d\x2b\xfb\xb0\xf5\x51\x75\x94\xcf\x8f\x09\x83\x57\x4f\x30\x71\xa5\x3f\xfe\xad\xf1\x94\xf8\x59\xfe\xcf\xa8\xcd\xb5\xc6\x75\x7f\x72\x46\x37\xe9\x34\x33\xc9\x4b\xba\xd6\xaa\x16\xd5\xa9\x50\x5a\x3e\x44\x9f\x4c\x7e\xb6\xa3\x6b\xae\xb3\x60\x48\x10\x66\x9b\x3c\x5d\xca\x4a\x08\x49\xd5\x93\x62\x06\x7e\x12\x70\x80\xb1\xb8\x61\x44\x84\x4e\x65\x6b\xca\x81\x37\xc7\xcc\x5c\x37\xf2\xcc\x91\x55\x8b\x28\xb9\x46\x4a\x92\xcb\x80\x64\xc3\x73\x18\x98\x4e\x48\x82\x90\xf0\xf8\x29\x4a\xd4\xa0\xea\x73\x9a\xca\xaa\xc0\x3d\x93\xba\x89\x48\x2a\x96\x00\xa7\x12\xef\xce\x43\x8a\x44\x6a\x94\x50\xf5\x49\x2e\xa4\x35\xe0\xd8\x62\x22\x39\x69\x1a\xee\x21\x40\x8d\x6e\xed\x44\x55\x3f\xd9\x80\x31\xd5\xe5\x38\x99\xb6\x90\x09\x01\x9c\x5e\x5b\x6e\xb1\x73\x31\x78\x21\x55\xf1\x5f\xe0\xc7\xb8\xfe\x4a\x71\x41\x56\xae\x4e\xbf\x51\x07\xe7\x27\x9c\x10\x06\x0a\xf4\x24\x63\x21\x63\xbd\x28\xe4\xa5\x29\xcf\x50\x52\xc6\xf6\x75\x5c\x4c\x32\x6a\x92\xb3\xaf\xcf\xb9\x28\x06\xd3\xb9\xb5\x6e\xe9\xda\x14\x18\x4c\xf7\x96\x22\x74\x98\xfe\x42\x47\xef\xc1\x3a\xfc\x73\x7a\x9f\x2d\x83\xc2\x4d\x15\x39\xad\xb2\x7e\xc9\x88\xde\x6d\x40\x59\xb0\x37\xfd\x9b\xa0\x89\xde\x5e\x18\x4c\xfe\xe6\x71\x60\x0d\xab\x83\xdb\x0b\xe6\xfa\x97\x62\x5f\x29\x75\xab\x62\x64\x56\x2e\x8a\xcf\xc7\xd0\x48\xc4\x04\x23\x1a\x4e\xfa\xfd\x6a\x61\xb4\x88\x25\xaf\x46\x58\x96\x56\x36\x77\xd2\x90\xf9\xdb\xaf\xf4\x04\x4c\xae\x25\x35\x87\xac\xa3\xa3\x91\x9f\x11\x01\xae\xb5\x42\x66\x54\x98\x86\xff\x80\x61\x8b\xec\x2f\xb1\x7d\xeb\x17\x2f\xd5\xa7\x77\x1e\xf8\xbc\x9d\x8b\x4c\xae\xa2\x5d\x99\x93\x99\x7c\xb4\xc2\x45\x28\x98\x9f\x83\x79\xd1\xbd\xb0\x8c\x72\xa2\xbb\x01\x3d\xec\x91\xda\xd5\x87\x2a\xdf\xf7\x46\xba\x29\xe9\x02\xac\xb0\xea\x7e\x95\x4c\x28\x4b\x59\x0a\x04\xd1\xd0\xf2\xe4\x5b\x90\x9a\x70\x32\x38\x05\x55\x0c\xee\x3e\x57\x13\xad\x4a\x5d\xd7\x28\x2d\x2a\x14\x39\x6e\x64\x23\x23\xb5\x77\x9a\xd4\x43\xb0\x87\x32\x34\x67\x16\xcb\x83\x29\xe4\x68\x8c\x42\x6f\x4f\xaa\x21\xea\x9d\x83\xbe\xfa\x35\x6e\xed\x12\x0a\xae\x03\x20\x08\xc8\x54\x97\x1d\xda\xd7\x0e\x43\xda\x21\x3a\x9d\x32\xec\x0e\x9a\xfd\xfd\xd2\x01\x65\x97\x02\x58\x90\x9e\x01\x37\x71\xd4\x66\xf0\x56\x6d\xfe\x81\x4c\xeb\xa5\x81\x66\x3b\x3d\x70\x21\x73\x8e\x40\x52\x1f\xf4\xa6\x0d\x26\x71\x3d\xaf\xd6\x14\xa5\xe4\x69\x00\xa0\x5e\xba\xe4\x75\xca\x76\x4a\xe6\x04\x5f\x8a\x69\x18\x32\xb8\x17\x29\x68\xf3\x15\xde\x07\x6e\xaf\xb6\x93\x80\x24\xad\x8f\x92\xba\xb5\x07\xf4\xa8\xdc\xe1\xb5\x8e\x57\x8b\x05\x2a\x41\x08\xb1\xb0\xac\x97\xe8\x93\x99\x8f\x7b\x4e\x95\x1a\xed\xf2\xec\xe7\xb9\x2a\x4f\xab\xb2\xdd\x54\xf2\x78\x53\xdd\xe3\xd8\x9c\xa8\xa8\x26\xda\xfb\xc7\xf7\x03\x21\x87\x2f\xe6\x21\xa1\x81\xb4\xf6\x8a\x50\xab\x57\x60\x4f\x88\x0c\x9b\xc7\xad\x71\x46\x5b\x7b\x84\x9b\x45\xd1\x43\x38\x51\x65\x88\x13\x75\xcb\x1e\xbf\x06\x14\xd5\x10\x30\x42\xff\x20\x75\x35\xcf\x20\xcb\x1c\xf5\x3c\x18\xe2\x8a\x7a\x50\x8c\xc0\x90\xb0\x84\xed\x61\x8e\x62\x6a\xdc\x48\x59\x9b\x95\x4a\x9a\x55\x6f\xb1\x1e\x61\x9a\xd0\xe4\xa7\xbb\xfb\xc1\xe1\xd1\xf1\x6d\xef\x78\x60\x1b\x80\xe9\x54\x20\x47\xa4\xf6\x9e\xb9\x52\x53\x5e\xfb\x91\xfa\xcd\xc2\xb2\xb7\x92\x5a\x4e\x17\xf0\xac\x01\x68\x96\xc8\x41\xf1\x28\x0c\xa6\xa7\x33\x5f\xe0\x67\xef\x3a\xac\x7a\xb3\xc5\xf6\xd9\x9b\xd1\xcf\x7b\x61\xd6\x8d\x69\xf3\xa4\x72\x32\xe4\x77\xe5\x8e\x78\x9a\xcf\x4f\x55\x59\x42\x3c\x7e\xc3\x71\x93\x21\xe6\x0e\x3d\x37\x23\x0d\x81\x34\x3e\xf1\xbd\x9c\x9f\xa8\x23\x66\x6d\xa0\xcf\x36\xba\x96\xe9\x68\xa2\x2c\x88\x51\x3a\xf6\xd9\x6c\x6d\x32\x11\x9b\x8e\x3a\x2c\x8b\xe5\x41\x65\x8c\x5c\x66\xeb\xda\x8e\xa8\x0b\x16\x08\x0f\x8a\xc2\x79\x7d\xb0\x81\xd1\x9c\x2c\xca\x4b\x56\x2d\x47\xaa\x0e\xbf\x85\xcf\xc9\xf2\x3c\xe0\x11\x48\x93\xd6\x75\xc2\xf1\xb3\x1b\x0a\x7a\x09\xe3\x68\x50\xc8\x55\x56\xfe\xd0\xdf\xd7\xf2\x25\x8f\x93\x4a\x85\xf6\xc9\x88\x4f\x0b\x4f\x03\x24\x0a\x5a\xf6\x85\x93\x62\x98\x77\x86\x69\xa9\x4d\xe9\x70\xb8\xe6\x2f\xca\xf1\xe8\x53\x29\xe4\x27\x0e\xf1\x19\x48\x01\x04\x24\x74\x36\x17\xb0\x62\x04\x75\x38\x68\x69\xf6\xce\x70\x0f\xe3\xa8\x5a\xe5\xe2\x52\x56\x22\xa7\xf5\x72\xc8\x48\x1c\xf4\x66\x39\xb9\x04\xd0\x50\x20\x7e\xe8\x0a\x43\xac\x33\xcd\x76\xb7\x7d\xcb\x14\xa9\x98\x26\x1d\x11\x21\x66\xe4\x54\x8d\x15\xa9\x76\x41\x69\x45\x6f\xda\xea\xa2\x5e\xbf\xfb\x28\x57\xac\x60\xaf\x35\x4a\x41\x86\xc5\x2a\xc7\xe6\xad\x27\xd9\x3b\xac\x63\xae\x4a\x2f\xea\xd8\x6c\xad\x09\x09\xe4\xec\x1a\x7f\x5d\xf2\x89\xf4\x3e\xd8\x43\xcf\x91\x32\x34\xf2\xd2\x9e\x55\xf3\xb8\x86\x87\x79\x9a\xb2\x28\xa8\x78\xec\xb4\x11\x1e\x80\x46\x12\xa4\x20\x96\x87\xf3\xa7\x7b\x2e\x66\x6a\x85\xad\xaa\xac\x21\xb6\x9c\x06\x26\xe5\xfb\xc8\xd6\x2a\x8b\x7d\xcc\xbf\xe7\xcb\x96\xdb\xc3\x62\x17\x52\xe4\xf6\x7e\x01\x6a\x6f\x85\xd3\x5f\xb6\x52\x25\x1a\xa3\xc3\x2b\x0e\x75\xd8\x09\xdd\xf1\x2b\xfa\x95\xa9\x42\xce\x6a\xf3\x7f\x09\xb2\x7d\xb6\xad\xfc\x81\x2a\x80\xf8\x72\x96\x32\x8f\x99\xc0\xaa\xa9\xd1\xe8\x55\x50\xb9\x10\x97\xd3\x56\x7e\xa2\x5a\xa6\x96\x36\xfa\x8c\x03\xe4\x42\xdf\x68\x74\x06\xe9\x98\x58\x90\x93\x7b\x47\xb6\x15\xed\x8b\x3f\xdc\xf9\x9b\x58\xc0\x22\x9f\xfb\x9d\x59\x3a\x18\x61\x4e\x37\x25\xeb\x5c\x5b\x30\x0d\xe3\x20\x77\xa6\x55\x7a\x5e\x02\x26\xaf\x6d\xcb\x4d\x9d\xb8\xf6\x87\x04\xfe\xd7\xaf\x12\xcd\xad\xe6\x64\x54\x05\xb5\x1b\x41\x28\x95\xcf\xb5\x10\x8a\xeb\x82\xb0\x0d\x2a\x8c\x7f\xcb\x96\xda\xee\x65\x36\xa3\x9a\x7c\x96\xc9\xd2\xf4\xaa\x61\x69\xa7\x75\xea\x6e\x73\xa8\x39\xce\x9a\xb4\x68\xe0\x50\xd1\xfd\xf0\xe3\x30\x4d\xa5\x4b\x05\x81\x24\xbc\xc3\x18\x32\x83\x21\xec\xf5\xe5\x27\x63\x7b\x46\xd6\x4d\x5d\x24\x46\xd1\xf7\x1f\x09\x0f\xc8\x28\x49\xcc\x62\x05\xd5\xda\xf4\xbd\xa4\xe2\xfd\xe3\x8c\xeb\xb6\x9b\x1d\x9a\xb1\x62\xb7\x43\x23\x33\x76\xb8\xbb\x61\xbb\xdd\xdc\xfb\xc6\xf1\xe1\xf1\x9e\x8f\xa8\x01\x61\x3a\xf9\xea\xd4\x36\x12\x0a\x31\xf2\x47\xd3\x34\x23\x58\x3d\x6a\xf4\x2a\xc9\xda\x87\xf6\x89\xc7\xf0\x31\x55\x68\x4a\xfe\x45\x5b\x20\xa9\xdb\x84\x6c\x7f\xf1\xec\x78\x89\x50\x2a\x58\xd2\xc6\x7e\xee\x38\xb5\x73\x40\x83\xbe\xb0\x5e\x59\x54\xcf\x8e\x36\xef\xec\x00\x0a\xb7\xf6\xc9\x10\x99\x13\x80\x9f\x21\xfa\x20\xd4\x78\xa3\xf1\x04\x39\x3f\xf6\xbe\x39\xdf\x36\x59\x66\xea\xf7\x9c\xa2\xc6\xa7\x67\xd3\x2b\x58\xa9\x90\xef\xfb\x8d\x4e\x14\xa6\xbf\x68\x5a\xfb\xe0\xb4\xc1\xfe\xfb\x9a\x92\xbe\x09\xf9\xf8\x53\x02\xa6\x34\x79\x41\x7b\xf1\x46\xa4\x41\x83\x2c\x9a\x24\x6d\xa0\xd7\xba\xfc\x26\x15\x87\x2d\x6c\x92\x5b\x8c\xb9\x9d\xf3\xb8\xd6\x27\x71\x85\xc5\x96\x47\x3c\x05\x30\xb6\xc9\x93\xc5\xc9\x40\x9e\x44\xbb\x81\x20\xc7\x78\x8c\xcc\xe3\xa4\xc3\x0e\xa5\xfb\x26\x74\x2a\x79\x63\x53\xce\xf2\x3e\x18\x0f\x61\x34\xa7\x6a\x6c\x7f\xb5\x2f\x39\x38\x34\x28\x02\xde\xad\x82\x49\xf4\xde\xc7\x23\x1c\x0a\xa3\xf8\x11\x4e\x06\xa3\xe9\x4c\xfb\x22\xa9\x02\xdf\x93\x27\x2d\x79\xae\x01\x03\xd9\x23\x9b\x2e\xe7\x27\x93\xe0\x70\x80\xc4\xe7\x2a\xa8\x20\x96\x68\x7e\x3b\x23\xbe\xfa\x55\x4f\xa5\xe2\xce\x39\x5b\x2f\x37\x12\xe0\x6b\xb1\xf5\x61\xae\xe4\x1e\x4a\x19\x27\xef\x7c\x68\x09\x26\x62\x84\xbe\xfd\xac\x89\x91\xca\xc9\xeb\x96\xa5\x76\x48\x0f\x71\xef\xc9\xbd\xb2\xb9\x35\x18\xb7\x0e\xce\x5c\x51\x11\xc9\x0a\xb9\xda\x21\x91\xc5\xf3\x1d\xc6\x38\x5a\x8b\xff\x70\x9c\x83\x42\x6b\x8b\x4b\xaf\xe7\x19\x67\x7d\xc0\xdf\xea\x74\x16\xd9\x62\xe3\x36\xdc\xe8\xda\x14\x6e\x1f\x1a\xa9\xb6\x31\x79\xc5\x30\x21\xb8\x32\x6e\x36\xd7\x70\xb4\xc1\xb9\xb9\x30\xf6\x03\xc5\xda\x7f\x2f\x5f\x24\xdb\x22\x49\xdc\xc2\x6d\xd9\xd9\x25\x8d\x7f\x71\xbf\xe1\x45\xae\xd1\x2b\x83\x15\x96\x52\x13\x14\xf4\x9a\xc7\x25\xcc\x9d\x20\x3d\xb3\xc5\x41\x7b\x07\x66\x6f\x45\x97\x2d\xed\x06\x17\x7e\x65\xa7\x4d\x2a\xf9\x75\x61\x6d\x16\xe1\xc7\xf8\xc2\x30\xd2\xde\xd8\xd3\x6d\x3d\x54\xd9\xcf\xee\x60\x43\xef\xfd\x4f\xee\x36\xe2\x53\x33\xd9\x29\xf1\x44\x38\x08\x6d\x30\xb4\x0f\xa3\x6d\x74\xb4\xc7\x3e\x4f\xbb\x07\xe9\x4b\x75\x1c\x60\x08\x79\x2c\x68\x4b\x25\x21\x25\xc8\x05\x5f\x38\x01\x98\xb8\x74\x11\x60\xa4\xeb\x99\xd2\x7f\xf4\x49\x90\x92\xfd\xa5\xb7\xc5\x82\x0e\xb6\x62\xbb\x00\x4a\xc1\x67\x9a\x5b\x82\x0d\x7f\x09\x59\xde\xa1\x3a\xc9\x4b\x22\x7b\xc1\xa8\x15\x4a\x69\x6e\x9d\x4e\x50\x54\x31\x9a\x25\xe9\x77\x28\xf6\x29\x26\x89\xbb\x43\x38\x45\x14\x22\x2a\x79\xdb\x75\x44\xbe\xe7\x58\xdb\x24\x03\x34\xdb\x75\xdd\x97\xf6\x29\x13\x08\x19\x1e\x2e\x99\xda\xfb\x41\x9c\x81\x59\xeb\x23\x46\xb4\x99\x19\xe1\xf7\x09\x9c\x19\x5f\xd2\xa0\x4d\xac\xff\x6d\xd8\x21\xbe\x27\xe6\xdf\xfa\x1f\x65\x54\xb7\x23\x92\x7d\xcd\x90\xf5\xab\x6f\x32\xc1\x06\xc7\xdd\xb7\x58\x21\x90\x84\x4c\xb6\x10\x41\xe9\x6e\xbf\xfd\xf8\xe7\xc8\xd2\x08\x8d\xac\xed\xc2\xef\x92\x59\x7e\x41\xd2\x11\xc1\xa9\xc6\x32\x88\x1f\xd0\x8a\xc4\x06\xd7\x4f\x85\x7d\x11\x02\xa1\xdd\x64\xd8\xc5\xd3\x50\x5e\x0b\x1c\xc7\x53\x89\xd0\x1f\x76\x2f\x2b\x4c\xb1\xdb\xf3\x2c\x42\x52\xb1\x0e\xcb\x34\x6a\x3e\xd2\x14\x8a\xaa\x79\xb3\x15\x45\x55\xcb\xea\x6f\x16\x61\x9a\xc4\x34\xf7\xbc\xf4\x8c\x9d\x4e\xd8\x64\xce\xc8\x60\xe2\x10\x2c\xb2\xc3\x72\x84\x0e\xe6\x68\x9f\xdb\x03\x4e\xa2\x5f\xca\x3c\x13\x62\xaa\x8a\x3c\x5f\xbd\xda\xb5\x28\x70\xa6\x23\x7e\x42\x01\x4f\xef\x88\xf8\x0a\xf6\x7f\xd4\xa4\xb9\xa2\x01\x5d\xa9\x92\xf9\x97\x04\x0f\xd5\xcc\x95\x37\x26\xcf\xd9\xfb\xb1\xa3\xb1\xee\xc9\x6b\x4d\xaa\xf3\xdc\x5d\x05\x09\x30\xab\x7b\x2f\xd0\xbf\xde\xb8\x62\x49\xa6\x9f\x46\x3b\x77\xc5\x75\x57\x52\x8c\x34\xf3\x01\x16\xbc\xb1\x02\x36\xba\xf8\x60\xdc\x7b\xfc\xe3\x50\x5f\x9f\x26\x26\xbf\x26\xd9\x97\xe2\x8e\x34\x8c\xfe\xe3\x5a\x90\x12\x47\x21\xc1\x1a\x11\x65\xc9\x82\x56\x0e\x25\xd2\x5d\x2b\x3c\xce\x8e\x8a\x67\x84\xc9\x63\x49\xea\x83\x0d\xec\x8c\x37\x98\xe3\x60\xb6\x71\xd7\xbc\xf1\x32\xeb\x0d\x3a\x8d\x85\x9b\x41\xa6\x47\x6d\x7b\x6e\xcd\xb9\x1e\x3b\xec\x6e\xa8\x84\x33\x3d\xca\x5c\x27\x76\x31\xd5\x64\x00\x51\x16\x6d\x3f\x1f\x96\x33\xec\x31\xcf\x0a\x88\x05\x77\x2e\x47\xae\x7b\x0a\xdc\x46\x1d\xc3\x88\x94\x4d\x1f\x9a\xdc\x93\x04\xea\xfb\xb5\xc0\x16\x3b\x22\xc7\xc2\xac\x9b\xe3\x02\xd3\x36\xd3\x29\xdb\xca\x3f\xda\x41\xc3\x60\x0d\x72\xbe\xe6\xd6\x6e\xd9\xa9\xd3\xa4\xfa\xd4\x3a\x35\xaa\xdb\xce\x76\x91\x5f\xcc\x4f\x49\x65\x4b\x28\xae\x5f\xa3\x4b\xd9\xa7\xe1\x99\x64\x4b\xc3\x4f\x93\x23\x1e\x7a\x8c\x1c\xe9\xc4\xa2\xc8\xa3\x11\xfe\xa9\x87\x43\x0e\xa2\xc3\xb3\xc9\x9a\xe3\x27\x89\x8e\xac\x4d\x27\x08\x19\x9c\x16\xa7\x3e\xb2\xf0\xe8\xff\x6a\x9c\xb1\xa7\x37\xb9\x0c\xcb\x2e\x5f\xdd\xac\x7a\x69\xb7\x65\x9b\x46\x24\xe6\xbc\xea\xc8\xfe\xcd\xa5\x5d\x65\x4a\x6b\x28\x47\x31\x2b\x15\x59\x86\x50\x5c\x6f\x3b\xf0\x6f\xe1\x9e\x2b\x17\x59\x93\x04\xc5\x4b\x2b\x59\xe2\xc6\x5a\xbd\x4a\xdb\xed\xa4\xac\x62\x7e\xca\xa6\xe1\x79\x43\xd3\x47\x57\x9c\x78\x94\x33\x9c\xd8\xb1\x0e\x3c\xe4\xb0\x13\xfe\xfd\xdd\xf9\x07\xff\xf6\xc7\xfe\xe2\xdf\xfe\xf1\xaf\xff\xe4\x77\x2f\x1e\xe6\x2b\xdd\xe2\x3e\x5e\x7c\xf9\x3d\xbd\xd2\x25\x37\xbb\xfc\x8a\x27\x6e\xf3\xe3\x9e\xf7\xba\xf7\xfc\x12\x4f\x7d\xe2\x5d\x3e\xe1\x8d\x9e\xf9\xde\xdf\xf8\xc1\x8b\xdf\x73\x6a\x7b\x45\x90\x90\x5d\x61\xb8\xc2\x75\x45\xe4\x0a\xea\x8a\x72\x02\xa8\x0e\x29\x93\xc2\x04\x66\xe8\xbc\x4a\xea\x86\x3c\x62\x35\x1b\x63\x89\xf6\x39\x19\x69\xa9\xc4\x97\xaa\x49\x42\x29\xfe\x90\xba\x31\xd1\x5c\x86\x85\xdb\x2b\x4c\xc9\xbc\xc5\xff\xa9\x50\x83\x51\x15\x31\x19\x29\x2e\x73\x9d\x30\x38\x08\xce\x2c\x59\x8b\x1f\x8d\x9a\xd1\x1a\x67\xb9\xde\x3f\x2a\xa6\xc9\x54\xbf\xdf\xd5\xd5\x63\x23\xc9\x2d\x2c\x96\x38\x1a\x24\xbb\x1a\x62\x12\xd3\xbd\x28\x47\x2f\x41\x79\x32\xed\xac\x17\xeb\x2b\x6f\x20\x63\x8e\x82\x00\xae\x35\x7f\x47\x19\x04\xa6\x21\x67\x16\x4c\x36\xfb\x99\x28\xeb\x8f\xd1\x3b\xe8\x80\x25\x7f\xcd\x6b\x73\x99\xa2\x52\x58\x06\x69\x87\x0e\xf6\x3a\x3f\x91\x2d\x97\x89\xeb\x67\xda\x3d\x38\xec\x9a\xb5\x66\xb2\x88\xd6\x25\xc4\x4b\x3b\x53\x36\xa4\x1e\xef\xd9\xcf\x42\xd1\x60\xb6\xc2\xbc\x7c\xbd\x34\x72\x53\xe6\x2b\x5c\x3c\xd6\x05\x8a\xe6\x92\xcf\x22\x8c\xfd\x3f\x62\x24\x76\x8b\x63\x5d\xa4\xe8\x71\x72\x4e\xf5\xa7\xb5\xa9\xe0\x76\x27\xbd\xbf\x9f\x1e\x0c\x22\x2d\xe0\x31\xaf\xb2\x92\x2f\x3f\x03\x5b\xe8\x29\x84\x3d\xf0\x6f\x79\xe9\xb4\x43\xa9\xbb\xf9\x2b\x29\xb9\x9d\xe6\x79\xc1\x65\xbd\xc9\xa0\x24\x09\xad\x8c\x8f\x80\xd0\x0c\x79\x03\x0a\x8d\x64\x03\x4d\x3d\x93\x35\xfb\x99\xcb\x48\xc2\xa3\x57\xf0\x14\xd9\x85\x8c\x7a\x69\xa4\x5b\xd9\x40\x9a\x8c\x22\xd7\xcf\x5d\x3a\xc7\x24\x41\x18\xaf\x1c\x72\xcc\xf1\x68\xc3\x02\x6e\x3a\xe2\xeb\x05\x23\x3d\x61\x83\x45\xef\x59\x94\x9f\xb1\x50\x0f\x6c\x33\x82\xdf\x0f\xeb\x5c\x68\x0d\xea\x12\x46\x54\x9c\xce\x32\x87\x96\x93\x84\x3e\xa6\x6e\x42\x80\xac\xdd\x06\x9c\x41\xcd\x7f\x66\x37\x01\x19\x8f\xfc\x8e\x30\xdb\x88\x7d\xc4\x5b\x58\x0c\xa0\x14\x22\xb9\x6e\xc4\x5a\x64\x24\xa9\x85\xd8\x80\x8e\xed\x15\x7b\x49\x28\x65\x53\x69\x96\xf3\x96\x94\x20\x13\x7d\x2c\x79\xc9\x86\x9b\xd3\xe1\xe1\x7f\xf8\x9e\x27\x4f\x40\xf9\x39\xf0\xb2\x5f\x99\x7a\xcd\x75\xf8\x70\x80\x19\x30\x91\x78\x65\x1b\x9e\x1c\x1f\xca\x73\xd9\xfc\x10\x76\xcb\x2b\x27\x13\x65\x91\xa8\xc4\x7a\x1f\xa1\x71\xfa\x57\x7e\xd6\x5c\xde\x46\x56\xb1\xfb\x9e\x55\xc4\x76\x88\x5c\xcd\xf6\xd2\x4a\x23\x08\xbb\x09\x74\x07\xda\x70\x64\xa6\x39\xb1\xf4\xd8\x7f\x09\x61\x89\x75\x57\xad\x35\xa4\x08\x1a\x46\x00\xa3\x57\x2a\xd8\x16\x8d\x4c\xde\x5f\x3a\x06\x7c\x97\xb0\x1a\xf6\xae\x1d\x5e\x2f\xaa\x6c\xdd\x3c\x36\x17\x1e\xbd\x21\x29\x8f\xb6\x2b\xef\x94\xe3\x2a\xc9\x6e\xfd\x03\x84\x67\xc8\x76\x85\x38\xca\xaf\xaa\x8e\x83\x34\x76\x92\x30\xff\xbc\xb6\x75\xa7\x27\xc2\x01\x43\x2f\x6d\x6b\x3c\xae\x66\xb2\xd9\x3a\x69\xbd\x87\x0c\x09\x53\xbc\x0c\x63\x5c\xc7\xf0\xc4\x9b\xfb\xd7\x93\xbd\x27\x57\xbb\x53\x8a\x64\x9e\xd5\x8a\xb4\x59\x85\x09\xa8\x85\x88\x9a\x1c\x85\xb1\x07\x9c\x38\x6d\x12\xb4\x6e\x13\x0e\x27\x0b\x27\x5d\x38\x2e\x80\xbd\xd6\x8d\x96\x79\x16\xda\x48\x40\x39\xff\x2f\xe4\xdc\x94\x08\x52\xb2\x17\x17\x12\x9b\xb4\x8a\xb9\x22\xad\x39\xe3\x35\x98\x20\x01\x43\x57\xc0\x9b\xa8\xea\x66\x78\x24\xbc\x05\xb7\x44\xf3\xee\x77\x3b\xba\xe1\x42\x30\x72\x44\xa2\xac\x40\x4e\xfc\x00\xf4\x8b\xc7\xe2\xab\x69\xf0\x2d\x69\x3c\x75\xcc\x5c\x7e\x9e\x80\x89\xa2\xb9\x80\x5e\x1a\xbb\x6c\x4e\x4e\xab\xa7\x58\x4b\x6e\xb6\xf4\x19\x49\xeb\x3e\x6e\xe4\xa8\x18\xf1\x12\x04\x76\xd5\xb8\x58\x9b\x07\x5a\x67\x4f\x53\x9b\x9c\x4d\x91\x36\x3d\xbc\x90\x0b\xfc\x57\xa0\x4b\x53\x35\x38\x37\x90\x26\xf7\xdd\xf7\xe6\x10\x8d\x82\xb9\xb9\x0a\x95\x92\x71\x05\xa6\x16\x4f\x91\xb6\xb9\x68\x57\x96\xce\x32\x8e\xe0\x02\x39\xae\xf5\x8e\xc9\xf2\x0e\xf4\x6a\x9a\xff\xe1\xe5\x7d\x7b\x57\x70\x3a\x68\x3f\x6c\x33\x37\xf4\x49\x94\xd6\xb9\x10\x5d\xde\xc6\x4e\x08\xc2\x32\x56\x88\x63\x23\xb1\x2b\x21\x62\xe4\x79\xef\xc3\x19\xdf\x7d\x7c\xd4\x3a\x3b\xbc\x1b\xf2\x9c\x1f\x62\x8b\x57\x89\xcf\x4f\xf4\x0c\xbe\x05\x53\x5b\x00\x06\xc8\x5b\x2b\x77\x49\x2c\xde\x36\x58\xf2\xfd\xbf\xb5\xca\x1c\x3b\x5d\xf7\x2e\xcb\x10\x5f\xd4\x03\xc2\xd2\xcf\xe0\x88\xc3\xfb\xdb\xf2\x14\x53\xc3\x42\x9f\xc4\xe7\xbf\xeb\xa0\xb4\xa4\x66\xab\x0d\x5e\xa6\xb7\xe8\x7b\x73\x89\xb1\x6a\x6c\x5f\xdf\x0c\xad\xb3\xd9\xcc\x3d\xef\xbb\x37\x2a\xb7\x8d\xf0\x00\x8b\xb6\x8c\x5d\xac\x9a\xab\x5d\xbe\xc1\x45\xcc\xb1\x3e\x8b\x9a\xbc\xb4\xbd\xc0\x57\xc6\x9d\x6b\xa9\xec\xd7\xe5\x6e\x8f\x93\x38\x06\xca\xf5\xf0\x3e\x38\xdf\x08\x82\x33\xcb\x7c\xf5\xc0\xe2\x50\xd6\xe9\x44\x93\x23\x0b\xe0\x94\xba\xe3\x93\xda\x4f\x04\x4d\xd8\xd9\xd2\x8b\x66\x0f\x92\xd3\x0a\x28\xbd\x70\xb6\x15\xaa\x73\xff\x8b\x08\xeb\x73\xdf\xad\x6a\x99\xc9\x22\xcb\x9e\x24\x40\x51\x24\x7a\x80\xed\xaf\xbd\x80\x9c\x07\x96\xe1\x3b\x38\xad\x10\xcb\x76\xdf\x9d\xc3\xf3\x87\x3d\xec\xea\xdd\xd9\xc9\x90\x4e\xaf\x3c\x6f\x23\xb0\x0a\x46\x1c\x81\x88\x88\x41\xd7\x0d\x2d\x52\x2f\x86\xff\x2d\x6a\x0f\x60\x15\xc2\x45\x74\x5b\xc8\x01\x15\xac\xd1\x91\x82\xea\x2c\xbd\x28\xd0\xc1\xd2\x0b\x03\xfb\x6a\x93\x17\x40\xd7\x0c\xbf\x2e\x13\x92\x33\x29\x5d\x7b\x4f\xec\x17\xaf\x43\xb2\x33\x5d\xc3\x04\x40\x55\xba\xcd\xd0\x0d\x7c\x91\x39\x56\xc5\x03\xd2\x74\xda\x50\xe6\x92\x9f\x8c\x6b\x37\xb4\xa1\x2a\x71\x7d\xeb\x93\x11\x02\x99\x2f\x14\xb5\x4e\x6d\xb8\x0d\xb3\x89\x25\x92\x7d\xdc\x9c\x0e\xc1\xb1\x9b\x11\x01\xfe\x68\x4f\xee\x3b\x69\x8b\x17\x5c\x5f\xc1\x81\xbf\x94\x6b\x67\x84\x79\xe0\xd1\x9d\x10\x99\x06\xbb\x58\x31\x21\xc0\xbd\x1a\x24\xbe\xcc\xce\x47\x4c\xf4\x4e\x49\x15\x39\xdc\x91\x9f\x6f\x8c\x05\xda\xe8\x16\x0d\xf9\x00\xfa\xd4\xc1\x8e\xc1\x62\x43\xfa\xf0\xc7\x6d\x5e\x01\x5a\x5a\xc7\xa1\x27\x6f\x90\x94\x92\xe1\x8b\xf8\xe7\x97\x35\xc3\x03\x54\x95\x78\x30\xcb\x10\x1b\x5c\xf4\x26\xab\x90\x48\xf4\x13\x8b\xe5\x88\x5c\x52\x30\x5b\x51\x0f\x5f\xac\xbc\x97\xed\x94\x76\xdc\x10\x84\x3f\x3c\xe7\x93\xb6\x58\x34\x39\x17\x84\x6a\xea\xf5\xe8\xc1\xae\x15\xd2\x92\x8e\xf4\x8e\xaf\x04\x2e\x54\x1e\x6b\x8b\x25\x62\x04\x68\x52\x4e\xe5\x6d\x44\x8e\x2d\x60\x0d\x61\x72\x52\x03\xbc\xbd\x74\xfe\x79\x2d\xb3\x4d\xdb\x9a\xb8\xfb\xc6\x77\x86\x9d\x78\x1c\x9e\x24\x72\x9c\xc4\xe6\x46\x0a\x1b\x27\x75\xcc\x62\x33\x33\xd9\x48\xbc\xe5\xe2\x9f\xd0\x2a\xd3\xce\xba\x48\x5d\x8c\x19\x6a\x24\xc2\x12\x12\x3e\xc9\x45\xa1\xa3\x15\xb1\xb0\x39\x5e\xca\x14\x42\xc9\x4b\xf5\x3d\x36\x0d\xc1\x85\x30\x57\x36\x21\x64\x2c\x4a\xae\x6a\xfb\x5b\x35\x2b\x0a\x9c\xb2\x29\xa9\x0a\x68\x89\x67\x63\x43\xb1\x16\x3d\x26\xf1\x37\x94\xd1\xda\xed\xcf\x5b\xfe\xaa\x03\x6e\x3d\xe4\x6e\xc3\x2e\xd7\x6e\x4c\xd3\x99\xdd\x79\x3d\x76\xd9\x0f\x0e\x1d\x5f\x95\x1a\x48\x07\xe8\x95\x70\x72\x8b\x5c\xdb\xf8\x87\xe3\xa5\x06\x64\x33\x91\xe6\xbd\x15\xb0\x2e\x62\x4a\x55\xef\x0e\x8e\x48\xf5\xd4\xbb\x05\xc8\x3f\x96\x4d\xfe\x26\x0b\x16\xd2\x98\xea\x21\x0b\xcc\x5b\x69\xba\x80\xcb\x8b\x8a\x11\x89\x4d\xc6\x61\x94\x48\x67\x22\x44\x59\xb0\x84\x1e\xef\xfd\xd6\x48\xcb\x88\x23\xba\x8c\xfa\xe2\xd9\xd6\xf8\x7b\xac\xe8\x67\x91\x01\x16\xd8\xe9\xaa\x57\xc1\x10\x4d\x04\xa2\x18\xd3\x44\x22\x47\x04\x04\x67\x91\x20\x24\x6a\xec\xc4\x7b\x12\xfe\x17\x90\xf4\x53\xab\xef\x14\xb5\x84\xf9\x6d\x98\x6b\xad\x81\x93\x5e\xbb\x38\xe9\xe7\x29\xc7\x42\xdb\x23\x00\x5a\x6b\x9a\x06\x04\xc8\x19\x11\x31\x21\x99\x61\x97\x90\xf5\x9c\x4c\xd6\x3a\xa2\xb9\x78\x43\x46\xeb\x14\x93\xd6\x09\xf4\xa5\x11\x2f\x99\xe8\x72\xbf\x03\xa7\xa2\x28\xaf\xaf\x4c\x16\xdd\x95\xe1\x53\x95\x1a\x08\x86\x54\x5a\x33\x19\x7b\xbc\xf0\x79\x63\xa7\xb4\x91\x36\x7e\x3a\x3e\x1a\x2d\x09\x61\x15\xc4\xe8\xe3\xa2\x3f\x58\xbe\xc4\x79\x4a\xcd\xcc\x09\x81\x4b\xaf\x51\x14\x72\xa7\x27\xec\xa1\xb9\x57\xee\x16\xc9\xe6\xd2\x88\xd6\x82\xcb\x92\x97\xd5\xbc\x01\xac\xee\xd6\x55\x62\x89\x5f\xa5\xfd\x22\x56\x2d\xb6\x6c\xf9\x85\x5b\xbb\x79\x7e\xeb\x2b\x0b\x27\xfc\xb8\xfe\x48\xf4\xf0\xa0\x9c\xcc\x2a\xa0\x48\x13\x0d\x15\x27\xe4\x2b\xa4\xab\xed\x2b\xa0\x76\xc0\x4e\xff\xbb\x0e\x23\xd6\x8e\x8c\xfd\xb6\xd6\xac\xd4\xe6\xd2\x55\x45\x43\x01\xfe\x9c\x80\x4a\x2f\x13\xc1\x58\xeb\xdb\xdb\xaf\x2a\x1d\x81\x45\xf8\xc0\xcb\x50\xba\x61\xce\x55\x63\x34\x7c\x49\xa0\x23\x3a\x7e\x51\x3e\xad\xad\xa7\x1a\x26\x20\x16\x43\xac\xae\x1a\x86\x50\xf4\xa8\x9c\xfc\x9f\x62\xc7\x4b\x57\xff\xcb\x34\xe4\x03\xc6\x86\x68\x42\xf8\x6c\xab\xa2\x39\xe9\x02\x42\x22\x85\x34\x74\xe4\xb1\x86\x26\x42\x98\x41\x83\xaa\xff\xec\xd6\xa5\xbe\xb1\xc5\x1e\xd9\x27\x9b\x30\xce\xaf\xcf\x0a\x7f\xe2\xaf\xda\x7c\xcd\xb5\xba\xbe\xd0\x7c\x7d\xeb\x66\xdf\x92\x2e\xec\xdd\x7d\x17\xce\xa7\x62\x56\x41\x02\x05\x98\x61\x99\xbd\xe8\x8c\x29\x4a\x43\xc2\x32\x96\xc4\x42\x8b\xb3\x66\x5f\xbf\xda\x2f\x00\xc4\x38\xe9\x00\x80\x9e\x04\x52\xc9\x24\x9b\x7c\x8a\x21\xf4\xa3\x62\xa9\xf7\xec\xca\x05\xbe\xf1\x83\x3d\xf6\xc6\x86\x4c\xe5\xfd\x73\xf9\x38\xfc\x55\x9b\xab\xbe\xa0\x9e\xac\x1f\x2d\xfa\x8b\x9b\xdb\x59\xbd\xa6\xdf\x86\xd5\x39\xe6\x1d\xd2\xff\x24\x0d\xdf\x5c\x8a\x4b\x41\xd6\xc5\x2c\x11\x99\x48\x66\xe1\x55\xeb\x1e\x9f\x62\xbf\xf8\xff\xec\x5f\xe7\x7f\x41\x9d\xa9\x8e\x51\xcb\xd4\x94\x3a\x4a\x1d\xa9\x8e\x50\x87\xab\xc3\x54\x57\x54\x0b\xaa\x0f\x55\x1f\xa8\xfa\x55\x55\xaa\x52\x55\xb1\x6a\x95\x2a\x5f\xa5\x53\x65\x26\x7f\x9d\x7c\x3c\xf9\xa1\xe4\x07\x92\x1b\x92\xeb\x93\xeb\x92\x6e\x24\x31\x8a\xf9\xab\xfc\x65\xfe\x62\xfd\xd9\x7c\x31\x2d\x2b\x31\xa1\xfa\x8b\xbe\xbb\x1c\x59\x0e\x43\x80\x9d\xf0\x01\xbc\x07\x2b\xa0\x03\x6d\x68\x41\x13\x1a\x50\x87\x1a\x54\xe7\xcf\x2d\x49\x06\x2f\x3d\x11\x5c\xf0\x17\x85\x3c\x31\x68\xc8\xe1\xf4\x8e\x98\x8b\xd8\x20\x01\x0f\xc0\x7a\x94\x7c\xd9\xe8\xa7\x11\x10\x02\x1e\x30\x26\xfb\x21\x8c\x13\x17\x29\x7c\x84\xc8\x10\x21\x4e\x8e\x24\x34\xa5\x75\x9b\x66\xd0\x64\x21\x84\x93\x7e\x33\xe2\xcd\x99\x97\x65\xd9\x8a\x1c\x6b\x9e\xd6\x79\x78\xa8\x21\x1e\x06\xe8\x53\xa0\xd4\xb9\x1a\x35\xee\x6a\xb6\xec\x9e\x0d\x1b\xfe\xdb\x8d\x03\x24\x08\x5c\xb8\x16\xe4\x81\x47\x75\x28\x1e\xf1\x08\x3c\x72\x17\x6e\xc6\x0a\xb3\x35\x9b\x9a\xda\xce\x65\x04\x35\xe3\x31\x6e\xe2\xa1\x05\x01\x3a\x6d\x18\xa0\xf4\xab\xf5\xc0\x98\x47\xde\x59\x88\x8f\xf0\x84\x32\xfe\x86\xf4\x84\x9a\x88\x5f\x89\x15\xf9\x07\xac\x00\x3c\x15\x26\x65\x90\x0a\x2d\x54\x96\x65\x77\xeb\x2d\x78\x46\x22\xcf\xd8\x1c\xc2\x49\x83\xc3\x8a\x55\xaf\xb9\xeb\xae\x4b\xee\xbb\x6f\xb6\x3d\x2c\x13\xf8\x32\x9e\xbf\x5c\xf0\x7a\xbc\x43\x7a\x01\xc5\x1b\x78\x41\x88\xc4\x9f\x90\xa3\xe6\x21\x05\xe3\x1f\x0c\x98\xf8\x27\x33\x61\xbe\x15\x11\x63\x82\x84\x9a\xb0\xc7\x1c\x07\x48\x2f\x41\x74\xe2\xe5\xb0\x75\xd1\x97\x2e\xbb\xea\x3b\xd7\x3d\x2f\xbf\x9d\xaf\x5f\x50\x5e\x4e\xe2\x3f\x25\xff\xd7\xc0\xe2\xbf\xfa\xd2\xc5\xed\x0f\x4e\x05\x5c\x1f\x51\x49\x8b\xdd\x95\xf8\x60\xe3\xe0\xfe\x6f\x79\x5e\x6d\xb0\x69\xe9\xab\x7f\xbb\x26\xfd\x3d\xbb\xff\x16\xf8\x50\x2d\x3b\x63\xd7\x9a\x97\x4b\xa5\xff\x45\xf4\x4d\xf1\xdb\x8a\xfa\xb1\x62\xde\x7d\x91\x81\x07\x6a\x66\xfd\xc2\x08\xad\xcd\xbf\x46\xe9\x75\x89\x62\xe8\xc1\xbc\x15\x29\xf9\x18\x2c\xf7\x09\x38\xe4\x45\xaa\x03\xa3\xe4\x35\x48\xe1\xe5\x8c\xe0\xc5\xa1\x85\xb7\xc6\x90\xc1\xf2\xc6\xf9\x92\x12\x35\x62\x81\x3e\x84\x39\xb1\xc9\xab\x07\xae\x26\x9f\xc0\x0b\xee\xfe\x90\xcc\x9b\x51\x62\x32\x13\x21\x1e\x00\x4a\xea\xa0\x59\xd6\x18\x83\x82\x39\x35\x3e\xc0\xc5\xb8\x02\x68\xf9\x19\x70\x6a\x64\xce\x6d\x4d\x65\x18\x1f\xa2\xb2\x43\xeb\x12\x13\xdb\x00\x2a\x51\xe7\xeb\x96\xbe\x26\xf7\x16\x94\xa9\xf7\x1b\x47\xa8\xff\x53\xc5\x37\xef\xaa\x61\x3b\xf8\x40\x87\x92\x50\x2a\x9e\x2d\xe6\x36\x69\x6c\x29\x25\x5e\x38\x22\x40\xa0\x1e\x85\xdb\x96\xec\xb0\xaa\xa5\xaa\x73\xe7\x72\x4d\xcb\x46\xcc\xeb\xb7\x11\xe0\x0e\x37\x56\x2d\xdd\x18\xa8\x90\xa5\x13\x06\xfa\xfa\x7e\xb5\xb2\x7f\x70\x21\x69\x62\x54\x3e\xa6\x2b\x5f\xa9\x8b\x1a\xe6\x83\xe6\x02\x42\x97\x9a\x72\xfd\xa9\xf5\xf2\x78\xb5\x8e\xf9\x4c\x20\xd9\xa7\xcf\x4b\x4d\x64\x36\x51\x4d\xce\xa6\x5a\x3c\x46\xb3\xe1\xdb\x98\x68\x33\x30\xda\xd4\x10\xf8\xba\xc1\xc5\x25\xcf\xbf\xbf\x5b\x6b\x65\x14\x19\xc8\x9d\x72\xf9\x61\xec\xeb\x4c\x70\x56\x68\xae\x34\x12\x27\xb5\xca\xc4\xdf\x05\xcc\x41\x07\x67\xaf\x60\x7d\x6a\x06\xd6\x08\x3a\x8c\x8b\x44\xcc\x52\xd6\x60\x2b\x99\xe6\xc7\x25\x0a\x22\x8f\xce\xe2\xac\x7b\x4a\x9c\x33\xe2\x9c\xf4\x76\xb8\x9b\xb3\xe5\x1e\x15\x37\x8c\x4d\x96\x31\xb8\x48\x57\x6a\xa8\x2c\x6d\x8e\xbb\x12\x72\x4b\xf6\xa1\xd9\xc6\x45\x34\x48\x2d\xa9\x6e\x60\xe1\xdf\x5f\x2b\x07\x56\x61\x6a\x10\x7d\x82\x81\x45\x66\x0a\x4d\x96\xca\x04\x73\x55\x2a\xea\xd3\x95\x76\xc8\x96\x33\xeb\x66\x0f\xbc\x68\x7b\xd9\x6a\xf4\xef\x27\xf2\x18\x9a\x22\x3c\xa5\x41\x97\xc1\x44\xdd\xe7\xde\x51\xb9\x67\x71\xc4\xfd\x98\x0e\xed\xe3\xc1\xe6\xcc\x98\x9c\x06\x04\x13\x23\x0b\x25\x67\x68\xe4\x39\xcc\xbd\x47\xb4\x88\xdf\xe0\xc1\x9b\x69\xe5\x30\x00\x50\xc2\x9f\x28\xd1\x95\x47\xdd\x39\x46\xe2\x50\x64\x91\x44\x16\x5f\xef\x23\xf4\xc8\x79\xce\xd9\x97\xb8\x51\xcf\xc8\xaa\x64\x67\xd4\x36\xc4\x7b\x62\x83\x08\x46\x29\x2f\xbb\x20\x5e\x44\x6d\x01\x23\x5c\xc8\x81\x54\xad\x46\x23\xdd\x0c\x9f\x21\x38\x30\x24\x2f\x66\x65\xcd\x92\xf5\xae\x49\x85\x96\x0c\x0d\xe8\xf3\x66\xf0\x48\x2f\x2c\x65\x94\xfe\xae\x75\x9b\x7b\xe7\xbf\xb3\xd9\x39\xb6\xeb\x94\x32\xb8\x0f\x1c\xee\xcd\xbc\x1b\x96\xf0\x2c\x00\x24\x0b\x2a\x09\x36\x64\x01\x48\x3e\x4b\xe3\x00\x7a\xa8\x75\x03\xe9\x88\xcc\x12\x7f\xe5\x4a\x8b\x7e\xb1\x02\xdb\x62\x7d\xbe\xad\x15\x13\x6b\x96\xc5\x9b\x97\x35\xb8\xef\xf4\x84\x06\x78\x28\xd2\x6c\x17\xb3\x9e\xaa\xb6\x63\xed\xc9\xeb\x53\x45\x93\x16\xf6\x7c\x3f\x25\x00\x2b\x5c\xa2\x02\xbc\x50\xc8\x02\x3f\xc7\xdf\x4b\xeb\x63\xdc\xb9\x8c\xe0\x3e\x90\xc6\xc1\x1f\x0d\xe9\xcf\x22\xc9\x2e\x6d\xc6\x44\x7a\x44\x06\xc9\x80\xf5\x98\x4f\x87\xb3\x0a\x8e\x3c\xc9\xdd\xb7\x98\x01\xb8\xd5\x3f\x3d\x13\xa9\x32\x3e\x53\xcf\xae\x55\x51\xcf\x09\x35\x93\x2f\xfc\x24\xa9\xbb\x10\x33\xb3\x20\x6b\xb6\x75\xc5\x6d\xd9\xe9\x86\xad\xc4\xe1\xfa\x95\x53\x32\x88\x52\x99\xd3\x9b\x0d\xe8\xda\x6d\xf9\x86\x5e\x4a\xc3\xd1\x98\xea\x53\x1e\x19\x60\x96\x1d\x92\xa9\xb9\x44\x53\x6d\xc8\x4b\x7e\x23\x9d\x83\xf4\xb2\x65\x67\xe3\xa7\x5d\xfc\x64\x90\xaa\x4a\xa9\x0d\xdc\x51\xe0\xe6\xce\xdd\x87\x53\x62\x00\x68\x95\x6b\x11\x20\xac\x14\x9a\x26\x0f\xee\x93\x3a\xb1\x2f\xd7\xa3\x62\xec\xfc\xe4\xd3\x06\x1d\x2e\xe4\xe2\x73\x4f\x07\x9c\xbf\x5b\x0a\x9b\x0c\x26\x2a\x2b\x19\x2c\xdc\xf0\xf2\x5b\x8a\xa4\xa3\xb9\xb9\x5c\xe3\x1d\x33\x82\xa5\x60\x33\x0a\xe4\x23\x29\x9d\x56\x5a\x33\x14\x18\xd8\xda\x52\xb2\xa2\xb9\x18\xf8\xce\x09\x83\xd1\xc4\x0a\x6c\x8d\xa0\x90\x1e\xed\x3b\xfa\xf8\xd5\xe1\x7d\xf2\xa3\x75\xa5\xae\xe6\xd2\x31\x3a\x40\xe4\xd2\x05\x0b\xb9\x84\xd4\xa4\x91\x36\xca\xf0\xd0\x0e\xea\xe4\x1e\x48\x34\xef\x13\xb7\x17\x0e\x87\x90\x2a\xbf\x57\x68\xf1\x16\x26\xd4\x8c\x62\x50\x99\xaa\x76\x7c\x03\x08\x05\xda\x39\x4c\xe4\x65\x2d\x17\x06\x38\xeb\x0e\xac\x44\xa0\x8d\xfb\x53\x9e\xd5\xf1\xda\xe6\x18\x53\x9e\x42\x67\x9c\x6d\xdf\xdd\x1a\x19\x19\x11\x64\x78\xc4\xd5\x93\x07\x53\xd9\xf0\x24\x44\x54\xa1\x3e\x7e\x08\x37\xb2\xe2\xf1\x90\x2b\x90\x22\xc9\x5d\xac\x09\xc4\xa0\x72\x8c\x64\x17\xbf\x50\xd4\xc4\xd8\xdf\x4d\xd4\x8a\xc3\x5e\xab\x36\xc2\x9e\xca\x24\xdf\xc2\x86\xa5\x15\x78\x14\xa2\x81\x7b\x71\xad\xbf\x11\x0f\x2b\x91\x4b\x5b\x06\x11\x76\xb4\x4b\x41\x86\x0d\x3e\xad\x6f\xd6\x87\x7b\x47\x6a\xdd\x0c\x3b\x81\xb5\x2a\x6d\xaf\xcb\x55\xeb\x10\x31\x56\xc5\x01\xab\xff\x6a\x79\xa0\xd4\x59\xc9\xb7\x30\x56\xd8\xfa\x10\x95\x1d\x0e\x03\xfc\x15\x51\xc6\x99\xa4\x69\xb5\x66\xcc\x1a\x73\x44\x45\x16\xc1\x8d\x5d\x44\x20\x69\xc1\x49\xa8\xa2\xad\x62\x86\x43\xbc\x85\x32\x1c\xc5\x87\x02\x35\x96\xf3\xaf\x49\xa3\xbc\xef\xa2\xaa\x0f\xe5\x99\x11\x9e\x4b\xf6\x84\xe6\x96\x8c\x78\xf4\xb3\x2d\x7c\x29\x1a\xe9\x86\x95\xa2\xe1\x75\xf4\x88\x54\x04\xd5\xd7\x67\x95\x44\x85\x3b\x03\xc6\xca\xfc\x00\x66\x3d\x5c\x7b\x46\x96\x9e\xca\x55\xbd\x7b\x7f\x92\x83\x2a\x4e\xee\x35\x7e\xb6\x5f\x3f\xa2\xb8\x02\x9e\x4d\x8b\x80\x72\xca\x7a\x94\xae\x46\x1b\x3a\x7e\x94\x55\x0a\x47\x43\x52\x92\x95\x0c\xb1\x05\x6e\xf0\x7b\x74\x17\xb7\x5b\x8b\x99\xb0\x70\xad\x11\x95\xd6\x59\xe7\x1a\x2a\x77\x92\x6b\xef\x20\x74\x96\xa8\xf1\x1d\x21\x91\x57\x09\x6f\xf2\x5a\x91\xb1\xe5\x53\x81\xc2\x8d\x6f\xb6\x59\xc2\x57\x09\x36\xe4\x3b\xfe\xc4\x33\x5d\x80\xf6\x36\x4d\x93\x47\x60\x72\x7e\xa6\x4a\x7c\xc6\x07\x23\x1f\x20\xea\x67\xd0\x43\x77\x08\x41\x6d\x29\xb6\x6b\x4f\x52\xfc\xa9\x09\xa2\x2d\x5a\x0a\x10\x7f\xb2\x90\x5e\x6b\x63\xe1\xa0\xa2\x5e\x78\x45\x3d\xd9\xb3\x50\x12\x0d\xe6\xb5\x7e\x75\x67\x5c\x29\x57\xa5\x5f\xcd\x5e\x83\x5d\xf9\x59\x30\x8e\x10\x19\xc5\x3c\xc1\xb7\x37\x82\x8a\xa3\xf2\x5a\x0a\x4b\x8d\xb6\x90\xd0\x83\x0e\xe6\x60\x67\x4b\x36\xa6\xe9\x29\x03\x48\x6d\x2c\xc1\x75\x0f\x83\x5a\x1d\xc1\x50\x0c\x99\x73\xf0\x45\x18\x66\x7c\xe6\x7e\x79\x76\x89\xa7\xf5\x3a\xb7\xdb\x9f\xaf\x09\x4f\xa0\x04\x6f\xdf\xc5\xf3\x7c\x39\x14\x33\x96\x19\x72\xa3\x64\x81\x79\x2b\xc7\x36\x7d\x88\x5e\xcd\x28\x3b\xb1\x87\x76\xc7\xbe\x47\x3d\x82\x82\x5b\x3c\x0b\x8e\x82\x8e\xbe\x91\xd1\xee\xd8\xc1\xc1\xec\xb9\x79\x6f\x56\x31\x11\x41\x81\xb4\x88\x22\x30\xd5\x5b\x0c\x3e\x46\x74\xd1\xe6\xe4\x30\x27\xc2\x73\x1b\xaa\xa2\x2f\xda\x71\x25\x83\xd6\x38\xa7\xde\xad\x61\x65\x5a\xeb\xd1\x73\x74\x5e\x12\x51\xde\x32\x95\xb4\x1b\x8c\x89\xa6\x1f\xc7\xe6\x3c\x38\x70\x3e\x60\x21\x49\x22\x3c\x96\x89\x64\x42\x7d\x3b\x2d\x3e\xf4\xa0\xb0\x23\xbd\x61\x12\x11\x93\x45\xdf\x89\x5e\x80\x85\xcc\xd4\xf3\x04\xd6\x88\x9b\x00\xb4\x54\xc5\x3a\xe2\x3a\x6d\x6f\xd8\xbb\xf1\x33\xa2\x9d\xe7\xd9\x56\xc9\x49\x26\xe0\x9b\x23\xcb\x97\xa2\x8c\xc6\x24\x01\x46\xe6\x84\x17\xa0\x75\xb8\x02\x4a\xa1\xd4\xa8\xd0\x91\x6f\x0a\xe4\x76\x6e\xfe\x65\xb7\x75\x06\x2a\xfb\xc3\x07\x43\x5e\xe8\xc4\xac\x32\x62\x47\xa5\x4b\xf4\x98\x44\x7c\xc3\x87\xa6\x56\x6c\xc3\xea\x2c\xb3\x92\x81\xca\x31\xcf\xba\xe2\x00\x8f\xa5\x57\xe5\xe0\x95\xcb\x28\xd1\x86\xe4\x3a\xb0\xa2\x68\xa9\x1c\xa4\xe3\x03\x4a\xf1\x87\xe7\x00\x59\xcf\x92\xa5\xca\x13\xd0\x52\xb4\x9e\x2d\x74\x5e\xfb\x68\x97\x1b\x80\x0b\xc8\x77\x81\xa2\x07\xaf\xe4\x71\x2f\xfc\xe5\x97\xe4\xc1\x81\x1c\x08\xa1\xaa\xc6\x80\xfb\x66\x71\x8d\x29\x3e\xa1\xbb\x42\xb4\x62\x50\x43\x11\xf7\xd1\x4e\x6b\x87\x4c\xf1\x97\x2e\xe8\x34\x73\x62\x19\x7c\xb0\xb7\x99\xd2\x42\xa7\xc4\xd0\xa6\x9b\xcc\x0e\x97\xe3\x30\x4d\x31\x81\x9d\x6f\xd1\x71\x9e\x18\x03\xda\x78\x0d\xfe\x54\x9e\xee\xc9\xa6\x49\x26\x55\xb1\xd4\x2d\xb9\xf8\x3a\x91\x04\xde\x50\x7c\xb4\xa2\x63\x5b\x00\x37\x34\xde\x2d\xb9\xd5\xbb\x58\x63\x21\x5e\x80\x41\xcc\xf0\x27\x25\xd9\xe6\x7b\x57\x0b\x84\x81\xda\xcd\x21\xdf\xf9\xb9\xdf\x8f\x6b\x25\xe8\x82\xd9\x72\xbf\x23\x9f\xd9\xdb\x7a\x7c\xe8\x15\x72\x0c\x0d\x21\x39\xd1\x6e\x36\x7d\xd1\xe1\x61\x64\x2d\xf0\xdf\xf7\x9d\xf2\x83\x9e\xca\x2f\x3f\x39\x2b\x1e\x9d\x6e\xdb\x68\x4b\x01\x04\x91\x2f\x14\x9c\xd6\x3f\x19\xc0\x2d\x56\x3e\xf5\x9d\x97\xb8\x38\x57\x1e\xc0\x92\x9c\x53\x96\xe1\x4e\xba\x6a\x7c\xf7\x4d\xa2\x1c\x29\x95\xe9\x9e\xe7\x8b\x39\xff\x27\xe7\x89\x25\x57\x8c\xab\x84\x87\xf1\x1c\x09\x94\xaf\xff\xab\xe3\x0b\x69\x07\x56\xe8\x84\x56\x60\x4b\xf1\xd3\xfd\x38\x67\x20\x10\x04\x24\x2d\xd9\xdc\x6a\x22\x05\x7c\x72\x19\x75\x0a\x02\x9c\x46\x2b\x9c\xc3\x4e\xd3\xa9\x03\x9f\xf9\x50\x70\xbb\x66\x37\x7e\x72\x2a\xc2\xb5\x3d\x4b\x3a\xc7\xd6\x91\xdd\x17\x61\xea\xa6\x55\x0d\x64\x61\x88\x9c\x86\x0c\xf6\x7d\x4e\xc8\x38\x6a\x64\x67\x40\xdf\x09\x91\x05\xcf\x01\xb5\xa3\xc5\xca\x5f\x47\x79\x58\xbb\x2e\xb8\x2a\x04\xbd\x2a\xca\x3b\x82\xcb\xa1\xa0\xad\xbd\x57\x87\xd4\xae\xe1\xba\xdb\x40\x55\xa7\x49\x8a\xd2\x02\x01\x48\x19\x2b\x90\x80\xb9\x07\xfd\x41\xba\xa9\x50\x55\xdd\x2b\x64\x0e\xbe\x7d\x43\x9a\x33\x40\xf3\x33\x75\xc2\xbc\xde\x40\xbe\x50\xbd\xf7\x50\xd4\x6c\xe3\x47\xb1\x1c\xed\x58\x7c\xae\xd7\x44\x68\xf7\x31\xb5\x53\x67\x96\xb3\xa7\xc6\xdf\x42\xf6\x14\x10\x75\xfd\xd1\x82\x99\x43\x53\x27\x87\x5e\x4c\x94\x26\x32\x5c\x5f\xca\x72\x60\xe4\x5e\x95\x96\xf4\xc1\x08\xb8\xb4\x85\x84\x2a\x88\x8f\xf4\x44\x6d\x63\x9a\x55\xea\xf9\xe0\x68\xbc\xf5\x25\x70\x28\x57\x97\xb6\x7c\x06\x08\x3f\x0f\x10\x30\x75\x53\xa5\xdd\x45\xd2\xe9\x39\x1d\xa0\x1d\xac\x19\x3f\x1b\xa0\xe5\x8a\xa9\xe3\xd9\xae\x1f\xe9\x4e\xa5\xc5\xc8\x56\xce\x3d\xb9\x88\xa7\x52\x17\x87\x1d\x33\xb5\x70\x56\xe6\xb7\xa2\x30\x54\xa3\x50\xb6\x63\x73\xc1\x02\xbe\x65\xcf\xb7\x95\x10\xae\xbc\x60\x19\xea\xc7\x40\x11\xf4\xec\x74\xf3\x5b\x48\x30\xc0\xac\x89\xba\xd3\x44\x29\xea\x39\x9b\xfd\xd5\x55\xc4\xc4\xcc\x1b\x4d\x73\x57\x57\x95\xfc\x3c\x5e\x26\x98\x9f\xeb\xcd\xb2\x0f\x61\xe5\xf9\x65\xae\x10\x55\xb9\x92\x23\x9a\x04\x01\x41\xc2\xb6\xd9\x5c\x63\xfb\xb7\x4f\xa6\xe2\x6e\x3b\x0d\xe1\x08\x43\x75\x44\xed\x81\x11\x03\x95\xb0\x41\x80\xca\x0d\xc0\x04\xc4\xea\xd2\x6e\xdb\x5d\xab\x47\x5c\x3d\x90\x8e\xf2\x1d\x8e\xe3\x39\x06\x10\x96\x2f\xfc\x7f\x9d\x9e\xd5\xb5\xdb\x62\x2d\xbf\x5c\x38\x0d\x61\x22\x1c\xc7\x80\x31\x6a\x62\x96\x96\x2a\x92\x2b\x79\xc5\x55\xb2\xaa\x72\x25\x23\x4a\xb5\xfa\x39\x1e\x80\x39\x20\x10\x86\xa8\x82\x39\x21\xe1\x7d\xcc\x7c\x11\x4b\x59\xd2\xe6\x12\xcc\x57\xfb\xc8\x75\x1a\x68\xda\x9c\x21\x3d\x18\x17\x12\x59\x82\x3e\xdc\x24\x34\x8b\x85\x0c\x19\xa4\xd9\xe9\x8e\xba\xde\x70\x5d\x73\xaf\x25\x22\xb1\x67\x61\x25\x20\x53\x14\xdd\x4b\x21\x36\x64\x41\xeb\xf2\x61\x23\x8b\xfd\x62\xad\x44\x67\xc1\xfc\xce\xbe\xe8\xd1\x73\xc8\x66\xe3\xd0\x76\xb9\x68\x0d\xab\x74\x43\xe9\xa8\x83\x01\x1a\x24\xc9\x35\xbd\x0a\xb0\xf6\x02\x4f\x09\x1a\x2d\x30\xae\x5d\x8b\x8c\xbd\x62\xf4\x9b\x98\xc7\x73\x36\x83\xd4\xfa\xf6\x93\x7e\x78\x0e\x77\x73\x06\x46\xc8\xd6\xea\x04\x17\x90\xdf\xda\xb6\xde\xbf\xb5\xd8\x56\x1a\xf8\x55\x79\xe4\x0b\x49\xf1\x78\x78\xa8\xf9\xd7\x0e\x08\x54\x50\x32\x49\x7d\x61\x05\x0a\x08\x83\x46\x17\x91\x65\xe3\x66\xce\x32\x22\x41\x64\x3d\xfb\x01\xb6\xfd\xcc\xe8\x56\x3a\x45\x8c\xeb\x19\x35\x53\x54\x1a\x33\xaa\x41\x85\x81\xa2\xef\x7d\xe0\x9a\xb7\x89\xeb\x7b\xaa\x48\x06\x96\x87\xa9\x4c\xb8\x40\x39\xd3\x0e\x06\x26\xe5\xb4\x81\xa7\x55\x5a\x39\x35\x88\xcb\x41\xb5\x34\x32\xaf\x0b\x05\xe1\x75\x78\x91\x69\x27\x24\xb2\x85\x49\x31\x4b\x41\xb9\x25\xb9\xb7\x8e\xec\x6b\xef\x44\xf4\xa2\x9e\x87\xb5\x6f\x03\xd4\xf1\xaf\x02\xfa\x20\xa6\x12\xfa\x70\x95\xbe\x0b\xe3\x4c\x40\x29\x08\x86\xb1\x76\x46\xef\xc3\x82\x46\x18\xe8\xa2\x1e\xb2\x2a\x42\xba\xea\x9b\xfa\x42\xca\xd5\xb7\x7b\xf7\x52\x3d\xc8\xef\x36\xe4\x2c\xc9\xdb\x04\xc9\x4a\xd6\xff\xc7\x20\x54\xd4\x2c\x47\x60\xf4\x04\xdb\x2f\x25\xa9\x34\x15\x32\xac\x00\x5a\x0d\x2a\xcc\x26\x15\x28\x80\x74\x88\x79\xec\x34\x30\xdb\x6e\xb8\x8f\xc7\xd7\xa9\x93\x18\xa9\xf9\x3c\x50\xaf\x69\xb2\xb2\x14\x79\xae\x2b\x70\x3a\xe2\x9e\xb9\xd9\xe8\x75\xa1\x31\x50\xdb\xb5\xd5\x7c\x37\xa1\xb2\x80\xa1\x4c\x94\x5a\xa5\xfe\xe0\x64\x9c\xe7\xd0\x94\x54\x12\xe5\xed\x30\x64\x01\x36\x4d\x09\x79\x6c\xc9\x1e\xa3\xfc\xd9\x1c\x7f\xa6\x79\xf2\xdf\xbd\x2c\x14\xb1\x1c\x05\x2e\xa9\x9c\xb7\x20\xd3\x20\xe5\xde\x3a\xd2\x50\xa3\x50\x99\xe6\x85\x45\x4d\x2c\xd1\x05\xf9\xdc\xa3\x57\x94\xb8\xd9\x48\x4c\xf0\x43\x3b\x56\xd2\xc3\x83\x4a\x08\xe8\x52\xc4\x72\x5a\xa8\xa4\xff\x42\x44\xfa\xe2\xbd\x7d\x0e\x47\xab\xc9\xc9\xf3\xf0\xb9\xf1\xe2\x58\xf4\xf0\x71\xfe\xc6\x20\xbd\xfe\xb4\x7f\x30\x19\xff\x30\xa7\xcf\x7c\x4b\x3b\x03\xff\x92\xaa\x18\x03\x8c\x12\xfc\x6b\x08\x7f\x61\x8e\xdf\xc3\xb2\xa0\x9a\x19\xf2\x91\xf8\xfa\x0b\xe5\x4b\x25\xef\x78\x01\x4e\xa0\xec\x9d\xaf\x68\xf2\x2e\xaf\x96\x08\xae\x5d\x05\x10\x76\x0a\x43\x8e\x26\x83\x43\x64\x28\x71\xfc\xef\xbb\x3b\x57\x82\x2a\x67\x23\x36\x3d\x54\x8f\x0a\x71\xc8\x45\x30\x78\x96\xb0\x5b\x87\x4a\x25\xeb\x9e\x83\xb6\xb2\x92\xee\xdb\x5a\x63\x60\xe9\xe3\x17\x58\x99\x6b\x75\x5d\xba\x95\x1c\x20\xf9\xbc\x24\xd7\x40\x89\x9d\x32\x57\x82\xa5\x80\x73\x96\x28\x85\xb1\x1e\x29\xaf\xa6\xf0\x6e\xc4\xb3\xba\xea\xf5\xad\x8e\xcc\xd0\xa8\xc7\xcd\x02\x83\xe2\xef\x83\x10\x76\x62\x4c\xd0\x36\x18\x82\x3a\x82\x21\x18\x62\x00\x7c\xcc\xe4\x15\xab\x28\x70\x93\x7f\xaf\xed\x87\x8b\x42\x07\x43\xf8\x5b\xde\xaa\x5d\xa5\xf8\x64\x7d\x81\x12\x6c\x3f\xdb\x89\x06\x3c\xa1\xf2\x52\x40\x21\xe9\x47\xb9\xef\x86\x85\xf7\x7a\x10\xa4\x30\xe8\xae\xfa\xef\x5b\x3f\xb7\xf7\x5f\x57\x5d\x46\x31\xd0\x2e\x6a\x46\xdb\xc5\x2a\x55\x92\x6a\x25\xdb\xc9\x88\xc8\xeb\x85\x98\xb3\x18\x23\x9b\xf2\xf8\xfb\x9e\x3d\x1d\xbb\x9e\xf5\x47\x0d\x40\x7b\x03\xf4\xd9\xae\x68\xe5\x0c\xe6\xca\xb9\xe0\xe9\x46\xf2\x47\xf9\x08\xd2\x8c\x59\x0e\xc7\x88\x12\xd5\x60\x6d\xcd\x09\x9b\x66\xb4\xde\x68\x27\x40\xea\x35\x22\x5b\x6a\x2b\x13\x5e\x23\x08\xa6\x2e\x03\x96\xa8\x77\x23\x76\x9e\xc8\xb1\x9d\xa8\xad\x23\x6b\xfc\xe4\x34\xad\x86\x5d\x13\x81\x68\x1b\x95\xf7\x23\x91\x88\x5e\x5a\x78\x29\xb6\xb8\xdc\x5d\x26\x57\x83\xca\xf4\xcf\xc9\xd1\x62\x94\xba\xc2\x66\xbc\x91\x83\x35\xa1\x0e\xae\x8b\xd5\xba\xd3\x46\x13\xba\x7b\x37\xdd\x00\xa7\xf6\x36\x1e\x22\xcb\xc5\x3a\xa8\x9c\xfa\xbe\x0e\xca\x9f\x4e\xb5\x3b\x19\x7f\x03\xf3\xc0\xa9\xf8\xde\xba\x01\x4b\x87\xc8\x8e\x30\x95\x74\x37\xe0\x07\x37\x97\xad\x01\x9e\x48\xdb\x8f\x2e\x89\xe8\xab\x85\xe9\x71\xca\x2f\xaf\x6d\x8b\x8e\xd3\xab\x21\x06\x5e\x17\x08\x5f\x6f\xf1\xf4\xb3\xf8\xcc\x73\xd9\x8e\x96\x63\x4d\xed\xfe\x12\x7b\x73\x08\x3d\xd6\x58\x20\x45\xee\xb5\xe3\xda\x80\xdf\xb1\x77\x87\x45\x3f\xdb\x4b\xf1\xcc\x79\xa7\x10\x35\xec\x74\x11\x40\xb8\xc0\xd3\x16\x90\xd3\xa9\x5c\xa5\x0a\xe9\xc8\x4b\x63\x40\xaa\x95\xa0\xdd\xb7\x8f\x90\x90\xd0\x04\xf8\x68\x5a\xe7\xd8\x39\x04\x46\x00\x2d\x54\xf4\x22\x7e\x44\xe4\xdf\x8a\x32\x97\x2e\x3d\x91\xf8\x26\xae\x95\xf6\x52\x1f\x4c\x73\x03\x45\xcc\x1b\x44\x5f\x8f\xbd\xd0\x84\x5d\x8c\x88\xe6\x72\x29\xd0\xc0\x10\xb6\x20\x37\xdd\xa2\x91\x49\xec\x8c\x76\x4e\x86\x9d\xbb\xf6\x1b\x00\xcd\xb5\x37\xc6\xd8\x1d\x8c\xc8\xfc\x64\x5a\xce\x47\x50\x27\xae\x59\xc7\x9f\x48\x8b\x4d\x91\x8e\x9b\x59\x3f\x2b\xf2\x71\xd3\xca\xe6\xac\x6f\x60\x5d\xa7\x56\x2a\x7b\x5d\x7c\xd2\x57\x2e\xa2\x43\x67\xfd\x12\x4f\xbb\xce\xd5\xf6\x5b\x7a\x82\xb2\x85\xfb\xa6\x2a\x39\x1e\xea\x97\xb2\x5f\x77\xd8\x96\xea\x8d\x55\x75\x9f\x50\x22\x4e\x62\x6d\x69\xea\xe4\x4a\xf0\x18\xe6\x3c\x48\xd7\x5a\x6f\xaa\x22\xdc\xf1\xaa\xcc\xd2\xbc\x3d\xd9\x75\xe9\x9c\xaa\x4e\x93\xea\x77\xff\x74\xc9\x83\x16\x8a\x41\x5c\x97\x1b\x6c\xd3\x4f\xfa\x14\xe7\x9f\x90\x3b\x4a\x95\xac\x1b\xf0\xb7\xe7\xd2\x0d\x63\x31\x6a\x04\x81\xdd\xf5\xf4\x76\x3b\x6e\xf7\x19\xf4\x6d\xc5\x22\x80\x50\x3d\x99\x25\xea\xe3\x75\x53\xb2\xf1\x71\x26\xc0\xe2\xc6\xc3\x90\xfa\x12\xcc\x86\xa9\x8a\xac\x92\xf3\xc1\x94\x37\x38\xd0\x38\xad\x85\x43\x27\x5d\x96\x85\x71\x70\xd3\xc1\x5b\xf3\x32\x13\xc0\xe1\x8f\xa4\xe9\xa9\xb9\x79\x2c\x16\xa9\xd4\x5c\x7b\x4b\x57\xcc\xfc\x30\x49\x76\x88\xa7\x2b\xca\x59\xa3\x5d\xf0\x73\x98\x72\xa0\xd3\x5c\x66\x90\x9a\xa4\x9e\x4a\x10\x54\xc8\xee\x30\x53\xd2\x6d\xc7\xb2\x25\x55\x09\x33\xf6\xb1\x45\xc7\xea\x25\xe3\xcf\xb6\x8e\x89\xab\xcd\x46\x1f\xaf\xf0\xee\x68\x56\xe1\xfe\x6e\x57\x2e\xd8\xae\xa8\x38\xd5\x66\x9d\xc2\xe1\xe6\xee\x67\x26\x5a\x4c\xda\xf4\xd0\x51\x67\x4a\xf1\x4f\x57\x21\x77\x93\x96\x26\xf3\xcf\x53\xca\x75\x95\x63\x08\x0b\x21\x04\x8a\x0c\x05\x03\x5d\x41\x40\x55\xce\x50\x05\x09\xf3\xde\xbd\x91\x95\x3d\xb0\x62\xa4\x43\xfd\x08\xf1\x8f\xc0\xd1\x37\x06\x97\x36\x89\x0f\x1c\x99\xf8\x84\xf8\x83\x21\x02\xb4\xdd\xc7\xec\xda\x76\xe8\xe0\xb0\x6f\x4c\xba\xe1\xd6\x94\x0f\xbe\x47\xf6\xf2\xbd\xad\x2d\xfd\x88\x36\x30\x31\x00\x96\x3d\x35\x4c\x29\x55\xbd\x43\xd1\xc7\x8a\xdc\x34\x95\x30\x26\xc8\xf0\xff\x43\x0e\x01\xd4\x11\x6d\x02\x74\x34\x41\x02\x1c\x07\x22\x40\xf5\xa9\xe7\xc6\x21\x71\x33\x40\xd5\x63\x55\x30\x1e\xa8\x03\xc7\x1d\x1b\xf9\x4c\xcb\x25\xa7\xb4\x88\x4e\x90\xc4\x1e\x39\xcd\x86\x5d\x21\x4a\x0a\x42\x86\x6d\xf0\x62\x29\xa2\x08\xaf\x76\x64\x02\x43\xae\x19\x4b\xb3\xdc\xaf\x11\xb1\xda\xb5\x97\x02\xcc\x03\xe1\x03\x0d\x2e\xa0\xee\xe5\x58\x18\xd4\x97\x6b\xd4\x6e\xd6\x69\x92\xf0\x10\xe6\x0b\xd8\xa2\x89\x64\x12\xac\x99\x09\xcb\x5e\xe2\xac\xb4\x5f\xb6\xae\xa2\xe7\xb3\x87\xdf\xb3\x63\xdc\x5c\x25\xd4\x5f\x4c\x9e\xa7\x59\xbe\x8d\xb5\xb8\x7c\x74\x2d\xba\xdc\xd5\x81\x22\x1f\x58\xde\x64\x62\x6a\x5a\xca\x9d\x52\x77\x8b\x66\xea\xd5\x96\x86\xef\x24\x2c\xa5\x89\x92\xcd\xb1\x9f\xec\xc2\x4a\x0d\x08\xb0\xd3\x48\x7a\x42\x3e\xa3\xc0\xdd\x48\x88\x9d\x72\x33\xc7\x09\x67\x6a\x8f\x9b\x00\x08\x5b\x8e\xaa\x9d\x36\x16\x40\xe9\xca\xbe\x38\x24\xc0\x99\x3a\xae\xe4\x51\x0f\xfa\x59\x11\x4a\x39\xe8\x45\x86\x06\x8f\xd6\xda\x6b\x49\x48\x6f\x04\x96\x09\x04\x16\xf6\x17\xba\x37\x97\x1b\x7e\x30\x1b\xc5\x3b\x94\x2c\x46\x06\xf7\x80\x09\xde\x87\x14\xdd\x15\xcc\x6a\xb3\xa2\x57\x5f\xec\x4d\xa2\x06\x0d\x4c\x06\xe8\x08\xd8\x5d\x07\x8d\xe8\x85\x93\x45\xa0\x56\xe0\xeb\xa3\xf0\xda\xf9\x10\xb1\xdd\x42\xad\x88\xec\x6a\x46\xbc\x56\x0a\x55\x98\x66\xaa\x42\x28\x81\xde\x36\xe4\x62\x6a\xb2\x48\x83\x62\xa2\x73\xb3\xe6\x74\x2a\x9d\xa3\x6f\x29\x85\x54\x0e\xa8\xc4\xb5\xa2\xbe\x17\xfa\xae\xb8\x14\xbf\x6d\x8d\x4b\xf3\x10\x18\xc9\xd9\x48\xf8\x4a\xe6\x2a\x30\xea\x1b\x41\x73\xcc\xca\x59\x5c\x2f\x38\x87\x72\x8b\xfb\xb8\x0d\x33\x1f\x13\x9a\x2d\x5e\x0f\xb0\x41\x7d\xdf\x1e\x47\xc7\x79\xfa\x99\x6d\x9d\xaa\x10\x72\xf8\x54\x1a\x3c\x7b\x46\x3d\xcf\xbe\xd9\x73\x39\x32\xf4\x94\xe5\x1e\x99\xd7\x44\xa1\xe5\x0b\x1d\x36\x1e\x85\xd5\xd4\x5e\xec\x25\x30\x63\xa2\xde\xca\x02\x1f\x77\xf0\x96\x1b\x68\x88\x46\x20\x87\x61\xec\xa1\x6d\x49\xc5\x4e\x60\x18\x3a\x6a\x1c\x72\x64\xe0\xb2\xe2\x75\x81\x30\x53\xff\xbd\x2b\xf1\xb5\x64\x31\x4a\xdb\xcf\x84\x9d\xf3\xfa\x6c\x8b\x81\x5e\x88\xd8\x73\xbf\xed\x19\x8f\x77\x2f\x82\xd6\x55\x34\x08\xfc\x9c\x54\xb9\x32\x86\xd5\x34\x68\xc6\xdb\xe4\x41\x51\xec\x12\xeb\xe8\x36\x76\x58\x31\xa6\x62\x30\x2a\xb7\x61\x15\x94\xff\x1c\xb2\x14\x1a\x98\x6a\x69\x10\xf9\x04\x0c\xf8\xe7\x2d\x5a\x50\x64\x4c\xd4\xc6\xb4\xd1\x35\x18\x5b\x4c\xa3\xfa\x90\x06\xf3\x04\x39\x09\x28\x74\x40\x95\x31\x20\xb9\x09\x72\x14\xcc\xd0\x9c\x52\x26\xda\xb0\xa2\xf4\x22\x8a\x3a\x27\xc7\x40\x9a\xd4\xf2\x63\x06\x4e\x01\xd6\x24\x03\x84\xec\x77\x9e\xe8\x44\x37\x30\xf8\x55\xdf\x2c\x85\x22\x7d\x5b\xb3\x81\xa5\x7b\x27\x7a\x97\x28\xa5\xea\x69\xc2\x43\x67\x30\x37\xf1\xc5\x28\x2f\x79\xfe\x05\xb0\xc8\xf6\xf4\x7c\x46\xaf\x05\x5a\xa9\x47\xee\x3e\x58\xf2\x1c\x71\x74\xd0\x87\xce\xed\xa5\xf8\x1e\xf1\x4e\x94\xb5\x9d\xd4\x45\x51\xa1\x51\xa0\x0a\xf7\x0e\xb5\x06\x1d\xae\x72\x25\x28\x0e\x86\xbe\xbb\xf9\x33\xb7\xbc\x62\x3e\x3f\x76\x58\x0e\x32\xbf\x67\x58\xdd\xb5\x91\x0f\xfa\x9c\xf7\x22\x3b\xe7\x57\xd4\x5d\x97\x06\x98\x7d\xa6\x44\xfb\x35\x81\xa8\x54\x13\xe5\x7f\x95\x96\x8a\xf9\xd3\x33\xe9\xba\xd8\xf1\x0e\xdc\xaf\xb9\x43\x58\x40\x82\x07\xb5\x84\xe8\x3d\x30\x0d\x50\xc0\xc3\x11\x08\xaa\xf8\x5a\x2a\x86\xf1\x2e\xd0\x35\xe1\x7b\xf9\x79\x71\x63\x55\xb7\x0f\xe8\xb2\xf1\x0b\x4c\x06\x3f\x0d\xd1\xf2\xf3\xfb\x4f\x87\x03\x17\x75\x74\x94\x5d\x6f\xdf\x4f\x57\xf0\xb8\x10\x0f\x9e\x40\x7f\xd7\xe5\x70\x34\xce\x66\x2b\x5e\x0d\x0a\xe2\x35\x19\x00\x6a\x51\x74\xcc\xf0\x5e\xa6\xf6\xa1\x73\x8c\x46\xab\x3b\xf5\x3a\xd8\x3e\x07\x84\xc7\xba\xc3\xfc\x22\xf1\x26\xb2\xe7\x76\x70\x7e\x18\x09\x1c\x4d\xd3\x4b\x78\xb0\x9d\x65\x13\x43\x6e\x3e\xac\x04\xa2\x80\x02\x16\x1c\x20\x34\xdd\xe6\x18\xe8\x80\x78\x20\x5d\x77\x94\xce\x9a\x72\xaf\x85\xa9\xcb\x0b\x45\x00\x36\x7c\x7e\x96\x00\xae\x9c\xbd\x09\x73\xd5\x8d\xf7\xb8\x14\x87\x5f\x82\xff\x0c\xff\xa4\xe5\x15\xa8\x10\x3a\x6c\x9c\x1e\xe9\x0e\xe7\x28\x86\x20\xf7\x7c\x1e\x1e\xc9\x39\x1d\xf5\xb9\xb4\x14\xa5\x55\x54\x6f\xde\x3c\xdf\x4d\x42\x38\xcd\x6e\x17\x56\x95\xb3\x4e\xc3\x31\xb9\x44\xa4\x8a\x92\x72\x2b\x1a\xb2\x23\xce\x13\x1c\xa8\x72\xc5\x95\x25\x6f\x75\x79\x56\x3e\x18\xa9\x00\xea\xa5\x9c\x53\x79\x9b\x33\x30\xee\xc9\x61\x5e\x83\x78\x3d\xae\xa4\xcd\x94\xbd\x44\x7c\xae\x7c\xa0\xf6\x26\x2b\x54\x4b\x2e\x21\x9c\x5d\x29\x6f\xd6\x0c\x24\xd7\x9e\x1f\x0e\x6b\x65\x1e\x26\x05\x91\x02\x16\x09\x06\x49\xb0\xa2\x39\x38\x9c\x30\x10\xb6\x90\x5c\x67\x70\x82\x05\x68\x72\xb7\x31\x10\x50\x50\x5b\x48\xe0\xe5\x70\x4f\x8e\xb0\x91\x2a\xd2\x02\x99\x72\x42\xc9\xa2\x61\x24\x29\xcd\x47\x17\x0c\x4f\xba\xa0\x73\x21\x9e\x04\xdb\x33\x60\xe9\xde\xa1\x18\xdd\x89\x24\xbd\x12\xaf\x3c\xba\x6b\x31\x32\x21\x37\xd6\xe2\x67\xdb\x77\xd9\x3d\x7d\x81\x4d\x65\x1d\xc7\x32\x31\xd5\x48\xb2\x21\xb3\x71\xa2\x5b\xde\xf1\xac\xb5\xda\x8a\x79\xf9\xc0\xe7\x6c\xb7\xf2\xcd\x79\x8a\x53\xf4\x9f\xe1\x9f\x10\xaf\x2f\xc0\x97\x70\x6c\x12\x3f\xaa\xee\x84\x0a\x60\xc8\x5e\xb8\x4f\xc8\x38\x39\xd4\xda\x7c\x9b\xd1\xc8\x1f\x24\x8a\xa7\xea\xfc\xff\x05\x80\xaf\x8d\x8b\xf3\x30\x20\x97\x24\x74\x32\xb3\x4b\xa6\x6f\x45\x98\xcc\x14\x8f\x20\xc5\x88\x40\x82\x9f\xfe\xe6\x49\xe6\xc0\x71\xfa\x06\x78\x11\x0b\x96\x85\x40\x15\xaa\x96\x8d\x2f\x98\x76\x01\xfe\xc3\xb9\x60\x60\xa1\x8d\x5e\xa2\x2d\xcb\xf4\x70\x5a\x6d\x09\x0f\x70\xc6\x76\x20\xa6\x40\x37\x07\xf7\x48\x19\x48\xe5\x6c\x80\x6e\x68\x1f\xaf\x65\xa5\xf5\x37\x5d\x25\x2c\xf0\x0c\x9b\xb1\x6e\x22\xa3\x99\x27\xf6\xf7\xc3\x64\x3b\x30\xed\x71\xdf\xf5\x9d\xd9\x84\x31\xda\x23\x65\x0c\xfc\x82\xc6\xd9\x7d\x0a\x75\x8f\xd4\xee\xc4\x25\x34\xd1\x84\x78\xf8\xef\x63\x4b\xf5\x5a\x3d\xfd\x07\xa7\xc8\x3c\x48\x6d\x84\x83\xf4\x31\x01\xe1\xfc\x52\x11\x32\x2f\xd9\xf5\xf4\xda\x8a\x21\x50\xbb\xa2\x1e\x02\xe9\x8a\xe9\x78\x2c\x79\x0a\xa5\x0e\x66\xa4\x0f\x9a\xed\x54\xb2\x3c\x74\x8d\x2c\x77\x9a\x78\x66\x13\xf0\x1a\xf7\xc1\x4f\x53\x76\x89\xcf\x66\x2e\x65\x4c\x1d\x52\xa5\x0c\x34\x9a\x2d\x21\x5b\x63\x0e\xcc\x2b\x3d\x6d\x73\xad\x9b\xe8\x32\x60\x3b\xa8\xa7\x5d\x25\xae\xee\x7b\x56\x81\xf2\x14\x09\x05\x96\x4d\x76\xd9\x00\x4d\xe6\xbb\x22\xcd\x21\x41\x8a\xc4\x02\xa1\x4d\x86\x48\xd5\xc0\x56\x46\x44\x26\x47\x31\x33\xbf\x98\xae\xe5\x6f\x25\x53\x69\xde\xba\x69\x1d\x22\x6c\xeb\xb0\x63\xb4\x71\xa4\x98\x5a\x05\xe2\x51\xde\x72\x00\x44\xd1\x7a\x30\x2f\xc3\x8d\x09\xdd\xf9\x18\x99\xf1\x39\x02\xda\x66\x88\x5f\x7b\x0e\x09\x56\xda\x20\xfb\x0c\x32\xb9\xc3\x30\xbd\xca\x80\x27\xb6\x79\x29\x3a\x1a\x72\xe1\xba\x43\xfa\x88\x7c\xa6\x20\x28\x50\x76\xbc\x4d\xd8\x91\xf2\xd1\x43\x68\xb3\x5a\xef\x16\x17\xef\x99\xc5\xe2\xe6\x06\x8c\x93\x4e\x3b\xb2\x1b\x88\x64\xfb\xb6\x71\x8f\x25\x8d\x4c\x70\x54\xe7\x0b\xa8\x07\xf2\xd2\xa0\x8f\x3e\xaf\xcf\x32\xec\x2b\xe6\x5a\x51\xf2\x93\x71\x0b\xf1\x19\x56\x67\x59\xab\xd0\x44\xcf\x33\xf4\xed\x60\xac\x9a\x39\xfd\x63\xb1\x09\x03\x03\x4f\xbc\x24\xef\x71\xac\x9f\x58\xd9\xd4\xc8\xd6\x3b\x0b\x12\x96\x7b\x07\x31\x05\x97\x76\xbe\xb6\xbf\x34\xd3\xfb\x87\x7a\x4d\x52\xfe\x21\xc4\xac\x75\x20\x68\x47\x21\xd2\xf1\x4e\xe1\x62\xad\xb8\xd6\x4f\xde\xc6\xfb\x2e\x32\xd0\x7b\xc1\x22\x4a\xe2\x27\xca\x20\xc4\x8a\xd9\x0d\x55\x80\xa4\x73\xe6\x01\x20\x7c\x48\x39\xf6\x28\x9f\x96\x82\x20\x8c\x06\x83\xe8\x95\x8c\xbb\x08\x86\xde\xb7\x29\x9f\x86\xf1\x6b\xda\x2b\xe0\x49\xa4\x5e\xd5\x3a\xaa\xf6\xf2\x18\xc7\xf1\xa1\xa7\xb1\x90\x2d\xd3\x0e\x03\xad\x38\xf1\x04\xd6\x08\x01\x65\x4c\x7a\x80\xdf\xea\x4a\xca\xed\x3a\xfe\x1c\x30\x3e\xc8\xfc\x96\x8d\x07\xe5\x92\x94\x8f\xd4\x6b\x62\xf9\x80\x90\xfa\x4e\x9e\xbf\x41\xec\x1a\x59\x01\x01\xf8\x40\x67\x49\xe5\xed\x4d\xe5\xc6\x5e\x48\xb2\x70\x7a\x34\x5c\x11\x01\xf9\xc8\x0a\x4c\x50\x41\x17\xe3\x04\xa6\x1b\x14\xcb\xc2\xe0\x42\x35\x1c\x3b\xd5\xd1\x8c\x29\xd6\x40\x71\x8e\xbe\xe0\x0b\xb2\x09\xc1\x27\x34\xd1\x97\xc8\x69\xa7\x76\x29\x00\x40\x90\x4d\x04\x3d\x1c\x11\x4d\x25\x41\x9a\x56\x39\x50\x27\x5c\xc5\x50\xbf\x2e\x94\x3e\xf3\x21\x86\x5b\xd8\xca\x21\x75\xa4\xb6\xd4\x15\x3d\x12\xc4\x47\xb6\x4b\x5f\x6e\xa8\x6f\xd8\xad\x17\x0f\xcc\x06\x8b\x4e\xfc\x2b\xff\xfc\xe8\xbf\x05\xb3\x31\xbc\x5c\xba\x1e\xa4\x61\x87\xe8\x3f\x0c\x64\x18\xf8\x77\xd8\xc2\x4c\xc7\x4d\xe2\xcf\x9e\x5b\x06\xf2\x71\x2f\x59\xc8\x41\xff\xfa\x72\x73\xfb\x66\xe1\xca\x4c\xa1\x2d\xe9\x4e\x80\x44\xe1\x9b\xd0\x42\x43\xe1\x3d\x2c\x55\xfe\x29\xad\xdf\xd0\xe7\x5e\x1e\xd5\xb9\x57\x1f\x72\x3a\x6b\xa7\xb3\x72\x87\xfb\x2b\x55\x68\x49\x44\x20\x59\x1a\xc6\x81\xf4\xd1\x52\x0d\x3e\x5a\x2f\xc6\x37\xa2\x1f\x0c\xc9\xce\xb7\xb5\x4a\x45\x53\xed\xf5\xd2\xe0\xa5\xf5\x5f\x38\x50\xc7\xe7\x78\x82\x1f\x4d\x70\xb0\x30\x19\xc2\xe4\x79\x39\x27\x2b\x87\xf3\x21\xfc\x3d\xf5\x87\x15\xd4\x84\xbb\x60\xb5\x24\xbc\x0c\x6d\x92\x1d\xd7\x1a\x6c\x2c\xdf\x31\xe3\xb0\xb0\x28\x7a\x84\x2e\xbc\x26\xc1\x89\x91\xfb\x47\xca\x61\x13\x4c\x03\xe1\x16\xb2\x1c\x1a\x6b\x57\x32\x0d\xfc\x16\x4e\xc0\x9a\x17\x25\xaa\x2f\xc1\xeb\x5f\x55\x15\xff\xeb\x8a\xaa\x70\x47\xe3\x79\xdb\xdc\x4c\x44\x75\x66\x71\xa1\x2d\x1c\x00\x00\x40\xff\xbf\x69\x6b\x99\x17\xfa\xd8\x0a\xcf\x7f\x5b\xb6\x28\x4e\xf7\x96\x68\xb4\x45\x96\x22\x5f\x0f\xe2\xcc\xd5\x0c\xd6\x48\xe2\xb5\x24\xfc\xda\x7d\x28\x05\x89\x3a\xdc\x77\x78\xe8\x6a\x27\x0c\xab\x1c\xc3\x82\xcd\x1d\x58\xd7\x22\x2e\x32\x06\x05\x9a\xb7\xae\x5c\x86\x12\x85\x8f\xb8\xd0\x82\x49\x42\x12\xde\x2b\xb5\xf0\x4e\xd2\x46\xc5\xbe\x75\xd6\x13\x98\x56\xe0\x65\x27\x77\xbd\xaf\x60\x7e\x72\xac\x84\x77\x58\xb2\x62\x37\xfa\x6f\xa0\xed\xb4\x6d\xe9\x8d\x80\xf8\x5e\x1a\xa1\x3f\xe5\xe7\x57\x89\x72\xdf\x46\xe6\x40\x55\x15\x46\x7e\x4f\xd1\x81\xa7\xe1\x9c\x0f\x5f\x03\x84\xfd\x5f\xb9\x27\x50\xf0\xf0\x1e\x17\x43\x10\x86\xab\xd2\xfb\x1e\xe6\xbb\x04\x80\x4c\x7c\x93\xec\xd9\x99\x82\x9b\x57\x2b\xce\x92\x67\xb1\x2c\x25\xff\x26\x64\x32\x74\x39\xeb\x6c\xc9\xb2\x13\x56\x6a\x61\x69\x4e\x7f\xf3\xb2\x16\x4f\xdf\xf5\x27\xc7\x43\xc6\xba\xa1\xf3\x07\x1a\xe3\x47\x1f\x88\xfb\xe7\x76\xb8\x79\xb4\x3e\x63\xeb\x70\x31\xd3\x64\x5c\x33\xae\x0e\x8d\x05\x92\x1c\xb5\x70\x18\xcf\x19\x0d\xff\xd2\xfe\xf7\xcf\x31\xac\x57\xa5\x45\xb3\x88\xbc\xf9\xe4\x84\x13\xec\x5b\x4c\x83\xe5\x54\xc0\x95\x96\x91\xad\x1f\x02\x97\x6c\xb7\x93\x9f\xf4\xe9\x84\xfd\x40\x3c\x31\x16\x75\xed\x79\x6a\xe8\xe0\x8c\xac\x9e\x40\x34\x4b\x20\x61\xac\x0c\x1f\x6a\xfa\x3f\xf8\x3d\x0a\x07\x19\x92\x68\x8f\x08\x9e\xb5\xf8\xd5\xd4\x79\x44\x6d\xd0\xe1\x6b\x9e\x21\x2e\xd8\x00\x16\x8a\x4c\x1d\x93\xf0\x14\x79\xed\x6f\x92\xd4\xc5\x0a\xa9\x8b\xd9\x92\x8f\x31\x48\xe6\xe0\xc8\xfd\xeb\xca\x92\x59\x19\xcb\x9a\xda\x83\x20\x22\xd0\x7a\x83\x30\xe9\xa2\x65\x5c\x66\x1f\x1b\x9f\xe8\x66\x31\x20\x9f\xbb\x71\x4f\x25\x2f\x15\x99\x8a\xb2\x56\x1d\x3b\x4e\x0a\x04\x5a\xa0\x1b\x0a\xad\x9a\x5e\xde\x4c\x32\xe4\x8a\xbc\x0e\x3c\xcf\x19\xf6\xdb\x54\x87\x1c\xb3\xfe\x14\x7c\x6d\xde\x3c\xbc\x0c\x27\x18\xc8\x92\xb9\x99\xb5\xa6\xbd\x77\x65\x08\x6a\x84\xe0\xb9\x57\x88\x55\x33\x71\x43\x32\xd4\x0b\x82\xf5\x39\x94\xeb\xe6\xe0\xff\x3d\x38\x01\x65\xf3\x44\x4a\xfe\x80\xa6\x56\xa3\xab\xc6\xb9\xfe\x85\x32\x64\x55\x88\x1e\xaf\x2a\x53\x5f\x08\x67\x07\xa8\x8f\x96\x57\x0f\x66\xbd\x0c\x1b\xd4\x1b\xe3\x2e\x92\x17\x1e\x47\xe7\x03\x6c\xac\x71\x7e\x4e\x0f\x54\x96\x94\x8d\xf4\x9a\xd8\xeb\x1c\x19\x18\x22\xd3\x96\x31\x21\x3a\xb9\x23\x60\x8b\x64\x26\x7a\xe1\xb5\x59\xa3\x47\x06\x42\xe9\xef\x77\x35\xd4\xd7\x89\x27\x56\xd5\x4d\x30\xb2\xa4\xf4\x95\xa2\x13\x1b\x9c\x28\xfa\x68\x65\x09\x68\x27\xca\x4d\x07\x0e\x23\x91\x0e\xf1\xd3\x87\x00\x6a\xa7\xfb\x06\x16\x1f\x5e\x68\x0b\xa1\x19\xd3\x2a\x09\x0b\xbd\x24\xcf\x39\x9a\x50\x10\xa9\x02\x35\xb1\x99\x68\x81\x11\x6d\xe0\xcd\x13\x43\xf1\x6a\x76\x4b\xb6\x88\x11\xf8\x8d\xb6\x48\x18\x10\x52\xce\xd0\xfa\xe6\x7d\x08\x08\xea\x28\x12\x0c\xff\x9a\x24\xc2\x42\xa4\xac\x75\x54\x0f\x5b\x7e\x82\x87\x43\xaa\xcd\x96\x72\xf4\x9b\xfc\xaa\x3b\x0f\x5e\x4c\x12\xe8\x54\x27\x9a\xbc\x9e\x18\x97\x04\x95\x10\x75\x0d\x2a\xa2\x06\xce\xef\xbe\x48\xba\x31\xb2\x47\x89\xea\xc8\x2e\x50\xa5\x15\x32\xc2\x17\x08\xd9\xba\x6b\x3d\x0f\x4b\x6e\xe6\x8f\x72\xa5\x81\xd8\x72\xd0\xfa\xb9\xea\xa9\x2a\x36\xa1\xe3\xb9\xc5\xe1\x5a\x68\xe0\x7a\x9f\xe5\x0c\xe6\x3a\x91\x1b\xf3\xe3\x33\xb5\x6f\x9f\xf1\xb7\x47\xf8\x95\x4b\x3b\x94\x5d\x33\xd5\x93\x5c\xbf\xf5\xd2\x78\xf2\xe0\x31\x23\x3a\x75\x01\x3f\xa3\x3a\x93\xa4\x8d\xda\x35\xed\x84\x17\x93\x8d\x87\xe8\xe1\x6a\xa9\x0e\x90\x7d\x92\xab\x3f\x00\x95\xa1\x5e\xda\xed\xfb\x69\xed\x58\xc0\xe5\x2a\xfb\xdb\xbd\xae\x0d\xb4\x12\x40\xd1\x90\xd7\xfb\xca\xb7\xa2\xca\xf3\xa6\x6b\x79\x9e\x4c\xa5\x83\x33\x03\x4c\xb2\x33\x19\xcf\x4a\xf2\xed\x28\xcd\x9d\x17\x77\xc1\x76\x93\xd2\x15\xc2\xa0\x23\x01\x0b\x8b\xbb\xb8\xdf\x90\xc5\xc4\xa9\x20\xae\x89\x67\x21\x3c\xc7\x06\xa8\xa0\xb1\x23\x55\xae\x8d\xe4\x09\xe7\xcc\x28\x3d\x4c\x04\xc8\x00\xf7\x51\xfe\xcb\x70\xb0\x5a\x04\x68\x90\x47\xe6\x3d\x62\xaa\xb8\x49\xd3\xe9\x11\x03\x02\x06\x49\x49\xb0\xcc\x3e\x0a\xd0\x9b\xc4\x65\x72\x7c\x37\xd2\xda\xdb\xf8\xee\x27\x51\x85\x74\xe9\xbc\x04\x0a\xb6\x6d\xa6\xad\xad\x88\x34\x3c\x9c\x7c\x8a\x38\x65\xe6\x48\x10\x5e\xe8\x70\xfa\x4f\x6a\xe0\x4f\xe9\x08\x3d\x97\xc4\xf8\x24\xe2\x80\x25\x64\x71\xc9\x92\x05\x54\x38\x8b\xe2\x7a\xe7\xad\xc6\xf7\xe1\x71\x32\x2b\xd1\x89\xa7\x91\xd7\xd2\x5a\x21\xce\x31\xe2\xd0\x50\xf9\x76\xf2\xfc\xa4\x53\x0c\x3b\xb1\x4a\xe2\x41\xd4\x94\xe9\x26\x63\xad\x1b\x2e\x39\x72\xde\x08\xb4\xe9\xe3\xde\x51\x13\x13\x92\xab\x0a\x44\x22\x47\xa4\xfa\x06\x51\xb5\xa9\x84\x9a\x79\xbf\x39\xca\x96\x24\xa7\xf9\xc5\x3c\x59\x3d\xe8\x50\x0c\x24\xf2\x2d\xc1\xa4\x24\x01\x97\x87\xf0\x94\xf9\x1e\x09\x34\x65\x4b\xe8\x98\xbe\x7c\xef\x18\x21\x38\x12\x22\x6d\xb7\x8d\xe2\x87\xe3\x91\x49\x4d\xd7\x3d\x5d\x93\xf1\x97\xa2\x36\x59\x8c\x1a\x1b\x37\xd2\x13\xf1\xfd\x59\xf0\x46\x2f\x7d\x3d\x3e\x21\xee\x98\xf3\x76\x24\xad\x22\xfa\x82\x60\xc0\x39\x0c\xed\x5e\x13\xfd\xaa\x81\x3b\x56\xba\x4d\x08\x60\xa7\x39\x4c\xa1\xe4\x99\x30\xe8\x4b\x31\xcc\xed\x93\x5e\x2d\xab\x2c\x8a\x14\xd3\x63\xa4\x5d\x27\xd1\x08\x98\xaf\x9d\xb6\xba\xdf\x68\x03\xb8\x05\xf3\xec\xb3\x2f\x3d\x85\x0b\x94\x1f\x4d\x05\x0d\x28\x82\x51\x99\x98\xee\xb0\xd0\x18\x32\x69\x00\xfd\xb7\xf6\xd8\x30\xcd\x05\x9b\x29\x20\x17\x54\xc4\x97\x95\xc8\xc5\x23\xf4\xf3\xc6\x13\x49\x46\xf9\x4f\x15\x93\x9a\x70\x12\x2c\x49\x10\x79\x3b\x4c\x10\x0b\x69\x9f\xd9\x9e\xe9\x6b\xe3\x89\xce\xda\xb9\xd2\x97\xa8\xac\x28\xf7\x20\xb5\x31\xb5\x3d\x14\x71\xa5\xa7\x92\xb8\x3a\x72\xf8\xf0\xd4\x76\x31\x60\xc0\x58\x96\x6b\xf2\x8e\xc5\x69\x04\xae\x97\xe0\x34\x1b\x99\x3e\xb6\x8c\x01\xb2\x97\x0d\x2a\x9b\xd9\x33\xbb\xfe\x62\x5f\xd0\x8b\xae\x93\xb6\x71\xc3\x25\x81\xc5\x2f\xbd\xd1\xb7\xe9\x2b\xe2\x31\xf3\xe0\xaf\x5b\x8f\x1f\x82\x56\xef\x2f\xff\xa0\xc1\x53\x4f\x5c\xe1\xfa\xf9\x90\xe0\x24\x3a\x48\x05\xd5\x6e\x11\x2b\xa8\x38\x95\xaf\x44\xdd\xa4\x21\xb0\x66\x7d\x6d\x9a\x25\x0e\x22\x16\xc2\x84\x93\x96\x35\xe1\x37\x2f\x69\x9f\x6d\x3f\x06\x8c\x71\x79\xbb\xa5\x1f\x31\xa7\x93\x1d\xe2\xb3\xe7\xad\xe2\x39\x6c\x8f\xf5\xda\xde\x3f\xd5\x6d\x91\xd9\x30\x28\xd5\xff\x16\xcf\x26\x9b\x09\x38\x66\x1c\x8a\x46\x07\xc3\xbe\x11\xa1\x97\x27\xf2\x23\x03\xbc\x3d\x2a\xeb\xb9\xda\x87\xe7\x9c\x96\xb3\xc9\xbe\x21\xf8\x81\x14\xfe\x79\xf8\x3c\xb0\xc2\x39\xac\x59\x86\x55\x20\xb5\xa0\xd0\x5a\x36\xa1\xd2\x4a\x40\x48\x67\xbd\xdc\xae\xdb\x68\xec\x52\x56\xa6\x7c\x48\x3c\x7a\x70\x70\x47\x38\x90\x7b\x47\xf8\x68\x8a\xec\xb9\x7e\x61\xc4\xb0\x57\x8c\x01\x7a\xab\x06\x48\xaa\x0a\xdc\x41\xbc\x04\xe6\xfc\x79\x96\x83\x52\xe6\xab\xcc\x57\xa3\x07\xd7\x62\x85\x93\x9e\xbc\xbb\x8b\x8e\x39\x76\x62\xc4\xb3\x58\x01\x49\x51\xf9\xa6\xa3\x0f\xb7\x8c\xce\x0b\x82\x5b\x26\x72\x17\xac\xfc\x19\x27\x57\x6a\x99\x60\xd9\x4c\x07\xcf\xf5\x31\xc7\x6d\x64\x8e\x42\xe6\x79\xde\xfb\x2e\x6d\x0d\xd9\xc5\xa1\x26\xa4\x2b\x3a\xc9\xc1\x2d\x67\xb9\x92\x8f\x17\x6b\x2e\xc3\x79\x8a\xef\x3c\x41\x7f\x71\xb2\x37\x8b\x1e\x05\xd3\x1b\x76\xf7\x7c\x42\x2d\x89\x5b\xaa\x35\x20\xf4\x65\xd3\x13\xd1\x66\x4c\xb2\x23\x4e\x67\xc0\xfc\x08\x30\x32\xf9\xd4\xd5\xa4\x8c\x2a\xc8\x1d\xef\xcd\x20\x82\x62\x6b\x93\xd3\xf8\x12\x5b\x84\xb2\x46\x91\x85\x8e\xc2\xa8\x45\x17\xd8\x28\x9e\x7c\x1c\x73\x32\x6e\x5d\x2b\xcd\x87\x3a\x81\x1e\x76\x6b\xc0\x7a\x8a\x10\xf0\x40\x33\x27\xc5\xde\x6c\x6d\xb5\xfa\xa9\xb4\x8c\x64\xa5\xae\x11\x36\x71\x45\x02\xae\x37\x58\x58\x3c\xa3\x39\x43\x95\xb0\xe0\x76\x34\xdd\x82\x42\x1a\x16\xc3\x44\x02\x3e\xdf\x09\xf0\x42\xd9\xdd\x4c\x43\x82\x47\x68\x26\xd5\x7c\x2f\x11\x65\x35\x0d\x92\x44\x91\x65\xb6\xc9\x42\x2c\x26\x77\xbf\xa1\x99\x5d\xba\xcc\xea\xac\x0b\xdf\x6a\xa9\x7d\xa2\x92\xb4\x21\xdb\xcc\x2a\xa0\xee\x6c\x44\xe4\x04\x08\xed\xa6\x30\x4c\xc8\x31\x82\xde\x94\x26\x37\xf4\x12\x0d\x07\x19\x6a\x47\x69\xae\x3c\x2c\xef\x29\x71\x22\x34\x3f\xe1\x0d\x83\x98\x49\x36\x49\x2d\x52\x1f\x91\x5f\x83\x40\x87\xda\xed\x45\xab\xb2\x74\x00\x56\x40\xe7\x45\x32\x10\x28\x53\xe9\x49\x40\xb3\x57\xb2\x73\xb4\x8a\xa2\xa4\x8c\xcf\x6a\x8f\xc4\xe7\x50\x2d\x88\x40\xe4\x53\xf3\x68\x6d\xee\x64\x01\x29\x26\xfe\x7b\x55\x15\x4f\x67\xd6\x92\xa9\xf4\x6d\xfa\x74\x1e\x21\x67\xb5\xc9\xac\x21\x6f\xf4\x67\xdf\x0f\x6a\x7c\x5e\x8b\xe9\x5a\x8b\x91\xf5\xaa\xab\x89\x76\x5d\x8c\x79\x82\xa6\x63\x46\xde\xe9\xe2\xf0\x97\xa6\xeb\x01\x38\x43\x19\x9f\x84\x5e\xdd\xc0\x8e\x9d\xff\x58\xe7\x22\x53\x2b\xa3\x03\x91\x6f\xaf\x41\x8d\x2d\x79\x9b\x68\xc5\x26\xb8\x45\xfd\xb1\x29\xee\xbb\x77\x7c\x74\x72\x6a\x8c\x3e\xf5\xe4\xad\x37\xcf\x3f\x71\x4b\xd6\x5e\x66\x1e\xe0\x07\x87\x3f\x36\xc5\x13\x8f\xdf\x7c\xeb\xe2\x53\xb7\xe9\xfe\x7b\x67\x26\xc6\xa6\x26\xc7\x0e\x24\x0f\x54\x09\x2f\x8a\xaf\x3d\xec\x6b\x95\x2b\x34\xcf\x1c\xdb\x8d\xb3\xeb\x74\x5c\x6c\x0d\xcf\x0e\xe6\xd8\x58\x37\xd6\xab\x05\x46\x8c\x0a\x08\xb5\x48\x0d\xb5\x1a\x34\x80\xfd\x7a\xf3\xbb\xa7\x4e\xd5\x49\xe8\x16\xe3\x1f\x13\xf0\x93\x9a\x0c\x48\xf8\xb0\x51\xfb\x1b\xbf\xd0\xb1\x9f\xa0\x9d\x16\x93\x27\xe8\xe3\xb2\x5b\xa5\xd0\x28\xf1\xb0\xa9\x51\x89\xa0\x6f\xfb\x61\xa2\xaf\x55\xee\x8a\x07\x6d\x39\x85\xd1\x53\x55\x39\xb3\xae\x5f\x8d\x08\x75\x8b\x67\x48\xe0\x45\x3f\x3f\xbd\x6d\x9c\xa8\x6d\x8c\x99\x93\xf2\x44\x19\xe9\x80\x9a\x8d\x09\x51\xc9\x4d\x9d\x43\x80\x89\x1a\xae\x29\x48\x44\x0e\x59\x5d\xda\xa0\x34\xb6\x2f\xcd\xb2\x4f\x01\x63\x7a\xed\x03\x22\xdd\x33\xfb\xef\x58\x38\x9e\x69\x81\xf1\x2e\xe6\x23\x00\xc6\x96\x16\xf8\x2e\x87\x30\x28\x4d\x0e\xe3\x36\xdb\xb7\x6d\x47\xf0\x41\x30\xcd\xf5\x84\x7c\x94\xdf\x23\x76\x9f\x6d\xaf\xe2\x73\xea\xf1\x64\xd8\x17\xd2\x5a\x1b\x57\xec\xb9\xb9\x38\xc9\x98\x9b\x0b\x26\x66\xd0\x51\x61\x41\x04\x3b\xaa\xfe\xda\x31\xc8\x4d\x6d\x70\x56\x7c\x2c\xea\xb9\x8d\x8a\xc8\x74\xb8\x81\xd5\x6e\x33\xbb\x25\x9e\x0e\xfe\x22\x14\xdc\x77\x61\x18\x3e\x84\x21\x54\x39\x13\x4c\x76\xbd\xf1\x8e\x90\xf8\x15\x8e\x07\x30\x7b\xdf\x9e\xfd\xa5\xfd\xcf\x05\xb4\x34\xb3\x11\xb6\xac\x44\xad\x15\x52\x68\xdc\x18\x86\x85\x07\x3a\x72\x7a\xc8\xde\x8e\x5d\x22\xc1\xb5\x70\xb6\x2f\x18\xb3\xb4\xbf\xca\xb6\xf3\xb4\x93\x5a\x43\x13\x70\x35\x93\xcc\x21\xd1\xeb\x63\xab\x04\x22\xd7\xb4\xec\xb4\x7e\xbf\xcd\xba\x41\x45\x9f\x71\x0d\xc9\xa5\xfc\x3f\x6d\xc0\xa8\xb2\x8d\x43\x02\xd8\x1d\x11\x85\xa0\x37\xe0\x8f\xf0\x8a\x33\x90\x5d\x4c\x73\x27\x8c\xa5\xfd\x3c\xef\xa3\x01\xba\xab\xc8\x12\xd6\xbd\x13\x82\x00\x82\xe5\xa7\xf4\xdb\x0c\x32\x3f\x0b\x6c\xf7\x11\xa4\x60\xa8\xbf\xa3\x8c\x19\xff\x22\xf0\x87\xf0\x66\xf8\xa6\xe8\xdb\xff\x5f\x83\x52\x46\xc9\xa0\x3b\x93\x16\x02\x55\x72\x4d\x91\x2c\xd4\xc1\x0e\x63\x6b\x31\x68\x1e\x06\xe2\x6c\x79\x76\xce\x61\xc8\xab\xec\x3b\xb1\x4b\x4b\xac\x63\x4c\xa3\x82\x19\x4b\x2d\xf4\xb3\x98\x4b\x0a\x20\xbe\xf7\x78\x8f\x81\x28\x3a\xe8\xb1\x87\xfe\x84\x98\x9d\xe9\x63\xb2\xdf\x14\xf5\xc1\xb7\xc1\x43\x87\xcd\xce\x17\xda\x40\x76\x17\x97\x42\x80\xff\x77\x75\xa9\x2b\xb0\xe3\xc4\x82\x9c\xec\x91\x12\xd9\xbc\xfc\xa4\x5e\x7e\x27\x77\x24\xec\xc8\x74\xed\x53\x6a\x5b\x56\x4e\x49\x72\xc2\xa2\xbc\x19\x27\xe0\xff\x2d\xfa\xe4\x8c\xa3\x11\x96\x13\x37\xac\x29\xc4\x4d\x5f\xb8\x69\x07\xe7\xaf\xea\x2b\x64\x34\xc8\x78\x99\x82\x22\x26\x13\x2f\x6f\x14\xdd\xd5\xb5\xbc\x5d\xa5\xb9\x09\x93\xdd\xfa\x24\xfc\x82\xbc\xf7\x1c\x9b\xb5\xe5\xe8\xa8\xf7\x90\x17\x0b\x66\x83\xf8\xc2\x4d\xa4\x49\x22\x3e\xd4\x52\x4f\x91\xa7\x60\x19\x89\xa8\x0e\x66\x0c\x7b\xa4\xcf\xc1\xaa\xc3\xdf\x2e\x57\xa5\xe1\xe7\xa1\x87\x6a\x10\x20\x14\xc0\x2e\x5c\x64\x60\xf4\xd0\xf9\xd3\xf0\x43\x1d\x97\xf0\x76\x3b\x0e\xec\xd4\xec\x1b\x58\xeb\x22\xb5\x47\x8a\x15\x8e\x2e\x73\xbb\x52\xfd\x76\xf2\x13\x28\x7f\xf7\xbe\xb7\x48\xe8\x3e\x75\x15\x4d\xa2\xa7\xf5\xb7\x47\x31\x5b\xc3\xfe\xf2\xe6\x0f\xb5\xd8\x53\x26\x32\xd4\x63\x81\x71\xc4\xd8\x2c\x99\x61\x8d\x4e\xe0\x6d\xe0\x91\x42\x4f\x3e\xaa\x91\x7d\xcf\x0d\xa8\xd9\x48\x66\x84\x70\xa6\x59\xab\x1b\x72\x7d\x26\x6a\xb8\x61\xae\xd9\x09\x2b\x9d\x72\xe0\x40\xfb\x3e\x92\x8b\x3d\xa4\x2f\x54\x83\x0c\xc2\xca\xbc\x7e\xae\xd7\x53\x93\xa5\x76\x41\x06\xdf\xf3\x4b\xbe\x75\x7c\xf5\x29\x95\x82\x61\xa0\x09\xb9\xe1\xa0\xf8\xe9\x83\x6d\x77\xc8\x19\x70\xc2\x19\x46\x71\xaf\xb7\x76\xd4\x87\x14\x54\x3b\xe1\xc5\x96\x43\x19\xe8\x55\x2f\x37\x38\x50\x8b\x3e\xe8\x37\x36\x4b\xa7\xf9\xd2\xd2\x14\xa5\x94\xa7\x8e\xf3\xd2\x7b\x5f\x7c\x61\xc6\x38\xc3\xdb\x7b\x18\x2f\x87\xa6\xd7\x0e\x9c\x70\x2e\xa1\x24\x1f\xe1\xa2\xcf\x7c\xe8\x66\xc5\xd7\xb1\xa7\xc5\x4a\x8f\xdd\xb4\xb9\x91\x10\x34\xe1\x9a\x73\x34\x2e\xd1\x50\x0e\x23\x0d\x64\x15\x3b\x73\xe7\x8c\xc5\x9d\x76\xf8\x32\x4b\x33\xcc\xcb\x22\xb3\x9a\x5b\x80\x0e\x03\xab\x79\x0f\x34\xe1\x31\x94\x63\xd9\x27\x36\xac\x67\x05\x3b\x81\x99\x03\x6a\x03\x1b\x00\x26\x28\xec\x65\x3c\x7b\x00\x4c\x84\x91\x07\x11\xda\x7b\x21\x34\xb4\x70\xf6\x7b\x50\x8b\x28\x6f\x1a\x8e\x81\x65\xc5\xa9\x70\x84\xbc\xc2\x66\x88\xb2\xec\x93\x98\xf5\x27\xbc\xdf\x71\xd7\x13\x82\xb9\xb1\x0a\x55\x25\x03\xca\x8a\x37\x25\xd7\xf2\x43\xd4\xb0\xdb\x96\xe4\xab\x80\x76\x2f\xd4\xfa\x18\x77\xb4\x40\x1f\x88\x74\x8e\x5c\x06\x26\xff\xce\x78\x6a\x83\xeb\x69\xb2\xbc\xee\x24\x9a\xb5\x83\x9a\x36\x75\xda\xde\x34\x8d\xc5\x37\x71\x71\xb0\x7c\x9d\xd7\x0a\x64\x95\x18\xc8\x0b\x4e\x03\xe9\xcb\x9a\x36\xfb\x3a\x70\xcb\x4f\x5a\x2c\x99\xe2\x91\x62\x36\xae\xaa\xa2\x59\xab\xa2\x2c\x67\xca\x82\xa6\x04\x30\xa7\xb0\xe7\x5a\xab\x07\x79\x46\x9e\xd3\xa7\x43\x35\x61\x88\xdb\xfc\x06\x81\xb8\x42\x4c\xbb\xcd\x7a\x2d\x12\x94\x93\x27\x1f\x14\xd0\xf5\xcc\xee\xd3\x06\x24\xf4\x93\x40\x76\x37\x1b\x7b\x66\x90\x67\x26\xa7\x96\x08\x63\x63\xb9\x1e\xcd\x85\x83\xa3\xbd\x43\xc8\xed\x5c\x97\x5d\x24\x5f\x7e\x79\x4f\x97\x9d\x56\x5b\xbe\x69\xd0\xcd\x6f\xb9\x36\x80\xdc\x09\x41\xe0\x54\xc0\x66\x20\xa8\x41\x0b\x21\x73\xbc\x21\x01\x4d\xb3\x55\xbf\x4f\x6a\xbf\x5e\xb7\x56\x56\xfd\xa7\xe9\xa1\xe2\xa4\x60\xba\x64\x25\x8e\x55\xdd\xfa\x4a\x0a\xd3\x40\xcd\x9f\xef\x94\x79\x5f\x89\x77\x53\x4e\x98\x20\x21\x02\xca\xd0\x4f\xb6\x6a\x60\x79\x26\x9c\x83\x0f\xe4\x37\x6e\xda\x47\xd6\xb4\x3a\x27\xb3\xdf\xe9\x4b\xe3\xfc\x27\x82\xb5\x24\x02\x13\xeb\x5c\x72\xfc\xd1\xc8\x72\x53\x6b\x37\x7c\x50\xc7\x4a\x07\x24\x1b\xcc\x11\x24\xf2\xcd\x16\xe8\x98\x36\xb0\x3e\xe8\x73\x2e\x41\x5b\xb8\x0c\xf1\xf3\x4c\x44\xc4\xe5\x80\x73\x78\xf2\xd1\xf3\xc8\x78\x71\x99\xff\x69\x7f\xda\x7d\xad\xf7\x45\x87\x72\xfe\xa0\xf3\xfc\x3e\x70\xef\xf0\xa7\x0f\xbf\x3e\x78\xa7\xf5\xd5\x3e\xbd\xb2\x75\x99\x01\x61\x7e\xd9\x82\xeb\xd1\xb7\x48\xea\x15\x01\x92\xd3\x65\x66\xb9\xa1\x88\x61\x33\x29\xef\xec\x8c\xde\x38\xdc\xb9\x85\x06\x57\xf6\x2c\x47\xee\x0c\x2b\x46\xde\xaf\x0e\x3c\x37\xfb\x44\x2c\x96\x89\x9a\xfd\xe9\xbd\x29\xb8\xb7\x63\x6a\x64\xd4\xfd\x38\x66\xcb\xcd\x14\xef\xaa\xf7\x74\xe6\xe0\x83\x6b\xaa\xc9\xb7\x1f\x36\x58\x0f\x7d\x44\x76\x8d\x97\x9a\x1f\xa8\xe5\x8b\x35\xb3\xaf\x77\x69\xe7\xe7\xb9\xaf\xfe\x15\x09\xdd\x6b\xc0\x92\x7e\xfc\x74\x23\xbf\xa8\x46\x9e\x3f\x44\xef\xd6\xc8\xdf\x07\xed\x55\x94\xae\xb7\x10\x6c\x8f\xfa\x2e\x29\x04\xfd\xe1\x04\xc2\xd1\xc1\x3c\xaa\xcd\x9a\x0d\x69\xa9\xff\x15\xde\x24\xad\xb0\x32\x8a\x72\xc9\x9d\xa2\x4a\x07\x90\xd4\xc7\x9d\x08\xfc\x17\x67\x79\xf2\x9c\x9d\x9f\xea\x79\x01\x99\xba\x8d\x5f\x60\x93\x3b\x36\x65\x0a\x1c\x03\x36\x10\x0d\x63\x90\x2d\xf1\x96\xf0\xde\xfb\x2f\xec\xe6\x4f\xf3\xc4\xd3\xae\xdd\xc9\x4c\x77\x17\xaf\x1d\x2d\x07\xbf\x84\xec\xe6\xcf\x65\xde\xec\x41\x03\xfd\xda\x5e\x82\x78\xc3\x55\x82\xf4\xe5\x63\x12\x1f\x6d\x37\x6e\x9b\x1c\xbd\x1d\xc5\xee\xcb\xc9\x54\x9a\x2b\x6b\xe4\xc0\x19\x54\xbb\x30\x9d\x29\x75\x88\x61\x31\xea\xd4\xbb\xea\x50\x73\x4a\xc6\xa5\xf6\xb7\x98\xae\x2e\x26\x1a\x2d\xb2\x1f\x1e\xef\x77\xc9\xd8\x3e\x1b\x69\xee\x44\xd1\x90\x1f\xb4\xc9\xdb\x92\x56\x47\x3e\x23\xab\xec\x04\x56\x68\x7e\x11\x3e\x81\x03\xe1\x3f\x5b\xfd\x94\x03\xbf\x16\xd0\x1a\xfc\x27\xea\x8b\xcb\x75\x58\x20\x62\x92\xb5\xac\xe6\x94\xe5\x23\x46\xaf\x8d\x0b\xae\xb7\xcc\x77\x30\x97\x62\x79\x04\xf5\xe9\x6c\x4d\xac\xe8\x41\xe4\x5e\x5e\x4b\xf3\xee\x1b\x3a\x2e\xd6\xbb\x28\x67\x75\x93\x78\xca\x0c\xa4\x74\x95\x78\x2e\xc9\xd4\x15\x33\xce\x4e\xfa\xa1\x07\xca\x4b\x77\x93\x93\x9a\xf1\xbc\xe7\x7f\x07\xaf\x7c\x67\x7a\x68\x7f\x46\x02\xeb\x87\xb0\x4a\x25\x7c\x76\x95\xf9\x0b\x1d\xf3\xe8\x57\xc9\x78\xf0\xad\xbc\xd0\xd5\x8e\x58\xd9\xe1\x11\x36\x1b\xde\x99\x96\x93\x6f\x6f\xb1\x6d\x5b\x82\x7f\x02\xd8\x9c\x81\xd8\x9f\x9a\xd0\xf9\x6e\x08\xbf\x1c\x26\xd0\x4d\x07\x8f\xbd\x17\xa5\xa3\x80\x4c\x1e\x68\xd7\xcc\xb7\xe9\xa1\x7d\x1f\xf0\xe5\x07\xde\x37\xd1\xb4\x61\x55\x67\xbd\x57\x25\xa1\x65\x6b\x9b\xfe\x72\x94\xae\x92\xcf\x35\x92\xdf\xe6\x2f\xc0\x61\x23\xeb\x15\x02\x23\x19\xb1\x85\x6d\x4a\xe3\x8e\x86\x32\x4d\xbb\x4a\xd2\x3d\xc2\x9a\x45\x7d\x2e\x07\xed\xaf\x13\x5f\xcf\x94\xbc\x77\x8c\x4c\xa3\x8a\x3e\xba\x38\xcb\x4d\x0e\x1d\x95\xbd\x82\xb1\xe4\x39\x85\x46\xfd\x57\x93\x40\x2a\xa4\xf1\x0c\x0b\x66\x19\x23\xcb\xac\x73\xe5\xa5\xce\x4b\x20\xbf\xfe\xa8\x86\x3f\xbe\xf0\x4d\x38\x85\x5d\x40\x58\xe2\xe4\xb7\xc7\xdd\x14\x1f\x85\x37\x85\x7b\x40\x74\x02\x21\x2d\x1a\xa6\x89\x1f\xae\x58\xf6\x0a\xe1\xc3\x5a\x47\xc1\x6d\x8d\x10\xc9\xb8\xc4\x74\x17\x13\xa7\xdd\xd1\xa2\x25\x2a\x92\x2a\x78\x3d\x60\xaa\x8e\x58\x0e\xf6\x82\x59\xeb\x49\xdd\x36\xb0\x57\x43\x91\xf1\x4c\xc4\xd5\xb3\x3c\x2b\xa5\x50\x74\x3d\xab\x37\x1a\x7e\x83\x7e\x0a\x76\x4a\x3f\xf9\xe0\xed\x13\xb8\x27\x10\x4e\x99\xaf\x69\x85\xf0\xaa\x0e\xec\x51\x7a\xd9\x2f\x78\x04\x3d\xad\x87\x41\x3d\x51\x8c\x7a\x13\xc8\x4d\xf0\xf6\xb7\xf9\xbf\xae\x94\xf0\xb7\x14\x8f\x13\x8c\x64\x22\x69\x33\xcb\x47\x2c\x3d\xe7\x5b\x09\x70\x85\x2a\x35\xa2\x78\xb6\x90\xe6\xdc\x36\x9b\x8e\x24\x62\x66\x7f\x5d\x37\xef\xec\x23\x2e\x82\x4a\x78\x0a\xbe\x3d\x72\x4d\x6d\x2e\xee\xe1\xd2\x50\x79\x82\x50\x27\xa2\xcc\xbe\x46\x5f\x22\x32\x2c\xf9\xf7\x44\x06\xe6\x9b\xda\xb9\x82\xae\x91\x21\xea\xf5\xc6\x88\x03\x9a\xae\x04\x42\x56\x5d\xc4\xc1\x0b\x94\x13\x55\x1d\xa5\x4c\x8a\xa1\x3a\x87\x7f\xba\x04\xa9\xf1\xb3\x55\x26\x51\x62\x84\x08\x7b\x25\x4a\xea\x1e\x2d\x6a\x6e\xca\x4d\xc6\x41\xe8\x71\x60\x1e\xc3\xf7\xda\x8f\x10\xc5\x7d\x3c\xe5\xce\xbc\x0c\xad\xae\x90\x86\x1b\x4b\xc9\x79\x19\x59\x3b\x7c\xf9\xad\x47\x44\x38\x2a\xbf\xe9\x15\x11\xae\x87\xfc\xe6\x58\xe9\x47\x49\xa8\x4f\x09\x10\x7d\xbd\x5c\xb5\x70\xd4\xd4\xab\xc3\xaf\x44\xfd\x3e\x22\xa6\x5d\x17\xa7\x6e\xda\x19\x93\x7c\xb0\x54\xe0\xc5\x0e\x0e\x15\x0f\x48\xa1\x4c\xba\xf1\x7b\x5b\x84\x88\xed\xb9\x17\xb3\x90\xa1\xa3\x9d\x92\xdd\x11\xc2\xba\xcb\x77\x30\xef\x5c\x8f\x07\x55\xb5\xa6\xeb\x37\x99\x54\x2b\xca\xa8\x4b\x47\xcf\xcd\xff\x9e\x38\x0c\xc3\x12\x19\x9d\x55\x03\xb3\xeb\x61\x60\xfc\xe9\xeb\x40\xd8\x92\xc7\xc5\xa0\x50\x0b\x78\x28\xa7\x3a\x5c\xcf\xf8\xc2\x6d\xcb\x0f\x12\xf2\x0b\xf4\x83\x2a\x2c\x0d\x92\x1e\x92\x1b\x2f\x7f\xbc\x19\xd3\x7d\xcf\xeb\x8a\xf1\x38\x62\x69\x44\x8f\x13\xc5\x9b\xa0\x54\xbd\x03\x23\x2d\x62\x66\x8c\x7e\x32\x1a\x1d\x20\x5f\x92\x01\x0d\xcc\x78\x09\x95\x50\xa3\x7a\x73\x3b\xf7\x97\x52\xc5\xb3\x59\xd2\x31\x9f\x04\x2a\xc1\x40\x47\x53\xe6\x73\x37\xbe\xb5\xbf\xcf\x62\xc4\x83\x9e\xd1\xd1\x45\xf7\xc3\xb9\x34\x57\xa8\x3a\xea\x74\x26\x5f\x8f\x52\xdf\xfb\xaa\xf7\x35\xfb\x20\xc8\x36\x82\x09\xd6\xb4\xd3\x7e\xa6\xee\x0f\x72\x13\x59\x68\x2f\x36\x9a\x8a\xee\x62\x4a\x53\xa9\x2d\xd1\x04\xe7\x86\x48\xb3\xb9\x20\x93\xb0\x09\x22\xc5\x0e\xf6\xa6\x26\x7a\x8c\xa8\x24\x6b\x1f\x0d\xcb\x76\x54\x71\x83\x35\x1e\x0d\x03\x68\x71\xf0\xbc\x58\x7d\x4b\x81\x64\xaa\x0f\x98\x2f\xae\x86\x95\x13\x65\xb6\xcb\xed\xb1\x58\x55\x81\x71\xc2\x46\x13\x7b\xdc\xe5\x6c\xc3\xa2\x82\x99\x58\x62\x30\x70\x04\x55\xa9\x3e\x83\xd6\x85\x0b\x95\xbd\x1e\x1a\xda\x6d\x3c\x68\x12\x72\x23\x51\xc9\x5d\xa4\xb6\x55\xb1\xfd\xd8\x32\x53\x28\xbc\x21\x9a\x98\x01\xdd\x40\xac\x62\x89\x5f\x1c\x15\x38\x64\xe3\x9c\x13\x5b\x11\x67\x8d\x6d\xda\x87\xa6\x9b\xff\xb1\x29\x1e\x04\x65\x3c\xfe\xbe\x1b\xbc\xdd\xce\xc7\x0b\xde\xeb\xaa\x64\x9f\xe6\xe7\x7b\xc7\xf7\x0c\x20\x77\xe4\x87\x11\xba\xf3\x31\x66\x1b\xdc\x3f\xec\x14\x76\xf1\xc4\xf3\xdf\x94\xed\x2b\x51\x1c\x1c\x05\x6b\x04\xe0\xa6\xf9\x1a\x5a\x1f\x65\x76\x04\x61\x32\x4f\x7b\x4e\xfb\x99\x2c\xa0\x3c\xd6\xb6\x27\x30\x8b\x93\x88\xd4\x37\x89\xff\x30\x42\xb6\x0d\xd3\x4a\xfa\x7a\x8a\xc0\x23\xeb\x5b\x50\xe0\x02\x74\xae\xc7\xaf\x11\xa2\xa9\xb8\xeb\xd2\x19\x21\x0b\x52\x77\x13\x3d\x35\xdd\xa1\xd6\xe8\x7e\x79\x5c\x75\xf2\x81\xf1\x3b\xad\xac\xce\xd3\xef\x1e\x03\x4d\xb5\x63\x0b\xfb\x4d\x8e\xc1\xe5\x2c\x39\x97\x41\xdc\x06\x06\xf5\x5b\xce\xd6\x85\x4f\xac\x2e\x88\x12\x19\xd7\xfa\xb8\x2b\x39\xb9\x92\x9c\x25\xf1\xdc\x90\xcb\x6e\xe3\x4e\x53\xc2\xdd\x75\x21\x1c\xc1\x1d\xd5\x04\x78\x3e\x94\xc1\x24\xb2\x0f\x5e\x14\x05\x15\x90\x0d\xc2\x84\x91\x8b\xa4\x92\x4b\x41\x5c\x4d\xe3\x4e\x6a\x35\xea\x79\xd4\x4e\x55\xe9\x72\x4c\xfe\x53\xec\x2b\xde\xf0\x42\x65\xc9\x09\xea\x55\x99\x6e\x04\xf9\x7c\x77\x3e\x6c\xc5\x68\x53\xd0\x6f\xce\xe2\x6d\x63\xb2\xd7\x0d\x11\xd5\xb7\x47\xe8\x45\xe3\xe5\x89\x2f\x4f\xc1\xbb\x0b\x6f\x0d\x1b\x2f\x5b\x03\x47\x4f\xc7\xdf\x18\xe4\x97\xd8\x7b\x8b\x6f\x0e\xed\x9c\x5f\xe2\x20\xb3\xfd\x1c\xca\xd7\x09\xf0\xca\x16\x86\x0b\x5c\x19\x34\xe4\x7c\x40\x35\xf5\x0f\xc7\xeb\xc5\x23\x92\x70\xc7\xa8\x42\xd7\xc3\xe6\xaa\xc9\xe8\x50\xaa\x91\x57\x26\x34\x4f\xb7\xed\x21\xaa\xfa\xab\xc4\xad\x56\x03\x61\x13\xb0\x2e\x6f\xf3\x1c\x83\xed\xd3\x40\xc5\x47\x79\xa2\xc9\x8d\x75\x23\xb8\xc0\x8c\x2d\x70\x66\xc5\x73\x57\x06\x66\x2e\x17\xd8\x14\x68\x65\xa2\xc6\xc8\xa7\xf3\xa4\x71\xb8\xa4\x86\xa6\x1a\x5d\x42\xcc\x04\x6a\x70\x09\xa8\x09\x95\x44\x3d\x28\x00\xc0\x98\xba\x51\xa4\xaa\x09\xd6\x4c\x8c\x4b\x2d\xc5\x58\x6d\x18\x76\xf1\x6f\x9e\x07\x7b\x34\x49\x70\xf4\x18\xf1\x4e\x5a\x9e\x55\xfd\xdd\xa3\xfe\xb9\x56\xa4\x02\x36\x61\xa8\x05\x7d\x42\x95\xca\x32\x10\x82\x91\xfa\xa2\x4e\xd6\xe5\x2d\x78\x68\x75\x2b\x2a\x3d\xa9\x69\xca\x61\xfc\x63\x67\xa0\x3a\x90\x99\x2f\x31\x52\x9b\x03\xea\xd0\x25\xc7\xf4\x90\xb4\x00\x87\xff\x69\xb7\x59\x73\x96\x45\xb3\x82\x2d\xb1\x6a\xdf\xde\x85\xa0\xef\x9a\xbd\x2e\xa8\x10\xad\xed\x80\x2c\xa8\xbb\xd4\x4b\x9e\xab\xd6\x92\xbf\x5f\xf6\x48\x36\x5a\x64\xfa\x7c\x58\x0f\xe9\x81\xbb\x77\x34\x97\xde\xfb\x10\x15\x01\x42\x8b\x11\x8a\xc6\xbf\x64\x98\x03\xc4\x7b\x39\xbb\xf4\x26\x0a\xa7\x59\xb9\x63\x43\xf0\xda\x2f\x98\xe2\x32\xc0\x49\x11\x45\x2f\x65\x5e\xd8\x8e\xef\x3e\x83\xbd\x6d\x66\xf2\xbb\x42\x3c\x8c\xe0\x53\x68\x9a\x82\xf6\xe4\x8a\x72\x15\x24\xb9\x99\x76\xcd\xdd\xe4\xe3\x7d\xcd\x06\xfa\xb4\x67\xe9\xa9\x77\xfb\x50\x7d\x62\x5d\xbf\xf6\x7a\x8d\xa9\x57\xef\x24\x9e\xca\xf7\xa4\xa5\x32\x59\x11\x27\x96\x96\x54\xb5\x5b\x3d\xe5\x76\x4f\xbb\xc2\xbb\x35\xa6\x5c\xe6\x2a\x77\x8a\x3d\xdc\xec\xaa\x35\x57\xa8\x91\xab\xde\x52\xd1\xef\xaa\xa8\x97\x57\xc4\x98\x7e\x65\x55\xbf\x43\x3c\xa6\xdb\xaa\x5a\x5c\x79\xd0\xc1\xbe\x19\xe6\xb5\xe4\xe4\xd1\x2a\x9a\x78\xaa\xaa\x29\x7d\x21\x0e\x6e\x24\x0e\x04\xe3\x72\x1a\x8a\x0c\x4e\xf5\xc7\x97\x62\x9c\x20\x92\xd4\x08\xd4\x22\xa0\x28\x66\x26\x29\x42\x05\x37\x1e\xd5\xd9\x43\xcd\xe6\x5b\x88\xde\x6d\x8e\x94\xb6\x19\x68\x5b\x95\x70\xff\x4a\x8b\x03\xdd\x69\xa8\x5d\x68\x5c\xba\xc9\xd7\x8c\xf9\x41\xa5\xd8\xc4\x3e\x05\x9c\x97\x83\xfc\x33\xb3\xd6\xe0\x09\x61\xe2\xf9\xfe\xfb\x20\x05\xa8\x99\x39\x0f\xad\x07\x18\xec\xd4\x19\xc4\x0c\xfb\xc9\xdf\x42\x25\xfb\x4d\xa2\x70\x86\xa2\x35\xb8\xbc\x18\xb5\xb5\x74\x5e\x6c\xf7\x3f\x68\xf0\x6c\xfe\xcc\xd3\xf6\x00\xc9\x2f\x24\x03\x9e\x69\xe8\x5c\x27\x48\x49\xd6\x2b\x57\x2e\xea\xd7\xd6\x1a\xd3\x27\xd2\x7e\x11\x0c\x59\xaf\x86\x14\xd3\x7e\x0b\xf5\x57\x6e\x1e\xdb\xf8\xc3\x3c\xdc\xa0\xe0\x2c\x30\x4e\xf1\x80\x64\x08\x2c\x3e\x80\xbd\xf0\x52\x39\xbe\x87\x70\x3e\x31\x96\x0f\x0b\xd3\xa3\xca\x3f\x64\x64\x43\x96\xc5\x06\xc7\x89\x71\x69\x0d\xc2\xd0\xf8\x6a\xaa\xf0\x07\x86\x3e\x2a\x1a\x4c\x4a\xc3\xf6\xc0\x95\x8f\x2c\x9b\xe6\xb0\x23\x84\x76\x09\x80\x35\x20\xd4\x80\x86\x09\xd5\xea\xae\x5e\xe2\x4b\x80\x6a\xf4\xfb\xfb\x8e\x0f\x67\xea\xbe\x0c\x96\xb4\x84\x94\x07\xd1\x96\x95\x69\x17\xc9\xd9\x7b\x48\xdc\x2c\x3f\x54\x72\x84\x1c\xa6\x07\xe9\x07\x06\x91\x4d\xe6\x22\xb6\x86\xe1\x19\xd1\x42\x25\x1e\x3a\xf5\xe7\x3d\x48\x45\xd1\xa8\xf1\x79\xcc\x2b\x9f\xa5\x48\xf1\xbc\x7c\x49\xa5\x68\x1a\x87\xf1\x41\x52\x5f\x54\x0f\xdb\x8a\xc4\x32\x20\xa8\x27\x44\x97\x40\xf6\xc9\xc3\xa4\x4c\xf0\x05\x82\x05\xf0\x9c\xab\x95\xc0\x7d\x3d\xc0\x41\x56\x53\xb1\x86\x7d\xf3\xba\x9e\xd7\xf0\xb7\xf0\xde\x73\xfe\xfe\x8a\xc2\x65\x57\x75\x2f\x95\x08\xe8\x30\xec\x4d\x29\xb0\x84\x35\x71\x41\x37\xbc\x2d\x7c\x00\x49\x24\xcb\x3f\x21\x8e\x9b\xe1\xe7\xcd\x79\xa3\x0d\xee\xd4\xf2\x96\x4d\x3a\x51\x08\x64\xb5\x3e\x95\x55\x68\x72\x25\x67\xbb\xed\x3e\x15\x36\x97\xbd\xa2\x94\x3b\x9f\x3b\xc3\xfb\x99\x4f\xce\x82\x2e\x65\xdb\x4b\x13\x79\xd3\x98\xb4\xa4\x36\x5d\x26\x8d\x16\x0c\x0d\x51\x7d\x50\x56\x19\xb3\xed\x09\xf7\xda\x10\x56\x70\x81\x61\x8b\x59\x9e\x6e\x7b\xa2\x05\x81\xdc\xe7\xa7\x67\x5f\x74\x5e\x63\x86\x62\xea\xbb\x0e\x58\xca\x7b\xf0\x04\xcd\x0b\xb3\xa1\x46\xe1\x06\xd1\x65\xc6\x67\xdd\x64\xd8\xc5\x30\xf2\xba\x61\x45\xfd\x11\x86\xd9\xbf\x90\x06\x34\x16\xa0\xa5\x76\x9c\x02\xbe\xf2\xc3\x1b\xf4\x20\x41\xab\x2b\x59\x8c\x06\x47\x9a\x4f\xae\xb5\x8c\xf7\xaf\x0f\xba\xac\x1b\x4f\x3f\x20\x17\xcc\x77\xae\x50\x95\x77\x33\xdd\xe0\x21\x3c\x25\x4e\x2b\x98\x18\x17\x7a\xc0\x23\xde\x22\xd5\xfd\x53\x53\xe5\x5a\x08\xb0\x0f\x16\xc1\x73\x0a\x02\x81\x17\xf8\xd8\x39\x80\x1b\x98\xa0\xc8\x95\x34\xb8\xcc\x8f\x0f\xe8\xff\x3e\xd6\x5b\x16\x1e\xdf\xc6\x99\xd1\x0b\x9e\x93\xa1\xad\xb4\xee\xed\x6a\x40\x3d\x58\x74\x7c\xa6\xcb\xff\x92\x2f\xf4\x3a\xbd\xbc\x6d\xca\x06\x2e\xf4\xf2\x46\x11\x70\x82\xbd\x0f\x71\x6d\xe1\xa3\x9b\xe4\x30\xab\x5a\xa8\x25\x72\x95\x1f\xd2\x16\xc7\x82\x54\xac\x3e\xff\x68\xed\x18\x77\x62\xe2\x16\x86\x77\xa8\x96\x9b\x4a\xff\x0d\xed\x40\x08\xc1\x5f\x37\x37\x94\x6d\x2a\xb7\x0f\x8c\x1b\xef\xe1\x76\x97\xfa\x30\xc4\x74\xae\x9e\xf8\x4e\x2d\x8c\x33\xcc\x2a\x48\x9c\x99\x64\xb2\x16\x5a\xc4\x6a\x61\x8a\x6d\xd5\xb2\x23\xc3\x3e\x9d\xa0\x71\x53\x61\x6e\x7c\xc6\x5e\xe1\xff\x64\x86\xd4\xfc\x9c\x85\x75\x9e\xef\x8f\x02\xeb\x02\x6d\xb3\x2c\x0a\x80\x19\x75\x88\x66\xee\x88\xe5\x85\x88\xce\x5d\x51\x26\x4c\x3a\x56\x3c\xd7\x49\x12\x7c\x57\x01\x53\x8e\x6e\xb4\xda\x13\x6f\x68\x2f\x59\x03\x80\x1a\x56\x21\x60\xd4\x9a\xbb\xb0\x79\xbe\x54\xfa\x46\x7e\x1f\xa9\x3a\x15\x35\xe5\x30\xb3\xdf\x3b\xbe\x98\xa2\x5d\x6d\x2b\x76\x97\xad\x63\xda\x68\x90\x1e\x3b\x94\x69\xaf\xb5\xd6\xf5\xf4\xb7\x67\xbe\x71\x16\xbe\x1a\x2b\xde\x53\xed\xad\xe9\x53\xc1\xe4\x87\xa3\x7d\xb3\xab\x7d\x8d\x39\xdf\xf7\x2c\xfd\x1b\xe2\x0b\xa5\x5b\xd2\xba\x39\x17\xa4\xb9\x58\x5f\x10\x43\xa8\x4e\x27\xf5\xeb\x11\x6c\x89\x2b\xe7\x2b\xf6\x3d\x24\x6e\x66\x1f\x90\x26\x61\xb9\x60\xfb\x47\x51\x00\x61\xc6\x4f\xdf\xf2\xec\xd3\xb7\x3d\xcb\xb7\xdd\x0e\xc4\xcf\xe7\xd2\x52\x2b\x47\x29\xa5\x79\x15\x90\xfe\x1b\x65\x4a\xb3\x44\x9f\xf6\x0a\x89\x62\xa5\x63\xaa\x9d\x62\x74\x87\x9c\x3c\x23\xb9\x13\xbf\xf0\xad\x9c\xbb\xcc\x3e\xb9\x08\x2b\x7b\x6a\x93\x6b\xb5\x8c\x4e\x2b\xc1\x50\xaa\xb5\x8e\x34\x1c\x6f\x1b\xa9\x78\x89\x8a\x95\x99\x09\x1b\x17\x87\xdf\xf5\xe8\xe1\x70\x1a\xe6\xf2\xe3\xe1\x88\x74\xd6\xf4\x97\x6e\x84\x24\x98\xd9\x8c\x88\x67\x41\x4a\x9b\xe7\xf9\xfa\xc0\x62\x73\x39\xf9\xf8\xa7\x56\xf6\xc4\x7e\x02\x1b\x76\x48\xac\x36\x92\xde\x61\xc2\x27\x35\xca\x1f\xd1\xb8\xd7\x8c\x06\x02\xc1\xd0\xa9\x61\xe0\x15\x8e\xd8\x19\xa8\xd3\xb1\x83\x1f\x3a\x2d\x3d\x9f\xef\x61\xa7\x68\x72\x86\xff\xd4\x36\x8d\xde\xf0\xbc\xfc\xb3\x7b\x77\x53\x79\xe1\x5c\x3f\xc0\xda\x95\xda\xfb\xc3\xcb\xf7\x9a\xb9\x61\x4f\x3f\x92\x1a\x12\xec\x73\xf5\xec\x6a\xa6\xec\x84\x8a\x64\x9f\xa0\x57\x72\xb3\xdc\xa2\xe2\xaa\x3f\x23\x9e\xbd\x3c\x12\x4b\xe9\x27\x56\x71\x72\x5f\xa4\xd3\x2d\x2b\xb6\xad\xac\x8b\xaa\xa7\x8f\x95\x81\xbc\x99\xc5\x38\x07\x1a\x9a\xf3\x50\x9a\x0f\x23\x17\x90\xbc\xe5\xaf\x10\x7c\x66\x9d\x6b\x7d\x2c\xab\xdf\xe4\x26\xaa\x8d\xa1\xd6\xd6\x53\x1b\x71\xe5\x5f\x69\xb8\xb2\xd5\x19\x92\xf8\xaf\x78\x6c\x4b\xca\xf6\xf9\x84\xde\xe8\xcf\x20\xfd\xed\x21\x1f\x0c\x4e\xa9\xcc\x0c\xfb\x98\x75\xdb\x8f\x52\xf3\x5c\x90\x6f\x0b\xdf\x99\x3d\x8f\xd0\x5e\xfa\xd1\x5e\xf1\x7d\x71\x97\xe5\x66\x9e\x18\x12\x50\x59\xac\x82\x52\x77\xb2\x76\xe4\x1c\xa9\xb9\xb0\x76\x50\x6d\xf6\x66\xa7\xfa\x98\xc1\x19\xe8\x1a\x81\xd6\xf6\xfb\x21\xd1\x5d\x80\x52\x5d\x42\x80\xfa\x42\x9d\xe7\xbf\xe9\x9b\xd5\x8e\x87\x55\x09\x82\xaa\x17\x46\x67\x26\x1a\xd1\x2d\xf9\x5b\x01\x3d\xb7\x43\xd1\xe1\x96\xbe\x07\x47\x77\x0d\xe9\x9e\xd1\xd1\x08\xb8\x5f\xc3\xa7\x31\xb9\x2b\xa7\x35\xb0\x60\xe4\x60\x2f\xa3\xb7\xd2\x20\x83\x5b\xc6\x83\x24\x37\xfa\xd7\xa6\x9c\x0e\x26\xd6\xa3\xc6\x12\xa6\x5e\xac\x18\x53\xc2\xb6\x25\x5e\x5f\xcf\xc7\x3c\x15\x03\xa7\x6f\x13\x95\xe4\x03\xd0\xe6\x77\x20\x4f\xb4\x42\xd0\xb8\x6e\xa6\x16\xf3\x04\x98\x72\xea\x18\x16\xec\x92\x27\xa5\x9a\x16\x2c\xd8\x7e\x7e\x74\x6a\x32\x33\x5b\xc8\x15\x67\xb3\xf9\x22\x85\xb8\xd3\x40\x3a\xa2\x81\xc3\xe2\x20\x03\x49\x7c\x03\x42\xb6\x44\x19\xbf\x01\x32\x78\x4d\x80\x1f\x56\xb0\x91\xfd\x44\xef\x36\x6c\xb7\x26\x1a\x9a\xfd\x5f\x9d\x89\x62\x9c\xcb\xd4\x4b\xc8\x44\x7a\x3b\xbd\x74\xa6\xd5\x99\x28\xd4\x26\xb3\x0d\x40\xa7\x63\x6e\x9c\xbb\x51\xfc\x1c\xcc\x1f\xf7\x97\xc5\xf7\x8d\xbc\x39\xab\xfe\xb3\x75\xa3\x43\xd6\x6c\x73\xbf\x44\xa3\xee\x17\x95\x6f\xb5\x0b\xbe\xf2\x34\x17\x40\x18\xb9\x12\xfe\xd7\x43\x21\x87\x17\x16\x04\x24\xcc\xdf\x4f\xc8\x35\x79\xe9\x5b\xfb\x7b\xdf\x09\x47\x9c\x0a\xd1\x37\xbe\x86\x8b\xef\x02\x5b\x0e\xda\x1e\x76\x7a\xd5\xb1\x4a\x6e\xcd\xa5\xbd\xf8\x1b\xd2\x0e\xc6\xdf\xd5\xb1\x81\xa5\x1f\xee\xa5\xde\xce\x21\x45\xde\x3e\x63\x3b\x9d\x68\x29\xfe\x8d\x98\x55\xb5\xae\xc4\x26\x5c\x3b\xf9\x9a\xa0\x8d\x77\x1b\xd9\x4c\x6d\x91\xdb\x17\x0a\x83\x51\xae\xc8\x6b\x93\x99\x74\x36\x9f\xe5\xa3\xb9\x49\x9c\x64\x67\x07\x32\xb3\x99\x1c\x55\xaf\x01\xce\x4b\x17\x56\x19\x53\x85\xc0\xd1\xaf\xea\x90\x33\x73\xc0\xd5\xff\x28\xeb\xcf\x78\x72\x70\x02\xeb\x87\xb3\xe7\x46\xf6\x10\x65\x29\xa3\x67\xa7\xf9\xee\xa7\xb0\x39\x53\xca\x10\x67\xec\x00\xa3\xa4\x57\x1a\x0d\xce\x6d\xc3\x08\xac\xe3\xab\x88\xe1\xff\x49\x28\x75\xe2\x71\xae\xc7\x5b\x58\x7a\x5f\x65\xd8\x8d\xbc\xca\xd7\xec\x78\x7f\xbd\x9b\x34\x6d\x0c\xc5\x81\x29\x3d\x4f\x21\x6d\x4b\xd2\x0b\x0b\x89\x6a\xc6\xf6\x3c\x9e\x57\x3e\xf3\x59\x30\x0e\xe7\xea\x10\x4a\x3b\xc5\x63\x0d\x36\x53\xe7\xa1\x6e\xcd\xf2\x3a\xd7\x01\x68\xe0\xa4\xd5\x07\x1f\xce\x11\x96\x36\x7f\x9c\x32\x50\x93\xcd\x85\xc4\x8a\x7f\x98\x8b\x44\x8b\x74\x65\xef\x2a\x10\xa1\xc9\xc8\x82\x15\xe1\xea\x74\x3d\x31\xfa\xd6\xf4\x98\x8f\xfe\xd9\xf3\x9f\xfc\xc4\xd4\xc4\x4d\x57\xe2\x6b\xc9\x9d\xc0\x7b\xd1\xfa\x91\x8b\xf7\x2f\x72\x6d\xed\x92\x24\xd5\x76\x77\x29\x2e\x91\x20\x85\x12\x6d\x0e\x94\xb7\x4d\x5e\x5d\xa1\x07\x02\x94\xfd\x35\x47\x67\x97\xf5\x4d\xb5\xac\x6a\xcb\x17\xba\xda\x40\xef\x90\xfb\xce\x7d\x13\x1d\x7f\x57\xb6\x3f\x9c\xc8\x05\x9a\x22\x63\x64\x58\xda\x97\xdf\x07\x9c\xf4\xe1\x7a\x3a\x0a\x48\xd0\x12\x8c\x70\x99\xf1\xa5\x03\x07\xf6\x5f\x03\x5e\x86\x07\x7b\x7a\x5a\x1a\x95\xbe\x25\x2e\x19\x12\x10\x46\xf9\xd2\xed\x02\x87\x38\x2d\x9b\x75\x1b\x97\xec\xa2\x18\xe0\x6b\xcc\x30\x88\xd0\xeb\xae\xee\xa9\x5f\x88\x15\x62\x17\x0e\xe4\x1b\xeb\xc3\xa2\xa3\xf2\x13\xf3\xa3\xa2\xc3\xd6\xf5\xf3\x2f\x2f\xb2\xd4\xb8\x66\x1c\x7e\xd6\xb2\xd9\xed\x57\xc8\xb6\xd6\x8f\xb4\x86\xfc\x5a\xb0\x81\x3f\xd7\xb5\x79\x69\xfd\x3f\xe9\x54\x3e\x26\xd2\xf5\x03\x03\xa7\x3f\xdf\xa3\xfa\x8e\xda\xd5\x01\x27\x4e\x78\xf7\xec\x0e\xd5\x1b\x38\xee\x00\xc7\x19\x56\xd7\x34\x35\x6b\xd1\x35\xd9\x65\xb9\xc5\xac\x0c\x50\x2b\x24\xb3\x12\x46\x32\x2f\xe1\x40\x63\xd2\x7c\x85\x3a\x1c\x33\x38\x7c\x48\x71\xcf\xb9\xb0\x68\x50\xc9\x87\x0e\x6a\x8a\x02\x4e\x23\xd9\x78\x78\xaf\xa7\xca\x00\x2c\x77\x83\x83\xd5\x55\x4e\xc4\x71\x1c\x58\x8b\x05\x8f\x80\x09\x26\x88\xe0\x19\x3e\xd2\xc2\xcd\x08\x68\x7c\xc5\x0c\xce\x81\x48\xc3\x8f\xf2\xa0\x6f\xde\x76\x82\xb6\x76\x48\x18\xf2\xb7\xb7\xfb\xfd\x41\xa8\xe4\xcf\x2f\x93\xab\x4a\xe1\xc7\x0a\xdd\x5d\x9d\x0f\x2b\x77\x5d\x1e\x39\x3d\xe2\x35\x99\xde\xa2\xdf\xf9\x5f\x9f\xa0\xc6\x29\x9c\x4a\xa5\xca\xbf\x39\xac\xe8\x7d\xf7\xa1\x82\xad\xc8\xc8\x91\x83\x84\x18\x71\xd6\x95\x36\x6f\x96\x3a\xea\xef\x45\xf7\x9c\x79\xd7\xb6\x07\x6a\xd5\x30\x98\xf9\x99\xab\xdc\x98\x54\xad\x56\x4b\xcb\x1f\x4b\x7b\xb8\xa0\xd6\x63\xbd\x5a\x50\x63\x8c\x3f\x5c\xaa\xcd\xcf\x92\x20\xc3\xb2\x2c\x61\x2a\x7b\x7a\x2a\x57\x3e\xef\x5b\x4a\xd1\x9b\xcd\x05\xe8\x9d\xe9\x1f\x76\x84\xbe\x3a\xad\xd0\x5c\x5f\x55\x89\x2a\xab\x7c\x51\x61\x5a\x4e\x59\xc9\x46\x9a\xc3\x49\x0b\x88\x52\x50\x92\xd7\x00\x8f\x7f\x74\xc7\x5e\x3a\x1c\xe6\x0b\x0f\xbb\x19\x0e\xe3\x4b\xee\xca\xef\xe6\x2f\x00\x7f\xe7\x2d\x7c\x4f\x8f\xd8\xd2\xb2\x29\x68\xbf\x73\x76\xfc\x3e\xcd\xae\x60\x25\x51\x4a\x79\xde\xff\x28\x7f\x30\x28\xe2\x96\x2c\xbf\x42\x3d\x7d\x5f\x2c\x20\x13\x4c\x8d\x53\x1c\x4b\x90\x55\x68\x09\x43\x87\x11\x22\x4c\x04\x7f\x6d\x06\x48\x63\x42\xf2\x56\x17\x35\x16\x85\x41\x95\x67\xcd\xa4\x08\x8b\x31\xc2\x95\x5f\x40\x31\x90\x43\x6e\xc4\x8b\x58\xc0\x8b\x2c\x76\xe3\xa5\x68\x49\xc0\x4b\x35\x2b\x47\x64\xe8\xef\x32\x85\x9f\x4c\x8f\xa4\x18\xb6\xf6\xc7\x58\xd8\x68\x3a\xf9\x5d\x51\xf0\xfa\x5a\x69\x46\x79\x75\x32\x66\x33\xca\x6a\xa9\xe2\x74\x51\x71\xf0\x3a\xcf\x40\x79\xad\xb4\x00\x93\xa6\x97\x94\x20\x3a\x5b\xf2\xf6\xd6\x3c\x36\x6f\xdd\xda\xb6\x52\x3c\xc7\x6f\x69\x88\x20\xe2\x44\x04\x81\x65\x11\x8b\x48\xb6\xc6\x6a\xc3\xa8\x0e\x58\xc5\xfd\xa4\x51\x1a\xf6\x73\x8d\x11\x60\xba\x8e\x47\x20\x2c\xe0\xdb\x2f\x56\x37\xd8\x98\x53\x33\x17\xe7\x86\x6c\x30\xbc\x29\xd7\x12\x44\x38\xcc\xfd\x76\xb1\x2c\x86\x44\x76\x0d\x42\x72\x89\x43\x2b\x66\xe6\x7e\x05\x61\x7f\xd7\xd0\x3f\xa3\x15\xc8\x89\x58\x3e\x8b\xf5\x59\x08\x47\x20\x49\x70\x90\x58\x40\x3e\x3a\x47\x07\x44\x6e\xff\xf3\xf9\xca\x9f\x65\xa3\x32\xc8\x42\x8c\x0b\x9d\x28\xb8\x50\x65\xec\x52\x45\x69\x7c\x09\x95\x29\xa4\xbb\xdf\x4d\x5f\xd8\xd2\x3a\x5e\x67\x70\x3c\x30\x9f\x36\x6a\x91\xed\xa6\xc5\x08\x83\x23\x0e\x09\xc0\xb7\xf7\x61\x19\xcf\xe5\x56\x00\xed\xd5\x44\xad\x78\x9a\x26\x62\x58\x07\xa1\xaa\xee\xee\xca\xaa\x9e\xee\x07\xe9\xab\x54\x61\xbd\xd9\x6c\x4d\xeb\x39\xab\xa9\x84\x86\x1f\x97\x95\xcd\x0e\x0f\xcf\xce\x86\xe2\x9b\xc7\xba\xe1\xe1\xde\xf0\xf0\x83\x65\xde\x1d\x3b\xbc\x50\x9f\xd2\xbd\x90\x47\x28\xc8\x7b\xd7\x22\x18\x12\xe5\x35\x16\xd2\x6b\x5b\xd7\x61\x21\xa3\xb6\xc5\xec\x3a\xc0\x35\x9b\x1e\xee\x28\xd3\x6f\xa7\x07\x76\x9e\x84\xd7\x4e\x76\xcb\xe9\xce\xc6\xf3\x1f\xa9\x3a\x1b\xce\x8b\x3d\x00\x22\x28\xa5\x38\x60\x0f\x76\xb3\x98\xc3\x68\xd1\x04\x6d\xf9\x99\xdf\x39\xe7\x4c\x40\xd1\x68\xa6\x3e\x62\x4f\x65\xeb\x1d\xa7\x7c\xa4\xa0\xd0\x74\xcf\xf2\x4a\xca\xa1\x95\xff\x6a\xde\x5a\xdb\xd4\xd4\x38\x42\x0a\x3c\xb0\x5a\xb1\x86\x5c\xe5\x17\xb1\xec\x12\xcb\x5a\x30\x7a\x7c\x56\xe2\xc1\xee\xf9\xb7\x87\xbd\x7b\xc5\xf2\xf2\xa6\xe0\x80\x59\xd2\x29\xbb\xe9\x5f\x3e\xdf\xe1\x46\x85\x05\x9c\x25\x56\x2b\x47\x5d\x89\x6a\xdf\x70\xdb\x39\x20\xcb\xf5\x5b\x3f\xf7\x02\xc2\x6d\x0b\x23\xa5\x3d\x3d\xe2\x6c\xed\xb8\xee\x48\x67\x5b\xdb\x89\x8e\x41\xa1\x77\xb3\x7f\xf6\xe9\xfc\xa2\x75\x37\x75\x4c\x64\xd3\x56\x53\x6e\xcb\x7f\xc4\x5a\xc9\xb2\xfc\x9c\x1a\x30\xaf\x3c\xc5\xc6\x54\x96\x89\xd4\xdd\x6c\x6a\x7d\xcf\x99\x05\x8d\xa3\x35\xe7\x96\xe8\xd4\xbb\x02\xe3\x1c\x37\x27\xb7\x92\x1b\x64\xe9\xab\x1d\x41\xf5\xc3\xa2\xd0\x36\xb7\x0b\x7b\x38\xae\xe0\x79\x09\x28\xf9\x7b\x91\x84\x3e\x49\xf0\xe0\x8a\x43\x9a\x57\x13\xee\x79\xf5\x1e\xcd\xef\x13\xba\xef\x6d\xd2\xee\x88\x4c\x6d\xff\x7f\x46\xfe\xf6\xfc\x8c\xd7\x34\xdd\xd4\x4a\x5b\x2f\x05\xde\xe3\x68\x1c\x11\x18\xa3\x66\x25\x69\xb0\x4f\x1b\xed\xbc\xfd\x70\xc1\x39\xaf\x86\x84\x2d\xa7\x0a\x62\x02\x71\x4c\xd0\xe1\xc0\x65\x9a\xfc\xd4\x40\x9c\xba\x3b\x32\x66\x63\x6f\x50\xe0\xbd\x81\x92\x3c\x69\x93\xf4\x70\x7c\x74\xf9\xca\x6d\xe4\x46\xba\xf3\x8a\xe9\xf0\x96\x02\x79\x65\x45\xf4\x86\x65\x8f\x29\x2b\xbb\xbb\xab\xf8\x6b\x8c\x2b\xb0\x98\xad\x14\xd9\x3a\xa4\xc7\x2c\xf8\x50\x01\x62\x48\xbb\xf7\x62\x73\x85\xb3\xfe\xa8\x53\x1d\x72\x47\x5a\x9c\x19\x1a\x1d\xbe\xe2\x36\xb1\xeb\x6d\xd6\xae\xe8\xc8\x20\x2a\x28\x28\x9c\x3f\x76\x41\x8a\xd0\x17\x43\x02\x76\x05\x44\xbc\xb2\x27\x3a\x24\x26\x30\x28\x28\xd0\x74\x58\xb6\x6a\xb9\x84\x82\xda\xea\xe6\x7f\x07\xde\x1b\x18\x4a\x41\xbf\x33\x0f\x4b\x65\x91\xa3\xce\x7b\x14\x19\x0d\xbf\x1d\xed\x0a\x90\x45\xae\xcf\x8f\x5e\x21\x0b\x0c\x0c\x50\x07\x04\x05\x85\x6a\xe0\x51\x35\xe5\xf4\x5b\x23\x75\xb3\x23\xd1\x3e\xd6\xfe\xf3\x13\x3a\x8a\x0a\x8b\x0c\xa2\xca\x63\x02\x23\x63\x4c\x79\x81\xcf\x47\x54\xb1\x36\xfa\xfe\xb2\x1e\xed\x6d\x5b\xa9\x38\xde\x68\xe1\x0d\x52\x8f\x17\x6c\x26\x2e\x78\x35\x24\x3c\x28\xdb\xe9\x01\x31\x01\x81\x83\x81\x41\x38\xfa\x83\xbd\xfb\x9f\x55\xaf\xbc\x00\x13\xfd\x03\x81\x7f\x29\xd1\x4f\x78\x73\x19\x64\x4b\xf6\xcb\xbe\x98\x5e\x2b\x18\x6d\xeb\x9f\x17\xd1\x01\x63\x14\x1a\x6a\x52\x06\x92\x1d\xa3\x6c\x58\xc4\x36\xd9\x18\x05\xa5\x53\x64\xe0\x33\x74\x14\x15\x65\x11\xd4\x38\x5e\xa9\xd6\x65\xfe\x41\xbf\x82\x57\xd3\xd5\xf2\x6a\x75\x1a\x5f\xaa\x62\xa2\x52\x22\x2d\x82\x25\x32\x45\x7e\x53\x36\x26\x6b\x20\x54\x68\x28\x4a\xfa\xb0\xa9\x4e\x61\x06\xcb\x8d\x98\xc6\x90\x0f\x36\x65\x47\x9c\x25\xc1\x12\xd7\x91\x60\x93\xcc\x4b\x88\x64\xd6\xde\x92\x40\x04\x92\xa0\x8f\xd5\xf3\xec\x38\x7d\x8f\xa0\xb4\xe8\xcd\x4a\xc8\x15\x9a\xa3\x96\x84\xb9\x54\x1a\x75\xc7\xc0\xc5\x7e\x23\xbe\x5b\x46\x16\xd3\x98\x5d\x44\x56\xd4\xcf\x62\x2b\x86\x1a\xef\xaf\x3b\x5f\x77\x81\x17\xa8\x29\x0a\x7a\xc7\x6f\x3f\x85\x66\xb1\x88\x3d\xdf\xc9\x0c\x2f\x22\x11\xe0\xe5\x5e\xab\x18\xdc\xd2\x7b\xaa\x36\x0c\xd3\x51\xf7\xe8\x36\x66\x97\xb2\xf7\xdd\x48\xde\x08\x79\x8e\xbc\xac\x80\x28\x43\xfe\x7c\xd8\x86\x99\x09\x25\x5b\xe0\x93\x23\x01\xf1\x6c\xf3\xe7\x82\xbb\x36\x00\xf3\xa6\x07\xfc\xd3\x4e\x6a\x8c\xe2\x38\xee\x94\x24\x1f\x12\xfb\x36\x02\x63\x78\x0e\x73\x50\xc8\xf8\x4b\x1c\x1d\xed\x7e\xc6\x88\x68\x24\x22\xb2\xd8\x7d\x09\x41\x55\x4e\x86\xfb\x1c\x33\x33\x68\x7f\x61\x22\x4b\x4d\xca\x44\x2c\x0a\x90\x33\x18\xe5\x06\x98\x62\xb9\x72\x9a\x7c\x2e\xc3\xc3\x4f\x6f\xdf\x5b\x1f\x82\xbf\x25\x1d\x02\xe9\xf8\x16\xd7\x87\xdc\xdc\xe9\xb5\x7c\x8d\xbf\x66\x5f\xdb\xfc\xf2\xd5\x43\x9b\x6b\xef\xb9\xb0\x19\x6f\x3e\xf4\x70\xca\xd7\x16\x6f\xe6\xd7\xe8\x69\x9f\x8f\xc9\x05\x42\x37\x72\x6b\x55\x3a\x8f\x6a\x37\x8b\xbd\x90\x60\x29\x30\x27\xcc\xe7\xe9\xcd\x47\x04\xb5\x80\xcc\x04\xbf\x1c\x8e\x92\x2d\x9d\x23\x87\x50\x1d\x23\xe9\x55\x7b\x27\xcc\x09\x2e\xec\xc8\xb5\x6f\x9d\x11\x18\xfe\xa6\x8b\x43\x73\xc8\x45\xf0\x1c\xe6\xc5\xe0\xab\x14\xc7\x9c\x83\x77\x39\x05\x5b\x3d\x3c\xf4\x3d\x96\x93\x04\x84\xf5\x59\x65\x22\x62\x50\xb7\x0a\xbe\xa0\xf3\xb9\x5a\xcf\x4b\xc2\x12\x2f\xcf\xca\x85\x1e\x63\x8c\x46\xc8\x23\x64\xc6\xed\x5c\x29\x3e\x1c\x46\xc8\x6f\x90\x22\x66\x6a\xd9\x2f\x81\x90\x57\xa9\x32\x02\x4a\x62\xec\x55\xf4\xbb\xb1\x28\xb8\xe1\xf1\x73\x72\x36\x6e\xcc\xf1\x4d\x5d\x28\xce\x94\xcc\x4a\x2c\x3c\x3a\xb1\xb8\x38\x71\xd9\x43\xe6\xcb\x25\x63\x20\xb6\xe0\x6a\x59\xf4\x85\xbb\x47\x89\x8c\x98\x44\x6a\x6b\xb7\x86\xa2\xd7\x4d\x8f\xde\xbd\x10\x55\xa6\x02\x4f\x6e\x37\x7a\xe8\xce\x1d\xaf\x18\x7f\x08\x16\x40\xbb\xe9\x6c\x19\xe3\x79\xef\x9e\xdd\x23\x7c\x48\x75\x95\x57\xec\x05\x16\x39\xaf\xcb\x65\xb7\x77\x61\xa7\x13\x77\x0d\x0f\x03\x3f\x3e\x16\x47\x71\x76\x01\x81\xa1\x6f\xdf\x0b\xe8\x6c\x4f\x0f\x8c\xd9\x27\x08\x70\x54\x09\x40\x16\xdb\x88\x79\xec\xc4\x36\x0c\x89\xb1\xf7\xda\x39\xcc\xb2\xc2\xa5\x94\x1c\xc6\x98\x15\xdd\xa4\x3f\x45\x08\x45\x4d\x8a\x75\x28\xfc\xdf\xb0\x29\x46\x30\xe6\xeb\x0a\x70\xa4\x8e\xab\x4e\x32\x51\x59\x9c\xfa\xe0\xdf\x33\x67\x77\xed\xf6\x71\xdd\x67\xc1\x89\x39\x0c\xc7\x55\x70\x1e\x11\xbb\xf3\x65\x6f\xd8\x94\xeb\x1b\x7b\xbb\x38\xe3\x9a\x42\xa1\x30\x33\x0c\xc6\xb4\x7f\x8e\x28\x22\x58\x96\xf3\x15\x04\xd9\x14\x36\x28\x46\xfd\xc4\x8a\xef\x3d\xb5\x9d\x8a\xf7\x1c\xec\x7d\xe5\xec\xdb\x7a\xb1\xf3\xd7\xc7\x4f\xc1\x9e\x24\x28\x02\x06\x2c\x5a\xf1\xb2\x58\xec\x17\x5d\x7d\xff\x37\x74\x22\x99\x97\xb8\x59\x82\x35\x5a\x19\xac\xd1\x8c\x30\x2c\x7b\xc3\x4c\xc3\xf4\x1c\x00\xa9\x7a\xf9\x09\x64\xb7\x3b\x9f\xad\x09\x06\xe4\xd9\x68\xef\xfa\xf5\xa3\xa3\x84\xb2\x6e\x9e\x9e\xfa\xf3\x96\xde\xde\x47\x70\x81\xc5\xf2\x6f\xe5\x16\x71\xea\xeb\x92\x2a\xea\x6a\xf0\xa1\x7b\x45\x11\x21\xc8\x5d\x9e\x9f\x98\x2a\xab\x94\xa5\x22\x0a\x8a\xca\x85\xe9\x63\x29\xe1\x48\x73\x2c\xae\x77\x6b\x84\x67\x58\x6a\x92\xc2\xd4\x14\x45\xfc\x7e\x22\x1b\x5f\xdf\x93\x31\x19\xfc\x96\xd9\xc1\x56\x5e\x2e\x56\x55\xde\x59\x3b\x3d\xcd\x15\xe6\x9b\xd2\x19\x55\x83\x2a\x5c\xbf\x7f\x9f\x7e\xff\xfb\x90\xbe\xd8\xff\x9a\xca\x5f\x67\x0c\x1c\x67\xc8\x4d\x35\xd5\xae\x8b\x8a\x53\xf8\xe0\xeb\x8c\xce\xf7\x21\x42\xc5\x61\xec\x5d\x54\xc9\x75\xb8\xe2\xdc\x97\xff\x89\x19\x6a\xa0\x70\x3b\xe3\xe7\x88\xb6\x1c\x7e\x5c\x1d\x43\x55\x22\x22\xad\xdf\xec\xfb\xd7\x0c\xee\x99\x1d\x7d\x25\xd4\x33\x55\xde\x1a\xe9\x0c\xfc\xe9\xbf\xff\xa5\x26\x52\xbd\x2d\xe1\x9f\x9b\xdb\x0b\x15\x3d\x3d\xe2\xa9\xd3\x01\xb9\xd4\x14\xb5\x8c\xba\x57\x9e\x37\x69\x9a\x43\xa9\xe9\x86\xab\x91\x85\xd9\x59\xeb\xfb\x4c\xe1\xab\xbb\x8a\xcc\xaf\x5d\x5e\x0c\xc2\xe5\xbe\xe4\xb5\x2d\x07\x0e\xb4\xac\xfd\xf2\x6e\xa5\xb6\xb2\xa7\x27\xf7\xef\x9a\x65\x92\x54\x2a\x55\x92\xab\x69\x51\x0e\x30\x3f\x60\x25\x8c\x0c\x83\xba\xc1\xd4\x9f\xa6\x5f\xfa\x8a\xd5\xb1\x5f\xbd\x34\xfd\xd3\x20\x4b\x27\x35\xa7\xd5\x37\xa7\x25\xd1\x53\xfe\x71\x81\x75\xbd\xb7\xbd\x73\xd1\x7d\x6a\x21\xc8\x18\x51\x10\x80\xde\x0d\xbb\xf5\xa7\x9f\x14\x3f\xff\x0c\x53\xae\xab\xa9\x91\x5e\xb5\x58\xb6\x1f\xb5\x22\xeb\x5f\xda\x2c\x66\x6f\xb2\xd8\x5f\x1b\x70\xff\x1f\xaf\xb4\xbd\xba\xb5\x81\xaf\x09\x16\x9c\x82\xf3\xc0\x62\x98\x37\xec\x13\x66\xfb\xdc\x7d\x5d\x0d\xd3\xb8\xe6\x4c\x26\xef\xc8\xc9\x11\xef\x13\xb3\x07\x67\x6f\xfa\xda\x7c\x43\xca\x35\x3d\xe8\xa0\x9b\x1a\xa3\x04\x6a\x92\xf2\x48\x49\x10\xe0\xfc\x5e\xee\x3e\x28\x8d\xe3\x2e\xad\x91\x80\x5d\x91\x59\xc2\x38\x52\xa9\x4a\x2a\xd5\xc1\x75\x43\x94\x83\x81\x99\x83\x11\xc9\xcf\x63\xe0\xb4\xe8\x43\xbf\xdb\xd1\x2e\x52\x77\xee\xe1\x0d\x4e\x83\x68\xb8\x64\xb8\x8e\x0d\xb3\x5e\x59\xc7\xb2\x1f\xeb\x2a\x2f\xa7\xac\x29\x4f\x91\x07\xb0\x59\xd7\x54\x9e\x87\xcf\x77\x9c\xc7\x79\x30\x3e\x34\xb3\x67\x1c\xd7\x9c\x2d\xf6\x72\x98\x10\xb2\xe9\xdd\xd2\x6c\xa4\x1f\x0d\xc5\x90\xcc\x00\x45\x19\x2c\xb9\x67\x33\x18\xbb\x39\x37\xc6\x4c\x12\xec\x94\xc5\x40\x33\x71\x3f\x6b\xea\x67\x4d\x7b\x64\xa1\xa0\xd5\x11\x39\xca\x9c\x08\xf5\x86\x30\x3f\xa1\x25\x2c\x3a\x7c\x28\xec\x3f\xe1\x16\xb9\x1b\x86\x8a\xba\x6c\xa3\xe2\xc5\x57\x32\x1a\x03\x03\x9c\x27\xe3\x0e\x2c\x10\x6c\xfc\xc4\x44\xb3\x05\x05\x2b\x2b\xe2\x62\x4b\x4b\x87\x6c\x83\xe4\xe3\xba\xf9\xb2\x8c\xac\xa0\x35\xe3\xf8\x5e\x4f\x69\xf6\x2f\xef\xca\xa7\x4c\x54\xd0\xa5\xbf\x96\x9a\x4d\x01\x38\x30\x15\x1a\x54\xfe\xf5\xaf\x94\xa9\x3c\x28\x66\xa7\x62\xa7\xff\x6b\x97\x8b\x1f\x74\x16\xa5\x82\x97\x9b\xf5\xc0\x6b\xd2\x7c\x17\xd5\x01\x41\x0c\x9e\xbb\x20\xc2\x2d\x31\x3a\x41\xc7\x13\x8d\x48\x61\x2e\xb8\xff\xcd\x00\x3f\xf0\x07\x49\x8f\x52\xe3\xf7\xc6\xd2\x8c\x74\x55\xed\xa9\x55\x41\x7d\x41\xcb\xa4\xf7\xaf\x2d\x35\x9e\x37\x17\xfe\x10\x80\x01\x41\xbd\x41\x6b\xce\x5b\xcc\xe7\xcf\x83\x68\xd1\xca\x11\xbf\x5b\xec\x17\xfb\xdd\xc3\x96\x3d\xeb\x02\xa9\x23\x75\xd9\x5b\xa3\x14\xdb\x67\x88\x63\x2f\xc1\x90\xa4\xb2\x51\x99\x5b\xca\xe7\x03\x63\x32\xf7\x36\x40\xfe\xfd\x70\xea\xee\xf6\xaf\x9e\x7e\x5a\x9c\xba\x2f\xe4\xe3\x43\x79\x62\xfe\x01\xaf\x95\xc5\x6f\x18\x1a\x52\x91\xf5\x59\xd2\x10\xe9\xc0\x0e\x8a\x3a\x2a\x8b\xf6\xcb\x61\x0a\xec\x7d\xde\x33\x67\x86\x87\xfb\x9a\x4f\x9a\xdd\x0e\x70\x75\xcb\xfe\xfd\x2d\x6b\x0d\x2d\x2d\x86\x57\xc6\xdf\x7a\x6b\xbc\x64\xd7\xc9\x93\xbb\xbe\x8c\x11\x33\xa7\x32\xc5\x18\xb9\x08\x14\x05\x01\x7d\x7e\x2d\x70\x11\x71\x5c\x5b\x7e\x71\xd8\xe4\x7d\x74\xb1\xdb\xae\x1b\x16\x5a\xae\xcb\x22\x3f\x37\x0e\x7a\x52\xba\x1e\xc6\x5c\x34\x38\x68\xc6\x1c\x36\xa3\x87\x1f\x8f\x0e\x4b\x3f\x1b\x16\xfd\xf8\xdb\x45\x0c\xe6\x31\xa0\x4d\x96\x5a\x8c\x79\x29\x56\x0b\x07\x6a\x95\xdc\xda\x84\x40\xc6\x18\xf9\x9f\x76\x9f\xc3\x89\x3f\xc9\x41\xc0\x8e\x52\x56\x72\xeb\xd6\xdb\x3b\xc4\x6f\xf8\xf5\xd7\x36\x1e\x17\x34\xf8\x10\xe2\xfd\xba\x23\x90\xc5\x4b\xf8\xba\xd8\x06\xfe\xd1\x70\xa2\x33\x78\x37\x0d\x6e\xa4\x5b\x7b\x86\xb6\x3b\x44\x95\x59\xa1\x50\xdc\xff\x8a\x66\x32\x6d\x92\xad\xf8\x6f\x4e\x6b\x8d\x4a\x83\x43\x68\xc6\x6e\xa7\x76\xc8\xff\x62\xc2\xfe\xac\xfc\x1b\x8a\xfa\xe6\x66\x43\x20\xe0\x10\xe3\x61\x10\xf7\x24\x6f\xde\x2c\xe1\xc3\xa9\x49\x8a\x63\x8e\xdc\xdd\xb6\x76\xdd\x41\x77\xba\xe0\xe5\xee\x7d\x75\x75\x7d\x44\x46\x28\x22\xe3\xaf\xdd\xb8\xa1\x64\x59\x51\x0f\x12\xcf\x6f\x3f\xdf\x67\x32\x87\x97\xb9\xd9\x64\xcc\x1d\x5f\x3c\xb7\x53\xfc\xc7\x5c\x0c\x18\x11\x18\x6b\x17\xb0\x60\x5f\xc4\x1c\x86\x9b\x70\xd4\x3d\xb1\x77\xd4\x81\x6c\x73\x20\xc0\x89\xa2\x28\x72\x4e\x11\xae\x1a\x10\x75\x41\xff\x97\xef\x23\x9b\x27\x5d\x3f\x96\x3f\x3e\x22\xaa\x62\xb2\x54\xc9\x17\x5f\x7d\xaa\xbe\x2a\x54\xf2\x25\x79\xea\x97\x35\xe8\x48\x8a\x5e\x5f\xb0\xdc\xe4\x4d\x49\x1c\x4e\x48\x29\xae\xea\x0f\x59\x5e\xdb\xbb\x18\x96\x58\x54\x1d\xf4\xf1\x9e\xb3\x48\x95\x16\xfd\x14\xf5\xf3\xd7\x50\xf2\x54\x17\x90\x77\x63\x37\x67\x92\x2b\xf8\xa9\x49\x19\xc2\x55\x5e\x36\x2a\x43\x0a\xfd\x8d\x3a\xdd\xd5\x96\xab\x3a\x4e\xcb\x25\xf4\x15\xf6\x25\x70\xda\x7e\x1e\x89\x28\x20\xe7\x9a\xe0\x82\x03\xf7\xdc\xc1\x9d\xf7\x66\xca\x05\x96\xda\xb9\xb9\x75\xb5\x77\x0c\xab\x5b\x98\x65\x2a\xba\x7c\x90\xd4\x10\xa0\x88\x10\xe2\xc3\x37\xd8\x83\x64\xfc\xb7\x97\xfe\x32\x0f\xf2\x40\xb0\x5b\xa2\x76\x0a\x54\x5b\xed\xb6\x93\xcd\x76\xdb\x0e\xf4\x0f\x93\x37\x0a\x57\xb8\x60\xb3\x5e\x89\x64\x83\x02\xca\xcf\x40\xcb\xa6\x32\x3a\xc3\xe7\x3c\xb0\x96\xb8\xc9\xbe\xc5\x6e\xe7\x2d\xc4\x6c\x96\x85\xf6\x91\xf2\x56\xb0\x03\xa2\xe8\x49\x22\xbf\xd6\x29\xb4\xec\x59\x12\xc1\xbb\x05\x35\x25\x15\x11\x46\x8b\x22\x46\x98\xe5\x1f\x7d\x2c\x12\x98\x20\x55\x68\xd9\xdf\x06\x8f\x0e\x7b\xc4\x7e\xad\x9f\xf2\x80\x02\xcd\x38\x63\xb0\x7e\x9a\x11\x61\xc1\xe1\x72\x81\xe5\x83\x1e\xb1\xdd\x58\x18\x93\x74\xc8\xb0\xd6\x6f\x5c\x61\xd0\xf5\x2c\xa9\x29\xa7\x33\x7c\xd8\x8a\xa0\x4f\x44\x86\xad\xd9\x43\x14\xe5\xaa\x65\x2d\xcc\x6a\xc3\x9d\x75\xb5\x73\x73\x96\xda\x6f\xe0\xd1\x81\x59\xdb\xe8\xcc\x6d\x74\x16\x3f\xba\x43\x35\xfe\x21\xc7\xec\xc1\xdb\x78\xc8\x1c\x01\x30\x2c\x79\x2b\x88\xe1\x98\x7e\x2b\xf1\xff\xfa\x29\x0a\x37\xe6\xde\x41\x5f\xc1\x7c\xfa\xb8\xb4\x4f\x36\xfe\xc5\xd2\xc7\xdf\x12\x71\x60\x7f\xe0\x66\xfd\xfe\x30\xc4\x21\xf5\x88\x22\xda\xf2\x1b\x45\xd1\x1b\xb4\x66\xa8\xb7\xdb\x8e\xa8\x49\x2a\x3b\x9d\xa7\x75\x70\x4d\x19\x9f\x9e\x7d\x37\xd5\xaf\x99\xa2\x6c\xbd\x24\xb3\xf5\x77\x9b\x33\x88\xa1\xc0\x10\x02\x93\xab\x20\x44\x94\xbb\x2d\x1e\x2f\x7e\x54\xfc\x27\x04\x2c\x08\x0e\xe4\x10\x08\x26\x60\x76\xed\xae\xaf\x5f\x63\x41\x96\xcc\x91\xfa\x91\xcc\x70\xe4\x17\x1c\xbe\xe6\x45\x63\x2a\x3b\x7d\x7c\x12\x48\x84\xb7\xc0\x3a\xb7\xde\x47\xca\x9d\x6c\xde\x4f\x3d\xc5\x42\x59\xd7\xab\xa8\x6a\xb0\xd6\xf9\x47\x25\xdc\xd0\xf9\xa3\xf8\x5d\xec\x4a\x49\xf7\x5a\xa1\xb4\xb3\xab\x5e\x0c\xd6\x57\xb9\x9f\x08\x5d\x4d\x2e\xc8\x58\x77\xb6\xaf\xfe\x79\xa0\x5c\xc8\xa5\x39\xf2\x12\xd0\x96\x19\x3e\x5e\x74\xe6\x92\xa9\xf0\x77\x99\x7d\x4a\xac\xab\x13\xf7\xed\xad\x3b\xaf\x36\xcb\x6b\xe4\xea\x53\x43\x33\x05\xe8\x60\x9d\x55\x29\x5a\x51\xb9\xfc\xd9\x67\xd7\x47\x6a\x94\x9a\x48\x38\x60\xbf\xb1\x8b\x05\x43\x11\x9c\x19\xeb\x50\xf0\xdc\x21\xd1\x0a\x3a\xd8\x90\x6d\x84\xb4\x46\x17\x8a\x80\x53\xab\x22\xa2\x23\x9e\x60\xad\x2a\x75\x4a\x45\x1c\x82\x08\xec\x29\x3c\x2c\xe4\xd6\x5f\xf4\xda\x3d\x74\x3f\x07\xe4\x6f\xf8\xd6\x47\xb3\xcd\xcf\x4b\x75\xa4\x2c\x51\xa6\x1c\xcb\xcf\x8f\xd5\x48\xa9\xa8\x0e\x6d\xa6\xb6\x53\x1b\x79\x76\xa3\x25\xa3\x0d\xa1\x0d\xa3\x6b\x37\xd8\x69\x7b\x47\xe9\xb3\x9d\x9d\x52\x5b\x0e\xb7\xe0\x59\x1a\xc8\x88\xe2\x74\xd6\x86\xd0\x01\xeb\xe2\xf4\xc6\xa0\x47\x8c\x8c\x9e\xf1\xae\x5a\xe5\x85\x96\x2d\x9e\x2b\x1e\x7c\xd0\x15\x5a\x31\x6d\xa3\xbb\xa7\x31\x8c\x57\x06\xa5\x05\xfc\x45\x4b\x76\x3b\xdf\xfd\xe5\xbe\x65\x63\x35\x2d\x35\x84\xc0\xcc\xb3\xe3\x27\xe1\x06\xd6\x9a\x5c\x88\xaa\xb4\xd7\x4d\x63\xbb\x2a\x2a\x2b\xba\x1c\xc5\xcb\x7a\xe1\x35\xfb\xf6\x6b\x71\xeb\x30\x03\x47\xc0\x1a\x2b\x54\x67\xad\xc8\xf8\x73\x35\x68\x7f\x8c\xfb\x42\x01\x01\x16\x53\xa1\xea\x35\x03\x82\xea\xd7\xaa\xc4\xf7\x36\x6e\x57\x7d\x71\xa7\x91\xdb\xa6\x6f\x6f\xd6\xb4\x63\xb4\x3e\x84\x69\xae\x69\x5a\x6d\xe0\xb8\xc6\xad\x4a\x2e\x5d\x4d\xb9\x8a\x9d\x8f\x2b\xe7\xc6\x40\xcf\xb4\x10\xd1\xa7\x4a\x09\x42\xc6\x7a\x6f\xa7\xcd\x79\xcb\xca\x5f\xfd\x92\x41\xc9\x87\x68\xfb\xe3\x9c\x1b\xb2\x53\x9e\xf6\x00\x81\x26\xc8\x84\xd5\x25\x99\x95\xb8\x25\x97\x25\x82\x64\x21\x74\x99\x97\xd0\xe8\x86\x87\xc1\x0c\x6e\xba\x67\x04\x0c\x24\xe3\x6d\x53\xcb\xf6\xac\x13\x68\x09\xc9\x5d\x26\x0f\xe5\xfb\x02\x27\x6a\x42\x75\xe0\x2d\xc7\xe7\xe8\x73\xad\xa6\x46\x1d\xd2\x05\x97\xb5\xb7\x97\x05\x2f\x7d\x65\xc1\x72\xe6\xeb\xb1\xfe\x1e\x88\xd4\xc6\x26\x72\x43\x8b\xa9\x9f\x7e\xfa\xdd\xca\xc1\x56\x6e\xe5\x7f\xd7\x88\x46\xe9\x15\xef\xf4\x02\x8e\x70\xb5\x8d\xdd\xa6\x50\xf9\xab\x9f\x93\x01\xfe\xa9\x27\x8b\xfe\x5b\xa6\x98\x0d\x86\xd3\x26\x83\xa7\x5c\x3e\x77\x90\x28\x03\x1c\xe6\xf8\x19\x11\x89\x3c\x0b\x89\x52\xc1\x88\x33\x33\xb0\xb9\x1c\xf2\x35\x17\xae\x81\xba\xf5\xd1\x51\xf6\xee\x28\x0b\x88\xa0\x54\x9a\x20\x51\x14\x99\xdc\x0d\xf1\xc2\xd1\x1d\xbf\x21\x97\x1a\xa7\x1c\x13\x96\xed\x08\x2f\xd8\x4b\x01\xe2\xc4\x04\x9a\x88\x99\x09\xde\xb1\x73\x90\x83\x7f\x56\xaa\x79\x72\x40\xa9\xf9\x78\x9a\x43\xbc\x71\xfd\xf3\x46\x16\x8c\x89\x90\x85\x0e\x87\x47\xed\xc0\xc8\x26\xe7\xc8\xfa\x91\x91\xf5\x3e\xbd\x49\xd4\xe8\x67\x80\xcf\x8d\xa2\x40\x11\xe6\x53\xf8\xa4\xe3\x92\xd9\x49\xd6\x19\xd4\x58\xda\x51\x99\xe2\xee\xca\xfd\xb4\x07\x79\x58\xff\x68\xa7\xc9\x33\xe2\x09\xe3\xf5\xfb\x8b\xa8\x77\xa5\xb4\x21\x74\x2e\x84\xd7\x84\x47\x9b\x92\x59\xe9\x94\xa1\x5f\x84\x2b\x66\xe6\x78\xf8\xdd\xbb\x15\x76\x7b\xb6\xbe\xfe\xd3\x9e\x47\x8f\x86\x74\xa9\xdb\x4c\x1d\x03\x0f\x4c\x26\x4c\x1d\x3d\x32\xae\x9c\xf2\xfb\x27\x5d\xea\xc8\xd1\xf1\xd7\x0f\x96\xef\x9d\x1f\x1d\xf9\xef\x7f\x47\x46\x7d\x5e\x58\x50\x7b\x3e\x6a\xe5\x86\xf2\xf6\x4f\x65\x47\x8f\xfa\xfd\x9c\x7d\xf2\x24\x28\x21\x5f\x92\x8e\xaa\xe7\x95\x0f\x2b\xc1\x04\x20\x79\x38\x7d\xb4\x44\x5e\xab\xa3\xe0\x94\xc9\x68\x1e\x7c\xf7\x51\x83\x9f\xe5\x6a\xff\xbc\x5c\x49\x94\xf1\xcb\x76\x05\x99\xb3\x13\xed\x45\x01\x0a\x9f\xce\xa7\x00\x5e\x35\x23\x7e\xe5\x05\x82\x70\xeb\x79\x68\x4e\xe4\x1c\xa5\xbf\xbf\x21\x88\x22\x5f\x16\x17\x17\x0f\x9d\x17\xec\x18\x10\xa7\xf7\x5f\xbe\x7c\xe4\xe8\x60\xef\xc0\xab\xaf\x82\xd4\xbe\x53\xc0\x13\x1f\x83\x7b\x0a\xab\xcd\x9b\x7e\xd0\xb3\x4d\x1f\x6c\x7a\xe0\x6e\x51\xff\x3b\xd9\xef\xf4\x17\xdd\x7d\x60\xd3\x07\x4d\xec\xc5\x06\x69\xd6\xc2\x78\xad\xba\x23\x58\x43\xcd\x85\x5e\x09\x25\xa1\x0b\xa1\x36\xd6\x48\xfa\x08\xab\x63\xbd\xd9\x3e\x05\xdc\x7e\x7c\x56\x19\x5f\x55\x23\x56\x56\x36\xf6\xdd\x29\x08\x7b\xdb\xb9\xd0\xb6\xe7\xc4\xe7\xff\xf8\x50\xc7\x03\x68\x84\x11\x6b\xe4\x44\x8e\x75\x98\xbe\x53\x62\x52\xeb\xfa\xe9\x02\xeb\x08\x47\x8f\x8e\xd6\x66\x4a\x9f\x4c\x8c\x71\x66\x3a\x63\x12\x9f\x2c\x65\x3e\x1f\x84\xee\xc9\x04\xf9\xa5\xf4\x4b\xf2\xc4\x07\x75\x8c\x88\x8d\xc4\x48\xb0\xc8\x20\x1a\x02\x97\x42\x48\x2e\x5b\x93\x0d\x89\x8d\x35\x92\x3e\x0f\x6a\x85\x4f\x77\x57\xa1\xef\xd7\x79\x75\x6b\xcd\x5d\x7e\x76\x80\x55\x0f\xb0\xab\x2d\xf5\xb0\xc2\xbf\x74\x60\x7f\x6b\xd1\xea\xae\x70\xb6\x2f\x7b\x7d\x76\x65\x77\xf7\xf1\xee\xee\xca\x9c\xac\x75\xd6\x87\xb9\xad\x6c\x4b\x2a\x9a\x33\x4d\xe6\x8d\x9a\xb1\x7d\x02\xcb\xce\x93\x27\xc2\x34\x93\x76\xa4\x5c\x5b\x54\x7f\x3f\xf2\x5d\xc7\x64\xca\x0b\x4b\xd5\x54\xca\x52\xbf\xc8\xa9\x62\x5e\x3d\x2f\x99\x97\xcd\x4a\x8a\x93\xb7\x74\xfe\xf2\xc0\x0f\x3b\xfc\x51\x4e\xe6\x6f\x47\x4b\xd5\x11\x3a\x9b\xc9\x0e\x9e\x91\xe6\x94\x14\xab\x9e\x8d\x4e\xf3\x77\x54\x94\x26\x4d\xfe\x90\xcd\xe4\x84\xe0\x88\x9c\xc4\x02\xe5\xd7\xb2\x24\x20\x2d\xd8\x01\x7e\x46\x48\x6a\x67\xce\xfd\x88\x15\xe0\xec\x95\x9a\x80\x2e\x76\x11\x61\xc4\xbe\x31\xa4\xda\x49\x5a\xc1\xba\x6f\x29\xf1\x95\x16\x15\x88\x6a\x7b\x94\x9c\x35\x76\x13\x5b\x34\x11\x34\x20\x62\x3c\xe4\xc7\xb1\x5f\x83\xc0\x92\x81\x66\x04\x0e\xa4\x2c\xa0\x84\xe8\xcc\x99\x0b\x7a\xe6\x10\x46\xe9\x40\x06\x12\x69\x59\x9c\xb1\x84\x7a\x0d\xa3\x4c\x10\xde\xb8\x30\x92\x40\x9a\xb9\x16\xa4\x2a\x55\x2f\xaf\x9a\xaa\xab\x9b\x1a\xa4\x14\x99\x4c\x6e\x77\x7d\x3d\x3b\x40\x36\x0e\xc9\x57\x17\x2b\x94\x67\x67\x90\xa0\xd8\xe2\x74\x64\xed\xc9\x14\x43\x05\x00\x10\x0d\x79\x24\x8f\x84\x8f\x03\x11\x24\x67\x44\xde\xe9\x44\x9f\x8c\xc5\x92\xc4\xeb\x24\x09\x77\xa7\x82\xb0\xa8\x7b\x4e\x92\xb0\x10\x25\x92\x36\x5a\x09\x69\x91\x43\x51\x51\x7d\xfa\xac\x5f\xc0\x82\xb6\x86\x1c\x55\x18\x5a\x9e\x6a\x3e\xd6\xfd\xe7\x01\xf0\x9a\xa1\x2a\xd2\x99\xfe\x0d\x11\x94\x22\x32\xea\xd8\xe0\x7c\x02\xa2\x4d\x72\x62\x06\xa1\x0c\xa1\xd4\x40\x73\x49\xa4\x7c\xa4\xe1\x45\x71\x18\x40\x89\x57\x12\xa1\x2a\x0b\xca\xa1\x0b\x83\x05\x8c\x5d\x9b\xe7\x85\x29\xf7\x26\x96\x86\x84\xb6\x09\x77\x7d\xf5\x58\x55\xb6\xc8\x1b\xba\x3f\x71\x19\x8f\x04\x2c\xb0\xfc\x81\x79\x08\xe7\x4e\x08\x7f\x50\x64\x7c\x99\x25\x91\x0b\x41\xd1\x14\x25\xe4\x19\xbe\x48\xbc\x2e\x6e\xf2\x6e\x01\x09\xd8\x7c\x09\xc2\xd1\x08\xbe\x17\x30\x25\x09\xb2\xc1\x7a\x58\xce\xd1\x7a\xb0\x87\x65\x91\xb0\x18\xc3\x40\x7c\x8e\x03\x35\x22\x18\xff\x86\xcf\x8a\x5c\xb8\xe9\x11\xd1\x32\x02\x89\xb1\xa3\x9c\xc7\x21\x7a\xc4\xdf\x0b\xeb\x5e\x94\x8f\x92\x29\x65\x51\x16\x66\x8e\x61\x04\xcb\x3f\xc7\xab\xda\x16\x0b\x34\x1f\x6b\x7e\x87\x8f\xa4\x05\x54\x03\x12\x66\x0e\xa4\xd4\xcd\x7f\x95\x3f\xfb\x18\x9b\x5f\x20\x8e\x8e\xaa\xd7\x31\xf9\xfb\x1e\x7b\x0c\x52\x95\x2a\xca\xbc\x98\x48\x4d\x69\xc6\xa9\x88\x8a\xc7\x95\xba\x2b\x7d\xbd\x0f\xd4\x4d\x29\x27\x07\x07\xa7\x22\x23\xa6\x86\x06\x27\x95\x53\xdb\xb7\x6b\x6e\x42\x9f\xa7\x56\xad\x12\x8f\xd6\xe5\x18\x32\x3f\x86\x9a\x57\x2a\x2b\xd1\xc9\x68\xdd\xab\x17\xd7\x98\xaf\x3d\x53\xb9\x0f\xb6\x4a\x97\x95\x47\xaa\xd1\x20\xca\x1d\x38\xc2\xe7\x0e\x1a\x21\x55\x2a\x46\xe4\x46\xeb\x4e\x92\x3c\x5f\x99\x12\x17\xcb\x8a\x84\xde\xfa\x86\xe4\x45\x3f\x76\x3f\xd9\x2c\x6b\xdb\x9e\x1b\xd8\xc9\x94\x54\x89\x39\xcc\xb7\x09\x61\xd4\x47\xf1\xbd\x63\x05\x18\x95\xee\xd3\xd7\xd4\x98\x6b\xf4\x52\x16\xb2\x85\x16\x64\x22\x4c\x42\x8d\x57\xd6\x48\x41\x77\x5e\x22\x93\x29\x53\x12\x53\xd8\x92\x6d\x3f\x65\x80\x22\x00\x5e\x41\x51\xda\x4f\x14\x8c\xdc\x96\xe1\xde\x9b\x0d\xd1\x0c\xad\x40\x9c\xd6\xa5\x60\x38\x46\x81\xc2\x68\x05\x1d\x06\xc8\x8c\xd3\x39\x67\x4e\x57\x78\xe3\x1b\x6e\x42\xd3\x92\xcb\x12\xf8\xef\x82\x84\x4c\xda\xb8\xc0\x90\x96\x30\x92\xcf\x21\x37\xd0\xa9\x80\x08\x58\x21\x41\xcc\x81\x5d\x8d\x22\xcd\x58\x21\xa7\x7a\x28\x1b\x1a\x43\x91\x1b\x31\x56\x86\xfb\x6e\xf4\xfb\xe1\x08\x78\x64\xd9\x09\xa3\x72\x4c\x84\x76\xd6\x89\xf0\x0d\x8c\x21\x65\x03\x93\xdf\xd9\x94\x25\xac\xd6\x1f\x9e\x65\x01\xfa\x43\x0e\xa3\x0f\x59\xbd\x38\xe6\xc4\x12\xd5\x25\xc3\x25\x95\x33\x42\x29\x53\x8e\x7e\xab\x3c\xca\xc1\x40\x52\xcd\xa3\xb5\x21\x31\x2c\x8e\x78\x90\x07\x4f\xb4\xf3\xa3\x85\x5b\xb5\x2d\xeb\x0b\xa7\x50\x9e\x16\xb4\x1d\x1e\x1a\xb4\xab\x9c\x3c\x0f\xdd\xfb\xd3\xa7\xd9\x31\xb8\xbc\xda\xfc\xfc\xdc\xdf\xe7\x9e\xec\xd0\x98\xb8\xec\xb4\x9a\x97\xfe\x34\xdc\xbb\x49\xe4\x96\xd0\xd2\x75\x1e\x63\xda\xaa\x46\xe9\x36\x95\xa2\x5d\x36\xdb\x18\x7b\x4a\x71\xbe\xa6\xa6\x1d\xb5\xf3\xae\xdd\x62\x41\x5d\x82\xcc\x42\xb5\x09\x3c\x2d\x14\xc4\xf4\x94\x75\xc1\xee\xc0\xff\x0c\x89\x20\x08\xac\x1b\x61\x04\x68\xb1\xc0\x09\x98\x80\xfa\xe0\xcb\x42\x43\x5e\x9a\xf4\x4a\x48\x40\x69\x5e\xe0\x15\x2c\xe0\xa6\x80\x34\x68\x57\xba\xb6\x4c\x56\x11\x2f\xfd\x67\xa1\x61\xdb\xca\x17\x46\xb2\xf2\xd3\x9e\x59\x11\x1a\xfd\xf3\x4f\x8b\x5d\x01\x2b\x03\x0e\xc4\xae\xf8\x29\x36\x4f\xff\xf7\x1b\x5a\x00\xc7\x61\xce\x2f\xb2\x84\x25\x8c\x1b\xb9\x01\x34\x87\x38\xff\x0c\xcb\xb2\x2c\xc3\x21\xae\x5f\x7b\x4e\x03\xf8\xa1\x57\x13\xde\x74\x9a\xe6\x65\x18\xfb\x05\xe7\xaa\xb7\x65\x09\x88\xf0\x88\x93\x54\xd5\xd0\x6f\x65\xe1\x2a\xf1\x96\x3a\xb8\x6b\x96\xfe\xb8\x79\xc9\x8a\x3f\x9b\x6b\x1a\xe3\x8a\xab\xab\x5f\x56\xc7\xb8\x7d\x1e\x79\x55\xe4\xdc\xe9\x9f\x27\x00\x3c\xe6\x16\xd6\xbc\x33\xf0\xe9\x89\xd5\x09\x0d\x69\xdb\x2c\xd7\x53\xab\x5d\xc9\x55\x2e\x4d\xfb\x75\xb9\x76\x6a\x1a\x21\xcf\x67\xd3\x74\xd7\xf6\x08\x1e\x2c\x08\x5f\xef\x13\x74\x1f\xb0\xe0\xbd\x52\x92\xe5\x5d\xb8\xba\x9b\x47\x0c\xb2\xba\x6c\xd0\x43\xac\x82\x15\x16\xd4\xd2\xe8\xc6\xd3\x3e\x31\x7c\x52\xcd\x8b\xd3\xee\xca\x01\xa2\x07\x7b\x84\xe9\x65\x66\xdb\x44\x39\xc3\xb8\xad\x0a\xc6\xb6\xff\xdd\x73\xc1\xa8\xb2\x88\xc2\xb5\xad\x8a\x7b\x12\xa2\x9f\x8a\xcb\x8a\x45\x71\x2f\xa2\x35\xe8\xdd\xb2\x84\xd5\x2d\xf4\x83\x29\x91\x3d\x89\xfa\x55\x28\xb3\x2c\x0a\xad\x19\x5a\x2f\x56\xe1\x18\x31\x43\x90\x53\x2c\xcc\x3b\x46\xfd\xdd\x7d\x91\x2a\xab\xa4\x52\x5f\x51\xdc\xd5\xf9\xcb\x4f\xe3\xb3\x12\x5a\x72\x91\x9a\xd4\xfb\xa3\xbe\x50\xcd\x1a\x2e\xa9\xe6\xf1\x7c\x1e\xcc\xad\x38\xf4\x04\xd2\xf9\x74\xb4\xec\xda\x21\xaf\xb4\xfa\x76\xa5\x25\x27\xab\xa8\xb9\x1a\xda\x72\x49\xe7\x84\xa7\xca\x52\x93\xdf\xb1\xa9\x47\xed\x8b\x02\x17\x9f\xdd\x2a\x81\x1e\x7c\xd0\xbb\x63\xfb\xac\x97\xaa\x89\x7f\xab\xb8\xc8\x10\x8e\x30\x56\xeb\x13\x33\xa1\xce\x52\xb3\x02\x3e\xfb\xd3\xe8\xe8\xd1\x94\x98\xf9\x79\x5b\x52\x50\x55\x93\x92\x82\x86\xf7\xb3\xea\x13\x5f\x40\xba\x92\x28\xd5\xe1\x79\xe5\xe5\x79\xaa\x6d\x77\xb7\xe6\xbc\x1a\x84\xbf\x10\x12\x90\xcf\xbc\xf6\x74\x74\xfc\x65\x25\x66\x3f\x66\x22\x63\xed\xc7\x27\xc5\x70\xdc\x2e\x3b\x94\x14\x3b\x4c\x63\xc9\x6e\x81\xd1\xf1\xfd\x49\x96\x08\x64\x5f\x80\xc0\xa2\x73\x0c\xec\xb5\x53\x5e\x15\xba\x39\x37\xf1\xfb\xed\x41\x10\x81\x48\x11\xf3\x6c\xc1\xb3\x31\x8a\x5e\x51\x33\xa5\x99\xc4\x0b\x19\x5b\x01\x9a\xc3\x4a\x0d\x8b\x88\x46\x7e\x32\x17\xaf\x34\x3f\x08\x6d\x3a\xc7\xc7\x3b\x71\xfd\xce\x81\x3a\x6c\x68\xe6\x0c\x58\xe7\xd3\x61\x25\x51\x32\xe2\x62\xd3\x69\x0e\xec\x40\x02\x33\x47\x72\x01\xef\x7d\x86\x91\x3d\xf1\x0b\xe5\xad\x9e\x51\xc3\xe6\xf6\xaf\x52\x89\x23\x1b\x01\x50\x03\x06\xf3\x0c\x0b\xcb\x07\xce\x4c\x1f\x3c\x82\x87\xf7\x8f\xd0\x67\x3a\x4e\xd1\x22\x7d\xca\xb1\x0c\xea\x10\x78\x4e\x62\xc5\x03\xe8\xda\x4f\x20\x84\xff\xab\x10\x4d\x04\xc2\xbb\x6d\xf6\xfa\xbc\x95\x30\x84\x37\xda\x38\x9b\x5f\x8b\x30\xe2\x17\x55\x01\x05\x90\xa1\x1d\x89\x3b\x64\x78\xaf\x46\x08\xc0\xbb\x45\xf7\x4c\x86\x1a\x66\x49\x04\x5f\x58\xf7\x11\x70\xe5\xac\x7b\x7d\x3c\x3d\xb0\xb3\x6e\xa2\x22\x19\x27\xc1\x8b\x7f\x65\x61\x38\x99\x9d\x35\x51\xf7\x48\xf2\x3c\xa1\x80\x1d\x34\x79\x6c\x90\xb1\x7d\xa7\x10\x6f\x77\x67\x6a\x09\x16\x31\xed\xb8\x0b\xfb\x29\xa4\xc4\x61\xa4\xc6\x28\x0f\x73\x6e\xeb\xc0\xbc\x66\x56\x13\xb4\x12\xcc\xbc\x6b\xe5\x26\xe6\x2d\xef\x03\x2f\x2c\xf6\x7b\xf5\xbc\x17\xa6\x79\x8d\xb2\x2d\xb5\x6f\xb2\x8a\x00\x28\x2a\x7c\x21\xd2\xda\x5e\x10\xcd\x12\xd1\x78\x1d\x23\x7c\x8a\x79\xfb\x56\x68\x59\x78\xb8\xfd\x2e\xec\xe7\x10\x45\x7a\xe9\x86\x56\x05\x64\x04\x53\x6d\x01\x72\xb0\xe3\x81\xd5\x83\xe4\xe6\x2f\x7f\x5c\x55\x0e\xca\x81\xbe\xb2\x62\x37\xb2\x76\xf1\xda\x45\xbd\x41\x39\xc3\x60\x7f\x58\xe6\x36\xd2\x1c\x0d\xaa\xf4\x14\x23\xc2\xcf\x6e\x7a\x63\xa6\x23\x69\x89\x5b\xa2\xc9\xf4\x2b\x24\xea\x5d\x92\x96\xfa\x81\x18\x9d\x5d\x28\x0d\xb3\x70\x64\x26\x8f\xf3\xd3\x97\xca\x04\xdf\x75\x5e\xa9\xa8\x83\xf7\xb0\x3b\x40\xfc\x6a\x66\xa2\x94\x6b\xe7\xd4\x84\x23\x95\x1d\x6e\xca\xb5\xe3\xdb\xb2\xba\x74\x02\xfa\x20\xfe\x02\x4f\x43\x5b\xc2\x8b\x4a\xa2\xe4\x98\xb8\xf3\x00\x10\xcf\xe1\x46\xb6\xb7\x2e\x19\x3a\xa7\xb8\xa5\xb0\x4a\xee\xdc\x34\xc0\xe4\x65\x45\x08\xab\x0a\xf2\x8b\x4c\x90\x01\xb1\xf5\x75\xed\xb4\xaf\xbf\x96\x56\xd5\xd7\x23\x4c\x89\xd4\xbe\xbe\x2e\xd1\x8f\xf7\xbd\x57\x1a\x2f\x9a\xc0\xf6\x2e\x69\x35\x46\x9c\xc7\x58\x6e\xc5\x91\x2c\x38\x72\xf7\xef\x26\x98\xe4\xde\x0f\xb7\x5d\xa2\x36\xc1\xd1\xab\xb5\x11\xf7\xe5\xe5\xde\x07\x5b\x1b\x1b\x16\xb4\x39\xe6\xae\xf8\x15\x8b\x8e\x9c\xfd\x26\x72\x08\x7c\xb3\x08\xbc\xed\x5b\x90\xe8\x22\x42\xeb\xf6\x47\x1b\x62\x50\x9e\x6f\xac\x55\x70\xd9\x5d\x67\x1b\xb6\x86\x94\x39\x2e\xdb\x4b\xf7\x81\xf3\x04\x93\x41\x4d\x09\x4f\x10\x41\x6c\x91\x77\xb3\x08\x2b\xf9\xa7\xe4\x46\x48\x95\x99\x34\xa2\x13\x82\x4c\x44\xeb\x9f\x4f\xb2\xe7\x63\x0e\xb7\xf8\x3e\xdc\x56\x85\x6c\x5c\x33\x2e\xeb\x8a\x93\xad\xda\x46\x11\x75\x8b\x01\x89\xb8\xb1\xbb\xf9\x91\xa3\xc8\xa9\x57\x74\xfe\x6b\x6e\xe9\x7c\xba\x4f\x2a\xa9\x4a\x59\xa5\xa6\xb2\xef\xa6\x66\x32\xed\xa8\x8c\x3a\x9a\x96\x5d\x2e\xed\x93\xe6\x4b\x7b\xa5\x2f\x4b\x89\x98\xcf\x49\x81\x10\x8c\x02\x63\x21\x1b\xb7\x97\x48\xe0\x86\xd9\x8e\x14\x92\x77\x49\xd8\x2f\x2e\x4a\x82\x0e\x5b\x4a\x72\xc6\x7a\x94\x6c\x4a\x5e\xf9\x8b\xc2\xa7\x98\x60\x8e\xb7\xdd\x40\x24\xd7\x64\xea\xa8\x30\xe5\xde\x70\xff\x7a\x53\x05\x04\x3d\x44\xf0\x64\xa2\x6c\xc1\x5a\xc6\xd9\x8a\x6b\x59\x4f\x33\xf9\xf2\xbd\x22\x0d\x30\x79\xcf\xa3\x73\x25\x38\x26\x36\x5b\x29\xdb\x8a\xb1\xd2\xf7\x34\x42\x58\x53\x3a\x6f\xeb\xce\xd1\x7c\xba\x49\xdb\x70\x6c\x18\x8e\x7b\x77\xb8\x9f\x77\x60\x07\x78\x74\x12\x67\xff\x62\xe8\xe7\xa1\xee\x50\x6f\xa8\x10\x7a\x45\x8d\x2e\x84\x0e\x7f\x08\xfd\x73\xab\xe9\x4c\x6f\x4a\x48\x6c\x4a\x27\xe9\x65\x49\x89\x65\xe9\x3c\x0f\x69\x42\x70\x50\x2e\x60\x78\x46\x12\xa9\x0f\xab\xb4\x41\x81\x6f\xfe\x71\x11\x95\x25\xb7\x37\x3d\x2e\xb8\x0d\x5a\xb3\x6d\xd9\x73\x88\xbb\x9a\xf6\x25\xb5\x35\x7b\xd5\x37\xcd\x19\xa8\x50\xbc\xd9\x6d\xb5\x1b\xd7\xbd\x44\xe7\x4f\x7d\xe6\x22\xe7\x7a\x07\x43\x6e\x04\xe4\xd7\xaf\x98\x7e\x29\xa7\xbe\x86\x4b\xa2\xec\xf2\x1f\x72\x8c\x6c\x0a\x0b\x0f\xa3\x87\x10\xde\x6b\xce\xc9\x34\x6a\x1e\x29\x1d\x9c\x05\xca\x17\xf0\xe1\xe1\x97\xf9\x39\xb2\x59\xd9\x65\xd9\x82\xec\x17\xdf\x83\x66\xab\xc6\xf8\x9e\xd7\xdb\xc3\xc3\x36\x06\x53\x33\xa2\xcd\x8f\x1a\xe1\x9d\x5e\x5b\xb8\x92\x81\x0b\xa8\x70\x23\xa2\x5a\xaa\x7b\x48\x6d\xbe\x91\x0b\x57\x84\x87\x29\x24\x24\xe1\xcc\x82\x41\x01\x0b\xe8\x76\x8a\xa6\x33\x2c\x96\x0c\xc9\x8d\x6b\x87\x50\xbc\x8c\x5c\xe5\xe6\x10\x2c\xe0\x1f\xfc\x69\xc8\x20\xc2\x3b\xa2\xc0\x9e\xdb\xc2\x6c\xa8\x55\x93\x6a\x26\xac\xd4\x18\x68\xf6\xaf\x2d\x64\xc0\x71\x5d\x21\x0b\x65\xc2\x99\x9a\x35\x01\x51\x22\xdf\xb1\xf9\x12\x77\x3d\x16\x2c\xb6\xb5\x5d\xaa\xab\x0f\x08\x92\xcc\xfe\xdc\x42\x12\x24\x9d\x55\xaa\x22\x22\x35\x91\x11\xff\x3d\x33\xfb\x44\x7f\xe5\x52\x90\xd4\x3f\xfd\xff\xb0\x54\xc4\x56\xd5\x0b\xae\x29\xbf\x7c\x8a\x96\xc7\x7a\xf5\x64\x45\xcd\x6b\x5c\xfa\xe6\xf7\xe3\xc0\xcc\x02\x43\x79\xd4\xcc\x09\xbf\x64\x79\x64\x39\x33\x91\xa1\xed\x39\x67\xe0\x82\x7b\x60\x57\xeb\x68\x19\x6a\x83\x93\x21\x6f\x0a\x4c\xf6\xef\x2c\xac\x80\x9a\xb4\x5f\x72\x2a\xb9\xd6\x55\x0a\x5e\x9d\xbb\x14\xee\x53\x2e\xeb\xac\x62\x6b\x65\x8e\x39\x6c\x53\x36\x43\x61\xfd\x78\x89\xdb\xa1\x64\xd7\xee\x92\x70\x37\x3a\x70\xea\xaf\x6c\xea\x1f\xd2\x37\xa1\x6f\x79\xf2\x22\xee\x07\x66\x85\xe6\x6a\x86\xd6\x73\x71\x6b\xd1\x2f\xe1\xc3\xba\x06\xa9\x2c\xfc\x17\xf0\xa1\xc5\x5b\xd1\xa2\xf9\x6b\x69\x4c\xe3\xce\xe3\x42\xf6\x4d\x7f\x9d\x70\xf9\x43\xb0\xd2\x19\x75\xbc\xf6\x78\x94\xf3\x9d\xf7\x26\x70\x1a\x3a\x6d\x34\x8a\x25\x7e\x97\x4e\xe0\x9c\x07\xfd\x2c\x21\xc4\xee\x75\x65\xb6\x8c\x4c\x60\x25\xbc\x3c\x97\xc8\xc8\x1b\x6f\x88\xa4\xa8\x8f\x68\xca\xbf\x0a\x88\x32\x95\x4a\x2d\x08\x8b\x7e\x36\x46\x09\xbb\xae\x2f\x5c\x77\xb4\x6c\xdd\x91\xf3\xb5\xf4\xab\xf6\x4f\xd6\x1f\xf9\xb4\xac\x52\x75\xd7\x76\xe9\xf4\xca\xb8\xa6\x67\x32\xa6\x69\x07\x7a\xcf\xb7\x4d\xcb\x7d\x9d\xff\xaf\xa7\x22\x8d\x1e\x86\x3d\x24\xfb\x2f\x87\x60\x4c\x77\xd3\x54\xfd\x84\x49\xf3\xde\xea\x91\x8f\x51\xa0\xf0\xc5\x8a\x43\xfd\x0b\x5d\x6f\xfe\x84\xdf\x8f\xad\xc8\x8a\x99\x7b\x6b\xbf\xb8\x40\x47\x53\x1e\x64\x41\x90\x4a\xa9\x31\xcd\xe4\x7b\x35\x07\xf8\xc8\xc2\x21\x46\x12\x6c\xbb\xc1\xb8\xeb\xeb\x10\xc2\x5a\xf5\xd6\x85\x31\x91\x8b\x8c\xfe\x08\x6b\x4d\x21\x09\x55\x18\x28\x24\x32\x9d\xa6\xa9\x29\x20\x27\x49\xf3\x04\xb3\xec\xf7\x59\x42\xf0\x22\xf2\x5a\x8b\xe4\x62\x3d\x61\xa7\x43\x06\x8a\x61\xf1\xa1\x15\xd2\xfb\xf3\x1e\xb8\x7e\x31\xf9\x28\x18\x44\xa2\xf5\xf9\xba\x44\x23\x0b\x69\x77\xc3\xfa\x37\x94\x92\x57\x83\xc3\x0c\x74\x15\x51\x72\x50\x67\x71\xb2\x93\xa5\xdb\xe2\xff\x8e\xd8\x5f\xa8\xdb\xd9\x5d\xa5\xbb\xa9\x5b\x11\x25\x8b\x0c\xff\x7f\x04\xa5\xa2\xfe\x08\xae\x08\x9e\x73\x4e\xe7\x18\xbd\xf3\xeb\xff\xef\xf3\x95\x95\x8d\x79\xbd\x6f\xbc\xde\xdb\xfb\xfa\x1b\x5e\xef\x58\x59\x19\x91\x11\xa0\xb1\x41\x07\xeb\x5c\x3f\x4f\x5b\x31\x31\x0a\xc1\xec\x37\x5a\x4b\xb9\xd5\xbf\x11\x8b\x76\xf8\x49\xd3\x58\xbe\x13\xdf\x9d\xd8\xd4\x96\xac\xea\xce\xec\x3d\x55\xdd\xfb\x68\x62\x4f\x76\xe7\x2f\xaa\x7e\x08\x3b\xf3\x80\x58\x44\xa2\x76\xf1\x3f\x8e\x5c\xdc\xc7\x1f\xa8\x88\xfa\x1d\x80\x38\x15\x04\x2a\x04\xf3\x5c\x98\xdb\xf8\x0b\x8b\xb3\x95\xc6\x29\x0f\xf2\x68\xa7\x90\x0e\x22\x41\xfe\xcf\xaf\x48\x7f\xc7\x91\xeb\x00\x39\x2b\xae\x8f\x4d\x04\x00\x09\xb5\x5e\xc5\xb2\xaf\x5a\x64\x75\xf7\x83\x40\x39\x7d\x81\x2b\x7e\x33\xf7\x2c\xad\xb1\x3c\xfa\x4c\x59\xc6\x58\x6f\xe2\x2c\xa7\x72\x8f\x8b\xe7\xe7\x98\x84\x7a\x8e\x5f\xc5\x54\x8b\x58\x64\x8a\x91\x08\x93\x71\x64\xd1\x3c\x99\x55\x48\x70\x11\x93\xcc\x4d\x63\xe0\x08\xa1\x8d\x48\x40\x2e\xe3\x8c\x1e\x5d\x6a\x0e\xf0\xdc\x87\xd1\xe7\x0e\x08\xd1\x57\xdf\xa7\x75\xa7\x06\x1b\x79\x27\x72\x82\xd1\x22\x12\xf3\x67\x38\x4b\x54\x51\x97\x3e\xac\xaf\xa4\x94\x4f\x7b\x4d\xdd\xd2\x41\xbd\x6b\x93\x46\xca\xa7\x12\xb3\xf3\xb2\xd3\x46\xc6\x80\x11\xc7\xb8\x5f\x88\x5b\x4b\x72\x58\xb7\xa6\xfe\x31\x58\xd2\xfd\x5e\xbc\x35\x0e\x44\x4b\x5f\x7c\x42\x4e\x7b\xc5\x38\xf8\x7a\xde\x7f\xd1\x0a\x99\x7c\x55\xdf\xe7\x26\xee\xa7\x97\x4d\xd7\xc6\xc0\x5c\x95\x79\x5a\xef\xe8\x56\x74\x3b\xf4\xa7\x33\xd7\xac\x3e\xde\x1d\x4e\x9f\xfe\x7d\xe6\x9a\xfb\x82\x07\x5b\x4a\x23\xfb\x13\x75\x01\xc5\x07\xaf\x2d\x7e\x9f\xf9\xfd\xe2\xb5\x7d\x46\xf0\xa6\x7a\xa2\x3c\x20\x45\x04\xcd\x5c\x6a\xce\x4a\x8b\x5b\xde\x92\x4a\x5c\xc4\x02\x91\x9d\xc0\xdf\x5e\x8e\xcb\x8e\xca\xb0\x6c\xf0\x41\x91\x48\x12\xb6\xb2\x24\x8e\x32\x72\x98\x60\x82\xc8\xaf\x11\x75\xa4\x26\x92\x92\x68\x3c\xc2\x05\x45\x7f\x0a\xa4\x54\xc1\xb2\xfd\x5e\x31\xec\xb4\x74\xdf\x28\x32\x3f\x12\xa9\x4f\x44\x86\x80\x9e\x8f\x82\xdd\x68\xb1\x2c\x25\x44\x10\x10\x87\xbb\xdf\x10\x19\xe2\xa1\x30\xb5\xb6\xdd\x53\x6a\xed\xe1\xf1\xa3\x14\x17\x27\x26\x6b\x5f\x0c\x8f\xaa\xfe\x62\xd2\x1e\xb1\x22\x41\x02\x62\xdd\x40\x09\x3d\x13\x14\x13\x4f\x08\x82\xc6\xd4\xb2\xa3\x14\x66\xf5\xb6\xee\xe2\x98\x15\xce\x1a\x7b\x43\x17\xf0\x9e\xa5\xc6\x64\xd8\x70\xaa\x6e\xc1\xe2\xc1\xb2\x29\x3c\x0b\x65\x21\xc4\xcb\x61\x62\xc4\xce\x44\xa4\x69\xda\xc8\xca\x26\x29\x06\x33\x71\x84\x9a\x94\xd1\x00\xef\xc9\x25\x63\x1a\xd0\xf2\xbf\x35\x87\x60\x17\xe7\xd9\x45\xfb\x8c\x03\x3e\xb7\x4a\xee\x3d\xb1\xf8\xa2\x0c\xf7\x5a\x9d\x4a\x8b\x0c\xc7\x0a\x4c\x3a\xfc\x0c\xbe\xef\x80\x00\x7b\x15\x27\x1d\x35\x66\x6b\x77\x62\x32\x14\x86\xd2\x73\xae\x06\x06\xc7\xaa\x17\x1f\x18\x74\xf9\x3d\xbc\xd8\xce\xc7\x15\xd7\x73\x9a\x03\x43\x5b\xfc\x49\xc8\x75\xb7\xa6\x7d\x5d\x7c\x33\xf3\xeb\x5d\xd6\x57\x36\xe2\x4d\x87\x7a\x4e\xd7\x64\xc5\x5b\xec\x5f\x8a\x8c\xaf\xdb\xb5\xf9\x82\xb7\xe0\x0f\x47\x47\x7f\x37\x92\x81\x23\xdc\x7d\xbd\x1b\x7b\x9b\xd2\x75\x26\x4b\xdc\x67\xca\x94\xdb\xb7\xef\x1b\x4e\x0a\x4e\x45\x73\x73\x28\x35\x38\x69\xf8\xbe\xf2\x0b\x99\xa2\xfc\x4c\xda\xdd\xa8\x56\x37\x76\x4b\xc3\x2a\x21\x6a\x01\x09\x4f\x08\x5e\x6b\x3c\x93\xe5\xac\xfb\xde\xcf\xdd\x10\x83\x8e\xfa\x13\x0f\x1a\x6c\x57\xec\x4f\x3f\xf1\x59\x86\xfe\x46\x40\xd0\xa5\xd5\xca\xb8\x75\x35\x26\x97\x76\xc9\xb4\xa4\x35\xb9\xb0\x9b\x75\x11\xbb\x7f\x8e\x01\x67\x42\x2f\x5c\xc8\xf6\x90\x99\x8f\xed\xeb\xeb\xc4\xe6\x96\xda\x43\x73\x4c\x5d\xbf\x15\x28\x78\xc8\x0c\xe7\x78\x3c\x4c\x76\xa5\x5c\x92\x9f\x99\xb6\x2b\x5b\xe4\x3d\xc8\xc3\x73\x45\x9c\x50\x2d\xfa\x22\x1b\x32\x05\x25\x80\x60\x24\x1c\x04\x5f\x92\x23\x7a\x7d\x20\xec\xb7\x6c\xc1\xb5\x53\x5a\x36\xc6\x2c\x38\x31\x55\x31\xfe\x82\xb1\x2b\x55\x62\x06\xde\x61\xbd\xe8\xdc\x8e\x62\xcd\x18\xc1\x02\x63\x0c\xf1\x11\x0a\x66\x89\x13\xa6\x0c\xb2\x92\x26\xd5\x64\xf2\xa5\xae\x00\xa0\xf2\x9d\x34\xcf\x9a\x39\x2d\x3f\x4a\x11\x9e\xb3\x11\xd5\x60\x47\x07\x6f\xf1\xd7\xe8\x0f\x3f\x14\x45\x33\x35\x46\x99\x45\x36\xf9\xc8\x81\x8b\x56\xcd\x18\xd3\xaa\xa5\x85\xe3\x1e\x1d\x60\xc0\x75\x90\xb7\xd5\x69\xfd\xd3\xb5\xf1\x1f\xcf\xaf\x56\xa1\xb3\x4b\xbf\x72\xf8\xcc\x99\xea\x1a\x7f\xbf\x91\xe4\x9e\x43\x07\x07\x7f\xb0\x87\xfa\xf9\x22\x35\x91\x5a\x7f\xdb\x50\x1a\xd3\xa8\x3d\x74\xb8\xdf\x52\x6e\x45\xc7\xa6\xeb\xd4\x28\x0e\x74\x0d\x83\x18\x6d\x3b\x68\x0c\x9f\x35\x0b\x3f\x63\xb5\x95\xa5\x61\x94\x0c\xdb\x16\xb9\x36\x96\x52\x83\x55\x1c\x68\x1e\x32\x46\xa5\x9c\x2e\x49\xa9\x54\x6f\x24\x6c\x8f\xc3\x9d\x1c\xf2\xe7\x9c\xb5\xce\xaa\x1e\xd3\xd0\xe1\x7e\x3b\x55\x5b\xbb\x2e\x69\x2f\xe9\xaf\x57\xf3\x12\xdc\xf7\x45\x18\x6a\xa3\x32\xeb\x2e\x69\xc2\x76\xea\xc9\x67\x59\x22\x23\x1b\x36\x12\x49\x18\x69\x62\xa7\x22\x1b\x0d\x19\x31\xa9\x26\x12\xf3\x38\xb0\xa1\xbf\x89\x8d\x6c\x90\x5d\x60\x09\xca\xe5\x19\xa1\x4a\xa1\xb5\x2d\x91\xcf\x43\xc3\x8b\x44\xee\xfb\x6c\x8e\x6c\x6a\x9b\xb6\x06\x69\xb5\x92\xdb\x6a\x8c\xff\xb5\xbd\xdd\xbe\x39\x6f\x65\x17\xc6\x6a\x0b\xe9\x08\x90\x8d\xdf\x80\x6c\xcf\x0c\x0c\xd4\x23\x7e\x61\x42\x98\xa7\xc2\xf2\x7d\xc3\x9d\xff\xb9\xd7\x88\x73\x1c\xa5\xa5\x94\x98\x8c\x00\xfa\x2c\x05\xd3\x22\xc6\xe4\xc6\x38\x5f\x6b\x8e\x4b\x09\xa0\xff\x8e\x5c\x40\x1a\xb4\xf2\xbb\x9b\x4f\x9b\x30\xb7\xaa\xd4\x54\xba\x8a\xc3\x15\x66\xdf\xf1\x95\x48\x73\xb6\xb9\x39\x59\xa4\x50\x04\xac\x08\x5c\xd0\x5c\x7b\x91\x5a\x36\x46\x71\x98\x3b\x12\x25\x40\x73\x9f\x8a\xa2\xa2\x28\x49\x5e\x80\x66\xc9\x01\xdb\xf3\xf1\xad\x7d\x60\x75\xda\x88\x55\x75\xb8\xf3\x85\x82\x7d\xcd\xcd\x87\x16\x6b\x01\x37\x32\x80\x25\x0f\x6e\x91\x1e\x59\x20\x1c\xaf\x54\x03\x8f\x09\x2f\x13\x88\xa0\x26\x9b\xff\x27\x92\x21\x3c\xc3\xc7\x80\x65\xd0\x56\x2c\x13\xc5\x41\x7a\x0f\xdf\x13\x30\xe4\xe1\x30\x76\xda\x77\x32\xa4\x71\x5b\x63\x60\xf4\x19\xe2\x84\x71\x92\xbd\xfc\x33\x18\xad\xcb\x5a\x88\xcb\xf0\x96\xdf\x3b\xb3\x83\xd5\xe5\x59\x9f\xb7\x79\xb3\xd2\x13\x47\x8a\x86\x13\xc7\x47\x2c\x7d\x2e\x49\x8b\x46\x35\x9c\x53\xa5\x3d\xbe\x8a\x36\xa1\xcd\x57\xc1\x80\x78\xc1\xf6\xa4\xa6\xc0\x60\x55\xa9\xf4\x06\xd0\x2b\x9a\x04\x05\xd6\x1e\xd9\x96\xca\xc6\x55\x86\xe6\xe6\x03\x5c\xb3\x61\x8d\xa5\x09\x7a\xe9\x44\x99\x52\xc6\x46\x4b\x4c\x3e\x6f\xb8\x89\x41\xc4\x4a\x73\xf8\xa7\x4b\x39\x9a\x71\xc6\xbe\x0f\xdc\xd5\x5e\xdc\x6c\x05\x7c\x94\xe1\xee\x64\x2b\xac\xfc\x8f\xa5\x42\xf2\xab\x62\xb8\x65\x0b\xdc\x42\x67\xf8\x90\x23\xa2\x8a\xa2\x22\x02\xf3\xda\x35\xef\xd1\xca\xbc\xc0\x99\xb5\x5e\x5d\x17\xbb\xa9\xa5\x31\xf6\xbb\x86\xd8\x56\x5f\x0c\x8f\xc1\x77\xb1\x8d\x2f\x49\xf9\x19\x6b\x28\x33\x41\xd6\x98\x98\xd9\x18\x4d\xfb\x7b\xca\x33\xd3\x09\x36\xf1\xf4\xc6\x68\x4d\x23\x55\x7a\x44\x0c\x36\x6a\x56\x4f\xbf\xe2\x96\xf2\x41\x12\xf9\xdd\xee\xef\x1c\x7e\x0d\x5c\x95\x9f\x15\x1d\x3c\xdc\xd3\xd8\xe0\x31\xde\x74\xd6\xb5\x3b\xed\x5a\x6d\x2d\xd2\x6f\x08\x5b\x5b\x3f\x4f\x37\xd3\x64\x18\x9a\x59\x1a\x8c\xf5\x7b\x08\xb6\x9b\x15\xb4\xe2\x1a\xad\x66\x04\x35\x52\xab\xd5\x8a\x3a\x26\x52\x16\xa5\x17\xf4\x51\x32\x6b\xa1\x22\x52\x13\xa9\x17\xd4\x88\x8e\xd4\xbc\x72\x0e\x9c\x0b\xc4\xc4\x8c\xde\x56\x4a\xe7\x9c\x23\x94\x58\x8c\x99\x97\xd3\x2f\x33\xa6\x6a\xbc\xf0\x6c\x71\xc2\xfc\x49\xbe\x39\xa1\x0a\x2d\xbe\x79\xbc\x4b\x98\xdb\x6f\xe4\xd4\xc8\x96\x86\xbc\xe7\xee\x9e\x4b\x31\xcc\x8a\x07\x9c\xb3\x86\x8a\x56\xfb\x55\xda\x2a\x1a\x14\xaf\xaf\xeb\x2f\x19\xaf\x3c\x36\x0e\x7a\xe5\xb7\x5c\xfb\x21\x38\xea\x5b\xfc\x97\x92\xca\xcd\x9f\x8e\xbf\x34\x75\x6c\xee\xe8\xb8\x67\x97\xaf\x63\x11\x7f\xbf\xfa\xa1\xda\x3b\xde\x0b\x9b\x98\xcd\xf1\x45\x78\xe3\xbb\xd0\xf5\xf9\xe0\x75\x78\xd3\x85\x5d\xf4\x62\x87\xaf\xf8\xfb\xc7\x5e\xc7\xeb\x82\x6f\x5e\xe0\x2a\xbb\x79\xd3\x7a\x1c\xa7\xb3\x9c\xb2\xa3\xc9\xf6\x5b\xad\x2c\x9e\x04\xcf\x62\x4b\xbe\x70\xf4\x80\x22\xbf\x08\x68\x16\x8d\x6c\x71\xb4\xe6\xf7\xaa\x68\xa5\xfc\x0c\xf0\x7c\x24\xca\x9e\x19\xf8\xf4\x87\x27\x98\xdd\x92\xc4\x99\x7e\x7f\x66\x68\xc2\xf4\x93\xcc\xa1\xd0\x84\x19\xfd\xba\x1f\xae\x0d\xe4\x1f\x98\x03\x9b\x37\xdb\x63\x85\x42\xe1\x7b\x5b\xab\xeb\xca\x9e\xe9\x17\xfa\x41\xc7\xb8\xad\xc6\x5c\x93\xad\x61\x89\x82\xb8\x45\xdb\x81\x43\xd0\x68\x89\x7f\xd1\x7b\xf6\xa7\x9f\xd6\x5e\xb6\xe8\x48\xc1\xa4\x48\x71\x4a\x32\x9e\x5a\x5b\xfb\x5e\x6b\xbf\x74\x84\xdb\xbc\xa9\xaf\xaf\x44\xfd\xdf\x21\x34\xc3\x62\xd9\x5a\x63\xb1\x92\xd6\x56\x01\x4a\x3f\x2f\x4c\x3b\xb1\x23\x36\x6c\xf7\xf6\x02\x7d\x5c\x5c\x90\x5f\x88\xdf\x90\xb7\xaf\x72\x7b\x93\x36\x63\xc3\x1a\xed\x8e\xc6\xa6\x1d\x09\x05\xc9\xb1\xcb\x82\x64\xb2\x3c\x69\x57\xc0\x7d\x27\xee\x5d\xb1\xfb\xaf\x83\xe6\x9a\xf0\x15\x6f\xbc\x2c\x5b\x13\x6c\x09\xd3\x26\xa7\xa7\xc4\x06\xb7\x34\xba\x33\x1b\x76\x5f\xd4\xc5\xa6\x3f\xf9\x32\x95\xf2\x64\x12\xa2\x63\xfe\xf0\xea\x9a\x9e\xb4\x60\x48\xb6\x7d\x0f\x83\x2e\x56\xc5\x2e\x5b\x16\xa8\x91\xae\x0c\x6c\x0c\xb8\x4f\x38\x43\xef\xfe\x6b\x4f\xdb\xea\xfd\x31\xab\xf3\x99\xd1\x9b\xa9\xa7\xaf\xdd\x55\xfa\xff\x57\x4a\x12\xe2\x7e\x17\xcb\xd3\xfe\x70\x3a\xe9\x14\x5a\xb1\xab\xdb\xfc\xb5\x06\xcb\x9f\xfb\x90\x42\x8d\xd9\xca\x94\x78\xf5\x11\x79\x78\x7a\xba\xf2\xb1\x15\x12\x94\xf5\xbf\x20\x96\xfe\x58\x35\x86\x3e\x8f\x2e\xd8\xcb\xba\x14\xd0\x75\xaf\xaa\x2f\xb5\x5e\xfd\xf5\xd3\x0f\x9c\x54\x1b\xa3\xcd\x19\x76\x03\x19\x05\xf3\xf3\x79\x5a\x03\xd7\x7c\x2f\xd9\xb7\x4f\x24\xaa\xd5\xf5\x3d\x6b\xd5\x15\xf9\xf9\xdd\x96\x64\x54\x83\xae\x9a\x22\xb7\xc5\x7b\xd5\x5e\xb6\xa5\xc5\xfe\xc7\x97\x33\x64\xc6\xdc\xf5\x37\x28\xaf\x81\xa5\x81\x56\xd9\x15\x03\xc6\x97\xd2\x78\x85\xe1\xff\xd7\x0c\x73\x0a\xbb\x8a\x7e\xd8\xa8\xe0\xd3\x5e\x1a\x58\x2b\x37\x5c\xab\x59\xd7\x98\x1f\x57\x2c\x1b\x82\x06\x05\xe0\x1c\x06\x5a\x45\x62\x91\x60\x0d\x6c\x84\xc5\x1c\x27\x27\x3c\x28\x07\xa3\xac\x15\x70\x91\xcc\xb2\xac\x1b\xe1\x10\xc2\xd3\x82\x5f\x94\xa6\x8c\x3b\x91\x73\x51\x5b\xcb\x79\x04\x24\x48\x40\xd2\x84\xb8\xf9\xd0\x1c\xe1\x0e\x90\xd2\xa5\x7e\x8e\x70\x2e\xd7\x43\xb3\x16\x25\x72\x2b\xc7\x71\x73\x1a\x1e\x28\x3b\xe7\x02\x4b\x0e\xc1\xc1\xa4\x18\xd3\xa6\x2d\x55\x70\x98\x33\xcb\x5d\xb8\x1c\x77\x5e\x11\xe2\xc8\xc0\xae\x15\xaa\x7b\xb1\x43\x7a\x9c\xb9\x21\x3f\xaf\xaa\xbb\xe7\x41\xfa\xfa\x55\x8d\x39\xd2\xf8\x23\xaa\x23\x9a\xb7\xa3\x36\x32\x6e\x5d\xec\x3a\xc9\xfe\xf5\xfa\x8c\xfc\x9c\x78\xe5\x1f\x32\x98\xb1\xde\x37\xa7\x4d\x15\x46\xee\x35\x55\x3b\xb7\x45\x58\x72\x61\x06\xbb\xef\x1a\x91\xf1\x83\x46\xce\xcb\xc1\xbd\x03\xe6\x2b\x0b\x05\x46\x64\xac\xe9\xff\xa5\xa9\xee\x15\x17\x8d\x7c\x4e\xbc\x49\x66\x66\x24\xca\x70\xfc\xf9\xd6\x4f\xd0\x7d\xa3\x5e\xe2\x05\x16\xa7\xcd\x59\xa7\xbf\xe0\x66\x84\x51\xb3\x5c\xda\x1e\xf6\x91\x54\x94\x22\x86\x33\x0d\x41\x67\xb0\xce\x5d\xde\x56\x60\xda\xde\xde\x8b\xdd\x17\xa4\x59\x04\x23\x09\x0d\xed\x71\xa9\x58\x24\xaf\x32\x89\x56\x37\x50\x19\x37\x31\xfa\x50\x9c\x70\x6b\xa7\xb9\x48\xd9\xa7\x81\xbc\x4a\x08\x36\x33\x54\x5c\x37\xd1\x83\xe8\xc3\x5a\x70\x88\x0b\x95\x50\x9e\x78\x84\xc5\x94\xa4\x99\x97\xf1\x6c\x0f\x9b\x40\x1a\x73\xc5\xf0\x12\x1e\xef\x36\x5b\x09\x5e\xdb\x5a\x6f\x9b\xa2\xef\xb1\x7b\x7a\x95\x78\xcb\x53\xbd\xc4\x5b\x1a\xec\xe5\xbc\xa3\x7b\x91\x11\x09\x9b\x73\xe3\x70\x5b\x14\xfc\xf5\x7c\xe0\x30\xc3\x7e\x4d\x88\xb2\x71\x4a\xec\xbb\x66\xdc\x82\x80\x05\x82\x67\xf8\x20\xd2\x27\x9e\x53\x3d\x5f\x5f\xbf\x6c\xe7\xe6\x0f\xdf\x13\xcb\x16\xed\x04\x80\xb2\x31\x59\x62\xd2\x54\x52\xa2\x20\x6f\xb9\x59\xaf\x1f\x77\x4f\x58\x8d\x67\x24\xa8\x36\x59\x05\x46\x36\x46\xf7\x25\x5e\xef\xcd\x12\xb5\xe2\x9b\xd0\x60\xc8\xea\x91\xa2\xe1\xd5\xb0\xf3\xc5\x28\x5f\x8b\x8c\xc8\x05\xfb\xfa\xfb\xd8\xd5\x16\x74\x2f\x63\x8f\x3b\xac\xa6\x6b\x03\xa2\x2d\x40\x0e\x90\x7f\xa5\xd0\x4d\x6d\xde\x5c\x5c\xcc\x15\x3d\xf1\x33\xa2\x38\x2d\xce\x88\x10\x44\xd4\x54\x9c\x62\x4e\xa1\xf3\xcc\x79\x2c\x6f\x0f\xe7\x9e\x3b\x3d\x3d\x33\x73\xcc\xaa\x2d\x5e\xe5\xbe\x36\x34\x47\x3a\x5e\x77\x0e\xcf\x21\x0c\x91\xdc\xe5\xad\xfa\xf2\x4d\x17\x66\x1d\xf7\x70\x68\x4e\xa1\x2d\x60\x84\xc7\xea\x16\xd8\xe5\xf2\x9e\x39\x63\xb1\x78\xb5\x20\xdc\x98\x9c\xce\x3a\xb7\x07\x9d\x2c\x5a\x4e\x35\x0f\x16\x6a\xac\x6d\xd6\xdb\x80\xdc\x62\xc4\x70\x4f\x45\x5d\xf3\x0e\xde\x87\xc8\xc8\xdb\x47\x1e\x06\xdd\x63\xb8\x64\x98\x35\x38\x0d\x89\xe3\x6d\xde\xb6\xcf\xdb\x16\xda\x4c\x9b\xbe\x38\x8c\xac\xa6\xe2\x8b\x0a\xd9\xec\xec\x7e\x45\xcc\x8d\x31\xbf\x0e\x1b\x17\x60\xdb\xbf\x0d\xa2\xc1\xf9\x8e\x25\x19\xed\x8a\x91\x65\x7e\xc3\x07\x9a\x49\xde\x6e\x1e\xa0\xb6\x41\x8f\x5d\x3c\xed\x65\xbd\x20\x1b\x17\x9d\x75\xe7\x37\xa7\x3c\x4b\x53\xf9\xee\xc4\xa6\x74\x13\xf3\xb4\x42\x54\xcc\x1a\xfd\x7e\x9a\xf4\x26\x70\x1a\xa9\xda\x97\x3e\x57\xe1\x59\x1e\xd9\x78\x3c\xf3\x4d\xcc\x3b\xdb\x54\x31\xb4\xa0\xfc\xa3\xb3\x13\xf3\x6c\xfc\x52\x3c\x20\x12\x5e\xfb\xae\x26\x58\x9e\xf1\x50\x77\xe5\xf3\xdd\xc6\x8d\x23\x8c\xc0\x30\x21\xdb\xfd\x7c\x65\x77\x65\x2c\x20\xaf\xa6\xa6\x83\x44\x1e\x61\x46\x67\x65\x1d\x66\x31\x8b\x0f\x67\x3d\x5c\xd9\xfb\xad\x1b\xad\xfb\x0f\x54\xb6\x7a\x49\xcf\x60\xb7\x15\x07\x29\xa1\xd3\xfd\x9c\x3d\xaf\xba\xa4\xf2\x97\x40\x89\x3f\x6c\x30\x9f\x0f\x68\xac\xe0\x7a\x3b\xb8\xd3\x22\x7e\xf9\x17\xf9\xcd\x9a\x9e\xbf\x47\x93\xff\x45\x83\x37\xf8\x01\xef\xac\x2c\xd6\x65\xa5\x8b\x97\x04\x7c\xfa\xa3\x4f\x16\xab\x90\xe1\xed\x86\x7f\xd1\xcb\xce\x2c\xdb\x91\xdd\x83\xab\x37\xb7\x57\xb3\xc0\x75\x99\x24\x55\x91\x4b\xd5\xa4\xce\x61\xa6\x18\xce\xc0\x73\xce\x89\x62\x9e\x98\xa9\x04\xe1\x23\x27\x76\x6e\x74\xd9\xd1\xbd\xf1\xe1\x81\x93\x4f\xec\x43\x9f\x6b\x21\xb8\x3d\x1e\x7f\x58\xac\xab\xef\x6f\x00\xb9\x92\x33\x17\x79\xdf\x8c\xf3\x0b\xa1\x49\xdf\xda\x6a\x7f\xf8\xe9\x17\x9e\x7b\xee\xda\xb3\x72\xdf\xa1\x9b\xe0\x79\x8b\x84\xc3\xf3\x73\x8b\x71\x9e\x83\x56\x60\x44\x14\x8c\x01\x42\x3b\x05\x9a\xed\x04\xf7\xce\x52\x70\x15\x6b\x5a\x83\xd4\x4d\x78\x9d\xb6\xa0\xca\x35\x0a\xce\x92\x2b\x56\x68\xc6\x29\x52\x45\xc0\x84\xb7\x99\x9a\x5e\x8f\x82\xf9\xee\xad\xd6\xa8\x2a\xd1\x65\x55\x07\x6f\x69\x15\x5d\x58\x80\xf5\x89\x80\x69\x06\x33\xc8\xda\xbb\x33\x23\x1b\x91\x61\x26\x55\x96\x2a\xa4\x6a\x52\xdd\xe0\x62\x7e\xe2\x1f\xd1\xe9\x96\x87\x1a\x0f\x66\xbe\x25\x0f\x89\x92\xcb\x32\x67\x68\x28\xfb\x88\x89\x32\xd5\x1b\xb7\x84\xcf\xa6\x55\x6a\x22\x25\xbf\xee\xdd\x7b\x9b\x8e\x6c\x91\x25\xca\x26\x2d\xcd\xb2\xb0\x22\x00\xb1\xd1\x58\x0a\x05\x23\xec\x18\x67\x18\x05\xa2\x67\xa5\xfc\xd8\x2f\x1a\x19\x85\xc8\x71\x9c\xa8\x60\x18\x04\x93\x20\x94\xa8\x43\xc9\xb6\xeb\x05\x44\x19\xf3\xd3\xff\xfe\x67\xac\xc2\x4a\xbe\x5c\x40\x87\x55\x83\x52\x8f\x74\x50\x05\x65\xd5\x72\x7d\x19\x3a\xbf\x5e\x91\xe2\xf3\xa5\x28\xfc\xe5\xd1\xd7\x83\x14\xdb\xf1\x5b\x8a\xa0\xeb\xd1\x05\xfa\x39\x71\x57\x41\x7d\x10\x84\x28\x4b\x05\x7d\x40\x49\x31\xf6\x55\xfb\x0d\xc3\x48\x9d\x54\x9f\x81\xc1\x46\x62\xb7\x8e\x35\xdc\x2a\x58\x57\x14\xf9\x62\xe7\xe3\x4e\xd9\xd4\xa7\x3d\xa4\x91\x35\x1c\xf4\xc3\xe8\x90\x0c\x64\x25\xd3\xf7\x45\xb4\xce\x55\xa4\x25\x2d\xf4\x42\x73\xd4\xa8\x8b\xf6\x88\x76\x54\xae\x29\x91\x5c\x96\x2c\x4f\xb3\x8c\xbf\x12\x7f\x4a\x13\xb8\x7c\xf9\x1d\x0c\xfa\xbc\xb0\x9a\x77\x6a\xcf\xe0\x1d\x08\x7a\x39\x83\x81\x23\xe4\x5f\xbb\xfe\x25\x0a\x34\x68\xe1\x6b\x29\x40\x1b\x68\x25\x85\x49\x90\xb9\x2e\x10\xf6\x42\x6e\x53\x61\x0e\xfd\x8d\xca\x8b\x47\x46\xc7\xaa\xa8\x4a\x38\x07\x56\xae\x34\xee\xac\x33\xef\x5c\x1a\xa8\xb7\xe0\x3a\x03\x4b\x3b\x61\x4f\x6c\xb9\xa9\xc3\x90\x62\x1e\xeb\x0e\x4f\x68\xdd\x58\x6c\x7c\x6d\xcc\x11\xf2\x00\x73\xd7\xf7\x07\xb4\x9a\xfa\x2b\x67\xc4\xe9\xb8\xbf\x9d\xa3\x38\x44\xfd\xc8\x40\x57\x57\xf7\x94\xee\x19\x9c\x4d\x9b\x75\x38\x5c\xde\xe5\x9a\x95\x99\xf1\x14\x64\xb3\x70\x8e\x76\xbf\x38\x45\x55\x70\x46\x91\x02\x78\x2b\x8c\x40\x04\x00\xdd\x34\x21\xba\xf4\x82\x01\xb7\x0e\xef\x4f\x2d\x8a\x4e\x26\xb2\xd8\x32\x1f\x11\xc9\xa2\xd7\x7e\xd3\xce\x2c\x30\x18\x57\x7d\x53\xcb\xba\xb0\xd1\xd5\x25\xb8\x61\xf0\x4c\xf4\x04\xd2\x12\x97\x5a\xdf\x40\xa7\x47\xc4\xf5\xeb\x98\x10\x8d\x1c\xb1\x14\x19\x52\xd4\xe8\xbf\xbe\x47\x1f\xf5\x92\x02\xbf\xd4\xf9\xe4\x93\x8b\xd1\x63\x3e\x4b\xa8\x37\xb4\xd6\x37\xe6\x7f\x4e\xd9\xda\x3a\x56\x39\xe6\xb0\xb3\x7c\x56\xbf\x81\xf5\xdf\x4c\xe3\x39\xbd\xbe\xbd\xf9\xd8\xcc\xa4\x79\xc1\xc8\xda\xae\x22\x13\x46\x06\xbe\xf1\xb9\xc7\x31\xd7\x1a\x6c\xa0\xc7\x02\xd6\xc7\x03\x72\x8c\x73\x8b\xd2\x98\xdf\x7d\x95\x4b\xe5\x4a\xf1\x42\x6d\x5b\xbc\x8c\x6c\x66\xdd\x6f\xbc\xee\xb7\xdb\x19\xe1\xe1\x65\xa1\xbb\x46\x32\xd3\xdf\xbb\x0b\xab\xef\x2e\x03\xbb\x62\x09\xa7\xee\xf7\x9d\x30\x2a\xdb\x07\x4e\xcb\xca\xdd\x5f\xa4\x99\xa4\x64\x63\x22\xce\x0d\x10\x36\x0e\xde\xbe\x7d\xf5\xa9\xca\xfd\xbe\xf2\xea\xf6\x5c\xd2\x39\xe0\x21\xb1\x43\xff\xe8\xa3\x23\xc3\x64\xb8\xcf\xb7\x41\x1f\x7d\xaf\xfb\x1a\x0d\x39\xa4\x1b\x7f\x6c\x6b\x54\x06\xae\xd9\x80\x75\x57\x75\xb6\x52\x25\xa7\xbc\xae\x2d\xc1\x55\x82\x44\x20\x46\x96\xd6\xb1\xff\xb1\x10\x3c\x02\x8d\xe5\x56\x4e\x6e\x95\x8b\x98\xc3\xc2\x37\xf7\xff\x6d\xda\x38\x25\x3b\x8a\x44\x1a\x8c\x3b\xbc\x66\x35\x53\x94\xcc\x9d\x8c\xbb\x2f\x6d\xec\x63\x2b\xf7\xb3\xc9\x25\x17\xe3\x98\xe4\xe2\x8b\xf1\x92\x79\x89\xc8\xb3\xe2\x2f\x16\x27\x33\x71\x17\x4b\x24\xf4\xb9\x62\x11\x55\x44\x7f\x4a\xe2\x60\x77\x07\x7b\xe2\xbe\xad\xf2\x94\x73\x3b\x6a\x50\xcf\x8e\xec\x65\x67\x96\xd1\xff\x2a\x7d\xcb\x88\xab\x16\x3f\xf9\xf0\x34\x16\x3e\xac\xfe\x08\x00\x6e\x31\x48\x41\xba\x9a\xc6\x99\x0c\xdb\xa4\x71\x1b\x96\xe4\x93\x0a\x9f\xaf\xae\xae\xb2\xd2\x47\x0f\x45\x15\xb0\x98\x68\x9f\xde\x9f\xe6\xe9\x55\x8f\x3c\xb2\x8a\x86\x0f\xc3\x0e\x6f\xcc\xf3\x05\xcf\xc7\xf4\x3e\x77\x02\x6f\xbf\x49\xcd\xa4\x8c\xda\x5a\xbe\xce\x2c\x41\x80\x23\xc5\x2b\x1f\xaf\x0f\x97\xd9\x56\xfc\x7c\xfd\xc7\xb3\xfb\x07\xc0\x64\xa6\x10\x89\x7a\xb1\xb0\xdf\xea\x40\x0e\xcd\xa7\xd4\x9c\x7e\x8e\xfa\x54\x83\x35\x55\x78\x43\x60\x64\xed\xd8\xc6\x9e\xc2\xf3\xe6\xe6\xfb\xf5\xf4\x62\xc3\x5d\xfe\x23\xae\x19\xfb\xf4\xd3\x85\x0b\x36\x3a\xfd\x9b\x6a\x5d\x19\x74\x57\x55\x16\x32\x29\x4b\xfc\x2a\x1f\xae\xa1\x68\xc0\x35\x8f\xa5\x97\xc6\x1b\x8a\x4d\xf1\xe9\x8f\xc5\xc2\x59\x43\x42\xd3\xfc\x8d\xfc\x17\x87\x8e\xc4\xc2\x29\x59\xe7\xb3\xca\xb3\xe2\xc4\xb8\x2c\x3f\xf7\xfc\xe9\xb3\x97\xec\x6e\x9b\xfb\xd1\xba\x78\x64\x41\x36\x16\x21\x40\x1c\x9c\x81\x87\xa9\x8a\x16\xa3\x43\x36\x62\xd3\xb2\x9c\x21\x94\xe3\xeb\x09\x5e\xd7\x44\xc7\x4c\xe2\xe9\x86\xe9\x5c\x5a\x66\xc3\x84\x97\xeb\x2a\xc0\x05\x9b\xc7\xb6\xb1\x3d\xd1\xbf\x0a\x17\xa2\x12\xdf\x55\x06\xfa\x09\xf0\x54\xc3\x54\x6e\x18\xd5\xf3\xff\xd8\x0b\xda\xf2\xe4\x33\xd1\x7d\x6a\x8f\xba\xd2\xff\x25\x93\x84\x60\x78\x65\x91\x2e\x2b\x4d\xfc\xbb\x80\xcf\xcc\x7e\xf2\x5e\x15\x4a\x8a\xf8\x36\xef\xa9\x78\x49\xd7\x40\x56\x0f\xaa\x6a\xef\xa8\xa6\x2d\x3b\x88\xd5\x2b\x4c\x15\xe9\x43\xea\x82\x56\xd6\x86\xd6\x61\x00\x18\xff\x80\x5b\x22\x3d\xbc\xee\x09\xa3\x28\x5c\xf2\xcf\x06\xd6\x28\x68\x78\xc4\x2b\xda\x98\x37\xfc\x28\x80\x8c\xc7\x6a\x05\x09\x2c\x11\x03\x67\x0c\x0c\x62\xa1\x06\x03\xce\xb1\x68\xd0\x1a\x19\x70\x9b\x1c\x69\x78\xde\x5a\x9f\x36\xae\x73\x0b\xf9\xe5\x5f\x7e\xe9\xf5\xcb\xf0\xb0\x17\x4e\x0c\xe2\x4c\xc3\x12\x88\x3a\xed\x85\xf6\x77\xe1\x5d\xd7\x32\x64\xb5\x22\x86\x31\xba\x19\xb4\x98\x2e\xc7\xcc\xcb\x38\xc6\x01\x80\x05\x2f\xd7\x6a\xcd\x99\xeb\xbd\x97\x89\xe8\x28\xb0\x28\x60\xe1\x26\x0a\x88\xb7\x62\x01\x43\xd1\xb8\x91\xd2\xbf\x1e\x3f\x20\x14\xd9\x59\xd4\xab\x8a\xcb\xbf\xb3\xa1\x43\xa9\x89\x09\x93\x89\x14\x38\xaf\x99\xf1\xae\xee\x2f\x1b\xaa\x8a\xad\x05\xf3\x55\xd0\xfe\xf1\xc3\xd5\xca\xed\xf0\x33\xab\x3e\x53\x20\x23\x5c\xdc\x3b\xad\xbf\xfd\x61\x02\x9c\xc9\xf4\xcd\xe1\x61\x7d\xd4\xc8\x30\x44\xeb\x9d\x78\xc7\x83\xe1\x04\xd6\xd6\x01\xf2\xaf\xe3\xb7\x20\xd9\xf7\xce\x6e\x25\x70\x5c\x8c\xf5\x1d\xfe\x4f\x52\xb6\x50\x98\x7d\xf5\xd1\x2f\xad\x3a\x56\x7a\x61\xed\x09\x1f\xef\xfb\x1c\xb7\x60\x51\x20\x85\x65\x61\x41\x0a\x72\x9b\x1f\xce\x3c\x27\x8d\x20\x62\xe0\xc0\xde\x06\x5a\xae\xeb\xef\x78\xf4\xb1\xb4\xb3\x60\x01\x3e\xfa\x42\x82\x11\xd9\x90\xfa\x22\xea\x44\xa5\x7c\x4d\x9d\xcf\x77\x7b\x97\xf8\x1e\xb6\xa6\x57\xaf\xd7\xda\x7b\xda\x19\x42\x15\xdb\xc2\x5c\x50\xcb\xbe\x28\xfc\x22\x49\x76\x1e\x3c\x58\x5e\xde\xb7\xb0\x65\x4b\xac\xf1\xd7\x50\x5f\x7e\x3e\xf5\x70\xdf\xcb\x60\x02\x9a\x40\xfe\xee\xb1\x37\x93\xdb\xb1\x07\xc3\x68\x92\x56\x0e\x54\x2d\x4f\x2c\x43\x79\x8e\x0d\xa4\x07\xf9\x97\xf5\x5d\xbc\xfe\x90\x0b\x5d\x4e\xbb\xef\x4f\x75\x57\xd6\xe4\x9a\xe3\xd3\xb9\xd3\x3c\xd6\x42\x25\xfe\xb5\x0a\xae\xec\x32\x69\x50\x78\xaa\x31\x3d\x7b\x3f\xc8\x44\xaa\x89\xb5\x94\x66\x65\x98\x30\x75\x5d\xf9\x93\xb1\xa0\x3d\x73\x24\x33\xb8\x2c\x89\x51\x38\x1c\x6f\x06\x76\xf8\x60\x2b\x0a\x7c\x29\x33\x3f\x66\x40\xfd\x64\x6d\x1d\xf5\x39\x9d\x3e\x78\x38\xb3\xe0\xf5\x2e\x84\x35\xac\xc4\xdb\x6d\x33\x4a\xc1\xca\xb9\x44\x89\x81\x22\xd0\x0c\xc9\x98\x2e\x46\x6e\x5e\xf3\x66\xc1\x2c\x0e\x8b\x26\xc9\x15\xd1\x61\x6d\xc6\xba\x2c\xcc\x62\xf6\x75\x82\x75\x2f\xe2\xb7\x39\x8e\xb7\xb2\xcb\x8f\x59\xd4\xf2\x27\x8f\xda\xd2\xde\xce\xf3\x26\xbb\x03\xc8\x63\x07\xa6\x87\x36\x29\x62\xc3\xda\xa2\x7a\xac\xb1\x27\x74\xb4\x22\xab\xb2\xae\x9d\xdd\x18\x5e\x8f\x0b\xad\x09\x6d\x08\x22\x6b\xb5\x71\xf9\x17\x37\xc8\x9d\xf6\x26\xcc\x1a\x4d\x45\xee\xd4\xdd\x9b\x49\x05\xc4\x27\xcc\xd7\x14\xd7\xd7\x89\xd4\x3d\x43\xba\xdd\x87\x9d\xce\x79\x26\x2c\xad\xee\x4d\x6e\x70\xdc\x3a\xce\x42\xf4\x3e\x33\x43\x74\xc9\xa8\xca\x62\x3f\x97\x6e\xa4\x37\xdd\x15\x58\xda\x7c\x73\xb1\x75\x5e\x08\x32\xa3\x7e\x64\x2b\xf5\xc4\x56\x64\x25\xbc\xfe\xb6\xe1\xbe\xde\x69\x36\x5e\x23\x0b\x49\x4a\x69\x8f\x70\x2c\xf0\xc9\xda\x7a\xfd\x4b\x9d\x63\x63\x5d\xa8\x6e\xe7\xce\x3a\xf9\xa2\x3e\x41\x58\xdd\x1d\xa5\x99\x42\x1d\x5e\x72\x81\x8d\xa2\xa2\x18\xe6\x73\x81\xeb\x36\xf2\x60\x8f\xdc\xd2\xb3\xdf\x8e\x0c\x2b\xd2\x15\x80\xc1\xc9\x96\x9b\x9c\xf6\x81\x2a\xf8\x4b\x19\x9a\x0e\x39\xe4\xb7\x56\xf4\xf5\x1a\x15\xa5\xa4\xe3\xb7\x57\x71\x70\x54\xeb\x81\x03\x2d\xdc\xdf\xda\x62\xab\x24\x85\xf4\xb5\x0b\x49\x2e\x4b\x30\x42\xe5\x77\x65\x68\xd5\x13\x6f\x98\xa2\xb2\x7f\x1f\x16\x5d\x51\x2c\xc3\x5a\xab\x17\xf4\x22\xb7\x4a\xf8\x4c\x92\x4b\x96\xf1\x9e\x0f\x0e\x88\x48\xc0\x22\x16\x66\xfa\x11\x2d\xcc\xa5\xca\x60\xf3\x0d\xdf\xab\xdb\x03\xf9\x1d\x7c\xba\xef\x5b\xfb\x23\x7f\xe9\x48\xd1\x88\x1d\x39\xcb\xbe\x0d\xd9\xac\x1b\x7d\xa5\x34\xe1\x1a\x57\xf8\x16\x82\xc7\x83\x27\x38\xc2\xf7\xe1\x8b\xa7\x6c\x53\xaf\xac\x4f\xad\xb6\x3b\x94\x44\xe9\x14\x04\x4b\xc2\x73\x55\xf6\x7d\x17\x8e\x3e\xd0\x63\x77\x72\x5d\x41\x77\x55\x37\x87\x20\x8f\x91\x29\x89\x29\x91\x1d\x8e\x04\xd4\xa6\xdd\x64\x69\xf9\x5f\x11\x9f\x8d\xc1\x95\x43\x87\x60\x32\xf3\x3c\x0c\xad\xd9\xe9\xd1\x1d\x8c\x9c\x15\x92\xfe\x6f\x5a\x6b\x4f\x8e\xc8\x86\xe6\x7e\x5f\xbb\xbf\xde\xf8\x68\xac\xae\x32\xf1\x9e\xd4\x81\xd4\x80\xc6\x1b\xe8\xf6\x9a\xec\x3b\x9f\xd1\x5c\x17\x8b\x27\x32\xff\xc0\x69\x3f\x45\xda\x0f\x0b\x0d\x71\x06\xd9\xcb\x8d\xc5\xe9\x7f\xfb\x7b\x57\x31\xf0\xa3\x3e\xb3\x79\x9b\x92\x28\xf7\xc7\x2c\xc4\x04\xc4\xf8\x77\x06\x1e\x55\xe6\x18\x0e\xd6\x99\xdf\x90\x6f\x9f\xff\xab\xf3\xb4\x41\xdf\x23\x9d\xd1\xdb\xdf\x1e\xed\xfa\x29\x6a\x9c\x3b\x63\x32\xd8\xf1\x9f\x21\x03\x6f\xec\xc4\xce\xfa\x91\x73\xd3\xa8\x7f\x87\x3e\x28\x1d\x3f\x5b\x51\xe1\x63\x6d\xcc\x17\xbe\x57\x01\xb4\x9d\x75\xfa\xdd\xbe\x69\x97\x49\xe1\x9d\x52\x27\x9d\x96\x0e\x99\xcd\x8c\x95\x71\xda\x50\xa2\x01\xba\x68\x59\x82\xa0\x1f\xa4\xc7\xd2\x8e\xa2\xf5\xd7\xb8\x71\xc7\x0b\xdb\x19\x81\xd1\x9f\x79\x21\x39\x30\xf9\x05\x53\x60\xc2\xf8\xd3\x6a\x5b\x09\x89\x79\xf7\x86\xd4\xa7\xc1\xc5\xcf\xcf\x2f\x4c\xcf\x1e\x9c\x15\xa7\x6a\xa7\xfc\x4b\x4b\x9d\x1d\x31\x1d\x1d\x62\xdd\xfa\x2f\xe8\xbe\x00\x4c\x91\x17\xb8\x45\x7c\x18\xdb\x5e\x26\xdf\xac\x40\xfe\x45\x03\x93\xc6\x2c\xf9\x67\x15\x83\x8b\xfe\x96\x81\x97\x97\x9b\x3c\xe2\xf5\xd7\xfd\x23\x33\x7d\xcb\x9c\xa6\x38\x8d\x47\x9c\xce\x5e\x1f\x39\xf6\xfe\x70\xe6\x82\x8c\x0f\x0f\xcb\x97\x05\x64\xed\x89\x96\x8d\xc9\xc2\x6b\x76\xdc\xc9\x80\xd7\x51\xd9\x57\xf5\x8c\x56\xde\x3f\x87\xa6\x26\xa9\x3f\x7c\xfe\x8f\xc1\x2d\x94\x05\xd8\xa6\x46\x76\x05\xbf\x74\x8a\xb7\x5d\x9a\x02\x17\xfc\x82\x9d\x38\x53\xee\x66\x08\x53\xcd\x8b\x18\x26\xdd\x2b\x11\x12\xf9\x4b\x65\x68\x9c\x99\x60\x38\x34\xb1\x1b\x42\x8b\xae\xd1\x3c\xa3\xea\xb9\x74\xea\xd4\x25\x27\x29\x77\x01\x73\x5e\x39\xb9\x44\x4e\x9a\xa7\xa6\x66\x1e\xac\xab\x5b\xe5\x2c\xab\x2c\x78\x0e\xaa\xba\x66\x5a\xe7\xb1\x34\x28\xfb\xda\x15\x6c\xb1\xd9\x2c\xc1\x22\xc9\x5e\x5e\x2b\x5d\xe8\x0d\xb1\x3e\x64\xc7\xde\x67\xe5\xee\x40\x57\x4d\x34\x36\xf6\xdb\x5d\xe4\x10\x69\xbf\xd3\xf8\xed\xd6\x10\xbb\xbd\x7f\xd3\xfa\xec\xca\x0d\xad\x75\xf4\x6c\xce\xc9\xcd\x72\x97\xb8\x90\x81\x87\x36\x8a\x9f\x93\xc5\x0d\xab\x47\x92\x12\x87\x8b\x86\x13\x93\x20\xf4\x60\xaa\xcd\xc1\x55\xb8\xf1\x21\xd2\xc1\x12\x9e\xf7\x9f\x3a\xc5\x92\x92\x8a\x22\x13\xa9\x79\xca\x5b\x65\x6c\xeb\xab\x5c\x5f\x52\x0e\xf7\x0c\x0a\xdb\xf5\xc4\x8c\xf7\xc2\x3c\x4b\x00\xad\x92\x28\x53\xa8\x31\xcd\xac\xd7\x3b\x9b\x3a\x7b\xc5\x8d\x68\xc6\xa8\x94\xfd\x46\x36\x8c\x70\xad\x9d\x24\x2b\x4a\xba\x9c\x7e\xfc\x3f\x8b\x2e\x5d\x6c\x32\xe9\xeb\x33\x19\x4c\x7d\xe6\xd7\xa9\x29\x2a\xdc\x6a\x30\x58\xc3\xa9\x71\x57\xb1\x9b\x41\x4c\x2c\x8d\xde\x13\xab\x17\xf4\xba\x27\x3b\xfe\xb8\x3a\x45\xba\xcb\xb0\x3e\x76\xcf\xc8\x9a\x7a\xe0\x54\x45\xc1\xe1\x15\x0d\xc2\x73\xfb\x26\xd6\x37\x6b\x92\x30\x24\x17\x44\x26\x57\x1c\x8c\xc5\x0c\xd6\x9c\xa8\x5a\x52\xf5\x4c\xd8\x21\x64\x42\x87\xc2\x2e\x21\xf5\xf9\x4d\x25\xff\x8e\x03\xf9\x7d\x58\x8a\xec\xd7\x4a\x32\x33\x9d\x5b\x9c\x11\xdc\xa6\x09\xf7\xb4\x5f\x54\x91\xe6\xa1\x90\xf8\xef\x4c\xca\x56\x1b\x59\x34\xbc\x29\xb3\xae\x5c\x59\xf3\x51\x34\x09\x33\x18\xfd\xd1\xea\xac\xe4\xaf\xd7\x01\x5f\xf8\x49\x00\x12\xb4\x9e\xf5\x1e\xad\xb0\x48\xc7\x7a\xcd\x8e\xeb\x9a\xc9\xe7\x0f\xf8\xfe\x1b\x1f\xa8\xed\xd2\x80\xc6\x80\x86\xc0\x65\xf6\xf6\xeb\x69\x90\xd9\xaf\xc7\xfb\xd6\x8c\x7e\xf4\x49\x8b\x28\xae\xa0\x45\x9b\x36\xfa\x92\x13\xb2\x26\x6d\x8c\x22\x32\xf2\x99\x35\xc5\xcd\x27\x82\x48\xc5\x4a\x6f\xa3\x31\xa8\x6f\xe5\x58\x65\x5e\x10\x87\x17\x39\xab\x86\x5a\xd7\xa5\x5b\xd3\x8b\x8b\xaa\x47\xab\xbf\xbf\x68\x9f\xb1\x2e\xf0\xfa\x82\x8d\x26\x84\xb6\x11\x44\x13\x9b\x30\x2b\xfa\x8d\x03\xfc\x8b\x8a\x3d\xb9\x21\xd1\xdd\x40\x48\xe7\xd3\x85\x24\x65\xad\x0d\xa9\xa9\xef\x1f\x96\xef\x9e\xbe\xd0\xb0\x51\xa2\xdc\xb0\x3c\x63\xf5\x1d\x08\x91\x9b\xe1\x1b\xfc\x74\xca\xd0\xf6\xa7\xea\xb9\xee\xd7\x4e\x2b\xc3\x2a\x13\xd2\x94\x1b\xce\x45\x2a\xd5\x9f\xb1\x6a\xea\x18\xa6\x44\xed\xb8\x3d\x5d\x55\xe4\x29\x52\xf9\x9d\x71\xce\xf2\xe5\xf0\x51\xd8\x36\x98\x9d\x8e\x39\x9c\x7e\xa5\xd5\xe6\x4a\x86\x61\xf8\xef\x7c\xab\xfc\xb0\xa4\x27\xf9\x4f\xeb\xd2\x2d\x6a\x22\x63\xa1\xae\x2b\x19\x8e\x51\x5e\xaf\xfe\x4c\x6a\x14\x6e\x29\xbc\xd2\x42\xd4\x11\xb1\x41\xb1\x11\x3b\xbe\x48\x9f\x4a\x9f\xc4\x8d\xa0\xd6\xa8\x76\x05\x8d\xfe\xd9\xd6\x1e\x80\x0a\x86\x51\x5d\xe6\xf5\xd5\xa3\x1e\xff\xa4\x5c\x5f\x44\xfe\x27\x11\x6e\xba\xb1\x64\x5e\x82\xb0\x00\xa4\xe7\xe8\xe4\xa3\x4d\xe2\x9b\xab\xa2\x7b\x7b\xcb\x65\xa5\xaa\xd8\x4a\xf1\x4b\xbc\x13\xdb\x5d\x5b\x7d\x96\xb4\xd8\x1b\x70\x80\xb3\xd7\xef\x0c\xb8\x52\x59\x10\xaf\x34\xad\x34\x29\xc3\x96\x4d\x34\xab\xe3\x9b\xc3\x92\x78\xb5\x83\x8b\x5f\xbe\xc2\xe0\x03\x8d\xcb\x73\x34\xc7\x87\xc5\xff\xae\x59\x05\xbf\x39\x2c\x62\xdd\x1f\xbf\x2b\x8f\xbc\xac\x4f\x1c\x2e\x3b\xf2\x7f\xb3\x9d\x65\xff\xae\xbd\xcd\xd4\x10\x9a\xf2\x7a\x8a\xfa\x41\x8d\x7c\x8f\xa1\x4c\x7c\xaf\xa4\x8e\x77\x8d\xa7\xce\xc5\x73\x4e\x04\x43\x73\xca\x0b\x51\xd9\xd7\x1b\xaf\xea\x1e\xa3\xa0\x16\x60\x3b\x6f\x9c\x3e\xbf\x9d\x7b\x64\x19\xbf\x1a\x29\xaf\xd9\xe0\xa6\xbe\x5e\x4c\x93\xde\x5e\x7f\x5b\xdf\xe3\x65\x82\xeb\xfb\xfa\x10\x7a\xc7\x7c\xe9\x90\xba\x61\xf0\xec\x48\x57\xe9\xc2\xe7\x7d\x8c\xe2\xf3\x85\xfe\xd5\xec\x72\x25\x9c\x0c\xe4\x72\x5d\x55\xbf\x71\x17\xbb\xc4\x51\xa0\x5a\x12\xa8\x43\x74\xeb\x8d\x60\x47\x1f\x6c\xa1\xf5\xbc\x0c\xe4\xe9\x0c\xf2\xd4\x7d\x75\x1a\xc7\x9e\x9e\xc9\x88\xe2\x07\x51\x9e\xe5\x28\x17\xdb\x81\xbc\x50\x97\x23\x6f\xab\x5c\xbb\x29\x24\x95\x2c\x96\x7d\x95\x3b\x3c\x03\xef\x52\x19\x64\x29\xc7\x47\x95\xb7\xa5\xbd\xfc\x73\xae\xf4\x3c\x7a\x24\xa4\x4b\x6d\x36\x29\x55\xff\xab\xb3\xe3\xe7\x35\x39\xf2\xfd\x31\x69\x8f\x28\xa8\xec\x16\x7d\xb6\x45\x11\x9a\x6e\x22\xa9\x79\x62\x6e\xe3\xa5\xc4\xb0\x9a\x0d\xe5\x37\xe2\xe3\xfe\x12\x9b\x10\x7e\x33\x22\xb1\x50\x25\x55\x48\x93\x56\x2a\xe3\x63\x13\x29\xdf\xaf\x8a\xd4\xbf\xaf\x8a\x88\xad\xfa\xab\xe7\xa7\x6a\x6f\x05\x1a\x0b\x48\xc0\x10\xa3\xf5\x69\x7f\x29\xdd\x13\xfc\x18\x3f\xb2\x62\x07\xd6\xb2\xcc\x04\xa3\xed\x67\x1c\xcc\x92\x3f\x1a\xbc\xc3\x25\xe1\x4e\x66\xf1\xca\x05\x95\xa2\x5b\x34\xd3\x3c\x29\x64\xa5\x41\xcf\x65\x92\x38\x05\x48\x34\xf8\x37\xb6\x5c\x7b\x9e\xad\xbf\xd9\xe3\x70\xb4\x4a\x07\x58\xd7\xf9\x6c\xb6\x29\xbc\x79\xc5\xfa\x6f\x99\x88\xa9\xeb\xfd\xd6\xdf\xf5\x9e\xfd\x36\x33\xdf\x55\x81\x6c\x87\x2a\xd7\x14\x55\xa7\xd6\xda\x27\xcc\x47\xb7\x9b\x1a\xec\x4a\x12\xcb\x55\x25\x3f\xb1\x66\xe3\x81\xc9\x56\xfe\x6f\x1e\x09\x1b\xe9\x1f\xb1\xe1\xee\x0c\xbb\xf1\xcb\xc9\x37\xb3\x3f\x6b\xff\xec\xb3\x78\x3d\xdf\xd1\xb5\xe0\xfb\xbd\x16\x4b\x5c\xac\x49\xf4\xed\xa8\x52\x10\x55\x57\x7e\x03\x03\x8e\xed\x5e\xf8\x7d\x56\x72\xf7\xee\xe6\x84\xd1\xe8\xc7\x50\xd8\x98\x2e\x23\xfa\x68\xe2\xe7\x27\x00\x07\xc7\x3f\xda\xda\xdf\xc7\xf3\xe5\xe5\x24\xea\xcc\xae\x56\x6c\xb9\x67\xff\x4a\x2c\x29\x68\x05\xc7\xbf\x13\x8f\x95\x54\x94\xc2\x2d\xb5\x66\x47\x7e\xeb\xf3\x3f\xa9\x4a\x7e\xd2\x3f\xec\xdd\xc2\x4c\x2a\x35\x91\x8e\xa8\x14\x65\x4a\x94\x23\x92\x93\x4d\x15\xd8\x37\xdd\xb0\x57\x50\xcf\x2c\x5f\x2c\x0b\x0a\x62\x8a\xaf\x21\xd0\xed\xf6\x23\x09\x48\x70\x71\x8d\x41\x3c\x80\xcd\x66\x79\x06\xd9\xac\xd8\x65\x74\x17\xc5\x30\xf5\xa6\xe9\xec\x9d\x61\xc6\x91\x07\x39\xc8\xa9\xb5\x07\xc1\x43\x6d\xf8\xf0\x44\xc4\xa3\x6c\x06\x5d\xb2\xea\x20\x91\xec\x1c\xfb\x62\x0a\xf7\xad\x60\xfd\x4c\x38\x2a\xa1\x5d\xb0\xa6\x41\x6e\x8e\x96\x61\x8c\x97\x03\x4f\x88\x67\x85\xc7\x63\x65\x42\xfd\x29\x1a\x82\x03\x20\x6a\xb8\x98\x3d\x8b\x89\x5e\x44\x81\x44\xd1\xfb\xe0\x03\x7d\xde\xb1\xff\x72\x4f\xb5\x78\x7e\x25\x6f\xed\x62\x58\xc2\xb2\xcc\x53\x2e\xf9\xe6\xce\xf2\xe0\xbe\x29\x4b\xbe\xc5\x75\xfb\x7f\x58\x05\x32\x0e\x10\xa1\xc3\x52\xc4\x6e\x44\x46\xf8\xe6\xef\x12\x69\x0f\x6d\xcd\xb6\x4a\x43\xde\x7d\x23\x09\x87\x09\x8b\x38\xe4\x9e\x41\x59\x49\xa1\x34\xc6\x98\x0e\x49\xca\xc2\x25\x11\x67\x2b\xcf\x46\x94\x60\x73\x20\x24\x12\xfa\xf9\x42\x25\xdf\xed\xd4\x78\x6f\xfe\x33\xf9\x9f\x37\xbd\x9a\x9d\xdf\xc1\xa7\xae\x3b\x70\x18\x8a\xc5\x37\xdf\x34\xd4\x4b\xbd\xfe\x33\x9a\xf5\x9b\x36\xf8\x37\x6c\x68\x68\x8e\xf4\xdf\x95\xd6\x7f\x05\x28\x0c\xcb\x12\x56\xa4\x70\xdb\x31\xdf\x8b\xad\x72\xd5\x2f\xfc\x7b\x0c\x84\x17\x09\x5d\x1a\x74\xf4\x6f\xd2\x66\x7b\x45\xc9\x22\xa0\x5b\x70\xf4\x1c\xed\xba\x8c\x12\xcd\x85\xa0\x64\xf1\xda\x84\x7a\xe2\x18\x4b\x74\xb0\x2c\x98\xac\x33\xaf\xab\xb3\x4b\x04\xcc\x1f\x00\x2e\x23\x5d\x82\xe1\x94\x1f\x79\x51\xe0\x04\x95\x79\x47\xd0\xde\x29\x38\x61\xef\x6a\xb7\x20\x2c\xfd\xa2\x28\x80\xb4\x72\xce\x35\xb3\x56\xf6\x23\x23\x28\x85\xdf\xc3\xde\x74\x84\xf1\xda\xdd\x3d\x34\xd6\xb5\xe1\x59\xb7\x3a\xa3\x14\x8c\xb7\x4d\xd1\x1a\xc6\x5e\xc9\xac\x44\x90\x5c\x96\x70\xac\x09\xc9\xca\x66\x61\x74\xcb\xd8\x37\xc7\xb9\xc8\x09\xf0\xcb\xbe\xfc\x27\x78\x3d\x76\x05\xfe\xf3\xa5\xd7\x6f\xea\x6d\x4d\xba\xe9\x97\x91\xe1\x9b\x2d\x2d\x47\xde\x3e\x72\xd4\x4b\xf5\x7b\xdf\x69\x25\x1f\x0e\x08\x44\x0d\x81\x46\xce\xe7\xd8\x22\xb6\x7c\x8c\x3e\xde\xe2\x85\xd6\x8b\xae\xdb\x59\xff\xe2\x8b\xf5\xdc\x92\xc1\x9e\xe9\xfc\x47\x8c\x7c\xe1\x47\x35\xe4\xb5\xe2\xae\xee\xae\x42\x8d\xce\x39\xb7\x41\x1d\x27\xcd\x95\xc6\xa9\x1b\x26\x5f\x1c\x90\x1b\x20\x38\x35\x24\x81\xa3\xe3\x5c\x57\xf9\xa3\xa9\x54\xf4\xa7\x25\xed\x30\xb6\xaa\xeb\xd6\x6b\x96\x47\x54\x76\x99\x25\x92\x46\xc5\x5d\x85\x1f\xad\x81\xa8\xf1\x6e\x40\xea\xdd\xa8\xfb\xad\xa8\x9c\x4b\xca\x2b\x2b\x5f\x59\xb4\x71\x63\xd1\x4a\xbd\xf7\xbc\x8c\xfc\xa6\x2b\xa6\xb5\x70\xd2\x9e\x9f\xff\xb1\x61\x9d\x42\x3d\xa3\x8e\x77\x0e\x65\x0e\x39\xe3\xa1\x4a\xb1\x6e\xc3\x3f\x7e\xa6\xda\xd7\xc5\x19\x4c\xe2\x2e\x65\x7f\xab\xbb\xb1\xd4\x17\xbb\xd2\xcd\x33\x56\x0e\x0c\x72\x59\x7e\x67\x33\x52\xf5\x4e\x6d\x43\x43\x82\x4a\x77\x53\x97\xe8\xce\x3a\xd5\xef\x37\x6d\x7e\x2e\xea\x9a\x81\x7b\xa4\xf7\xbf\xc3\x6b\x7d\x5b\x7c\x5b\xfa\x0e\xe4\x1a\x66\x67\x05\x81\xf8\xb2\x32\x1e\x1e\xc4\xf9\xc7\x9f\xca\x38\x35\x88\x87\x9a\x6a\x56\xaf\x5d\x74\x1c\x2c\xb9\x0d\x73\xf9\x2b\x40\x25\xaa\x45\x33\x61\xaf\xb1\x87\xaa\xde\xc6\x92\x4e\xca\xea\x7d\xa3\x07\x8b\x5f\xf4\x6d\x06\x7a\xf8\x84\x53\x3b\x0e\x64\x7d\xe6\x0d\xf2\x6e\x6b\x2d\xfa\xdd\xc1\x9b\x6e\x19\x90\x1b\x93\x1d\x90\xad\x50\x48\x49\x9f\xf1\xbb\xe6\xef\xfe\xa5\x36\x31\x92\x6f\x52\xad\xbb\x7b\xa3\x3e\x93\x9d\x53\x70\xc6\x6e\x2d\x07\xfc\xf2\xbe\x75\x25\x2a\x65\xf9\xdc\x19\xf9\x89\x4e\x8a\x3c\x37\x89\x88\xa4\x68\x27\xbe\x5d\x6c\x59\x3f\x51\x74\x26\x3c\xd0\xdb\xd7\xf7\x6f\x53\x10\x50\xb7\x99\x75\x3f\xb5\x15\xae\x59\x3c\xb9\x73\xe0\x34\x7d\xc3\x93\x23\x57\x67\xd7\x1a\x9a\xb9\x03\xbb\xe1\x38\x03\x43\x88\xac\xb1\x91\xa9\x87\x00\x56\x27\xb3\xe8\xd2\x9b\x31\x4e\xab\xc0\x81\x64\x58\xd6\x22\x5a\x66\x5c\x1e\x06\xb9\x45\x1e\xc6\x3c\xc5\x85\xfe\x03\x00\x86\x59\xa7\x12\xb0\x8b\xa9\x0c\xce\x75\x29\x4d\x56\x25\x3e\x03\x76\x30\xed\xde\xee\xe1\xa2\x80\x84\x9b\x44\xd2\xb8\x68\x39\x6d\x3e\x03\x0c\xd7\x5b\xbd\x5d\x21\x32\xe3\x41\x1e\x86\x65\x79\x97\x76\x7f\x54\x40\x34\x9d\xc3\x9c\xa0\x13\x38\xe7\x06\x3b\x48\x6b\x7d\x6b\x2b\xd1\x17\x58\x2c\xe7\x7e\xa4\x1e\x22\xce\x67\x3d\x44\x8d\x8e\xc2\x90\x71\x1b\x31\xf3\xa6\x62\xe9\x40\x8a\x97\x14\x00\x64\xb1\x8a\x47\x5e\xf2\x44\xdc\x5c\xbc\x79\xab\x50\xbd\x21\x79\x43\x75\x9a\x2e\xf3\xd8\xdb\x77\x8c\xbf\x8b\x6b\x88\x46\x5a\x0f\x77\xc8\x3b\xf8\xda\x7c\xe3\xfc\x6a\xf7\xef\xf2\x6b\xdf\x40\xbc\xf3\x76\xfe\xef\xea\xb4\xd5\x4a\xa7\x10\x5f\xfb\x2d\x46\xf0\x82\xc5\xe7\xee\xc3\x57\xe1\x1d\x0e\x5c\xfb\xe9\xa7\x5e\x4a\xd5\xf6\x6b\xd7\x66\x47\x4d\xa1\x7c\xc5\xd1\x5d\x58\x12\x4e\x27\x7e\x8b\x59\x9f\x7e\x8d\xcb\xd4\xab\x43\xf0\xc0\x3e\x91\x65\xf1\xb7\x56\x8e\x6b\x63\xe8\xad\x9b\xc0\x09\x57\xdf\x18\x09\xa7\xbc\xbf\x53\x7d\x5e\xf6\x6f\xab\x14\xb1\x3e\xff\x09\x5f\xac\x62\xfc\xd8\xdb\xda\xce\x85\x6b\x87\x24\x19\x5d\x84\x91\x1a\x20\x25\x38\x09\x59\x48\xa8\xb5\x9b\x25\x62\xb2\xb6\xb4\xf6\x77\x17\x31\x2c\x61\x04\x24\x30\xd7\x2b\x5f\x1c\xec\xb3\xd2\x6e\xe4\x06\x72\x9b\xa2\xfa\x32\x36\x67\x3c\xc3\xd4\xb1\xf2\xfc\x32\xda\x18\xe3\x28\xe3\x32\x72\xf3\x49\x56\xbe\xa4\x14\x3a\x8f\xf0\x7a\xbf\x53\xfe\xdf\x25\x60\xf0\x48\xca\xe3\x87\xfe\xc3\x81\xe7\xc7\xad\xba\xbb\xee\x47\x82\xb7\x59\x8e\x89\xc4\xa9\x18\x1a\xa9\xa2\xe8\xb2\x89\xac\xf7\xd7\x56\xe6\x18\xfa\xa5\x52\x71\xce\x9a\x79\x3f\x6b\x22\x4b\xa8\xc9\xc9\xd7\x05\x10\x6f\x42\x22\xb1\xb5\x95\x4d\x49\x98\xec\x4c\xe1\x3d\xdf\x11\xd0\xa1\x89\x31\xa5\xe5\x4d\x6b\xbe\x29\x09\x0a\x46\xc1\x41\x25\x7b\x1c\xd3\xa5\x72\x53\x8c\xa6\x23\x20\x24\x28\x38\xa0\xf3\xe4\xab\xc4\x94\x4e\x5f\x6c\x2c\x1e\x28\xce\xfb\xab\x14\x93\xea\x0c\x0c\xc1\x9f\x20\xeb\x67\xca\x36\x6d\x2a\x0b\x4d\xba\x23\x8a\xf0\xf3\x2e\x57\x2d\x49\xde\x7d\x4f\xca\xc6\x30\xf4\x20\x7a\x4a\x99\xdb\xeb\xc8\xba\x66\xad\x39\x71\x89\x84\x54\xe9\x0c\xbe\x88\xa2\xd2\x7a\x8b\x60\x10\x3f\xe7\x10\xfc\xa2\x5e\x15\x03\x9a\x41\xd0\xb3\x21\x42\xa3\xaa\x2d\x5e\xb9\x95\xe4\xf2\xb1\x91\x36\xff\x1a\x7f\x83\xa1\x56\x4a\x78\x16\x2b\x88\x02\x10\xb7\x63\x8c\xd0\x9b\xaf\xea\x7a\x2e\x92\x4c\xa6\xc1\x88\x67\xca\xd7\xb4\x98\xa4\x0c\xd6\xb7\xac\x19\xef\xb6\x2a\x57\x4e\x4f\x6d\x95\xad\xba\xd6\x8d\xdc\x5a\x40\x75\x7a\x62\xaf\xef\x06\x42\xf7\xfd\x9d\xfd\x7f\x3c\x53\xa6\xea\xf6\x8d\xc1\x86\x10\x38\xa0\x7c\x67\x15\x07\x61\xfb\x7c\xa6\x91\xdb\xb7\xcf\xc8\x65\xce\x6f\x17\x48\x3f\xe2\xd0\x1e\x17\x1f\xd6\x9e\x88\x71\x09\x49\x92\x8d\xca\x96\x98\x73\x01\xcb\x01\x91\x4a\x52\x8a\x5f\x7c\xb1\x38\x45\xb5\x0f\x59\x7b\x73\xdd\xc6\xb4\x08\x75\xe2\x71\xea\x3d\x1b\xd6\xe2\x70\x53\xde\xb1\x6b\xab\xfa\xfb\xfd\x74\x83\x14\xa9\x2f\x28\xaa\xaf\x1b\xac\xaf\x1f\xac\xab\x2f\x2a\x58\x4e\xe0\x78\xde\x30\xfb\xf8\x1b\xfe\x75\xc9\x5b\x3d\xd5\xa8\xa6\xf0\x90\x69\xfd\xd7\x23\x71\xa1\x5c\x68\xdc\x48\x46\x84\xe9\x50\x21\xaa\xa9\xee\x79\x2b\x38\x31\x38\xe2\x37\x5a\xe8\xf3\x93\x3c\xe8\x4e\xb9\xfe\xcf\x69\x0d\xeb\x3f\xbc\xc0\xd1\xcb\x4b\x82\x97\x37\xff\x70\x64\x7d\xa9\xfe\x4f\xfa\xf2\x3b\x41\xcf\xed\x56\x7c\x2c\xa0\x48\xde\x67\x6f\xee\xac\xf5\xfe\x2e\xc1\x13\x65\x19\xde\x7d\x39\xb9\x25\x7a\x76\x52\x2c\xcb\xea\xe4\x92\x21\xd6\x33\x34\xda\x3e\x52\x1f\x52\x3f\xb2\x76\x43\xdb\x86\x0d\x7b\xf7\x4a\xd2\x7b\x47\x86\x8d\x7e\xd7\xb4\x11\x34\x13\x18\x58\xad\x82\x6a\xc1\xc5\x80\xda\xa3\xb9\x80\x36\x77\x40\x2c\x02\xec\x8a\x3b\xec\x7a\xbf\xe8\x87\x17\xbc\xc6\x14\xfa\x11\x18\x5e\xbd\xe7\x3d\x10\xb6\x71\xc0\xdc\x71\x18\x05\x0d\xe2\x66\x78\x13\xf1\x87\x17\xd0\xb0\x65\x0e\xcc\x8f\xc6\x77\xd1\xfc\x2f\x8b\x4a\xff\x23\x95\xd5\xd5\x5e\xbf\x78\x67\xab\xf2\x57\xdf\x82\x62\xf7\x6b\x27\xa6\x1a\xe4\x09\xc7\x06\x14\xdb\xf1\xe9\x6d\xb8\xed\x24\xe1\x08\x16\x04\x01\x13\x6f\x31\x42\xdc\x34\x89\xa0\xc8\x42\x5a\x22\x6a\x07\x8c\xac\x93\x7a\x34\x9d\x17\xe5\x89\x35\x94\x9d\x62\x0d\x04\x7d\xff\x03\xb4\xb0\xa1\x72\x66\x06\x21\x05\x1a\x56\x32\xe7\x69\xc1\xc8\x33\x22\xf3\xc8\x08\x34\xe3\xfa\x2d\x03\x8d\x3d\x44\xa2\x97\xb8\x22\x6f\x79\xfa\x2f\xde\x26\xa6\x36\x17\xbd\x35\x3e\xfe\xcf\x7a\xf4\x74\xa2\x39\xe2\x9f\x95\xb2\x28\x26\x4a\x36\xd2\x0f\xad\x12\xa4\xa9\x79\xc6\x25\xf9\x33\xcf\xb0\x3c\x67\x2e\x40\x66\x33\xff\xca\x33\x1c\xe9\x78\x31\x74\x7b\x73\x96\x8c\x3d\x96\x0b\xb4\x9c\x9f\x92\x9c\xae\xc9\x6f\x81\x10\x63\x2d\x6b\xc6\xfb\x6e\x35\xc6\xe4\x2e\xd5\x8b\xba\x46\x37\x72\xbb\x0b\xc3\xa4\x74\x97\x99\xbc\x37\x78\xde\x28\x54\x98\x3d\x30\xeb\xf5\xb5\xf9\x8a\x4e\x6b\x48\x52\x2b\x67\x23\x81\x24\x48\x30\x0d\xc8\x14\x9a\x1b\x9c\xb3\x1d\x6c\xc8\xe4\xe4\xa2\x1c\xd6\x1a\xb4\xe4\xa6\x4d\x88\xd2\x8d\x5f\xc7\xe3\x29\xeb\x29\x56\x6e\xc5\x1c\x9e\x16\xe8\xa6\xa4\x94\x16\xb0\x6c\x44\xc6\xf1\x3e\x40\xfc\x20\x3b\x68\xb4\x61\x82\x45\xdb\x92\x6c\x4c\x86\xeb\x1a\xc3\x8a\xa3\x46\xe4\x88\x91\xbf\x41\x06\xc0\xde\xf2\xf8\x0d\x28\x96\x9d\x3d\xcb\x4f\x08\xc6\x4d\x3b\x36\xf5\x49\xe6\x25\xbf\xcb\x38\x51\x76\x5c\xad\x50\x1f\xd7\xbf\x1b\x10\x54\x7e\x3b\xef\xdb\xf8\x40\x4b\x5c\x0b\xee\xb6\x04\xb0\x13\x8b\x46\x17\xb1\xc6\x6d\xce\x9c\xf9\xf9\xa1\xff\xbd\xcc\x76\xbd\xf5\x3f\xde\x8f\x3e\xb2\x6d\xf3\xae\x5b\x3f\xf1\x5a\x0b\x1e\x62\xaf\x3d\x3c\xca\x67\x6d\x93\x67\xd2\xcf\x14\x34\xc7\xd8\xbe\x3a\xd3\xd6\xd0\xcc\xf6\xcc\x8e\xad\x21\x75\xa6\xd8\xbe\x56\x7d\x73\x72\x93\x15\x5c\xfb\x8f\x82\x7f\x11\xee\xf4\x01\xfa\x81\xba\x45\xe4\x41\xe0\xa3\xe2\x5d\x9c\x9d\xeb\xd0\xc7\x76\x97\x46\x4f\xd0\xe6\x3a\x95\x32\x77\x29\x57\x29\x6d\x6f\xcf\xcd\xa1\x22\x82\x5f\x86\x0c\x78\x7b\xe7\x38\xd3\xcd\xbf\x0f\xb2\xec\xb6\xd7\x27\xaf\xbb\xef\x2f\xb7\x21\x0c\xf4\x7a\x82\x89\xde\x6c\x3e\xf5\xd1\x78\x85\xae\x86\x19\xe7\x79\x3d\x4e\x2e\x18\xfa\x03\x80\xa8\xe8\x1f\x3f\x64\x94\xb3\x2c\x33\x87\xe6\x18\xf0\xce\xed\x24\xee\x7b\x56\xb6\x75\xd6\xac\xe5\x1f\x9d\x9a\xea\x55\x82\xa7\xa7\xe4\x9e\x5e\xc3\x71\xc5\x94\x24\x86\x71\xe0\xaf\xde\xf5\x85\x07\x1e\xec\x1b\x8b\x0c\x91\x77\x1e\xa5\x26\xa9\x80\x00\x6d\x68\x06\xe3\x98\x4a\x82\x68\x26\xe1\x73\x49\x3e\x11\xee\x5f\xa0\x4a\xa9\x1a\x13\x25\x8b\x7c\x20\x6a\xac\x7f\x2b\x74\xc9\x64\x3d\x15\x3c\x20\x99\x95\x24\x2c\x8b\xcd\xdd\x79\x9f\xbc\x8e\x1d\x87\x9f\x58\x4e\xdc\x15\x47\x89\x6e\x2e\x50\xda\xd1\x13\x49\x91\xb1\xd9\x55\xfb\x59\xad\x1f\x1b\x6c\xc5\xed\x42\x13\xba\xdb\x87\xb6\x3c\x7e\x43\xab\xbb\x65\xcd\xb5\x4e\xf0\x0e\x30\x7d\xba\xb7\xb5\xe5\xf5\x44\x0b\xfd\xd2\x9d\x15\xf2\x59\x17\x8b\x93\x79\xbc\x13\x29\xc7\xbc\xc8\x32\x9e\x63\xe0\x18\x2f\x75\x3e\x28\xcb\xcd\x28\x78\x84\x2a\x34\x1b\x5b\xda\xfd\x98\xef\xe5\xb1\xff\x1c\xd5\xda\xc2\x4b\x4b\xad\xfd\xde\x6d\xd6\xfd\x83\xb8\xea\x8d\x3f\x6d\xbe\x85\x27\x10\x42\x13\xd8\x18\x5f\x67\x06\x05\x08\x5d\xbb\xb2\xec\x93\x4f\x7a\x79\x9e\x65\xef\xbf\x1f\xc6\xa8\x20\xc0\xd2\xd7\x4a\x23\x25\x08\xb0\xa7\x2c\xc6\x4e\x3e\x1d\x64\xd9\xa1\x06\x80\x53\xaa\x40\xad\x0d\xef\x77\x0f\x98\x01\xf6\x70\x09\xb7\xc1\x27\x96\x75\x71\xcc\x6d\x0b\x3b\x02\x23\x3d\x47\xcb\xe5\x0c\xcd\x60\xba\x3d\x0d\x88\xe4\x06\xe9\x7c\xa3\x86\xf1\x30\x00\x64\xa3\x6d\x50\x06\x1a\xcd\x40\xc9\xe7\x19\x07\x8f\xd6\x22\x6b\xcb\x4a\xb9\x27\xd7\x70\x65\x93\xb8\x14\x99\x41\xb1\x9f\xb0\xfb\x04\x4f\x90\xaa\xbd\x29\xa4\xd2\xcf\x41\x95\xb3\x12\x8e\x90\xc5\x37\x39\x17\x1c\x97\x6e\x4c\x40\x85\x0c\xb9\x1d\xf8\x8d\x21\xb5\x4e\xa5\x20\x90\x16\x37\xf8\x47\x6a\xdb\xb2\x12\x70\x5c\xc9\x91\x01\x4d\x86\x45\xbd\x0c\xf7\xf4\x39\x13\xd6\x7b\xa3\x97\x69\x80\xbd\xec\xce\x7f\xda\x65\x4a\xa2\x0c\x3a\xb9\xf2\x62\xac\xce\xa7\x8b\xdd\x0f\x37\xab\xdf\x26\x38\x76\x62\x42\xdc\xbb\x57\x34\x95\x7b\xcf\xac\xac\x8b\xb7\xf6\x43\xb6\x59\xe7\x67\x85\xf2\x0c\xef\x8e\xec\xba\x83\xe5\xd8\x3e\x89\x77\xb7\x7c\xf8\xf7\x0b\x2d\x28\xd8\x70\x2e\xd0\xc8\xbb\x88\x5c\x36\x22\xbb\xf1\x9a\xb2\xb2\x5a\xa4\xd6\xe4\xda\x8d\x2d\x6c\x89\x33\x66\x72\x71\xe6\xd7\xd5\x59\x8d\x58\xc0\x56\xb4\x61\xca\x34\xf6\x9a\xc0\xa0\x11\x0d\xc0\xb3\x5f\x94\xce\x75\x1d\xcf\x01\x83\x0b\xfd\xfd\xb7\xac\x56\x29\xa9\x2f\x48\x0f\xbc\x9b\x21\x67\xb4\xf6\x6b\x6e\x66\x1b\x58\xfd\x9a\x86\x86\x35\x45\xf5\xf5\x45\xf9\x0a\x02\x42\x0f\x2d\x26\x1a\x73\x29\xb1\xab\x38\x3d\x25\x8a\x53\xd3\x95\x75\x2d\xbe\x16\x90\xe8\x72\x08\xc6\x38\x93\xbd\xfc\x2f\x3c\x26\x38\x82\x95\x54\x6a\xc2\x8f\xb1\x28\x36\xf7\xa0\x3e\x8a\x9a\xd4\x4c\x52\x28\x35\xea\x47\x31\x02\xfd\x4b\xcb\x5b\xb0\x24\x20\xa1\xe9\x16\xfc\x0c\x3e\xb4\x87\x3d\x23\x06\x63\xfa\xdf\x45\x6d\xb4\x92\xac\x4f\x15\x59\x1b\x6d\x8b\x24\x71\x5c\x85\x0c\x8d\xe9\xa7\x5d\x5f\x28\x3c\x1b\x63\xb5\x30\xa8\x52\x77\xa8\xc9\xea\x98\x08\x5a\xd9\x30\xe7\x17\xa7\xc0\x45\x8f\x89\x72\xca\xd8\xcf\xd8\x81\x7e\x23\xe3\x32\x8a\x02\x27\x30\xe5\xe5\xb3\x69\xb6\x34\x28\xf6\xab\xe2\x77\x7c\x9b\xd7\x9f\xf0\xd2\xb1\x22\xd7\xce\xa4\xb7\xdf\xd3\x95\x6c\x78\x6b\x4b\xd9\x04\x9e\x80\x3d\x4d\x5a\xdf\x7d\x7b\xbf\xba\x81\xde\x99\x14\x6f\xcb\x6d\xfa\xf6\x54\x7f\x42\xf3\xe4\xb1\x47\xc7\x76\x25\xbd\x7d\xf4\xcb\xa5\x0e\x06\xdc\xe0\x90\x3b\xd4\xe7\x6f\xa3\x11\x8b\x87\x6f\x37\xd0\x45\x0c\x8d\xd5\x7b\x47\x3b\x94\x13\xd9\x70\x33\x83\x3e\x1c\xe7\x71\x89\xd3\x86\x5e\x18\xf9\xd1\xd6\x1f\x24\x0b\x3f\xd2\xc3\xe1\xf8\x71\xef\xce\x9d\x63\x5e\xf7\xe3\xd8\x83\x65\x30\xe6\x1d\xa0\xd6\xe4\xf2\xf2\xce\x7f\xdf\x70\xbb\xa4\xb9\xf9\x40\x33\x39\x40\x2e\x69\xb6\x19\xc9\x73\x30\x28\xeb\xdf\xf6\xcf\x94\x99\x45\xc1\x45\x99\xd1\xb9\x91\xe9\xf1\x8d\xa5\xc9\x99\xa7\x50\xb0\xb6\x70\x5f\x7a\x8a\xc6\x94\x98\x1e\xb2\xa2\x86\x9a\x82\xc6\x66\xd9\x3f\xe0\x68\xa5\x92\x2d\xec\x51\x52\x47\xd3\x7f\x47\x95\xb4\x11\x26\xdb\x92\x9d\xfe\x5a\x6a\xe6\xa2\x56\x9f\xf9\xeb\xfa\x9b\xb5\x9c\xbe\xa0\xa6\xaf\xab\x42\xd9\x5d\xd8\xa4\xa4\x26\xd3\xc7\xa8\xd5\x23\xb3\xd3\x42\x42\x6c\xc9\xe3\x2b\x7a\xb5\x81\x9f\x49\x0e\x05\x29\xcf\xfc\x3e\x2a\xf3\x51\x4d\x51\x78\x78\xd8\xea\xb3\x41\x1a\xf1\xb7\x2d\x05\x39\x95\xe5\x3d\xf2\x73\x9f\x13\xa6\x08\xcb\x98\x68\x9c\xc8\xc8\x4d\x79\xef\xdc\xf0\x88\x66\x3c\x20\xa4\x55\xff\xdb\x9d\xf8\xd1\xf8\x90\x7f\xb7\x1e\x76\x54\x3f\xfb\x9e\xc7\x06\xfb\xdf\xbf\x98\x8a\x07\x82\x60\x6d\xa3\xd2\x4d\x8d\x47\xc2\xcb\x4f\x55\x95\xfa\xbb\x8d\xf0\x70\xed\x91\xd1\xd9\x7b\xc4\xc0\xfb\x8e\xad\xad\xb3\x59\x59\xb3\x63\xf1\x90\x28\xd5\xe8\xab\x6b\xab\x48\xec\xaa\x55\xd7\x12\xf3\xb8\xbc\xad\x3f\x12\xdd\x99\xf5\xbf\xe4\x35\x78\xe7\xe6\xfd\xb2\xde\xc0\xae\xa5\x05\x3a\xe3\x31\xfd\xb9\x42\x84\xae\x5e\x61\x41\x04\x7e\xf7\x06\xff\xb6\xa5\x15\x6b\x0b\x2b\xd7\x56\x94\xd6\xb9\x58\xea\xa8\xcc\x86\x6c\x02\x94\x51\x98\x05\x27\xc2\xd8\x01\x94\xc4\x4a\x6b\x27\x5d\xfc\x84\xcd\x0d\x2d\x9f\xab\x5b\x21\xb8\x71\x78\x66\x4d\xa6\x3c\x28\x7a\x67\x78\x72\xc4\x23\x91\x63\xfd\xfd\xd0\x25\x13\xa0\x0e\xa8\x8e\xfa\x5a\x2a\x35\x47\xa0\x96\xed\xda\x99\xe7\x2c\xf0\xbb\xe9\xe8\xa7\xeb\xef\x90\xf3\x51\x82\x2c\xea\x06\x4f\x65\xe8\xbc\xba\x8c\x9f\xaa\x74\xe9\x3b\x69\x25\x51\xd2\x21\xfa\x4f\xe3\x1e\xdf\x18\x10\xd0\x45\xde\x28\x5c\x89\x56\xc7\xd5\xf8\xcc\x3b\x6f\x08\x59\x6d\xd4\x14\xf5\x37\x5c\xd0\x90\x8d\x37\x1e\x9d\x42\x0e\x9e\x30\x9f\x33\x81\xe0\x06\xba\xa1\xf5\x57\xf4\x45\x14\x92\x1d\x93\xd1\xe8\xe6\x0f\x27\xe4\x0e\xe4\x45\xe7\x13\x84\x40\xf7\xf8\xa1\xba\x6a\x80\x09\xa9\xdb\xb2\xb5\x2e\x98\xbf\x3e\x50\x5d\xf5\x43\x69\x5d\xc8\x96\x2d\x21\x75\xd7\x0f\xc6\xae\x23\xdb\xd6\x91\xd8\x52\x4d\x23\xd9\x6f\x0e\xfa\xed\xe7\x3e\x99\x0c\xa9\xdd\x6a\x5b\x1f\x9c\x71\xdd\x75\x71\xd2\xcb\xab\x9c\x7f\x27\xd7\x33\x82\x1f\xc9\x7c\x24\x78\x32\x09\xaa\x58\x74\x91\xa8\xd4\x04\x46\xa4\x4b\x42\x60\xc5\xf0\xa4\xe2\x3a\x41\x36\xf4\x3d\xb2\x2a\x25\xe0\xd8\xe8\xb6\xd6\x05\x87\x42\x50\xf0\xf5\x62\x06\x86\x53\x0b\x30\xe7\x85\xa0\x12\x5c\xd2\x15\x2c\x27\xad\x6f\x44\x1e\x72\xf7\x91\x43\xfb\x71\xd6\xe7\x6d\x0b\x59\xf2\x06\x31\x75\xf0\xe1\x0c\xb7\x1f\x37\x76\x47\xac\x45\x9b\x01\x03\xd4\x4d\x5b\x37\xb5\x6e\x24\x3f\x56\x51\x95\x55\x3c\x80\xa8\xaa\x84\x2a\x3f\xf6\xfd\xde\xa6\x16\xf2\xaf\xa4\xbd\xbe\xfc\xe1\x74\x26\x75\x66\x4b\x47\xa3\x24\x31\x28\xb1\x51\xd2\xb1\x65\x26\x75\x4d\x00\x99\x0e\x99\xa6\x57\xe4\x2d\xab\x0f\x8f\x60\x96\xe5\xad\xa0\x8f\xc5\x06\xd6\xd3\x95\xa3\x3e\xdd\xc1\x41\x60\xd9\x3a\xa9\x1a\x5b\x07\xf5\x8b\x8b\x00\x22\xc7\x58\xd1\x44\x13\x07\xf5\xc1\x9e\xb0\x1f\x4c\x3b\x9a\x36\x92\x36\x9a\x06\xab\xc3\x5a\xc6\xe9\x4d\xf9\xc3\x7d\xae\xb4\xff\xb5\xf8\xf3\xff\x94\xf5\xa7\x8b\x33\x3a\x1e\x49\xf2\x80\x25\xcf\x2c\x0f\x56\x6c\x55\x12\xe5\x7c\x5a\xe7\xe3\x19\x8c\xab\xe7\x6e\x2c\x3e\xc0\x25\xd3\x52\x82\x88\xb3\xf8\x80\xad\x5f\xd4\x13\x13\x1d\x91\xd9\x27\x46\x65\x9f\xfa\xff\x17\x10\x33\x2f\xdf\xaf\xcc\xb7\x58\xf2\x72\x17\xee\xbf\x5f\x5d\x6f\xe5\x16\x3a\xb5\x2f\x27\xd8\x5c\xe3\x87\xd8\x59\xa3\x06\x43\xd5\x67\x26\xbd\xbc\x2e\x9f\xb5\x9c\xee\x6b\x08\x6b\xe8\xe8\xc8\x21\x0e\x84\xcb\xd9\xe1\xc0\x50\x6a\x5c\x96\xd9\x40\xa2\x96\xf6\x31\xf3\xc3\xef\x3e\xc8\xb0\x6d\x35\xba\xeb\x6d\x85\xd6\x45\xdd\x23\xce\xd9\x7d\xf0\xca\xea\x51\xd2\x7c\x60\x56\x5c\x8b\xeb\x86\x47\x4e\x8f\x0c\x3f\x39\x30\x70\x72\xe4\x71\x68\xbe\x2c\xbc\x7d\xcd\x80\x5a\x28\xd3\x62\x2b\x8e\xd5\x85\xa9\x29\xa9\x8f\x4f\xeb\x3d\x27\xce\x04\xf4\x86\x85\x34\x6e\xc8\xbf\x6b\xde\xb9\xde\x04\x3d\x1f\x45\x25\x52\x51\xf3\xf4\xab\xb3\xf6\xab\x8a\xe1\xe0\xdf\x65\xb0\x03\xf3\x3b\x49\xbd\xd9\xd0\x55\xb5\xca\x82\x4b\x83\x13\x83\x4b\xb1\x65\x55\x57\x95\xc1\x5c\x4f\x3a\xf3\x33\x4a\x33\xa9\xfd\x78\x3c\x29\x2a\x69\x1c\xef\xa7\x98\x4c\xf0\xa0\x90\xcc\x4a\x2e\xc7\x11\xad\x22\x56\xb1\x4e\x91\x30\xf1\xd5\xe4\xad\x49\x4d\x98\x38\x21\x99\x75\xbc\x74\xe8\x8b\xd7\x7f\x8d\xcd\x20\x7d\x75\x1f\x5f\xba\xba\xaa\x22\x3c\x86\x4d\xc9\xc1\x4d\x72\xfa\x2a\xba\x4a\xc7\x2c\x48\x27\xa5\x47\x52\xd2\x34\xd5\x9a\xb4\x15\xb7\x5e\x7f\x9c\x1a\xa3\x14\x9c\x71\xd6\x4d\xfc\x9c\x12\x72\x60\x3c\x32\x47\x67\xbe\x38\xec\x72\xa9\x98\xa8\xf1\xf7\xd0\x36\x71\xe5\xb3\x60\x79\x5a\x5c\x78\x13\x27\x78\x52\x91\xf8\xf9\x29\x86\xea\xd7\x6c\x76\xd7\xa6\x4d\x22\x08\xea\x7c\x2d\x37\x75\x45\xff\x71\x12\x42\xad\xca\x56\x5d\x32\xcc\xaa\x32\xda\x57\x5c\x2e\xb3\xc8\xd1\xc8\x7d\xa1\xb7\x1c\x0a\x44\xfd\xd8\x6e\x9a\xc1\x4e\xed\x3d\xf7\x64\xba\x00\x84\xd7\xcf\xd8\xb3\xfc\x8f\x7f\x14\xf7\xee\x9d\x63\x59\xab\x08\xf7\xb0\x59\x52\x97\x15\x2e\x7b\x17\x50\xa1\x2b\x5c\xf1\x5e\xb9\xd2\xf8\x8a\xd4\x6e\x93\xa0\x51\xab\xc9\x74\xb5\xab\x1b\xe3\xee\xae\x9b\x91\xb6\x4e\x0f\xdc\xec\xee\x3a\xd4\xd5\x7d\x35\x78\xc4\x7c\xb0\xda\x46\x08\x9d\x71\x8d\x39\x9f\x69\x1c\xe6\x08\xb7\x6e\xdc\xc2\x46\xa8\x86\x35\x3a\x27\xb4\x3c\x6f\x2d\x2c\xe2\x6c\x68\x24\xf0\x9c\x51\x65\x51\xab\xfe\x1d\x65\xe5\x9b\x69\x56\x07\xf5\xdc\x2f\x87\x49\xc9\x94\xbe\x93\xa9\x72\x6d\xca\x05\x58\xf4\xd7\x85\x0f\x7e\x74\x07\xdc\x4a\x1d\x52\x2d\x7e\xbf\x3b\x17\x86\x0d\x83\x1b\xfa\xb7\xaf\x53\x1d\xa2\x16\x7c\x2f\xfb\x02\x02\x2a\x2a\x3a\x43\xea\x97\x8f\x4c\x5e\xf4\x8d\x8d\xdf\x04\xe3\x10\x87\x20\x53\x89\x01\x7e\x50\x13\xfe\x5e\x04\x93\xa7\x23\x48\x24\x22\xe2\x5d\x1c\xed\xb8\xf3\xef\x74\xe2\x80\x87\x6d\x22\xf5\x97\x7f\x36\x7e\xf5\xba\x75\xbe\x8b\xdb\xcb\xb3\xee\xc9\xb1\x53\x98\xbb\xbc\x92\x59\xa9\xae\xed\x5b\x5f\xfc\x71\x40\x6e\x00\x37\xa1\x84\xd8\xc7\xb9\xef\xeb\xfb\x66\x35\xaf\xba\xdd\xb7\x79\xb3\x61\xf7\x26\xc3\xe6\xbe\xa0\x55\xb1\x11\xb1\xab\x82\xfa\x96\xbf\xdf\x5e\x53\xb4\x71\x6d\xfb\x63\x49\x91\x52\xe1\x2f\xbf\x85\x46\x5b\xf4\x13\xa9\x02\xad\xd6\x90\xa9\xd6\x39\xd9\xf8\xc3\x2a\x35\x1d\x49\x51\x89\xaa\x44\x7b\x51\x56\xd1\xe1\x44\xd5\x25\x95\xae\x57\xb7\x29\x07\x9b\x8b\x56\xad\x11\x7f\xac\xea\xee\xae\x74\xc2\x0b\x6f\x5f\x5d\xb8\xea\xbd\xb9\x70\x93\x0f\x5b\x2c\xaf\xbe\x2a\x67\xbe\x5f\xf0\x8d\x3b\x86\x89\xdc\x48\xf9\xaf\xa7\x46\x3b\x8d\xe5\x4b\xdf\xfc\xec\xa2\x94\x32\xc7\x59\x69\x1e\x15\xff\xcb\x0a\x2c\xb8\x0e\x9d\x81\x8e\x50\x6f\x5c\xf4\xe6\x50\x2d\x36\x9b\xa8\x4d\xbe\x43\xa2\x39\x95\x83\x33\x5b\xc7\x65\x26\x80\x21\xa5\x74\x24\xd1\x0a\xcd\xe6\x7e\xc9\x8f\x13\x87\xc4\x6f\xff\xaf\x0c\xb6\x62\xa4\xf2\xf9\x18\xb9\xff\xcd\x82\xc1\xee\xb4\xd1\xb4\x31\xb4\x81\xa5\x11\xcf\x99\x1c\x5a\xb4\xd3\x77\xcb\xd2\x9b\xf0\x96\xa0\xd5\x2d\x91\x5b\x2b\x29\x09\xa6\x2e\xfd\xbd\xf1\x04\x1b\xf1\xfe\xca\x0b\x26\x53\x85\x5f\xaf\xd7\xae\x1c\x19\x3b\xda\xa4\x7e\x3f\x22\xfc\xfd\x8d\x2b\x37\xbe\x2f\x6d\x8f\xdd\xfe\x6c\x54\xe4\xb3\xdb\xe3\x82\x50\xbc\x80\xf4\xc2\x1e\xe8\xc5\x72\xf5\x60\x64\x94\xbf\x50\x2c\xee\x69\x71\xa1\x12\xae\x6c\xfe\x6f\xd2\xb1\x8c\x11\x48\x56\xce\xbf\xd7\x84\x34\x87\x9f\xc1\x10\xff\x9e\x88\x44\x70\xab\x7d\x46\x7d\x5b\xd2\x74\xd1\x54\x92\x9a\x62\xa5\x54\xbf\x34\x25\xf9\xd5\x44\x8d\x3a\x41\x7e\x84\x2a\x6e\xf0\xd6\xa4\xe9\xd4\xba\xb4\xc0\x34\xb5\xb4\x8f\x52\x27\xa7\xbf\xa9\x66\xd4\x75\xbc\xa7\xf1\xc5\x69\xab\x55\xb4\x3b\xdc\x8c\x03\xd2\x2b\x54\xcf\x24\xa5\xaa\x13\xbb\x17\xa5\xa4\x31\xb8\xb1\xe0\xe6\x57\x49\xcd\x55\xe7\xa6\x05\xc8\x94\x92\xaa\x93\x1a\xc7\x93\xd3\xdf\x59\x1f\xa8\xd2\x35\xe0\xee\x9b\x26\xfe\xfb\xdf\x89\x90\xcd\x65\xb6\x38\xae\xcf\x34\x50\x1a\x18\xc8\x1d\x4c\xec\xe6\xfb\x2d\xca\xe5\x87\xcb\xaa\x40\x8e\xff\x3f\x5f\xf8\xbb\x31\x9c\x02\x4f\x65\x27\x00\x7e\xf4\x6e\x86\x4f\xf9\x77\x4f\xfd\x20\xb2\xf4\xa0\x75\xaa\x52\xdc\x9c\x57\x40\xe7\x82\xec\x53\x1f\x2c\x9a\xcf\x8e\x22\x15\xdc\x93\x5b\x38\x54\x83\x18\xdf\xa5\xb1\xa3\xc2\xa1\x39\xf0\xfa\xad\xab\x02\xef\x82\xe2\x07\x0f\x3d\x19\x92\xf6\xd3\x68\xb2\xd7\x42\x64\x7f\xc8\x11\xac\xe5\x4f\x41\x63\xce\xad\x0d\xd5\xc1\x5f\x2d\x39\x78\xa0\x01\x0f\x37\xd8\x83\xf2\x8e\xf6\x3b\x1f\x7c\xed\x0c\x06\x00\x00\xfe\x74\xaf\x39\x08\xae\x7f\x1f\x5a\x00\xfe\x2e\x01\x1f\x00\x20\x14\xbc\x06\x45\x1e\x8e\xf5\xb2\x2f\x20\xcd\x93\x65\x35\x15\xfe\xdf\xfc\xf9\x10\xc3\x68\x8c\x0a\xa6\xc8\x73\xeb\x67\x16\x1b\x5b\xb8\x71\x92\x05\x13\xfa\xed\x9c\x0f\xc6\x74\xc2\x85\x10\xa2\xd6\x42\xf8\x99\x8d\x03\x69\xdf\xd4\xa0\x91\xbf\x41\x0f\xac\xc9\x79\x60\x5d\x8a\xa6\x43\xcc\x8c\x5e\x00\x10\x23\x72\xb1\x21\xfd\x81\x73\x92\x25\x51\x60\xb6\x0d\xad\xf2\x37\x78\x79\xb6\x01\x5d\x99\xae\x5f\x02\xd0\x0d\x36\x60\x5f\x02\x80\x50\xe2\x35\xa0\xe0\x0a\xba\xc3\xb5\xd7\x58\xca\x41\xc1\x21\x17\x81\x21\x64\x7e\x3d\x76\xd8\xa6\xb2\xa3\xcb\x22\x88\x30\x52\x39\x6f\x1e\xa1\x66\x78\x57\x80\x3e\x10\x95\xd7\x25\x14\xfe\xe1\xd2\x07\x70\x7d\x94\x43\xc0\x37\xbc\x96\x43\xa4\xc9\xe1\x22\x50\x5b\x0c\xc1\x90\xb6\xd8\x08\x4b\x10\x4c\x3d\x22\xbb\x19\xc3\xaa\x99\x45\x59\x8a\xf5\x1a\x35\xe8\x7c\x06\x00\x98\x69\xa5\x61\x6d\x41\x99\x57\x02\xa7\x8b\x44\x16\x00\x8f\x6c\x5e\xe4\x39\x3c\xe4\xc1\x24\x94\x27\x9a\xdc\x8d\xd9\x01\xd7\x7a\x36\x2d\xe8\x4a\xb3\xc2\x46\x62\x96\x82\xdb\x9a\xd6\x47\xbe\x92\x06\x41\xfe\xfd\x3c\xfa\x35\x98\x06\xbf\x3a\x8f\x9b\x1d\x7c\xb3\xba\x49\x1e\x41\x1b\x51\x9a\x5e\xa6\x95\xec\x86\x90\x9a\x98\x91\xb4\x26\xde\x06\xbc\x64\xca\xe7\x7d\x1d\x17\xaf\x33\x80\xd6\x58\x41\x59\x0d\x7a\x93\x67\xd5\xce\x0d\xb4\xf9\x08\xe2\x15\x86\xb6\x90\x01\xc2\x94\x4e\x50\x1d\x8a\x83\xcb\xaf\x02\xeb\x2e\x8a\x7f\x16\x77\xe8\x1c\x45\x68\xb0\x21\x43\xda\x96\x2f\xf0\x5c\x61\xd2\x70\x9c\x39\x90\xaa\x11\x9e\xc6\x59\x00\x7f\x48\xb8\x81\x39\xb9\x72\x05\xc7\xfb\x23\x6c\x93\x7a\x6b\xd0\xb3\x60\xca\xc5\x38\xb2\x61\xa3\x51\x37\x11\x35\xda\x60\x2a\x54\x82\xc8\x20\x66\x82\x66\x77\xf3\x56\xca\x05\x60\x0f\x6c\xb9\x10\x6d\xdc\xca\x32\x71\xdc\xde\x44\xc0\x8e\x8c\x38\x4c\xdd\xe1\xc3\x60\x1a\x9c\xef\x28\x58\x96\x35\x8e\xe4\x9f\x35\x24\xd8\x64\x06\x27\xcf\xb9\x9d\xe2\xd4\xae\x18\x48\x06\x96\x60\xc8\xb8\x00\xbf\xe0\x7e\x4d\x0b\xbf\x52\x2e\x14\x75\x16\x68\x23\x70\x49\xa1\xab\xa6\x15\xa8\x36\x00\x73\xbc\x0b\xfc\xbc\x66\x6a\x45\x3e\x1b\x88\x07\xdd\xb8\xf7\x34\x79\xe7\xcc\xe0\xb3\x30\x77\xd9\xfc\x46\x2f\x83\xd0\x18\x6d\x36\xf0\xb9\x04\xe8\x65\x4c\xe8\x19\x00\x69\xa7\xe1\xb4\x8e\x49\x69\x9b\xe5\x61\x54\x28\xc9\x86\xaf\xe8\xdf\x5f\x2c\x7b\x1b\xde\x11\xf7\x5b\x96\x80\x52\x1f\xcd\xc8\xfe\x7a\x21\x6c\x95\x2c\x86\x0f\x3e\x40\xac\x0d\xf6\x78\x16\xb6\x5a\xf7\x2c\x42\xfb\xf3\x2c\xea\xab\x69\x59\x76\xfc\x2c\x0e\x6c\xf9\x53\x11\x5e\xf9\x4d\x73\xbd\xf5\x31\x54\x3f\x5d\x75\xd6\xc5\x00\xb5\x0d\xd0\x4f\x7f\x83\xa1\xa9\x7a\xeb\xad\xb3\x1e\x3a\xaa\x0b\x4d\xd7\x4b\x7b\xf5\xa1\xf1\x7a\xe8\xa1\xb6\x05\x2d\xdc\x7f\xe3\x75\xcc\xdb\x3b\xea\x67\x90\xbc\x0e\xad\xce\x6c\x6d\x0d\xd8\x85\x5d\xb5\x05\xbf\xfd\x74\xed\xf5\xd6\x4b\x30\xaf\x76\x36\xb0\xf0\xda\x3a\xb7\x2a\x3c\xe0\xe6\xf5\x9b\xdc\x91\x85\xd7\x27\xaa\x68\x44\xcf\x28\x78\xb8\x3a\x4c\xef\xb6\xf4\xe6\x1e\x0e\xb1\x04\xe8\xf5\x0f\x00\x78\xb5\x6f\xee\x53\xcd\xed\x8f\xd3\x3d\xe7\xd5\x63\xe4\xc7\x5e\x5e\xd3\xff\x1b\x8d\x01\x00\x00\x00\x01\x00\x00\xff\xff\x9d\x75\x47\x3d\x0c\xad\x00\x00") func vendor_material_icons_materialicons_regular_woff2() ([]byte, error) { return bindata_read( _vendor_material_icons_materialicons_regular_woff2, "vendor/material-icons/MaterialIcons-Regular.woff2", ) } var _vendor_material_icons_readme_md = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\x8e\x31\x6e\xf4\x20\x10\x46\x7b\x4e\x31\xf2\x5f\xfe\xc2\xf4\x56\x36\xe9\x12\xa5\x48\x13\xe5\x00\x8b\xcd\x18\x46\x01\x66\xc5\x0c\x5a\xf9\xf6\x11\xde\x84\x86\x62\xbe\xa7\xf7\xbe\x12\x42\xc3\x8d\x4b\xc1\x1a\x30\xc0\xdd\x1f\xa0\x0c\x5d\x10\x34\x21\x7c\x78\xc5\x46\x3e\xc3\xfb\xc6\x55\x60\xe7\xaa\x40\x02\xeb\x01\x99\xea\x37\xd5\x38\xc6\x63\x78\xc7\xf5\x71\x4d\x2c\x8a\x01\xb8\xc2\x1b\x73\xcc\x08\xaf\x5c\x55\x16\x63\xae\xd7\x6b\xd2\x92\xcd\xd3\x20\x21\x35\xdc\x2f\x53\x52\xbd\xc9\xe2\xdc\x20\x65\x8e\x27\xe0\x6f\x24\xf3\xc6\xc5\xd1\xc6\xf5\x65\xf7\x85\xf2\x71\xf9\xeb\xf8\x7f\x76\x4c\x06\xce\xd7\x30\x5f\x26\xd1\x23\xa3\x24\x44\x9d\x9e\x87\xc4\x98\x4f\xf4\x01\x0a\x37\x04\xaa\xc0\xbd\xc1\xde\x73\x86\x2e\x3e\x22\xc4\x4e\x01\x17\x33\xc4\x8b\x73\x0f\xe3\x1c\x49\x53\x5f\x67\x62\x57\x7e\x3d\x36\xa0\x50\xac\x76\x34\x88\xfb\x37\x3e\x3b\x22\xed\xce\xcd\x6a\x42\x7b\xc7\xd5\xfc\x04\x00\x00\xff\xff\xfc\x28\xf6\x83\x3c\x01\x00\x00") func vendor_material_icons_readme_md() ([]byte, error) { return bindata_read( _vendor_material_icons_readme_md, "vendor/material-icons/README.md", ) } var _vendor_material_icons_codepoints = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x5b\x5b\x96\xb4\xaa\x0e\x7e\x67\x14\x3d\x04\x15\xaf\xa3\x61\x71\x89\x55\x9c\x56\x71\x03\x56\xed\xfe\x47\x7f\x56\x02\xa8\xd5\xff\x7e\xa9\xc5\xf7\x05\x6f\x21\x84\x24\x50\xdc\x08\xef\xa2\x8c\xd6\x6d\x5f\x30\xb6\x86\x49\x2d\x8e\xcd\xc6\x2f\x50\x5c\x31\xa9\x35\x84\x20\xe4\x22\xfd\xfa\x05\xf5\x54\x7d\x30\x01\xa9\xba\x50\xd1\xae\x80\x44\x93\x09\xab\xec\x62\xe3\x0f\xde\x15\x4e\x6a\x81\x2f\x98\xea\x16\xb1\x3b\xb6\x28\x94\x5c\xe4\xa6\x01\x3b\xcd\xbf\x49\xf1\x96\xcb\x02\xf1\x0b\xc6\xae\xba\x64\xee\x5f\x24\xea\x93\xd0\xd6\x6b\xbc\xeb\xd8\x71\x26\x8d\xfa\x82\xbe\x02\x26\x8d\xf9\x82\xba\xed\xb0\x21\xa4\xd8\x9f\x2e\xba\x2f\x68\xf9\x94\x88\xf2\x39\x3c\x43\xf0\xf1\x0b\xaa\x2a\x41\x7a\x42\xdd\xf6\x04\xca\xdd\xeb\x76\xb8\x61\xe1\x8e\xb8\xd8\x8d\xf8\x91\xf8\xc5\xe9\xac\xc3\xae\x4f\x3d\xc3\xd3\xed\xbb\xdd\x1e\x42\x4b\x4f\xdf\xd0\x12\x1d\x5d\x7a\x9b\xf0\x05\x7c\x32\x85\xfa\xe7\x80\x03\xbe\xa0\xea\x34\x93\xe6\x7f\x47\x88\x28\x05\x26\xad\xc7\xc7\x88\x00\x32\x8a\x79\x91\xf1\x0b\x7a\x5e\xfd\x4d\x0b\xb9\x3d\x16\x30\x28\xad\x3f\xa5\x76\x33\xf6\x65\xcd\x21\x17\x11\x0e\x1b\x01\xbb\x34\x9f\x5d\x16\x78\x78\xe7\x56\x01\xff\x46\x2f\x51\xce\xff\x5b\xbe\x39\xbf\xca\x05\x3b\xb4\xff\xdd\xc1\x83\x39\x74\x7a\x8b\xee\xb3\x87\x07\x4d\xe0\x7c\x44\xff\xdf\xf2\xeb\x11\x03\x76\xd8\x17\xb9\xc1\xea\x0c\x08\xa9\xa3\x7d\x91\x75\x75\x9f\x02\xbb\x5d\xa2\x36\x8b\x7e\x50\x91\xa9\x9f\xf3\x51\x84\xe7\x11\x23\x8e\xa1\xe2\x9a\xe5\xa1\x1f\x51\x8e\x4d\x41\x96\x32\x76\x7d\x86\x6e\x9e\x11\x0e\x05\xe2\xa4\xe8\x46\x26\x17\x75\xac\x5f\x50\xd5\x13\x93\xcb\x22\xec\xa6\x97\x23\xd0\x63\x15\x37\x44\xb9\x23\x7e\xc1\x54\x29\x26\x37\xe3\x9d\xa5\x9b\x4e\x4c\x6e\x9b\x3b\x36\x0d\x2b\x6c\x64\x03\x92\xc9\x7d\x0f\x5f\xd0\x69\xce\xa4\xd7\xcf\xf4\xe6\xed\xc4\xa4\xf7\xee\x2d\x94\xd4\xdf\x28\x6c\x33\x36\xee\xbd\xbd\xa5\x37\x5f\xd0\x19\x55\x38\xef\x76\x12\x60\xc7\xee\x37\x79\x1a\x6c\xa7\xfb\xbb\xec\xd8\x91\x1a\x32\x35\x3b\x9f\x6f\xab\xc7\x4c\x1d\x7b\x79\x10\x32\x51\x44\x4f\xef\x52\xf5\x15\x93\x61\x07\x1d\x85\x47\x03\xc7\x8f\x50\x4c\x86\x00\x21\x94\x8f\xd2\x88\xed\x63\x2b\xd8\xdc\x30\x1a\x20\x72\x70\xe7\x16\x19\x69\xc2\xce\x77\xd2\x43\x3c\x3c\xaa\x9b\x9e\xf8\x8b\x46\xab\x1a\xfb\xfa\x2e\x48\xb4\xb0\x74\x49\x43\x92\x10\xe5\x46\x33\x67\xbe\x60\x99\xfb\x5c\x56\x4c\xc6\x28\xf5\x53\xcc\x16\x15\xd4\x34\x7d\x21\x56\xb7\xc1\x0f\x32\x43\x66\xd2\x97\x34\x4a\x33\x79\x18\xeb\xb2\x2e\xb8\xac\x99\x3c\xa2\xf3\xb0\xc1\x1b\x9f\xca\x99\x7c\x91\xdb\xf3\x68\x1a\x8a\xe1\xf0\x85\x5d\x6a\x1a\x53\x49\x10\xf5\x3e\xf6\x2d\x53\x32\x46\xf0\x3f\xc5\xd7\xd4\x93\x3e\x29\xfd\x94\xfe\x81\x8e\x62\x3e\x96\xe5\x0b\x6a\xc9\x4f\x51\x61\xae\xeb\x43\x44\xc7\x26\xbb\x93\x38\xb6\xef\x8d\x8c\xa1\x96\x3d\x53\x80\x9f\x93\x7c\x2d\x9a\x26\x30\x05\xb0\x3d\xc1\xa3\x41\x34\x86\xa9\xc5\xe1\x87\xd4\xad\x62\x6a\x39\x20\x3a\x17\x9f\x78\xe5\x70\x41\x41\x5f\x8c\x5e\x74\xbe\x91\xda\x6d\x1b\xe8\x08\xf4\xf0\xf1\x26\x30\x36\x48\xb5\x24\x7e\xba\xf1\x01\xc8\xbc\xb7\x07\x0a\x24\x0a\x3c\x99\xe6\xb1\x48\x8f\x9a\x6c\x12\x85\xb3\x3e\x11\x3c\x11\x34\xff\x38\x7e\x30\xa1\x0d\x41\xc7\x94\x73\xdf\xa8\xc7\xd4\x5a\xa5\x27\xd4\x9f\x48\x28\xe7\x0d\x8e\xc2\xd8\x0f\x2c\xb5\x85\x44\xd5\x35\xcd\x58\xb0\x72\x31\xba\x15\xa9\xa9\x50\x7a\xa1\x87\x37\x8d\x3c\x19\xb7\x38\x62\x54\x61\x9e\xce\xdb\x3f\x6e\x8b\x92\xee\xa6\x0b\x6d\xb7\x0d\xa8\xa3\x29\xcc\x02\x33\xda\x4c\x03\x85\x70\x47\x4c\x5d\xe6\xc2\x78\xfb\x78\x62\x1f\x5e\x15\x26\xc4\x1f\xb2\x45\x5e\x17\x26\xba\x1d\x71\x53\xf0\x0b\x7c\xb4\x9a\x9e\xce\x39\x53\x5e\x6e\x06\x6d\xe5\x2d\x23\xf8\xa4\x88\xaa\x57\x4c\xd1\xad\x37\x5c\x86\x6b\x54\x59\x7f\x67\x1a\x64\x86\x3b\xc3\x91\x19\xef\x4c\x8b\xcc\x74\x67\x3a\x64\xe4\x9d\xe9\x91\xf9\x78\xd6\x80\x8c\xbe\x33\x38\x3f\x70\xc8\x3f\xba\x3d\xed\x83\xcc\xec\xa3\xe7\xe2\xde\xc8\x99\x3b\xb7\x82\xb1\xe8\x67\x6b\x09\x4c\x79\xf7\x0d\x9b\xb0\xab\x7c\x00\x3e\x06\x3b\x1e\xe1\x89\x4d\x60\xea\x50\x6a\x01\x9a\x3a\xb8\x26\x1a\xc3\xd4\xf1\x10\x1e\xd0\xe1\xa3\x15\x8c\x4c\x1d\x76\x21\xa7\x31\x31\x75\xf8\x10\x05\x2e\x17\x18\x02\x68\xa6\x8e\x60\x37\x9a\x21\x95\x9c\x4f\x24\x34\x6c\x34\x60\x8a\xcf\x4c\x4b\xfd\x4c\x3e\x47\x32\x2d\xbf\xe1\x0b\x06\x98\x98\x26\x9b\xaa\x54\x45\x2d\x01\xe8\xda\x2a\x55\x27\xb4\x4a\xbc\x7f\xa5\x9a\x0c\xc1\x3f\x08\xf3\x8c\x6d\x08\x40\xfd\xdb\x3b\x81\x56\xf2\x70\x34\x4f\x2a\xc8\x12\x0f\x1a\xec\x2b\x75\xee\x12\x15\xf6\x05\x43\xb2\x4a\xf5\x09\x47\x47\x4b\x22\xce\x8f\xaa\xd7\x4c\xcb\x15\x70\x61\xe5\x72\xce\x6d\x21\x17\xf4\x84\xf4\xaa\x84\x61\x7b\xe6\x40\x6b\x2e\xfd\xc5\xec\x1d\xf9\x4b\xfa\x04\x62\x7c\x9a\x8d\xf4\x11\x89\x70\xf8\xc9\x9c\xbe\x62\xd3\xb0\xe0\x92\x81\x8a\xf0\x46\x3c\xec\x1c\x35\xad\x19\xe3\xdc\x27\x6a\x85\x55\x81\x0f\x4f\x8b\x5e\x6f\x1e\x12\x19\xbd\x7c\xe1\x85\xe3\x3c\x32\x2d\x83\xdd\xdc\x17\xa8\x16\x5f\x8c\xc2\x9c\x6a\xa0\xd6\xdd\xc5\xf0\x6a\x64\x69\x34\xc4\xec\xf4\x11\x44\x88\xde\xa1\x8a\x38\x2a\xef\x2e\x78\x83\x44\xc7\x8c\x6a\x7a\xca\xed\x01\xe2\x69\x43\x74\x1e\x83\xce\x5e\x21\x47\x4a\x1b\xa8\x25\x92\xd1\x7c\x41\xa5\xe5\x9d\xb8\x82\xb9\x4a\xe3\x35\x90\xd6\x60\x99\x9a\x39\xe0\xe4\xed\x05\xcb\x05\x42\x2d\x72\x43\x4f\xc4\xbb\x2c\x3c\x63\x51\x1c\x93\x27\xbc\xbc\xdb\xb2\x5f\xe8\xd2\xad\x89\xc9\x6e\xa0\xd3\xd8\xc9\x2e\x06\x23\x44\x8c\x24\xda\x3a\xe3\xd9\x5b\xd8\xcc\xf2\x83\x5c\xc3\xf4\xd3\xbb\x15\x70\x68\xd0\x1f\x24\x33\x1e\x7b\xc3\xf4\x22\xd1\x86\xc7\x1e\x58\x76\x64\x75\xab\x53\x53\x64\x43\x1d\x99\x5e\x5c\xa0\x68\xc0\xa4\x26\x3e\x6c\xcf\x86\x53\x63\x6f\x77\x18\x5c\xe9\x4c\x6a\x9e\x5f\xd0\x28\xc8\x8c\x71\x1b\xe1\xf9\xc4\xef\x6d\x71\x12\xaf\xd2\x55\xe6\xc8\x6b\x37\xba\xce\x30\x47\xb3\x8d\x6e\x32\x71\xec\xe5\x0a\xce\x74\xfe\x80\x99\x69\xb7\x2c\x40\x56\x8c\xc1\x30\x9a\xf6\x45\x88\xcb\xd1\xb7\xbc\x66\xe4\x97\xc5\x02\xa9\xe7\x90\xb0\xfd\x83\x8e\x01\x3f\xd2\xad\x69\xc5\xae\xd4\x84\x60\x27\x7d\xf2\x0b\x08\x8a\x71\x02\xa6\x1e\x1d\x71\xc9\x35\xf3\x4a\x32\xed\xb6\xd9\xfa\x95\x82\x77\xb1\x1d\x68\xbf\x18\x7f\xe2\x4d\xb7\x28\x75\x14\xab\xb4\xa8\x4b\x53\x9d\xcc\xfe\x74\xc9\x5a\xe6\x42\xa1\x2b\x51\x74\xaf\x88\xa1\x89\x76\xfb\x0f\x8e\x86\xb9\x18\x8c\x0e\xeb\x16\x4e\x62\x97\x21\x52\x98\x90\xee\xe1\xdd\x22\x76\x67\xd3\x6c\x94\x9f\x94\x30\xc7\xbe\x58\x4d\x31\x13\x57\x8a\xe1\xdd\xb3\x09\x4d\x95\x66\xda\x03\x89\xea\xae\xca\x6d\xb1\x01\x86\x78\x0b\xad\x88\x8d\xa6\x2e\xc6\x46\x91\x27\xeb\x80\xfd\x70\x95\xe1\x38\xc6\x18\x1c\xd6\xbd\x98\x10\xea\x04\x39\xad\x18\x68\x12\x88\x3a\x5a\x1b\x70\xf8\x11\x0d\xb4\x2e\xe8\x74\x0b\x61\x30\xfa\xe2\x38\xee\x88\x66\x0f\xf8\x8a\x38\xea\x08\x17\xb9\x99\xa0\xe5\x4e\x1c\x4f\x9c\xf3\xf6\x61\x37\x5c\xcd\xb8\x6e\x13\x85\x2e\xdb\x4b\xf4\x6e\x5c\x77\x89\xa2\x84\x94\x9c\xf5\x90\x88\xf0\xcf\x91\x86\x54\xf7\xcc\xc8\xf0\x54\x2e\x7f\x4a\xcd\x8c\x8c\x52\x1c\x81\x16\x89\x5a\xce\x88\x41\x78\xf4\x05\x38\xda\x3d\x33\xf0\x94\x64\x27\x7a\x60\x06\x16\xa0\xc8\x73\x68\x72\x1b\x23\x61\x78\xa1\x9e\xa6\x46\x15\x2e\xbc\x01\xf6\x2f\xa8\x7b\xcd\x0c\x04\xed\x6d\x9e\x30\xe3\xc0\x91\xf8\x8e\x6e\x17\xab\xd4\x68\x3f\xea\x24\xde\x76\x33\x64\x62\xbc\xc2\xcb\xa2\xb4\x0b\x02\x3d\x32\x03\x2f\x58\xdc\x4e\x21\x08\xbd\x36\xaf\xcc\x8d\x4c\x13\xba\x56\x15\x72\x56\x83\x78\x1e\xea\x0b\x38\xef\x32\xc6\x24\x5b\xd5\x05\x08\x17\x9f\x64\xba\x7c\x60\xc6\x62\x34\x29\x02\x7a\xdb\x4a\x29\xc2\xbb\xa4\x65\x43\x33\x63\xfd\x39\xb7\xba\x06\x6e\x58\x28\xfb\x4d\xf1\xe0\xfc\x41\x3a\xf4\x95\x1d\x6f\x3e\xc8\x03\xaf\xe6\xd5\x9d\xd3\xe8\x69\x3a\x5e\xdf\x39\x2f\xed\xf2\xc6\xbc\xab\xe3\xed\x07\x7f\x50\x42\xdc\xdf\xb9\x70\xa8\xdc\x95\xdf\xe9\xe8\xe5\x16\x2c\xbd\x42\x77\xe7\xdf\x72\x41\x77\xcc\xf1\x1e\x41\xe7\x88\xb8\xaf\x2b\x66\xf0\xcb\xc6\xa1\x63\xc6\x89\xcd\x45\x8c\x44\xe3\xe1\x31\xff\xaf\x9b\x5f\x5c\x5a\x0c\xfb\xba\xfe\xcd\x93\xdf\xea\x5b\xfe\x17\xbf\x21\xdd\x32\x43\xe1\x32\xaf\x80\x19\xb7\x4a\x34\xf6\x01\xb0\xbd\x91\x11\xf5\xd4\x4a\xbe\x76\x1c\x06\x44\x07\x26\x37\x3e\xd9\x5e\x21\xc2\x4a\x3d\xa6\x7a\x64\xc6\xcb\x19\x9d\x45\xdd\xd5\xd8\x7e\x88\xa7\xdc\x0c\xb9\xdb\xce\x30\xe3\xed\x0b\x04\x44\x4c\x90\x6b\xce\xcc\x0b\x3d\xba\x6a\x18\xce\x5d\xb4\xa4\x89\x5a\x1f\x95\x86\x91\xc1\xff\x40\x63\xc4\x33\x2b\x06\xd9\x53\x29\x60\x79\xb1\x37\x02\x36\xed\x7f\xb2\xf9\xf6\x7c\x66\xf0\xcf\x21\x17\xfb\x27\x25\x2c\x86\x81\xf7\x18\xee\x56\x55\x95\x9a\xb7\xa5\xb0\xaa\x19\x1c\xde\x89\xf0\xb3\x2a\x87\xaf\xdf\xf4\x0c\x5e\x22\xc4\xf3\xe1\x86\xc1\x2b\x65\x7c\xc3\x98\x9a\x42\xbe\xa4\x5d\x24\x2d\xb2\x7d\xdd\x66\x52\x1d\xe1\x07\x71\x97\xf1\xe6\xa8\x0c\x51\xf7\x19\x07\x90\xe4\xca\x38\x83\x7f\x6d\xa4\xd0\x66\xc7\xf8\x61\x98\x18\xfc\xbb\xcb\xcd\x88\x85\x82\xb5\x4e\x43\x21\x56\x47\x19\x8d\x9e\x91\x58\xac\xa6\xd8\xa8\x26\xf1\x42\xa2\x71\x90\x08\x5c\x38\x92\xdb\xb8\x90\xd8\xe0\x41\x31\xb2\x56\x9f\x1c\xfa\x3c\xad\x2f\x6e\x5f\x8e\x14\x4c\x6b\xf3\x8b\xa4\x9e\x70\x91\x7f\xc0\x63\x82\x49\x6f\x13\x61\x0b\xd9\x59\x28\x36\x53\x2a\x38\x0e\x9a\xcd\x18\xe1\x9c\x59\x77\x55\xcf\x89\xf1\xf0\xa6\xfc\xb8\x6a\x2a\x36\xcb\x97\xf3\x36\xb9\x27\x73\xa2\x2b\xb3\x19\x80\xcd\x20\xe3\xe1\xc1\x88\x7d\x91\x3f\x62\xb1\x18\x3f\x55\xbd\xb9\xf8\x97\x35\xe0\x90\xc3\xbe\x60\x52\x39\x61\x1c\x66\x36\x5b\x05\x5e\x90\x49\x55\x9d\xc9\x70\x95\xdb\x21\x29\xdc\x74\xf4\x56\x7d\x9d\x05\x94\xde\x56\x1d\x64\xb8\x5b\x0a\x33\x65\x86\x61\x95\x3e\xde\xae\x6a\x18\x26\xd4\x1f\x71\x41\x9b\xa8\x6b\xd9\xef\x91\x48\x6b\xae\xe1\xb9\x4d\xca\x35\x55\x41\xa8\x55\x53\x17\x84\x19\x8a\x69\x0a\xc2\x15\xc8\xb4\x05\xe1\x0a\x64\xba\x82\x30\x2b\x31\xe5\xfe\x94\x91\x98\xa1\xa0\x11\xd1\x58\x10\xae\x71\x66\x3a\x11\x0d\x26\x52\xb2\x50\x4a\xa0\x71\xbd\x91\x53\x85\xbb\x87\x9b\x28\xd0\x45\x60\xbc\x5c\x31\xe4\x36\xa6\x30\xb3\x97\x2b\x50\x27\x28\xd4\xd3\xd0\x27\xcf\x05\xa7\x31\xab\xbb\xf3\xcb\x36\xf2\x25\x1c\x4e\x35\x44\xbb\x44\x11\x9e\x16\x83\x46\x0e\x67\xbf\x97\xdd\x62\x4a\x84\x00\xf5\xb7\x19\x61\x37\xb1\x13\x33\x8e\x55\x62\x3c\xec\x4b\xb2\xb8\x11\xf5\xb8\x3d\xc0\xef\x9e\x62\x8a\xa9\xc2\x97\xc4\x2c\x28\x5d\xd2\xd1\x67\xc4\xcf\xb4\xa7\xe5\x6c\x5e\x24\x26\xec\x1d\xb5\x68\xe6\x40\x8b\xcd\xf0\xcc\x89\x1d\x87\x2e\xe3\x94\xa8\x43\x5f\x20\x06\x02\x30\xb0\x79\xc9\xc1\x2d\x9f\x72\x9b\xe2\x00\x7c\x85\xb6\x10\x51\x7e\x03\x5d\x3e\x55\x78\x37\x5c\xbe\x38\x8c\xd4\xc2\xd9\x9f\xad\x76\x6c\x4e\x26\xe7\x29\xe3\xc8\xd9\x15\xd6\x0c\xb9\x2d\xdc\x0e\x1b\x12\x63\x21\xc2\x53\x7a\x20\xb3\x9b\x4e\x6a\x07\x6d\xa9\xb2\x58\xe3\x75\x18\x54\x9d\xe6\x5a\xf7\x48\x61\x08\x28\xe4\x62\x1f\xdb\xa9\x91\x86\xb7\x9f\x82\xff\x1d\x21\xda\xf9\x07\x25\xdd\xa7\x24\x27\xff\xbc\xff\xa4\xcf\x84\xff\x7c\x82\x72\x98\x95\x36\x7c\x2c\x44\xa9\x41\xa0\xbe\x32\x43\xb1\xee\x6c\xa9\x7e\xc1\xe5\x27\xed\x21\x00\xdd\x51\x7d\xf2\x11\xfe\x25\x5a\x17\xda\x6e\x06\x9d\xab\x01\x8c\x09\x03\xd5\x18\xcc\x2f\x99\xdd\x2e\x19\x9c\xb2\x28\x17\xab\x91\x9a\x0b\x95\xea\xb4\xbb\xd4\x94\xa6\x36\x6d\x75\x09\x02\xba\xf7\x05\xa3\x26\xfc\xaa\xb6\xfe\x90\xa4\x68\x3a\x49\x9a\x22\xd9\x25\x59\x64\x83\xd6\x96\x98\x7f\x0e\x5a\x10\x9a\xf6\xd4\x76\x78\xca\x1d\x27\x52\xd3\x9d\xaf\x15\x28\xd8\x6f\xda\x53\xef\x21\x7a\xfb\x0d\xf1\xe9\xdd\xf1\x78\xa2\xe4\x54\x3d\xaa\xe2\x0c\x20\x04\xe5\xca\xa8\xe0\x76\xf8\xef\x0e\x1e\x3b\xa0\xaa\xdb\x73\x4c\x8e\xcd\x00\x55\xa7\xe9\xd5\x69\x60\xa8\xfa\xab\x48\x25\xc9\x87\xd7\x5d\x5b\x80\xa8\x2b\x74\x97\xfd\x89\x39\xe1\xe1\xc4\x1d\xc2\x91\x61\x7c\x2c\x94\x07\xf9\x3d\x53\xea\xab\xf0\x8b\x8f\x65\x09\xda\x03\x9a\x70\x87\xce\xf0\xc4\x02\x57\x43\x24\x6b\x36\x1f\x5b\x09\xe5\x9a\x56\xb2\x47\x0a\x96\x52\x15\x75\x6a\x06\xf6\x90\x2b\x50\xe0\xc7\xab\x99\x00\xe6\x23\x4d\xcd\x1e\x29\xf1\x9e\x2a\x60\x0f\xc0\xc8\x86\xd2\x84\x8e\x3d\x20\xe6\x35\x76\x6c\xd9\xc3\xd2\x4c\x1c\xd9\xc3\x2d\xb3\xd0\xee\xf0\x81\x92\xd1\x8e\x3d\xf6\x20\x66\xfb\x2f\x15\xf7\x14\x27\x88\x41\xd2\x49\xb5\x44\xd1\x4c\xae\x55\xc7\x1e\x9e\x2a\x20\xe3\x98\x9a\x96\x62\x03\x0e\x13\x22\xca\x13\x40\x62\x73\x7f\x5a\x2d\xe0\x1f\xbc\x66\x64\x0f\x6f\x4d\x71\x25\x2a\x23\xea\xaa\xd9\xc3\xbb\x63\xc7\x80\x6b\x4e\xcd\x54\xa9\x1f\xe6\x2a\xc3\xb7\xa3\x2a\xe0\xd8\xb3\x27\x2e\x43\x5d\xc3\x9e\xa6\xd4\x0f\xc1\x24\x40\xb7\x02\x6a\x9f\x25\x84\xb9\x26\x9c\x2b\x07\x73\xc3\x9e\x20\x0d\x4d\x2a\x5e\x57\x05\x88\x15\xe7\x00\xaf\x6b\x24\x16\x9b\x2e\xe4\x08\x7c\xaa\xd5\x34\x08\x16\x52\xe1\x40\xad\x2b\x74\x1a\x67\xc3\x9e\xf6\xf1\x14\x14\x6b\xc5\x1f\xec\xdd\x12\x93\x7d\x63\xd3\xcd\x17\xcc\x3b\x0e\xe3\xc8\xae\xd2\xc5\x38\xb1\xa7\x5b\x49\x97\x92\x3d\x5d\x14\x11\x53\x02\xd5\xf6\x08\xa8\x06\xc3\x91\x3f\xfc\x63\x91\x21\x08\x58\x77\xda\x66\x1b\xd5\x8d\x4c\x81\xf2\x38\x6a\xf6\x8c\x71\xc7\x11\x6e\xa8\x85\x41\xf3\x68\x58\x29\xab\xcd\x6d\x6a\x8a\xcf\x22\x3f\x9f\x3b\x66\x57\xda\x3e\xb9\xa5\xb8\x50\x15\x12\x63\x1f\xda\x33\xd3\x3c\x53\x92\x9c\x4d\x4e\x58\xa6\xba\x61\x76\x4b\x1b\x69\x5d\xcf\xd0\xdf\x44\xf0\xab\xdd\x30\x39\xbb\x95\x55\xa6\x6a\x62\x76\x9b\x1d\xbe\x13\x50\xeb\xa6\xc6\x71\x66\x76\xdb\x31\x71\x1e\xa7\x8a\xd9\x2d\x00\xbe\x4d\xaa\xf8\x35\xad\x3a\x99\x92\xfc\x37\xad\x2e\x5c\x0a\xa5\x73\x9d\xbf\x35\x85\x86\xd5\x45\xab\xd1\x2a\x9a\x16\x0a\x69\xb7\x97\x2d\x41\x6d\xd3\xce\x85\x5e\xec\xf6\x8d\x43\x75\x3e\x39\xef\x23\x34\x5d\xcd\xec\xf6\x4a\x4f\x5e\x9c\x47\x7d\x4e\xbf\xa8\x34\xa6\x95\x6e\x99\x0d\xa4\xcc\x9e\x7d\xc3\x4f\xc9\xfe\xea\xe6\x44\xe2\xda\xe6\x41\x01\xff\x2d\x48\xcb\x0a\xaf\xdb\xdf\x82\xbc\xb0\xf0\xba\xfb\x2d\xc1\x39\xc3\xeb\xeb\x81\xe2\xb6\x29\xc1\xeb\xe1\xe2\xb5\xdc\x43\xda\x0e\xe0\xf5\x78\xd1\x4f\x6b\xa8\xa7\xbc\xa8\xb2\x33\xc3\x6b\x75\x91\x51\x62\x96\x5a\xeb\x8b\x79\x39\x9b\x1e\x62\xd8\xb7\x8d\xfa\x89\x2e\x4d\xb5\x03\x5b\xa4\xa2\xf2\xdf\xd4\xa4\xe6\x6d\x88\x27\xce\xee\x55\x82\x19\x3b\x6f\x8f\x23\x85\x35\x53\xcb\x16\xb9\x53\x3d\x9c\xd7\x90\xdb\x22\x55\xc3\xd2\x86\x00\xaf\xe7\x42\xa7\x7c\xbc\xa9\x0a\xbe\xd2\xf1\xa6\x66\x8b\xbc\x45\x3e\x86\x2d\xf2\xd8\xf4\x13\x9f\xd0\xb1\x45\xfe\x80\xa7\x24\x57\xe5\x76\x59\x91\x3b\xae\xd9\x02\xf2\x3b\xf9\x1d\x3e\x8f\x09\x79\x58\xdd\x8b\x5e\x76\x62\xb9\x1e\x35\x4b\xb6\x58\xe5\xa5\xff\x49\x7d\xab\x06\x4e\x02\x5f\x94\xbc\xf1\x7c\x52\xeb\x11\xd0\xb9\x54\xbc\x62\xe4\x01\xd4\xb1\xa8\x4b\x27\x53\x85\x3d\x71\xc1\x4d\x5b\x03\x53\x3d\x25\xfc\x86\x5c\xf3\xa9\x25\x4b\xdb\x26\x22\x68\x49\x16\xde\xe3\x9d\xd0\x5c\xeb\x6e\xa0\x16\x95\xf9\x52\x49\xb8\xe5\x23\x4b\x51\xe7\x38\xf5\x6c\xc1\x79\x91\x1c\x57\xa5\x33\x8c\x2f\xcc\x0d\x27\x86\x89\xe5\x92\x76\x5a\xc9\x6b\x75\x7c\x2e\x5c\xda\x49\x45\xca\x14\x2a\xae\x08\x21\x43\x45\x1a\x6b\xab\x0c\xb5\x9c\x51\xd7\x6d\x7d\x62\x2f\xde\x32\x3c\x91\x6b\x0a\xe7\xb6\x17\x6c\x16\x36\x8d\xdf\x9a\x12\xba\x96\x67\xa1\xb1\x1b\xf9\xd9\xae\xeb\x0b\xe3\xe9\x0b\xbb\xb6\xcd\xc4\xbc\x38\x4f\xdf\xd5\xb5\x5d\xa6\x1e\x32\xdc\x12\xd4\xb6\x5c\xfa\xf0\x4e\xa7\xbd\xb3\xfc\x94\x21\x0b\x9e\x2e\xec\x96\x76\x76\xba\x76\x3c\xb9\xe4\x61\xdb\xa2\x10\xb4\x16\x83\x57\x83\x7f\x91\x81\x77\xad\x2c\xa2\x34\xa2\x48\xa9\x4c\xa5\x5c\xbf\x6b\x75\xc1\xee\x65\xd1\x23\x76\x6d\xd1\x9c\x9b\x67\x20\x65\x15\xdd\xed\xd2\x7f\xa7\x8f\x6d\x8b\xc2\xf7\xa7\xf4\xab\xd4\x78\xe7\xae\x3a\x39\x4a\x15\xba\xae\x28\x75\xb7\x7f\xfe\x48\x24\x8a\x46\xd3\xd6\x77\xd7\x15\x25\xee\x2e\xd0\xf2\x92\xde\xba\x2b\x8a\xa3\x9c\x20\x3c\x71\x5e\x75\x5d\x51\x5d\x00\xea\x53\x34\x13\x9e\x96\x0e\x2f\x20\x57\x34\x13\xe5\xbf\x16\x71\x52\x0c\xc5\x4e\x9a\x0c\x65\x98\xeb\x8b\xba\x6d\x08\xaa\xfe\xa2\xb3\x47\x1c\x6e\x0c\x26\x95\x7a\xbc\x88\xfb\x96\xa1\xa2\x8e\xb8\xbe\x4f\xa9\x95\xa3\xfc\x71\x1a\x33\xbc\x7c\x08\xbe\x0f\x4d\x32\x3e\xeb\xd4\xa4\xec\x71\x56\x19\x60\xf2\x38\x9b\x0c\x30\x77\x9c\x21\x03\x4c\x1d\xe7\x39\x03\xd2\x6e\x5b\x55\x19\xc6\xb7\x43\x88\x5f\x86\x9a\xaa\x1a\x7c\xf0\xb1\x53\x1f\x54\xf8\x1b\xf5\x88\x29\xfa\x0f\x66\x10\x78\xfb\x1f\xb9\xd0\x32\x3c\x49\x96\x2a\x31\x75\x37\x52\xeb\x56\x55\x81\x9a\xad\x92\x14\xaf\xd8\x2a\xfd\xf7\xb1\x79\xa0\x1c\xa4\x9b\x6e\x98\x6a\xce\x69\xdf\x61\x52\x6c\x85\x95\xc2\x02\xde\x34\x6c\x85\xed\x40\x27\x86\x2d\xff\x00\x11\x7f\x76\xaa\x1e\x21\x0e\xa9\x08\x5a\xe9\x89\x51\xf4\x52\x35\xd4\xc8\x29\x66\xd5\x48\x42\x69\x20\x1a\xc5\xd6\x35\x60\x3a\x34\x32\x3a\x47\x71\xad\xa2\x1d\x4f\x4c\x2a\x3b\x35\x5d\xcb\x56\xb7\x41\xb4\x7f\xae\x61\x6b\x7a\x4e\xe4\x4f\x2e\xfc\x77\x1a\xa1\xcb\x1b\x15\xe5\x78\x4b\x5b\x61\x2f\x47\x41\x5b\x43\x2d\xa1\x24\x21\xe4\x3d\xd5\x80\x26\x6a\xa5\x4d\x56\xfc\xae\x24\xa1\x4d\x4f\x84\xf8\xec\xe8\xbc\xfe\xd1\xc9\x15\x2a\xb6\xba\x03\xc3\x53\xde\x60\x4f\x74\x5e\x4e\x94\x40\xa3\xc7\x4f\x79\x59\xfa\x56\x9d\x9a\x82\x0a\xe2\xe4\x0e\xda\xaa\xcd\x5c\xa9\x44\xb4\x5c\xb2\xf5\x58\xa2\x25\xf7\x7a\x6e\x25\xce\x8c\x1c\x74\x2e\x53\xb5\x55\x97\xf1\x59\x5b\xe1\x6c\xfd\xb9\x57\xe1\x3a\xcd\x36\x99\x82\xeb\xb6\xea\x73\x5b\xec\xe0\xf6\x85\xa8\x81\x6d\xf2\x65\x1f\x18\xfa\x28\x98\x5d\xea\x37\x5e\xe4\x46\xa9\x5b\x5b\x4d\x85\xca\xb7\x35\x8c\x9c\x3c\xc6\x81\x5d\x3f\xb1\x0d\x22\x86\xbc\x42\x03\x9d\x09\x50\x37\x26\x6d\x59\xf5\x6d\x75\x52\x38\x47\xe8\x24\x4e\x2d\x4f\xee\x6d\x67\x8b\x17\x22\xf3\x16\x1e\x16\xcc\xfd\x70\x6d\xe2\x35\xc3\x77\x10\x6f\x00\x5c\x43\x7a\xc9\xb6\x59\x63\x4f\xc5\x36\xf7\x59\x42\x6c\x6b\xa4\x82\xc5\x6c\x48\x6b\x86\xe9\x80\xc5\x64\x19\x02\x65\x80\x15\xe7\x2c\xe9\xad\xea\x67\x6a\xe5\xf3\x35\x13\xf5\xb5\xb3\x4d\x5a\x0b\x68\x05\xed\x27\x75\x9e\xf1\x19\xe6\xe1\x97\x24\x59\xf0\x30\x77\xbf\x78\xb2\xbe\x61\xee\x7f\xd1\xbb\x3c\x68\xab\x75\x98\x47\xe6\xe6\x99\x86\x97\x6a\x58\x53\x25\x99\xdb\x0c\xac\x72\x3b\x6b\x65\x3d\x97\xcc\x61\x6e\x8b\x73\x77\xaa\x35\x43\x47\x23\xec\x26\x94\x77\xef\x40\x95\xb7\xc9\x9c\x64\x3a\xf8\x31\x41\x22\xde\x36\x52\x18\x31\x33\x0c\x2e\xe8\xa3\x26\x6a\xbe\x2c\xf5\x93\x15\xdb\xe5\x02\x31\x19\x92\x64\xbb\xdc\x44\x74\xa9\x9a\xda\x21\x72\xa9\x86\xd4\x56\xea\x44\x62\xb6\xe1\x29\xe0\x87\x2e\xd1\x17\x7d\x3f\x87\xd0\x56\xe6\x12\x5c\x07\x04\xda\x0a\x2e\xfa\x6d\x0d\xa4\x63\x61\x28\xc0\x37\xf4\xf1\x27\x6f\x36\x0c\x33\xbe\x0b\x4d\xa4\x8a\xb7\xa9\x59\x4e\xb6\xcd\x76\x59\xd2\x50\x76\x9f\x82\xcb\x89\xf1\x9e\xed\xf2\x27\x9f\xf6\x91\x35\x2b\xa6\x3e\xcc\x2a\xb7\xaf\xce\xc3\xac\xd9\x0e\x7e\xcd\xf1\x48\xca\xab\x46\xd9\x64\x32\xef\xa8\x61\x1c\xb3\x19\x8c\x21\x46\xc9\x93\x88\xf6\x75\x02\xc4\x48\x0b\xc2\x28\xdb\x4c\xa7\x3d\x12\x4c\x15\xf2\xa6\x1d\x0a\xbb\x24\xb4\x06\xb6\x98\x8e\x1c\xca\x3e\x51\x2b\x18\x2b\x11\x0f\x09\xd3\x2a\x2a\xd6\x40\xf7\x1c\x13\x17\xb4\xdc\xf2\xec\x18\xe5\x84\x5c\xc0\xdb\x0e\xb3\xc9\xed\x92\x7a\x42\xc1\xb7\xcf\x9b\x0b\x47\x16\xd6\x75\xf2\x86\xaf\xc3\x58\x7d\xa1\xe5\x72\x19\x1e\x6a\x2b\x52\xb6\x64\xd8\xb9\xa7\x98\x9b\xe2\x3c\x46\xc6\x9b\x36\x53\xb7\xd3\x35\x3b\xc8\x6f\xda\xa8\xac\x55\x16\xe6\x5a\x43\x9a\xf4\x3a\x93\x76\x13\x91\xf6\x4f\xfa\xf2\x08\x61\xf3\x93\x38\x5a\x20\x31\x97\xaf\x80\xcc\x94\xb3\x0a\x7d\x3d\x67\xa6\x4c\xa9\xbe\xa9\x12\x93\xe2\x4d\xde\xf4\x17\x14\xe0\xa9\x98\x54\x19\x75\x23\xd3\x32\x5e\x19\x7d\xe3\x52\x92\xde\x0c\x37\x2a\xa7\xd5\xc6\xdc\xb8\x00\x11\xb3\x99\xca\xd0\x7b\xd1\x01\xce\xba\x4a\x4d\x91\x0f\xe4\xb5\x75\x9d\x89\x33\xde\xad\x9b\xcc\x5c\x7e\x5e\x65\xe6\x8c\xd7\xda\x9a\x67\x2a\xd8\x3f\x20\x02\x2c\x98\xfb\x4a\x1d\x0f\x9a\x47\xbc\xf9\x0f\x69\xde\xd7\x69\xf9\x7f\x5d\x9a\xf7\x78\x5a\x9c\x4d\x56\xd3\x02\x20\x83\xd8\xcd\x8c\xcf\xea\x4e\xce\xa2\x59\xe8\xb4\x56\x8c\x52\xfe\x07\x9f\xb6\xaa\x26\xfc\x2c\x7b\x2d\x4a\xba\xbd\x60\x31\x3e\x1c\x0d\x8d\xb7\xde\xe8\x84\x1f\xda\x1e\xb0\x5c\x00\xee\xba\x99\xd1\x1e\x01\xe5\x84\x38\x65\x87\x84\xff\x9a\xe4\xe3\x07\x7f\x9b\xe3\x53\x12\xcc\xce\xe7\x4a\xcb\x54\xf5\x44\x51\x69\x2f\xe5\x39\xa8\xd8\x1b\x53\x16\xa2\xaa\xef\x2e\xbe\x9c\xc7\xc4\x17\x3a\x72\x94\x35\x56\x15\xdb\xe9\x60\xc9\x58\xd5\xd8\xfa\xa1\x23\x74\xa3\x54\x6c\x27\xf7\xa8\xda\x91\x51\x51\x41\x2d\x40\x33\xb3\xc4\x8f\xc0\xae\xed\xe2\xb6\xee\xd9\xee\xde\x69\xbf\x5e\xa7\xa6\xc8\x15\x03\xce\xb3\xac\xb8\x90\x90\x5d\xb7\xd4\x6c\xf7\xf0\xd8\xe4\x16\xc5\xdb\xad\x12\x57\x05\xb4\x7b\x0f\x81\x0e\x15\xba\x7c\x74\xc2\xcc\x2c\xd7\xce\x47\x69\x58\x09\xf5\xf2\x49\xa6\xbe\xed\xd8\x7e\x28\xaa\x93\x8e\xe8\xbb\xb1\x8d\xd9\x4d\xd3\x75\xec\x9f\x03\x73\x0d\x3a\x7e\x94\x3e\x0a\x90\x0a\x14\x3c\xc9\x2d\xbc\x13\x39\xb3\x72\xe4\x97\xeb\xd4\xbc\xf2\x42\x93\x09\x1a\x80\x14\x1d\x54\x7d\xcf\xbc\xa4\x83\x79\x15\x87\xd4\x14\xea\x88\x11\x83\x70\xd4\x3a\x1d\x56\xe2\xc3\xa7\x04\xd3\xdc\x53\x86\x37\x88\x20\x7c\x5e\x9c\xba\xbe\x62\x74\xd0\x68\xc7\x6f\x54\x09\x6c\x34\x09\xa8\xa8\x51\xf1\x99\xa5\x3d\x9e\x94\xd8\x0b\x97\xb6\xc9\x6b\xa4\x0d\xc0\x8a\x57\xd5\xd8\x76\x18\xbe\x4a\xe6\x61\xf6\x40\x29\x9e\xe9\x58\xc9\x92\xeb\x4e\xe5\xf6\x75\x92\xba\xd3\x9f\xd4\xed\x30\x75\x67\x8a\x68\xf6\x6e\x3d\x4f\x45\xf7\x43\xa1\x3d\x98\xbc\x36\xd6\x27\xf7\xeb\xa0\xf5\xd4\x8c\xcc\x43\xd9\x35\x9b\x81\x79\xd8\x69\x87\xb1\x6a\xab\xdc\x4e\x56\x58\xb5\xf8\xfa\xd9\x3e\xdb\x26\xb7\x73\x31\x77\x2a\x30\xd5\x72\x65\x81\x54\xca\x55\x84\x30\xf0\xef\x20\x35\x93\xd5\xd4\x1d\x2a\x27\xa5\xca\x35\xe9\x97\x8a\x65\xbb\x77\x6a\x49\x0a\xc3\xa7\x84\x28\x0f\x4f\x07\x55\xbb\x5e\xdf\xb0\xc8\xc1\x7d\x5f\x13\x99\xf6\x31\x15\x2f\x20\x17\x30\xa6\x66\x62\xe8\x2c\xc5\xcb\x2d\xc7\x4a\xee\xb6\x66\xde\x39\xba\x7d\x4b\xad\x2b\x55\x55\xed\xc4\xd2\x61\x0a\x31\x55\xc2\xc0\xc3\x03\x04\xa1\xf5\x1b\x15\x38\x16\x51\xaa\x32\xb5\xf5\xd9\x37\x57\x97\xda\x5a\x32\xef\x8e\xcd\x80\x11\xda\xf9\x2d\x1d\x93\xa8\x90\x4b\x5b\x79\xa8\x69\xf7\x26\xcf\x3d\x35\x35\xf3\x21\x88\x19\xc8\xaf\x40\xc7\xfc\x4b\x3c\x9d\xa3\x03\xb0\x7d\xdb\xb0\x20\x23\x2c\x0b\xed\x6f\x76\x3d\x42\x32\x8f\xbe\x66\xb8\xfa\x6e\xe9\x76\x13\x0b\xfa\x09\xe6\xa0\x23\x54\xaa\x43\x44\xee\x60\xac\x34\xcb\x45\x71\x4a\xfe\x6e\x35\xa3\x5a\xc1\x87\xe8\x72\x0f\xb5\x9a\x3f\x24\xd7\xbf\x1c\x6a\x5d\x15\xc9\x9d\xac\x0b\x49\xfb\x47\xf8\x11\x0d\x0b\x26\x9f\x9a\xe9\x1b\x8e\x00\x47\x22\x1d\x35\xd1\x0d\x4b\x09\x2b\xbe\x6a\xcf\x02\xe8\x23\x25\x83\xbc\x91\xac\x2c\x28\x64\x14\xf8\xb5\x74\x54\xb0\xee\x39\xb6\xa2\xa5\xf3\xcb\xc6\x86\x20\xa3\x0d\xb3\xa5\xf9\x59\xd7\x37\xd9\x06\x47\xf4\xb8\x14\x8d\x75\x73\xa3\x3f\xfa\xdf\xef\xf5\x42\x97\xf3\xfb\x86\xed\xef\x0e\x1f\xd2\x8e\x15\xcf\x88\x1f\x30\x9e\x48\xc8\x3d\x9d\x36\x4a\x61\xfa\xa8\xa6\x4b\x94\x0e\x34\x8b\x9b\x75\xca\x9b\xf0\x3a\x50\x3c\x2a\x75\xe3\xcf\xe3\x9d\x28\x30\x97\x20\x25\x32\xa3\xd2\x17\x05\xf1\x09\x7e\xa3\xbf\x7c\xe0\xb8\x16\x9a\x9c\xba\x90\x5b\x84\x6d\xc3\x60\x0e\x47\xf6\x53\xa6\xdd\xba\xbb\x2d\x45\xa4\x38\xba\xff\x21\x0d\x69\x6f\x1d\x87\xf9\x53\xfa\x34\x2b\x46\x7e\x34\xa0\x1f\x82\x90\x23\xb5\x51\xf3\x4b\x84\x6e\x10\x4d\x16\xe9\xf6\xa2\x73\x54\x35\xea\xee\xc6\xa5\xc5\x69\xd4\xfd\xc5\xa1\xcf\x4a\xef\x31\x5c\x64\xf8\x09\x11\x30\xe4\xfd\x31\x1e\xe4\x8a\xd6\x75\x7b\x62\xae\xab\x8e\x7a\x64\xd9\x32\xc7\xca\xb0\x54\xc0\x19\xf5\x44\xad\x54\xae\x18\xb5\x64\xa7\x37\x54\x32\x7c\x93\x26\xb5\x62\xbf\xff\x8b\xa2\x35\x52\x3e\x96\x6d\x43\x9c\x86\x4f\xf7\x3e\xe3\x0d\x40\x7c\xcc\x33\x9d\x96\x6c\x39\x0b\xf6\x81\x91\x2b\x8e\xd8\xb1\x48\x2f\xda\x54\xf0\xab\xf1\x95\x7e\x89\xce\x63\x9c\x62\x73\x29\x37\xdc\x20\x5e\x17\x98\xbf\x2e\x28\xf9\x64\xad\xe1\x6f\x59\x3a\xff\xae\xe7\xbf\x24\x69\xd7\xc9\x54\x45\x40\x41\x42\x79\x8a\x19\xff\xa6\x73\x20\x5a\x9b\xe9\x43\x96\xef\x23\x59\xb0\x6b\x9e\xea\xbc\x51\x27\x2a\xe7\xf5\xfb\xa6\x65\xe1\xdb\xee\x65\x39\x6e\x33\xdc\x71\x39\x75\x07\xae\x97\x6d\xc7\xc2\x62\x0d\xa0\x22\xd1\x77\x2a\x16\x16\xf7\x16\xab\xa3\x95\xff\xac\x1e\x8c\x8c\xce\x4f\x9c\x51\xb8\x66\x61\x75\xdf\x90\x0f\xcf\xa9\x56\x12\xc6\xb1\x42\x57\x1e\x90\x52\x2c\x50\xad\xa6\xe9\xb0\x21\x66\x69\xd3\x7f\x7d\x9a\x9e\x85\xcd\xb9\x3f\x34\x48\x3d\x0b\x79\xdd\x69\xa9\x25\x14\x2e\x4a\xfb\x53\xe2\x82\xc5\x59\xd8\x25\xde\x4a\x33\xda\x0a\x48\x7a\x6a\xba\x9e\x9d\x99\x04\x6f\x4c\x01\x22\x6f\xbd\xf1\x06\x4e\x0a\x73\x79\x9c\xc0\xda\x7c\x52\x49\x81\x13\xfa\xbc\x4c\x97\x4c\xc6\x34\x48\x2d\x4b\x0e\x0a\x47\x1c\xde\x48\x29\x1e\x1f\xa9\x75\x1d\x6d\xe1\x32\x11\x4f\xb9\xcc\x08\x27\x82\xf8\x38\x1c\xe0\x88\xf1\xe9\xe1\x7d\xfa\xe7\xc8\xe9\xf9\x2b\xc3\x3f\x65\x97\xeb\xaf\x4c\x9b\x44\xbb\xb7\xab\xf4\x3f\x9f\x97\x75\x9f\xb2\xfb\x65\x3d\x0b\xb4\xdf\x50\xb5\x03\xb5\xc4\xef\x15\x01\x1f\x59\x56\x00\xa3\x58\xf1\x83\xa6\x4e\x4d\x2a\xff\x8a\xb4\xb7\x4c\x35\xbb\x0e\x5d\x3e\xde\xfe\xf1\x8c\xb0\xa1\x59\x68\xc4\x00\xb1\x44\x61\xa8\x95\xdb\x4e\xb6\xa0\x6d\x6f\x7c\x3a\x55\xff\xdb\xda\xb0\x70\xa8\xf3\x8e\x1f\xfb\x42\x1d\xda\xf2\xdf\xc2\x72\xbc\x18\x8d\xfa\x50\xf9\x7c\x18\x8e\xc6\xa1\xce\xc3\x8c\x68\xb0\x68\x28\x87\x8a\x36\x2e\x54\x05\x6a\x47\x76\x1e\xcd\xeb\x67\x16\x8e\x1d\xa3\x88\xe0\xbc\xc8\xff\xb4\xc3\xbb\x70\x16\x0e\x4f\x31\x81\x08\xf8\x8b\xd7\x4d\x2c\xbc\xe5\x8e\x39\xfc\x82\xf7\x31\x43\xc2\xb9\xa6\x37\xe2\x58\x20\x4e\x35\xbd\x11\xd5\x5f\xa0\xa5\x7d\x80\x72\x66\x1a\xb5\xff\xb6\x51\x3f\x6f\xb9\x1c\x14\x2a\xcf\x9f\xb6\x9e\x59\xf8\xd9\x34\x5a\xff\x40\xad\x5b\xc1\xb9\x6f\xc6\x44\x9d\x01\x57\x8f\x21\x45\x72\xae\xc7\x6e\x68\xbf\xbc\x47\x53\xbd\x53\x29\xe3\x1a\xcd\xc0\x68\x4b\x6b\x34\x23\x36\xc4\xb1\xa5\x45\x9c\x56\x4b\x33\x31\xca\x45\x30\xb3\x68\xe6\xdc\xbe\xa5\xe8\xbc\x2a\x5c\xda\x87\xe2\x35\x8b\xf2\x21\x66\x49\xbb\xa1\x6d\x83\xe2\x9d\x0e\x17\xa5\x70\xb3\x6f\x14\x8b\xe0\xd3\xbe\x78\xd7\xb7\x0c\xfd\xb0\x98\x2d\x2c\x06\xc7\xbf\x6f\x32\x41\x35\x0e\x9c\xd3\x1d\x11\xe4\x06\x2a\x7c\x41\xf8\x37\x17\x1c\x9b\x9a\xc5\x27\xc8\x08\x69\xba\x48\x16\x9f\xc7\xaa\xf2\x8e\xe2\x68\x54\xc6\xf4\x37\x24\xa3\x13\x0a\xe2\xd8\xcf\x1e\x86\x61\x88\x40\x67\x20\x80\x62\xb2\xbe\xd1\x44\x2d\x72\x0f\xf4\x84\x26\xc1\xb4\x3b\x95\x11\xa6\xd5\x4d\x97\x9a\x14\x31\xb7\x0d\xcf\x88\x23\x68\x33\x20\xef\xd0\x36\x3d\x23\x33\xc3\x4f\x6b\x59\x74\x98\x36\x19\x60\xd1\x19\x54\xc6\x68\x66\x16\x53\x36\x08\x15\x8b\x6e\xcb\xbb\xe6\x6d\x33\xb0\xe8\x0e\xfd\x4c\x67\x15\xa6\x9a\xb3\xe8\x7e\x02\xaa\xb7\x61\xf4\x97\x2c\x91\x0e\xfd\xe3\x97\x43\x8d\xd4\x3c\x63\x06\xd5\xa1\xba\xb2\x6e\x87\x0a\x9b\x2b\xb6\xa8\xc7\x16\x66\xf0\x54\xb8\xb3\x9b\x90\xb7\xdd\xa2\xa1\xc9\x62\xe7\x57\x7c\xf6\xc8\x6e\x87\x2c\x46\x40\x29\xa4\xbf\xde\x64\xcd\x01\xbf\xa8\xf4\xd7\xcc\x11\xda\x8b\x22\x8d\x43\xc7\xe2\x41\xfb\x0a\xcd\xc4\xee\x7f\x58\x83\xfe\x82\xe8\x48\x91\x1a\x58\x7c\xe1\xc7\x71\x76\x6c\xd7\x7f\x03\xfb\x89\x1d\x1b\xe5\x58\x7d\xcf\x8e\x6d\x76\xcb\x79\x1e\xd2\x9c\x44\x3e\x0f\x69\x06\x56\xcc\x7c\x6a\x38\x3b\x82\xfa\x82\x1a\x2a\xf6\x02\x6f\x31\xee\x13\x47\x2a\x68\xc2\xc8\xce\xe9\x97\x0e\x2a\x9d\x7f\x8e\xea\xfe\x12\x9d\xa7\xa1\xba\xe9\xb7\x28\xfd\x57\xa9\x93\xec\x65\x95\xcf\x8a\xec\x1b\xc3\x68\xb2\x8a\xfc\x6f\x99\xa1\xca\x38\xef\x03\x57\x43\x5d\x88\x52\x8e\xa9\x5a\x99\x28\x8d\x23\x55\xb5\xea\x44\x39\xef\x6f\x75\x62\x1e\x72\x05\x21\x43\x3a\xad\xc1\x47\x86\x4e\x54\xc8\x07\x6c\x06\xc3\x42\x98\x32\xe1\x3d\xd9\x15\xc8\x84\xb5\xf4\xee\x08\xb4\x07\x0d\x2a\x53\x98\x3c\xd1\x40\xe8\x42\xac\x33\xd9\x9c\x3c\xf1\x2e\xd1\x73\xb6\x4d\xbe\x24\xd9\x2a\x98\x84\x9e\x20\x4d\xde\x80\x02\x48\x54\xde\x65\x85\x39\xc1\xd5\xe5\x44\x66\xae\x12\xf1\xcf\x61\xc9\xd3\xcc\x75\xc2\xb8\x0e\xe0\xf7\x8e\x73\x93\x88\x54\x7f\x1f\x67\xce\x5e\xf6\xb1\xe5\xb2\x31\xef\xd8\xcb\xde\xfe\x4b\x3d\xb7\x37\x9c\x0f\x8f\xcc\x1d\x4b\x39\x7a\xfa\xc3\x4b\xdf\x40\xc2\xe5\xaf\x0b\x13\x4b\xc9\x62\x36\xdd\xaa\x35\x85\x58\x0f\x2a\xd6\xb7\x50\x88\xac\xef\xb9\x60\x2a\xc0\x75\x15\x7b\xed\x9b\xf8\x06\x1c\x2b\x23\x09\xa4\x70\xaa\x6f\x66\xf6\x96\xcb\xb2\xcb\x1d\xe8\xb8\xb2\x66\x6f\xe9\xd3\xde\x6d\x55\x35\xec\x2d\x23\x66\x48\x9c\xb7\xa9\x49\x7f\xfd\xa4\x34\xb2\x65\x6f\x95\x0f\x15\xb6\x8d\x46\x40\x7f\x15\xa1\x31\x30\x08\xed\xa6\xe5\x66\x20\x68\x8a\xea\xdb\x06\x88\xf4\xf6\xa2\x78\x8f\x54\x38\xb6\x0d\xaf\xe2\x15\x7b\xe3\xba\xc0\x0d\x7b\x83\xc2\xb7\xae\xb1\x51\xcc\xa5\xea\x27\x86\x0a\xce\x99\x98\x62\xef\xa7\x8c\xe1\x49\x53\xaf\x02\xf6\xb6\xe6\x41\xc5\xd8\x5a\x19\x96\x6a\xc1\x3d\x07\x6a\x95\xc8\x11\xea\x04\x23\x65\x29\x69\x9f\x12\x1a\x96\xcf\x21\xcd\x13\x7b\x7b\xb9\x97\x88\xba\x53\xec\xc7\x1d\xf1\x50\x90\xf7\x35\xc1\xa0\x3b\xc7\x8e\x92\xfd\xc1\x24\x9d\xfc\xc0\x3c\x27\x90\xff\x3d\x5c\x9d\x48\xa4\x6d\xc2\x5e\xb1\xff\x07\x00\x00\xff\xff\x92\x00\x31\x8d\xa1\x3f\x00\x00") func vendor_material_icons_codepoints() ([]byte, error) { return bindata_read( _vendor_material_icons_codepoints, "vendor/material-icons/codepoints", ) } var _vendor_material_icons_material_icons_css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\xcc\x4d\x76\xe8\x3a\x69\x08\xa5\x48\x97\x42\x49\xc0\xb4\x85\xd2\x1c\x7a\x1e\x4b\x23\x79\xc8\x6a\x57\xcc\x8e\x91\xe5\xd2\xff\x5e\x76\x2d\x15\xdb\x71\x21\xdd\xdb\x7c\xbc\x37\xef\xcd\xec\xa7\xc6\x3b\x35\x0d\x56\x04\xbf\x32\x80\x29\xea\xd8\x8e\x05\xe4\xdf\x50\x49\x18\x2d\xac\x2b\xef\x42\x5e\xce\x0d\x41\x47\x4b\x05\x38\x2f\x1d\xda\xbf\xd9\x81\xb8\xdd\x6a\x01\x0f\x77\x77\x31\x17\xa4\x2a\x60\x27\x76\x31\xb3\x24\x12\xf3\x83\xda\x9d\x45\x59\x91\xd7\x65\x09\xb7\x37\xf0\xe4\x05\xd6\x8f\x1f\xcc\x47\xb8\xb9\x9d\x61\xd6\x57\x68\x17\x97\xf3\x97\xef\x32\x38\xbe\x8b\xfa\x19\xf3\x49\xdb\xbf\xa7\x0f\xbe\x69\xee\x97\xd0\x44\x07\xba\xc8\x53\xf8\x66\xe0\x39\xee\x4d\x30\xd5\x13\x94\xca\x8e\x74\xec\x29\x5f\x96\xd9\xef\x2c\x5b\x75\x13\xc4\x70\xc4\xfc\xc7\x1d\xe6\x8d\x5f\x1c\xe2\xfa\x79\x02\x1f\xa8\x80\xfb\x87\x7e\x5f\x42\xdc\xfb\x77\xa1\x86\x44\xa8\x86\x38\x16\x62\xf9\x78\x81\x9a\x43\x6f\x71\x2c\x80\x9d\x65\x47\x66\x63\x7d\xf5\x12\x69\x52\xb4\x9d\x66\xbe\x8f\x19\xa5\xbd\x1a\x15\x74\x21\x7a\x8b\x23\x1d\xa5\x4e\x52\x25\x31\xa1\xc7\x8a\x5d\x7b\x2a\x65\xf0\x52\x9b\x41\xb0\x3f\x4b\x6e\x59\x29\x75\x27\xd9\xb1\x5c\x26\x21\x42\x95\xb2\x77\x05\x58\x95\x32\xcb\x92\xee\xe7\x5d\xdf\x7b\xd1\xb8\x4d\x40\x6b\xe1\x27\x6d\xbe\xb0\xc2\x46\xfc\x10\x48\xc2\xea\x68\xc2\x0c\xb4\x79\x61\x35\x47\xeb\x9d\xf7\xba\x4d\x4a\xd0\x29\xa3\x65\x0c\x54\x97\xaf\xf9\x9e\xb1\x41\x61\x40\x57\xc3\xe7\xad\xf8\x8e\x26\xb6\xe4\x53\xc8\xd5\x24\x89\xc5\xf7\xca\x1d\x1f\xe8\x2b\xb5\xbc\x61\xcb\x3a\x5e\x53\xf7\xc4\x42\x8d\xdf\xcf\x8a\x3a\x7f\x30\x3e\xec\x5f\x49\x6a\x05\xc7\x50\xa1\xa5\x6b\x1c\xeb\xc7\x09\x7e\xfc\x11\x84\xba\x13\x32\x81\x54\xd9\xb5\xa1\x80\xdc\x72\x8b\x79\xfc\x47\x7f\x02\x00\x00\xff\xff\xcd\xb2\xdf\xfa\xca\x03\x00\x00") func vendor_material_icons_material_icons_css() ([]byte, error) { return bindata_read( _vendor_material_icons_material_icons_css, "vendor/material-icons/material-icons.css", ) } var _vendor_picodom_picodom_js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x56\x4d\x93\xa3\x36\x10\xbd\xe7\x57\xd8\xa4\x8a\x92\xca\xbd\x8c\x77\x73\x33\xdb\x71\xcd\xa6\x72\x4b\xf6\x90\xaf\x0b\xc5\x01\x43\x83\x59\x63\x89\x12\xcd\xd8\x2e\xc3\x7f\x4f\x49\xc2\xc6\x33\x93\xcd\xc5\x0d\xea\xee\xc7\xd3\xeb\x56\xcb\xcb\xb2\x57\x39\xd7\x5a\x09\x02\x96\xd7\x40\xef\xbe\x51\xce\x01\x22\x5f\x5a\xd2\xe5\x82\xce\xad\x36\xdc\x85\x61\xd0\xab\x82\xca\x5a\x51\x11\x2c\x6f\xce\xa3\x2e\xfa\x86\xb6\x2c\xa6\x28\xb9\x09\x6e\x70\x33\x82\xcf\x0a\x43\x6f\xa3\xec\x58\x6c\xfd\xa3\x48\x82\x29\x2f\x48\x81\xe5\x86\x05\x45\x6d\x9d\xeb\x42\x1f\xf1\x3a\xca\x51\xf0\xbe\xee\x60\xe6\x27\xaf\x41\xdf\xd1\xa2\x63\x53\xe7\x1c\xc4\x37\xc7\x82\x3d\xf5\x97\xcc\x2c\x14\x18\x4c\xd2\xb8\xd4\x46\xf4\x98\x99\xaa\x3f\x92\xe2\x2e\x6a\x48\x55\xbc\x8f\xfb\x0f\x1f\x16\x3f\x7f\x8a\x65\x11\xb5\x7d\xb7\x17\x77\x7f\xd2\xa7\xd2\xe5\xc4\xc5\x2d\x54\xd6\xa5\x78\x36\x26\xbb\x44\x75\xe7\xac\x50\x58\x44\xad\x6e\x85\x94\xd2\xc3\xab\x07\xd8\x3b\xa6\x72\x58\xd4\x74\xb4\x50\x7d\xd3\x2c\x51\x85\xe1\x72\xbd\x44\x67\x3f\x7a\x2b\x02\xd5\x1f\x77\x64\x66\x89\xec\xa2\x5a\x61\x10\x48\x30\x13\x8e\x94\xb1\x21\xee\x8d\x0a\xec\x7e\x55\xf5\x50\x91\xed\x95\xb3\x6a\x43\x50\x64\x9c\x6d\x78\x18\xae\x23\xe4\xfb\xba\x29\x0c\xa9\x8d\x19\x37\x24\x18\x8c\x1c\xef\xf2\xb8\xca\x42\x06\x0d\xf4\x50\xc8\x6b\x5d\x0a\xcb\x0c\x31\x93\x8c\x14\xd5\xaa\x23\xc3\x5f\xa8\xd4\x86\x84\x16\x0d\xf4\x12\x78\xda\xc1\x14\xba\xc4\x26\xe2\xac\x0a\x43\x67\x10\x31\xb3\x56\x5e\x6b\xc1\x90\x45\x96\x05\x34\xce\x48\xe8\xb1\x1f\x86\xa0\x7b\xb1\x74\x7d\x96\xd3\xd5\x96\x26\xc7\x26\xba\xd1\x9c\x94\x83\x0e\xb3\x77\x6b\x7b\xbc\x8e\xf0\x82\x49\x0a\xad\x7d\xaa\x70\x1d\x57\x9f\xbb\xb8\x5a\xad\x7c\x89\x2f\xf8\x92\x54\x29\xb2\x4f\xfc\xaa\x0b\xea\x92\x2a\x85\xe3\x03\x94\x7d\xdf\xa1\x11\x47\x19\x7b\xfe\xbb\x30\x14\xfb\x64\x97\x62\x72\x81\x63\x2a\xc7\x1b\xa7\x0a\xd7\x70\xc0\x75\x7c\xf8\x9c\xc7\x8f\xe8\xef\xd0\x4e\x0f\xe4\x93\xc3\x1d\xbd\x2e\x45\x9b\xec\x52\x59\xad\x56\x4e\x31\x07\x71\x46\x23\x4e\x12\x9e\x71\x9f\x9c\xd3\x61\x48\xd2\xd8\xeb\x7d\xde\x4e\xc2\x5b\x36\x4a\x30\x5c\xe0\x08\x27\xab\xf7\x61\xb5\x92\x60\x37\xb8\x11\x3b\xf4\x81\x82\xe1\x39\x59\xa7\xf0\x9c\x7c\x4c\x7d\x90\xf3\xdb\xb5\xad\xe0\xd7\x55\x73\x81\x17\x09\xef\x93\xe4\xc6\x7f\xc7\x7e\xf7\xfe\x29\x68\x93\x73\x8a\x27\x39\x3a\x19\x9c\xb8\x7e\xef\xff\x23\xa1\x23\x5d\x0a\x06\xaf\xce\x54\xed\x6a\xb5\x9a\xa5\x5c\xd4\x6a\xb1\xf7\x40\x76\xeb\x55\x0a\x5f\xd0\x12\x89\xdb\xe4\x8b\x8b\x8f\x0e\x74\x49\x87\xa1\xbc\xb1\xf4\xab\x72\x1c\x5d\xaf\x71\x18\x36\x4b\x44\x8e\x94\x2e\xe8\x9f\xac\xe9\x29\x0c\xc5\xf7\x1a\xb4\x40\x96\x50\x0a\x82\x62\x6a\xc0\xfb\x69\x59\xf0\xdc\xf8\xc6\x8e\x8c\xba\x14\x16\x89\x90\xa6\xc0\x29\x8e\x2c\x9d\x39\x36\x7b\x98\x21\x78\x1d\xef\x5d\x6b\xec\xb6\x48\xaa\xc4\xa4\x48\x89\x49\x5f\x3b\xd8\x3b\xd8\x3a\x26\x5c\x35\x63\x6a\x8f\x59\x97\xe2\xfd\x19\x96\xfe\x4b\x85\xce\xdd\x08\x8a\x72\x43\x19\xd3\x5f\x74\x66\xdb\xd1\x82\xe4\xdc\x4f\x0a\x05\x23\xcf\xc7\x8a\xdc\xe9\xdb\xbe\x49\xfd\xb5\x21\xfb\xf6\xf5\x4f\x11\xec\x99\xdb\xcd\xd3\xd3\xe9\x74\x8a\x4e\x3f\x45\xda\x54\x4f\x9f\xd6\xeb\xf5\x93\x4d\x07\x9f\xbc\xf9\xef\x64\xe1\xbd\xb1\x97\x2a\x0c\xbd\x8d\xb4\xf2\x51\x61\x98\xfb\xe1\x74\x1f\xc9\xf2\xfa\x26\x44\x28\x39\xca\x37\xe2\x79\xdd\x1b\xa1\xc0\x80\x7f\x49\x4c\xfa\x10\x84\xeb\xd8\x7c\xa6\xb7\x73\x20\x96\x2a\xca\xda\x96\x54\xf1\x8b\x75\x08\x2d\xe6\x90\xc4\xac\x56\xf6\xc6\x90\xe3\x7b\xd1\x6b\x37\xed\x94\xbc\xbe\x22\x91\x09\xbb\xe6\xeb\xab\xd1\x16\x0d\x6a\x0c\x5e\x6c\x9b\x59\x49\xcd\x30\x04\xf9\x9e\xf2\x03\x15\xee\x75\x6b\x4b\xbd\x71\x65\xd5\x4b\xc4\x3a\x0c\x1b\x41\x60\x40\x43\x2d\x47\x15\x86\x2a\xd2\xaa\x6f\x8b\xef\x68\x32\x7b\x5d\x03\x8c\x0f\xb3\xb8\xbc\xb1\x9b\x40\x0c\x1d\xf5\x0b\x6d\xe7\x47\xc1\x72\x43\x91\x7f\xf6\x1b\xe7\x87\xf4\xc6\xa7\x83\xf1\x5d\x75\xa0\x8b\xa5\xfb\x30\xae\x83\x8e\x2f\x0d\xf9\xc5\x9b\x00\xda\x0b\x60\x40\xa1\xb2\x97\x85\x94\x14\xb9\xb0\x44\xa7\xa8\x12\x9d\x0e\x43\x10\xf8\x76\x63\x73\xb9\x52\xc2\x29\xaa\x31\xcf\x38\xdf\xdb\x03\x34\xce\x57\xfa\xf2\xd5\x7d\xb5\xa5\xa8\x23\x7e\x66\x36\xf5\xae\x67\x72\x0a\xdf\xb9\x3f\x2c\x4b\x39\x8e\x96\x47\x0f\x85\x9d\xea\xb9\xfd\xe9\xf0\xf1\x6f\x07\x18\xc8\x40\xfb\x92\x19\x54\x22\x1b\x86\x7b\x83\xee\x74\x71\xb1\x8d\x63\x2f\x25\x8d\xb9\xbf\x82\x63\xa9\xc5\xfd\xc4\x9b\x31\xa6\x68\x8f\x0c\x14\xb5\x96\x34\x76\xa3\x8c\x7f\x78\x7a\xfa\x71\xd1\xe9\xde\xe4\xf4\x7b\xd6\xb6\xb5\xaa\xfe\xfe\xe3\x37\x9c\xfe\x5d\x44\xdf\xba\xe8\x98\xb5\xff\x06\x00\x00\xff\xff\x75\xeb\xaa\x7d\xfb\x08\x00\x00") func vendor_picodom_picodom_js() ([]byte, error) { return bindata_read( _vendor_picodom_picodom_js, "vendor/picodom/picodom.js", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_eot = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xaf\x55\x50\x1c\x8e\x0f\xf8\xb9\xc0\xe2\xee\x0e\xcb\xe2\xee\x4e\xd1\xc5\xdd\xdd\xdd\x5d\x8a\xee\xe2\xee\xc5\xdd\xdd\xb5\x50\xdc\x8b\xbb\xb6\x78\xf1\xa2\x45\x4a\xbf\xdc\xdc\x6f\xfe\x0f\x37\x77\x2f\xf7\xc9\x43\x3e\x93\x4c\x26\x49\xec\x2f\x00\xc0\xe9\x14\x00\x80\x07\xc0\x03\x80\x80\xff\x27\x70\x00\x36\xb8\xff\x3b\xab\x68\x7c\xc0\x03\xf6\x8d\x41\x00\x1c\xd0\xff\xe9\x14\xc3\x01\x40\x00\x00\x9c\xfa\x90\x79\xdc\x11\xe0\xff\x03\x18\xa0\x05\x70\x07\x58\x01\xdc\x01\x3e\x00\x77\x00\x08\xa0\x0a\x70\x07\xb8\xfd\xcf\x54\x00\x8e\x00\x7b\x80\x03\xc0\x07\x00\x00\x60\x01\xb4\x00\xb6\x00\x7b\x80\x2f\xc0\x05\x60\x09\xf0\x02\x00\x00\x3a\x00\x3d\x80\x2d\xc0\x0b\xe0\x0d\x70\xfc\xdf\x04\x08\xc0\x03\xe0\x00\x70\xfd\x2f\x84\x01\x42\x00\x7e\x80\xe8\xff\x6a\x5c\x00\xee\xff\xe3\x3e\x00\x1f\x80\x1d\xc0\x12\xe0\xfb\xbf\x4d\x0e\x00\x47\x80\x1b\xc0\x07\x00\x02\x30\x01\xfc\x00\xdc\x00\x0e\x00\x2f\x80\xf9\xff\xf7\x3d\x00\x80\xb4\xb6\xbc\xc6\xff\xfb\x17\x04\x38\xd5\x31\x40\xb7\x07\x60\xed\x05\x90\x73\x48\x30\x77\x9e\xb8\xb0\x16\x4b\xda\x96\x17\xfe\x78\x73\x7b\xaf\x42\x91\x47\xe1\xc0\xc7\x77\xe3\x90\xba\x84\x55\x01\x8f\xf0\x57\x68\xe2\x19\x98\x13\x28\x50\x9d\x9a\x98\x73\x9d\x59\xd0\x09\xac\x24\xd7\x94\xf6\x47\xfd\xe1\xeb\x56\x55\xa0\xd6\x3f\xce\xec\x68\x1f\xc3\x33\xcc\xd7\x4b\xa2\x49\x6e\xc8\xcb\xdc\xe9\x97\x07\x72\x2c\xba\x71\x8d\x57\xfc\xd1\xda\x7a\x62\xb8\x1d\x1e\x18\xfd\x60\x53\x99\x3f\x1e\x15\x3d\x5d\x6a\x7d\x7b\xb7\x53\x72\x4d\x10\xd4\x68\xf8\xc5\xde\x87\xe9\x90\x97\xc6\x85\xb3\xce\x74\x7f\xbf\xe7\x96\x2e\x8e\x40\x91\x71\x3e\x20\x88\x47\x3d\x99\xfa\x06\x4a\x1d\x62\xa4\x87\xea\x4f\xde\x15\xeb\x90\x3d\xff\x01\xaf\x61\x77\x51\x0f\x52\x99\xbc\x5a\xa2\xf5\x35\xcb\xb0\x40\x13\xbc\x0c\x08\xa3\x7c\x3b\x70\xde\x72\x7e\xef\xc6\x58\xb8\xc9\x0b\x9d\x1c\x2a\xf6\x5b\x7e\x0b\x52\xb9\xad\xbf\x36\x73\x1c\x77\xa2\x1a\x97\xf8\x20\x36\x82\x00\x95\x58\x44\x22\xc4\xb0\x48\x81\xf1\xd5\x6d\x19\x3e\xa8\xfb\x43\x7f\x5b\x11\xd2\x90\xc1\xb3\xd1\x49\xb7\x64\x93\x35\xa4\x28\xa5\x65\x13\xc9\x64\x62\xea\xa5\x1a\x30\x20\x90\x04\x1f\xa0\x02\x03\x00\xb1\xdf\xb0\x97\xdd\x47\xf7\xc8\x1f\x97\x63\x0c\xdc\xcb\x43\xf2\x5b\xf6\xaa\x66\x84\x57\x8c\xc4\x72\x4b\x4d\x01\x6c\x27\x76\x43\x5d\xb3\x9c\xbd\x70\x28\x68\x92\x96\x08\x71\x01\xe1\x40\x3c\x50\x29\x62\x2c\x97\x54\x19\x16\x4e\x40\x24\x10\x4c\x23\x44\x60\x77\xc5\x32\x32\xcb\x31\x8a\xc1\x33\x9f\xe3\x78\x22\xe3\x2e\x87\x2f\xea\x43\xdb\x3d\x3c\x08\x24\xbf\x1d\xe2\x4e\xb3\x8c\x53\xde\x44\x0d\x6a\xe0\xf4\xcd\x70\xe7\x72\x3d\x55\xed\xb3\xec\x76\x15\x98\x2c\x5b\xd8\x37\x7c\x57\x96\x78\x52\xff\xe0\x9d\x50\xd9\x67\xf0\x3b\x71\xcf\x85\xc3\x07\x31\xd8\x30\xe4\xc2\x79\x95\xf0\xe8\x86\x81\x11\x2a\x24\x83\x63\xe9\xc1\x40\x1b\xc9\xcc\x58\x7c\x4f\xf8\x44\x10\x39\x0a\x91\x25\xfc\x15\xc8\x32\x2a\x60\x84\xd5\x40\x72\x07\x85\xc2\x12\xa1\x01\xf4\x39\x12\xbb\x25\x1c\x09\x47\x7a\x04\x25\x47\x8a\x0a\x8d\xc1\x43\x3d\x92\xc0\x12\x51\x48\xf1\x44\x40\x94\x00\xa6\xb4\x65\xdd\xc5\x1b\xb5\x99\x66\x4c\x3c\x92\x50\x20\xf1\x75\x75\x6c\x9f\x4e\xbd\x00\x6e\x44\xf7\x71\xf7\xa8\x7f\x4b\x52\x5b\x79\x69\x5f\x77\xaf\x62\x63\x40\x8a\x22\xcc\x85\xa6\x1f\xed\xfd\xa6\x54\x2e\xfc\x92\x20\x93\x2d\x54\x9e\x4b\x06\x40\x7c\x47\xc0\x8b\x7e\x83\x63\x82\xd2\xfb\xc5\x7a\x79\xa5\xaf\x2b\x4c\x50\x46\x73\xab\xed\x00\xad\xeb\xbc\xcd\xbd\x89\x98\x2e\xe7\x30\x55\xd9\x1d\xd3\x46\xdd\xe9\x74\xac\x74\xfb\xa5\x8d\x6b\xae\x73\x89\x45\xa1\x94\x0c\xb5\x6d\xe1\xbf\x69\xb6\x34\x45\x1c\xc1\x0b\xe0\xf5\xca\x60\xd2\x0d\xfa\xee\xe4\x54\x8a\x42\xc6\x29\x1f\xef\x1b\x3b\x07\xa4\xd7\x73\x81\x69\x18\x5f\xcf\xd8\x4e\x06\xc9\x22\x9b\x7e\x96\xf7\x0a\x5f\xa8\x7f\x30\x90\xc8\x4d\x05\x77\x88\xe9\x7e\xf1\xcb\xe7\x03\x76\xcd\xe2\x6b\x13\xd1\x3e\x82\x8d\x6c\xdf\x0d\xff\x8e\x44\x14\xd9\x14\xc0\x2a\xf0\xfb\xc8\x9a\x18\x98\xd6\xea\xf2\x24\x5d\x94\x43\xca\xcf\x64\xe9\xa2\x04\x86\x7a\xee\xfb\xb7\xa1\xa7\x89\x2b\x29\x21\x24\x3a\x52\xfd\x68\x9f\x0b\xde\xe3\x3b\x75\xa9\x09\x11\x8d\xc3\x17\xd2\x79\x40\x66\x76\xd7\x4b\x7e\x52\x9a\x15\xd2\x23\xce\x24\xc0\x0d\x69\xa8\x97\xbd\xd0\x62\x2f\x18\x46\xa6\x82\xcd\xb5\x8e\x6e\x10\xae\xc0\xf6\x6f\xc5\xa2\x1a\x51\x4c\x38\x52\x8e\x1e\x46\x8e\xdf\x0a\x88\xe7\x66\x62\x1d\x9d\x0d\x40\xa8\x05\xbe\x58\xca\x88\xa1\x59\x93\x51\x73\xb3\x9f\x90\x53\x82\x1b\xe8\x25\x1f\x31\x2c\x0a\xd1\x84\x4a\xf1\xd6\xfc\x94\x57\xac\x47\x7f\x85\xd2\xe7\x25\xa0\x3c\xe1\x61\xc6\xf8\x54\xe5\x50\x1b\xe1\x57\x0e\x6b\xf0\x46\x48\x0a\xc5\x2c\x36\x6d\x00\x6f\x7a\xb2\x93\x2f\x67\xcf\xd4\xc3\x41\x09\xcb\x74\x71\x4c\x77\xec\x2d\xcc\x19\x2e\x64\x45\x71\x64\xf1\x9a\x22\xe0\x50\x24\x5f\x6b\x0d\x36\x89\x58\x32\x1f\x82\xa9\x7f\xc0\xd2\x16\x24\x4b\xca\x0e\x8c\xef\x3b\xa0\x9c\x9b\xf1\x49\xf5\xfd\x77\x4f\xec\xc3\x12\x4c\x29\x78\xb6\x72\x11\x63\x39\x86\x87\x43\x32\xf9\x33\xf1\x88\xa5\x96\xa4\xbe\x12\x1e\x12\x0e\xb4\xc1\xde\x1c\x95\x7a\xe8\x96\x26\x00\x54\x43\x74\x6f\xc1\x4d\xd5\x37\x9a\xae\x27\x09\x10\x41\x2d\x11\x8f\xf3\x07\x90\xef\x98\x75\xfe\x8b\x6a\xa7\xf0\x28\x34\xae\xe9\xf1\xee\xf6\xd9\x6b\xae\xcb\x0b\x6f\x5a\x13\xff\x23\x90\x95\xa5\x78\x29\x74\xd1\xac\x94\x6c\x28\x41\xc4\xbe\xa6\x85\xd0\x4a\xb0\x83\x66\xa5\xff\x1f\xa5\x6e\x5f\xf0\x23\x09\x3b\x10\xf0\x93\xc9\x06\x75\xc8\x92\x28\x5c\x17\xb3\x7c\xc0\x81\x08\xdc\x9c\x5e\xc7\x49\xf5\xc8\x2b\xc4\x4a\xee\xb5\x6e\xb5\x3e\x92\xdd\xfd\x62\x04\xec\xeb\x8a\x97\x4e\x6e\xd6\x46\x77\x4d\x7e\x41\x23\x45\x59\xa7\xa8\x7e\x40\xc1\x34\xb3\xd4\x07\x1f\xc1\x8a\x30\xeb\x8e\x57\xb6\x6a\x8b\x7c\xd1\x50\xbf\x52\x60\x65\xfe\xe4\x36\x8f\x18\xbe\x55\x92\x23\x77\xb3\xfc\x52\xc2\x85\x91\xca\xdf\x57\xd3\xf7\x43\x59\x63\xef\x56\x46\x8f\x69\xf2\xe9\xf2\xd1\x8a\xa0\x74\xd3\xe3\x9f\xa2\x23\x5e\x9a\x97\x63\x29\x9a\x7b\xea\x20\x8f\x56\x16\x6a\x65\x4d\x61\xbf\x14\x75\x08\x66\x6f\x1e\x24\x9d\xde\x1b\xda\xa2\x01\x67\x3a\x9e\xe1\x90\x16\x7e\x76\x2a\x02\xbe\x5e\x6b\xdc\xba\x2c\xdf\x01\x91\xd3\x4c\x61\xbc\x49\xa3\x41\x39\x0d\x8e\xbe\x5c\x9a\x99\x85\xe7\xe0\x2e\x15\x59\xfd\xa4\xee\x0a\x05\x1e\x3d\x23\x8c\xd3\x64\xb7\x6e\x04\xa3\xd3\x74\xfe\xf9\x96\xc2\xa7\x10\xa7\x02\xf3\xa1\xe7\x71\x91\x0c\xd7\xf7\x02\xb6\x77\x71\x81\x2e\x3d\x0a\xed\xad\x28\x3c\xfd\x41\xc9\xfe\x9b\x03\x2c\xb9\xf7\x74\xe2\xa9\x11\x7b\xbc\xb3\xf7\xb4\x14\xc2\xf8\xe4\x9f\xe2\x98\xdf\x71\xe2\xcd\xa3\x09\xda\xb9\x59\x49\x38\x51\xbd\x9e\x68\xae\x27\xca\x12\x49\x5a\xf7\xee\xa0\x1e\x5a\x34\x45\x57\x44\x1a\x79\x22\x38\xeb\xa3\x66\x9f\xd8\xae\xa6\x5e\xa4\x44\x12\x61\x0f\x7c\xdd\x6e\x3c\xbd\x57\x70\x59\x5c\xd2\x70\x31\x58\x65\x78\x71\xbe\xa4\x62\x96\x4b\x04\xcc\x28\x3d\x5a\x19\xde\x61\x38\x38\xef\xcc\xdf\xf5\x95\x90\x08\x90\x0b\x30\x5d\x30\x3b\xdc\xd3\x72\x48\x92\xc1\x5f\x5c\x08\xf6\x30\x3d\x04\xba\x34\xa9\x11\x8d\x13\xaa\x24\x2b\x35\xa4\x98\x6a\xec\xc8\x45\xbd\x38\x85\xc7\x15\x51\x29\xa6\x1b\x0e\xbc\xd0\xc6\xd9\x67\x2a\xce\x5d\x0a\x94\xb4\x62\x09\xd1\x63\x1a\xb4\x23\x24\x83\xcc\xdd\x98\x09\x4a\x39\xc7\xca\x8d\x1e\x69\x97\x1a\x92\xc0\x3f\x5a\xe8\x81\x99\xca\x68\x81\x68\x6d\xd6\xfc\x9c\x80\x47\xf1\x9e\x2e\x4c\xf6\xd2\xa9\xd9\x6c\xe9\x3d\x3e\xba\x96\xc4\x07\xc2\x45\x97\xad\xe1\x9d\x4f\xa6\x28\x73\xdd\xd2\xce\xb4\x8e\xb4\x55\xe8\x2a\x16\xec\x19\xc4\x1a\xa6\x8a\x2c\x5c\x30\xca\xef\x7d\x55\x05\xff\x3c\x41\x47\x24\xf6\x66\x8a\x70\x5f\x48\x94\xaa\x2e\x4c\xbb\x14\x3c\xa1\xe1\x4b\x24\x85\x4d\x0a\xf9\x54\x3c\x94\x77\x44\xda\x96\x78\x95\xd7\xe4\x67\x41\xa7\x72\x13\xa8\xfd\xd2\xf2\x91\xa7\x48\x8c\x96\x16\x27\xdc\x74\x21\x39\x48\x00\x6b\x78\xbf\xab\x3f\x00\x78\x84\x09\x09\x2a\x49\x0c\xb3\xd4\x54\xe7\xce\x76\xa8\xe2\xac\xf4\xe7\x60\x58\xe3\x34\xf4\xa0\xab\x77\x8a\xcd\xfd\x80\x41\x3b\x55\xe2\x0e\x53\x93\x07\x57\x3e\x5e\x0b\xfd\xef\xc1\x9d\x3a\xfa\x9f\xac\xf7\x72\x9e\xdc\x0d\xa3\xfb\xf0\x61\x67\x56\x93\xcd\xd3\x98\xe7\xeb\x15\x27\x1e\xee\x05\x05\x81\x6f\x1b\x1b\xce\x2c\xd6\x45\x3a\x82\x8a\xe7\xb2\xaf\xfa\xe1\x53\xba\x6a\x81\xbe\xd7\xd9\xaa\xbe\x83\x53\xe4\x33\xd2\x38\x0b\xda\x51\x65\xdf\x68\x03\x0e\x45\x58\x07\xc8\x84\x57\x43\xe2\x8c\x68\xf3\xa4\xd3\x12\x8f\xdb\x79\x6a\x8e\x17\x49\x7e\xff\xf9\x8c\x48\x3e\xe2\x21\x49\xd1\x9e\xde\x02\x8c\xb5\x40\x4a\x0f\x49\xc3\x5e\x88\x4a\x7a\x5d\xe3\x16\x1c\xe6\x39\x16\x1c\x82\x85\xc1\xb3\x1b\x0e\x00\xe1\x06\x16\xb4\x04\xb7\x9c\x7b\xfe\x9b\x76\xc3\x1e\x66\x17\xc1\xfa\x23\x7b\x1b\x6e\x11\xaa\xb0\x24\xda\xbd\x5a\xf2\xd6\x2f\xb0\xdb\xcd\x4f\x4f\xc0\xe9\x41\xc6\x47\x82\xc1\xe2\xc5\x51\x03\x1e\x6e\xae\x66\x52\x7c\x9e\x22\x7a\x96\xfb\x55\x68\x88\xd4\xe8\x46\x31\xb9\x95\x95\x9f\xd2\xcb\x9b\xb9\xab\x8d\xa2\xf7\xb7\x81\x48\xfb\xbb\x5f\x17\xae\x60\x7a\x24\xe7\x22\x1a\xb9\x58\x26\x0e\xd2\x19\x4e\x32\x9d\x13\x5a\xea\x57\xb7\x88\xfb\x99\x48\xbb\xb8\x3b\xa4\x53\x8f\x5f\x1e\x53\x18\x04\x55\x44\x29\x06\xf6\x35\x0f\xca\x0f\x08\xec\x12\xb2\xd5\x59\xdd\xbc\x08\x2d\x58\x18\xc9\xa7\xe4\x95\xd9\x66\x29\x88\x69\x45\x01\x61\x88\x3d\xc5\x3e\x43\xc1\x3f\x74\x86\x50\x53\x35\x24\x78\x74\x50\x04\x86\x17\x07\x39\xa3\x6a\x00\xf9\xcc\xa2\x39\xad\x65\x68\x57\x2e\xfb\xca\xdf\x54\xe3\x94\x34\x4a\x6e\xfa\xb6\x6f\xc3\x47\x35\x60\xb3\x75\x60\x81\x12\xed\x3a\x8c\x5c\xb4\x26\x11\x68\x3e\x5c\x36\xa7\x3d\x05\x97\x11\x4f\xf0\x80\x28\x59\x07\x5b\x34\x17\x5f\x6f\xbb\x17\xd6\x6f\x48\x64\xc8\x76\x2f\x2b\x9c\x2f\xd2\x17\xfd\x43\x99\x34\x5f\x31\x2c\xaa\xbd\x23\x67\xfc\x29\x58\x5d\xac\xbc\x36\x8d\x38\x1e\x74\xe8\x91\xe1\x39\x8b\xde\x2c\xf3\x29\xfe\x05\x98\x69\xf2\x5b\xc5\xe3\x9b\x3e\x09\x69\xee\x68\x84\x00\x47\x72\x34\x4a\xad\x8c\x4a\x7a\x19\xdb\x2a\x5c\xa5\x5d\xbe\xd9\xeb\x62\x9b\x2c\xae\x85\xea\xa2\x64\xec\xbc\x24\x12\xda\x3a\x13\x2d\xfe\x27\x03\xa1\x2d\x4f\x95\x34\xe0\x1b\x7f\xbe\xd7\x17\x8c\x6c\xc6\x08\xd9\xcf\x7c\x85\xcb\x00\x46\xd8\x6a\x9d\x18\xda\x89\x68\xcc\xb2\x89\x20\xe5\xf7\x27\xc9\xac\x6b\x1d\x59\x4f\x4b\x0f\xe3\x69\xcd\x56\x73\x77\x85\xbe\xe0\x6d\x97\x6a\xf0\x1e\x37\x8a\x52\x65\x47\xd1\xce\x86\xd1\x42\x5d\x5d\xf7\x09\x81\x41\xce\x0a\xf3\xbf\x1a\x12\xe6\x4c\x4e\x6d\xc6\x08\x5b\x69\x23\xb9\x2d\x14\xcf\x79\xb9\xeb\xb0\x78\x21\xc7\x9a\x00\xe6\xfe\x76\x06\x6b\x06\xd2\x91\x5f\xb6\x27\x3f\x6c\x4e\x7f\xe4\xbc\xcb\xdc\x7a\x50\x22\xa8\xde\x78\x4b\x93\xdb\x11\xfe\x6c\x4f\x62\xc7\x77\xe3\x2d\x24\x37\x7d\xc7\x14\xe8\x3a\x0b\xa9\x46\x30\xd1\x7d\xb0\x72\x0d\x7c\xd1\xae\xf6\x6c\x49\x0c\xea\x8b\x4f\xe6\xd3\x9a\x90\x9e\x1f\x2e\xb4\xfa\x08\x59\x17\xa0\x61\x9b\x48\x36\x01\xb7\xd5\x4f\xf6\xda\x33\xdc\xdc\xb5\x88\x96\x59\x35\xf6\xa1\x0f\x63\x2d\xfe\x0e\xfe\x43\x70\x14\xa0\x32\x92\xfc\xe9\xb3\x66\x8c\x3a\x62\x60\xd1\x54\x62\xc4\xb4\xd0\xef\xe3\xf8\xec\x1f\xbc\x95\x7f\x6b\xd1\x6a\x7d\xca\x72\x01\x01\x20\xfa\x01\xd9\x54\xb9\x6c\x41\x82\xfd\xb8\xd9\x65\xba\x6a\x3d\x1b\x3f\x9a\xd6\x00\x01\xdc\x19\xb6\x3d\xb8\x1c\xb2\x27\x54\xfa\x9f\xe7\x8f\x19\x16\xad\x27\xa5\xd2\xb7\x11\x2b\xbf\xd4\x4b\x50\x92\xf0\xce\xfc\x06\x05\xfc\x6e\x8a\x26\x81\xdf\x0a\xff\x35\x59\x05\x24\xf8\x67\x07\x71\x78\xb9\xf7\x2c\xa1\xd3\x53\x8b\xe3\xd3\x82\xc5\xa6\xa3\x9d\x75\xdd\x1f\x8f\xaf\x8e\xe4\x6b\x75\x25\x80\xfd\x87\x1b\xa0\x5c\xa3\x86\xa8\x09\xac\x9c\x90\x3f\x61\x38\x61\x78\x8d\xfa\x54\x67\xdb\x68\xb7\x44\x3f\xb3\x02\x93\x87\x95\xfe\xbc\xd9\x13\x3a\x93\xac\xe1\xf9\x7e\xd0\x3c\xa4\x93\x7e\xf7\x91\x14\x7a\x12\xf5\xec\x04\xe7\xa8\x46\x2e\x15\xa7\x85\x96\x62\xcd\xd7\x1a\xae\x91\x52\xc4\xa9\x0c\xa9\xb5\xa8\x06\xe6\x7b\x16\xb9\x65\x08\x1a\x7d\x6e\x7b\x5a\xa4\x87\xa0\x61\xd4\x77\x51\x9d\xf3\xae\x9e\x6d\xc9\x1b\xa0\x9a\xdb\xf7\xf7\xcb\x8c\xea\xd6\x9e\x8e\xeb\x69\x1b\xcc\x1b\xb0\x20\xfe\xeb\x57\x40\xfa\xed\x6c\x8c\x65\x8a\xbc\x38\x84\x04\xff\xb3\x51\x3f\x8b\xfd\xbb\x20\x1c\x75\xdc\x7c\xdb\xed\x65\x81\x16\x03\x4d\x29\x6c\x34\x07\xf9\xbb\x0a\xaa\xa3\x14\x65\x37\x52\x4e\x41\xb5\xe5\x77\x48\x50\x17\xb5\x2a\x68\x67\x0d\x5e\xbc\xb9\x14\x3d\x81\xb0\x7c\x5f\xa9\xdf\x6d\x91\x48\xe7\xf2\x0f\xd1\x6f\x64\x13\x6b\xec\x70\x0e\xf4\x8d\xf3\x5b\xbf\xdc\x1c\x39\x59\xe3\xc2\xf1\xf1\x08\x0e\x0b\xa8\x83\xa4\xe3\xf3\x96\x1f\x8e\xf8\xbb\xff\xad\xf4\xeb\xcc\x06\xaf\xa1\x00\x12\x98\x52\x45\xa6\x3d\x80\x6f\xf8\x2b\x2b\xac\x18\x73\xe8\x53\x02\x89\xa0\x82\x33\x15\xc0\x9d\x2b\x59\x4c\xf2\x47\x83\x86\x64\xf4\x83\x24\xf7\x45\xdc\x4a\x58\x4c\x3d\xbe\xaa\x67\x72\xe2\x00\xa9\x6d\x6f\x51\x83\x94\x7b\x59\xf2\x10\x8e\xc1\x10\x82\x1c\x0a\xa7\xbb\x22\xd5\x19\xb5\xcc\x69\xf5\xd3\x11\xb6\xdd\x19\x41\xc0\xe6\x58\x28\x85\x0b\x3c\x57\x04\xd9\xfe\x7e\x10\x99\xc3\x1f\xd3\x89\x68\x2e\x37\x6b\x31\xc2\xf6\x9c\xf9\x98\x82\x26\x1e\xcf\xc5\xda\xc4\x4c\xd7\x79\x60\x0b\xdf\xba\x22\x0a\x6d\x50\x3f\x80\xca\xad\x22\x86\x8f\x56\x92\x3d\x58\xc9\x28\xec\x9f\xac\xe2\xf5\x41\x51\x61\x28\xeb\xba\x36\x64\xc6\xb9\x35\x25\x45\x8a\x8a\x8d\x00\x92\xe8\xf6\xa4\x20\x1b\x70\xc8\x6b\x31\xd3\xc9\x34\x6a\xf4\x37\x49\xf0\xc4\xcc\x23\x00\xdd\xba\xad\x68\x10\xdb\x24\xe1\xba\x12\x0a\xd7\x13\x8c\x15\x38\xce\x9b\x2f\x0a\x33\xbf\x1d\xf7\x28\x88\x45\x4b\x12\xfa\xaf\x07\x95\x50\xe5\x47\xce\x66\x88\xd0\x28\xb7\x3c\x79\xf7\x2f\xaa\x53\x9c\x92\x1a\x20\x35\xce\x16\x38\x86\x0b\xb1\xc4\xd2\xa8\xc4\xc0\x0c\x28\xd5\x8c\xd3\x9a\x1e\x3b\xe0\xa4\x6c\x71\x82\x28\xea\x8a\x2f\xf3\x6b\x4b\xcc\x68\x21\x16\x37\x3e\x82\x26\xea\x78\x33\x7d\xb3\x7c\xbd\xdc\xe0\x5b\xdc\x69\x3e\xde\xe7\xc9\xb6\x0c\xc3\x64\x38\x0b\xcd\xda\x7e\x34\xb5\xed\x59\x65\x2f\x2c\x53\xc7\xae\x5e\x6d\xb9\xfa\xa1\x53\xc0\x57\xac\x58\x8c\xa8\x1a\x07\x88\x30\x51\xfc\xa4\xed\x3e\x32\x68\xad\x36\xda\x52\x7f\xc9\x6b\x38\x19\x65\xf1\x7c\xea\xba\x20\x05\x9d\x28\x06\x31\x53\x32\x38\xe7\xec\xf6\x79\xac\x61\xe2\xee\x15\xf3\x01\x13\xd7\x8d\x24\x93\x22\xcf\x26\x55\x6c\x33\x03\x86\xe6\xa6\x86\x10\x92\xf1\x01\xd1\x20\x3d\x85\xd0\xa4\x13\x0b\x43\xd3\x76\x39\x52\x33\xff\x18\xef\x55\xb8\xbd\xc0\xbf\x49\x3d\x73\x18\x1b\x69\xd9\x3f\xd4\x19\x8d\x64\xae\x74\xde\x61\x34\x4e\x1e\xf4\x2a\x14\x0d\x61\x05\xb4\x5a\xce\x37\xa1\xb4\xce\x9d\xb2\x5c\x1f\xe8\xad\x2c\xc9\x09\x27\x20\x87\xef\xb3\x90\xf3\xec\xe2\x94\xdb\x4a\xcb\x4f\x0b\xb3\x20\xf1\x7a\x29\x19\x89\xbb\x2a\xac\x94\xa1\xee\x76\xf4\x58\x4e\xfc\x39\x51\x52\x5b\x4c\x8e\x54\x1a\x8e\xd8\x8c\x08\x3a\x2e\x8b\x86\x79\x02\xa3\x21\xbc\xe1\x11\x4b\x25\x62\x23\x68\xce\xde\x1e\xb5\x4c\xec\x76\xf4\x8b\xe1\x60\x94\x91\xab\xa3\x55\xc2\xa2\xdc\x50\x4d\x6b\xf8\xa8\x1b\xf4\xe6\xcd\x65\x4c\x0c\x02\x00\xa9\x2e\xa7\x9e\xb9\xbc\x9f\x64\x3b\xf5\xda\x70\x7c\x9c\x34\xfd\xcf\x27\x01\x92\x22\x83\xc5\xee\x9f\x48\x87\x2b\xca\x30\x14\x4e\xb8\x71\x32\xb5\x85\x55\xdf\x8a\x6f\x72\x1f\x20\x0d\x11\x6e\x39\x03\x42\x19\xf6\x98\x35\x25\x9b\xe8\x92\xb4\x3d\xb2\xb7\x84\x0b\x9e\xbe\x0c\x5d\x2e\xf1\x77\xda\xce\x24\x20\xc3\x8a\xfc\x54\xd8\xc7\x01\x25\x0a\x66\x7d\x43\x90\x0c\x94\x3a\x59\xd9\x87\x4a\x10\xbd\x5b\x16\x69\x03\xad\xe3\x1e\x4b\x73\x44\x2c\xb5\xd2\x31\xb5\xa4\x25\x19\xa3\x83\x25\x31\xa7\xa2\x44\xd1\x90\x66\xc9\x98\xf9\x5a\xbe\x7a\x1d\xab\x7a\x1b\xab\xb3\xd2\xad\x3a\xd7\xfc\xa7\x8c\x10\xb9\x96\xf7\x1e\x0d\xce\xd8\x2b\xd7\x99\x57\x0f\xae\x4d\xa1\xb5\xe2\x1a\xa2\x62\xa5\xa0\xcc\x85\x6a\xd4\x46\x13\xe4\xe0\xd4\xc9\xb9\x21\xf8\x37\xbf\x42\x31\xf6\x1c\x99\x82\xe4\x03\x24\xbc\xb8\xff\xb4\x72\x35\x40\xd8\xee\x33\x22\x31\x87\x5d\xaa\x04\x92\x15\xfe\x3f\x97\x4b\x8e\x8a\x42\x8c\x31\x1a\x73\x64\xae\x1a\x51\x8b\x53\x4c\x9a\xa7\xad\x70\x62\x83\x25\xbb\xb0\x8a\xcc\x6c\x89\x25\x2b\x95\x77\x25\x05\x5e\x2c\x53\x17\x1c\xfb\x43\xec\xf8\x05\xbe\x16\xc2\x22\x47\x07\x2b\xf8\x30\xba\x28\x5f\x99\x25\x7c\xc4\xb7\x9c\x70\xc5\x24\x37\xc7\x51\x3d\x54\x63\x89\x61\x20\x21\x29\x50\x6b\xfa\x1b\x82\xde\x39\x28\xa7\x50\xd3\xc4\xa3\x1b\x61\xa0\x26\x6e\x1b\xd5\xc0\xe3\xa3\x46\xc5\x81\x0b\xa7\xef\x67\x39\xc4\xd8\x4d\x35\x42\x65\x17\xd9\x40\xd6\xaf\x22\xd8\x32\x56\xd3\xb9\x57\x55\xc3\xe0\xf7\x36\x29\xa9\x4e\xdc\xb1\xe9\x5f\x6b\xae\x12\x18\x62\x9d\x25\xf7\xc4\x0a\x4c\x5f\xd6\x40\x3b\xa5\xad\xb0\x0b\x8f\x29\x33\xf3\xcf\x97\x63\x5b\xcb\x96\x50\x5a\xef\x3d\x05\x43\x65\x54\x47\x36\xa3\x28\x63\xc8\x71\xed\x42\xf6\xb6\x8f\x7e\x83\x95\x15\xe9\x9f\x0a\x59\xce\x45\x23\x38\xbf\x9c\x76\xf3\x99\xad\x52\x21\xc1\x60\x32\x6c\x73\xf8\xbf\xf7\xc4\x3f\x7c\xef\x1a\x69\x4a\x3b\xb4\x4f\xaf\xde\x36\xc7\x8d\x1a\xa8\x19\x56\x99\x2c\xee\x89\x7f\x93\xe8\x91\x58\x8c\x07\x60\xea\x9c\x10\x77\x7a\x50\xc1\xea\x0b\xcb\x71\x54\xde\x41\xcb\x03\x93\xe3\x43\x1d\x2b\x44\xee\xdd\xbe\x7c\xe0\x89\x3d\xa2\xe7\xb7\x5a\x47\x5f\x40\x7d\xe3\x86\x69\x46\xae\x31\x9c\x12\xe1\x4f\x30\xf2\x4a\x21\x5f\x97\x92\x73\x94\xb2\x73\x04\xa1\x3d\x1e\x3e\x3f\xab\xc6\x57\x52\xe2\x94\xca\xc7\x70\xb1\xf1\xb7\xda\x75\x7b\xcb\xe5\xc6\x7e\x0e\xbb\x0d\xb7\xb0\x76\xa4\xfd\x88\x1e\xde\x81\xa8\xce\x6b\x37\xe2\x17\x22\x2a\xea\xa9\x32\x3b\x5b\x64\x35\xf8\x84\x15\xcb\x6b\xb9\x67\x28\x6a\x87\xd1\x37\xd1\xac\xc3\x88\xeb\xf3\xdd\x1a\xe1\x3b\x59\xca\xde\x0c\xef\xfd\x64\xe6\x14\x9a\x1b\xad\x3a\xdb\x13\x97\x0b\xe2\xf2\x17\xc2\x96\xf7\xed\x4c\xac\xeb\x8e\x3e\x34\x49\xdc\x6f\xcd\xd8\x04\xfc\xa1\x63\x4a\x70\x8f\x63\x8c\x38\xa9\x42\xf9\xe4\x75\xcc\xc2\xb3\x42\xf1\x30\x64\x46\x59\xd6\x4b\x91\x72\x4e\x5a\xba\x31\xd8\x1f\x9f\x47\x21\x8e\x4c\x62\xca\xa7\x13\x43\x6f\xdc\xd7\xce\xb4\x33\xdc\x01\xd8\x22\xb8\xf6\x45\x45\x0f\x40\xf1\x1f\x8f\xd3\x99\x46\xd1\x57\x51\x64\xd7\x2f\x45\x86\x89\x3b\x2c\x51\x02\x18\x75\xbb\x25\x25\xe6\xbe\x99\x59\x12\x38\x85\x10\xb6\xdb\x4f\x93\x29\x04\x3b\x8c\x61\xf0\x6d\x05\xb2\x2f\x7c\x45\x27\x4d\xec\xcd\x3f\x3e\x7a\x66\x3b\x4b\x28\x67\x4d\xc9\xf7\x4c\x62\x73\xf4\x9a\x87\xff\x13\x63\x0f\x61\x6d\xfc\x59\x0b\x7c\x14\xc1\x91\x1c\xe1\xa3\x16\xc8\xeb\x8f\x3c\xf9\x19\xeb\x12\xbc\xf6\x53\x8e\xa4\x5b\x4e\xe2\xc4\x93\x23\x28\xff\xb6\x5d\xb3\x21\x2e\xdc\xdd\xaa\x1f\x35\xdd\x9e\xbf\xe8\x60\xff\x54\x4e\xce\x43\xe4\xba\x32\x87\x79\x6d\x42\xb1\x34\xee\x9a\x79\x3e\xa1\xc6\x15\x76\xca\x95\xc9\x0b\x4f\x05\x4d\xa0\xce\xe8\x7e\xa5\xec\xb7\x16\xf3\x0d\xc1\x72\xa7\xa0\xbc\x92\x2b\x33\x33\x19\x5a\x56\xc1\x26\x29\xbf\x13\x88\x1f\x50\xcf\x3b\xa3\xbb\xf5\xcf\x5b\x71\xc2\xc2\x48\x9f\x44\x1c\x46\xe8\xb0\x7c\xe7\x22\x08\x89\x80\x3b\x2b\x39\x8f\x36\x8d\xa1\x0c\x4d\x50\x89\xef\xaf\x7a\x1a\x02\xf8\xf7\x25\x87\xd2\xfe\xd4\xb1\x46\xc4\xba\xc7\x97\xe6\x0d\xdd\xcf\x10\x61\x50\x6c\x26\xc1\xc2\x35\x20\xd9\x56\x17\x1a\x05\xa0\xe6\x26\xcf\x4a\x39\x6b\x36\x16\x17\xb6\xc3\x6a\x87\x3c\x6b\xe8\x71\x9b\xb3\xf0\x57\xca\xa4\x84\x7f\x11\xb9\x5c\x89\x4d\xf8\x1f\xeb\xe7\x70\x38\x93\x1f\xfb\x5b\x2f\xc7\x85\x30\xe4\xee\x7e\x5b\x14\x9e\x3a\xd5\x41\x58\x16\x28\xc0\xe7\xbb\x93\xf6\xef\x12\xce\xe2\x11\xba\xb4\x96\x54\x0e\xd6\x53\x1d\x24\x6e\x96\xe2\xa7\x72\xc2\x02\x0b\x8f\xe4\x58\x19\x4f\xe5\xc3\x2b\xdc\xcb\x03\x98\xf5\x48\xa7\x60\x38\x6a\x85\xc9\xe4\xc4\xe6\x17\xb4\xab\x95\x21\xb9\xfd\x06\xc5\xb3\x2c\xca\x1a\x9c\x29\x75\x02\x03\x77\x29\xd2\xa4\x10\x61\xa2\x18\x96\xb8\xf8\x4f\x2c\xf7\xca\x44\xc3\x5b\x55\x1a\x43\xbf\x66\x94\x72\x0e\xbd\xd8\x28\x54\x46\xb1\xa8\x5a\x98\x6c\x43\x5e\x84\xac\xa8\x01\x38\xad\x53\xf6\xce\x18\xe0\x14\x6e\x9c\x14\x26\x45\x74\x1e\xac\x89\x3b\x4d\x45\xa0\x14\xd0\x14\x99\xa4\xdf\xfd\x75\x91\x8b\xda\xa9\x66\xb7\x0b\xee\x83\x3c\xbf\x0f\xc1\x6b\x94\xed\x33\xce\x58\x0a\x02\xfc\xec\xd0\x10\x7e\x3d\xa4\xc9\x0f\x3e\x07\x91\xbb\xe5\xa6\x4d\x22\x08\x3b\x02\x00\x90\xab\x42\x1f\xe2\x80\x46\x54\xdb\x2b\x66\x0e\x61\x43\x50\x92\x13\xc5\x68\xc9\x5a\xf9\xe6\x00\xb6\x94\xf8\x60\xf0\x66\xcf\xc0\xc2\xeb\x6e\x06\x5d\xd8\x79\xaf\x17\xe2\xe3\x6e\xa2\xd0\xf5\xd8\x52\xf1\x6c\x33\x41\xb0\x27\x8f\x7e\x3d\x07\x3e\x02\x87\x74\x81\x08\xd7\x21\x76\xbd\xc8\xa7\xaf\x62\xb2\xd0\x01\x16\x2c\x37\x62\xf2\x13\x15\x8b\x9a\xb0\xb1\x98\x95\xb0\xd2\x88\x29\xc9\x0b\x10\x48\x20\x41\xf2\xf1\xeb\x23\xc5\x2b\x35\xdd\x2f\x5f\xa3\xc8\x7d\xd5\xf5\xc0\x8c\xc0\x57\x53\x7d\xc5\x20\x3e\x32\xc0\x3e\x78\x3d\xc8\xbf\xc4\x45\x3d\xd2\x8c\x65\xe8\x79\x7d\xe8\x25\x76\x33\x07\x29\xef\x17\xe3\x77\x32\x43\x9f\xb6\x8c\x15\x94\xda\x9c\x20\xb4\x54\x62\x16\x82\x82\xd8\xdf\xf8\x67\xbf\x8b\x6e\xe8\x9d\x03\x68\x45\x44\x60\xf4\xdf\xe3\x68\xdb\x04\xd9\x08\x2d\x4f\xd7\xf9\xe3\x9a\xc0\xcf\x3e\x45\x1e\x0d\x66\xb0\x3d\xcc\x8f\xab\xb0\x9a\xa1\x80\x29\x44\x3d\xa2\x63\xe5\x4d\x19\x00\x9d\x94\xee\xcf\xae\x02\x44\xdc\xa6\x2f\x28\xf3\x35\x04\x67\x7f\x60\x5c\x11\xde\xb1\xfc\x5e\xf7\xc0\xa6\xb4\x7c\xe9\x1b\x5e\x84\x68\x20\xc0\x61\xea\x56\x50\xec\x52\x65\xcf\xa2\xec\x93\xe1\xbe\x41\x69\xc1\x11\xb3\x98\x10\x6e\xc4\xa5\x26\x7a\x45\x0e\xb5\x12\x13\x61\x01\xd8\x21\x79\xd8\xc7\x20\x03\x15\x94\x84\x4a\x08\xba\xea\xca\x73\xe9\xa0\x86\x60\xcb\x65\xdc\xaf\xca\x92\xfb\x08\x76\x46\x0c\xe1\x19\x7d\x30\x2d\x31\xdd\x8e\xc5\x29\x22\xe1\xde\x52\x41\x9f\xf0\xb4\xc9\xc4\x00\xb5\x61\x06\x18\x3f\x9a\x9b\x52\x3a\x12\xcb\xda\x02\xb3\x17\x7e\x4b\x2d\x21\xe9\xe7\xd3\x89\x61\x65\x41\x1e\xf3\x34\x87\xcc\x15\x7c\x19\xf8\x22\xc1\xec\xa8\x83\xed\xf1\x04\xe6\xf6\x8e\xce\xd1\x36\x8d\xd2\x01\xf0\xd6\x84\x09\x4d\xad\x88\x0a\xfd\xd6\x76\x33\x63\xe4\xf4\xbc\x6a\x3c\x8a\x1b\xb6\x88\x68\xd1\x9f\x0b\x23\xfd\xfe\x86\x23\xb6\x62\x48\x16\xe8\x93\x66\xff\x94\x77\xb2\x90\x42\x5f\x83\x80\xcb\x8f\xc9\x79\xe7\x20\xed\x74\x56\xed\x26\x7e\x8f\xa3\x4b\x5a\xaa\x4f\xa0\x4d\x9d\x04\xb7\xe8\xa0\xee\x89\xe5\x9e\x28\x9e\xde\xae\x4a\x40\x7b\x87\xf8\x9c\x60\xb4\x55\x86\x90\x84\xc8\xc5\x7c\x80\x6f\x97\x37\x39\x03\xa3\x06\xc4\xc6\x50\x55\xab\x44\xce\x65\x43\xc4\xac\x90\x3c\xc6\xc3\xe0\xb4\x34\xee\xda\xc8\x38\xcc\x11\xa9\x45\xde\x1c\x05\x9c\xee\xa2\x96\x0d\x5f\xee\x0a\x47\xee\x4d\x66\x15\x71\x04\xe3\x14\xe5\xc7\x6a\xc2\x98\xab\x66\x0a\x8f\x23\x3e\x39\x6a\xdf\xfc\x87\x6f\xa3\xd2\x51\x22\x4b\x66\x3a\xa0\xf1\xf4\x57\x4c\x58\x93\xb3\xc2\x76\x63\xa0\x4f\x4e\x53\xc5\xf8\xc1\x88\x98\x04\xdc\x9f\xac\x61\xe5\xe2\x0d\x1a\xb6\xb2\x9e\x88\xab\xd1\x64\x44\xa0\x93\x5e\xbc\x08\xb8\x18\x0b\x54\xc0\xdd\x21\xd7\x52\x62\x8e\x92\xd7\xcd\xaa\xcb\xca\x5d\x73\x03\x1e\x58\xc1\xb2\xeb\xc9\xf4\xaf\x29\x2c\x55\xca\x87\xf7\xa2\xff\x8b\x60\x26\x91\x99\xcd\x81\x6c\x1b\x39\xfc\x51\xe7\xfb\x71\xea\x72\xa9\x7c\x55\xe6\x2d\x75\xa4\x84\x43\x40\x91\x94\x1a\x79\x53\xab\xdb\xce\x14\x65\xc9\xb8\xd9\xf4\xaa\x8f\x7b\xb6\x71\x89\x4e\xa5\xde\x14\xad\x8a\x37\x1a\x1f\x9f\xfc\xf5\xf3\x4f\x9e\x07\x12\xca\x8a\x16\x2d\x6b\xf2\xcc\x5e\xc5\x5c\x0e\xb7\x6f\x12\x91\x6b\x1a\x79\x74\x24\x8b\x01\x94\x05\x0a\x63\x78\x81\xe4\x25\xff\xad\x25\xe0\x4e\x39\xb0\x7b\xa1\x45\x7a\x94\x56\xc9\x1b\xfa\x01\x54\x72\xfb\xd6\x24\x43\x24\x41\xd9\x39\x8c\x05\xfa\xaa\x71\x5f\xae\xf8\xec\x55\xcb\xbd\xd2\xb5\x00\x57\x74\xea\x63\x3b\x85\xef\x81\xd5\x9f\xa4\x3e\xe0\xa7\x1e\x87\xd3\x10\x2d\xb1\xa2\x73\xbe\xc3\xf5\x92\xd1\x42\xb0\x33\xf8\xc8\x51\x64\x0b\x56\x93\x09\xda\x05\x0b\x45\xcd\xb1\xc8\xb2\x77\x2d\x99\xea\xb6\x2f\x29\xff\x03\x66\x77\x40\x4c\x5f\x5f\x05\x7e\xc2\x88\xc5\xc4\xe2\x2d\xba\x15\x18\x84\xb4\x6f\x8f\xaf\x74\xe6\xfc\xee\xf1\x8c\x20\x9a\x9b\x77\x7e\x31\x11\x6e\xd1\x62\xc7\xeb\xf5\x65\xdd\xe2\xf3\x74\x22\x1c\xed\xf1\x10\xdd\x9d\xf2\x44\x83\xad\xcf\x10\x9d\xbe\x7d\xfe\xd5\x6e\x11\x0f\xdd\x98\x40\x50\x85\x6e\x69\x1e\x12\xd3\x34\x34\x7f\x18\x4a\xfe\x05\xf5\xdb\xbf\xcf\x54\x36\xbc\x7b\xd1\x3a\xab\xb2\x09\xd3\x4a\x47\x3e\x3f\x99\x6f\x27\xc5\x62\xb8\xab\x86\x95\x0f\x78\x8f\x6f\x56\x27\xa6\xe9\x96\x12\xbf\x31\x4a\x90\x4a\x36\x43\x1c\xc6\x3a\xb2\x67\x45\xc2\x23\xfa\x30\xed\x19\xe5\x11\xbc\x75\x55\x96\x4f\x52\xf4\x7e\xf4\x05\xda\x2d\x7c\xda\x4a\x61\xcb\xa4\x91\xb4\x68\xb0\x22\xd4\xa3\x95\x91\x41\xd3\x68\x22\xab\x78\x20\x8a\xd3\x39\x72\x1a\xba\x92\xbf\xf7\xb8\xf9\x91\x3c\xdf\xb7\x30\x2e\x84\x91\x36\xcb\x11\xdf\x39\x50\xf5\xe5\x1f\xe5\x54\x4e\xf5\x6a\xbd\xe5\x37\xb8\x6f\xfe\x83\x2e\x9a\xab\xad\x9f\x4d\x57\x54\x88\x64\x7a\x84\x43\x10\x2d\xa9\x8f\x78\xd1\x3f\x45\x2e\xf7\xed\x28\xf8\x86\x7d\xd9\x4d\x67\x4b\x53\x91\xe1\x28\x35\xda\xfb\x96\xc0\x0b\x41\x6b\xb8\xf7\xf1\xf7\x34\x0c\x70\xfa\x2f\x38\x9f\xb0\x25\x4a\x98\xdf\x26\x3f\x35\x85\xfa\xdb\xe4\x83\x7b\x66\xc9\x5f\x4e\xc3\x04\x33\xdc\x70\x3e\x45\x29\xb3\x9c\xaf\xe2\xb0\x9a\x04\x1f\x1d\x55\x29\xc5\x7a\x92\x75\x6e\x76\x8d\x68\x2a\xee\xbb\xbf\x58\xc4\xf5\x7a\x4c\x51\xc4\x98\x25\x40\x4d\x0b\x73\x6e\x5b\xbb\x9f\x3f\x82\xd7\x47\xa6\x47\x5a\xec\x52\x84\x7b\x08\x50\xe0\x18\x59\x64\x34\x32\x33\x5f\xb0\x94\x81\xf9\x21\xa4\x37\x5d\x8b\xf8\xc2\x77\x92\xda\x4f\x59\x28\xfd\xaf\x15\x38\x78\x67\x3f\xfd\xe5\xec\xcd\xa7\xe1\x99\x98\xef\x54\x11\x25\x2d\x90\x6d\xbc\x9f\xd0\xb8\x94\x4e\x4e\x8b\x71\xa4\xe2\x2a\x9e\x0b\x18\x59\x72\xfc\x2f\x2a\xa7\x79\xb0\xc8\x81\xff\x0c\x83\xa5\x27\xe0\xa2\x1b\xa6\x0a\x71\x25\x27\x15\x05\x25\x78\x0b\xed\x63\x2d\x71\xf9\x8a\x25\xca\x38\x51\xbf\x61\x73\xb2\x0a\xa3\x56\xf1\x99\x29\x1b\x47\x30\x9e\x69\x05\x1c\xfd\x0c\x10\x41\xe4\x18\xff\x71\xa5\xe5\x63\x0a\x6d\xc2\x15\xb0\x76\xe1\x19\x21\xde\xc8\x89\x30\x90\x25\xbe\x9a\xf0\xdb\x44\x2d\xb8\xb4\xc6\x47\x87\x87\x29\xa5\x96\x06\xb6\x35\xcf\x96\xd4\xe2\xcb\xab\x18\xbe\x8e\x2f\x9e\x62\xd7\xa3\xdb\x87\x3f\xb6\xbf\xe5\x75\x4d\xce\x92\x95\x00\xde\xac\x08\x6b\xec\xf4\xf9\xbc\x52\x35\x3d\x0c\xd4\x04\xa0\x0d\xfa\x87\x1d\xa4\x50\x3c\x71\x64\x78\xa2\x52\xa9\x1f\xdf\xe5\xca\x74\xae\x06\x75\xab\x7b\x12\x09\x89\xd4\xe4\xa9\x1b\x48\x7e\x54\x01\x6d\xec\xc6\xc4\xbf\xc6\x95\xd9\x7c\x57\x8c\x53\x90\x54\x76\x2d\x79\xda\x97\x77\x31\x10\x1a\x66\xc3\x14\x74\x4c\x31\x4d\xf1\xee\x6a\x54\x76\x5f\x11\x4a\x5f\xa6\xd3\xb5\x2c\x9e\x74\x1f\xff\x61\x0a\x7d\x56\x51\xbe\xbf\xa4\x3c\x49\x3d\xbc\x84\x2e\x94\xe6\x3a\xcc\x50\x59\xf5\xb2\xbb\xd4\x25\x30\x8a\xcb\x64\xb0\xb9\x22\xe3\x2a\xcc\xbe\x87\x6a\x85\x40\x19\xe7\x91\x6e\x0e\x6a\xe4\xb9\x7a\x47\x99\xbe\xe1\xb5\xb6\xf7\xef\x97\x40\x5f\xf0\xa3\xfc\x88\x27\x8c\xe1\x83\x5c\xf6\x14\x30\x79\xc9\x24\x9a\xec\x99\x6f\xc2\xa8\xf8\xae\x8f\xb8\x7e\x80\x03\x04\xaa\x4d\xf1\xf8\x6f\x13\x57\x51\xf3\x7e\x7d\x3d\x1b\x54\x8d\xf9\xad\x80\x7e\x4f\xf5\x31\x42\x3b\x9a\x67\x8b\x3b\x32\x4d\xf3\xf4\x26\x33\x32\x16\xae\xd8\xcf\xae\x00\x55\x1c\x11\x44\x98\x5c\xff\xce\xc5\x3b\x45\x89\x08\xe5\x08\x42\xd0\x54\x7e\x27\x43\x95\x4c\xed\x95\xd6\xa4\x90\xcc\x4e\xa1\x4c\x98\x47\x93\x69\xc0\x32\x9f\x2d\x04\x72\xe1\x26\x56\x7a\x6f\xdb\x60\x50\x48\x79\x8a\x25\xc1\x2d\xaa\xd3\x84\x22\xf9\x4b\x8d\x05\x29\x7e\xf8\x26\xfc\xee\x40\x73\xbf\x21\xb2\x2e\xea\x0f\xdd\xcf\xa2\xaa\x05\xe3\xf9\x66\xa8\x2c\x9a\xeb\x1d\x15\x38\x71\xdd\x2a\xe0\x05\x1f\x90\x3b\x0b\x7a\x87\x54\x63\xa9\x4a\x5c\x2c\xbc\xb9\xe1\x98\xd0\x45\x5a\xc6\xe5\xa9\x4b\x60\xc0\x4f\xfd\x5d\x14\x59\x1f\x59\x36\xe5\xb3\x97\x58\x60\xd8\xf2\x5d\x76\x45\x47\x6a\x71\x54\x33\xca\x84\xf1\x5b\xd9\x15\x1a\xed\x0b\x30\xeb\x20\x50\x82\x31\x92\xb8\x75\x4b\xc4\xfd\x23\xf9\xff\x20\x63\xd4\x9e\x8a\x19\xe0\x51\x46\x8c\xdf\xc7\x3d\x7d\xe6\x1c\x89\x05\xa0\xa9\x96\x68\xb5\xef\x33\x84\x8c\x27\x7f\x3b\x4f\x71\x8c\xb5\xa2\x2c\x91\x27\x60\x28\x22\x42\x3f\x52\xe0\xca\x1a\xfb\xf3\x34\xb3\xdd\x45\x1b\xb5\x03\xc7\x70\xb2\x19\xdf\x2d\xb0\x28\x26\xc7\x06\x18\x9e\x6d\x28\x03\xff\xf9\x0a\x0a\x42\x2f\x22\xa1\xd0\xa0\xef\xd2\xb5\x78\x9b\xfc\x69\x8a\xdf\x00\xff\x5f\xaf\x57\xc1\x3a\x5e\x72\x87\x8d\x6c\x93\xd3\xf6\x51\xad\x3e\xa6\x44\x22\xa9\x10\xf7\xaa\xd6\x56\x90\x41\xe9\xe5\x3f\xb5\x14\x3a\x69\x6c\xd9\xae\xbb\xaa\xe6\xa9\x27\x11\xa5\xc5\x92\xed\x43\x05\x8d\x93\x04\xc4\x4f\x7c\x25\xd5\x38\x9f\x8e\xd1\x67\xb9\xd7\x5b\x73\xd3\x60\x11\x7a\xf8\xb6\xdc\x99\x60\xbf\x99\xef\x11\x51\x55\x79\xcc\x90\xdc\x8b\x45\x23\xb9\xe6\x7c\xa9\x22\xaf\x92\x90\x74\x28\x62\x12\x8b\x40\x7d\x76\x8d\xdf\x05\x2b\x11\xde\x21\x8c\x13\xc1\xad\xee\x10\xf7\x26\x8f\xad\x29\x0b\xa3\x36\x35\x56\x3a\x87\xd1\x3e\x52\xab\x20\x5a\x12\x37\x3d\xbf\xb5\x6d\x35\x73\x73\xff\x04\x05\x35\xc8\x95\xd9\x09\xad\x70\x52\x5b\x65\xa8\xb3\x0b\x78\x7c\x1a\x52\x35\x45\x6b\xff\xcf\x26\xe9\x55\x20\xb3\x2a\x52\xb7\x00\xe5\x8f\x06\xd0\x2c\xde\xc7\x4d\x69\xa8\x7a\x2c\x3b\x40\x7a\x69\xaf\x4b\x46\x34\x2c\xef\x11\xff\x00\x13\x97\x94\x99\x93\x4f\x45\x3d\xb5\xa4\xd4\x85\x8a\x95\xe9\xde\xfb\xbc\xb4\xf3\x37\x6e\xb4\x74\xe1\x78\xb8\x16\xe7\x00\x7b\xca\xc8\x76\x22\x41\x4d\xd3\xf2\x52\x5c\x74\xa7\xd1\x04\x77\x7c\x65\x19\x77\x39\x06\xf5\xb3\x2a\xb3\x9b\x29\xda\x9b\xfc\x40\x9a\x22\x1d\xdb\x3d\xa4\x1f\x93\xa4\x3e\x19\x51\x3a\x8c\x24\x1e\xfe\xd8\x8e\x02\x12\x2f\x36\x25\xeb\x08\xf1\xa7\xc3\x41\xd3\xea\xa6\x4d\xdc\x5e\x69\xad\x59\xaf\x13\x63\xb6\x13\xa0\x56\xd9\x08\x6d\xfe\x34\xb4\x0b\x38\x50\xc7\x31\x52\xe5\x34\x4a\xdb\x25\x82\xb4\x2e\xad\x4a\x8b\x24\xa3\x6b\x04\x4c\x27\x64\xc3\x6b\xdc\x7a\x55\x14\x61\x15\x75\xfa\xad\x52\xb2\x46\x1b\x07\x4a\xdf\xc0\x6c\x58\xaa\xbe\x87\xfe\x73\x70\x4a\x55\xea\x53\x91\x3a\x16\x93\x40\xe5\x56\xe5\xe2\x41\x6e\x4e\x60\x92\x8f\x5f\x66\x43\x7a\x19\xf3\x2a\x13\xf7\x69\x72\x2a\xcb\xc6\xe6\x28\x53\xac\x85\xaf\xd4\xa6\x8a\x2a\xfc\x66\x85\x15\xfb\x8b\x77\xfa\x3f\x29\xc0\xaf\xb9\x56\x9b\xdf\x8a\x99\x3e\xb0\xa2\x80\x16\x8c\x6f\x34\xac\x55\x19\xae\x84\x95\x6b\xaa\xb6\x87\x57\x92\xc6\xfa\x31\xda\xf4\xd0\xee\xdd\x9d\x31\x1c\xca\xa3\xd0\x1d\xfc\x4f\x1a\xd4\x72\x56\x25\x36\x25\x79\x7b\x86\xc3\x0d\x48\x7b\x68\xf5\x3c\x83\xec\x9f\xac\x47\x2a\x9a\x89\x49\x7a\x45\x33\x9f\x70\x47\x70\xef\x6a\x7a\x6c\x0d\xcd\x01\x96\x25\xb4\x4e\x75\x6e\x81\xdf\xa3\x62\x98\xbc\xf3\xf5\x91\x19\x66\xc3\x6f\xc9\x10\x86\x13\x54\xf8\x35\x17\xc0\x5b\x9c\x98\x52\xeb\x2f\xfa\x08\x75\x4c\x3f\x4e\xc8\x74\xc8\x0c\xfc\x9a\xf5\x72\x62\x7f\x2e\x55\x4c\x0e\x07\x2f\x53\x06\xb8\xd7\x47\xa5\x60\x2d\x37\x48\xff\x92\xa7\xa3\x4b\xe6\x22\x91\x1f\xee\x75\x41\x59\xd9\x07\x89\x9c\x83\x95\x35\x24\x53\x24\x25\xb8\xbf\xb3\x89\x7e\xe4\xa4\xba\x0c\xdc\x09\x66\x63\x72\x9e\x94\x76\x6c\xbc\x03\x10\x69\x16\x50\xfb\x7a\xe8\x43\xbe\xf6\x34\xa1\x72\xbf\x1b\x4b\xf5\x7a\x0f\x2f\x34\x0f\xe2\xf3\xb4\x74\x4d\x26\xf6\x19\x5c\xa6\x7a\x21\x2d\xcc\x2e\x0e\x76\x5f\x77\x53\x5d\x73\xc4\x4d\xd7\x5d\x4f\x9c\x5c\xd3\xa1\x54\xf0\xf9\xb6\x69\x4a\x73\xf4\xa8\x8c\x57\x27\x7d\x15\x79\xe6\xac\x58\x17\x2c\xc3\xea\x8f\x3a\xe4\xa5\x4d\xe1\x32\x44\x60\x86\x3d\x18\x25\xe8\xd8\xa3\x33\xe8\xcf\x1a\x05\xb8\xdd\xa8\x85\x07\x52\xe8\xea\xae\xe8\xcf\xf7\x48\x5d\x61\x4d\x32\xeb\x14\x8e\x88\xd1\x6a\xfc\x31\xff\x92\x6c\x16\x63\x06\x15\x50\x92\x15\x90\x63\x40\x08\x08\xfe\x34\x21\x74\x84\xb4\xe3\x9b\xa3\xc6\xde\x5f\xe6\x01\xf7\xec\x0d\xe8\xa1\xa5\x3e\x1e\xe0\xf6\x6a\x24\x79\x96\x6a\xdf\x73\xfc\x60\x2e\xe4\x70\x2d\x49\x3f\x47\xe4\x61\xba\xf7\xdb\x6c\x70\x40\xe3\x3b\x0d\xb3\x9d\x3a\x0f\x19\x16\x6d\x11\x21\xa8\x3e\x50\xa7\xfc\x89\x0e\xcf\x3e\xdf\x16\x8f\x52\x8d\xa3\x57\xdd\xf6\x9f\x71\x53\xcf\x42\x93\x8f\xeb\x87\xa0\xa7\x95\x1f\x6e\xc3\x0c\xde\xe7\x2f\x6a\x5d\x60\xd0\x70\xe8\xe7\xd7\xaf\x97\x34\x9e\xb1\x08\xb4\xcf\xcc\x33\x69\x08\x11\x58\xcf\xf0\x84\x1a\xd4\x8c\x2b\x72\x0f\xdb\xdc\x9f\x85\xe1\x2c\x0d\xfe\xe8\x2a\x4d\x78\x23\x89\x6c\xd5\x2a\x9f\x91\x8d\x1e\xf4\xdf\x18\x77\x06\xf0\x07\x7f\x94\x83\xd1\x0c\x95\xae\x38\xc4\xb2\xb0\x70\xab\x7f\x92\xc3\xdc\xcd\x3d\x17\x9a\x86\xe8\x4c\x0e\x42\x4e\x84\x64\xb6\x09\xa0\x6f\xb5\xd4\x67\xe2\xc5\xf3\x0f\xdf\x00\x23\x91\xa5\x3f\x9c\xe0\xf9\x4d\x41\x4d\xaf\x92\x97\x87\x09\x86\x1e\x15\xde\x21\x40\xb0\x17\x7e\x7b\xe3\xf6\x44\xc8\xa1\x8e\x27\x8b\x47\x2d\x6a\x20\xbc\xd7\x7c\x15\x05\xd5\xe7\xbd\x05\xcb\xa5\x61\x6a\x49\xbb\x32\x85\x04\x3d\xfc\x59\x99\xd8\xe0\x85\xd4\x61\x90\xb3\x39\x3b\xcb\x0a\xd3\xec\x65\xe1\x99\x4e\x98\x01\x0a\xfd\x6c\x6e\xdd\xdf\xa4\x00\xa3\xfc\x8e\x9a\xdf\x66\x45\xfe\x48\xe3\x0d\xba\x8c\xcb\x24\xc9\xcd\x3b\x31\xd0\xfd\x08\x36\x38\x95\x31\xca\xd8\xf3\x1a\x7f\xf7\x41\x74\xdb\x82\xcc\x1a\x49\xc0\xf0\x0d\x49\x1f\x64\xce\xf6\xba\x0c\xca\x60\x49\x1d\x3a\xf8\x37\xb7\xcf\x73\x76\x2c\xa9\x6c\x52\x83\xb6\x7c\x2b\x06\x4e\x58\x64\x0c\x8e\x74\x32\x2f\x6f\xf3\x68\x20\xcb\x40\x6c\x6a\xd1\xf5\xac\xe3\xad\xec\x3a\x2a\xe9\x65\x7e\xf9\xb4\x6d\x15\x20\x8f\x2c\x0d\x44\x2a\x61\x67\x87\x6b\x6f\x70\xbc\xb6\xad\x44\x7a\xf0\x10\xf7\xfb\x2a\x99\x8f\x17\xa1\x84\x06\xfb\x03\x3f\xe4\x34\xbd\xc3\xd4\xdc\x1d\x43\x21\x68\x8a\xa4\xb0\x2c\x79\x85\x39\xb1\x37\x2b\x50\x3c\x3d\xfb\xe3\xc0\xa2\xc8\x51\x12\xb6\x24\xa1\x72\xcc\x57\xa4\x33\xf7\x2c\x20\x4d\xc1\x8d\xf2\x67\x81\x0b\x0f\x05\x47\x3b\x25\x56\x6e\x49\x70\x4e\xdb\xf8\xd5\xcc\x4b\xaa\x98\x0b\xdb\xb8\xbe\xf8\x91\xe7\x48\x9e\xa6\x4f\x41\x56\x24\x7d\x49\x3a\x52\x36\x22\x9e\x22\x0c\x3d\x00\xf5\x70\x93\xce\x9e\x08\x89\x32\x14\x84\xdb\xbd\x73\xc3\x98\x95\x0c\xad\x8b\xc2\x7d\x32\xc7\x02\x0b\x41\x39\x50\x97\x47\x3b\x7a\x7f\x29\xe8\x8c\x28\xd2\xd4\x6f\x97\xf3\x27\x8e\x49\xce\x23\x8d\xf1\xf1\x8e\xb7\xe3\xe2\x0d\xb8\x1b\xff\xc5\x9c\x1d\x1e\x91\xe7\xa6\xb8\x41\xb3\xfd\xad\x40\xc6\x84\xd2\x9b\x89\x6f\x25\x8a\xfc\xe5\xd7\x46\xa2\xc0\x3c\x89\x70\x6c\x16\x07\xb9\x55\x54\x30\xa9\x86\x58\xa8\x32\x89\x67\x1e\x3c\x86\x76\xfb\xdc\x44\xab\xa6\x18\x8b\x80\xd1\x86\x37\xc9\xe8\x11\x5b\x67\xe2\xee\xc1\x80\x89\xea\xee\xa8\x1d\x0c\x42\xbb\xe9\x74\x6a\xaa\x8f\x6a\xe3\x24\xcd\x93\x6c\x94\xd1\xa4\x36\xf0\x81\x4c\x87\x71\x8d\xa8\x69\x33\xbc\x44\x03\x57\x12\xd9\x40\xb3\x7f\x1d\x9e\x2c\x81\x9a\x31\x72\xab\xec\x19\x92\xa8\xf7\x1d\x49\xf2\xbd\x26\xae\x73\x9a\x0e\x64\x22\x9b\xc4\x66\xba\xc3\x5e\x8f\x61\xae\x7f\x6c\xba\xfc\x5f\x28\xda\xaf\x2b\xee\xaa\x7a\xa1\x61\xbf\x4d\xc6\x00\x71\x22\xaf\x3a\x8a\x5c\xfc\xdf\x13\xdd\x19\x0b\x34\xf4\xb8\x99\xe3\xce\xdb\x15\x88\xd3\x84\xc3\x8d\xff\x7d\x88\xc9\xec\xfd\xa4\xdf\x89\x41\xdd\x2e\x7c\xcf\x5c\x96\xaf\x6c\x6a\xc1\x24\xd5\x98\xcd\x09\xbc\xbe\x3f\xb0\x95\x8f\x9b\xcf\x21\x0d\xd7\x61\xf8\xbc\x9b\xaa\xf0\xa5\x40\x00\x93\x35\x46\x26\xd5\xa7\x98\xf2\xc8\xd7\xd4\x3b\xf5\x6e\x7f\xa5\x3d\x43\x27\x72\x2c\x2e\x8f\xf1\xc7\x55\x4f\x3c\x05\xcf\xd2\xc8\x90\xd5\xae\x1b\xfb\x12\xf1\x45\x86\x47\xc9\x51\xcc\x58\xe2\x50\xa4\xf0\xf0\xea\x05\xe1\x92\x3b\x99\xd0\x4d\x60\x7f\x2b\x5e\xea\x28\x85\x84\xdc\x51\x14\xda\xc1\x2f\x7d\x96\x1f\x66\x0f\x53\x52\x86\x3c\x9c\x79\x69\x08\x7e\x01\xf5\xcb\x4e\x00\x3b\x9c\x5d\xa7\x18\x2a\x9f\xa3\x89\xf6\x6e\xbe\x3d\x86\x25\xd6\xd7\x79\x83\x5e\x16\xba\x16\xb7\xb8\x8d\x3a\x46\x24\xce\xe1\x15\x90\xbf\x13\xc3\x4a\xdc\x67\xfe\xe9\x78\x5d\x52\x76\xd7\x01\xc7\xdb\x4b\xcd\xcf\x36\x87\x62\x1a\x47\xbd\xe8\x9b\x2d\x0d\x28\xb9\x81\x55\x9f\xb8\x39\xfd\xba\xc4\x7b\x51\x05\x4a\x1d\x33\xca\x59\xf9\x90\xc4\xd3\xa5\x14\x57\x22\x7f\x4d\x3d\xcf\xd0\x09\x3b\xb4\xe0\x09\x31\xee\xa4\xcf\x2b\x19\x99\xf4\x38\x7d\xf1\xf4\x54\x01\x37\xae\xc7\xca\x1b\xb3\x11\xde\x5b\x72\x7a\xae\x0d\x12\x28\xd5\xf2\x62\x2c\x58\x2d\xe5\x73\x6e\x72\xfd\x20\x33\xb5\xed\xa2\x83\x98\x0f\xdf\x7e\x9e\xf0\x70\xb7\xe2\xd5\x1c\x38\x33\x71\x49\x0d\x5a\x16\xdc\x90\x76\x51\x16\x35\x5f\x48\xec\x01\xcf\xf3\xf2\x85\x33\x1e\x89\xee\xf6\x12\x78\xf3\x9c\xb1\x28\x22\x0c\x46\x2f\x07\x6c\x7f\xc0\xa9\xc8\xfa\xc4\xb2\xec\xab\x48\xfb\x6e\x58\x7f\x11\x56\xa7\xbb\x66\x92\x0d\xa3\x0f\x2d\x0d\x4c\xf8\x5b\x32\xde\xab\xc3\xfd\x4c\x87\x75\x86\xc0\x47\x16\xae\x36\x62\xb4\x39\xf7\xb9\x45\xb5\x03\x7a\x2b\xb3\x8e\x6d\x38\xb6\x2e\xa9\x8b\x43\x60\x90\x58\x0e\x56\x16\x87\x63\x65\xc9\x3e\x5c\x0a\x98\xff\x17\xfd\x8a\xca\x2a\x09\x15\x91\x91\x85\xc3\xf2\xdb\xca\x67\xd3\xa9\x9a\x7e\xb8\x8b\x0d\xf5\xa5\x06\xc9\x7b\x05\xc8\x57\x8a\xf6\x3e\xa2\xaa\x7b\x3b\x49\x81\x4e\x47\x8f\xec\x8f\x64\x94\x3f\xdd\x5d\x83\xb3\xdd\xeb\xc9\x11\xb2\xfb\x9e\xb8\x6e\x4b\xcb\xc9\x0c\x2c\x4b\xdc\xd3\x2e\x56\xd3\xdb\x2c\x28\x87\x18\xf6\x30\x37\xb5\x42\x09\xe8\xf4\x5a\xa0\x29\x0c\xb8\x89\x8b\x53\xb2\xf3\x40\x12\x57\x5c\xc1\x77\xa9\x2d\x6e\x7b\xa3\xdd\x8d\xad\xd7\x9a\xb4\xe9\xed\xdd\x15\x30\x0d\x37\x31\x93\x05\x0e\xd5\xb4\x73\xe2\xc1\x33\x8b\xcb\xcc\xe8\x36\x3f\xc1\xf0\x83\xb3\x2b\xb4\x26\xed\xbe\x45\x61\x88\xbd\x7c\xa6\x99\x04\xc5\x77\xd3\xfd\x40\x96\x28\x2d\x43\xa2\xc4\xeb\xf3\xcf\x78\xcc\x6e\xfa\x21\x17\x2d\xa9\x4f\x2d\x54\x00\xd7\xc3\x7c\x88\xe6\x20\x68\xdf\x40\xd6\x9a\xfe\xb0\x5d\x3f\x3e\x52\x29\xdc\xa7\x3c\x11\x4b\x2f\x75\x10\x94\xd0\xce\x82\xf9\x94\x33\x8b\x47\xeb\xc8\x4a\xff\x57\xab\x72\x80\xe8\x3e\xc7\x11\xb6\xdf\x88\x73\x65\x72\x88\xae\x87\x08\xbc\x73\xc9\xb6\x06\x63\x92\x62\x9e\x7b\xe1\xd4\xec\x1b\x7c\x47\xb5\x5e\xc8\xf2\x4c\x06\xce\x27\x8a\x60\xc8\xca\xb1\x91\xd4\x8d\x21\x96\xcf\x3b\x2f\x34\x2f\x7f\xd6\x23\xc8\x56\x55\xca\x44\x4e\x1b\x7f\xae\x98\xb3\xe7\xfb\x34\x5b\xe8\xdb\x36\x1d\xb5\xc4\x24\xc2\x90\x53\x12\xe2\x50\xb5\xc4\x10\x2b\x0e\xaa\x2a\x9b\x36\xf8\x7c\x26\xcc\x61\x69\x18\xd8\x3a\xbe\x9f\x3d\x2d\x85\xf2\x85\x80\x78\x60\x3b\xa8\x81\xc5\xc2\xd7\xb4\x3f\x52\xea\x75\x31\x71\x88\xc6\xee\x91\xcf\xec\x3f\xab\x7b\x07\x95\x3c\x6b\xfb\xfc\xdd\xcd\xa1\x20\xa7\x99\x60\x56\x6d\x68\xfc\x49\x5f\x92\xee\x65\x45\x61\xce\xa6\x7e\x7d\x76\xbb\xb8\x8c\xee\xe0\xbe\x0d\x1e\x27\x38\x8f\x04\xaf\x0b\xc2\x9c\xa4\x80\x46\x14\xaf\x95\xd8\xdf\x35\x5c\xf9\x8f\xab\xa0\xe1\x40\x63\x84\x74\xab\x47\x4e\x6f\x57\x8b\x0b\x0d\xb2\x69\x96\xde\x20\x95\x56\xae\xf8\x4e\xfc\x6b\x40\xbd\x96\xb6\x38\x3e\xf3\x7d\x5e\xc0\x66\x0f\x72\x33\x9e\xa6\x83\xe4\xf2\x4f\x9c\xcb\x64\xc0\xa2\x39\xb3\x3f\x46\x66\x90\xc4\xca\x8a\x16\xa9\xba\xa6\x3d\x31\xe6\x37\x3d\x81\x1f\x83\x41\x44\xf0\xdd\xde\xb2\xc2\x72\xda\xbb\x09\x2a\x56\x34\x76\xda\xc1\x2b\x0d\x60\xef\x0d\x36\x23\x3c\xeb\x7c\x3d\x51\xbd\x59\x07\x32\x91\xa8\x62\x32\x67\xb5\x0f\x69\xc6\xab\xb6\x6f\xcb\x46\x90\x0f\x16\x4a\x86\x4b\xa0\x0c\x3c\x30\x71\x93\x1a\x37\x9c\xa9\x57\x09\x1e\xd7\x88\x44\x2a\x3b\xe3\xbb\x19\x94\xcd\xf6\xee\x48\x05\x45\x92\x15\x5d\x40\xeb\xcd\x3b\x5b\x43\xfe\x4b\x65\xe8\x49\xb0\x7a\xf2\xcd\x1f\xe2\x8d\x75\xc6\xe8\xdc\xfe\xde\xc3\x32\x5c\x6e\x26\x72\xf3\x8e\xf5\x91\xe3\x32\x3e\xe4\xed\xbd\x9e\xa6\x67\x0f\x41\x4f\xa8\x2f\x64\x80\xfa\x51\x2d\x2e\x40\xdd\x7f\x73\x07\x94\xfe\x37\xcb\x63\x47\xf3\xa7\xda\xbc\xa7\xe8\x5a\x40\xfb\xee\x7b\xda\xe4\xb1\xc1\x7f\xbf\xbe\x31\xec\x8d\xea\x8c\xca\xae\x7c\xfd\x94\x52\xe6\x07\xf9\x41\x09\xd1\x5a\xb3\x2c\x4b\x9a\x1e\x89\xa5\xd5\x5a\xd9\x84\xf6\x44\x23\x39\xcd\x5a\x0a\x1e\x75\x7e\x38\x34\x56\x6a\x2e\x1e\x9b\x99\xa0\x16\x33\xb1\x7a\x54\x2a\x34\x2a\xb9\x14\x50\x55\xf5\xe7\xe1\x05\xb3\xaf\xd3\xbf\x38\x27\x76\xf9\xa8\xa8\x65\xea\x02\x94\x6e\xe2\x6b\x9e\x86\x6c\x44\xfc\x6a\x0b\x47\x5b\x21\x39\x67\x66\x85\xb2\x6d\xa4\x15\x22\x50\x94\xcf\xf6\x14\xca\x87\xd0\xbd\x6e\x97\x69\x55\x4a\x6a\xc2\x11\x42\x9d\xdb\xfa\x6e\x12\x53\x01\x3d\x0e\x55\xb2\x0b\x2c\x2c\x54\x19\x96\xd7\x94\x3c\xba\x60\x69\x4a\xe8\x77\xbf\x9f\xed\x1b\x79\x45\xf3\xbd\x45\xfa\x38\xc8\x37\x42\x88\xb3\x89\x59\xca\x7d\x52\x86\x76\x2f\x78\x43\x19\x77\x38\xb4\x6b\x51\x13\xeb\xfa\x96\xf5\x6a\xdc\xbb\x4c\xc6\xee\x3f\xf4\x5f\x23\x3f\x68\x84\x64\x94\x76\x47\x31\xce\xe3\xf0\xa3\x25\xf3\x73\xe4\x70\x25\x71\x2e\x6c\xcf\x19\xb6\x8c\x10\x7f\xeb\x5c\x8b\x89\x31\x27\xe0\x22\x63\x91\xe6\x27\x51\x64\xad\x9c\x0b\x5d\x9a\x79\xfa\x93\xfc\xd5\xf7\x66\x72\x65\x50\x01\x74\xce\x2f\x2f\xa4\x9d\xac\xad\x6b\xa9\xe9\x19\x0d\x4a\x72\x10\x0f\xb9\x9e\xe5\x01\x6e\x6a\xab\xe9\x02\xfc\xbf\x61\x3f\x8b\x50\x94\x7d\xec\x57\x22\x65\x73\xae\x51\x68\x38\x96\xee\x9b\x1a\x14\x1b\x32\xb5\xbc\xa7\xa4\x5a\x1c\x1c\x24\x96\x5b\xcd\x8f\x63\x05\x73\xe5\xa0\xef\xd5\xee\x32\xcf\x14\xa4\x9a\xe8\x13\xde\x48\x05\xe6\x97\x54\x0e\x90\xd6\xf3\xf1\xd0\x6b\xb4\x0b\xad\xad\x9e\x0b\xe0\x24\x11\x7b\xaf\x2b\xb6\xfc\x33\xa6\x56\x73\x71\xe3\x94\xdd\x59\x97\x68\x41\x13\xc3\x5f\x9a\xed\xe8\x62\x33\x9f\xa5\x9a\x90\x86\xd9\x18\x1f\xfb\xd1\x12\x91\x92\x56\x8f\x1a\xca\x49\x1d\x58\x6c\x7e\xe5\xb2\x0c\x19\xbe\x9c\x53\x2e\x95\xba\x23\x4c\xb3\x4c\x7a\x81\x12\x74\xd1\x83\x9e\x2c\xc9\x16\x46\x05\xe9\x1a\xce\xa1\x05\xcd\x49\xbb\x6c\x68\xd6\xe5\x25\x3b\x5b\x97\xbd\x24\x0d\x94\x9b\x02\x74\x6b\xb0\x08\x78\x07\x51\x17\x12\xe6\xd1\xfb\x0c\xdb\x2d\x23\xdc\xd1\x7a\xfd\x4e\x8a\xe1\xae\x59\xcd\x2a\x61\x51\x15\x72\x68\xf9\xb0\xbc\xd7\x1c\x9d\x87\x4b\xd9\x23\x7d\x08\xcb\x00\x1e\x41\xe2\xdd\x4f\x12\x8d\xe0\x26\xe6\x8f\xc0\xe4\x79\x15\x4a\x8a\x7b\x51\x5f\x5f\x1d\xb4\x49\x6b\x44\x8c\x85\xeb\x77\x34\x36\xea\x1e\x5c\x9e\xe2\xe3\xf3\x38\x1f\xde\xf7\xfb\x6f\xfd\x18\x1e\xae\x35\x13\x4d\xe4\x12\x5c\xa3\x2a\x23\x4f\xf5\x81\x49\xe8\x56\x16\x4c\x5f\x13\xc8\x7c\x28\x83\xfc\xc8\xd7\xeb\x05\xb6\xe5\x3e\xac\xa9\x5f\x04\xd3\xc3\x98\x2a\x33\x25\x76\xc5\xf0\xb7\x1a\x31\xe5\x14\xff\xce\xed\x92\x7a\xc1\x80\xda\x9f\x08\xaa\x65\xd2\xd4\xaf\x46\x0d\x6d\xaa\xba\x4c\x9b\xed\xce\xa3\x04\x98\xf8\x09\xbc\x82\xd9\x56\x7f\xb8\xb1\x3e\x7f\x28\x2a\xf1\x88\x7e\xe2\x67\xc4\x17\x47\x43\x94\x6b\x28\x8d\x88\xc1\xeb\x21\x7e\xc1\xd7\x6b\x35\x68\x87\xc2\x4d\x10\xf6\x3c\x02\x31\x7a\xc7\x88\xe8\x7f\x3a\x2c\x7d\x99\x84\x55\x8a\xfd\x9e\x08\x7f\xa1\x75\xc7\xb7\x7c\x60\x4f\x9f\x58\xa0\x1b\xc1\x15\x86\xf8\x8a\x5d\xe9\xd6\x9f\xfa\x72\xb5\x41\x90\xe9\xac\xe0\xd9\x85\xff\xc2\xaf\x3d\x04\xcb\x7b\xc0\xe3\x43\x0b\xc5\xf1\xfb\x5a\xd2\x48\x82\x8a\x70\xea\xc5\xfa\x0b\x76\x87\x41\xc1\x18\xc9\xba\x4b\x16\xdb\xcc\x05\x56\x06\xed\xdc\x2e\x2b\x2f\x10\xa4\xfb\x64\x8d\x9a\x26\x83\xda\x58\xbb\xc8\x96\x8e\xab\x09\x7c\x5c\x7c\x4b\x93\xa4\x31\x63\xfe\x38\x33\x1a\xe3\x21\xe5\xc6\xb9\xb2\xae\xff\x76\x61\xbe\x96\x15\x67\x4a\x0d\xfb\x1b\xf3\x74\x96\xf2\x73\x67\xeb\x7c\xa7\x59\x8c\xcf\x04\x21\x28\x7d\x8f\x70\x92\xa9\x58\x84\x38\x0f\x9d\xbb\x9a\x01\x08\x5e\xb8\xec\x3a\xdd\x30\x8d\xb7\x9f\x8c\x2a\xc7\x8e\x30\x8c\x4c\x33\xfd\x65\x81\xd6\x71\x04\x70\xb2\x27\x25\x91\x62\x69\x06\xd5\x97\x79\xc4\x74\xda\x78\x5a\x60\x47\x8e\xc3\x84\x1b\x8a\x3c\x6d\xff\x19\xd4\x92\x7a\x44\x2d\x49\x10\x3c\x67\x17\x03\xff\x52\xf4\x88\x1a\x01\x39\xb5\x7b\x13\xb6\xde\xf1\xb3\xea\x46\x7e\xc7\xc1\x2e\x77\xe1\xc5\x58\x00\x13\x99\x24\x48\xa0\x8f\x12\x60\x70\x59\xc8\x9d\x8a\xfd\x6d\xc1\xfd\x93\x34\xe8\x14\x0c\xbf\x94\xbc\x64\x52\xf1\xef\x8e\xd0\x27\xe0\xd1\xee\xf7\x8d\x38\x1f\xb1\x3a\x38\xe1\xe3\xb6\x90\x3a\x18\x2e\x70\x0b\xc9\xa1\xb0\xcf\x6e\x00\x67\xd3\x52\x78\x9f\xce\x10\xa1\x60\xe6\x21\xdb\xff\x44\x31\x54\xfc\x46\x0c\xf2\x27\x8e\xc9\x44\xc2\xd6\x4a\x02\x29\x29\xdd\x8f\xa3\x97\x70\xac\x7c\x4c\xd6\x45\xf6\x00\x5a\xd4\x27\x07\xeb\xb5\x57\x3a\x04\xce\x3a\x04\x83\x86\xb7\x67\xc2\x50\x80\x70\x25\xd8\x38\x18\x22\xe8\xb9\x28\xfd\xf6\xce\xc7\xaa\xc9\x10\x40\xba\x67\x92\x8a\x64\x5c\x5c\x71\xe4\xcf\xef\x8b\x5b\x71\xd8\xbc\x72\x20\xcd\x95\x2e\x43\xb2\x43\x8e\x17\x8c\x75\xba\x68\x27\xec\x74\xec\x56\xf9\x94\x49\x8f\x45\x8f\x72\x06\x38\xce\xc1\x59\x29\xea\x7a\x9d\xaf\x4e\x35\x35\x9d\x43\x02\x36\x2c\x97\xab\x3e\xb2\x79\xaf\x72\x07\xdf\xd4\x54\xa5\xe9\x5e\x27\x09\xe3\xbd\x72\x1b\x1e\xa2\x88\xd7\x1a\xd8\x6b\x65\x73\xf1\x25\xbf\x09\x12\x7c\x40\x9f\x63\xef\x3a\x98\x55\x8a\x90\x2c\x6c\xf8\xce\xaf\xff\x9e\xc6\x3a\x0e\x70\x6a\xc2\x44\xc5\xe3\x02\x5b\xbb\x30\x9d\x94\x94\x85\x84\x58\x14\x3c\xe5\x1c\xce\xc3\x45\x87\x34\x45\xea\x73\xa0\x96\x10\x58\xd0\x1f\x17\x95\x19\xae\xff\xa2\xfa\xa5\x72\x88\x4c\x3a\x40\x54\xae\xae\x71\x3a\x08\x6e\x7a\xe1\x7c\x7e\x2b\x2f\x42\x8b\xf7\x52\x57\x78\x33\x7f\xcd\x39\xbf\x8b\x36\x73\x65\x9a\x5f\x39\x48\xfe\x58\xce\x18\x43\xd1\x0e\x44\x9a\x32\x28\x72\xa7\x46\xb8\xb6\x58\x70\x52\xf4\xa8\x42\xc7\x44\x47\xd2\x24\xe1\x9b\xf2\x79\xf5\xcf\x0e\x5a\xf4\xef\x11\x3b\x7b\xcd\xdb\xcd\x2d\xbe\x1c\x0f\x17\x1a\x8e\xd2\xed\x2e\x38\xc5\x7d\xc9\x4f\x42\x9f\x43\xa7\x9d\x8a\xfb\x9c\x45\xe0\x01\x27\xc9\xc5\xf3\x61\x6e\x1a\x55\x85\x46\x9a\x7d\xf9\x0a\xaf\xf0\x48\x61\x10\x0c\x75\xc8\xb1\xd4\x63\x8b\x9e\x8f\x22\xed\x45\xb5\x63\xb7\x81\x2a\xc4\x06\xaf\xd8\x6f\x24\x82\x71\x9e\x5d\x79\x5f\x0c\xfe\x4e\x82\x6c\x3b\xce\xc9\x92\x34\xc5\xa9\xf0\x62\x1a\x72\x25\x74\x82\x18\x6b\x08\x3e\x51\xad\x73\xbb\x67\xb2\x84\x4b\xd3\x74\xc6\xe2\x7c\xba\x8b\x41\x33\x04\xdb\x42\x6e\xd9\x2d\x3c\xea\xa3\x11\x18\x39\x11\x09\x37\x2e\xca\x34\x5d\xd3\xf3\x87\xb0\x22\x51\x1b\xa2\xa2\xd5\x0d\xe4\xdd\xf1\x9e\xdb\x2c\x9d\x86\x45\xaf\x6e\xf6\xa5\x74\x21\x14\x34\x3e\x71\xff\x98\x59\xcc\x20\x39\x94\x28\x6a\x6a\xa9\x4b\x6c\xef\x06\x1c\x0c\x7e\x4c\xb1\x62\x43\xe0\xe3\xcc\x21\x4d\xe1\xcf\xe2\x4a\x38\x4d\xdc\xa7\x38\x17\x2d\x90\xcc\xe6\x06\xe7\x04\xda\xa1\x3d\x11\x91\xcf\x8c\xf2\xe3\xd8\x2a\x68\x9f\x19\x5b\x41\xc1\x88\xc9\x70\x49\xe8\xe2\xad\x2d\x0c\xd8\xa1\x40\x2f\x92\xcc\xf3\xf8\xe1\x36\xfc\xe0\x4a\x20\x19\x71\x02\xb7\x79\xe3\x03\x7e\x2a\xb6\x23\xb3\x55\x07\x97\x16\x46\xfb\x8e\xe3\xef\x6b\x14\xf3\x7e\xf6\xb3\xf7\x90\x7a\x7d\xf5\x74\xb5\x79\x38\x91\x32\xb4\x4c\x46\xb3\x95\xa4\x10\x2e\x27\x13\x80\xd9\x85\x51\x1e\xb5\x08\x27\xb5\xb7\x00\x4d\x84\x4e\x1d\x3a\x10\x4d\xb2\x37\xba\x67\x2a\xc3\x1f\x42\x22\xec\x10\xae\x22\x43\x13\x1f\x67\x03\x54\xfe\x0f\x71\xa1\xa3\xd0\xea\x3e\xd6\x6a\x1f\x71\xca\xba\x84\x61\xc5\xe7\xf1\x01\x43\xc7\x4f\x05\x56\x57\x67\x10\x91\xca\x00\xd2\xe4\xd2\xf8\xc3\xcd\xf3\xc4\xf6\xa7\x91\x2b\x5c\x72\x03\xcf\xd3\x61\x39\x1f\x77\x3e\xee\x99\xe5\xec\x2c\x86\xa5\x7b\xce\x33\xd6\x96\x66\xf3\x8b\xda\xef\x46\x85\x6f\x3e\x1e\xe8\x15\x54\x9b\xf0\xb3\x54\x64\x68\x1c\xf6\xb4\xff\xac\x50\x93\x4b\x6a\x96\x43\xda\x3d\xbe\xa7\xe8\x9e\xda\xf4\x79\x12\xd8\x8f\x1d\xff\x76\x1b\x94\x46\x4d\xd4\x13\xcd\xcc\x51\xd8\x92\xfb\x42\xac\x49\x83\xd1\x3d\xdf\xf5\x13\xbe\xc4\xc0\xba\x47\xbd\x1d\xef\x68\xb1\xb8\x19\x95\x3d\x07\x02\x7d\xac\xc6\x8c\x45\x81\x71\xd0\x47\xb7\x13\x00\x0d\x0d\x38\x15\xa0\xd7\x4f\xee\xdf\xd2\x6c\x4d\x09\x30\xad\xe8\x14\x50\xef\x79\x8e\xad\xec\xec\xac\xd0\xec\x93\x8d\xdf\x0b\x75\xcc\x67\x4e\xbe\x43\x0a\xa3\xf1\xfe\x9e\xc5\x4b\xd7\x8f\x08\x84\xba\xca\x04\xe3\x73\xe5\x37\xe1\xa6\x14\x9a\x04\x01\x03\xda\x0f\xdc\x6e\x9c\x1d\x71\xa8\x9c\x17\x01\xad\x63\x5d\x25\x87\xff\x38\x66\x46\x7c\x33\x19\x4a\x05\xa3\x42\x21\x32\xcf\x4e\xf8\x06\x9a\x8f\xbf\x26\x34\x3b\x5e\x37\xb9\xee\xbb\x3d\x12\xbf\x5c\x20\x99\x3a\x3d\x23\x33\x92\x8a\x51\xef\x20\x2a\x13\x7e\x58\x61\xb5\x12\x35\x0e\xbe\x67\x36\xe9\x21\x50\xa7\x19\xb0\x34\xce\xf8\x77\xe0\x48\x45\xd1\xe1\xc2\xc9\x2d\x44\x6e\x4e\x9d\xa7\x34\x94\x57\x25\x50\xe4\x27\x5c\x82\x6f\x2c\x17\xdd\x6d\x28\xc0\xc5\x78\xcd\x70\xaa\x30\x0b\x4a\x4f\x42\x61\xc4\x7d\x66\xa2\x5b\x02\x05\xcf\x81\x9c\xa2\x66\x35\x46\x03\x9d\x58\x35\x78\x6d\xf2\x73\x12\x29\x52\xa2\x86\xcb\xd3\xc9\xf4\x99\xcc\x74\xe7\x27\xbb\xa5\x1b\x0a\x2a\x04\x27\x5d\x2d\x2e\x0f\x03\x09\xd8\x8a\x68\xc9\x65\x46\x76\x5c\x07\x19\x64\xbd\xf3\x1a\xec\x40\x14\xf7\xa7\xa7\x0d\x86\x55\xa8\x7c\x93\x9d\xaf\xe2\x23\x91\xe5\xf4\x02\x1c\xf4\xd2\x41\x7d\xc3\xc2\x75\x24\xfa\x0e\xca\xd2\x00\xa7\x31\x55\xdd\xcb\x4e\x84\x4e\x68\x05\x7b\x20\x30\xee\x60\x32\x85\x5b\x3b\xa2\xeb\x0f\x4c\xde\xfe\x1a\x9c\x80\x6a\xd4\xc1\x8e\x9b\x26\x1e\x4b\x14\x37\x9d\x13\x61\xeb\xa3\x4a\x7b\x7c\x57\xe0\x48\xb3\xa1\x57\x64\x66\x5b\x12\x22\x80\x64\x7c\xc3\x06\x3a\x5d\x2e\x39\xd6\x41\xa7\xa7\xe2\x04\xff\x2e\xad\xaa\xc9\xa7\xb5\xf8\xb9\x10\xe8\x03\x74\x2b\xb7\x12\xb5\x5f\xf2\x33\xd3\x79\x7f\x6b\xec\x50\x47\x7f\xab\x64\x93\xa5\x28\xa3\xe2\x07\xdb\x95\xba\x4c\x21\xc8\xa9\x05\x27\xf0\x65\xde\xd7\x2d\x0b\x5b\xc7\x85\xe9\x18\xb1\xcb\x89\xc4\xf0\x62\xd5\xf9\x5b\x73\xaa\x7e\x39\x83\x42\x82\xc7\x62\xec\x01\x31\x90\x57\xa7\x91\xe6\x96\xb0\x24\xea\x42\x2f\x31\xfc\xf0\x6c\x9b\x09\x8f\x62\xb0\x58\x29\xbd\x63\x2e\xcf\x1f\x5c\xb3\x92\x40\x71\x60\x9d\x18\x53\x20\x0a\xa5\x6f\x2c\x0e\x6d\xce\x34\x1b\x65\x0e\xf9\xdc\xf9\x89\x76\xae\x50\x91\x68\xed\xdb\x0a\x62\x12\x18\xed\x4d\x23\x16\x12\x89\x97\x91\x11\xaf\x08\x86\xaf\x71\x85\xf9\xdd\x65\x76\x51\x8a\xf2\x96\xa6\x6a\x1c\x95\x9c\x8f\x49\xfd\x37\x82\xff\x8c\xbc\xf4\xb5\xa6\xe4\x1b\x3f\x06\xd9\x31\xbf\x8a\x9d\xca\x0a\x81\xbe\xb2\x9f\x70\x52\x85\xc8\x17\x8d\x02\x6f\x9e\x31\xe3\xc6\x97\xdb\x9f\x1c\xac\xed\xca\xc2\xe2\x53\xbf\xdf\x5c\x5a\x16\x42\x6c\x1b\xe4\xdc\x54\x06\x93\x2a\x8d\x09\x98\xac\xa2\x97\x1d\xc3\xb4\xf1\xdc\xc6\x9f\xef\x56\xfd\x96\x1c\x61\x74\xcd\x49\x94\xdd\xbf\xcb\x4f\xde\x10\x49\x3f\xb9\x3b\x6d\xb5\x4b\x47\x68\xb1\x9d\xbf\x46\x69\x66\x6d\x94\xea\x02\x3d\xa8\x10\xe2\xe9\x31\x3d\xab\xb8\x3b\xd7\x14\xcb\x40\xdf\xc7\x89\x33\x49\x0d\x67\x28\x8f\x5e\x10\xd1\xa2\x5c\x49\xad\xb7\x39\x0c\x57\xb3\xa4\x93\xe3\x86\x03\x1d\xdf\x7b\xf9\x3f\xdf\x18\xe0\x8d\xd3\x5a\x85\xed\xf2\x0c\xd8\x30\x92\xc4\xfa\x3a\xa7\x45\x29\x59\xab\xd1\xbf\x91\x7c\x75\xbe\x28\xdc\x3c\x4d\xae\x91\x50\x90\xc5\xfa\x5e\xae\x76\xc2\xae\xd1\xa9\xc2\x4f\xbb\x32\xc2\x43\x90\xf7\xa9\x28\xa2\xd3\x14\x0b\xa3\x07\x03\x5c\x5f\xeb\x90\xba\xd3\x54\x62\x69\xc8\xf0\x0a\xc5\x09\x98\xb3\x21\x58\xad\xc0\x1e\xc1\x4b\x0e\xa5\x35\x02\x62\x79\xd0\x1a\x3d\x32\xa5\x35\xd1\x66\x83\x70\x51\x6e\x45\x31\x6d\xb1\x22\x28\x23\x93\x13\x8b\xee\xc2\xa5\x7b\x0e\xbb\x7c\x22\xfd\x7d\x75\xe1\x8e\x48\xe7\x87\x75\x94\x22\xd2\x50\xd6\xac\x09\xf0\x23\xaf\x0c\x6b\x94\xfc\x5d\x7e\x36\x40\x70\xc5\x6b\x26\x1c\x54\x8e\xe0\x4c\x52\x05\x3c\x4a\xd9\x13\x18\xbe\x5c\x22\x5b\x33\x0d\xf8\x00\x8d\x7b\x83\xa6\x0c\xc6\x6a\x03\x28\x38\xca\xc2\xff\xf2\x5f\x38\xda\xae\xa0\x7d\xe0\x56\xe5\x25\xf1\x8b\xcb\x6a\x98\xf0\x94\x5c\x7e\x6a\x78\x8a\xb0\x73\xac\xc4\xc7\x0c\xea\x06\x77\x2e\xfd\xae\xad\xb7\x35\x2e\x28\x4a\x58\xcf\xb5\xc4\xe3\x5a\xc9\x2f\x07\x9c\xc8\xf7\x9c\x45\xea\x6c\xcc\xbb\xd7\xc0\x5f\xa3\x58\x60\xbc\xc6\x46\xd2\x70\xb2\xfd\x97\x85\x76\x2f\x02\x3a\x21\xdb\xb4\x87\x69\x0b\xd9\x40\x80\x8d\xc0\x22\xdc\x46\x6d\x58\xd9\x15\xda\x0d\xca\x83\xd0\xd7\xfb\x04\x23\x70\xda\xbc\xd5\x97\x62\x12\x94\x57\x3c\xbd\xba\x77\xc6\x92\xed\x3b\xf8\x32\x42\xc5\xf0\xfc\xd6\x8e\x16\x5e\x84\xc8\x6f\xd5\x66\x4d\xa4\x6d\x82\xce\xaa\xa9\x69\xc5\xe4\x2c\xbb\x2c\xc7\xb2\xdc\x0f\xdf\xb0\x5c\x2e\xea\x4b\x7c\x47\x11\xc4\x64\x05\x85\x86\x29\x1b\x70\xb1\x4b\x43\x09\x05\x6f\x27\x11\x30\x80\xfd\x2e\xae\x1b\xf1\x07\xd3\x6b\xa2\x01\x7f\xc8\x3a\xd5\x16\x6a\x59\x10\x34\xa7\x41\xfe\x0c\x34\xbd\x25\x64\x3b\xbc\x96\xad\xf4\x2f\xbd\xa9\xb2\x48\xb2\x43\xf4\x7d\x18\x8a\xe8\xbc\x74\xc3\x89\xb2\x09\x38\x69\x43\x89\x22\x4c\x15\x6a\x87\x74\xab\x59\x90\x58\x18\x38\xfd\x9a\xb2\xee\x83\x36\xaa\x39\xac\xf8\x21\xdf\xeb\x3b\xa9\xe6\x60\xab\xd6\xc1\xd6\xaf\xad\xbf\xc6\x89\xef\x1f\x3f\xc3\xd7\x97\xda\x1e\x0a\x36\x4d\xf9\x36\x24\xc6\x64\x47\xf3\x51\xd5\x2e\xe7\x5a\x3e\x19\xce\x57\x22\xeb\x1b\xbb\x35\x9e\xc4\x7f\x64\x2c\x35\xdc\x2d\xf2\x9b\x9f\x8e\xb4\x1a\x58\x65\x90\xc7\xe0\x19\xd3\xdd\x13\xaf\xb2\x03\x0c\x4d\xcc\x8c\x70\x39\xb7\xe2\x22\x30\x81\x08\x3c\x42\x00\xe2\xaf\xec\x95\x3b\xe8\xd3\xb9\x02\x2c\x35\x5c\x0e\x6f\xdf\xed\xa8\x5d\xa9\x5d\x06\xb1\xc3\x4f\x5b\xca\x5c\x8c\x2b\x13\xb4\x91\x06\x92\x19\x8b\x34\xcd\x88\x77\x17\xed\xfe\xa1\xf8\x8f\x04\xb3\x84\x17\x5b\x5a\x62\xa1\x39\x4f\x11\x7d\x3a\xc9\xb5\x69\xad\x02\x7f\xeb\x15\x91\x9a\x3c\xb6\x57\xa7\xd0\x54\x51\x1e\x66\x4c\xe8\x48\x05\x02\xf9\x34\x29\xab\x56\x87\x40\x39\x56\xd6\xb6\x1d\xfa\xc4\xa8\x83\xad\xe9\x73\xca\x6b\x1c\x9f\x9a\x58\x41\xee\x27\x6a\xb7\xf8\xc1\xf5\x43\x4e\x71\xae\x31\xad\x72\x5f\x01\x5a\xd2\x9f\x32\x82\x09\x76\x9f\x09\xc9\x00\x4c\x92\xd0\xd2\x5e\xdf\xea\x93\x79\xaf\xf7\x78\x3d\x9f\x80\x99\xb6\xa0\x58\x3f\x17\xab\xc5\x87\x16\xcb\x98\xc7\x1e\x07\x54\xee\xed\x49\x86\x4d\xe3\x44\xd4\xf1\xb1\x7f\x66\x8b\x89\x02\x61\x03\x20\x0c\xa2\x87\x77\x91\xb9\x35\xcf\xe8\x34\x79\xee\x9d\x73\x5f\x38\x26\x43\xfb\xdb\x88\x73\x52\xf6\x9a\xb1\x1f\xa1\x55\xce\xe2\x82\x18\x83\xc9\xc3\x27\xa0\x9a\x88\x32\xf7\xff\x98\x94\x50\x2d\xc1\xac\xa2\x95\x91\x86\x20\x82\x72\xd2\x8c\x19\xa2\x7d\x73\x1d\xd3\x86\xd7\x53\xb3\x38\x3a\x7c\x2a\xdc\x61\x5c\xe5\x86\x0e\x3c\x30\x77\x44\xcd\xc6\x08\x6f\x57\xe3\x95\x7c\xd9\x64\xbd\x1f\x02\x5c\x70\x9b\x82\x41\xef\xfc\x98\x30\xc3\xab\xf1\x8e\x13\xb1\xe5\x34\x38\xa3\x81\x07\x03\x53\xf7\x27\x21\x31\x7f\x93\x29\x26\xe2\xb1\xee\x37\x90\xe5\x8c\x17\xdd\xfe\x81\xf4\x12\xb1\xa9\x1d\xf6\x72\x2c\x32\x4b\xcb\xd4\xc7\x8f\x0d\xa3\xba\x1b\x47\xb5\xd8\x4c\xa2\x79\x56\x72\x09\x06\xd7\x1a\xb1\x9c\xce\x7d\x9e\x63\x98\x66\x65\xc9\xb5\xb0\x25\x7f\xac\x88\x94\xaa\xa4\x14\xa9\xb8\x2f\x8d\x58\x71\x21\x0d\x97\x0c\xec\x06\x07\x7e\x3b\x37\xc0\x1b\xe5\xe3\x0f\x32\x9c\x2e\x75\x5b\x9d\x3e\x31\x0d\x58\xf5\x81\x0b\x0a\x8f\x43\xee\x56\xeb\xa3\x21\x26\xb5\x29\x1d\xaa\xa3\x45\xfa\x92\x7e\xad\x38\xd4\x95\xa9\xf0\x86\xb1\xba\xf4\x9d\x1f\x7d\xf8\xd3\xe4\xdb\xc2\xef\x2b\x82\x31\x47\x85\x39\x98\x71\x6e\xd3\x4b\xde\xda\xc2\xed\x2c\x66\x2d\x20\x7a\x18\x1f\x1a\x3e\x52\x26\xe0\xee\x7b\xea\x30\x5f\x5d\x46\x43\x3e\x2a\xd4\x94\x9e\x47\x09\x2c\xc7\xb6\x48\x5d\x8e\xd4\x64\x20\xf0\x1c\x1a\xee\xbe\x02\x46\xc9\x19\x2c\xc2\xe1\x3d\x2e\x81\x4b\x90\x32\x15\x83\x22\x95\x1e\x1a\x8c\x11\xe0\xc8\x05\x5a\xa9\xce\x6a\x06\x65\x6c\xa4\xbb\xf8\xa3\xa3\x07\x3b\x06\x2e\x7e\xcd\xca\x9f\x15\x53\x7c\x1a\xbe\x9b\x85\x0e\xf1\xf0\x55\x8f\x19\x77\x1e\x07\xa0\x84\x23\xd9\xed\xe6\xe9\xf5\xef\x3c\x4a\x21\x0f\x84\x8b\xdc\x30\xa1\x21\xf1\xfc\x5b\xd4\x0a\x81\x72\x85\xca\x91\xc3\xfa\x65\x1b\x6b\xe8\x34\xc8\xa6\xba\x34\xd5\x73\xe7\xc4\xf7\xd0\xad\x86\x69\x18\x08\x1e\x8a\xfa\x39\xed\x2a\xcc\xba\x2f\x09\xac\x09\xc3\x8b\xb9\xd2\x38\xd8\x5d\x56\x4e\xc4\xf7\x78\x53\x7f\xc1\x43\x3a\x7e\xc0\x11\x28\x6a\x2c\x29\xca\x5a\xf0\xad\x76\x57\xcb\xf8\x40\xdb\x97\x36\xef\x63\x63\x3a\x2d\x88\x42\xc8\x71\xc9\x45\xe2\x28\xb3\x1f\x97\x1a\xbd\x67\xe0\x65\x4a\xf3\xd0\x5f\x9c\x5f\x23\xc3\xab\xdd\x5b\xec\x1b\x87\x52\x94\xd4\x33\x12\x37\x26\xc2\x0f\xf3\x19\xfb\x48\x5a\xd8\x98\xb8\x47\x72\x84\xf1\xbb\x46\xdf\x81\xfc\xaa\x00\xbb\x58\x5e\x07\x79\x52\x15\xbe\xb2\xe2\xf3\x12\xee\xac\x34\x85\xe3\xaf\x1a\xca\x24\x02\x0e\x57\xff\x34\x88\x92\x68\x39\xfe\xd1\x91\xd3\x91\xe0\x02\x59\x30\x46\xbd\x59\xbc\x83\xbc\x4c\xf5\xb6\xb4\x33\xfd\x20\x3e\xc9\xf2\xc7\x56\xae\x2c\xda\x31\x51\x11\x51\x3d\x1d\xb2\x27\x5f\xb2\x47\xe0\x27\xbf\xce\xa8\x14\xab\xff\x1d\xa4\x43\xf5\xcd\x72\xfd\x5a\xc0\x16\x37\x7a\xa9\x85\xfd\x5f\x6c\xa8\xbd\x0c\x53\xce\x95\xba\x40\x76\xf8\xbf\xdb\x6c\x9b\x1e\x53\x10\x36\x0d\xfa\xd9\xc3\x0c\x0c\xa9\x02\x8d\xeb\xb3\xea\xdc\x9d\x34\x5a\x36\x45\xba\x4a\x32\x4d\x1f\x48\xaa\x44\x61\x60\x92\x7d\xa1\x98\x42\x4a\x52\xc3\x96\x00\xc1\xdc\x21\xd2\xc4\x2a\xff\xea\xc2\xef\x31\x09\x3e\xd5\x0d\x53\x3e\x46\x7b\xde\x53\x84\x54\x36\xe8\xd0\xf7\xd0\x98\xed\x4f\x34\x15\x16\x0b\xee\xf5\x4c\x1c\xd1\x54\x68\xa8\xf6\x0a\x6d\x96\xc6\xd8\x7b\x85\x2a\xba\xc2\x4f\x16\x85\x40\x42\xe0\xb9\x9a\x9d\x0a\xbd\x62\x5f\xe8\xee\xc9\xfe\xc1\x6c\x17\xea\xad\x70\xfa\x79\xca\xa6\xf7\xb5\x00\xa9\xf6\x7e\xfc\x9a\x2e\xbd\x3c\x8e\x5e\x11\x23\x69\x7a\x53\xe8\xc3\x81\x35\x9b\x1e\x97\xf3\x18\xa0\x46\x89\xb0\x7a\xbc\x76\xec\xb6\x6e\x7a\x4d\x1c\xa4\x28\xcb\xce\x9e\x8e\xc5\x9c\x35\x72\xbc\xba\xfe\xcb\x67\x6a\xe0\xaa\x6e\xde\x91\xf4\x97\x57\x43\xcd\x94\xde\xf0\x60\xd6\xc0\x1a\x39\x91\x27\xfd\xe9\xdb\x14\x1b\x7e\x71\xa4\x56\x26\x3c\x3d\x60\xb3\xa1\x2e\xa6\x34\x8c\x63\x15\x9f\x13\x97\x68\x0b\x12\xe1\xc6\x38\x73\xef\x22\xda\x31\x21\x7f\xba\x72\xfe\x47\x41\xa6\xf8\x8b\x16\xe2\x13\x28\x56\x86\xce\x32\xdc\xa9\x52\x6a\x07\x65\x84\x07\xa9\x07\xc6\x24\xc3\xc5\x57\x70\xe0\xd9\xff\x8c\xae\x72\x17\x15\x97\x71\x23\x0c\xf8\xe2\x64\x92\x38\x7d\xfc\xfd\xdd\xc1\x58\xa3\x34\xdb\xbf\x13\x73\x2b\x3f\xc2\x16\xef\x88\x59\x62\x52\x98\x84\x70\x33\x7b\x4d\x69\xe2\x1d\xca\xac\x0f\x7f\x49\x68\xb9\x7f\x03\x52\x9c\xc1\x7a\xdf\x98\xb6\x4b\xe0\x08\xfe\xa0\x98\xce\x84\xd8\x29\x35\x75\x79\x9a\xfb\xb5\x5b\xc0\x82\x4f\xb2\xab\xa6\x41\x08\x5f\xf6\x30\x16\x97\xd9\x65\xa3\xee\xbf\x17\x91\xed\x1d\xe9\x66\xce\x61\xba\x7d\x8d\xfa\xbb\x64\xa3\xe6\xac\x6c\x14\xb7\x1e\x87\xd1\x61\x9a\x87\xc3\x32\x9f\x4a\x56\x22\x5c\x7d\xcf\xc1\x74\xb1\x8c\x38\xe0\x1e\x0b\x1c\x48\xe9\x4f\xc4\x14\x24\x57\x06\x6e\x7b\x30\xee\x7d\x07\xc0\x19\x07\xa9\xf0\xe0\x8a\x7b\x78\xbd\x05\x1c\x61\xf4\xa2\x2c\xe9\xe5\x43\x9b\xd6\x30\xf0\xb2\x73\x89\x80\x62\x89\x31\x3a\x3e\xf5\x46\x2a\x56\x2b\xc2\x91\x71\x42\xbc\xfe\xda\x58\x34\xef\x39\x36\xba\xb1\xa7\x66\x5a\x6b\xd6\x9e\xb5\x68\x39\x4a\x96\x1d\x59\x91\x68\xed\xc3\x9a\x61\x52\xb5\x11\xc6\x7a\x81\xd7\x2b\x0e\x28\xf9\xfa\x4b\xfb\x53\x5e\x8a\xbc\x8f\x29\xa9\x26\x29\x62\x7c\x1d\x55\x83\x4d\x39\xfa\x68\xae\xca\xed\x35\xeb\x49\x5e\x32\x07\x87\x6b\xe9\xb8\xdb\xc2\x5a\x6c\x07\x52\xf3\xf0\x30\x2c\x92\x02\x56\x2c\xd2\x68\x4b\xe1\x11\xce\x5e\x03\xa1\x3e\x35\x3f\xff\xb7\x70\x9a\x58\x4a\xa4\x79\x72\x38\xcf\xcf\x5f\x4d\x71\x2a\xf7\xb3\xdd\x99\x3e\x95\x24\x38\xb1\x78\xe7\x19\x5f\xec\x38\xd6\xa3\xb5\xdb\x65\xc3\xbc\x3d\x63\xe3\x23\xaf\xb4\xad\xf9\x89\xb1\xa2\xa6\x0c\x60\x4a\xd8\x76\x53\x8e\xf1\xef\x7a\x45\x3c\x62\xd0\x9e\x52\x90\xc8\x68\x9d\x10\x79\xb7\xc7\x2b\xb5\xa5\x8c\x30\xe4\x65\xb5\x84\xaf\x66\xd2\xac\x2d\x08\x43\x6f\xa9\x7d\xbf\x25\xad\x3f\x1e\xfc\x2b\x89\xb7\xa8\x92\x7e\xd1\xaa\xc7\x97\xbf\x06\xa7\x74\xa8\x97\x74\xf2\x0f\x00\xd9\x87\xa0\xc2\x4a\x2f\x51\xc6\xb3\x4b\xb0\x4e\x67\x41\xf6\xa4\x09\x9a\x49\x5c\xc0\x14\xfd\x35\x4d\xdf\x20\xd0\x43\x9c\xa5\x48\xae\x46\xba\x0b\x0e\x2d\xc6\x4c\x5e\xb5\x07\x6b\xc4\x5e\x69\xdc\x6b\x06\x53\x46\xaf\xb1\x24\xc3\x4e\x9f\x19\xf8\x30\x7e\xef\x63\x9d\x1a\x35\x2b\xa6\x75\x2c\x5e\xf1\x93\x48\x3a\xee\x2b\x1f\x33\xfb\xcb\xf2\xf3\xd4\x31\x3a\x34\xdc\xb7\x10\x0d\xe5\xcf\x12\x09\x2c\x3c\xc4\x60\xa7\x0e\x4e\xc6\x83\xca\x28\xf8\x93\x23\xab\xbf\x4e\x43\xac\x6b\x69\x7b\x3c\x1d\xae\xb4\xa5\xef\xcb\x9a\xd1\x88\x38\x92\x87\xb1\x36\x8c\x55\x9e\x55\x12\x0b\x97\xa4\xbe\x8d\x8b\x30\x84\xa4\xef\x67\xbf\xa9\xd9\xad\x50\x83\x05\x76\x74\x2e\xfb\xc4\x00\x96\x37\xa3\x80\x69\x76\xa9\x36\x86\x92\x03\x62\x02\xdc\xbd\x65\x13\xcb\x92\x02\xe9\x17\x04\xd0\x3b\x92\xd5\x63\xbb\x96\x19\xb1\xb7\x72\x2f\x0c\xa3\x34\x8f\xc6\xea\x06\x8f\xdc\x42\x8a\x53\x1c\xc0\x33\xcf\x1f\x68\xd6\x66\x21\x42\x28\x5c\x97\x46\x6b\xdb\xfa\x9d\x8d\x7a\x9a\xc0\x06\x25\xc9\xdd\x42\xad\xc3\x48\x86\x0f\xc2\x13\xa8\xfb\x77\xbe\x1b\x04\x95\xba\x81\xfe\xf3\x00\x6d\xec\x42\xd4\x2e\x14\x52\xc3\x44\xdb\xc3\x04\xa2\x41\x6d\x05\x43\xfa\xa9\x06\xd2\xcb\xa7\x1a\x1d\x03\x3e\x7c\x63\xb2\xe5\x7f\x97\x15\x96\xa8\xf5\xe9\x4b\xcd\x45\x70\xcf\xec\x8a\x74\x54\x6a\x6d\x3a\x26\x1d\x85\x9e\x3d\x3f\x13\x1c\xe0\x78\xab\xa1\x4e\xa8\xb4\x64\x1b\x2a\xd5\xe6\xd7\xe1\x12\x2c\xd1\x91\xc2\x89\x3d\x3f\xb3\xae\x6e\x78\x97\x75\x39\x0b\x76\x43\xdd\xd5\x21\xb9\x15\x01\xa6\xd1\xb6\xea\x58\x8e\xf1\xaf\xab\xf4\x70\xc6\xfc\xa9\x29\x9f\x86\xe6\xf2\x03\x78\x77\x3f\x74\x0a\x3e\xe4\x77\x3f\x25\x8f\x4d\x72\x85\x37\xb7\xf0\x3a\x9b\x2e\xba\x3a\x62\xc5\x4b\x8c\x23\xc2\x30\x91\x70\xed\xc0\x7f\x15\x7d\x86\x65\x66\x77\xa2\x17\xaa\x42\xf8\xf7\xbf\xeb\x0f\xb7\x60\x97\xb0\x7e\x31\xb1\x8c\x4b\xd0\x93\xd2\x89\x5e\x11\xe7\x4b\x92\x5e\xf2\xa3\xff\xfa\x2d\xa0\xb6\x25\x2b\x79\x97\xbd\xad\xd3\x87\x0f\x24\xa8\x60\xaa\x3c\x41\xa2\x49\x17\x5b\x99\x48\xfc\x94\x62\x65\x7d\x4d\x84\xc4\x30\x96\x59\x65\xc3\x50\x3e\x3a\x37\xaa\x3f\xaf\x48\x29\x2f\x8d\x7d\xa3\xfb\x3d\x9b\xf8\x9b\xc9\x4b\xaa\x98\x87\x6f\x1e\x87\x55\xcb\x41\xbe\xd1\x61\x1d\x41\xcf\xd4\x6c\x9c\x10\x21\xdb\x1f\xd2\x49\x0b\xe0\xb6\x9a\xc6\x69\xfc\xc4\x0f\x91\xfb\xc8\x1f\x73\x17\x90\xc2\x1f\x06\x92\x1f\x85\xac\xd6\x3d\x17\x2b\x5d\x02\x2c\xa4\x9e\x0a\x0b\x43\x78\x05\x0a\x73\x59\x93\x65\xb9\x13\xb4\x87\xaf\x28\xda\x6c\x4c\xf2\x23\x08\x69\xd2\x4d\x49\x67\x4d\x24\xa6\x66\x28\xec\x05\x3c\x6c\x91\xe6\x52\xe9\xb4\x56\xa4\xc0\xbb\x5f\xb4\xe5\x9c\xf2\x91\x91\x36\x90\xd7\x87\x4c\x5a\xc4\x99\x04\x7b\xff\xe4\x08\x04\x49\x7d\xf4\xb3\x37\xda\xd8\x23\xb4\xcb\x97\x52\x22\x81\x5d\xd5\xbf\x8b\x5e\x5a\x34\x09\xb2\x97\x4f\x63\xcf\x8c\xac\xf9\xb8\x23\xa5\x1b\xd7\xc1\x12\xaa\xe9\x42\x1a\xfb\x5f\x0f\x8e\x55\xa1\x4d\x55\xfc\x70\xd2\xaa\x1b\x60\x2e\xb3\x30\x30\x1c\x52\x9d\x34\x32\x57\x41\x39\x84\xcb\x58\xe0\x1c\x23\x52\x52\x37\x50\xbf\x43\x2c\x19\x3c\x9d\x10\xdb\x12\x4f\xbb\x8c\x88\x58\x10\xa1\x10\x48\x56\x6e\xf2\xde\xac\xc8\xd1\x37\x1b\x13\x96\xe9\xf7\x01\x8e\x1c\x92\x03\x8d\x8d\x14\x92\xc6\x48\xc9\xc1\xfe\x9e\xc0\xeb\x22\x04\x6a\x3f\xcb\x49\x9a\x79\xc9\x0c\x80\x8a\x52\x18\x48\xfa\x07\xc3\x71\x7e\xfa\xd6\x0b\xd0\x2c\xb8\x19\x6c\x23\x8f\x7e\x72\x65\xb2\xc5\xe1\xd5\x2c\x7a\xd6\xdd\x8d\xb2\x3e\x80\xe0\x42\x82\xfe\x6c\xac\x29\x4b\xc1\x4e\xcc\x42\x94\x13\x9f\x0f\xec\x7b\xf0\x95\x89\x99\xab\xdb\x2b\x8e\xbd\xdf\x86\xa9\xba\xf4\x66\x06\x8a\xcd\x88\xd2\x84\xc6\x27\x00\x26\xf4\x41\xc6\x0d\xf2\xb3\x90\xd6\x15\x9a\x87\x9d\x8f\x16\xe5\xb7\x45\x34\x1b\xae\x64\x01\x54\x8c\x8f\xc3\xf1\x4a\xf6\x8c\xe9\x49\xbf\xa3\xcb\x19\x28\xb9\x2a\xbb\x77\xed\xaf\x30\x28\xb9\x54\x6b\xb2\xea\x58\x15\xf3\x05\x2d\xce\xf4\x1c\x37\xa9\xae\x96\x46\x75\xe5\x70\xcf\x5f\x71\x64\xc1\x81\x2d\xb6\x57\x82\x40\x8c\x8a\xcb\xd9\x61\xa1\x71\x45\x95\xd6\xad\x6e\x2b\xa5\x60\xe5\x1c\x32\x5a\x99\xd8\x06\xf2\x2c\x7e\x1b\x4e\x3c\x7a\x57\xe1\x6f\x60\x34\x5d\x1c\xa5\x5d\xd4\xb8\x32\x3e\x55\xb9\x0a\xef\xa4\xcd\x76\x29\x6a\xdc\xce\x40\x8d\x1f\x26\xf0\xfe\x9e\x04\x68\x5d\x3e\xac\x80\x45\x24\x70\x3e\x1a\xb2\xcf\x3e\x09\x4e\xc5\x76\xa0\x83\xa2\xda\xd6\x3f\x50\x39\xaa\x7a\x48\x35\x74\x39\xca\x59\x6d\x88\x93\x66\x86\xe8\x8a\xc2\x1b\xd6\x15\x3b\xc1\xae\x66\x99\xc3\x8a\x06\x5f\x39\xfd\x19\x57\x6b\xd6\xc6\x82\x9e\x3d\xcd\x0e\xe7\xf6\x79\x29\x82\x94\xd5\x59\x3d\x6e\x6d\xab\x42\x43\xdb\x2a\x9d\xb5\xad\xd4\x1f\x6e\x4f\xb4\x84\x84\x10\xb5\xb4\xdf\x2c\x16\x27\x9a\xb0\xfd\x59\xdc\x26\x85\x8b\x00\x3e\x75\xde\x41\x95\xf1\x04\xc1\x7b\x4f\x44\x2f\x97\x44\x42\x26\x0a\x8e\xde\x23\xfb\x2f\x47\xaa\x67\x62\x6c\x32\x21\x74\x0a\xe5\x07\x77\xc3\x79\x59\xd7\xd4\x7b\xf7\xaa\x8d\x6c\xba\x9a\xc8\x64\xed\x08\x45\x20\x41\x99\x8b\x6f\xd5\x0b\x2d\x1b\x2d\x86\x1c\xf5\x73\xdc\xe1\x70\xcd\x33\x56\x7e\x4b\x70\xfd\xdb\x37\x86\x70\xc7\x0a\x95\xe9\x99\x1a\x13\x3c\xef\x51\xb2\xdb\xa1\x5b\x09\x94\x27\x69\xd6\x88\x04\xb9\x1f\xce\xd0\x52\x0d\x32\x92\x29\x3a\xd6\x3f\xca\x6e\x12\x20\x5f\xa7\xd8\x1a\x92\x8a\xc3\x56\x48\x23\x9e\x8d\x0b\xdf\xbe\x0b\xd5\x32\x31\x7a\x46\xd0\xd6\x7d\x63\x81\x99\x12\x69\x4c\x89\xf0\xce\x3f\x90\x54\x36\x51\x33\x83\x1c\x7c\x0e\x3a\x43\x26\x50\x9c\x77\xdb\x3d\x57\x49\x59\xd3\xd9\x2b\xa2\xe8\xab\xf1\x28\x58\xe1\x42\x48\x8e\x86\xce\xba\x10\xea\x75\xf5\xa3\xda\x52\x45\x87\x3b\x96\x8f\x9b\xb5\x18\x75\x4c\x1a\x12\xa2\x47\x20\xa7\xc5\x1e\x25\x9c\x2d\x7f\x38\x0e\xdf\xc7\xdc\xa9\x22\x85\x54\x54\x12\xa1\x06\xdf\xd2\x48\x24\x9e\xec\x48\x87\xd0\x74\x8d\x59\x5a\xc2\xe4\x3b\xe4\x37\x57\xf6\x99\x01\xe2\x2b\x9e\xed\xac\x93\xce\x48\xaa\x41\x41\xe3\x7d\x1c\x55\x1a\x47\x17\x7e\x43\x64\x9f\xa5\x93\xc6\xc9\x2e\x72\xe6\x4c\xf2\xd3\x27\xc2\x31\x84\x4e\xf6\x81\x74\x08\x9d\xff\x63\x7f\xfc\xa2\x86\xcc\xd1\xb5\xab\x8e\x47\x43\x34\x81\x46\xba\xe1\x49\x09\xc9\x28\x71\xa8\xc5\x54\x5f\x72\x78\x74\x00\x53\x68\x36\x7a\x36\x18\x10\x23\xa4\xc0\x24\x69\x23\x0f\x2f\xeb\xb1\x5c\xba\x29\x50\x76\xa5\x56\x12\x3f\xd8\x0e\x87\x1a\xb4\x9c\xd1\xb8\x1e\xd9\x9a\x2f\x3a\x1f\xc4\x14\x22\x68\xbf\x84\x83\xaa\xf7\x2c\x2d\xe5\xc9\xd3\xf3\x85\x28\x5e\x42\xbb\x10\xd4\x74\x21\x73\x69\x8a\x2e\xe2\x23\x04\x3d\x0c\xf9\xa2\x60\xd5\xc3\x90\xc7\x22\xde\x42\x2c\xf0\xa5\x00\xf9\xb8\x03\x51\x2b\x1b\xbb\x53\x58\x89\x8d\xfe\x27\xe3\x6c\x6e\xe3\x41\x89\x45\x48\xff\x9a\x5a\x6e\xd3\x89\xd7\x75\x8e\x17\x06\x32\xdf\xb6\x91\x73\x77\xfb\x9c\xb6\x12\xa1\x75\x9e\x99\x44\x5b\xdf\x40\x30\x4d\xb1\x6a\x35\xd6\xc2\x69\x1a\x1a\x71\xa8\xf5\x22\x8f\x01\xbc\xbf\x21\x2e\xcf\xfd\x2d\x85\x6f\x94\x5d\xcd\x7d\xce\x2e\x16\xd1\x93\x04\x05\x46\xee\x0c\xdf\x93\x94\x6a\xed\x04\x4e\x89\xb4\x65\x25\x23\x2a\x4f\x66\x13\x66\x70\xbc\xa1\xcd\x61\x2d\x9c\x4d\x7c\x95\xf2\x69\x1f\x83\x37\x9a\x24\x59\x70\xec\xc9\xa3\x20\x88\x56\x35\x11\xb9\x45\x6d\x91\x28\xa2\xff\x1e\x69\x27\x42\x2c\x5c\x88\xb9\xbc\x38\xdc\x84\x7f\xe9\xe2\xb8\xf8\x2f\x64\x06\xd4\x61\x92\xdb\x5c\x72\x98\x8e\xf2\xcf\x88\xe8\x58\xc0\x3d\x11\x6a\x05\x2b\xf4\xd1\xf6\x15\xe3\xce\xd9\x22\x15\xf8\x4b\x4d\x9f\xce\xd8\x1d\x7d\x36\x48\x70\x71\x9c\xe8\x61\xf4\x74\x8d\xfc\x87\x0e\x13\xdd\x25\x1f\x6a\x3d\x96\xf3\x6e\x80\x83\x7f\xd6\xf0\xf5\x69\x28\x69\xfb\xf9\x75\xe1\xd4\xf4\xbb\xe2\xcb\xb0\xcd\x81\x33\x47\xa1\x94\x54\x6f\x7f\x00\x8a\x88\x3e\x0e\x1d\x11\x20\xc4\xe8\x21\x7a\x82\xf8\x53\xcd\x5e\x3b\x91\xce\x61\xd0\x67\x12\x73\x63\xd7\x43\xc5\x0f\x3c\x5e\xb5\xae\xe2\x48\x39\x95\x8a\x2e\x05\x4d\x73\x7c\x4d\x99\x6a\xe7\xc5\xdb\x75\x2f\x90\x7e\x3e\x15\x24\x94\xe1\xe2\xf0\xb4\xd6\xee\x9e\xe6\xc4\xea\x6c\x6f\x5b\xc1\x2c\xef\x2f\xbc\x68\x2f\x13\x59\x83\x80\x60\x7e\xfc\xa9\xb0\x54\x26\x51\xf9\x37\xe0\x5d\x83\x93\xe0\xf1\xc5\x7e\xc0\x81\xa0\xe9\xef\xdf\x33\x13\x88\xee\xd2\x49\x6f\xb3\xd1\x59\x66\xa3\x26\x68\xd3\xc3\xca\x25\x2a\xda\xb2\xa8\x0d\xaf\x4f\x69\xea\x5d\xc8\x52\x75\x91\x44\x10\x6e\xae\x57\x82\x31\xc2\x66\x1b\x91\xb8\xb2\x0e\x46\xf6\x30\xc1\x43\x39\x87\xcc\x62\x21\x1a\x21\xc9\x43\x6e\xa4\xd7\xb6\x36\x7a\x03\x57\xf9\xc0\xc7\xab\xb3\x56\x87\xd5\xe6\x70\x8f\x18\xfe\x79\x05\xfa\xb2\xcd\x13\xbe\xd1\x61\x8d\xb9\x67\xd2\xb9\x98\xfe\xdc\xa2\xfd\x61\xa9\x8a\xfe\xca\x12\x22\x00\xae\x25\x1e\x5c\xb9\xb2\x14\x22\x72\xf2\x84\x25\x04\xd4\xf1\x57\x8a\x70\x52\x53\x95\xe8\x0c\xc2\xbf\x81\xd0\x3f\x1b\x38\x11\x0a\x1e\x2d\x58\xae\x71\x12\x10\xcc\x3a\xbe\x55\x11\x02\x8a\xdb\x05\xac\x4a\x69\x26\xde\x8a\x47\x58\x39\xcd\xf4\x94\x5d\x1f\x1a\xb0\x6d\x23\x23\x15\x8a\xbb\x11\x9c\x0c\xeb\xf0\xbb\xa9\x19\xaf\x63\x87\x36\x56\x93\xd9\xa6\xc1\x6a\x34\x04\xcf\x57\x90\x67\xde\x9c\x77\xc8\x8f\x3a\xae\xc8\xb0\xd8\xc0\xae\x2d\x7a\xbc\x61\x26\xef\x99\x8b\x02\x78\x1d\x4c\xea\x40\x66\x6b\x5f\xdd\x1c\x6a\xae\x57\x53\x52\x6d\x4f\x9c\xce\xf7\xf0\x0e\xcc\x74\xcb\x26\xdb\x94\x8f\xa0\x14\x05\x62\x04\xcf\x4d\x03\x44\x38\xa5\x5e\xda\x42\xec\x06\xf6\xba\xe4\x8b\x89\xe2\x45\x7d\x5a\x6f\xb9\x0b\xe5\xc0\xe2\xa5\xfe\x25\xb8\xce\x73\x36\x38\x63\x07\x1d\x26\xb3\xbb\xf4\x55\x68\xd7\xe1\x8c\x4f\x82\xea\x30\x7f\x7d\x4d\x89\xc6\xe3\x48\x1c\x49\x21\x21\xd2\xc8\x0a\x77\x28\x6f\x42\x04\x4a\xb6\x0d\x9a\x0e\x1d\x51\x39\xe5\x4e\xf8\x14\xe2\xcc\x0c\x42\x53\xf9\xa1\x24\x85\x78\xc0\x74\x47\xec\xca\xa3\x65\xbc\x62\xa0\x0d\x19\x90\x44\xeb\xb1\xe8\x13\xe3\xdb\xb2\xf4\xae\x80\xa2\xd4\xd8\xb5\xba\xc3\x04\x6d\x48\xea\xf7\x8a\xfb\xf5\xdc\x89\xd5\x31\xdb\x0b\xe4\xb4\x88\x39\x2f\x6a\x45\x9c\xe5\x07\x08\xb6\x84\x1e\xa4\x72\xf9\x1d\x12\x7d\x42\x5a\xe6\x80\x2d\x57\xdd\x9e\xc6\x05\x9e\xb9\xa2\x68\xd9\x49\x38\x77\x9d\x6d\x22\x29\x66\x75\xe9\x41\xaf\x6d\xc9\x94\xc1\x9b\x5e\x81\xce\xdf\xb1\x5f\xc5\x78\x0e\x66\x92\x11\xf6\x39\xdb\x46\xe3\x6e\xca\x54\x02\x2e\x0d\xdd\x1f\x1a\xe8\xac\xd4\x73\xa1\xf8\x88\xf4\xb0\xee\x5c\x41\x62\xca\x1d\x69\xcb\xa4\xb7\x7f\xd7\xda\xc3\x5b\xec\x76\xac\x5d\x99\xc3\xc3\x85\x02\xd9\x66\x5f\x83\x6c\x02\xe4\xf5\x97\x24\x21\x3e\x93\x8d\xf2\x61\x52\x9b\x17\xab\x17\x48\x0f\xb6\x3d\x86\xe7\x57\xdc\x58\x78\x90\xda\x6f\x26\x19\x26\x78\xba\x61\x62\x3a\xac\x6d\x95\x68\x57\xd5\xd7\xa5\xda\xaa\x4a\x83\x21\x7c\xdc\xa2\xb3\x36\xa1\x9c\x6e\xed\xa5\x2e\x8d\x26\xa1\xef\x96\xb2\xd2\x65\x6d\xa6\xa6\x83\x4f\xa3\x7e\x73\x74\x2e\x1f\x78\xaf\x1c\xa6\x26\x9b\x73\xb1\x24\x91\xbc\xad\x14\x58\x2a\xe9\x8d\x9d\x4b\xa8\x33\x76\x72\xf0\x26\x65\xe8\x30\xfa\xdd\x0a\xa0\xa4\xbc\x57\xc7\xb1\x7d\x31\x07\xa4\x15\x48\x0c\x1e\xb2\x18\x17\x7d\x45\x84\x49\xcf\xb4\xc6\x92\x6e\x86\xb8\xf5\x13\x1d\xf5\xa4\x10\xb8\x8c\xe5\x56\x7b\x6b\x07\x16\xce\x16\xc8\x96\x36\xb5\x31\xb7\xc6\x30\x3c\x4d\x60\x14\xc2\x7b\xeb\xb5\xc5\x1a\xd2\x75\xb1\x7b\xb2\x1f\xaf\x2a\x0e\xea\xaf\x02\xa4\xc3\xff\x54\x09\x0c\x38\x7b\xee\x5e\xd5\xec\x8e\x69\x22\x16\x0a\xcc\xf0\x9e\x9c\xbb\x9d\xfa\x5c\x75\x19\x0d\xe6\xea\x81\xe7\xa7\x13\xbf\x2a\x19\x9e\x15\xbd\x69\xf4\x84\x12\xa3\x17\xd6\xa0\x8f\x8d\x88\xe2\x1e\xac\x28\xdd\xf8\x07\xd7\x03\xc6\x7f\x1b\x40\xfc\xbb\x82\xc2\x2f\xc9\x8d\x84\x7e\xb5\xbe\x9b\xc4\x40\x2a\x98\xbc\xc1\x24\x89\x3d\xaf\x56\x0b\xd4\xf8\xbc\x25\x24\xd8\x0f\x70\x99\x05\x5d\x0b\x1b\x6e\xed\x86\x41\xff\x6d\x08\xa7\x5b\x15\xd8\x0a\x75\x20\xc1\x91\xfa\xcd\xf9\xbd\xf9\x63\x6e\xc4\xd8\x6e\x95\x85\x83\xe1\xef\xfa\x09\xef\xbe\xc3\x18\x8c\x28\xd8\xe7\x29\xef\x97\x36\x7f\x98\x68\xe3\xbd\x12\x89\x27\x9d\x68\x8d\xcf\x00\x87\xfb\x2f\x35\x75\x04\xd6\xd6\xe5\x34\xd7\x0f\x74\xb4\x44\xe0\xb0\x7f\xe4\xde\x95\x94\xbb\x82\x9e\xf0\x5b\x37\x7c\x88\x0d\x07\x98\xe4\x5c\x7d\x76\x2a\x32\x76\xac\xd4\xe5\x0e\x79\x29\x5c\x7d\x44\x02\xe5\x92\xc9\x89\x90\x7f\x45\xd8\x49\x8a\xfe\x42\x8f\x7f\x96\xde\x6f\x41\x9c\xec\x98\x6a\xd1\xbc\x9c\x22\xa2\x6d\xf4\x38\xe6\x21\xc9\x43\x0e\xea\x5f\xb2\xfb\x7a\x1b\x74\x45\xc0\x19\x5c\xc2\x1e\xf5\x0f\xff\xd7\xe7\x6a\x51\xfa\xfb\x8b\xf4\x1a\x62\xd4\x0f\x9e\x44\x9a\x6b\x00\xc3\x55\xc9\xca\xbf\x8d\x64\xee\x8c\x09\x79\x10\x90\xa8\x80\x98\xdf\xda\x46\x45\x50\x68\x05\x89\x5f\x62\x9d\x5f\x91\x44\x66\xae\x42\x68\x5d\x52\x93\xcd\x9e\x57\x72\x68\xea\x8b\x1c\x55\xb9\x1a\x49\x02\x8f\x81\x00\xf6\x63\xea\xfc\xa1\x1d\x84\xba\xc2\x54\x37\xd7\x62\x41\x10\x93\x03\x20\x92\xcd\x3f\x5f\x48\x62\xc5\x7f\x8b\x24\xae\xa8\xe7\xc1\xdd\x98\x27\x87\x97\x5f\xd9\xd6\x4d\xb4\x31\x17\x54\xce\xfb\x86\x8e\xd7\xe3\xf9\x1a\xf4\x51\xb0\xf9\xe4\xe3\x00\xae\x63\x9b\xe4\x5a\xaa\x99\x61\x9d\xca\xde\xa8\x2e\xa5\xf9\xbf\x00\x00\x40\xff\xbf\xe5\x42\xf3\x39\xa1\xc4\x79\x35\x2e\xb4\x05\x1f\x79\xff\x61\xc5\x71\xb9\xf0\xe9\x19\xba\x30\x89\x46\x78\x5c\xab\x52\x17\x2f\xca\xd0\x4a\x85\x16\xe6\x43\xc0\x99\x3b\x47\xb5\xf3\xfe\x45\xa2\xbf\x5f\x4a\xc0\x9c\x9f\x9e\xd1\x67\x35\xac\x42\x77\xab\x7c\xcd\x75\x2d\x88\x26\x04\x72\xb2\xeb\x89\xf9\xef\xff\x9c\x13\x29\x64\xae\x4c\x81\x9e\x66\xdc\x1f\x0d\x82\xe8\x50\x51\x9f\xcc\x11\xc5\x74\xda\xf9\xf8\xd3\xf2\xc4\x0f\xe4\xe6\x48\x40\x3a\x71\x35\x16\x4e\x82\x09\x81\x61\xb8\x89\x00\x91\xad\x8d\x04\xbf\x92\x7a\xef\x97\xe0\x8c\xef\xa8\x3c\x43\xae\x93\xb5\xc4\x13\x4a\x7f\xa7\x05\x02\x58\xee\x72\x4a\x73\x53\x18\xba\xd4\x9d\xad\x49\x7c\xf8\x86\x81\x6a\xfe\x2b\x02\x9a\x56\xaa\x63\x42\x26\x24\x8b\x80\xe9\x18\x8c\x06\x3b\x7c\x1d\x4d\x14\xda\xa8\xce\x4c\x2d\x6b\x4d\x7a\x78\x70\x3a\xd2\x59\xb7\x86\x1b\x59\xe2\xa6\x18\x25\xea\xbd\xe0\x9e\x9b\xa1\xc7\x14\xe8\x59\x41\x21\x4e\x4b\xc1\x5c\x4c\xaa\x84\x08\x0d\x29\x87\x01\x00\x36\x69\x60\x78\xc0\x07\x46\x77\x4e\x76\x53\x56\xa1\x68\xe1\x47\xbe\x7a\x62\x57\xc2\x33\x59\x0f\xe4\x1c\x35\x3f\x36\xc7\xad\x9e\xe7\xa5\xcd\x03\x6d\x40\xd2\xc0\x1f\x65\x53\x7e\xc0\x84\x46\x58\x77\xd7\x27\xf5\x54\xf2\x0d\x67\x4b\x07\x6f\x90\x3e\x94\xa3\x1d\xcd\xf5\x88\x2d\x8a\x99\x06\xf2\xa7\xa1\x9b\x24\x46\x8e\xc4\x9c\xc7\x25\xa0\xa6\xcc\x7b\x70\x37\xf3\x41\x5d\x99\xb5\x06\x73\x37\xec\x52\xc6\xbc\xc4\x1a\x7c\xe3\x84\x8c\x36\xc8\xa5\x31\x21\xd3\x0d\x73\xff\x82\x26\x04\xf6\x47\x02\x82\xcf\xc0\xdb\xe5\x21\x79\x51\xa9\x21\x0c\xbc\x77\x74\x0b\xa7\xf2\x17\xdf\x72\x97\xda\xb0\x32\x5a\xdc\x46\xdd\xb1\x1e\x73\x73\x02\xa9\xd8\xec\x26\xcb\xe2\xf3\xa0\x49\xda\x1a\xc0\x3c\x65\xc1\x9e\x92\x85\x1d\xde\x4f\x11\x1e\xfb\x90\xdf\x00\xf6\xc1\x33\xc4\x26\xbd\xd5\x4e\x61\xc5\xb0\x49\xe0\xf1\xf5\xad\x9a\xbc\x87\xf4\x21\x44\xb8\x29\xf4\x80\x58\xb4\xcc\xc6\xdb\x83\xa6\xec\x8b\x66\x0d\x86\x0d\x62\x53\xfc\xd7\x5b\x4d\xe2\xb5\x72\xf2\x9d\x18\x10\xfc\x4c\x91\x9a\xf2\xd8\x99\x0e\x82\x32\x57\x8c\x58\x14\x29\x86\xc8\xc3\xa4\x17\x4d\x1f\x8b\x6f\x8c\x9a\x67\x81\x72\xfc\xb4\x51\xd4\x6c\xf2\x50\x00\x8d\x16\x4e\xeb\x08\x6e\xcd\x1c\x96\xbf\xc9\xe9\x7c\x4a\xd1\x5e\xe1\xdd\x02\xa8\xb0\x08\x4f\x0e\x41\xd8\xf9\x97\x88\x33\x20\x23\xd8\x6e\x22\x52\x6a\x3c\xe3\x12\x98\xf3\xdd\x81\x81\xe3\x08\x3f\x04\x7f\x5f\x3c\x41\x28\x89\x4a\x2f\x75\xec\x2e\x55\xc8\x0f\x2d\x07\x70\xeb\x1f\xf7\x76\x9c\x09\x32\xf8\x5d\x5f\x43\x70\xbc\x43\xd0\x6c\xe8\x50\xdd\x61\x1d\x31\x1d\x1d\x02\x69\x5c\x7f\x1c\x79\xc9\x1c\x56\xdd\x15\x12\xc3\xec\x2a\xb7\xeb\x6a\xa5\xeb\x02\xf5\x07\xa4\x10\xa9\x19\xd4\x7d\x43\xe8\xbd\x01\x62\x0c\xcf\xf1\x86\xf9\x76\x2a\xe5\x73\x3a\x67\x54\x46\x5a\x49\x02\xc4\x62\x84\xf4\xb3\x73\xb3\x42\xc6\x89\xd5\x6d\x5f\xf2\x9d\x0f\xe1\x01\xb6\x05\x65\xc0\x3b\x2d\x4d\x4d\x61\xd5\x16\x2a\x11\x3c\x40\x70\xc8\x56\x22\x09\x91\xd5\xa9\x1e\x4e\xc4\x83\xc2\x54\x97\xca\x89\xf4\x40\xa3\x89\x7b\xdc\xa7\x0b\x04\x58\x1f\xc8\x3a\xc0\x75\xb7\x01\xf3\xe1\xf7\x40\x03\x8b\x5e\xcf\xfc\x9e\x51\x19\x0c\x3e\xd6\x23\xe4\x30\x79\xef\xe4\x29\x5b\xdb\xba\x47\x87\xa5\x98\x7d\xc8\xb6\x42\xba\x5a\x3a\x70\x16\x39\x42\x13\xea\x8e\x01\x0b\x48\x84\x07\x93\xf5\x47\xc5\x99\xec\x04\x95\x17\x20\xb3\x9d\x11\x2e\x09\x2b\xf6\xcc\x75\x61\xc8\x9d\xd6\xe8\x65\x60\x54\xaa\x04\x58\x67\xda\x7f\xce\xe5\x9e\x28\x7f\x25\x87\x08\x80\x0d\x96\xca\x90\xfe\xdf\x94\x35\xc3\xfa\xf4\xa4\xa9\x5e\xc9\xb4\xde\x42\xc7\xe8\x39\x12\xaf\x92\x7c\xb9\x61\x74\xa4\x4a\x21\xe0\x4c\x45\xd9\xc2\x8e\x56\x0f\xe6\xed\xc5\xf7\xac\xfd\x5f\x09\xd5\xc3\x4a\x61\x3d\x21\x77\xdc\xa4\x59\x5f\xa4\x26\xa6\x50\x1f\x3a\x3e\x0b\xdb\x79\x21\x46\xd6\xf1\x68\x42\x03\x8f\x9a\xc8\x60\x17\x15\x41\x57\xdf\x01\x28\x9a\xf5\xeb\x13\x24\x64\xef\x65\xb8\xba\x53\x8c\x4b\xf5\x74\xd6\x0f\xc1\x18\xb6\x7e\x8a\xb7\x76\xa2\x65\x94\x5a\x0f\xca\x16\xc1\x0b\x11\x39\x59\x49\x4c\x2a\x68\x0f\x40\x22\x65\x97\x77\x35\x61\xfe\xe1\xb1\xd2\xe3\x7b\x05\x00\x51\x42\x0d\x56\xa2\x8c\x10\x1d\x3c\x55\xba\x15\xfe\xc4\x4f\x1e\x4b\x36\xa2\x73\x86\x1a\x1e\x26\x0b\x8a\xf0\x67\x0e\x85\x25\x38\x18\x06\x92\xfc\xb9\x9a\x92\x5f\x04\xc0\xbb\xb1\xb4\xee\x3c\x34\xd8\xab\xe4\x5b\xaa\xf5\x14\xaf\x9d\x3b\x25\x51\x2b\xb6\xb0\x71\x58\x3f\xfc\x7d\x07\xaa\x74\x99\xc5\x53\x92\x1c\x65\x85\xe9\x18\x1f\xcd\x3a\x3b\xef\x03\x0d\xfb\xa2\x8c\xc8\x9d\x69\x4f\x7d\x74\x57\x58\xd6\x27\xa8\x46\x9b\x47\x86\xf7\xc1\x4c\xbd\xfd\x26\x23\x77\x31\x40\x8e\xb5\x18\x6c\x5f\x5a\x36\xb5\xb5\x6b\x86\xe8\xac\xb6\x46\x26\x39\x7d\x5a\xdd\xb6\xcd\x63\x06\x5a\xca\xa3\x8d\xe2\x44\xc5\xe7\x33\x4a\xbb\xc1\x01\xf5\xe3\x21\x7a\x7b\xd6\x34\x0e\x0d\x3c\xd2\x59\xd0\x53\x9f\x63\xa4\xbb\xdd\x21\xd0\xab\xfc\xd0\xfe\xa8\x54\x55\x21\x58\x07\x96\x27\x02\x9b\x9f\x06\x13\xca\x18\x01\x26\xf1\xea\x0d\x44\xe4\xc0\x81\xe7\x54\x88\x4c\x42\xa1\xea\xc4\xb7\x18\x82\x17\x84\x1e\x2d\xde\xd5\x98\x97\x42\x25\x10\xd4\xe4\xaa\xb8\xe9\x73\x1c\xd6\x56\x9e\x85\x32\xec\x1b\x6c\x7c\x78\xb2\x4a\x79\x8d\x70\x52\x9d\xf0\x91\x6f\x74\x72\x7c\xbe\x33\xc6\x68\x44\x41\x32\x96\xa1\x47\x44\x78\xce\x41\x76\x38\x86\x9c\xee\x7c\xcb\x29\x65\x27\x70\xee\xb6\x4e\xe7\x39\x27\xa4\xe8\xe2\xc0\x52\x01\x0d\x7e\x45\xed\x90\x5b\x40\x50\x9f\x42\x55\xec\xe6\xf3\xde\xe3\xe3\xea\xa2\x9b\x22\x12\xd6\xfa\x9f\xbc\xfc\x01\x8f\x0e\xf6\xb7\x1a\x59\x6d\x55\xa4\xb9\xb9\xbb\xa0\xad\xd8\xbb\x72\xab\x7e\x13\x4a\x05\x97\x2f\x26\x71\x43\x7d\x8f\x8f\xb7\x2c\x37\xcc\xcb\xd5\xe0\x8f\x59\xfd\x12\xcf\x0b\x79\x68\xa0\x76\x92\x39\xb0\x55\x05\xa6\xe1\x62\xe1\xd1\xac\x22\x98\x80\x53\xa4\x9a\x9a\xd6\xa6\x3b\x92\xd8\x83\xcc\x32\x5b\x05\xf0\x39\x3d\x3b\xd6\x65\x93\xd1\x7a\x9b\xa8\xdd\xcd\xb2\x4d\x87\x33\xbd\x65\x91\x31\x9f\x6b\xb3\xbd\xbb\x8a\x8b\xb2\x9b\xab\x0b\xba\xd9\x90\x65\x2f\x7b\xf0\x90\xfe\x23\xd3\x05\x86\x34\xc1\x66\x28\xc1\xf0\x1a\x6c\x22\x91\x02\x1c\xe6\x01\xf5\x3c\x27\x1d\xa1\x0c\x82\xa3\x0f\xf5\x47\xcd\xf1\x13\xb8\x28\x04\x17\x05\x06\xf1\x70\xa1\x27\xf8\xe0\xb8\xb3\x41\x16\x9c\xc5\xb5\xd7\xaa\xd6\xf6\x26\xc3\x8c\xb3\x78\xd4\xaa\x47\x4f\xd6\x66\x81\x43\x3b\xa6\xc3\xc5\x3c\x01\x7d\x61\x95\x89\x06\x25\x3a\xa0\x14\xd4\xa6\x17\x66\x0a\x2c\x81\xc4\xd0\x50\x67\xa3\xb2\x09\x4b\xbd\x85\x71\x2a\x87\x21\x27\x8c\xc0\xc0\x61\xd3\x68\x98\x52\xf3\x35\xc5\xea\x34\xbc\xae\x59\x22\xa1\x27\x1b\xbf\xc7\x88\xef\x64\x68\xb8\x56\xba\xdd\xbb\xd1\xb1\x68\x48\x80\xed\x27\x0d\x64\x8e\xd6\xd6\x04\xe6\x98\x94\xe5\x32\xfa\x70\x13\xd1\x71\xf6\x7f\x6c\x57\x7e\x76\x72\x23\x40\x5b\x50\x0e\x98\x87\xc2\x91\x0b\xcd\xf1\xd8\x0b\xfd\x62\x95\xe3\x67\x23\x5a\x73\x50\xdd\xe8\xb8\x89\x9b\x3f\x39\x09\xa1\x52\x9d\xb5\x62\x40\xfb\xc0\x53\x87\xd0\x97\xc3\x5f\x80\x13\x72\xa7\xaf\x1a\xb5\x8e\x33\x4e\x6b\x3a\x4c\x5e\xbb\xbb\xe2\xcb\x5c\x47\x15\x53\x41\xc1\x57\x63\x82\xf6\xae\x99\x2d\xf8\x87\x4a\xb6\xac\xf8\xee\xc2\x8a\x90\x08\x2a\xac\xbe\xc4\x12\x09\x07\x52\x17\xb6\xa2\x99\x6b\x4c\xbe\x58\x3c\xe4\x61\xd6\xd5\xf8\x11\x01\x1e\x73\x51\x08\xdc\xa2\xe6\x89\x36\x15\x1b\x4c\xf0\x52\x1e\x40\xa3\xb7\xdf\xcb\x92\x29\x45\x86\x9f\x02\x60\xc9\x34\xfc\x02\x67\xcc\xd4\x33\xac\x71\x35\x4f\x4d\x25\xf5\x92\x34\xc3\x08\xd7\x85\x03\x7c\x96\x61\x47\x25\x73\x06\xc8\x89\x75\x68\x43\xb1\x4b\xaa\x6f\x79\xab\x60\x47\x81\x48\xbc\x32\x21\x10\x67\xb5\xc4\xf9\xbd\xbc\x50\x45\xb2\xf1\x0e\x15\x5a\x3f\xf3\xa2\x6e\xda\x00\x45\x5b\xbe\xf2\xcc\xda\x56\xa9\x26\x1f\xce\xcd\xd8\x04\x55\x41\x9e\x62\x40\x32\x1e\x5a\x75\x89\xaf\xec\x1f\xd0\xf4\x83\x2f\x18\x71\xb5\xd9\x96\x1a\x54\xb7\xa9\x71\xfa\x71\xb6\x61\x3a\x47\xea\x32\xa6\x51\x26\xc3\xa8\x1e\xb2\xf5\x22\x21\x47\x17\x29\x11\x09\xb5\xec\xcb\x6e\x2c\xa8\x13\x48\x7a\x20\xb9\xf1\x49\x7b\x6d\x42\x93\xab\x24\x14\x52\xb0\x36\x13\x59\x10\x76\xe7\xc5\x26\xe8\x40\x66\x24\xb1\x09\x5d\xbc\xd5\x4c\x8a\xa4\xf2\x4c\x95\x2b\xbb\x12\xbb\x4f\x6d\x52\x52\x58\x0a\xd1\x06\xc5\x2f\xbd\xaf\x28\x90\x70\x46\x5b\xc7\x09\xb2\xd4\xe1\xe3\x86\x82\x7c\x55\xc7\xe0\xf2\x09\x14\x34\xa3\x86\xc9\x0e\xe5\xcd\xad\x1e\x46\xfd\x86\x03\xa8\x16\x29\x0d\x68\x05\xbb\xc4\x80\x1d\xc1\x1f\x14\x8e\x0c\x0d\x4f\xf0\x62\x2a\x0b\xbc\x04\x0c\xe4\x18\xc9\x9f\x42\x65\x52\x0c\x0e\xf6\xa9\x9a\x8f\x01\x17\x08\xa4\xe1\x0b\xc2\xde\x96\x82\x49\xe5\x13\xe1\xfe\x44\xa9\x69\x8c\xc1\x80\x60\x12\xa8\x36\xb1\xe2\x0a\x91\x02\xcb\x7c\xba\x2b\x0e\xdb\x0b\xd6\xf4\xd7\x9b\x97\x91\xa7\xb4\x37\x25\xd9\xe5\xd6\xdf\x6b\xfa\x70\x01\x0a\x25\xcb\x18\xef\x96\xb0\x67\x31\xde\x70\x10\x0a\xde\x70\x56\x67\x65\x09\x88\xe8\x5a\x91\xc3\xb8\x9b\x99\x4a\x12\x3b\x08\xb9\x1b\x14\xbd\x1e\x53\xb4\x64\x88\xde\xd2\xc2\xad\xc9\x76\x27\x24\x24\xf2\xdf\x78\x88\x48\x3b\xe9\x92\xf7\x57\xa0\x5c\x06\x2e\xa0\x30\xbf\x30\x1d\x4d\x32\x8c\xbc\xb9\xb1\x91\x21\x5e\x22\x24\x4a\x8b\x94\xf0\xc5\x04\x72\xf4\x30\x5b\xd7\xf9\x87\xea\x67\x53\x22\x51\x0a\x6d\xad\xdd\x6d\x93\xe3\x48\xa6\x11\xac\x54\x7e\x93\x47\xee\x40\xa8\x11\x28\x0f\xb7\x08\x20\x73\x3b\xd1\x8b\xae\x0b\xc5\x6a\x0e\x14\x0b\xbb\x7a\x06\x2e\x34\xa9\x0a\x25\x14\x35\x4a\x7b\xb6\x46\xe7\x6d\xb0\x71\xd3\xa3\x20\xd1\xcb\x7c\x15\xda\xd0\xd3\x24\x14\x14\x21\x4e\xb8\x22\x61\x52\xd5\x64\x09\x0a\x32\xe3\x43\x83\xd8\x75\x81\x8e\x94\xe3\x4f\xc9\xde\x28\x36\xd7\x78\x87\xa4\xd4\x4e\x8b\x4e\x5c\xc7\x6e\xf7\x33\xd0\x58\x98\x45\x2b\x1e\xd0\xe2\x25\xf9\x9c\xc0\xc2\x24\xd0\x85\xb3\x9a\x91\x71\xd4\x13\x7d\xe1\xcf\x87\xab\x1b\xa6\x8a\x24\x71\xee\x7a\x73\x58\xfa\x62\x39\x98\xd3\xc0\x04\x0f\xc2\xdb\x0f\x06\xb2\x76\x4a\xfc\xee\xdb\x11\x39\x5a\xd8\x3c\x59\x42\xe7\x52\x09\x15\xe5\xce\xfa\x4a\x64\x29\x8e\xbd\xf7\x90\xbe\xb4\xfa\x12\x11\x65\x93\xb2\x60\x10\x28\xb5\xde\xb1\x13\x76\x90\x7d\x37\x08\x13\xa1\x42\x87\x06\xb0\x45\x4c\x9a\x05\x95\xdf\x41\xa6\xa2\xec\x92\x5b\xf0\xe3\x39\x58\x89\x8d\x01\x95\x27\x95\x5e\x60\x54\x03\x2f\x4d\x24\xbd\x39\x29\x95\xe8\x20\x99\x2d\xf9\x66\x0e\x25\xed\x26\xe1\x9e\xf9\xc3\x84\xf0\xc6\x93\x43\x32\xa3\xe4\xd6\x98\xb1\x24\xf0\x35\xa9\xaf\x24\x3e\x58\x32\xcc\x4a\x50\xe1\x8a\x35\xc8\x89\x47\xba\xb2\x93\x24\x1e\x73\x7a\x11\x14\x68\xc6\x10\x0d\x98\xa2\x92\x53\x5b\x69\xf1\x25\x43\xd8\x84\x22\x6d\x6f\xcd\xd8\x88\xc1\x58\xdf\x35\xea\xf5\x78\xe5\xd1\xd9\xe1\x35\x84\x15\x14\x31\xae\xe6\x56\xde\xa6\x62\x5a\x3b\x95\x73\x57\x81\xa9\xa5\xa5\xfe\x12\xff\x31\x04\x78\x90\xfc\x40\xef\x22\xd0\x78\x59\x64\x4d\x12\xc9\x6d\xd1\x88\xcf\xa9\x60\xb2\x88\x52\xb9\x4b\x00\x83\x52\x5a\xb6\x94\x56\xfa\x14\x00\x71\x46\xfe\x8b\x09\xb0\x98\x36\x43\x7d\x79\x1c\x73\x3f\x51\x3f\xf6\x2a\xa9\x84\x7c\x9c\x60\xe0\xe2\x3d\xc0\xb4\x71\x19\x59\x3d\x36\xed\x1c\xf8\x13\xf8\x55\x14\xa6\xdd\x9b\x77\x7e\x2b\x05\x88\xf8\x2b\x0f\x00\x21\xf2\x29\x0c\x02\xc5\x8a\xde\xb5\x92\x4e\xa1\x20\xa3\x86\x67\x29\xca\x04\x18\x19\xad\x51\x4b\x66\xb4\xde\x9a\xc6\x53\xc3\x96\x02\x00\xc2\xa9\x6c\x87\x4a\x40\xcb\xc0\x46\x50\xea\xe7\x96\x4b\x2f\x6a\xcc\x72\x3f\x19\x24\x3a\x5d\x20\xdf\xf1\x8a\x74\x9c\xf3\xa9\x74\xa2\xfc\xae\x66\x2d\x03\x30\xb5\x74\x38\xa8\x29\xd1\x20\xed\x0d\x16\x58\x5b\x39\x30\xf9\x0f\x98\x9b\xc6\xf0\x86\xf1\xef\x98\x2b\x11\x0c\x5c\x15\x88\x5c\xf0\x8a\x4a\xf5\x45\x67\x74\x52\x9a\xeb\x4a\x81\x08\xd2\x29\x7c\xb4\xef\xe7\xd0\x83\xf1\x1f\x32\x35\x8d\xa0\x00\xf4\x62\xe0\xc1\xd3\x18\xe2\x1f\xa4\xbc\x8e\xb4\x15\x8c\xac\x80\x78\xe0\x69\xfb\xa2\x89\x06\xf3\x7a\x1a\x83\x82\x55\x18\x1c\xcc\x7a\xae\xb5\x2b\x14\x53\x37\x8a\x91\xd4\xc0\x3d\x2d\xf3\xbf\x64\xb7\xd6\x00\x5a\x7c\x79\x2b\x5d\x9c\x65\xf5\x42\x84\x2f\x94\x5f\xf2\xdb\x8d\x16\xda\xf5\x19\x76\xa3\xc2\x6c\xea\x67\x12\xf6\x11\xcd\x8a\xab\xd8\xaf\xd5\x8a\xe9\x91\x94\x0f\x82\x6e\xa7\xb0\x26\x82\x1d\xbe\x68\x42\xe3\x9c\xd3\x14\x08\x36\x4e\xcb\xa6\x57\x00\xe7\x81\x72\xb6\x82\x43\x79\x26\xca\xe4\xb8\x84\xa1\x68\xcd\x9d\xa9\x86\xa5\x01\x1a\x40\xcb\x56\x03\x4c\xed\xcb\x10\x19\x0d\xd2\x83\xb9\x43\xe0\x94\x16\x7a\x51\x72\xc9\xb1\xfe\x75\x6c\xdf\x4b\x44\x06\x75\xa1\x3b\x6b\x4c\x55\xf9\xed\x24\x61\xd5\xa7\xf8\x56\xb4\x82\x6f\x3f\xdd\x3c\x0a\x4b\x1e\x19\x0b\x1c\xb8\x91\xa2\x9d\x06\xba\xd9\xca\xfe\x42\x46\x75\x49\x4d\xaa\x68\xcb\xf0\x9c\x0a\x94\xbd\x48\xf7\x32\x6e\x5b\x73\x06\x1e\xc7\xb2\x34\x3e\x3a\x21\x5a\xc8\x95\xd2\xdb\xed\x6e\x34\x98\x2c\x61\xa1\x48\xc1\x0a\x2f\x96\x20\x9a\x75\x27\x86\x39\x81\x52\x86\x01\xea\x62\x8b\x8c\x51\xbe\x05\x2a\x27\xa4\xd4\x73\x1b\x83\xdd\xe9\x69\x51\xfa\x18\x8f\xc8\x11\x4d\x71\x56\x6a\x12\x19\xf5\x09\x40\x7f\x03\xe6\x99\x23\x5f\x6b\xef\xd3\x93\xf2\xa9\xe0\xa1\x4f\x05\xe5\xf5\x83\x26\x55\x9f\x8e\x12\x0a\xb4\xc9\x96\x4a\x14\x63\xb6\xcf\x6e\x39\x76\xb8\x47\x0e\xb8\x18\x8e\xc2\x02\x01\x65\xad\x12\xae\xca\x2c\xcd\xb4\xfa\x40\x58\x78\x32\x55\x2a\xca\x32\x3d\xf3\xce\x48\xcc\x0b\xb7\xc2\x9b\x4c\x06\x12\x0a\x7b\x47\x90\x11\x10\xdb\x59\xfe\x8a\xf6\x17\x31\x01\x54\x60\x53\x43\xa1\xc1\x2c\x4d\xea\xa5\x94\x2d\x10\x6b\x68\xdc\x13\x62\x28\xca\x2f\x28\xaa\x6c\x2d\x91\x02\xe2\xb2\x01\x47\x74\xdd\xa7\x5b\xac\xc2\x25\xe2\x15\xa6\x75\x5f\xa6\x64\x34\x2d\xae\x5b\x3c\x0c\x32\x94\x71\x1a\x80\x8f\x33\x72\x61\x46\x5c\x68\x4f\x31\x48\x52\x83\xbe\x3d\x23\x18\x2b\xf9\x41\x78\xda\xdc\xf9\x8e\x79\xaf\x27\xd1\x5e\xef\x05\xa3\xca\xf3\x1b\xb8\xad\xe5\x1b\xb5\xe5\x6d\x22\xc9\x03\x80\x05\xee\x14\xc3\xba\x32\x15\x9e\x38\x1f\x05\xcc\x15\xf8\x83\x4a\xf6\x7a\xd8\xd5\xb9\x54\xe5\x0d\xe5\x0b\x29\x5a\x39\x25\x7d\x94\xd4\x53\x51\x84\x57\xe0\x0b\xad\x7b\xbc\xa4\xb3\x0c\xd9\x45\xd0\x65\xd8\x23\xf9\xd4\xb4\x80\xb1\x04\x5a\x9a\xca\x45\xb5\xe1\x37\x08\x19\xca\x99\x7e\x16\x42\xfc\x33\xd5\x34\x81\x21\xca\xc5\x41\xef\x64\xe4\x8a\x78\xc7\x51\xc0\x8d\x3c\x16\x91\x97\x6a\x47\x31\x83\xf0\x73\x96\xa5\x16\x2d\xbe\xdd\x48\xd0\x1c\xec\x61\x22\x38\x26\x1c\xdc\x91\xa2\xa4\x89\x26\x16\xa9\xe7\x08\x52\xdd\x61\x82\x3a\xa1\x5e\x35\x04\x38\xe0\x2c\x06\x8f\x71\x48\x29\xc0\xdb\x76\x6b\xb4\x2a\x0a\xab\x5f\x3b\x2f\x20\x2a\x20\x6a\x48\xb7\x30\xb2\x58\x1e\x07\xa6\x63\x10\xa6\x7b\x20\x35\xc1\x00\x7d\x77\x4c\x6c\xc6\xf0\xd4\x6c\xe6\xd8\x69\xdd\xcf\xed\xb0\x7b\x3e\x43\xe4\xd2\x93\x44\xc1\xa4\x81\x39\x64\xdd\x44\xd7\x30\x38\x0b\x39\x3a\x23\x61\x67\x75\x17\xd8\x0a\x79\x76\xd0\x8c\xdf\x1d\x00\xb5\x58\xd5\x82\x57\xd9\x0e\x51\x85\xf8\x39\x40\xa7\xbe\x8c\xdb\x52\x74\xec\x62\xc4\x04\x8d\x79\x2a\x3a\x2f\x1c\x84\xd4\x51\x32\x91\x2c\x14\x15\x88\xe4\xf0\x46\xc2\x34\x79\x49\xa7\x85\x70\xc3\x1a\x59\x9b\x0f\xff\x2c\xb5\x5b\xc5\x26\xbb\x1f\xa6\xda\x6b\xac\xe4\x58\x70\x53\x6e\x8c\x3f\x6a\x4c\x0b\x6b\x43\x82\x8f\x52\x92\x64\xd7\xa1\x30\x6e\xf7\x8d\x9c\xf0\x74\xa3\x4d\xe0\x8d\xfc\x89\xb2\x30\x1d\xbc\xbd\x21\x42\x28\x6a\x46\x6e\xf4\x87\x26\x84\xce\x09\xda\xba\xf7\x34\xac\x4a\x4c\xb9\x0a\x0d\x08\x7b\x2d\xb2\x16\xc2\xb5\x81\x3a\xaa\x16\xe1\xa3\xe9\x81\x6c\xc1\xc0\xcb\x30\x77\x80\x9b\x03\x19\xe8\xed\x41\xd2\x94\x49\x37\x65\x58\x3d\xc1\x2e\x19\xbd\x99\x6b\x13\x77\xa2\x33\x04\x94\x4a\xdc\xc4\xd8\x94\x41\xbb\x4d\x14\xac\xd4\x23\x58\xc5\xbb\xbf\x34\x29\x3e\x34\x80\x85\x9d\x17\x82\xd7\xc2\xaa\x12\x1e\x3e\x24\x13\x83\x3c\xad\xd8\x66\x08\xfb\x81\x7e\x57\x23\xaf\x39\xd8\xc9\xaa\x70\xf1\x01\x11\x1b\xd7\x25\x40\xfc\x60\x65\x14\x39\x09\x5e\xe4\xfc\xaf\xf3\x23\xae\x2d\x41\x1c\x44\xc1\xa8\x02\x75\xe9\x7c\x7a\x15\x65\x42\xe7\x64\xb1\x0b\x86\xbf\x68\x4a\x9b\x50\x9b\xa8\xca\x0b\xbc\x3f\x88\x22\xac\x0e\xb5\xdb\x6d\x51\x3e\x1b\x02\xf8\x63\xea\xb8\x50\xcd\xdf\x0d\xd1\xbd\xa2\x35\xfd\x30\xfc\x39\x77\xdf\x59\xeb\x68\x64\xbd\xcb\x90\x03\x31\x1b\xfc\x22\xcc\x22\x50\x0b\x5c\x3a\x6d\xe7\xb8\xec\x58\x68\x6b\x5d\x39\x82\x7b\x15\x9e\x5e\xce\x11\x1c\x28\xf6\x32\xb3\x61\x10\x39\xe7\xb1\xc2\x3c\x05\x88\xbf\xf9\xe7\x14\x9f\x05\xfb\x47\x19\x12\x2c\x54\x31\x5d\xf5\x82\xf4\x9f\xe5\xe3\x94\xca\xb7\x05\x63\x92\x3f\xb2\xc1\x63\x23\x28\xce\x94\x4f\x9f\x47\x0d\xc2\x36\x53\x49\xa1\x86\xf4\xe6\x84\xc5\x5d\x83\xdb\xb1\xbc\x8b\x04\xa7\x39\x52\xb8\x8c\x65\x95\x3c\x67\x60\x61\x61\x4d\xef\x08\xd3\x73\xe0\x02\xbc\x44\xa9\x31\x71\x9f\x33\x36\x59\x69\x3c\x10\x22\x2f\x56\xe0\xee\xd2\x02\x99\x45\x0e\x99\xb6\x92\x00\xe0\x12\x77\x00\xc0\x93\x1f\x6f\x10\x87\x9b\x4c\xac\x91\x92\x24\x33\xcd\x7d\x03\x55\x0c\x2b\x55\xd5\x2c\x0b\x24\x9f\xbb\x77\x9a\xb3\x88\x69\xaf\xa1\x16\x13\x93\x6f\x24\x80\xe2\x50\xa3\xbf\xa5\x13\x5b\x42\x20\x1a\x5c\x20\x5b\x8a\x14\x35\x04\x8f\x27\x2c\xf6\x20\x05\x89\x7d\xf1\xc0\x0a\x11\x2c\x25\x5f\x17\x2a\x00\x30\x9c\xcc\xed\x43\xbb\x74\xbc\xfe\xa5\xba\x2a\x9e\x61\xa2\xad\x96\x55\xef\xcd\x19\xc0\x27\x59\xbd\xf8\x6b\x17\xbf\x10\x02\xfc\xc5\xb3\x59\xa9\xab\xa8\xaf\xa0\xd4\x9d\x21\xac\x77\xbd\x9c\x9f\x9a\x49\xf6\x8d\xe6\xb3\x2c\x72\x65\x6f\x24\x02\xf2\xaf\xef\xbb\xb6\x0a\xac\xe8\xd8\xbe\x8a\xf5\x98\x4a\xc1\xbc\xd6\x73\x87\x9f\x51\xe5\x44\x82\x86\x75\x8d\xcd\x15\x97\x1b\x34\x1d\x1d\x82\x23\x47\x0c\x2b\x7a\xe9\x97\xfd\x2a\x2a\x38\xaf\xd3\x87\xf8\xbf\xeb\xd0\x15\x08\x34\xf3\x6b\xb8\xc2\xe8\x36\x19\x47\x6e\x18\x91\xf4\x32\x40\xde\xbe\xd5\x05\x0a\xb4\x7a\x39\x60\x01\xe8\x28\x3e\xc9\xa3\xd0\x36\x57\x7b\x4e\x64\x57\x53\x5d\x3e\x33\x72\xd1\xbc\xd5\x5e\x86\x25\x86\xf5\x0f\xc3\x7c\xd2\x2b\x38\x0b\x1d\x56\xe7\x8e\x41\x60\x40\xd7\x12\x67\x22\x90\xde\xbc\xb3\x30\x48\x68\x3a\x55\x1c\x2f\xd5\x8e\x12\x6e\x8c\x45\xed\x4f\xc1\xe4\xe2\x14\x6e\xab\xf9\x33\x32\x30\x14\x45\xe3\x1a\x0f\x6a\x8e\xa3\x79\x0b\x8e\xc9\x15\x80\x4f\x4f\x70\xc2\x51\xb3\xa8\xf0\xc5\x95\x60\x63\x64\x4d\xfd\x27\x5c\x51\x34\x48\xeb\x4a\x05\x54\x85\x55\xd6\xe6\x94\x9b\x58\xb3\xe5\xaa\xa9\x11\x0e\x41\x12\xde\x9c\xe2\x94\xed\x35\x62\xd0\xb8\xc1\x98\x2a\xb5\xa9\x69\x5e\xb4\x34\x32\x66\xa2\x18\x2c\xaa\x21\x9d\x90\xe3\x34\xc5\xa4\xad\x45\x8e\xcf\x64\xe4\x45\x81\xf9\xc5\x66\x81\x45\xc0\x0c\x60\x03\xc3\x6e\x57\xc6\x86\x21\x13\x1c\x5c\x77\x30\x05\x8c\xf8\x8b\x89\x70\x1b\xc8\x60\xc8\x25\xb7\xb3\xbc\x28\xf6\x7a\xaa\x00\xbb\x95\x5c\x79\x63\xb5\x9b\xd6\xde\xc5\x64\x45\xc5\x50\xc1\x09\x8f\x14\xb8\x63\x11\x5d\xf8\x66\x57\x8d\x3d\x9a\xf3\x9b\x08\x2e\xaa\xed\x16\x56\x96\x4d\x03\xbe\x46\xbc\x38\x96\x44\x16\xc0\x7c\xb2\x5d\x96\x84\x09\x18\x71\xeb\xca\x41\x8e\xce\xb3\x04\xd8\xb7\x43\x75\x81\x98\x0f\x80\xb7\xd7\x02\x7d\x0b\xcc\xd1\xdc\x22\x26\x17\x2e\xe5\x50\xd3\x89\x2a\x7c\x5b\x51\x0e\x11\x81\x1b\x86\x98\x5f\x8b\xf0\x91\x1e\x8b\xb0\xf2\x3b\x16\x8c\xa1\x1b\x94\x18\x7f\x5c\xd2\xd0\x23\xc8\x3e\x82\xc1\x96\xc1\xd1\x45\xc4\xe5\x82\x14\x2f\x44\x96\x7a\x90\x35\x10\x94\x43\x32\xf6\x23\x83\x45\x66\xaa\xc5\xa9\xb6\xdc\x35\xa4\x77\x72\x6f\x61\x58\x76\x0b\x49\x0f\xbc\x11\xcb\x55\x51\x14\xad\x98\x90\xab\x9e\x9b\xd1\x19\x5d\x0d\x43\x1d\x46\x06\xf5\x12\x31\xef\xb5\x4c\xe3\x89\x58\xf7\xb0\x48\x15\x83\x1f\xd4\xae\x61\x3a\xf9\x61\x44\x16\xc0\x63\x15\x21\x98\x71\xb9\x10\xf3\x2b\x9f\x31\xc8\x41\xe5\xad\x25\x53\x45\x5a\x91\x5e\x04\x16\xc8\x48\x25\x1d\x43\xfe\xf2\xb4\x91\x60\x2d\xf4\xaa\xc9\xc3\xb3\xfc\xa0\xd6\x9e\xe9\x1c\x97\x2f\x4b\x2b\xd6\x78\xaf\x68\x01\xb9\x60\x88\x08\x1a\xba\xf3\xa0\x91\xd5\x17\x96\xc5\xa0\x1f\x79\x8d\xb9\xc6\x84\x76\x71\xba\x37\x20\x5d\xe4\xfe\xab\x1a\xec\x56\x99\xda\xa1\xe1\xd8\xbd\x3e\x18\x4c\xbc\x8b\x77\x00\x2e\xf5\x10\x59\xbb\x93\x7e\xc2\xa6\xc1\xa0\x9b\x02\x96\x78\x67\x8e\x24\x07\x35\x16\xb5\x8d\x66\x71\x1d\x39\x48\xb0\x47\x0d\xe5\xf4\x78\x64\x8a\xa9\xee\xda\x8f\xca\xb9\x80\x5a\x70\x62\xbf\x60\x2d\xe5\x82\x88\x01\x95\x98\x10\x84\xc5\x45\x49\x34\xa5\xa3\x2f\xba\xc8\x1f\x01\x7c\x88\x57\xe2\x76\x3e\x21\x18\xbd\xef\x7a\xb6\x6b\xf0\x5d\x54\x82\xf8\x31\x5a\x8d\xfe\x6b\x19\x38\xcc\x49\xb1\x41\x95\xd7\x8c\x8a\x3d\x38\x1a\xbc\x56\xeb\x96\x1e\x32\x81\x55\xbe\x71\x32\x5e\x1d\xc4\xbe\x8e\xdb\xfe\xd8\x8e\xce\xe0\xdf\x0b\x07\x90\xbc\x9d\x8e\x38\x20\xe2\x8a\xde\x0b\x04\x7c\xba\x8a\x12\x2e\x9c\xa7\x72\x69\xd6\xc0\x1f\x86\xcb\x9c\x22\x85\x88\x49\x81\x71\x8c\x63\x22\xbf\x95\xa0\x8b\x3f\x5b\x0c\xdf\xd3\x8e\x2c\x23\x03\x6a\xc2\x16\xb6\x39\x00\xab\xea\xbb\x47\x92\xf0\x92\xb4\x90\x94\xad\x43\xbb\xae\x59\x8c\xaa\xb8\xd4\xd3\xc2\x80\x53\x31\x85\x7e\x09\x2f\xba\xec\x1c\x68\xa6\x2b\xe3\x25\x9c\xba\x70\x15\x6c\x8d\xb0\x78\x21\x6e\xee\x0f\x85\x40\x38\x2a\xd5\x38\x50\x20\x22\x42\x13\x0c\x8e\x32\x3c\x08\x32\x8c\x00\x44\x31\x00\x69\x55\x81\x84\x0d\x37\x08\x40\x64\x99\xd6\xc5\x44\xba\x60\xd5\x14\x30\x76\x21\xc5\xfc\x9b\x0b\x3d\x70\x05\x34\x66\xe9\x35\xa4\x59\x30\x12\x37\x96\xad\xad\x73\x95\x0f\xd0\x96\xc5\x55\x94\x3c\x24\x0c\xa6\xa2\xec\xfc\x46\x37\x51\x2c\x86\x58\x28\xbd\x41\xce\xad\xdb\x5d\xd7\xec\xf9\x70\xf3\xd0\x39\x80\x27\x82\x7c\x4f\x1a\x0a\x74\xf0\xc8\x48\x64\x5b\x31\xfb\xbf\x27\xcf\xe4\xf3\xbc\xee\xe4\xec\x41\xba\xa4\x22\x5f\x49\x4b\x14\x01\xf9\xef\x6e\x07\x95\x96\x41\x96\x01\x79\xff\xea\x30\xe4\x5e\x31\x20\xc3\xba\xf4\x6b\xc5\x8a\x30\x22\xbf\x15\x73\x64\x7d\xdc\xce\xa9\x14\x10\x33\x64\xf3\x8f\x5a\x2f\x73\x4d\xe2\xcb\x83\x61\xd2\x84\x29\x5d\xf0\xe5\x02\x8b\x93\x20\x2f\xe4\x3f\xcc\xf9\xd9\xbb\x67\x42\x5a\xe3\x56\x5f\x76\x97\x21\x09\x6d\xeb\x1e\x8a\x0c\xe7\x02\x97\x4e\x51\x68\x1a\xd2\x89\x9c\xe1\xd1\xa4\x75\xf1\x17\x11\x09\xf5\xc7\xcd\xb6\xbd\x1e\x92\x7c\xbf\x2d\xa4\x83\x26\x4d\xbc\x9c\xa6\x47\x24\xfc\x63\x5d\xf0\x14\xe6\x74\x04\x4f\x66\xfd\x83\x4c\xb1\xe4\xf1\x36\x61\x8f\xc2\xe1\x12\xc5\xa9\x30\x6e\xa6\x06\x62\x00\xd6\x69\xd8\x09\x77\x45\xf9\xf3\xb3\x66\xd3\x2a\xe1\x28\x30\x69\x86\x53\xc2\x05\xfb\x78\x54\x64\x02\x08\x19\x00\xa1\xd5\xe3\x77\x69\xe8\x93\xaf\x0b\x2d\x85\x63\x9b\xcd\x51\x2c\xaa\x28\x2c\x44\x79\x04\xb1\x12\xaf\xa6\x51\x59\x97\x64\xb2\x31\x3a\xf2\x46\x00\x2b\xd8\x95\x2d\x21\x3a\xf0\x46\xc4\x7c\xea\x04\x31\xa1\x5e\x36\x71\x19\x75\x93\x39\xe3\x08\xfe\x20\x19\xd0\x51\xdd\xcf\x53\x27\x79\xed\x4a\x48\x09\x5d\x09\x9d\x84\xb8\xac\xa8\x57\xce\x71\x37\xf9\xb0\xcd\x7b\xb0\xb7\x0d\x02\x2d\xcc\x4f\xb5\x01\xd6\xbc\x2d\xac\x98\xc7\xb6\xe9\xe8\x30\xed\x2f\x16\x94\xd5\xba\xbc\xeb\xa3\x04\x42\xbc\x94\x7b\xc5\xd1\x90\x5e\xcc\xe2\x90\x1f\x6a\xdd\x5c\x69\xf3\xfa\x87\xe0\xcb\x2f\xc5\x8b\x60\xa4\xcf\xdd\xfd\xa9\x38\x22\x40\x80\xb9\x92\x9f\xc6\x2a\x79\x74\x92\x70\x3a\x4c\x7b\x73\x99\x45\xfa\x26\xfd\x23\x67\xf2\x2d\x4a\x0d\x2d\xa3\x1f\x24\xec\xc2\x6d\xc7\xee\xb7\xd4\x4a\x1c\x5d\x72\x8c\x17\x7e\x9f\x5e\x71\x6f\x0a\x23\xe1\xcb\xa2\x6b\xcc\xe9\x28\x53\xf2\xd4\x83\x1a\x3c\xc4\x16\x05\xc7\xc4\xea\x52\x6c\xa1\x8a\xb5\xad\x38\x04\x91\x60\x05\xe4\x0a\xc1\x2a\x78\xf6\x11\xf4\x0b\xd6\xe1\x10\xaa\x22\x54\xac\xae\x9c\xa7\x39\x58\x5d\x47\xc8\x03\xa5\x09\x0c\x32\x35\x34\xdb\xbe\x0a\x22\x19\xee\x44\xda\x8e\xcd\x34\x04\x1d\xc6\x5c\x34\x35\x19\x80\x1e\x41\x2c\xfd\x42\x12\x33\xf2\x8e\x22\x30\x59\xf1\x43\x9f\x72\x80\x6c\x6c\xeb\x3c\x86\xda\xfa\xfd\xad\xb1\x11\x58\x82\x7f\x8c\xdb\x2c\x66\x87\x9f\xa9\x93\x57\xac\x1d\xf2\x95\xcd\x3b\x24\x71\x48\xc3\xf1\x25\x83\xa2\x18\x45\xc9\x32\x42\xb4\x43\xe4\xf1\x29\x67\x3e\xc8\x4a\xf8\x8d\x92\x38\x70\x2c\xe8\xe8\x65\x46\xb1\x83\x85\x74\xbe\x8d\x17\x76\x98\xf9\xae\xb0\x8f\xbd\x4e\xb1\x54\xe3\xe4\xc5\x81\x2e\x32\xa8\x47\xb6\x4d\x45\x96\xe4\xe3\x26\x22\xf8\x61\xcd\xeb\xb7\x4a\x5f\x44\x07\x6a\xa9\x02\x1e\x3c\x75\x1c\xfa\x93\x28\x74\xea\x1e\x9d\x74\x41\x6f\xff\x08\xbb\xe7\xc0\x1d\xa9\xa5\xf5\x38\x75\xba\x34\x38\x42\xd6\xe4\x15\x7b\xc4\x4d\xe9\x8f\x27\x8b\x23\x21\x33\x70\x25\xb1\xb6\x28\x96\x5b\x2f\x16\xfb\xed\x59\x9e\xa9\xdd\x29\x41\x8e\xff\x6d\x6d\x71\x93\x07\x93\x13\x78\xa9\x41\x0b\x0e\x85\x62\xd3\x74\xa7\x67\x6e\x4c\xf8\xa2\xc9\xf6\x0c\xc0\xb7\xbf\x6b\x96\x7a\x97\x97\xc8\x1a\xa6\xb9\xbf\xff\x23\x48\xb3\x4d\x85\x9c\x01\xfd\x87\xa4\x5e\xda\xc5\x0a\x04\x5e\xc6\x93\xb4\xad\x10\x5c\xd6\x02\x0b\x58\xe4\x6d\xf9\x2c\xe6\x33\x47\x63\x85\xce\xd4\xc1\xb5\x35\x5a\x6e\x99\x29\x2d\x82\x8b\x1f\xcf\xb8\xc6\xbd\x1f\x95\x11\x70\xe6\xb2\xed\xed\x03\x49\xaa\xff\x84\x65\xbf\x61\xde\x77\xc9\x80\x12\x55\x0f\x19\x4e\xd4\xe4\xbb\x49\x2f\x32\xc8\xd6\x83\x65\x6b\xad\xb5\x80\xf7\x17\x6d\x8e\x2b\xbc\x56\x33\xd9\x20\x50\x02\x8e\xba\xf5\xf0\xc2\xd6\xb8\xcc\x0c\x0e\x14\x6b\x64\x4e\xd1\x72\xa3\xfa\xeb\x5d\x0c\x4a\x02\x68\x2a\x4c\x36\xf1\x75\x5f\x46\xa1\x4b\xae\x15\xbc\x8d\xcd\x37\x66\x35\x5a\x30\x62\x60\x80\xcd\x03\x14\x91\x2c\x08\x23\x44\xe6\xe9\x7a\x8f\xb3\x9f\x24\xc8\x93\xc6\x74\x11\xbb\x31\x0e\x2f\xbc\x44\x76\x65\xda\xa1\x9d\x6b\xca\x73\x22\xc2\x89\x46\x7a\xbb\x8e\x84\xb0\x50\x44\xd2\x1a\xd5\x5b\xdd\xc6\x31\xe7\x5c\x84\xb8\xad\xae\x71\xac\x1d\x11\x67\xa2\x11\x21\xd1\xc3\x19\x0e\xc2\xe5\xf3\x48\x65\x0c\x3e\xad\xfe\x17\x74\x9b\x4f\x18\x81\x56\x2c\x72\xa2\x76\xc9\xcc\xe2\x6b\x22\xd1\xbc\xf5\xa3\x6a\x10\x34\x93\xb8\x33\x87\x34\x36\x33\x20\x19\x6d\x51\x95\xb8\xd5\xce\x36\x4f\x1d\x26\x6b\x69\x9b\xdd\x81\x47\x78\x2e\x4c\xc0\xd1\xb8\xa7\xd3\x62\x02\x2e\xe2\xdd\x1b\x1b\xf2\xea\x29\x23\x21\x39\x9c\x60\x62\x1c\x6b\x45\x67\x73\xec\x8f\x59\x39\x36\x07\x5b\x76\x00\xd4\xa4\x61\xd5\xd7\x54\xc7\x6f\xbc\x58\xb1\xa4\x7d\x99\x02\x45\x0f\x23\x07\x3a\xdd\x4f\x10\x60\x40\x2b\x2a\xfe\x87\x65\x39\x69\x0d\xc0\xea\x09\x0a\x45\x94\xe0\x32\x70\xda\xd9\xf0\x67\x1c\xfc\xaa\xe4\x80\x61\x73\x80\xc7\x64\x67\x7c\x93\x96\x54\x87\x93\x32\xab\xb3\x03\x17\x54\xc9\x19\x14\xa7\x2c\x72\xab\x73\xa7\x5a\x72\xc1\x6b\x90\xc7\x0c\x0a\xa2\xab\x07\x05\x4a\xb1\x88\x29\xf8\xf2\x50\x53\x0a\xc4\x1f\x70\x14\x26\x3e\x54\x5c\x8b\x16\xb9\x54\xe1\x7d\x68\x1c\x38\xf8\xb4\xde\x9c\x48\x8a\x19\xa9\xbe\x01\xe6\xcd\x12\x64\xdd\xba\x86\x1d\xba\x3d\x60\x20\x2c\x5d\x42\x56\x64\x9f\x7e\xfc\xb0\x8a\x49\x08\xca\x79\xcd\x0b\xa8\x30\x04\xab\xd8\x6b\x14\x16\x27\xe8\xb0\x4e\xb0\x45\xaf\xbc\xe5\x56\xed\xca\x48\x9d\x3d\xd2\x9d\x7c\x36\x4f\xcd\xc4\x5c\x42\x05\x81\x01\x4b\x96\xd5\xfb\x8c\x23\x00\x96\x1e\xf9\x13\x23\x78\x4d\xc2\x29\xcc\x6c\x44\x3e\xcb\x1e\x15\x17\x70\xd3\x02\x9e\x68\xa9\xa2\xf3\x6e\x2a\x0e\x58\xc5\xc2\xcd\xb8\x09\x1c\x78\x6e\x05\xf3\x20\x79\xc0\x07\x06\x1d\xaa\x06\xab\xa2\x38\xbe\x28\x3d\xe1\xf5\x17\xc9\xb1\xb9\xdc\x4f\xf6\xdd\x48\xdf\xd2\x4e\x02\xbf\x3e\x28\x05\x2e\x34\xc0\x0b\x4e\xea\x20\x1c\x93\x0b\xe0\x77\x57\xac\x77\x03\x79\x2b\x5d\xcc\x32\x2b\x91\xf9\x74\x12\x7b\xbe\x27\x21\x1f\xbb\x90\x8f\x82\x6a\x76\x66\x11\x30\x0a\x1d\x9b\x75\x1c\x0d\x63\x43\x3c\x95\x0d\x6d\x6a\x74\xd5\xb6\xd5\x1e\x1b\x65\xb7\x17\xf5\x27\xcb\xda\x97\x0b\xe9\xab\x78\x03\xa0\xb9\xb0\xe4\xe2\xb2\x22\xaa\x0e\x42\x90\x07\x2b\x22\xe4\xa8\xa0\x31\x00\x54\xde\x64\x95\xea\x36\xc5\xb3\xdb\x28\x20\x85\x5b\x6c\x5a\x45\xa4\x2c\x81\xfe\x2e\x1e\x90\x94\xd1\x33\x37\xec\x78\x61\xd5\x06\xcc\x45\x11\x0c\x0c\x6b\x11\x17\xa7\xe8\x26\x15\x86\x04\xb0\xa7\x54\xc3\x74\xb6\x60\x31\x30\xe8\x7f\x60\x0b\x9a\xc0\x2a\x37\xed\x95\x88\x98\x99\x0c\x20\xf5\x60\xa1\x5d\xd8\xa4\x43\x08\x3e\xd8\x59\xcb\xc5\xb7\x42\xc2\x85\x6e\x0a\xfc\x55\x21\xc9\x2c\x8c\xd8\xbf\x06\x35\xdb\xa2\xf8\x55\xdb\x37\x3d\x26\x6f\x83\x57\x04\xa0\x04\x62\xb6\xe9\x86\x9e\x71\x3e\xc5\x89\x95\xb7\xc8\x26\x43\xac\xe4\xe2\x74\xee\xb1\xb3\x32\x20\xa0\x58\x42\xa2\x1f\xf1\x22\xbb\x73\x4f\xd6\x9a\x95\x95\x77\x46\x45\x45\x14\x76\x23\x64\xb1\x24\xb8\x2e\x64\x44\x10\xff\x0e\xbd\xfe\xc2\x58\x4e\x51\xda\xd2\xb8\x18\x87\x70\x76\x45\x4e\x28\x6c\x4a\xc2\x77\x15\x72\x27\x18\x02\x87\x20\x05\xdd\x24\x51\x56\x01\x4d\xce\xb7\xe6\x31\x80\xa9\xab\x77\xb5\x6b\x8f\xbe\x97\x8b\xca\x74\x7a\xe3\x82\x33\x7f\x0b\x39\xe8\x93\x44\x37\x2d\x89\x47\x29\x11\xcd\x22\x2c\x27\x29\x97\x43\x29\xd5\xf8\x01\xf4\x81\x15\xa9\xc1\x00\x50\xcd\x2b\xa2\x10\xfb\x61\x75\x27\x84\x5d\xf7\xc2\xc0\xd5\x32\xee\x1f\xd5\x42\xda\xe6\x88\x5c\xda\x01\x84\x09\xf5\x7f\x6b\x6f\x7a\xcd\xb5\xb8\x48\x04\x3a\xd4\xeb\x79\x68\xd8\x5e\xc8\xab\x03\xc8\x9b\xba\x0f\x93\xb0\xd4\xb5\x3f\x2e\x46\xd6\x12\x80\xd3\x02\xd1\xe3\xd0\x0f\x8f\x9d\xbb\xf3\x8e\xbf\x64\x92\xef\x52\xa6\x9d\x81\x08\x85\x69\x52\x6f\xd8\xa0\xe6\x5c\xea\x2a\xfc\x94\x3b\xfc\x91\xee\x8e\x3f\x29\xca\x2c\x81\x5a\xa2\x31\x98\x39\x1a\x6b\xef\xb9\x13\xa7\xba\x0f\x0c\x37\x90\x2d\xfd\xe1\x31\x0b\xe4\x8e\xbd\x06\x3a\xbf\x94\x85\x25\x2a\xa9\xb3\x77\x10\x6a\xd8\x7a\x12\x63\x72\xc3\xc0\xc8\x64\xf2\x66\x08\xf4\x9a\xe3\x98\xd2\x73\x3d\x52\x51\xd5\x82\x97\x6c\xb3\x86\x1b\x19\x03\xb2\xac\x4c\xf2\x3d\xfb\x25\xc6\x66\xe4\x1c\x33\xb8\xa5\x80\xa5\x9a\xc3\x12\x36\x09\xad\xfa\xde\x9f\xe5\x87\x2b\x46\xd1\x47\xc1\x87\x6d\x69\x40\x81\x92\xf4\xa8\x41\x94\xc1\x19\x11\x36\xa9\x3e\xd0\x9a\xdc\x0a\x7a\x3e\xaa\x20\x4a\x7b\x11\x2a\xf0\x55\x44\xc1\x57\xec\xae\xc6\xcf\xcb\x24\x0a\xbc\x8c\x00\x97\x35\xa7\x47\xce\x94\xe7\xb5\xb0\xcc\x4d\x65\x9a\x3b\x0f\x08\x8f\x79\xaa\xc2\x82\x37\xfd\xca\xc5\x72\x94\xb0\xaf\x5c\xe5\x72\x1a\x61\x2b\xa2\x42\xdb\x45\xd0\x93\x9f\x9b\xa7\x36\x63\x75\xaa\xd4\x16\x03\x22\xaa\x96\x45\xe8\x4c\x09\xdc\x39\x1e\x6f\x40\xb9\xea\x90\xa8\x6c\x16\x99\x9d\x8a\x7a\x43\x1e\x0a\x58\x3a\xb3\x15\x9e\xb9\xb0\xae\xf6\x68\x03\xb3\x9f\xac\xdd\xb1\x99\x4b\x44\x8a\x33\x80\xbb\xcf\x99\xf2\x47\xc6\xd6\x61\xfa\xc9\x63\x5a\x08\x8b\x68\x23\x58\xc9\xc8\xca\x86\xe2\x66\x4e\x19\xb2\x84\xe9\x28\x34\x9a\x88\xa5\x8a\x06\x63\x1c\xd9\x4f\x77\x53\xb0\xe4\x0a\x63\x23\x24\x02\x3b\x1a\x07\x4c\x1b\xf8\xcd\xec\x83\xb5\x5a\x72\x62\x38\x81\x68\xd5\xee\xca\xae\x7e\xb6\xb6\x7e\x23\xc0\xcc\xac\x62\xe3\xa6\x91\x41\xbe\xcf\xd6\x48\x52\x90\x3a\x57\x68\xf7\x40\x88\xc4\xf7\xb0\x95\x97\xf0\x56\x2c\xef\x77\x25\x63\x88\x43\x15\x26\xac\x9f\x78\x92\xe0\x66\x41\xa4\x65\x28\xf2\x89\x51\xdc\x86\x40\x15\x26\x57\xce\x58\xde\xe1\x22\xbd\x94\x02\x45\x04\x0f\x15\x04\x64\x07\x82\x9c\xf2\x4a\x1c\x8b\xeb\x03\x08\x62\x09\xf0\xb4\x27\x95\x19\x23\xfd\xe7\x34\xc8\xe3\xa6\x80\x0a\x0c\xcb\xaa\xe3\x49\xc9\x12\xd3\xa9\xaf\x0f\x2d\xdb\x85\x5a\xc2\x75\xbe\x8d\x34\xf3\xca\xb5\x45\xee\x59\xf6\xef\x3e\xbf\xde\xa4\xb8\xb0\x50\x83\xff\x78\x05\x01\x51\x03\xcc\xb2\x68\x88\xa1\xb1\x77\x31\x08\xeb\x01\x22\x99\x84\x81\x02\x0e\x1d\xdd\x63\x99\x43\x75\x10\x3a\x4e\x75\xea\xc0\x30\x4b\x31\x83\x37\x19\x5f\x41\x84\x0e\x98\x1f\xd5\x04\xad\x85\xd0\x78\x4b\x0f\x57\x93\x1f\xb7\x42\x63\x1c\x54\x40\x95\xb2\x6e\x51\xdc\x30\x55\x09\x93\x8e\x85\x2f\x50\xc0\x43\xb3\x09\x9c\x77\xb3\x4b\x31\x7b\x67\x02\x65\xd2\x5b\xb5\xae\xee\xfb\x95\xf7\xa3\x22\x7c\xfa\x40\x13\x0b\x59\x6b\x7d\xae\x41\x44\x18\x72\x60\x38\x73\x33\xae\x8e\xd5\x04\x63\xd7\xbd\x8d\x2b\x18\xf3\xe6\x6e\x32\x83\x86\x31\xd2\x1e\xec\xf9\x7f\xce\x5b\x79\x43\xf1\x76\x25\x99\xa0\x02\x12\xbd\xff\x1f\x9c\xfd\x63\xc0\xcd\x2e\x8b\xee\xd2\x90\xf6\x72\x5b\x57\x68\x0a\xdb\xec\xa9\xd4\x0a\xa3\x15\x9b\x5a\x08\xe7\x1e\xa2\xaa\x5e\xd9\x1c\xd9\x5f\xba\x8a\xcb\xdb\xfd\x1f\x2a\x54\x21\xd5\x40\x77\x19\x28\x59\xf9\xc3\xca\x8d\xb6\x89\x9a\x90\x89\x63\x92\x65\x66\x63\xc0\xc0\x57\x92\xc8\x45\x89\xe9\xa1\xd9\x13\xf1\x69\x61\xaa\x82\x88\x4c\x0b\x86\xa3\x5a\xa6\x02\x88\xad\xf0\x90\x44\x82\x47\x5d\x20\x4f\xdf\xc6\xcc\x28\xb3\xd1\xea\x47\x94\xdb\x58\xd2\xb3\x3d\x80\x30\x83\x85\x4f\x47\xad\x87\x5e\xa5\x3f\x40\x24\x30\x17\x69\xea\x62\x1a\x2f\x58\xf4\x87\xc9\x87\x39\x55\xfc\x8b\x13\x7c\x40\x7e\xf7\xed\xd8\xd6\xe8\x63\x81\xcd\x03\x0c\x62\xb0\xcc\xc0\xba\x61\x62\x75\xa4\x4c\x48\x09\x64\xba\x2d\x78\xc5\xc7\x00\x22\x83\xf5\xd8\x48\x84\x8e\x18\x5f\x96\x05\x08\x77\xb5\x52\x5e\x6f\x98\x4a\x91\xf9\x52\x1b\x45\x8b\x08\x1d\x43\x50\xcc\x16\x22\x00\xd4\x3f\x0f\xd3\x85\xae\x82\x92\xa9\xa0\x73\x8b\xc0\xd8\x1a\x09\x02\xb7\x72\xf0\xd2\x48\x05\xaa\xa9\x8a\x13\x08\xb4\x14\xb0\x12\x0d\x13\x01\x58\xf1\x1b\xf8\x2d\xdd\x80\x56\x23\xeb\x47\x3f\xb5\x4c\x0f\x3d\xec\xe5\x8e\x74\x82\xe2\x3e\x75\x39\x8d\x3b\xa8\xbb\x13\x90\xe7\x0a\xb1\xb4\x1a\x3c\xe6\xd3\x29\x60\x1f\xe0\xd0\x0b\x81\x76\xa4\xc7\x1d\x32\x79\xe3\x1c\x69\xc5\xeb\xc5\x00\x4d\xc2\xc4\x84\x30\xfd\x9a\xda\x95\x9b\x23\xb9\xf1\x53\x12\x05\x26\xa6\x99\xa4\x86\x60\xd3\xc2\x1e\xd4\xd4\x48\x26\x1e\x23\xc1\x45\xaf\x4f\xfa\xff\x45\x6c\xf5\x4e\x5e\x7a\xef\xa5\xab\x04\x02\xf3\xf1\xe8\xb1\xb8\xc8\x5b\x72\x38\x3e\xd8\xf4\x2e\x42\x62\x38\xfd\x88\x6c\x0e\xe5\x30\x17\xe1\x9a\x2e\xb7\x19\x11\x1b\x2b\xc1\x4f\x15\x77\xc0\x16\x13\x78\x2b\x32\x28\x40\x98\x29\x23\x70\xee\x49\x38\x26\x98\xba\xf0\xba\xd9\x42\x4a\xf3\x1b\xa4\x74\x47\x7e\x8c\xda\x79\x24\x46\x10\x48\x2f\x12\xa4\x50\x87\x73\xd9\xf0\x25\x8e\x7b\x13\x06\x26\x21\xd6\xe9\xd2\x8c\x8e\xad\xe0\x36\xb0\xea\xe2\x59\x55\x1a\x4b\xdd\xa5\x8e\x20\xaf\xe1\x62\xe1\x11\x74\x79\xe5\x01\xc7\x05\xa6\x08\x4d\x20\x95\x6e\xdc\x50\x16\xab\xba\xeb\x3e\x33\x81\x68\x17\x0a\x0b\x99\xfd\x82\x53\x32\x1d\x4e\x9e\x81\x94\x28\x63\x1d\xe4\xae\xc2\xe5\x6c\x29\x53\x22\xf4\x22\xaf\xe8\x30\xf4\x97\x97\xa1\xf4\x96\xe3\xe8\x9c\x99\x2f\xb6\xeb\x6a\x88\xad\x30\x7a\xe8\x4f\x20\xc2\x5e\x45\x58\xe4\x00\xe8\x34\x39\xb4\xd9\x1e\x42\xa6\xd3\x35\x41\xea\x16\x79\x05\x29\xfc\x2a\x3c\x5f\xd3\xc4\x93\x65\xf5\xfa\xce\x33\x73\xa4\x29\xa1\x48\x00\x19\x60\xde\xf6\xae\xf5\x07\xce\x30\x15\x38\xfa\xf1\x68\x10\xb8\x9e\x2f\x4e\x44\x22\x0f\x67\xa1\xd4\xfd\x58\x6b\xb8\x3f\x15\xfa\x4a\x64\xee\x87\xf0\xe1\x35\x81\x7c\xe2\xc9\xde\x4f\xc5\xf4\x24\x56\xc0\xd4\xc4\x13\x2c\xc3\x70\x12\x6d\xe9\xf4\x5d\x2d\x70\x74\x00\xca\xa5\xea\xe7\xf2\x85\x62\x86\xeb\x1e\x2c\x11\xc6\x62\xa2\x66\x0e\x67\x83\x2c\x69\x32\x52\x84\x6e\x32\x57\x59\xd1\x4e\x1e\x96\x42\x28\xc7\x66\x06\x20\x45\x07\x8a\x17\x96\x63\x21\xd8\xb4\x0d\x5d\xe1\x38\xf2\x35\xe6\xfa\x3f\x3a\x02\xf0\xaa\xa2\x71\x71\x0d\xef\x67\x92\x93\x17\xdd\x4f\xc4\x0f\x8d\xe3\x84\x65\x3c\x10\x4a\x12\x4d\x9d\x86\xf9\xcb\x19\x52\x0d\xc1\x5a\x3b\x62\xc8\xae\x12\x1e\x2a\x27\x5c\x49\x18\x86\x8e\x7e\xba\xa4\x29\x39\x2a\x83\x72\x00\x9f\xfc\x18\xb5\x21\xee\x12\xb2\x88\xa3\x60\x94\x56\x73\x76\xfa\x63\xdb\xa7\x59\x7e\x96\x62\x91\x93\xd7\xb5\x61\x13\x82\xdd\x89\x04\xb1\x36\x83\x80\x91\x86\x4f\xd8\x2f\xd0\xca\x50\x16\xec\xfa\xdb\xf3\x2d\xc2\x9d\x83\xa5\xd9\xf6\xb2\x0f\xcf\x3a\x76\x86\x86\x78\xe2\x85\x35\xac\xc3\x38\x96\x7e\x13\x02\xa1\x97\x7d\x86\xbe\xac\x1d\x01\x47\x69\x2b\x02\xad\x9b\xf3\x46\x70\x5e\xec\xa1\x52\xe5\x2b\x5f\xf8\x29\x2d\x72\xd8\x4e\x00\x86\x26\xe1\x08\xf7\x45\x39\xb9\x05\xe0\x10\x29\x3f\x2d\x4a\xc1\xd7\x36\x4a\xa3\xae\x42\x40\x44\xc2\x91\x5b\x72\x01\x71\x86\x85\x0e\xf0\x1f\x81\xe1\x4d\x69\x43\x1a\xc3\x89\x7d\x54\x7e\x86\x35\xa2\x30\x37\x6a\x99\x72\xbe\x09\x19\xfe\x4a\x30\x44\x7f\x29\xa8\x1b\x94\x92\xdd\x8d\xc9\x4d\xc6\xcd\x5a\x02\x6f\x9d\x50\xc7\x33\xc7\x43\xc2\x56\xd3\xfa\xb9\x86\x4e\x16\xc3\xb2\x13\x4f\x5e\xf6\x77\xd3\x92\x21\xc1\xa3\x1d\xa3\x04\xb0\x14\x55\xa9\x99\x92\x38\xbf\xd6\x0c\x2a\x0b\xc7\xe7\xb7\xc3\xab\xe2\xaa\x7e\x27\x4a\xda\xc9\x9c\xb8\xbc\x5c\x3a\xb4\x23\x68\x44\x05\x4b\xfa\xa7\x23\xb8\x2f\xe5\xba\x0f\xd5\x25\xeb\x95\x25\xea\xca\x50\x31\x34\x25\x2b\xae\xa3\x54\xfd\x96\x09\xaf\x86\x9e\x0c\xc3\xab\x1f\xff\xc8\xad\x0b\xb4\x2a\xde\x5e\x1b\x85\x94\x02\xee\x72\x18\xa9\x6a\x4c\x5f\x5c\x18\x9e\x0f\xa9\xc2\xab\xa4\xfd\x2e\x0b\x53\x96\x0d\xa7\x87\x03\x0b\x1a\x8f\x28\x04\x0d\x07\x0b\xef\x1d\x3b\x51\xa0\xb7\x64\xbe\xb2\x04\x02\x00\x06\xa9\xaf\x95\xe2\x67\xa3\x1a\x3e\x57\x5b\xd0\x25\x16\x53\x9d\x36\x82\xf7\x76\xe6\x7d\xe3\x76\x3f\x63\xee\x14\xd1\x47\x08\xa0\x8d\xc2\x24\x54\x00\xe4\x20\xb7\x78\xb6\xef\xe1\x09\xe8\xf1\xc8\xa8\x16\x60\x31\xaa\xe3\x7c\x45\xe4\x34\x63\x04\x10\xa1\xf9\x45\xe8\xb5\xac\xa9\x8c\x4d\x4c\xfb\xe8\x91\x91\xa5\xf5\xe8\xa2\x8b\x82\xcd\x7a\x21\xc2\x1a\x07\xd5\x24\xc6\x74\xdc\x5c\xde\x03\xab\x72\x09\x6a\x55\xa3\x8f\x40\x6d\xd4\x7e\x41\x11\x65\xf6\x03\x84\x38\x9a\x9e\x88\xef\x44\x71\xf2\xf9\x51\x25\xed\x89\x28\x82\xf7\xd3\x0e\xc8\x6a\x4f\x08\x27\x02\xa5\xa0\x00\x2a\xaf\x03\xa4\xac\x6e\x4f\x65\x83\x9e\x17\x00\xce\xfd\x5a\xa3\x19\x11\xbe\xfb\x5b\x33\xce\x0b\x52\xe0\x3e\x53\xd9\x16\x15\xc9\x32\xca\xfa\xab\x03\x90\xb7\x09\x3f\xaf\x17\xab\xd2\xa5\xdf\x7c\x64\xa8\x70\xf0\x57\xfb\x29\xd1\xb1\x04\x90\x2a\x6e\xe3\x53\x95\xa9\x61\xc1\xc9\xeb\x72\xa7\xa0\xf0\x3c\x80\xef\xf2\x02\xc3\xa9\x5a\x60\x63\x07\x40\x9e\x4a\xaf\x78\x54\x59\x42\x03\x18\x17\x72\x95\xc1\xf6\xa4\xd8\xef\x0a\x8b\x3f\xa5\xc4\x28\xb5\x77\x54\x59\x4d\x12\x7c\x8c\x76\x4d\x36\xa4\xf2\x21\x2c\x71\xba\x10\x04\x60\x33\xdc\x37\x7d\x85\x51\xfd\xf0\x61\x79\xfd\xff\xe0\x2a\x6e\xde\x70\x83\x5a\xad\xe4\x94\xdd\x99\x02\xd6\xa6\x25\xc0\x24\xcf\xd5\x66\xa2\xfa\x93\xe5\x3d\xae\x48\x8b\xc1\x8d\x85\x93\x85\xdf\x71\xab\x4c\xe5\x93\x7d\xc8\x93\x46\x3a\xde\x9c\xf5\x90\x22\x67\xc5\xe5\x2b\x9e\xfd\xd2\x41\xc5\x58\xd5\x1c\x44\x06\xe0\x69\xba\xd2\xcb\xf4\x14\x1c\xff\x39\x7f\xa7\x25\x9f\x50\x43\xe9\xa9\xa9\xf1\x7e\xe3\x37\x99\x37\x22\x11\x41\x8d\x12\x1e\x65\x3e\x2b\x41\xb9\x4c\x88\xa5\xe4\xbe\x02\x60\x40\x7c\xad\xe2\x00\x5e\x59\x90\x3b\x1c\x15\x8f\x16\xa5\x65\x48\xb9\x93\x05\x4a\x9b\xd2\x0d\x91\x18\x8b\x13\x62\x52\x24\x49\x52\x44\x23\x77\xbb\x4d\x91\xc6\x04\x2b\xea\x32\xd0\x60\xdc\x66\x9d\xc0\x08\xa0\x13\x0f\x46\xde\xe3\x0b\xcc\x1f\xc8\xdb\x24\xad\x4e\xc6\xfb\x33\x6b\x63\x45\xec\x12\xa6\x45\x17\x93\xa8\x87\xf6\x43\xc4\x52\x38\x0a\x60\x38\xf4\xb9\x43\x57\x05\x26\xe8\x9c\x49\x1c\x14\x22\xc0\x61\xef\x13\xd0\x10\x81\xaa\xe3\x17\xfc\xea\xac\xfd\x24\xfb\xf4\x80\xa9\x22\xe8\x90\xd7\x02\x04\xec\x27\x5e\x43\xe9\x90\x61\xa3\x64\x8d\x65\x10\xc9\x4d\x8a\xc3\xf2\x45\x83\x13\xd8\xa9\x0c\x64\xea\x39\xc1\xa4\xdc\x97\x65\x26\xd9\xc1\x75\xba\x60\xfe\x03\x04\xf4\xfc\x18\x70\x12\x5c\x00\x10\x61\x20\x62\x46\x20\x06\x44\x87\x63\x3c\x86\x9a\x61\x99\x11\xd8\x7a\x25\x5a\x3f\x65\x91\x68\x31\x0e\x45\x85\x51\x83\x4a\x7a\x7b\x59\x6e\xdf\x31\xeb\x03\xde\x2d\xa1\x5f\xf5\x70\x18\xac\x4e\xc7\x87\xb6\x3d\x1a\xdf\x5a\x1e\x75\xd7\x05\x26\x82\x5a\x67\xd5\x61\xef\xce\xf2\xa4\xbc\x41\x45\xc4\xa6\xf0\xd0\xee\xe9\x53\xa5\xfc\x6c\x02\x01\x46\x31\x95\x79\xc4\x8a\x2c\x20\xb9\x05\x5a\xe4\x23\x94\x60\x84\x7d\xe4\xd8\x29\xae\x4a\x24\xc0\x9a\xb7\xf8\xc2\xd0\x1a\x0b\x1f\xfd\xcc\x24\x83\xc3\x4f\xc4\x94\x83\xa3\xe2\xc4\xac\x09\xac\x02\x2e\x92\x61\xd2\x9a\xab\x10\x89\x98\xe8\xa0\x81\x79\x45\xe5\xc5\x53\xeb\x61\x9e\xe4\x17\x91\x9e\xb5\x38\xfa\x4b\x33\xa0\xbd\x72\xb2\xf2\x3c\x67\x82\xe1\x78\x86\x40\x4b\xb0\xed\x7c\xa8\x47\x08\xc8\xdb\xc8\x98\x21\x74\xc9\xab\x24\x31\x6a\x49\xff\xb7\xb4\x75\xd4\x31\x65\x07\x77\x69\xb0\xe7\x4c\x1c\xe5\x57\xf0\x18\x92\x44\x99\x85\xb4\x00\xc9\x02\xb4\x04\x3b\xe1\x3a\xfa\x1a\x58\xdf\x7f\x04\x85\xfd\x28\x58\x9b\x8f\xaa\x06\xc2\xc7\xe0\x94\x0b\xed\x8e\x21\x37\x4f\xa0\xf2\x62\x0f\x51\x78\x1b\x67\x77\xdb\xf1\x37\x2c\x29\xdd\x6a\x58\x5c\xe0\x01\x07\x34\x6a\x6c\xf3\x60\x05\xa7\x12\x16\xfd\xc2\x8e\x21\xb2\xe7\xea\x47\xea\x30\xe3\xd2\xfd\x22\x40\x08\x09\x8a\x81\x01\x83\xcd\x48\x89\x3f\x9f\xc9\x8b\x0a\xa9\x6f\x20\x9b\xc2\x2c\x12\xe2\xd4\xd4\xed\x63\x77\xc5\x83\x58\xbd\x0e\x84\xe8\x97\xbf\x5b\x19\x44\x13\x42\x05\x2e\x99\x12\x69\xa9\x92\x0e\xf4\xc6\x23\x4c\x7c\x12\x41\x8f\x4b\x2a\x7e\x73\x32\xd2\x98\xd8\x7d\xdf\x20\x9e\x7e\xe4\x4c\x67\x3e\x90\x94\xfa\x9b\x39\x15\xb1\xb2\xd3\xf3\xf5\x48\xe4\xb1\x6d\x69\x97\x36\x1e\x84\x69\x8f\x19\x58\x1b\xb0\xfc\xf7\x6f\xfd\x30\xba\x8a\x71\xbc\x04\x48\xe8\x0b\x1f\xf1\x07\x77\x48\x92\x51\xac\x74\x6b\x33\x0e\x06\xf4\x47\x49\xa5\x05\xef\x2a\x50\x25\x1e\x46\x8f\x78\xc4\x70\x59\xb8\xa3\xd4\x87\x92\x16\x45\x38\x8a\x90\x48\xe8\xf2\xf3\xc7\xdb\x44\xbf\xb1\xcc\x60\x09\x7e\xae\x02\xc2\xa0\xbb\x42\xfb\x42\x68\x2e\xed\xf6\x4b\x18\xc4\x55\xdd\xe2\xc0\xcc\x29\x35\x4a\xaa\x02\x2e\x3c\x66\xed\xfe\x09\xbc\x8d\x58\x53\xf0\x71\x3c\x5c\x2f\x10\x6c\x81\x38\x34\x59\x4f\x24\xe8\x76\x46\x59\xc3\xc9\xdb\x3a\x0b\xbd\x90\x63\x35\x32\x00\x96\x57\xec\x62\xd2\x13\x64\x3a\x32\x4f\xd9\x11\xf2\x78\xb4\xe0\x6e\x97\x9c\xca\x36\xbf\xb0\x9a\xf5\xb2\x80\x64\xc9\x39\x75\xaa\x14\x80\xf0\x41\x25\x43\x00\x7e\x12\x97\x6a\x84\xdb\xdb\xe3\xec\xd7\x64\xe1\xc3\xb9\xbc\x21\x9c\x02\x11\x01\x60\xf7\x46\x07\xb4\x44\xb9\x91\x35\x61\x96\x48\xe5\xcc\xa0\xda\x45\x62\x48\x08\x3a\x6c\xf5\xea\xab\xa1\xd1\x2a\x73\x89\xa3\xbf\x10\x0e\x2d\x81\x75\xfa\xd0\x84\x74\xfc\x78\xe8\x2d\xda\xbc\x59\x7d\x43\x28\x3f\xd6\x84\x66\xab\xde\xbf\xa4\x2d\x0e\xa0\x69\x1f\xe5\x65\xf7\xa0\xba\x0e\x05\x47\x9d\x9d\x3c\xbb\x33\x05\x4f\xff\xa3\x57\x13\x68\x60\xd1\x9c\x00\x98\x60\x97\xfb\x97\x2d\xb2\xfc\x90\x0b\xf9\x93\x5c\x7b\xd0\x32\xe3\x4a\x00\x38\x10\x2a\xe2\x3d\x82\xa1\x2b\x65\x82\x8c\x66\x72\x22\x6b\x5f\xca\x37\x57\x75\x09\x9c\xcd\xce\x38\xb9\xee\xf5\x70\x92\x81\xe8\x82\x83\x13\x67\x3c\x3e\x64\x73\x44\x2a\x30\xaa\x30\x6c\x14\x0e\x9c\x04\x35\x68\x6d\x30\xc1\xe0\x4d\x20\xc0\x20\x1f\xa3\x2c\x4f\xc1\x08\xd8\x1a\xab\xa3\x1c\xb2\x9b\x66\x3e\xb0\xe2\xb7\x3d\x04\x2a\x9e\x95\xe3\x05\x3e\x24\x49\x02\xc9\x29\x33\x3c\x88\xfb\x8c\xae\xf2\x42\xd3\x35\x75\xa3\xc6\xa4\x49\x2c\xd2\xf8\xf4\x14\x0c\x78\x14\xa8\x9d\x13\x63\x72\x2d\x8f\x8b\xfa\xcf\x2a\xda\x06\x3b\x73\xbc\x6b\xf0\xbc\x90\x18\xc6\xa1\x02\x49\x6f\x09\x40\x1b\x63\xcc\x68\x94\x58\xe0\xdd\xd5\x0e\x4a\x94\xcb\x3b\x3c\x8b\x4c\x60\xb0\xa4\xcf\x38\x4f\x47\x01\x8a\xf6\x57\x09\xca\xa2\x94\x3f\xcc\x79\x0a\x21\x6b\x91\xfb\x1a\x3f\x2c\x31\x08\x2c\xc9\x55\xdf\xba\xbe\x98\x70\x3b\x0e\x1a\x19\x69\x7c\x83\x56\x9f\xd1\x73\x1b\x58\xd2\x1e\xe4\x73\x3b\x31\x6b\xef\x2c\x4e\x65\x67\x60\x58\x3e\xc2\xd0\x71\x80\x13\xe5\xa6\xfd\x2f\x19\xcc\x2f\x8b\xf2\x4d\xe8\xe3\x73\x59\x5d\xa5\x30\xba\x12\x41\x7e\x6b\x77\xb8\x22\x92\x76\xad\x04\x68\x5b\x66\x09\x5a\xcd\x3a\x8b\x22\x46\x64\xa3\xaa\x85\x8d\xae\xed\xb1\xde\x8b\x50\x8a\x03\x44\x4c\x15\xca\x92\x88\x29\x1d\xb0\xeb\x0a\x60\xf8\x3d\xf3\x45\x27\xc8\xb8\x8f\x6e\x54\xaf\xb0\x55\x1a\x6a\xf1\x3e\x2a\x2a\x81\x2b\xcf\x23\x48\x15\xb1\x17\xc0\x18\x67\x9d\x96\x7f\x23\x61\xd8\xd1\x5b\x0d\x8e\x8d\xb1\x36\xdc\x98\x9d\x63\x3c\x46\x52\x93\x46\x67\x31\x72\x65\x23\xf8\x8d\x2c\xff\xe9\x02\xb8\x9e\xd5\xb6\x32\xc8\x46\x9d\x05\x74\x00\x8f\x59\x79\x8d\x49\xea\x59\x24\x48\x91\x27\x3d\x0b\x72\x36\x73\x1f\xf6\x47\xb1\xb4\xc1\x21\xc1\x89\x0d\x42\xc6\x81\x70\x58\xb1\xe0\x35\x83\x92\xef\x57\x5a\x55\xa8\x81\x3d\x85\x0f\x39\xa8\xf2\x91\x0e\x9e\x03\x9a\x7a\xa4\x93\x29\x43\x9a\x52\xcd\xc2\x63\x94\xa9\xc2\x60\x04\x1b\xa0\x97\x81\x44\xf0\x57\x13\x59\xba\xfb\x89\x99\x1d\xce\x86\xc7\x8b\xa3\x39\x66\x91\x07\xc2\x41\x2a\x2f\xf3\xac\xd2\x13\xa3\xa2\xab\x11\xde\xc4\x86\x49\x84\x7a\x74\x60\x79\xa2\xff\xb3\x83\x02\xa5\x81\x15\x65\xa0\x19\x92\x85\x28\x9a\x00\xc2\x94\xed\xb4\x43\x24\x3a\x2f\x45\x78\x54\x85\x85\xd0\x8f\x50\x69\xaa\x27\xa1\xa4\x31\x54\x65\xc0\x8f\xed\xb4\xc8\xb5\xd3\x5d\xdb\x5b\x1e\x7a\xef\x25\xb3\x49\x29\x01\x7d\xb4\xb6\x86\x7b\xb6\x88\x7e\xad\xa8\xd1\xe5\xd0\x24\x18\x0c\x95\x07\xf8\x2a\x6e\x7d\xa9\xec\xa8\x37\x99\x94\x1e\x80\x7b\xca\x70\x36\x53\x4f\x81\x58\xc7\x49\x10\x20\x80\x31\xe8\x28\x50\xde\x1d\x11\x92\x28\xaf\x40\xfd\xa8\xc8\x03\x9d\xb0\x6e\xe7\x70\xfe\x64\x90\x83\x3e\x94\xc0\x3b\x8d\x33\x8d\x29\xcb\x5a\xb3\x91\x5b\xc0\x01\x9b\xfa\x13\xe2\xf5\x90\x2e\x7f\x6f\xd2\x35\x23\x5a\x9c\x8b\x4a\x2b\xca\xb8\x96\x0a\x37\x94\xec\x35\x82\xf6\xa3\xa0\x88\x6f\xbd\xbd\x3c\x43\x22\x94\xac\xcc\x74\xe8\x77\xee\x2a\xdb\x20\x3d\x95\x50\x4c\x48\x59\x65\x51\x43\x46\x83\x78\x0c\xb9\x17\xb4\xcd\xe7\xec\x6b\xc9\x8c\x4d\x3e\x0a\x71\x50\x3c\x84\x0e\x91\xed\x39\x89\x82\x49\x69\xd6\xae\x34\x5d\xa6\x57\xd6\xc9\x88\x2e\xa2\xa2\xb7\x4f\x1b\x15\x25\x63\x8b\xe9\x3d\x12\x60\x9b\x59\xcd\x64\xbf\x58\x94\xa7\x04\xe2\x19\x12\x57\xda\x27\xd3\xc6\x7a\xb3\x0c\xa5\xce\x0b\xee\xf5\xcf\x82\x3e\xcb\xb9\x81\x9b\x06\x12\xb5\x95\x8c\x68\xc7\x84\x23\x09\x77\xc7\xf5\xbe\xf9\x1f\x28\x85\xf6\x8e\x21\x19\xce\x58\x96\xed\x78\xe3\x23\x8f\x9e\x05\x47\xa9\x4d\xf4\x08\x1b\xe6\x48\xa7\x3e\x3d\x51\x19\x0f\xb3\xfc\x4f\x4d\xe6\x05\x79\x2b\x76\xc9\xfc\xca\x90\x6a\x1c\x1e\x72\xe4\x17\x8d\x73\x81\x91\x59\xaa\x41\x85\x23\x72\x61\x9e\xe7\x66\x84\xec\x27\xe7\xbd\x79\x4c\x11\x46\x31\x14\x22\x3a\x2a\x8b\x16\x20\xa6\x22\x81\x04\x5c\xa0\x67\x4f\x25\x59\x24\xc2\xd5\x05\x2c\x75\x11\xe5\x83\xe3\x90\x27\xb0\xf6\x56\xad\x36\xab\xd0\x06\x8c\xa2\x06\x3c\xa1\x93\x3e\x8d\xe5\x23\xac\x5c\x69\x35\x81\x20\xbf\x92\xa2\x2a\x19\xed\xa8\x80\x5a\xf8\x45\x84\xaf\x3f\xc3\xa1\x14\x52\xf6\x52\x4f\x0f\x4e\xee\x40\x0c\x2d\x9e\xb2\x2d\x43\x10\x35\xd3\xc4\x01\xfd\xdf\x1a\xfe\xd2\xcc\x27\xbb\x92\x4b\x45\x8f\xc9\xa1\xaa\xa4\xc4\x2a\xa3\xd8\x99\x4b\x49\x95\x34\xfc\x07\xe3\xce\x86\x48\xa2\xfd\xdd\x75\x62\x75\x38\x4e\x7e\xc7\x92\x67\xc0\xad\x29\x72\x46\x8d\x1a\x0a\x29\xd3\x53\x82\x7e\x07\x9b\xcb\x51\xbe\xaa\xb4\xcc\xa2\x1c\xe1\xd3\x07\xe4\x46\x26\xc8\x54\xce\xa0\x1f\xc1\xe4\xdc\x37\xd0\x80\xa9\x48\x59\x53\x8f\xab\xf1\x08\x16\xa9\x66\x58\x0a\xd8\xc4\xb3\x8c\xa8\x09\x8f\x1e\x8f\xa3\x9b\x73\xfd\x00\xc1\xd1\x62\xd0\x9b\xad\x95\xed\xd8\x15\x8d\xc4\x09\xb1\x85\x79\x43\x03\x25\x2e\x12\xd6\x0b\x74\x3a\x58\x97\xc1\x5e\x6b\x0a\xc3\x53\xc8\x41\x49\x70\x3f\xeb\x24\xe0\x37\x31\x3e\xb0\x84\xb0\xdc\x5a\xa0\x98\xd8\x04\x99\xc1\xaf\xb9\x1e\xea\xc7\xd0\x4b\xcb\x03\x61\x4e\x19\xd4\x61\x7d\xbe\x62\x33\xfb\x4b\xff\xc9\xee\x24\x97\xac\x64\x4f\x3e\x2b\x30\x05\x63\x51\xe3\xd5\xdf\x49\x4b\xd6\x15\xea\xa5\xeb\xb1\x98\x00\x51\x90\xeb\x28\x9f\xbd\x78\xf1\x04\x6f\xbf\x15\x84\x0e\x81\x95\x71\x95\x49\x78\xf2\x79\xb3\x1f\x72\x22\x7a\x71\x6f\x22\x2d\x88\xa7\x88\xcb\x0b\xa0\x8d\x26\x31\xc0\x69\x60\x0f\x02\x28\xdf\xc2\x4b\xb0\x01\x05\x88\x5f\xbb\xbf\x52\xab\xd8\x0a\xb7\xd2\x48\xb2\x20\xa2\xf7\x44\x2c\xd1\xc6\x05\xd7\x31\x26\xf2\x3a\x89\xb7\x0d\x76\x60\xb8\x8b\x12\xb4\x1a\x07\x72\x3e\xdb\x35\xd0\x84\x66\x20\x01\x39\x64\x80\x07\xa1\x95\xc2\x01\xa8\x12\x91\x36\x3d\xec\x61\xcf\x22\x8f\x6e\x4c\x81\x86\x46\x26\x6d\x08\x86\xab\x9d\x4c\x3d\x6e\x2e\x35\x8a\x30\xba\x03\xef\xeb\x00\x6e\xca\xe4\x9b\xb1\xa8\x89\x27\xe1\x60\x5b\x76\x78\x8e\x09\x27\x80\x3d\x04\x9b\x74\x2a\x27\x23\x42\x2e\x08\x19\xf6\xc0\x3a\x82\x25\xbc\x99\x06\x12\x1c\x53\xe0\x0e\x3f\xb0\x3a\x59\xc3\x6e\xd6\x84\x37\x42\xe9\x47\x64\x23\x1b\x14\x05\xde\xff\x42\x68\x4b\xe7\xf4\x2b\x71\xb8\x13\x02\xd2\x88\x3a\x1f\x58\x38\xad\x21\x02\xaf\x18\x43\x79\x59\x59\x95\x68\x2f\x5e\x67\x04\x1d\xad\x50\x75\x4f\x0f\xde\xb2\xbb\xd2\x6d\xd5\xcd\x31\x29\x6a\xe8\xba\xff\x18\x91\x03\xd2\x0d\xec\xd5\xc0\x9a\x4d\x88\x24\x6a\x21\x45\xd4\x41\x79\xf3\xe9\x75\xc0\x7a\x36\xa6\x01\xc0\x89\x96\x7e\x89\xd3\x9d\xd0\xf7\xc2\x6c\x35\xb2\x8e\x9b\xad\x33\x41\xdb\x96\x36\xce\xdb\x35\x4c\xf7\x68\xf6\xeb\x37\x46\x47\xba\x47\xf9\xa0\x22\xdd\xea\x80\x38\xf9\x40\x2b\x43\x20\xfe\x6d\x41\xe3\xca\xf8\x78\x0c\xe6\x7f\x23\xe1\x81\xa8\x3c\xe0\xb4\x1d\x2c\x64\xf5\x11\xb2\x11\xe4\xbf\x93\x76\x8c\xcf\x45\xe8\x5e\x24\xd4\xdd\xd3\xa5\x5a\x08\x96\xbc\x73\xc5\x99\x3d\x81\xdb\xfc\xca\xd1\x5e\x82\x25\x4f\x00\xb3\x1a\x4f\xc3\xf7\xe4\x1b\xde\xb6\x23\xcd\x90\x1c\xb1\x08\x2f\x86\x44\xe3\x2e\x9a\x20\x8a\x46\x87\xb1\xc0\x7d\xa8\xc0\x72\x3a\x69\x59\x8c\x29\xb3\x73\xee\x7d\x2c\xdb\x9d\x3e\xfc\x7e\x89\x77\x78\x08\xf0\x69\xc7\x3b\xd7\x23\xaf\x7b\x33\xa4\xc3\x5e\xa0\xdd\xee\xad\xe9\xbf\x2d\xe9\x4d\x08\x66\x3d\xe5\xef\xba\x87\x2a\xd2\xda\x96\xa6\xcb\x27\x20\x5a\xb3\x0c\x62\xa1\x0b\xc5\x7a\xa3\xe0\xa6\x05\xc5\xa7\xda\x11\xad\x01\x42\x66\xa8\xa4\xd9\x81\xe3\x46\x72\x19\x75\xf2\xe8\x62\x18\x9f\x48\xb7\xb0\x78\x11\x51\x38\x55\x80\x98\xe9\x41\x96\x9f\x3c\x02\x0c\x5f\x28\x89\x42\x41\xa4\x53\x04\x40\x07\xaf\x68\x96\x9f\xac\x1f\x96\xdb\x25\xb6\x9e\xf5\x04\xae\xa1\xb6\x8e\x18\x90\x23\x7f\xa3\xb1\x9f\x72\x8f\x78\x3e\x1f\x73\x8b\x41\x22\x95\x7c\x81\x59\x96\x73\xf3\xa1\x85\xa1\x5f\xa7\x33\x31\xfd\x01\x0c\x2e\x28\x58\x41\xfe\x3a\x61\xd5\xee\xf5\x40\xfa\xb1\x19\xba\xa4\x57\x38\xdd\xa4\x94\x38\x1b\xd4\x0c\x89\x8f\x06\x33\xc4\x10\x0d\xa3\x84\x8f\x91\x24\x01\x03\x38\xeb\x00\x27\xc8\xa1\x47\x82\xe8\x62\x67\xd3\x18\xfb\x9b\x44\xb0\xe7\xc8\x59\x16\x3a\x11\xd1\xcb\x6d\x68\xdd\xaa\x6a\x1e\x00\x55\x97\x85\x68\xb7\x1e\x32\x6c\x71\xb7\xe5\x1c\x73\x1c\xff\x54\x68\xba\x07\x6a\x4b\xf0\xda\x69\x94\x78\x00\x82\xdf\xcb\x19\x38\x57\xe0\x78\x08\x09\x8a\xd9\xfd\xb4\xe4\x25\xd7\x5f\x35\xf7\xcb\xa0\x8d\xf4\x82\x05\xd7\x18\x3e\x7e\x43\xa2\x9a\x66\x11\x1d\x8a\x44\x85\x14\xd9\x5a\x5b\x24\x81\x28\x34\xbc\x62\x8c\x08\xa2\x95\x9b\x78\x06\x4e\x61\xce\xc6\x25\x0d\xa1\xeb\xc6\xb6\x17\x58\xd5\x2f\x2e\x41\xab\x69\x86\x95\x22\xa9\xb4\xc1\xe2\x90\x91\x98\xb8\x90\x39\x28\x32\xd1\x22\x8f\xcc\x51\x42\x52\x92\xa5\x47\xe4\x33\xbb\x93\x6f\xe2\xa9\x8c\x10\x60\x8b\x40\xa9\x3c\xaa\xe4\x02\x24\x44\x34\x3c\x15\x5e\xac\xfe\x9a\x1c\x3a\x69\xe4\x83\xd6\x22\x9d\x60\xa1\x9c\xae\x5b\xb1\x54\x6a\x3f\xb6\x58\xd6\xb2\xe9\x34\x56\xf4\x8c\x3d\x9c\xc4\x91\xdf\x37\x91\x14\xcb\xe4\xa0\xfc\x46\xcb\x1c\x06\xe5\xae\xfd\x07\x8b\xa5\x4a\xd6\x5d\xeb\xc9\x4c\x8c\x89\xa0\x13\xa7\xaf\x8c\x2c\xd5\x3e\xae\x05\x63\x26\x55\xd1\x40\xcf\x91\x1f\xa8\x6f\x64\x70\x66\x4a\xec\xac\xd5\xf1\x17\xfc\x79\x83\x54\x5c\x23\x34\x6a\xa8\x68\x12\x20\xed\x3a\xa6\xe2\x59\x36\x26\xbc\x04\xce\x91\x4d\x2c\x0a\x7f\xa1\x66\x71\x75\x7c\x7c\x0d\xe0\x97\x8c\x8a\x62\xb2\x0d\x4e\xd9\x21\x66\x58\xa5\xef\xd7\x80\x87\xd8\x58\xbe\x40\x2a\xe6\xd9\x20\x7d\xe8\xc0\x87\x19\xa4\xc9\xcc\x62\xe0\x57\xfc\xff\x8b\x28\x12\x31\x6b\x09\xd1\xda\x20\x7e\xf7\x65\x84\x12\x11\x3b\x16\x40\xc9\x13\xc1\xef\x06\x42\xa6\x64\x40\xab\x5d\x29\x15\xd9\x00\x2d\x1b\xdc\x79\xad\x68\x0e\x21\x71\xdb\xd7\x81\xb5\xbd\x49\x1c\x7d\x49\x62\xaa\xd9\x84\xe4\x1c\x0c\x8c\xb7\xf3\xba\xcf\x65\x90\xa8\xb8\x34\x20\x7d\x87\x79\xde\x0d\x44\xf0\x33\x65\x20\xec\x30\xaa\x39\x98\x82\xb5\x6f\x85\xab\x5d\x03\xfe\xf1\x18\x5c\x68\x16\x89\x89\xc3\x1f\x4b\xcc\xf6\xd1\x89\x72\xe2\x7a\xd1\x64\xc7\xbd\x6d\xb4\xd7\xc3\xce\xef\xa5\x80\x21\xf4\x28\xd7\x3b\xa5\x89\x20\x2b\x8b\x6c\x0d\x38\xcb\x6d\x41\x32\x09\x1d\x51\xd7\x1a\x4b\x29\xbb\xa4\xac\x56\x88\x01\x6a\xcb\x6f\x52\x0e\x0f\x01\x14\xad\xd3\xcc\x14\x34\x21\x71\x8d\x2f\x5c\x6f\x80\x33\x64\xcd\x9e\x95\x5c\xea\x09\x47\x41\xc3\xa9\x43\xeb\xe6\x5c\xf2\xe0\x04\x22\x87\x08\x18\x07\xcd\x75\xb0\xd0\xc4\x71\x15\x90\x87\xa5\x61\xd2\x25\xd1\x3b\xfb\x7f\xeb\x3c\xc3\xf4\x11\x23\x26\x48\xd7\x48\x30\x39\x33\xc2\x22\x93\x29\x64\x12\xee\xf7\x45\x38\x48\x05\x5a\x12\x01\x4b\x57\x4e\xc0\x7a\x63\x5d\x16\x99\x5f\x07\x0f\xe4\xed\x12\x4b\x32\x4b\x0e\xe5\xbd\x84\xaa\x6e\x48\x0a\xa7\x14\x9e\xb2\x81\x32\xd4\x55\x47\xcd\x51\xf2\x79\xc6\x87\x87\x3e\xe2\xea\x5f\x95\x23\xa1\xcc\xce\x62\xd4\x70\x55\x6d\x59\x34\x91\x24\x28\x40\xe8\xcf\x32\xb6\x13\x86\x10\xf3\x39\x84\x6c\x65\xc6\x00\x91\x62\x55\x79\x8c\x53\x71\xf9\x3a\xa1\x2b\xf1\x2a\x6d\x6a\x68\xc9\x6e\x12\xbc\xf5\x2c\xa5\x75\x41\xd1\x56\xb9\x8f\x3c\x7c\x8e\xe9\x45\x75\x27\x3d\xf2\x5e\xc0\x62\x6a\x46\xa9\x39\x5d\x28\x06\x00\x95\x44\x40\x1e\x3a\xc1\x6f\x2d\x5e\x36\x0e\x0b\x9d\x11\x8a\x86\x89\x23\xd7\x96\x57\x84\x5c\x1d\xa2\xed\x28\x6c\xf0\xff\x24\xda\x18\x6a\x1e\xc1\x9f\xa4\x41\x67\x55\x83\x02\xba\xa2\x41\x1a\xd5\x05\x92\x2f\xb1\x0e\xdf\x50\x15\x10\x28\x6e\xea\xdc\x33\x15\xe5\x3d\xd9\x69\xc8\x28\x90\x47\x67\xb3\xb8\xad\x5f\x15\x11\x50\x92\x0d\x42\x33\x11\x44\x12\x69\x0c\x94\x8a\x30\xea\x66\x87\xfc\x2b\xb8\xb8\xb9\xa9\x54\x9f\xe6\x45\x41\x53\x7c\x7f\x74\x97\x51\x07\x89\x8a\x0a\x0d\xd7\x4f\x9b\xb9\x53\xa0\xb6\x5b\x51\xbe\x90\x10\x5b\xee\x6e\x02\xb5\xca\x02\x25\xdf\x42\xb8\xb8\xfa\xf9\xff\x38\x00\x44\xb6\xd4\x7c\x5e\x4f\x16\xcf\xc1\xbc\x9d\x4a\xd5\xcb\xd7\x70\x07\xcb\xa1\x8e\xad\x62\x94\xdb\x48\x08\xd9\x75\xcf\xb9\x05\x19\x61\xad\xdd\x4e\xa7\x6a\xd1\xbc\x04\x45\x36\x22\xb9\xee\xb8\x88\x85\x3f\xd9\x00\xe6\x0a\x84\xaa\xb5\x66\xd4\xb4\x56\xae\x81\xa5\x8c\xdc\x19\x2e\x75\xee\x81\x22\xeb\x77\xb1\x3f\x64\x16\x1d\xb6\x2e\x98\xc6\x4c\x75\x4e\x33\x2f\xce\x82\x61\x3d\x2b\x59\xb2\x36\xbd\xf0\x47\x5e\xf7\x1f\xc7\x42\x55\xd3\x0a\xb8\x87\x1f\x09\x4b\xa9\xd4\xd1\xdc\x48\x7d\x98\x10\x21\x07\xb1\xfb\x26\xe0\x55\x56\x67\xb0\xcd\x62\x46\xc5\x6e\xb8\x41\x4f\x4e\x0a\xb6\x32\x11\x2a\xab\x02\x80\xb9\xf3\x9b\x09\xce\xcb\x2f\x01\x3d\xbb\x62\x89\xb7\xdf\x07\x49\x04\xe4\x68\x2e\x94\x01\xf6\xea\x12\xa2\xd3\x24\xc9\x68\x34\x82\x62\x98\x4b\x6e\x8f\x1a\xbd\xbd\x09\xea\x38\x58\xc1\x41\x69\x05\x3e\x82\x26\xfa\xbf\xf0\x85\xd0\x26\xd3\xd3\x1d\x90\x4b\x79\xdd\xfa\x26\x00\xd5\x21\x02\x3e\x81\x5d\x28\x41\x67\x67\x04\x62\xa8\xa0\x75\x20\xeb\x40\x5a\x9c\xfa\x15\xc4\x55\x78\x04\x1a\x60\xce\x2d\x13\x58\xd9\x7e\xe3\x4a\xc2\x6d\xfa\xa0\x9d\xe2\xa8\x40\xe9\x3c\x2e\x02\xfd\x47\x8e\x4d\xac\x88\x97\xed\xc3\x27\x3b\xb6\xad\x63\xf8\xfa\x7b\x92\xbd\x16\x3b\xd0\xa1\x61\x58\x5c\x6f\x44\x3b\x28\x88\x1f\xb5\x65\x3b\x3e\x1e\xc1\xa7\x73\x0e\x18\x3c\x7a\xc5\xee\x06\x2e\x1b\x84\x81\x9d\x25\x46\x80\xb0\xd2\x45\x22\x2a\x5a\xd7\xdc\x6a\x7f\x9f\x90\x98\x76\x9c\xec\x83\x36\xc8\x21\xb0\x29\xe1\x80\x94\x87\x59\x1c\x32\x5c\x1e\xa2\x0f\xdf\x0f\x54\x81\xe7\x79\x5c\x0d\x47\xb5\x64\x13\x7d\x0e\x28\x7c\xac\x84\xf9\x4f\x2c\x31\x71\x58\xdc\xc0\x69\x7d\xbc\x4a\xe8\xb7\xf3\x31\x11\x12\x06\x1a\x6d\x48\x68\x80\x77\xf5\x98\x76\xc9\x99\xb0\x54\x98\xdb\x1d\x24\xea\x44\xe7\xda\xb8\x67\xe2\xf9\xe0\xd1\x26\x93\xa4\x61\xd4\x98\x89\x25\xe2\x92\x6b\x62\x80\xf6\x98\xa7\xbc\xeb\xc0\x2a\xfa\x4d\x08\x2c\x18\x81\x54\xce\xbb\x75\xc5\xd4\xbd\x5a\xf8\xe1\x7c\xe8\x5d\xdb\x8b\xf5\x79\xe6\xa6\xa2\x0f\x47\x38\x90\x4e\x49\xc6\x98\x32\xa6\x50\x1b\xdf\x1f\x2e\x92\xb2\x09\x24\xc8\x18\xd8\xe3\x66\xb8\x25\x08\x3b\x7e\xad\xf6\x3b\xa8\x81\x65\x96\x0c\xa9\x94\x00\x77\x3a\x37\x25\xc6\x71\xe2\x23\x74\xd5\x83\x2f\xe4\x96\xd3\x75\x45\xa8\xe4\x95\x34\xe2\x3c\x19\x05\x7b\x87\x6c\x77\x18\x8d\x71\xc2\x94\xb3\xd8\x8e\xe1\x14\x65\x80\xcb\x8c\x42\x17\x1c\x82\xc6\x15\x82\x9c\x7a\x03\xd9\xea\x2b\x9f\x4b\xa8\x02\x42\x0c\x28\x40\x89\x08\xae\x9d\xa2\x20\x4d\xd0\xe6\xac\x08\x08\x91\x4f\xb3\xab\xe1\xd9\xa6\x66\x9c\xde\x8b\xb1\xe5\x05\x97\xbd\xaa\xb5\x5a\x21\x07\xb3\x36\xa6\xec\x38\x5e\x4b\x2a\xc0\x7a\xb8\xb6\x40\x27\x08\xf0\x5e\x31\x9e\xfc\xb4\x3f\xdd\x46\x6c\xb9\xfa\xa1\xb3\x16\xbf\x27\x95\xcd\x1d\xd2\xc2\x46\x43\x34\x2c\xc9\x46\x3b\x94\x02\x44\x60\xcd\x92\xa1\x98\x29\x6c\xd9\x82\x80\x8b\xb0\x31\x64\x0a\x43\xb4\x30\x4a\xc1\x08\x54\xbc\x1d\xa9\xaa\x0e\x9f\x24\x6e\xed\x70\x27\xda\x30\x05\x26\x69\x4b\xea\xc2\xf6\xf6\xcb\x17\x36\x4c\x8d\x6a\x1f\x41\x61\x62\xc3\x73\x2a\xb4\x04\xf6\xb9\x16\x50\xee\xe1\x21\x0a\x38\x8d\xd0\xea\xc6\xd9\xe9\x82\x6c\xd1\x10\x5f\x09\xa6\x72\x07\xb0\xe9\x12\x37\x32\xd2\x5f\x46\x27\x7a\xe2\x58\x58\x84\xf3\x73\x82\x67\x8a\x11\x8e\xbe\x05\xe5\x2f\xfb\xf3\x57\x65\xb0\x05\x3d\x32\x31\x34\x53\xd3\x89\x60\x00\x5a\xc5\xce\x07\xde\xb2\xb2\xc0\x11\xf5\xef\x45\x81\x59\xc2\x2e\x6f\x42\xec\x51\xf5\x58\xb8\x99\xae\x3c\x72\xfa\x52\xdb\xea\xa2\x45\xe3\x28\xbf\xb9\x6a\x32\xf3\x43\xb0\x4b\xfb\x1c\xde\xc2\x88\xac\x29\x6e\xbb\x1b\xa1\x6f\xaa\x5b\x3d\x2d\xd7\xad\xb5\x1b\x81\x53\xc0\x1a\x26\x7a\x46\xe4\x52\x78\xd9\x85\x88\x10\xf1\x1c\x1b\x70\x84\x69\xc6\x51\x61\xaa\x48\x54\xe2\xe6\xa6\xe6\x33\xf5\xe6\xe6\x99\xfc\xeb\x5a\x42\x90\x05\x19\x1e\x36\x1b\x68\xb6\x21\x8c\xd7\x50\xd6\xe8\x3a\xe3\xf5\xa3\x9f\x34\x44\xb7\x95\xd4\x80\x98\x80\x7b\x10\x98\xaf\xf3\x6f\xfd\xc9\x79\x09\x38\xbb\xfa\xb1\x83\xc9\x6c\x72\x10\x6d\xb6\x8b\x7a\x8e\xc3\x9c\x4d\xe2\xeb\xef\x96\x84\x2e\x93\x09\x44\xe4\x56\x43\xe5\x84\x6c\xb1\x62\x74\x4c\x5c\x07\x69\x98\xed\x7c\x32\x95\xd7\x5d\xef\x2b\xab\x5f\x58\x38\xc2\x06\x02\x66\xed\x7a\xb1\x14\xdb\x07\x55\x52\xc8\x93\x49\xbc\x22\x00\x6e\xe5\x95\xf0\xc1\xdd\xe4\xff\xb7\xb0\x9c\x54\xf2\x74\x9f\xec\xb6\x3a\x8d\x3e\x10\x78\xd7\x83\x17\x60\xf4\x93\xdd\xdf\xbf\x20\x20\x69\x9d\x73\xfe\xc1\xb3\x6f\x0d\x2b\xf9\x97\x29\x9f\xdf\x4b\x2e\x23\x37\x22\x4d\x6a\x31\x59\x46\xe7\xb6\xf6\xc4\x53\xb5\x5d\xee\x53\xa6\x50\x61\xd1\x3c\xcd\x44\xac\xcd\x10\x1e\xc6\x9c\x30\xd3\x89\xfc\x01\x6d\x4c\xcd\x53\x80\x20\xb7\x70\x5f\xd0\xe0\xfc\xee\x70\x2b\xdc\x8f\x31\x0a\xf9\x5b\x9a\x5f\x9d\xc6\x04\x7b\x91\xff\x34\x05\x1b\xd5\x7d\xce\x42\x91\x52\x3c\xc2\xf3\xbf\xdb\xe8\x8f\xa6\x79\xa1\x02\xff\x72\x3c\x2e\xc8\xd0\x1d\x4a\xdd\x15\x2d\x99\xc6\x02\xc6\x02\x72\xc0\x01\xcc\xd9\xc4\xca\xa9\xb7\x07\xd5\xd5\x56\xc2\xf9\x09\x99\x04\x25\x9e\x61\x69\x54\x37\xe1\xab\xd5\xeb\x0e\xef\x53\x95\xc3\x4e\xbe\x36\xa4\x92\xe9\x23\x36\x88\x54\x50\xd9\x81\x20\x71\x32\xf1\xe0\x94\x5c\x9e\xa0\x07\x28\x12\x55\x38\xdb\xab\x68\x4a\x95\x1c\x97\x3e\x5d\x23\xd0\x27\xc9\x03\xbe\xb9\x17\x22\x72\x71\xae\x1c\x34\x36\xec\xe1\x7a\x62\x84\x1f\x6e\xb0\x4a\x1d\x4d\x68\xb9\x4e\x51\x4d\x87\xd5\x7f\x8e\x3e\x06\x0b\x6f\x0c\x4a\xaf\x64\x6a\x60\xdc\xdc\xa6\x3b\x91\x7d\x20\x72\x95\xcd\x07\x3d\x92\x02\xd4\x07\x6d\xb8\xe1\x00\x0c\x74\x72\x4a\x9d\xa7\x9a\x4d\x53\x13\x0c\x8f\xe2\x25\x84\x23\x10\xff\x71\x95\x45\x0e\xe2\x02\x18\x22\x80\x3c\xab\x55\x1b\xb8\x3c\x2b\xf7\x72\x23\xa1\x4c\xa9\x59\xbd\x79\x7e\xe8\x52\x3b\x11\x62\x16\x92\xc9\xfb\xfc\x62\xd9\x6d\xae\x63\xe7\xc1\xd5\x26\x6c\x9f\x9a\xb6\x41\x61\xd8\x0e\x2d\x88\xc6\x63\xc1\x85\xb5\xaa\x4a\xb2\x32\xc1\x53\x37\x83\x1e\x8b\x35\x50\x66\x1a\xeb\x01\xc0\xb7\x26\x11\xda\x90\xb6\x17\x2a\xd9\x03\xfd\x6d\x0f\x9b\xdc\x2a\x65\xcf\xce\x28\xfb\xea\x3b\xa8\xd6\x9c\x29\xae\xb2\x05\x4c\xb4\x8a\x10\x80\x39\x4c\x23\x79\x2d\x23\xcd\xfb\xbc\xd0\x23\x59\x23\x54\x44\x3d\x13\x23\x0e\x0e\x20\xbe\xfb\x54\xb3\x69\x68\x06\x6b\x96\x65\xc1\xbf\x83\xf9\x8b\x9d\x95\x25\x51\x07\xb3\xf8\x96\xf3\xd5\x4a\x4e\x2a\x21\x2a\xd2\x38\xb7\x07\x3b\x70\x6f\x2b\x22\xac\x89\x83\x03\xf5\x4e\x48\x42\xe0\xda\x75\x56\x99\x96\x65\xc7\xc3\x02\xdb\x5d\xdf\x3b\x32\x84\x67\xa8\x19\x70\x52\x94\x92\xaa\xf9\xb7\x2e\xa7\x79\xb1\xb5\x12\xb9\x53\xea\x6b\x9b\x7e\x6e\x3d\xb2\x07\x6a\xdc\x16\x55\x35\x99\xcc\x65\xd2\xac\x0e\x9f\xe2\x1f\xf0\x01\x68\xe0\xe0\x65\xad\x47\x6c\xca\x95\xd5\x91\x56\x9a\xcd\x46\x90\xd2\xda\x2e\x45\x84\xf0\xe1\x9b\xb1\x28\xc2\xbd\xb3\x3c\xc2\x6d\x28\xe0\xb8\x29\x65\x68\x54\xbf\x86\x70\x24\xe1\xa9\x70\x67\x80\xb6\x96\x89\x0e\x83\x41\xaf\x1c\x1a\x8b\x85\x23\xc1\x7d\x99\x8a\xf8\x2d\x17\x9b\x59\x16\xa6\x72\xc7\x32\x1b\x6b\xc3\x9c\x52\x52\x59\xc5\xed\xf0\xe3\x5f\x34\x10\xc9\x37\xac\xdd\x37\xc4\x66\x3a\x16\xf1\x26\x03\x96\x7b\x44\x16\xae\x73\x2a\x55\xf8\xb5\x68\x3c\xd4\x49\x0a\xb0\x1b\x1a\x11\x75\x6e\x1b\xef\x56\x4e\xb7\x76\x6b\x8e\x29\x4b\x5a\x6d\x2c\xa8\xaf\xc5\x7d\x8b\xcb\xad\x85\x8e\x78\xc7\x5e\x19\x14\xc8\xd9\x82\x97\xf4\xbb\xf1\x75\xd5\x6b\x03\x27\x18\x73\xb8\x68\x16\x24\xe4\x1b\x2a\x5e\x05\x79\x12\xa6\xe3\xa8\x18\xa9\x05\x5b\xa6\x68\xae\xa2\x6b\x32\x78\x72\x08\xaa\x22\x35\x58\x97\x0c\xff\x94\x7f\x7f\xd9\x33\x36\xf0\x27\xa5\x3f\x40\x93\xfd\x01\x50\xdc\x3a\x92\x18\xbe\x24\x00\x90\xc8\x72\xaf\x91\xfa\x5f\xb2\x34\x8a\x22\x6c\xb7\x52\x6d\xa7\xa8\xf1\xc6\xfe\x61\xc2\x1d\x39\xf4\xb5\x63\x72\x06\x55\xd8\x96\x2d\x62\x0a\x3b\x61\x90\xa5\xd4\xc1\xa5\x88\x55\x20\x34\x63\x47\x37\x06\x4c\xaf\xa3\x81\xd5\x0c\xc9\x75\xc9\x31\x80\xb8\xb4\x8e\xaa\xfd\x61\xc1\x14\xd0\x70\x1c\xff\x59\x18\x38\xdc\x6a\x6b\x14\x4c\x4f\x1b\xc2\x3c\x60\x02\x92\x6c\xf1\x07\x19\x18\x6d\xa8\x68\x1a\x4a\x92\x9f\xb9\xc6\xe3\xb1\x60\x0b\x1b\xf2\x9b\xf0\xd4\x92\x8e\x5b\xf0\x10\x51\x28\x3b\x22\xb2\xa7\x8a\x58\x50\x27\x1c\x31\xa6\xcb\x56\xbb\xad\xd4\x60\x38\x9e\x88\x4b\x8b\x16\x56\x24\x25\x34\x07\x42\xc2\x6c\x15\x07\x9c\xd7\x18\xb3\xec\x14\xc4\xf6\x0b\x26\x3c\x45\x72\x64\xc1\xa6\xa8\x6d\x11\xe5\x6e\x85\xd6\xad\x3a\xce\x15\x59\xda\x2a\xa1\xfc\x6d\xd4\x31\x2c\x08\x26\x49\xab\xf5\x5b\x3a\xba\x99\x09\xb4\x9e\xba\xfb\x8f\x36\x79\x7e\x87\xcc\x89\xd0\x24\xab\xee\x9d\x1b\x74\xe2\x93\x2f\x84\x00\x3b\x01\x81\xf4\x1a\xdf\x92\xec\xb8\x3f\xca\x78\x18\x2e\xf5\x53\x5e\x82\x1e\x3a\x9b\x25\x8f\x6d\xf7\x2f\xb7\x7b\x16\x4d\xaa\x2a\x27\x29\xc9\x7d\x71\x6b\xf2\x1e\x85\x74\x96\x1c\xd4\x4d\x9a\x39\x31\x16\x74\x0a\x86\xda\x5d\x0a\x2a\xc1\x12\x8a\xdf\xb8\xd3\xc1\xb8\xbf\x00\x62\xce\x26\x73\x9c\x87\xc2\x8d\x0a\x9a\x26\xc8\x9c\x46\x95\x29\xa4\x1b\x9a\xd1\xaf\x7a\x5f\x95\xb1\x5c\x26\x35\xd6\xcd\x16\xe4\x2b\x08\x65\x4f\x10\x79\xd3\x09\x74\x50\x82\xe3\x8d\xf8\x11\xda\xe5\xdd\x07\x74\xfa\xe4\x7d\xf0\x0b\x7a\x62\x17\x91\xa1\x7a\xfb\x7d\x8b\x10\x62\xe4\xda\x34\x28\xad\xe4\x71\x6d\x79\x42\xb7\x90\xe1\x31\xbe\x0c\x7c\x4e\xd2\x2c\x4c\x9a\x7b\x9f\x8f\x30\xd6\x9d\x5b\x45\x60\xa4\x04\x87\xc9\x8d\xb1\xf8\xf4\xa9\xc7\xc3\xa4\x57\x4a\x8b\x75\xf1\x76\xb9\xe1\x82\x63\xc4\x1c\x43\xae\x2a\xc5\x3f\xea\xb5\x12\x81\xd7\xaf\xf4\xe9\x02\xc7\xff\xe5\x5c\x59\x12\x90\x1c\x42\xc6\x0d\xf8\x14\xc2\x64\x45\x5f\x96\xc2\x75\xc7\x6d\x0a\xe8\xb7\x3b\xd4\xe4\x23\xfa\xc6\xb0\xb2\xbd\x27\x87\xe8\xbe\x55\xea\x08\x4a\x52\xe0\x14\xd1\xd3\x8d\xac\x22\x6f\x72\x5c\x90\x1a\x56\xd2\x2f\x34\x19\xc5\xe7\x71\x29\xa9\xb4\x82\x81\x42\xc2\x8a\xf4\x78\xf2\x93\x4f\x4d\xa8\x03\xa8\x92\xc9\x93\xa6\xdc\x42\x4f\xd7\x0a\xe6\xe8\x02\x56\x0d\x55\xaa\x62\x8e\x82\x39\x21\x42\xe9\xf7\x00\x80\x96\xf0\x88\x60\x6c\xa8\x2c\x36\x43\xf4\x21\xdd\x74\x98\x51\x11\xcc\x1e\xe9\x58\xef\xf7\xa0\x82\x48\xd8\x85\xd7\x18\x00\x72\x10\x8a\x50\x15\x07\x87\xc1\xdb\x31\x62\x22\xa5\x3a\xe7\x33\xb6\x9c\xca\x62\x00\xd4\x40\xde\x1d\x70\x2c\x18\x07\x08\x10\x94\x48\x0c\x7f\x10\x96\xe5\x1a\xb0\xd2\x0a\x47\x3b\x7c\x54\xc5\xed\x42\x7a\x96\x2f\x2c\x2d\x3c\xed\x3f\x4e\xe4\x38\x8c\x96\x60\xf5\xe2\x4f\xa0\x2c\xa1\x1c\x82\xe8\xca\x2b\x5b\x9e\x56\x71\x90\x46\xd0\xbe\x4c\x71\x70\xb6\x7b\x41\x88\x8b\x1b\x11\x8b\xd3\x12\x95\x64\xb1\x08\x50\x66\x46\x40\xc1\x89\x18\x72\x53\x60\x59\x2d\x79\x56\xcf\x07\x39\x18\x2f\x1e\x3c\x09\x90\x92\x2a\x98\x56\x16\xc1\x1b\x31\xbd\xb9\x70\xfa\xf2\xa8\x90\x6d\x15\xd3\x7a\x2b\xf8\xfe\x9d\xa9\xb4\x67\x30\x39\xf9\x3b\xfc\x52\x24\xe8\x74\x91\xe6\x48\x5f\x26\x72\xdb\x7d\x50\xc9\x7c\x4b\xb2\xb8\x3f\x53\x4a\x14\x7f\xfd\x6a\xa4\xd0\x13\x96\x1f\x70\x52\x21\x8c\x7a\xa7\xa5\x22\x1e\xbe\x60\xf8\xba\x5a\xc8\xc9\xab\xf2\xb8\x95\xe4\x64\xe2\x23\x4d\xb3\xba\x19\x13\xab\x56\x1d\xe7\xbd\xa0\x26\xca\xf3\xaa\xe2\xea\xe9\xf0\xce\x37\x38\x95\x02\x3a\xd9\x91\x6b\xb9\xe4\x41\xd0\xd4\xc3\x06\x20\x12\xa8\x86\x83\x91\x0b\xcd\x31\x1c\xde\x4c\xa4\x6c\x90\xe8\x80\x48\x61\x28\x75\x6e\x63\x50\x1b\x2e\x09\xe3\xfe\x4e\xe9\xb0\xe6\xd1\x5a\xac\x87\x88\xec\x07\x01\x27\x33\x96\x43\xc8\xe2\x19\xe3\x96\x3a\x93\xb0\xf3\x00\x75\x9b\xc4\xdb\x85\xb5\x0f\x28\x12\x1b\xbe\x27\x0b\x59\xb2\x05\x31\x6a\xa2\x49\x87\x8b\x3f\x0c\x56\x81\x7e\x93\x70\xf7\xea\x5f\xb7\x3d\xb4\xb0\x8a\xc3\xda\xce\xf4\x82\x90\x72\xe2\xda\xea\x16\xf6\x4e\x20\x65\x02\x34\x48\x03\x64\x48\xcf\x34\xc6\x20\x49\x92\x7d\x79\x72\x23\x9b\x21\x87\x30\x92\x83\xe5\x78\xa1\x5c\x22\x34\x3b\x46\x33\x42\x41\x59\x1c\x44\x1c\xf2\x2a\x0d\x5b\x4b\xce\x2c\x10\xce\xb2\x91\xff\xa1\x16\x05\xcc\xf8\x9c\x45\x88\xb1\x0d\xa2\x74\xc0\xfd\x9a\x99\x93\xd7\xe7\xcf\x79\xad\xe4\x3d\xbf\x9b\x50\xb6\x0d\x93\x37\xab\x71\xc0\x2d\xe6\xdb\xa9\x3c\x4a\xe9\xd5\x73\x99\xbf\x2b\xd0\xcb\xad\x21\x19\x9e\xda\x8e\xa7\x6c\x77\xb8\x5f\xb7\x78\x83\x29\x01\xc3\xbe\xce\x29\x03\xeb\xee\x0c\xa9\xe3\x80\x6e\x9e\x84\x84\xff\x92\x8d\x34\xbe\x4c\x64\xa0\x9a\x0e\x68\x71\xd0\x1b\xda\xf1\xad\x90\x1a\xd1\x8c\x2b\x8b\x29\x0f\x50\x54\x4f\x86\x27\xcd\x3b\x79\x87\x76\x78\x34\x21\xd7\x61\x3a\xfa\x31\x2a\xbf\xd0\xa2\x59\x78\x03\x41\x1b\x62\x0f\xe0\x61\xab\xf2\x95\xfa\x04\xaf\x1e\xfb\x14\x68\x90\x01\xec\x30\x70\x84\xe2\xa1\x65\x48\xfa\x79\x52\xd0\xda\xf9\x61\x7f\x6c\x96\xf1\xf4\x30\xc3\x14\xb9\x86\xda\xc0\xfe\x26\xf0\x07\xed\x73\x0d\xa6\x80\xb9\x44\xb9\x42\x84\xd2\x8d\x04\x47\x98\x79\x08\x10\x18\x17\x63\xb8\x8b\x11\xa3\x2c\x3b\xb6\x41\xc1\x10\x80\xa7\x09\xd5\xcf\x80\xbf\x94\x28\xc1\x77\x4a\x7d\xd9\x57\x35\x10\xfb\xcc\x4c\xd1\x58\x40\x33\xfc\x3c\x73\x01\x21\x78\x0c\xeb\x53\x69\xdd\x1a\xb3\xab\xba\x04\x3e\x11\x93\xeb\x31\x06\xda\x04\x21\x28\x84\x33\x4e\x8b\x2e\xea\x4e\x70\xa5\x74\x88\x60\x81\xae\x1f\x43\xab\xb1\x20\xa2\x56\x70\x08\x52\xc2\xab\x06\xf3\xe3\xa1\xcd\x6e\xf6\x05\x3f\x44\x7d\x54\x66\x23\xa2\x13\xe2\xac\x68\x48\x0d\xf9\xbd\xcf\xc2\x10\xa5\xea\x07\x91\xa4\xc4\xfc\xaf\x96\x40\x6f\xeb\xe6\x4f\x62\x2a\x01\x4b\xee\x43\x91\x30\x0d\x3a\x5f\x8a\x0e\xce\x84\x6d\x80\xc8\xa6\x9f\xfb\x2d\xb6\xa6\xb2\xce\x52\x29\x4a\x90\x8e\x86\x39\x93\x5f\xf3\xb4\xf2\x63\xc2\x89\x3f\x00\x25\x45\x3c\x48\x8c\x91\x4f\x76\x50\x5f\xa3\xc0\x81\x32\xdf\xc2\x57\xe4\xfc\x9d\x65\x41\xfd\xbc\x18\xf2\x29\x2c\xdf\x81\xec\x82\x16\xc0\x4a\x17\x37\xb2\x21\xcf\xb6\x03\x41\x38\xf4\x3c\xdd\x87\x0f\x3d\x9d\x69\xe6\x2c\x7e\x37\xea\x04\xf2\x9a\x4d\x90\x63\x5f\x1a\x0a\xbd\xc4\x7a\x62\x29\x8e\x77\x84\x12\xaa\x11\x7d\x64\xa1\x02\x96\x7e\x20\x22\x77\x71\x7e\x8c\xbe\xac\x2a\xd0\xd5\x87\x99\xe2\x94\xf7\x09\x07\x18\x7b\x18\x84\x79\x6a\x22\x21\x4b\x68\xd6\xf4\x44\x25\x42\x49\xc1\x09\x8d\x48\x8b\xe7\xe3\xf0\x54\xf7\x7c\x44\x29\xb9\x14\x98\xc6\x0c\x37\x45\xb4\x72\x2b\x43\x29\x24\xa2\x10\x1b\x72\x82\x9a\xc7\xa2\x53\x52\xce\x3a\x63\x08\x82\x28\x13\x47\x9c\xca\x25\x9c\xd3\x65\x31\xa7\x16\xc0\xab\x43\x1e\xbf\x8b\xfa\x90\xa0\x0f\x5f\x93\x6f\x8c\xba\x20\x26\x1c\x4c\xdd\xbd\x0b\x67\xab\x48\x09\x2b\x63\xe6\x42\xfb\x57\x7f\x17\xe8\x30\x3b\xe2\x9e\xdb\x16\xcb\x12\xb7\x37\xc3\x4c\xe6\x45\x12\x8e\x83\xc4\x74\x88\xc3\x19\xcc\x06\x6b\x07\xdf\x01\xbf\x3c\x00\x37\xfe\x5c\x4a\xdc\x10\x1a\xc6\x13\xd2\xc9\x48\x8f\x3d\x5a\x02\x1a\xc9\x22\x2a\x72\x72\x87\xc9\x3b\x90\xde\xa4\x14\x63\x07\x32\x15\x43\xad\x68\xa2\x00\x48\xc3\x85\x58\xdf\x29\xf0\x94\x3b\x2c\x4d\x5a\x63\x0f\x69\xb8\x6d\xf7\x01\x1c\xc2\x5b\x08\x40\xe0\xf4\xa1\x15\xa2\xae\xbf\x1b\x2b\xd9\x12\x0b\xf3\x22\x30\x98\xcf\x06\xaf\x8e\x6a\xdc\xe4\x2b\x4d\x07\x8a\x0d\x0e\x9c\x83\xef\xc2\x12\x9b\xd7\x8b\x98\xa5\x35\xf1\x10\x6e\xca\x68\xd9\xa0\x0e\x1e\x66\x81\x2e\x83\x34\x46\xbe\x27\x2e\x54\x82\xd6\x1d\x16\x44\x4b\x9d\x4f\x0a\x0b\x40\x23\x57\x0a\x9e\xdd\xec\xb2\x1a\x9c\x9c\x58\x13\x2c\x39\xe9\x41\x04\xb0\x76\x90\xbb\x96\x15\x38\x0d\x10\x98\xca\x12\x38\x78\x46\x00\x1a\xa5\xb4\x1a\x1e\x05\xcc\x81\x12\x37\x10\xf0\x14\x14\x82\x3d\xd6\xb2\x38\x2a\x0f\x75\x0c\x7b\x60\x54\x26\xf9\x12\x1a\xb0\x90\x11\x9f\x94\x13\xf2\x32\x90\x1f\xa0\x9a\xc1\xe4\x60\x10\xa3\x00\x53\xa6\xe4\x64\xb0\x33\x11\x25\x87\x4e\xfb\x85\x8d\xa7\x7c\x2e\x2c\x76\x0c\x99\xf5\x63\x98\xb8\xa9\x33\x30\xa4\xab\x00\x0b\x8b\x59\x87\x82\x39\x32\x25\x95\xea\x05\xa1\x05\x7c\x75\x4b\x5c\xa6\x5d\x8c\x92\x3b\x7c\x45\x4d\xeb\x29\xc1\xb4\xb9\x05\x45\x1e\xc0\x8e\x61\x52\x14\x84\x9b\xa2\x97\x0d\xd6\x90\xfd\x74\x06\x99\x8c\xbd\x9d\x17\xcd\xa0\x19\x5f\xcf\xe5\x95\x15\xd5\x3c\x39\x49\x74\x87\x04\x00\x11\xd4\xd4\xc7\x50\x8b\x2c\xa4\x56\xaf\xb3\xf1\xb4\x7c\x98\xe9\x6f\x86\x8b\x0f\x5e\x45\x43\xa1\xc5\x21\xb1\x31\xb6\x27\xf7\x80\xa0\x1e\x23\xf0\xae\x20\x2e\x24\xe9\x62\xd8\x60\x60\xaa\x7e\x39\xdc\x76\xf4\x5c\x1a\x09\x5e\xd2\x90\xc8\x4c\x1f\xc3\x61\xac\x1e\xa8\xa8\xea\x20\x24\x7d\x27\x5a\x2e\x20\x29\x00\xfe\x4a\xe9\x49\x5b\x31\x18\x5d\x43\x8d\x78\xff\xc4\xbd\x18\x5d\xfc\xc4\x48\x49\x2a\x8a\xa6\x5f\xcc\x70\xd8\x92\x78\x78\x12\xee\x22\xc4\x4a\xa6\x41\xd2\xd5\x0c\x99\x60\x25\xc4\xb1\x67\x4a\x81\xbb\x77\xe2\xb4\x20\xd5\xdd\xfb\x33\xab\xf3\x3f\x41\x40\x47\x2f\x0d\x8a\x36\x73\x69\xe2\x51\x71\x70\x91\xe8\x22\xf2\xc2\x27\x30\x16\x23\x3c\x32\x6e\x50\x41\x8b\xa7\x71\x8b\x46\xf1\x6c\xad\xc7\xf8\x89\x8a\x27\x46\x2b\x6e\x6b\xc0\x75\x88\x87\xfa\x99\x04\x13\xad\xfc\x27\x21\x53\xed\x69\x08\x17\xea\xe5\xba\x06\x4a\xe2\xb7\x3d\xc6\x8e\x68\x10\x79\x01\x29\xc0\x76\x2e\x01\xce\x39\x5e\x98\x80\xa8\x2b\xfb\xa4\x9a\x5b\x40\xe3\x0a\x56\x2b\x84\x5f\x86\x64\x32\x40\xdd\xd0\xb8\x13\x82\xf3\xa9\x63\xc8\x1b\x05\x09\xcc\xf5\xbb\xa6\xf2\x24\x65\x29\xe9\x5f\x42\x15\x49\x61\x50\xd2\x4f\xbe\xda\x1a\x55\xc4\x26\xa5\x2c\x2c\x70\x72\x6d\x80\x67\x50\x38\x75\xaf\x92\x87\xfa\x9c\x3f\x6b\x0b\x03\xbe\x0f\xf9\x7e\xc2\xc9\xbf\x13\x8c\xb3\x1b\xb5\xcf\x6d\xa6\x97\xc8\xe7\xf1\xdc\xbc\xf7\x22\x8e\x9f\xd3\xd9\x82\x3a\xb4\x55\x8a\x06\xe2\x58\xa5\xc2\xfa\xad\x22\xdb\x5d\x22\xdc\x75\xfd\x3f\x27\xe0\x4c\x48\xa8\x0b\x69\x28\xf1\x72\xec\x9e\x94\x0a\x8d\x18\xac\x69\x3d\x2f\xe0\x23\x2c\x8c\x38\x1d\xc1\xd2\xd7\xa0\xe8\xcd\xab\x6a\xc1\x75\x01\xf2\xc1\x71\x35\x5a\xc1\x1c\x08\xdb\x66\x0b\xe9\x15\x34\x40\x32\x78\x81\x12\x27\xca\xde\x89\x47\xf6\x74\x7f\x22\xda\x8f\x5e\xd7\x22\x80\x01\x6f\x4b\xf6\x55\x1a\x55\x52\x07\xe4\xbc\xc7\xf2\x5c\xb8\xfe\xc3\xc6\xc3\xa0\xa1\xc3\x03\xab\x0e\x40\xaf\x5b\x1b\xb4\x90\x95\x05\x34\x28\x97\x4f\x60\x74\x74\x38\x0c\x34\x8e\x83\x82\xfc\x1c\x7c\xa7\x36\xc5\x69\x27\xd8\xfb\xc7\xca\x40\x6d\x3d\xee\x7e\x18\xa0\xfc\xeb\x9a\x30\xb8\x94\x09\xb9\xab\x9f\x5d\x85\x0a\xf9\x03\xa4\x78\xad\x14\x9b\x80\x26\x18\x01\x08\xa2\x44\x1c\xfc\xec\x20\xef\x64\x26\x3d\x8c\xe0\xc9\x06\xc1\x00\x54\x89\x1d\xb2\x3d\x29\x44\x72\x49\xd8\xa4\x05\x7b\x9a\x43\x11\x29\x92\x28\x4d\x23\x8c\x81\x33\x99\x34\x39\x0d\xc5\x97\x0a\xb7\x2b\x70\x77\x26\x5b\x54\x68\x89\x89\x29\x81\x35\xd6\x3a\x9f\x73\xc8\x5b\x7f\xb2\xeb\x10\x08\xcb\xee\x1f\x5f\x90\x9a\x77\xae\x45\x0e\x03\x26\x80\x62\x64\xd7\x86\x93\xaa\x88\x53\xd5\x1b\xfe\xf8\xfd\x3f\x3d\xaf\x1e\x17\x10\xfc\x91\x4d\x65\xf4\xe3\xd3\x44\x68\x01\xae\x50\x8c\x94\x98\xdb\x17\x66\x6a\x9d\xb8\x35\x0c\x06\xe1\xc4\xf7\xb8\x52\xe2\xa2\x4a\x40\xf9\x2b\x44\xc1\x7a\x8e\xf9\x86\xf6\x55\xc1\x51\x5e\xbd\xe1\xd6\x88\x98\x13\xd0\xcf\x64\x0c\x95\x58\x1d\xfd\x14\xc0\x00\x03\x40\xfc\xbf\xec\xda\x46\x7e\xf0\x96\x34\x60\xa1\x38\x7e\x4a\xff\xbc\x65\x44\xc0\x1d\x9b\x6d\x4c\x2e\x8b\x78\x3f\x2f\x59\x9c\x54\x07\xb8\x10\xba\x5e\x8f\x04\x10\x42\xc7\x86\xb2\x22\x52\x61\x45\x38\x89\x27\x99\xaf\xc6\x4b\x26\x11\xa9\x2f\xa7\xd0\x9a\x09\x4f\x20\xaf\x9a\xc3\x93\xb5\x91\x54\x02\xe2\x83\xd8\x32\x9e\x50\x2f\xaa\x88\x36\xd1\x8a\x93\xbb\xcb\x7d\xc0\xe7\xb8\xd7\x11\x69\xaa\x49\x82\xd6\x95\x35\x2c\xa1\x40\x97\x80\x2a\xc2\x90\xd3\x0f\x4f\x2e\xe8\x28\x72\x4a\x41\xab\x4a\x75\xf0\xb3\x7d\xfb\xe8\x85\x51\x80\x17\x1f\xad\xb1\xc9\xd5\x2f\xa0\x2a\x82\xe2\xf5\xcd\x9d\x95\x70\x90\xf6\x6b\x33\x46\x42\x83\x90\x43\xb6\xf0\xb0\x99\x11\x67\xd6\x63\x2d\xec\x0a\xea\x30\xe7\x64\x27\x05\x8c\xaf\x1f\xdf\x0d\x47\x84\x37\x8a\x3a\x10\xa9\x80\xab\x83\x31\x32\x36\x00\x96\x9c\xf6\x20\xa9\xb8\x86\x82\x4b\x44\x3f\xcb\x06\xbe\xd1\x74\xe9\xb7\x2d\xa7\xd4\x90\x95\xac\xae\x4d\xcf\xbd\x53\x94\x01\x2e\x74\xd7\x87\x8a\x02\xea\xac\xed\x06\x96\x41\x61\x69\x69\xee\xce\x01\xa6\x0b\x70\xc4\xa7\xc1\x77\xfa\x1b\x3c\x42\xe0\x2e\x9c\x41\x34\x44\x83\xbc\x01\xe9\x35\x20\x03\xca\xe7\x47\x74\xd9\x51\xcf\xf4\xeb\x4c\xe8\x9e\xb2\x49\x2b\x20\xd2\x1a\x59\x30\x48\x93\x81\xbc\xef\xc3\x90\x10\x81\x86\x90\xe9\xae\x44\x47\x44\x24\xbe\x43\xeb\x91\x44\xd7\x43\xa2\x3b\x1b\xed\xb7\x9a\x08\x75\x82\xbf\xd2\xa0\xe5\x2f\x36\x60\xe6\xb0\xb0\x33\x80\x52\x1f\x92\xb7\x10\xe8\xae\xb0\x17\x9e\x6c\x0a\x3c\x29\x6f\xdf\x15\xa6\x12\x85\xf8\x04\x70\xa0\x2b\xdc\xb7\x8a\x07\xd2\x98\x50\x16\x61\xfd\xd6\xde\xfc\x47\x8a\x4c\xdc\x3d\xd9\xe1\xc6\xb6\xf8\xb0\x92\x1c\x8b\x8d\x46\x59\x26\xb8\x7c\x2d\xc0\x85\xce\x5e\x0b\xff\xf7\x65\x08\x64\x05\x92\x94\x50\xfe\x55\x29\x3f\xea\x70\x88\xcf\xdc\x3e\xa1\x4e\x15\x5c\x15\x90\x51\x5c\x13\x4b\x02\xef\x31\xa7\x83\x8e\xd5\xb2\xb9\xff\xe4\xd2\x2e\xc5\x83\x51\x6e\x11\x88\x81\x14\xf0\x0d\x14\x29\x44\x5c\xd0\x56\xfb\x64\xd4\x15\x38\xb5\xcc\x8e\x9a\x68\x00\x60\x99\x62\x60\x30\x84\x13\x5a\x89\x88\x7f\x86\xd8\x95\x10\x5f\x19\xcc\xae\xbe\xc1\x62\x41\x95\x00\x31\xd8\x0c\xc8\xd6\x9a\x12\xd7\x94\x53\x45\xbc\x49\x02\xc3\x31\x32\x98\x6e\x58\x13\x17\xfd\xe7\x78\x28\x26\x24\x6f\xf3\x31\x6e\xbb\xa1\x66\x56\x51\xd9\xe0\x1b\x37\xdf\x99\x9f\x06\x67\xba\x2b\xcc\xfb\x6d\x77\x37\x47\xe8\x0e\x31\xdd\x85\x48\x24\x39\xb5\xce\xec\x2b\x35\xef\x41\x4a\xef\x22\x39\xb1\x53\x92\xe3\xfc\x4d\xf5\x62\x28\x15\x82\xdc\x81\x82\x5c\xf3\xa6\x3c\x1a\xb9\x4d\x6b\xfa\x2a\xf6\xd4\x75\x61\xf0\x07\xa1\xe8\x02\x6c\x94\xb1\x2e\x24\x88\x88\x9e\xc1\x99\xe9\xe0\x90\xe0\x6a\x7b\xb2\x19\x1a\x01\xda\xb0\x32\xa2\x5d\x92\x3b\x58\xee\x4f\x9a\x6e\xcc\xfc\xc1\x18\xc3\x64\x8e\xf3\x57\xa3\x7d\x01\x30\x34\x0a\xcc\x9c\x3b\xfd\x47\xff\x95\x36\xd3\xb6\x7b\x00\x07\x74\x3a\xda\xd7\xdc\x92\xcc\x26\x7a\x88\x1e\x28\x2f\x46\xa0\x85\xc2\x5a\xf5\x90\x2b\x9a\xaa\x9f\x44\xb7\xc8\x2e\x1d\x78\xa6\xf0\x4b\x32\xb7\xf5\xaf\xb6\xe9\x52\xd4\x00\xa5\xe4\x41\x3a\x1a\x34\x76\xb5\xa8\x17\x20\x6c\x44\x53\x3d\x27\x01\x63\xd1\x36\x5b\x80\x0a\xcb\x8d\x0d\x88\x7f\xa5\xdf\xc4\x15\x49\x02\x64\x2a\x62\x21\xe0\x43\x93\x07\x0b\x30\x29\x76\x87\xe2\x01\x6a\x9a\xda\xd9\xc0\x2f\x95\x84\x09\xc1\x04\x24\x72\xc1\x22\x55\x7f\xaf\x50\x84\x75\x38\x0f\x99\x45\xd0\x6f\xa0\x00\x42\xef\xe8\xa9\xc5\x17\xef\xc4\x07\x69\x48\x14\x18\xd9\xb2\x1d\xce\xea\xfc\x58\xd5\xd9\x4c\xe0\x39\x40\x05\xff\x89\x28\x03\xba\xcd\xb0\x79\xd7\x22\x4c\x30\x87\x96\x49\x14\x4b\x11\xa1\xf4\x25\x81\xa4\x14\x1a\x13\x10\x54\x31\x3f\x94\x91\xae\x45\x0d\xe1\x61\x78\x01\xde\xb1\x52\xb8\x23\xef\xb8\x02\xbe\xbe\x77\x88\x67\xd0\x10\xf7\x09\xd0\x50\x86\x26\xc5\x34\x8f\x7b\x5e\x02\x10\xe1\x7d\xc2\x02\xc5\xad\x81\xa2\x4a\x8b\x0f\xc3\x7d\x85\x0f\xa4\x9a\x2e\x5c\x0d\xc5\x05\x9e\x3d\xb9\x72\xc4\x12\x0e\x9f\x45\x6e\x01\xae\xda\x77\x51\x88\x78\x36\x61\x90\xe5\x5d\x3a\xf4\xff\x1a\x2c\xa5\xc0\x9e\x0b\x32\x6e\xdd\x72\x00\xd5\x92\xec\xb1\x62\xb6\xb6\x1c\x82\xa4\x8e\xcf\x1f\xb4\x9a\x9f\xc7\x16\x15\xf8\x9e\x2a\x95\x25\xe1\xcb\x04\xe2\x4f\x37\x20\x3b\x86\x37\x50\xee\x91\x60\x2a\x24\x21\x83\x20\x28\xa1\x32\x46\xb2\x6d\xbc\x5d\x32\x3a\x21\x4b\xcd\xdd\x55\x45\xa5\x4d\x64\x8c\x8e\xff\xd5\xa1\xb8\x57\x7f\x23\xcf\x59\x6a\x08\x7d\x16\x5a\x4e\x27\x3a\xb7\x77\x4f\x55\x46\xb8\xad\x46\xf1\xbc\x7c\xb3\xd1\x22\xac\xc6\x29\x00\xb3\x9b\xea\xe9\x41\x08\x10\x48\x6c\xba\x77\xe4\x04\x6d\x1d\xb3\xd5\x84\x1d\xc6\x0f\x5f\xb3\xd9\x7a\xde\xe0\x73\x8b\x98\x4b\xf9\x58\xb8\xc5\x94\x5c\xee\xdb\x36\x16\xc4\x7e\x2f\x17\xf7\x0d\x20\x3b\x89\xb5\x1b\x5a\xfd\x29\x8e\x05\xd9\x36\x61\xf9\x07\x6f\xdc\x95\xbc\xcf\x05\xe7\xf8\x82\x3b\xcc\x15\x79\xc4\x5f\x26\x26\x57\xf9\x9f\x6b\x83\xea\x7e\x73\xe7\xd8\x30\xc8\xd0\x1d\xc8\x19\xe4\x52\x1e\x68\x28\x9a\x7c\x10\x06\x3b\x37\x09\x01\x6e\x08\x1b\x38\x06\x5e\x2f\x6d\x7f\xc5\x3a\xbe\xc3\x5b\x6a\x90\xf5\x63\xba\x09\xe0\x17\x72\x72\xbd\xb8\x59\xcf\xc3\x41\x49\xe1\x15\x35\x8c\x0b\x93\xc0\xaa\x4e\xe5\xd7\xf8\x8b\x57\x43\x09\x19\xb4\x18\xf8\x4e\x11\x51\x3c\xca\x54\xc3\xad\x9e\x39\x09\xf2\x27\x98\xa3\xe9\xcd\x3c\x64\x25\xa5\x15\xf4\x5d\x6c\xc5\xe9\x64\x55\x11\x40\x4b\x72\x0f\x19\xc7\x96\xb3\xd3\x8f\x9c\xef\x8a\xdb\x49\xc9\x7c\x4b\x38\x02\x0e\xd7\x45\x6c\x66\xa5\xab\xb3\xfc\xb1\xa0\x1c\x28\xbf\x5e\x05\x1a\x35\x26\xc8\x00\xe4\xf2\xca\x2e\x52\x10\x40\xf4\xfa\xa4\x67\x4e\x51\x0a\xf1\x4d\x8a\x94\x64\x95\x1a\xa3\x68\xbf\x5d\x37\xa1\x87\xd4\xfc\xb6\x52\x00\x8a\x64\xc5\x4e\xf8\x1e\x9e\x2b\x81\x3b\x3e\x80\x6f\x1c\x37\x7b\xb6\x52\xc2\x64\x23\x25\xfa\x8d\x06\x88\xc5\x84\xd2\x20\x6b\x93\xa9\xa2\x0c\x86\x89\x22\x14\xcb\x6b\xd1\xbb\x19\x13\xb0\xd2\xca\xbe\xb9\x96\xca\x02\x00\xe7\xc4\xc0\x1e\xa3\x39\xde\xdb\xe0\xc5\x7f\x4d\xc2\xc3\x4c\xb9\x0d\xfb\xff\xf1\x8d\x0e\x24\x57\x63\x90\x22\x2d\x91\x3d\xc6\x9b\x4a\x57\x75\xa3\x9e\x7e\x21\xc2\x68\x16\x60\x88\xea\x66\x58\x0e\x86\x32\x21\x4f\xc3\x31\xb2\x39\x63\x04\x5c\xf4\xe7\x46\x9b\x7a\x2b\x7b\x58\x4e\xcc\x35\x82\xe4\x2d\x52\x86\x4e\x18\xac\x19\x41\x1b\x4b\xf2\x18\x92\x0d\x1d\x88\xaa\x88\xb8\x35\x0f\xb0\x8c\x7f\xb0\x94\xf2\x67\x4c\x13\x1e\xaf\xea\x43\x03\xf4\xf9\xa1\x8e\x4a\x50\xfd\xf8\xf2\x5f\x72\xa4\xfd\xdb\xff\x45\x53\xcd\xb4\x2f\x42\x84\xf9\xf8\x66\x9f\x58\x02\x5a\xa3\x1b\x1a\x14\x14\x1c\x97\x53\xb1\xec\x61\xe8\x39\xc5\x0f\x8c\xc7\x8d\x86\xb1\xa3\x87\x2b\x51\x1b\x04\xc3\x40\x0d\x0e\x24\x94\x2a\x79\x81\x19\x1a\x6a\x25\xa7\xae\x15\x76\x1e\xd1\x50\x35\xea\xa8\xf2\xf2\x90\x3f\xd2\xe0\x69\x88\x42\x7c\x13\xb3\xd9\x6a\x14\x16\xd5\xc2\xe9\x0d\x31\xf0\xe2\x7a\xae\x20\x75\xb8\x3b\xb2\x73\x75\xcf\x70\x06\xb0\x06\x8a\x8b\x02\xe0\x59\x6d\x16\xda\x28\x63\x0b\x6d\xc2\x69\xe9\x98\x90\x09\xf4\xca\xfe\xff\xf3\x54\x0c\x4f\x45\xb4\xc6\xed\x66\xcd\xbe\x85\xad\x8e\x79\x0b\x29\xeb\x5b\x1c\xbe\xa9\x81\x4e\x49\x33\x94\xca\x26\xc8\x7a\x60\xd0\x4d\x1c\x9d\x19\x1b\xa3\xd3\x06\xa0\x30\xd1\xbd\x3b\x7a\xa8\x01\xa6\xa1\xd6\xb9\x44\xb2\xf1\x87\x80\x36\xa1\x96\xb8\x70\x8b\xef\x29\xb5\xd4\x4c\xe4\x1a\x17\x6d\xb7\x06\x50\x21\x7b\xa1\x1d\x0b\x31\x0f\x82\x6d\x33\x32\xc4\x32\x67\x09\x30\x4e\x33\x21\x5d\xfc\x75\xa2\x9d\x41\x16\x20\xf2\x1c\xd7\x2a\x76\x8a\xde\x6b\xf7\xfa\x9b\xea\x57\x0b\x50\x63\x3e\xe0\x95\xc2\xbd\x6b\x1e\xe9\x83\x88\x20\xf7\x0f\x80\xcc\x40\xdd\x3a\xc5\x44\x99\xcb\xd7\xc6\x88\x5a\xd8\x22\x88\x44\x12\x86\xed\x46\xdc\x9b\xbf\x00\x87\xf1\x5e\xa1\xaa\x07\x4e\x00\xa6\x3c\x7c\xc1\x99\x82\x72\xaa\x3a\x7a\x36\xc0\xe5\xec\xcb\x89\xf7\xbe\xbb\xc7\x65\xcc\xd0\x59\x92\x54\x50\xab\x6d\xa3\x49\x19\x84\xa6\xb6\xcf\xf7\x96\x09\x19\x97\x72\x8c\x51\x4a\xbf\x5b\x5f\x07\x84\x99\x17\x37\x00\x02\xf6\x7b\xfa\x8e\xd7\xd8\x59\xc7\x46\x21\x03\x51\xc3\xfa\x8e\xa2\x78\x38\x7e\x68\xec\x95\x35\x28\xa8\xe2\xfd\x53\xc2\x6a\xfa\x2c\x4d\x96\xea\x10\xbc\x54\x2b\x8b\x5e\x92\x98\x94\xae\x19\x8b\xb7\x54\x13\x8b\x5b\x4a\xa9\x57\xef\x44\x84\xf3\x08\xd8\x2f\x80\xb4\xae\xbe\x63\x96\xac\x66\x89\x43\xd9\xd4\x84\xa3\xc0\x38\x07\xcc\xbb\x2f\xa1\xac\xed\x89\x0a\xd9\xa0\x24\x5a\xbe\x47\x14\x7e\xf4\x4f\xee\x61\x0a\xa8\xab\xee\x95\xbf\xcc\x72\x45\x60\x48\x90\x29\x0a\x70\x85\x21\x5e\xee\x9a\x93\x74\x30\x09\x36\x63\x8a\x41\xdb\x20\x95\x32\x49\x47\x6c\x0f\xe3\x99\x72\x51\x69\x80\x47\x7b\x69\x78\x66\x56\x4a\x64\x76\x6f\x5e\xe7\xcc\xf5\x95\xb1\x31\xf8\x17\x6c\x85\xcf\x98\x39\x86\x35\xbf\x00\x9e\x32\x1c\x48\x00\x2b\xc8\x72\xe8\x31\x65\x04\x4a\x3f\xdf\x96\x82\xd9\xcc\xb5\x23\x93\x03\xc4\xf6\x11\xe9\xba\xd9\x94\xd2\x1a\xcf\xb7\x96\x74\xb3\x05\xc9\x9b\x38\x2b\xa2\x77\xed\x9f\x90\xd8\x8e\x7e\x05\x15\x06\xa5\xbd\x57\x50\x43\x84\x68\x66\x26\x1b\x01\xd7\xb7\xef\xec\x4c\xb5\x9c\x20\x81\x87\xc7\xec\xb1\x4f\x2d\xa0\x40\x05\xf0\xfb\x26\x7e\x54\x4d\xbb\x47\x08\x32\x82\xc5\x55\x28\x98\xf8\xb7\x6e\xf7\x08\x2d\xa5\xf3\x1e\xa0\x2e\xb9\xec\xb9\x63\x1e\x71\x08\x00\x96\x71\x32\x9d\xe0\x77\x14\x12\xa8\x6e\x58\x44\x11\x5c\x85\xb0\x15\x62\x91\x10\xeb\xb4\x88\x87\xc3\xe0\x04\xb9\x52\x72\x1f\x04\x8e\x39\xd5\x77\x00\x81\x7d\xaf\xec\xb1\x59\x95\x5f\x20\xff\x2b\xbb\x26\x5f\x95\x01\x85\x49\x75\x6c\x48\x4e\x15\x54\x4d\x44\xc2\x35\x75\x80\x4c\xbe\x40\x04\x07\x48\x83\x51\x08\xc9\x05\x73\x54\x1b\x24\xef\x12\x94\xfa\x21\x1f\x34\x5f\x4d\x84\x89\x30\x3c\x1b\x17\x06\x8f\xb0\x41\x66\x68\xad\xa9\x58\x04\xc1\xfe\xdf\x21\xe8\x0c\x62\x95\x32\x9b\xcd\x10\x5f\xa7\x26\x0e\x5e\x05\xef\x9d\xd8\x0a\x84\x54\xbb\xc9\xf2\x0e\xfe\x83\xb2\xc0\x3d\x59\x0c\x40\x36\x27\x3b\x20\x43\xc8\x46\xdf\xc3\x1c\x19\x42\x42\x17\xa1\xf1\x0a\xac\x5e\x10\x35\x3e\x2a\x07\x73\xbc\x40\xa1\x72\x31\xb6\x42\x90\x05\x0b\x39\x17\x88\x44\x0c\x9c\x47\x65\x5a\x5c\x05\x34\x34\xed\xd0\x31\x27\x53\xb0\x81\xb6\xba\xbf\x76\x05\xa4\xdc\xa2\x46\x1f\x25\xbc\x69\xa7\xba\x12\x00\xae\x43\xb8\xfd\x90\x2d\x2d\xbd\x81\x63\x8b\x40\xb2\xe3\x1a\x05\xc0\x59\x72\x9e\x96\xe4\xa1\x6c\xfa\x8a\xeb\x00\xba\x21\x3d\x4b\x56\xca\x8b\x72\xc3\x5e\x12\x79\x81\x76\x6b\xf2\x8f\x3a\xd3\x84\x9c\x63\x48\xb7\x28\xc2\x8f\x71\xf9\xe5\xce\x97\x97\xcc\x32\xdd\x8f\xe1\xc5\x0b\x86\x3f\xa4\x8c\xcd\x89\x18\x39\xd2\x65\x48\x4e\x14\x7d\x3f\xc5\x80\x9a\x48\x4a\x60\x2b\x47\xdf\x6e\xe4\x08\x45\x79\x7d\xa7\xfc\x28\x90\x0e\x30\x03\x64\x50\x41\xd3\xfb\x7f\x4f\x0b\x49\xf2\x02\x9c\x20\x13\xa5\xa4\x6d\x56\x31\x3f\xe7\xaa\x94\xee\xa0\x3e\xa1\x9c\x17\xcc\xd0\x90\xbc\x04\xba\x66\x1a\x5a\x2a\x3d\x40\xcf\xae\x8a\xfd\x8f\x80\x53\x3d\x4f\xfa\x2c\x4e\xea\xd9\xc5\x59\x22\x36\x84\x39\xc0\x91\x0a\xca\x88\x50\xb3\x00\x08\x6c\xb8\x33\x8c\x88\x26\xc5\x39\x90\x00\x0f\x9f\x5d\x81\x1a\x85\xf7\x74\xc5\x80\x0c\x78\x49\xc9\x40\xef\xb4\x15\xc5\xfc\x24\xd7\x46\xa9\xa1\xec\xbd\x84\x75\x94\x42\x54\x8d\x10\xb7\x9c\xb9\x84\x73\x7f\x64\xc4\x16\xca\x61\x43\xcc\x34\x1f\x7e\x4b\x30\x2a\x68\x40\x96\x8f\xa0\x86\x97\x29\xb1\xb5\x16\xc8\x00\x3f\x11\x90\x18\x4f\x81\xc2\xbd\x6d\xa7\x95\x14\x66\x0d\x7a\x3e\x7e\xa7\xf3\x45\x78\xc1\x9d\xbd\xee\xcc\x46\x3f\xde\xa1\x8b\x34\x52\xb2\xc6\x12\x2e\x63\xe2\x84\x45\x4a\xc0\x37\x95\x30\x91\x39\x92\x31\x22\xc1\x0a\x78\x48\x8b\x21\x88\x30\x22\xde\x05\x2c\x23\xce\x65\x9c\x82\x96\x1d\xf5\xcc\x78\x57\x74\xd3\xea\xe2\xc7\x7f\x8e\x39\x47\x1e\x0d\xa1\x7c\x4b\xc1\x74\x6f\xcd\x13\x2e\xe8\x51\xfa\x41\x1e\x1b\x5b\x1b\x8b\x3a\xc3\x51\x29\x29\x0e\x84\xa9\xad\x41\x1b\xe2\xd2\x73\x4c\xb9\xb5\x60\xa1\xd2\x5c\x5f\x2a\x23\x6f\xc6\xfb\xd6\x0e\x1a\x72\x6c\xf2\x42\x14\xc8\x16\x26\x46\x04\x06\x10\xae\x94\xa4\x14\xce\x1b\xef\x42\x25\x1e\xb1\x64\xd7\x15\xc3\x7c\x98\xff\x32\xd6\xfd\xdf\x16\x4d\x1b\x9b\xa7\x46\x23\x21\x4b\xe2\xc5\x98\x8e\xd4\x5f\xb1\xda\xa4\x27\x6b\x8f\xc9\xbc\x5e\x24\x59\x0f\x6e\x45\xc6\x5a\xed\x42\xd9\x53\xb0\x8e\xf2\x8c\x4a\xa7\xaf\x8b\x79\xa9\xb8\x47\x78\xb2\x8a\xd0\xb7\xf2\x66\x11\xb6\xc8\x69\xa9\x3b\x0a\x72\x47\x81\x19\xe2\x3a\x93\x0a\xf6\xf3\x03\x8c\x14\xa3\x30\x32\x44\xa5\x31\xad\xa6\xda\x9c\x1e\x04\xc5\x05\x81\x91\x9a\x14\x20\xf6\x26\xdd\xd6\xd7\x49\xd8\xd3\x98\xfc\xab\xca\x58\xc8\x5b\x27\x37\xfc\x0b\x58\x38\x2c\xf2\x2a\x02\x7e\x95\x05\x7d\x20\x9a\x17\x26\x87\xce\x89\x7f\x70\x92\x10\xb9\x6e\x94\x9e\xfc\x26\xf4\xe3\xea\x74\x85\x29\x70\x1c\x72\xf1\xe0\x01\x1a\xf2\xc3\x59\xf3\xd8\xe8\x00\xb7\xed\x6d\xea\x35\x55\x92\x66\x4d\xaa\x1c\x61\x1c\x9d\x0b\x6d\x99\x3d\x8d\x40\x77\x69\xae\x11\xb0\x78\x62\xce\x70\xd4\xb4\x64\xf3\xfb\x12\xe3\x92\xc9\xb0\x38\xc8\x58\xd6\xb4\x38\x8e\x05\x0d\x87\x46\x06\xed\xbc\x22\x3d\xa3\xa5\x41\xf1\x33\x46\xd5\x48\xae\x82\xea\x5c\x51\xae\xd1\xa0\xe1\xd0\x4b\x5e\x8e\x40\x50\x37\x1d\x28\xb6\xa5\x88\x71\x86\x4c\x4c\x23\x5e\x5f\x63\xab\x07\x25\xf0\x86\x4f\x85\x24\xbd\x80\x21\xee\x83\x7c\x96\x41\xc7\xc9\xfa\xe7\x0d\x76\x83\xb0\x11\x2b\xbb\xa9\x05\x5d\xb7\x71\x1b\x95\x70\x9e\x45\xaa\x6a\xaf\x30\x86\x86\x49\xea\xac\x46\x88\x08\x6e\xe1\xc8\x9a\xe7\x10\x17\xc5\x33\x6c\xb9\x5a\x9d\xa8\xdd\x29\xb6\x33\x72\x6f\x95\xce\x2f\x63\x11\xb3\x2a\x21\x2c\xa2\xd0\xa3\xde\x7f\x5c\xe1\xbd\x2c\xef\xcf\x85\x90\x0b\x08\xd8\xc2\x6e\x4c\xb7\x61\x28\xf1\x7d\xa6\x49\x03\x1c\x78\xc1\x31\xc4\x95\x30\x55\x8e\xfa\x58\x95\x40\x29\x8c\xd4\x08\x0d\x82\xc9\xdc\x75\xf3\xcc\xc6\xe2\xd4\xa4\x4c\x10\x1b\xf3\xaa\xe5\x08\x94\x56\x39\x1e\x57\x35\xb6\x57\x12\x03\x9e\x21\x60\x9d\x7d\xef\x31\xf7\xc5\x67\x06\x50\xce\x86\x19\x35\x89\x10\x2b\x61\xe1\xbe\x71\xbb\x3b\x34\x0a\x5e\xa0\xc8\x0b\xd7\x0e\xd6\xa9\x73\x4b\x99\x94\x3d\xa8\x7f\x60\xd4\x3f\xb9\x35\x4e\xf7\xb1\x08\x03\xf1\x08\x5f\xc2\x10\xbd\x34\xb9\x56\x8e\x60\x4d\x56\x2c\x99\xe7\xca\xcd\x4b\xee\xf9\x79\x81\x17\x5c\x5b\x4d\xa5\xe7\xc2\xad\xb6\xfb\x7c\x2a\x4a\x5a\x69\xcd\xfe\x2d\x93\xcf\x0c\xa6\x7c\xcc\x6d\x45\x4a\x9f\x35\x00\xb5\x82\x12\x81\xdc\x8d\x09\xa1\x51\x2c\x85\x44\x37\xb3\x0e\xe1\x18\x57\x6f\xe5\x44\x78\x5b\x95\x1c\xc2\x75\xf2\x78\x88\xb0\x18\xbe\x14\x79\x70\xdf\x27\x3e\x60\xed\x20\xc2\xb8\x51\x8a\xd5\x61\x88\xa2\x4a\x36\xb9\xd8\x0c\x39\x57\x30\xb6\x1b\x4f\x8c\x22\x90\x7a\xa9\xc6\x53\x01\xe7\x39\xa0\xfc\x73\x24\x1f\x9d\x6a\x10\x5c\xe3\x43\xca\xb8\xc5\xb6\x86\x29\x21\xec\xd0\xea\xa0\xe8\xf8\x70\xf3\x9c\x95\x08\x37\xa5\x50\xdf\x26\xc6\xf0\xf3\x02\x2a\xb2\x0a\x48\x91\x07\x28\x75\xea\x56\xbb\x83\x98\x11\x35\xcb\xd0\x7f\x4b\x50\xf4\x1b\x61\xa5\x43\x5e\x09\x85\x72\x4a\x22\x89\xd5\x38\x99\xe7\x3a\x78\x88\x58\x49\x30\xa3\x84\x40\x04\x51\x0c\x19\x7e\x59\xae\xcf\x70\xe0\x00\x1f\x06\x40\x39\x14\xef\x17\x67\xbd\x00\xd6\xc2\xe8\xfc\x99\x14\xe7\x29\x70\xcb\x66\x32\xc1\x68\x13\x00\x71\xd0\x15\x47\xc4\x28\x08\x4a\x13\x33\x0a\x02\x87\x72\x88\x14\xde\xe6\xa3\xf8\x34\x09\x01\xee\x6b\x8b\x3c\x91\x88\x3c\x6a\x0d\x60\xcf\xcd\xcd\xf8\x6f\x2a\x74\xb2\x35\x68\x36\xc6\x2c\xf3\x01\x67\x52\x01\x1a\x5f\x51\x66\xaf\x59\x2a\x1a\xb2\x4f\x11\x2b\x01\x5b\x25\x7d\xaa\x9d\x32\xbc\xa4\xd8\xc4\x07\x0b\xad\x41\xc2\xdd\x12\x40\xce\x40\xc9\x3b\xf9\x2b\x15\x0f\x33\x0f\x46\x0d\xb9\xc8\xf6\xe9\x5d\x8f\x16\x57\xcf\x5e\xec\x97\x87\xd9\x8e\x19\x74\xba\x46\xdb\x40\xb2\x6d\xca\x71\x9a\xbf\x49\x9d\x7b\x09\x4e\x42\xc7\xc8\xc1\x07\xb5\x38\x87\x69\x31\x2a\xbd\x84\x81\x49\xcc\xa0\x35\x63\xad\xa2\xb2\x5c\x7c\xd4\x93\x19\x27\x9c\x98\xc7\xd6\x0b\xb1\xd8\x7c\x9a\x88\xa4\xcc\x14\x3b\x4c\x7c\x0b\x85\x08\xb9\xbd\xb0\xad\xc5\x92\xc1\x10\x49\x9f\x70\x00\xd1\x25\x7e\x72\x28\x26\xb1\x6a\x54\x08\xc8\x16\x22\x0d\x56\xbf\x38\x9c\x12\xf5\x67\x86\xa0\x7f\xe1\x31\x2a\x86\x3e\x54\xa1\xda\x06\xff\xe1\x2f\x81\x94\x5f\xb8\x50\xbc\x8b\xdf\x70\x9e\xb2\x58\x5f\x70\x55\x50\xd7\xdb\x2b\xea\x09\xe6\x0e\x59\x89\x92\x84\x50\x2d\x89\xcf\x8d\xea\x0c\x1b\x15\xe9\x13\x4c\x00\xcf\x8f\xa2\xdc\xbc\x25\x33\xb1\x65\x0d\x75\x58\x65\xb5\x37\x15\x40\xf4\x8c\x6d\xde\x3c\x85\xbe\xd1\xae\x8d\xf1\x56\x3a\xd1\x62\xde\xd2\x73\x6e\x5e\x7a\x3c\x15\xd9\x33\x3d\xe8\xd1\x22\x62\xe9\x2e\x52\xf8\xeb\x77\xa2\x35\x13\x9d\x3b\xc6\x7b\xbe\x98\xb1\x1b\x16\x9a\x78\x5a\x15\x47\xa9\x48\xa9\xeb\xac\x61\xed\x52\x9e\x2f\xba\xc0\xb2\xf5\xb5\xb9\xad\xd4\x38\xb7\x45\xbb\x00\x33\x86\xed\x04\x16\x37\xb7\x36\x11\xd7\x6e\x4c\xe8\xf1\x94\x40\x6a\x07\x7f\x7e\xed\x5d\xfb\x27\xe4\x53\xd4\x3b\xbe\x61\x01\xa7\x97\xef\x60\x30\xa5\x02\xc7\x61\x24\x51\x6d\xa6\xdb\x1d\x6b\x6e\x80\x19\xb4\x8e\x0c\x9c\xd0\x35\x5f\x61\x6d\x69\x76\x9d\x40\xb4\x45\xde\xb0\x64\xe5\xd3\x6c\x71\x2a\x04\x01\xf9\x00\x17\x0d\x78\x92\xc6\x61\x36\x2f\xe7\x08\x4d\x2a\x63\x81\x22\x7a\x80\xdc\x87\x1c\x20\xd8\xd1\x84\xd2\x62\xa2\x41\x7d\x34\xc9\x87\x95\xc2\x6a\x65\xa6\x59\xa3\xae\xa7\x97\x19\x17\x2e\x38\x97\x88\x44\xeb\x45\xc0\xa7\xb8\x23\x06\x87\x6d\x9c\x2f\x7e\x1b\xe0\x02\x06\xa1\x9b\x59\x57\x34\xe2\xdd\xab\x34\xa2\x73\x5b\x7a\x0f\xc4\x7a\xe5\x48\x2e\x4d\x38\x02\x36\xc6\x56\xc5\x1f\xec\xb0\x45\xf1\x4a\x3d\x57\x90\x3d\xb2\x71\x85\xf3\x9b\xb3\x9f\xfb\xaf\xbc\x90\xf5\x9c\xb0\x24\x81\x3e\xed\xce\x1f\x03\x04\x9d\xb7\x61\x46\xa1\x08\x3c\xdf\xd9\x60\xd5\x0c\xf6\x41\x31\xb7\xb1\x1f\xa1\xd6\xb7\xbb\x6f\x66\x8d\xa1\x03\x6b\x0d\xcb\xad\xf6\x06\x03\xb9\x8d\x55\x2f\x5a\xfb\x2a\xd7\x31\xd2\xa9\x07\xef\x55\x3e\x42\x79\xad\xa7\x59\x1e\x81\x41\x43\x43\xb9\x05\x67\x90\x24\x10\x8b\xeb\xdc\x84\x41\xff\x35\xf0\x72\x6c\x39\xec\x58\xf9\x17\xa9\x27\xbd\x5d\xab\x07\x59\xc3\x4c\x67\xed\x58\x3a\xce\x92\x8e\x52\xce\x1a\xa5\x2b\xb0\xce\xc8\x94\xc7\x5f\xb6\x3d\xdd\x75\xb5\x00\x0c\x13\x08\x36\x7c\xdd\x96\x2d\xe3\xc8\xac\x2c\xa4\xf9\x7b\x11\x5f\x87\xf5\x20\x8f\x2f\x60\x2c\x1c\x69\x21\x5c\xf2\x15\xf3\x5a\x16\x10\x6b\x6b\xce\x31\x2a\x6a\x15\xaa\x83\xe4\x64\xc2\xd4\xc8\x6c\xb5\xb4\x2b\x44\x8f\x08\x39\xc3\xd9\x5e\xd2\x08\xb0\x82\x3b\x07\x62\x20\x10\x88\x40\xd5\x30\xd9\x6b\xb4\x28\x18\x04\x73\x3b\x0d\x81\x04\x02\xf5\x81\x05\x57\x9e\x42\x31\x94\x2c\x97\x49\x85\x50\x83\xc4\x0c\x41\x6b\xa9\x2a\xc2\x67\xe1\x66\x16\x20\xb5\xd4\x91\xae\x70\xb0\x81\x12\x6a\xe0\x6f\xe4\xf7\x12\x4d\x93\x65\x4c\x2f\xdd\xe3\x28\xb7\x2a\x89\x46\x8c\xc5\xf2\xb1\x6f\x37\x08\xe4\x71\x20\xde\xa9\xed\xf6\x26\x2c\x82\x4d\xf1\x6e\x2f\x29\x93\xb2\xc2\x98\x9e\xe2\x3f\xf2\x9f\xb1\x10\xb6\x86\x74\x40\x8d\x37\xe5\x0a\x1c\x98\x38\xd2\xbf\x21\x0b\xee\x08\x8f\xc8\x3e\xbf\xdb\x74\xc7\x23\xb4\x02\x9d\x86\x81\x29\x02\xaf\x14\x6d\x86\x88\xb5\xd8\x53\x1e\xfc\x0d\x61\x60\xb8\x6c\xf6\x42\x65\x80\xe4\x0c\x99\x96\x7b\x04\xb6\xc3\x4b\x49\x66\x55\xfb\x77\x68\x2d\x41\x65\x24\x53\xa5\x97\x65\x8f\x5e\xbb\x24\xe7\x42\xbd\xab\xb3\x95\x25\x8e\xcb\x8b\x9b\x1a\xd7\x0d\x6e\xc4\x74\xf9\xef\x4b\x7f\xc0\x22\xb4\x17\x60\xcd\xf4\xec\x1d\xa7\x5a\x0c\x53\x80\x03\x0f\xf8\x4a\x6a\x72\xd6\x65\x0e\x58\x24\x79\xe8\x2e\x20\xd5\xb5\x27\x35\x94\x5b\x7a\x72\x89\x39\x70\x03\x90\x51\xd5\xec\x47\x32\x62\x40\x26\x13\xf2\x2a\xa8\x62\x11\x80\xa8\x05\xfa\xbe\x56\xdf\x7a\xcb\x51\x0b\xbc\x9a\x8a\x10\x65\xcc\xc8\x00\xeb\x61\x8d\x70\xb1\x30\xa8\x4d\x66\x85\x90\x0c\x2c\xdd\x06\xe7\xf8\x6f\x76\x6f\x68\x24\x6e\x79\x61\x68\x77\xa9\x61\xe2\xe1\xb5\xa3\xf8\x2d\x0d\x2e\xc4\x3d\x7b\xea\x5d\x25\x4e\x1c\x70\xad\x35\xfb\x85\x64\xd8\x54\xfb\x36\xf3\xf0\x43\x2b\xb6\xc3\xa0\x9b\xcb\x0e\xb5\x8e\xad\xa0\xbd\x32\xf0\xb5\x5d\xc1\xf3\xa4\x8e\x11\x05\x86\x6a\xe1\x30\x2b\x56\x84\x6a\xf8\x72\xf8\x09\x83\xda\xb1\x03\x85\x42\x8a\x88\xe3\xc4\x4b\xd6\xce\x07\x7a\x01\x74\x4a\x01\x9f\x04\x97\x5f\x7c\x1f\x4d\x29\xc7\x72\x75\x53\x4a\x79\x1f\xf4\x5b\xfa\x10\xde\xaa\xae\xa2\x93\x5e\xa9\x7b\x43\xc2\xf3\x3b\x24\xc7\xb2\x53\x92\x4a\x52\x9b\xc2\x39\x28\x22\xdb\x8f\xba\xfa\xa5\x51\x32\x09\x4b\x94\xa2\x84\x84\x28\x33\x8c\xed\x48\xeb\xb7\x7d\xb0\xd2\x56\x65\x5c\x99\xf2\x53\x24\xe1\x52\x39\x23\x24\xbb\x73\x3e\x88\x62\x03\x38\x85\x0e\xd1\xcc\x83\x11\xa9\x20\x9b\x4b\x5a\x13\x15\x44\xa7\x69\x5f\xc1\x4a\x64\xd4\x11\x41\xb6\x30\x86\x98\x51\x74\x6f\x41\x4a\x46\xcf\x05\x5b\x1b\x5b\x38\x23\x10\x96\x82\xc4\x97\x84\x0c\x5c\x16\x69\x88\x82\x7d\xc3\x2a\xfd\xba\xe2\x81\xee\x41\x01\x2f\xb0\xa0\x8e\x32\x43\x95\xa8\xa2\x21\x6a\x25\x4a\x0c\x2c\x57\xae\xe9\x10\x61\xc9\xec\x0a\x3e\x3e\x66\x4c\x96\xb2\x3e\x26\xc0\x20\xee\x82\x27\x89\xb1\xed\x31\x28\x32\x02\x60\x23\x65\x21\x04\x17\x21\xde\xf8\x09\x40\x6d\x3f\x43\xf8\x01\x14\x9b\x88\x71\x3d\x59\x3e\x08\xc9\xbd\x80\x73\x8d\x5a\x8e\x3f\x61\xd3\x80\x87\x03\x07\xc8\xbd\x93\x8e\x03\xd0\xfb\x30\xa4\x01\x6f\x89\xa6\xc2\xd4\xd7\x6d\x3c\x23\x3b\xc7\x6c\x30\x1d\xc4\x02\x22\xd0\x17\x3e\xb4\xc8\xff\xfb\x90\x22\x82\x70\x51\x4b\x4d\xb9\xa2\x05\x35\xdb\x6c\xc5\x91\x19\x09\x8a\xa6\x88\x77\xb8\xc8\xff\x31\x61\xdb\xd1\xba\x34\x4a\x73\x5b\xbd\xc5\x76\x05\x56\xc9\x9c\x97\xd2\x81\x75\x5f\x58\x44\x7f\xc0\xc1\x69\xcd\x41\x4c\x01\x56\x41\x09\x85\xde\xa7\x8a\x1e\x2b\xec\xe8\x88\x96\x48\x5a\x4d\xc1\x0a\xb4\x60\xce\x64\x6c\x43\xdc\x86\xf2\xb2\x10\xc9\xf8\x4f\xf1\x49\x53\x89\x23\xef\x01\x89\x45\x4f\x7a\x7a\x1c\xe5\x5d\xab\x6f\x83\xe9\x10\x6e\x31\xa1\xac\x15\x33\xe2\x43\xa9\x8e\x75\xc7\x41\x1d\x01\x30\x18\xa2\x72\x69\x8c\x12\x89\xc6\xcf\x12\xea\xd8\x81\xe2\x2d\x53\xd1\x38\xf5\xce\x40\xb9\xda\x58\x38\xed\x2e\x1d\x58\xda\x2e\x62\xf1\x40\xe2\xab\x24\x09\x4d\xb5\x5a\x73\x23\x3a\xe8\x9f\x56\xb9\xcb\x8c\x24\x76\x13\x66\x40\xb5\x55\x2c\x85\xb3\x88\xb0\xb5\xda\x13\x51\xac\x58\x58\x8e\xe0\x78\xba\xd8\x88\x83\xab\x9f\x3f\x46\xea\xec\xb5\xa8\x72\xc6\x24\x25\xe1\x9c\x9f\x1a\x54\x00\x8c\x79\x9d\x39\x48\x31\x39\x4b\xc9\x9d\xaf\x26\x18\xa2\x7c\x52\xb0\x9e\x34\x6a\x53\x4c\xd1\x23\x3c\x6a\x7f\x23\x66\x5a\x82\x9a\xf1\x26\x0f\xc7\x29\x5d\xa3\x19\x10\x5f\x23\xc1\x0c\x7e\x9a\x61\xc6\x78\x57\x5b\x16\x66\x41\xa7\xba\xfd\x5e\x0e\xd7\x6e\x5c\xa3\x72\x88\xf8\xec\x1b\x0a\xed\x9b\x3b\xf5\x91\x3e\x63\x84\xa9\xb4\x8f\xf1\x1a\x70\x23\x79\xa5\x3d\xdf\xc1\x2f\x73\xf6\x89\xe1\xd8\xbb\x8e\x3d\x0a\xf2\x3d\xcc\xb5\x96\xb8\x5f\x10\xef\xb9\xe2\x5b\x16\x37\x01\x60\xa2\x46\x44\x5d\x59\x6e\xbe\x71\xf4\xbb\x09\x6f\xa3\x85\xc5\xee\x31\x4b\x05\xb5\x42\x30\x60\x93\xb0\x9d\xb7\x20\x13\xc0\x0d\x72\x85\x77\xa8\x00\x5f\xd0\x20\xcd\xd5\xd8\xb4\xe3\x91\xf9\x56\x78\x0f\x1a\x2b\xc0\x78\xe5\xcd\xdd\xe6\x12\x89\xd2\x08\xdd\x5c\x27\x7d\xdc\x8b\xcf\x2c\xdc\xbe\xdd\xa0\x81\x10\xa2\xb4\x81\xb4\xaa\x1e\x69\xa5\x46\xe9\xd7\x9f\x31\x20\x55\x42\x81\x58\x35\x21\x35\x61\x80\xaf\xfa\x1e\x70\xe0\x09\x34\x8a\x2b\x08\x45\xb4\xb7\x8d\xaf\xec\xb8\x64\xac\xe5\x7f\x17\xe6\xb5\x35\x7a\x8d\xce\x4f\x25\x85\x3b\x8d\xeb\x2d\x1a\xec\x5c\xd0\x82\x41\xdc\x16\x28\x4d\x70\x12\x52\x1a\x64\x84\xb6\x81\x0b\x40\x59\x94\xcc\x2b\x06\x25\xd8\x2a\xbb\xdb\xbd\xfa\x4d\x55\x0c\x04\x8b\x06\xee\x49\x39\xcc\x7a\x46\xdc\x74\xcc\x06\xb0\x52\x05\x30\x6d\x9f\x3c\xf3\x6c\x9f\x37\x23\x8e\x49\x2b\xd1\xd9\x18\x88\xa4\x29\x85\xb4\x80\xf8\x45\xaa\x25\x91\x32\x45\x7d\x34\x73\x27\x90\xbb\x50\xce\x32\x17\xe6\xf0\xb0\xa2\x6c\x01\x80\x73\xc0\xb7\x9b\x0e\x0b\x0b\xe8\x0e\x6f\x8f\x26\x6d\xdd\x91\x47\xbb\x0f\x11\x75\x9e\xac\xc2\xd6\x4e\xd9\xac\x61\x85\xa4\x38\xc5\x52\xa0\x06\xe2\x2d\xe6\xc2\xb5\xdc\x19\xaf\xc0\x63\x8d\x66\xc2\x39\x39\xec\x03\x6f\x59\xfd\x9a\xcb\x0e\xe0\xf3\xfc\x99\xa5\x3c\xdd\x13\xba\xb6\x3b\x8e\x63\xbc\x53\x41\x9e\xe0\xa5\xac\xae\x06\x11\x40\x30\x5f\x60\x21\x9a\x59\xd8\xe8\xcb\x20\x76\xfc\x14\x4c\xa5\xbb\x34\x59\xbd\x42\xc2\xc3\x3c\xcc\x83\x0b\x76\x4b\x2d\xa6\x40\xd2\x6c\x20\xf0\xc5\x3e\x17\x8d\x7a\xc3\x45\x7c\x1c\x7a\x41\xee\x02\x26\xa5\xd5\x39\x83\x8b\xfc\xd5\x4e\xc6\xe6\x60\x93\xe4\x8d\x97\x90\x7c\xd5\x48\x3d\xb9\xf0\x7c\x7c\x89\x55\xa7\x69\x32\x3d\x84\xeb\x0d\xa6\x42\xff\xed\xe2\x0d\x85\xd1\x32\x18\xfc\xbc\x96\x19\xe1\xb8\x2d\xc7\xc2\x7a\x5e\xcd\x65\x60\x2f\x96\x3b\xbf\x6f\x90\x69\x3a\xfd\x9e\x6d\xf2\xa2\x6b\xd6\xf9\x06\x9c\x31\x46\xe2\xb0\xe3\x9c\x25\x2f\x3d\xe0\x95\x4e\x40\x4a\x7b\x9c\x25\x17\x8e\xb6\xd5\xaa\x5c\x61\x7f\xbd\x49\x8c\xd8\x04\x7d\x36\xc2\xfe\xbc\xe6\xd7\x28\x5a\xed\xaa\xb3\x9d\x1e\xee\x6d\x5c\x4d\x09\x9d\x0f\x9c\xf7\xbd\x50\x00\xc2\x44\x79\xa3\xa8\x82\x05\x8e\xaa\x7a\xd5\x2e\xa2\x70\x42\x4e\x57\xa3\x32\x46\xa9\x05\x84\x47\xac\x6d\xe0\x5e\x4d\x30\x60\x8a\x8e\xb3\xc0\x3e\x29\x91\x4c\x15\x3b\x52\x1b\xd2\xca\xe0\x00\x34\x87\x8d\x55\x94\x29\x78\x63\x83\x9c\xd6\x42\xcd\x10\x1a\x44\xf0\x35\x4e\x7f\xb4\xdb\x12\x5e\xc6\x4d\x74\xb0\xd0\xae\x96\x18\x26\xaa\x20\x4b\x40\x82\x73\xa3\x48\x0d\x74\x3c\x8e\xb3\x8a\x98\x1b\xa0\x11\x74\xa0\x23\x55\x95\x70\x2c\x41\xb7\x84\x2a\x4b\x8d\xd4\xc8\x15\x57\xf7\xa0\x5c\xef\x95\x21\x86\xe2\x0c\x1a\xca\x5c\xd3\x3a\x59\x20\x2c\xc0\xdb\x4c\x8c\x6d\xca\x48\xe2\xcc\xb6\xa6\xcd\xb6\xef\x0e\x67\xda\x09\xbd\x66\x29\x96\x40\x38\x11\xe3\xb1\xb0\x3d\x96\xf8\x03\x71\x38\x1d\x90\x51\x5f\xb4\xff\x65\x88\xb5\xb2\xc1\x10\x26\xab\xf3\x9e\x6f\x32\x6b\xae\xd8\x39\x5b\x4b\x1d\xc3\x98\x8a\x2d\xbd\x04\x23\x29\x1f\xae\x43\x28\xbb\x38\x4e\xbe\xfe\x9f\xe9\xa0\xbb\x93\x80\x33\x80\x55\x6d\x20\x63\xdf\x6b\xe6\x16\x56\x6a\xe5\x4a\x7d\x9d\x4a\x99\x90\x0e\xf9\x1e\x6c\x21\x19\x90\xb9\x21\xb5\xb6\x09\x7e\x01\x7c\xed\x9d\x68\x04\x70\x4b\x7f\xc0\x45\x0c\xae\xf9\x67\xc1\x1a\xd2\x78\x18\x08\xd5\xe2\x97\x69\xd5\xc0\x04\xd5\xbd\xf3\x08\x98\x80\x6d\x98\xcd\x47\x46\xc5\x21\x2d\x69\xaa\xff\xb1\x08\x6c\x4c\xc4\x21\xb3\xf3\x73\xa3\xd4\x8d\xbd\x01\x43\x4b\x93\xfc\x3b\x39\xb4\xb6\xa8\x8b\x5c\x21\xa5\x36\xc2\xb1\x29\x79\x9b\x11\x49\x58\xd6\xc6\x4c\x95\x98\x66\x46\xfd\x4f\x19\xd2\xd5\xd5\xb8\xcc\xb1\xb7\xed\xa2\x04\xfb\xce\x0d\xf6\xf0\xa4\xcd\x21\x16\x1a\x1c\xb6\x0f\x55\x3f\x6e\x2f\x37\x38\x1e\x89\xa8\x27\x5c\x88\xe3\xb0\xe6\x40\x6d\x69\x72\x18\x4b\x99\xdc\x79\xc1\xd1\xc7\xef\xe3\x77\x2e\x5c\x27\x67\x03\x17\xc2\x6b\xb1\xbe\x81\x5d\x55\x75\x75\x4d\x86\xf8\xb8\x63\x48\x0c\x04\xf6\x73\x6c\x06\xf7\xae\x47\x7f\x44\x88\xd8\x0a\x69\x70\x8c\x0b\xd7\xed\x61\xcb\xfb\x73\xfb\xb0\x25\xd3\xb9\x82\x5a\xb0\x14\x8e\xe3\x88\x39\x62\xfb\x10\x9d\x35\xe7\xd5\x7f\x21\x36\xca\x6c\x5b\xa0\xbc\x97\x9f\x0d\xf9\x08\xb6\x01\x8c\x93\x36\x01\xf6\x6d\xc3\x5b\x21\x03\xca\xc4\x85\x08\xd5\xe3\x49\x60\x87\x17\x29\x00\xf2\xee\x2c\x35\x3c\xde\x07\xf3\x21\x8f\x36\xb8\x52\xbf\x4b\x5a\xdc\x79\x2e\xad\x1a\x59\x88\x87\xab\xd3\xe0\x9f\xcc\x86\x2d\xde\x14\xa0\x6d\xb7\xb2\xa1\x4b\x7d\xb4\x6b\x68\x20\x9e\xbe\xd9\xac\xa3\xe4\x88\xc6\xfc\x85\x91\xb1\xd2\x22\x56\xda\x73\x54\x17\x05\xdb\xe2\xe6\x4c\x67\xb8\xfe\xee\x74\xf3\x50\x31\x8e\xc9\xd0\xa5\xec\x9d\x0d\x10\x33\x8a\x51\x2d\x5c\xc4\x3c\x42\x6a\x01\xed\x51\x2c\x17\x9f\x1a\x48\xf9\xa0\x0f\x5b\x3c\x26\xf5\x34\x7b\x1b\x0c\x29\x92\x09\xc0\x88\x9a\x93\x82\xbd\x96\xd6\xd6\x7c\x9a\x2b\xdc\x73\x24\x01\x22\xd3\x01\x03\x3c\xcc\x9f\xd0\xcc\x0d\xf7\x0d\x48\x48\xde\x00\x67\x8c\x50\x53\x1b\x36\x61\xcd\x4e\x32\xb9\x00\xd3\xd8\x80\xf0\xd8\x00\xd3\x4f\xd9\x3c\x81\xe9\x20\xb9\x46\x23\xcd\x92\x9b\xad\x54\x0c\x5a\x90\x02\x4b\x86\xe7\x08\xb0\x4d\xa8\x01\x0d\xa8\x29\x8d\xae\x9d\xb0\x25\x9c\x8b\x1a\x30\xec\xb0\x5e\xe0\x5e\xbb\x57\x66\x50\x1b\x42\x03\x0b\x3c\xa1\xb5\xe9\xaf\xf4\xac\x8d\x60\xb6\x59\x91\x0f\x01\x1a\x79\x58\x0e\x32\x59\x11\x66\x41\x65\x22\x13\x81\x63\x70\xf1\x98\x3f\x80\x36\xae\xd8\x86\xe0\x61\xbc\x89\xd1\x5f\x62\xd3\xae\xd5\x07\xd3\x71\x16\xbe\x3d\x95\x34\xfa\x69\xea\x5f\x17\xd0\x74\x21\x2b\x88\xa5\x19\xf7\xb0\x26\x42\xa7\x4f\x8c\x0b\xe9\xb8\xc7\xcc\x1c\x3e\x70\x0a\xbb\x09\x01\x12\xc5\xee\x89\xb9\x45\x0e\x95\xf1\x6e\x11\xe1\x5b\x5d\xb4\xb3\x43\xcd\x4a\xc9\x6e\x15\x3d\x09\x4a\xc4\x19\x84\xb8\xa9\x23\xca\xb3\x0a\x69\x5f\xb0\x07\x0f\xe6\x0a\xd5\x98\x59\xb2\xd3\xff\x19\x02\x68\x7f\xeb\x2b\x65\x9f\xe9\x1d\x38\xd9\xc3\xdc\xcc\x8b\x12\xa8\x9a\x92\x22\x87\x51\xa2\xc0\x13\x09\x38\x73\x97\x90\x93\xa7\xce\x21\x09\xae\x58\xac\x41\x1e\xc1\x08\x2c\x75\x6e\x3c\x04\xc7\x15\x14\xc1\x02\x98\xea\xdc\x22\x67\x5d\x50\x3e\x53\x72\xbc\x2a\x2f\xca\x35\xac\xe5\xe0\xf5\x56\x15\x05\x18\xeb\x29\x7a\x85\x46\x17\x89\x49\x8a\x15\xc6\x5e\x66\xd4\x61\x77\x70\x1c\x93\xba\x65\x4e\x4f\x84\x39\x15\xac\x9c\x30\xa1\xe9\x90\x45\x12\x4c\x21\x93\x57\x34\x75\x56\xcd\x6c\x37\xe5\xe5\xcc\xc2\x54\x38\x2c\x30\xdf\x94\xae\x91\xc3\x58\x2b\x29\xb7\x7d\x70\x31\x92\xa7\x4e\x05\xfe\xe8\xe5\x04\x13\x52\x6e\x8a\xd8\x37\x2c\x9d\x60\xda\xcd\x5c\x37\x88\xa5\x17\xf0\x2c\x93\x05\xac\x16\x0f\xe3\x50\x8e\x32\xfc\xcc\xad\xd2\x20\x10\x2f\x50\xc1\xa1\x14\x88\x02\xa2\x3c\x13\xba\x8b\x72\x83\x8d\xb0\x1f\x0e\xf1\x22\xc1\x5a\x88\x30\x86\x43\x82\x23\x55\x88\x26\xd1\xf3\x22\x0f\x7c\xda\x14\x5f\xb0\xcb\x88\x3b\xd7\x27\x02\xe0\x2d\xe3\x93\xcc\x0d\x9d\xf6\x41\x84\x67\x27\x6b\x52\x94\x38\x9c\x34\x90\xf8\x83\x08\xbf\x77\x0b\x2f\xe4\x8c\x65\xc4\x19\xf4\x14\x80\x91\xd6\x3c\x82\x2e\x9f\x05\xd5\x2b\x47\x80\x70\xeb\x0c\x50\x39\xfc\x98\x83\x3c\x82\xc3\x8c\x78\x29\x48\x84\x18\xb5\x84\xbd\x83\xdb\xe1\x15\xd8\x25\x29\x39\x11\xb7\x88\x1a\xeb\x68\x81\x09\x07\xaa\x57\x50\x6e\x52\x46\x86\x2c\x41\xcc\xb7\x2e\xc0\x29\xc4\xae\xe4\xa6\xd8\x23\x25\xc8\x18\x0b\x5a\x80\x2d\xf3\x2e\x21\xcb\x60\x12\x36\x24\x1f\x29\x05\x13\x7d\x90\x42\x9b\x42\x31\x03\xc0\x0f\x1d\x89\x89\x5b\x8a\x7c\x99\x1d\x10\x32\x63\x71\x1a\xee\xbc\x84\x41\xd4\xa0\x24\x24\xe2\x96\xb8\x7a\x2a\x6a\xf0\x2f\xae\x27\xdf\x3b\x1e\xf1\x7e\x64\xa3\xef\x59\x31\x17\x03\xd5\x78\x22\x38\x29\x42\x21\x9d\xc1\x66\x84\x9b\xe4\x4b\x2d\x85\xfc\x13\xc6\xf0\x50\x2f\xad\x93\x84\xd6\x09\x55\x93\x8e\x49\x42\x78\x5e\xa8\x8c\x08\xf4\xfb\x0b\xa5\x30\x23\x53\xe3\x02\xed\xed\x9a\x77\x27\x06\x9c\xa7\x1a\xc2\x24\xaa\x58\xa1\x3a\xa2\x1a\x41\xa7\x15\x9a\xc2\x23\xfe\x09\x55\xf2\x4f\x8c\x8e\x86\xb0\x9e\x68\xfa\x19\x41\x16\x4f\xa4\x90\xf5\x86\x70\x9e\x08\xf0\x90\xea\x59\x1b\x8b\xe1\x5f\x20\x86\xc0\x65\xd5\xab\xbb\xf5\xeb\x58\xc0\x1e\x15\xed\xe8\xa9\xdb\x8a\x97\x17\x1c\xed\x25\x1b\x0d\xb9\x38\xc6\x8a\x11\x09\x82\xe2\x02\xdc\x93\x6c\x41\x92\x04\xb5\xbc\x12\xe4\xdb\xaf\xf8\x36\x8d\x15\x27\x62\x20\x70\x43\x56\x6c\x8e\x89\xa4\x86\x3a\xd4\x5c\x28\x1b\xb6\x63\x09\x60\x01\x64\xae\x0b\x40\x83\x90\x85\x3e\xf4\x08\x3d\x28\x00\x29\x12\xb5\x93\x8d\xc8\xf6\xf0\xa6\x12\x9b\xb4\x8d\x58\x50\x1c\xe0\x31\x58\x06\x73\x23\x99\xc4\xc0\xa0\x9e\x0d\x6d\x7e\xd9\x40\x02\x39\x42\xb2\x06\x22\xf9\x25\x7c\x14\xc1\x40\xbd\x42\x1a\x77\xa1\xb5\x06\x04\x10\xc7\x15\xd8\x02\x08\x94\x76\xdb\xac\x1e\xc5\x13\xea\x27\x4b\x59\x3c\x27\xc8\xee\x42\xdc\x70\x19\x90\x62\x44\x88\xb9\xcc\x98\x0a\x6a\x74\x03\x36\xc8\x81\x54\x54\xdb\x8e\x3c\x46\x8b\x30\xe1\xe2\x0a\x81\x62\x4c\x98\x11\x34\x0a\x35\x59\x4b\x40\x91\x0b\x3c\x33\x42\x3e\xd8\x09\x05\x73\x21\x27\x04\x98\x8c\xbe\x2c\x7b\xb8\xcd\xf4\xc0\x74\x8e\x94\xc6\x62\x32\xf0\x18\xdf\x38\x08\x35\x79\xcc\x30\x20\x5c\x0f\x23\x11\xc2\xce\x1b\x76\xd4\x39\x32\x20\x2e\x18\xfc\x2c\xf5\x80\x83\x70\x3d\xf9\x1f\x85\x93\x12\xdf\x9f\x50\xd4\xd0\x74\x80\xe1\xc7\x46\xf0\x8e\x51\x80\x21\xdf\x46\xc5\xd8\x6b\xc5\xe1\x4c\x73\xc5\xc2\x94\x96\x89\xe5\xbe\x86\xfa\x2e\xef\xd0\x04\x39\xe5\x58\x41\xc6\x8c\x30\xcd\xee\x52\xed\x80\x65\x9c\x18\xf2\xf1\x10\xe0\xe3\x6e\x70\x26\xee\xff\xbf\x64\xbf\xdf\x80\x93\xd9\xef\x3e\xfa\xa2\x86\x1d\x48\x7d\xb3\x45\x0e\x95\x5b\x70\x40\x07\xeb\xe7\xbe\x80\xdf\x03\xcc\x0d\xce\x43\xed\x5e\x70\xe2\x20\x82\x50\xd8\xd1\x8d\xfd\x75\xe3\x7e\x62\x77\x25\x2b\xd3\x18\x7f\xa6\x2f\xe9\xc1\x1d\x57\x41\x07\xbc\xf9\x87\x18\x45\x1f\xbe\x82\x53\x48\x77\x03\x1d\x78\x9c\x7b\xb1\x19\x9e\x2b\x8e\x82\x3b\xd5\xd2\x7d\x81\x13\x3a\x0e\xb2\xb7\x26\x43\x22\x86\x6e\xd3\x7f\x48\xbc\x26\x46\x36\xb1\x46\x4c\x88\x86\x73\x40\x1a\x3d\x07\x69\xbe\x0d\x73\x4c\x2f\x34\xf3\x22\x41\x78\xf3\xb8\x40\x08\xe1\xa1\x8b\x08\x83\x42\x74\xba\xd6\xd3\x5c\x32\x21\x1a\x4c\x15\x1f\x00\xad\x31\x85\x83\x68\xe1\x50\x08\xd9\x21\x45\xd1\xeb\xf6\xfc\xda\xe0\x05\xae\x9e\x48\x76\x23\x37\xd9\xe2\x0d\xbe\xfc\x0d\xe0\x29\x2e\x96\x58\x3e\x6c\xef\x85\x2c\xe0\x08\x80\xe7\x6e\x22\x6c\xfd\xe7\xd8\x1c\xce\xf3\x18\x4b\x46\x07\xc5\xc6\xff\xdd\x12\x1b\xf1\x18\x53\xbb\x03\xdb\x12\x7b\x30\x11\x6c\x6e\x27\x25\x79\x55\x31\x1e\x10\xc2\x52\x00\x2f\xf4\x93\x5f\xe9\xf1\xa9\xe4\x9d\xf8\x4b\xf4\xbf\x27\x2e\x3d\xa8\xaa\xf2\x4e\xce\x80\xec\x8d\xc3\x2c\x3e\xad\xaf\xb7\xdd\xff\x08\x50\x22\xfe\x52\x81\x2e\x41\x76\x26\xae\xd9\xa7\xb6\xeb\x3d\xa8\xd1\x3b\xd3\x76\x1b\x55\xcf\x45\x01\xeb\x0f\xd1\x79\xea\xf8\x25\x25\x96\xe9\xbc\x95\x9f\x56\x7e\x93\x3f\x76\xea\xfd\xd8\xab\xe2\x43\x3a\x54\x7b\xc0\xe5\xd7\x79\x28\x75\x7e\xe4\x54\x6a\xa3\xf0\x8c\xdd\xbe\xce\x9c\x4a\xd8\xad\xd1\xb2\x7a\x02\xcb\xb6\x7e\x1f\xd4\x92\x47\xe2\x9b\x58\x2e\x7c\xfb\x97\x96\xa5\x08\xbc\x8a\x94\x9c\xe6\x24\x29\x8e\x0f\x16\xcf\x4c\xf0\x4e\x97\x71\x98\xca\x0a\x84\x1d\x01\x6b\xa2\x78\x72\x0e\x9f\x86\xa6\x1d\x16\xba\x12\x0e\xbb\x1d\x5d\x05\x17\x6f\x28\x36\xc1\xe0\x20\xbf\x10\x1a\x33\xc6\xe8\x2e\x89\x16\xd5\x1c\x1e\x8b\x4a\x71\x52\x03\xf8\x73\x94\xd5\x4a\x22\xe1\xdb\xc3\x3b\x03\x12\xfe\xda\x0c\xd5\x3d\x9f\x69\x84\x0d\x52\xbb\x49\x5c\x29\xec\xa0\xcf\x54\x51\x84\x8b\xa4\xe9\x96\xf3\x11\x02\xf6\x98\xe3\x68\xed\x01\x5e\x4f\x00\xda\xec\x37\x45\x9f\x94\x6d\xb7\xca\x14\x8e\x8d\x5e\xf4\x47\xae\x6b\x7e\x61\xe5\x2a\x95\x82\x50\x99\x71\xad\x53\x89\x8e\x81\x4b\xd4\xe2\xd4\x53\x07\x14\x69\x7d\x62\x43\x77\x67\x5e\xc8\xe9\x21\x21\x3e\x0f\x4d\x60\x3e\x36\xc2\xc0\x73\x2e\xb3\xc4\xde\x14\x33\x1e\x41\x31\x98\x75\x60\x40\x2a\xc5\xf5\x87\x93\x75\x8f\x89\x56\x40\x51\x4e\xf0\xbe\x69\x36\xff\xeb\xba\xcf\x80\x76\x6b\xc7\x67\xa0\x1f\x39\xa4\xf9\xa9\x66\xf8\x15\xfb\x60\xf1\xfc\x12\x50\xcf\xba\x1a\xbc\xa1\xe9\xc9\x9d\xd0\x4f\xa0\x66\x14\x59\x0f\x43\xca\x85\x9f\xd0\x08\xea\x7d\xd0\xca\xb8\xb7\x04\x95\x84\x8a\x15\xa8\x5e\x4c\x70\x84\xb7\x03\xd0\x54\x1d\xd8\x9a\x24\xe1\x09\x11\x37\xbc\xd9\x2b\x28\x39\x61\xb3\xe5\x61\x21\x58\x04\x05\x02\x09\x8e\x7e\xb5\x7d\x51\x08\x0a\x8b\x10\x14\x62\x98\xe1\x61\xc0\x76\xfc\xea\xd6\x20\x28\x15\x31\xc4\xa3\x80\xed\xb9\xd4\x38\xc0\x46\x1a\xba\xc7\xb9\x96\x6e\xae\x1d\xf2\x65\x99\xcc\x8e\x14\xa6\xec\xce\x59\x6a\xdd\xd5\x29\x7f\x30\x77\x72\x52\xbb\x9c\x0e\xf4\xbe\x9d\x60\x1e\x62\xde\x4b\x07\xa4\x71\x2f\x71\xf2\x08\xd6\x1a\x65\xa3\x97\xa6\x2d\x29\xa0\x89\x44\x36\x89\x13\x24\xcf\xee\x28\x59\xb9\x5e\xe1\x34\x89\x29\xc4\x3c\x5a\x87\x96\x6c\xf7\x3b\x55\x59\xe8\x68\xbc\x7b\x8c\xa8\x98\x89\x68\x74\x5b\xa7\x5c\xb9\xcb\xdc\x22\x64\xc0\x85\xcb\x85\xe3\x0a\x22\x62\x28\x3f\x1b\xe3\xaf\x0d\x56\xa5\x4e\x3c\xc5\xa9\x4d\x2b\x22\x4f\x78\x17\x43\xbf\xfc\xa8\xc5\xa0\x30\x48\x21\xd2\x7f\x10\x8b\x50\x8d\xdd\xf3\xe1\x6b\x85\x02\xdb\x4c\xcd\x33\xc0\x13\x55\xd3\xac\xa4\xc0\xd4\xca\xb9\x2b\x13\x4c\x63\xae\x0f\x65\xb8\x12\xeb\xb8\xd5\xf8\x27\x53\xba\x1a\x18\x66\x26\x7e\xc3\x15\x39\xbc\xb5\x0a\xe1\x7f\x40\xa5\x16\x4e\x43\x83\xa0\x5a\x26\x43\xfb\xc7\x00\x82\x76\xd5\xbd\xd9\x3c\x46\xd7\x1b\x27\xd9\x3d\x78\xc6\xd2\x68\xda\x21\xbd\xfd\xac\xa6\x68\x85\x40\x0d\xba\x3d\x75\x76\xbd\xea\xcc\x11\x30\x5b\x9a\xe4\xc5\x55\x93\xf9\x7e\xd2\x87\x1c\x76\x7d\x81\xaf\x14\x51\x9d\x41\xf2\x59\x55\x02\x8c\xb6\xc1\x14\xd5\x64\xbc\x31\x56\x91\xce\xb0\x4d\x90\xe4\xd2\x3c\x7a\x56\xc4\x49\xab\x16\xc2\x86\xf9\xd4\x85\x0a\x0f\x7a\x25\xb2\x17\xf8\x09\x93\x38\xb1\x3e\x25\x7b\x46\x8e\x43\xf8\xcd\xde\xcf\x4b\xc9\x66\xee\x6b\x7e\x54\xe5\x9c\x24\x55\x77\x55\xc4\x77\x00\x2d\xa1\x83\xf4\x28\x97\x2e\x80\x4c\x7d\x55\x47\xe8\x1a\x74\xc2\x7b\x49\x17\xb1\x9b\x6b\x26\x4a\x7a\xa5\x0d\xc8\xa0\xb6\x92\x52\xa5\x29\x54\x74\xef\xf5\x24\x6a\x73\xb4\x00\x47\xd7\x78\x9b\x95\x05\x16\x07\xda\x3d\xf2\xf8\xf7\x6c\x6b\x47\xe4\x37\x89\x72\x75\xab\xdc\xe1\x4b\x9c\x00\x38\xd1\xed\xf1\xe4\x1c\xff\x24\xdd\x78\x5a\xe0\x23\x4c\xd3\xb4\x4d\xec\xb0\x6a\xc3\x5a\x97\xa7\x85\xc8\x08\xb1\x24\xaa\xd7\xd5\x25\xe5\x18\x15\x3a\x0c\xa3\x54\x0c\x26\xc8\x24\xc6\x16\x7a\xb2\x35\x50\x39\x59\x73\xdf\xc1\x3d\x9e\xa4\xa5\x75\xec\x1b\x04\x49\xde\x12\xc9\x0c\xb7\x9d\x56\xc4\xa4\xfa\xf4\x02\x01\xc3\x3d\x0d\x20\x19\x2a\xb0\xf8\x5c\x69\xc7\x53\x18\x00\x2e\xb2\xe9\x08\x67\x72\xd9\x8c\x51\x12\x10\xcf\xb3\x8e\x19\x45\xcc\xd6\x41\x4b\x9a\x14\x0f\x04\x84\x74\xcd\x42\x2d\xeb\x0d\x9a\xd0\x87\xd7\x9b\x71\x40\xff\xc4\x3f\xcc\xc7\xbb\xcc\x7c\xaf\x2c\xfb\xf8\xd1\xa4\x6a\x85\x83\xbc\x10\x6a\x02\x17\x8c\x1e\x0c\xa8\xb5\xd2\x9a\xde\x24\xd5\xd0\x37\x50\x03\x0a\xc0\x01\xc1\xe5\xf4\x02\xe2\xb1\xb0\xa4\xdc\x89\xcf\x27\xc2\x33\xd0\x8d\xb0\x3c\x75\x2a\x86\xd7\x03\x65\x62\xc8\xae\xa2\x74\x5e\x09\x1c\x4c\x34\x67\xc2\xe4\x80\xe5\xfb\x87\x1f\xc7\x9a\x3a\xd5\x05\xe4\x16\x91\x50\x05\x43\x41\x55\x89\xb7\x81\xe6\x7e\xec\x9b\x73\x1f\x12\xc2\x62\xa0\x8b\x5f\x24\x2b\x97\xda\x56\xe9\x95\x34\xc1\xfd\xd0\x3c\x18\x84\x49\x25\xfd\xaf\xc9\x06\xb8\x0b\xf1\xc1\x3a\xf7\xe7\x0e\xae\x31\x44\x19\x8f\xf5\x07\x44\x42\x0b\x9c\x00\x39\xb3\x98\xaf\x60\x30\x69\x48\x27\xda\xa3\xd0\x39\x6c\x0a\xc8\x03\x35\x9b\x3d\xea\x20\x30\xdf\xd8\x7d\xee\x16\xc8\xc7\x19\x76\x46\x44\x7f\x72\x42\x5c\xf0\x1f\x9d\xa2\xe2\x59\x99\x16\xb6\x41\xca\x7d\x19\x20\xad\xfa\xb3\xde\xa2\x5e\xf3\x0f\x78\xa0\xc2\x44\xc7\x56\x46\x36\xb8\xed\x2c\x5b\xbb\x4f\xb2\xdd\x6e\x20\x2b\xb9\x63\xff\x69\x13\x24\x78\x39\x34\x83\x1f\x92\x28\x30\xe5\x07\xb8\xa8\x99\xff\x22\xf0\x09\x3b\xdc\x3e\xd6\x58\x90\x4d\x1a\xff\x3c\x77\x99\x4f\xac\x0b\xd2\xf6\x86\x62\xd3\x6c\x60\xc0\xf6\xc0\x8b\xf1\xdc\x2f\x2c\x48\x8d\x7a\x07\x3b\x89\xce\xa8\x9f\x6e\x7f\x7f\xc8\x3e\x05\x40\x43\xc5\xd9\x91\x11\xec\x04\x48\x28\xce\x32\xe7\x19\x24\x31\xe1\xc4\xeb\x03\x97\x78\xd2\x32\x2a\x67\x77\x58\x8c\xa7\xa0\x40\xe1\xe0\x42\xdd\x42\x40\xdf\xd5\xf0\x9a\x8e\xb7\xfc\xac\x7a\x59\xda\x2b\x11\x22\xc3\x4e\x33\xff\x0c\x79\x2f\x99\x1e\x20\xec\x79\xa3\x58\x84\x54\xe3\x2f\xef\x19\x77\xdd\xaf\xc6\x03\xf1\xdb\x8a\x63\x07\x02\xeb\x38\xd3\x7e\xfe\xb0\x03\x9b\xad\x77\x74\xe4\x38\xc4\x24\xb1\xa6\x57\xf8\x08\xa3\xb1\x0a\x6b\x18\x15\x61\x8c\x6c\x3a\xff\xc8\x35\x79\x8d\xb7\x9e\x0c\x17\xb8\x30\xa6\xf4\x41\x61\xdd\x07\x7c\xc8\xd6\x18\xec\x87\x85\x91\xb2\x6b\x7d\x3e\xce\x2c\x7b\x21\x1d\x76\x7c\xe3\x3d\x6d\x3e\x42\xc4\x5e\xec\x41\xc5\xd0\xf4\xcb\x61\x47\x0f\xa6\xcb\x69\xe6\xb3\xf0\x1d\x9a\xc0\xd7\x87\x52\x7a\x8a\x25\xd3\x4a\x99\x38\xd8\x2a\x0f\x45\x23\x9e\x7c\xcf\x25\x8b\x38\xc8\x35\x79\x41\x30\xfe\x1e\x6e\x1e\x2d\x60\x3e\x09\x73\x54\x40\x6a\xcd\x03\xb2\xc3\xbd\xb2\x3e\x4a\x13\x8e\x64\xc5\x72\xc3\x76\x85\x0d\x7f\xe6\x99\x8c\x6d\x7e\x01\x14\xf0\x1d\x79\xe7\xf3\x6f\x3a\xe4\x1f\xd8\x69\xb0\x4b\x37\xe7\xe6\xcd\xb1\x7e\x5e\xbd\x70\x6f\x44\x31\xde\x30\xf8\xe5\x14\x2a\x6a\xbd\x40\x89\x7c\x3e\x6f\xbd\x51\x5e\x97\x26\xb5\x77\x8c\xdc\xb6\x50\x56\x83\xa4\x43\x2d\xcf\xcd\x30\xf8\x93\x68\x6a\x83\xa6\x69\xab\xbe\x34\xdd\x97\x52\x0c\x74\xc9\x69\x76\xee\x0d\xab\x1d\x6a\xd7\x19\x64\xe5\x89\x97\x3a\x00\x90\x47\x9d\x08\x35\xec\x04\x03\xfd\x30\xf5\xe6\xab\x53\x71\x55\xbb\xf1\x8b\x10\x4d\x62\xba\xc2\x94\x35\x4f\xc6\x61\xc5\x55\x2b\x4a\x91\xa4\xfb\x94\xeb\x5e\x5c\x1b\x2e\x1c\x97\x46\x85\x2e\xb8\xc3\x64\xbb\xa5\x2a\x21\x64\xcf\x93\x20\x99\x27\x9f\xe4\x43\x3c\x00\x87\x16\xf6\x88\x54\x3d\xc5\xe4\xa9\x82\x51\x32\xc0\xba\xe1\x96\x0f\x2c\x42\x06\x34\xb9\xd4\x66\xae\x12\x42\x3b\xf9\x64\x81\xf9\xf9\xea\xb7\x68\x7b\x3e\x5c\x86\x72\x09\x70\xc2\xa0\xc8\x83\xdc\xe3\x0e\x8f\xb7\xe2\xcc\x95\x35\x55\x80\x14\xa5\x21\x46\x3a\x99\x7d\x28\x3c\x91\x12\xa6\x53\x8a\x0f\x29\x13\x5a\x64\x96\x00\x52\x80\x92\x90\x3b\x4a\x07\x78\x9b\x01\x8f\xde\x8f\xf4\xd5\x16\x00\x52\xbc\x21\xce\x3e\x63\xb2\x00\x73\x07\x98\xdc\x80\x1c\xbc\xf8\x26\xdb\xf9\x64\x01\x67\x43\x9c\x79\x2c\x44\x92\x7a\x50\xe2\xae\x08\xd9\x01\xfa\x1d\x3c\x18\xbc\x2f\x40\x1b\xb4\x07\x4b\x21\xf6\x83\xf4\x82\x18\x34\x20\x40\x15\x71\x05\xec\x4d\x70\x44\xe3\x83\x09\x38\x9a\x2c\xd8\x0c\x9c\x43\x67\x65\xf7\x6b\x20\x05\x2a\x1e\x05\xcf\x81\x2a\x66\x88\x89\x58\x49\x04\x0f\x0b\x20\x08\x23\xc5\x40\x5a\x7d\x2b\x33\x16\x3d\x86\xfe\xde\xf2\x67\x93\x20\x60\x69\xdb\xeb\x80\x9f\xce\xa9\xaa\x21\x74\xa1\x6c\xff\xae\x45\x90\x3d\xb1\xfc\x4b\x72\xa0\x39\xd1\x5a\xc9\x93\x60\x1f\x05\x6f\x27\xc3\x7c\x7c\xb5\x96\xc4\x84\x24\x37\x90\x1a\xe8\x99\x83\xd8\x5f\xcf\xce\x50\x23\x9c\x7e\x24\xbe\x1c\x79\x33\xb4\xa5\xa2\xf3\xeb\xe9\x61\xf4\xfe\x15\x51\x03\xa9\xa0\x40\x14\xb7\x0e\x24\xdb\x58\x92\x4c\x9a\x2f\xbb\xc3\x16\xfe\x0c\x01\x38\x90\x01\x96\xf9\x00\x9c\xdb\x7c\x04\xa1\x73\x62\x29\x00\xf6\xf2\x1d\x41\x66\x62\x57\xcf\x25\x69\x22\x21\x84\x14\x3f\x2c\x2a\x74\x85\x58\x89\xc9\x21\xc9\xff\x0e\xe5\x9b\x8c\xec\x45\xc8\x13\xa2\xc4\x04\x4a\x12\x4f\x93\x93\xf6\xd0\x49\xc8\x7d\x07\xfc\xcc\xa9\x42\x58\x46\x87\xc6\x7e\x10\x54\x45\x28\xf7\xb4\x29\x3f\x18\x8e\x65\x1b\x79\x14\x3b\xaa\xa6\x53\x2e\xd3\xf1\x03\x6f\x9d\xfb\xb2\xea\xea\x10\x6f\x5b\xe6\xf9\xc7\x22\xf8\x81\xde\x6f\x3b\xce\xf6\x3b\xed\xec\x19\xae\xbe\x14\x5c\xbd\x0e\x73\x21\x9b\xbb\x58\x08\xa9\x55\x18\x71\x7c\x9d\x80\x84\xa2\xde\x79\xd1\x61\x72\x9c\x30\x32\xba\x08\xbf\x01\xc7\xb1\xbf\xb4\x90\xcf\xc9\xf8\x22\xd5\xa9\xa8\x27\x80\x41\x4f\x5e\x41\x04\xc3\x80\x41\x35\xe4\x08\x4f\x4c\x01\x0a\x97\x00\x97\xfb\x40\x23\xd0\x02\xfc\x6b\x95\xba\xad\xd1\x24\x58\xcd\x8c\xed\x10\x51\x43\xc2\x67\x3c\x00\x6f\xca\x48\x2c\x82\x7c\x94\xe6\x4a\x63\x22\xba\x85\xd6\x8c\x43\x03\x05\xec\xb0\xb2\xfb\x64\x25\x0b\xfe\x7b\x9f\xb7\x02\x65\x8d\x01\xf7\xe1\x0e\xf3\xc2\x18\xdf\xcd\x2e\xa1\xe3\xc2\xe1\xff\x07\x5d\x1f\x89\x44\x5f\x0e\x8a\xae\x26\xf5\xbd\x84\xc6\x8b\xd0\x87\xf3\x11\x1e\x95\x58\xd0\xee\x3b\x75\x71\x09\xfd\xf1\x1f\x86\xc8\x60\x73\x40\xf9\xd1\xc2\xec\x38\x62\x0d\xbc\x42\x7e\x3a\xad\xf1\xc6\x29\x6d\x40\x18\x67\xcb\xba\x93\xae\xac\x3b\x9a\x70\x46\x31\x9e\x5b\x33\x87\x10\x4f\xd6\x92\x2c\x9f\x07\xb8\xaa\x2e\x68\x44\x1d\x63\x00\xd6\xf0\xea\x52\x2e\x76\xff\x78\x0b\xc0\xea\x54\xd2\x11\x40\x3a\xb0\xbd\x8c\x9c\x5b\x16\x34\x1c\x68\x24\x5a\xb2\x06\xb1\x29\x12\x0a\x90\xfa\x90\xb4\xc7\x29\x7a\x4f\x13\x45\xdf\xa5\x57\x71\x0d\x66\xbd\x1b\x26\x04\x6c\x13\x6c\xa1\xf8\x35\xe8\x2f\xfb\x8f\x5f\x51\xac\xbc\x31\xab\x8c\x3a\x41\x81\xc8\xc9\x54\x7c\x46\xb3\x80\xad\x5f\x37\xee\x22\xa2\x0b\xeb\xb7\x9f\x1d\xdf\xba\x0a\x14\x1c\x37\xb1\x74\xfa\xd0\xda\x81\x34\x0a\xa1\x15\x17\xa8\xce\x99\x02\x5c\x40\xb0\x86\x48\x00\x06\x05\xed\x41\x62\x27\x19\x1e\x72\x71\x94\x26\x51\x82\x43\x50\x3e\x83\xb4\x24\x2a\x7a\x7d\xde\xf6\x21\xa4\x0e\x0a\x16\x9a\x65\xf0\x89\x56\x94\xa7\xc6\xd2\x1d\x19\x68\xc8\x52\x48\x14\x64\x17\x7d\x1d\x3a\x61\xad\x9a\xa3\x9a\x40\xcc\xa7\x11\x28\xee\x89\x6c\xec\x07\xe1\xa6\x82\xc9\xd5\x68\x59\xe2\x81\x5c\xfa\x34\x21\xf1\x70\xaa\x70\x00\xe5\xe0\xf4\x96\x7e\xf3\xc3\xf3\x0a\x4a\x3b\x94\xc9\xbc\xf6\x40\x07\x73\x6a\xf3\x3b\x20\x9e\xfa\x75\x02\x5f\xc7\xc7\xa7\x9c\x48\x34\x1c\x6e\x78\x89\xf2\x05\x93\x1e\x13\x89\x9a\xac\xd0\x67\xab\x3b\x29\x9b\xcf\xfc\xec\x66\x59\x35\x0c\x98\xb6\x17\xed\x1a\x63\x62\x89\x4c\xa1\xee\x13\xfc\x4e\x45\x32\x7f\x91\xf9\xe2\x38\xac\xf3\x7d\xc0\x99\x80\x0a\xc8\x4f\xf5\xa6\x1a\xfc\xd3\xce\x76\xac\xb6\x68\xf4\x9b\xca\xe4\xf2\x74\x67\x57\xb2\xa3\xec\xcd\x92\x7f\x0c\x2e\x58\x13\xf8\x90\xcc\x75\x69\xca\x4e\x04\x47\x8f\x24\xd8\xf0\x3a\x8f\x0e\xfb\x93\xac\xed\xce\xf6\x03\x4b\x44\x6e\x45\x58\x11\xe7\x64\x75\x26\x32\x4c\x9a\x08\x6d\x30\x3a\x13\x4b\x50\x55\x90\x1b\xe1\xc2\x1a\xb3\x05\x6f\xe4\x07\xbe\xe0\x77\xd5\x38\xac\x6a\x43\x44\x52\xa3\x15\x77\xbd\x97\x6f\x62\x6d\x07\xf6\xf4\xb0\xf5\xd6\x18\x26\xeb\xf3\xb5\x18\x73\xd3\x65\x54\x17\xd0\xcc\x23\xcd\x12\x6e\x1e\x28\x9e\xc9\xd0\x95\xec\x99\x66\x7e\x3e\xa8\x0d\x0e\xbf\xdf\x11\x4a\xc5\xeb\x00\x6d\x77\x52\xf7\x2d\x0d\x21\x36\xc6\xc5\xed\x5b\x74\x7c\x3e\xcf\x36\xc4\xe3\xb1\xce\xa9\x1b\x47\x4c\x6b\x0c\x18\x3f\xda\xc7\x04\xc9\x48\x5e\xc7\x82\x93\x60\xca\xc5\x80\x5d\xbd\xbd\x8f\xb2\xba\x90\xb1\xc3\xd2\x5a\x00\x0a\xa7\x69\x2e\x8e\x4b\xa3\x7b\xc0\x85\xca\x18\x50\xf3\xc1\x49\x36\x89\x3b\x20\x05\x68\xbc\xd1\x49\x74\x16\xf9\x18\x48\x71\x72\x7a\xf4\xaf\xe5\xef\xa0\xe1\xaa\x6b\x58\xf0\x23\xa1\x65\x4f\xbd\x0e\xcc\x54\xaa\x17\xe7\xf0\x10\x53\x46\xa9\xf6\x9a\xc2\x10\x5d\xa2\x45\x12\x38\x5a\xa8\x92\xbd\xd3\x27\xce\x69\xa9\x20\xf1\x3a\x21\x08\xf5\xa3\x45\x88\xa3\xc9\x58\xd8\x62\xcb\x93\x70\xea\x16\x8a\x06\x37\x78\xd0\x3b\x11\x50\x43\xf4\xfe\x23\xe8\xea\x64\xcf\x39\xf6\x8b\xad\x17\x54\x68\xb2\x24\x94\x9e\x91\x73\xfd\x9e\x29\xd8\x53\xef\xf7\x21\x38\xcd\xf7\xe9\x86\x7e\xf5\xc0\x92\xc5\x8a\x59\x3c\x70\x64\xd5\xb1\xe4\x99\x96\x2f\x84\xde\xa7\x02\x90\x18\x4b\x1e\x61\x17\xe3\x76\x45\x16\x82\xe1\x8a\x2b\x10\xda\x0c\xbe\xbb\xc3\xf1\x79\x2c\x58\x24\x3a\x14\x6f\x25\x88\x94\xa4\x42\x45\x69\x09\x7f\x98\x90\x45\x9e\x2e\x71\x3b\x3d\x32\x17\xb7\xc8\x9e\x47\xf4\x6c\xa2\xe8\x7a\x64\x2e\xa9\x58\xbc\x46\x16\x2a\x91\xc8\x8e\x9c\x14\xe1\x51\x0a\x68\x65\x40\x9a\x04\xf0\x41\x83\x5c\x34\xc0\x29\x04\x29\x0f\x90\xec\x78\xc2\x04\x28\x32\x20\xe4\x82\xc6\x02\x78\x34\xe0\xde\x84\xa2\x15\x58\x07\x60\x4a\x83\x46\x07\xb8\x3f\xe1\x4b\x85\x0a\x09\x88\x46\x20\xc9\x84\x5d\xfa\x87\xf3\x9f\x6d\x7c\x15\xe5\x67\x8d\xdf\x1c\x79\x08\x2a\xa1\x20\x39\xe0\x2e\xc2\x18\x1b\xe9\xbf\x80\xfe\x83\xfa\x4f\xd0\x3d\x31\x7f\x05\xe1\xeb\xfd\xaf\xdb\x3e\x8a\xff\x6b\xf7\x0f\xa6\x3c\x0b\x7e\x3d\xf8\xf7\xc2\x71\x74\xcb\x8c\xdf\x99\x78\x54\xe1\x39\xc2\x6c\x8d\xc5\xef\x3b\xa6\xc6\xbd\x3f\x4d\xdb\x97\x4c\xc3\x73\x3e\xa5\xdd\x27\x62\x94\x22\x76\xb9\xcd\xae\xd0\xf5\x08\x8f\xc5\xc5\x54\x5e\xad\xdc\x0e\xdf\x4e\x8e\x3b\x5c\xef\x13\xba\x2e\x63\x9c\xc5\xbb\x07\x49\x9f\x3a\x08\xef\xb1\xc8\x2b\xa4\x98\xb5\x04\xff\x70\xcd\xc5\x67\x51\x0e\xd0\x3a\x28\xe2\x12\x74\x9d\x46\x74\x55\xda\x87\x71\x7b\x04\xdd\x74\x3b\x13\x75\xd0\xe7\xf9\xc1\xe3\x61\xe6\xdc\xbc\x2c\x83\x01\xc4\x39\x20\xd7\x9b\xd3\x6a\x62\xd0\x78\xd8\xb9\xaf\xcb\x70\xf6\xb9\xff\xc4\x81\xb4\x41\x12\x0d\x6b\xeb\x4d\x84\xf4\xc1\x2a\x34\xea\x2d\x22\x47\xba\x53\x09\x3f\x81\x4a\xa1\x11\xf7\x50\x0b\x6e\x69\xd5\x23\x90\x48\xc4\xca\x50\x18\x98\xca\x40\x5b\x97\x6f\x3e\x23\x26\x68\xf8\x86\x6f\xc6\xbd\x9b\x52\x6e\xc1\xa5\xe2\x23\x7b\xac\xd8\xd3\x75\x88\x92\xab\xb5\xaf\xc8\x8c\x33\x0a\x12\xde\x74\x6b\xf8\x23\x9a\x13\x5f\x1d\x09\x3e\x82\x82\x70\x4e\x4f\x1d\x09\x3e\x27\x6b\x9a\x04\xb5\xa5\xa8\xb6\x83\x5a\x5e\x69\x50\xfa\x15\xc7\xb1\x2f\x1b\x22\x1a\x42\x78\xb1\x48\x83\x6a\xc3\xae\x13\xc7\x8a\x40\x68\x7d\x86\xba\x94\xa4\xf1\x59\x2b\xb5\xbb\x6e\xf6\x9c\x9e\x2c\x18\x43\xff\x84\x18\xe0\x61\xd3\x3f\x32\xbd\x8f\xac\x5e\x63\xa3\x25\x58\xfe\xc8\xe6\x29\x33\x19\x99\xfb\xcc\x83\x11\xd4\xcc\xc7\x61\x33\x09\x56\x88\xb7\x39\x64\x20\xf2\x6b\x28\x2c\xbc\xb1\x62\xc6\xab\x63\xa5\x87\x2d\x1d\x4c\xf0\x5a\xae\x12\xe4\xc0\xaa\x61\x32\xdb\x2b\x71\x2e\x40\xba\x7a\xc3\xab\x23\x2d\xac\xb4\x22\xe1\xcb\xa2\xae\x3e\xb4\xd2\xe1\xaa\x6b\x2a\x21\xb3\x08\x70\x82\x37\x0c\x16\x69\x20\x5a\xf0\xc1\x62\x94\x14\xaa\x9f\xe9\xa3\x30\x48\x05\xed\x30\x50\x6f\x13\x04\x09\x02\x56\xce\x26\x98\x03\x6d\x5c\x01\x30\x06\xb4\xad\xbc\xc0\x02\xb0\x8a\xc2\xb6\x53\x00\x7d\x13\xaf\x13\x00\x79\x6c\x98\x01\xf3\xcc\x60\x07\x6b\x4b\x21\x80\x12\x89\x07\xea\x60\x02\x24\xe8\xc0\x06\x5b\x42\x99\x80\x25\xd1\x80\x53\x00\x07\x00\x89\x80\x00\xd2\x3f\x11\x0d\xb2\x76\xba\x54\x86\xc2\x3d\x21\x0d\x86\xd8\xba\x59\x0d\xb9\xd8\xc8\x6c\xf4\xa1\xbf\xc8\x73\xc5\x50\x0a\x9d\x75\x5e\xea\x6c\xd4\x01\x15\x65\xed\x52\x1c\x88\xe1\xa9\x0e\x44\x6e\x14\x87\x22\xf7\xfa\x69\x09\x1a\x6a\x21\x53\x72\x9f\xd4\x66\xa3\x75\x00\xab\xea\x8d\x15\xf9\x55\xaa\x7b\xcd\xe4\x1e\xc2\xa5\xa5\x62\x2b\x45\x4b\x8a\xa9\x55\x2a\xb1\x52\x4c\x92\x44\xa2\x25\xc1\x3a\x52\x0b\x4a\x29\x24\x74\x93\xd2\x21\x48\xb9\x2b\xd4\xba\xe9\xf0\x87\x06\xc9\x5c\x87\x06\x09\x8f\x11\x59\x0e\x08\x12\x44\x4b\x19\x27\x84\xc0\x93\x23\x4c\x7d\x28\xc4\xc0\xd2\xbf\x4c\x21\x19\xb4\x74\x11\x61\x43\xe5\x05\x84\x0a\xd1\x1c\x40\xd1\x00\xb4\x0d\x90\x36\x42\xd9\x1d\x24\x40\x11\x11\x45\x01\x19\xf4\x7f\xd1\x8f\x46\x1d\x1e\x54\x6c\x51\x7a\x45\x09\x14\xb3\xdc\x4e\x45\x9d\xc4\xf0\x83\xf9\x8f\x56\x3e\xc4\xfc\xe3\xf3\x0f\xb3\x3f\x34\xfb\xe3\xe4\x4c\x57\x1b\x56\x60\xfc\xde\x13\x67\x0d\x42\x37\x84\xd9\x73\x52\xcc\x01\x1a\xf8\x6b\xe9\x9e\x63\x14\xe6\x82\xcd\x90\x30\x04\x60\xe4\xc2\x91\xb1\xe6\xe6\x9a\x98\x6c\xf1\x93\xa3\x3b\xcd\x06\x36\x64\xdc\xd3\x73\x8c\xd0\x19\x3b\x35\xfa\x63\xe8\xdb\xb9\x8e\xb2\xc7\x05\xdb\xca\x0e\x16\x82\x2d\xfa\x5a\x70\xae\x40\x8b\x10\xff\x80\x82\x10\xfd\x3d\x10\x87\xf2\xb1\x4a\x0c\xc1\x00\x87\xe0\x19\xa8\x87\x68\xe4\x04\x3b\x0a\x7e\x90\xe3\x39\x22\x43\xf0\x0f\x18\xb4\xf1\x76\x42\xdf\x31\x28\x87\x16\xdf\x31\x0e\x24\x21\xa4\x84\xa8\x5d\x66\x84\x9c\x0e\x53\xae\xcd\x44\xea\x05\x28\xec\xef\x39\xa9\xab\x14\x9b\x71\xd6\x84\x7b\xf5\xfa\xb8\x0a\xaa\xb8\xf3\xd3\x95\x4f\xd5\x20\x71\x4f\x05\x10\x9f\xdb\x74\x01\x4c\xc9\xc1\x6a\xde\xa0\x18\x4f\x28\xb4\xe7\xba\x33\xbe\x9d\x54\x9b\x1e\xf2\x54\x77\x44\xd2\xa1\xad\xce\x61\x8e\x97\x13\xb7\x7f\x8d\xce\x79\x4f\x38\x28\x5a\x2f\x6d\x4c\xd9\x3a\xe9\xdd\xe9\xcf\x97\x08\xe3\x9a\x96\x4d\xbf\x93\x32\x84\x60\x13\x23\xae\x37\xc9\x63\xc5\x01\x35\x8b\x93\x7f\xac\x5f\x4f\x49\x50\x2b\x5d\x45\x2b\x91\xd3\x5d\x84\xa6\xdd\x3b\x0b\x4b\x12\x32\x89\xe9\x9c\x45\x54\x3f\x00\x37\xc4\x13\x33\x52\x4e\xee\x55\x74\xe3\x7a\x33\xa4\x95\x5a\x02\xb3\xd4\xd9\x81\x53\x66\xd8\x59\x45\xd6\x44\x55\xb9\x19\x10\x2f\xcc\xd2\x97\x02\xec\x7e\x00\x02\xd9\x0d\xe6\x20\xf4\x69\x38\x22\xe4\x90\x20\xa4\x93\x08\xe2\x53\x69\x97\x3d\x14\xf7\x22\x04\xcb\x92\xf2\xc3\x42\xc7\xa9\xc4\x5e\x05\xb4\xba\x6c\xca\x28\xc9\xb0\x5e\xb8\x02\xbc\xa8\x9d\x52\x11\x72\x17\x99\xe3\x4a\xa6\x7d\x35\x42\x11\xf0\xc7\x29\x33\x7c\xd0\x13\x4b\xb6\x47\x78\x36\x25\x11\xba\x48\x8b\x35\x5c\x9d\xca\xea\x2d\x42\x84\x47\x9d\xa9\x1d\x96\x17\x02\xc4\x0c\x87\xf3\x3f\x95\xe2\x2f\x48\x02\xb2\x5a\x14\x92\x0b\x1c\x9f\x8a\xc1\x26\xbc\xa2\x32\x5d\x0c\x90\x58\x60\xb7\x83\x48\x48\x1a\x93\xf3\xd0\x59\x04\x3c\x79\xf1\x04\x79\x1c\x0a\x27\x50\x11\x04\x06\x5a\x1d\x00\x90\x41\xcb\x21\x07\x2c\x04\x1c\xa7\xf1\x79\x43\xe2\xf2\x68\x38\x21\xd3\xf8\xbe\x7b\x17\x2f\x22\xf8\x21\x0e\x7c\x10\x86\x7d\x0e\x86\x3c\x27\x0c\x78\x13\x0a\xf6\x5e\x15\xec\xbc\x27\xd8\xf4\x4b\xb1\xa8\x87\x63\x50\xde\xc6\xa1\xbd\x0d\x43\x3a\x18\xbd\xf4\x25\x79\xe8\x55\xe7\x91\x57\x6e\x45\x5c\xf9\x15\x71\xe4\x39\x6d\xe0\x4a\xd9\xc0\x95\xa3\x81\x2b\x2f\x02\x56\x1d\xc3\x95\xfd\xc6\x36\xbb\x8c\x6c\xf7\x18\xd9\x6e\x20\xd6\xee\x20\xd6\xee\x20\xd5\x83\x3a\x82\x7d\xde\x3b\x9f\x28\x1b\x93\xa7\xe0\xcc\x9e\xd5\x75\x8e\xc1\xa9\xee\xc1\xa9\xe6\xc1\xa9\xbe\xc3\x13\x4d\x86\x26\x5b\x0c\x4c\x36\x0d\x49\xf6\x0d\x49\xb5\x0d\x49\x35\x11\x63\x75\x0d\x62\xf5\x1e\xc2\xea\x3d\x85\xd0\x7b\x09\xa0\xc6\x0b\x41\x8c\x06\x83\x17\xcd\x06\x2f\x59\x8c\x5e\xb3\x18\xbb\xe6\x31\x74\xcc\x62\xeb\x91\x0a\xeb\x91\x95\xcf\x21\xeb\x76\x43\xd6\xbc\x87\xad\x39\x0f\x59\xb2\x24\x58\xb2\x32\xb0\x62\x22\xae\xe2\x25\x5a\xc0\x4a\xb7\x80\x95\x6f\x01\x2a\xd6\x02\x0a\xa6\x02\x0a\x8e\x01\x2a\x76\x01\x28\x58\x33\xa1\x60\xce\x84\x83\x3a\x12\x0c\xe8\x4e\x02\x28\x46\x07\x28\x45\xe3\x90\x8b\xc7\x3c\x41\x9d\xe0\x0c\xef\x00\x64\x78\x03\x90\x2f\x29\x77\xdc\x55\xdf\x71\x57\xb5\xc4\xaf\x60\x46\x7b\x5c\x31\xec\x04\xcf\xae\xa1\xed\x69\x17\xad\xa4\x51\x3b\x45\x44\xed\x7d\x34\xe5\x3e\xe4\x14\x7e\x21\x0a\xe1\x15\xce\x01\x2f\x00\x92\x6c\x8b\x96\xb0\xaa\xe9\x8a\x46\x70\x83\xe6\x8d\xb1\x21\xd3\x2c\x7c\x63\x0f\x3c\x41\xb5\xf4\xd2\x9c\xdc\x46\x23\x25\x3e\xc2\x80\x71\x7c\x28\x57\x42\x15\x6e\x2b\x95\xc3\x45\x5c\x24\x35\x82\xdf\x56\x2a\xb5\x42\x8f\x4c\x20\xd3\xe3\xbd\x38\x10\x99\x7e\xca\x54\x36\x7f\x4d\x00\x2b\xc3\x22\x4e\x64\xeb\xec\x38\x08\xe4\x8b\x21\x2a\x20\x58\x26\xb0\x5e\xdc\xaf\x5c\xee\xa7\x38\x39\x00\x6e\x28\x7b\x1c\x65\x0b\x8c\x72\xa5\x3e\x19\xb8\x39\x4c\x62\xbd\xdc\x52\x5b\x60\xe0\x2b\x2a\x0a\x9b\x11\xea\xd9\x6b\x31\x19\x20\xb9\x47\xe2\x9a\xc7\xb7\x6f\xc9\x62\x8a\xfc\xcc\x1a\x08\x13\x87\xee\x64\xe9\xdf\xc0\x22\x32\x26\x65\x81\x31\xd4\x45\xd0\x0c\x2a\x68\x16\xca\x39\x5d\x2c\x38\x68\x0d\xa9\x11\xe4\x6b\x94\x80\x2a\x6e\x92\x63\xe2\xa5\xd3\xdd\xeb\xca\x23\xda\x2f\x9f\xeb\x49\x13\x36\x19\x95\x59\xf2\xe8\x5b\xb2\xc9\x88\xe0\x06\x1f\x44\xc4\x64\x6c\xcb\xbc\x53\x0e\x22\x59\xdd\x78\x4a\x46\x43\x06\xec\x52\x12\x1e\x18\xa6\x1b\xa8\x01\xe1\xa6\x12\x85\x6e\x93\x40\xfa\x5b\x18\x80\x6e\x38\xaf\xee\x91\x5e\x71\xeb\xe2\x39\x78\xc4\xa8\x7c\x4a\xa2\xc4\x2a\x14\x22\x97\xc1\x29\x53\xfa\x88\xbe\x29\xc3\xe2\xa3\x3d\x2a\x03\xc2\xb9\xba\xa8\x8b\xa2\xb7\x37\xa9\x03\x62\xdc\x68\x5d\x4c\x8b\x91\x8d\x77\xb0\x2b\x12\xf2\x92\x2e\xa9\x73\x12\xa4\x5b\x8c\xb6\x4c\x3a\xe7\x44\x83\x14\x75\xec\x5c\xb7\x1f\x76\x04\x8a\xfb\xa9\xc0\x1d\xe4\xec\x96\x08\x74\x68\x01\x69\x49\x83\x26\x02\xd3\x5c\x6f\x56\x7d\x71\xf0\x0b\x63\x84\x1d\xb1\x5b\x51\x32\x41\x57\x50\x65\x99\xbf\xb5\xe1\x07\xf3\x6d\x60\xd6\x53\xb5\x6c\x5a\xb4\xfd\x76\xa2\xc4\x06\x5a\xb6\xf4\xb6\x0c\xed\x75\x83\x28\xba\x6c\x59\x5a\x8a\x6b\x02\x24\x21\xa5\xa4\x64\xf1\xa5\x20\x57\x5d\x32\x68\xa5\x52\x5c\x0a\x4e\xc4\xa0\x8d\x8b\x75\x9e\x1c\x00\x58\xad\x2d\x8c\x0c\x10\x05\x92\x40\x9b\xa5\x09\x61\xd7\x55\xbf\x3f\xe4\x5f\x84\xdc\xeb\x65\x68\x89\xeb\x32\x18\x8a\xe9\xd6\xa5\x29\x59\x6c\x34\xca\xd6\x57\xd6\x52\xa6\x54\x69\x9a\xd7\xf5\x1a\x23\xe3\xec\x26\x2c\x7c\xc0\x2b\x04\xba\x94\x7a\x02\xd8\xdb\x5c\x11\x06\x19\x10\x97\x26\x05\x13\xd9\x9a\xd4\x20\xb7\x30\x51\x14\xc2\x88\xf4\x47\x25\xbf\x64\x14\x77\xd2\xc8\x9f\x69\x72\xa6\x2c\x5a\xbd\x26\x1f\xd1\x89\x55\xb1\x1f\x2c\x84\xea\xb1\x11\xa2\xa0\x7c\x03\xdd\x6c\xc7\x66\xa9\x71\x42\x1e\x8e\x4c\x21\xd7\x15\x6c\x53\x33\xec\x06\xce\x84\xf6\x9d\x43\x39\xe0\x30\x37\x7f\x9c\x9d\x41\x2b\x00\x35\x2c\x55\x92\xab\x56\x80\xba\x93\x9c\x85\x6a\x96\x54\xf4\x80\x73\x1f\xb3\x50\x02\x80\xd0\x9a\x88\xf2\xc7\xf2\x72\xcf\xee\x2e\xec\x84\x30\xa9\x4b\x43\x39\xbc\x6b\x19\xfd\xd6\x33\xf1\xad\x60\x99\x94\x9f\x1c\x4a\x51\xb7\xa3\x4e\x0b\xe2\x74\xbc\xca\x26\xb1\x19\xe9\x0d\x32\x89\xad\x5b\xe5\x47\x9f\x89\x02\x41\xdc\x98\x34\xc7\x02\x59\xea\x08\x99\xfd\x10\x86\xa2\x83\xf9\x37\xa2\x1f\x89\x56\xc0\xef\x7d\x2a\x54\xce\x46\x90\x35\x49\xf5\x40\x9c\xa3\x8a\x8a\x73\xe5\x45\x38\xb6\xa4\x8d\x7a\xa9\xfc\x96\xd4\x19\xdd\xd0\x13\xdc\xae\x9e\x03\xf0\xb0\x36\x26\xc0\xf0\xe9\x7b\x0f\x0b\xc2\x1d\xa7\x7a\x0a\x3e\x79\x18\x16\xa3\xed\x8a\x18\xf6\x75\x6d\x25\x49\xb5\xe4\xa5\xe7\xa4\x9c\xe2\x18\x74\x72\xfc\x18\x86\xcc\xa8\xa3\x01\x71\x70\x02\xe2\x8d\x67\x06\xb7\xd9\x41\xa8\x40\x5c\x4d\x4b\xc2\x4b\xf9\x75\x24\x0b\xe5\x72\x7f\x7e\x31\xdc\xe9\x25\x17\x1a\x49\x45\xca\x86\x5c\xe0\x5b\x0a\x5b\x8f\xa8\xe4\x4f\x42\xd2\x32\x25\x05\x0e\x88\x74\xa6\xec\xfa\x14\xd6\xc9\xd4\x46\xd2\x75\x11\x6b\x0b\x4f\xdb\x10\x94\x44\x1a\x67\x51\x1a\x0f\x94\x80\x0a\x20\x84\x39\x0f\xc1\xd0\x91\x6e\x41\xa4\x15\x6a\x53\xf7\x86\xb3\xea\x27\x83\xf4\xec\x5f\x65\xb4\xac\x81\x21\xe0\xec\x5f\x1f\xc0\xe9\xc1\x49\x77\x27\x5b\x61\x0b\x97\x5c\xee\x23\x17\x3b\x88\xeb\x98\xc7\xc4\xcc\x63\xf4\xcc\xce\xc2\x8d\x82\xb5\xa2\x1b\x66\x4f\x06\x99\x28\xba\x01\xbc\xe3\x03\x7e\xc3\x8b\xa2\x63\x6f\x00\x5c\x9f\x9c\x01\xa1\xd4\xa6\xea\x12\x4a\xcc\x55\x88\x6a\xde\x77\x33\x36\x75\x79\x44\xc3\x92\x1b\x40\xb9\x96\x67\x0b\xef\x16\x08\xde\xa7\x78\x36\x7f\x6d\xe7\xa8\x08\x67\x9e\x4a\x91\x6a\x9d\xc5\xd1\xc2\x5c\xcf\x9f\x8c\x17\x87\x02\x31\x86\xed\xc1\x97\xf5\xf4\x66\x1b\xc9\xce\xc1\x90\x61\xad\xfe\xfe\xa4\xa0\x4a\x6a\xd9\x7f\x2d\x7d\xf4\x80\x3e\xe6\xd3\x94\x64\xa0\x0b\x55\xa7\x1f\x94\x05\x5d\x88\xbc\xa8\xef\x2f\x27\xc7\xa8\x40\x5c\x3c\x7f\x46\x9d\xdf\xa3\x4e\xd0\x8e\x30\x6f\xb6\xfe\xe9\xbe\x4b\x2b\x8f\xca\xeb\x4f\xca\x2b\x22\x70\x25\xa4\x87\x94\x2f\x94\xf3\xdd\xb2\xa0\xcb\x65\x29\x96\x8f\x5e\x48\xb1\x7b\x12\x0b\x17\x3e\xb8\xe7\x9f\x33\x9e\x78\xce\x6e\x66\x38\x32\xce\x03\xc9\x1c\xeb\x4b\xb8\xf4\xf3\xe6\x3a\x23\x0f\x50\x01\x2d\x67\xa8\x04\xce\x5e\x02\x67\x2d\xf0\x5c\xd2\xc2\x06\xfa\x00\xb0\x51\x8a\x48\x8f\xc8\xdd\x2e\xbb\x3a\x23\x2e\xce\x75\x83\x4a\x3b\x3c\xa0\x0a\x79\xa3\xee\xc9\x37\x05\xba\x46\x6f\x2a\x51\xb9\x03\x60\xe4\xf4\x55\x50\xad\x21\x07\x80\xcc\xd6\xa5\x83\x8c\xf4\x8b\x75\xed\x74\x21\xdb\x85\xc3\xfb\x42\x91\xed\x32\x60\xa4\x1a\xca\x13\x0d\xb1\x75\xd2\x21\x6a\x43\xed\x28\xd1\xea\x72\x3b\x54\xd1\x1c\x00\xb5\xba\x4c\x26\x82\x19\xb3\x0e\x50\x9e\x44\xea\x00\x32\xf6\x1f\x68\x1c\x32\xee\x74\x3e\x2d\xe4\xa7\xfc\xe1\xbc\x33\x3f\xb1\x65\xc6\x16\x32\x50\xbb\x95\xfc\x10\x7a\x3f\x7e\x69\x87\xe4\x92\x1a\x86\x3c\x3c\x8d\x12\x37\x20\xff\x45\x72\x29\xd0\xb7\x2f\x85\x39\x6e\xcf\x66\x5b\xb8\x7c\xc9\x37\xb6\xf3\x8c\x74\x47\x8e\x76\x28\x63\x22\xb8\xe1\xb7\x04\x1b\x5e\x0f\x50\x53\x66\x47\x21\x0c\xa4\x88\x5d\xb2\xd3\x8b\x66\x36\x7c\xe0\x51\xad\x92\xc3\x6c\xf4\xf9\xfb\x89\x0f\xf5\x1a\x03\x85\xbb\x57\x82\x1e\xaa\x68\x24\x26\xef\xd2\x14\x03\x74\x92\x10\xef\xd5\xdc\x57\xe8\x46\xec\x11\xa5\x3d\x96\x24\x21\xcc\xfd\xed\x0b\xb8\xdf\x64\xe2\x1b\x65\x9a\xac\xe1\x9b\xd2\x0a\x32\xf2\x61\x90\x2c\xb8\x6a\x50\xce\xb3\x05\x8a\xb1\x59\x0e\x3f\x58\x58\x4c\x10\xa2\xfc\x10\x7c\xfb\x79\x30\xce\x84\xbd\xdd\xaa\x9b\x87\xf2\xa3\x30\xd0\x40\xe7\xdd\xd5\xb4\x66\xc4\x48\x4f\x7e\x13\xfc\x43\xb1\xfd\x72\x70\xf9\xac\x87\x5f\x13\x48\x00\xe5\x34\x80\x1a\xcf\x71\xbf\x19\x83\x33\x60\xa9\x05\x1c\xf4\xd5\x71\xe9\x50\x66\xfe\x60\xae\x0f\x28\x05\x46\x51\xd5\x12\x2c\xe0\x20\x82\x0d\x7f\x9f\xcc\xd2\xbc\x51\xca\xc6\xa9\x7a\x8d\xa5\x56\x17\x10\x88\x59\x00\xd4\x8f\x89\x10\xf0\xba\x0e\x0d\xa1\x43\x9f\xbf\x8b\xc8\x5c\x75\x7e\x15\x08\x58\x52\x05\x06\x51\x52\xd9\x45\x59\x20\xa5\xa7\xfc\x14\xab\xe0\x90\xff\x30\x59\x50\x6c\x45\x94\x41\x43\x90\x25\x42\x90\x55\x04\xe2\x03\x20\xa8\x5f\xe5\x42\x7e\x88\x48\x31\x09\x90\x55\x77\xd2\x2b\xb2\x08\x2b\x51\x85\x56\x7d\x3b\x53\xe8\x5a\x8f\x42\xd1\xf9\x08\x46\x41\x68\x63\x20\xb3\xb1\x90\x59\xd8\xc9\xd9\x3d\x49\x3c\x05\x65\x8a\x49\x68\x7a\xf0\x64\xb1\xa5\x7b\x69\x9f\xdf\x1c\xfa\x4f\x13\x87\x42\x90\x43\xe3\x62\xc0\x6a\xc4\x37\xb8\x0a\xd8\x19\x1e\x0e\xb7\x96\xcf\x26\x28\x29\x94\x90\xf1\x1e\xbf\x2f\xf2\xc1\x28\xd8\x40\xdf\x7d\x57\xa4\xda\x6a\xc5\x4a\xd1\x10\xc4\xaf\x61\xc5\xa7\xaa\x73\x37\xf6\x45\x22\x1d\xa4\xb3\xfd\x8b\x27\xd8\xb2\x5d\x0a\xe7\xd0\xae\x31\x9d\xce\x11\x92\x66\xe8\x89\x32\x84\x44\x99\x3a\x22\xed\xf7\xe0\x60\xef\x0c\x18\x8e\xef\x71\x03\x37\x28\x45\x78\xc2\x2b\xc6\x13\x7d\xc3\xa2\x3f\xba\x23\xf7\xa2\x3f\x3a\x23\xf2\x13\xdd\xe0\xe1\x43\x09\xfe\xef\x08\x57\xb4\x01\x5e\xd0\x0e\x7b\x40\x15\xe7\xb8\x28\x78\x05\x0c\x04\x2f\x38\x02\x5e\x50\x08\xba\x60\x1a\xe8\x80\x6b\xa2\x01\xae\x87\xc6\xb9\x9f\x1a\xe6\x7c\x6b\x95\xf2\x0b\x95\xf1\xae\x37\xc4\x5c\x6f\x8f\x70\xbe\x3d\xc2\xf8\xf7\x03\xe3\xdb\xef\x0f\x5e\x07\xa0\xc5\xe2\x54\x41\xe1\xc8\x7b\xc3\x90\xe7\x87\x21\xaf\x0e\x43\x5e\x1e\x86\xba\x3d\x0b\x74\x62\x17\x60\x40\x44\x1d\x7a\x64\x07\xad\xda\x35\x6d\xe0\x09\xaf\xfb\x74\xc2\xf9\x26\x08\x13\x10\x81\xea\x40\x55\x05\x18\x90\x51\x22\x05\x16\x90\x51\x5d\x04\x14\xe0\x11\xf0\x02\x3b\x80\x47\x78\x08\xf2\x00\x13\x80\x08\xf5\x45\xd8\xe8\xe7\x63\xa3\x9d\x6e\x8e\x75\x3a\x39\xd4\xe0\xe7\x4b\x83\x9d\x2e\x0e\x74\xb8\x39\xce\xe0\xe7\x3b\x83\x9c\xce\x0e\x73\x38\x39\x1c\x33\x86\x46\xc7\x39\x1b\x1c\xe2\x6c\x73\xbd\xa1\xce\xd6\x87\x3b\x5a\x1c\xec\x68\x73\xad\xa1\xce\xb6\x07\x3a\x98\x1c\xea\x60\x73\xa9\x81\xce\x86\x07\x3a\x18\x1c\xe7\x60\x73\x9d\x81\xce\x56\x07\x39\x57\x1c\xe3\x5c\x73\xc5\x71\xcf\x15\xc7\x3c\x17\x1c\xf0\x5c\x73\xb9\x71\xce\xe5\x87\x3b\x56\x1c\xec\x5a\xe7\x62\xd7\x3a\xd5\xb9\xd6\xad\xce\xb5\x6e\x74\xab\x73\xa5\x5b\x9d\x0a\xdc\xe8\x56\xe6\xfa\x97\x37\x94\xb9\xbc\xa5\xcd\xd5\x2e\x6e\xa9\x73\x71\x4b\x9b\x8a\x5c\xdb\x52\xe6\xda\x77\x36\x93\xb9\xb4\x9d\xcd\x94\xee\x6c\x27\x73\x5d\x3b\x9a\xc9\xdc\xd6\x4a\xe4\x2d\x2b\x90\x94\xae\x42\x52\xbd\x08\x4a\xf4\x21\x1b\xd0\x64\x6f\x41\x91\xbd\x03\x4f\x4b\xb1\xd1\x45\xbb\xc1\x2a\x8e\x94\x32\x6f\x70\x0b\xd5\x57\x98\xac\xf8\x5f\xfb\x8f\xf5\xcd\xf5\x38\xba\xc7\x17\x58\xad\xac\x59\xfb\x14\xfd\x91\xa5\x45\xc0\xa4\x7b\x7a\xc4\x0b\xac\x52\xfa\xaa\x1f\x35\x58\x58\xb2\xe0\x5f\x6f\x3c\xb0\x23\x7a\xbe\x8d\xc9\x12\x34\x54\x2f\x40\x08\xdc\xa0\x73\xc9\xa7\x3c\xae\x23\x8a\xb2\x80\x10\x03\x4f\x37\x99\x70\xa1\x4b\x87\x98\xaa\xc9\xab\x2e\x80\x40\x04\x7f\x14\x6c\x86\xdc\xea\x05\x62\x91\x1c\x48\x83\x71\x18\xce\x03\xda\x91\x15\x39\x4b\xf2\x17\x28\x78\x01\x4a\xa0\xc2\xe5\x22\x04\x0a\x46\x43\x03\x4c\xf1\x28\x90\xcb\x71\xda\x52\xb0\x80\x14\xa7\x05\x6b\x06\x34\xc6\xde\x80\x87\xa5\x50\x45\x5b\x69\xc7\xdc\x94\xfd\x6f\x34\xa2\x28\xcc\x94\x8e\x70\x0a\xf2\xc3\x7d\x61\x12\xac\x07\xb7\xf6\x29\x63\xae\x88\x35\x30\xb2\xc3\x5d\x7f\x31\x03\x4c\x66\x69\xcf\xc5\x86\xcd\x65\xa5\xf4\x14\xf8\x51\xba\x00\x42\x5f\x4c\xcd\x2c\x99\xa9\xcd\xe9\xd9\xed\x8e\x5a\x04\x19\x31\x4a\x6e\x8d\x26\x6a\x91\x13\x08\x62\x2a\xc0\x62\xda\xf5\x3d\xad\xf0\x63\x7b\x1f\xe0\x10\x5c\x7c\xfc\x18\xab\x88\x83\x8d\xd5\x6e\x61\x8a\x1a\x00\x1f\x92\x22\x9a\x8a\x68\xa2\xb5\xc1\x61\x50\xba\x55\x75\x86\x3f\x40\xf6\x11\x02\x98\xad\x42\x21\xd2\xa5\x1e\x1f\x31\x74\x72\x45\xea\x4e\x47\x6b\x02\xbc\xb9\x73\x04\x51\x33\x8f\xe6\x66\x98\xb1\x84\x6a\xad\x75\xca\xc6\x1a\xca\xd1\x02\x77\xc4\xfa\xba\x6f\x5d\x49\x1e\x8d\x86\xa5\x09\xa1\x1d\x9b\x17\x4b\x49\x9b\x04\xb4\x0d\xdd\x4e\x7f\x16\xe5\xb2\x74\xaa\x9a\x2a\x0b\x26\x29\xb6\xda\xa3\x80\xb0\xdc\xb1\x5b\x60\xef\x1c\x27\x68\xef\x65\x57\x2c\x2b\x8a\x3a\x75\x59\x65\xaa\x62\x59\xa6\x91\x18\x69\x97\x95\x85\x76\x36\xbc\xa7\x70\x21\x3d\xbf\x00\x6d\x51\x54\x6b\x25\xbf\xb5\x3b\xa0\xbd\xe0\x2c\x5f\x41\x8a\xa3\xd9\x3c\x85\x3f\xb5\xfb\xe6\xd1\xcd\x2d\xc6\xea\xac\x02\xa3\x3e\x02\xe2\x5f\xe3\xcf\xc5\xd5\x58\x19\x7f\x59\x95\xe0\x64\x8f\x2c\x40\xcd\x0a\x1a\xc6\x00\xc3\x24\xcf\x03\x02\xd7\xa4\x78\x97\xc7\x9a\x88\xcf\x09\x11\x74\x3c\x0b\xfe\x57\x0a\x19\x96\xdb\x96\xb2\x29\x35\x1b\x58\xcc\x1e\x71\x18\xb6\x03\x0d\xfb\x02\x61\xd4\xe9\x9c\x42\x70\x1f\x60\x27\x70\x0e\x78\xf4\x68\x22\x9b\xca\x1a\xe7\xc5\xf2\xd2\x85\xf0\x4d\x65\x77\xf8\x92\xea\x69\x02\x2b\xf1\xb9\x82\x53\x19\x83\x23\x8e\x4e\x9c\xf4\x65\x23\x21\x8e\x11\xaa\xae\xe3\xff\x1c\x8a\x0b\x6e\xc0\x7a\x56\xa4\xca\x00\x82\x5f\x78\x79\x15\xc8\x20\xb6\x4b\xa2\x85\x84\x20\x64\xc0\x27\x48\x24\xb5\xdd\x25\x92\x44\x8c\x58\xf7\x90\x56\x84\xb3\xb9\xb5\x7a\xf3\xbd\x54\x38\x6c\xb3\xaf\x18\x5f\xf2\x7a\x74\x26\xab\x91\x2c\x0e\x2f\x3b\x9e\x9e\x84\x09\x30\x91\x78\xba\x2b\xdc\x45\xd0\x50\x16\xf4\x0c\x79\xd5\x54\x24\xc2\x4e\xcf\xe4\x55\x54\x24\xb4\xae\x7c\x05\x1e\x59\x60\x67\x83\xb9\x90\xae\x51\x1a\x31\xca\x72\x95\x28\x39\xee\xe6\x34\xf2\x1e\x22\xe6\xc5\xb5\xa6\x99\x12\x56\x59\x2a\xef\x39\x11\xe2\x63\xe0\xd0\x18\x89\xf6\xa1\x22\xe1\xf4\x24\x9b\x03\x38\x2e\xcd\x93\x63\xec\x1c\x30\x46\x51\xd1\x70\x5e\x5c\x46\xe9\x9b\x58\x60\x6c\x25\xa9\x96\xf6\xa7\x57\xa3\x45\x2c\x26\xe8\x49\x1e\x14\x40\xd9\x65\xec\x4d\x69\xcc\x46\x78\x22\xb8\xd8\xd1\x9f\x18\xec\x1a\xf9\x46\xb6\xea\x2f\xa0\x47\x4b\x8c\xe6\x7a\xfe\x39\x32\xc1\xb4\xbd\xca\xb7\xdf\x56\xdf\x36\xa0\x4d\x37\x13\xa0\xec\x46\x20\x2b\x5c\x05\xc8\x45\xef\x4b\x3d\x40\x19\x54\x30\xbe\x72\x0d\x24\x23\xa8\x83\xd9\x54\xb9\x00\xa6\x94\x7b\x4f\x34\x22\x37\x9b\x00\xb0\xa1\x9e\x34\x6d\x6e\x1d\x18\xd6\xba\xff\x98\x0c\x71\x51\x7e\x60\x2b\x01\x2d\x32\xdf\x01\x58\x95\xed\x48\xe0\xaa\x94\xb3\x77\xa6\xbf\xb4\xbe\x03\xd3\x2d\xaf\x30\x5f\xe3\x6d\x3a\xf3\x25\x61\x83\x48\x22\x06\x39\xd0\x53\x0e\xbb\x17\xee\xc8\xd5\x97\x01\xf2\x0c\x36\x21\xe9\x9a\xef\x6a\xc9\x3a\xb4\xa5\x74\x75\x4c\x18\xb1\xae\x25\x01\x31\xf8\x03\xeb\x01\xd5\xaf\xe2\x98\x55\x88\x78\x8c\x1b\xaf\xb8\x2b\x95\x07\x2a\xae\xc2\x69\xbd\x06\xdc\x65\x3e\x0e\x87\xfb\x4b\x21\x03\x81\x36\xe5\xb2\x8f\x6d\xb7\x85\x81\xcb\xa0\xa7\x55\x3e\x18\xc5\xb6\x58\xad\x15\x31\x03\x17\xf1\xad\xc5\x22\x14\x13\x57\xc7\x81\x64\x16\x85\x58\x00\xeb\x7c\x5c\xfa\xbb\xe0\x2d\x1d\x9e\xb5\x55\x32\x88\xa1\x19\x3e\xac\xd4\x2f\xa3\x8d\x40\x40\xbc\x3b\xfc\x3f\xe3\xf7\x1e\xff\x07\xe2\x72\x5c\x18\x8d\x48\x3c\xf2\x1f\x58\xc5\x04\xf2\x8d\x6d\xa7\x11\x50\x17\x06\x41\x94\x28\x7d\xdf\x87\x3b\x9f\xfb\x15\xcd\x2f\x77\x83\x61\x23\xc0\x33\x71\xf9\x7f\x69\xb8\xa6\x6c\xfc\x8f\xb6\xcd\xbc\x29\x72\xaf\xa1\x71\x40\x78\xfa\xfc\x1c\x63\xdd\x31\x49\x85\x7b\x00\xc6\x63\x7f\x43\x02\xfe\xbe\x05\xf0\x36\xe4\xde\xa3\x5b\x01\x66\xf3\x9a\x0a\xa5\x0a\xce\x46\x15\x46\xef\x07\x64\x14\x05\xb9\x2b\x88\x70\x11\x4c\x52\xfa\x92\x49\xae\x70\xb0\x06\x69\xe2\xcc\x82\x73\x0c\xc5\xb1\xb8\xb5\x1b\x5a\xe0\x0b\xcb\xe9\x34\x5b\xb9\x36\x7c\x26\x79\xf7\xbc\x9b\xc2\x0a\x7f\x27\xa7\x67\xd0\x63\x74\x08\x16\xd5\x22\xbd\xe2\xa9\xc6\x0f\xf4\x51\xf8\xe6\x34\x57\x89\x65\x01\x03\x28\xc6\x0e\xe4\x28\xf5\xbe\x32\x3f\x0d\xd3\x6c\xf2\x45\x14\x0d\x4c\x70\x0a\x43\xf8\x96\x1f\x4b\x9d\x91\xeb\xc4\xa4\xcf\x3e\x13\x60\x53\x9c\x18\xa8\x37\x31\x1e\xdc\x12\xc5\x80\x35\x03\x80\x36\x3d\x3f\x19\x6e\x5b\x41\x98\xa9\xf4\x51\xe3\xbe\xd1\x0e\x25\x54\x32\x0d\x10\x1f\x11\x90\x9b\xf5\x44\x73\x2f\x7e\x9b\x4d\xaf\x00\x80\x87\x13\xf6\xe8\x49\xad\x12\x67\xe8\x5e\x14\xe2\xcc\x0c\x00\x90\x04\x0b\x30\x9d\x78\x6b\x0d\x52\x27\x5b\x85\xf7\x70\xa5\xe2\x2d\xe6\x12\xd2\x01\x33\x2c\x9b\x55\x82\x69\xd7\x20\xf0\xae\x59\xbc\x5a\x95\xeb\x4b\x66\x3b\xfa\x92\xff\xb6\x89\x22\x32\xa8\xa2\xa3\x5d\xa8\x02\x63\x25\x00\x57\x83\x8b\x36\x4c\xdf\x0f\x88\x2a\x36\xf7\x37\xb1\x3c\xe0\xa4\x17\x71\xad\xa1\xb6\x86\x26\xc2\x66\xf5\xe0\xb0\xb4\x26\xf8\x84\xa3\x19\x80\x9c\xe8\x54\xa8\xc1\x78\x40\x02\x06\x01\x61\x1b\x49\xe6\xc4\x77\xbf\xb0\x62\xc3\x6c\x44\x48\xc4\x08\x10\xfe\x18\x6e\xad\x6a\x86\x86\x09\x0d\xc5\x15\x19\x74\x18\xee\x36\x16\xf3\x20\xc5\x0d\x6a\x1b\x64\xf1\x8e\x16\x4d\xe2\x8b\x63\x58\x47\x0d\x4b\x81\xfe\xc9\xbf\x5f\x21\x46\xbf\x69\xbf\x05\x88\xa0\xe2\xaa\x1a\x45\x9a\x24\xae\x9a\xde\x6d\x03\x3f\x40\xd0\x43\xc4\x8b\x58\x7b\xb9\x52\xf2\x7f\xea\x28\xb5\x19\xcd\x5c\x75\x55\x44\x57\xdd\xef\xac\x18\x0a\x36\x44\x95\x30\xdd\xe6\xe3\x68\x4b\x30\x1d\x58\xab\xb4\x58\xf5\xe9\xdc\x5d\x0b\x9d\x0f\xa2\x6b\x33\x02\xde\x3a\x26\x6d\x6c\x53\x0a\xb8\x2b\xd1\xd9\xc1\xb0\x21\x49\x12\x6f\x08\xd3\x9b\x97\x31\x10\x3a\xee\x3c\x06\x99\x7f\x76\x0f\xf5\x2a\x55\x05\x4b\xb6\x26\x8e\xf4\x35\x82\x9a\x13\xaa\x65\x73\xb0\x10\x4e\xda\x72\x39\xa2\xb6\x94\x84\x90\xe1\x61\x54\xa9\x25\x05\xca\x48\xc4\xd6\x05\xac\xb4\xe4\x19\x30\x67\x77\xb1\xd0\x55\xcd\xe3\x8d\x1f\xc9\xb9\x60\x64\xec\x4b\x04\x63\x8f\x87\x81\xdd\x9d\xcf\x03\x59\x0d\xa7\x3a\x21\x58\x04\xd7\x6d\xbe\xb0\x2d\x0c\xbc\x9f\x1a\xc1\xbb\xc7\x06\x08\x4e\x63\x83\x59\x50\x69\x06\x39\x90\x0c\x11\x83\x00\x5c\x53\x40\x30\xfd\x95\xe8\xd0\x7a\x2e\x25\x9d\x48\x08\x1a\x37\x26\xa5\xb2\xea\x26\x9e\x22\xf8\x44\x68\xaa\x17\x38\x4b\x80\xc7\x06\x69\xe6\x6a\x1d\xa4\xfa\x93\x74\x0a\xc4\x75\xea\xe6\x2b\x0d\xe0\xc3\x9d\x88\x88\xb6\xd2\xc5\x12\x96\x5e\x99\xf4\x53\xfe\x7a\xbb\xe2\xc0\x2b\x9c\x3e\xba\x41\xae\x5e\x71\xd5\x29\x27\x83\xd6\x4b\x04\x51\x05\x3d\x69\xa6\xcb\x45\xef\x94\x99\x7c\x00\xe4\xdc\x13\x71\xdc\x07\xf1\x3e\x66\x20\xe8\x1c\x06\xcd\xad\x7b\x7a\x25\xf0\x04\xd6\x2a\x6e\x84\x55\x52\xc0\x05\xce\x86\x8b\xd4\x6b\xd5\xe3\x9b\x65\x85\x61\xe7\xef\xb4\x0e\xb1\x5b\xd8\x00\x05\xa9\xcb\xa9\x46\xed\x07\x2a\xdc\x9b\xb7\x08\xf0\x8c\x3d\x88\x15\xb5\x75\x9c\xa5\xb9\x48\xac\x60\x5e\xda\xfa\x41\x39\xa1\x46\x85\x7b\x1c\x6a\x35\xdc\xc6\x68\x48\x0c\x42\x9f\x56\xa1\xd6\xc8\x03\xf6\xe2\x76\xc0\x59\xeb\x92\x52\x1d\x01\x16\x18\xe9\x1c\xfd\xf5\xee\x53\xbb\x29\xf2\xb5\xb2\xc6\x84\x90\x23\x14\x45\x69\xe5\xab\xf2\xc0\x16\x98\xd7\x21\x5c\x08\x19\x75\x60\x61\xa4\x93\xd0\x4b\x9d\x5e\xc2\x4a\x73\xc6\x0f\x17\xde\xd6\x4e\xc8\xa0\xb0\x82\x96\xca\x8e\x33\xb1\x6b\x43\x2c\xd5\xd8\x45\xc8\x9a\x44\x06\x9f\x89\x7c\x84\x92\xb1\x90\x14\x44\x5f\x80\x56\xd9\x2b\x8a\xdb\x24\x26\xcf\x66\x66\xe5\x94\x7e\x4c\x1e\x19\xdc\x84\x91\x17\x53\x08\xa1\xc8\x09\x3e\x92\x12\x61\xb0\x08\xd3\x5d\xad\x96\x6c\x76\x90\x91\x03\x0c\xbe\xa1\xde\x3d\xd5\x9b\x8c\xa7\x8e\x21\xfd\xe8\x02\x31\x1f\xf8\x90\x29\xa1\x0c\x50\x4e\x8c\x57\x51\x2a\x91\xf6\x02\x06\x21\x5d\x3c\x2c\x58\x6f\xde\x00\x81\x4d\x7b\x22\x3c\x21\x19\xdd\x86\xc8\xfd\x22\xba\xdc\x60\x5e\xe4\x22\x36\x94\x12\x8a\x8a\x0b\xd5\xb2\x2b\x24\x26\x21\x12\x59\x4f\xf6\x0c\x2e\xd1\x34\x8a\x4c\x16\x97\x39\x86\xc5\x88\x56\xaf\x60\x33\xb0\x32\xb0\xfd\x13\x2a\xd9\x28\x07\xed\x58\x89\x0b\xb1\xe2\x34\x2b\x71\x3e\x26\xa8\xbe\x0d\x7c\x0e\x52\x35\xa3\x95\xb2\x8a\x1b\x10\xfc\x4e\x90\x8f\x3d\xe8\x0d\x69\xa1\x21\x00\x11\x8e\x9c\x3d\x7a\xc3\x08\x1e\x28\x56\x10\x2e\x4b\xba\x80\x49\xcf\x3f\x61\x0c\x93\x5a\xc0\x43\x9b\x1b\xe1\xc9\x24\x59\xa3\x26\xcc\xea\x49\x90\xe7\x75\xad\x1b\x22\x2d\xff\x06\xc4\xec\x25\xb0\x08\x87\xff\x12\x0f\xc5\x09\xd2\xff\x03\xe9\x87\x49\x89\x62\xb5\xbf\x92\xe5\x52\x42\x36\xfb\xc3\xe4\x30\x42\x55\x40\x10\x90\x08\x23\xc1\x85\x3b\x1d\x0c\x0e\x89\x97\x80\x13\x00\x4b\x87\xc7\x8b\x98\x2c\x6b\xf8\x5c\xe6\xa8\x53\x96\x27\x38\x55\x2b\xfe\x0c\x78\x1a\x25\xe2\xfa\xf9\x64\xc0\x2f\xb8\x07\x62\xa1\xab\x47\x21\x28\x88\x34\x3e\x15\x5b\x7f\xcd\x6d\x44\xd2\x2f\xb5\xbf\x24\x8f\x71\x34\x24\x85\x8f\xb2\x02\x69\x42\x81\x51\x34\x0a\x01\xd0\xf6\x42\xab\x52\xe0\x97\xa6\xdf\x35\x71\xad\xb3\x80\x02\xfc\xa4\xc4\xf5\x2c\xc7\xf1\xa5\x4a\xf4\x7c\x6b\xae\xce\x49\x0e\xb2\xd9\x6b\x10\xfd\x46\x25\x18\x27\x81\x82\xfb\x7f\xa2\xa1\x31\x36\x1f\x29\x68\xad\xf4\x24\x45\x1e\xbf\xd1\xb1\xac\x37\x6a\x57\xfc\x35\x14\xbd\xec\xb6\x84\xb4\x83\x8c\x00\x10\x27\xef\xd8\x53\x1b\xd5\x73\x91\x82\x78\xcb\x45\x68\xd0\xac\x04\x71\x32\x5d\x72\xae\xa9\xa8\x6d\x32\x9d\xef\xe2\xb1\x15\x62\x68\x9f\xe0\xb0\xf5\xcb\x28\xae\x43\xc7\xbb\x0a\xc5\xb3\xc1\xab\x21\xfc\xe4\x4f\xca\xfe\x99\xfe\x99\x74\x5f\xc1\xe9\x02\xe0\x28\xa7\x77\x7b\xab\x4b\x0a\xe8\x22\x9e\xa3\xa3\x95\x5b\x18\xd2\x83\x0d\xae\x89\x0a\x50\x3e\xf4\xc7\xa0\x01\x00\x39\xc2\xbf\xc7\x34\x05\x48\xf8\x2c\x91\x00\x7e\xc2\xda\x02\xaa\x7a\x34\xa4\x0a\x8b\xbb\xac\x8b\xd0\xcb\xc1\x80\x2f\x83\x78\xb4\x1e\xca\x35\xe0\x5b\x1b\x0a\xac\x20\xea\x14\x1c\x52\x03\x63\x5e\xf8\x57\x60\xd8\x7d\xd3\x53\x2e\x19\xec\xbf\xde\x21\xa0\xc8\xdf\x2a\x49\x13\x33\xbf\x56\x30\x5a\x62\x98\x6c\xf7\x1f\x45\x52\xe2\x55\x7c\xf9\x92\xcc\xd1\xf5\xe6\x50\x63\x47\xc6\x99\xc3\xad\x15\x23\xf6\x58\x6a\x4b\x4a\x7e\xaf\x34\xf7\xcb\xd3\x82\xee\xac\x4a\x54\x5b\xdb\xd8\x3d\x00\xe9\x15\x96\x06\xad\x53\x6f\x0d\xd8\x43\xf9\xb3\xb8\xa8\xd2\x91\x8a\x71\xa5\x4b\x43\x3d\x88\x2c\x27\x90\x44\x09\x66\xdb\xdf\x19\x58\x44\x3d\x91\xe6\xd7\x70\x0b\xab\xfb\x03\x58\x00\xf1\xc0\x57\xb2\xd1\x1d\xaa\x1f\x3e\x1f\xf1\xd3\x00\x6a\x54\x11\xf7\x73\x86\x9e\x39\xd4\x4b\x12\xfa\xb9\x72\x89\xb2\x74\x7a\x7f\x1d\xdf\xc0\xf8\xf8\xae\xc2\x91\xd2\x90\x3a\x80\x8d\x87\x64\x79\xdb\xf7\xd8\x36\x2c\xaa\x14\x86\x37\xcf\x82\xd0\xa9\x0c\xca\x02\xcb\xb4\x47\xc1\x46\x8f\x69\x18\x5b\x54\x51\xad\x61\xb8\x1e\x9f\x99\x84\xee\x82\x22\x10\xf8\xfd\x0f\x7d\x7b\x11\x4e\x48\x00\x5e\x27\xc1\x80\x13\x6c\x34\x61\x94\xef\x7e\x28\x67\xa8\x76\x41\x87\x00\x56\x2e\x58\xc0\xfa\x81\xa2\x80\xaa\x37\xe0\x14\x83\x80\xf2\x6b\x56\x38\x8a\x90\x6b\xfa\x20\x66\x6e\x09\x5a\x82\xb8\x21\x4c\xf1\xfa\xec\xd2\x1b\x25\x32\xb5\x3c\xdc\x8d\x95\x43\xe4\x35\x66\x7a\x61\xda\xce\x38\xa3\x0d\x10\x2c\x29\x1d\x19\x20\xa4\x3d\x2a\x35\x13\x00\xe2\xad\x96\xbd\x49\x2e\x84\x08\xd5\xed\x8a\x36\x5e\x62\xe1\xba\x02\x08\x81\x88\x2d\x68\xd5\xba\x06\xd0\xc9\x52\x86\x3b\xc6\xc3\x18\x31\x34\xd0\xa9\x57\xb5\x90\x35\x43\x84\xac\xe7\x30\x3a\xaa\x03\xb6\x19\x08\x40\x70\x1d\x04\x15\x8e\xde\x25\x49\x54\xa4\x85\x8e\x9e\x50\x8b\xc1\x68\xa6\x0d\xa8\xc5\x09\x61\x00\x5b\x75\x39\xd3\x5b\xa9\x68\x4e\x64\x32\x2b\x02\x8b\x8c\x57\x99\x18\x9b\xfb\xd0\xae\x8f\x40\xe1\x62\x0d\xa4\xc5\xef\x8c\xbd\x99\x5e\xc8\xec\x40\x9f\x5a\xa9\x45\x53\x24\xc0\x39\x33\x6c\xc0\x6f\x92\x10\x2e\xba\x57\xd1\x7d\x69\x26\xab\x59\x3f\x7b\x18\x3e\x38\xe8\x41\x2b\x02\xf3\x4a\x9a\x68\xba\x43\xd4\xa4\x19\x44\x5d\x51\xac\x68\x12\x1d\x17\xf9\x9c\xf8\xfe\xf9\x97\xfa\xc8\x79\xec\xdc\x83\x61\x3e\x78\xc0\x3e\xbb\x8a\x6c\x43\x3a\x1d\xdd\xde\x96\xf2\x51\x3c\xb0\x10\xd9\x85\x67\xc7\x41\x93\xfb\x20\xd9\x82\xad\x01\x6c\x02\xcb\xc8\xb7\x2a\xb9\x26\xc2\x04\x3f\x18\x66\x80\xe7\x6b\xf4\x28\x6f\x54\x30\x0e\xaa\x70\xd3\xde\x0f\x41\x1e\x14\xc8\x5a\x3c\x15\xc0\x7a\x13\x86\x06\x5e\xa7\x3c\x25\x40\x7b\x38\x84\x4b\xc4\x30\xcb\x2e\x97\x6d\xac\x53\x53\x0e\xc5\xcc\x07\x04\x55\x46\x98\x3e\xac\x1b\x07\xd7\xc5\x10\x07\x5d\x80\x69\x68\x6e\x2b\x38\x55\x1f\x79\x3c\x4c\xb8\x3a\x44\x38\xd2\x85\x38\x02\x00\x02\x1e\x71\x04\x0b\x11\x40\xc8\xa2\x23\x08\xbf\xa5\x5d\x4c\x9d\xac\x8f\xdc\x3f\xe0\xe8\x97\x8e\xa2\x25\xa2\x49\x57\x69\x52\xf3\x67\x49\xe0\x49\x01\x4e\x91\x6d\xc2\x42\x2e\x17\xed\x72\x8a\xfe\x24\x2c\x64\x37\x0a\xe0\xbb\x5a\xf4\xb6\xf0\x49\x60\x82\x35\x48\x23\x99\xb9\x9e\x2d\x45\xd2\x1f\xa8\xc2\xb3\x43\x5e\x04\xd0\xdc\x84\x5e\xd7\x40\x60\x70\x4d\x72\x8e\x84\xd0\xc0\xf4\x85\x59\x1f\x61\x88\x2e\x86\x71\x75\x6e\x93\x48\x6d\x33\x89\xfb\x4b\x06\x54\x4f\x0c\x5a\x32\xa4\x9a\x2d\x51\xa9\x4c\xe7\x3f\x06\x32\xda\x4e\xc4\xb7\xd0\xd2\xd4\xd4\xbd\x9b\xcc\xd3\xe7\x8c\xee\x7a\x8b\x8d\x6c\x14\x91\x7b\x76\x0c\x93\x78\x7e\x52\x64\xb0\xbd\xa7\x87\x23\x1d\x3f\xb5\x74\x06\x82\xa3\xd3\xc4\xe5\xc8\xc1\xac\x57\x94\x37\x9e\x6c\xfa\xb8\xc7\xbe\x09\xf2\x24\x04\x29\xe4\x5f\x45\x21\xa1\xe9\x3c\x34\x4a\xa1\xc8\x72\x68\x17\xca\x81\x4b\x23\x05\x33\x11\xfd\x26\x8e\x24\xfa\x79\x7a\x37\x3a\x40\x42\x48\x82\x8e\xc1\x82\x79\x8e\xe5\x91\x88\x9d\x1f\xc4\xc1\x8d\x19\xa8\xf5\x07\x02\x9a\x4e\x41\x48\x21\x00\x7a\x74\x86\x6f\xbf\x99\x0d\x0a\x96\x27\x3a\x1a\x00\x06\xe7\x12\x2d\x33\x1a\x89\x7b\x83\xb3\xa1\x61\xbc\x49\x3a\x3d\xe6\x52\xc0\xf6\x41\x2b\xfa\xc0\x8b\x1b\x0a\xee\x22\x71\x30\x0d\xd9\x20\xb1\xaa\xdd\xb1\xec\x0c\xa1\x7b\x29\x4f\x19\xd7\x70\x9c\xd7\xe5\xe1\xbc\x0c\xbc\x52\x07\x0a\xba\x50\x3b\xfa\x6c\x99\x94\x55\x86\xee\x8d\x6a\x98\xa9\x55\x12\x30\x80\x87\x7a\xe3\x82\x48\xaa\x3e\x22\x2c\x47\xa7\x42\x75\x9f\xfa\x34\x1e\xf6\xf4\x71\x3a\xa2\xd5\x85\x88\x8c\x14\x56\x73\x3a\x40\x48\x44\xa2\xc6\x4c\x5e\xbd\x49\xd2\x54\x46\x5c\xfa\xcd\xc5\x36\x73\x1a\x31\x5d\xc0\x6e\x3a\xc0\xa5\xe0\x51\xa6\xd1\x2f\xa8\xa7\x40\x27\x8d\xb0\xc4\xd3\x40\x84\x65\x2d\x19\xa6\xf6\x50\xce\x87\xc6\xa4\x0a\x01\x7d\x46\x07\x98\x57\xb8\x50\x4e\x93\x8b\xa1\x31\xd8\xcd\x3a\x2a\x80\x62\x74\x37\x42\x31\x58\x46\xe7\xbd\xc5\x32\x4e\x4d\xcb\x7d\x5b\x0e\xc8\x5a\xd4\x3b\x60\x79\x1e\xb2\xcc\x07\xcb\x06\xa3\xcc\x96\x3d\xb4\x90\x98\xc2\x65\x00\x02\x3a\x19\x03\x75\x1d\x12\x5e\xc4\xed\x2e\xad\x59\x77\x62\x8c\xce\x9d\x9c\x29\x2f\xda\x37\x50\xb0\x22\xde\x9b\x70\xfc\x71\x05\x79\xda\x0b\x83\x5b\x0f\xf1\x95\x15\x1a\x14\xd1\x8c\x4a\xf5\x05\x18\x84\x25\x36\x7e\x9c\x45\xa7\xe6\x83\x9c\x1d\xcf\x63\xba\xd7\x33\x0f\x10\x07\x41\x63\x58\x70\x3f\xc4\xa9\x6d\x1f\xcc\x37\x29\xb1\x76\x69\xcd\x02\x21\x1b\x86\x1b\x4f\xfd\x19\xf5\xe8\x20\x1c\x1d\xb5\xa9\x01\x01\xe1\x02\x18\x4d\x72\xdf\x96\x56\x19\x99\x5a\xd6\x61\xe7\xe1\x02\xaf\xf6\x62\x61\x6d\xaf\x6b\xa4\x48\xd3\xab\x04\xea\x28\x81\x0b\x5e\xca\xd5\x74\x04\x42\x60\xba\x1a\x14\x3e\xda\xc0\xe6\x7c\x87\xaa\x9d\xac\x13\x81\xfa\xbd\x2c\xab\x10\x06\x40\x55\x1e\x79\xa0\xc0\x1b\x14\x09\x94\xaf\x91\x1f\x55\xa6\x83\x29\x73\x0a\xed\x0b\x86\x82\xac\xff\xd5\x5b\x32\x42\xd6\xe5\xf3\x4e\xb4\x3b\x58\x97\xde\x0e\x8f\xb5\xdf\x90\x11\x46\x36\x01\x34\x35\x68\xd1\x45\x5b\x50\xd4\xe1\x2e\x57\xaa\x3a\x97\xea\xd6\x22\x75\xbe\xbc\xf0\xf7\x2b\x3e\x11\x71\x42\x78\x41\x5e\x89\xb4\xcf\xfa\x19\xfc\xf0\xf7\xb4\x36\x11\x9d\x29\xd2\x50\x2f\xbe\x84\x32\x04\x3b\x08\x4d\x36\xe0\x59\x25\x45\xb5\x06\x6e\x7d\x4e\xc7\xbf\xa3\x04\x96\x1d\x38\xd8\x2c\x22\x02\xd1\x6d\xed\x00\xed\x4f\xb7\xd3\x9c\xed\x5b\xf8\x0b\x63\xa0\xeb\xb4\x13\x74\x40\x04\x17\xa4\x6f\x16\x11\x52\x6f\xbf\x60\x99\xcb\xa8\x24\x13\xd2\x96\x22\x0d\x40\x27\x20\x1f\x94\x04\x36\x5b\x70\x9a\x3a\x67\x0c\x28\x64\x2b\xcb\xcf\x99\x57\xe6\xb1\x4c\xce\xdd\xf8\x4e\x77\xcf\xea\x6d\xac\xd6\x42\xb5\x0e\x42\xd8\x53\x18\x29\x7f\x50\x14\xc2\xf3\x6d\xd8\x80\xc8\xfc\x6e\xcc\x49\x73\xad\x81\x00\xc8\x01\xec\x8a\xbb\x0a\x1e\x39\x51\xdd\x29\x45\xe4\x6b\x08\xb1\x0c\xcd\x28\x55\x4e\x4c\xd2\xa6\x49\x82\x20\xd3\x65\xf9\xa1\x27\x8a\x14\x41\x34\x60\x9c\x0c\x38\x43\xfc\x90\x01\x3a\xbd\x1a\x0f\x41\x89\xa3\x20\xc2\x4a\x14\x35\xa8\x27\x54\x52\x50\x11\xc5\x46\x97\x90\x19\x3f\x10\xbc\x6b\x6a\x72\x23\x07\x95\xf9\x9a\xfc\x1f\xf9\x2a\xdb\xea\xe5\x60\x8b\x89\xe8\x59\xa6\xc3\x44\xc7\xd5\x4a\x9d\x78\x0c\xd4\x19\x59\x1b\xe6\x8b\x42\x7d\xbf\xba\x99\x08\xa2\x7e\xb1\xc8\x8c\xf4\xc4\xcb\x88\xe5\x55\xa3\x50\xaa\x55\x78\x52\x76\x66\x41\xbb\x85\x23\x33\x21\x94\x5c\xcb\x9a\xed\x51\x9a\x9e\x9a\x1b\x29\x49\x82\xca\xe5\xb8\xcf\xb7\x0d\xbb\x6e\xdc\x15\x10\xdd\xdc\x06\x07\xc9\xfb\xc0\x71\x95\x56\xae\x11\xb7\x08\x9c\xde\xe3\xf3\x29\x66\x42\x8a\x9b\x13\x9e\x3c\x45\xa0\x5d\x00\xa7\xab\xde\x12\xe4\xfd\x3e\xcf\x4a\x07\x9a\x2f\xf4\x73\x78\xaa\x16\x0f\x23\x53\xa7\x00\x58\xbe\x0c\x90\xf2\xa6\x74\xfb\x40\x70\x91\xf6\x69\xba\x3e\x39\x7d\x30\xa3\x4e\xb9\x20\xc4\xec\x6b\x84\x1c\x7d\x38\x32\x42\x06\x11\xa0\xf2\xa8\x27\xf8\xef\xb5\xfa\x78\x7f\x4a\xd6\x1c\x4b\x9a\x25\x2d\xab\x98\x8d\xf6\xd3\x35\x40\x70\xd6\xde\xe3\xe4\xb6\x10\x4f\x90\xb6\x43\x24\x7b\x71\xea\xa8\x78\x8c\xbc\x9b\xcf\x96\x2a\x03\x00\x9e\xf5\x74\x0d\x1a\xb1\x9a\x82\x12\x8d\x1c\x18\xbc\x90\xd9\xfe\x0f\x64\x9f\x26\xbb\x23\x24\xce\xfb\x99\xb6\x41\x82\xf2\xc6\x7b\xfd\xda\xd6\xe8\x03\xac\xae\xae\x04\x70\xe9\xbc\x32\x07\x21\x30\xc2\x3a\x68\x60\xbf\x64\x1d\x08\x15\x1c\x20\xf1\xc2\xd5\xf1\x91\x9c\xa7\x1f\x59\x64\x0b\x83\x21\xb6\x42\xbc\x0d\x74\x71\x80\xbf\x3e\x21\xc0\x6e\xcb\x77\x61\xbe\x6e\xe7\xb2\x5a\xf1\x5d\xd0\x6b\xdf\x40\x23\x24\x5e\xef\x12\x30\x42\x81\x8a\x25\x03\x6d\x4b\x4c\xd0\x74\x6a\x38\x72\x21\x58\x26\x9e\x8c\x18\xfc\x1b\xb8\x26\x73\x4c\x7e\xcb\xf1\x9b\x06\x4a\xc8\xb4\x4c\x48\xd4\xb2\x49\x98\xab\x5b\x28\x73\x2d\x9b\x52\xa4\x32\x23\x8b\x13\xbf\x30\x2c\xa4\xaf\xdd\x03\x6d\xc4\x59\x55\xbb\x35\xfe\xa8\x96\x5c\xd8\x28\x7d\x0d\x43\x7e\xb6\x68\x5c\xf6\x0f\x45\xff\xa1\xf8\xbf\x42\xfc\x80\x33\x9f\x28\x80\xe6\xd3\x12\xc2\x42\x08\x7d\x72\x87\xbe\xda\xf9\x57\x05\x74\xd0\xb2\x95\x3b\x19\x14\x65\xf8\xd5\xe3\x84\xcd\xc3\x36\x8d\xf9\xe6\xf1\x98\x08\x51\x92\xac\x08\x2b\xf2\x94\x89\xd4\x64\xdc\x67\xc3\x99\x47\xd0\x3d\x79\x98\x3e\xb8\x61\x5f\xda\xbf\x30\xff\xc6\xd5\xdc\x60\x37\x4d\x93\x10\x6c\xd4\x18\x06\xa9\x53\x9f\x54\xbd\xbb\xb3\x99\x42\x07\xd4\xd6\x5d\x41\xcf\x79\x69\x02\xd2\xac\x46\x1f\x03\xbc\x42\x5f\xf8\xf0\x25\xdc\xa8\x67\x6f\x47\x79\x52\x40\xd2\xe4\xcd\x43\x42\x47\xe6\xe3\xcc\x20\x37\x17\x11\x10\xfa\x8f\x66\x6a\xf3\xb3\x49\x48\x4c\x0d\xee\xb6\x0f\x9f\xfd\x0a\x7f\x61\xb3\x8d\x5f\x25\xc5\x60\x6f\xa2\xc9\x08\x88\xa5\x8f\x11\x6e\x88\x8a\xe9\xb5\x96\xea\x55\x68\x0d\x06\x7a\x2e\xc0\x94\x1d\x32\x55\x77\x54\xf7\x1e\xb7\x80\xa8\x0e\xb4\x5e\xcd\x42\x64\x39\x38\xa6\xa0\xd1\xd3\xdd\x59\x95\x13\x20\x2a\x1f\x07\x70\x9d\xf8\x14\x64\x07\xc5\xd3\xf2\x1f\xa3\x6e\xb7\xda\x6c\x4f\xcc\xb2\x78\x66\x7a\x51\x6f\xa9\xbc\x92\x3b\x6a\x2a\xf7\x67\xd3\x7f\x44\x85\xb5\x4d\xa3\x1a\x80\x49\x83\x94\xeb\xd9\x06\xe1\xb2\x1c\xb2\x8b\x43\xee\x95\x22\x70\xc1\x32\x32\xd5\xd7\x9f\xb0\x1f\x19\x1e\x21\xd8\x56\x13\x2f\xe0\x10\x66\x8e\x6d\x17\x65\x6d\xa0\x91\xc2\x53\x61\x31\xa8\x3e\x92\x14\x6a\x60\x07\x0f\x10\x58\x3a\xbf\xd0\x0b\x42\x8b\xf9\xd3\x8e\x1c\xf5\x8f\x2f\xa4\x4d\x0e\x48\x19\xb8\xb7\x67\x02\x8c\x44\x53\xad\x08\x19\x54\x66\x0e\x4a\x9e\xf4\x92\xd6\x14\x2b\x74\x74\x2d\x76\xf2\xa5\x1f\xa7\x98\x8e\x91\x26\x59\x1e\x4c\x74\x6c\x1f\x16\x8c\x42\xba\x04\x88\xe2\x2e\xa1\xd6\x0f\x63\x7e\xf9\x60\x87\xb9\x91\xfb\x77\x01\xd6\x21\x5a\xc5\x39\x34\x56\x60\x6f\x41\x0b\x85\x16\x40\x93\xb9\xe6\xc7\x87\x65\x00\xc0\x68\xf5\x88\xd7\x93\x83\x43\x67\x6c\xef\xdb\x84\x15\x11\x6f\xc4\x9e\x9c\x1a\xbe\xed\xb9\x2c\x06\x14\xac\x21\xf5\x09\xce\x05\x5f\x0d\x83\x97\x36\x0c\x3a\x58\x80\xd4\xeb\xe0\x18\x85\xab\x24\x8f\x05\x6d\x5f\x04\x43\x10\xd0\x7e\xa0\x54\x13\xd1\xf7\xe6\x76\x81\x8f\xcc\xa6\xbc\x3d\x81\xfd\xc4\xde\xf7\x44\xf5\xf4\x4a\x0c\x57\x70\x0d\x9b\x28\xe6\x2e\xe4\x0b\x42\xbd\x9d\x39\xf7\x14\xf6\xa7\xad\x7c\x92\x3b\xfc\xed\x56\x3f\xa7\xab\xb7\x64\x37\x0b\xc8\xea\xf2\x41\x7e\x6d\xeb\xd4\x80\x25\x01\x37\x07\x86\x00\xc4\x32\x85\x6e\x3a\x9d\xe1\x40\x6f\xec\x9d\x8a\x8b\xce\x21\xe7\x7e\x43\x53\x94\x72\xa7\x89\x80\x18\x70\x1e\x8f\xd5\x10\x00\x7c\xd6\x3d\x6b\x14\xa7\xc3\x96\x1c\xba\xdc\x46\x1a\xe7\x91\xa6\x8c\x1f\xc8\x0c\x12\x22\x8c\xba\xcc\x76\x90\xa1\x05\xe4\x6c\xcf\xef\x5f\x09\x93\xa8\xb7\x60\x8e\x4c\xde\x59\x42\x69\x0a\xda\x12\x5d\xe8\x0f\xa1\x9e\xe9\x4e\xb7\xc3\xe2\x79\xa0\xb0\x0d\x6b\x9c\x96\x3d\x49\x65\x2d\xbb\x71\xda\xcb\x34\xff\x50\x31\x65\x71\xcd\xd8\x49\x42\x73\x5a\x65\xb7\x91\xce\x9c\xe8\x9d\x43\x87\xb4\x50\xf6\x6f\x82\x23\x2f\x18\x48\xe7\xc9\x27\x5f\x12\xa6\x18\x9e\xab\x87\x7b\x91\x4d\xc8\xc8\x37\x20\x17\x45\xfa\x22\x5d\xdf\x2e\x13\xb1\x91\x54\xf3\x3d\xdc\xcc\x58\x59\x99\x14\x08\x20\x51\x69\x71\xb8\x49\x6b\xf7\xed\x5c\xba\xcb\xef\x37\xa1\x99\x5a\x24\x80\x1a\xae\x69\x2b\xd9\x25\xa3\x98\x09\x45\xf1\xb6\x12\x53\x48\x24\x5b\x4a\x31\xbd\x8e\x23\xc3\x17\x1c\x3b\xea\x80\x05\xd1\x73\xdc\x07\x10\x68\x64\x31\xe4\xe5\xd6\xd6\x28\x48\x17\x7d\xa6\x01\xc7\x4d\x0e\x43\x90\x19\xda\x77\x4a\x9e\xf3\xaf\x83\xe4\x51\x4c\xca\xc4\xfa\x4e\x10\xcb\xad\x81\xfc\x1e\x96\x12\x1c\x4c\xee\xf4\x87\xd1\xc4\x28\x90\x06\x47\x42\x90\xf0\x45\x15\x50\x5f\x89\x39\x5b\x22\xbd\xa4\x2b\x0d\x75\x2f\x40\x39\x60\xa6\xda\xb1\xa4\xf2\x05\x54\x44\x47\xde\xc7\xc0\x43\xf5\x12\xcf\x00\x6b\x10\x46\x5b\xe9\x38\x37\x86\x4e\xc6\x20\x6c\xc2\x48\x96\xaf\xef\x65\xd4\x1f\xab\xa2\x1b\xc4\x36\x8e\x7c\x0a\xad\x05\x82\xb6\x78\x12\x2d\xc4\xc4\x51\x4b\x63\x48\xb1\x91\x54\x02\x81\xb0\xf8\x91\x81\x5a\x80\xc4\x57\xba\x8d\x93\x9c\x1a\xb8\x0d\x98\x34\x7d\x83\x73\x00\x2a\x8d\xad\xa3\x23\xd2\x1e\x1a\x44\x84\xa1\xa2\x9b\x08\xa6\xc1\xce\xd1\x11\x6c\x60\xd2\x6f\x23\x08\x1c\x10\x04\xaf\xda\x32\x30\x58\x02\xed\x33\x4f\xcb\x74\x41\x85\xb9\x1b\x4b\x2b\xc1\xfc\x9e\xb8\x42\x45\x99\x39\xe7\x75\x62\x72\xee\x10\xa3\x31\x01\x08\x8c\x3d\xf7\x2e\x2a\xaf\x87\x09\x2e\x20\x01\x8a\x27\x90\xca\x97\x1b\x41\x01\x3e\x69\x38\x1b\x34\xf9\x30\xac\x5a\x4c\xed\x58\x4e\x6e\x45\x49\x62\x5e\x44\x0c\x29\xdc\x8c\xb6\x44\xd9\xca\x5d\x84\x88\xcb\x41\x8d\x5b\x4e\x37\x8f\x06\x0d\x0c\x50\x61\x44\xfe\xe1\x33\x84\x30\x5e\x24\x17\x03\x35\x89\x16\x06\xbd\x27\x0d\x06\x9d\xf8\xfe\x55\x52\x80\xa2\xa5\x01\x8b\x13\xc8\x75\x4f\x2a\x6d\x69\xfa\x43\x43\x63\x8d\x72\xae\x7c\x3f\x67\x18\xc6\x0c\xcf\x5e\xa0\x59\x79\xa5\xf9\xd4\x76\x37\x36\x96\x3d\xe1\xed\xad\xf7\xb9\x35\x09\x0a\xee\x58\x2f\x9e\x6d\xda\xf4\x63\xb8\xd3\x92\x09\xe0\x39\x0e\xa8\x80\x41\x31\x33\x5a\x80\x9e\xcb\x06\x95\xb6\x98\xe8\xf0\xd3\x52\xbc\x52\x23\x64\x11\x65\x08\xd1\x40\x4b\x44\x4d\xdf\xe2\xdb\xe0\x5d\x5c\xd9\x25\x40\x12\x4d\x83\x94\x4a\x92\xf2\xdf\x9f\x70\x08\x6c\x5b\x5c\xb1\x41\xa7\xe8\x03\xca\xdf\x6c\xfd\x35\x59\x55\x91\xca\x3e\x45\xf2\xe6\xbe\x15\xc2\xa8\x77\x6b\xc0\x64\xbf\x3b\x7f\x86\x1a\x35\x13\x8f\xcf\xe0\xcd\xc1\x0c\x40\x3b\xf9\xf3\x77\x42\x31\xe8\x94\x25\x81\xbd\x40\x06\x08\xb0\xd0\x98\xbb\x05\x2e\x2a\x6e\x2d\xed\x05\x2e\xdb\x2c\xf5\x4d\x67\x39\xd5\xbf\x14\x8a\x66\xab\x0a\xe6\xf4\xd7\x6b\x2a\x80\x00\x3b\x51\xc8\xc5\x1f\x14\x80\xec\x73\x37\xe2\x25\x55\x55\xed\x22\x12\xb1\xe0\x2c\xa6\xa3\x94\x90\xca\x03\x9c\x3c\x6a\x9a\x4c\xb3\x99\x0e\x48\xca\xf7\x29\x49\x67\xd4\x62\x46\x0c\x4c\x44\xce\x42\xa0\xd1\x4b\xdc\xe1\xc0\x42\x6b\xe6\x41\x9e\xa9\xf1\xbd\xbc\x4c\x3d\x3a\x2e\x7a\xd6\xf5\xed\xe9\x32\xdd\xb6\x4c\x34\xe0\x9d\xf5\x05\x26\x23\x60\xb2\x8d\x03\x62\x12\x8a\x1a\x22\x28\xd0\x88\xf6\x5d\x35\xb4\xf8\xda\xd6\x88\x75\x91\x0d\x33\x12\x53\xe6\x6c\x7f\x7b\x5b\x04\x40\x03\x5b\x76\x53\xb2\xad\xd9\x73\x87\xfd\xc8\x2c\x65\x62\x5c\x43\x73\x42\x74\x2d\xcb\x4e\x96\x8a\x94\x44\x6c\x10\x7a\x29\x5f\xcb\xd2\x61\xbd\x41\x5f\xe5\x04\x0c\xc1\x5b\x20\x7c\xd0\x5b\xbb\x34\x97\x6e\xc1\x85\xb2\x6a\xb9\x23\xe5\x72\xfe\xf7\xd8\xe3\xa7\xc6\x9e\x83\x08\x3c\x27\xc6\xcf\x68\x53\x3c\x55\x2a\x39\x15\x6c\x94\xa6\x9f\xb0\xe6\x6b\xd6\x28\x28\x3a\x17\xda\xfb\x2c\x16\x69\xb9\xa9\x4c\xb8\x9e\xcc\x98\x2f\x98\xb6\x28\x29\xa5\x3a\xe6\x32\xad\x4b\xc5\xd1\xc8\x49\xbb\x4b\x42\xad\x89\x9d\x75\x05\x8d\x37\x7b\x7d\xa5\x82\x91\x9b\x15\x9e\x58\x42\x64\xe8\x4b\xda\x41\x00\x05\x43\x58\x1b\x61\xc2\xc0\xf5\x34\x50\x46\x53\x24\x2d\x60\x00\x6c\x0e\xb4\x48\x60\x05\x8c\x0d\x74\xe8\xc7\xc8\xf3\xf0\xb8\x80\x93\xdf\x71\x2e\x45\xcd\xc3\xce\xe3\xc1\xaa\x8c\xdc\xab\xc9\x98\xee\x48\xc4\xbf\x45\xe8\x78\x98\x0f\xb8\xfd\xb0\x8b\xdb\x80\x57\x44\x95\xc8\x04\xe8\xb6\x78\xb0\x80\xb7\x60\xc5\xd7\x21\x83\xb8\x51\xd0\xc0\x0b\x4e\x57\x28\x2d\xbb\xc7\x69\x86\x15\x6a\x09\x34\xa9\xb9\x6e\x40\x09\x6b\xcd\x25\x4e\x4f\x51\x96\xa5\x89\x9d\x71\x0a\x35\x3c\x43\x1b\x55\x01\x00\xcc\xa0\x85\x92\xe4\x9c\x74\x86\x44\xfd\x31\x2e\x72\xb6\xc0\x6e\x42\xc4\xc2\xe9\x47\xdc\xc4\xa7\x56\xc5\x55\x20\xb1\x56\x3e\x5e\x48\x3f\xa7\x4b\x81\x0e\xe3\x9d\x74\xd7\x59\x4c\xd6\x2f\xd1\x26\xe1\x5e\x1a\x83\xdd\x45\xe1\xe3\x4c\x49\xb1\xc0\xa8\x74\x90\x45\x4e\x65\x88\xa7\x3d\x01\xd1\xc6\x80\x46\xd8\x6c\x0a\x2d\x79\x73\xf8\x74\x51\xb6\x18\xe9\x55\xde\x40\x95\x39\x04\x77\xb2\x48\xa8\x45\x51\xec\x27\xda\x2b\x57\xfc\xf9\xbe\x0e\x54\x1b\xfd\xb0\x0a\x20\x2d\xac\x25\x81\x41\x86\xa9\x57\xdb\x38\x8c\xa8\x3a\x8e\xf4\x38\xab\xda\x61\x49\x53\xf7\xab\x62\x34\xa2\xdb\xd1\xf8\x4d\xbb\x33\x67\x52\xc1\x75\xaf\x7b\xa7\xaa\xdc\x10\x4f\xc4\x78\xfc\x04\x5c\xea\x82\xc4\xac\x41\x53\x12\xa0\xfd\x3a\x8d\xde\x53\x80\x36\xf9\xdd\x3e\x96\x57\x0e\x07\x02\x6b\x20\xfb\x0d\x3b\x31\x10\xfe\x05\xcc\xeb\x7a\x3d\xea\x13\x0d\x0a\xc2\x38\x8b\x6b\xe0\xde\x0c\xda\x8e\x01\xdb\xbd\xcc\xe0\x3d\xba\xdb\x0d\xbf\xdc\xad\xeb\xb7\x1b\x9d\xb8\x76\x1b\x05\xbb\x65\x6e\x1b\x91\xed\xb1\x8e\xf5\xd0\x64\xe1\xc3\xf3\xfd\xc7\xba\x0b\xc6\x8d\x6b\x26\x22\x94\x04\xab\x3a\x89\x67\x65\x11\x50\x36\xa5\x1f\x8f\xa9\x47\x64\xbf\x65\x0a\x13\xb9\xcd\x13\x8e\x20\x20\x69\x38\x9d\x8b\x0c\xcf\x1c\x0a\x25\x89\xd8\x19\x6d\xd3\xb5\x26\x1b\xba\x37\x2a\x12\xba\xa1\x49\x4c\x10\xda\xf7\xa8\xc8\x13\xdf\x4e\xee\x6c\x71\x35\x83\x40\x04\xc4\x65\x34\x86\x05\x69\xf6\x69\x87\x6f\xbf\xbf\xd4\xbf\x4f\x0d\xf2\xbe\x6b\x2a\x68\x61\xc1\xac\x0c\x49\xde\x89\x13\x58\x23\x25\xea\x8e\x75\xaa\x99\x4f\x87\x23\xaf\x5b\x45\x46\x9a\xe3\xc8\x9a\x9f\x4a\xa2\x5b\x30\xd6\xff\x76\x15\x4f\xb4\xe0\x1c\x13\xe8\x4b\xac\xa5\x53\x59\x3d\x53\xed\xab\x59\x74\x92\xcc\x18\x70\x83\x3d\x1d\x3d\xa9\xb0\x13\xea\x95\x4e\x61\x7c\xcd\xd6\x9f\x0d\x22\x9c\x5b\x1c\xa1\xa2\x4e\xe1\x3d\xa6\x44\xf9\x9a\x5f\x18\xdf\x82\x4e\x93\x36\xc8\x3b\xe0\xef\x18\xaa\xfe\xc0\x97\x38\x63\x6c\xac\x41\x17\xf6\x52\xfa\x10\xa5\xf0\xbf\x4c\x70\x2f\x6d\x58\x91\x00\x07\xac\x8e\x26\x3e\x5c\x79\x2f\xc5\x33\xe1\xd9\x43\x4e\x05\xe2\x62\x30\x91\x61\x04\x17\x08\x31\xc4\xdc\x96\x31\x51\x07\xc0\xfc\x40\xc2\xf1\x47\x32\x4a\x95\x49\xc9\x4d\x0e\xa4\xb1\x69\x24\x73\x77\x35\xab\x42\xf1\xfe\x20\xd1\x14\x16\x37\x42\x7d\x08\x64\x1b\x9d\xa1\xa1\x40\x08\xfb\x97\x8a\xf4\xc7\x07\x78\x50\x15\xe7\x87\xfd\xc2\xc6\xf2\xff\x90\xb2\xc6\xcc\xa4\x44\x94\x90\x27\x0a\x0c\x0d\x00\xc2\x1b\xb5\xed\xff\x8f\xac\x4d\xe2\x6e\x28\x29\x7e\x68\x13\x9a\xdc\x3c\x49\x49\x90\xe3\x6b\xee\x91\x5e\x0a\x66\x1c\x9b\xbe\x99\xb8\x8b\xa0\x71\xa1\x67\x54\xed\xd9\xa9\x45\xd2\x00\x47\x99\xac\x6e\xbd\x08\x7c\x1a\xf7\x26\x52\x71\x60\xb2\xb9\x13\xd9\x80\x35\x18\xa9\x74\x6f\x1d\x7e\xd6\x9f\x6a\x62\x12\xae\x2c\x20\xd2\x32\xb5\x49\xeb\xb1\xd0\xcf\x01\xf9\x23\x5b\x0f\x24\xe1\x10\xd3\xa8\x86\x9d\x5a\xb3\x66\x8b\x63\xbc\xd8\xa5\x37\x1e\x39\xe3\xf9\x2e\x0c\x93\xe9\x91\x47\x91\x1a\x09\x49\x8b\x97\x5e\x3d\x75\x67\xca\x18\x46\x9b\x79\xd8\x31\xb4\x65\x87\xbd\x34\xb8\x6b\x65\xd2\x22\x34\x9c\xb6\x4c\xd8\xbd\x81\x71\xf3\xb9\x52\x3d\x6e\x88\x6a\xb8\x38\xc1\xdf\x04\xc0\xcb\x99\x32\xe5\xde\x71\x17\x77\x2a\x7c\x62\x2d\x14\x8b\x7d\x96\x69\x9d\xfb\x10\x8c\x66\x35\xfb\x55\x67\xfb\x67\x0c\x16\x4b\x3e\xfd\x00\x92\xc4\xe6\x81\x08\x60\x1f\xaa\xac\x78\x33\x86\xf2\xb6\xa7\x39\xb8\x2a\x0a\x5e\x07\x10\xd3\x7d\xc2\x86\x30\xd8\x2e\x6d\x37\x02\xc7\x48\x18\x75\x28\x4b\x13\x9d\x42\xe0\x9c\x00\xc0\x50\x68\x20\xc0\x83\x77\x50\xdb\x10\xf4\x8e\x83\xb1\xb4\x6e\x81\x53\x31\x7f\x6f\x26\x03\x16\x74\x3a\xb9\x36\xac\x47\x24\xbf\x0f\x3c\xe7\xd0\x6a\xac\xea\xe1\x5e\xac\xd4\x6f\xf3\x9c\x88\x4a\x81\x5c\xef\x92\x16\x5b\x0a\x89\xa1\xf0\xb5\x62\xbd\x9d\x56\xc1\xf1\xff\x92\x6d\x3a\x94\x64\xae\x75\xaf\xfa\x0a\xb8\x30\xad\x51\x32\x3f\x52\xcc\xa5\x26\xba\xba\xe7\x2c\xb3\x4a\xed\xc5\xa2\xb9\x61\x07\x55\x31\x8a\xa9\xd2\x92\x92\x18\x97\x62\x6d\x45\xfa\x2f\xe1\x25\x2e\xa6\xe3\xd8\xc6\x64\x6f\x92\x04\x18\xad\x16\x2c\x69\x3b\x5e\xc3\xc8\x40\xa7\xf2\xe4\x36\xce\x19\x6d\xf0\x32\xda\xe4\xb1\xbd\x4b\x20\xab\x82\x96\x58\xaf\x8e\x95\x28\xd0\xdf\x1f\xd4\x82\x88\x4c\xb5\xe8\x74\x9b\xd1\x2c\x27\x9d\xb0\x07\xd1\xcf\x18\x61\x9e\x35\x99\x81\xe2\x2d\xb6\xa7\xfc\x0c\xcd\x7e\x24\xf9\x17\xed\x31\x8a\xff\xcb\xab\x7c\xc6\x33\xe0\x92\xa2\xba\x8d\x22\x38\xc1\x3a\x0a\x58\xa6\x09\x9d\xf4\xd4\x5e\xa2\x15\x06\xaa\x1b\x91\xab\x46\x35\xd5\x27\xc2\x5f\xc8\x12\x5f\x00\xa5\x92\x1c\x25\xf2\x68\xf5\xec\x16\xdb\x06\xac\xa6\xda\x4d\x12\x0b\x0a\xa1\x19\xd5\xd6\xcf\xae\x07\x87\x95\xf2\xc3\x31\x07\x62\xf8\x6a\xa9\x25\xab\x58\xcd\xf2\x04\x4e\xe2\x10\x8f\x2e\x24\x01\xd7\x70\x31\x50\x1a\x0a\xa1\x9e\x10\x90\xac\x15\x3a\x96\x64\x32\x25\xa2\xd1\x21\xc8\x27\xa9\xa0\x36\xfe\x74\xf7\x4d\xec\x9c\x35\x2d\x21\xc8\x6e\x79\xbe\x6f\x84\xd5\xdd\xf3\xbe\x29\x3d\x94\xd8\x90\xf2\x43\xe4\x80\x72\x65\xe0\x80\x79\x03\xec\xb6\x92\xba\x81\x68\x41\x16\x62\xf8\x5e\xb3\xc1\x46\x9b\xbb\x6b\xef\x9a\x77\xe5\x8b\x3a\x4f\xc1\x20\xb9\x56\x1f\xff\xd0\x24\x9c\x1b\x83\x4d\xf1\x5c\xd9\xea\x21\x08\x5b\x21\xa9\xb4\x54\x0c\xcb\x2e\x4c\x3a\x4b\x1b\x4e\xf7\x86\x4f\x83\x84\x58\x83\xb3\xb0\x38\x40\x48\x34\x0f\x16\x0c\x20\x10\x9e\x59\x6b\x9e\xa8\xd7\x88\x4b\x0b\x8f\x9d\xd3\x54\x76\x73\x23\x00\x21\xf3\x4e\xc8\xc2\xc3\xd4\x31\x26\x06\x48\x02\x48\x75\x6b\xb2\x6b\x10\x6a\xc6\xfd\xa4\x04\xc3\x22\x39\xd3\x3e\x4c\x3a\x11\xe5\x08\xf7\x6d\xa0\xc6\xcc\x82\xcd\xbb\xad\x1b\x71\x2d\x0c\x3d\x07\xa6\x9f\x79\xe9\xc8\x7d\xf0\x57\x89\x91\xbd\xa8\xb6\x42\x75\x44\x87\x37\x97\x0d\xc4\x32\x83\xd3\x77\x7f\x0e\x81\x75\x45\xb8\x0a\xc3\x30\x40\x60\xda\x86\xe5\x1f\x07\xd5\x4e\x8c\xa9\xc6\xd8\x5a\x0a\x7c\x64\x39\x5e\x78\x4b\xca\x6c\x11\x41\x08\xa8\x65\x9c\x3e\x19\xb2\x34\x3d\x4d\xde\x0f\x4d\xb5\x1a\x85\xe8\x11\xba\xf6\x12\x24\xa6\x40\xaf\x56\x73\x94\x74\xf7\x67\xe2\xff\x84\x9c\xbc\xcc\x00\x90\xb0\x9f\x50\x86\x67\xe4\xa4\xd6\x19\x16\x23\xc5\x1f\xc6\x43\x8d\x94\xff\x1c\x13\xa3\x9f\xb0\x93\x0c\x0b\x21\xff\x0c\x99\xd3\xcc\x26\xf9\x0c\xbf\x6a\xc2\x41\x5c\xdd\x70\x29\x02\x4b\x7f\x70\xaf\xb4\x76\x54\x1b\x4d\x0a\x3e\x84\x7f\x97\xfd\x7c\x53\xed\xfa\xb3\x29\xcf\xe3\xe8\xb1\xdf\x0a\x08\x3a\x5e\x65\xfa\x32\x05\xfd\x6d\x03\xe3\xcd\x72\xff\x6c\x5f\x1f\x8d\xf9\x59\xec\xe7\x13\x14\x3d\x65\x2a\x1b\x37\x67\x16\x24\x95\x1b\x13\x5a\x96\x59\x51\x12\x4a\x30\x7c\x40\x49\x6f\xd1\x19\xc4\xbe\x7a\x44\xa6\xdd\x31\x66\x0b\x4d\x2d\x15\x78\x0e\xb9\x88\xa0\x04\xb6\x76\xd6\x8a\xad\x58\x82\xc3\x14\xb8\x79\x02\x03\x05\xb7\x36\x2a\x3a\x48\x00\x3c\x9b\xf1\xc2\x66\x3b\xea\x39\x40\xbf\xae\x30\x26\x88\xd5\x6b\xde\x21\x00\xc2\xd0\x68\xf8\xf8\xcd\x44\xb3\x34\xa8\xf5\x34\xa0\xd9\x32\x38\xb2\x5a\x79\x9b\x06\xad\xc0\x18\xe6\xe0\xf1\xb1\x15\xb7\xec\x63\x7c\x6a\x8e\xaf\x93\xfe\xdd\x31\x70\xcd\x26\xec\xfe\xfb\x22\xc7\x7c\xbd\xa9\x10\xbb\x95\xd7\xaa\xd1\xed\xb7\xec\xfa\x57\xbf\x44\x8d\xd3\x01\xb8\x04\x5b\x4a\x2c\x2d\xb8\x81\x9c\xdc\x58\x79\x27\x3a\xc0\xdf\x6c\x75\x39\x85\x81\xf4\xb4\x9a\x4f\x9c\x00\xec\x48\x35\xfa\xba\x6f\x2b\xdc\xd8\x20\x8f\x73\x3f\xa6\x22\xee\xe2\x61\xde\xa1\x25\x49\x53\x6e\x76\xb1\x2e\xce\x67\xd0\x41\x4f\x44\x8e\x5c\x8e\x05\xdc\x58\x23\x6b\xf3\x80\xa7\xf1\x62\x68\xbb\x9a\xd0\x67\x40\x1e\x40\x12\xea\x27\x5f\x18\xc7\x03\xdb\x8f\x5d\x5e\x9a\x4c\x72\xb9\x80\xf3\xa0\xc2\x09\xc2\x50\xdf\x84\xaa\x1b\xfd\x5f\x34\x88\x24\x89\x89\x69\x16\x95\xc6\xa1\x31\xc8\x84\xd3\xf9\x30\xfb\xba\x49\xa7\x08\xe0\x0b\x13\x27\x9a\xee\x43\x8c\xe3\x82\x9e\x48\xa5\xf0\x1c\x17\xb3\x0a\x52\xe6\x10\x44\x00\x80\x60\xcc\x53\x72\x19\x8b\x44\x22\x05\xb2\xb0\x15\x99\x2d\x7d\xde\x19\x9c\x81\xe1\x01\x78\x21\xba\xdf\x25\x87\x07\x80\x11\x87\x58\x1b\xd8\x53\x6c\x1b\xb3\x7e\xca\x2f\xed\xe3\x4e\x4f\x75\x0d\xcb\xe7\xf6\xb8\x20\x82\x3a\xc2\x1c\x5a\x99\x11\x38\x68\x87\xbf\xa1\x1e\xa3\x1f\x0f\x05\xa1\x11\x20\xd0\x05\x84\x18\xce\x18\x51\x0c\x20\x69\x1a\xa0\x7e\x52\xd4\xcc\x50\x15\x3d\x10\x0a\x85\x34\xb8\x70\x85\xb7\x80\x00\x18\x28\x7a\xdf\x19\x4d\xab\xf8\x6d\x04\xa4\x30\xa8\x51\x2b\x54\x14\xd5\xc1\x5c\x7e\xf5\xd6\x03\x71\xe1\x83\x9e\xdf\x46\x38\xa6\x06\x6d\x15\x04\xcb\x16\x0f\x96\x86\x60\x94\x7b\x91\x3a\xa9\x4e\xf4\xf7\x03\xdb\x81\x4b\x7b\x0e\xe0\x3d\xee\x26\x5c\x91\x28\xfb\xda\x90\xc7\x29\x5b\x85\xb1\x1c\xfd\xa1\xb9\xbd\x30\xf4\xa0\xef\x9e\x59\x5d\x0d\x8b\x1e\x78\x8d\xf0\x69\x20\xd9\x05\xa0\x7c\x8e\x97\x68\xf0\x0c\x0c\xca\xc9\x5b\x18\xbe\x2a\xda\x58\x57\xe1\xc7\x76\xed\x8a\x16\x12\xf4\x1d\xc9\x39\xb0\x69\x7c\xcf\xd7\xa3\x23\x6b\x49\x7a\x43\x19\xc0\x9e\x12\x21\xd0\xee\x43\x66\x11\xe3\x05\x16\xfe\x79\x26\xa0\x80\x41\x5a\x14\x61\x9c\x80\x36\x44\x13\x21\xbf\x7b\x00\xe4\x1e\x3b\xcb\x7f\x90\x49\x87\x02\x44\x5a\xdb\x24\x95\xe5\x90\x17\xc2\x2e\x41\x04\xab\xce\xe1\x33\xa6\xd4\xa0\x59\xa4\x0f\x6a\x8a\xf6\xcf\x3c\x06\x0e\xb6\xa3\x81\x0f\x4a\x2d\xd6\x08\xd7\xa5\x82\x8a\x20\xb5\x88\x83\x20\x00\x18\xdf\xbb\x6d\xa4\x3d\xc1\xb5\x96\x8a\x62\xc2\x1a\x46\x42\x15\x11\x08\x19\xa4\x56\xee\x5e\x3c\x3c\x16\x71\xa0\xb8\x01\xad\x14\x44\x14\xc1\x25\x61\xe1\x87\x0a\xd7\x28\x15\xbb\x41\xbc\x1b\x06\x6c\x8d\x5b\x36\x90\x84\x29\x9f\x21\x0b\x1c\xb4\xac\x89\x55\xc4\x62\x99\xf9\x81\xf9\x5a\x6e\x54\x21\xaf\x4e\xb8\x69\x94\xe6\xb8\xb6\xd9\x94\xd0\x4f\x56\x44\x82\x70\xf1\xb2\x2a\xa5\x33\x97\x78\x71\xd4\x8d\x23\xa6\x42\x38\x58\x53\x28\x56\x33\x53\x9c\xa5\x51\x9e\x70\xaa\x2b\xa0\x06\x86\xc4\x73\x69\x11\x15\x45\xa0\x89\x27\x5e\x93\x99\x65\x6e\xe1\x79\xb1\x95\xaa\x1b\xa6\xc5\xf4\x1e\x79\x5a\xb3\x68\x23\xf0\xcd\x23\x17\x6a\x8c\x94\x5c\x82\x2a\x94\x66\x3a\x69\x5c\xb5\x5e\x82\x91\x95\xdf\x65\x69\xf6\x39\xd6\x2d\xc9\x41\x71\x7e\xa3\xe8\x68\x07\xe8\xac\x70\x3a\x39\xc1\x41\xf1\xd1\xbf\x73\x6c\x68\x75\x5d\xb2\x36\xbd\xb2\x35\x25\x32\x85\x09\x62\x01\x95\x43\x80\xe4\x8c\x9f\xe8\x19\xa4\x57\x20\xba\xe9\x44\x8d\x22\x71\xa2\xf3\xb3\x14\x47\xe4\x74\xd7\xc6\x57\x61\x2d\xca\x40\xea\x0f\xa1\x2d\x08\xea\x3e\xec\x1a\x6e\x30\x15\x76\xc6\x90\xd3\x53\x01\xd2\xe9\x46\x73\x2c\x34\x25\x2f\x88\xe5\x30\xe9\x7d\x48\x5e\xf5\x57\x3d\x90\x01\x83\xf1\x07\x43\x20\x7f\x1d\x1f\x04\x44\xa1\xa9\x8f\x47\xc2\x17\x84\xc3\x90\xb1\x26\xa9\x14\xb8\x1a\xf8\x7e\x88\x1e\xff\x87\x52\x41\xd1\xb0\x54\xa4\x72\x35\x54\x99\x68\x96\xc1\x04\xa0\x38\x50\x09\xc8\xad\x2c\x71\xd7\x6a\x52\x3a\x13\x91\x5a\x7e\x74\x06\xd6\xe0\x7a\x74\x7e\x0f\xf0\x64\x25\x38\x40\x4e\x57\x0c\x30\xf9\x25\x60\x3d\x8d\x24\x99\xae\x22\xdd\x31\xc7\x1c\x52\xc3\xce\x84\x88\x76\x27\x74\x73\xa6\x8f\xb9\x00\x9c\xc8\xbd\x4d\xd6\x40\x74\x81\xd0\xf3\x43\x90\xad\x01\xe6\x24\x55\xb2\x5d\x9b\x8e\x59\x03\x09\x06\x2e\xf2\x52\x79\xf6\xc9\x1e\xbc\x9d\xd4\x45\x22\xe3\x2e\xd8\x49\x01\x3b\xac\x23\x1f\x77\x42\xe7\x71\x85\x71\x4d\x38\x05\x3a\xc4\xab\xac\x45\xc8\x30\xc7\x0c\x17\x23\x5a\x0f\x2f\x68\x69\xc4\x91\xf5\x84\x52\xea\x07\x50\xf9\x5b\xb6\xb8\x88\x41\xea\x0a\x30\xd9\xd6\x8d\x44\x32\x97\x90\x4f\x24\xc2\xeb\x5a\xa7\xe4\x17\xdf\xa1\xb9\x1d\xe5\x0c\xea\x7c\x84\x3b\x96\x15\xbf\xb0\x68\x26\xc5\xba\x4c\x48\xa3\x01\x9c\x91\x8a\xc6\xce\xbe\x27\xe0\x98\x40\xff\x2b\x8d\xd8\x10\xb2\x73\x56\x7e\x78\x18\x21\x1c\x7a\x18\xc4\x34\xab\x8f\xb2\x6f\x94\xc0\x49\xe6\x43\x93\xcd\x85\xbc\xfb\x25\xd3\x32\xc3\x7a\xea\x66\xf8\x53\x81\x7d\x0f\x6d\xb9\xfe\x31\x46\xcf\x99\x5c\xb4\x3d\x9c\xca\x6c\x2e\x14\xd2\x1c\xdc\x87\x29\x7b\xbe\x77\x40\x40\xaf\xa0\xf2\xae\xe9\x2e\xce\xc3\x5d\xca\x35\x06\xef\x64\xab\x10\x5c\xe2\x9a\x69\x5e\xb9\x01\x6c\x2f\x25\x66\x11\xce\x8f\x0b\x17\x1e\xf3\x7a\x5f\x0b\xaa\x42\x97\x47\x01\x6f\xbb\xae\xe5\x0d\xd3\xc6\x41\xc6\xe3\x1f\xe3\x88\xf3\x01\x83\x28\x1e\x9b\xb6\x8c\x0b\xec\x2b\x60\xe2\x70\x86\x06\x36\x20\xbb\xfe\xc4\xfa\x87\x2f\x07\x8d\x9f\x55\x44\xed\x88\x0b\x8f\x2e\x62\x06\xd8\x6b\x16\xca\x31\x99\x2e\x07\xd2\x05\x7e\xd4\x9b\x3e\xc8\x30\xd4\x5c\x60\x82\x8f\x10\xc2\x4b\xc9\xdc\xce\xeb\x6f\x09\x02\x2f\xfb\x5f\xea\xbd\x09\x81\x57\x7e\xb1\xe9\x81\x81\x5b\xe5\x20\x05\xe3\x29\x34\x65\x91\xa9\xf1\x5d\x3c\xeb\x1f\xeb\x6e\x4c\xdf\xed\xbd\xf1\x2c\x4f\xe5\x8f\x60\x07\x5b\x92\x33\x57\x8e\x27\x46\x64\x3a\x81\xc1\xfd\x94\x19\xd6\x08\x48\x1a\xf1\x1c\xa2\x08\x44\x3f\x85\x08\x67\x66\x36\xb3\x71\x90\xe4\x0f\xcb\x5e\xef\x70\x79\x17\x68\xe6\x9d\x53\x16\xbd\xa7\x44\x9e\xa3\xa7\x70\xef\x2c\xe0\x0c\x58\x64\x01\xd6\xf3\xd1\xf9\xd1\x28\xdc\xa6\x30\x4a\xca\x43\x94\x98\x99\x5c\xe0\x75\x34\x3e\x63\x8f\xd2\x85\x50\xa0\x15\x44\x78\x3a\xa2\xe1\xac\xae\xc5\x20\x80\xab\xaa\x6d\xce\x7a\x07\x28\x2c\x28\x0c\xed\x01\x12\x43\xae\x5c\x7c\x80\x9b\xb3\x82\x93\xad\x98\xbf\xef\xc4\x33\x19\x11\xa4\xfb\x1a\x2f\xe9\x46\x86\xb3\x9d\x8d\x30\xc0\x14\x15\x19\x31\x7c\x0a\x56\x07\x00\xee\x54\xcf\x9b\x64\x31\x62\x8b\x98\x42\x92\x27\xe7\x4a\x18\x36\x94\x25\x05\x7e\x1a\xad\xe5\xa4\xc8\x88\x7f\xaa\x20\x99\xfc\xc0\xf4\x7f\x08\x8b\xd5\x09\x2a\x0c\x01\x78\x5a\xd0\x69\xcf\x7a\x67\xf8\xce\x46\xe6\x3d\x88\xed\xd9\x8f\x11\x77\x79\x14\xed\x3d\xe6\x48\x9e\x9a\xe9\x90\x3c\x84\x23\x8f\xe5\x85\xd7\xf5\xed\x9c\xa9\x31\xea\x04\x52\x1c\x2e\x45\x7a\x00\x85\x25\x1c\xd1\x7d\xa5\xca\x64\x2c\xee\x4c\xc8\x4b\x46\x47\x4f\xb4\xec\x34\x67\x78\x03\xd3\x00\x16\xb2\x32\x3b\x5c\x86\xb2\xb9\x68\xad\x02\x56\x05\x22\x5a\x10\x8a\xe5\xd1\xc7\x26\x1a\x92\x9a\x8c\x73\x1a\x13\xdd\x8e\xb7\x6b\xc9\x8b\x81\xe4\xba\xac\x6c\x09\x5e\x17\xbf\x59\x5c\x04\x0a\x6c\x12\x0d\x47\x05\x97\x26\xce\x93\xe4\x6e\x04\x0a\x41\xfa\x85\x64\x96\x7a\x46\x38\x3a\xbc\x51\x2b\xe5\x87\x9f\xc3\xe2\x61\x49\x1b\x12\xfb\x68\xd2\xa8\x0f\x52\x5f\x9a\xf6\xed\x72\x49\x6e\x16\x1c\xe2\x44\x6e\xb1\x69\xac\x52\x8c\x8b\x39\x0e\x20\xa9\x27\x7c\xe3\x28\x0d\x11\xce\xe1\x94\x48\xed\x83\xea\x4b\x38\x37\xb2\xb8\x21\xed\x74\x45\x6d\x9b\xd9\x05\xcb\x48\x8b\xdf\x46\xeb\xb0\xec\x2f\x52\xb9\x08\x11\xe4\xd7\x1e\x58\x84\x44\x45\x9f\x2a\x32\x28\x90\x56\xa7\xa6\x50\xb8\x73\x93\x16\x00\x18\x5b\x0d\x29\x01\x38\x18\xaa\x3e\xa2\xd2\x20\x34\xdb\x80\xd5\x20\x21\x7c\xa5\x9c\x1c\x80\x2e\x76\x91\x68\xb8\x49\x9c\x13\x62\x4c\x26\x36\xe1\xcf\x16\x6d\x14\x63\x64\xec\x18\xfb\x6c\x23\x49\x3a\x69\x22\x3d\xc0\x7f\x8d\xb9\xdb\x49\x27\x94\x62\x39\x62\xf3\x30\xbe\x46\x2c\x61\x21\x8f\x95\xee\xe9\xf2\x81\x29\x8f\x63\x2e\x0b\x6f\xc2\x16\x01\xd3\x22\x5a\xc9\x17\x4e\xf8\x31\x75\x6e\x9f\x14\x6e\xc1\x98\x8a\xe7\x22\xe1\x8c\x1e\x17\x87\x70\x99\xca\x1d\x83\x8d\x8c\x9a\x30\xd9\x0c\x51\x17\xa6\x71\x27\xd1\x43\x40\x12\xcc\x70\xa7\xd8\x02\xf5\xf2\xa2\x94\xde\x2f\x75\xc0\xea\xb8\xbe\xb9\x64\x10\x83\xa5\x11\xc2\x72\x4a\xbb\x5f\x1e\x37\xc9\x44\x56\x85\x1c\x41\x26\x99\xe3\x04\x3f\xfc\xd6\xc5\x51\x49\xfd\x78\x48\x44\x80\x89\x10\x30\x32\xca\xc4\x46\xe2\x43\x58\x88\x22\xa4\x50\xf6\x20\x6d\xb9\xf1\xa7\x19\x49\x00\xf9\x42\x58\x89\x5f\x95\xae\x49\x73\x66\x10\x25\x4a\x01\xa5\x0e\x0c\x2a\x60\x29\xcc\x94\xd1\xce\x66\xcb\x33\xbd\xf7\xae\xda\x1a\x6d\x24\x1c\x85\x10\xff\x5d\x41\x21\x70\xdf\x80\xa9\xd0\x98\x61\xd6\xb9\x38\x3a\x00\xbd\x10\x26\x72\xb3\x78\xbe\x53\xd9\xf4\x71\x30\x66\x72\x4a\x31\x7a\x15\xbc\x6a\x89\x60\x7b\xa4\xb2\x89\x1c\x61\xe8\x4d\x61\xe5\x0b\x99\xfa\x4c\xbf\x7c\x21\x60\x2d\x88\x62\xf4\xe3\xb0\xc4\x3d\xad\x39\x82\x02\xce\xc8\xc6\xe0\xf6\xda\x79\x1c\x15\x46\xf1\xa4\xfc\xcb\x51\xda\x1a\x15\x7c\x3c\xb7\x01\xd3\x75\xe0\x59\xbb\x7b\x31\xd2\xfb\x6c\x05\xbc\x5b\x8c\x72\x00\xa1\x0f\x4a\x2a\x7e\xd1\xdc\x68\x93\x81\x9a\x9f\xce\xca\x72\x49\xe6\xa8\xe2\xf7\xb6\xcd\x5d\x5a\x36\xcd\x2c\x3d\xb4\x1c\xe2\x4a\xc0\xf7\x51\x8f\x0a\x5f\xd8\x4a\x69\x58\xcb\xc8\x11\x91\xf8\xd2\xa4\x3f\x35\xf3\xfb\x67\x1f\x12\x2d\xca\x48\xaf\x97\xb5\x4f\x40\x0b\x42\x56\x58\x13\x86\x3e\x9d\xf6\xf5\x98\x57\x29\x24\xe4\xde\x3b\x9a\xf3\xe0\x52\x6d\x0e\xcd\x87\x59\x1b\xdc\x51\x91\xec\xbc\x6e\x8f\xcc\xca\x62\x9f\x2e\x15\x67\x07\xd7\xa5\xf2\xb6\x1b\x40\xb8\xdb\xf4\x14\xbd\x72\xd9\xbc\x73\x00\xe8\x0a\x81\x2f\xbc\x7b\x82\xdf\x33\xd7\xa7\x1b\xa5\x79\xfb\xa9\x8e\x89\x9a\xda\x04\x17\x76\x99\x06\x0e\xbf\xfe\x1c\x69\xf8\xee\xd0\x63\x3e\x0a\x8f\x55\x31\x8d\x6a\x9a\x9a\x0b\x89\x02\xde\x6c\x9c\x6d\xc4\x16\xd2\x1c\x17\xe0\x1b\x60\xab\x41\xb0\xa2\xb3\xd4\x68\x4a\x8d\xf5\x11\x4e\x2f\x2a\xc0\x54\x10\xc4\x9b\xec\x5b\x46\x56\xd4\x19\x75\x07\x2c\xa8\x3f\x15\x3a\xd5\x9e\x0d\xfe\xc8\x18\x7a\x08\xa7\x4f\x39\xb0\x03\x9d\xa1\xf3\xfb\x9a\xef\x4e\xc3\xf4\x12\x94\xf0\xcd\x80\xf0\xfc\x71\xae\x51\xf1\x73\x1a\x45\xdd\x89\xe9\x3b\xec\x85\x44\x3d\xf6\x94\x49\x0c\xcd\xa9\xe4\x9c\xa5\x90\xd4\x16\xbe\x2b\x59\x41\x62\x10\x78\x23\x28\x89\x5a\x32\xac\xcd\x59\xe8\xb8\x94\x1a\xca\x5c\x47\xbb\xaa\xf2\xaf\x74\xd9\x67\xa6\x04\xb3\x93\xf7\xb5\xad\x7d\xf3\xe3\xe0\xb8\x42\xc9\x7f\x3a\xc8\x65\x78\x2f\x23\x68\x7b\x35\xae\x0f\xe1\xc5\xd5\x21\x8a\xbf\x14\xd5\x10\x4b\xd2\x6a\xb1\x00\x95\x90\xf4\x80\x91\xad\x50\x0c\xbf\x98\x92\x4f\x39\x6e\x32\xf1\xfd\xb9\x55\x67\xd6\xd5\x6e\x5e\x95\x18\x5e\x97\x0d\x0c\xbc\xf0\x7a\xc5\xfc\x48\x77\xb5\xff\x0e\x9b\xdc\x3e\xa0\xd8\x4b\x4c\x25\xa7\x9b\x08\xe5\xb4\x5e\x5c\xaa\x59\x7a\x97\x45\x72\xe8\x03\xb6\x84\xb4\xd8\x24\xab\xb9\x0f\x8c\xd7\x92\xfb\x71\x0b\xc8\x1b\xc8\x85\xf0\xc0\xa2\x71\xea\x32\x35\x5a\xb7\x9e\x9d\x4a\x8e\xac\x95\xdd\xdd\x33\xdd\x04\x2c\xc0\x90\x5d\xf7\xb2\x2d\xb6\x79\xb4\xd8\x5a\xda\x32\xee\x39\x46\xf6\xa7\xab\xd0\x7e\x88\x22\x1f\x66\x37\x25\xc5\x4a\x92\xc3\x34\x05\x3b\x91\x2d\xc0\x17\x19\x2d\x57\xc0\x74\x96\x16\x2a\x3b\x55\xbb\x75\x8a\xf2\xb8\x0a\xd3\x4f\x3b\xc5\x59\x56\x9a\x38\x4f\x2b\x98\x97\x27\x6c\x89\x25\x77\x6c\x0a\xa5\xee\x61\x71\x47\x77\xb3\x53\xa5\xb8\x8d\x1d\x19\x51\x86\xaf\x97\xb0\x36\x99\xec\x4d\x28\x42\x9e\x69\xfd\x97\xfb\xd6\xc3\x2a\x36\x39\xc7\x61\xe8\x6b\x20\xe1\xd5\x22\x48\x6d\x4b\xd9\x59\x8d\x58\x50\x23\xf2\xd4\xf0\x8c\x8d\xc7\xb6\x39\xb3\x4c\x8c\x0c\x12\x5c\x00\xb1\xcf\x5c\xb2\x6b\xab\xb3\x04\x79\xe5\xbf\x36\x70\xe0\xad\x0b\x99\x25\x7c\xe9\x48\x55\x41\x24\xd4\x20\x84\x20\x08\x47\xae\x05\xd6\x33\xda\xa7\x98\xbe\x1b\xa7\x20\xcc\xc5\x72\x68\xc9\xe7\x9e\x5c\x35\x8f\x57\x55\x29\x87\x87\x68\x74\xbd\x99\xa9\x18\xd5\x38\xab\x75\x39\x21\xcf\x2a\x4e\x06\xb3\x02\xd3\xa2\x69\x72\x52\x19\x84\x3b\x04\xb2\xac\x4c\x02\x20\x91\x94\x43\x9a\x32\x77\xdc\x77\x60\x86\xad\xac\x4e\xe9\x2c\x4a\x65\xe3\xae\x89\x0d\x66\xd8\xaf\x30\x32\x94\x98\xc9\x58\xac\xb0\xa1\xb0\x69\x0b\xbb\x24\xfb\xff\x23\x03\x10\x81\xfd\xd0\xd7\xfc\x70\x13\x11\x72\x11\x2b\x45\xfa\x65\xcd\x63\xd9\xa3\x8d\xcf\xfa\x1b\x01\x80\x48\x01\xd1\x41\x7a\xde\x5b\x92\xe2\xae\x2c\x91\x1a\x30\xc2\xba\xc9\xc3\x95\x30\x73\x47\xe1\x66\xaa\xdf\x10\x25\x9e\x05\xf4\x8c\x4a\x79\x28\x9c\x6d\x0a\x27\x1b\x34\xc0\x4c\xcf\x3c\x21\xab\x9f\x40\x10\x22\x39\xc3\x0e\x94\x05\x82\x3e\xcf\x89\x4a\xf7\x4a\x67\xc0\x59\x39\xa6\xdd\x13\xd6\xa6\x84\x6d\xca\x7f\xd6\xb1\x09\x84\x46\x5a\xee\xe4\x98\x50\x03\x81\xed\x82\x55\x13\x2d\xd6\x60\xad\xae\x36\x70\xd8\xa4\x0a\x10\x84\x12\xc8\xfd\xb7\x10\x3b\xbf\x8a\x24\x14\xcd\x6f\xb8\x45\x02\xd6\xd1\x0e\x56\x93\x90\xb2\xa5\x95\xb7\x3a\x33\xc1\xa4\xd7\x53\xa2\x47\x88\x91\xbb\x8a\x14\x18\x0c\xa2\x98\x7e\x9b\x81\x94\xdd\x04\x33\x87\xc5\x60\x50\xfe\x31\x2c\x8d\x53\x71\xf0\xbe\x36\x6c\x99\xb1\x5a\x7c\x43\x89\x2b\xa3\xf6\x58\x48\x15\x6d\x6e\xa5\xb2\x10\x48\x88\x6e\x1c\x49\x5a\xa8\x56\x43\x1a\xce\xca\x99\xb9\xb3\x8d\xf4\x89\xa2\x99\x39\x1b\xba\x4a\x42\x18\xd0\xd5\x90\x99\x12\xf8\x31\x4a\x02\x35\xf4\x6a\xbb\xa3\xa6\x45\xe8\xad\xc9\x96\x29\x92\x42\x6b\x92\x9e\xff\xf1\x7d\xc9\x72\xfc\xe8\xd2\x32\x88\xdf\xb9\x75\x5a\x38\x91\x1c\xc2\x24\x25\xa3\x3e\x90\x0c\x1e\x8d\x10\xb4\xb4\x7b\x5d\x98\xee\x3f\x08\x65\xb6\x59\x97\x73\x16\x97\xde\x91\xb2\xf0\x4c\x03\xcd\xcd\x8a\xb2\xa1\xc5\x6f\xa4\xf6\xad\x5e\x57\xc2\xb1\x1c\x3a\xe2\x6e\xcc\x99\x12\x42\xf5\x7d\x1d\xfb\xad\x43\x25\xc1\x27\x16\x03\x5f\x30\x0e\xbc\x21\xa6\xae\xf7\xf4\x02\xc0\x88\xa5\x86\xc9\x68\x30\x47\x90\x0b\x73\xc0\x14\x92\x9b\x11\x28\x20\xa2\x1e\x20\x66\xec\x21\xa9\xdc\x7f\xde\x71\x6a\x44\x1b\x07\x38\xad\xae\x6c\x22\x25\x34\x5a\xef\x33\x4c\x9a\xae\x99\x4b\x25\x3a\xb7\x45\xa9\x89\x1d\x84\x87\x28\xe8\xf8\x44\xf2\x22\x69\x61\xe9\x70\xf0\x02\x0c\x5e\x61\x83\x12\xc6\x15\xc6\x28\x28\xc6\x8c\x20\x55\xe8\xde\xc6\x18\xa4\xcd\xb1\x8d\xb5\x3e\x38\x37\x43\x40\x92\xf1\x29\x7a\x6c\x3e\xc3\xc9\xc3\x1f\x00\x84\xb2\x17\x58\x3c\x3e\xa1\x45\x6b\x05\x9a\x86\x88\x10\x0f\xda\x1e\x18\x4b\x0c\xc3\x01\xc2\x3a\x2c\xb5\x16\x25\xc2\x5a\x8d\xb6\x86\x5d\x98\xaa\x22\x1d\xa7\xee\x3b\x36\x95\x3e\xd1\xce\xbe\x95\x4d\x4f\xbd\x86\x61\xd7\x79\x1e\xd2\xde\x65\xc9\x5c\x9b\xc2\xab\xa8\x83\x02\x18\xe9\xd7\x24\x23\xa1\x8a\x5c\xf9\x2f\xd3\xbc\x71\xb8\xce\x54\xf4\xd5\x38\x82\x29\x9c\x51\x53\x99\x61\x8f\x95\xf9\x08\xc4\xb8\x49\xd0\x68\x48\x6a\xea\xa0\x43\x2f\x39\xb1\x09\x06\xd0\x47\x39\x1c\xa8\x93\x20\xe2\x0f\x25\x8c\x4b\x1b\x20\x52\x69\xc4\x0e\x88\x8b\x63\xdc\xa1\xd0\x68\x05\x08\x6c\x68\x18\x54\x48\x9a\x82\x24\x25\xb0\x8b\xd0\xc1\x44\x9c\x89\x8c\x70\xc7\x88\x1d\xa1\x89\x73\x47\x84\x95\xeb\x18\xe1\xed\x22\xf8\x5b\xb9\xad\x27\x3b\xe5\x47\x82\xab\xe1\xfa\x32\x0e\xb8\x57\xa5\x09\x8a\xc0\x4c\x58\x1c\x2c\x23\x92\xef\x14\xf5\xfa\xc1\x85\xa5\x00\x66\xa1\xfd\x91\xc1\xce\x1e\xf3\x56\x21\x79\x2e\xcb\x4d\x58\x5a\x01\x31\xc0\xa9\x04\x3e\x4d\xf7\x4b\x28\x12\x91\xdc\xbd\x6b\x4b\x39\xb5\xbd\x3a\xac\x72\xa9\x69\x33\x7b\x47\x43\x23\xdf\xf9\xb0\xe2\x8a\x17\xb0\xc8\x92\x60\x1f\xa0\xea\xb8\xfa\xa7\x41\xcb\x0f\x7d\x88\x0b\xb4\xa6\x16\x89\xaa\xe8\xe2\x02\xb6\x40\x87\x32\x7d\x0a\x1c\x85\xa1\x9b\x51\xab\x46\x08\x36\x01\x4a\x05\x90\x87\xd8\x00\xea\x22\xcf\x66\x29\x26\x89\xe0\xa0\x7e\x8e\x0f\xe6\x8a\x67\x8b\xe2\xeb\xbb\x2d\x80\x7b\x0a\x19\x42\x81\xf8\x2a\x51\x6c\xc8\x3c\xee\x0e\x53\xf3\x37\x76\x68\x44\xdd\x00\xb2\x12\x3e\x2c\x38\x2b\x3d\x86\xc7\x9f\xf2\x84\x37\x41\xc6\xb0\xdb\xec\x61\x80\xc4\x73\xf0\xa4\xf8\xd0\xb1\x12\xcb\x2e\x0d\x8f\xb1\xe9\xa5\xf4\xcd\x21\xdc\xc7\xa7\x31\x60\x2d\x8d\x4d\x87\x0b\x01\x09\x0d\xf4\xa4\xfa\x2c\x0f\xf5\xc1\x52\x49\x7d\x9b\xcf\xb4\x04\xc8\x0c\x72\x60\xe1\x76\xdd\xa6\xd5\x0f\xd2\xe3\x64\xfa\xcd\x79\xb8\x7c\xdb\xc5\x91\x28\xd3\xdd\x86\x4c\x8e\x69\x2e\xf2\x50\x14\x86\x5d\xc8\xc9\x94\xd1\x45\x11\x2a\x3d\x28\x6a\x7c\x74\x88\xda\xc4\xb2\x4a\x44\x8f\x09\x70\x52\x24\x63\x83\x54\x2b\x44\x12\x72\xa2\x06\x1c\xe1\x86\xc5\x06\x89\xcc\x63\xec\xa2\x36\x2a\x28\x0f\x1a\x80\x12\x95\x2f\x92\x74\x6b\xc4\x17\x33\xf0\x59\x4b\x63\xca\x87\x20\x76\x0f\x6f\xae\xc7\xed\xc2\x82\x89\xb6\xb2\x25\x61\x37\xc2\x18\x3b\xbc\x47\x9d\x1f\x30\x22\x30\xfd\xf4\x97\x4b\x31\xb6\x15\x9a\x06\x29\x74\xf1\x9a\x8a\xaa\x4a\x40\x50\x8e\x73\xb1\xa1\xa0\xfb\x6b\x40\xec\xae\x9b\xd0\xb8\xd3\xee\x72\x83\xe7\x7e\xdd\x9c\x3b\xc7\x15\xcd\x6c\xb6\x73\x83\xf1\x4d\xdd\x0a\xb3\xda\x4d\x9c\x64\xec\x0f\xf8\xc0\x53\x1d\x67\xa1\xf1\x0c\xa7\x8f\xf6\x46\xae\x59\xd6\xec\xdc\x92\xcb\x5f\xfb\x22\x5f\xae\x63\xbb\xbb\xff\xeb\x7e\x15\xda\xb6\x19\x39\xbb\x92\xfd\x66\xa8\x06\xaa\x1c\xd0\xcf\x32\xcf\xc2\x78\x16\x7e\x80\xd6\x19\x43\x03\xaa\x24\x33\x77\x3f\x1b\x8f\x7c\x24\x1e\xb2\x92\x6c\x8a\x25\x12\x48\x73\x7c\xc1\x7f\x1b\xed\x3d\x7f\xf0\x91\xf1\x01\x37\x86\x0d\xa0\x49\x97\xbc\xe1\xd5\xc1\x4f\x90\xb0\xc8\xe1\xaa\x10\x55\x48\x49\x0d\x49\xae\x24\xde\x90\x45\x98\xdf\x60\xc2\x29\x72\x11\x39\x4f\x55\x66\x92\xc3\x16\x53\x34\x2b\xa8\xbc\x71\xc9\x76\x4a\xdf\x1f\x4c\x90\xef\x5f\x2e\x93\xcf\x89\x30\xd1\xa5\x73\x88\x57\x0d\xa0\xad\x0a\xc0\xbb\x28\x86\xd4\x99\x6d\xd9\x63\xce\xb7\xf8\xe7\x4a\xf5\xe1\x17\x12\xd0\x4f\x78\xf2\xbd\xb8\x12\xaa\xd7\xea\x8a\xb1\xc3\x91\xe6\x7b\xc0\x66\xab\x57\x86\x0e\x82\xa8\x1d\x76\xa9\x58\x1c\x3a\x11\x87\x9a\xca\xc8\xd3\x9a\x9c\x59\x1c\x4c\x48\xa4\x06\x6e\x16\x08\x68\x42\x68\xc6\x8e\x87\xe2\x0d\x42\x30\x5c\xe4\xf6\x92\x91\x34\x3b\x93\x57\xd7\xda\x8e\x2f\x6c\x6c\x51\x39\x37\xa9\xa5\x99\x23\x9b\x5e\x9c\x53\xa0\x4b\x88\x36\x9a\xa8\x07\x82\xcf\x74\x88\xf3\x66\xcb\x9f\xb6\x4b\x5a\x11\x7b\x20\x58\x97\xf1\xcf\xfa\xcb\x18\x74\xf7\xfc\xab\x5e\xcc\x19\xaa\x52\x19\x37\xfe\x14\x91\x30\x68\x39\x1a\x99\x8e\x71\x10\x1d\x3e\xdf\x25\x89\x76\xd8\xb5\x22\x28\x08\xae\x61\x05\xc4\x8a\x25\x16\x59\x2c\x59\xe2\xc7\xe5\xc0\x68\x62\x10\xe4\x10\x2b\x39\xc5\x72\x21\x82\xc8\x9d\x9c\x09\x43\x33\x8b\x2e\xf4\xfd\x59\xe0\x0e\x8e\x34\xdf\xb8\x0d\xc9\xa2\xfa\xb5\x3b\xb1\x09\xbc\xcd\x74\x52\x74\x6d\x62\x77\xbe\x47\x42\xc5\x81\xf5\x28\xd1\x0c\x71\x5f\x96\x0b\xa8\xc5\xf4\x0f\x82\xc2\x8d\xc0\xf5\x2b\xe8\xdc\xec\xb6\x43\x82\xc4\x14\x69\xe0\x9a\xb8\x8a\xa9\x03\xa9\xe0\x8e\x73\xa9\xf5\xc4\x76\xa7\x47\x24\x41\x20\x68\x5f\xbc\xa2\xcc\x48\x83\x8d\x67\xc8\x17\xf2\x2d\x7d\x5e\xa0\xa9\x12\xfb\x68\x13\x21\x8b\x12\x63\xed\x33\x04\x01\x06\xf0\xcb\x5a\x61\x87\xf4\x44\x31\x78\xc9\xa2\x0b\xb5\x7a\xb6\x33\x41\x7d\x5f\x03\xde\x32\xdb\xa9\xc9\x0a\x0f\x94\xe1\xc6\x34\x21\xe2\x1e\x44\x90\x29\x6d\x09\x1c\x83\x24\xa1\x46\x47\xfb\xa6\x09\x24\xc2\x4f\x18\x21\x05\x28\x31\xd6\x33\x1e\x08\xeb\xf4\xfd\xea\xfd\xbb\x40\xd7\x76\xb8\x91\x2a\x29\x9c\xce\xcd\xf1\xd0\x91\x4f\x86\xcb\x61\x75\x44\x89\x24\xdc\x5d\xb4\x1e\xc9\x5a\xab\xf1\x1f\x29\x5b\x14\xb8\xda\xb8\x20\xaa\x10\xd6\x82\xbc\x08\x3d\xb3\xe2\xf9\xd2\x26\x37\x9d\xa8\x64\x6e\xa5\xf4\x39\x83\xaf\xd9\x41\x5e\xdb\xa7\x1d\xc4\x6b\x16\xc1\xdf\xd0\xcc\x30\x21\x9f\x29\xc2\x57\x03\x75\xf4\x86\x9b\x3c\x10\x31\x67\xbf\x2c\xe0\xcf\xfe\x20\x02\x5f\x1d\x85\xe3\x99\xfe\x6b\xb7\x21\x6a\x80\x8d\x8c\x70\x65\x8c\x70\x81\x20\x94\xf0\x01\x21\xe3\x6e\x28\x5a\xa6\x9a\x24\x5c\xbe\x91\x4b\x62\xa4\x91\xb3\x4d\x03\x53\x3e\x0b\xb9\x0d\x0e\x15\x2e\x74\x58\xb6\xe4\xa7\x86\x72\xa0\xed\x97\x6a\xa3\x5b\x0a\xed\x9b\x42\x0e\x3b\xb9\xf0\x51\x04\x7c\x0c\x76\x27\x24\xbf\xcc\x5e\x96\x20\x34\xe1\xc0\x35\xe5\x14\x39\x30\xfb\x75\xc9\x10\x95\x77\x41\x81\x47\x84\xb4\x3e\x0e\x70\x9a\xdb\xd2\x86\xaa\x83\x09\x42\x20\x46\x19\x76\xf0\x44\xee\x62\xd3\x44\xa5\x64\xc8\x61\x22\x54\x22\xc0\xc8\x5d\xd8\x0e\xd1\x40\x5d\x81\xa5\x0c\x3a\x8e\x11\x0c\xbd\x8e\x78\xd1\x1f\xcb\xd0\xb3\xee\x38\x00\x3a\x0f\xc8\x0b\xff\x96\x46\xc2\x11\x63\x8c\x44\x37\x26\x93\x21\x5e\x22\x6f\xdc\xc3\x2f\xb5\xa0\x40\xe9\x4d\x44\x57\xed\xb1\x29\x76\x60\xd8\xe7\xe5\x0f\x5b\xbd\xd3\x92\xf2\x5e\x09\x2e\x24\x89\x2c\x3d\x4b\x9b\xc7\xb7\x4c\x5a\x92\x49\xff\xb9\x55\xc9\x8b\x0a\x09\x33\x02\x61\x30\x17\x25\x49\x66\x36\x38\x34\xc9\x03\x0c\x56\xc1\x4e\x2c\xf0\x19\x5b\xf4\x60\xde\x93\x51\x59\xc1\xa6\xad\x23\x26\xbd\x12\x13\x99\x32\xba\x50\x0b\xac\x3e\x88\x50\x17\x7d\x65\x6a\xb8\x88\x64\x7a\x69\xa9\x1f\x9f\xb7\x51\xd9\xae\xa6\xc3\x24\x22\xe8\x9c\xa2\xd9\x13\xdc\x38\xa4\x92\x07\x7e\x96\x90\x54\x89\xc5\x64\x91\xce\x0e\x24\x6c\x60\xd0\x12\x74\x0b\x21\x87\x69\x31\x28\x01\x00\x00\xff\xff\xab\xaa\xc0\x6d\x88\xe7\x00\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_eot() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_eot, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.eot", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_svg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x69\x93\x1c\x49\x76\x1e\x0a\x7f\xaf\x5f\xe1\x6a\xbd\xaf\xec\x6e\xc9\xf6\xb3\xfb\x11\xd9\xd4\x1d\x71\x46\xcc\x91\xa2\x38\x0c\xd1\x95\x92\xea\xae\x18\x34\xa6\x07\x22\x1a\x68\x02\xdd\xb3\xe8\x2e\xbf\xfd\xda\x79\x3c\x12\xdd\xa8\xa9\xac\x96\x91\xe2\x07\x1a\x65\x30\x43\x44\x65\x2c\xee\xe1\xcb\x39\xcf\xd9\xff\xe4\x5f\xfc\xee\xeb\x37\xed\x37\xaf\xde\x7f\x78\xfd\xee\xed\x17\x9f\xd1\x1f\xf5\xcf\xda\x87\x6f\x5f\xbc\xfd\xf2\xc5\x9b\x77\x6f\x5f\x7d\xf1\xd9\xdb\x77\x9f\xfd\x8b\x3f\xbd\xfb\x93\x7f\xf2\xd3\x5f\xfc\xd9\xfc\x8f\x7f\xf9\xb3\xf6\xe1\x37\x5f\xb5\xbf\xfc\x77\xff\x72\xfb\xf9\x9f\xb5\xcf\x4e\x9f\x7f\xfe\xef\xe5\xcf\x3e\xff\xfc\xa7\xf3\xa7\xed\xaf\x2e\x7f\xde\xe8\x8f\xe8\xf3\xcf\x7f\xf6\x17\x9f\xb5\xcf\x7e\xfd\xed\xb7\xdf\xfc\xf3\xcf\x3f\xff\xed\x6f\x7f\xfb\x47\xbf\x95\x3f\x7a\xf7\xfe\xab\xcf\xff\xfc\xfd\x8b\x6f\x7e\xfd\xfa\xe5\x87\xcf\xff\xea\xf2\xe7\x9f\xd7\x8d\x3f\x9d\x3f\xfd\xfc\xc3\x6f\xbe\x22\xfa\xa3\x2f\xbf\xfd\xf2\xb3\x3f\xbd\xfb\x93\x7a\xf3\xef\xbe\x7e\xf3\xf6\xc3\x17\x4f\x3c\xce\xbd\xf7\xba\xbd\x6e\xfc\xf2\xd5\xaf\x3e\xb4\x3f\xbd\xfb\x93\x5f\xbd\x7b\xfb\x6d\x7b\xfd\xe5\x17\x9f\xfd\xdb\x77\xbf\x7c\xf7\xed\xbb\xfb\x77\x6f\xdf\x7d\xd6\x7e\xfd\xee\xfd\xeb\xff\x7c\x7a\xf1\xe5\x6f\x4e\xbf\xfb\xe2\x33\x62\x8e\xcf\xda\x9f\xe2\xce\xd3\xaf\x5e\xbc\x7c\x75\xd7\x5a\x6b\xc7\x5f\x5f\xbf\x7e\xf3\xfb\xeb\xb3\xad\x1e\x6e\xdb\xeb\xaf\x7e\xfd\xed\x67\xb8\xe7\xbb\xb7\xaf\xbf\xfd\x70\xfa\xe6\xd5\xfb\xd3\xab\xaf\xbf\xf8\x8c\xbb\x8e\xf5\xfb\x37\x2f\xde\xbe\xfb\xf0\xea\x44\x5f\x7c\xd6\xdb\x1f\xfc\x5b\xb7\xbc\xf8\xf0\xf2\xd5\xdb\x6f\xbf\xf8\x8c\x49\x7d\xfd\xf2\xe5\xab\xe3\xa7\x93\x99\x1d\x37\xbd\xf9\xe6\xd7\x2f\x7e\xf9\xea\xdb\xd7\x2f\xbf\xf8\xac\x7f\xd6\x3e\xff\xd3\xbb\x3f\xf9\xea\xcd\xef\xbf\xf9\x75\x35\xfc\xf2\xdd\x97\xaf\xbe\xf8\xac\x7d\xd6\xf0\xcb\xe9\xed\x8b\xaf\x5f\x7d\xf1\xd9\x87\x6f\x5e\xbc\x7c\xf5\x87\x9f\x97\x4f\x3e\xfb\x4f\x3e\x7d\xf6\xd5\xef\x5e\xbe\x79\xf1\xf5\x93\x0f\x7f\xf9\xc5\x67\xf7\x6e\xda\x54\xec\x6c\xa2\x17\x52\xf3\xb3\x9b\x5e\x54\xec\xe1\xde\x48\x5b\xf0\x5e\x07\xea\xd1\x4c\xa2\x91\xd0\xb4\xcc\x46\xe6\xbb\x0b\x8e\xcd\x9d\x1b\x09\x4f\x1f\x5e\xb7\xd7\x41\xc6\xfa\xd5\x70\xf3\x69\xec\xe6\xbd\x9d\xc6\x7a\x85\xcd\xf5\xe2\x87\x27\x3b\xff\xcf\xfe\xe6\xbb\x77\xdf\xfe\xf1\xa7\x5f\x50\x3f\xbd\xfa\xf2\x97\x6f\x6e\x7e\x83\xf5\x6c\xa4\xd4\x37\x4d\x69\xd4\xb3\x9f\xb5\xf3\xa6\xdd\x1b\x69\xef\x9b\x76\x6b\x64\xe2\x67\xa3\xbe\x5d\xef\x7d\xb8\x1f\xc4\xeb\xa9\x48\x5f\x4f\x45\xb7\x2d\xa8\xaf\xa7\xa2\x6e\xac\xa7\x06\xe9\x76\xbd\xf7\xe9\x4e\xff\xd3\x4f\xfb\xfb\xf6\xbb\xaf\x7f\x59\x5b\xea\xab\xb7\x37\x7b\x1c\x9c\x4d\xa9\x9f\x95\x6c\x13\x19\xad\x9f\x59\x72\x13\x72\xfc\xea\x74\xb1\x2e\x67\x11\xd9\x94\xbc\xa5\xea\x99\x24\x2e\xd4\xb5\x9f\x55\x74\x33\x92\xb6\xe6\x8a\x78\x33\xa9\x6f\xd6\x7e\x1e\x3a\xb6\xe4\x58\x57\xa8\xb3\x6f\xa9\xb1\x2e\x11\x45\x5c\xea\x35\xc9\xb9\x0d\xf5\x56\xaf\x27\xea\x7c\xa9\xe6\x06\x8f\x2d\x8c\x5a\x3f\xbb\xf1\x76\x74\xed\xe1\x5e\x85\x71\x5f\x68\x6c\x43\xfa\x5d\x3d\x6f\x64\xdb\xf1\xfb\xd3\x43\xf1\xff\xfb\x74\x28\xbe\x7c\xf7\xe6\xcd\x8b\xf7\x37\x87\x21\x9d\x9a\x58\xee\x75\x54\x96\x96\xe2\x4d\x83\xe6\xf0\x68\x66\x31\xc3\xb5\x39\xf3\x74\xf1\xe6\xa1\xbb\x99\xb4\xe8\xd4\x74\xf4\x16\xe2\x53\x8c\xda\xe0\x3e\xd9\xf1\xec\x64\xe9\x35\x93\xb6\xe3\x84\x46\x6f\x6c\xa3\x11\x6b\x4c\x11\x6b\x24\x2e\x53\xad\x06\x4f\x72\x7a\xaf\x99\x0e\xbb\x90\x47\x9c\xa3\xf3\x85\x34\x74\x8f\x31\x1a\xa9\x7b\x1b\x66\x75\x23\xcf\x8c\xde\x48\x94\x26\x75\xe5\x3b\xe2\xae\x93\x7a\xfd\xd6\x79\x9c\xd3\x68\x4f\xab\xd6\xba\xb4\xe4\x6c\x44\xee\x73\x78\x36\xe2\xd0\x19\x51\xcd\xaa\x4e\xd7\x6c\x24\xd1\x77\x1b\x8e\x93\x66\x52\x1b\xc7\x78\x6a\x6d\x0b\xce\x9c\x12\xd2\x88\x49\xa7\xd4\xcd\x3d\x63\x5f\x27\xd2\x5b\x5d\xca\xc1\x53\x95\xda\xc8\x98\xa6\xd6\x86\xc8\xf4\x88\x16\xa3\xef\xe1\xd4\xc2\xb8\x0d\xd1\x16\x34\x66\x3a\x37\x97\xea\xa8\x66\x33\xca\x49\x7d\x50\x13\xa7\x1d\x27\x5c\xdd\xea\xc6\x8d\xfb\x98\x19\xd4\x52\xe6\x30\x6a\x14\x33\x7a\x6f\x27\x1a\x97\x13\xf7\x71\xb6\x8c\xcb\x89\x72\x37\xe2\xbb\x13\x49\xd3\xb5\x83\xa5\x6b\xcb\x98\x4c\xd2\x58\xfa\xa4\x88\xa6\x34\xce\x9c\xb1\x73\x8e\x26\xd5\x61\x8e\xc6\x1e\x53\xbb\x34\x72\x99\x56\x3b\xa8\xcb\x74\xe5\x36\x6c\x8f\x5e\x03\xdc\x6a\x82\xeb\xd7\xe1\xb5\x45\x7d\xa6\x58\x63\xe5\x79\x2c\x8c\xa7\xd7\xd8\xff\xff\xd3\x35\xf6\xcd\xab\xf7\x45\x60\x6f\x2e\x32\xd5\x5a\x0a\xba\xd7\x91\x25\x9b\xf7\x1a\xed\x9a\xcd\xd1\x48\x86\x4d\x1a\xd8\x34\x3c\x39\xeb\x24\x62\x17\xc7\xd2\x88\xa6\xfd\xb8\xa4\x98\xb5\x61\xd3\xa4\x5e\x93\x3c\xad\x86\x8b\x86\x5e\x88\x7a\xec\xf8\xab\x9b\x34\xab\x75\xd6\x3b\x4d\x1d\xd1\xb2\x8f\xa9\x7d\xb4\xa1\xf5\xf2\x6c\x83\x62\x67\xf1\x3a\x36\x1a\x89\xdf\xa9\x67\xcb\x1e\xd3\xeb\x05\xbd\x4f\xd5\xbb\x7a\xe3\xa5\xde\xfd\x70\x4f\x8a\xa5\x15\x3b\x4e\x7a\x50\xa3\xb5\x24\x0c\xa3\x9e\x9e\x93\x39\x5a\xf2\x6a\x20\xbb\xee\xa2\x54\xc7\x56\x6b\xac\x7e\x57\x1a\x2d\xa3\x5e\xec\xeb\x41\xad\x85\x7d\x6d\x62\xc7\x5f\xcc\xd4\x70\x9d\x2d\xf0\x00\x09\xcb\x14\xc7\x9a\xa5\x35\x30\x92\x7d\xe7\xba\x59\xb2\x37\x66\xac\x62\x46\x2f\x48\x58\x27\xfa\x55\x8f\xaf\x2e\x1f\x03\xf3\x70\xef\x21\x4d\x74\xec\x1e\xda\xb4\x73\xf3\xec\x4d\x4d\x67\xc8\x68\xa6\x63\x0e\x8a\x3b\x27\x9d\x45\xba\x5c\x72\xcf\xec\x0d\xbc\xa5\x4b\xb4\xba\x40\x44\x8e\x3b\x89\x5c\x9b\x9a\x4d\xa2\xc1\xf5\xce\x0b\x47\xdf\x89\x6a\x3d\x53\x7d\x52\x2d\x22\x97\x7a\x20\x5a\xf4\x49\x5d\x46\xab\x17\x67\x3b\x31\xed\xc3\xbd\x8e\x6d\x50\xb6\x6a\x3e\xeb\x1e\x4f\xc2\x33\xd5\x4b\x8e\x7e\x11\x1d\x0f\xf7\x11\xbd\xfe\xd8\x71\x14\x69\x11\xd9\x28\x63\x8e\xbe\x58\xe0\x30\x6f\x43\xf0\x62\xb7\xbd\xb6\x8f\x63\xd2\x7b\xfd\x4a\x5d\x6b\xf8\xaa\xf9\xf0\x46\xe9\xb5\xd0\xec\xfa\xf2\x1d\x7f\xc8\xb0\x3b\x5c\x56\xa6\xb5\x45\x75\xc4\xc4\x1b\x4c\xd6\x50\x98\xf1\x3e\x86\xd6\x11\x94\xa8\x7e\x1f\xdd\x71\x63\xf5\x47\x99\x67\xf5\xef\x18\x86\x87\x7b\xb1\xda\x9a\xb9\x71\x51\xbd\x6e\xdb\x08\x2c\x54\xd9\xb2\x96\x26\x6b\x6c\xc7\x1d\x37\x18\xef\x8b\xaf\xbf\x79\xc4\x77\x5f\x7c\xfd\xcd\xab\xf7\x1f\x5e\xbc\xfd\xf2\xf6\xd6\xaa\x81\x4e\xda\x65\x28\x28\x4f\xb5\x30\x22\xa6\xd4\x9a\x76\x9d\x5c\x8b\xa3\x9b\x4c\xae\x01\x22\x8d\x1d\x27\xcc\xbd\x71\x6d\x3a\x1e\x34\xc5\x78\xed\x2c\x35\xad\xbd\x26\xd3\x40\x81\x23\x76\xaf\x4b\xb5\x0d\xa3\xe3\x92\xcd\x48\xad\xf5\x57\xc4\xaa\x9e\xea\x3c\x47\xd1\x4c\x4a\xda\xd7\x09\xa8\x4b\xd4\xf2\xee\x73\xd4\xa2\xe8\xdc\x67\x98\xb4\xd4\x9c\x3e\xfa\xdd\x18\xb6\x99\x73\x8b\x61\x5b\x56\x97\xa9\x66\x70\x34\xa9\xfe\xf4\xce\x4d\xa3\xe6\x90\x47\x73\xa3\x33\x91\x8c\xbd\xfe\x6b\x06\x8e\xd2\xb5\x69\xad\xf5\xde\xb5\x31\xc7\x56\xeb\xbc\xf5\x33\x75\xa5\x2d\xb9\xba\xcd\x7b\xd1\x51\x1f\x2d\x6c\x34\xd6\x69\x66\xed\xc4\x7d\x57\x97\x3a\x36\x29\x98\x34\xd9\xb4\x0d\x9d\xe4\xd1\xc0\x4e\xc4\x9a\x38\xef\x75\xd4\xe2\x21\x16\x98\x68\xae\x95\x9f\x35\x9e\xb5\x6f\x0c\xb4\x24\x86\x6e\xc7\xb8\x3f\xdc\xd7\xdb\x07\xed\xc5\x5c\x8a\x25\x16\xf7\xa7\x31\x6b\xa5\x33\xf3\xa6\x63\x14\xbb\xdc\x34\xc6\x5d\x90\x6c\xc5\x3c\x7c\xd0\x5e\x6c\xd3\x8b\x42\x74\x69\x56\x94\xc3\x56\xf3\x75\x2c\x2a\x52\xd3\xb6\x78\x66\x75\x25\xa7\x16\xcd\xeb\x3c\x57\x6b\x0f\xf7\xf5\x0d\x44\x9a\xbb\x8c\x1a\xe1\xb0\x06\x92\xd1\xbb\x4e\xeb\xdc\x86\xf3\xe6\x52\x1c\x82\x76\xaf\x09\xeb\xd5\xdd\x22\x18\x3d\x78\x46\xd1\xd6\x9a\x30\x9c\x30\x8f\x16\xb5\x61\xd8\x69\x46\xe1\x1a\xa1\x9c\x6e\x45\x78\xbc\xaf\xa5\x20\x61\xbb\x09\x48\x91\xb5\x6a\x80\xa4\xa8\x14\x7e\xe9\xc5\x61\xea\x3d\x62\xf3\xda\xad\x5b\x0b\xfc\x9b\x77\x1f\x9e\x42\x96\x1f\x5e\xbf\xfd\xea\xcd\xd3\xe8\x1a\x00\xb9\xa6\x55\xd2\x36\xa7\xbe\x60\xa2\x91\x6f\xc6\x54\xab\xd6\x2f\x80\x88\xce\xe3\x52\xf7\x3c\xdd\xf2\x7f\xf7\x88\x5f\xbd\x78\xff\xea\xed\x9b\x57\xbf\xba\xcd\xb1\x64\x50\xb3\x31\xf6\x3a\xd6\x28\x01\x04\x32\x4f\xa3\xda\xc9\x85\x87\xb0\x55\x0a\x67\x08\xb8\x2b\x6f\x03\x78\xdb\x68\x8f\xda\x72\x9a\xbd\x01\xc8\x4a\xf6\x69\x45\xbc\xc9\x75\x1a\x7b\x1b\x49\xd3\x3a\x35\x4b\xba\x58\xd0\x5e\xe7\x35\x79\xc6\x45\xa2\x78\x5a\x7a\x3b\xd5\x4c\xf4\x76\x62\xce\x59\xef\x3d\x49\xca\x56\x2d\x9d\xb4\x88\xa2\x78\x3b\x69\x2f\xd2\xa7\xed\x24\x35\xe7\x44\x77\x27\xa7\x59\xdd\x64\x19\x13\xdd\x0f\xb9\xd8\x18\x4f\x0f\xc8\x7f\xff\xc4\x80\xbc\x87\xf8\x75\x6b\x44\x06\x4b\xbd\x72\xaf\x63\xcd\x77\x8c\x6c\x5c\x18\x2e\xb5\x9d\x6a\x9d\x18\x55\x5f\x64\x4a\x10\xba\xb9\x89\xae\x8e\xef\xca\xd1\x4e\x22\xdc\xb4\xee\x65\xa1\xe9\xbd\x7e\x99\x1e\xa3\x71\xd0\x8c\xda\x05\x41\x17\xab\x35\xd9\xa5\x85\x5a\xab\x6b\x23\x79\x7a\xb7\x05\xe8\xb4\xf8\x44\x11\x9e\x7a\x2f\x99\xd9\x56\x2d\xd5\xd0\xef\xea\x45\x56\x83\x9b\x15\x07\xac\x59\xf1\x2c\x98\x58\x04\x7a\x0c\x4c\x1c\xba\x3f\xc6\xc5\xe2\x06\x6c\xfe\x1f\x1e\x51\xde\x0f\xdf\xbe\x7a\xff\xfa\xc3\x5f\xdf\x96\x78\xa2\xb7\x61\xb2\x15\xf9\x49\xd7\xad\x28\x2a\xf5\x88\xad\x40\x6d\x8a\x6d\x36\x6a\x77\x28\x9f\xa3\xc7\xe6\x23\x5b\x0a\x6f\xd4\x6b\x95\xf4\x18\x5b\xd1\x47\x3c\x58\x5b\x0e\x82\x43\xcd\x19\x8f\x6d\x0c\x69\x6a\xb1\x15\x07\x8e\xcc\x4d\x8b\xe2\x79\xdf\xa4\x0f\x5c\x3f\x1a\x7e\xfa\x2b\xfe\xc7\x47\xf3\xfa\xe6\xbb\x0f\xb7\xb7\x55\xd4\x48\x97\x68\x42\x71\x71\x96\xb3\x87\x5c\x48\xfd\x6c\x26\xf8\x9b\x28\x2f\x75\x43\xfd\x4d\xdc\x1d\x37\x84\xde\x10\xc1\xfe\xa7\x4f\x9b\x7e\xf9\xee\xeb\xaf\x5f\xdc\x6e\xbb\x17\xba\xdc\xeb\x70\xca\x66\xc9\xed\x54\x6c\xc7\xad\x9d\x48\xfb\xac\xbd\x7d\xaa\xe9\x53\xaf\x93\xb4\xad\xe8\xdc\x89\x35\x76\x0d\x69\x27\x62\x70\x89\x26\x7c\xa1\x31\xce\xde\xe9\x22\x37\xb6\xfe\xe9\xd3\x6e\xfd\xfa\xf7\xdf\xfc\xfa\xd5\x1f\x4a\x85\xd2\x0f\x71\x28\x7a\xf3\x4e\x67\xe6\xbc\x44\xe7\x73\x46\xbf\x78\xa7\xa7\x5f\xfd\x47\x7f\x80\x82\x5f\xbf\xbb\xcd\xa9\x6d\xc1\xee\x3a\x50\xa1\x0b\x87\xf0\x3e\xbd\x40\xf1\xf0\xdd\x93\xeb\xd8\x82\xc0\x7c\x66\x68\x00\xa5\x6b\x34\x95\x16\xb5\xba\xd6\xcd\x27\xe2\xbd\x08\xca\x89\xb8\xd5\x5a\x28\x71\x1e\xaf\x7e\xba\x93\x9f\x3f\xd2\x63\xbc\x79\xf1\xe1\xd7\xb7\xc9\x5e\x52\xbd\xd7\xce\x1c\xb9\x8d\x71\x48\xb2\x99\xb9\x5d\xaf\x3c\xdd\x48\xff\xb4\x91\xff\xfc\xea\xfd\x13\xaa\xa0\xa3\x0d\x70\x2b\x0b\xdf\x17\xdb\x2a\x3a\x5a\x78\x4d\xd4\x67\x1e\x32\x48\x6d\x56\x1e\xd3\x69\x80\x71\x5b\xc9\x43\x5c\x44\x58\x1b\xc7\xe4\xda\xf6\xe6\x10\x1a\x44\x6d\x92\x8d\x7a\xdf\x65\x44\xee\x54\x6c\xab\x77\xc2\x50\x12\xf5\x9c\x0c\x04\x5d\xa8\x1e\x0a\x04\xce\xe9\xe4\x0b\xdc\x44\x09\x0a\x05\x6e\x46\xb1\x12\x95\x3e\xb3\x84\x21\xe9\x40\x84\x45\xb2\x09\x18\xd2\xda\x88\xbc\x58\xf8\xc3\x3d\xc7\xb8\x33\x1b\x3b\xc7\x68\x46\xd1\x78\x40\x14\xde\x52\x06\xd8\xf0\x9e\x5c\xb2\x8e\x64\x1b\x59\x82\x68\xea\x1c\xd5\x0a\x8f\x9c\xa1\xb4\xa4\x4d\x74\x00\x2c\x95\x65\xb1\x54\x05\xb7\x85\x38\x0d\x11\xa9\xf0\x3e\x98\x75\x4e\x06\x1d\xcc\x8b\xd9\x78\xb8\xcf\x62\xff\x99\x7b\x1d\x53\xb8\xa5\xf1\x22\x3e\x25\xf2\x45\xdf\x85\xa4\x15\x9d\x28\xd8\xc0\x56\x68\x45\x5b\xf1\x1d\xc5\xdb\x04\x23\x3a\x68\x0f\x2a\x0c\xde\x20\x19\x73\x9f\x23\xb2\xa4\x89\x99\x12\x4d\x62\xcc\x7a\xbb\xd9\xb8\x8c\xbc\xc1\xc8\xe9\xd3\xe9\x7e\xf7\xf6\x36\xef\x0e\xe5\xd6\xcf\xce\x7c\x21\xe9\xb6\x71\xad\x6e\xaa\x6d\xcb\x6a\x5b\xb0\xad\x15\x16\xca\x97\x1b\x64\x85\x3f\x6d\xeb\xdb\xdf\x3e\xb7\xb2\x54\x0a\x0a\x4a\xbf\x24\x6f\xc5\x63\x5c\x64\x77\xef\xcd\x53\x80\x60\x43\xc7\x8c\x41\x6d\xd4\x22\x13\x8c\xdd\x1c\xd6\xd7\xd4\xe1\x84\x4a\xba\x2f\xbc\x51\x62\x43\x78\xc9\x63\xd9\xa7\x63\x11\x19\x4f\xab\xdd\x2a\xa1\x8b\xe5\x08\x04\xaa\x3a\xd1\x31\xa5\xd7\xcd\x11\x93\x6b\x87\x53\xc9\x6c\x80\x64\xe2\xe7\x1c\x3b\x56\x03\x24\xb6\x02\x10\xdd\x27\x03\xbe\xa8\x4f\xf1\x7e\x47\xaa\xb4\xde\xad\xe1\xbb\x2b\x64\xdf\xa2\x05\x85\x67\x4b\x42\xb3\x5a\x28\x1e\x33\x0b\x72\xb1\xd2\xd2\x88\xf4\x18\xfb\x3a\xe9\xde\x52\x6b\x4d\x0c\xcc\xe6\xe8\x36\x63\x44\xf3\x28\xc8\xad\xcd\xbc\x6f\x4b\x12\xa0\x42\xca\x72\x6b\xb0\xe5\xd1\x60\xff\xfa\xfd\xab\xdb\x53\x5b\xa2\x64\xa4\x9c\x8d\x65\xb7\x1a\xe0\xd4\xe6\xc0\xa7\x32\xc3\xa5\x0d\x1f\x73\x48\xb4\xac\xc1\x86\x96\x21\x7c\xc7\x09\x15\x6d\x03\x1d\xec\xc5\xa1\xa1\x0d\x70\x74\x94\xc4\x0a\xb0\x8f\x63\x90\xc1\x42\x6b\x90\x05\x5b\x47\xa6\x60\xf8\x92\x27\xe3\x3d\x39\x26\xaf\x9d\xa7\x67\xa2\xb1\x53\x91\x49\x2a\x54\x5b\x03\xc6\x22\x93\x15\x4a\x27\x9a\x32\xa4\xc6\xd2\xea\xed\x77\x6b\x98\x4b\x2a\xc3\x30\x17\xde\x57\x2d\xa8\x85\xfd\xd8\xe7\x21\xb0\xc9\xcc\x7a\xaa\x07\xef\xeb\xa4\xe4\x78\x77\xc8\xfc\x49\x06\x41\xab\xb6\xf7\xe8\x34\x43\x7a\x0b\x75\xc8\xb8\xd1\x47\x4d\x45\x73\x2a\xd1\x93\x7a\x93\xb4\x1d\x27\x25\xc6\x67\x94\x6c\xd0\xe7\x18\xd4\xb2\x43\x0c\xce\x69\x4b\x38\xc1\xba\x5a\x42\x8a\xb4\xfa\x38\xaf\x5b\x48\xea\x89\x9a\xf4\x7a\xd3\x99\xc9\xf7\x5a\x5b\x52\x64\x52\xad\xb1\xdb\x94\x5a\x2a\x85\x92\x4a\x00\xe9\x82\xf7\x95\x58\x22\x5a\x3b\xdd\x53\xef\xa8\x3a\x99\x75\x57\x5f\xe2\x89\xc5\x1c\x49\x4d\x4a\x72\x4b\x6a\x1a\x54\x72\x43\x33\x8e\x19\x83\x9b\x73\xad\xfb\x02\x62\x32\x8b\x50\x79\xd2\x59\x3b\x5f\x22\x6f\x60\x0f\xfd\x74\xf1\xfc\xea\xdd\x77\xb7\xd5\x8e\x63\x8c\xa6\x9e\x85\x3d\xfc\x22\x3e\xce\x63\x8c\x4b\x3f\x87\xe7\xfa\x4b\x2f\x2a\xbe\x85\x1d\x1c\xa8\xae\xaa\xe7\xc3\x7d\x09\x2b\xf5\x5c\xdd\x08\x82\x12\x84\x65\x54\xf8\x0b\x57\x9e\xee\x9a\x3d\xea\xda\xeb\xdf\xdc\x5e\xd6\xec\x98\xc8\x0d\x4b\x6d\x29\x72\xad\x1a\x83\xe6\x57\x36\x4c\x8c\xc9\xae\x12\x6d\x64\x6f\xd6\xa3\x25\xd1\x74\x8b\x96\x22\x7b\x98\xd7\xb1\x0d\x29\xa8\x9f\x33\x83\xdb\xe8\x3c\xa9\x5b\x09\xb4\x25\xd9\xe2\xdb\x75\xc7\x89\xd4\x92\x2b\x50\xc8\x61\x6b\xb5\x15\x58\x2d\x71\x6c\x4c\x3f\x04\x57\x73\x5d\xfc\x6f\x44\x8b\xa5\x71\xf5\xc9\xe6\x8d\x49\x26\xf7\xac\xc5\x72\x16\xb6\x5d\x44\xef\x84\xb8\x89\xf7\xc6\x56\x8b\xa1\xa6\x9b\xa6\x61\x51\xf0\x5c\xbb\x13\x7c\xaf\xc8\x7f\x09\x86\xd4\xe7\x28\xe4\x91\x7d\xa6\x66\x13\xa2\x99\x5e\xfd\xe3\xbd\x8e\x26\xa3\xa5\x7a\xc9\xaa\x73\x94\x7c\x4b\x39\xa3\xb6\x4c\xed\xd7\xfa\x42\xd6\xdd\xb2\xd7\x71\xe9\x49\x68\x4c\xa8\x86\x33\x21\x8c\x84\x17\x4f\xb3\x7a\x6e\x3b\x06\xf6\xe9\x19\xf2\x47\x30\xe5\xf5\xef\x6e\xaf\x9d\x1a\x32\xf5\xb8\x90\x58\x2d\x15\xdb\x3d\x41\x9e\xa3\x19\x94\x13\x3d\xa7\x82\x10\x0c\x9a\x42\xd6\x32\x75\x72\x70\x8b\x90\x5d\x7a\x2f\x02\x05\x0e\x39\x34\xa6\xb2\xb6\xec\x36\xad\x8e\xca\xd3\x45\x8a\x60\xed\x51\x1f\x6e\xde\x46\x09\x7e\xe4\x33\x8b\x64\xf5\x9c\xd4\xd9\x9b\x17\xfa\xe8\x56\x18\x34\x76\x9c\x94\xc0\x45\xbd\x24\xb8\xe4\x99\x5a\x64\x44\xe6\xe8\xa3\x95\xa8\x08\x30\x5b\x30\x26\xee\x30\x8d\x5c\xb3\x83\x1e\x51\xc1\x97\x41\x4d\x8a\x50\x40\x4d\xac\x17\x57\xd9\xeb\xbc\x90\x1f\xb9\x95\x6c\x30\xa1\x5c\xeb\x4a\x53\x3a\xf4\xd3\x7d\x29\x04\xa0\xd5\x86\x25\xa2\x5a\x2b\x4a\xa7\x1e\xe7\xe1\xf2\x70\xef\xa4\x58\xa6\x66\x05\x23\xa5\x59\xaf\x25\x59\x88\x00\x8a\x97\x29\xcc\x45\xa6\x26\x03\xf0\xc6\xc5\x88\xf7\x3a\x2f\x49\xb4\xb0\x87\x48\x4e\xf1\xd1\x8a\x42\x6b\x80\x69\xe3\x43\x06\xef\x9e\x85\x98\x5a\x40\x87\x69\xe0\x4d\x75\x57\xd6\xa8\x72\xb1\x28\x2d\x6c\xbe\xd7\xd1\x74\xdc\x25\x29\x08\x61\xdd\x17\x12\x50\x05\x0d\xa6\x79\xf4\xf0\xe9\xe5\x10\x8f\x96\xc3\xab\xdf\x3c\x01\xda\xbf\xe7\xfb\x03\x0a\xac\xd8\xd4\x7b\xeb\x67\x11\xdb\x12\x1c\x53\xf3\x4c\x6c\x97\x63\x1b\x8f\x02\x21\x23\x9e\x6e\x71\x3c\xb2\xd9\x3d\x2b\x0c\x53\x2f\x64\xd0\x07\xed\xc7\x19\xf3\x42\xb1\x59\xcc\xa3\xc6\x27\x7c\x66\x0d\x57\x27\xa0\xd9\xd0\xd8\x4b\xb0\x0b\x2e\xea\xa0\xcd\xb3\x28\x42\x51\x55\xaa\x93\xc1\xcd\x6a\x71\x51\x97\x26\xc3\x77\x9c\x40\x3f\x57\xaf\x67\x6c\x4a\x6f\x43\xe7\xa0\xd1\x62\xba\x1e\x2b\x4a\x17\xb3\x50\x97\xe6\x58\xea\x43\x26\x17\x4a\x26\x82\x5a\x18\xef\x8a\x68\x6a\x7c\x47\x19\x68\x84\xcd\x9a\x13\x41\x8c\xf6\x24\x58\x63\xaa\x7b\x10\xea\x7d\x2c\x0d\x62\xef\xb3\xa0\xed\x08\x9b\x5c\x38\x29\x3a\xde\x8b\x4f\xc6\x09\x85\x36\x86\xba\x1a\x5a\x2a\x5f\x5a\x6a\x2d\x30\x52\x9c\xd4\x25\x16\x96\x81\xd2\xa9\x98\xec\x80\x02\x51\x73\x26\x60\x70\x14\xc6\x16\x5e\xcf\x7f\x1c\xce\x87\xfb\x22\x81\x32\x0c\xfc\x56\x8b\xa4\x16\x16\xad\x55\x36\x7a\xf3\x02\x16\xb5\x5e\x43\x67\x49\xc7\x9e\xbe\x97\x04\xe4\xe9\xcd\xfa\x68\x1e\x36\x25\x13\xf7\x09\xdb\x5d\x3d\x57\x0c\xb7\xde\x87\x23\x51\x13\xd6\xc6\xa6\x53\x8a\x13\x5a\xce\x22\xdf\xc5\x19\x6b\x48\x81\x8c\xfb\x42\xc6\x8c\x5f\x8b\x45\xd7\x5d\xd5\x8b\x7a\xea\xe8\xdd\xc3\x7d\x42\x93\x3f\x78\xc7\x49\xe1\x99\x9a\x6d\xe2\x7a\xc6\x96\xd6\x77\x62\x83\x14\x68\xc1\x60\x14\x9e\xb1\x58\xe8\xb1\x19\xe5\x82\x3a\x5a\x12\x40\x81\x1f\x81\x95\xac\xeb\x14\x68\xfa\x06\xef\xeb\x84\xac\xd5\xa5\x74\x01\xa9\x1a\xa1\x10\x8e\x8b\xce\x2e\x05\xc1\xd8\xa3\x17\x2d\x1f\x2d\xcc\xef\x06\x05\x3a\x30\x42\xb0\xfe\xea\xb9\x6b\x5f\x9f\x5e\xf7\xf9\xc8\x72\xfa\xfa\x19\x30\x2f\xa3\x96\xc2\x6e\x62\x2d\xc7\x32\x11\xa8\xce\xd1\xb3\x71\xad\xfb\x0e\x71\x6e\x02\xf9\x14\x32\x25\x18\xc0\x6a\x2f\x34\xcb\x31\x23\x05\x3a\xf4\x92\x74\x35\x79\x5a\x08\x08\xa8\x7a\xd6\xb1\x80\x08\xec\x64\xec\xd4\x5c\x68\x52\x11\x99\x11\x93\x4a\xd8\x71\xdb\xeb\x48\xbd\x88\x7f\xb1\x49\x32\x9d\x0c\x10\x4e\x31\x61\x5f\x56\xe1\x69\x69\xd7\x75\x47\xd7\x75\x57\x70\xaf\xe8\x12\x30\x5d\xda\xb1\xee\x08\xc4\xdc\x4a\xb8\xb2\x4b\x94\xe8\x08\x06\x5d\xa4\xae\xab\x35\x1b\xbc\xac\x01\x92\x63\x26\x65\x63\x71\x7c\x01\xc1\x50\x54\x9b\x72\xd6\x70\x9c\x88\xce\x62\xb6\x49\xb1\xfd\x38\xcb\xe0\x87\x7b\x1b\xa3\xd9\xe8\xbb\x2b\x8e\x0d\xea\xad\xcc\x39\xba\x35\xb7\x62\xa4\xde\x42\x06\xc0\xfc\x50\xbb\x64\xf7\x1d\xc0\xbe\x77\x69\x49\xb5\x20\xc7\x58\xfa\x75\xb4\x0a\x08\x2b\xbe\xd4\x88\x12\xb2\xaf\xe5\x53\xc3\xb7\xe4\xc6\x3c\x96\x4f\x71\x8a\x1a\x80\x12\xea\x38\xe4\x2e\xa3\xef\x1c\xd2\x46\x16\x51\x2f\xb2\x3b\xa6\xc0\x80\x2b\x53\x8d\x61\xdb\x39\x3a\xfb\xf4\xe2\xf8\xe7\x8f\x75\x3a\x6f\xde\xdd\x26\xc3\x96\x0e\x05\x47\x42\x0e\x6a\x5e\x4b\xdb\x7c\x7a\xed\xb4\xe1\x7b\xd4\x32\xac\x2f\x0f\x81\x82\x63\xf4\x92\xc3\xf6\x3a\xa8\xb4\xa8\xad\xb1\x6e\x3e\x11\x03\x9b\x9f\x6a\xfd\x94\x38\x6d\x73\xbd\xfa\x01\x4d\xa4\xd3\x6a\xa3\x46\x0b\x8d\x74\xe1\xd5\x4a\x77\x5e\xcd\x14\xa0\x42\x3b\x1d\x6c\x98\xf0\x10\x8e\x94\x68\x0a\x9a\xc5\x1c\x77\xc3\x15\x6d\x0d\x98\xb9\x75\x29\x67\x57\x23\x4f\x8f\xc8\x1f\x3f\x66\x4c\x5f\xbf\xfe\xb1\x51\xe1\xa3\xcb\x7c\x74\x99\xf2\xda\x65\xbd\x76\x99\x8f\x2e\x7b\xae\x2e\x47\x89\x09\x4e\x3b\x8e\xe8\x72\x3f\xba\xac\x0d\x5d\x2e\x34\x82\x2e\xf7\xa3\xcb\x68\xe4\xe1\x3e\x54\x9b\xd8\x5e\x87\x53\xb6\x02\x7a\x27\x93\x59\xf2\x08\xf4\x6a\x0e\x24\x59\x98\xa4\xeb\xd2\xab\x19\x8f\xa5\x57\xab\x35\x7d\x22\xe6\xbb\x3a\x39\xf4\x6a\xa1\x7a\x53\xaf\xf6\xcf\xde\x3c\x76\x12\x79\xf3\xea\xc3\x6d\x65\x23\xec\x27\xe6\x1b\x98\x9e\x98\x5f\x58\xfa\x46\x5e\xc8\x32\x2f\xd1\x6d\x5d\xa0\x3e\xe4\x92\x36\xb6\xe3\xf6\xa7\x9b\xfe\xe2\x11\xab\xfe\x9b\xef\x5e\xdc\xf6\x4c\x01\x6f\x19\xc4\x67\x0a\xbd\x24\x8d\x73\xfd\x70\x19\xc4\x0f\xeb\x92\x96\x48\x1c\x7a\xb1\x1e\xeb\x92\xde\x52\xf7\xfd\xb3\xaf\x1e\x7f\xf1\x57\xef\x5f\xbd\xf8\xf6\xd5\x33\xce\x15\x34\x9a\x7b\xdf\x8a\x60\xa5\xf3\x85\xfa\xa8\x0f\xb5\x68\xd1\xe3\xe2\x44\xb8\xc2\xc2\x97\x22\x21\xc7\xdd\x4f\x37\xfe\x2f\x1e\x9b\x4d\x5e\x7d\xf8\xf6\xf5\x73\xcb\x4e\x7b\xd3\xae\xbb\x29\xb5\x92\x29\x0d\xe8\x52\xa6\x81\x18\xe7\xac\xc5\x5e\x92\x5d\x14\xd7\xb7\xbe\xc3\x18\x5b\xf2\x45\x58\x1b\x6c\x73\xc0\x84\xed\x73\x8c\x68\x99\x31\xb3\x43\x58\xe0\x7d\x9d\x94\x74\x39\xac\xa0\xa8\xcc\xb1\x64\xf2\x98\x01\xe5\x88\xd1\x74\xbe\x7a\x5a\xc0\x6f\x23\xfa\x95\xe1\xc9\x12\x49\xa4\xf8\x1c\x74\x2b\x6c\x53\x60\xac\x26\x3f\x33\xf7\x9d\x59\xee\x4a\xac\x6f\x30\x73\xb3\xeb\x94\x05\x17\xc6\x2c\x36\x41\x6a\x7d\xbd\x7d\xd1\xf8\xab\x9e\x24\x65\x5d\x02\xf1\x94\xd0\x99\x79\x58\xd2\xa9\x43\x21\xd7\x65\x5f\x67\x1d\x5c\xb5\xe8\x6c\xdd\xa5\xde\x06\xc4\x61\x6b\xe1\x7d\x46\x50\xf3\x60\x80\x7f\x57\x6e\x41\x01\x30\xe1\x43\x4a\xba\x81\x38\xac\x43\xa6\x3b\x06\xf7\x6c\xda\x1f\xee\x0d\xa6\xb5\xdd\x40\xb7\x6b\xa0\x3b\x2c\xd4\xde\x79\x39\x69\x29\x1d\x4e\x5a\x76\x38\x69\xe5\x72\xd2\xca\xe5\xa4\x65\x45\xdf\xbc\xf3\x1d\x9c\xb4\x04\x4e\x5a\xba\xb4\xba\x78\xf1\xd3\xcb\xe1\x7f\x7e\x64\xad\x78\x06\xaa\x96\x0c\x11\x61\x3b\x26\x2d\x60\x43\xb5\x68\x1e\x31\xa1\xa7\xb4\x42\x62\xd5\x71\xf5\x83\x21\xca\xe0\x99\xd9\x9b\x30\xcf\xec\xd4\x38\x13\x6a\x1b\xb8\x4f\x88\x37\x21\x9e\x51\xdd\xd7\x31\x4b\x42\x57\x68\x3f\x96\x4c\x5b\x53\xa2\x42\xad\xc8\x71\xfd\xee\xd6\x9b\x68\x82\x40\x49\x2d\x3f\x76\xbc\x4f\xc7\xb2\x73\xaa\x19\x84\x1f\xed\x5a\xa2\xf0\xac\xb5\x52\x7c\x5c\xac\xdf\x19\xdc\x70\xb8\x79\x2f\xb0\xaa\xcd\x87\xed\x62\x85\x09\xb4\x49\x14\xc6\xa6\xa9\x0a\x03\x33\x4f\x2b\x91\x99\x58\xe1\x04\x47\x54\x54\x95\x06\x4e\x1a\x96\x65\xc1\x85\x48\x2a\x39\x46\xe7\x58\x96\x64\x5b\x4e\x2f\x3d\x78\x3b\xf4\x53\xb4\x95\xbc\x67\x1e\xfb\x20\x6d\x56\x62\x3c\x15\x6a\xee\x78\x44\x95\xe6\xf0\x03\x12\x40\xec\x2e\xfc\x57\xc2\x5f\x51\xdf\x1a\x88\x3e\xa9\x13\xb7\x82\xb9\x0b\x45\x70\x5f\xe0\xd6\x97\xc7\xd2\x38\x80\x7f\x49\x02\x35\x25\x7d\x8c\x96\x30\x6a\xfa\x61\x28\xcf\xa4\x3b\xe2\x9e\x73\x78\xad\x7b\xe9\xf0\x8b\x58\x5c\x7f\x6d\xa6\x02\x4d\xf0\x0e\x89\x29\x40\xe2\xf5\xc6\xcc\x96\xe1\x93\xac\x37\x1f\xba\x53\xb5\xed\xdc\x8a\xc0\xc2\xad\x46\xa9\xb1\xe5\x94\x91\x8d\x78\x4c\x2f\xe9\x2f\x77\x2f\x2c\x90\xcd\x47\x94\x6c\x51\x78\xb5\x50\x4a\x8d\x1b\x1f\x66\x7d\xe3\x2d\x8b\x42\x2c\xe3\x3e\xbc\x9b\xb2\x95\x10\x57\xc8\x8b\xe0\xbb\x71\xb2\x59\x2c\xed\x44\xb4\x5b\xc7\xb1\xe9\xe2\xda\x5c\xf0\x2b\x26\x05\x35\xca\x31\x21\xdc\x14\x13\xca\x66\x5d\xa7\x33\xba\x5a\xab\x73\xc4\xdd\xb0\x22\x28\x93\x6a\xb7\x74\xb8\xd4\x24\x4c\xd3\x53\xe0\xcb\x51\x94\xa3\x38\xbc\x8a\x4d\x8f\x12\x29\x5c\x77\x78\x17\xa8\xeb\x1a\x42\x05\xa0\x2b\x78\xc8\xde\x27\x91\x1e\x22\xf3\x75\x03\x2c\x77\xba\x5a\x44\x2a\xbd\xb9\x8d\x86\x23\xfb\x54\x91\x1a\xad\xa9\xaa\x4d\x33\x67\xbd\x52\xd5\xa1\x35\xd7\x3e\x66\xd1\x50\xc9\x82\xef\x5e\xc7\xe6\x05\x74\xa1\xf2\x19\x25\xa3\xcc\x02\xe0\xc6\x32\x43\x6a\xa2\xfb\x06\x8d\x66\xd7\xbe\x07\x8c\x7d\xa6\x2d\xe0\x3a\xe4\x45\x49\xa0\xad\x94\xdd\x99\xef\xea\xa4\x19\xd4\xb2\x92\xb0\x09\xa7\x75\xf8\x06\x0d\xf4\x0a\xbd\x7d\x7a\xff\xff\xe4\xd3\xfd\xff\x93\xdb\x2c\xa8\xfa\xda\xfd\x2c\x46\x1b\x33\xc3\x53\x82\x36\x8b\x43\xf1\xee\x43\x36\x22\x83\xda\xbc\x8b\x6c\xc7\xed\x0f\xf7\x32\x4a\xee\x92\xf3\x08\xda\x40\x70\x39\x72\x3b\x7e\x7c\xba\x4b\xff\xf2\xd3\x2e\xfd\xcb\xdb\x14\x29\xb5\xf5\x25\x93\x5b\x16\x25\xec\xf0\x2c\x69\xe1\x87\x26\xa3\x04\x07\x12\xaf\x1d\x43\x90\x30\xa1\x6d\x59\x7e\x0e\xfb\x71\x46\x00\x77\x0e\x0d\x7e\xd6\xe2\x29\x81\xbb\x0f\xe8\x68\x06\x49\x8b\x02\x7c\xc5\x1a\xd4\xe1\x13\x18\x54\xc0\x9f\x4b\x22\xc9\xb5\x01\x4d\xac\x08\x1f\xfc\x3d\x77\x50\x40\xc1\x4b\xe1\x71\x34\x96\x82\x9d\xfa\x1c\x50\xea\x4c\x37\xbe\xeb\x67\x4a\x7d\xb8\xaf\x5d\x17\xbd\x5f\xa8\xeb\xd9\xcd\x96\xa8\xd1\x6b\x19\x17\x1f\x74\xc0\x7b\x1a\x25\x70\x8c\xc6\x83\xd0\x3d\xed\x63\xc7\x11\x1e\x63\xbd\x99\xf4\x39\xb2\x96\x1f\x1d\x8a\xfa\x01\x70\x16\xbd\x9f\x85\x8e\x46\x46\x97\xb3\xf7\xd8\xbd\xd0\x5f\x57\xe8\xa9\x07\x13\x5c\x0e\x46\x14\x71\x2e\xf9\x38\xe0\xb2\xb7\x6c\x01\x02\x95\x0c\x38\xf7\x52\xae\x0f\x4c\xdd\xf0\x09\x5e\x29\xa2\x4b\x42\x12\xa3\x6a\xe6\x32\x6e\x39\x91\xfe\xd9\xa7\x93\xf9\x67\xcf\xc0\xab\xa2\xe2\xca\x45\xcb\xa2\x15\x99\xa6\x6e\xbd\xd5\x16\xcc\x12\x60\x68\xa9\xc1\x8a\xc7\x71\x5f\x4a\x0b\x91\x1f\x2a\x2d\x64\xb4\xc8\xc9\x2a\x18\x33\x28\x2d\x8a\x68\x4a\x2e\x86\xc4\xd6\x9c\xf9\x32\x44\x76\x62\x6f\x45\x76\x49\x46\xcb\xe1\xcb\xef\xad\xc8\x39\x1e\x66\x1f\x53\x96\xa0\xed\x53\x6b\xe3\x41\x0f\x71\x40\x84\x1f\xea\x21\x20\xb5\xd2\x4c\xd3\x3b\x68\xd0\xa8\xc3\x8f\x10\x6e\x62\x59\x00\x9c\xe8\x9c\xa3\x43\xff\x49\x7d\x78\x4b\x18\x74\xac\x48\x22\x66\xb8\xc8\x1f\x7c\x4a\xd7\x47\x2d\xd1\x5e\xaf\xa6\x0a\xa8\x20\xad\x2f\x0d\x43\x0d\xbd\xc0\x27\x28\x65\x32\xe8\x42\x7d\xad\x29\x26\x8e\xe1\x42\x6a\x17\x67\xde\x19\x24\x5b\x1a\x43\x59\xd7\x71\xb3\x44\xcc\xe5\xc5\xa9\x53\x4a\xf8\x8b\x3e\xf1\xfe\xbe\x5a\x1e\xb4\x47\x87\x82\x3f\x96\x02\x65\x8e\xe0\x46\xc3\x26\xd8\x52\xef\x33\x47\xb1\x2d\x3e\xd7\x97\x3d\x3d\xd3\x3f\xfd\x74\xa6\x7f\x7a\x7b\xa6\x23\x3e\x6e\x5b\xce\xdd\x17\x1c\xd3\xe5\x9a\x57\xbc\x1e\xd6\xdb\xe2\x32\xf0\x6f\xa5\x6e\x3c\x89\xb8\x38\x4c\x5e\xdc\x7c\x27\xe2\xa2\x93\x0c\x4d\x4f\xe1\xa7\xf5\x44\x3a\xbc\xe9\xcc\xa6\x71\x16\x1d\x8a\x78\xb8\x5f\xee\x8e\xa6\x17\xea\xb4\x9a\x5b\xae\x93\x2d\x0a\xbf\x69\xce\x31\x18\xae\x23\x19\xd4\x14\x2a\xa4\x12\xad\xcc\x2f\xa3\xd7\x5a\xec\x0c\xa6\x90\x51\x54\xb6\xaf\xdb\x89\x8a\xc9\xc1\x09\xb9\x3b\x1a\xab\x16\xce\x9c\x37\x34\x82\x3f\xfb\x74\x64\x7e\xf6\x8c\x0f\x35\x17\xe0\x39\x0b\x2f\xa2\x40\xdd\xfb\xa5\x9f\xb9\xd3\x55\xf3\x68\x7e\x59\x7b\x8e\x7b\x75\xf0\x5c\xc2\x80\xe7\x0d\xdf\x9c\x7f\xf5\x69\xbb\xff\xea\x76\xbb\x51\xa0\xa8\x9f\x45\xd0\x1c\xf5\x6b\x73\x41\x47\x73\xd2\x2f\x31\xec\x9c\xa1\x17\xbf\x25\xe3\xff\xf9\xa7\xcd\xfd\xf9\x73\x5b\xbd\x96\x60\x21\x69\xa8\xb8\x78\x79\xeb\x0d\x83\x05\x81\x6d\x96\xf8\x7a\x4a\xe8\xa5\xb0\xd1\x8d\xdb\x89\x72\xb9\x8a\xc3\xa1\x7a\xf4\xc9\x30\x6d\xe4\xb1\xd1\x75\x92\x14\x9e\xd1\x49\x05\xb5\x85\x2e\x43\x0a\xa9\x16\x2a\x22\xd8\x4a\x73\x8c\x49\x01\x42\xe2\x80\x31\xc4\x9e\xa0\x1a\x54\xbb\xa3\x58\xf5\xb1\xd1\xf9\xd8\xe8\x94\xd7\x8d\x4e\xcb\xe0\x97\xea\x77\xf0\x57\xa3\x0e\x85\x25\x1c\x3e\x13\xe8\xc0\xcf\x19\xb1\x67\x31\x1e\x22\x6f\x8b\x7e\x86\xc3\xe7\xaa\x38\xde\x0c\x28\x58\xd4\xa7\x2f\x53\x3d\xc1\x01\xbe\x4e\x9a\xe6\xd5\xf0\x9b\xa0\xb1\x36\xa5\x68\x0c\x36\x7a\x2c\x75\xe6\x64\x2d\x0a\x9d\x93\x25\xda\x90\xb8\xb8\xd0\xce\x32\xe0\xb7\x51\x23\x61\xdd\xd7\x46\x1f\x3c\x45\xe4\x70\xd7\xce\x1a\xe5\xe5\x6a\xd6\x73\xba\xf6\x56\x38\xa9\x98\x5c\xad\xff\x92\xbc\xe6\xe0\xb5\xdf\x31\x4c\x3a\xb0\xcf\x99\x68\x39\x11\x8d\x38\xbb\xf8\xc5\x93\x6a\xdf\x97\xc4\x99\x71\x47\xb7\x1c\x9f\xce\x9f\xce\xff\xf9\x39\x49\xba\xf6\x67\x5a\xbd\x7a\x9c\x39\xf8\xd2\xcf\x64\xb9\x56\x5d\xfd\x89\xa5\x5d\x6b\x7d\x2d\x43\xcf\x5b\x76\xe6\x9f\x7f\xda\xe6\xcf\x9f\xc1\x0a\x72\x35\xc2\x49\xed\x21\x1d\x67\xaf\xd5\xdd\x8f\x5f\x8a\x25\x0b\xfe\x34\x8d\x75\x1d\x3f\xe8\x2d\xdd\xc1\xbf\xfe\xb4\xe5\x7f\xfd\x0c\x70\xe2\x8f\x71\x1c\x7a\x59\x1c\x8e\x19\x1c\x2e\xc7\x00\x83\x1b\x30\xa0\x15\x70\x86\x73\x8e\xf9\x38\x4c\xb8\x79\x98\x70\x8b\x7f\xac\x35\x10\xb3\x40\x16\x0b\x5c\xa3\x11\x61\xc2\x22\x70\x44\xaf\xa5\xcc\x4e\x8d\x63\x4c\x29\x9a\x14\x0a\x40\x5a\xb3\x5b\x6f\xac\xa9\x57\x6d\xa3\xb0\x81\x1d\xfc\x34\x1b\x25\xcd\x82\x37\xd2\x6d\x56\x4f\x55\xf9\x99\x8f\xfe\x37\x9f\x7e\xf4\xbf\x79\x26\x8c\x67\xb4\x60\xda\x64\x51\x6a\x10\xb1\x83\xaa\x08\xd3\xc5\x23\x36\xeb\xbd\x8d\x21\x5b\xe6\x75\x7c\x48\x09\xce\x6e\xa3\xe7\x06\x57\x70\x60\x49\xdb\x8e\x97\x3d\xdd\xa5\xed\xd3\x2e\x6d\xb7\x15\x47\x80\xce\x45\x54\x07\x55\x7f\xf8\xda\x1f\x05\xb1\x7d\xfa\xed\xf7\x9f\xbe\xfd\xfe\xf6\xdb\x79\x19\x79\x37\x27\x6d\x2e\xbc\x25\x70\xc2\x32\x17\xc9\xa5\x9f\xd3\xfd\xe2\x6a\x5b\xc2\x57\x26\x7d\x73\xe3\xa6\x32\xce\x16\xba\x31\x1c\xbc\x07\x6f\x3c\xb4\xb9\x5a\x2d\x47\x8f\x8f\xe3\xf5\x74\xdf\xfe\xe2\xd3\xbe\xfd\xc5\x73\xfb\x6d\xd4\x7e\xd3\xdc\x18\xd0\x92\x97\x6b\x79\x35\x72\x70\x16\x1e\x7d\x4b\x1d\xad\x2e\x25\x7c\x1f\xd7\xc6\x1b\xb7\x36\xde\x2f\x3e\x6d\xfc\x17\xcf\xa8\x0d\x8a\x9f\x0a\x15\x32\xe6\x66\x16\x70\xbc\x2d\x5a\x3e\x11\x64\x51\x92\x69\xed\x03\x78\x38\x25\x9c\xf1\x23\xb8\x8d\xe9\x74\x18\xad\x79\xed\x02\xb5\x6c\x2b\xf6\x67\x2c\x39\xb4\x9e\xa0\x5a\xba\x52\x30\x6f\xac\x57\xb2\x2e\xea\xcf\x05\xf3\xac\x8d\xa5\xe9\x86\x92\x86\xc2\x96\x64\xcf\xf0\x7d\x71\x02\xa5\x2c\x41\x78\xaa\xf9\xf2\x8f\x59\x46\xd0\xa2\xfe\xbd\xdf\x2d\x95\xd0\xd5\x12\x85\x4d\x0a\x95\xd0\x80\x8f\x33\x2f\xcb\x2d\x15\x52\xc7\x27\x41\x6e\xae\xaf\x1d\x2c\x45\xa0\x1f\xee\x21\x4f\xb0\xed\x39\xb4\x96\x3a\x1c\x36\x52\x7d\x22\xc8\xa8\x84\xd3\xa5\x03\x1b\x32\x07\x42\x51\x8a\x4f\x80\x21\x5d\xcd\xb1\xe2\x63\x37\x5d\x27\x6d\x39\xb1\x68\x21\xb8\x82\xa9\xd8\xe6\xc7\xe3\xcb\x25\xc7\xc7\xe4\xc2\xec\x6a\x70\x1d\x1a\x6c\x8b\x4f\x28\x1c\x6e\x5b\x5d\x33\x22\x38\x82\xc9\x58\x4f\x73\xc8\x2c\x49\x94\x8a\x05\x66\xbf\x23\x62\x0c\xfc\x08\x44\xff\x8d\x58\x12\x27\x95\xac\xe0\xb8\xab\x04\x3b\x2e\x99\xc1\xa8\x49\x09\x27\xe1\xcd\xa8\x43\x38\x59\x23\x7f\x43\xd2\xfc\xcb\x4f\x57\xcc\x5f\xde\xde\x4a\x4b\xfa\x05\x12\x39\x58\x80\x87\xee\x6b\x22\x0c\xb6\xde\x46\xca\x3a\x33\x0f\xa3\x05\xf5\x3c\x8c\x5e\x05\xe3\x61\x3f\xdf\x71\x96\x5c\xdc\x39\x07\x2c\xf4\xb0\xc2\x04\x29\x0c\xc8\x0e\x85\x48\x89\xe0\x05\x7b\x4a\x4e\x15\x6f\xd1\x69\x35\xa5\x75\xce\x6d\x80\xf0\xd8\x4c\xf2\x16\x23\x31\xf3\xa3\x30\x47\x5f\xe1\x08\x85\x60\xe8\x68\x21\x47\xde\x11\x4c\x7c\x14\x6b\x79\x80\xbc\x0a\x0f\xb4\x03\x84\x28\xe2\x97\xb8\xa5\x15\xde\x3f\x1d\x9f\xfd\x99\x1d\xc5\xd1\x5c\x4b\xd6\x64\x5f\x3b\x0a\xbc\x00\xc1\x0e\x6e\xcb\xf5\x62\x44\x23\x2f\x18\xaf\xcd\x62\xab\x65\xdf\x4e\x14\x63\xa3\x0e\x93\xaf\xe9\x56\xa2\x87\xec\x21\xdc\x4e\x03\x96\xcf\x13\xe9\xf7\x9e\x92\x1f\x37\x1d\x3c\x45\x78\x60\xd3\x49\x5f\x9b\xce\xa9\x89\xf0\x2c\x18\xae\xa3\xe4\x1e\xaf\xfe\x5c\x06\xe9\x5e\xe2\xef\x48\x58\x30\x61\xec\x85\x0f\x15\xb1\x4c\xe6\x71\xb7\x36\xdd\x0a\x37\x92\x15\xbb\xb4\x36\x9d\x5f\x37\x9d\x1d\x7a\x58\x78\xbe\x6b\x6d\x10\x5f\x9b\x0e\x61\x1a\xc7\xae\x03\x8a\x63\x44\x13\xd5\x9e\xa2\x89\x11\x19\x70\x79\xe8\x0f\xf7\xd4\x4b\x7c\x27\x2f\xf4\x8e\x18\x96\x56\x0b\x25\x95\x81\xf1\xb1\x4d\x60\x63\xc5\xbe\x43\xbc\x42\xed\x3b\x8d\xeb\xbe\xf3\x3f\xd8\x77\xc7\x25\xc4\x95\xd4\xcd\x90\xef\xb1\xef\xa0\xed\xf3\x98\x2c\x86\x16\xb8\x68\x0e\x15\xa5\xef\x3b\xb3\xdf\x59\x64\xab\x6b\xb0\x20\xbb\x34\x19\xeb\x69\xec\xbb\x7a\x5d\xed\xbb\x81\x19\x5c\x3e\x95\xb1\x7b\xd2\xda\x77\x63\xed\xbb\xa2\xc6\x70\x02\xe0\xb5\xef\x82\xb0\x7b\x33\x47\x33\xc2\xc0\x8c\x63\xf4\x6f\x30\xed\x7f\xfb\xe9\xc2\xfa\xb7\xb7\x7d\xa9\x07\x37\xef\x79\x96\x83\x61\x5f\xa3\x88\xc9\xe0\xe8\xb9\x84\xb4\xac\xb9\xaa\x3d\x01\x1d\x3d\x82\xde\x10\x8d\xd7\xc7\x55\x5c\xe3\x58\x81\x89\x09\x8f\x5c\xef\x6d\xa4\x1e\x9b\x6f\xf8\x2c\x69\x2a\x7a\x47\xf8\x8f\x0b\x96\x66\x0d\x78\x71\xbc\xde\x69\x3b\xfa\xf0\x70\x0f\xbf\x12\xea\x67\x97\xdc\xa3\x47\x0b\x62\x08\xa7\x21\x85\xaa\x07\x1c\x22\x12\x5e\x6d\x25\x30\xd2\x1d\x75\x1e\x08\x3e\x25\xea\x06\xd7\x08\x22\xb7\xa5\xfd\x64\xf7\x19\x76\x55\x83\xd2\x75\x37\x32\x5f\xe2\x56\x1c\xf0\x5f\x7d\x3a\x68\x7f\x75\x1b\xde\x65\x6f\x62\x03\xb1\x6e\x85\xb8\x8b\xbf\x63\xe5\x0a\x23\x20\xa7\xfa\x6a\x31\xa0\x33\x76\xe6\x59\xdf\xe2\xe6\xcb\x6e\x32\x74\x2f\xca\x1c\xbd\x37\x63\x82\x53\x94\x52\xb6\x28\x31\x9d\xbd\x0d\x04\xf4\xd4\x00\xfa\xd2\xcc\x8e\x98\x34\xa0\x4e\xea\xfb\x3a\x49\x6a\x08\x18\xf8\xc1\xce\xca\xa9\xcb\x23\x88\x7e\xe0\x3d\x21\x87\x85\x63\x10\xe4\x1c\x5f\x63\x26\xde\xaf\xaa\x4e\x8e\x89\x98\xa8\x62\x6a\xe7\x1c\xb2\xe7\x62\x97\xd2\x12\x2b\x71\x2c\x9c\x58\x28\x05\xe6\x0d\x12\x8d\xab\x43\x02\x41\xa3\x09\x61\x06\xd6\x0b\x31\x9b\x8a\x98\x95\x6e\x8b\xc9\x96\xac\x04\x97\x23\xea\xbc\xe3\xa4\x73\x36\x01\x67\x1e\x53\xc1\xa9\x19\xfa\xd1\x21\x3a\xdd\xe1\x10\xba\x07\x19\x48\x41\xc9\x83\x61\x01\x4d\x72\xf4\x84\x63\x99\x2f\xd5\x78\x91\x37\x5e\x62\x98\xc2\x12\x41\xda\xc4\x8b\x36\x92\xb6\xb5\x3d\x43\x5a\xc9\x52\xe9\x76\x17\x86\x48\x32\x9d\xae\x07\xb8\xd0\xef\xc1\xc5\x38\xc2\x2e\x27\x0d\x6d\xcc\x32\x0b\x38\x68\xb7\x33\xdb\xd8\xd9\x63\xc5\xc1\x66\x42\xb8\x82\x17\xa8\x3b\x94\xad\xd0\xa2\xa8\x15\xc2\x8e\x9e\x40\xd8\xcb\x97\x76\xb9\x7d\xd4\x62\xf0\xde\x58\x74\x1e\x8b\xe5\xe9\x25\x37\x3f\x5d\x72\xf3\x19\x06\x80\x78\x29\x2b\x66\x55\x50\xd1\x6c\x6c\x66\xc7\x4f\x79\xec\xda\xba\x09\xc2\xfb\xd3\x8d\xfd\xbb\x4f\x1b\xfb\x77\xcf\x79\xd9\x1f\xc8\x16\x84\x57\x3d\x77\xa8\x36\x05\x9f\x28\x87\x66\x12\xf2\xb0\xcf\xd1\xa5\x71\xff\x1e\xba\xd1\xe1\x6f\x5f\x0b\x33\x27\xc3\x2b\xd1\x26\x16\xed\xa0\x89\xd0\x38\xcf\x0d\xbe\xf6\x87\xe8\xb7\x71\xed\x1f\xcf\x9d\x0f\x1d\x79\x0d\xb8\xb0\x4d\x71\x3b\x7c\xc8\x6a\x8b\xfb\x42\x29\xba\x17\xe3\xaa\x01\x37\xd8\x68\xe0\x78\xcb\x45\x11\x78\xdc\x49\x41\x04\x13\x34\x91\x66\xed\xa3\x4e\xe3\xe9\x11\xb9\x7c\x3a\x22\x97\x67\x42\x4e\xb2\xd1\xa0\x0d\xce\xd2\xd7\xb1\x96\xcd\xdd\x5b\xcd\x85\x6d\x88\x79\xac\xcf\x21\xdb\x8e\x9b\x9f\x6e\xf2\xdf\x7f\xda\xe4\xbf\x7f\x46\x76\x41\x24\x36\x9c\x43\x98\xc7\x56\x6c\xa9\xfe\xb6\xa5\xf2\xf6\xb3\x0f\xdd\x06\xbc\xed\xfa\x96\xf0\x16\xb4\xad\x80\x48\xfd\xbd\x9c\xa2\x56\x3f\x63\x6c\x19\xd2\xfa\x79\x98\x6e\x0e\xb7\x29\xd2\xad\xe8\x56\x3f\x73\xf6\x6d\x5c\x87\x29\xc7\x76\x34\xfa\x74\xd7\xff\xc3\xa7\x5d\xff\x0f\xcf\xc4\xdc\x65\xed\xe9\x2d\x73\x7c\x1c\xac\xdc\x60\x2d\x96\xf1\xbd\xc9\x80\x64\x73\xa1\xe6\xca\x1b\xeb\xc0\x4f\xb1\x99\x1f\x77\x1d\xc2\xd5\x99\x9d\xb7\xe3\x85\x4f\x77\xeb\x3f\x7e\xda\xad\xff\xf8\xcc\x24\xf6\xe6\xce\x5b\x8e\xab\xb0\x43\x6c\x9b\x1b\x02\x99\x37\x37\xcc\xa5\xea\x66\xca\xf8\xe5\x6a\xe7\xa8\xe1\x3a\x9e\x7d\xba\x07\x0f\x9f\xf6\xe0\xe1\x19\xf7\x60\x6f\x3f\x50\xf2\x51\xcd\x14\x8f\x96\xb2\x8d\xc2\xf7\xb5\x97\xc9\xf8\xaa\x02\x41\xc8\x97\x2c\x44\xb2\x1d\x8f\x3e\xdd\x81\xff\xe5\xd3\x0e\xfc\xf2\xfd\x8b\x97\x7f\xfd\xea\xdb\x67\x83\x14\xe1\xcd\x6d\xce\x67\xf3\xb8\x9c\x98\xfa\x39\x72\x5c\x4e\x42\x7c\xd6\xea\x82\xbb\xe2\x97\xba\xe7\xe9\x46\xff\xd7\x47\x8d\xbe\x78\xf9\xd7\xcf\x07\x08\xb1\x1d\x6b\x52\x6a\x77\x46\xac\x68\xa1\xe1\xba\x5d\xaf\x3c\xdd\xd0\xff\xf6\xe4\xd7\x3d\x1f\x71\xa8\xc5\xfc\xf0\x0d\xe1\xc7\x57\x49\x5f\xdf\xe9\xde\xf1\x55\xf8\xa5\xee\x79\xba\xd5\xff\xfd\x71\x4c\xdf\xcb\xd7\xaf\x5f\xbe\x7e\xff\xf2\xbb\xdb\xc9\x58\xc4\xa9\xb9\xc7\x99\xd5\x10\x69\x77\x24\x64\xc9\x2d\x87\xe0\xc2\xf0\x80\xb2\x00\x81\xdd\x90\xf6\x38\xed\x82\xbf\x8e\x67\x9f\xee\xcb\xff\xf1\x69\x5f\xbe\x7b\xfb\xe5\xab\xf7\x1f\x5e\xbe\x7b\x7f\xdb\xdb\x0e\x6a\xd6\x13\x42\x36\x62\x01\x2d\xd3\x4b\xfd\xfd\x74\x03\xff\xe7\x63\xdf\x94\x17\xcf\x38\xb9\xaf\xd0\x1f\xe1\xb3\x07\x6d\x2b\x1f\x47\x22\xd7\xc4\x76\xbd\xf2\x74\x23\x2f\x1e\x8d\xe8\x6d\x7c\x25\xd1\xfa\x9e\x5c\xb4\xad\x25\x17\x41\x58\x76\x3d\xf3\x1d\xec\xb5\x50\xb3\xf6\x36\x16\xc4\x13\x9a\xae\xde\x4e\x4b\x2f\x0f\x2d\x9a\xc9\x47\x2d\x1a\x4f\x2e\x99\x4f\x27\x1d\xf1\x0b\x14\x08\x5f\xdf\xeb\x28\x4b\xf5\xd9\x54\x97\x57\xb3\x59\x9f\x3a\xb4\x39\x75\xe4\xe6\x70\xce\x73\x12\x5d\xc2\x78\x4f\x5a\xde\xdf\x63\x44\x1b\x96\x30\xee\xa5\xc4\x0c\x68\x9a\x6d\x3a\xc1\x5e\x40\xbb\x01\x04\x77\x42\xb0\x73\x0e\x87\x56\x36\x55\xa6\xa8\xc0\x2b\x56\x20\x5b\xca\x46\x59\x47\xdd\x0b\xe7\xc1\x13\x5a\x18\xe1\x00\x02\x6f\x26\xa2\x25\x2e\xf5\x28\x71\x29\x16\x8e\x8a\x03\x50\xb5\x08\x18\x98\x3a\x9c\x09\xa8\x93\xc2\x75\x38\xe1\x2a\x20\xd4\xc2\xfa\x85\xb9\xe4\x21\xa1\x06\x1d\x78\x87\x50\x0f\x7f\xd9\x5a\x80\x1b\xe4\xc6\x7e\x4e\x89\x87\x15\x5e\xe8\xbb\x77\x6b\x25\xd2\xfb\x72\x60\x0d\x07\xf9\x5e\x4e\xda\x24\xd0\x17\x4b\xef\x17\x93\x38\x7b\xca\xee\xa4\x77\x26\xd1\x0a\xc2\x19\x1b\x82\xe4\x14\x36\x2b\x69\x4a\x3c\x79\x64\x43\x4e\x91\x3a\x16\x63\xe9\xd9\xb8\xe7\x94\x65\xab\x9d\xaa\xf8\xcc\x15\x81\x78\x63\xef\xff\xf2\xd1\xde\x7f\x0e\xb3\x70\x33\xe9\xfb\x82\x2c\x50\x02\x68\xe1\xb7\x82\xbd\xd9\xc8\x3a\xd4\x19\x1c\x6b\xad\x00\x07\xf2\x81\x03\xe1\x69\x2f\x90\x48\x6d\x13\x82\x12\x32\x73\xc5\x86\x0b\xe5\x25\x85\x76\x09\x78\xd4\x72\x83\xde\xa8\x5b\xac\xe0\x4b\xcc\xc9\x4a\xc8\xc1\x70\x70\xc1\xa5\x6a\x31\xc5\x96\xd1\x20\x60\xd5\xaa\xde\x19\x5d\x4c\xfa\xc3\x7d\x1a\xd5\x1f\x7b\x1a\xdd\x15\x43\x4e\x64\x7d\xe1\x15\x7d\x65\x36\x6b\x6e\xd3\x06\x7c\xe6\x33\xc7\x6e\x5e\xf2\xec\x68\x56\x02\xf6\xe0\xa9\xb2\xa2\xb5\xc4\x97\x23\x8b\x94\xfc\x30\xec\xc2\xa3\xef\x88\xde\x13\x6f\xe2\x35\xd8\xfd\x88\xb3\x1f\xd3\x6a\xb5\x0e\x98\x22\x0a\xb3\xd2\xd2\x0a\x03\xdd\xcb\x2c\x81\x99\x4b\xc0\x13\xa9\x07\xa1\xe8\x31\xe9\x17\xbb\x05\x25\x5f\x3e\xf2\xed\xbc\xcd\x73\x85\x11\x4a\x94\x0c\x4b\xa3\x7a\x75\x62\xa8\x2c\x88\x4c\x25\xc9\x8c\x65\x70\x94\x62\x8b\x86\x90\x08\x69\x0c\x9d\x61\x2d\xfa\xe4\x99\xd5\xe7\x92\x1e\x7b\x2b\xf1\x83\x0f\x9c\x79\x58\x82\xd9\x56\x40\x44\xae\x80\x88\x2c\x7a\x10\xd0\x57\x18\xf7\x8b\x39\xef\xb4\x48\x6b\xa3\x7a\x01\xd2\x5a\x0c\x6c\xdc\xb5\x48\x6a\x26\x85\x8e\x99\x64\x3a\x76\x57\xc6\x1d\xf5\xd0\x99\xd2\x11\x02\x42\x9d\x3b\xec\xe6\xcb\x03\x8f\xe2\x9c\xca\x70\xbc\xc5\x64\xd5\x70\x4a\x87\x6a\x21\x91\xb1\x82\x5b\x46\xae\x17\xf7\xde\x77\xa4\xce\x2a\x71\xb8\xa0\x6c\x3a\x4f\x71\x24\x5a\x98\xd2\xa9\x45\x89\x7c\x83\x9a\x39\x5f\x8c\xfb\x8e\xb8\x50\xa9\xfd\x52\x92\x43\xe2\x5e\x2e\x31\x11\x5e\x05\x39\xd7\x98\x3e\x3d\x31\x5f\x3e\x4a\xe0\x74\x7b\xbf\x58\x60\x0d\xc2\x9f\xab\xc0\xf8\x42\xd4\x50\x6f\xa4\x1c\x3e\xee\xdd\x7c\xe5\x70\xa8\xc1\x41\xae\x95\x45\x7a\xe0\x99\xb2\xfc\x98\x52\x6c\x6d\x94\x12\xc6\x2f\xfd\x9c\xe4\xdb\x32\x2c\xd1\x3e\xac\xe4\xfd\x56\xa2\x23\xf3\xb4\xb1\xf6\x9d\xc6\x61\xe2\x80\x58\xb5\x72\x8b\x94\x60\x37\x14\xa0\x1f\x1d\x3b\xd6\xde\x3d\x42\x65\xa5\x23\x64\x56\xb5\xc8\x89\xdd\xd5\x02\x15\x63\x44\x9d\xea\x0a\x79\x9d\xde\x97\xb1\xc3\x96\x28\xb6\xf2\x1b\x21\x15\x94\xe8\x44\x46\x91\x92\x06\xe1\x6b\x4e\x97\x48\xdb\x07\xd2\xf7\x14\x0b\xe9\x88\xc4\x8b\xe4\x96\x4a\xf0\x76\xcd\x21\xd3\xa9\xaf\xad\x47\x03\x5b\xaf\x28\x71\xd6\x5c\x98\x20\x00\x94\x8b\x74\x17\x8d\xab\x0e\x1e\xfb\xfa\xc9\x09\x79\xf5\xc8\xdf\xf4\x99\x4c\x6e\xf6\x29\x59\xaa\xcf\xe5\xc9\x59\x32\xf5\x11\xb0\xdc\xf5\x88\xf4\xa9\xe1\x91\x1d\x1e\x5b\x45\xdc\x06\xe4\x65\xdc\x9b\x1f\x09\xab\xad\x95\xb2\x16\xf6\xca\x43\xc4\x6d\x80\xb5\xb8\x20\xc3\x54\x2e\xbb\xe6\x40\xc4\x15\xf5\xc8\xe6\xdd\x2f\x26\x72\x66\xcf\x8b\x51\x5f\x51\x3d\x70\x62\x19\x70\xd9\x93\x22\x14\x44\xd3\xfa\x62\x26\xee\xfd\x6e\xac\x5c\x20\xa3\xb7\xa1\xe0\xcd\x33\x11\x13\x3c\xb6\xe5\x6e\x13\xb4\x23\xba\x89\x38\x5b\x0e\x6d\x50\xfa\x4b\x13\x41\xa4\xe0\xc9\xaf\xa1\x6a\x0f\x20\x16\x6b\xbb\xac\x48\xec\xde\x34\x47\x4b\xe8\xab\x09\x1a\x11\x21\xb8\xca\x2c\x96\x2e\x76\x4e\xcb\x8b\xeb\xd8\x13\x9b\xd2\x60\x84\x8d\x18\x70\xb6\x18\x49\xb0\x2a\x67\xf4\x79\x7d\xf3\xd3\x73\xf4\xab\x47\x11\x7e\x37\x23\xfc\x91\x58\x26\x87\x02\xec\x58\x96\x04\xa5\x61\x9b\x86\xe3\x57\x1a\x74\xa1\x3e\xf8\xac\x11\x17\x22\x1f\x3b\xbc\xed\x8a\x36\xc1\x20\x2b\x66\xcb\xb5\x53\x63\xc0\xe1\x8b\x4c\x7d\x66\x8d\xa5\x79\xe0\x23\xea\x04\xbc\xbf\xce\xfa\x84\xdb\x03\x99\xf6\x0d\xde\x46\xa4\x32\xf6\xc5\xc0\x15\x79\xa4\x68\x89\x28\x0b\x1d\xa9\xcb\x3e\x34\x70\xd2\xe0\xaf\x08\xe3\x76\xd2\x1d\x69\xe7\xc3\x0a\x5d\x93\xb7\x32\x8a\x8c\xd5\x57\xec\xdb\x1c\x37\x50\xf0\x57\x8f\x80\xe1\x33\xf4\x24\x0f\x7a\x92\x07\x3d\xb1\x5b\xf4\x24\xaf\xf4\xe4\x23\x94\xb1\x83\x9e\x90\x20\xd1\x45\x22\xf6\x19\x7d\x2b\x88\x9e\x3b\x34\x47\xa7\xd1\xa1\xd5\x3d\x51\x2d\xdf\x22\xff\xd2\x0d\x01\x85\x27\xc9\xb1\x52\x9f\xa8\xd0\x6e\x3a\x70\xd2\x14\xbf\x70\x87\xb5\xe3\x24\xc3\xa1\xec\x39\x09\xe7\x64\x2a\x1a\xa4\xbe\xf1\xf0\xbb\x13\x85\xee\x4a\xd6\x4e\x22\xbd\x15\xbd\xab\x93\xdd\xfd\xf8\x25\xd8\x56\x5b\x85\xf8\x4e\x2c\x06\xc7\xe6\x13\xf1\xd2\x6c\x92\x5e\x48\x62\x87\x85\x81\x16\xb1\xa3\x69\x23\x9e\x27\x76\x7e\x10\xbb\xfc\x21\xb1\xcb\x83\xd8\xe5\x41\xec\xc0\xc6\x41\x73\x16\xb1\xb3\x83\xd8\x25\x88\x5d\x6d\xba\x22\x76\x0e\x62\x77\xd0\x89\x51\x63\x9f\xab\x67\x1c\x7e\x09\x44\xe8\xf6\x15\x52\xea\x84\x20\xa0\x48\xbd\x4b\x49\xa4\x89\x29\x3c\xe1\x74\xe0\x0c\xca\x83\xd8\xf9\x41\xec\xf4\x20\x76\x71\x10\xbb\x7c\x9e\xd8\xfd\xfa\x51\xbe\x8c\xdb\x92\x52\xe1\xe8\x90\x1d\x49\xce\x22\x9a\xc2\x85\x55\x72\xfa\xb8\x52\xac\xa0\x2b\xa8\x4a\x38\xef\xcd\x34\x6d\x89\x10\x1c\xb6\x36\x1c\x7e\x7d\xbd\x79\x52\x71\x1d\xe9\x17\x4f\xda\x8b\x5d\x87\x4b\xab\xe5\x31\xb8\xc3\x17\x23\xc9\x91\xc7\x2f\x23\xa6\x9b\xac\x2f\x4d\x5f\x88\x0a\x16\xf9\x3e\xb5\x18\xb7\x74\xb8\x10\x17\x02\xab\xfe\x85\xe5\xd5\x45\x60\x01\x41\xb9\x8c\x5b\x7e\x10\xaf\x3f\xfd\xf0\xd7\xb7\x65\x60\xf8\xfb\x0d\x3e\x07\xcb\xe1\x89\x90\xcb\x34\xbd\x1c\x13\xbc\xcb\x25\xc3\x8e\xbf\x11\x10\xe4\x70\x57\x29\x14\x58\x70\x9c\xac\x61\x07\xa9\xf2\xca\xb3\xa4\xbe\x94\xe5\x75\xd2\x02\x49\xac\x94\x97\x5b\x41\x3d\xb5\x4e\x90\x05\x24\x57\xbc\x13\x9e\xe2\xec\x3b\x32\x22\x15\xcf\x58\xd9\x66\x0e\x2f\x84\x7a\xea\xe9\x8f\xfc\x4f\x9f\x7e\xe4\x7f\x7a\x26\x5e\xe3\xf8\xc8\x41\x74\xe9\xfb\x20\x2a\x51\x74\x39\x5f\x9f\x68\xc8\x2c\x06\x7d\x12\xee\xd3\xc2\xda\x49\x91\x05\x8a\x6b\xd3\xc6\x2e\x6a\x38\x01\xcb\x39\xa9\x94\xdc\x66\xd8\xc6\x1b\xf7\xda\xf3\x4c\x7b\x0d\xe2\x09\xa6\x4c\x8d\x3a\x71\xc0\xa8\xda\xab\x58\xb2\x27\x11\x3e\xf6\xbc\xc8\xae\xeb\x17\x41\x94\xdf\xa9\xbe\xb2\x48\xf0\x89\xbd\xcf\x02\x85\x27\x2a\x00\x98\xd4\x3a\xc6\x5d\xfa\x75\xdc\xdd\xf8\x8e\x04\x8e\xce\x48\x1e\xea\xcd\xa1\x62\xaf\xc1\x55\x3e\xc6\xbd\x36\x5d\x8d\xfb\x4a\x30\xaa\x87\x51\xb7\x9e\x1a\x47\x8c\xed\xba\x24\x34\xd6\x53\x9c\xb4\x08\x1f\x27\xb5\xe5\x9d\x8d\x29\x61\x3c\xf5\xf4\xb8\xff\xf5\xa7\xe3\x7e\x3b\xad\x90\xd6\x5c\x6a\x6c\x22\xd1\x94\x3e\x5a\x53\xb1\x7a\x25\x2e\xa6\x63\x53\xaf\xef\x30\xf8\xea\x1e\x24\xd6\x06\x5c\x7a\x9d\xbd\x98\x0c\xbc\x06\x4c\xb7\xe3\x5d\x4f\xf7\xe8\xcd\xa3\xe0\x9d\xe7\x97\x7b\xb5\x1f\x6c\x4f\x2f\x77\xbb\x90\x72\xae\x1f\x4c\x6e\x48\x81\x5f\x7f\xda\xde\x6d\x0d\x0c\x25\x02\xe0\x78\x63\x24\x48\xa2\x9d\xe1\x0d\x53\x4b\x25\x61\x7f\x2f\xe1\xc9\x17\x85\xd1\x83\xd4\x2c\xfb\x45\x47\x50\x61\xae\x7b\x56\x64\xd8\x31\x31\x69\x09\xc3\x38\x44\x00\xc4\xd3\xf5\x8f\xfe\x3b\x9d\x77\xa4\x7d\xa9\xd7\x2c\xae\x5d\xd2\x3a\xdc\x59\xa9\x93\x14\xff\x2e\xe9\x60\xcc\x95\x1b\xa4\xeb\x46\xa4\xf0\xc2\xe8\xc0\x47\x1c\xf5\x63\xf1\xb7\xb8\x5b\x84\x0e\x62\xc6\x8a\x41\x29\x19\x25\x35\x40\xa2\x87\x83\x60\xed\x08\x29\x2f\x72\x3c\x18\xbf\x17\x6f\x2a\xc8\xe7\x45\xe2\xb3\x4f\x2f\xe0\x23\x7d\xf3\xe8\xed\x6a\x25\x88\x36\xc8\x56\x30\x77\x81\x47\xeb\x6d\x0c\x46\x34\x45\x21\x5e\x78\x15\x0f\x01\x83\xae\x16\xc4\x3a\x5a\x10\x5a\xbf\xb3\x13\x1c\x18\xf8\x30\xd8\x30\xbc\x1d\xc6\xc6\x9d\x5b\x3f\x8f\x3c\x50\xc4\x2d\x47\xc8\xb7\x8f\x42\x44\x9f\x21\x1a\xb2\xa6\x4e\x88\xdb\x88\xdc\x4b\x82\x85\x0b\x2a\x2c\x3a\xda\xa7\x2f\x33\x18\xef\xc3\x96\x48\xb2\x52\xd8\xc0\xf7\x56\xa3\x79\xc2\xe7\x86\x63\x71\x02\xf6\x05\xf0\x2d\x5b\x22\x27\xdd\xc1\xe3\x52\x0e\xca\x4f\x10\xd1\x54\xad\x25\x07\xe2\xd5\x87\xe6\x41\xf9\xe9\xa3\x73\xd8\xe0\xb3\xdc\x72\x74\x7e\xf7\x28\x95\xcd\xed\x65\x29\x25\xf0\xc7\x4e\xc2\x4b\x12\x45\xcc\x90\x4f\xae\xce\x49\x2e\xc3\x59\x21\x20\xe8\x04\x97\x24\x1a\x07\xfb\x23\x3f\xc0\x91\x8f\x96\x7a\xd8\xee\x02\xec\x2f\x91\x66\xf7\x62\x5c\x2b\x28\x1d\x39\x8e\x80\x0e\x85\x6c\x69\x3d\x94\x11\x92\xc1\xfa\xbd\x7d\xa6\xd3\x91\x0f\x89\x1b\xd7\xec\x16\x05\xa3\x49\x70\x22\xb0\x89\x9e\xb2\x5e\xcc\xe2\xe1\x9e\x8d\xee\xea\xe5\x6c\x4b\x20\xe5\x40\x40\xf1\x2c\x1a\xcd\x14\x53\x31\x0f\xcb\x6d\x67\xac\xec\x6b\x88\x7f\xee\x2b\x8d\xe1\x90\xc6\xe4\xb0\xc7\xd4\x53\xc5\xe7\x8f\x57\xef\x75\xee\x5a\x13\x28\x10\x7f\xeb\xde\xe1\xb2\xf0\x7a\x6d\x40\x78\xd3\x97\x24\xc0\x47\x6a\x4e\x3d\x02\x99\xab\xed\x01\x21\xde\x96\xe0\x0c\x5d\x0a\x06\xe1\xe9\x49\xfa\xe6\x51\xa2\xad\xe7\x5d\xa6\x96\x06\xc9\xc7\x55\x83\x24\x87\x06\xc9\x0e\x0d\x12\x2f\x0d\xd2\xa1\x83\x50\xfa\xe8\x31\x41\xb9\x34\x48\xc2\x97\x93\x92\x9f\x29\xfd\xba\x7a\xc6\x26\x00\xb6\xba\x2f\x03\x1a\x69\x83\xd6\x14\x13\x7e\x08\x66\x3b\x6c\xd5\x0b\xef\xf0\x55\x89\x64\x57\x25\x12\x1f\x4a\x24\x1f\x3f\x50\x22\xe9\x58\x4a\x24\x1d\x87\x12\xa9\x1f\x4a\x24\x5e\x4a\xa4\x1a\xca\x63\x49\x2d\x25\x12\xad\x85\x4f\x10\x56\xe0\x27\x08\xa5\xa4\x7b\x1b\xa3\x2f\xa5\x64\xe6\x85\x5d\x76\x44\x04\x17\x0a\x45\x6c\x7e\xff\x7e\x82\x7d\xf9\x8b\x17\x80\x20\xb4\xc4\xbc\x74\x24\xe2\x63\xa2\x47\xcf\x69\x8d\xfe\xe6\x51\x1c\xe2\x33\xc2\xc4\x38\x84\x89\xf1\x48\x39\x21\x8f\x84\x89\x43\x27\xb1\x32\xa0\x2d\x61\x42\x16\x81\xce\x02\xb5\x92\xdb\x11\x13\x0d\x41\x27\xd7\xdc\x64\x47\x02\x18\xa4\xfa\xb4\x65\x6a\xa6\x84\x60\xf2\x29\x64\x1f\x0b\xb2\xeb\x01\xd9\xed\x80\xec\xe3\x26\x64\xbf\x43\xa6\x00\x5f\xc8\x99\xd9\x26\x56\x06\xf2\x55\x7c\x92\x21\x00\xde\x25\x4b\x75\xcb\x4e\x97\xd1\x63\x1f\x03\xf4\xa7\x15\x6d\x1b\x63\xc5\x9b\xa5\xda\xa1\x90\xb0\x1f\xee\x08\xfa\xe1\x8e\xe8\x48\x91\x32\x2c\x0e\x94\x2e\x3f\x8e\xd2\xdf\x7f\x3a\x0d\xcf\x84\xa0\xf6\x43\x54\x83\x5b\x07\x08\x6e\xae\xcc\xd6\x93\x7a\xac\x8c\x0e\x25\xe4\xd7\x9e\xf5\x1d\xfa\xba\x04\xd0\x36\x80\xea\x31\x8a\x80\xdb\x1e\x52\x9c\x04\xae\x62\x05\xcc\x67\x31\x5e\x4f\xde\x74\x48\xeb\x67\xb1\xbc\x0a\xcd\xba\xd5\xa5\x91\x7a\x19\xc1\x90\xe3\x32\x4a\x9a\x5c\x69\xd0\xe7\xb5\x3b\x4f\x7f\xd5\x87\x47\xc1\xd5\xb7\xbf\x4a\x41\xc9\x6a\xe3\xd4\x84\xb6\x64\x69\xe2\x3c\x87\x59\xed\xfa\x19\xa6\x4d\xa1\x33\x28\xcc\x48\xbb\x21\x8b\x44\xb4\xea\x9b\xc9\xd2\x3d\x59\xc6\x4a\x35\x30\x18\x09\x9c\x6b\x06\x71\x8c\x68\x5c\x32\x07\xc2\x10\x97\x5b\x1a\x0c\x0a\xf5\x85\xd3\xe5\xaa\x31\xe6\xeb\x6a\xc5\x42\x1e\x04\xd7\x11\xea\x05\x14\x0a\xac\x24\x72\x3f\x41\x9a\xcc\x73\x6a\xc9\x35\x79\x37\xd6\xf0\x41\x0b\x39\x74\x65\x9c\x09\xc0\x03\x5b\x6f\xc6\xea\x40\x98\x08\x7c\x4b\x6a\xf0\x13\xd9\xc9\xd3\x74\x4a\x91\x85\xb4\x29\x5a\x70\x80\x76\x51\x47\x72\xd2\x22\x49\x81\x88\xb1\x68\xee\x63\x9a\x14\x14\x2c\x7e\x09\x8f\x3c\x84\xb3\x5a\x51\x67\xe2\x66\x96\xf0\x01\xd2\x15\x90\xa7\x08\x70\xa3\xee\x48\x65\xb7\xaf\x13\xe0\x4a\x39\x5c\x20\xc4\x1a\xb2\xfe\x96\xd0\xfe\x7d\xe2\x11\x3b\x3c\x04\xa2\x37\x86\x9f\x99\xdb\x0a\xd9\xf3\x98\x34\xb2\x49\x97\xb3\xf4\xdc\x85\xec\x8e\x25\x5b\x75\xb9\x44\x5a\xa4\xa7\xe2\xea\x22\xb5\xe4\x6b\xd6\x0d\x78\x03\xc0\xe0\x51\x3f\x1e\xce\x5d\xc8\xba\x80\x38\xaa\x35\xd9\x4f\x2f\x99\x6f\x1f\x65\x2c\x7b\x36\x0e\x9f\x3e\x2e\xd4\x4c\xb9\x2c\x25\x10\x5f\xa4\xaf\xfc\x65\xac\xbd\xd5\x26\xa7\xcc\xe9\x88\xbe\x64\x84\x8b\xa4\xcd\xc1\xd0\x4d\x8e\xa8\x03\xc8\x34\xb2\x97\x23\xe5\xa7\x6d\xf0\xa7\x20\xdd\xb3\xa4\x1c\x41\xf6\xa7\x13\x11\x72\x55\xd7\x60\x21\x0a\x9f\x91\xb6\xa4\x9d\x04\x02\x1a\xc2\x19\xa3\x60\x35\x34\xc2\xd2\x15\xbd\x21\xff\xb8\x8f\xfa\xa5\x3a\x5b\xfd\x7b\xfa\xbb\xbf\x7b\x64\x4e\x7c\x26\x06\xbd\x66\x25\xf7\xe1\x86\x04\xc5\x11\x4d\xfa\x34\xbf\xea\x36\x8e\x0c\x32\x3d\x5b\x4e\x4e\xa8\xf6\x98\xa5\xb1\x10\xac\x6d\x4a\x57\x1e\x48\x71\x51\xd2\x5d\x28\xe1\x92\xba\x3c\x69\x62\xda\x28\xb4\xba\x07\x79\xab\x25\x86\x8c\xfe\x06\x6f\x4a\x21\xd9\x92\xfc\xa3\x1a\x28\x00\xed\x6c\x3b\x7a\xf4\xf4\x77\xfd\xe6\xd3\xef\xfa\xcd\x33\x9e\x00\xa3\x91\xf3\x32\xc1\x2a\x6d\x48\xab\xe0\xbc\x65\x1e\x82\x2b\x11\xf9\x56\xf3\xd8\xcf\xe6\xb2\x51\x3f\x78\x08\x0b\x6f\xc7\xc3\x4f\x77\xe1\xb7\x9f\x76\xe1\xb7\xcf\x38\x8f\x6b\x13\x23\xb8\x77\x90\xe5\x26\xe9\xf8\x7b\xc9\x20\x83\xcf\xee\x82\x5a\x0f\xf5\x23\xa2\x02\x4d\xb7\x64\xc2\xdf\x88\xa6\x38\x3a\x0a\x2f\xee\x02\xfb\x43\x05\x0e\xe6\xa1\x7d\x73\xae\x55\x26\x9b\x8d\x81\xbf\x05\xba\x4a\xe9\xbc\xc1\xb6\x57\x0f\x86\x6c\x47\x1f\x9e\xfe\x92\xdf\x7d\xfa\x25\xb7\x53\x6a\xc1\xab\x4d\xfb\x96\x05\x25\x57\x9f\xba\x6d\x25\xe4\x5a\x75\x95\xb8\x46\x31\x23\x37\x67\x6f\xea\xb4\x71\x1c\x99\x16\x37\x5b\x7c\x7e\xa3\x23\xcb\xcc\x99\x47\xdd\x86\xf7\x3d\xdd\xab\xdf\x7f\xda\xab\xdf\x3f\xeb\xec\xc1\x5c\x23\xc1\x8d\xbc\x86\x8c\xe4\xda\x3d\xcd\xcd\xb2\xb7\x13\x85\xec\x2b\xf0\x82\x19\xd9\xca\x4e\xec\x39\x91\x45\x0f\xf9\x02\x43\xda\x49\x49\xe1\x8f\x07\xe5\x04\xb3\x2f\xe5\x44\xc9\x99\x27\x15\x99\x04\x65\x23\xcb\x46\xc8\xb4\xcc\xb2\x17\x6e\x3a\x15\x5f\xe1\xa5\xe4\x88\xb9\xb4\x14\x85\x12\x52\x96\x46\x51\x84\xda\x49\x88\x01\x64\x4e\xec\x3e\x75\x11\x45\x9e\x3a\xc6\xdd\x89\x84\x91\xe5\x9c\xc7\x16\xd7\x91\x21\xda\x8e\x6f\x7a\x7a\x64\xfe\xf3\xa3\x34\xaa\xcf\x08\x5a\x76\xe4\x72\xcc\x51\x62\x8e\x8e\x8d\x0a\x78\x8c\x6d\x8c\x62\xde\x79\xa6\xa0\xab\x6e\x58\x7d\x43\x30\x7a\xa6\x6c\xc7\x83\x4f\x37\xff\x7f\xfd\xa1\x93\xc6\xab\x67\x1d\x50\xb2\x28\x9a\x76\x45\x6a\xab\x93\x8c\x2c\x29\xb5\x9d\x44\x63\x06\x14\x34\x25\xd5\x82\x1a\x76\x85\xca\xd3\xc6\x85\xdd\xf7\xda\x7e\xda\x1d\xf3\xa5\xb1\xb2\x3a\x9a\xca\xc5\x62\x05\xb3\x59\xc6\xc5\x29\x91\x82\xcf\x35\x90\x14\xd1\xad\xa3\x7a\x4d\x40\xfb\x93\x2d\x99\x2f\x44\xc2\x87\x0a\x8c\xbc\x2d\xbf\xa8\x94\x95\x0b\x06\x29\xd1\xa0\x83\x97\x9c\x89\x58\xf6\x8c\x2d\x93\xef\xc8\x68\xec\xd0\x4f\x5b\xd7\x36\xa0\x92\xf3\x3c\x4c\x4d\x25\x8f\xc3\x31\xd6\x7d\x42\xdd\x56\xd2\x40\xf2\x92\xe6\x8a\xd5\xbb\x27\xbc\xd1\x35\xad\x59\x2a\x9a\xaf\x3d\xe0\x25\x70\x84\xe2\x21\x76\xbf\xd8\x80\xf7\xe6\xa9\x64\x51\xf5\x76\x0a\x9f\x51\xfc\x81\x46\xc2\x56\x7b\x42\xc2\x3f\x68\xb8\x58\xb7\xeb\x48\x3e\x3d\x31\xff\xf7\x63\x37\x9d\xdb\x78\xef\xd0\x78\xf3\xd9\xfc\xea\x07\xec\x76\xa9\x5f\x9e\x7e\xf5\xff\xf3\xc4\x9c\x3f\xef\x96\x53\x8b\xbf\xfa\xbc\x4b\x6d\x20\xa1\x8e\xb2\x15\xf8\x1c\xf8\x6e\x50\xf6\x69\x31\xf0\xc5\x56\x83\xb4\xe6\xdc\x8a\x38\x8e\x44\x86\xd0\x9a\xf3\xc1\x89\xf1\x0b\x04\xde\x74\xfc\x5e\xe3\x5a\x8f\x7c\x9c\x5b\xe4\xf3\xe3\xce\xcd\xc6\xe1\x0f\xbc\x6a\x20\x0d\x3a\x62\x3f\x10\xf4\x5b\x73\x4b\x63\x13\x43\xb2\xae\xd8\xb5\x26\xd0\x0a\xea\x51\xcd\xb6\xe4\x74\x44\xf5\x20\xf7\x14\xf4\x76\x3a\x03\xe5\x2a\xae\x73\xbb\x9c\x39\x5a\x20\xff\x72\xcc\x4c\xa9\x75\x57\x6b\xf0\x9c\xa9\x5b\xfd\x6d\x38\x6a\xab\x35\x5a\xe8\xc1\x54\xf6\x61\x2b\xdf\x47\x09\x03\xf5\x4d\xf5\xd2\xeb\xdc\x43\x56\xf7\x02\xc9\xb5\xfc\x05\x8e\xc3\x27\x56\x9e\xf0\xae\x44\xe2\x57\x90\xa4\xae\xdb\x75\x44\x9f\x9e\xa1\xff\xf7\x09\x27\xa6\x6f\x5f\xbf\xf9\xf2\x19\xc7\x21\xf2\x81\x5c\xa4\x44\xb5\x71\x90\x2d\x4b\x47\xf3\x92\x7c\x7a\x72\x33\x44\x40\x76\x69\x5a\xf2\xf0\x90\xa6\x2c\xfb\x90\x40\x01\xa0\xc8\x68\xb5\x77\x82\xb2\xa9\x0b\x5c\x2d\xac\xe7\xb4\xd0\x66\xf0\xaf\x8f\x56\x22\x9b\x31\xd0\xd2\x54\xb7\x1a\xab\x59\xfb\xd9\x83\xe0\x20\xe3\xa3\x23\xe1\x9a\x8f\x0e\x28\xed\xce\xb3\x48\x29\x6a\x89\x14\xfc\x51\x99\x54\x10\xdd\x8a\x8a\xdf\xa9\xc7\x8e\x98\x78\x6a\x25\xf7\x8c\x44\x35\x06\x4f\x02\x12\x09\x5f\x2f\x8d\x11\x7b\x2d\x20\x0c\x76\x09\xca\xb5\xbe\x7a\xd6\x87\xce\x9a\xec\xe8\x1d\x59\xf9\x5d\x65\x87\x3b\x3a\x25\x12\xb1\x22\xf5\x98\xaf\x0c\x0f\x83\xab\x99\xa5\xd7\x30\xce\x3d\x6b\x11\x32\x2a\x65\xac\xfa\x26\x9d\x05\x0f\x40\x22\x72\x54\x30\x09\x69\x61\xb6\x5d\x07\xf5\x46\x6e\xa0\x7f\xfa\xbb\x17\xf4\xc7\x4f\x95\xfd\xfa\xf2\xdd\x6f\x9f\xc9\xd2\x03\xe1\x58\xcf\x1e\xe3\x72\x12\xb7\xb3\xd9\xb8\xb8\xe9\xc3\x3d\x52\x5a\x76\xee\xc8\x6d\x99\xa3\xc6\xd6\x3f\xaa\x55\x52\x06\x72\xc9\xa5\x80\xf7\xb6\xfc\x3e\xc7\x67\x09\x97\xa8\xf8\x61\xd0\x12\x22\xdc\xfc\xd0\x48\xc9\xca\x78\x8b\xc0\x2e\x98\xeb\xea\xd2\xd1\xcc\xed\xaf\xe2\x47\x5f\xf5\x6c\xa1\x1f\x97\x58\x78\x3e\x16\x9e\xa7\xe5\x2a\x32\x0e\x57\x11\x3f\x5c\x45\xe2\x70\x15\x71\x5e\x59\xd7\x96\xc3\x37\x0f\x54\xe2\x48\x4d\x3c\x25\xd6\xb8\x68\x79\xb4\x13\xf9\xe5\xc4\x6a\x67\x0b\xbf\x9c\xc8\x57\x0e\x78\x6b\x85\xb7\x54\x26\x17\x05\x77\x9b\x94\xdc\x84\x73\x92\xfb\x0f\xfc\x46\x7c\x69\x1f\x12\xdd\xc1\xbd\x25\x99\xc9\x4a\x88\x1d\xd3\xc2\xef\xc0\x45\x49\x68\x9c\x3d\xe3\x52\x7f\xed\xcb\x9e\x79\x38\x18\x2c\x55\x8e\x69\x49\xc5\x13\xb5\xa0\xc6\x52\xe5\xf0\xe1\x45\x12\x7b\x89\x54\xcb\x8b\x24\x97\x17\x89\xc9\xe1\x45\x12\x87\x17\x89\x1f\xc2\x9d\xf2\xd5\x8b\xc4\x0f\x2f\x92\x38\xbc\x48\xfc\xf0\x22\xf1\x1f\x78\x91\xf8\xe1\x45\x62\x87\x17\x49\x1c\x5e\x24\x76\x78\x91\xc4\x4d\x2f\x92\x9a\x3b\x79\x9c\xad\xec\xdb\x57\xef\xdf\xbc\x7e\x7b\xdb\x02\x8c\xf2\x24\x1a\x5b\x41\x19\xf1\xd8\xd5\xa8\x71\x1a\x8a\x4e\x21\x57\xd3\x38\x70\x07\x09\x3c\x12\x65\x20\x40\x9f\xc5\x76\x38\xb7\x92\x34\x86\x2f\xb2\xc0\xcc\xcf\x48\xc4\x88\xdc\x73\x13\x98\xc9\x03\xa1\xa5\xae\x71\x26\xd1\x4b\xe8\x38\x4b\x51\x6e\xf8\xbf\x49\xee\x38\x21\x61\x84\x18\x10\x17\x79\x59\x81\x09\x1d\xe5\xb6\x96\xe5\x86\x8e\x34\xd9\xa3\xdb\x8a\xf5\x1b\x2b\xec\x68\xac\x68\x15\x12\xaf\xb3\xfa\x8d\x15\x29\x3e\xd6\x54\x9e\x73\xac\x90\x3e\x22\xab\xa1\x2f\x46\xd0\x8f\x50\x25\xbe\xe6\xbd\x91\x92\x75\xeb\x01\x09\x5d\xf5\xf5\x90\xae\x71\x79\xa1\x8c\x15\x36\xc0\x11\x53\x91\x1e\x3e\xfa\x44\xad\x98\x2e\xb9\xd5\x3c\xd5\xf7\xc4\xe0\x4b\x7d\x9f\xea\x33\x13\xa3\x8f\x37\xd5\x77\xef\xdf\xbf\x7a\xfb\xf2\x36\x14\x4e\x43\x56\xa3\x7d\x20\x87\xe2\x32\x48\x05\x54\x06\x2b\xa5\xc6\x21\xc5\xd5\x5d\x3e\xa5\xae\x92\x6e\x84\x9a\x09\x85\xfe\xa8\x79\xdf\x58\xbc\x71\x1f\x7b\xfd\x8c\x59\xb2\x6c\x12\x3e\x6b\xbc\xcd\xe5\xd0\x6c\x03\x6a\xb7\x30\x9f\xac\xda\x12\x26\x0e\x48\x54\x81\xf7\x11\x85\x42\xe8\xa0\xce\xb4\xa3\xde\x4b\x8f\x81\x64\x1e\x84\x68\x28\xd1\x3b\x22\xd5\x43\xfb\xad\xda\x06\xc2\x96\x89\x66\xc2\xee\x42\xb9\x21\xa9\x06\x51\x14\x51\x8d\xeb\xbb\x3b\xd4\x38\xb6\xe3\x75\x70\x81\xa0\xda\x11\x76\x04\x07\xa2\x83\x75\x82\x34\x60\xd4\x47\x93\xa8\x3d\x28\xd2\x98\x78\xbd\xc8\xfb\x7a\xf5\x89\x63\x3b\x06\xec\xe1\x9e\x8b\x7f\xb9\xec\x75\x54\xd4\x1b\x91\x26\xa9\xe0\xbe\xc5\x8e\x35\x56\xb2\x5e\x94\xcb\xa1\x3d\x58\x5a\x1e\xb9\x91\x91\x8a\xc6\x57\x35\xb4\xd4\x26\x89\xb2\x44\xb4\xfa\xd2\xd7\x3a\x6e\x99\x7a\x17\x42\x90\x78\x47\xa1\xc7\xc2\x2f\xd9\x0f\x75\x4e\x61\x18\x7c\xb6\x70\xa1\xc3\x96\xb9\xca\x2d\xd5\x9d\x1c\xda\x42\x78\x1e\x3d\xbc\xbd\x5a\xec\xd1\x6a\xf9\xfd\x33\xb9\x70\x9d\xea\xa5\x25\xee\x4a\x7c\x8c\x1e\xf0\x2d\x90\xee\xd7\x4a\x60\xe0\x8b\x17\xa5\x0b\xbe\x28\xf1\xfa\x41\xd8\xf1\x43\x3f\x9b\xad\xbf\x6a\x67\xd7\xe5\xfa\xbb\x6e\xaf\xbf\xeb\x79\xeb\xbe\xd9\x35\x24\x3f\x69\x3b\x9a\xbb\xdd\x77\xff\xe3\xc7\x00\xf3\xdd\x5f\xbf\x7a\xfb\x1c\x82\x35\x95\x9a\xc1\x7e\xb1\x4e\x25\x41\x5f\xea\x8f\xb3\xa9\x3c\xdc\xbb\x0b\x12\x6d\x94\xac\x70\x60\x5b\xb9\x9d\x47\xa3\x9a\x8f\x3f\xc8\xd7\xf8\xf2\xd9\xb4\x79\x10\x75\x15\x61\xcf\x25\xa7\x87\x2f\x7e\x89\xb0\xc9\x6e\x7a\x24\x81\xa5\x55\x8b\xac\xa8\x82\x0d\x38\x2c\x14\x60\xc9\x95\x4c\x6c\x39\x37\x20\xc2\xce\x21\x15\x2d\x62\x74\x22\x41\x08\x4e\xa0\xaa\x0f\x68\x46\x3b\x71\xae\xaa\x0b\xb0\x9f\x97\x00\x72\x2a\x18\x59\xe2\xd1\x49\xd3\x56\x3e\xad\x12\x34\x94\x12\x35\x75\x60\x6d\x3a\x49\x72\x09\xad\x77\x27\x36\x20\x95\x76\x42\xfd\x99\x3a\x32\x54\x98\xa7\x82\x7b\xb8\x95\xa9\x03\x3c\x9d\x84\x04\xc9\x32\x4e\x72\x6d\x40\x52\x76\xaf\xee\x48\xa2\x0e\x4c\x5d\x0a\x94\x20\x84\x15\x3e\x91\x18\xd2\x68\xa6\xe1\x85\x04\xdf\xa6\x53\x04\xd4\x5f\xa7\x92\xae\x4c\x8a\xfd\x42\x45\x96\xf0\x96\x21\xf5\x1d\xa5\x26\x90\x48\x9a\xe0\xbc\xca\xc5\xdf\x23\x26\x41\x67\x94\xc8\x7f\x00\xbb\x00\x11\x12\x69\xad\xa8\xd8\x9c\x54\x38\x0b\x92\xb6\x22\xeb\xab\x88\xb6\xc1\xb1\x73\x6a\x1b\xc8\x28\x44\x77\x23\xc6\xe4\xbe\x42\x36\x09\xea\x13\xe6\x49\xd8\xe9\xdc\x77\x9c\x70\x47\x4c\xfa\x2a\xfd\x88\x22\x1a\x32\x7c\x15\xde\x53\x93\x43\x10\x40\x64\x9d\x1c\x91\x75\xc8\x10\xa4\x01\xe3\x1c\xca\x53\x5e\x23\xeb\xc6\x35\x1f\x90\xda\x39\x23\x61\xf0\x42\x61\xbb\x95\xd8\xa8\x06\x0b\xa5\x0b\x06\x21\x2b\x31\x89\x1e\x82\x06\xf2\x01\x99\x5e\xf3\x01\xc1\x6b\x2c\xa7\x0c\x24\x06\x64\x94\x6e\x5c\xb5\x09\xb0\xbc\x98\xf7\x95\x2f\xc4\xac\x2d\x03\x6a\xcd\x59\x64\x4b\xa1\xa9\xe9\x77\x23\x6c\xba\x8e\x36\x78\x20\x4d\xe3\x80\xf5\xb6\xf0\x86\x22\x8c\x3b\x90\x76\x6e\xa0\xa2\xd4\xbc\x2e\xe0\x87\x7b\xcb\xd1\x82\x73\x47\xa9\x35\x29\x9c\x5b\x0c\x2a\x51\x52\x27\xa2\xef\x8a\x2c\x59\xda\x24\x08\x75\x31\xb8\xee\xef\x36\x59\xb3\xb9\xf6\xc9\x30\x78\x0a\x0a\x79\xea\x60\x24\xa9\x50\x59\xda\x67\x44\x0a\x06\x7c\x0a\xe1\x97\xc7\x46\x7b\x6d\x4e\x46\x4e\xe9\x95\xe8\x22\xe0\x72\xae\xfb\xe8\x8c\x58\xc7\xa1\x8e\x24\xba\x89\x3a\x57\x2b\x65\xc9\x2a\xe9\xd9\xb9\x29\x8f\x7d\x89\x24\x69\x77\x19\xbd\x99\x32\xc2\xf0\x10\x7b\x69\xdc\x7c\xd0\x3c\xbe\xe8\xf6\x6e\x1f\x8f\x76\xfb\x97\xaf\x5f\xbd\x7f\xf5\xe1\xf5\x33\x59\x49\x57\x85\x2e\xdf\x71\xa2\x88\x6d\xe4\xb5\x52\x24\x57\xe5\x3b\x64\x8b\x5b\x95\x28\xed\xb8\x04\xf8\x55\x4f\xad\x13\x3f\x6c\x81\xf5\x31\x78\x4a\x28\x76\x58\x0e\x04\xa1\x5c\xf5\x8b\xf6\x79\x6d\xeb\xe1\x1e\x31\xc2\x92\xb6\xe3\x44\x6b\x5e\x56\xa4\x09\xaf\xcc\x84\x00\x37\x50\x4b\xd4\xfa\xcc\xe3\x52\x92\xdc\xe1\xa9\x5c\x29\x06\x64\x05\x6c\xd7\xab\xf1\x94\x90\xef\xb1\x9a\x3f\xd2\x1f\x88\xe4\xbc\xb6\x75\x7b\xd0\xf2\x31\x16\x79\xf7\xcd\xef\x7f\xa4\x14\x58\x6d\x7c\x4d\xf8\x06\x6b\x67\x60\x64\xf1\x8e\xac\xb5\x3c\x6c\x16\xb3\x61\x59\xf6\x6a\x26\x83\x15\x88\xc9\x5a\xa1\x27\xb0\x5c\x66\x24\x91\x14\x94\xf7\x1c\x70\x8e\x36\xd2\x8b\x0d\xda\x05\x55\x53\x05\xa4\xd7\x87\xe1\xde\x18\x1d\xde\xaa\x43\x0f\x3b\x75\xd8\xee\xc0\x7d\xd6\x82\x09\x96\xb3\x48\xa4\x7a\x9e\xd5\x97\x10\x43\x12\x6c\x57\x3f\x47\xd8\x1e\x21\x77\xa8\xd2\xea\x86\x15\x8e\x5c\xa7\xa6\x70\xb8\x28\x52\x83\x77\x16\x36\x77\x87\x02\xdb\x44\xd1\xa6\x96\x0c\xc3\xb1\x52\x25\x5b\xc0\x27\xd7\x06\x5f\x8c\x74\xaf\xf3\x82\x13\x8a\x74\x20\x89\x7b\xc5\x63\x5a\xf5\x9d\x64\x7d\x7b\x76\x78\xf8\x71\x76\xd4\xdc\x94\x2e\x48\x14\x21\x32\x50\x57\xb7\xc8\x61\x14\x89\xd0\x3c\x0f\x93\x87\x65\x33\x2d\xb9\xdd\x96\xb7\x32\x2c\x29\x1e\x30\x07\x72\x5f\x01\xb7\x69\x70\x6d\x31\xda\xa3\x60\x11\xaa\xef\xb6\x5c\xb9\xb4\x56\x34\xb7\x39\x1e\x2a\x58\x75\x87\xb7\xf5\x11\xcd\x91\x23\xce\x96\x8c\x81\x64\xf2\x45\xbf\x10\x8c\x30\x0e\x5f\x19\xa1\xfd\x28\x11\x4b\x08\xfd\xcc\x91\x48\x4e\x54\x54\x97\x90\xb5\x94\xe7\xd1\xc3\x87\xfb\x11\xe8\x69\xbd\x19\x79\xb5\x65\x89\x57\x25\x4b\x73\xae\x64\x65\xdd\x8e\xb4\x49\xd4\x75\x0f\xcd\x55\xbc\x11\xd2\x60\x47\x01\x05\x64\x5c\x3a\x1c\x64\xeb\x69\xfa\xf8\xfd\x18\x00\x41\xc9\x1c\xc6\x70\xad\x40\x02\x73\xc4\xd5\xf3\xea\xf1\x89\x09\x45\x09\x4f\xbc\x52\xdc\xd2\x14\xb1\x3b\x97\x65\x88\xaa\x16\x8c\x11\xb1\x8f\x9a\x91\xdd\xe6\xea\xf3\xed\x9d\xf0\xe2\xd1\x4e\x78\xf7\xfe\xcb\x5f\xbd\xfa\xfa\xf5\xb3\x29\xd1\x47\x6d\xb6\x6e\x3b\x72\x4e\x08\xb5\xa2\x76\x61\x03\x71\xf2\x83\x6c\x0f\x1b\x2d\x90\x1f\x2c\xb0\x96\xcc\xa0\xd9\xd8\x0d\xf5\x24\x09\x90\xbd\xd6\xa4\xd4\x5a\x56\x47\x04\xd3\x20\x45\xbd\xc9\xec\x63\xc7\x31\x7a\x2b\x31\x0a\x21\x42\xa8\xb5\xd8\x87\x4d\xeb\xbe\xb2\x98\xd4\x76\x21\xd2\x7e\x8e\xe4\x0b\x71\xa7\xe5\xd3\xc6\x83\x1b\x46\x1d\xd1\xf3\x6c\x77\x24\xe3\x5a\xfb\x78\x74\xe8\x0d\x50\x3e\xf6\xc8\x4f\x12\x8b\x49\x4a\xe7\xc3\x48\x27\xb1\x09\xa1\xda\x90\xec\xd5\x2b\x5a\x0e\xe4\xbe\x08\xdd\xaa\xa6\x45\xd5\x0d\xe8\x4f\xd1\xc4\x51\xbe\x68\x1c\x19\xb8\x02\x09\xe2\x2d\x56\xb6\x2a\xed\x8b\xa2\x13\x3c\x5b\x20\x48\xf5\x7e\x19\xc3\xf7\x44\x02\xfb\x12\x98\xc1\x81\xce\xa3\x70\xbb\xd5\x80\x20\xa0\xc9\xa1\x97\xf3\xda\xd8\xe9\xf0\x3b\x1c\x5c\xec\x65\x2c\x77\x93\xe4\x96\x24\x17\xea\x36\xce\x2e\x7a\x24\xda\x86\x55\x82\xef\xa8\xdb\xda\xc7\xcb\x8a\x2b\x7d\xb9\x8a\x52\x6f\x49\xbc\xd7\x71\xa0\x92\xab\xc0\xdf\x42\x0d\x19\x28\xa0\xa2\x8b\x94\x79\xf4\xe1\xf6\x8a\xf9\xe5\xe3\x84\xd0\xdf\xbd\x7e\xf3\xe6\xd5\xd7\xef\x9e\x8f\xdb\x14\x47\x1c\xd0\x86\xe8\x23\xe1\xb3\x49\x6e\x05\x7b\x8c\x60\xf1\xdf\x6a\x51\x67\xcf\xb3\xab\x6e\xc7\xbd\x0f\xf7\x48\x22\xcf\x7d\xcb\x40\x7a\x92\xf3\x08\x85\xa1\xe9\xfa\xd0\x28\xe9\xa2\x27\xac\x34\xc7\xbd\xb7\xfb\xfd\xf2\x71\xea\xee\x77\x5f\xbd\x7e\xf9\xe2\xcd\xdb\x77\xcf\x95\xbc\x40\xc6\x5b\x3f\x8f\xec\x17\x8f\x7e\xa6\x1c\x97\x08\x3f\xd7\x85\x8b\x3c\x37\x4a\x5f\xfe\xf1\xe3\xd8\xc7\xd7\xbd\xff\xe4\x0f\x33\x0d\xfe\xad\x8a\xf0\x55\x03\xaf\x1e\x35\xf0\xfe\xd5\x57\xaf\x3f\x7c\xfb\xea\xfd\xab\xdb\xb1\x33\x43\x9b\x49\xee\xc8\xdb\x04\xd8\x88\xdd\xc7\x45\xf6\xd8\x56\x6e\x9d\x8e\x5c\xd3\xa8\x38\x3a\x90\x67\x11\x09\x63\x10\x6f\xd5\x91\x51\x67\x2c\x07\x43\x98\xa5\x72\xa5\x13\xa2\x36\xa8\x08\x19\x4a\x20\x14\xd8\x45\xdd\xe0\xdc\x71\xa2\x08\xe5\xa0\x3c\xc4\x09\x52\x18\x80\x81\x8b\xe2\x48\x8f\x49\xfb\xaa\x91\x49\x4d\xd2\xe0\xba\xc2\x7e\x47\xb6\x92\xb6\x88\xd0\x5c\xfd\x2e\x56\xb1\x3e\x00\x6a\x54\xe4\xd4\xb3\x26\x4e\xc0\x94\xdc\x15\x7c\x33\x05\x6f\x05\xab\x20\xb0\x8a\x02\xaf\x2b\x6e\x84\xbb\x1d\x89\x9c\x1c\x75\xb8\x8f\xb7\xd5\x89\xa3\x84\xbb\xc9\x52\x85\x3b\xbc\xbc\x27\x1e\x1d\x7a\x0c\x08\x3b\x64\x13\x14\xc3\x41\xd5\xf8\xa1\x47\xb6\x5f\x85\x93\x4d\xd0\x98\x47\x0f\x1f\xee\xeb\x8b\x34\xe9\xc2\xa2\x67\x25\xbd\x8c\x12\xdc\x98\x90\x92\xb3\xd8\x74\x8c\x62\xbf\x81\x02\x36\x1e\xb4\x0f\xd5\x3b\x27\x41\xa6\x4e\x0b\x85\xfb\x8c\x91\x6f\x63\x65\x63\x38\x47\xf8\xe6\xca\xf5\xce\xb3\xa6\xae\x06\xcc\xed\x8c\x6a\x6f\x89\xfc\xcd\x48\x74\x6d\x28\xe1\xa6\xcd\xa3\xef\xe0\xfd\x6c\xa0\xd1\x61\xab\x28\x4f\x0c\xbc\xe0\x62\xfe\x0c\x3c\xfa\xd5\xa3\xb5\xf5\xf5\x8b\x97\xef\x9f\x11\x20\x91\x85\x4b\x2c\xcf\x1c\x47\x62\xbc\x54\x24\x74\xb8\x0d\x5b\x7f\xd9\x1f\xc3\xd6\x57\x5f\x3d\x57\x77\x0d\x1e\x68\xcc\xbe\x5c\xd1\x18\x65\x5e\x40\x13\x78\x2a\xbc\x9a\x3b\xa1\x46\x08\xa2\x4a\x3e\x26\xe9\x41\xa6\x71\x50\xe5\xbe\x42\xe7\x67\x51\xd5\x45\x95\x91\xbc\x8a\x79\x45\x59\xd5\x9b\x57\x01\xe7\xb0\x86\x4b\x24\x2b\x49\x2d\xea\x48\xa3\xa8\x6d\xef\x1d\x6f\xce\xb1\x50\x53\x61\x79\x43\xa4\x63\x5e\x23\x97\x78\x4a\x71\x21\x5a\x1e\xf9\x77\xf5\xda\x87\x7b\xf5\xa3\xeb\xba\x4a\x10\x17\x86\xe2\x95\xf1\xc5\x96\x9a\xc8\xe7\x0a\xbd\x45\xfc\x16\x76\x1a\xa1\x8e\x06\xf2\x59\x2c\xb5\xf5\x90\x19\xbc\x32\x36\xae\x1a\x2b\xf5\x38\x12\x52\xd7\x9b\xd7\x89\x15\xc2\x43\xda\x93\x31\x83\xa1\xcb\x19\x88\x06\x06\xcb\x5b\xc9\x82\x86\xed\x36\x04\x27\xcd\x50\xab\x25\x64\x75\xa3\x80\x33\x3a\x56\x8f\x5f\xfb\x7c\x7b\xfe\x1e\x2b\xfe\xbf\x79\xf3\xdd\x87\xaf\x5f\xbf\x7d\xae\xf4\xea\x28\xdc\x96\x67\xea\xc1\x97\xe0\x71\xf6\x41\x17\x1e\x79\xb6\xe8\xf8\x9b\xcc\x2f\x75\x43\xfd\x4d\xec\x81\x1b\x06\xd7\xc6\xef\x32\xda\x89\xce\xdc\xe5\xb2\x4c\xc0\x32\x2e\xa7\xdb\xc4\xf1\x97\x8f\x15\xf8\xdf\xfe\xf6\xdd\x87\xef\x50\xab\xf4\x19\xaf\x31\x86\x93\xeb\x59\x8c\x2e\xa1\xbc\xc1\xc5\xb1\xb3\xed\x8e\x9c\xb8\xb6\xa4\x3c\x38\x4a\x23\x06\x0a\x2b\x04\x0a\xe0\x82\xff\x50\xbd\x4a\xae\x42\xc8\x28\xbc\x85\xcc\xb0\x59\x37\xf3\xca\x3e\xe4\x00\x02\x9e\xc8\x9e\x04\x67\x7b\x54\xed\x2f\xb1\x57\xa1\x6c\x95\xe5\xce\x44\x4c\x71\x16\xa1\x1d\x62\x54\xbd\xeb\x10\xac\xc6\x54\x88\x41\x19\xd3\x3a\xdf\xfd\x20\x21\x95\xc7\x0e\xa7\xfc\x82\x84\x70\xd2\x82\x5c\x85\xe8\x8a\x92\x0f\x50\xe2\x4f\x02\x26\x20\x62\x25\xd8\xae\x09\xe1\xdb\xbe\x12\xc6\x5f\x93\x6b\xe6\x5a\x54\x9d\x3b\x2c\xca\x69\xbc\x29\x22\xa2\xf4\x9c\xcc\x97\x9b\x91\xfe\x35\xe8\x8f\x35\xef\xa8\xa4\xf8\xa3\xc3\x6e\x40\x72\x7d\x9c\x9d\x08\x35\x3e\xa0\xe8\x5c\x3e\xd3\xb5\xd8\xb1\x19\xb5\x23\x5f\x2e\xd1\xa1\x6c\x24\x56\xde\xd7\x09\xe0\x8a\xac\x72\xa7\x4b\xf0\x83\x5b\xb9\x1d\x43\xcd\xd7\x28\x14\x24\xaa\x88\x81\x7c\xc3\xa8\x77\x68\x90\x4d\xd5\xd6\xaa\x97\x7e\xa4\xd6\x63\x45\xe2\xf0\x5d\x50\x4d\x11\x35\x46\xaf\xbb\x43\xec\x0e\xe3\x69\x7c\xcd\x59\x04\x8c\xe7\x05\xff\x30\xf8\xde\x96\x8a\xc5\x96\xd5\x8d\x94\x56\xa1\x51\xa0\xc7\x05\xff\x54\xf7\x5c\x41\x88\xcb\x67\x92\x48\x6c\x25\x7c\xea\x9e\xfb\x9a\x05\x2b\x84\x06\x6f\x49\x3b\x54\xac\xb4\xe3\x08\x57\xf6\x62\x1e\xab\x00\x45\x90\x40\xae\xf3\x58\x05\x22\xdc\x0c\x26\x32\x2f\x06\xcc\xd2\xdc\xab\xd3\x75\x1f\x21\x27\x4d\x3d\x27\x52\xef\xb3\xb3\xaa\xec\xaa\x06\x35\x53\xed\xf6\xc1\x0a\x4d\x7f\x44\x4e\xe4\x32\x29\x7e\x21\x7c\x17\xca\x48\x7b\x1c\xca\x0d\x45\x97\x8c\x00\x43\x03\x79\xa2\x02\x79\x9f\x06\x51\x1b\x43\x11\x30\x93\xc5\x6f\x52\x6b\xe5\xcc\x42\xe2\x89\x22\x97\x4b\x09\x0e\x77\xd2\xe2\x9f\x67\x13\xb9\xd4\x3c\xdf\x5e\x4c\x8f\xad\x05\x2f\x5e\x7e\xf7\xed\x33\x41\xa8\x2b\x43\xf2\x38\x47\xe4\x86\xb4\xd4\x2c\x7c\x56\xeb\xdb\xf5\xca\xed\x96\x1e\x6b\x9a\xbf\xbe\xed\x57\xb6\x6c\x00\x83\x2f\xaa\xb9\x0b\xa3\x7c\x7d\x13\xa5\xc6\xa9\xab\xce\x40\x8c\x15\xee\xdc\x1d\xca\xc1\x41\x2b\xb6\x97\x90\x13\x0c\xe5\x90\x74\x79\x64\xfb\x61\x17\xec\xd2\x84\xf3\x63\x48\x23\x42\x01\x48\xb7\xac\xbd\xeb\xbc\x0f\x2f\x96\x0d\xb8\x20\x7d\xc5\x0a\xc2\x19\xde\x97\xed\x03\x3e\x78\x47\x6e\xc5\xbe\x9c\x84\xb9\x5f\x9d\xd7\x6e\x19\xd7\xeb\xa3\x1f\xab\xa8\xbf\x79\xf1\xfe\xc5\x57\xef\x5f\x7c\x73\x3b\xf4\x6d\x48\x6f\xfd\x62\xdc\xcf\xc1\xba\x17\x56\xb1\xc2\x59\x25\x96\x9b\x22\x0c\xc1\x35\x61\x6b\x8c\x8c\xc9\x52\x00\x69\x1c\x71\x2c\xc9\x0d\x06\xcb\x1a\x1e\x41\xfd\x2a\xb6\x63\x17\x31\x2d\x5e\x05\xd4\x60\xfd\xd2\xcf\xe3\x96\xff\x6f\xf5\xfb\xb1\x6e\x7b\xd5\x9f\x7e\xf9\xea\xed\xf3\xc8\x17\xda\x0d\x8a\x1d\xc7\xe5\x79\xdf\x22\x56\x11\x87\xd1\xfb\xee\x25\x04\xf5\xde\x1c\x71\x00\x0e\x73\x58\xdd\x5f\xc7\xda\xdb\xb0\xad\x5b\xe2\x7e\x17\x83\xbb\xaa\xc3\x4b\x14\x51\xe8\xf3\x78\xff\xed\x7e\x3f\xd6\xd2\xbd\x7c\xf5\xe5\xeb\x37\x6f\x9e\xa9\x15\xce\xda\xfa\xe6\xc4\xed\x84\xd2\x47\xd6\x4e\x9e\xcb\x9b\x72\xd4\x88\x45\x3b\xd1\x51\x72\x16\x71\xa5\x01\x1d\xbb\xd8\xbe\x4e\x46\xb4\x30\x44\x9d\x29\x8a\xaf\x9c\xa4\x84\xe7\x15\x90\x56\xd2\xaf\xb4\x93\xca\x0a\x00\x3e\x89\xc5\x52\xba\xa3\x98\x64\xb5\x84\x72\x36\xf0\xd8\x10\x46\xc1\x87\x13\xa7\xa1\x70\xfd\x89\xa5\x38\x0d\x12\x2f\x5a\x43\x65\xa5\xe2\x7e\xce\x7e\x77\x22\xd3\x69\x9e\xed\x44\x52\xfc\x09\x15\xcb\x63\x33\x21\xd4\x42\x7e\x66\x2d\x3e\x56\xc6\xbd\x7b\xfb\xe3\x5c\x23\xb4\xc8\x5b\xc1\xdf\x71\x21\xe1\xb1\x29\x4c\x9a\x36\x90\x0f\x79\x5b\x39\xe4\xcc\xce\xa1\x72\xf1\x67\xa0\xee\x2f\x9f\xd0\x7f\x7c\xfd\xe2\xc3\xcb\xef\xde\x3c\xa7\x00\x61\xb8\xef\x2b\xed\x38\x61\xa2\x55\x46\x81\x63\xe9\xf7\x56\xe9\x9e\xb8\x96\xee\xb9\xda\x6e\x3d\xaf\xa5\x7b\xf4\xb8\x34\x56\xb4\x63\xce\x44\x72\x9d\x60\x18\x46\xea\xcd\x17\xea\xac\x7b\x2e\x27\xe8\x86\xba\xbb\x29\x30\x54\xc4\x08\xf0\x0b\xf8\x84\x91\x37\xcf\xbe\x9b\x2e\x65\x1b\xb2\x8e\x93\x4f\x01\xc9\x40\xad\x94\xbb\x7a\x0e\xdd\xec\xac\x97\x7a\xf5\xc3\xbd\x2c\x07\x08\x45\xf9\xc3\x0c\x6d\x0a\xff\x0a\x9a\x2b\x65\xa9\xad\x6a\x7b\x7d\x25\x98\x8c\xb1\x10\x50\x91\xa0\x40\xb1\x09\x45\x58\x6a\xdd\x37\x10\xba\x7e\xe8\x62\xaf\xef\xdf\x51\x7f\x81\xb2\xc3\x31\x0e\x4a\x7f\x14\x3a\x93\x9e\xc8\x28\x88\xca\xc4\x2b\xb3\x21\x90\x34\x1d\xba\x19\xd4\x86\xf6\xd5\x09\x12\xea\x13\x61\x41\x8c\xb0\x89\xfc\x7e\x50\x6e\x4f\xe5\x4d\xc5\xc4\x8f\xf8\x76\x59\x6f\xa9\x0a\xcd\x84\x79\xbf\x98\xd2\x26\xc8\x6e\xcd\x67\x56\xdd\x40\xe6\xac\x43\x5b\x91\xaa\x67\xb1\xfe\x70\x5f\x00\xa3\x1e\xca\x91\x1f\x1f\x02\xe8\x70\x3e\xdb\xc8\x6d\x38\x7c\x51\x90\x23\xba\x1e\xf2\x67\xb4\xd1\xbf\x7c\xac\x99\x78\xf7\xf6\xd5\xdf\x7c\xf7\xe2\xfd\x73\x55\xb6\xa4\x58\xb0\xd1\x99\x5d\xd7\x8a\x47\x8c\xf5\xb0\x0b\x89\xfb\x26\x2b\x9a\x9e\xcf\x62\xe3\x12\x46\x0f\xf7\x70\x27\x05\x6f\xa4\xc6\x1c\xdb\x91\x4d\x07\xe6\x68\x85\x14\x11\xdb\x71\x4f\xc1\x6d\x45\xaa\xf6\x33\x91\xe9\x85\x7c\x9c\xeb\x97\xe2\x4c\x6a\xf8\xd3\x86\x6f\x36\x18\xc9\x12\x52\x3b\x92\x5f\xe2\x16\xd6\xf1\x70\x5f\xec\xbe\x9e\xae\xbb\x2d\x65\x4b\x8a\x3b\x64\x2a\x5b\xbf\xdf\x1e\x87\xc7\x3a\x93\x77\x6f\x5f\xfd\xfa\xc5\x9b\x3f\x4c\x6b\xf0\x91\xaa\x17\x48\x8c\xdc\x34\xf3\xf8\x28\xa8\xec\xf0\x51\xb0\xb2\x15\xfd\x59\xf7\x3c\xdc\xa3\x22\xaf\xc6\x99\x9d\x6a\xc4\x6a\x5e\x61\xc7\xaa\x11\xe3\x0d\x45\x3c\xd4\xc6\x59\xcc\x2e\xa1\xf1\x70\x4f\xe4\x5a\x94\xcb\xfa\xc5\xc7\x96\x84\xda\x50\xa8\x36\x22\x48\x70\x1f\x0d\x45\xb3\x11\xbe\x76\x38\x51\x29\xa2\xdb\x44\x9a\x91\xed\xeb\x64\x95\x6a\x92\x66\x3e\x66\xa6\xdc\x79\x5f\xb1\x91\x2e\xbc\x6a\xa1\xd4\x7e\x21\xab\x23\x42\x80\xbc\x33\xa8\xbb\x66\xd1\x36\xde\xfd\x78\x89\x1b\x37\x1b\xc5\x98\x1c\x6a\x79\x78\xed\x75\x81\x3d\x36\xb8\xef\x98\x05\x68\xb6\xb5\x05\xec\xb1\xde\x4b\x9a\x99\xb4\x6c\x8e\x08\xe9\xcc\x66\x14\x3b\x4e\x56\x79\x5b\x32\x64\x90\x82\xfb\xc1\x72\x2d\x60\x45\x1a\x1a\x68\x4b\x2c\xb6\x88\xde\xa2\xd6\x81\xeb\xad\xec\xda\x35\x71\x8f\x75\x51\x40\xfe\xc7\x12\xbe\x2d\x10\x02\xbd\x84\x6e\xc5\x77\x98\x79\x5b\x96\xc5\xe8\xdb\xf2\x53\x61\xde\x8e\x3b\x1e\x56\x8c\x1b\x6b\x9e\x4b\x02\xb8\x90\xe7\x4a\xf8\x4d\xe7\x0c\xc1\x9f\x4e\xba\x15\xcb\x42\x52\xf0\xa2\x56\x44\xeb\x16\xd6\x7c\xb8\x0f\x12\x3c\x5d\x77\xc3\xa7\x51\xad\x99\xe6\x76\xfc\xfe\x70\xcf\xa8\x62\xa0\x7c\xe6\xf4\x1d\x19\xe9\x49\x19\x45\x48\x89\x34\xa7\x12\xdd\xa1\xba\x3d\xb4\x4e\xb0\x4a\xa0\x58\x82\xf3\xbe\x4e\x92\x9b\xda\xa1\xe6\xd5\x6b\xd9\x37\x81\x5c\x11\xb1\x7c\x53\x50\x90\x15\xe6\xd0\xda\x06\xab\xa0\xc2\xb2\xec\xc2\x01\x07\xb9\xae\x04\x2a\x24\xe4\x64\xf6\xb3\xf3\xee\xa0\x84\xd2\xc6\x51\x5e\x85\x80\xf7\x88\x27\xaf\xa4\x4f\x87\x81\x4d\x5d\x77\x29\x3a\x8a\x22\x4e\x2b\xd3\x63\x71\x79\xab\x9b\x75\x1a\x54\x1d\x46\xd3\xd6\xab\x75\xb7\x65\x35\xf6\x55\xa2\x8e\x3c\xa0\x3a\x23\xea\xb1\x2b\xe2\x8d\x13\x9e\x89\x77\xd4\x35\xa7\x05\x1f\xce\x77\x8c\x1c\x62\x66\x54\x52\x03\x8a\xb2\xc4\xf0\x1a\x9c\xda\x58\xf8\xca\x10\xdd\xd9\x57\xc5\x12\xa6\x80\x7e\x91\x60\x59\xb2\x19\x8a\x40\x55\x50\x5b\x3a\x93\xda\x8e\x12\xb2\xf5\x01\x5e\xf2\x83\x23\xf6\x62\xa8\x23\x36\x72\xf0\xaa\x63\x3d\x88\x77\xd1\x01\xef\x1f\x14\x40\xe3\xe5\x7f\x34\x4a\x70\x5b\x15\xf9\x26\xdc\xca\xb4\xef\x38\x22\x2b\x03\x84\x27\x9e\x8a\x98\x33\xa5\x79\x54\x1c\xa7\x65\x1d\xef\x3e\xce\xcc\x5e\xdc\xea\x86\x87\x70\x2d\xea\xc7\x4a\xb0\x6b\xf9\xc1\x67\x9d\x1b\x8b\x07\xa0\xc2\x57\xae\xda\x9a\x05\xbe\x6c\xf0\xf4\x8f\x05\xc0\x46\xd3\xc2\x47\x96\x4d\xdc\xf6\x62\x2e\x25\x48\x14\x24\xe3\xa1\xa8\x1f\x4e\xe9\x48\xe8\x90\x2b\x66\xeb\x54\x23\x50\xc7\x50\x64\xc7\x3a\x11\x0b\xbe\xec\xc4\xfd\x00\x5a\x7c\x70\xd4\x13\x8f\x8e\xca\x49\x75\x82\x4a\x7e\x27\x86\xb9\x00\x06\x23\x86\x81\xf0\x44\x45\x7a\x22\xee\x4e\xec\xe7\x4c\xdf\xe1\x8f\x4d\x3d\x50\xe5\xff\x44\x21\x2b\x4d\x08\x17\xce\xf0\xd1\x4e\xe2\x0b\xc3\x9c\x64\x38\xe2\x5a\xeb\x04\xa6\xba\x13\x4c\xfc\x88\xf4\x19\xba\xdc\x34\x08\x09\xa6\xab\xd3\xba\xd7\xd1\xc6\x5a\xeb\x48\x54\xb6\x2c\xa1\x92\x82\xf2\x78\x3a\xa2\x95\x14\x8a\x18\xb5\xa0\x66\x62\x4d\x33\xa6\x39\xa3\xf0\xa0\xc5\xaa\x14\x6d\xb0\x8a\x2e\x16\x7a\x6f\x28\xb6\x44\x63\x5f\x27\x45\x15\xa1\xaf\x08\x9f\xbe\x0a\xdc\xd1\xaa\xd2\x03\xff\x2f\x58\x45\x22\x96\xe3\x73\x3d\x15\x64\x77\x45\x22\x1d\xb5\x43\x3b\x9e\x49\xf1\xdd\x92\xea\x58\x64\x1a\xbf\x5f\x9b\xb9\xb9\x3a\x5e\x3e\xd6\x5f\xfe\xe4\xf9\xdc\x83\x7f\x2f\x25\xc9\xee\x91\xda\xca\xdc\xce\x36\x62\x13\x64\x54\x12\x3a\x1b\xc9\x76\xbd\x72\xfb\x03\x1e\x2b\xf0\x7e\xf2\xbc\x84\xfd\xf7\xf3\x01\x51\x4c\x78\x70\x9e\x47\xc6\x86\x08\x73\x73\x39\x9b\x8f\xed\x7a\xe5\xf6\x07\x3c\xd6\xf1\xfd\x64\x65\xb9\xfc\xd5\x9b\x57\xb7\x63\x7e\xfe\x7e\xbe\x02\x01\x9e\xde\xc7\x85\x2c\xe9\x1c\x39\xd6\x3d\xe1\xb6\x81\x3d\xd4\xaf\xa8\xeb\xe4\x44\x1b\x4c\x75\xc3\xfa\xd9\x0b\x56\x1c\x4f\xde\xfe\xca\xc7\x4a\xb5\x9f\x3c\xef\x06\xff\xf7\xf4\x81\xb0\xcb\x97\x40\x52\x7b\x39\x86\x14\xb9\x2d\xce\xec\x28\xc4\x42\x3e\x68\x25\xc7\x73\x94\x49\xf4\x82\xc1\x7d\x55\x25\x72\x2e\xa9\xda\xd7\xa5\x15\xd4\x14\x36\x81\xfa\x03\x31\xb5\x79\x47\x21\x7d\x5f\xac\xbe\x90\x09\x18\x42\x1a\xdc\x81\x30\x62\xd2\x01\xc6\x75\x47\x7e\x16\x47\x9e\x00\x6d\x14\x7d\xb9\x15\x52\xf8\x62\x42\x34\x4a\x68\x18\xb5\x0b\xb8\x44\x7d\xc2\x49\xb3\xe2\xa2\x75\x69\x4d\x4a\xf0\x0a\x88\x08\xd1\xd5\x55\xc8\xf9\x89\xfe\x20\xc4\xb4\xba\xb1\x0c\x33\x14\x26\xd0\xd4\x50\x24\xaf\x94\xe2\x43\x8e\x04\xcd\xe3\x19\x49\xe4\xe5\x63\xe5\xd5\x4f\x7e\xd4\x29\xe7\xef\x67\xde\x60\xc2\x0e\xce\x65\xcb\x0e\x5f\xa5\x7c\x08\x5c\xbb\xaf\x51\xd9\x61\x3e\x19\x74\xe4\xab\xc0\x25\x24\xfb\xe7\xdc\x71\xe2\x79\xa4\x39\xf2\xd0\x7a\xea\x8e\xdc\xfa\x8e\x4a\xb6\xab\xd0\xa9\xd6\x25\x99\xd7\xb6\x1e\xee\xc3\x6b\x6d\xf0\xd8\xd7\x09\x34\x58\x75\x6d\xd8\x1c\x68\xac\xe7\x0e\xac\x37\x7a\x36\xac\x9f\xba\x84\xfa\x17\xf5\x14\x4e\x3c\xbd\x65\x97\xf5\x6a\x3c\xe5\x9a\x3b\xb4\x67\xae\xb9\x5e\xe8\xc1\xf3\xda\xd6\xed\xb9\x78\xac\xde\xfb\xc9\xfb\xe7\x9c\xc1\xff\x7e\xe6\x01\xc1\x39\xb5\xce\xd6\x89\x19\x82\xe0\x29\x46\xae\x90\xd8\xa1\x03\x4e\x12\x34\xe0\x98\x32\x1a\x65\x97\xdd\x6b\x8c\x6b\x10\x10\xb0\x30\x46\xc2\xb3\x9e\x0a\x44\xa1\xb4\x41\x3d\x3e\x0a\x99\xd6\x9b\xb1\x70\x3d\xa0\x7d\xab\x31\x32\x68\x69\xc9\xc6\x40\xb9\x63\x32\x3d\x94\xe1\x06\xf5\x55\xe2\xa4\x01\x08\xd6\x25\x14\x1a\xb5\x11\x13\xd5\xd5\xeb\xf1\x6b\x9f\x1f\xee\x0b\xa3\xa0\x0d\x9c\x14\xb2\xb1\x7a\x51\xad\x07\x38\x54\xb8\xe4\xb4\x02\x9b\x8e\x8a\x87\xc8\x56\xeb\x2b\xee\xc2\x11\x20\xd3\xd7\x25\x98\x93\xeb\x66\xd4\x25\xac\xc7\x51\xd8\x0e\xfb\x0f\x27\x90\x61\x1c\x4b\x66\xdd\x1c\x19\xc8\x0c\x43\x83\x79\xbd\x79\x08\xed\xde\xed\xae\x4e\x1a\x1a\xad\x4b\xe8\x46\xe4\x98\xe8\x58\x20\x32\x64\xf5\xf9\xf6\xba\x78\xac\x01\xfd\xc9\xed\x5a\x77\x70\xb4\x5e\x04\xdb\x6b\x0f\x8d\x3c\x0b\xf7\x8d\xc6\xca\x55\xb3\x79\x8f\xef\xcb\x42\x5d\x50\xb0\x21\x2c\xb7\xf0\x68\xa3\x27\xea\x10\x5e\xa2\xc7\x39\x3c\x37\xd8\x87\x10\x4d\x10\x74\xe9\x0f\xc8\xbd\x6c\x9d\xcf\xee\xb4\x39\xd4\x41\xbd\x6f\xc7\x8f\xb7\x3b\xff\x58\x0d\xfa\x67\x3f\xa6\x4f\xfc\x07\x54\xb2\xf2\xee\x0f\x4a\x56\xb6\x7f\x0c\x25\x2b\xef\x3e\x96\xac\xbc\x77\xa7\xc6\xc6\x5b\x51\x3a\x1a\x03\x91\x5d\x34\xa4\xa1\xb2\x49\x10\xec\xfb\x24\x39\x47\xef\x0d\x34\xa0\xb6\x0a\xaa\x37\x9f\xc4\x5a\x64\x6f\xa7\x22\x8d\x5c\x70\x1e\x5e\xfe\x85\xc7\xa3\x63\x53\x9c\x68\xc8\x86\x24\xb4\xd4\x6d\x37\x75\x9c\x94\x8c\xd2\x4e\x99\xd3\x35\xda\x69\x74\x18\xd0\x4e\xba\xa2\xfb\x50\x53\xc5\x9a\x06\x0c\x40\x1e\xd3\x5d\x90\x93\x17\xce\x58\x36\x51\xba\x9b\x6d\x2b\xf0\xcc\x86\xa5\x7c\x7b\xe5\x3e\x56\x84\xff\xec\x47\x70\xf3\xdf\xba\xcc\xe4\x3d\xbc\xff\x00\x8e\x85\x90\xc9\x06\xe0\x58\x2d\xb6\xeb\x95\xdb\xbd\x7c\xac\x92\xfe\xd9\x8f\x80\xe3\xbf\x43\x2f\x8b\x92\x03\x01\x23\x9e\x9f\x0e\x04\x4c\xbc\x5d\xaf\xdc\xee\xe5\x63\xdd\xf5\xcf\xfe\x4b\x10\xf0\xdf\xbe\xab\x28\x66\xf5\x3d\xcc\x55\xde\x4a\x44\x5b\x30\xb7\xfb\x82\xb9\x9c\xe3\x80\xb9\xe2\x07\xcc\x25\xde\xae\x4f\xde\xfe\x94\xc7\xba\xdb\x9f\xfd\x38\x62\xfa\xdb\x7f\x08\xfb\x01\x70\xd6\x09\x02\xd6\x73\x61\x1f\xc1\x96\xa3\xbe\xa3\xe2\x11\x60\x51\x3f\x2e\xc1\x93\x09\xb0\xa8\x4e\x00\x8b\x00\x55\x43\xd7\x53\x80\x45\xe0\xc2\x45\x58\x47\x2e\xec\xc2\x1e\x77\x07\x2c\xea\x07\xc0\x59\x27\x0e\x3f\xdb\x85\x7d\xe0\x68\x02\x58\x54\xd8\x67\x20\x4f\xe6\x71\x69\xc4\x01\xa6\x70\xb2\x4a\x88\x8c\xf5\x6a\x3c\x55\xb0\x08\xf6\x04\xc0\xa2\x7a\x21\x60\xd1\xd1\xd6\xed\x01\x7f\xac\x73\xfe\xf9\xf3\xfb\xf0\xef\x52\x93\xf2\x1e\x01\x56\xb6\x22\x3d\x37\xd4\x36\xc4\x4e\x1c\xba\x5d\xaf\xdc\xee\xe7\x63\x9d\xf0\xcf\x9f\xdf\x89\x7f\xa7\x7e\xc2\xc3\x06\x7b\xb1\x38\xbd\x8c\x63\x2f\x4a\x6e\xd7\x2b\xb7\xfb\xf9\x58\x05\xfa\xf3\xff\x82\xbd\xf8\x77\xea\x2c\x10\xf4\xf7\xbb\xd1\x13\x69\x16\xd6\x6e\x44\x74\x78\x09\x9d\x6c\xc7\x6e\x74\x39\x76\xa3\xe4\x76\x7d\xf2\xf6\xc7\x3c\x56\x7d\xfd\xfc\x47\x77\xe3\xdf\xe9\x53\x18\x55\xfd\x6a\x3f\xe2\xa4\x20\x16\xf9\xb1\x1f\x21\x74\x95\x98\x42\x7a\xec\x47\x39\x2e\x01\xa9\x62\x3f\x02\xb2\x22\x84\x3b\x8e\xfd\x18\x7e\xec\x47\x19\x87\x98\x42\x7e\xec\xc7\xd4\xeb\x7e\x5c\xfb\x79\xec\xeb\x04\x01\x80\x7a\x6c\x3a\x34\x56\xfb\xd1\xf8\xd8\x8f\x71\xbd\x04\xfe\x5e\xfb\x11\x38\x3b\x97\x47\xfe\x12\x53\x48\x8f\xfd\x88\xe6\x35\xd7\x0b\xb1\x1f\x8f\xb6\x6e\x0e\xf9\x97\x8f\xf5\x49\x3f\xfb\xf6\x0f\x4d\xf1\x76\x35\x3f\xf6\x68\xfd\xe2\x23\xcf\x27\xb5\x4b\x14\xd9\xed\x47\x05\x4e\xb3\x44\xf4\xf4\xaa\x3e\xd8\xaf\x55\xaa\xf3\x5a\xa5\x9a\xe8\x63\x95\x6a\xfb\x61\x95\x6a\x3b\xaa\x54\xa3\x3a\x5f\xd7\xf5\x44\x3a\x0a\x03\x9a\x41\x5d\x59\xb4\xb5\xa4\x01\x84\xd7\x17\x02\x8e\x55\xa8\xba\x5a\x8c\xa3\x50\xf5\x91\x73\x2c\x69\x15\xaa\x46\x35\x89\x55\xa9\x5a\xe4\xee\xfb\x4a\xd5\xb2\x2a\x55\x23\x0a\x06\xa5\xaa\x91\x07\x1a\xa5\xaa\xfd\x5a\xaa\xda\xf2\x5a\xfa\x2c\xf0\x89\xe6\x51\x9f\x7c\x7b\x04\x1f\x2b\xb4\xfe\xe2\x47\x12\x06\xfc\xdd\x2a\x8d\xa2\xd8\xc7\xd2\x89\x14\x9a\x80\x4e\x04\x12\xb0\xfa\x1c\x43\x0f\x9d\x08\x44\x59\x89\xe5\x98\x04\x9d\x08\x54\x18\xdc\x91\x3a\x63\xe9\x44\x20\x15\x45\xc1\x28\x39\x74\x22\x05\x5f\xa1\x13\x81\x10\xc3\xd9\x24\xf9\x6e\xe9\x44\x9c\x96\x4e\x84\x21\x00\xb3\xee\xbc\x8a\x7b\x29\xb2\x2e\x2f\x9d\x08\x64\x29\xf7\x55\x7b\x13\x3a\x91\x25\x42\x05\x8a\x0f\x2c\x9d\x88\xfa\xa1\x13\x01\xa4\x0c\x9e\x70\x33\x84\x4e\xa4\xba\x0a\x99\x0c\xcc\x9d\x02\x6e\xea\x4b\x27\x02\x7e\x65\x47\x29\x42\xe8\x44\x6c\x1c\x3a\x91\x63\x34\x6e\x4f\xcf\x63\x75\xdd\x2f\x7e\x84\xe1\xfc\x43\xab\xc5\x7a\x77\xad\xc5\xda\xfe\xf1\xd4\x62\xbd\x3b\x6a\xb1\xb6\xff\x3a\xb5\x58\xef\x11\x45\x61\xc3\xcf\x36\x6c\x83\xa3\xd0\x30\x3e\x1b\xd1\x76\xbd\x72\x7b\x7d\x3d\x56\x94\xfe\xe2\x47\x80\xc2\x7f\x5b\x5f\xff\xf8\xd6\x17\x92\x8a\x17\x0c\x1a\x69\x1b\x9c\xc3\x6d\xe8\xd9\xdc\xb7\xeb\x95\xdb\xeb\xeb\xb1\x4e\xf7\x17\xff\x25\x00\xef\x1f\xc8\x22\xbb\xfb\x83\x82\xd2\xff\x08\x16\xd9\xdd\xa3\x82\xd2\xff\xb5\x16\xd9\xe1\xba\x99\x85\xbc\xf9\x1c\xe9\x9b\x2f\x39\xcf\x37\xb8\xd5\xd7\xaf\x82\x52\x75\xc2\xc8\xe7\x46\x23\xe8\xec\xee\x57\xa7\xcf\x67\x30\xce\x63\x65\xf6\x2f\x7e\x2c\x29\xd2\x3f\x8c\xf5\xf7\xdf\x88\xdc\x7f\xcd\xf5\x67\x05\xf2\xd4\xf6\xba\x8b\x46\x5f\x29\x93\x28\x3c\x56\xc9\x96\xe8\x3c\x51\xf1\xc6\x6d\x85\xe4\x92\x2b\xed\x05\xf4\xea\xa4\x39\xc0\x2b\xaa\x78\x2d\x85\xc3\x82\xe2\x05\x0d\x97\x61\xc8\x68\x5f\x32\x98\xf5\xa6\x1d\x60\xd1\x97\xdb\x63\x2d\x68\x46\xb5\x3a\xb5\x9d\x4b\x0a\xf1\x61\x0d\xde\x2f\xc1\x8c\xec\x23\x14\x23\xa6\xf6\x84\x02\x7f\xbd\x70\xe8\xc0\x3a\xab\x93\x66\x0e\x55\x27\xcd\xb5\x67\x90\xd8\x8e\x60\x32\x59\x5d\x0d\x19\x7b\x40\x59\x23\x63\xc9\x37\xa1\x47\x61\xae\x08\x9d\x63\xd9\xfa\x04\xc5\xc4\x69\x78\xdf\xae\xa3\x71\x7b\x4f\x3d\x36\x04\xfc\xe2\xc7\x85\xdd\xff\xb6\xad\xfe\xf1\x6d\x2b\x81\x30\x66\x7d\x5f\x27\x43\x9a\x2c\x63\xe6\x2a\x02\x02\xcb\x94\x1e\xba\xad\x06\xc3\x06\x2e\x0d\x5b\x4f\xad\x13\x3a\xb2\x06\x95\x2c\x87\xa7\x3c\x68\x17\xec\xc1\xa0\xf5\x42\x4f\x9d\xd7\xb6\x0a\xb1\xc0\x03\x2e\xf7\x75\x32\x90\x18\xe0\xff\x63\xef\xeb\x56\x25\x49\x92\xf4\xee\xf3\x29\xfc\x05\x0e\x72\xfb\x75\xf3\x1b\x5d\xe7\x45\x1c\x44\x40\x4c\x82\xce\x5d\x8f\xba\x7a\x54\x50\xd3\x25\xed\x4c\x2d\xec\xdb\x0b\xfb\xcc\xa3\xb6\xc9\x55\xe6\xe9\x5e\x86\x66\x6a\xbb\xa0\x20\xa3\x4e\x64\xb8\x47\x7a\x98\x5b\xd8\xef\xf7\xe5\xd0\x8e\xae\x7f\x0a\xe9\x40\xe8\xcd\x83\x0b\xb6\x77\x9e\x9a\x2c\x75\x55\x1d\xd0\x68\x68\x3e\xc9\xa1\x71\x95\x8f\x0e\x88\x8a\x3c\xa8\x01\x7d\x56\x77\x71\x5e\xf5\x78\xab\xdc\xa7\x9d\xfe\xfa\xe5\xd3\xdf\x3f\xfe\x9f\x4f\x8f\x21\x9c\x08\x4e\xe9\xdc\xcc\xb4\x99\xea\xc6\x44\x2d\xa6\x6e\x60\xfc\x1a\x45\xeb\xeb\x80\x82\x34\xfc\x1f\x78\x33\xf9\x85\x41\x84\x0b\xc0\xdf\x9c\x23\x14\xc4\x6d\xc7\x15\xea\x0a\xee\xe5\xfc\xff\x9a\xe1\xf1\x3d\xdf\x27\x1c\xfe\xc7\x73\xb2\x57\xea\x73\xed\x6d\xa0\x06\x62\x6f\xc7\xb9\xb7\x75\xed\xed\xb1\xf6\x76\xd4\xde\x76\xec\xed\x7e\x12\x49\xeb\xe2\x41\x93\x56\xd8\xfa\xb3\x6f\x4c\xd2\x5e\x42\xaf\x44\x7d\x63\x04\x85\xfa\xce\x14\xad\x90\x5b\xb8\xb1\x1b\x18\xd2\x24\xe4\x20\x96\x66\x7d\x1c\x44\xbf\xd8\xf7\xb4\xf6\x3d\xaf\x7d\xef\xe7\xbe\xe7\x79\x59\x84\xea\xe7\xbe\xd7\x73\xdf\xf7\xd3\x9c\x5b\x76\x5d\x43\xc3\x94\x8a\x80\x8c\x9e\x04\xa8\x54\xf9\x6d\xeb\x56\xe8\xb2\x58\x64\x06\x57\x97\xa2\xbf\x1e\xa4\x21\xa3\x50\xe3\xb0\x32\x5f\xf5\x00\xe7\x93\xcb\x9d\x88\x22\xaf\xd1\x18\x84\x9a\xfd\x60\xe3\xa6\xea\xb5\x23\x4d\x0f\xa1\xd1\xd8\x63\x43\x94\x8c\xc9\xf6\xdc\x1e\xc4\x21\xd5\x20\x27\x6c\x75\xa3\x50\x0b\x72\xaa\x85\x71\xaa\x85\x38\xd5\x02\x9d\x6a\xc1\xc7\xa5\xd4\x82\x2e\xb5\x20\x5f\xd5\xc2\xdb\x6b\xca\x11\xb4\xd3\x48\x31\x02\xd8\x5c\x9b\xb9\xb3\x11\xdb\x62\xda\x64\x08\x52\x6a\x0a\x06\x32\x5e\xad\x98\x86\xa7\x97\x0a\x62\x94\x82\x90\xa5\x20\xb8\x14\x44\xcc\xa5\x20\x74\x29\x08\x5f\x0a\x62\xfc\xbb\x82\x78\x28\x80\xf7\xb9\xa4\x3f\xbd\x13\xf8\xf8\xd6\x48\xcc\x2f\x8b\xc4\xbc\x3d\x26\x31\x7f\x05\x3a\xad\x01\xdb\x5b\xb7\x8a\xe9\xb2\x5d\x81\x07\xb0\xce\x3c\x5e\xbf\xfb\x2c\xd7\x9f\xde\x71\xec\xff\x2b\xae\xdf\x00\x99\x04\xcb\x75\x76\xdd\x3c\x6d\x1b\xb3\x71\xb5\x61\xdb\x79\xe6\xf1\xfa\xdd\xa7\xd6\xfe\xf4\x6b\x1c\xd7\x6f\x65\x11\x2f\x77\x4c\xfa\xcf\x16\x11\xb8\xec\xde\xf9\x46\x16\x76\x8d\x6e\x9b\x97\x1d\x3b\x37\x00\xec\xe5\x5f\xc5\xe9\x46\xde\x0d\x2c\x89\x14\xaa\x57\xb0\x4e\xad\x2b\x1f\x2f\xf2\x7d\x3a\xed\x4f\xef\x1b\x91\xdf\xca\x12\xff\x16\x39\x45\xe9\xfc\x60\xa9\x1a\xfa\x61\x80\x81\x4f\xbb\xa5\xaf\x0a\xbd\xae\x3b\x18\x20\xd3\x2d\xa9\x38\x77\xac\x5a\x89\xbc\x0a\x07\x40\x88\x49\xb5\xec\x1e\x75\x95\xab\xee\x50\xdc\xae\x5a\x03\xba\x8f\xe3\x9c\xeb\xed\x75\x54\x3e\x97\xab\x0f\x7e\x98\xb5\x72\x11\xc6\x04\x74\x0e\x45\x97\x3d\x2a\xc5\x2a\x55\x9a\x92\xa7\x66\xe5\x64\x78\x9f\x95\xcf\xed\xab\x16\xdd\x47\x5d\xe5\x2a\x3b\xca\xab\x1c\x40\xbc\xf9\x17\xf7\xe3\x9c\xeb\xb1\x28\xdc\x67\x2c\xff\xe7\x3b\xad\xab\xff\x00\x76\xff\x57\xb4\x50\x06\xf3\x35\x7c\x6e\x80\xf0\x34\xf3\xab\x69\xdf\xce\x33\x8f\xef\xf7\x3e\x73\x79\xfc\xef\xcf\xff\xf2\x84\xee\x8a\x8a\x1f\xfe\x46\x64\x0c\xec\x99\xea\xd0\x36\x06\x3e\x1b\x11\xcb\x31\x17\x6f\x77\x31\xff\x4c\xea\xe5\x43\xa4\xef\x56\xae\x13\xd0\x12\x7c\x36\x4b\x9f\x34\x85\x5f\xc6\x11\x00\xf5\x57\x60\x48\x0a\xeb\x55\x40\x04\x47\x73\xe5\x62\x84\xfa\x5b\x4d\xde\x8d\x6e\xca\x56\x73\x13\x63\x13\x8c\xe1\x0d\x0e\x4d\xe4\x8b\x59\x8e\x69\x01\x2e\xf4\x19\x7a\x19\xe2\xe5\xad\x74\x50\xe1\x02\x40\x27\x22\x00\x44\x5b\x6c\xe4\x3c\x16\x72\xa5\x11\xe6\x79\xb8\x54\xf7\x79\xd1\xbf\x7c\xf8\x97\xbf\xfe\xf0\xf3\x8f\x7f\xfe\xf4\x0c\x6d\x0d\x45\x84\x53\x6e\x44\xe4\x3b\xf2\xa4\xdc\x27\xba\x23\x88\x63\x00\xfb\x96\x94\xa5\xba\xdc\xf2\xe6\x51\x09\x68\xea\xbb\xe7\x82\x9a\x02\x14\xac\x91\xb1\x1d\xc5\x8e\xea\x56\x8e\xae\x78\xba\x70\x54\xc0\x03\x38\xa0\x41\x2d\x06\x70\x22\xe2\x28\x46\x26\x9a\xe0\xd8\x9c\xec\xe5\x84\xb2\xef\xf9\x39\xc6\x80\x3d\x38\x24\x00\x6a\xe8\x9e\x56\x52\x5c\x80\xa7\xd7\xc1\x2e\x27\x85\x08\xad\x0c\xa8\x3d\x6e\xd2\xd3\x2a\x46\xdb\x97\x16\xae\x16\xb9\x1d\x33\xf2\x81\x96\xc3\x7d\x0c\x70\xa5\xd0\x5e\x48\xf8\xd4\xdc\x7b\x7b\x21\x3f\x0c\x60\x90\x47\x81\xa1\x1d\xe9\x26\xa5\xd2\xc5\x96\xee\x85\x9e\xa8\xda\x8c\x8b\xb5\x09\xd5\x89\x5d\xd1\x79\x1a\xe3\x18\x9c\x9e\xfe\x9e\x6e\x4a\xfe\x63\x69\xd3\x8f\x00\xdc\x7d\x29\x48\xce\x07\xed\x82\xfb\xc3\xa7\x19\xea\x93\x65\x16\xe2\x81\x0e\x47\x71\x9b\x69\xa0\xe2\xd0\xd3\xe6\x4c\x73\x38\xed\x3e\xe3\x4b\x70\x80\x2c\x31\x80\x38\x4d\x20\xaf\x82\xcd\xdc\x85\x16\xd8\x06\x16\x0f\xdd\x88\xbc\xd7\xc1\x98\x0d\xd5\x98\x60\x48\xa4\x6a\xeb\x39\x20\xd8\xca\x71\x18\x80\x47\x54\x77\x10\x0e\xab\x5a\xa1\xe5\x29\xd3\x51\x70\x02\xc6\xa5\xbf\x58\x63\x41\xd7\x92\x3f\xe9\xb0\xfa\x70\x9f\x1e\xfe\xe1\x9d\xb2\x29\x19\xad\x83\x4b\x4e\x80\xc9\xdc\x86\x54\x8e\xd5\x7c\x07\x1e\x15\xc5\xa2\x91\x46\x2f\xa9\x50\xb1\xcb\xfb\xb1\x22\x13\x7b\xde\x2e\xc8\xa4\x22\x5a\xa1\xb6\xba\xa2\x3f\x87\xbc\x1f\x34\x7a\xe3\x18\x7b\x7e\x4a\xf4\x96\x5e\x9d\xaa\xa1\x04\xd8\x80\x3d\xa5\xd8\x7d\x3e\x46\x73\x9e\xd7\x49\x74\x1b\xc6\xfb\x04\x8d\x94\xa0\x8b\x28\x6c\x22\x3d\x3a\x65\x1c\x43\xe8\x52\x5c\x51\x48\x07\x53\x01\x49\xf6\x8e\x22\x48\xd4\x10\x82\xaa\x45\x05\xb0\x9e\x31\xac\x48\xbf\x42\xe0\xfd\x8d\xd0\x1d\x50\x16\x26\x8d\x91\x59\x5e\xde\x50\x27\x2a\xee\xd9\x3e\xe2\x70\x1a\x8b\xc3\xa8\x7f\xa5\xef\x45\xdd\xe0\xe2\x67\xea\xa4\xc7\x9c\xe9\x28\xeb\x01\x34\xb8\x61\xfd\xc6\xec\x7b\xb1\x02\x2d\x8d\x06\xf2\xe8\xd5\x3b\xb9\x51\x77\x6b\xfd\x3a\x65\xbc\xbd\xa6\x76\x06\x70\x97\xb5\xb0\x42\x14\xee\x84\xfe\x19\x52\xc3\x06\xe3\x54\x4b\x44\x4d\x7a\xbf\x99\x8c\xab\x4f\xd9\x9d\xf4\x62\x70\x9c\xa8\xe5\xf6\xd6\x54\x67\x28\x45\x94\x86\x36\xaf\x98\x8d\xe7\xd8\xf1\xa9\xd1\x24\x15\x47\x9f\xd5\xce\xf4\x95\x30\x9b\x8e\x9a\xfd\xed\x15\xa5\x9c\xac\x7a\x8d\x7c\x75\xa4\x13\x63\xd4\xaf\x63\xe8\x76\x9e\x79\x2c\x61\xf7\xe9\xf3\x1f\xde\x29\x79\xfb\x2e\x61\x7f\x44\x09\x83\xce\xb3\x1e\xd7\xd9\x79\x03\xb1\x2c\x2b\x5f\x6d\xc8\x76\x9e\x79\x2c\x61\xf7\x15\x00\x3f\xfc\x9a\x72\xc5\x6f\x45\xcc\x2e\x4b\xcc\xda\x1f\x45\xcc\x2e\x77\x62\xd6\xfe\xa1\x8a\x0c\xad\xff\x31\x6e\xc4\xa3\x5f\xa3\xcb\xc2\x71\x51\xdd\x80\x7a\x99\x7f\x05\xaf\x19\xcf\xbe\x81\x17\xde\x78\x5e\x7d\xc8\x76\x5e\xf9\x58\x0c\xef\x0b\x05\x7e\x78\xa7\xa3\xea\x5b\x91\xc0\xef\x8a\xee\x1f\x2a\x81\x9e\x6f\xcf\x2e\x7b\xba\x12\xa4\xce\x0d\x50\xfe\xca\x76\xcc\x02\xb1\xe8\x55\x06\x25\xa0\x69\x27\xf0\x29\xec\xf0\xb6\xd2\xb3\x46\xd6\x0a\xa4\xdd\x0c\x2e\x07\x3d\xcc\xd3\xba\x9d\x5c\xde\xae\xf6\x09\x38\x5d\xd2\x1e\x0d\xc1\x48\x19\x7a\x48\xe0\xf2\x5e\x94\x55\xd2\x65\x97\xee\x45\x83\x0e\x58\x52\x89\x7e\x88\x81\xf8\x21\x7f\xa1\x5f\x48\xd1\x42\x04\x4c\x21\xdf\x51\x73\x6d\xdd\x9b\x81\x43\x37\x66\xb9\x35\x40\xaa\x2a\x7b\x59\xea\x56\x65\xfa\x8e\x16\x22\x01\x09\x21\x20\xf1\xbc\xd0\x48\x54\x56\xff\x84\x0e\x2a\xe8\x52\xa3\xd8\xce\xd5\x78\xbc\xab\xfe\x03\x5e\xd3\xfb\x05\xdc\xdf\x37\xd6\x1f\x71\x63\xa1\xcd\x46\x7b\xec\x75\xa0\xd4\x50\x3d\x9f\x4e\x2d\x4a\xed\x35\x72\x67\x0c\x1c\x14\xf1\x05\x4e\x01\x99\xbc\xc7\x8e\x03\x49\x77\x1f\x68\xdf\x26\x75\x95\xf0\xdc\x05\xa2\xcd\xb3\x06\x2c\x17\xab\xe6\x7a\x7b\x45\xb2\x41\xfb\xd8\xeb\x60\xf1\x57\x91\xa6\xe7\x5a\x93\xc5\x1e\x00\x4c\x88\x68\xb3\x8f\x0b\x4e\x81\xe5\x20\xaf\x2a\xba\x83\x61\x0d\x00\xa8\x39\x34\xae\x12\x8e\x3d\x6a\xfa\x58\xec\xb8\x46\xc7\x39\xd7\xe3\xcd\x72\x5f\xc6\xf1\xc3\xf3\x9e\xc4\xef\x1b\xe5\x8f\xb8\x51\x10\x27\x05\xe2\x3e\xf6\x07\x68\x60\xa4\xe8\xdf\x72\x25\xc9\x78\x00\xa9\x8f\xcc\x47\xe1\x61\x5b\xf0\x8e\x76\xc9\xa2\x06\xcb\xb7\x82\x07\xd2\x93\x64\x1c\x47\x74\xaa\xcb\xa1\xf1\x73\xe4\x3a\xb0\x01\x04\x6f\x12\x56\x00\x8a\x55\xeb\x5c\x01\xe8\x44\x8d\xcc\xa4\x8b\x97\x2e\x0d\x3d\xa7\x3a\x65\x5d\x2e\x20\xa8\x43\xeb\xb0\x20\xb2\x33\x17\xde\x3f\x08\xd0\x73\x8e\x3a\x18\xd2\x2a\xbb\x67\x72\xa0\xe9\x54\x28\x0e\x14\x3f\xf1\xd4\x35\x47\xd8\xee\x85\x5f\x6a\x85\x7a\x0a\xce\x3a\x6c\x2f\x0a\xd8\xd6\xb8\x1c\x08\xdb\x78\x83\x01\x6a\x9b\x26\xf0\x6d\x73\x4f\xd7\x97\x75\x38\xc2\x3b\x64\x9d\xd6\xba\x50\x2f\xc6\x44\xa3\xde\x30\x69\x9e\xc2\x6d\xe8\x28\xf8\x7a\x5c\x7e\xde\xf3\xe3\x8d\x7b\x5f\x2b\xf2\xc3\x13\x90\xf4\x59\x3c\x45\x23\xb4\xbd\xe4\x4d\x82\x27\xea\xf0\x0e\x7a\xc6\x3d\x1f\x51\x6e\x5c\x33\x6b\x31\xa0\xdf\x84\x8f\xb4\x04\x5e\x4a\x64\xf2\x5a\xb6\x62\xd1\xe5\xae\x4d\x8e\xfc\xba\xc7\x81\x5e\x6c\x3d\x74\x34\x0e\xdd\x75\x34\x71\x6a\xa3\x83\x03\x9a\xb4\x37\x13\x43\x16\xd6\xbb\x17\x41\x1d\xd0\xb6\x07\x4a\xef\x53\x3e\x43\xc0\xfd\x0d\xdc\x62\x43\x75\x50\xa1\xfd\xcf\x00\x31\xd7\x05\x94\x5d\xb5\xe7\x7a\xaa\x86\xea\xe2\x04\xca\xbd\x8e\x83\x66\x6e\xf9\x38\x28\xa8\x05\xf1\xe6\x96\x06\xc4\xee\xda\x52\x15\x45\xea\x00\x39\x00\x29\xd5\x59\x50\xb3\x01\x9e\x68\xf4\x8b\xe7\x8e\x85\xf9\x8e\xb2\x19\x10\xc2\x78\xa1\x12\x4f\x1b\x60\x0d\x00\xc3\x10\x00\x4c\xbb\x17\x51\xfb\xe2\xf1\xae\xab\x73\x7f\x40\x05\x50\x75\x32\xcc\x18\x07\x91\x7b\x0b\xf7\x5c\x1e\x6d\x83\x6d\x23\x8a\x94\xb6\xb8\xba\xc9\x4d\x7b\x4a\x95\x00\xc4\xdd\xdd\x1a\xc7\x04\x88\x12\x40\x5b\x41\xc9\xd4\x53\x99\x5e\x82\x50\x2f\x15\x39\xa8\xb4\xd9\x8b\xbe\x9e\x10\x04\x2d\x36\x8a\x42\x50\xa2\xa0\x0d\x53\x4e\xdd\xc1\x30\x88\x7b\x64\x69\xc6\x4b\x97\x18\xaa\x69\x5e\xa8\x1f\x4b\x04\xde\x5e\x45\xa9\x45\xc7\x0b\x2a\x7a\x03\xea\x5a\xaf\x02\x1d\x2a\x04\x17\x32\x3f\x4c\x52\x1f\xf0\x66\x12\xcd\xc4\xaf\x78\x47\x82\x00\xd4\x40\x86\x66\x64\x07\x73\x34\xb5\x89\xd5\x97\x11\xa8\x03\xe0\xe8\x3b\x3e\x01\xc9\x50\x48\xd8\xa8\x2b\xd0\x5e\xc4\xf3\x7e\xd4\xfc\x6f\xaf\xb9\x10\x2e\x95\xac\x41\x69\xc5\x65\xa8\xed\x88\xd2\x83\x09\xb4\x5b\xb4\x10\x29\x36\x9f\x99\xbf\xc4\x0d\x35\x40\x78\x12\x29\x17\xc0\x94\x4d\xb9\xc8\x97\xdc\x4c\x69\x4c\x65\x1d\x71\xb8\x6b\x1b\x41\x07\xa6\x18\xfd\xe6\xf2\x64\x1b\xdd\xd7\x91\xfc\xaf\x77\xe1\x10\x85\x8b\x63\x8f\xd1\x45\xab\x5e\x1c\x7b\xb2\xba\x4d\x68\x71\xec\xf1\xe2\xd8\xb3\xb1\xa3\x10\x8b\x51\xbe\x91\x2f\x8b\xc9\x28\x8a\x89\x8e\x60\xf8\xa8\x9e\x58\x64\xd2\x56\x97\x33\x5b\x63\x03\xe9\x04\x1e\xf5\x24\xe0\x60\x91\xd3\x2f\x68\xf5\xa8\x01\xa2\x24\x07\x70\x45\x85\x03\xf6\x0e\x5b\xb1\xe5\xb9\xd0\x49\x93\x4e\x97\x45\x93\x0e\x6c\x9a\x32\x24\xe6\xd4\xa2\xcf\x8e\x81\x3a\xab\xb1\x88\xf4\x78\x9f\x32\x17\x91\x9e\x16\x91\x9e\xc6\x22\xd2\xe3\x45\xa4\x47\x8b\x48\x4f\xc6\x49\xa4\x47\x8b\x48\x8f\x17\x91\x1e\x2d\x22\x3d\xfa\x05\x91\x1e\x2d\x22\xbd\xbe\x88\xf4\x78\x11\xe9\xf5\x45\xa4\x97\x8b\xf9\xf6\xea\x63\x56\xb7\x31\xea\xed\xa3\xca\xc4\x42\x1a\x98\x60\x07\x1d\xc0\x5a\x90\xe2\x8a\x8b\x59\x59\x85\xb1\xe7\xc7\x8b\x58\x8b\x1e\xd5\x6d\xac\x7a\xa9\x6e\x63\xeb\xab\xdb\x18\x98\xcd\x21\x80\x80\xac\x6e\x63\xe0\x45\x76\x6b\xde\x7b\x75\x1b\xbb\xa1\xdb\x38\x75\x23\xba\x8d\xa1\xad\xc1\x53\xa4\xb9\x3c\x13\xdd\xc6\xd8\x93\xe0\x12\x45\xb7\x71\xfa\x63\x6c\x9b\x85\x57\xb7\xf1\x93\xe2\x9f\x0f\xf7\xc5\x3f\x1f\x9e\x87\xcd\xdd\x56\x7e\x55\x79\xd5\xf0\xcc\x96\xab\x3a\xc1\xb0\x77\x50\x8c\x26\x69\x52\xe8\x6c\x46\xfd\x66\x26\x3b\x59\x07\x3d\x6e\x9e\x1b\x3e\xf1\xdd\xf9\xf5\x6d\x6e\xb5\xcc\x25\x15\xb0\x38\x3a\x23\x85\x41\xdd\x0b\x93\x7e\x5a\xda\x20\xa9\x47\xe6\x3c\xa8\x8f\x99\x7a\xfb\x66\x22\x57\xf6\x79\xcb\x37\x17\x8f\x25\x9e\xa0\xa2\x08\x94\x5a\x32\xd1\x61\xbd\x5f\x52\x7f\xa4\xde\x0c\x02\xd8\x46\xf4\x86\xca\x4e\x8a\x63\xe6\x53\x05\x91\x9d\xa1\xf0\x6c\xc7\x9e\x26\xb0\xeb\x83\xf0\x3c\xa6\x34\x11\x3c\xdd\x17\x3f\xd6\x2f\x7f\xc3\x4e\x2b\x59\xb3\xb9\x64\x6d\x46\x9b\xa8\xa9\xa3\x16\xa9\x4c\xc8\xb0\xd3\x61\x47\x8a\x5d\xa7\xcd\x9b\x6b\x80\x2a\x6b\x00\x10\xd2\x80\x0e\x9c\x5e\x64\xcc\xb4\x9b\x66\x9b\xa3\x1f\xe7\xc8\x6f\xaf\x13\x40\x00\xaa\xd7\x90\xb9\xa5\xfa\xaf\x30\xb5\xdb\x76\x9e\x79\xfc\x44\xef\xab\x69\x3e\xbc\x93\x5d\xfd\xfe\x44\x7f\x8f\x27\x8a\xa6\x31\xeb\x71\x8d\x29\x9b\xc3\x86\x54\xd0\x31\x6f\xe7\x99\xc7\x4f\xf4\xbe\xbe\xe7\xc3\xaf\x08\x0b\x7f\x2b\x8f\xf5\xb2\x1e\x6b\xfb\x36\x1f\xeb\x84\x13\x70\x86\x61\xc7\xd4\xad\x08\x6f\x54\x37\x00\xd8\x54\x18\xb6\xaf\x30\x2c\xa8\x01\x79\x5e\xdd\x75\x9b\xdd\x2e\xcf\xc3\xb0\xf7\x65\x49\x1f\xde\x0d\x18\x7d\x2b\x0f\xfd\x1b\xdf\xcb\x42\xb1\x02\x34\x38\x40\x80\xa6\x9f\x01\x9a\xbe\x02\x34\x00\xa2\x44\x80\xe6\x3c\x15\xb2\x02\x34\x21\x97\x0a\xd0\x38\x9d\x01\x9a\xbe\x02\x34\xce\x67\x80\xa6\xaf\x00\xcd\x9a\xeb\xed\x15\xcc\x15\x08\xd0\x54\xdd\x7a\x2f\x97\x1e\x01\x9a\x9a\x2c\x76\x20\x70\x69\xa4\x19\xb2\x4e\x4d\x50\x7e\xf4\xb1\xe3\x40\x86\xb5\x98\x2b\xf6\xb3\x08\x3e\x62\x8f\x9a\x3e\x6a\x40\x04\x68\xd6\x5c\x8f\x85\xf3\xbe\x9c\xeb\xe3\x73\xbb\x81\x81\x33\x19\x7c\x1d\x2c\xab\xe7\x7d\xd2\xad\x5f\x99\xab\x05\xde\xbb\xdc\xe6\xb0\xf5\xff\xe0\xb7\x57\xf0\x69\xb2\xe9\x35\xc6\xd8\x40\xd6\x6c\x5c\x89\x8e\xf3\xcc\xe3\x9b\xbb\x2f\x30\xfa\xf8\xfc\x15\xf8\xdb\x6f\x0e\x7e\x91\x51\x5c\xa7\xd0\x86\x8e\x65\x18\x5a\x9d\xb7\xf3\xcc\xe3\x9b\xbb\xaf\x26\xfa\xf8\x2b\xb4\xf9\x7f\x62\xf9\x60\x27\xcc\x54\x4c\xd1\xaf\x21\x5c\x2f\x1d\x35\xdd\x50\x4d\x92\x7f\x95\x88\x1b\xd0\x94\xc0\xd2\x60\x32\xaf\xa3\xf3\x76\x5e\xf9\xf8\x17\xdc\x17\xf9\x7c\x7c\x57\x31\xfd\xf6\xfb\x17\x48\x20\xa5\x83\x07\xb4\x56\x78\x73\x8d\x74\xd8\x51\x5b\x6b\x4e\xa0\x99\xe6\x01\xb6\x38\x4e\x15\xc1\x0d\xc5\x5e\x58\xd9\xe1\x4d\x21\xed\x2e\x75\x95\xc8\xdc\x6b\xb3\xc9\xac\x01\x25\x7d\x83\x35\xd7\xdb\xeb\x98\x7a\x21\x05\xdc\x1d\xd2\x02\x7d\xc5\xfe\x87\x16\xb8\x9d\xce\xd8\x91\x3f\x83\x52\x91\x75\x6a\xa2\x8a\x90\xc6\x8e\x03\x81\x8b\x3f\x6a\x68\x5c\x25\x12\x7b\x6d\x36\x89\x1a\x50\x9c\x8e\x9a\xe2\x09\x00\xd7\x4f\xf7\x25\x2d\x1f\xfe\x3f\x88\x07\x5f\xe1\xde\xf1\x50\xa7\xec\xe9\xeb\x11\x41\x67\x21\xaa\x98\xbe\xaa\x44\x73\x96\x9b\x19\xa0\x05\xa2\x29\x68\xff\xba\x81\x72\x0a\x35\x7d\x56\xa4\xe4\xec\x40\x0a\xab\x90\x68\x55\x50\x8a\xa7\xfe\x3d\x38\xf5\x10\x13\x18\xa7\x38\xfd\xdd\x54\x5f\xbe\x87\x37\x40\xbf\xa1\x5f\xdf\x81\xba\x1b\xac\xa0\x30\x98\xab\xca\x67\xba\x81\x66\x28\x3d\xe5\x61\xc5\x89\x35\x3b\x5d\x22\x7d\xa4\xf4\xe9\x74\x56\x61\x5c\x37\x06\xf9\x22\xb1\xd8\x06\x9e\xbf\x3e\x7d\x93\x00\x2d\x42\xdf\x1c\xb4\x73\x73\x94\x66\x17\xb5\xd5\x1b\x13\x04\xef\x9d\x54\xf3\xcb\xf9\x5b\xac\x17\x85\x8f\x9e\x3e\x9a\x58\xac\x3a\xcc\x90\x8d\x3a\xc0\xc8\xa8\x6f\xe7\x9a\xbd\xbd\x4e\xca\x15\xb2\x1d\x9f\xda\x1b\x3e\xcd\x40\xf4\xec\xa1\x7b\x4c\x6f\x83\xb5\xc5\x22\xc1\x1e\x63\xb6\x20\x06\xe2\x3f\xa0\xe9\xdc\xf2\xdc\xae\xf9\x06\x73\x6a\xba\xfc\x54\x78\x9d\xea\x60\x4d\x75\xee\x07\xf7\x71\xc9\x65\xe3\x5e\xf4\x4c\x2c\x0c\x94\x30\x30\xbc\xce\xc5\x5e\x43\x8a\x02\xb7\x90\xdd\xd5\x1b\x50\xad\x14\xf8\xb0\xc1\xa3\x31\x3b\x8a\xed\x65\xe4\xdd\x81\xce\xee\xe6\x4f\x8a\xeb\x7f\xba\xaf\x5a\xf9\xf9\x79\x32\xb7\xb8\x66\x83\x37\x21\x6e\x31\xf2\x95\x34\x41\xe4\x84\x08\x66\xd7\x7e\x14\xf1\x4c\xe7\xbd\xc8\x59\x3a\x83\xf9\x76\x02\x75\x4c\x47\xf3\x09\x86\x0e\x1e\x37\x9f\x84\x98\x3c\x22\xef\x36\xdb\x4c\x97\xda\xa8\xcd\x59\x64\x33\x73\x06\x42\xc1\xe9\xc0\xab\x5a\x9b\x3c\xc0\x92\x11\x3a\x0f\x21\x50\x47\x7e\x45\x45\x09\xbe\x4a\xcf\x07\x95\x2f\x61\xeb\x5c\xf9\x06\x75\xba\x4c\xca\xa7\xc9\xba\x68\x64\x10\x67\xef\x85\x33\x3d\x4a\x93\x05\x4a\x75\xc1\x54\x03\x1d\x98\xa7\x6c\x2e\x08\xea\x82\x7e\x9e\x74\xa8\xfb\x7a\x3d\x53\x25\x27\x1a\x00\x8e\x24\x2d\x87\x8a\xb9\xce\x0d\x1d\x57\xd2\x79\x67\xa8\x0e\xe5\x06\xde\x00\x19\xb3\x6a\xd5\x14\x0d\x19\xf5\x2e\xae\x01\x2d\x9d\x7a\xc0\xc6\x75\xc3\x8f\xc5\x29\xef\x0b\x9c\x1a\xc8\x7f\x4a\x5c\xb7\x0a\xf2\x57\x2f\x66\xd6\x0a\x37\x81\x9f\x12\x2c\x20\xb2\xf0\x43\x75\xf4\x23\x4c\x2e\x64\x34\xb6\x73\x35\x1e\x3f\xfd\xfb\x8a\x92\xcf\xef\xb4\x56\x80\xdd\x77\x2c\xd2\xf7\xd1\x28\xf7\x6c\xee\xeb\x7c\x7c\x32\x41\x91\x48\xdd\x56\x27\x74\x45\x72\x56\xb4\x12\x7a\x2d\x4f\x4d\xcf\x3d\xdd\x8b\x30\x79\x00\xf0\x7d\x8e\x1c\xf5\x66\xac\x7b\xee\x69\x6c\x0f\x84\x02\x41\xfa\x88\x0c\x16\x23\x7a\xc2\xfa\xef\x15\xdc\x9d\xca\x86\x25\x6e\x2c\x07\xc3\x8c\x22\xc4\xf3\xf2\x2a\x12\xba\x18\xeb\xcd\x6c\xbc\xbd\xa2\xc9\x8d\x75\xcf\xcf\xd4\xf3\x3c\xac\x89\xc5\x91\x4a\x82\x69\x80\xc1\x31\x8d\x4a\x54\x6e\x13\x72\x22\xa0\x31\xe9\xf8\x6b\x84\x34\x26\x47\xc5\x76\x5e\x35\xc7\x68\x6b\x68\xb0\x3b\xbb\xa6\x88\x0b\xc2\x47\xf9\x5d\xf0\x4b\xe6\xae\x70\xae\x75\x80\xb9\x89\x18\x57\x9a\x9b\x16\x6d\xba\x60\xee\x40\x10\xcc\x2a\xf0\x54\xa4\x2a\xb9\x08\x29\xc6\x70\x00\xe5\x1a\x3c\x17\xa6\x59\x9f\xd7\x61\xb6\x9d\x67\x1e\x3f\xd2\xfb\xea\x8c\xcf\xef\x74\x7b\x7c\x7f\xa4\xbf\xcb\x23\x45\x91\xb7\xf5\x71\x8d\x90\xcd\xad\x68\xc4\xae\x66\xba\x9d\x67\x1e\x3f\xd2\xfb\xd2\x80\xcf\xbf\xa6\x01\xe5\xfb\x73\xfd\x5d\x9e\x6b\x00\x19\x2a\xfc\x46\xec\xf3\x3a\x42\x37\xc7\x0b\x42\x65\x2b\xae\x03\x9f\x57\xd1\xf4\xf0\x63\x6e\x36\xe0\xe1\xc7\xd5\x4d\xb7\x98\xf0\xf0\x1f\x47\xf9\x7f\xba\xcf\x72\x7f\x7e\x07\xac\xe0\xfb\x23\xff\x7d\xb4\xb3\xd2\x69\x64\xa0\xb8\x82\xd2\x66\x5d\x46\x06\x68\x08\x61\x64\xcc\x65\x64\x58\x91\x20\xef\x03\x01\x9d\x34\x32\x8a\xa8\xc2\x0e\xaf\x52\x08\x39\x0c\xa5\x10\x69\x64\xa0\x37\x25\x8d\x0c\x30\x7a\xa5\x91\x81\x22\xa3\x34\x32\xc0\x86\x98\x46\x46\xf8\x32\x32\x60\x7f\x14\xfe\xe9\x32\x32\xe0\xf9\xe8\xc2\x50\x85\x91\x91\x03\xc2\xc8\x00\x13\x76\x07\xa7\xce\x32\x32\x20\xa6\x30\x32\xe6\x32\x32\x8c\x97\x91\x01\x3b\x26\x8d\x0c\x8c\x93\x46\x06\x12\xc4\x69\x64\x80\xce\x3e\x8d\x0c\x24\xc5\xd3\xc8\x58\xab\xf1\x58\x8c\xef\x73\xbe\x9f\xdf\x6f\xed\xfa\x2e\xc9\xbf\x8b\x24\xdb\x59\xd4\x63\x67\x51\x8f\x9d\x45\x3d\x7e\x16\xf5\xf8\x59\xd4\x03\xea\xa9\x3c\x35\xa4\x5f\x2a\xd2\x74\x16\xf5\x8c\xb3\xa8\xc7\xcf\xa2\x1e\x3f\x8b\x7a\xec\x2c\xea\x39\xe7\x7a\x7b\x4d\xaf\x13\x05\x73\xfb\x3a\x82\x2f\x87\xb8\xa8\xa7\x3b\x5a\x13\x82\x67\x07\x5e\xda\x58\x8d\xd4\x38\x4b\x28\x22\xc9\x6b\x71\x24\xe9\xc5\x12\xf8\xc5\x8d\xd6\xb5\xc2\x63\x87\xaf\x41\x28\x5f\xc2\xc8\x20\x7f\x39\xe7\x7d\x2c\xaa\xf7\x79\xd5\x1f\x3f\xfe\xeb\xc7\xa7\xf0\x30\x24\xcd\x55\xaf\x44\x76\x1b\xde\xaf\xf9\x87\x9b\x6b\x2e\x2d\x7e\x54\x0c\x90\xcd\x53\x3a\xc0\xa8\xfa\x20\x55\xe4\xeb\xf3\xee\xc1\x6c\x88\x9f\x01\x62\xd3\x3c\x55\x84\xd1\x31\x16\x73\xb4\x19\x88\xf3\xa8\x4b\x65\xf9\xa9\xf7\x28\xdf\xb5\xf7\xa8\x01\xbb\xd0\x71\xce\x95\xb3\x46\xe3\xc9\x7b\x7e\x0a\x83\x8e\x0b\x41\x55\x4f\x4f\x7d\xf0\xee\x16\x17\x19\x0c\x76\xd0\xfc\x7b\x8a\x60\x7e\x1f\x9f\x36\x71\x23\x2c\x8e\xef\x33\x31\x8a\x2c\x98\x18\xe3\xb0\xd8\xb1\xc6\x7f\xbc\x80\xf7\xf9\xc2\xcf\xef\x80\x05\xfc\xe6\x8d\xee\x67\xf9\x43\x51\x92\x4c\x3e\xa2\x83\x91\xe6\xa4\x3f\x22\xbd\xce\x21\x1b\xdc\xbd\x8e\xe6\x44\x6a\x33\xbc\x4d\x34\x26\x81\x5f\x6a\xb6\x60\x4b\x61\xa1\xe6\x73\xfc\x06\xc5\x70\xf9\xa5\x62\xb0\x15\x44\x9f\xa3\xbd\x0c\xe0\x20\x49\xba\xc5\xbd\xbd\x90\xf6\x2b\xd3\xd8\xf2\x09\x8c\xd8\xe1\x16\x92\x35\x2e\x14\xfe\x83\x72\x51\x47\x3f\x48\xb5\xa5\xd6\xc7\x22\x9c\x3a\x04\xbb\xfe\xdc\xf1\xd4\xdb\xf4\x51\xad\x65\x32\xdb\x70\x42\x5c\x3b\x3d\xe0\x7c\xc1\x4c\xa6\x4d\x53\xfd\x02\x99\xd0\x53\x99\xfc\x66\xd5\x72\xa7\xb5\x58\x1b\x07\xaa\x00\x0e\x6c\xad\xa0\x6d\xd8\xbc\x4c\x1f\x50\xb1\xe8\x55\x9b\xe9\xa3\xd3\x7f\x52\xe7\x3c\x94\x9c\xfb\xbc\xe4\x97\x77\x1a\xb4\xc0\x8d\x31\xf7\x70\x6b\xd1\xd1\x8d\x27\xfd\x30\x1f\x15\x9d\x02\x89\x63\x61\x0f\xcf\x83\x27\x52\x02\xcc\xd2\x58\x08\x85\x7b\x4a\x27\xc9\x27\x8d\x9b\x92\xee\x42\x13\x60\x28\x00\x4c\xf0\x71\x58\x50\x0b\xd9\x07\x21\xc4\x82\x10\xb8\x16\x99\xac\x90\x54\x3f\x73\x31\x8e\xca\x40\x3c\xc3\xb6\x75\x47\xab\x4d\x9a\xc5\xae\x41\xbc\x59\xd5\x16\xd3\x75\x48\xe4\x65\x97\x3c\xf3\x78\x15\xee\x73\x79\x5f\xde\x69\x22\xfa\xe7\x5d\x85\x81\x58\xeb\x9c\xd7\x70\xaf\x3e\x71\x16\xb9\x9a\x8c\x0d\xd5\x1d\x3a\x1f\x57\x1d\xfc\x74\x9f\xda\xfa\xf2\x6b\x1a\x5d\xfe\x79\x97\x02\xf8\x32\x3c\x22\x7d\x04\xba\x0e\x1f\x9b\xcd\xb8\x10\x08\x44\x01\xe6\xe1\x74\x15\x96\xf4\x11\x68\x83\x56\x37\xee\x57\x97\xb1\x9d\x57\x3e\x5e\xaa\xfb\x44\xcb\x97\xf7\xcb\xc6\xff\x79\x17\xca\xd0\x0f\x30\xe7\x8e\x03\x15\xbe\xd8\xe8\x8b\x92\x1e\x01\xbd\xe8\x45\x26\xae\x51\x7c\x9d\x45\x49\x5f\x9c\xde\xb3\x70\x5a\x24\x15\x26\xc2\x6e\xf9\xaa\x85\x85\x92\xda\x1a\x55\xcf\xf9\x16\x46\xd5\xb3\xa6\xd1\x5d\x73\xbd\xbd\x4e\x58\xd4\x33\x76\x1c\x68\xd5\x0a\xa1\x54\xd5\xaa\x01\x9b\x74\xcc\x9d\x08\x51\x39\xd0\xfe\xf1\x79\x96\xc0\x59\x37\x63\x5f\x47\x28\xd2\x83\xe9\xaf\xb2\xae\x15\x9a\x3b\x75\xdc\x07\xcd\x35\xb2\x28\x1f\xe7\xac\x8f\x1f\xed\x7d\x9a\xea\xdf\xde\xef\x83\x67\xee\xc5\x42\xe9\xb4\x51\x27\x59\x4b\x4d\x3a\x01\x94\xf7\x42\x43\x76\xf3\x68\x2f\xcc\xdc\x50\x5f\xc4\x3e\x0f\xcd\x67\x5f\x84\x7b\xd2\x5e\x94\xf4\x60\xeb\xed\x45\x65\xec\xcc\x8e\x83\x46\xf9\x9a\x53\x94\x26\x46\x7b\x51\x96\x8d\x9c\xdb\x8b\xb0\xec\x34\x66\x1e\x18\xaa\x2c\x5f\x84\xc7\xc1\x9a\x03\x4a\xdf\x79\x0a\x0e\x9a\x08\xb5\x17\x21\x06\x5b\xc4\x0b\x4a\x5e\xad\x5f\x5e\x80\x9b\x80\x62\x3f\xe1\xcd\x80\x23\xbf\x8d\x25\x20\x4c\xb4\xad\xdf\xf4\xf6\x0a\x20\x68\x68\x93\x39\x37\x24\xa4\xa1\x4d\x46\xdf\xce\x33\x8f\xd7\xf1\x3f\x92\x2b\x3e\xeb\xcf\xc7\x53\x33\xe9\x55\xd5\x57\xb5\x69\xf9\xa2\x66\x87\x4b\x01\xee\x69\xed\x8d\xc7\xf1\x35\x9d\xbe\x52\x21\x0a\x14\x0d\x54\x63\x93\x8c\x22\x93\xa6\xe9\x37\x32\xf5\xab\x90\xdf\xa6\xc8\x8e\xb7\x6a\x27\xad\xc4\x2f\x4c\x1b\x3b\x7d\x18\xa7\xe5\xc3\xc0\x9e\xb3\x51\x3e\x8c\x58\x01\x27\x0d\x9b\x25\x52\x66\x74\x33\x41\x19\x50\x5c\xcc\x68\x9f\x1a\xcd\x85\xdb\x04\x55\x39\x1f\xb1\xd8\x65\xc7\xf0\x36\x01\x44\xe7\x15\x55\x1f\x5c\x51\x75\xb6\x7c\x93\x23\xe7\x35\x95\x2b\xaa\x0e\x8c\x20\x6f\x63\xfa\x8d\xdd\x76\x71\x40\x61\x35\xd8\x17\x80\x93\x0b\x18\x16\x65\x66\x14\x49\x3f\x21\x7f\xc5\xac\x47\xce\x2c\x1e\x47\xde\x89\x49\xbf\x99\x3d\x66\xb0\xf8\xe9\x3e\x3f\xf8\x6f\xef\x17\x2e\xfc\x57\x16\x6d\x00\xb6\xa5\xfa\xc2\x81\x0a\xa3\xd4\x16\x9a\xad\xa8\x28\xa3\x17\xed\x91\x22\xcd\x72\x9e\x42\x72\x6b\xce\xbd\x0e\x7c\x34\x14\x06\xa7\xd2\xc3\x55\xa9\xf4\x04\xfa\x27\x4d\x7f\xad\x26\xa8\xe3\x9c\xeb\xed\x15\x45\xed\xa9\xb9\x70\x00\x92\xfb\xd0\xd2\x6a\x81\xc9\xc6\xdc\x23\xb8\x34\x1e\x20\xe9\xf2\xd4\x44\x33\x56\xaa\x4a\x1c\xb8\x37\x54\xb8\xe4\xd0\xa1\x7a\x81\xb2\x83\x3d\x9e\xba\x0e\x03\xa6\xaa\x3b\xe7\x7a\x28\x12\xdc\xe9\x3e\x6c\xfd\xe1\xe7\x1f\x9f\x3a\x0e\xf9\x88\x3c\xfc\x3a\xc6\x6d\x04\x08\x56\xf9\xe6\x4f\x82\x69\xdc\xe9\x3e\x8c\xfa\xe1\xaf\xef\x4c\x31\xc0\xbc\x76\x0d\x5b\x53\x8c\xfe\xde\x14\xf7\xee\xcf\xff\xfd\xf2\xf9\xef\x1f\x3e\x7d\xf8\xe9\x31\x79\xb2\x31\xc8\x83\xe7\x5e\x07\x23\x65\x17\xeb\x57\x3c\x8e\xa4\x5d\x57\x3e\x28\xfc\x00\xa1\x95\xd9\xdc\x06\x08\x58\x7a\x2c\x4a\x6c\xd5\x82\x43\x97\x31\x0e\xd7\x82\x59\xb8\x11\x75\xbb\x1a\x8f\x5b\x0e\xff\xec\xa6\xef\x2d\x6f\xdc\xf4\x73\xca\xe7\xd1\x41\x3d\xcf\xc0\xa9\x20\x19\xd1\x40\x09\x97\x6e\x03\xee\x91\x75\x71\xd5\x91\x5b\xfd\x8e\x3e\x79\xd3\x89\xf4\xa5\xc2\x3d\x25\xee\x03\x7e\x25\xf1\xd0\xc3\x20\x7c\xdc\x4b\x59\x8e\xce\xb7\x1c\xfe\xd9\x5d\xdf\x5b\xca\xb8\xeb\xbf\x7d\xfc\xf9\x2f\x9f\xfe\xfc\xc3\xdf\x9e\xbc\x25\x63\x34\x44\x35\x46\x53\x6b\x9e\xf6\x15\xb2\x8e\x2f\xb9\xbc\x7d\xb4\x17\xf2\x40\x40\xee\x85\x95\x8a\xdf\x9d\x62\xa2\x60\xe0\x85\xd8\x9b\xa9\xb6\x17\x9b\xb0\x97\xc2\x6f\xcc\x7e\xf5\x18\xb7\x78\x2a\xdc\xf7\x46\x1a\xee\xf5\xc7\x3f\x7f\x7a\x2a\x19\x15\xf1\x43\xd5\x8f\x95\x64\xe0\xdd\x91\x92\x51\x65\x44\x5d\x8f\xa5\x17\x1c\x7d\x08\x90\x0c\x30\xca\xa4\x64\x80\xc9\x2b\xcf\x1b\xf6\xe3\x18\x87\xe6\x76\xfe\x2a\x19\xe2\x56\x92\xf1\x5a\xad\x22\x3c\xf7\x3a\x40\x78\x60\x4d\x04\x60\x8e\x9c\xa8\xde\xb2\xe1\xc5\xd1\x90\x13\xa5\x4f\x89\x89\x42\xd2\x96\x55\x5d\xa5\x0b\x63\x1c\x63\xfe\x72\x22\x1f\xf6\xae\x08\xde\x9b\x3a\xe7\x02\x3d\x97\xc2\x8a\x4a\x32\x17\x24\x5e\x4a\x21\x92\xa1\x29\x85\x40\xea\x4b\x29\x1c\xe0\xbc\x72\x2b\x18\xd4\x94\xc2\x92\x4b\xd5\x0a\x25\xa4\x14\x02\x1b\x3d\xa5\xb0\x80\xfe\x4e\x29\x0c\xa1\x92\xc2\xd7\x6a\x6c\xcb\x89\x10\x5f\xca\x89\xaa\x70\x43\x0b\xe9\x28\x27\x8a\x54\x84\x39\xd1\x50\x5b\x13\x0d\xaf\x89\xe0\xf0\xe4\x44\x95\x71\xce\x89\x7c\xfc\x72\xa2\xb0\x77\xc5\xfd\xde\x88\x39\x57\xe8\xa9\xb0\x9b\x69\x8b\x81\x06\xb2\x14\x04\xb5\xd6\x0f\xa3\xd9\x5e\x62\x20\x34\xfc\x42\xf9\x8a\x44\x40\x43\x8b\xc2\xfb\x85\x66\xdf\x25\x66\x09\xbb\x12\xb5\x17\xef\x87\x4a\x1a\x14\x37\x66\xbb\x9a\xe9\x2d\xc6\xdb\x6b\x74\xc9\xa1\xf3\x43\xb5\x8d\xa9\xad\x17\xdb\x2d\x00\x67\xb4\x86\x76\xd7\x1a\xda\xf2\x65\x99\x43\x3b\x6a\xda\xd9\x0b\xd8\xc6\xfb\xe1\xa1\x97\x35\x74\x74\xb9\x3d\x29\x78\xe4\xce\xf7\xe9\xea\x3f\x7f\xf9\xf4\xe9\xc3\x63\xf9\x50\x8e\x36\xbc\xef\xca\xb3\x8d\xa2\x6f\x6b\x21\xf9\x5a\xee\x2d\x62\x22\x9a\x35\xd9\x11\xc9\x98\x32\x77\x37\xcd\xcf\xe6\x51\x7f\x1f\xea\xf8\x5e\xbe\xc8\xf2\xba\x1c\x63\x78\xbf\x15\xe1\x65\x40\x7b\x8c\xb0\xe6\x9a\xdf\x1d\xcd\x66\xfe\x9e\xd9\xcc\x04\x84\xbf\xa6\x7d\xcf\xfd\x68\x68\x2a\xaa\xbf\x6b\x50\xb3\x98\x28\xa0\x04\x4b\x60\xde\x23\x8d\xdb\xf0\xc7\xe0\x35\xdc\xe5\x5e\x47\xff\xe5\xcb\xc7\x4f\x50\x76\xcf\x5f\x2e\x82\xfe\xa8\xad\x88\x55\xc6\x75\xf4\xb9\x29\x6e\xcc\x6f\xe6\xb6\x8d\x5e\xe4\xfa\x41\xba\xad\xef\x3e\xbb\x89\x7b\x95\xfb\xf5\x26\x9e\x6f\x53\xe3\x0e\xaa\xff\x40\xeb\x5b\x51\xfd\x17\x13\x22\x5f\x95\x74\xcb\x77\x98\x59\xc7\x9d\xe5\xdd\x18\x9f\x4b\xf1\xdf\x7e\xfa\xfc\xf3\xdf\xf3\xf3\xc7\x0f\x3f\xfd\x2d\x3f\xff\xf6\xaf\x7f\xf9\xef\x97\xff\x17\x00\x00\xff\xff\x80\x44\xe7\x73\xfe\x10\x01\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_svg() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_svg, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.svg", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_ttf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\xbc\x07\x5c\x9b\xd7\xf5\x3f\x7c\xce\xb9\xf7\x91\xc4\x30\x46\x80\x90\x31\x18\x10\x5a\x80\x40\x0c\x21\x89\x8d\xd8\x7b\x6f\x03\x66\x19\x0c\xc6\x60\xf0\x02\xbc\x9d\x78\xc4\x89\x9d\xc4\xce\xb4\x9d\x38\x4e\xdc\x34\xa3\x76\x42\xf6\x68\x92\x26\xa9\xb3\xdb\x34\xbb\x99\x4d\xd2\xcc\x26\x4e\x77\xfb\x6b\x63\x24\xde\xcf\xf3\x48\xb2\xb1\xb3\xfa\x7f\x49\xb0\x84\x74\x9f\xab\xe7\xde\x7b\xc6\xf7\x9c\xf3\x3d\x02\x04\x80\x40\x04\xe0\x00\xa5\x45\xc5\x25\x7e\x29\x7e\xa9\x00\xe8\x0f\x00\x8e\xd2\xc6\xe6\x82\xcf\x95\x1f\x06\x03\x60\x15\x00\x95\xd5\x36\x26\xa5\x3e\x3a\xf1\x55\x23\x00\xbb\x1a\x00\x7a\xfa\x47\x7b\xc7\x1b\xbf\xb8\x25\x09\x80\xfd\x13\x40\xb1\xb2\x7f\xc3\xba\xe8\x9e\x2b\x83\x19\xe0\xaf\xdf\x07\x80\x1b\x06\xc7\x57\x8c\x7e\x1c\xf2\xde\x5f\x01\x4f\x4d\x01\xf8\x5d\xb7\xa2\x77\xed\xb8\xf8\x69\x80\xbf\x7e\x03\x00\x14\x2b\x56\x4d\x0f\xde\x7b\xcd\xe4\x69\x00\xff\x1e\xc0\xc9\xb1\xa1\x81\xde\xe5\xff\xb9\x36\x30\x10\xf0\xe2\x57\x00\xc0\x36\x34\x34\xd0\xeb\x37\xc4\xfe\x08\xb8\x53\x01\x00\xba\xa1\xd1\x75\x53\xca\xf0\xc9\x4f\x00\x77\x26\x00\x04\xc6\xac\x5a\xdd\xdf\xfb\x5b\x8a\x0f\x03\xbc\xba\x0e\x40\xa1\x1b\xed\x9d\x1a\x17\xde\x58\xb0\x04\xf0\x86\x75\x00\x10\x3d\xd6\x3b\x3a\x50\xd7\xb0\xf9\x33\xc0\x1b\xae\x06\x60\xab\xc6\x57\xaf\x5d\xf7\x59\xc1\x6d\x7f\x02\x3c\x06\x00\xda\x57\xc7\xd7\x0c\x8c\xdb\xd7\x67\xfd\x0a\xf0\x95\x40\x00\xb8\x4b\xda\x0b\x71\xe5\xe2\x0f\x81\x02\x7e\x03\xbf\x01\x44\x0d\x1a\x01\xb1\x0d\xfb\x01\x71\x0a\xa7\x00\x71\x0b\x6e\x05\xc4\xed\xb8\x1d\x10\x0f\xe2\xd5\x80\xf8\x1b\xfc\x0d\xa0\x74\xbd\x2f\x44\x42\x02\x60\x51\x49\x55\x13\x28\xc4\x5d\x05\x98\x9b\x93\xde\xc1\xb5\xa3\xfd\xe3\x20\xae\x44\xfa\x0b\xb8\xe7\x51\x01\x84\x4f\xc0\xfb\x78\x23\x1e\xc5\x9b\xf0\x18\xde\x8c\xb7\xe0\x71\xfc\x19\xde\x8a\x3f\xc7\xdb\xf0\x76\xbc\x03\xef\xc4\x5f\xe0\xef\xf1\x04\x9e\xc4\xbb\xf0\x6e\x9c\xc1\x7b\xf0\x5e\xbc\x0f\xef\xc7\x07\xfe\x7f\x5d\xf3\x31\x1d\xa6\x43\x74\x98\x8e\xd0\x11\xba\x81\x6e\xa4\xa3\x74\x13\x1d\xa3\x9b\xe9\x16\x3a\x4e\x3f\xa3\x5b\xe9\xe7\x74\x1b\xdd\x4e\x77\xd0\x9d\xf4\x0b\x3a\x41\x27\xe9\x2e\xba\x9b\x66\xe8\x1e\xba\x97\xee\xa3\xfb\xe9\x01\x7a\xf0\xff\xe7\x55\x5f\xd3\x43\xf4\x10\x3d\x4c\x0f\xd3\x23\xf4\x08\x3d\x4a\x8f\xd2\x2f\xe9\x97\xf4\x38\x3d\x4e\x4f\xd0\x13\xf4\x2b\xfa\x15\x3d\x49\x4f\xd2\x53\xf4\x14\x3d\x4d\x4f\xd3\xaf\xe9\xd7\x74\x8a\x4e\xd1\x33\xf4\x0c\x3d\x47\xcf\xd1\xf3\xf4\x3c\xbd\x40\x2f\xd0\x8b\xf4\x22\xbd\x44\x2f\xd1\x6f\xe8\x37\xf4\x5b\x7a\x99\x5e\xa6\xdf\xd1\xef\xe8\x15\x7a\x85\x5e\xa5\x57\xe9\x35\x7a\x8d\x5e\xa7\xd7\xe9\x0d\x7a\x83\xde\xa4\x37\xe9\x2d\x7a\x8b\x7e\x4f\xbf\xa7\xb7\xe9\x6d\x7a\x87\xde\xa1\x77\xe9\x5d\x7a\x8f\xde\xa3\xf7\xe9\x7d\xfa\x80\x3e\xa0\x3f\xd0\x1f\xe8\x43\xfa\x90\x3e\xa2\x8f\x68\x23\x6d\xa4\x3f\xd2\x1f\xe9\x13\xfa\x84\x3e\xa5\x4f\xe9\x33\xfa\x8c\x3e\xa7\xcf\xe9\x0b\xfa\x82\xbe\xa4\x2f\xe9\x4f\xf4\x27\xfa\x8a\xbe\xa2\xaf\xe9\x34\x9d\xa6\x6f\xe8\x1b\xfa\x33\xfd\x99\x0e\x01\xc1\x02\xd0\x42\x36\x00\x14\x42\x27\x2c\x86\x8b\xe1\x62\x48\x83\x5d\xb0\x0b\xac\xf8\x19\x7e\x0e\x36\xfc\x92\xe2\x21\x9d\x12\x29\x17\x36\x51\x3e\x75\xc3\x7e\xea\xa5\x35\x70\x82\xd6\xd3\x06\x78\x82\xa6\x69\x1a\x9e\xa4\x4d\x74\x35\x3c\xc5\x3e\x61\x9f\xc0\x7b\xc0\xf8\x4b\x98\x00\x02\x80\x70\x58\xb0\x00\x60\x94\xfb\x91\xbd\x0a\x83\x04\xf3\x7f\x3e\x02\x9a\x0b\x84\xe8\x0e\x51\xda\xc5\xbf\xc7\xa7\xd7\xac\x95\x24\xce\xa9\xe8\x73\xbe\x09\xa0\xe8\x23\x53\x34\xe0\x4d\xb5\xa2\x82\x67\x0a\x33\xd2\x38\x51\xea\x98\xe7\x37\x42\xfa\x0b\x64\x3d\xc0\xa4\x67\x11\xc0\x65\x45\xd2\xc4\xdb\x41\x06\x3d\x92\x1e\xf8\xc0\x02\xd0\xc0\x56\x38\x06\x27\xe0\x24\xfc\x0a\x9e\x85\xdf\xc1\xe7\xf0\x17\x70\xe1\x42\x54\xa2\x1e\x8d\x98\x8c\x8d\xd8\x8d\x2b\x70\x2b\x6e\xc3\x83\x78\x33\xce\xe0\x5f\x71\x8e\xc2\xc9\x4e\xed\xf4\x18\x3d\x47\x2f\xd0\x07\xf4\x0f\x86\x8c\x31\x1f\xb6\x90\x69\xd9\xa5\x6c\x1f\x3b\xc8\x6e\x66\x33\xec\x11\xf6\x02\x7b\x99\xbd\xc6\xde\xe2\x7a\x9e\xc4\x8b\x79\x2d\xef\xe3\xab\xf9\x24\xdf\xcd\x5f\xe6\xbf\xe7\x1f\xf3\x7f\x09\x28\x04\x0a\xc1\x91\x18\x99\x17\xb9\x2b\xf2\x6f\x91\xff\x88\xfc\x6f\x54\x75\xb4\x5f\xb4\x2a\x3a\x32\x3a\x26\xda\x10\x9d\x1c\x6d\x89\xce\x8c\xce\x8e\x2e\x8a\x5e\x17\xbd\x2d\xfa\x67\xd1\xb7\x45\x9f\xd0\x08\x9a\x60\x4d\xa8\x26\x46\x63\xd0\x98\x35\xcb\x62\x28\x46\x16\xb3\x30\x26\x28\x66\x71\x4c\x64\x8c\x29\xa6\x2c\xa6\x27\x66\x40\xff\xe2\xbf\x7f\xed\x9a\x9b\x73\xce\xcd\x79\x34\x5d\x5c\x61\x34\xc4\xc0\x31\xb8\x19\x4e\xc2\x5d\xf0\x24\x3c\x07\xaf\xc0\x17\xf0\x57\x98\xc3\x40\x0c\x42\x03\xc6\x62\x0a\x36\x61\x0f\x0e\x49\x2b\x3c\x86\x77\xe3\x5f\xf1\x5b\x5a\xe4\x59\xe1\xb3\xf4\x02\xbd\x4d\xff\x60\x70\x76\x85\x3b\xd9\x3e\x76\x39\xbb\x8a\x1d\x67\xf7\xb0\x47\xd9\x8b\xec\x55\xf6\x16\x07\x6e\xe0\xc9\xbc\x84\xd7\xf1\x7e\x3e\xce\xa7\xf8\x25\xfc\x77\xfc\x6d\xfe\x47\xfe\x6f\x81\x04\x65\x24\x44\xe6\x46\x6e\x8f\x3c\x16\xf9\xf7\xc8\x7f\x46\x55\x47\x43\x74\x70\xb4\x3a\x3a\x3a\x5a\x1f\x9d\x1c\x9d\x1a\x9d\x71\x76\x85\xc7\xa3\x6f\x8b\xfe\xc5\x79\x2b\xec\xf0\xac\x50\x39\x6f\x85\xcb\x3d\x2b\x9c\x15\x2d\x0f\xf7\xe7\xb2\xb9\x7f\x01\xcc\xfd\x11\x0b\xe7\x9e\x44\xfb\xdc\xaf\x00\x30\x1e\x00\xf5\x00\xa8\x11\xa5\x0b\x00\x97\x00\xa0\x68\xe7\x43\xe7\x54\x73\xcc\xf5\x6f\xd7\x9f\xb0\x4d\xdc\x1a\x57\xbf\xab\x00\xf6\x3b\xdf\x72\xde\xea\x7c\xd6\x79\x8f\xf3\x56\xe7\xcf\x9c\x37\x39\x0f\x3b\xf7\x00\xcc\xad\x98\x1b\x14\x47\x38\xe5\x00\x73\xa5\xb3\x67\x66\xff\x03\x30\xfb\x20\xc0\xec\x5d\x00\xb3\xc7\x01\x66\x6f\x02\x70\x1d\x00\x70\x5d\x0e\x30\x5b\x0a\xf0\x59\xd5\x67\xfe\x9f\x3e\xfe\xe9\xd7\x9f\xd6\x7f\xfa\xa7\x4f\xf1\xe3\x36\x80\x8f\x6b\x3f\xae\xf9\xb8\xea\xe3\xc2\x4f\x82\x3f\xce\xfa\xc4\xef\xe3\xd4\x8f\xd9\x47\xff\x05\xf8\xe8\x75\x80\x8f\x26\x3f\x5a\xf9\xd1\xd0\x47\x5d\x1f\x1e\xf8\xa8\xe1\x23\xc3\x87\x17\xff\xe1\x8e\x0f\x27\x3f\xdc\xf0\xe1\xea\x0f\x57\x7d\xd8\xf3\x61\xd1\x87\x89\x1f\xc6\xbf\xf7\xac\xef\xcb\x74\x15\x5e\xe7\x96\x5e\xe9\xe7\xed\x79\x6a\x21\x7a\x8f\x77\x01\x90\x03\x60\xe4\xbc\xdf\x9e\xf9\xba\x83\x7d\xb8\x0a\x7e\xe0\x07\x97\x7a\x46\x6c\x05\xc0\x6b\x3d\xaf\xdd\x05\x80\xff\x06\xa0\x48\x00\x72\x00\x90\xe8\x13\xdf\x02\xa0\xcf\x01\xe8\xdb\x0b\x67\xa0\x3f\x7f\xdf\xbc\xf4\x07\xf7\xef\xff\xc3\x0f\xe3\x81\xf8\x15\x7e\x8d\xa7\xf1\x1b\xfc\x33\xfe\x05\xb6\xe1\xe7\xf8\x2d\x9e\xc1\x59\x74\xa2\x0b\xe7\x60\x3b\xec\x20\x20\x24\x22\x46\x1c\x2e\x82\x8b\x49\x20\x19\xc9\x49\x41\x3e\xe4\x0b\x3b\x61\x17\xa9\x28\x94\xd4\xb4\x88\xc2\x68\x31\xec\x86\x3d\x14\x4e\x11\xb4\x84\x22\x29\x0a\x2e\xc1\xcf\xd8\x27\xb0\x17\xbf\x80\x4b\xe1\x32\xd8\x47\x35\x54\x4b\x75\x54\x0f\xfb\xa9\x81\x1a\xa9\x89\x9a\xa9\x85\x5a\xa9\x8d\xda\xe1\x72\xb8\x82\x96\x52\x07\x75\x52\x17\x2d\xa3\x6e\xea\x81\x2b\xe1\x00\xf5\x52\x1f\xf5\xd3\x72\x1a\xa0\x41\x38\x08\x57\x89\xf6\x8c\xa6\x69\x13\x6d\xa6\x2d\xf8\x25\xfe\x09\xff\x4a\x7e\x74\x0d\x5d\x4b\xd7\xd1\xf5\xb4\x96\xd6\xd1\x24\x4d\xc1\x2f\xe0\x04\xfd\x05\x4e\xd2\x5f\xe9\x6f\xf4\x77\xb8\x0b\xee\xa6\xff\xd2\xb7\x74\x06\x66\x68\x96\x9c\x70\x0f\xb9\x68\x0e\xee\x65\x00\xf7\x31\x84\xfb\x19\x31\x06\x0f\x30\x0e\x0f\xc2\x43\x4c\x60\x32\x26\x67\x0a\xe6\xc3\x7c\x99\x1f\xf3\x87\xa7\x58\x00\x5b\x08\x4f\xb3\x05\xf0\x6b\x38\x05\xcf\xc0\xb3\xf0\x1c\x3c\x0f\x2f\xb0\x40\x78\x11\x5e\x62\xb5\x2c\x14\x7e\xc7\xd4\xf0\x0a\x5b\xc4\xc2\xd8\x62\x16\x0e\xaf\xc2\x6b\xf0\x3a\x5b\xc2\xea\x58\x24\xbc\xc1\xa2\xe0\x4d\x16\xcd\x34\xf0\x16\x8b\x81\xdf\xc3\xdb\xf0\x0e\xd3\xb2\x08\x78\x97\xe9\x98\x9e\x19\x98\x91\xc5\xb2\x38\x16\x0f\xef\x31\x13\x4b\x60\x89\xf0\x39\x7c\x01\x5f\xc2\x9f\x98\x19\xbe\x82\xaf\xe1\x34\x4b\x82\x6f\xe0\xcf\xf0\x17\xf8\x2b\x4b\x86\xbf\xb1\x14\x96\x0a\x7f\x67\x16\xf8\x07\x4b\x63\xf5\xcc\x0a\x2e\x66\x83\x39\x66\x67\xe9\x2c\x83\x65\x22\x20\x22\xb1\x2c\xd6\xc0\xb2\x91\x21\x47\x81\x7d\xcb\x1a\x59\x13\x06\x63\x08\xaa\x30\x94\x35\xb3\x16\x34\xa0\x91\xcd\x71\x60\xff\x65\xff\xc1\x58\x8c\xc3\x78\x34\xb1\x33\x6c\x16\x13\x30\x91\xfd\x83\xfd\x93\xb5\xb2\x36\xf6\x19\xfb\x1c\xcd\x98\xc4\x9c\xcc\x85\xc9\x98\xc2\xbe\x60\x5f\x62\x2a\x5a\x30\x0d\xad\x68\x43\x3b\x6b\x67\x4b\xd9\x9f\xd8\x57\xac\x83\x75\x72\x39\x57\xb0\xaf\xd9\x69\x4c\xc7\x0c\xf6\x0d\xfb\x33\x66\x62\x16\x66\xb3\xff\xc3\x1c\xcc\x65\xff\x62\xff\x66\x5d\x6c\x19\xeb\xc6\x3c\x74\x70\x81\xcb\x30\x1f\x0b\x38\x72\x62\x7f\x61\x7f\xe5\x8c\x73\x2c\x64\x2b\xd9\x30\x1b\x61\xab\xd8\x28\x1b\x63\xab\xb1\x08\x8b\xd9\xdf\xd8\xdf\xd9\x4e\xb6\x0b\x4b\xb0\x94\xed\x66\x7b\xb8\x0f\xf7\xc5\x32\x76\x09\xf7\x63\x7b\xd9\xa5\xb8\x1c\x07\xf8\x02\xee\x8f\xd3\xec\x53\xdc\x04\x32\xf2\x05\x37\xcc\xc1\x0b\x15\x0b\xbc\x0e\x8c\x7e\x42\xee\xd1\x2b\xfd\xc0\x41\x00\x19\xc8\x41\x01\x3e\xe0\x0b\x7e\xe0\x0f\x0b\x20\x00\x16\x42\x20\x28\x21\x08\x82\x21\x04\x54\x10\x0a\x6a\x58\x04\x61\xb0\x18\xc2\x21\x02\x96\x40\x24\x44\x41\x34\x68\x20\x06\xb4\xa0\x03\x3d\x18\xc0\x08\xb1\x10\x07\xf1\x60\x82\x04\x48\x04\x33\x24\x41\x32\xa4\x40\x2a\x58\x20\x0d\xac\x60\x03\x3b\xa4\x43\x06\x64\x42\x16\x64\x43\x0e\xe4\x42\x1e\x38\x20\x1f\x0a\xa0\x10\x8a\xa0\x18\x4a\xa0\x14\xca\xa0\x1c\x2a\xa0\x12\xaa\xa0\x1a\x6a\xa0\x16\xea\xa0\x1e\x1a\xa0\x11\x9a\xa0\x19\x5a\xa0\x15\xda\xa0\x1d\x96\x42\x07\x74\x42\x17\x2c\x83\x6e\xd1\x7b\x8a\x1a\x8b\x7f\xc3\x7f\xe0\xb7\x38\x47\x8c\x64\x24\x90\x9c\x7c\x48\x41\xbe\xe4\x4f\x01\xb4\x80\x16\x52\x20\x05\x91\x92\x82\x29\x84\x54\xa4\xa6\x50\x5a\x44\x8b\x29\x8c\x22\x28\x5c\xd4\x51\x1c\x83\xd5\xd0\x07\xfd\xb0\x02\xc7\x61\x3d\x5c\x0c\xa3\x30\x8c\xdb\x60\x2d\x0c\xe1\x7e\xd8\x06\x3b\xf0\x52\x18\xc7\xcb\xf1\x0a\x18\x80\x75\xb8\x0b\xf7\xe0\x6e\xf8\x35\x5e\x06\x2b\x61\x1a\x1e\x82\x9d\xb0\x07\xb6\x42\x2f\xac\xc2\xbd\x70\x0d\xee\x83\xbb\x61\x04\x36\xe2\x1a\x60\xf8\x15\x7e\x83\x2e\x51\x63\xc5\x73\xc3\x11\x5c\x85\x2b\x70\x08\x76\xe3\x95\x14\x4d\x97\xe3\x06\xdc\x84\xeb\x70\xbd\x74\x08\xab\x61\x03\x0e\xe3\x28\xae\xc5\xd3\xf8\x4f\xfc\x1a\xff\x85\x7f\xc7\xff\xc3\xff\xe0\x7f\xf1\xdf\xa2\x05\x02\xc0\x33\x92\xed\x01\xb8\x14\x6e\x80\x5b\x60\x0c\x8e\xc2\x4d\x70\x0c\x26\xe1\x38\xdc\x0c\x37\x8a\xe7\x8c\x07\x79\x01\x33\xcb\x00\x04\xf0\x83\xb4\xca\x99\x25\x75\x6d\x8e\x05\x24\xca\x46\x3b\x43\xc4\x5c\xa8\x0a\x77\x04\x33\x14\x5f\x68\x16\x5f\x80\x76\x12\x91\x74\x75\xfb\x83\x41\x41\x41\x4a\xae\x58\x64\x42\xa6\x0d\x36\x5a\x04\xe9\x5f\x74\x06\x76\x70\x1c\x46\x73\x60\x87\x80\xc3\xc2\x45\xae\x27\xd1\x76\xc9\x56\xe9\x5f\x51\xa6\x72\x00\xf8\x21\x61\x06\xc2\x21\x0a\xd6\x55\xce\xa8\xeb\xda\x1c\xc6\x00\x3f\x62\xfe\x44\x80\x0c\x7a\x15\x28\x93\x65\x57\x2e\xf4\x25\xce\x85\x76\x1f\x39\x09\x42\x5e\xe5\x02\x44\xcc\xc1\xaa\x70\x87\x5e\x7c\x41\x7c\x8f\x09\xbc\xef\xbb\x57\x79\xc6\xb5\x3b\x16\x47\x45\x2e\x89\x08\x5f\x1c\xb6\x48\x1d\xaa\x0a\x09\x0e\x52\x7a\x7e\x02\x03\x15\x4b\x4c\xa8\x61\xda\x60\xad\x55\x13\xac\xb1\x6a\x82\x2d\x4c\xfc\xb5\xa8\xb4\x4c\xa3\xd2\x30\x2d\xd3\x04\x6b\xe8\x1d\xd7\xb3\xd5\xfd\xd5\x73\x18\xd8\xe8\xfa\x13\xc6\xd5\xf6\xd7\x62\x56\x6d\x7f\xed\xe7\xff\x69\x44\x70\xfd\xb9\xba\xff\x7d\xcc\x6a\x74\x3d\x83\x87\x5d\x83\x78\xb8\x0b\x1f\xe9\xc1\x63\x2e\xe9\xb7\xc7\x55\xda\xe5\x1a\xc4\xff\xc3\x47\x24\xdd\xb8\x67\x2e\x99\x67\xc8\xf6\x43\x21\x6c\x72\xf8\x05\x2d\x24\x82\x14\x64\x9c\x2a\x2a\x67\x02\xea\xda\x1c\xb1\x80\x24\x10\x0a\xe3\x20\xc8\x48\x90\x8d\x01\xe3\x9c\xad\x90\x0e\x03\xa8\x1f\x64\x32\xde\x01\x9c\x17\xf3\xaa\x70\x87\xf1\xbb\x43\xd9\xda\xef\x19\xd9\xee\x50\x3a\x72\x33\x33\xac\x69\x96\xd4\xc8\x88\x45\x6a\x65\xa0\x5c\x11\x62\xc2\x34\x33\x19\xcd\xcc\x9a\x96\x4b\x76\xab\x45\x15\xc9\xd4\x5a\x33\xd3\xc6\x04\x90\x3c\x24\x92\xd4\x91\x4c\x15\x12\x40\x72\x95\xd6\x6a\x66\x46\x4b\x24\xb3\xa7\xe6\x12\x7b\x2a\xb5\x6d\xb2\xa8\xf1\xaa\xd5\xf9\xe9\xfd\x97\xd4\x0e\xb6\xec\x59\x66\xa1\x49\x8c\xaf\x59\x5d\x92\x37\x5a\x6f\xc6\x94\xd6\xe9\xd2\xa6\xab\x46\x1d\x59\x83\x97\xd5\xaf\x68\xbe\x6e\x4d\x11\x4d\x61\x66\xf7\xa6\x22\xc7\xba\xd6\x34\x5c\xe1\xe8\xad\x48\x5f\x14\x5e\xd2\xb7\xbb\xb3\x79\x4f\x4f\x86\xfc\xc5\x97\x14\x45\x6b\x8f\xf6\x56\x6e\x5d\x6a\xd1\x95\x0c\x14\x14\xf6\x96\xdb\xc3\x22\x8a\xfb\x76\x75\xb4\xec\xe9\x4e\x97\x3f\xf1\xb8\x2c\x63\xe4\xa6\x55\x6d\x5b\x1b\x0c\xa8\x2b\x19\x04\x01\x12\xe6\xbe\xe6\x47\x85\x67\x40\x05\x26\xc8\x87\x56\xe8\x80\x1c\x47\x66\x07\x12\x6b\x47\x99\x9c\x2a\x80\x00\x39\x61\x3f\x70\x90\xcb\xb8\xbc\x1f\x18\x03\x11\x58\x17\x55\x82\x4c\x26\x74\x80\x20\x14\x0b\x55\x71\xee\x1f\x9d\x42\x11\x61\x0a\x4e\xcb\x25\x4b\x6a\x24\xa9\xc4\x65\x6a\x63\xcc\x64\xb5\x84\x44\x92\x25\x35\x97\xac\xd6\x34\x33\x89\xfb\xa0\xc2\x5c\x26\x0e\x51\xab\x02\x98\x38\xc2\xf8\xdd\x11\x82\x11\xd5\x09\x9a\xbc\xee\xdc\xbc\xee\x3c\x8d\x26\x6f\x59\x6e\x5e\xb7\x43\xd3\x13\x64\xcc\x8e\x8f\xcf\x34\x04\x05\x19\xb2\xe3\xe3\xb3\x0c\x41\xa4\xc2\x68\xc7\xb2\xbc\xbc\x65\x0e\x0d\x8a\xcf\xa4\x51\xd8\x1b\x64\xc8\x36\xc5\x67\xe9\x83\x82\xf4\xd9\x26\x53\x96\x41\xe9\xea\xaf\xa6\x86\x6a\x7e\xcc\x3e\xdc\x98\x6a\x69\x18\xb6\x57\xdb\x86\x1a\x52\x53\xeb\x87\x6d\xba\xf2\x4c\x9d\x3e\xb3\x4c\x57\xad\x2f\xcf\xd2\xeb\xb3\x2a\x74\xb3\x8f\xd9\x86\x1b\x52\x53\x1b\x86\x6d\x35\x76\x71\x4c\xc3\x90\x5d\x5f\x9e\xa5\xd3\x65\x95\xeb\x6b\xf4\xe5\x99\x3a\x5d\x66\xb9\xfe\x71\x33\x77\x98\x25\x2b\x0c\x7b\xe6\x4e\xf3\x63\xc2\x33\x90\x08\x59\x50\x05\xcf\x38\x02\xf3\x2c\x89\x2a\x8e\x42\x4a\xf4\x92\x50\xce\x51\x14\x3c\xdf\xba\x36\x47\x0c\x08\x82\x77\xd3\x10\xa9\x83\x21\x51\x4e\xa5\x0c\x39\xf7\x3c\xa7\xaa\xf0\xca\x99\xa0\xba\x36\x47\xf4\xf9\x23\xdb\xc1\x3b\x90\x75\x00\x63\xc5\x4c\x1c\x17\xf2\x3f\xce\xf8\xd3\x93\xb5\xb7\xb7\x3b\x16\x26\x99\xcb\x4b\xcd\x59\x49\x59\xda\x90\xc8\x38\xb9\x68\x56\xdc\x92\x2b\x1d\xa1\x28\xa8\x72\xb4\xd9\xec\x96\x10\x99\x5c\xad\x35\xca\x64\xd2\x81\x8a\x82\x1d\x1c\x6a\xb3\xa3\x51\x2e\x93\xa9\x43\x22\x89\xc9\x42\xd5\x76\x9b\xcd\xee\x39\x3d\xbc\x59\x63\x8f\x53\x27\x36\x4d\x55\x38\x86\x2b\xe3\xa2\xad\x25\x86\x0d\xb8\x2e\x21\x99\xc6\x8a\x0a\xee\xbf\x62\xa2\xfa\x97\xa3\x9d\x87\x57\xe7\x25\x54\xf4\xa7\x5f\xb5\xec\x86\x1c\xd7\x6e\x5f\xfd\xd2\x5e\x4c\xac\x1d\x5b\x81\x05\x96\x9d\xd9\xf9\x18\x96\x98\x67\x4c\xa9\xb4\x84\x33\xb5\xa9\xa5\xad\x23\xb9\x7c\x63\x6b\x72\x62\xcd\x50\x56\x4a\x73\x65\x61\xe4\x72\x57\x7c\xd9\x89\xce\xe9\x37\x97\x7e\x72\x79\x45\x9b\x6d\xf9\xfe\xd6\xc2\xf5\x2b\x3a\x4d\xce\x7c\xac\x2a\xc0\x0f\xfd\xa3\xab\x6f\xad\xce\x1b\x2a\x8f\xe3\x09\x15\x57\x94\x8c\x9a\x57\xe7\xe9\x0b\x2c\x91\xfa\xdc\x06\x00\x24\xce\x0b\x68\x9d\x64\x6f\x13\xdd\xd6\xd6\x4f\x34\x19\xed\xe0\xb1\xb5\x81\x92\x5f\x6e\x06\xd1\xd2\x82\x64\x68\xef\x0f\x52\x92\x22\x54\x32\xb3\x56\x0b\xad\x0b\x5a\x26\x8c\x08\x6b\x5d\xbf\xc3\x58\x11\xf9\x22\x6e\x71\xc5\xb3\x65\xb2\x1e\x50\x83\xec\xbe\x20\x01\x93\x4d\x98\x16\x14\x64\xb3\xab\x03\x48\x14\xfd\xa0\xd0\x50\xb5\xdc\x60\x20\xb2\xe2\x96\x92\xe9\x5b\x7b\x96\x34\xef\xee\x4a\x49\xe9\xda\xdd\xbc\xa4\xf7\xd6\xe9\x62\xaa\x3a\x81\x45\x18\xf2\x46\x76\x7d\xce\xf3\x4e\xd7\xfb\x87\x43\x0e\xb9\xde\x73\xbe\x98\x57\x9d\xf3\x3a\x06\x63\xe1\x49\x69\xfe\x16\x57\x3c\xb3\x9f\x37\x7f\x08\x91\x4c\x6e\xcc\xa5\x20\xab\x35\x8d\x0c\x06\xa3\x3d\x34\x34\x28\x48\xc5\xec\xc5\xd3\xb7\xf6\x4a\xf3\x5b\x96\xed\x6e\x58\xd2\x73\xeb\x74\x09\xe5\x9c\x74\x3d\xee\xfa\xe6\xf5\x9c\xea\x9c\x17\x5d\x68\x38\x14\x72\x18\x0d\xae\x17\x72\xaa\xb3\xdf\x70\x9d\x76\x3d\x76\x42\xb2\x95\x0f\xe3\x0b\xbc\x4a\xc8\x85\x00\x58\xec\x50\x07\x2c\xf0\xf7\xf3\xf5\x51\xc8\x65\x8c\xd0\x1f\x4a\x01\x60\x38\x04\x15\x2a\x13\xea\xed\x02\xb3\x30\xbd\x5a\x40\x39\x63\x46\xca\x74\x6d\xd5\xe1\x66\xbf\x0d\x41\xb8\xde\xe0\xda\x82\xfe\x7d\xff\xfc\xba\x87\x35\xaf\x9e\xb8\x1c\xaf\x73\x0d\x1e\x5c\xb3\xce\xf5\x64\x29\xb6\xb8\x4e\x16\x01\xc2\x24\x1c\xe4\x5d\xfc\x41\xf0\x03\x83\x43\x0b\x02\x90\xd0\xcc\x11\x18\x22\x01\xf6\x82\x20\x88\xf2\x28\x50\xb5\xdb\x47\xc8\x14\x8b\x4d\xa8\x51\x69\x94\x5a\xa5\xc6\xaa\x51\x5a\xe8\x66\x7c\xcc\x55\x34\xe5\xaa\xc1\x7b\xa7\xe8\xd3\xf5\x2e\x2d\x7e\xb0\x1e\x5f\x93\xf6\x65\x87\xeb\x1d\x6a\x87\xc7\xc0\x17\x02\x1d\x0b\x64\x02\xb9\xef\x36\x4c\xbc\x5b\xbd\x28\xaf\x46\x9b\xd5\x6a\xa1\xf6\x60\x6d\x5a\x4c\x55\xdb\x76\x6d\x42\x5b\x4b\xad\x26\x79\xcb\xe1\x1b\xc4\x35\x7f\x46\xed\xec\x45\x7a\x02\x18\x2c\x72\xa8\x2e\x3c\x70\x65\xa0\x74\xdc\x1a\xab\x86\xbd\xe8\x0c\xa7\xcf\xa8\x7d\x40\x94\x9b\xc8\xb9\x7f\xd2\xd7\xf0\x28\xf8\x41\xb0\x23\x50\xbc\x83\x0e\x40\x2c\xc6\x2a\x5d\x8c\x38\x5c\x9f\x66\xb3\xa4\x86\xaa\x42\x64\xda\x18\x03\x45\xda\x93\x92\xed\xf6\xe4\x24\x7b\x73\x7c\x56\x56\x7c\xbc\xdd\x2e\xde\xaf\x7a\xee\x62\xf6\x85\x30\x03\xcc\x7d\x3d\xc2\x5a\x40\xcc\xc6\x2a\xf7\xc7\x09\x5a\xb4\xe0\x9e\x71\xea\x19\xdf\x22\x4b\x94\x6c\xca\xd1\xb9\xd3\xdc\x22\xd9\x63\x2d\xa4\x88\x7b\x67\x0c\x23\x46\x58\x01\x44\xd2\x47\x17\x55\x7a\x4d\x70\x31\x54\x25\x24\xc4\xe9\x24\x2c\xe0\xb1\xb5\x46\xa5\xdb\xb2\xaa\x30\x44\x8d\x6e\xa7\xa3\xd2\xa4\x19\x31\x92\x49\xe6\x95\x5b\x6c\xe3\x27\x26\x37\x9c\x9c\xb0\x23\xda\x26\x4e\x6c\x98\x3c\x39\x6e\x9f\xfd\x84\xd1\x81\x80\xd4\xda\x55\xa5\x5d\x3b\xea\x74\x74\x2b\x73\xae\x59\x98\x56\xb3\xb2\xb8\x6b\x47\xad\x8e\x1c\x1b\xdf\xb9\xa5\xbb\xfb\x96\x77\x36\x62\xd2\xc6\x77\x7e\xd6\xdd\x7d\xfc\xdd\x8d\xae\x5f\xc5\xe9\xa9\xd1\x31\x56\x67\xae\xd9\x79\x62\x99\x26\xda\x79\x57\xee\xca\xea\x84\xda\x9d\x27\x96\xb9\xf1\xe9\x7b\x62\xec\x27\xcc\x80\x0c\x42\x1c\x4a\x81\x8b\xe1\x57\x19\x00\xe4\x40\x55\xa0\x78\x46\x1a\xad\x52\xb0\xea\x2d\xf4\xf9\x94\x6b\x14\xbf\x55\x0a\x61\x27\x27\x5e\x97\xae\xeb\x03\xe0\xc1\xc2\x29\xd0\x81\xd9\x61\x22\x04\x2e\x2e\x19\x39\x12\x1f\x07\x44\xc9\x64\x15\x55\x02\xe7\xe2\x69\x89\xb3\x2d\xd6\x85\x98\x02\x05\x45\x98\x49\xa3\xb1\x62\x2e\xf3\x7a\x0e\xb9\xd6\xb3\x03\xa2\x2c\xa0\x86\x07\xcf\xae\xc6\x0f\xac\xed\xf9\xba\x84\xfa\xf1\xe2\xea\xa9\xc6\x44\x9c\x42\xc7\xba\xe3\x83\x3d\x37\x8e\xe7\x58\xea\x57\x58\x5c\xc3\xe4\xea\xa4\x25\xd9\x63\x23\xab\x32\x0a\xc6\x6a\x13\xd2\x96\x6e\x2a\x5f\x7a\x6c\xaa\x24\x63\xf8\xaa\xf6\xb2\x4b\x2e\xda\x98\xe9\xb2\xba\xd7\xd5\x3b\x77\x9a\xfd\x5d\x38\x05\xb9\x50\xec\x28\x88\x46\x39\x48\xf7\x07\x48\x30\x0e\x82\x5c\x26\x17\x64\xe3\x00\x20\x17\x40\xde\x3f\xef\x7e\xcf\x41\x85\xdc\xec\xb4\x54\x73\x62\x9c\x51\x17\x12\x1b\xad\x10\x8f\xcc\xf2\x03\x37\x1d\x1a\xea\xf5\x9c\x22\x3c\x90\xce\x4d\x04\x14\x5a\x3c\x38\x5d\xb2\xb9\xcb\x96\x50\x37\x51\x5c\xbc\xae\x39\x05\xa7\xa8\x70\xdd\xb1\xee\xae\x1b\x26\xf2\xb4\x05\xcb\x32\x2f\xb9\xb2\x78\xfa\xf8\xb2\x9e\xdb\xb7\x56\xd0\x24\xd9\xba\xb6\x94\x97\x4e\xb7\xa6\x64\x2d\xdf\x5d\x39\xcd\xc2\xd0\x50\x36\x54\x54\xba\xba\x2a\xd6\x54\xb3\xba\xa8\xe5\xaa\x55\x39\xf6\x15\xd7\xf6\xd8\xfa\x9b\x0b\x55\x86\x47\xb6\xf7\x1d\x5e\x99\x91\x31\x72\xb8\xb7\x6c\x5d\x43\x42\x6c\xcd\xba\xaa\xba\x89\xb2\x18\x31\x1e\x69\x02\xe0\x9d\xc2\x0c\xf8\x42\x00\x98\x1c\xb1\x0b\x10\xb8\x02\x11\xa8\x42\x38\xa7\xc5\x9c\x67\x57\x82\xe4\x6d\x94\x41\x67\xd5\xd8\xa2\xd2\x4a\x6a\x8c\x16\xd4\x28\xe5\x6c\xea\xd3\x4f\x27\x9d\x8d\x74\xf3\xc5\xce\x55\xb4\x24\x03\xdf\x1c\x70\x5d\x89\xe3\x45\x6c\x76\x56\xcf\x8a\x06\x00\xe1\xd5\xb9\xd3\xdc\x21\xcc\x40\x02\x64\x3b\x32\x04\x94\x51\x02\x72\x19\x55\x00\x97\x09\x32\x2e\x8c\x03\x81\x8c\x93\xac\xdf\xa3\xa7\x90\x5d\x09\x82\xe0\x75\x60\xb1\xba\x90\x58\xad\x52\x29\x57\x84\x9b\x30\x58\x04\x93\x36\x9b\x77\x1b\x2f\xdc\x3f\x69\x9b\x91\x97\xd2\xdb\xce\xcb\x53\x6d\xfb\xea\xfa\x8f\x8d\x67\xa7\x8d\x1c\x5f\xdd\x71\x64\x7d\xb9\xef\x3a\x9f\xb4\xa6\x35\xa5\x75\x1b\x6a\xf4\x89\x2d\x9b\x6a\xcc\xd5\x85\x39\x91\xf4\x15\x3d\xbb\xce\x15\xa6\x37\x15\x6f\x39\x39\x38\x30\x73\x71\x95\x6d\xe8\xda\xee\xd2\xf1\x9a\xb8\xcc\x15\x97\xd5\x57\xed\xec\x4b\xf7\x0f\x37\x86\x8b\xd8\xfa\x9a\xb9\xd3\x3c\x42\xf8\x25\x68\x21\x1d\xec\x8e\xb4\x38\x39\x09\xa2\xe8\xa2\x0c\xb9\x80\xbc\x5f\xd4\x69\xf1\x6e\xa5\xfb\xa6\x0e\x20\x2a\xa6\x2a\xbd\x2e\xd9\xac\x4b\xd7\xa7\x87\xc7\xc6\x6a\x24\x9f\xab\xd2\x06\x30\xf9\x39\x19\x90\x6e\xde\x9a\x96\xcb\xed\x4c\xbc\x6d\x55\x48\x24\xd9\x3d\xeb\x60\xdd\x41\x07\x5f\xbb\xb4\x4c\x1e\x51\xd3\xb5\x32\x7d\xf8\xc6\xe1\x34\xfb\xe8\xcd\x2b\xd7\xdc\x3d\x95\x8b\xd1\x45\xab\x0e\xff\xe6\xa2\x2f\x32\x46\x3b\x8b\x95\x69\x5d\x3b\xaa\xab\xd6\xd7\xc6\xc5\xd5\x4f\x0a\xbf\x1c\xc5\x9e\x9b\xdf\x58\x1b\x5b\x94\x1c\x5e\xbf\xeb\x64\x67\xcf\x7d\x97\x36\x75\x5c\xf3\xe4\xe0\x8e\xa1\x97\x1e\xbc\x61\x22\x1f\x9d\x87\x75\x8e\x0e\x7b\xf7\xb2\x9b\xd6\x38\xb0\x60\x74\x7f\x65\xe5\xde\xe1\x3c\x51\xde\xb7\x78\x72\xa3\x32\x88\x72\x44\x88\xf8\x41\x5c\x94\x1b\x45\x64\x57\xba\x55\x50\xa9\x54\x32\x85\xda\x84\xa8\x15\xad\x26\xcf\x74\x1e\xdc\x42\x2b\x67\x4f\xb1\xc7\x85\x91\x6f\xaf\x11\x8a\x47\x24\x7b\x76\xcf\xdc\x69\x5e\x2b\x9c\x02\x23\x64\x41\x2d\x58\x1d\xa9\x61\x02\x91\x80\x15\xa2\x4b\x60\x02\xf5\x03\xe7\xdf\xb5\x6b\x55\x15\x05\x8e\x74\x9b\x39\x41\x17\x63\x96\x89\x6e\x48\xd4\x0b\x37\x70\x3e\x0b\x40\xce\xc1\x14\xe6\x05\x8d\x1e\x14\x79\xe1\xdf\x3c\x5e\xef\x68\xb7\x66\xaf\xa8\x8c\xaf\xd8\x76\x7b\xd7\xb2\x3b\xb6\x55\xc4\x55\x0c\x64\x5b\x5b\x1d\xda\xfc\x35\x87\x97\xb6\xdf\xb8\xae\xb0\x31\xbd\x7b\x4b\x51\xf1\x96\x2e\xbb\xbd\x6b\x4b\x69\xf1\xe6\x65\x76\x7d\x6a\xf3\x78\x6e\xde\x58\x63\x52\x4a\xe3\xea\xdc\xdc\xd5\x4d\xa9\x3c\x23\x6b\xa8\x39\x5f\xa5\x2a\xea\x5c\x53\xd0\x7f\xfd\xa0\x35\x6d\xc5\xf5\xfd\x05\x6b\x3a\x8a\x55\xaa\xfc\xe6\xa1\xac\xae\x83\x83\x36\xdb\xe0\xc1\xd9\xaf\xcb\xd6\xd5\x99\x4c\x75\xeb\xca\x2a\xd6\x54\x1b\x63\xab\x27\x18\xcb\x5f\x55\x1d\x1f\x57\x39\x5a\x58\x38\x5c\x6e\x34\x96\xaf\x04\x82\x23\x73\xff\xe2\x31\xc2\x29\x49\x5e\x7e\xf9\x60\x9c\x40\x5c\x40\x0f\x4e\x8c\x92\x23\x07\xd1\xf2\xf5\x7b\x65\xa5\xa8\x52\x86\x1e\x01\xca\x91\xc0\x9f\xff\x4f\x0d\x73\x63\xc4\x80\xff\x65\xb6\x9f\x9c\x48\xc4\x87\x6a\xbd\x0e\xc1\x2d\xad\x31\xd1\xaa\x60\x3f\x1f\xd0\xa2\x56\xa1\x08\x31\xe9\x73\x99\xdd\x0d\xdf\xa5\xe3\xf0\x20\x7e\x2e\xd7\xda\x83\x53\xc5\xc0\x67\xde\x21\xe0\xd6\x43\xaf\x5e\x9c\xcd\x16\x97\x77\x8e\x39\x86\x6e\x18\xb6\x66\xac\xfe\xd9\xaa\xad\x77\xaf\xb6\x84\xe7\x0e\x5c\xfb\x9b\x9d\xe1\xf8\x65\xf6\xea\xae\xe2\xa0\x84\x96\xed\x4d\x35\x53\x8d\xa6\xd8\xba\x0d\xbd\xd8\x75\xf4\xb5\xc9\x84\x72\x5b\x64\xf3\xa5\x77\x2f\xed\x7b\xe8\x8a\x16\xec\xff\xd9\xab\xa3\xeb\x96\x3f\x7d\xf7\x35\xa3\xb9\xb8\x0a\x3f\x31\x96\xf6\x66\xe6\xf4\xde\xb9\xad\xbc\x78\xfc\x40\x75\xd9\xbe\xb1\x22\x80\xb9\x39\x6a\x9a\xfb\x27\xd3\x70\x03\x19\x20\xd0\x06\x28\x87\x40\xb0\xb1\x55\xe0\x73\x0f\xe2\xc3\x6c\xd5\x8c\xc5\x24\x8e\x09\x74\xbd\xc3\x96\x70\x03\x19\x21\x10\x52\xd9\x2a\x94\x43\x00\x5c\x01\x00\x3e\xf7\x80\x77\x94\x64\xef\x7f\x0e\x9f\xb3\x39\x9e\x05\x32\x90\xdd\x27\x90\x88\xbf\x50\x85\x56\x54\xa1\x99\x5e\x9d\xbd\x8d\xb5\xd3\x95\xae\x37\xb6\xe2\xa6\x1e\xdc\xb8\x45\xca\xdb\xdc\x85\x07\x78\x3c\xbb\x16\x18\xc8\x21\xc6\x11\x25\xa2\x0b\x86\xd0\x0b\x8c\x88\x35\x03\x63\xa2\xe6\x30\x09\xef\x04\x4a\x1e\x5b\xc4\x39\xa2\xd6\xc4\xcf\xee\x64\x9b\xc5\x5f\x96\xb0\xd2\x79\x66\xa5\xf4\xd9\x0f\xc1\x97\x5c\xc3\x73\xe6\x7f\xb6\xf8\xc9\x56\x76\xad\x53\xc3\x56\xce\x5e\x4b\x57\xa3\x79\x93\x6b\x77\x8f\x6b\xd7\x26\xe9\xb3\xdf\x9f\xfb\x0f\x07\xe1\x14\xc4\x81\x15\xd2\x1d\x56\x40\x60\x80\x6c\x5c\x86\x8c\x03\xe3\x63\xe2\x18\xf7\xe9\x02\xe7\x52\xcc\x96\x23\x54\x01\xa4\xa5\x9a\x13\x20\x0e\xe2\x74\x21\x66\xb9\xa8\xc6\xb9\xcc\xfe\x03\x2e\x29\x80\xa9\xd8\x7c\xa0\x13\x81\x4a\x5d\x4e\xa2\xb1\x3c\x33\xc6\x50\x3a\xe8\xc8\x5a\x51\x93\x44\x53\xcc\x31\x7a\x55\x4b\xc7\xc1\xc1\x74\x53\x49\x67\xb2\x26\x7e\xb1\xef\x15\x66\xa3\x31\x39\xd9\x68\x34\xe3\xd5\x79\x5d\x35\xa5\x71\xfa\xea\xe6\x9e\x8c\x9c\xe5\xc5\x86\x18\x47\x77\x4e\xc3\xae\x65\x16\x6b\xdf\xde\xe6\xe2\xe9\x91\xae\xb8\xc8\xcc\xfc\x32\x93\xeb\x7e\x6d\x4a\x8a\x36\xc6\x6c\x06\x82\xac\xb9\x7f\xf1\x03\xc2\xc3\xd0\x09\x13\x98\x50\x39\x13\x5f\xd7\xe6\x50\xae\xd4\xc5\xf8\x73\xe6\x53\x84\x02\x14\xa3\x4c\x60\x15\xe1\x9e\xd7\x14\xf3\x5e\x6b\x77\x2b\x92\x11\x08\x7c\x18\xf9\xf4\x2b\x90\x21\x82\xc0\x40\x34\x33\xf2\x0e\x90\xcb\x25\x3b\x2c\xeb\x00\x99\x2c\x47\xe6\x55\xa8\xff\x69\x78\xb1\xcc\xab\x58\xff\x0f\xb3\xc7\xff\xbf\xcc\xee\x48\x10\x47\x2a\xc8\xa7\x1f\x14\x0c\x14\xad\xf0\xa3\xc3\xdb\x45\xed\x0c\x18\x5b\x15\x9f\x10\x17\x1b\x1f\x1f\x1f\x6b\xf0\x55\x2c\x31\x61\x80\x20\xf9\x0e\x49\x31\xb9\xdd\x13\x66\xcb\x99\x4c\xb2\x84\xdc\x6e\x13\x0f\x57\x26\x23\xb9\xfb\x05\xb2\xab\xbd\x23\x05\x71\xa4\x20\x0b\x71\x7b\x4c\x7b\xb0\xc1\x20\x4a\x01\xdf\x4f\xfe\x61\xc6\xcc\x9a\x54\x7d\xba\x31\x4c\x16\x94\x60\xcd\xd5\xc6\x65\xc7\x2f\x0e\x20\xa6\xb0\x34\x4f\x57\x47\xa7\x99\xb4\x4a\x4c\x26\x99\xca\x10\xa9\xb1\x18\x17\x07\x2a\x50\x30\x0f\xde\xb4\x6a\xc5\x23\x97\xb7\x09\x42\xfc\xe8\xa3\xfb\xa2\x8a\x0b\x72\x16\x85\x87\x17\x57\x56\xc5\x8c\xfd\x62\x4b\x73\x6a\x30\x63\xb1\x65\x43\x7b\x7e\xd6\x73\xd9\x13\xeb\x92\x9d\x51\x24\x5f\x18\x66\x58\xac\xcd\x4c\x36\x2e\x4c\x08\x4a\x88\x2c\xe8\xc8\x8e\x66\xf2\xc4\x95\x2b\xfb\xaa\x12\xc3\x13\xb3\x35\x9a\xec\xc4\x70\x6d\x56\x4d\x4b\x5b\x6c\xff\x5d\x3b\x2a\x03\xc3\xa2\x95\xe8\x52\xc4\x14\x58\xa3\xf5\x39\xf5\xad\x6d\xc6\x3d\x1f\xdc\xd8\xdc\x35\xe3\x9a\x3b\xbe\xf1\xfd\x9f\xf7\xfa\x05\x87\x07\xd6\x07\x47\xa9\xfc\xd2\xba\x76\x1c\xbe\xbb\x73\xc5\xa9\x93\x07\x86\x33\xc7\x1e\x3b\xf3\x79\xb8\x23\x3f\x3b\x29\x42\x9b\x51\x69\xc4\x87\x03\x82\x8b\xc6\x2e\x73\xe7\x59\x07\x00\xf8\x0e\x61\x06\xe4\xe0\x0b\x7a\x47\x8c\x2f\x72\xd1\xc3\x71\xa9\x3e\xd2\x27\x39\x39\xe6\xce\x6c\x49\x01\x8a\x08\x34\x51\xc3\x44\xb4\xae\x45\x0d\x63\x7b\x9d\x6f\xed\x98\xc6\x77\x57\xe1\x5b\x53\xce\x29\xfc\xfc\xef\x78\xad\x6b\xa5\x30\xf3\x6d\x1d\x21\xb9\xdc\xb9\x81\xa7\x01\x78\xa3\x30\x03\xa1\xa0\x85\x64\xc8\x75\x64\xf9\x23\x13\x81\x01\x97\x23\x23\xce\xfa\xbd\xc1\xb9\x84\xa0\xb0\x43\xe6\xfe\x30\xb5\x1a\x20\xd9\x6c\xd0\xa9\xb5\xea\x98\xc5\x8b\x20\x14\x54\x1a\x85\x42\x65\xb2\x28\x35\x91\x4c\xee\xf1\x82\xa1\x22\x92\x51\x6a\xdc\xba\x6a\xd4\x7b\x9f\x68\x9e\xc6\xcb\xdb\x6e\xbb\xa8\x16\x0d\xf9\x6d\x96\xbc\x91\x9a\x44\xac\xd8\x7a\xeb\x52\xd7\x5d\xd8\x5c\x30\xd5\x61\xb5\xb4\xaf\x77\xb8\x6e\x41\x7d\xde\x86\x8e\xf4\xcc\x9e\x8d\x0e\xd7\x17\xc2\x0c\x26\x76\x5d\xd1\x9f\xdb\x5f\x9d\x11\xbc\x30\xb7\x63\x5d\x61\xef\x75\xc3\xe9\x48\x8f\x39\x4f\xa0\xa9\x66\x75\x69\xf1\x48\x45\x2c\xad\xc0\x98\xa2\xc1\x92\xf2\x15\xf9\x51\x52\xd6\x7a\xcb\xdc\x69\x5e\x29\x9c\x02\x0b\xd8\x1c\x16\xd1\x7d\x33\x12\xc6\x65\x28\x70\x26\xf0\x31\x60\xcc\xeb\xc8\x39\xf7\x3a\x72\x00\xb0\x80\x25\x51\x17\x92\xa8\x93\x8b\x5b\xe8\x16\x37\xa3\xd5\x2d\x6f\x9e\xc4\x18\x57\xa9\x42\x22\xb9\x24\x77\xbc\xd2\xbf\x62\xe3\x6d\x43\xad\xfb\x47\xeb\xd2\xc2\x10\xc3\xd2\xea\x46\xf7\xb7\xae\xbc\x6d\x63\xb9\xdf\xa4\xbf\xb5\x6d\x73\x63\xe9\x58\x63\xa6\x4e\xa9\xd4\x65\x36\x8e\x95\x36\x6d\x69\xb5\xfa\xe1\xa3\x7d\x77\x6c\x29\xb1\x76\x6e\xbe\xe2\x70\xd5\xeb\x55\x87\xaf\xd8\xdc\x65\x2d\xd9\x72\xe7\xf2\xca\x9d\xfd\x19\xc9\x75\x23\x53\x5b\xb2\xde\xcc\xda\x3a\x35\x52\x9f\x6c\xef\xdb\x59\x25\x9d\xfb\x3d\x00\xbc\x5f\x98\x81\x05\x10\x0e\x09\x8e\x38\x01\x3d\xa8\xc3\x73\x0e\xdc\x7d\x0e\x01\x01\x00\x01\xe1\x01\x8b\x95\x0b\x61\x01\xf8\x6b\x64\xde\x33\x50\xab\x02\x98\x9c\x29\x2d\xb9\xcc\x6e\x35\x33\xe3\x3d\xd8\xb3\xef\xfd\xeb\xeb\x88\xea\xae\x7f\x7f\xdf\x97\x5f\xae\xbf\x67\x43\x0e\x62\xce\x86\x7b\xd6\x0b\x33\xb4\xf2\xde\x6f\x76\x5f\xb1\xfb\x9b\x7b\x87\x49\xa8\x38\x13\x4e\x9d\x87\x9e\x1b\x3d\xb8\xea\xd9\xeb\x3b\xc9\xed\x5f\x5e\x00\xe0\x3a\x61\x06\xfc\x20\xce\x61\x00\x01\x00\x05\x10\x11\x35\x6b\x77\xa3\x45\x6f\xc6\x86\xaa\xe6\x87\xc8\x4a\x31\x48\x96\x7e\xd9\xd3\xce\xad\xf4\xe9\xec\xad\xac\xd5\x19\x4d\x17\xd1\xa3\xce\xbb\x86\x84\x99\x61\xe7\x7b\xe2\xdc\xaf\x01\xf0\x24\x61\x06\x7c\x40\xeb\x88\xf6\xc8\x74\xaf\xc7\x07\x91\x34\xf7\xf9\x72\x2d\xe2\x75\x69\xce\x97\x9d\x9b\xa7\x58\x97\x33\x9c\x76\xd2\xed\xce\x36\x71\xbe\x17\xc5\xf9\xd6\xcf\x9d\xe6\xe5\xc2\x29\xb0\x43\x86\xc3\x66\x01\x09\xb2\x00\x31\x19\x23\xd9\x38\xc8\x40\xe0\x32\xa1\xf7\x7b\x8f\x5f\xa9\xf2\x1c\x7d\xb8\x49\x1f\xc0\xb4\x66\xe1\xc2\x93\x97\xab\x22\x05\x75\xa8\x68\x70\x44\x5f\x58\x6e\x1a\x5a\xbf\xbd\xa0\xf5\xc0\xba\x96\x8c\x48\xc4\x70\x7b\xc3\xf8\xfe\xd6\xde\x5b\x37\x57\xfb\x6e\x08\xc8\x68\x9b\xac\x2a\x19\x6f\xce\x31\x06\x21\xaa\xe2\x1d\xed\x6b\xca\x12\x7b\x3a\x6a\x97\xa0\xeb\x36\x7c\xe9\xa4\xa5\x22\x49\x85\xd6\xae\x2d\x57\xde\x58\xf3\x9b\xaa\xc3\x57\x6c\xea\xb4\xe6\x4d\x1c\xed\x29\x99\x6a\x49\x49\xaa\x1d\x9e\xdc\x92\xf5\x72\xce\xf6\xe9\x55\xf5\x49\x88\x7e\x4b\x52\x0d\x38\x35\x24\xae\xe9\x26\x00\x9e\x28\xed\xbf\xc6\x11\x09\x6e\x1c\xd4\x2b\x4a\x43\x76\x25\xa1\x17\xde\x7a\xf6\x5d\xa3\x55\x8a\x7b\x64\x51\x6a\x94\x16\x9e\x38\xe1\x6c\x9a\x98\xa0\x13\x13\xf4\xa8\xb3\x44\x98\x71\xae\xa1\xcb\xc5\xf9\x9e\x02\xe0\xfe\xd2\x7c\x5a\x47\xb4\x80\x67\xc3\x15\x8e\x44\xd2\x99\xe6\xb0\x79\x33\x06\x7b\xce\x51\x04\x01\x4f\xb1\x4a\xd7\x55\x38\x3a\xfb\x00\xf6\xb9\x8e\x0a\x33\xab\xce\x18\x56\xae\xe4\xef\x8a\x73\xae\x9e\x3b\xcd\x41\x98\x01\xb5\x84\x28\x08\x18\x10\x1b\x77\xcb\xaa\x67\xb7\x8b\xb1\x4a\x17\xa2\x77\x23\x0a\x8b\xd2\x9b\x4e\xf5\x18\x71\xb6\x7b\x23\x15\x4d\xff\xbc\xbf\xff\xf8\x86\x12\xf9\x46\x96\xda\x3a\x55\x59\xb5\xb1\x35\x89\x84\x99\x59\xdf\xbe\xdb\x37\x97\xe5\x4c\x1c\xed\x2b\x9b\x6e\x49\xca\xec\xbb\xa8\x4c\x92\xc9\xe7\x01\xf8\x8d\xc2\x0c\xf8\x8b\x98\xdf\x57\x86\x0c\x10\x2b\x08\x11\x45\x63\x28\xed\x49\x50\xb0\x32\x48\xfa\x30\xb9\xb4\x1f\x76\xb4\x88\xe8\x7f\xf6\x97\xd3\xd3\xf7\xe1\xe9\x6b\x9c\x6f\x53\xdd\x41\x7a\xf5\x39\xe7\xbf\x85\x99\xd9\x7f\xbd\x4c\x39\xce\xe9\xd9\xdf\x03\xc2\xfb\x00\x3c\x43\x98\x01\x01\xc2\x1c\xa1\xde\x00\x42\xca\xbd\x49\x72\x18\x28\x46\x11\x7a\x71\x47\x2c\xd8\x44\x9f\xcd\x1e\x9f\x1a\x1a\x12\x66\x00\xe1\x36\x00\x9e\x25\xcc\x40\x00\x98\x1d\x26\x5f\xd1\x70\x4a\x51\x37\x20\x10\x8e\x0b\x9c\xc4\x9d\xf0\x58\x69\x00\x08\x80\x80\xe0\x60\x65\x90\x4c\xb1\xc8\xe4\x43\x16\xa5\x56\x19\x8c\x5a\x0c\x56\x6a\x95\x98\x8f\x7a\x4c\xbf\x71\xbd\x8f\xeb\xf1\x1a\xd7\x1b\xbe\xeb\x85\x99\xd9\xe7\x59\xfa\xb7\x75\xb4\x8b\x2e\x9b\xfd\x39\xab\x72\x5e\xec\xdc\x24\x7d\xde\xcd\x00\x3c\x41\xd2\x9b\x48\x47\xb8\x9c\x08\x08\x2b\x18\x8a\xf7\x8b\x9e\xe5\x2b\x83\xa4\xbd\xd6\x68\x91\x69\x95\x16\x0c\xb6\xf0\x84\x49\xe7\x72\x9c\x9c\xa4\x1b\x70\x92\xff\xf6\x8c\x45\x98\x39\x63\xe5\x2f\x01\xc1\x66\x4f\xdc\xb3\x04\xb2\xa4\x08\xea\xfb\xd2\x37\x89\x89\x89\x06\x69\x37\x25\xb7\xed\x35\x8b\x5c\x6d\x34\x0b\x5e\xe5\x90\xdc\x36\xaf\xc5\x45\x96\x9a\x91\x7d\xad\x2d\xfb\x46\x6b\x2d\xa2\x5d\x4c\xad\x5d\x75\x59\x6b\xeb\xbe\xd1\x1a\xcb\x22\xdc\x80\x81\xba\x8c\x86\xb1\x92\x92\xd1\x86\x0c\x5d\x20\xa2\x52\xfa\xab\x74\xb4\x21\x43\xbb\x10\x69\xb2\xe2\xc8\x81\x6d\xdd\x76\x7b\xf7\xf6\x03\x87\x2b\x9e\xac\x38\x72\x60\x7b\x8f\xf4\xc7\x91\x4a\xca\xdc\x3a\x35\xda\x90\x9c\xd2\x30\x3a\xb5\x35\xe3\xe9\xcc\x2d\xd3\xa3\x0d\x29\x29\x0d\xa3\xd3\x5b\x32\x45\x3b\xf9\x36\x00\x1f\x93\xf6\x3e\x5c\x8c\xff\x81\x09\x48\xc0\xce\xc5\x6b\xde\x20\x10\x20\x3c\x4c\xb9\x10\x02\x60\x81\x46\x29\x53\x84\x9a\x50\x34\x26\x9e\x22\xc7\x39\xdf\x84\x75\x53\xf8\x62\xcf\x6d\x5b\xca\xca\xb6\xdc\xde\xed\xba\x0b\x1b\xca\x36\x77\x5a\xd3\x3a\x37\x97\xbb\xee\xa2\x36\xe7\xed\xc2\x0c\x65\xaf\x3e\xba\x7c\xf9\x8d\xa3\x99\x38\x80\xe6\x86\x0d\x95\x95\x1b\x9b\x93\x48\xbc\x8f\x95\x73\xc4\x57\x08\xa7\x40\x03\x79\xe2\x7d\x28\x04\x02\x86\x15\x72\x19\x41\xe9\x0f\xed\x69\xbc\x7b\x4f\x99\x5c\x2d\x47\x29\x65\xfd\x23\x3b\xbb\x02\x23\x73\xbb\xf3\xbf\x6d\x74\x9d\xd6\x94\xc7\xb5\x1f\x98\x68\xb4\x85\x23\x2e\xb6\x35\x4e\x5c\xd9\xde\x7e\x60\xa2\xc1\xbe\x18\x27\x51\x69\xcc\x6e\x5d\x5b\x5e\x3e\xd1\x9a\x2d\x5a\x9f\x20\x63\x4e\xcb\xda\xf2\xf2\xb5\xad\x59\x06\x25\xd2\xf6\xc6\x3b\x8e\x5c\x9c\xf8\x75\x15\xa2\x9f\xbf\xbd\x7b\xc7\xc1\xa3\xd5\x77\x55\x1f\xbd\x5a\xda\xe3\x1d\x57\xdd\x54\x4d\x39\x17\x6d\x1c\x6d\x48\x4e\x6e\x18\xdb\xb8\x23\x67\x26\x67\xc7\xa6\xd1\x46\xf1\x8f\x4d\x3b\x72\xc4\xb5\xfd\x06\x80\x0f\x0a\x33\x10\x04\x51\x90\xe8\x88\x5f\x88\xc0\x02\xa5\x1c\x0b\x30\x90\x4a\x6c\xc0\xb9\x84\xdc\xbd\x36\x3b\x36\x51\x33\xdf\x66\x7b\xb6\x19\x55\x5a\x3c\xbb\xd3\x74\xa7\xeb\xfa\x0d\x78\xa4\xe7\xce\x6d\xe5\xa6\xaa\xe1\x3c\xac\xda\xe2\x6c\xc7\x9c\xa2\x0d\xad\x29\xb6\xae\x6d\xe5\xae\xf7\xa9\xd7\x79\x93\x30\x43\x99\xa3\x47\x07\xcb\xa7\x7a\x2b\x16\x3b\xaf\x5c\x40\xcf\x52\x72\xe3\xba\xe2\xea\xa9\xc6\x04\x92\xec\xc0\xde\xb9\xd3\x7c\xa9\x70\x0a\x0a\x25\x3f\x8f\xc4\x09\xf9\x38\x70\x31\x56\x1d\x03\x22\x6f\x51\xe1\x5c\x22\x46\x2a\x82\x59\xa2\x96\x84\x2d\x0a\x09\x92\xb9\x4b\x60\xdc\x68\x16\xbc\x11\xba\xb7\x00\xa6\x92\x0a\x60\xc2\x85\xf9\x19\xf6\x87\x28\x7b\x59\x43\x4b\xac\x65\xb8\xbf\x35\x5f\x5f\x7f\xd1\xf1\xc6\xae\xdb\xb7\x55\xb1\x69\x85\x6d\xe9\x74\x79\xce\x64\x77\x56\xf1\xca\x6d\x19\xd6\x55\x03\x6d\xf9\xfa\xc6\x9d\xb7\xb7\xf4\xdc\xbf\xbf\x8d\x4d\xfb\xe4\x0f\xee\xae\x76\x6c\xea\xcb\xc6\x41\x4b\xbd\x23\xc5\x10\xb9\x20\xd0\x68\xc9\x6f\x18\xc8\xed\xd8\xd7\x93\x92\x33\x76\x63\x4f\xe9\xfa\xa6\x24\x4d\xe1\x40\x51\xf9\x60\x49\x92\x32\x30\xce\x56\xd8\x32\xec\xe8\xb9\xbc\x3b\x29\x7d\xd5\x4d\x83\x35\xd3\xf5\x71\xd1\x85\x2b\xc4\xb5\x2e\x03\xe0\x6b\x25\x1c\x18\xee\x58\x24\x5a\xfe\x73\x0e\xd8\xed\x24\x3d\xe1\x9a\x52\x2b\xb9\xa8\xb5\xae\xe4\xf5\xe8\x4a\xe2\x2a\xa1\xf4\xdb\x47\x84\xd2\x61\x69\xbf\x6e\x9c\x3b\xcd\x93\x85\x19\x08\x13\x7d\x09\x67\x24\x69\x87\x67\x9f\xdc\x20\x28\x0c\xc2\xf4\x2a\xbd\x20\x86\x59\xc1\x1e\x2b\x1d\x6c\x09\xf6\x82\x6d\x9e\x84\x94\xbf\xe1\xf6\xa1\xe1\xdb\x37\x14\x20\x4d\x30\x34\xb7\x6c\xad\xaf\xdf\xd2\x9c\x48\xa2\xad\xd6\xf7\xdf\xbb\xab\xb6\x66\xf7\xbd\xfd\xec\xbd\x59\x7d\xe5\x65\x23\x0e\xc7\xc8\x65\x95\xec\x3d\x40\x68\x03\xe0\xa3\x52\x8e\x46\xe5\x08\x12\xef\x7d\xde\x6d\x4b\x36\x55\x82\xab\x16\xea\xc5\xfd\xdb\x5c\x89\xab\x5d\x89\xdb\x1e\xe0\x67\xbe\xad\x93\x6c\x5d\x33\x00\x3f\x2c\xcc\x40\xa0\x78\xcf\xfe\x32\xb7\x6d\xe5\xe8\xb1\xa9\xde\xa4\x5e\x48\xb0\x24\x6d\x6a\x7b\xb0\x25\x58\xfc\x87\x69\x19\xd3\x32\x0b\x76\x2a\xfc\xdf\x18\x7a\xc3\xdf\xe7\x9a\xf1\xdf\x4e\xfe\xe1\xc3\xc9\xdf\x4e\x60\xc5\xe0\x20\x1f\x3c\x73\x78\x78\x98\x0f\x7e\x5b\xc7\x9f\x38\x53\x20\xf1\xea\x10\x46\x3c\x38\xdb\x4f\xb4\x82\x3e\x32\xc6\x10\x44\xa3\x2a\x7e\x0c\xb9\x4d\xf7\xd9\x82\xb6\xdb\x99\x88\xff\x5b\x68\x3d\x4e\xec\x77\x95\xe3\x33\xfb\x5c\x17\xb9\x76\xec\xc7\x67\x5c\xe5\xfb\x59\x01\x8d\x39\x53\x9d\x91\x74\x91\x73\x2b\xfd\x91\x5e\x76\xe3\xa8\x4a\x00\x3e\x20\xcc\x80\x02\x22\x1c\x61\x32\x46\xe2\xf4\xf3\xb7\x22\x28\xc8\x93\xa4\xb2\x20\xd3\x32\xb4\x50\x1b\xee\xba\xc4\x95\x48\xe3\xe4\x4a\xbc\x8c\xae\x65\x8b\x67\xd7\x39\xdf\x27\x1d\xdb\x07\x08\xdb\x3d\x98\xcc\x47\xc4\x64\x3e\x48\x8c\xbb\xb5\xd1\xe3\xc1\xcf\x77\x5b\x41\x6e\xc9\x10\xfd\x96\x51\x8c\xe6\xd5\xe8\xcb\x16\xcf\x2e\x23\x72\x3a\xc3\xd9\x38\x0e\x0d\x75\xf1\xaf\x86\xdb\xa4\x9a\xc5\x29\xd7\xf3\x2c\x52\xb6\xdd\x93\x19\xf0\xea\x36\x12\x49\xf5\x07\x11\x95\xe1\xbc\xcc\x80\x56\x69\x91\xc0\x58\xe4\x17\x5f\xb8\x7e\x8e\x4b\x65\x8b\xff\x1b\x32\x28\x7f\x58\x9c\x07\xe6\x2e\x66\xaf\x9e\xad\x25\x20\xe0\x5a\x11\x0c\x80\xa7\x96\x20\x1d\x36\x4c\x50\xcf\x84\x30\xf3\xdf\xd7\xc5\xf1\x77\xb9\x9e\x67\x8a\xb3\x9f\x0b\xc0\x08\x58\x2f\x10\x22\x35\x8b\xb6\xb3\x1d\x90\x70\x5e\x46\x42\xa9\xb1\x5a\x94\x5a\xbc\x0b\x97\xba\x7e\xfe\xf9\xe7\xb2\xed\xff\x29\x1b\x94\x9d\x16\xf7\xf8\x5f\x74\x84\xfd\x5e\xda\xe3\x70\xc7\x22\x19\xba\x51\xc1\xbc\x52\x86\xdb\x83\xa3\x14\x1d\x31\xa3\x0a\x87\xd7\x61\x71\x3b\x16\xad\x73\x22\x1d\x61\xaa\xd9\xaf\x69\x0d\x91\x38\xcf\xc9\xb9\x23\x3c\x52\x8a\x8e\x7e\xb0\xfe\x22\x88\x4a\x16\x39\x7b\x05\x9b\x18\x18\x90\xf6\xee\x19\xfe\x0a\x93\x0b\xef\x9e\x5f\x3f\xc9\xf5\xd6\x4f\x50\xcb\x2c\x4c\x3e\xf4\xee\x95\xfc\x15\xf4\x95\xf0\xfd\x9d\x73\xa7\x79\x1c\xaf\x01\x33\xe4\x41\x91\x23\x3f\x8d\x91\x20\x4b\x44\x10\x44\xa3\x4a\x48\x0c\xc7\x01\x41\x26\xa0\xac\x1f\x88\xa4\xe4\x7c\x69\xa5\x1c\x3d\xc1\x58\x31\x54\x25\x27\xd9\xad\x49\x79\xc9\x79\xba\x10\x7d\xac\x51\xa1\x08\x33\x69\x0c\x06\xe3\xb9\x44\x97\xc5\x62\xf5\x14\xf3\x8d\x9e\xe8\x5a\x19\x12\xaa\x56\xeb\x45\x0c\x6b\xf5\xda\x38\x76\x87\x9f\x3f\x45\x35\xf4\x8e\xe7\x54\x5d\xdc\x6b\x6f\xd8\xf7\xf0\xc0\x57\x68\xae\x1d\x75\x64\x0e\xd7\xa7\xd2\x14\x2b\x5c\x73\x5d\x4b\xcb\x75\xab\xf3\x31\x38\x00\x9d\xff\xca\x5b\xdb\x53\xa1\x7a\xb7\xf6\xe0\x78\x61\x6c\x51\xa7\xa6\x3e\xde\xe0\x48\x0a\x4f\xa8\x9b\x28\xe9\xba\xa8\xde\xb0\x29\xa7\x2b\x2f\x3a\x32\xbd\xde\x82\xc5\xeb\x9a\x93\x13\xda\x76\xb6\x39\xff\x69\x1b\x4b\xf5\x6f\xc1\xe8\x8c\xda\xa4\x6f\x16\xd9\x3b\x8b\x53\x6a\xec\x4b\xc4\x75\x3f\x27\xda\x20\x19\x48\x75\xfc\x57\x1c\x3e\x9a\xe8\x05\x0a\x2e\x70\x6f\x6a\x31\x1c\x88\x72\x45\x64\x2e\x59\xec\xd2\x4a\x29\xfa\x14\x41\x4d\x31\x78\x6b\xcf\x51\x17\x0e\x41\xcc\xa9\x84\x73\x1b\xe3\x29\x3d\xff\xc4\x4c\x4b\xfe\x97\x99\xc4\x11\x8c\xd6\xfc\xf0\x08\x29\xb9\xe1\x13\x17\xa7\x55\x06\xeb\xa4\xc0\x47\xf2\x18\x06\xa3\x5c\x04\x9d\x9e\x24\xbf\xd6\x9b\xa9\x52\x7a\xab\x5b\xc9\x96\xe1\x63\x63\x43\x77\x64\x08\xe3\x53\xf6\x5b\x87\x57\xdf\x32\x64\x99\x8e\xa9\xda\xd6\x65\x5b\x56\x9d\x19\x1c\x92\x53\xdb\x65\xe9\xd8\x52\xad\xa5\xa0\xe1\xe7\x0e\x75\x35\xd7\x1d\x90\x81\xf3\x78\xfd\xd2\x8e\x43\xcf\xad\xaa\x3f\xb6\xad\x36\x3a\xbd\xd6\xec\x92\x27\x94\x5b\x22\x6a\xb6\x1d\xab\x17\xb1\xe0\xdc\x69\xae\xe1\x35\x60\x82\x2c\x47\x3a\x70\x01\x05\x2e\x89\x8e\x80\x30\xe6\xf5\x7c\xa5\x52\xba\xd4\x9b\xd5\x47\x88\x89\x8e\x08\x57\xab\xfc\x7d\x65\x02\x98\xd0\x24\x57\x84\x98\xf4\xa2\x7d\xb7\x78\xc4\xe7\x3b\xee\x50\x94\x15\x9a\xca\x1e\x6d\xb2\xf2\xb5\xbc\x6c\xdd\xb5\x8d\x93\x33\xeb\xb3\xb2\xd6\xcf\x6c\x58\x7a\x68\xa2\x80\xaf\x65\xa9\x0d\xab\xf3\x97\xed\x6a\x32\x1a\x9b\x76\xd5\x6b\x0b\xba\xb2\xaa\x2f\x5a\x66\x5d\x7a\xed\xaf\x87\xe3\x87\x7f\x7d\xed\xd2\x8c\x15\xfb\x9b\x72\x86\xaa\xe2\xab\x36\xdf\x58\x1f\xdf\x70\x74\x53\x95\x3b\xaf\x21\xfa\x22\x7e\x81\x1c\x9c\x4b\x31\x87\x8b\xca\x73\x76\xa7\x4b\x2b\xe1\xbb\x1c\x84\xa8\x0b\x87\x10\xe5\x9c\x3d\xcc\x73\x14\x84\x9f\x98\x69\xc9\xff\x32\x93\x94\x26\xc5\x35\x3f\x3c\xe2\x42\x39\x70\x93\x4b\x42\xd5\x4a\x8b\xf2\x2c\x1b\xc1\x4b\x1e\xb1\x2b\x3d\xbb\x7a\xa3\x6d\xe4\xe6\xd1\x15\xc7\xed\x93\xe3\x42\xc6\xcf\x07\x47\x6e\x1e\xb1\x4d\x6b\x6b\xb6\x76\x58\x3a\xaa\x73\x54\x21\x59\x55\x9d\x69\x9d\x5b\x6b\xb5\x64\x5c\xf5\xdc\xa1\x8e\xb6\x5a\x6a\xff\x16\xf6\xd7\x34\x76\x1d\x7a\x6e\xb8\xfe\xd8\xb6\x9a\xc5\x29\xc5\x26\xf2\x4f\xac\xb0\x45\xd6\x8a\x62\xe0\xa9\xef\xd8\x79\x0d\x44\x43\x02\x38\x1c\x39\x11\xe1\xee\x6a\xac\xbb\x7a\xd1\x2b\x47\x0f\x1c\x2e\x75\x63\x50\x99\x5b\x11\x62\x34\x08\x46\x83\x26\x21\x26\x21\x4c\x1d\xa4\xf4\xf7\x85\x68\x8c\x56\x28\x42\x4c\x82\x54\xd8\xf1\xb2\x5f\x34\xaa\x48\x66\x09\xb5\xd9\xd5\x01\x4c\xaa\xf3\x68\xac\x66\x46\x57\x4c\x3c\xba\xab\x1c\xb1\xf2\xa2\x99\x81\x55\x3f\x9f\xc8\xc2\xd9\xb7\x30\x7d\xf0\xca\xb6\xe5\xb7\x64\x54\x45\x36\x0c\x4c\x2d\x2d\xdf\xd8\x99\xed\x47\x27\x29\xb1\x71\x2a\xa4\xe9\xca\xa7\x46\x4d\xeb\x9e\xbf\xba\xb9\x66\xcf\xfd\x2b\xca\xd5\xcd\x47\x36\x94\x62\x55\x59\x46\x7c\x69\x6a\x04\x9b\xb5\xf7\xed\xaa\x5d\x50\xb8\xad\x2f\xdb\xed\x27\x1f\x00\xe0\xbd\xb2\x28\x08\x87\x14\x87\x39\x10\x05\xae\x44\x26\x1a\x45\x0e\x02\xe3\x42\xbf\x1b\xf9\xc8\x90\xb1\x3c\x8f\xe3\x54\xe9\xf5\xa2\x6b\x90\x8a\x6b\x9a\x60\x09\xfd\x48\x77\x2e\x11\x1b\x24\xc5\x53\x69\x38\x77\xd5\xd3\x66\x74\xbd\x83\xb1\x58\xb8\xf6\x50\x6b\xc6\xaa\xf4\x85\xf1\x7d\xb6\xfc\x89\x96\x54\xc4\xbb\xd9\xdb\xb3\xb1\xec\xed\xbe\x96\xd5\xd7\x77\xc7\x05\x2c\x18\xf4\x0b\x88\x28\x5c\xd3\xd2\x02\x04\x37\xb9\xea\xb9\x8c\xd7\x80\x01\xb2\xe1\x69\x47\x40\x6a\x4a\xa4\x82\x0b\xb2\x50\x15\xb9\xc9\x5a\xbe\x12\x13\x46\x26\x73\xdb\x15\xc9\xc4\xb8\xab\xa8\xe2\x1e\x4b\xda\x56\x7e\x56\x5a\x75\x80\x98\x57\x29\x0d\x86\x1f\x1b\x1b\xf2\x3f\xcd\xf9\xbf\x4d\x27\x0a\xa5\x6f\x5c\x9c\xd1\xa0\x0f\x96\x52\x1b\x5e\xa9\xb4\x9f\x8d\xc0\xed\xa1\x92\x44\x5a\x7f\x48\x44\x6f\x4a\x1b\xb9\x79\x6c\xe8\x56\xbb\x30\x8e\xd9\x13\xc7\x96\x27\x0f\x2d\xef\x88\x29\xdc\x71\xb2\x7a\xaa\xde\x84\x19\xb7\x0e\xac\xba\x79\xa5\x75\x4a\x92\xd9\xce\xea\x9c\x90\x90\xcc\xaa\x4e\xeb\x39\x99\x6d\xaf\xbf\xf6\xcc\x3b\xfd\x3f\x9f\x2c\x08\x35\x17\x27\x97\xdd\x90\xda\xb1\xad\x6a\x53\x55\xbd\x57\x80\xc3\x53\x4b\x13\x88\x25\x56\xd9\xa3\x6a\xdd\x76\xec\x29\x00\xbe\x58\x26\x22\xd0\xf2\x07\x55\x22\xd0\x10\x4d\x81\xa8\x9d\xa1\xc0\x79\xee\x59\x98\x5a\xea\x0d\xa4\xc3\xc5\x37\x80\xaf\xf9\xce\x1b\xed\x0f\x29\x55\x7a\x55\x8c\x84\x07\x6d\x36\xa9\xe0\xa3\xd4\x2a\xcf\x1a\x61\x31\x1c\xce\xc8\x78\x62\x63\xfb\xde\xae\x94\xa9\x98\xe2\xa1\x92\x8c\xa1\xb6\xe2\xd0\xa9\x29\x36\x3c\xb4\x19\xed\xc3\x87\xfa\x9c\xd5\x74\x5f\xd9\x9a\xda\x78\x9d\xa3\x35\xcd\xe9\x23\x13\x75\xeb\x03\x00\x5e\x28\x3c\x0e\x3e\xa0\x12\xe3\x1f\x2f\xa3\xec\x5c\x9d\x3f\x4f\xfa\x70\x6f\x22\x4c\xa7\x55\x7a\x25\x32\xf8\x6c\xf6\x04\xe7\x15\x26\x3e\xc0\x7f\xe3\xf8\xec\x61\xdc\xea\xba\x08\x3b\xe2\x53\x92\x4d\xa6\xe4\x94\x78\x9e\x39\x9b\xbc\x72\x25\x1b\xc0\xab\xf4\x36\x9b\x5e\x6b\xb5\xba\xed\xe4\xaf\x5d\x95\xac\x40\x78\x1c\xd4\xa0\x05\xab\x23\xd5\x0f\x89\xf9\x22\x12\x55\x78\x8f\xdc\x1d\x55\xba\xef\xc2\x1b\x69\x96\x63\x95\x4e\xab\x2a\xd6\x7b\xb3\x71\x1e\xb7\x64\xf7\x78\xa0\xf3\xef\x06\x13\xd1\x65\x1f\xbe\xbe\x37\xa3\xdb\xae\x08\xb2\xda\x53\x17\x66\xaf\xaa\x4f\x76\x6d\xc4\xee\xb8\x94\xe4\x84\x84\xe4\x94\x38\x9e\x79\xe6\xd9\xc1\x5b\x26\xb2\xe5\xbe\xfd\x4c\x60\x18\x53\xbb\xad\x8b\xfd\x0e\xaf\xd6\x5b\xad\xd2\x6d\xa2\x14\x83\x37\xc9\x00\xfc\x21\xef\x21\x29\x1d\x73\xf6\xf0\x94\x6e\xd3\x4a\x94\xe7\xcd\xcc\x84\x8b\xaf\x11\xae\x99\xff\x5a\xfb\x83\xdf\x9f\xaf\xf9\xea\xd0\xf4\xf4\x0e\x7c\xe8\x90\x6b\x09\xa9\x0e\x93\x76\xaf\x6b\x50\x06\xb3\xba\x6d\x78\x9d\x2b\xdd\x79\x39\xa0\xfb\x5c\x64\x00\x3e\x90\x77\x4e\x56\xa4\xad\xc8\x3d\xef\x40\xc2\x1d\x21\x00\xc0\x11\x78\xef\xfc\x97\xdb\x1f\x3a\x9b\x5b\x3c\x77\x4e\x1f\xe0\x7f\x70\x6c\xf6\x30\x6e\x77\x6d\x97\xc1\xb7\x2b\x57\xae\x14\x4c\x92\x5d\x6a\x07\xe0\xeb\x25\xbc\x76\xc4\xe1\x63\x8a\xf4\x41\x4e\x0c\x3d\x8c\xcd\x50\x77\x76\x56\x21\x47\x26\x0a\xa2\x8c\xd3\x7c\x47\xb5\x58\x81\x72\x79\x5e\xa5\x7b\x8c\x5b\xab\xe7\x8d\x08\xff\x91\xeb\x7f\xec\x52\x51\xb9\x03\x01\xc0\x0c\x66\x95\x5e\xa5\x57\x19\xb4\x3e\xa2\xbc\xa9\xdd\x22\xef\x79\x50\x31\x2d\x4b\x33\x93\x3c\x80\xc9\xe7\x3f\x53\x3e\xc3\x34\x6b\xdb\xcc\xa5\x69\x3a\xbf\x98\xc9\xf6\x92\x65\x99\x61\x38\x8e\x01\xda\xbc\x94\xd4\xe2\xc4\x30\x99\xf4\x3c\x37\x39\xb9\x30\x31\x5c\x81\x13\x3c\x73\x3a\xaf\x1a\x55\x06\x6b\x54\x4e\x3d\x26\x37\xac\xca\x9e\x7d\x9f\xe9\xb4\x25\xe9\x31\x88\x91\xc9\x59\x91\xb3\x4f\xb3\xa4\x98\x82\xb4\x68\xc4\x88\xa4\x1c\xcd\xec\x29\x9e\xe9\xd1\x65\x35\xaf\x01\x15\xec\x7d\x30\x08\x3d\xba\x2c\x6e\x54\xb0\xa4\xad\x52\x46\xec\x9c\x22\xbb\x77\x49\x2d\x20\xe7\x79\xdf\xa3\xe7\xee\x2d\xfa\xde\x2b\x7f\xf0\x22\x71\x73\x16\x80\x08\x2e\x54\x2a\x6d\xb0\x56\x26\x4a\x96\xb4\x25\xa1\x6a\xa5\x56\x69\x30\xc8\x3d\xa6\x00\x93\x7c\x32\x9e\x98\xbe\xf7\x31\x9c\xc2\xdd\xfb\x33\x87\x5b\x0b\x55\x53\x3c\xf3\xa5\x81\x69\x7c\xf3\x94\xb3\x92\xee\xbb\xe6\x26\x34\x14\x2c\xb5\x3a\x95\x3c\x53\xd2\xc5\x8b\xe7\x4e\xf3\x72\x69\x5d\x26\x29\x57\xe6\xc9\xe6\x94\x9e\xd5\xbb\x62\xac\x8a\x8b\x73\x53\x9d\x82\x7f\x92\x3b\x7a\x31\x16\x6c\xba\x6f\x62\xcd\x7d\x9b\x0b\x10\xf3\x37\xdf\xbb\x46\x7a\x36\x95\xdc\xb9\xa7\xbd\x6d\x4f\x47\x72\x72\xe7\x25\x6d\xe2\x23\x25\x8e\x3d\x7b\x4d\x5b\xdb\x35\xcf\x8e\x69\xc6\x9e\xbd\xa6\xb5\xf5\x9a\x67\xc7\x5a\x8e\x6d\xaa\xa8\xd8\x74\xac\x45\xd3\x7c\x6c\x53\x65\xe5\xa6\x63\xcd\xe2\xbd\x9d\x72\xf5\xf0\x04\xe9\xde\xe2\xe0\xf6\xef\xc1\xd5\x5e\xd8\x93\x77\x0e\xbf\x8a\x0e\x34\x1f\xe7\xe3\xea\xbc\x0b\x01\xf3\xf9\xc3\x42\x7e\x6a\xa6\x9f\x9c\x44\xc2\x49\xc6\xef\xe0\x65\x51\xe9\xd5\xdf\xc1\xcb\xa1\xa1\x6e\xbc\x9c\x20\xe2\xe5\x81\xdb\x33\xa6\x44\xa0\x34\x24\xe2\xe5\x29\x5d\xdd\xb6\xce\xb4\x8e\xca\xac\x90\xf8\x1b\x06\x3a\xb6\xd5\xea\xdc\x68\xb9\xa6\xc2\xf9\xbe\xf0\xee\xd5\x75\x6d\x5e\xb4\xbc\xc4\x5a\x9e\xe0\xfc\xb2\xa9\xaf\x6e\xdb\xcd\xf5\x40\x70\xd4\xd5\xc3\x85\x73\x7b\x14\x15\x79\x01\xe6\xf4\x86\x08\xa5\xe7\xb0\x9d\x78\xb4\xf9\xe7\x61\xce\xbc\xf3\xc1\xe4\x85\xc3\x42\x7e\x6a\xa6\x9f\x9c\xe4\x82\x3d\x9a\xe7\xb5\xb5\xca\xf3\x1c\xb5\xed\xac\x9f\x3e\x9a\x36\x72\x7c\xf5\xc0\xf1\x74\xd9\xf8\x54\xe6\xcf\xfa\xc6\x6e\x59\x69\x9d\xd6\xd5\x6e\xed\xe8\x3f\x92\xa0\xca\xae\x5c\x9a\xda\x29\xee\x90\xe4\x94\x9b\x6b\xae\xf8\xd6\x40\x31\xe5\xd5\x92\x1f\xbe\x79\x5b\x5d\x5f\x03\xc5\xc4\x97\x5a\x96\x48\x3b\x24\xc6\xb1\x2b\x00\x78\x2a\xaf\x81\x20\xf8\x8d\x7b\x5b\xfc\x19\x22\x04\xfa\x72\x31\x2a\xad\xf0\xec\x83\xf8\x1a\x9b\xf7\x5a\xc8\x77\xc6\x9d\x3f\xa4\xbd\xdd\x53\xf1\x0e\x12\xe3\xe8\x0e\xe6\x56\x63\x98\x6f\x25\x43\xc1\x03\xe9\xa0\x83\xe3\x79\xef\x86\xfc\xc0\x75\x3f\x74\x89\x44\x17\x46\x08\x58\xe0\xef\xa7\x90\x41\x10\x06\x09\x8a\x10\x13\x7a\xf1\xa0\x4c\x1e\x2c\x0a\x9b\xca\x66\x63\xfb\x13\x97\x46\x2e\x8c\x6f\x4a\xb8\xfe\x0d\x13\x6e\x5e\xab\x28\x78\x97\xd7\xf8\xf9\xae\xf5\xf1\xbd\xf2\x1a\x67\x15\xcf\x7c\x2c\x74\x64\x13\x20\x3c\x3e\x77\x9a\x9b\x78\x0d\xe4\x80\xc5\x91\xfc\x03\x39\xc6\xd2\xf9\x39\xc6\xcc\xf4\x34\x4b\x52\xa2\x2e\xc4\x2c\x53\xa8\xe7\x73\xec\xcf\x8b\xa8\x64\x67\x19\xf6\xe7\x25\x18\xef\x4f\x6d\x5d\xe3\xa8\x39\xb8\xa6\xa8\x64\xcd\xc1\xea\xb6\x43\x6b\x8b\xd8\x14\xa5\xb5\x8c\x66\xda\x56\xd4\xa7\x60\x4a\xd3\x84\xa3\xe1\x9a\x35\x05\xe5\x93\x87\xea\x3b\x6e\xde\x54\xc1\xa6\x64\xf9\xdd\xe3\x36\xfb\x68\xab\x1d\x83\x53\x2b\xac\xba\x05\x81\x89\x25\x03\x15\x25\x63\x55\x46\x53\xe3\x54\x75\x5a\x63\x7a\xa4\x3a\xa9\x34\xd9\x52\x9c\x14\xb5\x40\x99\x52\xbe\xb2\xa2\x6a\xa2\x52\x9f\xd0\x38\x55\xe5\x68\xb1\xa8\xd4\x49\xe5\x6e\xbc\x7d\xc7\xdc\x69\x1e\x20\xd4\x42\x38\x64\x38\x6c\x0b\x90\x30\x00\x19\x51\x85\x1c\x65\x20\x5b\xc3\xa5\xfa\x90\x80\x1e\x6c\xe1\x5d\x22\x00\x84\x43\xb8\x52\x42\xde\x0a\x51\x8d\xa5\xb2\x9c\xb8\x06\x9b\x5d\xed\x16\x51\xa3\x44\x90\xa5\x3a\x3c\xe0\x5a\x8d\xfa\xbc\xe6\xd4\xd4\x61\x7d\x90\x69\xb3\xa3\x6c\xe3\xd2\x34\x74\xbd\x8e\x89\x42\xad\xeb\xeb\x3e\x67\x6b\x5e\xa3\x25\x34\x40\xde\xa1\x54\x6a\xab\x37\xb5\xd3\xed\x7d\xa8\x02\x84\x67\xe7\x4e\xf3\x05\x3c\x13\x54\xb0\xed\x41\xa5\x68\x5b\xbd\x2a\x1a\x24\xda\x77\x8f\xbd\xe7\xe7\x65\x05\x42\x3d\xef\x70\x9e\x33\x3f\xa5\xe9\x15\x9f\xef\xb9\xee\x87\x2e\x69\x6f\x6f\x7f\x48\x19\xac\x75\x23\x48\xbd\x47\xe1\x94\x16\xc9\x1a\xd9\xec\xcc\xa2\xd4\xb2\xeb\x6c\xf7\x4c\x2f\xdd\xdb\x95\x32\x49\xdb\x77\xef\xb9\x5d\x83\xd3\xe3\x77\xb4\x2f\xcf\x1c\xbf\x65\x88\x0e\x3b\x97\x1f\xbf\x7d\xf3\x4a\x86\x67\x9e\xf5\xe4\x14\x3b\x79\x26\x28\xbc\x79\xcf\xbc\xb3\x79\xcf\x60\x29\xef\xa9\xb6\x7b\x32\x9f\x3d\x82\x0c\xd7\x6d\x71\x65\xf4\xb9\xd2\xb7\xdc\xa2\x52\xb1\xeb\xcf\x3c\x2b\xf9\x1c\x84\x5c\x00\x7e\x03\xcf\x84\x20\xd0\x38\x22\x17\xcc\xcf\x7f\xe6\x9d\xcd\x7f\x86\x7c\x5f\xfe\xd3\x28\x97\x32\xa0\x45\xd1\xb1\x0f\x35\x3d\x14\xab\xbd\x7a\xf5\x5f\x7b\x7f\x15\x1d\xfd\x78\xef\x5f\x57\x63\xf7\x93\x4f\xd2\x7b\x4e\xfd\x33\xcf\xd0\x7b\x67\x9e\xa5\x4f\x4f\x9e\x74\x46\x48\x7e\xfb\x22\x31\xf6\xe2\x99\xdf\xcd\x81\xe6\xfd\x68\x0e\x74\x1c\xeb\x0e\xb8\x96\xe3\x89\xcb\x5d\x37\xb9\x6e\xba\x02\x4f\xb8\x96\x5f\x41\xdb\xf1\x51\xe7\x37\xce\x77\xf0\xb7\x2e\x0b\x19\x29\xd8\x2d\x6b\x55\xae\x4a\xbe\x85\x67\xc2\x22\x30\x3a\x74\xa1\x0b\xc4\xb5\xf8\x4b\x58\x96\xe1\x05\xe8\x35\x54\xaf\x97\xf0\xa0\x5e\x8d\x16\xa9\x18\x2f\xd1\xc8\xa5\xd8\xc4\x8e\x16\x6a\x0b\xc5\x3d\x97\x38\x5f\x0d\xcd\x6e\x18\x29\x5e\x94\x19\x12\xa0\xb4\x28\xcd\x55\x59\x89\x0b\x2b\x5c\x8b\xf7\xbc\x9f\xc5\x0e\x9d\x09\x4b\x59\x56\x69\xf6\x11\x96\x93\xa0\xcb\x28\x8d\x39\x26\x65\xf3\x10\xae\x06\xe0\x15\x3c\xf3\x87\xf2\xa6\x79\x3f\x94\x37\xb5\xa3\xc6\xaa\x91\x63\x0a\x0b\x9b\xad\x40\xfa\xc8\x69\x63\x23\x38\x30\xd0\xc6\x36\xad\x68\x97\x6c\x66\x85\x6b\x15\xfb\xa3\x2c\x07\xe2\xc1\xe0\xd0\x6a\xa4\xbc\xa3\x1a\xb1\x2c\x1e\xa1\x54\xca\x1e\xb6\x4a\x36\x4a\xbc\x83\x5a\xd5\x22\x29\x1d\x68\x66\x46\xab\xc1\x60\xb4\x6a\xad\x56\xbb\xcd\x66\xb7\xe6\x32\x31\xba\x96\xab\x64\x32\x79\x68\xa8\x5a\x15\xc9\xd4\xec\xe5\x8e\x4b\x3a\xcc\x88\xfb\xf6\x22\x5e\xb2\x1f\x31\xa1\x7d\x6f\x57\x70\xc5\xf2\x9c\x70\xa4\xf5\x6b\xd7\xae\x27\x8c\x2e\xe8\x2f\x74\xad\x5a\xd8\xbc\xe9\x48\xd3\x2b\xfb\x76\xb3\xf0\xf0\xd0\x08\xb6\xeb\xb2\xd7\x9a\x8e\x6c\x69\x59\x58\x1b\x50\xba\x62\x7b\xc9\x6b\x9b\x6f\xd7\xe9\xee\xd8\xf4\x4a\xe9\xd6\x81\x92\x00\x00\xa4\x34\xd7\xfd\x74\xe8\x07\x39\xde\xa8\x55\x5a\xe8\xd0\xc0\x80\xeb\x7e\xd9\x2c\x9c\xb7\x2e\x13\xc4\x3a\xf4\x3e\x28\x4a\x43\x30\x42\x99\x09\xb1\x54\x4a\xf3\xb6\x7a\x78\xe6\x80\xb5\xda\x98\x88\x70\x12\xed\x6c\x2e\xb3\x5b\x6d\x36\xbb\xb8\x38\x33\x13\x23\x0e\x95\x4a\x5c\x91\x45\xae\xd6\x8a\xab\x73\x17\x82\x2a\x0a\xfb\x0b\xa2\x11\x37\xac\x5d\xbb\x01\x31\x3c\x67\x79\x79\x50\xd7\xde\xa5\x09\xb8\xff\x12\x44\x69\xb5\xe6\x8e\xbd\x1d\xae\xc7\x02\x4a\x06\xb6\x95\xbc\xb2\xe9\x0e\x9d\xee\xf6\xcd\xaf\x95\x6c\x5f\x51\x1a\x50\xbb\xb0\x65\xcb\x91\xa6\xd7\x2e\xdb\xc5\x22\xc2\x16\x85\xb3\x3d\x97\xbd\xd2\x74\x64\x53\xf3\x42\x71\x29\x59\x78\x1b\xbf\x92\x05\x43\x1c\x98\x1d\xa6\x38\x31\x80\x54\x85\x10\x30\x77\x67\x10\x23\xec\x07\x06\xc0\x5a\x3d\x98\x8d\x41\x6d\x6c\x5c\xac\xce\x53\x80\x93\x0c\xd6\x05\xe9\x52\x4f\xcd\x83\x5f\x89\xc6\xf2\xe1\x42\x73\x7d\x65\xa9\x2e\xdc\x96\x91\xad\x31\x97\x24\x85\x61\x37\x1a\xcb\x86\x8a\xcc\x0d\x55\xa5\xba\x08\x6b\x7a\x96\xc6\x5c\x92\x1c\x86\xf4\x55\xde\xfa\xa5\x56\x95\xd1\x1a\xad\x8e\x8b\x52\xea\x72\xea\x12\x14\x8e\x75\x6d\x69\xa1\x46\x6b\xe4\xa2\xf8\xc8\x20\x43\x6e\x43\x02\x10\x2d\x74\x5d\x45\xbf\xe4\xb5\xc0\x60\x21\x44\x38\xc2\x24\xb9\xc4\x2e\xaf\x71\x2d\x95\xa2\x47\x6f\x9d\x5c\x1b\x2c\x05\x68\x56\x29\x58\x23\xf3\xd4\xd4\xfe\x24\xa3\x31\x29\xc9\x68\x48\xa6\xcb\x67\x05\x61\x38\x26\x39\x49\xab\x4d\x4e\x76\xf3\x00\xe7\xfc\xb8\x41\x30\x40\x0a\x54\x3a\xca\x22\xc2\x48\x60\x01\x7e\x44\xa2\x74\x5f\x90\x13\x64\x20\x70\x26\xf4\xcb\x50\xb4\x79\xad\x52\x62\xb0\x1d\x08\xa8\x1a\x21\xd6\x10\xa3\x09\x5f\xbc\xc0\x5f\x26\x40\x0a\xa6\xcc\xcf\x0b\xba\xfb\xc0\xac\xdf\xed\x15\x73\xe7\x06\xb7\x78\x72\x83\xd9\x7d\x17\x95\x4f\xaf\x38\x3c\x68\xb1\x0c\x1e\x5e\x31\x5d\x73\x71\x4f\x06\xfb\x6e\x76\xb0\x64\xaa\x33\xcb\xe7\xb3\xcf\xfc\x7a\x0f\x3e\xd4\x1f\xdf\xfb\xf0\xc1\x5e\xff\xf7\xdf\xf7\x71\x2c\xdf\x59\x75\x41\x96\x10\x61\xb7\x54\x37\x3a\x05\x26\xc8\x75\x64\x81\x4c\xce\xe5\x32\x3e\xae\x40\xee\xeb\x43\x0c\x38\xeb\x05\xb9\xdc\x13\x88\xbb\x3b\x12\xc1\x5b\x62\x37\x81\x49\xa5\x0b\xd1\x2b\x43\x95\xca\x10\x3f\xc5\x12\x13\x06\x87\xca\xe4\x62\x80\x67\xc9\x65\x46\xa6\xb5\x5a\xd8\x85\x0e\x39\x58\xa3\xc2\x47\x7c\x30\xc2\x40\xa7\x67\x97\xf4\x46\x19\x43\x64\xe8\xf3\xcb\x87\x7d\xd2\x87\xaf\x5d\xd6\x71\x60\xb9\x0d\xa7\x30\xbe\x7c\x30\xb7\x60\x45\xa9\xce\x07\xdb\x68\x8f\xeb\xcb\xb2\xfd\xd6\x81\x01\xff\x9c\x9a\x06\x0d\x2e\x1a\x40\x6d\xd7\x4d\x1b\x0a\x33\x56\x5c\xde\x5c\x38\x52\x6e\x48\xeb\xd8\x58\xe2\xfa\x60\xc0\xc3\xdf\x9a\xfb\x8c\x5f\xc5\xaf\x03\x2d\xd8\xa1\xcf\x11\xbd\x38\x90\x18\x6a\xc2\x17\x05\x2d\xf4\x91\xc9\x89\xc5\x28\x08\x88\x55\x84\x29\x09\xcb\xb4\x72\x82\x52\x77\xd7\xa3\xca\xcb\x9b\x28\x3d\xcf\x99\x39\x82\x01\x81\x11\xb2\xfe\xf9\xfe\xca\xe1\x9b\x96\x1a\x1f\x1b\x1a\x12\xc3\x15\x2a\xb7\xc3\x32\x18\xe5\x46\xbb\x41\x94\x1b\xbb\xd1\x2e\xe1\xea\x50\xb5\x5d\x2d\x31\xf6\x65\x72\xb5\x1c\xbd\xa1\x88\x07\x69\xb3\xc7\xf2\x6e\xe9\xed\xbd\x25\x6f\x5b\xd3\x1e\x8b\x35\xd3\x76\x45\xd3\x65\xb9\x47\xba\xba\x6e\xc8\xdd\xdf\x7c\xd0\x9a\x9e\x96\x72\x69\xf3\xec\xc3\xb6\x81\x2b\xdb\xdb\xaf\x18\xb0\xd9\x06\xae\x10\x1f\xed\xeb\xf2\xca\xcb\x72\xf7\xb5\x5c\x5d\xfd\x60\x4f\xff\x63\x35\x37\xb5\x1e\xca\x28\x28\xcc\xbc\xa1\xed\x96\x9a\x47\xfb\x96\x3d\x50\x75\x7d\x2b\xd5\x34\xdf\xb1\xbb\xa9\x69\xf7\x1d\xcd\x4d\xb7\xef\x6e\x6c\xdc\x7d\x9b\x24\xa3\x56\x00\x7e\xbd\xc4\x35\xb3\x38\x92\x7d\x10\x15\x48\x0c\xa9\x4f\x8e\x4c\x86\x5c\x60\xbc\xd7\x17\x3d\xcc\xf9\x1c\xa1\x2a\x54\x15\x12\xec\x6d\xce\x54\x4a\x87\x88\x16\xd4\xa8\xa4\xff\xdc\xfd\x37\xe2\x7f\x68\xa1\x41\xbc\xed\x32\x57\x26\xae\x71\x75\xe2\xcf\x5c\x9d\x53\xae\x3e\x3c\xea\xea\xc3\x71\x57\xd6\xa5\xf4\x01\xbd\xee\x54\xb6\xbe\xdc\xe2\x7a\x14\x4b\x5a\x5e\x6e\xa5\xbf\x48\x67\x42\x51\xae\xbf\xd3\x75\x92\x1d\x94\x83\xce\xa1\x01\x10\xfd\x80\x5b\x09\xa5\xfa\x19\x55\x01\xc8\x65\x02\x07\x06\x4c\x29\x28\x54\x26\x54\x5a\x94\x62\x8c\x42\x51\x53\x53\x53\xae\xbf\x33\x36\xeb\x64\xcf\xd3\xbf\xc5\xf3\x1d\x76\x29\x79\xaf\x70\x0a\xea\x61\x44\x44\x50\x7d\xcd\x66\x81\xa3\x44\xa0\xf3\xaa\x1d\x09\x48\x63\x20\x91\x04\xba\xbd\x38\xb1\x48\xa8\x2a\x2a\xc8\xcd\xc9\xb0\x7b\x71\xe2\xf9\xcc\xf1\xb3\x99\x9a\x79\x2d\x9a\xdf\x83\x22\xdd\x7d\x9a\x7a\xa9\xf0\x23\x41\xca\xd0\x50\x75\x2e\xb3\xdb\xcc\xc4\x7b\x75\xb9\xcd\xa9\xf1\x25\xa9\xe1\x55\xdb\x7f\xb1\xac\xff\x81\x4b\x9b\x70\x8a\x1c\xc3\x7b\x2b\x8b\xb7\xf6\x64\xda\xfb\x2f\xa9\xeb\xf8\xc5\xee\x3a\x4d\x56\x43\x4a\x6c\x81\x79\x71\xd5\x8e\x3b\xbb\x47\xee\xda\x54\x48\x53\x64\xe9\xdc\x51\x5b\xb6\xad\x3b\xdd\xd6\xb7\xb7\xb1\xe3\x17\x3b\x6b\x9d\xff\xd2\x15\x47\x27\x37\xe5\xea\x30\x6f\xf4\x60\x53\x54\xce\x92\x94\xf6\xe2\x38\xc4\x82\xf1\xab\xf0\x6e\x7b\x5b\x51\xd2\x42\x75\x46\x59\x7b\xfa\xd2\xdd\x6d\x09\xa9\x2b\x6f\x99\xa0\x96\xcd\x0d\xc6\xe8\xbc\x65\x79\x8e\xb6\xfc\x24\xf5\xa2\x9c\xce\x9d\x3d\xb6\xb6\xe2\xd4\x85\xea\xf4\xb2\x36\x5b\xdb\xae\xa5\x89\x99\x63\xc7\x56\x94\x4d\xb7\xa6\x44\xe5\x75\xe7\x15\x76\x14\x24\xa9\xc3\xb2\xda\x77\xbc\xe4\x1b\xe2\x27\xd3\x58\xab\x52\x4a\x97\x15\x24\xab\x7d\x82\x7c\x65\xd1\x69\x15\xa9\x85\xcb\x0a\x53\x01\x08\x6d\x82\x8e\x1d\x10\x9e\x01\x3f\x50\x83\xda\x11\x22\xf5\x18\x77\x88\xea\x5e\x84\x55\x3a\x9d\x2e\x46\x32\x95\xf3\xb2\x59\xf3\x3b\x9d\xd0\x96\x60\x30\x24\x26\x1a\x0c\x09\xf8\xa0\xf7\x99\xb0\x4e\x93\x9c\xac\x89\x4e\x4a\x8a\xf2\x3c\x02\x83\xd6\xb9\xaf\xf9\x6e\x5e\x07\x26\xc8\x83\x66\xa8\x71\x54\x7a\x39\x83\xbe\x5e\xce\xa0\x57\xed\x38\x80\x8c\x43\x3f\xc8\xe5\x8a\x0e\x50\x28\x4a\x2b\x41\x26\xf3\xe9\x00\x1f\x9f\x62\x9f\x2a\x80\xba\x9a\x92\xa2\xec\xcc\xd4\x64\xd1\xfe\xc4\xe9\x42\xe2\x74\x7e\x22\x28\x0b\xf5\x74\x03\x78\x8f\x4f\x3e\xdf\x74\xaa\x45\x03\xab\xbf\x40\x21\xe5\xf3\x1a\x1b\xb5\x31\x66\xce\x9a\x31\x22\xab\x23\xa7\xb0\x3b\x77\xc9\x92\xdc\xee\xc2\x9c\x8e\xac\x25\x58\x4b\x81\xfa\xec\xc4\x94\xfc\xd8\xa0\xa0\xd8\xfc\x94\xc4\x6c\x5d\x20\x39\xaf\xcf\x9d\x3c\xb9\x7a\xf5\x89\xc9\xdc\xdc\xc9\x93\x63\xab\x4f\x4e\xe6\x96\x96\x5f\xfa\xdc\xd6\xad\xcf\xed\x2d\x2f\xdf\xfb\xdc\xd6\xa6\x03\x93\x9d\x79\x1a\x7c\x2a\xa9\x39\x5f\x6f\x6b\x19\x49\x2b\x4c\x1b\x6e\xb2\xea\x72\x9b\x92\xa2\xd2\xe3\xc3\xe2\x1c\xd5\xba\x22\x5d\x6d\xbe\x09\x17\x27\x64\x46\xf5\x76\xdc\xb3\xaf\xb5\x75\xdf\xbd\x4b\xdb\xef\xda\xdb\xdc\xbc\xf7\xae\xf6\xe1\xe7\x6f\xec\xe9\xb9\xf1\xf9\xe1\x91\x97\x8e\xf5\x26\xd6\x8e\x6c\xbd\x4c\x6a\x32\x36\xd3\x7d\xec\x98\x70\x0a\x62\x21\x03\x4e\x3e\x68\x66\x24\x93\x8b\x48\x3d\x5c\x62\x13\x7b\xaa\x98\x3e\x28\x53\x08\x04\x32\xe8\xf6\xd6\x31\x8b\x2a\x41\x2e\x77\x5b\x37\xb9\x08\xd0\xb5\x75\x6d\x0e\xfd\xbc\xa2\xa7\x5c\x86\xf2\xfe\xef\xb9\x8c\x24\xea\xb1\x67\x9c\x02\x05\x19\xc8\x04\x98\x7f\x01\x5c\x30\xbc\xbd\xdd\x11\x1a\x1f\x07\x90\x92\x14\x97\x11\x9f\x01\xb1\x10\xab\x0b\xd1\xc6\xea\x7d\xc5\x43\x31\x18\x8c\x32\x99\xfc\x5c\xb1\xd4\x60\x30\x9e\x5f\x2c\x55\x4b\xae\xef\x5c\xa9\x34\x59\xe1\x4f\xba\x8d\xf5\xd6\xae\x22\xa3\xb5\x63\xaa\xf0\x26\x6a\x68\x34\x96\x5a\x35\xb4\x8a\xa5\x34\x8e\xe6\x3a\x06\xca\x0c\x18\xee\xba\x29\xaa\x28\x27\xc9\xf7\x68\x7c\x5d\x9e\x71\x71\x42\x36\x3d\xb5\xd8\xbe\xc4\x5a\x82\x11\xf6\x7a\x6b\x6e\x9b\x3d\x3c\xa7\xbe\x17\x03\xb5\x36\x83\xcc\xde\x9a\x1d\x65\x28\x1b\x74\xb8\x9e\xed\x6a\xab\x0f\x89\x31\x87\x1f\x08\xd4\xda\x63\x35\xc9\x51\x01\xee\xef\x9b\xfa\x27\xec\x64\xaf\xb3\xfd\x64\xc4\x75\x73\x2d\x73\x1f\xa0\x1c\xd7\xc1\xad\x73\x1f\x40\xd0\x3d\x80\x0f\xcf\x7d\x30\x63\x31\xdd\x83\x9e\x27\x92\x5d\x7d\x16\x2f\x62\x7f\x63\x0a\x10\x20\xd2\x11\xee\xc6\x75\xdf\x29\x9e\x7b\x4a\xdf\xa2\xdd\x64\x7f\x9b\x74\x56\x31\x13\x5e\x84\x11\x2b\x01\x80\x43\xd3\xdc\xd7\xfc\x62\x5e\x21\xe5\x45\xec\xe0\x80\x2a\x47\x79\x1a\xca\x15\x58\x21\x43\x2e\x27\x39\xa7\x71\x10\xc0\x47\x21\xf8\xf4\x83\xc2\x17\xe5\x5c\x21\xef\xfd\xde\xdc\x57\x7c\xbc\x23\x37\x33\x3d\xde\x1e\x6f\x0f\xd5\xa8\x62\x63\xe3\x75\x7e\x67\xab\x0e\x91\xdc\x6b\xdb\xec\x17\x08\xbb\x20\x1a\xd6\xd0\x50\x11\x1c\x06\x6b\x99\xd1\x62\xb3\x59\x6d\x06\xa3\xb6\x49\x14\xdd\xa6\x03\x1b\xba\x72\x35\xa2\xf0\x6e\x7d\xee\xd2\xf2\x92\xdc\xa9\xf9\xe2\x3d\x95\x8b\x4d\x75\xbf\x1b\x9e\xc4\xd2\xfc\xeb\x9b\x76\x5f\x7d\x59\x5e\x11\x16\x57\x6e\xa3\xf0\x91\x17\x6e\xe8\x36\x55\x0f\x6f\xb9\xb4\x74\xe4\x85\x1b\xbb\xbb\x6f\x7c\x61\xa4\xe3\xee\x4b\x9b\x9a\x2f\xbd\x7b\x69\xc7\xdd\x7b\x9b\x9a\xf6\xde\x7d\x99\x6b\x8e\xc6\xa8\xbb\x2d\xb3\x26\xd8\xf5\x39\x62\x05\x65\x26\xda\x6d\x04\x88\x6a\xa1\x96\x3d\x70\x0e\x1f\xbb\x11\xc5\x39\xde\x82\xb8\x75\x0f\x38\xfb\xe8\xa8\x50\xdb\x2b\xc9\xff\x1a\xf6\x06\x6b\x17\x4e\x41\x30\x18\xe7\xe7\x03\x3d\xcd\xce\x40\x94\x87\x55\xb1\xb1\x1e\x98\x79\xbe\x4e\x7f\x67\x1b\x70\x8d\xb1\x70\x69\x6a\x4a\x5b\x81\xc1\x90\xdf\x96\x9a\xba\xb4\xd0\xb8\x74\x51\x7c\x86\x26\xda\x1e\xa7\x56\xc7\xda\x35\x9a\x8c\xf8\x45\xfc\x45\xcb\xd2\xe2\xd8\xd8\xe2\x8e\x54\x4b\x7b\xa1\xd1\x58\xb0\xd4\xa2\x49\x8f\x5f\xb4\x28\x3e\x5d\xa3\xc9\x34\x85\x85\x99\x24\x3e\xdc\x0d\x73\x73\x3c\x99\xff\x03\xfc\x60\x21\x98\x1c\xb1\xf3\x7b\x59\x81\xe4\x02\x89\xa0\x49\xd6\xee\x66\xfe\x7b\xbf\xfa\x40\xa1\x88\x38\xaf\xad\x55\x5c\x29\xdd\x81\x7b\x5c\xd3\xab\x45\x6f\xba\x1a\x07\x66\x1f\x67\x85\x2c\x67\xc0\x55\x8e\x0f\x0d\xe0\x83\x67\xfc\x07\xa5\xf8\xa0\x92\x8e\xb0\xc3\xc2\x2f\x21\x06\xae\x7d\xc0\xdd\x0a\xe9\x0e\xd3\x17\x9f\xed\x88\xe4\xa2\x78\x75\x79\x1b\x0d\xb3\xd1\xdb\xca\xf0\x43\x23\x8a\xd0\xdb\xbd\xf0\x63\x73\xfc\xd8\xe5\x62\xf8\xbe\x58\x17\x64\xf2\xd0\xcf\xce\xf5\x5c\xca\xce\x6b\x15\x91\x6b\xd8\x61\xe7\x33\xa8\x89\x48\xd5\x87\x2e\x32\x65\xc6\x34\x76\xb3\x95\x98\x50\xb9\x22\x37\xa3\xaf\x2c\x36\x2a\xad\x40\xf7\x26\x3e\x40\x47\x2a\x31\x3c\xdc\x6a\xb5\x85\x6b\xd2\x74\xc1\xad\x95\xf6\xce\x02\x7d\x64\x66\x93\x2d\xbe\xb2\xb4\x30\xe6\x59\x40\xac\xa7\x2b\xd8\x35\xc2\xa3\x90\x0d\x0e\x47\x4e\xe4\xf7\xf7\x5a\xca\x80\xcb\x78\xf7\xd9\xbb\x17\x6d\x9f\x5b\x71\xe4\x55\xb1\xba\x10\xb3\xbb\xcd\x32\xc2\x84\xe7\xd9\x7f\xef\x9d\x4a\xe1\xe0\xf7\xb6\x09\x6a\x49\x55\xa3\x2b\xb0\x44\x85\x25\xe6\xe8\xb4\xd9\x49\x11\x34\x4c\x89\x95\x7d\xf6\x8c\xe5\x95\x26\x6c\xca\xaf\xec\x48\xaa\x1d\xce\xb0\xaf\xa8\xb7\xd0\x4a\x8a\xb2\x14\x1a\xf4\xf9\x29\x11\x31\xe9\x65\x86\x1a\xde\x14\xa8\x49\xd5\x6a\x2c\x31\x41\x4a\x4d\x6a\x74\x5a\x43\x7a\x64\x44\x7a\xa3\x3d\xbf\x2d\x34\xb8\xa3\x26\xbd\x29\x63\x49\x44\x46\x4b\x96\xd6\xaa\x0b\x0e\xd2\x59\xb5\x71\xf6\xe8\x00\xe9\x9c\x9f\xe6\xaf\x30\xbf\xb3\xdc\x16\x0f\x9f\x27\xf7\x1c\x9f\x87\x69\x69\xe3\x81\xcf\xfb\x85\x77\x5d\xff\x96\xec\xd1\xcb\xae\x1e\x36\xc7\x33\x21\x0c\x6e\x7a\x28\x34\xd0\x4f\xa2\xe7\xba\x25\x63\x91\x4c\x20\x29\xe9\x02\xe0\xfd\x36\x00\xe0\x3c\x9f\x7b\xd3\x38\x11\xde\xf7\xa5\x77\xbc\x2d\x5e\xe7\xc6\x84\xfc\xe8\x1c\x3f\x7e\xb9\xd4\x88\xe2\xe6\xb8\x05\x6b\x95\x2a\xbd\x44\xf4\xf7\x90\x32\xec\x9e\x4a\xbd\xdc\x9d\x8c\xc6\x22\x8c\x76\xf4\x15\x95\x8d\x54\x25\x2f\x98\x1a\x95\x9b\xaf\x9f\x58\xba\x37\x71\x03\xcf\x74\xee\x69\xdd\xbb\x2c\x55\x57\xd0\x61\xa7\xbf\x9d\x79\xf6\x96\xa6\x5e\x2c\xce\x71\xfe\x5d\x78\x17\x10\xfe\x04\xc0\x1e\x94\x78\xa8\xa2\x25\xf0\xf4\x5f\x9f\xa5\xa8\xb9\x69\xbf\xb1\x1a\xae\x08\x35\x69\x94\x67\xbb\xd1\x2c\x4a\x96\xbb\x72\xf5\x03\x3b\x4a\x4a\x76\x3c\xb0\xfa\x8f\xa4\x28\xda\x74\x62\x78\xe8\xc4\xa6\x22\xfc\xb6\x4e\x8c\xd7\x43\x69\x13\x3d\xc5\xa2\xc1\x4f\xe2\x21\x5d\x10\x71\xbb\x1b\xbb\xe7\x43\x1f\x0a\x35\x4b\xe1\xa1\xd1\x4c\xbf\x8d\x49\x49\x89\x89\x91\x42\x43\x40\x7c\xdf\x55\xcd\x7c\x00\x40\x0d\x06\x87\x36\xd4\x5d\x90\x61\xe2\xc3\x1a\x71\xce\x4e\x00\x28\x97\xd8\x7f\x6a\x50\x2b\x17\x4b\xb7\xe8\xc1\xa2\x72\xa3\x17\x84\xda\x69\xdc\x5f\x93\x65\x0e\x4f\xae\x1f\xc9\x94\x6b\xca\x32\x8d\x11\x29\x8e\x98\x08\x87\xb0\x28\x36\x3b\x3e\xad\x22\x65\x11\xd6\xf8\x87\x9b\xb5\xd1\xb1\x6a\x3f\xbe\x4d\xfa\xcc\x6b\xe9\x10\x7d\x21\xdc\x0d\x32\x08\x72\x2c\x3c\xd7\x5f\x3d\x2c\x75\x57\xa3\x56\x29\xb7\xea\x2d\xf4\xc5\xf0\x97\x58\xb4\x80\x0e\xd1\x75\x25\x4b\x47\x24\x6c\x8e\x5a\xba\x97\xdd\x21\x9c\x92\x6a\x2c\x62\x7c\x4c\xa2\xff\xea\x3e\x6b\x5a\xd9\xd9\x02\x0b\x7e\xf7\x0b\x3c\x3c\x67\xe9\x65\x3e\xa1\x36\xb1\x71\xaa\xb2\x6a\xb2\x31\x31\xb1\x61\xb2\xb2\x6a\xaa\x29\x71\x15\x86\xdb\xea\x6d\x69\x75\xb6\x70\xc4\x08\x5b\x9d\xd5\x2a\x3e\xe3\xeb\x4b\x36\x76\xa4\x89\x41\xdb\xfa\x92\x8d\x4b\xd3\xd2\x96\x6e\x2c\x49\x6d\xcd\xd7\x1b\x1c\xad\xa9\xeb\x53\x5a\xf3\x0d\x86\xfc\xd6\x14\xaf\x5f\xbe\x85\x7d\xc0\x66\xc8\x88\xeb\xe7\x5a\x00\x40\x8e\xeb\xe1\x6e\x70\xbf\x67\x03\xe0\x17\x09\x0f\x42\x12\x3e\xe5\xfa\x3b\xfd\x25\xe3\x30\x18\x70\xc3\x9f\x14\xb8\x10\x4f\x61\x36\x40\xc6\x61\x50\x8a\xde\x9b\xfe\xe2\xf6\xde\x33\x0a\x77\x9f\x1f\x58\x00\xf8\x3e\xe1\x5e\x32\xe0\x86\x5f\x29\xa4\xab\xff\x42\x5f\x67\x1c\xc6\x85\x78\x2d\x36\x9f\xbd\x4e\x1a\x2e\x3a\x7d\xfa\xda\x73\x5d\x0a\x20\x3f\x2a\x3c\x2c\x5e\x97\xc2\x20\x09\x4f\x61\x1b\xa0\x74\xdd\xaf\xe7\x02\xe8\xcb\x8c\xc3\x10\x26\x5e\xc7\xa4\xeb\x68\x06\xc5\x47\x86\x0f\xd3\x97\x12\x68\x20\xf8\xd2\xb5\x95\x7d\xca\xab\xa5\x5e\xbc\x01\x0f\x08\x93\x21\x13\x50\x60\xf3\xf9\x43\x1e\xe6\x99\xb7\x35\x4f\x2a\x60\xc4\x7c\x67\x9c\x38\x21\x75\x9f\x1d\x2e\x54\x49\xb5\xc9\x0b\x1b\xf7\x02\x98\x3c\x80\x79\xbb\x5d\xcf\xb2\x8d\x44\x3d\xc8\x65\xd6\xf3\x1a\xf7\x1e\x42\xdf\xc8\x34\x93\xb1\x32\x53\xab\x2d\xea\xcd\x4d\xef\x2e\x8e\xa3\x49\xca\x58\x7e\x59\x53\xfb\xfe\x7e\xab\xa9\xac\x33\x39\x52\x17\x24\x44\x8b\x92\x2e\x4a\x3c\x9d\xc8\x6e\x2e\x71\xc4\xc6\x36\x76\x0e\x66\xe7\xf6\x17\x1b\xb4\x05\xcb\xb2\xea\x77\x2d\x4b\xb3\xf5\xee\x6d\x2a\xdb\x3e\xb1\x3c\x21\xc2\x9a\xee\x88\xc5\x9a\x79\x3a\x41\x60\x07\xe0\x57\x09\x33\xb0\x10\x82\x20\xcb\x91\x1e\x84\x52\x3b\xb4\x00\x32\x85\x20\xeb\x05\x05\x88\xf8\x67\x7e\x9f\x8b\x5c\x2e\x7d\xb5\xd1\xd9\x86\x0b\xd1\x6f\xfa\x28\x96\x98\x34\x1a\xa6\x61\x5a\xd1\x7b\x06\x4b\xbf\xa8\x61\xfc\x2a\x97\x8f\xcc\x75\xe7\xbe\x2d\x14\x4b\xa1\xae\x8b\x14\x58\xe5\x7a\x50\x81\x97\xce\xbe\x85\x09\x7e\xb8\xcb\xb5\x49\x98\x19\x74\x7e\x38\xe8\xbc\x05\x0f\x30\x77\x5e\xf2\x14\x2c\xe7\x66\xf6\x32\xf8\x81\xec\x3e\x1f\x86\xc9\x26\x3b\xa2\x1d\x51\x8d\x28\x47\x3c\x85\x83\xae\x3b\x6a\xb1\x05\x5b\x6b\x5d\x77\xe0\x8a\x5a\xd7\x21\xd7\x91\xfb\x70\x14\x97\xd5\xb9\x6e\x91\xfe\x71\x5d\x55\x8b\xab\x5c\x57\x03\x83\xb1\xb9\x13\x7c\x8b\xf0\x31\x68\x21\x0d\x0a\x21\xdd\x61\xcd\x48\x8f\x8f\x8b\x5e\xb2\xc0\x57\xe1\xee\xf5\x16\x0d\x37\x63\xb9\x95\x5e\xba\x76\xd1\x7c\x2e\x5b\x62\x62\x70\x62\xb0\x41\xaa\xca\x05\x08\x6e\x12\x9b\x18\x73\x4a\x8c\xf4\x50\xb5\xdd\xc2\x42\x43\xd5\x82\x18\xb1\xa0\x44\xab\xe1\x72\x8d\xc1\x60\x44\x29\x29\xcb\xed\xbc\xd8\xc3\xfc\xef\xb8\xc2\xbe\x62\xc5\x95\xba\x34\xad\xd2\x43\xfe\x1f\xfb\x59\xd6\xd8\x8a\xa3\x69\xc9\x34\x7b\xdc\x57\x15\xa5\x26\x73\xc2\xae\x6e\x4f\x07\x00\x7d\x81\x8b\x22\x9c\xef\xc5\xaf\xad\xbc\xa0\x09\x20\xcb\x72\xd7\x3f\x93\xd7\x6c\xdc\x9a\xe3\xe9\x03\x68\x29\x7d\xd4\xf5\xaf\xae\xb7\x57\x3e\x99\xb0\x6c\x59\x47\x2c\xbb\xaf\xa8\xd9\xdd\x0c\x50\x7a\xa8\x6c\xb6\xc3\x6c\xf7\x34\x03\x10\xfc\x0a\x80\xd7\x4a\x5c\xe1\x25\x70\xa2\x72\xc6\x47\xaa\xd8\x71\x40\xe2\xd8\x2f\x93\x5a\x66\xce\x32\x28\xe7\xd5\x97\x44\xbf\xb4\x44\x54\x66\x81\x83\xd0\x7f\xfe\xf8\xf3\x8a\x50\x3f\x39\xd7\x4f\x4c\x23\x3a\xa0\x10\xa5\x12\x40\xb9\x44\x19\x11\x12\x04\x81\x10\xa8\x8c\xd5\x28\x44\xd5\x50\x6a\xbc\xd0\x50\x04\x61\xc1\x67\xbb\xe6\xd0\x86\x45\x43\x27\x36\x17\x17\x6f\x3e\x31\xe4\x7a\x6c\x72\x12\x8b\x6a\xb6\x77\x59\x52\x3b\x77\xd4\x0a\x33\xae\x57\xb2\x46\x0e\x75\x77\x1f\x1a\xc9\x72\x3d\x26\xcc\xb8\x46\x9c\x97\xa3\xb9\x61\xa2\xb8\x78\x5d\xa3\x19\xdd\xf9\xf6\xa7\xe6\xbe\xe6\x99\x32\x5f\x28\x84\x56\x87\xaf\x16\x19\x8f\x11\xe3\xd8\x0a\x77\x8e\x69\xb1\xb7\x43\x22\x57\xea\x90\x38\x4b\x1c\x2a\x16\x17\xb2\x08\x10\x38\x73\x7f\x2f\xc0\x79\x6f\xb5\x3b\xfc\xf2\x72\xe2\x8c\x91\x11\xfa\x40\x41\x74\x14\x5a\xe5\x3c\x5c\xab\x0e\x39\x07\xf3\xe7\xa5\x30\xb8\xa8\xe3\x12\x6a\x31\x88\x56\x39\x7d\x32\xb9\x63\x4f\x5b\xf1\xc6\x0e\x9b\x3e\xd1\x80\x49\xc5\x75\x45\x66\x6b\xd7\xe6\x52\x63\x73\x7d\x69\x98\x46\x9d\x5d\x58\xa2\x4d\x6b\xcd\x8d\x31\x17\xd7\x15\x27\x19\xcc\x06\x6d\x66\x55\x6c\xfe\xb2\xdc\x28\xe4\x9d\x5d\x37\xae\xcd\x8f\xaf\x59\x53\x5e\xb4\xb2\xab\xd3\x96\x52\x5b\x56\xda\xb4\xa2\xb0\x7a\xb2\xd1\xe4\xab\x5a\x12\x32\x10\xb8\x24\x74\x41\x74\x66\x7d\xaa\xad\xa9\xa2\xb4\xa1\xcf\x91\xd9\xb7\xac\x37\x23\xa9\x26\x3d\x0a\x53\xda\xa6\x4b\x81\x41\xd2\xdc\x69\x7e\x8c\xd7\x40\x3e\x34\x40\x37\xf4\x39\xba\x8d\xc8\x59\x69\x4e\x36\xe3\x0a\x39\x55\x00\x67\xc4\x38\x8d\xfb\x21\xf9\xa2\x5c\x41\xf2\x7e\x7f\x64\x4c\xe8\x90\xa1\x20\x94\x56\x06\xf8\x90\x42\x01\x1d\xb8\x80\x24\x4d\x29\x2c\x40\xe8\x68\x6f\x6a\xac\x28\x2b\x68\x28\x6c\x48\xb7\xa5\x24\x9b\xe2\xf4\xda\xa8\xc8\xc5\x8b\x82\x95\x3e\x72\xc8\xc7\xfc\x85\x8a\x10\x93\x70\x21\x1f\xd7\x03\xee\xd4\x46\x83\xbb\xa0\xeb\xa9\x77\xcb\x35\x67\x4d\xa2\x3a\x80\x49\x51\x27\xd3\xba\xed\x24\x6a\x3c\x59\x69\x15\xdb\x3a\x76\x45\x6c\xb0\xbd\xa4\x39\xa5\x68\xb0\x44\x97\xd4\xb9\xab\xf5\xe2\x85\xfa\x82\xb4\x84\x92\xe4\x30\x5c\x87\xa6\xba\xd5\x45\x03\x9b\x23\x8d\x9b\xdb\x9a\x36\x54\x6a\xd1\xf9\xe7\x45\x59\xcb\xab\x8c\xf9\xd6\xf8\x20\x7d\x90\xa5\xb0\xc9\x79\x3c\x32\x2b\x2d\x7e\x21\x5e\x94\xd9\x91\x1b\x1d\x6a\x2a\xc0\x01\xbc\x05\x29\xc4\x5c\x69\xcf\x6f\x4a\x51\x85\x60\x77\xb5\x36\x2f\x29\x22\xa9\x61\xb5\xa3\x7a\x7b\xa7\xe5\x4e\x7d\xa9\x5d\x1b\x91\x5a\x1c\xc7\xf3\x87\x2b\xe3\xea\xf2\x1d\xf5\x79\xc3\x97\x94\xff\x72\x57\xd6\xda\xae\x8c\xa0\x08\x5d\x50\x6b\x68\x5c\x74\xf0\xf2\x90\x98\x84\x45\x58\x83\x71\x25\x9d\x69\xb1\x65\xe9\xd1\x94\x30\x6a\x5a\x5a\x91\xec\xe8\x5d\x9f\x06\x04\x2d\x73\xa7\x79\x80\x2c\x00\x74\x90\x0d\x29\x0e\x73\x28\x32\xc2\x0a\x9d\x36\x26\x3a\x2a\x22\x7c\x71\x98\x0f\x96\x01\x02\x31\xa4\xfe\x79\xfd\x30\xe9\x36\x73\x42\x6c\xac\x08\x3e\x30\x34\x48\x3d\xff\x2b\x14\xc4\xbd\x32\x78\x52\x9a\x46\x7b\xa8\xda\xae\x66\x69\x06\xe3\xb9\x14\x98\x24\x65\x2c\x62\xed\x56\x2c\xd8\xf2\xc0\xda\x81\x3b\x37\x97\x14\x6d\xb9\x67\x74\xf9\x4c\xb6\x7a\x55\xdd\x19\xcb\x17\xd9\xfb\x6a\x8c\x2f\x1d\xfc\x63\x5a\x3b\x62\x48\x69\xe7\x58\x66\xf3\xae\xce\x64\x4b\xc7\xf6\x9a\x8e\x4b\x96\x9a\x85\x05\x9b\x5d\xf7\xbd\x59\xba\xfe\x77\x37\x74\x56\xee\xbc\x77\x60\xf4\xa1\x5d\x15\xb5\xc5\x3b\x5f\xae\xbb\xac\x62\x5b\x72\x79\xc4\x50\xe1\x96\x2d\xe5\xb3\x7f\x59\x18\x19\x10\x9b\x9f\x14\x96\x3b\x72\x65\x43\xf5\x65\xc3\xb9\x35\x17\xdd\xd1\x09\x0c\xd6\xc2\x1b\xbc\x9d\x5f\x29\xe5\xf1\xa5\x0e\x4d\x20\x60\x48\xac\x1f\x50\xa2\x1a\xf5\x02\x17\x04\xde\xea\xe9\x64\xe7\x42\xad\x4e\xa7\xd3\x7a\xdb\x23\xad\xe7\x11\xb0\xe6\xbb\x3e\xde\x3e\xbb\x98\x7d\xee\x7c\xfa\x6c\xe2\xca\xfb\x84\x76\xae\xc3\x52\x4f\xca\xca\x29\x44\x27\x27\x47\x6b\xa4\xdc\xd5\xc5\x73\xeb\x78\x39\x7f\x02\x34\x90\x04\xd9\x90\xeb\xc8\xf2\x53\x90\x00\x69\x96\x58\x23\xe7\x42\x44\x18\x11\x67\x15\x6e\xf6\x2a\x23\xb6\xf6\x02\x1e\xac\x5b\xa7\x4d\xe6\x60\x93\x87\x6b\xe0\x26\x4e\xda\x2d\x72\x77\x0b\xe9\x39\x37\xa0\x97\xac\x91\x9b\x90\xa1\x09\x09\xf5\x38\x01\x2f\x89\xc5\xd6\x63\xaa\xe8\x5a\x96\x56\x6f\x5f\xe2\xa6\xb2\xe4\x8d\x25\x37\x75\x8d\x24\x95\xa6\x2c\x66\x35\x21\x7a\xbb\xce\xb5\xb9\xb2\xbf\x6d\x4f\x47\xb2\x33\x3e\x2f\x1b\x77\x44\x97\xc7\x9d\x63\xb6\xa8\x82\xaf\x7f\x52\x37\x30\x75\x49\x99\x44\x6f\x09\x0f\x3b\xf1\xae\xbe\x6f\xcd\x8e\x22\x8d\x75\x68\x59\x43\xd4\xec\xe7\xe6\x8a\x4d\xc7\x5a\x96\xdf\x9f\xc7\x82\x02\x95\x6e\xaa\x8b\x97\xeb\x22\xf3\x95\xf2\x15\x3d\xe7\x71\x5d\xd4\xdf\x47\xeb\xfe\x3e\x96\xca\xf9\xb4\xee\x0b\x59\x2a\x3f\xc4\x51\xf9\x2e\xa7\xfb\x2c\x47\x25\x65\xf0\xc8\xc8\xf0\x5d\xd9\x53\x53\x99\x27\x46\x56\xdd\x38\x90\x32\xa5\xad\xda\xd4\x66\xeb\xae\xcd\x51\x25\x1c\x1f\x6e\xdb\x58\x15\xe3\xa6\xa8\xd4\x57\x39\x7f\x2f\xbf\xd3\x79\xa4\xfe\x2c\x47\x25\xd2\x5a\x91\xe8\xfc\xa6\xb9\xdf\xc3\x51\xd1\x01\xf0\xfb\x85\x19\x08\x06\x35\x2c\xaf\x9c\x09\xab\x6b\x73\x68\xc1\x17\x18\xf9\xb2\x5e\x1f\x94\xcb\xb3\x2b\xfd\xc4\x18\x07\xda\x15\x32\xa9\x06\xcc\xbd\x5f\xa3\xa6\x11\x5f\x10\xdf\xf3\x15\x83\xfd\xf3\xae\xf0\x8c\x69\x77\x04\x5d\xf0\x9d\x87\xfe\x8a\x25\x67\xbf\x08\x47\xa9\x55\x6a\xad\x16\x77\xf3\xa8\xf4\x3d\x29\xb1\xfb\xf6\x4d\x38\x9b\x26\x36\x6c\x98\xa0\x13\x13\xb3\x9f\xd0\x09\x67\x13\xef\xef\x3d\xe3\xa2\x47\x9d\x25\x9c\x7a\xb1\xda\x75\x1f\x56\x3b\xd7\x7c\xe4\xf6\x35\x12\x17\x4f\xaa\xad\x4a\x7d\xaa\xdf\xc7\x8b\xfc\x5e\xb6\xdd\x59\x26\xa4\x97\xff\x08\x04\x97\xce\x7d\xc3\x4b\xa5\x3c\x8c\x1a\x0e\x79\xd3\x01\x1c\x05\xe4\xc2\xb8\xbb\xcd\x53\x3a\x31\x2f\xa3\xd0\x1d\x3a\x46\x5e\x30\x42\x72\x5c\xe7\x68\x19\x1e\x1e\xd9\x8f\xcd\xf3\x53\x53\x48\xc4\x9c\x98\x10\xed\xb9\x6e\x5b\x8b\xc6\xa2\x0c\xf1\x52\x72\xdc\x92\x80\x34\x35\x45\xbf\x9d\xba\xe3\x9e\xca\x2d\xed\xa9\x53\x6b\x87\x0a\xdb\x2c\x21\xc2\xcc\x99\x1b\x7e\xfe\x48\x5c\xd3\xf6\xd6\x2d\x6b\xf4\x85\x9d\x62\xa8\x00\xc3\xae\x6a\x9e\x28\x3c\x06\x61\xa0\x85\x24\xc8\x82\x5a\x47\xd5\x02\x24\x99\xbb\x1e\xee\x8f\xbe\xbe\x3e\x1d\x7e\xe8\xe3\x53\x54\xa9\x40\xc6\xa0\x9d\x4b\x15\x72\x11\x72\xb8\x93\x37\xf3\x8b\xe5\x99\xe9\x22\xd2\x8e\x35\x48\x67\xaa\x2a\xb1\x06\x2e\x90\xbe\xca\x52\x79\xa1\x27\x56\x6a\xf5\x1a\xa5\xe5\xbb\x74\xd4\xf3\xbe\x1c\xec\x0e\x1c\xb5\x0f\x5f\xdf\xb3\xc4\x92\x9a\x1a\xe1\x13\x64\xb5\xa7\x2c\xcc\x1e\xad\x4f\xfe\xb7\xf3\x69\x9c\x7e\xdb\x79\x12\x99\x6b\x8e\xf9\x7b\x89\xa1\xce\xb7\xe2\x93\x93\x4d\xa6\xe4\xe4\x78\x9e\x79\xe6\xd9\x81\x9b\x27\xb2\x89\xcb\x84\x01\x89\x24\x5a\xbd\xb5\x93\xfd\x6e\xc4\x43\x69\x3d\xe8\xa1\xb4\xc6\x78\xa9\xad\x08\x6f\x02\xf0\x01\x9e\xf9\xdd\x1e\xde\xbc\x1f\xef\xe1\xfd\xf6\xe4\xd4\xd4\x55\xf8\xe4\x55\xae\x30\x0a\x3b\x8c\xdf\xde\xe8\x3a\xce\x33\x9d\x77\x5e\x8f\x4f\xb8\x94\xce\x07\x00\x21\xc3\x83\x01\x17\x88\xb1\xae\x9f\xaf\x8f\x82\x91\xfb\x4b\xfa\x2b\x2e\x6c\xe8\x55\x29\x43\xa4\x9c\xa8\x5e\x25\x48\xfc\x15\xb9\xd5\xae\xb4\xe0\x4a\x34\xb8\xde\xa5\xcf\x66\x8f\x3f\xf2\xc8\x14\xb3\x77\x8e\x76\x3a\x8f\x0e\xd1\xad\x99\xa3\x99\x74\xf4\x9c\x9c\xcb\x00\x94\x50\xe3\x58\xb0\xc0\xdf\xcf\xd7\x3d\x3f\x3b\x47\x57\x66\x8c\xb7\x4b\x9c\xe5\xf9\x45\xc9\x70\x47\x08\x70\x90\xaa\x96\xf3\x5f\x6e\x7f\x48\xa9\x52\x2a\x43\xa4\x5c\x95\x5e\x2e\x78\xd4\x42\xb0\xeb\x95\x1a\xab\x86\xde\xc4\x36\xee\x3a\xe1\xa1\xa3\x5e\xce\x70\xb5\x6b\x3b\xfe\x87\xed\x5a\x33\xba\xc6\xd9\xb0\x72\x25\xed\xde\x34\xb6\x91\xd2\x47\xdc\xfa\xf7\xb0\xab\x92\x87\x48\xdf\x9d\x6a\x77\xa4\x2d\x0e\x09\x66\x6e\x9e\xb0\x0f\x02\xb2\x0a\x81\x93\x17\x86\x56\x7a\xb8\x08\x9e\x90\x3f\x1c\xc2\x95\x6a\xbd\x5e\x62\x48\x06\x7b\x69\xc2\x1e\xa3\x66\x45\x71\xe3\x55\xa8\xe4\xc1\x18\x5d\x30\x54\x16\x91\xbc\x78\x41\x90\x4d\x99\x90\xa5\x0b\x74\x1e\xd8\xb0\x81\x56\x0b\x33\xff\xfd\xbf\xa2\xad\x3d\x99\x7e\x8a\x7e\xb9\x4f\x62\x49\x9b\xa9\x8b\x3f\x76\xc6\x21\xcc\xf0\xff\x8f\xb5\xf7\x80\x6f\xe3\xba\xf2\x85\xef\xb9\x73\x67\x00\x76\x82\x20\x00\x76\x12\x44\x23\x08\x12\x24\x00\x02\x20\xc1\x06\xf6\x02\xf6\x2a\x92\x92\x48\x8a\x62\x13\x25\x8a\x45\x2c\xea\xbd\xd9\x92\x2c\x5b\x96\x2c\xb9\x77\x3b\x91\x23\xcb\xd9\xb8\x3f\xc7\x49\xec\xd8\xbb\xa9\x1b\x3b\x75\x93\xe7\x94\xe7\xbc\x38\x6b\x25\xbb\x29\xbb\x59\x5b\xc4\xe8\xfb\xcd\x9d\x01\x48\x4a\xb2\xac\xe4\x7d\xfa\x85\x31\x80\x99\x7b\xe7\xce\xad\xa7\xfc\xcf\xff\x5c\xad\x26\x5f\x45\x80\xbe\xc3\xfb\x08\x43\x9a\x50\x36\x7a\xd9\x1b\x95\x09\x98\x30\x2a\xc0\x24\x16\x00\x33\x92\x3d\x48\xb4\x99\x72\x2c\x96\x8e\xa4\x55\xf3\x3a\x40\x36\x29\x08\x61\xa5\xbe\x15\x16\xe7\x1b\xef\x8b\xfd\xdc\xba\x3e\xbf\x9a\x80\x7d\x28\x1b\x65\xab\xcc\x26\xb3\x68\x1f\xd2\x48\x96\xb8\x1b\x20\xd4\x2b\x00\xe5\xe0\x0e\x8d\xaf\xec\x1a\x2f\x59\x7f\x6c\x4d\xa6\xa9\x61\xba\x21\xad\x30\x2d\x22\x3c\x39\x25\x29\x2c\xb7\x3a\x5b\x9d\x5c\x3a\x52\x5f\x36\xd2\xe4\x56\x2c\x10\xcf\x9b\xb9\x8d\xf9\x29\xde\xb9\x27\x86\xfc\xb1\xbe\xbd\xeb\x9c\xa1\x21\xa3\x0c\x47\xb0\xb1\xbc\xdb\x8e\x3f\xae\xdb\xdd\xe7\xd0\x97\x74\xda\xfd\x0c\xa1\x76\xdc\x86\x6b\xff\x49\x9e\x61\xdf\x44\x89\x28\x1b\xce\xfb\x2e\x6b\x5b\xd6\x78\x43\xd3\x80\xe0\x54\x40\x32\x8a\xb9\xd3\x2d\xff\x22\x48\xb0\x89\xf4\x4b\x88\xf8\x25\x00\xb7\x4b\x17\x14\x5a\x19\xcb\x0d\x86\x04\x29\x37\x8b\x7c\xa1\x72\x2c\x93\x89\xf0\x44\x71\xf7\x0c\xbf\xf9\x9d\x95\x37\xde\x19\x79\xdb\x75\x6a\x6f\xbb\x4e\xe1\x3d\x32\x6f\x76\x27\x55\xb9\xe9\x1e\x1c\x0a\x72\x79\xc0\xc7\x90\xe8\xbb\x9c\xd5\xb2\xc6\x9b\x17\x28\x81\x42\x42\x82\x05\x3e\xb7\xac\xd7\xbe\xaa\x58\x80\x6b\x68\xa5\x8e\x7f\x43\xa1\x1e\xfa\xcf\xab\x4c\x49\xd2\x6b\x93\xb2\x53\xb2\xe9\x2e\x5b\x90\x1e\x1d\x26\x4f\xb2\x68\xb5\x1c\x67\xb2\x32\x4e\x41\x09\x72\xbb\xd4\x9a\x20\xeb\x05\xab\x76\xb9\x15\x46\xa3\x20\xc7\x2b\x62\x53\x30\x79\x86\x77\x15\x6e\x2f\x9d\x7c\x68\x63\x4e\xce\xd0\x83\x93\xa5\x3b\x0b\xe1\x9b\x7c\x2d\xec\xe6\x0f\xc2\x1b\xfe\x0a\x5d\x95\x4e\x57\xad\xeb\x9a\xaa\x4c\x4a\xae\x9c\xe6\x42\x01\xfa\x1f\x7c\x77\x0c\x16\xc6\xde\x7d\xb0\x1f\x40\x2e\x1b\xf1\xff\x64\xc4\xff\xc5\x28\xc0\x0c\xf9\x94\xc1\xd0\xb8\xfb\xf1\x6e\xfe\x68\xf7\x13\x7b\x1a\x69\x84\x62\xe2\xb5\x2b\xe4\x75\xd2\x84\xf2\x50\x3d\xea\x46\x95\xde\xb2\x50\x90\xcb\x32\xd3\xb5\x0c\x83\x71\x7d\x28\xc8\x11\x66\xe4\x98\xca\x01\x41\x04\x39\x30\x0c\xe9\x63\x81\xd2\xfd\x35\xf8\xda\x5b\x7d\xdd\x0d\xdd\x66\xb3\xd1\x6c\x50\x65\xe8\xc3\x56\x50\xe3\x06\xe6\xfe\x6a\x0d\x45\xb7\xac\xd7\xdc\x84\x0f\x57\xeb\x74\x49\x1f\x13\x8d\xad\x7b\x7b\xf3\xba\xaa\x9c\xb1\xca\xbc\xf2\xa6\x9c\xf6\x6d\x75\xe9\x98\x0f\x51\xdb\xdb\x8a\x8c\x5e\x67\x56\x8c\x59\x95\x57\xda\x98\x3d\x7c\xdc\x14\xeb\xac\xea\x74\xf4\xed\x6b\x35\x2e\xc6\xda\x3b\xbc\xa5\x6d\x76\x95\xca\xde\x51\x5a\xda\x6e\x53\xe1\x1c\x38\x08\x31\x59\x75\xae\x82\x06\x6b\x2c\x9e\xef\xfa\xc2\x91\xf6\x24\x47\x75\x66\x66\xb5\x23\xa9\x6a\xf6\x6c\xcb\xe3\x7d\x45\x7b\x46\xcb\xa3\xe3\xb5\xd1\x6d\xaa\x8c\x94\x18\x18\x6b\x33\x57\xd9\x13\xdb\x8e\x3c\xdb\x5d\x7a\x70\x73\x65\xd5\xc4\xc1\xd2\x7f\x2a\x39\xb8\xb9\xaa\x6a\xf3\xc1\x12\xdc\x9e\x3d\xd2\x59\x50\x39\xb1\xaf\x88\xda\x26\x7f\x8f\x10\xe3\xe7\x52\x91\x02\x99\xbc\xfa\x10\x00\x14\x0a\x18\x70\xbd\x70\x0d\x23\x18\x5a\xb6\xd9\x2a\x90\xc2\x60\xa0\x06\xd1\x00\x0a\x57\x66\x34\xea\x38\x4e\xa6\x80\xdf\x83\x7b\xf8\x64\xb7\xb1\xd6\x10\x95\xe8\x49\x3b\x70\x0f\x26\x0f\xaf\xbd\x6b\x43\x5e\x68\xc8\x80\x4c\x06\xe7\x0e\x5f\xdd\x20\xec\xc9\x8f\xf2\x3e\x52\xcf\xa5\x22\x0b\x2a\xf5\x16\x69\x81\x63\xd3\x81\x70\xa1\x80\x51\x08\x00\x26\xd4\xda\x44\x58\x6e\x48\x38\xef\x48\x8f\x2c\x00\x65\x0f\xec\x47\x2a\xbd\x41\xa1\x32\x1a\x24\xef\x0c\x23\xf4\x79\x60\xfb\x71\x0b\xa2\x5a\x30\xca\x89\xee\x43\x1a\x2d\xf3\x32\xff\x01\x80\x6d\xed\xfe\xd6\xc6\x9a\x88\x08\xbd\x51\x17\xe1\xec\x2c\x4a\x83\xf7\xde\x87\x82\x91\x93\x5d\x59\x1d\x96\x68\x6f\x73\xe9\x68\x6d\x06\x00\xa4\x33\x3f\xbd\xfa\xeb\xee\x63\xeb\x6d\x49\x43\x5c\x88\x8c\xd1\x57\x0d\x96\x90\xd4\x0d\x7b\xbb\x8f\xf4\x59\xa3\xc2\x87\xd4\x5a\x6f\x7f\xc9\x5e\x84\xd1\xe2\xb5\x2b\xe4\xdb\x1c\x42\x66\x54\x83\x5a\x5f\x32\x26\x62\x12\x3c\xe6\x12\x44\x21\xfb\x66\x64\x2a\xa2\x7b\x06\xcf\xdc\xf4\x62\xcf\xcb\xd9\x39\xf1\xd9\x46\x7a\xe0\xad\x62\x93\x10\x66\x9b\xdb\x21\x12\x4b\xde\x48\x7f\xe0\x93\xcc\x4b\xdd\x77\xae\x24\x96\x28\x99\xe8\xad\x4f\xc9\x74\x6b\x23\xf1\x16\x8d\xa3\xd9\x95\x61\xa4\x1c\x13\xf9\xed\x7f\x0f\xc7\x44\x72\x5e\x9d\x45\x9e\x5d\xd9\x65\x2f\x9b\xea\x29\x89\xea\x7c\x73\xfd\xad\xe8\x26\x10\x46\xdb\xae\x5d\x21\xcf\x91\x8b\x28\x15\x39\x05\xad\x4f\x21\xc7\x8c\x64\x5b\x9b\x09\xbc\x66\xcd\x4a\x83\x89\xd9\x6c\xd1\xe8\xa9\xd0\x2b\x0e\x97\xf0\x96\x12\xca\xef\x33\x23\x03\xb6\x51\xa5\x6a\xf4\xc9\x62\x4b\x91\x51\x01\x5b\x61\xe3\x68\x56\xf6\xe7\xc7\x08\xd4\x94\x10\x5d\x41\x8b\x7d\xcf\xc3\x09\x55\xcf\xac\xbd\x45\xb0\x00\xe5\x01\x60\xeb\xd8\x25\x64\x40\xad\x2f\x85\x03\x0d\x14\x14\xf7\x61\x0d\x0d\x9d\x61\x09\xa6\xa2\xd2\x32\x77\x4b\xa2\x70\x05\xa3\x99\x1b\xaf\x88\x71\x16\x06\x64\x30\xa8\x32\xd5\x54\x8a\x50\x05\xc6\xf1\xa6\x04\x02\x8e\x72\x63\x34\x4c\xa6\x56\x4e\x34\xdc\x82\x4a\xe0\x2d\x59\x56\xf5\xba\x82\x96\x7d\xeb\x0a\x64\xfe\xea\xcf\x60\x15\x40\x22\x4e\x98\x8d\x27\x0f\xa1\x54\xf4\x98\x37\x24\x41\xc3\x31\x44\x7c\x15\xd1\xd3\x04\x2c\x66\x67\x88\x18\xa8\x10\x88\x9f\x59\x56\x17\x92\x56\x5d\x97\xac\x5c\x2b\x0e\x99\xd8\x5b\xd6\x71\xeb\xe2\x01\x49\x22\x15\xa5\x2a\x75\x2a\x5d\x2c\x95\x24\x84\x5d\x23\x18\x0c\xba\x02\x4f\x2c\xf4\x17\x1b\x8f\xf7\xde\x39\xc5\x5d\x0f\x2b\xce\x2a\xd2\x47\x03\x79\xe8\xfc\xd3\x91\x4b\xcf\xdf\x80\x30\xbe\x53\xa6\x2f\x6c\x73\x89\x31\x93\xbc\x8f\x49\xa6\xfe\x36\xb3\xd7\x18\x01\x98\x11\xb5\x88\x9b\xc6\x85\x09\xfa\x81\x14\x46\x7f\x83\x7e\xa0\x85\x10\x1c\xbb\x52\xfa\x77\x49\xc1\x60\x1b\x03\x21\x60\x82\x7c\xbf\x22\x08\x0c\x61\xf4\xf2\xb5\x2b\xa4\x85\x34\xa3\x14\x94\x29\xc5\x9d\x62\x86\x92\xdf\xb0\x04\xb3\x83\xc1\x60\xd3\x1a\x5f\x30\x04\xb5\x0a\x1a\xd2\x52\x01\x19\xf4\xa9\x99\x69\x99\x52\xdc\x69\x0a\xa4\xc8\x29\x4a\x3f\x05\x2f\xdb\x7e\x9c\x5a\xea\xc9\xe1\x64\x26\x97\x8b\x92\x35\x6a\x55\x29\x0c\x1e\xde\xfa\xe2\xbe\x6a\xa8\xdd\x7b\x69\x74\xe2\xa9\xe9\x22\x26\x1d\x1c\xfd\xc7\xd7\x4c\x5c\x2a\x71\x94\x7f\xf3\x9e\xba\xc5\xde\x82\x30\x7f\x1f\x64\x75\x2c\x92\xa6\xce\xbb\xbf\xb6\xd9\xbd\xe5\xad\x33\x5d\xd5\x3b\xbf\x30\x34\x92\xdc\xf1\xc0\x42\x4d\x61\x49\x7b\x99\x6f\x09\x7b\x36\x1c\xac\x4b\xae\x5c\xec\x75\x22\x00\x2d\xf9\x77\xa6\x81\xfd\x03\x92\xa3\x14\x6f\x22\xc7\x60\x89\x34\xa0\x66\x45\x08\x7f\x4c\x2c\xf5\xb4\xa9\x74\x26\x99\xce\xe9\x76\x30\x0d\x5b\xbf\xf0\xcc\xe6\x3f\x36\x90\xab\x8a\x4b\x97\x62\xff\x03\x01\x34\x91\x5f\x32\xbb\xd8\xdf\x21\x39\x4a\xf6\x26\x70\x14\x27\x2b\x07\x54\xbb\xc2\x53\x2a\x71\x74\xbb\x1d\x2a\x99\xce\xe4\x74\xe0\xe1\x2f\x6d\xba\xd2\x75\x65\x82\xb5\xbe\x1a\xf5\xc9\xff\x44\x0b\x67\x52\x15\x79\x93\x39\xca\x7e\x0d\x29\x28\x86\x43\x44\x8b\x89\x14\x1d\x20\x9d\x44\xe9\xb1\x7a\x56\x74\xa3\x88\xdb\x86\x34\x81\x8e\x62\x4b\xc3\x58\x69\xe9\x78\xa3\x05\x8f\x30\x83\x6b\x3a\x07\x09\xfb\xb5\xc2\xfe\x0a\xbd\xbe\xa2\xbf\xb0\xa5\x6f\x6d\x33\x02\x1c\xc5\x46\xe3\xd7\xd9\x17\x25\x6e\x68\x49\xfe\x2f\x0a\x70\x43\xaf\x72\x21\x46\x65\x9b\x33\xac\xd6\x0c\x73\x36\xbb\x21\xdd\x96\xab\xd3\xe5\xe4\x20\x0c\x97\xc8\x29\x26\x99\xe5\x29\xce\xa1\xc4\x77\x39\x95\x06\x64\xac\x76\xcc\x95\x30\xd4\x6a\x2c\x72\x37\x0c\x51\xf8\x49\xb7\x34\xeb\x30\x34\xf7\xbc\x74\xdb\x30\x88\x4b\xc9\xb6\x0a\x93\xb1\xc2\x96\x9c\x6c\xab\x30\x9a\x2a\x6c\xc9\x0d\x8a\x64\x93\x46\x63\x4a\x8a\x8e\x4e\x32\x69\x34\x19\xc9\xd1\x6c\xa5\xb1\xd2\x91\x9c\xec\xa8\x34\x9a\xca\x6d\x49\x49\xb6\x72\x93\x26\x23\x25\x26\x26\x25\x43\xa3\xc9\x4c\x8d\x89\x49\xcd\xa4\x67\xfc\xe3\xfc\x10\xfe\x77\x64\x40\xf1\x42\x7f\x86\xd3\x31\x89\x0f\xc3\xd4\x07\x49\x67\x61\x19\x34\x18\x4c\xc2\xeb\x6b\x23\x19\x95\x5a\xad\x51\x07\x43\x17\xa8\x47\x0a\xbf\x9b\x5e\x91\xa7\x85\x6c\x4b\x5a\xbe\x4a\x93\xec\x73\x18\x4a\x73\x12\x4c\xa5\x6d\x16\x95\xdd\x53\x6e\xc8\xc8\x06\x88\x8d\xec\x50\xc6\xab\xb3\x4a\xcc\x99\x2d\xb5\x25\xf1\xa2\x0e\x76\x86\xfc\x95\x49\x67\x7f\x8a\x92\x91\xd5\x6b\x41\x00\x38\x92\xda\xdb\x93\x01\xd7\x46\x08\x53\x8a\x11\x04\xb6\xfe\x00\x38\xa4\x12\x1a\x74\x26\xdd\x4a\x0c\xb2\x20\x59\x48\x08\x24\x91\x18\x2b\x1d\x27\xda\x2a\x2d\x39\x15\x45\x25\x66\x47\x3e\xd3\x0c\x89\xb6\x2a\x4b\x66\x45\x69\x59\x46\x7c\x46\x52\x14\x66\xff\xc5\x5c\x9f\xaf\x4d\xcf\x4c\x87\x4a\x7b\x44\x46\x7d\xbe\x56\x67\x4e\x8f\xd5\x66\xc5\x53\x3f\xaa\x8a\xfc\x94\x79\x99\xfd\x1b\xc5\x38\xe6\xf9\x2e\x67\xb4\xac\xf1\x46\x04\x13\x74\xa0\x12\x61\x4f\x57\x62\x10\x26\x43\x67\x30\x9d\x07\x82\xc6\x9e\x97\x82\x3c\x1b\x0e\x4a\x5a\xa1\x63\x92\xef\xe7\xdf\xdf\x6e\x38\xf5\xb7\x49\xf6\x6f\xfc\xaf\x21\x95\xff\x35\xad\xff\x3b\xfc\x83\xf8\x97\xd7\x9e\x44\x4a\x94\xba\x82\xb5\xe3\x86\x91\xd7\x1b\xc5\x71\x67\xaf\x1f\x77\x71\xf6\xe6\x19\x75\x46\x0e\xbe\xa3\x31\xda\x93\x12\xed\x06\xb5\xda\x60\x4f\x4c\x74\x18\x35\xb5\x24\x3d\x39\xc1\x08\xa6\x84\x64\xdd\x6f\x92\x6c\x7a\x95\x4a\x6f\x4b\x4a\xca\x4d\x8f\x55\xea\x72\x92\x13\xf4\xfa\x84\x24\x03\x18\x11\x2c\xbd\x42\xbe\xe3\xff\x21\x17\x8a\x18\x64\x14\x4d\x7f\x61\x2b\x56\x6d\xa2\x37\x44\x3c\x95\x11\x1a\xef\xf9\xca\x32\x0d\x87\xff\x87\x43\xaf\x1e\x20\xdf\x81\x12\x3a\x66\xfe\x66\xf2\x5d\xbe\x97\x0b\x5b\x59\xc7\xf2\xb2\x15\xea\x40\x80\x66\x10\xc0\x72\x1d\x0e\x46\xe7\xff\xf5\xf6\x2f\xf7\x70\x61\xfc\x37\xa8\xef\x77\x69\x9a\xfc\xf5\x1a\x62\x7f\x8a\x64\xe8\xf1\xab\x62\x7e\x28\xf0\xb7\x91\xf7\xf8\xbd\x5c\x0f\xd2\x20\x8b\x37\x43\x0d\x18\xd3\x50\x0a\x8c\xf0\xec\xf5\x21\x01\x2b\x1d\xef\x60\x92\xe0\x2a\xee\x40\xfe\x0d\xff\x1c\xa4\x16\xe5\x24\x9b\x8b\xaa\x53\x64\xae\x4d\xed\x8e\x54\x7b\x69\x1a\x79\x6f\x37\x13\xa2\xd4\x25\xa5\x18\x54\xb2\x46\x50\x9a\xcb\x72\x32\xf2\x0d\x4a\x52\x82\x10\xbe\x3a\x47\x3e\xe4\xa3\xd8\x3f\xd2\x71\xd7\x78\x63\x57\xa5\x6a\x59\xa6\x6e\x11\x07\xd7\x9f\xb4\x9d\x7f\xef\x02\x86\x2d\x9f\x9e\x22\x1f\x42\x28\xff\xdf\x94\x9b\x04\x96\xfc\xfc\x77\xfc\x5f\xbc\x36\x7d\x2b\xdc\x01\x6b\x5c\xde\x34\x96\x78\xc8\x91\x38\x54\x7f\xa3\xcb\xcd\xd5\x05\x70\x07\xb8\x9c\x95\x33\x09\x5c\x2b\x62\x90\x42\x38\x0f\xa5\x8e\x54\x44\x63\x99\x84\x1a\xb9\xef\xe0\x5d\x75\x5c\x2b\xff\x32\x62\xa0\x89\x4d\x66\xde\xe6\x1e\x90\xec\xe9\x5a\x2f\xf5\x8c\x32\x48\xe4\xba\xc3\x7d\xc2\x41\x9b\xcb\x34\x48\x46\x74\x59\x82\x05\x1c\x32\x1d\xfb\x59\x46\xac\x3d\x27\x5b\x06\xf8\xbf\x64\x51\xff\xb0\x31\x1b\xbe\x17\xf8\xc4\x3d\xb0\x94\x9b\x6e\xb3\xa5\x6b\x6d\x36\xad\xf4\x5f\x74\xed\x1a\xb6\xe2\x9d\xf8\x67\x4c\x1a\xe6\xd0\x7c\x9c\xd0\xcc\xaf\x22\x44\x32\x82\x3c\x70\x22\x40\x1e\x67\xf8\x10\x80\x59\x64\x91\x91\x69\x24\x66\x2b\x92\xe1\x8f\x5c\x64\x36\xb1\xf5\x9f\xbe\x44\x79\x84\x30\x8d\xd7\xb9\x48\x6d\x97\x1c\x32\x7a\x75\x1c\x60\x10\x06\x1e\x20\x83\x42\xb9\x85\xf3\xd8\x8c\x1a\x10\x92\xd0\xc5\x44\xa6\xb2\x00\x68\x85\xff\xe1\x17\xe1\xbf\xaf\x9e\xc1\x21\xfc\xbd\x8c\x83\xdf\xca\x5e\xfe\xb4\x85\xbd\xfc\xe9\x8b\xe4\x4b\x22\x4f\x67\x80\xa7\x8d\xa1\x0c\x63\x66\xaf\x51\x98\x46\x2c\x88\x5c\x8c\x7d\x88\x61\x72\x83\xcc\xdd\x36\xdc\x90\x9d\x9d\x6d\x92\xfa\x49\xeb\xd4\x6a\x3e\x87\xb7\x8d\x69\xe3\xe3\xe0\x23\xff\x3f\x4e\xde\xf6\xe4\xf0\x3d\xff\x10\x7d\x1b\x02\xd4\x44\xf1\x0f\x12\x37\x14\x12\xba\x49\x98\xb2\x66\x91\xb5\x5b\x26\xb2\x76\x3b\x40\x87\x37\xf3\xeb\x76\xc2\xef\xb6\xc2\x47\x3b\x59\xfc\x29\x2f\xf4\x8e\xd8\x2f\x17\x24\x0e\x49\x61\xbe\x8b\x1c\x95\x22\xff\xe0\x20\x62\x59\x6a\x87\xcb\x08\xda\xfc\xcc\x10\x60\x36\x94\x25\x58\xdc\x92\xc7\x9e\xd1\xaa\xb4\x17\x98\x73\x4b\x9b\x06\xf0\x77\xfc\x79\x9d\xcc\xd4\xd2\xe9\xe1\x61\x26\x7a\x84\xe1\x28\xc6\x0d\x5d\x42\x88\xa4\x04\x78\xb7\x10\x00\xb5\x15\xac\x6c\x64\x34\x91\xc5\x05\x98\x17\xb5\x24\x65\xde\xbf\x6b\x9e\x99\x0a\x4c\x08\x40\xdb\x11\x22\x63\x94\xab\x30\xc7\x9b\x25\x03\x06\x87\x73\xc2\xc0\xb3\x00\x88\xa9\x0f\x70\x5d\xae\x6e\x63\xac\x42\x21\xd4\x09\xa0\x55\x69\x9d\x00\x4e\xad\x4a\x0b\xf8\x13\x5e\xcd\xf4\x2c\x29\x30\xf1\x2f\x31\xaf\x2c\xfd\x16\xfe\x0f\xfe\x9d\x7f\xef\xc8\x3a\x7c\x3f\x5e\xbb\x6e\xc4\xff\x75\xda\x17\xcd\x08\x91\x3d\x94\xdf\x4b\x8f\x72\x50\xae\x37\x9b\x00\x0a\x01\x4e\x86\xb8\x21\x39\xc8\x18\x00\x2c\xa3\x1c\xda\x74\x2a\x9a\x71\x43\x96\x25\x4e\xa1\x52\xc4\x29\x14\x71\xd1\xa1\xb2\x64\x0b\xac\xcc\xf9\x23\x85\x7a\xd0\x00\x46\x45\x09\x63\x88\x4d\xc1\x1a\x45\x24\x83\x1f\x1b\x7d\x7e\x5f\x4d\xcd\xbe\xe7\x47\xe7\xc7\x9e\xdf\x53\x53\xb3\xe7\xf9\xb1\x79\x18\xb1\xaf\x3b\xdc\xd6\x76\x78\x9d\x7d\xe9\x4d\xfb\xda\x43\xed\xed\x87\xd6\xda\xc9\xbf\xb3\xed\x77\xbe\x31\xb9\xf5\x8d\x93\x1d\xec\xb7\xbe\xc5\xb6\x9f\x78\x63\xeb\xe4\x1b\x27\xdb\xd9\x77\xfc\x59\x3d\xe7\xa7\xca\xd9\xa5\x8b\xa4\x72\xe6\xc2\x9a\xde\xf3\xd3\x15\x84\xe9\x60\x2b\xa6\xcf\x23\x40\x3b\x11\x22\xfd\xec\x65\x94\x8a\xd2\xbc\xc9\xc9\xd1\x11\x88\xd0\x00\x34\x8c\x11\x0a\xac\x3e\x8d\x46\xa3\xa6\x9d\x53\xc2\x38\x95\x0e\x65\x24\x23\x53\xe8\x14\x56\xc6\xa4\x70\x28\x69\x0b\x1d\xf8\x19\xdf\x7c\x5b\x36\xcc\x03\x94\xcc\x3c\x3e\xbc\x30\xfc\xd8\x74\x31\x2c\x40\x56\xdb\x5c\xfd\x02\xfc\x5b\x48\xd5\x96\x33\xdd\xd8\xe6\xff\xfe\xd4\xab\xc7\xda\x42\xf8\x93\x30\x1b\xd2\x7e\xec\x95\x29\xe1\x97\xee\x7b\xb6\x54\x85\x30\x3f\xa2\x63\xbe\x19\x21\xb2\x81\xf2\xc7\x66\x7a\x4d\x6a\x44\xf7\xee\x00\x9a\x2c\x97\x7a\x53\xa0\x87\x05\x71\xb0\x12\x32\x15\x89\x99\xc2\x84\x32\x94\x30\xcb\x1a\x1c\x85\x76\xab\xb4\x4e\xad\x14\x34\x13\x04\x2a\xc9\xb4\x2a\x2d\x7e\xa9\x71\xaa\x4e\x9f\xdb\x7f\x6a\xa0\xff\xe4\xfa\x5c\x83\x6f\xa6\x89\x6f\x07\x5b\xfd\x94\xcf\x54\xb6\xe7\xd5\x1d\x3b\x5e\xdb\x5b\x66\xf4\x6d\xad\x83\x3c\xbe\xe3\x48\xda\xb6\x87\xde\xda\x3a\xbc\xe9\x6b\x77\x77\x76\xdd\xfd\xe6\xa6\xe1\xa9\xb7\x1e\x9a\x4d\x3b\x32\x9c\x7b\xea\x8b\x6f\xf4\x0f\xed\xfa\xf0\xf9\xf1\xf1\xe7\x3f\xdc\x35\xd4\xff\xc6\x17\x4f\xe5\x0e\x23\x8c\x8e\x5c\xfb\x98\x1c\x95\xf8\x4a\x9e\xf3\x46\xd8\x6d\x86\x18\x82\xb8\x50\x1a\xe4\x26\x6a\x45\xf1\x88\xe3\x98\x3e\x19\xc1\x0c\xe3\xf0\xb1\xc2\xd9\xd0\x87\x01\xc0\x16\x34\xb6\x26\x0b\x62\xba\xc5\x47\x6f\x43\x37\xbb\x29\xf6\xd6\xb5\x7c\x4e\x05\x82\x66\xa4\x40\x28\xdf\x95\x6d\x41\x46\x64\xb4\x18\x8d\x2a\xb9\x30\x9a\x0a\x29\xa0\x39\x10\x3d\x2a\x49\x62\xce\xbc\x12\x42\x1d\x92\x70\x3d\x33\x09\xf3\x93\x50\xb5\x29\x25\x3a\x39\x42\x11\x97\x93\x60\xf1\x5a\x53\x64\xf9\x5f\xd8\x3a\x76\xdf\x50\xae\xca\x52\xd6\x3b\x53\x33\xf5\x8c\x2b\xcd\xbf\x98\x5a\xb3\xad\xd3\xbd\xbe\xb1\x28\x36\xd6\xd3\xb8\xde\xdd\x35\x57\x93\x4a\x3c\x4b\xdf\x4f\x2f\xb3\xa5\xb0\xcc\xba\x88\xd0\x84\x9c\x0a\x73\xe7\x40\xcf\xbd\x5f\x1b\x55\xd5\x9d\xdc\x3b\xd1\x94\x35\xbc\xe6\x0b\xfe\x6f\x36\xdf\xbf\xa3\x21\xad\xa0\xd1\x0a\xbf\xca\x69\x2f\x36\x74\x1c\x79\xa6\x9d\xee\xeb\x5f\xe3\xa7\x49\x0b\xfb\x36\x4a\x43\x5e\xe4\xf3\xd6\x86\x02\xc7\xe4\xc4\x63\x96\xc3\xf5\x72\x60\x10\xc7\x32\xdc\x10\xd5\xff\x65\x80\x10\xdd\x8a\xa9\x94\x69\x13\x56\x5a\x36\xa6\x44\x3b\xa5\xc5\x4e\x47\x66\x86\xd6\x9b\xee\x4d\x4c\x50\x29\x51\x1a\xa4\x85\xc8\x44\x95\x47\x75\x5d\xf4\x87\x42\xa7\x28\x61\x94\x2e\x97\x29\x30\x9d\x14\x2b\x13\x6c\x38\xf1\x40\xef\xb9\x2d\xc5\xc9\xce\x06\x6b\xd9\x44\x43\x66\xd5\x8e\x27\xd7\xe7\xf4\xf7\xb4\xa4\x2d\x42\xe9\xd6\xf3\x9d\x27\x1e\x00\x4b\xc3\x84\xb7\x7c\x73\x53\x96\xa6\xa6\x7b\xc8\x59\xbf\xbb\xd7\x6e\x5b\xb3\xbd\xf6\x2e\xf6\xed\xfc\xe1\x93\x9d\xce\xf5\xcd\xa5\x6a\x65\xe5\xc0\x8e\xba\xe1\x87\xb7\x14\x44\xa7\xd9\xb4\x3c\x61\x5f\x6c\x3b\x37\x53\xe9\x9f\xc5\x27\x0f\x16\x0e\xfb\x32\x1d\x9d\xd3\xa5\x4b\xdf\x36\x16\x99\xd5\x59\x6d\x0b\xbe\xda\xb9\x8e\x1c\x18\x11\xe5\xdb\x5e\x7e\x90\x1c\x25\x1e\x14\x2a\xe8\x39\x21\x2c\x66\x02\x24\x76\x16\x61\x75\x66\x43\x43\x4c\x8c\x78\x36\x3a\x40\xa1\x53\x80\x03\x34\x6e\x12\xb2\x87\x37\xed\xe0\x8d\x7b\x60\xb3\x35\x87\x78\xae\xfe\x9a\xaf\x86\x57\x49\xda\xd2\x77\x4e\x9d\x12\x71\x58\x7b\xae\x5d\x21\x83\x5c\x12\xb2\xa1\x1a\x94\xe7\xb5\xc9\x01\x50\x56\x08\x26\x80\xeb\x11\x01\x06\x08\x25\x92\x05\x82\x60\x28\x60\x54\xb1\xe1\x86\x8a\xf2\x7c\x57\x7a\x9a\x41\xcf\x0a\x82\x84\xb0\xbc\x5c\xd4\x32\x27\x5b\x0e\xad\x0e\x5a\x57\x9c\x25\x8c\xdb\x6d\x65\x98\x65\x6c\xa0\x89\xa2\x50\xe4\xde\xb1\x23\x35\x6d\x8f\xf8\x92\x8b\xce\xb4\x66\xf5\xd4\x5a\xc1\xda\x34\xe6\x19\x79\x6a\xbe\x0c\xa0\x6a\xdf\xcb\xb3\xb3\xaf\xec\xaf\x06\x70\x0d\x1c\x69\xc5\xd9\xed\x5e\x63\x0c\x38\x06\x4f\xf4\xf6\xde\x39\x60\x07\x70\x6f\x38\xd4\xd4\x73\xd7\x48\x3e\xb0\x21\x55\xa3\x95\xe9\x90\x99\xb1\x26\x21\x53\x90\xc2\xb2\xb3\xca\xf3\x4c\x8a\xe4\xa1\x63\x17\x47\xd2\x26\xdf\x3c\xd9\xd6\x76\xf2\xcd\xc9\xb4\xee\x87\xf7\x74\x47\x85\xc5\x38\x2a\xda\xfd\xda\xae\xfb\x67\x2b\x2b\xb7\x5d\xe8\x4a\xab\x3d\xb5\xad\x39\x84\x94\xcf\x3d\xd0\x41\xfb\xf5\xfe\x6b\x57\x48\x27\x69\x44\x5e\xd4\xe4\xf5\xa5\x02\x92\x41\x3d\x62\x39\x19\xc7\xca\xa6\x02\x2c\xb2\x48\x26\x07\x84\x65\x28\x98\xd5\xcd\xe1\x0b\x60\x8a\x6d\x4c\x83\x38\xb9\x72\xac\x99\x19\xea\xd8\xe8\xa8\xb0\x10\xe4\x05\x2f\x9d\x5c\x2b\x20\x12\xab\x00\x77\x37\x0f\x26\x72\x38\x54\x78\xae\x7c\xdf\xc6\xe2\x92\xe1\xfd\x15\xde\x3d\x1b\xbd\xb0\x9d\x74\x1f\x79\xa6\xa3\xf7\xe2\xd1\x76\x43\x79\xaf\x2b\xb7\xbd\x58\xd7\xb0\xef\xa9\xde\x8e\x47\xf7\xb5\xb0\xdb\x71\xf1\xc0\x82\xa7\x7c\xc7\xba\xfc\xfc\xb5\x8b\x65\x3f\x86\xff\x56\x58\x5b\xbc\x05\x6d\x8e\xb8\xe4\x82\xae\x82\x35\xbb\x5b\x0c\xfa\xc6\xc5\x0e\x57\x67\xa9\x25\x22\x2a\xab\xd0\x67\x6d\x9f\xab\x4b\x37\x36\xcd\x35\xb9\x9a\xf3\xe2\x35\xf6\x46\x57\xbe\x2f\x4b\xb9\x11\x01\x5a\xe0\x77\x53\x2e\xdb\x5c\x64\xf0\xa6\x03\x8d\x9d\x8d\xd3\x88\xd9\x92\xa0\x47\xd8\x35\x32\xa8\x9f\x2a\x17\xe5\xe6\x58\x19\xe1\x95\x54\x10\xc9\xa8\x52\x18\x4d\x20\x43\x9d\x24\x31\x9b\x4c\x56\xc6\x24\xbc\x1a\x68\x9d\x24\x8b\x2f\x2e\x18\xaa\xcf\x84\xbc\xb6\x61\xfb\xa3\xd6\x35\xd5\x96\x54\x7b\x49\x5a\x65\x62\x4e\xba\x32\x39\xa7\x58\x7b\xb2\xf1\xce\x4d\x25\x60\x69\x9d\xad\x86\x9d\x4b\xbf\x65\x2f\x37\xf1\xf2\xc2\x6d\x3b\x0f\xfb\x8a\xda\xf3\xb5\x61\xfa\xb0\xb8\xac\x4a\x57\x46\x6b\x5d\x71\x6c\x81\x2a\xd7\xe1\x4e\x4e\x34\x26\x29\x65\xc9\xd1\xf6\x96\x6d\x6d\x95\x27\xee\x3a\x5d\x03\x4f\x8f\x08\x63\xf6\x1a\x3f\x48\x54\xa4\x09\x69\xd0\x85\x97\x62\x03\x36\xb4\x48\x6a\x43\x0b\x32\x95\x38\x7c\x88\x61\xcc\xd2\xda\x90\x36\xd8\x44\x56\xdc\x1f\xa5\x00\xbe\xeb\x6f\x49\xbc\x55\x0d\xb7\x2c\x1c\xe0\x3c\xd1\x20\x8d\xca\xa0\xd4\x71\xb2\x55\x9c\x27\x2b\xdd\x55\x66\x99\xf3\x2b\x07\x5f\xff\x5f\x78\x31\xbd\x7a\xa2\xae\x72\xa2\xbd\x30\x66\x91\x78\xbe\xb9\x61\x1e\x7e\xfa\xdd\xab\xaf\x90\x1a\xdf\x7c\x7b\x96\xbe\xa4\xdb\xe1\x27\x34\x04\x1d\x31\xe8\xed\x6b\x57\x48\x04\xcd\xf5\x94\x8e\x72\x50\xab\xef\x72\x34\x85\xcc\x61\x4a\x83\x10\x64\xd4\xce\x0d\xe2\x28\x6c\x88\x62\xe1\xae\xbb\x6e\x5f\x79\xbd\xc7\x1b\x62\x50\x19\x54\x66\x3d\x95\x51\x03\x16\x9f\x20\x98\x8c\xd5\xae\x70\x29\x04\x41\x3e\x24\x22\x67\xe3\xa3\x53\x53\x8f\x8c\xd8\x72\x87\x1f\x99\x9a\x7a\x74\x24\xc7\x6f\xc5\x7d\x29\xd5\xb3\xdd\x5d\xdb\xaa\x52\x70\x9f\xff\xa9\xd4\xea\x6d\x5d\x5d\xb3\x55\x29\xd8\x3b\xff\x93\xa7\x36\x6c\x78\xea\x27\xf3\x90\x33\xff\xd3\xa7\x86\x86\x9e\xfa\xe9\xfc\xc6\xc5\xde\x8b\x82\x98\x72\xb1\xf7\x83\x85\x9e\xe7\x8e\xb4\xb5\x1d\x79\xae\x47\xdc\xd7\xbe\x7f\xed\x0a\x31\x51\xbe\x01\xb3\xd7\x18\x0a\xc0\x84\x89\xfe\x00\xc9\x7e\x66\x09\xc6\x73\xd8\x70\x83\xca\x60\xa0\x12\x9f\x52\xab\xe4\x56\x9f\x59\x8c\xf6\xfb\xf0\xcf\x00\xba\xa2\xd6\xec\xcc\xa6\xf4\xf8\xbc\x0d\x79\xb5\xdb\x3a\xac\x80\xf9\x7f\x22\x9e\xa5\x8f\xbc\xad\x39\x31\xca\xb0\xee\x04\x45\x5a\xdd\x62\x0f\xfe\x02\x7d\x6e\xf1\xb5\xff\x22\x1d\xec\x1f\x51\x06\x3c\x26\x7a\xb5\xa2\xc2\x01\xb0\x09\x63\x06\x70\x7d\x0a\xa0\x9a\x44\x6f\xf4\xea\x5f\xa0\x4e\xf2\xec\xa9\x03\x4d\xca\x15\x0d\x93\x44\x94\x47\x25\x6f\x5e\xf0\xaa\xfd\xfa\xab\x91\xb7\x2c\x1b\x75\xcb\xb2\xd1\xb7\x2c\x1b\x73\xcb\xb2\xb1\xb7\x2c\xab\xbe\x65\x59\xcd\x2d\xcb\xc6\xdf\xb2\xac\xd0\xab\xb1\xcb\x21\xe0\x2b\xae\x79\xe3\x82\x3f\x23\x64\x16\xca\xd1\x7d\xd5\x46\x24\x8f\x1f\xfd\xf7\xb2\x31\xde\xa8\x8e\x66\x65\xf1\x16\x87\x0e\x4c\x41\x6b\x24\xdd\x38\x61\x35\xe1\x05\x23\xfb\xfa\x21\x78\xaa\x38\x42\x9b\x55\x68\x8a\x48\x0b\x67\xa3\x2d\xb1\xde\xf5\xe5\xd9\xd1\x30\x13\x96\x68\xc8\x49\x8d\x8c\x89\x62\xc2\xd3\x22\x5d\x2d\xc5\x39\xca\x4f\xa3\x48\xca\xa3\xba\x5a\x8f\x81\xe0\x7e\x56\x6e\x6f\x5a\x67\x59\x32\xa4\x16\xdb\x52\x19\x66\x98\xc8\xf4\x65\x6b\xf2\xf0\xa3\x2e\x61\x7e\xbc\xc1\x1f\x24\x71\xec\xdb\xa8\x16\x65\x79\xcd\xb5\x80\x98\x42\x3a\x2f\x8d\x06\x8c\x6b\xe8\xb1\x80\xfb\x83\x62\x29\x6a\xa8\xae\xd4\x66\xa4\x13\xe1\xf8\x95\xb0\x59\xe2\x8e\x1e\x8c\x14\xbd\xc9\x86\xb9\xea\x2c\x50\x6b\x08\x29\x3d\x50\xd1\x72\x62\xb4\xb0\x6c\xeb\xbd\xed\xc7\x8e\x0d\xbf\x70\xd0\x57\x3d\x73\x57\xfd\x86\xac\xae\xca\xcc\xb4\xdc\xa2\xe4\xf2\xb8\x2c\xad\x32\x39\xa7\x30\xa5\x66\xe4\xd5\x3b\xdb\x9c\x03\x07\x9b\x8a\xc6\x7c\x96\x96\x3b\x5e\x1e\xa9\x3b\x5d\xc8\x3a\x63\x55\x89\x05\x6b\x8a\x2a\xfb\xf2\x35\xa3\x19\x5d\x47\x07\xda\x17\xda\xf3\xa2\x35\x61\x71\xe6\xf2\x3c\xa3\xaf\x3c\x3f\xd6\xa3\xca\xc8\xb2\xa7\x26\xe8\xe3\x15\x32\x85\xba\x7c\xec\xfe\xad\x6d\x07\x37\x56\xc7\x2a\xf2\x6a\x7b\xf3\x7b\xf6\xb5\x99\xe2\x54\x74\x4d\xac\xbf\xf6\x17\xf2\x0c\xf1\x20\x0d\x9a\xf0\x5d\x36\xb6\xac\xf1\x86\x0a\x22\x41\x08\x88\xac\x32\xd2\x17\x41\x3c\xe8\x11\x2f\xc7\xb1\x0c\x46\x88\x82\x62\xa4\x75\x2a\xc8\xe7\x36\xdc\x90\xe8\x4d\x5a\x75\x89\x10\xf3\xca\x75\xdc\xe3\x0d\x55\x28\x14\x4a\x83\x2e\x5a\x26\x4b\xb4\x80\x4e\xa1\x56\x6b\x02\xa3\x69\x34\x49\x70\x28\x2d\xe9\x7d\x1e\x17\xd4\x24\xd8\x55\xf1\x86\x6a\xe3\xe2\x26\xe0\xcb\x17\x1e\x65\x96\x98\xf7\xfd\x9e\xce\x75\x10\xc6\xf5\x2a\xc3\xee\xbd\x13\x7f\x7d\x29\x9b\x79\x7f\x14\x61\xf4\x06\x3f\x40\x1c\xf4\x4c\xc8\x12\x46\x4c\x2f\xa7\x0e\xb3\x80\xdc\xe2\x08\xfa\xc1\x6c\xd2\x96\x9d\x61\x36\x29\xf5\xc2\xe4\x5a\x89\x31\x93\x0c\x80\xcb\x18\x33\x87\x42\xad\x76\x8b\x69\xf1\xec\x23\x0f\x4e\x6c\x7e\xb1\x64\x11\x00\xca\xe7\x9f\x18\x9a\x7d\x7a\xc2\xb1\xa8\xf5\xed\xe8\xe9\xdc\xd1\x9c\x81\x21\xfb\x89\x6d\x6b\x76\x36\xe8\xe0\xda\xf8\xd7\xce\x74\xb7\x36\xf9\x7f\xc4\xfc\x2d\x64\xeb\x4b\x07\x6a\x06\x1e\xfe\xee\xd6\xce\x67\x0f\xb7\xd5\xcc\xde\x5d\xc7\xbf\xb1\x66\x1c\xea\xb7\xdf\xdf\x2a\xf4\xf5\x21\x7e\x8a\x72\x87\x3a\x29\x6f\x45\x1a\x86\x1a\x04\x18\x66\xe9\xf1\xc2\x00\x42\x0e\xdc\x00\x88\xd2\x84\x3a\xc1\x49\x24\x61\x35\x98\x25\x56\x38\x84\x53\x18\x59\x24\x43\x67\x94\x8b\x46\x2a\x0b\xe2\x16\x9e\x58\xff\xf0\xb6\x0a\x66\x16\x5b\x3b\xe6\xeb\xd6\x1d\xef\xcd\x06\x28\xdc\x7c\x61\x9d\x77\x6b\x5b\x0e\x80\xae\xa0\x56\x9f\x1f\x67\x33\x27\x42\x6a\xbe\xcf\x32\xff\xd5\xa3\xf5\x00\x65\xbb\xbe\x42\x9a\x9c\x1b\xef\xea\xf3\x8e\xfb\xcc\xf5\x3b\x1f\x6e\xcf\xec\xbe\x6b\x73\x5d\x4c\x58\xb2\xbd\xd1\x63\x6d\xab\x70\xc6\x34\x84\xeb\xac\x05\x3a\x6d\x76\xb2\x42\xa6\xea\x3e\xf4\xc2\xd6\xcc\x89\xb7\xcf\xae\x41\x18\xcd\x5e\xbb\x42\x0e\x10\x0f\x52\xa3\x2c\xca\x68\x1d\x20\x39\xb5\x04\x9d\x31\x36\x68\x30\x1b\xcc\x19\x74\x05\x83\x76\x85\xd3\xcd\x59\xc2\x38\xb4\x81\x7c\x83\xc1\xb8\x2b\x72\x80\x7f\x67\x6a\x0e\x83\x77\xfb\x0b\x33\x33\x2f\xec\xf4\x02\x94\xed\xbc\xbc\x15\x3b\x96\xc6\xc1\xda\x7b\xb8\x67\xcd\xe1\x5e\x6b\x6e\xdf\xe1\xee\xae\xc3\xbd\x39\xc0\xbc\x5f\xfd\xdb\x93\xda\xe1\xaf\x9e\x59\xd3\x7d\xf6\x9d\x49\xed\xc4\x57\x4f\x77\xf8\xdf\x0b\x7a\xdb\xda\xcf\xcf\x55\x57\xcf\x9d\x6f\xa7\x73\xfa\xb5\x6b\x1f\x93\x0c\xe2\x41\x4a\xca\x0c\x1f\x9c\xce\xa2\xdf\x17\xd1\x13\x7d\x79\x62\xd2\x39\x29\xb6\x97\x11\x8d\xa4\xc2\x9c\x34\x1a\x29\xa3\x0e\xc9\xe0\x77\x00\x0c\xf6\x18\x2a\x93\xe3\xad\x6b\xac\xa7\x4f\x60\xfe\x6e\x66\x92\xf9\x81\x7f\xed\xdc\x70\x74\x68\x4f\x7c\x34\x7e\xf0\x59\xfc\xe8\xb8\xc4\x5b\x94\x4e\x3c\x28\x35\xc8\xf5\x6d\x09\x46\x71\xd8\xa8\x73\x3b\x15\xa5\x9a\x35\x06\x56\xd8\x30\x14\x81\x13\xd6\x48\xa3\xcc\x96\x15\x11\x70\x1a\x6a\x37\x55\xf5\x1c\xec\x34\x43\xb9\xfb\x90\x26\x23\x25\xda\x39\x7d\x69\x71\xf8\xfc\x68\x1e\x10\x8f\x7f\x4b\xcb\xde\x35\x39\x2d\x07\x9e\xec\x3c\x01\xd1\x07\x0a\xf7\x1c\xb9\xab\x69\xcb\xb7\x1f\x5c\x5f\x3c\xf3\xd4\x38\xbe\x5b\x90\xed\xef\xe5\xd3\x49\x2f\x29\x44\x66\x54\x88\xb2\xbd\x99\x61\x80\x51\xa6\x49\x85\x84\x05\x5a\x1f\x4a\x1d\x24\x81\xd9\x26\x9c\xb2\xb8\xc1\xed\x34\x67\x24\x25\x08\x52\x1e\x2b\xed\x4d\x9a\x48\x86\x66\x23\x16\x01\x16\x22\xba\x5c\xa6\xd0\x29\x4b\x18\xa7\x95\xa5\x2c\x6e\x38\x6f\xfa\xe1\x8d\xd9\x09\x05\x3d\xa5\xa5\xf6\x8a\x4c\x25\xa4\xd6\x4c\xb7\xc5\xd9\xea\x1d\x9e\xc1\xa6\x22\x53\xac\x7d\xfc\x89\xe9\xf9\xf9\xb6\x05\x9f\x1e\xc2\x34\x06\x47\x85\x45\x95\xac\x0c\x81\x98\xf0\x91\xfb\xbf\x3e\xda\xf0\xc0\xc9\xed\x96\x6e\xf3\xc4\xe2\x6e\x4f\xd3\xfd\x7b\xd6\x44\x30\xe1\x19\x8d\xc5\x46\x80\xec\xa6\xf1\xc5\x7d\x25\x1b\xbf\xfe\xc0\x58\x18\x9f\x87\xed\xe1\x7d\xfb\xee\xf7\x59\x36\x6c\xe8\xad\x34\x41\x6c\xaa\x49\x85\x00\x1d\xe1\xab\xc8\x10\xf1\x20\x1d\x2a\xf3\x86\xa4\xab\x62\x80\xda\x29\x7c\x97\xf5\x2d\x6b\xbc\x91\x84\xc1\xcc\xb2\x46\x94\xe8\x8d\xa4\xf6\x64\xe9\x57\x41\xf0\x09\x47\x08\xe9\x90\x4e\x13\x1f\x2f\xf6\x7d\x09\xe3\x34\x1a\x4d\x0e\x31\xd0\x4f\x34\x67\x38\x03\xe6\x0c\xfc\xf8\xda\x3d\x4d\x5a\xf0\xd8\xf6\xe7\xe4\xe5\x4c\x5c\xdc\x35\xbf\xf9\x91\x31\xc7\x3c\x18\xea\x67\x9a\x88\x67\x29\x21\x7c\xfd\x1d\x4f\x77\x1c\xf4\x2f\x8e\x2f\xdd\xb3\xe5\x7b\x4f\x4e\x84\xf2\x5d\x70\x31\x6c\xe3\xa3\x3f\xda\x0d\xbf\xe7\x55\xc3\xcf\x1f\xee\x0c\x67\x7e\x8b\x80\xe2\xb1\x0f\x12\x0f\xf2\x0a\x1a\x96\x8d\xca\xd8\x08\x18\xc4\x00\x9a\x92\x71\x98\x61\x2c\xd4\x9c\x25\x62\x42\x6c\x44\x98\x1b\x5e\xe4\xcd\x30\xc7\x1b\x54\x66\xb9\x20\x9e\x71\x58\x26\x25\xbe\x71\x2a\x69\xc3\x1c\xf6\x12\x42\xe7\x8a\x3a\x46\x15\x1b\x49\x56\xe4\x72\x72\xe6\xc5\xb8\xc1\x63\x2b\x04\x2e\x32\xde\xe4\x32\xb8\xab\x33\xa2\x60\x01\xa2\x32\xaa\xdc\x06\xb7\x29\x3e\x92\x83\xa2\xdc\x3d\x0e\x47\x68\x42\x66\xd9\x1a\x8f\xbd\xb9\xc8\x12\x19\x99\x59\xd4\x6c\xf7\xac\x29\xcb\x4c\x08\x75\x38\x88\xe7\x08\x7f\xe5\x2e\xeb\xc8\x50\x5f\x95\xb9\x66\xe6\x54\x35\xe8\xf9\x5f\x54\x9f\x9a\xa9\x31\x57\xf5\x0d\x8d\x58\xef\x82\xd8\x23\xb3\xfc\xff\xbd\xbf\x70\xef\xce\xc9\x76\x9b\xae\xb8\xd3\x6e\xef\x2c\xd6\xd9\xda\x27\x77\xee\x2d\xbc\x1f\x12\x68\xe2\x6b\xf4\xd4\xb5\x2b\xe4\x2c\xfb\xaf\x28\x07\x79\xe1\xb4\x78\xfe\x87\xe5\x00\xe6\x9c\x49\x18\x61\xe1\x08\x89\xa4\xdf\x80\xc5\x49\x80\xc4\x54\x5c\x82\xc4\x94\xc2\x02\xa6\x2e\x8c\xa0\x82\x95\xbb\x72\x13\x91\xa4\x9f\x1b\xef\xb2\x5f\x77\x57\xcc\x6d\xd5\xa5\xbe\xad\xba\x34\xb7\x55\x57\xe2\x6d\xd5\x95\x7c\x5b\x75\x65\xdd\x46\x5d\x5e\x03\xc2\x1c\xcb\x61\x76\x0a\xb1\x08\x31\xec\x67\xdc\x17\x90\xa0\xbc\xa1\x59\xaa\x1c\x83\xca\x10\x43\x8f\x59\x8e\x93\x05\x76\x60\x85\x3b\xb0\xeb\x50\xa5\xdc\x19\x00\xda\xb9\xa8\xb1\x47\x13\xd0\x58\x54\xe4\xac\xa9\xc3\x02\xee\x4d\x0f\x88\x69\x37\x16\x33\x1a\xa7\x7d\xbe\xa9\x3a\x03\x6c\x7e\xe5\x68\x03\x40\x66\xe3\xd6\xaa\xf6\x1d\xcd\xa6\xe6\x46\xff\x96\x82\x91\x93\x1d\xaa\x9c\x26\x4f\x56\x45\x76\x1c\x7e\x22\x52\x89\x7f\x38\xfa\xf4\x5c\x49\xc5\xc2\x93\x1b\xa0\x0e\xf3\x2f\x36\xec\xed\xb3\x5b\x7b\xf6\xb5\xfe\x24\xb4\x71\xcf\x97\x26\x94\xd5\xdb\x7b\xf3\xbc\x5b\x4e\xb7\xf0\x4f\x93\x78\x18\x6b\x3f\xb2\xa1\x38\x14\xba\x3d\x13\x2d\x39\xba\xe2\x76\x1b\xdd\xb7\x0d\x08\x91\x17\xd8\xff\x85\x32\xd1\x3e\x6f\x54\xaa\x1c\x03\x32\xa7\xa8\x62\x42\x58\x1c\x4c\x99\x1d\x23\xf2\x51\x08\x27\x4f\xc0\xa8\x2a\x89\xe0\x2b\xae\xe4\x2e\x5f\x89\xfc\x8c\x32\x37\xbb\x9d\x8a\x9f\x6a\xb5\x41\x94\x10\x4a\x18\x8d\x98\xab\x59\x0c\xa2\x11\xf4\x38\x2b\x23\x13\xc5\x51\xb7\x2b\x05\x6b\x94\x1a\x37\xe3\x53\x3b\x8a\x7d\xd6\x44\x47\xbc\x3a\x22\x35\x26\xc5\x66\x4a\x09\xe7\x3f\x5e\xe0\x3f\x0a\x4f\x31\xe5\xa6\x28\x53\x22\x34\x09\xf6\x24\xab\xaf\xd8\xa1\x7e\xcd\x60\x24\x3f\xc9\xeb\x2c\x4a\x03\x08\x8b\x5c\x2f\x93\x43\x9c\x39\x2f\xd1\x7f\xd6\xff\x2c\xee\xc5\xe3\x09\x79\xe6\x78\x90\xcb\xd6\x47\x86\x01\xa4\x15\x75\xe6\xf1\x5d\xb3\xb3\xa2\xad\x26\xfd\xda\x15\xf2\x24\xf1\xa0\x74\x54\x8d\x5c\x5e\x47\x34\x70\x32\xa8\x47\x32\xc4\x21\x19\x37\x45\x85\x2d\xe9\x38\x93\x03\xc7\x05\x6d\x7e\x06\x8d\x39\x56\x11\x9f\x61\x8e\x0e\x91\x25\x5b\x40\x77\xd3\x2d\x43\xe7\xd4\x32\x46\x6c\xd2\x06\x77\x1a\xb2\x62\xa7\x21\x4f\x1e\x33\x9a\x43\xe3\xcd\xa5\x5d\xf9\x8e\xc0\x96\xe1\xc8\xef\x2a\xc9\x8c\x0b\x33\x1b\xb7\x93\x03\x2f\x40\xae\xd9\x7f\xd8\x9c\x0b\x6c\x44\x9c\x21\x4f\x6f\x70\x9b\x13\xa2\x64\x30\x0f\x51\x19\xd5\xf9\xba\x3c\x43\x5c\x04\xcb\xbc\x3f\xcd\x5f\x3d\x9e\x37\xb5\x79\x43\x7d\x56\x60\xdf\xc8\xaa\xdf\xb0\x79\x2a\xef\x38\xb0\xd3\xa3\xfe\xf3\x07\x00\xef\xde\xcd\xf3\x07\x8c\x5d\x5d\x4d\xc5\x7a\x6d\x41\xe3\x9a\xfe\x1c\x88\xe0\xff\x22\x6c\x3e\xfa\xa2\xe6\x4e\xea\xff\x42\xb9\xd7\xfe\x8b\x6c\x65\x2f\x23\x1d\xfa\xa5\x37\x14\x03\x81\x64\x58\x66\x82\x4e\x0d\x84\x4c\x71\x80\x90\xac\x07\xc9\x64\x6a\x11\x07\xc4\x02\xc6\x9a\xe0\xbc\xb8\xe5\x6d\x29\xc1\x49\x72\x1b\xb5\x65\xdd\x4e\x6d\x5e\xdd\xcd\xee\x60\x59\x4d\x10\xa3\x94\x82\x45\xfa\xf2\x30\x85\x42\x99\xa1\x88\xd3\x45\xcb\xb9\x24\x0b\x68\x15\xcb\x39\x6a\x03\x1a\x83\xa0\xfc\x28\x24\x06\x09\x3e\x26\x77\xc4\x35\xfe\xe0\x68\x9e\x63\xf0\x54\x1f\x54\x0c\x95\xa5\xa6\xd7\x4e\x35\x15\x0c\xda\xe7\xf8\xc7\x99\xaf\xb3\xf5\xfe\x2b\xb1\xf1\xd5\x3b\xbf\x30\xd4\x77\x7e\xb2\x14\x06\xc1\xd1\x3d\x5b\x5e\xbf\x7f\x20\x3f\x39\xc6\xef\x62\xeb\x47\x10\xa0\x33\xd7\xae\x90\xf5\xec\xdb\x28\x07\x95\x79\x4b\x10\x66\x08\x83\xc9\x94\x1c\x64\x2c\xc7\xca\xb8\x29\x44\x10\x2b\x23\xcb\xd9\xba\x92\x83\x5c\xd7\x29\xd4\x1c\x94\x83\x72\x0c\x0a\x95\x3e\xd6\xac\x0f\xe1\x12\x03\xee\xf3\xa0\xf9\x60\x99\x9c\x4a\xab\x5a\xc6\x2e\x92\xf5\x21\x35\x3b\x2e\x6e\xd9\xf1\xf2\x8e\x92\x92\x1d\x2f\xef\xd8\x72\x71\x7b\x6d\xc8\x42\x78\x5e\xf7\xde\xce\xc1\x3b\x7b\xb3\x70\xb1\xff\xad\xac\xde\x3b\x07\xbb\xf6\x76\xe7\x85\xc1\x6b\xc3\x5f\xd8\x59\x35\x7a\xf1\x83\x45\x90\x2f\x7e\x70\x71\xb4\x7c\xc7\x73\xe3\x6d\x47\x06\xf2\x7a\xee\x7e\xa5\xbf\x7e\xa4\x77\xe0\x95\xbb\x7b\xed\xeb\x8f\xb4\x0b\x6b\x22\x0d\x21\xf2\x00\x7b\x99\x5a\x46\x3c\x5e\x37\x42\x21\x20\x23\x48\x36\x84\x30\x66\x7b\xe4\xc0\xb2\x6a\x9a\xcb\x1e\xfa\x84\x05\xae\x81\x06\x9d\x0e\x21\x5d\x8e\xce\x6a\xd4\xa3\x74\x94\xae\x35\x29\x32\xb4\xa1\x5c\xbc\x05\x14\x92\xdc\x25\xd3\x2a\xb4\x4c\x24\xab\xd3\x39\xa9\x6b\x4e\x09\x0a\x29\x01\xb3\x09\xff\xf8\x74\xdb\x9c\x4f\xa7\xf3\xcd\xb5\xf1\x7e\x7e\x29\x14\x42\xd4\xa6\x92\xee\xa2\xe4\x38\xbd\x53\xaf\x89\x60\x21\x0a\x3e\x3a\xed\xae\xb7\xc4\xc4\x64\xd5\xb9\xd9\xcb\xfe\x87\xa1\x6e\xfe\x7c\x73\xf3\xf9\xf9\x3a\x60\xeb\xfd\xef\x77\xbc\xf4\xc2\xa3\xdb\xeb\x86\x2b\xb6\xdc\x75\xff\x03\x95\xf8\x8c\xbf\xc0\xbf\x0b\x8a\xd6\xcf\xba\x5c\x53\xeb\x8a\x00\x61\x74\x1c\x21\x72\x4c\xca\x03\xe8\xf6\xe6\x21\x1c\x02\x72\x82\xe5\x82\x72\x4c\x64\x88\x0c\x72\x00\xa0\xf6\x21\x99\x8c\xe9\x63\x81\x61\x34\x4c\x83\x46\xa3\xd1\x69\xd2\xd3\x15\x0a\x45\x86\x56\x11\x1d\xca\x25\x59\x94\x5a\x85\x23\xf8\x1e\x52\x2e\xb2\xe5\xf6\x2f\xc1\xa6\xd9\x75\x03\x07\x9a\xd2\xd3\x9b\x0e\x0c\xfc\x2b\x7f\x6e\x76\x16\xfe\xf7\xba\x9a\xae\x9c\x68\x45\x6e\x57\x15\xa3\xc0\x8f\xf8\x8f\x41\xcd\xb6\x7b\x1a\x1a\xee\x9d\xab\x05\xfc\x9c\xbf\x83\xbd\xec\x4f\xf7\x9f\x87\xc2\xde\x2d\x0e\xc7\x44\x8f\x07\xe8\x1a\xac\x40\x88\x8c\x52\x9c\xbb\xcd\x6b\xc5\xc0\x80\x0a\x30\x83\xeb\x03\x0c\x3d\x2c\x48\x1a\x9f\x9a\xfa\x69\x34\xb8\x41\x50\xf2\x54\xba\x68\x99\x30\x4f\x84\x59\xad\x59\xe6\x45\xd6\x19\x83\x13\xfa\x43\x3e\xd7\x3e\xe2\xd8\x78\x66\x30\x17\xe6\x20\xa5\x6c\xac\xde\x35\x64\x9f\xe3\x9f\x64\x1e\x63\xeb\xfd\xbf\x88\x88\x85\xa2\xc9\x87\x36\xf0\x43\xf0\x50\xdd\x42\xa7\x15\x62\x22\xfd\xa5\xc2\x2c\xa6\xfe\x41\xfe\x11\xea\x1f\x0c\x13\x73\xd8\x31\x64\x56\x90\xa5\xd4\xd4\x3a\xdb\x23\xf5\x94\xe4\x75\xe4\x12\x2c\x4a\x1a\x5e\x23\xfa\x0a\x2f\xcd\xe3\x43\xf3\xfc\xd1\x79\x7e\x2f\x7b\xf9\xd3\x17\x59\xdf\xa7\x2d\xfc\x23\x30\x18\xc8\xfd\x97\x24\xc5\xb1\xe6\x78\xb3\x10\x70\xc0\x12\x60\x69\x92\xe6\x1e\xc4\x30\xea\x60\xf4\x16\x7d\x3f\x45\xb2\x22\x29\x5d\x91\xa1\x8d\x96\x71\x34\xe3\x92\x94\x6f\x49\xa7\x55\x68\x97\xf3\x2f\x92\x44\x7f\x24\x58\x46\x9f\x5d\x2c\x2b\x5b\x7c\x76\x94\x5f\xc7\x6c\x12\xbe\x37\xed\xea\xce\xc9\xe9\xde\xdd\x28\x2c\x58\xc8\x1f\xbf\x6f\xa0\xff\xc2\x84\x87\xbd\xec\x4f\xf3\x9f\x85\xec\xf6\xd9\xea\xaa\xa9\xe6\x2c\xa0\x7b\xff\x20\xff\x08\xe9\xa6\x6d\x8a\x17\xb4\x18\x8a\x16\x69\x45\x32\x19\xdb\x83\xe8\x1c\x27\x58\xf2\x93\x0b\x4d\x52\xab\x45\x5e\x11\x2e\xc9\x62\x70\x30\x74\x26\x30\x8e\x12\x1c\xe3\x56\x6a\x21\x92\xa1\x53\xfc\xe3\xcd\x21\x9b\x97\xfe\x3a\x16\x51\x92\xdf\x60\x4b\x60\xe3\x71\x3f\x8f\x88\xd2\x54\x92\x8b\x5d\xfc\xd1\x61\xde\x03\x83\xfc\x23\xf0\x8e\xe1\xc1\x9f\x43\xc4\x39\x1c\xee\xff\xeb\xc8\xef\x7f\xf3\x2f\x55\xe4\xb7\xa2\xbd\x2e\x0b\x21\xf2\x30\x7b\x19\xa9\x84\x39\xa0\x94\x63\xc4\x42\xbd\x0c\x58\x0c\x34\x39\xa1\x9c\xc3\x84\xa8\x7d\x21\x82\xce\xa3\x81\x06\x55\xac\xd0\x16\x9a\xf7\x3b\x94\x13\x0e\x20\x41\xb3\xa7\xc4\x95\xe0\x10\xa6\x2b\x0d\x2b\xc1\x57\x7c\xdb\x9a\xf9\x0f\x4e\x43\x35\xff\xb3\x63\x00\x3d\xdb\x3a\x01\x1d\xe7\x7f\x06\xd5\xa7\xf1\x25\x7f\x1b\xfd\xfb\x37\xfc\x63\xff\x46\xfc\x20\xfd\xcb\xf4\x1b\xc5\x5c\xeb\x1f\x93\x31\xf6\xed\x80\xdd\xfe\x66\xfc\x1f\x72\xb8\x2e\xd9\x7a\x72\x30\xd9\x7a\x0a\xb9\xb9\xdd\x9e\x13\xf4\xec\x9b\x90\x81\x5c\xe7\x24\x5a\xc5\x06\xe2\xc4\x03\xcd\xc7\x47\x0a\x0b\x47\x4e\xb4\xd6\x1c\x1c\x2e\xc6\x8b\xb8\xed\xf0\xa5\xfe\xd1\x57\x8e\x35\x9b\x6b\x37\x78\xbc\x9b\x1b\x2d\xdd\xa7\xbf\x3a\x36\xf0\x95\x93\xdd\x78\x11\x97\x8c\xdf\xd9\xd4\x76\x66\x6b\x99\x77\xcb\xdd\x6d\xaf\x30\x09\xda\xca\x09\x5f\xdd\x56\x9f\xd1\xdc\xb8\xb5\x7a\xfd\xd9\x51\x77\xee\xc6\xf3\xa3\xc5\xa3\x6d\x25\xb1\x31\x85\x5d\xb3\xb5\x63\x0f\x8e\xe5\x39\x37\x3d\x32\x51\xbf\xd8\x61\x35\x35\x6d\x6b\xea\x9c\xa9\x4e\x1d\x45\x80\x2e\x22\x44\xb4\x81\x1c\x74\x21\x04\x07\xa8\x42\xd5\x94\x2a\x54\x23\x11\x68\x72\x12\x8f\x21\xe8\x14\x0e\x86\xb9\x38\x3f\x0f\xfe\xb9\xf9\x79\x60\x2f\x7f\xda\x42\xbe\x79\xb5\x90\xbd\x7c\xb5\x08\x01\xb2\x21\x44\x8c\x34\x7f\xa0\x89\x66\x36\x20\x3d\x82\x26\xa2\x16\x6d\x79\xc2\x72\xd2\x04\xe8\x29\xb4\x26\x85\x82\x13\x2a\x15\x16\xd0\xca\x6d\x92\x18\xe7\x79\x79\x34\x8e\x48\xb1\xd5\x6f\xac\xc8\xd0\x5b\xca\x73\xb5\xb1\x21\x10\x4b\x51\x14\xf5\xfe\xa7\x5b\x2f\x3d\x73\x6e\xba\x62\xb8\x64\xf8\xf0\xe9\x7b\xca\xf0\xd7\x10\xa0\xc4\x6b\x1f\x93\x37\xd8\xcb\x37\xe7\x22\x55\x07\x11\x93\x29\x12\x17\xa9\xf0\xcc\x9b\x73\x91\x0e\xe8\xe1\xb9\x93\xfe\x77\x12\x4a\x3b\xa7\x7d\xd9\xbe\xb8\x58\x8d\x37\xd9\xd1\x54\x62\x8d\x71\xf9\x7f\x74\x07\xee\xec\x61\xbe\x72\xb5\xd6\x39\xe8\xcb\x8a\x92\xf7\xb3\xe1\xe9\xee\x6a\xfd\x04\xb1\x0b\x73\xe7\x1b\xfc\x63\xe4\x32\x8d\x53\xa2\xfb\x06\x1b\xd8\x37\x84\x63\x82\xae\x29\x0d\x2b\x2c\x6d\xe5\xf2\xbe\x41\x83\xf3\xe8\x6a\xfa\xc6\x3c\xde\x07\xf3\xfb\x43\xb6\x2c\x1d\x13\xb6\x0e\xcc\xd6\x7d\xfa\x32\xef\x81\x7e\x8a\x89\x95\xf2\x3b\x2a\x85\x9d\x23\x06\x18\xcc\x00\x30\x34\x53\x1b\x20\x06\x86\x28\x82\x57\xed\x43\x81\x3e\x55\x22\xa5\x4e\xa9\x0b\xf6\xa9\x68\xfd\x52\x3a\x94\x6a\xb5\x43\xed\x72\x2b\x48\xf8\x7c\xfd\xd9\xb5\xdf\xfa\x17\x0c\xf3\x00\xc7\xce\x76\x5e\x68\xa0\xd9\x63\xcf\xc5\xa5\xfd\x9f\x5f\xc0\x19\x7e\xcb\x73\x5f\x02\x6d\x1c\xfe\x0a\x02\x74\x14\x21\x52\x4d\xf7\x41\x83\x37\x9d\x63\x19\x46\x38\x2e\x70\xc0\xc2\xa1\xa1\x5a\x65\x18\x0a\xa3\x5b\xa1\xb0\x4f\x29\xa5\x8d\x50\xf8\x5b\x02\xdb\x36\xb0\x6d\x5b\x2a\x93\x36\x42\xba\x19\x4a\x79\xb9\x8e\xf3\x8f\xd1\xf3\x55\x41\x33\x2f\xb0\x88\x6d\x95\xcb\xc4\xca\x09\x0e\x58\xf7\x34\x9c\x04\x91\x14\xfe\xd9\x14\x0a\x41\x26\x90\xea\x5f\xee\x34\x05\x2f\x3c\x45\x95\xb4\xad\x3d\x64\xd3\xd2\x60\xe0\x49\xc0\xd6\x7f\xfa\x12\x5f\x08\xfd\xf4\x71\x08\x23\x2b\x42\x64\xef\xcd\xf6\x5e\xc9\x19\x70\xab\xbd\x57\x38\xff\x56\xee\xbd\x81\x93\xcf\x0a\x1f\xfe\x60\xe8\xc2\xb8\xdb\x3d\x7e\x61\x88\x7f\x8d\xbf\x1b\x3e\xfc\x41\xfd\x64\x9d\x4e\x5f\x37\x59\xc7\x5e\xf6\x1f\x81\xe2\xcd\xe7\x7a\x7a\xee\x9b\x2c\x65\xeb\xfd\x47\xfc\x67\xc1\xde\x39\xe3\x2d\xdd\xda\x96\x0b\x08\x31\xe8\x59\x84\x88\x53\xca\x6f\x98\x4a\x5b\x84\x64\x40\x18\x24\x08\x74\x74\x24\x05\x09\x89\x15\x97\x5c\x54\x54\x6a\x4a\x72\x52\x54\x62\x54\x42\xba\x22\x23\x4d\x4e\x17\x5f\x50\xaa\x70\x28\x82\xed\x11\x56\x23\x24\x5f\x58\x7f\x72\x9d\xd5\xba\xee\xe4\x7a\xfe\xcf\x73\x17\xaa\x06\x8b\x12\x93\x8a\x07\x2a\xf1\xde\xb9\x39\xc6\x05\xde\xc9\x7b\xbb\xba\xce\x6d\x2d\x03\xe9\x2c\xc8\xeb\x9e\x2e\x2e\x9a\xec\xb0\x83\x3f\x57\xc2\x39\x7d\x07\x21\xe2\x92\xda\x65\xf6\x1a\x11\x62\xc5\x56\xa1\x60\xa3\x90\xd4\xa6\x40\x7b\xe8\x1c\x5b\x3e\x9b\x1c\x8a\x65\x96\x83\x8a\x15\x27\xd3\xfa\x85\xe5\x63\x89\x71\xdd\xe2\x50\x02\xb4\xff\xda\x15\x52\x41\xf3\xbd\x0a\x32\xa4\x14\xc2\x2f\x07\x19\x20\x90\x21\xea\x3a\x95\x61\x10\x64\x48\xca\x12\x9a\x2c\xcc\x7a\x9a\x96\x3a\x85\xce\x17\x37\x72\x67\xeb\x63\x4d\x0a\x0d\x95\x21\x45\x8c\x3a\x71\x53\x5a\x49\x8a\x8f\x0a\xec\xbc\x44\xa5\x08\x28\x2c\x7f\x93\xd9\xba\xf6\x74\x78\x37\xb5\x15\x67\x28\xc1\xff\x67\x1c\x09\xca\x8c\xe2\xb6\x4d\xde\xf6\x3d\xdd\x36\xd9\x3c\xa9\x5a\xfc\xe2\x44\xeb\xf1\x2d\x6d\xee\xa4\x24\x77\xdb\x96\xe3\xad\x13\x17\x17\x2b\x09\xbc\xdb\x7e\x7c\xc8\x6d\xae\x19\x98\xde\x5d\xda\x37\xdc\x51\xba\x7b\x7a\xa0\xc6\xec\x1e\xba\xa3\x6d\xe3\xa5\x7d\x75\xd6\xf6\xd9\x63\xe7\x9b\xf9\x3f\x36\x9f\x3f\x36\xd3\x9e\x53\xbd\xe7\xd2\x78\x20\xcf\xc0\x00\xcd\x25\x59\x8c\x5e\x0e\x68\x17\x04\x81\x8c\xc0\x20\x05\x56\x08\x72\x85\x5a\xa4\x92\x12\x96\x58\x4a\xd0\x01\x63\x0a\xde\x46\x6f\x90\x12\x95\x24\x0b\xdb\x99\x26\x48\x3d\x95\x82\x56\x31\x5a\xdc\xaa\xd6\xdb\xae\x90\x6a\x10\xd9\x16\x93\x42\xa1\x50\xe9\xa9\x06\x11\x44\x71\xeb\x68\xf8\xa6\x43\xc4\x72\xa4\x10\x95\x84\x6a\x10\xba\x55\x52\xf5\xc8\x80\xb1\xf3\xce\x91\xa1\x63\xed\xfa\xfb\xe7\xe6\xee\x8f\x4a\x77\x37\x8d\x55\x54\x4e\xb4\xe6\xeb\x15\x8b\xb1\xae\x01\x9f\xad\x36\x4f\x1b\x2b\x97\xc7\xa6\xe7\xd5\xda\xec\x0d\x2e\x9d\x4a\x8e\xf3\xc7\xdf\x7b\x76\x7c\xfc\xd9\xf7\xc6\xe7\xfd\x6d\xec\x65\xff\xd0\xc6\xea\x53\x07\xa7\x3b\x73\x73\x3b\xa7\x0f\x9e\xaa\xc6\xed\x17\x4f\xac\x31\x57\xaf\x9f\x98\x75\xf3\x6f\xe6\xcf\x6c\xee\xaf\x36\x9b\xab\xfb\x37\xcf\xe4\xd3\xb8\x3a\x84\x48\x28\xe5\x7d\x49\x42\x0e\x6f\x2e\x4b\x69\xcb\x82\xb9\x87\x25\x04\x9d\xda\xc7\x49\xd2\x03\x42\xf1\x1a\x75\x2c\x8a\x42\x51\x19\xc2\xbe\xa5\xb1\x08\x0b\x5b\x07\x46\x23\x35\x4f\x6a\x15\xd4\x56\xa1\x55\x68\x23\x19\xe6\x1e\x7e\x1b\xff\xee\x7e\x68\x3f\x7e\xae\x6a\xef\x3f\x6d\x86\x67\x96\xfe\x60\xed\xda\xd9\x08\xcd\xfc\x0f\x3a\x8e\xae\x77\xe0\x61\xff\x03\xf8\x48\xee\xd7\xef\x1c\x79\x64\xd2\x03\x9f\xb6\x10\x52\x39\xd3\x96\x03\x78\x0f\x64\x75\x2c\x22\x8c\x0e\x5f\xbb\x42\xca\x39\x05\xca\x42\xe5\x28\xdf\xeb\xcc\x04\x22\xc2\xe8\xf1\x0c\x0b\x48\xcc\x90\x1f\xcc\x69\x9a\x02\x0d\xd6\x6c\x40\x05\xee\xec\x72\x6b\x79\x4a\x72\x78\x28\xca\x82\x2c\x19\x27\x81\x49\x82\x12\x42\x31\xce\x8b\x71\xb9\xdc\x25\x8c\xdb\x11\xc9\xca\x22\x19\x99\xcb\xa5\xa1\x86\xfb\x60\xc0\x89\x95\xc1\xdb\xc6\xbf\xb8\xbd\xbc\x62\xe7\x0b\x93\x93\x2f\xec\xae\x80\xc2\xc5\x97\x76\xdb\x06\x9b\xec\x78\x14\xa7\xe4\x55\x36\x76\x98\x3b\x8e\x0c\x79\xa3\xca\xdf\x1a\x69\x3f\xb4\xce\x06\xb6\xbe\x23\x5d\x9d\x87\xd6\xe6\x82\x7d\xed\x61\xe6\xcf\xf5\x07\x5e\x18\xd5\x6e\x7e\xfd\x8e\x96\x96\x3b\x5e\xdf\xac\x25\x55\xf7\x81\xfc\x3b\x47\xd5\x21\x2a\x63\xb1\x2d\xbf\xd5\x63\x4a\x50\xc8\x22\x7d\xdb\xce\xf7\x76\x8d\x0c\x17\x8f\x9d\x68\xd2\x76\x9c\x9d\x2e\x2f\x9f\x3e\xd7\xae\x6d\xbe\x73\xac\x58\xf4\x2b\xbf\x2a\xc8\xb9\xc4\x83\x62\x91\x16\x59\x51\x89\xb7\x30\xf4\xe6\xb9\xc7\xe3\x96\x73\x8f\x0b\x02\x9d\x0a\x21\x6b\x96\x3e\x5d\xa5\x55\xa5\xc5\xa9\x51\x2c\x52\x6a\xe5\x9c\x94\xf7\x5a\xc5\x71\x01\x19\x09\x14\xda\x80\x78\x64\x08\x7e\xd2\xbe\x0a\x17\x3a\xee\x9b\x29\x87\xd1\x1e\x57\x57\x49\x7a\xd1\xf8\x5d\xad\xfc\xfd\x30\x92\xbf\xa1\x2e\x33\xab\x6e\x83\x8b\xbf\x1f\xb2\x0a\x47\x1b\xb3\x73\x5b\x27\x0a\xf9\x5f\x12\x0f\xa4\x54\x4e\xb6\xac\x9f\x49\x0a\xb1\x96\x77\xd9\x9b\xa7\xeb\x74\xf0\x67\x7e\x46\x63\x6b\x70\xe5\xd5\xe7\x68\x36\xc6\x66\xd7\xb9\xf2\xeb\x2d\x0a\x7a\x4e\x7d\x13\x21\x92\x4c\x3c\xab\x31\xa3\x71\x3e\x71\x13\x54\x28\xa2\x19\x2e\x88\x19\x4d\xf6\xeb\x76\x32\x6b\x98\xf7\x97\xb2\xa5\xbc\x22\xeb\xf9\x6f\x90\x6d\xc4\x43\x65\x6b\x87\x37\x97\x00\x06\xdc\x1a\x88\x46\x8c\xf3\x71\x72\x96\x91\x80\x87\x1a\x46\x98\x91\x71\x1a\x35\x25\x8f\x51\x28\x14\xea\x10\x2e\xde\x22\x0c\xb1\x70\xf6\x48\x92\xb6\x24\x62\xbf\x68\xab\xcc\xd2\x70\x31\x78\xef\x54\xc8\xe4\xd2\xfb\xe3\x21\x70\x92\x8b\xd1\xe5\x5b\x70\x29\xbf\x79\xd8\x3c\x77\xef\x57\xc6\xe0\xe8\x92\x85\x5f\x07\x25\xfc\x37\xe0\x09\xdc\xb4\xee\x8b\xe7\xf6\xd9\x98\x61\xe1\x5d\x14\x08\x91\xe7\xa8\x3f\xfc\x33\xe5\xeb\xb8\xbf\x53\xbe\xfe\x43\xe7\x5c\x17\xff\xde\x29\xe8\xe3\xbf\x7f\x0c\xb8\xde\xb9\x3e\xe0\x8e\xf3\xdf\x85\x75\xa7\xe1\xaf\x7c\xb8\xf0\x87\xb3\x70\x24\x6f\x80\x9f\x0b\x7f\xfe\x3f\xfb\x7f\x28\xb4\xe3\x81\x6b\x7f\x20\xf5\xa4\x11\x55\xfe\x1d\xf2\x75\xea\x6a\xf9\xba\xa2\xac\xc0\xed\xb0\x67\x65\x4a\xf2\x75\x25\x54\x7e\xbe\x7c\x4d\x28\x58\xd6\xb1\x32\x32\x41\xe7\xc4\xbb\x0a\x67\x7b\xf3\xf3\xd7\xce\x15\xe5\xcf\x6d\x28\x85\x1d\x6c\xdb\xbe\x47\xda\x3b\x1e\xdb\xed\xd3\x15\xb6\x58\xf3\xd6\x94\x19\x8c\xe5\x3d\x63\xd3\xf9\xee\xa9\xd1\xb5\x55\x16\x66\x47\xf9\xc8\x9e\xe2\xe2\x9d\x43\x25\xc5\x1b\xb6\x17\x7f\x0f\xaf\x55\x64\xd5\x17\xb8\x9b\x6c\xea\xf8\xbc\x66\x57\xf3\x5c\xa3\x31\xad\x7e\xae\xc3\xea\x2b\xcc\x8a\x8a\xc8\x2c\xed\x74\x17\xf4\x56\x3b\xb4\x51\xd1\x5a\x67\x5d\x7f\xa1\xa7\xab\x20\x49\xe3\x68\x2d\xf4\xb6\x64\x47\x8f\x21\x40\x6f\x20\x44\xa2\x29\xaf\xc2\x6a\x39\x3b\xee\x66\x72\xb6\x42\x38\xd9\x15\xcc\x7d\xdb\xb7\xfb\x1f\x5a\x58\x20\x9e\xab\xef\x30\x7b\x96\x0e\x10\xcf\xd2\x7e\x3a\x47\xbf\x8b\x10\xc5\x6f\x85\x0b\x32\x6f\xa8\x20\x0f\x06\x33\xf8\x0a\xca\x72\x9c\x4f\x92\x23\x62\x82\xfa\x2a\x48\x9b\xb7\x38\x88\xa1\x6f\x6f\xdf\xfe\x0d\xf8\xf2\x05\x3e\x0d\xc7\x3e\x0a\xff\xc9\x47\x13\x0f\x9f\x06\xbf\xf2\xff\xc5\xff\x3e\xad\xbf\x0c\x21\x22\xa3\xbe\xdb\x95\x72\x7c\xdc\x6d\xc9\xf1\x6e\xb7\x28\xc7\xcb\xb6\xf3\x39\x72\x08\x4d\xc8\xae\x1d\xad\xc9\xc2\x46\x5b\x95\x35\x31\x8a\x85\x30\xfa\x2e\xef\xf3\xc7\xeb\xcf\x1c\x99\xed\xb4\x4d\x80\xa5\x76\x60\x72\xbe\x00\x3e\xa0\xcf\x3d\x87\x10\x49\xa0\xef\x95\xe6\x4d\x96\xd3\x79\x5a\x4f\x68\x1f\x31\x18\x4b\x9d\x14\xa3\x50\xb0\x5c\xbc\xc5\x20\x75\x13\x0d\x6d\xc7\x7d\x90\x73\x7a\x9e\xff\x75\x07\xff\x6f\x73\xf7\x3d\xce\x9c\xbf\xfa\x0e\xe3\x5e\xfa\x17\xa6\x65\xe9\xb2\xb0\x30\x97\xfb\xfe\x86\xdc\xeb\x71\x3e\xe9\x6d\x96\x35\xfb\x55\xb9\xd7\xa3\x69\xff\xe3\xa1\xed\x52\x27\x25\xc2\x6f\x57\xd6\xb7\x0a\x4b\xbc\xb2\x2e\x3a\x90\x41\x2c\x71\xf4\x76\xff\xc3\x8b\x4c\x7b\x60\xa3\x00\x34\x8d\x10\xdd\x27\x56\xe7\x00\x5e\xde\x64\xa4\x89\x20\xf1\x78\x92\x6d\xbc\x63\x3b\x5f\x41\x18\xe6\x87\x4b\x59\xcc\x0f\x47\xc4\x3d\xf7\x20\x3f\x40\xea\x38\x84\x12\x91\x09\x39\x84\xfe\xb2\x66\xa7\x6b\xd5\x4a\x39\x2b\x07\x8a\x72\x15\x41\xfa\x09\xd0\x90\xac\xc6\x9c\xda\xa2\x2c\x61\xdc\x0a\x87\x42\x04\xd4\x49\x58\x5b\x87\x84\x05\x56\x69\x25\x70\xb0\xf3\x20\x14\x6c\x79\x70\xe3\xe2\xc6\x07\xb7\x14\x00\x14\x6c\x7e\x48\xfa\xb8\x98\xd1\x30\x5d\x5f\x3f\xdd\x90\x81\x7f\x9c\xd1\x38\x5d\x47\x3f\x65\x8f\xbc\x7e\x4f\x7f\x18\xbc\xc4\xd7\x87\xf7\xdf\xfd\xda\xa8\x76\xf4\xb5\x7b\xd6\x87\xf1\x53\x70\x3a\x7c\xfd\x3d\xaf\x8e\x36\x9f\x59\x68\x0d\x67\x4e\x86\xb7\x2d\x9c\x69\x6a\x3c\x33\xdf\x16\xb1\x34\x1b\xde\xb6\x70\x6f\x93\xa8\xf7\xff\x8c\x7f\x93\xec\xa5\xe3\x41\x75\x26\x20\xad\x58\x1c\xe5\xd5\x3a\xd3\x6a\x5b\x0b\xdd\x15\x7f\xb6\x88\x6b\xb6\x4f\x86\x4c\x2e\xfd\x80\x78\x96\x2c\xcc\x8f\x96\x2c\x7c\x2f\x94\xd1\x18\x5d\x69\x4c\x28\xf6\x47\x09\x74\xc2\xac\xd0\x97\xc4\x75\x21\xaa\x4b\x4a\x9d\x4a\x17\x2d\x4c\x22\xad\xa0\x28\x51\xf2\x60\x86\x3a\xe7\x5d\x2e\xb7\x30\xe8\x8b\xf5\x8f\x75\x8e\x3d\x3e\x5d\x04\x8b\xf0\xe4\x03\xcd\xcf\xd4\x2f\xc2\x3f\x27\x24\x41\xce\xd0\xfd\x13\x10\xc3\xff\xf1\xf1\xbb\x19\xd0\x24\xe0\x68\x04\xe8\x0e\x89\x2b\x65\x85\xae\x14\x77\xbb\xba\xd2\x35\xb0\xce\x83\x65\x6e\xa9\x26\xf0\x22\xcc\x8f\x82\xb9\x42\x0e\xf1\x6f\x92\x73\xc4\x73\x83\xae\x14\x77\x5b\xba\x92\x63\x85\xae\xf4\x09\x58\xe7\xfd\xd6\xb9\x9e\x90\x89\xa5\x0d\x81\x07\x81\x30\x8f\xf8\x1e\x28\x23\x1e\x29\xce\x61\x8a\x9e\x59\x37\xd7\x93\xe2\x6e\xad\x27\xdd\xcc\x46\xa5\x2b\x81\x97\x00\x3a\x4f\x6c\x74\xb9\x36\x9e\xe8\xe4\x8f\xf1\x5f\x17\xbe\x17\x0f\x54\xe8\xf4\x15\x03\x45\xc4\xc3\x0f\x43\x6e\xf7\x4e\x9f\x6f\xd7\x1a\x3b\xf3\x43\x7e\x98\xcf\x02\x5d\x71\x97\xc3\xde\x55\xa2\x47\x0c\x7a\x12\x21\x62\x21\x9e\xcf\xd0\x93\xe2\xfe\x71\x3d\x29\xfe\xcb\xcd\x3b\x3b\x2c\x96\x8e\x9d\xcd\xfc\xcf\xe6\x5e\x70\x35\x3b\xe2\xe3\xf3\x9a\x5c\x78\x70\x6e\x0e\x3f\x02\x79\xbd\xdb\xab\xab\x76\xac\x75\x02\xf1\xf8\xaf\xf1\x59\x60\xf4\x76\xe4\x64\x77\x94\x99\xc0\xff\xae\x74\xb6\xff\x2f\x84\x48\x96\xd4\xae\xeb\xf4\xa4\xb8\xbf\x53\x4f\xd2\x41\x1e\xf4\x77\x9f\x9d\x2c\x2d\xdd\x72\xae\x9b\x37\x2f\x42\x7f\xf1\xa6\xa6\xac\xec\xa6\xf1\x62\xfc\x08\x64\x77\xee\x6a\x6e\xd9\xd5\x6d\x95\x1a\x92\x5a\xd4\x95\xef\xee\x2a\xd2\xd2\x79\x71\xd7\xb5\x2b\xc4\x49\x79\x38\x6a\xbd\x55\x08\x90\x0c\x81\x6c\x0a\x11\x8e\xe5\x08\x3b\x85\x64\x88\x23\x32\x6e\x50\x1e\x40\x4f\xa4\x06\x39\x6f\x52\x98\x06\x40\xe6\x0c\x93\x71\x45\xc2\xd8\x6c\xc8\xa6\x27\xe8\xca\x93\xf3\x7a\x9b\x94\x9b\x02\xdf\x71\x59\xd1\xf4\x1a\x37\xcc\x31\xf5\x0b\xf7\x77\xec\x78\x6d\x6f\x59\xd9\x9e\xd7\xb7\xaf\x7d\x68\x5b\x05\x33\x07\xf6\xae\xd9\xf2\xf5\x27\xd6\xe5\x12\xff\x9f\x70\x14\x6b\x5f\x7f\x07\xf3\x51\x7a\x79\x7f\x71\xf3\xc1\x7e\x67\xf7\xd9\xb7\x37\x67\x6e\x79\xfb\xde\xee\xfc\xe1\x53\xdd\x65\xe3\xf5\xe6\xaa\xd9\x73\xad\xc3\x2d\xf7\x6c\x2d\xa7\xfd\xb9\xfb\xda\x15\xb2\x9d\x34\xa1\x54\x54\xb8\xac\x1b\x21\xc4\x70\x88\xe6\x83\x10\xc7\x98\x0a\x01\x22\x12\x28\x05\x2f\xeb\x46\x81\xdb\x58\x36\x2e\xc8\x41\x9e\x2a\xcc\x53\x8d\x78\x3f\x0a\xdc\x1e\x7b\x3b\xb5\xde\x76\x85\xa2\x6e\x64\x50\x28\xd4\x16\x3d\xb5\x89\x2a\x1d\x92\x62\x19\x20\x78\x37\xd1\x63\x16\x02\x9e\x75\x67\x9e\x95\x50\x0d\xe9\xcf\x6f\x30\x96\xce\x43\xeb\xca\x46\x5b\x0a\xf4\x0a\x53\xe7\xd1\xc1\x92\xa1\xa6\x02\x93\x0a\xbf\x31\x37\x07\x79\x1a\xd7\xda\xea\x9c\x9a\x3c\xbd\x2a\x34\x54\xad\x77\xd6\x5a\xad\x35\x4e\x9d\x3a\x14\x37\xae\x7b\xe5\x9e\xde\xec\xa6\xf1\x1d\x07\xbd\xda\xc1\x6f\x3c\x38\x68\xae\x19\x9c\xda\x55\xc2\xc7\x13\x8f\xff\xbd\xba\x07\x0f\x74\x98\xca\xd7\x0c\x8d\xe6\x6a\x73\x47\x37\xac\xa9\x30\x99\x2a\xd6\x6c\x18\xcd\x15\xfa\x75\x04\x21\xe6\x3f\xe8\xde\x91\x22\xc8\xa0\x32\x10\x93\x18\x88\x67\x1e\x9d\x10\xdc\xca\x83\x0f\xa1\xc4\xf8\x38\x35\x52\x50\x29\x54\xd0\x8b\xe8\x49\x0e\x3a\x90\x80\x1b\x01\xbd\x28\x3d\x12\x33\xff\xb1\xc8\x1f\xe6\xff\xe3\x30\x24\xe4\xf7\x78\xd3\x4b\x36\xdf\xd3\xc1\x7f\xa4\x2b\xeb\xcd\x87\x5d\xfc\xd3\x85\xa3\x3e\x8b\x70\xb4\xc3\x57\xf8\x06\x78\x2b\x2a\xbf\x79\xa8\xb0\x61\xb1\x2d\x0b\xf8\xd7\x6d\x2d\x05\x69\x00\xaf\xa5\x16\xb4\xd3\xbd\xff\xda\x5f\x79\x1f\x49\xe1\x10\xca\x43\x75\xde\xea\x4c\x8c\x59\xa2\x02\x86\x8d\x05\xcc\x30\xf5\x48\x2e\x93\xcf\x84\x80\x8c\xa3\x8a\xff\x60\x40\x4d\x4a\x5d\xed\xe8\xd2\xe2\x86\x3c\x87\xa0\x9f\x5a\xf4\x16\x9d\x28\xab\x6a\x15\x81\x0c\xa1\x62\x4a\xd4\xa0\x61\xcf\xb9\x0a\x31\xab\x73\x3a\x9c\x0e\x95\x16\xaf\xe1\x3f\x94\x32\x87\x02\x98\x9b\xe7\x1a\xca\x8b\x23\x35\x15\x1a\x5b\x6d\x6e\x1c\xc0\x72\x2a\xd1\x7f\xfd\xd7\x45\x48\x22\xef\xf3\xe7\xa4\x84\xa2\xfc\x35\xff\x7f\x35\xee\xeb\xcb\x53\x6e\x90\xc9\x8d\xe5\xbd\x79\x3d\x2b\xf3\x8b\x92\xf7\x47\xde\x7d\x57\x58\xa3\x8f\x53\xbc\x4e\x60\x8d\x12\x96\x63\x09\x37\x25\xbc\x8e\x0c\xd0\x14\xe2\x90\x0c\x38\xd9\x60\x60\x61\xa6\xfa\x82\xab\x35\x05\x7f\xe6\x1a\xbd\x65\x52\x67\x99\x56\xa5\x4d\x61\xf0\xf6\x5b\x67\x75\xee\xdd\xdf\x61\x61\xe0\xbf\xf8\x30\xc6\xd2\xb1\xff\xb3\x73\x3b\x57\xcf\x9c\x69\x1c\x6e\xba\x77\xb6\x4a\xb4\xa1\xa5\x22\x44\x5e\xa4\x7e\xe2\xcf\xf0\x89\xc5\xfd\xfd\x3e\x31\xa5\x20\x97\xeb\xdc\x8e\x12\xd6\xb9\xd2\x27\xf6\xf3\x0b\x8d\x8b\x6d\x99\x99\x6d\x8b\x8d\xfc\x9f\xf9\xdf\x00\x1b\xa3\xf3\x74\x16\x19\x70\x8a\xc1\x91\x16\x23\x07\xc0\xf2\x0b\x79\x3e\x7b\x5c\x9c\xbd\xc1\x41\x3c\x7c\x33\xd8\xbb\xe7\x2a\x2b\xe7\xd7\x38\x40\x90\x25\x2b\x4e\x1e\x59\xe8\x75\x8e\x42\x4e\xd3\xf0\xd6\x69\x3b\x7c\xe0\xff\x77\xde\x0b\xc6\xd2\xb6\x2c\x4b\x73\x91\x01\x10\xa6\xf9\x67\x4e\x53\x7c\x99\x4e\xf4\x36\xa1\x10\x39\x26\x32\x7a\xa6\x08\xa7\xea\xdf\xe1\x0d\xd3\x5e\xef\x0d\xbb\x0a\xdd\x73\xf7\xd7\x4f\x37\x9a\x4c\x8d\xd3\xf5\xfc\x9f\xf8\x2f\xcc\xcd\xc1\x77\xee\xb7\x55\x65\xab\x54\xd9\xd5\xb9\xf8\x04\x5c\xe2\x9b\xc1\xb1\x66\xae\xbc\x7c\xbe\x27\x0f\xb0\xc9\xff\x33\xe2\xa1\x0d\x34\x79\xdb\x32\x33\x9b\x8a\x8d\x12\xc7\x67\x3a\x42\x24\x86\x43\x48\x8b\x5c\x5e\x87\x06\x8b\xd1\xf7\x32\x4e\x36\x23\x07\x8e\x05\x04\x1c\x0a\x3a\x51\x53\x97\x5d\x62\x0a\x85\xca\xa0\xd2\x45\x87\xac\x5e\x04\x37\x9d\xf4\x47\xf8\x8b\x37\xa6\xcb\xbd\xef\xbe\x45\xe8\x24\xbf\xe6\x8f\xdd\x34\x69\x2e\xf9\xf5\xc8\xab\xaf\x52\xfc\xea\x23\x92\xfc\x2c\x9c\x7c\x0c\x66\x66\x29\x3f\x37\x95\xa7\x70\x8f\xd4\x98\xeb\x64\x1d\x58\x76\x90\x29\xc0\x89\x37\x6c\xe7\xcf\x2d\xf2\x77\x89\x32\xc8\xd5\x77\xf8\x47\x60\x50\x94\x85\xb7\x5e\xbb\x42\x76\xd1\xb8\x01\x8a\x2c\x63\x30\xd4\xcb\x38\xc2\x60\xac\x5e\x91\x2e\x35\x25\x10\x3b\x60\x50\x19\x54\x19\x06\xb9\xa0\xd1\x28\x03\x87\x95\xb4\x30\x82\x38\x83\xd5\x1f\xc9\x0e\xac\xad\xdc\xec\xb3\xd6\x7b\x2c\x91\x91\x96\x82\x7a\xab\x6f\x73\xa5\x16\x6f\xc3\xd1\x86\xd2\x5c\x7b\x79\x86\x02\x2f\x82\x22\xa3\xdc\x9e\x5b\x62\x8c\xc6\xec\xe5\xab\xef\xd6\x9d\xda\x5a\x95\x9c\x57\x9d\x99\x59\x9d\x97\x5c\xb5\xf5\x54\x1d\x29\xb8\xfa\x6e\xce\x58\x77\x7e\x7e\xf7\x58\xce\xea\xcf\xe2\xb8\xb5\xd1\x9c\x23\x9e\x1b\xdb\x1f\xf7\x8f\xb7\x5f\xb1\xe2\x23\x39\x0c\xfa\xda\x49\x5f\x6e\x63\x71\x56\x54\x54\x76\x51\x63\x4e\xc3\x64\xad\x1e\xe6\x21\xc6\x5c\x91\x6b\xaf\xb6\xc4\x6e\x87\x58\x4b\xb5\x23\xb7\xdc\xac\x24\x1e\xbf\xdd\x77\x62\x93\x37\xc0\xad\xe3\xdd\x74\xc2\x87\xbf\xe7\xb7\xdb\x87\xdb\x1c\x8e\xb6\x61\xfb\xea\xcf\xc2\xfa\xd6\x22\x44\xd2\xb8\xf0\xa0\xaf\x98\x25\xec\x0c\x07\x84\x01\xd1\x88\x06\x21\x20\x97\x81\x7c\x08\xc9\x64\x01\x01\x70\x79\x75\x08\x32\x60\xa8\x88\x30\x58\x96\x71\x24\xe2\xc1\x65\x49\x10\x3f\xc9\xbf\x0e\xae\xae\xbb\xc7\x0b\x0b\xc7\xef\xee\xe2\xdb\xde\x79\x67\x11\xaa\x84\x9f\x8a\x87\xeb\x32\x32\xea\x86\x8b\x89\x9b\x1f\x03\x6b\xd7\xce\xa6\xa6\x5d\xdd\xb9\xc4\x3d\x0c\x53\xfc\x69\xff\x43\x7c\x16\x68\x8b\xba\x5c\xce\xae\xe2\x74\x51\xee\xf9\x03\x39\xc1\x7e\x13\x95\x42\xa4\x88\xaa\x70\x22\xcc\x20\x06\xa3\x29\x24\xe1\x0c\x68\x80\x24\x2b\x43\xec\x20\x0a\x0b\x5b\xb6\x5b\x53\x27\x9d\xbc\x2f\x14\xe4\xf2\x14\x79\x40\x7e\x28\xb8\xfd\xc2\xa1\xa1\x1a\xb1\x06\x14\xa8\x20\xf1\x1f\x7f\xfa\xff\xc3\x83\x05\xc9\x23\xa6\xb4\xa4\xb8\xa8\xd0\x23\x5a\xba\x63\x4d\xd1\xe1\xc2\x9a\x0f\x58\x63\x03\xc7\x01\x09\x40\x25\xc8\x8a\x50\x21\x22\xd9\x6e\x81\x7c\x39\xc6\xe8\x69\x9f\xa8\xe8\xde\xdf\x9d\xc3\x6e\x0e\x49\xce\xef\x2e\xb7\x35\xe4\x1b\x34\xa1\x50\xca\x7f\x3d\x54\x63\xc8\x6f\xb0\x55\x74\xbb\x93\x43\x36\xb3\x39\xdd\xfb\xbb\x2b\x26\xda\x3d\xc6\x98\x2f\xcf\xcd\x31\x59\x35\x35\xa7\x0f\xcd\x74\xd8\x6a\x76\x3c\xd6\x53\xbe\xb3\xbf\x20\xb3\x76\x60\xcb\x36\x77\xdd\xf0\xf1\xfc\xd9\xc9\x81\x5a\x8b\x7b\xfd\xce\xf2\xce\x87\x77\xd6\xd9\x3a\x66\x0e\xde\x55\x7b\xdc\x5f\x20\xfa\x60\x00\x3d\x7f\xed\x0a\xd9\x47\x9a\x90\x13\x38\x51\xc2\xb3\xa1\x90\x50\x59\x68\xc8\x72\x38\x54\x18\xc8\x08\x8d\x87\x1a\x44\xa1\xa1\x5c\x9f\x1c\x38\x2e\x4e\x0c\x88\x12\x16\x4f\x0a\xb3\x3c\x66\x9f\x5d\x90\x16\x09\x0d\xa5\x7d\x15\x10\x15\x24\x23\x92\x58\x41\xec\x3f\xf6\xe4\xff\x87\x87\xd2\xf1\x72\xe6\xe5\x5a\x33\xcd\x7a\x85\x42\xa1\xd7\xc7\x1a\xc4\xf1\xd2\xde\x10\xc5\x15\x30\xab\x07\xd0\xe2\x81\x53\x9d\x79\x81\x7f\x4a\xed\xea\xab\xc9\xad\xb5\x27\x93\x69\xc8\xed\x98\xad\x1c\x3c\xd6\x69\x7a\x6d\x7e\xfe\x35\xc8\xe8\x3c\x3a\x50\x37\xd7\x96\x35\xcd\x24\xda\xea\x1c\x55\x7d\x2e\x0d\x40\x1f\xfc\x25\xa4\xfa\xee\x05\x9f\xb1\xac\x33\xa7\x7c\xfb\xba\xfc\x9e\xd3\x2f\xaf\x0f\xe1\x23\x88\x87\x4f\x5d\xfb\x95\x53\xdd\xc5\xc3\x87\x6b\x6d\x03\xf5\xd6\xfa\xd9\x53\x95\x41\xde\xf4\x67\xa8\x9f\x2f\x52\xd8\xd5\x23\x81\x13\xe4\x44\x0e\x4b\x47\x0d\x21\x6a\x1f\x2b\x59\x06\x25\x92\x51\x8a\xbc\xa0\x56\x41\x86\x86\x72\x83\x96\x61\x8e\x7f\xb8\xf0\x93\x27\x77\x61\x3c\x05\xfc\x4e\x7f\x0b\x7c\xf4\x17\xd1\xf0\xc7\x1b\xa8\x7b\xb1\x0a\xbf\x4d\x9f\x35\x21\xe9\x98\x61\x28\x5a\x78\x56\xd4\x0d\xcf\x8a\xbb\x8d\x67\x99\x64\xcc\xfa\x2f\x2f\xbe\x7e\xcf\x2e\xf8\xee\x38\x7c\x7f\xb7\xff\x05\xb8\xeb\xd1\x8c\x0c\xe8\xe3\x9f\x12\xfe\xa8\xf0\xf9\x75\x98\xdf\xb5\x0b\x61\x74\x1a\x21\xf2\x0a\xf5\x9d\xd2\x0c\x65\x6a\x41\xa2\xac\x0f\x05\x99\xa0\x3d\x83\x0c\x6d\x10\x06\x5b\xed\x0b\xa1\x0a\x3b\xb5\x7c\xae\xa0\x52\x0d\x0b\xda\x3e\x19\x9d\x52\x1c\x1b\xad\x52\x7a\xdb\xef\x1d\xdf\x70\x68\x7e\x71\xf7\xef\xe7\xe6\x80\xfc\xef\x09\x18\x5d\xe4\x0b\xa0\xf8\x41\xf8\x88\x8f\x0b\xfc\xb1\x97\x97\x1e\x67\xd6\x7f\xda\x82\xdb\xf0\x43\xa2\x0c\x75\x1c\x21\xf2\x2a\xc5\x8c\xc7\xdd\xac\x2d\x83\xe2\xc4\xfb\xbb\xdb\x62\x92\x31\xdf\xdf\x3f\x76\x64\x7e\xc7\xe2\xef\xe7\xe7\x21\xf2\xe7\xa3\xb0\x69\x3b\x5f\x09\x19\x77\x61\x06\x7a\xf8\x67\x02\x7f\xc4\xe3\x3f\x8e\x17\xae\xbe\x03\x6f\xc1\x8b\xe1\xd1\x42\x7b\xb6\x4b\xb8\x9b\x34\xa4\x43\x76\x6f\x0e\x06\xc4\x49\x8a\xac\x5c\x4e\x23\xd7\xd5\xbe\x10\x19\xcb\x48\x26\x6a\x5d\x3a\x4a\x43\x69\xda\x18\x83\x52\xab\xd0\x85\x72\x89\x16\x07\xe3\x72\xb9\x1d\xa0\x05\x87\x5a\xad\x61\x74\x8c\x95\x31\xe9\xa8\x94\x11\xc9\xa8\x18\x00\xed\x0e\x80\xa7\x9f\x2d\xe2\x9f\x61\xf6\xf0\x2f\x7a\xbe\xf8\x24\xc0\x1c\x80\xc6\xd1\x56\x38\x81\xe7\x26\x0b\xdb\x1c\x1a\x80\x03\x80\xfd\x7f\x84\xfb\x9e\x7f\x1d\xe3\x2f\xf9\xdb\xf1\xeb\xcf\xf3\xe3\x70\x9f\x77\xb0\x3c\x1d\x58\xff\x18\x7e\x08\xd2\xcb\x07\xbd\xfc\x38\xa3\xc6\x79\xb4\xff\x0e\x23\x44\x3c\xc4\x83\x92\x50\x1a\x2a\xf0\xba\xd4\x4a\xca\xd3\x75\x63\xb3\xe3\x56\x36\x3b\x2d\x15\x25\xa1\x24\x65\x8c\x4e\xa9\x88\x51\xd2\x66\x9b\xa4\x66\xab\xd5\x1a\x95\xce\x64\x34\x8a\xad\x36\xe9\x38\x4e\x26\x03\x87\x52\x7b\x04\xe0\x9f\x9e\x21\xfc\x4f\x99\x66\xfe\xa7\x4f\x3f\x8f\xe7\x31\x6c\x99\xf3\xc8\x17\x48\xf9\xdc\x16\x00\x18\x92\xff\x9a\x77\x7e\xf0\xfa\xcb\x58\x18\x63\xfc\xf2\xeb\x1f\x7c\x70\x62\x3f\x44\xf2\xe9\xf0\x5b\x19\xec\x3f\xf1\x01\x6e\x83\xfd\x94\x57\x0b\x21\xb2\x89\xbd\x8c\xcc\x28\x0b\xe5\x79\x6d\x18\x90\x9c\xc3\x62\x2b\xc3\xc2\xa0\x27\x14\x56\xf5\x6e\x96\x45\x10\xf7\x63\x55\xb6\x18\x83\x4a\xab\xa0\xfb\x83\x52\xcb\x68\x19\x41\xd4\x14\x71\x4d\x81\x46\x46\x8a\x3f\xb8\xdc\xe2\x36\xae\xd4\x7e\x00\xdf\xf8\x04\x3f\xf6\x3f\x69\x55\xfd\x85\x89\x78\x23\x0e\x4b\xf5\x58\xab\x60\x23\x54\x5b\x0b\xd2\xc2\xf0\x46\x1c\x9f\xf4\x8b\xcd\x9b\x71\xc2\x97\xf9\x07\x18\x8c\x2f\xf9\xdb\xc0\xd1\x33\x5f\xc9\x57\xc1\xeb\x96\xd6\x12\x23\x30\xfe\x51\x7c\x81\x01\x63\x49\xab\x45\xf8\xad\x7c\x26\xdb\xbf\x91\xbd\xec\xbf\x03\xd3\xf9\xb1\x20\xf1\xb9\x0a\xef\xe0\xf5\x16\x6b\x93\xa9\x15\x96\x05\x26\x44\x86\x11\x30\x48\x78\x15\x51\xe6\x8b\xf3\x85\x87\xca\x39\x22\xb9\xd7\xb2\x2c\x34\x45\x84\x4e\x69\x50\xd1\xc9\x1b\x1b\xc1\x25\x5b\xb4\xc2\x6c\x91\x26\x2e\xa3\x65\x82\x2f\xa6\xd3\xc9\x74\xf4\xcd\x68\x08\x38\x28\xb5\x70\x12\x43\x42\xf2\x07\x93\x93\x70\xe9\x57\xf8\x9e\x5f\x55\x0c\x96\xa4\xe0\x8d\x38\xca\xe0\xb5\x69\x43\xf0\x30\x9b\x69\x2b\x35\x46\x01\x84\x3e\xc5\xbf\x08\xb2\xca\x69\x8b\xa0\x05\xf3\x4a\xf8\x03\x1f\xc3\xd8\x3a\xe7\xab\xf9\x4f\x40\x96\xdb\x56\x94\x1e\xcb\x67\xc3\x2f\xc2\xd2\x8b\xda\x72\xf9\x4f\xf0\x1a\xd8\x27\xbc\xcf\xbf\xf0\xa3\x44\x27\x9b\x44\x95\xa8\x11\x75\x7a\xdb\x7c\x20\xe3\x34\xc0\x22\x5c\xdf\x08\x5c\x6d\x76\x16\x66\x6a\x10\x27\xe3\x66\x90\x0c\x0b\xa2\x36\xe5\xf3\x60\x87\x02\x61\x1c\xea\x20\xfd\xb4\x86\x69\x00\x54\x5f\x57\x53\x5d\x51\x56\xe0\xd2\xa5\x45\x86\xdf\xc4\x09\xa1\x75\x6a\xaf\xc3\xf7\x50\x9e\x78\x41\x83\x96\x59\x19\x4a\x17\xbf\xc2\x11\xa1\x0c\x92\x48\x25\x36\xdf\x31\x52\x98\x3f\x70\xa0\x8e\xff\x2a\x94\xf7\x3f\x77\xb0\x31\xb3\x76\x63\x61\xd9\x96\x26\x4b\xd7\xa9\x17\xfb\x2b\x0c\xa5\xd6\x04\x48\x77\x14\x26\x64\x67\x76\x56\x59\x00\xb2\x9b\x37\x15\x97\xd6\xde\xb1\xb9\xdc\xbb\xe5\x9e\xd6\x43\x0f\x8b\x04\x54\x4c\x72\x5a\xc5\x26\x5f\xf5\x68\x95\x6e\x24\xb7\xff\xae\xc1\x92\x91\xb6\x62\xa5\xa2\xb0\x7b\xb6\x6e\xf4\xfc\x46\x7b\x54\x6a\x6e\xba\xa1\x28\x5b\x1b\xda\x1d\xed\xa8\xee\xce\x2b\xea\x74\x25\x18\xea\xa6\x1b\x3b\x67\x6b\x52\x47\x99\xf3\x12\x73\x95\xd0\x57\x7f\xe0\x47\x99\xab\x9c\xe1\x1f\xeb\xab\xb8\xff\x3f\xfb\x2a\xef\xb3\xfa\xca\x54\x3a\xdf\xeb\x76\x75\x6d\x76\xf3\xbf\x00\x7d\xd3\x7d\x8b\xf5\xda\x82\x66\xab\xa3\xbb\x54\xdf\xba\xff\xb1\x96\x6c\xa9\xaf\x8a\x12\xb2\x33\xbb\xaa\x2c\x42\x57\x15\x99\x0b\xe6\x06\x8a\x8b\x87\x76\x97\x1e\x7c\x42\xec\x2a\xdc\xa3\xcc\x6e\x28\xb0\x57\x59\x94\xa3\xda\xaa\x2d\x8d\x56\x5f\x91\x35\x2a\x22\xb3\xb8\x25\xaf\x7d\xbe\x41\x2f\x74\x95\xb1\xd0\x9a\x16\xda\x1d\x9d\x57\x25\x76\x95\xda\xde\x5c\x50\xdc\x98\x15\x3d\xca\x28\xc5\xae\x62\x28\x9f\xa2\x8f\x7d\x1b\x25\x23\xab\xc4\xe1\x72\x5d\x88\x6c\x72\x30\x44\x36\x05\x35\x98\x34\x26\x4d\xb6\x91\x7a\x61\xae\xe3\x6f\x61\x25\x84\x02\x91\xb1\xda\xcf\xa1\x48\x94\xe8\x5b\x96\x9e\xc0\xbf\x5b\x4d\x8d\x88\x7f\xe7\x8f\xbf\x0d\x7a\x44\x91\xc3\xc5\x9a\xbb\x92\xc4\xe5\x6c\xf6\x2a\x16\x17\x06\xcd\x5d\xbb\x42\x0a\x69\x5e\xfd\x34\x64\x11\x35\x02\xc4\x60\x96\x19\x94\x81\x14\xf1\x96\xea\xe3\x60\x19\x51\x95\xae\xd5\xa8\x4d\x46\xad\x25\xdd\x92\x94\xa8\x4e\xd3\xa4\x99\xf5\x72\xd1\xd5\x40\x25\xd2\x40\x80\x00\x50\x4b\x62\x0a\xa3\xa4\x72\x8d\x95\x99\xa3\xac\x88\x94\x01\x71\x99\x0b\x11\x3e\xec\x38\xd0\xe7\x60\xfd\x59\x24\xaf\xef\x50\x5b\xfb\x81\xb5\x0e\x16\xff\x90\x75\xf6\x1d\x14\x39\x11\xd7\x9c\x7d\x67\x32\x48\x85\xc8\x57\x55\xcc\xdc\xdb\xda\x7a\x76\xba\x82\xb9\xaf\x62\xfa\x4c\x4b\xcb\x99\xe9\x0a\x2a\x6f\xe6\x21\x44\x3e\x62\xdf\x42\xb1\x68\xfb\x8b\x00\x62\xba\x71\x41\x5d\x50\x88\x59\xe7\x01\x21\x11\xf0\x10\x34\x25\xaa\x44\x34\x84\xc4\xa4\xb6\xe2\x62\xe2\xcd\x4b\x7d\x46\x81\x9e\x9e\x9e\x97\x14\x2a\xad\x89\x70\x71\x34\x17\x78\x09\xe3\x70\xc8\xa4\xd4\x45\xe0\xc0\xf9\xa9\x69\x60\x53\x39\xab\x7b\x3d\x49\x10\x9e\x51\x64\x4d\x8f\xe2\x77\xcc\xf1\x9a\x23\xd7\x26\x27\x99\x97\xca\x37\x56\xea\x37\x27\xe4\x56\x5a\xae\x6e\x60\x2f\x23\x40\x9d\x08\x91\x5e\x3a\x06\xaf\x8b\x8d\x0f\x93\x88\x4d\x57\xa4\xed\x17\x7e\x62\x96\x7f\x4a\xbc\xfe\xae\x55\x37\xd0\x9c\xfd\xab\x7b\x21\xf5\xc6\x5e\x88\x0b\xbe\x54\xea\x67\xf5\x42\xea\xaa\x5e\xb8\xb1\x80\xd8\x0b\x7a\x83\x88\xb1\x73\x2b\x5d\x2e\x31\xd2\x41\x0c\x74\x10\xc4\xb8\x3f\x99\x2d\x3f\x4c\x9f\x6a\x4e\xc8\xd1\x28\xe2\xf4\x71\x19\x69\xf1\x21\xfc\x9b\x83\xfc\xe6\xdd\x10\x75\xe2\x04\x9e\x19\xda\x04\x20\x8f\xe8\x0f\x87\x58\xad\x25\x6e\xe9\x0c\xb5\xbb\x33\xa8\x96\x6f\x22\x4f\x4b\x79\xa4\x2a\x51\x99\xb7\xa4\x1c\x10\x53\x00\x1c\xca\x07\x96\x63\xea\x03\xf8\xbe\x64\xca\x4b\x18\x17\xa4\x85\x4e\x09\x62\x5c\xb4\x6c\x83\xda\xa8\xd2\x98\xcd\xe6\xd5\x78\x96\x60\x8c\xba\x29\x68\x2c\x91\x90\x98\xac\x46\x79\x03\x40\x90\x71\xe0\xad\xda\xaa\x4d\xb5\x35\x23\xe5\x69\x69\xe5\xc3\x35\xb5\x9b\xaa\xd2\x17\xa2\x0d\xa5\x56\x6b\xb1\x21\x0a\x20\xda\x50\x6c\xb5\x96\x18\xa3\xe0\x49\xb8\x30\xc5\xff\x29\x42\xef\xaa\xb3\xc7\x58\xa3\x20\xd2\x14\x99\x6a\x4d\x8f\x0f\x31\xbc\xb1\x15\x1b\xf6\xbf\x7f\x6f\x6b\xeb\xbd\xef\xef\x87\xe1\xfd\xef\x9f\x6d\x6d\x3d\xfb\xde\x81\xd8\xbe\xc7\x76\xd4\xd4\xec\x78\xac\x8f\x9f\xeb\x7b\x42\xf8\xf4\x44\xdf\xd7\xa2\xf1\xdf\xae\xc6\xe5\xae\xab\xb3\xca\xd9\x41\x31\xed\xf9\x63\x34\xed\x39\x62\x50\x99\xd0\x17\x74\x6e\x58\x51\x25\x7a\xd7\x1b\x99\x05\xc0\xe9\x80\x40\x3a\x30\x24\x40\xc5\xad\xa5\x80\x03\x16\x63\xea\xbb\xe1\x38\x71\xb1\x06\x37\x67\x6d\x50\xa7\x32\xb0\xa2\x43\x45\x02\xff\xa4\x7e\xe6\xcd\xb1\xb7\x57\xeb\x6d\x56\x48\xad\xe8\x66\x03\x1d\x13\x3a\x22\xca\x1b\x12\x80\xb1\xaa\x9b\x0d\x00\xdc\xc0\xaf\x5a\xa6\xad\xd9\xda\xd4\xbc\xb5\x26\x5d\x5b\xb3\xb5\xb9\x69\xaa\x3a\x9d\xe9\x7b\x60\xab\xd0\xfb\xce\x3a\xbb\x32\x3b\x1a\x47\x64\x04\x7b\xdf\xff\x54\xb4\xa9\xc2\xe9\xac\x30\x45\x45\x99\x2a\x9d\x79\x15\xa6\x68\x6c\x9d\x7e\xf7\x4c\x67\xe7\x99\x77\x66\x74\xd3\xef\xd0\x0f\xd3\xaf\xc4\xe0\x4f\xae\xeb\xfb\x27\x48\x92\xff\x07\xad\x0f\xef\x6e\x6a\xda\xfd\x70\xab\xbe\x45\xfc\xd0\x82\x08\xda\x75\x6d\x9a\x34\x73\x1e\xca\x57\x65\x40\x15\x68\x4e\x8c\x06\xb3\x22\x60\x59\x18\x41\x88\x63\x38\x34\x86\x18\x99\x8c\x19\x41\x98\x10\x3c\xba\x02\x73\x25\x93\x91\xb5\x22\xb0\x21\x91\x16\x80\x19\xf1\x7e\x66\x0a\x31\x32\x8e\x91\x4d\x22\x4c\xf0\xec\x4d\x0b\xf4\x78\xc3\x28\x27\x98\x84\xca\xa6\x38\x01\x41\x26\xfc\x1c\x66\x30\xfc\xd0\xc2\xc2\xc2\x02\x7c\xf9\x1f\xa6\x06\x23\xbf\x82\xde\x4f\xdc\xd0\x0f\xcf\xfc\x43\x04\x61\x04\x1d\xbc\xd6\x43\xea\xc8\x8f\x68\x7f\x25\x23\x07\xfa\xb5\x38\x09\xad\x08\x08\x11\xfa\x4b\xc6\xc8\x84\xfe\xe2\x38\xa1\xbf\x58\x16\x8f\x0a\x2f\xdd\x87\x08\xa1\xd3\x88\x5d\x8b\x58\x36\x85\x0d\xcc\xc6\xec\x9b\x97\xc2\xb3\x9f\x55\x48\x2d\x15\x12\x7a\x5a\x28\x23\xf4\xf4\xe7\x14\xa2\x4d\x5b\x75\xbf\x8c\xe1\x26\x3f\xbb\x80\x38\xaf\xcd\x66\xc3\x0d\x63\x73\xdd\x79\x78\x23\x4f\x30\x7e\x62\x71\x71\x71\xd1\xff\xab\x9b\x1d\x8c\x37\x90\x04\x33\x13\xb0\xe9\xd3\x43\x30\x0b\x83\x37\x1c\x8c\x37\x72\x04\x33\xa8\xe5\xda\xc7\x64\x9f\xcc\x8e\x2a\xd1\x06\x34\x89\xc6\xbc\xc3\xed\x10\x12\x39\x09\x1c\x89\x16\xf7\xcf\xc8\x88\x90\x88\xc8\x90\x29\xc4\x11\x96\x70\xec\x14\x0a\x47\xa1\x11\xe1\xa1\x43\x51\x10\x11\x06\x21\x28\x22\x64\x48\x4e\xcf\x7e\x11\x4d\x2d\x13\x26\x37\x8d\x07\x4b\x81\x86\xaa\xaa\xb1\xd1\xaa\x0d\x55\x83\x6b\x7b\x3b\x3b\x9a\x1b\x6b\xab\xe3\x0d\x2a\x33\x8d\x0f\x8b\xe6\x44\x0e\x32\xc5\x75\x16\x4e\x85\x14\x09\xac\x52\xdc\xc4\x50\xab\x10\xf4\x1d\xa5\x4a\x98\xc5\x74\x33\x96\xe9\x4c\x52\xc2\x59\x0d\xb8\x5c\x4e\xb7\x43\x23\xc8\x8a\x4c\x59\xdb\xf6\x26\xa3\xae\x6e\xaa\xc9\xea\x2b\xb4\x44\x45\x59\x0a\x7d\xd6\xa6\xa9\x3a\x9d\xb1\x69\xb1\x1d\xf2\x1b\x72\x54\x31\xe6\x4a\x87\xa3\xd2\x1c\x03\xf3\x10\x93\x59\x69\x77\x54\x66\xc6\xa8\x73\x1a\xdc\xa7\x52\x32\xab\x4b\x5c\xce\xbc\xa4\x54\x4b\x62\x24\xe0\x35\x90\xe0\x6c\xb0\xa5\x17\xba\x5d\x9e\x8a\x0c\x7e\x2c\x2d\x11\xaf\x07\x45\x52\x86\x86\xbd\x84\xab\xb7\x9d\x6f\xf7\x6f\x6f\xbc\x7b\xa6\x2a\xd9\x51\x6d\x36\x57\x3b\x92\xab\x66\xee\x6e\xc4\x47\xdb\xcf\x6f\xab\xc6\xc3\xd8\xd3\x37\xed\xf1\x6f\x77\x4c\xf4\x14\xe4\x77\x8d\xe7\x82\x9f\x67\x72\xc7\xbb\xf2\x0b\x7a\x26\x1c\xf8\xa8\x67\xba\xcf\x83\xa1\xa6\x23\x4e\x97\xa1\xd3\xc4\x9b\x9d\x49\x31\xa9\x39\xad\x45\xba\x38\x5d\xa6\x3e\x0e\xf8\xf7\xd3\xab\x4d\x83\x23\x09\x2e\xbb\x39\x42\xd8\xcb\x7b\xae\x7d\x4c\x8e\xb2\x1f\x22\x2f\x5a\x8b\xc6\xd0\x97\xbd\x31\x8d\x10\x12\xd1\x0c\x28\x64\x0c\x38\x12\x09\x2c\x47\xea\x45\x86\xd6\x22\x14\x11\x1e\x12\x1e\xb1\x3c\x44\x91\x10\x8e\x42\x50\x78\xc8\x10\x0a\x0d\x0d\xeb\x43\x61\x61\xc9\xbe\xe5\x31\x4a\x5d\x3d\x46\x89\x5e\xcf\xf5\xc5\x51\x18\x0a\x0d\x0f\x0b\x1d\x0a\x56\xf3\x99\x85\x7b\xbc\x09\x65\x65\x1b\x06\xcb\xd6\x96\xf5\x75\x75\xd4\xd5\x54\x96\x8b\x23\xac\x37\x47\x47\xad\x1a\x61\x63\x90\x0d\x59\x18\x60\xd5\x8a\x01\x76\x2b\x1c\x8a\xeb\x07\x58\x32\x70\x2d\x8f\xaf\x43\x1a\xdf\x48\x46\xc6\x34\xb5\xcc\x35\x19\x75\xb5\x93\x0d\xeb\x16\x52\x52\x16\xd6\xf9\xb6\xd6\xea\x8c\x4d\x73\x2d\xce\x3a\xab\x2a\xc6\x5c\x9e\x6b\xaf\xca\x52\xc2\x42\xac\xa5\xca\x9e\x5b\x91\xa1\x54\xe5\xd4\x39\x2f\xa4\x96\x6d\xec\x6e\xc9\x4e\xcb\x4e\x89\x06\xe8\x81\x24\x77\xb3\x5d\x57\x52\x50\x50\x5c\x95\xc9\x37\x69\x93\xa1\x1f\x40\x91\x9c\xa1\x21\x3e\x5c\xbc\xe9\xae\x0e\xfe\xa9\xc6\xe3\xa3\x45\x83\x4d\x4d\x83\x45\xa3\xc7\x1b\xa1\xaf\xe3\xae\x4d\xc5\x78\x04\xe7\xb6\x6c\xf2\xf0\x4f\x39\x86\x9a\x72\x73\x7c\x03\x36\x50\xf1\x1f\xdb\x06\x7c\x39\xb9\x4d\x43\x0e\xe8\xf3\x6c\x6a\xc9\xc5\xb0\xae\x13\x6c\x85\xb9\x9a\x0c\x67\x4a\x4c\x6a\x6e\x5b\x61\xba\x30\xa4\xf1\xfc\xb7\xd3\xab\x32\x06\x47\x12\x5d\x36\x61\x44\x05\xfd\x69\xfe\xda\x15\x72\x90\xfb\x33\x92\xa1\x7c\xb4\xed\x45\x25\x35\xf5\x88\xe1\xbf\x06\x84\x81\x03\x3c\x86\x02\x59\x7c\xc3\x42\xe5\x0c\x35\x42\x81\xb0\x97\xb0\x20\x9d\x06\x46\xf1\x3e\x6e\xea\xd6\x37\xf6\x78\x63\xe5\x72\x79\xbe\x3c\xdf\x61\x53\x19\x54\x34\x63\x8c\x64\x5f\xd4\x68\x55\x3a\xa7\x8e\xbd\x4d\xe7\x08\xb4\xe3\x01\xe0\xf9\x89\xbf\x32\xd6\xdb\xf7\x92\x70\x7f\x6e\x9d\x99\xf9\xd3\xdf\xe7\x29\xc1\xa2\x9f\x84\xf2\x2f\xe6\xa3\xc5\x60\xdf\xc4\x52\x7f\xbe\xd8\x37\x22\xab\x2d\x85\xe6\x8b\x2f\x1d\x77\x7d\xef\x64\x04\x7a\xe7\xf3\x6e\xfd\x9c\xfe\xd1\xde\xae\xf3\x05\xb2\xf1\x41\xcc\x5f\xd9\xc2\x5f\x65\x7a\x6e\xd7\x0d\xc3\x5e\x6e\x3d\x70\x80\xff\xf9\xdf\xe7\x8b\x01\xf4\x14\x7f\x0f\x59\xcb\x7e\x13\x65\xa1\x07\x83\x39\x98\x43\x44\x7a\x26\x31\xa6\x72\x85\x6e\x29\x65\x65\x4a\x40\x81\xb4\x87\x09\xc1\x9b\xa4\x3c\xca\x81\x7b\x83\xf2\xdb\xe7\x54\x73\xab\x1a\x7a\x7a\x7a\x5e\xce\xd6\xc7\xe6\x50\xc8\x14\xe8\x14\x56\xd6\x79\xa3\xd7\x21\x36\x85\x68\x1c\xf8\x3f\x17\x5a\x0e\x8e\x35\x3a\xe2\x13\xdd\xad\x93\x77\xb4\x6f\x7a\x76\x9b\x97\x59\xe0\xac\x6d\x3b\xda\xca\x27\xda\x8b\x4c\x4a\x65\x46\x69\xf7\x54\x8d\x8f\xbf\x07\xd6\xca\x4b\x07\xf7\x9c\x7e\xa0\xe9\xd1\xd6\xc7\xcf\xec\x5d\xe7\xaa\xd9\x7b\x69\xb4\xf9\xf8\xc6\x82\x9c\xd6\x2d\xbb\x0f\x97\x3d\x5e\x76\x74\xcf\x54\x87\x5d\x8c\x13\xfc\x2e\x7f\x0f\xb1\x91\x26\xa4\xff\xbc\x7e\x49\xfd\x3b\xfa\x25\xf5\xb3\xfb\x25\xf5\xf6\xfa\x25\x55\xec\x17\xb3\x3e\xd6\x12\xec\x17\xe6\x06\xe7\xbc\xc8\x1f\xe9\xc0\xbf\x5d\x18\x79\x70\xdc\x55\xb4\xed\xb9\xe9\x9e\x7b\x27\x8a\xf1\x2c\xb6\x34\x6e\xf2\xf6\xec\x6b\x37\x67\x74\xec\xef\xa9\x17\xfa\x23\xb4\xff\x9e\xd7\x86\x33\xc7\xde\x3a\xd7\xe7\x19\x3b\xd9\x51\x3c\xde\x60\x69\xdc\xf5\x50\x4b\x66\xfb\x83\x3b\x1b\xb0\xc8\x49\x8d\x10\x39\xc4\x96\x20\x25\x32\x79\xf5\xca\x18\x45\x74\x44\x78\x58\x68\x88\x5c\xc6\x31\x18\xa2\x44\x26\x08\x91\x24\x59\x83\x1a\xe2\x63\x31\xa7\xb6\x00\x2b\x33\x30\x3a\xa5\xc1\xcd\xd2\x3f\x07\xc3\xca\x0c\xb8\x01\xb4\x2e\xfe\x7f\xbf\x76\xf4\xd7\xfc\x2f\x9d\x60\xf8\x05\xff\x81\x1b\x74\xdf\x3e\xf4\x27\x30\x78\xf8\x5f\xc1\xe5\xe7\xfa\xbf\xc8\xbf\x00\xa7\x2e\xae\xbf\x08\x77\x5c\x1c\xb8\x08\x63\x7c\xef\xc5\xf5\x5f\x14\xf3\x12\x91\xaf\x31\x7a\xf6\xbf\x91\x0c\x9d\x10\xc5\xa9\x38\x4a\x11\x3d\x82\x04\x8d\x6b\x94\x00\xc3\x88\xd6\x63\x26\xc0\x78\xa0\x09\x5e\x47\xb3\xd7\x5d\x4e\xa4\x54\x4f\x34\xb7\xc4\x0d\x57\xbd\x89\xcb\x17\x90\x70\xa1\x13\x01\x30\xbd\x04\x18\x60\x9a\x04\x19\x2b\x1c\x21\x24\x43\x32\x85\x42\xc1\x72\x1a\x0b\x08\xcb\xd9\xe9\x50\x41\xc6\x14\xf0\x93\x6c\xe1\xce\x6f\x6d\x7e\x9d\xb6\xf7\x2f\xac\x86\xf9\x16\xa7\x42\xf1\x22\xaa\x0d\x31\x48\x8c\x2a\xc5\x18\x75\xb3\x14\x74\x41\x00\x23\xdc\x0c\x28\x4e\xad\x54\x44\x46\xc8\x39\x14\x0f\xf1\x9c\x68\xa3\x12\x27\xb7\x4a\xe7\x14\x19\x98\x64\x3a\x27\x44\xe5\xb6\xfb\xaa\xab\xeb\x33\xf3\xba\x4b\x74\xb0\x16\xda\xca\x9d\x43\x9b\x76\x34\xa4\xb0\xb3\xf1\xfa\x4c\x5d\x5c\x8a\xa7\xdd\x99\x12\x53\xd5\x98\x5b\x68\x83\x4e\xca\x5b\xbe\x83\xb5\xe2\x72\x6e\x10\xb1\x52\xde\x64\x44\x28\x17\xde\xb8\x02\x38\x95\x05\x9c\x0e\x95\x46\x06\x3b\xee\x28\x29\x60\x7f\x71\xf8\xc4\x76\xab\x98\xdf\xf9\x97\xac\x15\x3f\x43\xcb\x28\xbc\x91\x2c\x06\x46\x2c\xa2\xa4\x45\x4c\x6e\xa7\x43\x85\x35\xf9\xc5\x77\xb2\x56\xeb\xf6\x13\x87\x91\x9c\xff\x1d\xff\x36\x77\x90\x7d\x9e\xf2\xb9\x17\x20\x1f\x5a\x87\xa6\xd1\x41\x74\x1f\x14\x8b\x92\xc3\x48\x1a\x83\x01\x13\x0c\x64\xca\xa0\x51\x69\x65\x2c\xcb\xc9\x39\x56\x3e\x65\x4c\x8c\x4f\x0f\x63\x43\x42\xc3\x43\x43\xc2\xa7\xf4\x4a\xac\x88\x51\xcc\xc6\x02\x51\x03\xc7\x12\x6e\x28\x0e\xe4\x09\x10\x1a\x22\x0f\x1d\x4a\x82\xf0\x14\x88\x8c\x08\x8f\x1c\x42\xd1\x28\x46\x11\x1d\x33\x14\xe0\x78\x51\xfb\x4c\xa9\xc9\xba\x28\x36\x22\x42\x13\xd1\x90\xe8\x1d\xbf\x9d\x07\x49\x25\x22\xa3\x23\x23\xa2\xff\xc1\xa7\xe2\x86\x1e\xef\xc0\xa1\x43\x33\x33\xeb\xd7\x37\x34\x78\x3c\x19\x19\xb1\xb1\x08\x1d\xba\xef\xd0\x7d\x67\xcf\xdc\x75\xea\x8e\x63\x33\x07\x67\x0e\xee\xdf\xbb\x73\xc7\xe2\xfc\xfa\xe9\xf5\xd3\x5b\xb7\x8c\x8f\x6d\xdc\xd0\xb0\xae\x61\x5d\x5f\x4f\x77\x57\x5b\x8b\xc7\xe7\xf1\xd5\xd5\x54\x94\x7b\x4b\x32\x0a\x32\x0a\xdc\x4e\x5b\xae\x35\x2b\xd6\x14\x6b\x12\x33\x7e\x22\x25\x52\xea\x63\xf5\x19\xc2\x94\x92\xe4\x75\x9d\x48\x13\x76\xdd\x57\x29\xfd\xc7\xca\x8b\xea\x1b\x6e\x15\xa6\xcd\x0d\x25\x57\xdf\xab\xbc\xee\xe2\x0f\x21\xcd\xd5\x90\x63\x6d\x70\xa7\xe1\x29\x1c\x1e\xa7\x8f\x77\x64\x61\xf8\x00\xd2\xdc\x0d\x56\x6b\x43\x7e\x1a\x9e\xc6\xe1\x1a\x43\xbc\x3d\x0b\xd7\xd1\xdf\xd6\xcd\x90\x29\xf1\x97\x6c\xcc\x7f\xeb\x86\x9f\xfc\xcd\x2b\xaa\x63\xac\x76\xe1\xa7\x46\x2c\x56\xb6\xf2\x09\xfc\x07\x38\xcd\xed\x13\x8b\x86\xc5\xe9\x13\xec\x59\x8c\x93\xfe\xb2\xfa\x99\xe4\x2f\x96\x2a\x5b\x62\xa2\xad\xca\xa2\xd2\x27\x45\x17\x99\xf9\x8f\x33\xab\x57\x7d\x0f\x11\xbe\x8f\x74\x89\xdf\xfc\x9f\xac\xfc\xc6\x7f\x68\xa9\xb6\x25\x24\xd8\xaa\x2d\x99\x85\x85\x99\x6c\xc2\x75\x35\xdd\xa4\xe4\xf2\x55\x24\x47\x4d\xfc\x90\xec\x14\xfb\x0e\x22\x28\x04\x45\x52\x2f\x5a\x32\x4a\x47\x26\xb4\xc5\x9b\xaa\x4d\x53\x33\x0c\x36\xa5\x27\xc7\x69\x94\x31\x8a\xa8\xc8\x88\xf0\xd0\x08\x60\x8c\x86\xa4\x44\x82\x80\xa9\xf7\x5d\xb6\x0a\xdb\x10\xe5\x1d\xef\xa1\xc6\x7c\x12\x10\x1b\xe8\xd6\xae\x42\x98\x05\x06\x30\x33\xb8\xf2\xf7\x1e\x6f\x0c\xcb\x22\xc4\x86\xb0\x21\x72\x19\x22\x88\xc4\x70\x9c\xca\xc2\x6a\x18\x9d\x92\x31\x29\x1d\x0c\xb8\x59\x95\x81\x95\x19\x9c\x2c\xb8\x0d\x1a\x16\x64\xac\xc9\xc0\x98\x18\xb7\x12\x34\x4a\x19\x43\x5a\xc3\x76\x0c\x54\x7b\xc2\x77\x0c\x54\xe3\x94\x08\x68\xe4\x9f\xbe\xba\x2d\x82\xff\x27\xe8\x65\x1e\xc4\x50\x56\xc9\xff\xdb\xd2\x5f\x30\xff\xb5\x2a\x30\x5a\x14\xf7\x96\xbd\xc3\x0c\x28\xce\x96\x7f\xb3\x28\x92\xff\x12\x0c\x92\xc7\x23\xa1\x8d\x7f\x94\x57\x84\xef\xda\x50\x53\x28\xfc\x1f\x5c\x8a\xbe\x50\xf9\xcf\x4b\xa7\x14\x17\xaa\xfe\x19\x7f\x88\xa1\xba\x8a\xff\xd1\xd2\xff\xc1\xfc\xeb\x35\x60\x11\xed\x41\x3f\x45\x88\x4c\x52\xce\xec\x18\x94\x8a\x5c\x5e\x07\x83\x31\x43\x40\xd8\xe4\xea\x11\xc3\x02\x46\x0c\x0e\x06\x1b\x05\x82\x45\x09\x49\x4d\x56\x29\x49\x0c\x51\x68\x55\x9c\x70\x4c\xc8\xc0\x4d\x41\x7f\x12\xc2\xc9\x10\x88\xe6\xd3\x12\xe8\xe2\xbf\xd1\xc5\x9f\x5c\x84\x6f\x0d\x3c\xb3\xbb\xb6\x76\xf7\xb3\xfd\xfc\x25\x68\xab\xdd\xb5\xd6\x99\xb7\x76\x57\x1d\x7f\x09\x3e\xc9\x83\xa7\xf2\xf8\xd7\xfc\xcf\xb2\x97\x71\xd1\xd6\x87\x45\x66\x97\x61\xb0\xb6\xcd\xfb\x7c\x3b\x3a\x73\x30\x62\xc4\x1c\x9f\xa4\x09\x31\x28\x1e\x65\xa3\x4b\xde\x28\x83\x5e\x11\xce\x60\x8e\xa5\x9d\x1e\x20\xdd\x48\x0c\xe6\xfc\x8a\x5b\x36\x9d\xfb\x44\x00\xbb\x64\xae\x4a\x5d\xe5\x63\x48\xbd\xd9\x6d\xb1\x9f\x57\xd3\xe7\x56\x42\x53\x43\xd2\x9c\xa1\x19\x1c\x97\x60\x61\x65\xe0\x36\xac\xe0\x74\xd3\x7c\x56\xde\x50\xe6\x7f\x9a\xf9\xef\x37\xc3\xb0\x63\xfc\xd1\xc9\xe1\x67\x0b\x16\xa7\xd8\x82\xa7\xc7\xb6\x3e\x3e\xe6\x58\xd4\xb7\xec\x5d\x9b\xd7\xe7\x2b\x8c\xcd\x7c\x70\xb8\x6f\x6f\xb3\x3e\xb5\x14\xc6\x4a\xbe\x35\xfe\xee\x85\x75\x4d\xf5\xfe\x5f\xb0\xff\x76\x6f\x4b\x30\x83\x68\xb2\xb3\x2e\xcb\xff\x51\xc7\x06\x9a\x41\x54\x38\xc3\xde\x42\x88\x94\xc9\x62\x90\x0c\xa5\x7a\x93\x10\x83\x99\x99\x40\x40\x92\xfa\xa6\xb1\x02\x0a\x07\x29\x5b\xfa\x74\x91\xe1\x16\x45\xde\x72\xd8\x20\xe2\x30\xbe\x8a\x10\xd1\xb3\x67\x90\x0c\x95\x88\xf9\x81\x24\x33\xf6\x75\xd1\x4d\xd4\xb0\xbb\xe2\x21\x81\xdf\xa5\x5c\x12\x2b\x1f\xa3\xf7\xab\x76\xe2\x2b\x3b\xc4\x90\x06\xe1\xec\x46\x3f\xe2\xff\x40\xd6\xb3\x97\x51\x32\xcd\xa1\x0b\x88\xb0\x40\x86\x28\x83\x3b\x25\x37\x94\xb8\x1c\x02\xd8\xfe\x0c\x45\x9c\x36\x40\xe5\x70\x03\x3d\x09\x4d\x63\x4a\x4a\xfd\x91\xdf\x3f\xf6\xe3\xb3\xcd\x45\xdb\xbe\xb8\x15\xd6\xec\x6b\x37\x15\xcf\x5d\xdc\xf2\x7d\x4a\xd2\xef\xff\xb4\xf9\xde\xf7\x0f\xcf\xbc\x75\xba\x83\xd9\x80\x6b\x17\x1f\xe9\xd9\xfc\xdc\x62\x99\xdf\x48\xed\xe7\xdf\xe6\xff\x42\xca\x88\x07\x25\x23\x8b\x37\x23\x32\x02\x33\x35\xc1\x24\xc5\x12\x2e\x9f\x1a\x89\x35\x4c\x43\x72\x52\x62\x42\xbc\x46\x1b\xcd\x0a\x8b\x40\x6c\x86\x46\x6a\x86\xdb\x15\x6c\x86\xce\xaf\x7b\x6f\xeb\xbb\xe7\x7b\x21\x7f\xec\xde\x5e\x6d\xf5\x4c\x6b\x36\x40\xdd\xf6\x87\xdb\xde\xa3\xa1\x5f\xfc\xc3\xee\xa9\x4b\x0b\x75\x27\xe7\x3a\x63\xd6\x45\x17\x75\x6d\xad\xec\x3f\xd2\x99\xe1\xff\x44\xc2\xf1\xff\x06\x21\xf2\x75\xf6\x32\x8a\x45\xc5\x5e\x0f\x00\x70\x50\x2f\x07\x4e\x50\xec\x38\x18\x0c\x0d\xc1\x2c\x4b\x03\xd4\x29\x9b\x4b\x9c\x8f\x04\x03\x6b\x62\x51\x6c\x00\x03\x10\x13\xc6\x25\x5b\x42\xb0\x4e\x84\x01\x88\x50\x11\x1a\xc8\x43\x8e\xf1\x7b\xe0\xf5\xb3\xfc\xc6\xfa\xe1\x63\x0b\x0b\xc7\x86\xdb\x60\x90\xbd\xec\x2f\xf3\x47\xe1\x7f\xe2\x7f\x03\x29\xfe\x46\xf6\xb2\x7f\x0c\x12\xf8\xff\x8b\xcf\xd3\xb6\xbc\x8f\x10\x19\xa5\x31\x7a\x85\xde\xfc\xeb\xdb\x82\x64\x08\x23\x19\x16\xdb\xf4\xb9\x2d\x11\x34\x4c\x29\x16\xd4\xa1\x72\x00\x71\xf2\xcf\xc2\x1d\x0f\xf1\x5f\xf1\x0d\x1f\xd8\xbe\xfd\xc0\x70\x23\xa4\x12\x8f\xff\xbf\xfd\xff\x0a\xff\xf9\xc7\x3f\x8a\xb1\x45\x7f\xfa\x13\xfc\x4a\xca\xe9\xf9\x20\x8d\x35\xce\xf6\x66\x86\xaf\x8e\xd8\xc4\x58\xa4\xd9\x50\xfb\xb8\x15\xc1\x4b\x2b\x90\x20\x5a\xa7\x36\x10\xbf\x74\x60\xef\x1c\x7f\x11\xbe\x75\x00\x26\x8e\xf2\xdb\xe1\xb9\xd3\xf8\x4b\xfe\x76\xb6\x7e\xc4\xbf\x01\x3f\xec\xb7\xfb\xc5\x5c\xfc\x6b\x10\x22\x8f\x51\xbc\xfe\x67\x3f\x2b\xee\x36\x9e\xf5\xdc\xd9\x79\xfe\x65\x78\xf3\x1c\xe4\xdd\xcb\x9f\x83\x73\xf7\xc3\x7f\xf2\xd1\xcc\xfb\xa3\x34\x5e\xea\xbf\xfc\x3f\x10\xf9\xb4\x11\x22\x4f\x51\x0e\x00\x93\x57\x2f\x4c\x33\x06\x11\xe1\x29\xd0\x23\xb2\xad\xac\xa4\x0f\x11\x9f\x22\x66\xce\x95\xd2\xf5\x3a\xbe\x07\x3f\xc6\xc0\xcf\xcc\xf2\x99\xdb\xb6\x31\x4a\xfc\xd0\xc8\xa7\x2f\xd1\x57\x12\xe6\xf3\x30\x42\xe4\x51\xe2\xf9\x8c\xba\xe3\x3e\xb7\xee\x5f\xc0\x2f\xe0\x23\xfe\xae\x05\x5e\xbf\xb0\x80\x3b\xe1\xb7\xa3\x4b\xd9\x62\x30\x13\x02\x34\xce\x5f\xa1\xe3\xa1\xa3\x79\x6e\x10\x12\x83\x53\xa5\x84\x40\x2c\x2b\xb1\x0c\x71\x40\x63\x59\x84\xfa\xb3\x14\x71\x69\xd4\xb4\xe9\x08\x72\x90\xb2\xce\x3c\x09\xf7\x4e\x1f\x89\x7f\xee\xde\x72\x6e\x5d\x66\x7a\xd3\xde\xb5\x90\x55\x9e\x9b\x12\x23\x0b\x8b\x37\x17\xb7\xbb\xdc\xdb\xf8\xb9\x59\x3c\xc3\x54\xc0\x86\x47\xbf\x3b\x31\xf8\xe6\x85\x01\x66\x03\x98\x2b\xd6\x0c\x0e\xe7\xb8\xa7\x46\x7b\xcb\x8d\xe0\x37\x49\xc9\x16\x00\x1d\xe2\xff\x4a\xf1\x42\x34\xfe\x23\x3c\x0c\xe3\x9a\x40\x4a\x3f\xc4\x30\x34\x40\x28\x2e\x00\x81\x4d\x4d\xa1\xcb\x38\x4e\xa3\x4a\x13\xce\xe9\x15\x0d\x13\x0f\xb1\xe5\x86\xbd\xec\xea\x3f\xbd\xc1\x9e\x56\x33\xd5\x92\xea\x69\xce\x55\xa7\x95\x0f\x57\xb9\xe6\xf8\x97\xe7\xb0\x03\x4f\x43\xcd\xce\x67\x07\x8b\x8e\xef\xec\x8f\x59\x1b\x53\xb5\x76\xc2\x5d\xbf\x6f\xc0\x0d\xfe\x4f\x82\xa1\x9d\x08\xa3\xcd\xd7\xfe\x2f\xf1\xb1\xdf\x44\xe5\x68\x0d\x72\x78\x73\xab\x4b\x0d\x0c\x61\x18\x40\x04\xd7\xcb\x20\xc0\xd4\x94\x4c\x3b\x2b\x88\xf9\xb4\xa6\x64\x5b\x14\xc9\x62\xac\x00\x6b\x94\xcc\x64\xc4\xa9\xc8\x2b\x21\x01\x3b\x28\x71\xd8\xdd\x62\xe2\x49\x12\x08\x51\xc7\x32\xb5\xda\x01\xb1\x6a\x4d\x09\x13\x48\x4f\x4a\x54\xc4\xd7\x72\xa2\xc4\x36\x53\xde\x76\x6c\x53\xb3\x23\x21\xc6\xe0\x6e\x1c\x2c\xc2\xa5\x5d\x2e\x4d\x8c\xde\xd3\x32\x5a\x56\xed\x71\x77\x15\xa5\x46\xa5\xe4\x54\x74\xbb\xdd\xdd\x95\xb9\xa9\x51\x1a\x6b\x65\xb6\xa5\xdf\xc5\x2b\xc6\x36\x9a\x8b\x33\x62\x15\x99\x35\x6e\x83\x3b\x23\x31\x4a\x96\x00\xe9\x69\x29\x69\xee\x81\xfd\x67\x1f\x6f\x01\x52\x71\x74\xf7\x96\xb6\x1c\x3c\x8e\xbb\x0e\x3d\xde\xc4\x7f\x5a\x76\x64\xcf\xd6\xf6\xdc\x04\xeb\xdc\x1d\x0f\xb6\x83\x2b\x7f\x61\x7a\xb8\x21\x2b\xcb\xb7\x71\x7a\xb1\x80\x7f\xd3\x77\xe6\xe8\x62\x8e\x42\x89\x0b\x2e\xfc\x4f\x83\x69\xd3\x8e\x23\x15\x50\x51\x7a\x72\xb1\xd9\x58\xd2\xd6\xb3\x36\x83\xf6\xd1\xcc\xb5\x8f\xc9\x2e\x9a\xc3\xb2\x1a\xfd\x8b\x37\x3c\xdf\x96\x4a\x33\xb9\xa1\x20\xb7\x56\xfc\x72\x57\xa5\xae\xe8\x2a\x4d\x90\xf0\xf8\x33\x6e\x48\x09\x72\x1e\xdf\xb2\x06\xfb\xad\x6b\xf0\xea\x6e\xbc\x46\xcf\x7e\x0e\x96\x03\xb2\x45\x0e\xad\xac\x84\x4c\xb3\x22\x5e\x27\x8d\x9c\x64\xdf\x34\x39\x03\xf6\x4d\x95\x94\xe6\xc0\x68\x0c\xf2\xdd\xa9\x68\x32\x40\x07\xa8\xd5\x1a\x97\xcb\x1d\x34\xed\x93\x5d\x4f\x1d\x76\xef\xad\x9d\xfe\xf2\xae\x72\xb0\x74\xed\xed\xf2\xb4\xbb\x12\x73\xfb\x8e\xae\x31\x56\xa7\x6d\xd9\x05\xa0\xab\x9f\x69\x6e\x99\xad\xd3\x43\x47\xa3\x75\xa3\xdb\xff\x67\x98\xdd\x58\xd7\x08\x4a\x4b\x75\x9e\xb3\x3a\x33\x26\x1c\xe7\xa7\xe9\xd6\x3d\xfc\xfd\xe9\xff\x8f\xba\xf7\x8e\x6f\xab\xca\xf6\xc5\xf7\xda\xa7\x48\xae\xb1\x2c\xcb\x72\xb7\x65\x35\xcb\xb2\x64\x59\xd5\x92\x65\x5b\xee\xbd\xc8\xbd\xc7\x8e\xbb\x63\xa7\x39\x4e\x9c\x38\x09\x81\x84\xd0\x62\x42\x42\x0f\x29\x0c\x4c\x23\x34\x43\x08\x70\x61\x60\xe0\x52\x86\x69\x30\xcc\x85\x3b\xf3\xa6\xdd\x37\x33\x4c\xb9\x24\xcc\x70\xa7\x0f\xb1\x8e\x7e\x9f\xb3\xcf\x91\x62\xa7\xcc\x7b\x9f\xf7\xdf\xcf\x7c\x1c\x64\xed\x75\xd6\x59\xbb\xad\xbd\xd7\xde\x6b\x7d\x57\x53\xcf\x13\x87\xdb\xa9\x69\x5c\x31\x7d\x8b\xaf\x65\xe0\x89\x9b\x9b\x62\xa2\x1b\x7e\x7b\x62\xa6\xf9\xd4\xfe\xe6\xce\xc3\x8f\x37\x4f\xed\xfb\x71\x73\x6c\x1c\x7c\x78\xf8\xed\xa2\xd2\xb7\xb6\x6d\x76\x2d\x4d\x55\x16\x8f\x2c\xb8\x88\x6e\x2a\xe5\xbe\x24\xe6\x21\x37\xfa\x72\x10\x4b\xb1\x7e\x21\x95\x10\x1d\xd6\x4c\x64\x9a\x2b\x25\xa2\x0a\xf1\x8b\xb8\x61\xc4\xaa\x26\x39\x50\x43\xc1\x64\xd0\xc7\xfd\x06\x52\x17\x20\x8d\xfb\x04\xfe\xb1\xb0\x18\xb1\x39\x90\xc2\xd4\x4d\x00\x4c\x5c\x4e\x63\x1a\x44\xe0\x12\x40\x65\xdc\x37\xe9\xbd\xb4\x07\x6d\xb8\xce\xfb\x92\xae\xf3\x3e\x59\xf8\x7d\xeb\xde\x55\xc9\x05\xf0\xde\x20\x82\xff\xbd\x7b\x2a\x62\x2e\xe0\xa3\x3e\x9a\x98\x58\x3d\x7e\x25\xde\x0f\x87\xf1\x51\x28\xa4\x44\x27\x7d\x91\x89\xc0\x80\x04\x28\x06\x87\x6f\x41\xf9\xad\x0c\x9a\x42\x0c\xa2\x10\x43\x8d\x49\x04\x30\x21\xe2\x28\x16\xbe\xdf\x4e\x27\xc9\x6d\x09\x21\xde\xf6\x2f\x28\x7d\x5a\x04\x34\x43\x03\xb3\xed\x46\xc4\xe2\x05\xb8\x6f\x03\xcd\xeb\x4a\xa5\x5a\xae\x8e\xe7\x2b\x46\x02\x6f\x6d\xd7\x03\x64\xc1\xfb\xc6\xc7\xe1\x9e\xab\x41\x59\x60\x0c\x9f\x87\x87\xaf\x07\xcc\x42\xe6\xd7\x6b\x08\xd1\xbc\x42\xe2\xf7\xd2\x9b\x7d\x91\x4a\x60\x80\x15\xeb\x1c\x4b\xf2\xcb\xaf\x93\x32\x5c\x77\x56\xb8\x19\x17\xeb\xa2\xb9\x51\x5d\xd6\x92\xf5\xfa\x22\xe5\x6a\x85\x5a\x5c\x51\xb4\x7c\x25\xae\x17\x2b\x89\x57\xa6\xa6\x60\xff\x35\xf1\x92\xbf\xc6\x05\xab\x97\xae\x1f\x34\x49\xce\x39\xa4\x08\xd1\x4d\x21\x6c\x1b\x0a\x28\x88\x5f\x87\xfd\x45\x0e\x18\x08\xc0\x8d\x10\x56\xb0\x06\xdb\x46\x25\xe6\xee\x4f\x54\x52\x6a\x99\x4e\x47\x80\xbf\x40\xba\xab\xee\xfe\x81\xef\x7e\x1b\x60\x17\xdf\x8a\x27\x1b\x98\x95\xc0\x34\xdf\x7e\xdc\x16\x38\xc1\xb7\x5f\x72\xa0\x59\x68\xbf\xdc\xe0\x45\xfa\x16\xe6\x2d\x64\x46\x45\xa8\xde\x57\x23\x13\xdb\x2f\xd7\x80\x69\x8a\xaa\xe7\xdb\x81\x66\xa8\x91\x50\xc4\x57\xba\x38\x06\x42\xd9\x40\x32\x50\x23\x20\x97\xc3\x92\xaf\x55\x67\xa4\x27\x25\x46\x47\x21\x33\x98\xa5\x6c\x82\x91\x21\x7e\xbc\x66\xca\x61\xcb\xa0\x94\xe1\x2c\x31\xeb\xb3\xed\x82\x2a\x9c\x04\x84\x62\x97\x2e\x2c\x16\x95\x0c\x96\x66\x8e\x51\xf1\x1a\xa7\xce\x3b\xff\xf5\xd9\xad\xa7\x46\xcd\x10\x48\xce\xe9\xbe\x73\xd4\xd6\xd5\x54\x91\xa9\x4d\xab\xee\x9a\xe4\xba\xf0\x0e\x48\xaf\xdc\xd6\xd1\xbd\xdf\xaf\x57\x6c\x3c\xfb\xd1\xc2\xb3\x91\x9e\x9e\xf9\xaa\xfc\x96\xd2\xbc\xc8\xd4\xdd\xbf\x78\x72\xa2\xf3\x81\xf7\xf7\xbc\xf0\xe4\xe0\x33\x47\xfc\x72\x95\x31\xa9\x37\x25\x5f\x93\x48\xb5\xec\x68\x3f\xb5\x58\xd7\x79\xec\xe5\xd1\x30\xd6\xe3\x1c\xdd\x4c\xa2\x84\xdb\x7c\x2d\x31\xc0\xf2\x75\x66\xd5\xd9\x42\x9d\x81\x61\x19\x60\xb7\x21\x16\x51\x34\x4b\x8d\x48\x41\x44\xce\xc8\x5c\x57\x6f\x43\x0e\x20\xb3\x29\xc7\x66\xb0\x65\x65\x24\x27\xc9\x65\x91\x11\x48\x0f\xfa\x08\xb1\xee\x7a\x11\xf7\x36\x94\x67\x38\x84\xd5\xe7\xe4\x2b\x4e\x11\xaf\x1f\x87\x99\xc2\x9f\x6d\x79\x6a\x77\x29\xec\xb9\x09\x8f\xe3\xc6\xc6\xe8\xba\xed\xf7\xf7\x4c\x3c\x3c\x61\x0f\xe8\x4d\xdd\x37\x77\x8c\xde\xe3\x2a\x4c\xab\xe9\x9d\xee\xaa\x9c\x6b\xb1\x46\xe0\x41\xd0\xd6\xce\x26\xf4\xdc\xf7\xd6\x6c\xa6\xec\xcc\xa1\x9e\xb9\x0d\x83\x5f\x3d\x50\xd7\x78\xf3\x53\xc3\xfd\xf2\xf6\x33\x4b\x0d\xd5\xde\x86\x6c\xb7\x41\x49\xad\x16\x8d\x1d\xaa\x91\xfb\x96\x86\x8b\x04\x3b\xe7\xbf\xb9\x6f\xd3\x37\x33\x2b\x28\x03\xe5\xfa\xf4\x2c\xac\xdf\xd0\x48\x08\x86\x1f\x0a\xef\x65\x72\x64\x49\x82\xea\xb9\x6a\xc7\xa0\x0a\x45\xca\xe3\x3b\x96\x5e\xbb\xa9\xcc\x39\xf7\xf8\x1c\x74\x2d\x36\xaa\xed\x93\x27\x27\xb9\xff\xd9\xb5\xeb\xeb\xf0\xc3\x65\x2a\x93\xe9\xbe\xff\xfb\xfb\xb6\xfe\xfb\x89\x6e\xbc\x09\x37\x2c\x9d\xee\x9c\x7c\x72\x6f\x25\x04\xea\x99\x95\xc0\x36\x7c\x0f\xd9\x6f\x73\x7f\xa6\x33\x89\xdf\xaa\xc1\xa7\x8b\x8a\xc4\x50\x23\x86\xe8\x87\x42\x91\xc9\xc6\x53\xd8\xbb\x24\x2a\x12\xe2\x19\x36\x81\x17\x45\xb0\x40\x9c\xce\xb0\x05\x22\x88\xb2\x65\xf0\xcc\x7c\x39\x14\x0c\xdd\xde\xad\x3a\x72\x0f\x86\xd2\xb9\x13\x6d\xef\x2f\x2e\x3e\x00\x5f\x7e\x10\x77\x46\x96\xce\x9d\x9e\xac\xba\x63\x67\x47\xfc\xa0\xea\xdc\xc1\xbe\x9b\xdb\xf5\xa1\x80\x7e\x5e\x8e\x37\xb8\x06\x7a\x03\xc1\xd9\x2b\xf2\x15\xc6\x02\xc5\xc4\x08\x73\x0d\x21\x9a\x41\xf4\x88\x84\xc5\xe4\x68\xe0\xaa\x00\x3b\x31\xa3\xbc\x42\xab\x95\xc9\x88\x1a\xe3\x55\xf3\xd5\x79\xe5\xe5\x7c\x53\x81\x13\x6f\xda\x05\x59\xe5\x93\xb5\xa9\x05\x62\x5a\x79\xf5\x06\x08\x9c\xd9\xc5\xac\x04\x3a\xf0\x53\x6b\x13\xcb\xd7\x74\x1b\xf1\xdf\x03\x9b\x84\x7c\x5a\xdf\xe6\x1a\x68\x44\xec\xb4\x1b\xcb\x95\x74\x3d\xb9\xd2\x51\xba\x4c\xa1\x5f\x2b\xd7\x35\x39\xdd\x89\x5c\x65\xb8\x66\x51\xdf\xb8\xa3\x21\xc3\x99\x16\x13\x99\x92\x9a\x12\x69\xa9\x32\x25\x06\xfe\x6d\x51\x08\xe3\xbf\x3c\x27\x64\x6e\x1f\xa5\x59\x1a\xe7\x54\xf4\x5a\x71\x1d\xd9\x14\x0b\x38\x1e\xc1\x4b\xb4\x9f\x79\x1b\x69\x90\x05\xf9\x7c\xc5\x59\x99\xd7\xcf\x85\x9a\x7e\x25\x17\x6a\x06\x34\xea\xb4\x80\x8c\xb9\x5a\x8b\xce\x92\x9a\x9c\x20\x8f\x8d\x46\x1a\xd0\x48\xd7\x60\xb9\x08\xc8\x43\xae\x70\x42\x0c\x7e\xc0\x09\xd9\x50\x95\x09\x19\x18\x57\x1d\x7e\xfb\x50\x59\x86\xa7\x6b\xdb\x1d\xfe\x9b\x5e\xbb\xa9\x14\x80\x5a\x32\x6d\x7a\x78\xae\x70\x63\x47\x43\xb6\x2e\xb3\x69\x68\x5b\xcf\xd8\x3d\x43\x66\x58\xbd\x0c\xa6\x8d\x27\x98\xb7\xa7\x9e\xfd\xed\x4d\x6f\xb5\x3f\x7e\xdf\x81\x41\xfb\xd0\x57\x7e\x71\xe0\x9e\xb9\xc9\x37\xef\xeb\x93\xab\x8c\xc9\x3d\xa9\x05\x9a\xc4\x2f\x96\xc7\x1e\x7d\x77\xb4\x75\xf0\xe9\xc3\x2d\x7c\x5b\x7f\x2d\x78\x91\x2e\x61\x56\x90\x06\x79\x7d\x6e\x1a\x10\x68\x00\x23\x5c\x1f\x8e\x1c\xc6\x88\xa5\x31\x3b\x1a\xca\x5d\x96\xb8\x36\x70\x58\xa7\x49\xc8\x89\x17\x4d\x23\x95\x43\xa5\x84\xeb\x41\xd7\xe9\xf4\x6a\x07\xf5\x68\x40\x4f\x6d\xc2\x5c\xe5\xdc\xd3\xbb\x4b\xaa\x97\x9e\xd8\xd4\xff\x95\x03\x0d\x78\x0f\xd8\x7b\x97\xea\x1a\xf7\xf7\x59\x5f\x78\x66\x2f\x53\x3f\x31\x18\xf8\x1f\xec\xdd\xfe\xf8\xe4\xc8\xc9\x59\x77\xe1\xec\x99\xc9\xea\xdd\x5d\x05\x79\xfe\xf9\x9a\xa7\x9f\x05\x01\x87\xf1\x24\xb7\x40\xdb\x69\x0f\xd2\xf1\x2b\x1c\x2f\xab\x8e\xc8\xda\xb0\x62\x21\xd7\xa8\x37\x10\x39\x29\x2c\x72\x0a\xd5\x98\xea\xcb\xbe\x86\x8e\x41\x14\x43\x6d\x0c\x93\x23\x7e\x85\xcb\xf9\xbf\xa9\x1a\xf1\x3f\xa5\x8e\x06\xcc\xd4\x38\xe6\xea\xa6\x9f\x58\xf4\x55\xef\x7b\x62\xb4\xff\x2b\x07\x1a\xf1\x1e\x6c\xeb\x5b\xaa\x6b\x3c\xd0\x67\xb3\x0f\xdf\xd9\x35\x43\xfd\xc7\xe4\x60\xe0\x8f\x74\xc9\xb6\x47\x27\x46\x4e\x6e\xe6\x6b\x37\x51\xbd\xab\xcb\x62\xf4\xef\xa8\xe9\xb9\xa5\x3b\x6f\x92\xe4\x98\x44\xf5\x5c\x03\xbd\x8d\x59\xc1\x3a\xf4\x4c\x2d\x42\x7a\xf8\x4e\x30\x12\x95\x82\x04\x7e\xc0\xfd\x0a\x21\x24\x7d\x0e\x60\xa5\x74\xc5\x66\x24\xb4\x3d\x5c\x03\xbd\x9d\xf6\x60\x1d\xfa\x7d\x87\x40\x5b\x16\x1c\x23\xb4\x9f\x23\x84\x22\x9e\x03\x78\x39\x38\x46\x88\x31\xc9\xb9\x26\x15\x71\xbc\x2c\x3e\x13\x39\xfc\xa3\xb1\xb8\x98\x86\x37\xb8\x24\x40\x1d\xa1\x0d\xa9\x1b\x52\xe2\xe3\x50\x2c\x8a\x51\xc9\x24\x6c\xa2\x11\x64\x36\x99\x2a\x94\x53\x08\x64\xaa\x58\x8a\x5c\x5c\x51\xc7\x77\x73\x95\x53\x4f\x2e\x55\x54\xec\x7d\x6a\x0a\xaa\xb8\x57\x9b\x0f\xf6\x15\x58\xfa\x0e\xb6\x50\xf5\x78\xe2\x8b\x56\xef\x96\x53\x23\x23\x27\xe7\x3c\x10\x48\xc5\x37\x81\xb9\x6d\x67\x75\xed\xae\xae\x7c\x10\xe6\xd0\x04\x42\xf4\x22\x89\x33\x30\xa1\x52\x9f\x17\xd1\xc0\x00\xdf\x21\x80\x18\x0a\x18\x01\x5e\x4c\xca\x62\x7e\x2e\x49\x84\x0d\xbc\x4a\x05\x48\x65\x52\xe5\x69\xb2\x93\x94\x71\xb1\x31\xd1\x51\x11\x28\x0b\x32\xf9\x45\x46\x25\x06\x23\xdb\x64\x36\x99\xab\x84\x72\x39\xc9\x72\x43\x32\x16\x90\xc0\x03\x5e\x56\xf8\x41\xdf\x6d\xfd\x66\x73\xff\x6d\x7d\x2f\x2f\x34\xd9\x2a\x73\xe5\x80\x33\x94\xdb\x53\xb3\x30\xce\x69\xdc\x52\xfb\xef\x2f\x97\x0e\x78\xd2\xd3\x8a\xfa\x7d\x50\x31\xff\x70\x77\xf7\x83\x3b\xca\x01\x4f\x7c\x71\x1e\xb0\x67\x60\xa7\x77\xe0\xd5\xfe\x9e\xd7\x07\xba\x1f\x59\xa8\x84\x71\x7c\x13\x38\xba\xb7\x17\x97\xec\xec\x73\x01\x22\xb9\x09\x2e\xd2\x77\xb1\x49\xc8\x8e\xfc\xa8\xd8\xe7\x89\x04\x8a\x75\xe4\x62\x71\xbb\x02\x3b\x10\xc5\x62\x96\xc2\xdb\x42\xb0\xb6\x99\x0d\x12\xc0\x38\x7c\x11\x6d\x32\xea\xf4\xc9\x5a\xb9\x4e\xf4\x73\x23\x49\xd0\xae\x00\x22\xf3\x15\x71\x09\x15\x09\x27\x4b\xa3\x1d\xb0\xe6\x4e\x95\x6c\x1f\x74\x3a\xfd\x7c\x74\x9a\xa9\xbc\xc7\x5d\x31\xa9\x85\x05\x88\x48\xb1\xe8\x74\xee\x9c\x94\x38\x16\x20\x33\x71\x47\x5a\x26\xe0\xec\xda\x79\x7f\x6e\x85\x5d\x1b\xad\xdb\xed\x77\x77\x97\x99\xd2\x62\xe0\xef\x31\x6a\x93\x3b\xdb\x58\x92\x97\x16\xc7\xb2\x71\xa9\x79\x25\xb9\x9a\x22\x8b\x36\x86\xa2\x00\xe7\x17\xdd\xb4\x38\xeb\xb7\xf8\x5c\xb8\xec\x72\xbe\xa6\xbb\xde\x6a\xa8\xea\x1b\x9b\xc8\x9f\xf8\xd6\x38\x8c\xbc\x3f\x36\xfe\xf6\xa9\x61\x50\xe6\x79\x35\x0d\x3d\x79\x8d\x63\xdb\x76\xb9\x60\x2a\xab\x30\x37\x29\xb7\xaa\x6f\xd3\xa6\xdc\x06\x7d\x5f\x6f\x5b\xa9\x2e\xc9\xe8\x51\x29\x8c\x89\x08\x50\x61\xf0\x53\x82\x37\x5b\xce\xeb\xf1\x4c\x01\x93\x9e\xc1\x80\x19\xe0\xfb\x1a\xd1\x80\xf8\xbe\x26\x53\x93\xac\xbe\x21\xe0\xb6\x12\xaf\xc3\x6e\x34\xa8\x72\x54\x1a\x09\x9b\x64\x04\x21\x23\x9a\x2d\x74\x02\xe8\x08\xd9\xf1\x19\x21\x63\x4b\x68\x2d\xb1\xdb\x59\x33\xd6\xe3\x9c\x64\xbb\xdf\x75\x74\x77\xf5\x64\x85\x4a\x5f\x37\x5d\x16\x08\xf4\xdd\x37\xed\x49\x75\xb4\xd8\x2d\x65\x06\x79\xac\xca\xa1\xcf\x2d\xb7\xaa\x95\x51\x80\xb3\x93\x77\xa6\xaa\x31\xce\xeb\xba\xb9\xab\x62\xb8\x34\x13\xc3\x7e\xef\x4c\x6b\x3e\x9e\x80\xdc\xe6\x2d\x95\x15\x53\xd5\x9a\x09\x28\xd8\x78\xf7\x90\x73\xeb\x48\x93\x3c\xa1\xbc\x6b\xca\x33\x92\x5d\xe7\xd5\xe7\x54\xf4\x8c\x4d\x17\x4c\xbc\x37\x3e\xf2\xfd\xf1\xa9\x77\x4e\x0e\x01\xe4\x77\x6c\x2b\x23\x3a\xaa\x3d\xf8\x3b\x7a\x0f\xed\x41\xc5\xbc\x3e\x65\x80\xa2\xa5\x24\x3f\x30\x02\x86\x66\x80\x5c\x15\x53\x48\x80\xbd\x22\xb5\x4d\x0a\x27\x6c\xc8\xc0\x8d\xaa\x1c\x95\xde\xa0\xcc\x23\x4a\x87\xd8\xfa\x4a\x89\x08\xb6\xc0\x57\x8f\xe4\xe1\x50\xb3\x3a\xbd\xc3\x4c\xe9\xd5\xfa\x50\x90\xb1\x9a\x2f\xc1\xdf\x4c\xb3\xd5\xe6\xbd\x48\x61\x2a\x26\xdd\xa2\x71\x35\x59\x12\x31\x56\x67\xed\x89\x51\xc6\x47\x01\xce\x6b\xdb\xdd\xb4\xb4\x9b\x81\x6c\x6f\x87\xf5\x3c\x7e\xd6\xd5\xe7\xd3\xe4\xd4\x8c\x78\x3e\x61\x3f\xed\xb8\x7b\xc2\x43\xd1\x05\xb5\x85\x46\xb9\xf5\xd5\xb6\x0c\x9b\x26\xa1\x68\x78\x6f\x99\xff\x4b\x4d\xfa\x96\x56\x7f\xce\xc0\xa3\x8b\xd5\x78\xcf\x2e\xbf\xb9\xd2\x94\x08\x63\x90\x62\xa9\x31\x5b\x5b\x5c\xe9\x30\x0a\x39\xcd\xf3\xfc\xf8\x7f\x81\x7b\x90\x76\x31\xcf\x22\x13\x2a\xe4\xd7\xc2\x64\xa0\x51\x16\xb1\x39\xec\x36\x4c\xd5\x20\xc4\x02\xbf\x5e\xaf\x8d\x98\x60\x98\x2b\x10\x57\x85\x2e\x64\x42\x79\xd9\x2a\x55\x8e\x8a\x80\x0b\x84\x7b\x78\x8d\xff\x7f\x62\xa2\x52\x41\xc2\x72\xcc\x14\xbf\x8b\xd6\x83\xb0\x05\x72\x38\x6c\x90\xfa\xb8\xff\xce\x09\xb7\x63\xf8\x48\x2b\xf7\x3b\x48\x9e\x7e\xee\x60\xad\xae\x72\xd8\x7b\xd3\x21\x0c\xe9\x39\x7b\x15\xa9\xb1\x2c\xd8\x7a\x76\x55\xe0\x1a\xb9\xda\x9e\xdd\xd8\x73\x10\xdf\x3b\x0e\xd9\xb5\x5b\x9b\x1a\xb7\xd7\x69\xc7\x2d\xa3\x0f\x4e\x96\x6c\xee\x2e\x57\x64\x7d\xfd\xe8\x1d\xde\xd9\xdc\xe4\x24\x6f\x59\x49\xca\xad\xb5\xb3\xb5\x5a\x08\x34\xe7\xf5\x74\xb5\xa8\x2c\xfb\x4f\x9e\xe2\xeb\xf8\x7b\xee\x4e\x82\xf9\x65\x44\x4e\x5e\x57\x29\x81\x46\x19\xa4\x8e\xd6\x82\xeb\xd5\x31\x69\x7d\x1d\x9d\x0e\x64\x44\xb9\x99\xa4\x8a\x49\x46\xd0\x87\xd7\x0d\x95\x4b\xa8\x23\x4b\xaa\x98\x70\xfd\x2a\x96\xc0\x7f\x15\x4f\x37\x1a\x8d\x8d\xd3\xc5\xdc\xf7\x30\x58\xbb\xee\x9b\x2b\x99\xec\x1f\x1a\x81\x0d\x29\x07\x62\x62\x59\x80\x9c\x8a\x7e\x3b\xfc\x6f\xb1\x86\xf0\xd1\x78\x62\x7e\x53\x61\x61\xab\x35\x69\x5c\xdb\xb8\xb3\xb5\xef\x50\x66\xca\xbe\xf1\x4d\xba\xf6\xcc\x84\x78\x53\xbe\x29\x7e\xd8\xd6\x60\x49\x02\x0e\xad\xa9\x1e\x02\x94\x14\xfc\x94\x3e\xcd\xac\x20\x07\xb2\xfb\x0a\x10\xc3\x6f\x64\xf0\xb6\x35\x20\xc4\xa2\x0f\xb5\x72\xed\xfc\x34\x24\x6b\x95\x2a\xbd\xb8\x38\xca\x13\x62\x69\x09\x3f\x3d\x19\x87\x5c\x75\x8d\xf6\x62\xd4\x64\x3e\x9e\xe4\x7e\x88\xd9\x84\x9c\xca\xb1\x1a\x6d\x5a\x41\x85\x51\x19\x85\x31\x4e\xc0\x6c\xa2\x41\xad\x71\xea\x92\x62\x19\x80\x94\xb8\x1d\x49\xc9\x18\x36\x64\x98\x7d\x1d\xf6\xd2\x0e\xbb\x12\x98\xfa\xc0\x8b\xed\xcf\x9f\x7b\x78\xbe\x12\xc6\xa1\x78\xf2\xc8\x7d\x0f\x56\xe1\x95\xcb\xb7\x66\xb4\x56\x17\xe4\x56\xf7\x8f\x8d\x9b\xc6\xdf\x23\x3a\xa9\xec\xf0\xde\x99\x16\x33\x78\x86\x76\x7b\x11\x20\x47\xf0\x53\x7a\x1f\xed\x41\x05\x04\x95\x00\x28\x7e\x45\xd9\x86\x28\x8a\xed\x95\x08\x61\x9c\x0c\x43\xfc\x33\x95\x6b\x27\x1e\xc9\x57\x56\xa0\xd2\x2b\xf4\xca\x50\x00\xb6\x68\x9e\x5d\xd1\xc2\x7c\x3d\xe4\x62\x6d\x5d\x2e\xbe\xb6\xf8\x17\x20\x4d\x34\xaa\x1d\xd5\xb9\x32\xc0\x59\xca\x1d\xa9\xd9\x18\x6b\xeb\xb7\x37\x95\x76\xd9\x93\x30\x70\x7f\x00\x46\xa6\x72\xb5\xb9\x73\x21\x53\x63\xc9\x94\x49\x00\x68\x4f\x80\x56\xb5\xd7\x5a\x6b\xb6\xde\x5e\x36\xf2\xda\x46\x18\xf8\xf7\xe1\x8d\xcf\xde\xda\x0a\xe0\x19\xde\xeb\xc3\xf7\x73\x8f\x94\x1f\xbb\x63\xff\x50\x21\x6c\x06\x28\x68\x9d\xde\xb1\xc3\x06\xdf\x23\x7d\x74\x4f\xf0\x53\xfa\x30\x89\x1d\x23\x75\xba\x62\x96\x21\xde\x2c\x93\xe0\x90\xf1\x72\x55\x95\x0c\xc8\x20\x93\xc9\x14\x86\x64\x2d\x01\x50\xbf\x41\xdf\x84\x20\xad\xe4\x38\x00\xac\x22\x27\x5b\x63\xd7\x2a\x63\x18\xc0\x99\x09\xdb\xd3\x32\x30\xc4\xa6\x9b\x4a\xdb\xed\x25\xed\x36\x25\x70\xfb\x77\xee\x84\x43\xc0\xac\x5c\x7e\x50\xd5\xd5\x68\x37\x56\x0f\x8c\x8e\xe7\xf1\x9d\x30\xfc\xc1\x98\xef\xd0\xde\xcd\x2d\xf9\x50\x3c\xba\xdf\x07\x5d\x81\x51\x66\x25\xd0\x8e\x9f\x26\xd8\xae\xc1\x4f\xc9\x79\xad\x96\x8c\x2f\x16\x53\x98\xa5\xb6\xf1\xe6\x0e\x13\x46\x24\x13\x86\x17\xc3\x48\xfa\x91\x44\x92\x21\x69\xd4\x2b\xb5\x6b\x0e\x7f\x42\xa1\x8d\x37\xe8\x12\x3c\xc6\x9d\x5c\x58\x80\x09\x58\x00\x69\x92\x49\x6b\x2b\xd3\x6d\x00\x48\x93\xed\x50\xa6\x61\x50\xd7\xcc\xd6\x97\xf5\x38\x93\x01\x2e\x72\x0a\xda\xc3\x29\xe0\x62\x80\x56\xb5\xd5\x59\x6b\xb7\xde\xee\xe3\x3b\xa0\xff\xad\xe1\xa1\x67\x8e\xf8\xf9\x0e\x58\x2a\x15\xec\xc4\x47\x83\x17\xe9\xcd\xcc\x3b\x28\x9f\xd7\xdf\x71\x80\x41\x06\x34\xe6\xf7\xc3\x98\xc2\x34\xb5\xed\x4a\x4c\x01\xd9\xea\x33\x21\xdb\x3f\x47\x9f\x95\xa1\xe0\x77\xf6\xf9\x90\xcf\x86\xec\x7e\x72\x98\x6b\x15\x32\x3a\x90\x14\x9f\x7c\x15\xd6\xee\x51\xf0\xd9\x3d\xaf\x1d\xaa\xce\xf4\xf6\x6c\xbf\xd3\x3f\xfc\xa5\xaa\x9c\xf2\xbb\xfc\xc3\xf7\x6e\xb2\x59\x47\x4f\x8c\xb4\xec\xeb\xce\xc7\x38\x23\x61\x57\x42\x26\xc6\x35\x7b\xbf\xaa\x98\x78\xf2\xbf\xf6\x02\xeb\x3f\x79\xc7\x7c\x87\x19\xb4\xfa\xa1\x2c\x4d\xcf\xb1\x7f\xdb\xc4\xfd\x63\xd3\x2b\xc7\x7b\xc0\xda\x7f\xa0\xa9\xff\x85\xbe\xde\x0b\xfd\x53\x5f\x99\x2f\xe1\xeb\xf1\x74\xf0\x22\x5d\x43\xb0\x46\xbc\x3e\x77\x26\xd0\x54\x16\x00\xcd\xaf\x43\x34\xbf\xee\x6e\xbb\x72\xcd\xc9\xac\x43\x19\xd1\x64\xa7\xa7\xc6\xc7\x45\x48\x91\x09\x4c\x7c\x3d\xb4\x6b\xc5\x0d\x27\xdb\x5c\x53\x27\x45\x06\x85\x9f\x2e\x9d\x6e\x34\x62\x88\xda\xb0\x10\x15\x0f\xb8\x72\xeb\xbd\xfe\x3d\xaf\x1d\xae\x02\x28\xdb\xff\xd2\x42\xef\x49\x77\xb6\xfb\xf6\xfa\xc1\xbb\x06\xcc\x60\x1d\x3d\xd1\x0a\xa9\x85\x5d\x45\xee\xf9\x42\xf7\x0e\x77\xe7\x7e\xbf\xbe\xf7\xbe\xb7\x67\x73\xa7\xdf\xba\xbf\x0f\x52\xb4\x1b\xd3\x53\x1b\x97\x4e\xb7\xe5\x76\x9c\x59\x22\xb9\x92\xd1\xa0\xb8\x7f\x50\xf1\x36\xbb\xb8\x72\x6e\x13\x8e\x0c\x05\x53\x44\x44\x7d\xcd\x60\x84\x31\x23\xc0\xd9\x91\xe3\xc2\x1b\x8c\x16\xf8\x1b\x37\x49\xbd\xc8\xf5\x41\x9c\xae\xcc\x52\xb3\xd1\x9d\x0c\x38\x3b\x65\x67\xaa\x16\x63\xd3\xc0\x1d\x83\x0d\x33\x55\xd9\x14\x53\x3f\x31\xb1\xba\xc1\x3c\xd4\x64\x69\xbf\xf9\xd1\xa6\x89\xf7\xc6\x60\xd3\x77\x27\x36\xbf\xfb\x70\x3f\x80\x7b\xf4\x48\x93\xb0\xc6\x7f\x4a\x0f\xd1\x9e\x1b\xc8\x95\xf4\xaf\xe4\x92\xdd\x40\xae\xd7\xb8\x07\xa8\x19\x6e\x51\x6e\xac\xb2\x96\x0f\x16\xa7\x03\xd6\xa6\x2e\xa4\x18\x30\xb6\x6e\xbc\xbd\xbb\x69\x6b\x9d\x96\xa2\x3e\x1e\x1f\x0f\x1c\x2e\xd8\xd8\x60\x2e\x1e\x3d\x58\xd5\x73\xbe\x1b\xba\x9f\xef\x1b\xf9\xda\x52\x35\x80\x6b\xe4\xb6\x56\xd2\x5e\xbb\x82\x97\xe8\x49\xe6\x1d\xe4\x43\x65\xbe\x12\x46\x40\x17\x25\x69\x2b\xa9\x2b\x1e\xbe\x14\xa2\x59\x8a\x0e\xfb\xcd\xa4\xaf\x9d\x78\x9a\x84\x1c\x55\x8e\x26\xc1\x1c\x8a\xbc\x58\x93\x42\x54\xb1\x3e\x85\xa8\xfa\x3a\x49\x47\x77\x19\x9a\x66\xca\x3c\xa3\xb5\x39\x2d\xb7\xbf\x38\x35\xf0\xc4\x2d\xcd\xbb\x28\xcf\xc6\xfd\xd5\xfe\xa3\x13\x1e\xcf\xc4\x1d\x2d\xcf\x3e\xdb\x76\xcf\x6c\xa9\x6f\xcb\x89\xb6\xa6\xc3\xa3\x45\xd4\x2e\x68\xbf\xfd\xd9\xc1\xa9\xd7\x8e\x75\xc2\x5d\xb5\xf3\x5d\x45\xf1\x09\x25\xed\x13\xc5\x13\x0f\x8d\x17\x14\x4e\xde\x3f\x54\xb5\xb5\x39\x57\xd7\xb0\xad\xae\x61\x73\xa5\x6a\x32\xb3\x7a\xbe\xa3\x79\x67\xb3\xce\xdc\xb1\xbb\x7e\xe6\xec\x8c\xc3\x3e\xf5\x88\x60\x2f\x35\xe2\x67\xe8\xbb\xa8\x04\x54\x03\xb7\x07\xb7\x23\xd4\x6e\xf3\x09\xdf\x77\xe0\x67\xe8\x7b\xc5\xef\xf7\xac\xf9\xfe\x15\xee\x14\xcd\x1b\x44\x7a\x54\x86\x62\x82\x00\x2c\x2a\x8b\xe1\x6d\x25\x04\x2f\x07\x81\xd8\x4a\x80\x37\xd0\x7e\xfc\x5f\xac\x12\x45\xa1\x38\x5f\x0c\xcb\x60\x54\x8b\x10\x9a\x4e\x01\xa9\x82\x64\xa1\x75\x29\x59\x56\xa2\x50\xe3\x0d\xf1\x6a\x7b\x76\x95\xc9\x04\x0b\xf4\xf7\x8d\x7d\x9d\x2d\x2a\x9b\xef\x48\xf3\x4d\x08\xe0\x33\xba\x12\xbf\xce\x46\xa2\x28\x94\xf9\x02\xff\x78\x0d\xf1\x78\xbb\x80\x10\x2a\x41\x8d\xa9\xe7\x79\x66\xbd\xe7\x05\x76\xa1\xe3\x1c\x87\x0d\xbf\x2e\x17\xd9\xed\x62\xee\xce\xeb\xed\x6c\x51\xd9\x4b\x8f\xb4\x1c\x40\x08\xe0\x67\xc1\x0d\xf8\x59\xf4\xab\x2b\xf2\xd4\x84\xe5\xd1\x8a\x0c\x1c\x0e\x1b\x7e\x96\x67\x50\x63\x32\x2f\xf6\x18\xc5\xc7\x9b\x8f\xf2\x75\x86\x3f\xd2\x95\xf8\x4d\x36\x12\xd5\xc0\x14\xfd\x34\x42\x6f\x20\xa1\x2d\x60\x8e\xf6\x53\xf3\xac\x12\xeb\x61\x32\x38\x84\x10\x92\xc0\x24\xba\x0f\x09\x65\x5b\xe8\x4a\x6a\x81\x8d\xc4\x3a\x98\xba\x99\x2f\x99\x42\x2f\xf1\x2b\x0b\xf4\x04\x63\x29\x35\xfa\x25\x8a\x42\x4a\x94\xe0\x93\xc5\xcb\x58\x86\x46\x35\x00\x08\x4d\xa7\xa6\x60\x69\x62\x58\x22\x97\xc3\xa6\x5c\x53\xbb\xdc\x78\x22\x9c\x09\x76\xff\x33\xfc\xa9\x5b\x90\xd3\x77\x6b\xf3\xd1\x3b\xaf\x7c\x14\x74\xf0\x6e\x84\xe8\xce\x2b\xf9\x16\x68\x6f\x83\x00\x84\xc8\x00\x45\x95\xf2\xcb\x45\x71\x38\xcb\xbb\x34\x25\x8c\x85\xc8\x2f\x13\x74\x27\xd7\xb2\xc8\x35\xc0\x85\x45\x78\x8e\xfa\x70\x35\x9f\xfa\x70\x1a\x76\x71\x77\x22\x40\xfb\xb9\x61\xba\x8f\x9c\x2b\x93\x75\x88\xf5\x12\xc7\x78\xa6\x57\x02\x0c\x53\xda\x10\x01\x14\x85\x7a\xf9\xb7\x14\xf3\xfc\xcb\xa0\x71\x4d\xa8\x7d\xa4\x34\xdd\xa8\x0a\xbd\x44\x7c\x91\x42\x25\x53\xd1\x7d\x5c\xe5\x22\xd7\x0d\x4f\xf0\xbf\x8b\xf0\x0d\xae\x12\xbe\xc1\x0d\xc3\xa3\xe3\xd4\x96\x49\xfe\xad\x93\xab\x27\x84\x33\xed\xa7\x70\x1a\x95\x49\x3d\x89\x14\x28\xc9\xa7\xe0\xbf\x40\x24\xd7\x4c\x3f\x6f\x25\xb6\x18\x34\x7c\xcb\x5d\x1d\x08\x02\x4f\x41\xaa\xa5\xd2\x60\xa8\x2c\x48\x85\x2b\x9f\xf0\x3f\xf4\xe5\x96\x94\x14\x4b\xb9\xde\xa8\x2f\xcb\x4f\x49\xc9\x2f\xd3\xa3\x60\x10\x97\x06\xff\x42\x7f\x0b\xbd\x82\x75\x28\x4e\x85\x90\x04\xc5\xc1\xcf\x48\x3f\xd2\xc1\xbf\xd0\x0f\xa2\x57\xb0\x1e\xc5\x71\xbf\x45\x08\xe9\x50\x5c\xb3\x50\xfe\x14\x42\x88\x45\xee\xe0\x45\xfa\x34\xf3\x0e\x52\x21\x17\x6a\x42\xa3\x68\x0f\xda\x8f\x1a\x7c\xb5\xfb\xf7\xe1\xc8\xa8\xa5\x64\x29\xc5\x4a\x70\x3d\x8a\x44\x0c\x8a\x64\x46\x49\x46\x3b\x09\x8b\x24\xa3\x28\x2a\x8a\xec\xa0\x2a\x49\x0a\x20\xc1\x9f\xa6\x0a\x37\x2e\xcc\xcf\x4c\x6d\x1c\x34\xf0\x3f\x1a\x83\x46\x13\x2d\x4d\x17\xd2\x36\x5b\x13\x43\x9e\x31\x8a\xf5\x11\x01\x70\x4d\x6c\xd7\xb5\x51\x5c\xcc\x35\xdf\x5c\x4b\x23\xd7\x83\x12\xce\x25\xd9\x5a\x0b\xbd\xad\xc9\x29\x6d\x45\xee\x56\x5b\x92\x92\xff\xab\x2d\x25\xd9\xef\x71\xfb\x6d\x49\xdc\x31\xbe\x94\xff\x3e\xc9\xca\xff\xdf\x9e\x44\xa5\x44\xa6\x98\x34\xea\xbc\xe4\xc8\xc8\x94\x3c\x8d\xda\x94\x1c\xc9\xbd\x1c\x99\x62\x52\xab\xf3\x52\x22\x22\x48\x49\x4a\x04\x77\x77\x54\x8a\x49\x9d\x9d\x97\x1c\x25\x94\x24\x47\x95\x14\xe2\x69\x37\x74\x5a\x46\xfd\x76\x57\x5e\x9e\xcb\xee\x1f\xb5\xb4\x59\xc6\xfc\x36\x97\xd1\xe8\xb2\xf9\xc7\x2c\xd4\x13\x96\xd1\x36\xbb\xdd\x3f\x66\x69\xcb\x1f\xf5\xdb\x6d\xfe\x51\xcb\xea\x13\x19\x95\x1e\x9d\xce\x53\x99\xd1\x96\x51\x41\x3e\xa4\xb7\x5d\xf3\x0d\xc5\xa4\x93\x4f\x15\xe9\x6d\xe9\x95\x1e\xbd\xde\x53\x99\xbe\xba\xdd\x4e\xdd\x64\x47\x00\x67\xd0\xd7\x28\x33\xb5\x82\x58\x94\xe1\x4b\xa5\xc4\xbc\x6e\x08\x11\xd7\x57\xd4\xcb\xcf\x96\x26\xb9\x8c\x8c\x20\x50\x83\x03\x6c\x38\x05\x12\xa6\xb9\xff\x05\xfa\x69\x6c\xe4\xf6\xc1\x92\x1c\x96\xc8\x18\x3c\x83\x1e\x13\xf9\xe8\x7c\x6a\x06\x30\xcf\x08\x03\xe1\x84\x21\xcc\x8a\x0c\x0b\x56\x4e\xf1\xea\x09\x14\xa0\x06\xc0\x52\xd0\x71\x3f\x99\x81\x04\xee\x12\xb5\xc2\x1d\x94\x73\xb7\xc2\x61\xb8\x53\x18\xd7\x76\xf4\x24\x75\x82\xfe\x33\xbf\x0f\x3d\x8f\x11\x58\x8c\x5a\xbe\x2b\x6e\xf5\xe3\xa8\xf6\x27\x2d\x74\x92\x85\xd7\x19\xc9\x78\x33\x2d\x63\x5e\x41\x91\x28\x16\x35\xfb\x22\x63\x00\xd1\x52\xd1\xb9\x2b\x46\x74\xf5\x05\x3c\xc9\x80\x18\xd3\xb0\x89\x9f\xee\xb4\xe0\x81\x07\x78\xfe\xea\xef\x7b\x7d\x11\x02\x0c\x31\x99\xf8\x36\x85\x5a\xa1\x76\xa8\xf4\x60\x03\x95\x4c\x42\xcd\x7d\xf9\xcb\x5b\xb8\x54\x80\x5f\xec\xe2\xf2\x60\xc2\x40\xdd\xda\xfd\xd6\x5b\x25\xb8\x39\xf0\x5d\x78\xbd\x9a\xc8\xdb\x86\xef\xa2\xde\x66\x5e\x41\x0a\xd4\xf1\x62\x3c\x60\x20\xf9\x9c\x73\x05\x5f\xf0\x50\x36\x66\x6f\x83\x90\xa5\x4b\xf8\x03\x1a\x53\xc5\x54\xcd\x28\x54\x24\x00\xde\x7a\xa1\x51\x48\xc5\xac\x40\x0a\x85\x5a\xae\x66\xa5\xeb\x52\x31\x0b\x79\xca\x49\x26\xe6\xaf\x2b\xb4\x7b\x3b\x0f\x1d\x83\xad\x78\x78\xc8\x58\xe9\xd0\x44\x6d\x63\x9e\x5e\xae\xea\x80\x33\xf7\x73\x34\xfc\x71\xdb\x76\x48\x31\x95\x6a\x02\x3f\xa5\xb2\x05\xdd\x77\x13\x42\xf4\x18\xf3\x36\xb2\xf1\x33\x31\x04\x32\x13\x05\x92\x68\x60\x19\x09\x3b\x12\x03\x0c\x2d\x40\x34\x87\x10\x66\x2a\x89\x54\xc4\x29\xab\x18\x37\xda\xac\x05\x96\x7c\xb3\x41\xaf\xce\xe6\xf7\xd0\x89\x32\x59\x42\x5c\xac\x94\x04\x37\x24\xb2\x12\x95\x42\x45\x8c\x6c\xbd\xda\x61\x23\xbf\x57\xbb\xa4\x2b\x55\x0a\x95\x52\x45\xc9\xb9\xc7\x68\x48\xd3\xe1\x4b\xab\xe9\x23\x99\xba\x04\x09\xfd\xcd\x6f\x30\x2f\xbd\x20\x29\x9c\x7e\x60\xa8\xff\xf8\x98\x13\x76\x63\x43\xfd\x44\x49\xf9\x54\xb5\x86\x85\x69\xee\x24\x0b\xc3\xf0\xf3\x2d\xb5\xcb\x8e\xf1\xf1\xe8\xe2\xe6\x36\xd5\x96\x9e\x73\xbd\x3f\x1a\x7c\x74\xa1\xc2\x3d\x79\x77\x67\xc5\xe6\x3a\x9d\xbd\x6f\xa9\xfa\x47\xbd\xe7\xc8\xd9\xdf\x89\xe0\x25\xfa\x59\x62\xcb\x38\xa1\x46\xb8\x8f\x8d\x8c\x04\xa0\x85\x74\xcc\xa2\x3f\x9f\xf8\x0d\x23\x7c\x93\x70\x15\xcd\xda\x62\x12\xc1\xcc\x33\xb1\x22\x29\x1b\xc5\x4a\xa3\xb6\xa1\x48\x44\x43\x24\x81\xd5\x20\xf6\x2a\xdf\x6b\x08\x49\x7a\x23\x40\x22\x29\x15\x92\x70\x32\x82\xc6\x12\x5f\xe6\xfc\xbf\x7c\x92\x61\x8a\xc3\x39\x3c\xab\xc2\x10\x92\xff\x2f\xef\xfd\x7f\x7d\x25\x81\x0e\x72\xda\xf3\x72\x0d\x39\xb2\x04\x95\x4c\xa3\xd0\x6a\xe3\x88\x9e\x55\xcb\x13\xd6\xe5\xa9\x76\xc8\xd4\xb1\x14\x81\xd1\xb0\x65\x50\x4a\x9b\x9c\x5c\x14\x85\xce\x8b\xe8\x07\x5f\x86\xc8\xe4\xdc\x2c\x85\x51\x26\x53\xfa\x54\xae\x66\x6b\xd2\x16\xc6\x3e\x70\xa8\xe3\xc8\xae\x55\xff\xc1\x7e\xa7\x74\x1b\xec\x7a\x79\x75\xfb\x91\x92\x01\x6f\x46\xba\x77\xa0\xf4\x08\xf5\xe3\x80\x57\x57\xe5\xc8\x92\xd2\xfd\x51\xb1\x79\x2d\x73\x65\xf8\xad\x8e\x13\x9b\x8b\x21\xf0\x12\xb3\x02\x9e\xb1\xdb\x5b\x40\xc1\x5d\xe4\x16\xc0\xd5\xbf\x58\x56\xbe\x38\xe8\x22\x79\x1b\xf6\x06\x2f\xd2\x0e\x32\x8e\xdb\x7d\xad\x1a\x90\xb0\x5a\x60\x24\xf2\x48\x0c\x88\xef\x45\xba\x5e\x01\x08\xea\xa4\xc0\x44\x00\x4d\x31\xf4\x48\x24\x88\x20\xd5\x48\x22\x21\x2d\x51\xb9\xb6\xe2\xfc\xa8\xd6\x68\xb5\x32\x99\x52\xab\x8d\x8b\x92\x5e\x01\x4b\xba\x92\x9a\xd9\xa1\x76\xd8\xc8\xaf\xe0\x49\x1d\x36\x4f\x54\xfc\x7f\x54\x27\x37\xe8\x99\x39\x39\xec\xde\xe2\x88\x70\xed\xf0\xee\x79\xe7\xae\x46\x78\xe3\x8d\x37\xde\x80\x86\xbb\xde\xde\xe3\xdd\xee\x89\x70\x6c\xf5\x8c\x3c\x34\xe3\x86\xc7\xb9\x41\x78\x1c\xdb\x65\xb3\x4f\xef\x29\x93\xc9\xa6\x36\xc4\x35\xdf\xfb\x1f\x87\x65\x3d\x5f\xee\xa5\x0e\xff\xf0\xde\x16\x59\xec\x4c\x9c\xbc\x74\xf1\xa9\x39\xa6\xf7\xcb\x08\xd1\xa8\x32\x78\x91\x7e\x90\x79\x07\x19\x51\x19\xea\x46\xfd\x28\xc6\x17\xd9\xd7\xe3\xaf\x2e\xb2\x6c\xa0\x69\x4b\x38\x9a\x3c\xec\x06\xb2\x36\xf0\x83\x6c\x9c\xaf\x8d\x6e\xbe\x36\xfe\x93\xd1\x83\x12\xe7\x64\x97\x74\xd9\xbd\x03\x3e\x15\x80\xaa\x74\xa0\xc8\xd1\x5d\xac\xde\x88\x13\xd4\x36\x95\xce\xad\x95\xcb\x75\x6e\xbd\xca\x9a\x9d\x80\x7f\x99\x55\x32\xe0\xf5\x0e\x94\x66\x65\x95\xf4\x7b\xbd\x83\x25\xaa\xe1\x78\xad\x3b\x47\x5f\xa8\x89\x97\x69\x3c\x39\x39\x85\x9a\x78\x8e\xe8\x66\x3a\xd2\xd2\x55\xaa\xb5\x77\x6e\x76\x35\xb9\x66\x3b\x1d\xda\xf2\x3e\x87\xba\x28\x57\xa9\x2f\x69\xd4\x36\x69\x1b\x8a\xf5\x49\x39\xce\xf4\x40\x7f\xe1\x6c\x87\xdd\xde\x31\x5b\xd8\x1c\xfa\xa0\x6b\x2c\xd6\xe9\x4a\x1a\x74\xcd\xe4\x43\x71\xa3\xee\x15\x51\xc7\xa3\xcf\x83\x17\xa9\xff\xcd\xfc\x16\x69\x90\x03\x49\x2f\xe4\x6b\xe3\x11\xb6\x90\xf4\xae\x0e\x96\x95\x38\x9c\x4e\x57\x38\x9e\x5e\x11\x4b\x49\x84\x23\xf9\x12\xea\x4a\x1d\xa9\xf1\xf1\x63\x03\x46\xcf\xbe\xca\xaa\xfd\x85\x19\xa5\xe3\xb5\xde\x1e\x4f\x06\xd8\x47\x97\x7b\x53\xbc\xa3\xf5\x5c\xa0\x74\xa4\x42\x1d\x95\x62\xca\x36\xbb\xb3\xa2\x14\xb8\x6e\xef\xe3\x03\xc6\x04\x05\x6c\x87\xa4\x44\x9c\x5a\x75\xdb\x6c\x85\xab\x77\x87\x47\xdb\xff\xe2\x57\x8e\x5a\x37\x55\xed\x1f\xf2\x60\x5c\x64\xdc\x7a\xcb\xb1\x7a\xbd\xb6\xc1\xab\xb7\xb5\x8e\x98\x11\xdf\x57\x87\x89\x3f\xf4\x1b\x28\x02\x65\x22\x07\x72\xf3\x7d\x55\xe8\xcc\xd7\x24\xc7\x32\x88\xb6\x18\x55\x6a\x90\xab\x65\x36\xa0\x6c\xca\x6b\xfa\xc4\x75\xed\x1e\x44\xe5\x50\xe1\x57\xb7\x70\x8f\x53\x5b\xe7\x60\x88\xda\x3a\x24\xcb\x29\xb3\x14\x94\xe5\xc8\x64\xfa\x72\x8b\xa5\x3c\x47\xd6\xc4\xc8\x75\x59\x99\xda\x04\x86\x49\xd0\x66\x65\x6a\xe5\x2c\x30\xdc\x6b\x50\x41\x4f\x5f\x7e\x90\x59\xb9\x7c\x86\xde\xb4\x6a\x18\x6a\x75\x38\x5a\x87\x0c\x8f\x1a\x06\x5b\xed\xf6\x96\x21\x03\x9d\x5a\xe9\x35\xe4\x7a\x2b\x53\x1e\x4a\xa9\xf4\xe6\xf2\x1f\x02\xf7\xd6\x23\x8c\xa6\xa8\x07\x49\x0e\x96\x68\x94\x80\xa4\x17\xe4\x1b\x58\xc0\x16\x23\x50\x6a\x8a\x9f\xdc\x72\xb9\x4d\x26\xba\x7f\x3a\x54\xd4\x67\x0f\xd9\x1f\xac\xeb\x3f\xfb\x68\x7f\x1d\x87\xcf\xd6\x9f\x81\xdb\x18\x17\x37\x0c\x5f\xe3\x7a\x71\x32\xd7\x06\xcf\x04\x7e\x07\x1f\x71\x79\xf0\x51\x15\xd1\xc3\x0f\x07\x2f\xd1\xf7\x11\x8c\xdd\x1c\x24\xbd\xa0\xc9\x8a\xc3\xd8\x62\xd4\x8a\xd7\x0c\xa1\x10\x2e\x85\x4a\x26\xf8\xa4\x40\x36\x2b\x91\xa9\x64\x3a\x1d\xad\xec\x7c\x65\xb4\xfe\xb6\x85\xa1\x0a\xad\xbe\x7a\x64\xe1\x50\xf5\xe6\x0b\x87\xeb\x21\x80\xdc\x77\x36\x8f\xfc\x5b\x17\x77\x4f\xf3\x9d\x6e\x9c\xe6\xba\x6d\xc8\x5e\x92\xdb\x30\xb5\x6f\xb9\xa1\xee\xe8\xfe\xa9\x46\x63\xf7\x7d\xef\xcc\xe5\x73\x2f\xdb\x8a\xa0\xd4\x4b\xe5\x56\x3a\xb9\x8b\x90\x61\x2b\x21\x36\x99\x37\xf8\x37\xfa\x3e\xe6\x59\x94\x0f\x6f\x72\xff\xc0\xbf\x77\x9f\x44\x3a\xd8\xf5\x63\x04\x1b\xe0\x3d\x98\x40\xc8\x7d\x52\xb0\xcf\xf0\xef\x79\xfb\x2c\x18\x44\xbe\xe0\xdf\xe8\x6f\x32\xaf\xa0\x7c\x78\x2b\x98\x8e\x3f\x15\xe8\xb3\xff\x4e\xe8\x8f\x13\xfa\x78\x42\xff\xe9\x8a\xcd\x48\x2e\xc1\xfe\xbe\x62\x33\x06\x83\xc8\x1d\xfc\x82\x7e\x96\x79\x1e\xe5\xc3\x3b\xc1\x28\x7c\x51\x78\x6e\x83\xf0\x9e\x9b\x11\xed\x3e\x89\x64\xe4\xb9\x8b\xfc\x73\x98\x5a\xa1\xc5\xf7\xb9\x82\x7f\xa3\x8f\x91\xe7\xbe\x15\x4c\x0b\x3d\xf7\x86\xf0\xdc\xc8\x1a\xf9\x2e\x8a\x77\x6d\x07\x82\x17\xe9\x6a\xe6\xcf\x28\x07\xf9\x90\xf4\x82\xcd\x90\x2e\xe3\xfb\xcb\x9a\xa8\x34\x33\x62\x62\x79\xd7\x1a\x54\x60\x01\xb3\x55\xb9\x46\x2b\xd0\x24\x63\x47\xc7\x8e\xb7\x2b\x98\x34\x73\x45\xdf\xf6\xea\x8e\xbb\x2a\x94\xa5\xa7\xa6\xc7\x4e\x2f\xf8\x6d\xca\x92\xa5\x97\x96\xb6\x3c\xb7\x54\x51\xbe\xf7\x99\x85\xce\x5b\x07\x0a\x2c\x03\x87\x3b\xcb\xa6\xdb\xbd\x7a\x79\x9c\x6f\xe3\x1e\x8a\x1b\xef\xaf\x59\x3e\xb4\xbd\xdd\x92\x9f\x37\x64\x71\x42\xc5\xc2\xd9\x97\xbf\x3d\x56\xb6\xf4\xe9\x4b\x5b\x5b\xef\xfa\xc6\x66\xd5\xd4\x85\x23\x4d\x13\xbe\xd9\x63\x2d\xaa\xf6\x07\xb6\x57\x18\x1b\x26\x76\xdd\x5c\xe6\x2e\xe8\xab\xce\x45\x80\xbe\x13\x8c\xa1\x31\x89\xc1\x64\xcf\xb3\xfc\x5e\x8e\x09\x41\xd4\xe3\x5d\x81\x17\x76\x51\x85\x7f\x66\x8b\xff\xf9\x16\xfb\x38\xaf\xdb\x5d\xdc\x9f\xe9\x7b\xc9\x98\x64\xcf\x4b\x29\xb0\x18\x01\xf8\xad\x05\x80\x43\xa5\x50\x01\x25\x0f\xbc\x4c\xbd\x77\xf9\xcb\xb8\x2f\xf0\x55\x3a\x79\x75\x2f\xae\xc3\xe5\x01\xe5\xc4\x00\x85\x28\x7a\x70\x22\x20\x13\xf6\x39\x4f\xe0\x67\xa8\x4b\x54\x02\xa2\x88\x4d\x74\xd5\x8e\x56\x16\x47\x76\xb4\x2a\x87\x8a\xba\xb4\xfa\x1a\x55\x81\x9f\x99\xe0\xbf\xdf\x29\xda\x85\x91\x88\x3d\xcf\x90\xf7\x2a\x5d\x60\x03\x35\xa5\x76\xd8\x70\x94\x56\x07\x87\x97\xb8\xe8\xe1\x3f\x9f\xfc\x23\x64\x2e\x2f\xd3\xc7\xbf\x68\xc5\x07\x49\x8c\x59\x1e\x1a\xa5\x1f\xa7\x95\xa8\x00\xb5\xa0\x39\x14\xf9\xd2\x78\x57\x5d\x61\x26\x4b\x11\x15\xbd\x2e\x4b\x69\x78\xe0\x8b\xd8\xcd\x6a\x11\xa4\x99\x60\x25\x24\x96\xd0\x0e\x55\x42\x06\x4d\x92\x18\x88\xe0\x3c\x0a\xfa\xf1\x98\xd4\xbc\x92\x76\x87\x7b\xa0\xd6\x2e\x8b\xb7\xd7\xf4\xbb\x1d\xed\xa5\x79\xa9\xd1\xd1\xe2\xb7\x35\xf6\x78\x99\xbd\x76\xd0\xed\x68\x2f\x31\xa6\xc6\xf4\xb2\xb2\x54\x63\x51\x8e\xc6\xe7\xc8\xcd\x90\x01\xc8\x32\x72\x1d\xa5\x9a\x1c\xaf\x31\x55\xc6\xae\x7a\x24\x71\x69\x46\x6f\x8e\xa6\xd4\xbe\xae\x2c\x37\x2d\x4e\x82\x75\x79\x13\x63\x03\x35\xb9\x45\xfd\xdb\x9d\xce\xed\xfd\x45\xb9\xd5\x83\x63\xe3\x26\x73\xde\xf8\x38\xff\xe5\x00\xff\xe5\x40\x51\x6e\xcd\xc0\xf8\x78\x5e\x56\xab\xbf\xa9\x48\x93\x5b\xd6\xd6\x56\x9f\xac\x49\xae\x6f\x6b\x2b\x37\x80\xa6\xa8\xc9\xdf\xaa\x52\x91\x12\x58\x53\x54\x96\x4b\x4a\xb2\x48\x7f\xfc\x85\x6b\xa0\x7e\xc4\x66\x22\x2d\x62\xcf\x27\xd1\x7c\xff\xaf\xf7\x9c\x10\x75\x38\x01\x6d\x21\x67\x99\xf8\x84\xae\x71\x7b\x63\xba\xe8\x41\x11\x61\xa9\x32\x29\xc0\xd0\x3c\xdf\xa0\x2e\xcf\x8e\xb3\x14\xda\x9a\x6c\x29\xbd\xa2\x1b\x05\xc5\x32\xc4\x8d\x82\xd1\x34\xee\xef\xb5\x46\x46\x0c\xc7\x6a\x7d\xdd\xb6\x2f\x7e\x46\xf4\xd0\x51\xa8\xa7\x7d\xd4\x25\xa4\x42\x15\x48\x7a\xa1\xc2\xaa\x8a\xc3\x16\xa3\x5c\xcc\x77\x9b\x41\xd9\x9c\x64\x89\x27\x77\xa0\x66\x4a\xc2\xb2\x12\xea\x5f\x94\x3d\x60\x5e\xac\xd5\x78\x5d\xce\x8c\x34\x9b\xcd\x9d\x5d\xbb\xcb\x14\x61\x5e\xac\xc9\x2e\xb4\x5b\xd3\x32\x5c\xae\x62\x4d\xed\x6e\x53\xfc\xd5\x14\x52\xd3\x62\x6d\x76\xa1\xcd\x96\x96\xe1\x2c\xf4\x6a\x6b\x77\x99\xa8\xae\xd2\x36\x80\xa8\x84\xb4\x0d\xb1\x29\x09\x51\xd0\x51\xba\x50\xda\x06\x51\xf2\xe4\xd8\x0d\x69\x8a\x68\x80\x8e\x52\xee\x17\xa5\x7e\x0c\xd1\x09\xa9\x1b\x36\xa4\xc8\xa3\xa1\xf3\x0a\x41\xba\x22\x1a\x70\x47\x29\x69\xcf\x15\xf4\x55\x3a\x8f\xde\x8a\xe4\x88\x3d\x1f\x8d\xf9\xb1\xaa\x92\xe8\x5d\x2a\x87\x4a\xae\x72\xa8\x5c\x4a\x7e\x2f\x4e\xa9\xe8\xbc\xc0\x4f\x0f\x95\x6e\xe1\x02\x50\x72\x8e\x4b\xc2\xea\x3d\xa5\x63\xc0\x70\x6f\x9c\x83\x4f\xe1\xf8\x45\xed\xbb\x33\x50\x30\xf3\xbf\xb4\x2f\xcc\x70\x1f\x08\xe7\x57\x1f\xa2\x3c\x3a\x97\xbe\x0b\x4d\xa2\x0c\x64\x44\xdf\xf0\x21\xf7\x49\x90\xc0\xed\x28\x37\x70\x80\x68\xaf\x95\x6f\x88\x4a\x2f\x70\x80\x68\x23\xfe\x99\x9f\xa1\x5c\xba\x9e\x7e\x14\x4d\xa2\x2c\x64\x40\x1f\x84\x9f\xb1\x05\xf6\x09\xcf\x7c\x10\x7a\x66\x9f\xf0\x0c\xc2\xe8\x11\x84\x68\x2b\xb3\x82\x18\x14\x83\xa4\x17\xa2\xa5\x14\xbf\x9e\x13\x97\x77\x50\x81\x5e\x02\xa0\x74\x61\xe7\x30\x9c\xe2\xc6\x87\xb9\x31\x4a\xc1\xbd\x4c\x53\xdc\x37\xa0\x86\xa2\x99\x95\x80\x3e\x60\xc0\x3f\xc2\x03\x91\x91\x81\x2f\x07\xbe\x1c\x19\x49\xec\xae\xc7\x83\x55\x78\x08\xad\xa0\x88\x90\xbe\xd0\xb2\x6c\xe8\x6c\x68\x08\x5c\xde\x1a\xb5\x06\xe6\x27\x1a\x4f\x16\xd9\x5d\xdb\x2b\x1a\x79\x19\x12\xd1\x00\x8a\xa4\x6f\xa3\x59\x14\x83\xd2\x50\x2e\xf2\x20\x1f\xaa\x46\x8d\xa8\x0d\xf5\xa3\x8d\x68\x14\x4d\xa2\xcd\x68\x2b\x9a\x47\x4b\xe8\x26\x74\x08\xdd\x86\xee\x42\xc7\xd0\xbd\xa8\xc0\x67\x3e\x71\xcf\xdd\x47\xef\xbc\xfd\xc8\xe1\x5b\x0e\x1e\xd8\xb7\x67\xe7\xf6\x6d\x73\xb3\xd3\x53\xe3\x63\x23\xc3\x83\x03\x3d\xed\xad\xcd\xb5\x35\x95\x65\xde\x22\xb7\x5d\x97\x99\x1c\x1b\x81\x13\x2d\x46\xb0\xeb\xd4\xd9\xac\x42\x91\x90\x68\xb3\x3a\x1d\x4a\xab\xd3\x61\xd7\xe9\x9d\xfc\xbf\x6a\xb5\x4c\x9f\xc0\xaa\xb3\x75\x0e\x87\xdd\x69\xb3\x26\x2a\x18\xe1\x2f\xb5\x40\xea\x50\x83\xc3\xa6\xb0\xf1\x06\x95\xc3\xa6\xe0\x3f\xab\x15\x5a\xfe\x5f\x07\x58\x13\x15\x09\xac\x5a\xed\xa0\x78\x02\x07\x21\x51\xc8\xd7\x7e\xe6\xb9\x25\xa8\xd5\x8c\xda\x61\x93\x89\xbf\xb0\xf6\xf3\xe7\xd5\x6e\x77\x75\x8d\xdb\x5d\x75\xd6\xe6\x4e\x4b\x53\x2a\x4b\x5c\x93\x3d\x39\x6a\x8d\xc1\xa0\x56\x1b\x70\x6c\x86\x32\x25\xd3\xe6\xb5\x98\x3c\xd6\xd5\xe3\x25\xb3\xf8\x47\x73\xc5\x97\x3f\x3e\x37\x4b\x55\x9c\x2b\xe6\xaa\xd2\x53\x53\xd3\xab\x35\x0f\x57\x3c\x1c\x58\x79\xa8\x42\xf8\xdf\xa4\x4d\x95\x55\x66\xe3\xfc\x25\xe4\x87\xfa\xac\x98\xfc\x60\xad\xb3\xbc\xdc\x59\xc2\xff\xb3\xdb\x68\x54\xea\xa5\x11\xd9\x0a\x63\x0e\xf7\xe1\x6e\x9d\xd1\xa8\x2b\xe1\xff\xe9\x4c\xca\x48\x4a\x31\x9b\xac\xa6\x1f\x04\x66\x9e\xd9\x5a\x5a\xba\xf5\x19\x6a\xe3\x69\xdf\xe0\xa0\xef\xf4\x20\x57\x90\x92\xa8\x48\x1a\x84\x0f\x7c\xe4\x67\xb5\xb2\x94\xfc\xe0\x89\x38\x65\x5e\xdb\x9d\xdc\xd7\xee\x80\xc4\x3b\xb8\xaf\x89\x1f\x10\x62\xd0\x86\xc0\xc7\xf4\xb3\xd2\x79\x44\x21\x03\x32\xa1\x02\xe4\x40\x1b\x7c\xd1\x76\xab\xc5\x9c\x97\x1b\x4f\x63\xc4\x58\x8c\x11\x14\x63\x2f\xc1\xae\x50\x0e\xe2\x58\x2c\xb1\x11\x57\x4e\x72\x09\x1c\x4b\x29\x94\x6a\x85\x8d\xb2\x29\xd4\xfc\x2f\xde\x84\x9b\x02\xe7\x03\x4f\xe3\x57\xd8\x68\x59\x54\xa2\x49\xa3\xd4\x56\x4d\xf8\x0a\x47\xea\x8c\xf0\x5d\x6c\x48\xd2\x66\xc9\x92\x52\x23\xd3\xd5\x0a\xe9\x77\xbe\xf3\x9d\x59\x9a\xc6\x34\xcd\xb6\xad\x16\xac\x16\x50\x1f\x5c\x4e\xd6\x67\xa6\xc7\x65\xba\xdc\x3e\x83\x6f\xb2\x4e\x9f\x51\x36\x5e\xed\xb2\xf8\xec\x29\xb6\x7c\x7d\x8c\x26\x47\x67\xb5\xf4\x9f\x0b\x74\xd1\x91\x67\x68\x84\xd1\x7f\x04\x3f\xa7\x11\x7d\x9a\x60\x4b\x49\x2f\x68\x53\x36\xd0\xfc\x1c\xb8\x72\x07\x42\x96\x09\xbd\x08\x58\xa1\x10\x75\x24\x8d\xc0\xb4\xe9\xe1\xd9\xd9\x93\x9b\xf2\x01\xcc\x23\x27\xf9\x4f\x66\xd8\x03\xe9\xe5\x73\x7e\xff\x5c\x79\x3a\x40\x7a\xc5\x16\xbf\x7f\xb6\x3c\x0d\xe0\xf7\xc3\x2f\x2e\x77\x76\x2e\xbf\x38\xfc\xfa\xf0\x8b\x47\x3b\x3b\x8f\x5e\x18\xd9\x50\x75\xe7\x96\xca\xaa\xb9\x3b\xab\x7e\x5a\x75\xd7\xd6\xea\xea\x6d\x77\x56\x21\x80\x0a\x84\xa8\x13\x54\x16\xca\x46\x79\x3e\x83\x10\xe4\x8e\x30\xd0\x40\xc2\xd2\x11\x60\x0a\x46\x43\x41\xe9\xc5\xa8\x31\x45\x13\x6f\x8c\x63\xa4\xc9\x46\x95\xca\x01\x57\x32\x3a\xaf\x4d\x7f\x24\x51\x51\x27\x02\xef\x80\x2a\xcd\xaa\x4d\x4c\x32\x7a\xb2\xdb\x37\x52\x33\x90\xd7\x30\x59\xe2\xde\x54\x9b\x93\x69\x2f\xd7\x7c\x0c\x17\x1a\x20\x35\xd5\xe1\x70\xa6\xaa\xec\x1a\x79\x77\x83\x6b\xa0\x5c\x9b\xe1\xe9\x70\xe6\x36\xd4\x54\x64\xbf\x8b\x30\x14\xd3\x9f\x50\xdf\x63\xbf\x89\x58\xa4\x43\xd2\x0b\xba\x44\x86\xe8\x07\xb5\x5e\xa2\xd6\xda\x5c\x42\x13\x49\x44\x2f\x36\xfe\xb5\xa4\x69\xa8\xef\x1d\xfc\xf6\xb7\x6e\x02\xf9\xd4\x0f\xb0\x42\x67\xcf\x52\xdb\x4c\xf9\x99\xf2\xf4\x84\x28\xf0\x81\x42\x6b\x57\xa9\xac\xf9\x16\xfe\xef\x68\xa0\x3f\xb9\x70\xe1\x4f\x3f\xc9\x74\x1b\x53\xd2\x54\x69\x90\x90\xa1\x91\xc5\x64\x78\x2d\x19\xa9\xaa\xb4\xb8\x54\x55\x3c\x39\x87\xde\x40\x7f\x42\x2f\xb3\xcf\x21\x16\x65\xf0\x7b\x62\xc9\xda\xf7\x2b\x1d\x25\x94\xc3\x4c\xa9\x5d\xa2\x93\x88\x82\x7a\xee\xe6\x0f\x3f\xb8\x19\x62\x6e\x0f\x24\xdb\x0c\xc9\xa0\xb6\x15\x25\xb3\xe6\xc1\x7a\x73\x6a\x5e\x61\x1a\xfd\xc9\x2b\xaf\xfc\x69\xe7\x36\xcc\xc6\xa6\x2a\x93\x33\xe3\x98\x7a\x88\xcb\x2e\x34\xa8\x2d\x59\x71\xb4\x1d\x61\xd4\x46\x7f\x42\xbd\xce\x8e\x20\x16\x45\x22\xe9\x85\x88\x75\xef\x61\xd4\x7a\x1b\xf5\xfa\xd1\x57\x5f\x3d\x0a\x31\x3b\xb9\xd7\x26\x5e\xbc\x83\xfe\xe4\xa9\xa7\xfe\x34\xf0\x3b\x84\xc1\x46\x7f\x42\x9f\x5d\xf3\x1c\x16\xf4\x27\xc3\x3f\x09\x36\x89\x1a\x97\xcd\x43\xec\xf2\x2b\xaf\x2e\xe3\x4f\x6e\x7f\x71\x82\xf9\xcf\x3f\x3d\xf5\x14\xec\xff\x1d\xd1\xbd\x50\x4e\xbf\x42\x3d\xc2\x9e\x40\x32\xa4\x40\xd2\x0b\x09\xf1\x34\x5a\x33\xee\x6c\x89\xbc\xf2\x71\xe9\xf9\x77\x3f\x82\xf3\x5b\x67\x4b\x4b\xe7\xfc\xf9\x30\xce\xcc\xf4\xf6\x4c\x33\xfb\xe6\xbf\xf1\x30\xb3\x52\xd4\x5f\xaa\x52\x95\xf6\x17\xb5\xf8\xdb\x9a\x23\x7f\x4c\x82\x63\x32\xe8\x17\xf1\xf7\x59\x03\x8a\x42\xec\xf9\x48\x86\x5f\x8b\xd6\xdc\x64\x64\xc4\xa7\xa9\xe3\x1b\x53\xd3\x60\x37\xe3\x54\x57\x95\xb8\x12\x0b\xac\x03\xce\x03\x64\x1d\xa8\x26\x78\x9f\xcb\x48\x82\x22\x91\xd6\x97\x1d\x09\x34\xe6\x47\x1f\x8d\x77\x88\xe1\x52\x9b\x28\x08\x1f\xc6\x93\x61\x07\xaa\x2b\xf8\xbf\x5b\x03\xef\x2f\xed\x83\x1f\xef\x80\x8f\x97\x02\xfb\xe0\x97\x9f\x83\x8b\xfb\x36\xbd\x7c\x79\x1e\x4e\x93\xa8\x3f\x44\xa1\x9f\x23\x44\x17\xd0\xcb\x04\x63\xdc\x82\xbc\x3e\x77\xb4\x90\x1b\x2e\x84\x1e\x19\xce\x11\x17\xca\x0c\x57\x0c\x8d\x4a\x25\x42\x16\xb3\x4e\xa3\x54\x2b\xb3\x53\x92\x50\x22\x52\xa8\xa4\xd2\x50\x66\x38\xc1\x2b\x88\x5c\x3d\x5c\xc9\x8a\x7c\x25\x68\xf5\xe7\xb0\xa7\xe1\xe4\x52\x53\x76\x51\x53\x9e\x7d\xa8\x26\x17\x6a\x17\xee\x6f\xe2\xde\x06\xaf\x63\xa6\xc3\x56\xe0\x9f\xb4\x73\xaf\x42\x6a\xc1\xb8\xdf\xe6\xee\x9b\xb3\x73\x41\x7a\x19\x32\x6a\x76\xf5\x39\xfc\xde\xdc\x98\x48\x73\xf5\x46\x4f\xf7\xbe\x66\x2d\x60\x3d\x57\x02\x49\xce\xce\x12\x6f\x87\x23\x05\x86\x41\x91\xdf\x5c\xe4\x6b\xcd\x97\x01\x02\x74\x30\xf8\x39\xad\xa1\x4f\x23\x3d\xb9\x63\xc0\x14\x43\x61\x66\x1b\x0b\x0c\x4d\x31\xf4\x96\xb0\x07\xbb\x18\x5a\x52\x45\x82\xe8\xf4\x48\x6f\xc8\x4e\x30\x68\x24\x7c\xe3\x5d\xa5\x5d\xd4\xe2\x29\x22\xaf\x5d\x12\x9d\x2e\x5a\x13\xdd\xbc\xe7\xcc\xc0\xf6\x67\x16\x4b\x01\x7c\x7b\x57\x76\x0c\x9c\xda\xdd\x18\xbd\xa8\x3c\x77\x77\xff\xad\xbd\x79\x00\xc6\xae\xc3\x7d\xf7\x3c\xa3\x84\xad\x83\x77\x6f\xb2\x76\x1f\x7f\x63\xe6\xb6\xcd\x6f\x1e\xef\xb6\x8f\x1e\x1b\xb8\xf3\x04\xd4\xee\x7e\xa4\xed\x76\xff\x23\x8b\x75\xb0\x7c\x37\xe9\xdb\xef\x23\x44\xb7\xd2\xcb\x28\x06\xa5\x92\x5b\x4c\xc4\x00\x85\x91\xd8\xd6\xb4\xd0\xd6\xb1\xb1\x08\xc5\xa6\xc6\xa6\xc8\x36\xa0\x18\x14\xad\x62\x43\xed\x4c\xf2\x44\x51\x32\x5b\x09\xe5\x72\x98\x29\xfd\xf7\x61\x7c\xe7\xbb\xf7\xb4\x03\x74\xdc\xfb\xde\xc2\x6f\x7f\x3b\x7c\x7a\x5b\x29\x86\xe2\xad\x8f\x6c\xa4\x97\x71\xcb\xf2\x5b\x0b\xa3\xbb\xdf\x3a\xda\x04\xb4\x6e\xb5\x14\x7c\xdb\xcf\x6c\x1c\x1f\x3a\xbd\xbd\x14\xf3\x7b\xa4\x0f\x49\x4e\xaf\x65\x14\x45\xe2\xd7\x28\x44\x33\x14\x3d\x82\x18\x24\x9c\x6f\x5e\x39\xd4\x5c\x77\xd7\x43\xae\x5e\xf8\x5f\xea\x1b\x81\x63\xf8\x83\xd5\x97\xa8\xea\x80\x1d\x6f\xc7\x06\xce\x3b\x4e\x2f\x4f\x72\xd3\x82\x7d\xf1\x23\x92\x93\x67\x19\x45\x90\xbc\x5e\x82\xc3\xe3\x48\x38\xca\xef\xea\x51\xcb\x1b\x3a\x84\xe7\xfb\x81\xc3\x4b\x54\x67\x40\x87\xf7\x61\x45\xe0\x22\xcf\xaf\x53\xe0\x77\x6b\xf0\x73\xda\x40\x9f\x46\xf9\xc8\xe5\xb3\x1b\x11\xa6\x19\x7e\x2a\x50\x2c\x85\xd9\x6d\xe1\xae\x65\x11\x43\xb3\xcc\xc8\x9a\x2e\x96\x29\x0c\x1a\xd2\xbd\xa9\x46\xed\xd5\xdd\x7b\xd5\xe2\x41\xf2\x79\x19\x74\x93\xf3\x8b\xee\x9d\x2f\xdd\x5c\x0d\x50\xb6\xf4\xfc\x7c\xe7\x43\xbb\x5b\x62\x77\xc5\x16\x75\xce\x95\x0e\xdc\xd6\x67\x02\x28\x18\xbe\x7b\x50\xdf\xd5\xde\x90\xce\xbd\x06\xaf\xdc\x65\xf6\xaa\x63\x3b\x8f\xbf\xb5\xf5\xd0\xdc\x9b\xf7\x74\xe4\xf5\x1e\xee\x2e\x1d\x2c\xc9\xac\x5e\x38\xd9\x71\x6b\xd7\xe9\xc5\x5a\x89\x42\x9b\x0e\xe9\x9b\x04\x8c\x0e\x92\xfb\x65\x59\xc8\x73\xc6\x00\x45\x53\x3b\x42\x99\x5f\xc8\xb5\x17\x5a\xd3\xca\x6b\xf3\x9c\x51\x7f\x9c\x0f\x3c\x3b\x3f\x8f\xfd\xf3\x38\x3a\xf0\x17\x7a\x39\xf0\x1b\x9c\xca\xf3\xfb\x04\x21\xea\xef\xf4\x51\x31\x6f\x1a\x62\x04\x44\x22\x1a\x30\x26\x9e\x43\xc5\xd4\x1a\x7e\x72\xb1\xcf\x1c\x2a\x99\xea\x13\x4a\xce\x3d\x0d\xed\xab\x9f\x41\x2d\xf7\x32\x7d\x74\xf3\x6a\xdd\xcc\x0c\xf5\x92\xd0\xc6\x2f\x05\x3f\xa7\x7e\x45\x2f\x23\x25\x89\x69\x26\xa0\xc9\x98\xc2\x3b\x42\xb8\x2a\x55\xd0\xa8\x49\xd0\xc6\xd1\xd2\x24\x23\xd8\xa8\x90\x4a\x14\x5b\x8f\x9a\x5c\x02\x5c\x3a\x7b\x77\x4b\xe7\x89\xad\x95\xec\x12\xe4\xb7\xce\x14\xb9\x37\xd5\x19\x31\xbd\xbc\xfa\x71\xf7\x9d\x43\xb6\xdc\xde\xdb\x06\x2b\x37\x95\xa6\xeb\xaa\xc6\x4a\x10\xa0\x9f\x21\x44\xdf\x44\x2f\xa3\x68\xfe\x5d\x91\x2c\x50\xa1\x0b\x11\xd8\x41\x09\xed\x11\x2f\x97\xc5\x93\x77\x49\x48\x5b\xb8\x84\x0d\x70\xf0\xc9\xc5\xc5\xaf\xc0\x3b\x0f\x06\x82\xd8\x78\x1f\x76\x9c\xe5\x66\xe8\xe5\xc0\xc9\xaf\xc1\x37\x03\xff\x0c\xec\x45\x80\x3e\x45\x88\xae\xa1\x97\xc5\x1c\x91\x18\xe1\x1d\x21\xc7\xe2\x62\x21\x47\xa4\x54\x69\xd4\xf2\xed\x61\x83\x29\xfc\x5f\xab\x8f\x1f\x18\xe7\x35\x2c\xa0\x73\x24\x7e\x87\x97\x47\xe3\x53\x49\x19\x8c\x85\xfc\x76\xa4\x0d\x00\xef\x08\x29\x5a\x92\xe3\x8e\x1f\xb2\xeb\x72\xdc\xcd\x82\xfa\xcc\x3c\xf7\x8b\x4e\xee\x27\xf3\x5f\xc2\x6e\xdc\x71\x79\x9e\x8e\x0b\xec\xc5\x07\x2e\xff\x83\xf0\x7e\x1f\x21\xea\x6f\x64\x2e\x64\xf8\x52\x25\x18\x23\x0c\xf5\x14\xf0\xb2\x81\x58\x55\x59\x3c\x69\xd6\x2b\xc7\x60\xd4\xdf\xb6\x06\x5e\xa4\x76\x6c\xc3\x0d\xf4\x76\xea\xc3\xd5\x7c\x7a\x79\x35\x9f\xfa\x10\x61\x74\x7f\xf0\x73\xda\x45\x9f\x46\x4a\x64\x42\xe9\xbe\x94\x70\x00\xb5\x88\xad\x59\x85\x1a\x0d\x06\xa3\x86\xb4\x5b\xc8\xa8\xbe\xd1\x66\xc9\x05\x45\x3b\x9f\x9e\x6f\x3c\x38\xd5\x6c\x4f\x83\xa2\x85\xa7\xe7\x77\x3c\xb3\x50\x04\xbb\x20\xa7\xe3\x50\x7f\xff\xa1\x8e\x1c\x80\x9c\xce\x43\xfd\x03\xb7\x74\xe8\x01\x47\x4f\xbf\xf5\x40\x9f\xa1\x7e\x7c\xf1\x48\xf5\xfc\xf4\x5b\x0f\xf6\xf7\x3d\xf8\xf6\x34\xf6\x9f\x5a\x6a\x68\x5c\x3a\xd5\xba\xd0\x7a\x7a\x5f\x63\xe3\xbe\x53\x7e\x84\xd1\xf6\xa0\x8d\xee\xa0\x4f\xa3\x54\x54\x80\x0c\x3e\x9d\x94\xc1\x88\x82\x7a\x09\x8b\x51\xcd\x75\x65\x35\xe4\x8a\xb2\x4a\x94\x12\x6d\xe8\x2c\xf9\x46\x12\x77\x40\x56\x49\xaf\xe7\xd7\x6d\x1c\xa7\xaa\xd1\xed\x7c\xf9\x60\x15\x40\xe5\xc1\x97\x16\x16\x5e\x3e\x58\x09\xbb\xc1\x32\x74\xf7\xd0\xd0\xd1\x21\x0b\x80\x65\x68\x79\x68\xe3\xf2\x50\x3e\xe0\xe8\xc6\xe5\xa5\xb1\xec\x17\xeb\x7e\x10\x11\xd9\x75\xef\x3b\x5b\xe6\xb7\xbc\x73\x5f\x77\xd7\x7d\xef\x6c\xc5\xdd\x67\x76\xd7\xd4\x2e\x9e\xee\x5a\xe8\x3a\xb3\xa7\xb6\x66\xcf\x99\x6e\x84\xd1\xab\x04\xcf\x7c\x99\x20\x36\x18\x7d\x39\x1b\x00\x51\x71\xe4\xae\x0c\x61\x44\x53\x98\xc4\xcc\x0b\x87\xe4\x64\x30\xe4\x98\x54\x6b\xf5\x97\xb8\xfe\x81\x42\x0d\xe1\x15\x0f\xdf\xcf\x9d\x59\x84\xd3\xbc\xe2\xcf\xa9\x1e\x74\x82\xf3\x60\x60\x0f\x14\x39\x27\x5b\xad\x8e\xae\x6d\x1e\xee\xa7\xf0\x11\x97\x47\x2f\x43\x6e\xd7\xe1\x7e\xdf\x58\xa3\x2b\x81\x4b\x8a\xc4\x1e\xc8\xf0\xf6\x7a\xcb\x87\x8a\x33\xf8\x35\x8d\xef\x6f\x1b\x7d\x1a\xd5\x90\x35\x4d\x44\x72\x21\x88\xc6\xcc\x16\xb2\x61\x41\x78\x34\xe4\x5f\x5f\x45\x35\x56\x96\x97\x14\xbb\x5d\xaa\xcc\xd4\x94\xc4\x04\x56\x9a\x60\x04\xa7\x99\xd6\x9b\x99\xab\x40\xa1\x30\xc1\x84\xca\x60\xae\x76\xa9\xa7\x5e\x85\x2c\x47\x55\x43\x63\x56\xde\xa6\xe1\xee\x32\xbd\xbe\xbc\x7b\x78\xdc\xdc\xf6\xc8\x52\x33\xb3\x07\x7b\xfa\x76\x14\xe5\x6f\x19\xf2\x65\xbb\xeb\x9a\xea\x33\x4c\x9b\x86\x3a\x4a\xb5\x9d\x87\x4e\xd7\x74\x7e\xfd\xb6\x5e\x66\x91\xaa\x98\xbc\xa9\xc4\xb2\x7d\xa4\x0c\x54\xb9\xe5\x05\x9a\x14\xb9\x34\x2a\x4d\x67\xab\xea\x29\x2c\xec\xa9\xb4\x64\xc6\xe6\x75\x1f\xee\x29\x1b\x2a\x4e\x97\xe7\x37\x7b\x0c\x25\xf9\xea\x64\xb9\x24\x3a\x3d\xc7\x59\xdd\x57\xd8\xb5\x50\x9b\xa9\xef\x3a\xb2\xb1\x76\xc4\x9b\x2c\x37\x0b\x7e\x34\xa3\x08\xd1\x13\x64\xdf\xc3\xcf\x61\x0a\xc3\x9a\x46\x27\x70\x07\xd2\x35\x19\x18\x27\xb8\xa2\x3d\x5c\x11\x4d\xd1\xba\xcb\x3f\xa1\x75\x93\x24\xae\x26\xf8\x39\x9d\x48\x2f\xa3\x64\x5e\x37\xd2\x14\x06\x0c\x3b\x42\x97\x88\xc2\xb2\x9f\x8c\x92\xb5\x0a\x2d\x23\x55\x1a\x41\x26\x2a\x32\x99\x4d\x2e\x0e\x33\x39\x9d\x08\x15\x3b\x1e\xe9\xeb\x7f\x64\x47\x39\x2c\x00\x98\xfd\xdb\x2b\x2b\xb6\xfb\xcd\x00\xf4\xf2\xea\x1f\x06\xee\x9d\x70\x3a\x27\x4e\x0c\x52\xf1\xab\x7f\xa8\x9c\x6b\x34\x18\x1a\xe7\x2a\xa9\x78\x22\xf7\x18\x42\xf4\x2e\x7a\x19\x49\x51\xaa\x2f\x09\x78\x5d\x56\xcf\xcb\x4e\xb2\x3d\x12\xd1\xe5\x44\xfb\x08\x87\x66\x60\xc3\x6d\xa9\x69\xb0\xf9\x16\xce\xba\x9b\xb3\xdd\xf2\x8b\x91\x61\x6a\xe5\xf2\x3c\xd1\x17\xb9\x08\xd1\x2b\x64\x1c\xaa\x7c\x19\xd1\x2c\xbf\x31\xe0\x95\x11\xe6\xb5\x11\x05\xc2\x92\x9c\x20\x4b\x90\x93\xb1\xa7\x74\xc9\x6d\x72\xfe\x1f\x4a\x4d\xe9\x25\x94\x9a\xb2\x41\x73\x74\xcc\xc7\x13\x3f\x8c\x89\x79\x7e\xdb\x5f\x67\x7e\x41\x51\x9f\x4c\xff\x6d\x3b\x64\xb5\x56\x53\xbb\x57\x6f\xab\xe9\xa0\x66\x2f\xcf\x53\x5f\x8b\x8b\x5b\xed\x25\xef\x22\x67\x7a\x64\x5d\xca\xf4\xa5\x45\xb0\x14\x25\x26\x3f\x05\xb4\x03\x0b\x3a\x2f\x3e\x3e\x5e\x46\x5a\x5c\x50\xc0\x24\xed\x2c\xde\x04\x1d\xc7\xb8\x09\x38\x77\x37\x77\x8a\x3b\x7b\x37\x7c\x9d\x1b\x3b\x86\xcf\xc1\xaf\x03\x6f\x06\x9e\x87\xcf\xb9\x38\xdc\x8c\x45\x7f\xbe\x1e\x84\xe8\x05\xd2\x26\x69\xbe\x64\x96\xf4\xe5\xba\x46\x89\x8f\x97\xf1\x8d\xc2\x33\xe7\x15\xaa\x0d\x4f\xc0\xe1\xbb\xb8\xbc\x3d\x9c\xe5\x2e\x1c\x8d\x6f\x0e\x24\x73\x7d\xf0\x14\xfe\x25\xe1\x75\x5e\xd4\xd1\x11\xfc\x7e\x25\x02\x44\x3c\x95\x7a\x44\xf1\xfb\x0b\x3c\xb2\x56\xd1\xc7\x0b\xa3\x44\x4b\xce\x45\x55\x0e\x95\x02\xea\xf1\xaf\x57\x8f\xe0\x6f\x05\x9a\xa9\x86\xf1\xf1\x0e\xea\x87\x93\x7e\x32\x7d\x06\xe8\x5f\x51\xc7\xd9\xbf\x20\x19\x32\x20\xe9\x85\x8c\xeb\xee\xf7\x79\x43\x4a\x6f\xa6\xf4\xae\x90\x0d\xa7\xa4\x8e\x63\x53\xe3\xb8\xc7\x33\xd1\x68\xc2\xa3\xf4\x78\x4b\xf3\x18\xfd\x4b\x2a\xdd\x63\x4e\x07\xd0\x17\x55\xa4\x49\x6c\xe3\x7e\x5b\x66\x81\x37\x03\x33\x2b\xb6\x26\x7b\x4a\x8a\xbd\xc9\x56\x5d\x51\x59\x05\x9b\x41\x12\x97\x91\x9c\x92\x11\xc7\x40\x71\xac\xca\x99\x93\x6d\xce\x88\xa3\x5c\x08\x01\x44\x23\x44\xd1\xf4\x3d\x88\x45\xec\x79\x06\x81\x85\xdf\x04\x30\x0e\xad\x8d\xa2\x17\xb9\x83\xf0\xdb\x78\xea\xf2\xe2\xec\x97\x10\xa0\x7f\x27\x7b\xb6\xd3\x48\x83\xd8\xf3\x4a\x42\xb7\xc6\xd2\xbc\x2a\xd3\x2e\xa8\xe8\x94\xd5\x77\xe1\x29\x55\x83\x2f\x37\xb7\x66\xd0\x5e\x32\xdd\x6c\xa6\x16\xa9\xaa\xed\xf7\xf9\xeb\xee\x98\x29\xb5\x35\x0d\x18\xb8\x33\xf8\xab\x7d\x70\x4e\xd5\xd0\x39\x64\x73\x75\xb8\xd3\xb2\xca\x86\x4b\x3b\x8f\x0c\x58\x72\xdb\xf6\xb4\x96\x2c\x6c\xde\x98\xc3\x3d\x2f\xf4\xe3\xbb\xc1\xcf\x69\x96\x3e\x8d\x7c\x88\x3d\x6f\x50\xf0\x36\x8c\xed\x06\x6f\xbd\x7e\xa4\x8e\x5e\x0d\x3f\xdb\x6a\x9d\xee\x2e\xcc\x6b\x18\xb1\xdb\x47\x9a\xac\xd4\x22\x55\xb3\xf5\x68\x7d\xc3\xd1\xd9\x32\x6d\x49\x9b\xc9\xd6\x5f\x95\x53\xb3\xf3\x44\x63\xf3\xfd\xbb\xea\xe9\x45\xda\xd9\x39\xe3\x72\x4e\xfa\xad\x45\x83\xf3\x85\x5b\xf1\x21\x48\xb4\xf9\xbd\xee\x76\x67\x4a\x8a\xb3\xad\xb0\x65\xd1\x6f\xc8\xf1\xef\x6d\x73\xb4\xfb\x4c\x1b\x62\x4c\x15\x83\xc5\x1d\x07\xda\x0c\x86\xb6\x03\x1d\xde\x6e\x77\x5a\x6a\x61\xb7\xb7\xa2\xc7\xa6\x80\x2b\x67\x69\x25\xf4\x32\xf1\x7f\x90\x5e\x88\x89\x8a\x20\xe7\x08\x36\x05\x01\x1f\x08\x79\x2e\x2c\x7c\xfb\xdb\xf3\x81\x93\x80\x7b\x6f\x0e\xbc\x08\x3f\x72\xc1\xe1\x09\xee\x57\x90\x51\x47\xe9\x56\xff\x8e\x6f\xee\x27\xf5\xff\x4d\xf0\x73\x9a\xa2\x97\x51\x2e\x62\xcf\xcb\x80\xaf\x3f\xbf\xab\xa2\x44\xd7\x9a\xeb\x85\x26\x65\xb3\x12\xa0\xab\xf1\xc9\xc0\x77\xf2\x0b\x0f\x94\x75\x1c\xdf\x5c\x5c\xb4\xf9\xfe\x9e\x86\xdb\x66\xaa\x22\x77\x46\x14\xd4\x0d\x39\xcb\x67\xea\x74\x16\xff\x6c\x49\xed\x92\x07\xb7\xe2\xe2\x59\xee\xee\xac\x0c\xe7\xe8\x5d\x5d\x7d\xc7\xc6\x1d\x79\xed\x7b\x9a\x9c\x1d\xee\x74\x43\xc3\xe6\x72\xdf\x44\xb5\x56\x67\x44\x18\xfd\x2e\xf8\x39\x1d\x4f\x3f\x80\x54\xc8\x89\xa4\x17\xf2\xb2\x15\x64\xac\x2a\xd4\xb1\x94\xe4\x4a\xfb\x87\x9d\x44\xa9\x35\x4b\x27\x2f\x10\x35\x11\xb7\xf9\xb9\x5b\x5a\xa4\xa9\x35\x6d\xbd\x79\x1d\x77\x8e\xba\x8a\xa6\xee\xe9\x1c\x3c\x39\x57\x02\xd0\x71\xe6\xb7\xf7\xfd\xd0\xdc\xdf\xec\x8d\x03\x43\xe3\x96\xea\xe2\x89\xda\x1c\x43\xfd\x14\xfd\xc0\x14\x94\xcc\x7f\x65\x32\xdb\xa9\x49\xf0\x4c\x2d\xb7\x77\x9c\x98\x29\xa9\x58\x38\xd3\x3f\x73\xcf\x1f\x9f\x1c\x06\x8e\x4a\x36\x57\x1a\xcb\xcb\x16\x07\x5c\x96\xd6\x19\x6f\xc9\x74\xa3\x91\x8c\x13\x84\x68\x03\xbd\x2c\x8c\x63\xd2\x4e\xbc\x35\xca\xef\xac\x03\x1f\xed\xc7\x39\x81\x0c\x6a\x94\xae\xb9\xfc\x6f\x44\x53\xf3\x36\xe8\xfb\x44\x57\x9f\x46\x06\x54\x8c\xfc\x28\xf2\xa5\xc6\xf2\x42\xb3\x26\x4e\xb8\x1b\x58\x93\x2b\x5a\x08\x7f\xba\xe2\x0f\x49\x85\xee\x02\xc5\xcb\xc1\x6b\xfe\xfe\x6b\xb6\xa7\xc9\x58\xd0\x5b\x91\x93\xed\xf5\x0f\x8e\x5b\x1b\x1e\xd8\xd3\xa0\xaf\xec\xb1\xe6\x35\x7a\x54\xe5\xb3\x77\xd5\xd6\x1e\x9d\xab\xe8\x76\x75\x6f\xb6\xdb\x37\x77\x39\x9d\xdd\x9b\x1d\xfc\xff\x55\x96\xa6\x8d\x96\x82\x8d\x0d\xe6\xfc\xa6\x8d\x16\xcb\xc6\xc6\x7c\x6a\xc8\xd6\x51\x6e\x89\x8b\xb3\xd5\xf6\xbb\xdd\x03\x75\x8e\x6c\x99\xb6\x75\xa9\xcb\x3d\x50\x63\x8b\x8b\x2b\x28\x6f\xb7\xb5\x2e\xb6\xe4\xe4\xb4\x2c\x06\x8e\x16\xf5\xb8\xd3\xd2\xdc\xdd\xde\xe2\x6e\x57\x4a\x4a\x61\x37\xde\xe8\xf0\xbb\xd2\x52\x9d\x6d\x4e\xa7\xdf\x91\x92\xea\x68\x15\xc6\xe2\x07\xc1\xbf\x51\x01\xfa\x34\xca\x44\x76\x24\xbd\x90\x9b\x45\xee\xa6\xb4\x25\x94\x4b\xf4\x1a\x08\xb9\x83\xf0\xe6\x9d\xda\x45\x02\x10\x1d\x57\xdc\x3e\xe1\xd1\xcd\xcf\x1e\xa8\xa3\x6d\x5f\x1d\x6e\x3f\x3a\xee\x2e\x9e\xbd\xaf\x7b\xe2\xe1\x09\x3b\x40\xcb\xc9\x5f\x9e\x48\x82\x8f\x0b\x06\xf9\xee\x53\xd7\xcc\x36\x94\x4e\x35\x18\x72\xea\xc7\x07\xc0\xb3\xed\xf1\xcd\xf5\xad\xc5\x33\x77\xb7\x75\x3d\xb0\xd5\xd7\x70\xf0\xdc\xc6\xa1\x63\xbf\xfb\x72\x1f\x4c\xc0\x2d\x69\xf6\x3a\x93\xb3\x62\xff\x26\x8f\xad\x63\x8b\xd7\xbb\xd9\x9f\xcf\xeb\xc2\xc6\xe0\x5f\xa9\x83\x54\xd6\x55\x67\x6e\x57\x5f\xa3\x87\x83\xa5\xc3\x39\xee\xa9\x83\x9a\xea\xa9\xea\xea\xe9\x5a\x0d\x80\xa6\x7a\xba\xba\x7a\xba\x46\x33\xad\xc8\xad\xc8\xcf\x2f\xcf\x55\x28\x8c\x15\xf9\xe6\x8a\xdc\x04\xa8\xae\xdf\xd7\x6b\xb5\xf6\xee\xab\xbf\xbd\x7e\x5f\x9f\xd5\xda\xb7\xaf\x3e\xd2\xda\x5d\xa6\xd5\x96\x75\x5b\x1f\xb1\xf5\xf0\x1f\x7a\x6c\x82\x5f\xd3\x34\x42\xf8\x15\x2a\x71\x9d\x2e\x94\x38\xb4\x36\xfc\xca\xf4\xef\xa1\x32\x06\x3f\x58\xdd\xb7\x99\x97\xb7\x89\xfe\x2f\xea\x01\x76\xf7\xbf\x3e\xab\xb1\x49\xd4\xd4\x03\x38\xbf\x65\xca\xeb\x9d\x6e\xc9\xc7\x93\xf4\xb4\xbf\x75\x8a\xde\x32\x77\xae\x99\x59\xb1\xb5\xd8\x53\x53\xed\x2d\xb6\xda\xca\xea\xea\x6f\xbd\x4f\xde\x5d\x19\xfc\x2b\x75\x3b\x95\x85\xbc\x88\x3d\xaf\x15\xf4\xdc\xf5\x12\x99\x13\x44\x89\xeb\x47\x24\x62\x69\xb3\xa6\xdc\x96\x99\x6c\x2a\xd6\xa8\xbd\xf9\x69\x78\x1a\x9b\x1a\x36\xb9\xdc\x63\x0d\x46\xe8\x28\x6b\xe8\xcf\x6f\x99\x76\xbb\x26\xfd\x36\x3c\x83\x33\x6d\x15\x3a\x6d\x59\x41\x5a\x76\x61\xad\xae\x19\x5e\x89\x53\x59\xd5\x2a\x5b\x76\xbc\x4c\x65\xcd\xb2\xb7\x15\x66\xa4\x15\xb6\xbb\xca\x7a\x12\xe5\xfd\xcd\x85\x1d\xee\xf4\x34\x77\x57\x91\xda\xa1\x91\xc7\x6b\x1c\x6a\x83\x2b\x2b\x16\x61\xc8\x41\x88\x7a\x9c\x52\x10\xdd\x66\xf4\xe5\x5c\xf1\xed\x0a\xbb\x6d\xf1\xa6\x70\xd8\x8a\xbf\xa1\xe3\x96\xe6\xa6\x9b\xa6\xb9\xed\x34\x2c\x6f\xe5\x76\x81\x2a\x13\xe4\x3d\xaf\xbe\x5a\x8e\x93\x02\x1c\x1c\xb4\xf2\x6d\xd2\x1a\xfc\x2b\xb5\x8f\x52\x20\xdd\x3a\xdd\x27\xb9\x5a\xf7\x91\xab\x6a\x32\x3a\x74\xac\x04\xc6\x0a\xe0\x7d\xee\x8e\x8c\xcc\x76\xb3\x77\xb4\x26\x47\x5b\x33\x5d\xe1\xdc\x58\x6f\x61\xa6\xa2\xfa\xab\xbb\xfa\x20\xd5\x5a\x69\x70\xd6\x67\xc3\x32\xdc\xde\xff\x89\x4c\xa1\x2e\x1f\x2a\x72\x6f\xaa\xce\xc9\x74\xb7\xdb\xcb\xab\x61\xd4\x9f\x53\x9a\x97\x04\x69\x49\xc2\x99\x5c\x7d\xf0\xaf\xd4\xcd\x54\x3a\x4a\x47\x16\x24\xbd\xa0\xcb\x90\x89\x7a\x8f\x65\xaf\x96\x81\x1f\xa3\x54\x36\xbb\x4e\xed\x45\x44\xdf\xfb\x44\x74\xf6\x66\x9f\x77\xa8\x5c\xad\xaf\x1d\x2f\x29\x9f\x6d\xcc\x05\x28\x9c\x7b\x74\xea\x58\xc9\x58\x02\xa4\x16\x54\x1a\xf4\xa5\xa6\xa4\x64\x53\x19\x95\xde\x8b\x8f\xdf\x9a\x6b\xcb\xa9\x1e\x2e\x2c\xdc\x54\x67\xcc\x6b\x99\x2b\xaf\x1c\x7d\x7c\xa7\x8f\xbb\xbf\xd8\x62\x32\x37\x38\xd3\xd3\xad\xe5\x5a\x7d\x99\x39\x45\x18\xa7\x45\x08\x51\xf7\x50\x8a\x6b\x74\x1d\x75\x0f\x77\x7c\x2b\x6c\xe1\x52\x71\x27\xfe\x71\x20\x07\x7f\xa3\x97\xe8\xba\xf0\xd8\x52\x21\x07\xaa\x43\x8f\xbd\xa8\xa0\x30\x66\x20\x0c\xb3\x16\x02\xe6\x62\x10\xa6\x98\x2b\x66\x52\x71\x18\x81\xe5\x86\x24\x55\x61\x0c\x96\x7f\xc9\xe5\x5f\x32\xe8\xed\xed\xf5\xc5\x56\x57\x7a\x3d\x56\x4b\x8e\x2e\x23\x2d\x97\x95\x2a\x8c\x40\x86\xb9\x32\x74\x57\x6e\x27\x01\x8f\xff\xd7\x2a\x78\x07\x34\x14\x55\xf4\x82\xa5\x75\xba\xb0\x70\xda\x5f\x90\x94\xeb\x51\x15\x35\xe4\xd6\x8f\x38\x9d\x23\xf5\xc6\x76\x95\xbd\x3c\x5b\x5d\x6e\xcb\xca\xb2\x97\xab\xb3\xcb\xed\x59\x89\x69\xa6\xa2\xcc\x2c\x8f\x29\x35\xd5\xec\xc9\xca\x2c\x32\xa5\xe2\xea\xb2\x5e\x65\xd2\x48\xad\xbb\xc3\x95\x9a\xe2\xea\xf0\x68\x8a\x2d\x9a\x68\x65\x6f\x99\xd3\xef\x4a\x4b\x73\xf9\xb9\x41\x8d\x43\x23\x93\x69\x1c\x1a\xad\x43\x1d\x27\x53\x3b\x60\x39\xcb\x9a\x1d\x2f\xcb\xb6\xaa\xb2\x0a\x54\x32\x99\xaa\x00\x09\x3a\xed\x9f\xd4\xcd\x54\x56\x78\xec\xa4\x6e\xe0\x75\xae\xd3\x79\x5d\x9d\xeb\x90\x5b\xd7\xe0\xc3\xf0\x3a\xf7\x17\x27\xce\x48\xb3\x27\x4a\x8b\x86\x2b\x35\x86\xfa\xc9\xd2\xaa\x99\x1a\x2d\x80\x63\xea\xf4\x54\xdc\xfd\xa5\x23\x09\x4a\x53\x85\x51\x5f\x66\x4e\x4e\x32\xf9\x5a\xe0\xc8\xa1\x5c\x4b\x4e\xcd\x88\xdb\x3d\xde\x64\xb2\x74\x2e\x54\x95\x8e\x9e\xde\xe2\x81\x2e\xa0\x4b\xac\x16\x73\x93\x3b\x2b\xd3\x51\xa5\xd3\x95\x59\xd3\x84\xb1\x53\x8e\x9f\xa1\xbe\x4a\xee\xdf\x45\xdf\x4d\x32\x70\xbe\x1a\x38\x85\xc7\xc8\x6d\x3b\x3f\x5e\x3e\xa7\x37\x53\xf7\xb1\x77\x12\x1c\x15\x3d\xea\x14\xe2\xac\xd3\xc4\xfc\xf1\xbc\x4d\x43\x23\x8a\xa6\x36\x22\x11\x17\xc2\xcb\x90\xf0\xea\x2b\xc5\x42\x50\xfc\x28\xa2\x29\x8a\xee\x16\x23\x4e\x68\xaa\xa5\xd7\x17\x61\x48\xcc\xd1\x86\x74\x81\x44\x2d\x09\xf9\xdc\x88\x1d\x1d\x02\x11\x10\x76\x31\x54\xc4\x5d\xdf\xdd\xb8\x37\xd9\xe8\xce\xca\x2c\xcc\x4d\x4a\xca\x2d\xcc\xcc\x2a\xcc\x4b\xae\x64\xcc\xba\xf8\x4c\x65\x6c\xac\x32\x33\x5e\x6f\x66\xef\x7c\xf5\x7d\x55\xa1\x81\x2f\xcd\xca\x72\xe5\x28\x95\x39\xae\x2c\xb5\x8d\x2f\x8b\x57\x25\xc7\x3a\x10\x86\x00\x7d\x0b\xb5\x8f\xf9\x16\x62\xd0\x06\x24\xbd\x10\x1b\x41\x13\x3f\x1a\xb9\x4d\x41\xa9\xf5\xe2\x3d\xb2\x44\x8d\x4f\x6f\xdd\x76\xa6\xec\x51\xc6\xe1\xb4\x68\xb2\x30\xf4\xd0\xf7\x81\x45\xc1\x7d\xb4\xe8\x9b\xcd\x52\xea\x86\x5c\xf3\x08\xc3\x6d\xf4\x0f\xa8\x17\xd8\xa7\x91\x0c\x99\x90\xf4\x82\x29\xf3\x7a\x3a\x5f\xbc\x03\x21\xfe\x1e\xa1\x2b\x10\xa7\x8b\x7a\x01\x1b\xeb\xc6\x8b\x8a\xc6\xeb\x8d\x78\x82\x1a\xf4\xb7\x0c\xd2\x9b\x70\x52\xae\x27\x5b\xe3\xc8\x2f\xc8\xcc\x2d\xa0\xcb\x71\x72\xae\x5b\x9d\x65\xb7\xda\x32\x0d\x56\x8a\xf9\x8a\xad\xc5\x99\x9e\xee\x6c\xb1\x55\xd5\xd5\x57\xfe\x3d\xbb\xc8\x98\x9c\x92\x91\x62\x37\x6c\x50\x15\x19\x93\x53\x33\x53\xdc\x06\x72\xb6\xaf\xe7\x4e\xe3\x33\x68\xfb\x0d\xfd\x28\xd8\x44\x82\x33\x83\xcf\xec\xde\xcd\x9d\x86\x8f\x48\xdf\x2f\x73\x37\xe3\xdf\xa0\x5c\x94\x8c\xd8\xf3\x11\xc4\x6f\x37\x83\x52\x84\x73\x6a\xb8\x9c\x4e\x21\xef\x6e\xa9\xae\x38\x4f\x09\x69\x05\xe5\x7a\x67\x73\x7a\x92\xc2\xa3\xb6\x58\x95\x5a\x73\x62\x6e\xb2\xb7\xbc\x5a\x9d\x53\x6a\x54\xa6\xc4\xb7\x47\x29\x31\xce\xd3\x67\x14\x5a\xcd\x0a\x61\x5c\x4d\x71\x0d\x94\x14\xed\x43\x72\x64\xf0\xe9\x22\x01\x70\x04\x20\xc0\xf5\x14\x10\xe4\x5e\x31\x2d\x8c\x0a\x89\xd8\x2d\x5a\x2d\xcd\x26\x1a\xb5\x8a\x75\x09\x3d\x1c\x0e\x4a\x0a\xba\x86\x1d\x8d\xe9\xce\xf4\xd8\x04\x4f\x82\xa5\xca\x94\xb8\xef\x63\xc1\x99\x60\x52\x22\xd5\x95\x77\x5b\x3f\x26\x7b\xb7\xbb\xb8\x7a\xba\x8c\x6e\x46\xc5\xa8\x03\xcd\xa0\xc8\x97\xc6\x7a\xeb\x7c\xee\x0c\x7e\xef\xa6\x4e\x4c\x14\x5c\xe9\xf5\x2c\x2b\xe0\x2c\xaf\x19\x5e\x6b\xf4\x48\x18\xa5\x49\xa9\x82\x6c\xbd\x10\x2e\x1e\x1e\x7a\x20\xda\xe3\xe2\x1e\x48\x42\x97\x3d\x9d\x57\x00\x50\xb6\xe5\x44\x5b\x7d\x55\xba\x29\x21\xdb\x9c\x7a\xc1\x7f\x6c\xa6\xb8\xe7\xf8\x2b\x23\xdd\x67\x76\x57\x65\xbb\x1b\x72\xb3\x34\xb2\x34\x5d\x82\x7f\x1c\x83\x6f\xee\xbe\x8e\xfa\x4a\xe8\x0c\x9c\x4f\x4e\xd4\x56\x39\x55\xf6\xee\x1d\xc5\xd5\xcb\x3b\x6a\x0c\xb5\x63\x1e\xee\x56\xb0\xb4\x4e\x16\xba\x26\x9b\x2d\x00\xe6\x96\x49\x8f\x67\xb2\xd9\x0c\xd4\x8f\x4c\x3b\xab\x12\x1b\xf6\xf7\x5a\x13\x12\x4b\x4c\x29\x1a\x65\x14\xa8\xaa\xe7\x1a\x1b\xf6\xf5\x14\x68\x6b\xa7\x2b\x6d\xdd\xd5\x4e\xb9\xa2\xcc\xa4\x72\xe5\xeb\x64\x79\xf7\x0e\x25\x36\xdf\x3c\x60\x4d\x58\x4d\xa5\xa2\x72\x3c\xf5\x46\x7b\x83\x45\x99\xe9\xed\x2e\xb4\x56\x9b\x12\xf1\x11\x7b\x4f\xa9\x5a\x5d\xda\x63\x4f\x74\xf6\x97\x6b\x34\xe5\xfd\x4e\x62\x43\x3c\xcf\x5d\xa2\x7e\x46\x55\x20\x25\x62\xcf\x47\xf1\xfd\x2e\xbf\x16\x5f\xf1\xf9\xdf\x5f\x03\xac\xf8\x7b\xaa\xe2\x3a\x98\x8a\x08\xa3\x9f\x23\x84\xff\xc0\xbc\x86\x18\x24\xe3\xe7\x94\x94\xdc\x73\x11\xe4\x0f\x15\x08\x97\xe6\xe4\xce\xfc\xe7\xf0\xb7\x45\xee\x16\xe8\xcf\x2d\xb0\x18\x8d\x96\x82\x5c\xda\x73\xf9\x5d\xea\x03\xb8\x57\xeb\x74\x6a\xd5\x0e\x87\x30\x6e\x9e\x0f\x5e\xa2\x2e\xb3\x49\x48\x81\xd8\xf3\xb1\x44\x1f\x85\x43\xa5\xc2\x4e\xad\xd8\x90\xec\xec\x2a\x51\x95\xb8\x2c\x8a\x84\xea\x23\xd5\xbd\xbb\x6b\x33\xd9\xa4\xcb\x9b\xba\xb6\x57\xa4\x46\xc9\xe2\x25\xc3\x59\x19\xf9\xa3\x8f\xcc\xd2\xf7\xa2\x60\x10\xfd\x14\x21\xfc\x5b\x66\x05\xb3\x48\x4e\xfc\x20\xb6\xf1\xb6\x3b\xf9\x3b\xf9\xcf\x24\xae\x17\x21\xda\x42\x2f\x87\x73\xf6\x03\xa2\x29\x82\x4a\x19\x82\x46\x25\x4b\x16\x42\xa9\xc9\xb2\x0d\x02\x18\x02\x2b\x4d\x34\x5e\x1f\x0c\x15\x86\x76\xc1\x57\xdb\x1e\xdc\x59\x55\xb5\xf3\xc1\x36\xee\x07\x60\xf1\x6c\x6e\xb7\x16\xb4\xcf\x7a\xb8\x1f\xc0\x07\x5c\x01\xbd\x0c\x79\x3d\xb7\xf6\xf6\xdf\xd2\x99\x03\x13\x90\x56\xd4\xef\xf3\x6d\x2c\xcd\x14\x73\x3b\xcf\x73\x9d\xf4\x4e\xba\x0a\x19\x11\x7b\x5e\x41\xfa\x84\x5f\x0d\xe4\x60\x03\x79\x06\xa5\x5c\xe3\xe0\x4a\x81\x1a\x28\x01\x10\x58\xef\x74\xbe\x5f\xdc\x57\x6e\x96\x3d\x02\xae\x03\xdc\xad\xff\x15\x93\xa1\xcd\xcf\x90\x25\xc9\xa8\x58\x5d\x9c\xb3\xb5\x38\x5f\xf1\x02\x77\xee\x20\x3c\xf2\x4e\xac\x2a\xaf\x50\xb7\x41\x1b\xc7\xc8\x0b\xe8\x2a\x6b\x43\x6f\x0e\xf7\x75\xdc\x10\xb0\x73\xf2\xf4\x72\xb7\x0e\x68\x3c\xc9\x48\x4c\xf5\x1b\xad\x70\x34\xb0\x87\x92\xc2\xf9\xec\x4a\x57\x36\x8d\x47\x19\x09\x89\xed\x26\xbe\x56\xcf\x92\xfc\xde\xd2\x0b\x26\x35\x45\xf4\xe5\x9a\xea\x5f\x1d\xb7\x1c\x6a\x0e\xb5\x0a\x72\x77\xc1\xa9\xa9\x27\x16\x7d\xea\xf2\xc1\xa2\x03\x7b\x20\x55\xb7\x47\x91\x14\x4b\x43\x5e\xeb\xd6\x0a\xee\x1b\x90\xd4\x7a\x4b\xbf\xd5\xdc\xbd\xbf\x85\xfb\x09\x3e\x11\xd8\xc2\x3c\x0b\xb6\xf1\x07\x46\x3d\xd3\x3d\x55\x0a\xd5\x53\xb7\xdf\xe1\x9d\xcd\x4d\x52\x16\xfb\x4a\x52\x6e\xad\xda\x5c\xa7\x87\x09\xd0\xd4\x6d\xa9\xaf\xdb\xd6\xa0\x17\xda\xeb\x87\x08\xd1\xcf\x11\xdf\x33\xbd\x4f\x13\xc9\xef\x33\xeb\x43\xa7\xa2\x34\x08\x99\xa1\xaf\xc0\x36\x0a\x81\x77\x61\xa8\x1c\x00\x35\xa6\x5e\xdd\xb5\xeb\x15\xf8\xe7\xd1\xc0\xaf\x70\xed\x7d\x02\x92\x22\xc1\x86\xb4\x07\xd2\x88\x8d\xb4\x12\xbc\x44\xbb\x99\x97\x90\x02\xa9\x90\xf4\x42\x46\x52\x8c\x38\xa6\xaf\x72\x37\xa6\xd6\x8d\xf0\x15\xf8\x9e\xd6\xd7\x6d\xb5\x4e\x6a\x65\xc6\xa5\xd2\xda\xbd\x7d\x76\xc0\xdc\xb3\xe0\x32\xe9\x74\x66\xb3\x4e\x67\xa2\x3d\xab\x7f\x2d\xed\xb4\x2b\x65\xd2\x1e\x59\x82\xba\x69\xa9\x17\x9f\x85\x07\x55\x96\xfc\x6c\x95\xd9\xcc\xd7\x29\x78\x89\x2e\x61\x11\x4a\xe4\xc7\x3e\xe6\xc7\x80\xca\x45\xb1\xeb\x5f\x28\x57\xfd\x10\xfc\x4b\xe9\xa0\x2d\xeb\x2e\xb0\x4e\x6b\x64\xc6\x25\x1f\x79\x4f\x32\xf7\x3c\x13\x84\xcb\xf9\xeb\xd8\xd3\x63\xa4\xad\x7e\x80\x10\xf5\x47\xd1\x5f\x2e\x82\x01\x8b\xd1\xa5\x22\x67\x3a\x32\x95\x42\xf5\x63\xe8\xe3\xce\xc0\xb7\x65\x50\xb5\xfa\xdf\x33\xf4\xb3\x87\xb7\x9f\xfb\xe2\x95\x19\x84\xd1\x03\xc1\x87\xe8\x76\xfa\x22\xaa\x40\x1d\x48\x7a\xa1\xbe\xb2\xd0\xc4\xf7\xbb\x4e\x17\xca\x86\x40\xb2\xef\x09\x0a\x51\xa9\x14\x15\xa4\x52\x5c\xfe\x48\x1a\x43\x92\x65\x9c\x1f\x18\x24\x35\xbd\x2c\xb4\x93\xa1\x3e\x89\x88\xc1\x72\xab\xb7\x5a\x5f\x36\x56\xa9\xf6\x4c\x1e\x6d\x5b\x64\xcc\xcd\x9b\xcb\x27\x1e\x99\xb4\x61\xc0\x95\xf3\x8f\xf4\x66\x94\x78\x6c\x09\xea\xe4\xd2\xaa\xea\xac\xfd\xff\x7e\x5b\x1d\x0d\x54\xf9\x91\x77\x6f\x6e\x3b\x3e\x5b\x12\x27\xe3\xce\xe8\x6b\xdc\x86\x88\xa9\xf2\xb9\x26\x63\xa2\xa9\x0a\xd8\x78\x4f\x66\xa2\x21\x4b\x6e\x6c\x9c\x28\xf2\x2f\x75\x18\xab\xe6\x1a\x73\x5a\x8e\x7f\x70\xd0\x7b\xf4\xfd\x23\x65\x11\x71\xca\x0d\x3d\xf2\x34\x79\x44\xcf\xd7\xfe\xe7\xa4\xeb\xd8\xff\xac\x6c\xb2\x4d\x3f\xba\x85\x5b\x36\x4f\xe8\x62\xbb\x95\x5a\xb3\x12\x72\x53\x0b\xbb\xbd\x86\x5a\x47\x26\xe9\xf3\xa9\xe0\x25\xfa\x61\xe6\x6d\x54\x80\xca\x91\xf4\x42\xb1\x35\x55\xc2\xd7\x59\xa9\x96\x5d\xa9\xf3\x1a\xd3\x5f\xb9\x36\x14\x52\x22\xae\x19\x89\x7c\x5d\xe9\x87\xe0\x27\x39\x23\xb3\x0b\xc5\x7d\x67\x16\x2a\xb2\x2b\x46\xcb\xac\x7e\x77\x86\x6f\xee\x78\x6b\xdf\x7d\x33\x1e\xbc\x1b\x1b\xea\xa7\x7c\x85\xe3\x4d\x26\x73\xcb\xb4\x57\x56\xb1\xb3\xdb\x6a\xed\xd9\x53\xa3\xf7\x37\x56\x26\x51\x49\x13\x81\x8f\xd4\x6e\x83\xc2\x39\xf5\xc0\xc6\x8a\xf9\xc1\x4a\x79\x62\x65\xcf\xa4\x7b\xf0\xde\x31\x47\xf1\xec\xbd\x5d\x95\x5b\x9b\x8d\xba\xfa\x99\xaa\x9a\xb9\x86\x9c\x09\xac\x6b\x98\xf7\xd7\x6f\xa9\xd7\xc2\x86\x64\x4d\x02\x04\x85\x79\xf1\x64\xf0\x12\xbd\x83\xf8\xdb\xb3\xe7\xf3\x33\xf9\x35\x7d\xcd\x26\x4a\xed\x80\x50\x08\xb2\x3a\xe4\x8b\xad\x84\xf0\x92\xa8\xd3\xc3\x45\xdd\x5c\x79\xed\xce\xb6\x3c\xbd\xff\x60\xcf\x21\xf0\x58\xee\x1e\x6a\xdf\x56\x91\xbe\x3b\x6f\xd3\xa9\x6d\x35\x7b\xa7\x07\x0c\xdc\xcb\xdb\xce\xed\xf0\x94\x6c\x7f\x74\xb4\x7c\x5f\xf9\xad\x09\x59\xb9\xed\x7b\x5a\x9a\xf7\x75\x9a\x26\xe1\xd6\x92\x36\xc7\xf8\xbd\x83\xab\x79\xd4\x47\x0b\x2f\x1f\xac\x50\x97\x76\x3b\xb8\xad\xde\xad\x67\x47\x27\x1e\x9d\x73\x2b\x53\x78\xd9\x2e\x06\x2f\xd1\x5e\xfa\x34\x2a\x40\x2b\xbe\x68\x6d\xdc\x06\x8a\xc1\x05\x40\x85\x01\x9e\xd3\x10\x8d\x30\x43\x63\xde\x2a\x00\xc4\x00\xaf\x7b\xa9\x7e\x16\xc8\x2d\xa2\x18\xa4\x91\x75\x0d\x0d\x45\x15\x37\x20\x84\x48\xb0\x40\x15\x1b\x0a\xc7\xf8\xd7\xbc\xfe\xcf\x6c\x78\x2b\x24\x52\xa7\xd0\x2a\x34\x39\xd9\xe4\xd2\xf6\xff\xd8\x8a\x21\x33\x5c\xa7\x87\x3f\x65\x0f\x17\x95\x4e\xd6\xea\xb5\xcd\x7b\x3b\xeb\x20\x51\xbb\xab\xb9\x66\xb4\x34\x6d\x57\x6e\xff\x3d\x13\x25\x33\x83\x6d\x5a\xee\xe3\xd7\xbf\x55\x38\x75\x6f\x9f\x77\xde\x71\x6b\x42\x96\xba\x62\x93\xcf\xd9\xee\xc9\x18\x02\x8f\xd1\x9b\xd7\xb1\xb7\x39\xb0\x01\xff\xcf\xf8\xd9\x2d\x9e\xd4\x82\xaa\x5c\xee\x82\xf4\xab\xc7\xba\xef\x18\x2c\x48\x49\x15\x62\x32\xab\xe8\x6f\x52\xb7\x31\x6f\x60\x16\x9d\x21\xeb\x99\xf8\x83\x59\x5e\xfb\x05\x83\xe8\x37\xb8\x97\xfa\x0e\x7e\x1d\xb3\x68\x03\xff\x75\xf0\x3f\x10\x22\x78\x67\x32\x21\x7f\xbb\x04\x80\xe6\x2b\x8c\xc2\x10\x76\x5e\x01\x16\x49\x2a\x34\x0d\x42\xea\x6c\x55\x66\x62\x82\x3c\x1e\xc9\x50\x9c\x4a\x26\x8b\x90\x2a\x8d\x82\x4b\x5a\xe8\xc2\x5f\xae\x0e\xdf\xf8\xab\x65\xb6\x0f\x56\x57\x61\xf8\xe8\xcf\x1e\x6a\xc5\xb8\xf5\xa1\x9f\x1d\x95\x7e\xfe\xfb\x85\xe7\x76\x15\x03\x14\xef\x7a\x6e\xe1\xf7\x9f\xe3\xe7\x26\xf0\xc3\x78\xe6\xf9\xcf\x8e\x1c\x3b\xf2\xd9\xf3\xd3\x18\x3f\x17\x78\x01\x0f\x3c\xfc\xad\xb9\x13\xb3\xef\x3e\x34\x80\x03\xdf\xff\xff\x89\x8c\x80\x94\x08\xd1\x85\x2c\xbf\x65\xdd\xf4\xa2\x12\x13\xb0\x2f\x01\x1c\x32\x4b\x0a\x2c\x23\x66\xa9\x96\x48\x4a\xc2\x19\xda\x6b\x08\xfc\x6c\x31\x26\xa3\x4d\xc2\x4a\x76\xac\xa1\xbb\x9a\xa4\xd7\x17\xcd\x2f\x53\x0a\xad\x42\x1d\x17\x41\xc2\x5a\x64\xc4\x3f\x5c\x18\x61\x21\x1c\x71\x35\x5f\x45\x87\x4d\xa1\xc2\x4b\xdc\xcf\xdc\xaf\xef\xed\xbd\x63\xb0\x60\x31\xbb\x6a\xaa\xda\x3d\xd5\x53\x95\xb8\xf8\xde\x7b\x8b\xa0\xa1\xff\x9b\x3b\x38\xb5\x0f\x5c\xd3\x0f\x6f\x0a\x34\xe1\xf3\xb5\x3b\x5a\x72\x35\xbe\x6e\x7b\x20\x82\xfe\xef\x89\xe7\x9e\x43\x80\x86\x10\xa2\xe7\x99\x15\xb4\x81\xdf\xed\x48\x20\x74\xa9\xc5\x92\x20\x58\xc4\x30\xde\xb5\x71\xb5\x32\x59\x9c\x54\x9a\x16\xc6\x3b\x96\x0b\xa1\xeb\x36\xea\x9e\xcf\x16\x38\x0e\x30\x70\xf9\xb4\x82\xb3\x7c\x46\x95\xaf\xbe\x4e\x95\x4f\xc0\xd9\xe9\x69\x6e\x04\x01\x7a\x22\x78\x89\x8e\x65\x5a\x90\x1a\xd5\xfa\xaa\x64\x40\x53\xf1\xc0\xd0\xb8\x3e\x0a\x22\x51\xe4\x0e\x09\x60\x16\x88\x17\x86\x94\xc4\x1b\x46\x00\x42\xa5\x0d\x88\xa6\x49\xa8\x7c\x15\xc3\x5b\x04\x6a\xbe\x87\x65\x02\xb4\x9c\x4c\x46\x42\x9b\xc2\xfe\x1e\xfc\x5a\x73\x65\x39\x14\x7a\xdd\xa1\x92\xe1\x56\x38\xce\x6d\x05\x86\xbb\x0c\xda\xd2\x4e\xab\x75\x5a\x1b\x6f\xdc\x27\x2c\x8d\xbf\xf9\x0d\xf7\x1f\x60\x62\x5a\xb8\x8b\x9b\xb8\xbf\x4f\x70\xef\x96\xb6\xdb\x12\x63\x25\xfd\x32\x19\xbf\x44\x82\x7b\x02\x22\x36\x81\x82\x9f\x3b\xe3\xfc\x38\x94\xe8\xb1\x0e\xa9\x11\x02\x09\x2a\x0f\x3e\x05\x4d\x28\xe2\x39\x0c\x2f\x43\x93\x18\x07\x20\xd0\x68\xc3\x34\xf3\x68\x17\x34\x88\x34\x0d\xeb\x68\x3c\x61\x9a\x53\xa8\xec\x06\x7c\xf2\xc3\x34\x8f\xa1\x87\xa1\x5b\xa4\xe9\x5e\x47\x13\x1f\xa6\x99\x42\xd1\x02\x1f\x7c\x35\x9f\xad\x61\x9a\x47\x51\x2c\x6c\x17\x69\xb6\xaf\xa3\xf9\x4e\x88\x06\xbe\x1b\xbc\x08\x3e\x9e\x86\x7a\x19\x7c\x22\xcd\x7e\xae\x8e\x6e\x60\xde\xc6\x3a\xa4\x45\xfc\x20\xdd\xad\x5d\x15\xd1\xc3\x56\xc3\x3e\xc4\xdf\x46\x88\xd6\x90\xf6\xd1\x8b\xed\xb3\x93\xc8\x03\x6b\xea\x25\xd0\x68\xc3\x34\xf3\xa8\x84\xb4\x0f\xac\x69\x1f\x81\xc6\x13\xa6\x39\x85\x22\x6e\xc0\x27\x3e\x4c\x33\x15\xfc\x58\xa0\x59\x53\xf7\x37\x11\xa2\xa3\x89\x3c\x46\x51\x9e\x63\xd7\xf0\x11\x68\xb4\x61\x9a\x79\xd4\x7b\x8d\x3c\x02\x8d\x27\x4c\x73\x0a\x69\x6e\xc0\x27\x3e\x4c\x33\x15\xfc\xfc\x1a\x79\xbe\x84\x10\x9d\x47\xfa\xd4\x22\xf6\xe9\x6d\xa4\x4f\x61\x4d\x9f\xee\x0b\x5e\xa2\x5b\x24\x5e\xac\x43\x05\xa2\xcc\xe7\x60\x93\xd8\xef\x9b\xd6\xd1\x78\xc2\x34\xf3\x68\x27\x0c\x8b\x34\xc3\xeb\x68\x5a\xc2\x34\xa7\x50\xe9\x0d\xf8\x54\x86\x69\x1e\x43\x0f\xc2\xac\x48\x33\xbb\x8e\x46\x1f\xa6\x99\x42\x91\x02\x1f\x7c\x85\xcf\xe9\xe0\x25\xda\x22\x51\x61\x1d\x72\x89\x32\x9f\x87\x1a\xb1\x5e\x35\xeb\x68\x32\xc3\x34\xf3\x68\x3f\x54\x89\x34\x55\xeb\x68\xec\x61\x9a\x53\xa8\xf6\x06\x7c\xa2\xc3\x34\x53\x48\x2e\xd0\xe0\x2b\x34\x0d\x08\xd1\xe3\x92\x0c\xac\x43\x45\xe2\xbb\xfa\xa0\x52\xe4\x53\x29\xd2\x9c\x0b\x5e\xa2\x0d\xcc\x6f\xb1\x0e\x55\x90\xf1\x5c\xfe\x5c\x34\x92\x3e\x87\x61\x25\x5a\x88\x03\x12\xca\x3f\x09\x97\xcf\x2f\x45\x0a\xe5\x91\x6b\xcb\xff\x19\x2e\x3f\x55\x7d\xbd\xe7\xff\x20\x96\xf3\x6d\x7b\x06\x25\x0a\x14\x89\x21\x6c\x3e\x81\xe6\xc3\x30\x8f\x29\x19\xe1\x81\xd7\xf1\x60\xcd\xe1\xf2\x47\xe5\x16\xa1\xdc\xb2\xb6\xfc\x4e\xa1\x1c\xb1\xf0\xdd\xcf\x85\x79\xf8\x25\xae\x8e\x56\xd1\xcd\x58\x87\xaa\x84\xb9\xea\xba\x76\xae\xde\x1f\xbc\x44\xbb\x48\xfd\x6b\x84\xfa\x7f\x7d\xbd\xfc\x42\xf9\x27\xe1\xf2\xf9\x1d\xeb\xeb\x2f\x94\xff\x33\x5c\x7e\xaa\xf8\x7a\xcf\x7f\x18\x2e\x9f\x92\xae\xaf\xdb\xcf\x11\xa2\x2b\x98\xcf\xb1\x0e\xdd\x29\xbc\xff\xfd\x44\x01\xb9\x30\x71\x6d\xf9\x1f\xc4\x72\xbe\x0f\x1f\x42\x09\x02\x45\x42\xa8\xfd\x08\x0d\x4b\x85\x79\x9c\x1a\xbd\x1e\x8f\x9f\x86\xcb\xa7\xcc\xa4\x1c\x87\xca\xf9\x39\xab\x64\x3e\xc3\x3a\xd4\x2a\xf6\xd1\x2d\x48\x21\x70\x50\x84\xde\x71\x28\x78\x89\xae\x63\x7e\x83\x75\xc8\x2f\xc8\x79\x26\x4a\xa8\x67\x94\xc0\x43\x28\xff\x75\xb8\x7c\x7e\x2a\x42\x28\x8f\x58\x5b\xfe\x8f\x70\xf9\x29\xdb\xf5\x9e\xff\x4c\x2c\xe7\x65\xb8\x8b\xc8\x80\xaf\x91\xe1\x07\x61\x1e\x53\xc1\x28\xa1\x2d\x45\x1e\xef\x06\x2f\xd1\x31\xcc\xcf\xb1\x0e\x75\x0b\x32\x2e\x53\x42\x2d\xa8\xb5\xe5\x3f\x0d\x97\xcf\x77\x83\x50\x0e\x6b\xcb\x3f\x0f\x97\x9f\xca\xbe\xde\xf3\xef\x85\xcb\xa7\xfe\x40\x09\xed\x28\x96\x37\x72\x0d\xf4\x7e\xc2\xbf\x5f\xe0\xbf\xb8\x9e\xbf\x50\xfe\x5e\xb8\x7c\x2a\x76\xfd\xf3\x64\xfd\x61\xbf\x08\xaf\x51\x5b\x50\x14\xd4\x8b\x7a\xa8\x7e\xdd\x7c\xfd\xb7\xf0\x5c\xd8\x12\xb7\xbe\x9d\x85\x35\xcc\x14\xe6\x71\x06\xc5\xc2\x9c\xc8\x63\x6e\x1d\x8f\x4b\x61\x1e\x67\xe4\x79\x02\x8f\x3c\x9e\x00\xa3\x71\x6e\x94\x3e\x4a\xf0\x26\xd5\xa8\xd2\x57\xa6\x06\x96\x49\x05\x44\xc5\x00\xa0\x58\x12\x8c\x2c\x62\x69\x6d\x92\x00\xbf\x11\xa2\x43\x30\x20\x64\x0f\x5a\x86\x1b\x11\xca\x56\xa1\x2c\x94\x25\x4b\xd1\xea\x65\x52\xe2\x7d\xa7\x8e\xa5\x14\x89\x89\xca\xc4\x2b\x21\xd7\xbc\x91\x48\xa9\x28\x35\x50\x2a\x0a\x3f\x09\xff\x99\x94\x5d\x61\x57\x81\xc9\x98\x55\xa8\x50\xa6\x37\xd8\xb4\xa5\xf9\x29\x99\x8e\x6a\xdd\x52\xe0\x3f\x6f\xde\x03\x3f\x79\x1d\x7e\xfb\x27\x66\xe5\x8b\x56\x85\xd5\x53\xae\xcd\x31\x01\x24\xc4\x76\xc8\x93\x13\xf3\x4a\x0c\xba\xda\xf2\xa2\x24\xb8\x8d\x9b\x61\x56\x56\xfd\x98\xe3\xed\xd3\x73\xdc\x28\x6d\xa2\x9b\x51\x0d\xea\x41\x7d\xbe\xee\x26\x0a\x4b\xa4\x26\x40\x12\x0f\x30\xa8\x08\x58\x86\xae\x47\x14\x06\x4c\x11\x58\x45\xa9\x04\xa4\xa3\x08\x63\x82\xd1\x51\x43\x72\x1f\x0a\x57\x2c\x0d\x21\xcc\xc1\x32\xb6\xb1\xae\xb6\xb5\xb9\xb6\xa7\xae\xa7\xb4\xb8\xd0\xa9\x49\xd0\xe6\xe8\x23\xa5\xc9\x46\xed\x55\x56\x7e\xe8\xdc\x53\x3c\xc3\x56\xf2\x56\xbd\xf2\xba\x15\xd7\xf2\xe6\xaf\x23\x6c\xea\x7f\x59\x1a\x89\x33\xdb\x46\xb6\x15\x37\x1e\x1a\x71\xb5\x1d\x7d\x79\xfc\x53\x30\xb7\xcc\xf9\x3c\xd3\x7e\x2b\x5e\xa4\x2a\x76\x3c\xd8\xd5\xf5\xe0\xd6\x32\x90\xc7\x42\xe6\xf5\x1a\xa9\x8a\x7b\xb4\x74\x7e\xb8\x5e\xf1\x93\x96\x13\xdb\x2a\x72\x2a\x07\x36\x64\xd5\x6a\x75\xbe\xfc\xd4\xbc\xd6\xed\xd5\x83\xb7\xf8\x75\x4b\xc5\x83\xa5\x59\x19\x85\x7e\x1b\x54\xed\xec\xb4\xe4\xf5\x1c\xee\x09\xfc\xc5\xb9\xc5\x1a\x7d\xdd\xb6\xf4\x0c\x43\x96\xbb\x25\xff\xb3\x24\xd7\x40\x55\x41\xb3\x2b\x9d\xec\x79\x82\x97\xe8\x06\xb2\xce\x6a\x45\x1d\x74\x0b\x59\x67\x61\xcd\x3a\xfb\xa5\xe0\x25\x5a\x45\xe6\x7f\x95\x48\x73\x33\x8a\x10\x46\x7f\x44\x68\xfe\x0a\x7c\x5a\xc2\x7c\x4e\xa1\x26\xb2\x86\xc2\x9a\xb5\x58\xe0\xf3\x8f\xb0\xce\x3e\xd5\x18\x25\x70\x11\xe7\xb8\xc0\x43\x19\xe6\x71\x16\xa5\xdc\x80\xc7\x1b\x61\x1e\x67\x93\xaf\xc7\xc3\x1f\xe6\x71\x1a\xa5\xc2\x8c\xc8\x63\x66\x1d\x8f\x2f\xc2\x3c\x4e\xa7\xc8\x05\x1e\x72\x81\xc7\x73\x08\xd1\xa3\x64\x7f\xa2\x13\x78\x04\x3f\x80\x4e\x71\x9e\x75\x5e\x59\xa3\x99\x63\x6c\x04\xd2\xa1\x6a\xb2\x9f\x9c\xc2\x1f\x06\x83\x02\x4d\x30\xb8\x76\xff\x46\xe6\xbc\xb0\x7f\xdb\x12\xfc\x88\xcc\x79\x58\x33\xe7\x85\x35\xe4\xdf\xc2\x6b\xc8\x16\xc9\xfa\x39\x2f\xec\x01\x4d\x61\x1e\x67\x82\x3f\x22\x73\x1e\xd6\xcc\x79\x81\xc7\xa5\x30\x8f\x33\x91\x6b\xe6\x7c\x98\x07\x0e\xf3\x38\x1b\xfc\xd1\x35\x7b\x3b\x81\xc7\x9b\x61\x1e\x67\x23\xd7\xac\x75\x04\x87\x7a\x94\xd6\x30\x2b\x48\x8b\xca\x7c\x25\x71\x40\x61\xde\xa6\xc1\xf5\x48\x8a\x10\x48\x05\xa8\x82\x5e\x02\xda\x40\x7c\xd5\x19\xde\xa6\xe3\xcd\x40\x32\xf3\xca\x08\x92\x78\xb2\x56\x2f\x93\x85\x4c\x3b\x95\xe2\xfa\x5a\x23\xe4\xcf\xfe\xef\x81\x03\xf8\x93\xcd\xd7\xce\x88\x54\x73\xb1\x3a\x70\x94\xea\x0e\x64\xe1\x5b\xf0\x2b\x81\x67\xa6\xae\x1d\xe8\xea\x8a\x92\xc2\x24\x66\x65\x3a\xf0\x53\x5e\x5f\xdc\xcf\xdd\x4a\xbb\xe8\x66\x54\x88\x2a\xd1\x1d\xbe\x0d\x69\xa9\x98\xc2\xb9\x40\x23\x23\x30\x24\x15\x7c\x6a\x6b\x8f\xcf\x80\x24\x08\x53\x12\x3c\x12\x01\x62\x26\xf6\x1a\x01\xd2\x4e\x0a\x44\x57\x88\x76\x59\x19\x43\x32\xcf\x8a\xb4\x88\x46\x0c\xcd\x6c\xbc\xee\x23\xa8\xb1\xd7\x97\xea\x71\x03\x2a\x2d\x71\x57\x7a\x2a\xf3\x4d\x39\xba\x64\x65\xbc\x2c\x3a\x12\x15\x82\x33\x52\x1a\x82\x83\x0f\xe1\x1c\xa9\xc4\xa8\x06\x25\xcb\x4a\xae\x6d\x15\xa7\x8b\x65\xaf\xa0\xc3\x1f\xdb\xfe\xca\xad\x75\x00\x0d\xb7\xac\x8c\xcf\x7e\x75\x7b\x11\xac\xfe\x27\x14\x4e\xdc\xd3\x33\xf6\x98\xbb\x31\xab\xc7\xa5\x2a\xb1\x66\xac\x6f\x30\x8f\x39\x5a\xa9\xae\xdb\x3b\xe0\x8d\xc2\x4f\x63\x53\xfb\x62\x42\xc7\x3d\x6f\xce\x19\x77\xbe\x77\x5f\x67\xf3\x6d\x2f\x4c\xd6\x29\x3b\x1f\xd9\x55\x03\x8d\xb5\x6e\x53\x5d\x8a\xc2\xe2\x2e\xd5\xac\x6b\x4a\xc7\x48\x2e\x00\xb5\xea\xda\x74\x6b\x4b\x4c\xc5\x4d\x9b\xbc\xe1\xb1\xe4\x0d\x8f\xa5\xd3\xc1\x1f\x93\xb9\x01\x6b\xe6\x86\x30\x96\x2e\x87\xc7\xd2\xe9\xa8\x04\x61\x2c\x25\x08\xe3\x71\x81\x5f\xeb\x89\xae\x30\x88\xba\xa2\xea\x9a\x79\x7e\x96\xf3\xd3\x2c\xd1\x15\x75\x82\xae\x70\xaf\xdf\x53\x08\x3c\xca\xc3\x3c\xce\xa0\x78\xb8\x45\xe4\x71\xcb\x3a\x1e\x17\xc3\x3c\xce\xb0\x46\x81\x87\x71\x2d\x0f\x65\x98\xc7\x59\x14\x7f\x03\x39\xde\x08\xf3\x38\xcb\x5e\x25\x07\x57\x41\xd7\x11\x9b\x91\xf0\x80\xe3\xa8\x87\xe3\x04\x1e\x1c\xb7\x96\x07\x3b\x1a\xe2\x01\xa7\x1c\x1e\x81\x87\x47\xe0\x71\x16\x21\xda\x44\x74\x70\xae\xd8\x1e\xa6\x6b\xe6\xe7\x51\x84\xe8\x14\x49\x23\xd6\xa1\x7a\x81\x26\xb8\x19\x36\x8a\x34\x1b\xd7\xd9\x67\xf9\x61\xfb\xec\x31\xb4\xef\x1a\xdb\x4b\xd8\x2f\xfe\x23\xbc\xe7\x7c\x0c\xbd\x8a\xb2\x04\xed\x97\x15\xd2\xe5\x84\x0f\xd1\x5b\x46\x51\x6f\xfd\xf1\x1a\xbd\x25\xf0\x79\x2b\xbc\xef\xdc\x62\x5a\xaf\x43\x05\x59\x4c\x61\x1e\x67\x82\x7f\xba\x46\x6f\x09\x3c\xfe\x16\xe6\x71\xc6\xe2\x14\x78\x38\x05\x9d\xf3\x26\x37\x4a\x72\x97\x68\x51\x91\xaf\x30\x1e\x68\x4a\x4e\xce\x50\xa4\xa1\x34\x84\x5e\x02\x22\x4d\xf5\x92\x23\xcd\xb5\xd3\x54\x54\x36\x82\xb6\x09\x45\x5c\x5c\x5f\xdf\x38\x54\x32\xd5\x9b\x54\x03\x77\x2f\xcc\x71\x3f\xbd\xbe\xbe\xe1\xba\x60\x13\x77\x86\x59\x99\xbd\xac\x9b\xb9\x81\xba\x99\xa1\x7f\x82\x30\xfa\x39\x37\x4a\x57\x30\xaf\x21\x35\xca\x47\xd5\xbe\x8a\x35\x5a\x32\x22\x42\xc4\x27\x42\x12\x09\x11\xbd\x94\xa4\xd4\xba\x8e\xa2\x34\xe7\xa9\x43\xaa\x32\x92\x08\xff\xaf\x45\xbf\xea\x6e\x11\xb6\x71\xf7\xdc\xa0\x12\x47\xe0\xc0\xfa\x8b\xc7\x55\xcb\x0d\x6b\x43\x8d\x5f\xb9\x91\x0c\xf7\x25\x0e\xf7\xe5\xd9\xe0\x9f\xae\x19\x9f\x5b\x83\x97\xe8\x1f\x49\x34\x58\x87\xf2\x84\xf1\x09\x77\x81\x4b\xa4\x71\x89\x34\x17\xb8\x06\xea\xaf\xac\x02\xeb\xd0\x49\x71\x9c\x3f\x81\x72\x84\x1e\xcf\x09\x8d\xbd\xf7\xb8\xdb\xe8\xd3\x04\xf7\xdd\x24\xce\x27\x4f\xb0\x5c\xb4\xec\xca\x45\x3e\x3f\xe6\xee\xa4\x3b\x58\x84\x75\xa8\x49\xa0\x09\xfe\x2d\x28\xda\xd9\xc1\x90\x9d\xfd\x33\x84\x68\x37\xfb\x57\xac\x43\x66\x61\xcf\x12\x4c\x85\x54\x51\x9e\xd4\xb5\xe3\x4f\xb2\x19\xeb\x50\x73\x78\xef\x73\x5c\xa4\x39\x1e\xe2\xc3\xf9\x69\x37\x91\xc7\x2c\xca\x53\x18\x8c\x16\xdf\x15\x1d\xe2\xc3\xb5\xd1\x15\x44\x9e\x66\x91\x66\x5f\x30\x46\xa4\x89\x59\x2b\xcf\x1a\x3e\x53\xe8\x5c\xf0\x2b\x22\xcd\x57\xd6\xc8\x73\x88\xa5\x50\x88\xcf\x14\xbc\x13\xfc\xa7\x48\xf3\xcf\xeb\xf3\x41\x67\x91\x39\xf0\x98\x40\x13\x78\x6c\x6d\xbd\x58\x14\xe2\x83\xce\x82\x3f\xf0\x9f\x22\xcd\x7f\xae\x3b\xa7\xd1\x86\xcf\x69\xe6\xd1\xd8\x75\xcf\x84\x94\x64\xdf\xd7\x2a\xd8\x3c\x1b\xd7\xec\xfa\x88\x0d\xee\xa7\xf3\x88\x2c\x16\xb1\xde\x95\xd7\xb4\xcd\x9b\x9c\x9f\x56\x12\x3b\xbd\x55\xa4\x29\xbb\x86\x46\x90\xc5\x1b\x96\xe5\x74\x90\xbb\x66\x4d\x11\x64\xf9\x22\x2c\xcb\xe9\x7f\xae\xd7\x37\x0c\x5f\xce\x46\x0a\xe5\x48\x02\x53\x5c\x12\xba\x72\xb6\xb3\x21\x7c\xb6\xb3\x05\x45\x10\xbd\x89\xd7\xe8\x4d\xc1\xf6\x7c\x39\x6c\x7b\x6e\xe1\xa4\x82\x7e\x96\x0a\xbc\x05\x1e\xe5\x61\x1e\x67\x50\x34\x59\x6b\xf0\x9a\xb5\x46\xe0\x71\x31\xcc\xe3\x0c\x5a\xbf\xd6\x08\x3c\x7a\xc3\x3c\x1e\x47\xfb\xaf\x39\x63\x22\x3c\x58\x1c\xe6\xf1\xf8\xf6\xf5\x36\xf0\xf7\x10\xa2\x27\xc8\xf9\x92\x5d\xec\xb3\x66\x72\xbe\x84\xaf\x9c\x2f\xc1\x24\xc1\x2b\xe0\xfb\xac\x43\xe8\xb3\xda\xf5\x7d\xf6\x3d\xce\x4f\x4f\x90\x3e\xb3\x8b\xfd\x91\x4e\xfa\x03\x5f\xe9\x0f\xc8\xe5\x3a\x69\x2b\xe9\xb3\x0e\x71\x7e\xdd\x16\x8c\x13\xfb\x2c\x4e\x94\x55\x90\xc5\x19\x96\xe5\x74\xf0\xf7\xd0\x22\xca\xd2\x22\xf2\xb1\x10\x59\xbe\x08\xcb\x72\xfa\x57\xeb\xfb\xec\x8e\xe0\x25\xba\x8f\xac\x7b\x0e\xb1\x3e\xbb\xaf\xb1\x3d\x5e\x0b\x5e\xa2\x8d\xa4\x3e\x9d\x22\xcd\xc1\x6b\x6c\x0f\x81\x4f\x4b\x98\xcf\x29\x54\x7e\xcd\x3a\x2e\xf0\xf9\x87\xc8\x87\x45\xa7\x1a\xd6\xdb\x0d\x77\x70\x95\x74\x1f\x59\xc7\x1d\xc2\x79\x52\xf9\xdf\xc5\x1a\xff\x3d\x7c\x9e\xf4\x1a\x57\x43\x1b\x49\xbb\x08\x3c\x76\x3b\xbe\x10\x69\xbe\x08\xd3\xdc\xc1\x15\xaf\xe1\xc3\xb7\xef\x28\xf7\x0f\x71\x3f\xf0\x8f\x90\x2c\x9c\x6f\x0d\x1f\x9e\xa6\x8b\xbb\x2c\xd2\x5c\x16\x69\x84\x3a\xf9\xc3\x75\x3a\x8d\xe2\xae\xb1\x63\x84\x3a\x7d\x11\x96\xe7\x74\xf2\xfa\xf6\x1d\xe2\x6a\xe8\x79\xd2\xd7\x4e\xf1\x3d\x4d\x41\x2c\x4a\x8c\x45\x1e\x4f\x70\x35\x74\x2c\xc3\xb7\x5d\x97\x48\xf3\xe3\x6b\x68\x86\xb8\xa6\x2b\x7c\x10\x8b\x76\xe7\x09\x75\x1d\xe5\x9a\xe9\x09\x7a\x19\xeb\xe0\x59\xa1\x3d\xd4\xeb\xcf\x44\x9e\xe0\x9a\xae\xf0\x46\x12\xb4\x1b\xbd\x44\x9e\x23\xf7\x2f\x12\x6b\x48\x2e\x74\x1a\x49\xaf\xd1\x3d\x4f\xf0\x75\x63\x47\x51\x48\xae\x29\x98\x43\xbd\x02\xf7\xde\x50\xbf\x0b\xe7\xa4\x86\xf0\x39\xe9\x63\xe8\x51\xf0\x8b\x7c\xfc\x22\x1f\xe1\x5c\xe7\x37\xe1\x73\x9d\xc7\xf6\xc6\x08\x5c\x62\x04\x19\x09\x0f\xf6\x2f\x61\x1e\x5b\x50\xfc\x35\xe7\xa8\x02\x8f\x15\x81\x07\x62\xd1\x96\xcf\xd0\x9a\xf7\xeb\xc3\xcf\x9e\x41\x0a\x98\x14\x9f\x9d\x5c\xf7\xec\xaf\xc3\xef\x3f\xf3\xb9\x5a\x78\xbf\x7a\xcd\xfb\x25\xd3\x61\x1e\x8f\x22\x05\x6c\x16\xcf\x7a\x37\xaf\xe5\xc1\x6a\xc3\x3c\x1e\xfd\x5c\x2f\x9c\x2d\xe9\xaf\xf0\x28\x96\x94\x84\x79\x3c\x8e\x8e\x5c\x73\x5e\xcc\xf3\x10\xf4\xa7\xc0\xe3\xf1\xe1\x35\xe7\x53\x08\xd0\x69\xee\x2e\xda\xc2\xac\x20\x1b\x1a\xf4\x45\xfe\x7f\xd4\xbd\x79\x7c\x54\x45\xf6\x37\x7c\x6a\xe9\xce\x0a\x24\xec\xb2\x76\x68\x12\x20\xe9\x84\xec\x04\x08\x98\x74\xa7\xc3\x92\x10\x02\x04\x48\x10\x21\x4d\xd2\x21\x81\x6c\x66\x61\x13\x11\x19\x45\x8c\x82\x0a\xc8\x9a\xb0\x2f\x21\x6c\x37\x61\x15\x97\x61\x14\x19\x17\x1a\x97\x51\x06\xd7\x51\xc6\xf1\xc7\x20\x3a\x8c\xa3\x8c\x83\xd0\xfd\x7e\x6e\xd5\xe9\x9b\xee\x04\x46\x9f\xe7\xf9\xfd\xf3\xc2\xa7\x73\xea\xde\x3a\xf5\x3d\xa7\x4e\x55\x9d\xaa\x5b\x55\xb7\x6e\x30\x01\xda\x19\x4f\xa6\xec\x91\x9d\x9b\xd2\x47\xaf\xa3\x8c\x25\x67\x88\x6f\x06\x03\xa5\xd6\x0c\x3c\xb3\x95\xa4\x92\xcc\xde\x29\xf7\x89\xd5\x41\x32\xbb\x2d\x17\xcd\xcc\x4b\xe9\x08\x00\x71\x10\x17\xda\x6d\x4c\x68\xa4\x78\xb1\xbb\x4b\x47\x76\xd7\x87\x9c\x01\xb8\xb7\xc3\xe3\xd5\xaf\xa1\x84\x0c\xb4\xcc\x4a\xee\x3f\x32\xb2\xb7\xf7\x80\x26\x31\x5c\xdf\xc1\xa7\xa4\x71\x81\x99\xd0\x87\x18\x89\x9a\xb6\x6c\xd2\xa4\x47\xa6\x46\x52\xaa\x53\x6e\x87\x8e\x7b\xb2\x7a\x66\xbf\xae\x43\x13\x47\x0d\xf0\x1a\xd8\xc4\x3d\x38\x84\x64\xad\x6c\x29\x60\x9f\xde\x0e\xcd\x78\x7a\x7e\x4a\xca\xfc\xa7\x33\xd8\xa7\xf8\x3e\x8d\xb3\x80\x0f\xe5\x23\x20\x4a\x1d\x67\x46\xf4\xa2\x9c\x45\xdd\x47\x29\x0f\x20\x40\x03\x09\x01\x3e\x1e\x0f\xdb\xbd\x5b\xee\xbb\x18\xbb\x99\x42\x07\x89\x37\x85\xef\x3a\x4a\x73\x9f\xf0\x1a\x1c\x17\x2c\x37\x44\xb2\xb8\x60\x1e\xd8\x7e\x8c\xd6\x37\xd6\x3c\x50\x97\xd8\xbc\x78\xc6\x53\x0f\xc6\x2c\xa4\xcb\x57\x3e\xd9\x18\x42\x16\xb7\x1f\x9f\x0d\x4c\x4f\x1d\xd1\x73\x47\x5e\xe1\x88\xca\x5d\xc5\x74\xcb\x9d\xc2\xdd\x8d\x4b\xe7\x31\xf2\xcb\x79\x51\x1f\xa7\x02\xf0\x2d\xc2\x9f\x0e\x47\x3f\x38\xba\xdd\x38\x6d\xb4\xf8\xb6\xec\x0d\x1a\x26\xb6\x45\xea\xa1\x7e\x84\xf7\x3c\xa8\x5c\x57\x88\xd3\xd6\x15\xea\x21\x94\xa4\x23\x46\x3a\x62\xc8\xb9\xce\x1b\xda\x5c\x67\xbd\xe5\x6e\x18\x01\x1a\x46\xb1\xeb\x9f\x12\x83\xb6\x62\x2c\x17\xcf\x91\x6a\x5f\x96\x8c\x7e\xbd\xb2\xdd\x5a\xc9\x7a\x50\x6d\xff\x29\x0d\x83\x99\xc8\xf3\x24\x78\x78\x18\xd0\x70\xf4\xb7\x35\x9c\xed\xe0\xdb\x6e\x3d\x45\xe2\x9c\x46\x1c\x3d\x6c\xef\xef\xad\xaf\xd4\x25\x51\xc3\x68\x00\x3f\xd1\x97\x91\xd6\xbe\x0c\x31\x7e\xd0\x30\x1a\x0c\xde\xfd\xc7\x30\x00\xbe\x4e\x8c\xa7\x1e\x45\x5d\x0f\xb7\x5b\x13\x1d\xea\xba\xce\x77\x88\xf5\x86\xc7\x65\xdf\x5c\xe9\x0f\xbe\xcd\x4c\x5b\x6f\x28\x77\x1d\xe2\x8f\xf8\xa8\xcf\x89\x8f\x21\xc6\x13\xe4\x29\xf0\x6b\x66\xe4\x34\x79\x4a\x1b\x23\xd4\xf0\x71\xba\x2b\x34\x0c\x9e\x94\x18\x93\x7c\x25\x86\x1c\xab\xb8\x9c\xf2\x2c\x03\x1a\x46\x76\x08\xbf\xf9\xb6\xf3\x65\x57\x39\xf6\xef\xe5\x12\xe3\xb7\xf0\xb8\xdf\xfb\x74\xfb\x76\xf2\xf6\xd5\x8f\xb1\x57\xf8\x58\xeb\xeb\xc4\x99\x18\x7a\x46\xc3\x48\x83\x9c\x93\x5f\x33\x44\x8e\x79\x86\xc8\xfc\xc8\x78\xa2\xc5\x57\xe7\x0e\x92\xf1\x83\x3c\xe3\xbb\x6b\xf1\xf5\xc6\xbb\xa5\x0f\xd0\xe2\x77\x3d\x1c\x27\xe3\xe3\x3c\xe2\x75\xdf\x6b\xf1\xc5\xff\x18\x22\xc7\x4b\x5e\xe9\x33\xb4\xf8\x1d\xff\x9c\x20\xe3\x27\x78\xc6\xef\x73\xc7\x93\x77\x1c\x7d\xd4\x78\xa6\xf4\xc1\x7a\xe1\x1c\xcb\x07\xf2\x06\x1a\x46\xb6\xcb\xfe\xad\x07\xf6\xd2\xae\x5f\x34\x1b\x88\x73\x1b\x84\x0d\x76\x7a\xd8\x80\x68\x79\x90\xf1\x44\x8b\x97\x36\x20\x9a\x0d\x64\x7c\x77\x2d\x5e\xda\xa0\x4d\x7a\x91\xc7\x9d\x1e\x79\x24\x5a\x1e\xc5\xd9\x03\xaa\x5f\x27\x7b\x71\x8d\xcb\xe3\x69\x5e\x8b\xff\x59\x8b\xaf\xae\xea\x27\xe3\xfb\x79\xc4\xeb\x3b\x68\xf1\xf5\xa3\xee\x96\xfe\x6f\x5a\x7c\xb1\xaf\x41\xca\xc7\x78\xf1\x3e\xbd\x28\xa3\x26\xec\x83\x8f\x41\x9c\x44\x88\x73\xb7\x51\xf1\x9e\xbc\xb0\xd1\x41\x5c\x87\xf4\x2e\x67\x19\x4f\xb4\xf8\xea\x87\xbd\xeb\x89\x8c\xef\xae\xc5\xd7\xa7\xdf\x2d\x7d\x00\xc6\xcb\x75\x48\x8f\x9a\xd2\xaa\x83\xb0\xe3\x41\x5c\x87\xf4\xae\x2b\xe2\x3d\x65\xa1\xa3\x22\x75\x3c\xec\x5d\x0e\x32\x9e\x68\xf1\xd5\x0b\xbd\xcb\x51\xc6\x77\xd7\xe2\xeb\xcd\x77\x49\x2f\xe4\xcb\xf8\xe2\x0e\xde\xe5\x28\xde\xcd\x15\xf8\xc7\x25\xfe\x4c\x6f\x7c\x59\xd7\x2f\x69\x75\xb9\xfc\xfb\x30\x99\xc3\x30\xcf\xba\xec\xa7\xc5\x6f\xfb\xe7\x38\x19\x3f\x4e\xae\xfb\xa4\x3b\x0b\x78\x35\x5f\x7d\xef\x75\x1f\x1f\xa2\xd3\xeb\xaa\xdc\xab\x3f\xff\x0b\xeb\x3e\xcf\x91\x8f\xba\xb5\xef\xe7\xfa\xc5\xa5\x85\x2e\x90\xa7\xe1\x9c\x26\x5f\xdd\xe0\xab\x7f\xa9\x6e\xdf\xcb\x85\x8e\x49\x1d\xd9\x93\x44\x38\xdf\xe2\xab\xef\x04\xd1\xd9\xc2\xcf\xbb\x6e\xf0\x81\xc2\x3e\xb2\x2d\x56\x4f\xf1\xb6\x8f\x8c\xef\xae\xc5\xd7\xf7\xf3\xb6\xbf\x88\xd7\x7d\xa1\xc5\x6f\xbf\x7e\x97\x78\x7d\x4f\x2d\xbe\xe1\xbb\x18\x19\x1f\x23\xe3\xc5\x19\x31\x22\x7e\x87\x8c\x7f\x27\x46\xda\x37\xc6\xb3\x9d\x5e\xd2\xda\xa9\x2c\x1f\xa2\x95\x8f\x6c\xe7\x7e\x5a\xbc\x2c\x1f\x22\xcb\x47\x4b\xff\x85\x16\xbf\xfd\x9f\x1e\xfa\x01\x81\xf7\x9d\x05\xe2\x7c\x98\x50\xb8\x3f\x25\xd9\x63\x66\x49\x0f\x3e\xbe\x7a\x1f\x9b\x36\x0f\xff\xbf\x32\xfb\x2e\x4e\x93\x79\xf2\x1e\xb3\xef\x67\x3c\x0e\x99\xb9\xc7\x04\x92\xfb\xec\x19\x2d\xdf\x3d\xb5\x7c\x35\xfc\xe0\x6d\x57\x71\x96\x8c\x28\xb7\xdd\xb2\xdc\x06\x7a\x97\x8b\x8c\xf7\xd3\xe2\xb7\xfd\xe0\x6d\x37\x11\x2f\xec\x26\xe3\xb7\xff\xd0\x26\xbd\xd3\xca\x87\x08\x1f\xbe\x1b\x9f\x6f\x92\x5d\xee\x6f\x02\x02\xf6\x75\xe2\x3c\x18\xa1\xc3\x1e\xa9\xc3\x58\x6f\x0c\xe9\x23\x29\xfa\x40\xd5\xbf\xbc\x00\xe1\x92\x23\xdc\xed\x5f\xa4\x9f\x74\x68\x7e\xb2\xdc\xa7\xaf\xe4\xe8\xeb\x89\x01\x5a\xfc\x36\xff\x14\x19\x9f\x22\xcb\xf7\x6b\x67\x81\x38\x43\x26\x14\x86\xa7\x24\xb6\xce\x75\x02\xf8\xca\x97\x07\xff\x77\x66\x3a\xf1\xc4\x19\xe7\x8d\x7b\x4c\x12\x2e\x6e\x3d\x89\xe6\x9e\x73\x83\xa7\x3c\xf2\xfb\x91\x96\x9f\xed\xfe\xde\xfd\xc6\x29\xd7\x0d\xbe\x5d\xd8\x74\x1f\xce\x07\x4e\x01\xcf\x1a\x2d\xe7\xd6\x26\xf0\x47\xc5\x18\x63\x3f\x96\x4d\x90\xcb\x17\xcb\xc6\xd7\x63\x2e\x6b\x8c\x68\xf7\x8d\xee\x79\x3c\xf0\x68\xf9\x02\xe7\x9a\x73\x22\x1f\x23\x70\x1a\xb5\x39\x43\x7f\xc4\xf1\x47\x1c\x3c\x8b\x46\xe3\x29\x86\xf1\x4e\x5c\x2f\x70\xae\xb8\x3b\x0f\x6c\x77\xbd\x77\x27\x18\xe7\xcd\x82\x91\x47\xf6\x77\x44\xeb\xef\xaa\xe1\xb9\x76\xfa\x5c\x74\x4e\x60\x37\x05\x4e\x13\xea\x53\xda\x2e\x5f\x12\xa7\x27\xf2\xe8\xa1\x61\x88\x77\xbb\x90\xfd\xd5\x25\xad\xbf\x2a\x0f\xf2\xf6\xf7\xb2\xcf\xf3\xd3\xe2\xb7\x75\xf1\xf0\xf7\x18\x3f\x52\x6f\xd0\xfa\xc4\xdd\xf0\x38\x78\xf4\x78\x42\x4f\x71\xc6\x8a\xc8\xcb\x61\xe9\x53\xa3\xbc\xfb\xdd\x97\x9c\x13\xf9\x08\x91\x8f\xc3\x38\x0f\xe4\x14\x76\xa5\x1e\x76\x95\x18\x3d\x35\x8c\x86\x37\xbd\xfd\xa2\x38\x33\x45\xc8\x38\x22\x65\xd8\xbd\xfd\xb6\x8c\xef\xae\xc5\xd7\x47\x7b\xb7\xbd\x17\x9c\x19\x3c\x4e\xb4\x5f\x19\xbf\x30\x0a\x57\x57\x5c\x4e\x8f\x7d\x3e\x2a\x46\x4f\x8d\xa7\xc1\xe5\x6d\xcb\x02\xe7\x58\x8f\xb1\xac\x9c\xa7\x64\x88\xc2\x3c\xc7\xbb\x02\x43\xce\x65\x34\xdc\xf6\xc6\x90\xfd\x7b\x00\xf6\xdf\xaa\x0f\xd8\xd2\x6e\x9c\x23\xfb\xf8\x4b\x5a\x1f\x5f\x1e\xe8\xdd\x07\x48\x0c\x3f\x2d\x7e\x5b\x27\x6f\x5f\x26\xe3\x33\xb4\xf8\x1d\x9d\x26\xc8\x31\xc2\x84\xd6\xf8\x61\xa2\x4c\x15\x2c\xd3\xe5\xe0\x31\x8a\x00\xf9\x1d\xe3\x0d\xe2\xbc\x95\x18\x88\x4f\x89\xe9\x44\x80\xca\x53\x73\xd4\x47\x73\xce\xaa\xf0\x41\xdd\xe3\x09\x5d\x7e\xee\x4d\x7d\x3c\x8f\x10\x8f\xe7\xc1\xf7\x5c\x83\x6c\x7f\x32\x0b\xad\xb1\xf5\x1b\x16\x71\x9f\xb7\x1f\x89\x1d\x1c\xd0\x35\xe0\xee\xc7\xb5\x3c\xd2\x3c\xb4\xeb\xd0\xf8\x91\x21\x5e\x5e\x25\xfa\x81\xc1\x84\xdc\xe5\x10\x17\x97\x4b\x9e\xbd\x22\xea\x46\x0b\x3e\x8b\x3e\xdb\xce\x87\xc8\x71\x53\x77\x6d\xdc\x54\x3f\xc8\xbb\xfe\x88\x78\x31\xee\x92\xf1\xc5\xff\xf2\x1e\x77\x89\x73\x4c\x44\xfd\x3c\x81\xed\x79\x77\xbb\xf6\x2c\x78\x44\x1f\x73\x42\xfa\xba\x91\xde\x32\x24\x46\x4f\x2d\xbe\x21\xd9\xbb\xee\xc8\xbd\x3f\x93\xe4\xbe\x1d\xf0\x81\x83\xce\xf7\x04\x6e\x1c\x00\x5f\xa5\x9f\x0c\x61\x30\xa8\x50\x95\x7d\xf0\xce\x3f\xdb\x3d\xdf\x1a\x00\xf8\xf3\xfa\x29\x10\x06\xe1\xc8\xf3\x05\x50\xc9\x43\xdd\x3c\x41\x00\xbc\x52\xf0\x44\x20\xcf\xc5\x76\x3c\xbd\x5c\xd7\x79\x81\x7e\x12\x84\x41\x4c\x57\xa1\xc3\x9d\xcb\xea\x7d\x97\xda\x3f\xbf\x25\xee\x8f\x2c\x94\xf7\x9f\x15\xfc\xdd\x00\xf8\x02\x71\xff\x14\xf2\xff\x49\xdc\x7f\xd7\x75\x9d\x0f\xd2\x97\xd3\x30\x38\x2b\xf2\x7a\xe8\xec\x9f\xd4\x96\xc4\x4e\xbb\xfe\xa4\xb5\x47\xbb\xdc\xcb\x4e\xf5\x6a\x7e\x5d\x2e\x71\x4e\xca\x14\x71\x3d\xb0\x75\x0f\xad\xb8\x1e\xd4\xfa\x0c\x2f\xae\x93\xc5\xf5\x76\xed\xfd\xb4\xf0\xd6\xf5\x48\x71\x8d\x6b\x44\x00\x62\x8d\x48\x0f\x91\xe2\x7a\x3f\x00\x1f\x29\xae\x87\x82\xb6\x9e\x20\xae\xa3\x5b\xd7\x00\x74\xe7\xa8\x1e\x62\xc4\xf5\x65\x71\xfe\xbd\x1a\x1f\xdb\x3a\x1f\x29\xae\x13\xc5\xb5\x98\xbf\x10\xd7\x23\xc5\xf5\x7c\x2d\x3f\x23\x5a\xf5\xf9\x95\x7d\xb0\xbf\x65\x0e\x64\xa5\xeb\x5b\xfe\xa4\x3e\x9c\x86\xa9\x23\x10\xa2\x87\x83\x3f\x7c\x8c\xde\xb5\xf5\x19\x7b\x8b\xeb\x3a\x9f\xaa\x1f\x42\xc3\xe0\x65\xc9\xd3\xe9\x32\x7a\xae\xcb\x1a\xcf\x19\xa7\x8d\x77\x13\x38\xaf\x4a\x1e\x9f\xf6\xcf\xea\xb2\xdc\xba\x69\xe5\x76\xf0\x9f\xe7\x90\xe7\x5c\xeb\xfc\xb6\xeb\x3a\x1f\x20\xca\xf6\x4d\x59\xb6\x87\xdb\x97\xed\x47\xe2\x1c\xcc\x11\x54\x0f\xab\x5b\xf7\xed\xf1\x2c\xaa\x87\x49\xd8\xf7\xe5\x33\x97\x88\xaf\xd1\x6c\x37\x53\x5c\xe7\x8a\xeb\x15\x00\xdc\x26\xae\x67\xb4\xea\xa5\x7b\x59\xd3\xab\xf8\xfb\x7f\x4b\x2b\x79\xce\xbb\xab\x7a\x09\x1e\xa9\x57\xf1\xa7\xed\x79\xe4\xda\x49\xb8\xb6\x76\x72\x90\xb4\xb7\xa5\xcc\x5f\x37\x0d\xe7\xe0\x17\xed\x6d\x30\xcd\x75\x9d\xff\x4e\xf0\xbc\x23\x79\x3a\xb4\xe7\xf9\x2d\xfb\xb2\x5f\x05\xe0\x83\xc5\x7c\xd0\x11\xf4\x2b\x45\xde\x73\xdc\xe2\x7b\x90\xd7\xf9\x0c\xdd\x39\xb0\x40\x62\x4a\x5c\xdb\xf3\xc4\x3c\x3f\x4a\xe7\xfe\xc8\x78\xca\xe8\x11\xc3\x13\xe2\xfa\xf7\xbd\xaf\x67\xd7\xce\x7a\x7d\xd7\x08\x12\xef\x3e\x51\xac\xdd\xdb\x58\x77\x3b\x51\xec\x8b\xfe\xc3\xc6\x4e\x9e\x36\x38\xae\xa4\x60\x7a\x6a\xe8\xa4\x15\xbb\xa7\x3c\xd8\xf8\x68\x26\x5b\xec\x9b\x38\x63\xf1\xb8\x51\x0b\x67\x8f\xb4\xce\x7b\x74\x78\x42\xa9\x3d\x37\x35\x74\xca\xe3\x8d\xd3\xf2\x8f\xaf\xce\x65\x8b\xfd\x52\x8b\x56\x4e\x48\x79\x78\x4e\x32\x29\x8a\x9b\x94\x12\x13\xd6\xaf\x43\xd0\xa0\xb8\xd4\xc9\xf6\xd1\x0f\x3c\x93\x1f\x33\xaa\xbc\x21\x7f\x4c\x6d\xce\xd0\x10\x8b\x3d\x6d\x5c\x51\xfa\xd0\xe0\xa0\x21\x89\x96\x69\x25\x29\xf9\x6b\x66\x0f\x4d\x2a\xdd\x5e\x94\xb5\x78\xd2\x10\x83\x65\xee\xdd\xda\xf0\x6f\x69\x43\x15\xae\xeb\x1c\x44\x1a\x93\x48\x83\xef\x3b\x52\x3d\xf9\xa4\xd5\x0f\xe8\xff\xe1\x5e\x2b\x86\x6a\x98\x4e\xba\xa1\x8d\xbb\x21\x46\x6f\xd7\xb7\xfc\x15\xb1\x0f\xe1\x53\x9c\xa3\x0f\x6b\xb7\x0f\xe1\xd7\xfc\x95\x28\x4b\x71\x7d\xe4\xae\xfe\xeb\x20\x00\x0f\x11\xeb\x00\x1f\xe3\x5e\x87\x9b\xed\xd6\x01\xda\xfa\xa8\xb6\x3e\xae\xad\x8f\x3a\x02\xc0\xfb\x89\xf8\x63\x77\xf5\x59\x62\x9f\x9b\xe0\x0f\xbd\xab\x0f\x9b\x08\xc0\x97\x89\xeb\x13\x77\xf5\x61\x62\x9f\xa8\x68\xb7\x96\xd6\xbd\xd2\xe2\x7a\x8c\x6c\x2b\x00\x3c\x48\x1d\xcb\xc0\x75\x39\x56\x71\x7a\xef\x3b\x6e\xdb\xee\xcf\x39\xf3\xb9\x49\x5c\x4f\x16\x83\x0c\xb1\xc7\x8e\x67\x41\x04\x8c\x4c\x49\x02\xae\x23\x3a\x2e\xb6\x64\xea\x08\x94\xbb\x6b\x74\xff\x0c\xbd\xd7\x07\x37\x07\x18\xfa\xf4\xee\xd1\x2d\xd0\x5f\xaf\x83\x08\x12\xe1\xa3\xef\x1a\x11\xea\xf1\x4d\xc5\x84\x76\xd5\x5c\xad\xe7\x74\x51\x72\x59\x4e\x02\xaf\xe6\x63\x6b\x36\x4c\x59\xa8\xd4\x8e\x1c\x59\xab\x2c\x98\xb1\xf9\x21\x33\xaf\x66\xb1\x93\x2b\x52\x67\x3d\x91\x33\x68\x50\xce\x13\x93\x8c\xe6\x07\x47\x4e\x58\x31\x2b\x61\xc6\x86\xd7\x4b\xc2\x4b\x5e\xdf\x30\x63\xf8\xdc\xd5\x39\xa3\x8a\x33\xc3\x33\x97\x36\x4c\x0a\x9f\xbc\xed\xe1\x4c\xfc\x8e\xa2\x33\x83\x3f\x22\xfc\xd3\x03\x77\xf5\x57\xbf\xb6\xe7\xfb\x0d\x00\xde\x57\xf7\x2e\x0d\x83\xab\x72\xbc\x1b\xff\x13\xfa\x8f\x9f\xbc\xfc\x50\x84\xb0\xd5\xd4\xd6\x3d\xde\xba\x57\xa8\x5e\xed\x35\x7e\xc3\x9e\xee\xd7\x9d\x19\xcc\x2c\xf8\x33\x05\xbf\x03\x80\x3f\xa9\xbb\x48\xc3\xe0\x3b\x29\x93\xfe\x88\x32\x7f\xd4\x64\xca\x39\xfb\xbf\x6a\x73\xf6\xdb\x82\xbc\xd7\xa1\xe4\xda\xc1\x20\x6d\xed\xc0\xec\x3a\x70\x8f\xb5\x83\xcf\xb5\xb5\x03\xf3\x5e\xef\x79\x74\x89\x11\xaa\x61\x54\x43\x75\xbb\x75\x3d\x89\xf1\xa9\x86\x51\x5d\xe1\xbd\x66\x28\x31\x3a\x6b\x18\xc5\xee\xf7\x62\x68\x5b\x3d\xde\xd4\x30\x8a\x75\xde\x7b\xad\x65\xdf\x6b\xd0\xfa\x5e\xb3\xeb\xb9\x7b\xac\x61\x7c\xae\xd9\xc3\x7c\xc4\x2b\x2f\x94\x73\x33\xad\xd1\x03\xd5\x83\x9f\x78\xe7\x70\x2d\x37\xb3\x28\x71\xcd\xd5\x6b\x4a\x5d\x3f\xfb\x3c\xac\x53\x20\x8c\x07\xa9\x63\x3a\x1e\xc4\x1d\xc2\xce\x27\x9c\x19\xec\x5f\xfa\x1e\xb8\xc7\x45\x0f\x0d\x0b\xa3\x25\xae\x7c\x9f\xc1\xfd\x4d\x4c\xaa\x27\xc5\xad\x63\x17\x61\xb3\xa1\x68\xb3\xb2\x76\x36\xcb\x13\x63\x58\xb5\xec\x26\x4a\x9b\x2d\xf5\x5e\xd3\xb7\x3b\xb7\x8b\xb6\x2d\xf7\x85\xeb\x61\x4f\x10\x93\x75\x12\xed\xd1\xe4\xdc\x2e\xda\xba\x7b\x4f\xf8\x9e\x8b\x5e\xf1\xae\xfd\xaa\xef\x11\xfb\xd3\xc4\xde\x04\x72\xe1\x4e\x13\xd4\x4b\x8e\x7a\xf7\xf8\xf1\xb7\xbc\xf7\x24\xfd\x60\x88\xe6\x07\xcd\xae\x75\xed\xd6\x62\x7e\xed\x9d\x0c\xe9\x77\xde\xd7\xfc\x8e\x79\x6b\xfb\x75\xf8\x87\x01\xf8\x6c\xe1\xcb\x4e\x8a\xeb\x95\x4e\x2b\x2f\x10\x6d\xf4\x6d\x71\x1d\x0f\xc0\xaf\xfa\x74\xa3\x61\xa4\x9b\xd0\xe3\x00\xbf\x4e\x06\x61\x1d\x1a\x84\x7a\x98\x00\xf8\x0c\xf1\x5c\xd0\x5d\x8c\xc9\x0f\x70\x39\xaf\x61\x73\xa6\xf2\x62\xb1\x7e\x7f\x59\xac\x09\x5c\xfc\x79\x0f\xca\xdf\xa3\xc9\xdf\xea\x1c\xc3\xc7\xf3\x09\x34\x0c\xbe\x95\x3c\xc1\x4d\xc8\xd3\xa4\xf1\x3c\xe2\x4c\xf7\x7c\x97\x8c\x5c\x84\x03\xc8\x73\x40\xe3\xd9\xe9\x4c\xf7\x7c\x87\x85\x5c\xec\xdc\x9e\xa7\xed\x58\x74\x86\xd3\xc6\x9f\x14\x79\x3d\x73\xd7\xb1\xb1\x9a\xaf\x6d\xa2\xbf\xfb\x33\xf6\x77\xac\x5d\x7f\x17\x0c\xc0\x0f\x09\xdf\x7e\x4d\xfa\x82\xf7\xbd\x7d\x7b\x5b\xcc\xff\xe7\xf7\x0e\x7e\xe3\x7b\x7c\xbf\xf6\xae\x90\x58\x63\x13\x7a\x3d\x0a\xda\x7a\x9a\xf0\xa3\x8f\x7b\xd4\xd1\xff\xb7\xbd\xd2\xb3\x5c\xd7\xf9\x24\xfd\xd7\x34\x8c\x58\x50\x4f\x20\xfd\x51\xcf\xfe\x88\x71\xca\x75\x9d\x67\xf3\x89\x54\x0f\x5b\x41\xbb\x16\x7a\x6f\x95\x7a\x87\x7b\xeb\x2d\xcb\xa4\xb3\x56\x26\xc5\x40\xda\xf9\x34\x59\x26\x2f\x6b\x65\x52\xfc\x6e\xfb\x31\xae\xcd\xf5\x2d\x2f\x16\x6d\xf0\x32\x8e\x99\x6e\xcb\x7d\x2e\x1e\x7b\x88\xb6\xba\xbe\xe3\xe3\x45\xff\xf3\xad\xc4\xe9\xe8\x2f\x7d\x23\xae\x31\x8a\x36\x2a\xf6\x3b\x7c\x8c\x7b\x3b\xff\xd5\x6e\xbf\x83\x6c\x83\x7b\xb4\x36\x58\xfe\x4b\xfb\xfe\x44\xb6\xf5\x40\x0d\xa7\xd8\xf5\x63\xbb\x3d\x07\x12\xe7\x65\x0d\xa7\xf8\x76\xfb\x3c\xfd\x96\x77\xef\x7e\xed\xdd\xa0\x45\xee\xb1\x10\x91\xe7\x9b\xd4\xba\xae\xf3\x91\x6a\xbd\x20\x5d\xc5\xb5\x88\xf7\xe9\x40\xc3\xd4\x78\x21\xc3\x97\x8c\x05\xbf\x66\x46\x4f\x93\xb1\x28\x43\xa4\x51\xeb\x85\x9a\x46\x95\x71\x75\x10\xf8\x36\x33\x6d\x8f\xc5\x63\xae\xeb\xdc\xe2\x33\x98\x86\xc1\x5f\x31\xbf\x3f\x91\x02\xcc\x6f\x01\x62\x3c\xeb\xba\xce\x13\x84\x9e\xbf\x20\x46\x80\xb4\x3d\xea\x29\xc6\xa2\x62\x5f\xed\xa7\xb8\xd7\xc4\xd8\x6e\x5f\xad\xec\x97\x14\xd9\x2f\x81\x1e\xca\x3b\x48\x3b\xc9\x71\x6c\x67\x2d\x6d\xb1\xfb\xfd\x4c\x8f\x3a\xf4\x6b\xef\x20\x49\x8c\x34\x0d\x63\x37\x6c\xbc\x07\xc6\x2d\xc4\x50\x79\x1e\x03\xcf\x9d\x22\x2a\xcf\x79\x6d\xec\xfe\x39\xda\xe2\x2f\xed\x70\x76\x68\x65\xff\x93\xd4\xc5\xd2\xbe\xec\x1b\x01\x78\x82\xc0\xf9\x0a\x71\xe4\xbe\x52\xe6\x81\xb3\x07\x80\x47\x08\x9c\xff\x48\x9c\x87\xfe\x2d\x39\x3c\x70\xe6\x3b\x33\xf8\x1f\x85\xcd\x46\x88\xbd\x7f\xef\x91\xdf\xcb\xb1\x9b\x33\x83\x2f\xe5\x23\x68\x98\x3a\x76\x13\xf7\x6b\xb4\x7d\x3b\x5c\xf4\xe5\xe9\xe2\x3a\xc6\x99\x81\x7b\x4e\x3f\x41\xbe\x17\xc4\xfd\x54\x67\x06\x5f\x26\xd2\x7f\x8f\xf7\x17\x48\x7f\xe8\xbc\xd0\xda\xdf\x82\x0f\x34\xe9\x42\xe4\x98\xda\x79\xa1\xb5\x9f\x55\xef\xf3\x2f\x3c\xfc\xe7\x29\xcd\xf7\x35\xf2\x0f\xc9\x2c\xf4\x9f\xb3\x3c\x7d\x9f\x7e\x81\xf6\x2e\x65\x23\xff\x18\xfa\x4a\xcf\xd4\xd7\x6d\x77\xbb\xd8\x63\x70\x44\x7b\x87\x79\x8b\xeb\xc7\xbb\xfa\xd0\x4d\xfa\x32\xb7\x0f\x25\x5b\xfe\xe3\xed\x8b\xb2\x85\x2e\xfb\x34\x8c\xcd\x2e\xa7\xdc\x43\x48\x5b\xf7\x5d\xe4\x08\x5d\xec\x1a\xc6\x66\xca\x25\x06\x6f\xf5\xe5\x5b\x7c\x6e\x6a\x18\x9b\xa0\x43\x3b\x0c\x55\x8f\xed\xfa\x13\x1a\xc6\xa6\xce\xed\x31\x1e\xf3\xf9\x49\xc3\xd8\xe8\xfa\x9e\x24\x22\x46\xa2\x97\x4d\x5a\x31\x36\xfe\xeb\xa6\xe4\x70\xdd\x6c\x9d\x6b\x52\xcb\xc2\xfd\x9e\x39\x0c\x92\xef\x99\x13\x2c\x93\x36\xef\x9b\x8b\xf2\x71\xbf\xcf\x0a\x61\x50\x9f\x1e\x48\xb0\x94\xbc\xc6\x20\x52\xb7\x77\x34\xdd\x5e\x73\xb9\x48\x0e\xea\x96\xe3\xa5\x5b\x9d\xa6\xdb\x6b\xac\x8b\xcc\x5f\x17\x0f\x0c\xdf\x40\x0d\x63\x2b\x10\xb2\x04\x31\x96\x78\x61\xbc\xa3\x61\x6c\xd5\x0f\x97\x18\xc3\x3d\x31\x46\x69\x18\x27\x5d\xff\x22\xe3\x10\x63\x9c\x17\xc6\x6d\x0d\xe3\xe4\xcf\xbe\x12\xc3\xd7\x33\x2f\x4e\x0d\xc3\xe1\x7a\x4f\xec\x91\x53\x31\x26\x79\x61\xbc\xa2\x61\x38\x3e\x0a\x92\x18\x41\xee\xf1\xe5\x85\xd6\xfe\x1f\x06\xc9\xfe\xbf\x8d\x8d\xcb\xbc\x6c\x7c\x5d\xb3\xf1\xb6\x2e\x26\x6f\x1b\xbb\xdf\x49\x72\x5e\x12\xcf\xd0\xee\xbe\xba\x89\x5f\x03\x7f\x39\x0a\xf1\xd7\xd6\xec\x9d\x17\xc5\x33\xa9\xec\xab\x55\x79\x91\x62\x5e\x93\x7a\xcc\x6b\xca\x3e\xff\x94\x86\xd3\xc8\xeb\x45\xdb\x22\x1e\x6d\x4b\xf4\xf9\xa2\x6d\x8d\x41\x9e\xf7\xda\xb5\x2d\x89\x33\x54\xc3\xd9\x05\xb6\x76\xef\x4e\xc8\xb1\xc3\xf7\x1a\xce\x2e\x78\xa1\xdd\xfb\xce\x2a\xce\x03\xa2\x8d\x0e\xc2\x36\xfa\x72\x3b\xdf\xa8\xe2\x3c\x2b\xda\xe8\x18\xd9\x46\x6f\x78\xb7\xd1\x9e\x42\x97\x7d\x1a\xc6\x66\xd7\x79\xb9\x37\xca\xa3\x7d\x65\x8a\x3c\xd9\x35\x8c\xcd\xb7\xbc\xdb\xd7\x5b\xe2\x1d\xb6\x9b\x1a\xc6\x26\xd7\xa5\x76\x18\xaa\x1e\x1b\x44\xfb\x92\x18\x9b\xfc\xda\x63\x0c\x14\x6d\x74\x10\xb6\xd1\x93\xa2\x8d\x12\x8f\x36\x2a\x6d\xdb\x8a\xb1\xf1\x5a\xfb\x36\x2a\xca\xda\x7d\xd6\x81\x68\xa3\x7e\xb2\x8d\x8a\x32\x0f\xd6\x9e\x21\xdc\xaf\x5e\x6b\x65\xef\x7e\xf7\x5a\x6d\xab\xa3\x02\xb5\x1a\x10\xe4\x6e\xab\xcd\x4c\xd6\x04\x6d\x3e\xe9\x94\x36\x9f\xd4\xc8\x4f\xb5\xab\x07\x72\x5f\xfc\x72\xed\xdd\x97\x46\x7e\xb3\xdd\x5c\xff\x1f\x9c\x97\xc4\xd8\xd7\x8d\xd3\xa4\xd3\xb5\xab\x97\x9f\x3b\x2f\x89\xe7\xf5\x30\x75\x74\x2e\x78\xca\xc0\xe3\xcd\x71\x39\xae\x71\xbe\x29\xe6\x73\xdc\xe3\x9a\x26\x5d\x5f\xd7\x6d\x9c\x91\xbc\xed\x1e\xd7\x38\x5f\x17\x73\x28\xee\xf7\xa2\x9b\x74\x5d\x5d\xff\x46\x9e\x7f\x23\x8f\x1c\x1f\x5d\xd0\x70\x1a\xf9\x07\xa4\x1a\xdb\x5c\xb5\xe7\xf8\x48\x5f\xab\xe1\x34\xf2\xf3\xd0\x47\xea\xd3\x47\xd3\xc7\x75\x9d\x3f\xef\xf3\xba\xf6\x8c\xb7\xc5\xf5\xc3\x5d\xc7\x59\x4f\xe8\x4b\xdd\xe3\x2c\xb2\xe5\x1b\xef\x71\x56\x96\xd0\xe5\x25\x0d\x63\xb3\xeb\x36\x99\x81\x18\x33\x10\xc3\x2c\x74\x29\xd4\x30\x36\xdf\xf0\x7e\x16\x55\xf5\xd8\xe4\x1b\xa0\x61\x6c\x82\x80\x76\x18\xaa\x1e\xab\xf5\xc7\x35\x8c\x4d\xd0\x1e\x63\xa2\xaf\xbf\x86\xb1\xd1\x75\x5d\xee\xb5\xa3\xad\xcf\xcc\xd2\x26\xad\x18\x1b\xbf\xfc\x09\xeb\x65\xeb\x3c\x8c\x28\x23\xf7\xf9\x11\xa2\x5e\xde\x4f\xe6\x68\x65\xd5\x59\x3b\x47\xa2\x99\x61\xa1\xb9\xcb\xcc\xfd\xae\xbb\x5a\x2f\xe3\x02\xb4\x92\x0b\x76\xbf\x17\x26\x12\xb4\x8e\x4f\xd4\xf1\xe7\x3b\x3e\xe1\x34\x0c\x36\xe0\x33\xfe\x26\x92\x8d\x65\x98\x8d\xfa\xd6\xb8\xae\xf3\x43\xe2\x19\x7f\x23\xf2\xd4\x81\xc7\x9b\xa0\x1e\x38\x26\x0d\xc7\xec\xba\x48\x26\x23\xce\x64\x2f\x9c\xbf\x21\x8e\x1e\xcc\x67\xbd\xdf\x57\x93\x18\x2f\x6b\x18\x8d\xfc\xa6\x18\xc7\xaa\x18\x05\x9e\x18\xa2\x3e\x6d\x44\x9e\xab\xed\xea\x93\xc4\x89\xd7\x70\x76\xc1\x4b\x64\x26\xe2\xcc\xf4\xd2\xe5\x3b\x0d\x67\x17\x1c\x6e\xf7\xde\xff\x22\xe7\x05\xfe\x8e\x78\x77\x66\x03\x8e\xa5\xe4\x1a\x50\x8d\xf3\x75\x7e\x88\x1f\xd4\xd2\x36\xe9\xfc\xdb\xb5\x8d\x06\xe7\x05\x1e\x2d\xda\xea\x30\x4c\x1b\x24\xc7\xa7\xce\x0b\xbc\x83\x18\xb7\x4d\xc7\x71\xd8\xdf\xb4\x71\x5f\xb4\x4f\xb3\xb6\x4f\xba\x91\x7f\x4a\x72\xd1\x47\xe4\x2a\x9e\x7b\xad\xcb\x70\x9f\xb4\xca\x73\xa2\xdd\x99\x0c\x0d\xae\xeb\xba\x71\x62\xce\x66\x13\x96\x55\x6e\xbb\x39\x9b\xf3\xae\xeb\xba\xfb\xc4\x73\xd8\x66\x39\x67\x93\xd7\x7e\x1e\x50\xe2\x0c\xd2\x70\xcc\xae\x35\xed\xe6\x54\x24\xce\xfb\x1a\x8e\xf9\xd9\xf6\xf3\x21\x12\xe7\x94\x86\xd3\xc8\x4f\xb6\xf3\x7d\x02\x47\x9f\x8f\x38\xc2\x3f\x82\x8f\xcc\x97\x8f\x77\xbe\x86\x6a\x38\xbb\xe0\xe1\x76\x7d\xa0\xd4\xe7\xb2\xc4\x01\x3d\xec\x5a\x8a\x3a\x38\xdf\xd2\x8d\xd3\xdd\xd6\xd2\x36\xe9\x3a\xbb\xee\xa0\xa6\x77\xdc\x69\x9d\x17\x74\xf7\xf1\x06\x4c\xab\x96\xcb\x57\x72\x8e\xc3\x79\x49\xcc\x71\xb8\xe7\xeb\x9a\x74\x3e\xed\x7c\x6e\xa6\x73\xa8\x98\x97\x75\x3f\x97\x34\xe9\x3e\x73\x15\x20\x7e\x81\xd7\x9a\x5b\x2b\x4e\x23\x3f\xdd\x4e\x7f\xf1\x7c\x23\xca\xf7\x01\xe4\xb9\xd4\xae\x7c\x25\xce\x60\x0d\x67\x17\x3c\x22\xda\x2b\xf1\x68\xaf\xf2\x39\xe9\x6f\x1a\xce\x2e\xd8\x0a\x1e\x6f\x16\x88\xb3\xf4\xd4\xfa\xf6\xba\x1e\xa0\x2f\xc4\x11\x9f\x14\xbf\x21\x83\xbb\x71\xee\xeb\xe7\x3e\x64\x3a\xd4\x87\xe8\x38\x01\xa6\x13\x67\x7c\x8d\xce\x00\x3f\x3f\x31\x2b\x3e\x26\x03\x7c\x7d\xc9\x03\xf8\xc5\x0f\x3c\xf3\x6d\xc8\xbd\x99\x09\x19\xa5\xa6\x68\xf3\x2d\xfe\xdf\x8c\xde\xf7\xff\x0c\x3d\x65\x08\xe8\x75\xfa\x2a\x8f\x04\xf7\xe4\xcd\x13\xc7\x58\x0f\x8d\x0c\x0d\x0e\x0e\xee\x32\xc4\x28\x5f\x68\x24\xc6\x60\xa3\x7b\x4f\x7c\x02\x7e\x46\x37\x38\x24\x21\x24\x21\xae\x5b\x1c\x71\x9f\x72\x1a\x8c\x13\xfc\xfc\xf5\xdf\x57\xea\x86\xef\x2b\x9a\xbf\x73\x7e\x62\xe2\xfc\x9d\x65\x73\x77\x0f\x73\x7e\x40\xa2\x16\xfe\xfe\xf6\x14\x63\xd6\xb2\x07\xe2\x1e\x98\x30\xaa\x5b\xd7\x91\x99\x33\xe3\x67\x2e\x9b\x68\xe4\x7f\xff\xa5\xc7\xea\xac\x29\x0f\x6e\xfe\x63\x49\xb7\xd2\x3f\x6e\x7e\x20\x77\x22\x31\x17\x35\x37\xdf\x7e\x7d\xd2\x8e\x47\xb3\x7a\xc5\x58\x23\x68\x60\xe4\xf8\xc4\x7e\x13\x1f\xdd\x31\x49\xd4\xf5\x4e\xa2\x6c\xc4\xfb\xfb\x30\x88\xbc\x4d\xfa\xd2\x91\xc4\x07\x52\x01\x5c\x35\xd2\xf7\xd3\x91\x6e\x57\x5e\x23\x7d\xe7\x07\xce\x1d\xfc\xac\x5a\x4f\xc9\x27\xa2\xdf\xb9\x48\x07\x80\xc7\xac\xb1\x9c\x8b\x77\xae\xe3\x9b\x44\x3d\xfd\x4e\xf2\x90\x5b\xae\x9b\x58\x4f\x6f\x62\xdd\xd9\xee\x6c\xe0\x0b\x45\x7d\x0f\x17\xcf\x95\x17\xc9\xc7\x72\x5d\xc0\xd9\xc0\xcb\x44\xda\x1b\x78\xff\x5d\xb9\xb6\xe3\x6c\xf0\x7c\xff\x86\x5c\x9c\x23\xdb\xdc\x43\xce\x06\x5e\x23\xf8\x7f\x90\xf7\x8b\xdc\xcf\xc3\x0d\xfc\xb0\xc7\xf3\xf0\x45\xda\x09\x9f\x87\x1b\xf8\x1c\x8f\xe7\xe1\x8b\xe4\x1c\xfa\xcb\x06\x5e\x22\xf8\x3f\xc7\xfb\xef\x88\xfb\x3b\x34\x7d\x7e\xf2\xd2\x47\xe5\x0f\xf4\xe2\x0f\xd6\xf8\x83\xbc\xf8\x3b\xcb\xf5\x33\x67\x83\x58\x3f\x13\x6b\xa1\xea\x7d\xe7\x4d\x71\xff\x0d\x67\x03\xef\x2b\xf8\xaf\xe2\xfd\xff\x91\x73\x98\xce\x06\xfe\xb9\xe0\xff\x33\xea\x7f\xbf\xb8\x1f\xec\x6c\xe0\xaf\x0b\xfe\x6b\x78\x5f\xae\x7d\x85\x3b\x33\xf8\x0a\xdd\xeb\x34\x8c\x8c\x92\x36\x87\x6d\xae\x23\xd8\x57\x1c\x41\x9b\x0f\x70\x66\xf2\x32\x75\xac\x45\x46\x23\xcf\x33\xae\xa3\xc8\x73\x54\x69\x7d\xc7\xb0\x97\x98\x17\x18\x2f\xda\x2f\x13\xdf\xcd\x1b\x21\xbe\xc9\x38\x2c\x25\x5e\x4f\x38\x23\xf8\xcd\x3c\x3f\x22\xcf\x16\xd1\xe9\x7a\x66\x80\x8f\x8f\xa8\xf2\x3d\x68\x66\x8f\x1e\x3d\x8c\x3d\x06\x0c\x08\x0e\x0e\x0e\x1e\x1c\x12\xe4\xaf\xef\x13\x41\x42\xba\xe1\x29\xb1\xc6\x10\xf7\xd9\x75\xda\xf7\x18\x8d\x74\xae\xd3\x41\x66\x4f\x7f\xa1\xfc\xfe\xfb\xcb\x36\x4c\x77\x0e\x79\xf1\xc5\x45\x24\x4e\xbd\x35\x6a\x5e\x96\x29\x32\xab\x64\x14\x4b\xdd\x45\x22\xa7\x2e\x9d\x98\xbd\x74\x7a\x14\x4b\x2d\x5a\xb7\xce\xb9\xd6\x69\x22\xfd\x93\xa7\x25\x0d\x9b\x96\x1c\x02\xd4\x75\x07\x40\x7c\x13\xff\xbf\xea\xd8\xfd\xd7\x74\x0c\xbe\xb7\x8e\x83\xa8\xcd\x79\x85\x44\xcc\x6d\x5c\x94\x9a\xba\xa8\x71\xae\x73\xd6\xbb\xef\x2e\x24\xfd\xd4\x5b\x59\x4b\xa7\x0f\x1d\x3a\xfd\x91\x09\x7c\xae\xf3\x5d\x92\x54\xb2\x31\x7f\xf6\xe6\xf9\x23\xf8\xdc\xa2\xbf\xfe\xd5\xc9\xee\xbc\x40\x22\xa7\x54\xa7\x5b\x2b\x27\x9a\x88\x38\xdf\xf0\xff\x1f\x7a\x12\xe8\x28\xd7\x7a\xa1\x03\x0c\x4a\x19\xa8\xd7\xce\x06\x04\x9d\x8e\xe7\x01\xe7\xdd\x55\x2f\xd7\xc3\x7d\x34\x60\x90\x8f\xbe\xb7\xfc\xfa\x95\x38\x82\xaf\x5b\x48\x70\x08\xad\x72\x9e\x5b\xa4\x28\x6c\xde\x9d\x8e\x24\x99\xbe\x7e\x67\x14\x7d\xbd\x88\x3e\x59\x74\xe7\x2f\x40\x5c\x1f\x03\xa8\xf5\xfd\x5e\xd8\x3d\xef\x82\x6d\xf4\xc0\x8e\xa3\xa3\xee\x3c\x7c\xfd\x3a\xcb\xbd\x63\xbc\x43\x6e\x3a\xfd\xc9\xcd\x22\xf2\xc5\x5c\xe7\x53\x42\x6f\xf5\x99\xf1\x0d\x9d\x02\x5d\x21\x31\x25\xae\x33\x01\x1f\x32\x5e\x47\x98\x9e\x50\x1f\x46\x6d\xe0\x23\xfa\x28\x9b\x2f\x51\x73\xe0\x27\x4f\x05\xee\xda\x25\xd8\x7d\xc0\xa1\xbf\xbe\xaf\x26\x4a\x35\xaa\xf8\x24\x9f\x38\x22\xb8\xc7\x4b\x0b\x2e\x5e\x5c\x40\x0c\xce\x2f\xbd\x0e\x0a\xe6\x33\x8b\xbe\xff\xbe\xc8\x79\xd2\x7d\x58\x30\x81\x48\x00\x5e\xac\x07\xe8\x0a\x31\x29\x51\x9d\x3b\x12\x06\x7a\x32\x1e\x18\x65\x55\x9c\x50\x1d\x21\x7a\x4a\xd4\xbe\xa5\x67\x86\x0f\x01\xe8\x21\xbe\x28\xa8\xfe\xeb\xec\xab\x96\xab\x8f\x97\x68\xfc\xba\xa0\x73\xf3\xe2\xdf\xff\x7e\x31\x31\x39\x3f\x7c\x8c\x9c\xda\xec\xec\x4b\xbb\x6d\xa1\xc6\xa7\x9c\x45\xfc\x72\xd1\x6b\xaf\x15\xdd\xc9\x7c\x94\x6c\x74\x26\xdd\x59\xe3\x72\xc1\x41\xe7\x19\xbe\xd9\xbd\xfe\x0e\x83\xe4\xfa\x3b\xf1\x81\x8e\x34\xc5\xf5\x15\x74\xd6\xd6\xe1\x45\x63\xff\x0a\xd7\x99\x9c\x67\xf8\x2a\xf7\xfa\x36\x84\xc1\x36\x67\x77\x91\x62\xa8\xeb\x2b\xf1\x44\x2a\x9e\xe8\xb5\x04\xd2\xaf\x6e\x77\x9e\xe1\x6b\xdd\x7e\x5b\x70\x0f\x77\x7d\x85\xbe\xfd\x2b\xf7\x9c\xb7\x8a\xeb\xf6\xe1\x1a\xa2\x37\xcf\x7e\xe7\x19\xae\x08\x9c\xa1\xc8\x33\xbd\x1d\xcf\x06\xe7\x19\xbe\x5e\xe0\xfc\x03\x79\x46\xb6\xe3\x89\x71\x9e\xe1\xdb\xdc\xf3\x96\x82\xc7\xda\x8e\x27\xd5\x79\x86\x3f\xea\x9e\xc3\x14\x3c\x61\xde\x3c\x40\xdc\x6b\x4c\xd0\x51\x9e\x53\xcf\x38\x19\xdf\x5a\x3b\x75\xc4\xa3\xd6\x77\xf6\xa8\x99\xcc\xc8\x42\x12\x44\x35\x89\x23\x71\xec\x91\x6f\x69\x25\x75\xfe\xf2\x27\xe7\xec\xa7\xc9\x0a\xf2\xc4\x2a\xe7\xec\x17\x69\xff\x3b\x5f\xd1\xfe\x45\x2c\xe2\xf6\x37\xac\xd7\xed\x8f\xe4\xbb\x76\xb8\x7e\x05\x41\x10\x91\x32\x38\x40\xc8\x52\x25\xf4\xcc\xd0\x13\xc6\x20\x8f\xaa\xb5\x43\x95\xd6\x8b\x64\x06\x77\xd5\xa4\xe9\xe4\xe9\x9b\xaa\x34\xf1\xc5\xb6\x38\xb6\xe9\xda\x12\x17\x7c\xe9\x4c\x5f\x46\x4a\xa3\x86\x92\xe2\x65\xce\x31\x6f\x73\xa7\x9d\x6c\x2d\x62\x97\x6f\x5f\x58\xb3\x86\xc5\xdf\x1e\x2c\xe4\xcd\xd7\xce\x55\x1d\x9a\x62\xea\x40\xb8\x4e\x7e\xa7\xcc\x47\xf3\x3f\x7a\xa2\xfa\x1d\x4a\x5a\x33\xd8\x39\x38\x48\xd4\x4a\xa3\xfc\xc2\x9a\xb1\x35\x93\x9b\x5f\x27\x07\x9f\x71\xae\x70\x3e\xb6\x9a\x1c\xfc\xea\x92\xb3\x7c\x35\xa9\x20\x0f\xad\x76\x96\xbd\x48\x4f\xdf\x19\x4b\x57\xdc\x59\x46\x4f\x17\xd1\xb5\x77\xd6\xd2\xf2\x3b\xe5\x40\xdc\x7b\x07\xfe\xbb\xec\x9e\xbf\x51\xf6\x73\xa7\xc8\xaa\x35\xce\xed\xce\xed\xcf\x92\x27\x3f\xff\xb3\xf3\xd9\x67\xc9\x44\x92\xfd\xbc\x73\x4d\x33\xf9\xd9\xe9\x4b\x1c\xce\x38\xf2\x73\x11\xf9\xcc\x99\x4e\xce\x38\x07\xba\xf7\x8d\xf1\x09\x54\x0f\x2f\xab\x75\xd7\xf5\x25\x00\x1f\x2a\xea\xca\x60\x7c\xe7\x6b\x9b\xb3\x1a\xf7\x3f\xbb\xe7\x11\x72\xe8\x11\xbe\x8e\x75\x85\x31\x64\x95\x6b\x31\xc0\x94\xb8\x14\x71\xac\x2e\xa5\xae\x9f\xe9\x11\x9d\x02\x0c\x3a\xc9\xaf\x91\xca\x6f\xbb\x25\x67\x00\xa5\x62\xec\x37\x8a\x65\x0e\x34\xe2\xb7\x00\x8d\xc1\x71\xcc\xe3\x50\x0a\xba\x66\xd1\xa2\x67\xa2\x06\x0d\x1e\x1a\x3d\x68\x50\x14\x39\xc6\xee\xdc\xda\x64\x8c\x89\x31\x0e\x88\x8a\x92\xf5\x41\xed\x67\x53\xff\xfa\xd4\xec\xb3\xb3\x3b\x25\xff\x04\x01\xbe\xe2\x24\xdf\x73\x37\x82\x45\xf4\xfb\x2b\x8e\x3d\xf0\x4b\xed\x9d\x8f\x7c\xd6\xf8\x56\x03\x80\x1f\x50\x3c\xea\x97\x00\xf8\xce\xb9\xf3\x11\x80\xdf\x96\x5f\x6a\x7f\xae\xf2\x59\x23\x90\x3c\xfe\x71\xe0\x0e\x0c\x39\xdc\x3f\xb2\x96\x3b\x60\x14\x77\x40\x33\x77\x80\x89\x3b\xe0\x49\xee\xa0\x9c\x3b\xc8\x23\xdc\x41\xa6\x71\x07\x9c\xe6\x0e\x58\xc8\x1d\xe4\x31\x7e\x11\xfe\xc6\x1d\xb4\x1f\x77\x90\x1e\xdc\x01\xdb\xb8\x03\x3e\xe5\x0e\x98\xc3\x1d\x60\xe3\x0e\xc8\xe1\x0e\x78\x9f\x3b\xe0\x05\xee\x80\x47\x10\x6f\x2b\x77\xd0\x1c\xee\xa0\x41\xdc\x01\xfb\xb8\x03\x8e\x70\x07\x9c\xe2\x0e\xf8\x8c\x3b\x60\x24\x77\x80\x9d\x3b\xe0\x35\x0f\xfe\xb7\xb8\x03\x3e\xe0\x0e\xa8\xe5\x0e\xd8\xce\x1d\xf0\x07\xee\x80\x0a\xee\x80\x37\x31\xcd\x7e\xee\x80\x9d\xdc\x01\x4b\xb9\x03\x2e\x73\x07\xcc\xe3\x0e\xb8\xc0\x1d\xf0\x14\x77\xc0\x2c\xee\x80\x06\xee\x80\x5c\xee\x80\xa9\xdc\x01\xf3\xb9\x03\x32\xb8\x03\x96\x73\x07\x39\xc7\x1d\x44\xcd\xab\x2a\xff\x27\xee\x80\xc3\xdc\x41\xde\xe0\x0e\x68\xe2\x0e\xf8\x23\x62\x36\x08\xdd\x2f\xc2\x09\x0f\xd9\x9f\x73\x07\xbc\x8e\xb2\xd4\x70\x1e\xde\xff\x1d\x77\xc0\x39\x69\x03\x32\x97\x3b\xe0\x15\xee\x80\x03\xdc\x01\xe7\x51\xee\x68\xee\x80\x15\xdc\x01\x99\xdc\x01\xeb\xb9\x83\x8c\xe7\x0e\x1a\x2f\xa9\x9a\x6f\xda\x09\xed\xb1\x12\x6d\x90\xc0\x1d\xb4\x3f\x77\x40\x09\x77\x90\x44\xee\x80\xe9\xdc\x41\xa2\xb8\x03\x7e\x44\xcc\x1c\x69\x73\x52\xc5\x1d\x50\xcf\x1d\x24\x83\x3b\xc8\x24\xee\x20\xaa\xed\x2e\x72\x07\xfc\x9d\x3b\x68\x77\xee\x20\x9f\x71\x07\xd9\xc0\x1d\xc4\x88\x69\x55\xac\x38\xee\x80\x18\xee\x80\xab\xdc\x01\xc3\x50\xef\x72\xee\x80\xdf\x63\x5e\x86\x72\x07\xa8\xe5\x5c\xed\x91\xaf\x81\x98\xdf\x3a\xa9\x13\x7c\xc4\x1d\x30\x1c\xef\x9d\x46\x9b\xab\x79\xeb\xcd\x1d\xe4\xef\xdc\x01\x3b\xb8\x03\x16\x71\x07\xd4\xa0\x1d\x55\x9d\x4f\xc8\xb2\x26\x21\xdc\x41\xb2\xb8\x83\x58\x65\xbe\xd5\x32\x20\xbb\xb8\x03\xd6\x71\x07\xe9\xc6\x1d\xe4\x02\x1d\x72\xfb\x34\x1d\x72\x67\x22\x1d\x72\xfb\x21\x3a\xe4\xce\x64\x3a\xe4\x97\x5a\x3a\xe4\xf6\x1d\xee\xa0\x66\x99\x96\xaa\xb6\x78\x15\xed\xaa\x96\x7d\x16\x77\xc0\x66\xac\x4f\x8b\xb9\x03\x26\x72\x07\x3c\xcc\x1d\x50\x8a\x36\x3d\xcb\x1d\x30\x83\x3b\x60\x19\x77\xc0\x16\x59\x7f\xe1\x0c\xe6\xed\x5d\xac\xef\xaf\x60\x9d\x51\xe9\xe3\x98\xff\x33\x78\xbd\x1e\x71\x54\xbb\xec\xe5\x0e\x08\xe5\x0e\x18\xc0\x1d\x10\x2d\xf5\x06\x03\xd6\x39\x0b\xea\xd0\x8c\x6d\xc0\x84\xf4\x20\xda\xbc\x37\xd6\xef\xf3\xb2\x5d\x89\x34\x6a\x5e\x1a\xd1\x86\x8f\xa1\xcd\x55\x5b\x3e\xc1\x1d\xf0\x22\x77\xc0\x1b\xa8\x57\xb0\x6c\x3f\x42\x1f\x07\x77\x40\x2a\x77\xc0\x06\xbc\x56\x7f\x0f\x61\xda\x8f\xd1\xfe\x75\x98\x0f\xd5\x46\x7b\xb8\x03\x5e\xe6\x0e\x78\x16\xdb\x56\x11\x77\xb8\xd4\xfa\xa0\xda\xbd\x3f\xe6\x6d\x00\xe2\xa8\xed\x6b\x32\x77\x40\x08\xf2\x1f\xc5\x7a\xa2\xd6\xe3\xe7\x50\xe7\xc5\xa8\x5f\x15\xda\x52\x6d\xa7\xdf\x61\x99\xab\x6d\x35\x1e\xdb\xdc\x58\xd4\x73\x29\xea\x96\x8d\x6d\x66\x01\xca\xd8\x8b\x79\x59\x07\x00\xa7\x01\xe0\x5f\x00\x64\x09\x00\xf9\x0b\x80\xfa\x94\x23\xca\xf5\x32\x96\xd3\xeb\x58\xe6\x6a\xdd\x7b\x87\x3b\xe0\x0a\x77\xc0\x9f\xb0\x1e\xe6\x62\xf9\xda\xb1\x7e\x3e\x8e\x65\xaf\xea\x77\x3f\xea\x70\x5e\xe6\x8f\xf8\x72\x07\x84\x63\x7e\xff\x8e\x18\x67\x31\x0f\xb3\xd0\xa7\xa8\x75\x64\x3c\xe2\x3e\x2c\xed\x25\xea\x43\x12\x77\xc0\x14\xee\x80\xe3\xd8\x7e\x7a\xca\xb6\xaa\xd9\x65\x87\xf4\x25\xf0\x20\xf2\x2d\x68\xf5\xab\xbf\xf9\x97\x89\xbe\xf3\x0c\xb6\x8f\xef\xb0\x1d\xff\x83\x3b\x48\x19\x77\x90\x72\xee\x20\xb9\x68\x77\xd5\x27\x1f\xe2\x0e\x7a\x3f\x77\x10\x2e\x6d\x41\xb6\xe1\x4f\xf5\x2f\xf7\x71\x07\x51\xed\xfc\x28\x77\x80\xea\xd7\x97\x70\x07\xa4\x71\x07\xdc\x40\x1b\x15\x63\xbb\x49\xe6\x0e\x48\x41\x5b\x0e\xc3\x76\xf2\x36\x86\x0f\x60\x3b\x36\xa1\x0f\x79\x86\x3b\x40\x41\xdf\xfe\x99\xac\x93\x64\x37\xea\x3e\x93\x3b\xa0\x93\xb4\x29\xb1\x70\x07\x19\xc5\x1d\xa4\x93\x2c\x6b\x12\xc7\x1d\xc4\x2c\xfb\x0b\x48\x47\xdf\xb1\x1c\xcb\x5f\xc5\xfa\x33\xd6\x29\xd5\x9f\x7c\xed\xd1\x2f\x5c\x43\xbf\x7c\x11\xfb\x12\xb5\x9e\xbf\x84\xe1\x02\x2c\xbb\x42\x2c\xd3\x1a\x2c\xb3\x63\xdc\x41\x66\x72\x07\x09\xf4\x68\x6f\x6a\xdb\xf9\x1b\x77\xc0\xff\xe0\xf5\x45\xd9\xf6\x49\x26\x77\x10\xd5\xcf\x4e\xe0\x0e\x92\xc6\x1d\x64\x30\x77\x90\x6c\xe9\x9b\xc9\x48\xbc\x97\x29\x75\x27\x37\xb8\x83\xdc\xe1\x0e\xa2\xf6\x89\x83\xb8\x83\xac\xe6\x0e\xa2\xda\xf0\x69\xee\x80\x16\x99\x27\xd2\x82\xfd\x60\x25\xd6\x91\x6a\xac\x2f\x1f\xa0\xdd\x54\xfa\x1e\x7f\x5d\xb4\xdd\x62\xf4\x0d\xdf\x4a\x7f\x08\x20\xfa\xd4\x6f\x5d\x7f\x92\x3f\xe8\x81\x75\xf2\x00\xd6\xed\x7b\xfd\x1e\xc1\xfa\xeb\xf9\xfb\x43\x9b\x9f\xbb\x9f\x6c\xfb\x6b\x68\xf3\xcb\x40\x7b\xdf\xeb\xb7\x13\x6d\xef\xf9\xfb\xbc\xcd\xcf\xdd\x27\xb6\xfd\x9d\x6f\xf3\xcb\xc4\x9f\x1d\xb1\xdb\xd2\x47\x50\xde\xbd\x68\xb3\xae\x40\xe8\xfc\x16\xea\xf1\x6b\xd4\x3d\x8e\xb8\x17\xdd\x8e\xf5\xfb\x0f\x1e\xf9\xb8\x17\xad\xc0\x3e\xed\x4d\xf4\x51\x9f\x61\x9c\x46\x75\x05\x48\x0f\x08\xba\xd3\xa3\x1c\x3c\xa9\xce\xc3\x3f\xb6\xa5\x17\x70\x3c\xa1\xd2\x70\xa4\xd1\xe8\x6b\x5e\xf9\x0d\xd4\x5d\x77\x66\x61\x5b\x91\xe1\x9f\x04\x75\xf7\xcb\xbf\x95\x4e\xc5\xbe\x24\x03\xcb\x0c\xc7\x52\xa2\x6f\x6c\x4b\x87\xe1\x38\xa2\x5c\xe6\xc3\xe5\x94\x3f\xa1\x43\xfa\x7f\xf9\x2d\x47\x5f\xe0\xf9\xfb\xba\xcd\xef\xe2\x5d\xea\xdf\x0b\xe8\x07\x3c\x7f\xb9\x77\xc1\xf6\xfc\x39\xee\x22\xeb\x7d\xf4\x41\x9e\xbf\xd3\x77\xd1\xc1\xd3\x3f\x7d\x8e\x3e\xca\xfd\xbb\xe8\xf1\xf3\xd4\xef\x25\x8f\x5f\x5b\xdd\x0b\x3c\x7c\xd9\xdd\x7e\xe1\x98\x1f\xf4\x6d\xda\xcf\xae\x8b\x81\x38\x5d\x0c\x18\x74\x31\x10\xc4\xbf\x82\x5e\xba\x18\xd7\xfb\xfc\x2b\xe8\x86\xe3\x1a\xf7\x78\xfa\x2d\xcc\xb3\x7b\x1c\xfb\xe6\x5d\xc6\xce\xb3\xb0\x4c\xe7\x23\x4f\x06\x8e\x0b\xb6\xe0\x38\xe8\x5d\xac\x53\x1f\x61\xdd\xbc\x88\xbc\x2b\x3c\xe2\x7e\x87\x74\x1a\xca\x7c\x15\xeb\xe2\x1f\x3c\xda\xcc\x07\x28\xbf\xb7\x87\x7e\xaf\x22\xff\x41\xd4\x6b\x3b\xea\x75\x04\x75\x7b\x04\xf5\x9b\x88\x32\x9b\xd0\x6e\xaf\x78\x8c\x51\x77\x62\xbd\x5c\x81\x71\x6f\x60\xfc\xe7\x1e\xe3\x76\x07\xf2\xb8\xeb\x72\x5b\x8a\x75\x5b\x3c\xef\xac\xf5\xdb\x42\xa9\x6c\xe3\x6a\x1f\x2c\xf4\xca\x6b\xf5\x4d\xae\xfd\x1e\x3a\xbb\x75\x79\x18\x6d\x16\xef\x31\xf6\xdb\xea\xe1\xaf\x32\x70\x9c\xf2\x07\x8c\x0f\xc6\x70\x5b\xbf\xe7\x6e\x3f\x6e\xbf\x35\x0b\xeb\xdb\x29\x8f\x74\x6e\xec\x83\x28\xdb\x4d\xdd\xbe\xc3\x3d\x16\x73\xd3\xc7\x70\x3c\xd7\xbb\x75\xac\xee\x45\xcf\xe3\xf8\xa5\x11\xc7\x8b\xee\xb2\x6d\xc0\xb1\x6b\xea\x7f\xf1\xd3\xd9\x38\x66\xb9\x57\xfc\x6f\xa5\xbf\xe6\xbf\x7b\xa2\xae\xf7\x8a\x6f\xeb\xa7\xef\xe5\x57\xd5\x71\xa5\xf9\xbf\xc4\xbb\x9f\x5d\x7e\x8d\xfe\x9f\xfa\x50\x37\xf5\xf4\xa1\xad\xf4\x5b\x68\x10\x3f\xd9\x46\x1c\xd8\x0e\xdc\x7e\xfc\x21\x8f\x32\x71\x97\x95\x9b\xbe\x8a\xf5\xdd\x5d\x37\xdc\xe3\x5b\xd5\x0e\x8c\x3b\x5c\x77\xe4\x0f\x3a\x72\x87\xeb\x63\xfe\x15\xf4\xe4\x5f\x41\xa4\x5a\x67\xe0\x15\xd8\x0e\xaf\xc0\x7e\xd8\x00\x31\x90\x0a\x19\x30\x03\xe6\xc3\x0a\xd8\xe2\xfa\x12\x72\xe4\xb4\x86\xd7\x84\x41\x22\x34\x91\x34\x72\x85\x9e\xa6\x5f\xb2\x20\x96\xc2\x2a\x59\x3d\x3b\xc3\x3e\x64\x3f\xf2\x40\x5e\xca\x57\xf1\xcb\xba\x6c\xdd\xe3\xba\xaf\xf5\xd9\xfa\x1a\xfd\x6d\x9f\x26\x9f\x97\x7d\xde\xf3\xb9\xea\xdb\xd1\x37\xcc\x77\x8d\xdf\x59\xbf\x1b\xfe\x33\xfc\x5f\x0e\x80\x80\xa8\x80\x69\x01\x67\x03\xae\x06\x76\x0e\x1c\x1f\xb8\x20\x70\x6d\xe0\xdb\x81\x37\x3a\x64\x77\x58\xdf\x91\x76\xcc\xea\x78\xae\xe3\x37\x9d\x06\x74\x4a\xe9\x54\xd3\x69\x4f\xa7\xb7\x3b\xdd\x0c\xea\x15\x14\x1b\x34\x2d\x68\x49\xd0\xfa\xa0\x43\xc1\x83\x83\xdf\xeb\x6c\xea\xfc\x61\x97\xa4\x2e\xcb\xba\xc6\x77\x5d\xd1\xf5\x6c\xb7\xce\xdd\xb2\xba\x3d\xde\xbd\x57\xf7\x95\xdd\x3f\xec\x51\xd4\xe3\xe7\x9e\xcb\x7b\xde\xb8\x6f\xc4\x7d\xdb\xee\x3b\x7b\xdf\xcd\x5e\x61\xbd\x8a\x7a\xad\xed\xf5\x4d\x2f\x67\xef\x9c\xde\x8d\xbd\x3f\xec\x33\xba\xcf\x8e\xbe\x61\x7d\xe7\xf5\x7d\xae\x5f\x4a\xbf\xaa\xfe\x1d\xfb\x9f\xe9\xff\x41\xff\x1f\x0c\x0b\x0c\x6b\x0c\x97\x43\x3a\x86\xac\x19\x40\x07\xf4\x1a\xb0\x7e\xc0\xab\x03\xae\x18\xfb\x18\x93\x8c\x2b\x8d\xeb\x8d\x8a\xf1\x82\xf1\xfa\xc0\xd2\x81\x2d\x03\x2f\x85\x4e\x0b\xfd\x22\xac\x70\x50\xaf\x41\xcf\x0c\x7a\x6f\xf0\xf8\xc1\xa7\x87\x74\x1d\x32\x62\xc8\xa1\x70\x53\x78\x6e\xf8\xaa\xf0\x0f\x23\xfa\x45\xbc\x6c\x7a\x2f\x72\x5e\xe4\xb6\x48\x67\xd4\xaa\xa8\x6b\x43\xb3\x86\x7e\x10\x1d\x14\x5d\x19\xbd\x36\xfa\x78\xf4\x95\x18\x1a\x33\x33\x66\x43\xcc\x67\xb1\x81\xb1\x59\xb1\x95\xb1\x6b\x63\xeb\x63\x2f\xc7\xde\x8a\xeb\x17\x17\x1f\x57\x15\xb7\x24\x6e\x53\xdc\xb9\xf8\xe8\xf8\xec\xf8\xe5\xf1\x3b\xe2\x2f\x25\x24\x26\x2c\x49\xb8\x94\xf8\xf8\x30\xfd\xb0\xe8\x61\x2d\x49\xd1\x49\xcf\x0c\xa7\xc3\xab\x86\x1f\x19\xf1\xea\xc8\xa4\x91\x1b\x46\x7e\x9f\x9c\x95\xbc\x2b\xf9\xb3\x51\xfd\x46\xd5\x8d\xba\x32\x3a\xf7\xfe\x65\x29\xfa\x94\x95\xa9\xa6\xd4\xe7\x52\x7f\x34\x8f\x35\x3f\x67\x3e\x63\xe1\x96\xf1\x96\x35\x69\x81\x69\xb1\x69\xa5\x69\x87\xd2\x2e\x5b\xbb\x5a\x53\xac\x8b\xac\x67\xd3\x03\xd3\xb3\xd2\xcf\x8c\x29\x1e\x73\x7c\x6c\xd4\xd8\xf5\x63\x5b\xc6\xde\x1a\x37\x7a\xdc\xd9\x71\xdf\x8c\xef\x3e\x7e\xf2\xf8\x65\xe3\xf7\x8d\x3f\x3f\xfe\x6a\x46\x7a\x46\x65\x46\x53\xc6\xa5\xcc\xc0\xcc\x9c\xcc\x1d\x99\x57\x26\x8c\x9d\xf0\x63\x56\x5a\xd6\xf1\x89\xbd\x26\x2e\x9b\xf8\x5e\x76\xbf\xec\xcc\xec\x43\x93\xfc\x27\xcd\x9a\x3c\x62\x8a\xef\x94\xd1\x53\x16\x4c\x79\x39\x87\xe7\xcc\xcc\x69\x99\xda\x75\xea\xd2\x69\x9d\xa7\xed\x9b\xde\x79\x7a\xd5\xf4\x0f\x73\x67\xe6\x5e\xc9\x6b\x9c\x91\x32\xe3\xf6\x03\x6f\xce\x6c\x79\x30\xe5\xc1\xf7\x66\xcd\x9c\xf5\xe5\x6c\xc3\xec\x45\xb3\x4f\xcf\xfe\x60\xf6\x35\xdb\x4c\xdb\xb5\x39\xc9\x73\x3e\x99\xe3\x2c\x88\x2e\xa8\x29\x38\x53\x08\x85\xe6\xc2\x45\x85\x47\x0a\x3f\xb3\xfb\xdb\xa7\xd9\x77\x14\xc5\x16\xdd\x9e\x1b\x3f\xb7\x78\xee\x95\xe2\xf4\xe2\x15\xc5\xb7\x4b\xaa\x4a\x4e\x97\xdc\x9e\x37\x76\xde\x86\x79\xce\xf9\x39\xf3\xcf\xcd\xff\x64\xfe\x8d\xd2\xa4\xd2\xfa\x32\x53\xd9\xbe\xf2\x3e\xe5\x6b\xca\x9d\x15\x45\x15\xef\x55\x46\x55\xae\xac\xbc\xf6\x50\xe6\x43\x9b\x1e\xfa\xba\x6a\xe6\x3d\xff\x17\x57\xd5\x54\xad\xac\xda\x57\x75\xb1\xea\xfb\xaa\x5b\xd5\xbe\xd5\x5d\xab\xc7\x56\x57\x55\x2b\xd5\x5f\x56\x5f\xaf\xbe\x5d\x73\xb1\xe6\x87\xda\x3e\xb5\x51\xb5\x35\xb5\xe7\x17\x24\x2e\x0c\x5f\x58\xbf\xc8\xb0\xa8\x6a\xd1\xc5\x45\xb7\x16\x8f\x5e\x3c\x6d\x71\xd5\xe2\x35\x8b\xf7\x2d\xa1\x4b\x7a\x2e\x19\xb1\x24\x67\x49\xe5\xc3\xf4\xe1\xd1\x0f\x37\x3d\xfc\xe1\xc3\xdf\x2f\xf5\x5d\x1a\xbd\x74\xfc\xd2\xf1\x8f\x44\x3f\x52\xf7\xc8\xc5\x65\x3d\x97\xe5\x2e\x7b\x66\x59\xe3\xb2\xf3\xcb\x6e\x3c\x1a\xf8\x68\xf2\xa3\x7b\x1e\xbd\xb5\x3c\x79\xf9\xbc\xe5\x6b\x97\xff\xf0\x58\xaf\xc7\xd2\x1e\x5b\xf2\xd8\xbe\xc7\x5e\x7b\xec\xc6\x8a\xee\x2b\x8a\x56\x9c\xfb\x5d\xc7\xdf\xad\xfa\x5d\xe3\xef\xbe\x7e\xdc\xf7\xf1\xd1\x8f\x97\x3f\xbe\xfe\xf1\x57\x9f\xa0\x4f\x74\x7f\x62\xf2\x13\x47\x9e\xf8\x60\x65\xd7\x95\x45\x2b\x97\xad\xfc\xf1\xc9\xb4\x27\x57\x3d\x59\xff\xe4\xf9\x55\x7d\x56\x65\xaf\x7a\x6e\xd5\x67\xab\x7e\x7c\xea\xc8\x53\xb7\xea\x02\xeb\xaa\xea\x36\xd4\x7d\x51\xf7\xf3\xd3\x61\x4f\xcf\x7c\xfa\xc7\x67\xfa\x3c\x63\x7e\x66\xde\x33\x55\xcf\x2c\x79\xe6\xd5\xd5\xfe\xab\xa7\xad\x5e\xb9\xfa\xec\xea\xeb\x6b\xf4\x6b\x96\xaf\xb9\xf2\x6c\xf4\xb3\x1f\x3c\xfb\xc9\xb3\x57\x9e\xbd\xf6\x5c\xf2\x73\x6b\x9e\xfb\xe1\xf9\x81\xcf\x2f\x7f\x7e\xed\xf3\x7b\x9e\x3f\xf9\xfc\x9b\xcf\x7f\xf2\xfc\xf5\xe7\x9d\x6b\x83\xd6\x0e\x58\x1b\xbf\x36\x7d\x6d\xee\xda\x79\x6b\x97\xae\x5d\xb3\x76\xc7\xda\x96\xb5\xe7\xd6\x5e\x5a\x7b\x75\xed\xad\x75\x81\xeb\xfa\xad\x8b\x5e\x67\x5e\x97\xb3\xae\x68\xdd\x82\x75\x2b\xd7\x6d\x58\xd7\xb8\xee\xf4\xba\x37\xd7\x7d\xb8\xee\x9b\x75\x37\xd7\xeb\xd7\x77\x5f\x1f\xb6\x3e\x71\xfd\xd8\xf5\xb9\xeb\x8b\xd7\x2f\x59\x5f\xb7\x7e\xcb\xfa\xa6\xf5\x2f\xaf\xbf\xb0\xfe\xb3\xf5\xd7\xd7\xdf\x7e\x21\xf0\x85\x3e\x2f\x98\x5e\x18\xfd\x42\xd6\x0b\xf9\x2f\x54\xbe\xf0\xde\x86\x45\x1b\xea\x36\xd4\x6f\x38\xb2\xe1\xd5\x0d\xef\x6d\xf8\x72\xc3\x0f\x1b\xe9\xc6\xae\x1b\xc3\x36\x26\x6d\x1c\xbb\x71\xc6\xc6\x79\x1b\x97\x6e\x7c\x66\xe3\xd5\x4d\xcf\x6d\xda\xb5\xa9\x65\xd3\xb9\x4d\x1f\x6e\xfa\x66\xd3\xcd\xcd\xbe\x9b\x7b\x6e\x0e\xdf\x3c\x62\x73\xe6\xe6\x59\x9b\x2b\x37\xaf\xd8\xbc\x7e\xf3\x9e\xcd\x27\x37\x9f\xdf\xd2\x6f\x4b\xdd\x96\xfa\x2d\x47\xb6\x9c\xdd\xf2\xc1\x96\xaf\xb7\xdc\xdc\xea\xbb\xb5\xd7\x56\xd3\xd6\xd1\x5b\xb3\xb7\xce\xd9\x5a\xb3\x75\xe5\xd6\x0d\x5b\x1b\xb7\x9e\xd9\x7a\x61\xeb\x67\x5b\xaf\x6e\xbd\x55\xef\x5f\xdf\xa7\xde\x54\x3f\xba\x3e\xab\x3e\xbf\xbe\xb2\x7e\x45\xfd\xfa\xfa\x7d\xf5\x27\xeb\xdf\xac\xff\xa4\xfe\x7a\xfd\xed\x86\x8e\x0d\x86\x86\xd8\x86\xb4\x86\x69\x0d\x45\x0d\x8b\x1a\xea\x1a\x36\x34\xec\x6b\x68\x69\x38\xd7\x70\xa9\xe1\x6a\xc3\xcf\xdb\xfc\xb7\x75\xdf\x36\x78\x5b\xd2\xb6\xf1\xdb\x66\x6c\x2b\xdd\xb6\x74\xdb\xad\xed\xb3\xb6\x57\x6e\x5f\xbe\x7d\xed\xf6\x5d\xdb\x8f\x6f\x3f\xbf\xfd\xf2\xf6\x6b\xdb\x6f\xed\x08\xdc\xd1\x67\x47\xd4\x8e\xd1\x3b\xb2\x77\xe4\xef\xa8\xda\xf1\xf8\x8e\x0d\x3b\xf6\xed\x38\xb9\xe3\xfc\x8e\x4b\x3b\xbe\xd9\x71\x73\xa7\x7e\x67\xcf\x9d\x83\x77\x26\xed\x1c\xbb\x33\x77\x67\xf1\xce\x45\x3b\x57\xed\xdc\xb4\xb3\x69\xe7\x99\x9d\x6f\xef\xfc\x64\xe7\xf5\x9d\xb7\x77\x05\xee\xea\xb3\xcb\xb4\x2b\x79\x57\xe6\xae\x99\xbb\x4a\x77\x5d\xd8\xf5\xd9\xae\xeb\xbb\x6e\xef\x0e\xdc\xdd\x67\xb7\x69\x77\xf2\xee\xcc\xdd\x8d\xbb\x4f\xef\x7e\x73\xf7\xe5\xdd\x57\x77\xdf\xda\xe3\xbf\xa7\xcf\x1e\xd3\x9e\xe4\x3d\xeb\xf7\xec\xd9\x73\x72\xcf\x9b\x7b\x3e\xd9\x73\x7d\x8f\x73\x6f\xd0\xde\x01\x7b\xe3\xf7\xa6\xed\xcd\xd9\x5b\xb8\x77\xc1\xde\x95\x7b\x37\xed\x6d\xdc\x7b\x7a\xef\x9b\x7b\x3f\xd9\x7b\x6d\xef\xed\x7d\x81\xfb\xfa\xed\x8b\xda\x37\x7a\x5f\xd6\xbe\xfc\x7d\xe7\xf7\x5d\xde\x77\x75\xdf\xcf\xfb\xfd\xf7\xf7\xda\x1f\xbe\x3f\x71\xff\xd8\xfd\x33\xf6\x97\xee\x5f\xb4\xff\xf1\xfd\xcf\xed\xdf\xb5\xbf\x69\x7f\xcb\xfe\x33\xfb\x5f\xdb\xff\xf6\xfe\x0f\xf6\x7f\xb2\xff\xca\xfe\x6b\xfb\x7f\xd8\x7f\xab\x91\x36\xfa\x37\x76\x6e\x1c\xd8\x98\xd8\x38\xb6\x71\x46\x63\x69\xe3\xb2\xc6\xe7\x1a\x37\x35\xee\x68\x6c\x6c\x54\x1a\x4f\x37\xbe\xdd\xf8\x59\xe3\xf7\x07\xe0\x40\xe7\x03\x03\x0f\x24\x1e\x38\x74\xe0\xf8\x81\xf3\x07\x2e\x1e\xb8\x74\xe0\xea\x81\x5b\x4d\xb4\xc9\xbf\xa9\x73\x53\xaf\x26\x53\x53\x7c\x53\x72\x53\x5a\x53\x66\x53\x4e\xd3\xcc\xa6\xc2\xa6\xd2\xa6\x9a\xa6\xa5\x4d\x8f\x37\xad\x6f\xaa\x6f\xda\x73\x10\x0e\xfa\x1e\x0c\x3a\x68\x38\x18\x7b\x70\xc4\x41\xf3\xc1\xc9\x07\x67\x1c\x2c\x3d\xb8\xf4\xe0\x9a\x83\xdb\x0e\x2a\x07\xcf\x1e\xfc\xe0\xe0\x95\x83\x3f\x1e\xe2\x87\x02\x0f\x75\x3d\x64\x38\x14\x7d\x28\xe9\xd0\xf8\x43\x33\x0e\xcd\x3b\xb4\xe4\xd0\x33\x87\xb6\x1d\x52\x0e\x9d\x3d\xf4\xc1\xa1\x4f\x0e\x5d\x39\xf4\xe3\x61\x38\xdc\xf9\xf0\xc0\xc3\x89\x87\xc7\x1e\xce\x3e\x9c\x7b\x38\xff\x70\xd5\xe1\x15\x87\xeb\x0e\xd7\x1f\x3e\x74\xf8\xd5\xc3\x17\x0f\x5f\x3a\xfc\xc5\xe1\x1b\x47\xe0\x48\xe7\x23\xbd\x8e\x84\x1f\x49\x3e\x92\x75\x24\xff\x48\xe5\x91\x15\x47\xd6\x1f\xd9\x77\xe4\xf4\x91\xb7\x8f\x7c\x72\xe4\xca\x91\x6b\x47\x6e\x1f\x0d\x3c\xda\xef\x68\xd4\xd1\x94\xa3\x99\x47\x67\x1d\x2d\x3f\xba\xfc\xe8\xda\xa3\x7b\x8e\x9e\x3c\xfa\xe6\xd1\x4f\x8e\x7e\x73\xf4\x87\xa3\xb7\x14\xbd\xd2\x59\xe9\xa7\x84\x2b\xc9\x4a\x96\x92\xaf\x54\x2a\x2b\x94\xb5\xca\x1e\xe5\xb8\x72\x5e\xb9\xac\x7c\xdf\x4c\x9b\xbb\x36\x0f\x6c\x4e\x6c\x4e\x6f\xce\x6d\x2e\x6e\x5e\xd2\x5c\xd7\xbc\xa3\xf9\x78\xf3\xf9\xe6\xcb\xcd\xd7\x9a\x6f\xb7\x74\x6c\x31\xb4\xc4\xb6\x98\x5b\x72\x5a\x0a\x5b\x16\xb4\xac\x6c\xd9\xd4\xd2\xd4\x72\xae\xe5\xb3\x96\xef\x8f\xc1\xb1\xce\xc7\x06\x1e\x4b\x3c\x36\xf6\xd8\x8c\x63\xa5\xc7\x96\x1d\x5b\x73\x6c\xc7\x31\xe5\xd8\x6b\xc7\x3e\x38\xf6\xf5\xb1\x9b\xc7\x83\x8e\x87\x1f\x4f\x3e\x9e\x75\x3c\xff\x78\xe5\xf1\x15\xc7\xd7\x1f\xdf\x77\xfc\xf4\xf1\x73\xc7\x2f\x1d\xbf\x72\xfc\xfb\x13\x70\xa2\xf3\x89\x81\x27\x12\x4f\x8c\x3d\x31\xe3\x44\xe9\x89\x65\x27\x9e\x3b\x51\x7f\xe2\xc8\x89\x33\x27\x2e\x9c\xf8\xe2\xc4\x8d\x93\xf4\x64\xd7\x93\x61\x27\x7f\x3c\xd5\xf1\x94\xe1\x54\xec\xa9\xd1\xa7\xc6\x9f\x9a\x76\x6a\xce\xa9\xf2\x53\x4b\x4e\xad\x3c\xb5\xf6\xd4\xb6\x53\x4d\xa7\x4e\x9e\x7a\xed\xd4\xc5\x53\x9f\x9c\xba\x7e\xca\x79\x5a\x7f\x3a\xf7\xf4\xa1\x17\xe1\xc5\xa8\x17\x67\xbe\x58\xff\xe2\x27\x2f\xfe\x78\xa6\xe3\x19\xc3\x99\xd8\x33\x69\x67\xa6\x9d\x29\x3e\xb3\xe4\x8c\x72\xe6\xea\x4b\x61\x2f\x15\xbe\x54\xfa\xd2\xb2\x97\xea\xc4\xff\x53\x40\x00\x78\x30\x6c\x82\xee\xf0\x34\xe8\x80\x42\x36\xe4\xc3\x42\x00\xf8\x3c\x60\x23\x30\xb1\xee\xd0\x09\xce\xa8\x21\xee\x07\x00\xb3\xc4\xd7\x98\xd5\x30\x81\x01\x30\x0b\xc3\x14\x3a\xc2\x72\x0c\x33\x88\x82\x35\x18\xe6\x30\x00\x5e\xc6\xb0\x0e\x72\xe0\x0b\x0c\xeb\xc1\x40\x62\x31\xec\x03\xe3\xc9\x64\x0c\xfb\x41\x20\xa9\xc7\x70\x00\x74\x25\x8d\x18\x0e\x84\x30\xe2\xc6\xe9\x00\x33\xc9\x15\x0c\x77\x84\x1c\x3a\x1a\xc3\x41\xd0\x9d\xae\xc5\x70\x30\xf8\xd3\x46\xb0\x40\x05\x54\xc2\x62\xa8\x82\x12\x98\x0b\xc5\x50\x03\x06\x88\x85\x68\x88\x81\x04\x30\xc0\x18\xa8\x80\x0a\x98\x0b\xa5\x60\x07\x03\x8c\x83\x72\x28\x80\x28\x30\x40\x2a\x94\x42\x29\x18\x60\xb2\x96\xaa\x5a\x5c\xd9\xa1\x1a\xec\x50\x05\x0b\xc0\x0e\x85\x10\x05\x93\xa1\x02\xe6\x40\x05\xd4\x40\x05\x18\x60\x02\x54\x40\xb9\x08\x65\x6a\xe9\xd4\x34\x73\xa1\x16\x4a\xc1\x06\x55\x5e\xf2\x46\xdc\x23\xf5\x08\x4d\xbf\x5f\x47\x9f\x26\xb4\xa9\x86\x12\x11\xa7\xe6\x2c\x0a\xa2\xc5\xff\xe1\x90\x04\x09\x30\xd2\x23\xb7\x6a\xb8\x06\x6a\xa0\x08\x6c\x50\x2b\x30\x8b\xa1\x04\xca\x85\x45\x06\xc3\x02\x88\x81\x28\x88\x83\x21\x5e\x52\xdd\x32\x23\xbd\x72\x74\x77\xad\x4a\x84\x8d\x6c\x42\x4a\x15\xd8\xa0\x10\xec\x50\x26\x72\x3d\x1f\x0c\x50\x01\x45\x6d\xec\x1d\xe5\x75\xe5\x1d\x53\x00\x15\x50\x06\x16\x28\x16\xe5\x56\x0d\x35\x50\x02\x36\x91\x43\x29\x5d\xcd\xb5\x5a\x26\xaa\x6c\x55\xb3\x02\xb0\x43\xb9\x28\x9b\x42\x30\x40\x2d\x94\x0b\xe9\x55\x42\x97\x62\x51\xb6\xa9\x50\x09\x36\x28\xc0\x2b\xef\x34\x26\x30\xdc\xc3\x92\xc5\xc2\x62\x95\x30\x02\x86\xc2\x50\x58\x28\xfe\x47\x81\xcd\x03\x2b\x0a\x2a\xa0\x0a\xe6\xc2\x50\x28\xf5\xc2\xac\x86\xa1\x90\x09\xe3\xc0\x02\x56\xc8\x82\x29\x60\x85\x48\xc4\xbc\xbb\xfd\x5a\xed\x8b\x63\x76\xd7\x3c\x28\x84\xbb\xfc\xe3\xc1\x00\x84\x8a\x9d\x3b\x3a\xd0\x83\x0f\xf8\x82\x1f\xf8\x43\x00\x04\x42\x07\xe8\x08\x9d\x20\x08\x82\xa1\x33\x74\x81\xae\xd0\x0d\xba\x43\x0f\xe8\x09\xf7\x41\x2f\xe8\x0d\x7d\xa0\x2f\xf4\x83\xfe\x60\x80\x10\x18\x00\x46\x18\x08\xa1\x10\x06\x83\x60\x30\x0c\x81\x70\x88\x00\x13\x44\x42\x14\x0c\x15\xb5\x25\x16\xe2\x20\x1e\x12\x20\x11\x86\x41\x12\x0c\x87\x11\x30\x12\x92\x61\x14\x8c\x86\xfb\x21\x05\x52\xc1\x0c\x16\x48\x03\x2b\xa4\xc3\x18\x18\x0b\xe3\x60\x3c\x64\x40\x26\x4c\x80\x2c\x98\x08\xd9\x30\x09\x26\xc3\x14\xc8\x81\xa9\x30\x0d\xa6\x43\x2e\xe4\xc1\x0c\x78\x00\x66\xc2\x83\x30\x0b\x66\x43\x3e\xd8\xc4\x49\x4d\x4f\xc0\x2b\xb0\x01\xae\xc2\x4a\x58\x03\x4f\x43\x03\x1c\x80\x3d\x50\x47\x18\xfc\x0e\xd6\xc1\x0f\xf0\x2f\x58\x0d\x1b\x61\x15\xe1\xf0\x05\xfc\x13\xb6\x41\x13\xfc\x04\x3f\xc2\x4d\xd8\x05\xcf\xc1\x0d\x78\x1e\xbe\x83\xa7\x60\x07\x5c\x83\xd3\xb0\x13\xbe\x27\x3a\xf8\x33\xd1\x13\x1f\xe2\x0b\x57\xe0\xaf\xc4\x8f\xf8\x83\x02\xcd\x24\x00\xf6\x91\x40\xd2\x81\x74\x24\x9d\x48\x10\x09\x86\xcb\xf0\x15\x7c\x0a\x9f\xc1\xe7\xf0\x25\x7c\x0c\x7f\x21\x9d\x49\x17\xd2\x95\x74\x23\xdd\x49\x0f\xd2\x93\xdc\x47\x7a\x91\xde\xa4\x0f\xe9\x4b\xfa\x91\xfe\xc4\x40\x42\xc8\x00\x62\x24\x03\x61\x3b\x09\x25\x61\x64\x10\x19\x4c\x86\x90\x70\x12\x41\x4c\x24\x92\x44\x91\xa1\xb0\x95\x44\x93\x18\x12\x4b\xe2\x48\x3c\x49\x20\x89\x64\x18\x49\x22\xc3\xc9\x08\x32\x92\x24\x93\x51\x64\x34\xb9\x9f\xa4\x90\x54\x62\x26\x16\x92\x46\xac\x24\x9d\x8c\x21\x63\xc9\x38\x32\x9e\x64\x90\x4c\x32\x81\x64\x91\x89\x24\x9b\x4c\x22\x93\xc9\x14\x92\x43\xa6\x92\x69\x64\x3a\xc9\x25\x79\x64\x06\x79\x80\xcc\x24\x0f\x92\x59\x64\x36\xc9\x27\x36\x32\x87\x14\x90\x42\x62\x27\x45\x64\x2e\x29\x26\x25\x64\x1e\x99\x4f\x4a\x49\x19\x29\x27\x15\xa4\x92\x3c\x44\xaa\x48\x35\xa9\x21\xb5\x64\x01\x59\x48\x16\x91\xc5\x64\x09\x79\x98\x2c\x25\x8f\x90\x65\xe4\x51\xb2\x9c\x3c\x46\x56\x90\xdf\x91\xc7\xc9\x13\x64\x25\x79\x92\xac\x22\x4f\x91\x3a\xf2\x34\x79\x86\xac\x26\x6b\xc8\xb3\xe4\x39\xf2\x3c\x59\x4b\xd6\x91\xf5\xe4\x05\xb2\x81\x6c\x24\x9b\xc8\x66\xb2\x85\x6c\x25\xf5\xa4\x81\x6c\x23\xdb\xc9\x0e\xb2\x93\xec\x22\xbb\xc9\x1e\xb2\x97\xec\x23\xfb\x49\x23\x39\x40\x9a\xc8\x41\x72\x88\x1c\x26\x47\xc8\x51\xa2\x90\x66\xd2\x42\x8e\x91\xe3\xe4\x04\x39\x49\x4e\x91\xd3\xe4\x45\x72\x86\xbc\x44\x5e\x26\xaf\x90\x57\xc9\xef\xc9\x59\xf2\x07\xf2\x1a\x79\x9d\x9c\x23\x6f\x90\xf3\xe4\x8f\xe4\x4d\xf2\x16\x79\x9b\xbc\x43\x2e\x10\x87\xd8\x67\xd7\x02\xc7\xc8\x7b\x70\x12\x4e\xc1\x39\xf2\x3e\x1c\x87\x13\xf0\x06\xac\x80\xd7\xe0\x49\xf2\x01\x1c\x84\xf3\xf0\x2a\xfc\x1e\x5e\x26\x7f\x22\x1f\x92\x8f\xc8\x25\xf2\x67\x72\x99\x7c\x4c\x3e\x81\x67\xc8\xa7\xe4\x33\xf2\x39\xf9\x82\xfc\x05\x36\xc1\x16\xd8\x0c\xff\x80\xbd\xb0\x16\xea\x61\x3f\x3c\x0b\xeb\xe1\x05\x78\x91\x7c\x49\xbe\x22\x57\xc8\x5f\xc9\xd7\xe4\x6f\xe4\x1b\xf2\x3f\xe4\x2a\xf9\x3b\xb9\x46\xbe\x25\xd7\xc9\x77\xe4\x7b\xf2\x0f\x72\x83\xfc\x93\xfc\x40\xfe\x45\x7e\x24\x3f\x91\x9b\xe4\xdf\xe4\x67\xf2\x1f\x72\x8b\xfc\x42\x6e\x93\x3b\xc4\x49\x5c\x14\x28\xa1\x94\x32\xca\xa9\x8e\xea\xa9\x0f\xf5\xa5\x7e\xd4\x9f\x06\xd0\x40\xda\x81\x76\xa4\x9d\x68\x10\x0d\xa6\x9d\x69\x17\xda\x95\x76\xa3\xdd\x69\x0f\xda\x93\xde\x47\x7b\xd1\xde\xb4\x0f\xed\x4b\xfb\xd1\xfe\xd4\x40\x43\xe8\x00\x6a\xa4\x03\x69\x28\x0d\xa3\x83\xe8\x60\x3a\x84\x86\xd3\x08\x6a\xa2\x91\x34\x8a\x0e\xa5\xd1\x34\x06\x0e\xd1\x58\x1a\x07\x7f\xa7\xf1\x34\x81\x26\xc2\x61\x78\x0b\xfe\x08\x47\x60\x0e\x14\xd0\x61\x50\x08\xef\x80\x1d\xde\x84\xb7\xe1\x5d\xb8\x00\x0e\xb8\x08\x45\xf0\x27\x78\x0f\xde\x87\xa3\x30\x17\x2e\xc1\x87\xf0\x11\x14\xc3\xb7\x30\x0f\x4a\x60\x3e\x94\x41\x29\x94\xd3\x24\xa8\x80\x87\xa0\x52\x78\x31\xd5\xbf\x2f\x80\x85\xb0\x08\x96\xc0\x62\x78\x18\x1e\x81\xa5\xf0\x28\x2c\x83\xe5\xf0\x18\x5c\x87\x33\x74\x38\x1d\x41\x47\xd2\x64\x3a\x8a\x8e\x86\x3b\xe0\xa4\xf7\xd3\x14\x9a\x4a\xcd\xe0\x22\x40\x2d\x34\x8d\x5a\x69\x3a\x1d\x43\xc7\xd2\x71\x74\x3c\xcd\xa0\x99\x74\x02\xcd\xa2\x13\x69\x36\xfc\x0c\xff\xa1\x93\xe8\x64\x3a\x85\xe6\xd0\xa9\x74\x1a\x9d\x4e\x73\x69\x1e\x9d\x41\x1f\xa0\x33\xe9\x83\x74\x16\x9d\x4d\xf3\xa9\x8d\xce\xa1\x05\xb4\x90\xda\x69\x11\x9d\x4b\x8b\x69\x09\x9d\x47\xe7\xd3\x52\x5a\x46\xcb\x69\x05\xad\xa4\x0f\xd1\x2a\x5a\x4d\x6b\x68\x2d\x5d\x40\x17\xd2\x45\x74\x31\x5d\x42\x1f\xa6\x4b\xe9\x23\x74\x19\x7d\x94\x2e\xa7\x8f\xd1\x15\xf0\x0b\xdc\xa6\xbf\xa3\x8f\xc3\xd7\xf0\x37\xfa\x04\x5d\x49\x9f\xa4\xab\xe8\x53\xb4\x8e\x3e\x4d\x9f\xa1\xab\xe9\x1a\xfa\x2c\x7d\x8e\x3e\x4f\xd7\xd2\x75\x74\x3d\x7d\x81\x6e\xa0\x1b\xe9\x26\xba\x99\x6e\xa1\x5b\xe1\x25\x5a\x4f\x1b\xe8\x36\xba\x1d\xbe\x81\xff\xa1\x3b\xe8\x4e\xba\x8b\xee\xa6\x7b\xe8\x5e\xba\x8f\xee\xa7\x8d\xf4\x00\x6d\xa2\x07\xe9\x21\x7a\x98\x1e\xa1\x47\xa9\x42\x9b\x69\x0b\x3d\x46\x8f\xd3\x13\xf4\x24\x3d\x45\x4f\xd3\x17\xe9\x19\xfa\x12\x7d\x99\xbe\x42\x5f\xa5\xbf\xa7\x67\xe9\x1f\xe8\x6b\xf4\x75\x7a\x8e\xbe\x41\xcf\xd3\x3f\xd2\x37\xe9\x5b\xf4\x6d\xfa\x0e\xbd\x40\x1d\xf4\x22\x7d\x97\xbe\x47\xdf\xa7\x1f\xd0\x3f\xd1\x0f\xe9\x47\xf4\x12\xfd\x33\xbd\x4c\x3f\xa6\x9f\xd0\x4f\xe9\x67\xf4\x73\xfa\x05\xfd\x0b\xfd\x92\x7e\x45\xaf\xd0\xbf\xd2\xaf\xe9\xdf\xe8\x37\xf4\x7f\xe8\x55\xfa\x77\x7a\x8d\x7e\x4b\xaf\xd3\xef\xe8\xf7\xf4\x1f\xf4\x06\xfd\x27\xfd\x81\xfe\x8b\xfe\x48\x7f\xa2\x37\xe9\xbf\xe9\xcf\xf4\x3f\xf4\x16\xfd\x85\xde\xa6\x77\xa8\x93\xba\x18\x30\xc2\x28\x63\x8c\x33\x1d\xd3\x33\x1f\xe6\xcb\xfc\x98\x3f\x0b\x60\x81\xac\x03\xeb\xc8\x3a\xb1\x20\x16\xcc\x3a\xb3\x2e\xac\x2b\xeb\xc6\xba\xb3\x1e\xac\x27\xbb\x8f\xf5\x62\xbd\x59\x1f\xd6\x97\xf5\x63\xfd\x99\x81\x85\xb0\x01\xcc\xc8\x06\xb2\x50\x16\xc6\x06\xb1\xc1\x6c\x08\x0b\x67\x11\xcc\xc4\x22\x59\x14\x1b\xca\xa2\x59\x0c\x8b\x65\x71\x2c\x9e\x25\xb0\x44\x36\x8c\x25\xb1\xe1\x6c\x04\x1b\xc9\x92\xd9\x28\x36\x9a\xdd\xcf\x52\x58\x2a\x33\x33\x0b\x4b\x63\x56\x96\xce\xc6\xb0\xb1\x6c\x1c\x1b\xcf\x32\x58\x26\x9b\xc0\xb2\xd8\x44\x96\xcd\x26\xb1\xc9\x6c\x0a\xcb\x61\x53\xd9\x34\x36\x9d\xe5\xb2\x3c\x36\x83\x3d\xc0\x66\xb2\x07\xd9\x2c\x36\x9b\xe5\x33\x1b\x9b\xc3\x0a\x58\x21\xb3\xb3\x22\x36\x97\x15\xb3\x12\x36\x8f\xcd\x67\xa5\xac\x8c\x95\xb3\x0a\x56\xc9\x1e\x62\x55\xac\x9a\xd5\xb0\x5a\xb6\x80\x2d\x64\x8b\xd8\x62\xb6\x84\x3d\xcc\x96\xb2\x47\xd8\x32\xf6\x28\x5b\xce\x1e\x63\x2b\xd8\xef\xd8\xe3\xec\x09\xb6\x92\x3d\xc9\x56\xb1\xa7\x58\x1d\x7b\x9a\x3d\xc3\x56\xb3\x35\xec\x59\xf6\x1c\x7b\x9e\xad\x65\xeb\xd8\x7a\xf6\x02\xdb\xc0\x36\xb2\x4d\x6c\x33\xdb\xc2\xb6\xb2\x7a\xd6\xc0\xb6\xb1\xed\x6c\x07\xdb\xc9\x76\xb1\xdd\x6c\x0f\xdb\xcb\xf6\xb1\xfd\xac\x91\x1d\x60\x4d\xec\x20\x3b\xc4\x0e\xb3\x23\xec\x28\x53\x58\x33\x6b\x61\xc7\xd8\x71\x76\x82\x9d\x64\xa7\xd8\x69\xf6\x22\x3b\xc3\x5e\x62\x2f\xb3\x57\xd8\xab\xec\xf7\xec\x2c\xfb\x03\x7b\x8d\xbd\xce\xce\xb1\x37\xd8\x79\xf6\x47\xf6\x26\x7b\x8b\xbd\xcd\xde\x61\x17\x98\x83\x5d\x64\xef\xb2\xf7\xd8\xfb\xec\x03\xf6\x27\xf6\x21\xfb\x88\x5d\x62\x7f\x66\x97\xd9\xc7\xec\x13\xf6\x29\xfb\x8c\x7d\xce\xbe\x60\x7f\x61\x5f\xb2\xaf\xd8\x15\xf6\x57\xf6\x35\xfb\x1b\xfb\x86\xfd\x0f\xbb\xca\xfe\xce\xae\xb1\x6f\xd9\x75\xf6\x1d\xfb\x9e\xfd\x83\xdd\x60\xff\x64\x3f\xb0\x7f\xb1\x1f\xd9\x4f\xec\x26\xfb\x37\xfb\x99\xfd\x87\xdd\x62\xbf\xb0\xdb\xec\x0e\x73\x32\x17\x07\x4e\x38\xe5\x8c\x73\xae\xe3\x7a\xee\xc3\x7d\xb9\x1f\xf7\xe7\x01\x3c\x90\x77\xe0\x1d\x79\x27\x1e\xc4\x83\x79\x67\xde\x85\x77\xe5\xdd\x78\x77\xf8\x37\xef\xc1\x7b\xf2\xfb\x80\xf3\xac\xa9\x99\x99\xfa\x32\x5b\x41\x55\x45\x79\xc7\x4a\x7b\x55\x49\x45\x61\x81\xbd\xbc\xc6\x5e\x65\x2f\xe4\x63\xe7\xd8\xaa\xe8\xb8\xf1\xb4\x64\x5e\xe0\xfc\xb9\x55\x76\x7b\x79\xa9\xad\xbc\xb0\xa4\x80\x59\xcb\xe7\x32\x7b\xf9\x5c\x5d\x69\x45\xf9\xdc\x6a\xdd\xc4\xe2\x8a\xaa\x72\x5d\x85\xf8\x3b\x55\xfc\xad\x55\xff\xfa\xd4\x96\x97\x44\xc7\xc6\x0d\xd3\x55\x17\x14\x2f\xb4\xc9\xab\xf4\x38\xbf\xb9\x55\xb6\x05\xf6\x82\x8a\xb2\x39\x7e\xb6\x82\xda\x1a\x19\xaa\x29\x29\x2d\x14\x21\x5e\x5c\x51\x31\x5f\xb0\xc6\x45\xa7\xfb\x16\x56\xd4\xcc\xb1\x97\x56\x2c\xd4\xd5\x54\x94\x57\x54\x77\x28\x2c\xb1\x57\xd9\xab\x4b\xaa\xc5\x95\x9f\xad\xbc\xa2\xc6\x5e\x6a\x2f\xb1\xe9\xc6\xd8\xca\xca\x6c\xba\x34\x7b\x69\x8d\x4d\x97\x53\x6c\xaf\xb1\xe9\x33\x6d\x65\x73\x0a\x6d\x34\xb7\x84\x66\x97\xe8\xa6\x94\xcc\x2d\xb3\xb1\xec\xe2\x12\x96\x5d\x5d\xa2\xb3\x95\x56\x16\xdb\xf8\x1c\x7b\x8d\x4d\x37\x57\xa4\x2b\x54\xd3\xf9\xd8\x2b\xab\x4b\x4a\x2b\xca\xf9\x12\x7b\x8d\x8d\xa9\x91\x35\x2a\x10\x2f\xa9\xa8\xb1\xe9\x4b\x25\xda\xa2\x12\x56\x55\x5c\xa1\xaf\x56\xe1\x62\x74\x82\xb0\x1a\x5b\xad\x4f\xad\x4c\xca\x2a\x8b\x4b\x58\x65\x75\x89\xae\xa2\xcc\x3e\x57\x66\x37\x2e\x2d\x06\x69\x2c\xd2\x44\x41\xe3\xa3\x63\x91\xc6\x23\x1d\x8e\x34\x15\xa9\x19\x69\xba\xa4\x31\x31\x48\x91\x3f\x06\x71\x62\x86\x21\x4d\x42\x8a\xe9\x62\xe3\x90\x22\x5f\x2c\xf2\xc5\x22\x5f\x2c\xca\x8b\x45\x79\xb1\xee\x74\x16\xa4\x69\x48\xad\x48\x51\x8f\x38\xd4\x23\x0e\xf5\x8f\x43\x39\x71\xa8\x57\x1c\xca\x8b\x43\x79\x71\x28\x2f\x0e\xe5\xc4\xa1\x9c\x38\x94\x13\x87\x72\xe2\x10\x3f\x1e\x71\xe3\x11\x2f\x1e\xf1\xe2\x11\x2f\x1e\xf1\xe2\x51\xff\x78\xc4\x8d\x47\xdc\x78\xc4\x8d\x47\xdc\x78\xd4\x3f\x1e\xf1\x13\x10\x3f\x01\xf1\x13\x10\x27\x01\x71\x12\x10\x27\x01\xf9\x13\xa3\x91\x62\xbe\x13\x31\xbf\x89\x98\x3e\x31\x01\x29\xea\x99\x88\x7a\x26\xa2\x9e\x89\x88\x9f\x88\xf8\x89\x88\x9f\x88\x7a\x26\xa2\x9e\x89\xa8\x67\x22\xca\x1d\x86\x7a\x0e\x43\x79\xc3\x50\xde\x30\x94\x37\x0c\xf1\x87\x21\xfe\x30\xc4\x1f\x86\xf8\xc3\x10\x7f\x18\xe2\x0f\x43\xfc\x61\x88\x9f\x84\xf9\x4a\xc2\x7c\x25\xa1\xbc\x24\x94\x97\x84\xf2\x92\x50\x5e\x12\xe6\x2f\x09\xe5\x26\xa1\xdc\x24\xc4\x4d\x42\xdc\xe1\x88\x3b\x1c\x71\x87\x23\xce\x70\xc4\x19\x8e\x7a\x0d\x47\xbd\x52\x91\x3f\x15\xf9\x53\x91\x3f\x15\xf9\x53\x51\x6e\x2a\xda\x35\x15\xe5\xa7\xa2\x7c\x33\xf2\x9b\x91\xdf\x8c\xf1\x66\x77\x3c\xda\xc5\x8c\x72\xcd\x28\xd7\x82\xf9\xb4\x60\x7a\x0b\xe2\x5b\x30\x7d\x1a\x52\x2b\xea\x67\x45\xfd\xd2\x11\x2f\x5d\xda\x39\x21\x3a\x1a\x69\x2c\xd2\x38\xa4\xf1\x48\x13\x90\x26\x22\x1d\x86\x34\x09\xe9\x70\xa4\xa9\x48\xdd\xb8\x16\xa4\x69\x48\xad\x48\xa5\x9d\x13\x62\x84\xdc\xd8\xe8\x68\x37\x8d\x41\x1a\x8b\x34\x0e\x69\x3c\xd2\x04\xa4\x89\x48\x87\x21\x4d\x42\x3a\x1c\x69\x2a\x52\x73\x87\xda\xf2\x42\x7b\x55\x75\x41\x45\x95\xbd\x70\x4e\x69\x87\x87\x6a\x2b\xd4\x1e\x61\x81\xbd\xaa\xda\x5e\x28\x79\x62\x11\x73\x58\xbc\x5f\x79\x75\xad\xe8\x38\xaa\x78\x69\x49\x95\x4d\x5f\x69\xaf\x56\x7d\xa7\xb5\xb6\xaa\x42\xb0\xc4\xa0\xf8\x98\x98\x38\xa4\x89\x7e\xf6\xea\x9a\x92\x32\x5b\x8d\xbd\xd0\xaf\xa2\xdc\x6e\x2f\x99\x5b\x5c\x53\x1c\x58\x53\x5c\x65\xc7\x70\x75\x40\x51\xc9\x02\x77\x38\xb0\xda\xbe\xc0\x5e\xee\x8e\x28\xa8\x28\x2b\xb3\xd9\x0a\xd4\x3e\x4a\x45\x4b\xb7\xa6\x0b\xa3\xa4\xa7\xa7\x5b\x90\xa6\xf9\x2d\xb1\x57\x55\x44\x55\x97\x15\x54\xfa\xd4\x2c\xac\x88\xaa\xae\xad\xec\x52\x50\x52\x55\x50\x5b\x56\x54\x6a\x5f\xa4\xf5\x35\x9d\x5b\xef\xa9\xbd\x8e\x7a\xcb\x83\x4d\xeb\xa6\x3c\xee\x69\x1d\x56\xc7\x39\xaa\x2d\x34\x96\x60\x0f\x9d\xaa\x2a\x6a\x6c\x35\x76\x7d\xaa\x10\xaf\x37\x4b\x62\x91\x24\x4d\x12\xab\x24\xe9\x92\x8c\x91\x64\xac\x24\xe3\x24\x19\x2f\x49\x86\x24\x99\x92\x4c\x90\x24\x4b\x92\x89\x92\x4c\x92\x64\xb2\x24\x53\x24\xc9\x91\x64\xaa\x24\xd3\x24\x99\x2e\x49\xae\x24\x79\x92\xcc\x10\xa4\x83\xc8\x8f\xdb\x0a\xbe\x15\xe5\x76\x71\xdb\x57\x58\xaf\xac\xa0\xd2\x5f\x14\x8d\x08\xfa\x15\x55\xd4\x56\x61\xa8\x64\x01\xf2\x55\x97\x2c\x92\x7c\xa2\xa4\x64\x50\x94\x97\x64\x2c\x2f\x71\x03\xca\x82\xa9\xad\xf4\x11\x22\x6a\x2b\xa5\x21\x3d\x06\x02\x52\x4e\x6d\xa5\xaf\x14\xa3\x06\x84\x94\xda\x4a\x1f\x21\xa4\xb6\xd2\x0f\x65\xd4\x56\xfa\xa1\x88\xda\x4a\x5f\x29\xa1\xb6\xd2\xb7\xa0\xaa\xa2\xba\x7a\x8e\xad\xca\xaf\xaa\xa4\x7c\xae\xc0\xf5\x2b\xb4\x55\x97\xd8\x2a\x16\x95\xd8\xa4\x30\xad\xfc\x03\x0a\x16\x57\x95\x94\x96\x96\x14\xd4\x94\x14\x04\xb9\xc3\xaa\x0d\x4a\xed\x45\x35\x81\x9e\x37\x74\x73\xa3\x6c\xa5\x35\x1d\x4b\x6d\x55\x73\xed\x55\xa2\x1a\xaa\x37\x4b\xd4\x9b\xba\x52\xf5\xaf\xb0\x58\x69\x79\x6d\x19\x1a\x40\x0d\xea\xb3\x65\x0d\x2c\x28\x96\x8c\x93\xc5\xdf\x0c\xf5\x2f\x2f\x89\x2a\xa9\xe1\xa5\x51\x25\x35\xc2\x0e\xb6\xd2\x1a\xbd\xad\x46\x25\x1d\x6c\x65\x95\xf6\xaa\x6a\x5b\x79\xa1\x7a\xe5\x3f\xc6\x5e\x55\x66\x2b\x2f\x9c\x53\x5a\xdd\xa9\x35\x28\x0b\xcc\xad\x9e\xc8\x92\x70\x0a\xd1\xa9\x69\xfa\xb4\x82\xaa\x0a\x5b\x0d\x2f\x9e\x63\xab\xe2\x39\xea\x9f\x9a\x39\xb6\x2a\xff\x54\xcd\x16\xfe\x36\x2d\xe8\x93\x2a\x87\x7c\x3e\x36\x49\xf5\xa9\x02\x4a\x6f\x93\x88\xa9\x15\x73\x2b\xca\xed\xf3\x7d\x6c\x92\x06\x58\x5a\x5b\x41\x40\x41\x6b\x58\x48\x8e\x41\xf7\x15\x13\x6d\xd6\xa7\x15\xd8\x54\xb0\x42\x41\x7c\xac\x28\xc3\x8e\x32\xac\x52\x86\x5d\x10\x7f\x6b\x61\x45\x8d\x6c\x34\xfe\x76\x2d\xe8\x63\x45\xc9\x76\x49\xf5\x56\x89\x68\x17\x24\x60\x8c\x87\x1e\x73\xdb\xea\x11\x1b\x8d\x34\x26\x70\x8c\x47\x93\x0c\x9c\xeb\x71\x11\x30\xd6\x03\xa1\xb8\x35\xac\x1f\x27\x2a\x86\xbe\x44\x10\x9f\x71\xa8\x79\x09\x6a\x3e\x4e\x6a\x5e\x22\xad\x33\x0e\x75\x2c\x91\xd4\x7f\x9c\xa6\x7e\xc0\x78\x0f\xf8\x79\xad\xe1\xc0\x0c\x4f\x85\xe6\x7b\x5c\xe8\x33\x45\x79\xe8\x4b\x05\x09\xcc\xf4\xe4\x2b\xf5\xe2\x93\x86\x28\x15\x84\x67\x16\x56\xd4\xf0\xd2\xc2\x8a\x1a\x7d\x96\x4c\x5f\x2e\xd3\x67\x79\xa6\x2f\xf7\x4c\x9f\x25\xd3\x97\x4b\x43\x96\xdb\x2a\x2b\xaa\x6b\xaa\x2a\x2a\x8b\xed\x3e\x13\x31\xb3\x15\x98\xd9\x89\x32\xb3\x15\x82\x74\x98\x58\x5c\x5b\x3e\xd7\x56\x55\x5b\x56\x6a\xab\xad\xe9\x50\xe1\x79\xa5\x9f\x2c\x65\x57\x49\xd9\x93\x3d\x65\x57\x79\xca\x9e\x2c\x65\x57\x49\x32\x45\xa6\xaa\x16\x24\x60\x8a\x87\xc5\xaa\xdb\x14\x69\x2c\x8e\x6c\x63\x63\x86\x23\x4d\x45\x2a\x7b\xca\x98\xc4\xd8\x40\xa4\xb2\xb5\xc9\x8b\x38\x7d\x8e\x94\x54\x23\xc9\x54\x59\xb6\xb5\xb2\x6c\xa7\x62\x76\x6b\x31\xbb\x53\x65\x76\x6b\x05\xd1\x4d\x55\x9b\x88\xae\x56\xfd\xdb\x61\xaa\x57\xd6\x6b\x3d\xaf\x7c\xa6\x62\x1d\xa8\xc5\x16\x32\xdd\x23\x1b\x0b\x3d\xc2\x79\x1e\xe1\xc5\x1e\xf5\x6d\x86\x34\xc2\x12\xd9\x30\x67\xb4\xb6\x85\x25\xad\x6d\x21\xd5\x2a\xdb\xaa\x4d\xba\xc8\x80\x89\xd5\xa5\xb6\xea\x62\x19\xae\xf0\x08\xcb\x76\x2f\x5d\xac\xb5\xa6\x58\x7a\x5d\xd5\x01\x88\x50\x40\xaa\xe8\xa9\x30\x2c\x52\x88\x70\x50\x6a\xab\x3a\x18\x29\x0c\x24\xc2\x1d\x53\xdd\x8f\x5b\xd2\x9d\x0b\x27\x22\x82\x9d\x5a\xfd\x89\xf4\x45\x96\x02\x7b\x61\x49\x69\xa9\x4d\x62\x58\x3d\x84\x59\x3d\x84\x59\xdb\x08\xeb\x68\xf5\x12\x10\x30\xce\x23\xdd\x38\x8f\x74\xe3\xda\xa6\x1b\xe7\x9d\x2e\xab\x55\xe7\x80\x89\x1e\x18\x13\x3d\x30\x26\xb6\xcd\xe8\x44\x8f\x8c\x4e\xf4\xc6\x9b\xea\x81\x31\xd5\x03\x63\x6a\x5b\x3d\xa6\x7a\xa7\xcb\x6b\xe5\x0d\x44\xdf\x8a\x46\x15\xf5\x0a\x23\x64\x65\x91\x11\x16\x0f\x74\x4b\x1b\xf4\x40\x74\xac\xc8\x29\xaa\xb1\x0c\xa7\xb5\x86\x03\xad\x9e\x72\xac\xad\x72\x3a\xb5\xba\x56\x64\xf4\x94\x6b\x6d\x45\x08\x1a\xd3\xd6\x32\x63\x3c\xb4\x45\xa7\x2a\x2e\x82\x3d\x3d\xaa\x4c\x3b\xb6\x6d\xda\x71\xad\x56\x0d\x1c\xe7\xa9\xda\x38\x0f\xd0\x71\x1e\xaa\x74\x1a\xe7\xad\x67\xd0\xf8\x36\x90\xc1\x19\x6d\xa5\x06\x64\xb6\x5a\x2d\x38\xb3\x7d\x6c\x6b\xde\xfc\x54\x17\x89\x75\xc4\x23\x4d\x56\xbb\x34\x59\x1e\x16\x9d\xe8\xa9\xf6\xc4\x56\xb5\x3b\x7b\x79\x41\x19\x3d\xd9\x03\x75\x72\x3b\xd4\xc9\x1e\x65\x36\xc5\xa3\xa4\xa7\xb4\xc9\x62\x87\x29\x5e\xcd\x67\x4a\x6b\xb2\xe0\x9c\x76\xa0\x39\x1e\xa0\x53\x3d\xac\x3d\xd5\x53\xed\xa9\xad\x6a\xfb\x4f\xd5\x9a\x6d\xe7\xa9\xed\x72\x10\x38\xd5\xa3\x2c\x82\xa6\xb7\x51\x2c\x28\xaf\x6d\x8d\xcf\xf3\xae\xf1\x33\x5a\x73\xd5\x69\x86\x77\x41\x06\xcc\x68\x55\xd4\x3f\xb5\xb4\xb2\xd8\x26\x26\x6d\x02\xad\x72\xae\x44\x5c\xf8\x5a\x6b\xe4\x5d\xbf\x71\x15\x18\x0a\x9c\x58\x56\xa2\xe6\x43\x5e\x4c\xf5\x60\xf6\x9f\x58\x66\x9f\x2b\x99\x82\x4b\x2a\x6a\x6c\x5e\x73\x41\x3a\x21\x81\x9b\xed\x35\x36\x1f\x94\xc0\x67\xd8\x6b\x6c\xcc\x5a\x63\xe3\x2a\xb8\x2e\xc3\x56\x59\x69\xa3\x13\x6a\x69\x56\xad\x0f\xca\x60\x93\x8b\x2b\x58\x8e\xad\xd6\x07\xc5\x30\x4b\x71\x49\xe0\x38\x0f\xe8\x4e\x18\xe1\xbe\xf6\xb7\xb5\xe6\xc3\xee\x99\x0f\xbb\x3b\x1f\x25\xee\x7c\x74\xad\xf5\x4e\x2a\xb5\x9c\xaf\x2a\xe1\x53\x21\xc5\x8b\x9e\x2a\xce\x6c\xa1\xe5\xb5\xac\xa0\xb8\x24\xd0\x33\x53\x9d\xda\x24\x0f\xac\xf0\x34\x4b\xad\xa7\x59\x2a\x34\xb3\xc8\x27\xd3\x68\x7c\x52\xc5\x27\xd1\x78\x7c\x02\x8d\x8f\x76\xcf\x3c\xe1\x93\x6e\xb4\x7b\xc6\xc8\x3d\xe3\x84\x4f\xc8\xf8\xa4\x19\x1f\x83\x4f\xbe\x31\x38\x33\x10\x83\x78\x31\x88\x87\xfd\x71\x7c\x0c\xa6\x8b\xc1\x27\xeb\x18\x77\x7a\x9c\x11\xc0\x21\x59\x7c\x2c\xea\x15\x8b\x78\xb1\xf8\xe4\x1d\x8b\x78\x71\xc8\x17\xe7\xbe\x46\xfc\x38\xf7\x0c\x0e\xc6\xc7\x23\x4e\x3c\xea\x13\x8f\xfc\x09\x78\x3f\x01\xef\x27\xb8\xef\x63\xbe\x13\x30\xdf\x09\x98\xef\x04\xd4\x3b\xc1\xaa\x9f\x2e\x1c\xbe\x7e\xa1\x24\xd3\x65\xb7\xbc\x50\x3e\x3b\x4c\x77\x17\x81\xdf\x42\x77\x48\x9f\x27\x19\x17\x4b\x52\x56\x52\x2e\xc6\x32\xf6\x82\x8a\xf2\x42\x3f\xfb\xa2\x82\x52\x5b\x59\xe1\x9c\x52\x39\x10\x49\x97\x5a\xc7\xca\xf9\x87\x18\xab\xcc\x4d\x8c\x55\xce\x77\xc5\x58\xe5\xf3\x7b\x8c\x55\x96\x5a\x4c\xba\x7b\xde\x0a\xe7\x15\xe2\xf1\xf9\x3f\x3e\x01\xaf\x13\xdc\xf3\x39\x78\x3d\x0c\x73\x3d\x0c\x73\x39\x0c\x73\x39\x1c\x73\x39\x1c\xad\x98\x8a\xa5\x9c\x8a\xf3\x43\xa9\x68\xd5\x54\x2c\x25\x0b\xe2\x59\x10\xcf\x82\xa5\x64\xc1\xf8\x34\x8c\xc7\xf9\xcc\x78\x9c\xcf\x8c\x4f\x43\x6b\xa7\x61\x69\xa6\xa1\xd5\xdd\xf3\x9c\x69\xa8\x4f\x1a\xca\x4f\x43\x7d\xd2\x50\x8f\x34\x2c\x85\x34\xcc\x57\x1a\xea\x95\x86\x72\xad\x28\xc7\x8a\x72\xac\x28\xc7\x8a\x72\xac\x28\xc7\x8a\x72\xac\xee\x79\x1b\x94\x63\x45\xb9\x56\x94\x67\x45\x79\x56\x94\x67\x45\x79\x56\x94\x87\xe5\x15\x9f\xee\x9e\xef\x41\xf9\xe9\x28\x3f\x1d\xe5\xa7\xa3\xfc\x74\x94\x97\x8e\xf2\xd2\x11\x3f\xdd\x3d\x6f\x23\x71\x12\xb0\x15\x25\xc8\x56\x14\x63\x4d\xc5\x72\x97\xf3\x5e\x31\xd6\xd4\x58\xa4\xee\xf8\x78\xa4\x09\x48\x13\x91\x0e\x43\x9a\x84\x74\x38\xd2\x54\xa4\x66\xa4\x58\xdf\x52\xd3\x90\x62\xbd\x4b\xc5\x7a\x67\x46\xf9\x66\x94\x6f\x46\xf9\x66\x94\x6f\x46\xf9\x66\x94\x6f\x46\xf9\x66\x94\x6f\x46\xf9\x66\x94\x6f\x46\xf9\x66\x94\xef\xae\xef\x66\x94\x6f\x46\xf9\x66\x94\x6f\x41\xf9\x16\x94\x6f\x41\xf9\x16\x94\x6f\x41\xf9\x16\x94\x6f\x41\xf9\x16\x94\x6f\x41\xf9\x16\x94\x6f\x41\xf9\x16\x94\x6f\x41\xf9\x16\x94\x6f\x41\xf9\x16\x94\x9f\x86\xf2\xd3\x50\x7e\x1a\xca\x4f\x43\xf9\x69\x28\x3f\x0d\xe5\xa7\xa1\xfc\x34\x94\x9f\x86\xf2\xd3\x50\x7e\x1a\xca\x4f\x43\xf9\x69\x28\x3f\x0d\xe5\xa7\xa1\xfc\x34\x94\x6f\x45\xf9\x56\x94\x6f\x45\xf9\x56\x94\x6f\x45\xf9\x56\x94\x6f\x45\xf9\x56\x94\x6f\x45\xf9\x56\x94\x6f\x45\xf9\x56\x94\x6f\x45\xf9\x56\x94\x6f\x45\xf9\x56\x94\x9f\x8e\xf2\xd3\x51\x7e\x3a\xca\x4b\x47\x79\xe9\x28\x2f\x1d\xe5\xa5\xa3\xbc\xf4\xe1\xfa\x42\xf1\xa8\xe1\x23\xa6\xfe\xdc\xee\x64\x38\x36\xb3\xe1\x6e\xf7\x82\xcd\x26\x15\x9b\x4d\x2a\x36\x8b\x54\x6c\x76\x66\x8c\x37\x63\xbc\x19\x9b\xb1\xd9\x3d\x0d\x8b\x38\x16\x77\x73\xc2\xf8\x74\xb7\x7b\xc3\xeb\xe1\x78\x6d\xc6\x66\x6c\xc6\x66\x6c\xc6\xf4\x49\x28\x2f\xc9\x3d\xdd\x8e\x72\x87\xbb\x29\xca\x1f\x8e\xe9\x87\xbb\xa7\xc7\x31\x3f\x49\x6e\x3d\xb0\x79\x5b\xf0\xbe\xc5\x3d\x8d\x8c\xe9\x2c\xe8\x0e\x2c\xee\x7c\xa0\x1b\x31\xbb\xdd\x08\xf2\xa5\xbb\xa7\x6f\x71\xba\x16\x3b\x53\x9c\xb6\x8d\x8e\x8e\x1e\x2e\xdf\xe5\x27\x2e\x17\x74\xba\xdb\x7e\x9e\x76\xff\x16\xc2\x42\xb0\x83\x5d\xa7\x00\xf0\x11\x00\xce\x7c\xdf\x39\x77\x3e\xd2\x9d\x73\x5d\xe7\x59\xae\xeb\xce\x0c\x71\x26\x80\x07\x8f\x4e\xe1\x23\x5c\xd7\x9d\x36\x37\x97\xee\x0d\xc1\x67\x6b\xc7\xf7\x85\x37\x9a\xee\x0b\x0f\xbc\x58\x88\x55\xc0\x64\x50\x60\x6a\xae\x35\xcf\x60\xc8\x38\x0d\x1d\x27\x65\x28\xfa\x29\x33\x72\x95\xf8\xde\xca\xe0\xbc\xfc\x22\x43\xdd\xd4\x5c\x85\x86\xda\x5e\xf4\x05\x5f\x28\x28\x30\xce\xe9\x1d\x12\xa2\x40\x9e\x02\x16\x63\x5a\x0b\x10\xb0\xe4\x9b\x23\x15\x62\x52\x0c\xf9\x45\x91\x0a\x35\x19\x0a\x0d\xca\xd9\x6c\x85\x87\xcd\x68\x19\x4c\xfc\x2d\xd6\x02\xeb\xe4\x07\x72\x43\x8c\x21\xbd\xeb\x72\x0d\x4a\x76\x76\x6e\x88\x92\x92\xd7\xdb\xa0\x24\xa9\xa1\xa4\xbc\x3c\x43\xb3\x64\xb2\x15\x2a\x83\xb3\x73\x43\xf0\xca\xa0\x44\xab\xf1\xd1\x2a\xe7\xd9\xec\x5c\x43\x91\xa1\xae\xce\x66\x50\xfc\xb3\x73\xf3\x7b\x1b\x14\x83\x1a\xe7\xaf\x86\x12\xd5\x50\x62\x7e\xef\xfc\xbc\xbc\xbc\xde\x0a\x89\xc8\xcb\x33\x2a\x90\x9d\x6b\xcf\xcb\x8b\x54\x98\xc9\x60\x35\x28\x3c\xd4\x56\x68\x50\x74\x96\xec\x5c\x45\x67\x34\x2b\x7a\xa3\xb9\x77\x48\x48\x9e\x42\xf2\x23\x15\x6e\x32\x86\x18\x43\x0c\x85\xcd\xba\x39\x66\x83\x1a\x23\x85\xab\x7f\x15\x9e\x6f\x2d\x50\x58\x78\x88\x41\xd1\x5b\x0c\x75\x86\x3a\x85\x44\x34\x47\xeb\x42\x15\x1e\x36\x29\x37\x3f\xbb\xb7\x6d\x72\x5e\xae\x31\x2f\xc4\xa0\xa4\x4c\xc9\x55\x48\x44\x6f\x35\x53\x28\x39\x52\xd1\x99\x14\x1f\x4b\x44\x0b\x50\x69\x1a\xbd\x49\xf1\x31\x9a\x8d\x06\x05\x8c\x66\x9b\x42\xe7\x14\x29\xa4\x40\x21\xf9\x8a\x2e\x3c\x52\xf1\x31\x19\x54\x25\x03\x2c\x05\xa7\x39\xcc\x31\xa8\x08\x4a\x4a\x7e\x9e\xca\x92\x9f\x26\x94\xf4\x35\xb5\xf8\x04\x80\xc5\x6a\x0e\x0f\xd1\x8c\xed\x67\xf2\x36\xbe\xbf\x44\x21\x11\x46\x05\x2c\x0a\x0f\xcd\x37\x58\xeb\x8c\x36\xb5\x20\x84\xa5\xa0\xb7\x6a\x4d\xc5\xd0\x5b\x49\xd1\xec\xa3\xb0\x50\xa3\x2d\x4d\x8a\x08\xb8\x47\x72\x65\x60\x76\xae\x9a\x38\xe5\x6e\x89\x02\x4d\x22\x43\x2d\x01\xfe\xcc\x9a\x1b\xd2\xdb\x18\x92\x17\x1e\x12\xa9\x74\x30\x35\x53\x6a\x55\x0a\x6d\x69\x91\x4a\x47\x93\x42\xf2\x0d\x06\x25\xd0\x32\x5e\x4d\x6e\x50\x02\x8d\xe6\x3c\xa5\x83\x7a\x35\x39\xd7\xa0\x74\x30\x9a\xf3\x22\x95\x4e\x26\x83\x12\x24\x4c\x62\x38\xcd\xa1\xa0\xce\x68\x53\x3a\x5a\xf2\x0d\x75\xf9\x06\xa5\xa3\xd1\x6c\x8c\x54\x82\x4c\x19\x39\xb9\xcd\xbc\x30\x2d\x6f\xa0\xd2\xc1\x6e\x5c\x14\xa9\x04\x9b\x32\x26\xe5\x66\x4c\x91\x37\x7b\x87\xe4\x0d\x54\xba\x88\xfb\x9d\x4d\xcd\xd0\xc9\x32\x35\xb7\xb9\x53\x27\x8b\x42\x6c\x66\xa5\x53\x84\x5a\x49\x15\x1a\x6a\x6e\x0e\x54\xff\x74\xa0\xa1\x66\x85\x74\x37\x1a\x14\x16\x9a\x9d\xdb\xac\x1a\x4f\xe1\xa1\xe6\xba\x3a\x83\x10\x1b\x1e\x62\x54\x88\xcd\x1d\xee\x2d\xe3\xd5\x24\x34\x54\xdc\xc9\x53\x02\x2d\x63\x94\x0e\x96\x31\xf9\x0a\xf5\x2e\xaa\x7b\x14\x60\x33\x40\x17\x63\x9a\x42\x2c\x0a\x8c\x6e\x21\x84\x88\xb2\xea\x62\x82\x66\xa0\xd6\x9c\x5c\xa5\x93\xd1\x6c\xb0\x2a\x01\x46\xb3\xe2\x6f\x54\x78\xbe\xd9\x90\xaf\x10\xdb\x89\xa0\x20\x02\x1d\xc1\x6c\xae\xcb\x6f\xee\xac\x8f\x50\x6a\x23\x7a\x0f\xc8\x8b\x54\xba\x9a\x9a\xa1\x4b\x44\xa4\xd2\xcd\xd4\x4c\x54\xda\xdd\xd4\x4c\x55\xda\xc3\xd4\xcc\x54\xda\xd3\xd4\xcc\x55\x7a\x9f\xa9\x59\xa7\xd2\x5e\xa6\x66\xbd\x4a\x7b\x9b\x9a\x7d\x54\xda\xc7\xd4\xec\xab\xd2\xbe\xa6\x66\x3f\x95\x0e\x31\x19\xa2\x14\xf2\x60\xa4\x12\x2e\x02\x0f\x45\x2a\x11\x22\x50\x15\xa9\xf4\x33\x81\xd2\x21\xe2\xff\x42\xc7\xfe\xa6\x66\xe8\x17\x11\xa9\x18\x4c\xcd\x44\xa5\x21\xa6\x66\xaa\xd2\x01\xa6\x66\xa6\x52\xa3\xa9\x99\xab\x74\xa0\xa9\x59\xa7\xd2\x50\x53\xb3\x5e\xa5\x61\xa6\x66\x1f\x95\x0e\x32\x35\xfb\xaa\x74\xb0\xa9\xd9\x4f\xa5\x26\x93\x21\x59\x54\xb5\x48\x93\x21\x5f\x09\xca\x37\x58\x8c\x0a\xc9\xb7\x88\xe2\x20\xf9\x8a\x49\xad\x6f\x51\x26\x25\x32\x42\x89\x0c\x8f\x54\x86\x9a\x0c\x86\x31\x86\x7b\x94\x84\xd1\x96\x64\x54\xdd\xd8\x7f\xe5\xe8\x1d\x92\x17\xa9\x44\x6b\xc5\x43\xba\x2b\x43\xc3\x9b\x75\xa4\x9b\x35\x37\x3a\x4f\x64\x30\xc6\xd3\x32\xed\xa3\x63\x4d\x86\x04\xa1\x6f\x9c\x09\x14\x62\x6d\x2f\x44\x21\x11\x77\x15\xae\xde\x87\xee\xc7\x45\x17\x90\x36\xda\x98\xd4\x1c\x4b\xba\x85\x47\x2a\xf1\x26\x43\xb2\x61\xcc\x3d\xf4\x55\xc0\x62\x4b\x8a\x54\x12\x4c\x51\x3d\x92\x23\x95\xc4\x5f\x63\x55\x88\xa5\x20\x29\x52\x19\x66\x6a\xa6\xd0\x3d\xd4\x10\x65\x18\xa3\x36\x5e\x85\x86\x8e\xab\xab\x1b\x63\x1c\x63\xb4\x19\x72\xe7\xf4\x56\xdd\xa2\xd1\xdc\x92\x48\x48\xb7\xae\xe1\x91\x4a\x92\x49\x81\xee\x0a\x0f\x55\x78\xa8\x60\x51\xfc\x2c\x11\xf6\xba\x28\xa3\xc1\x90\x5c\x97\x14\xa9\x0c\x6f\x8d\x36\x44\x49\x0c\x85\x1b\xcd\x2a\x97\x41\xc9\x57\xdb\x7b\xca\xa4\xdc\x63\xd4\xc0\x0c\xbd\x8f\xd1\x30\xd6\x2b\xcf\xac\xfa\x40\x5f\x8b\xa1\xce\x28\xb8\x8d\xe9\xf9\x0a\xb7\xb4\x6d\x4a\xf9\xaa\x1f\x92\xce\x9e\x5a\xf2\x0b\x8d\x0a\xb3\xd8\x0a\xb3\x73\x15\x6a\xb1\xf5\x56\x98\x25\x5f\xf5\x41\x6d\xd3\xd8\x8c\x06\x83\xc2\xc3\x8c\xe9\xb6\xa4\xde\x46\xc5\xd7\x92\xae\xd0\x50\xc5\xd7\x22\xa4\xe4\x1b\xee\x26\xc4\x28\xbd\x1d\xb7\xe4\xab\xb6\xd7\x85\xda\x14\x5d\x3b\x54\x85\x87\xa9\x39\x0a\x15\x4a\x84\xe6\x17\x66\x4b\x2f\xd7\x2a\x2b\x2f\x52\x19\xa1\xda\xc0\x60\x30\x28\xba\x30\xb4\x81\x31\x39\x29\x52\x19\x29\x6e\x2b\xbe\x46\xb3\xc1\x60\x48\x37\x8e\x51\x85\xa9\xa5\x95\x2c\x4c\xa6\x66\x00\x2d\x0a\x39\xb9\x51\x86\x64\x63\x48\x6f\x55\x63\xbc\x69\x50\x75\x71\x9b\x5c\x1f\xaa\xe8\x42\xc7\x79\xf6\xbe\xb2\xa0\xee\x56\x83\xb1\x64\x8c\x6a\x35\x1e\x85\x1a\x58\xdc\x45\x93\xaf\x76\xcf\x6d\xb3\xe8\x2e\xca\xd1\x26\xa3\x21\x4a\xb5\x5a\xfa\xe4\x5c\x43\x72\x5e\x54\x73\x14\xe9\x1a\x11\xa9\xdc\xaf\xdd\xce\xf6\xbc\x9d\xe2\xcd\x7d\x57\x9e\x54\x93\x92\x14\x71\x57\x50\xb3\x49\x19\x1e\x51\x67\x30\x24\xab\x95\xa5\x2e\xe9\x2e\x3c\x0a\xb7\x44\x29\x51\x11\x91\x8a\x45\xab\x61\x6e\xeb\xaa\x95\xcb\x68\x48\x36\x44\x19\x93\x10\x2e\xcd\xd4\xec\xcb\x43\xcd\xff\x17\x55\x71\xcc\xff\x56\xed\x53\xd5\x57\xfd\x4b\xb2\x31\xa9\x77\x88\x47\x79\x87\xe4\xa1\x8e\x56\xd5\x18\xee\xfc\xa7\xab\xf9\x0f\x31\xa2\x01\x30\x1f\x5a\x96\xc7\x98\x14\xe8\x26\x1b\x67\x0b\xa8\xed\xb0\x4b\x94\x12\x1f\x1e\xa9\x8c\xbd\xc7\xfd\x71\xa6\x66\x20\x5d\xbb\x28\x09\xe1\x91\xca\x78\x93\x32\x2c\x3c\x52\xc9\x50\xad\x66\x35\x1a\xa2\x0c\xe9\x75\x46\x9b\xdb\x4e\x99\x26\xb5\x3a\x2a\x19\x11\x91\xca\x04\x53\x0b\x40\x5a\x44\xa4\x92\x65\x6a\x01\xa2\x06\x26\x9a\x5a\x88\xb8\x93\x6d\x6a\x21\xe2\xce\x24\x95\xc7\x1a\x11\xa9\x4c\x56\x79\xd4\xc0\x14\x95\x47\x0d\xe4\xa8\x3c\x6a\x60\xaa\xca\x93\x1a\x11\xa9\x4c\x53\x79\xd4\xc0\x74\x95\x47\x0d\xe4\xaa\x3c\x6a\x20\x4f\xe5\xb1\x44\x44\x2a\x33\x54\x1e\x35\xf0\x80\xca\xa3\x06\x66\xaa\x3c\x6a\xe0\x41\x95\x27\x3d\x22\x52\x99\xa5\xf2\xa8\x81\xd9\x2a\x8f\x1a\xc8\x57\x79\xd4\x80\x4d\xe5\x31\x47\x44\x2a\x73\x54\x1e\x35\x50\xa0\xf2\xa8\x81\x42\x95\x47\x0d\xd8\x4d\xca\x08\xcd\xcc\x45\xea\x85\x32\x3a\x22\x52\x99\x2b\x42\xf7\x47\x44\x2a\xc5\xa2\x3e\x8d\x88\x50\x52\x22\x22\x95\x12\x93\x32\x52\xe3\x9e\xa7\x5e\x08\xee\xf9\x22\xa4\x72\x97\x8a\x90\xca\x5a\x66\x52\x92\x35\xd6\x72\xf5\x42\xb0\x56\x88\x90\xca\x5a\x29\x42\x2a\xeb\x43\x26\x65\x94\xc6\x5a\xa5\x5e\x08\xd6\x6a\x11\x52\x59\x6b\x44\x48\x65\xad\x35\x1d\xf3\xe3\xd4\x3d\x78\x32\x47\x28\xbe\x76\x85\x0d\xcc\x5e\xe4\xee\x53\x22\x01\x32\x4e\xc3\x9b\x93\x73\x9b\x09\x59\x93\xa7\x10\xe9\x00\x2a\x9b\x41\x6f\x3e\x01\x63\xe2\xfa\x73\x08\x57\xc3\x29\xfe\x13\xc8\x08\xdf\x30\xdf\xae\x3e\xdc\x17\x6f\x64\x41\x9a\x3e\x5a\xdf\x57\x27\x6e\xf8\x9b\x5f\xe9\xb2\xbc\xe3\x59\xbf\xb3\xba\x14\xe0\xe0\x17\xde\x0c\x1d\xcd\xaf\x00\x40\x8a\xf8\x2f\xee\x30\x48\x6b\x1e\x48\x56\x4d\xca\x55\x52\x56\xe5\x36\xb3\xc2\xb4\xe6\x30\xf5\xea\x8c\xef\x72\x20\x3c\x65\x55\x41\x4e\xae\xca\x22\xce\xbb\xf5\xcf\x82\x64\xdf\xc1\xbe\xdd\x7d\x78\x60\xf8\x69\xe2\x7a\x42\xe1\xab\x9b\x29\xa4\x35\xeb\x0a\xd3\x00\xfe\xbf\x00\x00\x00\xff\xff\xdf\x44\x7e\x43\xc0\xd0\x01\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_ttf() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_ttf, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.ttf", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x97\x53\x6c\xe0\x8f\xd3\xf5\xbf\xb5\xdd\x6e\xdb\xad\xdb\xad\x6d\x5b\x5b\x5b\x5b\xdb\xb6\x6d\xdb\xb6\xb7\xb6\x6d\xdb\xb6\x8d\x6d\xdf\xfc\x9e\xfc\xef\xde\xc9\x7c\x32\xc9\x24\x73\x33\xe7\xe2\xe4\xb8\xca\x89\x89\x01\x20\x00\x00\x80\x80\x6b\x01\xc8\xff\xcd\xd9\x5e\x00\xe4\xff\x36\xff\x5f\x89\x8b\x88\x8a\x01\x00\x88\x15\x00\x00\x9c\x00\x00\x08\xc0\x31\xc2\x31\x89\x2b\xa9\x08\x01\x00\x48\x19\x00\x80\x70\x01\x00\xe8\xef\x63\x94\x1d\x34\x39\x25\x7a\x26\x00\x00\x3d\x04\x00\x40\x01\x00\x00\xbd\x76\xfb\x73\x25\x43\x6b\x7d\x3b\x00\x00\xe3\x00\x00\x88\x03\x00\x80\xb6\x50\x3a\x29\xa0\x37\x74\x71\x22\x04\x00\x18\x5c\x00\x00\x7e\x03\x00\x90\xa5\x17\x87\x06\x66\x62\x67\x6a\x0d\x00\x30\x46\x00\x00\x11\x05\x00\x70\xa9\x7b\xe8\x1b\xb7\xa6\xfa\x8e\x76\x00\x80\x78\x0b\x00\x00\xf4\xff\x40\x36\xb5\x72\x37\x01\x00\xc4\x57\x00\x58\x79\x07\x40\x5c\x6d\xea\x93\x5d\x2f\xcd\x8c\xf5\x8d\x00\xe0\xf8\x11\x00\x00\xb6\xff\x78\x4d\x41\x46\x36\x33\x33\xd6\x07\x80\x13\x1a\x00\x00\x08\x01\x00\xf8\x05\x67\x06\xb6\x6f\x66\xed\xe4\x06\x00\x27\xd2\x00\x00\x41\x09\x00\xc8\xc4\x28\x38\xae\x07\x56\xb6\x86\xfa\x00\x70\xe9\x06\x00\x50\xd3\x00\x00\xfd\x6b\x0a\x94\x0a\xdb\x5a\xdf\xcd\x0e\x00\x1e\x7f\xff\xef\x96\x10\x62\x11\x01\xcf\x46\xdf\xda\x18\x00\x1e\xcd\x00\x00\xc4\x03\x00\xc0\xac\xe4\x15\xbd\x8e\xec\x6c\x1d\x9d\x00\xe0\xe9\x10\x00\x10\x56\x00\x80\x64\xee\x48\xa8\xf4\xcc\xce\xc1\xd8\x0e\x00\x01\xeb\x04\x00\x20\x1b\x00\x80\x1a\x76\x67\xee\x1e\x37\x10\x43\x3d\x23\x3d\xbd\x5d\x7d\x3f\x80\x0c\x12\x31\x84\x59\x60\x74\xb4\x6c\xb4\x0c\xf1\x17\x09\x56\xa2\xbf\x11\x84\x21\x44\x5c\x95\x71\x15\x58\x02\x42\x14\x82\x80\x03\xea\x01\x3a\xa1\x7b\x08\x4a\x19\x2a\x30\x4c\x02\xed\x00\x00\x80\x1b\x48\xf6\x04\x18\x3c\xba\x1e\x2e\xc4\xed\x8b\xce\x72\x55\x15\xa5\xcc\x9a\x8d\x85\xcd\x24\x2b\x3d\x8e\x61\x5a\x26\xd3\x34\x5b\x83\xf5\x06\x9b\xc9\x81\xc7\xc6\xd4\xb6\x77\x8f\x9c\xaf\x3f\xc0\x55\x88\x14\x12\xc0\x6c\x32\x95\x13\x18\x63\x06\x57\x2b\x06\xf6\x38\xd0\x34\x91\x5a\xe3\x80\x38\x35\xda\x74\xbc\x81\xb2\xcf\xd9\xa9\xef\x27\x18\x82\x65\x12\xa4\x30\x8c\x65\x1a\x20\x51\x92\x66\x12\xa2\x71\xfc\x9a\xe5\xfe\x43\xdd\x28\xdc\x58\x55\xdd\x38\xda\x19\xdf\xda\xfc\xb8\x10\xf1\x2c\x6f\x46\x9f\xbb\xc0\x2f\x00\x96\xb2\x2a\xac\x20\x82\xb2\x26\x28\x41\x92\xb2\x3a\xaa\x7e\x9c\xb2\x36\x20\x82\xaa\xbc\x2a\xa2\xa2\xa2\xbc\xa6\x90\x6b\x79\x7f\xd1\x16\xaf\x05\xcd\x65\x5e\x76\xcd\x9c\xdb\xf2\xe4\xb2\x53\xfb\x6f\xa4\xcb\x18\xdd\x06\x46\x87\xc5\xca\x55\xc8\x56\xa3\xa6\xcb\xc6\xf5\xaa\xf6\x56\xc3\xc7\x73\x2f\xfe\x3a\x89\xa7\x95\xdc\x65\x39\x6f\xc3\xc9\x73\xbf\xce\x3a\xb5\xa7\xb5\xed\x65\x75\x57\xc3\xcb\x73\x5f\xf3\x2a\xf9\x87\x95\xee\x65\xa5\x77\xc3\xcd\xf3\x80\xcf\x3a\xfd\x47\x35\xff\xf3\xca\xd7\x9a\x20\xf4\x16\x03\x32\x1a\x20\x3d\xc2\xf3\xd8\xeb\x82\xe3\x9f\xcd\x96\xa0\xfb\x86\x50\xf8\x2a\x1c\xc8\x28\x36\xc0\x02\xa3\xc9\xaa\x02\x57\x27\x15\xd9\x04\xe9\x5e\xbd\x02\x99\xb5\x60\x62\x3d\x0c\x61\xbd\x84\xaf\x65\xf5\xd0\x36\x65\xda\xf9\x85\xb4\x95\xd5\xc5\xf0\xdf\xef\x0c\xf5\x4c\x38\xa7\xca\x06\x7a\xc7\x7b\x7b\xb9\x22\x97\xd2\xfc\xfd\x15\xf0\x85\x98\x75\x8d\x7e\x1b\x1a\x08\x40\x22\x61\xa5\x7d\xc1\x31\x50\x88\x80\xa5\xc3\x12\xfa\x08\x1a\x2b\x30\x86\x7d\x7d\xa7\x92\x9c\xdd\xa8\x40\x42\xc6\xfc\x22\xb3\x86\x80\x1c\x7e\xfb\x8a\x82\x87\xa7\x51\xad\xc2\xe9\x3d\xc7\x02\xc9\xbf\x42\xd2\xfa\x3f\x3d\x92\x12\xc1\xfe\x92\x68\xa2\x8b\xbe\x70\x7e\x90\xcd\x34\xbf\x3b\x33\x35\x5b\x6f\x3c\xb7\x58\x6f\x34\xff\xd7\xe4\xd8\x33\x0d\xd9\x8f\x3d\x3b\xc3\x97\x15\x18\x85\x6a\x4b\xda\xc0\x2b\xf3\x10\x32\x70\x7b\x03\x08\xf9\x78\xd9\x7c\x26\x82\x04\xd9\x83\x7e\xae\x82\xf8\x11\x83\x50\x42\xef\x72\x6c\xfa\x79\xda\xd1\xe7\x8c\x58\xba\x11\x64\x2a\x44\xa7\x15\x49\x84\x38\xc5\xdb\xcc\xeb\xfe\x18\xe3\x5a\xd3\x8e\x49\x3c\x38\x22\x6e\x53\xc0\x8f\xfb\x79\xd7\xf8\x3b\xf4\x0c\xd6\x5b\x4c\x77\x85\xfd\x49\xb3\xba\x34\x4e\x5a\xef\x27\xf7\x1d\x4d\xce\x40\xa4\x1b\x09\xc1\x6e\xa2\x57\xe2\xcd\x1d\x89\x8f\x49\x7b\x9a\x8f\x49\x44\xba\xa9\x0b\xd3\x47\xe6\xc0\x94\xf9\x31\xef\x43\x5b\x78\x9a\x58\xee\xeb\xbc\xb7\x46\x0c\xc7\x41\x96\x52\xf6\x9f\xd2\x6d\x73\xda\xec\x03\xb2\x36\xce\x9a\x03\xc8\xad\x1a\x1b\x5f\xd7\x38\xee\x79\xbc\x2b\x59\x17\x24\xfb\x58\x57\x5b\x7b\x5b\xd7\x1b\x98\x57\x50\x0d\xff\x4d\x01\x86\x59\xd6\x59\xf6\xbf\x6c\x65\x82\xbe\x0c\xb4\x69\xd8\x34\xf0\x5c\x7d\x3a\x7d\x67\x7d\x78\x01\x1d\x2e\xee\x95\x67\x47\x69\x27\xa2\xbc\x48\xaf\x4b\xb3\xa2\xb3\x3f\xb7\xcd\x10\x6e\x06\xe0\xdc\xf0\x08\xf4\xe0\x2c\x76\x25\xda\x8d\x24\xd5\xce\xe8\xc0\x8c\xea\x2e\x09\x3d\x3f\xcd\xdc\x02\x37\x6d\x11\x36\x58\xbe\x4d\x07\x56\xaa\xf6\x30\x97\x91\x7b\x7e\xe6\x18\x20\xcc\x1c\x0c\x75\xa6\x23\xdd\x53\x76\x0f\x21\x55\x13\x49\xab\x2d\xec\x48\xb3\x3e\x4c\x4d\x1f\x03\x8e\x41\x9c\x03\x9d\xb6\xdd\x0c\x17\x32\x89\x72\xde\xd8\x88\x59\x75\xd3\x30\xd3\x08\xb2\xd9\x0b\x7a\x08\x7b\x26\x6d\xee\x35\x17\x2e\x75\x21\x60\x5b\x28\x3d\x3f\xb7\xad\x10\x6e\xbe\x02\xf7\x2a\x72\x11\x98\x7d\x4c\x5b\x27\x66\x42\xf0\x96\xe5\xa5\xeb\xef\x3c\xa3\xfd\x5a\x74\xc8\xdc\xe9\x47\x19\x6e\xdc\x05\x3c\xfe\xb4\xab\x83\xa6\x28\x4a\x85\x93\x4e\x24\x5c\x1c\xb9\x45\xb1\x0e\x35\x8f\x39\x00\x61\x57\xb8\x99\x61\x8e\x85\xb9\xa2\xb6\xd1\xdd\x3f\xbc\x67\xb7\xb7\x51\xbb\xf8\x3c\x54\x1e\x9d\x7a\x37\xb6\x36\x10\x80\x02\x7b\x3f\xf6\xea\xc2\xae\x42\x88\x53\xb7\x49\x87\xdc\x23\x93\x89\x27\x81\x4b\xa1\x09\xf7\xe7\x3b\x16\xbd\x85\x4b\x99\x31\x9c\xdc\x2d\xf5\x6e\xfb\xbe\x61\x6b\x1c\xd2\x7a\xdc\xb0\xc9\xc8\xc9\xe8\xc9\x18\xe9\xf5\x38\x0c\xec\x26\x22\x4a\x26\x86\x7e\x3b\x6a\xe4\xaf\x55\x07\x37\xb7\xda\x5b\xfc\x3d\xd6\x7c\xb8\x01\xb8\x01\x6d\x61\x72\x5f\x57\xd3\xd3\xdb\x59\xfd\xfc\x7f\xc2\x1f\x41\x2e\xd0\x32\x88\x4f\x30\x4f\x9f\xef\x4d\x83\x2f\x8f\x06\x6d\xb8\x01\xba\xcf\x10\x3e\x1b\x50\x40\x37\xe8\xa0\x7a\xd6\x4e\x1d\x98\x0f\xfb\x9a\xc4\x73\x1f\xbf\xb4\xea\xd7\x67\xf8\x01\xd0\x06\xcf\x2f\x5b\x95\xce\x02\x72\xae\x3e\xac\x69\xa2\xc9\xd7\x60\xd5\xdc\xb8\x27\xb7\x40\xf5\x39\xf5\xd8\x41\xb0\x96\x33\x57\x24\x95\x9e\x24\x15\xac\x2c\x99\xac\x7c\xe0\xb6\x46\x63\x3d\x4f\x87\x87\x9a\x9c\xe6\xc6\x01\x42\x4e\xa5\xac\x9c\x6c\x61\x87\x2a\xab\x9a\xfb\xce\x2a\x7b\xc0\x2a\x88\x66\x0f\x2b\xbb\x84\x3b\xb5\xc4\xe3\xa9\x0a\xd7\x88\x5c\xba\xe7\xb4\x61\x5c\x97\x52\x56\x58\xcc\x21\xcc\x66\x0f\x36\x9d\x44\xcb\x01\x67\x7a\x80\x9b\x5d\xf9\xe0\xd4\x4d\xd7\xdb\xd6\x2e\x8f\x79\x66\xa0\x5d\x20\xe5\x9c\x4e\xb7\x82\xc1\x81\x74\x72\x21\xa9\x5d\x5c\xe9\x1c\x5d\xb3\xe4\xdc\x0e\x46\xd7\x1b\xdc\x5e\x78\x5d\xc4\x7d\x41\xd7\x5e\x79\x1d\x12\x69\x57\x87\x5f\x11\x7a\x16\xef\xd1\x88\x5f\x38\x32\xae\xba\x46\xc6\x9a\x51\x94\x7a\x6e\xec\xd1\xa6\x93\x0f\x75\x41\xe4\xd1\x8a\xef\xdf\x61\x1f\xab\x7a\xa0\x53\x3d\xf7\xa7\x7a\xc0\xbb\x55\x57\xb3\x49\x66\xe3\xce\xcf\xc5\x0c\x1d\xc9\x42\x9a\x97\x47\x64\x57\x1f\x16\x3f\x3f\xc1\x2d\x09\x32\x76\xcf\xfe\xfd\xd4\x14\xf7\xc0\x5a\x3f\x5c\xda\x80\x49\xc7\x88\x6a\xe1\x16\x55\xe9\x96\x49\xa7\xaf\xd2\x0d\xa1\xf6\x00\xa1\x73\xcc\xa9\x33\xb8\x85\x33\xb6\xcd\x2d\xd7\xfd\xd5\xef\x8d\x46\x8f\x28\xf2\x96\x88\xaf\x7f\x84\x66\xcf\x8b\xeb\x35\xa8\xf8\x35\x89\x0e\xec\x35\x4a\xd0\x2b\x86\xfe\xb6\xb8\xba\x19\x4b\xb7\x8e\xb9\xe3\x2f\x75\x47\x1d\xb7\xe7\x5f\xf2\x6e\x13\xfa\x67\x13\x02\xab\xe1\x1f\x56\x43\x6c\xcf\xa2\xd8\xe3\x0a\x7d\x3e\x65\x22\x18\x15\x0a\x03\x5f\x65\x47\x00\xa2\x08\x1e\x54\x7e\x4e\x60\x9b\x9f\x30\xf2\x81\xbc\x1b\xee\xf0\x1e\x6e\x5f\x3c\x28\x8a\x42\xcc\xbe\x50\xcc\x8f\x08\x14\x82\x8d\xd6\xb0\x48\x52\xa9\x7a\x52\x71\x87\xb6\x20\xa9\xe2\x4a\xa7\x42\xd3\x5e\xd5\xe6\xdf\xae\x67\x44\xbc\xc5\x98\x1b\x6b\x44\x5d\xc5\x48\x17\x6b\xbd\xc6\x5a\xd3\x32\x9b\x34\xde\xc5\x04\x85\x51\x12\xbe\xd8\xbd\xb4\x9b\x54\x60\xc6\x71\xf0\x29\x44\x4c\xca\x21\xf6\x10\x6a\x0e\x38\x13\xad\x11\x95\x32\x59\xe1\xa6\x9c\xd4\x46\xad\x51\x7a\xa4\x95\x46\x45\x51\x09\x73\x56\x29\x8c\x4c\x29\xd1\x56\xfb\x3f\x6b\x8e\xb8\xb0\xc9\x0f\xa2\x67\x5e\x8d\x03\xa4\x59\x0c\x92\x96\xaa\x18\x59\xc4\xc8\xec\xe9\xaf\xc7\xba\xda\x90\x5e\x8e\x7c\x36\x75\xc9\x26\xd0\x97\xeb\x63\x4a\x6f\x95\xd3\xa9\x16\xdc\x7e\xca\xb1\xc3\x90\x29\x94\x3c\xc0\x27\x0e\x32\xbb\xa7\x5c\x12\x77\x64\xa0\x27\xd2\x88\x3b\x14\xe2\x22\xf4\x90\x81\xfa\x01\x01\xfc\xb2\x79\x3d\x45\x7e\xbe\xb9\x9f\x0e\xef\xfa\xbb\x81\x04\xf6\x61\xe2\xa0\xa8\xf1\x41\x46\x45\x84\x18\xe6\xbf\xc5\x21\x99\xe2\x83\xad\x0e\x09\x31\xdd\x47\xc5\x41\x60\x15\x82\x0c\x92\x7a\x05\x29\xb5\xc0\x91\x45\xc8\x9d\xc4\x30\x9d\x44\xd9\x9d\xc4\x91\x1e\x45\xe8\x1f\xc5\x08\x1e\x45\xf9\x1f\x47\x00\xf8\x41\x42\xf8\x61\x64\xf8\x21\x06\xf8\x11\xe8\xa8\x41\x8a\xa8\x61\xac\xa8\x21\x8e\xa8\x11\x70\xe9\xc1\x5f\xd2\xc3\xe8\xd2\x43\x2c\xd2\x23\xf0\x93\x83\x34\x93\xc3\xb8\x93\x43\x3c\x93\x23\xa0\x34\x83\xc4\x34\xc3\xa8\x34\x43\x4c\x34\x23\xb0\x55\x83\x54\x55\xc3\x3f\xab\x86\xb8\x2e\x81\x30\x5a\x55\x8b\x62\x9d\xf5\x41\xa5\x75\x3a\xef\xe6\x49\xf0\x0d\x93\x02\x32\xcb\x8a\x12\xb3\x8c\x12\xcb\x12\x13\xb3\x14\x13\xcb\x98\x6a\x96\x15\x97\x3f\x66\x52\xb4\xcd\xc9\xeb\x62\x3d\x37\x79\x34\xb0\x38\xb0\x00\x45\xca\x27\x76\x7a\x23\x23\x33\x33\xf3\x81\x35\x0f\x08\xaf\xaa\xc0\x52\x52\x7a\x5b\xd3\xad\x0e\x2a\xa6\xba\x51\x90\x02\x99\xb6\x41\xb6\xd2\x71\xfa\x73\x9c\x4a\x49\xe7\x49\x9c\xa1\xad\xfa\x7d\x9f\xf8\xb0\xc6\xc3\xa6\x14\x7d\x98\xdb\x04\xfc\x46\x10\xe7\x41\x02\x58\x48\xfa\x43\x86\xeb\x0d\x34\xe3\x44\x0c\x35\x3c\x16\xb3\x79\xa5\xa9\xd5\x0d\xbb\x69\xb6\xe3\x3c\x25\x9d\x17\x2c\x64\x20\x14\xfb\xa6\xf3\x94\x33\x80\xb9\x66\xb7\xee\xae\x26\xa3\xce\x60\x33\x97\x65\x4c\xad\x4a\xfb\x04\x0b\xbe\xfc\x71\xe5\x8f\xc3\xf7\x6a\xe8\x4f\xdf\xfd\xa6\x9f\xe8\xeb\xf3\x76\x09\x30\x25\x2d\xba\xfc\xe7\x1b\x84\x90\x49\x60\xfa\x54\xc2\x54\x17\x90\x90\x90\x3f\xa8\x21\x43\x7c\x61\x70\x25\x7c\x6b\xeb\xf1\xdf\xbe\x43\x86\x6e\xbe\x33\x7d\xb7\x09\xf1\xeb\x7f\x2e\x23\xd0\xa8\x0a\xdc\x89\xa4\x51\x2d\x17\xea\x39\x87\x63\x9d\x5f\xe7\x67\x40\x1e\x92\x4c\x32\x1b\x30\x80\x02\x6c\x8b\x8c\x5b\x6e\x20\x55\x2a\x47\x19\x07\xa3\x88\xb4\xa1\x19\xfa\x58\x5e\x82\x39\x19\x8f\x57\x99\x49\xbc\x93\x56\x23\x63\xb7\x2c\x3e\xb9\x96\x73\x36\xef\x5d\x9d\x1f\xf0\x3e\x3f\x39\x27\xbe\x9f\xe7\x9e\x47\x25\x1c\x5f\x1c\x84\x95\x8b\x15\x25\xc4\xc5\x15\x83\x93\x89\x54\x2b\x25\xac\xc2\x75\xfe\x15\x95\x60\xea\xda\x1b\xbe\x75\x05\xd9\xb6\xf3\xd8\x2e\xd0\x8e\xab\xa1\xd5\xb0\x34\xe4\x8a\x2f\x95\xfd\xd1\x5d\xb1\xac\x39\xa9\xab\xaf\x22\xde\x3a\xa3\x16\x17\x35\x3f\x6d\x30\x4c\x9b\xa7\xcd\xa5\x0e\x61\x0b\xf3\xd5\xd8\x5d\xdf\xf4\xfc\xe7\x6e\xca\x13\xb1\x72\x50\xfc\x82\x26\xe7\x69\x93\x83\x4c\x4f\xf3\x0b\x9f\xbf\x89\xee\x4e\x5b\x63\xab\x29\x25\xc2\x5f\xa1\xb9\xef\x41\x1e\xc1\x75\x50\xed\xe8\x93\x8a\x66\x8f\x86\xc8\x6f\x94\x79\xff\x2e\xf8\x57\x70\xc8\xa1\x95\x96\x6a\x8b\xb1\x33\xb7\xb3\x92\x65\xf5\x84\xec\xc6\x9f\x29\x0b\xa2\xb5\xc6\xe5\x93\x0a\xa2\xd7\x72\x56\x66\xa0\x42\x1c\x0e\x66\xc5\x79\x14\x01\x0f\xb4\xdb\x98\xfc\xa9\xcd\x84\xc5\x6e\x4e\x4c\x41\x17\x4e\x42\x16\xb2\xef\x28\xd1\xd2\xbc\x73\x7a\x29\x05\xca\x5b\x84\xf3\xe8\x56\x5b\xab\x9a\x3d\x7e\xd9\x20\x81\xae\x75\x2d\x41\xa6\x71\xe8\x6c\xe1\x08\x5c\x9c\x2e\x61\x3d\xe6\xd2\x71\xeb\xf6\xf7\xe2\x75\xe5\xb8\x5f\x06\x64\x33\xd7\xe2\xa0\x64\x28\xb6\xda\x72\xf3\xaa\x86\xb8\x57\x4d\x8b\x17\x3e\xe3\x2f\x42\xf2\x82\xa7\x5c\x0b\x8b\xe8\x41\x30\x7e\x99\xea\xb4\xa2\x6c\xd4\xc3\xb2\xb3\x58\xe9\x32\x0a\x44\xcd\x6d\xc4\x35\x43\x13\xfe\xb7\x83\x62\xcc\xdd\xd9\x59\x92\x83\xa4\x7d\x2d\xd3\x46\x46\x23\xc9\xb6\x7e\xb2\x44\xb8\xb8\x0d\x8a\xb6\xf5\x45\x0d\x53\x64\x83\xfd\xb4\x0b\x2f\xec\x16\x74\x1b\x3c\x67\xf3\xf9\x24\x98\x27\xf2\xe1\x4a\xfb\xfd\xb6\xf5\x06\xda\x99\x13\x4a\x25\x65\x2a\x46\x5b\x23\xbc\xdc\x52\x04\xf8\x70\x37\x26\x0f\xca\x95\xba\xd9\xfc\x23\xca\x35\x5a\x7d\xf6\xe0\xec\x19\x66\x3b\x66\x4d\x45\x21\x3d\x3d\x3c\x7b\x77\x2e\x49\x4a\xb9\xf0\x52\xc1\x8c\x99\x86\xe3\x25\x49\xc5\x45\x36\xae\x67\x26\x39\xeb\x73\x5b\x2f\x3e\x7d\x1d\x5a\xb2\xda\x14\x28\xc9\x95\xc0\x2f\xe5\x72\x7e\x73\x58\x56\xb4\x6a\xb2\xa1\x49\xe9\x41\xd9\x1f\xf7\xd2\x9a\x19\xe8\xd5\x38\x3f\x12\xef\x19\x83\x91\x5c\xa6\x2d\x84\xf0\xe1\x24\x88\x0e\x89\x36\x18\x66\xca\xe1\x37\xee\x59\x6a\xac\x6b\xb7\xfa\x38\x6b\x76\x7b\x16\xd5\x8d\xe6\xc1\xbe\xf0\x1b\x3f\xa4\x9c\xa5\x41\xe0\x8a\x65\xcd\xff\x62\xd4\x79\x6c\xba\xe2\x96\x56\x2d\x51\x16\xc2\xaa\x84\xab\xa1\xe6\xcc\x11\x0d\xf1\xe4\x0b\xe3\xaf\x9c\xb6\xc4\x29\x06\x7d\xfb\xb8\x2c\x2b\x2c\x50\xc1\x3f\x34\x72\xac\x99\x3d\xa4\x5a\xbf\xa0\x9a\x71\x45\x6f\xca\x36\x79\xf3\x19\xc2\x8a\x1f\x6a\xdc\xd2\xdc\x67\x51\x56\x10\xcf\x64\x16\x90\xdd\x07\x50\x9e\x13\xd3\x67\x14\x10\xcd\xb3\x0e\x85\x8d\xfa\xa6\x1b\x28\x1f\xf6\xc8\x30\x92\xdd\x7f\x87\x80\xba\xf0\x3d\xb6\xa9\xd0\xf1\x3d\xb5\x69\xd3\xf1\x3d\xbc\xf1\x8b\xdd\x29\x7f\xd0\xeb\x7d\xd2\x33\x7c\x41\x75\xc3\x60\x89\x7a\xf4\x52\xdc\xa3\x32\x44\x2c\xf6\x52\xdc\x33\x31\x44\x58\x81\x16\x8e\x72\xea\xa1\xbf\xf1\xeb\xa1\x73\x22\x45\x11\x47\xe7\x87\x1a\x57\xbe\x41\xea\x9b\x2a\x45\xb0\x34\xc7\x27\x81\x25\x44\x3f\x6a\xea\xad\xda\x36\xc4\x4a\xb4\x1b\x84\x79\x38\x49\x93\x3a\xb9\xa8\x4d\x30\x3f\x67\xfe\x30\x23\xcd\xad\xbd\x4e\x1a\xe1\x9c\x50\xfb\x23\xba\xc5\x89\x46\xae\x66\x9d\xbe\xdb\x94\x90\x6e\x18\x5b\x8b\xd3\xae\xb2\xdf\x05\xc2\x4d\xce\x87\x0b\x8e\x16\xb2\x2b\x7e\xb1\xb4\x76\x93\xf4\xe9\x84\x7f\xd1\x31\xe4\x7c\x02\xcf\xd4\x1e\xfe\x59\xee\x0a\xaf\xa3\xaa\xe0\xb2\x72\xa2\x49\xc6\xf1\x32\x7b\xb2\xd1\x63\x3a\x2e\xdb\x88\xf8\xc0\x4d\x11\xce\xb5\x51\xe4\xe7\x51\xd5\xe8\xf4\x1c\xc9\x73\x73\x96\x33\x4d\xa1\x21\xfc\x75\xa9\x57\x60\xcb\x3d\x9d\xbe\x10\xe6\xbb\x02\x60\x40\x82\xfb\x16\xc3\xc4\x8a\x5e\x4d\xf1\xcc\x8a\x20\x39\xbe\xb6\xb7\x78\x4a\xf7\xf5\x42\xad\x38\x51\xa8\x0e\x96\x4f\x7e\x2c\x0c\x1d\x6e\xc0\xaa\x8c\xfd\x6b\x66\x52\xeb\x32\x13\x76\x07\x13\x27\x19\x77\x36\xaf\xee\x48\xe3\x53\x7e\x00\xfe\x80\xe2\x04\x8e\x74\xa3\x16\xe3\x64\x54\x2a\x34\xd7\xc5\xe9\x25\xb6\xa9\x97\xde\x43\xe2\x75\x26\x9a\x0b\x9d\x72\x6e\x89\x22\xb0\x12\x3b\xc5\x63\x8a\x60\x93\x16\x17\x06\x98\x85\x17\xd8\x27\x08\x39\xe0\x21\xa8\xf0\x1f\x62\xe0\x93\x16\x9a\xc0\x80\xe6\xc2\x05\xaa\xd9\xb0\xff\x90\xf4\xd1\xe5\x20\x34\x3b\x77\x14\x46\x7c\x14\x96\x7f\x10\x58\x1c\x55\x09\xe5\xb8\x38\xcf\x01\x4f\xb4\xe0\x45\xf7\x4e\xef\x8d\x53\x68\x4a\x00\x7f\x94\xf7\xa4\x63\xd9\x90\xe4\xd8\x28\xee\x9c\x1b\xbc\x1e\xda\xb6\xdd\x11\xcc\x8f\x39\xdf\xd5\x37\x6e\x6c\xbc\x2b\x24\x0a\x30\xeb\x60\x29\xf7\xe2\x25\x90\xb6\xef\x48\x8a\x8d\x2e\x11\x50\xbf\xd8\xd7\xf7\x31\x0b\x24\xb6\x93\x35\x04\x72\x2f\xcb\x30\x9f\x2b\x72\xaf\x5b\xf8\xe6\x8f\xd3\xf7\x3a\xae\x48\xb2\x43\x42\x6e\x9a\x1c\xc1\x53\x4c\x40\xd6\x07\xd8\x28\xa4\x7a\x41\xa4\x0b\xb3\x11\xc1\x3a\xb8\x69\xcb\xe6\xce\xfd\xbb\xb9\x9d\x56\xfa\x0a\xfd\xd9\x3f\xe9\x1b\x0d\x6e\x72\xcf\xf9\xfc\x73\xb7\x20\x68\xa2\xc9\x8d\xe4\xba\x78\xb9\x07\xb1\xe0\xb0\x37\xde\x5c\x49\x7d\xe5\x90\x60\x66\x5d\x5f\x4a\x37\x85\xc7\x4d\x21\x07\xd6\xd4\x98\x42\x4b\x41\xbb\xc3\x35\xbc\x7c\xa2\xbe\x82\x29\x93\x1c\xdf\xd1\x77\xfa\xdf\x8b\xf7\xb8\x91\x6b\x83\x9a\xb0\x3a\x15\xd9\xa1\x22\x74\x3d\xab\xa0\x0e\xa1\x41\x09\xfd\x0a\x18\xaf\xe3\x0d\xb8\x30\xc3\xae\x9a\xa6\x34\x36\x46\x7e\x6a\xd9\x7d\xc4\x46\xd4\x56\x7e\xa5\x7d\x99\x7c\x07\x6f\xcc\x7d\x2a\x89\x0d\x2e\xbf\x44\x11\x57\x70\x80\x33\xd6\x21\x21\x09\x68\xd9\x43\xa3\xb2\x10\x44\xfc\x42\xf8\x3d\xe7\xc7\x82\x30\x3a\xdb\x49\x51\xcf\x42\x28\x0e\x76\xcf\x92\x27\xf0\x50\x42\x31\xef\x87\x8a\x40\xb1\xe0\x07\x3b\x55\x5a\x20\x09\x66\xc1\x92\x27\x0b\xf6\x93\xa5\x36\x82\x0c\xc1\x6c\xce\x8f\x0d\x81\x61\xb0\x13\x41\xce\x31\xb4\xcf\x4b\xd9\x59\x9b\xb7\xdc\x23\x0b\x3b\xc4\x14\xef\xdd\x60\x3b\xf8\xc9\xaf\xaf\x3a\x74\xb4\x5a\x7c\x54\x66\xc4\x60\x3b\xf4\x2c\xa8\x4f\xa6\x74\x54\xc6\x74\x54\xe6\xc4\x80\x2f\xe8\x2c\xa0\x4f\x26\x75\x54\x46\x6d\x54\x66\x65\x5f\x2b\x07\x17\x82\x5f\xae\x76\xe5\x38\x58\x1f\x5f\x77\xc8\xb5\x8f\xfd\xc8\x04\xc9\xdd\x4f\xc6\xea\xbf\x6c\xfb\xfd\x0d\x20\xb9\x81\x24\x79\x42\x09\x28\xad\x35\x3f\xeb\x78\xe6\x3a\x0a\xa1\xc1\x20\x13\x8b\xf9\xc7\x89\x91\x23\x27\xcc\x0a\x09\xd9\xe6\xbb\x0a\x8b\x7b\xa0\x20\x93\x86\xad\x9a\x2c\xda\x5f\xca\x36\xb5\x50\x4e\x77\x1d\x44\x2d\x7c\x6c\x72\x1d\x3d\x6f\x67\x7f\x7f\xef\x78\xb6\xa4\xae\x5c\xfc\x8e\xf9\xde\x26\x0f\x2f\xd0\xb9\x99\x54\x22\xb4\xce\x76\x7e\xd6\x79\xd2\xb4\xbc\x22\x84\x27\x6f\x25\x4e\x20\x23\x1c\x2c\xd4\x4b\x52\xf1\xb6\xf6\xf6\xee\x30\xc4\x80\x0c\xca\x0b\x04\x04\x40\x1c\x2a\x70\x51\xc0\x57\x71\x68\x2f\x11\x16\xfd\x41\x40\x2a\xce\xdc\x78\x79\x78\xb4\xa6\x21\xaa\x24\x20\x0b\xc2\x19\xd2\xdc\xce\xe8\xdd\xfa\xb5\x70\xa3\x84\xfe\xa4\x45\x86\x2a\xf8\xc4\xbe\x1a\xff\xe5\x69\x14\x7e\x8f\x44\x16\x63\x0b\x6a\x4d\xfc\x64\x2d\x12\xaa\x33\xab\x79\xcf\x48\xd8\x9e\x40\xfe\x19\x25\x01\x3d\x0c\x0d\x7d\x0e\x07\x08\x8e\xd6\xea\xe0\x05\x71\xc6\xdc\x40\x27\xe9\xe7\xb4\xa8\xd5\x82\x02\x38\xb3\x2a\xa7\xab\x38\x97\xcc\xfd\x8e\xff\x5e\xb4\x8e\x4a\x2f\xec\xaa\xa2\xa3\x35\x7a\x64\x9b\xd8\x3c\xa2\x99\x24\x51\xb0\x51\xe8\x5e\xfe\xc1\xc1\xc1\xa9\xe7\xc2\x5b\xb4\x4b\x47\x6b\xe0\xe5\x97\xf4\x90\xf5\xfb\xc8\xc0\x22\x28\x50\x9f\x7e\x04\x75\x47\xfa\x12\xf9\xa8\x33\xcb\x3b\xa2\xf5\x67\x0c\xf2\x0b\x18\x6c\x09\xe0\x1d\xce\xf1\xf7\xfc\xbb\x21\x13\xd8\xe7\x5f\x86\xd7\x0a\xed\x24\xbb\x03\xe3\x20\x45\xec\x2b\xa7\x73\xab\xc4\xa4\x0b\x9b\xb7\xad\x55\xdf\x16\xdd\xf9\xa0\x77\x83\x23\x02\x3f\x2d\xce\x14\xa3\x13\xe7\x88\x8a\x98\x2b\x20\xe1\xf0\x62\x1d\xa6\x00\x83\x0e\xad\xac\xa8\x0d\x9e\xa7\x25\x27\xec\xe5\x81\xf4\xf9\x79\x07\x7a\x1c\x4c\x29\xc2\x11\x03\x4f\x12\xc4\x40\xc8\xe3\x07\xee\xef\x48\x14\x43\x7d\x74\x9a\x83\xf0\x92\x90\x30\xf5\xa2\x38\xaf\x3d\x81\x07\xd1\xc6\x79\x4c\xa3\x64\x32\xd9\xce\x2a\xe9\x9e\x46\x43\xc8\x84\x5d\x3f\xff\x97\x28\x3a\xad\x01\xf6\xef\x92\x95\xe2\x20\x72\x31\x59\xb4\xd9\xbe\x70\x1d\x0d\x13\x24\xb5\x61\x18\x71\x02\x9f\x8a\xd9\xa4\xf9\xa0\x5e\x04\xd1\xf2\x24\xa8\x74\x77\xc2\x1a\x9f\xee\xfc\xe3\x68\x49\xff\xa5\x7f\xe8\x79\xc8\x9f\x17\xd7\xcc\x5b\x9e\x5f\x4b\x36\x54\x0d\x72\x6c\x45\x82\x62\x1b\x42\xee\x0f\x24\x89\x31\x9d\xf9\x81\x08\x03\xb4\x72\x93\x29\x7a\xec\x87\xcf\x34\x29\x1c\xc7\xeb\xf5\x7a\xab\x73\x6a\xc9\x5d\x62\x2a\xcb\x3d\xb5\x0d\xc6\xbe\xb6\x31\x97\x99\x3b\xb0\x14\x6b\x5e\x35\xb5\x1e\x23\x90\x89\xcd\x56\x7f\xcb\x5a\x6b\xe7\x7f\x76\xd5\x34\xfa\xd6\x56\x3a\xfb\xca\x35\x5f\xfe\x7b\x09\xca\xba\x7b\x40\xbb\xe2\xfe\xf9\x94\x47\x8b\x23\xc4\x23\xd9\xf6\x46\x7e\x8d\xfb\x0d\xa2\x98\x67\xa4\x1c\xb6\x1e\x07\xb7\x86\xdb\x46\xd7\x5b\x04\x06\x8e\x5d\x23\x84\x05\x12\xaa\x0f\xd8\xff\x26\xb3\xab\x07\x11\x81\x26\x15\x2c\x2b\xca\x88\xf0\x77\x25\xca\xa1\x3f\xca\x0e\xdf\xf6\x5d\xf7\xf3\x73\x1e\x43\x71\xda\x50\xfe\xa9\xde\xd7\x5c\x1e\x2e\x37\x60\x82\xb6\xd5\x1c\x7e\x3d\x6f\x55\x12\xa0\xef\x20\x2f\x00\xa2\xff\x4b\x52\x94\x42\x1f\x3d\xc4\x93\xd2\x0d\x8c\x42\x69\xf1\x39\x07\xd4\x33\x56\xbb\xba\xd9\x75\x41\x3c\xb4\x9d\x7d\x33\x2e\x37\x29\xa9\x12\x09\x69\x65\x61\x84\xc7\x9b\xe3\x08\xfd\xe4\xb4\x79\xa3\x03\xcf\x42\x6f\xe6\x17\xd5\x69\x21\x01\x39\xf9\xd1\x59\xff\x80\xf3\xdb\xd8\x98\xbb\x47\x1b\x87\x7c\x20\x8e\x65\x2b\xdc\xf2\x5c\x89\xb4\xd2\x41\x59\xd3\x30\xd3\x7c\x5a\xfa\x1a\x83\xc5\x9c\xea\xb1\x85\x73\x1b\xc6\xfa\x4f\x6d\xe3\x1c\xd9\x54\xb5\x62\x6d\x9f\x15\x26\x49\x7e\x0b\xdc\xa6\xc5\x3f\xd8\x32\x07\x61\xc9\x3e\x45\x4b\xc7\x2a\xe7\x16\xce\x49\xea\x99\x9a\xe5\x9e\xf4\xd1\x8e\x45\x44\xef\xb1\x79\xff\xd8\xbf\x27\xb5\xf3\xea\xa5\x44\xdd\x47\xc3\xf9\xec\x82\xd6\x64\xca\x61\x11\x5f\xa3\x5a\x9f\x14\x70\xa1\x26\x6f\x03\xca\xf6\x86\x94\x28\xdf\x82\x21\xfd\xb4\xc1\x19\x9a\x55\xe0\x7a\xed\xbb\x4f\x56\xcb\x2b\xba\x7f\xc8\x52\x1e\x5c\x17\x5d\x0a\xf8\x08\xed\x0b\x05\x25\xa1\x8a\x61\xbe\x71\x72\xfa\xb0\x35\xc4\xc4\x20\x8e\x9c\x3f\x36\x8e\xdf\x37\x76\x3e\xf2\xc8\x18\x49\x17\x44\x05\x63\x58\xb4\xf9\x60\x30\x09\x27\xfb\x0f\x19\xb0\x8a\xc2\x32\x15\x0f\x13\x42\x4b\x6b\x27\xe8\x8b\x8b\x68\x54\xe9\xc5\xc1\x04\x24\x9c\xc7\x40\x2b\x48\x52\x93\x3e\x98\x23\xd1\x55\x54\x87\x8f\x2f\x9a\xb8\x26\x1b\x36\x72\x31\x4e\x6b\x95\xec\xc0\x3a\x52\x8a\xf1\xa8\x28\x3e\x9e\xcf\xa5\x67\xb8\x92\x71\xcb\x59\xd7\x97\x2a\x23\x18\xf1\xcf\x7b\x0f\x93\x5d\xc3\xcd\x5b\x9f\x06\x2e\xb6\x97\xeb\x53\x30\xf1\xa6\xe9\x42\xcf\x95\xbb\x08\x8b\x35\x49\x88\x26\x8d\x55\x5f\xd1\x19\x1e\x35\xb3\x19\x5a\x5c\xfd\xd6\x11\x93\x72\xb6\x9f\x14\x63\x2c\xdf\x7f\x9b\x0e\xce\xb5\x7a\x0d\x25\x51\xb9\x4a\x89\x0e\xdd\x88\x68\x81\x77\x25\xf3\x84\xed\xd3\x00\xff\x66\xff\x55\x73\x7c\xf6\xf3\xe3\xb7\x31\x71\xaa\xa2\x73\xa3\x15\x93\x75\xa2\xb6\x9a\x51\xc4\x1c\x06\x0b\x31\x78\xda\x41\xc4\x6d\x16\xba\xad\x52\xd7\x1c\x1b\x56\x9d\x5e\xa4\x57\x1d\x1b\xbc\x44\xfe\x8f\xba\xdf\x91\x45\x02\x1f\x16\xad\xb8\x50\x22\x12\xfa\xcb\x56\xfd\x8e\x7b\x5b\x9f\x1c\x3d\x1a\x9f\xf8\xbf\x78\xa6\xe9\x82\x48\x19\xc3\x9d\xe0\xba\x7e\x87\x07\xa9\xf5\xbb\x33\x28\xb6\x20\x21\xb5\xa8\x27\xe7\xa7\xa5\xfb\xb8\x29\x27\x29\x96\xac\x18\x5a\x85\x14\xd7\x07\x97\x7a\xae\xb4\x5c\x5e\x8c\x8f\x9e\xae\xaf\xd4\x77\xdf\x9c\x05\x2b\x5e\x7a\xe1\x4b\x12\xde\x8f\xbc\x21\x34\xc7\xf2\xee\x3f\x29\xc5\x93\x0f\xe9\xba\x77\x9b\xd7\xd6\xfd\x83\x26\xce\x7b\xad\x18\xec\x49\xbe\x6f\xd9\xee\xe3\x47\x35\x14\x34\xa1\xe8\xdd\x5b\x94\xf9\xab\x63\xfb\x57\x4c\x34\x38\x94\x3a\xac\xc9\x69\xef\x8c\x2f\xbc\xa7\xdc\x53\xf7\xe0\x7d\xbb\x14\x73\xfc\xef\x55\xc5\x6b\xce\x6b\x2a\xc1\x9a\x85\xd5\x0e\xba\xa0\x2f\xd3\x3d\xfa\xe9\x90\xed\xaa\xc5\xbd\x2f\xcd\x97\x86\xd7\x8b\x3b\xa5\x6a\x37\xcc\xce\x6e\x96\x17\x08\xac\xa8\x25\xde\xf8\xac\x0a\x51\x9f\xa0\x3f\x08\x93\xbf\x1e\xb4\xe0\x51\x92\x1e\x0b\x2a\x28\xfa\x58\x5e\xc3\xfd\xa0\x88\x93\x24\xbe\x51\x10\x96\x5d\x4d\xab\x30\xdc\x46\x60\x4b\xc8\xc0\x8f\xae\x56\x70\xa2\x7f\xdf\x5f\xa5\x3a\xf3\xf5\xe6\xc7\xd0\x3c\x44\x88\xd9\x69\xd9\x68\x3d\x5a\xb2\x98\x3e\x4d\xe0\x20\x19\xe2\xe4\xad\x74\xd7\xce\x19\x5b\x8f\x88\x08\xfb\x28\xc7\x9a\x1c\x02\xe0\x00\xc9\x69\x61\xca\xd8\x65\xfc\x08\xeb\x36\x2e\x11\x78\x95\x0c\x64\x06\xc2\xe1\x4f\xce\x29\x64\x07\xb4\x6e\xe8\x9b\x08\x52\x9b\xba\x1f\x3a\x2e\x07\xba\xb6\x28\xac\xb7\x63\x3f\x5e\xf3\x7f\xa5\x6e\xed\xd3\x9f\x16\xdf\x14\x10\xa2\x1f\xab\x93\xde\xae\x76\xac\x9b\x35\xff\xc1\x6b\x50\x0b\x1c\x92\x5e\x5a\x42\xc9\x1f\x8b\x70\x6d\xbe\x99\x2f\x6a\x6c\x59\x2e\x8f\x96\x2a\x9d\xfe\xcb\xfb\x0d\xe9\x1a\x67\xbb\xff\x82\x22\x68\x89\x1b\xd1\x81\x41\x87\x94\xb8\x28\x73\x23\xd7\x7d\xa6\xa0\x2f\xc9\x3d\x7a\x49\x76\x7c\xdc\x73\xc0\x9f\xdf\x72\xc6\x47\x5c\x16\x4f\x08\x4e\x07\x2e\x0f\x2b\x6b\xcd\x43\xb2\x62\xac\x21\x9d\xce\xb2\xa3\x30\x32\x7b\x80\x65\xd9\x3e\x67\xc1\x5a\xa2\xa9\x99\x70\x7f\x9f\x90\x50\xa5\xda\xac\x73\x34\x05\x35\x7a\x63\x76\x4d\xba\x7d\x01\x62\x2d\x06\xbc\xed\x3e\x6e\xc7\xac\xf8\xc1\x3c\xcb\x1d\x6c\x9f\x91\x12\xa9\x44\x50\x9e\x98\x49\x33\x4a\xdc\xa9\x07\x32\xa5\x5d\xc2\xcf\xa5\xe9\x95\x09\x61\x49\xb5\xd0\x95\x3f\x87\xee\x2a\x1e\x4a\x4b\x48\x2c\x4a\xaa\xf7\x62\x5a\x22\x38\xd8\x1a\xa9\x08\x14\xa1\x76\x4a\x88\xe7\x4f\x33\x09\xc0\xc7\xf7\x53\x9b\xd6\x4b\xf3\xf3\xf7\x3c\x9d\x47\x61\xf4\x32\x3d\x7c\x2e\xbf\x55\x2e\x2c\x1f\xf9\x12\xbe\xba\x99\x99\x6c\x89\xb8\xaf\x5c\x7b\xd0\xfa\x64\xb8\x99\xa8\x99\x2e\xc5\x24\xbb\x5c\xd5\x2c\x18\x8c\x34\xeb\x6a\x9d\x9f\xb5\x3d\x46\x5a\xc7\x75\x5f\x61\xca\x3d\x3d\x6a\x7d\x1d\xb1\xdd\x49\x85\x73\x6d\x1e\xa6\x55\xc8\x55\x7a\xdf\xbe\xd9\x38\x67\x9d\x04\x07\xd4\x65\x24\x71\xbd\xe3\x4a\xb8\x3c\x51\x07\xdd\xda\x9e\xf9\x40\xa0\x9f\xc5\x3d\xe0\xf6\xe1\x56\x08\x40\xaf\xc5\x31\x47\x9d\xfd\xae\x8e\x7f\x30\xc9\x86\xf9\x5e\xa6\x95\xed\x2f\x75\xe0\x7b\x3f\x9f\x8c\x2d\xba\x78\x47\xd9\x27\x7e\xad\x25\xa1\x95\x74\xfc\x65\x28\x80\xbb\xc1\x64\xe7\xd7\x66\x0e\x4e\x18\x4c\xd3\xee\x1c\x23\x8c\xa7\x63\x63\xd9\x14\x3f\xa6\xef\x25\xe0\x54\xff\xc7\x3a\x04\x74\x7f\x06\x97\x49\x06\xa4\x0d\xa3\x43\x60\x4a\x94\xc6\x36\x40\x6e\x12\x2f\x78\x3d\x29\xe4\x6c\xfe\xa7\xab\x12\x55\x6b\x1f\xa3\xab\x7b\xd9\xcb\x65\xe3\xd4\x22\x83\x15\xaa\x78\xdd\x6a\xf8\xca\x89\x5c\xb4\xdc\x21\xba\xcc\x52\xb1\x91\xb5\x7a\xd5\xa6\x5d\x9f\x76\x0a\xf3\xfb\x6f\xf1\x21\x61\xcf\xe6\xa3\x08\x93\x9b\xee\x77\x9b\xaf\xf4\x4f\x6a\x6d\x5d\x10\x2a\x67\xf4\x21\x7f\x78\x89\x0b\x61\x3f\x14\x08\x18\x26\xc1\x61\xb8\x85\x24\xd9\x61\x92\xb5\xde\xab\xa7\x1a\x3f\x58\x88\x37\x8d\x74\xf3\xf2\x70\x48\x6b\x23\x21\x2d\x40\x29\xfd\x8c\x2f\x32\x26\x42\xf1\xb5\xc9\xfc\xfe\x2c\x1a\x04\x16\x21\x4b\x9d\x62\x63\xdb\x58\xa2\x3c\x97\x92\x36\xdb\x72\x0c\x60\xa7\xcb\xe9\x98\x5d\x70\x36\x19\xae\xa1\x3c\x9f\xf6\x3e\x55\x3f\xeb\x3f\xba\xde\xa6\xe6\xae\xb8\xe5\x69\x76\xa2\x55\x49\xa1\x6f\x34\x3e\xb4\xde\x54\xeb\x12\x28\x10\xd4\x65\x54\x54\xec\x1e\x4b\x8f\xd3\xea\x28\x2f\x7a\x8a\x87\xc9\x74\x7e\xbd\xd3\x99\x10\x90\xaa\x13\xfa\x5e\xae\xf9\x52\x32\xe4\xe4\x3c\x28\x7d\xa7\x3a\xfe\xa9\x84\x6a\x71\x92\xf5\xc4\x8c\x71\xe7\xc7\x60\x21\x16\x76\x51\xe4\x01\x2f\x94\x4f\xb1\x16\xff\x17\x16\x19\x13\xf0\xb3\xc3\xf0\xdd\x88\xe4\xa4\xeb\xf9\x29\xb1\x26\x86\xef\x33\x11\x4d\xf9\x37\x71\x13\x4b\x3a\x2f\x65\x22\xec\x63\xa5\x27\xe7\x85\x65\x2f\x12\xc9\x8d\xec\xf6\x1d\xf7\x75\x2c\xcf\x0d\xbe\x44\x6a\xf4\xbe\x3e\x26\x09\x9e\x58\x80\x3f\xef\xf9\x3a\xef\x45\x42\xf0\x2d\x06\x17\x1f\x3c\x0b\x34\xcb\xaf\x12\x99\xfc\x16\x54\x1c\x04\x4b\x0c\x34\x34\x18\x24\x37\x97\xd8\x43\x38\xe7\x85\xfc\x2f\x38\x95\x74\xb4\x16\x1d\x9c\x3c\xa9\x30\x38\x58\xe2\x0f\x38\xb4\x03\xde\xfb\x87\x48\xec\x56\x87\x4f\xc7\x99\x78\xe9\x89\xfc\x77\x7f\xb8\x85\x37\x8d\x83\x54\xf6\x36\x59\xdb\x72\xf8\x0c\xb8\x49\x8b\x1c\xda\xda\x9d\x3f\x95\x52\xd6\xda\x55\x32\x95\x94\xcd\x43\xbb\xfc\xfb\x48\x27\x83\x66\xda\x0e\x67\xf3\x4b\xf9\x7d\x96\x48\x1c\xb4\x24\xb1\x2f\x49\x72\x2b\x64\xc7\x88\x04\x56\x76\x7c\xab\xb9\x78\x05\x4c\x65\x58\xcd\x3e\x51\x35\xbe\x78\xdf\x88\xf3\x79\x56\x46\xce\x46\xa4\xe3\x0c\x33\xd2\x98\xe0\xbb\x6e\xbb\x90\xc8\x42\xf3\x16\xc5\xce\x86\x98\xfd\x69\x62\xbe\xd9\xcb\x69\x25\x53\xcb\xc6\x95\xa8\xa8\x8b\x8a\xd3\x2a\x66\x42\xe1\x55\x7e\x9b\x75\x6e\x19\x26\x9c\xd4\xfa\x13\xaa\xb3\xe8\x96\x4f\x57\x81\x8f\x41\xb9\xaf\x7b\x03\x18\xf5\xce\x4d\xda\x86\x6b\x85\xa6\xe2\x0d\x55\x89\x98\x23\x26\xba\x4e\x98\x02\x5a\x63\x83\xe5\xb6\x37\x6f\xda\xd3\x46\xa6\xe5\x3c\x95\x96\xae\xd1\x8e\x52\xda\x06\x06\x03\x3c\xdf\xd3\xbf\x1e\x75\x3e\xef\x8e\x83\x50\x0b\x2b\xf4\x6f\x96\xa6\xb7\xd5\xf0\x6d\x5c\x78\x9f\x8f\xf2\xb7\x48\x76\x3c\xfe\x4d\x4a\x13\xb9\xc9\x9a\xe3\xd1\x59\xca\xbd\xbc\x69\x40\xa1\xcb\xe0\xd7\xd4\xf0\x31\x58\x98\x3e\x77\x07\x21\xa7\x52\xbf\xd9\x57\x19\xe2\x81\xf6\xca\x1f\x89\xa3\x38\xd1\x27\xc0\x29\x26\x27\x02\xc6\x4c\x7e\x21\xa2\x32\x74\x2b\x8e\x06\x30\xb1\xb4\xbe\xd9\x9d\x23\xb1\xbe\xef\x58\xba\x5c\x74\x43\x0d\xa9\x65\x5e\xe7\x65\x3b\x58\xf2\xf8\x15\xc2\x26\xe2\x26\x2c\xb1\x8c\x72\xe9\x77\xd0\x68\xf8\x48\x84\x31\x1d\xec\x35\x9c\x95\x11\xb8\x6b\x29\x8d\xe8\xd6\x5e\x19\xbd\xf3\xc8\x0f\x70\xf4\x76\xdd\x10\x02\x36\x03\xe8\xfb\x50\xd1\x7c\xe8\xee\x2f\x96\x74\x12\x27\xa7\x0c\x27\x48\x6a\xe4\x2a\x57\x9d\xf3\x4b\xff\x36\xa7\x2b\x06\x2b\xfa\xbc\x1c\x33\x85\x95\x38\x3c\x2d\x84\x47\xd6\xda\xf6\x4b\x2e\x73\x8a\x13\xe6\x8b\xe9\x2a\x9b\x2c\xcb\x3b\x9d\x3c\x5b\x54\x52\xd7\x98\xb4\xf5\x72\x2d\x24\x67\xcc\xd6\x95\xe5\xff\x96\x73\x26\x4e\x8c\xe1\x98\x53\x2a\x53\x48\x72\x99\x46\x42\xe6\xe0\x32\x99\x22\xf0\x73\xca\xb3\x5c\x50\xa9\x50\xc0\x6a\x8a\xdd\xb7\xcb\xc2\x6b\xd0\x08\x93\xa7\x7c\x2b\x33\xaa\xe5\x66\x69\xf1\xab\x29\xb0\x6a\x1a\xfe\x2e\x4b\x27\x2a\xb2\x2b\x20\xa3\xac\xf3\xa8\x6f\x75\x6b\x9c\xd7\x2b\xc3\x15\xc6\xca\xee\x7e\x23\xd0\xe2\x49\x86\x6a\x48\x75\xd5\x91\x3b\x64\x1c\x09\x44\x22\x1f\x56\x04\x13\xa5\xb9\x47\x78\xb5\x2e\x2e\xfa\x03\xe4\x82\xac\xfd\xba\xc5\xbc\xc7\x36\xe2\x8b\xc2\x7a\x77\x6f\xf5\x26\x23\x09\x41\x4a\xe6\xa2\x25\xac\x6d\x1a\x1e\xa1\x24\x0e\x00\x8b\x87\x64\x01\x69\x1c\x9f\xc3\x40\xb6\xa4\x68\x2b\x46\x24\xd8\x3f\x31\xfa\x69\x29\x42\x46\xed\xa5\x4a\x01\xe2\x92\xf5\xd9\x07\xf6\x66\x64\x6d\x7c\x92\x64\x78\x38\x59\xc6\x69\xba\xa0\x84\xc6\xad\xb3\x69\xa4\x88\x01\xcf\xf7\x75\x05\xa5\x72\xfb\xf1\x29\xa3\x5d\xbc\x47\x59\xdd\x91\x61\xb9\x25\x33\x06\xf3\xa4\xf9\x91\x77\xb1\x89\x74\xa2\x44\x45\xcb\x48\x8b\xd4\xd3\x9a\xff\x1d\x5d\x58\xcd\x70\xbb\x88\x44\x76\xc2\xe6\xf3\x34\x34\x42\x06\xa7\x07\xfa\xd5\x27\xbf\x9d\x6a\x79\xf1\xd1\x3f\x3d\x3e\x7f\x76\xc0\x8a\x11\x5a\x22\x89\xdc\xee\x8e\xc6\xbe\xf3\xe9\x5a\x70\xfc\xa8\x1e\xdb\x4f\x03\x6d\x44\x01\xaf\x31\x0a\x0e\xeb\x05\xb3\x2b\xc3\x64\x3f\x95\x34\x69\xd6\x3f\xa8\x1b\xf7\x94\x34\x2c\xc0\x3f\xf5\x0b\x2d\x89\x0a\x1d\x4f\x34\x4c\x91\x88\x3f\x19\xfd\x26\x57\xb0\x87\x94\xbd\x8d\xe7\x97\xfc\xe7\x90\x61\x48\x8f\x00\x88\xc9\x7b\x66\x88\xef\xdf\x4f\x9a\xb3\xde\x91\x41\x82\x1b\xbf\x21\x9d\xd5\xe6\x20\x75\x5c\x37\x90\x18\x47\x89\x43\x7b\x91\x38\xf8\x21\x6e\x03\x94\x44\x92\x3c\x3e\x11\x06\x32\xda\x30\xe4\x63\x4e\x91\x7e\x6e\x7d\xc5\x61\x13\x8e\x50\x77\x99\xf9\xfb\x40\x23\xee\x0f\x52\x4a\xc3\x1c\x1c\xc3\xf9\xae\x1d\x81\x9e\x93\xc5\x2c\xeb\xa3\xae\xb5\xec\xa9\x43\xfb\xd8\x8c\x28\x5a\xfe\x18\x82\xe0\x46\x51\x7b\xdd\xda\x56\x57\x85\xf6\x97\xa7\xcc\xef\x29\x22\x0b\xa5\xf0\xd1\xa8\x7a\x3c\x13\xf0\x30\x42\xc2\x05\x50\x64\x44\x14\x9b\x88\xf9\xd7\xc6\x48\x0e\xd9\x8a\x35\xab\x4e\x34\xa2\x8c\x58\xc5\x53\xd2\xf0\xf5\x51\x16\x6c\x47\xc3\x8a\xd9\x8f\xa2\x22\xf9\x02\x42\x6a\xff\x69\xae\x38\x4b\xeb\xf2\x90\xf1\x4d\x37\xef\xb7\x38\x12\xdb\x56\x36\xbc\x8e\x70\xc3\xfb\x78\xd5\x95\xf0\xfc\xcb\xc3\x7a\xd9\x42\x2e\x73\xeb\xd9\x39\x96\xc0\x3e\x33\x16\xac\xf9\x5d\x05\x4f\x35\x6b\xf7\x82\x9a\x92\x62\xf6\x91\xe6\x3a\x65\x82\x9b\xd3\x3a\xd6\xeb\x2b\xb6\xf4\x0f\xa4\xc6\x24\xba\x28\x57\xd2\xe1\xc3\x1f\xaa\xbf\x22\x6b\x2d\x98\x98\xca\x38\x8b\x89\xa2\xee\xcb\x62\x71\x4f\x76\x44\xb2\xcd\x20\x15\x2b\x6a\x49\x15\x2c\x53\x62\xcd\x0f\x84\x39\x50\xd5\x41\x79\xa8\x20\xfc\xc9\x55\xa8\x76\x3c\x41\xa8\xb7\x2f\x6e\xb9\x12\xfc\xef\xa1\x7f\x71\xd8\x11\x02\xd0\xc0\x3e\x8c\x81\xbe\xd8\xb1\x10\x53\x3a\x7a\x28\x04\x26\x2a\x78\x26\x21\xe7\xe2\x09\x29\x7d\xf2\xa8\xf0\xb7\xeb\x66\xe2\x17\xfb\x26\x1e\x65\x14\x93\x9f\x62\x01\x10\x00\xba\x3e\xbb\xf3\xeb\x46\x6f\x1b\x9b\x8b\x35\x3e\x29\x21\x2d\x2e\x29\x29\x29\x0f\xc9\xc0\x3b\x45\x5e\x67\x1c\x2f\xc1\xd0\x41\x55\x37\x9d\x96\x24\x00\x1d\x86\xb3\x32\x98\x52\x0d\xf9\xef\xe4\x07\x64\x33\xd5\xbf\x24\x9e\xc2\xc3\xe0\xdf\xb6\xc3\x8d\x62\xa7\x4f\x93\xb0\xad\x03\x1c\xbf\xd6\xe3\x34\x33\xcb\x27\xd8\x44\xe0\xf6\x28\x8f\x41\x65\x0c\x7c\xe6\xd7\xe5\xa5\x41\xa5\x69\xe1\x58\xed\x35\xc6\x7e\x72\x62\xd5\xe5\xcd\x8e\x94\xc9\x84\x34\xe9\x83\xf4\x96\x22\x64\xe7\x62\xf9\x5c\xfc\xe6\x9e\x21\x97\xe9\xf6\xa6\x68\x6e\x1c\x6d\x16\x2b\xa6\xaa\x76\x19\x96\xf3\xb6\x2f\x27\x65\x0e\x88\x0b\x8a\x88\xff\x27\xf7\x84\xef\xe5\x3b\x7d\x1a\x3e\x54\xbf\x34\xf7\xde\x94\xa1\x55\xa8\xef\x2c\xe9\x26\x29\x1d\x4f\xcd\x1f\x33\xaa\x38\x32\xfc\x9e\x5d\x5e\xb1\xe8\xd5\xc4\xc5\xaf\x52\x3c\x56\x69\x6d\x2d\x87\xe5\xa6\xef\xea\xac\xee\x94\x85\x3b\xe8\xf7\x4a\xec\x98\x35\xbd\x3c\xbb\x6c\xb3\xfa\x3d\xb6\x96\x52\x63\xb9\x3f\x35\xb1\x51\xc3\xbf\x80\x89\x9b\x0f\x6b\x19\x16\xa6\x02\xbe\xb0\xe9\x7a\x3e\x34\xbd\x57\xab\xcb\xcb\x97\xc1\xfd\x74\x1d\xbd\x53\x81\x1b\xfc\x76\x76\xc1\xc2\xb9\x04\xe9\xc6\xcc\x52\x60\x74\x4e\x98\xe0\x65\x82\x4c\x64\xc3\x3e\x65\xcb\x84\x1e\xe4\x14\xf3\x4a\xb8\xab\x1e\x72\x80\x0c\x8a\xf8\x24\x25\x11\xe3\xc6\xad\xa9\xe8\xdf\xef\x47\x66\x69\xe0\x1f\x4e\xca\x2d\x84\xe8\xe6\xd3\xee\x09\xe2\xc3\x09\xc2\xef\xec\xb9\x79\xbb\xe1\x1b\x3c\x32\xc4\xf8\xb5\x5e\xfa\x84\xf5\xf7\xf4\x0a\xc1\x2b\xf9\xde\xb6\xe0\xb3\x30\x0e\x12\x5b\xc1\x9f\x84\x1e\x1c\x7a\xe4\x9a\x10\x2c\x80\x93\x69\x97\x7e\x9a\x14\x1c\x82\xae\xcf\x93\xb9\x18\x75\xce\xac\x72\x85\x8a\x75\xfc\xb5\xc9\xf2\x74\x08\xd6\x19\x90\xf1\x23\x6b\xe3\x0a\x19\xf5\xd2\x60\x88\xe0\xf3\xd3\xba\x7a\x52\x09\x9c\xfe\x16\xf9\xa7\xc2\x31\xff\x75\x99\xc3\x35\x8b\xd9\x9c\x79\x79\xd0\x54\x2e\xdf\x74\x70\x86\xb0\x0f\x37\xab\x78\xe8\x92\x2e\x83\xa7\x89\xbb\x4f\x3a\xbb\xd6\xd2\x5e\xef\xe8\xd9\xc2\x29\xf2\x27\x51\xc0\x62\x65\xce\x3f\xc0\x3f\x23\x2b\x6c\x09\xa2\xa6\x6d\xbf\x9b\x5c\xac\x01\xa4\xe7\xc2\x1d\x9f\x42\x96\x86\x1e\xaf\x56\xb2\x77\x00\x59\x97\x49\x59\x95\x53\x0b\x0b\x0e\x95\x2c\xaf\xad\x33\x63\x18\x1b\xad\x9e\x43\x9a\xc6\x1b\x6d\x72\x81\x62\xa0\x61\x79\x17\x9d\x78\x30\x77\x94\x73\x3a\x77\x14\xa5\x60\xb0\x44\xd9\xda\xa8\x42\x75\x58\xe4\x94\x95\x3d\x70\xcd\xd2\xb6\x7b\x18\xab\x34\x4f\x23\x20\xf1\x32\xa6\x12\xb1\x7c\xfd\xf9\xf2\xf7\xc6\xde\xd8\x7b\x95\x99\xdf\x69\xd5\xfb\xd8\x80\xb5\xe1\x8c\x4d\x25\x7c\x0e\x12\x63\x8b\xad\x2d\x55\xae\xc5\xf8\xd2\xf8\xd1\xfa\x66\x49\xf9\xfd\x71\x31\x9b\x23\x43\xe7\xd6\xf7\xa6\x62\x7a\x9b\xe3\xc7\x9c\xd2\x34\x01\xa7\x1c\xde\xd6\xb6\x31\x9d\xe6\x7b\xff\xf0\x39\x14\x94\x43\xd4\xd3\xc1\x75\x71\x67\xee\xe1\x95\x5d\x2c\x3b\x56\xf5\x3f\x24\x2e\xd2\xae\x9e\x20\x64\x76\x81\xa7\x7a\xd8\x72\xf9\x08\x92\x78\x28\x21\xd5\x73\xff\x87\x73\x22\x16\xf4\x7c\x79\x95\xd3\x3f\x6f\x16\x92\x58\x05\x3f\x3e\xb9\xf4\x68\xa9\xb1\xe3\x33\xcd\xaa\x8c\xfe\x75\xa4\xe6\xbd\xcc\x3e\x91\x5f\x30\xd6\xf8\xde\xbf\xe7\xef\x7c\xfb\x4c\x48\x69\x5a\x3f\xde\x57\xd3\x5b\xef\xd5\xee\xd5\xa5\x7e\xd7\xdf\x9c\x76\xf7\x74\xf2\x44\xbc\x55\xe0\x50\x6d\xba\xdf\x17\x8e\xa1\xa1\x11\xf0\xad\x85\x77\xbd\x1d\xe1\x40\xdb\xff\x69\x8f\xd1\x4b\x3a\x9d\x25\xc1\x27\xda\x45\x11\x5e\x2c\x1a\x88\xfc\xf1\x0f\x0f\xe7\x52\x4b\x83\x78\x62\x09\x76\x87\xfe\xad\xc2\x14\xea\xeb\xe9\x7e\xa1\x68\x0a\x2d\xf4\x65\xb7\x85\x97\x3e\xea\x76\x45\x8c\xb7\xc7\xa0\xd3\xf7\xb7\x7b\xa9\xd2\x36\x8b\x06\xf7\xbe\x17\xdb\x96\xf8\xda\xfb\xdc\xc6\x96\x0b\xed\xca\xab\x9b\xcf\x4a\xc3\x96\x4c\xbb\xd9\xd3\x07\x61\xf7\xbe\xb9\xe9\x67\xf7\xd8\xab\x75\xbe\x47\x6d\x91\x47\x4b\x01\x6e\xe8\x50\xd0\xaf\xd1\x00\x06\x14\xe8\x1f\x25\xf1\x7e\x6e\xb2\xbb\x1f\x5f\x15\xef\x47\xb0\xb9\xe7\x2a\x63\x5c\x15\xef\x2c\x5f\x36\x53\x13\xe8\x8c\x9d\x4c\x11\x10\xb8\x29\x70\xd4\x89\xe2\xcd\x97\x54\x16\xdc\x7c\x2b\x19\x68\x60\x79\xf5\x6c\xb2\x04\x36\x17\x9e\x1e\x9e\x32\xb3\xcb\xb3\x59\xcf\xee\xa6\x6b\x4e\x91\x53\xc8\x88\x79\xbf\x1d\x9c\x26\x55\x8b\x9e\xdb\xcf\x97\x03\x5f\x69\xbc\x2e\x2a\xca\xa9\xb2\x4d\x46\x6a\x8a\x0d\x4d\x2d\x7b\x64\xac\xf5\xea\x16\xac\x72\x39\x57\x34\x8f\x6d\xa6\x7e\xd7\xe2\x64\xeb\x8e\x7f\xd4\x58\xaf\xf4\x8b\x08\x73\x09\xdc\xbe\x4b\xf3\xb6\x8a\xaf\xe6\x4c\x93\x0c\x16\x4b\xde\xab\x71\x1b\xc4\x61\x42\x3d\xdd\xf5\x1a\xc5\xf6\x21\xd9\x7a\x3b\x94\x8a\x52\x27\xc6\x87\x7f\xb1\xda\x97\x33\xe7\x1c\xa7\x63\x7f\x7e\xc2\x27\xbb\x63\xfb\x4e\x31\x47\xc6\x32\xf8\xe8\xe6\x7f\x0a\x61\xf1\x93\x39\xe2\xdb\x24\x53\xe3\xea\xd1\x9c\x2d\x8a\xa9\xda\x45\xdd\x9e\xc5\xfb\xfb\xd5\xc6\x59\xdc\xa1\xa4\x69\xf9\x20\xbc\x0f\x39\x7e\x36\x85\xe3\xbc\xd7\x31\x5e\xa7\x46\x9d\x90\x51\xb9\x8a\xb8\x53\x91\x8a\xf8\xa3\x08\xa6\x49\x4b\x69\xa5\x37\xfe\x8b\x0e\xfb\x9d\x8d\xa9\x90\x76\xf8\xe5\x52\x41\x1f\x96\xe8\xbd\x61\x37\xd6\xcf\x0c\x06\x96\xda\x92\x32\xd6\x1c\x3f\xc9\xe6\xda\xe4\xa8\xa9\xc9\x75\x5c\x4b\x0b\xf5\xa4\xbb\xa6\xa3\x9f\xc9\xb9\xa2\x5b\x37\x9b\x91\xb3\xd1\x53\x2a\x54\x3f\x16\x8b\xb2\x3f\x3d\xff\x11\xcc\x30\x49\xf0\x0b\x10\x04\x54\xb0\x00\x75\x86\x24\x23\x54\x7c\x22\xa4\x54\x1b\xb2\xc4\x43\x7d\x08\x34\xe1\xef\x89\x1b\x1a\x9a\x4e\x50\x5f\x9f\xc9\x07\x47\x2d\x5f\xd0\xef\x5d\x92\x19\xdf\x79\xcd\xcf\x11\xd7\xba\xa9\x86\xbf\x9f\xcc\xe0\xa7\x5c\x47\x99\xc2\x6f\xf7\x14\xeb\x28\x47\xf4\x84\x79\x03\xb6\xa1\xfa\x55\x11\xb3\x8c\xe1\x69\x79\xd8\xdf\x26\x6f\xf5\x9e\x46\x41\x8a\x60\x1e\x29\x3a\xa9\xe2\xb9\xc1\xf5\x39\x02\xc8\x70\x59\x8a\x4b\xd1\x80\x7e\xda\x31\x67\xd4\x6c\x35\x45\x34\x72\x31\x6c\x74\xde\x04\xda\xe9\x3d\x68\x5d\x78\x0d\x7d\x00\x1d\x6d\x00\x9f\x10\xd1\x29\xe1\xc7\x65\x8a\xc0\x5d\xd7\x9f\xbb\x11\x41\xcd\xd3\x7d\x3e\xb2\x35\x16\xf5\x9b\x21\xa8\xd4\x5c\x22\xd9\x19\xb0\x1c\xd1\x33\x1f\x4c\x94\x7d\xc5\x5f\x3d\xe1\xf6\x65\x46\x58\x24\xf0\x2a\xe0\xab\x1e\x7d\x2d\xde\xee\xad\xbf\x2c\x9b\x20\xa1\xb7\xf8\x45\xd2\x5a\x93\xdc\x67\xc4\xd2\x72\x47\x4c\xf5\x72\x3e\xa6\x11\xd0\x7c\xaf\x42\xd2\x3f\x7e\xf4\x9b\x75\xd4\x5e\x6b\xc4\xde\xa7\xb1\x7c\x5b\x7c\x90\xb1\xb2\xaa\xd0\x4b\x30\x27\xe9\xa2\xfc\xe0\x2c\x26\x8a\x7e\xe1\x0e\x4d\x6a\x6e\xe3\x52\x37\xac\xc0\xe3\x5f\x5c\xf6\x30\xab\x9f\x1e\xdc\x27\xbe\x5a\xc1\xb5\xb2\xe4\x66\xd1\xb0\xfc\x03\xa6\x49\x24\x9d\xb9\xc0\xa1\xa2\xca\xb6\x96\x56\x88\x00\x16\x27\x55\x3b\x7e\x46\x3d\x65\xd1\xfb\xa0\x52\x1a\x7b\x73\x59\xf7\xc7\xd3\x05\x8f\x5f\xe5\xc9\xf8\xdd\x40\xad\xf6\x71\xdf\x89\x75\x7a\x6b\x2f\xc7\x8a\xc5\x84\x45\xb6\xdd\xf5\xd0\x8b\xd5\xd5\x5c\xbf\x9e\x31\xb0\x5b\x5d\x7d\xdc\xd8\xfe\xfe\x04\xda\x5e\x29\xe1\x52\xa5\xea\x4b\x3c\x08\x2a\x6a\xf4\xca\x63\x4a\x17\x9c\xb8\x28\x22\xa5\xb6\xc4\xa8\x72\xd1\xc1\x9f\x75\x56\x9d\xe1\x0e\x81\xd3\xe6\x84\xac\xcc\x75\x80\xdd\x33\x57\xbb\xa2\x4c\xbd\x7d\x5e\xd8\x51\xd1\x70\xe8\x59\xd6\x51\xf5\xe4\x59\xf2\x0e\x62\xf3\xba\x4d\x68\xc0\xf8\xab\xc4\x11\x87\x3d\x27\x7b\x32\x58\xf0\xb7\xe5\xe6\x1f\xed\xae\x6a\x52\xbc\x06\xe7\xa8\xad\xc1\x4d\x86\xe4\xc2\x9f\x6b\x6b\x5c\xa0\x6e\x51\xd0\xca\x63\xe0\x51\xe3\x37\xe4\x0b\xbf\x6a\xa5\xc3\xa5\x29\xc1\x04\x5f\x37\x12\xf0\x42\xd2\x02\x72\xfa\xe5\x32\x07\xf9\x2b\xa9\xd1\xb8\x63\x66\x58\x34\x94\x01\x4b\x5a\x19\xe6\x11\xae\xd3\x4a\xb1\x8b\x3f\x69\x50\x6d\x44\x3d\xd6\x8e\xc6\x47\xd2\x9a\x7c\x91\x7c\x7b\x90\x9a\xd4\xde\x4d\x6d\xd1\xb2\x3f\x80\x1b\x0b\x8f\xeb\x47\xb0\x72\x5f\x07\x50\xf0\x50\x75\x4f\x97\x5c\x0e\xb5\x07\xa1\xa9\x36\x71\x52\xec\x1b\x9f\x43\x2f\x84\xe6\xab\x35\x31\x63\x2b\xab\xac\xf5\xe6\x0d\x97\xa9\x66\x4f\xfb\xfa\xf0\x2e\xf5\x4d\x6b\x43\xcf\x0f\x36\xa1\x4d\xe4\x64\x7b\x8e\x08\xd1\xf2\x98\xa2\x25\xbf\xdf\x69\x8b\x86\x82\xe0\x44\x84\x8a\x7c\xbd\x35\x18\x8c\xdc\x44\x2a\x5d\xc4\x26\x1f\x43\xf0\xb0\x08\x9b\x09\x2c\x5f\x01\xaf\x87\xaa\x1c\x5b\x52\x96\x85\x46\x27\x65\x78\x59\x52\x39\x88\x7f\x93\xad\xac\x27\xfe\x3a\x5d\x55\xa1\xd7\x1e\xf0\xcd\xb8\x53\x5d\x6f\x8e\x39\x0a\x27\x5f\x77\x57\x34\xe5\x18\x56\xde\x86\xae\xae\xb2\x8c\xb4\x1b\x52\xaa\x47\x80\x41\x95\x5d\xd9\xe4\x31\xd1\xa7\xdc\xf3\xe8\x21\x82\xb1\x47\x73\xa8\x56\xca\x12\x45\x79\x0b\x07\x63\x44\x63\x99\x43\x9b\x44\x68\x13\x74\x91\x31\x69\xdd\xc6\xf4\x72\x50\x59\xf8\x06\x5f\x13\xf8\x51\x16\x81\x60\xf9\xba\xfa\x86\x7c\xe6\xaa\x5b\x8a\x1a\x5a\x06\x98\x3b\xe5\x55\xcb\xaf\xfc\x3d\x71\x50\x5a\x49\xce\x96\xad\x47\xd6\x5b\xfb\x2b\x6f\x9e\x79\x33\x46\x8d\xb7\x91\x6e\x98\x83\x65\x45\xbf\xc8\xca\xeb\x56\xdc\xf4\xb2\x34\x70\x65\x44\xf4\xd7\xce\x4c\x37\xda\xb0\x8e\x9f\x20\x44\x1a\x21\x06\xde\x7b\xb2\x82\x21\xb0\xfc\xaf\xfd\xdf\x5e\xe7\x32\xf6\x01\x36\xe7\xe6\x16\x2f\x29\xc7\xf6\x76\xb7\xbf\x45\x0e\x65\x34\xda\xf8\x29\x66\x94\x36\x78\xce\x8f\xf8\x67\x12\x33\x39\x1c\xfc\xca\x1d\xb3\x71\x58\x6a\x3c\x93\xcf\xeb\xd1\xc8\x2d\x1a\xfd\xfe\x54\x23\x3f\x7f\xbc\x15\xeb\x5d\x61\xb6\xf6\x68\x19\xde\xa7\x28\x2e\x9a\xcc\xb5\x42\x0c\x3a\xc9\xf6\xa5\xfa\xbe\xff\xd0\xe5\xa3\x1a\xbb\xa0\x49\x4e\x8d\xbf\x0f\x33\x69\x0b\x22\xc1\x12\x10\x42\xa3\x16\x90\x67\x89\x58\xa6\x74\xe2\xa1\x6e\x20\xf6\x52\xe0\xea\x47\xdf\x83\xda\xd0\xe2\xda\xed\xaf\x56\x13\x13\xab\xb5\xa2\x05\xe5\x11\x26\xac\x76\x16\x17\x1e\x50\x94\xa2\x32\xa9\xfb\xc3\x7e\x7b\xbf\xdd\xbe\xee\x4d\x8f\x14\xa7\x4b\x7b\x51\x81\x14\xc3\x8d\x7b\x00\x55\x39\x56\x8b\x9c\xe7\x12\xd4\x2a\x51\x2e\x5e\x68\x17\xd4\xd0\x54\xab\xde\x8c\xae\x44\xda\x6a\xd1\xef\x6d\xe7\x56\x9a\xd6\x2e\x21\xbd\xf5\xf6\xd3\xf5\x60\xc1\x83\x72\xb9\x69\xd6\x52\x6e\xce\x54\xdf\x6a\x8a\x28\x80\xbd\xd9\x61\x37\xb2\xfc\xab\x44\xc7\x28\xc8\xc8\x5a\x92\x5a\x9b\xf6\x43\x98\x25\xe8\x2b\x2d\x8f\x99\xf0\x70\x84\x84\x1f\x11\xc6\xcb\xea\x9d\xfb\xe1\xfb\xe4\x7b\xda\xd7\x14\xb2\x22\x24\xa4\x35\x1f\xa7\x54\x4c\xbc\x2d\x5f\xee\xa2\xed\xc5\x16\x5d\x61\x5b\x9a\xed\x80\x2f\x0b\x6f\xb2\x40\x2f\x4f\x00\x7a\xf6\x03\xd9\xbc\x7a\x15\xa7\xdd\x16\xa1\xb1\xd8\x88\xf8\x5f\xda\xed\x8f\x34\x4e\x1a\xd5\x7e\xa8\xd0\x41\xde\xfd\xeb\x81\x5b\x7f\x75\xf7\x34\xf4\x3d\x4a\xb9\x12\x72\xc8\x9b\xfc\xd1\x93\x9b\x3b\xd7\xf8\xc1\x9e\x8c\x7b\x82\xa2\x4f\xb0\x59\x2e\xf1\x46\x01\x06\xc3\x1e\x45\xf4\x24\x4e\x34\x08\x43\x59\x35\x59\xce\x96\x81\xed\xd0\x41\x65\x9e\xe8\xa1\xc5\xc0\x57\xfb\x7a\x17\xf7\x69\x47\x3c\xcb\x31\x22\x70\xb3\x54\xa4\x44\x08\x26\xe9\x1f\xd0\x69\x76\x3a\xb6\x8f\xc6\xb7\xdc\x0b\xaa\xad\x46\xd8\x8a\xdb\x4c\x7f\x2d\x74\x60\x04\x93\x34\xd8\x87\xf1\x63\x23\xa4\x07\x46\x7f\x63\xbe\x8c\xcc\xb9\xb8\x40\x78\x69\x7f\xa6\x0d\x42\x77\x78\x65\x83\xf4\xd8\x82\x0d\xcf\xee\x0f\xb8\xff\x2d\x60\x16\x40\x8b\x04\x1f\x36\xf0\x79\xe1\xbe\xc3\x5e\x25\xac\xfa\x97\x3b\x4a\xb4\x96\x19\x85\x54\xd0\x10\x44\xb0\x99\x41\x0a\x04\x4c\xc1\xc3\x13\xee\xd0\x08\x2a\xb2\x65\xf4\x75\x31\x7f\x36\x7d\xbf\xa1\x14\xfa\xfa\x6f\xb3\xef\x2e\x7b\xa3\x10\x63\xc5\xf3\x05\x81\xd8\xc1\xf5\xa7\x5d\x81\x0f\x5c\x7d\xd4\xfb\x80\xcb\x64\xde\x82\x5a\x21\xe7\xbe\x5d\xd9\x06\x6b\x7f\x6b\x33\xfe\xfa\x4c\x1f\x7b\xe5\xbf\x35\xbf\x67\x26\x33\x3c\x26\x01\x75\x53\xe8\xab\x56\x08\xe1\x0f\x0c\x54\xc6\x43\x09\x04\x15\x3b\xc9\x6b\x04\x93\x3c\xe6\x11\xa0\x57\xa6\xf9\x86\x99\x31\x98\x7c\xd5\xea\x72\xcf\x88\x14\x3c\xb5\x9d\xd2\x75\x3b\x36\x62\x9c\x10\x1f\x9b\xdc\xcd\xfb\xd5\x81\xd4\x7a\x83\x86\xfd\x3d\xc1\x7d\x42\x0e\xb1\xbb\xc3\xcc\x2a\x46\x8c\xf3\x76\xc4\x78\xfd\x81\xfc\x6b\xef\x83\x5e\x5e\x57\xfa\xd0\x42\xe1\x67\x7d\x21\xaa\xb8\xfe\x8f\xbe\xce\x38\xd8\x30\x53\x41\x0c\x30\x32\x86\x68\x00\x86\x07\x1a\x0c\xda\xb0\x9c\x53\x57\x87\x16\x2c\xe7\x85\x9b\x1a\x6f\x27\x6d\xe1\x4a\x8c\x3b\x58\x05\x26\x04\x60\xd3\xcd\x2b\x6c\xde\x88\xa6\x4b\x1c\xbb\xc4\x39\xc6\xf1\x5a\x6a\xe2\x61\x92\x2c\x5f\x64\x84\xb7\x7c\x1e\xe1\xb8\xd7\xb2\x83\x8e\xb1\xbe\xcc\x6c\xe6\x24\x38\x6d\x60\xc3\xf7\x70\xbc\x8d\x8d\x53\x65\x3f\x1b\xc5\xb3\x1e\x1d\xb4\x51\xe4\xf9\x10\xb1\xbc\x40\xcb\x84\x35\xa7\x00\x66\x7c\x57\xd9\x5f\x54\x29\x7d\x34\x5c\x0d\xda\x39\xf2\x8b\x94\xb6\xe2\x8a\x5c\x8b\x2a\xcd\x12\x7b\xaa\x2c\xe5\x02\x7d\xe6\x96\x8d\x63\x23\xc7\x6c\x18\x40\xac\xdf\x70\x94\xd6\x09\xac\x5e\x3e\x3b\x8c\xa9\x98\x8b\x30\xf6\x1d\xce\xe7\xbf\xeb\x87\xd7\x35\x32\x14\x2c\xb5\x67\x9e\xff\xa1\x44\x0a\x82\x26\x1c\xbf\xee\xb8\x82\x57\x1c\xa8\x42\xd8\xf1\x9c\xd8\xd2\x56\x20\x0f\x43\x2c\x8d\xb2\x7f\xd0\xd6\xa6\x54\xc8\x01\xcd\x86\xdf\x97\x9c\xcf\x36\xa8\x40\x66\x2a\xe2\xdb\x18\x31\x7f\xe6\xc2\xfb\xcc\x40\xb8\x02\x32\x8f\xa7\x2f\x6c\x79\x1b\x4a\x5a\xda\x6f\xc6\x2c\x55\x2a\xaf\xa2\xa8\x7c\xf6\x51\xac\xd3\x47\xd6\x37\xd6\x2f\xd9\xe4\x4d\xfe\x2d\xa6\x0c\x31\x7a\xe9\x68\x9e\xd4\x01\xb9\x8e\x6a\xb9\x58\x9b\x76\x16\x83\x3f\x61\xae\xd7\x97\xf5\x4e\x2b\x87\x62\x22\xeb\xe7\xed\xd2\x35\xc5\x3f\x11\x10\x09\xfe\x9d\x1a\xa9\x49\xfd\xb3\x07\x71\xa7\x63\xb7\xb2\xcb\xfe\x34\x2b\xd8\xeb\x9f\x6e\x6f\xbd\x6c\x67\x51\x48\x51\x34\xff\xa3\xd6\xf1\x20\x04\x36\x10\xa0\x9c\x63\x61\x21\x3e\x46\x31\x13\x1f\xcd\x81\xef\x26\xcb\x84\x87\x3f\x9b\xc4\xff\x90\x2c\x75\xa5\xe8\xab\x46\x20\xef\xb5\xc9\x95\xac\x88\x82\xfa\xeb\x96\x02\x3b\xc1\xb8\x4a\x6a\x7c\xbf\x63\xcc\x94\xef\xa5\x48\xd8\x84\x7a\x35\x9b\x7f\xcd\xea\x98\xcd\x11\xc3\x31\x96\x7d\x4a\x77\x23\x21\xb5\xe5\x68\x7d\x19\x81\xdc\x34\xa2\x75\xea\x57\x83\xbd\x92\xfe\xcb\xb6\x49\x60\xbe\xbb\x6d\x60\x49\x19\x75\xad\x89\x5c\x8b\xfb\xc0\x81\x2e\x8e\xcc\xcf\x7f\xeb\x07\x38\x0e\x21\x48\xec\x1b\x62\x59\x12\xd3\x57\xa6\x38\x09\x3f\x67\x68\xb9\x8a\xbb\x43\x92\x22\x5b\x3b\x2e\x77\x5d\x22\x35\x86\xb2\x4e\x52\x8a\xca\x77\x6f\x78\x03\x91\x3d\xd9\x61\x86\x95\xd9\x5d\xf1\x04\x5f\xa5\x65\x2f\xf8\x91\xc8\xc5\xfc\xf5\x9e\xbb\xd1\x5d\x37\xfc\x6f\xec\x24\x92\x12\xfe\xf8\x3b\xfd\xd4\x3f\xba\x43\xad\xdc\x24\x5f\x6a\x48\xb9\x8b\x4c\x1c\x48\xad\x7e\x58\xf0\x9a\x66\x16\x3e\xc0\x1c\xa1\x85\xcb\x58\xc7\xa3\x4b\xac\x1c\x2e\x09\x9b\x74\x74\x31\x71\xbe\x2e\x5b\xd0\x1b\x18\x14\x27\xd7\xbe\x72\x6e\x3d\x50\x72\x6a\x6d\x2e\xbf\x38\x14\x2f\x5c\x84\xb7\x58\x31\x49\x22\x3b\x88\x5b\xa4\x92\x92\xc6\x63\x05\xfb\xf6\x1a\x91\xbc\x22\x44\x2c\x26\x0c\x1d\x68\x96\x0d\x86\xe9\x66\xed\x3a\x4d\xf4\x47\x42\x4c\xf5\x64\x2c\xdb\x75\x0e\x72\x63\x25\x0c\xd4\xc9\x46\xcd\x45\xad\x86\x4f\x0d\x05\xcf\xe7\x08\x33\x94\x71\xd4\xf9\x79\xf9\x2a\xd7\x53\x86\xb1\xe8\x50\x48\x53\x05\x43\x3e\xe5\xbe\xc8\xd2\xb8\x5b\xc8\x6c\x7b\x53\x0d\x5e\xb6\xed\x68\x6d\xb7\x9f\x9e\xce\xa3\xfe\x45\x69\x84\x84\x67\xb9\xe3\x46\x39\x82\xbd\xc0\x71\xba\x2d\xdf\x56\xcd\xcc\x8f\xa5\x3b\x54\x2e\x73\x3d\x7a\x6c\xa8\x9b\x2e\x9d\xf3\xf1\x3a\x97\xb2\xfe\xaf\x16\x51\x8d\x4a\x53\xd6\x96\x16\xca\x54\x54\x56\xd1\xfd\x98\xab\xde\xea\x6a\x47\xb3\xa5\xc2\xcd\xd4\xb7\x9b\x5d\xae\x3b\x04\x79\x85\x7c\x90\x18\x63\xdc\xae\x28\x18\x64\x66\xcc\xff\x6f\xde\x28\x51\x8e\xdd\xa7\x1f\xe6\x1b\xb4\x40\xd8\x56\x2a\x07\x06\x17\x9e\x14\xc2\xbc\x9d\x0c\x1e\x51\x3e\x81\xf9\xd1\x7c\x1f\xe4\xd8\x1d\xba\x45\x0c\x1a\xce\xad\x0b\xb2\x2f\x08\x8c\x7c\xe7\x9b\x91\xe6\xb4\xc8\xf3\x79\x91\x8f\xd4\x9e\xb4\x25\x59\x6f\xe4\xe1\xc9\x04\xcc\xe1\xc9\xbf\xea\xcc\x9c\x4b\x09\x78\x6d\x56\x74\xdc\xf6\x1a\xb7\xe6\x26\x0c\x7d\x27\x1d\xab\x5d\x70\x2a\x25\xde\x71\x71\x5d\xe7\x20\x13\x93\xc1\x59\x75\x52\x11\x4a\x86\xbd\x4f\x53\x93\xfd\x38\x42\xb7\x83\x08\x74\x83\x4e\x25\x65\x32\xc3\xb1\x0d\x2a\x5b\x8d\xca\x1f\x20\xb3\x18\xcc\x06\x8f\x2d\x66\x24\xfc\x98\x33\x33\x23\x31\xd8\xc6\xf2\x06\x05\x82\xb5\x91\x71\x7f\x70\x7c\x2a\x1b\xb7\x2b\x7a\xab\x15\x12\x44\x33\x6e\x4c\x0b\x4e\x1a\x86\xe9\x65\xa3\x79\xac\x8f\x4a\x89\x7c\x8f\xfb\xc5\x0e\x46\xc5\xd4\xbc\xee\xae\x2b\x59\xaf\x43\x8c\x46\xdd\x3d\xec\xf6\xf7\xd3\xd6\x68\xd7\xac\x4c\xa3\x69\x99\x98\x56\xd6\xcc\xbb\xad\x1b\xf0\x10\x62\x77\x5e\x87\x7a\x99\x1f\x44\x15\xcc\x8b\x87\x23\x98\xd3\x6b\xb2\xa7\x45\x4d\x03\x77\xfc\x54\xd2\x8f\x28\xd3\x8a\xb8\xaa\xeb\x26\xfd\xbc\xbd\xc3\x9b\x40\x85\xf3\x92\x6b\xa9\x91\x4d\x1c\x79\x6a\x5d\xc5\xe6\xac\x31\x36\x03\xca\x8f\xbe\x84\xfe\x0c\xf1\x09\x6c\x5e\xf2\x12\x38\x75\x12\xa9\x9d\xa2\xdf\xa1\xe2\x37\xaa\x17\xf9\x23\x55\x0b\xda\x40\xe8\xab\x22\x9e\x1c\x76\xf6\x54\x1f\x08\xa8\x85\x70\x77\x3b\x15\xd1\x98\x16\x75\xb1\x8c\x5f\x91\x15\x92\x6c\xf4\x71\x79\xd4\xef\x28\x05\xea\x96\xa7\x55\x4b\xcd\x73\xad\xd7\xf3\xf8\x83\x3e\x54\xcb\x21\xef\x47\xbc\xbd\xc8\x13\x2a\xfe\x7d\x1f\xf1\x2d\xb8\x7c\xce\xda\xa1\xdb\xda\xdc\x81\x5e\xb0\x38\xf4\x89\x8c\x6a\x5d\xe2\xf5\xc7\x08\x0c\x97\xdb\xe5\xd7\xf7\x78\x43\xbf\x44\x7e\xf1\xa3\xa6\x1c\x48\xcb\xb2\x9a\xfc\xbd\xef\x90\x1a\x6d\x68\x68\x84\x8c\x3f\xa7\x41\xc3\x15\xbd\x76\x19\x9d\xa8\x8b\x56\x29\x81\xd2\xd5\x82\x6a\xbe\xaa\xcc\x84\xc5\x00\x03\xda\xdb\x3a\x5e\xeb\x50\x5e\xf1\x58\xdd\xaf\x6b\xae\x0a\xaa\x1d\x54\xa0\x7c\x72\x33\xfc\x36\x9f\xb0\x94\xea\x7f\xad\x85\x50\x14\x60\x86\xe7\x5d\x4f\x5f\x3a\xf2\x13\xd9\xa6\xd9\xa4\x66\x3a\xd7\x8c\x21\x62\x23\x8f\x9c\x71\x20\x2d\xc1\x60\xf2\xf7\xa1\x83\xad\x17\x87\x93\x39\x99\xee\x0f\x16\x01\x37\xd0\x3b\x67\xee\x8e\xd1\x97\x5d\x85\xec\x35\x1a\x5a\xb4\xa2\x9f\x9d\xe9\x92\x54\xe0\x6b\x3b\x71\xeb\x8c\x2d\x49\xe4\x2f\x21\xaa\x51\x57\x5f\xd3\x51\x11\x5d\xa1\xfa\x2e\x47\x9e\x78\xb5\xdf\x4f\x3e\x53\x04\x72\x74\x34\x97\x21\xec\xb2\x11\x17\x75\xfb\xe8\xcb\xb8\xc8\xa1\xe0\x8d\x55\x5b\x30\x72\x61\x6b\x39\x24\xd0\x9d\x1e\x28\xc8\x4b\x91\x5b\xa6\xd4\x3e\xc1\xe8\x9b\xf9\xc8\xc9\x24\xa8\x0a\x8a\x79\xf1\xc6\x43\x1b\x8b\x8a\x9f\x5d\x43\x18\x1e\xef\xe0\x5f\x38\x25\x65\x36\x2e\xe1\x1d\xe0\x8f\x67\xab\xab\x58\x33\x90\xd6\xbd\xad\x0e\x9a\xbf\x3a\x5d\xd6\x51\xd2\x70\xd1\xa0\x71\xc9\x76\xb9\xeb\xb0\x8f\xae\xa6\x21\x47\xfd\x18\x84\xd1\x39\x3a\x99\x14\xaa\x11\x80\xf4\x49\x9d\xab\x62\x90\xd6\x48\xa1\x27\xf6\x9a\x9e\xef\xe2\x04\x47\xe6\x2c\x89\x95\xc4\x92\xd9\xb9\x6f\x0f\x19\xc2\x06\xf6\xe2\x95\x43\x6f\x24\xd8\x02\x7d\x25\x13\xec\x2b\xc6\x2a\x2f\xb2\x6f\xbf\x32\xf6\x96\xd2\x64\x53\xf3\xc0\x83\x13\xee\xf1\x76\xc7\x42\xfd\x9f\x42\xac\xcf\x51\x93\xf3\x8b\x66\x82\x1e\x3a\x7a\x2c\x3f\x4a\x2b\x40\xf5\x42\x26\xb4\xff\xae\xf8\x09\xd9\xc6\x34\xb1\xfa\xd5\xd9\x13\xfb\xbe\x71\xcd\x59\x8c\xd7\x1f\x80\x18\x44\xb9\x33\x4e\xe8\x92\x9e\xdd\x89\x6a\xd8\x03\x17\xf3\xd6\xe7\x47\xb5\x8e\x6d\x7c\xba\xaa\x8a\x1a\x94\xb3\xfe\x2b\x03\x20\x60\xcf\x70\x54\x42\xf7\xaa\x39\x03\xd4\x9f\x4b\xe4\xa4\xa4\x48\xb8\xa6\x3d\x2b\x33\xe9\x61\xd7\xae\x47\xde\xf4\x06\xfd\x1a\xc1\x58\xad\xf2\x14\xa7\xfe\x3a\xfe\x1a\x29\xbf\x12\x28\x48\x9b\xe8\xbb\x74\x8e\xe1\x20\xe2\xf0\xd3\x1e\xbe\xfa\x27\x6e\x02\x70\x9e\xf1\xa6\xf1\xac\xa9\x55\x5b\xdb\x36\x6d\x11\xe8\x7a\xe5\xba\xaf\xcb\x87\x6b\x79\x5c\xf0\x1f\x45\x71\x26\xf1\x39\x53\xa9\xdf\xf6\xc1\xaa\x7a\x68\xae\xa8\x35\xce\x93\x51\x1c\x70\x90\x5e\x37\xb2\x2e\xbd\x28\x1b\x0e\xc3\x66\x78\xb8\xdf\x01\x74\xda\x6e\x26\xe6\x8f\xf1\x67\x62\xbf\xfe\x2b\xfa\x19\xc9\x99\xcd\xe1\xe9\x7f\x78\x57\x1f\xda\x62\x86\x27\xc2\x57\x97\x28\xa5\xb2\xde\xaf\xea\x9e\x1f\x86\x04\xb2\xe5\x67\x89\xcd\x6c\xef\x45\x4f\xfd\x06\x2a\x4b\xfb\xc1\xaa\xce\x13\xc1\x43\xe7\xe7\x43\x70\xb4\x56\xd6\xba\x98\x9e\x6d\xe8\xe6\xd6\xe1\xa7\xe3\x5d\xad\xef\x3f\x2e\xeb\x76\x86\x6b\x69\xfc\x7f\xf4\x4b\x6a\x59\xeb\x86\x87\xdc\x90\x46\x7e\xd2\xc8\xe6\x8e\x89\xf4\x4b\x84\x78\xde\x32\x39\x7a\x1c\xf1\xba\x71\x52\x8d\x47\xa6\x2a\x61\xe9\xe0\x77\x26\x1c\x98\x08\x98\x07\xed\x19\xb7\x34\xfb\x98\x9a\xa6\x54\x72\xd1\x33\x9d\x4d\xe6\x59\x9a\x66\x2f\x47\xa6\x58\x56\xf2\xac\xbc\xe9\xf2\xfd\xd9\xb9\x16\x9f\xb8\x98\x4a\xa6\xcc\xd9\x61\x7f\x59\xb9\xe9\x5c\xf5\x63\xe0\x12\x37\x1e\xdc\x49\x51\xb0\x9a\xd4\x4e\x5b\xd0\x25\x4e\xda\x19\x76\x91\x6e\x0a\x76\xd5\x93\xfd\x6e\xbe\x11\xfe\xf1\xa6\x91\xc5\x17\x39\xb6\xc5\xf4\x27\xbe\x89\xf5\x9e\x1b\xb5\xe9\x48\x35\x87\x6f\x24\x06\x1a\x41\x67\xfa\x47\xc9\x56\x9b\xdc\x93\x9c\xf6\x4f\x66\x7a\xb3\x0b\x97\x56\x48\xd9\x52\x8a\xfb\x4a\x76\x23\x17\x26\x18\x09\x89\xb6\xe2\xe7\xd3\x52\x0f\x5c\x5d\x0d\x92\xa3\xbd\x48\xee\x8b\x0f\x1c\x7b\x2f\xc5\x36\xf3\xae\x5f\x44\x41\x40\x08\xca\x3e\x53\x79\x54\xff\x5c\x4b\x97\x01\x0c\x11\x40\x41\x13\xd6\x14\x69\x97\x2c\x87\x78\xc9\x5b\xbf\xdf\x35\xea\x79\x7a\xfd\x2b\x5f\xf3\x9e\x09\x4e\x3c\x69\x54\xb4\xd3\x26\x4a\x55\x6c\x8c\xe2\x30\xd0\x69\x74\xa8\x0f\x2f\x57\x6c\xfb\xa4\xfd\x43\x9b\x18\x0f\x13\x72\x70\x3a\x02\x12\x9a\x02\xb7\xdf\x7d\xf9\xec\xe1\x40\x50\xf0\x47\x5f\x94\x8c\x7e\x5d\xdc\x40\x39\x8e\x81\x2a\x39\x6b\x29\xcf\xdb\x81\xd1\x6a\x37\x67\xde\x69\xaa\x96\xb5\xdd\xec\x71\x6f\x9e\x61\xac\x7b\x96\xd6\x75\x87\xc2\x41\x24\xf4\xac\xe7\xe2\x49\x62\x39\x8f\xd5\xe8\x21\xc3\x76\xe9\x88\x7a\x77\xfd\x48\x5a\x66\xb6\xb1\x64\xe9\x41\x11\x0b\x91\xc0\x19\xbf\xa1\xaf\x9c\x28\xe9\x6f\xf2\xcb\x1b\x73\x86\xee\x8c\x35\xb6\x8b\x32\x5e\x46\x4d\x45\x36\xcf\x82\x92\x7f\x87\xc7\xa8\xfb\xc3\x1a\xd5\x89\x6d\x29\x7b\x21\xf0\xa3\x66\x39\xf6\x2c\x7c\x6c\x9a\xca\x9c\xbe\xf5\x7d\xce\xf6\x75\x11\xad\xc1\xfd\x39\xe6\x91\xce\xf5\x53\xb0\x28\xe9\x2a\x26\x57\x15\x7f\x17\xeb\xfb\x2a\xea\x29\x4b\x89\xda\xc6\xb4\x13\x97\x92\xf0\x0a\xa5\xe9\xd9\x33\x24\x17\x0c\xd5\xc6\x98\xa9\x46\x2a\xb2\x98\x97\xda\x93\xc8\x5a\x16\xe6\x2c\x14\x29\x16\xa8\xbb\xdc\x3e\x38\xdb\x7b\xe4\xbb\x11\xcb\x57\x27\xad\x30\xf4\xa0\x21\x02\xec\x93\xe1\xc1\x7f\x4d\x3a\xcc\x7b\x85\x41\x11\x34\xdf\xda\xa2\x10\x49\xd6\x24\x48\x8d\x72\xfb\xb5\xd5\xb1\xa4\x18\x7a\xe6\x89\x06\xac\x88\x20\xcc\x83\x68\x68\x21\x8d\x0c\xc9\xe4\x35\xb4\x18\x99\xc4\x9c\xf7\x27\xb6\x70\x53\x35\x5b\x8f\x82\xde\x89\xc7\x8d\xaf\x84\xfb\x9e\xbf\x34\xae\x65\x4a\x2b\xe4\x33\xa5\x6a\xd5\x94\x6b\x5c\xf6\xaa\xbd\xfb\x3f\x69\xf2\x15\x59\xfe\x11\x35\xac\x01\xbd\xf2\xd2\x9e\x36\xa8\xdc\x11\x1d\x80\x01\x5e\xf7\x79\x5d\xc5\xd5\x08\xc7\x5f\x60\x46\xd6\x56\x47\xa8\x33\x41\x5e\xda\xae\x7d\x52\x9d\x9c\xe4\xb5\x90\xf3\xef\x88\x7f\x67\xcf\xec\x1d\x92\x51\xfe\xd4\xa8\x0a\xf2\x20\x72\xef\xbf\x9f\xef\x87\x8c\x20\x38\xb9\xab\xf1\xfe\xa8\x2d\xd3\xd7\x7f\x6f\x8b\x89\x6e\x5b\x48\x15\xbb\xa5\x9c\x19\x9e\x50\x6b\x8e\x45\x69\xbd\xcb\xaf\x2d\x5d\x95\x78\x41\xd9\xbd\xf1\x5c\xb7\x7d\xe2\x25\x29\xea\x2e\x9d\x3f\xbf\xf0\x7a\xbe\x07\x9d\xa4\x0d\xe7\xfc\x67\xf0\x3c\x4f\x1a\x1c\xc0\xe3\x7e\x20\x4c\x79\x02\x50\xe5\xf1\x4c\xcf\x9e\xec\x55\x7d\xb7\x59\x18\x7f\x2f\xf8\x54\x7e\x63\xbf\xad\xbc\xe7\x42\xa6\x2f\x82\xd0\x86\x4b\xb9\x15\xbe\x45\x83\x4f\x15\x66\x7e\xb5\xdd\x48\xd9\xdb\xdf\x3c\xfd\x7b\x20\x3b\x7d\xbb\x4f\xbd\xab\xe5\x69\x47\xe2\xeb\xed\x69\xbf\x23\xfa\x7a\x5a\xaa\xcc\x71\x56\xdc\xde\x1e\xb0\xa0\x7f\xbf\xcc\xc1\x2f\xfb\x67\xfb\x2c\x50\x9a\xff\xd5\xda\x8a\x92\xc3\x4f\x9c\x83\x39\x43\x10\x7c\x32\x14\x2d\x7e\x47\xe7\xb6\xf1\x80\x39\x43\xbf\xcb\x5d\x00\x83\x63\x17\xb4\xb2\x9c\x65\xc0\xda\x22\xf2\x56\x2b\x08\x19\xca\x66\x81\xb1\x21\x15\x16\x64\x0c\xb3\x19\xac\x53\xe8\xc4\x05\x83\x74\x9e\xa4\x17\x20\x4f\xec\xaf\x66\xcb\xf5\xf7\x8f\x86\x2d\x0b\xec\x33\xff\xe1\x9b\xa0\xb2\xcf\x81\xdb\x59\xc6\xe6\xa8\x7c\x45\x0e\x8b\xa9\xce\xf9\x39\x95\xfd\xd5\xd7\x85\xfb\xe1\x61\xf4\x69\xd4\xf5\x79\xa3\x80\x0f\xc9\x71\x13\xe7\xd1\x1d\x66\x91\x0d\x7e\x9e\x38\xca\x7e\x45\xeb\xe6\xc7\x93\xcc\xd5\xcb\x45\xe6\x1f\x8d\x1d\x65\x48\xec\x5f\x1e\x6d\xb0\xb7\xdf\x0f\xea\xa3\x1c\xf0\x88\xcd\x89\x43\x7b\x88\x94\x26\xaa\xe1\x68\x87\x37\x10\x38\x92\x06\x27\x79\x4b\xbd\xdb\x0a\xa0\xca\xbf\x40\xa8\x52\xdb\x43\xad\x15\xa3\x0c\xa8\xcb\x94\xaa\xe2\xd7\xfd\xcd\x07\xf5\x4a\xfe\x71\x31\x0f\xcd\x5c\xc2\xc1\x34\xea\x19\x2f\x35\x49\x13\x41\x33\x79\x10\xe7\x7a\x63\x86\x7a\xad\x3c\xc5\x51\x23\xec\xce\x82\xf8\x85\x22\x82\x15\xcd\x06\x90\x16\x58\x14\xca\x40\xb8\x4d\x1c\x4f\x69\x32\x0c\x62\x20\xa0\x47\xa2\x55\x6a\xfe\x90\x63\xf7\xfd\x9e\xe5\x2b\x50\x14\xad\x26\xf1\x44\xfa\xfa\xfb\xf6\xa8\x78\x71\xde\x3e\x7b\xbf\xa7\x6d\xcc\xbf\xe9\x23\x5a\xe9\x6d\x73\xf7\x71\xc4\x0d\x39\x21\x84\x02\x9a\x45\xda\x1d\x21\xb7\xfd\x12\xc5\x6e\x79\xba\x9f\x18\x18\xb8\x5f\xd9\xcf\xd4\x6e\xa8\x3b\x46\xd1\x97\x0f\x07\x6e\x82\x80\xe2\x47\x95\x00\x32\xbe\x36\x52\x36\xe5\x3a\x8d\x2b\x98\x4d\x96\xe3\x82\xab\x9e\x65\x4c\x8e\x78\x1a\xb3\x7a\x3c\x0f\x5d\xc9\x81\x0e\xdb\x4c\x92\x28\x5d\xae\xdf\xf1\x80\x18\x50\x11\x01\x15\xb1\x0f\x34\xdb\x6c\x77\x62\x08\x18\x6f\xa8\x63\x6f\x3b\xeb\x09\xc3\xe2\xfa\x40\x0b\xac\x5b\x67\x5c\xf8\x49\x79\xb1\x37\x5a\xd9\x99\xae\xbd\x60\xe6\x2e\x58\xd4\x5a\x7d\xeb\xaf\xd5\xec\xdd\xcf\xb6\x2f\x55\x4b\x95\x66\xfa\xba\xd9\xd1\x6b\x60\x76\x89\x89\x3e\x13\x7c\xfa\x3c\x9c\x0d\xa5\x2c\x59\x51\xbb\xdf\xd2\xb8\x46\x89\xe4\x89\xb0\x05\xca\x88\x60\x99\x85\xa2\x91\xf4\x37\x46\xfa\xe9\x61\x09\x80\x13\xcd\x1f\x0f\x58\x81\x2f\x91\xfe\x22\xfb\x2d\x80\xe0\x05\x5c\xd5\xb8\x94\xdb\x1e\xf7\xe1\x81\x09\x1f\x99\xd9\xff\x11\x76\x6e\x53\x35\x1e\x1b\x53\x2b\x4d\x2e\x16\x17\x46\xc2\x3a\x55\x38\x6a\x14\x33\x6d\x73\xc9\xe6\xe4\x8e\xed\x36\x8f\x82\xfc\x14\xff\x48\x41\x30\x09\xee\xc3\x2d\x95\x8e\x4a\xb6\xb4\x7e\xa2\x04\x89\x69\x7b\xae\xa2\x08\xe4\x34\x91\x51\x94\x6e\xed\xce\x63\x84\xd0\xef\xfc\xe3\x05\xde\x33\xb0\x44\x14\xa0\xda\x20\xe1\x67\x94\x3a\x7b\x84\x54\x73\xa4\xf8\x74\x9a\x9b\x68\x49\x5c\x04\x3a\x45\x83\x61\xc9\x31\x75\xc5\x97\x65\xc3\x50\x54\x8a\xf3\x28\xe6\x65\x94\x7e\x22\x7e\x10\x7d\xf6\x33\x7a\xee\x94\x17\xca\x8d\x39\x6d\xe1\xc1\x23\xc9\xbf\x02\x0f\xe3\xa2\x80\x51\x4e\x28\x90\xb1\x64\xd9\xdb\x55\x2e\x8e\xd0\x05\xd1\x44\x00\xf8\xf1\xb0\x5e\x34\xac\x07\x55\x10\xc4\xea\x87\xfa\x78\x67\xb1\xb4\xae\x42\x04\x1a\x6b\xd6\xae\xb1\x86\xf9\xe8\x83\x34\xe9\xf5\xe2\x3a\xf4\xd9\xd5\x47\xaa\x6b\xcb\xd0\xe3\x2b\x77\xd4\x7f\x5b\x4e\x94\x68\x7e\xba\x78\x2b\x74\x05\xd6\xc5\x79\xb8\x7d\xad\x97\xde\xc1\x4c\x7f\xcb\xde\x03\x73\xcd\x7d\x37\x2c\xa0\xb8\x93\x49\xfe\x2e\x54\xa3\x8b\xe4\x64\xe5\x35\xeb\xae\x96\x8a\x3c\xcb\x67\x6e\xf3\xe8\x9c\x34\x39\x4d\x4a\x24\x38\x3c\x06\x6e\xc3\x05\xb4\xe6\x09\x48\x23\x8b\xbf\xc7\x49\x1f\x53\x0f\x32\x6e\x3e\x6b\x05\x9d\x42\x8c\xc1\xae\x63\xa5\x8a\x8f\x1d\xc5\xf7\x5d\x76\x6a\x88\x24\x11\x1a\x42\xe4\x94\xfb\x61\x85\x0d\x5b\x11\xbb\x92\x1b\x79\xcc\x82\x6c\xc3\x06\x39\x7b\x7c\x9e\x1c\x3d\x79\xd7\x85\xfc\x06\x01\xdd\x71\x67\x66\xf0\x7c\xbc\xb3\x59\xb9\x8b\xfe\x61\x27\xac\x78\x24\x2f\x38\x67\xd7\xc6\x86\xbc\x7e\xe7\x73\xf7\x82\x11\x3a\x15\x18\x48\xd4\xbc\x2e\xc6\x5a\x85\x0d\x2e\xb3\xf2\x56\x3d\xc4\x39\x20\xfe\x27\x62\x84\xfa\x49\xa3\xc6\xda\x78\x9f\x3c\xb0\xfb\x41\x93\xdd\x77\x80\xb7\x9f\xd7\x9f\x65\x34\xe2\x1d\xcf\xde\x72\x80\x01\xa4\xc9\x42\xe6\xf5\x5c\x40\x30\x44\xc2\x0b\x10\x4b\x53\x16\x9d\x60\x54\x36\x33\xc2\x4a\xf6\xec\x79\x2a\xbb\xcd\xcd\xa4\xe8\x21\x49\xe7\x24\x46\x26\x0c\xf0\x87\xaf\x9a\x54\x8b\xc9\xab\x9a\x2c\x0a\x2a\x1b\x75\xa3\x13\x20\x22\xa5\x59\xf6\x63\x53\x7f\x9a\xb4\xa9\x82\xa4\x1e\x58\x82\xe7\xa3\x2a\x46\xfb\x00\xc5\x61\xfb\x90\x42\x21\x98\x27\xbb\x59\xa7\x7f\x7a\xd2\xae\xbf\xb1\xda\xb6\x65\x3a\xf9\x13\xc3\x46\x40\xc3\xb1\xb5\xe4\x5c\xb2\x6b\x37\x01\xe3\xe8\xa2\x3a\x3c\x40\x3b\x61\xfb\x07\xf2\x2c\xeb\xed\x34\x6f\x88\xc9\x2d\x89\xf7\xcf\xc9\x65\x32\x06\x44\xe8\x1f\x82\x6a\xf7\x2e\xd7\xdd\xad\xf5\x07\x6b\x72\xc7\x88\x08\xc7\x99\x46\xdd\x0a\xef\x8e\x9e\x0f\xd6\x93\x44\xeb\xd6\xe6\xa3\x36\xef\xa9\xa9\x8f\x1c\x4b\xf3\xee\xfa\xda\x72\xf3\x9d\x86\x84\xe8\x0c\x94\xfd\x1c\x23\xd3\x29\xac\x14\x58\x70\x68\x40\x1a\x78\x99\xf0\xfb\xab\x74\x1a\x74\x01\x97\x00\x69\xb0\x1d\x98\xeb\x54\x87\xe2\xf0\xcd\x2f\x11\xae\x07\x5a\x21\x1c\xfc\xfd\xc1\x3e\xef\xcb\xb0\x47\xe4\xf6\x9c\x97\x06\xd7\x60\x40\xce\x43\xea\xd2\x3e\xe4\xc3\x21\xee\x5b\x3a\xd4\x19\x7a\x47\xfe\x2a\x8e\xef\xbe\xe1\xaa\x39\xd4\x92\x5f\xf5\xd4\x61\xfd\x9a\xfb\x2b\x7b\x57\xfd\x4e\xf7\x0e\x4d\x11\x37\x89\xa8\x5a\x38\x1a\x19\x2a\x01\xed\xfd\xc4\x34\x6d\x3d\x4e\x7a\x97\x53\x52\xe0\x90\x27\x99\x6a\x16\x7c\xc0\x02\x1d\xf7\xc2\xa5\x63\xc8\x97\xd4\x68\x4d\x98\x6f\xf8\x7b\xec\x91\x9b\x6a\xbc\x8d\xcf\xa2\x10\xc1\x2c\x8b\xa8\xec\x2b\x85\x25\x07\x0c\x51\xb5\x15\xef\x18\x44\x8e\x68\x32\xcc\xf3\x93\xa3\x2e\xc8\x35\x05\x1d\x63\xd5\xa1\x8a\x2f\xcb\x6d\x65\xec\x4e\x33\x3b\x03\x43\x77\x4e\x9a\xc4\xd7\x5b\x5a\xc6\x69\x7e\x57\x3c\x20\x89\x65\xfe\x07\xb2\x8b\x47\xc2\xc5\xc2\x8f\x46\x23\xb2\x64\xe3\x8a\xac\x8e\xee\x55\xde\xdb\xf5\x81\xa9\xdd\xe1\x98\x39\xb0\xa5\x62\x6e\x0f\xc7\x6a\x30\xa4\xa5\x8e\xee\xd6\x5a\x9d\xec\x95\xb4\x78\xf9\xa4\xe6\xe5\xb6\x0f\x38\xde\x03\x7a\x9a\x1f\x86\xec\x6c\xce\xd7\x35\x95\xab\x6b\x89\xd6\x67\xfc\xb3\x87\xef\xfb\x81\xce\x39\xdf\xb3\x29\xc3\xd8\x99\x70\x8d\x7a\xb9\x3c\x73\xb8\x96\x9a\xb9\x73\x0a\x19\xd0\xf2\x2c\xff\xa0\x3b\xcd\xac\xe9\x25\x74\xab\x27\xcb\x4f\x47\xb7\xff\xd6\xf2\x92\x3a\x5e\xce\xc3\xdb\x6c\x6d\x9b\x85\x35\xb8\x6e\xe0\x5d\x05\x9f\x8d\xb3\x36\x4f\x43\x79\xd2\x5e\x15\xa7\x57\x26\xaf\x61\x5c\xa5\x3c\x77\xe1\x28\x3a\x96\xd2\xc1\xab\xcd\xd2\x7b\x0d\xae\x7b\x5e\x0e\xd5\x14\x38\x19\x3b\xe9\x8c\x5c\xdb\x42\x88\x42\xc2\x59\x34\x30\x17\x76\x76\x8c\x96\xc1\xc3\x23\xa1\xee\xd7\x57\x30\x45\x76\x44\x32\xa3\xf4\xeb\xed\x35\x1d\x72\x7c\x83\xc0\x8a\x49\x16\x39\x89\xa0\xea\x95\x27\xb5\x79\xc2\x70\x34\xfd\xb1\xe6\x81\x4b\xa6\xee\xd0\x68\xc7\x98\xe9\x4b\x28\x58\x59\x68\xa0\x7e\x47\x77\xdb\xfa\x8e\xca\x55\xc2\x89\x3e\x6f\x7d\x7c\x54\xdf\x21\x21\x2e\x8b\xf6\x69\x71\x22\x50\x8b\x4d\x88\xc7\x6b\xca\xfb\x23\xde\xf4\x3d\xa9\x17\xf7\x3d\x99\xb7\x73\xc5\x11\x04\x8e\x88\x30\xdb\x8b\xb6\x2b\x04\x02\x72\x54\x05\x81\x73\x2a\xe4\xef\x5f\xec\xbf\x68\x72\x6e\x39\x21\x79\xef\xc8\x1c\x4d\xf3\x35\x7b\x30\x1e\xbe\xae\x07\x39\x5e\x20\x74\x87\x67\x88\xb1\x36\x3e\x5b\x6e\x04\xa2\xea\x9a\x2a\x3c\xee\x95\xc4\xe7\xb8\xfb\x1b\xae\x6a\xc2\x71\x2d\xc2\x13\x76\xb9\x96\xfe\x94\xb2\xb9\xed\x7e\x59\x18\x0f\x71\xe1\xa8\xd4\x04\x9d\x2c\x28\x94\x1c\xdd\xa4\xe8\xd8\x72\xe0\xef\xc9\x58\xc0\x5b\x65\x26\x1b\x2f\xbf\xae\x00\x41\x29\x9b\x76\x36\x3d\x45\xad\xd7\x6b\x21\x1e\x37\x1f\x97\xbc\x86\xfb\x6e\x21\xde\xd4\xc8\x09\xf7\x95\xc5\xab\xa4\x87\x54\xfe\xf4\x3c\x57\x8e\x4a\x16\xeb\xba\xd5\xf2\x0f\x96\xd2\x11\x13\x72\x51\x72\x2e\x8b\x46\xd2\xf5\xf6\x7e\x23\xf5\xcc\x04\x9c\x8d\x13\x8f\x33\x64\xde\xe6\x87\xfb\x90\x18\x4c\xc4\xc6\x46\x5c\xb7\x7c\xc3\xc7\x83\x86\xae\x2e\x53\x7e\x7c\xbc\xef\xe5\xe0\xee\xc5\xf6\x3b\x3c\x28\x94\x05\x99\x9f\x3e\xc1\x5a\x79\xcd\xb9\x7e\x0e\xb3\x4b\x2b\x0b\xd0\x3f\xcc\x2c\x5e\x9e\x2d\xe1\xbf\x28\x4d\x08\xa1\x2f\x69\xa2\x04\xac\x09\x0c\x7d\x07\x14\xc9\x1e\xc4\xd8\xb1\xc1\x4e\x7f\x4a\xd6\x68\x32\x3e\x26\xc1\x10\xe2\xbc\x52\xa7\xea\xbb\x3c\xae\xca\x61\x02\x9d\x7e\xe0\xf8\xd5\x9d\xc0\x96\xa8\xec\x45\x6f\x59\x91\x48\x10\xd3\x3c\x9a\x63\x82\xc3\x29\x15\x5a\x63\x7c\x06\xb8\x36\xb2\x12\xec\x13\x76\x84\x98\x0d\x92\xd4\xd9\x05\x77\x68\xb1\xa4\xf6\x31\x5e\xa1\xa2\xa1\x00\xf4\xb2\x8d\x25\x83\x6b\x32\xd6\x24\x9d\xeb\x9d\xfb\xe6\xaa\x11\x05\x7b\xe5\x1d\xf8\x98\x59\x06\x8d\x1d\xbc\xea\xa9\x20\x69\x4e\x2c\x6d\x5d\x31\x54\xb6\x54\x45\x0b\xce\x72\xc9\xe1\x41\x6d\x55\x53\x0d\x7b\x6a\x1f\x97\x65\x60\x5b\xde\x56\x45\x3d\xeb\xa3\x60\xda\x70\x01\x66\xd5\x77\x6e\x53\x8b\x9f\xed\xc5\xe8\xf3\xc8\xc9\x64\x97\x1a\xd3\x06\xd3\x98\xd5\x84\x90\x66\x33\x0d\x1c\x4d\x83\x31\x64\x7a\x3a\xd1\xf1\x6a\x0c\xa5\x0b\xae\x89\x19\x8e\x45\x82\x62\x46\xd1\x16\x93\x75\x7a\xf3\x16\x5d\xd3\xc4\xec\x50\xcb\xc7\xc6\xd6\x4a\xf0\xca\xd6\x95\xa6\x49\x85\xf3\x43\x6e\x3a\x35\x25\x22\xcb\xd5\xc6\xcc\x4e\xb5\xe1\x59\xff\x66\xbe\xe7\xf1\x24\xe7\xce\x03\xaf\x76\xf0\x58\x7b\x06\x4c\xe9\x6b\xb0\xff\x75\xca\xa8\xb2\xd2\xe7\x95\xbe\x45\xa8\xa0\xb1\x2c\xa2\x20\x0b\x1f\xf0\x0f\x03\x6f\xbf\x7b\x20\xbb\xd7\x63\xd5\xa3\xed\xe1\xde\x37\x10\xb7\xb9\x20\x94\xfe\x9b\x1d\xb6\x74\xf5\x7b\xe2\x5b\xe6\xef\xf7\x8c\xff\x09\x58\x62\xa5\xae\x1f\xd8\x66\x2e\x07\xff\x2f\x79\x1e\xac\x85\x8b\x1a\xd7\x1c\x4f\xad\x1d\x65\x1b\x07\xdf\xf5\xe3\x9a\x93\x28\x3b\x00\x95\x22\x26\x57\xfc\xca\xe8\x8b\xe0\xf0\x22\x4d\x7b\xd0\x3f\xab\x6c\x5b\xc3\x12\xac\x8d\x60\x71\xcc\x2f\xd5\x90\x33\x16\xf3\xf7\xdc\x97\x0f\xa8\xa8\x17\x94\x5f\xd6\x4b\x62\xec\xe6\xec\x73\x72\x8e\x2c\xc0\xd6\x76\x16\xe3\x24\xde\x48\x35\xae\xf7\x7b\x05\xfc\xbd\x13\x51\xa2\x53\xad\x99\xb3\x26\xfd\x12\x14\xa3\xca\xc8\x3c\x61\x2e\x9b\xb3\xb4\xe5\xf8\x70\xd5\xd1\xc9\xc3\x99\x3b\xbb\xfd\xaa\xa5\x16\x11\xbd\xd2\xc2\x36\x3f\xf1\x75\x79\xbd\x62\xbf\x29\x7a\xc1\xb3\x1a\x6b\x3d\x73\x27\x67\x1b\x72\xa9\xd8\xb5\x85\x80\xd3\x55\x53\x02\x42\xb9\xfd\x79\xff\x35\x9d\x5e\x17\x8b\x89\x4d\xfa\xa6\xbb\xc9\xe3\x78\x02\x33\x34\x84\xce\xc7\xbd\xe4\x26\x5d\x73\xc3\x3c\x48\x6c\x87\xb9\xa5\xb1\x65\xe7\x7e\xd2\x7a\xdf\xb8\x13\x02\xc9\xf9\x84\x5d\x2c\xac\xa7\x08\xcb\xff\x53\x5a\x1c\xb1\x84\x31\x4e\x08\xed\x25\x41\x8e\xff\xd9\x0c\x5d\xcd\x0e\xae\xf1\x42\xc7\xc1\xb6\x3f\x35\xa8\x04\x85\xed\x3b\xb5\xf5\xc6\x81\xd7\xe8\x4b\x9c\xf0\x9f\x98\x67\x1e\xf9\x6a\x7a\x46\x7f\xde\xb6\xde\x6d\x59\x7a\xb7\xeb\xfb\xf0\x16\x20\xf5\x7e\xaf\x23\xe5\xe2\x9a\x1e\xb3\x5b\x40\x9b\xb2\xed\xe0\x6d\x2b\xed\x91\x43\x15\x2c\x42\x41\x8d\x80\x98\x4c\x45\xcf\x1b\xf2\x1d\xd1\xd4\x32\xaf\x57\x76\xd9\xa0\xee\x39\xfe\xf4\x5e\xaf\x53\x49\xc5\xce\x4b\x46\xc6\xab\x56\x3c\xce\x3e\x3c\xfc\x13\x1b\xff\xba\xff\x68\xa2\x33\xfd\x1b\x2e\x3e\x35\x1f\x3d\xb4\x99\x31\x05\x43\xbf\xcd\xaf\x7c\xfe\xd7\x45\x7c\xdc\xb7\xce\x39\xd8\x4f\xa4\x1e\xc6\xaa\xe4\x66\x74\x7e\x44\xf1\xa1\xab\x07\x27\xd6\xec\xd0\xbb\x27\xf6\x56\x87\x1a\x33\xad\xaa\x60\xb5\xe1\xbd\xa3\x97\x40\xb2\xd5\xaf\x5e\x51\x3d\xb4\x13\x09\x69\x0d\xaa\xf6\x07\x52\xf8\x51\x53\xeb\xa8\x07\x51\x91\x7b\x27\x0f\x04\x37\x30\x04\x38\xff\x60\xa6\xcd\xc3\x08\x58\x17\xd1\xd1\xd0\x24\xfb\x86\x8d\xb3\x67\x5e\x59\x34\xba\x21\xad\xfe\x90\x34\xa9\x35\x95\x7c\x62\x07\x0c\xd7\xed\x7f\xee\xf2\xa4\xea\x8d\x73\x8c\xc3\x9f\x8b\xcd\x44\x36\xcc\x46\xad\x64\x91\x0f\x6c\x4b\x58\x09\xd6\xc6\x19\x37\x7d\x52\xaf\x3a\x98\x83\x23\x1b\x57\x9c\x77\x54\x99\x64\x05\x13\x47\xa7\xf4\x0b\x64\x47\x2d\x27\x45\x1d\x15\x13\x4a\x63\x5f\xf8\x7f\x6e\x29\xaf\x11\xf7\x58\x95\x7f\xf3\xd6\x48\xb0\xc7\x34\x25\x11\xe9\x0c\x23\xbd\x59\xc8\x19\xe7\x3e\xee\x8f\x9a\xab\xe7\x85\x07\x6b\xcc\x5f\xef\x70\x60\x7a\xb1\x1a\x6f\xf4\xe1\x84\xc0\x54\xd8\x2b\x17\x96\x4c\x66\xe0\x66\x6a\x14\x29\x24\xb6\x82\xf0\x44\x33\x6b\x67\xe2\xba\x1b\xd2\x91\x34\xa6\xb6\xbf\x43\xe7\x71\xcc\x30\xae\x19\x0c\x65\xda\xd7\x37\x69\x95\xd2\x4e\xc9\xfe\x9e\xaa\x9e\x63\xbd\xbf\xd2\xa7\x8a\xfc\x63\x2c\x83\xa0\x56\x46\x43\xd9\xbc\xbc\x59\x14\xb4\xc9\x26\x6e\xee\xea\x24\xa2\x6b\x68\xe3\xa9\x63\x20\xa4\x63\xea\xbf\x5e\x13\x0e\xbd\xb2\xba\x64\x1e\x93\x84\xcc\x36\x9d\x4b\xb2\x9a\x22\xb0\x17\xaa\x76\xe0\x1e\x51\xbb\xeb\xce\xc1\xba\x6d\xff\x41\x2f\x1e\x4c\x10\xe1\x6b\x7a\x7f\x8a\xb3\xcf\x10\x2e\x31\x2e\x5e\x77\xda\xad\x56\x30\x00\xca\x79\xc8\xbc\x3b\x38\x0a\x0e\xdf\xcb\xb6\xae\xc3\x06\x0c\x3e\x14\x77\xae\x44\x25\xee\xf2\xce\x4c\xbb\x09\x77\xd6\x68\xa1\xb9\x2f\x30\xd9\xf8\x70\xc3\x89\xc4\x33\xd8\xa0\x58\x18\x74\x1a\x08\xf8\x06\x9b\xe6\x9e\xdc\x2d\x4e\x90\x1a\xb2\x28\x0b\x44\x38\x2a\x89\x4e\x49\x77\x71\xba\x59\xcb\xda\xb4\x7b\xd6\xbd\xa4\x4c\xaa\xf0\xed\x78\x37\x5e\xa4\x08\x46\x96\x54\xcd\xf8\x7f\x3f\x7e\x61\xe2\x9b\x11\xf8\x8f\x13\xbf\xe4\x4a\xcc\x00\xef\xba\xf7\x8d\xa9\x94\x88\xc9\x92\xa0\xb6\x9f\x4d\x48\x05\x64\x7d\x3e\x08\x54\x39\x8f\xa9\x92\x7b\x91\x62\x0d\x54\xad\xfb\x53\x0f\xf4\x57\xb5\x15\xeb\xdf\xf3\x9f\x33\x75\xba\x43\xd3\xa5\x25\xa5\x39\xeb\x1a\x20\xdf\x36\x25\x1f\x4f\x66\x9d\x68\xbe\x29\x52\x82\xfe\xe8\xa1\x4e\x57\x31\x99\x10\x2e\xba\xc5\xef\xbb\x66\x68\x1b\xf8\xe7\x32\xaf\x17\xe5\x6b\x6b\xe5\xe5\x4e\x96\xbf\x6d\x3f\xea\x56\x7b\xdf\x12\xe5\x24\x2d\x72\xc3\x52\x70\x99\x70\xff\x35\x88\x4c\x5c\x92\x9b\x5a\x28\xf0\x72\xd7\x2a\x0f\xd6\x51\x79\x38\x29\xb4\x6d\x57\x06\x71\xdd\x0a\xc5\x55\xf4\xa2\xdb\xda\xa4\x8f\xa5\x56\x5a\xdc\x3f\xc1\xac\x4d\x2f\x82\x97\x22\x1b\x52\x48\xb7\x2c\x19\x8f\x08\x18\xca\x77\x4a\x64\x1b\xc8\x43\xde\x7b\xae\x31\xdf\x0c\xbe\xec\xea\xc2\xcc\x10\x1a\xf8\x3b\x87\xe8\x84\xd7\xe6\x94\xcc\x2d\x39\xe1\x25\x2c\x9c\x9e\xeb\xca\xf4\x40\x61\xf4\x1d\x8e\x77\x54\x78\x98\x22\x27\x96\x5b\x7c\xf2\xbc\xb4\xde\xfe\x78\xaa\xfb\xfb\x8f\xb1\xe4\x62\x25\x4e\xae\xd1\x81\x0f\x0a\x4e\x4b\x6e\x77\x0f\x5b\x8a\xfe\x1e\x66\x11\xdc\x6b\xb7\x62\x67\x39\x25\x7d\xad\x7d\x4a\xa5\x67\x39\x87\x13\xee\x8e\x93\x96\xb3\xd9\x04\x36\x47\x66\xd4\xbc\x79\xe3\x8c\xdc\xa7\xd8\x42\x3c\x37\xda\x66\x7d\x34\x54\x27\xb3\xda\x55\x3c\x39\x78\x97\xdb\x79\x9a\x6e\x42\xd2\x45\x8d\x32\x7e\x44\x7b\x6d\xdb\xf9\x0d\xe4\xba\xa7\xcd\xb4\x0e\x5f\x95\xce\x75\x9e\xc2\x42\x5d\x70\x86\xf0\x4c\x0b\x51\xe8\x13\x64\xcf\x38\x09\x22\x97\xb4\x23\x92\xff\x30\x5b\x9c\x4b\xfd\x9f\x2e\x3f\x74\x70\x4b\x1e\x32\xd1\xbd\xb6\xa0\x9a\xed\x27\x94\xf9\x93\xcf\xb2\x5c\xc4\x83\xb0\xaa\xc3\x8e\xfd\x9e\xbb\x74\xcd\x57\x23\x41\xc7\x07\xd2\x2b\xbb\xfb\xc9\x98\xb7\xab\x50\xe8\x0d\x9f\x07\xa7\xe6\xe3\x9d\x2d\xcf\x8b\x31\x09\xa1\x17\x45\xed\xfc\x47\x3d\x67\x92\x68\xce\x7c\xb4\xdf\xd6\xcb\xf1\x11\xf2\x27\x7e\x1b\x7d\xca\xf6\x48\xdd\xc7\x6d\x83\xc0\xb7\xc3\xe1\xd7\xcb\xe9\x3f\xe8\xc2\x97\x41\xde\xcd\x0e\x2f\xb0\xc8\x21\x9c\x17\x0a\x7d\xa6\x5d\x70\xe4\xd6\xe8\x57\x22\xa4\xfb\xa8\x2e\x4b\x1d\x28\xb1\x73\xe7\x95\x39\xd0\xbb\xb8\x1b\x07\x7f\x2b\xc9\x81\x1a\xa4\x4d\xb8\x3d\xb3\xa0\x1c\x4c\x43\xbd\x2d\xe4\x64\x09\xa3\x47\x15\x7f\xcf\x5a\x01\x81\x84\xa9\x32\xd7\xa3\xca\x25\x0c\x92\xa1\x36\xe1\x64\x73\x37\x9c\x69\x9c\x8e\xea\xae\x93\xc1\xb2\x2d\xf5\x05\x5b\xd9\xf9\x20\x38\x4a\xa7\x92\x05\xec\xd8\x5c\xaa\xcb\x32\x87\x9f\xf0\xd6\xff\xd0\x82\x87\x0a\x93\xb9\x50\x4d\x75\x66\x1d\xdc\x66\x53\x98\x1d\xa4\x3c\xa7\xba\x87\xea\xe0\x0d\x0a\xed\x7f\xe6\xd9\x0f\x70\xfb\xc7\x07\x3e\x7e\x68\xdc\x77\x87\x14\xd8\x45\x64\xc1\x42\xfd\x40\xa4\x25\x2c\x70\x19\x17\x8b\x23\x28\x78\x8f\xa5\x9f\x16\x45\xdd\xe0\xc5\x01\xa3\x3b\x6d\x3f\x93\x73\x29\xa6\xc2\x28\xdd\x5f\x74\x7a\x8a\xd2\xeb\xc9\xdb\x7f\x6d\x28\xe8\x91\xf6\xda\x7f\xb5\xb1\xea\x9d\xdb\x07\xe1\x2f\xc3\xd4\x7d\x0e\xd4\x84\x11\x22\x23\x41\x46\x8c\x04\x1f\xe0\xdf\xfb\x1a\x0b\xfa\x00\x69\xcd\x4e\xbc\x4c\xb0\xcd\x67\xdc\x1e\xf4\x06\x83\x48\xe0\x90\xf4\x45\x9c\x14\x83\x02\xde\x74\x61\x08\xa1\x98\xfe\xa2\xed\x1f\xc8\xcc\xc2\x68\xcb\xec\x1f\x30\xac\xfd\xda\x26\xd9\xfe\x00\x9d\xec\xd3\x6b\x78\x05\x3e\xc4\x79\x36\xc0\x1b\xf6\x39\x07\xf3\x69\x53\x73\xf7\x5d\xe1\xf8\x85\x2d\x8c\x84\x8f\x58\xfa\x99\xe8\xd9\x79\x69\x49\x19\x39\x7a\x63\x59\x63\x60\x6c\x62\x0c\xe3\xd8\x6d\xf3\x8a\x09\xb5\x40\x8a\xc4\x8d\xc4\x4e\xd3\xd4\xe8\x44\xe2\x04\xac\x9c\x66\x24\x50\xce\x26\x3f\x06\xe3\xa7\x8a\x05\x5c\x69\x7a\xf5\x58\x3b\xb3\x40\x11\x89\xb8\xfe\xf4\x97\xaa\x79\xc4\x7d\x7b\x97\xe2\x26\x26\x96\xb2\xb2\x35\xf5\x83\x7d\xed\xdc\xcb\xf7\xa5\x8c\x49\xb1\x31\xeb\xf8\x32\x10\x52\x69\x84\xcb\x60\x87\x86\xf2\xa0\x00\xaf\x6a\xc8\x89\xbb\x5f\x0a\xef\xf5\x17\x19\x84\x7e\xa0\x17\x0b\xbe\xac\xf4\x57\xab\x4a\x87\xe1\x60\xa7\x55\x3e\x32\x9f\x1b\xbd\x48\x6c\xbe\x64\x86\x76\x7f\x67\x7a\xbb\xe4\xe7\x88\x20\xc0\x94\x77\x94\x1a\xb6\x4d\x1d\xdc\x02\x40\x18\xde\x59\x84\xbc\xd0\x06\x60\xc9\x0b\x4a\xb5\x66\xde\x99\xff\x1f\x00\x06\x40\xf9\xbf\x8f\x1d\x4f\x9d\x36\x30\x2a\xa3\x21\x33\x3e\x04\xe5\x46\xff\x12\x5d\x97\x12\xe9\xcb\x2c\xf0\x48\x18\xbd\xfa\xfa\x8d\x4e\xa8\x0f\x2f\xeb\xe6\xc5\xb0\x05\x28\x52\xa1\x40\x48\x91\xa8\x48\x88\x0c\x27\xd5\x0c\x53\x18\x54\x7e\xf4\xd5\x50\xa8\xbc\xaa\x21\x55\xc2\x22\x7c\x51\x73\x90\x03\x15\x53\x4f\xed\xaa\xac\xdc\xf5\xd4\x94\xf8\xc9\x6d\xdb\xa0\xa2\x71\xdf\x80\xd5\xd2\xbf\x9f\x34\x53\xfc\x66\xc1\xcc\x3d\x43\x43\xf7\xcc\x14\x88\x9f\x24\xdf\x66\xdc\x27\xc1\xd4\x4a\x49\x17\xda\x4c\x80\x10\x8b\xf5\x21\x7a\x7d\xbe\x2c\x80\xcc\x85\x2e\x67\x80\x1a\x38\x3e\x15\xa8\x45\x54\xb2\x31\xc5\x79\x23\x24\x8a\x59\x84\x84\x0f\x38\x54\x49\x1b\x12\x43\xee\xe6\x39\xe0\x47\xaf\x3d\xd5\xe3\x0c\x2c\x29\x4a\xd3\x27\x25\x68\xc3\x04\xba\x50\xa8\x15\x1b\xf4\x5a\xc2\xb1\xc3\xdf\xc0\x84\xc1\xdb\x6d\x1e\xad\x45\x47\xa5\x72\xee\x36\x73\xdf\xd1\xee\xca\x1d\x7d\x39\xda\x4c\x1d\x64\x55\x36\x57\x98\xec\x03\xbb\xaa\xf5\x1d\x2d\xd5\xb1\x2a\x65\x61\x79\x95\xda\xd6\x55\x9c\x6a\xaa\x6c\xae\xcc\xd2\x99\x74\xea\xfc\x7a\x43\xe9\x60\x71\x32\xf0\xfd\x03\x17\x97\x4b\xd3\x1b\x97\x6a\x2b\x36\x0f\xf4\xe7\x64\x37\xd5\x54\xb7\x4f\x96\x37\x6c\x6b\x33\x06\x44\x25\x46\x8e\x87\x25\x46\x07\xa7\xe4\xb7\x58\x72\xda\xeb\xaa\x5b\x37\x39\xf3\x37\x0d\x8e\xe4\x65\x35\xe6\x26\x43\x76\xf7\xf6\x6a\x44\x24\x24\xe5\x40\xe2\x1b\x51\x29\x6a\x45\x43\xc4\x12\x37\xa4\x07\x9e\xab\x2e\x2a\xe4\xc8\x6e\x86\x1a\x49\x39\x0a\xea\x5a\x08\x04\x1c\x40\xde\x7c\x2c\x1f\x0d\x02\x8e\x13\xfa\x64\x20\x08\xd5\xae\x10\x7f\xec\xe7\x87\xfa\x20\x18\xb3\x37\xa5\xbc\x0c\x50\x5f\x4f\x7b\x5b\x5d\x4d\x59\x6b\x79\x6b\x6e\x0e\x01\xf0\xa4\x69\xd5\xc9\x49\x71\x31\x11\x0a\x7f\x39\x2a\x85\xd2\x50\x8a\xa1\xbb\x16\x8f\xeb\x51\xee\x94\x7a\x1d\x73\xe8\x7a\xfd\xdd\xc4\x2e\x19\x79\x25\xca\x95\xed\x3a\x39\xb5\x24\x27\x41\xa5\xf7\x98\x0a\xb8\x3d\x5b\x4e\x19\x22\x1c\x55\x1d\xd9\x24\xce\x51\x93\xd5\x7f\xb8\xeb\x60\xa8\xb6\xcc\x96\x41\xed\xce\x5b\xc1\xd8\x3c\x5f\x31\xbe\x2b\x49\xbf\xab\xbb\x7d\xd5\xa5\x06\xf7\xef\x63\x0a\xc6\xea\xf5\xa5\xf6\xf4\x70\x6d\xb8\xb5\xbc\xdd\xfd\x60\x52\x81\x2d\x3d\x14\x0e\xe4\xf7\x15\xa7\x44\x1b\xcb\x60\x1c\x1e\x00\x1c\x69\x72\x39\x4a\xdb\xb3\xa3\x22\x61\xa8\x41\x5d\x92\x95\x90\xd5\x3a\xef\x6c\xd8\xd7\x6f\x7d\x42\x5b\xed\x50\x27\x58\x2a\xd3\xf8\x52\xc2\x8a\xd4\x5c\xea\x6c\x29\x99\x3e\x56\xfb\xfa\xe1\x82\xe5\x81\xbc\xf0\x04\x4d\x78\x57\x74\x5a\x4a\xc4\x58\x64\x6a\x06\x59\xf3\x21\xad\xaa\xdf\x66\xa8\xc9\x4d\xc1\x19\x73\xc6\xde\x3a\xb3\x73\x64\xc5\x86\x30\xea\xa4\x3e\x45\x59\x08\xd2\xa0\x42\x8a\xe2\x8b\x06\x0a\x45\xd4\xa8\x53\x53\x92\x29\xf1\x9a\x3f\xd4\x20\x40\xd4\xf2\x37\xba\x21\x1e\x86\xd2\x28\x18\x0c\x54\xf9\x80\xe8\x70\xe5\x46\x0a\x05\xda\x57\x3a\x8f\x49\x53\xef\xa0\x96\x4c\xce\xa6\xf3\x76\x8c\x77\x17\xc5\x25\x2c\xef\x81\xb2\xdd\x2f\x2d\x8f\x3f\xb1\xab\xaa\x62\xf7\x73\x73\x63\xcf\x16\x2a\x67\x9b\xdf\xb7\xfe\xaa\xf0\x78\xa3\xfe\xab\x67\x7e\x6e\xeb\x01\x88\xac\xee\xdf\x92\xdf\x71\xb8\xdf\x6c\xed\xdb\xd7\xd8\x77\xac\xd7\x24\x04\xef\x12\x5f\xf8\x5e\xf5\xca\xdb\x17\xfa\x5d\x87\x9e\x1f\x9f\x7b\xe5\x70\x5d\x53\xe5\xa1\x6f\x34\xdf\x56\xb7\xd7\x5c\x9b\x30\x55\xbe\x7b\x77\xed\xfa\x1f\x42\x93\x42\x0c\xa5\x59\xb1\xc5\x33\xa7\x5b\x1b\x6e\x9b\x2e\x6e\x3c\xf0\x78\x3f\xe2\xd0\x32\xfa\x2e\xdf\xc3\x9f\x66\x76\x7c\x16\xa1\x49\xe3\xde\x00\x73\xa3\x08\x18\xd4\x88\xac\x1d\x82\xc0\x77\x79\x22\xd9\x79\xa1\x89\x18\xab\xd4\xde\xf0\x48\xfb\x55\x00\xac\x8d\x4b\x1f\xdf\xb3\x1e\xc7\xfd\xd2\xfd\x39\x9f\xe1\xca\xfb\x01\x1f\xda\x0a\xd5\x1e\x93\x95\x5b\x48\x31\x9b\x53\x54\xcc\x76\x75\xf0\xf2\x56\xbe\x96\xff\x14\x52\xa1\x2c\x54\x48\xed\xe4\x81\x7e\x58\x40\x36\xab\x41\x4f\x9e\x4c\xfc\x00\x98\xe7\xea\x24\xf4\x2a\x87\xb9\xe5\x6b\x70\xb0\xd2\x3b\x6d\x34\x45\x18\x3d\x58\x83\x62\x4e\x12\xf6\x72\x29\x84\xf4\xca\x32\xa0\x65\xd2\x48\x02\x64\xa8\x22\xa3\xa5\x45\xc0\x07\x62\xc9\x19\x36\xd6\x0d\x0c\xda\x5a\x1c\x89\x12\x94\xa5\x64\x8b\xb9\x7d\x60\x26\xab\x3a\x3b\x8e\x6b\x8c\xd4\x3a\x34\xe2\x2e\xd7\x28\x05\xb3\xb8\xd3\x4b\x0a\x61\x7f\x4a\x6d\xda\x15\x64\x4b\x54\xc4\xdd\x9f\xd1\x8c\xaf\x1d\xab\x61\xf0\x96\xf8\xd8\xa7\x7e\xa8\xdd\xb4\xb4\xbf\x42\x65\x9f\x1a\x6c\x4d\x5e\xff\xa5\x89\x02\x5d\xc6\x5e\x2c\xe1\xc2\xc3\x14\x0c\xea\xe2\xc3\xba\xc8\x02\x98\xbd\x62\xf8\x2a\xac\x8b\xf2\x7a\x58\xf7\x8d\x51\x2a\x1c\x5e\xfa\xe0\x2b\x3e\x10\xa3\xa2\xf8\x60\x8c\x4a\xf6\xc4\xbd\x33\xd3\x4f\x17\xae\xad\xe5\x3f\x35\x33\x7b\x71\x3c\x7b\x4d\x5d\xbf\xb3\x3b\x67\xa8\xa9\x28\x2a\xe3\xc1\xe9\xee\x1d\xf5\xa9\x12\x44\xa5\xa5\xde\xfd\x7d\xf9\x13\xee\x7b\x5b\x7c\x18\x95\x24\x7b\x5d\xa6\xfb\x77\x1d\xa3\x1e\x8c\x8a\x06\x21\xfe\x45\xb2\x86\x45\x20\x25\x1a\x73\x3d\x1b\x4b\x1a\xa4\x46\x01\x88\xc3\x01\xdc\x88\x3f\xd0\xe0\xfa\x40\x01\x53\xaf\xbc\x9f\x8c\xf9\x80\x79\x2f\x8d\x9a\x8a\x1e\xa0\xe7\x02\x10\x8c\x5c\x7d\x87\xe7\x9a\x1e\x67\xf8\x35\x9c\x87\x41\x7e\x89\x3e\x22\x1c\xf2\x4b\x1c\x23\xa4\x8d\x1e\x03\x00\x6f\x38\x7e\x9c\x86\x90\xae\xae\xd2\x20\xd2\xf5\xff\xc1\x4f\xb9\xdb\xf9\xd1\x91\xf7\x45\x1a\x4f\xca\xe3\x11\x68\x10\x5f\x80\x06\xf7\xd2\x4f\x11\x42\x5e\x2c\x1e\xf5\xad\x52\x3f\xf5\x8d\x71\x91\x37\x44\xdb\xf9\x90\x90\x5e\xfc\x23\xc2\xe8\xd6\xcb\xbf\xe3\xab\x99\x1d\x46\x89\xee\xf1\x9a\x03\x78\x10\x80\x17\x16\xa4\x30\x4f\x36\x62\x0c\x3d\xe8\x43\x00\x24\x5d\x73\x05\x39\xb7\x11\x96\xc1\x70\x64\x37\x2f\xe7\xc3\x8a\x60\xc0\x9c\xd4\x48\xf5\x95\x68\x5b\xab\xca\xaa\x88\xf4\x42\x72\xa4\x99\x00\x78\x6d\x0d\x7f\x7d\xed\xf1\xe7\x5c\xbb\x7b\x2c\x6b\xcb\x53\xe5\xdd\xd6\x48\x12\x6c\x79\xe1\x91\x4f\xa4\xb5\xef\xeb\xda\xbd\xa4\x2d\xef\xa7\x5b\x05\x34\x2d\x36\xf0\x99\xc2\x27\x51\x2c\x52\xa3\x2c\xca\x39\xe3\xac\x0f\x06\x2c\x93\xfc\xe1\x41\x10\x10\xe0\xdf\x17\x08\xfe\xfe\x15\x2e\x3f\xa0\xf0\x4e\x1e\x68\x6f\x52\x95\x43\x32\xde\x6c\x74\x96\xe7\xe7\x52\x4d\xdb\xa0\x63\x63\x1a\x55\x65\x0f\x0b\x66\x54\x96\x8a\x6b\x57\x62\x85\x5a\x4b\xc6\x56\xea\xf8\x0f\x32\x99\xe3\xc7\x61\x8e\x80\x41\x87\x13\xad\x16\x4b\x82\x3f\x81\x83\x66\x87\x16\xce\xb5\x98\xff\xee\xfe\x1c\x6c\xff\x81\xfb\xe3\xc0\x89\x97\xb9\x20\x2f\x30\xd4\xfd\x5f\xe9\x66\x0a\x5e\x35\xa7\x53\x88\xe8\xf8\xc7\x16\x0b\x31\x2f\x13\xc6\x19\x48\xb4\x61\x4f\x3f\xf7\xf6\x8c\x07\xd2\x7a\xc6\x03\x69\x4d\xf5\xfc\x45\x80\xbe\x47\xe3\xa1\xf8\xfc\xeb\x63\x78\x4b\x6e\x1e\xc3\xfb\xef\x8f\xaf\xad\x9d\x85\xcf\x9c\x15\x63\x71\xec\x79\xf8\xf7\x45\xf1\x41\xb2\x2d\x7f\xe2\x6e\xf8\x94\xa8\x70\xbf\x84\x00\xe5\x79\x74\xc0\x60\xba\xd7\xa5\x64\x71\x34\xd4\xca\x8f\x22\x52\xaf\x0d\xe8\x8d\x52\x44\x32\x9b\xa8\x36\x4a\x60\xf8\x15\xb9\x9d\x58\x01\x60\x33\xe8\xc4\x1f\xd2\xe0\xde\x4f\x7c\x62\x8d\x73\xf4\xcf\xf5\xbb\x2f\x4d\xe1\x87\xf3\xe7\xf2\xf1\x25\x84\x36\x60\x4e\x15\xc4\x4f\x10\x4c\xe9\xe8\xa4\xf2\xb9\x2b\x70\x65\x8e\xe3\x7b\x18\x66\x79\xa3\x53\x92\x42\x50\x79\xc4\xbc\x96\x1b\x0f\x53\xb0\x32\xf1\x51\x32\x5b\x95\x56\x2e\x78\x5e\x0b\xc1\xa1\xa5\x86\x38\xfc\x3d\xe8\xe6\xc5\xa7\x3c\x70\xd4\x93\x1c\xcc\x8b\xfb\xe0\x9f\xdc\xe1\xa5\xb9\x25\x77\xeb\xe6\xcd\xf8\xc8\xce\x2d\x3b\x70\xee\x0c\x92\x78\xf2\x44\x17\x1f\x49\xb9\x53\x29\xbb\x53\x5c\x64\x04\x27\xe1\x84\xfd\x01\x01\x57\x27\xf0\xd8\xab\x86\x4a\x78\x29\xdf\x96\x9f\xe2\x78\x94\x5a\x2d\x43\x48\x46\x78\x61\xc2\x1e\xa1\x66\x07\xda\xf1\x51\xa0\xe0\x23\x20\xa5\x6c\xaa\x26\xc1\x1c\x17\x1c\x9e\xa3\xc8\x28\xd0\x84\xb9\x6f\x5f\x5d\xc5\xf3\x24\x7e\xeb\x1f\x15\xc4\xa1\x14\xe8\x37\x2a\xf7\xcf\xac\xea\x36\x0e\xf0\x9f\x7c\x9f\x90\x64\xf1\xef\x57\x91\x15\x09\xd0\xd7\x48\x9d\x38\xbe\x11\x65\xa2\x57\x9c\xa1\xe9\x80\x79\x2e\x8a\xfc\x13\x09\x80\x39\xc9\x1e\xe4\xb1\x99\xca\x04\xec\x59\x92\x36\xce\x6b\x1f\xd9\x24\x55\xc2\x4a\x7c\xb1\xb3\x37\xbc\x2e\xf2\x43\xcb\xfa\xd0\x62\x7c\xf6\xa1\x4c\x94\x19\x95\xa6\x4f\x93\xec\x43\x4a\x8f\x25\xee\x5a\x08\xf5\x46\x40\x39\x38\x02\x62\x2b\x3a\xa7\x8b\x07\x8f\x75\xa7\xeb\xeb\x17\xeb\x53\x0a\x52\x82\x83\x12\x93\x12\x02\xcd\x55\x99\xd1\x89\x25\x13\x75\xa5\x13\x8d\x0e\xc5\x36\x3e\xff\xd3\xe6\x86\xdc\x24\xe7\xca\x83\xa3\xee\x48\xd7\xde\x01\x7b\x80\xff\x24\x27\xe3\xb1\xae\xac\xcb\x82\x7f\x53\xbb\xbb\xcf\x4a\x7d\x76\x6e\x8e\x67\x76\xdc\xfa\xcb\x7f\xe4\x1f\x15\x3e\x4d\x06\x28\x13\xee\x76\x3d\xab\x22\x0d\x0c\x48\x01\x1e\x27\x03\x92\x33\xcc\x9d\xfa\xca\x11\x3f\x7a\x84\x7d\xf1\x97\xbe\xf4\xf4\xf8\x18\x3d\x11\x35\x43\x8e\xf8\xfb\x28\x37\x0b\x5d\x01\x7e\x98\xda\x20\xc1\x27\x3d\x83\x6e\x7c\x65\xc5\xf5\x57\x86\x7c\xe4\x32\x55\x1f\xb9\x4c\xda\x8e\xf4\x1b\x5d\xc9\xb6\xdc\x4c\x06\x07\x80\x9f\x9f\xc7\xc7\x40\xef\xc8\x20\x77\xd8\xbc\x77\x10\xdf\x9b\xef\x86\x0f\xbd\xd7\x69\xb9\xea\x36\xc4\x2e\xf5\xed\xf1\x6f\x7c\x53\x0f\xfb\x71\x46\x24\x25\x68\x54\x09\x99\x49\x99\x4c\xca\xe6\xa5\x86\x05\x12\xab\xad\x4a\x25\x93\x51\xff\x2c\xdd\x04\x39\x72\xa2\x95\x3e\xd6\x0b\x81\x84\xcb\x10\x9c\x31\xd5\xe3\x15\x44\x45\xe5\x1f\x15\x73\x0a\xb6\x97\x6c\xb9\x38\x96\x95\x35\x7a\x61\x4b\xc9\xce\x02\x12\x29\x5a\x03\xbb\xc5\x83\xf0\x86\xbb\x5c\x5d\xa9\x56\x57\xa9\x3b\x17\x2a\x12\x12\x2b\x16\x65\x01\x00\x43\x17\xbe\x38\x05\xdb\xa6\xbe\x78\x61\x08\xc8\x70\x4e\xb8\xbf\x3f\xe1\x7e\x22\x94\xc2\x95\xfe\xcd\x61\x68\xd8\xfd\x40\x97\x78\xb4\xeb\xc1\x3d\x0d\x2c\x42\x31\x9e\xe8\xda\xaf\x93\x77\xcc\x86\xea\x50\x17\x8d\x24\x0c\x20\xb7\xa4\xa7\xaa\x38\x8a\xe2\x23\x9f\x11\xe6\xfc\x30\xd3\x03\x7c\x08\x72\xe0\x38\xbe\x4f\x00\x46\xf7\x57\xef\x6a\x6b\x71\x75\xd5\x77\xa5\xa5\xe9\xd2\xb4\x51\x06\x4d\xe0\x06\x6a\x5c\x3a\xf7\xaf\xdf\xa1\xa8\xaf\xec\x6b\x6e\xc0\x87\xab\xb2\xe7\x78\x3e\xc6\xeb\x5a\xf6\xf6\xda\x3a\x2b\xed\x91\x11\xb6\xb2\xc6\xac\xb6\xad\xb5\xa9\x58\xf4\x8f\xb6\xb4\x16\xea\x9c\xf6\x8c\xf0\xb4\x28\x5b\x49\x43\xe6\xf8\x2d\xfa\x48\x7b\x65\x07\xd1\xc7\x5b\x74\x6b\x91\x96\x76\x67\x49\xab\x25\x2a\xca\xd2\x5e\x52\xd2\x96\x1d\x85\xb3\xe0\x20\x84\x13\x7a\xad\xbc\x7a\x53\x24\x5e\xed\x7c\xfc\x48\x5b\x82\xb5\x2a\x3d\xbd\xca\x9a\x50\xb9\x7c\x47\xf3\x03\x7d\x85\x7b\x26\xcb\xc2\x62\x55\x61\xad\x51\x86\xa4\x70\x98\x6a\x4d\xab\xb4\xc4\xb7\x1e\x79\xac\xab\xe4\xe0\x6c\x45\xe5\xcc\xc1\x92\x17\x8a\x0f\xce\x56\x56\xce\x1e\x2c\xc6\x6d\x99\x13\x1d\x79\x15\x33\xfb\x0a\x99\x6d\x92\xda\x6a\xdd\xb2\x64\xa4\xa0\x38\x34\x8a\x6b\x0a\x00\x8a\x52\xa5\xe7\x30\x82\x51\x9f\xcd\x96\x5c\xa0\xd0\x6a\x99\x41\x94\xf5\x89\x07\x43\x4a\xcc\xc4\x0a\xf8\x5f\x70\x8c\x9f\xe8\xd2\xd5\x68\x43\xe3\xf3\x53\x0e\x9c\xc1\xfc\xa5\xfe\x53\x9b\x6c\x01\xfe\xc3\x72\x39\xdc\x79\xf8\xfd\x4d\x54\x26\xdf\x4f\xe4\x5f\x9d\x2c\x99\xfa\x95\x9d\x85\x2a\x90\x09\xa9\xc0\x93\xf1\xc5\x88\x3c\x13\xf3\xcc\xda\xc4\x0b\x32\xf2\x3c\x84\xf8\x1e\x1a\xa2\x75\x15\x06\x2e\x4a\xa3\x55\x44\xe9\xb4\x1e\xef\x0c\x47\xfb\xdc\x2b\x7e\x1c\x54\x55\xf3\x45\x39\x31\x39\xa4\x54\x71\xaf\x88\xef\x00\x64\xf7\xef\x6f\x69\xa8\x0e\x0e\xd6\xe8\xd4\xc1\xf6\x8e\xc2\x14\xf8\xf6\x77\x20\x6f\xe2\x44\x67\x46\xbb\x31\xcc\xd9\x54\x32\x59\x63\x00\x80\x54\xee\x07\xef\xff\xac\xeb\xd8\x60\x76\xc2\xa8\xcc\x5f\xce\x69\x2a\x47\x8a\xf9\xe4\x4d\x7b\xbb\x8e\xf4\x99\x42\x83\x46\xa3\x55\xce\xa1\xe2\xbd\x08\xa3\x35\x32\xb7\xbe\x2a\x43\x28\x0d\x55\xa3\x96\x97\x75\xf1\x98\xf7\x2d\x73\x71\x4c\xc9\xbe\x21\x99\x8a\xe4\x9e\xc1\x4b\x37\x3c\xd9\xf3\x4a\x66\x56\x6c\xa6\x8e\x2e\x78\x57\xb3\x49\xd0\xd9\xe6\xb0\x4a\xc4\x92\xd7\xd3\x1f\xb8\x3c\xe6\xa5\xae\xdb\x36\x12\x4b\x14\xcf\xf4\xd6\x25\xa5\x3b\x54\x21\x78\x4e\x69\x6d\xca\x31\xe8\x18\xc7\x44\x6e\xdb\xff\x85\x63\x22\xd1\x56\x6b\xf4\xcb\xac\xe8\xb4\x94\x2e\xf4\x14\x87\x76\x7c\x7a\xf0\x66\x74\x13\x08\xa3\xad\xa4\x4f\x9e\xe2\x9f\x44\xc9\xc8\x4e\x77\x7d\x0a\x3f\xcc\x79\x6c\x6b\x4b\xde\x66\x56\x6f\x34\x98\xa4\xa5\x19\x95\x1a\xda\x5c\xcf\xde\x8a\xb6\x92\xb9\x75\x6e\x12\x19\xb0\x95\x6d\xaa\x26\x1f\x2a\x32\x16\xea\x14\x30\x0f\x63\x93\x19\x99\x1f\x1e\x23\x50\x5d\xcc\xab\xf3\x9a\x2d\x7b\x2e\xc5\x55\x3e\xda\x7f\x93\x60\x01\xc6\x03\x20\xd4\x0a\xeb\x48\x4b\x46\x35\x08\x58\xa0\xa0\x24\x87\x95\x2c\x74\x46\xa0\x21\x26\x57\x71\xb7\xc4\xd3\x33\x18\x2d\x5d\x7f\x46\x8a\xb3\xd0\x22\xad\x36\x2a\x3d\x9a\x69\x11\x51\xde\x71\xbc\x21\x81\x80\xb5\x4c\x17\x06\x5b\x92\x2b\x66\xea\x6f\x42\x25\xf0\xa6\x3c\xa3\x6a\x20\xaf\x79\xdf\x40\x9e\xdc\x5d\xf5\x01\xac\x02\x48\xc2\x09\x0b\xb1\xfc\x45\x32\x16\x1f\x73\xfa\xc7\x29\x65\x1c\xcf\xe1\x2b\x9e\x26\x10\xb0\xb0\x44\xb7\x3e\x9e\x45\x1f\xae\xda\x2e\x24\x6c\x38\xef\x33\x80\x6d\x58\x64\x22\x6f\x5a\xc6\x4d\x6f\xf7\x69\x12\xc9\x28\x99\x00\x89\xd5\x91\x4c\x93\xa0\x52\x43\xad\xbf\x1e\x4f\x4c\xfb\x4b\x88\xc5\x7b\x6f\x5b\x90\x5d\x0b\x2b\xce\x20\xa8\x0e\xe0\x2f\xde\xfd\x48\xc8\xfa\x33\xd7\x21\x8c\x6f\x93\x6b\x0a\x5a\x73\xa4\x98\x49\xd1\xc5\x25\x52\x7f\x1b\xc5\xb5\x06\x03\xe6\xa4\x5d\xc4\x0d\xe3\xc2\xe8\xfe\x80\x6a\xd5\x37\xda\x1f\xa8\xc0\x1f\x47\x6e\xd4\xfe\x73\x3c\xc1\x60\x63\xde\x10\x30\xaa\xdf\x6f\x08\x02\x43\x18\xbd\x42\xde\x87\x66\xbe\x09\x25\xa1\x74\x4f\xdc\x29\xe6\x18\xf9\x8d\xc0\x63\x61\xc4\x17\x6c\x4a\x83\xd7\x79\xde\xdb\x41\x29\xc9\x80\xb4\x9a\xe4\xf4\x94\x74\x4f\xdc\x69\x12\x24\xd1\xb8\x53\xa0\x72\xc0\x67\xfb\xb1\xd3\x40\x53\xea\xb8\xd5\xe7\xe4\x30\xb2\x46\x1a\x88\x8a\xc7\xe7\x5f\xda\x57\x05\x35\x7b\x9f\x9e\x9c\x79\x78\xb1\x90\x4b\x05\xeb\xd0\x2d\xdd\x33\x4f\x17\x5b\xcb\x3e\x7f\xa6\x76\xad\x37\x2f\xd0\xdd\x07\x19\xed\x6b\x7c\x63\xc7\xed\x9f\x99\x75\xcc\xbd\x79\xb6\xb3\x6a\xe7\xe3\xa3\x13\x89\xed\xf7\x6e\xab\x2e\x28\x6e\x2b\x75\xad\xe3\xfc\x4d\x07\x6b\x13\x2b\xd6\x7a\xed\x08\x40\xc5\xff\x9a\xab\x17\x7e\x87\xfc\x28\x76\x42\xc6\x61\x0f\x69\x40\xf5\x86\x10\xfe\xf0\x48\xe6\x69\x8b\x52\x13\x5b\x88\xdd\x61\xe5\xea\xe7\x1f\x7f\x74\xf6\xf7\xf5\xfc\xfb\x8a\xa7\x9f\x8e\xfc\x03\x02\x68\xe4\x7f\xc2\xed\x12\x7e\x45\xca\x48\x74\xc6\xc9\x18\x4e\xd6\x0f\x50\xcd\x06\x4f\xa9\x87\xa3\xdb\x61\x8d\x92\xab\xf5\x76\x2b\x1e\xff\xf8\xe6\xdf\x76\xfe\x76\x46\x30\x7d\x22\xf4\x5f\xff\x0c\x43\xb4\x57\xf8\x4f\x73\x47\x85\xcf\x20\x05\xad\x87\x07\x2d\x26\x51\x74\x80\x67\x25\x4a\x8d\xd4\x30\x62\x0e\xaf\xd8\xf0\x4c\xa0\xa3\xd8\x58\x3f\x55\x52\x32\xdd\x60\xc4\x13\xdc\x48\x77\xc7\x08\x2f\x7c\xa6\x60\xa8\x5c\xa3\x29\x1f\x2a\x68\xee\xeb\x6f\x42\x80\x43\x85\x30\xfc\xba\xf0\x92\x87\x1b\xda\xa3\xff\x93\x72\x6f\xe0\x42\x0c\xcd\x4c\x33\x98\x4c\x86\xb4\x4c\x61\x53\x6a\xb6\x59\xad\x26\x36\x26\x0c\x4f\xf3\x27\xb9\x44\x41\x64\x38\x87\x62\xd7\xb3\xc9\x14\x51\x7f\x8d\x63\xae\x98\xa3\x56\x63\x0f\x77\xc3\x28\x83\x9f\x74\x79\x66\x1d\x86\xa6\x9e\x97\x3f\x32\x0c\xe2\xe9\xc4\xec\x72\xbd\xae\x3c\x3b\x91\xfc\xd5\xe9\xc9\xdf\x7a\x45\xa2\x5e\xa9\xd4\x27\x84\x85\x25\x90\xbf\x86\xc4\x30\xa1\x42\x57\x61\x4d\x4c\xb4\x56\xe8\xf4\x65\xd9\x09\x09\xd9\x65\x7a\x25\x59\xfe\xc3\x93\x0c\x4a\x65\x7a\x72\x78\x78\x72\x3a\x5b\xe3\x1f\x10\x47\xf1\xaf\x91\x16\xc5\xd2\xfe\x0c\x62\x63\x12\x1b\x88\x99\x0f\x12\xfa\x24\x33\x8f\x56\x4f\x9b\xaf\x0a\xe1\x28\x42\x99\xc6\x37\x6f\xe0\x8d\xc7\x5f\x4c\x2d\xb7\xa9\x20\xd3\x98\x92\x1b\xa5\x4c\x74\x59\xb5\x25\x59\x71\xfa\x92\x56\x63\x94\x25\xbf\x4c\x6b\xc8\x04\x62\x15\x6a\x8f\x88\x8d\xce\x28\x4e\x4b\x6f\xae\x29\x8e\x95\xf6\x60\x67\xf9\xbf\x72\xa9\xc2\x0f\x50\x22\xc5\x20\x23\x00\x1c\xc2\xec\xed\x89\x80\x6b\x82\xe9\x94\xe2\xa8\xc2\x36\xe4\x05\x87\x54\x40\xbd\x5a\xaf\xde\x88\x41\xa6\x9a\x85\x07\x81\x24\x11\x63\xa5\xe2\xf8\xec\x0a\x63\x56\x79\x61\x71\x9a\x35\x97\x6b\x82\x78\x12\xf6\x9d\x5e\x5e\x52\x6a\x88\x35\x24\x84\x62\xe1\xcb\x69\x75\xb9\xaa\xd4\xf4\x54\xa8\xb0\x04\x1b\xc8\x47\x75\x5a\x6a\xa4\x2a\x83\x56\x06\x43\x14\xff\x03\xee\x15\xe1\x1f\x14\xe3\x48\xf3\x76\x18\x68\xde\x0e\x5f\x82\x0e\x54\x0c\x14\x4d\x8a\x81\x4e\x86\x0e\x5f\x3a\x0f\x04\x24\x6f\x87\x8f\x67\xc3\xca\x48\x2b\xd4\x5c\xe2\x79\xf1\x3b\xdb\xb5\x27\xff\xb1\x45\xf8\x87\xf8\x33\x48\x16\x7f\xc6\xca\xff\x9a\x78\x01\xff\xe4\xf2\x43\x64\x4e\x24\x53\xd6\x8e\x0f\x1a\x79\x8d\x4e\x1a\x77\xe1\xda\x71\x97\x66\xaf\x4d\xa7\xd6\xc9\xe0\x6b\x4a\x9d\x25\x21\x9e\x20\x31\xa2\xb5\x96\xf8\x78\xab\x4e\x59\xc3\xa7\x26\xc6\xe9\x40\x1f\x97\xa8\xfe\x79\x42\xb6\x26\x2a\x4a\x43\x06\xda\x9c\x1a\x19\xa1\xce\x4a\x8c\xd3\x68\xe2\x12\xb4\xa0\x43\xb0\xfe\x2a\xff\x35\xf7\x77\x65\x01\xa4\x8d\x3a\xc9\xf4\x17\xe8\x7b\x6b\x69\xfb\xfc\xd9\xaa\x4c\x9d\xce\x3d\x2f\x5e\xa1\xe1\x70\x7f\x77\xf4\x13\x07\xf8\xaf\x41\x31\x1b\x33\x77\x13\xff\x75\xb1\x57\x16\xb8\xb1\x0c\xdf\x6b\xcb\xca\x20\x5f\xa9\x9b\xfc\x4a\x19\xa4\x4f\xdc\x3f\xdb\xfe\x7c\x8f\x2c\x50\xfc\x1c\xf3\xfd\xae\x2f\xf2\x7f\xbd\x8c\xc8\xb8\xcb\xd1\x03\xef\xbf\x83\xa4\x72\x5b\xf9\x6f\x8b\x7b\x89\xad\x46\x49\x51\x38\xd1\x80\x31\x62\x3e\x77\x84\x97\xaf\x0d\x09\xd8\xe8\x78\x07\xbd\x07\xae\xe2\xf0\xe6\xdf\x70\xaf\x40\x72\x61\x56\x62\x5a\x61\x55\x92\x3c\x67\x73\x9b\x35\xd9\x52\x92\xc2\x7f\x7b\x37\xe7\x1f\xa1\x4e\x48\xd2\x46\xc9\x1b\x20\x22\xad\x34\xcb\x90\xab\x8d\xe0\x49\x8b\xf0\xfb\x2b\xfc\xbb\x62\xa8\xf0\x7b\x3a\xee\x14\x2f\x79\x55\xaa\x96\x2b\xd4\x2d\xd2\xe0\xba\x13\xb6\x8b\xdf\xbe\x07\xc3\xdc\xbf\x4f\xf2\xef\x42\x80\xf8\x77\xc6\x4d\x02\xeb\x6e\xf1\x6b\xee\x27\x2e\x2f\xde\x0c\x77\x20\xe8\xae\x08\x8d\x75\x11\xb2\x3c\x1c\xaa\x3f\x27\x70\x74\xb5\x17\x77\x80\xcb\x04\x3f\x2e\x4e\xd6\x42\xea\xa2\x70\x86\xf8\x3a\x92\x74\xa3\xdc\x83\x1a\xb9\xeb\xe0\xa9\x5a\x59\x8b\xf8\x0a\xe2\xa0\x51\x48\xe4\xde\x92\xdd\xeb\xb1\xa7\x53\x1b\x22\xa3\x9f\x91\xb8\xee\x70\x1f\x5d\x68\xcd\x5c\xbd\xc7\x88\x2e\xa7\xfc\xdd\x72\xb5\xf0\x41\x46\xac\x3d\x27\x9a\x87\xc5\xbf\x64\x30\xff\xb0\x2e\x13\xbe\xe1\xfd\x24\xbb\x77\xdd\x4c\xbd\xc0\xaa\xec\x6c\x95\xe7\x2f\xe5\xda\x35\xe1\x9d\xf8\xff\x71\x29\x58\x86\x56\x63\x68\x35\x3f\x85\x10\x6f\xf0\xf1\xc0\x49\x00\x79\x6c\xa0\x96\x93\x34\x89\x45\x46\xae\xf4\x30\x5b\xf1\x06\x77\xc8\x1a\xb7\x59\xa8\xfb\x37\xc5\x7e\x90\x2b\x59\xbc\xce\x93\xcc\x76\x29\xa3\x16\x28\x19\x60\xa0\x03\x0f\x40\xee\xc7\x98\xad\xc7\x69\xd4\xf2\xe2\x41\x17\x13\x1d\xd7\x08\xa0\xa2\xff\xe3\x97\xe0\xef\xef\x9f\xc5\xfe\xe2\x39\xce\x2a\xce\x53\x96\x4e\xf2\xfb\x12\xff\x71\xc6\xd3\xe9\xe3\x69\xe3\x28\xc3\x18\xe3\x62\x04\x52\x08\xa0\x11\xaf\x19\xdb\xec\x63\xee\xce\xc6\x94\x5d\x4c\xef\xe9\x27\x4a\xf9\xf3\x21\xbc\x6d\x5c\xab\x18\x03\xef\xb9\xff\x73\xf2\xb6\x87\xc6\xcf\xfc\x47\xf4\x6d\x08\x50\x23\xc5\x3f\x78\xb9\xa1\x10\xed\x26\x3a\x65\xd3\xd8\x64\x65\xfd\x2c\x4d\x56\x3c\x2b\x0e\xec\x84\x5f\xcd\xc3\x7b\x3b\x05\xfc\x6f\x91\xf6\x8e\xd4\x2f\xf7\x78\x38\x24\xe9\x7c\x67\x1c\x95\x1e\xfe\x41\x9a\xbb\x81\xd9\xe1\x0c\x3e\x9b\x1f\x1d\x3c\xfa\xc3\xfa\xc5\xe1\xf1\xd8\x73\xe4\xf7\x1e\xee\xce\xf5\xcd\xc3\xf8\x6b\x6e\x5b\x07\xb7\xb0\x7e\x7a\x7c\x9c\x0b\x9b\xe0\x64\x13\xac\x7e\x4f\x93\xf2\x93\xbc\xbc\x5b\x08\x80\xd9\x0a\x36\x56\x32\x8c\x97\xc7\x78\x99\x17\x55\x7c\xd2\xaa\x7b\xd7\x2a\xb7\xe0\x9d\x10\x80\xb6\x93\xfb\xa7\x18\x57\x61\x96\x33\x83\x52\x03\x06\xc9\xe8\xc0\x0b\x00\x88\xab\xf3\x72\x5d\x5e\x5d\x47\xe2\x23\xa6\x65\x02\x50\x6b\x20\x80\x9d\xfc\x01\xfc\x2f\x31\x9a\xeb\x59\x57\x60\xde\xbd\xce\xbd\xba\xfe\x0b\xf8\x1f\xfc\x2b\xf7\xde\x89\x01\x7c\x1e\xf7\x0f\x4c\xb8\x3f\x4b\xfb\x82\x8a\x12\x7e\x0f\xe3\xf7\xd2\xa0\x2c\x64\x76\x66\xf2\x80\xfc\x41\x26\x47\xb2\x51\x3f\x90\x73\x00\x58\xce\x38\xb4\xd9\x54\x4c\xc3\xf5\x19\xc6\x18\x62\x7e\x8c\x51\x28\x62\xc2\x02\xe4\x89\x46\xd8\x98\xf3\xc7\x13\xea\x01\x36\x29\x5b\x83\x96\x7a\xfe\x15\x21\x1c\xfe\xd8\xe4\x33\xfb\xaa\xab\xf7\x3d\x33\xb9\x3a\xf5\xcc\x9e\xea\xea\x3d\xcf\x4c\xad\xc2\x84\x65\xe0\x70\x6b\xeb\xe1\x01\xcb\xfa\xa7\x2d\xfd\x87\xda\xda\x0e\xf5\x5b\xf8\x5f\x0b\x6d\xb7\xbd\xb1\x65\xfe\x8d\x13\xed\xc2\x57\xbe\x22\xb4\x1d\x7f\x63\x7e\xcb\x1b\x27\xda\x84\x2f\xb8\x33\x7a\xee\x5e\x28\x13\xd6\x9f\xe4\x2b\x96\xee\xe9\xee\xbd\x7b\xb1\x9c\xe7\xda\x85\xf2\xc5\xbb\x11\xa0\x9d\xa4\xfe\x43\xa4\xfe\xc9\x28\xc5\x99\x98\x18\x16\x8c\x78\x16\x80\x46\x49\x99\xbc\x6f\x9f\x52\xa9\x8c\x66\x9d\x43\xe4\x24\xd9\x58\x84\x70\xd4\x00\x67\xe2\xf4\x0a\x6b\x04\xab\xa1\x15\x3f\xea\x5a\x6d\xcd\x84\x55\x80\xe2\xa5\x07\xc6\xb7\x11\xa3\x74\x11\x6c\x83\x8c\xd6\x95\xba\x6d\xf0\x43\xff\xca\xb9\xb3\x5d\x38\xdb\xfd\xf6\xc2\x27\x8e\xb5\xfa\x8b\x27\x60\xd9\xbf\xed\xd8\xab\x0b\xf4\x48\xd7\x99\xb9\x4a\x7f\xee\x7b\x6c\xcc\x67\x49\x3d\x36\x31\xfe\xd8\x74\xa7\x3e\x1a\x31\xd9\xed\x45\x93\x99\x99\x37\x05\x7a\x04\x90\x06\x2b\x2e\x5d\x11\x9f\x4e\x27\x94\xb6\x98\xf3\xed\xe0\x24\x68\x37\xb5\xe5\x52\x04\xc5\x46\xa0\x12\x8d\x42\xc1\x2f\x37\x2c\xd4\x6a\xcc\x43\x27\x87\x87\x4e\x0c\x9a\xb5\xae\xa5\x46\xb1\x0d\xb2\xeb\x16\x5c\xfa\xd2\x3d\x9f\xd8\xb1\xe3\xb5\xbd\xa5\x3a\xd7\x7c\x2d\xd8\xc4\xf6\x23\x29\x5b\x2f\xbe\x39\x3f\xbe\xf9\x33\xb7\x77\x74\xde\xfe\xe9\xcd\xe3\x0b\x6f\x5e\x5c\x4e\x39\x32\x6e\x3e\xf9\xc4\x1b\x43\xa3\xbb\xde\x7d\x66\x7a\xfa\x99\x77\x77\x8d\x0e\xbd\xf1\xc4\x49\x33\xf5\x9b\x1c\x21\xfe\xfe\xa3\x1e\xbe\x92\xa7\x9c\xc1\x96\x6c\x12\x44\x87\xa8\x41\x09\x79\xe9\x4a\x62\x91\x4c\xc6\xf5\xc9\xa9\x39\xd8\xea\x12\x80\x0a\x75\x0c\x00\xd9\x3e\x63\x6b\x22\x55\xd3\x8d\x2e\x76\x19\xba\xd1\x45\x91\x37\x2f\xe5\xe6\x05\xb0\x9d\x91\x02\xa1\xdc\x9c\x4c\x23\xa9\xa5\xce\xa8\xd3\x45\xf9\xd1\xd1\xa4\x46\xb2\x8d\xd1\xa3\xd2\x1f\xda\x75\x3c\x73\x48\xc2\xb5\xcc\x24\xdc\xf7\x03\xa2\xf5\x49\x61\x89\xc1\x8a\x98\xac\x38\xa3\xd3\x94\x24\xcf\x7d\x7c\x7e\xea\xae\x51\x73\x94\xb1\xb4\x77\xa9\x7a\xe1\xd1\x9c\x14\xf7\x5a\x72\xf5\xd6\x0e\xc7\x60\x43\x21\xa1\x26\x69\x18\x74\x74\xae\x54\x27\x13\x27\xd3\xdb\xa9\xa5\xd9\x49\x02\x37\x10\x1c\x10\x97\x55\x9e\xd6\x31\xdc\x73\xee\x33\x93\x51\xb5\x27\xf6\xce\x34\x66\x8c\x77\x3f\xee\xfe\x7c\xd3\xf9\x1d\xf5\x29\x79\x0d\x26\xf8\x69\x56\x5b\x91\xb6\xfd\xc8\xa3\x6d\x4c\xae\x7f\x46\x5c\xe4\x9b\xc9\x9c\x48\x41\x4e\x1a\x61\x15\x00\x32\x2e\x2b\x16\x0b\x32\x4c\x54\x7d\x0e\xc9\x04\x4e\x36\xca\xf6\xff\x72\x40\x88\x89\x62\xa6\x65\x66\xd3\x37\x2d\x13\x33\xa2\x9d\x92\x22\xbb\x35\xdd\xa0\x72\xa6\x3a\xe3\xe3\xa2\x22\x28\xd5\x8e\xbf\x5c\xda\xf2\x44\x5d\x13\xfd\x41\xa6\x74\x31\x17\x91\x93\xa3\xf7\x4e\x27\xc5\xc6\x04\x1b\x76\x3c\xdc\x7b\xe7\x5c\x51\xa2\xbd\xde\x54\x3a\x53\x9f\x5e\xb9\xe3\xa1\xc1\xac\xa1\x9e\xe6\x94\x35\x28\x99\xbf\xbb\xe3\xf8\xbd\x60\xac\x9f\x71\x96\xcd\x36\x66\x28\xab\xbb\x46\xed\x75\xbb\x29\xaa\x78\x7b\xcd\x29\xe1\xad\xdc\xf1\x13\x1d\xf6\xc1\xa6\x92\xe8\x88\x8a\xe1\x1d\xb5\xe3\x97\xe6\xf2\xc2\x52\xb2\x55\x22\x2f\xbc\xd4\x7a\xe7\x52\x85\x7b\x19\x9f\x38\x58\x30\xee\x4a\xb7\x76\x2c\x96\xac\x7f\x55\x57\x98\x16\x9d\x41\x60\x73\x35\x84\x9e\x10\x26\x24\xfd\xb6\x57\x1c\x21\xf3\x2b\x1f\x05\xd0\x7d\x8e\xbf\x80\x39\x2f\x89\x1d\x19\x6f\x80\x4c\x1a\x1e\x2a\xad\x8d\x56\xea\x39\x20\xff\x2a\x1d\xbc\xff\x1e\x51\xbf\x43\xd4\xed\x81\x59\x53\x16\xd9\x45\xfe\x4c\xac\x82\x4f\xf0\x29\xeb\x5f\x3b\x79\x52\xc2\x61\xed\x21\xeb\xda\x88\x2c\x01\x65\xa3\x6a\x64\x73\x66\xfb\x01\xa0\x0c\x7f\xcc\x03\xc5\x64\x00\x07\x3c\x23\x92\x05\x1e\x01\x05\x0b\x78\x97\xb7\xf2\xb2\xdc\x9c\xd4\x14\xad\x46\x90\x47\x4b\x3b\x8a\x1c\x66\x99\x93\x5f\x09\xad\xf6\x59\x57\x68\x68\x25\x71\x60\x73\x57\xb0\x81\x7a\x86\x42\xf1\x73\x4e\x1d\xa9\x6e\xbd\xcf\x95\x58\x78\xb6\x25\xa3\xa7\xc6\x04\xa6\xc6\xa9\xfc\x89\x87\x57\x4b\x01\x2a\xf7\xbd\xb2\xbc\xfc\xea\xfe\x2a\x80\x9c\xe1\x23\x2d\x38\xb3\xcd\xa9\x0b\x07\xeb\xc8\xf1\xde\xde\xdb\x86\x2d\x00\x84\xa2\xb9\xb1\xe7\xd4\x44\x2e\x08\xfe\x95\x93\x15\xa9\x90\x6e\xe8\x8e\x4b\xa7\x5a\x58\x66\x46\x99\x4d\xaf\x48\x1c\x3d\xf6\xe4\x44\xca\x96\x4f\x9f\x68\x6d\x3d\xf1\xe9\x2d\x29\x5d\x97\xf6\x74\x85\x06\x12\x18\x46\x9b\x5b\xd5\x79\x7e\xb9\xa2\x62\xeb\x3d\x9d\x29\x35\x27\xb7\x36\xf9\xf3\x65\x2b\xf7\xb6\xb3\x7e\x3d\x4f\xfa\xa0\x83\x6f\x40\x4e\x1a\x7b\x42\x0d\xfc\x14\x89\x26\x23\x11\x48\xf2\x05\x2f\x8b\x2c\x92\xfb\x91\xbf\x72\xe4\xcb\xea\x66\x75\x79\x31\xc5\xd9\x5c\xbd\x34\xb9\xb2\x4c\x34\x0c\x2c\x2c\x34\xd0\x1f\x39\xc1\xc9\x26\x17\xed\x90\x6b\x00\x77\x37\x09\x26\xb2\x5a\xa3\xf0\x4a\xd9\xbe\xb1\xa2\xe2\xf1\xfd\xe5\xce\x3d\x63\x4e\xd8\xce\x77\x1d\x79\xb4\xbd\xf7\xc9\xa3\x6d\xda\xb2\xde\x1c\x73\x5b\x91\xba\x7e\xdf\xc3\xbd\xed\xf7\xef\x6b\x16\xb6\xe3\xa2\xe1\x6d\xf9\x65\x3b\x06\x72\x73\xfb\xd7\x4a\xff\x0b\xfe\xae\x30\x35\x3b\xf3\x5a\xad\x31\x89\x79\x9d\x79\xdd\xbb\x9b\xb5\x9a\x86\xb5\xf6\x9c\x8e\x12\x63\x70\x68\x46\x81\xcb\xd4\xb6\x52\x9b\xaa\x6b\x5c\x69\xcc\x69\xb2\xc5\x2a\x2d\x0d\x39\xb9\xae\x8c\x88\x31\x9a\x7f\x49\xdc\xcd\xb8\x6c\xcd\x94\xdd\x1c\x58\xec\x6c\x8c\x52\xca\x96\x04\x3d\x98\xea\x4d\x54\x5b\x22\xa7\xcd\x59\x26\x8e\x36\x29\x0a\x42\x38\x1a\x80\xa8\xf4\x42\x54\x3d\x50\x29\x3d\x19\x59\xda\x34\x50\x11\x6f\xbc\x58\x94\x37\x5a\x97\x0e\xb6\xd6\x71\xcb\xfd\xa6\xee\x2a\x63\xb2\xa5\x38\xa5\x22\x3e\x2b\x35\x22\x91\xb0\x94\x9c\x68\xb8\x6d\x73\x31\x18\x5b\x96\xab\x60\xe7\xfa\x2f\x84\x67\x1b\x45\xbf\x82\xad\x3b\x0f\xbb\x0a\xdb\x72\x55\x81\x9a\xc0\x98\x8c\x8a\x1c\x43\x4b\x6d\x51\x64\x5e\x94\xd9\xea\x48\x8c\xd7\x25\x44\xc8\x13\xc3\x2c\xcd\x5b\x5b\x2b\x8e\x9f\x3a\x5d\x0d\x8f\x4c\xd0\x31\x7b\x8d\xbc\x0b\x51\x7c\x23\xf5\x50\xbf\x1c\x09\x98\xf3\x71\x9c\x28\xaf\x30\x95\x58\xa9\x51\x28\x8d\xbd\x1b\x3e\x01\x1b\x2f\x30\xf9\xc8\x2e\x42\xd7\x5f\x12\x7f\xb3\x12\x6e\x7a\xb3\x87\xf3\x84\xee\x25\xa2\xb4\x84\xf3\x44\x7e\x15\xe7\xc9\x46\x77\x55\x9a\xdc\xfe\xe2\xc1\xd7\x3f\x89\xd7\x52\xab\x66\x6a\x2b\x66\xda\x0a\xc2\xd7\xf8\xfc\xcf\x6f\x5a\x85\x1f\x7c\xfd\xfd\x57\x09\xd8\x73\xb5\x2d\x43\x53\xdc\x65\x75\xf3\x7c\xbe\xa4\x63\xbd\x45\xe3\xf1\x59\xae\xa7\x54\x94\x85\x5a\x5c\xcf\x86\x31\xc8\x1c\x66\x34\x08\x3e\x46\x6d\xb3\x0f\x47\x91\x4d\x77\x4e\xd7\x9d\xb7\x6c\x38\x4f\x21\x16\x94\xb5\x26\x4d\xc3\x74\x54\xaf\xc5\xc7\x07\x26\x13\x54\x1b\x5c\x0a\x3e\x90\x0f\x1f\x9c\x35\x76\xff\xc2\xc2\x7d\x13\xd9\xe6\xf1\xfb\x16\x16\xee\x9f\xc8\x72\x9b\x70\x5f\x52\xd5\x72\x57\xe7\xd6\xca\x24\xdc\xe7\x7e\x38\xb9\x6a\x6b\x67\xe7\x32\xf9\xec\x5c\xfd\xfe\xc3\x9b\x36\x3d\xfc\xfd\x55\xc8\x5a\xfd\xc1\xc3\xa3\xa3\x0f\xff\x60\x75\x6c\xad\xf7\x49\xaa\xa6\x3c\xd9\xfb\xce\xb6\x9e\xa7\x8e\xb4\xb6\x1e\x79\xaa\x47\x92\x6b\x6f\x93\xf6\xe9\x29\xdf\x00\xd5\x1f\x03\x00\xb8\x40\xc0\xe0\xb3\x9f\x49\xd2\xcd\x23\x7a\x28\xdd\x18\xd3\xf8\x22\x54\x11\xb2\xab\xd7\x2c\x4e\xf5\x36\x7c\x09\x40\x5d\xd8\x92\x99\xde\x98\x1a\x6b\xdb\x64\xab\xd9\xda\x6e\x02\x2c\xbe\x40\x56\x9d\xf7\x9c\x2d\x59\xe1\x11\x81\x5d\x71\x8a\x94\xda\xb5\x1e\xfc\x38\x7b\x6e\x11\xc9\x1f\xd1\x4e\xf6\x6a\x06\xf8\x98\xe4\xd5\x0a\xa5\x86\x3b\x3d\xc6\x1c\x79\x7a\x12\xa0\x6a\x92\xef\xed\xea\x23\x50\xeb\xf1\xec\x45\x7b\xab\x64\x96\x0c\x93\x3c\xd5\x47\x7d\xde\x3c\xdf\x59\xcb\xb5\x67\x43\x6e\x7a\x6f\xe8\x4d\xef\x0d\xbb\xe9\xbd\xe1\x37\xbd\x37\xf2\xa6\xf7\x46\xdf\xf4\x5e\xe5\x4d\xef\x8d\xbd\xe9\xbd\xb4\x57\x23\x7d\x21\xe0\x1b\xcf\x39\x63\x7c\x87\xc9\x01\x7a\x1f\x93\xab\xd9\x34\x50\xc0\xf7\xf3\x8a\x2e\x56\x17\x1d\x26\xc8\x63\x8d\x56\x35\xe8\x7d\xd6\x48\x26\x38\xe1\x6a\xc2\x0b\x4e\xfe\xd9\x43\xf0\x70\x51\xb0\x2a\xa3\x40\x1f\x9c\x12\x24\x84\x19\x23\x9d\x83\x65\x99\x61\xb0\x14\x18\xaf\xcd\x4a\x0e\x09\x0f\xe5\x82\x52\x42\x72\x9a\x8b\xb2\x22\xfe\x1d\xca\x27\xdd\xaf\xae\xc9\xd7\xf2\x78\x48\xf0\xb3\x34\x0e\x18\xd7\xb5\xc9\x45\xd9\xc9\x1c\x37\xce\xcb\x35\xa5\xdd\x36\x7c\x7f\x0e\xa2\xdc\x23\xe2\x41\x3e\x86\xe8\x1c\x35\xd4\xd3\x50\x03\x88\x2b\x60\xf3\x52\xa7\xc5\xb8\x9a\x2d\x0b\x78\xc8\xa7\x96\xa2\xfa\xaa\x0a\x95\x21\x95\xa7\xcb\xaf\x4e\xb7\x41\xa2\x7b\x3f\xde\x48\x60\x5e\xb5\x16\x44\x2b\x79\xbe\xe4\x40\x79\xf3\xf1\xc9\x82\xd2\xf9\x73\x6d\xc7\x8e\x8d\x3f\x77\xd0\x55\xb5\x74\xaa\x6e\x53\x46\x67\x45\x7a\x8a\xb9\x30\xb1\x2c\x26\x43\x45\x24\x68\x41\x52\xf5\xc4\x27\x6e\x6b\xb5\x0f\x1f\x6c\x2c\x9c\x72\x19\x9b\x6f\x7d\x65\xa2\xf6\x74\x81\x60\x8f\x8c\x8a\xcf\xeb\x2e\xac\xe8\xcb\x55\x4e\x1a\x3a\x8f\x0e\xb7\x6d\x6b\xb3\x85\x29\x03\x63\xd2\xca\x6c\x3a\x57\x59\x6e\x64\x7e\x94\x21\xc3\x92\x1c\xa7\x89\x55\x10\xd8\x54\xd9\xd4\xf9\xf9\xd6\x83\x63\x55\x91\x0a\x5b\x4d\x6f\x6e\xcf\xbe\x56\x7d\x4c\x14\x7b\x27\x06\x2f\xff\x85\x7f\x94\xbc\x8b\x4a\x34\xe3\x7a\x56\x47\x7d\xdc\x54\x25\xf0\x67\x0d\x8f\xf7\x7e\xe1\x29\xa7\x8c\x74\x3a\x46\xe0\x30\x42\x0c\x14\xe3\x79\x4f\x79\xa0\x2f\x2a\xb5\xd1\x5f\x75\x8a\xe7\xd3\x36\xbc\xc7\x34\x6c\x9a\x6c\xde\x22\xb4\xea\x30\xb9\x3c\x9e\x06\x24\x10\x1b\xa0\x77\x34\x75\x7a\x0f\x1c\x4a\xc5\xf7\x3e\x83\xf3\xaa\xe3\x2c\x51\xb1\xda\x2a\xdd\xda\x66\x10\xcb\xb6\xdd\xcf\xad\x73\xdf\x71\xe7\x77\x0c\x40\xa0\xac\x37\x22\xf0\xdc\x6d\xf8\xb3\xeb\x99\xdc\x77\x26\x11\x26\xe3\x35\xcc\x5b\xd9\x9a\x90\x41\x47\x4c\xe3\xc7\x1c\x66\x5e\xbd\xc5\xea\xf3\x83\x65\x7b\x44\xb6\x21\x4d\x1f\xa1\xa1\x93\x6b\x23\xc6\x8c\x0c\xcf\xd5\x18\x33\xea\x2a\x70\x48\x69\xf1\x2c\x13\x17\x66\x66\x5f\x2a\x5e\x03\x80\xb2\xd5\x07\x47\x97\x1f\x99\xb1\xae\xa9\x5c\x3b\x7a\x3a\x76\x34\x19\x30\x64\x3e\xb8\xb5\x7b\x67\xbd\x1a\x2e\x4f\x7f\xe6\x6c\x57\x4b\xa3\xfb\x7b\xdc\x3f\xfc\xe7\x5f\x3e\x50\x3d\x7c\xe9\xeb\xf3\x1d\x8f\x1d\x6e\xad\x5e\xbe\xbd\x56\x7c\xa3\x7b\x1a\xea\xb6\x9f\x6f\xa1\x7d\x7d\x48\x5c\x60\xdc\xa1\x76\xc6\x5b\x91\x82\xa1\x1a\x01\x86\x65\x84\xb1\x04\x8a\xb2\x52\xb2\x50\x46\x13\x6a\x07\x3b\xef\x51\x56\x7d\x59\x62\xe9\x22\x9c\x44\x21\xfd\x6c\x46\xe5\xb0\x48\x65\xaa\x6e\xe1\x99\xc1\x4b\x5b\xcb\xb9\x65\x6c\x6a\x5f\xad\x25\xbc\x0e\x99\x00\x05\xb3\xf7\x0c\x38\xe7\x5b\xb3\x00\xd4\x79\x35\x9a\xdc\x98\xec\xb4\x78\x48\xce\x75\x19\x57\x3f\x75\xb4\x8e\x3a\xb6\x5e\xe4\x1b\xed\x63\xa7\xfa\x68\x1a\xce\xba\x9d\x97\xda\xd2\xbb\x4e\xcd\xd6\x86\x93\x24\x08\x0d\xf9\xa6\xd6\x72\x7b\x78\x7d\x90\xda\x94\xa7\x56\x65\x26\x2a\xe4\x51\x5d\x87\x9e\x9b\x4f\x9f\x79\xeb\x8e\x6e\x84\xd1\x32\x91\xdb\x04\x37\x86\xa2\x51\x06\x63\xb4\xf6\x92\x9c\x1a\x7d\xce\x18\xb2\xe5\x48\xd3\xa6\x19\xd8\x1b\x0c\xaa\x0d\x4e\x37\xea\x3c\x55\x79\xf3\x0d\xfa\xe2\xae\xf8\x03\xe2\x17\x16\x56\x30\x38\xb7\x3f\xb7\xb4\xf4\xdc\x4e\x27\xa9\xdb\xce\x67\xe7\xb1\x75\x7d\x1a\x4c\xbd\x87\x7b\x48\x08\xb3\xc9\xdc\x77\xb8\xab\xf3\x70\x6f\x16\x70\xdf\xa9\xfa\xc5\x09\xd5\xf8\xa7\xce\x76\x53\x37\x9b\x6a\xe6\x53\xa7\xdb\xdd\xdf\xf6\x79\xdb\xda\xee\x5e\xa9\xaa\x5a\xb9\xbb\x0d\x31\x5d\x81\xec\xcb\x0c\xa4\x9e\x11\xd4\x16\x78\x65\x3a\xd3\x2e\x66\x26\x8a\xab\x16\x18\x3a\x27\x3d\xf5\x25\x90\x7b\xaf\x84\xd1\xd1\x39\x49\x41\x79\xe2\x0e\x80\x91\x1e\x6d\x45\x62\xac\xa9\xdb\x74\xfa\x38\x16\x6f\xe7\xb6\x70\xdf\x72\xf7\xaf\x8c\x87\x05\xf4\xc4\x86\xe1\x0b\x8f\xe1\xfb\xa7\x3d\xbc\x45\xa9\xe4\x99\xc9\x3e\xae\x6f\xf2\x14\x84\xbc\x4f\x91\xbc\x53\x69\x4a\xad\x40\x05\x86\xc2\xbb\xc2\xea\xb0\xde\xba\x71\x23\x02\x76\x6d\xcd\xe6\xca\x9e\x83\x1d\x69\x50\xe6\x38\x44\xec\xec\x61\xf6\xc5\xa7\xd7\xc6\xef\x9e\xb4\x01\x81\x5d\xcd\x35\xef\xed\xce\x6a\x3e\xf0\x50\xc7\x71\x08\x3b\x50\xb0\xe7\xc8\xa9\xc6\xb9\xaf\x5e\x18\x2c\x5a\x7a\x78\x1a\xdf\x4e\x75\xfb\x73\x62\x2a\xdf\xcb\x17\x10\x71\x5b\x40\x79\x13\x03\x01\xa3\x74\x7d\x14\xe2\x81\x41\x13\x50\xcd\x95\xd9\x46\x57\x59\x5c\xef\xb0\xa7\x19\x12\xe2\xa8\x96\x27\x78\x64\x13\x25\x45\xa1\xb2\x4b\x02\x58\x30\x74\x39\xd5\x61\x22\xc8\x84\x33\x09\x8c\xc5\x0d\xdb\x16\x2f\x8d\x65\xc6\xe5\xf5\x94\x94\x58\xca\xd3\x23\x20\xb9\x7a\xb1\x35\x26\xbb\xce\x9a\x3f\xd2\x58\xa8\x8f\xb4\x4c\x3f\x48\x00\x8c\x64\x1b\xa3\x81\x40\xa5\xd6\x5a\x6e\x8c\x4a\x8c\xf0\x87\xf0\xa0\x89\xf3\x9f\x9d\xac\xbf\xf7\xc4\x76\x63\x57\x1a\x49\xbe\x92\xdf\x78\x7e\x4f\x77\x30\x17\x64\x68\x28\xd2\x01\x64\x36\x4e\xaf\xed\x2b\x1e\xfb\xec\xbd\x53\x81\xa2\x0d\x5b\x82\xfa\xf6\x9d\x77\x19\x37\x6d\xea\xad\xd0\x43\x64\x32\xa9\x3e\xa0\x23\x62\x25\x3f\x4a\xfa\x56\x8d\x4a\x09\x20\x30\x2a\x1c\x78\x40\x54\xfd\xd3\x10\x79\x14\x42\x91\xe4\xa4\x35\x3e\x9d\x2d\x84\xd9\x93\x3d\x47\xa9\xe2\x13\x84\x10\xb9\x53\xad\x8c\x8d\x95\xfa\x9e\xb4\x85\x8c\xae\x55\x0a\xf4\x93\xcc\x19\x76\xaf\x39\x03\x3f\xd0\xbf\xa7\x51\x05\xf9\xd9\xfb\xb3\x6c\x59\x33\x4f\xee\x5a\x9d\xbd\x6f\xca\xba\x0a\xda\xba\xa5\x46\xa2\x54\xc4\x05\x0d\xde\xfa\x48\xfb\x41\xf7\xda\xf4\xfa\x99\xb9\x6f\x3c\x34\x13\x20\x76\xc2\x93\x81\x63\xf7\x7f\x6f\x37\xfc\xaf\x18\x35\xfe\xcc\xe1\x8e\x20\xee\x17\x08\x18\x1e\xfb\x20\xa9\xaf\x93\xee\xb0\xb2\x99\x8e\x4d\x6d\xab\x1c\xa0\x05\xb9\x0c\x73\x9c\x91\x99\xb3\x18\x26\x84\xae\x7f\x08\x91\x2b\x9d\x86\xb4\x58\xa2\x9f\xf9\x51\xf5\x4c\x86\xe5\x9e\xc4\x37\xd4\xe6\x22\xcd\x15\x9e\xcd\x95\xe8\x70\x9a\x4c\x6d\x43\x2e\x27\xbb\x2d\xdc\x41\xaa\x5b\x00\xb2\x90\x58\x7d\x8e\xd6\x51\x65\x08\x85\x6d\x10\x6a\xa8\x74\x68\x1d\xfa\xd8\x10\x19\x14\x9a\xf7\x58\xad\x01\x71\xe9\xa5\xdd\xf9\x96\xa6\x42\x63\x48\x48\x7a\x61\x93\x25\xbf\xbb\x94\x64\xe2\xb2\x5a\xf9\xfc\x23\xe2\x6f\x4f\x99\x26\x46\xfb\x2a\xd3\xaa\x97\x4e\x56\x81\x46\xfc\x71\xd5\xc9\xa5\xea\xb4\xca\xbe\xd1\x09\xd3\x29\x88\x3c\xb2\x2c\xfe\xf2\x7c\xc1\xde\x9d\x5b\xda\xb2\xd5\x45\x84\x54\xaa\xa3\x48\x9d\xdd\xb6\x65\xe7\xde\x82\xf3\x10\xc7\x12\x5f\xa3\x87\x49\x5b\xef\x10\xbe\x89\xb2\x90\x13\x4e\x4b\xeb\x7f\x60\x16\x60\x99\x3d\x01\x23\x4c\x97\x90\x10\xf6\x0d\x04\x9c\x00\x88\xa5\xe2\x62\x1a\x53\x92\x00\x98\xb9\x30\x7c\x1b\x2c\xf3\x46\x21\x42\xb5\x9f\x1b\x5e\x65\xb9\xe6\xaa\xf0\x8f\x54\x56\xf4\x47\x2a\x4b\xf9\x91\xca\x8a\xff\x48\x65\x25\x7e\xa4\xb2\x32\x3e\x42\x59\x4e\x2d\xc2\x32\x9a\x6e\x9c\x06\x85\x23\x4e\xb8\xf1\x75\x3e\x25\xca\x19\x90\x11\x95\x45\x54\xfd\x70\xba\xcc\x52\x27\xb8\x57\x02\x2b\x1c\x54\xea\xf8\x36\xe5\x76\x2f\xd0\x2e\xc7\x01\x6c\xea\x7b\xf5\x7f\xfe\x0e\x7d\xbb\x11\x1c\x9b\xef\x95\xd2\x6e\xac\x91\x7c\x85\x2e\xd7\x42\xad\x16\x66\x5f\x3d\x5a\x0f\x90\xde\x30\x5f\xd9\xb6\xa3\x49\xdf\xd4\xe0\x9e\x23\x38\x97\xf6\xa8\xac\xc6\xfc\x8c\xf2\xcc\x18\xfc\x60\x48\x04\xfe\xee\xe4\x23\x2b\xc5\xe5\xdb\x1e\xda\x04\xb5\x58\x7c\xa9\x7e\x6f\x9f\xc5\xd4\xb3\xaf\xe5\xfb\x01\x0d\x7b\x3e\x3e\x13\x51\xb5\xbd\xd7\xe6\x9c\x3b\xdd\x2c\x3e\xc2\xc7\xc2\x54\xdb\x91\x4d\x45\x01\xd0\x95\x3f\xd3\x9c\xa5\x2e\x6a\xcb\x66\x72\x5b\x8b\x10\xff\x1c\xc1\xe8\xa6\xa3\x7d\xce\xd0\x64\x3f\x0c\x28\x2d\x29\x2a\xdc\x5f\xc0\x80\x37\x12\x92\x49\x3a\xa5\xd7\xa8\x4a\x55\xf0\xab\xcf\x98\xaf\x9c\x09\xf9\x80\x7b\x6e\x74\x39\x53\x3f\x89\x4b\x4c\xd2\x10\x8a\x39\xa5\x94\xab\x59\x0a\xa2\xa1\xfb\x38\xb2\x1f\x96\xd4\x51\x22\x19\xb1\x92\xf0\x7e\x71\xae\x68\x6b\x91\xcb\x14\x6f\x8d\x8d\x0e\x4e\x0e\x4f\xca\xd6\x27\x05\x89\xbf\xd9\x26\xbe\x17\x94\xa4\x37\x27\x45\x24\x05\x2b\xe3\x2c\x09\x26\x57\x91\x35\xfa\x35\xad\x8e\xff\xbe\x8d\xa2\x83\x20\x30\x64\x50\xee\x07\x31\x69\xb6\x78\xf7\x1d\xee\xc7\x70\x2f\x9e\x8e\xb3\xa5\xc5\x82\x9f\x7c\x30\x24\x10\x20\xa5\xb0\xc3\x26\x76\x2e\x2f\x4b\xb6\x9a\x54\xf2\x6e\x3d\x44\xe4\x48\x2a\xaa\xa2\x19\x37\xc2\x80\xf2\x3d\x20\x39\x92\x21\xb9\x6c\x41\xe0\xb0\x6f\x39\xa3\x29\xf7\x7d\x36\x3f\xad\x32\x2d\x52\x11\x6b\x48\x0b\xf3\xa7\x36\x66\xf5\x0d\x45\x06\x51\xb5\x38\x22\x4f\x54\x3e\x49\xc3\x6f\x90\x34\xfc\x43\xc7\x74\x69\x01\xb1\x69\x25\x9d\xb9\x56\xaf\xc8\xb0\xe6\x76\x16\xa7\xc7\x04\xa6\xe9\xb6\xf3\x07\x9e\x03\x73\x9a\xfb\x70\x9a\x19\x84\xe0\x18\xad\x4d\xa3\x75\xa4\xc5\x85\xca\x61\x95\x48\x9d\xaa\x5c\xb5\x4d\x1b\x13\x2c\x70\xdf\x59\x14\xdf\xbf\xc5\xb6\x30\xbb\xa9\x2e\xc3\x2b\x37\x32\xea\x36\xcd\x2e\xd8\x6e\x01\x61\x71\xd2\x7d\xf7\x01\xc0\xbb\x77\x8b\xe2\x01\x5d\x67\x67\x63\x91\x46\x95\xd7\xd0\x3d\x94\x05\xc1\xe2\x5f\xa8\xf0\xd1\x14\x36\x75\x74\xb1\xf9\x60\x26\xfb\x35\xe2\x98\x41\x6a\xf4\x13\x67\x00\x06\x1e\x12\xe1\x0a\x13\x74\xb2\x37\x64\x8a\xc2\x1d\xe4\x3d\x48\x2e\x8f\x96\x70\x40\x02\x60\xac\xf4\xcd\x8b\x9b\x5e\x96\x24\x4d\x92\x8f\x56\x5a\xc6\x47\x29\xcd\xa9\xbe\xd1\x15\x82\xa0\x94\x2e\x43\xec\x2a\xf6\x9e\x06\x12\x6d\xd8\xa0\x88\x51\x87\xf9\xc9\x28\xde\xcc\x13\xea\xb0\x71\xc7\x40\x37\x3f\x0a\x0f\x83\x84\x18\x6e\x9e\xc8\x99\xbe\x30\x69\xb3\x8e\x9c\xec\x83\xf2\xd1\xd2\xe4\xd4\x9a\x85\xc6\xbc\x11\xcb\x8a\xf8\x00\xf7\x59\xa1\xce\xfd\xdb\xc8\x58\x8a\xbb\xe8\xbb\x7b\x4b\x09\x8c\x80\xb5\x6b\xb9\xac\x6e\xff\x70\x6e\x62\xb8\x3b\x47\xa8\x9b\xa0\xbe\x72\x32\x97\x06\xc9\xde\x26\x8b\xac\xa1\xc5\x08\x53\xe8\x0e\xe5\x76\x22\xd8\x4c\x81\x4c\x26\x4a\xf7\x2d\xe7\xaf\x64\xeb\x4a\xf4\x71\x5d\x27\x31\x73\x50\x16\xca\x22\xe0\x38\x4a\xb1\xe2\x2f\x8b\xf7\xba\xcf\xed\x8a\xeb\x88\xeb\x55\x51\x57\xb0\x8b\xfc\xa0\x7f\xf5\x8e\x27\xe7\x76\xbc\xb2\xa3\xb8\x98\xfc\x33\xf7\xe4\xf6\x1a\xff\x6d\x41\xb6\xae\xbd\x1d\x23\xb7\xf5\x66\xe0\x22\xf7\x9b\x19\xbd\xb7\x8d\x74\xee\xed\xb2\x91\x6c\x6d\xe3\x8f\xef\xac\x9c\x7c\xf2\x9d\x35\xf0\x5b\x7b\xe7\xc9\xc9\xb2\x1d\x4f\x4d\xb7\x1e\x19\xb6\xf5\xdc\xfe\xea\x50\xdd\x44\xef\xf0\xab\xb7\xf7\x5a\x06\x8f\xb4\xd1\x77\x22\x05\x21\xfe\x5e\xe1\x59\x66\x19\xc9\x77\x3a\x10\xf2\x07\x39\x4f\x93\x2b\x63\x2c\xf4\xf8\x81\x20\x44\xb3\x5c\xf6\xd0\x47\x5f\x70\x25\xd4\xab\xd5\x08\xa9\xb3\xd4\x24\x77\x1e\xb9\x25\x55\xa5\x27\x11\x80\x01\x32\x1a\x88\x6e\xf5\x6c\xcf\x68\x4a\x0d\xe2\xaf\x53\xdb\x99\x6b\x2e\x82\x9c\xf0\xec\xd7\xf0\x7f\x9d\x6e\x5d\x71\xa9\xd5\xae\x95\x56\xd1\x2d\xae\x07\x80\x7f\xb4\xbe\xb8\xab\x30\x31\x46\x63\xd7\x28\x83\x05\x08\x85\xf7\x4e\x3b\xea\x8c\xe1\x04\x31\xe9\x20\xf9\xbe\x2e\x41\xed\xea\xdd\x4d\x4d\x77\xaf\xd6\x02\x19\x8e\xef\xb4\xbf\xfc\xdc\xfd\xdb\x6b\xc7\xcb\xe7\x4e\x9d\xbf\xb7\x02\x9f\x75\xe7\xb9\x77\x41\xe1\xe0\x72\x4e\xce\xc2\x40\x21\x90\x76\xdc\x42\xda\x71\x4c\xca\x03\x48\x11\xe4\x08\xfb\x83\x1f\x8f\xfd\xe8\xe6\x98\x97\x53\x4a\x76\x00\x88\xa6\x10\x59\xae\x8f\x7a\x64\x95\x1c\x71\xc5\xd0\xec\x7f\xa9\x0a\x05\x69\x82\x22\x2c\x40\x96\x40\xe3\x3a\xac\xbe\x76\x78\x72\x91\x5d\xa9\xff\x3a\x6c\x5e\x1e\x18\x3e\xd0\x98\x9a\xda\x78\x60\xf8\x9b\xe2\x9d\xcb\xcb\xf0\xdf\x03\xd5\x9d\x59\x61\x0a\x73\x67\x25\xa7\xc0\xf7\xb9\x8f\x41\xf5\xd6\x33\xf5\xf5\xe7\x56\x6a\x80\x46\x9b\x90\x46\xa4\xba\xef\x86\x82\xde\x39\xab\x75\xa6\x27\x1f\xd8\x3b\x58\x4e\xea\x33\x49\xea\xc9\xf8\xe1\x31\x70\x10\x45\x8d\x6f\x75\x5e\x86\x1e\x01\x3c\x3b\xbe\x68\x17\x2f\xbd\x29\x74\x93\x17\x45\x76\x79\xb2\x78\x69\x56\x2b\xaf\xf0\x22\xab\x75\xbe\x09\xfd\xae\x68\xb6\x4c\x58\xc7\xce\x8e\x98\x61\x05\x92\x4a\xa7\xea\x72\x46\xc9\x54\x7e\x88\xfb\x18\xe9\xbb\x1f\x07\x47\x42\xe1\x96\x8b\x9b\xc4\x51\xb8\x58\xbb\xad\xc3\x04\xe1\x21\xee\x12\xa1\xce\xe3\x1f\x14\xef\xe3\x93\xbc\xf9\xd4\x10\xcf\xf1\xcb\x54\x97\x8a\x76\x31\x57\xa1\xa7\xa7\x3c\x5e\x47\x19\x09\xb0\x62\xe1\x35\x92\xaf\xf0\xe9\x55\x7c\x68\x55\x3c\xba\x2a\xee\xa5\x7e\x5e\xc1\xf5\xef\x66\xf1\x3e\x18\xf1\xe6\xfe\x4b\x90\xe2\x58\xa9\xd7\x10\x01\xcd\x5d\x08\xc2\x28\xf2\x64\xfd\x89\xf6\x45\x6f\xb1\xf6\xd1\x70\xd2\x54\x32\x08\xa4\x8d\x74\xd7\xe0\xcd\xb7\xa4\x26\x9f\xae\xe4\x5f\xe4\xe3\xdd\x21\x60\x9c\x7c\x6c\xad\xb4\x74\xed\xb1\x49\x71\x80\xdb\x4c\xbf\x37\xee\xea\xca\xca\xea\xda\xdd\x40\x5f\x58\xc8\x9d\xbe\x6b\x98\x84\x93\xe6\x93\x7e\x4f\x71\xdf\x01\x99\x6d\xcb\x55\x95\x0b\x4d\x19\xc0\x64\xff\x08\x69\x67\x17\xab\x53\x2c\xdd\xc5\x30\xb4\x48\x0b\x25\x60\xeb\x41\x6c\x8e\xf3\xd8\xe3\x27\xa7\x55\x8a\x8e\x66\x2d\xa6\x92\x44\x6b\xe5\xd8\x4c\xe0\xac\xc5\x38\xdc\x11\xa1\x82\x10\x8e\x4d\xf1\xdf\xcc\xfa\xcf\xae\xff\x75\x2a\xb8\x38\xb7\x3e\x3b\x4e\x88\xc5\x43\x22\xe2\x23\xf4\xc5\x66\x9c\x23\x1e\x1d\x17\xf3\x81\x3c\x0f\xbe\xa0\xbd\xf0\x23\x08\xbe\x13\x07\xb9\xff\x3a\xf1\xbf\x3f\xff\x72\x25\xff\x0b\xc9\x5e\x97\x41\xfa\xe7\x12\xa9\x4b\x14\x9d\x03\x11\x7e\x18\x09\x50\x27\x07\x01\x03\x4b\x4e\xe8\x27\xc3\x3c\x1f\xed\xf2\xe7\x30\x7b\xe1\xa2\x22\x69\x5d\x58\xde\xef\x00\x19\x5d\x80\xe8\xce\x9e\x11\x57\x82\x95\x4e\x57\x16\x56\x82\x7f\xeb\xda\xda\x24\xbe\x73\x1a\xaa\xc4\xff\x77\x0c\xa0\x67\x6b\x07\xa0\x5b\x48\xba\x80\xaa\xd3\xf8\x69\x77\x2b\xfb\xfd\x21\xfe\x2f\xf7\x18\xbe\xc0\x7e\xd3\xdd\x3a\x29\xd7\xfa\x6f\x88\x6f\xf7\x2d\x8f\xdd\xfe\x86\xfc\x1f\x7e\x70\x4d\xb2\xf5\x44\x5f\xb2\xf5\x24\xfe\xc6\x76\x7b\x19\xdd\x67\x5f\x4f\x06\xe2\x71\x12\xdd\x90\x0d\x84\xfa\x84\x9a\x6e\x99\x28\x28\x98\x38\xde\x52\x7d\x70\xbc\x08\xaf\xe1\xd6\xc3\x4f\x0f\x4d\xbe\x7a\xac\x29\xad\x66\x53\xbe\x73\xb6\xc1\xd8\x75\xfa\x53\x53\x24\x23\x55\x17\x39\x55\x3c\x7d\x5b\x63\xeb\xd9\xf9\x52\xe7\xdc\xed\xad\xaf\x72\x71\xaa\x8a\x19\x57\xed\xbc\x4b\x97\xd6\x30\x5f\x35\x78\xc7\xa4\xc3\x3c\x76\xf7\x64\xd1\x64\x6b\x71\x64\x78\x41\xe7\x72\xcd\xd4\x85\x29\x9b\x7d\xf3\x7d\x33\x75\x6b\xed\x26\x7d\xe3\xd6\xc6\x8e\xa5\xaa\xe4\x49\x04\xe8\x49\x84\x78\x95\x37\x07\x9d\x3f\x8f\xbd\x54\xa1\xd1\x8c\x2a\x54\xe9\x21\xd0\x94\x79\x78\x0c\x29\xb7\x24\xc7\x3d\xb9\xba\x0a\xee\x15\xf2\x0f\x75\xdf\xf3\x9f\x7f\xbf\x80\x04\x46\x15\x22\x40\xd9\xa4\x2c\x1d\xcb\x1f\xa8\x67\x99\x0d\xf8\x1e\xba\x13\x61\x2b\x99\xc4\xf5\xa5\xf4\xd2\x53\x10\x79\xa9\x90\xd1\x42\x15\xea\xab\xc5\x24\xaf\x5b\x15\xfd\xc2\x70\x70\x52\x76\xdd\x58\xb9\x41\x63\x2c\x33\xab\x22\xfd\x21\x92\x3e\x88\xcc\xed\x47\x5a\x9e\x7e\xf4\xce\xc5\xf2\xf1\xe2\xf1\xc3\xa7\xcf\x94\xe2\xcf\x20\x40\xf1\x64\xec\xde\x20\xcf\xbc\x21\x17\x69\xb4\x0f\x31\x99\xe4\xe1\x22\xa5\xcf\xbc\x31\x17\xe9\xb0\x06\x9e\x3a\xe1\xfe\x42\x5c\x49\xc7\xa2\x2b\xd3\x15\x13\xa9\x74\x26\x5a\x1b\x8b\x4d\xe1\x39\xee\xef\xdd\x8a\x3b\x7a\xb8\x17\xdf\xaf\xb1\x8f\xb8\x32\x42\xfd\x86\x84\xa0\x54\x47\x95\x66\x86\xb7\xd0\xb9\xf3\x39\xf1\x63\xfc\xb3\x2c\x4e\x89\xc9\x0d\xc1\x2b\x37\x38\x00\x60\xef\x94\x52\xa0\xaf\x76\xc4\x15\xb9\xc1\x82\xf3\xd8\xdb\xf4\xb9\x55\xbc\x0f\x56\xf7\xfb\xcf\xad\x1f\xa3\xa2\x03\x0b\xb5\xff\x7e\x45\xcc\x87\x21\x86\x89\xf5\xe4\x77\x8c\xa0\x92\x23\x1c\x38\xcc\x01\x50\xf9\xc8\x51\x09\x09\xa3\x0c\xc1\x4b\x9a\xe7\xed\xd3\x08\x44\x52\x66\xa8\x7d\x7d\xca\xac\x5f\x14\xb1\x4b\x1a\x48\x43\x18\xf8\xa0\xd5\xba\x3b\xfa\xbf\xf2\x65\x4c\x1d\xea\xc7\xee\xe8\xb8\xa7\x9e\xf6\x28\xbe\x33\x26\xe5\x7f\x7e\x0c\x67\xc5\xb9\xa7\x3e\x0e\xaa\x18\xfc\x22\x02\x74\x94\x3c\xb7\x8a\xca\x41\xea\xc7\x91\x09\x1c\x47\x97\x0b\xec\xb5\x70\x28\xe9\xae\x92\x9c\x0b\x64\xa2\x90\xca\xa9\x08\x2a\x08\x3d\xbf\xeb\x90\xbd\x95\xfc\xbf\x5e\xea\x11\x84\x4c\x18\x7a\xf2\x72\xdd\x42\xfa\x89\xae\xaf\x0a\x96\x79\x41\x40\x42\x8b\x9f\x5c\x2a\x9c\xc7\x5e\xeb\x9e\x52\xe6\x81\x48\xd2\x9f\x6c\x85\x82\xea\x04\xac\xfc\x8d\x9d\xa6\x10\xe9\x53\xa2\x12\xb6\xb6\xf9\x6f\x5e\x1f\xf1\x3e\x09\x28\x52\x43\x2c\x00\x0a\x3b\x60\x72\xce\x44\x6a\xbc\xf7\x46\xb2\xd7\xe3\x0c\xb8\x99\xec\xa5\xeb\xdf\x06\xd9\xeb\x5b\xf9\x4c\xf0\xee\xb7\x46\xef\x99\x76\x90\xf4\x12\xa3\xe2\x6b\xe2\xed\xe4\x6b\xdd\x96\x5a\xb5\xa6\x76\x4b\x2d\x91\xb5\x47\xa0\x68\xf6\xce\x9e\x9e\xbb\xb6\x94\x90\x99\x7a\x84\x08\x5e\x4b\xc7\x92\xb3\x64\xbe\xd5\x0c\xd4\xf7\xf2\x18\xa9\x8f\xdd\x93\xdf\x30\x99\xd5\x08\xc9\x81\xe7\x10\x55\xe8\xd8\x48\x52\x0d\x49\x90\x5e\xb9\xd0\xd0\xe4\xa4\xc4\x84\xd0\xf8\xd0\x38\x52\xa5\x14\x3f\x3a\xa6\x57\xb4\x0a\xab\xc2\x57\x1f\xfa\x36\x42\xe2\x3d\x83\x27\x06\x4c\xa6\x81\x13\x83\xe2\x9f\x57\xee\xa9\x1c\x29\x8c\x4f\x28\x1a\xae\xc0\x7b\x57\x56\xb8\x1c\x70\x6e\x39\xd7\xd9\x79\xe7\x7c\x29\x78\xd6\x02\x5b\xd7\x62\x51\xe1\x96\x76\x0b\xb8\x69\xfe\x38\x6f\x4e\xc0\x1c\x4f\xbd\x28\xea\x06\x09\x52\xad\x90\xaf\x52\xc8\x53\x27\x6f\x7d\xd8\x1c\xf3\xad\x4d\xb4\x3e\x3e\x96\x83\xf2\x0d\x2b\xd3\xe0\xb6\x2b\xcb\x12\x97\x73\x93\x45\x09\xd0\x7e\xa2\x43\x96\xd3\x7c\xaf\x54\x87\xf4\x84\xf0\x53\x1d\x12\x68\x52\x75\xe6\x3a\x95\x63\xa0\x3a\x24\x63\x09\x4d\xa4\xb3\x9e\xa5\xa5\x4e\x62\xf3\xc5\x81\x1c\x84\xa6\x5b\xaf\x50\x32\x1d\x52\xc2\xa8\xf3\x0e\x46\x2b\x69\x12\x36\x48\x5e\x3e\x4a\xe1\xdd\xb0\xfc\x43\x9e\xdd\xb9\xa7\xdd\xb9\xb9\xb5\xc8\x10\x01\xee\x3f\xe3\x10\x88\x30\x14\xb5\x6e\x76\xb6\xed\xe9\xca\x96\xaf\xf2\x95\x6b\x4f\xcc\xb4\xdc\x32\xd7\xea\x48\x48\x70\xb4\xce\xdd\xd2\x32\xf3\xe4\x5a\x05\x0f\x5f\x6c\xbb\x65\xd4\x91\x56\x3d\xbc\xb8\xbb\xa4\x6f\xbc\xbd\x64\xf7\xe2\x70\x75\x9a\x63\xf4\xd6\xd6\xb1\xa7\xf7\xd5\x9a\xda\x96\x8f\xdd\xdd\x24\xfe\xbe\xe9\xee\x63\x4b\x6d\x59\x55\x7b\x9e\x9e\xf6\xe6\x19\x18\x66\xb9\x24\x8b\xd0\x2b\xde\xdd\x05\x4f\x5a\xc3\xc3\x08\xa9\xbe\xa4\x81\x31\x65\x4c\x12\x8f\x49\x3e\x07\x8c\xde\x77\x19\xbd\x80\x5c\xeb\x69\x39\x9d\xae\xd2\xf5\xc8\x7b\x79\xe4\x47\x29\xf5\x23\x17\xc8\x76\x10\x99\x46\x3d\x8d\x40\xd5\xb0\x1d\x84\x0f\xc5\xad\x66\xe1\x9b\x56\x8a\xe5\x60\xbd\xe9\x41\x35\xd0\x6e\xf5\x6c\xf5\xf8\x61\x5d\xc7\x6d\x13\xa3\xc7\xda\x34\xe7\x57\x56\xce\x87\xa6\x3a\x1a\xa7\xca\x2b\x66\x5a\x72\x35\x8a\xb5\xc8\x9c\x61\x57\x76\x8d\x4d\x15\x49\xe0\xe1\xa9\xb6\x9a\x6c\x4b\x7d\x8e\x3a\xca\x0f\xe7\x4e\x7f\xfb\xb1\xe9\xe9\xc7\xbe\x3d\xbd\xea\x6e\x25\x33\x63\x74\xac\xea\xe4\xc1\xc5\x0e\xb3\xb9\x63\xf1\xe0\xc9\x2a\xdc\xf6\xe4\xf1\xee\xb4\xaa\xc1\x99\x65\x87\xf8\xe9\xdc\xa5\xd9\xa1\xaa\xb4\xb4\xaa\xa1\xd9\xa5\x5c\x16\x57\x87\x10\x1f\xc0\x78\x5f\x12\x28\x0b\xa9\xc0\x68\xcb\x7c\xb9\x87\x3d\x08\x3a\xa2\xcf\x78\xb4\x07\x84\x62\x95\xd1\x91\xe4\xea\x50\x03\x95\x5b\x4a\x23\x7d\xb1\xd5\x40\xc9\x55\x29\x20\x5d\xc1\x6c\x15\xe4\x58\x08\xc7\x9d\x11\xb7\x8a\x5f\xdc\x0f\x6d\xb7\xdc\x59\xb9\xf7\x85\x59\x78\x74\xfd\x77\xa6\xce\x9d\x0d\xd0\x24\x7e\xab\xfd\xe8\xa0\x15\x8f\xbb\xef\xc5\x47\xcc\x9f\xbd\x6d\xe2\xbe\x2d\xf9\x40\x96\x3f\x82\x7f\x6a\xcd\x02\xbc\x87\x82\xd5\x49\xbd\x0e\x93\x31\x2f\x93\x29\x50\x06\x2a\xa3\xcc\x2d\xe9\xc0\x4b\x30\x7a\xbc\x44\xaa\x28\x65\xc8\xa7\x00\x13\xef\xa2\x64\xca\x04\x94\xe7\xc8\x2c\x33\x95\x25\x25\x12\xfc\x7c\x06\x64\xc8\x65\x1e\x30\x89\x4f\x43\x28\xc2\xb6\x70\x62\x1c\xa0\xf1\x18\x21\x02\xb5\xd3\x13\xe5\x97\x4e\x6b\x9f\x3f\x95\xe6\x71\xda\x3a\xfd\xc4\xf6\xb2\xf2\x9d\xcf\x6d\xd9\xf2\xdc\xee\x72\x28\x58\x7b\x79\x77\xf6\x48\xa3\x05\x4f\xe2\x24\x5b\x45\x43\x7b\x5a\xfb\x91\x51\x67\x68\xd9\x9b\x13\x6d\x87\x06\xb2\x21\xbb\xef\x48\x67\xc7\xa1\x7e\x33\x58\xfa\x0f\x73\x7f\xae\x3b\xf0\xdc\xa4\x6a\xf6\xf5\x5b\x9b\x9b\x6f\x7d\x7d\x56\xc5\x57\xde\x05\x7e\x5f\x3b\x1a\xed\x1f\xa5\x2b\xca\xce\x6d\xc9\xd7\xc7\x29\xe4\x21\xae\xad\x77\xf7\x76\x4e\x8c\x17\x4d\x1d\x6f\x54\xb5\xdf\xb1\x58\x56\xb6\x78\x67\x9b\xaa\xe9\xb6\xa9\x22\xc9\xaf\xfc\x09\x84\x78\xca\x3c\x1e\x49\x66\xba\x89\x72\x17\x04\xdc\x38\xf7\x78\x8c\x2f\xf7\x38\x53\xe8\xa2\x10\x32\x65\x68\x52\xc9\xd6\x2e\x25\x26\x9a\xdc\x1c\x41\x42\xdf\x3d\x79\xaf\x29\x63\x9a\x47\xc2\x80\x42\xe5\x55\x8f\xb4\xbe\x4f\xaa\x4f\xc0\x3d\xed\x77\x2d\x95\xc1\x64\x4f\x4e\x67\x71\x6a\xe1\xf4\xa9\x16\xf1\x3c\x4c\xe4\x6e\xaa\x4d\xcf\xa8\xdd\x94\x43\x3e\x67\x14\x4c\x36\x64\x12\x96\xab\x02\xf1\x27\x7c\x3e\x24\x55\x6c\x69\x1e\x5c\x4a\xf0\x37\x95\x75\x5a\x9a\x16\x6b\xd5\xf0\x67\x71\x49\x99\x5d\x9f\x63\xab\xcb\x52\x8e\x45\x66\xd6\xe6\xe4\xd6\x19\x15\x6c\x9d\xfa\x3c\x69\x0b\x8d\xc1\xb8\x0a\x33\x4a\x2a\xce\xaa\x4c\x31\xa3\x32\x1f\x66\x34\xd1\xad\xde\xc9\x75\x73\xdf\x59\xcf\xf4\xe4\x15\x19\x14\x3f\xc7\x6f\xe5\xf3\xa9\x6e\x4d\xe7\x24\x0f\x18\x70\x0b\x8b\x46\x64\x8d\x97\xf9\x09\x9c\x07\x78\xa8\xe4\xe8\x8c\x8c\x51\x46\x33\xf2\x18\xf2\x13\xed\x4f\xd6\x1d\x3a\xc4\x74\xed\xf1\x68\xda\x1e\x15\xfb\xa5\xec\x8a\x0c\xa5\x2c\x1c\xef\x5d\xf0\xdf\xb2\xfe\x9d\x69\x7f\x38\x21\x0b\x57\xe7\x1a\x71\x89\x38\x3b\x9e\xb6\x72\xee\xc5\x29\x38\xba\x6e\x14\x07\xa0\x58\xfc\x1c\x3c\x88\x1b\x07\x9e\xb8\x73\x5f\x36\x37\x4e\xdb\x42\x5a\x44\x62\x9c\xf2\x6f\xa6\x5f\xc7\xfc\x1f\xf5\xeb\xdf\x75\xac\x74\x8a\xdf\x3e\x09\x7d\xe2\xdb\xc7\x40\xd6\xbb\xd2\x07\xb2\x5b\xc4\xaf\xc3\xc0\x69\xf8\xab\x18\x44\x7f\x71\x06\x0e\x11\xb5\xf0\x23\xfa\xeb\xfe\xb3\xfb\xbb\xb4\x1e\xf7\x12\x1e\x80\x3a\xbe\x01\x55\xfc\x1f\xf4\xeb\xe4\xab\xf5\xeb\xf2\xd2\x3c\x87\xd5\x92\x91\xee\xd1\xaf\x2b\xa0\xe2\xc3\xf5\x6b\x2a\xeb\x79\x5f\x58\x96\x57\xc1\xde\x55\xb0\xdc\x4b\xa0\x2e\x2b\x85\xb9\x2b\x9b\x4a\x60\x87\xd0\xba\xef\xbe\xb6\xf6\x8f\xed\x76\xa9\x0b\x9a\x4d\x36\x92\xf2\x55\x57\xd6\x33\xb5\x98\xeb\x58\x98\xec\xaf\x34\x72\x3b\xca\x26\xf6\x14\x15\xed\x1c\x2d\x2e\xda\xb4\xbd\xe8\x1b\xb8\x5f\x91\x51\x97\xe7\x68\xcc\x8e\x8e\xb5\x35\xe5\x34\xad\x34\xe8\x52\xea\x56\xda\x4d\xae\x82\x8c\xd0\xe0\xf4\x92\x0e\x47\x5e\x6f\x95\x55\x15\x1a\xa6\xb2\xd7\x0e\x15\xe4\x77\xe6\x25\x28\xad\x2d\x05\xce\xe6\xcc\xb0\x29\xea\xc7\x41\x88\x0f\xe3\xf3\xaf\xd3\xb3\x63\x6e\xa4\x67\x2b\x80\x8a\x5a\xee\xae\xed\xdb\xdd\x17\xb7\x6d\xa3\x41\x3b\xdc\x9e\x75\xca\xac\xb0\x9f\xcd\xd1\xaf\x23\xc4\xf0\x5b\x41\x54\xe7\x0d\xa0\xfa\xa0\x2f\x83\x2f\x0f\x74\xb6\x7a\xf4\x88\x70\xdf\x7e\x95\x8d\xa6\x6f\x10\x03\xde\xda\xbe\xfd\x73\xf0\xfc\x3d\x62\x0a\x8e\xbc\x1f\xfe\x28\x92\x7a\x89\x29\xf0\x53\xf7\x5f\xdc\xdf\x61\xe5\x97\x52\x5b\x01\x9f\x7f\x8d\x1e\x1f\xf3\x91\xf4\x78\x87\x43\xd2\xe3\xe5\xdb\xc5\x2c\x3f\x08\x88\xcb\xac\x99\xac\xce\xc0\xba\xec\x4a\x53\x7c\xa8\x00\x81\xac\x2d\xdf\x11\x6f\xa9\x3b\x7b\x64\xb9\x23\x7b\x06\x8c\x35\xc3\x5b\x56\xf3\xe0\x1d\xf6\xdc\x3b\x69\xee\x30\xda\x2e\x8a\x1b\xf5\x13\x58\x1f\xf1\xac\x8f\x38\x8c\x3d\x9d\x44\xda\x24\x90\x57\x45\xeb\xe9\x26\xa0\xed\xc2\x7d\x90\x75\x7a\x55\xfc\x59\xbb\xf8\xc3\x95\xbb\x1e\xa0\x49\x17\x38\xc7\xfa\x97\xb9\xe6\xf5\x67\x49\x61\x57\xfa\xfe\xfa\xdc\xeb\xb4\xf3\x69\x3b\x7c\x3b\xfb\x6b\x72\xaf\x87\xb1\xfe\xc7\xa3\xdb\x3d\x9d\x14\x0f\xbf\xd8\x58\xde\x46\x2c\xf1\xc6\xb2\xd8\x40\xfa\xb0\xc4\xb4\x94\x4b\x6b\x5c\x9b\x57\x50\x00\x5a\x44\x88\xca\x89\x6b\x72\x00\xfb\x84\x8c\xe7\x7e\xf0\xf0\x78\xf2\x5b\x45\xeb\x76\xb1\x9c\xe7\xb8\xef\xae\x67\x70\xdf\x9d\x90\x64\xee\x41\xe2\xa3\xae\x95\xd1\xc0\x7f\x3d\xb2\xd2\xfe\x32\x65\xa6\xaa\xa2\x23\xfc\x04\x3f\xda\x6b\x5e\x90\x7e\x1c\xd4\x27\x46\x63\x59\x34\x8d\x5a\xa4\xdc\x88\x14\x50\xe7\xc3\xda\x5a\x3d\x58\xe0\x28\x95\x07\x1c\x6c\x3f\x08\x79\x73\x17\xc6\xd6\xc6\x2e\xcc\xe5\x01\xe4\xcd\x5e\xf4\x7c\x5c\x33\xd4\x2f\xd6\xd5\x2d\xd6\x1b\xf0\x7f\x11\xab\x7d\x2d\xfb\x94\x39\xf1\xfa\x99\xa1\x40\x78\x59\xac\x0b\x1a\xba\xfd\xb5\x49\xd5\xe4\x6b\x67\x06\x03\xc5\x05\x38\x1d\x34\x78\xe6\x13\x93\x4d\x67\xb7\xb5\x04\x71\x27\x82\x5a\xb7\x9d\x6d\x6c\x38\xbb\xda\x1a\xbc\xbe\x4c\x3e\x9f\x6b\x94\xf6\xfd\xff\x4f\xfc\x34\xbf\x97\xcf\xf7\xda\x5a\x80\x6f\xc1\x74\x94\x37\xee\x99\xae\xb7\xb5\x30\xa9\xf8\xff\xd6\x70\xf5\xf6\x2d\x44\x0e\x7e\x8b\xbc\x0c\x46\xee\x7b\x44\xf0\xf5\x42\x29\x8b\xd1\xa5\x63\xe2\xc5\xfe\x44\x00\x87\xf1\x55\xfb\x25\xf6\x5e\x78\xb6\x4b\x34\x96\x2f\x8c\x4e\x22\x32\x42\x1e\xf2\x60\x8e\x39\xe7\xc9\x22\x4b\x07\x7d\xad\xee\x63\x1d\x53\x24\x48\x0e\xd6\xe0\xa1\x7b\x9b\x1e\xad\x5b\x83\x2f\xc5\x25\x40\xd6\xe8\xf9\x19\x08\x17\x7f\xff\xc0\xed\x1c\x28\xe3\x30\xe5\xcf\xbc\x55\xe2\x4a\xd9\xb8\x57\x8a\xf9\xa8\x7b\xa5\xcb\x60\x5a\x05\xe3\xca\x7a\xb5\xd4\x10\xfa\xeb\xcb\x15\x72\x88\xf4\xcf\x9d\x7c\xfe\x75\x7b\xa5\x98\x8f\xb4\x57\xb2\x6e\xd8\x2b\xfd\x8b\x3c\xc5\x6d\x5a\xe9\xf1\x9f\x59\xdf\xe4\x7d\x10\xd0\x79\x24\xf6\x40\x29\x9f\xef\x89\x73\x58\xe0\xf3\x3f\x70\x9f\x14\x73\xf3\x7d\xd2\x8d\x6c\x54\xea\x62\x78\x19\xa0\xe3\xf8\x58\x4e\xce\xd8\xf1\x0e\xf1\x98\xf8\x59\xfa\xbd\x68\xb8\x5c\xad\x29\x1f\x2e\x24\xaf\xd1\x38\x98\xbb\x48\x10\xeb\xae\x6e\x0b\xf7\x5d\x71\x5c\xcc\x00\x75\x51\xa7\xd5\xd2\x59\xac\x41\x1c\x7a\x88\xd4\xc7\xc8\xe7\x7f\xc0\x3e\x29\xe6\x3f\xdf\x27\xc5\x3e\xdf\xb4\xb3\xdd\x68\x6c\xdf\xd9\x24\xfe\xbf\x95\xe7\x72\x48\x68\x44\xac\xad\x31\x07\x8f\xac\xac\xe0\xfb\xc0\xd6\xbb\xbd\xaa\x72\x47\xbf\x9d\x7a\xc3\x2f\x93\x0a\xe9\x9c\xed\x59\x99\xed\xa5\x7a\x70\x7f\xd1\xb3\xb6\x7f\x92\xe6\xea\xe7\xf3\x6f\xb4\x4f\x8a\xf9\x3f\xee\x93\xd4\x60\x83\xa1\xae\x3b\xb6\x94\x94\xcc\xdd\xd9\x25\xa6\xad\xc1\x50\xd1\xe6\xc6\x0c\xe2\xae\x2e\x22\x35\xc9\xec\xd8\xd5\xd4\xbc\xab\xcb\xe4\xa9\x48\x72\x61\x67\xae\xa3\xb3\x50\xc5\xe6\xc5\x29\xa2\x5b\xda\x19\x0f\x47\x8d\xb3\x92\x12\x66\x23\x20\xc8\x52\x9e\x78\xf1\x78\x61\x81\xfa\x6f\x78\xb9\x6c\xc4\xcf\x8b\x9e\x48\xf6\x71\xde\x24\x51\x64\x69\x9a\x41\xaf\xdb\x90\x30\x36\x13\x32\xd9\x0a\xba\x71\xe5\xbc\xd6\x26\xe5\x60\xc0\x77\x5c\x5a\xb8\xd8\xed\x80\x15\xae\x6e\xdb\xf9\x76\x8a\x6a\x2f\xdd\xf3\xfa\xf6\xfe\x8b\x04\x1a\xb2\x02\x96\xce\xe5\xb2\xc1\xe3\x03\x66\xde\xfd\x27\x1c\x2a\x58\x06\x6f\xe5\xde\x4b\x2d\x1b\x2a\x6a\x3a\x38\x64\xef\xba\xe3\xad\xd9\xf4\xb9\xb7\xce\x75\xe5\x8e\x9f\xec\x2a\x9d\xae\x4b\xab\x5c\xbe\xb3\x65\xbc\xf9\xcc\x7c\x19\xeb\xcf\xdd\xa4\x2d\xdb\x49\x5b\x92\x51\x81\x6f\x6f\x44\x05\x9b\x0c\xb1\x7c\x10\xd2\x18\x33\x25\x40\x42\x02\x25\x61\xdf\xde\xc8\x77\x99\x20\xc4\x78\x38\xc8\xe9\xa5\xf4\x95\x93\xae\x47\xde\xcb\x23\x3f\x4a\xa9\x1f\xb9\x40\x69\x6f\xa4\x25\xca\x9a\x51\xc3\x6c\xa2\x11\x56\xcf\xc6\xd2\x4b\xf0\xae\x67\xcb\x2c\x78\x3d\xeb\x94\x33\x8f\xed\x90\xfe\xfc\x06\x67\xec\x38\x34\x50\x3a\xd9\x9c\xa7\x51\xe8\x3b\x8e\x8e\x14\x8f\x36\xe6\xe9\xa3\xf0\x1b\x2b\x2b\x60\x53\xe6\xf4\x57\x65\x91\x1c\x7e\x51\x01\x01\xd1\x1a\x7b\x8d\xc9\x54\x6d\x57\x47\x07\xe0\x86\x81\x57\xcf\xf4\x92\x49\xb1\xe3\xa0\x53\x35\xf2\xb9\x0b\x23\x69\xd5\x23\x0b\xbb\x8a\xc5\x58\x32\x31\xbe\x5d\x7b\xe1\x40\xbb\xbe\xac\x7b\x74\xd2\xac\x32\x4f\x6e\xea\x26\x24\xd2\xe5\xdd\x9b\x26\xcd\xb4\x5f\x27\x48\x5b\xfe\xc0\x64\x47\x12\xd5\x41\xe5\x40\x93\x18\x78\xd7\x3c\x36\x21\x64\x1b\x17\x3e\x84\xe2\x63\x63\xa2\xc9\xd5\x61\x4c\x46\x29\xa5\x95\x1c\xd4\xe0\x01\x6e\x78\xf7\x45\x34\xbd\xc4\x1f\xd6\xc4\xc3\xe2\x1f\x0e\x43\x5c\x6e\x8f\x33\xb5\x78\xf6\x4c\xbb\xf8\x9e\xba\xb4\x37\x17\x76\x89\x8f\x14\x4c\xba\x8c\x74\x69\x87\x17\xc5\x7a\x78\x33\x34\xb7\x69\xb4\xa0\x7e\xad\x35\x03\xc4\xd7\xb3\x9b\xf3\x52\x00\x5e\x4b\xce\x6b\x63\xb2\xff\xf2\x5f\x45\x17\x9f\x24\x43\xc8\x86\x6a\x9d\x55\xe9\x18\x0b\x7c\x14\x70\x02\x45\xde\x72\x75\xc8\x4f\xee\xb7\xe4\x0f\x72\x19\xdb\xf8\x8f\x78\xb7\x49\xc9\x57\x3b\xba\x54\xb8\xde\x66\xa5\xfb\x53\xa3\xc6\xa8\x96\x74\x55\x95\xc2\x9b\x21\x54\x4a\x89\xea\x33\xec\xd9\x37\x22\x66\x19\xd9\x02\xe1\x4d\xc2\xdd\xe2\xbb\x9e\xcc\xa1\x00\x69\x4d\x2b\xf5\x65\x45\x21\xca\x72\x65\x76\x8d\x39\x06\xe0\x4a\x2a\xd1\x6f\x7e\x73\x0d\x12\xf8\xef\x88\x77\x7a\x12\x8a\x8a\x97\xdd\x7f\x6b\xd8\xd7\x67\x8b\xd8\x24\xf7\x23\xe9\x04\x6d\x3d\x1b\xf3\x8b\xf2\xdf\x99\xf8\xe2\x17\xe9\x3b\xfa\x00\xc5\xeb\xf8\xde\x51\x5e\x90\x09\xbc\x6c\x81\x36\x47\x0e\x68\x81\x7a\x58\x41\x26\xa7\xe3\xe0\x51\x72\x7d\x6f\x6b\x12\xfe\xc0\x77\xf4\xa6\x49\x9d\x69\x20\x4a\x12\x87\xb7\xdf\x3c\xab\x73\xef\xfe\x76\x23\x07\x7f\x13\x03\x39\x63\xfb\xfe\x0f\xce\xed\x5c\xb5\x74\xb6\x61\xbc\xf1\xdc\x72\xa5\x64\x43\x23\xaf\x0e\xff\x12\x9f\xff\xc1\x3e\xb1\x98\xff\xbb\x4f\x2c\x82\xea\xe5\x6a\x87\xb5\x58\xb0\x6f\xf4\x89\xfd\xe8\x9e\x86\xb5\xd6\xf4\xf4\xd6\xb5\x06\xf1\xcf\xe2\xcf\x41\x08\x57\xe7\x77\x14\x6a\x71\x92\xd6\x9a\x12\xee\x07\x80\xfd\xee\xb1\xb9\x2c\x31\x31\x96\x7a\x2b\x59\x3f\x9a\xc0\xd2\xb5\x52\x51\xb1\xda\x6d\x05\xaa\x4b\x96\x9f\x38\xb2\xad\xd7\x3e\x09\x59\x8d\xe3\xf3\x8b\x16\x78\xc7\xfd\x6b\xd1\x09\xba\x92\xd6\x0c\x63\x53\xa1\x16\x10\x66\xf9\x67\x4e\x33\x7c\x99\x5a\xf2\x36\x21\x7f\x3f\xcc\xcb\xd9\x9a\x02\x10\xf3\x7f\xf1\x86\xa9\xae\xf5\x86\xbd\x0f\x5d\x2b\xe7\xeb\x16\x1b\xf4\xfa\x86\xc5\x3a\xf1\x4f\xe2\xe3\xe4\x95\xfe\xda\xf9\xec\xca\xcc\xa8\xa8\xcc\x2a\x33\x3e\x0e\x4f\x93\xea\x5a\xbb\x57\xca\xca\x56\x7b\x6c\x80\xf5\xee\xff\xc7\xe7\xb3\x0a\xea\x9d\xa4\xbd\x8d\x45\x3a\x0f\xc7\x67\x2a\xa9\x63\xb8\x0c\x21\x15\xf5\xc8\x2b\xb1\x14\x7d\x4f\xf6\x46\x4b\x7e\x20\x13\x00\x81\x0c\xf9\x9c\xa8\xc9\x3e\x97\x18\x7d\x0b\xa8\x53\xcc\xff\xea\x97\xe0\x86\x93\xfe\x88\xf8\xe4\xf5\xe9\x72\xef\xba\x6b\x0d\x3a\xf8\x9f\x89\xc7\x6e\x98\x34\x97\xff\xd9\xc4\x27\x3e\xc1\xf0\xab\xf7\x79\xf4\x67\xba\xf2\x51\xfe\x41\xc6\xcf\xcd\xf4\x29\xdc\x23\x55\xe6\x5a\x5d\x07\xae\x38\xc8\x14\x60\xc7\x9b\xb6\x8b\x77\xae\x89\xa7\xf8\x7c\x49\xd1\xa1\x1e\x32\x49\x17\x9e\x27\xef\xcb\x2e\x16\x37\xc0\x90\x65\x14\x7f\x2f\x97\xf1\x1c\xc6\xd1\x1b\xd2\xa5\x26\x79\x63\x07\x28\xd6\xdc\xa0\xf5\x93\xc5\x79\x58\xae\x7c\xe8\x83\x0d\x88\xa6\xab\x3f\xf2\x3b\xb0\xaa\x62\xd6\x65\xaa\xcb\x27\x80\x03\x63\x5e\x9d\xc9\x35\x5b\xa1\xc2\x5b\x71\x98\xb6\xc4\x6c\x29\x33\x28\xf0\x1a\x28\x0c\x65\x16\x73\xb1\x2e\x0c\x13\x37\xc6\x17\x6b\x4f\xce\x57\x26\xda\x28\x3b\x8d\x2d\xb1\x72\xfe\x64\x2d\x9f\xf7\xfe\x17\xb3\xa6\xba\x72\x73\xbb\xa6\xb2\xae\xfe\x2c\x8d\x5b\x2b\xcb\x39\x92\x7f\x7d\xfd\x63\xfe\xf3\xfa\x2b\x36\x7c\xe4\x0f\x83\xa6\x66\x8b\xcb\xdc\x50\x94\x11\x1a\x9a\x59\xd8\x90\x55\xbf\xa5\x46\x03\xab\x10\x9e\x56\x6e\xb6\x54\x19\x23\xb7\x43\xa4\xb1\xca\x6a\x2e\x4b\x8b\x20\xf3\xca\xe2\x3a\xbe\xd9\xe9\xe5\xd6\x71\x6e\x3e\xee\xc2\xdf\x70\x5b\x2c\xe3\xad\x56\x2b\x09\xa0\xb8\xfa\x33\x7d\xbf\x69\xc6\x9c\x14\x59\x90\xcf\x57\x2c\xf0\xc2\x92\x8c\x1a\xac\x24\x23\x1a\xf8\x83\x9f\x1c\xfc\x68\x96\x14\xaf\x02\xe8\x7b\x3b\xe8\xeb\x41\xdf\x8e\xab\xfd\x94\x8c\x78\x70\xa3\x26\x88\x1f\x12\x5f\x87\x9c\xce\xdb\xa7\x0b\x0a\xa6\x6f\xef\x14\x5b\xbf\xf0\x85\x35\xa8\xa4\x87\x8a\xc6\x6b\x0d\x86\xda\xf1\x22\xde\x21\x4e\x01\xb1\xaf\x35\x12\x53\xb1\x99\x77\x8c\xc3\x82\x78\xda\x7d\x51\xcc\x00\x55\x61\x67\x8e\xbd\xb3\x28\x55\xd2\x7b\x7e\xc7\x1f\x27\x71\x0b\x25\x10\x22\xa1\x2a\xec\x08\x73\x88\xa3\xe6\x03\x0f\xce\x80\x05\x48\x0a\x72\x24\x8c\xa0\xc0\xc0\x68\xd7\x55\x70\x03\xbf\x3e\x4a\x03\x95\xe4\xe7\xd5\x1f\xf2\x3e\xfa\xcd\x01\x01\x4a\xa9\x04\xe4\x2d\x20\xfe\x3f\x7f\xfa\x7f\xfe\x60\xa6\x79\x84\x97\x14\x17\x15\x16\xe4\x33\x4b\x37\xf9\x27\x2c\x88\xbe\xf3\x1e\x6b\xac\x6f\x39\xe0\xbd\x50\x09\x7e\x43\xa8\x10\xef\xb1\xdd\x02\xff\x7c\xb8\x2e\xbf\x6d\xa6\xbc\x6b\x7f\x57\x96\x30\xeb\x9f\x98\xdb\x55\x96\x5d\x9f\xab\x55\x06\x40\x89\xf8\xd9\x00\xa5\x96\xb8\x70\xcb\xbb\x1c\x89\xfe\xb3\x42\x16\xb9\xa4\x7c\xa6\x2d\x5f\x17\xfe\x3c\xf1\x23\x64\x54\x57\x9f\x3e\xb4\xd4\x9e\x5d\xbd\xe3\x63\x3d\x65\x3b\x87\xf2\xd2\x6b\x86\xe7\xb6\x3a\x6a\xc7\x6f\xc9\x5d\xde\x32\x5c\x63\x74\x0c\xee\x2c\xeb\xb8\xb4\xb3\x36\xbb\x7d\xe9\xe0\xa9\x9a\x5b\xdc\x79\x92\x0f\x06\xd0\x33\xe4\xdd\xde\x47\x71\xc9\x20\x93\x34\xbc\x6c\xe4\x1f\x20\x0f\xf0\xbf\x12\x0e\x15\x08\x72\x9e\xc5\x43\x8d\x90\x26\xcb\xfa\x28\xde\x88\x6d\x83\x25\x71\x9c\xc4\xf9\xc6\xec\x26\x37\xd2\x5b\xc8\xdd\xac\xaf\xbc\xaa\x02\x2d\x01\x79\x0b\x88\xfc\xcf\x9e\xfc\x9f\x3f\x54\x1a\x2f\xbb\xcd\x6c\x4a\x4f\xd3\x90\x57\x45\x43\x72\x98\x49\xe3\xa5\xba\x36\x8a\xcb\x67\x56\xf7\xa8\xe0\xbe\x55\x9d\x7b\x4e\x7c\x38\x3a\xa7\xaf\xda\x5c\x63\x49\xe4\x17\xc1\xdc\xbe\x5c\x31\x72\xac\x43\xff\xda\xea\xea\x6b\x60\xe8\x38\x3a\x5c\xbb\xd2\x9a\xb1\xc8\xc5\x67\xd7\x5a\x2b\xfb\x72\x94\x00\x7d\xf0\x17\xff\xaa\xdb\xb7\xb9\x74\xa5\x1d\x59\x65\xdb\x07\x72\x7b\x4e\xbf\x32\xe8\x2f\x06\x93\xd5\x32\xb9\xff\xc5\x93\x5d\x45\xe3\x87\x6b\xb2\x87\xeb\x4c\x75\xcb\x27\x2b\x7c\xbc\xe9\x8f\x32\x3f\x5f\x08\x95\xea\x21\x20\xa3\x7a\xa2\x0c\x7b\x96\x1a\xea\xb6\x15\x38\x8f\xd1\x85\xfd\x50\xe4\x85\xc7\x2a\xc8\xb1\x50\x6e\x50\x71\xdc\x2d\xef\x6e\xfb\xfe\x43\xbb\x30\x5e\x00\x71\xa7\xbb\x19\xde\xfb\x0b\x35\xfc\xd1\x5f\xe6\x5e\xac\xc4\x6f\xb1\x67\xcd\x78\xf6\x98\x81\x28\x8c\x3e\x2b\xf4\xba\x67\xc5\x7c\x84\x67\xe9\xe5\xdc\xe0\xf3\x6b\xaf\x9f\xd9\x05\x5f\x9f\x86\xb7\x77\xbb\x9f\x83\x53\xf7\x1b\x0c\xd0\x27\x3e\x4c\x7f\x99\xf2\xf9\x59\x58\xdd\xb5\x8b\x3c\xef\x34\x79\xde\xab\xcc\x77\xca\x32\x94\x45\x53\x8d\xb2\x8e\x26\xbc\xc1\x98\x6a\x62\x9b\xe8\x60\x13\x60\x81\xc0\x71\xec\x99\x57\x51\xa9\x06\xca\x12\x7d\x4f\x8e\x90\xc6\x46\x15\xe1\x69\xed\x37\x6e\xd9\x74\x68\x75\x6d\xf7\xff\x92\x25\x9e\xff\xef\x19\x98\x5c\x13\xf3\xa0\xe8\x02\xbc\x27\xc6\x78\x7f\x85\x67\xd7\x1f\xe0\x06\x49\xd3\x5b\xf1\x45\xd2\x74\x0f\x1e\xe7\x13\x0c\x33\x1e\x73\xa3\xba\x8c\xb0\x89\xf7\x7f\xae\x0b\xed\x8d\xb7\xf7\x4f\x1d\x59\xdd\xb1\xf6\xbf\xc4\x0f\x1f\xf2\xa3\x49\xd8\xbc\x5d\xac\x00\xc3\x29\xcc\x41\x8f\xf8\xa8\xf7\x97\xac\x09\xb7\xe0\x6d\xa4\x6b\xde\x84\x97\x82\xc2\x68\x7d\xb6\x7b\x70\x37\x29\x48\x8d\x2c\xce\x2c\x0c\x48\xe6\xd9\xc8\xfa\xf9\xb1\xc8\x75\xd2\x31\x72\x81\xf3\x98\xa8\xd5\xa9\xe4\xc2\x14\x55\xb8\x36\x82\x08\xf7\x00\x32\x28\x56\x8e\x28\x19\x56\x50\x81\x95\xa0\x18\x39\x35\x47\xcc\x48\x6a\xa6\x65\x10\x33\x12\x07\xa0\xda\x01\xf0\xc8\x63\x85\xe2\xa3\xdc\x1e\xf1\xa5\xfc\x27\x1e\x02\x58\x01\x50\x5a\x5b\x0b\x66\xf0\xca\x96\x82\x56\xab\x12\xe0\x00\x60\xf7\xef\xe1\xae\x67\x5e\xc7\xf8\xe3\xee\x36\xfc\xfa\x33\xe2\x34\xdc\xe5\x1c\x29\x4b\x05\xc1\x3d\x85\x2f\x42\x6a\xd9\x88\x53\x9c\xe6\xa2\xb1\x8d\xf5\xdf\x61\x52\xdf\x7c\xd2\x7f\x09\x28\x85\xe6\x65\x8b\x8e\x60\x3c\x5d\xd7\x57\x3b\x66\x63\xb5\x53\x92\xc9\xf5\x09\x11\xe1\x6a\x42\x3d\x1a\xc1\xaa\xad\xf7\x54\x9b\x86\x0e\xa8\xf5\x3a\x9d\x54\x6b\x3d\x65\x6a\x91\x83\x35\x42\x75\x04\xe0\x85\x47\x79\xf1\x07\x5c\x93\xf8\x83\x47\x9e\xc1\xab\x18\xe6\x56\xf2\xfd\xb6\x91\xd8\xce\x39\x00\x18\xf5\xfb\x99\x68\x7f\xe7\xf5\x57\x30\x1d\x63\xfc\xca\xeb\xef\xbc\x73\x7c\x3f\x84\x88\xa9\xf0\x0b\x39\xec\x3f\xfe\x0e\x6e\x85\xfd\x8c\x57\x8b\xd4\x75\x33\xe9\xdb\x34\x94\x41\x11\xda\x94\x50\x54\x86\xa5\x5a\x06\x06\x42\x4f\x00\x5c\xd5\xbb\x19\x46\xaa\xee\x47\x46\x65\x87\x6b\x09\xd5\x20\x93\x0f\x11\x34\x09\x01\x55\x35\x25\x5c\x93\xb7\x92\x21\xd2\x81\x1c\x87\x24\xc6\x23\x54\xef\xc0\xe7\xfe\x85\x3f\xf6\xcf\x94\xca\xa1\x82\x78\x3c\x86\x03\x93\xf3\x4d\x95\x30\x06\x55\xa6\xbc\x94\x40\xf2\x3d\x36\xe1\xc7\xb3\xb3\x38\xee\x79\xf1\x5e\x0e\x53\xcc\x0b\x58\x7b\x56\x2b\xc4\x4a\x78\xdd\xd8\x52\xac\x03\xce\x3d\x89\xef\xe1\x40\x57\xdc\x62\xa4\xc7\xca\x96\x32\xdd\x63\xc4\xf7\x76\x2b\x66\xf3\x63\x9b\xc4\xe7\x4a\xdb\x40\x79\xa0\x54\x89\xcc\x0a\x2b\x00\xe7\x2f\xc7\xd4\xc2\x4c\x9b\x82\x7b\x24\x73\x5a\x50\x80\x9f\x8c\xf7\xb8\xd7\x32\x8c\x2c\x45\x84\x9a\x80\xb4\xd8\xe4\x8d\x0c\x26\xed\x51\xd1\xd9\x22\x4d\x5c\xda\x32\x5f\xc3\xd4\x6a\x39\x3d\xaa\x97\x42\xc0\x49\x83\xe0\x04\x86\xb8\xc4\x77\xb6\x6c\x81\xa7\x7f\x8a\xcf\xfc\xb4\x7c\xa4\x38\x89\xb4\x23\x54\xeb\xcc\x56\xf9\xe3\x71\x21\x3d\xbb\x84\x48\x0d\x08\x78\x58\x7c\x09\xe4\x15\x8b\x46\xba\x0b\x16\x23\xe0\x77\x62\x38\x97\xdd\xb1\x5a\x25\xfe\x0b\xe4\xe6\xd6\xc2\xd4\x48\x31\x13\x7e\x1c\x98\x5a\xd8\x6a\x16\xff\x85\xbb\x61\x1f\x6d\xcf\x97\xc5\x49\x5e\x2d\xdf\x82\x2a\x50\x03\xea\x70\xb6\xba\x80\x6c\x72\x41\x40\xb8\xae\x01\x64\x35\x99\x19\x98\xab\x46\x24\x42\x77\x09\xc9\x31\x55\xb5\x11\x62\xac\xff\xde\x30\x8e\x68\x2f\xfd\x34\x1d\x2f\x40\x75\xb5\xd5\x55\xc4\x11\x91\xa3\x4e\x09\x09\xba\x81\x13\x82\x58\x4b\xae\xc1\xf7\x30\x9e\x78\xba\x83\x96\x9b\x38\x46\x17\xbf\xc1\x11\x11\xe1\x23\x91\x8a\x6f\xba\x75\xa2\x20\x77\xf8\x40\xad\xf8\x29\x28\x1b\x7a\xea\x60\x43\x7a\xcd\x58\x41\xe9\x5c\xa3\xb1\xf3\xe4\x4b\x43\xe5\xda\x12\x53\x1c\xa4\x5a\x0b\xe2\x32\xd3\x3b\x2a\x8d\x00\x99\x4d\x9b\x8b\x4a\x6a\x6e\x9d\x2d\x73\xce\x9d\x69\x39\x74\x49\x22\xa0\xe2\x12\x53\xca\x37\xbb\xaa\x26\x2b\xd5\x13\xe6\xa1\x53\x23\xc5\x13\xad\x45\x11\x8a\x82\xae\xe5\xda\xc9\xbb\xc7\x2c\xa1\xc9\xe6\x54\x92\x63\x4e\x15\xd0\x15\x66\xad\xea\xb2\x15\x76\xe4\xc4\x69\x6b\x17\x1b\x3a\x96\xab\x93\x27\xb9\xbb\x3d\xcc\x55\xb4\xaf\x7e\x27\x4e\x72\xef\xcb\xb4\xff\x59\x5f\xc5\xfc\xff\xd9\x57\xb6\x0f\xea\x2b\x7d\xc9\x6a\xaf\x23\xa7\x73\xd6\x21\xfe\x18\x34\x8d\x77\xad\xd5\xa9\xf2\x9a\x4c\xd6\xae\x12\x4d\xcb\xfe\x8f\x35\x67\x7a\xfa\xaa\x90\xf4\x55\x67\xa5\x91\x76\x55\x61\x5a\xde\xca\x70\x51\xd1\xe8\xee\x92\x83\x0f\x4a\x5d\x85\x7b\x22\x32\xeb\xf3\x2c\x95\xc6\x88\x49\x55\xe5\x5c\x83\xc9\x55\x68\x22\xde\x9b\xa2\x66\x5b\xdb\x6a\xbd\x86\x76\x95\xae\xc0\x94\x42\xba\xca\x56\x29\x75\x55\xb4\xa5\x29\xaf\xa8\x21\x23\x6c\x92\x8b\x90\xba\x8a\x63\x7c\x8a\x2e\xe1\x2d\xca\x0f\x25\x71\xb8\x5c\x1b\x22\x9b\x48\x35\x02\xaf\x4b\x5d\xaf\xd4\x2b\x33\x75\xcc\x0b\x73\x0d\x7f\x8b\xe0\x41\x28\xf0\x72\x41\x75\x53\x8a\x44\x1f\x7d\xcb\xfa\x83\xf8\x57\x57\x53\x23\x12\xfa\x90\xd8\x0f\xa7\x47\xf4\x70\xb8\x98\xcc\x1b\x49\x5c\xee\xc8\xbc\x8a\xc5\x85\x43\x2b\xa4\x5d\x05\x2c\xaf\x7e\x0a\x32\x4a\x3b\x02\xc4\x61\x81\x1b\x91\x83\x27\xe2\x2d\xd9\x25\x83\x2b\x88\xaa\x54\x95\x32\x5a\xaf\x53\x19\x53\x8d\x09\xf1\xd1\x29\xca\x14\x12\x29\xc7\x5c\x0d\x4c\x95\xf1\x85\x68\x01\xb3\x24\x26\x71\x11\x4c\xaf\x31\x71\x2b\x8c\x15\x91\x32\x20\x6e\xe0\x42\x84\x77\xdb\x0f\xf4\x59\x05\x77\x06\x6f\xeb\x3b\xd4\xda\x76\xa0\xdf\x2a\xe0\xef\x0a\xf6\xbe\x83\x12\x27\x62\x37\x09\xcd\xf2\x51\x21\x8a\x95\xe5\x4b\xe7\x5a\x5a\xee\x58\x2c\xe7\xee\x2a\x5f\x3c\xdb\xdc\x7c\x76\xb1\x9c\xe9\x9b\x36\x84\xf8\xf7\x84\x37\x51\x24\xda\xfe\x12\x00\x06\x6f\x28\xb7\x02\x01\x48\x91\x70\x12\xe0\xc1\x67\x4a\x8c\x62\x68\x08\x76\x16\x5d\x75\x32\xfe\xc6\x77\xdd\xf8\x06\xaa\xee\xbd\xac\x88\x52\xe9\xa9\xd7\x86\xe6\x02\x27\x1d\x60\x95\x7b\x52\x17\x81\x15\xe7\x26\xa7\x40\x76\x94\xbd\xaa\x37\x3f\x01\x82\x0c\x85\xa6\xd4\x50\x71\xc7\x8a\xa8\x3c\x72\x79\xcb\x16\xee\xe5\xb2\xb1\x0a\xcd\x6c\x9c\xb9\xc2\xf8\xfe\x26\xb2\x72\x00\xea\x20\x6d\xe8\x65\x63\xf0\xba\x54\xf9\x40\x0f\xb1\xa9\x2f\x6d\xbf\x74\x88\xbb\x72\x28\xfe\xda\xab\xae\xba\x80\x54\xee\xda\x5e\x48\xbe\xbe\x17\x62\x7c\x8d\xda\x70\x32\xfe\xc6\x77\xdd\xf8\x06\x4f\x2f\x68\xb4\x12\xc6\xce\x41\x78\x2f\xa4\x48\x07\xb5\xce\xd3\x11\xf0\xa7\x34\xe3\x77\x53\x17\x9a\xe2\xb2\x94\x8a\x18\x4d\x8c\x21\x25\xd6\x5f\xfc\xf4\x88\x38\xbb\x1b\x42\x8f\x1f\xc7\x4b\xa3\x9b\x01\xfc\x82\x87\x82\x20\x52\x65\x8c\x59\x3f\xcb\xec\xee\x1c\xaa\x11\x1b\xf9\x47\x3c\x79\xa4\x2a\x28\x3e\xa8\x0c\x10\x97\x07\x32\x94\x0b\x82\x8c\xa3\x64\xe0\x9e\x37\x4e\xee\x73\x51\xb2\xf7\xce\x87\x71\x51\x91\x14\xb4\xba\x28\x65\x5a\x1a\x9d\x9d\x09\x37\x88\x51\xd7\xfb\x8c\x25\x1e\x24\xa6\xa0\x8c\xb8\x0e\x20\xc8\x59\xf1\xbc\xaa\x72\x73\x4d\xf5\x44\x59\x4a\x4a\xd9\x78\x35\x89\xa6\x4b\xdd\x16\x46\xe4\x8d\xa9\x48\x1b\x0a\x10\xa6\x2d\x32\x99\x8a\xc9\x1a\xf5\x10\xdc\xb3\x20\xfe\x29\x58\x93\x53\x6b\x09\x37\x85\x42\x88\x3e\x24\xd9\x94\x1a\xeb\xaf\x7d\x63\x1e\x6b\xf7\x7f\x87\xcc\xda\x73\xdf\xd9\x0f\xe3\xfb\xbf\x73\x07\x99\xbf\xdf\x3e\x10\xd9\xf7\xb1\x1d\xd5\x64\x57\xd5\x27\xae\xf4\x3d\x48\x3f\x3d\xd8\xf7\x99\x30\xfc\x8f\xf7\x63\xcc\x03\xb5\x26\x3f\x61\x44\x4a\x7b\xfe\x31\x3e\x49\xf2\xf9\x95\xd2\xbe\x60\x73\xc3\x44\xfa\xe2\x8b\xce\x90\x0c\x00\x99\x1a\x78\x48\x05\x8e\xf7\x52\x71\xab\x18\xe0\x40\xa0\x8e\xa2\x18\xda\x09\xd2\xcb\xea\x13\xce\x2a\xdf\x9e\x4a\x2b\xd0\x45\xdc\x07\xfe\x49\xfe\xc0\x8b\x23\x3f\x5a\xa9\x1f\xb1\x40\x66\x45\x4f\xd3\xb2\x31\x61\x23\x12\x71\x5d\x02\x30\x21\xea\x46\x03\x00\xd7\xf1\xab\x96\xaa\xaa\xe7\x1b\x9b\xe6\xab\x53\xc9\xdf\xa6\xc6\x85\xaa\x54\xae\xef\xde\x79\xda\xfb\xf6\x5a\x4b\x44\x26\x41\x91\x1a\x7c\xbd\xef\x7e\x38\x4c\x5f\x6e\xb7\x97\xeb\x43\x43\xf5\x15\x76\x5b\xb9\x3e\x0c\x9b\x16\xbf\x78\xb6\xa3\xe3\xec\x17\x96\xd4\x8b\x5f\x60\x1f\x16\x5f\x0d\xc7\xff\xba\xa6\xef\x1f\xe4\x13\xdc\xdf\x6a\xb9\xb4\xbb\xb1\x71\xf7\xa5\x16\x4d\xb3\xf4\xa1\x19\xf1\x84\xc7\x6b\x91\x6f\x92\xe5\x33\xbe\x2a\x2d\x2a\x47\x2b\x52\x34\x98\x09\x81\x20\x50\x9e\x15\x19\x27\x43\x53\x88\x23\x96\xc5\x09\x84\x79\x1e\x4f\xfa\x30\x57\xb4\x83\xf8\x7e\x09\xd8\x10\xcf\x6e\x80\x25\xe9\x7a\x6e\x81\xdc\x20\xe3\xe4\x5b\xc8\x1d\x78\xf9\x86\x37\x90\xbe\xa3\x9c\x60\x5e\x54\x36\xc3\x09\x90\x5f\xf8\x10\x66\x30\x7c\x71\x1b\xf9\x81\xe7\xff\x63\x6a\x30\xfe\xa7\xd0\xfb\x2f\x07\x0c\xc1\xa3\xff\x11\x41\x18\x4f\xb0\x70\x3d\x7c\x2d\xff\x3d\xd6\x5f\x89\xc8\x8a\x7e\xc6\x26\x21\x6d\x3e\xcf\xd3\xfe\x92\x73\x72\xda\x5f\x32\x19\xed\x2f\x41\xc0\x93\xb4\xd1\x14\xfe\xc1\xa6\x91\xd0\x4f\x3a\x22\x49\xf0\xce\xc6\xcc\x1b\xdf\x85\x97\x3f\xe8\xa6\x68\xcf\x4d\xb0\x24\xdd\xc3\x2d\x7c\xe8\x4d\x4e\xd3\xb5\xd7\xcb\x39\xd9\x96\x0f\xbe\x41\x9a\xd7\x69\x69\xda\xeb\xc6\x46\x5a\x0f\x6f\xc2\x13\x8c\x1f\x5c\x23\x3f\xee\x9f\xfa\x16\xc6\x9b\x91\x04\x73\x33\xb0\xf9\xdf\x87\x60\x19\x46\xbc\x0b\xe3\x4d\x38\x82\x39\xd4\x4c\xec\x93\xfb\xe4\x16\x22\x2f\x36\xa1\x2d\x68\xca\x39\xde\x06\xfe\x21\x5b\x40\xc6\x87\x49\xf2\x33\x24\xd8\x3f\x38\xc4\x7f\x81\x32\x58\xf3\x32\x61\x01\x05\xa1\x80\xe0\xa0\x80\xd1\x50\x08\x0e\x04\x7f\x14\xec\x3f\xea\xc7\xd6\x7e\x86\xa6\x66\x79\x2b\x58\x3c\x18\x5d\xfd\x2b\x2b\xa7\x26\x2b\x37\x55\x8e\xf4\xf7\x76\xb4\x37\x35\xd4\x54\xd1\x30\x53\x16\x1f\x16\x26\x93\x38\xc8\x14\xd7\x58\x38\x15\x52\x24\x30\x3d\x71\xbd\xa1\x56\x41\xf7\x3b\x11\x51\x74\x16\x33\x61\x4c\xd4\x3d\x4f\xc2\x59\x25\x90\x54\xb2\x0e\xab\x92\xea\x8a\x5c\x69\xeb\xf6\x46\x9d\xba\x76\xa1\x91\xa0\x6e\x8c\xa1\xa1\x46\xc2\x48\xd3\xb8\x50\xab\xd6\x35\xae\xb5\x41\x6e\x7d\x56\x54\x78\x5a\x85\xd5\x5a\x91\x16\x4e\x2d\xa4\xe9\x15\x16\x6b\x45\x7a\x78\x74\x56\xbd\xe3\x64\x52\x7a\x55\x71\x8e\xdd\x96\x90\x6c\x8c\x0f\x01\xdc\x0d\x71\x24\x4f\x75\x6a\x81\x23\x27\xbf\xdc\x20\x4e\xa5\xc4\xe3\x41\x50\x24\x18\x94\xc2\xd3\xb8\x6a\xeb\xdd\x6d\xee\xed\x0d\xb7\x2f\x55\x26\x5a\x29\xde\xd0\x9a\x58\xb9\x74\x7b\x03\x3e\xda\x76\xf7\xd6\x2a\x3c\x8e\xf3\xfb\x16\xf3\xdd\xdb\x49\x18\x4b\x5e\x6e\xe7\xb4\x19\xdc\x22\x67\x9e\xee\xcc\xcd\xeb\x99\xb1\xe2\xa3\xf9\x8b\x7d\xf9\x18\xaa\xdb\x63\xd4\x06\x12\x15\x9c\x66\x4f\x08\x4f\xce\x6a\x29\x54\xc7\xa8\xd3\x35\x31\x20\x7e\x27\xb5\x4a\x3f\x32\x11\x97\x63\x49\x0b\xa6\xb2\xbc\x87\x72\x7c\x09\xef\x22\x27\xea\x27\x33\xf8\x79\x67\x78\x03\xf8\x07\x37\x01\xf2\x9f\x22\x63\x13\x42\xc6\x86\xaf\x93\x18\x5a\x0b\x51\x70\x90\x7f\x50\xf0\x95\x21\x0a\x81\x20\xe4\x8f\x82\xfc\x47\x89\xfd\x29\xb0\x8f\x6c\xc7\x12\x5d\x57\xc6\x28\xf9\xea\x31\x8a\x77\xe6\x5f\x7b\x3b\x0a\x44\x01\x24\xdd\xc5\xa8\xaf\x98\x0f\xbc\xb9\xc7\x19\x57\x5a\xba\x69\xa4\xb4\xbf\xb4\xaf\xb3\xbd\xb6\xba\xa2\x4c\x1a\x61\x4d\x5a\x58\xe8\x55\x23\x4c\x53\x30\x5f\x19\xe0\xa8\x0d\x03\x4c\x21\x27\x00\x0d\x40\xf2\xbf\xd7\x0e\xb0\x89\xbb\x66\x7c\xad\x9e\xf1\x25\xb8\x14\xae\xb1\x79\x85\x0c\x6f\xcd\x96\xfa\x81\x6d\x49\x49\xdb\x06\x5c\xf3\x35\x64\x68\x57\x9a\xed\xb5\x26\x32\xb2\x65\x66\x4b\x65\x46\x04\x6c\x8b\x34\x56\x5a\xcc\xe5\x86\x88\xa8\xac\x5a\xfb\x3d\xc9\xa5\x63\x5d\xcd\x99\x29\x99\x49\x61\x00\x3d\x90\xe0\x68\xb2\xa8\x8b\xf3\xf2\x8a\x2a\xd3\xc5\x46\x55\x22\x0c\x01\x28\x12\x0d\x4a\xde\x85\x8b\x36\x9f\x6a\x17\x1f\x6e\xb8\x65\xb2\x70\xa4\xb1\x71\xa4\x70\xf2\x96\x06\xe8\x6b\x3f\xb5\xb9\x08\x4f\x60\x73\xf3\xe6\x7c\xf1\x61\xeb\x68\xa3\x39\xcb\x35\x9c\x0d\x51\xe2\x6f\xb2\x87\x5d\x59\xe6\xc6\x51\x2b\xf4\xe5\x6f\x6e\x36\x63\x18\xe8\x80\xec\x02\xb3\xd2\x60\x4f\x0a\x4f\x36\xb7\x16\xa4\xd2\x21\x8d\x15\xbf\x9a\x5a\x69\x18\x99\x88\xcf\xc9\xa6\x23\x4a\xf7\x4f\xab\x34\x3e\x5b\xf6\x67\x24\x47\xb9\x68\xeb\x4b\x11\x20\x97\x79\x73\x19\x69\x11\x06\x19\xe0\x29\xe4\xcd\xe2\x1b\x18\xe0\xc7\x31\x23\x14\x50\x59\x22\x80\x67\x35\xd0\x49\xd7\xc9\x16\x6e\x7e\x61\x8f\x93\xe0\x68\xfd\x72\xfd\x72\xad\xd9\xd4\xa1\x40\x33\xc6\x78\xec\x8b\x4a\x15\x61\xfd\x53\x0b\x1f\xd1\x39\x02\x6d\x78\x18\x44\x71\xe6\xaf\x9c\xe9\xa3\x7b\x49\x64\x7f\x6e\x59\x5a\xfa\xd3\xff\xcd\x53\x82\x25\x3f\x89\xf0\x2c\xeb\x9b\x35\x5f\xdf\x50\x61\xae\xf7\xf4\x0d\x07\x00\x1e\x68\xbe\xd4\xe8\x98\x6b\x7b\xc7\xe0\xed\x9d\x1b\x5f\xfa\x91\xfb\x47\xf5\x51\x9d\x2f\x90\x89\x0f\x62\xf1\xb7\x73\xe2\xfb\x5c\xcf\x47\x75\xc3\x08\xcf\xb6\x1c\x38\x20\xfe\xe8\xff\xe6\x8b\x01\xf4\xb0\x78\x86\xef\x27\x3e\x8e\x0c\x74\xc1\x97\x83\xd9\x9f\xd2\x33\x79\x63\x2a\x37\xec\x2d\x3d\x59\x99\xe2\x90\x37\xed\x61\x9c\xef\x22\x29\x8f\xb2\xef\x5a\x49\x7f\xfb\xf0\x62\x6e\x56\x02\x8d\x5f\x26\x00\xfb\x2c\x06\x99\x02\x82\x1c\x13\xec\xd7\x7b\x1d\x22\x89\x9c\xb6\xe2\x3f\x6e\x6b\x3e\x38\xd5\x60\x8d\x8d\x77\xb4\x6c\xb9\xb5\x6d\xf3\x63\x5b\x9d\xdc\x36\x99\xa9\x75\x47\x6b\xd9\x4c\x5b\xa1\x3e\x22\xc2\x50\xd2\xb5\x50\xed\x12\xcf\x40\xbf\x5f\xc9\xc8\x9e\xd3\xf7\x36\xde\xdf\xf2\xc0\xd9\xbd\x03\x39\xd5\x84\x05\xbc\xe9\x96\xb1\xbc\xac\x96\xb9\xdd\x87\x4b\x1f\x28\x3d\xba\x67\xa1\xdd\x02\x12\xd6\x91\xf4\x4b\x36\xdf\x88\x34\x1f\xd6\x2f\xc9\xff\x87\x7e\x49\x96\xfa\xe5\xc3\x8b\xb9\x59\x09\xb4\x5f\x48\x4e\x54\xa3\xaf\x5f\xb8\xeb\x9c\xf3\x12\x7f\xa4\x15\xff\x62\xdb\xc4\x85\xe9\x9c\xc2\xad\x4f\x2d\xf6\x9c\x9b\x29\xc2\xcb\xd8\xd8\xb0\xd9\xd9\xb3\xaf\x2d\xcd\xd0\xbe\xbf\xa7\x8e\xf6\x47\xc0\xd0\x99\xd7\xc6\xd3\xa7\xde\xbc\xb3\x2f\x7f\x8a\xf8\xe2\xa7\xeb\x8d\x0d\xbb\x2e\x36\xa7\xb7\x5d\xd8\x59\x8f\x25\x4e\x6a\xf2\xf8\x43\x42\x31\x8a\xa0\x98\xcc\x08\x82\x15\xa5\x39\x8b\xfc\xfd\xe4\x14\xe0\x1e\x8a\xc0\x9b\xba\x80\x81\x3a\x62\x23\x29\xe4\x0f\x04\xb9\x96\x23\xf6\x38\x87\xc0\x7e\xad\x1c\xf9\x8e\xeb\x41\x95\x23\xfe\xf7\x6b\x47\x7f\x26\xfe\xc4\x0e\xda\x1f\x8b\xef\x38\x40\xfd\xd5\x43\x7f\x02\x6d\xbe\xf8\x53\x78\xf6\xa9\xa1\x27\xc4\xe7\xe0\xe4\x93\x83\x4f\xc2\xad\x4f\x0e\x3f\x09\x53\x62\xef\x93\x83\x4f\x48\x79\x89\xf8\xcf\x70\x1a\xe1\xef\x48\x8e\x8e\x4b\xea\x54\x0c\xa3\x88\xa6\x70\x13\x0e\x4d\xf2\xc0\x71\x92\xf5\x98\xf3\x32\x1e\x28\x7d\xe7\xd1\xf2\x35\xa7\xe9\xbe\x32\x9a\xe5\x96\xb8\xfe\xac\x33\xfe\xca\x09\x44\x4f\x74\x20\x00\xae\x97\x5c\x03\x5c\x23\xe9\x72\x46\xbb\x21\x47\x72\xf2\x4a\x0b\x14\xae\x42\x5f\x67\xe2\xdf\x06\xc3\x02\x88\x5b\x84\x82\x9d\x5f\x99\x7d\x9d\xd5\xf7\x2f\x82\x92\xfb\x8a\x2c\x0a\xc5\x4a\xa8\x36\x52\x9c\x14\x55\x8a\x31\xea\x22\x7f\x10\xc3\xff\x20\xdc\x04\x28\x26\x3a\x42\x11\x12\xec\x27\x43\xb1\x10\x2b\x63\x36\x2a\xcf\xe4\x26\x45\xeb\x74\x12\xb4\xd8\x0e\xa1\xe6\x36\x57\x55\x55\x5d\x3a\xc9\x69\xa9\x86\x7e\x68\x2d\xb3\x8f\x6e\xde\x51\x9f\x24\x2c\xc7\x6a\xd2\xd5\x31\x49\xf9\x6d\x64\x6d\xa8\x6c\x30\x17\x64\x43\x07\x7d\x3e\xec\x10\x4c\xb8\x4c\x36\x82\x04\x4f\xde\x64\xc4\x33\x2e\xbc\x69\x05\x10\x8c\x3b\x90\x1a\x2b\xe5\xb0\xe3\xd6\xe2\x3c\xe1\xc7\x87\x8f\x6f\x37\x21\x76\xcf\x4f\xc8\x3d\x8f\xd2\x7b\x28\xcf\xb2\x80\x81\x93\x6e\x89\x60\xb7\xe8\x1d\xe4\x26\xac\xcc\x2d\xba\x4d\x30\x99\xb6\x1f\x3f\x8c\xfc\xc4\x5f\x89\x6f\xc9\x0e\x0a\xcf\x30\x3e\xf7\x3c\xe4\x22\xb3\x73\x11\x1d\x44\x77\x41\x91\xa4\x39\x4c\xa4\x70\x18\x30\x8f\x81\x5f\xd0\x12\x12\x53\xb9\x20\xc8\xfc\x64\x82\xdf\x82\x2e\x3e\x36\x35\x50\xf0\x0f\x08\x0a\xf0\x0f\x5a\xd0\x44\x60\x82\x3c\x5e\x8e\x04\x3e\x1a\x28\x56\x65\x34\x06\xfc\xe2\x80\xcc\xac\x80\x51\x62\xad\x48\x82\x90\xe0\xa0\x90\x51\x14\x86\xc8\x8c\x0b\x1f\xf5\x72\xbc\x44\xbb\xf4\xc9\x89\xea\x50\x21\x38\x58\x19\x4c\x86\x6c\xfa\xa3\x3c\xc8\x73\x47\x48\x58\x48\x70\xd8\x7f\xf8\x54\xca\xf6\x34\x7c\xe8\xd0\xd2\xd2\xe0\x60\x7d\x7d\x7e\xbe\xc1\x10\x19\x89\xd0\xa1\xbb\x0e\xdd\x75\xc7\xd9\x53\x27\x6f\x3d\xb6\x74\x70\xe9\xe0\xfe\xbd\x3b\x77\xac\xad\x0e\x2e\x0e\x2e\xce\xcf\x4d\x4f\x8d\x6d\xaa\x1f\xa8\x1f\xe8\xeb\xe9\xea\x6c\x6d\xce\x77\xe5\xbb\x6a\xab\xcb\xcb\x9c\xc5\x86\x3c\x43\x9e\xc3\x9e\x6d\x36\x65\x44\xea\x23\xf5\x52\xc6\x4f\x1a\x40\xa7\x89\xd4\x18\xe8\x94\x2a\xe6\xae\xbc\xc3\x32\xf9\x35\x5f\x3d\xe9\x3f\x36\x9e\x8c\xbe\xee\x52\x9d\x6e\xc3\xd7\x1b\x5f\x1b\x71\xcd\xc9\xef\x42\x4a\x4e\x7d\x96\xa9\xde\x91\x82\x17\x70\x50\x8c\x26\xd6\x9a\x81\xe1\x1d\x48\x71\xd4\x9b\x4c\xf5\xb9\x29\x78\x11\x07\x29\xb5\xb1\x96\x0c\x5c\xcb\x8e\x0d\x2c\xf1\x0b\xd2\x91\x4c\x2c\x7e\xe5\xba\x43\xee\xa6\x0d\xc5\x71\x26\x0b\x3d\xd4\x80\xe9\x55\x57\x3f\x41\x7c\x87\x1c\x74\x49\xb7\x06\xc6\x68\xe2\x2c\x19\x9c\x9d\x1e\xb9\xe6\x99\xfc\x5f\x8c\x95\xd9\xf1\x94\xb5\x3e\x4a\x93\x10\x56\x98\x26\xfe\x26\xbd\xea\xaa\xef\xfe\xf4\xfb\x44\xa7\xf4\xcd\xfd\xaf\x8d\xdf\xc4\x77\x8d\x55\xd9\x71\x71\xd9\x55\xc6\xf4\x82\x82\x74\x21\x8e\x96\x74\xf3\x3b\xaf\x9c\x45\x7e\xa8\x51\x1c\x95\x9f\x14\xbe\x80\x78\xe4\x8f\x42\x98\x17\x2d\x11\xa5\x92\xf9\x3e\xe7\x4c\x56\xa5\x44\x73\x1c\xd6\xa7\x26\xc6\x28\x89\x40\x0c\x25\x73\x26\x20\x18\x38\x9d\x36\x21\x9e\x47\x40\xcd\x21\x26\x2a\x86\x04\xf0\x90\x33\xd3\x48\x72\x80\x2b\xa2\x3d\x0a\x61\x72\x0e\x30\x37\xb2\xf1\x38\x71\xdc\x0a\x02\x42\x82\xbf\x40\x84\x2b\xe2\x29\x28\x87\xbc\x7d\x82\x92\x48\x52\x4e\x4f\x84\x28\x38\x84\x28\x2d\x91\xa4\x76\x01\x1c\x5a\x52\xb8\x5c\xd0\x6b\x39\x3d\xe7\x88\x00\x65\x84\x9c\xe3\x5b\x02\x77\x0c\x57\xe5\x07\x91\x7f\x70\x52\x30\x34\x88\x8f\xbc\xbf\x35\x58\x7c\x01\x7a\xb9\x0b\x18\x4a\x2b\xc4\x1f\xae\xff\x05\x8b\x9f\xa9\x04\x9d\x51\x71\xae\xf4\x0b\xdc\xb0\xe2\x8e\xb2\xcf\x17\x86\x88\x1f\x87\x11\xfe\x81\x10\x68\x15\xef\x17\x15\x41\xbb\x36\x55\x17\xd0\x7f\xe0\xe9\xb0\x7b\x2a\xbe\xb4\x7e\x52\x71\x4f\xe5\x97\xf0\xbb\x18\xaa\x2a\xc5\xef\x91\xf4\x8d\xe2\xeb\xd5\x60\x94\xec\x41\x3f\x40\x88\xdf\xc2\x38\xb3\xc3\x51\x32\xc5\x0d\x71\x98\x7a\xc7\x00\xb1\xa4\x21\x02\x60\xc4\x61\x5f\xb0\x91\x37\x58\x94\xe7\x93\x13\xa3\x22\xf8\x70\x9e\x64\xb8\x92\xd1\x65\x42\x0e\x0e\x06\xfa\xf3\x20\x9c\xb4\xde\x68\x3e\x15\x0f\x9d\xe2\xe7\x3a\xc5\x13\x6b\xf0\x95\xe1\x47\x77\xd7\xd4\xec\x7e\x6c\x48\x7c\x1a\x5a\x6b\x76\xf5\xdb\x6d\xfd\xbb\x6a\xc9\xe7\x7f\xd9\xe0\x61\x9b\xf8\x9a\xfb\x31\xe1\x59\x5c\x38\x7f\x49\x62\x76\x19\x07\x53\xeb\xaa\xcb\xb5\xa3\x23\x8b\x3c\x5f\xca\xf1\xc9\x37\x92\x4f\xb1\x28\x13\x3d\xed\x0c\xd5\x6a\x14\x41\x1c\x26\x2f\x3d\x6c\xe0\x33\x8e\xf7\xe5\xfc\x8a\xb9\x62\x3a\x77\x31\x00\xbb\xd7\x5c\x95\x7c\x95\x8f\x21\xf9\x46\x97\x45\x7e\x58\x49\x1f\x5a\x48\x4f\x8f\x37\x67\xa8\x81\x1a\xec\x05\xd2\x37\xda\x0d\x9c\x6e\xca\x0f\xca\x1b\xca\xfd\xb3\x49\x7c\xbb\x09\xc6\xad\xd3\xf7\x6f\x19\x7f\x2c\x6f\x6d\x41\xc8\x7b\x64\x6a\xfe\x81\x29\xeb\x9a\xa6\x79\x6f\xbf\xad\xcf\x55\x10\x99\x7e\x61\xbc\x6f\x6f\x93\x26\xb9\x04\xa6\x8a\xbf\x42\x53\x88\x36\x12\x46\x02\xe1\x87\xe7\x9a\x7d\x19\x44\x13\xed\xb5\x19\xee\xf7\xda\x37\xd1\x0c\xa2\x6c\x0d\x7b\x13\x21\xbe\x54\x1e\x8e\xe4\x34\xb7\x22\xc5\x5d\xd1\xf5\x5d\x9a\xcb\x37\x8c\x15\x50\x58\xf9\xd2\xf5\x7f\xaf\x71\xb2\x35\x89\xb7\x1c\x36\x21\xe4\xe5\xc1\xd7\x08\x67\x91\x9c\x66\xfd\x50\xfb\xec\xde\xd7\x46\x37\xd1\x57\x82\x3e\xe4\xda\xe3\x3d\x2f\x5f\xf7\x18\x8d\x3b\x6a\x27\xfe\xed\x0e\x29\xa4\x01\x7a\x68\x1e\x48\xf1\x77\xfc\x20\x99\x8b\x89\x2c\x87\x2e\x20\x5e\x00\x7e\x94\x31\xb8\xe3\x21\xe4\xe3\x72\xf0\x62\xfb\x09\x41\x89\xca\x4b\xe5\x70\x1d\x3d\x89\x9a\x45\x4d\x94\xb8\x43\xde\x3e\xf6\x5f\x77\x34\x15\x6e\x7d\x62\x1e\xba\xf7\xb5\xe9\x8b\x56\x9e\x9c\x7b\x9b\x91\xf4\xbb\xff\xdd\x74\xee\x3b\x87\x97\xde\x3c\xdd\xce\x6d\xc2\x35\x6b\xf7\xf5\xcc\x3e\xb5\x56\xea\xd6\x31\xfb\xf9\x57\xc5\xbf\xf0\x14\xd9\x9e\x48\xd9\x0d\x42\x82\x31\x57\xed\x4b\x52\xec\xc1\xe5\x93\x66\x31\x1f\x55\x22\x4d\x62\xac\x54\x11\xf5\x2d\xda\x5b\x0d\xa5\xa7\x1a\x8e\x1c\x5f\x35\xd4\x6e\xf5\xb7\xe7\xbf\x78\x77\x2f\xe4\x4e\x9d\xeb\x55\x55\x2d\xb5\x64\x02\xd4\x6e\xbf\xd4\xfa\x6d\x16\xfa\x25\x5e\x72\x2c\x3c\xbd\xad\xf6\xc4\x4a\x47\xf8\x40\x58\x61\xe7\x7c\xc5\xd0\x91\x0e\x83\xfb\x5f\x1e\x1c\xff\xcf\xc9\x13\x3f\x4b\x6a\x15\x89\x8a\x9c\xf9\x00\x20\xa3\xf9\x64\x64\x74\x63\x27\x83\x91\x00\x7f\x2c\x08\x2c\x40\x9d\xb1\xb9\x10\x6c\xbf\x2f\xb0\x26\x12\x45\x2a\x3c\x3f\xe1\x14\x03\xe0\x8f\xd5\x12\x0c\x80\xce\x41\xe9\x3f\xe0\x8f\x89\x7b\xe0\xf5\x3b\xc4\xb1\xba\xf1\x63\xdb\xb6\x1d\x1b\x6f\x05\x12\x0b\xed\x2e\x75\x87\xe2\x17\x08\x7e\x32\xc9\xdd\x40\xbe\x4d\x41\x9c\xf8\x4b\x7c\x37\xab\xcb\x77\xa8\xdf\x9f\xc6\xe8\xd1\x2c\xf9\xd7\xd6\x85\xcc\x0c\x8c\xe4\x58\xaa\xd3\x87\xd6\x24\x4a\xed\x8b\x05\xb5\x46\x91\x9a\xd8\xc5\xc7\xe0\xd6\x8b\xe2\x8b\xae\xf1\x03\xdb\xb7\x1f\x18\x6f\x80\x64\x02\x3b\xf8\xbb\xfb\x9b\xf0\xc7\xdf\xff\x5e\x8a\x2d\xfa\xd3\x9f\xe0\xa7\x9e\x9c\x9e\x17\x68\xac\x31\xc5\xca\x05\x5d\x1d\xb1\x89\x31\xd7\x23\x05\xae\xca\x7c\xc1\x4b\x1b\x91\x20\x34\x12\xc6\x1b\xbf\x74\x60\xef\x8a\xf8\x24\x7c\xe5\x00\xcc\x1c\x15\xb7\xc3\x53\xa7\x29\x90\x80\xf0\x78\xb8\x37\xe1\x4b\x6e\x8b\x5b\xca\xc5\xdf\x4d\x9e\xf5\x31\x3e\xff\xa6\xcf\x8a\xf9\x08\xcf\x7a\xea\x8e\x55\xf1\x15\xf8\xf4\x9d\x60\x3b\x27\xde\x09\x77\x9e\xa7\x91\x40\x84\x25\x92\xc5\x4b\xfd\xcd\xfd\x2d\x89\x4f\x9b\x3c\xeb\x61\xc6\x01\x40\xe3\xa5\x10\xa2\xda\x1e\x7d\x0a\xf4\x48\x6c\x2b\x3e\xfa\x10\xdf\x53\xa4\xcc\xb9\x0a\x4f\xac\xd1\x37\xe0\xbf\x30\x88\x4b\xcb\x62\xfa\xd6\xad\x5c\x04\xbe\x38\xf1\xef\x97\x69\x93\xd8\x7c\x1e\x27\xc5\xdd\xcf\xe7\x7f\x40\xd9\x31\x1f\x5a\xf6\x8f\xe1\xc7\x04\xb4\x70\x6a\x9b\xa8\x21\x81\x4c\x1d\xf0\x8b\xc9\xf5\x4c\x29\x98\x09\x01\x9a\x16\x7f\xcb\xc6\x43\xcd\xf2\xdc\x20\xc4\x82\x53\xbd\x09\x81\x04\x81\xcd\x4b\x89\xf6\x46\xc9\xb3\x27\x64\x28\x62\x52\x98\x69\xd3\xea\xe3\x20\x15\xec\x36\x0f\xee\x9d\x3d\x12\xff\xc8\x31\x77\xe7\x40\x7a\x6a\xe3\xde\x7e\xc8\x28\x33\x27\x85\xcb\x03\x63\xd3\x8a\xda\x72\x1c\x5b\xc5\x95\x65\xbc\xc4\x95\xc3\xa6\xfb\xbf\x3e\x33\xf2\xe9\x7b\x86\xb9\x4d\x90\x56\xde\x3d\x32\x9e\x45\x42\xed\x7a\xcb\x74\xe0\xd6\x4b\x42\x8b\xc5\xbf\xfc\x95\xe1\x85\x58\xfc\x47\x50\x20\xc6\xd5\xde\x94\x7e\x88\xe3\x58\x80\x50\x8c\x17\x02\x9b\x9c\xc4\x5e\xe3\x18\x65\x54\x0a\x5d\xa7\xc1\x7a\x35\x39\xea\x86\x8a\xbd\x92\x33\x74\x7a\x93\x25\xa5\x7a\xa1\x39\x39\xbf\xc9\x1c\x4d\x9c\x38\x95\x39\x2b\xe2\x2b\x2b\xd8\x8a\x17\xa1\x7a\xe7\x63\x23\x85\xb7\xec\x1c\x0a\xef\x0f\xaf\xec\x9f\x71\xd4\x11\xa3\x36\xb8\xff\xe5\x0b\xed\x44\x18\xcd\x5e\xfe\x25\xef\x22\xfb\xf3\x32\xd4\x4d\x71\x3c\x55\x25\x5a\x8e\xe7\x38\x40\x3c\xae\x93\x83\x97\xa9\x29\x91\x75\x96\x0f\xf3\x69\x4a\xca\x34\x2a\x12\xa5\x58\x01\x41\xe7\x31\x93\xf1\xd4\x4c\xc6\x7b\xed\xa0\x64\xa7\xe1\x30\x71\xec\x90\x37\x44\x9d\x66\xce\xb3\x02\xc9\xcd\x5d\x4c\x8f\x7b\x62\xac\x79\x57\xf3\xf1\xe2\xec\xa5\xb2\xd6\x63\x9b\x9b\xac\x71\xe1\x5a\x47\xc3\x48\x21\x2e\xe9\xcc\x51\x86\x6b\xf2\x9b\x27\x4b\xab\xf2\x49\x90\x48\x72\x68\x52\x16\xc1\xef\x39\xba\x2a\xcc\xc9\xa1\x4a\x53\x45\xa6\x71\x28\x47\x54\x4c\x8d\xa5\x15\x19\x22\x15\xe9\xd5\x84\xb9\xcf\x10\x1f\x2a\x8f\x83\xd4\x94\xa4\x14\xc7\xf0\xfe\x3b\x1e\x68\x06\xbe\xfc\xe8\xee\xb9\xd6\x2c\x3c\x8d\x3b\x0f\x3d\xd0\x28\xfe\xbb\xf4\xc8\x9e\xf9\x36\x73\x9c\x69\xe5\xd6\x0b\x6d\x90\x93\xbb\x6d\x71\xbc\x3e\x23\xc3\x35\xb6\xb8\x96\x27\x7e\xda\x75\xf6\xe8\x5a\x96\x22\x02\xe7\xdd\xf3\xcf\x7a\xfd\xe6\x1d\x47\xca\xa1\xbc\xe4\xc4\x5a\x93\xae\xb8\xb5\xa7\xdf\xc0\xfa\x68\x89\xd8\x78\x76\xb1\x1c\x96\x55\xe8\xcb\xce\xa0\xdc\xec\x64\x96\xc9\x0d\xf1\xbe\xb4\x05\x57\xba\x2a\x79\x43\x57\x29\x7d\x84\xc7\x37\xbe\xc0\x13\xe9\x1e\xf2\x61\x25\x58\x6e\x5e\x82\x53\x7d\xfd\x39\xb6\xf6\xcb\xc0\x17\x90\xed\xe1\xd0\xca\x88\x4b\x27\x96\x4e\xb5\x67\xe4\x3c\xf6\x4d\xbd\xdd\x6b\xdf\x8c\xf2\xa4\x39\xd0\xe9\x7c\x7c\x77\x44\x97\x62\xe3\x16\x1d\x4d\xc9\xba\x7d\xa6\x7d\x7e\xd7\xc3\x87\x1d\x7b\x6b\x16\x9f\x27\xa6\x7c\x63\xe7\xde\xce\xfc\xb6\x9c\x78\x73\xdf\xd1\x6e\x5d\x55\xca\xdc\x2e\x00\x75\xdd\x52\x53\xf3\x72\xad\x06\xda\x1b\x4c\x63\x0e\xf7\x9f\x61\x79\xac\xb6\x01\x22\x8c\x55\x36\x7b\x55\x7a\x78\x10\xce\x4d\x51\x0f\x5c\x7a\x7b\xb1\xa1\xfb\xf1\x43\x6d\xdc\x34\x2e\x9f\x3e\xe0\x6c\xea\x7f\x7c\x7f\x43\x70\x90\xeb\x97\x67\x36\x37\x5e\xd8\xdd\xd8\x71\xe8\xc1\xc6\xa9\x5d\x3f\x68\x0c\x09\x83\x6f\x1d\x7a\xab\xa0\xe4\xcd\x85\x19\xc7\xce\xa9\x8a\xa2\x91\x15\x07\x93\x4d\x25\xe2\xc7\xa4\x3c\xe4\x74\x3d\xa4\x5e\xa6\x16\x29\x95\x10\xef\x93\x4c\xec\x35\x57\xca\x3d\x22\xa4\xc5\xc3\x1b\xc6\x76\xd5\x54\x8e\xf8\x62\xef\xa0\x57\xfc\x05\xc4\xaf\x40\x82\xf8\x2e\xfc\x73\x65\xcd\x7f\xc6\x1d\x27\xd4\x4e\x00\x4c\xbc\x9f\x20\xb8\x3c\xc4\x25\x80\x4a\x49\xec\xda\x0e\xf2\xd2\x84\xde\xe0\x79\x31\x37\x78\x9e\xc2\xf7\xbc\xab\x9e\x55\x21\xba\xf1\x8e\xcb\x08\x7e\xba\x6d\xca\x7f\xce\xed\x24\x61\x8f\x13\xeb\xb7\x5f\x89\xf7\xc3\x3e\x7e\x14\x9a\x5b\xfc\xbc\x33\x20\x1a\x04\x20\xa3\x2b\x60\x9f\x17\x94\xaa\x32\x68\x8a\x22\x18\x90\xc0\x8d\xc9\x25\x32\x21\x0a\x14\xf3\xf9\xb7\x19\x99\x62\xaa\x74\x21\x5e\xb8\xc9\x95\xc4\x7c\x0b\x3c\x8d\x8a\x5b\xb8\xf1\xc5\x3e\x07\xb8\x33\x94\xa7\xb2\x52\x49\xd0\x7a\xe1\xb4\x61\x2c\xf0\xd6\x7a\x23\x42\x16\xbc\x6b\x7c\x1c\x4e\x5f\x4b\xca\x02\x63\xf8\x05\xb8\xe7\x46\xc4\x2c\xec\xfd\xa2\x71\xa7\x54\x20\x51\x5d\x7a\xc6\x19\xa0\x04\x01\x64\x9e\x36\xd3\x77\x43\xed\xab\xe5\xd5\x6d\xa7\xd3\xfb\x4a\x5b\x34\xd7\xb5\xe5\xfa\xcb\x28\xab\x32\x8d\x92\xf4\xac\x28\x5a\xda\x88\x1b\xc5\x4a\xe2\x67\xa7\xa6\x60\xf7\x75\xf1\x92\xff\x83\xb3\xd7\x7f\x7b\xe3\xa0\x49\x66\xe7\xf0\x23\xed\x68\xf0\x72\xdb\x70\xc0\x41\xf8\x55\xdc\x5f\xcc\xc0\x20\xf0\x98\xd6\xe4\x1a\x6e\x1b\x95\x27\x77\x3f\xc5\x1e\xd2\xbc\xbc\x94\xf8\x0b\xfc\x56\x6b\xef\xe8\xff\xea\x97\x01\x56\x69\x2f\x9e\x77\x11\xcd\x67\x9a\xf6\x9f\xb8\x05\xce\xd0\xfe\x8b\x75\x37\x4a\xfd\x97\x4e\xe4\xd3\x01\x82\x0f\x31\xa1\x02\x54\xe7\xac\x56\x78\xfa\x2f\x3d\x0d\xf3\x1c\x57\x47\xfb\x81\x17\xb8\x11\x6f\xc4\x57\xa2\x67\x0e\x78\xb2\x81\x50\x11\x02\xc8\x61\x37\x67\x69\xd5\x49\x89\x31\xd1\x41\x81\xc8\x04\x26\x3f\x62\x30\x12\x68\xaf\xd0\x54\x3b\x64\xf1\x51\x52\x19\x71\x83\x6c\xbb\xa0\xf2\x25\x01\xe1\x64\x3b\x5f\x5a\x2b\x28\x1e\x28\x49\x1e\xe3\xc2\x35\x39\xba\xc2\xe5\xc7\x66\xe7\x2f\x8c\x9a\xc0\x1d\x6b\xe8\xba\x75\xd4\xda\xd9\x50\x9e\xac\x4d\xa8\xea\x9c\x14\x3b\xf1\x12\x24\x56\x2c\xb4\x77\xed\x6e\xd1\x47\x0d\xdd\xf7\xdd\x95\x67\x02\xf2\xbb\x97\x2b\xb3\x9a\x4a\x32\x02\xe2\xb7\xbd\xf3\xe4\x44\xc7\x9d\xdf\xd8\xfe\xe2\x93\x03\x4f\x1f\x69\x89\x20\x98\x89\x9e\xb8\x2c\x4d\x34\xd7\xb4\xd4\x76\x61\xad\xb6\xe3\xd4\xab\xa3\x3e\xae\xc7\x39\xbe\x91\x45\x09\xb7\x3a\x9b\x82\x41\x46\xdb\x4c\x66\xa3\xd4\x66\x10\x64\xa4\x13\x68\x60\x12\xc7\xcb\xb8\x11\x1a\xd4\xe3\x09\x1e\xdc\xd8\xee\x34\x03\x20\x53\xa6\xc1\x9a\x66\x4d\x49\x8a\x8d\x89\x50\x04\xf8\x23\x3d\xe8\xfd\x3d\x6d\xd7\x7b\x78\x6f\x95\x5e\x51\xe8\x69\x79\x0e\x6d\x38\xc7\x50\x3f\x94\xa1\xe2\x77\x5b\x9e\xda\x56\x02\xdb\xf7\xe2\x71\x5c\x5f\x1f\x54\xbb\x78\x47\xf7\xc4\x3d\x13\x36\xb7\x3e\xb3\x6b\x7f\xfb\xe8\x69\x47\x6e\x42\x75\xcf\x74\x67\xc5\x5c\x93\xc5\x1f\x0f\x80\xb6\x66\x36\xb2\xfb\xdc\x9b\xb3\xc9\x8a\x4b\x07\xbb\xe7\x42\x07\x1e\xd9\x53\x5b\xbf\xff\xa9\xe1\xbe\x88\xb6\x4b\x3b\x5d\x55\x85\xae\xd4\xbc\x34\x25\xb7\x5e\x30\x76\xb0\x3a\xc2\xb9\x73\xb8\x40\xda\xe7\xfc\xaf\xf8\x65\x7e\x3f\x99\x57\x49\x34\xdf\x8f\x0c\xae\x56\x68\xe4\xc0\xd4\x6d\x9f\x2e\x43\xb6\x20\x92\xe8\xb9\x46\x63\x50\x79\x23\xe5\xf1\x2d\x3b\xdf\xd8\x5b\x9a\x33\xf7\xe0\x1c\x74\xae\xd5\xab\x6d\x93\xe7\x27\xc5\x3f\xad\xae\x3e\x06\xdf\x3e\xc1\x25\x0b\x5d\x77\x7c\x7d\xd7\xfc\xe7\xce\x74\xe1\x4d\xd8\xb5\xf3\x62\xc7\xe4\x93\x3b\x2a\xc0\x5d\x47\xa6\xde\x02\x3e\xcd\xf4\x6d\xb2\x0f\x49\xa6\xb8\x55\x8a\x0f\x0b\x0c\xc0\x50\xed\x09\xd1\x1f\xe5\xe1\xca\xd6\x4a\xd2\x5d\x08\x63\x70\xb8\x20\x8b\xa4\x55\x91\x76\x20\x39\x39\xd2\x0e\xc4\x57\x95\x2d\x03\x97\x96\xcb\x20\x7b\xf0\x58\x97\xea\xc8\x69\x0c\x25\x73\x67\x5a\xbf\xb1\xb6\x76\x27\x3c\x74\x17\xee\x08\x28\x99\xbb\x38\x59\x79\xcb\xd6\xf6\xf0\x01\xd5\x13\xfb\x7a\xf7\xb7\xe9\xbd\x01\xfd\xb4\x1e\x9f\x11\x5d\x7c\x28\xe5\xd9\xa3\x7a\x7f\x08\x70\x42\xb0\xf4\xae\x21\xc4\x0b\x88\x1f\x21\x02\x0c\x20\xfa\xba\x00\x3b\x4f\x46\xf9\x28\x2d\xf1\x66\x33\x31\x46\x45\xf3\xb5\x79\xe5\x23\x68\x57\x41\x0e\xde\xb4\x0a\x29\x65\x93\x35\xf1\xd9\x9e\xb4\xf2\xea\x50\x70\x5f\x5a\x25\x5d\xd1\x8e\x9f\xda\x98\x58\xbe\xba\xcb\x88\xff\xe1\xde\x24\xe5\xd3\xfa\x32\xa9\x17\xa2\xfb\xb4\x9b\xd4\x2b\xe6\x46\xf5\x4a\x44\x89\x8a\x28\xfd\xc6\x7a\x5d\x97\xd3\x9d\xd5\xab\x14\x57\xaf\xe9\xeb\x97\x5c\x49\x39\x09\x24\x45\x50\x7c\x5c\x80\xb9\x32\x33\xda\xfd\x89\x35\x29\x8c\xff\xfd\x39\x29\x73\xfb\x28\x2f\xe3\xb1\xa1\xbc\xc7\x82\x6b\x99\x52\x2c\xf1\x78\x90\x77\xa6\x85\x60\x8e\x34\xc8\x4c\x31\xb0\x29\xc9\x37\xce\x85\xca\x30\x47\x3e\xc5\x41\xa7\x05\x64\x4c\xd7\x9a\x75\xe6\xf8\xd8\xc8\x88\x90\x20\xa4\x01\x8d\x9f\x97\xcb\xc5\x47\x95\xea\xf0\x25\xc4\xa0\x13\x4e\xca\x86\x4a\x51\x8f\xb8\xf2\xd0\x5b\x07\x4b\x93\xf2\x3b\x17\x6e\x69\xd9\xfb\xc6\xde\x12\x00\x6e\x67\xe6\xa6\x7b\xe6\x72\x87\xda\x5d\xa9\xba\xe4\x86\xc1\x85\xee\xb1\xd3\x83\x26\x58\x7f\x1f\x32\x87\xce\x08\x6f\x4d\x3d\xf3\xcb\xbd\x6f\xb6\x3d\x78\x6e\xcf\x80\x6d\xf0\xe1\x77\xf6\x9c\x9e\x9b\xfc\xec\xb9\x5e\x22\x04\x62\xbb\xe3\xb3\x35\xd1\xff\x3e\x31\x76\xff\x17\x46\x9b\x07\x3e\x7e\xa8\x89\xf6\xf5\xa3\x44\xee\x15\x93\x6e\xd7\xa0\x42\x67\x1e\x0f\x08\x34\xd4\xf4\x5d\xe7\x8b\x1c\xc6\x88\x74\x82\x8c\xca\x0b\xc9\x0c\xbf\x31\x70\x58\xa7\x89\x34\x84\xb3\x65\x40\x4a\x41\x07\x37\xa2\xae\x23\x70\x6a\x3b\x77\xbf\x5b\xcf\x6d\xc2\x62\xc5\xdc\xc7\xb7\x15\x13\xca\xd0\x4d\x7d\x0f\xef\x71\xe1\xed\x60\xeb\xd9\x59\x5b\x4f\x92\x17\xbd\xf8\xf4\x0e\xb2\x47\x1b\x20\x81\xc2\x85\x8b\x0f\x4e\x8e\x9c\x9f\xcd\xcb\x9d\xbd\x34\x59\xb5\xad\x33\x3b\xa3\x65\xb9\xfa\xe3\xcf\xc0\x84\x94\x43\x47\x5c\xe1\x6d\x64\x20\x74\x74\x85\xa3\x75\xd5\x01\x66\x66\x22\x33\x75\xa3\x7e\x50\x95\x63\x7c\x55\x8e\xa3\x3e\x84\xd4\xeb\xae\x13\x10\x27\x70\x43\xbe\xcb\x11\x5d\xe1\x0c\x1f\xa5\x69\x0c\x7f\xca\x1d\x77\x9b\xb8\x71\x2c\xd6\x4e\x3f\xbe\xe6\xac\xda\xf5\xf8\x28\x69\x5b\x3d\xde\x8e\xad\xbd\xa4\x6d\x7b\x7a\xad\xb6\xe1\x5b\x3b\x37\x93\x5d\xe1\x80\xfb\x0f\x7c\x31\xc9\x67\x32\x72\x7e\x86\xb6\x6e\xa2\x6a\xb5\xd3\x6c\x6c\x59\xaa\xee\x3e\xd0\x95\x31\xc9\x72\x4c\xa2\x3a\x32\xef\x17\x88\xb9\x4c\x87\x9e\xae\x41\x48\x0f\x5f\xb9\x1c\x80\x4a\x40\x0e\xdf\x14\x89\xb5\x00\xf9\x3d\x07\xf0\x6c\xc9\xb3\x56\x23\xbb\xb6\x9b\x5c\xbb\xc8\xe7\x93\x6b\xdf\x6b\x97\xae\x2d\xbd\x3c\xc6\xae\xfd\x23\xb9\xd6\x9f\x5c\xfb\xea\xe5\x31\x76\x31\x66\x39\xd7\xfc\x24\x1e\x2f\x9a\x31\x8e\x19\xff\x78\xec\x59\x4c\x7d\x0a\x2e\x0b\x50\x47\x88\x86\xa8\x87\x87\x91\x6b\x83\x55\x0a\x39\x35\x7f\x50\x80\xb6\x37\xa7\x10\x50\x16\x24\xe6\xb8\xe2\x6e\xdf\x26\x56\x4c\x3d\xb9\xb3\xbc\x7c\xc7\x53\x53\x34\x6e\xab\x71\x5f\x6f\xb6\xb9\x77\x5f\x13\x57\x87\x27\xfe\xdd\x5c\xb8\xe5\xc2\xc8\xc8\x79\x62\xf1\x73\xc7\xe3\xbd\x60\x6a\xdd\x5a\x55\xb3\xda\x99\x05\x08\x79\xe2\x90\xf9\x35\x16\x67\x90\x49\xb3\xa6\x23\x1e\x04\xa0\x03\x42\xc9\xba\x41\x90\xe8\xc5\xfc\x64\x98\xbe\x4b\x72\x49\x81\x57\xa9\x00\xa9\x32\x55\x84\x11\x28\x46\x49\x9c\x04\x14\x35\x9c\x02\xc9\x74\x91\x51\x79\x82\x91\xa9\xe5\xc3\x41\xad\x33\x6c\xb9\x61\x19\x0b\x14\x6a\x4f\x5d\xe1\x9b\xbd\x47\xfb\x4c\xa6\xbe\xa3\xbd\xaf\xae\x34\x10\xd8\x47\x04\xe0\x24\xe5\x62\x7c\x0a\xc6\x06\xe2\xaa\xfd\xdc\xab\x25\xfd\xf9\x89\x09\x05\x7d\x4e\x28\x5f\xbe\xa7\xab\x8b\x52\x07\x91\x26\xbc\x00\x38\xbf\x7f\x6b\x61\xff\xeb\x7d\xdd\x9f\xea\xef\xba\x77\xa5\x02\xc6\x49\x4b\xec\x84\x24\xad\x78\x6b\xaf\x03\x68\x3b\x96\xc9\xbb\x73\x9b\x2c\x06\xd9\x50\x0b\xb5\xe2\x04\x00\x27\xb3\xa7\x63\xcc\x61\x8f\xc3\x8d\x93\x61\x19\x87\x17\xbc\xb4\xb6\x14\x42\x81\xb1\xcf\x11\x9d\x69\xd4\xe9\x63\xb5\x11\x3a\x86\x73\xf3\x24\x41\xbb\x42\x88\x4c\x1b\xe2\x90\x1a\xe2\x4b\x96\xc6\xdb\x61\x83\x4f\x95\xce\x41\xba\xcb\x58\x0e\x4a\xc8\x2c\xeb\xce\x2b\x9f\xd4\xc2\x0a\xf8\xc7\x99\x75\xba\x3c\x43\x5c\x98\x0c\x20\x39\x7a\x29\x21\x19\x70\x6a\xcd\x72\x4b\x7a\xb9\x4d\x1b\xa4\xdb\xd6\x92\xd7\x55\x9a\x99\x10\x0c\xff\x08\x56\x67\xe6\xa5\x1a\x8b\x33\x12\x08\x8b\x46\x58\x7c\x46\x71\xba\xa6\xc0\xac\x0d\xe6\x38\xc0\x59\x05\x7b\xd7\x48\x3a\x68\xa7\x03\x97\xbe\x9f\xa5\xe9\xaa\xb3\xa4\x55\xf6\x8e\x4d\x64\x4d\x7c\x71\x1c\x46\xbe\x31\x36\xfe\xd6\x85\x61\x50\x92\x9c\xd5\xae\xee\x8c\xfa\xb1\x85\x55\x07\x4c\xa5\xe4\xa6\xc7\xa4\x57\xf6\x6e\xda\x94\xee\xd2\xf7\xf6\xb4\x96\xe8\x62\x8c\xf9\xaa\x28\x63\x34\x02\x94\x7b\xf9\xd7\x8c\x6f\xb6\x8c\xca\xf1\x64\x89\x93\x5e\xc0\x80\x05\xa0\x63\x8d\x78\x40\x74\xac\xb9\x3e\x2f\xdd\xa9\x97\xb8\xad\xb8\xd0\x6e\x33\xa6\xa9\x0c\x2a\x8d\x9c\x1a\x16\xa5\x8c\x68\x56\xaf\x05\x90\xaa\x52\x5e\x70\x78\x94\xaf\xb7\x7c\xc3\x2e\x23\x57\x63\x43\xac\xad\xc5\x71\x7c\x5b\xd5\x64\xb9\x4a\x5f\x3b\x5d\xea\x76\xf7\x9e\x9b\xce\x8f\xb7\x37\xd9\xcc\xa5\x69\x11\x21\x2a\xbb\x3e\xbd\xcc\xa2\x56\x06\x92\xce\x89\xdd\x1a\xaf\xc6\x38\xa3\x73\x7f\x67\xf9\x70\x49\x32\x86\xdd\x85\x9b\x9b\xb3\xf0\x04\xa4\x37\x6e\xa9\x28\x9f\xaa\xd2\x4c\x40\xf6\xd0\xc9\xc1\x9c\xf9\x91\x86\x88\xc8\xb2\xce\xa9\xfc\x91\xd4\xda\x42\xbd\xa1\xbc\x7b\x6c\x3a\x7b\xe2\x4b\xe3\x23\x5f\x1f\x9f\xfa\xfc\xf9\x41\x80\xac\xf6\x85\x52\x26\xa3\xda\x2e\xff\x8a\xdf\x4e\x64\x54\x11\x95\xa7\x02\x70\xbc\x1f\x20\x36\x21\x04\x5e\x00\xe6\x2a\xe6\x90\x44\x7b\xc5\x5a\x4b\x84\xd3\x95\x20\x6f\xd2\x62\x7d\x9a\x32\x83\x09\x1d\xb6\xd7\x57\xca\x25\x51\xc3\x9a\xc7\xf2\x70\xa8\x65\x64\x5b\x49\x03\x6b\xf4\x56\xaf\x15\x83\x9e\xc1\x9f\x4e\xb0\xd6\x64\xbc\xcc\x61\x2e\x38\xd1\xac\x71\x34\x98\xa3\x31\x56\xa7\x6c\x0f\x56\x86\x93\x36\x92\x14\x6f\x0d\x3b\xb7\x09\x90\x5a\xd8\x6e\x79\x01\x3f\xe3\xe8\x75\x6a\x0c\xd5\x23\xf9\xef\xca\x7e\xdd\x7e\x72\x22\x9f\xe3\xb3\x6b\x72\x8d\x11\x96\xd7\x5b\x93\xac\x9a\xc8\x82\xe1\x1d\xa5\x2d\x1f\x6b\xd0\x37\x35\xb7\x18\xfa\xef\x5f\xab\xc2\xdb\x57\x5b\x88\xb5\x20\x1a\xc6\x20\xce\x5c\x6d\xb2\x34\x39\x12\x61\x14\x0c\x8d\xcb\x74\xfe\xbf\x28\xde\xc5\x3b\x88\x8f\x31\x13\xe5\xd2\xb5\x30\x16\x78\x94\xc2\xf6\x1c\x36\x2b\xb5\xad\x22\x19\xd0\xf5\x7a\x63\xc4\x84\x20\x5c\xa1\xb8\xca\x75\x90\x1b\x33\x52\x55\xa4\xd5\x8c\x5c\x80\x8e\xf0\xb5\xf8\x7f\x1a\x92\x43\x7f\xd5\xe4\x2d\xa7\xcd\x06\x49\x05\xb2\xdb\xad\x10\xff\x60\xcb\xad\x13\x79\xf6\xe1\x23\xcd\xe2\xaf\x20\x76\xfa\xb9\x7d\x35\xba\x8a\xe1\xc2\xbd\x07\x31\x24\x1a\x76\x44\xc5\x87\xc8\xc0\xda\xbd\x5a\x8e\xab\x23\xd4\xb6\xd4\xfa\xee\x7d\xf8\xec\x38\xa4\xd6\xcc\x37\xd4\x2f\xd6\x6a\xc7\xcd\xa3\x77\x4d\x16\xcf\x74\x95\x45\xa5\x3c\x76\xfc\x96\xc2\xd9\xf4\xd8\x98\xc2\xd2\xe2\xb8\xc3\x35\xb3\x35\x5a\x70\x37\x66\x74\x77\x36\xa9\xcc\xbb\xcf\x5f\xa0\x6d\x7c\x4f\xbc\x95\x71\x7e\x19\x51\x0e\x95\x55\x4a\xe0\x51\x12\x6b\xa3\x25\xfb\x46\x6d\x8c\xb9\xba\x8d\x39\x76\x72\x63\x7a\x32\x6d\x22\x9d\xc9\x7a\xdf\xba\xa1\x72\x48\x6d\x94\xb1\x26\x46\xde\xb8\x89\xc5\xf0\x13\xea\xed\x37\xd6\x4f\x17\x89\x5f\xc3\x60\xe9\x3c\x37\x57\x3c\xd9\x37\x38\x02\xa1\x71\x7b\x82\x49\x03\xc1\x50\xde\x67\x83\x9f\x7a\x5a\x08\xdf\x1d\x8f\xce\x6a\xc8\xcd\x6d\xb6\xc4\x8c\x6b\xeb\xb7\x36\xf7\x1e\x4c\x8e\xdb\x35\xbe\x49\xd7\x96\x1c\x19\x9e\x99\x95\x19\x3e\x6c\x75\x99\x63\x40\x44\x1b\x9a\x87\x00\xc5\x90\x77\xf4\x22\x79\x47\xed\x34\x2a\x09\x09\x54\x91\xc1\x0b\x3e\x12\x62\x1f\x47\xaa\x72\xe3\xfb\x49\xb2\x46\x10\x76\x27\xcf\xe2\x48\x83\xf6\x89\x13\x9c\x05\xed\xab\xae\x93\x5e\x82\x9a\xbd\x8f\xe7\xc5\x6f\x63\x59\xa4\xa1\x62\xac\x5a\x9b\x90\x5d\x6e\x54\x06\x62\x8c\x29\x10\x21\x4d\x4d\x36\x39\x31\x21\x02\x40\x5c\xd8\x52\x4c\x2c\x86\xd0\x24\x93\xb3\xdd\x56\xd2\x6e\x53\x52\x46\xeb\x97\xdb\x9e\x7f\xe2\x9e\x65\x22\x79\xa1\x68\xf2\xc8\xb9\xbb\x2a\xf1\xb3\xef\x1f\x4e\x6a\xae\xca\x4e\xaf\xea\x1b\x1b\xcf\x1c\xff\x12\x93\x49\xa5\x87\x76\x6c\x6e\x32\x41\xfe\xe0\x36\xca\x33\x6b\x27\xed\xd9\x45\xc6\x2b\x9b\xb1\x12\x00\x47\x57\x14\x0a\xe0\x90\xf5\xc8\xa5\x30\x4e\x41\x60\xf8\x4c\xe5\xc6\x17\x8f\xe5\x2b\xcb\x56\xe9\xa3\xf4\x4a\x6f\x00\xb6\x67\x7b\xc6\xda\xe1\x93\x2b\x11\x9e\xd6\x3a\x1c\xb4\xb5\xf8\x1d\x20\x59\x92\xd5\xc4\x1a\xa3\x00\x9c\xa2\x5c\x8a\x4f\xc5\x58\x4b\xc2\xfd\x4b\x3a\x6d\x31\x18\xc4\xdf\x83\xa0\x50\x39\x5a\xf3\xd2\x21\x59\x63\x4e\x56\xc8\x81\x12\xc8\xf0\xaa\xb6\x1a\x4b\xf5\xfc\xb1\xd2\x91\x37\x86\xa0\xff\x73\xc3\x43\xcf\x1c\x6e\x06\xc8\x1f\xde\xe1\xc4\x77\x88\xf7\x96\x9d\xba\x65\xf7\x60\x2e\xcc\x00\x64\x37\x4f\x2f\x2d\x59\xe1\x6b\x6c\x8c\x4e\x93\x36\x1d\xa2\xb1\x63\xb4\x4d\x1b\xb7\x65\x88\x6e\xcb\xe4\xcc\x57\x70\x7d\x93\x68\xcc\x15\x25\x01\x20\xa3\xc5\x08\xd4\x3f\x60\x6c\xbc\x94\x56\x11\xd8\x0d\xb2\x28\x43\xaa\xc6\xa6\xa5\x4c\xe3\x38\x39\x72\x31\x21\x09\x43\x48\x62\x66\x49\x9b\xad\xb8\xcd\xaa\x04\x71\xf7\xd6\xad\x70\x10\x48\x24\xfc\x5d\xaa\xce\x7a\x9b\xb1\xaa\x7f\x74\x3c\x83\x0e\xc2\xf0\xdb\x63\xce\x83\x3b\x66\x9a\xb2\x80\x04\xd3\x38\xa1\xd3\x3d\x4a\x14\xfc\x36\xfc\x71\xc6\xed\x4a\xea\x4e\xed\xb5\x5a\x36\xbf\x64\x98\xc3\x32\x0a\x98\x45\x48\xf0\x31\x92\xb1\xe9\x45\x6d\xca\x7d\xc4\xf8\x93\x24\xaf\x27\x83\xb0\xc1\xf8\xe3\x0d\x6d\xfc\x80\x21\xc1\x63\x22\x21\x94\x84\x09\x58\x01\xbf\x98\x4c\xad\xb5\x94\x06\x83\x25\x28\x96\x94\x09\x18\xd4\xd5\xb3\x75\xa5\xdd\x39\xb1\x00\xbf\x11\xa3\x88\x6e\x1f\x05\xbf\x21\x03\xd0\x5a\x6b\xa9\x99\x3f\xe6\xa4\x03\xd0\xf7\xe6\xf0\x20\xd9\x20\xd3\x01\xd8\x59\x22\xed\x13\xef\x27\x6b\xfa\x0c\xb1\xe5\x66\x51\xf9\x1d\x06\x18\x14\xc0\x63\xaa\x0f\x63\x4a\x57\xb8\x70\x25\xa6\x80\xa9\xfa\x82\x77\xef\x6f\xd0\xa7\x24\x45\x51\xcd\x3e\x0b\xb2\x64\xde\x7d\x3f\x33\xe6\x5a\xa4\x8c\x0e\x2c\xc5\x27\x6d\xc2\x46\x1d\x05\xdf\xb7\xfd\x8d\x83\x55\xc9\x85\xdd\x8b\xb7\xb6\x0c\x7f\xac\xd2\x50\x76\x5b\xcb\xf0\xd9\x4d\x56\xcb\xe8\x99\x91\x26\x42\x8f\x4a\x06\x32\x72\x35\x32\x19\xe3\xea\x1d\x8f\x44\x4d\x3c\xf9\x93\x1d\x20\x6b\x39\x7f\xcb\x72\xbb\x09\xb4\xfa\xc1\x14\x4d\xf7\xa9\x4f\x6c\x12\xff\xb9\xe9\xb5\xdb\xbb\xc1\xd2\xb7\xa7\xa1\xef\xc5\xde\x9e\x97\xfa\xa6\x1e\x5e\x2e\xa6\xed\xf8\x38\x69\x47\x35\xe5\x1a\xa1\xed\x48\x06\x9e\x4b\x01\xe0\xe9\x3a\xc4\xd3\x75\x77\xe1\x8a\x9b\x53\xb8\x8a\x65\x44\x93\x9a\x18\x1f\x1e\xe6\xef\x47\xf9\x45\x68\x3b\xb4\x1b\xaa\xeb\xcb\xaa\xb4\xb1\x4d\x51\x49\x1c\xfe\x78\x09\x91\x52\x18\x02\x43\x57\x02\xc3\x01\x57\xcc\x9f\x6d\xd9\xfe\xc6\xa1\x4a\x80\xd2\xdd\xaf\xac\xf4\x9c\xcf\x4b\xcd\x3b\x56\x37\x70\x5b\xbf\x09\x48\xbb\x9a\x21\x3e\xb7\xb3\x20\x6f\x39\x37\x6f\x29\xaf\x83\x98\x2e\x7a\xce\x11\x26\xa0\xe9\x37\xef\xe8\x85\x38\xed\x50\x62\x7c\xfd\xce\x8b\xad\xe9\xed\x64\x1b\xcf\xc6\x62\xc0\xa3\x3f\xa8\xe8\x9e\xdd\xb3\x72\x2e\x60\xf0\x6d\x45\xbc\xac\xaf\x49\x02\x9d\x33\x5e\x3a\x3b\x66\x2e\xfc\x80\xd9\x02\x7f\x17\x27\xb9\x97\xc5\x5e\x08\xd3\x95\x9a\xab\x87\xf2\x62\x01\xa7\xc6\x6d\x8d\xd7\x62\x9c\xd9\x7f\xcb\x80\x8b\x04\x6e\x70\x42\x1d\x31\x27\x86\x9a\x06\x1b\xcc\x6d\xfb\xef\x6f\x98\xf8\xd2\x18\x6c\xfa\xea\xc4\xcc\x17\xee\xe9\x03\xc8\x1b\x3d\xd2\xc0\xd6\x78\x52\xaf\x41\x3e\xff\x03\xea\x15\x73\xb3\x7a\x29\x3e\xa0\x5e\x6f\x88\x77\x72\x9b\xc5\xb5\x08\x02\x5f\x2d\x1b\x28\x4a\x04\xac\x8d\x5f\x89\x4b\xc3\xd8\x32\x74\xac\xab\x61\xbe\x56\xcb\x71\xdf\x1b\x1f\x77\x1f\xca\x1e\x72\x99\x8a\x46\xf7\x55\x76\xbf\xd0\x05\x5d\xcf\xf7\x8e\x3c\xba\xb3\x0a\xc0\x31\x72\xb4\x99\xf5\x17\xc5\x98\x4e\x92\xb9\xeb\xa4\xb1\x30\x82\xc4\x2e\xca\xd2\x56\x72\x3e\x84\x2f\xad\xab\x8c\xe3\x7d\xb8\x99\xc4\x8d\x2f\x1e\xd9\xf3\xa8\xc8\xc6\xc7\xc4\x34\xd2\xab\x53\x88\x46\x5d\x9d\x42\x54\x7d\x83\xa4\xa3\xab\x69\x0d\x9b\x4b\xf3\x47\x6b\x0c\x4d\xc7\x5e\x9e\xea\x7f\xfc\x40\xe3\x2a\x97\x3f\xb4\xbb\xaa\xe5\xf8\x44\x7e\xfe\xc4\x2d\x4d\xcf\x3c\xd3\x7a\x7a\xb6\xc4\xb9\xe5\x4c\x6b\xc3\xa1\xd1\x02\x6e\x15\xda\x8e\x3d\x33\x30\xf5\xc6\xa9\x0e\xb8\xad\x66\xb9\xb3\x20\x3c\xb2\xb8\x6d\xa2\x68\xe2\xee\xf1\xec\xdc\xc9\x3b\x06\x2b\xe7\x1b\xd3\x75\x24\x03\x8c\x6b\xa6\x42\x35\x99\x5c\xb5\xdc\x4e\x58\xc9\x75\xa6\xf6\x6d\x75\x9b\xef\xdb\x6c\xb7\x4d\xdd\x2b\xed\x97\xea\xf1\xd3\xfc\x6d\x5c\x24\xaa\x86\x63\x24\x93\x3d\x6a\xb3\x3a\xa5\xe3\xed\xe4\xf8\x59\xcf\xf1\xed\x1b\x8e\xbf\x26\x5e\xe0\xe9\x86\x48\x8f\x4a\x51\xf0\x65\x00\x19\x2a\x0d\xa6\x7b\x25\x44\xf6\x4a\xc0\xf6\x4a\x80\x43\xf9\x16\xfc\x13\x99\x92\xc6\xa3\x3b\x83\x65\x02\x46\x35\x14\x66\x15\x07\x7e\x51\x46\x60\x18\x75\x9a\xde\x46\x8d\x43\xc3\xc9\xa2\x5b\x99\x99\x09\x2b\xfc\xd7\x8d\xbd\x1d\x4d\x2a\xab\xf3\x48\xe3\x5e\x04\xf0\x3b\xbe\x02\x7f\x4a\x16\x40\xee\x4f\x7e\x91\xde\x5e\xcd\x10\x6f\x2f\x91\x42\x8a\x89\x9b\xe1\x05\x5a\x58\xcf\x0b\x52\x71\x5e\x73\x8e\xdd\x8a\x3f\x15\xe1\x29\x6e\x55\x38\x99\xd1\x43\x8a\xb3\x95\x1c\x69\xda\x83\x10\xc0\x8f\x2f\x87\xe2\x67\xd0\xcf\xaf\xd4\xa7\xda\x57\x1f\xad\xa7\x00\x3b\x29\xe0\x19\x5a\x40\x75\xa6\x69\xad\xdb\xe8\xb9\xbd\xf1\x38\x6d\x33\xfc\x81\xd4\xe7\xb3\xa4\x3e\xd5\x30\x45\xd3\xcc\x7f\x06\x49\x7d\x01\x73\x7c\x0b\xb7\x2c\x53\x62\x3d\x4c\x5e\x1e\xa4\xb0\x39\x98\x44\xe7\x90\x74\x6e\x0b\x5f\xc1\xad\xc8\x02\xb0\x0e\xa6\xf6\xd3\x33\x53\xe8\x15\xba\xb2\x40\xf7\x65\x32\xd2\xe8\x67\xa4\x2e\x4a\x14\xe9\x24\x20\x2d\x99\xc0\x93\x82\x81\x54\x28\x3e\x0e\x93\xb5\x50\x7b\xa5\x49\xca\x0d\xad\x4b\x0f\x67\x95\xcb\x84\x6d\xff\xf2\x7d\xea\x92\xea\xe9\x3c\xdc\x78\xfc\xd6\x2b\x1f\x99\x0c\x66\x71\xc6\x1d\x57\xf2\x2d\xf0\x85\x8c\x91\x4a\xf2\xcb\x96\xd0\xe5\xa2\xc8\x97\xe5\xdd\x2f\xce\xc7\x85\x48\x97\x09\xbe\x43\x6c\x5a\x13\x5d\xf0\xd2\x1a\x3c\xc7\x7d\x6b\x3d\x8b\xfb\xd6\x34\xac\x8a\xb7\x22\x40\xbb\x09\xd6\xa4\x97\xd9\x95\xd9\x3a\x24\x2b\x64\xc0\x78\xa1\x87\x9a\xfe\x4a\x5c\xfe\x40\x29\xed\xe8\x53\x8a\x68\xf9\xa5\x50\xbf\x21\xd4\x3e\xc0\x8f\x44\x2b\x7b\x1e\xe2\x7d\x10\x75\x48\xf0\xbd\x62\xc5\x9a\xd8\x05\x8f\xd3\xdf\x35\xf8\xa4\x58\x41\x7e\x87\xe1\xfe\x71\x6e\xcb\x24\x7d\xea\xe4\xfa\x19\xd6\x1e\x78\x0a\x27\x70\xc9\xdc\x93\x28\x0a\xc5\x38\xa3\xe8\x01\xd4\x45\x8f\xf7\x21\x40\xd0\x94\xa6\xa1\x3d\x77\x6d\x20\x08\x3c\x05\xf1\xe6\x8a\xb4\xb4\x8a\xec\x78\xb8\xf2\x09\xff\x53\x5f\x66\x8e\x8b\x33\x97\xe9\x8d\xfa\xd2\xac\xb8\xb8\xac\x52\x3d\x19\x2f\x5c\x72\xf9\xaf\xfc\x17\xd1\x6b\x58\x87\xc2\x54\x14\x00\x19\x06\x3f\x66\xe3\xc8\x93\xe3\x77\x91\xe3\x7a\x14\x26\xfe\x92\x3c\x91\x9c\x6f\x94\xce\x3f\x45\x61\x17\x28\x8f\xac\x11\x17\x89\xbc\x50\x21\x07\x6a\x40\xa3\x68\x3b\xda\x4d\xf3\x5e\xef\xde\x85\x03\x02\x77\xc6\x12\xec\xb4\x1c\xd7\xa1\x00\x24\xa0\x00\x61\x14\x00\x51\xf6\x2d\x24\xa7\x41\xde\x4c\x83\xaa\x60\x29\x80\x24\x3c\x4d\x25\xae\x5f\x59\xde\x3c\x35\x34\x90\x46\x7f\x34\x69\x1a\x4d\x10\xe9\x34\xf0\xe4\x9c\xf4\x20\x63\xa2\xae\x8e\x08\x80\xeb\x62\xbb\xae\x8f\xe2\x12\xae\x3b\x72\xfd\x35\x11\x7a\x50\xc2\x13\x31\xd6\xe6\xdc\xc2\xe6\xd8\xb8\xd6\x82\xbc\x66\x6b\x8c\x92\x7e\x6b\x8d\x8b\x6d\xc9\xcf\x6b\xb1\xc6\x88\xa7\xe8\x59\x7a\x3c\xc6\x42\xff\xda\x62\xb8\x38\xc2\x3e\xaa\x51\x67\xc4\x06\x04\xc4\x65\x68\xd4\x99\xb1\x01\xe2\xab\xe4\x88\x5a\x9d\x11\xe7\xef\x4f\xce\xd0\xbf\xe2\xc9\x40\x72\x24\x35\x23\x36\x90\x9d\x21\x7f\x8b\x73\xf1\x74\x1e\x74\x98\x47\x5b\x6c\x8e\x8c\x0c\x87\xad\x65\xd4\xdc\x6a\x1e\x6b\xb1\x3a\x8c\x46\x87\xb5\x65\xcc\xcc\x3d\x6e\x1e\x6d\xb5\xd9\xc8\xa7\xd6\x2c\x72\x8d\x95\x9c\x5f\x7f\x3c\xa9\x22\x5f\xa7\xcb\xaf\x48\x6a\x4d\x2a\x67\x1f\x12\x5b\xaf\x3b\xc2\x09\x89\xec\x53\x79\x62\x6b\x62\x45\xbe\x5e\x4f\x0e\xad\x2f\xda\xb8\xbd\x36\x04\x70\x09\x3d\xca\x99\xb8\x67\x91\x8c\x72\xc3\x72\xe0\x41\xf3\x22\xe8\x40\x12\x2e\x0d\x50\x43\x84\x82\xcd\x20\x50\x83\x1d\xac\x38\x0e\x22\xa7\x49\x56\x0b\xfd\x34\x36\x8a\xbb\x60\x67\x04\xec\x44\x88\x95\xf3\x80\x54\x0e\xcd\x03\x29\x00\xa6\x05\x61\x60\x25\x61\xf0\x15\xc5\xa6\x85\x2c\x82\xa3\xe2\x09\xa2\x40\x4d\xd9\xb5\x40\x27\xfe\x70\x33\x44\x8a\xbf\xe5\x9e\x15\xf7\x45\x88\x87\xe1\x10\xdc\x2a\xcd\x6b\x1b\x7a\x92\x3b\xc3\xff\x85\xea\xa1\x2f\x60\x04\x66\xa3\x96\x0e\xc5\xe1\x16\x1c\xd8\xf6\xa4\x99\x8f\x31\x53\x99\x11\x8b\x67\x78\x85\xf0\x1a\x99\x46\x21\xa8\xd1\x49\x40\x78\x88\xf7\xf3\x80\xbb\x82\x3d\x50\x5f\xc0\x93\x02\x78\x62\x1a\x36\xd1\xd7\x9d\x97\x10\x78\x80\x97\xaf\x3d\x4e\x10\x58\x8a\x70\xdf\x8b\x4f\xd6\x21\x0a\xf1\xd5\x83\x15\x88\xad\x8a\x9b\x7b\xe8\xa1\x2d\x62\x3c\xc0\x3b\xab\x62\x06\x4c\xa4\x71\x87\xbb\xde\x7c\xb3\x18\x37\xba\xbf\x0a\x9f\xaa\x62\xf5\x6d\xc5\xb7\x71\x6f\x91\xba\x44\xa1\xf6\x97\xc3\x01\x03\xcb\xe7\x9c\xce\xb0\xe0\xbe\x6c\xcc\x85\x8c\x69\xd4\xfb\x85\x02\x9f\x94\xde\xb5\x92\x9e\xf2\x12\xde\x92\x33\x52\x2a\xe6\x28\x14\x15\x45\x3c\x50\x32\xbf\xab\x52\x31\xd3\x3c\xe5\x9e\x4c\xcc\x8f\x45\x69\x77\x74\x1c\x3c\x05\xf3\x78\x78\xd0\x58\x61\xd7\x04\x2e\x08\x1f\x3f\x51\xd9\x0e\x97\xee\x10\x79\xf8\xc3\xc2\x22\xc4\x65\x96\x68\xdc\x3f\xe2\x52\x25\xd9\xb7\x17\x21\x7e\x8c\xd8\x97\xad\xf4\x4d\xf4\x92\xcc\x04\x82\x3c\x08\x28\x2d\xd0\x48\x30\x08\xbc\x44\xd1\xec\x65\x98\xa9\x60\xb5\x62\xa0\xac\x22\x5c\x6f\xb5\x64\x93\x24\xda\x69\x84\x3d\x81\xea\xd0\xd1\x84\x6b\x21\x2c\xc4\x8f\x05\x37\x44\xcb\x28\x1d\x1c\xdb\x64\x53\x6b\x0a\xfb\xbd\x16\x92\xae\x24\x57\x28\x55\x5c\x84\xf8\x00\x0f\x09\x3a\xfc\xdb\xf5\xc4\x91\x64\x5d\xa4\x9c\xff\xf4\x27\x85\x57\x5e\x94\xe7\x4e\xdf\x39\xd8\x77\xfb\x58\x0e\x6c\xc3\x69\x75\x13\xc5\x65\xc4\x3a\x22\x83\x69\xf1\xbc\x0c\x86\xe1\xbf\xb7\xd4\x9c\xb0\x8f\x8f\x07\x15\x35\xb6\xaa\xb6\x74\x3f\xd1\xf3\xfd\x81\xfb\x57\xca\xf3\x26\x4f\x76\x94\xcf\xd4\xea\x6c\xbd\x3b\xab\xbe\xdf\xf3\x04\xb3\xfd\x9d\x21\x3a\xca\x33\x6c\x2f\x93\x03\xd5\x92\x3f\x36\x20\x00\x80\x0f\x04\x5f\x10\xb3\xef\x88\x20\x1d\x89\xbc\xe6\x1a\xdf\x69\x6f\x04\x33\x2d\xc4\x82\xfc\x64\x81\x32\xbf\xc0\x05\x32\xd3\x78\x08\x60\xb4\x1a\x6c\xbf\x4a\x47\x8d\x66\xc5\xa2\x41\x20\x6c\xf1\x90\x9c\xfc\x95\xbe\x10\xe7\x9c\x8f\x78\xa7\x20\x14\x49\xb7\x23\xef\xdd\x91\xff\xe1\x73\xff\xd3\x47\x32\xea\xa0\x1c\x5b\x46\x7a\x9a\x41\x11\xa9\x52\x68\x68\x9e\x6a\x26\x67\xd5\x11\x91\x57\xe5\xa9\xb6\x53\xd3\x27\xa3\xd1\xa0\x6e\x47\x6b\x04\x75\x14\xf9\xec\x45\xfc\x5d\xaf\x42\x40\x6c\x7a\x4a\x94\x51\xa1\x50\x3a\x55\x8e\x46\x4b\xcc\x16\xc1\xd6\x7f\xb0\xfd\xc8\xea\x7a\xcb\xbe\xbe\x1c\xbf\x05\x58\x7d\x75\x7d\xf1\x48\x71\x7f\x61\x52\x62\x61\x7f\xc9\x11\xee\x07\xee\x42\x5d\xa5\x3d\xc5\x8f\xef\x0b\x0c\xc9\x68\x9a\x2b\xc5\x6f\xb6\x9f\x99\x29\x02\xf7\x2b\xc2\xb3\x90\x3f\x76\xac\x89\x86\x45\x89\x2b\xe0\xe8\x5b\x2b\x2d\x5b\x1b\x70\x00\x9d\xc7\x3b\xc8\xda\x62\x67\xf3\xb8\xcd\xd9\xac\x01\xb9\x4c\x0b\x82\x3c\x22\x00\x03\xa2\xa3\xc8\xd7\x45\xd1\x44\xd7\x7e\x20\xf8\x03\xcf\x09\xfc\x48\x00\x78\x48\xaa\x89\x26\xca\x7a\xa2\x62\x63\xc3\xe9\xac\xd6\x50\x7f\x93\x92\xb4\x38\x90\xcd\xe7\xa8\xab\x5b\xac\xb7\x93\xf9\xcc\x7e\xe9\x42\xba\x61\x7b\xa2\xa2\xff\x71\x1d\xe2\x40\xfe\xe6\xf3\xc3\x79\x5b\xec\xfe\x8e\xa5\xc2\xed\x9f\xbf\xad\x1e\x3e\x43\x7e\xc0\x75\xdb\x5b\xdb\x0b\x17\xf3\xfd\xed\xf3\xf9\x23\x77\x6f\xce\x83\x07\xc5\x01\x78\x10\xdb\x14\xb3\x1f\xdf\x5e\xaa\x50\x4c\x85\x86\x35\x9e\xfd\xce\x21\x45\xf7\x43\x3d\xdc\xa1\x6f\x9f\x6d\x52\x84\x6c\x0e\x8b\x28\x59\x7b\x6a\x4e\xe8\xa1\x54\xb4\xa8\x82\xb4\xf1\x2e\xb2\x7e\x1a\x51\x29\xea\x22\x22\x22\xd8\x19\xd0\xdb\xdd\x52\x55\x60\x0e\xe5\x79\xb3\x2f\x9a\xdc\x07\x03\xf1\xbe\x65\x3e\xc5\xf9\xfa\xe8\x66\xeb\xf5\x2b\x20\x11\xa9\xd8\x90\x5a\xdc\x69\x2b\xec\x77\xaa\x00\x54\x25\xfd\x05\xf6\xae\x22\xf5\x10\x8e\x54\x5b\x55\xba\x3c\x6d\x44\x84\x2e\x4f\xaf\xb2\xa4\x46\xe2\x9f\xa5\x90\x21\x23\x03\x96\x92\x52\xdc\x57\x58\x38\x50\xac\x1a\x0e\xd7\xe6\x19\xf4\xb9\x9a\x70\x85\x86\x00\xe2\xc9\x5f\x91\xc9\x66\x3e\xc0\xdc\x59\xa2\xb5\x75\xcc\x38\x1a\x1c\xb3\x1d\x76\x92\xf5\xdf\xae\x2e\x48\x57\xea\x8b\xeb\xb5\x0d\x5a\x57\x91\x3e\xc6\x90\x93\xe8\xee\xcb\x9d\x6d\xb7\xd9\xda\x67\x73\x1b\xbd\x1f\x74\xf5\x45\x3a\x5d\xb1\x4b\xd7\xc8\x3e\x14\xd5\xeb\x5e\xf3\xc8\x78\xf4\xc7\xcb\xbf\xe1\x7e\x2a\xfc\x12\x69\x90\x1d\xf9\xbd\x94\xa5\x0d\x47\xd8\xcc\xd2\xbb\xda\x89\xb2\x6c\xa7\x68\x00\x5f\x43\xc9\xb4\x94\x4c\xf2\xc5\xdc\x95\x36\x72\xe3\xe3\xa7\xfa\x8d\xf9\xbb\x2a\x2a\x77\xe7\x26\x95\x8c\xd7\x14\x76\xe7\x27\x81\x6d\xf4\x44\x4f\x5c\xe1\x68\x9d\xe8\x2e\x19\x29\x57\x93\xa5\x38\x95\x32\xd8\x44\xe1\xda\x1d\x0f\xf6\x1b\x23\xa3\x60\x11\x62\xa2\x71\x7c\xe5\xd1\xd9\x72\x47\xcf\x52\xbe\xb6\xef\xe5\x87\x8f\x5b\x36\x55\xee\x1e\xcc\xc7\xb8\xc0\x38\x7f\xe0\x54\x9d\x5e\xeb\x2a\xd4\x5b\x9b\x47\x4c\x88\x8e\xd5\x21\x86\x87\xfe\x0c\xf2\x47\xc9\xa4\x96\x79\x74\xac\x72\x73\xb2\x34\xb1\x21\x02\x22\x63\xa5\x52\x43\x04\x05\x32\x70\x56\xe5\x75\x63\xe2\xb8\x6e\x4c\xe8\x56\x0e\xbf\xbe\x45\x7c\x90\x9b\x9f\x83\x41\x6e\x7e\x50\x61\x28\x35\x67\x97\x92\xec\x11\x44\x3d\x33\x93\x90\xb8\x06\x21\x42\x97\x92\xac\x8d\x14\x84\x48\x2d\xf9\x1b\x21\x03\x41\x7c\x03\xca\xf9\xe9\xf7\xef\x22\xd6\x93\x4b\xfc\xa6\xf5\xb4\xc1\x66\xbb\xbd\x79\x30\xed\xfe\xb4\x81\x66\x9b\xad\x69\x30\x8d\x8f\xaf\x28\x4c\x4b\x2f\xac\x88\xbb\x3b\xae\xa2\x30\x9d\x7e\x70\x9f\xa5\x6e\xc5\x29\xee\x2e\x96\x83\x25\x08\x45\x92\xbe\x8d\x08\x95\x01\xe9\x5b\xe0\xd4\x1c\x7d\xb9\x23\xc8\x9b\xed\x81\x7f\xda\x55\xdc\xef\xee\xb6\xdd\x55\xdb\x77\xdf\xfd\x7d\xb5\x22\xbe\xaf\xee\x12\x1c\x15\x1c\xe2\x30\x3c\x2a\xf6\xe0\x58\xb1\x15\x9e\x76\xff\x0a\xbe\x2b\x66\xc0\x77\x2b\x99\x1c\xbe\x87\xc8\xe1\x73\x8c\x63\xd7\x40\xca\xd5\xa4\x84\x61\x52\xae\x56\x72\x33\xf8\x42\xb8\x88\x96\x2b\x61\x52\x80\xa6\x05\x54\x91\x65\x8d\x57\x76\xbc\x36\x5a\x77\x74\x65\xb0\x5c\xab\xaf\x1a\x59\x39\x58\x35\xf3\xd2\xa1\x3a\x70\xa3\xbc\x5b\x1b\x47\x3e\xd1\x29\x9e\x6e\xbc\x35\x0f\x27\x38\x8e\x0e\xda\x8a\xd3\x5d\x53\xbb\x4e\xb8\x6a\x8f\xef\x9e\xaa\x37\x76\x9d\xfb\xfc\x5c\x96\xf8\xaa\xb5\x00\x4a\x0a\xb9\xf4\x8a\x1c\xf1\x37\x90\x64\x2d\x66\x7b\xb2\xc2\xcb\x7f\xe7\xcf\x11\x1b\x72\x16\x7c\x56\xfc\x27\x7e\x2f\xef\x3c\xd2\xc1\xea\x0f\x10\x84\xc2\x97\xa8\xd7\x8f\x7c\x67\xfb\x33\xfc\x1e\xdd\x9f\x91\xeb\x9d\xe4\xfa\x4f\x0b\xaf\x91\xeb\xdf\xbc\x9c\x88\x7f\x2d\x5d\x9f\xfa\x0f\x76\xfd\xed\xec\xfa\x70\x76\xfd\xaf\xc9\xf5\xcc\x09\xf6\x0f\xf2\x81\xdc\x97\x77\xf9\xdf\x64\xdd\x79\x9e\xdc\xf7\xf9\xcb\x81\xf8\x37\xd2\x7d\xa1\xd2\x73\xf6\x23\x9e\x7c\x57\xb0\xfb\x7e\x43\xef\xc3\xdc\xb3\xbc\xe7\x79\x0e\xf2\xbc\x53\xec\xbe\x2f\x5e\x4e\xf0\xde\xf7\x19\xe9\xbe\x11\xa9\x7e\xbe\xfb\x68\xbf\xee\x21\x32\xa1\x4a\xf8\x0b\xe9\x55\x27\xe9\x57\x6b\x5a\xa2\x82\x8e\x17\x91\x48\x34\xea\x5e\xca\xe4\xe9\x65\x05\xf6\x71\xb6\x2a\x37\x48\x05\x9e\x65\xec\x68\x5f\x7a\xab\x5c\x48\x30\x95\xf7\x2e\x56\xb5\xdf\x56\xae\x2c\xb9\x30\x3d\x76\x71\xa5\xc5\xaa\x2c\xde\xf9\xca\xce\x2d\xcf\xed\x2c\x2f\xdb\xf1\xf4\x4a\xc7\xe1\xfe\x6c\x73\xff\xa1\x8e\xd2\x69\x1a\x3f\x17\xe6\x1c\xda\xce\x89\xe3\x7d\xd5\x27\x0e\x2e\xb6\x99\xb3\x32\x06\xcd\x39\x50\xbe\x72\xdf\xab\x5f\x1e\x2b\xdd\xf9\xeb\x57\xe6\x9b\x6f\xfb\xe4\x8c\x6a\xea\xa5\x23\x0d\x13\xce\xd9\x53\x4d\xaa\x36\x92\x29\xcb\xe8\x9a\x58\xdd\x5f\x9a\x97\xdd\x5b\x95\x8e\x00\x7d\xe5\x72\x30\x8f\x59\x0c\xa6\xec\x05\x19\xd5\xe5\x04\x2f\x45\x3d\x5e\x75\xbf\xb8\xca\xe5\xfe\x45\x56\xf4\xaf\x37\x65\x0f\x52\xd9\xee\x20\xf8\x85\xb3\x74\x4e\x92\x6b\xfd\x38\x72\x2d\x00\x55\x2d\x00\xa8\x85\x03\xb8\x08\xf7\xab\xdc\x97\xde\x7f\x08\xf7\xba\x49\xd6\xd5\xf5\x1d\xb8\x16\x97\xb9\x95\x13\xfd\x1c\xe2\xf8\x81\x09\xb7\x42\xd2\x73\x1e\xc7\x4f\x73\xbf\xe5\x22\x11\x47\xf7\x44\xd7\x6a\xb4\x8a\x30\xa6\xd1\xd2\xa4\x7d\xbf\x5d\x7f\x83\x2b\xc7\x4f\x4f\xd0\xe3\x5b\x3d\xfb\xc2\x00\xf2\x5c\x81\x3d\x57\xe9\xa0\x0c\x70\x1c\x91\xfb\x38\x50\xab\x83\x43\x3b\xc5\xa0\xe1\xbf\x9c\xff\x03\x24\x9f\x38\xc1\xdf\x4e\xb0\x52\xfb\x58\x8c\x59\x06\x1a\xe5\x1f\xe4\x95\x28\x1b\x35\xa1\x39\x14\xf0\xca\x78\x67\x6d\x6e\xb2\x8c\x23\xf7\x5f\x93\xa5\xd4\x37\xf1\x25\xee\x66\x8a\xe5\xe7\x7d\x5c\x09\xd1\x64\x6c\x54\xc4\xef\xc6\x92\x18\x78\xc8\x79\xa2\xf8\x07\x83\x89\xfb\xac\xcd\x9e\xd7\x5f\x63\x53\x84\xdb\xaa\xfb\xf2\xec\x6d\x25\x19\xf1\x41\x41\x9e\xa3\xd5\xb6\x70\x92\xfd\x7e\x80\x1c\x2d\x36\xc6\x07\xf7\xc8\x14\xf1\xc6\x02\x83\x86\xe4\x7e\x49\x52\x00\x28\x92\xd2\xed\x25\x1a\x43\xa1\x31\x5e\x21\x5b\xcf\x97\x87\x25\x18\x0b\x0d\x9a\x12\xdb\x55\xe7\xd2\x13\xc2\xe4\x58\x97\x31\x31\xd6\x5f\x9d\x5e\xd0\xb7\x98\x93\xb3\xd8\x57\x90\x5e\x35\x40\xcc\xdf\xa6\x8c\xf1\x71\x7a\xb0\x9f\x1e\xec\x2f\x48\xaf\xee\x1f\x1f\xcf\x48\x69\x6e\x69\x28\xd0\xa4\x97\xb6\xb6\xd6\xc5\x6a\x62\xeb\x5a\x5b\xcb\xd2\x40\x53\xd0\xd0\xd2\xac\x52\xb1\x33\xb0\xe1\x54\x69\x3a\x3b\x93\xc2\xc6\x83\x70\x2f\x73\xdf\x97\x25\x23\x2d\xe9\xdb\x18\x9e\x8e\xff\xd5\xc8\x09\x26\xc3\xd9\xca\xea\xb1\x65\xe2\x33\xba\xfa\xc5\xfa\x44\x0f\x82\xc2\x9f\x20\x28\xa2\x20\xad\x71\xd9\xa5\x2e\x4b\x0d\x33\xe7\x5a\x1b\xac\x71\x3d\x1e\x18\x05\x27\x13\x18\x8c\x42\xd0\xd4\xef\xee\xb1\x04\xf8\x0f\x87\x68\x9d\x5d\xd6\x7f\xff\x98\xc9\xa1\xe3\x50\xc7\x3b\xb9\xdf\x22\x15\x2a\x27\xef\x4b\xb9\x45\x15\x46\xde\x97\x08\x4f\xbe\x5b\xf2\xe8\x1c\xb6\xc4\x33\x1f\xa8\x89\x93\x93\x4f\xdc\x4d\xce\xdd\x69\x5a\xab\xd1\x14\x92\xd3\x09\x56\x6b\x5e\x6a\xcd\x6a\xa6\xbf\x69\xad\x3a\x35\xd7\x66\x49\x48\x72\x38\x8a\x34\x35\xdb\x32\xc3\xaf\xbd\xc2\x2f\x73\xad\x26\x35\xd7\x6a\x4d\x48\xca\xc9\x2d\xd4\x92\x03\x5c\x67\x49\x2b\x40\x60\x64\x42\x68\x48\x5c\x64\x20\xb4\x97\xac\x90\xef\x81\x11\xb1\x21\xa1\x09\x51\x41\x40\xbe\x8b\xef\x94\xb4\x60\x08\x8a\x8c\x0f\x0d\x8d\x8b\x08\x82\x8e\x2b\x17\x24\x92\x0b\x70\x7b\x09\xeb\xcf\x67\xd1\x23\x7c\x06\x3f\x8f\x22\x48\x7f\x06\x61\x3a\x57\x55\x72\x8a\xf0\x50\x45\x90\x5f\x87\x92\xea\xe2\x9c\x8a\xcf\x70\xff\xe8\x60\xc9\x16\xd1\x0d\xc5\x4f\x88\x31\x58\xbd\xbd\x64\x0c\x04\xf1\x33\x4f\xc0\xaf\xe1\xf6\xdf\x68\xbf\xb0\x19\xb2\x37\xff\x3f\xed\x8b\x9b\xc5\xb7\x25\xfb\xd5\xb7\x50\x06\x9f\xce\xdf\x86\x26\x51\x12\x32\xa2\x4f\x3a\x89\xf4\x01\x39\x1c\x43\xe9\xee\x3d\x4c\x7a\x3d\xfb\x49\x8f\xd0\x73\xef\x21\x1f\xa4\x7b\x7e\x8c\xd2\xf9\x3a\xfe\x7e\x72\x4f\x0a\x4a\x43\x6f\xfb\xee\xb1\xba\x77\x49\xf7\xbc\xed\xbd\x67\x17\xbb\x87\x8e\x09\x31\xaf\xf1\x16\xf2\x9e\x09\x28\x98\x8c\x49\x90\x1f\x47\xd7\x73\x06\x79\x07\x15\xe8\xe5\x40\x5e\x3b\x9c\x33\x0c\x17\xc4\xf1\x61\x71\x8c\x8b\x12\x5f\xe5\x39\xf1\x93\x50\xcd\xf1\xc4\xec\xaf\x77\xa7\xe1\xef\xe3\xfe\x80\x00\xf7\x43\xee\x87\x02\x02\xd8\xbe\xeb\xc1\xcb\x95\x78\x90\xf4\x88\xbf\x47\x5e\xd0\x75\xc6\x6b\x1b\x1a\x04\x47\x61\xb5\x5a\x03\xcb\x13\xf5\xe7\x0b\x6c\x8e\xc5\xf2\x7a\x5a\x87\x68\xd4\x8f\x02\xf8\xa3\xbc\x8c\xd4\x20\x01\xa5\x23\x9a\xd7\xbc\x0a\xd5\xa3\x56\xd4\x87\x86\xd0\x28\x69\xcd\x0c\x9a\x47\xcb\x68\x27\xd9\x2f\x1d\x44\x47\xd1\x6d\xe8\x14\x3a\x4b\xf9\x9b\xcf\x9c\x3e\x79\xfc\xd6\x63\x47\x0e\x1d\xd8\xb7\x67\xd7\xf6\xad\x8b\x0b\x73\xb3\xd3\x53\xe3\x63\x23\xc3\x03\xfd\xdd\x6d\xcd\x8d\x35\xd5\x15\xa5\x85\x05\x79\x36\x5d\x72\x6c\x88\x3f\x8e\x26\x8d\xb2\xd1\x68\x3c\x22\x7b\x69\x12\x7e\xbb\x92\xfc\x12\xbc\x4a\x0e\xfd\x97\x00\xac\xf4\x91\x14\x98\x49\x84\x02\x05\x15\x46\x09\xd2\x37\xb5\x74\xa9\x5d\x0d\x34\xc0\x81\x6e\xa8\xc8\x5f\xfa\x59\x1d\xa5\xa5\xff\xda\x81\x5c\x4b\x2e\x55\xdb\x39\x7a\x81\x9d\x5d\x12\x15\xb1\xf1\xb3\x95\x5e\xa1\x56\x0b\x94\x11\xd7\xf3\x0b\x1b\x3f\xff\xb1\x2a\x2f\xaf\xaa\x3a\x2f\xaf\xf2\x3e\x6b\x5e\x42\x82\x52\x59\xec\x98\xec\x36\xa8\x35\x69\x69\x6a\x75\x1a\x0e\x49\x52\xc6\x25\x5b\x0b\xcd\x99\xf9\x96\xf5\xdb\x8b\x67\xf1\xf7\xe7\x8a\xde\xff\xde\x13\xb3\x5c\xf9\x13\x45\x62\x65\x62\x7c\x7c\x62\x95\xe6\x9e\xf2\x7b\xdc\xcf\xde\x5d\x2e\xfd\x99\xb4\xaa\x52\x4a\xad\x62\x4b\x31\xfb\xe1\x7e\x57\xc4\x7e\xb0\x36\xa7\xac\x2c\xa7\x98\xfe\xb3\xcd\x68\x54\xea\xfd\x48\x8a\x7b\xa3\x41\xfc\xd6\x36\x9d\xd1\xa8\x2b\xa6\xff\x74\xc4\x24\xc5\xc4\x99\x32\x2d\x99\xdf\x74\x6f\x7e\x7a\xbe\xa4\x64\xfe\x69\x6e\xe8\xa2\x73\x60\xc0\x79\x71\x40\xcc\x8e\x8b\x8e\x8a\x19\x80\xb7\x9d\xec\x67\xbd\xa2\x84\xfd\xe0\x89\x30\x65\x46\xeb\xad\xe2\xa3\xb7\x40\xf4\x2d\xe2\xa3\x9e\x0f\x08\x09\x28\xd4\xfd\x3d\xfe\x19\xbf\x65\xc4\x91\x19\x98\x49\xa4\xb0\x1d\x85\x3a\x83\x6c\x16\x12\x64\x99\x1e\xce\x63\x24\x98\x8d\xfe\x9c\x40\x8d\xab\xc5\x9c\x0f\x01\x65\x65\x50\x4e\xe6\x04\x26\x28\x0e\xa5\x3a\xca\xca\x91\xde\xa5\xbf\x78\x13\x6e\x70\xbf\xe0\xfe\x38\x7e\x4d\x16\xa4\x08\x8c\xce\xd4\x28\xb5\x95\x13\xce\xdc\x91\x5a\x23\x7c\x15\xa7\xc5\x68\x53\x14\x31\xf1\x01\x89\x24\x83\xd8\x57\xbe\xf2\x95\x59\x9e\xc7\x3c\x2f\x6b\x5d\xcf\x5e\xcf\xe6\xde\x7e\x3f\x96\x04\x9a\x86\x25\x3b\xf2\x9c\x69\xce\xc9\x5a\x7d\x52\xe9\x78\x95\xc3\xec\xb4\xc5\x59\xb3\xf4\xc1\x1a\x83\xce\x62\xee\x7b\xc2\xdd\xc9\x07\x5c\xe2\x11\x46\xdf\xb9\xfc\x47\x1e\xf1\x17\x19\xb7\x94\xdf\x4b\xda\xb8\x50\x9e\xbe\x03\x57\x7c\x20\x6c\x99\xd0\x7b\x08\x2b\xa2\x3c\x32\x92\x47\x40\x80\x59\xb3\xb3\xe7\x37\x65\x01\x98\x46\xce\xd3\x4f\x26\xd8\x0e\x89\x65\x73\x2d\x2d\x73\x65\x89\x00\x89\xe5\x5b\x5a\x5a\x66\xcb\x12\x00\xde\x1b\x7e\xf9\x44\x47\xc7\x89\x97\x87\x3f\x35\xfc\xf2\xf1\x8e\x8e\xe3\x2f\x8d\x84\x56\xde\xba\xa5\xa2\x72\xee\xd6\xca\x1f\x55\xde\x36\x5f\x55\xb5\x70\x6b\x25\x02\x28\x47\x88\x3b\xc3\xa5\xa0\x54\x1a\x3b\x85\xa5\x58\x15\x0c\x3c\xb0\xb0\x74\x6a\xdd\x87\x51\x6f\x50\x7a\x11\xaa\x8f\xd3\x84\x93\x98\x73\xbf\x58\x62\xaf\xb4\x83\x2f\xa3\xf3\x55\xe9\x8f\xe4\x2a\xee\x8c\xfb\xf3\xa0\x4a\xb0\x68\xa3\x09\x54\x23\xb5\x6d\x88\xdb\x0c\x19\xae\xc9\xe2\xbc\x4d\x35\x86\x64\x5b\x99\xe6\x7b\xf0\x92\x0b\xe2\xe3\xed\xf6\x9c\x78\x95\x4d\x13\xd1\xe5\x72\xf4\x97\x69\x93\xf2\xdb\x73\xd2\x5d\xd5\xe5\xa9\x5f\x40\x18\x8a\xf8\x77\xb9\xaf\xc9\x3e\x4d\x6d\x49\xa4\x6f\x74\xd1\x02\x93\x0f\x6a\xbd\x5c\xad\xb5\x3a\xa4\x2e\x92\x7b\x50\x6c\xf4\xb1\xac\x6b\xb8\xaf\xed\xfb\xf2\x17\xf7\x42\xc4\xd4\x37\x71\x94\xce\x96\xa2\xb6\x66\x66\x25\x47\x24\x12\x01\xeb\x84\x28\xad\x4d\xa5\xb2\x64\x99\xe9\xf7\x20\xe0\xdf\x7d\xe9\xa5\x3f\xff\x30\x39\xcf\x18\x97\xa0\x4a\x80\xc8\x24\x8d\x22\x38\xa9\xd0\x9c\x14\xaf\x4a\x08\x8b\x57\x85\x33\x3b\x74\x28\xff\x2e\x7f\x42\xf6\x1c\xb5\x89\x51\x9d\x58\xbe\xf1\xf9\x4a\x3b\x69\x36\x19\x16\x87\x07\x24\x12\xc5\x3d\xb7\xff\x5b\x6f\xef\x87\xe0\x63\xee\x58\x6b\x5a\x2c\xa8\xad\x05\xb1\x32\xd3\x40\x9d\x29\x3e\x23\x37\x81\x7f\xf7\xb5\xd7\xfe\xbc\x75\x01\xcb\x42\xe2\x95\xb1\xc9\x61\x42\x1d\x84\xa5\xe6\xa6\xa9\xcd\x29\x61\xbc\x8d\xf2\x52\x90\x76\x7e\x4a\x36\x42\x9e\x13\x40\x9e\xe3\x7f\xd5\x73\x04\x82\xbb\xe0\x3e\x75\xfc\xf5\xd7\x8f\x43\xf0\x56\xf1\x8d\x89\x97\x6f\xe1\xdf\x7d\xea\xa9\x3f\xf7\xff\x0a\x61\xb0\x92\xfa\xdd\xb7\xe1\x3e\x2c\xc9\x4f\x81\xde\x09\x56\xb9\x1a\x97\x2e\x43\xc8\x89\xd7\x5e\x3f\x81\xdf\x3d\xf6\xf2\x84\xf0\x5f\x7f\x7e\xea\x29\xd8\xfd\x2b\xc4\xda\x56\xc6\xbf\xc6\xdd\x2b\x3b\x83\x14\x28\x8a\xdc\x1b\x19\xce\xa3\x2b\xf3\x8e\xba\xe1\xe8\x9e\x57\x4f\x9f\x7d\x2f\xce\x6a\x9e\x25\x69\x42\x5a\xb2\x60\x5c\xd8\xdc\xd3\x3d\x2d\xec\x5a\xfe\xe4\x3d\xc2\xb3\x05\x7d\x25\x2a\x55\x49\x5f\x41\x53\x4b\x6b\x63\xc0\x0f\x58\x70\x4c\x12\xff\x32\xfe\xba\x2c\x0d\x05\x12\xf9\x1b\x20\x80\xf9\x2a\x4f\x46\x52\x78\x82\x3a\xbc\x3e\x3e\x01\xb6\x09\x39\xea\xca\x62\x47\x74\xb6\xa5\x3f\x67\x0f\x5b\x07\xaa\x18\xdf\xe7\x09\x24\x47\x01\x34\x8b\x4d\x00\xf0\x98\xce\x3e\x1e\x2f\x79\xc2\xa5\x36\x71\xe0\x33\xc6\xb3\x69\x07\xaa\x2b\xfc\xbf\xf3\xee\x6f\xec\xdc\x05\x3f\x58\x82\xef\xed\x74\xef\x82\x9f\xfd\x11\x1c\x04\x82\x7b\xe2\xfd\x65\xb8\x88\x87\xa4\x18\xd5\xff\x26\xe5\x67\x93\xf2\x29\xc7\xb8\x99\xfa\x29\x83\xa4\xdc\x70\x5e\xf6\x48\x5f\x8e\x38\x4f\x66\x38\xfa\x28\xa5\x12\x21\x33\xc9\x22\x40\xb9\xc6\xe3\x62\xc8\xad\x51\x2a\x3f\x3f\x6f\x66\x38\x3a\xe0\x1e\x9c\xec\x95\xac\xc8\x57\x82\x56\xff\x1b\xb6\xbb\xce\xef\x6c\x48\x2d\x68\xc8\xb0\x0d\x56\xa7\x43\xcd\xca\x1d\x0d\xe2\x5b\x50\x68\xdf\xdc\x6e\xcd\x6e\x99\xb4\x89\xaf\x43\x7c\xf6\x78\x8b\x35\xaf\x77\xce\x26\x5e\xe6\x4f\x40\x52\xf5\x6a\xaf\xbd\xa5\x30\x3d\x38\xc0\x54\x35\x94\xdf\xb5\xab\x51\x0b\x58\x2f\x16\x43\x4c\x4e\x47\x71\x61\xbb\x3d\x0e\x86\x21\x2a\xab\x91\xe4\xf1\xca\x52\x00\x02\xb4\x8f\xc8\x0c\x0d\x91\x19\x7a\xe6\x63\xc0\x9c\xc0\x61\x61\x41\x06\x02\xb5\x70\x6c\xf1\x21\xd8\x3d\xa1\x25\x95\x2c\x88\x4e\x8f\xf4\x69\xa9\x24\xc5\xb9\xdc\x2f\xf6\x3a\xe9\xa2\x66\x56\x44\x26\x5d\xe8\x1e\x8c\xd7\x04\x35\x6e\xbf\xd4\xbf\xf8\xf4\x5a\x09\x80\x73\xc7\xb3\x4b\xfd\x17\xb6\xd5\x07\xad\x29\x9f\x38\xd9\x77\xb8\x27\x03\xc0\xd8\x79\xa8\xf7\xf4\xd3\x4a\x98\x1f\x38\xb9\xc9\xd2\x75\xfb\x67\x36\x1f\x9d\xf9\xec\xed\x5d\xb6\xd1\x53\xfd\xb7\x9e\x81\x9a\x6d\xf7\xb6\x1e\x6b\xb9\x77\xad\x16\x4e\x9c\xa4\x63\xcb\xf2\x84\x35\x93\xbe\x0f\x46\xf1\xcc\x8b\x89\x04\xe0\x30\xf2\xf4\x35\x2f\xf5\x75\x48\x08\x42\x21\xf1\x21\x71\x8a\x50\x72\x59\x90\x4a\xe6\xed\x67\x96\x27\x8a\x53\x50\x57\x36\x45\xac\x7c\x1d\xc6\xb7\x7e\xe1\x74\x1b\x40\xfb\xd9\x2f\xad\xfc\xf2\x97\xc3\x17\x17\x4a\x30\x14\xcd\xdf\x3b\xc4\x9f\xc0\x4d\x27\xde\x5c\x19\xdd\xf6\xe6\xf1\x06\xe0\x75\xeb\x25\xe0\x5c\xbc\x34\x34\x3e\x78\x71\xb1\x04\x53\x1d\xe9\x5b\x2c\xa7\xd7\x09\x14\xc8\xe2\xd7\x38\xc4\x0b\x1c\x4f\x19\x0e\x24\xfb\xa6\xcf\xa8\x79\xb5\xaf\x47\x15\xe5\xf9\xe5\x3e\xe9\x3e\x85\xdf\x5e\x7f\x85\xab\x72\xdb\xf0\x22\x4e\x13\x0b\xc9\x5c\x9d\x14\xa7\xa5\xfd\xc5\xf7\x59\x4e\x9e\x13\xc8\x9f\xe5\xf5\x92\x00\x8f\x23\xbe\x28\xbf\x6b\x67\xad\x42\xed\x29\xf3\x1b\xee\x43\x3b\xb9\x0e\xb7\x0e\xef\xc2\x51\xee\xdf\xd0\xf2\x3a\xa4\xf2\x0e\x93\xb1\x4d\x23\x63\x9b\x45\xb9\x2f\x8d\x08\xf3\x02\x7d\x15\x38\x19\x87\x65\x0b\xbe\xa1\x95\x21\xea\x64\x1d\xd9\x30\xc4\x04\x7e\xa1\x61\xc3\x4b\x22\x25\xae\x1d\xde\x6b\x16\x0f\x96\xcf\x2b\x4d\x37\xb9\xbc\x96\xb7\xf5\x95\xfd\x55\x00\xa5\x3b\x9f\x5f\xee\xb8\x7b\x5b\x53\xc8\x6a\x48\x41\xc7\x5c\x49\xff\xd1\xde\x4c\x80\xec\xe1\x93\x03\xfa\xce\x36\x57\x22\x31\x28\xbc\x76\x9b\xa9\x50\x1d\xd2\x71\xfb\x9b\xf3\x07\xe7\x3e\x7b\xba\x3d\xa3\xe7\x50\x57\xc9\x40\x71\x72\xd5\xca\xf9\xf6\xc3\x9d\x17\xd7\x6a\xe4\x51\xda\x44\x48\xdc\x24\x71\x74\xd0\xdc\x2f\xb4\xaf\x69\x7f\x50\x5c\x1a\xb7\xe4\xcd\xfc\xc2\xdc\x5e\xc8\xd7\xcb\x57\xe7\x39\xe3\xfe\xb0\xec\x7e\x66\x79\x19\xb7\x2c\xd3\x14\xdd\xfc\x09\xf7\x2f\x70\x3c\x2d\xef\x5d\x52\xde\x3f\xf8\xe3\x52\x79\x74\xf6\x00\x46\xc0\x00\x1d\x0c\x39\x54\xc4\x6d\x28\x2f\xc2\x33\x66\xd4\x7d\xf6\x2e\x17\x41\x42\xda\xdb\xd6\x7f\x07\x35\x44\x6f\x3c\x3e\xb3\x5e\xbb\x79\x33\xf7\x8a\xd4\xc7\xaf\x5c\xfe\x23\xf7\x73\x52\x47\x25\x8b\x69\x66\xa4\xc9\x98\xc3\x4b\x5e\x5e\x95\x4a\xa8\xa7\x64\xe9\x3c\x35\xb5\x5b\x39\xaf\x48\xf4\xf4\x1e\x37\xb9\x13\x70\xc9\xec\xc9\xa6\x8e\x33\xf3\x15\xb2\x9d\x90\xd5\xbc\xb9\x20\x6f\x53\xad\x11\xf3\x27\xd6\xbf\xd7\x75\xeb\xa0\x35\xbd\xe7\xe8\x40\xc5\xa6\x92\x44\x5d\xe5\x58\x31\x02\xf4\x63\x9a\x03\x98\x3c\x2b\x88\x3e\x2b\x40\x06\x9c\xd7\x21\x02\x4b\x9c\xd4\x1f\xe1\x84\x20\x9a\x3d\x4b\xce\xfa\xc2\x21\x29\xc0\x97\x9f\x5c\x5b\x7b\x18\x3e\x7f\x97\xfb\x32\x36\x9e\xc3\xf6\xfb\xc4\xcd\xa4\x4f\xce\x3f\x0a\x9f\x76\xff\xcb\xbd\x03\x01\xfa\x35\x29\xb7\x9a\x3f\xe1\xc9\x11\x49\x73\x7b\x7a\x81\xc5\x45\x52\x8e\x48\x3f\xa5\x51\x4b\xfb\xc3\x0a\x53\xf8\x27\xeb\x0f\xee\x19\xa7\x12\x16\xd0\x13\x2c\x7e\x87\xd6\x47\xe3\x54\xf9\x09\x18\xb3\xfc\x76\x52\x1f\x00\x5e\xf2\x0a\x5a\x9a\xe3\x8e\x4d\xd9\xab\x72\xdc\xcd\x82\xfa\xd2\xb2\xf8\x4e\x87\xf8\xc3\xe5\x8f\xe1\x3c\xdc\xfe\xfe\x32\x1f\xe6\xde\x81\xf7\xbc\xff\x4f\x56\x36\x21\x11\xe2\xfe\x4e\x3e\xb1\xfc\x82\x72\x52\x34\xa6\xf9\x05\x69\xdd\xc0\xd3\x54\x45\x38\xed\xd6\x0d\x66\x30\xee\xef\xf3\xee\x97\xb9\xa5\x05\x4c\x50\xc6\xd4\x91\xca\x9f\xa0\xce\x54\x52\x9d\x3b\xc8\x7b\xe0\x20\xef\x81\x12\x65\xa2\x44\x67\x9c\x2f\x80\x9a\xe3\xbc\x53\x3e\x2d\xcd\xa8\x61\xfd\xe6\xd9\x54\x7f\xa0\xb2\xe4\x80\x82\xad\x1f\x5f\xae\xdf\x37\xd5\x68\x4b\x80\x82\x95\x8f\x2f\x2f\x3d\xbd\x52\x00\xab\x60\x68\x3f\xd8\xd7\x77\xb0\xdd\x00\x60\xe8\x38\xd8\xd7\x4f\xd2\x19\x01\x0e\xa2\xa9\x68\xd2\xea\xc6\xd7\x8e\x54\x2d\x4f\xbf\x79\x57\x5f\xef\x5d\x6f\x4d\xe3\x96\x0b\x3b\x5d\xf5\x3b\x2f\x34\xaf\x34\x5f\xdc\x55\x5f\xbf\xeb\x42\x0b\xa9\xdf\xe2\x65\x2b\xdf\x4e\xea\x17\x8f\xb2\x69\x74\x05\xe9\x49\xc4\xd1\xb4\x1b\x18\x55\xdf\xb0\xae\x69\xe9\x9e\xba\x92\xb0\x33\xb2\x2d\xb9\xb9\x7a\xd7\x0e\x29\xc5\x3d\xf9\xff\xd3\x2a\x8a\xaa\x6a\xdd\xd6\x57\xf7\x55\x02\x54\xec\x7b\x65\x65\xe5\xd5\x7d\x15\xb0\x0d\xcc\x83\x27\x07\x07\x8f\x0f\x9a\x81\x7c\x3a\x31\x38\x74\x62\x30\x8b\xd4\xbb\xfe\xc4\xce\xb1\xd4\x97\x6b\xbf\xe9\x1f\xd0\x79\xf6\xf3\x5b\x96\xb7\x7c\xfe\x5c\x57\xe7\xb9\xcf\xcf\xe3\xae\x4b\xdb\xaa\x6b\xd6\x2e\x76\xae\x74\x5e\xda\x5e\x53\xbd\xfd\x52\x17\xa9\xfb\xeb\x8c\xcf\xfc\x04\x65\x6c\xa0\x11\x72\xa1\x80\xb8\x30\xe6\x2b\x23\xe7\x28\xd1\xd0\xa8\x27\x4c\xc4\x23\xbf\x0c\x99\xaa\x8d\xf2\xcb\xb3\xfe\x41\x94\x1a\x7c\x2b\x1e\x01\x95\x5d\x5a\x83\x8b\x54\xf0\x1b\xaa\x06\x72\x20\x67\x9f\x7b\x3b\x14\xe4\x4c\x36\x5b\xec\x9d\x0b\xf9\xe2\x8f\xa8\x45\x90\xac\x73\xe9\x9d\x87\xfa\x9c\x63\xf5\x8e\x48\x31\x26\x00\xe7\x43\x52\x61\x4f\x61\xd9\x60\x51\x12\x20\x60\xe3\x6d\x25\xfd\x59\xcd\xd6\x34\x0f\x93\x0b\x63\x34\x16\xb6\x30\x85\x05\xe1\x51\x2f\xbe\xbe\x92\xab\xaf\x28\x2b\x2e\xca\x73\xa8\x92\xe3\xe3\xa2\x23\x65\x7e\x91\x46\xc8\x31\xf1\x7a\x93\x70\x0d\x29\x14\x66\x9c\x50\x49\xc2\xb5\x90\x7a\xee\x75\x48\xb1\x57\xba\xea\x53\x32\x36\x0d\x77\x95\xea\xf5\x65\x5d\xc3\xe3\xa6\xd6\x7b\x77\x36\x0a\xdb\x71\x7e\xef\x52\x41\xd6\x96\x41\x67\x6a\x5e\x6d\x43\x5d\x52\xe6\xa6\xc1\xf6\x12\x6d\xc7\xc1\x8b\xd5\x1d\x8f\x1d\xed\x11\xd6\xb8\xf2\xc9\xbd\xc5\xe6\xc5\x91\x52\x50\xa5\x97\x65\x6b\xe2\x22\xfc\x02\x13\x74\xd6\xca\xee\xdc\xdc\x6e\x12\xf1\x1a\x92\xd1\x75\xa8\xbb\x74\xb0\x28\x31\x22\xab\x31\x3f\xad\x38\x4b\x1d\x1b\x21\x0f\x4a\x34\xe4\x54\xf5\xe6\x76\xae\xd4\x24\xeb\x3b\x8f\x0c\xd5\x8c\x14\xc6\x46\x98\x24\x1c\xcd\x28\x42\xfc\x04\xd5\x7b\xd8\x3b\xcc\x61\xf0\x75\xba\x87\x55\xc1\x6f\x43\x06\xc6\x09\xb1\x60\xbb\x58\xc0\x73\xbc\xee\xfd\x1f\xf2\xba\x49\x16\x57\x43\xfa\x2c\x9a\xdc\x1f\x4b\x65\x23\x4f\xee\xc7\x40\xde\x62\xbc\x61\xd9\x8f\x45\x84\x2f\x4f\x2b\xf8\xd1\x9c\x5a\x1e\x41\x46\xac\xb9\x9e\x69\x16\xc1\x47\x43\xf9\xd2\xbd\xbd\x7d\xf7\x12\x24\xfa\x0a\x80\xa9\x65\xb1\xa2\x7c\xb1\xc5\x04\x40\xde\xc2\xdf\xf7\x9f\x9d\xc8\xc9\x99\x38\x33\xc0\x85\xaf\xff\xbe\x62\x8e\xcc\xe0\xfa\xb9\x0a\x2e\x9c\xd5\x7b\x8c\xd4\x7b\x95\x3c\xd7\x8f\xe6\x8e\x04\x00\x44\x25\x1a\xcd\xf6\xe8\xad\x7a\x04\x93\x3e\x92\xd1\x0c\xac\xb8\x95\x68\x7d\x33\x07\x44\xcb\x36\xd1\x7a\xe0\x9d\x91\x61\xee\x59\x22\x37\xa8\xbc\x48\x27\xe5\x3c\x4b\xe7\x21\xad\x7f\x90\x0c\x38\x49\x18\x61\x2a\x8d\x38\x90\x96\xe4\x48\x45\x64\x04\x9b\x7b\x4a\x07\xc1\xe6\xd1\x7f\x38\x35\xcd\x3c\x40\xb6\x68\xd0\x18\x14\xfc\xbd\x89\x6f\x07\x07\x3f\xbf\xf0\xb7\xcd\xef\x70\xdc\xbb\xd3\x7f\x5f\x84\x94\xe6\x2a\x6e\xdb\xfa\xd1\xea\x76\x6e\xf6\xfd\x65\xee\xd1\xb0\xb0\xf5\x1e\xf6\x2c\x66\xd3\xa3\xeb\x12\x95\xc3\xfe\x32\x8e\xa3\xb5\xe6\x58\xad\xb1\x24\xf3\xc2\x89\xcc\x63\x3d\xce\x04\x30\xfb\xdf\x8a\x37\x41\xfb\x29\x71\x02\x9e\x38\x29\x5e\x10\xef\x3b\x09\x8f\x89\x63\xa7\xf0\x13\xf0\x3f\xee\xcf\xba\x9f\xa7\x21\xec\xb8\x11\x97\x20\x5f\xac\xff\x0a\xeb\x93\x04\x67\xac\x8c\xc3\xd7\x76\x0a\x29\x9c\x76\x0a\x00\x0b\xc5\x24\x25\x4f\xc0\xa1\xdb\xc4\x8c\xed\xa2\xf9\x36\x1c\x84\xf7\xbb\x63\xc5\x5e\x78\x0a\xff\x8c\x95\xf5\x82\x47\x46\xfb\x53\x7d\xc5\x1f\x3c\x7c\x2a\x34\x8f\x24\x65\x53\x19\xd9\x28\xe8\xc3\xd9\x2c\x61\x92\xde\xce\x90\x5f\xe4\xa9\xff\xb3\x7e\x04\x7f\xd1\xdd\xc8\xb9\xc6\xc7\xdb\xb9\x6f\x4f\xb6\xb0\xd7\xa7\x9f\xff\x39\x77\xbb\xec\xaf\x48\x81\xd2\x88\xbe\x9f\x74\x43\x7d\x9f\x6e\xa4\x88\x2c\xd2\x3b\xbc\x7b\x38\x12\x7d\x81\x33\xeb\xc7\x09\xae\xaa\x3e\x13\x8f\xf2\xe3\x4d\x8d\x63\xfc\xcf\xb8\xc4\x7c\x53\x22\x80\xbe\xa0\x3c\x41\x6e\x25\x5a\x6c\x72\x76\x61\x12\xb1\xe8\x5a\x1b\x6c\x71\x71\xb6\x06\x6b\x55\x79\x45\x25\xcc\x80\x3c\x2c\x29\x36\x2e\x29\x4c\x80\xa2\x10\x55\x8e\x21\xd5\x94\x14\xc6\x39\x10\x02\x08\xa2\x11\x71\xfc\x69\x24\xa3\xb6\x55\x04\x66\xaa\x04\x08\x76\xad\x95\xe3\xd7\xc4\x7d\xf0\xcb\x70\xee\xfd\xb5\xd9\x8f\x21\x40\x9f\x63\x3a\xdb\x45\xa4\x21\xd7\x29\xd9\x75\x6c\xa7\x79\xc3\x4c\xbb\xa0\xe2\xe3\xd6\xbf\x00\x4f\xa9\x5c\xce\xf4\xf4\xea\x01\x5b\xf1\x74\xa3\x89\x5b\xe3\x2a\x17\xcf\xb5\xd4\xde\xb2\xb9\xc4\xda\xd0\x9f\x26\x5e\xc2\x8f\xf4\xc2\x13\x2a\x57\xc7\xa0\xd5\xd1\x9e\x97\x90\x52\x3a\x5c\xd2\x71\xa4\xdf\x9c\xde\xba\xbd\xb9\x78\x65\x66\xc8\x20\x3e\x2f\x8d\xe3\x17\xc8\x3b\x25\x23\xcf\x75\x92\xe7\xa6\x45\x01\xdd\x4f\x7d\xc0\x53\x6f\x1c\xa9\xa3\x57\xc3\x8f\xe7\x2d\xd3\x5d\xb9\x19\xae\x11\x9b\x6d\xa4\xc1\x42\x2a\x52\x3d\x7f\xbc\xce\x75\x7c\xb6\x54\x5b\xdc\x9a\x69\xed\xab\x34\x54\x6f\x3d\x53\xdf\x78\xc7\x6a\x1d\xbf\xc6\xe7\x74\x6c\x76\xe4\x4c\xb6\x58\x0a\x06\x96\x73\xe7\xf1\x41\x88\xb6\xb6\x14\xe6\xb5\xe5\xc4\xc5\xe5\xb4\xe6\x36\xad\xb5\xa4\x19\x5a\x76\xb4\xda\xdb\x9c\x99\xa1\xc1\x99\xe5\x03\x45\xed\x7b\x5a\xd3\xd2\x5a\xf7\xb4\x17\x76\xe5\x25\xc4\xe7\x76\x15\x96\x77\x5b\xa3\xe0\x8a\x2d\xad\x98\x3f\x41\xf1\x0f\x64\x7c\x83\x03\xfd\x79\xb6\x17\x8c\xa2\x4e\x1b\x1f\x72\x61\xe5\xcb\x5f\x5e\x76\x9f\x07\xdc\xb3\xdf\xfd\x32\x7c\xdf\x01\x87\x26\x28\x4f\x47\x2d\xa7\x5b\xff\x07\xde\xdf\xc7\xda\xff\x0b\xd2\x7e\x8e\x94\x93\x4e\xda\xaf\x00\xda\x7e\xaa\x55\x71\x12\xb4\xe6\x46\x0d\x66\xcc\x51\x7c\x15\x3e\xef\xfe\x4a\x56\xee\x9e\xd2\xf6\xdb\x67\x8a\x0a\x66\xee\xe8\x76\x1d\xdd\x5c\x19\xb0\xd5\x3f\xbb\x76\x30\xa7\x6c\x73\xad\xce\xdc\x32\x5b\x5c\xb3\x33\x1f\x37\xe3\xa2\x59\xf1\x64\x4a\x52\xce\xe8\x6d\x9d\xbd\xa7\xc6\xed\x19\x6d\xdb\x1b\x72\xda\xf3\x12\xd3\x5c\x33\x65\xce\x89\x2a\xad\xce\x48\xda\xf2\x2b\x52\x87\x70\xfe\x4e\x9a\x87\x8c\xb4\x25\x23\x35\x8a\xcd\xd5\x28\xea\x6b\xbe\xd2\xff\x3e\x90\x28\x27\x2d\x9d\xbe\x0a\x71\x13\x61\x33\xcf\x1d\x68\xf2\x8b\xaf\x6e\xed\xc9\x68\xbf\x75\xd4\x51\x30\x75\xba\x63\xe0\xfc\x5c\x31\x40\xfb\xa5\x5f\x9e\xfb\xb6\xa9\xaf\xb1\x30\x0c\xd2\xea\xb7\x54\x15\x4d\xd4\x18\xd2\xea\xa6\xf8\x3b\xa7\xa0\x78\xf9\xe1\xc9\xd4\x1c\x4d\x24\x61\xbe\x6b\x6b\x3f\xb3\xb9\xb8\x7c\xe5\x52\xdf\xe6\xd3\x7f\x78\x72\x18\x44\x2e\xd6\x54\x61\x2c\x2b\x5d\xeb\x77\x10\x92\xce\xc2\x62\x02\x41\x65\xf3\x84\xf4\x77\x1a\x7f\x42\x9a\xc7\xac\x9f\x40\x0d\x4c\xb3\x76\x7f\x77\x37\x36\xb8\x93\xb8\x51\xbe\xfa\xfd\x4f\x30\x49\x4d\xf7\xa0\xdf\x60\xb2\xfa\x22\x4a\x43\x45\xa8\x85\xf8\x06\xea\xcb\x72\x4d\x9a\x30\xe6\x1b\xd8\x98\x2b\x1a\xdb\xaf\xc6\x43\x72\xac\x87\x7d\x20\xc8\xeb\xbf\xff\x2d\x35\xbf\xc1\x98\xdd\x53\x6e\x48\x2d\x6c\x19\x18\xb7\xb8\xee\xdc\xee\xd2\x57\x74\x5b\x32\xea\xf3\x55\x65\xb3\xb7\xd5\xd4\x1c\x9f\x23\x74\x0c\x5d\x33\x36\xdb\x4c\x67\x4e\x4e\xd7\x8c\x9d\xfe\x55\x99\x1b\x86\xcc\x14\xe2\x99\x45\xfe\x9a\x87\xea\xb3\xb8\x41\x6b\x7b\x99\x39\x2c\xcc\x5a\xd3\x97\x97\xd7\x5f\x6b\x4f\x55\x68\x9b\x77\x76\x12\xaf\x82\x35\x2c\x2c\xbb\xac\xcd\xda\xbc\xd6\x64\x30\x34\xad\xb9\x8f\x17\x74\x13\x4b\x61\x5e\x57\x61\x51\x97\x23\x2e\x2e\xb7\x0b\x0f\xd9\x5b\x1c\x09\xf1\x39\xad\x39\x39\x2d\xf6\xb8\x78\x7b\xb3\x34\x17\xdf\xbe\xfc\x77\xce\x4d\xda\x9a\x8c\x6c\x64\xfc\xd2\x53\xa8\x6f\x8a\x21\x7c\x25\xbd\xc7\xdb\x36\xb6\xbd\x53\x3b\x58\x00\xa2\xfd\x0a\xec\x13\xee\x9f\x79\x66\x4f\x2d\x6f\x7d\x64\xb8\xed\xf8\x78\x5e\xd1\xec\xb9\x2e\x1a\xa3\x0b\xd0\x74\xfe\x67\x67\x62\xe0\x7b\xd9\x03\x74\xf8\x08\xe4\xda\x55\x32\xe5\x4a\x33\xd4\x8d\xf7\x43\xfe\xc2\x83\x33\x75\xcd\x45\x9b\x4f\xb6\x76\xde\x39\xef\x74\xed\x7b\x62\x68\xf0\xd4\xaf\x1e\xea\x85\x09\x38\x90\x60\xab\xcd\xcc\x29\xdf\xbd\x29\xdf\xda\xbe\xa5\xb0\x70\xa6\x25\x8b\xca\xc2\xfa\xcb\x7f\xe3\xf6\x71\x29\x1b\x6d\x6e\x37\x70\xa3\xfb\x82\xa5\x7d\x39\xee\xb9\x7d\x9a\xaa\xa9\xaa\xaa\xe9\x1a\x0d\x80\xa6\x6a\x9a\x7c\xaa\xd6\x4c\x47\xa5\x97\x67\x65\x95\xa5\x47\x45\x19\xcb\xb3\x4c\xe5\xe9\x91\x50\x55\xb7\xab\xc7\x62\xe9\xd9\x55\x77\xac\x6e\x57\xaf\xc5\xd2\xbb\xab\x2e\xc0\xd2\x55\xaa\xd5\x96\x76\x59\xee\xb5\x76\xd3\x0f\xdd\x56\x09\xd7\x34\x4d\x2a\xf3\x1a\x17\x7d\x95\x2c\x94\x13\x59\x88\x5f\x9b\x7e\x0f\x2a\x82\xf1\x5d\x55\xbd\x33\xb4\xbe\x0d\xfc\x4f\xb8\x3b\x65\xdb\x6e\x6e\xab\x21\xf6\x1e\xee\x4e\x9c\xd5\x34\x55\x58\x38\xdd\x94\x85\x27\xf9\xe9\x96\xe6\x29\x7e\xcb\xdc\x13\x8d\x44\x36\x37\xd9\xe2\xe3\x6d\x4d\xd6\x9a\x8a\xaa\xaa\x2f\x7e\x83\x3d\xbb\x82\xf4\xc1\x31\xd2\x07\x85\xe4\xd9\x5a\x49\xce\xdd\x28\x91\x39\x63\x94\xb8\x71\x44\x22\xf6\x6b\xd4\x94\x59\x93\x63\x33\x8b\x34\xea\xc2\xac\x04\x3c\x8d\x33\x5d\x9b\x1c\x79\x63\x2e\x23\xb4\x97\xba\xfa\xb2\x9a\xa6\xf3\x1c\x93\x2d\x56\xbc\x19\x27\x5b\xcb\x75\xda\xd2\xec\x84\xd4\xdc\x1a\x5d\x23\xbc\x16\xa6\xb2\xa8\x55\xd6\xd4\x70\x92\x54\x3f\xc5\xd6\x9a\x9b\x94\x90\xdb\xe6\x28\xed\x8e\x8e\xe8\x6b\xcc\x25\x92\x20\x21\xaf\xb3\x40\x6d\x27\xf4\x92\x1a\xbb\x3a\xcd\x91\x12\x82\x30\x18\x10\xe2\x1e\xe4\xa2\xa8\x6c\xa3\xfa\xea\x15\x6c\x97\x0f\xb6\x45\xb7\xc2\xbe\x5d\xfc\x07\x02\xb7\x34\x7b\xf7\x4e\x8b\x8b\x3c\x9c\x98\x17\x57\x41\x95\x0c\x11\xdd\xaf\xbf\x5e\x86\x63\xdc\x22\xec\xb3\xd0\x3e\x69\x26\x7d\xb2\x8b\x3c\x47\x77\x95\xec\x93\x5f\x2b\xfb\x98\xab\x9a\xce\x0e\x1a\xfa\x0f\x63\xd9\xf0\x0d\xf1\x96\xa4\xe4\x36\x53\xe1\x68\xb5\x41\x5b\x3d\x5d\x9e\x33\x54\x67\x16\xa6\x02\xfb\xaa\x3a\x7b\x21\xde\x52\x91\x96\x53\x97\x0a\x27\xe0\x58\xdf\xbb\x8a\x28\x75\xd9\x20\xd9\x2d\x56\x19\x48\x2a\x52\x5b\x59\x15\x8c\xb6\x18\x4a\x32\x62\x20\x21\x46\xb2\xc9\xd5\x91\xe7\xef\xe7\x48\x70\x31\x32\x53\x7b\x67\x92\xc2\x23\xf7\x64\xb2\x6b\xeb\x40\xe7\x28\x97\x2a\xbb\x4a\xec\xf9\x07\x9d\x7d\x3c\x28\x75\xc6\x59\x38\x58\xa6\xd6\xd7\x8c\x17\x97\xcd\xd6\xa7\x03\xe4\xce\xdd\x3f\x75\xaa\x78\x2c\x12\xe2\xb3\x2b\xd2\xf4\x25\x99\x31\xb1\x99\xa5\x5c\x62\x0f\xbe\xfd\x70\xba\xd5\x50\x35\x9c\x9b\x4b\xf6\xae\x04\x6b\x53\x56\x31\xfa\xe0\x56\xa7\x78\x47\x91\x39\xd3\xe4\xca\x49\x4c\xb4\x94\x69\xf5\xa5\xa6\x38\x69\x9e\x16\x20\xc4\x9d\xe6\xa2\xae\x93\x75\xdc\x69\xf1\xf6\x79\x20\x58\x38\xdc\x81\x7f\xe0\x36\xe0\x4f\xf6\x30\x59\xe7\x9b\x5b\x2a\x64\x47\xb5\xe8\x81\x97\xa3\x38\x8c\x05\xf0\xd1\xac\x79\x89\xb9\x04\x6a\xba\xba\xb2\x4d\x2a\x92\x18\x58\x6e\x76\x49\xa5\x8f\x83\xe5\xa6\xa5\xdc\xb4\x00\x0a\x6e\x0a\xa9\xaa\x28\xcc\xb7\x98\x0d\xba\xa4\x84\x74\x6a\x6d\x02\x36\xcd\xa9\x3d\xcf\x27\x82\x75\xba\x8f\x2c\x82\x97\xc0\x55\x50\xde\x03\xe6\xe6\xe9\xdc\xdc\xe9\x96\xec\x98\xf4\x7c\x55\x81\x2b\xbd\x6e\x24\x27\x67\xa4\xce\xd8\xa6\xb2\x95\xa5\xaa\xcb\xac\x29\x29\xb6\x32\x75\x6a\x99\x2d\x25\x3a\x21\xb3\x20\x39\x25\x3f\x33\x3e\xde\x94\x9f\x92\x5c\x90\x19\x8f\xab\x4a\x7b\x94\x31\x23\x35\x79\xed\x8e\xf8\x38\x47\x7b\xbe\xa6\xc8\xac\x09\x52\xf6\x94\xe6\x10\xd1\x9a\xe0\x68\x11\x07\x34\x76\x92\xc0\x8d\xfc\xa3\xb5\xab\xc3\x88\xe3\x06\x4e\xa4\x58\xc8\xcb\x93\x6a\x51\xa5\x64\xab\x48\x42\xe7\x6c\x24\xc9\xb4\x7f\x91\xb9\x93\xe2\x9b\x3b\xf1\xa1\x54\xe6\xe6\xe4\xdc\x50\xe6\xda\x23\x88\xc4\xb0\x6f\x68\x07\xbc\x73\xe6\x92\x5f\xea\x44\x49\xc1\x70\x85\x26\xad\x6e\xb2\xa4\x72\x73\xb5\x16\xc0\x3e\x75\x71\x2a\xec\x8e\x92\x91\x48\x65\x66\xb9\x91\x4c\x87\xd8\x98\x4c\x67\x13\x1c\x39\x98\x6e\x26\x71\x7d\x79\x79\xe3\x0d\x99\xe6\x8e\x95\xca\x92\xd1\x8b\x5b\xf2\xa1\x13\xf8\x62\xe2\x69\x69\xc8\x4b\x49\xb6\x57\xea\x74\xa5\x96\x04\x69\xee\x94\x11\xff\xfb\x23\x5c\xe4\x15\xec\x26\x9b\x38\x8f\xb8\x2f\xe0\x31\xe6\x6d\xa7\xf3\xe5\x8f\xfc\x0c\x77\x4e\x76\x2b\xe3\x51\xd1\xa3\x0e\x29\xce\x3a\xc1\x93\x3f\x1e\x03\x35\x20\x71\x3c\x37\x84\x3c\xbc\x10\x85\x02\x0b\xaf\xf6\x9d\xf6\x04\xc5\x8f\x22\x9e\xe3\xf8\x2e\x4f\xc4\x09\xcf\x35\x11\x10\x67\x5a\xb4\x41\xeb\x95\x05\x72\xb5\x5c\xea\x04\xdf\x6b\xc4\x48\x04\x7c\x5a\x0c\xe7\x7f\xdb\x57\x87\x76\xc4\x1a\x49\x0b\x48\xa8\x69\x4c\x3a\x49\x99\x92\x9b\x11\x5b\x21\x98\x74\xe1\xc9\xca\x90\x10\x65\x72\xb8\xde\x24\xbb\xf5\xf5\x6f\xa8\x72\xd3\xe8\xd9\x94\x14\x87\x41\xa9\x34\x38\x88\x8b\x81\x9e\x0b\x57\xc5\x86\xd8\x11\x06\x37\x7f\x80\xdb\x25\x7c\x91\x7a\xa3\xc8\x38\x84\xf8\xf3\x80\xa9\x1c\xb1\x46\x71\x6a\xbd\xc7\x8f\x2c\x57\xe3\x8b\xf3\x0b\x97\x4a\xef\x17\xec\x39\x66\x4d\x0a\x86\x6e\xfe\x1c\x98\xa3\xc4\xef\xae\x39\x67\x53\x94\xba\x41\xc7\x32\xc2\x70\x94\xff\x26\xf7\xa2\xec\xe3\x34\xff\x3a\x29\x27\x33\xf9\x46\x32\x9f\xf9\x40\x58\xdd\xbd\x2e\x10\x7a\x94\x7b\x11\x1b\x6b\xc7\x0b\x0a\xc6\xeb\x8c\x78\x82\x1b\x68\x69\x1a\xe0\x37\x61\x32\x29\x53\x35\xf6\xac\xec\xe4\xf4\x6c\xbe\x0c\xc7\xa6\xe7\xa9\x53\x6c\x16\x6b\x72\x9a\x85\x13\x1e\xb6\x36\x91\x17\x9e\x24\x23\xaf\xac\xad\xab\xf8\x47\x6a\x81\x91\xe8\xed\x71\xb6\xb4\x50\x15\xf9\x14\x9f\x1c\x97\x97\xc6\x6c\xfb\x7a\xf1\x22\xbe\x84\x16\x3f\x10\x47\x41\x23\xb8\xa9\x89\xe8\xd2\xb6\x6d\xe2\x45\xf8\x2e\x1b\xfb\x13\xe2\x7e\xfc\x0b\x94\x8e\x62\xc9\xd8\xfb\x33\xdc\x2e\xd1\x73\x7c\x39\x35\x08\x7d\x8b\x94\x77\xb7\x44\x57\x94\xa1\x84\x84\xec\x32\x7d\x4e\x63\x62\x4c\x54\xbe\xda\x6c\x51\x6a\x4d\xd1\xe9\xb1\x85\x65\x55\x6a\x43\x89\x51\x19\x17\xde\x16\xa8\xc4\x38\x43\x9f\x94\x6b\x31\x45\x49\xf3\x6a\x4a\x74\x71\x7e\x68\x17\x8a\xa0\xd6\x97\x00\x00\xec\x0f\x08\x30\x35\x37\x01\x5e\xf2\xa6\x85\x51\x21\x0f\x77\x8b\x56\xcb\x93\x0a\x6a\xaf\x3c\x5c\x02\x5a\x71\x7e\xa0\x73\x2d\x11\x70\x41\x62\x48\x64\x7e\x24\x25\x67\xd8\xf5\x3d\x09\x4c\x30\x49\xf3\x2b\x77\x59\xbe\xc7\x74\xb7\xdb\xc4\x3a\xbe\x94\x6f\x24\xb2\xa5\x1d\x6d\x26\xba\xdb\x58\x4f\xad\x33\x2f\x89\xa3\x3e\x1a\x22\x35\x58\xa1\x04\x6c\xce\xf0\x66\x6c\x7a\x5d\x2f\x47\x7c\x2c\x4d\x4a\x15\xa4\xea\xa5\x70\x71\xdf\xd4\x03\x26\xc4\x7d\x3a\x90\x9c\x2f\xfd\x78\x46\x36\x40\x29\x09\x61\xa9\xab\x4c\xcc\x8c\x4c\x35\xc5\xbf\xd4\x42\x68\xe2\xbb\x6f\x7f\x6d\x84\x98\x73\x2a\x53\xf3\x5c\xe9\x29\x1a\x45\x82\x2e\xb2\x65\x1c\x83\x73\xee\x5c\x7b\x5d\x05\x74\xb8\x5f\x88\x8d\xd6\x56\xe6\xa8\x6c\x5d\x4b\x45\x55\x27\x96\xaa\xd3\x6a\xc6\xf2\xc5\xc3\x44\x2a\x4d\xe6\x3a\x26\x1b\xcd\x00\xa6\xa6\xc9\xfc\xfc\xc9\x46\x13\x70\xdf\xcf\xdc\x5a\x19\xed\x22\x18\x89\xc8\xe8\xe2\xcc\x38\x8d\x32\x10\x54\x55\x73\xf5\x24\x17\x7e\xb6\xb6\x66\xba\xc2\xda\x55\x95\x13\x11\x55\x9a\xa9\x72\x64\xe9\x14\x19\x67\x07\xa3\x1b\xf7\xf7\x5b\x22\xd7\xe3\xb9\x40\x43\x7e\x9d\xd1\xe6\x32\x2b\x93\x0b\xbb\x72\x2d\x55\x99\xd1\xf8\x88\xad\xbb\x44\xad\x2e\xe9\xb6\x91\x2c\x91\x65\x1a\x4d\x59\x5f\x0e\xdb\x43\x3c\x4f\x30\xdc\x3f\xe6\xca\x91\x92\x8c\x7b\x20\x1d\xf7\x88\xeb\xf9\x15\x9f\x7f\xef\x3a\x62\xc5\xf7\xb8\xf2\x1b\x70\x2a\x22\x4c\xfd\x37\xf8\xf7\xc2\x1b\x94\x93\x98\xbe\x53\x7e\xcc\xcf\x15\xc1\x0c\x23\x20\x39\xcd\x99\xcf\xfc\xbf\xe1\xef\x6b\xe2\x01\xe8\x4b\xcf\x36\x1b\x8d\xe6\xec\x74\x9a\x8f\x91\x7b\x1b\xce\x12\x29\xa8\x55\xdb\xed\xd2\xbc\x79\xfe\xf2\x6f\x49\x7e\xb1\x18\x14\x45\xea\x16\xc2\xe4\x91\x2f\x54\xca\x07\x6a\xc5\x69\xb1\x39\x9d\xc5\xaa\x62\x87\x39\x2a\xb2\xea\x48\x55\xcf\xb6\x9a\x64\x59\xcc\xfb\x9b\x3a\x17\xcb\xe3\x03\x15\xe1\xf2\xe1\x94\xa4\xac\xd1\x7b\x67\xf9\xb3\x14\xf7\xf0\x23\x52\xb7\x5f\x0a\xcf\x62\x19\x99\x66\xf4\xfb\x02\xdd\xbb\xb3\xef\xb1\x7f\x61\x71\xbd\xe4\xbb\x99\x3f\xe1\xcb\xd9\x0f\x88\xe7\xe8\xc2\xe4\xa3\x46\xa5\x4b\x16\x4b\x81\xae\x08\x95\xc8\x10\x64\x14\x92\x74\x43\x32\x54\x18\x5c\x85\x47\x5a\xef\xda\x5a\x59\xb9\xf5\xae\x56\xf1\x9b\x60\xce\x9f\x69\xb3\x64\xb7\xcd\xe6\x93\xcf\x6f\x8b\xc4\xc3\x05\x19\xdd\x87\x7b\xfa\x0e\x74\x18\x60\x02\x28\xd1\x80\x73\xa8\x24\xd9\x93\xdb\x79\x59\xec\xe0\xb7\xf2\x95\xc8\x48\xda\x1d\xc5\xc6\x84\xae\x06\x11\x60\x05\x62\x0e\x52\x6e\x00\xb8\x72\xa0\x06\xce\xc4\x79\x40\x64\xdf\x28\xea\x2d\x33\x29\xee\x05\xc7\x1e\xf1\xf0\x4f\x82\x93\xb4\x59\x49\x8a\x18\x05\x17\xa2\x0b\xcb\x69\x2e\xca\x8a\x7a\x51\x7c\x62\x1f\xdc\xfb\xf9\x10\x55\x46\xae\x2e\x54\x1b\x26\x44\x64\xf3\x95\x16\x57\x8f\x41\x7c\x0c\xbb\xdc\x36\x31\x22\xb1\x2c\x4f\x07\x3c\x9e\x14\xe4\x99\x75\x43\x16\x38\xee\xde\xce\xf9\xc1\x0b\xa9\x15\x8e\x54\x1e\x8f\x0a\x72\x16\xdb\xcd\xb0\x56\xcf\xd0\xfc\xde\x54\xce\xa9\x39\xc0\xe6\x8d\xcd\xbf\x2e\x6e\xd9\xdb\x1d\x6a\x15\xa4\xaf\xc2\x85\x29\xc2\x86\x41\x73\x89\xef\xd9\x0e\xf1\xba\xed\x51\x31\x21\x3c\x64\x34\xcf\x97\x13\x9c\x48\x4c\xf3\x81\x3e\x8b\xa9\x6b\x77\x93\xf8\x43\x7c\xc6\xbd\x45\x78\x06\xac\xe3\x77\x8e\xe6\x4f\x77\x57\x46\xa9\x9e\x3a\x46\xc3\xb1\x63\x94\x45\x4e\x12\x8e\x5d\x39\x53\xab\x87\x09\xd0\xd4\x6e\xa9\xab\x5d\x70\xe9\xa5\xfe\xfa\x36\xa9\xd7\x73\x14\x7b\x46\x6d\x30\x01\x40\x8d\xbb\x5e\xab\x28\x0f\x2c\x33\xb4\x8f\xb6\xd1\x1b\x78\xe7\xa3\xca\x01\x50\x13\x13\x23\xcd\x92\xfa\xaf\xe3\xee\x9f\xe3\x9a\x73\x12\x93\x22\xe3\x86\xb4\xb9\x13\xd8\x1e\xe9\x59\x82\x8b\xcc\x13\x5e\x21\xf3\x50\x45\xed\x31\x31\xc1\x9e\x39\x7d\x0d\xdc\x98\xbb\x6a\x86\x3f\x0b\x5f\x23\x90\x26\x8b\x65\x52\xab\x30\xee\x2c\xa9\xd9\xd1\x6b\x03\x2c\x3e\xcc\xf7\x53\x70\x65\xff\x13\x37\x8c\xee\x78\x62\x4e\x6c\x67\x62\x67\x27\x99\x60\x62\x6b\xe2\x89\x6d\xdb\x13\x4f\x6c\xdb\xb6\x9d\xec\x38\xd9\xb1\x6d\xdb\x3e\xf5\xfb\x3f\xcf\xb9\x38\x75\x6e\xdf\x8b\xb7\x6b\x55\x75\xad\x5a\xdd\xbd\x3e\xdf\xf6\x17\x2a\x5a\x36\x0b\x6c\x3c\x7b\xc2\x26\x65\x79\xd6\x93\xe4\xbc\x9c\x88\xd0\x63\x2b\x56\xd8\x6e\x60\x86\xda\x8d\x7a\xa9\x9c\xd6\xa0\xac\x4a\x8d\x69\x83\xe9\x61\x5a\x87\x94\x67\xce\xfb\xc4\x3a\x7d\x04\xe4\x59\x59\x40\x8d\x54\xf4\x21\xd0\x72\xa5\x86\x5c\xa9\x36\xd6\x2e\xe6\xdc\x07\xca\x3f\x66\x6a\xdc\x78\xec\xb0\x75\xe6\xb8\xa8\xde\xbc\xe3\x9e\x55\xd8\x29\xe7\xc4\xc0\x31\x1f\x29\x7c\x74\xa3\x7c\x6f\x38\x51\xd4\x9b\x40\xcd\x55\xef\x84\xd6\x53\x13\x3a\x78\xfd\xb2\x3d\xcc\x01\x36\x3e\x83\x7a\xf4\xd6\x64\x57\xfd\x8e\x0e\x3a\x5e\xb8\x3e\xb9\x4b\x09\x9b\x12\x1e\x97\x54\xf7\x4d\x67\x1d\x68\x0c\xd9\x82\xee\x4e\xe8\xd5\xa4\x48\x7f\x24\x11\x43\x94\xdd\x33\xf8\x79\x66\x99\x11\xa9\x4f\x87\xe7\x99\xc8\x33\xd6\x50\x0f\x74\x9d\x91\x44\x52\x30\x04\xab\xbe\xce\xd6\x21\xb8\x7c\xee\xdf\x2c\x72\xf6\xcd\xf3\xa8\x70\x39\x5c\x15\x7e\x87\xaa\xd6\xe8\x6e\xa1\x29\xe3\xd9\xc2\x2f\x8b\x66\x2c\xab\x94\x5e\xf9\x68\x2b\x68\xe2\xb7\x37\x91\xe8\xae\xed\x79\x78\x5c\xd9\x65\x09\x76\x97\xd2\xcb\x4a\x39\x14\x54\xe5\x5a\xd2\x8f\x04\x57\x42\x6b\xba\xfb\x3a\x3a\x6b\x49\x07\xd5\xf9\xe6\xe7\x9a\x98\x75\xd4\x39\x56\x6f\x4e\x3b\xbf\xad\xbd\x21\xc4\xf8\xed\x49\x96\xf9\xa5\xb2\x35\xf2\x91\x93\xf5\xf7\xbc\xcd\x08\x66\xb9\x65\xbe\xce\x35\x64\xd0\x3e\x55\xbb\xf7\x73\xe4\x21\x9e\x90\xcb\xa4\x62\xcc\x96\x25\x51\x57\x0d\x65\x4f\x0c\x79\xff\xbb\xff\xfa\x09\x5d\x91\x1d\x35\x26\x99\x11\xc1\x70\xe3\xb8\x6a\x5a\x94\x9e\x6e\x5a\xb3\xf5\x4a\xcf\x1d\xf2\x6b\xec\xa7\x95\x38\x87\x0d\xbd\x1f\xf7\xfb\x34\x0b\x5b\x87\xf2\xbc\x97\x45\x11\x7f\x93\x77\xe3\xfc\x6c\x7c\xca\x7e\x66\x47\x57\xdb\xd3\xfa\xa1\xb7\x6c\x01\x75\x71\x66\x9b\x28\x1f\x3b\xa7\x1c\xce\x8f\xb1\x96\x78\xf8\xb9\xae\x2e\xad\x2d\x65\x3d\xf4\x81\x41\xd9\xd6\x9e\x0a\xb0\x4c\xc4\x58\x5a\xbb\x53\xa9\xb7\x47\x2e\x39\x79\x7b\xbe\x17\x9b\xdd\xf6\x79\x6a\x97\xf9\xa3\xb5\xd9\xa0\x77\x81\x92\x7a\x4b\x5b\xbd\x27\xd8\x24\xb5\x97\x77\xc9\x51\x66\x23\x99\x97\x31\x68\xc8\x92\x7c\xa7\xfe\x5e\x97\x5f\x6a\xb5\x56\xf4\xe6\xd1\xb8\xb2\x21\xfe\x24\xbd\x5b\x38\x5c\x79\xad\x8f\xe0\x6f\xa5\x9a\x7b\x06\x44\x37\x95\x52\x49\xe8\xd6\xf1\xe1\x98\x65\x73\xb3\xe9\xb1\xf6\xa3\x0b\x49\x90\xf7\xdd\x68\x5f\x73\xf0\x2d\xc8\x06\x2f\x83\x89\xe1\xf7\x55\x2a\xb5\x6b\xbb\x3a\x4e\xb6\xc6\x18\xb3\x6e\xa7\x5f\xa3\xb5\xfa\xca\xce\x48\xe2\x7d\xf3\x85\x5c\x54\x07\x2f\x1b\xcd\x8e\xbd\x43\x85\xcf\xfb\x79\xaf\x27\xec\x93\xce\x2e\x1c\x9d\x7a\x8a\xf3\xca\xe0\x4b\xff\xcb\x9b\x38\xcd\x65\xce\xb8\xca\xd0\x4c\xfb\x47\xc8\x7c\x55\x6c\x8f\xe4\xeb\x93\xa6\x59\x2c\x17\x43\x22\xa6\x3d\x97\xbd\xc0\xdf\x23\x68\x10\x05\xc3\x75\xea\x25\x02\x00\x5e\xc8\x84\x79\x89\x06\xea\x54\xec\x1e\xd6\xa2\xf0\x8f\x1b\x32\x50\xa6\x20\x48\xb3\x56\xa8\x28\x32\xd8\xc8\xdb\x5c\x93\x44\x17\x69\x23\x18\xfa\x58\xd2\x10\x2d\x8a\x2c\x89\xd7\x46\xb0\x13\xa7\xa0\xc0\x27\xeb\xf9\x68\x7e\xe7\x6f\xfc\x28\x7e\x57\xb3\x83\x84\x04\xa3\xa8\x95\x3a\x41\x85\x84\x0c\x86\xda\xdc\x9b\xbc\x02\x96\x1d\xb1\xf9\xc2\xbf\xad\xb7\x79\x1c\xa7\x12\xf0\x23\x36\xd3\x9a\x14\x4e\xf9\x38\x37\xd0\x69\xf5\x36\x01\x96\x6c\x4b\x23\x75\xa6\xbb\x60\x86\xe8\xdf\x17\x87\xef\x56\xb2\x77\xbf\x43\x36\x53\xf7\xfe\xd3\x48\x19\x53\x7c\xac\x20\x93\xee\xbf\xd1\xca\x7d\xc1\x49\xa2\xef\x02\x81\x26\xc7\x18\x1f\xd1\xfc\x82\xfb\x7c\xc3\xdd\x5f\x90\x4f\xf6\x7a\x7d\x39\xe4\x5b\x22\x27\x3b\xe3\x89\x73\x29\xb7\x59\x74\x85\xef\x17\x89\x3e\xfe\x5c\xb8\x2f\xb4\xe7\x08\x54\x5a\x94\x82\x8b\x9c\x0c\x59\x35\x3f\x80\xe9\xc6\xb8\xd4\x6e\x41\x71\x17\x11\x82\xac\xff\xd8\x79\xd2\xa7\x76\x48\xf2\x1e\x3d\xde\x47\x4b\x5a\x96\x96\x0c\x9e\x9f\x63\xae\x6c\x87\x5a\x5f\x2e\x49\x48\x9e\xde\xf6\xbc\xe8\xa7\xaa\xb0\x21\xb0\xaa\x04\x9e\xbe\x54\x9f\x88\x00\xaa\x7f\x34\xbf\x9e\xc0\x13\x19\x4f\x42\xbf\x85\xd0\xbc\x44\x44\x8b\x7e\x20\xcc\x26\x1a\x8a\x40\x83\x36\x09\xd0\x73\x60\x18\x96\xad\x7e\x79\xda\x65\xd0\xc6\x19\x72\x64\x34\x51\x56\x17\x3f\x99\x72\x9d\x0d\xcd\x33\x16\x3f\xe9\x72\x98\x18\x85\xa6\x7d\x65\x39\x5d\xf2\x75\x66\xc0\x65\x7c\x2d\xf5\x4c\x8d\x4d\xbc\x6c\x6c\x65\xae\x81\x2f\x8e\xaa\x3f\x5e\x25\x2e\x24\xdb\xd4\x0a\x18\x7d\xb6\xf7\x55\xb9\xf5\x5c\x6e\x03\xa8\xd2\x5d\x0b\x4f\xc8\x6c\x5c\x27\x73\xe8\x6d\xb5\x3f\x67\xc1\x2b\x5a\x73\x15\x5f\x12\xce\xfb\x0c\xd2\xc7\x3c\x13\xce\xed\x95\x88\x24\xe1\xb3\xbd\x2b\x38\xbc\xa1\xe7\x07\x3b\xc5\x32\x9b\xca\x17\xae\xa8\x25\x04\xab\xc3\x58\xf8\xb5\xa2\x90\x45\x93\x36\xed\xea\xdc\x7b\x90\xa4\xbb\x43\x08\x25\x69\x18\x83\x8c\xbc\x1c\xdf\xa2\x9b\x82\xfa\x3e\xed\x19\x0c\x1c\xc7\xe0\x5c\x9f\x06\x0e\x85\x6d\x1a\x1e\x7c\x5f\xd9\x33\x4c\xc3\x0c\xeb\xf2\xa6\x68\xaf\x8e\x9d\xaf\xee\x95\x88\xb8\x09\xf9\x9a\x03\x9e\x38\xbb\xeb\x98\x1e\x6c\x77\x2c\x64\x2c\xb1\xb9\xbe\x5b\xa0\x46\xeb\xe8\xb0\xd5\xda\x81\x1b\xc9\xe4\x84\x87\xb8\x0f\x24\xa2\x59\xc0\x87\xff\xdc\x7f\x87\x37\xda\x5e\xdd\xbb\xae\xaf\xb7\x94\x9a\xf4\x93\x69\xc4\x8d\x69\x3a\x57\xab\x79\x6e\xde\x3b\x0f\x24\x63\xb6\x54\xf6\xff\x6b\xf2\x1d\x1f\x6d\x4a\x1e\xe4\xb4\xa5\xc2\x8b\x53\xbb\x95\xfa\x59\x73\x83\xf7\xb3\x26\x93\x9b\x41\xd3\x90\xd1\xfe\xd1\x39\xc2\x73\x13\xac\x4a\xee\xe8\x64\x0d\x2e\x65\xb1\x3d\xde\xf9\x33\xdf\xe4\x60\xe3\xce\x82\xa8\x7b\x71\x98\x3e\x6a\x80\x13\x02\x07\x26\x80\x75\x18\x12\xe7\xb1\xa5\xdf\x2e\x7d\xa7\x4d\x61\x27\x0f\x73\x75\x5c\x96\x42\xb5\x07\x40\x48\x64\x98\xf7\x48\xa0\x6e\xf4\x00\x41\x7f\x70\x08\x10\x1a\xe1\xdf\xd5\xac\x60\xdc\x34\x71\x3c\x26\xc2\xe8\x02\xe1\x98\xc3\xe1\x63\xd6\xfe\xca\xed\xe1\xe8\x69\xf8\xed\xc1\x57\x63\x9c\x75\x04\x2f\xae\x38\x9e\x15\xa1\x27\x28\xf3\x36\x3b\x4d\x21\x20\x3a\xa5\x4b\x66\xeb\x82\x03\xb1\x6f\x25\x4b\x2e\x19\x1c\xc7\xf2\xf8\xd4\xce\x68\xb0\xf4\xd7\x27\x6f\xcf\xdf\xdc\xe3\x96\x97\x6a\x6e\x86\xdd\xd1\xb3\xa1\x62\x53\x71\xfb\x7f\xd7\xb9\x74\x2a\x1a\x22\x7c\x97\x85\x35\xb0\xd4\xb4\xa5\xe7\x97\x0a\x5a\x19\xb0\x7c\xe6\x08\x4f\x2b\xd6\xef\x87\xdf\x33\x21\x1b\x29\xf8\x48\x37\x83\x31\x70\x6d\x70\xf5\x4e\x02\x55\x2a\xb3\x30\xbf\xb1\xbc\xb7\x7e\x10\x4d\x39\xb0\xbc\x1a\xf1\x4b\x18\x36\x6b\xc1\x80\x7d\x9a\x20\x31\x29\x58\xa8\xb5\x49\xe6\x68\xbb\x42\x39\x67\x89\x77\x7b\xbe\x65\x77\xc7\x0a\xd4\xb1\xf9\x2c\xfa\x0b\xac\xe3\x30\xf7\x83\xd0\x8a\xff\x21\x1f\x05\x63\xa8\x94\xea\xb3\x7d\x53\x19\xff\xab\xb5\x03\x4f\x13\xb9\xf4\x09\x67\xf8\xbe\xfb\xd9\xd9\x1b\xe4\x2f\xe0\xa0\x9c\x93\x11\x2e\x31\xf8\x9f\xdc\xa4\xe2\x03\xd9\xff\xb0\x6c\xa9\xb9\xf7\xc3\xef\x35\xf9\x21\x4d\x1f\xd9\x06\x84\x87\xf2\xcb\x25\x7b\x78\x72\xee\xd3\x3d\x8d\xcf\x31\xe6\xdb\x26\xb6\x36\x40\x9b\xc6\xce\xbf\x00\xf4\x68\xef\x7c\xf2\xfe\x8e\x92\xca\x7e\xd7\x1e\x38\x92\x99\xf0\x86\x51\xf9\x95\xaa\xc5\x95\xff\x3d\x3b\x2e\x68\x65\xc0\xf5\xfa\x00\xa3\xe1\x4f\x1f\x08\x63\x68\xfc\x6f\x9c\x84\xd5\x61\x19\x66\xaa\xb1\x9b\x5d\x80\x54\x02\xaf\xe0\xc8\xf0\x88\x7b\x94\x12\xcb\x4f\x78\x95\xc1\xe6\x5b\x25\x0c\x76\xe9\x3e\x24\x32\x59\x46\x82\x35\x04\x85\x6f\x06\x9d\x95\x50\x86\x8d\xa6\xb2\x79\x0d\x24\x33\x1b\x22\xfa\x6c\x07\x2d\xa6\xb7\x71\xf1\x66\x85\x20\x42\x34\x7e\xa8\x3f\x7a\x08\xb2\x02\x89\x47\x9d\x14\x64\x13\x14\x86\xbe\x3c\xa2\x00\xc9\x4f\xe0\x68\x05\x17\x5c\x01\xff\xb2\x9e\x6f\xf6\x7e\x53\x81\x36\x82\x1f\xc2\x41\x6c\xf3\x43\x25\x05\x39\xef\xaf\x60\xb2\x89\x0c\xd0\x0e\x32\x14\x8a\xdc\x0e\x0b\xa6\x54\x77\x87\x08\xdb\x58\xc2\xc7\xc1\x52\x5e\x66\xda\xfb\x73\x0c\x92\xfb\x15\xb6\x4b\x53\x8b\x12\xc3\x66\x4c\x7f\x7b\x3a\xb6\x86\xfa\x15\x9a\xc1\x1c\xe9\xa7\x11\xcb\xe7\xdb\xef\x0f\xa5\xff\xcc\xaa\x55\xdc\x48\xbc\x78\xc4\x2f\x99\xb6\x60\x7d\xca\xc5\x7b\xfd\x94\x5e\xd7\x57\x30\xeb\x3e\x93\x20\xeb\x41\xe9\xf9\x4a\x4f\xe0\x25\x54\x09\xdd\x2f\x51\x44\xf1\x68\x4d\x10\x23\x25\x87\x9c\x53\x30\x94\xcd\xe2\xb1\x1c\xd7\xda\x75\x8f\xd9\xdf\x14\x8d\xb5\xa2\x1d\xe6\x25\x38\xe0\xa5\xdb\xc7\x34\x26\x56\x6d\x90\x34\x0e\xbb\xf7\xd9\x73\x44\x8f\x81\x5c\xc2\x81\x54\xf9\xe7\xb9\xd8\xd2\xe7\xde\x2c\x8c\x92\xe8\x27\x7e\xfb\xc3\x0e\x6d\x2c\xf0\xfd\xe0\x48\x52\x37\x63\x56\xf9\x39\x81\x54\x82\xa8\x1a\x8e\xa8\x11\x40\xb4\x49\x8a\x52\x83\x4c\x98\x1e\xb3\x47\x45\x66\x77\xf6\x2a\x34\x52\x92\x17\xcd\x7d\x8a\x8b\xb8\xa1\xf7\x49\x3c\x5a\x51\xec\x90\xe8\xe4\xf7\x12\x43\x59\x73\x31\xa7\xfc\x6c\x44\xf9\x94\x0d\xd9\x76\x98\x10\xd3\x82\x10\x55\xd5\x2b\x88\xf8\xc2\x5d\xfa\x4e\x2b\x28\xee\x68\xc7\xc7\xc9\xdf\x28\x78\x08\x63\x59\xf0\x43\x93\x40\x40\x7e\x35\xcf\x41\xda\xc7\x27\xf3\xf4\x97\x49\x69\x3a\x78\x39\x84\x0a\x4d\xe2\xa7\xd5\x30\x3d\xa5\x44\x70\xff\xcd\x4f\x87\x79\xb7\x30\x89\x68\x77\xb8\xdc\x3a\x31\xb5\x34\x07\xa8\xe7\x8c\x48\x53\x0a\x27\xc7\x82\xb6\x93\xd3\xb1\xb4\xcd\x64\xa7\x45\x14\x14\x0a\x19\x3d\x2d\xc4\x8d\xf5\x93\x6f\x78\x99\x75\x87\x4e\x4b\x6d\xd1\xcc\x55\x02\x5d\x62\xdb\xba\x06\x3a\x86\x86\x03\xfc\xb5\x6f\x60\x07\x46\x3a\x53\x21\x5e\xe5\x18\x68\xd8\xf0\xf6\x86\x0f\xcd\xf7\x02\xa2\x7d\x1a\xde\x87\x51\x92\xd9\x0c\x1a\xd0\x03\x3e\x36\xde\x42\x17\x0b\x95\xa9\xa8\x72\x4a\xb6\x88\xc4\xd3\xda\xba\xf3\x6e\x7d\xd4\xfb\x86\xd9\x73\x8a\x60\x07\x8a\x5e\x2a\x1a\x90\x87\x82\xb9\xd8\x0f\x12\xa7\x22\x33\x81\xcf\xf9\x12\x57\xd0\x5b\xa8\xa7\xce\x23\x2d\xeb\x79\x61\x51\x79\x69\x67\x48\x79\xd2\xf0\xd7\x17\xd4\xaf\x2f\xe8\x02\x8d\xf9\xd6\x13\x6b\x53\x70\x23\xb9\x8e\x93\x17\x06\x8f\x93\x99\x3d\xce\x38\x56\x1c\x3a\xba\x3d\x17\xde\xc9\xb6\xda\xcc\xde\x21\xb1\x19\x0e\xf3\xf3\x31\x2e\x94\x1b\xc9\x2e\x86\x4c\xde\xd4\x91\x7e\x35\xb0\x5b\xbf\x92\x07\x89\xbd\x4b\xff\x35\xec\xdc\xc0\xd0\xe1\x67\xb1\x9f\x75\x6d\x98\xea\x44\x8d\xf8\x0b\xcf\x95\xd4\xda\x73\x41\xa6\x92\xcf\xef\x08\xf4\x18\x87\x90\x1e\x11\x8b\x52\xbf\x18\x1a\x8d\x33\xa0\x43\xdf\xd8\xf9\x4d\x0a\xb3\x64\x86\xfb\x80\x51\x44\xf7\xf7\x84\xcc\xef\x40\x3c\x19\x69\x38\x2b\xc3\x92\xc5\x53\x22\x95\x92\x4b\x8d\xb8\x71\xbe\xc6\xbd\x9f\xda\xd2\x85\x4a\x8b\x97\xe8\xaa\x77\xc3\x62\xdd\xda\x8e\x6b\x63\xef\x9f\x14\x66\x2d\x57\x9c\x5c\xc5\x7a\xf2\xca\x4b\xcf\xf0\x15\xe2\x53\x65\x4c\x17\x2d\x40\x2f\x70\x98\xee\xcf\x90\xa4\xe2\x6b\x25\xab\x62\xca\x61\x85\x1e\x43\xcf\x39\xe6\xb2\xa4\x40\x11\x2d\xd9\xf1\xc8\x97\x4e\x75\x4f\xa9\xd9\x51\x79\x8b\x06\x09\xe4\x1f\xf2\x67\x28\x3e\xc4\x47\xd1\xbe\xe6\x66\x46\x85\xc8\xe5\x21\xae\xc9\x6f\x4d\x0d\x6e\x88\xb2\x76\xa5\x5f\x05\x94\x87\x6c\x87\x89\xb2\xd1\x54\x09\x9c\x77\x89\x68\x0a\x8c\xf4\xbb\x88\x54\x53\xbf\x82\x8f\x08\x57\xce\x57\x6f\x6c\xfc\x61\x4e\x79\x1c\x44\xd1\x25\xa0\xce\x66\x11\x86\x9d\x40\x33\xd3\x6d\x54\xd1\xca\xbb\x68\x1d\x24\x2f\xca\xa3\x75\xbf\x77\x5a\x85\x08\x5d\x74\x78\x49\x25\xe0\xf6\x79\xfa\x53\x95\x60\x3f\x12\x7c\x47\x0c\x7a\xc0\x25\x23\x9e\x5c\x45\x6d\x51\xae\x1b\xd6\xb0\xf0\x20\x73\xb8\x81\xae\xd5\x8c\xe6\x28\xdc\xb5\xc7\xab\x1e\xe1\xac\x98\x41\x5e\xbb\x2f\xa2\x53\xfe\xa7\x05\x0f\x4b\x11\xe2\x12\xae\xc2\xd9\xaa\x45\x8f\x6d\x7b\x1a\x34\x89\xae\x0f\xec\x9a\x58\xc2\xef\x08\xc3\x4f\x20\x25\x92\x73\xf5\xa3\x70\x11\x8a\x68\xd8\x3e\x61\x1f\xbe\xe0\x3d\x8f\x5d\xf3\x6f\x8f\x56\x67\xbd\xa8\x2e\x69\x33\xea\xcb\x51\xb8\xc3\x39\x6a\xb4\x4b\x9c\x66\xb2\x05\x51\x46\xc4\x01\x8f\xb9\x15\x7f\xf1\xb6\x1b\x21\x1e\xcb\x3b\x32\x59\xb3\xd8\x91\x82\xd2\x53\x10\xb3\x41\x7c\x88\x81\xe8\x87\x04\xab\x0f\xd1\xd6\x2b\x96\xcf\x8f\x0d\x3d\xd3\x8d\x72\x6f\xde\x9a\xfa\x51\xc7\xe9\xa9\x44\x1b\xce\x81\x02\x55\x65\x29\x6a\x55\x3f\x67\x9c\x47\x08\x34\xa6\x0b\xee\x42\x51\xcf\xf6\x79\x3b\x0b\x47\xd3\x1e\x4d\xdd\x34\xd4\xf1\x2d\xfa\x75\x91\x8c\x28\x56\x9a\x80\x17\x1d\x2e\x0b\xce\x36\xa4\xdc\x1a\x99\x4e\x58\x06\x84\x9b\x75\x3c\xfe\x6d\x69\xc5\x1d\x4d\x30\xc2\xeb\x1c\x07\xa5\x58\x6a\x46\x3f\x09\xad\x83\x09\x53\x0e\xda\xb7\x0f\x35\xc3\x4d\x60\x9d\xf0\xaa\x3d\x18\x61\x1d\xd6\xa9\xdd\x26\x25\x8f\xac\x41\xd7\xf7\x71\x78\x14\x09\x18\xaf\x4f\x67\x84\xdf\x89\xb1\x31\x26\x42\x6e\xe6\xf5\x63\xa6\x88\x3a\xa7\xa6\x94\xec\x78\x16\xfc\x11\xed\x02\xca\x76\x19\x62\xb8\xbc\x42\x7b\x3c\x16\x30\xd5\xb1\xed\x75\x35\x7c\xdc\x67\x6e\xbd\xd4\x4d\x6e\x87\x30\xbd\x35\x5e\x18\xe7\x98\x57\x12\x04\xba\x97\xee\x1b\x37\x07\xe0\x9e\x14\x31\x19\x28\x58\x29\x7f\xb4\xeb\xcf\x9d\x57\x72\xad\x7e\x68\xf5\x17\x22\xa3\x27\xd8\x79\x74\x93\xdb\x4e\xd6\x6d\xc9\xd1\x75\xbf\xe6\x0d\xc2\x28\xa9\xb8\x56\x11\x0c\x0c\xc7\xc8\x29\xd0\x1e\x63\xa4\x65\x0a\xe4\xd7\xc4\x27\x8a\xe0\x20\xed\xff\xb1\x93\xd5\x76\x37\x91\x5a\x7b\xbf\x40\x6c\x28\x65\x30\x51\xd2\x2c\x6f\xd8\x0a\x69\xef\xf3\x71\x09\x1c\x9b\x15\xfb\x21\xe3\x62\x43\x5e\xcb\x20\xa6\xef\xf1\xe7\xac\xf1\x41\x9f\x1e\x56\x52\x9b\xf5\x47\x6e\x36\xb7\x46\x51\x08\x7c\x73\x3e\xc0\x46\xac\x7d\xb5\x44\x28\x9a\x7f\xb7\xd4\x6c\xa7\x53\xcb\xf1\x37\x3d\xe1\x16\xba\x44\x17\x5e\x28\xa1\xc3\x27\xa1\x12\x68\x86\x94\x47\x6b\x71\x0f\xb8\x6b\xce\xe2\x57\x14\x9a\xc4\xfc\xca\xc8\xfc\xca\xf3\x5c\x65\xdd\x6e\x42\x16\x6a\xf2\xe2\x94\x6a\x22\x80\xa2\xcb\xc7\x01\x05\x64\x8b\x2d\xe8\xd3\x8c\x81\x20\xe0\x57\x2c\x96\xf8\x25\xf4\xd1\x29\xac\xdf\xde\x3a\x8c\x38\xc1\x03\x5a\x1e\x7f\xe6\x0f\x4f\x2b\x89\x9c\x8a\x37\xf7\x6e\x0e\xb5\x51\x1a\xd2\x9d\xcf\x09\x72\xee\x92\x37\xcc\x36\xee\x9a\x7e\x7d\x70\x24\x05\x19\xe9\x92\x66\x4b\xbf\xc1\x2d\xd8\xa2\x4f\x29\x9d\xba\xa9\x51\x97\x72\x61\xb9\x48\x91\x46\x7b\xbe\x99\x2d\xd8\xa2\x0f\xe3\xed\x96\x2a\xc8\x8b\x45\xff\x6e\x04\x4e\x21\x66\x60\x42\x72\x49\x3c\xcb\xa2\x1c\x85\x6c\x42\x1c\x2a\xda\x83\xa1\x33\xd1\xda\x76\x22\x61\x64\x2d\x5e\xd5\x55\x38\xb8\xcc\x6d\x8e\x41\x62\xe3\x8f\xa6\xa5\xb1\x3f\x6b\x70\xb4\x5a\xee\x10\xce\xba\x92\x2f\xa2\x38\x93\x98\x1b\x4f\x75\x42\x53\xf4\xce\x5b\x1a\xbf\x3b\x35\xcc\xbb\x2f\x69\x42\x61\xbd\x1e\x46\x70\xf6\x9a\x27\x83\xc4\x8f\xf6\xdf\x34\x47\x73\x49\x4f\x72\x24\x97\xa5\x14\x7d\x44\xf3\x46\xb5\x39\x12\xc3\x6f\x66\x04\x54\xf0\x90\xc6\xbe\xe8\x17\xa0\x16\xb1\x5f\xa4\xcf\x92\xd5\xc8\x1d\xbe\x6f\x15\x33\xf1\x73\x51\xb7\xe0\x13\xf8\x28\xdd\xfd\xa3\x3c\x28\x12\xf7\x58\xd1\xff\x22\x54\x14\x50\x0f\x6b\xbf\x4f\xee\xa8\xe9\x05\x19\xbd\xec\x2f\xdd\x71\x84\x4b\x25\xa4\x86\x56\xfd\xfa\x68\xc4\xa3\x63\x71\x23\x0b\xb9\x30\xfb\x60\x1d\x7e\x7b\x1b\xdb\x64\x3d\xb3\x1c\x86\xab\xe9\xa5\x1c\x79\x4d\x34\x38\x22\x8b\xc9\xa2\xf1\xd8\xc4\xf6\x0d\xa3\xc9\x90\xd5\xff\x87\x66\x94\x53\x27\x21\x35\x41\x0b\xea\x4d\x4b\x76\xbe\x6b\xec\xa5\x34\xcc\x19\xbc\x1c\xeb\x90\xf6\x69\x7f\x4d\x11\x7c\x62\x0b\xa0\x2b\xee\x9e\xaa\xc2\x70\xaa\x88\x91\x98\xdf\x70\x9e\xa6\x51\x3a\x65\x9f\x40\x89\xdb\x42\xb8\xb9\xd1\xc0\x1c\xc4\x8d\x22\x43\xd5\x6f\x5e\xb6\xa1\x2a\xb6\x69\x10\x40\x88\x51\xbf\x9f\xf7\x63\x66\xed\x79\x9a\x3b\x72\x54\x31\x13\x20\x66\xfe\x4a\xf0\xd1\x35\x04\xc3\xdd\x4a\x66\x24\x2d\x37\xc2\xb1\xca\x79\xbd\xef\x99\xb0\x6d\x43\x20\x31\xdb\xf0\x92\xb1\xd2\x24\x7a\xa4\xe3\xa6\x97\x94\x19\xa6\x34\xf2\xd0\x60\xc1\x7c\x74\xc3\xf3\x1c\xa6\x1d\x2d\x9d\x39\xf1\x88\xae\x82\x02\x99\x46\xd9\x36\x29\xa0\x66\x0f\x3d\x02\xc2\xd9\xfe\xc5\x41\xb1\xb4\xfd\x08\x71\x1e\x25\xd7\x39\xb5\x96\xb1\x51\x91\x4c\x41\x2c\x94\xd9\xf0\x58\xd8\x6c\x25\x6c\xc3\x43\x72\xbc\x9e\x33\x77\x31\x9c\x74\xe2\xbb\xb0\xb0\x2d\x89\x87\x09\xd8\x98\xf7\x76\x4d\x18\xca\x8e\x99\x59\x6e\x98\xbd\xcd\xf5\x79\x24\xe5\x76\xdc\x47\x97\xf8\x89\xb8\xb3\x10\x5f\xa0\xb5\xf3\x1c\xcd\x73\x9a\xb6\xba\x48\x3a\x8c\xb4\xbb\x3c\xde\xfc\xc3\x49\x16\x64\x60\x09\xaa\x73\x4b\xe2\x85\xf5\x1d\x04\x46\x40\xdc\xc9\x88\x18\x67\x7f\xbf\x53\x52\x46\xd5\xbc\x7c\x31\x0c\xc0\x43\xf2\xe0\xc2\xbb\xb3\x66\x38\xc0\x73\x0c\x7b\xa7\x0d\xe5\x27\x20\xbf\x2b\xe0\xdb\x0f\x5d\xcc\x24\xf1\xce\xd5\x08\x25\x41\xf2\xe0\xd2\x5c\xac\xa9\xb8\x50\x4c\x33\xcb\x0b\x8b\x6b\x2f\x84\x44\x3d\x5c\x59\xea\x14\x3d\x55\x26\xf7\x88\x17\xfe\x1f\xc8\x12\xcb\x6c\x1d\xfa\x5d\x3e\xcc\xd5\xae\x3c\x36\x81\x33\xa8\x21\x62\x05\x44\x59\x42\x90\xd9\x3f\xd0\x9f\xf2\xe8\x9f\x61\x25\x41\xee\x96\x9a\xd9\xab\xd1\x98\x53\xc0\xed\x80\x4f\xd1\x3c\x5e\xdb\xd6\x45\x7c\x8b\x89\x20\x57\x6f\x5a\x30\xcd\x41\x56\x12\xab\x00\x62\x0e\x04\x8a\x55\x24\xba\x19\x16\xe6\xf0\x6b\x1e\x0e\xe5\x21\xa4\xa1\x3f\x4d\x86\x3b\x8b\xcf\x78\xa5\x53\x58\x3d\xf8\xc5\xb9\xce\x31\x0c\x8e\x55\xa5\x2a\x02\xc3\x49\xc9\x90\x45\xbe\x08\xab\x84\x17\xbb\x3c\xda\x88\x56\x1e\x47\x32\xa7\x1d\x6c\xf9\x0a\xfe\xfe\xaa\x26\xac\x5b\x32\x76\x85\xb5\x92\x3e\xaf\x91\x40\xf8\x06\x23\x5e\xa9\xf2\x6d\xe2\x77\xb8\x87\xf6\x20\x40\x41\x89\x1d\x15\xf3\x26\x7a\xb8\x35\x59\x73\x10\xbc\x42\x5a\x45\xf2\x45\x51\x2c\xd1\xc8\x4b\x53\xaf\x17\x44\x61\x7b\x68\x7a\xb6\x52\x80\x86\xb2\xa8\xb7\x1e\x18\x80\xba\x77\x08\x5f\xfb\xf3\x2d\xab\x35\xcd\x64\xa2\x24\x25\x45\xbd\x16\x6f\x44\x00\x0a\x23\xe3\x50\x0a\x6e\x9a\xff\x84\xb8\x39\x23\x45\x3a\x5b\x79\x34\xf0\x8e\x57\x6f\xba\x13\x9c\x2d\x67\x13\x37\xc8\x3a\x21\x80\x72\x87\xb3\x5b\x6a\xbc\x73\xca\xff\xc3\x81\x50\x1c\x85\xfa\x7c\x40\xea\xf0\xe9\x43\x03\x41\x7b\x8a\xfc\xc5\x10\xcf\xb5\x0e\xe3\x91\xfd\xd5\xf7\x23\x66\xe6\xf9\xc3\x1c\x82\x34\x9a\x0a\x54\xa7\x6d\xcf\x90\xe0\xd4\x35\xfe\x0e\x9c\xc0\xdd\x5d\xfe\x30\x62\x00\x33\x0e\x72\x39\x19\x77\x84\x62\x0e\xeb\xba\x26\xf1\xea\x45\x12\xce\xfa\x92\x0f\x6f\xbe\xf8\xde\xa9\x44\x36\xf0\x9e\x79\x52\x68\xde\x37\x29\x2f\x67\x66\x6e\xb3\x80\x1b\xed\x4f\xd2\xd8\xc6\x34\xa5\xb8\x74\xd2\xab\xcd\x80\x3a\x0c\xce\x22\xea\xb4\x3e\xcd\xb7\x7f\x86\xe9\x8d\xcd\x8e\xc2\x6f\x3c\x7a\xc4\x81\x11\x9e\x17\xb8\x98\x99\x74\xac\x71\x46\x86\x18\xdb\xfa\x6e\xa1\xae\x9e\x11\x81\x99\x02\x8e\x76\xa1\x5b\x33\x35\x94\xe0\xb7\xc3\xa9\x49\x47\xae\xdc\x72\xa2\xf4\xf9\x00\x53\xed\xa7\x78\x9f\xb3\xdb\xd6\x66\xe9\xa3\x70\x95\x96\xa4\x64\xdb\xac\xf8\x5c\x0b\xc3\x74\xda\xe2\xed\xd3\xf2\x95\x9f\xe4\xf1\xca\x0d\x6f\xb4\x44\x19\x89\x40\x28\xf7\x1b\x55\xd4\xc4\x93\x2b\xce\x21\x2c\xdd\x1e\x06\x1a\xb3\x95\x87\xe0\x57\xaf\x5b\xfe\xa8\xe3\x16\x2a\x3c\x3c\x86\x99\x13\xb3\x21\x97\x19\xa4\x9f\x75\x0d\xc5\x78\x36\x3c\x73\xbf\x78\xcc\x86\x78\xec\x9b\xd7\x1c\xcf\x07\x1f\xec\x6e\x58\xeb\xec\x95\x5b\x07\x75\xd3\xa7\x06\x2a\x96\x5d\x02\x09\xc8\x1f\x12\x59\x28\x28\x6b\x63\xa8\x5d\xd9\x9f\x5c\x8a\x88\x57\x78\x54\x18\xcc\xab\x97\x98\xba\x4e\x4f\x7d\xba\x5e\x86\x7a\x3f\x35\xb7\x66\xda\xf0\xb2\x5c\xa7\x5a\x29\x8d\x0e\x88\x6b\x78\xc0\x8e\xa3\x9b\x3e\xda\xc9\xa7\xef\xbb\x32\x8a\xc4\xc1\xdf\x59\x2e\x21\xbd\xd2\x99\x2e\xb6\xaf\xfd\x7d\x57\xed\x03\xca\x82\x3d\xa6\xf1\xcc\xe1\xd8\xe7\x3d\x14\xff\xa8\x4b\xf6\xb9\xc0\x6c\x87\xed\x14\x50\x0d\x9b\xef\xf7\xb6\xc9\x6f\xa7\x06\x13\xbe\x30\x3a\x34\x92\xa1\xd4\x7c\x60\x3a\x9a\x4f\x12\xa6\x20\xc8\xea\x99\x8f\xd7\x17\xea\xe8\xe1\xd5\xaa\xdd\xf2\x05\xe0\xc1\x39\x55\x37\x50\x1d\x5a\x1e\x9a\x19\xe0\xde\xa4\x46\x81\xe6\x7a\xf9\x4f\x3d\x11\x6e\xf8\x61\xf9\x59\x42\xce\xca\x4e\x23\xda\x0b\x31\x24\x88\x10\x77\xa9\xe2\x0b\x44\x77\x9e\xd3\x78\x4e\x3d\xcb\x2e\x24\xd2\x63\xb7\x50\x3e\xca\x2e\x94\x97\xde\xa0\x16\x45\x13\x44\x89\xd6\x91\xcf\x90\xd5\xf5\xd7\x3a\xd9\x34\xec\x8f\x1b\x37\x15\x2d\xb6\xcc\xac\x5d\x52\xe0\x5f\x4c\xe2\xf7\xa4\x7d\xab\xb6\xa7\x61\x86\x9b\xe6\x25\x34\x28\x5e\xf1\x72\x10\x26\x16\x46\x94\x4e\x85\x51\xce\x2b\x96\xb1\x5f\xd9\xd0\xb8\x3c\xb8\x97\x27\x53\xaa\x4a\xce\xa5\x57\xba\xd5\x21\x87\xbf\x70\xc4\xb3\xdf\x28\xd7\xc0\x7a\x9f\xaf\x44\x2b\x3f\x3a\x45\x6c\x88\x9e\x41\x2c\x2e\x01\x65\x03\xc0\x97\x0c\x58\xfd\x1c\x33\x7f\xff\xd8\xcc\x84\x4e\x4b\x4f\x86\x31\xa3\x8f\x03\x22\x29\x5d\x82\x0d\xe5\x67\x2e\xca\xad\x06\x20\xcc\x01\x9d\xaf\xe3\x12\x5d\xbc\x97\x9f\xff\x75\x3a\x7e\x77\xec\x7e\x87\xdf\x8f\x5f\x1e\x71\x3d\xef\xba\x39\x99\x24\x7e\x4d\x19\x14\x4b\xa8\x6e\x09\x07\xfd\xf8\x67\xcf\xb5\x68\xb7\xb0\xd6\x5b\xf9\xc6\xf4\x36\x7a\x85\x1c\x80\x1e\xe4\x58\x58\xb7\xb7\x22\x88\x61\x9e\xd8\xcc\x04\xc2\x39\x7f\x15\xfc\xdc\x4e\x8a\x31\x56\x64\xc8\x01\x11\x42\xa5\x68\x87\x7d\x2c\x89\xeb\x9f\xdb\xcb\x2e\x9f\x5e\x6d\x43\x62\x05\x1e\x82\x2f\xc0\x78\xf5\xaa\xcb\x80\x5b\x62\x5f\xc7\x06\xc6\x51\xab\x06\x6d\x84\x2f\x98\xd1\x2e\xe2\x58\x2b\xe5\xe8\xa3\x13\xb2\x18\x94\x11\xae\x67\xe1\xe4\xbf\x48\x74\xf5\xd1\xbb\x40\x0f\xc9\x82\x40\x47\x22\xe5\x49\xb3\x44\xa7\x78\x75\x1b\xb5\x71\xf8\x31\xbe\xf8\x4e\x57\x67\x99\x9d\xb5\xdc\x3f\xd5\x22\x63\xf1\xf9\xa7\x80\x93\x30\xc2\x4d\x96\xa6\xca\x5e\xa0\xc9\xf4\x0d\xcb\xa9\x7b\x4f\x3a\x2a\xed\x11\x65\x8d\x56\xcd\x21\xc5\x7f\xb2\x5c\x35\xc1\xd7\xd7\x3e\x89\x5e\x6b\xe5\x2f\xdf\xcc\x9c\x02\xbe\xc8\xf6\x73\xaa\x6e\x8d\x34\x05\x85\x4d\xda\x6e\x7f\x0b\x46\x1a\x08\x7e\xd5\x13\x8a\xde\xbe\xe6\x20\x28\xea\xfa\x9f\x09\x14\x88\x11\xd0\xc8\x73\xb4\x74\x5f\xee\xb9\x5e\x2a\x6b\x5e\x68\x7f\xbc\x28\x68\x3c\xb5\x05\x7f\x51\xb0\xd5\x66\x9d\xc5\xb1\xb1\x99\x12\x79\x0e\x78\xc8\xf2\xf4\x3b\x64\x6e\x43\x37\x3b\xb2\x1a\x39\x0e\xb6\x2b\x64\xee\x51\x94\xd0\xfd\xce\xa0\xb9\x45\xfd\x18\x4d\xcd\x3c\x35\x5c\xa0\xe4\xf4\x51\xdc\x8c\xdb\x6f\xfa\x39\x7f\x0f\xd7\x76\x26\x12\xcf\xed\xbd\xf5\x77\xfd\x5c\xf4\xb6\x3d\x21\x50\x51\xe0\xdb\xfe\x31\x05\xec\x7e\x87\x92\xef\x7a\x9c\x15\xe5\xb0\xa7\xe7\xdf\x53\xba\x43\xd4\x92\xf7\x3e\x4f\x62\x51\xc7\x09\x92\xe8\x17\x91\x1d\x41\x4a\x8f\x01\x05\xdf\x57\xe0\xa7\x41\x25\xdb\x35\x2a\xe6\xde\x7a\xe7\x3e\x77\x83\x31\x5b\xcb\xb0\x33\x73\xae\xc7\xf3\x57\xe2\x8a\xdb\x35\xb5\x93\x0b\x7d\xc3\x95\xc2\x33\x30\xcd\xc2\x04\x72\xf4\xc8\x2b\x64\x77\x23\x7c\x57\xf5\xa9\x21\xbd\x7a\x5b\x06\xf6\xd6\x86\xf9\x50\x5b\x8f\x53\x4f\x91\xf8\xbf\x73\x2d\x38\x43\x01\x0b\x09\xc6\x08\x7c\x3f\x55\xdd\xad\x12\xf7\x2a\x60\xf7\x79\xba\x47\xeb\xd3\x1a\x77\x91\xd6\x78\xef\xe1\xa0\x78\xd7\x03\x79\x23\x55\x81\xd3\xe2\x96\xe6\x50\x7d\xdd\xeb\x7d\xb0\xe4\x86\xa4\xcb\x38\xf5\x09\x35\x90\xb0\x4b\x0e\xed\x14\xf9\x1d\x82\x70\x14\x1e\x3e\xf6\x28\x63\x4e\x2c\x7e\x82\x2d\x63\xbd\xa1\xb2\x48\x32\x53\x52\x36\xd9\x67\xc6\x13\x81\xa1\x70\x5f\xec\xa6\xbc\xa3\x7b\x91\x0f\x46\xf4\x09\x41\x04\xa3\x98\x72\x67\x4e\x81\x31\xaf\x83\x4f\x24\x58\x39\x21\xfa\x4d\x1b\xee\xbf\xf7\x65\xa0\x0a\x4f\xba\x1c\x05\xec\x31\xee\x98\x67\x78\x5a\xd4\x8c\xad\x43\x05\x86\x48\x8c\x37\x83\x56\x89\xd3\xb8\x89\x7b\xda\x2a\x59\x15\xaf\x9e\x5e\x0e\x6f\x70\x17\xbc\x47\xef\xaa\x54\x77\x9f\xd3\xe2\x70\x33\xd9\x91\x92\xf9\xfb\xe2\x8f\xb4\x87\xb0\x22\x53\xa2\x1a\xca\xd1\x8d\x54\xe1\x0c\xf7\xf9\x8f\x08\xe4\x0c\xc2\x2c\x10\x44\x22\xad\xaf\x78\x9a\xdc\x54\xcf\x93\x01\x3e\xba\x0d\xff\x08\x49\xd8\xfd\x85\x7d\x92\x2b\x6e\xc8\xb3\xe5\xfd\x03\x3c\x59\x85\xaa\x70\x96\x75\xb3\x72\x1f\xcb\xd9\x7e\x37\x3d\x91\x72\x07\x4a\xea\x6e\x05\x9c\xff\x1c\x65\x9f\xd4\xa5\x0d\x65\xdd\xf9\x1e\xa9\xc5\x3f\x8f\xe9\x53\x29\xf4\xe7\x52\x22\x23\xbd\xb4\xb9\x43\x41\x8b\x2a\x1a\x15\x3b\x71\x80\x3f\x16\xe6\xa4\x5c\xa9\xfd\x95\x87\x17\x5d\x62\x83\xb5\x3e\xa2\x50\x02\xc1\x7b\x0f\xcd\xd7\x28\xce\xb2\x45\xe9\xbf\x48\x8e\xfe\x96\x56\xb4\xfd\xce\x2b\xa0\x2e\xd9\x2d\x30\x13\x4f\x67\xa1\x44\x82\x04\xe4\x45\x2f\x06\xab\xcd\xd5\x4f\xe0\xcb\xf8\x68\x6e\xf1\x17\x31\x69\x3a\x7f\x7d\x32\xd9\xbf\xa3\x03\xf1\x55\x51\xac\xb7\xd6\xf4\xdf\x90\xb9\xb6\xab\xfd\x7d\x51\xf4\x49\xa7\x50\x8c\xb2\x83\x4b\x6d\x00\x8e\xd0\x71\x9d\xdd\x5d\x96\xe3\x8a\xba\x92\xb7\x1b\x17\x11\xb5\x31\x8a\x94\x07\xb1\x47\x5d\x8a\x28\x1e\x9e\x74\x77\x67\x62\x2c\x9d\xc3\xcf\xf2\xd7\x2d\x6c\x23\x37\x4a\x73\xd9\xec\xc8\x5d\x87\xa9\x4c\xc8\xeb\x7f\x76\x84\xb2\xc4\xeb\xbb\xcf\x36\x33\x77\x3c\x08\x91\xa6\x06\xb4\x74\x02\x91\xee\x27\xf2\xab\x34\xa7\x29\x18\xab\x1b\x2c\x25\x60\x9f\xec\x30\x67\x8a\x4d\xdc\x18\xb5\x63\x28\xc5\x28\x91\x47\xcf\xab\x34\x92\xf6\x35\x3f\x80\x76\x7d\xe1\x11\x36\x05\x57\xdf\x69\x09\x50\x47\xea\x8e\x27\xcb\x91\xf3\x7c\x55\x24\x4e\xb9\x17\x86\x5e\xc9\xbc\xff\x57\xe2\x5f\x65\x8f\x1d\xbd\x31\xf0\x89\x53\xa1\x26\x3e\x9b\x04\x8a\x39\x10\x7b\xaf\x68\x2c\xfa\x67\x6c\x0b\x76\xa4\x12\x34\xf1\x4b\x26\x65\x26\x70\x4f\x9f\x89\xbb\xdd\x44\x87\xa6\x70\x55\xdc\xfe\xdc\x62\x9d\x3d\x43\x99\x23\x20\xad\x53\xaa\xc8\x88\x27\x39\x41\x98\x48\x3b\x2f\xf8\x89\xaa\x43\xca\x00\x3c\x5a\x56\x12\x36\x64\xd6\x74\x54\xcc\x1f\x2c\xf4\x10\x98\x34\xac\x35\x30\xfa\xed\x61\x75\x66\x69\x9a\x3f\x58\x02\xc9\x85\x42\x8b\x5b\xb2\x9e\x9a\xe7\x04\xbe\x60\x36\xcd\x74\xff\x5e\xd9\xc1\x7a\x17\xee\x09\xc2\x6d\x0a\xfe\xb8\xf1\x0b\x7c\xaa\x41\xcc\xd6\x68\x50\x06\x1d\x00\xc3\xce\x7c\xa6\x3e\x26\xcb\xa4\x5e\x8d\x1e\xb7\x4a\x05\x7e\x79\xef\x78\x6b\x36\xde\x21\xf9\x2a\x53\xf7\x39\x6d\x1d\xfe\x6c\xbc\x26\x94\x31\x72\xf7\x06\xff\x3d\x82\xe5\xcd\xe1\xaa\xf5\xf8\x89\x91\x7d\x80\x1f\xe7\x5e\x1d\x78\x04\xed\xfe\x19\xe8\x0e\x0e\x3a\xa2\x14\x3f\x83\xbf\xce\x5c\xef\x84\xdd\xf6\x54\xe2\x47\xfd\x7b\xd4\x12\xdc\x89\xb1\x1f\x98\x71\x44\xb1\x03\x4c\x9a\xd9\x94\xfe\x4f\xc4\x04\x2b\x07\xe9\xf1\xab\x09\xf5\xf1\xcb\x09\x65\xff\xc7\x0e\xc9\x87\xa5\x53\x6e\x2f\x3f\xac\x85\xc7\xb5\x99\x59\x64\x15\x9d\xd1\x79\x47\xd0\xa5\xca\x04\x04\xe4\x1d\x96\xe1\x6a\x0f\x23\xe3\xd2\x5a\x90\x47\xbf\x96\xbe\x28\xe4\x14\x7b\x98\x03\x5c\xf4\x02\xeb\x16\x39\xdd\x16\xca\xe7\x7d\x3e\xa8\x93\x96\x95\x27\x67\x1d\xee\xf6\x11\xf7\xf0\xe2\x23\xc0\xe3\x0d\xf5\x3a\x30\x8d\x6c\x76\x77\xe8\xd0\xc7\x4b\xbc\xce\x9d\x29\xc9\x66\xcb\x7b\x03\xf6\x05\x5f\xba\x63\xe5\x9a\x9f\x28\xbb\x62\xf0\x0e\xd2\x3d\x7b\xa5\x32\xe5\x8c\x6e\x76\xdc\xeb\x94\xa1\x38\xde\x47\x6d\x01\x91\x65\x18\xed\x2e\xfb\x1f\xd9\x4f\x52\x64\x69\x56\x5f\x7e\x16\x46\x56\xdf\x38\x90\xd3\xf5\x40\x2f\x47\xea\x0f\x96\x14\xa8\x43\x1e\xc3\xd5\xf2\xd4\xaf\x2d\x9f\x95\xa9\x6f\xb2\x7e\xa9\xa8\xbc\x94\x17\xd2\x6d\xbc\xc3\x93\x3c\xe0\x9b\x0e\x5d\xe3\x17\x06\x4e\x9a\xe0\xb2\x4f\xd0\x3b\x73\x51\x81\xcc\x90\x53\x88\x59\x21\xaa\xdc\xc9\x4a\x97\x53\x49\x98\xfd\x91\xf8\x2f\x01\x51\x4f\x2c\x44\xfe\xa8\x85\x78\x89\x3a\x54\xaf\xe2\xa8\x2c\x9e\x26\xbf\xb1\x78\xb6\x9d\xb3\x82\x46\xcf\xab\x42\xe0\x5b\x73\xcc\x12\xb7\xa7\xb2\x99\x2d\xc3\x88\xae\x20\xb3\xd3\xfc\xec\xc5\x89\x48\x0a\x33\xc6\xa7\x20\xb5\x4e\x9d\xdd\xe9\x7b\xa8\x6d\x66\xb5\x1d\xd2\x18\x63\x4f\x39\xad\xd9\x5d\x3f\x83\x6e\xb6\x72\x3a\x7b\xa9\x5e\x4c\x73\x5e\x1d\x5d\x1b\x26\x0e\x72\x8e\xcb\xc0\xbb\xf0\x4a\x92\xcb\xdd\x70\x65\x56\xe6\x3c\x9f\xdf\xcc\xc8\xdf\xdb\x19\x29\x83\x3c\x28\xe5\xbb\x12\xa6\xd1\x34\xbf\xb9\xce\x42\x83\x71\x82\xb1\x08\xee\x64\x94\xe3\xa4\x1e\x9e\x5c\x94\x2f\x57\xa2\x7c\x4e\x13\x58\x83\x5d\x32\xa4\x6c\x37\xac\xa9\xf7\x0d\x53\x3e\xfd\x4f\x80\xd5\x60\xea\xd0\x9c\x7b\xa1\xec\x9e\xe4\xe8\x8c\xea\x7c\x5d\x89\x01\x49\xbf\x97\x63\x74\x77\x4e\x3b\xea\x4e\xcb\xc5\xf7\x43\x2a\x7e\x12\xcb\x19\x5f\x22\xac\xa9\x2e\x03\xa2\x6d\xa2\xf7\x10\x1f\x71\x4d\xb8\x6f\xb5\x4a\x10\x5c\x4c\xd3\xe2\x44\x18\xb7\xc4\xa4\x7e\x2c\xbd\xa6\x33\xbe\x7c\xbd\xc3\x8d\xe6\x03\xd2\xa0\x3b\x2e\x77\x5f\x9e\xde\x90\x19\x01\xa5\xd2\x96\x97\x49\xaf\xa2\x1d\x0f\xa4\xc5\xef\x01\xa8\x2e\xaf\x6c\xe7\x5e\xe7\x15\x1a\x63\xdd\x7b\xfe\x9e\x5f\xf9\x9c\x5b\x61\xa1\x47\xe1\xd3\xa3\xfe\x3f\x5d\xc5\x59\x23\x9c\x0e\xe7\xc5\xd2\x0e\x99\x02\x07\xaa\x0e\x33\x55\x5f\xa5\x9d\xa7\x7e\xa9\xb4\xd9\x37\x28\xd4\xd8\xea\x14\x90\x8b\xfc\x95\xc3\x89\xd8\x73\xb0\x3d\x1a\x93\xeb\xe1\xfb\x1e\x0a\x8b\xe5\x54\x92\x69\x45\x50\xff\x83\x1a\x95\xb3\x3c\xb2\xce\xea\x32\xb3\xf1\xf3\x7a\x75\x62\xa2\x29\x74\x69\xb2\x52\x33\xc9\xec\xf7\x49\x20\x4d\xf5\x48\x96\xd7\xc1\xfe\xf2\xf2\xa8\x7a\x32\xef\x91\x5d\x44\xf9\x11\x4a\x96\xc7\xd1\x0c\x15\x14\x11\xdc\xbf\x93\x08\xbb\xcc\xcc\x0b\x22\x41\xfb\xf7\xe4\xf6\xd9\x00\xcc\x33\xee\x18\xb3\xc8\xc3\xe6\x3e\x81\x49\x84\x46\xf5\x2f\x12\xaf\xee\x2f\xca\xeb\x0d\x9d\x1a\xc4\x97\x25\xd2\x1a\x7c\x47\xad\xd5\x98\xb9\x7f\x44\xff\x02\x1b\xd3\xfb\xd3\x9f\xfa\xf8\x19\xb3\x11\xf1\xde\xbe\x96\xe7\x7c\xe6\x7f\xcc\xdf\x01\x98\x13\x93\x9d\x30\xd5\x3b\x74\x31\x9f\x13\x9e\xe5\x2e\x70\x5e\x26\xf5\x8e\x33\x78\xcc\xbe\xf0\x26\x57\x96\x42\xcb\xcf\x14\x5b\x5d\xd1\x64\xac\xe0\x3c\x1e\x3f\xd5\x16\x51\x04\x72\x9b\x02\x3b\xb7\x2a\xee\x8e\x47\xd0\x45\x08\x55\x2b\xa5\x9b\x3c\x40\x37\xc4\x0e\xbf\xab\x14\x97\x90\xe2\x28\x32\x79\x3a\x19\x24\x9b\x10\x41\x0e\x91\x3c\x9d\x4c\x2e\x35\x9c\xcd\x5d\x5d\xa5\x17\x93\x0d\x76\x16\x26\xc8\x7b\x50\xd2\x31\x9d\x22\xd2\x7f\x38\x06\x46\xe6\x16\x53\x65\x0b\x1d\xd0\x32\x81\x9d\x93\x23\x73\x98\x3b\x2b\xf6\xd9\x9c\x93\x02\x47\x9b\x0c\x8b\xe3\xaf\x78\x79\xf2\x39\xe0\x6f\x9c\xa2\x4c\x23\x3f\x99\xbe\x38\x0a\xf4\x63\x10\xef\x61\x96\x68\x28\xec\xd8\xae\x5f\x2f\x41\xf3\xb2\x97\x26\xc6\x38\xa4\x93\xf1\xc6\xe9\xaa\xd0\x85\x2b\x48\xc7\x03\xbc\x1e\xea\x7f\x2d\x9a\xc5\x74\xe6\xf4\x8c\x39\x85\x36\x42\x3e\x8b\x62\xb7\x30\x4f\x41\x62\x05\xf7\x3c\xa4\xfb\x50\xfa\x5d\x40\x92\x83\x1a\x3a\xc7\x37\xd4\xe8\x0b\xd6\x71\x6f\x2f\xcc\x67\x7a\x39\x38\x0d\x46\x72\x4b\x98\xdd\xaf\xb7\x75\xcc\xd5\xbe\x4d\x7d\x38\x74\xa7\x8e\x76\xec\x3b\x6d\x33\xb6\x91\xcb\x4e\x29\x57\x1a\x3b\xf5\x6d\xde\x77\xd3\x80\x34\xb8\xe6\x73\x74\xf7\xee\x31\x7c\x93\x44\x61\x22\x1f\xbc\xec\xd0\x6f\x2f\x4b\xb6\x33\x21\x77\x92\xd3\x46\x3d\x37\x3f\x63\x92\x4c\x68\xd5\x4e\xd1\x99\x59\xd8\x0d\xfe\x4c\x2b\xc5\xf2\xe2\x66\x2e\x69\xe8\x1f\xe0\xeb\x6a\xf4\xf8\x11\x2c\x42\xeb\xf2\xb9\xc5\xbc\x7f\xfe\xbc\xff\xd0\x31\x9c\xf4\xce\x54\xa2\x64\xd9\x22\xa3\x3e\xf7\x07\x11\x92\x4e\xa8\x59\x71\x64\x51\x41\x21\xad\x31\xb3\xbe\xc1\x3b\xb5\xf4\x8e\xb0\x33\x84\xc1\xa3\xf6\x42\xdf\x8b\x99\xfd\xeb\xde\x5c\x40\x5b\xa2\x81\x7c\x1b\x62\xd3\x7d\x98\xde\xec\xa2\x5a\xe3\xfb\x99\xdb\x85\x88\x99\xfa\xd6\xdb\xec\x17\xd1\xbc\x2d\xb7\xd0\x5c\x91\xf9\x05\x7f\x84\xf2\x29\x38\x75\xf3\xb1\xa8\x49\xa6\x61\x04\xd5\xd5\xcc\xae\xa5\x00\xc5\xe7\x09\x63\xf4\x25\xe5\x55\x74\x84\xe0\x51\x46\xb7\x78\xec\xde\x3d\x9f\x70\x93\xad\x3c\x95\x1d\xbf\xa7\x14\x90\xa6\x9f\x18\x76\x75\x69\x78\x8f\xe4\x79\xf5\xab\x0b\xae\xdc\xd3\x28\x3b\xc8\x28\x1b\x40\xa3\x6e\x83\x7f\x30\xaa\x92\x48\xb3\xb9\x04\xf5\xd6\x8a\x28\xaa\x37\x84\xe8\x72\x6d\xb3\x5f\x47\xe0\x90\x13\xb1\x45\x9c\xaf\xf3\x28\x65\x44\xd8\x28\xb8\x45\xa6\xd0\xa1\xdf\x18\xd5\x3a\x14\xe6\x32\xff\x1e\x7c\x6a\x5e\xf4\xa1\xe0\xd2\x03\xb5\xd0\xe7\x55\x8a\xa2\xa6\x8b\x64\xad\x50\x5b\x1d\x8a\x16\xb3\xf4\x29\xb6\xe1\x24\xc4\xaf\x80\x1e\xd3\xa2\x14\x35\xf7\x75\xb5\xd2\xb1\xc5\x4b\xd0\xd8\xb7\x84\xb3\x4b\x84\x9b\xf0\xe6\xc9\x9e\xe5\xd8\x47\xb1\x8d\xb7\x6f\x6b\x16\x55\x11\xf8\x1e\x12\x1a\xe3\xb2\xa8\x3a\xc8\x3d\x84\x80\x80\xb0\x97\x88\x48\x1c\xb0\xf5\xbc\x9a\x06\x33\x6d\x11\x33\x68\xf2\x2b\xfb\xea\x92\xd9\xf9\x59\x76\xe8\x89\x83\x39\xe1\x86\x31\x81\x90\x1b\x71\x42\x71\xfa\x2e\x7f\xdf\x9f\xd3\x70\x16\xf3\x35\xff\x10\xe6\x34\x42\xad\xde\xdc\x44\x8f\xb1\x49\x46\x7f\xdc\x6c\x47\x37\xa1\x39\x92\xf3\xc9\x68\x80\xae\x32\xe5\x41\x75\x7c\xda\x2e\x4b\x98\x3c\x3a\x0e\x54\x97\x72\x61\x1e\xbc\x07\x69\x4f\x7a\xc8\x76\x38\x0c\xd9\xde\x29\xea\xf3\x84\x6a\xac\xe5\x8d\xd5\xdb\x90\x71\xfb\xc9\x71\x1a\x4f\x92\xfa\xf4\x06\x6d\x4a\x7b\xed\xfd\x97\xdf\x51\xaf\xec\x72\xd8\x29\xa6\x17\x04\x31\xe5\xb1\xaf\x79\x70\x7d\x8c\x30\xc5\x96\x77\x97\x43\x36\xc9\xa6\x7f\xb5\x45\xf0\xae\x79\xde\x11\xfe\xa4\x1d\x89\x74\xe3\x5b\xec\xdd\x13\xf2\x78\x81\x3b\x9d\x1c\x13\x72\x24\x0c\x19\xea\x25\xbf\x95\xd4\xca\xb7\xed\x53\xed\xde\x83\xdc\x9f\x13\x7f\xb5\x94\xf7\xb3\x51\x37\xef\x51\xad\xd3\x0c\xee\x4f\x57\x9d\x02\xe3\xe6\xb8\x2b\xf6\x16\x01\xc9\xeb\xca\x94\xc4\xe8\xe3\x05\xfb\x27\xf8\x48\xfa\x0d\xb8\xb4\xf5\x98\x76\x46\xca\x60\xb8\x69\xb0\xd1\xc7\xd6\x87\x00\x79\xb3\x7e\x29\xb0\xbf\xb7\xe3\xb6\xd2\xd3\x68\x2e\xe2\x96\xfe\x3d\x7e\x78\xdf\x2d\x4b\xdd\x66\x06\x7a\xfa\x40\x77\xb7\xb4\x8e\x51\x00\x01\x68\xbe\x35\x68\x3c\x6d\x82\xee\x30\x6f\x0e\xeb\x88\x3b\x9b\x2c\x42\x72\x81\xe4\x70\x6e\x6c\xa3\x8a\x52\x26\x11\xf8\xc2\xe2\x70\x8e\xa4\x0e\x64\x91\x93\xc7\x1c\x46\x79\xc3\x52\x48\x22\x2c\x93\x4e\xe7\x70\x3a\x7f\x3e\xc2\x13\x5d\x36\x23\x84\x3e\x80\xc9\x62\x37\xab\x73\x07\x67\x8e\xf3\x2b\x4d\x65\x88\x7c\x4e\x7b\xa8\x2d\x4e\x01\xa7\xc6\x4c\x98\xe8\x7c\xd0\xe6\x2f\x78\x4e\x1e\xff\xda\xdc\x8d\x2a\xb7\x8c\xfe\xb3\x5d\x8a\xb3\x65\x3e\x26\x62\xf1\x25\x7a\xe7\xe1\x27\x03\xd5\x45\x38\x74\x4b\x39\x5a\x2b\xf3\x44\x63\x0e\x33\xb1\x13\x01\x67\x3f\x80\xf5\xe1\x7b\xe8\x06\x15\x88\x94\x12\x01\xfd\x33\x92\x84\x31\x99\x77\xa4\xa1\xc3\x82\x4c\xd8\x0e\x9d\x96\x3d\x7d\x32\x54\x12\x65\xfd\x37\x1c\x0e\x9d\xaf\x31\x8a\xfb\xdf\xc4\x50\x64\xf7\xa0\xa5\x8d\xcc\xbf\xda\xd2\x87\xbe\x4b\xe3\xfb\x29\x58\x30\xbc\x42\x24\x0e\x8d\xa5\x51\x9e\x41\x47\xe6\xe5\x55\xc1\x82\x5a\x18\x70\xbd\xc8\xfa\x1a\x4d\xed\xba\x60\x8d\x94\xcd\x2b\x76\xbc\xe0\x65\x45\xb0\xe5\x2e\x52\x04\xa4\xf9\xdf\x22\xb5\x4a\xb5\xff\x2c\x32\x5a\xde\xe5\xd9\x46\xc5\xa5\x72\xcf\xb7\x8b\xf1\x4b\x81\x1a\x42\x19\x15\xc1\xf2\x68\x31\x67\x58\xb7\x23\x2e\x42\x0f\x9d\xec\xb7\x13\x7f\x79\xf1\xe9\xcf\x8e\x55\xca\x6d\x12\xf9\xb9\x45\x88\x88\x02\x5d\xee\x25\x9a\xa2\x5d\x21\x75\x2e\xa9\xa2\xf1\xdf\xa8\xd6\x09\x0e\xd4\x7b\x86\x44\x32\xb1\xd1\x25\x26\x61\x8a\x7c\x03\x88\x4d\x2e\xd9\x41\x75\x73\x02\x79\x8e\x92\x3f\x2f\x83\x5e\x83\x09\xf9\x02\x21\x81\xaf\xbf\x88\xa2\x92\x5c\xee\xd1\xb3\x7f\x00\x95\x93\x1a\x6d\x0e\x97\x6f\x6c\x84\x88\x82\x3b\xa9\xf5\xe0\x18\xb0\x7d\x88\x14\xb3\x43\x67\x70\xfb\xdd\xee\xd3\x6f\x89\xa7\x74\x8d\x74\x26\x51\xf2\x30\xd0\x4e\x2b\x2a\xc0\xdd\x34\x93\x35\x53\x08\x07\xa4\xf2\x87\x37\x05\x96\xc0\x5c\x9f\x9b\x94\xfe\x56\x7c\x56\x33\xc8\xc3\xd7\x9c\x16\x79\xa1\x2d\x1c\xf7\xed\x88\x6a\x7f\xc7\x97\x80\xde\xb0\x9b\xf6\x5e\x2c\x69\x59\x18\x7d\x0e\xc1\x09\xec\x33\xdc\x89\x23\xa1\x1e\x58\x96\x8d\x0b\x71\x20\xc5\xca\xf1\xd9\x92\x86\x84\x01\x0a\xcc\x2b\xa7\x7f\x78\xed\x94\xf4\x84\xe6\x20\x77\x1f\x7d\x6f\x20\xef\x57\x92\x3a\x59\x88\x3a\xdd\xdb\xd0\x12\x24\xaa\xa1\xae\xe1\x86\x62\x8e\x6d\x29\xea\xed\xfa\xa9\x00\x02\xbf\x06\x93\x9f\x6d\x5d\x8e\x4b\x51\x1b\xa1\x7b\xee\x1f\xdf\xb2\xc7\x86\x7f\xc2\x29\x34\xe1\x05\x43\xb6\xfb\xec\x54\xc3\xb2\xa3\x71\x70\xed\x7f\x7e\x11\x72\x0a\xfe\x30\x92\x9b\x36\x2a\x29\x41\xfe\x2f\x47\x7e\xa3\x94\x0d\x47\x1d\x8a\x80\xea\x12\x60\x1c\x13\xdd\xff\x86\x1b\x85\x7e\xfc\x64\x4e\x24\x0c\xfe\x3f\x39\xf2\xcc\x41\x6e\x4f\x1c\x72\x1b\xf6\x2e\x51\xab\x71\x4f\x22\xec\xf1\x5d\xde\x97\x32\xfa\x98\x6d\x8e\x65\xea\xb8\x92\x2f\x71\x3c\x91\x2b\xd1\xc9\xc0\x9d\x09\x09\x4a\x1f\x45\xf9\xeb\xae\x75\x2d\x2d\xa3\x7b\xce\x0d\x9c\xa3\x10\xeb\xc1\x23\x7c\xda\x21\xae\x7f\x19\xc8\xfa\x89\x12\xde\x16\xfd\x92\x05\xfd\xb0\x17\x4e\x93\xcd\xff\xc6\x29\xa0\x74\x2b\xfb\xdb\xbd\x1b\x40\x8c\x2b\x28\x58\x92\xad\x2e\x12\x5d\x12\x0b\x75\x06\x60\x4e\x20\x34\xf9\x24\x54\xcc\x76\x95\x9c\x58\xb2\xf4\x20\xcf\x26\x1b\x09\x3c\x1a\x79\xb6\x1e\x65\xd7\x9e\x39\xa0\xbc\x26\x3d\xf4\xe5\x7d\x52\xe0\xcf\xef\xe2\xb1\x65\xdb\xee\xeb\xfe\x8d\x1d\x58\x4b\x9e\x75\xc5\x8e\x32\x56\x0b\x7e\xdb\xf6\x6f\x57\xa2\xe9\xa7\x16\xd1\x91\x4b\x30\x10\xa9\xf3\xfb\xb1\xd9\x12\xec\xbb\xc6\xe1\x6d\xe7\xbd\xd3\xa2\xf7\xf6\x6d\x9b\x55\xf7\xea\xe6\x64\x56\x5c\x56\xfd\x51\x4b\x5d\x48\x03\xc4\x5f\xf9\x6a\x2c\x44\xac\x0e\x31\xb1\x72\x9e\xe8\xc1\xa9\x93\xd5\x20\x4c\xac\x6e\x86\x1b\xba\xb0\x9d\x39\x19\xd9\xeb\x21\xb4\x1f\x4e\x95\xcd\xff\x46\xed\x22\x1f\xec\xbe\x49\x99\xdd\x99\x01\x75\x24\x12\x7b\xa4\xb4\x2d\x9c\x45\xa2\x64\x4d\x72\x93\x7a\x17\x07\x77\x41\xe1\x64\xd4\xb9\x6e\xd9\x19\x1f\x66\x86\xba\x56\xd9\x1c\x50\x38\xb5\x36\x32\x20\xdb\x6c\x16\x31\xdf\xf7\x1a\x51\xd1\xbb\xf0\xcd\x80\xb5\xa7\xff\x82\xba\xcc\x02\x33\x28\xd8\xdb\xc1\x85\xeb\x94\x94\xe1\x70\x9c\x86\x67\x98\xec\xfc\x84\x7c\x64\x58\x16\x6f\x91\x48\xdf\x69\x58\x5b\x8a\x85\x19\x71\x0f\xa3\xb7\xd3\x2e\x45\xea\x93\xcd\x64\x12\xd9\x83\x25\x3a\x86\xee\x75\xee\x19\xf6\xd6\x2d\x19\x94\xa9\x78\x97\xe2\xfe\x8a\x39\x45\xdc\x9c\xa4\x10\xcb\x8f\xf9\xee\x91\x9b\x3d\x19\x9f\xaa\x13\x29\x8f\x2d\x34\x64\xae\xb8\x19\x9d\x1e\xe9\x62\x46\xb7\xce\x48\xf8\xf1\x18\xc3\x81\xa4\x10\x3b\x35\xea\x1c\xb9\x96\x86\x69\xd6\x8e\xe8\xed\x8d\x8c\x03\x43\xfb\xcd\x74\x70\x18\x8b\x2d\x26\x74\x2a\x9e\xdb\x57\x32\xc7\x0e\x4a\x0b\x0e\x31\x15\xf3\x57\x57\xc4\xd7\x57\x4e\xd7\x5b\x4f\xd4\x4f\x33\x00\xbb\xce\xa1\x65\x0f\xa0\xca\xd0\xcc\x9f\xe0\xac\x10\x7a\x38\x40\x35\x14\x62\xc6\x3e\x17\xfd\xdd\xfc\xe5\x11\x84\x9a\xb4\x74\xcc\x0b\xae\xc8\x94\x11\x6e\x9b\x1a\xb7\x48\xcd\xdc\xe6\x8e\x16\xe8\x98\x4d\xf2\xb5\x7b\xa9\xef\x48\x29\x2a\x66\xea\xe8\x30\xbc\xd9\xe4\x38\xab\xe1\x77\xf8\x68\x88\x4a\xc8\x8f\x68\x99\x94\x4e\x53\x4d\x24\xc2\x8b\x03\xfa\x3e\xc6\xae\xac\x49\xe7\x47\xd9\x31\x89\x6f\x68\xf0\x5b\xc8\x4f\xe6\xa4\x88\x32\x7d\x39\x4d\x56\x9e\x50\xf1\x2b\x3c\xbf\x59\xf2\x6b\xb5\x7b\x79\x39\xa4\x08\x17\xec\x36\xc6\x06\x39\x94\xfd\x94\x6e\xbe\x62\x0a\xae\xdf\x24\xbe\x85\x05\x5f\x35\x68\x7c\xb2\x5d\x55\x9b\x38\x72\x8f\x9b\x4c\xe8\x06\x36\xeb\x8d\xdf\xa7\xdd\x72\x9a\xf3\x7d\x59\x5e\x70\x65\x3b\x8d\xd1\xf9\xe1\xac\x66\x2d\x35\x0a\x4c\xd8\x2d\xe2\x1e\xed\x56\xad\x45\x65\x29\xca\x2b\x90\x87\xe8\xd5\x4e\x8d\x38\x7a\x86\x80\xa1\x96\xf0\xce\x60\x50\x33\x9f\x4c\x50\x0e\x89\xfe\xe0\xa0\x5d\xd1\x93\x9e\xc7\xdc\x7e\x9c\xb5\x36\x53\x6c\xbe\x65\xf5\xec\xd4\x30\x82\x78\x5b\xa4\x3b\xf5\xa0\x9e\x73\x6e\x7c\xda\x08\x51\x23\x9e\x9e\xe6\xdc\x97\x67\x1a\x7e\x46\x87\x0e\xbe\x05\x3b\xf2\x47\xbe\x33\xe7\x77\x61\x5d\xa5\x00\x3e\xa1\x5e\x3e\x79\x3a\xb7\xe4\x5e\x33\x1f\x4f\x44\x9e\xd1\x60\x48\xc4\x9f\x15\x61\x48\xa2\xcf\xcc\x76\x7d\xfc\x7a\x49\xfa\x9f\x16\xf1\xdc\xbf\x68\x6e\xba\xf9\xb6\x7b\x92\xaf\x7a\xfa\x81\xb2\x37\x9f\x50\xbd\x3d\x54\x0f\x24\x10\x57\x03\xa0\xb7\x02\xff\x2f\xb5\xee\xe1\xa6\x9a\x80\x7c\x26\x35\x3e\xb3\x38\x0f\xae\x62\x60\x45\x0b\xea\x68\xf3\x6e\xac\xec\x9d\xc0\xa2\x3b\x7a\x8a\x61\x00\x1e\x13\x2b\xf7\xb2\x5f\x62\xaa\xe0\x6b\x16\xeb\x39\xe4\x1d\xe4\x5e\xee\xe7\xa9\xbd\x9d\x2e\xec\x59\x98\xc0\x8b\xac\xed\xf1\x9f\xcd\x34\x1c\xd0\x4c\x4b\xd8\xf8\xc2\x28\x70\x0e\x51\x4c\x40\x1a\x93\x9b\x8d\xd7\x8d\xf5\xd1\x81\xbf\xf9\xe1\x8a\x08\xdf\xda\x35\xc2\xc9\x16\x2a\xa5\xa5\xf6\xfe\xf1\xa5\xba\xe0\x0d\xb7\xa0\x69\x70\xb1\xc2\x7b\xb3\x91\xef\xc7\xe0\x41\x92\x9b\x7c\x03\x2c\xff\xe7\x33\x6c\xf6\x6e\xe7\x98\xae\x16\x61\x8e\x62\x27\xa5\xf6\xd4\xc6\x00\x66\xb1\x35\x5d\x5a\xad\x89\x56\x7e\xb6\xb6\xef\xdb\xc5\xa2\x8d\x1a\xff\x55\x1a\xa7\x8b\xc6\xea\x7c\xe5\xa6\x2c\x26\x57\x72\x5f\xd6\xf3\x97\xf2\x70\x74\x4f\x91\x91\xc6\x19\xef\x90\x25\x62\xa5\x82\xc7\xfa\xae\x0f\x81\xa3\x13\xf7\xb9\xb6\xf5\xa4\xcf\xc7\xc3\x43\x67\xe8\x5d\xb9\xfb\x78\x63\x61\xa1\x85\x76\x44\xe4\xe0\xe2\x99\xf7\x72\x3c\xd1\xdd\xd1\x02\xc3\x38\x0b\x76\x8a\xdf\x63\x5a\x11\xf7\x46\x1f\x26\xb5\x6a\x14\x71\x53\x3d\x65\x36\xfb\xa3\x9f\xb8\x02\x78\x75\x47\x8b\xd9\xea\xec\x79\x9e\x73\x94\x3b\x57\x11\x9c\xda\x87\x24\x62\xfe\x8d\xc9\xa5\xc8\x4c\xa8\x65\x45\xd5\x3c\x58\x17\xde\xe1\xaa\xb2\x79\xd5\xd3\x61\x60\x67\xe0\x75\xb6\xd8\x95\x5f\x86\x6f\x35\xb1\x8a\x88\x71\xa9\x9a\xc9\xee\x35\xcc\x41\x7b\xde\xb1\xa4\xb3\x65\x68\xa3\x0c\xe6\xd2\x5c\xf0\x12\x8b\xb1\xc3\xe2\xee\x69\xeb\x6c\x2e\x23\x3f\xe3\x19\x8f\x3e\x35\x87\xee\x88\x84\xa9\xb9\xda\xe5\x3e\x84\x75\x2f\x27\x68\x13\x1d\xac\xfb\xd7\x1e\xbc\xbe\x0e\x6c\x32\x76\x9c\xbc\x58\x1f\xda\x0f\xe1\xb2\x0c\x08\xe5\x63\xfd\xb6\x7b\x9d\x16\x86\x62\x70\x9b\x22\xf9\x87\x63\x82\x4d\x69\xc7\xe8\x98\x9c\xe7\x74\xd4\xa5\xa6\xab\x39\xfa\xa9\x5e\x40\x8d\x10\x86\xa0\x61\x5c\x21\xeb\x47\x0b\xf1\x0d\x10\xf1\x10\x8c\xd0\xb9\xc3\x89\x17\x61\x6f\x9b\x8d\x62\x47\xb3\x6b\xe2\x38\xfc\x3d\xa6\x7b\x75\x3b\x3d\xc2\x49\x65\x4f\x7e\x6d\xb6\x6c\x7a\x12\x2f\xc2\x70\x6f\xe0\xe6\x6c\x87\x98\x46\x6f\x63\xac\xe4\xe0\xe2\xaf\xda\xe4\x90\x59\xce\xc6\xc8\x5e\x55\x8f\xde\x10\x49\x55\x5d\xbb\x55\x9c\x9b\xc5\xcc\x92\xd6\xc1\xd0\xda\x01\x73\xa7\xe2\x26\x87\x2f\xdf\x96\x01\xb2\x55\xfb\x68\x5a\x44\x73\x36\x8b\xa5\xf7\xd9\x15\x03\xf6\xd2\x96\x98\xf7\x9a\x05\xf0\x91\x86\x21\x73\x71\x27\xaf\xde\x8f\x7c\x29\x4d\x34\xd5\xca\xde\x87\xe0\x88\xae\x32\x1a\x8d\x5c\x2a\xe8\x5b\x60\x13\x1a\x82\xd0\x47\x25\x2c\xfa\x21\x57\xce\x06\xac\x73\xbb\x50\xa0\x8d\x44\x62\xcc\x92\xd9\x40\xb8\xd2\xe0\xbb\xb0\x3e\x0a\x94\x42\x3c\x48\x16\xb1\x77\x9d\x8e\xa5\x07\x2a\x9b\x84\x92\x9a\x1d\xc0\x2e\xa9\x7f\xea\xb0\xa9\x6c\x28\x0e\xa3\xef\x08\x63\xca\x07\x36\x90\x96\x15\xfc\x3e\xd0\x6a\x17\x15\xde\x04\x25\xf8\x60\x7f\x65\xed\x74\xe2\xec\xd0\xa3\x4c\x72\xa9\xce\xf6\x60\xde\xf5\xa4\x48\x4b\xbd\x4b\xe2\x73\xe6\xb6\x2a\x3d\xd9\xfe\xcc\x6d\xb5\xf9\xd0\x99\xae\xe7\x11\xc5\x79\xe5\x50\x65\x36\x47\xa3\x35\xe5\xf8\xb3\xfa\x46\xa6\x4b\x66\x4f\xf0\xba\x32\xeb\x4f\x8f\x61\x1e\x98\x91\xce\x66\x5b\x9b\xe9\x32\xd1\xe7\x46\x2c\x6b\x72\x3a\x73\x76\xc7\xbb\x2a\xe2\x59\x0b\xda\x67\xf2\x00\x4b\xfe\x5d\xeb\x37\xbe\xb7\xdd\x51\x4b\x86\xf5\x63\x1d\xa7\x27\x81\x5e\x76\x2a\xa8\x6b\xad\x92\x95\x99\x60\x91\xbc\xbb\xe2\x8f\x5f\xc7\x4d\x52\x86\xed\x6c\x28\xc7\x63\xe8\x15\x23\x45\x4f\xb9\x14\xf0\xc6\xa6\x6d\xa7\xdf\x6b\x6c\xdd\xd8\x4f\xf6\x72\x99\x28\x4a\x05\x7a\x70\x4b\x91\x36\x69\xc6\x7d\x40\xcb\xd9\x89\xd2\x2a\xfa\x36\x90\x5b\x63\x61\xd1\x84\xfb\x36\x30\x27\xb3\xf6\x87\xdd\x3e\xfd\x73\x39\x41\xd5\xbf\xe1\xa6\xe1\xf4\x21\xcb\x85\x7e\xb3\x49\xa3\x83\xfe\x98\x27\x1b\x2d\x13\x15\xaa\xbd\xee\x2e\xa8\xaf\xd7\xb5\xac\x4f\xc1\x1e\x9f\xf1\x82\xf7\xf4\x8c\x4a\xd8\x8a\x1d\x53\xdf\x07\x38\x3b\x4d\xee\xad\x09\x99\xe7\x20\xed\xaa\x8c\xe8\x6b\xa7\xe4\xd0\x1e\xcb\xa2\x6b\xa7\x83\x77\x1f\x2b\x0e\xbf\xfe\xd3\xb3\x35\x6e\xea\x45\x5a\xb9\x47\xac\xf3\xbb\x37\x8d\xe3\x78\x68\x93\xa2\x1e\xfe\x3b\x55\x3b\xd5\xd1\x8f\x29\xd5\x6e\x0f\xbd\x8b\x58\x87\x0e\xe2\xbe\xa1\x6b\xab\xf3\xa8\x48\x39\xe9\x51\x88\x96\x76\xb0\x56\x8b\xab\x64\x61\x1e\x78\x75\xcf\xa6\xd0\xbd\x45\x5b\x2d\x2f\xf6\xa4\xe1\x3a\x64\xae\x7b\xc6\x7e\x9c\xe0\x4f\x6d\xee\x1b\xb0\x68\xda\x76\xb5\x76\x27\x04\xb4\xfc\x29\x35\x5a\x57\x17\xfe\x2e\xdc\x75\xd2\x0f\x3e\x16\x0e\x14\x7d\x62\x8e\xfb\x10\x0c\xb0\x54\x80\x07\x00\x00\x10\x00\x00\x00\x12\x20\xbc\x17\xae\xd7\xab\x87\xca\xff\x00\x40\xfc\x06\xf8\x8f\x40\xd7\xe8\x4c\xff\xf1\x99\xbf\x0d\xda\x6f\x2e\x1f\x0b\x70\xd1\xdf\x9c\x00\x00\x00\x3c\x00\xf2\x7f\x9f\x01\xee\x10\x46\xfa\xc6\xfa\xdb\x92\xaf\x5e\x49\x01\x01\x4e\x8b\x57\xb3\x24\x62\xe7\x3e\x42\xe8\x58\xbd\xfd\x00\x40\x36\x08\x56\xd5\x1d\x22\x69\x09\xc6\x9a\x50\x1d\xd2\x7f\x47\x5d\x2f\xed\x7f\xd4\x69\xe0\x98\xaf\x9b\x9a\x96\x86\x6c\x72\x59\x8c\xcb\x00\x4d\x68\xaa\x95\xf3\xf2\xcb\xb5\xf4\x4f\x4a\x9a\xa6\xe2\xad\xcf\x45\x54\xf9\x8c\xa4\x0e\x5d\xb2\xc0\xc7\xd5\xc5\x35\x83\xe7\x51\xfa\xf5\x52\x8e\xb8\xab\xa7\x6c\x8d\x01\xba\x99\xd3\x13\x98\x13\xc8\xe7\xe5\x8d\xc4\x38\xa9\xce\x36\xe1\xde\x0f\x6e\xda\x31\x1a\x8f\xe6\x14\x98\x30\x52\x71\x8f\x88\x76\xce\x05\x6a\x4b\xb1\x87\x88\xf1\x5b\x7d\x1c\x9e\xdb\xbd\x63\xdc\x69\x0a\x13\xa9\xcf\x04\xdf\x2e\xbf\x9e\xad\x0c\xa1\x15\x2b\x8b\x0b\x2e\x2a\x0d\xcb\x16\xb3\xa7\x2f\x9d\x8c\x52\x5f\x16\x31\x26\x8c\x16\xc0\x74\x8d\x98\x74\xde\x55\x51\xb2\x6c\xbd\x9b\x1d\xe2\xa9\x9f\x10\x7e\x8e\x3b\x53\x27\xb8\x46\x8d\x1b\x0e\xfb\x66\x20\xe8\x1e\xd9\x68\xa9\x88\x0b\x24\xc9\xd6\xe5\xd8\xa6\x1b\x70\x2d\xdc\xef\x6a\x51\xc7\xef\xc2\x9f\xad\x9f\x10\xff\xa9\xc4\xaf\x66\xdb\x54\xd0\xcb\x0f\x63\xfa\xb3\x5b\xb7\xd7\x18\xea\xc2\xb4\xa0\xe6\x59\xfd\x29\xca\x39\x39\x89\x6a\x94\x7b\xe3\x94\x2e\x83\x39\x36\x69\xf5\xb2\xfe\x18\x9a\xbe\xc4\x1a\x9e\x90\x6f\xc3\x7c\x40\xce\xb4\xcd\xce\x54\x10\xdf\xfd\x1e\xca\x06\x2e\xa0\x0a\x34\x5c\x72\x61\xb3\x73\x22\xf9\xe9\x1e\x4c\xef\x9e\x91\x64\x4d\x3e\xa8\x14\xfd\xd0\x26\x6f\xc4\x13\x98\x26\xcb\x39\xae\x61\xf0\x02\xcf\xb1\x9f\x2c\x58\xa3\x7d\xc4\x3e\x50\x3f\xfc\x80\xc6\x75\x90\x79\xb3\x36\x96\xc9\xee\x6b\x57\x08\xd5\x68\x01\xc6\xeb\x41\x61\xfd\xdc\x78\xe5\xd6\xda\x54\xdc\x88\x50\xec\x6f\x8a\x2c\x26\x53\x60\xcf\x41\xe7\x30\xc4\xea\xa2\xcb\x4f\xe4\x8a\x3c\xc0\x0b\xa9\x4b\x97\xe6\x72\x42\xc6\x5b\x15\x67\xd4\x47\xab\x18\xbd\x86\x16\x6b\xdc\x17\x93\xdf\x11\x05\x1f\x39\x44\x1f\xe9\xda\x1a\x0a\x44\x1c\xf7\xae\x28\x45\xb4\xf9\x17\xd0\x96\xa4\x77\xb4\xa5\x38\xa5\x0d\x52\x53\xc7\x2a\xfc\xfb\xa5\xa6\x24\xa6\x8d\xb2\xad\xc9\x36\x6f\x0f\x95\x30\x22\x0a\x1b\x3b\x45\x20\xbb\x27\x80\xd0\x9a\x8c\xa3\x31\x3e\x10\x99\x77\x06\xe6\x7c\x10\x3c\x41\x8a\x2e\x08\xc3\x1c\x9d\x8e\x29\xce\xec\x1d\x60\xd8\x66\xf3\xbc\xf9\xf6\xc4\xf6\xf7\x17\x2c\x5b\xe4\x83\xf7\xa4\x7d\x88\x3d\x2b\x63\x6b\x16\x01\xae\x9c\x40\x94\xc5\xa4\x62\xfa\x2d\x39\x27\x3f\xf1\x2f\x8d\xd1\x18\xb2\x73\x8e\x78\x37\x91\xe7\x3d\x95\xbb\x90\x19\xaf\xaa\x78\x04\x69\xf7\xe0\x28\xef\x5e\xd7\x6a\xd2\x18\x2e\xe7\x3c\x38\x98\x7b\x53\xd2\x25\x07\xa8\x05\xe3\x4e\x5f\xd7\x25\x76\x60\xdc\xd4\x8a\x3c\xdd\x99\xc5\xb8\x6c\xf6\x8e\xfc\x2d\xae\x98\x3a\xac\x03\x70\x52\x63\xcc\x8c\x10\x4c\x55\xf7\xc6\x16\xe5\xf1\x9e\x61\x8a\x44\x75\x9e\x8b\x35\xa9\x49\xd4\x25\xd8\x5d\x1c\x6d\x77\x22\xa2\x77\x9b\xff\x26\x30\xe4\x5e\xfd\x50\x3d\x97\x35\x59\x33\x4d\x17\x17\x01\x84\x7c\x02\x46\xee\xb1\x8a\x3b\xb2\x6f\x29\x09\xb9\x65\x1f\x5a\x56\x1f\x21\x30\x19\x31\x10\xb4\x46\xae\x20\x1d\x5a\xfb\xee\x42\x60\xd7\x27\xf1\x66\xbb\x44\x1e\x71\xda\xe3\xbc\xd5\x6d\x18\x71\x3b\x20\x1f\xe6\x95\xe9\x82\xa2\xbe\xbe\xba\xbf\xb5\xdc\x72\xed\x95\x19\xd0\xd7\x28\x8d\x48\x0b\x18\xc2\xb8\x78\xf7\x11\x5a\x4a\xb1\xfb\x73\x16\x9e\x88\xd2\x65\x01\x13\xfa\xf6\xeb\x40\x75\x97\x86\x57\xcb\x6f\x17\x9a\x02\x87\x2a\xe5\x65\x26\x0d\x2e\xca\xf7\xb9\x10\xdc\x4e\xbc\x51\x6d\x09\x15\xad\x69\x58\xdc\xb7\x44\x3d\x7b\x5d\x19\x4e\xe9\x02\x61\x5e\xb8\x97\x66\xac\x76\x19\x56\xee\x11\x9f\xde\x43\xa4\xc9\xf5\x51\xc1\x4a\x2d\xe7\x7f\xd0\xa9\xc5\x9e\x7a\x52\x99\x6d\xdc\x22\x42\x7a\xba\x55\x7a\x2a\xb7\x50\x76\x6a\x8f\x39\x81\x19\x4c\x9a\x91\x06\x3e\xbf\x34\xfb\x9d\xc5\x69\x58\x81\x64\x29\x40\x4d\x59\x9a\xac\x6b\xd7\x5f\x78\x2f\x52\xbf\x69\x0a\xc9\x75\x52\x13\x18\x8c\x52\xb3\x8b\x22\x5c\x4f\xb0\xa8\xcf\x3c\x67\x8d\x19\x45\x52\xd3\x8b\x82\xe0\x68\xf7\x2e\xac\x8b\x48\xc6\x35\x86\xcf\xe6\x6f\x5c\x3b\x3b\x9c\xff\xf1\x6a\x67\x31\x9b\x8c\xd6\x23\x16\x8c\x2a\x24\xcb\xcd\x5c\x85\x0b\x7a\x99\xce\xdf\x3d\xe8\xb2\x19\x33\xda\xa4\x11\x35\xcd\x6d\xed\xe5\x70\xbe\xea\x6e\x06\x34\x6f\x6b\x39\x4a\x89\x11\x4d\x61\x8e\x3a\xe2\x1d\xcd\xe0\x2c\x29\x7d\xc1\x05\xc9\xaf\xa7\x0f\xba\x37\x53\x7b\x27\x2a\xca\xf0\x86\xcf\x06\x75\xee\x77\x63\x5a\x2e\xa7\x8b\x1a\xf4\x4b\x0b\xfc\x93\xf1\x16\xe8\x9a\xc4\x61\x6d\x62\x3d\x49\xe5\x64\x3d\x09\x92\x8f\x9b\xf5\xb3\xa7\xf6\x88\xa3\x62\xd5\x71\x6d\x23\xfd\x03\xba\x39\xef\xb9\x7b\xdb\x19\xd1\x61\x2a\xdd\x2a\x0f\xd5\x68\x4e\x63\x4a\x6c\xc8\xbe\x91\x2d\x8a\x74\x19\xdd\x02\x37\x52\xa5\xe8\x26\xc6\xc9\xa0\x4f\xd5\xa6\x4f\x1a\xbb\x07\x7b\x5b\x9e\x0c\x82\x96\xeb\xdf\x4b\x19\x35\x15\xe0\x9f\x94\xb1\x4f\x86\xb9\x16\x1d\x7e\x9f\xbf\x4b\x6b\x28\xb0\xb2\xa7\x8d\x99\x1f\xde\xf1\x1a\x99\xcb\x50\x78\xb2\x86\x3a\x9f\xa7\x26\xc9\xd2\x0c\x8a\xce\xfe\x8e\xdb\xb9\x90\x84\xe1\x2c\x34\xac\x39\x30\x76\x92\x12\xfb\xba\xe2\x6f\x1e\x66\x07\x02\x0f\xc7\x23\x7b\x16\xd3\x1a\xa9\x5f\xad\xcb\x73\xf0\xf8\x8e\x38\xf0\xc4\x95\x40\x83\x99\x72\x70\xd9\x26\x48\x73\xa3\x45\xc8\x26\x99\x93\x10\x89\x54\x82\x4f\x86\x57\x39\x0f\x85\x16\xe3\x08\x61\xcd\x11\x8f\x72\xac\x69\x1a\x12\x09\x53\xf6\x21\x20\xde\x80\x50\xe0\x3f\xac\x51\x35\xf6\x28\xcd\x4e\x21\x66\x6a\xb6\x34\xc4\x56\xb2\xf1\x23\x67\xa3\x74\x1a\x92\xad\x1b\xd3\xaf\xf7\x43\x7b\x65\xcd\x64\x1a\xc1\x92\xaf\x13\xa7\x26\x32\x6e\x53\x4d\x81\xcc\x3e\x63\xc6\x84\xb2\xcd\x1b\xf1\x9a\x06\xe3\x9e\x46\xc2\x3d\x9b\x79\x96\x24\x24\x1b\x3c\x21\x66\x6a\xe5\xc9\x46\x0d\x99\xd2\x7f\x5d\x5c\xe0\x7d\xd1\xb1\xe7\x94\xa5\xd3\x2b\xb4\xc7\x05\x6e\x6f\x01\x42\x30\xf0\x70\x90\x0c\xb3\x98\x8d\x5d\x16\x01\x27\x88\xe0\x97\xad\x39\xa6\x67\x70\xf8\x4e\xda\xeb\xd3\xaf\xbb\x6d\x66\x9a\x23\xbf\xd9\x24\x0f\x8b\xff\xf5\x52\xd1\x3e\x28\x67\x02\x08\x00\x60\x9a\x6b\x88\xca\xcd\x85\x60\xad\x19\x67\x2d\xdb\x66\xad\xf9\xff\x3e\x02\x57\x5f\x7f\xbf\x9c\x61\xe8\x11\x36\x82\x51\xf5\xd7\xf4\x9f\xb6\xd1\xd6\x51\xec\xe0\x72\x60\xb6\x20\x7a\xa0\xbf\x82\x00\x68\x55\x68\x03\x68\x4b\xb1\x0e\xfb\xa4\xfb\x14\xbf\x09\x17\xe0\x1f\x10\xbb\x20\xbb\x10\x7d\x50\x3e\x90\x44\x40\xd7\x2c\x46\xb5\x6f\xb5\x57\xf6\x9c\xf6\x1d\xd7\x30\xee\x78\x02\x11\x5b\xa1\x7e\xb0\x58\x50\xc2\xb9\x88\x2c\x10\x3c\x10\x9d\x14\x20\xf8\x84\x30\x16\xc3\x44\xf7\xb0\x67\x68\xe3\x00\xd7\x5a\xcc\xd6\x6f\xfc\x10\xbe\x01\x92\xb1\x08\x63\xbf\x7e\xe6\x4a\x4d\x97\x93\x0b\xcf\xb4\x19\x4a\xdd\x14\x61\x88\x48\xe5\x28\xcb\x9d\xf8\xcf\xfa\x98\x0c\x9a\xcc\xd4\x0b\x1f\x14\xde\x92\x1d\xa4\xfc\x48\xff\xed\x5d\x71\xae\xfe\x52\x3d\xf6\x9b\xb3\xc4\x52\x6f\x01\x07\x23\x66\x3e\x88\x23\xe0\x3e\xe8\x3e\x34\x93\x9a\x99\x42\x2f\x7f\x99\xf6\xae\x94\xdf\x12\xf1\x94\x27\x3d\x6b\x31\x40\xbe\xf0\x2a\x57\x2f\xd7\x4f\xdf\xd9\x20\xd2\xe0\x8f\x11\x46\x9a\x91\x06\x0b\x76\x38\x67\x78\x53\xe8\x83\xbf\x9c\x01\xc1\xb2\xc8\x72\xc2\xf2\xd9\x72\xc9\x72\x0d\x4f\x15\x0f\x01\x8f\x7a\xab\xe6\x25\x91\x2e\x85\x40\xb8\xe0\x3f\x3f\x79\x34\x2c\x6b\xcc\x64\x04\xb9\x7e\x55\xf2\x70\x5a\x66\x7c\xea\x76\xca\xe2\x70\x37\x29\xb0\x94\xb6\xe4\x91\xe4\xd7\x48\xc8\xa8\xee\x48\xc1\x2d\x22\x82\xe4\x8c\x3c\xab\x70\x9d\xd4\x8d\x10\xbc\xca\xa2\xb2\xbc\xd2\xa6\x32\x44\x79\x69\x79\x96\xe5\x5f\xcb\xe4\xd3\xf4\xd3\xd0\xf4\xe2\xc5\x52\xbe\x52\xaf\xd2\x92\x32\x54\x0b\xac\xf4\xd6\xe2\x1c\xd3\xec\xc3\x7f\x6a\x25\x17\x79\x5d\xf9\x04\x85\x12\x27\xdf\x5f\x91\x61\x83\x0d\x12\xd1\x4d\xcf\xf5\xff\x18\xad\x1a\x71\xa5\x96\xa4\x6e\x69\xe4\x27\xc3\x24\x6b\xab\xa5\xbb\x04\x3d\x04\x30\xea\x55\xc5\x10\x99\x90\xec\xc6\xf2\x0c\x01\x05\x80\x1f\x60\x07\x30\x11\x53\x10\xfd\x31\xfe\x1e\xec\xfa\x0f\x37\xfa\xa7\x1f\x4f\x9c\x0a\x65\xc3\x97\x27\x87\x2b\x47\x30\x9d\x4a\x57\x28\x7a\xec\x5b\xd4\x3d\x13\x82\xa3\x3d\x7d\x5f\x14\xfa\x88\xe7\x88\xfc\xf0\xc9\x70\x09\x7d\x02\x7d\x54\x7d\x14\x7d\x66\x64\x76\xa5\x3a\xe6\x62\xc7\xd2\xb8\xdf\x4a\x06\xee\xfa\x51\xc9\x3f\x47\x4a\x4a\xf9\xda\xe9\xc4\xff\x3d\x84\x67\x45\xcc\xed\xee\x3c\x97\x43\x33\x29\xd1\x58\x48\x1b\x28\x37\xff\x4e\x99\xaf\xe6\x20\xd7\xa1\xef\x22\x53\x49\x3f\x49\x62\x04\x33\x8d\x7e\x3f\xe2\xdd\x67\x3a\xb0\x3a\x20\xf9\xad\xa7\x36\xa0\xbb\xa7\x3e\x69\xd4\xc4\x35\xdf\xbc\x24\xa0\x5e\xa2\x96\xe5\xe5\x82\xe7\xd2\xb1\xb0\xa1\xf6\xf4\x6b\x03\xe7\xc1\x6a\xc1\x6f\xa6\x77\x76\x7b\x48\xb0\x7d\x1b\xe2\xdc\x96\x08\x00\x38\x1e\xb0\xfe\x5f\x3a\xb9\x4d\x3e\xae\x72\xcd\x25\x8e\xfe\xef\xed\xf1\xf1\xad\xc1\x0d\x9c\x99\xd9\x56\x75\x78\x7a\x78\x99\xf5\x34\xd5\x29\x70\x27\x7b\xc7\x05\xee\x10\xec\x19\x79\x87\xbf\xc3\x89\x58\x0d\xab\x07\x5d\x80\x30\x6e\x54\x46\x01\xe1\x12\xf1\x54\x54\x85\x1d\x45\x9a\xf5\xc2\x6c\xe2\xc9\x14\x24\x34\x82\x4c\x3d\xf4\x5f\x95\xc7\x85\xbd\x63\xa6\x63\x49\xe5\x96\xe5\x41\x3f\x24\x18\x95\xf5\x16\x1b\xa7\xa1\x39\xec\x9a\x06\x1a\x33\x1f\x81\xac\x17\x35\x54\x41\xd1\xdf\xd0\xe8\xc3\x23\x40\x12\xe4\x81\x0c\xa2\xc9\x14\x70\x71\xd0\x6d\x69\xde\xb2\xdd\x34\x0d\xce\x38\x2e\x7a\x0f\x0b\xf7\x8c\xf7\xbc\x1f\x52\x22\x70\x46\x98\x14\x5c\x0b\x6c\xe8\xc5\x11\xc5\x48\x4e\xa8\x77\xd0\xec\x06\xf2\xa9\xea\x5a\x9f\x0d\xbf\xeb\x9d\xeb\x22\x1b\xcc\x2b\xbf\x34\xbd\x34\x96\xb4\x6a\xb4\x05\x57\x11\x56\xb4\x56\x42\x96\x43\x96\xb5\x57\x28\x1e\x23\xa2\xa5\xa3\xa5\xa2\x53\x8d\x9a\xf6\x0a\xf7\x1a\x1a\x52\x1b\x32\x9c\xda\xd8\x07\x16\x26\xa9\x9c\x20\x96\xd4\xdd\xbe\xbb\x09\xb6\x0c\x76\xcd\xfa\xcc\x7f\xac\xa8\xf4\x51\xdc\x12\x3e\x25\x5f\x87\x74\x56\x74\x4d\xf9\x04\x7b\xff\xf4\xfe\x41\x72\x4f\x74\xff\x75\x54\xb3\x4d\xb2\xb7\x75\xdc\x83\x4f\x8b\x83\x06\x43\x18\x70\xd5\xe7\xdb\xa7\x88\x06\xa7\x10\x52\x1e\x2c\x1e\xac\x9c\xf7\x96\x77\xb5\x13\xb5\x13\x29\x59\xf7\x0d\xdd\x80\x1c\x95\xa2\xa7\x00\x39\x7f\x2e\x7f\xcb\x68\xc1\xd0\xc7\xb0\x1e\x17\xbd\x01\x84\x32\x14\x01\xa2\x01\x41\xdd\x0c\xdc\x3c\x85\x43\xc2\xab\xef\x5a\xd4\xab\xde\x5a\xde\xda\xde\x5a\xdc\xda\x94\x6b\xff\x88\x7b\x4d\xaf\x4e\x71\x2d\x12\xf6\xf4\xf0\x34\x7b\x75\x7e\xb5\x7d\xf5\xe1\x85\x4b\x84\x74\x11\xe2\x63\x01\xc8\x42\xb2\xe9\x43\xc1\xd7\xe2\x5a\xc3\x0c\xf7\xc9\x5d\xe3\x1b\x2b\x0e\x96\xe2\xff\xa6\x2f\x47\xe5\x8c\xc6\x50\x82\xfd\x21\xc4\x3a\x6f\x69\xc9\xed\x92\xde\x2e\xdf\x55\xe8\xdb\x0f\x59\x0b\x69\x0d\xe0\xeb\x15\xb6\xc7\x48\x14\x42\x8c\x14\x82\xa8\x0e\x7e\xdb\xf1\x70\x27\xe9\x0e\xd5\x74\x66\x6d\xc7\xdf\x88\xbc\x14\x8e\xc9\x35\x9b\xc1\x7f\x65\x33\x32\x24\x47\x32\xe5\x62\x83\x4b\x1b\x9f\x30\x3a\xa4\x7f\x23\xd1\x8e\xb6\xe9\x75\x35\x84\xab\x53\xd1\xc0\xb3\x32\x32\x3a\xb7\x62\x1a\x64\x3c\x68\x76\x1c\x6e\x3b\x5b\x97\xb9\xa4\xd1\x0b\xab\x01\x71\xef\x74\x5c\x0f\x3c\xe3\x75\x86\x3c\x5d\xc7\xea\x81\xaf\xf6\x15\x10\x38\x83\xc2\xfc\x83\xa3\xfa\x0d\x76\xca\xaf\xff\x3c\x87\x23\xe4\xfd\x28\xc5\x3b\x0d\x10\xcf\x03\x4a\x86\x42\x86\x09\x57\xcc\xe8\x3a\x13\x6f\x48\xd4\x28\xc1\x32\xfd\xad\xd8\x31\x6d\x85\x23\x0e\x30\x33\x40\x7e\xd4\x0f\x53\xdf\xcd\x7a\xe6\xe8\x8e\xd8\xda\xab\x84\xa1\xba\xfd\xf6\x17\x8e\x94\xcc\x9f\x16\x90\xbb\xd2\x6c\xb3\xc6\x39\xd2\x6c\xb3\xc6\x05\xb7\x52\x75\xf3\x65\x6a\x95\xba\xb1\xc2\xcd\xb3\xf6\xd8\x25\xb1\x1a\xeb\x6b\x8c\x94\x26\xb1\x18\x07\xb5\x8f\xd1\x26\xc6\xe0\x21\xd5\x8d\xe1\x87\x21\xe3\x68\xc1\xb9\x1a\xe6\x9a\x27\x72\x4c\xd9\x1e\x66\x9b\x27\x61\x2e\xa0\x3d\xe4\x5a\x8b\x79\x8e\x9f\x70\xce\xf9\x06\x86\xd4\xe4\x1f\x3f\xe2\x74\x47\xdc\x8c\x88\xd9\x65\x7f\x46\xe8\x8e\xc8\xd9\x69\x69\x3d\xb0\x7b\x71\xbb\x9c\x2a\xf0\x68\x2e\xa5\x4c\x0f\x63\x32\x0c\x4b\x25\xc5\x0e\x43\xde\xf5\x6f\x25\xbd\x0c\x0b\xdd\x2d\x78\x66\xfc\x2b\x96\x4f\x9b\xc8\x69\x8c\xb8\x22\x12\x1d\xab\xf2\xdf\xaf\x3e\x93\xf2\xd8\x94\xb0\xcb\xf1\xcb\x83\x4f\xf3\xc4\x4b\xe9\x10\x16\xbc\x1e\x54\x60\xca\x35\x92\x6a\x2a\x4e\xb0\xdb\x43\x89\xf3\xec\xcc\xab\xb6\x4e\x73\x78\x35\x68\x4e\x0d\x55\x86\x1b\xd9\xa1\x26\x70\xd9\x87\x2b\x59\xdf\x26\x80\x4e\xc3\xb9\x1e\x76\xbe\xe9\xfa\x98\x76\x08\x36\xc8\x6b\x63\x8f\xf5\x05\xe7\x1c\x1d\xfd\xbe\x2d\x01\x5c\x8b\x87\xbf\x38\xcd\x61\x37\xf4\xd1\x64\xfd\xc5\x6a\x61\x50\x7a\xf1\x5a\x21\x31\x88\xfb\x65\x9e\xbf\xe5\xec\x70\xbb\x8b\xb0\x04\x89\xf0\x17\x8a\x08\x24\x0f\x58\x6a\xa0\xf2\x6d\x93\x66\xfa\x47\xd8\x23\x12\x0f\xd0\xbb\xc3\x01\xc9\x05\x86\x9f\x9e\x09\x44\x58\x57\x92\x1c\x1e\xfe\xc0\x71\x8f\xfc\x74\xad\xd9\x70\x7b\xda\x7a\xe9\xd0\x48\xd1\x5b\x45\xe7\x07\xac\x21\x8b\x41\x00\xbc\x9b\x92\x5e\x02\x57\xff\xbf\x53\x40\x8f\x9d\xa6\xf4\x3f\x7e\x99\x7f\x4c\x2b\xe0\xa8\x88\x90\x88\xf8\xfd\x57\x91\x22\xd5\x6f\x44\xce\x5f\x55\x8a\x34\xf3\x88\xc8\xbf\x0a\xa6\x29\x1b\xbf\x55\xfd\xca\xb0\x87\x1e\x1e\x94\x72\xe0\xfd\x03\x48\xe9\xfd\x6e\x0f\xb5\x0e\xf9\xd4\x5f\x70\x4d\xd8\x09\x8b\xd8\x09\x97\x33\xf0\x74\x0d\x87\x91\x40\x49\xa9\x44\x49\x34\x2a\xf1\x2f\x0e\xbf\x10\xe6\x44\x58\x3c\x56\xd3\x18\x19\xdd\x18\x15\x28\x51\x1d\xe7\xb5\x0f\x15\xa5\x18\x6a\x9a\x2f\x66\xce\xa9\x15\xc3\x55\x70\x71\x0c\xe0\x0d\x00\xe7\x56\xd0\xe6\x75\x1c\xd3\x79\x86\x6f\xe6\xdb\x69\x04\x01\x19\x60\xc6\xfb\xa4\xeb\x78\x2b\x89\xce\x86\xa9\x6b\xc5\xac\x11\xef\x96\x59\x5d\xa3\x36\x8c\xa6\x96\x51\xb3\x63\x4b\x76\x3c\xdc\x81\xba\x11\x2d\x3b\x3e\xcf\x3c\xdd\xfe\x76\xbb\x4c\x82\xfd\x35\x37\x12\xef\x44\x5f\xd4\x86\x88\x12\x85\xe8\x40\x51\x3a\x25\x89\x46\xcc\x0f\x10\x74\x9d\x90\x35\x86\x38\x21\x86\x3a\x88\x1e\x4f\x47\x7c\x54\xb6\x3e\xac\x92\x3c\x63\xd4\xd6\x31\x28\x93\x6c\x49\x8a\x02\x75\x94\xfe\x36\xed\x3d\x0f\xa3\xc2\xb9\xdc\xbf\x3c\x17\xbf\x4c\xde\x32\x2c\x3d\x3f\x99\xae\x10\xa5\x94\xe0\x34\x29\xda\x5c\xc2\x6c\x56\xcc\x99\x73\xe3\xd7\xd3\xac\xd1\x3d\x61\x97\x3c\x62\x97\x42\xce\x1c\xea\x3d\x4d\xc2\xfc\x3e\x4b\x91\x2c\xd1\x1c\xf8\x9e\x1d\x73\x82\xbc\x61\xd0\xfd\xd0\xbf\xcd\xf8\x32\x4d\x9d\xcb\x90\x28\x63\x14\xbb\x6e\xc1\x1a\x71\x6d\x3c\xba\xee\xee\xfc\xc7\xb8\xb5\xbe\xc2\xb2\xf6\x63\x14\xc1\x46\x94\x63\x43\x2b\x09\x29\x6b\x61\x20\xa4\x22\xac\xa5\x10\xe6\x31\xc0\x47\x1f\x5a\x36\x00\xa6\x16\x16\xad\xb5\x16\x55\xbe\x8f\xd3\x1d\xa2\xa7\x73\x59\x97\x3d\xe6\x19\x5d\x30\x66\x6b\x4c\xef\x40\xef\x4e\x10\x3a\x3c\xd0\x59\x38\x20\x57\x79\x9a\xf2\x18\x3b\xf2\x9b\xe8\x35\xe5\x04\x86\x2b\x82\x57\xb0\x51\x3f\xde\xd7\x00\x89\x1d\xe0\x83\xff\xff\xdc\xa9\xa0\xd1\x01\xa9\x00\x6c\x40\x04\x00\x06\x00\x09\x50\x04\xe8\x03\xdc\x00\x00\xc0\x06\x62\x0a\x00\x0a\x00\xe1\x0e\xc1\x30\x54\x94\xf7\x0b\x02\x10\x32\x73\xf5\xea\xd4\xf7\x43\x5e\x84\x6f\xd3\x5c\x52\xc4\xd4\x00\x82\x83\xbd\x57\x07\x42\x13\x46\x07\xfa\x43\x81\xb7\x97\x99\x80\x01\xe9\x8d\x08\x37\xc0\x36\x56\xbf\x30\xe3\x9d\x65\x91\xd1\x51\xd6\x25\x03\x9a\x6f\x23\x6f\x58\xd8\x2d\x1c\x8f\x6a\xa3\xc0\xc4\xf9\xde\xad\x3b\x32\xe9\x53\x6a\xe4\xfa\x81\x99\x6d\x48\xfe\xcb\x54\xff\xcf\x3d\x89\xa7\xa9\xd8\x17\x85\x21\xd3\x83\x9f\x80\x6c\x0e\x75\x4b\xff\x08\x79\x5b\x1f\x6d\x48\x1f\xef\x58\x0f\x3d\x7b\x4b\x06\x1b\x7b\xd5\xc0\x44\xe6\xda\x11\x41\xb0\x07\x31\xde\x50\xfc\x81\xfa\x6f\x29\x1b\xd5\x44\x35\x65\xba\x05\x2c\x73\xbd\x8e\xd5\x39\xf4\x45\xa8\x15\xf2\x9b\xcc\x5d\x77\x85\x1f\xb4\xe5\x36\x95\xf4\xe4\xc0\xcd\x2b\x61\xd5\x05\xdd\x4c\x6e\x14\xb5\x40\xbe\x62\x1b\x72\x31\x31\x1e\x4e\xf9\x5c\xee\xcb\xbf\x55\x4b\xc2\x44\x9c\x1a\x2e\xd3\xfd\xe5\x91\x37\x59\x53\x65\x02\x24\xf7\x2d\x84\x1f\x5b\x1b\xbf\x6f\x46\x35\x57\x9a\x5d\xbb\xc0\xce\x08\xfd\x83\x8a\x55\x17\xf8\xf4\x79\xb5\xa7\x43\xb2\x4a\xea\xd7\xa2\x6a\x4a\x8d\x12\x17\x01\x8b\x43\x1a\x6f\x99\xda\x46\xff\x4c\xdd\x92\x1e\x23\xfb\x4d\xcb\xae\x87\xb0\xd4\x37\xcb\x1b\x40\xff\xae\xa3\xa7\xbc\xbc\x26\x08\xa6\x44\xeb\xee\xda\x03\x6a\x0c\xd7\xf1\xdd\x96\x11\x26\x6d\x17\x38\x77\xed\x3b\x1a\x4a\x77\x35\x54\xbf\xa4\xfd\xdb\xff\xae\xd0\x5f\x52\x15\xb5\xfa\x35\x42\xff\x6a\x3c\x8a\x5a\xb2\xc6\x48\x03\x4a\x9d\x55\x29\x79\x54\x13\xa9\xcd\x59\x11\x64\x42\x60\xeb\xc6\xb5\x53\xae\xac\xe3\x9a\x26\x8d\x54\x64\x4f\xdb\x97\xb8\x7d\xd8\xdb\x3d\xb0\x98\x4d\xd9\xb1\x6c\xa1\x04\x55\x04\xfb\xff\xb7\x6b\x59\xf7\x05\xba\x88\x40\x00\x00\xbd\x67\x35\x1b\x7a\xff\x95\xd6\xbf\x97\xc4\x26\x36\xf3\x7a\xa1\x4b\x68\xa1\x32\xd2\x9a\xbf\xe9\xb1\xe5\x42\xb9\x5a\x55\xbc\x0f\xf8\x1c\x96\xb3\x95\x62\x15\x5c\x17\xbc\x41\xbc\x2e\x27\x8b\x05\xea\x39\xbe\x50\xb0\xc8\x78\x5c\x86\xf3\xa9\x0e\x98\xd4\x72\x69\x5c\x46\x8b\x99\x1e\x88\xd8\x8c\x9a\xcd\x86\x0b\xe9\x2e\x04\x5c\x36\x2b\xcd\x46\x4b\xd9\x3e\x70\x28\x44\x40\xd7\xdd\xf9\x34\x27\x1c\x26\x9d\x36\xd7\xbd\xc5\x2c\x2f\x54\xe2\x9f\x1e\x8f\xbb\x0b\x19\x6e\x24\x02\x3e\x2f\x8f\x7b\x4b\x39\x7e\xe8\x4a\xac\x0e\xf0\x52\x74\x16\x78\x62\x26\x7f\xb7\xc9\x18\x71\x01\x00\xff\xe3\x89\x27\x8a\xb5\x66\x8f\x21\xeb\xb5\xc5\x72\xb5\x17\xfc\x95\x66\xab\x0d\x2f\xce\xf9\x7a\x39\x12\xb7\xf9\x19\x71\xf6\x02\x06\x36\x91\x04\xbf\xd2\xe2\x0c\x54\x01\x8b\xa2\x1c\xd8\x2f\xc7\x7e\x3e\x23\x86\x9b\x49\x1c\x41\xd9\x99\x3e\x82\x2c\xfe\xb9\x11\x68\xd4\x4a\xd6\xd1\x88\xaf\xe5\x87\x1e\x08\x58\xc7\xbe\x22\x61\xd8\x86\x89\x7f\x64\x13\x78\x96\xa9\x3b\xe2\xb8\x16\x58\x5e\x99\x4e\x23\xe8\xc3\x99\x75\x53\x65\x33\x43\xb8\x56\x99\x37\xd4\xa9\xe6\xf1\xa3\xc5\xa9\x96\xe9\x27\xa6\xa9\x16\xc9\x2b\x87\xa9\xe3\xad\x1e\x87\xda\xfa\x79\x62\xd8\xda\x86\x65\x26\xc9\xda\x7d\xb5\x49\x3d\xd0\x7d\x81\x71\x50\x00\x00\xa0\x76\x5c\xd2\x6e\x8d\xcb\x72\xad\x19\xc7\xce\x70\xa0\x98\x71\xcd\xf5\x7c\xb5\xe1\xaa\x37\x8f\x62\x58\x3e\x93\xd7\xe9\xb2\xbf\x88\x7e\xc9\x76\xbd\xdd\xe9\xaa\xaf\x80\x66\x4a\xb7\xd3\xf3\xee\x72\xa0\x84\x79\xcb\xf7\xfd\xf5\x8e\x99\x94\x96\x92\x81\xfc\x07\x35\x13\x19\x1d\x15\x23\x05\x3d\x4d\x4d\x6e\x69\x61\x65\x7e\x79\x71\x75\x5e\x59\x51\x55\x41\x45\x89\x9d\xbe\xb9\xb1\xb5\xa1\xa5\xa9\xad\x81\x45\x13\xf5\x37\x62\x34\x0a\x08\x7f\x80\xbf\x5c\xb6\x6f\xb3\xcd\xfc\x7f\xfd\xae\xae\x29\xc9\xfd\x38\x6e\x38\xdb\xfd\x34\xed\x48\xd7\xfd\x24\x69\x69\xd3\xfd\x2c\xeb\x49\xe0\xf9\x38\x61\xaa\xfb\xf9\x34\xe3\xca\xf7\xf9\x24\x65\xeb\xf3\xf9\x2c\xe7\x2b\x9e\x52\x26\xee\x87\x5c\x3b\x52\x5a\xbd\xf1\x78\x1c\xbd\x42\x37\x64\xf0\x3f\x2c\x7a\xa5\x72\xd9\x36\x84\xa4\xf2\xdf\x15\x4a\x15\xf2\x5d\xb0\x51\xe9\x1c\x56\x33\xe5\x72\x1d\x28\x59\xed\xce\x67\x33\x15\xcc\x08\x05\x92\x7e\x89\xe2\x9a\x1c\x04\x61\xbb\xb4\xe1\xc9\xad\x24\x51\x37\x20\x7d\x63\x31\xab\x79\x71\x9d\xdf\x04\x6c\xd6\xa0\x52\xd6\x3d\x6a\xd9\x21\x19\x95\xe2\xc9\x54\x4e\x1c\xbd\x3d\x2f\xef\x08\xd1\x42\xd0\xdb\x33\x9e\xc5\x0d\xb5\xc0\x50\x49\x29\x8b\x5d\x5f\x3e\xd5\xb8\x5a\xa5\x56\x83\xed\xff\x71\x88\xf4\xf2\xff\x9f\x47\x36\xd1\xa1\x15\xe0\x56\x00\x00\x80\xd8\x95\x9b\x9f\xf1\x5a\xb3\x4d\x74\xbc\x4d\x87\xc7\xac\x17\xa2\xb1\x51\x08\xc7\x2f\x5e\x09\xa4\x52\xbf\xf7\x33\xc1\x2f\x02\xe3\x5a\xb2\x10\x7c\xd3\x56\x74\x71\x7c\x93\x46\xd6\x21\x7c\xb3\x4e\x78\xea\x74\xe3\x7a\xba\xe2\x74\xd3\x76\x3c\xd3\x74\x93\x66\xe0\x61\xba\x59\x37\x0c\xb6\x96\x71\x1d\x55\xb2\x96\x69\xdb\x77\x35\x2d\x93\x26\xce\x73\x6d\x2b\xa2\x9a\xc5\x35\x7d\x0a\xb8\x4c\x87\x7e\x32\x9f\xfb\x35\x10\x00\x07\xc9\x71\x0c\xc8\xfd\xc7\x71\x90\x53\x84\xdf\x7e\x9c\x48\x02\xe9\x6e\x82\x42\x21\xf2\x1a\x8c\x5b\x10\xc9\x3e\x0a\xad\xc2\xc5\x3e\xc9\xc0\x3e\xc1\x3a\x45\x8e\xc8\x50\x37\x81\x60\x55\x59\x0f\xa6\x26\xb0\x6e\x18\x44\xe9\xf0\xb6\xb7\x8e\xa8\x6a\x5e\xb1\x0d\xcd\xf2\xbe\xb1\x49\xd9\x78\x5c\x1e\x57\xf0\xd7\xfb\xbb\xdd\x17\x16\x00\x00\x00\x96\xf5\xd4\x2a\x6c\xd6\x9a\x9b\xdc\xbc\xac\xc9\xff\x7f\x62\x49\xe2\x1d\x98\xf3\x37\x3f\xbe\xfe\x5f\x79\x7a\x7b\x48\x71\x72\x73\x74\x75\x76\x77\x40\x5e\x5c\x5d\x78\x59\x5a\x5b\x70\x51\x52\x53\x54\x55\x56\x57\x60\x41\x42\x43\x44\x45\x46\x47\x68\x49\x4a\xcb\x54\x0e\xa9\x7b\x6f\x34\x03\x00\x00\x78\xd4\x43\xe9\x6e\xee\x6a\xb2\xb1\xb2\x5c\x73\xe5\x2b\xb7\xa1\xc9\xf6\xb8\x0c\x4e\xd1\x85\x69\xe9\xcb\x5a\xda\x84\x8e\x23\x3d\xad\x72\xdb\x7c\xdb\x2e\x50\x10\x78\xdb\xad\xb0\xeb\x7e\xdb\x29\xd1\xf3\x7d\xdb\xab\xf1\xfb\x94\x89\xa5\x95\x72\x44\x8b\x27\x57\x4d\xbf\x27\xc5\x06\x99\x8c\x24\x52\x69\x47\xff\xf1\xb8\xfd\x4e\xfb\xbb\x50\x23\x5c\xd9\x64\x4c\xb5\xf4\x77\x91\x56\x94\x96\xcb\x29\xa7\xf9\x3c\x65\xa1\x66\x84\x9a\xcd\xaa\xcb\xf1\x7c\x91\x76\x8c\xae\xcf\x2b\x32\x2e\x87\xf1\x72\x98\x92\xd1\x90\x5c\x2a\x87\xc9\x6a\xa4\xa6\xd3\x21\xa3\x46\xa3\xf1\xca\x3f\x55\xab\x45\x9b\x65\x2c\x6c\xf4\xef\x98\x2d\x26\x6b\xd1\x3a\x5e\x8f\x44\x3c\xce\xfb\xcb\xe1\x2a\x66\x60\x9d\x56\xe7\x83\xd5\x28\x6d\xb7\xcb\x9f\xe8\xd0\xa8\xdf\xd0\x01\x00\x40\xef\x69\xf2\xff\x1d\xc3\xdd\x3f\xad\x7b\x02\x04\x85\xff\xc2\xa0\x91\xff\x4e\xb5\x47\x27\x17\x0b\xc7\xa6\x50\xcb\x74\x87\xc7\xa0\x92\x4a\x26\x57\x4d\x77\xc6\x63\x33\x19\x4d\xa6\x50\xcf\xf6\x86\x41\xf8\x4e\xa7\x96\xff\x3b\xcd\xf1\xfb\x0f\xd5\x32\xb5\x02\xb5\x2c\x4f\x64\x7c\x4e\x8b\xc5\x7c\xd5\x0c\x57\xa2\xff\x07\xfb\xc9\x27\xcd\xb7\x6c\x8c\x5f\x10\x00\x80\xbf\xcf\xf9\xea\xd4\xc8\xff\xdd\x16\xac\xee\x26\xdd\x04\xdf\xef\xc7\xed\xfc\xde\x1f\xa6\xfc\x20\x20\x61\xe0\xb1\xff\xdf\x00\xb7\xe7\xdb\xdf\x08\x28\xc0\x2f\x00\x40\x08\xe7\x4f\x49\xdb\x57\xb2\x2f\x4c\xe0\x8c\xf1\x90\x61\xd3\x0a\x91\x7c\xca\xda\xde\xc3\x0b\x8c\x52\xfc\x77\x17\x73\xde\x51\x91\x24\x1d\xbe\x6f\xde\x34\xbd\x93\x15\xbe\x6a\x6a\x4a\x76\x38\x8a\x6e\x29\x5b\x52\xa9\x50\x73\x88\xb2\x28\xb1\xab\x87\x35\xb1\x0e\x29\x2e\x6d\x64\xdc\x5f\x52\x1e\x4f\x9e\x4e\xec\xb7\xd3\xe2\x28\x15\x44\xe2\x86\x1b\x86\x23\xb8\x4a\xe3\x11\xb0\x86\x2e\x1e\xaa\x33\x47\xb7\xcb\xa2\xa0\x6d\x52\x73\xcb\x41\x0b\x16\xc8\x40\xa5\xe8\x40\xa9\xd3\x4d\x47\xa4\x7f\x11\xde\x8c\xf5\x39\xe3\xed\xa8\x8d\x5d\x1d\x6e\x85\xca\x56\x3d\x06\xd7\xe0\x47\x6c\xd9\x20\x66\xeb\x15\x6e\xc4\xe9\x47\x8f\x5a\x36\xa0\x0e\x83\x45\xda\x70\x91\xb3\xdd\xdb\x79\xcf\xe1\x7a\xee\x9e\x5d\x12\xd0\x5e\x6b\x26\x08\x1d\xb3\x68\x97\x51\x68\x3b\x12\x05\x7e\x1e\xe8\x8e\x7a\x0a\xad\x03\xfb\x60\xc8\x3a\x70\x0c\xeb\x5d\x90\xf7\x9a\x7b\x1a\x30\xcf\x8e\x87\xba\xdb\x17\xef\x2e\x59\xd8\xeb\x82\x6d\x1c\x88\x97\x48\xe7\xe3\xb9\xa9\x6e\x94\x32\xe2\x10\xeb\x97\x2a\x3c\x91\xe0\x21\x20\x89\x31\x55\xdc\x66\xb0\x8a\x1a\x6e\xee\x91\x78\xb8\xe7\xfa\x5b\x89\x5c\x44\xef\x49\xa4\xe2\x98\x21\x3c\xad\x6c\xb9\x00\x6f\x33\xab\x9e\x67\x09\x16\xbb\x57\x11\xa9\x57\x0d\x41\x04\xef\xf5\xcd\xce\xb9\x54\x5a\x58\xf0\x88\x20\x6d\xf9\x93\x81\xac\xce\xde\xd1\xe1\xee\xce\x2e\x92\xc1\xfa\x9c\xf0\x9e\xd9\x84\xcb\x15\x45\x9e\xc9\x96\x58\x57\xe0\x34\x8e\x02\x93\x1d\x91\x80\x0f\x0e\x87\x1b\x95\xf9\x20\x05\xd4\x3f\x04\xee\x1b\x1d\x9c\x1c\x18\x97\x78\xe1\xfc\x4f\x67\xee\x0d\x1b\x37\x4d\x53\x63\x65\x19\xc8\xd3\xd6\xea\xe1\xfe\x62\x6e\xab\x30\xc1\x50\x49\x98\xf9\x67\x9d\xbf\xd3\x3b\x51\x10\xf2\x3f\x6d\x7a\x02\x38\x1a\x92\x03\x70\xef\x48\xff\x98\x48\x97\x9a\xbe\xb1\x81\x89\xd1\x51\xee\x4b\x47\xad\xa3\xbd\xe3\xcd\xf4\x7a\x82\xe6\xf2\xc9\xd7\x01\xe2\xfc\x55\x43\xeb\x57\x25\x19\x0b\x6b\x43\x6d\x7d\x9d\xd3\x7f\x68\xae\x6f\x6f\xee\xec\x90\x7a\x8a\xd1\x70\xc9\xff\x67\x84\x0f\x8e\x06\xe7\x89\x5b\x46\xd5\xc5\x9f\x05\x0b\x64\x6f\x86\x93\x09\xbf\x5c\x90\xbc\x7a\x87\xb9\x28\xf1\xe6\xe4\x3b\xaa\x57\xaf\xae\x17\xd0\x8a\x14\x54\x5e\xfb\x56\x28\x2c\xe4\xfe\x17\x77\xe1\xeb\x90\x43\x7f\x93\xd9\x6a\xea\x95\x1d\x25\x7d\x25\xfa\x56\x0c\xda\xaf\xe9\x2e\x0f\xcb\x97\x66\x38\xe0\xd3\x9d\x1f\xf5\xa5\x19\x56\xe6\xc8\x51\xb8\x09\x85\xf8\x38\x5d\x6d\x35\xab\x31\x88\x1b\xef\x30\x2f\x93\x0b\x13\x74\x93\x86\x4b\x69\xf9\xea\x64\x4c\x5b\x36\x67\x82\x06\xcd\xdd\x46\x67\x73\x2a\x96\xbc\x23\x80\x08\x2a\x6d\xfd\xf9\xe1\xe6\xf6\xf5\xbd\x85\x5c\xe5\x7e\xcd\x4a\xdb\x45\x86\x0c\x78\xb5\x39\xf6\x26\x7d\x79\x30\x76\x5d\xac\x15\xa6\xbc\xd0\x24\x56\x28\x58\xd0\xd8\x9c\x26\x98\x81\x07\x36\xc5\xdc\x6d\xfc\x20\x34\x3b\x09\xf5\x26\xb2\xd9\xd8\x15\x86\x3f\x78\xd4\xa1\x6c\x28\xfd\xb3\x45\x7d\xb3\x77\xd9\x70\x58\x95\x35\x97\xc3\xeb\xf9\xcf\x66\x60\xf8\xb7\x8f\xed\x53\xc0\xc3\x6d\x0d\x78\xd0\x76\x9c\xe0\x50\x25\x19\xfb\x07\xc3\x30\xfb\x61\x96\x88\x3e\xa4\x2c\x04\x49\x2a\x84\xd3\x36\x5f\x2d\x20\xda\xdf\x68\x1b\x9a\x07\x06\xec\x0f\x68\x05\x30\x05\xd0\x6f\xe3\x7f\x0b\x20\xe9\x55\xd8\xc6\xb9\x26\x78\x36\x9a\xe6\xbe\xf9\xad\x69\x5e\x16\x9f\x7a\x92\x0c\xce\xc6\xe6\x2d\xe6\x10\xb7\xde\x2a\x36\x81\x95\x4a\xf9\xf6\xe6\xf8\x12\xe6\x53\xac\x8c\x26\xd7\x55\xeb\x40\x41\x1f\x4c\x2b\xdb\xe6\x92\x04\x2f\x47\x39\xeb\x8b\xee\x4f\xd4\x34\xfd\x17\x8f\xaa\xf7\x1f\x6f\x7e\xa4\x79\xb3\x81\x88\x0c\x4b\x1e\x77\xdf\x5f\x8c\x7c\x86\xc9\xbb\x1e\x72\x2b\x33\xc7\x06\x0e\xcf\x35\x6e\xf2\x14\x72\x9f\x44\xc8\x21\xd7\x87\x2b\x71\x85\x34\x59\x0c\xbc\xef\x6c\x9e\x3a\xa3\xbc\x70\x52\xde\xda\xf7\xcf\xa2\x4e\x2f\xc2\x94\x83\xe3\xa2\xc6\xe3\x3c\x73\x5c\x93\x85\xf3\x09\x93\xa2\x82\x72\x43\xf1\x72\x6d\xe2\x90\x91\xc7\x99\x7b\xc8\x91\x6a\xcb\xee\x16\xd9\xc3\xaf\x2b\xb1\x24\xc6\x33\x92\xf3\x22\x47\xc2\x53\x3c\xf9\xd3\xc7\x11\x4d\xed\x92\x6d\xcb\xeb\xc7\x4a\x66\xc4\x66\x56\x54\x5f\x72\xb7\xea\x6a\xa2\x7d\x3f\x9e\x64\x25\x8b\xe9\x90\x3a\xcb\xd8\x55\x77\x22\xf2\xeb\x94\xe1\xcd\xff\x9c\x49\xe4\x11\x13\xd9\xa5\x44\x44\x2f\x87\x57\x87\xd6\x78\x57\x03\x88\xa6\x4a\x1d\xa1\x39\x3c\x4f\x94\xdb\x5c\x8f\x10\x6a\xf9\xea\x5a\x72\x09\x34\x57\x34\x88\x51\xf8\x77\xf3\x6e\x85\xcc\x4d\xb8\x61\xab\x15\xb8\x0c\xa7\x6f\x0c\x28\xb8\x8e\x9f\xb9\x2d\x02\x64\xe6\xc2\xdd\xf2\xcf\x12\x0e\x70\x9d\xbd\xcd\x23\x91\xdb\x9d\x0e\x87\x1d\xb7\x62\x66\xfc\x79\xce\x27\x57\x92\xce\x19\x57\x72\xdf\xb2\x2c\x34\x34\x57\x34\x53\x71\x06\xe2\x60\x2f\xff\xf2\xa7\xe4\x36\xf8\x1f\x29\x8b\x54\xc5\xc7\x60\x9c\x33\xb8\x5e\xba\xc5\xa4\xbe\x7e\x55\xae\xf3\x1d\xa2\x6c\xd4\x05\x38\x19\x9e\xee\x50\xc2\x76\x61\x76\x33\x97\x5d\x88\x90\x63\x04\x0e\x85\xb3\xad\x48\xce\x0f\x00\x07\x5e\x90\xc1\x39\x37\x77\x04\xbe\x9f\x48\x47\xdc\x92\xfb\xe2\xd6\x73\x7f\x5c\x2a\x2e\x7e\xb8\x42\x21\x70\xc1\x64\x01\xfa\x8a\x61\x3f\xf4\x55\xcb\xdd\xa8\xe9\x97\xc2\x69\x23\x7c\xc7\x24\xc0\x54\xd6\x66\xb5\x3e\xa3\x36\x66\xeb\x8f\x54\xd6\x66\xbd\xdf\xe5\x0f\x60\x37\xe8\x93\xeb\xbc\x6b\x0a\x0b\x76\xd4\x77\xb9\xf3\x25\xf8\x45\xcb\x04\x63\x3c\x45\xd7\xb9\x90\x86\xc0\x9c\x0c\xdf\x85\xc2\x56\x93\x4b\x6d\x24\x77\x92\x73\x31\xc9\xd7\x67\x73\xf1\x4e\xe9\x67\x19\x1e\x1a\x48\x16\x7f\x31\xbf\x8c\x20\x9f\x10\xd1\xf6\x5d\x2a\x60\x0f\x41\x25\xf8\xb1\xbf\x8c\x8e\x81\x49\x28\x77\x56\x72\xef\x86\x37\x83\xcd\xbc\x70\xf8\x49\xdc\x54\x41\x92\xaa\xb1\x34\xe4\x7a\xc2\xf2\x69\x91\x5e\x31\xd8\x67\x38\xf4\xce\x3a\x1b\x80\xc8\xf9\x87\x09\x9a\xef\xa3\xaf\xd0\xfb\x4b\xd9\x2e\xa1\xd8\x2e\x7f\x6b\x9f\x67\x2b\x7c\x6d\xd3\xc8\xd2\xc3\xd0\xf5\xf0\x66\xca\x4f\x14\xf2\x9f\xc5\xa9\xc3\xfd\x51\x72\xf0\xee\xd2\x58\xfd\xa6\x96\x65\x7a\x4c\x73\x3b\xf4\x8f\xb0\xcf\xd7\x0d\xbf\xd6\xf3\x7d\x2f\x27\x5e\xd7\x91\x53\xa3\xfd\x4f\xbe\x3d\x42\x21\x6b\xe4\x0a\xeb\xe8\x8d\x38\x07\xc9\x4a\xb4\x5e\x49\x68\x08\x3e\xad\x5d\x5e\x28\xd9\x0d\x42\xe2\xd3\x63\x97\x56\x19\x1a\xf4\x37\x36\x7c\xfe\xcb\x9a\xd7\xb0\x30\xa3\x74\x3d\x2d\x56\xbb\x7c\x59\x8f\xb6\xbb\xe8\xac\xaf\x4a\xe2\x72\xec\x38\x2e\xad\xe5\xdb\x9a\x9a\xc8\xf4\x90\x91\x5b\x40\xda\xbc\x8e\xfe\xd7\xb0\xf5\x34\x95\x1f\xbc\xcb\xc0\xa9\xa8\xa5\x2f\x5d\xe6\xd6\xaf\xc0\x21\x5f\x11\xef\xa2\xa0\x71\x60\x83\xd9\x3e\xcd\x54\xe7\x79\x7b\x55\x1e\x55\x55\xa5\x4d\xd9\x45\x71\x8e\x64\x17\xdb\x38\xc6\x86\x6f\xdf\x02\x75\xf6\xa8\xbd\x09\x73\xb2\x4e\x35\x37\xa6\x4d\x52\x55\x9f\xae\x53\x27\xad\x77\x11\xbc\xdc\x53\xae\x93\x43\xef\x75\x3e\xf9\x20\x28\x5d\x93\x36\x1b\x6b\x92\xa1\x85\xcf\xa8\xd1\xc2\x57\x9c\x41\xf6\x57\x8b\xbd\xc0\xa8\x12\xbb\x46\x13\x6a\x00\x74\xf5\xc1\xfd\xe9\xf6\x11\x25\x01\x27\x42\x66\xf3\x95\xcf\x79\x66\x3e\x3c\xe7\xd7\x96\x2a\x68\xe3\x29\xf0\x49\xcf\x0a\xb5\x50\xc6\xb2\xa6\x5b\x48\x59\x76\x2f\x43\x04\x07\x4b\xb6\xb6\x0e\xff\xff\x01\xab\x02\x54\xfd\xd6\xf1\x12\x9b\xde\x48\xb5\xbd\xf6\x5f\x50\xd3\x58\x68\x1c\xc6\x85\x70\xc9\x42\xe3\x8f\x1a\x1c\x28\x0b\x0d\xad\xbc\x79\x2c\xb6\x5b\xf1\xe2\xb4\x7c\x71\x56\xba\x64\xe3\xe0\x72\x95\x1e\x5c\x8b\xd2\x25\x33\x07\x93\x95\xec\x2d\x98\xea\x57\xb4\x50\x8d\x3b\xc2\xc6\x11\xf3\x38\xe2\x2a\x0e\x99\x92\xf4\xbe\xc4\x7a\xdd\xcb\x3b\xed\x84\x9b\xc2\x3c\xfe\x10\x3a\x9c\xbc\xd8\x94\x07\x91\xb2\x2c\xb9\xe5\xbd\xe3\xbd\x94\xa7\xa5\xe4\x69\x49\x77\x69\xa1\x7f\x8c\x86\xc4\x31\xf1\x13\xf1\x33\xf1\x0b\xf1\x2b\x38\xf4\x68\x3c\x21\xfa\x34\x3f\x20\x8e\x88\x63\xe2\x27\xe2\x37\xe2\x84\x38\x25\xfa\xc4\x19\x38\x1a\x10\x87\xc4\x11\xf1\x23\x91\xf4\x8d\x07\xc4\x6a\xfc\x8d\xe8\x83\x1f\x07\xc4\x21\x71\x4c\xa4\xfd\x9f\x86\xc4\x31\xb1\x9a\xff\x4c\xfc\x42\xfc\x4a\x9c\x10\x7d\xe7\xa7\x69\xf8\xce\x03\xf0\x13\x1f\xcb\x0f\x06\xed\x9f\x55\x09\xda\x0f\x95\xe4\xfc\xc6\xc6\x27\x60\x2d\x37\x7a\x7f\x1e\x47\xaa\x5e\xed\xf8\x31\x4a\xc4\x5a\x7d\x4d\xff\xbf\x05\xbb\xb6\x16\x2c\x86\xa1\x00\x98\x6d\x3d\x86\x47\x0e\x8d\x95\x6c\xff\x2d\x2c\x7c\x4d\x34\xe7\xa6\x46\x49\x51\x88\x9c\xf4\x63\x19\xf3\xbf\x79\xd7\xcd\x13\xa6\xc4\xfc\xe3\xb9\x96\x5d\x48\x94\xef\x44\xf9\x4d\xcc\x7c\xf8\x86\xed\x63\x0b\x7b\xe7\xe0\xe6\x09\x67\x62\x66\xe1\x09\x57\x62\x66\x61\xe5\xc5\x9b\x0f\x5f\x76\x36\x0e\x4e\x2e\x6e\x9e\x70\x17\x56\x5e\xbc\xf9\xf0\xe5\xc7\xc6\xce\xc1\xc9\xc5\xcd\x13\x9e\xc4\xcc\xc2\xca\x8b\x37\x3f\x36\x4e\x9a\xdb\xa4\x1c\xe6\xc2\x1a\xfb\xdd\x13\x33\x0b\x2b\x2f\xde\x7c\xf8\xf2\x63\x63\xe7\xe0\xe4\xe2\xe6\x09\x47\x62\x66\x61\xe5\xc5\x9b\x0f\x5f\x7e\x6c\xec\x1c\x9c\x5c\xdc\x3c\xe1\x4c\xcc\x2c\xac\xbc\x78\xf3\xe1\xcb\x8f\x8d\x9d\x83\x93\x8b\x9b\x27\x5c\x89\x99\x85\x95\x17\x6f\x3e\x7c\xf9\xb1\xb1\x73\x70\x72\x71\xf3\x84\x3b\x31\xb3\xb0\xf2\xe2\xcd\x87\x2f\x3f\x36\x76\x0e\x4e\x2e\x6e\x9e\xf0\x24\x66\x5e\xbc\xf9\xf0\xe5\xc7\xf6\xeb\xf7\x4f\xab\x11\xa3\xbf\xee\x5a\xb5\x4e\xb9\x17\x56\x4e\xae\x70\x14\x56\x3e\x7c\xc3\x39\x38\xc3\xf3\xf0\x0d\xdb\x43\x79\x6c\x1e\x8e\xf0\x5b\x9c\xe1\x53\xc2\xc6\x56\xb9\x79\xc2\xaf\x73\x84\xb3\xb1\x73\x71\xf3\xe6\x13\x8e\xc4\x1c\x9e\xcd\xe3\x19\x30\xae\xf5\x99\xa6\x54\xd8\xfe\x02\x4e\xba\xdd\xc4\x00\x78\x01\x63\xf0\xde\xc1\x70\x22\x28\x62\x23\x23\x63\x5f\xe4\x06\xc6\x9d\x1c\x0c\x1c\x0c\xc9\x05\x1b\x19\xd8\x9c\xb6\x32\xb8\x1b\xcb\xb3\x30\x68\x81\xd8\x0e\x5c\xbe\x8c\x56\x1c\x6a\x1c\x22\xec\x2c\x1c\x50\x01\x3f\x06\x17\x36\x03\x36\x59\x56\xb0\x00\x97\xd3\x5e\xe1\x06\xbe\x03\x9c\x07\x58\x1d\x18\x58\x18\x38\x81\x22\x7c\x4e\x7b\x19\x18\x18\x1c\x80\x10\x2a\xc2\xcc\xe0\xb2\x51\x85\xb1\x23\x30\x62\x83\x43\x47\xc4\x46\xe6\x14\x97\x8d\x6a\x20\xde\x2e\x8e\x06\x06\x46\x16\x87\x8e\xe4\x90\x08\x90\x92\x48\x20\x00\x99\x6d\xc3\xa1\xc1\x21\xc6\xce\xc2\xa3\xb5\x83\xf1\x7f\xeb\x06\x96\xde\x8d\x4c\x40\xed\xac\x29\x2e\x00\x85\xad\x29\x86\x00\x00\x00\x01\x00\x00\xff\xff\x6e\x4c\x2a\x3c\x5c\x04\x01\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.woff", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff2 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x15\x40\xea\xbf\x77\x4f\x46\x32\x00\x01\x00\x00\x00\x00\xcf\x84\x00\x10\x00\x00\x00\x01\xd0\xc0\x00\x00\xcf\x23\x00\x02\x00\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\x40\x1c\x84\x48\x06\x60\x00\x90\x6a\x08\x81\x1c\x09\x97\x17\x11\x08\x0a\x85\xee\x70\x85\xb0\x32\x01\x36\x02\x24\x03\xa0\x22\x0b\x90\x24\x00\x04\x20\x05\x86\x6c\x07\xc7\x51\x0c\x81\x2e\x5b\x45\xa8\x91\x05\xd5\x8e\x66\xb6\x8e\x2a\x04\xdf\xeb\x36\x04\xa8\x0c\x5d\xba\x6a\xff\xb9\xcb\x01\xdc\xf9\xb4\x80\xdb\x16\x60\x14\xe5\xec\xc7\x37\x57\xb0\x9b\xe0\xf5\x66\x45\x6a\x59\x98\x3b\x3e\xfb\xff\xff\xff\xff\xff\x25\xc9\x44\xc6\xec\x12\xca\x25\xa1\x05\x00\x00\xd8\x94\xa9\x9b\xea\x3f\x68\x4e\x11\x01\x73\xca\x06\xd9\xe9\xf0\x40\x69\xa3\xeb\x73\xe6\x90\x3b\x94\xdc\x64\x8f\xae\x0d\xb4\x79\x2c\xa2\xc3\x34\xbb\x74\x62\x51\xd7\x4d\x4e\x69\x5c\x75\xd6\xa3\xa4\x65\xb2\x3d\x57\x5d\x8f\xed\x2b\x47\xf9\x46\x9b\x6d\xf3\x68\x1b\x27\xba\x85\x81\x58\x17\x94\xc6\x8b\x71\x16\x6d\xeb\xbb\x95\x0c\x8a\x26\x2b\x19\x3c\x28\xd9\x19\x2c\x0c\x34\x49\x43\x8e\x70\x86\x09\x67\x85\x08\x0b\x2a\x0c\xce\xf2\x12\x2e\x66\x11\xd7\x40\x2f\x4f\x3d\xaa\xff\xe8\xa6\x1f\xea\xf7\x2d\xa3\x10\x1d\xae\x4d\x6f\x77\xd9\xeb\x0f\x95\x75\x28\xda\xb5\xd9\xfa\x65\xb7\x0e\xad\xfe\x5b\x99\x7a\x6f\x2a\x4f\xf5\x6c\xa6\x8b\x72\xb8\x7a\xd4\xf1\x32\x55\xd9\x84\x27\xbc\xa5\xeb\x4f\x6d\xba\x8f\xca\x82\xa8\xcf\xa1\xfe\x3d\x4e\xcc\x2e\x1c\x4f\xf0\x26\x1a\xf9\x92\x94\x4e\x71\x9b\xdb\xf7\xac\x3f\xc5\x55\xfb\x24\xe1\x56\xdb\xf1\x9d\xf4\x43\x61\xf2\x25\xdf\x26\xda\x34\xf7\x7e\xf8\x52\x0c\x06\x93\x6e\x87\x51\x12\xb3\x1a\x3e\x26\x7c\xc9\x28\x13\x5d\x52\xb8\x18\x90\x8d\xd4\x3c\x3f\x70\xc8\x08\x96\x82\xc0\x8a\x45\x75\x84\xf2\x11\xd4\x06\x84\xd6\xff\xfb\x3c\xe5\x43\xff\x53\xdf\x4c\x3f\x34\xe8\x99\x71\xac\xeb\xb9\xec\x78\xe1\x5d\x9b\x31\xc1\xbe\x6d\x45\xf9\xd4\x9a\x53\x1a\xab\xcf\x3c\xe8\x2f\x6a\xff\xeb\x48\xd5\xd4\x5f\xd6\x65\x8d\xb1\x6b\x40\xa8\x26\x43\x7a\xed\x91\x27\xc4\xff\xe7\xfd\xf7\x55\x3b\xe7\x25\x0d\x31\xf7\x03\xf0\x48\x6e\xaf\xfe\x53\x62\x4a\x22\xfb\xcc\x46\xdb\x9d\x79\x71\x47\x54\x2a\x97\x6a\xaa\x6d\x86\x70\x25\xda\x12\x6a\xf2\x23\x97\x3b\x44\xac\x28\x09\xed\x77\xd8\xcf\xf3\x73\xfb\xf3\xc6\x18\x51\x03\x29\x83\xc8\x91\x39\x30\x18\xf5\x89\x32\xfa\x07\x8e\x0e\x8b\x88\x32\x50\x62\x58\x94\x38\x93\x68\x41\x04\xf5\x82\x36\x7c\x98\x49\x95\xb8\x11\x39\x3c\x3f\xb7\xde\x10\x90\x94\x4a\x81\x31\x18\x12\x25\x8a\xb4\x8c\x6d\xc4\x36\xd6\xfd\xd7\x45\x49\x1b\xa4\x60\x00\x36\x56\x60\x14\xe6\x59\x57\x7a\x67\x17\xc6\xb5\x17\xe9\xdd\xfd\xa4\xd3\xfa\x19\x81\x6d\xbd\x37\x23\xd9\x8b\x87\xd0\xfe\x5f\x41\xd1\xfc\x0a\x68\x46\xb2\xe5\x38\x4e\x62\xa0\xdb\xcb\xb2\x25\xbd\x46\x6a\xa5\xf6\x30\x0b\x74\x48\xd9\x1c\x10\x58\x16\xcf\x47\x6b\xe5\xfb\xd5\x3d\xbb\x21\x74\x2c\x2c\xca\x9c\x70\x61\x16\x42\xb1\x8a\x8b\xb0\x51\x0a\x78\xae\x86\xa7\x4d\xfd\x77\xb1\x46\x14\x0b\xa2\x7a\x10\xe0\x70\x0d\x10\x08\x41\xa3\xde\xce\x6a\x36\xd1\x76\xd2\xce\x3c\x13\xf3\x74\x9d\x49\x3b\xb1\x2f\x3a\xd1\x5a\x35\xdd\xa5\x28\x9a\x23\xfa\x27\xc7\x3d\xe5\x57\x28\x24\x3b\xf1\xd4\x92\x3a\x1e\xb4\x02\x69\xf8\xff\x75\xbe\xde\xfb\x4c\x92\x0c\x2c\x03\xe9\x5b\xb6\x64\xe6\xff\x3e\x11\x07\x79\x2b\xe0\x9a\x2e\x83\x53\xe2\x61\xeb\xb2\x26\xe9\xdc\xd3\x29\xdf\xc7\x6c\x55\x70\x21\x04\xc9\xc9\x78\xaf\xa8\x8d\x9c\x78\x41\xbd\xa8\x93\x45\xff\x41\xa4\x32\xb6\x3a\xa2\x45\xb1\x02\x09\x2d\x72\xb3\xf7\x93\xe4\xab\x35\xc6\x08\x50\x08\x54\x35\x94\xae\xff\x7d\xa9\x7e\x9e\x73\x6e\x78\xdd\x48\xca\x00\x14\x08\x2a\x26\x4e\x88\x0c\x3f\x90\x05\xaa\x27\x68\xc6\xb6\x4a\x05\xe3\x4f\xd1\xad\xfe\x69\xa5\xea\x02\x97\x5e\x6c\x66\xe5\xf2\x6a\x09\x67\x3a\x0d\xf0\x73\xeb\xdf\x28\xd1\x46\xee\x4c\xa4\x16\xc5\x2a\x8b\x0d\x58\x31\x36\x56\xc0\xc6\x48\xc9\x14\x89\x52\xc4\x42\xb1\x2f\x43\x7f\x7b\xf7\xbf\x5e\xfe\xf2\xc7\xdd\xff\xf7\x3b\x07\x4e\x57\x3c\x0b\x40\xb3\x38\xf4\x27\xb6\xf7\x5f\xe7\xfa\xf1\xf7\xa3\x3f\x35\x77\x5e\x6d\x98\x67\x13\x2e\xc8\x02\x2e\x90\xc5\x2f\xaa\xa0\x02\xce\xbc\x1d\xc9\x07\xce\x01\x2b\x62\xb1\xa2\x8d\x80\xc3\x35\xcd\xd9\x7c\xcb\x03\x00\x3d\xa5\xd9\xd5\xb8\xbd\x52\x0c\x25\x02\x3d\x3d\x9e\xa7\xbf\x17\xbb\xff\xe7\xa4\x59\x84\xc2\x55\x03\xd6\x38\x42\xc1\x4e\x01\xc9\x78\x38\x54\x96\x17\x2b\x57\x2e\xdd\x1b\xee\xe6\x3e\x42\xdb\xcc\xa5\xaf\xa4\x1f\x62\x85\x00\x80\xff\x7f\xd5\x5a\x2a\x4a\xc8\x6e\x9e\xf8\x84\xf4\xdd\x91\x4d\xd2\x24\xc8\xbb\x59\x22\xca\x33\xbb\x5b\xd4\x5b\xd4\xee\x0a\xce\x95\xc9\x03\xe7\x44\x9f\xcd\x31\xab\x1e\x9b\x4d\xa9\x9d\x89\xe8\xb2\x89\x1d\x21\x1c\x62\x0c\x3d\x8d\x94\xba\xb5\x7f\xf7\xda\xeb\x0a\x40\x20\x07\x02\x00\xf4\x63\xaf\x2b\x16\x21\x97\x34\xa0\x7f\x71\x96\x43\x68\x54\xe7\x98\xc9\x4b\x07\x3c\xff\x39\xfd\xbc\x6f\x98\x00\x28\xa2\x00\x92\x90\x32\x48\xe2\xe7\xc8\x86\x88\x53\x69\x8e\x3b\x77\xbb\xeb\xd6\x6d\x9f\x62\x20\x07\x02\x08\x1e\x8d\x61\x49\xac\x2d\x15\x44\x23\x07\x5c\xe9\x93\xb8\xfd\xff\xbf\x9c\xff\xff\x10\xaf\xb3\x03\x44\xaa\x21\x40\x02\x49\x45\xaf\x28\x4f\xb4\xa3\x37\x1a\xff\xf1\xe8\xac\xfe\xf6\x10\xd8\xee\x06\xc5\xf9\x30\xdb\x1e\x65\x56\xf0\x84\xfb\xfd\xe7\x9c\xa1\xe4\xdd\x07\xf4\x99\xb3\xbb\x65\x74\x89\x50\x55\xa8\xab\x44\x0f\xdd\x6c\xd2\x6d\x13\x5d\x53\xb8\x87\x2b\x34\x29\x72\xb5\x2d\x78\xb0\x60\x79\xf1\x81\xed\xf6\x8e\xc4\x36\xb5\x9a\x59\xd2\xda\xb0\xf1\xbf\xa9\x73\x51\x86\xdc\xfe\xf4\x32\xd6\x19\xfd\x01\xf2\x08\xb8\x00\x0f\xfc\xe5\xf8\xd5\xc6\x36\x47\x56\x8a\x73\xe9\x58\xba\x97\x4a\x60\xff\xac\x41\x73\x82\x5d\x2c\x05\xa0\xcd\xbf\xa9\x5a\xed\x0c\x48\x30\x38\xa5\x67\x5d\xb4\xdf\x9e\x2e\x44\xed\xa5\x9a\x22\x29\x5d\x8a\x45\x97\x8b\x12\x3f\x0e\x27\xfc\x19\x21\x52\x48\xa4\x00\x90\xb4\x49\x50\x01\x41\xa4\x40\x2a\xfc\x19\x0c\xa8\xc1\x00\xd4\x82\xc1\xfb\x28\xda\xf7\x9e\x64\xfb\xee\x39\xbd\x5d\x7a\x53\x14\x21\x2a\xc4\xb5\x24\x7b\x43\xca\xd5\x45\x87\x0b\x21\x56\x7d\x0a\x6d\xb9\x75\x79\x45\x51\x9e\x55\x37\xdd\xbb\xa0\x99\xec\xc0\xb0\x5b\xda\x5f\x68\x4a\xa4\x09\x93\xdc\x93\x04\xf3\xbf\xa6\x29\x3d\xdd\xfe\x37\xa3\xf3\xdd\xa6\x29\x9d\x75\x5e\x87\x07\xb0\x10\x1a\xc0\xb4\xab\x7f\xb6\xbf\xa5\x75\xd7\xc4\x3a\x45\x29\x5d\x69\xdd\xee\xd0\xc1\x41\x61\xcc\x72\x4a\xad\x08\xe5\xff\x5f\xeb\xd5\xbe\xf0\x04\x51\x21\x08\x1d\xa3\xc2\x46\x45\xdd\x17\xdc\xfd\xa1\x99\xe0\xee\x0f\xed\x86\x70\x67\xc3\x28\xb1\xa8\x98\x65\xcf\x79\x2f\xf8\xc2\xef\xed\xff\xa7\x67\xa6\xf8\xa6\x38\x53\x7c\x53\x9c\x69\x5c\x01\x50\x01\xc9\xda\xd6\xab\xd9\xaf\x36\xba\xd6\xc4\x56\xd6\xd5\xc8\x1e\x5f\x55\xd5\x2b\x35\xd7\xf2\xac\x44\xc8\x72\x3a\xbe\x73\x44\x90\x2b\xfa\x2f\xbf\xfc\x92\xaa\xbc\x3b\x2d\xf1\xb4\x0e\x67\x5b\x37\x66\xfd\x2c\x29\x6b\x98\x14\xdf\x4f\xd2\x50\xdd\x50\x79\x68\x4a\x8a\x2a\x42\xfc\xb7\x6c\x59\x8a\x3c\x1a\xa1\x46\x22\xc7\xbb\x9d\x4f\x6c\xf6\x17\xb9\x89\x0a\xbf\xed\x08\xd1\xa3\x30\xfa\xe4\xc9\xb3\x21\x3e\x7f\xea\x88\xff\xdc\xfb\x1b\x4f\x96\x1e\x89\x50\xfe\xb5\x13\x6a\xdc\xbf\x94\xe6\x10\x4a\xe0\xfb\x0e\x9b\xe5\x91\xd4\x48\x94\x4f\x6b\xdd\x75\xb0\x56\xdb\xbb\x2d\xdc\x49\x1c\xdb\xe5\x50\xbf\x61\x4a\x81\x45\x0b\x9c\x88\xa2\x60\xf7\xfc\x45\xe0\xd7\x48\xfb\x47\x6c\x8b\x98\xa5\xde\x03\x4f\x3c\xb4\x01\xc1\x25\x85\x25\x44\xaa\xcc\x8f\x26\xc2\x39\xe4\x70\x58\xfe\x41\xa2\x43\xbb\x35\xe9\xfc\x98\xeb\x1f\xa5\x0d\xeb\xc6\x4a\xaf\x3a\x2b\x13\x95\xa5\x4c\x05\x95\xf3\xcf\xe1\xbb\x7d\xf5\x5f\x9f\xf8\xb6\x59\x7a\xb6\xe6\xe2\x3c\x0a\x69\x42\x21\x22\x12\x24\x48\x90\x20\x52\x14\xf3\xbb\x1e\xa6\x6a\x2d\x55\x9d\x44\xbe\xf8\x4a\xb5\x36\xb1\x44\xb0\x15\x50\x2c\x00\xd1\x66\x50\x44\xfb\x79\x06\xe1\xe9\x7e\x60\x32\xa8\x52\xe2\x52\x51\xfb\xb8\xdb\xcc\x13\xfe\x8e\xfd\xed\x14\x41\x11\x04\x4d\x14\x8a\x20\x4b\xb6\xdb\xeb\x46\x02\x83\x90\x4a\x41\x0d\x3f\x97\xf3\x30\xa7\x87\x04\x73\x0f\x65\xc0\x3c\x03\x02\x60\x9e\x6b\x2b\x30\x2f\x80\x00\xe6\xb5\x29\x84\xf9\x1c\xf4\x60\xdb\x06\x06\x30\x44\x0d\xb6\xc9\x66\xe3\xf3\xe0\x47\x05\x01\xf2\x6f\x38\xed\xc9\xc7\xee\xdd\x00\x3f\x82\xca\x35\xf7\x6e\xbf\xf9\x35\x08\xa7\xba\xdf\xfa\xf8\x84\xc4\xa4\xe4\x94\xd4\xb4\xf4\x8c\xcc\xac\xec\x9c\x76\xed\x2d\x52\xb4\x58\xf1\x12\x25\x4b\x95\x2e\x63\xbd\xf4\x67\x1c\x25\x87\x98\xe5\x6f\x82\xc5\xe1\x09\x44\x12\x99\x42\xa5\xd1\x19\x4c\x16\x9b\x23\x2c\x22\x2a\x26\x2e\x21\x29\x25\x2d\x23\xeb\x20\xf5\xef\x38\x90\xa7\x40\x91\x12\x15\xaa\xd4\xa8\x63\x37\x08\x04\x0c\x02\x0a\x0e\x01\x09\x05\x0d\x63\x60\x71\xf0\x08\x88\x48\xc8\x28\xa8\x68\xe8\x18\x98\x58\xd8\x38\xb8\x78\xf8\x84\xe8\x77\x2e\xf2\x92\x5f\x8c\x32\xc6\x38\x13\x4c\x32\xc5\xb4\x61\x26\x66\x99\x63\x7e\x9d\xeb\x70\x34\x32\xce\x14\xb0\x31\x7c\xe2\x25\x50\x06\x3d\x49\xaf\xd2\xcf\x98\xe3\x18\x64\x32\x54\x18\x95\x7a\x1d\x70\x29\x50\x21\xa2\x3f\x5c\xc3\xc2\xde\x08\x0f\x07\x67\xe3\x02\x04\x9c\xaf\x4b\x31\xaa\x73\xfc\xc2\x4e\x0c\x63\x2b\xcf\xaa\x86\x9d\xd0\xb7\x60\xd1\x05\x4e\xdd\xce\xa8\x5e\xc6\x23\x80\x74\xf2\x47\x70\xb9\x4f\xfa\xb1\x00\xa6\x01\x38\xe1\xcc\x5b\xb7\x01\x40\x7e\x99\x73\xff\x7f\x02\xe6\x8a\xc8\x3e\x07\xb0\x1b\xaf\x63\x20\x94\xb5\x16\xba\x95\x1a\x46\xa0\x92\x23\x93\x54\x06\xea\x03\x22\x91\xcf\xe0\xeb\x4d\x5c\x95\x65\x2c\x04\x2e\x01\x08\x6a\x69\x64\x54\x34\x9b\xa8\xe5\x3e\xed\xf4\x18\x30\x6e\xc1\x36\x05\x1c\x1e\x85\x90\xa2\x95\x23\x8a\x54\xda\x6a\x9b\x2b\x43\x0b\x3d\x8b\xd9\xd1\xde\x32\xac\x53\x71\xba\x5e\x46\x5f\x30\xe2\xcf\xc0\xaa\xeb\xbf\xf4\xaf\x86\x56\x33\x47\xfa\xc8\x1c\xf9\x83\x36\xe8\xa3\x71\xf4\x55\xfd\xd5\xfb\xea\x73\xb5\x4f\x05\x35\xb5\xd4\xc9\x73\x06\x1a\x69\xb2\xfd\xf3\xcb\xfc\x31\x59\xd0\x5b\xb0\xbe\x61\xcb\xae\x33\x90\xe4\x0e\x75\xd7\xe2\x3f\xe5\x7f\xca\xd7\x2a\x1c\x5c\xa0\xf4\x49\x3a\x95\xce\xa4\x73\xe9\x72\xba\x8a\x0e\xd3\x4d\x74\x87\xb3\xb9\x36\xb7\xf5\xee\xcd\x77\xef\xb8\xd7\x2c\x73\x9c\x81\x63\x30\x19\x5c\x86\x94\x51\xc8\xbd\x64\x37\xb2\x87\x65\x8f\x31\x89\x4c\x2a\x53\xc4\xf4\xe4\xe2\x1c\xb2\x2f\x96\xbb\xba\x9d\xce\x96\x7c\x85\xdc\x1d\x39\xc3\x08\x59\x68\xd7\xd5\xd1\xe1\xa5\xb7\x26\x2c\x62\x67\x4b\x8c\x50\x14\xa3\x14\xed\x1c\x55\xac\x8a\x32\x94\xe7\x81\x65\xbd\xc4\xe9\x61\x50\x0b\x24\x4a\x67\x8f\x82\x71\x6b\x3c\x1c\x4d\xe3\x55\xf5\x8e\x7a\x1f\x54\xb4\x53\x6b\x5a\x15\x72\x91\x15\x53\x71\x95\xa5\x73\xa0\x0c\x96\x9f\x65\x79\xc1\xf5\x0d\x3f\x03\x24\xaf\x52\xcf\x5d\x1c\x5f\xfc\xb7\x9c\x49\x35\x01\xe9\xe3\xf4\x7e\x7a\x0f\x71\xc0\xa6\xa4\x1b\x98\x74\xbe\x5d\x9d\x73\x3c\xaa\x96\xb3\xf9\x49\xbc\x0c\x2a\x75\x7e\x05\xc8\x48\xf3\xec\xd0\xb0\xdb\x01\x97\x02\xce\x06\x4e\x07\x4e\x05\x4e\x06\x8e\x04\x8e\x69\x91\x66\xdb\xfe\x79\xfd\xce\x93\x00\xe8\xba\x6f\x0a\x78\x65\x3d\xde\x5d\x2f\xef\x95\xf5\xee\xfa\xdc\xad\xbb\x71\xc7\xb7\x37\x30\xde\xbe\x1e\x40\xf2\xc8\x01\x30\xf2\x5f\xff\xfc\x27\xf0\xff\x99\x4c\x1d\xb7\xec\x65\x81\xe6\x85\xb2\x8f\x12\xfc\xbe\xb5\x0e\xfc\xdc\x4b\x75\xa3\x9f\x47\xeb\x51\x97\xe4\xdd\x28\xf6\xe3\xc1\x06\xbe\x1e\x86\x93\xe1\x78\xd8\x17\x5b\xc3\x7a\xac\xfd\x71\x21\xd4\x36\xeb\xf9\x5f\x80\x67\xb7\xe0\x83\xe7\x7c\xae\x79\xae\x7a\x2e\x78\x36\xfc\x9c\xfa\x1c\xf9\xac\xf3\xe9\xae\x67\xce\x67\x8e\x67\xc6\x67\xba\x67\xe2\x67\x98\x67\xb9\xcf\xb2\x1e\x5d\x09\xf8\x2a\x18\x51\x90\xab\x19\x17\x41\xc3\x5b\xa4\xa7\xff\x12\xe0\x1d\x60\x21\x38\x05\x1a\x0f\x00\x7e\x3a\x1e\xa4\x8e\xb0\x7b\x61\xb7\xb7\x02\x9c\x73\x7a\xe9\x77\x00\xff\x00\x31\x05\xc4\x06\x80\xd8\x06\x10\x6f\x00\xf1\x05\x35\xdf\x3f\xd0\x4f\x14\x3f\x10\x8a\x0f\xe4\x99\x82\xf7\x5a\x55\x86\x65\xda\x19\x67\x9d\x73\xde\x05\x62\x7c\xe3\x7a\x36\xb2\x99\xad\x6c\x67\x07\x29\x71\x01\x60\xe0\x97\x7f\x15\x85\x5b\x24\x04\x7b\xd4\x3d\x8f\xc3\xe9\x72\x0f\xdd\xa0\xa8\x3c\x6f\x2e\x17\x7a\x36\x2c\xa1\x5d\x76\x2b\x4b\x9b\x11\x37\xda\xdb\xc6\x36\xbe\x09\x44\x24\x64\x94\x4d\xa2\xa2\xa1\x63\x60\x62\x61\xe3\x6c\x6a\xd3\xb8\x78\xf8\x04\x84\x44\xc4\x9b\xd9\x2c\x09\x29\x19\x39\x88\x62\x73\x9b\xaf\xca\x00\xf7\xff\xcb\x36\x69\xd6\xd2\xbb\xcb\x87\x80\xd7\x6a\x6b\xac\x65\x65\xe3\xe4\xda\x8d\xdd\xf4\x63\xbb\x7e\x3a\x9e\xfc\xd8\x6d\x7f\x7d\x7d\xc3\xc7\x5f\xd5\x7f\xff\xfa\x8e\xe0\x4a\x21\x6a\x64\xa3\x2e\x68\x74\x5c\x79\xb8\x3d\x79\xf6\xe2\xd5\x1b\xc6\xda\xde\xc3\x44\x0b\xd3\x90\xd0\xb0\xf0\x88\x48\xdd\xa8\x68\xbf\x72\xbc\x24\xc1\xc8\xb1\x13\xa7\x89\x49\xc9\xdc\xb2\x84\x88\xa4\x14\x52\xa9\xa4\x31\xd2\xc8\xa6\x67\x64\x92\x43\xce\x22\x8f\x83\x8b\x87\x4f\x40\x98\x4d\x95\x98\xa4\xac\xbc\xa2\x92\x46\x55\x75\x0d\xcd\xda\xba\xfa\x86\x82\xc6\x42\xca\xa6\xa2\xe6\x05\xa2\x16\xf6\x2b\xee\x7f\x4b\xcf\x00\x1e\x2c\xe5\x03\x31\x15\x37\x32\x2c\xff\x42\x43\x2f\x62\xcc\xd8\x71\x92\x98\x21\xe7\x39\x03\x7f\xfb\xb3\x79\x0b\x16\x2e\xf2\xbb\x8f\xe5\x2c\xf1\x3f\xbf\x62\x61\x9b\x31\xbe\xc6\x32\x7f\xfa\xaf\x82\x15\xbe\x35\xb9\xce\xaa\xd5\x6b\xd6\xae\x93\xc1\xf5\xde\xb4\x33\xf8\xcf\xce\xe4\x0f\x66\x37\xda\xe0\x1f\xe6\x27\x6f\xdc\xe4\xe7\x2a\x37\xfb\xd1\xef\x04\x84\x44\x2d\xde\xba\x4f\x06\xcf\xaa\x19\x16\xf9\x8b\xc5\x67\x25\xbc\xa0\xa1\xa6\xa5\xa3\x67\x60\x0c\x13\xd6\x07\x3f\xeb\x32\x98\xb4\x3a\x3d\x86\xdf\x9b\x85\xb7\x96\xbe\xdf\x2f\xc6\xf2\x07\x1d\x9c\x8d\xcf\x5e\x7f\x49\xff\x0e\x81\x20\xb9\x4a\x57\x7b\xdd\x83\x22\xe9\xc9\xf8\x5f\xd2\x81\x61\x39\xbe\x40\xa8\xa1\xa9\xa5\xad\xa3\xab\xf4\x82\x32\xce\xcd\xb2\x58\xd9\xd2\x55\x75\xd3\x76\xfd\x30\xae\x37\xdb\xdd\x5e\x80\x44\x32\x95\xce\x64\x73\xf9\x42\xb1\x54\xae\x54\x6b\xf5\x46\xb3\xd5\x4d\x05\x42\x91\x58\x22\x95\xc9\x15\x4a\x95\x5a\xa3\xd5\xe9\x0d\x46\x93\xd9\x62\xb5\xd9\x1d\x4e\x97\xdb\x53\xeb\xf5\x01\x85\x75\xdd\x38\xbf\xaf\xfe\x8e\x8b\x52\xa1\xa2\x5a\x95\x06\x1a\x69\xa2\xb1\x2e\xe9\x72\x75\x55\x17\xa5\x66\xcd\xcb\x45\x54\x2e\x78\xd9\x8a\x80\xfb\xbc\x4e\xba\x04\x60\x44\x8a\x0c\xa5\x26\xec\x74\xe2\x8f\xda\x36\xac\xa8\xec\x17\x43\xbb\xe9\x82\x1c\x48\x0e\x77\x6c\x76\x27\x25\xc9\xba\x92\xc1\x07\x37\xc7\x49\x24\x85\x68\x24\xe8\x5c\xa6\xc8\x4c\x0f\xf0\xc5\xa3\x85\x59\x7e\xe3\x9c\xdb\x85\x15\xa6\xd9\x65\xab\x55\xa7\x52\x15\x3d\xe6\x96\x74\x65\x27\xc2\x26\x6d\xda\xa9\xb7\xcb\xe3\x71\xa8\x56\xaf\xd5\xef\x64\x66\x46\x56\x96\xb2\x92\xd5\xac\x65\xb9\xf2\xc9\x00\xff\xad\x76\xfe\xca\x26\x5c\xca\x4d\x2a\x08\x60\x03\x65\x94\x13\xc9\x24\x34\x4a\x90\xe4\xd3\x97\x02\xd4\xa4\x6f\x0a\x94\xb5\x40\xf7\x0f\xdd\x96\x5d\xfa\xba\x73\xb6\x38\x3a\xd0\x4d\x81\xf5\x54\x26\x7c\xea\xe1\x6b\x69\xa4\xcb\x79\x30\x73\xbe\x7b\xe9\xf2\xf7\x08\xa8\xb9\x79\x1f\xc5\x7b\x11\x48\x08\x58\x48\xb3\x2c\xbd\xfd\x27\x86\xcd\x5b\x72\xf7\x29\xf1\x79\x12\x99\x72\xa2\x61\xe1\x8c\x5a\xff\xbf\x0a\x3e\x8f\x9a\x95\x2d\x9b\x10\x80\x15\xa4\xcf\xa6\xa3\xa0\xb0\x44\x07\x81\xf0\x4e\x1c\x02\x1d\x89\xbf\x1f\xe1\xfe\xd3\xf8\x12\x43\xce\x56\xb3\x9d\xcf\x29\x58\x68\x86\x65\xc7\xf4\x3a\x05\xe8\xa5\x11\x15\x50\xaf\xe3\x95\xc9\xaa\x39\x52\xfd\x11\x2f\x69\xf2\x26\x2a\x32\x41\x80\x0c\x94\xf0\xb7\x2c\x0a\x4a\x3e\x6e\x1d\xdc\x3a\x95\x13\x45\xb8\xac\x70\xaf\x9e\x92\x50\xda\x52\x72\x2e\xa5\x01\x43\xce\x06\x4c\xa7\xe3\x9c\x1d\x05\x84\x22\xaa\xb4\x9e\x9a\x55\x55\xdc\x4a\x84\x46\x52\x23\xed\xa5\x19\x4a\x47\x09\x63\x29\x5f\x47\x35\xea\xa8\x8b\x18\x33\x7c\x29\xc5\xcb\xd9\x0a\x5b\x84\x4b\x5b\xa9\xa1\xbb\xb6\x19\x6a\x66\x69\xab\xfa\xed\x54\xb6\x9a\x7e\x27\x27\xcb\x57\xa2\x74\x97\x56\x4a\x53\x23\x42\x74\x2d\x47\x05\x34\xbc\x33\x02\xe1\x8b\xac\x3e\x7e\x7b\x34\x9a\x00\x31\xf6\x68\x7d\x02\x0d\x94\xc4\xc2\xd1\x40\x14\x4e\xd1\x72\xf5\xcf\xa5\x56\xe9\x34\x3f\x97\x39\x3b\x58\xa6\xb3\x53\x31\x18\x35\x7d\xe1\x2c\xde\x0e\x9c\x9e\x87\x05\xe7\x35\x0e\xc1\xd9\x30\x18\xd0\x87\x5b\xd1\x6c\xb8\xff\x52\x40\x42\x0a\x80\x47\x90\x51\x6e\x92\x42\x1a\x16\x61\x66\xfd\xb4\xfa\x7a\xb4\x45\xfd\x3c\x94\x68\x10\x4f\xbd\x4c\x91\xa0\x83\xb5\x79\x3f\x8d\xf3\x5e\x52\xa4\xd0\x58\xc8\xb7\x83\xa3\x47\x25\x71\xc1\xbf\xd5\xd4\x31\x00\x2c\x25\x74\x7c\x53\x14\x24\x63\x1a\x33\xcb\x37\xe2\xac\xa8\x2f\x74\x8c\x10\x26\x7e\x8c\xea\x9f\x52\x1a\x92\x1f\x34\x56\x2c\x1a\xb6\x1d\x06\x8d\xe6\x98\xbc\xdd\x4b\xd5\xdb\x69\xbe\x8a\xbe\xb3\x53\xc7\xec\xed\x76\x7a\xbb\x7b\xc6\xdf\x84\x75\x8b\xf5\xeb\x5b\x54\x30\x72\xbf\x6f\x7d\xce\x0e\x55\x64\x1d\x32\xd2\x87\x5a\xac\x8b\x67\x71\xd9\x0c\x32\x13\x0a\xdb\x4a\x95\x73\xa3\xb8\xc5\x41\xb6\x10\xe7\x84\x45\x30\xb0\x3a\x68\xcd\x35\x98\x3f\xa8\xb6\x95\x73\x23\xe4\x05\xeb\xf2\xe2\x82\x85\x9c\xec\x48\xef\x34\x55\xe0\xc3\xa6\x40\xa4\x35\x62\x90\x9a\x3e\x0f\xac\xd6\x2a\xa4\xd8\x4b\xac\x35\x6a\xc6\x5c\x23\x93\xa2\x2c\xa3\x0a\x54\xbf\x37\x67\x1d\x8d\x64\x15\x87\x3f\x7f\xbb\xdd\x73\x37\x34\x57\xb2\x63\x53\xc1\x7a\xc7\xb1\xab\x18\x0b\xbc\x87\x08\x0e\x8f\x42\x70\x7a\x94\x82\xcb\xa3\x12\xdc\x1e\xb5\xe0\xf1\x68\x04\xaf\x87\x11\x7c\x1e\xf6\x38\x51\x6a\xc1\x87\x13\x0b\x85\x77\x4b\x5c\xf8\xbc\x42\xfb\xad\x31\x38\xe0\x92\x27\x06\x44\xbf\x28\x40\x92\xbb\x00\x21\x07\x01\x21\x8b\x80\x90\x43\x80\x90\xc3\x80\x90\x25\x40\xc8\x32\x20\xe4\x08\x20\xfa\x12\xd4\x4e\x24\x7a\x26\x24\x73\x0b\x9b\xa7\x89\x1d\xab\x13\x59\xa4\x29\x79\x67\x6a\x7f\x68\x52\x48\x36\xc9\x72\xd2\xa4\x85\x94\x90\xb6\xfe\xa1\xd9\x30\xfb\x57\x81\x1e\x0d\x3a\x19\xd9\xac\x46\x46\xba\xaa\x2a\x1a\xcf\x92\x0d\x82\xb5\xab\xca\x0a\xa5\x4c\x56\x26\x47\xf7\x58\x7d\x29\xf2\xd6\xb0\xc0\x70\xef\x10\x30\xc3\x4b\x69\xe0\x7f\xc1\xfd\x1f\x9e\x79\x66\x0f\x6b\x2e\xf8\x6d\xa7\x40\x9d\x16\xac\xfe\x51\x42\xfa\xfa\x87\x4e\x51\x7b\xa1\x73\x4a\xf9\x52\xc0\x55\xde\xb3\x94\x55\x22\xd9\x35\xb5\x5a\x20\xa2\x51\xdf\xfd\x7a\xf8\x7f\xa9\x8d\xf6\x4a\x36\xfd\x12\x33\x68\x1c\xbf\x0c\x3c\x3e\x7b\xdb\xa9\x00\x78\x94\xf6\x88\xb2\x57\x65\xc6\x3b\xc7\xc3\x87\x2b\x75\x03\x1a\x47\x35\x2b\xa8\x76\x39\x26\x94\x1a\x21\x62\x62\xbb\xab\xef\x49\x37\xe9\xa7\xba\xcd\xaa\x39\xe7\xf0\x9b\xf3\x1c\xa3\x09\x86\x1a\x44\xc8\x97\xd0\xe6\x05\x67\x3b\x1a\x2f\x02\x83\xa5\x5f\x85\xb0\x1c\x19\x0a\xf6\x47\x59\x29\x65\xdf\x1c\x94\xe2\x7e\x2c\xe1\x4b\x7b\x93\x50\x7a\x9b\xab\x4f\x36\xe4\xa9\x39\x6a\x3b\x44\x60\xc1\xa2\x40\x33\x47\x17\x55\xb2\xc4\x29\x54\xd6\x3f\x59\xe6\x00\xc8\x60\x63\x54\xa3\x00\xbc\x68\x5b\x0e\x8e\x23\x93\xce\x4e\xad\xf9\x7d\x4a\x12\x95\x07\x05\xd6\x3d\x74\xea\xe7\x52\x30\x1a\x2f\xf7\xcd\x41\x4c\x50\x51\x6a\x83\x5f\x90\x7a\x22\xcc\x52\x99\x4f\xad\x3a\x0b\xcd\x09\x5d\x2b\x62\x83\xf2\xdb\x9f\xf6\xa6\xea\xf5\xc0\x8b\xa5\x54\xd6\x78\x89\x52\x00\x7b\x49\xa7\x49\x5c\xa7\x5c\x94\xd2\x37\x5b\xd6\x8f\xca\x71\xac\xc5\xd4\x0a\xec\x4d\xcd\x77\x92\xba\xdc\xd6\x54\xb0\x3b\x4e\xf7\xb9\x8d\xb6\x5c\x28\x64\xf9\xeb\x8f\xde\x03\x2a\x5d\x61\x4e\x2f\xa8\xf6\x80\x15\x6a\x0a\x60\xb4\xcc\xec\x14\x28\xd9\x92\x6a\xa7\xcf\xb8\xa8\x60\xa1\x66\x8d\x9a\x3a\xb5\x2d\x04\x57\xf5\x8a\xdd\x8f\xca\xa4\x16\xf5\xf0\xbf\xc5\xc2\xf0\x20\xed\xd0\xb5\xf8\x3b\xb3\x1f\xbc\xaa\xc3\x21\xb3\xa7\x0c\x70\x82\x36\xdd\x33\x18\x0e\x16\x92\x26\x48\xf5\x15\x87\x34\x7b\xcb\x0c\x8c\xd2\x05\x5f\x27\x67\x5a\x0a\xe5\x0c\x5f\xba\x7b\x04\x15\xf0\xc3\x4f\x31\x48\x8d\x82\xf2\x4e\x18\x2b\x05\x7e\x66\x6a\x35\x1f\x18\x20\x8b\xc0\x38\x74\xd1\x4f\xdf\xaa\xea\x36\x81\x11\x60\x92\x98\x4c\xc4\xd4\x82\x12\xd3\x74\xcd\x13\xcc\x14\xc0\x6a\x16\x12\x31\x67\x04\xcd\x03\x01\x0b\x05\x50\x5a\x84\x44\x2c\x19\x41\xcb\x40\xc0\x4a\x01\xb4\x56\x21\x11\x6b\x46\xd0\x3a\x10\xb0\x51\x00\x57\x9b\x90\x88\x2d\x23\x68\x1b\x08\xd8\x29\x80\xa3\x5d\x48\xc4\x9e\x11\xb4\x0f\x84\xf3\x00\xd4\xe2\x78\x1c\x2a\x76\x5a\xfb\xe9\x28\xba\x7d\x9c\x95\x56\x14\x14\x27\x5b\xdd\xe2\x38\x05\x82\xcf\xf6\x0d\x3e\x87\xfe\xc6\xc5\xdc\x18\x97\x0b\x82\xaf\xe8\x06\xdf\x80\x06\xdc\x9c\x9b\xe3\xd6\x82\xe0\xdb\x74\x83\xef\x40\xc3\xe3\x2e\x7e\xb2\x69\xdc\x72\xfa\x88\x77\x60\x3a\x6c\xb2\x75\xda\x9c\xbc\x38\x31\x00\x23\xe6\x7f\xf0\x90\x8e\x32\x7c\xfd\xa7\xdf\x0c\x10\xdf\x03\xeb\xdf\x16\x70\xd8\x34\x00\x13\xef\x08\x18\xfe\x05\xe0\xac\x53\x00\x14\xcb\x2b\x52\x09\x22\x3a\x2c\x81\x9e\x32\x90\x27\x23\x90\xff\x77\x76\x44\x48\x33\x54\x95\x01\x2f\xf4\x36\x1a\xe0\x89\x33\xee\x4d\x4e\x6d\x3b\x73\x8b\x44\x24\x21\xff\xdf\x19\x28\xeb\x28\x0c\x29\x11\x8c\x81\xeb\x16\xc4\x9e\x54\x57\x78\xee\x44\x02\xab\x63\x24\xab\xc0\x50\x4a\x8e\x64\x04\x8f\x06\x26\x9d\xc9\xb9\x1b\x24\x2a\xc7\x5b\x44\xc5\xe4\xa3\x8d\x04\x60\x40\x7a\x05\x29\x50\x1b\xad\x5a\x7a\x58\x0d\x69\x65\x5a\x1a\x48\xbe\x8f\x62\x05\x97\x48\x26\x10\x6b\x6a\x63\xe6\xa9\x15\x23\x61\xed\xab\x94\x1e\xb6\xa3\x6a\x47\x22\xa9\x89\x90\x94\xb2\x92\x6a\x7e\xa8\x65\x13\xb5\x22\x7d\xab\x21\x23\x98\x12\xca\x00\x52\x56\x8e\x04\xc6\x60\x4f\x60\x4a\x7a\x45\xd9\xdd\x46\x26\x35\x17\x21\x3e\xb3\xbb\xc5\x8c\x58\x0f\x10\x62\x9d\x29\xcc\x19\x59\x52\xff\x8b\x92\x4c\xc9\x68\x0f\xbf\x89\x7c\xc6\xac\xfc\x33\x83\x7f\xe6\x49\x57\x26\x52\x65\x7d\x3b\x28\x04\xfc\xf3\x26\xfc\x7f\x19\x4e\xce\xbf\xf1\xa4\x19\x2a\x28\x16\x95\x92\x35\xc6\x6c\xa4\x80\xf4\x0d\x63\x5d\xab\xfa\x16\xbe\xf1\xdb\x04\x47\xa9\x7c\x63\x52\x4c\x00\x81\xa5\x0c\x86\x8f\x09\x1c\xfa\x2c\xd8\x10\xad\x3f\x2a\x00\xc1\x0e\xff\xcf\xc2\x59\x2e\xc4\x5d\x4a\x8c\x5f\x21\x1a\xe1\xa7\xb1\x73\xa9\x68\xdd\x42\x7c\x0b\x8b\x40\x61\x14\x87\x10\x46\x00\x27\xc5\x3c\xa9\x79\x83\x76\xcd\x45\x8c\x06\x45\x7c\xf2\xa1\x8f\xe2\xa3\xba\xf8\x60\x39\x5a\xe0\x32\xde\xc3\xb4\x03\xbc\x4e\x3d\xe5\x00\x7f\x0a\xc4\x89\x78\xab\x7c\x26\x19\x01\x11\x42\xf7\x1e\x8a\x14\x4d\xc0\xbc\xc3\xf9\x0c\x7b\x95\x2a\xf6\x7d\xf1\x99\x06\x03\x88\xad\x14\x4c\x04\x31\x90\xdb\x85\x9c\x8d\x42\x6a\x7b\xb4\xfa\xc1\x42\x4f\x3b\x57\xf3\x58\x17\x15\x46\x91\x46\xa2\xc2\x01\xb8\x94\x04\x23\xd7\x7a\x04\xd1\x87\x19\x38\x17\x15\x39\x40\x28\x8a\x24\xa9\xef\x6b\x6e\xea\xe4\xca\x9f\x2f\x86\x85\xe0\xed\x6f\x63\xb2\x67\xce\x54\xef\x74\xff\xf9\xac\xf6\x5d\xdf\x9f\x3b\x91\x0b\x8b\x4a\xa8\x88\x3f\xc7\x66\x29\x09\xb5\x12\xa9\x80\x26\xf5\xaa\xb5\x73\x71\xe0\x4c\x08\xff\x8c\xe0\x7b\x2c\x8c\xc0\x30\xb4\x78\x25\x18\xdf\x7e\xac\xad\x16\x8f\xa3\x0b\xc5\x16\x2f\x97\x39\xf7\xd3\x13\x67\xe8\xd1\x8c\xbc\x66\x56\xc2\x6e\x16\xba\xef\x51\xab\x53\x8a\x93\x24\x8b\xa1\xd0\x12\x42\x10\x40\x21\x00\xf3\x77\x87\x9f\x2d\x86\x17\x0a\x0e\x03\x85\x85\xef\x13\xe9\x2b\x48\x4c\xd0\x79\x60\x5c\x7f\x5d\x60\x0a\x43\xe7\xb2\x2c\x4d\xa5\xec\xeb\xaf\xfc\xd0\x34\x07\xd2\xfb\x0b\x27\xb1\xc1\xaa\xb4\x6e\xc0\x61\x9d\x8a\x46\x3c\xca\xaf\x1f\x8e\xc9\x94\x3c\xaf\xbb\xf1\x7c\x6c\xdb\xcf\x88\x72\xe2\xf6\xfa\x57\x05\x01\x24\xc0\xf7\x9d\xb8\x4f\xaa\x6c\x50\xf1\xfa\xf5\x45\x58\x47\x5b\x13\x0a\x48\xae\xce\x8d\x6d\x4b\x7e\x18\xcb\x54\xce\x7d\xda\x5c\x65\x0b\xad\x10\x64\xa4\x6f\x66\xee\x82\x3a\x30\x01\x44\xae\x01\x6f\x95\xfa\x46\x9d\xab\x44\x6c\xd8\xf2\x42\xfc\x0a\x8b\xeb\xff\xf8\x28\xd6\x26\x18\x3e\x27\xb0\x6f\xb3\x60\x47\x54\x87\x7c\xe1\x40\xc3\xfb\x04\xd6\x6e\x11\xb4\x44\xd3\xa4\xdb\xeb\xcc\xfd\x58\x5b\x28\xe8\x43\xce\xc6\x47\x4e\xc5\xd4\xa5\x51\x05\xe6\xc9\x37\x75\x55\xf7\xab\x96\x1e\xd5\xce\xfb\x66\xf6\x4b\x8d\xaf\x71\xec\xf1\x7e\xca\x89\xe3\x78\xfd\x36\x39\xce\xc5\x72\x48\xca\x44\x19\x52\x3a\x28\x57\xfa\xa6\x95\xda\xd0\xf5\x71\x7b\x3d\x74\x46\xb0\x25\x70\xd9\x15\x72\x17\xb6\x2f\x41\x06\x6d\xc9\x8c\x24\xe4\xc6\x28\xb3\x4b\x2c\x7d\x88\x65\x26\x6e\x40\x8e\xac\x5c\x6e\x60\xbd\x4c\xe5\x18\x86\x54\x6d\x75\x86\x45\xfa\xd5\x61\xc0\x8d\x87\x2d\x6a\xc7\xb0\x10\x62\xd2\xe7\x4a\xf9\x89\xe3\xd7\xc5\x42\x15\xd9\x7e\x95\x2f\xde\x7c\x89\x29\xcb\x4d\x5d\x1c\xab\x41\xf2\xcc\x2a\x2d\x95\xef\x4a\x24\xe2\x1b\x70\xb7\xa5\xd9\xd5\x5e\x64\x26\x6c\xf9\xa4\xe9\x63\xba\x70\xe5\x30\xf8\x7a\x2b\x6a\x54\x09\x77\x00\x34\xf8\xb8\x60\xf6\x06\x0f\x7b\xa5\x70\x7c\xec\xaf\x8a\xa1\xb8\xe4\xbb\x15\x4d\xf0\x8b\x22\x64\x42\x2d\x86\x0e\x71\xe5\x18\x1c\x17\xd9\xf3\x2a\xa0\x5e\x45\x3e\x67\xf5\x8e\xbb\xf7\x46\x1d\xeb\xf2\x52\x52\x7a\x3b\x27\xf0\x2b\xf2\xd5\xcd\xfb\xe9\xc1\x6c\x83\x92\x17\x17\x82\x76\x82\xed\x10\xdb\x03\xbd\x35\x52\x61\xdb\x5f\x4a\x26\x0c\x30\x05\x97\x26\xee\xd2\xf2\x9e\x6c\xf8\xd5\x0b\x47\x72\xb9\xb7\x9b\x5d\x75\x71\x16\xe9\x49\xe5\x97\x57\x81\x90\x04\x31\x68\xcd\x8a\xfe\x1d\x51\xfa\xb9\xbc\x2e\xd8\x6f\x20\xbc\xec\xed\xec\x35\xbf\x2e\xb6\xcd\xa5\x07\xb4\xc5\x07\x78\xb8\xc9\x17\x7f\xbc\x35\x32\x05\xcc\x85\xaa\xf9\x2f\xf3\x47\x43\x8f\xb0\xca\x66\x85\x18\x63\x47\xb2\xc2\x18\x90\xbc\x47\x81\x90\x41\x13\x7e\xb7\x2e\x27\x8c\xbc\xba\x5a\xf4\x3d\xe6\xb6\x7f\x29\x5b\xbe\x0c\x24\x92\xd3\x18\x21\x06\xab\xfb\xb9\xf0\x3a\x36\x9c\x1b\x29\x21\x1d\x02\x6e\xb0\x33\x30\xc3\x52\x03\x41\x45\xa7\xb8\x08\xa8\xc9\x5b\xb4\x99\x5b\xf8\xae\x10\x0a\xe6\xde\xfd\x5e\xd6\xc6\x37\x35\x43\x28\x3c\xba\xd6\x77\xa7\xea\xeb\xc4\xaa\x5f\xa9\xc6\x81\xda\x08\xc5\x12\x08\xba\xb9\xe6\x99\xe7\x25\xf3\xdf\x3f\xc5\x12\x4e\x8c\x1d\xd9\x7a\x9a\x42\xa7\x79\xcc\x22\x7e\x46\x43\xe7\x6e\x7f\x22\xd8\xee\x52\x97\xb7\xf1\xee\x88\x48\xb4\xb3\xa9\x2e\xc6\x22\xed\xe1\x7c\x40\x0a\xee\x4f\xa7\xf2\xcd\xff\xc9\x8b\x57\x46\x8d\x53\x95\x1f\x2a\x3c\xb4\x64\xa1\xe3\xcc\xff\x2a\x3c\x1f\x69\x5f\xe4\x4f\x05\x2d\x1f\x0e\x21\x59\xa1\x4d\x9e\xc3\xaa\x16\x23\xf5\x61\xfd\x42\x0d\x76\x32\x63\x25\x72\x45\x1f\x3c\xf5\xbb\xf9\x3e\x52\x2c\x9d\xec\x3e\xd7\x59\x9d\x91\x9c\xdb\x06\xc2\x18\xce\xcb\x4d\x24\x59\xde\xab\xc0\x55\xcf\x57\x62\x79\x17\xcc\x2d\xa9\x21\x77\xe5\x76\xe4\x37\x87\x25\x82\x56\x58\x1a\x2d\x0f\xf9\x76\x9f\x26\x12\x6c\x4d\x04\xcc\x10\x43\xa7\x61\x79\x04\x49\x03\xab\x1b\x6c\x0b\x4a\xc9\xb5\x3c\xd6\xa4\x16\x8b\xc1\x81\xc1\x6b\xe6\x53\x10\x55\x66\x9b\xc0\xcd\x29\x76\xad\xd3\xec\x2b\xd3\x76\x2a\x76\x18\xec\xf2\xa3\x68\x79\x36\x22\x79\xee\x44\x43\xb2\x26\x97\x8e\x20\xac\xad\xf4\x32\x86\x0b\x05\x39\xa5\x16\x2c\xf0\x6c\x0c\x03\x2a\x62\x48\x31\x5f\x72\xec\x7e\x04\x49\x2f\x23\x7d\x18\x92\x88\x53\xe0\xec\xa2\x56\x68\x36\x58\xde\x9b\x7f\xdd\x98\x42\x37\xa9\x10\xa2\x05\x12\x87\x74\x83\x8e\x1d\xc1\x6a\x56\x98\x2f\x06\xd0\x6a\xfc\x0e\xda\xb9\x4b\x11\x46\x0b\x33\x26\x55\xd3\xdd\x33\xcc\xac\xc7\xcc\x4b\x5f\x1b\xb7\x10\x9e\x8f\x68\xf3\xa0\x6e\x7f\x45\xdf\x7d\x9f\x86\x13\x31\x90\xe0\x87\x29\xe6\xe1\x12\xc2\x78\xb9\x85\x76\x01\x61\xa5\x70\xa2\x83\x4b\xf0\x19\xbc\x81\xeb\xd5\x69\x81\xd3\x19\xcc\xa7\xb0\x98\xe3\xf2\x42\xe9\x06\x6c\x26\x38\x68\xb1\xa6\xd2\x9b\xf1\x96\x26\x88\x91\x09\x92\xe2\x6e\x42\x32\x16\x1c\x09\x16\xf0\x26\xbd\x79\x8c\xc5\xed\xea\x25\x81\x10\x5b\x97\x2d\xd1\x42\x07\x35\x72\x3b\xd8\x90\xf2\x0d\x23\xdf\x4a\x99\x3e\xfa\xe8\x57\xba\xe0\xe0\x8d\xa2\xae\x34\x60\x95\x5e\x50\x10\x81\x6c\x35\x38\x61\xbc\xba\x52\x76\x67\x83\x11\xae\x70\x99\xb8\xd5\x7e\x1d\x85\xec\xe5\xf3\x47\x18\x1b\xe3\xc1\xc4\x40\xdb\x32\x38\x6d\xbf\x96\xbb\xff\x44\x2e\x55\xb4\x88\x1b\xd6\x1c\x2c\xc7\x74\x29\xd4\x35\x53\xbf\xbb\x53\xbd\x0e\x41\x78\xad\xcb\xbc\xc9\xac\xba\xe9\xa6\xfb\x99\xc4\x38\x18\x60\x83\xc1\xd0\x56\x70\x7b\x0f\x90\x33\xa0\x93\x6b\x1b\xb4\xc0\xae\xbb\x32\x63\xfe\x32\x8d\x3d\x60\x37\x49\xd6\xc5\xc4\x2d\x09\xa3\xe1\x89\x93\x0d\xb1\x6d\xcb\x05\xcf\xce\x83\xc5\x63\x71\x3d\xfe\xbe\x32\xba\x4f\x7a\x82\xc3\x73\xea\x43\x55\x8c\x91\x20\xfd\x05\x99\x78\xb3\x7c\x23\x8e\x7a\x2f\x74\x01\xf6\xd0\x45\x07\x5f\xe2\xdf\xf8\xd1\xd1\x8d\xb5\x85\x77\x84\xb3\xb8\x43\x9a\x2e\xd9\x2c\x92\x6b\x83\x45\xa3\xd3\x17\x15\xdf\x7a\xdb\x52\xa7\x74\xc9\x92\x82\x61\x5d\x6a\x69\xa0\x5b\x0b\x9e\x7f\xa0\x93\x5b\x0a\xab\x0a\x17\x89\x82\x83\x62\xff\xfa\xd0\x03\x07\x35\x53\x9d\x0b\xb4\x6c\x47\x9c\x51\xc8\x57\x81\x6b\x76\xd1\x7e\x6d\x8a\x21\x99\xb0\xae\xb1\x7b\x9c\x5c\xd6\xef\xde\x29\xf6\x98\x40\x27\x26\x6e\xb1\xd1\x9a\x9c\x60\x03\x76\x6f\xbd\xbd\x5d\xc5\xfa\xd8\x7b\xf6\x49\x6d\xfa\x6a\x63\x79\xd5\x72\x72\xd5\x78\xe8\xdf\xfd\x73\xa8\xbe\x81\xcf\xbf\x18\x92\x14\x58\x0c\xf5\x43\x32\x68\x69\x9e\x20\xa4\x62\xcb\x02\x9f\x0a\x81\xf3\xdb\x2b\xa1\x76\x21\x7f\x26\x4a\xc0\x66\x60\x83\x7d\xb8\xec\x29\x20\x1c\x65\xc8\x7c\x8e\x4b\x60\xaf\x26\xed\xbd\x60\x79\xd2\x78\xcb\xad\x90\x1f\x3b\x33\x83\x46\x64\xa7\x5c\x7b\xe9\x50\xab\xa9\x1c\x25\x8a\xf9\x23\xb6\x92\xd5\x17\xf7\x67\x67\xba\x50\x0f\x94\x5d\x62\x0d\xa8\xd7\x5b\x11\xb2\x21\x51\xf4\x5b\x1b\xf5\x0f\xdd\xa4\x3f\x69\xd5\xe6\x46\xdf\xef\x94\xd8\x71\xd3\xcf\x39\xc7\xe7\xa7\x21\x24\x42\xe0\x18\x3a\xb4\xe3\x77\x24\xa3\x5f\xa1\x72\x7b\xa2\xfc\x40\x55\x63\xe8\x07\xfa\x8f\x5c\x99\xc7\x81\x56\xf2\x79\x64\xd0\x2a\x49\xc7\x29\x7e\xfa\xda\x66\xa9\xf2\xcb\x84\xc8\x88\x4d\xe6\x4f\x7b\xcf\xf1\x54\x1d\x6b\x75\xb0\xbd\xb3\x79\x0e\xde\x53\xb0\x5b\x30\x4e\x92\xcc\x63\xf1\xf9\xf7\xad\xae\x62\x66\x4d\x3e\xba\x69\x43\xef\xa0\x43\x62\x75\x92\x7e\x76\x3d\xf8\x0d\x4f\xb2\x95\x31\x3b\x1e\x61\x3f\xc1\x19\x3a\xcc\x4f\xaa\x7b\x2a\xee\xfa\x18\xec\x45\xaa\xbc\xc7\xe0\xa5\xcb\x16\xdb\xa2\x72\xfa\x68\xfd\x16\x80\xcc\x03\x7b\x75\xcc\x6e\x2f\x72\xf2\x29\xc0\xc9\xae\xbc\x36\x9b\xa3\x51\x92\x65\xd3\xb4\x91\x3a\x57\x0a\xb5\x8b\xa7\x1c\xce\xe7\x89\x34\x5f\xe8\xb8\x11\xa1\xde\xea\x56\x16\xc6\x5f\x0b\x49\x8f\xbe\x6a\x80\x8d\xab\xb3\x5d\x05\x74\x20\xf4\xf1\x1b\xc9\x1b\x66\x61\x34\x5c\x8b\xe8\xca\xc1\xb4\x5c\x19\xe8\x86\xa4\x53\x90\x55\xea\x77\xe4\xea\xdf\x38\xe9\x4f\xa3\x9e\x62\x82\xcb\x27\x2f\x5f\xab\x57\x8f\x06\xc0\x8d\x4a\x46\x37\x94\x24\x64\x99\x2f\xee\x3c\xca\x46\xda\xcf\x11\xdb\x2d\x83\x97\xca\x13\x0f\x7b\xaa\x49\x8d\x15\x10\xb6\x81\x2c\x19\xe7\x47\x36\x36\xc0\x5f\x09\x4a\xd9\xf3\x5a\x9c\xb6\x07\xb9\x14\xe3\xa5\x7f\x57\xe0\xbd\x67\x7f\xfd\x5f\xa2\xda\xbf\x54\x0e\xfc\x42\xf5\x22\x64\x85\xe1\xf1\x52\xb0\x04\x5b\xf1\x01\x4e\x82\x88\xc3\x58\xda\x0f\xd1\x40\xf7\xf8\xcb\xab\xa0\xce\xc6\x87\x3e\xac\x69\xa8\x82\xc1\xca\xdb\x2f\x4f\x7f\x51\x20\xc4\x9e\x0a\x8a\x50\xb0\x3d\xe6\x31\xd1\x93\x4f\x7d\x49\x9f\x56\x30\x19\x07\xa3\x89\x1e\x8e\xd4\x78\xe8\xd7\x64\x9e\x28\x08\xa6\x4d\x9c\xff\x91\x32\x01\xb6\x97\x4a\x84\xab\x61\x92\x6e\xbe\x8d\xb7\x36\x1b\x7d\xb4\x84\x0c\xa9\x2c\x20\x93\x46\xea\x8c\x20\xef\xc7\x4a\x70\x24\x3a\x5f\x3a\x35\x8f\xe1\xb1\xe0\xd9\x75\x53\xd1\x86\x34\x03\x1c\x52\x3d\x56\xeb\x39\x74\x5d\xcb\xd9\x57\x4e\x3e\xc0\x4d\x99\x55\xbe\xa6\x44\x71\x7f\x1d\x36\x5f\xe0\x88\x28\x97\x3f\x5f\xaf\x5e\x7c\xd5\x2f\xec\xa2\x1f\x15\x5b\x8d\x4d\x84\xf0\x25\xef\x56\x28\xfb\xf7\xa5\x7f\xd9\xd1\x2f\x57\xde\xcd\xce\xa4\x56\x01\xf3\xfa\x8b\xb0\x36\xab\xfc\xe0\x67\xb3\x41\xe9\x04\x3a\xca\x3c\x07\xaf\xe9\x11\x8a\x34\x03\x9c\xa7\xe7\xa6\xf3\xe7\x9d\xae\x61\x0f\x5b\x0d\x50\xfd\xb4\x92\xe9\x6b\x94\x46\x02\x25\xbc\x16\x15\xf3\x52\xba\x29\x1f\xd3\x73\x22\xad\xd7\x56\x96\x90\x41\x43\xf9\xdd\xc3\x01\x8e\x26\x1a\xde\x3e\x22\xf2\xb8\x2b\xd6\x5f\x85\x04\x42\x0f\x1b\xe9\x7a\x47\x32\x51\x11\x1f\x5c\x1c\xaf\x1c\xd2\x6b\x3e\x3c\x2a\x6b\xc8\xdc\x6c\x4e\x12\xf7\xce\x8f\xde\x77\x7f\x5b\x19\xe0\xa0\x25\xfa\x63\x03\xb6\x25\xcd\xef\x69\x2b\x1e\xd8\x48\x03\xf5\x85\xca\x4d\xdb\x5b\xc1\x60\x85\x0b\x51\x5c\x85\xd6\x58\x9f\x7e\x37\xc7\x10\x24\x4f\x1a\x40\xc8\x62\x87\xb4\x49\x18\xb1\x52\x21\xb6\xe5\xf1\x78\x70\x4d\xcc\xca\x0a\x18\x1d\x09\x7d\x89\x35\x58\x31\x8f\x69\xfc\x86\xd9\x75\x15\xfd\xbd\xf4\x91\x7d\x2d\x3b\x37\x4d\xad\xa4\x39\xc2\x90\xd3\x96\x78\x3f\x59\x42\x42\x09\xf6\x23\xb5\xac\x17\x1f\xb3\x46\xec\x94\xd4\xe4\xaa\x01\xf5\xc9\xa4\x62\xdc\x75\x42\xf2\x2b\x57\xba\x9c\xb7\x77\x2c\xaa\xe7\x16\x6a\x1c\x1a\x24\xa2\x81\xdd\xe6\x3e\xf9\x78\x3d\x78\x69\xc2\x47\x41\x25\xb9\xf8\xa2\xfa\xfe\x70\x5f\x53\x5a\xea\x13\xd1\xc9\x83\xa3\x13\x15\xb9\x45\x65\xf2\x3f\x9d\x5a\x99\xc7\x07\xc7\x2a\x23\x98\x3d\x48\x4b\x2a\x13\x2f\xa8\xf8\x45\x41\x4f\xaa\x97\xe9\x8c\xa3\xa6\xd8\xf2\x6a\x89\xca\x2a\x5a\x0c\x79\xe3\x26\x24\x48\x65\xe3\x66\x53\x92\xb7\x78\x0b\xb2\x8f\xfc\x4a\xdf\x16\xed\x77\xd9\xe2\x58\xde\x31\xf0\x15\xf0\x00\x69\xad\xcc\x14\xf8\x1c\x09\xe1\xc1\xa5\xa1\xa9\x47\xc5\x5e\xe2\xa6\xfa\xab\x5d\x5c\xa4\x58\xdf\x2f\xb9\xc7\x98\xe6\xad\x02\x51\x74\x1d\x01\xb2\x80\x5d\xc4\x79\xcb\x64\xbd\xef\x62\xb2\xe2\x52\xff\xed\x59\xfd\x18\x99\xd7\x68\x49\x27\xd6\xe9\x62\x96\xbd\x5a\x2d\xf5\x25\x52\xfe\x95\xa2\x20\xab\x2f\xed\xc6\x84\x53\xc2\x21\x84\x5c\xe1\x76\x56\xad\x8d\x74\xc1\xb7\x63\xb9\x72\x3f\xeb\x19\xa2\xef\xf7\xfb\x44\x31\x3c\xcd\x06\xf8\xb9\xde\xaf\x05\x39\xe1\xb7\x25\xfe\xf3\xcb\x7f\x0a\x21\x1b\x0c\x59\x05\x3a\xf4\x6a\x69\x69\x7c\x3a\xc0\x12\x18\xe3\x29\x7c\x63\x74\x59\x64\x03\xab\x0f\x25\x54\xb0\xb5\x7c\x9c\xaf\xbf\x37\x77\x6e\x0c\xd4\xa2\xf8\x10\x45\xad\xc4\x00\x78\x41\x69\xad\x53\x25\xcd\x75\x15\x08\x5a\xac\x49\x1e\x73\x93\x6d\xe8\x30\x14\xee\x5f\x4e\x15\x29\xbe\x3c\xcf\x37\xf3\xcf\x08\xa4\xa3\xea\x97\x3a\x63\xdd\x72\xed\x17\x35\x48\x49\x7e\x53\x17\xa2\xf4\x79\x25\xc9\xb2\x2b\x0a\xaf\x32\x60\x80\x59\xaf\x84\x8d\xbd\xfb\xcb\xe1\x6e\x35\xd2\x54\xf6\xa1\xcc\xc2\xe2\xb2\x36\xa8\x34\x51\x61\x81\x64\x82\x6a\x29\xc2\x31\x96\x3c\xd4\xcf\xd4\xfa\x79\xee\x36\x21\xdd\x90\x95\xc8\x71\xd6\xa8\xe9\x6a\x72\x10\x9f\xc5\x9a\x92\x9a\x32\x80\xbe\x1f\x12\x5e\xac\x64\xeb\x32\x5f\xed\x55\x48\x6b\x1d\x27\x8c\xd4\x44\x73\x45\x35\x1b\xaf\x68\xd4\xf7\x7a\x48\x40\x5c\x34\x8d\xdd\x4a\x1d\x04\x4b\xce\x2b\x1c\x7f\xdf\x98\x5f\x98\x2d\x58\x4a\x7e\xd9\xaf\x41\x04\x67\x72\x01\xfd\x60\xf2\x37\xad\xa7\x41\xa0\xe4\x79\xc8\x88\x0d\x7f\xbd\x86\x8f\x33\x99\xd5\xfb\x5d\x1a\xeb\x8c\xf8\x2f\x0f\x25\x9c\x6c\xa1\x38\x5c\xf2\xcb\x42\x8f\x69\x60\xd2\xe4\x06\xd4\xe1\x0d\x70\x18\xa5\x83\x66\xa0\xc3\xa4\xfa\x9c\x47\x3c\x96\x56\xe5\xae\x64\x71\x19\x5f\x9d\x09\xc3\x5a\xd6\xdf\xb6\xb5\x70\x53\x20\x90\x7f\x19\x62\xcd\xc6\xf6\xfc\x27\x9b\x39\x8c\xc7\xe3\xa7\xcb\x8d\x01\x0b\x3e\x16\x23\x7a\x84\xb9\xcd\x7b\xe8\xfb\x2e\x70\x57\x2e\xe6\xd2\x5a\x73\x0e\xa1\xc8\x26\x14\x6f\x8d\xdb\x04\x56\x49\x53\x2c\x87\x8d\x24\xc0\x0d\xd7\xa0\x0e\x20\x20\x16\x87\x8f\x52\xc7\x63\x95\xce\x03\x80\x06\x78\xe8\x46\x94\xd5\x40\xa7\xc8\xfb\x8a\xde\xa7\x2e\x8e\x96\xa8\xff\xfc\x31\x10\x0f\xb9\x52\x18\xf2\xd2\xe2\x5a\xc8\x89\x07\xfd\x40\xda\x8b\x4a\x36\x9a\x01\x12\x1b\x37\x50\x13\x3d\x6b\x40\x9e\xc3\xa2\xe5\x23\xac\x1f\x16\xdf\x34\x14\xfa\xed\x13\xdd\x2d\x7e\xa8\x7f\x04\x51\x6a\xde\x40\xae\xb6\x24\xff\x0d\x97\x62\xd0\x00\xd6\x1e\x93\x97\xed\xad\x70\x21\x4f\x99\xec\x11\xed\x34\x89\xcf\x50\x12\xcd\x14\x84\x21\xec\xe4\x92\xa6\xd5\x0d\xfe\x1b\xf2\xcd\xea\xb5\xee\x87\x68\xc5\x25\xf5\x09\x96\xf7\x13\x8a\x86\x7a\x9c\xb9\xca\x0e\x71\x93\x56\x7c\x22\xbd\x83\x85\xd6\xdf\x9f\x19\x18\xe9\x04\x77\x70\xaa\x67\x8c\xea\xe7\x74\x95\xcc\xa4\xc8\xd9\x4b\x24\xe8\x6d\xf5\xc3\xe2\xb3\xf3\x41\xf5\x44\x02\x3f\x27\x69\x37\x99\x5a\x60\xcf\xf7\x2a\xd5\xe2\xdd\xf8\xf9\xad\xf1\xfc\x72\xf8\x80\x5d\x3f\xdb\xd1\x01\x41\x33\x52\xc0\x0f\x6f\x10\xcb\xdc\xee\x10\xc4\xdf\xfc\x0a\xaf\x8f\x74\xc2\xfa\x40\xbd\x44\x88\xbc\xa4\x6f\xa4\x0b\x16\xd0\x23\xa9\xb5\x5a\x06\x26\x73\x4c\x66\xa5\x24\xb7\x3b\x02\xc9\xc2\x81\x90\x45\x2a\x13\x56\x1c\x06\xce\x60\x1f\x82\xfd\x99\x85\xf0\xe8\x51\x24\x6d\x24\x8f\x82\x2d\x2e\x2a\x23\xbe\xad\x92\x2d\x89\x37\x7f\xa3\x6c\xbc\x0d\x61\xd3\x6e\xfd\x1a\x07\x51\x8c\x3d\x19\x69\x35\x4b\xc8\xb5\x50\xbd\x15\x95\xa0\xd6\x59\xeb\x08\x85\xc8\x99\xcc\xa6\x01\x21\xfe\xa2\x70\x85\x7d\x6f\xba\x92\x72\xc0\x73\xc4\x12\x62\x59\x05\xc0\x2d\x30\xc3\xba\x28\x7d\x90\xe0\x1e\x50\x01\xfa\x2f\xfa\x3b\x9e\xe3\x0a\x38\x42\x07\x85\x89\x3f\xa2\x5d\x59\x2a\xf4\x2f\x35\x02\xd1\x6e\xe2\x34\xec\x90\xc2\xff\x89\x9a\xab\x13\xe6\x22\xdb\xb4\xc3\x00\x58\xca\xa6\x58\x9e\x83\x7f\xf7\x21\xef\x3c\x71\x23\x49\x7a\xca\xea\x1a\x58\xd0\xd2\x3c\x3c\x73\xd0\xba\xad\x9e\x43\xb6\x4c\xd9\x00\xae\x8b\xac\xea\x8a\xca\x87\x72\x97\x7b\x5c\x98\xf2\xf4\x01\xbc\x61\x4c\x4e\x58\x1d\x2f\xd5\xa8\xa0\x96\x3b\x70\x8d\x82\x6f\x0e\x21\x6a\xa8\x0c\x2a\x95\x92\x92\x2d\x5b\x5c\x1b\xca\xf0\x42\x32\x16\xab\x31\x69\x8b\xb3\x9b\xd3\x03\xa3\x96\xf3\x1c\x30\x35\x04\xfc\x46\xa1\x1f\xe1\xb2\x88\x13\x2d\x0c\x74\xa2\x92\xe1\x67\xbc\x7c\x07\x98\x04\x6b\xa7\xbd\x40\xdf\xf8\xaa\xdd\x4b\xc6\x86\x1c\x4a\xe7\xce\x3b\xb8\xc9\x4e\x5e\x03\xa7\x15\xfc\xa2\x10\xb0\xeb\xd5\x46\x95\x7f\xb1\x92\x8e\xb3\xe3\xd5\xc5\x19\x30\xc0\x04\x90\xa9\x60\x84\x26\x1a\x88\x3a\x2d\x76\x59\xb8\x39\x06\x3b\xb4\x50\xa9\xa4\xb8\xdc\x4b\x06\xd3\x11\x75\x43\x03\xea\x31\x07\x6b\x25\x68\x4e\xb1\xe0\x8a\x01\x83\x88\x68\x4f\xae\x6b\x82\xbf\x24\xa3\xee\x6e\x52\x39\x09\x6c\x16\x0f\x83\xe9\x26\xf7\x7b\xe6\x51\xad\xb7\x40\x21\xf1\x10\x17\xfc\x30\xc7\x94\x91\x4c\xde\xed\x40\xa5\x14\x07\x2a\x31\x0d\xc2\x93\x6e\x8a\x25\x61\xcd\xab\x63\xdb\x81\xb7\x6c\x05\x82\xa8\xe1\x4a\x12\xa8\xa4\xcf\xf8\x6b\xf2\x2c\x90\x13\x8d\xa6\xf3\x3e\x80\x1c\xc9\x8f\x72\x48\x1a\x93\xec\x88\xba\x18\x19\x96\x93\x39\x6a\x31\x41\x05\x67\xc0\xc0\x6f\x34\xdd\xbe\x9c\x1f\xe3\xe0\x02\xc6\xf1\xd9\x5c\xa9\x77\xcb\xcf\x52\x19\x6f\x5d\x78\x9a\xf3\x32\x4e\x41\x13\xb6\xa3\x66\xe8\xdb\x38\x4b\xc7\x21\x31\xb4\xe9\x28\x05\xb1\x3e\xc9\x14\x43\x98\x7c\xbd\x1e\x2b\xc3\x84\xe9\xac\x34\x45\xec\x80\x13\x06\x80\x9c\x30\xd0\x1a\xd6\xc4\xd7\xc9\x67\x0b\x5a\x26\xe2\x60\xa0\xbd\x22\x00\x47\x8e\x4c\x22\xea\x50\x02\x04\xc2\x61\xde\x19\xbd\x34\x52\x17\x9d\x74\x02\x28\x68\x10\xed\x0c\x41\x76\xcf\xd1\x4d\xe8\x05\xfa\x72\x32\xf2\xe4\x90\xdb\x82\x10\xc2\x78\x4f\x75\x69\x85\x97\xea\x5c\x87\xd5\x3c\x85\x86\x5d\x6d\xb0\x5c\xdd\xd1\x51\x81\xc7\x2c\xa1\x25\x04\x98\x59\xdf\x48\x4a\xdf\xd5\xb4\xe1\x95\xe0\x3d\xd7\x05\xa9\x47\xac\xf5\x55\x61\x1c\x55\xdb\x7b\x40\x8a\xf9\x41\x63\x6d\x7d\xae\x9c\x3e\x6e\x33\x33\xb1\xb2\xae\x41\x64\xd2\x6c\x61\xe3\x17\x18\x61\x46\x0d\x24\x38\x42\x55\xb2\xe7\xc9\x12\xe3\x55\x26\x9e\xfe\x2a\xcd\x73\xc9\x39\x68\xba\xde\x71\x5a\x86\xbe\x3a\xcb\xdd\x6d\x9a\xb0\x26\x3f\x74\xcc\x93\xc0\xcb\x9d\x0e\x5a\xb2\x9f\x3f\x96\xe1\xb1\x23\x18\x36\xac\xc9\xbc\x35\xc5\x92\xa6\x0d\x61\x39\xb1\x1c\x1c\x59\x9d\x10\x04\x93\xd7\xa6\x85\x8b\x7e\x7c\x74\xdc\x1a\x32\x25\x0c\xfc\xb5\x59\x38\xe2\xd6\xf9\x8e\xc1\x0a\xa0\x16\xd8\x15\x24\x37\xbd\x8d\xe1\x45\xab\x65\xfc\xe7\xe9\x52\xfa\x82\x63\xf0\xce\xee\xc7\xf5\xef\x41\x4d\xb7\x38\xe7\x5c\x5f\xc8\xb0\x52\xa0\xee\x1d\x21\x43\xaf\x9d\x01\xb4\x5b\xe3\x70\x0b\xe4\x8a\x82\x04\xfc\xed\x85\xc0\x73\xc0\x39\x5c\x3a\xc0\xe9\xb9\x09\xe4\xb3\x3f\xc3\xe7\xe9\xb8\xd9\x74\x03\xbc\x06\xcc\x99\xeb\x0a\x41\xf3\x2f\xaa\xb3\xd6\x5c\x16\x84\xb8\xa0\x6b\x37\xf2\x9e\xf5\x32\xab\xc0\xde\x58\x1d\x09\x29\x30\x07\xed\x77\x1b\x98\x80\x85\x12\xab\x8d\xb8\x04\xfc\xae\x39\x8b\x13\x3c\x64\x3e\xd6\x01\x91\x06\x50\x81\xa2\x91\x75\xcc\xdd\x90\x5b\xc9\x3c\x5b\xbf\x57\x9d\xb7\xb1\x56\x38\x7c\x14\xfd\x2c\x6f\x48\x18\xfe\x69\x10\x8c\xf2\x54\xb0\x7d\xb4\x8f\xd1\xc5\xa4\xfe\xc6\xc1\x64\x48\x86\x28\x86\x2d\x9b\x44\xed\x3e\xde\xb9\x98\x98\x91\xd6\x71\x16\xbe\x48\x81\x89\xb1\xfc\x02\x9b\xe8\xc7\x24\xfb\x21\x3b\xed\x66\x72\x96\x00\x95\xc5\x72\x57\x6d\x76\xa9\xea\x71\xcd\x2b\xff\x92\x8a\x2a\xa1\x58\xf1\x5c\x97\x61\x0f\x6b\xb5\x6a\x2a\x6f\x85\xc5\xa3\x5b\xe0\x36\x44\x63\xcb\xba\x99\xdf\x8d\x5f\x1c\xbe\x2e\x19\xa0\x4e\x4b\xf1\xf2\x1d\x29\x1e\x80\xab\xb6\x3d\x3f\x88\xec\x4b\xd9\x02\x9d\x96\x44\x26\x5e\x01\x3c\x29\x07\x77\xbe\xcc\xe5\x66\x3d\xfc\xa4\xe5\xa9\x37\x58\x4f\x0b\x06\x1c\x62\xde\x87\x53\xbd\x50\x45\xcc\x03\xb5\x53\xc2\xd8\x6c\xde\xdb\xf1\x24\x08\x1b\x24\xb4\xed\x8e\x2d\x35\x78\x66\x5b\xed\xb4\xa1\xfb\xe2\x0d\xfa\xbb\x1f\xdb\xea\x93\x10\x03\x2e\x39\x32\x2a\x8a\x8f\x76\x7d\xfa\x94\x44\x29\x00\x4e\x98\x31\xfd\x0f\xfa\x57\x90\x80\x20\x41\xcf\x5d\xd7\xc7\x61\x2f\x60\x67\x71\x3e\x8a\x8d\x7e\xf7\x76\x0c\xb3\x73\x9f\x5e\x9c\x27\xb3\x04\x2e\x4f\xa2\x5a\x49\x21\xdd\x0f\x6b\xf5\x12\xf8\xe3\xa3\x51\xf2\x27\xc7\xc2\xb3\xea\xa9\xe3\xdb\x6c\x27\x3a\xb2\xc3\xb7\xe9\xf8\xd3\x45\x7f\xa9\x46\xb7\x6c\xf9\x83\xcd\x87\xc2\xa0\x13\x3f\xd8\x51\x21\xa9\x71\x30\x0c\x36\x90\x63\xdc\xa1\x19\x38\x4a\x03\xd4\x44\x8a\x82\x26\xca\x87\x8a\xf7\xef\x3a\x2c\xe3\x4a\x06\x0e\xdc\x7f\xd1\x8c\x41\xe1\x62\xae\xc5\x4a\x70\x60\x18\x00\x5a\x25\xb0\xb4\x0c\x45\xb6\xb2\xf8\x60\x64\x0c\x0c\xd6\xa4\x3c\x8e\x0c\x27\xcb\xd8\xac\xe0\xd2\x42\xef\x01\x28\x17\xca\x75\x25\x7a\xf5\xd9\x9d\xa4\xed\x31\x11\xeb\x55\xa0\xe9\xcf\x97\x4c\xd4\xc0\x14\xa9\x4d\x66\xc0\xa0\x7f\xa0\x97\x38\x73\xae\xb8\x87\xc5\x40\xde\x32\x5e\xff\xe1\x24\x5b\x2e\x50\x17\x1d\xdc\x19\xaf\xed\xce\xb7\x82\x14\x2d\xb1\x23\x42\xc8\xeb\x33\x3c\x37\x7e\xff\xba\x63\xd6\x0f\x0e\xdc\x78\x8f\x7a\x9e\xd2\x7c\xb2\xf8\x90\xa8\x79\x3c\x22\x11\xaf\xdd\xdf\x7a\x3b\x91\x85\xeb\x65\x2e\xc3\x1a\x75\x09\xc3\x17\xf6\xa9\x4f\xf3\x87\x55\x42\xde\xa3\x8a\xb1\xac\xc8\xe0\x16\xa2\x1f\xc9\xee\xa9\xec\x25\x00\x93\x92\xe8\x4b\xe5\x9e\x01\x1b\x27\x26\x96\xbc\x6b\x54\x3b\x56\x6b\x75\xe9\x5a\x90\x8d\x53\x20\x66\xd7\x00\x2b\x26\x50\xb9\x24\xb8\x22\x5e\x62\xb9\xb9\x08\xdb\x71\xd6\x95\xce\x10\x00\x6a\xfc\xce\x03\xd8\x48\xb8\x03\x56\x4e\x9d\xa6\x4d\x52\x9a\xea\xa7\x7e\x0f\x9e\xeb\xb5\xca\x71\x15\xb2\x62\xac\x1c\xb5\xc0\x65\xf9\x83\x9c\xa8\xc1\xa0\x90\xcf\x8f\x11\x3b\x0d\xa8\x75\x41\xe9\xfb\x03\x29\xa4\x1f\xd4\x6c\x38\x14\xa0\xf6\xc0\x6b\x5b\xf4\xdc\x10\xb4\x68\x3d\xb2\xe2\xbf\x2c\xb0\x5a\x6d\x86\x07\x22\xcf\x95\xc5\x4e\x4b\x6d\x59\xb6\x5c\x65\x04\x78\xad\x07\x01\x76\x08\xa7\xa1\x36\x33\xff\x30\x27\xeb\x97\xeb\x5b\x32\x9a\x61\x81\x43\x18\x16\x10\x84\x15\x05\x88\x02\x05\x13\xf6\x67\xfb\xd3\x30\xb8\xdb\x67\xcd\xac\x8c\xf4\x04\x93\x95\x6d\x1a\x93\x3f\x24\xb7\x56\x25\xa1\x26\xc6\x26\x7b\x13\x37\xa8\x63\xc7\x66\x21\xb2\x32\x6d\x5b\x6c\x25\xf7\x02\x27\x67\xd6\x8e\x23\x81\x63\x55\x5b\x6e\xe6\x84\x0a\xef\xd1\x0c\x91\xe3\xb5\xd4\x54\x33\xb6\x32\x91\x0b\x3b\xb4\x52\x3a\xea\x69\x2f\x34\xcc\x0c\x4a\x2c\x5e\xa2\xf7\xb1\x95\x54\xa2\x56\x66\xf9\x65\x6b\x5d\x02\x5a\x80\xb5\x76\x04\xaf\x60\x54\xf5\x7e\xb9\x56\xd2\xd9\x5a\x86\x5d\xe3\x26\x83\x97\x2a\xdb\x1f\x34\xde\x06\x7b\xce\xab\xb2\x71\xe2\xf7\x70\x44\x04\xa9\x14\x38\xa5\x52\x8e\xb2\x0a\xd5\x17\x15\xa6\x5b\x43\x6e\xb4\x1f\x20\xd1\xf3\xfb\x53\x39\xa0\x03\xf8\x45\xf5\x3d\x3a\xae\x41\xa4\xbe\x34\xe6\x0c\xf5\xee\x92\x96\xd1\x8b\x0a\x27\xbd\xaf\xbd\x08\x07\xb7\x3c\x7c\x30\xad\x49\xf9\x75\xbd\xaa\x99\xd3\x7d\x48\xf6\xcf\x08\x25\xb6\xa1\x8b\x25\x6c\x14\x79\x56\x8d\x27\x72\x46\x24\x60\xc4\xa8\x05\x88\x25\x01\xbd\xa2\x39\xc9\xa0\x7e\x3c\x89\x5e\xd2\x1b\x96\xc1\x6b\x4c\xe1\xd9\x23\x05\xef\x2b\xf8\x16\xbb\x66\x56\x10\xbc\xc5\x44\x0c\x88\x59\x56\xad\xd9\xd8\xde\x5a\xee\x5d\x68\x77\x39\xef\x85\x1f\x84\x19\x27\xb6\x34\x69\x10\x24\xbf\xd7\xb6\xfe\x14\xc0\x80\x1e\xd6\xc8\x17\x42\x1e\x48\xab\x7c\x71\x74\xee\xde\x72\xea\x77\x02\x08\x40\x2d\x31\x2c\x0f\x87\x0b\xd0\x3f\x43\x86\x39\xb4\xb8\xa2\xa2\xf5\x67\x2c\xce\x2e\xe2\xdf\xcb\x70\x8b\x13\x93\x5a\x82\xc7\x85\x16\x4a\x6a\x78\xea\x15\xa5\xa6\x8e\x44\x81\x8d\xa5\xfc\xc9\x42\xa4\xa6\x24\xc6\x8e\x9f\xab\x1d\xbd\x78\xed\xad\x1b\x3d\x27\x67\x88\xff\x47\xff\x5d\x8e\x60\xcc\x27\x48\x23\x36\x10\x3f\xcb\x78\xe0\x93\x26\x64\xc0\x80\x8b\xfb\x02\x53\x22\xa6\x42\xfa\x11\xa2\xa1\x42\x78\x06\xa8\xbd\x0e\x23\xa1\x43\x63\x3a\xa5\x8f\xfe\x5e\x1e\xe8\x94\x75\xd8\x7d\x33\x41\xd0\x73\xbb\x74\x34\x1f\xd9\x4c\x8a\xd5\x60\x0e\xc0\x31\x88\x65\xaf\x87\x76\xd1\xc0\x08\xe5\x74\x80\x76\x39\x70\x57\x7f\x39\x79\x8e\x04\x8e\xdc\xd6\x39\x90\x55\x5f\x4f\x22\xe4\x4d\x13\xa1\x54\x26\x6c\xc8\x70\xbf\x8b\x38\x5c\xae\x30\xa0\x48\x89\x38\x09\x78\xca\xe3\x85\x75\xda\x0b\x0e\x87\x01\xdf\x57\xc5\xeb\x57\xcd\xbf\x05\xf0\x4a\x77\xed\x8c\x06\xf0\xb1\xb8\x99\xff\x72\xc4\x74\xee\x38\xd1\x73\xed\x41\x12\x03\x61\x9c\xa0\xae\xaa\x76\xf0\x70\x94\x99\x23\x1b\x0c\x28\x9b\x18\x60\x63\xa7\x8b\x16\x8c\xbf\xc9\xa0\xc3\xb1\x55\x93\x32\xbb\x3a\x6b\x1a\xbf\x51\x97\xc2\x24\xc7\xa3\x9a\x28\xfe\xbb\xb9\xb0\x02\x32\x0c\x09\xf0\x7f\x81\x26\x2c\xaa\x45\xe9\xe7\x98\x5c\x3d\x80\x6f\x98\x67\xb1\x6f\x9d\x78\x1d\x74\x56\x38\x74\x43\xc2\x0f\x2b\xe7\x42\x10\xb4\x33\xde\x97\x89\x4d\xe0\x41\x4a\xa4\xa0\x39\x73\x6f\xc0\x03\x7c\xcd\x1a\x67\xdf\x56\x5e\x90\xfa\x87\x28\x0a\x16\x43\x74\x9d\x3d\xed\x3e\xd0\xf6\xb1\x76\xad\xb9\x3a\x68\xcb\x4c\x2b\x7a\x8b\xef\x7d\x69\xdc\xff\x50\xd8\x97\x59\x5d\x1d\x91\x73\x5c\xbd\x19\x48\x7f\x4c\x11\xd3\x17\xc2\x83\xf9\xd9\xd9\xe0\xb3\x7b\xec\x48\x57\xda\x5f\xce\xbb\xe4\x8b\x5a\x6d\xe8\x39\x2f\xb7\xe3\x85\x15\x76\xda\xb1\x05\xe4\xaa\x7f\x05\xe2\xe9\x84\x98\x17\xfc\x13\x35\x7a\x52\x6d\x49\x38\x9b\xc2\xbc\x35\x3f\x76\x64\x3a\x3b\x7a\x7c\x77\x85\x47\x33\x3f\xbb\xc8\x4c\xe5\xbd\x07\xb8\x94\xd4\xc5\xf1\x8e\xd3\x1a\x0f\xcf\x17\x21\x3b\x28\x30\xfc\x30\x34\x7c\x04\x81\xbf\xb2\x14\xce\x33\x00\xe9\x5e\x17\x57\xc9\x21\xe2\xc8\x90\x79\xe8\x90\x9c\xc8\x31\x60\xf4\xcf\x51\x3e\x2c\xd2\xc8\x5c\x0c\x78\x78\x17\xd0\xa2\xeb\x8c\xdf\x57\xef\x63\x11\x47\xe9\x2b\x6c\x01\x47\x03\x44\xd3\x19\x47\x4d\x29\x8e\x92\x13\x59\x90\x71\x0e\x5f\x9e\xba\xf1\x38\x97\x95\x7c\x23\x10\x97\x56\x46\x69\x29\x1c\xde\x7b\xa5\x17\x16\x91\x06\x86\x1b\xc8\x20\x91\x5d\xc9\x15\x85\xc6\xd5\x3c\xfe\xda\xae\x85\x99\xe6\x6c\x5b\x9e\x50\x7b\x83\xaf\x60\x80\xc1\x53\x25\xb7\x36\xb8\x27\x03\x1d\x4b\xe1\xbf\x5f\x70\x78\x43\x97\x9e\xec\x3c\x08\xc7\x24\x4f\x59\xf3\xe7\x97\x7f\x38\xb0\xd7\xe9\x1e\xab\x60\x9f\xbe\x2c\xd2\x5c\xbe\x3d\xc0\xee\xe5\x6f\x81\x8f\x84\xdb\x57\x0f\x70\x06\x15\x58\xef\x15\xff\xee\xc9\x32\xfd\xd2\x1a\xd7\x6f\x20\xc5\xc0\x07\x5d\x3c\x4d\x90\x6a\x09\x31\x0e\xa6\xd3\x1d\x8f\x84\xd9\x8a\x4c\xbd\xc0\xc0\x6f\x94\x5c\x92\xa5\x30\x57\xea\x77\xde\x4d\x4d\x34\x44\xa7\xc5\x20\xff\xad\xfd\x61\xa1\xb5\xae\xf7\xaf\x32\x2e\x40\xb4\x96\xb7\x8d\xe4\x6f\x4e\xfd\x6c\x7c\x7a\x8c\xfa\xa3\x85\xaf\x4c\xf0\xec\xb9\xa8\xc4\xc1\xe5\x02\x1b\xe0\xdc\xb6\x60\x1d\xc0\x16\x27\xf2\x38\xd5\x84\xe6\x55\x34\xd4\x28\xe1\x8b\xe4\x9e\x56\x3b\xef\x8c\x0e\x24\x55\xf0\x5e\xe3\x9e\x91\x89\xbe\xea\x95\x68\x81\xa1\x9b\x8c\xcc\xf4\xea\x1f\x37\xf9\x1f\xf4\xe0\x3e\x88\x12\x8c\xba\xd4\xba\xa9\x13\x6f\x71\x8b\xd7\xe5\x8e\x1d\x89\xc2\x5b\x61\x40\xe6\x98\x01\xe6\x1c\x69\x86\x64\xeb\x1a\x6c\x8c\x05\x94\x3f\x46\xc5\x93\xdb\x79\xe8\xfe\x42\xec\x0a\xfd\xe1\x7b\x5b\x50\xdf\x1e\x33\x9b\xc9\xf3\x19\x3e\x8e\x85\x80\xab\xc4\xa9\x61\xe9\xdd\x4b\x85\x22\xd9\x20\x23\xfa\xd7\x4a\xbb\x87\x1f\xba\xbd\x56\xff\xbd\x13\x3a\x79\xda\x87\xc7\x58\x99\x0e\x46\x5e\xd7\xda\xe5\x42\x7d\x0d\xba\x72\xad\x17\xb6\xc2\xd4\xf7\xd2\xf6\x18\xab\x70\x38\x69\x31\x91\xad\x31\x3f\x36\xc9\xd7\x0b\xb9\x74\x06\xf1\xe8\x20\xbf\x92\x85\xa5\x17\xfe\x58\x86\x57\x28\xc8\x45\x0e\x9e\xaf\x26\x96\x95\x5a\xfc\xd7\xf0\x4f\x93\xae\x64\x42\xbd\x4c\x51\x54\xd6\xf1\x4a\xd9\xac\x32\x65\xf5\x35\x56\x7a\x7f\x11\xf0\x49\xcf\x8b\x3a\x3e\xc1\x2e\x85\x6e\x07\xb6\xd5\x8b\xf0\xff\xd6\x29\x2c\x84\x3c\x32\x47\xf8\xd0\xc1\x87\x56\x6b\xb3\xe5\xef\xe9\x15\x7d\x26\x9b\xb8\x3f\x21\x47\xe3\x47\x94\xd6\xd3\xf8\x6a\x97\x81\xbc\x5b\x1f\x53\x68\x41\xf8\x61\x6f\x8b\xdc\x31\x1f\xf0\x08\xc4\x60\xf9\x2c\x5c\xf6\x48\x54\xa0\x7c\x95\x5a\x4b\xe9\xe4\xbb\x8e\x39\xb8\xc2\x78\x44\x09\xfa\x1f\xe4\xc8\x75\x91\xb5\xc1\xbf\xa1\xbb\x7f\xfb\x10\x29\x1e\x1d\x0a\x2e\x66\xdb\xeb\xef\xa1\xca\x4f\x31\xff\x4a\x71\xbe\xa4\x74\x71\x4d\x4e\xbe\x35\xc1\xdd\xf7\xce\xde\x8b\x8b\xa5\x71\x1a\x18\xb0\x19\x5d\x3e\x38\xa6\xce\x70\xf3\xff\x17\x02\x4d\xa9\xf7\xf9\xe4\x10\x24\x27\xf8\x08\x4c\x0d\xba\x9f\xf8\x09\xcf\x97\xb9\xa7\x2b\xea\x60\x60\xfd\xa5\xfe\x5a\x12\xab\xbd\x8e\x98\x21\xa7\x31\xca\x03\xa2\xad\x1c\x86\xc6\x7c\xc9\x98\xfc\x62\xeb\x21\x4c\x2a\x40\xd2\x8d\x68\xde\xd2\xa0\x37\xbc\xfe\x84\x7f\x68\x0d\xe6\x3a\x13\x5e\xe8\x02\xab\x0d\xcc\xd7\x3f\xd9\xc9\x44\xc7\xed\x3c\xcd\xf2\x7f\xf7\x45\xf2\x51\x3f\x56\x4b\x55\x34\x17\x4e\x81\x42\xaf\x18\xa5\x16\xd0\x60\xb1\xd1\x07\x69\xa9\xad\x69\x9b\xcc\x63\x71\xaa\x72\xd4\x63\x68\x03\xd4\x07\xf7\x4b\xb2\x96\x3e\x1b\x20\x6f\x06\x9c\xf7\x1e\xcb\x34\x06\xd1\xd5\x57\xfe\xfe\x18\x89\x40\x3a\xbc\x0d\x6e\xbd\x80\x1e\xdc\xc8\x97\x91\x7f\x95\x66\x67\xc2\xdc\x5b\x76\x5b\x39\x09\x87\x63\xab\xd7\x41\x7b\xdf\x7a\x56\x8d\x1b\x29\x27\x59\x68\xb7\x6e\x2e\x67\xa1\x7c\xb4\x06\xeb\xc3\x87\x65\xa5\xc9\x75\x6b\xfa\xd5\xea\xa4\xee\xaf\x95\xf3\x0c\xde\x43\x3d\xc2\x93\xcf\x49\x07\x6b\x50\xcf\x63\xce\xee\x70\x64\xb8\xdb\xe4\xde\x8f\xa1\x0d\x8f\x46\x0d\x9b\xc3\xd3\xe3\xdd\x41\x1b\x38\xda\x22\xff\xb0\x3e\x58\x47\xa0\xaa\x38\xbe\x52\x7b\xa1\x06\x06\xa5\xdc\x6d\xd8\xfa\x18\x15\x37\x76\xa0\xbf\x5b\x6f\xee\x80\xea\x1e\xf2\x52\xbf\x6f\x14\x83\x47\xa2\x12\x2a\x43\x2f\xba\x48\x6e\xd2\xde\xd3\x4e\xf6\x72\x73\x7f\x6d\x13\x14\xdc\x68\x67\x87\x74\xa8\xda\x5f\x77\x37\xde\x55\xb2\x4d\xe9\x51\x0a\xef\xee\x3a\x3f\x66\x3d\x7c\xfb\xb1\xd8\xf6\x25\xfc\xec\x5d\x7d\xa2\x24\x55\x3c\x95\x07\xfd\x92\xed\xc7\x5b\xcd\x5a\xf4\xf4\xd9\x03\x16\x5e\xd8\x95\x2a\x5f\x30\xff\x0f\x5e\xad\xef\x30\xad\xcb\x06\xb4\xce\xae\x31\x38\xe2\x06\x94\x1b\xed\xd2\x90\xc8\x91\x58\x16\xac\xa4\x6d\x50\x26\xaa\x07\x5a\x43\xfc\xe9\xac\x64\xa5\x83\xbe\x99\x6f\xc6\xb6\xb8\x2d\x71\xd0\xf0\xfe\xa5\x49\x42\xc6\xc4\x9f\x17\x81\xd1\x26\xb3\xb9\x82\x05\x41\x90\xc5\x52\x3d\x74\x6d\x97\x71\x7f\xa3\x78\x73\x78\x53\xa5\x11\xdc\xfc\x88\x96\x32\x9c\xb8\x9a\xf4\x53\x01\x05\x0d\xd2\x5f\x41\xbe\x4a\x53\xc0\xf9\x89\xf8\x2b\x52\xbf\xa5\x0f\xa8\xdf\xfa\xdd\xb0\x01\x9b\xc2\x6f\x8b\x4a\xf2\xa6\x67\x5f\x34\xa0\x1b\x58\x89\xba\xa2\x09\x24\xf8\x84\x11\x38\x89\xce\x71\x56\x0b\x80\x13\x65\xd4\x2a\x95\x27\x10\x1d\xe3\xc8\x85\x1e\xea\x9b\xc4\x33\x50\xc7\xe8\x9d\x0b\xfa\x65\xf9\xe7\x6d\xff\x0a\x04\xc0\x62\x5e\xe3\x42\xd0\x3b\x96\xdb\xb5\x2f\xdf\x94\xb9\xe0\xd3\xb1\x32\xc2\x91\x06\x91\xfe\xef\x31\x19\x1f\x3e\x2e\x16\x68\x8f\x35\x60\x28\x6b\xbd\xd2\x97\xe2\x3f\xa9\x0d\x80\x00\x85\x4b\x3c\xfa\xbd\xfc\x8e\x12\x96\xcd\x54\x52\xb7\x12\x7c\x69\x45\x1b\x4d\xd4\x6f\x24\xce\x39\x0d\x75\xfc\x41\x37\x83\x36\x54\x12\x0d\xd3\x89\x2d\x5f\x28\xbe\x64\xcc\xee\x41\x0b\x52\xc4\x75\x48\xbc\x02\xe0\x04\x5d\x41\x47\x33\x51\x6a\x89\xb2\xf4\x4e\x8c\x1f\xa0\xec\x78\x5f\x4a\x9e\xa5\x4a\xf1\x26\xd2\x9c\x43\x57\xc7\x1b\xc8\x31\x99\x43\x55\xe1\x18\x8d\xdc\x72\x56\x79\xc6\xec\xb3\xba\xc4\x3c\x2e\xda\x00\x69\x57\x01\x96\xa1\xab\x60\xc8\x41\x45\xa0\x7a\x01\x6c\x75\x92\x02\x5b\xf3\x2e\x6d\x5a\x94\x32\x6a\x36\x16\x08\x5c\x4b\x41\xc9\x8d\x3e\xce\xd6\x69\xb4\x95\xf5\x53\x94\xd7\xd4\x51\xf0\x22\x4c\xad\x8f\x5d\xe2\x19\xbb\x8f\xca\xba\x24\x13\x26\x63\x6b\x38\x45\xcb\x3e\xa0\xde\x90\x0d\x53\xb0\xab\xe2\x8e\xc2\x64\x95\xc5\xa4\xc1\xb3\xc8\xd8\x61\x57\xcd\xc4\x96\x64\xa5\x65\x6e\x94\x1e\x6a\x91\x98\x9e\x7d\x1f\x9d\x75\xbd\x6f\x1b\x1c\x2d\x8a\x79\x4b\x93\xec\xeb\x33\xa1\x99\x6b\x8f\x13\x72\xa1\x6c\xeb\x88\x4c\x0e\x11\xdd\xdf\x5e\xcc\xe0\xdb\x70\x4e\xb9\x42\xdc\x1e\xb7\x66\x70\x4a\x6b\xb8\x46\x19\x44\x84\x8c\x04\x5a\x42\xad\x74\x0a\x3d\xad\x0d\xe9\x8f\xb2\xeb\x64\x37\x20\xde\x74\xbb\xe8\x29\x8a\x73\xff\xa7\x83\xa6\x7e\x75\xc3\xab\x36\xbd\x7b\x99\x62\x28\x73\x27\xd2\x68\x74\x8b\x37\x58\xef\xca\xcd\xbd\x29\x00\x13\xfe\x0a\xc1\xda\x8f\x26\x48\x1c\xb5\x6f\x1b\x20\x58\x6a\xea\x21\x79\x0c\x51\x64\x13\x03\x0d\xc8\x14\x11\xbb\x23\x7a\x86\x6f\x38\x94\x1e\x8b\x3c\xfb\x7d\x46\xa1\x8f\x8d\x21\x46\x5f\xc8\xc0\x2e\x94\xe0\x0b\x4d\x19\xab\x27\x72\x3b\xfd\x37\x25\xe8\x6c\xe9\xf6\x49\x51\x79\x59\x24\xc1\x1e\x7c\x89\xff\xb1\x00\x7c\x14\x33\x26\x4f\x3b\x5c\xdd\x9f\xd3\xab\xca\x02\x45\xf6\xf6\xdb\xae\x70\xb1\x6d\xb7\xa8\xc8\x32\xb0\xfb\x00\x3f\xe0\xe7\xb4\xb8\xa2\x2c\x60\xf2\x48\xaf\xf0\xff\x2d\x80\x1e\xc1\x8c\x2b\xd3\xf3\x7f\x76\x7f\x46\xd1\x09\xf2\x30\x6b\xfb\xa4\x2b\x42\x62\xbf\x59\x84\x98\x4c\xb6\x37\x23\x12\x5b\x27\xf7\xad\x76\x84\x2d\x2f\x0e\x43\xcd\xdb\xd3\x81\x8b\x25\xae\x3f\x33\xa6\xa9\x22\xd1\xa9\x0b\x5f\x9e\xb6\x9f\xfe\xa1\xeb\xc9\x21\xfb\xa1\xef\xb9\x90\x76\x66\x0d\x2a\xcd\xb4\xa8\xb4\xbd\x2a\x99\x6d\xdb\xca\xda\x92\xd0\x8a\xeb\x32\x33\xd0\x4c\xec\xdc\x84\x30\x22\xc3\x8f\x0b\x51\x35\x39\xae\x86\x1e\xda\x66\x82\x15\xe5\x9a\xd0\x22\x25\x7f\x9d\xf2\xa9\x71\xf3\x0d\xa1\xb3\xed\x66\xad\xe9\x22\xf5\x3e\x70\xcb\xe4\x86\xe6\x53\xd3\xe4\x0d\xa1\x23\x73\xb3\xd6\xb8\x45\x7d\xe0\x29\xfc\x2e\x2a\x13\x72\x41\xec\x59\xa1\x3e\xa4\x6b\xc2\xc8\xf2\xbd\x1a\x52\x3f\x78\x4f\x61\x5b\x55\xfe\xa1\xe8\xf7\x45\xea\xa0\xba\x11\x2d\x61\x35\x2d\x31\x3f\x21\xbf\x74\x01\x9f\xb8\x95\x77\x98\xff\xba\x19\x16\x89\xbe\x70\xe8\x71\x22\x7e\x30\xc6\x8f\x80\x9b\x0c\x42\x51\x2c\xa2\x8d\xa3\x25\xc1\x0c\xc9\x98\xa9\xc9\x81\xfa\x55\x80\x63\xd9\x5c\x70\x6e\x49\x14\xbe\x35\xba\x71\x94\x3d\x97\xa9\x27\x0e\x47\xda\x83\x6e\xe4\xf9\x57\xff\xcb\x3b\xc9\x22\xac\x39\x81\x26\x8e\xdb\x4d\x09\x39\x64\xe8\xe6\xb0\x2a\x01\x97\x38\xd3\x28\x73\x10\xdf\x0c\xd0\xab\x20\x86\x6d\x2e\xad\xdd\x64\x8b\xf2\xab\x54\x53\x8d\xbb\x50\x2c\xae\x2e\x21\x66\x8f\xf0\xdc\x70\xfa\xe0\xc3\x4b\xa4\x98\xe5\xac\x7a\x8b\x2e\x2c\x5e\xa5\xb7\x8c\x2b\x96\x6f\xfd\x88\x03\xd5\x69\xd2\x43\x86\x4e\xb4\xc2\x9d\x85\x5b\x83\xf8\x74\x40\xcf\x4c\x94\x65\x83\x55\x38\xe0\x76\xd2\xce\xbe\xfb\x1a\x7a\x6d\x72\x26\x76\xc5\x59\xa5\x7f\xec\xc8\x44\x7f\x3c\x17\xa3\xf7\x8b\xf2\xdf\xd7\x5e\xbe\x6f\xb3\x10\xbe\xa4\xaf\x40\x91\xcb\x9b\x62\x63\x27\xeb\x66\x0d\x22\xdd\x1e\xef\xd8\xc2\x1b\x5d\x2b\x14\x5b\x5d\xbe\xb0\x57\xb8\x58\x5c\xab\x8a\xc7\x35\x49\x84\x2c\xd2\xca\xd0\xd4\x20\x63\x51\x42\x4d\x7f\x52\x92\xa3\x69\xa5\xea\x8e\x1a\xe2\xa3\x87\x15\x0b\x7f\x7c\x4c\x1f\x3e\x0b\x6e\x88\x96\x5d\xa8\xbb\xe5\x6b\x79\x48\x83\x76\xe3\x1a\x89\xf4\xb1\xab\xf4\xaa\x01\xd2\xde\x21\x31\xf5\xde\xe4\x5f\x83\x44\xd3\xa4\x6e\x39\x9d\xe7\x38\xe7\x00\x74\x5e\x38\xf9\x9b\xe8\xa3\x4d\x13\xcb\xa6\x2f\xab\xdb\x81\x37\x50\x69\x94\xe5\xb2\x88\xb3\x45\xa2\x02\x69\x63\xc8\xdc\xcb\x23\x00\xc2\xa2\x40\x1b\x45\x4c\xf8\xf1\x88\x91\x88\xaa\x8d\x4b\xb3\xdf\xd8\x84\xfc\x42\xdb\x02\xbb\xec\xac\x68\x7a\xa2\xa2\xe6\x06\x46\x39\xbb\x6e\x31\x0f\xf2\xc5\x0f\x82\x68\xa5\x0b\x99\xb4\x35\x28\x16\xbb\xa1\xab\x64\x41\xe1\x1a\xa9\xb5\x96\x99\x0d\x35\x88\xa4\xd7\xe9\xff\x97\x0c\x31\x93\xcf\x33\x33\x43\x46\x8f\x75\x36\x09\x2d\x53\xb8\x99\x35\x8a\xb5\x2a\x9c\x2d\x2c\x8a\xf2\xe8\xd2\x05\x5d\x27\x4a\xec\xb4\x74\x77\x98\x9a\xf6\x28\xa9\xc9\x21\x75\x27\x4c\xe6\xec\x80\x7b\x02\xd4\x44\x03\xad\x11\xa5\x68\x4a\xa8\xe3\x48\xae\x65\x8a\x6f\xf4\x61\xa3\x76\x11\x3e\x1c\x93\x37\xc3\xb8\x66\x04\xcf\xe4\x21\x34\x6a\xba\x8a\x4b\xc0\x75\x7e\xc7\x7a\xf9\x0d\x2f\xc7\x95\xf2\x7a\x17\x25\x46\xe1\x8f\xae\x9a\x55\xa3\xe4\xfd\x59\x29\xfd\xc5\xe9\x81\x4b\x0c\x2d\xd0\x7a\x57\xbd\xe1\x12\xf1\xba\xde\xe6\x3f\xf5\x4e\xe5\xfe\xca\xe8\x82\xee\xcb\xca\x4e\x90\x00\xb4\xdf\xbe\xac\x30\x70\xdd\x2e\xb1\xef\x24\x67\x44\x74\x3d\xd9\xda\x23\x37\x6b\x33\x62\x63\x1c\x35\x13\xac\x87\x8f\x87\xf5\xad\xa2\xd7\xf6\xfa\x4b\x06\x37\xb3\x5b\x35\xb3\x5b\xc5\xa0\xac\xb7\x14\xd5\x5c\x5f\xd3\x3c\xde\x59\x48\x91\xaa\x19\xa5\x4b\x7e\x94\xdb\xa4\xbd\xb8\x2e\x86\x72\x5b\x9b\x8a\x12\x46\xba\x43\xf9\x2c\x8d\x49\xfa\xb2\xbc\x5e\xcd\x30\x33\xbc\x06\x0e\xa7\xec\x12\x07\xa0\x7c\x63\x90\xa1\xb1\x60\x0b\xe4\x6c\x03\xc5\x32\x30\x29\x98\x23\x32\x73\xb3\x64\x68\x84\x36\x92\xc4\xa2\xb2\xce\x88\xcb\xfd\x8f\xe0\x23\x71\xd5\x6d\x75\xa2\x29\x3f\xe2\xc3\x8c\x8c\x7f\xb3\xaa\xff\x9c\x85\xf8\xa7\x25\xf5\x27\x67\x27\x06\xaa\xf1\x8d\xdc\x3a\x83\x2a\x58\x43\xe4\xac\x4f\x8e\xeb\x43\x5f\x0b\x3c\x44\x64\xde\x7b\x34\xae\xb1\x8b\x01\xb1\x78\x7b\xa4\xca\xdd\xc4\x92\x2c\x4e\x53\xc9\xbb\x45\x06\x00\xee\x8f\xbe\x42\x94\xc3\x5b\x5e\xc5\x9e\x24\xe8\x7b\x98\x5b\x58\x2d\xde\xbb\x73\x1f\x43\xeb\x36\xe8\xba\xd0\xcb\xee\xfe\xdb\x2c\xe0\xbd\xc5\xdb\x2d\xf8\xbe\x6e\xdb\x2b\xe2\xbe\x0a\x4c\x3b\x0a\xf5\xcd\xb6\x78\xfd\x75\xe2\x24\x25\x46\xd5\x9e\x6a\xb8\x8d\xd4\x3c\x64\xee\x25\x8c\xa1\xf6\x37\xf0\x1a\x14\xbc\xf7\xea\xf6\x86\x86\x86\x54\x93\x0c\xf1\x81\x37\xf4\xd6\xd7\x70\x7f\x9f\x9a\x89\xaf\x6e\xa9\xfe\xdb\x00\x2f\x1e\x7c\xd1\x2f\x30\xe5\x37\xd9\xc7\x29\x87\xa8\x35\x59\x11\x2b\x46\x1b\x3b\x83\xd3\x5f\x78\x59\xd6\x92\x4b\xdd\x73\x2f\x6f\xe8\xe6\x06\x36\xb2\xbd\xc0\x9b\x0f\xff\xa6\xbf\x0b\x7c\xa6\x06\x58\x60\xbb\xb8\x7d\x88\x38\x05\x48\xcd\xd0\x92\x55\x6d\xa3\x57\xff\x53\x53\xa9\xc9\xd6\xa4\xed\x80\xd8\x7b\xbe\x4b\xb5\x4d\xe3\x00\xca\x63\x66\x86\x00\x70\x0a\x9d\x41\x72\xb3\x5b\x42\x8c\x0c\x2a\x5a\xe0\x7f\xcc\x7b\x40\x9f\xd9\xe1\x4e\x3b\x2d\xe0\x52\x30\x82\xc3\xfc\xf6\xf2\x3f\x10\xb8\x8e\x7b\x5e\x0d\x94\x78\xaf\xb5\x37\x5f\x91\xa8\x6c\x13\x64\x5d\x4e\xd7\x41\x9a\xc2\x8f\x01\xfc\x49\xc1\x82\x1b\xaa\xa7\x51\xf7\x04\x99\x35\x7e\x45\xe2\xee\x94\x5f\xdf\x27\x5b\xd9\x8f\x53\xf7\xa7\xa5\x1d\x74\x93\x3b\x86\x33\x86\x19\x11\x56\xa6\xb7\xd3\xf8\x51\x79\xe8\x59\xac\x8c\x21\x12\xd3\xc7\x70\xb2\x44\x27\xd5\x3a\x42\xee\x6f\xc7\x6b\xef\x92\x4a\x14\xaf\x00\x3d\x52\xaf\xb9\x4b\xfa\x0e\xd6\x3d\x28\x58\x70\x3b\xf5\x48\xb5\x02\x34\x67\x17\x6e\xe6\x9d\x0d\x36\xc5\xb3\x2f\xb1\xaf\x00\xdd\x45\x80\xd6\xf4\xd0\xbe\xe6\x0e\xcf\x06\xca\xa9\x60\x3e\xba\x9d\xfa\x5a\xc5\x73\x46\x65\xa9\x9f\xa5\x77\x08\x2a\xbe\xd8\xd9\xb5\xd3\xa5\x74\x50\xa0\xfe\xa2\xb8\x8b\x85\xb9\x60\x77\x8b\xb2\xa1\x05\xdb\x83\x11\xa6\x80\x21\xb5\x75\xc8\xd2\x49\x9f\xa6\xac\x03\x8d\xaf\x03\x3c\x71\x59\x3b\x10\xf5\xc4\x5d\xc4\x7a\x3f\xb2\xcd\x6d\x9a\x55\xaf\xef\x15\x2d\x1f\xc4\xea\x33\x69\x4b\x1b\x5e\xed\x8a\x63\xcd\x21\x76\x98\xdb\xd6\xd7\xd9\xfe\x55\x50\x64\x9b\x20\x6b\x69\x1a\xd4\x27\xb1\x32\x70\x5e\x14\xc0\x25\x6b\x15\x0f\x81\x33\x13\xfe\x56\x69\xee\xdc\xa3\x37\xa7\xcd\x17\xf3\x89\x79\xe0\xe6\x80\x19\x7e\x20\x6a\xca\xaf\x8b\x7d\xae\xd7\xa8\x22\xf5\x9f\x4b\x11\xf4\xea\x46\xee\x77\xd8\x88\xfd\x6a\xb6\xe9\xb2\x4c\xd6\xb0\xc5\xb6\xcf\x4a\xd6\x8b\x24\xeb\x79\x75\x8a\x6c\xca\x92\xc1\xaa\x02\xed\x0c\xeb\x08\xf6\x2c\x54\xc7\xfc\xf7\xe6\xf4\x95\x00\xb7\x2b\x22\xee\xc0\x43\xd7\xbe\xad\x58\xc5\xeb\xe1\xcc\xca\x5c\x49\xa3\xd5\xbf\x50\x09\x0c\xa8\xae\xb8\xe7\xb0\x1b\x28\x9a\xbe\x74\x87\x7e\xbd\xf2\x48\xf6\xee\xe2\xe5\x91\x45\xd9\xd0\xd1\xf7\x08\xfe\xcd\xbb\x5a\x67\x94\xbc\x9c\x15\xc1\xfb\xd7\x40\xe4\x35\xa7\x88\x39\xf4\x25\xd7\x97\xce\x24\xf1\x7f\x9d\xd0\xd0\xbf\xa2\x1c\x0a\xb6\x46\x6a\xc7\xa9\xac\x94\x4d\xba\x82\xb6\x87\x38\x73\xcd\xf4\x86\xa7\x95\xc2\xaf\x28\x86\x6a\x56\x93\x77\x8c\xca\x4a\xeb\x97\xd3\xac\xd4\x3f\x0e\x70\x4b\x20\xff\x9e\x14\x6a\xa2\x8f\x46\x0d\x25\x91\xba\xa2\x78\x43\x94\x1e\x65\x65\x7a\x5a\x5a\x2f\xf8\x87\x36\xb3\xb2\x62\x03\xbc\xd4\xbd\x2a\x33\xdb\xdd\xdc\x96\x4c\x4a\xdb\x13\x5d\xb5\x2f\x44\xb0\xed\xe5\xcd\xd3\xb2\x75\xbf\x5c\xb6\xd6\xa9\xbb\xca\x10\x02\x4a\xc5\x28\x03\x9a\x24\xae\x28\xb9\xd5\xaf\x22\xb5\xe7\xcc\x1d\x58\x39\x44\x15\x49\xe7\x7b\x01\x2a\xe5\xda\xc0\x78\xa1\x83\x9f\xf3\xcf\x1f\xa8\xf8\x52\x20\xa0\xbe\x23\x93\x73\x01\xd5\x54\x30\xf6\x52\x86\x89\xeb\x01\xe1\x2e\xed\x8f\xb0\xae\x19\x89\xb5\x25\xbc\xd3\x54\x8e\x7e\x7b\x86\x5e\xea\x4a\xc2\x06\x4b\xcb\xa0\xa0\xde\x76\xae\xdb\x18\x4d\x19\x52\x38\x85\x37\x81\xb3\x46\x59\x31\x6e\x7b\x5f\x6f\xe7\x54\xd0\xc8\xe2\x7a\x4c\xd1\xa4\x51\x2c\x97\x6a\xce\x8c\x71\x72\xbd\xa6\xec\x5d\x45\x55\x5d\x5b\x00\xd1\x44\x34\xed\x2a\x6d\x9d\x94\xaf\x07\x1b\x50\x19\xbf\x2f\xac\xf8\x0a\x6f\x3c\xd8\x72\xd3\xc3\x4a\x34\x64\x97\x59\x63\xf8\xb4\x53\x43\xc9\x0c\x19\xbb\xd1\x72\x28\x2d\x77\xe0\xb4\xa2\xa8\x3c\x32\x23\xc3\x1b\x38\x16\x4a\xa7\x2c\xcc\xad\x57\x5a\xad\x7c\x03\xc4\x6f\x76\x45\xc6\xcf\x8a\xb6\xe0\x69\xf9\xab\xec\xd6\x29\xd5\x5a\x9e\x68\x6d\x4f\xad\xa6\x25\x63\xca\x62\x15\x03\x6d\xf4\x5a\x1b\xd3\xef\x50\x88\x03\x8d\x92\x6e\x6c\x6f\x58\x8b\xf0\x6b\x6c\x36\xbe\x05\x12\xb6\xfa\x8c\x93\xfd\xc2\x1d\x58\x66\xf1\x3e\xad\x6f\x82\xb5\x91\x07\xad\x15\x37\x5a\xb3\x01\xfd\x20\x62\xf9\x25\x57\x51\x67\x63\x05\xb5\x32\x8d\x6c\x13\xf8\xd4\x2d\x01\x51\x75\x27\xd4\x51\xa7\x6d\x3f\x4e\x81\x88\x47\x30\xa9\xf5\x6e\x6b\xd7\x55\xa2\xaa\xf1\xaa\xc6\x3e\x28\x38\x08\x48\x01\xe2\x91\x19\x14\x3d\x02\x38\xc9\x58\x52\xd3\xc5\x33\x44\x3b\x79\xe6\xf1\x9a\x31\x08\x87\x68\x70\xf1\xfd\x27\x6e\xff\xd3\x26\x41\xd9\x98\x91\xa9\xe7\x44\xb9\xbc\x7b\xa0\x0e\xa8\x0b\x53\x0b\x53\x22\xfb\x55\xad\xaa\x36\x7a\x2d\x71\xe0\xce\x94\x33\xf8\xf5\xd9\xe0\x5f\xdb\x9c\x07\x0e\x33\x1c\x1e\xb7\x25\x62\x93\x2f\x5e\xbb\xf4\xa2\xaf\xa5\xbd\xbb\x7d\x72\xc3\x3b\xa3\x3f\x99\x75\xe9\x09\x1a\x71\x84\x52\x74\x10\x42\x98\x84\x91\x03\x07\x12\xfd\x95\xc4\xf0\x75\x20\xbe\xec\xe9\x37\x33\x6a\x13\xc0\x12\x10\xbe\x89\x7f\x0b\x7c\xbf\x7b\xab\xe0\x02\xb3\x4f\x70\x53\x8f\x14\x06\xdc\xfd\x98\x67\x46\x9f\xfa\x66\xc9\x89\xa1\xf8\x12\xc3\xf9\x26\x55\x75\xb4\x25\xd2\x84\x75\x60\x44\xd8\x96\x3f\xcc\x98\x17\x09\x75\x0a\x32\x47\xe4\x9c\xc0\x2f\x6e\xaa\x1e\xf8\x0f\x45\xec\x3a\x1e\x48\x26\x7c\x41\x59\xec\x93\xc6\x89\x9c\xc0\x76\xb4\x38\x4c\x4d\xb8\x3c\x86\xb3\xe3\xe4\xe3\x50\xe8\x87\xa6\xa0\x5c\x7e\x88\x1b\xa5\xf1\xe1\x30\x45\xaf\x23\x44\x50\x19\xe0\x85\xb1\xa5\x93\xe6\xf3\x38\x66\xea\x3c\xda\x90\xe6\xf7\x03\xac\xce\xe2\xf0\xa9\x13\x81\x01\xc9\x53\x96\x64\xaf\x5e\x11\xd2\xfe\xf6\x21\x69\xf8\xb8\x51\x2b\xcc\x49\x08\xf0\xa0\x9d\xea\x22\x8b\xed\x79\xe1\x6a\xe5\x23\xd5\xda\x4d\xbe\x21\x7c\xcd\x5c\xa2\x6b\x1a\x32\x01\x5f\xe0\xca\x53\xf5\x37\x38\xd4\xf1\x8b\x4e\xe5\x12\x15\xd0\xb9\x0d\x55\x9b\xfe\xd6\x6e\xad\x87\xea\xa1\xa9\x75\x8c\x90\xe4\x9f\x46\xb6\x27\x44\x74\x93\x48\xb9\x6d\x1a\x75\x77\xf5\x66\xf4\xba\x93\xcc\x8e\x32\x4d\x08\xd9\x0d\xa7\x1b\x09\xee\xb3\x69\xc1\x02\x99\xb6\x72\xdb\x61\x5b\x60\x5e\x50\x67\x35\x0e\x38\x50\xac\x3b\x9c\x4b\x74\x53\x4d\x30\x91\x4f\x5b\xa8\x21\xd4\xa3\xaa\x66\xa4\xa0\x30\xa0\xa2\x75\xc0\xd6\xa2\x59\x46\xee\x7a\xdc\x03\x81\xf2\x35\xae\x4e\xf3\x48\xb3\xf6\x02\x57\x1f\xda\xb2\x15\x6b\x33\x19\x42\x1e\x64\x53\x53\x5f\x49\xe3\x8d\x46\x45\xd3\x05\xb7\x66\x89\x72\x45\xed\x36\x54\x6f\x06\x5b\xbb\x34\x2e\x92\x93\xa0\x96\xb3\x1d\xbe\x03\x15\x65\x5e\x3f\xc5\x45\x21\x0f\x9d\xa5\xd5\xb2\xf6\x06\x22\xcc\x8f\x98\xba\xa6\xeb\xcf\x03\x9d\x08\xb0\xfa\xbe\xd6\x3e\x72\x80\x0e\x45\x2f\x6b\x4c\x43\xcc\xc3\x20\x8b\x33\x8f\x03\xba\x6e\xa5\x6a\x9f\x96\xb2\x1b\x80\xcd\xfe\x12\x99\x9e\x75\x9f\x51\x6a\xfd\x84\x0c\xa9\x70\xf2\xa3\xe2\x02\xd5\x35\xc2\x1a\x68\x27\xde\x79\x10\x66\x13\x77\xc7\xea\x32\x2c\xbe\x55\xf4\xe9\x01\x80\xb8\xdf\x0c\x22\xee\x67\x48\xf9\x56\x60\xb0\x2d\xa6\x84\x4b\x08\x96\xa1\xa9\xab\xb9\x1b\x3a\x5a\x17\x5c\x8c\x9a\x3d\x6d\xb1\x11\x92\x80\x91\xba\x4d\xd8\xc0\xd5\xa9\x42\xf0\xb4\x19\xc2\xdb\xf6\x62\x7d\xd3\x2a\x53\x06\x20\x35\x5e\x9e\x75\x6c\x0a\xe4\xf8\x10\xb6\x41\xe2\x74\x54\x08\xdd\xbd\xab\xfb\x1a\x9d\x04\x7d\x16\xd5\x0d\xf0\x5b\xe9\xaa\x1b\xf4\x50\xf4\x82\x5b\xbd\x44\xbe\xa2\x76\x85\xee\xa4\x2e\xa2\x5a\xc1\x76\x19\xf3\x2b\x4a\xfd\x7e\xaa\x8b\x4a\xa1\x1e\xa8\x0b\x11\x23\x63\x25\xa1\x27\x3a\xdc\x00\x67\x2f\x95\x3f\x8a\x5f\x2a\x1d\xce\x1e\x96\xc3\x93\x0e\x6d\x08\x29\x35\x84\x58\x36\x8b\x38\x65\xfa\xbb\xeb\x3a\xfa\xcf\x7b\xf0\x76\xd9\xef\x9b\x26\x4d\x30\xd2\x1d\xe8\x76\xce\x41\x57\x29\x0a\x6e\xe4\x20\x6e\x90\x17\x5e\x22\x09\x7f\xa7\xec\x3f\x38\xa8\xbd\x38\x6a\x5a\x64\x49\x0c\xb5\x2d\xea\x2d\x52\x94\xb8\x74\xe4\x70\x85\x96\xa1\x0f\xe1\xba\xf3\x1f\xf4\x08\x47\xa0\x5d\x8a\x82\xfb\x39\x88\xfb\xe5\x85\x3b\x35\xef\x53\xd7\xee\x1d\x77\xbb\x28\xe6\xfe\x64\x49\xeb\xb1\xf3\x63\x2f\x3f\x8d\x34\x1f\xe5\x05\xdf\x05\x7f\x82\xac\x36\x78\xee\x54\x2f\xe0\x93\xbd\xc4\x12\x44\x87\xf3\x5c\xdd\x96\x80\x0d\xc8\xab\xc5\x50\xd4\x77\x91\x1d\x11\x3b\x50\x9b\xc7\x31\xa2\xf8\x26\x13\x10\x91\x36\x2b\x1f\x89\xd5\x85\xe5\xfd\x04\x84\x62\x28\x1f\x2c\x17\x80\x88\x2a\x2d\x35\x9f\xd9\x85\x62\xfd\xf8\xa7\x9f\x6a\xf6\x3e\xde\xab\x74\xa7\x62\x0e\x5e\x45\xfd\x0a\x17\x7f\x51\x22\x7f\x22\xeb\x02\x0e\x3d\x76\x1b\x5c\x3c\xea\x3a\x0c\x8c\xee\xda\xd0\x07\xca\x54\x1c\x2b\x22\x74\x88\x7f\xef\x2a\x1b\xdd\x9e\x03\xf4\xc8\x43\xcf\xe8\x3d\x96\x39\xd5\xf4\xa6\x73\x5f\x09\xa0\x67\x48\xb7\x3e\x7c\x4b\xdc\x65\x5a\x7e\xad\x68\x25\xac\x5a\x71\x9b\x39\xcf\x90\x82\x63\xb7\xce\xcd\x65\x71\x0a\x6e\xd1\xd4\x19\x56\xb2\xcb\x2b\x67\x25\x93\x85\xcf\x16\x83\x3b\x11\xb8\xaa\x29\x51\xb0\xb3\xc0\xe7\xa1\xc9\x7b\xa4\x84\x74\xa3\x4d\x45\xb5\x70\x19\xc0\x9b\xe1\xd2\xbb\xc9\x4e\xb2\x52\xcd\xf4\x18\x4f\x08\xe2\x57\xd6\x41\xae\x6e\x9d\xb6\x1b\x7c\x21\xba\x73\x3d\xdd\x69\x5b\x5c\x63\x60\xcb\xbc\x48\xd3\x3c\x60\x72\x61\x4d\x57\x2a\xc3\x73\xbd\x5a\xda\x7c\x31\x6d\x9b\xbb\x0d\xe0\x0b\xa1\x93\xeb\x5c\x0d\x2b\x75\xd9\x06\xa6\xc2\x28\xf5\x11\x1d\x64\xe2\xd0\x57\x81\x45\xbf\x4d\xcc\x75\xb4\x3f\x98\x63\xb9\xc2\xe4\x9f\xb3\xf6\xe4\x60\xd6\x28\x38\xbc\xad\x2c\xbd\xe5\x54\x34\x6a\xfc\x33\xcf\xd5\x72\x14\x9a\xa8\xf0\xa6\xc8\x49\xd6\x7f\x82\x02\xc3\x39\x66\xa7\xc8\xaf\x94\x4a\x62\x49\xd5\x2c\xac\x71\x70\x09\x65\x89\x89\x32\x79\x84\xd5\x52\x52\x2c\x49\x8b\x52\x98\xda\x1a\x4e\x2f\xc5\xbb\xe4\x79\x05\x98\x38\x36\x41\xfd\x4f\x94\x78\x4e\x6e\xf6\x08\x1a\x95\x6a\x79\xa2\x4d\xb9\x04\xa1\xe4\x2e\xa0\x3d\x31\x45\x26\x0f\xbf\xea\xe5\x5b\x6a\x89\x71\x0c\x55\x37\x89\xb3\x4a\xa9\x1e\x15\xb4\x99\x84\x9d\x2d\x0d\x5f\x9f\x93\x46\xfd\x82\x1e\x45\x54\x8e\x76\xd5\xf6\x39\x8f\x77\x84\xf2\x3d\xed\xd5\x8e\x00\x29\x07\xd8\xb7\x60\xa4\x92\xe7\x0d\x86\xd9\x5b\x29\xec\x8d\x06\xb7\x73\x84\xc1\x9f\xc1\x5f\x1c\x1d\xcf\xac\x03\x6d\x69\xdb\x31\xd4\xbb\xa3\x29\xa5\x11\x44\xc0\xdc\x70\xe2\x1c\xef\x45\x31\xfd\xb8\xe8\x8a\xae\xc4\x16\xb8\x9e\x3c\x00\xb7\x60\x45\x85\x8a\xb7\x78\xe7\x1e\x7c\x48\x17\x2b\xe3\x52\xea\xa5\x91\x87\xc6\x10\x6f\x58\xf2\xe4\xcf\x92\xf7\x46\xf2\xf1\x57\x12\x05\xc3\xc8\x88\x9f\xa3\x7b\x65\x76\x22\x7c\x0f\x77\xa0\x78\x95\xb1\xc1\x0d\x19\xd4\x41\x1a\xeb\x63\x6e\x6c\xfa\xc8\x48\xea\xaf\xdf\x92\xcb\x3d\x51\x65\x04\x23\xc1\x2f\xa9\x83\x65\x50\x5a\x98\xd4\xcf\xba\x26\xae\x3d\xdd\xb0\xb1\x5c\x4e\x1d\xe6\x15\x54\x08\x81\x07\x01\x96\x34\xbf\xe9\x55\xa5\x16\x60\x0b\xd8\xa7\x47\xb9\x73\x7a\xe9\xdc\x1c\x66\x05\xd0\x36\xc1\x8a\x03\xdd\x4b\xbd\x12\x60\x09\xd1\x1d\xbd\x5e\x7d\x5d\x60\xf9\xdb\x80\x26\x5a\x19\x6c\x1e\xb1\xf0\x0f\x85\x13\xbd\x07\x65\x2e\x76\x90\xd8\x03\xb0\x6f\xc3\x9a\x16\xaf\xa6\x10\xed\x81\x6b\xb9\x05\xe4\xd9\x04\xb5\xb4\x2e\xc4\x5f\x2f\x11\x1e\x44\xae\xf5\x43\x80\xef\x47\xf7\x5d\x0a\xbb\xf0\xa0\xd4\x29\xf0\x57\x74\x03\xec\x26\xf0\x2c\x5d\x33\xe9\x54\xeb\xcd\x40\xd3\xdb\x00\x4b\xec\x31\x05\xcb\x52\xf9\xc1\x30\xe2\xd0\xa1\xa5\x0c\x4e\x27\x7a\x25\x71\x13\x2c\x3f\xd8\xd5\xeb\x95\x08\xf3\xdb\x02\x91\x7c\x45\x3d\x9e\x6d\xd2\x73\x57\xb2\x9e\x11\x33\xf7\xd0\xbc\x86\x86\x6f\xe6\x20\x6d\x1e\x47\x98\x2c\x92\xea\x31\x4a\xae\x54\xcd\xbb\x69\x70\xe0\x0e\x3c\xcf\xc9\xfa\x4d\x2c\xa9\x43\xb8\x25\x84\x6b\x75\xdb\x42\x24\xb1\xd4\x80\x55\x61\x5a\x70\x1e\xf2\xb6\x5c\xe4\xe3\xfc\x17\x6f\xe8\xc8\xcb\x3d\xb4\xfa\x8f\x8b\xf3\x8e\x3a\xf5\xf7\x19\x19\xff\x44\x20\xe6\x45\x91\x67\xca\xb6\x95\xca\xfc\x58\x63\x66\xc4\x75\x96\x59\xdf\x3a\xe3\x9e\x51\x04\x8c\x89\xa1\x59\xe2\xb1\x72\x56\x9d\xf2\xa5\x03\xe5\xdd\xa6\xd8\xff\xd8\xfd\xb8\xd1\xaf\x63\xb1\xa8\x4c\xef\x6f\xc0\x97\xcf\x91\x83\x7f\x79\xc8\x2f\x06\xd4\x91\x26\x12\xdf\x41\xaf\x20\xc9\xaf\x75\x11\x9a\x66\x0a\xf0\x8b\x39\x55\x3d\x51\x9c\x2a\xd0\x6d\x8c\xda\x17\x84\x42\xd7\x0c\x5d\x56\xa3\x4c\x02\xfa\x2a\x50\x23\x88\x78\xe4\x01\x28\xd7\x56\x23\x49\xb3\xe0\x76\x57\x71\x2a\xbb\xca\x65\x3d\x6d\xfb\x61\x73\xbd\xa4\xee\xa2\xec\xfb\xd6\x15\x26\xc6\xd0\xfc\x7c\x82\xfa\x85\xa2\x8c\xf1\x9a\xa6\xf1\xf0\x06\x8d\x39\xb6\x74\x7f\x1c\x25\xf0\xac\x0a\x1f\xf4\x4d\xd0\x59\xb3\x17\x17\x34\xea\x5e\x29\x09\x49\x0f\xe4\xf8\x7d\x8b\x74\x26\xb9\x2f\xc4\xa0\x5c\xab\x74\x4f\xd3\x38\x8e\x29\xd3\x86\x4c\x25\xe9\x94\xab\x34\xa6\xa8\x6a\x64\x2c\xa8\xa8\xdb\x4b\xd0\x0f\xb6\xdf\x5c\x71\xf9\x07\x0b\x6b\xfb\xf1\x56\xe6\x56\xa9\x4b\xba\x61\xdd\xf0\x78\x03\xcb\xf4\xfe\x0f\xcb\x8b\x92\xba\x66\xad\x36\x7e\xe6\xfa\xdd\x25\x2f\xed\xbb\xad\x43\xa4\x07\x44\x09\x6c\xf9\x65\xce\x12\x82\x9b\x68\xd7\x3b\xfd\x83\x3d\xac\x1d\xb4\xb0\xfc\x80\xb0\x6c\x8c\x76\x11\x30\xad\x80\x60\x49\x4b\xc7\xa8\x61\x04\x86\x77\x76\x55\x78\xcd\x8c\xbc\x85\xaf\xb5\x95\xf8\xc3\x58\x12\xce\xd9\xbf\x63\xea\xce\x91\xfa\x7d\xc5\x95\x69\x58\x1c\x25\x1c\x72\x20\x34\x8c\x9b\x60\xd3\xda\xfd\x03\xbd\x9c\x5d\x35\xa2\x89\x5d\x86\x67\x4a\xb8\x09\x52\xac\x82\xea\x94\xd9\x9c\xb5\x17\x4f\xf2\x74\x97\xd7\x9a\x69\x05\x8b\x48\xe3\x1c\x11\x8c\x60\xa9\x38\x27\x7e\x07\xee\x1c\x24\xf6\xee\xfb\xa2\x14\x83\xfe\xd7\x8f\x34\xe9\xa7\x08\xbc\x02\xa8\x35\x7b\x26\x05\xb3\x38\x1a\xee\x97\x9f\x7c\xee\xc3\xa6\x89\x55\x08\x2f\x04\x6a\x10\x4f\x5c\x38\x47\x28\x45\x57\x17\xab\xde\xe2\x22\xdf\x82\xa7\xbc\x39\xcf\xff\xe4\x03\x49\xdf\x4a\xf5\x2f\x8c\x3e\x33\x27\x81\x0e\xf3\xb3\x10\x8e\xbd\x40\xe1\x24\xc9\x11\xb5\x48\x5d\x36\x3a\x60\x2a\x90\x45\x03\x4e\xd6\x2e\x99\xd6\x4d\xa2\xfe\xdd\xdb\x80\x29\xb4\xf2\x7b\xfa\xd4\x6c\x31\xbb\x24\xc4\xe3\x5b\x51\x40\xee\x49\xe3\x5f\xd4\x50\xd1\xc5\xb9\xb3\xbc\xe2\x26\xd3\x18\xbf\x61\xed\x44\xce\xc1\x2c\x87\xb3\xbb\xbc\xf4\x26\xdd\x10\x37\x10\x92\xe4\x62\x37\xca\xbf\xb6\x6c\xdd\x15\x51\x6b\x77\xd3\x97\xae\x31\xd4\x6a\xad\xfc\x9b\x4b\x37\x5e\x11\xb7\x9a\x67\x6a\x1c\x21\x57\x84\xdb\x45\x1f\x0b\x15\xe5\x7d\xe2\x3e\x56\xb6\x60\xcd\xa9\x07\x16\xf2\x49\x22\x2d\x2c\xa2\xe1\xaa\xd3\x59\x6a\x86\x28\x3a\xc6\x81\x91\xa3\x3e\x23\x90\x51\xdb\x53\xd3\x1c\xa5\x6d\x46\x16\xa4\x62\xac\x28\x95\x6b\xad\x40\x65\x6e\x68\xa0\xa7\x4c\x40\xb4\x15\xf5\x15\x22\xf4\x3b\xdf\x8f\x0f\x6f\xc8\x22\xf5\xbc\x54\xcc\xab\x3a\xf6\xe4\x99\x7d\xe1\x8b\xfb\xb6\xaf\x24\x3e\x18\xcf\x2e\x8f\x00\x00\x40\xff\xbf\x13\x9b\x3c\x5f\x5f\x36\x71\x45\xe8\x1f\x05\x65\x0f\xb8\xc3\x9c\x4e\xfa\xa8\xfb\xb4\xea\xd2\x75\xb1\xee\xae\x2f\x5b\xeb\x2b\x63\x35\x2e\xce\xad\x95\x65\x37\x69\x91\x48\x98\x1d\xa3\x8c\x67\xd5\x18\x95\xa3\x25\x4c\xce\x11\x2a\x1d\x5f\x0e\x22\x4f\x7f\xa0\x82\x39\x0a\xf6\xbd\xb5\x41\xfe\xd1\x45\x02\x7d\x17\x30\xe2\x5d\xf1\x13\x74\x29\xa6\x05\xa3\x51\x42\x6d\x01\x96\x25\xbc\x51\xb7\xa1\x34\x86\xfd\x6a\x11\x32\x63\x13\x3b\xe0\x44\x45\x9a\x27\x70\x40\x9d\x4a\x12\x67\xd0\x2a\xb4\xc1\x88\xca\x0c\x57\x88\xc0\x1c\x19\x62\xd5\xca\x91\x61\x78\x4a\x7d\x5f\x08\x5e\x35\xb6\x1e\x1e\xb8\x89\x0c\x74\x32\xea\xe2\x81\xde\x6a\xef\x4b\xc6\xe3\x1b\xd0\x86\x17\x8d\xd1\xe6\xff\xa3\x3d\x44\x68\xc6\x75\x57\x96\xe3\xe9\xa7\x1e\xc5\x60\x92\xa7\xab\x16\xae\x9f\x4b\xa5\x15\xac\x79\xb8\xf1\xa2\x6c\x9e\x4f\x10\x84\x70\x0d\x23\x14\x99\x01\x1e\xd7\xa2\xa8\x3e\x95\x14\x11\x12\x9e\x5e\x3e\xba\x1a\x4e\x4f\x68\x21\x82\x9e\x94\x17\x08\xf8\xf6\x67\x3e\x49\x43\x6c\x9c\x3a\x98\xac\x46\xd7\x44\x7d\xb4\x3a\x0a\xcd\x50\x26\x29\x75\xa8\x98\x0e\xa8\x8e\xdb\xf8\xcf\x2b\x51\xce\xac\x96\x8e\x8d\xdb\x6f\x61\x32\x43\x57\x23\xe9\xf5\xc4\x24\x31\x82\xfa\x39\xa2\x06\x05\xe3\x58\xfb\xf2\x8f\x20\x32\x71\xe7\xb8\x0f\x22\x89\x56\xf8\xe5\x8f\x86\x67\xfc\x65\xe8\xe7\x1c\x70\x3b\x60\xd2\x46\x2c\x82\x11\x82\xd8\x13\x01\xab\x10\x9c\xf3\xc5\x0f\x2e\x72\xac\x65\x73\x2e\xed\x72\x9f\x09\xe0\xee\x15\x5f\x9d\xe3\xa8\xc1\xc8\x1b\xab\xfc\x34\x33\x0f\x44\x4b\x72\xd8\x1b\x8d\x2a\xc2\x86\x4c\x1a\x80\x97\xbd\x87\x74\x72\xd4\xeb\xa9\x93\x05\xa3\x4e\xa5\x56\x39\xae\x7e\x1e\x6b\x7a\xaa\x60\xc7\xbd\x3d\x59\x0b\x64\xde\x08\x3e\xd2\x3f\xd3\xd2\xc8\x90\x75\x8c\xeb\x11\x95\x0f\xb5\xfc\xbd\xeb\xf4\xd9\xdc\x2f\xd7\xaa\xd7\xfc\x02\xcb\x15\x45\x0e\x86\x87\xab\x97\x5c\x35\xed\x31\x67\x86\xa4\x0a\xb4\x91\x8c\xd9\x5e\xe4\xd2\xd4\x8d\x3a\xda\x9a\x66\x48\xa6\x8c\x48\x14\x14\xcf\xd4\xf0\x23\x10\xaa\x3a\xcc\xf1\x12\xad\x90\x1d\x24\x30\xe9\x30\x94\xa2\x91\x15\xb4\x12\xad\x20\x31\xac\x8f\xf0\xe0\xed\x81\xfe\x09\x8a\xc4\x72\xb5\x8e\x33\x32\x5c\xcc\x80\x89\xcb\x2c\xd9\xc5\x3e\x28\x57\x5f\x60\x8a\x11\x84\x87\x98\x81\xc8\xfa\x81\xb2\x60\x8c\x44\xcf\x4c\x50\xa4\x45\xf2\x48\xa2\x1e\xd5\xe3\x4e\xb8\x1a\xfe\xfd\x68\x41\x4c\x98\x5f\x11\x64\x3e\xcb\xc8\xd8\x4c\x4d\xfd\x7c\x3e\x80\xff\x82\x46\xfe\x5e\xb8\x93\xb9\x62\xa0\x25\x75\x70\x23\x5a\x71\xf6\x9e\x14\x42\x4d\xb9\x47\xb0\x9f\xb8\xf9\xc2\x1c\x70\x98\x5a\xfe\xdc\x21\x48\x67\xf5\x68\x75\x16\x0f\x05\x7c\x39\x82\x51\xad\x36\xd8\xe4\x6f\x2a\xc2\xc4\x86\x96\x6f\x4f\x6e\x8a\x29\xad\xed\x86\x06\xff\xcc\x23\xcd\x31\xdb\x7b\xbb\x06\x86\x97\xdf\x86\xe9\x4b\x96\x32\xe9\xd4\x2b\xa1\xf5\xfb\x8a\xf8\xb2\x4f\x60\x6a\xcd\x87\xe7\x73\xfc\x05\x18\x0f\xd5\x59\xaf\xfe\xd9\xe1\x6c\xf4\x4e\xb3\x68\x98\xf9\x16\xde\x82\xda\xfe\x25\x52\x1d\xd3\x74\xe3\xba\xa5\x58\xc5\xb2\x4a\x22\xaa\x1b\x78\xcc\xe8\x0d\x66\xd3\xb8\x78\xc9\x2b\xb2\xde\xa1\xc9\x62\x95\x43\xdc\xf3\xfd\xff\xa8\x63\x34\x85\xd1\x00\x6d\x12\x77\x94\x98\x70\x4a\x08\xe9\x9c\xb1\x17\x43\x04\x7b\xf5\xce\x21\x0f\x6e\x2d\x6b\x19\xe2\xb3\x25\xed\x48\x67\x90\x92\xf4\x8a\x21\x8d\x62\x37\xc7\xd5\x5c\x98\x17\x72\xc8\x74\x52\x91\x09\x13\xb4\x6b\xc8\x6d\x43\xc6\x0e\x94\x8c\x67\x6e\x23\x63\xa4\xe4\x7e\xba\x7c\xe6\x75\x61\x94\xa4\x13\xb1\x20\x45\xfb\x0c\x4e\x56\x52\x25\x71\x87\x42\x27\x15\x1b\xb0\x75\x56\x26\x74\x44\xe2\xe1\xf8\x0c\x38\x66\xf0\x72\x55\x12\xc2\x0a\x04\x72\x4e\x9a\x9a\x05\xb5\x69\xda\xb3\x48\x3d\x18\x28\x64\xa8\x99\xcd\x4e\xac\x99\x44\x70\x54\xb1\x92\x28\xb8\xd9\xaa\xc1\xf6\xe4\x5c\x03\x44\xd6\x8e\x9d\xf4\x39\xb5\x2e\x41\x35\x59\xec\x24\xfd\x11\x2f\x6e\xb5\x36\x82\x6a\x61\x38\xac\x6c\x46\x88\xab\x1d\xba\x33\xfc\x99\x0e\xbd\xdd\xdc\xca\x55\x8e\x56\x0f\x7b\xc1\x34\xaa\xdb\x18\x33\x0f\xbb\xcb\x74\x35\x8f\xdf\xa7\xba\xb8\x24\x2d\x85\x45\xd8\x68\x26\x94\xbb\x5c\x7e\x49\x31\xf1\x2d\x68\xdc\x3e\xc3\x9d\xc7\x71\xd2\x5c\x6a\x04\xd6\x7d\xb3\x20\xd9\x2f\xda\x02\x3a\x62\x69\x46\xa2\xf0\xe1\x68\x48\x9c\x87\x2f\x62\x5a\xd4\xf5\x8a\x87\xc1\x96\xad\x5d\x6a\xe0\x76\x9d\x5d\xf0\xb8\x79\xe2\x01\xcf\x1a\xb8\xae\x6c\xea\x97\x1c\x0c\xe8\x45\x2f\x76\x76\xdd\x69\xd0\xfb\x6f\x6b\xcb\xc5\xb8\xfe\x89\x6b\x24\xd2\xbf\x96\xcf\x6f\xf8\xa6\xf5\xdc\x78\x7d\xe3\x69\x58\xfd\xd5\x9a\xe1\xce\x17\xcd\x45\xf2\xe6\x91\xb0\x90\xe0\x2e\x5d\xad\xd5\x85\x8d\xe1\x99\xc9\x9d\x1c\xde\x38\x6e\x3a\xd6\x48\x1c\xcb\xaa\x7a\x38\xda\xdc\xb0\x86\x73\x16\xb3\x73\xa8\x50\x72\xd1\xc0\x1b\xdb\x9b\xca\xda\xf2\xb9\x18\xfc\x9d\xa2\xa8\x96\x02\xdf\x51\xdc\x76\xfd\x10\xa8\x5e\xcc\x96\x77\x8d\x47\xf0\x16\x89\x5c\xa1\x66\xc8\xc3\xa0\xae\x0b\xfb\x08\xf0\x62\xc4\x7f\xc4\x6b\x3c\x9a\xcf\x5e\xd7\x4a\xf0\x49\x42\xaf\x63\xc1\x33\xf8\x42\x74\x9d\xed\xd1\x1a\xcc\x27\xec\x44\xa5\xa4\xa1\x4b\x7b\xc8\xbb\xf2\xaa\xfb\x4f\xc6\x46\xa0\xce\xc8\x4d\xc8\x59\xf9\x2a\xb2\xfc\x11\xb4\x76\x85\xaf\x6d\xdc\xd5\x97\xab\x04\x38\xda\xec\xdd\x2e\x88\xa1\xbf\xdd\xa6\x8d\xae\x39\xe5\x4b\x78\x26\x5e\x3d\xc0\xe3\xcd\x69\xed\xd4\x5a\x8a\x56\xcd\xf6\x06\x4a\xd1\x89\xeb\xea\xd5\xf6\x76\x9d\xaa\xbb\x8a\xab\x89\x85\x03\x0d\x7d\x75\x7d\x79\x23\x3c\x2b\x78\x39\x46\xda\x34\x49\xcd\x4d\xdf\x1c\xe1\x7b\x03\x7b\x9f\xef\x95\xf7\x30\x46\x55\xe5\x4d\x7b\x3c\x40\xae\x6b\x2e\xf9\x95\x6b\x27\x0e\xe2\x9b\x11\xf6\x38\xa1\x27\x9d\xed\x4a\x25\xc3\x22\x1b\x84\x68\x43\xbb\xb4\xcb\xc2\x51\x58\x0f\x07\xb4\x17\xfa\x1d\x2b\x89\x29\x55\x68\xec\xfd\xad\x72\x16\x01\x48\x57\xfa\x00\xae\x6b\xe8\x83\xdf\x2b\x23\x6b\x1f\xde\xd7\xd0\x22\xf9\x10\x54\xf0\xc9\xca\xf4\x6e\x45\xc1\x03\x43\x90\xf9\x02\x38\xe7\x52\x79\x0f\xc6\x5a\xc1\x25\xe1\xbf\xfe\xda\xbb\x4e\xe0\x62\x66\x53\x73\x8b\xe7\xce\x8c\xbc\xf9\x21\x16\x77\xb4\x22\xfa\x7a\x5d\x7a\x6e\x4a\xf1\xd2\x68\x51\xea\xf2\xcb\xa5\x7a\xee\x7f\xc3\x2a\x12\x13\xdf\x65\x33\xe7\xeb\xe2\xc9\x5b\xfd\x14\x91\x21\xb3\x27\x4f\x3f\xdd\x4e\xef\x9d\xf8\x93\x68\x46\xb9\x03\xa2\xfd\x31\xdd\xba\xdc\xbd\x21\x86\x9c\xfc\xaf\xcb\x83\xa4\x38\x7b\x5f\xcd\x1d\x2c\x6c\x0f\x4b\xe4\xe1\xfe\xe5\xf1\xf3\x8e\x9c\x14\xf3\xfe\x56\xf7\xd1\xb3\x8b\x22\x16\xe1\xbd\x67\x07\xd1\x04\x0b\x2d\x4c\xe1\x16\xf6\xf0\x58\x8b\xc8\xad\xf2\x77\x78\x64\xb7\xdf\x9d\x20\xab\xe9\xd7\x7f\x39\x50\xbb\xf7\xe1\xad\x83\x81\x05\x58\x4e\x0d\x82\xb5\x2a\x7f\xdd\x90\xd8\x69\x76\x56\x89\x4a\x24\x00\xd6\x0c\x50\x13\xd0\xbf\x91\xe4\x97\x6e\xfe\x62\x9b\xcb\xff\xb9\x1e\xac\x2b\xc8\x56\xb1\x57\x54\xce\xf0\x28\xa3\xa4\x13\xab\x42\x3d\xf0\xdc\x33\x7b\xfb\x65\xc5\x09\x64\x4b\xad\xcb\xfa\xc6\xeb\x73\x52\x30\x50\xea\xdf\x4c\x09\x84\x60\x00\x63\x40\xd4\x79\xfa\x62\xda\x6d\x2b\xdb\xb2\xb7\x24\xd4\xff\x7f\xed\xb6\xa7\xa0\xd7\x22\xdd\xdd\x54\x27\xd9\x42\x12\x2b\xc9\x4e\x03\x52\xe5\x44\x88\x1a\x12\x2e\xbe\x20\x96\xa7\xaa\xce\x45\x60\x9b\xff\x70\x99\x3e\x7f\x96\x22\x18\x15\xb0\x61\x67\xe4\xed\x8a\x79\x51\x07\xed\xb7\x84\x30\x4c\x05\x2c\xad\x23\x0d\x7a\xb2\xc3\x41\x30\x13\x49\xb9\x73\x0c\xfa\x41\xe8\x8e\xb4\x8b\x57\xba\x5d\xa1\x8d\x8b\xf8\x3c\x83\x83\x10\xc1\xf4\x59\x0e\x9b\x23\x35\xed\x8b\x79\xbc\x98\x03\xdf\xf4\xfb\xc5\x9c\x07\x75\xd2\x82\xc2\x20\x91\xd9\x43\xa7\x1a\xfc\x76\x4c\x04\xdd\x63\x12\x7f\x0f\x22\x37\x0c\x15\x4f\x55\x24\x13\x24\x16\x57\xd6\x56\xdf\x2d\xba\xe9\x7c\x4a\x3b\x18\xbe\x14\xd6\xb5\x21\xa3\x7c\xe1\x83\x54\x10\x99\x0c\x98\xf2\xe1\x9c\xa0\x17\x4f\x09\x4a\x4f\x1f\x90\xbe\x50\xc2\x64\x1e\x5c\x48\x67\xb1\x1c\x34\x5f\x57\xf2\x4d\xe9\xad\x36\xc0\xd4\x0f\x56\xb9\x13\x18\xa6\xd8\xd4\xbd\x27\x44\xfa\x23\xe9\x60\x90\x2e\xb3\xc0\x0b\x5d\xa0\x95\xc9\x73\xdc\x5b\xa9\xee\x5d\x7a\x6c\xd2\xee\x5e\x9a\x23\x64\x87\x4a\xe1\xf9\x7c\x8d\x2e\x45\xd4\xc5\xe8\x8b\x21\xc7\xe2\x4a\x7b\x88\x53\xcb\x33\x73\xde\x04\x82\x71\xbc\xee\xa3\x8b\xc6\x76\xa2\x2c\xe4\xce\xcf\xfb\xa1\x4b\xd2\x6b\x93\x87\xd8\xa1\x3a\xc8\x08\x5a\xca\xeb\xc1\x38\xb4\x43\x7c\x05\xf0\x06\x9a\xf1\x9c\x31\xac\xcf\x87\x17\x91\x28\x11\xd4\xd9\xc3\x6f\x35\x44\xca\x7b\xec\xee\x08\x5d\xd5\x02\x4e\x8e\x6a\xbd\x07\x28\x94\x73\xeb\xb0\x35\xad\xdb\xc6\x82\x29\xb3\x85\x3b\x07\x60\x87\x3c\xf0\xe2\xe1\xb2\x10\x4a\xf3\xe6\xd0\x51\x38\xb2\xcf\x3f\xa8\xd8\x61\xa1\xdb\x58\x80\xd7\x65\x22\x13\xa1\xf8\x03\x73\xdb\x8c\xe4\x1c\xa0\xd5\xc5\xdc\xef\xb6\xae\xdc\x65\x28\x9b\xb6\x25\xa6\x1c\xeb\x5a\x59\x51\x7d\x06\xd0\x94\x2b\x05\xc7\x88\x94\xdd\xb4\xcb\x7c\x32\x9f\x8a\xf0\xdf\xc7\xf9\x23\xfe\xf3\x46\x32\x1c\x23\xf4\xbe\xf6\xfa\x1b\xcf\x00\xb4\x28\x13\x77\x64\xc8\x7c\xf5\xfb\xff\x84\xc5\x6f\xd9\xdd\xbe\x4f\x17\xf9\xdb\x1f\x08\x49\xb0\xa4\xf4\xe6\xc3\x9a\x90\x6f\xff\x64\xce\xfc\x11\xda\x44\xa1\x2f\x3d\x1d\x9f\x55\xf0\x0b\x43\x60\x9e\x65\x94\xa5\xb6\xa5\x2c\x62\xb0\x81\x54\x74\xda\x2d\x3e\x57\x3e\x91\x5a\xf9\x63\x49\xf6\xed\xcc\x79\x9f\x23\x10\x9f\xcd\xcb\x7c\x33\x22\xfe\x6b\x0c\xb2\xcc\xde\x50\x43\x86\x73\x4d\xc8\x4b\x44\x73\xe1\x64\x04\xd4\x90\x16\x90\x01\x24\xa2\xfc\xb0\xe3\x5b\xae\x49\x62\x8e\x8f\x3c\xf1\xf7\x61\xfc\xfa\xe4\xde\xdb\xb9\x37\xff\xaa\xfa\x5a\x64\x8d\x82\x41\x47\x38\x7b\xae\x6e\xfa\x29\xed\x70\xcc\xf4\x2c\x2e\x96\xc4\xf9\xfa\xdb\xf5\x99\x59\xdc\xb0\x59\x16\xe5\x5c\xa3\xce\xe7\xbc\x12\x1b\xef\xdd\x82\xa6\xa3\x65\x36\xc6\x2b\x27\x32\x53\x74\x76\x86\xb6\x73\xb6\x16\x61\xc2\x2f\xb4\x31\x7f\x59\x0d\x47\x10\x16\x36\x7e\x1d\x9b\xa7\x78\xf7\x8f\xf1\x9c\xa4\x35\x76\xf9\xe1\x9f\xca\x9b\xd5\xdf\x7a\x91\x28\x8e\x3f\x57\x46\xc2\xd8\x23\x65\x65\xc3\x48\xe9\x69\x12\x33\x36\x2d\x2b\x63\xa0\x29\xc4\x78\x5b\xa2\x9c\xf8\x76\x7a\x2a\xf3\xf9\xab\xb2\x13\x9c\x0e\x2e\xfc\xa7\x8e\xb5\x7b\x38\x1c\x2e\xe2\xfe\xb7\x41\xf3\x17\x27\x5e\x5e\x48\x4c\xda\x79\x3f\xd6\x37\xc9\x97\x10\x69\x3c\x6a\xe4\x13\xad\x32\xc4\xb7\x91\x2f\x7f\xa9\x42\x4b\x1d\x5f\xb9\x73\xf7\x8e\x01\x7f\xfd\xaf\xfe\x87\x63\x0a\xe8\x5f\x78\x75\xa7\xa6\x9e\x01\x33\xcf\x74\xaa\x72\xc9\x5c\x8e\xf6\x4f\xd5\x37\x94\xc0\xbf\x99\xe8\x27\xfd\x23\xe6\xcd\x4f\xdd\xe8\xb0\xdc\x34\x7c\x33\x03\xf9\xf4\xb5\x14\xc5\x2a\xf0\x9a\x5d\xca\x9f\x41\x70\x55\xf0\x5f\x12\x9a\x38\x74\x72\xa3\x02\xda\x88\xa5\x2c\x6c\x44\x5f\xc6\x17\x9d\xc4\xdc\xc9\x5d\xc8\xbc\xe1\x3b\xe8\xdd\xc7\xe1\xa9\x70\x67\x32\x91\x2f\x78\xc5\x2f\x6c\x68\xa2\xb6\x6e\xc4\x93\x06\x37\x9a\xa2\x96\x2a\xab\x03\xab\x8b\x66\xf5\x5e\x55\x5c\xf5\xa1\xb5\x98\x6a\x09\x64\xf9\x32\xa9\xf1\x9d\x32\xde\xca\x98\x32\x25\xfc\xe3\x9b\xf7\x4b\x38\x8a\xdf\x0b\x66\x8d\xcd\xe2\xe5\x5f\x0e\x26\xfc\xb4\x2a\x5f\x88\xf9\x41\xe1\xbd\x9f\xda\x36\x26\x3d\xdd\x6c\x24\xa5\xa7\xef\x16\x4d\x51\xf0\x85\xe3\x0b\xa5\x8e\xd6\x32\xae\xc5\x0d\xa8\xcb\x1a\x55\x59\x70\xc5\x01\x3d\xe1\x14\x2e\x0e\x19\x07\x04\x94\x02\x46\x34\xbf\x0b\xcd\x4f\x12\x96\xd4\xa1\x83\x59\xac\x98\x33\xf5\x0b\xa9\xf9\xf4\x58\xc1\xd2\x79\x89\xca\x92\x6f\xff\x10\xe7\x67\x77\x18\xa2\x35\x73\x69\x50\xe0\x10\x19\x18\x07\x5e\x9e\xeb\xbd\x48\x91\x17\x5b\x57\xd2\x43\xdd\x4d\x54\xd3\x30\xfb\x38\x30\x2a\x32\xa0\x80\x25\x9a\x8d\xea\x5a\xc4\x8a\xe2\x3b\xce\x94\x17\x76\x11\x92\xe3\x0b\xf2\x35\xf0\x05\x23\x14\xc1\xbd\x55\x18\x9a\xa4\x8b\xbd\x13\x16\xc1\x0c\xee\xec\x38\x94\x80\xbc\x8b\x5b\x97\xb4\x68\x2a\x86\xee\x84\x0a\x15\xb2\xf8\x21\xe5\x2e\xd8\xe9\x61\x59\x27\xff\x67\x2d\xfb\x5f\x56\x79\x72\xaf\x84\x5b\x6f\xa5\x1f\x9a\x65\x5e\xe8\xeb\xbe\x5d\xcd\xfd\xf2\x7c\x72\xf5\x0e\x54\xe5\x22\x4c\x60\xb6\x55\x47\x62\xe5\x47\x9e\xbf\x10\xca\xdf\xf6\x55\x7c\xf6\xaf\x9f\xcd\xad\x19\xa5\x99\x6f\xf1\x1a\xc3\xe7\xed\xd2\x79\xdc\xb9\x7a\x94\x02\x33\x21\x6c\xb5\x46\x1c\x9a\x24\x5a\x36\x7b\x65\x02\x9d\x4e\xbb\xb6\xa7\x8c\x44\x5d\x76\xb9\xd3\x2a\x0b\x6d\x6c\xd6\x0f\x7a\x56\x60\xe0\x59\x55\x69\x2c\xc0\xf6\xb0\x69\xa9\x45\x93\x74\xb0\x7c\x7b\x7c\x2f\xcc\xe7\x12\x77\x15\x4d\x57\x61\x4f\x24\x17\x96\xe5\xd5\x5a\x3f\xf7\xa3\xea\xf0\x88\x5d\xe5\x45\xb6\x7b\x03\xe2\xf5\x76\xdd\x25\xba\x50\x56\xdb\xc3\xa6\xe9\xe4\x7f\xf8\x23\xc3\x14\x82\x47\x01\xc5\xbc\x30\x6d\x5e\x14\xd1\x27\xc6\x61\xe3\x7d\xa0\xc3\x98\x55\xf1\x2b\x23\x48\xbe\xad\x89\xa8\x49\xa0\x13\x16\x4a\xd5\xc5\xb2\xf2\xeb\xb1\x14\xdf\x36\xb4\x23\x4a\x68\xf3\xcb\xf1\x2d\x69\x53\x16\x2b\x03\x83\x35\x3c\xff\x1c\xb3\x95\x72\x8e\x36\xbd\x7e\xf2\xcc\x56\x7a\x2b\xee\xbd\x05\xb9\x87\xa4\xfd\x94\xd0\x5d\x6d\x58\x4b\xb0\x2e\x1a\xac\xaa\x8b\x02\x1b\x04\x38\x5e\x59\xfa\x91\xb9\x4c\x32\xc8\x61\xa3\x64\x7c\x8c\x55\xb2\x3f\x17\x15\x24\x85\xb8\x33\xd5\xc4\xed\x92\x7d\x98\xbf\x1b\x80\xe8\x80\xde\xf1\x66\x4f\xdf\x8b\x14\x6b\xfa\x25\xc3\x92\x09\xec\x59\x40\x4f\x07\x98\x9a\xf5\xe1\x96\x41\x2b\xf9\x50\xfc\x27\xd4\xf9\x3c\x1b\xc7\xd8\xf7\x23\xc0\x50\x2e\x17\x2d\xe3\x22\xae\x73\x4c\x24\x4a\x13\x96\x00\x83\x0e\xd4\x69\x27\x47\xac\xfd\xda\xc6\x62\x76\xe3\x00\x0a\x6a\xa1\xad\x00\x9a\xba\xe5\xc7\x9a\x98\x23\x0d\x12\x76\xd8\xca\xe0\x44\x2b\xc4\xde\x7e\xb4\xb5\xab\xac\x41\xcf\x4b\xb6\xba\x1b\x59\xa9\xce\x41\xdd\x76\x08\x3d\xbb\x03\xee\x09\x50\x33\x66\xea\x1d\xfd\x08\xd7\x21\x74\xff\x45\x55\xfd\x66\x2a\x4e\x6a\xf2\xb7\xf4\xc8\xb7\xab\xb8\x89\x4d\x68\x5b\x50\xd7\x52\xd0\xb8\xf6\x3c\x3b\x34\x4c\x6a\xc3\x33\x6d\x6b\xc7\xdc\x0a\x5a\x40\x4b\xd7\xf9\x72\xe8\x0c\x4a\xf0\x9e\x9c\x28\x7c\x38\x45\xbc\xf0\xc7\x72\xa9\x55\x91\x43\x0e\xf8\x03\x8b\xa8\x51\x9a\x9f\x7e\xea\x18\xeb\x21\x2b\x46\x22\x42\xd9\xb5\x08\x6a\x44\x21\xff\xe4\x17\xb4\xd1\xf6\xbf\xc2\x91\x14\xd2\x0b\xdf\x5e\xf0\xed\x4b\x24\xf4\x2c\x2f\x54\x87\x39\x69\x40\x71\xa0\xc6\x23\x03\xa9\x41\x49\x6d\xee\xf2\x69\x05\xe7\xe8\x25\xb0\xef\xa5\x05\x92\xfb\x5a\x3b\x80\x53\x8f\xdd\x83\x5d\xad\x77\xc9\x54\x55\xad\x4e\x63\x04\xad\x70\x44\xc0\xc6\x01\x66\x0a\xf5\x9f\x55\xf2\xb2\xf5\x66\xb5\x03\xfb\xb1\x6c\xeb\xa6\xc4\x94\xd8\xa8\x83\xb6\xf1\x77\x1d\xf9\x61\xf5\x13\xf9\xd6\x0d\xa9\x29\xb1\x59\x0f\x6d\x63\xef\x39\x6e\xc8\x78\x59\xe7\x99\x1d\x67\x57\x8a\x62\xb3\xa6\x0d\xe2\x81\xf7\x10\x67\xb9\x3f\xe4\x39\x1d\xe5\x37\x9c\xdd\x69\x8a\xd5\x9a\x32\x88\x07\xcf\xec\xc9\x50\x0e\xfc\x4a\xfe\x3a\x88\x88\xed\x49\x25\x3f\xa9\x0f\xc3\x08\x83\xa8\x53\xf8\x94\xa1\xae\x97\xec\x59\xa8\x30\x79\x30\x19\xc0\x86\x76\x36\x66\xbe\xd3\x15\x4f\xa7\xb2\x8f\x3d\x9b\x52\xf7\xc8\x76\x46\xf0\x2f\x0f\xbd\x85\xff\xdf\x11\x59\x9d\x27\x08\x82\x35\xee\xdf\x62\xc0\x1f\xef\xdf\x5b\xfd\x43\xf2\x9c\xf0\x97\x5e\xf2\xfb\xfe\x76\x48\x4b\x62\xb1\xad\x52\x1b\xeb\x9f\xc7\x66\xfe\xff\x50\x2c\xe5\x67\xed\x15\xe6\x1f\x06\xe3\xa7\x14\x7a\x66\xda\x24\xb6\x3a\x9b\x69\xf3\x38\xda\xde\xd0\xd2\xc0\x14\xbc\x23\x89\x1b\xf2\xd1\x24\x6d\x49\xe3\x14\xa9\xa1\x47\x82\x7b\x35\x19\x23\xe2\x23\x11\x35\x8c\xe6\x93\x09\x1e\x7a\x0f\x55\xda\xf2\xd0\x7e\x78\x32\xf1\xb9\x77\x9b\xee\xd6\x86\x06\xb0\x2f\x23\xcb\x43\x94\xe5\x38\x95\xdc\x37\x2c\xeb\x93\x34\x96\xde\xa9\x17\x29\xdd\x28\x87\xde\x11\xee\x19\x35\x1c\x83\x29\xbc\xd3\xc7\xb7\x8a\xb1\xd7\x3f\x39\x70\x05\x46\xd7\xbb\x5d\x40\x7c\xbc\x13\xef\xb0\x49\xf6\x21\x5d\x63\xf3\xc0\xf2\x67\xce\xde\x72\xde\xda\xa4\xfc\xa8\x35\x27\xfc\xbf\x31\xfb\x56\x75\xe5\x2a\x53\x1b\x7d\xa0\xaf\xd4\x88\xb2\x3f\xc3\x5a\x81\x01\x79\xa1\xb5\x7d\xab\x56\x96\xbe\xec\xd5\xac\x13\xaf\x1a\x5d\x96\xca\xab\xbe\xae\x76\x8a\xc3\xd2\x2e\xd5\xa6\xe0\x33\x50\x3d\x84\x16\xdb\xae\x0b\x5b\x01\xf6\xba\x42\x95\xad\x5e\x8e\xe6\xc0\xee\x0f\x09\xd7\xc9\xd6\xb2\x70\x2a\x8f\xbb\x50\x81\x19\x8d\x2b\x5b\x11\x8a\xfc\x88\x82\x93\xab\x59\x07\x54\x21\xc0\x84\xa7\x26\xb4\x4b\x72\x7e\xc9\xbf\xa6\xf7\x19\x14\xd8\x40\x5b\x30\x93\xa2\x17\xba\xc9\x04\x9d\x7f\x6b\x5e\xff\x4e\x04\xf8\xae\x19\x77\xe4\xca\x52\xe4\x1b\xa9\x9e\xfe\x86\x29\xc0\x20\x04\x34\xd6\xf7\x9a\x46\xef\xb3\x90\x72\xd6\x93\x32\xa3\xb3\xe5\xe7\xb0\x3e\x38\x90\x5b\xde\x58\x5d\x79\x87\x65\x49\xdd\xb1\x7a\xce\xf1\x26\xbb\x45\x34\xd6\x37\x72\x83\xb7\x69\x46\x12\x63\x5e\x0a\x30\x24\x9b\x19\xcf\x40\xdb\x03\xcb\x46\x0e\x03\x2b\x9a\x64\x8b\x59\xdb\x80\x84\x65\x65\x98\x39\x2d\xd8\x45\x40\x65\x08\x77\x7c\xb7\x07\x4c\x02\x5b\xd1\xef\x80\x8a\x7a\x3e\x8f\x65\x7f\xc0\x0a\xc9\x1b\x84\x56\x4c\xc0\x76\x6c\x32\xaa\x9b\xd1\xa5\x09\x78\x3e\x92\xd6\xed\xb6\x35\x62\x25\x99\x3e\x1d\xfd\x2c\x62\x32\x09\x56\x20\x21\xc5\xed\x3b\x35\x19\x5d\x94\xc1\x9e\x01\xa2\x9e\xfc\x4d\xd3\xc4\xae\xc0\x15\x58\x64\x2b\xe6\x48\xdb\x40\x75\x61\x55\x51\xdf\x6c\xc7\x7a\x48\xb6\x5c\x73\x5e\x49\x38\xb9\xa2\xef\x1b\x74\xfd\xaa\x8a\x89\x17\x8e\x23\x33\xa8\xce\x36\x62\x15\x15\x6d\x2d\x09\x9b\xe1\x40\x10\x3f\x26\xd0\xd9\xc0\xa9\xbc\xa0\x98\xa3\x09\xb2\xc2\xdc\x0c\xba\xc7\xec\x57\xbc\xad\x1a\xdf\x52\x9a\xf6\x5d\x75\xd8\x09\x86\x0e\x47\x56\xd9\x03\x5e\xf6\x07\x04\x8c\xe0\xea\xd8\x0e\xa5\xc8\x06\xbb\x80\xbd\x98\xd7\xd3\x94\x9b\xc5\x86\xbf\xe1\x05\xb6\xe4\x35\xa3\x95\xdb\x12\xa0\xc3\xf0\x51\x9e\x39\x0f\xab\x52\xfd\xfb\x22\x7d\xde\x77\x34\x93\x3b\x9a\xa6\xbd\xbb\x1d\x7b\x9a\x02\x36\xc8\x94\x9b\xc4\xdb\x2d\xef\x1d\xe0\x1b\x28\xed\x96\xb7\x2b\x49\xd7\xec\x9f\x41\x45\x6c\xc3\x05\xbb\xe0\x08\x30\x20\xf5\x81\xba\xa4\x78\x27\x57\x3c\x08\xa5\x39\x5d\xf0\x64\x77\x7f\x2d\x40\x38\x15\xab\x3d\x50\xf2\x98\x43\x4a\x83\x8e\x72\xc5\x78\x67\x97\xb4\x19\x92\x02\x03\xc6\x08\xd9\xae\xb3\xe7\xa7\x94\x27\x8f\x1a\xfd\x5b\x09\x39\x41\xcc\x6a\xb4\xe1\x99\xca\x10\xf3\x75\x21\xfd\xc4\x8d\x4c\xfa\xe3\xda\x54\x22\x9c\x96\xf3\x63\xc8\x18\x21\xd7\xd6\x6a\x5c\x51\xc6\x29\xe7\xd5\x8a\xd8\xa5\x18\xed\xe8\xc5\x77\x80\x42\x7b\x79\xcc\xb6\xc2\x91\x57\xd6\x84\xba\x36\xc6\x25\x20\xf1\x66\x40\xf8\x00\xbc\x3b\xe0\x4c\x10\x54\xfe\x38\x46\x3e\x08\xe9\x01\xe4\xf7\xb5\xfe\xc7\x09\x3d\x5d\xf8\x9b\x80\x06\x0d\x60\x05\xd9\x80\xa3\x99\x24\x89\xb7\xf3\xb4\x93\xb0\xe9\x08\x57\x9b\x4f\xc0\xcf\xd5\x69\x2d\xe4\xdf\x08\xc9\x04\x9b\xd6\xc6\x82\x9f\x1b\x97\xea\x82\x58\xa6\xd8\xc6\xfc\x76\x0c\x55\xf1\xff\xf9\xc2\x91\xf7\x69\xf3\xcd\xaf\xe1\x92\x3f\xdc\x94\xd5\x8f\x15\xbc\xf8\x36\xfc\xfa\x6c\xd5\xc9\xe9\x48\xcd\x60\xc6\x79\x3c\xfc\xc8\x13\xd5\x9f\xd7\x23\xee\x5d\x89\x16\x5c\x7d\x6a\x6a\x13\x97\xfc\xad\xf9\xf4\xf8\x2b\xd7\xd3\x2c\x9c\xd4\xb9\x4a\xf4\x93\xa5\xe9\x26\x7e\xc1\xb2\x05\xfe\x46\x7c\x13\xbf\xce\xac\x48\xa2\xe9\xaa\x68\x59\x24\xe9\x93\x22\x8e\x57\x50\xd7\xdf\xd4\x6e\x54\x8f\xf2\xbd\xd3\x4d\x6b\xa1\xbe\x3b\x4a\xd0\x2e\x83\xcd\x6b\xde\x2a\x58\xfc\xa0\x9d\xeb\xcd\xe8\x64\xf4\x6b\x02\x24\x08\xa7\xb8\xf7\x24\xa1\x9b\xd5\x22\x94\x01\x41\x0e\x0e\x88\x4d\xb5\x9d\x52\x3a\x58\xe5\xef\xd7\x76\xd2\x9b\x98\x5a\x1e\xd6\xf7\xcf\xc8\x5f\xaa\xe2\xd4\xb1\x2b\x25\x8a\x1c\xe9\x5a\x99\x47\x5c\x2c\xea\x27\xb9\x5c\x00\x7c\x36\x40\xaa\xe4\xa7\xca\x53\x36\x65\x55\xaf\x5b\x14\xa7\x69\x0d\x3e\x72\xc9\xab\x76\xe0\x83\x2b\x04\xdf\x79\x86\x7d\x31\xed\x27\x77\x5d\x6b\xf7\xec\x88\xf5\xb9\x17\x83\xee\x1d\xce\x13\x97\x9f\x6b\xc0\x81\x22\xc1\x13\xdb\x11\xb8\xda\x65\x37\x8a\x55\x2b\xfb\x29\xaa\xc1\x94\xa8\x9b\x64\x19\x19\xb3\x73\x66\xd0\xc7\x87\x71\x9c\xe0\x80\xb3\x48\xa0\xa5\x31\x8e\xc4\xda\x4d\xb0\xe6\x49\x83\xed\x54\x04\x13\xd8\xa8\x1f\x32\x00\x9b\x47\xd9\x5a\xbd\x18\x26\xd9\xec\xb3\xb7\xc8\x0d\xc0\x2c\x9f\xa2\xa1\xc9\x5f\x0c\x68\xad\x47\xa3\xa6\xb8\x1b\x07\x5c\x29\x39\xfb\x4c\x15\x0f\x51\xdb\x58\x51\xdc\x54\xe7\x98\xf7\x38\x40\x77\xaf\x7c\x7b\xa5\x6b\x48\xdc\xc0\x42\xe5\xfb\x52\x5a\x6a\xdf\x8c\xc8\xed\x61\xf9\xe0\xc3\x17\xc3\x34\xc7\xd2\x2e\x8f\x17\x68\x77\x35\xa6\xab\x66\x03\x84\xaa\xf9\xa0\xed\xac\x4c\x04\x5c\xdf\xab\xd9\x9b\x06\x3e\x53\xd6\xc7\x4f\x54\x02\x29\xc0\x80\xb1\x99\x1e\x9d\x8a\xd4\x3b\x2e\xb3\x27\x19\x62\xb0\xa8\xca\xe9\xfb\x30\x2d\xb1\x8a\xae\xac\x5c\xc4\x12\x4f\xe1\xd6\x4a\x60\xdd\x92\xf6\xed\x9d\xdb\x66\x35\x87\x30\xca\x48\x7d\xc9\x99\x67\x12\x80\x3a\x14\xbc\x48\x08\x98\x99\x72\x00\x1f\xfc\x4e\x1a\x6f\xed\x4e\xb9\x25\x6d\x75\x67\xc1\xa8\x07\x94\x3f\x47\xa2\x6b\x60\x87\xce\x39\xca\x3f\xef\x13\xf1\x97\x32\x9a\xab\x0c\xe5\xf5\x67\x55\xd6\x7c\x78\xa6\xcd\xd6\x80\x26\xb1\x35\x86\x4d\xb9\x24\xd8\x78\x4a\xdb\x89\x56\x83\xfc\xaa\x8d\xaa\xae\xf8\xb2\x4e\x72\x40\x32\x7a\xe0\x72\x95\xcd\xbf\x8a\x7f\x18\x17\xe4\x7d\x69\x6c\xa0\xe8\x8c\x56\x51\x45\xfd\x12\xf9\xa2\xf2\xb3\x7c\x8c\xf6\x0b\x77\xf6\xaf\xf7\xe1\xf7\xb7\xec\xd7\xc1\x77\x2f\xc0\x3e\x40\xde\x59\x0a\x26\x32\xeb\x5a\xd6\x59\xfe\x7f\xfd\x51\x81\x5f\x5e\x72\x43\x85\xc8\xc6\x78\xd2\xde\x4a\xc8\xce\x8c\xf8\x15\xcc\xe6\xaa\x72\x1c\x4a\x71\xf7\x21\xe4\x01\x76\x33\x84\x5d\x05\x09\xa2\xe7\x06\x14\xfb\xa8\xa2\xfa\x4b\xb8\xde\x32\x71\x31\x54\x89\xa8\xb9\x0d\x75\x9c\xf9\xff\x34\x91\xd5\x49\x54\xca\x13\xb6\xae\x4e\x2b\xcf\x90\x54\xc5\xfb\xe4\xbe\x31\xe6\x06\x48\xb3\x0a\x6a\x18\xc8\x8c\x9a\xc6\x30\xc4\xd8\x1c\xcc\x10\xe4\xa7\xb5\x16\x5e\x72\x52\x32\x53\x4e\x7d\x38\x44\x64\xbe\x10\x72\x2c\x2f\x88\xbc\x3c\xef\xc8\x0b\x87\x56\x97\x92\x6a\xaa\x77\x9e\x7d\x3e\xb8\x5f\x42\x32\x10\xb9\x73\xdf\xdc\xed\xf2\x55\x5e\x53\x83\x50\x84\x08\xb0\xd1\xc8\x00\xae\x42\x1f\x40\x0f\xb6\x0e\x83\x6a\xf4\x5b\x3c\x51\x02\x6c\x27\xbe\x77\xa4\x1f\xb1\xf5\xe1\xd1\x2a\x71\x42\x99\x40\xab\x24\xca\x6e\x27\xba\xb6\xf2\xef\xb9\xa4\x20\xe3\xe3\x5c\x2c\x9a\x32\xce\x7c\xa0\x5c\xce\x0b\x4a\x8f\x67\xd3\xb9\x79\x30\xe0\xd3\xc0\xef\xa7\xe1\xbc\xe2\xcb\x7a\x51\x16\xcc\x7f\xe1\x52\x8c\xd5\x8a\x98\x73\x34\xfe\xab\x9f\xbd\x84\x3d\x02\x2b\x97\x75\x14\xb0\x67\xcf\xde\x55\x74\xb0\x96\x8e\xef\x7f\x20\x0b\xc1\x1b\x78\x85\xbc\xc3\xe2\xd6\x98\x3a\x07\x17\x48\x0f\x99\xd1\x4f\x62\x41\x89\x24\xe3\xb9\x19\x17\x2f\xbe\xa4\x11\x6d\x62\xb5\x5c\x2f\xb1\xd7\x9e\x1b\x52\xb0\xd6\xa4\x9a\xa0\x2e\x64\x38\xd4\xf3\xa3\xfa\x25\xae\xcc\x35\x73\x7a\xe6\x67\x6e\xed\x77\x1b\x80\x5e\x21\x4f\x54\x27\xad\x3c\xf0\xb4\xc7\x10\xc3\xc9\x41\x7e\xd8\xc9\xe2\xb1\x3c\xe8\xb3\xf0\xa7\x30\xf3\x29\x26\x66\x61\xc8\x30\xc1\x17\x00\x73\x3c\xca\xdd\xfe\x5c\x3b\x26\x06\x62\x15\x2b\x45\x4c\x0c\xb0\x49\x53\x26\xd3\x30\x41\x04\x5a\xdf\xb2\x1b\x5f\x4a\xfe\x73\x2a\x6d\x96\x29\x77\xdd\x1e\x9d\xcf\x19\x8b\x99\xbf\xbf\xe8\x4b\x95\x8f\x24\xa5\x5d\x54\xb3\xb5\x11\x61\x70\xb1\xbd\xbc\x04\xaa\xb3\x9b\xd7\x0d\x75\xd3\xbb\x8f\x5d\x5e\xc2\xe4\x8d\x4a\x1b\x11\xfc\x78\x17\xd5\x5a\xc2\x8f\xb6\x50\x96\xf3\x65\x8e\xdd\x4c\xdb\x75\xb9\xd6\x30\x82\x19\x74\xaf\x90\xa2\x0e\x93\xd6\x84\xc3\x75\x03\xda\x83\x15\x35\x47\x8d\x23\x58\xca\xc4\x8e\xc4\xd9\x25\xda\xcd\x57\x21\xd2\xbc\x12\x35\xe7\xbb\xf4\x1d\x63\x2a\x45\xc3\x70\x98\x7a\x15\x7c\x43\xed\x58\xb9\x45\x64\x72\xfd\x8a\xbc\x24\xf1\x35\xbc\x43\x6b\x0a\x9a\x43\x38\x91\x23\x82\xd3\x27\x68\x09\x56\x5f\x6f\xbf\xcb\x09\xa2\xa1\x77\x34\x2b\x86\x59\x2a\x82\x8c\x4f\x72\xd2\x3d\xe8\xc8\x16\x8b\x4e\xa0\xdf\x63\x46\x37\x31\x6a\x55\x12\x37\x82\xa0\xf4\xf3\x29\x4e\x66\x2d\xa6\x69\x8b\x59\xff\xd2\x45\x50\x1f\x5d\x7e\x9e\xb1\x7b\x24\x7f\xd5\xd3\x2b\x14\x98\x8d\x6e\xfd\x3d\x86\x16\xec\xf0\x41\x6e\xe1\x82\x26\x8c\x24\x99\x34\xe4\xb0\x6a\x40\x3a\x1b\x67\x02\x3d\x22\x41\x9c\x98\x51\xc1\xed\xff\x55\x57\x29\x5c\x67\x05\x53\x21\x78\xd4\xf6\x6a\x6e\xd9\x1d\x92\xa1\xd9\x7a\xf3\x68\x46\x06\xa0\x65\x14\x60\x2f\x67\xce\x76\xbe\x76\xb4\xa7\x39\xaa\x58\x8c\xd1\x70\xca\x7a\xeb\xfd\x67\x22\x06\x11\x57\x4d\x30\xf5\x0e\xc5\x83\xbb\x71\xd2\x34\x6f\xb1\x9b\x83\x58\xde\x85\x20\xbf\xa9\x9f\xcd\xaf\xe3\xc7\x41\x23\xc3\x2c\x3f\x97\x35\x0d\x0a\x98\x96\x7e\x01\x2f\x81\x5b\x88\xc3\x01\xa2\x62\x2c\xa7\x1c\x60\x97\x3c\x02\x8f\xc5\xc1\x6a\x8a\xd9\x2e\x88\xe9\x01\x41\x2d\x69\x3f\x6d\x4f\x62\x38\x08\xc3\xa2\xd4\x19\x13\xa3\xf2\xa9\x6a\x4a\xf5\x8f\x03\x8a\x92\x3a\x9c\x5c\x8e\xf4\x6b\xc9\x22\xaf\x07\x0b\x97\xa8\xd5\x72\x0d\xab\x86\x56\x8b\x6b\x3c\x5a\xba\xcc\x1b\x41\x45\x7a\x59\x0c\x33\x72\xf2\xd6\x93\x5b\x4d\x65\x76\xc2\x83\x8a\x1f\x7a\x11\x3d\x8f\x3b\xdc\xac\xec\x1b\x3a\xe7\x8e\xc9\x6f\x8b\xa1\x0a\x63\x1e\x5b\x72\xfa\x1a\x7d\xf8\x7d\xd7\x99\xab\x74\x6d\xc7\x79\xd0\x25\xa4\xef\x7e\x61\x30\xed\x4c\xa6\xfa\x9f\x0f\x73\xb3\xf1\x5d\x4b\x7d\x1e\x72\x1f\xd9\x1f\xf1\x10\xe0\x65\xf3\x83\xf9\xa2\x19\x45\x53\x8e\x95\xea\x75\x88\x68\x5e\x03\x4d\x17\xcc\xe1\x5b\xb0\x6c\xfd\x22\xbe\x4e\xc5\x0d\x35\x7b\x9a\x88\xd1\x96\x1e\xf5\x06\x94\x96\xb8\x50\xd1\xec\x55\xb6\x98\xb1\xd5\xbe\xdb\x74\xd9\x3f\xaa\x60\x09\xf8\x66\x48\x42\xc7\xe0\x64\x10\x89\x9d\x18\xa2\x27\xba\x4b\x16\xcd\xf4\x28\xe8\x2e\xb5\xd8\x83\xaa\x15\xe6\x60\x41\x32\x40\xef\x22\x71\x06\xd6\x71\xf5\x4a\x4e\xc4\xc8\x37\xe9\x46\x6a\xb2\x3d\x95\x5f\xa9\x88\x8c\x16\xb8\x3d\xe8\x67\xc3\x48\x67\xaf\x30\x33\xe7\x94\xef\xfd\xf1\xd2\x4f\x6a\xc6\xa9\x0b\x07\x9f\x8d\x3d\x0b\x8a\xc8\x39\xce\xab\x5e\x64\xc2\xe3\x93\x37\x66\x3b\x40\x43\xdb\xca\xb8\x6e\xb1\xc5\x6d\x0e\xe2\x65\x62\x90\x26\x42\x10\x0b\x31\x6e\xa2\xb7\x5b\xdf\x64\x6f\x0d\xf8\x34\x83\x7b\xed\xd1\x5f\xae\x18\x2a\x73\xe8\x4a\xfe\xa7\x33\xa3\x1a\x22\xfa\x56\xe6\x22\x3d\x74\xed\xdf\xb2\x45\x4f\x67\x7f\x2d\x9b\x71\xc3\xbf\x64\x9c\x94\xde\x72\x95\x99\x48\x32\xfb\xd3\x6b\xb7\xdd\xb7\xcf\x28\x66\x25\x74\x88\x01\xa4\x7f\x75\x72\x78\x55\x28\xdb\x77\xcc\x75\xac\x21\xf0\x64\xea\x66\xe8\x27\x81\x82\x21\x58\x2b\x4f\x0c\xaf\x09\x64\xfb\x86\x5c\x43\x46\xcd\x05\xba\x59\xfa\x09\xd2\xaa\x0e\x3e\xe7\x77\x24\xf4\x8a\xfd\xfd\x2d\x65\x8a\xaa\xda\x6a\x22\x74\xb7\x71\x2c\x13\xb0\x27\x0c\xf2\x03\xa7\xcf\x99\xf9\x50\xca\xc1\xd1\x32\xd7\xbb\x75\x77\xdc\x77\x0c\x7e\xdb\x0c\x28\x1c\xb8\x77\xf5\xe5\x86\xb8\x0b\x24\x3a\x50\x5d\x8b\x35\x95\x58\xcb\x13\x20\xcc\x85\x02\x36\x5f\x3f\x34\xee\x45\x04\xdb\x71\x0d\x84\x23\xab\x82\xc3\xbf\x92\x3f\xca\xbb\xe3\xb8\x93\x7d\xc7\x5e\xf6\x0a\x9c\xde\x33\x8a\x94\xff\x17\x26\xbd\x6d\xbf\xcd\xf1\xdb\xae\x45\x6d\x30\x73\x1b\x5f\x97\x1d\xbb\x12\x46\x07\x2b\x64\xb2\x14\x25\xe7\x57\x51\x3a\xca\xb6\x71\x02\x63\xf5\xe9\xe2\xa3\x47\x6f\xc3\xce\x8b\x52\x85\xa6\xea\xa4\x8a\xc8\x4a\xda\x38\x5e\x16\x5b\x86\xbf\xe6\x5e\x22\xf0\xa8\x4c\x19\x54\xd6\x25\x41\xb5\xc7\x5d\x39\xb2\x16\x64\x94\x2d\x41\xb7\x0f\x92\x89\x50\x1c\x3e\x2e\xc3\x98\x5b\xc5\x0f\xc2\xf4\x45\x7a\x2b\xdc\x2a\x23\x5d\x33\xcc\x04\x46\xc5\xfa\x04\xb7\x23\xac\x87\xe0\xa4\x75\x01\xc3\x7a\xbf\xcc\x05\xdd\x16\x9d\x57\x27\x69\x8c\xe8\xa4\x9e\x26\x4e\xb6\xe9\x24\xd0\x39\x02\x36\xfa\xbb\x0a\x13\xc3\x86\x50\x6b\x3b\xed\x0d\x44\x6f\x5f\x9b\x70\x99\x4c\x5f\x7f\xc5\xda\x7a\x8e\x7f\x51\x97\x15\x1b\xbe\x6e\x19\x79\x95\xe9\x76\xaf\xd1\xac\x15\xe1\x64\x1e\x73\x09\xa8\x56\x84\x93\x8a\x14\x42\x58\x18\x17\xf3\x53\xb8\x85\x46\x72\x0f\xd4\xe3\x1d\x56\xcc\xe6\x0d\xa3\x82\xfa\x3f\x12\x5a\xf3\xf8\xc2\x97\x12\xc3\xfd\x1c\x81\x20\x58\xa3\x0b\xd2\xc3\xac\xf6\xde\x3e\x2b\xbc\x8e\xfb\x0e\x7d\x62\x48\x2c\xe1\xd6\xf3\x35\x2e\xba\x8f\x1b\xc7\x74\x50\xde\xf8\x96\x4c\x6e\x15\xc6\x8b\x5b\xd5\xb4\xe7\x68\x52\x9c\x94\x4b\x42\x58\x36\x4c\x7d\x9b\x42\x5e\x25\x27\x11\x5b\xc7\xb2\xa9\x85\x6e\x18\x56\xea\xe2\xee\x34\xd3\x86\xad\xd3\x15\x7a\xc9\xfc\x2b\xcc\x5c\xbd\xbf\x23\xf4\xfe\xae\xb8\x0b\xad\x6c\x1a\x2f\xc4\xa8\x1f\x4a\x7f\x7d\x32\x13\x86\x59\x34\x0d\xc4\x60\x14\xd5\x61\x2b\xdd\x41\x4b\x6c\x7b\xd5\x59\x1e\xa4\x2a\xf5\xa8\x98\x0a\xba\xf3\x64\xa2\xe6\x39\x9c\x6f\x18\x0c\xd6\x01\x08\xfc\x9e\x90\xb3\x85\xa4\xb6\xbd\x1b\x2c\xa9\x09\xf7\xc4\x14\xba\x39\x38\xa4\xdf\xd1\xc8\x81\x9e\xd1\x79\x03\xf8\x70\x5d\x71\xfd\x53\xd7\xa7\x89\x0d\xab\x2f\x50\x85\x27\xdb\x2b\xa1\x25\x51\x73\x0d\x84\x1f\x21\x96\x57\x50\x38\x1f\xb7\xf4\x8a\xeb\x31\x0f\xe0\x83\x47\x08\xc0\xa9\x30\xa4\x90\x2d\x0e\x31\xb2\x35\x6a\xcb\x10\xd5\x60\xce\xad\x24\xe0\xb0\x17\xf4\x85\x75\x33\x1d\x06\x47\x82\xcc\xe6\x40\x0a\x2a\x5f\x5a\x11\xec\xf3\x6f\x31\x00\x93\x12\x78\x32\x3b\xea\xfc\x58\x01\x8e\x53\xde\x1f\x15\xa3\xfb\x43\x24\x15\xbb\x12\xfe\xed\x00\x6b\x7f\xeb\xc1\x95\x06\x9c\x80\x3a\x0d\x6b\xb1\x09\x61\xad\x01\x7b\x82\xa4\x00\x21\x19\x2c\x5e\x1c\x7f\xe6\xbe\x16\x75\x7e\x1c\x60\xb8\x1f\x44\x52\x84\x28\x4c\xf0\x75\x6c\xfa\x1f\x14\x88\xca\x69\x86\xeb\xf9\x24\xc9\x3f\xd6\x28\xd6\xbc\xe2\x3a\x69\x29\x2e\x4d\xc0\x1f\x49\xef\xb8\xcb\x22\x23\xd9\xba\x24\x13\xe9\xbe\xf1\x0e\x48\x2b\xf5\xd2\x27\xed\x86\x26\xb1\x0a\xab\x20\xcf\x0b\xb1\x1f\x3e\x30\x75\x87\x22\x11\xeb\x9f\x10\x8b\x9a\x2b\x27\xbd\x67\xe3\x8b\x70\x24\x59\x8f\x92\x6d\xfd\xb6\x60\x3e\xa2\x83\xa7\x7a\x43\xb2\x93\xd9\xab\x20\xb2\x54\x76\xef\x87\x67\x45\x68\x44\xf9\xfb\xe9\xcc\x1e\x03\x7e\x89\x27\xc1\x04\xae\xe1\x11\xe3\x6e\x75\x8c\xa7\x92\xab\x49\xef\x66\x63\xbf\x7f\x9f\x83\xbd\xf7\x3b\x85\x0b\x4c\xf1\x98\x01\x1e\xf7\x83\x6b\x0e\x09\xcc\x0f\xab\xf0\x0d\x36\x22\x5e\xe9\x54\xa2\xa2\x68\xbf\xf2\xb1\x5b\x84\x4d\x13\x1a\x9c\x44\x92\x1c\x51\x22\xa2\x28\x90\x9c\x9b\xe5\xd0\x49\xae\xa0\x32\xc0\x90\x44\x95\x64\xe6\x42\x5a\x66\xc7\xa8\x75\x06\xc7\xbc\x8b\x76\x05\xba\x62\x72\x25\x24\xe2\xfa\xa7\xc5\xe7\xe5\x29\x72\x23\x3c\xa9\xa5\xf8\xf4\xf1\xb0\xfd\x0c\x8e\xae\xd7\x2e\xbe\xe7\xae\x2b\x99\xe6\x74\x1a\xcc\x31\x53\x04\x2f\x4a\xf7\x4a\x99\xed\xd8\x0b\x4d\xec\xc9\x62\x14\x39\xa7\xab\x4d\xd1\x85\x0a\x95\x80\xe6\x66\x7b\x71\xd1\x36\xab\x4e\x61\x09\x58\x46\xf5\xfe\x16\x5c\x8c\xed\xd5\xc9\xfc\x28\x82\x3d\x45\xa5\xe6\xc9\xb9\x56\xd4\x64\x01\x5d\xba\x9e\xf2\xf4\xca\x59\xa2\x08\xde\x18\x67\x24\x39\x7d\x7d\x03\x9e\x65\xf7\x3e\xad\x29\x69\xff\x9b\x8d\x7d\xff\xcb\x71\xd5\x62\x67\x34\x83\xa8\x40\xcb\xf0\x32\x0e\xc1\x4a\x36\x9b\x93\x00\x25\xcb\xc6\xdd\x29\x9a\x78\x64\xd8\x4e\x9f\x86\x1d\x2b\xf8\x4f\xff\xd2\x46\x6e\x3b\x3d\x0d\x78\xbc\xfb\x89\xfe\x21\xa6\x58\xd1\xc2\x36\x54\xd0\x03\x1e\x73\xe5\xa9\x61\xb9\xc2\x83\x21\x39\xb3\x0a\x4a\x0a\x37\x09\xd0\xb9\xff\xb3\x95\xe1\x8f\x5f\x3f\x72\x3e\xba\x37\xf9\xb0\x39\x05\xba\x31\x9b\xfc\xc5\x54\xd3\x01\xf1\xbb\x9f\x2f\x66\x2e\x3c\xcd\x3b\xe4\x72\xb9\x5e\x9b\xe5\x36\x97\x3d\x2d\x53\x93\xff\x02\x77\x85\xde\x1e\xdc\x68\xcf\xe8\x08\xfc\xd2\xcd\xfe\xdf\x2d\x7b\x27\x7d\xd7\x65\x7f\xeb\x6a\xfe\xc5\xfb\x77\x81\xb3\x2b\x2c\x08\x3e\x29\xd4\x1e\x6b\xdd\xc8\x5e\xa1\x54\xae\x5e\x55\x54\xf1\x9f\x4c\x9c\x43\xe5\x18\x6a\x65\xe7\x32\xf6\xaf\x38\xe4\x48\x5c\x39\xf4\xd0\xa1\x3c\xb6\x0d\xbb\x1f\x7b\x77\xde\xc0\xfd\x09\xf9\xaa\x75\xb0\x1a\xec\xbf\x71\x7a\x07\xac\x82\x7d\x47\x37\xee\x26\x73\x17\x34\x39\x0d\xf6\x83\xd5\x4b\x92\xda\x13\x2d\x56\x0a\xa2\x55\x17\x26\x22\x97\x96\xd6\x37\x6f\x32\xc0\x89\x08\xce\x67\x05\x56\xe3\x11\x38\xa8\x28\x5c\xb9\x1b\x3c\x01\xd3\xf7\x1e\xdb\x0e\xf3\xe6\xbd\x25\x81\x7f\x1b\x6c\xff\x31\xd8\xf4\x53\x07\xec\x09\x58\x31\xb9\xa4\x05\x94\xb5\x7c\xe6\x9c\x29\xae\x59\x04\x8a\x75\x60\x05\x78\x22\xa5\x14\x3f\x5f\xf2\x65\x69\xf0\x2b\xaf\x0b\x7f\xee\xdb\xfc\xc7\x6e\x0a\x06\x08\x95\xcc\x41\x62\xab\x03\x34\x2d\x27\x33\x3b\x80\xfc\x8f\x55\xd7\xb1\x5e\x63\xf2\xb1\xbc\xda\xcd\xee\x7f\x3f\x87\x8a\x8c\xcc\x35\xb1\xc9\xc7\x7f\xb0\x4e\x17\x32\x59\xba\xb8\xd6\x7b\x0e\x43\xea\x49\xc8\x17\xa0\x09\x89\x57\x9f\xbe\x35\x94\x35\xff\x63\xff\xb3\xef\x56\x3e\xfb\xbe\xc6\x4b\x2c\xe7\x24\x28\xad\x2e\x90\x6f\xa5\xfb\x4d\x3e\x87\xe2\xff\x63\x61\xd5\x8e\x86\x5b\xd0\x63\x5c\x16\xe1\x34\x6f\x0e\x45\x0e\xf8\xfa\xa7\x6f\xe8\xc1\xf3\xab\xee\x53\x48\xfb\x2a\x20\x1b\xb3\xd1\x2f\xa5\x05\x87\xc5\x67\xab\x1b\x6c\x41\xa1\xf7\x06\xae\xa3\x40\x98\xaa\xab\x42\x56\xdd\x86\x06\xf6\x96\x35\x34\x0a\x6b\x52\xa8\x94\x37\x64\x59\x9c\x7c\x62\xe5\x17\x29\xb2\x43\x7f\xf7\x74\x23\x2c\x3d\x41\x7c\xfc\x48\x0e\xf3\x98\x79\xbe\xd8\x89\xb2\x36\x06\x8a\xe9\x21\x4a\x23\x81\x63\xf1\xec\x83\x68\x3d\x82\x84\xc6\xc2\x4b\x4d\x4a\x67\xcb\x29\x3b\x43\xfe\xaf\xd6\x4e\xc5\x3f\x3e\x49\x98\xdd\xd2\x8a\x72\x88\xa9\x7e\x03\x51\xe3\x48\xa2\x9a\x50\x34\x76\x9d\xad\xbd\xac\xd2\xe9\x50\x44\x35\xd8\x4a\xdf\x01\x6d\xee\x8f\x72\x98\x82\xdf\x20\x48\x6a\x53\xa4\xb5\x57\xb5\x09\x4c\x96\xf8\xd6\x0c\x19\x2f\x79\xaa\xa9\xa5\x48\xec\xa8\x58\xf1\x51\xb1\x05\x86\x45\xac\x57\xc1\x0e\x19\x38\xa6\x40\x09\xdd\xd9\xb3\xb8\xb3\x1e\x50\x14\x41\x6d\xab\x3b\x3b\x1b\x8f\x41\x5f\x27\xcd\x87\x79\x6f\x0b\xee\xe5\x5c\xa6\x37\xa3\x6f\x73\x67\xe7\x42\xa6\xed\x65\xc1\x23\x7d\x39\x4d\x6f\x17\x72\x93\xc4\xf9\x26\xf2\x3b\xb3\xc8\xaa\x4e\x1a\xab\x5f\xe8\x83\x58\x13\x6f\x17\xf2\x12\xc4\xb9\x26\xd2\x3b\x0a\x82\x7a\x2e\x6b\xea\x13\x2e\xa2\xfd\x45\x8d\xd1\x62\xe8\xd2\x07\x31\x28\x75\x83\x53\xe4\x00\x33\xc9\x40\xdb\x39\xef\xe4\xe7\x70\xf4\x0f\xb1\xf2\x6b\x5a\x93\x16\x36\x7a\xdc\x3f\xcd\xe1\xaf\x10\xae\x38\x69\x86\xd7\xcf\x34\x6a\x81\xa1\x6f\x75\xa1\xb5\x5b\x21\x89\x85\x3f\x2c\xef\x8d\x8c\x98\x1a\x39\x29\x86\xbb\x1e\x6b\x4e\x3b\x4b\xbf\x89\x19\x69\x24\xcb\x65\x01\xbd\x60\xbe\xe2\x66\x3b\xd4\x3e\xac\xa3\x46\xfd\x64\x99\xbc\x51\x2f\x3e\x57\x75\xa3\xc3\x11\xe1\xea\xd9\x94\xe6\x36\x4b\xa5\x58\x93\x8b\xdd\xde\xbd\x09\x70\x0f\x70\x4e\xcf\x96\x34\xb7\x49\x5b\x67\xc0\xc5\x71\x63\x0b\x6f\xf2\xad\x90\xb5\xbf\x27\x88\x7f\xf9\xee\x6b\x04\x5f\x23\xf7\x60\x88\xa8\xf7\x5f\x03\xf1\x09\xf9\x9c\xe4\x5b\xb1\xb1\xae\xf3\x20\x9b\x3a\x6e\x27\x19\x11\x3e\x26\x49\x7f\x54\xbb\xb2\x99\xae\xd5\x19\x76\x76\xd5\x65\x0b\x22\x49\x7f\xa8\x69\xa1\xd3\xc6\xcd\x92\x35\xcc\x0b\xef\x3c\x1c\x3e\xfe\x4b\xdc\x93\xf2\xea\xae\xd1\x2f\xfd\x0a\x2b\x3e\x63\x43\x5b\xc8\x89\xc6\x2c\xd6\xd0\xb3\x1e\xd9\x6c\xd3\x50\x28\x1d\xba\xa9\x7b\x3d\x25\x4d\xdf\x4d\x23\x7b\x79\xf2\x9f\x10\x3d\xeb\xc9\x9f\x66\xde\x7e\xee\xe4\x66\x00\xdf\xcf\x9d\xa2\xcc\xdd\x2b\x8f\x1c\xce\x16\xec\x42\xd2\xc4\x6a\x24\x0b\xf8\x34\xaf\xa6\xb3\x15\xbe\xa7\x44\x2d\xbe\x58\x10\x75\x57\x14\xe6\x72\x6a\xd2\xd0\xc5\x78\xaf\x26\x75\xc6\x63\x8e\x8b\xb5\x58\x25\x79\x4b\x88\xfd\xee\x9d\x5d\xb9\x4e\x99\x88\x0d\xcd\x88\xe5\xc9\xea\x99\x60\xaf\x29\x7d\x31\x68\xcd\x48\x8c\x20\x20\x9f\x53\x31\xb0\x59\x4c\x02\x1e\x56\x85\x8d\xf3\xed\x76\x3a\x49\x65\xd7\x21\x92\x7d\x61\x39\xf0\xd1\xa1\x58\xc1\x09\x84\xc0\x62\xa7\x11\x55\x76\x3d\x72\xb0\x2f\xa2\x1a\x86\xa3\x66\xa5\x4e\x3f\xa3\xee\x90\x94\x5e\x8e\x72\xf6\x7f\x8f\x55\x43\x2d\xa3\xdd\x72\xcb\xed\xc0\x30\x76\x77\x7e\x5c\xc4\xaf\xaa\x26\x30\x6f\x2e\x71\xe6\x85\x31\x89\xcb\x6b\x3e\x10\x25\x3c\x90\xb8\x00\x40\xc4\xc2\x83\x2e\x5d\x98\xfc\x73\x3c\x09\x64\x33\x69\xc6\xa0\x53\x09\x9e\xa6\x7a\xc4\xad\x88\xb1\xd4\xf9\x36\xdf\x19\x4d\xc0\xb4\xeb\x51\x35\xb3\x64\xb5\xea\x91\x20\xcf\x0c\x9d\x0a\xaa\x5b\xd8\x3a\x48\x81\xc8\x71\x98\x30\xa6\x11\x76\xa9\x4a\x5a\x50\xff\x20\x85\xe0\xf0\x4a\x87\x14\xed\x43\x79\x41\x94\x13\x4b\x40\x0f\x0b\x95\x0e\x2c\x51\x6e\x93\xc1\x83\xa8\x7a\x95\x0b\x7e\x6e\x4c\xaa\xf3\xe0\x04\x57\xb8\x19\x15\x7c\x20\x93\x5b\x61\x9d\x0c\x43\x7f\xf1\xde\xaf\xc1\x50\xa6\xbb\x20\x21\x3a\xae\xad\x22\xb2\xde\xef\x58\x76\x11\x13\x8b\xba\x47\x0d\x4b\xc4\xf0\x01\xf1\x30\x00\xb5\xfb\x3c\xed\xd2\xdd\x7b\xbe\xf8\xbf\x45\x20\x37\x58\x26\x52\x7f\x99\xff\xec\x43\x0d\x7f\x36\xb2\x88\xfa\x68\xaa\x13\x46\xc6\xf4\x4d\x75\x14\x2e\x1c\xe6\x34\xf5\x7e\x73\xfd\xa8\x77\xba\x75\x7b\x3a\xaa\x94\x45\x75\x17\x71\x1a\x3f\x1e\xda\x64\x88\xbf\xa8\x5d\x19\x69\x8d\xb9\x47\x29\xb4\xf1\xab\x52\x6b\x37\x6f\xb7\x41\xb1\x52\x48\x94\x8c\x44\x65\xed\x74\xa3\x2d\x82\x35\x46\x58\x51\x6e\x27\x6a\x00\xd9\x22\x08\x1f\xe2\xb5\x98\xe3\x29\x53\x9c\x20\x05\xf8\xab\x7e\xee\x92\xb2\x81\xbd\x13\x42\xd5\x2c\xe5\x64\x35\x2b\x6c\x7c\xd7\xba\xea\x06\xd7\xec\x98\x67\x68\xea\xec\x09\x88\xb6\x50\x86\x1a\x0d\xa8\x1a\x51\xfc\x4c\x8f\xda\xd8\x81\x58\x8b\x64\x99\x78\xab\x71\x4f\xaf\x8a\x0d\xc2\x5d\xa5\x3a\x50\xb9\x47\x23\x64\x5e\x7f\x84\xd8\xfb\xac\x3f\x65\xb7\x5a\xc0\xde\xf9\x78\x19\x7c\xb7\x56\xc4\xdc\x79\x55\xd9\xf5\x87\xcb\x75\x8e\x41\x40\xbb\xce\x7b\x49\x46\xbd\xa6\xd9\x6f\xfe\xa7\x0b\x78\x6d\x22\xf4\xb7\x05\x2d\x23\x5e\xc9\x92\x08\x24\x4c\x45\x3f\x4a\x9d\xa2\x7c\x96\x4a\x6d\x4a\xe2\xa3\x00\x4c\x54\x2d\xa4\xd4\xcb\x1a\xe1\x76\xb9\x0a\x24\x31\x64\xc7\x6f\xfc\xa4\x7b\x79\x5f\xa5\xeb\xd0\x51\xf8\x92\xb4\xcb\x94\x3d\x38\xde\x1d\x36\xd7\xf1\xbf\x00\x1a\x26\xa2\x3a\x85\x93\x5a\xd0\x47\x13\x13\x13\x98\xfb\x5b\x17\x9f\x54\x3d\x86\x7f\x12\xe9\x9f\x8c\x2d\xaa\x4e\x61\x75\xcb\x25\x50\xb2\xc9\x04\xe9\x24\xb1\x66\xfd\x4f\x4b\xe4\xe7\x02\xf9\x8c\x59\xae\xcf\xaf\xc5\x2e\x6c\xa9\x33\x45\x0a\x48\x46\x54\x27\xbd\x46\x04\x24\x39\xa8\xe0\xf3\xf9\xf3\x5f\x8d\xcb\xd6\x10\x89\x34\x07\xb3\xb1\x9f\x75\xe1\x3f\x11\x46\x2a\x61\xed\x4b\x5b\x17\x9f\x52\x3e\xc6\x5f\xd0\xa2\xb7\xc9\xa0\xdc\xd3\xff\xf9\x03\x47\xd8\x77\xae\x51\x7d\x12\x5f\xfe\xd6\x2d\x67\xdc\x14\x9f\xc4\x7b\xe6\x77\x5f\x12\x9a\xea\x1d\x52\xf9\xdb\xe5\x3b\x0e\xc6\x3b\xfb\x93\xab\xaf\x10\xa1\xa1\x5f\x2b\xb8\x65\x09\xe5\x5d\xe1\xc0\x3c\x0a\x64\xbd\x82\x8d\x60\xab\xc5\x0f\xb3\x8a\x1b\xe7\xc2\x46\x31\x28\xe9\xfb\x3d\x96\x8c\x92\x7f\x26\x75\x39\x37\xf8\x5c\x4c\x39\xdf\xf0\x79\xc3\xd5\xf2\xce\xa5\x11\xcd\xf8\x7a\x88\xe3\x7f\xe5\x29\xf3\x05\xfb\xc5\x51\xca\x96\xfb\xbb\x2b\xf9\x4a\x57\x2b\x84\xf6\x27\xdf\x0e\xf0\x45\x7e\xc3\xf1\x70\x45\x3f\xe2\x96\x7c\xdf\x5a\x7a\x87\x38\x3a\x4f\xbc\xd9\x6d\xc9\x56\x77\x61\xf0\x3a\xcd\x90\x07\x24\x69\x50\x9b\xdb\x98\x81\x6d\x64\x74\xec\x1b\x8b\xce\x1d\xbe\xfe\x83\x87\x76\xdd\xd1\xe4\x08\x55\x4f\x9e\x48\x6f\x1a\xaf\x14\xaf\x99\xe1\xec\x02\x0e\x2f\x6d\xa2\x6e\x9b\x37\x73\x4a\x2a\x87\x9c\x87\xcd\x46\x7d\xb2\xa6\x19\xa0\x81\xd0\x33\x98\xa5\xaf\xc3\xa9\x6f\xcf\x6e\x82\xed\xa2\x72\x8c\x3b\xed\x67\xa7\x7f\x5a\x98\x38\x84\x4b\x0a\x50\x47\xee\x7b\xcf\xaa\xc4\x6b\x47\xe2\x21\xa2\xb1\xb8\xc8\x41\x27\x98\xb6\xb6\x65\xf9\xeb\xfd\x3f\xe2\x7f\x80\x7e\xe8\x18\xac\xef\xb3\xe3\x43\xe0\x77\xa3\xe4\x8f\xcb\xdb\xef\x68\xdb\x37\x8d\xe9\x60\x32\xf8\xcd\x0d\x1d\x9a\xf5\xc3\x3d\xd7\xf6\xbc\x18\xca\xdd\xf3\xaf\x55\x3f\xb5\x7d\x68\x50\xbe\xf5\x6c\x75\xd1\xb3\x51\x75\xc0\xaa\xbc\x71\x49\xd0\xab\x88\xbb\xeb\x61\x8a\xc3\x26\xe7\x2c\xec\x7e\xbc\xcf\x26\xec\xdb\x96\xf1\x7d\xfa\xe3\x99\x77\x4a\xf3\x13\xe7\x4f\x8f\x87\xec\x82\x3c\xcc\x7d\xf6\x45\x51\xb0\x6a\x84\xbf\x89\xbc\xaa\x95\x54\xbd\x19\x5c\xdb\x2d\x72\x85\xd4\xc6\x86\x60\x1e\xce\x46\xb1\xf5\xf9\x5a\xe4\x32\x5a\xbb\x11\x1f\xe4\x3b\x4c\x82\x18\x54\xaf\xfb\xcc\x8b\x51\xb8\x03\xde\x61\xaf\x22\xc3\x92\xf7\xe2\x6c\x71\x2d\x18\x74\x49\x72\x84\xab\x23\x15\x15\x7b\x5d\x9e\x78\xad\xae\xa4\x3c\x77\xa1\x16\x83\x73\x61\x23\x3a\x25\xad\x07\xf1\xfa\xa9\x62\x50\x3c\xdb\x7e\xb2\xe1\x96\xbd\x8c\x24\x73\x6c\x9c\x22\x81\x15\x8c\x67\xc1\x66\x9a\x30\x36\x4c\x55\x0f\x6b\x7b\x89\xa3\x84\xcd\x11\x6f\x74\xdf\x10\xbb\x59\x1b\x0d\x18\x7c\xd8\xbb\x90\xea\x34\x83\x41\xe9\xc7\x6d\x0e\xf9\xa2\xfa\x06\x59\x2d\x86\xe6\xb0\x31\x88\x13\xb8\x96\x63\x8c\x16\xd6\x28\x75\x22\x5e\x4c\xef\x76\x50\x12\x52\xbf\x4d\x65\x45\xd3\x74\x2e\x00\x44\x3e\x5c\x03\x35\xd1\xed\x34\x08\xfc\xc7\xe6\x24\x3d\x76\xe7\xe3\x4d\xc2\x70\xea\x3f\x4b\xc6\xea\x7f\xc8\xec\x86\xd8\x6a\x5e\x3b\x7a\xd0\x8e\xe6\x1d\x39\x28\x70\xba\xb4\x34\x68\xf5\xac\x53\x86\x6e\x76\x0b\x8f\x4f\x72\x3f\x1d\xb4\x15\xd6\xb5\xc8\x78\x76\xb5\x7c\xee\xae\xbb\x69\x5d\xf0\x15\x30\x05\xed\xa8\x6b\xc9\xce\x6e\xaa\x25\x4f\x7d\xa1\xb1\x86\x12\x26\x9e\xb5\x92\xdc\xb8\x6b\xd9\x25\x43\x04\x36\x4c\xd2\xf9\x8f\x9f\x6d\xc7\x17\x60\x78\x1c\x34\x32\x57\xbd\xcd\x49\x8d\x4e\x9f\x32\xcb\xfb\xc1\x5b\x42\x2a\xa0\x29\xfe\x09\xa1\xf1\x87\xb2\x90\x45\xc1\xd7\x41\xe7\xfc\x45\x59\x99\xdc\xac\x7e\x16\x18\x27\x68\x47\xd7\x85\x21\xa7\x88\x4c\x71\x9a\x90\xc5\xbe\x16\xdd\x37\xa2\xb6\x79\x13\x82\x24\x90\x1d\x4a\x54\x90\x7f\xfe\x27\x08\x7e\x09\x3f\x86\x1a\x56\x8b\x2f\x6b\x45\x5f\x66\x47\xda\xdf\x99\xa5\x58\x0f\x02\xc6\x53\x77\x9c\x77\x54\x7e\xdb\xf4\xa8\xb7\xb3\x9b\xca\x81\xfb\x81\xc1\xa5\x29\xd3\x3b\xf2\xe8\x81\x97\xaa\xc2\x70\xff\x93\xc8\x91\x90\x51\x13\xc5\x2e\x55\x5b\x23\x47\xaf\x21\x30\x6e\x78\x99\x29\x9b\xc6\xe8\x38\xfc\x3d\x59\x41\x11\xdb\x71\x7f\xad\x73\x83\x79\xcb\x7e\xe0\x33\x7e\x29\x37\x4d\x4d\x39\xfd\xd8\x92\x90\xd9\x95\x39\x9d\x31\xfe\xd0\xb2\xfb\x2a\xa4\x8b\xaf\x9a\xa5\x0b\x98\x6b\x6e\x70\xf8\xdb\x3d\x82\x8c\xdd\x54\xf7\x28\x59\x46\xb2\xa0\xd4\x74\xa1\xf0\x17\x69\xec\x47\x24\x79\x16\x56\x10\x7b\xea\xfa\xb0\x05\x30\xc7\xcb\x56\xed\xce\xb8\xdc\x6c\xeb\x34\xeb\xa7\x60\xc7\xcb\xb8\xdf\x44\x18\x6e\xb7\x39\xe6\xb9\x17\x80\x96\x96\xed\xed\xbe\x1a\xd4\x01\xc1\x58\xfe\xa8\xea\x50\xe0\x90\xe7\x72\xa2\xe5\x9c\x9c\x1d\x5c\x52\x41\xbd\xa4\x3d\x45\xde\x67\x11\x34\x71\x5f\xed\x81\x54\xd2\x1b\xa6\x25\x5a\x9a\xf2\x1e\x69\x89\x9d\x1f\xc6\x15\xca\xfe\xc0\xf8\x31\xb5\x65\x42\x5f\x6b\x6d\xbe\xf4\x70\x9a\xc7\xed\x6d\x62\x1a\xf9\xf3\x34\x4f\xd3\xe9\x09\x92\xbb\x7f\xb5\xd9\x48\x79\x47\x37\xbc\xc5\xd4\x81\x80\x24\x09\x72\xfa\x54\xb9\xea\xb5\xa4\x92\xb4\x53\x73\x2f\x8b\x14\x40\xc8\xb1\xf1\x6f\x1b\x43\xd7\x6e\x0c\xf6\x67\xe9\x13\xee\xbd\xeb\xab\x2c\x93\x82\x35\x40\xe1\xc4\x8f\xe4\xad\xc3\x26\x66\xfe\xbd\xef\xbb\x2a\x07\x6f\x85\xb5\x01\x8e\xb9\x77\x92\x3a\x0b\xa3\xbe\xf9\x93\x8b\x9c\x3d\xb5\x7a\xf2\xd9\x9a\xcc\x88\xea\xc6\x4d\xe9\xde\xb6\xe7\xde\x50\xb0\x16\x69\xdf\xaa\xcc\xda\x6e\xa6\x08\xf8\x5d\x5a\xca\xac\x5e\x1e\x89\x81\xbf\xae\x9b\x71\x8d\xbc\xe0\x26\x9a\x24\xab\xa8\x8e\x87\x0f\x48\x2f\x5e\x98\x1c\x0e\x28\xc0\xf0\x6a\x6c\x58\xbb\x52\xe1\xf6\x32\xac\x2c\x76\xf2\xf9\xae\x8b\xca\x8e\x5b\xd5\x33\x6d\x17\x69\x73\xb7\x0c\x23\xc9\x96\xb8\x7b\x84\x44\x39\xe7\x75\x4f\xeb\x36\xf7\x09\x68\x01\x83\x5b\xf5\xa1\x9a\xb7\x25\x23\x4b\x1c\x3d\xbd\x16\x65\xa2\x2b\x85\x27\x38\xe9\x1f\x08\x05\x1e\x56\x1c\x5b\xd8\x6d\x95\x4f\x37\x08\x36\x31\x97\x81\xb4\x19\x90\xf2\x35\x37\x0b\x9d\xb3\xc4\x6a\x66\x21\xee\x43\x85\x14\xc4\x7f\xec\x90\x0e\xda\x5b\xee\x98\xe5\x6c\xd5\x25\x92\xe5\x9c\xf6\x1a\x5d\x9a\xdb\xa6\xb5\x4c\x28\xab\x07\x67\xd7\x00\xac\xaa\x6d\xd0\x92\xc3\x2b\x02\x9d\x68\x47\x84\x90\x72\xef\xde\xdf\xbf\x0f\x78\x6a\x6c\xfa\x73\xb7\x6e\x2a\x21\x10\xff\xc1\x23\xaa\xc6\x9d\x95\xce\x19\xde\x66\xcd\xa1\xd6\xa1\xa9\x20\x43\xaa\xf6\xa1\x35\x10\x56\xd9\x9a\x41\x38\xad\x0b\x95\x13\x31\xe9\xb6\x93\xce\x0e\x33\x47\xd1\xcc\xf1\x50\x53\xb1\xbf\x21\xc2\x57\xab\xda\x72\x3c\xad\xda\xcd\xf2\x4c\x09\x57\xeb\x24\xc2\xe5\x76\xdd\x0d\x86\x12\x60\xbe\x6a\xc3\xbe\x5a\x6b\x76\x44\xf1\x69\x97\x1c\xe7\x5c\xef\xc1\x52\xb0\xe0\x3a\x07\xf4\xd8\xb8\x29\xcc\x52\x9a\x85\x39\x9f\x35\x0f\x09\x38\xc0\x89\x5a\xd1\x88\xc6\xc6\x00\x00\x47\x1b\x90\x39\x54\xba\x03\x96\xa3\xbc\x8a\xe3\xce\x9d\xb2\xd1\xde\x80\x78\x10\x93\xb7\xe2\xb7\xc5\x44\x32\xe0\x13\x79\xdb\xcb\xcf\x78\x0b\x18\x29\x72\x62\x80\x4b\x5a\x80\x1d\x59\xea\x1f\x2c\x29\x29\xab\xa3\x95\x94\x11\x37\x21\x7a\x1b\x8e\x61\xaf\xf1\xa4\xa0\x7a\x09\x88\xbc\x91\xe6\xc7\x24\x28\xfe\x83\x84\xed\xe5\x61\x08\x8e\x1e\x59\x33\xd4\x0d\x20\xea\xa3\x28\xf9\x1c\x90\x20\xa6\x7e\x07\xc8\x20\x39\xe3\xbd\xba\x89\x94\x48\x0f\x64\xd5\xe0\x58\xfe\xfb\xa0\xb8\x65\x9b\x81\x61\x15\xf1\xfd\x35\x0d\xa4\x78\xa7\x5d\xf7\xb7\xfa\x40\xc6\xe7\xbd\xa9\xd9\x1f\x66\x63\x48\x8e\x1e\x49\xb3\x44\xa8\xe2\x15\x9e\xff\xd0\xb1\x89\x86\x27\x3f\xca\x4a\xbb\xf9\x37\x45\x47\x5a\x56\x73\x65\xc6\x36\xd3\x89\x31\x95\x2e\x82\xad\x3b\x18\x74\x4a\x00\x85\x40\x18\xac\x8c\x39\x44\xb0\x90\x47\x12\x06\x0b\xfe\x54\x6c\x71\x60\x44\xae\x2a\x30\x26\x0b\xc5\xa7\xa6\xd5\xbe\x90\x9a\xf8\x67\xab\x19\xc2\x82\x0a\xc1\x75\xcc\x83\xf5\x1d\xb5\x3c\x14\xc2\x23\xd8\x98\x36\x5c\x43\xbb\x0a\xc0\x20\xc6\xd7\x62\xe5\x8b\xa7\x7c\xcc\x6f\xc3\xe4\x90\x52\xf4\x3e\x63\xac\x57\xc0\x00\x6a\x80\x48\xca\x8d\x53\xe3\x50\xb5\x11\xfd\xbf\x26\x45\x82\x9b\x27\x13\xde\x7b\xa0\xd0\x6b\x1a\x46\x91\xbc\x7b\xf1\x97\x34\x5a\x00\xc6\x0d\x63\xdb\xa1\x6a\x88\xcc\xbc\x40\x23\xac\x3d\x8a\x26\xf6\xe9\xda\xc9\x5b\x60\x39\xd1\x66\xd4\xd9\x26\xd1\xe4\x40\x8e\xd5\x02\x7b\xf4\x20\x1c\xfd\xb8\x29\xea\xc8\x7d\x90\xec\x6e\x1f\xe7\xe4\xff\xc1\x2e\x29\x91\x17\x72\x51\x7d\xe4\x99\xaf\x7c\xa4\x3f\xd0\x40\x3f\x0f\x0a\x32\x52\xa6\x53\x17\x55\x27\xf5\x60\x19\x03\x72\xd3\x9b\x83\x6a\x72\x62\x58\x3e\x08\x21\x13\x02\x84\xc6\x0d\x5c\x5b\x49\x76\x3e\x54\x05\x1d\xb7\x5b\xbd\x82\x07\xdd\xc9\x7d\x37\xc3\x56\x2c\x0b\x4c\xd4\xae\x9d\xcc\xb9\x6f\x1c\xac\xce\x9f\x1a\x04\x75\xca\xa6\xb4\xac\x15\x22\x04\xb5\xf7\xfc\xfa\x13\x02\xd5\x95\x4f\x80\xfc\xf3\x4a\x15\x56\x25\x45\x05\xf4\x74\x61\xd8\x5f\x8e\x7d\xd7\x71\xd4\x90\x5c\x69\xbd\x18\xa2\xf3\x73\xd2\x11\x67\xb0\xcf\x99\xe4\x21\xf8\xb6\x02\xf2\x12\xec\x10\xf5\x9a\xe7\x5a\x9f\x79\x2c\x0c\x0a\x17\x37\x64\xe0\x6c\x38\x67\x3f\xfe\xf3\xff\xdd\xf3\x7c\x71\xe6\x8d\xbe\x3c\x50\x43\xbc\xf0\x60\xc4\x2e\xde\x5a\xbb\xa5\x41\x24\x05\xd2\x21\x32\x50\x63\x42\xd5\x70\x83\xed\x23\xb0\xd5\x58\xd8\x81\x48\x90\xd6\x44\x2d\x24\x61\x25\xe7\x82\xd3\x32\x1c\x49\xbf\xb3\x4b\xd6\x24\xef\x04\x72\xc2\xd7\x42\x6e\x84\xc7\x3e\x46\x8c\xff\x0e\x4c\x06\xaa\xbb\x3b\xe7\xba\x25\x8d\x16\x6d\x1c\x43\x3e\x45\x2b\x25\xe5\x71\x6d\x1d\x0b\x72\xbf\x2a\x03\xff\xc0\xf7\x50\xb1\xb2\x6b\xc1\x0b\x9d\x2e\x64\x73\xef\x30\xa8\x86\xc4\xb4\xd7\x71\xc2\x39\x20\x9e\xc7\x78\x07\x26\x82\x84\x8f\xce\x4f\xab\x04\x49\x0d\x3c\x67\x94\x92\x86\xfb\xdb\x69\xc0\x28\x0a\xc8\x6d\x05\x03\xa1\x4b\xe9\xcd\x5a\x4f\x94\xd6\x2b\x04\x9a\x53\x05\x3f\x51\x75\xbd\xe1\x16\x33\x30\xab\x80\x2f\xcb\xf2\xdf\x9d\x02\x91\x6a\x46\x21\x03\xa3\x5a\xa8\x86\xc0\x6c\x27\xce\xd5\x29\x6d\x92\x77\xc0\x2a\xd4\xaf\x45\xc8\x67\x81\x04\x11\xe5\x31\x4c\xd6\x13\xbc\x3d\xd1\x2d\x8e\x98\xb5\x31\x2c\x79\x93\x5a\x41\x2c\xe1\x3a\x7b\x98\x3b\xd6\x6b\xf9\xa3\xef\xeb\x07\x7b\x61\xd9\x0f\x8a\x6f\xed\x65\xad\x7f\x53\x80\x6f\xec\x24\x0a\x50\xfa\xe5\xcf\xa4\x17\x59\xdd\xd0\xe6\xee\xde\x10\x20\x26\xbd\xde\xcb\x34\x89\xe6\x92\xde\x55\x05\x08\x98\xbb\xae\xee\x26\xb2\x02\xa8\x06\x2c\x03\x65\x18\x9f\xeb\x5e\xb0\x01\xe3\x7e\x3c\xd0\xb1\x83\x7d\xea\xf1\xa5\x50\x97\x8d\x4b\xd3\x96\x84\x69\x14\x43\x06\xe2\xe3\x10\x0c\x17\x9e\x47\x2a\xc6\x58\x94\xe2\x9c\x4d\x32\x45\x3c\x51\xf2\x93\x2a\x5e\x29\x0d\xcd\x96\x32\x43\x0b\x34\x29\xac\x59\x6c\x17\x44\x80\xb8\x94\xfb\x68\xce\x72\xa9\x9d\xfa\x00\xe2\x42\x4a\xd7\x76\xbb\xe5\x32\xa7\xe2\x8e\xf0\x73\x55\xbc\x4a\x87\x4a\x12\x8b\x03\xe6\xbf\xb5\xef\x2c\x31\xb7\xc2\x12\xf6\xce\x66\xfd\x1c\x8c\xb2\xf6\xba\xbd\x73\x1e\x73\x11\x68\x85\x80\xca\xfa\x6e\xf3\xe8\x8b\x1c\x1b\xc0\x39\x72\xb2\x8b\x21\x3c\x38\x1c\x8f\xcb\x8f\xa9\x78\x39\xcc\x5a\x2c\x0b\xa0\x29\xd6\x4b\x9e\x59\x65\x45\x45\xd5\xb7\x1c\x3c\x16\xdc\x0e\x44\x7c\x90\x1e\x16\x70\xd4\x56\x1c\xde\x5d\x30\xd2\x7b\xf1\x1b\x01\xa1\x90\x48\x89\x93\x2d\x00\xf1\x12\xf6\x37\x61\x10\xa4\x11\x3f\xe4\xad\x1d\xe1\xf2\x01\x1c\x50\xeb\xc5\xa5\xaa\xc1\x06\x82\xf0\xf4\xc9\x3b\x1a\x28\xe6\x8c\x74\x16\x1e\x2d\x0c\xce\xf2\x20\x86\x68\x1b\x62\xb3\x4b\xe4\x1e\x80\x81\x58\xec\x7b\x44\xe6\x22\x10\xc7\xe4\xdf\x85\x38\x90\x58\x71\xa5\xe0\x19\x96\x30\x01\x02\x30\x68\xe5\x45\xc8\x50\x03\x49\xd8\xba\x5f\x3e\x2f\x15\xb0\x34\x32\xf9\x7d\xf3\xa5\x4a\x59\x0c\x1e\x18\x08\x86\x16\x87\xe5\x47\xf1\xaa\xa1\x6b\xb4\xf6\x5a\xe3\xb9\x5a\x47\x1e\xc6\xd0\x5c\xd0\x74\x22\xa5\xd1\x71\x28\xe4\x63\xc4\xbd\x2a\x46\xa4\x2a\x1a\xa9\x24\xdd\x1d\x3a\x60\x1c\x2c\xd7\x3a\xb9\xa9\x84\x96\x97\x9e\xd2\xcc\x42\xa9\xc1\x7e\x8c\x34\xce\x6c\x6b\x68\x58\x06\xd4\xb1\x8d\x61\xf5\x7e\xb2\x60\xf4\x75\xd2\x40\x9d\xbe\x22\xf0\x4f\xf9\xf5\x8d\xec\xb0\x0c\xd3\x9c\xa5\x8f\x2b\x56\x7e\x90\xd3\x0d\x1a\xcf\x69\x3d\x82\xfe\x7a\x20\x27\x7c\x50\xa7\xaa\xea\xf1\xd2\xc4\xb3\xdb\x2a\x6e\xa5\xb3\x19\x24\x3d\x44\x6e\x77\xa8\x2f\x1b\x8a\x4c\x89\x4a\x98\x7e\xff\x20\xa7\x0b\x34\x1e\xcc\xfc\xb9\xcc\x56\xa4\x24\xfe\xdd\x83\x37\x5c\x37\x8e\xaa\x8f\xb6\xb9\xda\xee\x82\xb9\x8f\x5f\x70\x6d\xba\x0e\xed\x6a\xde\x15\xda\xc5\x31\x5f\x0f\x9d\x6e\x3e\x4d\xde\xf3\x73\x11\x11\x75\xa6\xcf\x85\x14\x78\xcd\xc3\xf1\xa8\x96\x6c\xdf\xf8\xea\xbf\x44\x27\x0e\xc5\x57\xb7\xc4\xee\x4a\x14\x1c\x2f\x29\xf5\x61\x12\xdd\x14\xd6\x8e\x5f\x49\x29\x66\x19\xc2\x2a\x62\xa4\xbf\x5e\x6e\x94\x1f\x2b\xeb\x22\x22\x25\xaa\x5d\xd9\x4f\x2e\x66\x1a\x22\x4a\x6a\x6e\x83\xfc\x38\xfa\x56\xeb\xe5\x0c\x03\xad\xa1\x86\x79\xb2\xe3\x25\x85\x5e\x33\x4a\x49\xb2\xc9\x24\x5c\x9f\x4e\xda\x8b\x3e\xf2\x30\x0d\xf1\xc0\x3e\x7f\x34\xd5\x58\xea\xd4\x1c\x79\xa1\xdc\x0b\x13\x28\xb2\xa8\x3e\x42\x54\x3b\xe2\x37\xba\xb8\xc6\x0a\x46\x26\xca\x71\x56\xf3\xdc\x00\x7e\x65\x44\xea\x03\xfb\x02\x6a\x28\x46\x8a\x29\xf4\x28\xf6\x60\xe3\x41\x53\xf2\x5f\x0d\x5a\x91\xf3\xe7\x74\xaa\xe2\x50\xe8\x1d\x63\xc8\x1c\x5a\xbf\xda\x63\xe5\x95\x3b\x36\xd2\xdb\xd0\xd0\xf5\xf1\xd2\x7e\xf4\x32\x6e\xd7\x6d\xe4\xfc\xca\xfb\xf1\x54\x59\x51\xf1\xad\xee\xad\xac\xad\xef\x19\x2e\xce\x04\x3f\x69\x74\x3c\x59\xa0\x78\x12\x81\x0d\x9d\x1a\xbc\x33\xb2\x8f\x8d\x59\x33\x99\x81\xce\xc3\xeb\xc1\xe8\x1f\xf1\x05\x98\x71\x38\xe1\x01\xb2\xd1\x04\xb5\xf9\x12\xc7\xc4\x34\x2b\x08\x9f\x0a\x67\xe9\xdf\xf4\x43\xfc\x8f\xa4\x85\xc2\xc8\xd7\x3f\x65\x3f\x5d\xb0\xeb\x38\xe7\x48\xd1\x5d\xc1\xa2\xcd\x51\xdb\xc7\x7e\x9d\xac\x80\x6a\xf8\x11\xef\x63\x58\x27\x49\x32\xe0\x9c\xab\xf0\xae\x9a\x13\x2c\xdc\x25\xc6\x2b\xd2\x9f\x9e\x00\x17\x91\xfe\x98\x9d\x9b\x29\x51\x37\x37\x86\x72\xc7\xff\x0b\xa7\x05\x45\x84\x50\x7f\x14\x79\xcf\xe0\x4d\x53\xcd\xe6\x34\x7d\x6c\x1a\xe8\xf1\xb6\x38\xf2\xf6\x47\x3d\xb4\x19\x9c\x65\xca\xf0\x16\xe2\x2c\x10\xe9\xc0\xbe\xac\xff\x70\xa0\xe7\x3a\xaf\x98\x95\xa5\x64\x10\x61\x59\xc6\xe8\xce\x51\x9f\xf5\xfc\xaf\x2c\x1a\xd5\x97\xfa\x74\x86\x9b\x63\xae\x65\xbe\x98\x11\xeb\xe5\xb7\x2a\xa7\x93\x87\x2b\xdc\xcf\x37\x2e\x9f\xc3\xdf\x04\x9d\x7d\xe7\xd9\xe7\xb7\x9e\xe7\x9c\x9f\x05\x3a\x7d\x37\x96\xaf\xbc\x48\x74\xb3\x13\xbd\xeb\xad\xea\x70\xf3\x51\xe6\xc8\xe5\x5c\xf5\x0a\xfd\xc6\x94\xcf\x24\x67\x72\x7b\x92\x96\x3a\xd0\x5e\x00\x4f\x7e\xc6\x48\x23\x9b\x72\x2a\x5e\x82\x1e\x69\x69\x6c\x49\xd1\x9a\xcd\x39\x32\x4b\x93\x62\xb3\x11\xa6\x43\xe3\x45\x31\x05\x5c\x06\x77\x77\x30\x5c\xc5\xd1\x70\x8e\xfa\x86\x86\xe0\xf0\xfe\x7e\x0d\xf9\xd4\xd6\x92\xe4\x89\x01\x53\x8e\xc4\xb6\xa7\x73\xe3\x39\x5a\xaf\xd5\x94\xcb\x36\x1f\x52\x71\xe2\xf4\x7b\xe5\xe3\x96\xf8\x03\x83\x88\x8c\xa5\x81\x12\x1f\x57\xcb\x3d\xe2\x37\x2d\xf0\xe7\x2d\x99\x4a\xfc\xdc\xdc\x23\xa9\xe4\xff\x83\xc5\x64\xac\x1f\x1a\xa8\xe7\xb5\xa3\xb6\x86\xb2\xe7\xb7\x46\x8a\x80\xd9\x01\x34\xf7\xb7\x92\x24\x94\x21\xb3\xb6\x22\x94\xb3\x6d\x5a\xc6\x20\x25\x09\x43\x01\x57\xf5\x42\x69\xeb\xc4\x0a\x76\x61\xbd\xf3\x64\xa7\xd1\x53\x62\x28\x20\x2f\xf8\x1b\xb1\x41\x78\xb6\x7a\xc0\x97\x01\x6d\xc7\x5d\xf9\x28\x35\x6f\x3b\x8d\xd4\x2e\x96\x16\x9f\x32\x44\x3d\x55\x83\x05\xea\x99\x24\xe5\xd1\x47\xfd\x5c\x0a\x16\x48\x67\x3c\xff\xce\x3c\x92\xe7\xe9\xac\x64\xbc\xc2\x2c\x78\xb8\xd7\x23\xb8\x20\x08\x1d\xe2\xea\x10\x12\x5e\x0e\x03\x1e\xa2\x99\xea\xc6\x04\x6f\xb4\xc8\x4e\xaf\xf0\x1a\x0b\xd0\xc4\x25\xe2\x30\x8c\x0a\x85\x26\x2a\xcc\x7f\x05\x3a\xbb\x52\x74\xb0\xea\xce\xa2\x35\xc7\x16\xac\xbe\x69\x47\x43\x9c\xeb\x9a\xdd\x8d\xfb\x78\x71\x8a\x3f\x6f\x6d\xbc\x8d\xbb\xbd\x01\xdb\x5b\x8c\x9a\xad\x35\x93\x5e\x19\x90\xf9\x86\x90\x36\x9f\x27\x24\xec\x80\x4c\xf8\x1b\x60\xe3\xce\x66\x5f\xa8\x45\xd5\x87\xaa\x9d\x78\x60\xed\x9c\x6f\xb8\x04\x74\x32\xa0\x7e\xfb\x68\x19\xb1\x08\x9c\x30\x33\x8c\xc7\x1b\xb3\x88\xfb\x44\xdd\xcf\x27\x52\x4b\xbb\x39\x7e\xfe\xa8\xb0\xb6\x74\xf4\x5f\x96\x2e\x79\x8d\xb3\xa0\x96\x34\x21\xe9\xb0\x99\x1c\xc6\x04\x4e\x9a\x18\xc3\xd6\x88\x8e\xe5\xff\x35\xb1\x50\x05\xe4\x57\x09\x6d\x2d\xfa\x0d\xe2\x71\xdc\x67\x72\x54\x07\xe7\x2b\xcf\xb1\x17\x0d\x4d\x0f\xe6\xef\x8a\x67\x4c\x78\xaa\x09\x1e\x46\x1e\xb4\x77\xef\x12\x6c\x01\xcb\x00\x8f\x37\x81\x9f\x0a\xc3\x4d\xb2\x85\x67\x80\xf9\x19\x82\x30\xca\xe8\x63\x05\xb8\xad\xa8\x5e\xa4\xf4\x0f\x16\x47\x41\x92\x45\x16\x57\xd3\xff\x8c\xa4\x6f\x25\x41\xc6\x5b\x95\x26\x4b\x7c\x0b\xe7\xdb\xdc\xbf\xfc\x4c\xc1\x77\x3b\xfe\x1f\xbe\xbe\x49\x40\x08\xee\x96\xff\xe0\x5b\x75\x61\x3f\x5a\x21\x3a\xb1\x2f\x29\xed\x20\xa7\x0f\x8f\xb9\xb0\x23\x59\xb2\xe1\xfb\xb9\xad\x38\xf8\xa3\x2f\x4e\x09\x13\x77\x42\xc4\x06\x91\x6b\x40\x1a\x43\x52\x0c\x39\x58\x96\x25\x25\x9a\xa3\xc8\xe3\x72\x3a\x99\x0c\x4d\x4c\xc0\x75\x8a\xdc\xc4\x86\x0e\xb9\x04\x2b\x1e\x3b\x11\xfd\xa6\x34\x69\x4e\xc3\x16\xd6\x77\xbb\xdc\xd6\x39\x2e\xa1\x8b\xe8\xef\x94\x8b\x1d\xf4\x42\x52\xaf\x9e\xa8\xbe\xed\xd2\xbc\xb4\x5f\xd5\x7c\x81\x81\x62\xe8\x55\xb4\xa6\xf9\xf1\x6b\x4f\x31\x08\x0c\x6a\xc1\x77\x69\xa6\xfb\x76\xe2\x09\xbd\xfa\x66\x12\xe3\x11\xdc\x97\xd4\x43\x26\xa9\x6f\xbb\x6f\x4a\xfb\xaa\x68\x51\x0a\xfe\xf7\x69\xf3\xee\x3b\x9a\x40\xe8\x21\xb7\x90\xe8\xfb\x86\xd9\x78\xe8\x5b\x2b\x45\x94\xf6\x7c\xab\x8b\x16\xb6\x0e\xfb\xdb\xc3\xd8\x21\xe0\x93\x46\xe0\x77\x06\xed\x29\x82\x8a\x25\x68\x8b\x0d\x11\xfd\x59\x42\x0a\xb0\x71\x84\x94\xca\xd0\x86\xaf\x7f\x39\xf5\x23\x27\x45\x06\x14\x4c\x97\x79\x3f\x3a\x93\x89\xd8\xcf\xac\x03\xf6\xf8\x63\x3f\x9b\x01\x51\x0a\xa4\x7a\x94\x27\x9e\xf8\x4c\x2b\xff\x56\x01\x90\x43\x0b\x83\xef\x93\x2c\x03\x15\x9c\x2a\x73\x7f\x74\x36\x33\xf5\x80\xb5\xb9\x89\xc7\xb3\x6d\x6f\x3a\x06\x6a\x4c\x44\x16\xdf\xf6\x1a\xbf\x0e\x04\xfc\x35\xcf\x0c\xa7\x77\xfc\xf0\x5a\x7f\x79\x96\xc6\x7c\x5d\xfe\x4e\x83\xc8\x7e\xf0\x5a\x76\xb8\x50\x63\x2d\xc4\x6f\x7c\xc3\xc2\x58\xd5\x0d\xdf\xc4\xa7\xe3\x77\x87\x9c\x8f\xa3\xea\x72\x0c\xa4\x3d\x27\x75\x21\x19\xad\x82\x2a\x80\xd7\x2e\x3f\x5a\x5b\x04\x63\xcd\x82\x9a\x40\xba\xe8\xc7\xb4\x62\x27\xc2\x60\x38\x4d\xe5\x6a\x5d\x3b\xe4\xb0\xb6\xb1\x5c\x34\x26\x8a\x79\xf0\x21\x95\xe4\x79\xf4\xfb\x8b\x94\x32\xdb\x32\x2c\xc7\x82\xec\xe7\x56\x71\xf7\xb3\x10\xcb\xeb\x60\x3a\xfe\x87\x31\xf1\xdf\xc6\x17\x49\x1f\x97\xe7\x5e\x28\xb9\x3e\xbf\xf8\xbf\x97\xed\xaf\x32\x4e\xf2\x3e\x59\xac\x9f\xe1\xdc\xb2\x1d\xf6\xae\xdf\xa9\xd6\x79\xc8\xf8\xbc\x75\x67\xbd\x52\xf0\xe8\xe3\xb9\xbb\x70\x51\x37\x53\x6a\xf3\xe0\xc7\xd5\x63\x7c\x34\xa2\x91\xf9\x4b\x7c\xef\xa2\xd3\x96\x31\x0b\x9a\x12\x25\x5b\x96\x2c\x8a\x2a\xa9\xea\xcc\x71\x31\xa2\xba\x15\xad\x1a\x33\x73\xcc\xa3\xe6\x68\xaa\xbd\xaa\x13\x9c\xca\xb1\x81\xba\xa3\x03\xd1\xe6\x42\x2e\x37\xc6\x7e\xf2\xf5\x8f\x7b\xe9\x45\x6f\x9d\xfc\xfb\xa4\xf5\xc9\x03\x07\x84\x57\x4a\x8c\x02\x3e\x3b\xe8\x90\x07\x60\x7c\xbd\x8f\x22\xb7\xa2\xfc\x00\xfb\x5a\xf4\x20\x3e\xfd\x0c\x99\xd8\xd0\x7a\xd3\xda\xc5\x0c\xec\x1c\xfe\x1b\xdc\x2f\x76\x7f\xa1\xdd\x55\x70\x25\x41\xd6\x86\x35\xb3\xc7\x0a\xbd\x03\x22\xf1\x0b\x23\x7d\x4b\x74\x5d\x74\xd9\xbc\x67\x63\x8f\x02\xd1\x93\x7d\xbe\xe4\x85\xe2\x8a\x65\x2d\xdf\x38\xe6\x08\x10\xaf\x1e\x02\x18\xf2\x28\xa2\x8f\x8a\x0c\x86\xa8\x58\x10\xcd\x24\xc0\x7c\x0c\xcd\xc7\x6c\x86\x98\xa4\x45\x93\x44\x10\x3f\x7d\x6e\xb6\xae\xfc\x50\x55\xf1\x9c\x8a\xe7\x5f\x2f\xf9\xec\xc8\x95\x23\x6d\xe1\x7f\x1c\x1d\x78\x90\x54\x9f\x65\x54\xb2\x44\x4f\x7f\xfb\x3c\xe2\x62\xe5\x24\xf8\x18\xec\x0f\x73\xaa\x18\xc4\x53\xff\x24\x97\xbe\x55\x36\x05\xf9\x19\x23\xbf\x6a\xbf\x7e\xf2\xab\x93\xed\x41\x1f\x52\x3f\xa6\x83\xce\x42\xfb\xf7\xc7\xf8\xe5\xe5\xdf\x40\xf0\x69\xd8\xe4\x87\x34\x30\x3e\xc9\x44\xdc\xfd\x54\xdb\x61\xb2\x5f\xf9\xeb\xd7\x7d\xd3\x7b\x42\xa4\x2f\xe8\x43\x18\xc5\x15\x7c\xe1\xcb\x65\x7e\x69\x51\xef\x59\x83\x3f\x64\x9d\x34\x48\xf5\xbf\x6a\x5e\xda\xcf\xc0\x14\x7e\xa5\x47\x37\xe2\xf3\xb2\x61\x6e\x13\x9d\x67\x99\xa4\xeb\xcd\xd8\x6c\x3b\xd4\x44\x1c\xd3\x3b\xec\x61\x43\x41\xe3\xd6\xbd\xd6\xc7\x3e\x19\xf3\x83\xcf\x14\x23\xfa\x1c\x4f\xc0\xa2\xfc\xf2\x8b\x24\x5e\x73\xeb\x4a\x51\xf1\x07\x1d\x71\x5d\xdb\x49\x19\x38\x64\x99\x6b\x3e\xd4\xd1\xb9\xf6\xe2\x47\x61\xfa\x0f\xfb\xdd\x38\x60\x8c\xe2\x71\xa9\x5b\x9d\x94\xaa\xc8\xed\xea\xcc\xd7\x0d\x02\x89\xd4\x89\xac\x6d\x63\xb9\x3b\x5a\x34\xe7\x20\x04\x50\x8e\x7c\xb6\xa2\x7a\xec\xb8\x49\x43\x4c\x98\xd9\xf2\x78\x84\x1c\x24\xe0\x1d\xc3\xa7\x01\x39\x46\x2f\x25\x06\x8d\x7c\xbd\x2e\x83\x8d\xf6\xe2\xa1\x8a\x1a\x24\xbe\x9f\x1f\x9c\xcc\x4a\xd6\x09\xfc\xb9\x5d\xab\x73\x86\x7b\x0e\xa8\xf7\x00\x1a\xcb\xdb\xee\xa1\xdb\x4c\x8b\x7b\x95\xe4\x28\xa9\xa6\xf6\xf3\x56\x8f\x8d\xde\x3a\xdc\x0f\x78\x3b\x65\xec\x36\xf4\x0a\xa0\xec\x05\xc8\xc2\x95\xa4\xb3\x5f\xce\x9d\x06\xf6\x1d\x8c\xee\x57\x5f\xeb\x87\xac\xa0\xcb\xc4\xc1\x09\xea\x05\x60\x2b\x17\xab\x33\xdb\x77\x57\xae\xf8\x94\x60\x03\xe6\xc8\xb9\xef\xbc\x11\x81\x75\x16\xe3\x2c\x77\x1d\x12\x56\x01\x81\x69\x6d\xda\xb4\xc2\x15\x42\x59\xe5\xcf\x66\x9a\x9f\xff\x1a\x6a\x98\x94\x2a\xbf\xbd\xc6\x9c\xc1\xfe\x22\xaa\x19\xdb\x71\xc8\xa2\xfc\x7c\x4f\x33\x5c\x78\xc1\xb8\x40\xc1\x4a\x31\x33\x5d\xa5\xb6\x07\xcd\x4b\x66\xb0\x17\x80\x61\x07\xa0\xb3\xbe\xed\x19\xbc\x4b\xb3\x5a\x16\xd1\x8e\x41\x6d\xff\x41\xe6\xf2\x8f\xca\xf8\x09\x4e\x94\xca\x1b\xda\x2d\xe1\xb4\xd4\x2c\x03\xda\x2e\x80\x21\x5f\x1b\x76\x4e\xca\x04\x70\x4b\x0b\x15\xa3\x64\x7f\x7b\x2e\xba\xf4\x2a\xed\x47\x6b\x10\xa5\xd3\x7a\x28\x9d\x60\x20\xa5\x19\x87\x30\x07\x4b\xb5\xf1\x97\x4c\x9a\xd2\x88\xe7\x25\x39\x9c\xba\x78\xa8\x03\x44\x64\x43\x4c\xf3\xe8\x84\x60\x92\x48\x4a\xce\x22\x0d\x83\xa2\xa1\x42\xfe\x56\x00\x2d\xad\x0b\x73\x1b\xc9\x2c\xc3\x08\x47\xee\x40\x35\x50\x2a\xfe\x52\xef\x5c\xb3\xda\xd5\x9f\x55\x6c\x5f\xb9\x74\x76\x0d\xf0\xcd\xea\xbe\x24\x59\x59\xf9\x31\x24\x98\xec\x8e\x6b\xd2\x57\xc7\xaf\x99\xb4\x86\x56\xed\x4a\xa6\x77\xb5\x5a\x0f\x5d\x4c\xfb\x7d\x46\xfe\xd2\x09\x50\x74\xc3\xd2\x9f\x48\xbb\x7f\x02\xa0\x4f\x98\x93\x44\xf3\x07\x80\x0a\x1e\x53\x3f\xea\x4d\x8e\x55\xdd\x83\x08\x79\x35\x7e\x52\x86\x34\xe8\xb2\xd2\x2b\xd8\x56\xdf\xe4\x5a\x53\xbb\x8e\xbd\x0a\xf3\x22\x50\x2d\x81\x00\x79\x62\x3d\xa3\x4f\xc9\x73\xf5\xa9\x08\x99\x00\xa4\x25\xa5\x78\x6b\x89\xa6\x1f\xc5\x3c\xf7\xd9\xdf\xfa\x40\xca\x2a\x20\x53\x24\xb6\x03\x00\x4f\x9b\x18\xf0\x0c\x36\xcc\xfe\xf4\x28\xa5\x1e\xf4\xb5\x5f\x6d\x1b\xd2\xf6\x90\xa5\x6d\x4e\x7c\x09\xe8\x17\xda\x4a\xf6\xf7\xdb\x46\x5e\x64\xda\x5b\xb5\xda\xbc\x88\xd3\xb0\x0c\x02\x4c\xd9\x7a\xde\x31\x29\x15\xd6\x8e\xcb\x04\x19\xdc\x1a\x60\x2c\x11\x83\xc2\xae\x09\x99\xd0\x3b\x21\x15\x64\xb1\xeb\x80\x29\x38\x77\x52\x7a\xdb\xd5\xbf\x4e\x06\xe3\x02\x67\x52\xde\xef\xaa\x86\x37\x38\x55\x6e\xaa\x49\xf3\x8b\x80\x25\x3d\xa5\xe5\x91\xda\x19\x9d\x91\x30\x68\x12\xaa\x3d\x49\x76\x9c\x32\xc3\xc9\x36\xde\xc3\xf0\x4f\x46\x59\xc5\x60\x25\x41\x85\xfa\xfb\xa3\x92\x04\x2f\xc7\xaa\xe4\x3b\x60\x36\x3d\xdd\x02\x88\xc8\x8a\xf3\x52\xfd\x5d\x79\xd4\xa3\x68\x4f\x4a\xd3\x5f\xc0\x1a\x32\x2b\x66\xf0\x64\xd8\x49\x32\x4b\x36\x85\xf2\x48\x79\x41\x18\x49\x39\xec\x49\x55\xe3\x15\xa8\x8f\xbf\x94\x24\x7a\x78\x26\x0d\xd7\xc9\x76\xe8\xad\x89\x96\x3e\xd9\xba\xf2\xba\xe4\x55\x58\x4f\x92\x3d\x58\x20\x5c\xcd\xab\xb3\xf9\x82\xac\x6e\x3c\x57\x3e\x8b\xf2\x49\xf8\x61\xb2\xb4\x02\x7b\x88\x74\x93\xad\x9c\x15\x87\xaa\x4c\x1e\x05\x3c\xdb\x5c\x12\x5a\xa1\x70\x73\x80\xcd\x23\x98\x05\xf8\xa8\x56\x10\x11\x0e\xd0\x92\x68\x44\x95\x40\x88\xed\x04\xa6\x31\x51\x80\xd6\x09\x30\x23\xfa\x69\xbc\x98\xe4\xc5\xdd\xdf\xe8\x48\x7c\xdd\xef\x4c\x7c\xda\xdf\x91\xd0\x48\xdb\x4f\xea\xc4\x76\xd1\x56\x82\x07\x11\xee\xce\xda\x4e\x5a\x07\x42\x37\x7b\x98\x7e\x28\x12\xfc\x6a\x47\x7e\x7e\x37\xfa\xe6\xc6\x10\xf9\xa1\x24\xbc\xee\x56\xd3\xcb\xc1\xb1\xaa\x5d\xc1\x81\x86\x1f\xc5\x3f\x0e\xec\x68\x9c\xe0\x0e\xd2\xa0\x8e\xce\x25\x2b\x6e\xbd\xd9\xee\xde\xfb\xc1\xf3\x15\x89\x0d\x95\x9f\x41\x1e\x73\x4d\xfa\xed\x43\x4a\xbc\x01\xce\xc0\x6e\xa0\x72\x02\x7e\x92\x9f\xc0\x84\xab\x04\x46\x43\x4d\x00\xd5\xd0\x88\xad\x08\x75\xda\x06\x51\x3e\xe6\x14\xf0\xd2\x3c\xbd\xfa\xd9\x35\x3f\xff\xa9\xbb\x85\xde\x53\xba\x22\x7f\x17\x99\x0e\xe5\x33\xff\x11\x7c\xee\x66\xb4\x9f\xf7\xea\xef\x6d\x91\xd1\x2f\x36\x85\xfb\xc6\x97\x65\x6f\xbf\x0e\x70\x3e\x9e\x59\xe0\x51\xd1\x04\x71\x17\xdd\x4d\x22\x9b\x47\x69\x1a\x2b\xc6\x2b\xcd\x36\xd0\x1d\x83\x09\xde\x3c\x8e\xe2\x1d\x41\xaa\xa3\xdc\x6c\x84\x4b\x5c\x0c\x44\x5c\xb5\xc3\x75\x8d\x57\x8a\x1e\x75\x18\x43\xc3\x58\xab\x92\x16\x31\x31\x44\x31\x1f\xc5\x47\x20\xab\xbb\x67\x6a\x0d\x21\xca\xcb\x36\x10\x5d\x99\x66\xfd\x38\x02\xe7\x1f\x87\x6b\x23\xfc\x76\x23\x05\x12\xfb\x9c\x92\xf3\x38\x87\x2b\x16\xdb\xe0\xee\x01\xb3\xab\x2b\x6d\x98\x45\x10\x42\xe7\x10\xf6\xa8\xa2\x2b\x9f\xb6\xda\xf6\x2c\xbc\x13\xf4\x46\x12\x4d\x5b\x23\xea\x75\x84\x94\x49\x04\xdb\x86\x88\x29\x4c\x62\xa6\x68\x11\x65\xe7\x37\x14\x9f\x27\x59\xa9\x41\x50\xcf\x99\xe7\xb6\xb3\x27\xdb\xee\xb5\x17\x73\x5b\x67\x85\x9d\xec\x95\xc9\x62\xec\xdc\x39\x5d\x67\x04\x89\x19\x8a\xa6\xc4\x1e\x4b\x71\x99\x53\xe3\xf2\x73\x64\xb6\x7f\x08\xad\x8e\x89\xb3\x7b\x09\x8b\x83\x78\x9a\x87\xee\x21\x53\x6d\x63\x08\xb9\x0f\x1a\xb1\xf1\x71\x81\x88\xa4\x09\xc2\xf5\xac\x43\x57\x5a\x8a\xe5\x97\x85\x43\x23\x60\x6a\xa0\x7d\x9e\xb8\xbd\x47\x71\xad\x74\xa1\x81\x65\x47\xd7\x24\xf6\x31\xa4\x75\xea\x44\x9c\xce\x9c\xad\xab\xa7\x39\x8c\xfc\xb2\x50\xd7\xc2\x59\x07\xdc\x71\x60\x30\xfe\xc3\xfa\xdd\x33\xa2\x11\xe0\xc6\xc7\x3c\x27\x5e\x23\x61\xd9\x7f\xab\x81\x6a\x7e\xc6\xef\x8a\x51\xa5\x03\x01\x99\x2c\x0c\x6f\x34\x71\xf9\xa3\x5e\x55\x08\x55\x5c\x73\x89\x2c\xf5\xfd\xba\x96\xea\x01\xee\x4b\xa5\xac\x68\x31\xad\x40\xaa\x8a\x1b\x04\x01\xdc\xed\x1e\xb6\x52\xe8\x86\x3b\x0d\x0c\x46\xce\x28\x8f\x90\xdd\x0c\x7f\x2f\xd1\x7f\x29\xc4\x15\x56\xe6\xac\x0c\x58\xce\x2e\xb5\x11\x2b\x9e\xf2\x17\x30\x10\xba\x51\xa5\x47\x32\x4d\xda\x31\x78\xbd\x67\x1c\xae\x0b\x09\x33\xd6\x34\x8b\x9a\x4e\xd1\x23\x24\xb2\x9a\xed\x59\xf4\x94\x94\x89\xd3\x5e\x8a\x1a\x21\x50\xd4\x11\x64\xd1\x51\x52\xf4\x5a\x0d\x2e\x12\xa0\xd6\x92\xf0\x8a\x02\x51\xa9\xc1\x44\xb5\x54\x69\x24\x40\xae\x25\xe0\xe5\x05\xa2\x4a\x8d\x0d\xb7\x6f\xe4\x69\x80\xfd\x86\x96\x19\xf9\x56\xbe\x46\xa9\xb8\x51\x27\x36\x8d\xb3\xe5\x63\xf4\xc9\x18\x93\xbd\x30\x61\x98\xe7\xb1\x6a\x4b\x4a\xa8\x87\x74\x1d\x08\x0b\xc0\x40\xe8\xcd\xd8\xe4\x73\xce\x30\x10\x0b\xa0\x77\xda\x0b\xf9\x24\x8d\x8a\xe5\xf9\xa3\x18\xa8\x61\x76\xba\xea\x9a\x18\x2a\x4b\x48\xa9\x8c\x23\x62\x26\x36\x6f\xdc\xab\xf7\x63\x8b\x4b\x60\xb5\x3e\x70\x87\xd3\x1e\x22\x48\x5d\x61\x82\x6c\x30\x13\xa0\x61\xaf\xb0\xb6\xba\x23\xac\x49\x33\x4c\x5f\x78\xef\xfc\xc8\x94\x80\x6f\x83\xe0\x64\x08\x1b\x69\x6d\x59\xca\x55\x55\x64\x5a\x28\x56\x95\xda\x16\xa2\x6d\xaa\xe2\xe9\xdf\x40\xe1\x6f\x5b\xbe\x06\x68\xe3\x68\x5e\x28\x44\x0a\x11\xd9\xa6\x51\xa2\x56\x85\x0d\xa1\x42\x8d\x75\xa3\x22\x83\x3e\x24\xc9\xc7\x4e\x3d\xd2\xef\xfa\x0e\xd1\x6f\xf6\x23\xbf\x7e\x44\x68\x5a\xe6\xa3\xd0\x3d\x83\x3d\xaf\x35\x9e\x9a\x9e\x85\x3a\x78\xdc\xb8\x0f\x04\x5f\x72\x3a\x5b\x76\x10\xdf\xfb\x26\xcf\x79\xe6\x67\xcf\xa9\x91\x58\x53\x89\x29\x45\xe0\x1e\x23\x83\x3d\xe2\x92\x84\xe1\x22\x6d\x2d\x55\xa1\xc7\xc5\xec\xe1\x7d\xa8\xac\x44\x6a\x01\x38\x25\x80\xcc\xbf\x45\x42\xf7\x23\x23\xde\xd3\xc7\x5b\x0a\x46\x28\x9c\xce\x95\xb0\x9d\x43\x81\x5d\x71\x1a\x25\xdf\xe4\xe1\x09\x9c\xd5\xde\xf2\x2c\x34\x23\x6e\xb9\x1f\xc5\xb5\x4d\xa0\x55\x21\x64\x14\xa0\x1c\x80\x54\xb7\x35\x69\xdd\xe4\xa9\x0e\x47\xaa\x1a\x4c\x3c\x49\x57\x3c\xae\x19\x4d\x46\xf2\xfe\xfe\x49\x0c\x8a\x03\xc7\x5b\xdf\xa8\x8e\x2b\x2e\xf5\xba\x6f\xb8\x67\xd4\xbf\xf6\x05\x87\x51\xb4\x28\xd5\x05\xaa\x7d\xf6\x2b\xc2\x18\x7b\x11\xa8\x33\xe0\xe2\x61\x6a\x98\x48\xd7\x8f\x12\xf4\x5a\x7c\x1c\x86\x6c\x3b\x36\x1f\xb8\x1d\xc7\x16\x50\x83\x90\xa6\xfa\x48\x54\x99\xac\xd0\xa2\x22\xb1\x2d\x88\x77\x11\xaa\xb7\x9a\x05\x5e\xf0\xff\xd9\xd0\xff\x2b\x05\x3d\x88\x54\xa4\x97\xf8\x7f\xec\x04\xfd\xe0\x33\x9b\x93\x53\x2e\x18\xce\xc1\x53\x8e\x6f\x0e\xa5\x24\x1f\x7f\x7a\xd3\x96\x27\xc4\x61\x60\xfd\xae\xd9\x1d\x71\x90\x8c\x67\x1c\xe6\x89\x5c\x60\x9f\x81\xc1\xaf\x78\xd5\xc1\x1a\x9e\x73\x6c\xb0\xa2\x12\xa4\x05\x60\x2c\x80\x54\xbd\x56\xd7\xaf\x31\x94\x20\x94\x79\x49\xfe\x62\xf1\x00\x41\x2e\xc5\x05\x5e\xae\x49\x46\xf3\xac\xd4\xa7\xb1\x18\x2e\xac\xdf\xfa\xcc\x3f\x7e\xb0\xf4\x2e\xbf\xc2\x5f\x54\xb0\x7a\xff\x8a\x2f\xa6\x45\xee\xef\xc0\x7b\x6f\xe9\x4d\x49\x5e\x39\x92\x49\xa9\x5c\xbe\xbc\x2d\x99\xee\x3d\x34\x84\x4e\x16\xbe\x8d\x0c\xff\x87\xe2\x69\x78\xf8\xa6\xea\xfb\xf0\x8c\x77\x18\x99\x4f\x47\x0d\xf9\x09\xec\xba\x08\x75\x2c\x43\x22\x37\x0d\xff\x6d\x61\x45\x1e\x07\x58\x06\x8b\xcb\xb1\x37\x1e\xcd\x0a\x79\x28\x7e\x32\xcb\xd8\xdd\x57\x68\x50\x21\x54\xb0\x01\x33\x24\x37\xe8\xdc\x8a\x7c\xf4\xc8\xdf\xc2\x72\x47\x97\x52\xd3\xbc\xff\xf0\x4f\xce\x6a\x2c\x41\x75\x87\x2e\x3f\xba\x14\x91\x02\x53\x05\x34\x01\x9e\xdf\xba\x5e\xea\x7c\xea\x8c\xe5\x0a\x06\x5f\xcb\x46\xe1\x24\xac\x3d\x67\x03\x96\x2d\xb8\x36\x48\x78\x27\x86\xea\x3b\x5f\xf5\x81\x04\xa7\xd6\x91\x1f\xd2\x7d\x0b\x96\x6c\xbb\x03\x70\x9c\x6e\xdf\xa3\x01\xdc\x93\x58\xe3\xe5\x60\x85\x76\x11\x53\xe0\x38\x3e\xf3\x77\xbf\x7d\x94\x89\x41\x7f\xb2\xef\x74\x81\x15\x60\x70\x00\xce\xda\x19\xb3\xcf\x12\xa8\x3e\x71\xe9\xc3\x6b\xb9\xf1\x2a\xdc\x47\x9b\x8e\x52\x06\x2a\xd5\x4e\x76\x34\xa0\xb2\x75\xcc\xd8\x4e\xe2\x25\xe9\x75\x88\xc3\x2d\x0e\x8b\x49\x55\x29\xbd\xc4\x47\x99\xfb\x3f\x98\x2f\xa9\x6a\x39\xcb\x28\xd0\x8b\xfc\x17\x81\x46\xe8\x88\x8d\x96\xde\x49\xde\x3c\x81\xee\x13\x95\x5a\xd8\x4f\x66\xe2\x42\x92\x06\x77\xd0\x15\x22\xb2\xca\x97\xc2\x25\x71\x1c\xd7\xc1\x72\xb3\x51\x9a\xa2\x13\xf9\x4e\x77\x4d\x03\x96\xb9\xbe\x2b\x3f\x9f\x15\xe6\x06\x99\x74\x9d\x59\x1a\x33\x2e\xdd\x18\xed\x93\xcb\x0d\x09\x82\x60\x26\x0c\x5d\x83\xe4\xed\xdc\x1c\xd0\xc1\x42\x7f\x77\xc8\x74\xd4\x2f\x7d\x51\x07\x17\x02\x67\xdf\x62\xa9\xe5\xa7\xd6\xd4\xd5\xf8\x0d\xa9\xd8\x84\x46\x98\x3c\xc5\x65\x7c\x24\xfe\x50\xbb\xcb\xeb\xac\x18\xa4\xd4\x66\xda\xb0\xb2\x52\xf9\xca\xe4\x48\x91\xe0\xcd\xaf\x1d\xfd\x57\x28\x60\xb5\xc8\x9a\x16\x0f\x38\x78\xe2\xb3\x69\xfa\x79\x38\x05\xe4\x43\xf2\x99\xf1\x04\x23\x4c\xc8\x5a\xf9\xf8\xda\x18\xb7\x89\x3a\x23\xcf\xec\x7c\x8d\xad\x74\x28\x04\x3e\x8c\x7d\xcb\x38\xab\x58\x79\x76\xee\x5b\x4f\xbf\xbb\x3a\x17\xe5\xf9\xe2\x7a\x98\x15\xf2\xaa\xbd\xc3\x0c\xa5\x86\xc5\x6c\xaf\xb4\x16\xb9\x3f\xce\xe8\xe9\x8d\x3b\xdc\x7a\xe9\xd0\x8d\x14\xf4\x83\x49\xe4\x61\xf4\x7f\xbc\x4b\xec\x22\x5f\xc1\xf0\x45\x85\x28\xcf\xa2\x03\xeb\x94\x60\xa7\xd2\x59\xe1\x2d\x94\xcb\xaa\x47\x11\x9b\x5b\xbc\xdd\x95\x92\xbd\x1d\xe8\xdd\x57\x11\x3f\x91\x39\xd1\xee\xea\xfc\x71\x65\xfc\x2e\x80\x11\x45\xc2\xf2\x66\x98\x10\xa0\xab\x27\x74\xa0\x9d\xc5\xf5\x10\x62\x3e\x05\x26\x9e\x52\x76\xc2\x74\xdc\x62\xaf\x3b\x4e\xed\x3b\xd0\x74\xff\x37\xbc\xfa\xe7\x7a\xdf\xdc\x2f\xeb\x5e\x8d\x66\x04\x7a\xc3\x57\x03\x17\xa7\x25\xfe\xc7\x14\x25\x2a\x6b\xbd\xb2\x5e\xdb\xf1\x5c\x04\x8f\x0c\x46\x86\x36\x50\x8a\xcf\x33\xbe\x46\x22\x3f\x4b\x85\x7f\x3a\x4b\xfa\x86\x5f\x30\xe7\x7f\xc3\x23\x00\x76\xfb\xc6\x9c\x34\xba\x95\x64\xc5\x11\x94\xa3\xbd\x34\x0f\xdd\xf0\x3d\x18\x95\x13\x8b\xee\xa9\xb9\xb7\xeb\x3a\x93\x9f\xed\x0a\x03\x3e\xb5\xce\xc8\xf1\xa2\x2a\x54\x4b\xfb\xe7\x49\xe9\xf8\xa7\x9c\xe1\x70\xa4\x8c\x12\xf9\xab\x03\x46\x83\x21\x57\x33\x8d\xa3\xa8\xab\xf2\xfa\x61\x88\x06\x55\x11\xb8\xb0\xb6\xa2\x55\xcc\x10\xbf\x82\xb5\x75\xc0\x0e\xa0\xaf\x59\xba\x57\xaa\x39\xe5\x9f\x6e\x44\x56\x31\xd3\xdb\x7f\x8d\x09\x97\xb4\xa6\xb4\x3c\xc3\xea\xb9\x52\xff\xd3\xac\x23\xbe\x5e\x87\x51\x3f\x75\x1f\xb8\x2c\x69\x37\x0e\x11\xb5\xa3\x9c\xcd\x69\x2b\xf6\x30\xd4\x3c\x67\x24\x05\x97\xe2\x06\x0e\xf5\x64\xa9\x6c\xd1\x53\x6a\x1d\x2a\x65\x42\x62\xdd\xcf\x63\x92\x8a\x1b\x76\xac\xdf\xd5\xfd\x28\xc7\x52\xa4\x37\xf1\x5b\x30\x9c\xec\xd5\x14\x5b\x5d\xb8\xe0\x45\x57\xa5\x6c\xee\x7a\x11\xff\xe8\xf3\x11\x3b\xdd\x46\x09\x1a\x3c\x96\xb9\x49\xd9\x0c\x99\x9c\x9d\x67\xab\x27\x18\x73\x10\x63\x05\x84\xe6\x37\x7b\x35\x21\x14\x5f\xef\xe7\xa8\xbd\x35\x8d\x4e\x19\x26\x1a\x52\x86\xe1\xec\xde\xaa\x0d\x64\xe5\x58\x7d\x84\x54\xd4\xff\xca\x88\xa5\x15\x59\x88\xac\xa8\x3f\x84\xc7\x8b\x58\xe9\x33\xcc\xfb\x2e\x9a\xae\x42\xe8\x49\x23\x0d\x31\x74\x36\xac\x85\x75\x44\xcc\x3d\x35\xf6\x1d\xa1\xd2\x81\x3f\x27\x29\x42\x53\x9c\x2c\xac\x94\xcd\xe5\x6f\x3b\x6f\xdb\xb3\x5f\x1a\x69\x5b\x15\x9a\x64\xed\xd5\x61\xb3\x2b\x35\x20\x1b\x4a\xec\x62\x99\xa7\x19\x1b\x65\x05\x67\x73\x56\xb7\x49\x97\xd9\x3a\x8e\x09\x08\x45\x1f\x12\x23\x44\x34\x96\xa5\xc6\x94\xd9\x60\x75\x56\x2a\x24\x16\x64\xb4\x53\x2c\xde\xda\xe7\x19\xbe\x25\x96\xd6\x5d\x8f\xe6\xc6\x49\xed\xa1\x3f\x3a\x7e\x43\xca\x1b\x59\xfd\x34\x43\x61\x6e\x24\xba\xe5\x06\x87\x02\xa5\x7c\x62\xcf\x95\x6d\x83\xac\x45\x23\x75\xfe\x1c\x9e\x6b\x4a\x11\x94\x1b\x1f\x1c\xfc\x18\xdc\x1c\xe3\xd3\xf6\xc5\xec\x8d\x9f\xd4\x57\xd2\xbb\xa2\x9f\x74\xbe\xae\x2f\xfc\xfe\xef\xd3\x96\x28\x13\x8b\x4d\x7d\xa6\xf8\xec\xa0\xeb\x20\x44\x6a\xc8\xaf\xf9\x47\x8d\x5d\x98\xa7\x68\x00\x1b\xa0\xa1\x0b\x1a\x37\x37\x7e\x9f\x89\xb3\xbb\x8e\x7b\x7d\x6a\xcd\x65\x48\xbb\xb9\x86\x2f\x14\x33\xfe\x58\xbb\xbd\xf4\xb4\x3d\x56\x68\x85\x93\xbc\x5b\x08\xb9\xed\xe9\x65\x25\x3c\xba\x31\x17\xda\x38\x41\x1e\x38\x01\x92\xea\x56\x0b\x9c\x4c\xdb\xfa\x10\xab\x38\x1a\xf8\xea\x00\xa7\xf8\x8d\x1c\x43\xe6\xf7\xb4\xb5\xd5\x61\x98\x9f\xf5\x27\xc7\xfb\xe0\x1c\x0c\xef\x30\x13\x34\xe9\x6c\xf3\x7b\xd2\xda\x4a\x84\x2c\x5c\x97\x36\xb8\x89\x08\xa2\xed\xd3\x4f\x33\x6c\xe0\xe1\x43\x8c\xc0\x37\x5f\xf3\xff\xa4\xff\x6a\x2c\x78\x16\xfb\x34\x2d\xdc\xd7\x72\xa1\xa1\xf8\xe1\x94\xd8\xab\x88\xca\x69\x8c\xf6\xa5\x74\x25\x31\x87\x67\x01\xb5\x95\xdd\x48\x62\x56\x0e\xad\x99\x45\xc2\x9d\xbb\x07\x9c\x19\x74\xf9\xc7\x46\x1f\xa5\x98\x4d\x03\x41\x3b\x92\x3a\x64\x63\x72\xed\xef\x33\xa8\x67\x0d\xd9\x2c\x1e\xd7\x1b\x3f\xdb\x7f\x79\x6f\x6a\x84\x2f\xff\x22\xcd\xd0\x15\x45\xe7\x67\xd3\x3f\x16\x25\x08\xea\xef\xdf\x22\x69\x64\xa7\x82\x8f\x30\x68\x4d\x1b\xc9\x8c\x4e\xd6\xa0\xd1\x41\xb7\xbb\x60\xa7\x5a\x05\xde\xfd\x79\x24\x75\x3d\x7f\x7f\x82\x74\x8a\x4b\xc9\xb7\x33\x65\x4b\xa8\x1c\x15\xff\xf1\x1f\x8b\x52\x74\x8c\x4f\x92\x17\x00\x00\x40\xff\xbf\x31\x8b\xde\x89\xad\xd5\x16\x54\x18\x8b\x07\x40\xca\x49\x98\xc5\x11\x4f\x4a\x6f\x31\x43\x7f\x69\xf1\x34\xa0\x9e\x69\x4d\x69\x4d\xb3\x3e\xdb\xb0\xe6\x85\x3b\xbe\xbc\x27\x86\xc9\x31\x78\x10\x2f\xdf\x02\x45\x76\xe5\x02\x3e\x30\x35\xeb\x50\x2f\xed\x16\x8f\xff\xe2\x08\xc9\x68\x31\xfb\x67\x81\xe0\x6d\x2c\xf6\x7f\xc2\x63\x8d\x5b\xd4\x2d\x16\xf1\xb9\x6d\x6d\x73\xb7\xa9\x6b\x75\x5b\x08\xa6\xf0\xbe\xbc\xad\x2f\xb4\x8d\x6b\x01\xb9\xfc\x52\x8d\x5f\x69\xe0\xc5\x23\x06\xd4\x5f\x9d\x7b\x4f\x00\xae\x8e\x82\x04\xff\x56\xb3\x61\x83\xd2\xbb\x2b\x07\xdf\x2a\xbb\x55\x49\x06\x8e\xfd\xcf\x59\x02\x7f\x34\xae\x15\x21\x6d\x19\x31\x3d\x07\xa8\x93\xc1\x93\xf3\xae\x11\xd2\xfc\x29\x6d\xa6\x97\x4a\xc7\xc5\xd4\xa9\x04\x53\xc9\xe7\x30\xf4\xb5\xe2\xeb\x57\xce\x57\x49\x73\xff\xd0\x98\x3c\x28\x5e\xde\x7e\xf3\xb3\x15\x17\x5d\x17\xa7\x14\x53\xc3\x1a\xc5\x9f\xe0\x6c\x9e\xe9\xc7\x3f\x7f\x6f\x5a\xfe\x4e\xf1\xdd\x53\xb6\xf2\x87\xce\x7f\x33\x8e\x25\xc7\x4e\xc5\x7f\xac\xf8\xea\x07\xc7\x0f\x29\x0a\xba\x32\x51\x16\x2c\xfe\x17\xd3\xfb\x74\xee\x9f\x53\x9c\x7b\xd7\x7d\x21\x47\x21\x7e\x00\xeb\x95\x09\x13\x19\x3d\xee\xaa\xbb\x99\xfc\x2d\x2c\xc9\xa4\x26\x3e\x8a\x93\xf1\x11\xa2\x03\x78\x04\x11\x6b\x0d\xaa\x17\x7b\x44\x50\x7a\x6e\xd3\x37\x13\x9e\x09\x40\x71\x2a\x61\xf2\x03\x7c\xc7\xf9\x70\x9d\xea\x56\xd2\xfc\x07\x5f\x64\x97\x46\xe0\x2f\xba\xb8\x78\xdb\x71\x22\xb6\x6f\x97\xbc\xa8\xf1\xf0\x70\xbf\xc1\x1f\x94\xbd\xc6\xd7\xc3\x27\xf3\x0d\xd0\xea\xa7\x94\x3f\x68\xad\xab\xf4\xfc\xc1\x38\x2c\x98\xae\x06\x89\x8d\x10\xd7\x27\x61\x1e\x3e\x98\xdf\x96\xf5\xd6\xb5\x75\xfe\x7d\xf9\x88\xe8\x3a\x49\xe9\xd4\xe7\x0b\x9c\x59\x0a\xa7\x88\x78\x05\x60\x0d\x2d\x0c\x86\x5f\x64\x94\x04\x9d\x27\xe0\x6c\x9a\xb8\x07\x44\x2f\x61\x79\xbc\x19\x72\xa0\x83\x6d\xa0\x07\x29\x15\xc2\xb7\x01\x34\x3a\x39\xf0\x44\x97\x4f\x67\xb7\x44\x16\xd6\x2c\x86\x62\x22\xbe\xf6\xc3\x86\xfa\x98\xa6\x80\xa8\xe0\x83\xcc\xd9\x0d\x0b\x31\x03\xd8\xdb\xe6\xe4\x58\xe7\x8a\xb3\x9e\xd7\xed\x49\x60\x77\x3c\x9a\xfc\xb8\xaf\xde\x07\xe0\xa0\xf8\xf7\x2b\x10\x35\xd7\xc6\x01\x5c\xab\x6e\x0b\x00\xbd\xbc\x4a\x6e\xd8\x16\x0e\x5f\xea\x7e\x7e\x1d\x6a\x4d\xde\x61\x6e\x36\x6b\xb7\xf3\x2c\x02\xb0\xb9\x4b\x3b\x18\xd8\x79\xe5\xea\xa3\xf5\x42\x73\xaf\x1e\x33\x82\x93\x58\xcd\x8e\xc1\xe1\x1b\xab\xca\x3e\xf0\x90\x4c\x3c\xf3\x9f\x2e\x9a\x1c\xce\x28\x10\x6d\xbc\x2e\x4c\x6e\x3a\x82\xe3\x37\x22\x9e\x5f\x47\x4b\x46\x84\x5e\xb0\x72\xf7\x4b\x00\x86\xae\xb9\xda\xbe\xe3\x55\xc9\x06\x8d\xb7\xc0\x8a\xa7\xf4\x30\xec\xe6\xae\x94\xa8\xe9\xe6\x8c\x3f\x90\xd7\x79\x91\x3c\x5a\x58\x34\x87\x82\x20\x0e\x7e\xf5\xcb\xdc\x47\x0f\xc5\xae\xf9\xe3\x3c\x49\xa2\xaa\x65\x83\x63\x1c\x39\xbc\x98\xca\xda\xfd\x3e\xe3\x9c\xa7\x50\x36\xf0\xb4\xee\xda\xf9\xf8\xd2\xae\x9b\xef\xfd\xf6\xe1\x2c\x38\x84\x6b\xee\xe6\xa0\x1c\xb0\xde\x99\xb5\xc7\x21\xc9\x19\x87\xf8\xcd\x82\x19\x9f\x17\x5c\xf7\x44\x2f\x11\x74\x28\x87\xdf\x13\x8f\xf0\xd9\x9c\xf1\x50\x4b\xe1\x5e\x4d\x36\xfb\xe3\x17\x22\x35\x82\xb0\x94\x04\x55\x29\xa9\xc9\x45\x4c\xf9\x29\x21\xd5\x92\x66\x0e\x34\xe0\xa4\xaa\x4d\x79\x5e\x83\x45\xd2\x92\x0b\x29\xa4\x5d\x41\xaa\xcf\xb9\x44\x13\x9b\x62\x68\xcd\x83\x7c\x5e\x70\x55\xbf\x51\x22\x80\x0c\x21\x8f\x8f\x75\xd0\xa4\x45\x2c\xb4\xe6\x5f\x3c\x13\x11\x44\x26\x59\x19\x57\x8c\x33\x57\xc4\xfe\x4d\xe6\xcf\x1d\x8a\xcf\xe6\x2a\xd9\x8c\xb3\x02\xa4\x14\xd1\x67\x44\xc3\xb3\xc7\xf2\x91\xf2\x23\xa8\x7d\xf6\x27\x70\x96\xc1\x67\xab\xeb\x5c\x5a\x57\x0f\x37\xe9\x0e\xc5\x27\x71\x91\xac\x1b\x3c\xf5\x03\xa4\x8f\xef\x7c\x21\xfa\xe5\x06\x66\x2d\xc2\xcf\x7d\x72\xb0\xc9\xbe\xb4\x1c\x91\xb3\xb4\x2c\x1e\x11\x70\x91\x9d\x8b\xb5\x50\x7c\x04\x5b\xc9\xca\x9c\xcd\xee\xcc\xd8\x45\x09\x27\x64\xe7\x15\x0a\x52\xbc\x3b\x46\x32\x83\x3c\xfd\x00\x38\xa3\xf8\x0c\x14\x1a\x32\xcb\x84\x75\x22\xd0\xad\x34\x92\x34\xcc\x9f\xcd\x0d\x7e\x8f\xed\xdb\x48\xb1\x39\x1f\x34\x30\x1d\x26\x20\xcb\x44\xda\xe1\xe2\x59\x70\x18\x3b\x6a\x2b\xb2\x0d\x0f\xdb\xeb\xec\xe9\xf2\xf1\xb9\xb2\x37\x3e\x99\x4e\x40\x27\x8a\x6f\xe4\x80\xc7\x40\xb2\x4a\x5e\xf2\x88\xb8\x91\x3b\x66\xe7\x94\x1f\x45\x27\xd6\xa1\xf1\x0f\x6c\xf9\x05\x08\x65\x03\xd4\x5a\xbe\xdd\x41\xf9\x00\xde\x5c\x73\xd0\x63\x5e\x07\x0e\x92\x94\xbb\x01\xcb\xc4\x26\xac\xd9\x41\xb9\x21\x94\x78\x65\xb5\x6a\xcb\x07\xf2\xf7\x7b\x7d\x92\xd7\x38\xd9\x6d\xb7\x5d\x74\x19\x26\x95\x16\x4e\x5d\x56\x69\x9b\xdc\x49\xdf\x88\x26\x94\x0b\x2e\xcf\x24\xa5\x43\x9a\x91\xe6\x39\xe5\x82\x06\x49\x7a\x58\x36\xe2\x67\x0d\x96\x10\xca\x56\xd0\xb6\xdc\xa2\x54\x6b\xd3\x36\x23\x86\x54\x2c\x21\xab\x42\x89\xd4\xa5\x66\xe4\xa6\x94\x0e\x49\xbb\x97\x3b\x03\x4e\x83\xa6\x38\xf7\x66\xef\x82\xa3\x21\xe6\xf3\xf8\x93\xbc\x86\x51\xf3\x9a\x20\x97\x93\x0f\x27\x1d\xc1\xee\xbc\xc3\xa1\x23\xbc\x9c\x6b\x27\xe1\x68\xac\x5b\xda\x1d\x5d\xfe\xff\xec\x4c\xcc\xc8\x3d\xac\x74\x36\x73\xb5\x3f\xcb\xde\xf0\x1a\x16\x8d\x52\x67\x67\x96\x60\x01\x6b\x6e\x0f\x15\xb1\xae\x7f\xef\x3a\x3e\xa2\xf1\x88\x4e\x1c\xc0\xb1\x38\xe1\xaf\x36\xce\x99\xa4\x8e\x93\x65\x83\x77\xc4\x08\x65\xa8\x72\x49\x14\x10\xbe\x3c\x11\xa4\x27\xd3\x11\x3d\xae\x3c\x8a\x6a\x0b\x96\x35\x00\x89\xe4\xe8\x9d\x4e\xb9\xc4\x02\x4d\x26\x75\x82\xd7\x4f\x40\xfa\xb5\x9c\x73\xde\xd2\x63\xb0\x24\xd5\x07\x4a\x72\x6c\x75\x6b\x9e\x50\xd7\x64\x1b\xfd\xcf\x8d\x67\xab\xfe\x6d\xdb\x5f\xa4\xae\xdd\xb3\x95\x4c\x22\xc7\xbb\x0d\xb0\x42\x9c\x44\x84\xd7\xf1\x20\x83\x9c\xcc\x21\x71\x74\x3c\x81\x41\xc3\xff\x87\x9a\x6c\x19\x80\x6b\xf3\xa0\xc9\xca\x4c\x58\xc6\x2d\x1a\xb2\x5d\xa0\x28\x3e\x19\x85\xd3\xad\xa9\x8f\x50\x0f\xc7\xf9\xeb\x82\x72\x5d\x7c\x4b\x8a\xb3\xf8\x58\x4e\x84\x2f\x01\x83\x53\xa8\x49\xdf\x83\xda\x10\x89\x67\xbe\xb2\x9f\xe4\x2e\xe6\xd8\xee\xab\xf2\x9f\x48\x5c\x92\xbc\x60\x10\x59\x79\x00\x1b\x19\x6b\xe8\x0e\x4c\x44\x79\x0a\x61\xad\xc6\x35\x54\x0b\x0a\xb1\xf2\xce\x48\x36\x66\x47\x29\x7f\x93\xe9\x48\x9c\x69\xe0\x74\x36\x91\x5e\x30\x9e\x1d\xce\x96\x16\x75\x8d\x4f\x6d\xfc\xc2\x0a\xd7\xc0\x11\x99\x4e\xeb\xa0\x18\xb8\x7d\x66\x4f\x12\x77\x9e\xc0\x51\x1c\x65\xdd\xa6\x25\x29\x3b\x76\x64\x76\xa5\xfc\x97\x7d\xa6\x6b\xd9\x09\x48\x8a\xa1\x68\x4b\x5f\x5d\x04\x57\x92\x2f\x3b\xaf\x8c\x1e\x8a\xf7\x90\x23\x99\xc9\xa9\xe2\x6c\xdd\x2e\xfa\x71\x22\xff\xd9\xa1\xed\xb3\xcf\xc7\xa0\x2c\xcb\xc6\xfe\xd3\xa4\xd5\xee\xa4\x75\xd2\x9a\xb4\x7a\x70\x47\x76\xde\x24\x04\xc5\x27\xf9\x23\x59\x37\x78\xea\x07\xaa\xb6\x8a\x7f\x8c\x30\xa8\x91\x9d\x77\x47\x49\xf1\xd9\x72\x25\x9b\x71\xb8\x1b\x0c\x64\x6b\x16\x40\x8f\x76\xde\x7e\x28\x3e\x5d\x8e\x64\x23\xce\xd3\x60\xc0\x93\x88\xf7\xd1\x4a\xa5\x1f\x90\x62\x3f\xdb\xe8\x20\xbc\xb3\x4c\x4a\xa6\x08\xba\xfc\xbb\xbe\x7e\xaf\x18\x92\x41\x78\x56\xa1\x09\xd6\xeb\xa4\x21\x29\xff\x59\xd9\xeb\x2f\xb9\x70\x4b\x64\x96\x00\xca\x7e\xb1\xa9\xfc\x17\xee\xc9\xc6\x6b\x98\x36\x7c\x85\xdb\x95\x6c\xa1\xfa\xcb\x0d\x05\x45\xa8\x7c\x55\xa9\x99\xab\x6c\xc0\xa1\x5d\x3e\x00\xee\x5e\x17\x8f\x50\x4a\xf7\xaa\x7a\x62\x5b\x6f\xbe\x72\x21\x54\x48\x49\xb1\x3a\x16\xb8\x71\xe8\x08\x70\x5d\xfc\x4b\x78\xbe\xfd\x5f\x70\x94\xcc\x0c\x95\xa4\xd5\xce\xaf\x9e\x0d\x75\x8d\x2e\xa9\x18\x99\xa4\x61\xc8\x9f\xc5\x46\x7a\x07\xcb\x25\x89\x72\xdc\x7d\xf4\x79\xb9\x8c\x60\xfd\xd5\x6d\xb7\x47\xd6\xeb\x53\x75\xa0\x4e\xf8\x50\xf9\x50\xb2\x82\x40\x65\xcb\xfd\xd7\xd7\xd4\x9e\x1d\x5c\x31\x0b\x6c\x1e\xe7\xf5\x3f\x96\xe8\xfa\xb9\x62\x5b\x95\x74\x84\x41\x48\x28\x1b\x6a\x23\xf9\x50\x87\x6c\x2e\x89\x25\x7a\xe4\x2e\x51\x0e\xd6\x8a\xa4\x77\xec\xa2\x5f\xe9\xa9\x3e\x30\x69\x9f\x75\x8d\xaf\x2d\xa0\x75\x5d\x47\xb1\xb5\x6d\xe1\x8f\xcf\xbb\xb7\x00\x2d\xd2\x1b\x81\xd1\x69\xff\xff\x06\x8c\x29\x2a\x27\x7e\x05\xc7\x14\x55\xe8\x5f\xd6\x3e\x51\xb2\xfb\xff\xc1\x15\x93\x37\x80\x1c\xaa\xe7\x9f\xfe\x00\x44\xab\xa3\xd1\xf4\x8b\x87\x4e\x5e\x23\xdc\x88\x9a\x89\x0f\x98\x86\xcd\x30\x07\x8b\x60\x09\x2c\x83\xe5\xb0\x02\x56\xc2\x5a\xd8\xe4\x36\xd6\x1e\x72\x21\x19\xe2\xaf\xae\xa1\xed\xda\xf3\x5f\x86\x7e\x2e\x5b\x8e\x9d\x43\x07\x93\xb6\xd0\x0c\x49\x5b\x7b\xfe\x73\x37\xa0\xd7\xbf\xb8\x5d\x26\xdc\x85\xc3\x70\x15\x4e\x35\xcf\x74\x24\xf4\xc3\x1f\x05\x9e\xde\x0d\xe0\x22\xcf\x1d\xe2\xfc\xf3\x0f\xaa\x96\xaf\xf1\xe3\xc1\xdd\x57\x2f\xaa\x1b\x51\x5f\x21\xbe\xff\x21\xfd\x5c\xf6\x65\xf1\x73\xd9\x77\x58\x52\xcf\x7c\x9e\x65\x54\x29\x1a\x5e\x67\x3f\x53\x8c\xbf\xb2\x0b\xaf\xf4\x5d\x6f\x0d\x65\xdc\xc9\x65\xf4\x54\xb5\x73\xae\xf9\x5e\xdb\xe6\xa4\xc2\xdb\x3f\x72\xc1\x12\xc0\xfc\xc3\x59\xd7\x2a\x67\x0d\x1a\x1a\xad\x0d\x1c\xee\x3c\xb3\xe1\xe2\x03\x93\x4f\x87\xee\xfc\xbd\x08\x70\xec\x1c\xec\x06\xae\x3a\x4c\x00\xfb\x37\x98\x93\xd0\x99\xb9\x34\xa5\x74\x4d\x17\x6d\x2f\x65\x54\x45\x94\xdb\x15\xcc\xa1\x09\x5d\x78\x08\x09\x3d\x96\x25\xaf\xeb\x2e\x22\xf2\x5a\x0c\x9b\x29\x23\x77\x39\xef\xa0\x3c\x61\x02\x70\x09\xfb\x1d\x1e\x20\xeb\x88\x40\x96\xcf\x2d\x11\xd8\x72\xdf\x26\x40\xc9\xc9\x06\x02\xe6\xf5\x46\x9a\x4d\xc1\x3f\x71\x9a\xbf\xbc\x08\xd5\x04\xb8\xbd\x96\x7c\xf1\xb7\x5f\x1f\x97\xb4\xf1\xcb\xd8\x9b\x75\x27\x37\xaf\xea\x34\x94\xb8\x82\x65\xbf\xe1\x6a\x59\xce\x1e\x4f\xdd\xac\x78\x11\xe0\x99\xb4\xa7\x5f\x05\x66\xc5\x23\x92\x3d\x59\x65\x36\xa4\xfb\x47\x14\x48\x82\x7b\xd3\xeb\x83\x81\x89\x80\xf5\xff\xde\xfe\x39\x99\xa9\x8e\x5e\xef\x0a\xb4\x4a\xd5\xb5\x49\x0b\xc7\x2e\xb3\xb4\xd0\x34\x81\x7d\xf2\xb4\xbe\x98\xaa\xc5\xb6\x8e\x34\x3d\x86\xf0\x32\xee\xec\x33\x2f\x7b\x43\x6e\x2e\x06\x2e\xd5\x5c\x73\xbd\x36\xdc\xf9\xbc\x2b\xd7\x6a\xcc\x4b\x9f\x06\x4e\x2d\x02\xf3\x99\xe6\xc3\x56\x08\x4b\x05\x89\x62\x02\x56\x1b\xd1\xa7\x17\xff\xe8\xd8\xb0\xcb\xb9\xb9\xd7\x96\x33\x08\x43\x02\x94\xe5\x94\x7f\x36\x42\x54\x53\xd2\xbf\xcc\xc0\x94\x4c\xcd\x11\x3f\xa7\xff\x56\x6e\x25\x06\xae\xd2\xf7\x6a\x47\x82\x8f\xfb\xa3\x40\xb4\x47\x91\xb1\xe6\xe7\x16\xcf\x52\x18\xcf\x7d\x95\x81\x53\xf4\xab\x6a\xc6\x42\x2a\x6d\xb0\x0b\x81\x13\xcb\x09\xc4\x05\xac\x7d\x06\x40\x18\x0c\x88\xe8\xae\x65\xc3\xb5\x1b\x49\x95\x5c\xb5\x89\x8f\xe3\x49\x8c\x26\xee\x1b\x4a\x16\x2e\x6d\x2c\x9f\x7e\xb0\xb0\x94\xac\x6d\x3d\xf1\x0f\x64\x40\xe3\x4b\xb6\x7b\xae\x3a\x9d\xa0\xc7\xb9\xbd\xef\xe9\xff\xae\x88\xd2\xf9\xf9\x88\xc1\x3f\x45\xc3\xb3\x3e\x19\x24\xe6\x71\xf9\x6a\x8a\xb9\x27\xe5\xa3\xff\x58\x5c\x19\x42\xe2\x79\x86\x0b\x9a\xa9\x85\x3f\xbc\x2c\xcf\xef\xed\x4d\x18\xa1\xe6\x17\xbe\x77\x1e\xbe\xae\x79\xc7\xf2\xb9\x3d\xaf\xc1\xd8\xdc\x6f\xcb\x2b\xf4\x6e\xd6\xbe\xa3\xc4\x4b\xed\xdd\xcf\xf7\x60\x42\x5f\xf2\x91\xdc\xc1\x8e\x96\xcb\x23\xd5\xae\x9f\xf3\x85\x30\xcf\x52\x0b\x37\xc6\xf9\x03\xfd\x07\x6d\xd4\x03\xbf\x39\x99\x84\xa8\x85\x2b\x09\x42\xd0\x57\xa2\x98\x62\x56\x86\xc3\xcc\xcc\x20\x70\x2a\xe6\xaa\x4d\xe3\xb6\xb9\xa2\x0e\x8e\xe7\x4a\x37\x75\x4d\xad\xe1\x2d\x82\x2b\xe2\x7a\xe5\x4f\xad\x5d\xd1\xdd\x56\x41\x46\xf3\x46\xcb\x3d\x86\xb6\xf0\x09\x03\xe8\x49\xac\xc3\x5f\x6f\xb6\xf7\xda\xfd\xdc\x75\xed\x43\x83\x67\x88\xb1\xab\x7f\x6e\x05\x12\xae\x01\xf9\x16\xf1\xee\xa0\x8b\x54\x15\xea\xd3\x74\x59\x86\xc4\x73\xf5\x22\x7b\x21\xd9\x25\xe0\x9f\x6a\x8b\xc4\xfd\xdc\x77\x69\x91\xf0\x9d\xd6\xba\xd2\xfb\x84\xf2\x87\x2a\xf5\xd8\xb7\x84\x15\x4f\xc1\xf9\x49\xbe\x83\x15\xff\x06\xd8\xfc\xfa\xdd\x3c\xa7\xd5\xf5\xcf\x59\xbd\xd7\xe0\xe9\xba\x06\x5f\xbd\xb3\xbe\x8f\x18\xbb\xfa\x6b\x2d\xba\x37\xf7\x9c\x43\x24\x5a\x8a\xb7\xfb\x42\xe1\xca\x54\x68\xae\x4d\xce\x74\x35\xb8\xf4\x0b\x3a\xf2\x73\x94\xd1\x7f\x0e\xd7\x04\xa0\x3c\xd3\x7e\x31\x2a\x15\x8e\x42\x57\x13\x37\xd9\x1f\xf2\xe6\x9e\x27\x4c\x67\xc1\x15\xb9\x7f\x17\x68\x50\x4c\x2b\x98\x22\xb8\x7a\x91\x5b\x04\x19\x02\x88\xe5\x89\x64\x93\x31\x17\xe6\xb9\x4a\xc3\x39\x69\xe1\x9e\xde\x5b\xd2\x35\xb9\xee\xa4\x02\x3b\xaf\xe7\x0e\x84\x1e\xfd\xce\x32\x65\x64\x5b\x0d\xa1\x28\xd7\x2b\x5c\xe9\xd9\xc8\xd3\xeb\x52\x0f\xc7\x93\x2b\x72\xc9\xbc\x06\x8b\x59\x12\x2e\xf3\xf3\x5c\xf5\xa2\xd0\xfd\x9a\xe4\x8e\x1f\x60\x91\x73\xf5\x22\x87\x35\xd2\x33\x32\xd2\x7b\x9e\x2b\x35\x54\x43\x70\xa5\xcf\xc2\x11\x5c\x91\x28\xed\x11\x0f\x2b\x72\x83\x5a\xf0\xdd\x1c\xda\xbf\xec\xe0\xac\x6b\x95\x28\x93\xb7\x60\x07\x20\x8f\x85\xcc\xff\x80\x8d\x2f\x84\xec\xf8\x93\xb9\xa4\xe3\x7a\x9b\xfe\x88\x0a\x00\xf1\x90\x1c\xb7\x88\xfe\x81\x5b\x8c\x41\x6a\x7d\x07\x7d\xa1\xa5\x7d\x87\x09\xff\xdd\xf3\x85\x10\xc8\x5f\xb0\x9b\xc0\x50\xaf\x6f\x65\xd5\xea\xe6\x77\x17\x54\x42\x54\xd7\xec\x96\xdd\x24\xf5\x4f\xac\x73\x8b\x66\x1c\xc4\x74\x5d\x61\x34\xfb\x3b\x39\x4c\x69\xd6\x01\x07\xae\xcf\xcc\x07\x0f\x81\x83\x1b\x64\x8b\xde\x14\x67\xd3\x14\x1b\xe4\x8f\x65\x39\x4c\xbb\x07\x46\xef\x6a\x79\xbe\x99\xcc\x9b\x62\xcd\x04\x8b\xcc\x43\x53\xed\x8e\x05\xb5\x36\xfe\x57\x9b\x62\xde\x6b\x73\x02\x3f\xda\x3b\xa5\xdb\x89\x3b\x4a\xb7\x43\xff\xc2\x69\x1e\xf8\x17\x38\xfe\x77\x18\xc6\x14\x80\x85\xdf\x26\x56\x04\x86\xac\xf1\x42\x5c\x7f\x46\xd8\x54\xb3\x7e\xe7\xcc\x55\x6b\x9d\xeb\xe7\x77\xe2\xd7\x64\xe7\x3d\x6b\xff\xf9\x33\x54\x8c\xf9\xb8\xed\xb7\xfc\xad\x77\xc1\xe7\x61\xdb\xa7\x00\x62\x97\x64\x2a\x64\xa6\x62\x11\x77\x3f\xab\x24\xa6\x22\x26\x12\xab\x0f\x55\x56\x7c\x5c\x45\xc5\xa8\xe8\x0c\x40\xb9\x68\x79\x46\xf7\xf1\x7b\x2e\x5f\x1e\xd1\x86\x95\xc5\x4b\xc3\xff\x60\x7f\x6d\xb0\xdf\x0a\x8d\xba\x14\x0f\x2a\x69\x3c\x67\xd8\x16\x2f\x28\x74\x4e\x3e\xaa\x83\x25\x63\x3f\xd7\x99\xf1\x12\xe6\xe8\xc3\x2b\xf8\x7d\x4d\x5d\x47\x15\x98\x16\xa6\xc5\xd3\xb9\xe1\xc6\xfc\x75\x79\x85\x56\xec\x04\x68\xf1\x0a\x2f\x37\xee\xe0\x5d\x7c\xa9\x69\xc2\x3f\x6a\x57\x2b\x62\xfa\x6e\x16\xe6\x01\x87\x1e\xe3\xdb\xd3\x84\xf1\x7b\xf9\xa0\xb5\x18\xa6\x92\x43\x0b\xbc\x8b\x1a\x15\x33\x18\xc9\x19\x6f\x6b\x39\xc3\x81\x79\x3c\xbc\x30\x28\x40\x3d\xf4\x63\x69\xfb\x2b\x25\x1d\x7e\x7b\xde\xcf\xf9\xd4\xeb\x55\xb5\xe1\x1e\x10\x37\x52\x80\x02\xc8\xd0\x84\x10\x02\x9f\xff\x4a\x54\x1b\xd8\xa5\x5b\x5f\x80\xfc\x48\x0f\x28\x80\xbc\x5c\x88\x4e\xe1\x3d\x63\x40\x01\xe4\x90\x47\x13\xb5\x16\xd7\x5e\x1e\xb3\x3a\xcd\x94\x40\x86\x13\x2c\x42\x52\x82\x55\x5a\x93\x81\x14\xf4\xaa\x78\xc1\x2e\xc0\x7d\x92\x54\xa7\x85\x72\xc6\x81\x51\xac\x61\x9e\xde\xe9\x6a\x64\xe9\xd0\x7a\x2a\x65\x74\xa4\x88\xc4\xb0\x94\x03\x46\xb1\xb6\xeb\x3b\x8c\x00\xf3\x2c\xd2\x7c\x5a\x36\x8a\x87\x7b\x2b\xc5\x32\x27\x21\x14\x36\x19\x0b\xf8\x85\xd5\xee\xb3\xe5\x6f\xf5\x14\x7c\xec\x0c\x60\x18\x8b\x97\xf6\xb2\x2f\x5e\x14\xc7\x48\x7a\x47\x90\x76\xbd\x07\xd7\x38\x12\xa7\x9e\x66\xb3\xa2\xe2\x06\xbb\x91\xa1\x89\x4c\x4b\x26\x38\x61\x15\x62\xe8\x80\xcb\xc4\x75\x1e\x06\x50\x67\xaa\xe9\xb1\xe4\x94\x6b\x94\xa6\x15\xf7\x1e\xe2\xd1\x3a\xf5\x14\xb3\xc0\xa1\x13\xa6\x9d\x0d\xc2\xc3\x36\x73\xa2\xac\x14\x04\x06\x28\x98\x81\x58\xad\xc3\x2f\xba\x95\xee\xf7\x20\x50\x29\x0b\x50\x1f\x99\xcc\x80\x3d\xb3\xb7\x8e\xd3\xd4\x3a\x59\x25\x4d\x58\xa7\x2e\xcd\xa1\x8e\xe5\x0c\x07\x81\xf8\x17\x5f\xb6\xf2\x3c\x2d\x7e\x58\x15\xa1\xb7\xc3\x4a\x42\x67\xb0\x63\x8e\x16\xe0\x43\x80\x71\x59\x25\x87\xe7\xcb\x48\xeb\x99\xc6\xa1\xc3\xa8\x91\xf9\x99\x4d\xf7\x1a\x90\x50\x36\x0b\xb6\xb2\x53\x18\x7d\xf6\x0b\xad\xd4\x53\x93\xce\x58\x88\xe9\x78\x06\xd3\xce\x3a\xec\x48\xcb\x6d\x6d\x27\x60\x05\xd7\x90\x82\x82\x19\x3a\xf5\xd8\xe2\xe0\x4d\x80\xc7\xa4\x8e\x27\x40\xa7\x85\xf7\xa6\xe6\x71\xe8\xa8\x7c\x33\x18\xf0\x59\x60\x70\xb4\x42\xdb\xa6\x8d\x59\x4f\x8f\x4c\xab\xa8\xe6\x72\x0a\xa7\xda\xaa\x5f\x8c\x9f\x6e\xbf\x75\x0d\x1d\x51\x49\xd5\x11\xe0\x92\xad\xf3\x4f\x4e\x19\x1a\x3a\x55\xc8\xf8\xd9\x9d\x82\x6a\xbc\x94\x5a\x22\x0f\xb3\x38\x6a\xf4\x03\x83\xd3\x61\x4b\xd2\x52\x67\xd4\x29\x5b\x3a\x19\x0b\xba\x4c\xa2\xeb\x91\xf0\x8b\xbc\x9b\x04\x85\x60\xff\x0e\x58\xed\x9e\x77\x2c\xa0\x78\x64\x0e\x04\xdc\xcc\xe2\xec\x3b\xdd\x19\xe9\x0e\x39\x0f\xc4\x5a\x71\xaa\x14\x85\x01\xb6\x19\x86\xee\x26\x35\xe8\x19\x54\x2d\x61\x18\x50\x30\x05\x34\xc3\x8f\x94\x67\x54\xc0\xa8\x15\x35\x2a\x09\x23\x4c\x9b\xfc\xec\x1f\xc0\xd9\xac\x78\x14\x6a\xa0\xe7\x6b\xad\x02\xdc\xcb\x06\x60\x10\x25\x9e\x34\xf3\xa9\xb3\xc3\xf3\xef\x12\xdb\x7a\xf2\x96\xf0\x2e\x60\x4f\xd9\x1e\xc0\x48\xd4\x94\x5c\x3b\x1a\x58\x58\xc9\x3a\x68\x35\x2d\x5f\x58\x3e\xa6\x5f\x96\x5b\x5c\x5b\x34\x16\x35\x2c\x1b\x01\x83\x68\xfb\xcc\xd4\x92\x0e\x88\x68\x0e\x47\x60\x24\x6a\xe8\xfc\xc9\x80\xf0\x1e\x74\x3e\x67\x5c\x10\x0b\x91\xe7\x38\x92\x68\x9a\xaf\xb8\x54\x1c\x14\xe0\x0c\x96\x9c\x7c\x86\x29\xe1\x14\x5f\x33\x71\x92\x50\x28\x57\x34\x10\x97\x39\x1b\x4b\x2a\xd6\x38\x4b\x68\x08\x2c\x2c\x80\x7b\x04\xce\xa1\x14\x90\x7d\x52\x0f\x29\xcb\xb9\x72\xa4\x1a\x31\x66\xcd\xe2\x78\xeb\x62\x30\x5d\x1d\xeb\x50\x9f\x9e\x1b\x59\xa3\x5e\x8c\x5f\x4d\x4f\x48\xc4\x49\xe7\xb3\xe2\x1a\x6f\x52\x69\x9a\x03\xc8\xb9\xd2\x5c\xcb\x23\x73\x60\x72\xba\xda\xd6\x75\xaf\x29\x9e\xae\x25\x94\x89\x43\x1d\x69\xbf\x87\x35\x0c\xb1\xb6\xe0\x71\x9f\xe1\xb8\xa2\xb2\x13\xc3\x56\xd7\xaa\x04\xd0\x2b\xaa\x7d\x9b\xd6\x65\xde\x63\x51\xa7\x08\x69\xbe\xa6\x4e\x7c\x15\xc4\x2e\x3b\xc9\xe3\x53\x7b\x18\xe9\x80\xbc\x1e\x81\x18\x10\x14\x64\x0f\xdd\x4c\xad\xcb\x7d\x07\xe8\xd3\x40\xc4\x8b\x90\x01\xec\x27\x35\xa0\x74\x5d\xe8\x3c\x97\x23\x14\x79\xb7\x01\x62\x23\xef\x35\x88\x3c\xd4\xa0\x6c\x7a\x29\xe1\x1e\x26\xa2\x41\x9e\x06\x80\x3c\x6a\x8d\x74\x1b\x0c\x08\x08\x7d\xf6\x01\xa1\x19\x04\x60\xbe\x2d\xe8\xea\xa7\xb3\x59\x9a\x3c\x66\x4c\xa9\x0a\xc5\x28\x3d\x56\x65\x9a\x2a\x21\x92\x62\x69\xaa\x88\xe7\xc8\xb2\x12\xc5\x4f\x09\x77\xc9\x1e\x78\x1c\x1d\xe9\xaf\x6f\x76\x2c\x6b\xca\x67\xa3\x18\x2f\xba\xa2\x92\x6b\xd2\x02\x80\x72\x41\x2d\x5c\xc3\x47\x3c\x2e\x27\x44\xba\xa3\x88\x6d\xba\xd2\x6e\xc2\x4b\x83\xab\x62\x7f\x60\xa7\xf3\x3e\xe0\x61\xcf\xa9\x2e\xd8\x2b\x75\xf9\xd6\xa9\x6b\x86\x6a\xf0\xda\x89\x35\x83\x32\x23\x69\x44\x35\xa4\x10\xeb\x44\x49\xaa\x15\x5a\xc1\x80\xa3\x9a\x89\x4e\x5d\xa3\xd1\x6a\xa7\xbb\x09\x88\x93\x5b\x03\x88\xf9\xac\x85\xd0\xed\xa7\x06\xe4\x7d\x3c\xd1\x9d\x45\x7c\x91\x90\xc8\x80\x87\x87\x74\xc4\xf5\x69\x1d\xed\xaa\x6a\x28\xa9\x88\x92\x29\xe9\xf7\x50\xf6\xcb\x63\xbd\x24\xc6\x20\xaf\x82\x77\xd8\x2b\xc4\x7a\x47\xca\xa4\x4b\xaf\x9c\x51\x78\x3c\xe5\x09\x2b\x60\xf9\x52\x5e\x1a\x05\x1c\x6e\xe7\xec\x52\xe8\x2b\x78\xad\x3f\x15\x3b\x73\xd3\xe2\x69\x2b\xb7\x46\xa0\xa6\x7a\xca\xea\xe3\xbf\xb8\x77\x63\xcf\x20\x02\x74\xde\x7b\x83\x4e\xa5\xee\x9c\x58\x5b\x43\x66\x57\xc3\x5a\xbc\x2d\xef\x5c\x0a\xf8\x37\x74\x92\x8b\x45\x95\x8c\x5e\xc0\xe4\x56\x04\xb5\x87\x7c\x1a\x57\xe2\x5a\x14\xaf\x74\xbb\xd1\x3a\xb6\x3a\x10\xd5\x5a\xcd\x65\x5a\x84\xbb\x1f\xb5\xea\xe4\xd3\x95\x48\x91\x6c\x09\x58\x7a\xaa\xd2\xa9\x23\x18\x50\x9b\xcf\x9c\xe5\xee\x45\x77\x66\xba\x63\xa2\x55\x72\x4d\xe8\xf3\xeb\xb8\x3b\xc9\xff\x50\x87\x4b\xc5\xfa\x84\xb3\x4e\x11\x00\xb7\xf2\x0a\x9d\xbf\x05\xd7\x31\xa3\xd7\x48\xdc\x18\x73\xda\x66\xa0\xf7\x70\x99\x3d\xb3\xdb\x5a\x30\xde\xd4\x68\xd9\x99\xe9\x8e\xc9\xce\x5b\x0b\xee\x5a\x09\x13\x1d\xd3\xd0\xb5\xc6\xb7\x2e\xb3\xe2\x36\x98\x4f\x89\x1c\xd1\xcf\x8d\x2c\x9e\x76\x7d\x84\x09\x3d\xe8\x09\xa1\x17\x16\xc5\x3a\x3d\x33\xe3\xca\x5b\x97\x95\x01\xfa\xe4\xdd\xf6\x54\xc5\x37\xa7\x7c\xb9\xd0\x89\x8f\xf9\x65\xc9\xab\xbc\xc4\x13\x00\x36\x83\x94\x70\x9e\x99\x17\x5d\xb8\xf7\xea\xc8\xeb\x57\xdb\x5a\x52\xfd\x48\x23\x42\x50\xb0\xba\x33\xd7\xea\x8f\xf3\x59\x70\x97\xa3\xca\x3d\x28\xde\x72\x51\xd6\xa7\xa5\x60\x25\x4f\x6b\xb7\x46\xd6\x59\xc3\xeb\x24\x3d\xe8\x37\x2f\x5e\x63\x3f\x6d\xea\x6d\xbb\xd6\x5a\x50\x3f\x33\xab\xaf\x1f\xcf\x7e\x5e\xd4\xaf\x66\x94\x47\x4d\xf5\x46\x3a\xa7\xa4\xd9\xcc\xbc\x9c\xe9\xc5\x42\x72\x10\x8b\x9f\x85\x62\xfb\x5c\xe5\x2e\x54\x58\xc8\x15\x70\x29\xb1\x6c\x6a\x5b\x99\x10\xc1\x80\xbd\xcb\xd5\xef\xa4\x59\x2c\x9d\x67\x31\xef\x0e\x1b\x7f\x3c\xeb\xf9\xe5\x7e\xe6\x3d\x79\x42\x2f\x7a\x06\x5b\x84\xde\x8c\x34\x3c\x0d\xf2\xd6\x75\x26\xa9\x7e\x38\x9e\x05\xcd\x50\x94\x5b\x70\xed\xcd\x93\x67\xf5\x09\x0a\xa7\x37\x77\x69\xf2\xa4\x76\x6b\x4e\x23\x59\xb5\xd8\x86\xd7\x5b\x15\xc2\x8a\xda\xfc\x0a\x50\xc3\x18\xb5\x98\xd6\x0c\xd2\xf3\x33\xe7\xf7\xaa\xbf\x01\x53\xab\xac\xb5\x86\x12\x94\x5a\xa1\xd3\x13\x1d\x9f\x85\x0a\xad\x3d\xdc\x11\xeb\xfe\xeb\x63\x33\x85\xe3\xd9\x9d\x81\x00\x12\xde\x51\xbd\xee\x7f\xa4\xe9\x67\xd0\xef\xe7\xc3\xd9\xac\x1d\x3a\x6c\x09\x76\x9a\x5d\xe9\x1e\x3a\xf6\xcd\xf7\x54\xf6\x36\xa2\x9b\x56\x9c\x92\x52\xb4\xd3\x6e\xe4\x6b\x02\x69\xd7\x06\xe0\x7d\x2f\xe8\x78\x7c\x1d\x75\xde\x35\xc9\x94\x75\xbd\x48\x94\xd6\x58\xfc\xc1\x3f\xe1\xf1\x25\x18\x84\xe1\x3b\xbd\x3f\x1b\x13\x9c\xa3\x07\x6f\xcb\x73\x03\x4b\xbc\x10\x69\x8b\x55\x53\x5e\x00\x09\xd4\x60\x20\x48\xd7\xd7\x54\x2e\x5e\x7c\xba\xc8\x5e\x42\xe9\xd4\xd1\x12\x5f\xdf\x53\x80\xbb\x4e\xbb\x3e\x12\xad\xf1\x32\x35\x9f\x25\x4d\x4c\xf3\x31\xa6\x23\xca\x3d\x40\xe7\x0a\x85\x68\x4f\x4b\x67\x73\x82\x18\x7f\xf2\xa0\x15\x5d\xa2\xc3\xfd\x0e\xd0\xe4\x48\x84\x7d\x4c\xa3\xf4\x07\x12\xeb\xb4\x3f\xf5\xa1\x7a\xe5\x7a\xeb\xca\x23\x39\x87\x32\xd2\xd2\xfa\x9a\x06\xe4\x43\xea\x58\x58\x29\x40\xfc\xa1\xfe\x51\xcf\x12\x08\xea\xbc\xdd\xdb\x39\xfc\x7b\x43\x6e\xcf\x65\x23\x09\x34\xb4\x3e\x99\xfb\xdd\x38\xc9\x3d\x56\x41\x51\xc4\x51\xd7\xc3\x7f\x00\x22\x25\x9c\x82\x97\x1f\xc0\xc2\x3f\x95\x20\x30\xab\xd7\xd4\xbd\x58\xaf\x96\x8b\x79\x59\xe4\xd9\x7f\x0f\x18\x4e\xe1\xbe\x94\x90\xe4\xb2\x39\xed\x6e\x3d\x2f\xdd\x13\x73\x35\x55\x5b\x62\x7f\x9f\x45\x40\x21\x46\x4f\xa5\x22\x3f\x63\x77\xfb\x01\xa0\x08\x75\x8c\xf4\x35\xf1\x13\x1d\xd6\x90\xf3\x2d\x64\xe7\xc1\x68\x4d\xcd\x65\xeb\x47\xe2\x7c\xb2\xaf\x97\xf3\x7a\x59\xe4\x40\xe2\x7a\xbd\xb9\xda\x1f\xa8\xb6\x92\x2c\x6a\x10\xe8\x62\x47\x50\xd2\x4b\x87\x0d\x6b\xc0\xfb\x0a\x46\xc6\x9a\x8a\x13\x33\x8a\xfb\xcb\x53\x49\xbd\xd3\x9c\xe9\xf5\xb2\xe3\x01\xb1\x77\xb3\xca\x02\x27\xe5\x62\x3c\x12\x24\xa2\xd4\x05\x48\xad\x3d\xa4\x83\xae\xc6\xfd\x90\xa3\x23\xad\xda\x1a\xaa\x1b\x21\xb2\x22\xc8\xb7\x35\xb6\x13\x2f\x38\x14\x84\xac\xc2\x8a\xfa\xea\x9c\x8b\x1a\x3f\xfa\xf0\xcf\x50\xea\xf1\xf0\x55\xb2\xb5\x8d\xa5\x0d\x35\x24\xa0\x95\x80\x11\x04\x4d\x04\x0a\x81\x4a\x70\xc2\xef\x35\x78\x75\xda\x1e\x69\xc8\xdb\x97\x73\x39\x47\x7b\x39\x1a\x0e\xea\xaa\xa4\x89\xa3\x4f\x47\xbc\x3d\xdf\x06\x52\x6f\x34\x27\x12\x50\x7c\xd0\xc0\x48\x81\x2d\x15\xac\x24\x42\x7f\x50\xf8\x0d\x51\xbd\x35\xa4\xcf\x50\x89\x96\xb1\xab\x9d\x60\x20\xea\x2e\x2e\xe6\x4c\x08\xb2\x86\x3c\x91\x91\xad\xd3\x37\x0a\xce\x85\x7d\x02\x71\x3c\x71\x57\x7a\x26\x36\x48\x39\x23\xc7\x95\xea\xf2\x3f\xf0\x78\x74\x64\x95\x61\x9f\xd3\x99\x8d\x9b\x1c\xa7\x80\x67\x46\x97\xe4\x58\x5c\x01\x2f\x94\x43\xa7\xbc\x5f\x23\x6e\x81\xc2\x43\x71\xac\xa0\xce\x35\xc9\x58\x4f\xc2\x7a\xb3\xb9\x5e\x41\x0a\x20\x05\x08\xf8\xdd\x56\xc9\x12\xd9\x03\x5c\xa0\x74\x25\x39\xbd\x6b\xfe\xf2\x74\x3d\xef\x77\xb6\x55\xcc\x54\x09\x0d\x4f\x2b\xd2\x02\x5e\x91\x50\x63\x38\x94\x8d\xef\x77\x90\x64\x7f\xd4\xdb\xbc\x2b\x55\x43\xea\x25\x9e\x6a\x48\x46\x7a\xf4\x08\xe9\xca\x4e\x48\x32\x25\x22\x15\x12\x96\xf7\x18\x9a\x4b\x80\xb8\xde\x6e\xae\x50\xc4\x1a\xf5\x3a\x1e\x93\x1e\xf4\x0e\x10\x22\x68\x41\x67\x97\x4e\xd4\xc8\xb3\xe3\x5e\x7d\xd2\x9f\x16\xc6\x08\x63\xc8\x73\x5e\xa0\x4a\x60\x0d\x02\x39\x51\xf3\x01\x3d\xab\xf9\x75\xd6\x5c\x6e\x1c\xaa\x22\x7a\x0e\x0a\xb2\x50\x47\x5c\xd8\xab\xfe\x34\xda\x4b\x2b\x37\xfb\xad\xaa\xf7\x11\x87\x77\x7f\xd9\x50\x3d\xd8\x3a\x4e\x12\x70\x38\x08\x67\x47\x83\x7c\xbc\x25\x6c\x05\x0e\x2c\x9a\x15\xe6\xc1\xd1\xac\x25\xa2\xca\x2a\x81\xad\x62\xdc\x91\x2b\x2c\x5c\x78\x82\x75\xc5\xe9\x68\x86\x07\x72\x5f\xeb\xf5\xf6\x86\x79\xe1\xa7\x7f\x6e\xaf\x17\xc5\x1e\xa1\x4c\xff\x18\x01\x00\x3c\xa2\x65\xec\x29\xfb\x80\x4d\x2b\x20\xf3\x56\x88\xa1\x11\x18\xb1\x78\x41\x03\xad\xb7\x98\xc3\xfc\x33\x80\x82\x38\xc4\xad\x8a\x70\xe0\x07\xe6\x51\xba\x45\xaf\xbc\x66\x6c\x1f\x8b\x38\x7a\x6f\xef\x6a\xf6\x54\xcc\xdf\x43\xeb\xb1\x5b\x7d\x2c\x81\x13\xc9\xb0\x26\x3d\xed\x5a\x69\xb5\x48\x2f\x43\x46\x51\x9b\xea\xce\xc7\x48\x84\x41\x32\x42\x09\x76\x51\xb6\x90\x23\x23\x0f\x52\xb4\x95\xe7\x8d\x9c\x58\x11\xcf\x14\xe2\xcd\xb6\x0b\x94\x09\x28\xb1\x7a\xd9\x33\x19\xaa\x8f\xcc\xe5\xfa\x7e\x43\x6a\xf8\xef\xaf\xd8\x91\x35\x5d\xcc\x34\xc3\xc1\xe3\x5c\xc1\x10\x17\x1b\x02\x88\xe3\x93\xc1\x6a\x8a\x61\x07\x6c\x34\x68\xb7\x77\xd6\x9b\x98\xef\x97\x42\x93\x5b\xe7\x2a\x51\x87\x4b\x70\x6d\x61\xa3\x49\x82\x4c\xe0\x2c\x8d\xca\x65\x5e\xcf\x0b\x74\xc4\xe1\x2a\xb1\x11\x67\xce\xa3\x16\xa6\xe8\x2d\xe1\x16\xfe\x79\x45\x4d\xfe\xba\xf8\x36\xc0\x65\xb7\x1e\x2b\xb6\x94\x98\x5c\x47\xd4\x54\x19\x81\x56\x7d\xd6\xf6\x0a\x68\xdf\x5e\x9d\x6d\x67\x32\xc6\xe8\x5e\x22\x3f\x8f\x44\x00\x12\x68\x89\xdb\xaa\x8d\x52\x2b\xde\xa8\xc3\x69\x32\xa1\x89\xac\x35\x37\x55\xb9\xcc\xcd\x8c\x97\x2e\x51\x6b\xfb\x03\x47\x96\xa6\xec\x19\x08\xcf\x68\x29\x0e\x47\x43\x6a\x85\xdb\x21\x3f\xed\x24\xd6\x1a\xb0\x47\x08\xdd\x5e\xc2\xdc\x6f\x70\x39\x19\x25\x12\x93\x73\x0e\x2c\x7b\x7a\x00\x85\x41\xd6\x2f\x29\x3e\x68\xbb\x83\x03\xdd\x29\x72\x9c\x37\x4c\xda\x66\xac\x51\x90\x72\x42\x04\x32\xbd\x3e\xa4\x59\x3a\x6f\x73\xd0\x70\x84\x6a\xa5\x12\xb7\x93\x1f\x0f\x0b\x4d\x88\xa6\x82\x10\x7b\xe3\x42\x4f\xd4\xbc\x0d\xd0\xae\x7c\xad\x0a\x4f\xd4\xe1\x71\x79\x10\x1b\x8f\xaa\x18\x62\x08\x47\x29\xf9\xf2\xfd\x44\xdf\x71\xd4\x06\xbc\x8a\x08\x16\x14\xcc\xba\x51\x2b\x98\x02\xe9\x58\x65\x79\x13\x8c\xef\x6d\xa3\x61\xe7\xeb\x45\xfc\x10\xec\x31\xb9\x14\x96\x08\x5b\xba\x73\xc7\x3a\xc0\x2e\x03\xd4\x60\x40\x4c\xd1\xc8\x16\x50\x09\xde\xba\x3f\x16\x37\xe4\xe1\x22\xa2\xf7\x24\xe4\xf1\x19\xa9\x77\xe7\xac\x3d\x1a\xd1\xe4\x5c\x36\xab\xb2\x60\x0d\x06\xdb\x87\x38\x15\x80\xe9\x60\x9d\xc0\xf5\xbd\xc1\xaf\x0d\x36\x81\x54\x82\xb5\xb5\x6f\xdc\x74\xce\x75\x28\xda\xb8\x45\x21\x2f\x5a\x04\x71\xfc\x16\x7f\x33\xc3\x1a\x4e\xd3\x1e\x2a\xc8\x28\x8b\xc7\xf1\x06\x69\x46\xb0\xf1\x4a\x06\x09\x21\x1d\x4f\xe6\x38\x97\x35\x11\x98\xd0\x82\xcb\x08\x14\x49\x01\x32\x17\x05\x31\x23\x0b\xa9\xb3\x1e\xdd\x46\x80\x57\x71\x4a\x1e\x82\xa0\x06\xd1\xd1\x82\x9b\xfd\x01\xcf\x01\x4f\x8c\x08\x6e\x0f\x20\xdc\x0e\x6b\x79\x5a\xd4\x07\x24\xae\xa0\x58\xa0\xd3\x69\x11\x5d\xdc\x68\x82\x98\x99\x5d\x5f\x04\xc3\x45\x0e\x21\xf1\x8e\xf6\x14\x3c\x8d\x7c\x85\x84\x1a\x2c\xca\xd8\x43\x64\x30\x3b\x24\x1f\x60\x78\x59\x69\xb0\x36\xab\x7d\xe0\xf1\xec\xf4\xe3\xed\xf0\xf3\xf8\xb3\x33\xc4\x4c\x9b\x70\x70\x3f\xf6\xf6\x66\x52\x3d\xbc\x87\xdc\xdd\x83\xea\xb0\xc3\xd8\x2d\xb6\xac\xa0\x60\x50\x08\xc9\xd8\xd1\x35\x90\xbd\x85\xe4\x00\x0c\x24\xaa\x04\xc9\x26\x97\xf0\xea\x4f\xd2\xb4\x41\x2e\xb9\x90\x7d\x7d\x95\x40\x95\x05\xd8\xa0\x82\x07\xc3\x39\x81\x08\xe2\xb3\xbe\xaa\xcb\x7e\x97\x8e\x3c\xce\x29\x72\x7f\xb9\x5c\xe4\x7c\x3c\x65\xe0\x85\xb4\x11\x39\xe6\x03\xe7\x2b\xf8\x0c\xc2\x43\x4c\x00\x94\xf1\xa2\x5d\x03\xd9\x10\xb8\x43\x50\x09\x92\x4d\x2e\xe1\xd5\x9f\x24\xb8\xb1\xe6\x43\xa2\x39\x5d\xf8\xa5\xd8\x5b\x4a\xb6\x8e\xb0\x75\x19\xb4\x84\x97\xb7\x5e\x61\x79\xb2\x15\xdb\x7a\x5b\xe6\x29\x8c\x27\xdc\x95\x9b\x2a\x8a\x27\x93\xea\xe2\xf0\x2b\x58\xa8\x21\x08\xf3\xe8\xba\xf7\x76\x8b\xd9\x51\x18\x1b\xe6\x7a\x8d\x2c\xf8\x5a\x86\x4f\x3f\x59\x27\x1e\x39\x3d\xf4\xa6\x53\x50\x80\x43\x02\x99\x2a\x47\xf2\xc7\x23\xd3\x4c\x05\x36\x35\x18\xef\xf8\x28\x86\x82\x47\x3d\x67\xdd\x04\xb3\x27\x74\x33\x50\x15\x14\x96\xc0\x65\xda\x46\xd3\x3e\x68\xf4\xc5\x91\x12\x60\x79\xac\xe3\x71\x27\x16\xcb\x47\x57\x4c\x3c\xc1\xd9\x1f\x1f\xbe\x29\xac\x7f\x52\x5c\xf3\xda\x2d\xe9\xb1\x77\x6e\x9c\x2f\xaf\xbe\xc2\xd0\x21\x75\x30\xdb\x80\xc8\x4e\x96\x6b\x20\x1b\x90\x52\x43\x23\xb6\xe1\xb8\x08\xb5\xeb\xfe\x77\x12\xc5\xf9\x1f\xe1\x81\x4e\x7d\xef\xc7\x24\x36\x35\xb3\xee\x0c\x48\x47\x03\x9a\x92\x9e\xfe\x18\x71\x03\xde\x6d\x93\x61\x8e\x6b\x1c\xc2\x50\xfd\xc2\xd6\x33\x49\x4b\x1b\x82\x26\xbc\x3d\x07\x9a\x26\xf5\xf2\xfb\xb2\xed\x6a\x80\xcb\x38\x69\xd6\xf8\xd1\xc6\x33\xf1\x0b\x0d\xf8\x54\xa9\x5d\x6d\xa4\xd8\xed\x53\xca\x51\xbf\x8e\x65\xc6\x6f\xeb\x5d\x95\xb5\x5d\x0c\x2a\xee\x6e\x13\xc2\x49\x81\xc8\x7d\x62\x8d\x1c\xa8\xef\xda\x14\x43\x96\x54\xab\x82\x50\x5f\x2d\xdd\x10\x8a\x5e\x2a\x87\xc1\xfd\x48\xb5\xf8\xb6\x7c\x29\x7b\x05\x20\x1b\xa2\x7e\xaf\x21\x87\x43\x49\x65\xb4\xaf\x85\x90\x27\x42\xd8\xf8\x34\x7c\x81\x13\xd1\xe3\x55\xb5\x2f\xc3\x75\x29\x47\x70\x1c\x71\x37\xb9\x12\xe6\x7c\x29\x7b\xd7\x23\x76\x6a\x41\x32\x2b\x2a\xa4\xb2\x1c\x00\xbd\x84\xb2\xcf\x87\xe5\xd8\xeb\x2b\x96\x48\x99\xb8\xe3\x13\xeb\x91\x2b\xa1\xfa\xcb\xfd\x46\x47\x65\x48\x66\x45\x85\x54\x96\x83\x55\x13\x71\xcd\x4e\xac\x33\x12\x97\x43\x37\x51\x4d\x43\xe0\xef\x5d\xcd\x9d\x92\x58\xdc\x07\xae\xe2\x9c\x3a\x2d\x84\xd6\xde\xf0\x57\xc1\x68\x0e\xf3\x70\xbf\xa3\xb1\xd6\xc4\xd4\x43\x59\x6c\x91\xc3\x0e\xc4\x8c\x00\xd0\xc8\xaf\x12\x57\x65\x17\x6c\xb7\x9e\x8c\xfc\xb5\xd1\xa7\xd1\x87\xbb\xeb\xe5\xd0\x7e\x0e\xec\x23\x95\xe1\xa9\x97\x5a\x88\x13\x9a\xd4\x38\x12\xb9\xd1\x90\x58\x19\xd8\x07\xcd\x50\x08\x48\x39\x8f\x78\xb6\x9c\x24\xd9\x84\x17\x20\x15\x07\x36\x6e\xf1\xa0\x78\x48\xaa\x23\x27\xf0\x19\x7f\xf3\xb0\xf8\x81\x14\x47\xdb\x5b\x2e\x8b\x2d\x72\x80\x86\x7f\x52\x54\x72\x49\xa4\xf6\xb5\xbf\xb6\xd2\x8d\x5a\xed\xaf\x3d\x0f\xba\x7f\x3d\x61\x28\x9e\x60\xc2\x88\x94\xee\xf3\x1c\x34\x11\xe7\x5a\xda\x2f\x27\x03\xf6\x7c\xf4\x8f\x97\xb8\xc2\x42\x36\x89\x70\x7a\x20\xb2\x84\x80\x7c\x84\xc4\x1a\x08\xde\x0f\x47\xd8\xd0\x19\xc3\x01\x04\x9b\xbe\xc8\xe9\xa1\xb0\x64\x16\xc6\x47\x54\x69\x0a\xf8\x7e\xb3\x5e\x2e\xbc\xc1\x5e\x2b\x5e\x20\xa5\x6e\x1c\x78\x62\x70\xa0\xc7\xb6\x1b\xf0\x3e\x9e\x8a\x3c\xbc\xdf\x17\x86\x6d\xec\xe7\x42\x10\xf0\x2f\x43\xaa\x2e\x45\x09\xae\xe7\x6a\xc3\xde\xb1\x17\x36\x19\x4a\xf8\xb2\x92\x84\x72\x8d\x70\x8b\x8e\x4b\x49\xf8\xb8\xb9\x62\xa8\x15\x82\xfe\x20\xf2\x74\x5b\x8b\xc5\x7c\xb2\xc8\xc0\x9e\x7c\x22\x0d\x3d\xd5\x3a\x59\xbc\xa4\xf7\x3e\x3e\xa8\x65\x70\x6b\xe9\x22\xd2\x30\xb8\x8b\x7b\x29\x17\x70\x48\x1b\xb6\x29\xf3\x20\x03\x60\x23\xcd\xf8\x9d\x17\x26\xc4\x33\xde\x3b\x2f\xd2\xd9\x2c\x8b\xec\x7e\x55\xc8\x9a\x71\xe4\x71\xba\x71\x8a\x25\xe0\xab\xdb\xb5\xb4\xea\xe5\x98\x7a\x9a\xa5\x15\x60\xa2\x75\x37\x9a\xd5\x94\xfb\xfc\xd3\xce\x64\xac\x0e\x8c\xd6\xa7\x9a\x09\x60\x45\x19\xf5\xc9\x61\x49\x0f\xf3\x36\x04\x96\x8a\x1d\xc4\x00\x7c\xe9\x41\x85\x1a\xed\xe8\x42\x34\xfb\x0d\xc9\xfc\x3e\x4d\x81\xcb\x70\x18\xec\x4a\xe4\x59\x58\xfa\x73\x21\x65\x9c\xe6\x3a\xed\x3b\x41\x82\x26\x08\x50\x38\x9b\x7f\xdf\xfd\xd8\x8c\xf7\xbd\xad\xe7\xcf\x1f\x4f\x67\xf3\x20\xb1\x56\x00\xef\x65\x64\x51\xeb\x87\xa1\x8f\xe9\xef\x6d\x21\xed\xd4\x7b\x37\x80\x75\x74\x74\xa9\xd6\x4c\xd5\xb2\x82\x91\xf5\x9a\xb9\x3e\x09\x06\xf8\xed\x97\xc1\xfe\xc6\xc3\xf9\x88\x1a\xad\x50\x6c\xc9\xa3\x4c\x9f\xf7\xda\xfb\x9a\x65\xae\xc2\x15\x4a\x97\x65\xfe\x93\x04\x64\x15\x42\xe2\xec\x3c\x7e\x5c\x41\x97\x5e\x55\xdc\x02\x15\x3b\x67\xd8\x40\x78\xb4\x92\x2c\x5d\x1a\x55\xc1\x22\x24\xc9\xab\xf1\x89\x44\x06\x88\xdd\x70\xba\xe4\x7a\x85\xf2\x07\x16\xc9\xf9\xa9\xfd\xdc\x7d\x46\x2f\xbc\x64\x4c\x1a\x3d\x0c\x28\xc4\xad\x3a\xff\x33\x20\x92\x85\xfe\x13\x72\x9e\xe5\x61\xad\x15\x61\xcd\xe7\x32\x47\x0a\x52\x2a\x36\x16\x2f\x2a\xae\x9e\x42\x5d\x05\x3c\xf3\xd2\x0f\x58\xbc\x2a\xed\x7a\xea\x3f\x38\x18\x88\x6e\xfd\xd4\x7d\x6c\x4e\x26\xb8\x31\x5d\x2c\xb1\xdb\xe0\xad\xb8\xe2\xb4\x32\xa7\x17\x58\x07\x82\xcf\xee\xd2\x11\x63\xbf\x9f\x53\x55\x11\xd8\x78\x0c\x2a\xa1\xb1\x1e\xca\x15\xb8\x44\xdd\x06\x10\x7f\xd7\x9e\xc0\x2d\xe6\x97\x86\x1b\xbf\xf5\x07\x3f\xfa\x5f\x80\xd8\xc8\x3e\x70\x97\xad\xd8\xc8\xb1\x20\x5c\xb6\xb3\xdb\x4e\x0b\xf9\x68\xb2\x50\x29\x42\xfc\x83\x68\xce\x27\x0c\x78\xfa\xd9\x41\xd8\x0f\x75\xa1\xa0\xe2\x40\x5b\x6d\x0f\x0e\x3b\xef\x98\xb1\x6d\x2f\x93\xde\x33\x32\x32\xac\x0d\x19\xa7\x0d\x1d\x23\xc0\x16\xb0\x03\xe2\x5f\xea\x15\x42\xf7\xc6\xa1\x9b\x14\xe6\xe4\xe2\xeb\xa7\xec\x15\xa4\x45\xe8\x1b\xc6\x0c\xfc\x7d\xd9\x74\xa9\xb1\x08\xa0\x08\xbd\x84\x0d\x60\x20\x26\xf6\xf4\x36\x18\x6c\x57\x3b\xb3\x25\x28\x7e\x48\x8c\x25\x44\xc5\xfb\xd7\x69\x37\x90\xf8\x06\xf0\x85\x47\x40\xd2\x60\x34\xcf\xe8\x30\x42\xf6\xda\xb7\xd3\x01\x2e\x14\x14\xcf\xa6\x90\xe1\xa9\x72\x70\x9a\x5f\xa3\x2f\xa1\xed\x04\xda\xe2\x7f\xcb\x58\x97\x7d\xf8\xa5\xc5\x31\x6d\x19\x89\xbe\xf8\x4a\x66\xe6\xe3\x59\x2c\x18\xa6\xb7\x12\xfd\x9d\xc1\x77\xa4\x12\xb9\x07\x93\x4c\x02\x0a\x3a\x23\x0d\x9a\xa1\x12\x5b\x81\xba\x19\x57\xe9\x61\x44\xfe\xf7\x50\xc8\x2a\xb2\x65\x02\x4b\x45\xc4\xef\xa8\x2e\x58\xa1\x6e\xf0\x5b\xe1\xa0\xee\xb4\xc7\xc0\x68\xf2\xf4\xfb\x4f\x9d\xad\x56\x93\xa9\x2a\x02\x8d\x93\xa0\xcd\x74\xa7\xa0\x32\xa7\x95\x6f\x3d\x3e\xa6\xd5\x1a\xa9\x4c\x8d\xe4\xc1\xa9\x0e\xca\xd9\x59\xaa\x91\x00\x09\x5e\x6e\x82\xa3\x2b\xea\x43\xf4\xef\xc7\x11\x5d\x52\xb3\x6a\x55\x59\x31\x95\xe4\x01\x27\xd1\xe5\xd8\x22\x40\x12\xcd\x60\xc9\x52\xb4\x61\x13\x19\x91\xf4\xd0\x54\xee\x1e\xf3\xfb\x88\xe9\xae\x6a\x3e\x2b\x89\xc6\x0c\xa2\x38\x08\x9e\x0d\x47\xe5\xa4\x8c\x22\x27\xc0\xcd\xb9\x61\xfe\xb8\x69\x4d\xb5\x3f\xfd\x60\xdb\xf5\x52\x93\x70\x12\x7d\x82\xb6\x64\x71\x5b\x3e\x3f\xf9\x5e\x15\x35\xc4\x64\xae\xbe\x81\x06\x2c\x95\x4a\xd7\xc4\x2c\xd6\x96\x88\x65\x65\x98\xa9\xaa\xb0\x96\xa5\x7a\xf1\x03\xf1\xae\x17\x65\x5d\xcf\xcf\x8d\x0e\xf7\xce\xf6\xcd\x56\x6e\x4e\xc7\xde\x6a\xb9\x59\xcf\x0b\x0a\x83\x82\x2f\xe5\x97\x8e\xa6\xde\x2c\xc6\x26\x36\xd9\xa6\xae\x36\xce\xce\xa7\x3b\xe0\x14\x42\x46\x75\x60\x20\x74\x8b\x04\x8d\x19\xd9\x67\x8b\xa2\x30\xca\x3a\x08\x68\xee\x86\x23\xfc\xa3\x5b\x20\xea\xf1\xbe\xe9\x62\x12\x55\x5d\xa5\xde\xa8\x0a\xfc\xec\xd2\xb4\x98\x82\x3b\xa7\x9e\xba\x3d\x7a\x61\xb3\x9c\xec\x1c\xd3\xc0\x9d\x1f\x39\x3c\xa1\xbd\xf6\xc0\x6b\x39\x35\x73\xc4\xa7\xac\x7e\x62\x11\x59\x46\xa6\x53\xf4\xde\x5e\xba\xd8\x4c\x64\x82\x69\x60\x6d\x00\x6c\x3f\x5d\x1b\x22\xb1\xf2\x53\x76\x6c\x55\xc6\xd2\xb2\xeb\x17\x78\xfb\x7e\x06\x60\x9b\x98\xc4\x2f\x57\x53\x8b\x9b\xd8\x33\xae\xc3\x6f\xc0\x4b\xda\x30\xe5\xe0\xc5\xce\xa0\x47\x8f\x2d\xa3\x3a\x53\x5d\x1c\x33\x47\x37\x7f\x2c\x9a\x32\x9c\x3c\x4f\xcc\x4e\xdb\x45\x54\x94\x1e\xe9\x44\x03\x77\x07\x12\x11\x1f\x1f\xd7\xa3\x94\x82\xaf\xa4\xc9\x60\x50\xaf\x1b\xd4\xf5\x71\xc5\x60\x86\x95\x96\x8b\xe1\xec\xc1\x02\xce\xa4\x20\x83\xbe\x05\xa8\x3c\x62\xa6\x81\xb7\x31\xfe\x67\xb1\x3b\xe9\x05\x33\x7c\xde\xfd\x91\x22\xda\x65\x01\x97\x40\x05\x87\xa8\x19\x52\x8d\x0f\x23\xb6\xc6\x2b\x7a\xfb\x2d\x4e\xe0\x30\xa4\x25\x63\xe6\x2b\xb8\xc5\xa4\x54\x46\xd3\xd2\x86\x90\xdc\x69\xfa\x08\xe2\x2c\x37\x03\xb0\xf1\xc2\x84\x51\x1f\x3c\xd9\xbf\x26\x68\x8d\x71\xcd\x74\xac\x6d\x49\x7c\xbd\x30\xe5\x3c\xca\xb5\xd6\xcd\x73\x8d\x6f\xa8\xdb\x8d\x55\xc7\x75\x98\x09\x37\x2c\x1f\x24\x6d\x68\x2a\x9b\xfb\x83\xba\xce\xe1\x2c\x6d\x3c\xea\x6a\x48\x99\x24\xb3\xa3\x62\x2a\xcc\x83\x0a\xbb\xbe\xe3\x66\x86\xb6\xb5\x51\xf4\xde\x6e\x3c\x9d\xce\xdd\xe0\xda\x45\x8a\x36\xeb\xe8\x7e\xf3\x54\x74\xd5\x5a\x53\x33\x36\x1d\x24\x20\x09\xf4\xb7\x81\xed\x7e\x6c\xbf\x73\x55\x7f\x31\x64\x7c\xd6\x81\x89\x7a\x38\x3e\x34\xb2\xb8\xcd\xd3\xc0\x2e\xd4\x8c\xed\x90\x50\x42\xa3\x7c\x84\xa3\xaa\x64\x3e\x60\x59\x9c\xda\x0a\x83\xcc\xf5\xa1\xb2\x6c\x73\xcb\x5c\x1a\xc6\xc1\xb4\x0e\x5a\x7f\x57\xeb\xb7\x66\xd4\x3a\x5f\x2a\xb1\xdc\xad\x77\xf0\x47\xfa\x73\x4d\x46\x6a\x93\xdc\x63\xa9\xb4\x3c\xbf\x13\xbe\x49\xcd\x31\x0b\x59\x25\xbe\x22\x61\x56\x85\x98\xf9\xda\x60\x99\x3f\xe7\x4f\x63\x73\x33\x63\x4b\xe3\x4b\xd1\xa2\xb1\x9a\x1b\x95\xfd\x2c\xa1\x00\x62\x40\x51\x0d\xe0\xd5\xd1\x29\x34\xcf\x8b\xd8\xe6\x3a\xa7\xb1\xc2\x19\xf7\xe9\xe9\x03\x0a\x35\x29\x17\xe8\x5b\x3c\x4c\xf4\x00\xf4\xca\x01\x54\x74\x12\x15\x0e\x33\x0d\xbc\xd1\x6a\xeb\xce\x57\xb3\xf0\x7c\xce\x01\xe1\xde\x75\xd8\x5d\x73\x58\xea\x5c\x58\x9b\x3b\x85\xf5\x4f\x87\x43\xb9\x6b\x2e\xdb\xa3\x51\xa2\x26\x0f\xe8\x9b\xf8\xaa\x4f\xa2\x70\xac\x28\xfa\x5c\x25\xcb\x7b\x8d\x29\x53\xc9\x70\xa0\xb7\x39\x10\xc4\x55\x2e\x1e\xc1\x59\xeb\x94\xf4\xe6\x4f\xa0\xb0\xc1\x08\xdb\x37\xcd\x79\xcc\x79\x97\x15\xb1\x67\xc7\x91\x79\x71\x58\x3e\x2d\x22\x14\x1b\x8d\x7c\x51\xc4\x90\xe3\xbe\xd5\xde\x38\x22\xb2\xf9\xf1\x54\x3f\x65\xaf\x20\x2d\x9d\xad\x7d\x8b\x82\xa9\x8d\x80\x64\xbb\x22\x27\xb5\x90\x31\xdf\xf2\x78\x2e\x64\xab\x88\x6f\x42\xac\xbe\x53\x6d\xb2\x10\xae\x68\x01\x7a\x1f\x09\xb6\x07\x17\x38\xc1\x72\x81\xe5\x51\xb6\xe9\xaa\x6e\x77\xf3\x42\xae\x86\x3d\xd6\xe4\x50\x72\x2e\x2d\x45\x57\xf7\x06\x4f\xd7\x6d\x21\xd8\xf8\xe0\x54\xc1\xc7\xde\x35\x61\xe7\xd1\x6b\xb1\x95\x8e\x31\xd6\xe2\x6b\xa6\x6c\x73\xba\x89\x81\xea\x4f\x7e\x30\xf1\x7b\xbb\xc2\xb8\x2c\x14\xe1\xe0\x8b\xa7\x0e\x61\xcb\x97\x0f\x8c\xd8\xc7\x56\xee\x14\xdf\xd7\x3f\x6a\x59\x41\x4f\xb3\x19\xd1\x71\x43\x59\x22\xbd\x67\xbf\x94\x91\xef\xa2\x4b\x8c\x03\x35\x21\x4c\xcd\x4c\xf4\xb4\x05\x96\x18\x3f\xfa\x99\xc6\x26\x1c\xdf\xbc\xd9\xc9\xd8\xbd\xbd\x09\x34\x93\x7c\xca\x64\x44\x16\xa0\xc9\x0a\x90\xf8\xe0\x81\xe6\x07\x41\xb2\xbd\xd5\x15\x68\x5e\x28\xdb\x9e\xb0\x94\xe2\xd4\x52\x30\x91\x96\xec\xd8\x1e\x07\xdf\xea\xef\x35\x23\x9a\x80\xeb\x4b\x18\xdd\x00\xc1\xf5\x64\xa1\x8b\xc4\x58\x05\x4d\x63\x59\xe8\x1c\x37\x32\x1b\x1b\xd5\xb6\x80\x39\xa9\xa9\xb6\x74\x18\xc3\x50\x12\xe0\xc4\x52\xec\x47\x10\x83\x0d\x7d\x5f\xad\x35\xd2\x5b\x1b\x4a\x9c\x58\x42\x3c\x70\x4f\xb1\x9e\x76\x20\x9f\xd9\x1c\xc5\x32\x26\x5a\xc4\xe6\xf9\x49\xfd\xa0\x34\x45\xb7\x17\x0c\x00\x8b\x74\x7a\x29\x96\x00\x30\x0c\x13\x10\xd7\xc6\x5b\x7f\x9e\xc0\x9e\xda\x9a\x59\x5b\x45\xc0\x42\x11\x41\x42\x76\x10\x05\x54\x3c\x93\xac\xf3\x99\x96\x8a\x75\xde\x78\x2a\x19\xa0\x46\x00\x09\x67\x14\x9d\x88\x0b\x9b\xd2\x47\x49\x50\xe2\xe1\xe2\x09\x87\x69\x94\x30\x58\x90\xb0\xc6\x13\xc1\xa2\x18\x61\x80\x48\xaf\x24\xa9\x41\xcd\x2c\xc8\xce\xa7\x18\xa9\xe2\x8b\x83\xba\xb7\xe7\x33\x1d\x47\x87\x05\x70\xd8\xbe\xf5\xe6\x91\x61\xd9\x69\xce\x37\x23\x13\x71\x82\x8d\xa7\x02\x28\xd4\x97\x44\xcd\x8a\x8a\xcb\x31\x7a\x8c\x54\x33\x55\xdf\xaa\x8c\x43\x5c\x19\xaa\xcc\x4e\x3a\x58\x74\xcd\xdf\x45\xff\xe9\x27\x3a\x0d\x8c\x0c\x48\xb8\xc1\x44\xd7\x5b\x64\x6b\xe7\x32\xfb\x69\x57\x01\xc8\x5a\x41\xee\x29\x15\x85\x3e\x87\xfb\x8b\x4e\x52\x93\xd3\x2c\xa8\x80\x4a\x52\x43\xde\xb4\xa7\x19\xb9\xbb\xd9\xf5\xe8\xa9\x63\x87\x4d\xc3\x93\x0e\x5d\xd9\x30\x47\xda\x9b\x53\x2f\x52\x8d\x8f\x21\xc3\xb2\x63\xe2\x19\x07\xf0\x78\x05\x4e\x27\xf7\x3a\x48\xaf\xd4\x5e\x78\x96\xa3\xe7\xdb\xa5\x33\xc2\x05\x4b\xcf\x84\xd3\x73\xe7\xac\xec\x70\x07\x21\xb3\xb9\x7b\x0e\x3d\xaf\xf0\x08\x5b\x25\xeb\x43\xbc\x0c\xd4\x29\x64\x43\xa3\x7b\x6a\xec\x10\x07\x3b\x41\xe1\xdf\xd3\xfe\x4e\x7e\xe5\xa6\xae\xb4\x0a\xc7\xf3\xc5\xc6\x02\x22\x85\x0d\x95\x25\xa3\xf4\xc1\x17\x07\xd0\x15\xa1\x82\x30\xcb\xc8\x4f\x3b\xb6\x91\xd8\xb3\x51\xb7\xc0\x61\x8f\x13\x4e\x23\xb3\x79\x8d\x2f\xe4\xe7\x68\xef\xa0\x00\xb2\x19\x25\xe1\x7f\xc7\x96\x95\x82\x7c\x2a\x03\x70\x56\xdf\xcf\xb2\x6f\x22\xf2\x62\xe2\xa9\x45\x4a\x2e\x20\xe0\x7e\xd2\xf6\xac\x3b\xe4\x61\x5d\xe3\x31\x04\xa0\xb4\xbc\x5f\xf7\x2a\xb3\xfd\x94\xd4\x99\x74\x67\xc2\xf1\x50\x0b\x25\x7e\x6f\xcf\xf5\xe3\x49\x0a\x0f\xb9\x47\x8d\xf1\xd6\x34\x0a\x9e\x63\xf6\x5a\xc5\x6d\xf4\x93\x58\x4d\x59\x37\x59\xd0\xaa\x11\x5a\x24\x85\xd0\x86\xd2\x06\x11\x4b\xc6\x21\x2c\x16\xd8\x53\xc7\x2e\x9a\x73\x58\xc9\xfa\xf3\x60\x5c\x90\x7a\xa2\x6a\x54\x33\x17\x59\xa6\xa5\xe9\xb7\x30\xdf\x29\x9a\x3a\x9f\x5d\x7b\xbb\x76\x6a\x7a\x01\x13\xe5\x52\x8a\xe9\xf6\x27\xf5\xcb\x6c\xbd\x4f\x7b\x3f\xef\xbd\xee\x3d\xf5\x9e\x7b\x9f\xf7\x7e\x09\x29\xea\xb0\x41\xfd\xfc\xed\xfe\xd2\xf9\x51\x0c\x14\x59\xd0\x04\x0f\xef\xb9\x02\x8a\xde\xa6\xfc\x34\x96\x4d\x46\xc2\xa2\x7e\x65\x3f\xa3\xd8\x6f\x1f\xe2\x29\xb7\xb9\xa7\x4b\x08\x51\x67\x3c\x6a\x15\x19\x1f\xfb\xbb\xf6\x75\x50\x66\x0b\x71\x2c\xe0\x2a\x89\x9a\x58\x4f\xaf\x44\xd7\xea\x7b\x05\x4e\x63\x02\x0c\x42\x32\x19\x82\x9a\xe3\xe1\x69\xe9\xfd\xf8\xb0\xf8\xb3\xc9\xb2\xad\xa6\xdc\x36\xb9\x54\x4b\x12\x97\xdb\x41\x9a\x98\x25\xea\xc6\x66\x61\x1b\x3f\x55\x1f\xd9\xf9\x14\xcf\xee\x8b\x96\xaa\xfa\xe7\x8a\xab\xca\x63\x09\x3b\x74\x8e\x64\xec\x66\x2f\xd5\x10\x09\xd0\xb8\xf3\xe7\xf2\x85\x97\x88\x5f\x87\x70\x18\x2f\xe4\x2e\x61\x6f\xa8\xc8\xad\xa1\x82\x23\xd2\x2a\xac\x08\xab\x2c\x2f\xae\x7e\xa8\x61\x88\x0c\x7b\x25\x81\x33\xa4\x30\x00\x58\x71\x4b\x17\xb9\x0e\x99\x55\x93\x58\x03\xe1\xf9\x8e\x23\xff\xa1\x86\x6a\x13\xad\x5b\x73\xc0\xa1\x1a\xb7\xd7\xd6\x2c\xe7\x7e\xa3\x46\xd9\xbb\xc3\x14\x7f\x41\xae\x21\xf6\x0f\x31\xb8\xc9\x18\xe0\x3e\x69\x69\x10\x82\xe7\x37\xf6\x64\xd4\x54\x27\x60\xd3\x78\x52\x96\x15\xbd\x13\xd9\x73\x2c\x64\x03\x0d\x46\xf4\x2e\x65\xf6\xa2\x13\x00\x9d\x41\xd8\x2b\x05\x94\x9c\xee\x8b\x32\xff\xca\x09\x83\xc7\x4f\x13\xed\x47\x68\xfe\xfc\xc2\x13\x0d\xa4\x6a\xf8\x53\x11\xa1\x3b\x48\x80\x26\x9c\x71\xaf\xc2\x6f\x10\xe0\x89\x5b\x56\xbd\xa5\x1d\x99\x3d\x65\x12\x74\xf7\x93\xd9\xeb\x62\x36\x9d\x37\x3d\xdf\xf4\xd5\xa6\x97\x9b\x3a\xad\x5a\x86\xd1\x8c\x54\xf4\x14\x5f\x4f\x24\x61\xf5\xdb\x28\xe5\xde\x1d\x1e\xaa\x53\x35\x1d\xed\x1d\xc6\xeb\x03\x89\x67\x73\x9e\x0e\x42\x61\xf9\xc8\x36\x8a\x67\x36\x55\x3a\x08\x1f\xe4\x6f\x76\x39\xab\x47\x26\x2f\x4b\x8a\x78\xc0\x97\x67\x99\x56\xe7\xca\x77\x71\x16\x36\x34\x12\x25\xfb\x79\x4a\xc6\xff\x5d\x0c\x99\x72\x40\x93\x3c\xb1\x0c\x4a\x63\xc9\x40\xe6\x59\x89\x53\x3a\x77\x08\xd8\xd1\x03\xa8\xe6\x1a\x16\xc0\xad\xe8\x32\xbd\xec\x34\x48\xb3\x86\xdb\x27\x31\x16\xed\xa8\xb4\xa0\x4d\x9e\x16\x2c\xc5\xd8\xc1\x8a\x99\x99\xa9\x2e\x68\x71\xb9\x2b\x54\xbb\xdd\x52\x03\x85\x24\x49\xde\x69\xae\x85\x9a\x9b\xac\x98\xa9\x12\x19\x49\xb2\x02\x41\x14\xf7\x4a\x35\x76\xfc\x84\xfa\xe6\xb6\x01\x4e\x1b\xcb\x81\x5b\xdc\xde\xc7\x83\xbc\xdd\x5c\x19\x09\x58\x1c\xa5\x43\x8a\x95\x4f\xc4\xb4\xab\x71\xe7\xda\x83\x9c\x31\x36\x1b\x24\x9b\x53\xf9\xf2\xee\x16\x74\x37\xf3\x57\x2d\x18\x31\x4c\x60\xea\x09\xa2\x35\x2b\x57\xd5\x01\x74\x81\xb7\x16\x72\x3a\x9a\x74\xb1\xb5\xc1\x6c\x66\x8a\x65\x8e\xcc\xeb\x1a\xc0\x46\x0c\xc8\xb0\xb1\x27\x4b\x29\x8c\x37\x50\x53\xe3\x28\x0c\x1b\x18\xae\x3a\x55\x37\x63\x33\x1d\x3c\x56\xe6\x2c\x6c\xdc\x85\x05\xdc\xfc\x5c\x01\xc4\x15\x90\xb6\x2a\x96\x28\xd4\x62\x9e\x28\x01\xc9\x70\x46\x47\x90\xa6\x31\x45\x6b\x51\x41\x10\x0a\x97\x6b\xff\x81\x67\x90\x87\x8a\xde\x34\xfe\x99\x2e\xb1\xa2\xab\x61\x97\xe6\x00\x13\x06\xe3\xac\x50\x44\xdb\x27\x96\xea\x27\x8a\x60\xe3\x08\x11\x0c\xb4\x7e\x4a\x76\xda\x59\x13\x65\x02\xc3\x01\x21\x7a\xb6\x20\x3e\xcc\x1d\x89\xae\xac\x95\x0a\x88\x16\x5b\x19\xda\x77\x16\xb1\xf0\xbd\x98\x23\x9e\xc0\x15\x06\xd0\x12\xb3\x99\xdb\x5e\xc9\x28\x1f\xe8\x2b\x43\x53\x12\x60\x73\xcd\xea\x89\x9d\x07\xa4\xd2\xbd\x42\x94\xfe\x02\xed\xb1\x77\x01\x49\x46\x04\x3c\x68\x9c\x51\x40\xd2\x25\x30\x8b\xa8\x8d\xe6\xf4\xb0\xc9\xb8\x9a\xde\x60\x10\xc6\x0e\xc4\x10\xa6\xb4\xd4\xbe\x7e\x85\x0d\x8e\xf2\x83\x36\xcc\xc8\x5a\x93\x79\xaa\xce\x78\x7c\x5f\xa3\xca\x95\x37\x34\x10\x7b\xc5\x08\xc4\x9f\xfd\x92\x28\xa2\xd4\xd5\x37\x3c\x4b\x33\x1d\xee\xe2\x27\x80\x89\xca\x0f\x32\x91\xe8\xec\x47\x53\x12\x88\xa3\x1b\x16\x14\x6a\xe0\xb8\x8d\x6b\x43\xc1\x40\x67\xbd\x79\x2a\x35\x3b\x5f\x9f\x59\x0d\x54\x49\x53\x87\x24\xc4\x7c\x37\x38\x30\x0e\x94\xc8\x13\xe9\x2d\x17\xc7\x34\x9f\x42\xb0\x40\x72\x17\xca\x15\xb5\xd8\x62\x4d\xc5\x4e\x07\x60\xd7\x8c\x5c\x74\xa1\xef\xb6\xe0\x55\x96\x78\x0b\xf9\x82\xa3\x5c\xa8\xd0\xc1\xe2\x6c\xcd\x99\xa0\x61\xc2\x86\xba\x0c\xa1\x31\x57\xeb\x0c\x99\x04\xdd\x25\x81\x77\xc0\xf5\x41\x69\xe6\xea\x9c\x3b\xc7\x7e\x64\xbb\xc0\x99\xc9\x0d\x71\x9a\xd1\xf7\xad\x05\xa8\x2a\x50\x14\xca\x98\x4d\x3d\x34\x50\x9e\x68\xc7\xc9\x69\x57\x2f\x84\x3d\xc0\x38\xc9\x18\x5a\x57\x79\x3a\xb4\xc2\x2c\x5e\x3c\xc0\x0a\x52\xb1\xa0\x8d\x01\xcf\x6b\x48\xc1\xdf\x97\xb9\x60\x9c\x1c\x63\xf9\xf5\xed\xee\xd7\xd4\x5b\xff\x6c\x3c\xe1\xa5\xbc\x2b\x93\x7e\x11\xf5\x70\x5b\x41\x97\x11\x5c\x78\xb1\x21\x92\xed\x30\xbf\x4b\x2e\x78\x55\x64\xe8\x80\xfd\x2a\xc9\x1b\x40\x00\x30\x8b\x97\x0b\x40\xb0\x2e\xfe\x8c\x86\x88\xfe\x8c\x80\xee\x36\xaa\xd4\x35\x4c\x1f\x0f\xcc\xac\xe9\xf1\x51\x9e\xd9\xcc\x80\x14\xc8\x06\x23\xc8\xce\xfc\xff\x9e\x9d\x77\xb3\x2b\x7f\xfd\xfb\x42\x0d\x5f\xce\xdb\x2e\xfa\xf1\x8f\xe5\xf7\x1e\x46\xf1\x10\x48\xa0\x38\x8c\x5b\xd4\xe1\x79\x9f\xdc\x8e\x1e\x73\xe4\xb8\x44\xaf\xe7\x71\x9f\x1f\xd5\xb4\xe8\xa4\x42\x75\x04\x9e\x28\x61\x3f\x98\xb7\x31\xb4\xcc\xe7\x24\x30\x61\x09\xda\x30\xdd\xc1\x8d\xe4\x02\xe8\xb9\xc7\x41\x3e\x6e\xe2\x3b\xd9\xd5\x22\xa3\x49\x54\x25\x53\xd4\x27\xf7\x16\x63\x16\x7b\xc9\x17\x0b\x38\xfd\xcf\xaa\x46\x16\x5c\xc9\x0b\x9d\x52\x7f\x63\x61\x3a\xe0\xef\x10\xaf\x54\x49\xfd\x09\x3f\xda\x3c\xf3\xcd\x3c\xdf\x4c\xa3\xcd\x37\xef\xed\xfc\xc0\x01\x20\x0a\x58\xfa\x0d\x6d\x62\x8f\x94\x6c\x7d\x83\xc2\xd8\xfd\x21\x2c\xb6\x88\x68\x6c\x9b\x30\xf1\xd8\x2b\x79\x3f\xd5\x28\x5b\xfa\x7a\x82\x97\xb0\x50\x97\x86\xa1\x91\x8a\xf5\xa4\x86\x85\xee\x29\xc9\x60\xc5\x3c\x20\x07\x98\x4b\xc4\x67\x49\x75\x0e\xb3\xa6\x02\x67\x26\x37\xcc\x96\xbe\xf9\x23\x40\xd6\x2b\x72\x8b\x83\x68\x74\xa2\x4e\x56\xd9\x09\x3a\x0d\xa4\xe3\x22\x43\xdb\x79\x8d\xd8\xd2\x3b\x36\x18\x53\x1a\x7e\x03\x8b\xeb\xa8\x59\xc3\x54\xaa\x4d\x40\x49\x82\x05\x04\xa4\x15\x9b\x54\x30\xe1\x5e\xe0\xea\x92\x1d\x0e\xf5\xaa\x97\xb3\xfd\x4c\x03\x90\xc8\xf0\xec\x61\x41\x21\x2f\x8f\xcd\x40\x96\x96\xd6\xfd\xbb\x7d\x00\x40\xc0\x6d\xf5\x7b\x59\x35\x6c\x33\xcc\xa7\xa7\x14\xa8\x2b\x79\x19\x53\xbf\x20\x72\xae\x80\x25\xf2\x89\x87\xc6\xe7\x76\x96\x8d\x4f\x7e\x0f\x32\x21\x31\x3a\x76\xa5\x30\x05\xfc\xbe\x63\x92\x0c\x5a\x19\x90\x70\x88\xc7\x6d\xa8\xf0\x61\xa0\x56\x24\xd6\xb3\xe7\xe9\x37\x30\xb1\x71\xe9\x26\x4d\xc3\x9b\xf5\x39\x18\x05\x61\x9a\x47\x32\x3a\xc9\x5b\x84\x9b\x32\x5f\xab\x40\x78\x6c\x2c\x6e\x14\x3f\x27\x63\xcd\xaa\xb0\xea\xe8\x32\xdf\xb8\xae\xc2\x9f\x30\xc2\x92\xfa\x09\x8a\xa8\xc1\x84\x1e\x35\x19\xc1\xa7\x42\x80\x79\xc3\x3a\x5c\xed\x91\x5a\xb6\x5f\xb5\x0e\xa9\xaa\x45\x9d\xe6\x87\xa8\x9a\x32\xb1\x0c\x66\x99\x75\x0e\x2f\xa0\x55\xc5\x07\xab\x54\xb8\x40\x8a\x2d\xaf\x3f\xbe\x7f\xfb\xfa\x45\xed\xf0\xdd\x7e\x32\x4e\x43\xbc\xbc\x57\xca\x32\x1b\x94\x41\x0d\x3a\x66\x1a\x14\x3f\xca\xad\x2b\xc5\xb9\xf6\xc9\x9c\xff\x08\x1a\xf8\x85\x44\x05\x9b\xa9\x10\x79\x70\x19\x54\x4e\x67\x0d\x59\xeb\x8c\xc5\x13\x23\x33\x5d\xe9\xc1\x2a\x11\x51\x60\x8f\xeb\xeb\x71\xdf\x59\x05\xe9\x53\x5a\xf4\x89\x9c\xd4\x26\x9d\x0d\x43\x23\x7f\x7b\x7c\xda\x55\x2b\xba\x1a\xed\xb1\xf1\x31\xbf\xd4\x21\xea\x79\x7e\x47\x26\xc6\x25\x9b\x85\x14\x97\xc0\x82\x4f\xed\x88\x4f\x3b\x2b\x6e\x90\x9c\xc0\xfb\x5e\x28\xa3\x57\x6b\x72\xad\xed\xb8\xdd\x68\x7b\x5a\x81\x14\x07\xb9\x53\xc5\x15\xa4\xfb\x72\x61\xb1\xfc\xb2\x6d\xb3\x46\x37\x9d\xb2\x4a\x35\x15\x20\x87\x4d\x2a\x28\xc5\xd4\x33\x47\xad\xad\x52\x6d\x34\xdf\xb6\x5c\xa0\x8b\xab\xb0\x9f\x4a\x0a\x29\x8d\x8a\xb3\x0a\x54\x29\xf2\x8e\x75\x38\x37\xa4\xa4\xc0\xd1\x21\x1b\xdb\xca\xf8\x89\xc0\x71\x9f\xee\xd2\x5c\xad\x3c\xa0\x89\xc1\xea\x22\xd0\x90\x0e\xb3\x89\xdd\xe7\x5d\x37\x55\xe9\x6a\x62\xf0\xe8\x30\x80\x4b\x96\xc3\x3c\x05\xde\x02\x6c\x92\xf5\xed\x9a\x1d\xc3\x92\x33\x02\x6a\x7e\xc6\x3c\x3d\x3e\xf2\x6c\xc9\x28\xb9\xa1\xc5\xa7\x42\x80\xef\x13\x81\xbc\x8c\x69\xa8\x4d\xe9\xcc\x86\x48\xf3\x65\x68\xb0\x13\xf5\xd0\x1b\x59\x4d\x17\x0a\xd4\x4c\xe6\xb8\xe9\x73\x57\x09\x8b\x6e\xdf\x11\xe6\x5b\x76\x49\x93\xbb\x26\x62\x58\x59\x98\xc2\x9e\x52\x42\x71\x47\x2c\x2a\x35\xe6\x57\x6a\xbd\xca\x33\xf4\x24\xfa\xba\x5f\x2e\xb2\x2a\xaf\xac\x4a\x72\xda\x9e\x98\xbe\xeb\x90\x6f\x0d\x99\x81\xa0\x21\x96\xd2\x25\xf1\xab\xd9\x15\x78\xe2\xc2\xe4\xef\xd4\xb1\xca\x60\x87\x18\x14\x90\xb1\x1f\x15\x17\xad\x34\x86\x2b\x63\x5a\x7b\x3d\xbf\xd5\x00\xfe\xda\xc5\x5c\x57\x09\xcc\x77\xd1\x93\x06\x16\xf5\xee\x61\xd1\x3e\xef\xd5\x62\xe3\x45\x19\x62\x1c\x5d\xa5\xf4\x9b\x72\xad\xb7\x28\xf6\x6b\x12\xbf\x92\x48\xfb\xe2\x02\x75\xc7\xca\x4c\x24\xdf\xbb\x00\x73\x93\xa7\xf0\x5e\x8c\x78\xcb\xf3\xaf\x9f\x10\xf3\x02\x86\x77\x90\x0f\x70\xde\xc7\xdc\x4e\x6a\x97\xb6\x10\x33\xaa\x73\x02\x46\x0e\x9a\x34\x42\x8c\x7b\x7c\x31\x14\x36\x12\x1d\x31\xa0\xea\x5b\x10\x1e\x02\x2a\x70\x26\x72\x43\xaa\x50\xf0\xf5\xb1\x15\xe8\x84\x31\xca\xbf\xc5\x14\x44\xf0\x7b\x60\x2d\xf1\x23\x2e\xc5\xbe\x47\xee\xfa\xc1\xe0\x1b\xea\xe2\xdf\x98\x1f\x6a\x4a\x1c\xe2\xe6\xe0\xb7\x1e\x52\x69\xe5\x33\xbb\xb0\xce\x23\x28\x81\xf9\xa2\xb7\x48\x09\x6e\x3f\x70\x1e\x70\x2f\xf1\x26\x67\xe5\xaa\xcc\xce\x08\xe0\xc8\xc7\x07\xb5\x60\x62\x7c\x43\xc5\x22\xe8\x50\x47\x32\x03\xb8\xa8\x9d\xef\x5e\x86\x75\x85\xdf\x61\x54\xc9\x1e\xd5\xcb\x9c\xf4\x41\x16\xcb\xcf\x47\x4c\x51\x5f\x74\xdd\xba\xb5\xdc\xc1\x1c\xce\x26\x9f\x25\xfd\xf2\xc4\xfa\x00\xec\x8e\xeb\xf1\xa4\xee\x19\x1e\x9e\xd1\xb3\x61\x30\x1e\x0d\xba\x0e\xe3\x21\x6b\x8c\xeb\xce\x9f\xed\x18\x70\x19\xd2\x10\x81\x50\x82\xf9\x59\x3f\x0c\x1c\x1f\x0d\xec\x0e\xec\xac\xaf\x2e\xcc\x4f\x4d\x0c\x0f\x42\xde\x08\xb1\xec\x24\xd1\x93\xb1\xfc\x8c\xb3\xf1\x7b\x91\xfa\x47\x49\x9f\x30\xd2\x1b\xaf\x84\x95\x1a\x2c\x47\xf5\x68\x5c\xde\x9f\x46\x9b\x11\x6a\x8c\xea\x8e\x65\x30\x5c\xb3\x0e\x77\xfa\xb1\x9b\xc5\xb2\x69\x59\x4b\x7b\x00\x2b\x06\xa3\xe1\xa0\xcb\xc3\xde\xe5\xfc\x35\x75\xbf\xe9\xd9\xdd\xe9\x59\xef\x59\x5b\x9c\x1f\x19\xea\xef\x6d\xac\xa0\xc4\x59\xf0\x49\xd7\x30\x0c\x7a\xef\x1f\x46\x99\xd4\x8f\x84\x9b\x67\x1a\x53\x65\x22\x50\xa1\x8f\xc3\x86\x89\xa6\x49\x49\xee\x41\xf6\xc7\x6d\x35\xb5\xf9\xe9\xfb\x55\x03\x9f\x9d\x54\x40\xa5\x79\x10\x55\xe3\xea\xe0\xd4\x61\x72\x04\x38\x46\x50\x08\xe7\xe4\x3a\xaf\xb0\x2d\x52\x11\x99\xbd\x57\xea\x1f\xaf\x45\xee\x4a\x0c\xbe\xf2\xfc\x9f\x78\x53\x46\x26\x84\xfd\x1a\x6e\x02\xe2\xe3\x4e\x93\x49\x6c\xa0\x92\x3c\x6c\x67\x86\x08\x39\x98\x56\x52\x0f\xa6\x6d\x05\xcd\xda\x5c\xbb\xbd\xdc\xdd\x0c\xbb\xad\xbb\xea\xf6\x73\x5e\x00\xf8\x5d\xa8\x13\xe3\x24\x5f\x6f\xa3\x5d\x72\x07\xe1\xb0\x93\xb1\x84\x31\x1e\xe8\xfa\x78\x5e\x9f\xdf\x89\x92\xfa\x1e\x78\x86\x1f\x34\x66\x2a\x8e\x6e\x96\x15\xc3\x11\x37\x1f\xce\x0f\xe2\x4a\xe4\x17\xd0\xe6\xd0\x50\x7a\x3e\xf4\x20\x7e\x98\x62\x7f\xaf\x31\xda\x1f\x97\x7a\xae\x4e\x80\x43\xe1\x95\xd0\x3c\x64\x89\xaf\x19\x09\x75\xe6\xa9\x22\xb0\x01\xe8\xf2\x34\x82\xde\x8b\xcc\x63\x0a\xd3\x65\x95\xb8\x29\xa7\xa9\x0c\x14\x19\xc3\x0d\xfe\x09\x3c\x37\x46\x92\xe3\x86\x10\xed\x17\x4f\x1f\xcf\xe1\xe1\x43\xc1\xd3\x2d\x70\xef\xf3\x3c\xe1\x22\x8e\xc8\x2a\xa3\xea\xb7\x69\x59\x8f\xa2\x1e\x8c\x06\xf5\xa8\xcf\xfa\xde\x76\x07\xff\xb3\x89\x4f\xc9\xf0\xec\x46\x52\x6f\x11\x73\x67\x1a\x74\x53\x59\x2c\x58\x8d\x47\x93\x8e\x7d\x62\xd4\x48\xb7\x11\xad\x1a\x57\xf2\x62\x25\x67\x31\x1e\xcf\x96\x61\x9d\xf5\x49\x29\x24\xf1\x8b\x63\x72\x79\xb5\xbc\x5c\xe1\x13\x55\xa3\xa6\x6d\xb6\x6f\x60\xc0\x62\xa9\xad\x55\xab\x99\x4c\x3e\x1f\x83\x01\x60\xe0\xf2\x6e\xb0\x6a\x64\x70\x60\xf9\x52\x4b\xe7\x06\x67\xdb\x9a\x72\xd9\xb6\xda\xe4\x06\xf1\x58\x63\xd8\x5f\xaf\xf6\x6c\xe0\x72\xd8\xac\x46\x3d\x53\xb5\x81\x57\x26\x12\xf2\xb9\x08\x83\x5f\xa7\xf9\xf3\x57\x6c\x15\x23\x8b\xac\x85\x3d\xc1\xb7\xa0\xbd\x74\xc6\x94\x19\x8a\x55\x03\xab\x2a\xf3\x4d\x4f\xee\x56\x45\x7e\x23\xc9\xb3\x80\x34\x1b\x8c\x69\x8f\x1f\x97\x8b\x40\x28\xa8\xb5\xe3\xd6\x57\xe2\x37\x33\x30\xed\xca\x19\x8e\xc6\xa9\x60\x7f\xbc\xa0\x51\xd6\xde\xda\xb3\xa6\x16\x13\x80\xa9\x7b\x7b\x55\xe0\x81\xab\x39\x6c\xc9\xbc\xa7\xdb\xe7\x00\x6b\xf9\xb5\x15\x14\xee\x3e\x83\xf6\xdd\x4b\x4e\x83\x9d\x6f\x6f\x79\x94\x30\xdd\xf8\xf8\x00\x63\x53\x46\xe1\xee\x7a\xfe\xb5\x7d\xee\x99\x6f\x7c\xab\x7d\x5e\x73\x97\x64\x56\x54\x48\x65\x39\x70\x7b\xd5\x28\xa5\xb2\x97\x8b\xd8\x06\x29\x75\x9b\xa2\x72\x38\x8c\x91\x48\x8b\x56\x68\x2a\x52\xc4\xf8\x6c\xf4\x16\xf1\x44\x13\x73\x28\x0a\xf8\x8c\xa4\x8c\x21\xb3\xd7\x13\x1b\x0f\xc5\xee\x86\x0c\x14\xe2\xfb\xa4\x48\x7b\x29\x5b\x7a\xf5\x13\x5c\x0e\xd0\x48\xfe\x46\x9f\x73\x96\xce\x05\x09\xa9\x7b\xac\x9a\xc0\x64\xe3\x93\x36\xa6\x2b\xd9\x86\x33\x45\x58\x34\x90\xd5\x6c\x70\xde\x95\xc8\xe6\xf0\x80\x83\xe8\x4d\x4d\x35\x27\xd7\x4a\xca\x62\x1a\x42\x51\x0e\xf6\x2f\xf3\xc4\x9a\xc8\x77\x48\x72\x43\x01\x81\x07\x5b\x89\x1e\x68\x8b\xb0\xc7\xf9\x0d\x21\x24\x66\x70\x92\x10\x57\x36\x34\x93\x83\xcb\xde\xae\xc7\xb9\x18\xc7\x08\x3b\xf1\x60\x0c\x57\x58\x13\x83\x6a\xa0\x4e\x48\x96\xd9\x42\x51\xc9\x33\x13\x12\xcd\xb9\xb4\xf4\xc8\x8d\x63\x43\x56\xf5\x39\xf8\x23\x7d\xc6\x5c\x90\x57\x33\xe2\xf6\xcc\xc7\xee\x7c\x7f\x33\xc2\xd5\x38\xdc\x97\xea\x4e\xb1\x12\x64\xb3\xdb\xc9\x7c\xd7\xc3\x0a\x96\x9b\xa6\xfb\xfa\x93\x8d\xef\x26\x72\xe2\x2b\xc6\x65\xea\xba\x6b\x24\x5e\x34\x76\xee\x1a\xf3\x9f\xf6\x33\x6f\xc2\x75\x81\x52\xbc\x8d\x96\x47\x83\x1a\x97\x04\xb6\xb4\x7e\x8b\x77\x67\x9d\x85\x32\x1b\x21\x2d\x31\xe8\x41\x59\xe9\x01\x42\x74\x0d\xcf\x4a\xff\xd7\xf1\x1f\x59\x4f\xf3\x56\x38\x05\x77\x44\xb0\xd0\x42\x9a\xc6\xf9\xc4\x93\xe1\x47\x0a\x86\xb0\x6f\x9d\xb3\x51\x81\x02\x24\xfd\x48\x2c\xb5\x20\xd1\x62\xd5\x1f\x7f\x13\x95\x61\xf0\x70\x46\xff\x0d\x5d\xe0\x36\xed\x3e\x4f\xdf\xac\xe0\xc1\x9d\x92\x36\x4a\xbc\x25\x1e\x7b\x13\xf6\xb8\x8b\x58\x8c\xd4\x38\xcd\x9a\x55\xa4\xb2\x5e\x85\x4c\x24\xb1\x9a\x72\x80\x3c\x9d\xae\x8f\x9b\xf0\x30\x5e\x75\x08\xa3\x95\x6c\x40\xe5\x02\x17\x4d\x4e\xc5\xf0\x90\xb9\x51\xc7\x7a\xfe\xea\xb9\x59\x43\xc1\x46\xc4\x5a\x78\x98\xed\x74\x9f\x7a\xf9\x5d\xe6\x9c\x21\xf2\xcb\xeb\xe3\x41\xcb\xf5\xaa\xc8\xc6\x73\xbc\x96\x0f\x55\x58\xa7\xa6\xf4\xe4\x72\xc8\xf2\xc1\x5d\x21\x59\x46\x06\x37\x15\xee\x6e\x9e\xd6\xfa\x58\xb8\xaa\x77\x0b\xba\xc2\x62\x8f\xe5\xf5\xb1\xb9\xd8\x4b\xb5\x2e\x0b\x0a\xc3\x19\x9e\xc8\x33\x22\xb0\x8c\x6c\x59\x7a\xaa\x73\xa7\x1b\x30\xef\x04\xd3\x42\xee\x90\x1a\x93\x88\xdd\x36\xd4\x55\x81\xbe\x4b\x5f\xea\x18\x48\xc3\xfc\x8a\x2a\x6d\x2c\xc6\x94\x39\x0e\xd0\x01\x6f\x5d\x6a\x05\xb2\x82\xa5\xcd\xdb\xdf\xe1\xe3\xb3\x95\xae\xc7\x79\xdf\xac\x3e\x6d\xed\x7d\x68\x2e\x37\x01\xdb\x5d\x66\xc2\xe2\x8a\xb6\x39\x96\x17\x07\xfa\xd8\x1c\x17\x25\xa3\xd3\x05\x1e\xca\x43\xbf\x16\x57\x35\xe0\x43\x36\x6a\x5b\x7d\xc9\x1e\xf1\x66\xad\x9a\xda\x23\xe4\x2d\x62\xe9\x54\x28\xe0\x9c\xe0\xe3\x6c\x4a\xf5\x7f\xbb\x6e\x51\x34\x9c\xbe\x7d\x1e\xb8\x65\xdb\x07\xad\x93\x4c\x2a\x58\xd8\x19\xa9\x2c\xa8\x81\x7b\x29\x67\xc7\x1b\xe6\xf6\xe4\x29\x5e\x8f\xdb\x3e\x49\x83\x60\xae\xf1\x27\x31\x04\xe4\x6e\x09\x00\xe7\xd0\x8e\x7c\x51\x55\x67\x9c\x7a\xe3\x99\xa5\x62\x88\x30\x86\xe3\x78\x9c\x49\x99\x4d\x15\x21\xc9\x5d\xad\xb0\xdc\x3b\x16\xf7\x29\x63\x45\x4e\x3e\x0f\x21\x5b\xe3\xae\x5c\xef\xf6\xa9\x85\x58\xfe\xfc\xcd\x9b\xf6\x27\xe1\x06\xa7\xd2\xd4\x87\x6c\x40\x2d\xac\x5f\xd2\x49\xa6\x1d\x1f\x36\x6d\xa9\x69\x33\x7e\x42\x95\x85\x57\xd5\xee\x25\x2a\xd8\x6f\x76\xd3\xbb\x67\xe7\xd1\x98\xa3\x36\xe8\x66\x2f\x4f\xb7\x6b\x6f\x85\x11\x2a\x5e\x3e\xd3\xaa\x06\xf3\x8a\x28\x33\x13\x1e\x94\xde\x43\x06\x4b\x2b\x4a\x61\xcc\x43\xc7\x84\x05\xb0\x95\x69\x6d\xbe\x1d\x9a\x82\xe6\x18\x3b\xee\x72\x85\xe7\xbb\xba\xf4\x6c\x09\xec\x1c\x38\x22\xd7\x50\xe1\x50\x2d\xb9\xbb\x45\xef\x79\xb7\x16\xce\x91\xdd\xa5\xa0\x91\x60\xc7\x22\xeb\x0f\x78\x71\xde\xcd\xbc\xf0\xe6\x1a\x35\xde\x16\x07\x10\xec\x57\x9d\x25\x20\x84\x7a\x5f\x0f\x02\xf2\x54\xcd\x3a\x5b\x54\x8c\x75\x2e\xda\xc9\x74\xce\x32\x58\x18\xa3\xc7\x96\x2b\x47\xc7\xc8\x53\xa5\x55\xb3\x2e\x6e\x03\x9c\x77\x7c\xd5\xf2\x36\xb7\x37\x54\x95\xf9\x81\x07\x91\xa2\xc5\x6c\x95\x2a\x56\xf0\x6a\x2d\x01\x7e\x22\xbb\xe0\x9b\xc8\x92\x32\xa5\xf5\x18\x30\xae\x59\x5c\xc7\x60\xc5\x27\xf1\x45\x17\x65\x5c\x84\x5b\x0b\x36\xac\x76\xb1\xf2\x0a\xae\x1c\x22\x93\x3b\x94\x00\x2c\x34\xff\x74\xc3\xcc\xc6\x9e\xee\xaa\x35\x5f\x6c\x5f\xfe\x46\x3e\xca\xe7\x5b\x60\xb7\xbb\xe0\x2b\xd1\xe1\x44\x2f\x07\x56\xab\xec\x4f\x53\x1e\xae\x57\x8b\x94\x0c\xaa\xe5\x09\x65\x63\xf2\xc0\x1b\xfd\x93\x68\xc8\xae\x80\x00\x9f\xd0\x22\x9a\x87\xdd\xac\x65\x12\xf5\x66\x1e\x6a\x19\xcb\xff\x0a\x94\x89\x06\x38\x4c\x32\x3c\xcd\x0d\x87\xaa\x59\x4f\x80\x42\xa9\x88\xe7\xb6\xe1\x0e\xa1\xcc\xc0\x5e\xc4\x30\xd7\xd4\x73\xea\x99\x28\xff\xaf\xc7\x88\x05\xf6\x83\x69\x82\xf2\x7f\x97\x60\xfd\xdd\x15\x8f\x41\xc5\x8d\x25\xe6\x1e\x44\xe1\x58\x8a\x0c\xbe\xa5\x13\xfd\x02\x55\x60\x83\xe2\x23\xd2\x4e\xc3\x7c\xe2\x99\x7b\xd9\x2c\x99\xfb\x45\x29\xf1\x58\x39\x7d\x36\x3f\xcb\x05\xd6\x23\x26\xc6\x9a\x7c\xc1\x3c\xa2\x26\x5a\x1b\x33\x5c\x5d\x64\xc7\x19\x7e\xfa\x84\x4c\xc3\x7f\x1c\xfb\xc6\xc5\x3d\xd3\x82\xc0\x20\x3a\x01\x35\x4b\xe2\x2a\xbc\x0e\xc9\x06\x43\x0c\x99\x89\xfb\x26\x27\x6a\xfc\x7d\xfb\xf4\x78\x6b\x23\xfa\xd8\xa7\x42\x55\xfa\x9a\x61\x8f\xa7\x48\x69\x81\x52\xbb\xba\x1f\x25\x45\x83\xa6\x0c\xea\xd5\xaf\xb8\x28\x01\x58\xe4\x35\x9b\x18\xf2\xc3\x3e\xe2\x6d\x73\x1c\x33\x35\x59\xb5\x45\x96\x79\x90\xfa\x01\xa0\xea\xf9\xa4\x79\xa6\x69\x59\xea\xbc\x93\x8f\x0e\x16\xab\xca\xb1\x89\xd8\x4e\xf7\x8a\x88\x96\x27\x5a\x87\x35\xa0\xc8\x74\xc7\xed\xb1\x5c\x82\xbe\x7f\x66\xc2\x0c\xe9\xc3\xc7\x7c\x56\x6f\x50\x46\xcc\x28\xd9\xb6\x88\xab\x4e\x06\xb9\xaf\x3e\xd6\x5b\x8d\x5e\x5e\x9c\x54\xdd\xd3\xb6\x95\xf5\x32\x05\x89\x1d\x03\x64\x5a\x8f\x78\x8d\x73\x13\xe9\x2a\xe1\x24\xcb\x45\x5a\x1c\x81\xcf\x31\xf5\x36\x75\x93\xd0\x39\xe7\xca\x51\x73\x98\xd5\xb0\x67\x81\x73\x70\x5c\x04\x6d\x6e\x30\x75\x31\xee\x56\x01\xd6\x29\x01\xe4\x1e\xa6\x71\x92\xdf\x7d\x28\x4a\xbe\x06\x2b\x0e\xa4\x7a\x8d\x93\x83\xe7\x33\x1e\xe7\x41\x89\x0e\x1d\x32\xdb\xf0\xe6\xba\xed\xac\x01\x26\xa0\xb4\x3c\x5a\xf0\x3e\x3c\xd3\x21\x29\xf9\x88\x28\xd7\x26\x25\x86\x14\xbd\x19\x8a\xf0\x9d\x4f\xd4\x74\x0b\x6f\x43\xb8\x82\xc1\x2e\xd1\x54\x1d\x87\x0a\x67\x8d\xa2\xf6\x4e\xe4\x3c\x38\xcf\xe8\x32\xb8\x3f\x7e\x9f\x19\xac\x9f\xcd\xdc\xdf\xb6\xe7\x41\xa7\x48\x17\xcb\x29\x5f\x7f\x79\x50\xe5\x34\xd0\x66\x1d\x9d\x25\x47\xd5\xcb\xe7\x43\x81\x78\x25\x84\x23\xf0\xbc\x85\x65\xfd\xfd\xb6\x5b\x5f\x69\xf1\xfc\x7b\x94\x14\x5b\xe5\xf9\xe8\xf3\xa7\xd1\x15\x78\x4c\x3d\x12\xf8\xd6\x59\x29\x6c\x01\x09\x03\x8f\xe8\x51\xf2\xfe\x9d\x55\x41\x0f\x44\xe6\xb2\x73\xae\x1c\x7b\x7e\x4d\xec\x22\xbe\x3b\x47\x64\xfb\x1b\xb0\xed\xef\xd1\x5e\xf3\x21\x3a\xb2\xfd\xa7\x49\xbc\x3c\xe9\x39\x62\x0c\x8a\xe7\x7d\x74\xfc\xfa\x9f\xb3\x33\xd3\x53\x93\x13\xe3\x63\xa3\x3b\xdb\x5b\x92\x89\x58\xb4\x31\x1c\xf0\xd7\xf9\x3c\x6e\xbb\x49\xaf\x95\xcb\xc4\x02\x76\xfd\xf3\xaf\x6a\x19\x2d\xa7\xb5\xa6\x8e\xa3\x58\xc8\xe5\x83\xe4\x74\x69\x20\x44\xcc\xeb\x1e\xb9\x67\x3e\x9f\xdb\xc2\x95\x1f\xdf\x40\x19\xbb\xcb\xd6\x34\xef\xf9\x98\x0f\xa1\xb1\xa7\x69\x4a\xed\x75\x8b\x6e\xba\x6e\x09\x62\x8f\x81\x6a\xe0\x28\xf2\x75\x44\xae\x0d\xf7\xd5\x5a\x78\x5f\xd3\xe3\x65\x92\x7c\x56\xa5\xc0\xd7\xee\x2f\x12\x2d\xc6\x64\xf5\xc9\x31\x64\x6b\x66\x45\x74\x0d\xe1\x0a\x6b\xb4\x55\x00\x7b\xdd\xa0\x07\x84\x87\x39\x85\xbe\x96\xb7\x42\x0e\x92\x76\x3e\xd2\x8c\xb9\x95\xf5\xfd\xdd\xe3\xb4\x0f\x29\xf0\xd5\x84\x79\x45\xf0\x1a\x2c\x26\xa8\x68\x6e\x1b\xf5\x93\x32\x22\xea\x20\x5c\x3d\x18\x81\xad\xe5\xb7\x70\x21\x6e\x38\xb3\x54\x5b\x84\xd7\x9f\x08\xdc\xc8\xf0\x54\x46\xa4\x1b\x26\x74\x1e\x72\x0c\x5a\x20\x9d\xa1\x48\xad\x0b\x0a\x9e\xeb\xfa\xe3\x42\x9b\x5a\x05\x6e\x21\x13\x8d\xf6\xca\xaa\x1e\x51\xad\x65\x1d\x69\xd6\xea\xba\xc9\x11\xdc\xe4\x16\x25\x90\x5a\x60\x5a\xbb\xbd\x50\xf8\x3c\x67\x61\x3c\x51\x81\xd8\x2c\xe6\x19\x13\x51\x06\xbc\xe2\x42\xb2\x40\xb4\x62\x5a\xa0\x0d\x91\x34\x48\xa3\x2e\xac\x76\x66\x82\x75\x75\xd5\xfd\xe4\x85\xcd\x7d\x25\x36\xa0\x56\x29\x5c\x2a\xba\xf6\xb2\xdd\xdd\x9b\xa9\xb5\xc2\xcf\xc5\xea\x19\x0d\xe0\x5b\xcb\xac\xf3\x99\x7d\xec\x39\xd6\xd6\xde\x31\x70\x05\x1b\x12\x2f\x83\xdc\x0d\x14\x25\xef\xbf\x17\xd2\x53\x8a\xf8\x56\xf0\xb9\xb0\xc9\xa3\x9b\x0e\x1c\x86\xb4\xd2\x2b\x8f\x6c\x7b\xf4\x74\x69\xd9\x91\x04\x89\xe8\x47\x3d\xf6\xc3\xc3\x5e\x37\x14\x12\x5a\x94\x14\xf9\x51\x9a\x39\x59\x0c\x38\x3d\x7c\x7b\xdd\x8d\x81\xc2\x1d\xfb\x21\xd8\xf7\x8c\x34\x95\x31\x5d\x6a\xcc\x34\xeb\x65\xb7\x59\x00\x83\x7a\xd5\x62\x86\xf6\x7a\x70\x76\x32\x54\x06\xd3\xe3\x24\xe2\x06\x0e\x73\x3b\x53\x66\x0d\xee\xab\xd2\x91\x5c\x37\x9c\xfe\xcd\x76\x70\x33\x8a\x88\x60\xc0\xad\xf2\x1e\x49\x9a\xe0\x8d\x1e\x2b\x99\xe7\x84\xf5\x2d\x54\xec\x55\x20\xb0\xcb\xef\x56\xc4\xec\xac\x01\x19\xa7\xad\x53\x4d\x70\xa0\x1e\x71\xad\x77\x49\x51\x47\xb5\x0e\x9c\xe6\xbf\x7f\xeb\x50\xf0\x19\xfe\x2d\xd0\x55\x43\xf8\xb2\x09\x23\x68\x93\x20\x24\x4a\x8b\x94\x3f\x5d\x1e\xa8\x1c\x7c\xdc\xf0\xb8\xee\x95\xe8\xb3\xac\xd4\x68\x0f\xd3\xa1\xe7\xc2\x39\x89\xc7\x4f\xf8\xd6\x59\xab\x72\x9e\x8d\x98\x9e\xf4\x4a\xe9\x83\xdc\x22\xee\xdc\xf9\x26\x70\x2a\x87\x61\xd3\xcc\x42\x7b\x68\x39\xde\x42\x59\x1a\x0a\x5f\x62\xc7\x41\x04\x51\xf9\x91\x44\x1e\x3d\xfe\xb4\x06\xcb\xde\xa0\x87\x24\x39\x8d\x41\xe9\xb3\xb3\x85\x53\x61\x10\x48\x97\x45\x96\x8e\xe1\x25\x94\xa9\x39\xfe\xe3\x1a\xd2\xa9\xef\x4b\x0a\x8c\x08\xf3\x5f\xab\x02\xcc\x05\xc4\x5a\x6c\x32\xd9\x9b\x3b\x50\x2b\x6a\x11\xca\x60\x79\x3d\x08\x5e\xd8\x4b\xd6\x0e\x17\xd9\x39\x2b\xed\x86\x52\xf8\x04\x8e\x25\xca\xa5\x9e\x5a\x2a\xcf\xb1\xbc\x75\x1c\x78\xf0\x54\x11\x0d\x37\x7c\xaa\x3a\xb5\x72\x18\x22\x10\xe6\x14\xee\x75\xa5\xee\x7b\x09\xba\x5d\xc5\x70\x35\x43\x1c\x60\xb0\x29\xa8\xe4\xae\xb0\xb8\x42\x12\x2b\x96\x28\x48\x30\xfa\x9e\x93\x00\x88\x23\xa4\x41\x91\x92\xef\x82\x49\xc0\x82\x37\xe1\x05\x4e\x24\xb1\x46\xf0\x02\xc7\xca\x52\x4b\xcb\x52\x1b\x01\xa2\xe5\xa6\xa0\xd0\x69\x52\x8d\x6d\x0a\xdc\x5b\x67\x18\x5c\x8b\x93\xb4\xaf\xf8\x0c\x47\x08\x84\xbe\x5b\x76\xdf\x6e\xd1\xcf\x07\x05\x09\x91\xfa\xd0\x99\xcb\x80\x70\x92\xf6\x5a\xbf\xd7\xf0\x56\x57\x72\xe3\x1a\x5b\x78\x2f\x39\x9c\x6c\x33\xa3\x67\xcf\x13\x71\xcc\xe8\xf9\x68\xe2\xd6\xd6\x68\x90\x4e\xcc\xee\x87\x69\x4b\x6e\xec\x19\xee\xd5\x4a\x74\xb2\xb8\x5a\x51\x3a\x75\x23\x9d\x88\x78\x04\xe1\x05\x8e\x06\x9a\xbc\xc0\x8b\x0b\x31\xf1\x94\xdc\x67\x30\x66\xdc\x46\xd8\x98\xc4\x84\xa2\x37\x79\x21\xb1\x4f\x05\x17\x32\x1d\xb2\xc3\x94\xe5\xb5\x0b\x10\x14\x68\x24\xb2\x30\xd7\x2d\xd0\xb8\xff\x2c\xfe\xd3\xe4\x93\x52\xbd\x42\x94\xdf\x60\xe0\xb7\x38\xc3\xc9\xde\x58\x86\x53\x12\x18\x2e\x02\x85\xf4\x51\x05\xc2\x97\xfe\x77\xf2\xbd\xe4\x42\xbb\xc2\xce\x6b\x7e\xfa\xc0\xf9\x16\x87\x28\x83\x2b\x07\x29\x99\x91\xf5\x7e\xa2\x6a\xa9\x30\xca\xa5\xbc\xa7\xba\xb5\xbe\x6c\x21\x89\x74\x76\xb2\xcd\x02\xe9\x8e\x9c\x01\x12\x69\xbe\x25\xee\x83\x09\x9b\xae\xa0\x9b\x1a\x54\x00\x56\xf8\x21\x7b\xe4\x17\x0f\x68\xf1\x33\xe1\xc8\x77\xbc\xaa\x5f\x7e\x38\x58\x2e\x85\xa3\x41\x1b\x56\xd3\x1f\x6b\x5d\xf8\x1c\x1d\x2f\x70\x7c\xed\x91\xe8\x11\x90\xfb\x40\x56\xd4\xd6\xb8\x22\x3f\xe5\xda\xc3\x48\xdd\x34\xf8\x65\x7c\x45\x05\x81\x7b\xe9\xe1\x08\x8f\xb3\xfc\x32\xcc\x2e\x74\xba\xf6\x19\xe3\xe8\xc7\xe7\xdf\xdf\xf4\x9f\x92\xa6\xf9\x79\x1b\xc3\xbf\xc2\xbf\xe0\x7e\x43\x07\xe5\x05\x35\x47\xa9\x05\x71\xc2\x63\xaf\x52\x75\xc5\xaf\x5e\x7b\xbd\xed\x5e\xeb\xc2\xd5\x5b\x1d\xf6\x68\xe2\x56\xe0\x38\x55\x89\x04\xd6\x11\xb7\x25\xf8\xa3\xde\xe2\x6e\xd7\xac\x97\xa3\xfa\xb5\x09\x2d\x01\xea\x0d\x4c\xa2\x20\x9c\x25\xa1\xf3\xab\x6c\xc2\x75\xfd\x71\x03\xfa\x8d\x20\x42\x77\x6d\x54\xce\xc0\xeb\x84\x5c\x8a\x43\x8b\x06\xb4\x96\xc3\xdb\x48\x2a\xd2\xa1\x24\x92\x23\xd1\x3d\x40\xff\xea\xbc\xce\x0b\xda\xf8\xda\xee\x78\xd7\xae\xfb\x50\xe1\xf6\xd9\xea\x49\x66\xc8\x55\x41\xe7\x58\x59\x26\x63\x66\x5b\x40\x67\x52\x66\x20\xd9\x40\x6a\x35\x1c\x8a\x24\x2b\xc0\xe1\xd0\x89\xd9\xae\x53\xd2\xa9\xac\xe5\xe1\x69\x39\x4c\xbc\xeb\xd7\x5d\xaf\xd6\xde\xe8\x8a\x10\xce\x0d\x37\xa3\x8e\x8c\x13\x83\xbe\x92\xf2\xce\x54\xeb\x9d\x35\x4c\xd8\xd1\x45\x5d\xb4\xe8\xda\xd9\x6c\x9e\xad\xec\xe0\xb1\x1b\xdc\xdd\xc5\x66\x84\xae\x7e\x3c\x8c\x39\x7e\xec\x23\xfa\xb1\x49\xf4\xe7\xbf\x39\x7f\xf7\x53\x5d\xf4\xdb\x3f\xae\xd6\xf5\x0c\x02\x0e\xcf\xf2\xa1\xcb\xd3\xf2\x68\x95\xe6\x7f\x0d\xc9\x69\xec\x53\x7b\x15\x9f\x7b\x6e\xaf\x5d\x9e\x7c\x48\x68\x44\xc2\x9b\x8f\x3c\x96\xad\x1a\x7c\x7e\x2c\xb6\xd5\xad\x67\x69\x32\x38\x6a\xc1\x0f\xbf\xc0\xc1\x54\x3b\xe1\x14\xe8\x86\x03\x1c\x57\xae\x6a\x4a\x3e\x52\x0f\xce\xac\x7f\x92\x2d\x62\x1f\xa5\xa8\xe6\xcc\xed\x04\x24\x22\xb5\xa1\x93\xf0\x36\x1a\xbb\xc9\x5b\x96\x37\x2c\x0c\x6e\x26\xdb\x89\x01\xc5\xd6\x5b\x98\x48\x1e\x03\x2f\xa5\xb9\x41\x2e\x79\x85\x6a\x3f\x30\x08\x38\x64\x79\x2a\x2a\x25\x45\xcb\x7a\xa5\x7a\x46\x06\x40\xa5\x7c\x62\x80\x6d\x16\xb3\xfc\x34\x2b\x43\x8e\x8b\x59\x16\x20\xc0\x48\xb6\x95\x14\xa6\xd1\xbd\x73\x5f\xe9\x44\xa9\xbe\xc7\x84\xf6\x33\x15\xf6\x2e\x12\x0e\x1e\xa7\xa9\x6a\xa4\x8e\xee\xc0\x1b\x63\xbe\x58\xa4\x0d\xee\x69\x83\xfd\xc0\xf2\x17\x2d\xb0\xdd\x9a\x24\x29\x11\x73\xe1\x54\x44\xf2\xa2\xc3\x9d\x5c\x7b\x1d\x3f\xef\x07\xc1\x6c\x37\x4e\x81\x99\x94\xc4\xe9\x9b\xa4\x44\x82\x8e\xe7\xad\xab\xcc\x40\xd5\x36\x32\x08\x5c\xd8\x52\x58\x83\xac\xa5\x42\x0c\x9a\x68\x4e\x91\xbb\x18\x09\x7d\x84\x03\xba\x03\xf8\xd1\x20\xec\x1c\x78\xbb\x80\x3f\xc1\x04\x6f\x3d\xf1\x32\x9a\x50\x0f\xd1\x4e\x8e\x0d\x2f\x56\x93\xf8\x7e\x14\x17\x9d\x0f\x63\x62\x6a\x11\x74\x75\x54\x99\x49\xf5\x60\xd7\x85\xc0\xb5\xbb\x28\x71\xd6\x74\x56\x43\x39\x25\xe0\x46\x3c\x73\x7b\xbf\x64\xa7\xca\xf7\xb9\x5e\x33\x98\x2f\xaf\xa3\x70\xb3\x0f\xfb\x9c\x0b\xbf\x8f\x7c\xfb\xa7\xbf\x09\xa5\xcb\x6e\x4f\x0b\x88\x83\x1b\x71\x2f\x73\xd1\x61\x79\xd8\x87\x5f\x74\x98\x3d\x45\x59\x7b\xeb\x32\x36\x7a\x96\x78\x6c\xcb\x22\x1b\x38\x0d\xb0\xe8\xbd\x99\xa0\xf9\xd8\xfd\x1b\xff\xa8\x6a\x68\xa2\xc0\xf5\xa1\x83\xe4\x02\xdb\x80\x7e\x3b\x69\xab\xee\xb6\x4a\xf2\x9d\x6a\xf2\x7e\xbd\x69\x82\x26\x61\x29\x73\x75\xe3\x00\xaf\x5b\x1c\x3b\xb8\xc7\x5f\x96\x6c\xb9\xe1\x97\xf0\x94\xeb\x67\xa9\x46\x59\xfa\x1e\x1d\x46\xb4\xe1\x84\xeb\x9b\xbd\x7b\x2e\x5a\xdf\xd0\x9a\xef\x76\x53\x84\x94\x6e\x1b\xa7\xe9\x74\x18\x37\xeb\x59\xdb\xc7\x09\x98\xf2\x0e\xf4\x4e\xc9\x4a\x49\xa4\xb3\x8c\xd0\x34\x25\x40\xc0\x3b\xdf\x66\xf5\x3e\x6a\xab\x52\xa7\xa5\x33\x80\xcd\xa4\x6a\x9b\x54\xe6\xe0\x44\x52\x27\x91\xb9\x19\xfc\xfb\x61\x3a\x95\xb4\x54\xb2\xe5\xbc\x7c\xca\xa2\x66\x5d\x69\x9e\xc8\xba\x1a\x0b\xbc\xe3\x72\xe1\x72\x4b\x53\x62\x5e\x06\xde\xdb\xb5\xbd\x46\x01\x81\xcb\x6a\x57\x29\x97\xd2\xc7\x66\x6d\x2c\x54\x81\xc3\xb0\x11\x13\x33\x61\xf5\x4e\x4b\x93\xde\xaa\xd9\x7c\x30\x55\xbd\x47\x17\x00\xde\xf5\x6a\x7b\x03\x44\xb2\xe5\xda\xba\xd9\x5a\x3c\x75\x33\x7c\xc7\xe6\x0a\x50\x41\x55\x6b\x14\x06\x67\x55\x5b\xa2\x83\x91\x1b\x35\x9b\xc3\xc2\xa6\x53\x50\xe8\xc4\x2f\x28\x92\x9c\x10\xe1\x81\x57\x75\x71\xec\x74\xa8\x86\xe1\x84\x45\x91\xd5\x8e\xc3\xb1\x17\x75\x8d\x1f\x0e\x55\x95\x84\x3f\xf7\xe1\x31\x75\x22\x1d\xa2\x4f\xa8\x9a\xaf\xaa\x0e\x4a\xce\x4c\xc8\x9b\xd1\xf7\xf3\xd3\x2d\x54\x45\x6e\xec\xb9\xc3\x9f\x61\xa8\xa4\x35\x82\x87\x81\x5a\x99\x4e\x13\x14\x21\xf5\xa9\xed\x16\xb6\x1e\x97\x56\xd3\x48\xa7\xae\x2c\x3e\x58\xd0\xdd\x75\x4b\x89\x36\xb2\x4d\xf3\x52\x5b\x5e\xfe\x1b\x4e\x4f\xfa\x7b\x75\x51\x1f\x05\x0e\xf2\xb2\xbb\x9c\xba\x68\x19\x27\x3d\xcd\xb3\x37\x0b\x46\x31\xd7\x3b\x41\x52\xc5\xd4\xa2\xc0\x10\x11\x86\x19\x8c\xf0\x82\xfb\xbc\x09\xac\xf5\x1c\x3d\x5a\xa6\xa7\xf1\x64\xa3\x04\xbc\xb7\xa3\x82\x4c\xd1\x18\x93\x28\x3d\x69\x16\xf7\x6a\xaa\xca\x21\x6d\xc3\xe1\x64\x76\xfb\xb1\x45\xa2\x4d\x33\x5d\x86\x39\xe9\x47\x98\xb3\x19\x52\x42\x44\xa1\xa4\x04\x69\x28\x83\x1b\xad\x23\xd8\x0d\xca\xe1\x52\x45\x0e\xe6\x50\x8d\x6e\xb8\x62\x73\x36\x3e\xe9\xe9\x71\x64\xc6\x28\xd3\x27\xa0\xc6\xe9\xc2\x21\x18\x92\x00\xa9\xd4\x8e\x3d\xa7\x3d\xce\x51\xb2\x16\x6e\xec\x30\xe4\xbf\x65\x45\x65\xb6\x40\x1e\x32\xfd\xc4\x93\xcb\x42\x11\x00\x82\x2f\x4f\x7f\x6a\xdb\xba\xd4\xf8\xef\x7c\x2a\x3c\xde\x59\x22\xf1\xea\x57\x49\x7b\xc1\x77\x57\x8f\x5d\xff\xec\x7b\x67\x9b\xfd\x0e\x05\xb2\xfa\xf7\x33\x27\x26\x80\x3f\x4a\x7b\xcb\x6a\xf1\x7f\x3a\x8e\xc5\xf2\x3f\x5a\x1d\x06\x78\x54\xd1\xd1\x0b\x72\xd6\x25\x5f\x64\x3f\x0f\x51\x1b\xa6\x40\x85\xc7\xa3\x44\xf5\xc7\x45\x1a\x4a\xa4\x3d\x8c\xb3\xdf\x18\x54\x92\x5f\x17\x13\x29\x85\x0c\x43\xce\x9d\xe0\xca\x51\xde\x51\x34\x76\x5f\x65\x1b\xb5\x6e\x6e\x40\xc5\x75\x45\xe4\x2e\x75\xd4\x0f\x47\x20\x26\x10\xf7\xf7\xcf\x73\x87\x7d\x90\xf7\x90\x70\xca\xe8\x24\xd0\xde\x7c\xee\x41\xe3\x32\x83\xf8\xf0\x86\x34\xfe\xa1\x84\x93\x1c\xc3\x17\xbb\x6f\xc6\x42\xe9\x9e\x28\x80\x47\x69\x0d\xab\xbf\x0f\xe5\x05\xd5\xbe\xac\x17\x65\x9f\x16\xe9\xf7\xb4\x2d\x0c\xbb\xda\xc4\xe1\x29\x8e\x84\xec\xee\xbf\x8b\x27\xad\x54\xd9\xd3\x92\x03\xc3\x78\x88\x3d\xa4\xb0\xd8\x22\xf5\x62\xf4\x5c\x4b\x40\x0b\x93\x43\xaf\x0f\x95\x54\xef\x0d\xc5\xa0\x9c\x08\x68\xc8\xac\x97\x47\xf5\xee\x12\x52\x6e\x52\xb1\xa3\xe2\x82\xd0\x8d\xfe\x32\x45\x4f\x45\x45\x19\x99\x28\x57\x48\xb9\xb2\xa8\xd3\xeb\x42\xb4\x99\xd4\x50\x72\x0b\x80\xb4\xf7\x81\x66\x8c\xf8\x7d\x68\x4f\xca\xf7\x9a\xe9\x72\x3a\x9f\x34\x7e\xb7\x41\x6f\xec\xcb\x5e\x1a\xdb\xfe\x44\x39\xe4\x3c\x24\x4c\xc3\xb5\x1e\xa8\xd4\x13\x32\x38\xa6\x65\xcf\xa1\x7f\x97\x0a\x0a\x1e\x8b\x88\xf2\xa6\x94\xbf\x4e\xec\xa3\xff\xa4\x88\x79\x8e\x7a\xf4\xcf\x7e\xcc\xfe\x85\x8a\x52\x76\xa7\x34\x44\xda\x34\xe5\xf2\xf8\x5e\x5d\xb7\x12\x17\x70\xe2\x92\x7e\x7a\xd2\xd1\x9f\x86\x44\x67\xb1\x75\xab\xa6\xbe\x1c\xb0\xba\xad\x76\x89\x68\x62\xef\x36\xa5\x16\xd6\x08\x4d\xb8\x83\x02\xb2\xa9\x25\xb9\x92\xb6\x9b\xe6\xed\x7d\x68\x7f\xd5\xa2\x35\x7a\xbb\xd7\xda\xd9\x33\x53\x1b\xf9\xd1\x87\x95\xfa\x19\xa7\x37\xf6\x24\xd1\xe8\x0b\x49\x29\x38\x3b\x1b\x52\x40\x98\x79\x25\x8d\x97\xc1\x65\x0e\x69\x6f\x7a\x0f\x3f\x3f\x00\xb9\x0d\x69\x81\xe4\xcc\xd5\x33\x0f\xa8\x17\x11\xcd\x95\xea\x4b\xd9\x1a\x6f\x03\x21\x87\x21\x32\xb9\x3e\xb0\x48\xf3\x85\xe4\xca\xf5\x82\x34\x43\x74\x6c\x7d\x90\xb9\x71\xb7\x70\x88\xde\xbc\xf9\x97\x44\x2f\xcb\xd2\x79\x5e\x8c\xa8\x1f\x3a\xfe\x0f\x82\x14\x04\xf2\x34\x90\xbf\x00\xd3\x45\x60\xfa\x06\x3a\x01\x46\xea\xe0\x88\x00\x6f\x0f\x90\xf0\xec\x1a\xf7\xcf\x3f\x41\x5e\x43\x7e\x42\x3e\x58\xd0\x93\xa3\xd5\xdd\x9a\x26\x8e\x3d\xa4\x79\xb0\x7d\xf6\xf4\x76\x27\x9c\x78\x44\xa5\x57\xa7\xca\xed\x90\xef\x3f\x7e\xd2\x8a\x21\xb6\x35\xf3\x92\x56\x1b\x56\x78\x6b\x04\x39\x02\x79\x32\x3b\x29\x3e\xa7\x3b\x9a\x64\xb9\x8f\x54\x7f\xe7\x44\x8f\x1f\x09\xaf\xb4\x9f\xed\xaa\x69\x36\x9c\x9b\x61\x16\x8a\x3f\x5a\x80\x28\x27\x35\xff\x71\x14\x94\x5a\x51\x1d\x14\x05\xaf\x43\x4d\xe9\x0b\x3d\x76\xff\xdb\x61\x91\x18\x48\x3e\xe4\x22\xc4\x02\xb2\xa8\x8f\x5e\x33\xd3\x4c\x21\x87\x74\xd4\x70\x46\x7c\x75\x58\x35\xc3\xaa\xf9\xc7\xad\x4c\x08\x9d\xaf\xe7\x88\x1d\x6b\x6e\xc9\x9e\x9d\x85\x08\xe8\x79\x14\x73\xb0\x3f\x52\x0e\xa3\x9b\x94\x55\x51\x59\xf9\x86\xb1\xa3\x6f\xef\x20\x5f\xec\xf4\x99\x06\xc8\xa8\x95\x70\x3a\xcd\x93\x4f\xfb\xad\x91\x16\x0c\x69\x3e\xa4\x8e\x4d\xb7\x71\x1a\x36\xae\x2f\x3f\x86\x72\x56\x14\xde\x59\x7b\x7b\x03\x32\x06\x99\x48\xb3\x7f\xee\xff\x12\x7b\x51\xbc\x45\x71\x10\xc5\x02\x28\xa5\xb3\x2f\xd7\x98\xbc\xa7\xbd\xec\xa3\x2c\x82\xad\x58\x87\x90\xc8\x7a\xed\x25\x92\x01\x79\xd4\xcf\x5e\x62\x1b\x86\x04\xd9\xc3\x50\xab\xf8\x5e\xb3\x08\xd7\x6f\x75\xcd\x6d\x94\xcd\x6a\x20\x33\x5e\xc8\x35\x05\xc1\x3a\x4d\xcc\xb4\xfc\x0a\x13\xb3\x23\xab\xb2\xb5\x2d\x62\x51\xd6\x35\xa1\xbb\x4e\xba\x22\x2d\xd1\x5d\x09\xb3\xd3\xda\x16\x18\x4d\x77\x13\xba\x63\xd0\x75\x68\x89\xee\x7a\xbc\xf6\xcc\xbd\xae\x65\x64\x51\xad\x6c\x21\xfe\x70\x91\x2a\x97\xf5\x49\xa8\x88\xe8\x0e\x61\x0b\xf0\xd5\x90\x69\xcd\xdb\xa6\x50\xa0\x75\xc6\x7a\xfd\x89\x8d\xf0\x52\x00\xb2\x30\x5a\xaa\x9c\xb4\x11\x98\xc0\xd8\x51\x2b\x01\xec\xcd\x2e\x01\xe1\x55\x61\x5a\x3e\x33\xdb\x56\x50\xdb\x40\x18\xd4\x43\x65\x81\xae\xe4\x19\x41\xe8\x98\x35\xc2\xec\xc6\x45\xf6\x28\xb4\x16\x2d\x63\xc8\xd0\x0e\xa1\x05\xf4\x10\xea\xdf\x0b\xb5\xaf\xd7\x0a\x2c\xd6\x07\x4c\xe8\x6e\xb4\x56\xbf\xf5\x20\xba\xeb\xa8\x75\xb2\xae\x09\xb5\x50\x1b\x88\xee\x92\x6a\x35\xb4\x37\x79\x53\x88\xc1\x9f\x68\xe8\xda\x6f\x92\xe6\x6c\x86\xa5\x6c\x46\x45\x6f\x3a\x98\x4a\x2f\xc4\xd7\x24\xba\xd3\x7d\x51\x1b\x5d\x51\xfa\x6e\xa2\x1f\xf6\x3c\x9d\x57\xd4\x44\x48\xda\xa5\x59\x5f\xbf\x74\x87\x5d\xa0\xd7\xde\xcc\xfe\x19\x27\xf3\x3d\x87\x47\x28\xd9\x1a\x64\x4d\xb5\x42\xad\x56\x2f\x4b\xe8\x0d\xe6\x39\xe3\x79\x96\x10\xd9\xf1\x76\xac\xcd\x86\xce\xce\x79\xf1\xbe\x77\xee\x95\xc6\xda\x72\x59\x8d\x24\x6f\x19\xab\x93\xc5\xa2\x82\xd7\x89\x55\x6b\x46\xdb\xb1\xee\x3e\x98\xbd\x14\xc8\xb3\x17\x67\xd4\x8f\x58\xd7\xb8\x9d\xf6\x36\xb6\x8c\xc4\xd6\x6b\x14\x1e\x8f\x92\xff\x51\xfc\xe0\xe6\x1b\xae\x5f\x24\xa9\xff\x14\x5f\x6a\xec\x93\x5c\x2a\x83\x5d\xd2\xab\x41\xcf\xde\xd7\x70\x83\x57\x85\xec\xec\x28\xac\xf3\x8c\x09\x1e\x96\x9e\x47\x67\x87\x7a\x16\xfb\xc7\x6a\xce\xfa\x12\x5a\x97\xd5\xb4\xa5\x91\xfa\x06\xdd\xc3\x28\x85\xe2\xec\x72\xfd\x7b\xed\xe9\x66\x0a\xf5\xd8\x5d\x42\x95\x76\x45\x3a\xd6\x50\x89\xbd\x75\x91\x66\x3c\x5a\x74\xae\xf7\xe8\xd9\x8c\xc4\x8a\xbc\x9b\x89\xcb\xb4\x15\x2c\x3d\xda\x96\xa7\x3e\x56\x47\x08\x85\xe8\xb5\xa5\xa2\x38\xa3\xfe\x49\x61\x02\x87\xf8\x8c\x92\x17\x9e\x0f\x86\x66\x80\x7a\xb8\x33\x78\x1c\x74\x4c\x34\xb2\x36\xab\x53\x5b\xd0\xdd\x56\xec\x1c\x67\xc3\xa3\xfe\xbe\xfc\x39\x64\xf8\xe3\xe8\x50\xf9\x81\x38\x9e\x5f\x7d\x22\x6a\x68\xa5\xec\x53\x75\x8f\x2b\x68\x33\x03\x0f\x17\x2d\x1d\x14\xe7\x77\x8e\x02\x20\x82\x48\x28\xc3\x5d\x43\x54\x06\xec\x00\x87\x10\xe3\x04\xf0\xfe\xfe\xab\xff\xaf\xfa\xb1\xa1\x7c\xfb\xbe\x4f\xe9\x4f\x60\x3f\xc0\xd7\x68\x64\xec\x2b\xc6\x7a\xa0\x89\x1b\xeb\x91\xa5\xb2\xd7\x57\x30\xa6\x65\x7d\x25\xc7\x78\xba\xbe\x8a\x91\xe8\xac\xaf\xe6\xa0\x54\x9f\x64\x83\x8b\xb0\xbe\x9e\x8e\x54\x8e\x34\x30\x95\x1a\xeb\x1b\x39\xe7\xcb\xf5\x4d\x1c\x8b\xaa\xf5\x2d\x44\x2b\xff\x6d\x6f\xc5\x1d\x37\x31\xc7\x88\x09\x37\x16\xd4\x28\x51\x61\x23\x85\x0e\x2d\xda\xf4\xbf\x47\xad\x31\xfe\x7e\x26\x25\x3a\x20\x52\xd8\x60\x40\x46\x1e\xa2\x66\xe8\x30\x98\xe2\x70\x81\x6a\x4d\x64\x28\x8e\x42\x58\x70\x7c\x94\xca\xc9\x73\x18\x23\xd2\x97\x68\x8b\xa6\x70\x80\x6a\xf8\x6e\xd8\x97\xc0\xfc\x5c\x25\x76\x74\x48\x60\x6a\x55\x4f\x59\xa1\x51\x26\xad\xc2\xca\x2a\x53\x48\xdc\x8a\x9a\x87\x5d\xc9\x1a\x5f\xe1\xef\x2b\x1b\x33\xa2\xcf\xa4\x53\x78\xc8\x61\x94\x55\x20\xc1\x5e\x2f\xaa\x42\xfd\x05\xaa\x71\xa3\x92\x88\x87\x6b\xd0\xa5\xdc\x90\x7e\xa9\xce\xed\xc6\x86\x20\xd5\x5b\x1f\xd5\xb5\x81\x6c\xf9\x22\xcb\x49\xd5\x77\x7c\xa3\x96\x14\x37\x85\xd6\xd5\x79\x89\x05\x2b\x52\xb3\x7a\xd0\xa8\x46\x26\x5b\xbf\xc4\xd5\x48\xba\xc3\x8d\x61\xc7\x70\x1c\x10\x50\x54\x54\x06\xf4\x1d\x8e\x65\x54\x4e\x8a\xf0\x27\x6c\xac\x5a\x64\xa8\xaa\xb1\x46\xcd\x30\x81\xc9\x12\x8b\x7c\x31\xc7\x86\x8a\xb0\xd7\x5c\x1b\x26\xca\x68\xfe\xde\x12\xb9\x34\x8f\x6b\x9d\xdc\x3c\x81\x58\x50\x9e\x54\xfb\xd5\x93\xad\x6f\xab\xd9\xd3\x00\x1a\x2c\x44\x68\x1f\x2c\x97\x6c\x68\xc7\x69\x1b\xf4\xe2\x53\xb6\x9f\x2a\x0f\xe4\xfc\x1f\x73\x19\x0e\x0c\x00\xac\x4a\xaf\x4a\x7e\xba\xfb\x2b\x27\x89\x56\xae\x30\x29\x99\x6c\x32\x28\xa1\x8a\xdb\xa4\xcb\xc6\x6d\x0a\x58\xc2\x1f\x64\x71\x95\x54\xf1\xfc\xf6\x1b\xa5\x54\xc3\x02\x13\xcb\xa8\x20\x97\x45\xe4\x31\x27\x8d\x72\xa6\x35\x40\x63\x3e\xec\x2c\x84\x60\x63\x3f\xfe\xfb\x15\x2e\x07\xf0\x86\x87\xf2\xf0\x48\x5e\x07\x17\x75\x7c\xf3\x86\x45\xd0\xa0\x1f\x86\x8d\x60\xf8\x6e\xc8\xb7\xcb\x6b\x57\x30\xff\xed\x3e\xdf\xbc\xbc\x78\xb5\xbd\xdc\x5d\x5d\xdf\xdc\xde\xdd\xe7\x49\xaf\x9b\x4f\xab\xe6\xff\x1e\x9e\x3e\x7c\xfc\xd4\x7c\x0a\xbe\xf4\xcb\x1f\xfa\xd5\xaf\x3b\xe5\xc3\xc0\x36\xf9\x9f\x27\x00\x08\xc1\x08\x8a\xe1\x04\x49\xd1\x0c\xcb\xf1\x82\x28\xc9\x8a\xaa\xe9\x86\x69\xd9\x8e\xeb\xf9\x41\x18\x4d\xc7\x49\xb3\xbc\x28\x6b\xd7\x37\x6f\xda\xae\x1f\xc6\x29\x67\x59\xb7\xfd\x38\xaf\xdb\xbb\xd0\xf9\x5d\x7e\x7b\x47\x67\x57\x77\x4f\xef\xd2\x65\xcb\x57\xf4\xf5\x37\xb7\xff\x27\x64\x68\x78\xe5\xc8\xe8\xaa\xd5\x6b\xd6\x8e\x8d\x4f\xac\xa3\x2c\x94\xcd\x07\xfa\xd8\xf1\x13\x27\xa7\x4f\x9d\x3e\x73\xf6\xdc\x79\x10\x82\x11\x14\xc3\x09\x92\xa2\x19\xf6\xef\x90\xbf\x1c\x92\x52\xb9\x4e\x3c\xcf\xa8\xa7\x3b\xef\x78\xc2\x53\x5e\x88\xe7\xb9\x14\xdf\x53\x43\x8f\x36\xda\x69\xf1\x83\x1f\xfd\xe4\x67\xbf\x38\xe8\x90\xff\x93\xe9\xb0\x23\x32\xfc\xea\x37\xae\x51\xcc\x75\x16\xdc\x21\x9f\x9b\xdc\x23\x87\x42\x8a\x68\xf4\xbb\x3f\xfc\xe9\x2f\x47\x7d\x09\x1d\x4e\xcc\x71\x4a\x10\x70\x01\x17\xf3\x3b\x4b\xf9\x13\x66\x58\x59\xee\x81\xcf\x4b\x02\x38\x47\x80\x49\x11\x30\xed\xd1\xd7\x50\x23\x8d\x35\x69\x9e\x2f\x9b\x17\x3c\x4b\x9a\x00\xce\x12\xf0\xb9\x56\xd8\x35\x58\x1c\x1a\x2e\x95\x47\x46\xc7\xc6\x27\x26\xa7\xa6\x67\x66\xed\x0d\xcc\x7b\x9f\xbc\xb8\x64\x9f\x3e\x9f\xda\xef\x1c\xd9\x27\x72\x5f\x82\x7c\xe6\x0b\x5f\xbb\xea\x0d\xfe\x01\xa4\x70\xcb\x75\x37\x1c\xe0\xe9\xae\xdb\xee\x50\xf9\x96\x86\x9a\x96\x9e\x8e\xe1\x33\x23\x33\xd3\x03\xf6\xc5\x67\x67\xe3\xe0\xe4\xe2\xe1\xd6\xa4\x45\xb3\x36\xad\x96\x88\x33\x6b\x3a\xb8\xb6\xbe\xb1\xb9\xe5\x5f\xbf\xbc\x34\xbb\xf2\xbf\x77\xed\xf0\xa5\xd3\x8d\xd7\xbd\xfe\x0d\x56\xe0\x25\xf4\xa7\x67\xc3\x62\xb1\x9a\xa4\x02\x57\xbc\x5c\x55\xeb\xcd\x76\xb7\xaf\x0f\xc7\x93\x52\x60\x2d\xf3\xf5\xdb\xf7\x1f\x3f\xe1\x02\xc7\xfe\xfb\xef\x7f\x28\x6c\x03\x3f\x52\xfd\x51\xa3\x66\x0e\xc6\x13\xc9\x54\x3a\x93\xcd\xe5\x0b\xc5\x52\xb9\x12\x5b\xa1\x67\x00\x41\x20\xae\xd3\xfc\x4b\x69\xdc\x84\xf7\x41\xad\xc7\x3e\x40\xea\x83\xda\x12\xb5\x9d\xf9\xa0\x3e\x37\x3e\x44\x5f\x44\x4f\xd4\x5e\xdf\x03\x7b\x8d\x7b\x50\x07\x64\x0f\xea\x7b\xd6\x83\xfa\xc9\xf4\xa0\x0e\x82\x1e\xd4\x61\xcd\x83\xfa\x95\xf2\xa0\xfe\x70\x3c\xa8\xa3\x88\x07\x75\x42\xf0\x80\xfd\x0e\x50\xef\xa0\x2d\x08\x09\xd6\xac\x3f\xc5\x2c\x56\x2d\xd7\x4a\xad\x2a\x09\x60\x60\x9e\x45\x03\x5a\xc5\x57\x17\x11\x2b\x74\x04\x57\x61\xe3\x45\xb1\x45\xe9\x05\x65\x9c\xa3\x08\x7e\x5f\x6c\xe9\xaa\xba\x69\x3b\x09\x01\xce\x9b\x71\x3c\x9d\x2f\xd7\xdb\xfd\xf1\x74\x0f\x7c\xc2\xde\xbe\x7b\xff\xe1\xe3\x27\x00\x84\x60\x04\xc5\x70\x82\xa4\x68\x86\xe5\x78\x41\x94\x64\x45\x15\x0f\x40\xe1\x40\xc2\xb2\x3d\x03\x7f\x4a\x7e\x10\x46\x71\x92\x66\x79\x51\x5a\x06\xde\x6f\xfd\x30\x4e\xf3\xb2\x6e\xfb\x71\x5e\xf7\xf3\x7e\x3f\x04\x23\xb6\x01\x28\x1b\x08\x90\xaa\x81\x2f\xc9\x0c\xcb\xf1\x82\x28\xc9\x8a\xaa\xe9\x86\x69\xd9\x8e\xeb\xf9\x41\x18\xc5\x49\x2a\x74\x96\x17\x65\x55\x37\x6d\xd7\x0f\xe3\x34\x2f\xeb\xb6\x1f\xe7\x75\x3f\xef\xe7\xfb\xfb\x83\x10\x8c\xa0\x18\x4e\x90\x14\xcd\xb0\x1c\x2f\x88\x92\xac\xa8\x9a\x6e\x98\x96\xed\xb8\x9e\x1f\x84\x51\x9c\xe8\x0b\xa0\xbb\x00\x79\x0b\x62\x75\x23\x2d\x80\xac\x02\x44\x29\x80\x1e\x03\x38\xf2\xef\x8f\xe7\xcb\x66\x00\x45\x06\x4d\xff\xc3\x90\xe4\x72\x73\xff\x4a\x0f\x25\x06\x90\x56\xa0\x78\x01\xec\x5f\x21\x63\x9f\xf8\x25\xbf\x4c\xd1\x16\x48\x86\xf3\xc9\x19\xcb\xf8\xaf\x4b\xfc\xf7\xf7\xaf\xed\x20\x0a\xd7\xf3\x80\x42\xbc\x46\xac\x1d\x05\x57\xed\x2e\x20\x07\xfc\x7d\x50\xff\x43\xb3\x09\x62\xcd\x50\x57\x8a\x0a\xea\xa6\xf2\xba\x99\x96\xeb\xd6\x8c\x48\x2c\xd5\xe8\xbd\x85\x3c\xe6\x3c\xce\x54\xfa\x70\xcb\xfe\x30\xc7\xf4\x0c\xa7\xf3\xdf\xcf\x57\xa5\xc0\x13\x46\x2e\xcb\x24\xe3\xe8\xc7\x97\x2f\x94\xd7\xac\xae\x98\x1f\xaf\x5d\xda\x1d\xdc\x63\xc6\x7d\xc1\xcc\xcf\x66\xe1\xca\xed\x94\xd1\x8d\xe2\x8d\xda\x38\xdd\x24\x2b\x77\xcc\x48\x60\x1c\x28\x65\xde\x6e\x63\xee\x37\xc4\x09\x9f\xa8\xf5\xa1\x2c\x2b\x1c\x0e\x74\xd8\x92\x89\x68\x2b\xa0\xb6\x89\xbc\x5a\x23\x23\xf3\x9e\x40\x27\x18\x03\x4e\x2d\xcb\x78\xb2\x51\x97\xef\x8d\x1a\xe2\xd7\x9f\x67\x15\x95\xa1\x2c\x95\x44\xb5\x62\x44\xad\xed\x94\x77\x52\x53\x62\x3b\x87\xc1\x8f\x67\xbb\x22\xb5\xc0\x70\xa6\x98\x5f\x0d\xc8\xc5\x61\x48\x17\xdc\xea\x7a\xcb\xfc\xb8\x18\x0f\xc6\xe8\xcc\xee\x04\x88\x48\xe5\xb4\xdb\x11\x09\xe3\x22\xc4\x4a\x8a\x18\x8c\x0b\xa9\x06\xb4\xb1\x91\x80\x8b\x89\x30\x61\x5c\x28\x47\x9b\xd4\x2e\x21\x10\xc6\x85\x54\x8e\x36\x36\xa0\xb4\x34\xa1\x9c\xe4\x96\x01\x20\x26\x94\x71\x91\xc0\x58\xb7\x36\x36\x2d\xcb\x89\x30\xa1\x21\xce\x39\xe7\x9c\x57\x00\x20\xc2\x84\xb2\x04\x51\xb1\x48\x4d\x29\x2b\x05\x54\x47\x52\x15\x00\x12\xca\xb8\x48\xeb\x3a\x02\x2a\xc6\x99\xd2\x69\x59\xcd\x44\x78\x4a\xe7\xa0\x2f\x44\x5a\xdd\xc2\xa1\xf1\x8f\x02\x00\x61\x42\x19\x17\x52\x8d\x9a\xda\xd8\x83\x6e\x14\x7f\x09\x80\x20\xc2\x84\x32\x2e\xa4\x4a\xa6\x7f\xb8\xcd\xa7\xd7\x5a\x51\x5a\x64\xc1\x75\xc9\xa7\x71\x70\x47\xc1\x27\x75\x4d\x8f\xe2\x7a\xdd\x11\xba\x2b\x5c\x5e\xfa\x36\x7a\x8d\x45\x44\xb7\x24\x60\x07\x6c\x6e\xf3\x28\x0c\xe1\x6c\x77\x83\xbb\xb8\x41\x8e\x5f\xd1\x5e\xf2\xd6\xa9\x40\xc7\x75\xd2\x15\x91\xb6\xd4\x53\x58\xa9\xe0\x61\x6b\xf3\x05\x3d\x2d\x0b\x33\xf6\xd7\xb3\x8b\xa5\x5c\x0a\x40\x8c\x58\x3b\xa2\xa3\xdf\xbf\x7d\xff\x1e\x87\x71\x5f\xc0\x63\xbe\x4e\x9f\x28\xfc\x6e\x2e\x71\x77\xcb\x73\xf8\xf0\xb1\xbf\x49\x49\xe2\x28\x0f\x19\x5f\x86\x99\x79\xf7\x53\x3b\xe0\xd8\x68\x6e\x9e\x9e\x3e\x6a\xee\x69\x4f\x6f\x35\x7c\x4e\xc4\xd0\x93\x3d\xff\xc6\xce\x24\xe1\x0e\x1d\x2d\xc3\x3d\x6a\x57\x3b\xb2\xc8\x26\xa0\x17\x72\xc8\x25\xa4\x35\x79\xe4\xd3\x86\x38\x09\x0a\x28\xa4\x88\x62\x22\xda\xd1\x9e\x0e\x74\x54\xa7\xf8\xd4\x94\x6e\x01\x1c\x3d\xea\x8a\xe7\x9c\xaa\x1e\x05\x07\x12\x75\x96\x0b\xda\x6f\x9f\x0a\x1e\x12\x84\xe9\x09\xe6\x96\x99\x5e\x90\x92\xf0\x1c\xa9\x0a\xe7\xba\xb5\xa7\x8a\xa5\x12\x1f\xbb\xab\x3e\x34\x76\x2e\xf2\xa3\x00\x4c\x22\x31\xf6\x63\x00\x13\x14\xf9\xa8\x2e\x4a\x8e\x7d\x0a\xc0\x2b\x89\x40\x0e\x1c\x81\xe4\xf8\xa9\x70\x6b\x0b\xc8\x34\x51\xdd\x50\xae\x31\x65\xd0\x08\xf8\x85\x00\x93\xa4\xfa\x93\xfb\xf4\x55\x28\x67\x8a\x9d\xe2\xf5\x00\x9b\xff\xb0\x8c\x0f\x3d\xa4\x8e\x6f\xca\x77\x32\xf7\x73\x0b\xb2\xa1\xe8\x20\x3c\xe3\x51\x01\xd3\xbe\x20\x61\x0d\xb7\x75\x94\xda\xc3\x7d\xc8\x6e\x8d\x2f\x94\xa6\x5c\x6a\xf8\xe2\xf1\xb6\x69\xf5\x4e\xdd\x62\x8b\x44\x00\x4e\x62\x56\xf6\x5d\x93\x93\x2c\x3b\x4a\x83\xba\xde\x8d\xce\x0e\x4a\x39\x1c\xb1\xe4\x76\x09\xb0\xb4\x28\x6d\xa8\x3e\xc8\x22\x9c\xfd\xba\xbe\x5a\x3b\x0a\x43\xd7\xd5\x02\xa2\xe3\x67\x71\xf9\xfd\x66\x33\x13\xc3\x6c\x96\xfb\xe6\xd8\x78\xaf\x39\x19\x57\xcb\xaa\xa9\x56\xee\x7e\x71\x8c\x37\xae\xf8\xe8\xe4\x0c\xbc\xd5\x01\xc0\xa7\x87\x44\xf4\xe2\xc6\x76\xed\xdd\x4c\x88\x9f\x42\x45\x67\xd9\xae\x3b\x40\xef\x72\x06\xca\xb7\x33\xac\xdc\x5b\xcc\x6c\xce\xf7\xdd\x01\x51\xce\x9b\x05\x64\x94\x83\x77\x6e\x4c\x5f\xb2\xd0\x09\xe2\x9f\xf8\xee\xb4\x47\x0c\xe5\x11\x7a\xb7\xb4\xa8\xaa\x45\xad\xa8\x56\xed\xba\x43\xa6\x9d\x62\x24\xd5\x1d\xb2\xc7\x6a\x36\x23\xed\xe8\xd7\xb7\xa2\x1e\x82\x47\x8d\x6c\xaa\xf5\x55\x51\x6d\xbb\x1b\x82\x0f\xe3\xb7\x99\x0b\xd4\xde\x68\x1f\xdf\x8d\x6e\x9f\x9b\xe5\x65\xb9\xf7\xb8\xd7\x33\xa7\xfe\x0f\xdf\xc3\xce\xad\x0b\xef\x09\x9d\xa8\xa9\xd3\x2c\x48\xff\xeb\x24\xd2\xa8\x1b\xc8\x28\x19\x46\x3f\xe9\x37\xcd\x86\x64\x79\xf2\x42\x6f\xe2\xf0\x7c\xda\x9d\x47\x25\x68\x46\x1f\x09\xeb\xad\x59\x9e\x17\xb7\x5e\xed\xe6\x16\x33\x76\x45\xe7\xe0\xc6\xe8\x3d\x77\xb4\x7c\xb4\xe6\xc7\x98\xc8\xf9\xb2\x3b\x27\xb5\xb2\x71\xe4\x0c\x13\x99\x5b\x43\xed\xe3\xd6\x98\x97\xf1\x44\xf5\xf6\x4c\x77\xa4\x7e\x36\xe8\xf7\x75\xd0\x6f\x1b\x7d\x3c\x88\x8f\x66\x4f\x1c\xa0\x4f\x98\x4f\xdd\x40\x7c\x56\xf6\xed\xca\xca\x49\x8c\xef\x7a\xd1\x32\xb4\x74\x90\x3a\x77\xf9\x6c\x5f\x57\xd0\x53\x72\x3a\xb5\xfe\xf4\x5a\x3d\x1b\xa4\xca\x4d\x82\x4e\x00\xae\x8c\x96\x92\x91\xb8\x93\xc0\xf4\xcc\xde\x6b\xa5\x6d\xb6\x20\x29\x9a\x5d\x18\x48\xf3\xfb\x27\x2b\xe2\x4a\x39\xc3\x1a\x3d\x60\x92\x10\x82\xf1\x0c\x95\xa3\xc7\x32\x12\x83\x18\x40\xc5\xd9\x45\x2f\xca\x4b\x11\x12\xe8\x45\x2d\x7d\x81\x9e\x80\xa4\x10\x19\x67\x2a\xa3\x8e\x70\x17\xc1\xad\x16\x8e\xa6\xdb\x72\x36\x6f\x33\xd0\x16\xe2\x90\x75\x11\xac\x6a\x81\x4a\xb7\xf9\x20\xec\x21\x00\x09\x01\xea\x62\x57\x4b\xae\x57\x24\x15\x94\xb6\xae\x0e\x40\xef\x30\x5a\x2c\x6a\x02\x3b\xb7\xdb\x5c\x2e\xe8\x2a\x14\xe8\x10\x90\x2e\x81\x18\x90\x0e\xe3\x82\x2c\x5a\xd7\x75\x75\xe6\xcd\x23\x08\xde\x17\xd8\x3b\x37\xff\xca\x8b\x66\x9d\x4e\xf6\x31\x5f\xd0\x1c\x3e\xcc\x05\x1f\x82\xa0\x59\x88\xdd\xbb\x03\xcc\x59\x3a\x44\x18\x0e\x45\x88\x3e\x52\x72\x28\x1a\x4f\x51\xdb\x51\xd1\xc6\xbe\xc5\x15\xca\x58\x93\xa0\x3d\x12\x34\x9b\xa9\xcd\xda\x77\x62\x1e\x03\xa9\xc1\xba\xee\xa9\xb2\xae\xc7\x8d\x71\x3e\x1a\xbb\x38\x19\x97\x93\x14\xc1\x9f\xa8\xbc\x9d\x99\x69\xc7\x5b\xd2\x88\x4d\x0b\x30\x4d\x92\x14\x93\x4a\x2a\x1b\x6c\x26\xe4\xfd\x24\xee\xf7\x29\x2f\x34\x99\xdc\xce\xa2\xe0\xc6\xe3\xea\xbc\x29\xf3\x34\x90\x6a\x3c\xff\x16\x7a\x85\x1d\x9c\x5f\x9f\x14\xb2\x02\x45\xbb\x7c\x62\xe3\xc1\xbe\xc3\x61\x33\x0e\x7c\xb8\xf9\xbe\x2a\x4c\xac\x62\x18\x6e\xb6\xa2\xb2\x12\x05\x74\x97\x5d\x74\xa9\xba\x61\x96\x51\xd8\x28\x6f\xcb\xdb\xd4\x3c\x6f\x8d\x3d\x4c\xa0\xd2\x04\x20\xe4\xf4\xa5\xf1\x68\x50\xee\xf9\x72\xe8\x87\x4a\x7d\xdd\x48\x59\xd9\x9d\x13\x74\x9c\x6c\x64\xda\xf5\xe9\xc9\x64\xd1\x94\x0d\x6e\x31\x0d\x80\x73\x98\xa5\x9e\x8d\xe6\x1a\x4d\x00\x84\xa9\xd4\x66\x38\x6d\xb7\x08\x00\x22\x12\xaf\x8a\x01\x86\x5a\x06\x95\x00\x82\x38\x56\x4b\x11\xf0\x30\x62\x5c\xe8\xaf\x7d\xdc\x97\xf6\xa7\xc7\xb7\xcd\xf3\x7e\xbe\xfc\xb4\xa3\xd7\x97\x7d\xfc\xbf\xbe\xbc\xed\x4f\x8f\x47\x53\x2f\x1f\xf4\x67\x37\xfb\x67\xf5\xff\x79\xf4\xfd\xff\xdf\xcf\x4b\x1e\x7d\xff\x7e\xfe\xb5\xd1\x77\x8f\x4f\x78\x09\x7e\xa1\xa9\x87\x13\x6e\x44\xd6\x6d\xbb\xc7\xd0\x7d\x85\x1d\x5e\xf1\x4e\x59\x1d\x46\x2b\x3d\x07\x81\xa8\x79\x77\x64\x89\xa0\xbc\xcd\xac\x2a\xda\xb1\xed\xf6\x06\x88\x82\x33\xc6\xf4\x61\x42\x19\x57\xd2\xd1\xc6\xc6\xcf\x5a\x42\x98\x50\xc6\x85\x0c\xd4\x1e\xd0\xc6\xc6\xaf\xa4\xd5\x8f\x5c\x44\x08\x13\x1a\xe4\xd6\x6d\x18\x53\x36\x0d\x53\x80\x9a\xfe\xe1\x16\x20\x88\x06\x8e\x50\xc6\x85\x54\x8e\x36\xb6\xdd\x3a\x00\x10\x61\x42\x19\x17\x52\x39\xda\xd8\xf8\xad\xb5\xd6\x5a\x6b\xad\xb5\xd6\x5a\x6b\x6d\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\xad\xb5\xd6\x5a\x6b\xad\xb5\xd6\x5a\xeb\xba\x75\x05\x28\xe3\xe2\x31\x07\xf5\x5b\x3f\xe3\x18\xf7\x1b\x65\x49\x65\x6d\xa3\x3e\x6e\xe5\x15\x61\xdd\xa6\x1f\xc2\x6c\x8c\xc1\xce\x03\x23\x2f\x4d\x83\xe0\x2a\x0d\xa2\x3e\x6e\xad\x15\xb9\x71\x5a\x31\x10\x2f\xca\x08\x0d\x84\x6d\xa0\x47\x85\x3e\x6e\xb1\x95\x56\xc6\xd2\x11\x85\x09\x30\xca\x10\x3b\xc6\x6e\x1b\xbe\x20\x64\xcc\x16\x48\x00\x7f\x9e\x48\xf4\x7f\x73\x13\xed\xdd\x49\x9f\x00\x0e\xfd\xd3\xca\x1d\xfc\xff\x40\x39\xc6\x8d\xbb\x40\xf8\xea\x3f\xc0\x3a\x1f\x80\xf2\xfc\x78\xc2\x2f\xf6\x4d\xb0\xc6\x3c\x66\xae\x6b\xbc\xd2\x7c\x87\x49\x1c\xab\x33\xea\x1d\xd5\x99\xb8\xbf\xfa\x7f\xeb\x8b\xc9\xdf\x1f\x7f\x87\xc2\x51\xb3\x02\x3f\xfe\x4b\x34\x30\x80\x63\x1b\x1c\xbf\x09\xe1\x5f\x67\xec\x77\xe8\xc8\xf2\x4f\xc2\xbe\x47\x5a\xe5\x55\xe6\x05\x60\xfe\xc5\x5f\xf7\xcc\x8b\x10\x1c\xff\x59\x0f\x2e\x69\x12\xfb\xc9\x53\x66\xaa\xf1\xd1\xf3\x9f\xd9\xc1\xc0\x7f\xf6\x06\x67\x37\xa6\xda\x3f\x06\x00\x00\x01\x00\x00\xff\xff\x99\x58\x85\x30\x84\xcf\x00\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff2() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff2, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.woff2", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_eot = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x55\x50\x1b\x00\xb3\xa8\x93\xe0\x1e\xdc\xdd\x82\x07\x08\x6e\xc1\xdd\xb5\x2d\xee\x14\x77\x2d\x45\x82\x43\x71\x29\xee\x5a\xdc\xa5\xc5\x29\xee\xa5\x50\xa4\x78\x71\x28\x0e\x45\xee\xdc\x7f\xfe\x87\x3b\xf7\x3c\x9d\x6f\x1f\xf6\x9b\xdd\xd9\xd9\xdd\xca\x2d\x00\x20\x72\x13\x00\x00\x01\x40\x00\x64\xc0\xff\x0b\x10\x70\x0d\xfc\xbf\x59\x4d\xeb\x15\x04\xd8\x7c\x47\x07\x00\xd3\xfd\xb7\x53\x00\x04\xd0\x01\x00\x40\x4d\xad\x03\x22\x4c\xc0\xff\x80\x09\xa0\x03\x70\x05\x58\x02\x5c\x01\x5e\x00\x57\x00\x1d\x40\x1d\xe0\x0a\x70\xf9\xaf\xd9\x00\xac\x01\x0e\x00\x6f\x80\x33\x00\x00\xc0\x05\xe8\x00\x6c\x00\x76\x00\x6f\x80\x13\xc0\x02\xe0\x01\x00\x00\xf4\x00\x06\x00\x1b\x80\x07\xc0\x13\xe0\xf0\x9f\x19\x3a\x00\x1f\x80\x1b\x00\xfd\x4f\x88\x00\x84\x01\x02\x00\xb1\xff\xd4\xa0\x00\xde\xff\xba\x17\xc0\x0b\x60\x0b\xb0\x00\x78\xff\x67\x97\x3d\xc0\x01\xe0\x02\xf0\x02\xd0\x01\x20\x00\x1f\x00\x2f\x80\x1b\xc0\x0f\x60\xfb\x5f\x5c\x04\x00\xc8\xe8\x2a\x6a\xfd\xff\xff\x20\x01\xe1\xc6\x80\xfa\x3e\xc0\x54\x34\x20\x85\x9b\x68\xea\x30\x7e\xe6\x47\x34\x79\x53\x76\xd8\xf5\xd9\xc5\xa5\x1a\x55\x36\x95\x3d\x0c\x76\x66\x9f\x34\x87\x5b\x0a\x42\xfa\x27\x3c\x72\x87\x9c\x15\x20\x58\x91\x14\x9f\x75\x9a\x96\xdb\x8a\x5c\x46\xa9\x2d\xe3\x8b\xb1\xe1\xed\x52\x9e\xab\xd1\x33\xcc\xe6\x60\x17\xc3\xd7\x0f\xeb\x24\xd3\xde\xe3\xb3\xd5\x55\x39\x85\xc1\x75\x25\x9e\x56\x89\x52\xbf\x5a\xc9\x8e\xd7\xf4\x86\x56\xa9\xef\x8f\xa9\x0a\xa9\x46\x7d\xdd\x0f\x9f\x99\xd2\x58\x91\x0e\xd2\x3e\x6b\xb5\xd5\xcf\x1b\x43\x5b\xc9\x8f\x1f\xbb\x63\xbe\x51\xed\xa1\xd2\x10\xc7\x00\xc9\x22\xeb\x70\x0a\xb4\xe1\x06\x48\xad\xa3\x73\x8d\x2f\x79\xa8\x0a\xae\x18\x45\xc2\xbf\x41\x1a\x98\x6e\xa6\xbb\x66\x4b\x17\xe0\xaf\x5b\x4c\x4e\xcd\x75\x0e\x40\x85\x67\x97\xbb\x9b\x5e\x71\xee\x6e\x2e\xf8\xb1\xdb\x38\x52\xc8\xc3\xab\x2a\x12\xd7\x86\xf3\xe9\x31\xc5\x00\x30\xcf\xbf\xf5\xbb\xd1\x5d\x00\x19\xc8\xc4\x05\x82\x4f\x67\x7f\x04\x9e\x02\x8f\x0a\x14\x17\x94\x55\xc1\x69\x43\x07\xe3\x87\x70\xe5\xc8\xb1\x60\xd7\x9a\x9b\x53\x25\xc9\xc3\xfc\xd8\xd3\x30\xb7\xb9\x6d\x2d\x14\x19\x64\x30\xd8\xbc\x16\xd4\x86\x0c\x00\x4b\xb6\x09\x74\x96\xe3\x22\x7b\xdb\x1d\x88\x0e\x06\x53\x5e\xff\x8a\xfc\x01\x2b\x2a\x53\x4f\xbf\xb4\x8d\xf2\x3a\xf6\x17\x1b\x91\x77\x73\x4b\xdf\xdb\x80\x83\x00\x49\xe8\x70\x4b\x64\x30\x24\x14\x81\x4b\x17\x8a\x1c\x0d\x91\xb6\xc4\x06\xdb\xe7\x40\x03\x85\x2c\x50\xf1\x2d\x58\x08\x2d\x14\x88\x2d\xec\x8e\xb1\x7a\x96\x13\x86\x91\x9c\x04\xa2\x83\x47\xd1\x4e\x43\xfc\x0f\xd0\x0c\x42\x3e\x34\xe0\x36\xe2\x2c\x19\xf6\xd2\xb7\xef\x09\x5e\xa2\x2e\x17\x2e\x90\x61\x41\x37\x9b\x71\x55\x79\xb5\x9a\xb9\xde\xdb\xe8\x4d\x53\xd8\xbd\x98\x3d\x64\x06\xe8\xff\x4e\xc7\xd8\x83\x63\xd7\x5c\xea\x01\xc7\x43\x94\xc1\x58\x0c\x68\x4a\x88\x26\x3a\x06\x39\xe4\xd1\x90\x72\x52\x4f\x74\x6c\x0b\xe0\x17\x3a\x11\x04\x5a\x43\xdd\x17\x3a\x79\x04\x06\x34\x54\x10\x0c\x19\x40\x31\x82\x37\xa3\x93\x5a\x20\x61\xd3\xd9\x84\xc6\xe1\xed\x20\xf0\x2c\x90\xee\xe5\xd8\xc5\xe0\xa5\xf8\xf4\x94\x5a\x03\xe3\xb6\x85\x63\x04\x44\x84\x09\x28\x64\x10\xa4\x12\xd7\x5c\xca\x88\x1a\xa2\xb5\x9d\x86\x2e\xc9\xe4\x9a\xcf\x45\x41\xbd\xb7\x32\x06\xc8\x36\xcf\x66\x91\x9b\x5c\x56\x0c\x11\xfa\x58\xd8\x3a\x6e\x5c\x2f\xbc\x51\x6e\x21\xdf\x71\xe4\xa1\xdf\x9e\x0d\xb6\x59\x3e\x98\x5e\x97\x54\x69\x08\xc3\x11\x58\x59\xc5\x7e\x9a\x19\x2b\xf3\xcc\x56\xfd\x0d\x8c\xc2\x26\xd1\x87\xa3\xee\xbc\x93\x55\x59\xd7\x1e\x0a\x9c\xb9\xd6\x33\x9c\x4e\x02\xb3\xd8\x4f\x5b\xb6\xa6\x26\xff\xa8\xdb\x3f\xbd\x27\xd2\xc0\x68\x6e\xe2\x0d\x82\x1c\xb7\x2b\x9c\x2a\xcc\xb2\x81\x74\x20\xdc\xff\xca\x9d\x5c\x30\xda\xd8\x5d\xd1\x5a\xb9\x5d\x02\xa5\x5d\x1c\x10\xac\xf3\x18\xeb\xde\xb6\x2e\x39\xb6\xbb\x2f\xc2\x28\x70\x5d\xc2\x7c\xe7\x41\x38\xc5\x4b\x9a\xd6\xcf\xc8\x34\xd9\xb0\x30\x01\x04\x44\x31\xd1\xfc\x27\xfa\xf1\x37\x7d\x3e\x02\x7c\x0e\x49\x9b\xf9\xb3\x4f\x56\xe5\x3f\xa6\x4e\xd9\xd1\x8d\x2f\x95\x5d\xb6\x4c\x88\x46\xaa\x8a\x96\x61\x0c\xdc\x52\xa1\xe8\xc4\xa8\xe6\xf4\x11\x6e\x46\x11\x45\x62\x0f\xb0\xb5\xbc\x07\xc2\x34\x55\x05\xa5\x90\x81\x58\x0c\x59\x71\x28\x32\x4e\xc2\x3f\xe7\xa4\xbb\xd7\xaa\x1f\x41\xb4\x20\x10\x71\x23\x8a\x82\x11\x36\x0e\x74\x26\xf6\x5e\x6c\x70\x8d\x3d\x0c\xca\x22\xd6\x6d\xb0\xdd\x55\x27\x3c\xd6\x31\x3f\xa4\xb9\xde\x59\xc1\xbd\x89\xdb\x76\xd3\x07\xde\xe0\x19\xcd\x15\xe9\x71\x43\xca\x72\x3a\xf3\xf4\xa9\x68\x32\x69\x63\x5e\x18\x1d\x9c\x50\x24\xf0\xd5\x38\xfd\x19\xda\x4c\x11\xd5\xf8\x65\x85\xd3\xd3\x15\xf7\x38\x27\xae\xc6\x69\x8b\x5b\xba\x41\xcd\x09\xb5\x7f\xff\xa7\xef\x61\xce\x3f\xdc\xb5\xa1\x7e\xbf\x19\x61\x42\x0f\xcd\xca\xe4\x6f\x65\xec\x82\x88\x45\x3e\x25\xb2\x76\x3a\xc3\xc2\x10\x14\xcd\xab\x17\xc9\xa1\x67\x3c\x91\xbf\x45\x70\x82\xe3\x4c\xe9\xcc\xdc\xb8\x31\xad\xe5\x11\xd6\xf1\xbf\xf5\x8a\x88\x7b\x17\x4c\xc0\x94\xd7\x2e\x23\x83\xf9\x19\xdf\x6c\x40\xbb\xa4\x14\x52\xc9\xbe\x4b\xd0\xea\x1f\x96\xc2\x80\x69\xe4\x39\x26\x74\xee\x5c\x5c\xa9\x89\x8b\xef\x25\x94\x70\x0c\xd8\x0a\x65\x22\x22\x04\x24\xf2\x37\xd9\x29\x48\x1c\x3b\xd0\x9d\x6a\xa5\x54\xfe\x3b\x09\x4a\xad\xa1\x36\x01\xef\xcf\x82\x46\xf4\xcc\xf8\x1a\xf9\x74\x87\x7e\x25\x19\x35\x14\x3c\xb3\xfb\xc5\xa1\x0c\x54\x65\x9f\xc2\xa2\x65\xa4\xe5\x0e\x3d\x55\xe4\x4a\x98\x46\xec\x20\x72\x08\x9e\x50\x09\xef\x40\x46\x38\x8f\x38\x13\xca\xc7\x3a\xd2\x79\x26\x5d\x19\xaf\x2f\xc4\x01\x16\xfc\xfe\x1c\xa1\x9c\x29\x1b\xc8\x29\x5a\x2d\x03\x29\x25\x14\xf3\x64\x23\x23\x0c\xb6\xf1\x56\xef\x37\xbc\x8a\xbc\x50\x4e\xfe\x0d\x32\x1c\xde\x70\x74\x0e\x92\xfd\xe8\xac\xaa\xdd\x3e\xfb\x27\x8f\x67\x41\xf4\xeb\x2f\x56\xe0\x77\x00\xf6\x38\x5f\xdd\x00\x1a\x90\x4e\x99\xc6\x4a\x53\xd9\x27\x9b\x50\x77\xf1\xc6\xb6\x4a\x05\x6f\x48\xcc\x1a\xd8\x6a\x38\xab\xbf\x61\x7c\xc5\x0d\x16\x7b\xc9\x64\x03\x17\x55\x57\x8f\xef\xa2\xa5\x17\x07\x6c\x21\x6b\x5c\x29\x72\x7f\x46\xec\x12\xfd\xc1\x05\x9b\xa3\xbc\x8b\x23\x99\x13\xe4\x28\xc9\x3a\xc0\x36\x94\xe6\x68\x6e\x57\x6c\x53\x5b\x92\xd1\xd2\xbf\xf6\x7a\x0b\xca\x6f\x2c\x5f\xc8\x00\xe4\x87\x65\xcd\x4d\xaf\xd9\x6d\x50\x5d\x0a\xb6\x7e\x97\xb8\x89\xb7\xac\x2d\xa9\x6f\x37\x90\xf5\x16\x43\x15\x1f\x39\x2d\xa3\x8f\x61\x84\xfd\x73\xc1\x66\xb8\x1d\xcb\x11\xf3\x00\x11\x67\x1f\x41\xf9\xc9\xe9\xe3\xc9\x91\xbd\xc5\x87\x67\x06\x0f\xd0\x93\xf9\xec\xd0\x8b\x75\x69\x1c\xac\xa2\xcc\x86\xd4\x3d\x8b\x4e\xb0\x03\xdf\xee\x62\xbe\xf1\x6b\x8a\xa0\xac\xe0\x67\x66\x5c\xe5\xac\x0e\x47\x0d\xf2\x25\x32\xcf\xc5\x8e\x4f\x68\xe7\xd9\x54\xaa\x46\x16\xe2\x55\x4f\xd2\x12\xf6\x90\x14\x4a\x61\xe4\xe5\xc8\x09\xf4\xa5\x26\x13\xca\x9c\xf0\x13\x00\x77\x6b\xa8\xdc\x88\x5f\x42\xdf\x41\xf8\x4d\xf8\x6c\xdb\x52\x60\xcd\xf9\x8f\x44\xdb\xfc\xfb\x2d\xc2\x98\x50\x5a\x02\x52\x1c\x75\xba\x2d\x24\x28\x07\x44\xb9\x78\x9c\x6d\x97\xa1\x21\x49\x82\x5e\x46\xa9\x99\x16\xdd\xd2\xbe\x70\x30\xb9\x3d\x6c\x9e\xb1\xdd\x6b\xc8\x2b\x69\xfb\xb3\x77\xb1\x49\x8f\xd6\x44\xb6\xae\x46\xc6\x20\x00\x74\x10\xa7\x35\x10\xce\x90\x4b\x85\xbd\xf1\x46\xa2\xa3\x0c\x43\x92\x8a\x0a\x31\x47\xa8\xb8\xf2\x29\x2e\x60\xb0\x05\x4f\x38\x5f\xe4\x80\xe5\x6d\xfc\x82\x4c\x17\x03\xf9\x70\x83\x43\xc8\xb4\x82\x5b\xeb\x89\xfb\xec\xa7\xa1\x5a\xb5\x4c\xad\xbf\xe5\x6e\x76\x20\x6f\x42\xe1\x35\x8b\x26\x47\x1d\x97\x34\x8e\x3d\x06\x81\x71\x13\x13\x6f\xfc\xa6\x2c\xa4\x09\xd1\xfa\x0c\xef\x0f\x03\xe1\x74\xe5\xe0\xc6\x18\x06\x9c\xb4\x29\x41\x51\x81\x8e\x54\x40\x8b\xbe\x03\xba\x85\x13\x80\x8c\x67\x00\x99\x07\xa3\xc5\x08\x4e\x54\x67\xe9\x2b\xb0\x09\xa0\xc0\x82\x08\x11\x28\x21\x81\xeb\xae\xdd\xcf\xd1\x63\x08\x5d\x48\x37\x51\x79\x2a\xce\xa1\x70\xe0\xb7\xd0\x51\x39\xbc\x13\xa3\xaf\x22\x4d\x4b\x9c\x5d\x4a\xbc\xf3\x74\xa7\xf9\x72\x90\x17\x9f\x0c\x7f\xe2\x0f\x4f\x7d\x35\xa4\xa8\x2f\xf4\x39\x92\xb2\x9c\x0e\x09\xa1\xaf\x54\x12\x42\x83\x2f\x5c\xf5\xd0\xf1\xb2\xbb\xfd\x9e\xfe\xed\x77\xc4\x59\x0e\x62\x86\x0f\x48\x41\xb3\xe2\x49\xae\x63\xd8\x75\x02\xa3\xe2\x7b\xf9\x8e\x13\x48\xfb\x1f\x00\xdf\xd9\xff\x1a\x84\xcd\x7e\x52\x13\x01\x1e\xb8\x93\x04\x08\x3d\xbc\x89\xfc\xce\x3f\xb0\x9a\x9f\xd0\x91\x81\x9b\xc7\x14\x6b\x10\x4a\x65\xfb\xe5\xa1\x96\x56\x46\xc1\x5d\xa4\xe6\x73\x31\x02\xd9\xf7\x91\xc7\x43\x5f\x44\x64\xe5\xf2\x4c\xfd\xbc\x8c\x03\xfa\xc6\x6e\x39\x82\xf3\x91\x4e\xd8\x4e\xc0\xf9\xb7\xcc\x68\xcc\x6f\x99\x48\x09\xcc\xa6\xb3\x47\x22\xe4\x47\xee\x22\xec\x7d\xd5\x30\x49\x65\x8e\x3f\x15\x72\x07\xb9\x7f\xa0\xf7\xf2\xc2\xb2\x9c\xf6\x79\xa9\x47\x5a\xd6\xf9\x62\xb6\xa7\x5f\x3f\xec\x01\xec\x9c\x3e\x58\x22\x79\x97\xde\x51\x81\x0b\xd3\xe7\x77\x76\x2e\x1c\xf6\x9e\xfb\xdb\x0f\xf4\x6a\x2b\x75\x5d\xf9\x6e\x76\xb7\xd1\x5f\xb2\x7d\x75\x96\xb9\xcc\x13\x54\x1f\x3f\xab\xd8\xba\xa3\x5e\x70\x6e\x2a\xe9\x8b\x5a\xe6\xcf\x26\x88\x89\x7d\xf3\xa5\x52\x3d\x48\xd1\x20\x7a\x86\xa0\x08\x1c\x1f\xc5\x5c\xef\x6f\xd8\x1e\xb8\xbd\x24\xcc\xe7\xea\x02\x65\x50\xab\x66\xd8\xfa\x86\x6d\x24\x58\x96\x4c\x57\x27\x51\xa7\x97\xe9\x09\x43\xf7\xe9\xa0\x52\x34\x6e\x74\xb4\x42\x9a\x6d\xee\xa6\xab\xa1\x8f\x9c\xed\x61\x3a\x5c\xd2\xd7\x87\x9a\x54\x32\xcd\x3a\x4b\x44\x1e\xfe\xa4\x48\xc4\xda\x85\xb3\x5f\x2b\x70\x9c\x13\x93\x38\x95\x25\x92\x96\x0c\xae\x2c\xd4\xe5\x43\xb0\xac\x1a\xfa\xcb\x33\x78\x45\xae\xb4\x4d\xd5\xc9\x7d\xb8\x94\x87\xc5\x40\xc6\xa3\x2d\x56\xe3\x27\xfa\x44\x96\xe8\x3b\x16\x43\xfe\x6b\x86\x74\xff\x70\x01\x19\x3d\xa1\x60\x1e\xce\x9e\xa2\x7c\xba\x42\x46\xa2\xed\x2d\x54\xb1\xa3\xde\xf4\xc5\xb8\x94\xf0\x3c\x12\xbd\x5c\x02\x79\x15\xf6\x8e\x42\xdc\xca\x43\x24\xdc\x0e\x9d\xc2\x1d\xe2\xef\x6a\xc9\x06\xc5\x2e\x28\xbf\xc9\x26\x4b\xc8\x2a\xe4\x46\xc2\xa7\xdd\x72\x8c\x39\x8c\xd0\x62\xc8\x17\x2a\x33\x9a\xd4\xe6\x47\x0b\x64\xa4\x54\x24\xf5\x4d\x09\xfe\x98\x3b\x83\xfb\x7c\x27\x5c\xd5\x0e\x80\x1c\xf4\x9c\x7b\x38\x04\x83\x1e\x21\x89\xa0\x85\xa9\x84\x7e\x2c\x3e\xa7\x8f\xcc\x4b\x7b\x00\x56\x6d\x00\xb5\x41\xb3\x3c\xbd\xe6\xc2\xe5\xdb\xd2\x1f\x41\x97\xd6\x35\x62\xc6\x4b\x5c\xdf\xb8\x32\x91\x69\x80\x1a\x58\xac\x8f\xe6\xfd\x39\x4c\x17\xd7\x31\x08\x16\x6e\x3d\xce\xdd\xe9\xdb\x6e\x45\xd5\x5a\xd0\xba\x97\xce\x0b\xee\x5a\x4d\x3b\xa1\x46\xbc\x33\x3a\x6f\xf0\x75\x1d\x17\x83\x57\xb4\xf0\x4a\x8e\x9f\xd9\xf6\xf4\xc4\xb5\x0c\x19\xfa\x99\xf2\xb2\xf2\x88\xbb\x08\xa2\x4d\x98\x5c\x24\xa2\xaa\x5b\xe9\x49\x1c\x4d\x1a\x29\x28\xbe\x51\x41\x49\x40\xe2\x4e\xd1\xb9\xa4\xbd\xf0\xa7\x0c\x96\x25\xb0\x62\x69\x23\xb1\x63\xd3\x31\xf6\xd6\x09\x67\xdb\xf8\xc5\xeb\x52\xe0\xa5\x1c\x75\xde\x33\x41\xb8\x3e\x53\xcc\x7c\x7a\xec\xc3\x62\x3a\xdd\x7d\x8e\xce\xaa\x88\xf4\x9b\xaa\xc4\x6b\xb6\xaf\x67\x3b\xed\xff\xbe\x14\xb4\x19\x60\xf6\x57\xfd\xfd\x75\x23\xce\xb2\x3f\x9b\x30\x4c\x15\xe4\x95\x83\xda\x39\x75\x2f\x91\x40\x26\x0c\xf2\x9f\xfd\x8a\x8c\xe0\xe6\x4f\x56\xac\x22\x2b\xc9\xed\xfc\xd3\x60\x2b\x6d\xdb\x57\x0d\x56\x11\x35\x24\x3a\xfe\x9c\x36\x57\xe0\x29\xc5\xe1\x5e\x00\xbd\x67\xc5\xff\xb6\x75\xd8\xe1\x8b\x81\x63\xa9\xdc\x91\xb9\x27\x96\xcb\x4d\x18\x7c\xf6\xf1\x66\x36\xbc\x62\x11\x59\x21\x86\x8b\x71\x35\x58\xb5\x84\xb5\xa8\x1f\x8f\xd7\xe7\x2c\xa2\x40\xbe\x5b\xb5\x63\x22\xdb\xf1\x05\x26\xbf\xb0\x33\xf2\xc9\x7e\xa8\x1e\xdb\x22\x7a\x35\xf6\xea\x7d\xa4\xbb\xab\x71\x40\xbb\xbf\x48\xd0\xfb\xb4\x0a\x62\xf6\x92\xed\x8f\x96\x73\xeb\x45\xa5\x1f\x87\x5e\x5f\x76\x65\x28\x9e\x89\xb0\xea\x0d\xd5\xdf\x05\x68\x73\xf5\x13\xc9\x5b\x5a\xc2\x22\x4c\x83\x93\x1e\xb9\xb1\x9f\xfd\xe0\x62\xde\x62\x6f\x06\xe9\x33\x7f\x6d\x5b\xf5\x32\x3c\x7d\x36\xb6\x46\xf3\x78\x47\x4d\x17\xc3\x54\x67\xd4\x40\x22\xa1\xac\xae\xa0\x5e\x6b\x36\x05\x37\x7a\x8a\x91\x85\x61\x3a\xee\xb5\xcb\xa6\x3c\xc8\x88\x37\x19\x72\x3d\xd4\x1f\x37\x6f\x5a\x59\x19\x54\x53\xb1\x2b\x36\x2e\xcf\x18\xb1\xed\x9d\x71\x42\x70\xef\x1c\x0d\x35\xde\xa0\xfd\x20\x27\x95\xdf\xe1\x31\xcc\xe4\x3c\x36\x0c\x25\xc1\xfe\x13\xea\x05\xad\x83\xc4\x33\xd0\xef\x84\x0a\xe3\x9d\x66\x11\x5c\x86\xbe\x06\xe3\x5e\x74\x6a\xea\x66\xe4\x0e\xb6\x71\x99\x58\x60\xdc\x80\x24\xb9\x0a\x19\xad\xea\xce\xa6\xcb\xcc\xa8\x0f\x88\x20\xd6\x81\x1c\x19\xfe\x9a\x16\x37\x8b\xaa\x91\xe7\xeb\xa6\xeb\xfc\x26\xf1\xd5\x77\x62\xc7\xef\xf7\xd0\xa0\x8c\x45\xdb\x17\xf0\x60\x43\xa0\x98\xe7\xa6\xf9\x62\xb8\x7e\xdd\x77\x6d\x41\x12\x1d\xea\x77\xb2\xed\x3e\x30\x84\xf0\x6a\x51\x7c\x51\x08\x3c\x36\x2c\x92\xc6\x8e\x46\x1f\x07\x94\xc4\x3e\x4e\xd1\xa2\x26\x8d\x3a\x07\x0d\xdd\xc1\x49\x2d\x94\x6d\xc4\x21\x9c\x1c\xdc\x6b\x7a\x1c\x78\xbb\x3f\x09\xed\xbb\x8f\xda\x41\xe7\xb8\x0a\x4d\x89\x26\xed\xb4\xff\x98\xcb\x41\xb5\x9b\x56\xfe\xc5\xda\x3a\xcf\x81\x46\x50\x5a\x29\x8e\x12\x10\x5f\x38\xd2\xc3\x9b\x3f\x92\x26\x51\xe1\x5e\x82\xbd\xea\x37\x23\xcf\xb7\xc1\x1f\x7a\xc1\x1a\x5f\x18\x18\xb3\x03\xa1\x12\x86\xfd\x6d\xbc\x55\x06\xd3\xdb\x88\xab\x0b\x48\x61\xe0\x96\xa5\x35\x32\xcd\x1b\x1e\xca\xa1\xc9\x18\x65\x34\x6a\x8c\x0f\x78\x9d\x98\x8e\x08\x90\xe9\xf1\x5c\x9e\x6f\xb0\xee\x25\xab\x52\x74\xeb\x7a\x66\x7a\x38\xaa\xd3\xda\x8e\xe1\xb6\x3f\xce\xbe\x9e\x26\x0b\x7c\xb4\x84\x28\xfa\xdd\x41\xcd\xd5\x76\xc5\xb2\xb2\x85\x23\x7e\xe5\x93\x85\x1a\x7e\x62\x94\xb0\xd6\x46\xc8\x7f\x88\xb0\x10\xe1\x4f\x43\xcb\x54\xa4\xe5\x6f\x3f\xed\x88\xe4\xf9\x43\x66\x12\x1e\x5d\x55\xe1\xba\x34\x1d\xe4\x35\x86\x34\x4a\xa6\x8f\xfa\x38\xff\x0d\xc3\x64\x98\xb4\xf8\x43\x6f\xa1\x3c\x9a\xdb\xd0\x3a\x50\x79\x6d\x4b\x29\x45\xf5\xd6\x72\xa6\x39\x0d\x2d\xf2\x53\xcc\xd6\x64\xee\x93\x9b\x14\x36\x5e\x24\xc1\x3f\x26\x99\x8f\xba\x41\xc3\xcb\x2c\xfe\x42\x25\xfc\x0d\x69\xd1\xa8\xb3\x6f\x3c\x08\xdc\xc5\xf2\xb5\x1a\x47\x6b\x52\x6e\xde\x2e\x92\x52\x62\x5a\x16\x73\xa3\x22\xcb\x92\x89\x12\x23\x51\x9e\x58\x6e\x07\x14\x1e\xdf\x87\xcc\xc2\x31\xf9\x54\xc8\xc3\x6d\x09\x5a\x63\x06\xd9\x17\xde\xeb\x15\x7b\x49\xcb\x81\x94\x8e\x4f\x40\xf1\x70\x4d\xa3\x04\x88\x51\xc8\xf6\x32\x69\x13\xca\x48\xcf\xbf\xf2\xb5\x0f\xbd\x0b\x00\x6d\x9e\x95\x00\x7b\x48\xbe\x56\x47\x32\x3e\x8d\xdb\xf7\x37\xf0\x60\xf4\xf7\x06\x6b\x3d\x3e\x78\x1c\xde\x71\x6c\x06\x82\x3a\x47\xca\xa1\xd3\xef\x05\xd0\x99\xc6\xb0\x25\xda\xd9\x36\x67\x76\xa9\x30\xc3\xef\x4b\xdc\x7a\x80\x5d\x01\x88\x27\x99\x49\x86\xca\xf3\xeb\x51\xb3\xa8\xa7\xa1\x61\xb8\x70\xf5\x1b\x33\x93\x18\x47\x22\xe3\x8f\x7b\x36\xe9\xc3\x6f\x30\x28\xae\x2c\x7a\x60\xff\x88\xe0\xab\x03\xaa\xca\x8f\x2b\x29\xcc\x5a\x73\x3d\x16\x23\xd6\x90\x6e\x0c\x78\xfc\x99\xa2\x6d\xc4\xcc\x45\x36\xf3\xfa\x88\x92\xba\x8c\xbf\xc7\x8c\xbf\x8e\x97\xf0\x6e\x06\x89\xfb\x27\xf6\x19\xf5\x2f\xa4\x45\x14\x87\x95\x8c\x0e\xc3\x42\xb8\xc9\x4b\xaa\xca\x9d\x30\xcf\x2e\x06\xf4\x6f\xa8\x9a\x1d\xf2\xa9\x31\xa8\x23\x21\x5d\x39\x24\x6e\x27\xc6\x96\x18\x0f\x84\xc6\x4b\x2f\xa5\xb4\xbd\x87\x88\x56\xd2\x3f\xd3\x99\x02\x64\xb8\x26\xdc\x73\x08\x02\xec\xf6\x18\x80\x39\x7b\x96\xcc\x2f\x0b\xcb\xad\xab\x45\xb3\x55\x93\x8b\x6c\x46\x03\x96\x3f\xe0\x56\x2a\x3c\x41\x73\x64\xa2\x27\x6c\x60\xba\x88\x10\xe6\x5e\x54\x53\x6c\x74\x68\x5f\x9d\x8c\x14\xbd\xcf\x68\xfd\xe0\x7c\xfc\x29\x55\x2a\x58\x29\x05\x3b\xc1\xa3\xe2\x40\x24\xbc\x8b\x72\x34\x4b\x27\xf1\x46\x79\xac\xd1\x97\x72\x4a\x96\x8b\x9a\xb2\x02\x47\x9e\x72\x65\x46\x17\x52\x87\xb7\x9e\x8b\xdc\xa1\x7c\x24\x44\x5a\x7a\xce\xe7\xe3\xa3\xba\x86\x25\x2a\xdb\xc0\x18\xf3\x53\xd8\x42\x1b\x8b\x6b\x12\xdd\x2c\xed\x5e\x10\xbb\xd3\x2b\x01\x23\x5c\xa3\x0a\x50\x68\x4f\x22\x76\x4f\x7e\xb5\x78\x8f\xa6\xc4\x2d\x4f\x18\x4f\xbe\x43\xec\xb8\x39\x49\x66\x52\x68\x15\x8f\x9b\x25\x12\x87\x2f\x86\x4e\xd6\xcc\xb1\x19\x8e\x6d\x43\xf0\x85\xcc\x2a\x7b\x31\x1c\x83\x53\xee\x10\x1d\xca\xca\x40\x8f\xf6\x50\x22\x88\xd7\xdc\x60\x4f\x96\x32\x5c\x2c\x4e\xab\xc0\x04\xa5\xb1\x13\x67\xa2\x91\x37\x70\xf6\x10\x62\x52\x1a\x0c\x83\xf8\xbf\x2d\xce\x83\xa9\x98\x28\xa9\x68\x67\x67\xf8\xe0\x4d\x3f\xd6\xec\x41\xb0\xe0\x6f\x83\x4e\xf4\xd4\xe2\x86\x06\x6c\x48\xdd\xa1\x5a\x34\xf3\xaf\x85\x44\xe1\x1b\x16\xfe\x4b\x09\x86\xf9\x46\x64\xec\xcd\x38\x1d\xb3\xb5\x97\xb1\xf8\x68\xc2\x18\xd2\x86\x68\x1c\x52\x42\x04\xc7\x5c\xbe\x2e\x38\x33\x3d\x5b\xd8\xe0\x5f\x35\x1d\x12\x82\x11\xe9\x6e\xe0\x8d\xf9\xea\xfb\xb0\x42\x83\x78\x2e\xd7\x5f\xdc\x84\x64\x7a\x7d\x3a\x01\x4c\x7d\x8a\x3f\x0c\x75\x94\xe6\x4b\xb3\xa7\x62\x2c\xa2\x5d\xd9\x0f\xdb\x68\xce\xbb\x0e\x92\xd1\x99\x9e\x9c\x33\x69\x2d\xea\xd8\x92\x7f\x3b\x0d\xeb\x88\x57\x12\x36\x4c\x8f\x2b\xa3\x8c\x3f\x9a\x0f\x16\xf5\xff\xd0\x29\x8c\xa9\x60\x3a\xee\x30\xc8\xa7\xf3\xb9\x8e\x4d\xaa\x91\x7f\x92\xb3\x2a\x2e\xe9\x1a\xd7\x68\xa8\x8d\xb3\x3a\xa4\xa9\xe0\xd7\x44\x7a\xfe\x1c\x65\xcd\x83\xec\x0d\xe2\x3e\xfc\x53\xc2\x6f\x4c\x47\xff\x93\x50\x30\x04\x81\xbd\x42\x2d\x7c\x11\x62\xe3\x55\x76\xce\x1d\x0f\xac\x08\xd0\x38\x77\x68\x7e\xe3\xad\x4a\x7d\xe4\x15\xa2\x69\x46\xa2\xb3\x18\xf5\x57\xfe\xf2\xf8\xdf\xcc\xb6\x44\x77\x96\xc9\x8b\xd6\xf0\xb5\xdd\x72\x46\xe4\x35\x27\x74\xc1\xcb\x58\x48\xb8\x4f\x6d\xb7\x76\x42\xec\xf9\x5b\x6a\xec\x4d\x73\x0e\x44\x0f\x87\x34\xef\xef\x4d\x28\x16\xcc\xb3\x53\x24\x18\x95\x3b\xf3\x55\xaa\xfb\x4a\x31\xcd\x21\xdb\x4a\x48\xba\xa3\x54\xf1\xb6\xd4\x69\x56\xc1\x5e\x79\x44\xb2\x0e\x48\xe3\xa6\x2b\xd5\xec\x1d\xe9\xf5\x75\x1a\xd7\x8e\xd8\x1c\xeb\xca\x1b\xf7\x53\x85\x6a\xe7\x6e\xe9\x01\x35\x0e\x80\x5b\x91\xbb\x72\x21\xd1\xaa\x63\x29\x6f\x86\xd2\xeb\x0d\x6a\xd6\x97\x19\xdf\xa8\xbc\x22\x2c\x4f\x17\x74\x7f\xd7\x6f\xf9\x3f\xc4\x6e\xdc\xec\xcf\x2d\xe8\xe3\x71\x21\xa0\x35\x0b\x9f\x82\xd3\xf9\x38\xe2\xbe\x6b\xb1\x64\x8e\x6e\x88\x64\x4c\x96\xa0\xb6\x23\x3b\x20\xcb\xb9\x12\xa5\xaf\x9d\x97\x73\xe9\xc3\xdd\x3a\xbe\x87\xc1\x41\x25\x3e\xbc\xa5\xcf\x2b\x10\x9c\xbe\x16\x2f\x78\x6b\x26\xdc\xc4\x30\xa5\xf8\x1b\x8b\xdf\xe0\x90\xcb\x71\xba\x60\xc7\x56\xa5\x8f\x98\xf1\x9a\xd1\x68\xd7\xf2\xee\x2a\x14\x17\x60\x98\x14\x0f\x63\x21\x0e\x3c\xa7\xb4\xe4\xe6\x7a\x14\x94\x3e\x13\x10\xf4\x90\xf0\x2b\x68\xd8\x62\x4e\x8c\xe1\x3a\x68\x03\xbf\x70\x85\x60\xe1\x01\xe8\x67\xa2\x28\x64\x21\x6f\x2e\x93\x38\x87\x2b\x9a\x65\x57\xbc\x2c\x8d\xf3\x7b\x67\x4b\x8e\x42\xbd\xa4\xc3\xe3\x0e\xcf\x8c\xfb\x96\x5b\x84\x3d\xa7\xe1\xf5\x72\x3f\xa0\xbb\x00\x3c\xc0\x76\x5e\x2c\xda\xab\x6b\x12\xaa\x41\x69\xbc\xed\x5b\xaf\x34\x16\xcc\x13\xad\x3f\xb2\x55\xc3\xd7\x38\xee\xad\x47\xea\xc5\xe5\x0d\xab\x92\xe1\xc2\x41\xbe\x51\x23\x39\xd4\x61\x78\x37\x71\xc4\xda\xc6\x5f\x0d\x40\x08\xc6\x2c\x05\xab\x78\x3b\x29\xf9\x50\xfb\xd9\x99\xe3\x98\xb2\xaa\x52\xc1\x31\xd0\xfa\xf5\x53\x45\xe9\xb7\x3c\x37\x9f\xd4\xaa\x17\x53\xc3\xc1\x09\x03\x02\x4c\xda\xb0\x59\xfc\xee\x1f\x5b\xcf\x2f\xea\x4f\x62\x80\xf8\xf0\xe3\xdc\xdb\xfe\x86\x2f\xee\x05\xe4\xe0\xba\x3e\xcb\x38\xb1\xeb\xfe\x01\x4f\xef\x77\x68\xfd\x7e\x17\xa5\x29\x26\x7e\x38\xa8\xf4\x7e\xc9\xc0\x24\xe8\xc0\x8a\x91\x0e\x9f\xd1\xd3\x6f\xb9\xb1\x98\xc0\x8a\xf3\x61\x13\xfa\x0d\x5e\x36\xce\x54\xff\xd3\x36\x12\x7e\xac\x1a\x3d\x34\xd1\xda\x60\x87\x7a\xa2\xb0\xaf\x0d\xef\x50\x3e\x74\x21\xe1\xbe\xaf\x5e\x79\x28\xe5\x28\xce\x0b\xe1\x97\x5d\x14\xc3\x48\xbd\xb9\x11\x68\xb4\x97\x61\x4d\x31\x3b\x20\xd0\xdc\xb9\x79\xad\xd7\x6b\xc2\x2e\x30\xb2\xa0\x36\x4e\xc5\x9b\xae\xc9\x65\x50\x70\x0b\x09\x09\x0d\x09\x39\xa8\x4d\x56\x90\x06\xe3\x54\xdb\xf0\x32\x25\xb5\x1b\xc1\x21\x0d\x14\xbf\xde\xcb\xde\xe5\x5a\x0f\x5a\xd6\x15\x0c\x30\xd9\xfa\x8d\x91\x0b\xb8\xe5\x00\x74\xe7\xfc\x1e\xe8\x25\x23\xbd\x84\x52\x0b\xc7\xb5\x8b\x93\xbb\x87\x8b\x9d\x2b\xb5\x7b\xbb\xbb\x71\x35\x51\x86\x56\xf6\x1a\xd8\x48\x64\x4e\xdc\x7d\x90\xa2\xf0\x4a\x3e\x3d\x5a\x41\x1b\xad\xd5\xa5\xed\x4b\x33\x07\x75\x5d\xdd\x5a\x9a\x25\x95\x6e\xc3\xc0\x70\x78\xaf\x23\x1a\x15\x4b\x30\x45\xd4\x58\xab\x42\x19\xbb\x93\xd1\x15\xd5\x49\xab\x93\xa4\x68\x04\xda\x07\x83\x0d\x5b\x55\xcb\x14\xc9\xe8\xb3\x05\xc3\x79\x05\x21\xe2\xd8\x3c\x20\x80\x75\xa9\xcb\xad\x9d\x28\x82\x53\x4b\xc1\x9b\x01\xdd\x25\xa1\xb2\x27\x53\x41\x60\x3d\xa2\x9f\x55\xce\x22\xcc\x0d\x39\x27\x58\x9f\x3d\x90\x1d\x48\xc9\xb8\x9d\x56\xe5\x1e\x6c\xc1\x81\xe5\x92\x4c\x8e\x1c\xea\x3a\xbf\x45\x6b\xfa\xd0\xcf\x19\xbd\xeb\x1b\xd4\xf0\xe6\x95\xfe\xf6\xd3\x81\x8a\xb2\x81\x67\xe3\xf7\xa3\xaf\xf8\x7f\xd1\xac\x3c\x5e\x04\x71\x3a\x05\x4a\x11\x67\x10\x7c\xb4\xcf\x0f\x3f\xa5\xa9\xe0\x7a\x5e\x1a\x1c\x7f\x78\x57\xf7\x77\x41\x7e\xf5\x5b\x75\x53\x14\xad\x49\xab\x57\xe6\x84\x5a\x3a\x66\x29\xc9\xcc\x73\x51\xe3\x64\x02\x91\x5a\x3b\x81\x98\x7c\x80\x12\x74\xe6\x7d\xdd\x8e\x2e\x2f\x3b\x77\x55\x86\x35\x0e\x39\xd4\x28\x5f\x5f\x5a\xfd\x21\x67\x02\x4b\x46\x82\x18\x11\xda\x76\x62\xb4\x5a\x58\x65\xdd\x9d\xf5\xe3\x5a\x90\x5b\x0a\x4e\x9c\x6d\x0e\xda\x18\x09\x1a\x64\x1c\x20\x58\xcb\x5a\xe9\x71\xa0\x6e\x91\xd0\xab\x06\xf3\xbd\x71\x7d\x1d\x91\x52\xc5\x97\x36\x27\xfa\x96\x9a\xf0\x91\x93\xee\xd4\x08\xaa\x5d\x9e\xe8\x5b\x89\x55\xa4\xd2\x54\x8e\x1e\xc2\x43\xaf\x71\x1f\x98\xd5\x38\x5c\xcd\xb3\xd4\x87\xfe\x97\xc9\xcf\xee\x39\xe9\xa3\x32\x27\x33\xed\x46\x12\x6f\x5e\xb2\x97\xc7\xaf\x56\x25\x5d\x33\x18\xf9\x50\x2a\x47\xb1\x1e\x55\x3a\x48\xb0\xc8\xe9\x6d\x93\x0e\x77\x61\x84\xdf\xc5\xd6\x62\x58\x69\x01\x07\xe1\x0e\xa2\x4f\x44\x04\xef\x44\x1d\x32\x7b\xd1\xbc\x38\xb7\xea\x20\xcc\x9d\x4a\xd0\xc5\x06\x86\x46\xfd\x18\x9e\x56\xb5\x40\xa7\x6e\x4e\x79\x54\x34\x0e\xd5\x3c\x6e\x14\x20\x7b\x0c\x5b\x84\x33\xee\xf4\x93\x31\x26\xb2\xa8\x94\x9e\xec\x0c\x70\x78\x65\x30\xae\x82\xd7\xc9\xdd\x98\x24\x7f\x58\x48\x13\x3e\x6f\x8f\xe2\x5f\x50\x25\x99\x54\x0b\x61\x67\xa5\x5d\xd2\x5b\x97\x14\x6b\x29\xa5\xf2\x11\x2a\xfa\x11\xa5\xc8\x62\xb1\xe1\x10\xac\x72\xcf\xd1\x97\x38\x15\xe3\xd0\xaf\xd8\x7c\xfa\x7e\xd8\x94\x22\x4d\xd8\x61\xab\x78\xe1\xd1\x64\xc7\x1e\xac\x29\xea\xcd\x49\xd1\xa3\x26\xab\x9f\xbe\x4b\xa3\xd9\x29\x6b\x80\x42\xbb\x2d\xd3\x90\x94\x90\xa3\xaa\x60\x97\x49\x85\x74\x71\xe1\xa0\x92\x95\xd5\x94\x18\x62\xcd\x25\x2a\xc7\x24\xb8\x92\xf2\x9a\x85\x48\xb0\x79\x33\xea\x02\x99\x1c\x63\x66\x33\x38\x0b\x52\x1a\x57\x76\x5b\xb4\x27\x20\x4d\x41\x63\xd0\x76\xa7\x7b\x58\x63\x43\x62\x46\x2d\xcd\x0a\xc1\x95\x28\x49\x79\xef\xbc\xb9\xc4\xa6\xaa\xcb\xad\x70\x9b\xad\xe6\x81\x59\x8c\x58\xa9\x61\xbe\xe5\xd3\x45\xd4\xc0\xd7\xf8\x77\x62\x59\xe5\x12\x9c\x0b\x9f\x74\x72\x83\x55\xf4\x55\x09\x31\xaf\x04\xe8\xb4\x14\x8c\x8d\x48\xde\xc4\xb0\xf1\x66\x11\x66\xaf\x10\xfd\x3b\x45\x6f\xd3\x4a\x00\xa2\x4a\x25\x16\xe2\x4c\xf4\xf8\xf0\xc8\x48\x1b\xec\x3a\x21\x61\x9a\x1c\xa2\xd4\x0a\x34\x29\xe9\x68\x95\x17\xe2\x19\xc3\x8d\xd2\x47\x54\x51\xbe\x4e\x74\xc2\x75\x29\x5b\xe1\xf4\x95\x99\x8b\x9c\xcc\x7d\xc4\x4e\x04\xf1\x70\x4b\xb2\x28\x19\xd4\xda\xba\x00\xbc\xb9\xf2\x09\x22\x3e\x76\x80\x3c\x81\x62\xf8\xa1\xe0\x26\xdd\x11\x35\x46\x52\xc8\x3d\xaa\x38\x2b\xe7\xfb\x83\xcb\x45\x2d\xfa\x39\xd1\x39\x55\x3a\xa3\x26\xd4\x51\x2e\x0c\x32\xe6\xbd\x5a\xaf\xfe\xc3\x7d\xf7\xb7\x81\x0c\xe9\x0f\x67\x29\xcb\x57\xa5\x95\xc2\x61\x53\x84\x0e\xaa\x7c\xb1\xf6\x0e\xca\x07\xb1\xce\x04\x3a\x41\x31\x16\x9d\x2d\x24\xd5\x5b\x07\x0a\x44\xba\xf9\x10\xfc\x22\x7b\xe3\x2b\x13\x76\x9b\x26\x92\x96\x62\x8a\x14\x52\x92\xfc\xbc\x94\x21\x08\xcb\x2c\xf9\x99\x9c\xf8\x51\x42\xde\x91\x0a\x75\x37\xeb\x8f\xc6\x6f\x04\x6d\xc5\xf2\x4d\x40\x1b\x32\xbf\xdd\x49\x2f\xd1\xef\x83\xc5\xaf\xab\x10\x26\xba\x09\x32\x94\x0f\xf3\x98\x7a\xd5\xa8\xf9\xef\x65\x4a\x54\xf3\xec\x2c\x59\x63\xd5\xb2\xc8\x82\xb2\x2e\x57\x41\x43\x29\xd1\x28\xb1\x9d\x3d\x36\xf5\x55\x79\x73\x37\xf1\x63\x1f\x02\x73\x7d\xad\xd4\xa6\x92\x7e\x8b\xe3\x31\xd8\xe6\x27\xc6\xfd\x63\x62\x3d\xe0\x15\x5f\x6c\xcc\xbc\x5a\xda\xb4\xa1\xc2\xc3\x41\x67\xaf\xb7\xa9\x4a\xee\x1d\xce\xfb\x86\x89\x6f\xee\x45\xa1\xf8\x72\xa2\x44\xf8\xee\x76\x90\x68\xc2\xe6\x77\x5b\x56\xc7\x76\xb2\x81\xc3\xb7\x6f\x36\xfc\x0c\xbf\x3f\xdc\x51\x76\x51\xe4\xcd\x9b\xee\xdd\xf0\x65\x4c\x76\xf3\x3f\x0f\x91\x91\x1f\x93\x5e\xc4\x5d\xd7\xe1\xc9\x1d\x36\x91\x82\xe4\x63\x96\x08\xd4\xf0\xb2\x2b\x00\xd9\x86\xe6\x5a\xad\x25\xfb\x2f\xad\xdc\xb3\xda\x18\x27\x1b\x3b\xfb\xce\x7c\xcc\x07\xb8\x9d\x0f\xf7\x7e\x0a\x38\xc7\xdc\x58\x97\x1e\xe5\x6b\x8a\xf9\x18\x01\xf2\x32\xfc\x89\x7f\x9b\x7e\x8c\xc6\x02\xf5\xea\x36\x24\x73\x84\x83\x91\xa0\x28\xed\x58\x30\x94\x95\x20\xc6\xf6\xb2\x03\x0d\x5e\x6e\xef\x03\x4d\x89\x7b\x5b\xf0\x62\xb6\xcd\x20\x23\x0a\x63\x06\xfb\xec\xaa\xd8\xbb\x5f\x41\xea\x19\x7c\x20\xe3\x19\x0d\xcf\xe5\x02\x7c\x2a\xff\xb3\xd7\x95\xc2\xb4\x9e\x73\xee\xfc\x77\xeb\x99\x9b\x87\x96\xfb\x95\x56\x77\x90\x7a\xa6\x56\x90\x7b\x32\x2d\xbb\x07\x53\x4a\x1e\xa3\x74\x50\xc5\xe3\x11\xd3\x0c\x15\x16\xf1\x5c\xe6\x03\xf8\x3b\x0f\x1d\x55\xd6\x02\x6e\x69\x88\x28\x8a\xa8\x88\x23\xfa\x75\xdb\x04\x5b\xeb\x1a\x94\x60\x7c\x92\x99\xf7\xac\x5b\xf7\xe1\xd4\xd8\xf1\x8d\x0e\xff\xcf\xb2\x69\x0e\x16\xe7\xf8\xbc\x72\xd1\xcc\xf1\x1f\x76\x9d\x78\x78\xf1\x44\x3b\x66\x34\x35\xac\xdc\x1c\xa4\x6d\x34\xe9\x25\x9c\x2a\xcb\xaf\x94\xfc\x26\x44\x5a\xcc\x63\x4d\x8b\xf4\x73\x31\x3e\x47\x19\x96\x2b\xd9\x61\xa4\xc0\x71\x6e\xef\xb2\xe1\xb3\x60\x05\x9a\xe6\xf5\x00\x4e\x61\x96\xd5\x6d\x92\x88\xde\x61\x1d\x31\x2c\xfc\xf7\x9a\x3a\xc5\x41\x07\x6b\x5a\x33\x56\xea\x59\xf4\xfc\xb5\xa3\xfa\xfa\x74\x30\x2f\xea\x2e\x51\x5e\xe8\x18\x8b\xe9\xe7\x8c\x82\x99\xa6\xfe\x8d\xdd\xfa\x0b\x01\x1e\x08\x5e\x4e\x77\xea\x76\x9e\xf8\x81\x46\xb5\x9c\xfe\x9b\x6b\x21\x82\x52\xcd\x9c\x8e\xbc\x88\xf2\x9d\xe0\x38\x9f\x3e\x04\x9b\xfa\x0a\x13\x71\xfe\xea\x8b\x95\xaa\x76\x9c\x61\xfc\x87\xa6\x9f\x73\x7d\x6b\x3f\xcd\x7b\xd6\x37\x8e\xc9\x59\x95\xe8\xa1\x46\x62\x9d\x86\xe3\xe6\x67\x6b\x58\x23\xd1\x1e\xf6\x54\x63\xe3\xd8\xd7\xb6\x3f\x05\x93\x84\x75\x26\x5d\x3d\xf9\x40\x6e\x42\x07\xb7\x31\x99\x89\x80\x3f\xb1\x9e\xb9\x37\xf6\x10\x9e\xb6\x89\x6c\xdc\xfe\x5a\x5f\x3a\x5a\x71\xf9\x57\xd6\x20\x3c\x48\xa4\x63\x7e\xe1\x28\x9c\xf2\x5d\xaf\x14\xb8\x96\x6b\x93\x64\x89\x24\x90\x59\x3b\x1c\x87\x9a\xf2\x21\x69\x51\x18\xbc\x20\x22\x40\x1d\xea\x31\x94\x43\x56\xd3\x1a\xf5\x65\x2a\xb6\x1c\xd9\xf1\x00\x0e\x0a\x62\x2d\xc6\xb1\xa4\x5a\x93\xf4\x5f\x6b\xcf\x5e\x10\x2d\x9a\x4e\x0a\xf9\x82\x49\x0f\x7f\xbf\xc2\x6b\x74\x7d\xb7\xad\x0f\xf1\xd8\x9f\x8a\x88\xff\x56\xc2\xe5\xf9\x8b\xf9\x77\x7f\xac\x15\xd6\xd4\xdc\x0d\x44\x9c\x2e\x23\x79\x6c\xe8\xd5\x0c\x3b\x97\xc1\xaa\x9e\x34\x40\x9c\xf9\x8c\x0c\x1c\x6f\x6c\xb3\x5f\x9a\x26\xcd\xf2\x67\x7e\x6d\xfe\x9d\xdd\xfe\xf7\x74\xf6\x19\xf9\x18\x44\x4c\x66\x24\xb0\x3e\x85\xf6\x83\xa9\x28\x67\xe6\x9a\xa1\x08\x08\x03\xcd\x0c\x39\x5d\x93\x7d\x47\x1d\xbf\x92\x47\xb7\xd4\xfa\x67\xa9\xd4\x51\x9d\x05\x0d\xb8\xf8\xa4\x35\xed\x04\x3f\x52\xf3\x1d\x3a\x93\x56\x67\x3b\x22\x0a\x53\x4e\x98\x97\x2b\xbf\x42\x88\xcf\x65\x74\xa2\xc4\x39\x5f\x27\x1d\x1d\x8a\x34\xf9\x52\xcc\x4f\xee\xd4\xc4\xfa\x9d\xb0\xac\xfc\xd2\x95\xa7\x25\x7e\x35\x9a\xa2\xa0\xd3\x42\xd1\x15\x07\xdd\xfc\xf9\x83\x97\xd7\x5f\x7d\x14\x51\x23\x00\xb1\xaa\xea\x32\xb3\x85\xb7\xe7\x6b\x0b\x17\x80\x13\x49\x11\xb2\x34\x36\xaa\x84\x1b\x2c\xab\xb2\x3c\xc4\x73\x30\xab\x80\xd0\xd7\x0f\x01\x1f\xa4\x58\xec\xd7\x78\x06\x36\xcc\x22\x07\xe3\xeb\x51\x52\x17\x4f\x24\x30\xc5\x41\xe8\x0d\x6d\x48\x7d\x05\xd5\x9b\xdb\x58\x92\x2d\xb3\xdf\x17\x50\x65\x7e\x39\x62\x80\x5d\xe3\xd4\x0b\x21\x07\x10\x6b\xb6\xf8\x13\x64\x6a\x7e\x1e\xf4\xe6\xdb\x07\xc3\xa6\x8a\xb4\x74\x9f\x1e\xef\xf3\x3c\x9e\xdc\x85\x3e\xb7\xd0\x4c\x89\x93\x18\xe4\xf1\xb2\xd1\x94\x45\x8a\x7f\xd3\xe6\x04\x15\x11\x89\x56\x41\xc4\x10\x20\x2c\xd2\xc1\xf4\x2f\x89\xeb\x46\x81\x44\x84\x03\x0f\xd8\x68\x25\x10\x4a\x22\xae\xac\x2e\x39\xa6\x7a\xd2\xa0\xfe\x60\x54\x21\x9a\x97\x6a\x70\xaa\x5e\x9f\xf3\x28\x33\x15\x8c\xe6\x79\x41\xfb\x91\xa2\x6e\xe7\x85\x05\x85\x57\x13\x5a\x91\xa1\x79\xdd\x60\x49\x92\x15\x39\xe0\x98\x3e\xb9\xe8\xea\x5b\xc6\xd9\x2c\xcb\xd7\x56\xb8\xa9\x1d\xfb\x3b\x5f\xb7\xd0\xcc\x28\x9f\x5c\x69\x48\xf0\xe7\x46\x83\x45\x44\x62\x41\x6d\x45\x65\xc9\x4e\x04\x57\x8a\xb9\x5f\xac\x69\x8a\xcc\x59\x97\x05\x12\x41\x92\x88\xbc\x45\x4d\xb8\x00\x4d\x72\xde\x33\xc7\x72\x9f\x5e\xe5\xf8\xe6\xab\xec\x64\xaa\x63\x7e\x15\x6a\x36\xfe\x41\x5f\xe6\x63\xf9\xc3\x29\xcc\x42\x6c\x98\xe8\x1f\xf3\x03\xd2\x2c\x18\x15\x24\x35\x14\x31\x3e\x57\x76\x0a\x9b\x4f\xf2\x2e\xba\xb8\x8e\xb8\xa9\x17\x9c\x89\xb9\xa1\x73\x56\xd9\xa8\x4b\xac\x46\x49\xf4\xe2\xef\xb2\xb6\x3c\x9a\x64\xbc\x14\x93\x81\x59\x83\xc4\xda\x26\x91\xf8\x93\xa8\x6e\xd9\x40\x42\x9a\xf1\x36\xb8\x8d\x5c\x4a\x27\x1e\xb4\x31\xa1\xe4\x70\x8b\xd1\x3c\xa3\x9a\xd3\x69\x67\x80\x80\x85\x4a\x77\x30\x5f\xbd\x09\x59\xf7\x01\x0e\x32\x53\x5f\x1f\x1a\xbe\xe8\x7a\x42\xaa\xe4\x75\xa2\xf0\xf9\x4f\xea\x49\x8e\xc7\xfd\x78\x85\xa9\x16\x52\xc9\xc7\x22\x03\xfb\x1e\x81\x61\x07\x0f\x02\x1f\xb2\x12\x53\xca\xac\x86\x8d\x4e\xb4\x61\x50\xc6\xf0\x4f\x4c\xd1\x4f\x56\xb4\xd0\x0c\x65\x99\xcd\xcb\x89\xa2\x64\x41\xc7\x46\xd6\x5a\x6b\xc1\x84\x9d\x9d\x0d\x90\xfb\xd0\x84\xd2\x4e\xea\x68\x71\x7a\xcf\xe3\x5f\x32\x87\x0e\x25\x20\xa4\x07\xe6\x00\x38\x69\xa8\xef\x02\x68\x25\xa6\x20\x5b\x84\x38\xc9\x91\x53\xf0\x38\xb8\x79\x22\x27\x55\x65\x8a\xe9\x7f\x78\x63\xa4\x51\xc5\x2c\xf6\x6e\xf7\x95\xa8\x5a\xff\x1b\x24\x95\x93\xda\x54\xff\x0b\x1e\x0f\xbb\x14\x6a\x16\xa8\x8c\x64\xad\x8f\x14\xe0\x87\x40\x2f\x7a\xb1\x92\xec\x92\x21\x07\xab\x57\xd7\x49\x7e\x53\x54\xeb\x78\x96\x7f\x30\xeb\x34\xac\x66\x61\x14\xf1\x42\x61\xfa\xb4\x79\xd2\x08\x1f\x81\xc9\x69\x66\x62\x33\xc1\x57\x62\xba\x94\x60\x42\x58\x36\xfe\x75\x9b\xf5\x7a\x69\x7a\x0f\x18\xed\xa8\x52\x5d\x0a\x33\xfc\xe5\x6e\x46\x88\xdf\x12\x0b\xd4\xd5\x29\xcf\xba\x17\xd4\x34\x8a\xc7\xe7\xdb\x85\x29\x5d\xb3\xd1\xf2\x95\x4b\x10\x66\xea\x0f\x01\xce\xf6\x59\x3f\x19\xc5\xd6\x0a\x21\x32\xc5\xd6\x3b\x20\x03\xd8\xe3\xcc\xee\x54\xf6\xd5\xb1\x74\x07\xdb\x44\x4c\xf6\x4f\x34\x28\x93\xfc\xce\x90\xd6\x18\x30\x90\xff\x3b\x86\x96\x5b\x37\x7a\xe8\x5c\xc4\xae\x97\x6b\xe8\x49\x09\xb1\x2f\x15\x83\x4b\x11\xae\xe0\xe3\xb6\xf6\x8e\x38\xf8\x1b\x17\xe8\x7d\xb4\x6a\x19\x83\xf4\x41\x3d\x14\xa7\xb5\x00\x18\xc3\x12\x8d\xf8\xed\x8c\x48\x39\xdc\x64\x5f\x70\xe0\x85\x05\x3c\xeb\x61\x5b\x55\x64\x71\x0c\x7a\x68\xa3\x27\x37\xea\x8c\x8f\xf8\x02\xea\x27\x5b\x1c\x82\x9f\xe6\x72\xe0\x11\x20\x4b\x47\xe9\xb4\x82\x3c\xf9\xee\x7a\xf7\x12\x5e\x10\x07\x29\x57\x42\x44\xbd\x79\x92\x25\xd0\xb0\x93\x9b\x07\x87\xbc\x2a\xf7\x23\xf2\x0d\xe9\x9c\x97\xf3\x1b\x0a\xa5\x72\x39\xdf\x2c\x72\xb1\xc2\x87\xf0\x81\xec\xe7\x12\x6a\x37\xaf\x76\xdf\x48\x2d\xc8\x0a\xbe\xc1\x58\x11\xaa\x7f\xd8\x26\x95\x88\x25\x25\xda\x9f\x01\xfb\x20\xce\xc6\x01\x78\x1f\xec\x9d\xa5\x3d\x6d\xef\x93\x1b\xa5\xb4\xc6\x44\xe9\xc7\x05\xca\x0f\x63\x13\x23\x48\x4d\x3f\xb1\xab\x42\x8c\x72\x4e\x9c\xde\x57\x6e\x02\xa2\x43\xe6\xc9\xbb\x32\xc5\x82\xdc\xcc\xd6\x3b\xd2\xc2\xa9\xca\x1a\x6f\x37\x79\x7d\xbb\x70\x0e\x7f\x8d\xdd\xca\x81\x74\x1e\xcc\x73\xf6\x2a\xa1\x2c\xfc\x1c\xf2\xd2\xa0\xbc\x5c\xff\x1a\x1a\xd1\x0d\x50\xc3\x17\xfb\x28\xa6\x75\x52\xc8\x2f\x9d\x04\x5b\x1e\xb5\x4e\x1e\x2e\xb4\xb0\x38\x06\xe4\x57\x27\xee\x6f\x76\xea\xc9\xd0\xcf\x4b\xc0\x76\x6f\xb3\x2c\x8e\x81\xd1\x16\x9f\xbd\xcf\xe7\xd5\x20\xcc\xef\xfd\xff\xe6\xdf\xd6\xdb\x96\x0b\x08\x22\xcf\xf5\x98\x32\xbe\xed\xc1\x36\x04\xd4\x78\xdd\xd5\x97\x4e\x4c\x72\x53\xfc\xc1\xc9\x7d\x07\x47\x79\x82\xb3\xad\x44\x18\x55\x76\x3e\xff\x85\x56\xfb\x03\xb5\x0e\xe9\x0e\xef\xb1\xa8\xe5\xf0\x7b\xd5\x2a\xfc\x41\x04\x7e\x22\x87\x31\x66\x22\xde\xb7\x6e\x3f\x5c\xc3\x25\xa9\x1a\x6c\xef\x17\x17\xfa\x62\x46\xd6\x39\xbd\x54\xef\xa1\xe2\x50\x95\x9d\x84\x63\x8e\xe1\x7d\xdf\xbe\xe0\x78\xd4\x1f\xb3\x0e\x32\x49\x83\x1d\x74\x9a\xfb\xab\x54\xce\x2f\x13\x01\x7f\xe7\xc7\xc1\x77\xda\x22\x98\x8b\x28\xfa\x04\x74\x33\xc0\x68\x24\x21\x80\x76\xe1\xa1\x26\x95\x62\xec\xab\x1c\xc0\x4d\x04\xb7\x09\xf2\x89\xee\x28\x2a\x27\xe5\xa7\xdb\x8f\x1d\x83\xee\x01\xab\xef\xe4\xe3\x95\x36\x51\x78\xfd\xc4\x12\x06\x42\x47\xa1\x6b\xc8\xb5\x76\xf3\x52\x14\x53\x90\x42\xdd\x36\x8b\xab\x0b\xac\x42\xf3\xad\x22\xbf\xd5\x2b\xbd\xf4\xf0\xb4\x50\x4c\xab\xfa\x1d\x53\x5c\x46\x58\x6a\xf8\xb9\xee\xca\x5f\x36\xa6\xa6\xbc\xfa\x17\x91\xa1\xd8\x60\xb9\x90\x98\x42\x79\x4b\x88\x8f\x14\x11\xb8\x75\xe4\x93\x71\xd8\xdd\x5b\xe7\xaa\xcc\x58\xfa\xcd\x59\x36\xa5\x17\x83\x74\xb6\x94\x52\x53\xfa\x98\x23\x19\xd2\xd8\xfc\xaa\x1d\x9f\x00\xf5\xcd\xa6\x66\x4c\x3a\xe9\x59\x5d\xac\xae\x9e\x07\x78\x43\x9f\x40\x96\xee\x1c\xfa\x26\x33\x84\x58\xf4\x25\x87\x55\x63\x3e\x47\x1f\x35\xdb\xd9\x20\x3d\x0a\x8c\x6d\xd9\xb7\x3c\xa6\xd6\xeb\x04\x22\x8a\xe8\x37\xca\x5c\x40\x83\xbe\x61\xfe\xa5\xe0\xfa\xc3\x39\xd9\x6c\x87\x26\xb6\xbe\xa5\xeb\xba\x8f\x59\x7b\xd7\xca\x2d\x6e\x89\x91\x9c\xbc\x0e\x63\x28\xca\x2a\x36\x0c\x06\x3f\x25\xab\xbb\x23\xdb\xa2\x56\x3a\x91\xc2\xee\x45\xd4\x44\xbf\x23\x88\x25\x3f\xed\x74\x18\xaf\xad\xbb\xf0\xb5\x82\x26\x71\xd0\x9f\xab\xec\xbc\x4d\xc4\x12\x50\x95\x55\x28\xfe\x3e\x9a\xf6\x66\x6c\x47\x69\xc6\x90\x91\x92\xd3\x57\x8d\xf2\xb6\x0c\x9c\x8b\xb4\xfb\x5c\x99\xaf\xd1\xf7\x6f\xbc\x98\x00\x3f\x26\xc6\x9d\x2f\xb7\xad\x6f\x95\xaf\x2e\xde\x79\x00\xd7\x49\x82\xf8\x25\xd7\xf7\x21\x34\x36\x79\x94\x6d\x71\xd8\x39\x54\x30\xae\x66\x85\x58\xcc\x93\x3f\xbd\xe8\xb3\x44\xb4\xe1\x43\x0b\x5a\xbf\x4f\x6b\xe7\xe4\x9d\x67\x4b\x0b\x9e\xa2\x81\x01\x11\x46\xf9\x18\xea\x57\x87\xbe\x8b\x0f\xe9\xcd\x8f\x6b\x99\x56\xb0\x69\xc9\x39\x63\x23\x09\xfb\x24\x06\xf1\x0b\xa2\x11\x39\xde\x7c\x43\x73\x2e\xd3\x29\x44\xa3\x13\x90\x83\x1c\xdd\xdd\x69\x86\xff\x70\x04\x58\xe4\x79\x5b\x9d\x15\xee\xbf\xa4\x73\x56\x63\x2a\xfe\x8e\x61\xfd\x67\x52\x63\xb6\x51\x39\xaa\xe1\x67\x07\x06\x1f\x05\x85\x21\x20\xdf\x5e\xe8\xc5\x88\xb4\x08\xde\xfd\xf6\xbc\xda\x64\xa6\x03\x38\x3a\x32\x9c\xde\xc3\xfa\xbe\x8a\x3e\x51\x3e\xd9\x96\xa9\x43\x9a\xe4\xe1\x2c\x29\x65\x4c\x65\x87\xb3\x58\x07\x5b\x60\xd3\x9c\x24\xda\x23\x7f\x4e\x21\xc1\x38\x3a\x94\x31\xec\xc1\x4c\x60\x28\x84\x90\x20\xb0\x58\x2e\xb2\x57\xb2\xe4\xbb\xcf\x3d\x12\xcf\xad\x22\x52\x90\x76\x9d\xd1\x79\x6e\x3e\x36\x34\xce\x6b\x1a\xdb\x33\x8d\xb9\xcc\x29\xcb\x08\x39\x73\x44\xd6\x64\x50\xb1\x86\x3f\x7f\x6b\x3d\x01\xd3\x7a\x02\xc5\x1f\x7f\x0b\x69\xc8\xc5\xc0\x03\xcd\x59\x0a\x8b\xef\x4d\xea\x42\x12\xde\xce\x2d\xdd\xa3\x22\xd5\x95\xd5\x55\x80\xe5\x26\x17\x5a\xdc\x0e\x46\x4d\xae\xd3\xab\x7b\xe2\xf9\x46\x5e\x32\xfe\x6b\x88\x18\xf5\xea\xec\x21\xa3\x7f\xbd\x27\x94\x4f\x32\x1c\x39\x4c\x82\xfc\xc9\x1f\xf5\x8b\x89\x40\xaa\xd9\xca\x31\xa7\x83\x21\xea\x61\x26\x62\x23\x66\x9b\xf1\x90\x22\x93\x6b\xbe\x90\x96\x75\x78\x77\x70\x39\xa9\xdd\xf1\x15\x2a\x1a\xa0\x51\x6d\x93\x46\x98\x62\x99\x67\x51\x9d\xf4\x13\x69\x20\x2b\x50\x42\x73\xd0\x42\x28\x96\xa9\x35\x7b\x77\x51\xf0\xb9\x49\xa8\x2c\xfc\x08\xa9\x4d\xd6\xf0\x27\x0e\x45\x30\x6b\x92\xed\x98\x20\x50\x79\xcb\xea\x31\x73\xe7\x49\xa5\x3c\x81\x73\xa6\x14\x48\x67\xba\xc4\x84\x0e\xca\x9c\x5d\x34\xe1\x8d\x7d\x1f\x6f\x0f\x13\xfc\x41\x43\x66\x56\x11\x42\x72\xb7\xfc\xc8\x32\xe1\x8d\x50\x3f\xcf\x9b\x0b\xf2\x04\xaf\x46\x6b\x59\xc5\x10\x0d\x49\x2b\xa3\xc5\xa5\x6b\x84\x0d\xe0\xe0\xaf\x2c\x0f\xcf\x14\x73\x09\x5f\xf3\x4e\x63\x14\xa7\xdc\x31\xd3\x94\x43\xb8\x0c\x8b\xc9\xdc\x45\xe6\x94\x8e\x9b\x2e\xc3\x96\x5e\x71\xb2\x9b\x15\xa6\x3f\x9e\xfc\x13\x9c\x06\xa4\x30\x86\x92\xb8\x62\xe8\xd0\x5f\xc9\x60\x25\x3b\x51\x60\x27\x7b\x0b\xdf\xb0\x7e\x54\xd4\x4f\x7b\xc7\xc4\xab\xe9\xd1\xb5\x83\x85\xd5\xd8\x30\x12\x15\xde\x1f\x46\xb3\x2d\xb0\x0f\xf2\x42\xd1\x5a\xab\x6f\x06\x89\x40\x99\x20\xf3\x84\x92\x4c\x59\xb1\x71\xd8\xa8\x7f\x30\xa7\xbe\xa1\xf1\xf1\x50\x17\x5d\x06\xfc\x58\xd1\x79\x49\x2e\x34\x50\x8b\x3b\xe7\xa4\xf5\xe1\x9d\xa3\xb8\x88\xfe\x87\xc6\x54\x3c\xa4\xa8\x15\x51\xbc\xd2\x38\xe2\x67\x41\xb5\xb7\x8a\x67\x30\xc8\xd9\x9d\x82\xc5\x77\x33\x48\xc0\x9b\x99\x28\x8c\x90\x0e\x61\x8d\xd5\x1f\xee\x26\xb7\x45\xd5\xb6\x4b\xa8\x72\x34\x6e\xc3\x44\x93\x16\xa2\xc5\x26\x54\xb4\xd8\xf4\x86\xf8\xab\xe7\xae\x2d\xf6\x4b\x24\xea\x15\xae\x84\x29\x58\xc8\x79\x7a\xf8\xcf\xac\x77\x75\xb3\x44\x01\x67\x01\xda\xe9\xb7\xd4\xe6\xc8\xf3\x3f\x1d\xee\x4f\xd1\xc1\xa7\xd9\x3d\x0d\xe3\xba\x5c\xc2\xbf\x5c\xee\x79\x8c\xb3\xd8\x98\x58\xcf\xdb\x02\xdc\xc2\xae\xfe\xf5\x51\x71\xc7\xf6\xab\xa6\x17\x1c\xda\x4f\x8c\x3e\x7e\x5e\x16\x0d\xea\x62\x5d\x50\x86\x51\x3d\x86\x57\xe3\x0c\xd5\x15\xe7\x7f\xe9\x67\xd6\x1e\xb2\x85\xb3\x2e\xff\x61\x83\x10\xc0\xdc\x8b\x3f\xbf\xa7\xe1\x2b\x17\x77\x96\x77\xdf\x7a\x6b\x6a\x2a\x67\x33\x4a\xca\x14\xec\x1e\xa2\x31\xf7\xe6\x7b\x30\x42\x0c\x3d\x81\xbe\x03\x51\x5f\x90\x9c\xaa\x1d\xc3\xac\x84\xfa\xe9\x8d\x70\x46\x8f\xf6\x11\x40\x8f\xd5\x83\xd0\xfa\x1d\x0f\x9a\x10\x9c\xd0\x08\x38\x67\xc4\x35\x57\xcc\x42\x13\x85\xe2\xdd\x7e\xd8\xf5\x48\xd8\x98\x01\x6a\xf9\x8d\x6c\x8b\xfe\x5d\x72\x67\x9a\x50\x2e\xfe\x5b\x53\xff\xf0\x16\x46\xa9\x4d\x99\x77\xdf\x57\xaf\x80\x43\x3a\x55\x81\x49\xfc\xf8\xbc\x8e\xe7\xbe\x57\xe2\x3d\x53\xf7\xd3\x75\x60\x68\x8f\xcc\x6f\xc3\x70\xcc\x7c\xa9\x35\xa4\xf8\xd8\x5c\xfc\x87\xc8\x19\x7c\x58\x89\x32\x5c\xa8\x30\xda\x64\x36\x11\xfb\xfd\x91\xb6\x64\xaf\xa0\x8e\x2a\xae\x3e\x3e\xd5\x45\xe4\x63\xcd\x1d\x7f\x8d\x36\xca\xf3\x81\x33\x56\x9e\xf4\xb4\x4a\xd2\xb3\x16\xb9\xa5\xdf\x6e\x47\x0b\x59\x83\x51\xc0\x6d\xdc\x45\x51\xf9\x53\xd0\x75\xd5\x23\xe6\xd1\xa1\x0e\x7e\x73\x90\x94\x7c\xad\xea\x6a\xab\x23\x16\x74\xa8\x89\x59\x54\xe1\x93\x10\x71\x55\xcd\x93\x3c\x30\x94\xf4\x8e\x93\xde\x00\x2c\x2a\x37\x51\x7f\x08\xa5\x3b\xf0\x00\x0e\x8d\xf6\x03\x3e\xaf\x46\xe0\xa3\x8d\x3a\x31\x6b\xb5\xea\x92\xb9\xce\xf6\x7e\xbd\xfa\x71\x84\xff\x84\x8d\xc5\x46\x5a\x80\xe2\x12\xad\xe0\x30\x78\xb0\x8d\x5f\x6e\x7f\x5a\x88\xde\xad\x33\x89\xcf\x33\x62\x7c\x97\x85\xee\x3c\xa8\xab\xbc\xe9\xc5\x60\xad\xa4\x87\x84\x9f\x38\x9f\x19\xb0\x00\x9b\xb8\xda\xf5\x54\x2e\xe2\x0d\x64\x79\x73\x0d\x09\xa7\xa2\xfc\x5a\xb3\x35\xfa\xb9\xd4\x9f\xe9\x78\x2e\xf6\x3e\x0d\xa1\x4a\xde\x14\x41\x9c\x2c\x2d\x98\x1d\x88\x28\xc3\x2e\xa9\xfb\x33\x73\x00\x8d\x24\xe4\x79\xd2\x27\x22\xe7\x45\xed\x7a\x8f\x6f\xb9\xbc\x94\xec\xa6\xb5\x07\xd1\xc6\x87\xc2\x69\x04\x98\x40\x53\x0a\x1f\x8b\x52\xf9\x32\xc7\xb3\x11\x14\x13\xa8\x7e\x42\xec\x6c\x04\xee\x2e\x74\x94\x61\xa8\xc9\x58\xdc\x58\xba\x3b\x7a\x93\xb6\x6a\x1d\x17\xca\x2c\xe2\x17\x02\xad\xec\x25\xfc\x18\xae\x8b\x99\x81\x84\xaf\x74\xef\xfd\x78\x19\x8c\xfe\xb5\x16\x29\xe9\xe4\x28\x0e\x24\x08\x73\xd2\x04\xb1\xf3\x33\xf9\xd1\xdf\x51\x3b\x60\x74\xd2\x21\x87\x26\x5f\x92\xcf\x2c\xa1\x64\xbf\x19\x7d\x4c\x91\x06\xa6\x11\xe3\x14\x13\x76\xf1\xd5\x4f\x0b\x55\x50\x1f\x54\x03\xc4\x29\xf6\xcd\xed\x92\xbe\xfc\x55\x9b\x54\x71\xc4\x36\xaa\x8a\x7d\x4b\x7e\x8f\xb7\x2c\x24\xea\x5a\x87\x07\x34\xe6\x52\x80\x16\xb5\x52\x90\x09\x5a\xf3\x87\xd6\xbc\x7c\xf8\xad\xf5\x5a\x79\x7b\x54\x3d\xeb\x64\x36\x7e\x1d\xdf\x57\x81\x99\x8e\xae\x81\x26\x5d\x82\x6d\xb4\x8c\x96\xc9\xf0\x05\xaf\x31\x2b\xd2\x3a\x4e\x39\xaf\xe8\x37\x08\x6c\x41\x6f\xf3\xd8\xc4\x4b\x61\xfe\x21\x8d\x53\xd8\xfb\x65\x2a\xd5\xcd\x8d\xd8\x79\xef\x17\x9c\xba\x61\x9c\x43\x7c\xfb\x75\x57\xea\x51\xd8\xa2\xce\xbe\xd7\x94\x81\x33\xef\x0a\x09\xf1\xf1\xc8\x3c\x4b\x79\x68\x78\xa4\x71\x4d\xd5\x03\x23\x36\xb5\x39\x44\x4d\xfb\x31\xa8\xf9\x59\xbc\xe6\x87\xe8\xbf\x50\x23\xc0\x50\x0c\x7d\x66\xc3\x28\x21\x43\x98\x70\xcb\x26\x32\xeb\x62\xa3\xd0\x89\xa3\xf6\xdb\x22\x73\x2c\x8e\x2a\x7d\xa2\x73\x4f\xca\xe2\x92\x94\x51\xbb\x23\xd5\xcd\x4c\xaf\x2e\xf5\xd7\xa0\xae\xcb\xc3\xb5\x41\xca\x70\x9c\xa0\x0f\xa1\x9f\x18\xbc\x57\x48\x66\x6f\xda\xf5\x67\x37\x35\x8b\x37\xf5\x9d\x64\x1f\x54\xaa\x41\xd0\x73\x49\x37\x79\xfe\x34\xb9\xc4\x4e\x3b\x06\xba\xdf\x69\xbf\x7c\xf2\xde\xb7\x81\x06\xfc\xbf\xc3\x68\xa6\xbc\x6c\xdc\x71\x66\xf7\x74\x6c\x88\x98\x60\x30\xb2\x0b\xf9\xfe\x7b\x69\xcd\xcc\xdc\x38\xaf\xe1\xca\xdd\x23\xd1\x27\x3d\x02\x2f\x85\x07\xfd\x4b\xf9\xda\x7e\x32\x6b\x9d\x59\x60\xe3\x40\xbe\xe7\x37\x32\xdb\x99\xd5\x3e\x46\x7d\x15\xbb\x0f\x64\x85\x19\xcd\x3a\xf3\x16\xc6\x3a\x3f\x82\x1c\xfa\x72\x88\x85\x80\x4f\xa3\x6f\xf1\xc4\xa9\x57\x33\xdf\x26\x10\xcb\xd4\xac\x92\x50\x69\x5c\x3d\x7e\x60\xfa\xe9\x7d\x8b\x1d\xb6\x08\x3a\xe2\x5a\x4f\x15\x17\x8e\x76\x8b\xd3\x7d\x07\x0a\xb1\x4e\x37\xd9\xcc\x46\xf4\xc9\xc0\xd3\xdf\x53\x73\xf8\x82\x2f\x63\xab\x3e\x55\xaa\x12\x8d\x59\x73\xcf\xf6\xb4\xb3\xdd\x8a\xa3\x0d\x0b\x20\x38\x76\x3d\x88\xd9\x86\xbe\xc4\xe2\xe5\x40\xd8\xfa\x0b\x6f\x7a\x69\x4e\x6b\x2c\x51\x9d\x9b\x88\x69\x41\x6e\x77\xef\xd3\x51\x4c\xae\x2a\x92\x70\xe5\xfa\x90\xf4\x9c\xb8\xa6\x2c\x34\x4e\x1d\x84\xb3\x90\xf4\x2e\x59\x7f\x82\x6c\xc7\xdf\xd3\x85\xaa\x54\x66\xb4\xbd\x4d\xfb\x2b\x4c\x5a\xab\x8a\x72\xa8\x31\x5e\xc6\xc8\x74\x3b\x23\x42\x15\xfb\xa9\xdf\x5f\xee\x2a\x4f\xbf\xf5\xd8\xa4\x42\xeb\x65\x81\x5e\xac\x87\x20\xe7\x0b\x9b\xb7\x8b\x2e\x32\xdb\x3b\xac\xa0\x30\x1e\x2f\x2c\x4c\x5c\x8c\x8c\xa6\x7a\x12\xe2\x5f\x87\x03\x56\x6b\x64\xe5\xc1\x48\xc4\x6b\xb9\x21\x5c\x2c\x2e\xe8\xaa\xf3\xab\xeb\xdb\x15\x97\xdf\xb7\xe6\xd3\x58\x2d\x5a\x6a\x25\x2a\x67\xa1\x0a\xde\x1b\x30\x46\xf7\xe4\x10\xa4\xf4\x30\xd8\xaf\x0f\x61\x44\x54\xf2\xc1\xe2\x2e\x2f\x1a\xa4\xb8\x52\x67\x81\x58\x9d\x8b\xa2\x87\xb7\x72\x8b\x02\xbb\x65\xce\x98\x0b\xad\x09\x9d\x6b\x67\x5d\xa3\xef\x13\xbe\xaa\xb2\x34\x5a\xa3\x32\x6a\x68\x81\x18\x15\x8a\x1f\xbe\x95\x6a\x32\x6f\xd3\x48\x5b\x05\x16\x52\xa6\x0f\xe7\xaa\xa7\x08\xf1\x25\xf0\x63\xdd\xf5\x61\xa2\x9f\xe2\x32\xa9\xf4\x1a\x97\x32\xd4\x59\xca\xea\x8b\x35\xeb\xf9\x8e\xdd\x67\x25\x07\x49\xba\xe2\xa6\x3b\xb8\x90\xa3\xc2\xc1\x18\xdc\xb1\x36\x89\x9f\x58\x69\xee\xdf\xca\xc2\x1b\x04\xe0\xec\x2d\x70\x21\xed\x7b\x35\x4f\x30\xa0\x0b\x48\x42\x6c\xfb\xca\xac\x14\x20\x44\xdf\xa9\x18\x7c\xa5\x52\x77\x21\xdf\xd3\xee\x81\x6c\xe9\xc9\x34\x04\x8a\x35\x8a\xd6\x27\x79\x0a\x67\x8e\x3e\xe1\xd5\xa4\x99\x37\x8a\xe6\xc4\x55\x63\x90\x33\x3f\x99\x9a\x4e\xd7\x97\x5b\xd0\x65\x46\x22\x15\x07\x49\x61\x2f\x58\xdf\xde\x2b\x71\x08\xb7\x6e\x73\x6f\xe4\xe2\xd0\x82\xbe\xe6\x92\x4a\xbd\x60\x83\x18\x92\xa4\x64\x37\xfd\x74\xb7\x8e\xde\xca\x39\x2f\xef\xad\x33\x6e\x53\xa4\xe3\x7b\xa2\x49\x26\xc9\x65\xce\x41\x9e\x05\xb1\x93\x1b\xbe\x14\x91\xda\x33\x14\x9d\xe1\x77\x13\x3a\x31\x83\x76\xea\xf1\x9d\xf4\x3f\x1f\xff\x50\x9a\xae\x18\xcc\x24\xfc\x9c\xc8\x5b\xb1\x02\x60\x38\x63\x10\xf1\xea\x73\x3c\x17\x87\x47\x8b\x48\xa9\x05\xe7\x7e\xf1\x64\x68\x69\x2b\xd0\xa8\x25\xc8\xb6\x99\x3a\x77\x43\xc7\x46\x77\x5c\xef\x31\x93\x48\x4b\xda\xb1\xa3\x77\x14\x66\x72\x33\x3d\x4c\x23\xbf\xef\x2b\x20\x14\x4b\x89\x6e\x28\x45\xa3\xce\xe1\x94\x4e\xe1\xbe\xa5\x9b\x6c\x02\x1a\xdd\x6b\x4f\xf3\x0e\xcb\xa1\x2a\x0a\x81\x3c\xc2\xe8\x01\xcb\x97\x7e\xcd\x86\x4f\x79\x07\xd6\x5a\x67\x23\xb9\x81\x3f\xce\x2f\x22\x77\x5b\xd4\x4d\x6c\x6b\xde\xbd\x59\x25\xe9\x0d\x79\xad\x1c\x4e\x4f\x7b\x47\x78\x5e\x92\x07\x45\x87\xd3\x66\x6c\xe2\x61\x32\x0f\xee\x07\xa2\x9f\x7d\x08\x25\x9e\x1f\x7d\x69\xdd\x2e\xaa\xa4\x3f\xff\xa2\x6b\x63\x89\xe1\xf5\x8d\x8a\x5a\x37\x57\x2c\x92\x21\x2a\x27\x11\x8b\x44\xd6\x41\xfd\xa3\xda\x13\x81\xd8\x8a\xbd\xf8\xf5\xf2\xad\x35\x02\x6b\xc0\x77\x15\x12\x2d\x0c\x3f\x6c\x75\x3e\xd4\xa3\xc3\xcc\x3d\x29\xeb\x41\xc2\x4f\x27\x73\x3b\x13\x40\x34\xbc\xb4\x95\xf7\xca\x11\xf7\x59\x8e\x3e\x33\xa5\x11\x01\xfe\x32\xde\xea\x6c\x53\x4c\xd5\x7c\xeb\x43\x77\x28\xac\x3f\x9f\x9d\xcc\xa1\x48\x12\x19\xb3\x76\x35\x27\xf0\x29\x4c\x5b\xeb\x68\x2a\x62\xff\x98\x42\xef\x26\xab\xaa\xcc\x13\xc1\xe9\xa6\xc8\xcb\xa7\xad\x89\xb4\xc5\xdc\xfc\xed\x56\x94\xc1\xd5\x56\xc6\x32\x7d\xd7\x97\x1a\x99\x1e\x53\xdb\x5d\x1f\xfd\x93\xe6\xa3\xdb\xd7\xc5\x6e\x7e\xca\x10\xb6\x00\x64\x2b\xb5\x57\xcc\xb1\x3e\xf9\x10\x31\x86\x0b\x04\x72\x9b\xb4\x93\xda\xb2\x97\xc4\x7c\xf1\x4d\xe9\xb3\x99\xc5\x5f\x0b\x0f\xfc\x15\x72\xb7\xd3\x58\xcb\xe7\x25\x77\x4d\x64\xea\x00\x92\x20\x2e\xe6\xca\xf0\x5c\xc5\x9f\x5a\x4a\xc6\x77\xe7\x73\x01\x81\xba\xe1\x2a\xfd\x62\xe5\xfd\xaa\xe0\x5b\x41\xbe\x0f\x2b\x3a\x86\xfe\x33\xc8\x40\x39\x4e\x59\x13\xd1\x3a\xdf\x13\x86\xbc\x33\xfb\xb0\xaf\xe2\xd6\x88\x7b\x77\xd0\x06\x21\xf9\x47\xa2\x9c\x56\x9c\x78\x9e\xa1\xd1\xbe\x4c\x4a\x3d\xc2\x5b\x08\x17\x17\x5d\x15\x99\x3e\x78\x01\x5b\x5d\x37\x52\x9e\x2e\x33\x85\x9b\x88\x8d\xe0\xaf\x68\x18\xcb\x8d\xdf\x09\xc1\x03\x53\x11\xd5\xde\x5a\x33\x61\x9c\xca\x47\xfa\x22\x79\xb7\xa1\x12\xb0\xab\x93\xe2\xcd\xef\x40\xe3\x47\x7d\x79\xf3\x58\x21\x01\x19\x7c\x6a\x2c\xb2\xfa\xde\xbc\xb1\x49\x2d\x59\xad\x8f\x1c\x46\x04\x35\x49\x32\xf2\xb6\x6a\x0d\xa8\xf4\x11\xd2\x51\x32\xeb\x91\xfd\x6b\x17\x40\xe2\xb9\x11\x88\x98\x75\xf9\xae\xa0\xc1\x92\x6b\xb0\xb9\x39\xe1\x57\x5d\xc2\xa7\x1e\x37\x31\xd4\xe0\x46\xe1\x41\x7b\xed\xe3\xbe\x46\xff\x4d\xad\xde\x0f\xc7\x3f\xbe\xaa\x5b\x25\x5f\xfb\xc5\x2a\xbe\x13\x7f\x07\x9b\x34\x17\x9e\x51\x33\xd8\xbf\x02\x73\x58\x09\x91\x47\xef\x08\xe1\x51\x6a\x68\x32\x28\x44\x14\x21\x78\xa2\xed\xe9\xed\xed\x3e\xf5\x0f\x94\xa7\xfb\xee\x0b\x93\x09\x99\x2b\xb8\x12\x34\x1b\xa6\xf8\x5b\x0d\x75\x7c\x79\x8b\x41\x49\xfd\x06\x6b\xd1\xf3\xae\x48\x12\x67\xcb\x94\xd5\xea\xac\xf8\xe8\xf7\xc8\x08\xdd\xd0\x43\xbc\x96\xbe\x9c\x07\x8a\x75\x22\xf6\x52\x9e\x74\xdf\x40\xf6\xc4\x9a\x01\xca\xd4\x62\x6e\x2a\x29\x24\x17\x05\x95\x66\xae\x9e\x78\xdb\xdd\xfa\x57\x31\x54\x5d\x73\xee\xdf\xef\x2f\x91\x2e\x5d\x79\x66\x4d\x7a\x73\x79\xa9\xff\x8c\x57\xfe\xfe\x63\xa0\x96\x7e\xf6\xd2\xf6\x3b\x88\xfa\x1d\x29\x76\x08\x99\x54\x3e\xc7\x67\xcb\x9e\xef\x12\xd8\x29\xac\x1d\xa1\xa3\xd2\xfa\x34\x50\x2d\x08\x16\x78\x59\x2b\x61\xc6\x14\xe5\xf3\x92\x97\xa0\x4e\x42\xe9\x15\x44\x53\x70\x7f\xf5\xbd\xbf\x58\xab\x17\xd7\xe0\x88\x09\x51\x5c\x82\x46\x12\xf6\x19\x18\xca\xe0\x8f\xbd\x21\x49\x89\x9e\xaf\x24\xa1\x40\x96\x72\x20\xec\x9a\x5a\xcb\xdb\xca\x29\x5d\xae\xad\xfc\x7e\x76\x31\x2f\x39\x1f\xa9\x46\x36\x40\x56\x8e\x2a\xb9\x26\x28\x97\x2f\xba\x63\xab\x14\xeb\x96\xa8\x96\x7f\x5e\xa8\x80\x41\x0e\xa8\x0e\xeb\xe8\x69\x98\xe0\x1d\x40\xd5\xc5\x83\x83\x4a\x77\xfb\x99\x0c\x8b\xf5\x69\xfb\x2c\xfc\xc2\xb3\x61\xe2\x6a\x25\xa2\x55\x44\xb6\x79\x0f\x99\x64\x96\x8f\x3d\xb0\x56\x7a\xa2\xfa\xef\x49\xc5\x0d\x16\x2b\xc8\xfc\x62\xef\xf9\xdd\x71\xef\x22\x17\xb6\x9a\x28\x3f\xbe\xc4\x68\x09\x62\xcb\x87\x46\xcb\x49\xd5\x13\xf2\x85\x50\xdd\x45\xd3\x43\x35\xf4\x7e\xeb\x91\x2a\xfe\x45\x5d\xb8\x29\xf2\xc0\x4e\xe1\xa3\xba\x5d\x49\xa1\x92\x93\xfb\x2b\x69\xc7\xbe\x43\x46\x45\x67\xfb\xc0\xbb\x52\x21\xff\x10\x12\xcc\xed\x80\x5f\xaa\xb4\x8c\xe8\x1c\x27\x25\x0f\xb5\xb6\x13\xab\xfb\x8a\xfb\xa0\x6a\x4b\x77\xc7\xfe\xf5\x53\xc3\x7a\x89\xf7\xd1\x94\xe2\xcf\x66\xf5\x02\x23\x08\x1d\x3e\xd5\x8f\xf9\x6b\x78\x4a\x0f\xa9\xdb\x83\xf8\xa2\x70\x5d\x6c\x02\x0f\xa6\xb2\x5c\x7a\x33\x26\xc7\x0a\x05\x67\x3b\xb1\x82\x5f\x68\x61\x47\x73\x89\x2a\x85\x88\x62\x74\xaa\xbd\x23\x9a\xd8\xbc\xc4\x36\xb4\xdd\x29\x30\x9e\x01\x3a\xd9\x7f\x02\x61\x78\xc2\xf5\xf0\x56\x1f\x06\xf8\xfc\xe2\xfc\x74\x82\x9c\xac\x3a\x3d\x9c\xca\x28\x62\xdc\x4d\x8c\x97\x38\xaf\x20\xe8\x39\x7a\xde\xd1\xb2\xb8\xa8\xc5\xff\x75\x0a\xe8\x0a\xb0\x5a\xd6\x9c\x85\xcf\xce\x7f\xc2\x2d\x39\x51\xce\xa3\xa2\x2b\x2f\xc6\x65\x12\xce\x9d\x14\xe0\x1a\xfe\x36\x3c\xe4\x50\xe5\xe9\x70\x19\x85\x88\x3b\x89\x91\x62\xea\x52\x4b\xe0\xf9\x84\x31\xbb\x60\x01\x23\x66\x9e\x3e\x7a\x77\xc9\xb9\x4a\x26\xd7\xb1\xf2\x7c\x7c\xae\x48\x81\xea\xe2\x32\x60\x92\xee\xcd\xbb\x60\xe4\x36\xd3\x08\x76\x43\x99\xf7\x71\x7f\xf8\x4e\xb6\x6d\xcc\xf0\x6f\x6b\x3d\xf9\x56\x2b\x02\x8a\xa7\xcc\xf8\x51\x51\x13\x75\x3f\x3a\xae\x90\x26\x1e\xc1\x19\xcf\xca\xb7\xcd\x80\x1a\x80\x47\xe8\xd5\x23\x1a\x9b\x43\x4c\x83\xea\xba\x58\x36\xc5\xf0\x53\xc8\x3f\xe6\x17\x07\x62\xb2\xf5\x68\x6d\x60\x8f\x48\xe3\x22\x8d\x7d\xa5\x5f\x4e\xfd\x6a\x4f\x8d\xa5\x35\xef\x4a\x69\xb2\x5e\x66\xc8\xea\xa9\x99\x31\x8d\xcd\x99\x4d\xaf\xee\x61\x0d\x8c\xe2\xc3\x8e\xb6\x5e\x50\xf0\x26\x4b\x04\x30\xf6\x0f\x03\x5b\xb3\x73\x6f\x38\x0c\x30\x5b\xfc\x80\xff\x3e\x3e\xce\x58\xc0\xfd\xa7\xf6\xd1\x3b\xd0\xca\x97\xaf\xdf\xe2\x47\xe5\x13\x1d\x09\xbd\x6b\x48\x5d\xc7\x2b\x72\xab\x13\x59\x24\xbe\xff\x8e\x84\x3e\x38\xe7\x61\x69\x95\xec\xc5\x5f\x69\x12\xd9\x4b\x9f\x5f\x10\xc7\x6b\x31\x5b\x74\x1b\xc5\xc5\xfc\xea\x89\x3e\x7c\x67\x8a\xb4\xc9\x74\x1c\x91\xc8\x32\x62\x93\x8c\x4e\x3b\x29\x92\x9d\x51\x98\x01\x7a\x51\x5d\x7f\x50\x53\x64\x05\xfa\x3f\x4f\x59\x34\xb3\xfe\x49\x45\x7f\x1f\x14\x43\x86\xfa\xbc\x04\x92\x71\xee\x8c\x34\x5d\x20\x72\x74\xf0\xb8\xc6\xd0\x20\xb2\x71\x37\xee\xf9\x06\x72\x90\x69\x28\x6b\x0d\xfa\x63\x6e\x88\x9d\x4c\xb6\xee\xc9\x1d\x75\x45\x74\x55\x61\x36\xca\xcc\x48\x80\x4e\x07\x2f\xc2\xa7\xe2\x59\xe6\x62\x11\x3a\x9b\x7e\xcb\x77\x9d\x93\x05\x40\xef\xb7\xc7\x40\xcd\x50\x03\x6e\x80\x7b\x10\x9a\xce\x91\x33\xee\x8d\x03\x0c\xd9\x45\xe8\x1a\x24\x68\xd6\x89\x84\xae\x49\x55\x8f\x66\x1d\xa5\xde\x85\xda\x89\xf2\x94\x4a\x7e\x81\x9f\x34\xa2\x74\x0a\x98\xb6\xea\x2e\xa6\x7c\xac\xd9\x01\xd2\x8c\xd1\x8a\xb8\xec\xbb\xa2\x03\x30\x7e\x11\xf3\xf4\x68\xd6\x04\x12\x94\xb5\x3f\x76\xaf\x5f\x8f\xa8\x72\xb3\x46\xa1\xd9\x07\x91\x2b\xbc\x9d\x0d\xf0\x30\x38\x9d\x00\xf5\xe6\x47\xeb\x90\xdd\xfd\x7c\x7e\x36\x25\xe9\x43\xf8\xd3\x90\xa0\xbf\xfb\x3b\x5b\x7f\xb8\x46\x15\x6e\xcc\xa7\xd3\xde\x0f\xbf\xd8\xc7\xdc\x14\xfe\x30\xda\xe8\x99\xf7\x95\x8a\x0c\xf7\x01\xbf\xb2\x1e\x4d\x27\xb0\xed\xa2\x30\x44\xda\x9d\x53\x2f\xcb\xc5\xb6\x7c\x75\xd7\xdb\x8f\x31\x5c\xc7\x60\x66\x40\xe8\x90\x86\x3e\x1e\x21\x2b\xc3\x08\xdc\xdc\xf6\xc4\xc9\x0e\x4a\xb9\x14\x7f\x78\xf7\x29\xb6\xb8\xab\xd7\xcd\xe9\xd9\x15\xc5\xd3\xe7\x28\xd0\xe0\xea\x0e\x89\xb6\x38\xca\xa8\x73\x88\xc4\xa2\x55\x44\xec\xc5\x3f\x99\x84\xb1\x20\x7a\xc7\xec\xd0\x59\xfc\x5f\x74\xd5\x7a\x40\x2b\x51\xa8\xdf\x68\x90\x08\x48\x38\x99\x31\xcc\x3f\x4c\xc9\x94\x0a\x7e\x05\x96\xaf\x88\x41\xd1\x89\x73\x7d\x7f\x2d\x7f\xa3\x63\x7f\xef\xcd\x54\xa7\xe8\x60\x50\xde\x6c\x8b\xca\x65\x41\xda\x2f\x96\x0e\xde\xfd\x99\x11\x71\xc3\x77\x84\x5e\x3c\x69\xc2\x96\xe1\x73\xb3\xa8\x13\xa0\x78\xa1\xc7\xe4\xe8\x1f\x3b\xf3\x4b\x96\x0a\xf2\x7a\xc6\xbc\x61\xd5\x16\x2c\x0c\xc5\xa0\x11\x24\x4b\x5c\x27\xed\xb3\x4a\x52\xfe\x14\xad\xd9\x35\xdd\xa1\xf7\x44\x36\x45\xcb\x18\xf3\x49\xb0\x88\xfc\xae\xac\x14\x38\x6b\x8e\xc0\x33\x88\xc0\x3b\xc1\x0e\x22\xcf\x4d\x51\xd4\x2a\xdf\x89\x57\x46\x5f\x30\xd9\x28\x93\x62\x4b\xc5\x3d\x7d\x3d\x23\x69\xb0\x13\x6b\x27\x78\x15\xdc\xfa\x7b\x14\xc5\x5b\xf6\xee\xf3\xf8\x44\x2c\x23\x37\xfe\xca\xa8\x46\xf2\x2c\xea\xd8\xa6\x32\x0b\x81\xeb\x87\x36\xf1\xf1\x71\x60\x54\xa8\xd0\x17\x34\xab\x80\x24\xba\xca\x60\xeb\x46\xb7\x27\x91\x2e\xf1\xf6\xc9\x42\xc7\x72\x88\x0c\x2e\xba\xd6\xf7\x57\xb7\x1d\x49\x18\x0e\x30\x9b\x48\x5f\x86\x35\xd4\x23\xba\xb1\x0f\x88\x92\x9e\x67\x78\x60\x45\xff\x93\xd1\xf2\x0b\x9b\xf9\x39\x58\x93\x1e\xf0\xd9\xa0\x5c\x5f\xf5\x0e\x37\x27\x9d\x61\x77\xf3\x27\x90\x98\xbf\xa0\x97\x39\xd7\x92\x36\x8e\x74\xc8\x6a\x38\x3d\x30\x2b\xca\x00\x1d\xbd\x57\x6c\x69\x22\x7d\xf4\xdf\x60\x98\x3c\xd0\xe8\x77\x1c\x60\x78\xbd\x9f\x2b\xb7\x97\xb9\xa3\x8c\x19\x21\xf5\xd4\xcd\x34\x2a\xf9\xa4\xf7\xf3\x38\x4e\xef\x70\x5c\xc1\x49\x35\x66\x70\x75\xa4\x10\xeb\x1f\x35\x64\xdf\x37\x2b\x16\xe0\xca\x09\xbc\xfe\xe5\xbc\xb3\x7e\xec\xe5\x58\x25\x99\x58\x68\x5c\x3d\xfa\x37\xb9\x9c\xc9\xe5\x0b\x27\xdf\x91\x84\x79\xa4\x78\x91\x8f\xdf\x5b\xad\x10\xc2\x2f\x67\x08\xf7\xc5\x1b\x22\x5a\x5d\x3c\xc4\x14\xe3\xca\xb9\x65\x9b\xdd\x58\x35\x2c\xf1\x6a\xd2\x22\x23\xf9\xd8\xcc\x7f\x1d\xd3\x1e\x86\xaa\xfb\x69\xf7\x59\x09\xa4\x51\x19\x9a\x5f\x47\x56\xf5\x92\xfa\x07\xc5\x48\x36\xc7\x7a\x22\x52\x07\x6c\x43\xa2\x57\x48\xdb\x4f\x67\xc7\xbb\x8d\xfa\x31\x5c\x5a\xaf\x9f\x28\x0b\x73\x21\x04\x26\xe7\x84\xf7\xb3\xcb\x6b\xeb\xbd\xdb\x0d\x1d\x07\x81\x97\x73\x34\xca\x17\x07\xf5\xcf\xcf\x3f\xa4\xf8\x9d\xd0\x1d\x90\x29\x99\xe4\x59\xd0\x48\x6b\xe9\xa5\xaa\x79\x90\x62\xf0\x46\xb0\x42\xfa\x70\x07\x0b\xd0\xc8\x69\xa5\xa9\xfe\x42\xdd\x4d\x62\x7e\xc9\xf0\x4d\xeb\x1a\xa0\x45\x62\x1c\xf2\x8d\x91\x61\x2b\x03\xc1\x7b\xb3\xcd\xad\x36\x07\xf0\x2e\x64\x13\x8c\xb1\xfe\xf5\xd2\xd9\x14\x9a\xc2\xcf\x3d\x12\xa3\x7c\x1a\x1e\x61\xf4\xed\x84\x9c\x03\x37\xf4\xd5\x5a\x63\xda\xf3\x2d\x2d\x63\xdc\x5e\x91\xa8\xc9\x64\xf2\x26\xad\x5e\x93\x0b\xc5\xea\x41\xbe\x31\xf8\xb1\xd8\x20\x4c\x9c\xb9\x11\x37\xe8\x1f\xbb\xc1\x81\x50\xc2\x3f\xe6\xcc\x44\xa2\x78\xf6\xd6\xf2\xfd\x32\xa1\x8d\xa7\x73\xb5\x32\xe1\x7a\xde\xde\x6e\x72\x94\x9b\xd7\x5a\xa7\xa7\xe5\x05\x81\xfc\xfb\x7b\x3b\x56\x69\x53\x31\x32\xd4\xd6\xf6\x3a\x03\x08\x21\xc2\x55\x84\x89\x0c\x5a\x36\x61\xec\x42\x61\x64\x11\xdc\x85\x22\x02\xfb\xad\xcb\x5f\x43\x75\xbf\x0d\x4b\xe8\x85\x7e\xb1\xc1\xe5\x86\x2c\xab\xa3\x41\xac\xb4\x06\xcc\x38\x09\x47\x20\x94\x8b\x51\x0b\xb8\xcf\xb2\x98\x44\xf1\xb7\x95\xe7\x95\x95\x1c\xcb\x4d\x4f\x5b\x5c\xca\xf7\xf4\xed\x1b\x19\x67\x5d\xc2\x58\x9b\xf7\x81\xec\x3d\xba\xec\xfd\x41\x7f\x1f\x83\x9a\x13\x81\xd0\x21\x2b\x4f\x27\x70\x98\x01\x4e\x4c\x02\xed\xd9\xf7\x9c\x77\x0a\x91\x80\x6d\x02\xf8\xa8\xb0\xe3\xd8\xcb\x2a\xf5\xc6\xd2\x22\x60\x5d\x46\x6e\x8e\x59\x9f\x5d\x19\x6a\xf2\x1e\x16\x70\xe9\x79\x3b\xa8\x9b\x6c\x6d\xaa\x2d\x1d\xa2\xcd\xc4\xff\xb1\x5e\x3e\x96\x28\xaa\x57\x22\xeb\xd8\xb0\xd8\xe0\xe3\xc0\x7d\x5b\xe8\x45\x0b\xa9\xdb\xb4\x8f\x2e\x26\x03\x26\xc0\x77\xe7\xa8\xd3\xb9\xe5\x6b\xd6\x10\xc5\x28\xae\x4e\x31\xa1\xf6\x6e\xd7\x29\x6e\x1a\x55\xa7\x82\x44\xa1\xd1\x43\x74\x9d\x65\xb9\x42\x36\xa5\x60\x30\x52\xe3\xbb\xd7\xf0\xb9\xd8\x93\xee\x8e\xca\xae\x86\xa0\x99\x64\x43\x6a\x6d\xc6\x42\xec\x95\x75\xdf\x44\x3c\x10\x5a\xb2\x54\x8f\xe8\xe3\xe8\x17\x62\x92\x95\xa9\x6b\xe8\x41\xf7\x4e\xa1\xbc\x7b\x20\xc4\xc6\xc1\x4a\x5a\x4e\x72\x1f\x61\x22\xc1\x0e\x74\x22\x74\x03\x53\x7a\x69\x07\xd9\xc1\x0c\x35\x14\x32\xa3\x13\xea\x4e\xc1\x28\x54\xfb\x91\x18\xa8\x7b\x3a\x15\xb3\x7e\x7e\x05\xdf\x2b\xa3\x08\x80\xb5\x04\x83\x64\xbc\x64\xfa\x8b\x02\xb6\xac\xfc\x10\xa2\x92\xad\x8b\xcf\xf8\x93\x72\xf9\x3e\xe3\xd4\x2c\xf7\x05\x1f\x85\xff\x1e\x98\x44\x7f\xaf\x54\x18\x32\x21\x34\xca\x1d\xa6\x92\x52\x6e\x9e\xa6\xd5\x7b\x4e\xe8\x85\x8e\xc0\xd2\xc9\x3c\x36\x2a\xb3\xa5\x5d\xdf\xf7\xd4\x14\xff\x8c\xfc\xf8\x6e\x84\x1a\x92\xea\x43\xbe\x2b\x32\x8c\xe7\x5d\xe3\x3c\x52\xe2\x2f\x91\x61\x0e\xc6\xea\x0a\x30\xcf\xa3\x62\x56\xa7\xfe\x02\x19\xed\x9f\xb1\xe7\x28\x67\xba\x1d\xfd\xa2\x0e\xbe\x49\x8e\x13\xa4\x70\xdc\x65\xe1\x76\x1a\x75\x71\x85\x2d\x0e\xb3\x8c\xb2\x3b\x23\x53\x58\xea\x5b\x2b\xd9\x72\x7f\x64\x5e\x45\xc5\x50\x47\x6f\x51\xd6\x74\x1b\x8a\x04\x8e\xc7\xa0\x5b\x60\xa9\x4b\x8e\x1e\x09\x4b\x14\x1f\x58\x44\x68\x8e\x92\x2c\xce\x22\x08\x6a\x85\x9f\xed\xcd\xb8\xc4\xd5\xad\x7d\xfd\x5b\xa6\xe9\x64\xb9\xe4\x18\xa9\x42\xe6\xf1\x71\xe2\xc7\x93\x38\x83\x49\x1d\x8c\x31\xac\x17\x57\x82\xd7\x6c\x45\xff\xc2\xeb\xf8\xd1\x8b\x31\x82\xe8\x67\x19\x8e\x7c\x40\x91\xb8\xc1\x63\x1b\x37\x1c\x50\x57\x3c\x7c\xbc\x9c\x97\x87\x28\x55\xf9\x8b\xd4\x45\xec\xfe\x84\x4b\xb6\x2b\xac\x24\xe4\x0d\x24\x4a\x2f\xa5\xc2\x50\xea\xd7\x3f\xf2\x24\x18\xfb\xbd\x7f\xd0\xd4\x34\x8c\x88\x23\xfe\x0d\x80\x8b\x29\xd0\xf0\x42\x7f\xbf\xaf\xfb\x07\x28\x96\xfc\x04\x8b\xb6\x86\xb4\x4f\x04\x94\xb9\xa5\xd2\x03\x5e\x49\x85\xda\xe6\x2d\xeb\xec\xd2\x54\xe5\x49\x92\xaa\x54\xee\x2d\x92\xfa\x13\x46\x9b\x77\xc4\xfd\x4c\xc3\x42\xce\x46\x11\x85\x60\xba\x4f\x56\x02\xc3\x20\x37\xd1\xfc\x50\x26\x42\x34\xe6\x0a\x7d\x8a\x0e\xdb\x23\xe1\xd0\xad\x55\x46\x11\x2a\x20\x3b\x8b\xa2\x24\x8b\x0d\xba\xf9\xa5\xfa\x09\x9a\x8b\xe8\x73\xfd\xd4\x49\x0e\x7f\x2c\x92\x92\xe4\x1f\x1f\xfc\x95\x88\x4b\xf8\x31\xb9\x63\xcb\x29\xf2\x05\x49\xba\x1a\xac\x8e\x10\x9d\xeb\x6f\xc6\x84\x27\x2e\x26\x26\x13\x46\x58\x07\x83\x6e\xc0\xaa\x1a\xf0\x67\x58\xc3\x58\xd7\xfb\xd3\x58\xce\x8e\x0e\x33\xc7\x0f\x6a\xdc\xf3\x49\x84\xd9\x91\x82\x77\x47\xf7\x8c\x25\x72\x7d\x1f\x98\x2e\xfd\x4e\x35\x5b\x9b\xc3\x53\x3f\xa7\xd8\x58\xa2\xf6\xe9\x49\x2f\xf8\x54\x7e\x7b\xfb\xe5\x2a\x3e\x3c\xc3\xab\xd2\x79\xb0\x4d\x53\xf9\x3a\xc6\x23\x68\xa9\x67\x72\x9b\x4f\xff\xaa\x40\xa9\xb5\x6b\xbd\x96\x41\x8b\x4f\xe1\xde\x72\xcc\xd3\x28\xb0\x3c\x58\x22\x4b\x75\xa8\x24\xaf\xbd\xcc\x47\xea\xa8\x6d\x8c\x41\x4d\x23\x59\xc9\xc2\xa8\x3c\x63\xf2\xe2\xe8\xdd\xb2\x25\xd7\x2e\x07\x2f\xa9\x3b\xf9\xdb\x41\xe4\xde\x4b\xdd\x29\x5f\x74\xb1\x2c\x96\x04\xec\x1e\x36\xd1\x5e\xc5\x2c\x4b\xd2\xc5\xb9\x34\x6d\xfa\x46\xd6\x64\xb5\xea\xaa\x05\x5e\xa6\xbc\x69\xc9\xc4\x4e\x33\xb4\x90\x75\xd6\xd8\x41\xbc\x1a\x22\xdf\xd5\x7f\xef\x71\x1c\x04\xe9\x45\x75\x78\x34\x4e\x18\xfe\xed\x35\x4f\x67\x01\x78\x06\xe0\x2f\xff\x60\xb0\x09\x62\x5f\x02\xe2\x3e\x81\xe0\x80\xa9\x96\x2c\x2c\x53\xfc\xe6\xc1\xa0\x1c\x86\x3e\xe7\xdd\xe0\x2c\x64\x96\x02\xa6\x3e\x80\xb7\x82\x90\x03\x7e\x32\xa6\xbf\x00\x71\x79\x79\xb2\x49\x03\x69\x3a\x85\x12\x0c\x31\xe6\x29\x04\xd6\xc2\x81\xe1\x58\x56\x29\xce\x13\xfc\x56\xe0\xd9\x58\xcc\x77\x8d\xe9\xce\x98\x38\x89\x89\xf6\x89\x83\x6a\x3b\x5d\x52\xa1\x5b\x77\x35\x3c\xed\x95\xc2\x9b\xfe\x28\x33\x8b\x5b\x7c\x87\x68\xe9\x7d\x65\xd1\x37\xc7\x25\x5f\x5d\x72\xf8\x0e\x70\xb2\x74\xec\x66\xf2\x6b\xfa\xe5\xcf\x23\x14\xfe\xf6\x91\xbc\x6c\x5f\xa5\x56\xd5\xa0\x4c\xe7\x07\x69\x5a\x54\x7d\xdd\x1b\xa5\xed\xd8\xeb\x45\x91\x25\x2b\x1a\x06\x2d\x81\xe4\xb9\xf7\x5a\x1d\x16\x18\x9d\xf1\xfc\x54\xa8\x64\xcb\x24\xa2\x21\x37\x48\xd3\x63\x05\xb7\x74\xb0\xfe\x6d\xfe\x2a\x9c\xf1\x0b\x80\xba\x2f\x71\x04\xa2\x5d\x2b\x5c\x5b\xf7\x97\xe5\x9a\x5a\x91\x0d\x86\x16\x62\xa1\x96\x9f\x51\x2d\xe2\xa2\x29\xa3\x01\x22\x38\x27\xae\xc7\xd5\x23\x47\x55\x82\x45\xed\x50\xaa\x67\x40\x94\x56\x54\xc8\x98\xfb\x70\x15\x3b\xa6\x0f\xb6\x36\x4c\x22\xe6\xc9\xec\xb7\xed\x7a\x23\x18\x01\x38\xb0\x64\x37\x46\x14\xb1\x4a\xcb\xba\xc9\x48\x75\x50\x04\x83\xe9\x79\xf2\x88\xe1\x0c\xab\x8d\x58\x5c\x6c\xc9\x76\xcb\x7d\x88\x1a\x6c\xe1\xc6\x76\xc8\xd2\xae\x05\x65\x80\x4f\x9b\x46\xdd\xf8\x5b\x30\xdd\x2a\x1d\x36\x24\x65\x5b\x25\xde\x88\x8e\x97\x4f\x71\x25\x57\x26\x51\x3c\xcc\x0c\x9d\x11\x07\xdd\xab\xf4\x60\x55\x8d\x50\xef\x8f\xca\xa7\x2e\x0d\x74\xee\xb1\x36\x37\xa5\x33\x16\x52\xb5\x53\x4a\x01\x44\x14\x83\x1d\xd5\x3e\x39\x9d\xb5\xe6\xa3\x8c\x8e\x52\xad\x8b\x26\xbe\x70\xc8\x76\x13\xae\x18\x8a\x59\x1f\xb1\xef\x17\x44\xf8\x0a\xd4\x70\x9f\xc8\x77\x55\x8b\x12\x87\x6b\xab\xc6\x1e\x6b\x34\xe4\xd3\xea\x75\x1f\xd1\xac\x4e\xf5\x03\x90\x7f\x5d\x45\x50\x97\x64\x3d\x2c\xa9\xd8\x46\xde\x08\xb4\x54\x75\x49\xeb\x15\x16\x5b\x98\x0e\xf6\x08\xe4\x67\xe6\x5b\x05\xa8\xc4\x7f\x0b\x35\x64\x49\xf6\xc3\x14\xcb\x56\x07\x8e\x35\x04\x45\x50\x12\xea\xc9\x37\x5b\x7c\xb7\x7e\x93\x5c\xf8\x8f\xee\x50\x48\x08\xa8\x65\x66\xba\xe6\x27\x65\x34\xca\x17\xc6\x3e\x30\xdd\x02\x68\x8f\x12\xd7\xf9\xf9\xb0\x87\xc3\x6b\x1a\xae\xae\x68\x81\x42\xd2\x31\x28\x5c\xfb\x4e\x96\x57\x5a\x54\xdc\x81\xa7\x16\x39\x09\x6c\x2c\x8e\x61\x4c\x1f\xdd\x2f\xea\x1a\x36\x19\xe4\x82\xd5\xf8\x3d\x7d\xb3\x6d\x57\x4f\x40\x0e\x8c\x54\xb9\x15\xf9\x98\xe2\x18\xe1\x55\x46\x26\xdb\x53\xcb\x14\x73\x91\x9b\xa9\xda\x92\x3f\x96\xb1\xc6\x84\xef\xec\x9f\xeb\x4f\xa3\x81\x0e\x7d\x51\xf7\x3c\x8e\x3e\x8f\x82\x56\xc5\x60\x79\x55\x42\xc7\x6e\x24\xfc\xdf\x45\xf6\xfb\x2f\x3a\xaf\xb0\x04\x29\x73\x53\x69\x92\x0a\x63\xe2\x03\xff\x61\xa0\xe0\xff\x4e\xc4\x8c\x73\x72\x0f\xb2\x4d\x59\x39\x5a\x08\x07\x7f\x27\x09\x95\x4f\xd2\xad\xea\xc1\xca\x5f\x77\x3e\x0c\xb9\x14\x67\x99\x69\xdc\xe8\x86\x6e\xc8\x64\xae\x25\x92\x58\xf2\xdb\x61\x0e\x94\xd0\xc4\x3b\x96\x61\xf8\x5f\x96\x25\xb5\xb8\xc0\x1f\x41\xe2\xd2\xaf\x08\x86\xd5\x5f\x8d\xdb\x21\x6f\xef\x2d\x22\x08\x58\x7f\x7f\xf3\x05\x29\x65\x5c\x2e\x91\xcf\x92\xf3\x56\xb4\x91\xeb\x20\xcd\xc7\x5f\x0b\x1d\x2b\xb1\x08\xc6\x04\x47\xc9\xed\xc2\xd3\xb7\x2e\x69\xc5\xd4\xc6\xf1\x29\x98\x18\xe4\x9c\x1e\x19\x87\x6a\x55\x8a\x7c\x9a\x01\x0b\x16\x3b\x5d\x41\xfa\x38\xce\xb6\xf3\x8a\xd4\x43\x33\x0a\x3d\x9d\xfa\xe1\x98\x71\x9b\xac\x57\xed\x6c\x26\xa2\xd3\xa6\x63\xc4\x11\x05\xff\x1e\xc2\x72\x10\xc4\x42\x59\x1d\x62\xd0\x75\xb5\x24\x4d\x5e\xdb\x9a\x74\x2f\x41\x07\x21\xd2\xf8\xab\x61\xbd\xf9\x2b\xf2\x48\xe2\xc3\xb6\x32\x80\xb5\x7f\xb4\x0f\x9e\xf0\xcc\x10\xd9\xd0\xaf\x63\x91\x56\x47\x9c\xd6\xe1\xd0\xde\x7e\xda\x3a\x77\xec\x99\x66\x8d\x53\x41\x58\x8f\x72\xd4\x4f\x86\x3a\x99\x14\x1c\x21\x8b\xcf\xcb\xe3\x48\x56\x63\xe6\x1d\xc2\xa1\xb7\x04\xd3\xce\x14\x48\x04\xb9\x75\x35\xd7\x91\xcc\x03\x63\x8a\x2e\xd7\x1d\x2f\x04\xc5\xd0\x75\x46\x1c\xec\x88\x13\x7a\xa2\xf6\xbf\x71\x8f\xe5\x83\x3d\x0a\xb8\x04\x57\x18\x41\x5d\xdd\x63\x84\xed\x80\x7d\x13\x1f\x75\xab\x91\x9f\x7f\xb9\xa2\x9c\x85\xee\xf8\xbf\x71\x33\xa6\x9e\x6c\x7c\xc1\xf3\x3e\xe1\x90\x6b\x4e\x33\x0e\x1d\x80\x31\xa5\x17\x37\x8e\x2f\xb8\x88\x7f\xf5\xb4\xd1\x5f\xfb\xd6\x93\x6c\xe1\xf6\x35\xc5\xfd\xa0\x66\xa0\x74\x84\x7b\xab\xe3\xc5\x98\x5f\x23\xea\x22\x01\x89\x7e\x51\x87\x41\x80\x76\x59\x65\x8e\x47\x32\xd7\x71\x32\x3c\xdd\x11\x27\x8e\xd3\xa1\x55\x65\xaf\xb4\x0f\x43\x9f\x65\xd6\x9e\xe3\x31\xc7\xff\xd1\x7c\xaa\xef\x6a\x04\xe3\x97\xdd\xaf\x57\x19\xe9\x80\xa1\x41\x5c\x9e\xe1\x1f\x7b\x87\x95\xf8\x6a\xbe\x41\x3c\xc8\xa1\x8d\x74\x43\xab\x56\xdb\x0d\x1f\x8d\x6e\xa1\x66\xbd\xb0\x7b\x9d\xb1\x2f\x2e\x22\x3e\x8f\xa1\x48\x4a\xd8\xcb\xaa\x11\x42\xc9\xb3\xc4\x0e\x0e\xfb\x8b\xa3\xad\xf4\x74\x17\x4a\x9b\x8c\x96\xbf\xf1\xd9\xa0\x7c\x74\xb5\xf2\x57\xe5\xd8\x73\x17\x6c\x43\x8a\x30\xe6\x3f\x8d\xcb\x22\x11\x76\xd2\x73\xa9\xd4\xb2\x84\xb6\x9d\xb7\x2f\x21\x4d\x3f\xbe\xaa\xa9\xaa\x15\x46\xd0\xed\x13\xaa\x82\x92\x36\x5c\x16\x79\x97\x07\xac\x7f\x68\xd2\x02\xe1\x31\x17\x95\x3f\x05\x5c\x13\xb2\x74\xb0\xa4\x26\x20\xc3\x5c\x97\xe6\xcf\x72\x3f\x39\xdf\x5d\x13\x75\xfe\x6b\x86\xf0\xfb\xb1\x4d\x8b\x5f\x5f\xe1\x39\x2d\xb7\x5f\x40\x89\x67\x77\x9b\x29\xe7\xf8\xce\x1d\xdf\x46\x3a\x28\xfe\xc2\x98\xa3\xfc\x8d\xc7\x85\xa6\xa4\xfe\x9b\x12\x69\xd6\xd5\x14\xee\x44\xf6\x2e\x4d\x42\xb3\xc4\xe3\x44\xc1\x21\x37\xe5\x82\x30\x9e\xe7\x61\x88\xda\x76\x33\xd6\x4e\xb7\x6f\x73\xb2\xfc\x64\x8c\x4b\x26\x8a\x52\xc0\xb0\x88\xf2\xdf\x6e\x5d\xf9\x67\x31\xd6\x65\x17\x0c\x41\x66\x77\xaf\x00\x11\xaf\x09\xd8\x4f\xf2\x4d\x9a\x0d\xa2\x46\x2b\x1c\x95\x9c\x10\x01\x9f\xaf\x03\x46\x4b\x9e\x23\xc8\x14\xa7\x7b\xe2\xa5\x23\x1a\xb8\xca\xa6\xd4\x50\x1c\xc9\x37\x9f\x05\xb8\xf0\xd5\x9c\xc3\x2a\x65\x29\x2f\xf4\x1f\x30\x5a\x0b\xa7\xa1\x70\xeb\x29\xfd\xd7\x01\xdf\xd6\x2a\xaa\x28\xcc\xba\x31\x65\x8c\x9c\x4b\xad\xea\xc7\xf4\x09\x4d\x89\xb2\x6f\xb4\x93\xaa\xe9\xcb\xa6\x47\xf7\x4b\x05\x5c\x11\xa9\xc6\x02\xaa\x85\x8e\xcb\x5a\x8e\xf1\xa8\xd5\x73\x17\x57\x44\x8b\xa7\x29\x23\x57\x62\x41\x02\x7f\xfa\x29\x0b\x7d\x24\x54\x07\xac\x8e\x78\x7f\xf1\x7e\xfd\x97\x86\x6a\x0c\x38\xdd\x0c\xde\x61\xdd\x32\xe4\xf3\x85\xd4\x31\xe8\xb9\xc8\x75\x18\x9d\x9f\x4b\x14\x8d\x2f\x2f\xd8\x16\x6f\x55\xa5\xb5\xe0\xed\xf5\xc1\x2c\x17\x1c\xf5\xf1\x9d\x84\x3f\x3e\xa4\x97\x45\x1f\x10\x45\xb1\xa7\x4f\x18\xcf\x61\xf3\x02\x85\x4d\x0b\x03\xc0\xe0\x1b\x2f\x87\x57\x2d\xd6\xe8\xcf\xd6\xa5\x65\x47\xe6\x35\x5f\xd8\xc4\x39\xd2\xba\xfc\x41\x61\x04\x18\x06\x03\x39\x9c\xbb\xf3\x75\x0c\xe5\x1b\xdd\x74\x5c\xcd\x02\xf2\x2b\xd7\x77\xdc\xdd\x34\xd4\x69\x14\x39\x5a\xae\xb5\x81\xe8\xb3\x47\x02\x71\xd5\xcf\x1d\xd5\x38\x0d\xa3\xad\xbf\x3c\x67\xa7\xf8\x7f\xd8\x1a\xa4\x3c\xf4\x35\xd1\x8b\x18\x7d\x17\xce\x97\xfd\xa2\xda\xa1\x6c\x4c\x6a\x5e\xc8\x30\xe6\x3d\x29\x40\x1c\x5d\xf0\x92\x7b\xc9\xce\x4d\x0e\x93\x49\xc4\xe7\x23\x24\xd2\xf8\x0c\x0c\x53\xef\x65\x84\xf4\xc4\xae\x75\x69\x9b\x70\xd2\xfc\x01\xf1\x48\x7c\xd0\x7e\x97\xa4\xb5\x18\xee\xd2\x13\x72\x2d\x20\x88\x1b\xcf\xc6\x5e\xe6\xe6\x0f\x1a\xe9\x3e\x71\xde\x1c\x92\xa5\x9b\x4f\x2f\x18\xfe\x48\x70\x21\xbd\x94\xdd\x6a\xf5\x8c\x2d\xc1\xb5\x1d\x38\x46\xd7\x40\x58\x6c\xc7\xbb\xd9\x87\x56\x28\xa5\x94\xd6\x40\xdd\xc8\x09\xd7\x32\x6a\xd7\x25\xb1\x55\xf8\x5c\x87\x83\xaf\x77\x16\x25\xd8\x2d\xf8\x4b\x7c\xe7\xe6\x2b\xa2\x4b\x28\xd2\xf4\x10\x8b\xe3\x2e\x0e\x5f\xae\x3e\xe1\x47\x4c\x67\xd6\x80\x20\x2f\x1a\x10\x40\x89\xc8\x0f\x95\x0f\xb9\x0f\xc3\x33\x4c\xe1\x2f\xa0\x91\x29\xf6\x29\x0c\x02\x60\x7b\x5a\x94\xd9\x30\x53\x72\xf5\xf7\x6d\xcb\x82\xfb\x69\x3e\xac\x2f\x2c\xe6\x5e\x0e\x89\x26\xeb\xe3\xf3\xef\xcd\x87\xee\x2a\x4c\x89\xa6\x74\xd9\xe3\x58\x7c\x89\x98\xb7\x16\x14\xfa\x4c\x96\x60\x9a\xcd\xaa\x73\xd2\xe8\x59\x07\xab\x1c\xe6\x3a\xc5\x64\x81\x54\x92\x1c\xed\x39\xf1\x60\xa2\xab\xf1\xa1\x8d\xdf\xa9\xae\x50\x8b\xf3\x44\x94\x13\x2e\xec\x7c\xb7\xb2\x26\x70\x59\xf1\xce\x1d\x67\x71\xa9\x3d\x76\xe8\x68\x2b\x83\xf4\x44\x2d\x43\xb1\x04\x3a\x17\x57\x34\x31\xe7\x60\x5a\xf1\x1f\x55\x4a\xfd\x45\x53\xe6\x54\x03\xd1\x3f\xf8\xc2\x91\x13\xb3\xd0\x11\xa5\x82\xea\xa6\x63\x35\x80\xac\x36\x9a\x54\xcd\x8f\xaa\x15\x43\x32\x06\xf4\xd3\xc1\x65\x4f\x5c\xab\xaa\x9c\x96\xb5\x07\xde\x7e\x0e\x7e\x43\x5f\x64\x73\xab\x81\x41\x8a\xae\x08\xea\x1f\x9a\xb2\x98\x29\x0f\xe9\xd7\x66\xca\xd4\x3e\x33\x2d\x4c\x6f\xf9\x8c\x02\xd5\x9b\x86\x1c\xa1\x4a\x21\x29\x0a\x1b\xce\x17\xc6\x01\x14\x8a\xe0\xca\xea\xfb\xdf\xd2\xe7\xeb\x55\x8f\xbf\xda\x8c\x7a\x8c\x86\xd2\x0c\xf0\x4c\x3f\xbb\x8d\x5a\xf2\xa4\x45\xdb\x79\xd4\x5a\xf3\x84\x1c\x1c\xf7\x97\x9d\x34\xd3\x16\xf2\x0a\x46\x97\xee\x0b\xeb\xc3\xcc\xd7\x7e\x54\xc9\x2c\xea\x60\x8b\xe1\x45\xd5\xe3\x13\xed\x98\x22\x59\x4e\xb6\xcd\x56\x74\x6f\xe9\x84\x5e\xe5\xa8\x8d\xde\x0f\x1f\x8a\x97\x8e\xa0\x72\xbf\x69\x8f\xab\x4b\x70\xf8\xad\x65\x70\x9b\x32\x1d\xe7\x7e\x26\x17\x42\x3e\xb1\x3c\xb4\xe4\x66\x73\x1b\xbc\x31\x78\xe1\xdd\xbc\x40\x49\x2a\x9d\xa5\x91\x3d\x49\x46\x48\x14\x43\x8f\x3f\x55\x53\x14\x53\x81\x3d\x63\x82\x57\xa8\xa7\xca\xdc\xef\x55\x63\x16\xab\xc4\x31\x52\x34\x72\x75\xd3\xc0\x7f\xf4\x0b\x86\xd7\xc3\xf4\x16\xf9\x49\x07\xd7\x71\xc0\xe8\x58\x0d\x2b\x01\xe7\x6d\x2c\xde\x8e\x69\xbf\x86\xe6\x85\xcb\xea\xfd\xe7\x8f\xba\x35\x35\xd7\x94\xa8\xc0\xf5\x4d\xa1\x38\xdb\x78\x2c\x22\xc8\x5c\x08\x92\x8b\xea\xcc\x84\xfc\xab\x37\x3c\x06\x99\x7e\xda\x5d\x7c\xa9\xd6\xd4\x6d\xfb\xae\x10\xf9\x8c\xc5\xe7\x06\x77\x78\x04\xca\x36\x73\x6b\x2d\xcb\x86\xbe\xa9\x28\x2b\x5b\x3f\xfd\xca\x76\xc7\x45\x28\x7c\xce\x5d\xce\xa1\x32\xfa\xe1\xb7\x61\x3a\xfd\x15\x08\x97\x8b\x4e\x27\xc9\xeb\x97\x3c\x03\x9a\x8e\x8f\xd4\xb5\x5c\xee\x40\x7c\x5d\xe9\x8b\xf1\x58\x44\x1b\x13\x8e\xef\xf4\x0f\x2c\xda\x9e\x40\xb7\xa8\x17\xe4\x3b\x9e\xce\xb2\xd5\xe6\x30\x8e\x58\x98\x9c\xa7\xfe\xc0\xf9\x00\xa7\x79\x28\x43\x2d\x5d\x8f\x33\x5e\x89\xbd\xcd\xc7\xcb\x0f\x6f\xc5\x8e\x57\x46\xce\x4e\xa8\x25\x93\x5b\x61\x85\x70\xee\xd7\x35\x32\x46\x7a\x09\xa4\xe9\x9f\xe8\x55\x41\x54\x7b\x9e\x9c\x24\x53\x0a\x41\x8f\x1c\xc5\xba\x55\x55\xb9\x54\x36\xa3\x9e\x01\x3c\xc8\xbe\x9b\x92\x71\x53\xbd\x59\x6a\x9b\x3e\x3d\xa3\x77\x9a\x71\xfe\xcd\x7d\x5a\xdf\x33\x73\x44\xd1\x54\x88\x74\x45\x93\xce\x04\xe7\x4a\x8b\x7a\x2d\x72\xb1\xf5\x2f\x36\x35\x44\x1c\x73\xeb\x68\x11\x71\x52\x6a\xae\x7a\x54\x85\xd8\xd2\xab\x92\x6c\x5b\xa4\x7a\x6a\xa7\x0b\x90\xb9\xef\x61\x04\x33\xdc\x38\xa2\x31\x65\xcd\xb4\xd8\x22\x7d\x5f\xed\xee\x6f\x40\xf5\x40\x1f\x19\xfd\x4c\x96\x7b\x5d\x8c\x51\xcb\x99\x10\x3a\x34\xe0\x33\xd8\xfb\xb3\xa1\xe1\x55\x3c\xea\xeb\x9f\xd3\x37\xba\x8f\x31\xdf\x66\xcb\x6f\xf2\x62\xe2\x4f\xa9\x58\xbc\xbb\x72\x16\x74\x5c\x7d\x84\xc5\x6c\xea\x93\xed\x56\xcf\xf2\x01\xdc\x9a\x16\x2a\x0d\x14\xdf\x1e\xfb\x97\x83\xea\x1a\xb7\x1c\x14\x6c\xa8\x67\xa9\x49\x10\xf8\x7a\x57\x82\x8c\x24\x95\x86\xb1\x15\x1c\xba\xad\xc0\xd3\x77\xf6\x7f\x8f\x86\xa6\xfd\xb4\xc7\xad\x43\x5b\x19\x22\x1a\x28\xe4\x3c\x15\xa6\xe6\x35\xa6\x87\xf9\x04\x3c\xc4\x98\x77\x9d\xa3\xe5\x72\x5b\x1c\x69\x65\x72\xe0\xfa\x2a\xb3\x11\xc2\x05\x68\x3b\x32\x21\x9a\x93\xdd\x9f\x2a\xd2\xdc\xf1\x95\x8d\x18\xec\x8a\x37\xf9\x44\xf8\x87\x11\x5f\x91\xf3\x0d\xce\xef\x1a\x5d\x30\xdf\xcb\xe2\xe7\x3e\x89\x76\xa2\x8a\x47\xc3\x89\xa3\x27\xbf\xe6\xf4\xb1\x9d\x88\xb6\xed\x67\xd2\x3a\x14\xa7\x9e\x7a\x65\x5f\x84\x96\x5d\xc0\x96\x0d\x6f\x72\x9d\x3a\x50\x2a\x45\xe3\x6b\xee\x46\x30\x15\x6d\x02\x71\xde\xff\x85\x61\xb6\x95\x90\xcf\x2b\x67\x6c\x3d\x9d\x53\x62\x2c\x66\x3b\xee\x31\x69\xd3\x20\x1a\xae\x28\x14\x3e\x92\xac\xa9\x3a\x11\xf9\x95\x1f\xca\x06\x6f\x58\xc4\x94\x14\x5b\xe3\x2c\xc2\xab\x53\x1f\x37\xac\x8b\x7b\x92\x69\x8a\xe9\x52\xea\x7f\x78\x90\xc5\x0e\x36\x06\x38\x09\x78\x4c\xe2\x9f\x91\x5c\xb5\x91\x73\x77\x44\x3c\x01\x74\xb2\xc4\xa9\xcc\xe0\x75\xe5\x7e\x6b\xee\x53\xa2\x41\xac\x33\xc8\xb1\xf5\xfa\xcc\x6f\xde\x61\x9b\x8e\x41\x48\x50\x44\xcc\xfa\x69\x6c\xb7\x31\x24\xf9\x76\x22\x62\x0e\x00\x31\x83\xc7\x39\x3a\x2e\x24\x91\x1a\x6f\xf2\xdc\x45\xe6\x04\xfa\xfb\x5e\xcc\x35\x3d\x89\x31\xf5\x52\x9e\xf2\x44\xd9\x36\x06\xc6\x8a\xc3\xf9\x9c\xc9\x39\x4b\x7d\x0e\xa3\x2b\x45\x21\x6a\xda\x1a\x18\x26\x8b\x57\x7e\x55\x26\xfd\xba\x11\x24\xe8\x72\xb8\xab\xfd\x77\x23\x81\xf1\x5f\x17\x82\xd2\xf0\x0f\xa1\x73\xf9\xda\xc0\xdf\xf0\x9a\xfe\x0d\xe5\xca\x28\xe5\x94\xa1\x4f\x88\xaa\x20\x69\xff\x62\x81\xe3\x63\x45\xce\xb2\x86\x28\x92\xfb\x5c\x68\x19\xb5\xfa\xed\xc8\x27\x37\x79\x64\x51\x4f\x5e\x79\x06\x9f\x2e\x94\x6d\xdc\xdf\x54\x6e\x98\x53\x05\x1f\xe4\xb3\x75\x5c\x91\x78\x07\x2b\x4e\x6a\x6f\xe2\x9f\x64\x09\x08\xeb\xe8\xe1\x11\xa5\xd8\xb4\x9c\x7b\x5c\xf0\x4c\xb7\x67\x5e\xe7\xf2\xc1\xb0\x9a\x83\x8a\x7e\xcf\xa8\xe4\x13\x5c\x24\x43\xaa\x7f\x18\x60\x03\xbc\xca\x88\x39\xb7\xc4\xef\x47\x12\xf7\x49\x36\x5d\xf3\xfd\xa8\xc0\xe9\xcd\xae\x60\x42\x8d\x32\x4c\x9f\x3e\x81\x2a\x36\x71\x62\x9b\x7b\xc8\x27\x68\xbf\xa5\x76\xc0\x00\x5f\xee\xa4\x88\x09\xe9\xc7\x70\xbb\x96\xb5\x98\x6e\xa3\x3f\x14\x29\x58\x89\x1e\x36\xd6\x4d\xef\x8d\xf2\xb3\x62\xaa\x9d\xce\x40\x4b\x11\x34\x32\x7d\xd7\xb9\xcc\xb9\x9f\x38\xf9\x51\xb3\xc9\x4a\x6f\x35\xe8\x57\xeb\x10\x5e\xc5\x97\x87\xba\xa6\xd5\x5f\x97\x02\xcc\x4a\x92\x2d\x70\x12\xae\x3e\xe7\xdb\x45\xba\x35\xd5\x7a\x96\x8d\x6f\x17\x78\xa5\x85\xe6\xd3\x84\x9e\x8f\x20\x1f\x98\x94\xfe\x1f\x00\x00\x40\xff\xbf\x6c\x36\x7c\x63\x13\x08\x14\x20\x24\x93\xe9\x52\x47\xa1\x4b\x8a\xbb\x93\x20\xba\xca\x8a\x58\x46\x80\x5d\xb6\x8a\x8d\xed\x46\x71\xe1\x9c\x6d\x2e\x73\x75\x17\xf6\x0b\x0f\x93\x01\x48\x77\xc5\xd1\x26\x09\x91\x44\x32\x0d\xc9\x00\x1a\x37\xec\x10\xed\x77\x05\x18\xfe\x6b\xb0\x0a\x26\x87\x15\xc9\xb6\x92\xc2\x42\x75\x28\x08\x7d\x27\x6f\xc1\x10\x16\x5e\x8f\x61\x85\xc5\xa5\x4b\x01\xf7\x3e\x2c\x8f\x9d\xfa\x17\xf7\xe7\x54\xf7\x41\x4b\xb6\x52\x2f\xe0\xf1\x1c\x90\x98\x94\x06\x9f\x14\x26\x30\x11\x4c\xdf\x42\x22\x83\x4e\x2f\x50\x2e\x44\x45\x21\x6d\xb0\x85\x3e\x39\x75\x02\x8f\x7e\x20\xc0\x63\x06\xed\x0a\x07\x5d\x96\x23\x01\x1d\x52\x20\x08\x95\xed\xe2\x37\xbe\xa4\x13\xb8\x79\xe1\xa0\x67\x2f\x58\x9b\x53\x95\x33\x97\xca\x70\x24\x73\x46\xfa\x85\x74\xfb\xe8\x53\xef\x3d\xbd\x53\x69\x4d\xb6\x98\xcc\x74\xc3\xa8\x1e\xee\x63\x72\x1b\x30\xd1\x95\xd9\xdc\xbf\x19\x77\x9a\x7a\x24\xa5\x4a\x2e\x04\x43\xd2\xa8\x63\x3c\x08\xd3\xc5\x0e\xef\x91\x11\xea\x5c\xdd\xc8\x85\xce\xd9\x1b\x64\xe7\x7f\xc6\x89\xdf\x19\xab\x5d\x6b\x44\x88\xe9\xae\xd4\x87\xf2\x72\xc0\xe1\x28\xd5\xa0\x23\x92\x3d\x18\x69\x0f\xb7\xec\xf2\xd8\x47\x90\xf5\x8d\x42\xa6\xd3\xda\x8a\x09\xa1\x2f\xf3\xa4\x40\x52\x08\x0d\x2c\x6b\x9a\xe5\xd1\x46\xc3\x8e\x33\x38\xc7\x08\x31\x55\xc7\xc0\xa2\xd0\xbb\x0f\xc6\xc7\x72\xaf\xdf\x87\xf3\xc4\x5b\x8e\x97\x65\xc6\xa0\x82\x56\x40\x82\x38\x35\x07\x4a\xb5\xbc\x73\x79\x88\x3d\x29\x66\xae\x70\x9e\x04\x43\xc6\x63\x05\xe8\x28\x05\x87\xd1\xd0\x38\xd8\xa2\xf6\x9e\x4b\x34\x4c\x46\x37\x0d\x52\x04\x81\x68\x0b\x1a\x81\x14\x45\xdb\x2d\xda\x81\x2e\x21\x87\x24\x00\x2c\xc8\xc4\x85\x6f\x2a\xdf\xe9\x0d\x98\x25\xc5\xac\xfe\x58\x06\x69\xe3\x38\xf8\xb3\x6b\x16\x7b\xcc\xc1\x36\xd3\x49\x0c\xd7\x09\xe8\xd2\xee\xe8\x86\x7c\x07\xf3\xf0\xb5\xb1\x66\x0c\x4c\x93\xf1\x0b\x21\xdd\xb5\x36\x68\x57\x9f\xd5\xea\x94\xaa\xcd\xb8\xd2\x39\x6e\xa8\xf9\x90\xb0\x91\xed\xe8\x2a\x44\x4f\x82\x6c\x38\x8c\x2d\xb5\xba\x36\x66\x1e\xee\x85\x6c\x29\xe3\x81\x33\x96\x00\xd2\x20\x54\x28\x65\xe4\x25\x18\x61\x68\xed\x1a\x98\xe3\x20\xe7\x99\x64\x63\xbc\x0d\x1a\x22\xba\x6f\xe3\x4a\xa6\xa9\x8a\xf0\x2c\x8e\x25\x8c\x99\x3b\xdb\x13\x29\x8c\x09\xfc\x45\x03\x79\x5f\xc1\x00\xf3\xb6\xc2\xb3\x4c\x98\xd1\x33\x8d\x19\xf6\x36\x6f\xe5\x56\x23\x2a\x9a\xcc\x00\x43\x48\xfe\x0c\xb0\xb6\x60\xe1\x24\xd6\x9f\x0e\x7f\xb0\x11\x4e\x26\xa9\x45\x9f\x7e\xb2\x33\x13\xc2\x42\xec\x5d\x23\xfb\xff\xa7\x98\x21\x70\xe1\x1b\xde\x24\xbd\x07\x5d\x81\x5c\x8b\x44\x79\x99\x49\x5c\xfe\xfa\xfe\xac\xf0\x2f\x64\xa4\x8a\x51\xef\xa7\x85\xe4\xf5\x58\x70\x40\x61\x8e\x3b\xfb\xbb\x65\xfe\x54\x41\xa8\x80\xe5\x84\xb6\xff\x16\xaf\x71\xaf\xb1\x8b\x0a\x41\xbd\x0b\x9e\x6c\x46\x0a\x86\x73\xcb\xfd\xd6\x58\xe0\xd1\x15\x03\x9b\xd8\xa0\xf1\x37\xe0\xdc\x20\x6e\x08\xc8\xef\xa6\x1f\x60\xb4\x38\xfd\xd8\x51\x65\x4b\x95\x6c\xe0\xa2\xfe\xea\xea\x2b\xec\x34\x7e\x29\xb6\xfa\xe0\x93\x9b\xfa\x3f\x70\xee\x82\x38\x37\x69\x88\xb2\x39\xac\x80\x61\x15\xc2\x67\x98\xc8\x7f\x55\xc6\xce\xf1\x50\xfc\xd1\xd2\xea\x73\x50\x5f\xa8\xd7\x9f\xce\x8c\xdc\x6e\x47\x9b\x46\xd3\xf2\xaf\x20\x12\x1c\x35\x47\x92\x65\xbe\x22\xa7\x1c\x14\x8f\x5a\xa8\x43\xcc\x61\x14\xf8\xb2\x48\x04\x85\x6f\x0c\xf0\xcd\xf4\xb0\xfa\x5e\xd1\xa5\x5f\xb4\xcd\x3e\x24\xe0\x66\xdc\x65\x72\xa5\xc3\xde\x3b\xdf\xa7\x83\x40\x08\x63\x0f\x5b\xad\xb9\x00\x12\x5a\x74\xfd\xf6\xda\xec\x10\x5f\xc0\x1d\x58\x2c\xf7\x82\xc1\x6d\x74\x47\xb0\x91\xfc\x56\x40\x3c\xed\xc9\x0d\xb0\x11\x9e\x69\x52\x7f\x7a\x45\x16\x36\x6a\x4c\x8d\xb2\xb3\xd7\x0f\x51\x70\x69\x22\xa0\xa3\x32\xbe\x14\x01\x74\x10\xad\xd7\xa8\x35\x5c\xf1\x66\xa5\xd3\x90\xa9\x4a\x32\x4a\xe5\x33\xf3\xa6\xc6\xfe\x56\x94\x0a\x30\x06\x6b\xd2\xe1\x27\x05\x43\x21\xdd\xc4\x4e\x06\x5d\x94\x4a\xd8\x71\x38\x1e\x83\x73\xcf\x94\xf1\xb4\xd1\xa1\x38\xa4\x1d\xe3\x8a\x41\x21\xda\x15\x6b\x8b\xc0\x89\x91\xa5\x4e\x29\xd3\xe9\xa8\x09\x16\x04\x15\x89\x70\x85\x0f\x49\x23\x98\xcd\x73\x04\x7d\x7c\xd1\xe2\x53\x7a\x17\x1e\x21\xb1\x7d\x97\xcc\x43\x82\x21\x73\xf6\x42\xa6\xdd\x6e\xb4\x69\x23\xf3\x0c\x9e\x01\xf6\xd0\x9a\x90\x64\x8b\xe2\x56\x23\xf2\x2c\x14\xe6\x2b\x69\x4a\xcc\x44\x13\xc6\x77\x70\x2b\x00\x96\x66\x2e\x70\x38\x62\x8c\x89\xab\x8e\x73\xe6\xc2\xbd\xc0\xa1\x3b\xcd\x6f\x94\x1c\x2a\x15\xd6\xdf\x91\x5f\xee\xc2\x26\x0f\xac\x0a\x57\xbc\x8f\xd3\xce\xce\xe5\xe3\x20\x46\x9d\x44\x4c\x40\x7c\x89\x81\xa4\xc9\xbf\xfb\x88\x68\x88\x59\x61\x3f\xee\x96\x2d\xc0\xc5\x04\x40\x5b\xad\x12\x1f\x20\x4e\xc7\xb6\x61\x88\x96\x1b\xc6\x22\xc6\x25\xd6\xc7\x8c\xdf\x13\xfa\x63\xee\x65\xfe\xac\xaa\x06\x28\x62\xf5\x88\x83\x70\x07\x38\xd7\x24\xae\x22\x80\xfb\x51\xb0\x22\x01\x86\x95\x45\xa1\x24\xf6\x45\x84\x38\x64\x8c\x19\x79\xfa\x9c\xb0\x56\x18\x00\x64\x56\x88\x24\x22\xe3\x10\x9f\x29\x0c\x50\x16\x59\xe7\xa9\xe8\xb1\x15\x6b\xc9\xab\x58\xc8\xed\xb0\x20\x2c\x21\x52\x7a\xcd\x72\x2a\xd0\x22\x4a\x81\x04\xa5\x7b\x95\xdd\xa6\x5f\x95\x34\x3f\xaa\xd9\x1d\x45\x49\x2a\xbe\x36\xf9\x03\xf6\x68\x92\x3d\xa9\x23\x3a\x8f\x21\x11\xa1\xe4\x4a\x43\xb5\xdb\x90\x35\xb2\x6e\x33\x6b\x6f\x29\x94\xa4\xaa\x50\xbd\x82\x73\xfc\x27\x47\xd9\x2d\xfb\x1a\x8a\xae\x85\x08\xa4\x95\x2b\x92\x58\x26\x06\x5c\x06\xcf\x60\x87\x8a\xc0\xd0\x3a\xce\x16\xe9\x9e\x9e\x43\x9f\x99\x5e\x53\x00\x0d\x4a\x64\xaa\xf6\xad\x10\xa2\xaf\x39\xf0\x75\x8d\x69\xa0\xc1\xb9\x77\x94\x9b\x77\x0c\xa7\x2c\xea\xd3\x53\xe8\x09\xb9\xfd\x54\x31\x6e\x88\x14\x0d\xa8\x8e\x1d\x71\x3c\x7c\xb2\x99\xb2\x88\xe7\x44\xe6\x4d\x95\x4f\xc5\xcd\xc3\x64\xa0\x2e\xb8\x40\x00\x36\x67\xb4\xc4\xfc\x44\x2a\x7f\xf1\x06\xbb\xf7\xd8\x03\x2d\x25\xc5\xb3\xbc\xd7\x89\xae\x9f\x1a\x27\xec\x53\x0f\x92\xe1\xc3\xa9\xc4\x41\x69\x2d\xd2\xe7\x1e\xaf\x5c\x56\x2b\x16\x3d\x83\x73\xc5\x01\x80\x97\x2b\x96\x31\x55\x81\x08\x56\xea\x6b\x3d\xb9\x8f\x6a\xcd\xa2\x31\x97\x5a\xaa\x34\x51\xdc\xc4\xdb\xdb\x10\x28\xe0\x04\xf0\x30\x0c\x1a\x03\xf6\x54\x07\x9c\xbd\xab\x58\x7e\x30\x31\xe5\x13\x48\x60\x70\x65\x1a\x24\x15\xfc\x87\x41\xcf\xfe\x2d\x16\xe6\x54\xf4\xca\x60\x05\x16\xe7\x72\x16\xb1\x0b\x11\x6a\xe6\xed\xd1\x81\x24\xd6\x01\x66\x46\x88\x00\x14\x5a\xc3\x13\x89\x15\x06\x67\xa1\x12\xf1\xcf\xf0\xa4\xd6\x75\xc1\xc0\xd6\x03\x5a\x50\x7d\x4a\x78\xf0\x12\x3f\x31\x08\xba\xcd\x5a\xf8\x0b\xe7\x79\x50\x8b\x4d\xc9\xda\x7f\x37\x89\xe0\x79\x5c\xc7\x53\xd6\x88\x0a\xbb\xb7\x28\x1a\x62\x88\x2e\x52\x87\x5a\xb7\x05\xfc\x98\x4c\x87\x62\x7b\xb1\x14\xbc\x30\x67\x8d\x23\x13\xb8\xdb\xa8\x56\x95\x23\xe9\x70\x32\x50\xe0\xb0\x9e\xba\x84\x8e\x38\x5b\x8a\xc1\x70\x5d\xe9\x6b\x5d\x24\x24\xb2\xf0\x93\x90\xfb\xbf\xde\x6c\x6b\x95\x85\x8a\x27\xe1\xcf\xe8\xc4\x5e\xce\xa4\x49\x5b\x12\xce\x78\x2b\x4e\xa3\x35\x25\x8c\x04\x65\x78\x64\x4c\x6e\x76\x14\x81\x9e\xce\x4a\x27\x53\xa6\x1a\xe6\x42\x20\xec\x74\x71\xf1\x7d\x6b\x61\x7f\xc1\x7c\x07\x1e\xbc\xe7\xe8\x54\xb3\x76\x9f\x06\x40\xb0\x3e\x6a\x32\x07\xae\xc6\x09\x5c\x9d\x79\xe2\x39\x4c\x12\x55\xe3\x8c\x40\xdf\xb0\x09\xd2\x76\x3c\x2a\xc5\xe9\x4a\xa3\x08\x1a\xa0\xdd\x1c\x55\x31\xe1\xea\x3f\x90\xc0\x85\xa2\x6d\x22\x58\xa7\xc1\x96\x46\xa2\x94\x6a\xe0\x4c\xb1\x9b\xb9\x4a\x9c\x7d\xd8\x2f\x68\x04\x48\x0b\x4f\xe9\xd9\xcf\x55\x3c\x4a\x21\xc0\xf8\xb9\x89\xd0\x3c\xb6\x17\x4f\x42\xf6\xce\xc6\x99\xb9\x57\x72\xa9\x5e\x1b\xc8\x58\x45\x11\x02\x5a\x46\x2d\x4f\xf2\x05\xd9\x40\x87\x38\xbc\x7d\x7e\x63\x80\xda\x95\x73\xec\xbc\x38\x40\xbf\x1a\x41\x3f\x57\xe5\x0b\x24\x34\x81\x2e\xad\xe4\x3d\xc4\xe3\xa5\x69\xfd\x1c\x0b\x2b\x18\xda\x86\x80\x61\x80\x5c\xd2\x02\x57\xfe\x9a\x81\x2d\x5b\x9f\x05\x38\x08\x0b\x04\xaa\xaa\x30\x22\xc9\x72\x8a\x37\x27\x54\x96\x19\x1c\xa1\xa5\xde\xfd\x7f\x2b\x36\x59\xb8\xe3\x8e\xaa\xe1\x5a\xe6\x4b\xc6\x19\x03\x11\xfc\xfb\x25\x38\xa2\x4f\x90\x36\x92\xb0\x70\x08\x42\x39\xf5\x2c\x69\x7e\x57\x9b\x71\x0a\x39\x81\x69\x79\xa4\x0a\x06\x51\xf6\x80\x43\x92\xb5\xd1\x6f\xa6\x0f\xdb\xda\x47\x12\x66\x2b\x34\x99\x16\xf5\x74\xa8\x6c\xec\xf5\xe1\x9a\x9b\x70\xbb\xb4\x2c\x00\xdc\xd3\x82\x4e\x28\xd0\x99\xee\x3c\x0f\xdf\x03\xc4\xbe\x75\x00\x81\x60\xe1\x38\x10\x68\x1b\x6f\xf0\x31\x5a\x1d\xe9\x8c\x0c\xd0\xe1\x9c\xc5\x81\x39\xc4\x5e\x10\xb5\xf5\x4a\x6a\xb6\xb4\xb8\x0e\xe1\x9c\xeb\xc7\x43\x69\xab\x33\xe9\x3a\xc9\xd5\xf4\x2c\xb7\x09\x01\x04\x1d\x39\xa1\x65\x6f\x7f\x60\x2e\xff\xf9\x52\xaf\x5f\x51\x9d\xb6\xdf\xaf\xa5\x41\xe5\x95\xa4\xc7\xda\xb2\xe7\x8b\xf1\x00\xb9\x7d\x00\xc1\xc1\x7f\x3b\x98\xf9\x93\xae\x60\x90\xd8\x52\xbd\xbe\xea\x8c\xa9\x16\x1a\x02\x10\x88\xab\x3c\x45\xc6\x3c\x65\xf8\x2e\x16\x10\x05\x96\x2e\xb6\x11\x42\x95\xad\x88\x49\x25\x2d\x96\x3d\xe3\xe2\x78\x62\x02\x0e\xa4\xc6\xb8\xda\xcc\x83\x88\x3d\x18\xc3\x54\x60\xbd\x21\x6b\x48\xc0\x2e\xe7\xaf\x47\x7f\x6a\x62\x15\x14\xe1\x7e\xca\x0d\x00\x1a\x95\x94\x7d\x6c\x23\x4c\x43\x83\xbd\xd1\x10\x71\x52\xb9\x9d\x9f\x93\x85\xaf\x30\x86\x0c\x4d\x52\xb7\x20\x90\x25\x29\xf8\x6e\xcc\x3e\x52\xed\x61\xaa\x2c\x0b\x61\x90\xf8\x7c\x70\x88\x63\x17\x49\xcc\xc3\x01\x95\x7a\xdd\xe4\x0e\x5e\xc3\x92\xe1\xd4\xee\xb4\x1d\xa5\xbb\x6c\xa6\x83\x15\xf6\x44\xa6\xbf\xf5\x6c\x01\x66\x87\x2f\x8e\x8f\x19\x9e\x5a\x25\x19\x8b\x87\x2e\x17\xab\x48\xcb\x20\x79\x31\x2d\x1e\x98\xe0\x9a\xa4\xcc\x2c\xcc\xa4\x6f\xc8\x78\x3e\xdf\x23\xcb\x40\x40\x6e\xb2\x3f\xce\x01\xfc\x21\x74\x20\xf5\x82\xa0\x75\xa0\xfa\x83\x10\x26\x5c\x83\x9e\x61\xf4\xe0\xfe\xd4\x9c\x62\x67\x49\x4b\x4b\xcf\x0e\x97\x61\xbc\xd2\x78\xae\x8c\x50\x91\x65\x86\x04\x4c\xd1\x68\xd4\x62\x32\x51\x20\xe6\x2e\xcb\x46\xbc\x0c\x74\x46\xde\x7b\x65\xb6\x6a\x0b\x2a\xe8\xd7\x49\x2d\xe7\x05\xc6\x94\xd0\x86\x4a\x1e\x7d\xc5\x5c\x43\x47\x37\xeb\xa9\x43\x31\x1b\xe5\x28\x87\x51\x01\xb1\x21\x7e\xe9\xc7\xc2\xf6\x2d\xf5\x01\xf1\x5c\xba\xc0\x74\xa6\xc0\x8a\xc6\x53\xa2\xb7\x32\x0d\xd7\x44\x27\x51\xa0\x88\x1b\x6f\x9b\xd4\x80\x61\xb8\x2c\x4b\x42\x80\x62\xb4\xe1\x6a\x3d\xd3\xc1\x30\xc4\x48\x00\x0d\x36\x30\x15\xfb\x47\x15\x3b\x9b\x9c\x07\x34\xdd\xa6\x0b\x58\x8c\xa8\xd6\x2a\xc5\x37\xe9\x85\x36\xb8\xb2\xef\xf2\x7d\x9a\x2a\x2a\x2e\xb7\x0e\x1e\xdd\x42\xd5\x29\xfb\xfe\x3c\xa8\x4b\x2b\x3d\x87\xbe\x96\x46\x24\xcd\x55\xdb\x59\x4b\xd5\x42\x99\x29\xfd\x88\xa8\x21\xc3\x44\x24\xc0\x61\xef\x4e\x2b\xab\xf1\x65\x2a\xda\x2f\x88\x41\xb7\x2a\x10\x48\x9d\xbb\x0c\x9a\xab\xa1\x96\x7f\x46\x06\x2f\x0e\xbc\xe0\x0d\x8a\x9a\x21\x35\xf3\x0e\x6f\x91\x8e\xac\xd8\xde\x5d\xe0\xf7\xc1\xd9\x4b\x56\xf9\xd6\xd7\x0c\xba\x2d\x2b\xce\x32\x37\x83\xa3\xad\x47\xb7\x9c\x09\x69\x24\xc4\x8e\x69\x8d\x93\xb3\x5d\x86\x4d\x4e\x25\x0b\xb8\x58\xf5\xde\xec\x32\x22\x09\xba\x78\x8b\x1b\x49\xec\xb3\x9b\xeb\x4a\xca\x7a\x3e\x95\x03\x5a\x56\x81\x5e\xa4\x50\x5e\xfc\x1f\xc5\x82\x7b\x93\x5c\xff\xc8\x49\x71\xd4\x3b\xe3\x8d\x0c\xd3\x91\xf7\x95\x0c\xd2\x15\x0a\x2d\xf0\xe9\x04\x37\xba\xed\xa8\x41\xd8\x0e\xb8\x00\xe8\x24\x03\xf1\x24\xbc\xa1\x6f\xa1\x15\x4e\x63\xc4\x34\xa2\x5b\x79\xac\x58\xf4\x12\x13\x5b\x5c\x31\xb2\x84\x77\x3e\x68\x54\xc7\xcc\x43\x52\x95\xd5\x27\xa1\x13\x8e\x21\x62\x57\x9c\x7f\x80\x20\x10\xf9\x1b\x24\xfe\x50\x99\xa5\x24\xb0\x88\x7f\xaa\x7a\x03\x62\x1e\x27\x26\xe9\x2c\x5a\x75\x03\x4f\x94\x9f\x7a\x87\x87\x9d\x40\x8f\xfd\xa3\x35\xcc\xf4\x92\x99\xa6\x00\x1d\x2e\x47\x35\xaa\x0d\x00\x06\x35\x02\x54\xa3\x87\x6f\xf9\xb9\x3f\xf0\x2a\x36\x61\x0e\x28\x4d\xe7\x62\x72\x16\xf8\xff\xe0\x43\x34\xbb\x8c\x14\x0c\x92\xb8\x80\x06\xd4\x14\xbf\x27\x93\xc1\x90\xa1\xdc\x48\xb7\x0d\x85\xc1\xbb\x88\x19\x62\x51\x0f\x04\xe4\x2a\x65\x90\x06\xac\xe1\xb1\x8d\xf8\xaa\x06\x37\x07\xfb\x14\xf7\xdd\xd0\xb9\x86\x7a\xbf\xb0\xfa\x7f\x5d\x49\x8b\x8a\xef\xea\x51\xd2\xce\x2e\x3c\xb1\x30\xe9\x5a\x59\x85\x77\x52\x1d\xbb\xc0\x04\xa3\x64\xdb\x17\x42\x5a\x3a\x14\x80\x3c\x8d\x99\x13\xda\x2b\xc7\x11\x9e\x53\xc7\x8e\xdd\x56\xa6\x66\x0b\xa2\xd5\x87\xb1\xf6\xc0\xb4\x24\xf6\x40\x67\x9d\x48\xad\xb2\xd5\x17\x70\xe4\xe2\x1e\xa7\xeb\x15\xab\xe3\xe5\x6e\x8b\xee\xc7\x00\x83\x4a\x03\xed\x92\x6e\xdf\x64\xf9\xa4\x48\x25\x6d\x64\x3e\xe1\x60\x28\x14\x19\x16\x37\xd2\x71\x0e\x65\x13\x2e\x65\x6e\x4f\x99\x31\xd7\xe3\x2d\x3c\x95\x64\xcf\x1a\x56\x6f\x03\x33\xfc\x06\x1e\x68\x90\x7a\xe0\x15\xd8\xee\x4e\xb2\xe7\x75\xa2\x70\x88\x7e\xb6\x99\x10\x24\xf4\xa4\xc8\x8c\x11\x6c\xc4\x8a\xbf\x0c\x2d\x27\x88\x07\x1f\x46\x87\xc7\xaf\x20\xa1\xa4\x77\x5c\x32\xae\x23\x46\x77\x68\xee\x44\x90\xb1\x05\xf5\xfe\xc8\x5a\xc6\xbc\x07\x4b\xcd\x2c\xa6\xce\x24\x54\x60\x95\xb9\x90\x56\x25\xe1\xd3\x42\x4d\xa1\x90\x5f\x35\x3f\x2c\xdb\x2b\x21\xef\x24\x9a\x52\xfa\x07\xb4\x1f\x49\xad\x7f\xe5\x19\x86\xdc\x5b\x26\xc0\x7e\x15\x6f\xae\xf9\x3e\xaa\x02\x34\x30\x69\x58\xe6\x8c\x73\x49\xe9\x67\x26\xb0\xc8\x4f\x6d\xfb\x8b\x9f\x05\x74\xbb\x9b\x0c\xe0\x21\x07\x5b\x75\x5b\x73\x82\x61\x32\x6a\x7a\x06\x66\x8c\xf5\x58\x80\xdc\x87\xe5\x2c\x4e\x63\x90\x34\xde\xcc\x5e\xe2\x00\x90\x1b\x6c\x7c\x06\x68\x75\x91\x27\x61\x85\xbe\x78\xf8\x7f\xa9\x9e\x73\xf3\x73\x56\xab\xc2\x37\x67\x04\xb8\x2e\xfb\x30\x69\x72\xb4\xc9\x0a\x34\x9f\x0b\x6b\x0e\x29\x5e\xe6\x6c\x2e\xee\x42\xa6\xa0\x60\xdf\x55\x9b\x4f\x65\xd0\x05\x6b\x80\x1b\x69\x03\xf2\xa8\xb9\xa3\x2d\x2f\x88\xf5\xc2\xb0\x09\x14\x1c\x9a\x8b\x8c\x37\xd4\xee\x53\x0a\x25\xd6\xf6\x6d\xd0\x31\x8a\xbf\xc6\x30\x04\xe2\xb2\x92\x75\xf0\xc0\xd2\xb5\xe0\xc1\x10\x3d\x8d\xca\xa9\xce\x1e\xf5\x15\x38\xbb\x9e\x93\x94\x3b\x51\xc5\xd3\x32\xb0\xd5\xb1\x53\xb7\x8a\x16\x04\xad\x05\x07\xfb\x74\x31\x55\x98\xd8\x4a\x6e\x64\x09\x17\x32\x1c\xe3\xea\x89\x31\xd9\x89\xc4\x41\x74\xe5\x34\x66\xc9\x63\x1e\x27\x64\x89\x68\xdd\x79\x65\x50\x8d\xda\x3b\xec\x39\xe4\x5d\x9f\x9c\x50\x12\x74\xf0\xa6\x3c\xc1\x3d\x26\x71\x88\x3a\xdb\xfc\x44\x56\x72\x8c\x01\xa9\xa3\x0d\xcb\x4d\x05\x08\xcf\x4b\x49\x58\x4c\x3c\x39\x18\x11\x1c\xba\x3b\xa0\xa3\x29\xeb\xc3\x53\x19\xf4\x78\x9d\x71\xfb\x0a\x02\x06\xfe\x23\x04\x9c\x6b\x44\x7e\x01\x36\x4e\x5e\xc9\xf4\x18\xff\x08\xfc\x46\xd1\x44\x68\xf2\x10\x6e\x6d\x38\x75\x3d\x1a\x1b\x61\x3e\xb4\x4d\xf4\xd1\xca\x21\x74\x58\x27\x78\x15\x94\x9b\x87\x6d\xdd\x78\x4e\x80\x5a\x07\xeb\x84\xdc\xec\x51\xa7\x9a\x40\xe0\x01\x4b\xf5\xe7\x0b\x09\x52\xd5\x2a\x96\x79\x42\x59\x14\xec\xe9\x8a\x00\x2c\x22\x19\xb3\x87\x5a\x93\x21\x51\x48\x50\x15\x3f\xc3\xba\xa5\x2c\x49\x74\x63\xe6\xa4\x66\x43\x58\x7b\x22\x27\x6e\xa0\x87\x36\xfb\x33\x86\xd2\x1f\xf2\x1a\x03\x86\xbe\x92\xc4\x9f\xa5\xef\xd6\x31\x53\x32\x16\xd4\xb2\x09\xb7\xff\xa8\x61\xad\xb4\xf9\x62\x45\x28\x56\x62\x1b\xbc\x61\x80\xc4\xf1\x41\xd9\xc6\x08\x82\x3b\xd0\x59\x11\x21\xb7\x62\x07\x3d\x06\xde\x84\xf2\x49\xd2\x23\x1c\xae\x0e\xaa\x38\x7a\xf9\x9c\x3c\xbd\x98\xcc\x4a\x0f\x4e\x7e\x09\xd0\x5e\x24\x89\x30\xc5\x9e\xf5\xd5\x15\x51\xac\x18\x2a\x25\x4f\xee\x1c\xcf\xd0\x90\x8d\x0c\xd6\x2e\x48\xee\x10\x81\xc5\xc8\x5f\x38\x83\x9f\xd6\x86\x32\x34\x78\x17\x70\x4f\xe8\x58\xc9\x0c\x84\x0c\x6a\x77\x49\x7a\x9b\xea\x5c\x5e\xf9\x99\x88\x3e\xf0\x81\x05\xed\x93\x70\x40\xad\xe1\x67\x05\x63\x21\x7f\x00\xbd\x4d\x33\xa9\x93\x4c\xc6\xdb\x79\x8b\x30\xe4\x30\xf8\x51\xa8\xb3\x47\xe8\x5a\x06\x98\xcb\xa5\xd8\x6f\xb6\x1c\xd9\x83\x81\x72\x60\x8d\x03\x3c\x49\x80\xbf\xbc\x2d\xc9\xe1\xcd\x77\x1b\x5f\xa8\xf5\x03\x4a\x95\x8f\x0d\xe6\x1a\x02\x6b\x70\xb4\x9c\xb0\x70\xd1\xce\x51\x51\x57\xaf\xf1\xa9\xe9\x16\x44\xc5\x6b\xaa\xb1\x86\x6e\x3d\x87\x80\xb2\x20\x33\x46\x92\xc5\x75\x25\x72\xca\x21\x2a\xd8\xfa\x7b\x9b\x2e\x85\x4f\xa1\x2a\xc2\x9c\x66\xae\xb5\x81\xc0\x4d\x3e\x65\xc0\x68\xf1\xd2\x4e\x30\x17\x4f\xa4\x50\x3e\x8c\x76\x50\x45\x41\x6a\x80\x65\x09\x92\x3a\x8c\xcb\x69\x2d\x22\x1c\xff\x26\xe4\xd0\xeb\xaa\x83\xc0\xaa\x79\xda\xb0\x30\x38\xa7\x6e\x1e\x36\x5c\xf1\x2a\xfa\x21\x60\x4f\x94\xfc\xc6\x61\x27\x21\x62\x5d\xb6\x50\xb9\x11\x30\x11\x48\xd0\x1d\xc6\x88\xdc\x3f\x73\x0a\xe6\x50\xc0\x86\x77\x77\x79\x21\xe3\x18\x50\x4c\xa1\x39\x84\x85\x6d\xca\x65\xd4\x0e\x8c\xba\xbf\x14\x37\x66\x5a\x23\x0b\x5c\xc3\xc8\x96\x57\x7f\x22\xd8\x1e\x44\x0b\x39\xdb\xf8\x72\xef\x2a\x1d\x31\xac\x15\x1d\x88\x83\xed\x3d\xf5\x24\x5a\x63\xd4\xdb\xd7\x19\x65\xe2\xc2\x68\x6a\x5d\x71\x33\x2c\x3c\x29\x12\x4a\x3d\x0a\x22\xa4\x6b\xa3\xb5\xf3\x94\x71\x4e\x61\x96\xc2\xd0\x6c\xd5\x69\x61\x44\x03\x22\x14\x35\x25\xd5\x35\x72\xc8\x29\x9c\x47\x7b\x83\xa1\xa7\x02\xa4\xb1\x15\x52\x86\xab\x42\xff\x58\x42\x32\xff\x78\x34\xd3\x83\xa7\x4d\x59\xca\x29\x84\x4c\x83\x27\x9d\xa4\xd1\x4c\x33\x00\x80\x76\xa9\xef\xc0\x4d\x91\x11\xef\x93\x37\x3e\x36\xb9\x0f\x64\x1d\x1c\xe4\x6a\x6f\xb7\xd8\xfc\x5f\x2c\x18\x29\x87\xf4\x83\x1e\x47\x2e\x64\x92\x44\xbe\x38\x3b\x52\x25\x6c\x56\x85\x1d\x65\xa0\x87\xc6\xb3\x17\x37\x5c\x7f\x4a\xc8\xc2\xa0\xc8\x40\xe3\xce\xb6\x94\xf0\xba\x44\x1c\x08\x5e\xca\x7c\x49\xc6\x49\x91\x4a\x31\x71\x14\x7a\x16\xdf\xc8\x72\xbe\x5d\xc1\x68\x17\x55\xdb\x34\x89\x93\x42\x76\xb5\xef\xea\x8b\x1b\x48\x7b\x68\xa1\x77\x16\xba\xeb\x7f\xa1\x3d\xbd\x27\xca\x8f\x9c\x15\x2b\x4e\x87\xd0\x83\x35\x85\x8b\xe2\x4d\x7a\x3a\x81\x2c\x79\x5e\xbe\xd4\x0f\xcf\x7c\xc2\x1b\x42\x8c\x21\x53\x0b\x1c\x11\x4d\x00\xcd\x7d\x35\x45\x00\x92\x5a\xaf\xf4\x80\x2d\x03\xe0\xf3\xd9\x21\x99\x90\x47\x83\x27\xb8\xa7\x60\x3f\x94\x4d\x24\xdf\x85\xb4\x96\x19\xf1\x8f\xcd\xec\xbf\x31\x89\x35\x93\x02\xaf\x00\x39\xd7\xe8\x8f\x05\xa3\x53\x61\x8f\x03\x38\xbd\x8f\xd7\x00\xb2\xaa\xd1\x8f\x7c\xaa\x1d\x29\xf5\x3c\x58\x44\x74\xd1\x35\xe6\x4c\x90\x4f\x06\x86\xb9\xd9\x53\x70\xf8\xc7\xc5\xc3\xc2\xd9\xa6\x6c\x08\x32\x59\xf2\x11\x1f\x11\x21\xac\x34\xc6\x88\xbc\x32\x9a\x8d\xca\x89\x0f\x11\x7a\x8d\x01\x2a\x3e\x08\x4f\xb2\x31\x0f\xfd\x5e\x42\xa3\x05\xb8\x37\x55\x32\xc9\x18\x9b\x5a\x83\xcf\xe8\xd7\xcf\xbd\x7c\xd7\x66\x6f\x6c\xc9\x19\x1b\xb8\xb8\x7e\xc7\x32\xc7\xfd\x5e\x90\xf2\x61\xbe\x54\xe7\x32\xfd\x0e\x15\x62\x5b\x95\x18\x25\xd6\x01\xa1\x4a\x4e\x4c\x1d\xca\x1e\x07\x5d\x61\xa0\x15\x93\xaf\x8c\xc8\x83\xd5\x83\x6d\xc5\x2a\xee\x84\xf6\xae\xfb\x29\x2f\x72\x52\x54\x1b\x72\x21\x3a\xf4\x85\x46\xe9\x19\x29\x56\x48\x58\x77\x01\x5f\x07\xa7\xd5\x70\x12\xae\x5f\x61\x69\x77\xe7\x4e\xd1\x15\xbb\x1e\x42\x18\xd8\x2b\xc6\x68\x21\xc6\x95\x44\x96\xb8\xa2\xf4\x45\xed\x7c\xd0\x11\x48\x96\x41\xd9\xc5\xa0\xc9\x73\xf2\xa4\xd0\x8f\xae\x28\x89\x05\xf7\xc6\x03\xfd\x19\x92\x16\x08\x10\x3e\xc4\xa3\x5b\xae\x3d\x09\xb2\xa3\x2e\xa2\x37\x14\x27\x52\x16\xc7\xa6\x23\xb9\x2d\x42\x15\xb6\x04\xd1\x61\xa0\xb4\x20\x46\x92\x05\x07\x8a\xeb\xdd\x09\xf6\xe5\xf8\x3a\x4d\x94\xb3\x29\x84\x32\x37\x18\x91\xe5\xad\x42\xfc\xe5\x0d\x08\x32\x0d\xed\x53\x3c\x15\xe2\x89\x43\x68\x45\x7f\x2d\x6c\x9d\x5d\x39\x10\x06\x20\xda\x67\x92\x94\x81\x08\x79\xed\x6e\x22\x60\x1c\x40\x14\x92\x28\xd6\x5d\x75\x1d\x96\x1d\x3a\x22\xb8\x9e\x00\xdd\xdb\x48\xc5\xac\xb1\xf3\xc4\xbf\xbf\x09\x12\xcd\x66\x26\xb9\x18\xe1\x72\x8e\xf9\x5c\xe6\x74\x47\x52\x74\xaf\x95\x9b\x5f\xa2\xcd\x6c\xa4\xa7\x51\x67\x10\x9b\x9d\x2c\xd1\x20\x52\x3f\x97\x99\x7c\xe9\xb3\xa6\x40\x57\x0c\x7f\x40\x3d\x01\xcc\xd6\x09\x24\x13\xe7\x12\x06\x8d\xba\x89\x39\xac\xa7\xbf\x60\x8a\xa7\x2c\x95\x16\x71\x34\x9c\x09\x7f\xe1\x2a\x85\xb9\x11\x24\x08\xf6\x6e\x16\x20\x3f\xd4\x70\xd3\x60\x8c\xd0\x16\x64\x23\x12\x71\xdc\x2c\x60\x36\x99\xe0\x43\x24\x39\xf3\x1d\xcd\x0d\x4d\xab\xc7\xfd\xff\x58\x78\x27\x10\x3a\x4f\x42\x31\x66\xb2\xb7\x70\xf4\x87\x7a\x7f\xb0\x21\x71\x1e\x89\xd5\x07\x34\x3f\x0e\x15\xf0\x75\x47\x2d\x7b\xc6\x22\xc7\x3b\x57\x4e\x6c\xe5\x0e\x71\x5a\x58\xe0\x8e\x3e\xe9\xc1\xad\xec\x78\xff\x54\x46\xb0\xcf\x28\xc9\xf3\x25\x2a\x9d\x8c\xfc\x99\xc9\x8b\x34\x1a\x82\xa7\x4b\xab\x52\x71\x03\x3b\x57\x79\x28\x1c\x7c\xe0\x16\xfa\x35\x80\x59\xd4\x09\x0d\xd0\x90\xb2\x9d\x1f\x41\xc2\x4b\xb1\x1d\x2a\xaa\x27\xb3\xf1\x13\xe5\xb6\xbd\x1f\x96\xb7\xe4\x8b\x8a\x1b\x4e\x86\x9d\x83\x8a\x33\x3d\x8e\x65\x9a\xb6\x86\x92\x88\xdd\xc8\x70\x14\x4b\xdf\x24\xfa\xaa\x05\x9e\xab\xd3\x1b\x27\x37\x53\xe6\xc3\x3a\x8c\xfd\x14\x36\x5c\xcf\x5f\x6b\x06\xd6\x6a\xfc\x78\xfc\xc2\x7b\xd2\x92\x31\xfc\xc8\xd3\x96\xbf\x72\x29\x3e\xa0\x1e\xe0\x1f\x51\x93\x8b\x63\x0a\x0d\xca\xbd\x18\xda\xbc\x81\x9e\x1a\x1a\x09\x29\x89\x12\xe2\x21\x9a\x0b\xe4\xc6\x38\x9e\xd8\x19\x12\x2c\x08\xb1\x11\xb8\x20\xe2\xf0\x47\xa9\x43\x9a\x24\x68\xf0\x90\xaa\x20\xb0\x13\x3b\x2d\xda\x7b\x5d\x2a\xe8\x49\x2d\xc8\xa7\x7e\x96\x5a\x70\x98\xc8\x83\x59\x27\x6a\xe6\x9f\x6c\xc9\x51\xc9\x90\xa0\xcf\x07\x00\x35\x62\x25\x84\xda\x4c\x41\xf0\x75\x1d\xe1\x6d\xe2\x26\xc4\x70\x78\x42\xc0\x2b\x4f\x20\x05\xf0\xd4\x6a\x09\x02\x0f\x02\xdf\xe0\xd8\x8f\xe0\xbc\x09\x30\xe8\x35\x52\xfc\x63\x8c\x3d\xc1\xdc\x1f\x31\xf2\x9c\x62\x36\x2a\x41\xc8\xb4\x7a\x41\xc8\x45\x63\xd8\x1b\x73\x6b\xab\x6f\x59\x16\x53\x81\x65\x10\xd7\x26\xce\xc3\x16\x5a\x06\x95\xde\x21\x91\xba\x00\x09\x16\x6e\x08\x88\xb3\xd2\x39\x78\x53\x25\x88\xaa\x61\x2d\x5b\x0c\x8b\x05\x6f\xd3\x28\xc1\xec\xa8\x00\x30\xa4\xe8\xfc\xf6\x0a\x60\x18\x5a\x88\x3c\xf5\x20\x88\x94\x0c\x2b\xac\xd5\x12\xf2\xb2\xb0\xac\x44\x00\x40\x3b\x89\x7d\x40\x74\x99\x65\xf1\xf7\xe0\x01\xd8\x13\x88\xb8\x41\x10\x1a\x52\x57\x4e\xf4\x38\x29\x82\xc8\x16\xd2\x05\xea\x00\x10\x07\x02\xc3\x3c\x97\x92\x69\x71\x11\xea\x2f\xa2\xc3\x0d\x88\x9d\xb8\x55\xf9\xa4\x5c\x63\xdc\x6a\x9c\x22\xa0\x8d\xa0\x2e\xe5\xff\x88\xb6\x29\xaa\x17\x40\x69\x81\x6b\x49\x0f\x81\x1a\xb0\x10\x13\x63\x56\x0b\x2b\xad\x0b\x6c\x9b\xde\x52\xc7\x6b\xe3\x55\x5b\x96\x11\xdd\x57\xc1\xa8\x14\x18\x3a\x00\x65\xb9\xd5\x93\xfe\x86\xeb\x3e\xa4\x44\x49\x98\x3d\xb6\x26\x42\x85\xa5\x90\xe0\x97\xd2\x6e\x37\xfc\x0d\x05\x0e\x9a\x0c\xc2\x60\x8f\xec\x89\x80\x4c\x93\x08\xa4\x47\x4d\x7d\x44\x7d\x7c\x58\x34\xd0\x60\x46\xbe\x9d\xe1\xb6\xda\x91\xe6\x19\x5d\x3e\x4c\x8b\x96\xc4\x40\x7e\x7c\x27\x40\x32\xd9\x81\x61\x63\x85\xa0\xf4\x93\x8d\xc2\x63\xd5\x83\xd0\x46\x42\xf9\x5d\x2f\x5b\xc4\x82\x41\xf5\x5a\x65\x0d\xcb\x8c\x7b\x12\xf5\xe6\x42\x9a\x18\x14\x46\xc5\x16\x97\x25\xd8\xc4\x77\x66\xf3\xda\x75\xe4\x3d\x8b\x49\x6e\xc7\x80\x82\xeb\xd8\x6d\x84\x3f\xed\x79\x21\x5e\xbc\xae\x91\x1d\xdb\x56\x93\xf6\xd0\xc0\x48\xc9\x8a\xe1\xe0\x1a\x78\x89\xaa\x04\xe9\x79\xc9\xf2\xd0\x85\x78\xe2\x16\x5a\x80\x7b\x27\x88\x9a\xbe\x8e\x3a\x67\x46\x7c\xc4\x48\x2b\x02\x7f\xa8\x1d\x92\x10\xd1\x58\x6d\x3d\xfe\x40\xa8\x96\xf9\x0a\x72\xe0\x88\xd1\xd7\x07\x1a\x42\xe8\x8d\xf1\x21\xdd\x1e\x9c\x63\x64\x4d\x91\xf1\x00\xf3\x15\x45\xae\x7e\xd7\xb9\x97\x9b\x27\xbe\x42\xad\x08\x33\x82\xd1\x50\xdf\x04\xc2\x87\x90\x10\x4f\x73\xb0\x7f\x8d\x90\x86\xaf\x4f\x0c\xa0\xec\x29\xa3\x7e\x5b\x8b\xf5\x74\xb3\x48\x9b\x98\x7e\x3d\x2d\xa4\x7c\x88\x6a\xa6\xd2\xbd\xb3\xbe\x7f\x57\x5c\xa7\xb9\x23\xe0\x22\xf2\xfc\x5b\xa5\xc2\x0a\xd9\x5f\x3c\xee\x49\x0b\x91\xb7\x15\x32\xc5\x94\xc3\x8d\xdf\xb9\x52\xdb\x44\xb3\x4b\x16\x8a\x76\x09\x2b\x15\xe9\x04\x81\xcc\x20\x23\x74\x66\xa3\x78\xd1\xd2\x19\x53\xa2\xa4\x3c\x5c\x15\x98\x95\x23\x25\x2d\x25\xd3\xdf\xc1\xec\xfe\x05\x7a\xac\x88\xa3\xdc\xfe\xf7\x26\x2c\xd6\x58\x52\x53\xaa\x7f\xff\xb0\x0a\x95\x47\x80\x7e\xcf\x50\x9e\x2c\x0c\xa1\xe8\xa2\x11\x86\x03\x72\x01\x6f\x26\x09\x41\x1c\xfe\x7f\x66\x0f\xec\x10\x8c\x7c\xc2\x11\x67\x24\x42\x48\x9c\xc8\x5d\x0f\x48\x96\x24\x82\x11\x1b\x76\x42\x56\x64\xa9\xee\xca\xe2\x79\x8d\x17\x23\xad\x9b\x0e\xfa\x2d\xd4\x8b\x14\x8a\x8a\x58\xb8\xa0\x3a\x71\x5e\xc0\x7f\x3d\x24\x41\xd4\x18\xa9\x79\xf0\x05\x55\x93\x67\xfc\xac\xe9\xdc\x77\xad\xc0\xbf\x40\x9c\xc0\x02\xed\x1d\x46\xc2\xac\xcd\x1c\x6c\x01\x3e\x84\xca\xfe\xb3\x40\x71\xce\xf6\x82\xaa\xe6\x54\x00\x67\xc8\xca\xd1\x3a\x87\x03\x8e\xf2\xdc\x14\xcb\x4c\x92\x26\x04\xa0\xe0\xbd\xde\x69\xb8\x68\xce\x69\x08\x03\xa8\x2b\x22\xd7\x6a\x02\xd5\x41\x13\xf9\xc2\x2d\x00\xba\xe3\x00\xf7\x06\x54\x5b\x1b\xb6\x5f\x2e\xde\x5c\x28\x31\xd1\xd6\x3f\x2d\x98\x00\x06\x70\x07\x9a\xcc\x2c\x91\x74\x9c\x48\x2f\x66\x57\xba\x19\xa5\x65\x9e\xb8\x6d\x71\x57\xa4\xf8\x3a\x8d\xaa\x83\x97\x55\xab\x34\xd4\xc8\xd5\x40\x3d\xd7\xe2\xd3\x16\x2f\xa2\x79\xb3\x54\x91\x00\xc1\xef\x4d\xdd\xd7\xa8\x97\x4a\x57\x77\xb7\x7a\x2e\xb9\xa8\x50\xaa\xc1\x4d\x55\x65\x0a\x46\xdb\x59\x21\x32\x32\x32\x3b\xc6\x6d\x61\x70\x49\x1e\x09\xbb\x47\xa4\x1a\x66\x26\x4c\x4c\xc1\x38\xd9\x28\xcc\x04\x81\x25\xeb\x20\x9a\x07\x9b\xc5\xd6\x01\x14\x99\xde\xbf\xa3\x0f\x25\xe4\x78\xe1\xbc\xc7\x55\xc9\x44\xa1\xc8\xb8\x19\x70\x40\x1e\x80\x90\x12\x53\x10\xff\x08\x81\x54\xa6\xe3\x2e\x38\x4b\x75\xec\x82\xa7\x08\x52\x45\x70\xbd\x1d\x86\x9c\x2a\x79\x6a\xc3\xf8\x70\x11\xc7\x10\xe4\x7d\x95\x79\x04\x67\x39\x88\x86\xc0\x2e\x4b\xad\xe3\x05\xcd\x61\x17\x18\xde\x07\x5c\x06\xe1\x22\x63\xa9\xea\x1e\x80\xc9\x4e\xd8\x1c\x2e\xd4\x1b\x10\x17\x47\xc9\xcc\x3f\x2a\xa1\xf4\xcc\x72\x98\x50\x20\xba\x89\x80\xf2\xc1\xb8\x77\xd8\x83\xcf\x3b\x90\x35\xea\xd4\x1e\x72\x14\x29\xc6\xec\xc3\xa4\xae\x5f\x55\x46\xb9\x8f\x7a\xa0\x21\x6f\x67\x5c\x32\xee\x03\x4c\x66\xd9\x70\x30\xde\x70\x26\xf0\x6c\xaf\x9a\xa6\x5d\x46\x76\x62\x89\xb4\x15\x83\xaa\x9a\x96\x98\xf2\x2a\x12\xef\x23\x70\xdb\x1a\x33\x3e\x27\x4e\x91\xb9\xa1\x15\xd3\x06\x41\x48\x76\xe2\x73\xaa\x26\x8a\xe7\xb1\x86\xe0\x9e\x85\x4d\x87\x2c\x92\x73\x45\xf4\xed\xde\x30\x60\xb1\x31\x69\x90\x63\x74\xc8\x39\x90\x6e\xfc\x16\x77\x0b\x83\xd7\x29\x23\x1a\x62\x14\xab\x47\x21\xda\x45\x53\x88\x4b\xba\x98\x67\xd3\x59\x86\x80\xc9\x0a\xc0\x6d\xef\xd8\x89\xa8\x50\x68\x91\x75\x04\xdb\x99\x92\xb6\x37\x46\x70\xbb\x04\x48\xaf\x7b\x80\x44\xc5\x2f\x89\x26\x57\x30\xd9\x24\xd0\x24\xfa\xcb\xa6\xda\x59\x99\xd1\xcd\x19\x6a\xea\xef\xd9\x52\x4b\x56\x52\x14\x56\x02\x51\x81\x34\x31\x64\x37\x1d\x11\x0c\xd7\x49\x87\x8f\x82\xc8\x55\xe2\x9d\x53\x3d\x4a\x03\x3f\x32\xfc\x30\xae\xc1\x89\x51\xc9\x85\x8c\xe1\xf8\xf6\x72\x0c\x90\xae\x47\x3f\xda\x6f\x50\x19\xa7\x25\x71\xc6\x10\x97\x20\xb0\x34\xf7\x87\x0b\xe0\x0e\x86\xb3\xbf\xa0\xbc\xbe\xb0\x1e\xed\x4d\x2a\xee\x11\xfb\x03\xb6\x8b\x50\x64\x0d\x89\x38\xa4\x9d\xe6\xe3\x25\x7c\x57\x10\xc3\xb5\x75\x5d\x9c\xba\x0d\x44\xc5\x43\x88\x06\xad\x90\xfa\xdf\xa2\xc0\x78\x12\x35\xf4\x4a\x6d\x1e\xac\x3a\xf8\xab\x61\x4d\x8e\x80\xe8\x13\xbe\x88\xd5\x64\xdf\xc6\x6a\xbe\x71\xe9\x93\x8e\x5a\x3c\x88\x93\x15\x5b\xff\x94\x2e\xfd\x22\x90\x6c\x97\x66\xc8\xae\x91\x85\x31\xe4\xb5\xbb\x5a\x55\x71\x5c\x01\x9f\xd7\x10\xdf\x6b\x3b\x17\x84\x29\x4d\xdf\x78\xdd\xdc\xca\x85\x7e\x19\xce\x8e\xb2\xc0\x1a\xf3\x4c\x1f\xd1\xdc\xbd\x4d\xdb\x0e\x7c\x65\x82\xad\x24\xfe\xea\x9b\xe1\x20\x05\xbe\x5a\x8c\x34\xd6\x03\x05\xa0\x09\xb6\x96\x69\x5e\x67\xcb\x04\xf6\x9e\xfc\x35\x9c\xaf\xb6\xdc\x43\xb6\xd9\xf9\xb0\x89\xf7\xe5\xe4\xd4\xf2\x84\xe0\x9a\xcd\x2b\xc2\x46\x13\xcb\xab\x46\x28\x48\x77\x30\x46\xfa\x34\x55\x24\x2c\x6f\x86\x88\x74\x18\x02\x6a\xd7\xc1\x02\x54\xb2\xd4\x61\xbb\x1c\x60\x96\x2b\xc6\xf6\x76\x42\xd8\x78\xb6\xae\xa0\xf7\x45\xf4\xd5\x54\x61\xb6\x8c\x16\xe8\xb7\x26\x3f\x4d\xf7\x6c\x2d\x2d\x45\xc0\x3d\xa2\xdb\xf5\x69\x0a\xda\x73\x3c\xd3\xad\x10\x38\x5c\x9c\x24\xb7\x1f\xa9\xef\xa0\x4c\x07\x07\x1f\x50\x64\x41\x02\xf1\xdc\x42\x3c\x63\x00\xbe\x36\xc5\xaa\x32\x12\x62\x59\xff\x33\x65\xe0\xc7\xf8\xfb\x12\xf5\x95\x7b\x11\xd8\x31\x5b\x90\xab\xf8\x36\xc5\xe3\x30\x26\xca\x70\x42\x70\xc1\x1a\xf8\x42\xbc\xdd\x43\xe3\x31\x7c\x42\x76\xe8\xd5\x25\xca\xa0\x80\x30\x7b\xee\xab\xf1\xa8\x40\xe3\x41\xb0\x5a\x64\x82\xf0\x90\xc7\x5a\x31\x89\x41\x5e\x98\x0e\x01\x57\x6b\x7f\x34\xf9\x0c\x42\xea\x6d\x0b\x05\xc5\xef\x25\xe2\x44\x2d\x58\x25\x80\x7d\x4b\x2d\xab\x18\x36\x6d\xf4\x94\x25\x9d\xdc\x22\x8c\x5f\x93\xb6\x2c\xf6\x10\x80\x73\x60\x57\xe9\xf0\x44\x5f\xc8\x97\xef\xa8\x18\x41\x94\x9c\xb1\xd3\x56\x21\xad\x08\xba\x8f\xd6\xd9\xe6\x9f\x72\x26\xaa\x44\xcc\x3d\xd7\x34\x09\xe6\x38\x3f\xb6\xf2\x20\x00\xd5\x5b\x16\x33\xca\x27\x22\x9f\xb0\x05\xf5\xe2\x56\x7c\x87\xb1\x6d\x41\x98\x47\xfc\x45\xf4\xcd\x3d\x07\x8a\x9e\xc8\x84\xcb\x8e\x24\x50\x58\xe4\x41\x53\x7c\x88\x06\xf2\x7b\x6c\x47\x6c\x3e\x20\x83\x12\x3d\x19\x60\xb7\xce\x91\x66\xcf\x7c\xf5\x87\x11\x30\x46\x38\x1f\xbf\x96\x30\x26\xa7\x4c\xf7\x5e\x29\x9a\x13\xc2\x59\xf2\xd0\x81\xd3\xda\xd8\x2a\x23\xf1\x42\x7e\xd9\xbb\x44\xa9\x62\xc1\xac\x16\x3f\xd4\x1a\xdd\xa4\x22\x5c\xbd\x53\x04\xef\x13\xf8\x2e\xca\x16\xe2\xc2\x0f\x74\x94\xea\x93\x63\x67\x76\x7f\x7a\x9b\x60\xa9\xd3\x58\x97\x71\x7f\x0a\x64\x44\x8b\x20\xc7\xb3\x50\x93\x30\xcb\x4c\x8a\x7c\x15\xfd\x10\x05\x81\x24\x87\xae\x39\x1c\xcc\x37\xec\x58\xbc\x78\x44\x06\x05\x64\x67\xd3\x8d\x77\x1b\x33\x05\xce\x20\xbf\xd8\x47\xc6\x9e\xf4\xd2\x53\x69\x34\x21\xa0\xa0\x5a\x52\x4a\x82\xb1\x50\x30\x23\x26\x64\x13\xd6\x15\x3f\x0d\xfa\xa0\x6e\xf3\x34\x8b\x23\x55\x1e\x09\x0a\x31\x15\x5b\x56\xf0\x8e\xe4\x67\x7a\x54\x75\x98\x41\xee\x76\xc7\x74\x1c\x2a\x14\x67\x51\x6e\x29\x04\x86\x8e\xd0\xe5\x9b\x3f\x73\x1d\x65\xd7\x33\x2d\xd2\xfb\x67\xa4\xee\xa8\x7c\x1e\x2a\x49\x99\x75\x1d\x22\x19\x9d\x31\x43\x27\x97\xab\x4d\x08\x7c\xef\x7f\x33\x8c\x11\xbf\x82\x91\x71\x08\xde\x38\x2a\x54\x14\x5e\xb0\x99\xf4\xae\x27\xad\xfc\xd6\xc6\xae\xd6\xac\x46\x10\xe0\x49\xd3\x19\xa8\xde\xf8\x67\x58\x37\x52\x76\xe9\x00\xb1\x38\x16\xe5\x2e\x50\x2d\x91\x60\xa5\xd8\x44\x34\x81\x2c\xb1\xb6\xd1\x9a\x20\x26\xd8\xc0\xb5\xa4\x98\xb8\xb9\x14\x3e\xe6\x77\x8a\xbd\x9c\x2b\x92\x25\xd7\x74\x77\x71\xae\x64\x46\x7d\x89\xab\x45\x67\x64\xe1\xc8\xbf\x3a\xf8\x39\x8b\x21\x44\x6f\x3c\x03\xe6\x2f\x25\xa5\x59\x4f\x82\xc7\xb7\x6d\xb3\x20\x35\x59\x2f\x10\x7f\xb6\xa0\xfb\x06\xd5\x21\x4e\x20\x85\xc5\xc9\xe2\x6a\x5f\x4e\x30\x24\xf1\x32\xbd\x30\x84\x18\x00\xf7\x70\x62\x75\xfc\x20\xdc\xa4\xad\x01\xc5\x27\x87\xf6\x9f\x66\xa4\x9d\x47\xdf\x58\x99\xc6\x32\x0f\x4f\x09\xc0\x5c\x87\x70\x39\x8d\x9e\x2c\x5d\xf0\xfe\x04\x0b\x6d\xa3\xe7\xb5\xe0\xd2\xe8\x14\xce\x01\x7a\x27\xf9\x80\x30\x8e\x64\xf7\xb4\x35\xc1\x30\xd1\xfb\xc3\x51\x8b\x11\xde\x1f\x35\x87\xc3\xf9\xb7\x0c\xbf\x16\x01\x2a\xb7\x27\x5f\x68\xb5\xe2\xde\x18\x62\x40\x70\x01\x86\xa4\xc1\x00\x10\x2e\x6c\x53\x44\x8b\x2e\x49\x91\x02\xe2\x42\x24\x5e\x24\x46\x3b\x9f\xed\x70\x29\x44\x39\x8b\x14\xee\x40\xbf\x7e\xda\x42\x28\x25\xd4\x38\xe4\x84\x3c\xa2\x9e\x20\x4d\x54\xd8\xc4\xa5\x61\x72\x42\x23\x4a\x86\x90\x92\x31\xe4\xd3\x86\x59\xc5\xfe\x30\x0b\x5e\xe3\x44\xf1\xb6\xa1\xc9\x73\x5a\x1d\x48\xe7\xe0\x1a\x6f\x5b\x9d\x15\xff\xad\x28\x3b\x84\x6a\x96\x4d\x52\xea\x16\x8d\x1b\xe9\x14\xb8\xf3\x50\xce\x66\xce\x24\xcf\xfc\x23\x87\x51\x6e\xd1\x2b\xf9\x57\x7e\xe3\x37\x8e\x78\x39\x7c\xb0\xa4\x78\xda\x0c\x1e\xf5\xfc\xbc\x40\xe5\x31\x14\xed\x81\x9a\x7c\xad\xcc\x03\x20\xa2\x1e\xc3\x6d\x7c\x46\x4c\x05\x50\x8b\xc7\x7f\x18\xd2\x5e\x21\x1e\x09\x13\x07\x4c\x68\x3a\x4a\x40\x8a\x3f\x23\xbc\x73\xb1\x1f\x9a\x12\x1e\x8e\x83\x89\xc5\xb8\x64\x6e\xa7\x3e\xa4\x8f\x90\xb7\x7d\x55\x4c\x10\xf4\x86\xab\x54\xff\xc3\xe2\x30\x49\x3f\xda\xf8\x5c\x88\x28\xb8\x26\x21\x0a\xa3\x2a\x41\xf6\x81\x21\x31\xda\xf1\x7c\xe3\x61\x81\x9f\x3c\xc7\x25\x63\x73\xc6\x04\x32\x31\xb0\xe6\x2c\x69\xb0\x1c\xdd\x2d\x5e\x36\x96\xb6\x4f\x82\x43\x97\x4e\x9a\x03\x58\xcf\x19\x22\x60\xed\x16\x2d\x9d\x43\x21\x9f\xe4\x12\xbd\x59\x7b\xac\x66\xd4\xfc\x9a\xd6\x12\xc9\x7c\x72\xde\xf4\xdf\x16\xe3\x75\x0d\x26\x8c\xcd\x2f\xa5\x4e\x3a\xdc\x02\x05\x97\x71\x62\xbe\x36\xca\xcd\x4e\xda\xa8\xce\x85\x0f\xa9\x6a\xa8\x54\x33\x9e\x11\x01\x93\xc4\x29\x00\x0f\x4c\xf5\x79\x4e\xea\x2f\x1f\x05\x0d\x74\x57\x35\x85\x32\x36\x9a\xcf\x0d\x12\x92\xec\x1d\x3d\x39\x83\x7c\x4c\xe9\x79\x54\xa4\x0c\xa0\xd8\x4c\xec\xbe\xdb\x36\x78\x3e\x77\x87\xfd\x42\x0e\x89\x74\xc2\x8d\x63\x33\x50\x47\x69\xb0\x78\xa6\xa5\x32\x23\x83\x17\x2e\x1a\x5a\x29\x26\xe9\xea\x45\x09\xbc\x41\x05\xea\xf4\xa7\xe8\x29\x1b\x28\xc0\xcc\xe1\x44\xda\x0e\x50\x04\x4d\xcb\xb2\x00\x71\x8a\x23\x2d\x31\x88\x01\xdb\x75\xac\x90\xe6\x4e\xba\xbb\xcf\xcf\x16\x1a\x39\x19\x37\x6a\x1d\xcf\x38\xd7\x87\x90\x46\x9e\x57\xf9\x5a\xfe\xf7\xf5\xf7\xc6\xf0\xeb\x5b\x18\x87\x82\x46\x83\xbd\x6a\x31\xa3\x8d\x83\x68\xad\xee\x4d\xa1\xc8\xc4\x32\x90\x10\x6c\x35\xde\x2b\x0d\x6f\x5b\x12\x53\x45\x02\xab\x8d\xb4\x84\x26\x27\x4a\xe4\x94\xe3\x34\x03\x49\x0c\xa4\xa2\x0c\xbe\x5e\x58\x73\x68\x84\xd3\x14\x01\xd0\x00\xa0\xfe\x94\x06\x29\xa4\x5b\xbf\xe1\x6f\x28\x6a\xae\x70\x28\x1a\xec\x7a\x43\x40\xbc\x8a\xa0\x46\x6d\xc8\x35\xda\x69\x2e\x14\xb6\xb2\xca\x45\x55\x6c\x84\x4f\xee\xd5\xad\xa9\x06\x5d\xc1\xe0\xa2\x7b\x8a\x31\x09\x2e\x54\x90\x72\x24\xb3\xdc\xb0\x47\x21\x7d\x63\xdb\xd3\x45\x58\x59\xc9\xd2\xc9\xa8\x86\xdd\xbb\x69\xab\x3d\xcc\x77\x7f\x1c\xaa\x05\xd5\x44\x83\x87\xae\x07\x71\xc6\x1c\xea\x6d\xc3\x84\x51\x61\xa5\x50\xdc\x78\x17\x9d\xe5\x8d\xfd\x5e\x6c\x41\xc0\xff\x31\xff\xec\x68\xb2\xa6\x00\x2f\x12\x07\x80\x40\xdd\xac\x62\x60\x17\x4c\xc1\xa3\x0e\x7d\xf4\x0a\x29\xcb\x0a\x5e\x8c\x54\xd8\x25\x7a\x54\x23\x52\x91\x95\x31\x71\xa1\x7a\x2d\xf5\xf5\x40\x43\x04\xa9\x0a\x5a\x4f\x88\xb9\xab\xa0\xa9\xc3\x2e\x72\xf5\x56\xf4\x03\x23\x59\x93\x7b\x46\xe6\x98\x6b\x71\xad\xd5\x9b\x16\xd5\x18\xb3\x64\x60\xfc\x1d\xcc\x98\x60\x1e\xa8\x73\x3b\x1d\x59\xb2\x40\x1e\x9e\xa8\xb6\xfb\xfb\x34\x90\x22\xba\x65\xd9\xa0\x45\x1a\x30\xd5\x36\xa1\xff\x94\xb9\x8f\x85\xca\x4f\xa0\x24\xf9\x50\xcc\x30\x96\x19\x03\x43\x98\x5e\xdb\xb2\xca\x95\xbc\xc7\xdc\x6f\x1e\x81\xae\x98\xbc\x7e\x34\x9c\x4f\x78\x15\x90\xd8\xa1\x26\xad\x47\x1c\xee\x55\x50\xb4\x8a\x00\xde\xa8\x38\xa8\xd5\xa6\xfd\x92\x25\x16\x73\x11\x35\x02\x6b\x2a\x7e\x4a\x52\xb6\x71\x72\x6e\xca\xc1\x3f\xa6\x20\x52\x8a\xf6\x7a\x4e\x5a\xd2\x7d\x1b\x25\x9e\x2b\x3a\xc4\x84\x88\x19\x7b\x48\xa0\x0f\x9c\xc7\x31\xc9\xf2\xa9\x14\x4b\xa8\x4e\x5f\x32\x81\xbc\xcb\xd0\x55\x17\x0c\x8f\xf3\xa6\x13\x15\xc3\x3e\x38\x4f\xf3\xdd\x1c\x2e\x00\x49\xc7\x37\x95\xf1\x48\xe3\x83\x21\xc5\xc5\x81\x96\x27\x99\x4d\xc7\x89\x1a\x68\x40\xef\xc4\xbb\x21\xd7\xcd\xe8\x9a\x0d\x94\x60\xc6\xb7\x07\xd4\xd1\x35\x11\x85\x98\x49\x8f\x12\x7b\xa6\x5e\x8d\xf9\x47\x32\xe2\x66\x79\x7d\xe3\x70\xad\x4c\xb8\xe3\xa1\xcf\x32\x40\xf4\xac\xfe\x0e\x45\xb3\x1a\xab\x6d\xaa\x17\x0c\x81\xa4\xa8\xc1\xd9\x56\xac\xf2\x08\xe6\xa0\x30\xff\x91\x70\xb7\xeb\xda\x4b\xa4\x6f\x28\xba\x14\xdb\x5c\xac\xf2\xd5\xb7\xb9\x1b\x4b\x92\xee\x46\xa5\x39\x14\x36\xc7\x07\xdb\xf8\x2c\xc2\x55\xa0\xa0\x7c\x53\x9c\xb4\x7d\xe7\xe3\x73\x50\x1a\x11\x9d\x44\x9e\x35\x6c\x34\x5e\xe7\xab\x96\x42\xa3\xc9\x7f\x32\x4b\x11\xe1\x13\xbf\xa4\x39\x86\x12\xba\x80\x14\x25\xf8\x21\xef\xbc\xb8\x04\xfe\x1f\xea\x2d\x89\x25\xfc\xb2\x12\x88\xb7\xea\x1c\xcd\xe1\xb3\x02\xa4\xe6\xe5\x0e\x56\x38\x27\x15\x92\x4d\xaf\xc8\xd8\x4d\x9c\x81\x71\x10\x68\xda\x91\x92\x86\xea\xc2\xab\x01\x11\x10\x11\x38\xc4\xad\xac\x0c\xfa\xfc\x86\xbe\xa3\x3b\x2b\x7b\xc1\x96\x61\x8f\x1b\x38\x5d\x65\xd5\xb2\x4a\x3c\x29\x82\x43\x17\x66\x96\x32\x76\x64\xf7\xbe\xf7\x22\x9b\xcf\x05\xf1\xe6\x22\x45\x83\x44\xc7\x02\x64\x17\x0c\xba\x59\x9f\x17\xb0\xb5\x55\x11\x4e\x07\x53\x70\x5e\xe6\x0d\x8f\x8f\xb9\x89\xa7\xa7\xa3\x01\x35\x5e\xd4\xe4\x8c\x34\xcc\xb9\x88\xbe\x2f\x1e\x9c\x9e\xd0\x72\x87\xed\x13\xf4\x6b\x85\x36\x2d\x97\xe9\x8a\x0c\x7d\x58\x7a\xe9\x22\x3f\x8a\x9f\x91\x32\xd4\xca\x75\x40\xb3\xad\x11\x53\x69\xbb\xfb\x6b\xe0\x2d\xbb\xa4\x9e\x9d\x2f\x50\x74\x88\xb4\xa8\x00\x8b\xae\xd3\xc2\x4a\xe0\xc5\x49\xb1\x2b\x77\xb3\x35\xfe\x78\xe5\x99\xfb\xe2\x37\x64\xe5\x02\xf4\x99\x23\x7e\xc0\xda\x35\x24\x0e\x62\x0f\x61\x5f\xcf\x36\x2c\x7e\x0c\x5e\x46\x59\xea\x63\xc0\xd8\xde\xa2\x3f\xf4\xa0\x4a\x3d\xef\x57\x83\x44\x64\x7c\x06\xfb\x13\x06\x57\x13\xf9\x7b\x6c\xe4\x43\x08\x73\xf7\x96\x0c\xaa\x3f\x42\x34\xd9\x5e\xa7\xeb\x47\x21\x1b\xda\xe4\x49\xa8\x44\xe2\xb5\x4c\x1c\x6a\x7e\x40\x84\x67\xb2\xf4\xb9\x09\xf3\xd8\xf3\x6c\x96\x7e\x44\x73\xc8\x82\x07\x01\xf1\x78\x3a\xc4\xbb\x62\x10\x4c\x0e\xb6\x53\x94\x00\x07\x39\x07\x7c\xc9\x39\xbd\xce\xfa\xd8\x34\x57\x55\x92\xc8\x43\x49\xd1\xd9\xc4\x31\x9c\xb9\x02\x35\xd7\xa1\xa5\x9d\x10\x2f\x6b\x3b\xf7\x8d\x60\x79\xdb\x49\x12\xa4\xa5\xc8\x43\x48\x2c\x2a\x84\xd2\xd3\x02\xad\x43\x46\x44\x9b\x1c\x97\xd6\xa3\xb3\x38\xd6\xf3\xc4\x3e\x19\x96\x24\x5c\xa8\x78\x41\x26\x07\x23\x22\x64\x56\xc2\xdc\x3c\x09\x8c\x73\x12\xb9\x16\x40\xf9\x32\x31\x93\x71\xb5\xd9\xd4\xa2\x46\xc9\xbe\x6d\xcc\x6b\xb6\xc4\xcb\xb3\x95\x53\x04\xf7\x34\x68\x5a\xfa\x13\x9c\x65\xfe\xba\x2b\x46\xb8\x01\x38\x34\x65\x6c\xe6\xda\x58\xaa\x67\x50\x19\x45\xec\x35\x9f\x50\x9e\x95\x2b\xaf\x44\xa2\xea\x88\x5c\xf1\x58\xa8\x72\x96\x01\x04\xdc\xe7\x58\x30\x3e\x2e\xce\x40\x24\x7a\xab\x71\x81\x9b\xc4\x29\x23\x61\x2e\x60\x99\x9e\x0d\x34\xc5\x47\xbc\x16\xad\xe9\xec\xe8\x9c\xdd\x50\xa8\x92\xaf\x36\xbf\x9d\xf2\xa2\x98\x62\x17\x98\x63\xb8\x20\x0a\x45\x23\x4b\x47\xdf\x62\x00\x6e\x7b\xca\xb8\x14\x5a\xed\x18\xd6\x69\x0d\x9f\x2d\x41\x2b\xfa\xdc\x20\x14\x52\x06\xad\x5b\xf0\xc9\x44\xdb\xde\xb1\x83\xff\xa6\x3a\x4b\x0c\x26\xe8\x7e\x28\x00\x28\xae\x30\x74\x97\x3f\xc9\xe7\x27\x93\x49\xff\xf1\x4e\x8b\xf2\x47\xc7\x9c\x88\xc5\xbb\x23\xd4\x27\xec\xef\x30\xe7\x4b\x35\x8a\x2a\xb6\x8b\xc3\xc7\x18\xa6\xc9\xb4\x6d\x6c\x23\xdb\x9b\x12\x2f\x09\xa2\x1b\x21\x4e\x9d\x8f\x4d\x08\x29\xe6\x33\xaf\x92\x8d\x7d\xa1\xba\xf9\x34\x5d\xa4\x78\x42\x16\x00\xf5\x3b\x40\x43\x5f\x54\xd8\xa6\x06\x13\x03\x1d\x33\x28\xac\xbe\xb6\xee\x13\x0c\x67\x83\x29\x7e\xab\x35\x78\xa2\x5b\x4e\x02\x0b\x49\x2c\x26\x30\xe3\x01\xc4\x1c\x12\x11\x57\x68\x9a\x4a\xb1\x3d\xe0\xe3\xd8\x5a\x8b\x67\x4e\x46\x0a\x5d\x35\x97\x83\xdd\xa1\x71\x6e\x8c\x89\xd6\xf5\x09\x99\x5d\xa9\x67\x52\xdb\x84\xc0\x8e\x56\xb8\xea\xd0\x64\x56\xc7\x24\x09\x0f\x4d\x00\x9d\x11\x4e\xf5\x94\xb1\xff\x93\x66\x80\x82\x14\xdc\x0c\x69\x8d\xa7\x77\x0f\xd8\x48\x5d\x9b\x82\x10\x35\xcd\xf4\x6b\x1b\x34\x99\xcb\xbf\x40\xa7\xad\x7f\xcd\x72\xe8\xca\xbe\x61\xfc\x08\x0f\x48\xd8\x11\x1b\x7b\xf5\x99\xf1\x41\x96\x10\x82\x1b\x96\xd6\x3b\x81\x0b\xc4\xfa\x11\xc1\x76\x56\xad\x03\x14\x7d\x35\xd2\x3a\x03\x4c\x83\x56\xbd\xf9\x9f\x64\x95\xa7\x0e\x6c\xc2\xb1\x28\x39\xdc\x3b\x57\x9e\x5c\x04\xa2\x99\xcc\x3e\x80\xc9\x00\x03\x34\x88\x32\x5b\x1b\x9c\x62\x37\x77\xb0\xef\x40\x6c\xbc\x34\x46\x4e\x9d\xc1\xb6\xe2\x20\x96\x9f\x90\xc5\x7b\x41\xda\x44\xec\xa0\xd9\xbb\x84\xab\x6f\xd6\x66\xf0\x1a\x1e\xb1\x9a\xa4\x0f\xd8\x03\x21\x7a\x57\x70\x03\x12\x20\x08\x3b\x36\xa9\xdc\x1f\xc3\x98\x2e\x0c\x1c\xc3\x1e\x24\xda\x33\xd0\x0b\x32\x24\xc3\x8a\xf3\xf9\xfc\x6a\x93\xcd\x04\x82\x03\x07\xd3\x95\xb4\x85\x88\x07\xd4\xe0\x03\x50\xee\xa0\x31\x48\x7e\xc8\x54\xdd\xe4\x01\x7a\x66\xdc\x96\x1c\xbc\xd8\xca\xcb\xdf\x7b\x91\xf2\xee\xde\xeb\x72\x8d\xf3\xb2\xe4\x97\x6f\x0f\x5d\x81\xa5\xb8\xef\xed\xb7\x68\x60\x91\xed\x94\x30\x41\x4f\xda\x11\x4c\xf1\xbc\xec\x20\x33\x20\xc5\x77\x95\x09\x55\x61\x62\xa6\x93\x4a\xb8\x2a\x3f\xed\xc4\x6c\x10\x5b\xa0\x20\xc8\x64\x63\x22\xe6\x2d\xd6\x18\xd9\x6a\x82\xb0\x84\x86\xd2\x9a\x54\x2c\x4e\x4e\x41\x63\x7a\x3d\xb4\xa6\x84\x7d\x9e\x12\x37\x93\xac\x46\x87\x3f\x1a\x4e\x93\x60\x24\x33\x22\x38\x17\x93\x77\x0a\x6d\x4e\xea\xd0\xc6\xba\x28\x03\x40\x88\xa1\x1c\x81\x96\xc6\x12\xaf\x06\x2d\xb9\x82\x53\xc2\x97\xc9\xd1\x66\xb0\x8b\x14\xbc\x76\xc2\xc1\x4b\x6e\x7a\x13\xb0\x3e\xb5\x0f\x10\x53\x2b\x8f\x29\xa0\x04\xb8\xe2\x64\x5d\xa8\x5b\x64\x00\x20\x24\x2d\x33\x24\x20\x16\x50\x85\xde\x96\x55\x14\x4f\x53\x99\x69\xb9\xf7\x54\x87\xbb\x1a\xa3\xa4\xe5\x1f\x02\x58\x48\x37\x89\xc9\x35\xab\x35\xdd\x0a\x6f\x32\x67\x20\x78\xd2\x4c\x16\x20\x20\xb1\x40\x02\x6a\x2f\x25\x09\xcb\xd0\x0a\x9f\x0f\x9b\x86\xab\x40\xf2\x7d\xee\xe5\xc8\x0a\x48\xac\x1d\x5a\xe2\xaa\xc8\x93\xcc\x36\xb0\x45\x3a\xc7\xee\x49\x8f\x31\xfb\x64\x89\x04\x3d\x86\xe0\x42\x6d\x58\x75\xf1\x37\x1f\x43\x6d\x8a\x5e\x19\x01\x57\x8c\xd7\x22\x46\xd2\x93\x1b\x40\x30\x5b\x2f\x58\x31\xa0\xbc\x03\xfc\xb5\x1d\x36\x62\x26\x77\x33\xa8\x24\xf4\x09\x72\x76\x2d\xaa\x1c\xba\xe6\xd6\xa0\xec\x71\xa0\xcc\xb8\x38\x1d\xab\xc0\x70\xae\x28\x4f\x6a\xa0\xe5\x17\x16\x96\xd5\x01\x1c\x14\x74\x2b\x11\xb2\x09\x1f\xbb\x3f\xd6\x50\xa3\xf4\xd6\xe5\xea\x97\x10\x38\x60\xe6\x85\xdf\x54\xa2\x2a\xa6\x45\x5f\x99\x25\x20\x1c\x07\x6b\x8c\xd0\xae\x88\x00\x64\x3d\x41\xc6\x99\x82\xeb\x5a\x4c\xa5\xb5\x5d\x0b\xd4\x82\x93\x98\xd5\xe5\x8d\x04\xcc\xc9\xe7\xfa\x02\x7f\x8c\x62\x12\x1f\x86\xbe\x52\x00\xf1\x62\x42\x86\x54\xb3\xec\x50\xe8\x12\xd1\x9f\xe1\xb6\x42\xc6\x08\xda\x98\xea\x9c\x0c\xb3\xb3\x95\x66\x2b\xca\xad\xf0\x5c\x68\x24\x32\x35\x47\x0b\x48\x52\x8e\xcc\x10\x38\x68\x08\x06\x90\xab\xb3\x7b\x6c\x38\xf2\x10\x13\x33\x7a\x21\xac\xb3\xa5\x34\xf1\x92\xc0\x23\x8d\xe7\xd3\x9c\x19\x4e\x40\x45\x77\x72\xb4\x3f\x4a\x30\xff\x3c\x6f\x61\x32\x78\xde\x3b\x89\xe3\x78\xf0\x45\x40\x94\x8e\xaf\x8e\xa6\xe1\xe3\x11\x11\x6e\x46\x89\xb7\xa0\xa0\xd7\x6b\xe2\x36\x57\x95\x3c\x7b\xe0\xb5\x5f\x0f\xe0\xf7\x52\xbb\x6b\x4a\xdf\xf4\xf6\x93\x78\xed\x2e\xf9\xa8\x1b\xa6\x32\xfe\x86\x03\x24\x28\x4e\xe3\xca\xd1\x1e\x8f\xcd\xcd\xb8\x33\xb3\x64\x75\x5d\x4e\x6d\x8f\xf5\x1f\x84\xf6\x99\xd1\x5e\x28\xe1\xaf\x4a\x8e\x72\x2a\x8d\x8f\xc2\x7d\xcd\xfd\xe8\x96\x99\x3a\x22\xa3\x69\x90\x4d\x25\xac\xb8\xba\x6c\xc0\x82\x3e\x65\xb6\x32\x79\x90\x62\x4b\x18\xa0\x38\xb2\x4b\x4e\x5e\x2f\x0f\x42\xcd\x40\x1d\x46\x50\xe9\xd5\x74\xad\xfa\xa2\x7b\x6c\x64\x97\x69\x7a\xa2\xf4\x1e\xf0\x02\x13\x7b\xb0\x13\x3d\xc6\xd6\x0c\x5a\x2c\x3c\x3d\xb5\x9d\xd4\x3f\x27\xea\x9d\xfb\xa5\x9b\x2b\xc4\xe8\x51\x6c\x96\xa7\x6a\x0d\xb4\x62\x7a\xe1\xbd\x00\x40\xbe\xfd\x57\x13\x8f\x14\x4b\x55\xf1\xb1\x1e\x9e\x33\x5a\x8e\x8f\xef\x99\x01\x3d\x69\x0c\x67\xf0\xac\x1f\xdf\xd3\x29\x96\x24\x4d\xe2\x90\x78\x3b\xeb\xc9\x10\xb7\xc3\x98\x23\x9d\x6d\x1d\x9e\x0a\xa8\xe1\x5c\x13\x06\xda\x2a\x67\x3c\x0a\x99\xcc\x3a\x6c\x86\xb0\xd8\x74\x22\xee\xf6\xb4\xa4\xf2\x1a\x81\x44\xf2\x3d\x7a\x85\xba\x5b\x49\x14\xaf\xa3\x7c\x44\xc5\x50\x60\x27\x74\xbf\x04\x6d\xa0\x94\xd2\xb4\xa6\x16\x9b\x7b\x33\x67\x55\x3e\x6a\x14\x56\x25\x3c\x43\x29\x94\x34\xce\x9b\xb1\xba\x15\x66\xca\x85\xf3\xc2\x92\x93\xd2\x25\x9b\x4f\x53\x20\xfa\xe7\x0e\xd0\x92\xeb\xb2\x10\xb6\xee\x1c\x59\xf5\xaa\x17\xcd\xf1\xba\x81\x72\xc8\x94\xe4\x09\xca\xc2\x6f\xa8\x84\x57\x97\xf5\xfd\x08\x7e\x51\x48\x8e\xf6\xd6\x21\xce\x58\x85\x99\xa3\x4a\xcd\x86\x0d\x70\xff\xa7\x27\x02\x10\xb8\x48\xc9\xa8\x5b\x59\x3a\xc9\x27\xce\x63\xd1\x49\xfa\xd6\xce\x2c\x4c\x63\x78\x7a\xf5\x3f\x38\x38\xcd\xb1\x2b\xbf\x06\x93\x06\xc4\xb1\x3d\xf0\xca\x9a\x0c\x46\x50\xed\xa4\x3c\x80\x44\x06\x88\xad\x1d\x8d\x95\x4f\x00\xb8\xf9\xef\xd0\xc4\x48\x39\xd2\x05\x33\x06\xf4\x1d\x11\x04\x04\x52\xcb\xe6\x42\x31\x8e\x6c\xeb\xda\x38\xc4\x38\x18\x9e\x44\xd0\xe7\xc1\xf8\x2b\x21\x7b\xd4\xc2\x16\x05\x6e\x13\xc2\x3e\xd6\xd1\x46\x82\x65\x85\x89\xb5\xb4\x50\x09\xf5\x19\xd1\xbf\xbe\xf7\x71\x16\x31\x4b\xe8\x3c\xe4\x38\x03\x09\x4d\xd1\xb9\x01\xf4\xbc\xbc\x6b\xf6\x37\x6c\x07\xe7\xb0\xb3\xcb\x25\x65\xdc\xe3\x07\xf3\x7b\xcb\xd8\xb7\x20\xa3\x8b\x7d\x2c\x25\x77\x47\x87\x1a\xfc\xc6\x41\x41\xc5\x9e\x84\xf5\xb7\x6b\x62\x00\x98\x60\x8c\xd2\x50\xf8\xb0\x34\xab\x41\x12\xdc\x50\x08\xd6\xd5\x23\xf4\xd6\x00\x7e\x80\x62\xa6\x80\x24\x4b\xc6\x1a\x3a\xa4\x63\xb9\xf5\xf5\xd4\x95\xf4\xd0\xb4\xcd\x74\x9c\x9b\x6e\x10\xbc\x99\x58\x4e\x4a\x46\x5c\x19\xe9\x62\x3d\x2d\xfc\xae\x65\x3b\x08\x34\x7c\xca\x5c\x21\xe2\x85\x93\x7b\xcb\x32\xbd\x00\xd0\x5c\x4a\x99\xda\x87\x38\xf7\x1c\x01\x09\x44\x35\xf3\x56\x0f\x45\xbe\x13\x85\x0e\x26\x62\x5a\x94\x2d\x14\x9c\x2d\x6e\x2d\x3a\xb9\x4f\x29\xc0\x4a\x44\x28\xf4\x36\x24\x89\xc0\x12\xee\x54\x46\xba\x5c\xa2\xd7\x8c\xd9\x70\x1f\x07\xf7\x35\x4f\xf1\xa8\x90\x79\xa9\xf9\xa1\x21\xef\xc9\x07\x73\x1e\xfb\x38\xf6\x4e\x9b\x54\x46\x6c\xea\x1c\x08\x60\xac\x4b\xaf\x49\xe9\x56\xbd\x87\x4f\xcf\xcd\x3d\x93\xa9\x38\xb9\xcb\x66\xad\x57\x84\x7a\x41\x2e\xf7\x2c\xcd\x40\x11\x0d\x36\x66\x87\x56\x1b\x7f\x7f\xd0\x54\xcb\x60\x1f\xe3\x76\x13\xd6\x7b\x22\xa5\xc0\xd2\xb6\x0c\x18\xc0\xd4\x3e\xb1\xab\xee\xbe\x08\x99\x75\xef\xa2\x0a\x5b\x8c\x48\x43\x03\x41\xb8\x12\x4d\xd6\xa5\x13\x78\xaf\x67\xb0\x16\x64\x73\x7d\xcc\x86\x3f\x13\x23\x1e\xa6\xb4\xab\x81\x53\xdc\x9b\xb2\x82\x9d\x14\xda\x12\x5d\xe7\xe5\xf3\x0e\xd0\x7c\xc2\xa1\x0a\x18\x61\xa7\x80\xb5\x94\x10\x83\xef\xdc\x9d\x23\x40\xaf\x2f\x61\xbd\xfa\x88\x1c\xd0\xcb\x49\x06\xb5\x51\xa3\x13\x7c\xdf\x28\x66\x9c\x9c\x0f\xbf\x33\x21\xe0\x8d\xa1\x85\x49\x08\xfb\x3a\x36\x5b\x97\x89\x3c\xf5\x2a\x6a\x05\x15\x71\x70\xaf\xb0\xf3\xdd\x63\x13\x36\x08\x3d\x1e\xa1\xe7\xe0\xf1\x60\x80\x6b\x0c\xd5\xe8\xb2\xb3\x8d\x2a\xc8\x65\x09\x81\x50\xed\x7f\x09\x99\x34\x84\x52\x64\x3d\x1c\x25\x0a\x08\x56\x28\x93\x8d\x15\xef\x38\x29\x0d\x5b\xda\x58\x59\xd0\xf9\xa8\xe0\xe7\x32\x6b\x3b\x30\x46\x1d\x83\x2b\xb4\x08\x6a\x8b\xae\x80\x1c\xd2\x78\x9d\x36\x8f\x9e\x0d\xb4\x57\x7c\xf9\xa2\x90\x51\x94\x3e\x9e\x39\x8e\xad\xf2\x0d\xcf\x2d\x80\xcb\x63\x14\xbd\xc8\x2a\x4c\xbf\x55\x32\x68\xda\x67\x5b\x72\x77\xfd\xc0\x4c\xda\x72\xcd\xf8\xd8\x13\x81\x81\x50\x57\x08\xd4\x3b\xd8\x7e\x3d\xbd\x88\x8f\x7b\x7a\xa0\xb0\x99\x2b\x7f\x64\x20\xeb\x66\x0c\xa8\x82\xd9\x59\x59\x1e\x05\x03\xfd\x3e\xbe\x0c\x09\xb3\xe0\x2d\x4f\xb4\xcd\xd6\x88\x04\x8e\xf0\x4e\x03\xb1\x61\x1f\x03\xcc\x13\xe3\x2f\x72\x99\xc6\x59\x98\x74\x90\x19\x10\x24\x53\xa8\x24\x38\x13\xc6\x5e\xf7\xd2\x38\x30\x69\x8a\x5b\x7f\x1f\x43\x07\x07\xcf\xcc\x2e\x04\xe5\x38\x47\xa2\x7f\x87\xeb\x3b\x85\x3f\x70\x0b\xef\x7b\x8d\x40\x56\x4b\xfd\x08\x75\x1f\x3d\x0c\x0c\xcb\xb3\xd7\xfb\x53\xdd\xff\xdd\x40\x15\x3b\x94\x20\x85\x68\x17\xb3\x6d\xd1\xb6\x0f\xa2\x9a\xf6\x28\x6d\x71\x10\x28\x60\x82\xdf\x3d\x71\xd0\x0d\xa8\x36\x9f\x61\x20\x80\xcb\xab\x3c\x6c\x98\xe3\x1b\xf6\xa9\xc3\xf8\x18\x7f\x90\x90\x62\xf9\x8f\xc9\x2f\xdb\x5a\xba\xd8\xc5\x6f\x8c\xf3\x5c\x42\xd1\xdf\xb8\x8f\xaf\xb1\x84\x5f\xa4\xd8\xec\xa2\x2f\x9f\x89\xd2\x11\x18\x21\xe0\x66\x6e\x84\x20\x42\xcc\x32\x82\x97\x94\x14\x95\x38\x12\x9c\x36\x82\x1f\xf0\xba\x61\x8e\xde\x70\x00\xd1\x2a\xa8\x4e\xb1\x4d\xbc\x65\xd7\xab\x50\x53\xa2\x4a\x29\x2a\xef\x79\xb8\x9a\x4b\x59\xf8\xdd\xf5\x9b\xcb\x53\xec\xf6\x55\x91\x3e\x7e\xe0\xfb\xa1\x6e\x1c\x1a\xa7\x1a\x2c\xc0\xa4\xba\xcd\x67\xa8\x0c\x25\x94\xea\xb3\x39\x6c\xcb\x9e\xa0\xa2\x5f\xc3\x36\xfd\xee\x58\x80\xec\xb6\xff\x76\xb8\xa2\x4f\xcf\x95\xa5\x46\x61\x73\x32\xcb\xf4\x6d\x69\x1c\x00\xcb\xba\xb2\xd3\xc9\xaf\x0f\x7a\xfb\x59\xcd\x7b\x86\xaa\x2d\x1d\x39\xf6\xa8\x85\x1e\x87\xa0\x6f\x7b\x44\x84\x1a\xc6\x23\x58\x2d\x78\x30\x07\x41\x65\xbe\xcf\xe2\xbe\xfb\x48\x57\x13\xe6\x95\x1a\x3a\x46\x94\xba\x6f\xbe\x54\x4c\x90\xe8\x76\x27\x1c\x7a\x59\xc8\x85\x18\x6f\x5e\x3f\x42\x71\xd1\x05\x88\x48\x79\x11\x4c\xe8\x63\x20\x59\xe8\xc5\xd7\x80\x18\x28\xbd\x04\x8d\x5a\x67\x72\x8f\xf0\x9c\x10\xb9\x99\x8a\x86\x38\xc6\xce\xba\x3d\x80\x5d\xa9\xca\x10\xe7\x1a\xc7\x40\x7c\x1e\x6d\x10\x1f\x42\x9c\x31\x92\x44\xa9\x83\x69\x45\x51\x08\x7b\x2d\xfe\x93\xc2\x5b\xc9\xd7\x96\x49\xcd\x2f\x6b\xd6\xc8\x5b\xe1\xf2\xb7\x84\xb6\x4d\xec\x96\x80\xb3\x33\x04\x3d\xb0\x6e\xa2\x24\xa6\x94\xa9\x4b\xcf\x0d\x21\x40\xe5\x46\xd9\x07\x8b\xa6\xf8\x98\x19\x5e\x8c\x7c\xf9\x23\xd5\x7a\x8e\x89\x91\x60\x20\x1e\x64\x58\xd9\x88\xcd\x23\xf8\x5b\x23\x0b\xfe\x1a\xbc\xae\x6c\xbe\xf3\x4b\x17\x07\x9d\xd9\x82\x57\xee\xd3\xad\x1f\x52\x83\x9c\xf7\x85\x5e\xa4\x0a\x69\x19\x32\xb0\xf2\x6f\x23\x8a\xcb\xb5\xf9\x58\x6d\xe2\x10\xb9\x60\x28\xd9\x23\x6d\x8c\xdb\x6d\xbd\x85\x94\x42\x5a\xaa\x40\x5d\x61\xda\xa6\x58\x89\x14\xda\x3b\x7b\x92\xb6\x73\x09\xc6\x33\xf0\x40\x9d\xdb\x2e\xd0\x83\x76\xef\xff\xa9\xe0\x3a\x49\xce\x21\xb4\xe8\xbc\x40\x21\xae\x46\x3f\x1c\x7c\xc1\x81\xb4\x01\x63\x11\x77\xcc\x20\xf6\x1a\x67\x4a\x91\xe5\x02\x15\xa6\x7b\x58\xf0\xb5\x9b\x33\x0a\x6d\x82\x2b\xbc\x2a\x45\xac\x54\x44\x3b\x03\xf8\x15\x6e\xb8\xe6\xed\x08\xec\x3d\x85\x5c\x8c\x1e\xa3\x98\xb8\x26\x0e\x98\xd4\xf8\x89\x64\xce\x24\x0e\xad\x91\x67\xa4\xe1\xb7\xdc\x26\x4f\x67\x47\x1c\x41\xe3\xe1\x71\xe3\xcd\x97\x84\x90\xd2\xe0\x00\xd4\xe7\x9d\xaa\x29\xb5\x21\xa3\x01\xc0\x07\x11\xa5\x94\x67\x24\x06\x05\x4c\x36\x37\x58\x3f\x8a\x6c\xa3\x35\x1f\xb0\x11\x62\x08\x91\xaa\xdc\x8b\x24\x6f\x59\xc8\x22\x79\x5f\x0b\x0a\x58\x8f\x63\xac\xbc\x4f\x37\x28\x90\xdb\x66\x1a\x39\x8e\x12\x74\x29\xed\x21\x80\x53\x49\x9c\xa8\xb8\x43\x35\xc4\xc5\x8b\xb7\x13\x1c\x55\x8e\x46\x6d\x8b\x78\xc4\x11\x00\x0c\x89\xb1\xb2\x89\xf0\x96\x8b\x53\x4b\x4c\x81\x42\x35\xec\x7a\x00\x3c\x12\x6d\xb4\x48\xc9\xa9\x1a\x8a\xc0\xc6\x46\x40\x99\x4c\x4d\xe4\x66\xda\xdf\x0f\xc1\x97\x2a\x56\xad\xa6\x6a\x5f\x8a\xb2\x05\x8e\x22\x48\xfb\xda\x41\x69\xf8\x6e\x6b\x51\xd0\x46\x9a\xda\xf5\xae\x64\x8e\xa0\x6c\x7e\x2d\x09\xdd\x42\xb8\x11\x1e\x31\x76\xc9\x2c\xd9\x98\xc4\x8c\xe1\x08\x07\x46\xa7\x4c\x5a\x19\x3d\x5e\xbc\x8c\x5b\x75\x98\xc2\x03\xe8\x80\x94\x03\xac\x91\x9e\x87\x8d\x94\x5c\x03\x9f\x83\xab\x24\x46\x70\xc1\xbd\x5e\x96\xcb\xbc\x21\xae\x78\xb7\xcf\x21\x56\x80\x10\x22\xb9\xe9\xe6\xbe\xb3\x07\xe7\x87\x86\xa3\x71\xa3\x58\x63\x6e\xbc\xdc\x73\x6f\x0f\x2e\x16\x72\xf5\x5e\x08\xaa\xf0\x3c\xa3\x85\x43\xda\xa1\x08\x7c\xdf\x26\x03\x01\x62\x27\xa8\x3a\x60\x29\x4a\x90\x44\x08\xfb\x68\xe5\x62\x01\x84\x7f\xb4\x6b\xcd\xab\x2c\x88\xd5\x23\x5d\x53\xde\xd9\x8f\x06\x73\x24\x0d\x46\x5e\xa9\x46\x18\xf9\x3d\xcb\xc4\x11\x3a\xf6\x27\x79\x0a\xd4\xb4\xa0\x37\xe8\x0a\xb3\x5c\x30\xcb\x28\x20\x3f\x0a\xf4\x9c\x4f\x16\x84\x66\x6a\x55\xca\x9d\x46\xee\xde\x34\xf8\x24\xee\xe3\x98\xcf\x62\xae\xbf\x2b\x2c\x21\x29\x63\x8d\xb6\x21\xdf\xc4\xce\x3e\x29\x76\x1a\xdd\xa7\xfd\xc4\xee\xe7\x71\x30\xd9\x2f\x6e\x20\x93\x3f\x91\xff\x9e\x74\xf5\x1d\x5d\xa7\xd2\x6a\x22\xf7\x1c\x13\x4d\xcd\x6a\x17\x92\x12\x87\xf8\x4c\x49\xe9\x13\x34\xfc\x45\x02\xac\x48\xae\xd9\x1d\x8a\xb5\x15\x15\x5c\x2c\x58\x28\x4b\x2f\x48\x72\x17\x0c\xb7\x11\x60\xfc\x53\xfe\x27\x3c\xeb\xcd\x35\x55\x09\x3a\xd6\xec\x54\xc5\xe8\xba\x32\x61\x1e\xb8\x4a\x9a\xb9\x1d\x93\xcc\xa9\xc8\x49\xdf\xfc\xbb\x62\x61\x64\x65\x21\x11\x9e\xc5\x93\xc7\xd2\x98\x7f\x84\x06\xe0\xf8\x0d\xa1\xa9\xdc\x9c\x9c\x8b\xa0\x0f\xe6\xc7\xe3\x04\x91\x93\x0b\x99\x4a\x1b\x90\xd8\xb1\x21\x3c\x10\x51\x92\x19\x31\x14\xcb\x10\x06\x6f\x80\x0a\x20\x61\x38\xdf\x6d\xe0\x46\xd7\xa6\x4f\xd4\x1d\xe2\x88\xc7\xe7\x9f\x5b\xa0\xb8\x68\xfe\x0c\x57\xcd\x3c\xa2\xb1\x30\x9f\x2e\x27\x8a\x81\x80\x59\x26\x3b\x9d\x53\x19\xf3\x95\x15\x58\xaa\x3a\xb2\xe3\xf4\x8a\x97\x2f\x06\xf9\x45\x63\x63\x78\x46\x78\x84\x75\xda\x38\x40\xb6\xfa\xc4\x00\x41\x53\x68\x44\x6b\xca\x14\x98\x2f\xab\xc3\x7d\x08\xa0\x42\xdd\x34\x0f\xa6\x91\x9c\x07\xdf\xd2\x49\xc4\xe9\x04\x29\x41\x64\x46\x0c\x5b\x8b\xbe\x30\x43\x68\x7a\xf1\x8e\x32\x45\x4c\x31\x0c\xd9\x19\x01\xa9\xf2\x49\x8b\x35\x25\xa4\x14\x5f\xe0\x90\x22\x68\xd7\x13\x4c\xa0\xfc\xb6\xf2\x24\x18\xdd\x6a\xe0\xf3\xeb\x4a\x62\x43\x99\x90\xad\x7e\x91\xb3\x03\x0c\xb1\xb6\x97\xcc\x13\xa2\x5c\x02\x96\xa5\x71\x40\xd0\x26\x7a\x28\x28\xa2\x1e\x20\xd2\x65\x11\xa6\xa8\xe1\x11\x2a\x8d\xb8\x21\xea\x04\x49\x93\xe5\xcc\x13\x16\x37\x65\x17\x56\xc1\x03\x3d\x48\x0c\x61\xe9\xd5\x1d\xd3\x9c\x74\xb1\xbd\xa0\x9e\xe6\xac\x2e\x76\xa6\xcb\x95\x5a\xcc\x27\x56\x8e\x42\x13\x7d\xf7\x8b\xb2\x98\xf2\x45\x66\x28\x5c\xa1\x58\x15\x79\xb0\xf3\x32\x45\x00\x3e\x5a\x6d\x9e\x16\x00\xba\x00\xae\x7c\xfa\x39\xbc\xdf\x22\x11\x4f\x4f\x83\xae\x7b\xcf\x2d\x84\xb4\xc8\x3b\x3c\x98\x54\xce\xed\x0d\x59\xb8\x71\x8d\xcd\xb8\xbb\x23\xe1\x8b\x8c\xe5\x07\xc8\x0a\xcf\xb2\xa6\x15\xe5\x26\x9c\xae\x1b\x8f\xbf\xdf\xcd\x86\xa7\x40\x90\xfe\xc4\xdd\x0d\xfe\x2b\x37\x9f\x20\x00\x9c\x50\xf5\x00\xbf\x16\x63\x8a\x5e\x2e\x09\x0c\x45\x05\x1f\x73\xa5\x8f\x54\x8a\xdb\xee\x52\x0c\xdf\x80\xf7\x6d\x06\x0a\xba\x84\x44\xb2\x9b\xe1\x94\x15\x34\xc9\xc0\x28\x9a\xda\x82\x58\x43\x97\xbf\x01\xae\x57\x44\xd9\x3c\x8c\xac\x4f\xdb\x60\x3b\xa4\x46\x4e\xa9\x11\x85\x94\xfc\x8a\x3f\x7e\xd5\x46\x04\x05\x96\x04\x53\x6c\x3a\x86\x2e\xac\x05\x62\x8a\xb8\x6b\xbc\x50\xd3\x5a\x66\xc8\xa2\x04\xb2\xae\x38\x32\x81\xa7\x46\xc6\xfb\x14\xc0\x87\x02\x60\x25\x0b\x58\xb1\x1d\x8d\xa1\xd6\x2d\xcb\x15\xa3\x7b\x1b\x08\x3c\x06\xfd\x1b\xb9\x5f\xf5\x46\xf8\xb1\x6c\x9a\x01\xd6\x4e\x25\x77\x4b\xeb\xbe\xaa\x00\x7c\x58\xd3\x40\x1b\x03\x20\x54\x87\xa5\x06\x31\x86\x08\x86\xb7\x6e\x91\xef\x4d\x5d\x81\x84\x50\xb6\xca\x42\x02\xc1\x97\xe0\xb3\x20\xf9\xa6\xa0\x6d\x4e\x61\x27\x59\x60\xce\x2f\xa7\x84\x4f\x0c\xdb\x26\xf0\x15\xbf\xdc\x6e\xf0\xa5\x7a\x00\x87\xee\xc7\x0c\x88\xea\x3d\xe9\x8b\x26\x87\x19\x8d\x60\x0a\x9e\xdc\x56\x9f\x6d\x0e\x40\x42\x83\xd5\x66\x2d\x09\x5c\x26\xc1\x45\x20\x79\xcc\xbf\xce\x68\x67\x11\xae\x08\xbc\xc3\xe8\x8e\x23\xa1\x45\x52\x27\xa7\x2a\x4c\x60\xf6\xba\x3b\x10\x88\x8f\x1c\x4c\xd9\x91\x5e\xf3\xa7\xad\x53\x9f\x25\x43\x1b\x8f\xeb\xd8\xd6\xbb\xf7\x08\x9b\xb6\x6f\x5f\x31\x2d\xf8\x98\x92\x7b\x36\xd0\x11\xd0\x1e\x35\x21\xbc\x44\x14\x88\x30\xf5\x46\x62\xa5\x2f\x2c\x26\xca\x83\x2e\x5d\x49\xdd\xc1\x08\x6f\x40\x27\x4f\xee\x71\x4f\x57\x59\xd5\xef\x1a\xa0\xe7\xdd\x16\x1b\x68\x16\x07\x4f\x85\xbe\x05\x86\xe5\x95\x03\x40\x2c\x6e\x96\x66\x4a\x48\x10\x8e\x2c\x34\x2f\xbd\x64\x0f\xd4\xb7\x6c\xe7\x79\xdf\x9a\x04\x55\x88\x27\xa9\xa3\xa5\x18\x29\xa5\xe4\x98\xd6\x20\xa4\x3a\x05\x52\x41\xc1\x6f\x40\xc9\x0c\x1d\xa6\xe5\x52\xd3\xcf\x03\x02\x07\x6c\x50\xbb\x1c\xec\xfb\xe4\x08\xc6\x6c\x2f\x94\x18\x02\x37\x3e\x9d\x94\x11\x53\x9d\xf0\xe1\xf5\xc8\x5f\xdf\x68\x31\x56\xa2\x45\x1a\x64\x21\x26\x4e\xef\x2e\xaa\x92\x97\x77\x2a\xce\x14\x72\x12\xd6\x8c\xec\x07\xb1\x0e\x03\x1c\x6a\xb5\x53\x8a\x23\x1a\x79\x32\xeb\x21\x44\x70\x8e\x23\x72\xe6\x24\xe5\xa0\xcd\xca\xec\x42\xf5\x1d\x0c\x40\xbc\xae\x04\xe8\x87\xef\x14\x47\xd1\xc6\x18\x56\x74\xd0\x88\x27\x12\xd1\x97\x1d\x0c\x94\x3e\x5a\x46\xbc\x7c\x6c\x40\x6a\x32\x85\x42\xa6\xc3\x28\x94\x1d\x0a\xcb\xfa\xb3\x9a\xdc\xdb\xa0\x90\xa2\x1c\x00\x17\xe3\x53\x2b\x3b\x32\x58\x6d\x3a\x8a\x53\xcc\xc4\x94\x01\xbb\x1a\x06\x46\x1f\x53\xc0\x62\x1b\xa9\x0b\x84\x3c\xa1\xc4\x04\x0d\x05\x60\x5c\x10\xf1\x21\x17\x7a\x87\x72\x6c\xe2\x20\x7c\xc6\x60\x87\x81\x80\x91\x71\xbb\x33\x79\xcc\x4b\x1e\x1e\xcc\x98\xee\x08\x4b\x04\x7d\x1e\x6d\x9d\x15\xdc\x8c\x4c\xd1\xb4\xc5\x69\xa7\x93\x2f\xee\x0d\x48\xf5\xdd\x19\xc9\x5b\x17\xea\x6e\x55\x6a\xec\x98\x87\x3f\xf9\x05\x4e\x6c\x4c\x4d\x12\x4c\x04\x24\x9c\x04\x83\x26\x81\x10\xa4\x43\x3c\x08\x47\x6e\x57\xcc\x15\xf4\xb5\xa2\x30\xd4\x8a\x0b\x2d\xe2\x0a\xf8\x69\x82\x63\x04\xb0\x0a\xfd\x8a\xd5\x2c\xf3\xf3\x51\xe4\x7c\x5e\x8f\x9c\xf8\x30\x4f\xab\x1c\x03\xf4\x91\x18\x70\x10\xd4\x5a\x7c\x1c\x16\x23\x0f\xa4\x64\x15\x44\x8e\xa0\x4d\x70\xb1\x36\x37\x1c\xd8\x38\x3c\xd2\xd7\xe1\x30\x41\x20\x49\xe5\x41\x00\x1d\x92\xe7\x91\xba\xcb\x5a\x4e\xfb\x41\x0a\x40\xf2\x06\x7e\xac\xa2\xb0\xe6\xdb\x3b\x23\xa3\x00\x3a\x71\xcc\x80\x6b\xa8\x92\x25\x1b\xb3\x02\xa7\x7b\xd4\x70\x04\xa7\x4c\x3b\x9d\xac\x8e\xcc\x05\x39\x2a\x2b\x2f\x31\x01\xa2\x41\x6e\x1e\x83\xdf\x91\xa2\xe0\x14\x51\xb6\x81\xef\x58\x3e\x1c\xc6\xd4\x9a\x2e\xd8\xbd\xde\x27\x59\x7f\x2a\x8b\x09\xae\x87\x7a\x28\xa2\x2c\x31\x52\x7d\x32\xb3\x4c\x3e\xe1\x6c\x0f\x01\xe6\xfe\xe0\xd3\x72\xbe\xb7\xbf\x14\x44\x8e\xde\x87\x87\x0d\x30\x03\x8c\xde\x0a\xa2\x53\x13\x03\xc2\xbf\xa5\x09\xe1\x7e\x80\xa8\x63\xc9\x41\x46\xa9\xf6\xd4\x07\xb1\x07\x23\xed\xcf\x4a\x15\x38\x14\xd4\x4d\xb1\xef\xc8\x5a\xb2\xe9\x99\xc9\x63\x48\x0c\x29\x9d\xda\xb4\x7d\x32\x90\xd1\xfe\x5e\x6c\x6f\x57\x0a\x3c\x72\xfa\x16\x62\x4c\x42\x0b\x15\x7b\x99\xcd\x5b\x83\x75\x50\xb0\x22\xbf\x6f\x46\xfc\x26\x20\x2c\x26\xe7\xe8\x87\x5b\xc6\xb7\xc1\xe7\x29\x0c\x6e\xed\x69\x6a\x5b\x3e\xd7\x10\x39\xd9\x2f\x21\x59\xef\xc2\x48\x22\xe8\x8d\x4b\xd9\xde\x4f\x56\x4c\xd5\x58\x2a\xf2\x00\x5b\x22\x0a\x6d\x4e\x83\x76\xe1\x1d\x83\x00\x2c\xd4\x32\xa8\xf1\x36\x54\x84\x08\x1e\x15\x1e\x5a\x20\x64\xa0\x99\x37\xce\xa5\x82\xe1\x20\x9c\x04\x47\x94\x92\xf8\x79\x42\x00\x55\x8c\x38\x32\x4a\x0d\x10\xdd\x21\xee\x94\x05\x1f\x33\x3b\x3d\x07\x50\x23\x70\x42\xe2\xcf\x24\x25\xee\x4b\x37\x0b\x6c\x25\x1e\xe0\xfb\x76\xd4\x8b\x95\xc6\xa0\x01\x9c\x8d\x47\x3a\xc5\xca\xee\xe5\x08\x40\x22\x4b\xad\xf2\xb0\xd9\x79\xad\xd0\xc7\xc4\x81\x6c\xf2\x14\x31\x19\x88\xee\xb9\xa8\x8c\x31\xeb\x52\x27\xef\x80\xa3\x5a\xb1\x30\x9b\x7d\xda\xb4\xba\xa5\x57\x68\x2b\xcc\x33\xc2\x06\xf8\x46\x67\x0a\x8c\x41\x07\xaf\x8a\x12\xdc\xcf\x43\x5d\x7c\x49\x81\x09\x06\xdc\x94\xa4\xa6\xf1\x22\x8c\x8b\x12\x32\xc4\x4b\x7f\x42\x65\x87\xb1\x45\x4a\x84\x20\xda\x25\x75\x8d\x82\x4e\x0f\x9f\xec\x81\x77\x73\x7d\xf0\xf7\xe8\x28\x7f\xef\x7c\x92\x71\x09\xda\x78\xfc\x9a\x4f\x97\x48\x5c\x54\x0e\x29\x62\x7a\x1c\xa1\x18\x8f\x63\x2b\xa1\xa0\x4d\x04\x09\xe3\x19\x8e\xc5\x2f\xdb\x9c\xa4\x56\x08\xf0\x3e\xff\xdd\xca\x5f\xda\x42\x7b\x89\x46\x7f\xeb\xbf\x02\xfa\x62\x41\x07\x52\x94\x25\x9f\x72\x2c\x76\xdb\x79\xab\xbe\x0a\xe1\x52\x0a\xde\x81\x17\x45\x86\x87\x49\x41\x11\xe4\xbd\x0a\x10\x83\x7c\x78\xeb\xcc\x07\x5d\xd5\x0d\xe3\x26\x6e\x43\x47\xc3\x7f\x52\xf1\x61\xa0\x25\x49\xba\x18\xcf\x50\xac\x0c\x03\xac\xde\xae\xd9\xa5\xe2\x50\x4c\xbc\xeb\xf5\xe2\xb6\xc4\xd5\xf9\xfc\x61\xa5\x0c\xc0\x89\x4a\x62\xfe\x25\x33\xe4\x02\xed\xaf\x39\x5c\x91\xa6\xe2\xcb\xf0\xbc\x8d\xf6\x0a\x0e\xc4\x41\x03\x27\xd6\x9b\xe7\xf2\x74\xbe\x0d\x89\x18\x77\x51\xbf\xee\x89\xe1\xdc\x86\xa7\x4f\x0d\x62\x03\xae\x95\xd9\x37\x04\xc9\x38\x42\xe5\x97\xec\xee\x2a\x3a\xb1\x7d\x62\x0c\x5d\x93\x4d\x28\x1a\x52\x92\x72\x34\x1c\x28\x28\x18\x30\xd8\xcc\x69\xb9\x34\x45\x04\xb1\xaa\xa0\xf1\xf1\xce\xdf\x57\xa9\x59\x04\x3f\x28\x17\x84\xd3\x83\x9d\x03\x6c\x7d\x8f\xb6\x6a\x5e\x9c\x3a\x78\xd0\x45\x90\x43\xef\xe0\xba\x7e\x29\x67\xbb\x12\x13\x19\xd3\xbb\x8a\x17\x27\xcd\x23\x12\xa5\xc0\x5c\xf1\x2c\xc1\x4a\x23\x1c\xf5\x85\x72\x24\xde\x59\xb1\x0d\x46\xbf\x0c\x4f\xd3\x02\xe1\xb9\x1b\xb4\x35\xc6\xfd\x64\xc3\x7f\xbf\x7d\xc2\xbe\x61\xb1\x99\xdc\x3d\xff\x58\x18\xa2\x9c\x46\x43\x0b\x0b\xf2\xd2\x2b\x1d\x6c\xf2\x89\x64\x69\x34\x8a\x7c\xf8\xf2\xed\x0a\x83\xaf\x29\x03\x44\xc4\x36\x2d\xf9\x00\x7a\xfb\x25\xc8\xde\xae\xd6\x60\x81\xe7\x2c\xfc\x8c\x25\xe2\x1c\x68\x94\x8a\x4b\x18\x19\x62\x05\x40\xe3\xa3\x1d\x22\x70\xc0\xac\x99\x98\x99\xe6\xc5\x1b\x14\xb1\x51\x13\x98\x2a\xc4\xd6\x31\x4a\x57\x17\x3b\xd7\x79\x23\xe6\x23\xd9\x9e\xd8\x4c\xd4\x5d\x2e\x23\x87\x73\x4a\x6c\x30\xff\xb1\x9e\xad\xa3\xbf\x34\xb4\xbb\x07\x8d\x06\xda\x7e\x8f\x94\x09\x22\x0e\xca\x0f\x37\x2f\x39\xfb\xd9\xa4\x49\xaa\x6c\x3a\xa7\xb4\x4c\x98\x78\x5f\x87\xc7\x09\x6d\x66\x6e\x7b\x44\x39\x5e\x09\x43\x2f\xcb\x3d\x61\x13\x25\xfd\x55\xf5\xfc\x21\x37\x6b\x67\x5c\x81\x70\xe2\x4d\xec\xc1\xc1\xcb\x85\x77\x4d\x4a\x02\x23\x85\xf8\x1e\x1f\x48\xe2\xac\x24\x42\xf9\x70\x45\x70\xae\x8e\x41\x67\x6a\x65\x4a\xd9\xe5\x85\x3d\x5d\xc9\x20\x11\x58\xa3\x0a\x9b\x9d\xc6\xa5\x38\xe5\x89\xe9\xba\xb0\x0d\x31\x39\x39\x0d\xbb\x2c\x84\xd2\xc4\xd2\x46\x71\xe4\x39\xd0\x59\x95\xe0\x4b\x96\x55\x03\x98\x51\x3b\x50\x73\xd1\x0d\x8a\x34\xd9\x9f\xc0\x7e\x80\x30\x44\xc7\x80\xc6\x86\x49\x2a\x7d\xa0\x79\xec\xcb\x3f\x20\xea\xc6\x98\x2e\x52\xac\x14\xa4\xa4\x65\xb4\x14\x56\xe4\xa4\x16\x7e\xa6\x02\xd0\x4c\x35\x9b\x2c\x27\xaa\x63\x70\x62\x1a\x21\x39\xb4\x89\x06\x28\x3b\xb4\x84\x00\x1b\xca\x83\x52\x57\x9b\x95\xde\xc6\x62\x0d\x1c\x8e\x0d\x10\xc7\x78\xc0\x32\xb7\xd0\x8b\xf8\xa7\xbf\x31\xe2\x6f\xb4\xc0\x57\xa4\x12\xff\xfc\x8c\xcf\x04\x22\xed\xe4\xbd\xe1\x70\xa5\xa7\x24\x46\xe0\xcd\xb9\x0c\x3e\x15\x20\x1a\x26\x62\x9c\x45\x4d\xff\x1b\x15\x34\xd4\x8c\x54\x04\x07\x8b\x15\x10\x83\x86\x4c\xcb\xac\x45\xdf\x3d\xa8\x44\x53\xac\x6d\x6a\x77\x4c\x2e\x4e\x21\x21\x0b\xca\xce\xdd\x96\x4a\x54\xb4\x6b\xdc\xd7\xcc\x95\xc4\x10\x01\x4b\x08\x39\x44\xbc\x38\xbf\x65\x8e\x42\x25\x91\xf8\x36\xe9\x3a\xa7\x31\x2e\x48\x00\xb2\x10\x21\x28\x4e\x55\xbd\xcb\xc5\xd1\x75\x3f\x90\x0d\x53\x87\xe6\xc8\xfe\xe4\x07\x9c\x47\x44\x54\x11\x1d\xfd\x2e\x8c\x9f\x6a\xe5\x8b\xac\x1b\x0a\xb4\xf5\x81\x04\xc9\xd1\xcc\x86\xe3\x33\xc4\x82\x94\x84\x15\xa0\x26\x1f\xda\x1d\xe1\x2c\x2e\xac\x23\x16\x4d\xed\xbf\xfb\xac\xc7\x07\x73\xc0\xa3\x3c\x09\xe8\x02\x8e\xf3\x8f\x2e\x9f\x24\x0b\x67\x81\x3f\xa9\x7b\x74\x90\x3b\x44\xc4\xc1\xaa\x0d\x4f\x12\x78\x82\x45\xb6\xf2\x7d\x25\x1a\x48\x82\xc5\x73\x56\xc9\xb1\x22\xcd\x07\xbd\x5e\x24\x89\x13\x06\x7d\xbe\x62\xb9\x12\x5a\x02\x53\xf3\xb7\x0e\xd9\x26\x5e\x90\x26\xd9\xb3\x81\x64\x75\x7e\xad\xbb\x2f\x5f\x4b\x21\x86\xb8\xd0\x49\x29\x34\x55\x24\xae\xd2\x39\x1c\x0a\xb6\x61\xd5\xbd\x40\x2f\xdb\x06\x48\x8e\xac\x0f\x8d\xee\x35\xcc\xf3\xd0\xe1\xa2\x47\x06\x5f\x85\x57\x59\x86\x0f\xbb\x83\x9a\x5d\x80\x2d\x8c\xa8\xcc\x89\x8d\xa5\x16\xd8\x6d\xaa\x50\xb3\x9d\xe4\xb6\xc1\xb5\x22\x66\xb3\x13\xbf\x20\x98\x6d\x6d\x44\x5e\xf3\xc1\xba\x1d\x1b\x59\x29\x13\x5d\x10\xf8\x24\x16\x23\x18\x9e\x17\x15\xce\x1e\xf7\xc5\x2a\xd1\x8f\x81\xac\x24\x2a\x80\x47\x39\xe7\x80\x1d\x73\x99\x89\x61\x29\x7d\x14\x4d\xfd\x91\x71\xb8\xa2\x0e\xd5\xaf\x49\xd1\x19\x91\x39\x5e\xd3\x25\x01\x1b\x44\xe8\x90\x00\x71\x71\x7c\x4f\xe8\x51\xba\x11\xc8\x3a\x28\x96\x98\x59\x73\xa5\xad\x9a\xcc\x76\xb4\xe9\x0b\xd8\x2c\x18\xc5\xa0\x60\xb3\x6a\x11\x05\x8c\x0c\x8d\x0b\xb7\x91\x32\x4e\x82\x83\x8b\x58\xe2\x21\x6d\x15\x9f\x73\xc5\x1d\x86\x54\x4c\xcb\x79\xf5\x11\xe3\xbd\x27\xcc\xd5\x87\x98\xe8\xac\x35\x7f\x2e\x68\x68\xe6\xe2\xfa\xb3\xcc\x1c\x02\xe5\x8f\x70\x64\x23\x22\x4b\x4d\xe7\xbe\x26\x97\x78\x87\xa0\x2c\x11\x8a\xef\x78\x14\x04\x88\xa6\xb2\xb9\xe4\x33\xdb\x3a\x01\x4a\x4d\x0b\x97\xdc\xe5\x17\x39\x88\x36\x13\x21\x02\x68\x57\x05\x07\xa1\x6d\x88\xcc\x84\x68\xdb\x77\x52\x36\x42\x40\x6d\xf7\xb9\x33\x13\x84\x5c\x94\x6c\x3c\x11\x88\xa1\x1e\x7f\xc5\x2f\x23\x43\x3c\xf4\x3f\x02\xa7\xcc\x52\x96\xe8\x06\x16\xbd\xf9\xf8\x62\x11\xab\x6e\x68\x7c\x2b\xaa\xd0\x50\x07\x4a\x5e\x8a\xb2\xec\x79\xd2\x83\x41\x90\x4f\x4c\xa2\xeb\x41\x53\xee\xc8\x6f\x4b\xde\xd7\x07\xf2\x6b\x03\x73\xba\xe4\x59\xb5\x7b\x04\x6d\x87\x9d\x7a\xd8\xc7\xa3\x9e\x83\xea\xf1\x35\xb2\x58\x41\x34\xb0\x83\x79\x2e\x80\xec\x5e\x8a\x6d\x1a\x3b\x18\x47\x40\x87\x4e\x6a\x0a\x38\x5b\xaa\xca\xb9\x8e\x89\xc9\x7a\x63\x0f\xd0\xd2\x0d\x16\x8c\xac\x9e\x00\xa2\x74\xae\x80\xd9\xb8\xaf\x9f\x48\x7d\x6b\x4c\x17\xc9\xdc\x08\x3d\x80\x0d\x89\xa0\xfb\xb8\x4e\x7c\x59\x13\xa3\x12\x8f\xe7\xb2\x1d\xc2\x2a\x43\xfb\x84\x78\xf1\xc3\x35\x0d\x7b\xe9\x71\x23\x47\xb8\x02\x30\x71\xc2\x4f\x71\x72\x2c\x5e\x5f\x03\x96\x08\xb0\x5b\x60\x93\xdd\xd4\x65\x0c\xc1\xd0\xe4\x12\xac\x9a\x0d\x91\xda\xf9\x09\xeb\x39\x33\xd2\x22\xcd\x14\x42\xaa\xa8\x40\x38\xe8\x84\xe5\xbb\x48\x63\x82\x66\x9a\x96\x33\xbc\x4c\x70\x9d\xf4\x5b\x9e\x4f\x6b\x2b\x8d\x37\xcf\x17\xb7\x16\x54\x67\x6b\x68\xec\x9a\x98\x6d\xc5\x4c\x9b\xa3\xa0\x3e\xff\xb8\x73\xbd\xdb\x50\xd4\x1a\x23\x54\xdc\x08\x9d\x65\x8a\x38\x15\x8c\x8d\xc9\x39\x30\xc0\xbb\x65\x16\x7c\xd3\x9d\x61\x51\xd2\xae\x1f\x18\x68\x2c\x36\xb6\x4a\x69\x24\xdc\x57\x98\x48\x66\x1c\x08\x5a\x2d\x44\x46\x56\x71\x19\x5b\xc9\x4e\x72\xc3\x8f\x8a\xdb\xfd\x45\xb2\x56\x7c\x4c\xf1\x76\x2c\xae\x00\x63\xa3\x97\x5d\xe2\x7b\xc6\xe6\xa4\x16\xaa\xfd\xa3\x87\x2c\x43\x0a\xaf\xb0\x38\xb5\xb5\xa1\x90\x9f\xb8\xc3\x8f\xab\x80\x4f\x3c\x2f\xb8\x89\xaf\x03\x86\xa7\xb8\xb4\x50\xb7\xc3\x38\xc1\x2d\xc6\xc8\xa3\x60\x52\x3f\x2d\x3e\x54\xfb\x65\x07\x57\x10\x23\x37\xec\xe2\xb7\xe0\x40\x8c\x90\x1c\x23\x57\x89\xc0\xa3\xa1\x50\x35\x4a\x9d\x9d\xda\x59\x66\x42\x54\xce\x60\xb4\x43\x3f\xa1\x62\xf2\x0b\x06\xbe\x8c\x24\x04\x1f\xd8\x4a\x59\x5a\xb0\x49\x20\x4c\xd9\x00\x5f\xc2\xf7\x80\x57\x76\xb6\xc7\xf4\xfc\x84\x99\x8f\x6d\x28\xeb\x23\xb7\x4c\x92\x84\xb3\x68\xc4\x60\x54\xb0\xf7\x1d\xd1\xed\xe0\x20\x63\x9c\x34\x67\xb5\xd1\x74\x1b\x21\x39\xe4\x77\x59\xcd\x29\x45\xc7\xe8\xb4\x4b\x91\x78\xe1\x64\xb4\x30\x9e\xe0\x6a\xbf\x92\xca\x39\x7a\x0d\x29\xd2\x15\x4e\x25\xe9\xcd\x87\xea\x5e\x35\x61\xd5\xc2\x80\x86\xe3\x64\xd4\xbc\x62\xdd\xe7\x14\x33\xea\x5b\x2d\xfe\x4e\x4c\xc8\xf2\x83\x49\x09\xe3\x78\x56\x16\x59\x85\xf3\x0b\xd8\x4b\x63\xe2\x71\x76\xb1\x3d\xcf\xdb\x03\x26\xa4\xb1\x9c\x65\x14\x32\x82\xe9\x65\x55\x91\x01\xb2\x0b\x0a\x50\xb6\x86\x3c\x6d\x1f\xf2\x92\x71\x48\xbd\x30\x7d\x34\x8b\x02\x8f\x10\x88\xd1\xf5\x7d\x59\x02\x0f\x81\xb4\x81\x32\x02\x21\xf3\x72\xb8\x77\x0b\xcf\x82\xa2\x93\xae\x80\xa1\x90\x88\x4b\xf4\x17\x52\xca\x12\xa3\x10\x54\xc4\x9a\x9d\xb8\x53\x23\xe3\xd1\x36\xf2\x9a\xc1\x89\x74\x39\xf4\x76\x91\x32\x3d\x9e\x91\x06\xbb\x48\x10\x9a\x8a\xd8\x28\x06\xc0\xf0\x75\x4d\xec\xc3\xc6\x71\xf2\xf4\x41\x85\xda\x70\xd0\xd8\xcf\x4c\x69\x9d\xd6\x2a\xfa\x76\x42\xfd\xb0\xa8\x5a\xe3\x19\x8a\x2d\xa2\xb3\xcf\x48\x2e\x3c\xd4\x48\xd8\x0a\x25\xc5\x95\x41\x6b\x88\x12\x86\xf8\xe9\x50\x01\x99\x0a\xe3\x67\xc5\x08\x04\xc8\xe0\xf5\xde\xdc\x9a\x15\x13\xfb\x22\x5f\x8a\x3f\xd0\x04\x93\x3a\x82\x82\x86\xe6\x4d\x6c\xa0\x0a\x12\x7f\x7e\x40\x88\x33\x22\xb5\x92\x27\x0b\xdb\xe2\xc2\xd9\x83\xd6\x72\xfe\xb2\xa5\x9c\x69\xdb\xbe\x4a\xec\xb9\xe5\x90\xdc\xff\x1d\x4b\x21\x8a\xca\xa2\x54\xca\xd8\x59\xdc\x55\x2a\x5a\xd2\xb2\xb5\xf8\xf1\x61\xa4\x02\x58\x8b\xb9\xb0\x74\xd0\x09\x6b\x24\x4d\x20\xae\x3b\x6d\x8b\x23\x45\x12\xf7\xeb\xb3\x91\x4b\x90\x3e\xfa\x7a\x56\x0e\xd9\x3d\xa2\x06\xdd\x8a\xe3\xf9\x46\x4a\xf2\x03\xf0\x22\xb3\x23\x83\x9a\xa9\x31\x41\x57\x31\x1d\x77\xb7\xdb\xbd\xf8\x24\x11\x0d\x79\xd8\xb9\x55\xf2\x2c\x31\x4b\x8c\x60\x07\x45\xeb\x29\xe9\x1b\xc2\xd3\xe2\xb6\xe3\xb3\x6b\x46\x5a\x58\x64\xd1\xa2\xcc\x8f\x9e\xab\x1f\xac\x9a\x1d\xe8\x85\xbb\x5d\x1b\xfb\xa6\x87\x7a\x9a\x9b\x6f\x62\x9e\x44\xc5\x30\x3d\x91\xc1\xfe\xdc\x3a\x4e\x0f\xf7\x69\x91\xc6\xf2\x4d\xf5\xdc\x1e\x33\xbe\x69\xfe\xd4\x03\xc3\x9a\x62\x02\xd6\x0e\x5a\x3d\xc7\x4b\xa5\x20\x8a\xe6\xe3\x22\xc7\xac\x6c\x7b\x81\x2b\x53\x0c\x11\x18\x38\xb2\xe5\x7b\x4a\x2b\x39\xa8\xec\x46\x65\xa0\x40\x93\x66\x80\x06\x3f\xe8\x11\xb2\x89\xe7\x6c\x08\xa7\x58\xd3\x07\xa8\xe0\xab\x4c\x07\x82\x40\x9b\x74\x20\xa4\xab\x5a\xd5\xeb\x7b\x95\xe1\x28\xd8\xb0\xca\xda\xb7\x0a\x79\x8c\x59\xca\xf8\xe1\x24\x1b\x15\xef\x7d\xfd\xa2\x5c\x8d\x94\x47\x1b\x2a\x3f\x3b\xec\xa9\x30\xa1\xce\x17\x1a\x15\x3d\x89\x87\x3f\x66\x09\x43\xe8\x18\x41\x7a\x6a\x0c\xa7\xff\x26\x65\x19\x60\x69\x18\x6f\x2b\x99\xe0\xe8\x9b\xa3\x14\x21\x0c\x60\x08\x65\x99\xc4\x23\x2a\x49\x4a\x80\xa8\x88\x82\x45\xf2\x6b\x17\x21\x4c\x06\x43\x36\x2d\x62\xfb\xda\x76\xaf\x53\x05\x0a\x0d\x9a\x8f\x14\x60\xbb\x56\xc9\x2e\x0a\x9a\x43\x28\x3e\x65\x9b\xd2\xd8\x8e\xa9\xb8\xdf\x09\x8c\x17\x2f\x08\x28\x98\x0a\xe9\x9f\x45\x09\xb4\x25\xeb\x96\x0d\x8e\x0e\x0c\xc0\x7e\xcd\x49\xd8\xda\xd9\x8a\x22\x1d\x05\x78\xe0\x54\x27\x4e\x74\x18\xc2\x72\x84\x70\xa9\x56\x2a\x6d\xf7\xf5\xae\x8b\xec\x58\x9a\x6f\xcf\x69\x6c\x11\x89\x4d\xfd\xd0\xb5\x0d\x42\x8d\x43\x96\x12\x89\xe7\xeb\x92\x74\xa8\x7d\x4f\xe5\xb6\x44\x12\x43\xcc\xc7\x21\x61\x02\xcf\xf9\x19\x5b\xd4\x5b\xff\xa4\xd4\x68\xd3\x59\xb3\xa4\x49\x97\xc1\xc3\x0a\xf0\xaf\x4f\xbb\xe9\x11\x88\x44\x27\x03\xb4\x7b\x67\x3a\x10\xd7\xf2\x64\x88\x93\x14\xc4\xfa\xd4\x62\x23\xc7\x21\x18\x0e\x46\x49\x27\xe8\x67\x74\x62\x8a\x07\xb8\xe4\xd3\x9c\x40\xc4\x4d\xc3\x33\xbb\xab\x67\xb9\x01\xb1\xb4\x57\x9a\x65\x01\x4d\xd2\xe6\xb4\xac\x52\x8a\x4b\xa9\xea\x6d\x08\x6f\x0a\x84\x94\xae\x7f\x1a\x97\x15\xb0\x4b\xd0\x09\x3e\x48\x54\x44\x03\x8c\xcd\x04\x2a\x33\x4a\xa4\xed\xa0\x34\x71\x4c\x3e\x1a\x5a\x14\x02\x1e\x1b\xfb\xc8\xc8\xde\x14\xed\x92\x79\x75\xb7\xb3\x10\x13\x91\x24\x9a\x8d\x4d\x60\x2e\xf4\x92\x18\x64\xf5\x3a\x64\x47\xdf\xc8\xcd\xff\xce\xa6\xfc\xd1\x92\x22\xf7\x22\xbf\x15\x66\x2f\x61\xa1\xf0\xbe\x31\x8a\x00\xb2\x18\xc1\x1b\x8f\xf1\x18\xa1\xb8\x47\x1f\x93\xac\x9c\xfe\x91\x66\x66\xb9\x8a\x06\xe6\xcf\xa0\x06\x2c\xeb\x11\xb4\xf7\xca\x45\xfe\x66\x43\x1d\x80\xd7\x97\x11\xb4\x41\xde\x05\x4d\x4b\x91\xc0\xc4\x6f\x14\x9b\x99\x52\x80\xa5\xbb\x10\x22\x9e\x05\xb8\x93\x67\x5d\x40\x65\xcc\x26\xdd\x75\x71\x82\xba\x0e\x94\x70\xf4\x22\x96\xd5\x1a\x4d\x86\x0e\x1e\x86\x3c\xd2\x44\xd0\xc3\x41\xfd\x82\x32\x77\xe8\x5f\xc0\x96\x54\x40\x45\xad\x4d\xaf\x80\x99\x1d\xe3\x0e\x0c\xd2\x9a\x04\x59\x89\xe1\xa6\x22\x72\x0e\x41\xec\x73\x33\x00\x0c\xa8\x8b\x06\x27\x94\xd2\xd0\x54\x64\x16\x11\x6e\x37\xa5\x88\x38\x08\x18\xc4\x58\x8a\x4d\xfc\x4e\x31\x4a\x78\x37\x43\x08\x19\xbe\x82\xd0\x2d\x45\xb6\x70\x4f\xe8\x91\xb6\x61\x5c\x84\xee\x91\x03\x67\xa0\x9f\x11\x46\x61\x36\x18\x4a\x02\xa7\x9c\xaf\x1f\xa2\x23\x8a\x4c\x29\x01\x03\xd2\x57\xba\x11\x06\x42\x06\x19\x50\x41\xe3\xcd\x53\x54\x2c\x63\x40\x13\xc9\xc7\xee\x21\xce\x06\x1b\x2a\x91\xc0\x0f\xef\xa4\xcd\xc6\x36\x4b\x0e\x95\x34\x0b\xd5\x8f\x6c\xe2\x63\x5b\xf1\x5c\xdf\x8a\x03\x2e\xc4\x40\x40\x06\xa3\x69\xaa\x23\xe3\xa4\xdb\x9a\x50\x22\x88\x4b\x08\x6e\x81\xb6\x1c\x4f\xc3\xd0\x0f\x87\xa1\x01\xfd\xd8\x41\xfe\x4f\x37\xde\x59\x3e\x67\xf1\xb0\x94\x7c\x8e\x3b\x79\xef\x93\xae\x86\xdc\x67\xdd\x18\x46\x20\x8c\xe7\x70\x35\x98\xf8\xdb\x44\xec\x1c\xec\xf0\x10\x25\x98\xf4\x5b\x27\xe6\x1c\xda\x7b\x40\x12\x85\x7c\x33\x70\x78\xf0\x5b\x3a\x98\x59\x37\x5d\x04\x76\xe3\x4d\xb8\xe4\x1a\x04\x9d\x48\x80\x27\x4d\x05\xb4\xcc\x51\xf8\x63\x35\xe3\x17\xfd\x85\x30\x9f\xa3\xf2\x18\x50\xf5\xc7\x38\xbe\x90\xf7\x27\x1c\xc2\x83\xac\x39\xa4\xf5\x69\xef\x1b\x9d\x85\xbf\x38\x74\x4d\xea\xd3\x93\xf5\xfb\x08\xde\x70\xe3\x89\x62\x59\x90\x99\x81\x75\x62\x4e\xd6\x71\x46\x7d\x61\x40\x3f\xa9\x4b\x06\xdc\xe5\xe0\xe6\xc7\xa7\x4d\xa1\x4c\x6c\x38\xad\x07\x2e\x1f\xe3\x35\x72\x5b\x61\x38\xb0\x1c\x66\xff\x9a\xb7\x43\x29\x87\x89\x2d\x45\x13\x7f\xd5\x55\x9f\xa9\x48\x4f\xa8\x6c\x31\x1a\xf6\xac\x29\xfc\x60\x49\x4c\xe0\x47\xcc\x03\x45\x43\xa3\xbf\x87\xeb\x99\x72\xe8\x4e\x6a\x29\x44\x0a\x58\x31\x86\xad\x89\x1a\x78\x41\x0a\x00\x1c\x40\xe3\xbf\x5b\x6e\xe0\x36\x02\xfc\xd0\x80\xbe\x27\x56\x76\xc9\x7d\x08\x64\xe4\x78\xfb\x61\xc8\x90\xb0\x1c\x53\x59\x6f\xa1\x33\x35\xde\x5d\x50\x0a\xb2\x0e\xcf\x3c\xd5\x90\x37\x7d\x93\xcb\xdf\x64\xd6\x33\x91\x19\x43\x47\xf9\xb2\x10\xf4\x30\x43\x08\xc3\x04\x1f\x2f\x6d\xa7\x00\xab\x31\x68\x4d\xf7\x65\xc4\x09\xe8\x24\x52\x91\x64\xac\xc9\x88\x0a\xdc\xe9\x0b\xdc\x82\xa7\xc5\x70\x94\x2c\xb9\x78\x61\xdb\x21\x7d\xf6\xa1\xa8\xe1\x11\x8f\xa7\xdd\x96\xf8\x39\x65\x34\x23\x4c\xc7\x3d\x1a\x39\x30\xf2\xe6\xc4\x32\x30\x23\x10\xee\x93\xb9\x2e\x42\xdf\xce\xc7\x97\x05\xd6\x11\x17\x99\x81\xcf\x79\x98\x1c\x83\x09\xb9\xfb\x62\xd8\xa4\x85\xe1\x59\x76\x77\x45\x50\x96\xc5\x07\x47\x49\xd2\xa0\x66\x42\x5a\x15\x81\x49\xc6\x26\x8d\x7c\xff\x59\xc6\xe2\xe9\x15\xb4\x73\x99\xf4\x8f\xde\x72\xc5\x1e\x82\x34\x54\xb3\xb5\xc4\xc8\xf8\xf2\x8b\x82\x9b\x62\xca\xff\x34\xb5\x2e\xc3\xb0\x24\xc0\xe5\x5f\x74\x9e\x05\x64\x10\x0c\x62\x97\xae\x02\x90\x6f\x00\x3c\xcb\xf0\xc0\x06\xac\x82\x8a\x50\x55\x5b\xdc\x4b\x2f\x9a\x35\x4e\x32\x5f\xe4\xb0\x07\x63\xc1\x3d\x8c\x00\x6a\x83\xa4\xde\xae\x30\x7c\x35\x65\xe7\x39\xe7\xb5\x71\x3f\x70\xd0\x50\xa6\xa7\x4c\xce\xbb\xd6\xf9\x42\x7e\x21\xb2\xad\x4a\x00\xa5\x5b\xea\x0d\x0b\x83\x95\x38\xb9\x3c\x14\xa4\x54\xc8\x30\x75\x24\x41\x7b\x0e\xb7\x14\xd9\x4a\x11\x42\x57\xca\xf0\x03\x2b\x87\x01\x4d\x84\x73\x06\xa2\xda\x9a\xc8\x74\x45\x03\xc1\x48\x8b\x3c\x38\x5d\x3e\x6a\xaa\xa0\x71\xe8\xb2\xa0\xed\x79\xe3\x32\x6b\x11\xb9\x2a\xea\x05\xfc\xff\x1e\x8c\x7d\xf2\x21\x13\xe8\x9d\xe1\x18\xa3\xd1\x27\x48\xa3\x29\xdc\xff\x08\x46\x3a\x43\x5c\x4f\xed\xc7\x32\x03\xb2\xbe\x7c\xbd\x88\xc5\x25\x6f\x9b\x7b\x46\x4f\x2c\xc2\xf9\x34\xba\x6d\x7f\x6f\x4c\x10\x73\x42\x8f\x0e\x1e\x02\x77\x20\x73\x25\x1e\x2f\xe4\xb9\xa5\x44\x20\x49\x00\x91\xad\xec\xd3\x01\x7d\xa8\xbc\x76\x46\x90\x91\x7c\x8c\xc9\xbf\x6c\x78\x33\x86\xd1\xc1\x21\x53\xfb\x98\x8f\xd3\x32\x2f\xc1\x6f\x00\x10\x67\x3c\x5f\x81\x0b\x99\x6f\x21\xe0\x42\xe2\xaf\x91\x80\xec\xce\xd5\x42\x61\xa9\x40\x5a\xc6\x7a\x2c\x4e\x30\x21\x2c\x97\x95\x66\x17\xb2\x8f\xef\xa9\xc3\x90\x59\xff\x03\x28\x46\xb7\x18\x52\xd3\x49\xe4\xd9\x52\x9d\x3d\x70\x98\xef\xf3\x04\xae\x0b\x86\x4f\xf5\x70\x12\xee\x61\x09\x38\x2a\x20\x02\x91\xaf\xfe\x5e\xbc\x0a\xb8\x2e\x63\xe0\x52\x35\x3a\x4b\xea\x2c\x20\x8e\x81\x41\x87\xe7\x68\x2c\xbd\xac\x8a\x54\x69\x94\x0f\x70\x4b\x71\x0a\xd1\xf3\x3c\x06\x26\x46\x5d\xa3\xf6\x3d\x00\xad\x0e\xd1\xb4\xe0\x16\x81\x52\x77\x93\x4d\x71\x85\x35\xbc\xaf\x31\x6d\xb4\x0f\xd6\x2c\x29\x00\xb6\x90\x8c\xe3\xba\xab\xd2\x86\x77\x8c\x45\x1d\x70\xa6\x28\xc4\x7e\xc2\x75\xea\x1f\x67\x78\xf9\x0b\x51\xc4\x94\x70\xd1\xf0\x3f\xac\x45\x31\x02\x9c\x54\x05\xa9\x2a\x85\x34\xda\x31\x17\x1c\x15\x8a\x7c\x46\x22\xc8\x90\x74\x97\x34\xc9\x4c\x4b\x36\x1c\x2f\x09\xae\x92\x4c\xdc\x12\x6c\xc1\x93\x38\x2a\xcc\x65\xc7\x2a\x2d\x04\x37\x59\xb2\x50\x7f\xd0\xe5\x0c\x14\x97\x94\x65\xa5\xda\xc3\x1c\x45\x85\x39\x88\x28\xde\xfa\x93\x1c\x4d\x72\xc0\x7c\xbc\x14\x68\x76\x88\xb4\x6b\x01\xc2\xc0\x50\x2d\xe8\x58\xf6\x24\x55\x13\xc5\x62\x04\xc9\x20\x4b\x81\x85\x62\x4d\x81\xb0\xc7\xc2\x60\x75\x1b\x54\xf9\xea\x53\x1f\x90\xa0\x31\xa2\x65\x48\x48\x41\x6f\x34\x9c\x56\xb4\x66\xa1\x55\xbb\x0a\x88\x49\xb3\x52\x8e\x9f\xd2\xa1\x5d\x60\x13\x45\xb8\x6f\xe2\x48\x3c\xe9\xa0\xbb\x90\x13\x36\x1a\x50\xc8\x6d\x6e\x27\xb5\x59\x56\xab\xd7\x08\xf0\x28\xce\xb6\x1f\x23\x76\x3c\xcf\x23\x17\x8b\x26\x23\xa9\x16\x7c\x0e\xa4\x2d\x64\xdd\x5a\x71\x73\x84\x74\x8c\xf3\x46\x92\x8c\xc3\x25\xa8\x74\x14\x53\x75\xc2\xaa\xb2\x64\x36\x92\x56\xc6\x81\x44\x71\x8a\x9f\xb6\x3e\xf6\xa9\x23\x36\x43\x8b\xb2\x64\x36\x61\xd2\x59\xa7\x06\x99\xdb\x75\x73\xb4\x41\xa7\xad\xdc\x9b\x59\x03\x50\x11\x9e\x2e\x70\x15\x05\x2e\x30\xc4\x6f\x89\x18\x00\x30\xa5\xc9\x71\x82\xdd\x4b\xd4\x50\xa2\x69\x08\xa0\x43\x77\x20\x2c\x34\xa6\xc2\x0b\x34\x8c\x84\x79\xbf\x34\x66\x31\x3f\xa5\x33\x98\x0c\x98\x80\xb9\x45\x24\x3a\xe7\xba\x0f\xaf\xe9\x44\x29\x75\xb1\x20\xeb\x64\x60\x06\x12\x0c\xdc\x8d\x48\x85\x43\x61\x94\x66\x50\x30\x21\xd6\xa3\x51\x97\xf3\xdc\xc0\x82\x3d\xb5\xec\x21\x03\xdd\x2b\x7d\x4d\x74\xda\x8a\x49\xc6\xa9\x79\x62\x44\x1c\x0c\xf8\xce\x59\xab\x96\x3f\xb0\xc4\x5f\x28\xd5\xcc\x0e\x03\xad\xbe\x43\xa1\x13\x02\x77\x54\xe7\xe1\xd2\xe6\xa0\x33\xb3\xbd\xfa\x1e\xa0\xd8\x87\x72\x26\x2a\x39\x6c\x1b\x93\xb5\x8c\x15\xae\x51\x56\x69\x03\x91\x48\x28\x12\x30\x79\x65\x60\x13\x94\x48\x43\xf1\xe7\x02\x80\xf9\x32\xf0\x5f\xb6\xd0\x5c\xd2\xb2\xf3\x3c\x13\xb5\x1e\x40\x95\xc6\x3d\x02\x07\x19\x07\xc9\xfc\x8d\x8a\x4e\x41\x1b\x84\x82\x02\xbd\x0b\x2c\x4b\x13\x90\x85\xcf\x16\x54\xd3\x6e\xf1\x53\x39\x86\xdc\xe5\x97\x28\xa4\x41\xcc\xca\xa7\xc0\x69\x33\x84\x70\x2f\x26\xe6\x16\xc2\x0d\x13\x4e\x99\x73\xbe\x46\x17\x24\x8b\x5b\x0d\x5d\xd5\x3a\xe5\x33\x22\xb6\x24\x4a\xa5\x23\x98\x11\x04\x60\x91\x3b\xc1\x7f\x66\x99\xaa\xae\x7a\x5b\xb7\xc8\x79\x1a\x9d\xb2\x23\x45\x53\x3f\x27\xed\x02\x60\x39\xf9\x08\xc2\x3f\x0d\xe2\x65\x17\xc1\xc3\x2e\xe9\x7c\x12\x4c\x1d\x7e\x67\x17\x59\x96\x24\x60\xc0\xa2\x03\xc1\x49\xc9\x40\xd3\x04\xc7\x01\x81\x43\xb3\x38\x8c\x1b\x28\x07\xbe\x26\x09\x94\x56\x79\x04\x1e\x08\x1e\xa1\x00\x73\xa3\x45\x24\x01\x3a\x17\x03\xc4\x87\xfe\xa6\x4e\x59\x6f\x28\x5a\xc5\x06\xc2\x23\x28\x13\x83\xd2\xc0\x9a\x68\xe2\xc2\xf4\x52\x32\x04\xaf\x11\xbe\xb5\xe2\x37\xfa\x4c\xc8\x95\xa8\x40\x49\x02\xba\xca\x59\x53\x99\x6b\xb1\x5a\xc4\xb5\x04\x8c\x80\xc0\xad\xa7\x4c\xfa\x29\x1a\x3b\x9d\x7a\x4d\xd1\x64\x2a\x24\x97\xe8\x1e\x93\x96\xb8\x89\xf7\xb2\xfa\x0c\x85\x27\xfd\xa1\x7e\x2c\x2e\x34\x8a\xdc\xb3\x21\x44\x05\x03\x1f\x22\x04\x91\x79\x2a\xa1\xa3\x7f\x58\x27\xdf\xa8\x4d\xd6\xd6\x29\x80\x19\x57\x46\x43\xd9\x4a\x88\xcd\xa4\x3f\xe2\x65\xf8\x49\xcc\x8a\xcf\x0b\xf0\x1e\xde\x5d\x9a\x41\xf6\x10\x98\x02\x08\xe8\x93\xb5\x90\xc1\x92\x35\xfe\x2e\x09\xdb\xfd\xfe\x90\x4c\xd0\x96\x56\xe7\x05\x2e\xc8\x22\xfe\x92\x96\x9a\x2c\x72\xb0\x68\x7e\xb7\xd2\x79\x95\xb5\x08\x4e\x3d\x99\xa3\xbe\xd3\xaf\x36\x51\x76\xc4\xb8\x60\x49\x16\x4d\x64\x21\xa0\x95\xb4\x11\x34\xd3\x03\x1e\x6d\xe9\x6b\x1e\xbf\x9d\x58\x27\xb0\xef\x89\x16\xb9\x42\x55\xb1\x06\x31\x64\xcd\x1c\x4b\xca\x4a\x40\x6f\x06\x7b\x82\xe5\x77\xcb\xd9\x76\x66\x31\xac\xb4\x4a\x33\x7e\xc7\xb8\x3d\x25\xb4\xf1\xd7\x92\x84\x89\xda\xe2\x60\x05\x73\x10\x72\x14\x12\x13\x58\x45\x2e\x4a\x64\x37\x04\xde\x58\x81\x95\xbe\xf5\xb8\x84\x03\x0d\x7d\x40\x80\xd3\x64\x8b\xd1\xa3\x80\x1c\x85\xda\x8f\x17\x8f\xcb\xa0\x83\xf8\x63\xd1\x63\x3a\xae\xf9\x2b\xc7\x35\x12\x1e\x01\x40\x7b\x52\x00\x02\x11\x77\x12\x7b\x9a\x23\x25\xd3\xbe\x50\xe9\xd7\x04\x9f\x70\xd5\x8e\x63\xbe\x50\xce\x56\xd9\x01\x58\xa2\xfb\x65\x28\xdd\x58\x4a\x19\x3a\x78\x91\x3b\x65\x27\x8a\x58\x3a\xe5\x08\xad\x30\x31\xea\x92\x23\x39\xb9\x2d\x40\x30\xff\x9b\x1b\x0e\xd9\x7a\x3b\xd4\x6a\xdb\x21\x85\x87\x45\xf0\x4c\x39\xa9\x04\x63\xab\x5d\x63\xc3\x4e\x08\x3e\x5d\x31\x27\x4a\xbc\xde\x15\x9f\x6a\x37\xe3\x9b\xb8\xee\x1b\xe0\x01\x4b\x5e\x12\xc3\x2d\x22\xeb\xe2\x87\xf0\x2e\xb9\x2e\xf3\x5a\x8c\x44\x88\x2c\x68\xdb\xae\x19\x51\x00\x20\xb0\xb5\x16\x24\x06\x35\x3f\xcf\x90\x0e\x84\x39\x12\x59\x23\x55\xe8\x30\x09\x07\x78\x50\x83\x48\xec\x56\xec\x9a\x1b\xa1\xbf\x85\xff\x2f\x6d\xaf\xb6\xf3\x37\xb5\x8a\xdf\x34\xa1\x48\x11\x11\x34\xc0\xcd\x55\x1d\xa2\x9c\xe2\x3b\x21\x40\x21\x74\x49\x44\x00\xe1\x14\xfa\x80\xee\xd6\x2f\x67\x3d\xd2\xac\x04\x6f\x92\x44\x56\x79\x31\x78\xa4\x4f\x16\x71\x51\x61\x8d\x01\x1f\xf3\xe8\xd1\x28\xc5\x7c\x6f\xe4\x8c\x42\xd5\xc1\xd0\x6e\x18\x4d\xbe\x09\x10\xb6\xdc\x90\x29\xda\x92\x98\x16\xd8\x84\x58\xda\x91\x09\x26\x30\xd8\x01\xba\xb0\xcb\xb3\x28\xf0\x26\x88\x6f\xb5\x96\x11\x3d\x79\x47\x45\x02\xfc\x8a\xb0\xde\x48\x74\x5d\xaf\x83\x52\x5f\xa4\xaf\x92\xe1\x13\x11\x58\x42\xb0\xc7\x3c\x44\x4d\xe9\xb6\x0a\x72\x1e\x39\xf1\xec\xb1\x88\x10\x18\x38\xb3\xad\xd2\xea\x7f\xcd\x2c\xe5\x19\x9e\x0e\x8f\x79\x25\x4c\x62\xb0\x9a\x75\xd4\xe5\xda\x90\x51\x12\x4d\x18\x5d\x43\x02\x52\xd7\x35\xda\x63\x32\xb3\x8a\x83\xd8\x64\x70\x19\x9d\x4f\x10\x15\x08\x3f\x47\x89\x27\xd2\x31\x60\xb4\xab\x31\x05\xe6\x4c\xf5\xfd\x68\xc9\xda\xe1\x83\x5d\xa1\xd2\x48\x14\x64\xaa\xb6\x84\x63\x4f\x47\x01\x04\x28\x22\xa5\x62\x1d\x91\xc7\x31\x8e\x47\x74\x44\xb5\x94\xe2\xe7\xca\x29\x85\xa8\x43\x16\x3c\xb9\x48\xae\x97\x5a\x2e\xcf\x54\x13\x10\x2d\xf3\xe0\x2e\xe7\x03\x49\x91\x6d\x83\xfb\x5e\x62\xa5\x90\x11\xf7\x1e\x45\x7a\x45\x94\x0d\x27\xc2\x05\xa8\xe5\xcc\x77\x00\xed\x1d\xc0\x31\x5b\xcc\xe0\x74\x8d\x1a\x26\x95\x41\xd0\x96\x23\xaf\x5e\x40\x70\x0b\x3a\xcc\x4a\xf6\x17\xaf\x23\x01\x6e\xde\x54\xd2\xca\x75\xae\x7c\xa3\x91\x97\x57\xac\xea\x5d\x23\x3b\x10\xd3\x6d\xe4\x1c\x7e\xda\xcc\x96\x75\x34\x21\x6d\xd5\x39\x6f\x48\xb4\x95\x3e\x46\xe3\x44\x39\x2d\x5e\xaa\xa1\x94\xe1\x2b\x02\x4c\x78\x04\x4b\x8d\x30\x6e\xac\xde\x8f\x1f\x34\x82\xd4\x30\x76\x46\x52\x88\x0c\xca\x14\x18\x0e\xab\x1f\x39\xbc\xca\xf7\x41\xed\x98\xba\x75\x5f\x86\xa1\xe6\xa5\x91\xbb\x02\x1d\x4f\x98\x4f\x06\x3d\x12\x46\xc6\xa2\x15\x1d\x23\xf0\xa4\x92\x56\x50\xca\x1b\x45\xa0\xe8\xb2\x03\x04\xad\x0b\x58\x8a\x9a\x37\xb7\xc2\x7c\x4a\x37\x46\xd8\xaa\x55\x1f\x8e\x5c\x00\xf8\x61\x23\x03\x1c\x4e\x34\x42\x00\xa3\x7e\x64\x6f\x5f\x82\x31\x65\x23\x6c\xa2\xff\xc0\x35\x32\xc3\x2c\xcf\xc5\x45\x5e\x11\x37\x9f\xf5\x32\x98\x9f\xc0\x16\x97\xee\x34\x99\xc6\x40\x7d\xb0\xe1\xa9\xb0\x10\xd4\x71\xc0\x0c\x6f\x0e\x01\x8e\xe7\x74\x25\xc8\xda\x1c\x74\x3c\xc2\x86\x9b\x0c\x8a\x92\x37\x35\x86\x43\xb2\xba\x88\x11\x35\x6d\x23\x16\x2d\x74\x44\xe4\x32\x44\x2d\x4f\xbc\x7c\x5a\x9d\x78\xb3\x19\x64\x2e\xc3\xc5\x37\x80\x9a\x81\xe6\x69\x69\x15\x44\x69\x90\xe1\x15\x38\x3e\xae\xe1\x3a\x4c\xbe\x33\xea\xd9\x94\xc7\xb8\xba\xb3\xbe\xee\x7b\xf6\x06\x3a\x81\x4b\xbc\x27\x13\x56\x05\x18\x46\x25\xf0\x00\xe3\x64\x4e\xe6\x80\x07\x58\x0c\x23\x32\xff\x63\x01\x28\xda\x8f\x58\x4c\x51\x79\x93\x32\x89\x2e\xa4\x3b\x11\xc6\x0d\x7e\x62\x34\xe2\x24\xe8\x17\x64\xb0\x13\x60\xb3\x94\xea\x98\xe4\xe7\xc1\xcc\x3c\x32\x38\x00\x46\x6f\x32\x2f\x0c\x49\x81\x85\x4c\x02\xe3\x23\x2a\x6c\x7c\x46\xe7\x12\x6b\xe8\xf7\x1f\xc8\x32\xc7\x61\x42\x64\x2a\xe7\xfa\x51\x33\x13\x22\xe2\x22\xb5\x7a\x11\x47\x5d\xe1\x44\xf7\x7f\x11\x10\x3a\xae\x71\x80\x5a\xc1\x76\x47\x00\x4b\x65\xb3\x88\x08\x47\x89\x90\x1d\x56\xb8\x6e\xfd\x08\xcd\xa3\xef\x83\x04\x60\x5b\x07\x83\xa7\xec\xa0\x33\x60\x0b\x66\xf1\x55\x6e\x44\x2f\x20\x90\x49\x96\x86\x23\x07\x72\xa6\x86\xcd\x51\x1d\x26\xcb\x0c\x27\x66\x1a\x7c\x20\x95\xbb\x50\x32\xae\xe8\xb2\x3a\x41\x72\x8a\xe4\x17\x43\x05\x3e\xe8\x82\x63\x8e\x94\xfb\xec\x13\xe0\xd4\x71\xc8\xe3\xdb\xa0\x51\xf4\x03\x43\x1e\xde\x28\x9b\xe0\x11\xbe\x22\x27\x52\xdc\x83\x03\xb0\x45\xc9\x1a\xab\x98\xe3\xe9\x7d\xdf\xc3\x4a\x1c\x76\xdf\xc6\xa4\x8e\x7c\xa4\x5b\x6b\xf1\xff\x91\xc7\x4d\xc3\xb6\x7b\x53\x6c\xba\x99\x78\x5a\x3b\x46\x1d\xba\x52\xb0\xb0\xbd\x7f\x23\xc1\x23\x2f\x55\xc9\x54\x6b\x10\xea\xfe\xe9\xa3\xdc\x2b\xc1\xe1\xf3\xb0\xb8\x1b\xa1\xdf\x75\x0f\x68\x90\xf5\xd6\x9b\xe2\x02\x9e\xf4\x85\x4b\xc2\x16\x26\x48\x6e\x91\x1a\x0d\xe7\x90\x47\xc2\x7c\x15\x57\x4f\x12\xdb\x99\x08\xc0\x89\xd1\xfc\xdd\xa4\x89\x10\x46\x2f\x99\x70\xef\xc8\xb3\xd0\x65\x33\x73\x46\xef\x40\x01\xa8\x67\x24\x7e\x1e\xcc\x72\xde\xbd\xbb\x25\x86\x59\x92\x2c\xd5\xfb\xb8\x9c\x2f\x93\x13\xb2\x50\x1c\x90\x46\x4e\xa2\xce\x95\x52\x7a\x74\x44\xc4\x38\x0b\x0a\x62\x17\x36\x8a\x10\xf6\xd2\xe1\x0a\x88\xc5\x50\x5f\x6d\xb4\xbc\xe3\x72\xfa\x24\x50\x3d\x07\xa2\xc4\x60\x2b\x10\xd9\x05\x3b\x13\x78\x11\x60\x76\xe7\x80\x1d\x5f\x78\x02\xc2\x44\xe7\x8e\x0e\x2c\xf7\xd3\x5c\x7c\x0a\x0c\x58\x6d\xf0\x71\x43\xd0\xc9\x9f\xb4\x95\x83\x0d\x20\x6c\x47\x87\x0b\xa7\x61\xb9\x90\x2d\x15\xcd\xa7\x0b\x4a\x24\xd3\x84\xa9\x0d\xd9\x8a\xa7\x32\x54\x4a\x58\x09\xe8\x92\xf0\x6b\xcf\x70\xc8\x25\x63\x75\x50\x87\xb9\x8a\x43\xd0\x68\xa7\x28\xa6\xb2\x2b\xc0\x66\xac\x8e\xb1\x78\xaa\x23\xa1\x42\x87\xeb\x0c\xf7\x53\x67\x88\x98\x46\x77\xa5\xa6\x43\x61\x3e\xdd\xcb\xc1\x5a\x25\x22\xa5\xa0\x65\x6e\x5b\x73\xc4\xc8\x37\x28\x02\x85\xf2\xc3\x96\xc3\x80\x75\x94\x3e\x43\xa6\x99\x93\xb6\x2f\x44\xe9\xfa\xcf\x76\x25\x4f\x67\x13\xc9\xe1\x1a\x58\xc8\x43\xc1\x04\xfd\xc9\x61\xd2\x6f\x6d\xc1\x03\x47\xca\xd3\x21\x4f\x41\xc9\xb7\x15\x8d\x2c\x20\x9d\x31\x42\x2c\x4c\x5a\xca\x23\xf2\xa1\x8d\xd0\xd0\x7d\x0c\x50\xd8\x22\xbf\x14\x47\x30\x7c\xcc\x39\x2a\x3c\xd7\x84\x65\x69\x17\xc2\xd6\x75\x01\x12\xb7\x6d\x6b\x56\x8f\xa8\x67\x0c\x6b\x74\xeb\x50\x91\xcf\xa3\xb2\xbd\x2e\x97\xa3\x49\x2f\xf6\xdc\x0c\x39\x7a\x99\x0b\x03\x9c\xc6\x08\x87\x3a\x28\x5f\x2b\x69\x5d\x86\xcd\xea\x01\xf8\xf3\x4d\x49\xf0\x8d\x2d\x67\x35\x95\x69\x6d\xc5\x67\x3c\x16\xfe\xf2\x23\x56\x13\x9a\x2d\x59\x9b\x32\x71\x49\x41\x55\xcc\x95\x58\x70\x89\x21\xbb\x64\x57\x9f\x0b\x95\x9f\x21\xc6\x44\xa3\xd3\xa1\x3a\x59\xca\x45\x59\x26\x38\xc9\x4a\x49\x0c\x25\xa4\xc3\x12\x59\x9b\xc1\x04\xe0\x8f\xdc\xe8\x4d\xe0\x83\x10\xca\xa5\x35\xbb\xd8\x42\xd1\x92\x2d\xa8\x9a\x71\x18\xd4\xd3\xbf\x17\x53\xa0\x62\x99\x04\xfc\xfb\x2f\x2e\x3c\xc7\x19\x71\x11\x05\xb3\xe4\x69\x59\x9b\x61\x00\xc2\x61\xf2\xf1\xd6\x07\x36\x2b\xf2\xf7\xfe\x31\x17\x30\xf8\x48\x26\x5e\x10\x65\xf7\x91\x65\x35\xea\x1c\x8d\x34\x20\x24\x31\x02\x87\x2f\xbd\xb5\xd0\x6d\x20\x02\x98\x69\x80\x25\xf1\x34\x07\x96\xb4\x05\x95\x84\x60\x43\x22\x4e\x0e\x46\x71\x19\x1e\x02\x62\x76\xb7\xc6\xd5\x4a\x5f\xe4\xd2\xa0\x10\x52\xc5\x7a\x31\x08\xdc\x72\x81\xae\x40\x5d\x26\x03\xe2\x24\x84\x72\x18\x92\x95\x18\xee\x41\x06\x5d\x54\x52\x4e\x6e\x6a\x93\x01\xa4\x50\x89\x8d\x24\x79\x22\x84\x3b\x70\x37\x32\x61\x87\x86\xa6\xe3\x94\x44\xbf\xef\x65\xc4\x23\xc3\xa9\x5e\x3e\x8d\xf1\x28\xde\x1a\xac\x55\xbb\x3f\xe1\xce\xc0\x5a\xb7\x62\x9f\xb2\xaa\xa2\x2d\x12\x98\x70\x73\xc1\x43\xf1\xb0\x9d\x32\x52\x90\x18\x4d\xa1\x28\xcf\x31\xb1\x2c\x5e\x87\x44\x99\xb6\xa0\x5e\x28\xb5\x0e\x84\xa4\x99\x18\x68\xb6\xdf\x6c\xa9\x63\x6c\xe2\xba\xcd\x91\x10\xca\x10\x81\x80\x70\x81\x85\x9b\x89\x84\xa8\x66\xd2\xe8\xb5\xcd\x6a\xf4\x1a\x1e\x60\xb8\x5e\x47\xa0\xfe\x30\xcc\x14\x28\x15\x78\xe7\x3a\xf8\x28\xd1\xaf\xf7\xa9\x88\x76\x8d\xa2\x53\x08\x1b\x0b\xca\x77\x60\x84\x44\xab\xdc\x39\x5e\xa3\xcb\xd8\x9f\x8c\x2b\x65\xb6\x30\xa0\x04\x2a\xc0\x4b\x31\x78\x88\x61\xfe\x5d\x8b\xe6\x8b\xef\x13\xe9\xcd\x62\xfa\xc5\x44\x85\x4e\x02\x06\x1c\x3d\x82\x87\x14\x5d\x52\x62\x02\x9b\x93\x6e\xe0\x9c\xb9\x35\x48\x44\x00\xa1\x9d\x9c\xa4\xce\xc0\x12\x92\x74\xca\x81\x92\x1e\x61\xc4\x28\x32\xc9\x00\xf0\xca\x24\xa5\x51\xc9\xfd\x5e\x46\xf9\xa9\x92\x12\x06\x98\xa3\xe0\x3c\xad\xdf\x15\x94\x98\x30\xde\xdf\x36\x4b\x82\x3c\x5c\xa4\x48\x5a\xea\x13\x13\x3b\x87\x19\x9a\x61\x87\xf1\x89\x05\xf0\x66\x2e\x0b\x05\x49\xc4\xef\x6e\x77\xb2\x88\x5f\x5e\xeb\x8b\x05\xb6\x23\x04\xc5\x9f\x44\x48\x10\xdf\x73\xce\x83\x7f\xe6\x7c\xd5\x1c\x90\x86\x84\xc0\xad\x41\x80\x9a\x85\xc3\x60\x71\xfd\x69\x8b\x5b\x4b\xae\xd4\xb9\xa3\x00\xf5\x96\x44\x2c\x08\x0d\xb1\xba\x7b\x76\x68\xc7\xdd\x6c\x08\xc7\x3d\x05\x9a\x12\x27\xee\xad\x46\x3f\x32\xad\x46\x3f\x39\x96\x38\xf2\x11\x72\xe4\x01\x49\x76\x08\xdc\x78\x95\x5b\xf1\xd6\xc0\x4c\xba\xa2\x8c\xdc\x03\xa8\x7f\xa2\xc6\x91\x6e\x10\xd9\x3f\x59\x68\x28\xcb\x01\x95\xe1\x0d\x6b\x2b\xda\x32\x4e\x95\x47\x7b\x37\x9c\xf5\xcf\xcb\xa4\x6e\x54\xbb\x47\x67\x4d\x85\x7c\xd0\xf4\x19\x30\x87\xfb\xbe\x81\xbe\xae\x49\x75\x36\x6c\x62\xa0\xa3\x15\x7e\xb2\x14\xf5\x95\x9d\xb8\xb6\x42\xbd\x70\x63\x84\xd1\x2f\x59\x68\x5f\xd3\x7a\x61\x1f\x52\xb1\x30\x2c\x72\x9b\x30\x02\x94\xcf\xc8\x62\xc1\x54\x82\xf3\x4c\xa8\x1c\xe0\x5b\xd0\xd0\xa4\x2f\x53\x48\x0e\x21\x17\x26\x09\x85\x22\xa8\x56\x28\x06\x46\x42\xee\x52\xaa\xbc\x75\x4e\x86\x34\xe8\x52\x24\x02\xd8\x12\x36\x15\x0c\x3c\x64\x08\xdb\x0e\xd9\x64\xec\x8a\x56\x2d\xc7\x9c\x74\x86\x7d\xaf\x25\xe0\xe8\xa7\xc7\xe4\x4a\x60\x81\x14\x59\x98\x6f\x0b\x52\x13\x51\xc9\xd4\xf2\x3e\x89\x0f\x00\x68\xf0\x8b\xf4\xa8\xc2\x3c\x3c\x56\x0a\x98\xd1\x36\xe4\xda\x34\x0c\xb5\x88\x70\x32\xef\xc1\xc9\xb4\x24\xf2\xc2\x87\x8e\xd2\x33\xe5\x79\x07\x6a\xc7\x26\xb8\x89\x1c\xa2\x65\xac\x57\x6c\x8b\xb1\x84\x71\x38\xce\x41\x83\xbb\x6e\x72\x0d\x18\x86\xea\x17\xa1\x28\xf9\xcd\x94\x0c\x72\x0e\x2d\x0a\x9d\x21\x37\x99\x5d\x44\x66\x4d\x88\x4d\x27\x9c\x5e\xf0\x75\xc0\xa1\x32\x84\x83\xb5\x5d\xa6\x66\x49\x20\x88\x48\xc1\xc4\xf5\x8d\x7f\xf2\x3f\x6c\x6f\x9f\x4e\x41\x8a\x6e\xb6\xd4\x2f\xec\xb2\x53\x3c\xba\xb4\x77\x85\x65\xc2\xff\xb2\x12\x55\x5f\xb5\x2c\xc0\x92\x48\x4b\x02\x0b\x90\x6c\xa1\x16\x99\x07\x8d\x74\xee\x01\x12\x23\x29\x5b\x69\x59\x50\x75\x2b\x2a\xce\x8a\xc7\x28\x4f\x38\x19\x40\x9b\xcb\x53\xa0\xfa\x44\xa3\xfa\xa3\x6e\x38\x94\xe1\x4f\x27\x45\x84\xf3\xbe\x88\x11\xee\x46\x0a\xb8\x2e\x0a\xb9\x16\xe8\xa1\x82\xea\x03\x8d\x1d\x8d\xd3\x98\x33\x35\xdf\xb6\x09\x87\xbd\x58\xe6\xe6\x78\x28\x06\xda\x88\xe0\xc0\x60\x5e\x53\x28\x2d\x8f\x18\x12\xc7\x66\x51\x7c\x5b\xa8\x00\xf8\x7b\x4e\xfc\x75\x33\x26\x82\xa7\x65\x58\xd6\x49\x05\xea\xb0\x1f\x62\x7d\x94\x2f\x90\x3a\x7c\x77\xe5\xfa\x09\xe1\xa4\xa7\x02\x44\xe4\x07\xdb\x3a\xcc\x5e\xff\xbc\x22\xbd\x3d\x01\x08\xc5\xe7\x01\xfa\xd4\x39\x46\x08\xba\x4f\x12\xaa\xb3\x10\x11\xc7\xfc\x75\x80\x09\xe7\x04\x69\x55\xc9\xa4\xd4\xce\x43\xa1\xe9\xed\x44\x0c\x50\x87\x1e\x95\x43\xf6\x58\xf8\x54\x61\x0a\x51\x85\xf3\x78\x0b\xe6\x90\xd0\x07\x34\xef\xa4\x3e\x7f\xb8\x03\x02\x85\x9a\xdf\xe2\xa6\xb7\x0c\x0d\x62\xaf\x6c\xea\xf5\xe5\xae\x94\x4f\x02\x9c\x4f\xf0\xa5\xdb\xf3\x32\xce\x53\x56\x2b\x54\x6b\x5c\x6a\x52\xd4\xc0\x13\x81\x82\x1f\xaf\x3c\x3f\xcf\x07\xaa\x6a\xe7\xa5\x5e\xaa\xda\x63\xb7\xe4\x22\x23\xa8\x81\xbf\xe4\x93\x76\x62\x48\x5d\x32\x35\x71\xf5\x10\x4e\x95\x74\xdb\xc6\xf8\xfe\x6c\x44\xcb\x79\xd4\x74\x64\xcb\xdc\x47\xec\x81\x26\x81\x89\xc3\x31\x2a\x41\x4a\x3b\xec\xa4\xd0\x31\x94\xd8\x44\xc8\x13\xfe\x36\x04\xbc\x96\x44\x53\x4c\x46\x30\x4d\x01\x44\x4b\xc6\x7d\x4e\x15\xe5\xd5\xdb\xa4\x68\x04\x47\x16\x3f\xe8\x05\x17\x29\x69\x9d\x5a\x48\x07\xc9\x67\x80\x93\xbc\xe9\xb3\x46\x82\x46\x24\x53\xae\x39\x96\x24\x1e\x3d\x11\x49\x2f\xea\x51\xdf\xb1\x8d\xd0\xd6\x93\x5f\x61\x1b\xd7\x4e\x18\x4d\x08\xa0\xfd\x93\x24\x04\xcb\x7a\x9b\x9d\x80\x78\x21\xa3\xbe\xb5\xa7\x30\xc3\x19\x60\x38\x75\xbd\x1c\x86\x74\xa4\x92\xc0\x41\xcc\xb1\x56\xc2\x34\x6d\xc6\xf2\x0f\x5f\x83\x7e\x58\xac\x42\x24\x60\x0c\xae\x14\xc6\xa2\xae\x3b\x22\xaf\x1c\x50\x07\x61\x24\x53\xbc\x86\x2e\x5c\xca\xf2\x27\x93\x80\x19\xca\x6b\x50\xf6\xec\xe4\x58\x25\x98\x67\xc8\xa9\xa6\xfd\x9c\x8a\xa2\xc1\x7e\x8f\x7c\xe1\x44\x20\x1a\xa9\x7d\xaa\xee\x78\x03\x86\x20\x7a\xfe\x2a\x49\xbc\x10\x1f\x78\x22\x7e\x53\xc7\xfe\x8e\x74\x71\x9a\x50\x98\x3a\xce\x15\xcf\x61\x7b\xc7\x42\x03\x63\xf7\xf8\x4d\xba\xce\xbe\x1d\xc2\xf3\xa0\x43\x08\xfe\x10\x9a\xc9\x02\x3b\x84\x20\x19\xc0\x40\x98\x51\xf2\x47\xe0\x4e\x29\xcc\x20\xb9\x49\xf3\x49\xfd\xbb\xa4\xd3\x78\x4f\xe1\x6d\xc1\xb9\x77\x63\x88\xf7\x8d\x61\x3f\x09\xf6\x7c\xa9\x26\x51\x0c\x1c\x87\x2c\x80\x3f\xc2\x77\x96\x26\x8f\x60\x3c\x68\xd6\x54\x71\x81\xa7\x0f\x19\x9c\x0d\xe8\xb6\x41\xc2\x83\x64\x16\x13\xfc\x08\x1a\x2a\x0b\xdb\x3e\x73\x30\x5f\x47\xb8\x10\x36\x26\x03\xb5\x9d\x2d\x06\xb0\x9e\x78\x19\xc3\xb6\x03\x76\x05\x19\xa4\x17\x01\x12\x52\xed\x58\xf1\x33\x85\x88\x10\x80\x4d\xe1\x62\xb2\x84\x26\x30\xae\xf7\x76\x9d\x6b\x17\x93\x18\x45\xf0\x7b\x62\xba\x03\x1b\x5c\x5b\x08\xac\xd2\x57\xab\x14\x23\xb8\xf6\xce\x39\xdd\xb3\xa4\xa2\x10\x13\xbb\x38\x3a\x37\x27\xf4\x20\xd4\x14\x1f\x9d\x80\xbe\x4b\x8f\xaf\xc4\xca\x0e\xa4\x49\x82\xda\xba\x06\x59\x38\x5f\x09\xcc\xbb\xfb\x72\x33\x88\x05\xb0\x95\x9f\xe4\x53\x5e\xdc\x8c\xe8\xcc\x80\x84\x41\xd5\x11\x5d\x6c\xce\xa4\xd2\xd8\x2f\xe2\x73\x47\xb3\xd4\x56\x02\xbd\x8c\x03\x20\x63\x3e\xad\x14\x01\xa9\xed\xd7\x27\xa5\x00\x61\xac\x26\x24\x8d\xe6\x7d\xa7\x75\x00\x09\xa4\x80\x61\xac\x21\x66\x6d\x1b\x55\xdb\xd5\x88\x96\x17\x2c\x3c\x2a\xb7\xea\x30\xb6\x90\x40\x36\x04\xb0\xb9\x23\x78\x59\xcf\x80\x97\x59\xc8\x23\x84\x0c\x85\x44\x4d\xa5\x9c\xe4\x8d\x7f\x5e\xa4\x70\x81\x64\xd1\x4f\x8b\xb7\xf7\x12\x04\x30\x9c\xa1\xa6\x22\x84\x93\x51\x4f\x42\x18\x4d\x72\x64\x65\x8f\x58\x26\x69\x8f\xe3\xf3\x8b\x03\xaf\x8f\x89\xbc\x10\xef\x9b\x41\xd1\x9d\x1b\x64\x96\xc9\x62\xe5\x23\x31\x8a\x18\xbb\x33\x27\x10\xb2\x8d\x47\xd2\x80\x2f\x32\x49\x1e\x71\x6f\x65\x59\x11\x01\x37\x73\x87\x64\x1d\x67\x21\x01\x18\x89\x55\xf3\x1e\x1f\x01\x27\xbf\x2c\xda\x30\xd6\x97\xe2\xe0\x04\x35\x47\x00\x21\xdb\x61\xc2\x39\xd3\xb8\x89\x9e\xe4\x44\xe8\xb2\xdc\xca\x0b\x07\x0f\x44\x9d\x40\x75\xfa\xe4\x4f\x51\x2c\xc5\x4b\xf1\x09\x81\x84\x7e\x6c\x97\x0a\x43\x70\x49\x70\xb6\x09\x55\x98\xba\x5e\xcb\xcf\x1a\x80\x7e\x8c\x3b\x12\xe1\x15\xe5\x29\x19\xe4\xb7\xc0\x22\xad\x80\xa5\x0c\x57\x8a\x2a\xcc\x04\x38\xcb\xcf\x1c\x4e\xff\x47\x2c\x0b\xf9\x9f\x67\x9c\xec\x40\xcc\x2d\xc0\x08\x53\x6d\x1a\xc7\x01\xbb\x9c\xea\xf8\xcc\x2d\x6b\x14\x6c\xd7\xc3\x3a\xb5\xda\x19\x84\x00\x97\x26\x12\x86\x79\x22\x6b\x2f\x3c\x62\x0b\xf8\x78\x6e\x51\xd2\x33\xb4\xde\x2f\x09\x96\x18\x52\x59\xb0\x9c\x98\xf9\xe2\xd0\x4c\x1b\x65\x32\x31\xb6\x2f\xc6\x24\x7f\x31\xc0\xce\x25\x19\x7d\x80\xe9\x2e\xb2\x9f\x8c\x99\xf5\xc8\x2e\x60\x50\x5f\x64\x33\x28\x8e\xcc\x44\x81\x66\x72\x70\xce\x9e\xc0\x34\x22\x7b\x65\x27\x03\x0e\x93\x07\x3d\x9a\x5a\x0c\x92\x5d\x45\x5d\x6e\x85\xc0\xde\x85\x61\x67\xff\x9e\x2e\xb5\xd8\xb1\xb5\x45\x20\xa6\x32\xb3\x7d\x44\x71\x09\x80\xa4\xe2\x70\x48\xf0\x8b\x59\x68\xee\xc8\x3e\x24\xea\x90\x15\xf8\xf6\x0a\xa4\x84\xad\x3c\xf4\xa7\xf2\xf6\x11\xe7\xd6\x00\xfa\x10\x13\x8c\x84\xf2\x97\xb5\x59\xaa\x6c\x4c\x0c\x34\x8c\x00\xe3\x7d\x02\x53\x37\x96\x61\x66\x19\x93\xa6\x83\x0d\x87\xf6\xa5\x27\xc9\x7f\x7c\xa7\x95\x70\x54\x25\xdd\x08\x3b\x63\x6f\x7d\x66\xe5\xfb\x7b\x9f\xd1\x45\x1b\xca\x26\x2a\xa9\x64\x4d\x86\xd2\x6c\x61\x67\xc6\x31\x14\x23\xf8\x3a\x27\x09\x02\x10\xd5\x3a\x9f\x08\x7f\x8e\x30\x18\x98\x1c\xfe\x00\xc7\xb6\x94\x83\x6c\x65\x15\xf3\x09\x05\x76\x89\xe0\x92\x73\xa4\x59\xea\x17\xd6\x61\x18\x0c\xfe\xc3\x80\x21\x91\x11\xe4\x58\xbc\x09\xc2\x2e\x0e\x24\x94\x22\x60\x72\x51\x08\x29\x5c\x98\x46\x07\x6c\x40\x00\xc3\x11\x82\x2c\x0e\x73\x22\xae\x13\xb7\xf8\x4e\x80\xaf\xc6\x48\x80\xf8\x16\x48\xff\x15\x07\x3b\xb6\xe4\x22\x02\xaa\x21\xfc\x9e\x0f\xef\xb7\x99\xd3\x43\xe2\x38\x44\x82\x30\x92\x21\x16\x92\x00\x18\x1b\x02\x38\x1f\x88\xc1\xee\xc2\x20\x7b\x80\x6c\xbd\xc0\x31\x20\x36\x3c\xb8\x58\x26\xa0\xac\xbe\xc8\x94\xee\xcc\xf2\x95\x04\xd5\x9a\xc7\x69\xa8\xc1\x34\x52\x70\x53\xde\x76\x96\xcd\xfb\x00\x3e\x08\xa8\x50\xf9\x19\x0b\xb2\xfd\x60\xe7\xb0\xa6\xad\x23\x84\x60\x16\x02\x58\x0b\x82\x35\xc5\x21\xc2\x30\x0b\x01\x55\x05\xc1\x59\x81\x91\x94\x52\x70\x4e\xf3\xbb\x1e\x9b\x49\x81\xc9\x89\x83\xb0\x2b\x15\x56\xce\x91\x12\x86\x78\x53\x72\x4f\x5a\x26\xe5\x63\x06\x02\x99\x64\xc4\xd5\xc0\xa7\x12\x62\xc7\x14\xc0\x3d\xc0\xdb\x8b\x05\xad\x11\x3d\x81\xe4\x5f\x93\x18\x46\x65\x3f\xc6\x6b\x57\x9e\xf6\x74\x23\x58\xc8\x11\x57\x2e\x74\x33\x04\xb3\x86\x95\xf3\x39\x89\x2c\xc5\xbb\xe8\x10\x22\x0e\x21\xb1\xbc\x4c\xd0\x01\x2c\x0c\x6c\x4b\xdd\xbb\x87\x37\xe8\x0a\xba\x96\x37\xa9\x96\x95\xb1\x62\xa5\xf8\xe2\x8a\xde\x1f\x64\x0f\x6d\xd2\x0d\xc7\x85\x7e\x00\x74\xe6\xa4\xab\xb0\x5a\x66\x81\x60\x85\x3a\xfe\x5f\x4d\x6b\xb0\x6d\x3c\x27\x27\xb7\x0d\x8d\x10\x91\x7d\x92\x92\x54\x17\x40\x29\xc2\x2a\x2a\x66\x5b\x81\x0f\x9a\x87\x7e\xa1\x2d\x21\x36\x2f\xcc\xd4\x3b\xf5\x56\x8b\x29\x88\x36\x0b\x70\x64\xf4\x72\x14\x42\x01\x37\x1d\xe8\x6c\xf9\xf9\x0d\xa1\x0e\x1a\x09\xb1\x1e\xe3\x8d\xd6\x80\x1b\x08\x04\x4b\xc1\x1b\x70\x7e\x53\x49\x05\x78\x1c\xe7\xe5\x3f\x06\xff\x5c\xb8\x3c\x46\x73\x3f\x24\xac\x11\xd5\x12\x3a\xb4\x28\xc8\x18\xb2\xf2\xb1\x0e\x3a\x45\x8f\xd6\x62\xbc\x2a\x32\x72\x02\x81\x1c\x2f\x27\xb8\x21\x40\x24\x80\x71\x12\x48\x77\x36\xde\xe8\x72\x02\xc3\xcf\xc1\xaa\xb5\x39\xc0\x03\xe0\x29\x5d\x82\xe4\xdc\xcc\x11\xa1\x17\x58\x7a\x2b\x03\x5c\xa1\x35\x40\x23\x67\x64\xea\x34\x11\x6c\x4b\x89\x91\x1c\x59\xd2\x36\x52\x17\xc7\x88\x91\x1c\x59\x27\x0d\x2f\x0b\x0b\xb1\x9f\x1c\x5a\x5c\xb7\x38\x43\x33\x92\x02\xc9\x83\x66\xf7\xe3\x89\x12\x1b\x5c\x56\xf4\x97\xe9\x02\x20\x40\xc2\xc0\x5f\x35\x31\x6c\x71\x5c\x5b\x8f\x25\x51\xb5\x1f\xe3\x08\xd0\xf0\x38\xdb\x00\xb5\xf2\x07\x68\x9e\xaf\xff\xf8\xc2\x8e\x60\xbd\x92\x8f\x95\x01\x4a\x68\x83\x8b\xd3\x06\xa9\xc2\x5a\x2c\x0c\x1a\x4b\xe1\x4b\xd4\x07\xcd\x50\x18\x95\x83\x4d\x83\x49\x35\x1e\x49\x14\x40\x64\x1c\x68\x21\xc5\x48\x60\x58\xe3\x62\x21\xc5\xde\x48\x5e\x8b\xd0\x0a\x95\x40\xa0\xff\xc2\x02\x45\x15\x59\x71\x0b\x50\xe3\x8a\x1e\x83\x0c\xa2\x24\x88\xa9\x22\x24\x16\x8a\x99\x6a\x0b\x40\x3c\x46\x8c\x5b\x44\x44\x89\x3a\x38\x04\xad\x93\x44\x0b\x0c\x0d\x47\xf5\xa3\x2c\x29\x47\xcc\x81\x90\x6f\x3a\x64\xa8\x0b\xcb\x41\xf7\x2b\x0d\x48\xbb\x90\x32\x24\x02\x99\x5a\xf1\xac\x48\xd0\xd4\x94\x1a\xf0\x4b\xa3\x28\x08\x3f\x28\x1e\x20\x5d\xd6\xdd\xa8\x44\xf9\x0a\x94\x3b\xec\xcb\x13\xd7\x82\x5b\x48\x82\xfe\x93\x00\x21\x41\xa5\x28\x06\x9b\x11\x40\xff\x82\x92\x8c\x5a\x82\x85\xb6\x22\x84\x16\x08\x74\x80\xa6\xdf\x00\x4a\x81\x34\x6f\x02\x68\xda\xa3\x1c\x47\x80\x1e\x10\x26\xaa\xc0\x1a\x4b\x4d\x8f\x5b\x60\x84\x3c\x35\x0c\x00\x34\x2a\x3b\x90\xd8\xcf\x92\x4f\xda\xb6\x2a\x2d\x3d\xd0\x04\x46\x82\x33\xc5\x03\x25\x58\x88\x44\xbe\xa3\x93\x44\x37\x68\x6d\x7d\x86\xa4\x41\x2c\xe6\x10\x07\x32\xaa\xdf\x8c\xe0\x1a\x32\xa2\xd6\x53\x07\xf9\x3a\x38\x28\x8f\xa8\x50\x11\x9e\x50\x89\xe8\x2a\x16\x82\x89\xa4\xd9\x2a\x98\xf7\x51\x80\x4a\x78\x1c\x22\x80\x8e\x81\x21\x1b\x71\x7d\x18\x6f\x8c\xea\x12\x91\xed\x64\xd1\x82\x4c\xcc\x8c\x8e\xb4\x8d\x51\xed\x96\x71\x8c\x43\xcf\xd3\x32\xbf\x89\xde\x3a\x11\x48\x64\x64\xb6\xdf\x51\xc0\xc0\x97\x12\x30\x2a\x02\x00\x38\x37\x90\x90\x35\x23\x25\xfc\x60\xa2\x79\x22\x70\x3c\xb3\x2a\x6d\x6e\xb3\x6a\xac\xec\x9a\x24\x8d\x6a\x33\x8d\x83\x0a\x5a\xad\xd5\x3e\xcd\xb4\x34\x7c\x52\xc2\xac\xe4\x09\x46\xe8\x30\x04\xa1\x02\x44\x96\x00\x8f\xcc\x17\x7e\x16\x35\x3a\x84\x45\xde\xfc\x1b\xd8\x37\xe1\x63\x33\xa8\x8c\x4e\xf9\xae\x89\xa1\xa3\x18\xa2\x32\x53\xd5\x76\x2e\x38\xbb\x02\x26\xf6\x20\x1f\x72\xbc\xb6\xcd\x01\x72\x92\xdb\xb4\xf1\xc0\x29\xa7\x3c\xfb\x24\x5c\xc8\xda\x30\x09\xbb\x08\xc3\xa6\x8a\xa3\x31\x11\x7e\xd9\x3c\x61\xec\x1a\xcb\x04\x6d\x53\x7d\xad\x28\xd7\x7a\xa0\xd4\x41\xf0\xeb\x07\xa8\x96\x0a\x75\x55\x94\x52\x49\xeb\x8f\xe9\x11\x81\x24\x63\x8f\x1a\x26\x6f\xd7\xb0\x7c\x88\x41\x45\xfc\x8b\xbe\x3a\x57\x20\x5f\x8c\x79\x8f\x05\xcc\x1c\xd7\x1c\x1c\x71\x5f\x12\x97\x14\xec\xdc\x9e\x36\xa4\x94\x7c\x53\xea\xcf\x3a\x52\x62\x2e\xab\x66\x56\x28\x69\x85\x0d\x0b\x07\xfa\xc2\x7f\x98\x3c\x58\x9f\x85\x06\xf7\xf4\x95\xcc\xb7\x71\x6b\xb7\xa5\x36\x94\x75\x9c\x9c\x38\xa8\xf5\x34\x55\xac\x29\x99\xea\x29\xd6\x46\x7a\x7b\x8b\x45\x17\x87\x10\x02\x1c\xfc\xc4\x9b\x9e\xe6\xa5\xe4\xbc\xa2\x97\x8f\xf2\xb3\xc4\x94\x1a\x8f\xb9\x91\xb1\x0b\xfc\x5d\x00\x00\x45\x9f\x60\xc8\x00\x2a\xb0\xe7\x64\xee\x1d\xea\x34\x72\x9e\xbf\x00\x2c\x1c\x22\xd6\xea\x41\x6c\x99\xaa\x8f\x22\xaa\x80\x39\xc0\x9a\x44\x4e\xf0\xc2\x35\xde\xce\x30\x99\x49\x92\x09\x31\xd7\x0b\xb6\x31\xa6\x20\xf6\x5b\x8d\x2a\xd5\xcd\x56\xa7\xa9\xca\xd2\x7c\x3d\x4c\xa7\x28\xf0\x97\xe7\x59\x7e\x40\x75\x83\x3a\xd1\x8e\xbc\x1e\x89\x7f\x88\x12\x11\x24\x64\x1a\x5c\xfa\x92\x9d\x71\xe8\x08\xc6\x9e\x01\x4f\xee\x2c\x84\xe1\x83\x29\xa8\xe6\x44\x38\xb2\x4e\xf5\xf7\xe8\x8b\x2d\x83\xbc\x9e\x6a\x15\x46\x40\xa3\x2f\x83\x81\x80\xc1\x4c\x5d\x46\x1d\xae\x69\xda\x73\x29\x94\x89\xe9\x0c\x0d\x0e\x49\x79\x3f\x4b\x74\x26\x41\x21\xc7\xe0\x61\x80\xa0\x98\x1f\x99\x87\xa7\xd1\xc9\x5a\x35\x3f\x8b\x18\xd5\x83\x35\xe8\x59\x84\x2a\x33\x1e\x8b\x54\x22\xf5\x14\x50\xa1\x04\x4b\x18\x94\xc5\x02\x01\x12\xcf\x9c\x2d\x31\x45\x25\xaf\xe7\x1c\x29\x95\x58\x76\x34\x38\x11\xa6\xf1\x48\x43\x81\xca\x3e\x06\x35\x14\x03\x0d\x81\x4a\x70\x52\x0e\x83\xe6\x00\x75\x08\xc0\xcf\xe1\xb6\x1c\x6e\x9f\x7e\xe7\x93\xeb\xdc\xff\x23\x14\x60\x90\xc3\x40\x00\x28\x00\xe1\x40\xbb\xee\x28\x80\x6c\x20\x40\x80\x34\x51\xcd\xa4\xc7\x6d\x68\xa2\x80\x54\x09\x39\x10\xa3\x1b\x58\x45\x8a\x25\x63\xbb\x8a\x20\xd4\xb6\x0f\x67\x08\x3a\x61\x06\x9f\xa0\xb3\xc5\xa8\x62\x04\x01\x05\x8b\x64\x01\x9a\x20\x34\x18\x83\x29\xf4\x8c\x22\xdd\xb2\xb3\x80\x23\xa0\xe3\x73\x39\xd3\x87\x21\xab\x03\x81\x40\x01\x7a\x44\xff\x27\x03\x0e\x35\x58\x07\x33\x98\x5b\x69\xc0\x16\x0f\xca\xef\x30\x28\x30\xc4\xe5\x10\xc7\xcf\x22\x65\x03\x76\xb7\x41\xbc\xd3\xa1\x59\x8b\xe3\x27\xf5\x38\xe2\x1b\xbb\x85\x05\x71\x1b\xb8\x11\xb3\xe6\xdf\x22\x61\x49\xef\xf8\xa0\xdf\x98\x41\xf1\x03\x8f\x7a\x5c\x29\x8d\x6f\xda\xca\x0a\x8b\x1e\xc5\x49\xbb\x24\x0b\xa1\x4c\x43\x37\xa8\x8d\xd4\xc8\x5b\xd3\x93\x3a\xc1\x50\x86\x32\x28\x45\xae\xeb\x44\x74\x10\x8e\xb3\x08\x83\x1b\x8c\x49\x7d\x4c\x15\xb3\x0b\x0e\xfe\xb6\x8e\x91\x83\x56\x28\x1f\xc2\x03\xc6\xa1\x01\x81\x70\x19\x20\x5f\x60\xee\xdd\x2b\x08\xfb\xdd\xd9\xd2\x3c\x7e\xfa\x92\x5f\xb8\xf7\x7d\x12\xae\x1f\xb3\x68\xd5\xa3\x6a\x1f\xb4\x63\x10\x57\x82\x08\x65\x9b\x59\x34\x66\x01\x7f\xca\x5f\x02\x48\x15\xc0\xbb\xed\x92\x4f\x53\x39\xa6\x8c\x82\xb4\x02\x22\x88\x03\x56\x23\xce\x7f\xf2\x09\xf6\x6c\xd8\x25\xc0\x94\x01\x60\x28\xb1\xb6\x29\x16\xc0\x98\xc8\x40\x1d\xf6\xd3\x26\x41\x98\x4b\xb5\x45\x70\xe5\x56\x78\x5a\x60\x12\xfb\x4d\xa4\xdf\xd0\x5d\x92\x34\x43\xba\xdd\xf8\xeb\x49\xc3\x80\xae\x1c\x0d\x72\xb0\x12\xb0\x11\x32\x7c\xd9\x9b\x5b\x61\xa3\x6c\x0b\xd9\x56\x76\x5b\xb5\xd0\x42\xf1\x31\x53\xcd\x92\xee\x07\x7a\xd5\x3a\xb6\xf4\xda\xa0\x31\x78\x88\x54\x22\x02\x0f\xd3\x0c\x65\x81\xd8\xb4\xac\xb9\x28\x5f\xca\x17\xa1\xc2\x71\xc2\xbb\x23\x6b\x31\x66\xe4\x29\xd7\x64\x57\xff\xa2\x03\x59\x1a\x0b\x7e\x2c\x03\x18\xea\x76\x2d\x1d\x7a\xfc\x00\x07\x3c\xd3\x62\x73\x2d\x64\xa6\xb3\xd1\xd4\x52\x51\xc7\x5d\xe2\xb8\xc6\xba\xb3\xd7\xd6\x42\x0f\x98\x82\xc2\x1b\x18\x29\x3c\x11\xf6\xc5\x98\xcb\x0f\xd1\x43\x4c\x92\x6e\x8d\xcd\x6f\xdb\x3f\x8c\xa1\xa2\xf4\xba\xf8\x1c\x2d\xec\x18\xdc\xf8\xbd\x42\xfc\x0c\x01\x8b\xd1\xdb\xc0\x06\x3f\xf8\xa8\x68\x92\x24\x7f\x06\x50\xd8\x97\xc4\x37\x83\xae\xec\x6c\xec\xd8\x38\x3b\x1a\x05\x92\xf6\xc2\x52\x7a\xdb\x29\x8b\x93\x15\xc8\xf6\xdc\x57\x6e\x3c\xb3\x20\x76\x65\x4a\xfa\x2a\x5b\xd3\x0b\x6d\x98\xce\xb1\x40\x57\x9b\x16\x63\x95\xa4\x5e\xd6\x5d\x1a\x2a\x31\xae\x15\x61\x26\x26\x68\xa3\xb1\x72\x1a\xe6\xdd\x7e\xa9\x2e\x56\xb1\x55\x41\x6b\x0a\x05\x55\xba\x2a\x51\x3b\xca\xb7\x3e\xd2\x2c\x47\x78\xbf\xe2\x11\xe9\x54\xaf\xdc\x8d\x73\xcd\x08\x3c\xb5\xba\x75\xaf\x86\x3b\x63\xb5\x44\xe9\x36\x4e\xb1\x70\xfa\x40\x85\x68\x6a\x7c\x35\x82\x6c\xde\x59\x3a\x04\xaf\x47\x34\xea\x70\x53\xc1\x52\x6c\xd2\x7d\x13\xa7\xf4\x3a\x69\x95\xec\xfa\x41\x5c\x66\xf1\x25\x5c\xdd\x12\x65\x0c\x3e\x84\xc1\x60\x8c\x8d\xde\xe8\x44\x44\x11\x90\x30\xd5\xb0\x53\x9d\x2a\xe8\x59\x0d\xe5\xec\x8e\x86\x95\xe8\xb7\x0c\x6e\xf0\xd9\xc2\x69\x8b\x6a\xa5\xb9\xe8\x14\x80\xb1\x0c\x64\x85\xc9\x26\xf8\xad\x8b\x00\xf2\x1d\xf7\x14\xd4\x4a\xf9\xd2\xc3\x9a\xa4\x19\x15\xc2\xd5\x0b\xc2\x88\xd4\xb4\x60\x29\xf4\x8f\xe9\x16\xfc\x10\x00\x70\xcb\x04\xb5\x00\x4f\xb6\x79\x90\x6f\xa1\xf7\xba\x1f\x85\x6f\x42\x3a\x55\xcd\x69\x73\xcb\x91\x96\x21\x16\xcd\x6f\x1f\x4f\x8d\xa1\x21\x34\x71\xd1\x15\x99\x87\x70\xc5\xe7\x0a\x76\x32\x03\xe3\x51\xec\xf2\x00\x0d\xee\xf9\xcc\x4c\x48\x98\x18\x70\x69\x0f\xca\x20\x2b\x4c\xc4\x51\x4f\x49\x0e\x98\x60\x6d\x01\x72\xbf\x15\xe3\x25\x0e\xd8\xd4\xfa\xbb\x95\x5e\xdd\x88\xf4\x7c\x31\x0b\x79\x13\x96\x38\x6f\x50\x4b\xe9\x19\x80\x24\x51\x75\xc3\x21\x69\x1b\x9d\x53\xc9\x1c\x84\x45\xca\x54\x3f\x0a\x40\x22\x73\x30\x9c\x92\x75\xef\xdd\xe9\x39\x2d\x29\xe0\x29\xb2\x0e\x29\x96\x6c\x7a\xe5\x93\x92\x16\x83\xe6\x1e\x8f\x10\xa1\x7d\x47\xf1\xc3\x6f\x2a\x1c\x35\xe6\x69\x39\xc5\x1e\x01\x82\x29\xc0\xc8\xf0\x42\x37\xc4\x3e\x07\xcd\xf1\x4e\x5b\x97\x57\x7c\x2a\xd0\x9a\xdc\xf9\xac\xe8\x89\x75\x5b\x21\xe9\xd2\x6e\x6c\x01\x03\xbd\x6d\xd0\xe6\x81\x66\x68\x26\x1c\x0a\x90\xa0\x15\x33\x6a\x43\x74\x62\x99\x82\x2f\xcb\xb8\x60\x18\x37\x8d\xc1\x81\xe7\xb1\x01\x9a\x4e\xd0\xb3\xe8\xa4\x84\x6d\xb0\x94\xbb\x62\x81\xbc\x11\x32\x61\x79\x32\x47\x41\xd6\xec\xa2\x35\xdc\x78\x2b\xd0\x37\x07\x0f\x35\x98\x57\x1d\xc8\x6c\x24\x29\xe0\xa6\xed\x0d\x93\xce\x57\xa0\xf6\xe7\xd0\x0d\xcf\x07\xed\xdd\x72\x90\xa7\x7d\x8e\x08\x7e\xc5\x1f\x03\x4e\xe8\x4e\xfe\x57\x23\x0a\x4c\x1e\xe5\x4d\x4f\x0f\xb1\x52\x0b\xb0\x8e\x99\xc9\x64\x72\xf0\xb8\x22\x53\x3b\x24\x09\xcf\x76\x82\xd9\x71\x93\x35\xb1\x48\x8e\x93\xea\x42\x04\x79\xfc\x35\x48\xd0\x6e\x1e\xde\x6b\x1a\x55\xad\x2a\x00\x6c\x61\x63\x76\x60\x79\xf0\xa4\x49\x2f\xea\x3a\xb5\x93\x66\x2c\x40\xce\x9d\x04\x76\x4c\x84\xe3\xaa\x91\x68\x70\x39\x3e\x44\x0b\x5e\xd4\x07\x41\xb9\x42\x47\x27\x1a\x36\x32\x36\x9c\x23\xc5\xca\xf7\x44\x0b\x84\xda\x45\x12\x1b\x16\x56\x60\x15\xb5\x26\x9b\xcd\x07\xc2\x1c\x74\x49\x95\xb3\x3a\x35\x77\x2e\xd3\x75\x21\xd3\xc4\x05\xf1\xee\xf1\x9f\x74\xc4\x62\xd7\x27\x67\xba\x99\xb3\xfb\xbf\x0e\x3c\x64\x8c\xc5\xdc\x0e\xc8\x00\xa1\xc2\x51\xc6\xc4\x8b\xc1\xc5\x16\xe1\x88\xa9\x75\xc5\x45\x9b\xd9\x70\x53\x65\x68\x61\xd0\x5d\x71\x62\xbb\x28\x90\x43\x96\x70\x13\x00\xa1\x42\x73\x42\x96\xc0\xe1\x5a\x7b\x89\x51\x89\x60\x08\xd8\xc5\xe7\x05\xbc\xb1\x04\x8b\xe9\x84\xb1\x53\x28\x02\x47\x0a\x35\x8c\x62\x09\xc4\x18\x5e\x78\x50\x63\x20\x56\x68\x04\x27\xf0\x84\x96\x59\x9f\xde\xa0\xe3\xeb\xe1\x25\x84\x77\x91\x40\xbf\x17\x08\xa4\x44\xae\x7e\x9c\x7b\xcc\xe3\x84\x65\xa2\xeb\xe8\x1f\x65\xb2\xc8\xc8\x46\xda\x29\x91\x16\x8a\x4c\x4e\xeb\x67\x47\x11\x04\x25\x70\x08\x58\x9d\xd7\xc7\xfc\xe4\xf8\x81\x76\xcc\x53\x0b\xd8\x82\x8b\x71\x51\x31\x2e\x5f\x16\x27\x44\x17\xe4\xef\x9c\xcc\x61\x7c\x9c\x08\x5d\xd3\xde\x4e\x4c\x88\xc4\x43\xce\x4e\x0c\x8c\x3b\x34\x2e\x4e\xaa\x8a\x5b\x35\x2e\x4e\xf8\xce\x59\xa7\x78\x38\x26\x36\x07\x91\xd3\xe1\xf3\x78\xb0\xb2\x05\xf0\x70\xcc\x60\x98\x91\xfc\x1c\x11\x88\xc0\x9f\x3e\x0e\x00\x46\x40\x4f\xa7\xc1\xc7\x95\xcc\x44\x09\x7c\x09\xa8\x9c\xe3\x47\x10\xb4\x43\xf1\x26\x3d\xd6\x17\x71\x11\x8b\xb5\xc3\x39\xa8\x97\x9e\x11\x69\x74\xbe\x30\x38\xed\xc0\xf8\xbc\x93\x8e\xf1\xf2\xd1\x2c\x48\x0c\x7e\xcb\x45\x07\x61\xa7\xbe\x01\x22\xe7\x47\xce\xc3\xec\x2b\x0b\xd7\x4a\x50\xa3\x2d\x22\x84\x9a\x1c\xd7\x6d\xa1\x18\x50\x35\x56\x03\xc1\x14\x40\x4c\x6c\xf8\x5a\xba\x14\x50\xd4\x76\x89\x81\x20\x6a\x03\x98\x04\xef\x70\x20\x8c\xbd\x5d\x15\x05\x84\xc4\xe0\x91\x25\x22\x49\x44\x4a\x98\x22\x2a\x0d\x29\xe2\x62\xc5\x72\x13\x07\xe1\x31\x78\x8e\xe0\x9d\x28\xb2\x5d\x67\x44\xb8\x78\x81\x05\x84\x47\xd6\x04\x56\xaa\x08\x0c\xaf\x0b\x93\x2f\xcb\x29\xc4\x5f\x9d\xaa\x3c\xae\x66\x83\xef\x9b\x04\x67\xb3\x40\x86\x81\x28\x40\xab\x57\xa8\x82\x20\x7f\x5a\x11\x88\x73\x14\x00\xe5\xda\x2f\x00\x69\x9a\xc8\xfa\x02\x3f\x02\x3b\x80\x4f\x2d\x5b\x33\x48\xce\xd2\x17\x5a\x4d\xd1\x22\x05\x8b\x77\xd3\x43\xd4\xac\x3e\x1a\xa6\xc4\x82\x48\x73\xb1\xc7\x54\x8b\x7a\x16\x5e\x32\x26\xa2\x83\xd8\xa8\xe9\x10\x73\x06\xda\xb3\x11\x80\xe0\xd8\x72\xad\x90\xb5\x11\x5f\x1b\xa9\x02\xc2\x8b\xe3\x15\x3c\x20\xce\x96\x20\xbb\x2e\x34\x36\x56\x44\x3a\x27\x1a\x96\x89\x83\x85\x7d\xd1\x10\x9a\x4e\x1e\x8e\x37\x82\x84\x31\xd9\xa2\xfc\x8a\x0c\xab\x60\x8a\x78\xc9\xf3\x42\x83\x2f\x54\x6c\x37\x12\x86\x3d\xdf\x15\x10\x03\x8c\x44\x46\xb4\x4f\x66\x6d\xbc\x87\xd8\x21\xc0\x8f\x04\x54\x0f\xc7\x01\x4e\x9c\x40\x99\x15\xf0\x98\x60\x2c\x39\xef\x5b\x48\x2e\xa0\x15\x62\x4e\x6d\xd4\x8c\xb0\xae\x5e\x00\x16\x82\xda\x11\xa5\xe0\x8e\x32\x70\xbf\x1a\xe3\x90\xe8\xcf\xba\x2f\x20\x4c\x99\xd8\xf4\x46\x18\x50\x8d\xbd\x74\x7a\xed\xe8\xb7\x83\x46\x51\xed\x31\x5f\x7a\x5e\x90\xe5\xc3\xf6\xb8\x8c\x48\x57\x34\xdf\x1d\xd7\x7e\xc1\x3a\xe4\xf9\x99\x0f\x90\x27\x69\xc5\x1e\x63\x41\x4d\xf9\x6c\x6a\x20\x0b\x40\x7b\xad\x4a\xe9\x15\x3b\x49\x9a\xf8\x8c\x4c\xab\x82\x5f\x9d\x4e\x2a\x40\x2d\xbe\x1d\xed\x38\x8c\xf7\x9e\xbd\x05\xed\x8f\x53\x4f\x64\x38\xb1\x8b\x79\x29\x46\x75\x07\xdf\xa5\xcd\x70\xe2\x55\x8b\xe9\xdf\x58\xf7\x47\xe9\x3b\xf9\xd2\x0e\xb4\x76\x1b\xaf\x1d\x36\xea\x77\x51\xba\x51\xda\x9c\x56\x74\x97\x88\x61\x21\x82\xf1\xdb\x6e\x0a\xb8\x3a\xe4\x4b\x8e\x0e\x2d\xb6\x20\xd8\xa3\x57\x2d\x08\x34\x58\xd8\x09\x49\xc3\x19\x5b\x01\x6c\x19\xb1\x56\xc1\x9a\x66\x6b\x05\xb7\xf6\xcd\x1a\xa8\x67\x39\x99\x86\x4f\xd9\x6a\x61\x3f\x89\xb5\xcc\xf2\x5a\x5d\x19\x9f\x1d\xad\x8b\x96\x71\x19\xcd\x60\xb2\xcf\x0b\x25\xac\x16\x99\x3a\x61\xf9\x81\xf6\x34\x98\x0b\x61\x55\x89\xa5\xcf\xd7\x54\x5d\x11\x6c\x85\xce\x8a\x45\xa7\x32\x58\xbc\xb2\x64\xa4\x57\xca\xc0\x22\xd6\x04\x70\xf0\xa6\x0c\xa5\x5a\xc0\xb3\xe6\xbd\x55\x26\x8e\xd4\xf4\x52\xca\x05\xae\x0e\xcc\x17\x24\x93\x1e\x9c\x49\x54\x26\xb5\xc9\x99\xfe\x57\x15\x5d\xc1\x74\xe5\xd6\xd7\xf1\x59\x62\x4a\x24\x7b\xe9\xe3\x4d\x64\x02\xc3\xd5\x2e\xea\x8c\x48\xc2\xb5\x3c\x23\x0f\x5d\xea\x3f\x29\xfa\x47\x3f\xaa\xea\x7c\x91\x46\x75\x7d\x56\xbd\x9d\x3a\xa7\x55\x41\x72\x9a\x25\x22\x2a\x4f\x15\x3b\x28\x80\xbe\x48\x41\x43\x0b\x18\x40\x8e\x56\x02\xaf\x2a\xea\xaa\x64\xa2\xb1\x44\x02\x88\x7c\x2d\x85\x3e\x7f\x8c\x20\x5d\x83\x59\x47\x10\x09\x80\x33\x3d\x06\x96\x03\xae\xa5\xea\xf1\x0a\xc0\x5e\xd3\x34\x1e\xd4\xeb\x00\xa5\x69\x64\x46\xd0\x4e\x75\x2f\x13\xd4\xbc\x4e\x94\x7e\x2b\x85\xb4\x92\x89\xf0\x89\xd8\x87\x88\x7a\x6f\x7b\xe1\xc9\xcd\x93\xa6\x8c\x98\x52\x6c\x42\x75\x45\x62\x74\x04\x71\x28\x81\x1b\x0b\x3d\x34\xc2\x4f\xa2\x3a\xb4\x44\x7a\x95\x68\xda\xac\x59\xde\x87\xf0\x54\xc9\x94\x0c\x99\xda\x93\x26\x0c\xcc\xd1\x0d\x25\x64\xde\xa7\x6c\x76\xc7\x85\x03\x9e\x70\x98\x90\x03\x49\x20\x0b\x18\xe1\x8c\xbf\xc5\x1d\x0a\xba\xd2\xc7\x84\xc8\x7f\x46\x46\x86\x12\x99\x6c\x9c\x26\x32\x4f\x4d\xa1\x09\x59\xa4\x99\x24\x89\x0e\xa7\x39\x30\xc9\xcf\x4d\x72\x69\x53\x58\x97\x74\xe8\x20\x04\xff\x30\x95\x0e\x12\x2e\xd1\x3a\x8a\x64\x53\x22\x52\xb5\x61\x28\x9a\x0a\x48\x21\x22\xf1\x1b\x08\x08\xfe\x2a\xa0\x83\x3a\x20\x42\x48\xe9\xb6\x84\x8c\xe1\xa5\x05\xd4\x3f\x91\x0a\x42\xf1\x00\x94\x0a\x90\xd9\x40\x5d\x05\xd4\x3b\x50\xf6\x44\x29\x0e\x34\x17\x50\xcb\x95\xc8\x4b\x66\xd4\xd9\xcf\x7f\xf5\x23\x63\x39\xff\xf1\xba\x05\xd2\x5d\x67\x9d\x8e\xb7\xc7\x39\x33\x21\xbc\xe4\x97\x3d\x11\x51\x7e\xce\x58\x98\x45\x3b\x39\x70\x0c\x46\x33\x94\xa6\x68\xa3\x2b\x09\xce\x51\x83\x6b\x9c\x8d\xd3\xbc\xec\x44\x78\xa0\xb9\xd8\xa1\x1a\x78\xe7\x64\x1d\x79\xa1\x9d\x80\xcf\x53\xae\x76\x11\x5e\x7a\x73\xb6\x85\xf3\x53\x9d\xa0\x04\x57\x3b\x5b\x52\x4d\xb3\xbd\x1a\xa3\xdb\x3b\x80\x52\x01\x39\xd9\x8f\x6b\x9d\x9a\xe8\xf3\xa1\x1e\xc1\xee\x84\x80\xc9\x13\x04\x13\x68\x16\x50\x3d\x23\xa6\x74\xe8\x61\xa1\x20\x8b\x90\xe1\x20\x8b\x56\x61\x20\x98\xb4\xb6\x93\x85\x36\x74\x43\xa4\x9d\xd0\xeb\x27\x8f\x3a\x39\xe2\xce\x4e\x72\x53\x86\x4f\x8e\xf6\xf0\x97\x91\xdd\xcf\x9a\x70\x09\xe3\xcf\x5e\x7c\x23\xdb\x9e\x70\xf4\xa7\xa6\x3c\x89\xb5\x98\xa8\x68\xd1\x89\x86\x1e\x9a\xe0\xda\x86\x06\x18\x35\x80\xb0\x96\x2e\xfc\x61\x2c\x4c\xd0\x18\x19\x84\xb2\x33\x0a\x0c\xe6\x30\x4c\xc5\x93\x39\x8c\xe7\x34\x08\xcd\xc3\x16\x8c\xc0\x35\xc8\xd3\x23\x2c\x0d\xd1\x35\xfc\xd3\xa3\x56\x8c\x51\x31\x68\xc2\x23\x0a\x0c\x9a\x33\x48\xcb\x43\x14\x4c\xc7\x32\x28\xc4\x23\x54\x4a\x9c\x2e\x84\xa3\xb2\xc0\x4a\x72\x2d\xd4\xb5\x22\xc6\x4a\x7a\x55\xa1\x53\x85\x87\x16\xb4\x5e\x89\x6b\x65\x5a\x17\x4c\x5d\x29\x42\x92\xf2\x0b\x0d\x28\xa4\x59\xd1\x4d\xa5\x12\x15\xa4\x50\x41\x4d\x25\x51\x16\x66\x5a\x01\x67\xe5\x59\x96\x62\x5c\xa1\x25\x44\x16\x88\x2d\x93\xa6\x49\x29\x01\xe2\x6a\x88\x07\x93\x96\x48\x11\x2a\x64\x9c\x92\xac\x4e\xd9\x0b\xa2\x5f\x24\x39\x88\x2a\x10\x36\x22\x66\x49\xa0\x93\x49\x17\x62\x03\xc4\x5d\x88\x6b\xb3\x64\x22\x66\x61\x0f\x09\x09\x3d\x3e\x12\x16\x8b\xb2\x3d\xc0\x6b\x09\x0a\x3f\x59\x09\x11\x7a\x1c\x24\x4a\xb0\x30\x89\xb7\x48\x61\x21\x47\xd2\x21\xc6\x41\x50\x94\x8c\x9b\x84\x4c\x5a\xe7\x84\x4c\x0d\x5a\xc2\x36\xc7\xeb\xd0\xf9\xe3\x7f\xcc\xf2\xbe\x69\x9f\xc0\x81\xae\xf8\x9f\x9f\x12\xae\x49\x57\xf4\xab\xa7\x0b\xba\x23\x1f\x0b\xd5\xc7\x2a\x9f\xa5\xaf\xfc\x47\x1a\x0f\xed\xc9\x23\xcc\x51\x61\x68\x50\x25\x88\x8d\x08\x5e\x0a\x10\x58\x64\x23\xd1\x44\x83\x54\x0d\x11\x8f\x96\xbe\x87\xfe\xa3\x8f\x55\xfa\x8f\x3f\xb6\x5b\x4d\xe3\x40\x7d\xf4\xa5\xbc\x20\xcd\x82\x40\xed\x4f\x50\x01\xd0\xe1\x97\xec\x94\x63\x94\x0b\x27\x11\x78\x63\x38\x5e\xda\x2b\xee\x43\xb3\x43\x4d\xa3\xac\x70\xd9\x41\x3b\x81\x5a\x5b\x5d\x68\x17\x16\x1d\xe6\x10\x70\x44\x27\x60\xdd\x99\x2f\x0c\xe2\xf2\x16\x86\xad\xb5\x0b\x0a\x86\x71\x46\x9d\xf9\xe1\xc5\x11\x85\x8c\x5f\xf8\x80\x18\xdb\xe8\x10\xbf\x90\x21\x78\x23\x00\x1e\xa7\x1f\x9c\xd6\x56\x7a\xfa\x81\x95\x27\xac\x90\xa4\xfb\xd6\x25\x3c\x07\x36\xb8\x37\xc4\xd7\xfe\x04\x56\xbe\x13\x72\x0e\x95\x01\x40\x68\xb4\x4d\xdf\xef\x0c\x06\x67\x38\x0d\xe4\x6f\x83\xb2\x94\x69\x2c\x9d\xb8\x94\x04\x49\x3b\x13\xc6\xf0\x2b\x2e\xa4\x0d\x20\x53\x23\x18\x95\x51\x11\xb8\x40\xdd\xb3\xe5\xe9\x5e\xe6\xd1\xd2\x81\x11\xeb\x19\x9f\x10\x84\x74\xa5\x5e\x92\x85\x19\x88\x17\x5f\xd7\x13\x84\x80\xc1\xb4\xbc\x84\xa4\x69\x13\x75\x07\x85\x19\xa8\x25\xbe\xd5\xe5\xf2\x86\xe0\xa5\x16\xc9\x2a\x93\x86\xfd\x22\x6e\x55\x3e\xe5\x01\xee\x57\x4d\xca\x37\xdd\xba\xfa\xd2\xa9\x6e\x05\x53\x99\x1d\x51\x65\xb1\x50\x9b\x15\xb0\x54\x2a\xc8\xe8\xb5\x1c\xff\xa8\xe7\x8d\x47\x39\xe6\x41\x38\x64\x41\x37\x6b\x08\xf9\x68\x57\x6d\x0a\x46\xd0\xac\x8c\xe5\x4c\x8c\xe5\x2c\x8c\x65\x0c\x89\xc9\xd8\x9f\x26\x62\x7c\x95\x89\xf2\x4e\x27\xc9\x18\x93\x91\x71\x27\x21\xe2\x4e\x40\xc4\x9c\x7b\x81\x29\x4f\x02\xe5\x3c\x0a\x94\x70\x2a\x4f\xc0\xa9\x37\x02\xa4\xbc\x0c\x64\xac\x0b\x92\x70\x2e\x46\xc0\xb9\x12\xf2\xe4\x1b\xcc\x63\xeb\xc9\x4d\x77\x92\x9a\x6e\x25\x31\xdc\x47\x30\x5c\x6a\x5f\xb4\xd4\xb9\xa0\x12\x8a\x28\xbc\xad\x11\x4a\x16\x81\xc9\xd9\x83\x26\x2e\x66\x55\xa6\xe4\xbb\x4d\xc9\x56\x9b\x91\xec\x25\x23\x58\x4a\x42\xb0\x94\x7f\x61\xb8\xf6\xc3\x71\xd5\x86\xe3\x6b\x0d\xd6\x96\x1b\xad\x2c\x20\xab\xac\x1d\x55\x56\x41\x54\xd6\x4a\xa4\xac\x95\x47\x59\x2a\x82\xb2\x55\x05\x64\xa9\xca\x89\x53\x35\x12\xa5\x2a\x25\x3f\x54\x2e\x79\xa4\x5c\xe9\x48\xf9\xc6\x92\x09\xbe\x92\x09\xb2\x92\x09\x92\x91\x29\x86\x91\x73\x05\x22\xe5\xda\x4b\x96\xe8\x2e\xab\xa0\xba\xa6\x82\xea\x8a\x08\xea\x5a\x08\xea\x5a\x0f\xa7\x68\x3e\x03\xcc\x08\x03\x30\x2f\xb9\x81\x7d\xc8\x0b\xe5\x04\x57\x99\xc0\xef\x33\x90\xde\x27\x21\xba\x64\x05\xcf\x20\x2e\x79\x0a\xe7\x94\x47\x38\xfb\x84\xe3\xae\x13\x0e\xb9\x4c\x27\x71\xc8\x1b\x8c\xa4\xae\x19\x03\x76\x17\x92\x3c\xa6\xa4\x79\x4d\x46\xd2\x95\x1b\x4a\x83\xd5\x49\x92\xb5\x44\x4c\x35\xe9\x4a\xde\xa4\x89\x87\xbd\x29\x1f\xfd\x23\x5c\x4a\x96\xc4\xa5\x6c\x4a\x9e\xc4\xa9\x1b\xd4\x49\x24\xb3\xdf\x89\x5d\x71\x29\x0f\x12\x88\x2f\xd3\xea\x5e\xfa\x68\x3f\x23\x0e\xe4\x2a\x71\x29\x97\x12\x8e\xf1\x28\xf3\x02\x93\x70\x28\xd3\x02\xa5\x30\x29\x56\xf2\xa6\x6f\x2b\xbd\xe5\x70\x2e\xf4\x9d\xce\x7b\x5f\x54\x27\x04\xa3\x36\xcb\x88\x57\x9f\x8d\x34\xb9\x1c\x56\xe4\xf3\x03\x15\xca\x22\x48\x50\x45\x9e\x6c\x52\xbe\x62\xa7\xa3\x27\xd6\x0b\x7d\xd9\x01\xe0\x78\x1b\x76\x5d\xb1\x34\x0b\xfe\x89\x87\xb5\xd3\x46\x42\x74\xd4\x71\xbf\x7a\x46\x5a\xbf\xba\xa7\xb2\xa8\xe6\x03\x97\x5d\x19\x5a\x23\x83\xfd\x23\x83\x34\xe4\x49\xf6\xe4\x35\x17\x00\xe4\x1f\x29\xcb\x6a\x2b\x8d\x20\x85\xa2\x2a\x0b\xe7\x09\x46\xdf\xe4\x26\xe7\xd6\x2d\x9b\xb5\x66\xa8\x04\x7a\xf3\xf1\x8f\x68\xa0\xba\xe7\xca\x19\xf1\x48\x52\x38\x55\x28\x33\x5a\x53\xd0\xba\x2b\x96\x69\x34\xfe\x3d\xb4\xdb\x6a\xa8\xdb\x83\x2a\xb4\x51\x4d\x02\x7b\x5b\x56\xa2\xe1\xe1\xed\x13\x43\x16\x8b\xb0\xa4\x31\x60\x61\x11\xbb\x38\xef\xd7\xd8\x7c\x3a\xd6\x10\x8c\x07\xf6\x83\x3b\xbc\x87\x0a\xe0\x24\x6d\x81\x56\xea\x11\x63\xf0\x73\x1a\x03\x19\x10\x12\xc0\x00\x36\x5b\xfb\x65\xbf\x96\x76\xf8\x6a\x7f\x46\xaf\xf4\x66\x0f\x06\xe5\xed\x68\x5e\x86\xe2\xe5\x6d\x0e\x06\x24\xd7\x6f\x3a\x6c\x1f\xa2\xdf\x73\x19\x87\x29\x9c\x32\x59\xa5\xa6\x8a\xde\x29\x49\x10\x96\x19\x62\xcd\xa3\xf0\x9d\xb1\x9d\x17\x67\x65\x93\xba\xb2\xe3\x22\xed\xb4\xb1\xc4\x58\x99\xdc\xbd\xaf\x72\xae\xe5\xee\x49\x86\x32\x0e\x07\x3b\x96\xa6\xf6\xa4\x95\x48\x96\xad\x19\x2c\xdb\x48\xbd\x28\xd0\x34\x83\x42\x23\x19\x3b\xfc\x6f\xa3\x67\x0b\xc1\xac\xe2\x64\x6d\x66\x7e\x96\x5c\x64\x81\xd0\xc6\x49\x92\x7c\x4c\x9b\xa2\x10\xd1\xa6\x96\x81\x0f\x25\x94\x3f\xf3\x22\x67\x6b\x21\xdc\xdb\xf1\x33\x58\xda\xbf\x78\x99\x8c\x58\x90\x86\xa5\xd7\x7e\xd5\xbd\xbe\xa2\x4d\x2f\x90\x27\x06\x37\x56\x67\x6a\x63\x19\x44\x91\x36\xe0\x25\x11\x52\x1a\x59\x4e\x04\x2b\xcc\xb4\x86\x83\xc9\xb0\xd7\xcc\xb9\xe9\xc3\x71\xea\xc1\x6e\xcd\x80\x56\x41\x61\x51\x10\x87\x16\x08\x4a\xc0\xd5\x0b\x49\x1a\xb9\x6b\x74\xd9\x27\x61\x4e\x0b\xfe\x64\xf1\x55\x39\xd9\xb3\x43\xa1\x09\x7e\x68\x46\x8a\x9f\xa8\x62\x0d\x03\x30\xcc\x1f\x0b\x7d\x50\xff\xba\x71\xd4\xd1\x52\xc7\x99\x2c\x9a\x24\x81\x45\x3c\x59\x28\x93\xba\x34\x9e\xfd\x82\x48\x59\x0b\x2f\x97\x05\x1a\x2c\x84\x81\x46\xc3\x94\xa3\x8f\xa7\x78\xb6\x6b\x99\xeb\xff\xb1\xee\x32\xc4\x02\xc4\xf5\xeb\x84\x77\x62\xd4\x10\x5d\x13\x4f\xbc\x58\xd1\x55\xd1\x7f\xa7\x78\xe1\xbb\x50\x73\xcc\x2d\x1e\x44\x3a\x77\xdc\xf8\xcf\x8c\xd8\x37\x94\x84\x4b\x5b\xea\x77\x30\x4e\xb4\xf6\x22\x40\x5f\x11\x20\x39\x85\x91\x13\xd4\x7c\xcd\xdc\xc3\x4c\x24\xc9\x91\xf1\x7e\xdb\xfe\x2e\x12\x24\x5f\x66\xff\x17\x03\x4c\xbb\x3d\x61\x68\x67\x82\x10\x1a\xf5\x24\x26\xd0\x91\x64\x44\x46\x42\xe2\x62\x8d\x18\x61\xe3\x18\x50\x07\x40\x42\x34\x3c\xdc\x1d\x65\x2e\x3d\x83\x67\x64\xce\xb5\x5e\x03\x25\x9b\x01\x92\x54\x7d\xc9\xe5\xbe\xb4\x6a\x4f\x1a\x0c\xaa\xe7\xe0\xa2\xf6\x8e\x09\x5a\x37\x96\xf4\x47\x8b\xa2\x39\x1a\xa6\x61\x16\x2a\xcc\x30\x61\xac\xed\x06\x09\xa0\xb2\x41\xa6\xe8\x89\xd4\x71\xe9\x3c\xb3\x54\xce\x17\x05\xa5\x28\xc7\x04\x9e\x6d\x83\x2f\x5c\x8f\x33\x72\x3a\xf6\xec\x27\x31\xab\x09\xae\x5c\x8e\x47\x90\x34\x43\xab\x8b\xa6\xc3\xe8\xce\x8c\x95\xd5\xf2\x3c\x26\x51\x4f\x09\x97\x23\xc9\x3a\x1d\x54\xe5\x7c\x03\x16\x01\xa3\x2b\x3a\xbe\x92\x6c\xae\x09\x22\x87\xd1\x33\x30\x6d\x97\x98\x8b\x39\xe6\x22\xd7\x30\xc8\x8f\x30\xbb\x22\x3d\x57\x98\x8a\x0a\xe6\xd5\xb9\x23\x62\x49\x78\x4e\x96\xe3\x59\xaf\xdf\x8d\x4d\xa0\x64\x16\xda\x84\xd5\x61\x77\xab\x21\x94\xdb\x9d\x34\x63\x3f\xa9\x21\x7c\x43\xa7\x45\x04\x18\x71\xd6\x6e\x3a\x85\xbd\xba\x8e\x55\xee\xa3\x97\xb7\x41\xc2\xb5\xd0\x70\xf2\xe2\x82\xac\x44\xfa\x5f\x95\x93\x0c\xe5\x50\x53\x1d\xf2\x37\xd0\x15\x40\x5c\x9d\x67\x94\x2d\xba\x8a\x75\xc2\x3f\x8d\xcc\x5d\x3f\x5a\x4e\xdc\xa9\x59\x6c\x34\xc1\xa5\xc4\x8a\x94\x16\x8b\x4d\x28\x79\x9f\x27\x37\xf5\x7d\xcd\x99\x95\x52\x70\x57\x68\x02\x36\x17\x65\xca\x57\x05\xe5\x92\x7d\xd9\x48\x52\x12\xc4\xb0\x40\x6d\x1a\x2e\x1f\x92\x95\xc2\x20\xc9\x10\x3f\x64\xa5\xb0\x94\x01\x84\x65\xed\x03\x3a\x8d\x9f\xae\x1e\xc5\xa6\xba\xd8\x4f\xa2\x10\x81\x88\x76\x34\x95\xc6\x6b\x2e\xce\x41\xf1\x90\x77\x99\x6d\x80\xa5\xcc\x37\xd8\xf5\xc8\x91\xa0\xc4\x9e\x62\x2f\x27\x98\xe8\x44\x88\x24\x5a\x27\xed\x83\xa8\x6a\x00\x09\xfa\x60\x02\x6e\x24\xc0\x34\xcb\x1c\x43\x5b\x0f\xb8\x60\xfa\xfa\x20\xda\x99\xc0\xda\x58\x9c\x4a\xcf\x0f\x09\x16\x6d\xf4\xc7\xf8\xcc\x06\xf1\x94\x0d\xe2\xf4\x90\x9f\x8b\x0c\x43\x76\xc3\x5e\x78\x7d\xc3\x07\x00\x89\x1e\xb5\x71\xe1\xd8\x55\xce\xb6\x85\x4b\x5b\x6b\x83\xd0\x5c\xb3\x27\x3b\x86\x91\x65\x52\x09\x78\xd0\xdc\xe8\xb4\x29\x24\xcb\x02\x2c\x8b\x3c\xff\x87\x5c\x3c\x17\x20\x65\x58\x08\x98\x09\x02\xaa\x8e\xd0\x00\x26\xd1\xe7\x08\x94\xf7\xd7\xac\x60\x65\x6a\x44\x02\x13\x70\x1a\x60\x05\x09\x9d\x25\xfe\xce\x14\x8f\xc2\xb4\x6f\x33\x33\xce\x46\x8f\x5d\x60\x05\xb7\xe8\x8d\xf5\xba\xb7\x32\x64\x09\x3e\x7b\xab\xe8\x9f\xb6\xd9\xf9\xab\xf1\xd5\xed\x0d\xae\x6b\x57\xe0\x4a\xc1\x23\xb4\xa7\xe6\x01\x8e\x4f\x94\xc1\x62\xf6\x2c\xf0\x8e\xac\xd0\xd6\xaa\xd5\xe9\x29\x6a\x32\x9c\x36\x8f\x10\x41\x69\x69\xb6\x76\x92\x96\x2d\x8e\xe8\x69\xc9\x97\x99\x7c\x80\x6f\x8e\xa8\x1e\xb1\xdd\xc2\xbe\xfb\x40\x35\xdf\x5a\x60\xbb\x6a\xb8\x07\x0e\xa7\xa4\x40\x41\x0e\xa9\xc7\x94\x6f\xcb\x50\x23\xbf\x80\x0f\x93\xbf\x96\xdb\x08\x93\xda\xb4\x79\x36\xd3\xa4\xa9\xe5\xb3\xe6\xf4\xd7\xeb\xce\x42\xf8\x73\xcb\x18\x00\xa7\xc6\x44\x66\xa3\xe5\x68\xc1\xca\x71\x86\xf6\x36\xb9\xe2\x21\xc1\x1c\x22\xc0\x2f\x31\x53\xea\x35\x1e\x37\x83\xf7\xe0\xe5\x8c\x3d\x4f\x5b\xb8\xa3\x2e\xd0\x91\x88\x8a\x63\x19\x00\x17\x50\xc5\x12\xa4\x70\x92\x02\x64\x29\x66\xa5\xa4\x20\x4e\xd2\x93\x1b\xc7\xd9\xd9\x4f\x0a\x59\xcf\x0a\x29\xce\xd0\xb8\x48\x0c\xf4\x05\x9f\x60\x1c\x1f\xfe\x27\x09\x99\x96\xd2\xe8\xc6\x68\x39\x25\x9e\x3d\xa7\xdb\x23\xde\x3b\x8a\xe2\x45\x58\x33\x16\x54\xdc\x46\x79\x8d\xc4\x67\x9d\x31\x71\x81\x36\x68\x61\x9d\x33\x83\x20\x7b\x18\x72\x95\x1c\xba\x6d\x10\x98\x95\x30\x48\x2d\x10\xdf\xc5\x58\xdf\x74\x23\x33\x7a\xbd\x8e\x56\x99\x36\xbe\x77\x6b\x71\x4d\x6a\x94\xfc\x41\x21\x42\x12\x83\xf1\x1a\xbf\x14\x93\xc9\x4d\x28\xc3\xe7\x69\x5b\x1e\x08\x7a\xd3\x92\x1d\x89\x95\xc4\x9a\x29\x9f\x68\x54\xe3\x09\x7d\x2b\x42\x66\xfc\x36\x0d\x90\x4c\xdd\x99\xd8\x5a\x13\x57\x9a\x3d\x5c\x68\x55\x5c\x8c\x82\xd0\xaa\x15\x85\x50\x2c\x89\xb4\x31\x3d\x64\x55\x0e\xc2\x28\x6c\x89\xa8\x2c\x9a\x9f\x58\x02\xa1\x61\xa9\xb6\x1a\x9b\x64\xcd\x82\x12\x9a\xc1\x09\x4a\x60\x84\xa4\xb0\x64\xa3\x8f\x02\x80\x22\xcb\x10\x5a\x35\xf5\xfa\x17\x0b\x68\x90\x47\x8d\xf5\x88\x4c\xc3\xa0\x5d\x98\x1b\x65\x8d\x96\xab\x0b\x47\x8f\x2c\x8b\x61\x88\x62\x73\x93\x76\xc0\x3d\x5c\x92\x5d\xcc\x20\x60\x2b\x42\xc3\x61\xbb\x0c\xcd\x53\x93\x34\x19\x71\xc6\x71\x42\xd4\xd9\x55\xc2\x84\x87\x74\x0c\xa6\xfe\x01\x30\x5c\x8e\xc7\xdd\x05\x82\xa2\xd6\x2a\x2d\x62\xc9\x56\x2c\x8c\xa2\xa8\x9b\x29\x8b\x04\x83\x3a\xb2\xa2\x2b\x94\x47\x9f\x24\xe1\xe2\x9c\x23\x49\xc2\xb8\x50\x75\xae\x2b\xad\x71\x5d\x6a\x89\x63\x59\x1f\x15\x91\xef\x59\x1e\xd5\x91\xec\x70\x94\x24\x49\x14\x24\x61\x58\xd7\xaa\xc6\xbd\x16\x11\x79\xac\x6b\xc9\x63\x37\x7e\xb4\x61\x58\x9b\xb9\x63\xdd\xaa\x9e\x8c\xaa\x35\x18\x54\x6a\x30\xa8\xd4\x59\x51\xa8\xaa\xa3\x51\x15\x46\xa2\x2a\x90\x91\x05\x46\xa1\xea\x09\x21\xca\x08\x21\xca\x08\x21\xca\x08\x21\x6a\x08\x21\x6a\x08\x2a\x04\x0f\xa4\xa1\x2a\x68\xa0\x8a\x62\xa0\x8a\x62\xa0\x8a\x5c\x98\x8a\x5c\x98\x82\x52\x99\x34\xa5\x31\x88\xfc\xc1\x32\x23\x4d\x4f\x3f\x3a\xb4\x44\xf8\x2d\x03\x33\xc1\x5c\x12\x90\xc6\x49\x00\x56\x0f\xc6\xb9\x0c\xec\xe8\x4e\x4d\xc4\xd4\xd8\x63\x8c\xc5\x74\xc8\x67\x49\xc7\x81\x38\xf1\x22\x1d\x44\x43\xb0\x80\x4a\x3c\x27\xd5\x27\x8a\x62\x2f\x04\xc4\x5d\xc9\x88\xbb\x53\x38\xed\x4c\x45\xd8\x98\x8b\xb1\x31\x17\x5a\x62\x2e\xb4\x84\x5d\x29\x08\xba\x52\x11\x74\x24\x22\x9e\x18\x07\x9d\x21\x17\x3a\x42\x2e\x44\x84\x5d\x49\x08\xba\x91\x11\x75\x22\x22\xe9\x44\x45\xd0\x88\x8b\xa1\x11\x17\x2a\x22\x2e\x54\x44\x5c\x68\x08\xb8\x90\x11\x70\xa0\x22\xe0\x40\x45\xc0\x80\x8b\x7d\x01\x16\xea\x02\x28\x5b\x1f\xd2\x0a\x63\xb9\x04\x04\x50\x86\x3b\x70\x40\x45\x06\x63\xb6\x03\xc4\x50\x46\x3b\x60\x3c\x45\xda\x78\x8a\x08\xc7\x6c\x07\x08\xa0\x4c\xf6\xa0\x70\x8a\x02\xcf\x68\x07\x08\xa0\x2c\xff\x48\x1c\xe1\x14\x1c\xe1\x14\x1c\xe1\x14\x14\xd1\x14\x14\xd1\x14\x0c\xd1\x14\x08\xd1\x14\x08\xd1\x14\x04\xd1\x14\x00\xd1\x14\x00\xd1\x17\xe1\x82\x2f\xc3\x04\x5f\x86\x08\xbf\x0c\x11\x7d\x18\x22\x80\xff\xb3\x03\x04\x5f\xec\xf6\x60\x60\x82\x3a\x60\x82\x38\x60\x83\xfd\x97\x62\x13\x41\x84\x71\x5c\x4d\x12\x33\xaa\x80\xd3\x19\x5d\xe3\x63\x58\xbe\xd8\xac\x40\xf4\x6c\x6e\x8c\x8e\xd1\x97\xc9\x51\x1c\x95\x63\xed\x62\xbc\x26\x5c\x04\x49\xbb\x76\x99\x24\xba\xaf\x03\xfe\x63\x4d\x64\xe9\xaf\xb5\x8a\xf0\x1a\x17\xb4\xc5\x5e\x26\x82\xb8\x4d\x34\xdc\x9f\xb2\x02\xc0\x64\xf8\xc5\x53\x16\x16\x98\xab\x24\xe2\xab\xe3\x23\xab\xf8\x95\xa7\xb7\x08\xbb\x6e\x99\x3e\xde\xab\x40\x8f\xbe\xd0\x8a\xd0\x3f\xcc\x46\x8d\x47\xef\xda\x1b\x36\xc7\x90\xd1\xe2\xe8\x4b\x1d\x39\x12\x17\xaf\xf9\x74\x55\xcf\xad\x03\x5f\x51\xc5\xae\xf5\xea\x51\xb5\x46\x00\x2d\xd9\xc5\xa5\xad\x00\x2e\x2f\x3c\x08\xe7\xf1\xc0\x61\x2e\x22\x93\x15\xe3\x72\xf4\x5b\x16\x20\xb9\xa6\x90\x1b\x68\xba\xc2\x1d\xa0\x89\xc5\xe8\x4f\x59\x6f\x1c\x22\xac\xee\x78\x5c\x63\x80\x54\xf1\x30\x80\x09\xbc\x32\x88\x58\x06\x66\x58\x80\x69\x4b\x45\x86\xc1\x36\x40\xee\xf2\x49\x20\xe0\xa0\x27\x1a\x80\x03\x5d\x3f\x6c\x44\x3b\x87\xf8\xb9\xa6\xb9\x71\xff\x53\x07\xcc\x7f\xf5\x3f\x7f\x27\xb9\x30\xdf\xb0\x74\x0b\x55\x3c\x06\x75\x71\xc9\x79\xca\xa2\x50\x03\x10\xb0\x44\xcc\x0d\x4f\xf8\xa2\x10\x80\x00\x1d\xc2\x22\x9a\x8a\x68\xa2\xb5\xf5\xc3\xca\x85\xa4\xae\xa7\x42\xc3\xce\x69\x5a\x3c\xda\x82\xaa\x21\x5f\x57\x32\x91\x75\x21\x46\x58\x63\x92\xd3\x20\xba\x72\x09\x3c\x7a\xc2\x30\xd8\x51\xe1\x3e\x9d\x34\x9a\x0b\xc5\xd2\xb9\x5c\xd2\x9d\x99\x2a\x94\xce\x66\x43\x31\x96\x28\x16\xae\xc2\x6b\x15\x8d\x06\x79\x4e\x1c\xc6\xb3\x0a\x2d\x39\x44\x95\x88\x34\xf3\x42\xdc\x26\x78\xb3\xa6\xa9\xf5\x72\x4b\x99\x2e\x4b\x47\x89\xa6\x44\xf0\x64\xe3\x65\x96\x66\xb3\x3c\xd3\x5d\x28\x9c\x4c\xf1\x41\x3d\xd6\xc7\x8e\xbb\x64\xc8\xad\xaf\xe9\x67\x0b\x45\x2c\x2c\x36\xbc\xca\x85\x49\xdc\x5b\xef\x53\x59\x0b\x72\x20\x36\xb6\x00\xb7\x2d\x5c\x17\x78\x26\x66\x00\xda\x17\xbd\xe0\xb8\xda\x08\x2f\xf7\xe4\x60\xe1\x5e\x69\x03\xfa\xad\x0a\xbb\xb1\xd6\xd4\xde\x63\x29\x7e\xd8\x46\x57\x22\x91\x5d\xd2\xce\x10\x2b\xcd\x5a\xfd\xad\xe1\xc1\xc5\x17\x04\x78\x64\x20\x92\x78\xe0\xff\x7d\x65\xfd\xc4\x40\x32\x40\x71\x48\xca\xd1\xbf\x88\xe7\x86\xbc\x28\x5b\x84\xd6\x92\x02\x7b\x38\xaa\xb0\x51\xcd\x00\x67\xfa\x24\x48\x21\x9c\xcd\x20\x41\x90\x5f\xc1\x9f\xbc\x99\x94\x52\x8b\xe5\x09\x20\x2b\xb7\x88\xf6\x04\x75\x11\x17\xca\x27\x67\x82\x43\xa8\x4e\x3a\x61\x5c\x09\xf0\x0c\x12\x30\xe3\xb2\x79\x89\x75\xa5\x48\x2c\x00\x89\x30\xd1\xed\x7c\x87\xff\x28\x37\x86\xbb\x30\x3b\x3f\xfa\x10\x8e\x95\xd5\xbd\x44\x26\x86\x8c\x1c\x03\x2c\x59\x0e\x5b\xaa\x1c\x03\x95\x07\x9c\x10\xdb\x53\x21\x72\xa9\x46\x0b\x3a\xca\x91\x9f\x50\x2d\xee\x24\x4c\x42\xd6\xc2\x36\x9d\x1c\x50\x75\x2b\x7a\xbb\xf2\xc1\xf6\x6e\x62\x43\x2f\x99\x7b\x8c\xc6\x33\x58\x88\xc4\x3a\xb2\xd2\x21\x80\xa3\xd1\x05\x32\x73\x16\xbf\x11\x4a\x6c\xc3\x87\xc5\x06\x4a\x6a\x06\x93\x04\x4b\xb2\x86\x94\xc4\xa0\x30\xa9\x10\x19\x37\x59\xd9\xec\xbc\x5d\x64\x49\x9a\x67\x93\xca\x4e\xa5\x6c\x91\x58\xa9\x24\x50\x99\x61\x2d\xc5\x71\xb3\x17\x41\xd8\x96\x31\xc8\xdd\x36\xcd\x25\x7b\x1a\xd6\x89\xe8\x14\xdd\x0e\x6a\xd7\x30\xcb\xfa\x84\x60\x09\x25\x03\xd4\x19\x3a\x1d\x00\x51\xa4\xdb\x7e\x18\x63\x97\xbd\x32\xad\x73\xbc\x69\xd4\xd4\x29\xf3\x47\x8a\x8a\x81\x89\x6b\x2e\xf2\x5a\xf6\xa4\x42\xa4\xe0\x40\x75\x52\xcd\x2a\x2a\x3d\x1f\x81\x02\x16\xcb\x33\x5e\xe2\x61\xd4\xcd\x02\x03\x0b\xd3\x4f\x58\xa9\x57\xd9\x01\x92\x55\xce\xed\x7f\xa0\xcc\x0a\xe3\x0f\x3a\x04\x7c\xb4\x22\x76\x1f\x44\x62\x8c\xb9\xbc\x97\x86\xb8\x60\x08\x50\x4f\xe4\x82\x01\xbd\x14\xc3\x85\x62\x01\x5f\xbb\xa2\xec\x44\xd4\x06\x6c\x7c\x6e\x04\xa8\xa2\x8d\x1d\x94\x14\xd0\x3e\x0d\x3f\x2e\x43\xf2\x26\xc0\x8e\xfa\x2e\x29\xd0\x4e\x4e\x04\xae\x0d\x5b\x3c\xfe\x7f\x79\x01\x52\x66\xae\x3c\xab\x61\x47\x18\xc8\x80\x08\xe9\x88\x58\x7e\x34\x38\x2b\xd2\xec\x10\xf9\xd3\x4d\x01\x66\xa4\x82\x87\xab\x98\x99\x9e\x07\x5f\x41\xe0\x00\xef\xfe\x72\x07\x22\x06\x77\x65\xca\xa5\xe0\x0a\x80\x21\xf6\x56\xce\x7a\x6b\xe0\x63\xf6\xc2\xbe\x94\x7f\x64\xc4\x15\x69\xd8\x8b\xa3\x71\x9d\x16\x9f\xe9\xa5\x1e\x2e\x21\xe9\x50\x18\x41\x58\x33\x4e\x5e\x5f\x1b\x6c\xa3\x5b\xda\x21\x54\x29\x28\x05\xc3\x41\xd0\x05\x42\x8d\x23\x84\x00\x7e\x75\x85\x3e\x8b\x71\x99\x1b\x62\x58\x7f\xf7\xb7\xd6\x1d\xb1\x42\x30\x04\x98\xb2\x71\x65\xcf\x8d\xdc\xf7\x6b\x45\xe5\x6d\xff\xfc\x89\xf5\xc0\xac\x9a\x22\x50\x88\x0f\x09\xe4\x91\x63\xf1\xe2\x3d\x4a\xb6\xe1\x00\x26\x19\x47\x7f\x83\x59\x3c\x86\x3c\xe0\x9a\x39\xfb\x03\x6e\x05\x99\x6f\x86\xa1\xfe\xd5\xc4\x58\xd3\xb6\x6e\x64\x30\x2a\x4f\x5c\x7f\x0a\xa2\x5b\xfa\x27\x12\x4d\x06\xc5\x07\xe6\xc9\xdc\x8d\x21\xe8\xd3\x85\xa0\x37\xf1\xf8\x86\x3e\x80\xdb\xdf\xa0\xb2\x6f\x71\x66\xe3\x33\x0d\xb5\x0e\x73\x86\x8e\x8a\x83\x55\x61\x64\x8b\xb2\xcd\xa3\x4c\x00\x49\xe0\xe4\xd0\xbc\x75\xc9\x27\xfb\xb6\x3a\x75\x20\xc4\x81\xc4\x84\x4f\x9c\x51\x5c\xab\xe0\xec\x50\x7d\x80\x0c\xc0\x70\xef\x23\x1e\xb8\xe1\xca\x2c\x57\x24\x1c\x87\x68\x84\xd4\x13\x26\x52\xe7\xe8\xce\xb8\x0a\x68\x12\x31\xe0\xce\x60\x3f\x04\x81\x19\x39\x39\x6e\x0a\x95\x8c\xf8\x62\xd9\x7e\xb7\x75\xd0\x26\x33\x4f\xac\x84\xd9\xc1\x44\x39\x6a\x4f\xe9\x4d\x02\x21\x42\xa9\xcf\xb0\xaf\x75\x80\x5a\x52\x81\x04\x18\xfb\x20\x43\x3e\x8c\x17\x8d\x17\xcd\x57\xe4\x7a\x72\x62\x80\xb4\x43\x20\x75\x7d\x45\x30\x09\x6d\xc4\x5b\x0f\x43\x85\x62\x68\x05\x40\x44\x83\xda\x4d\x5a\x8e\x6f\xa5\xf4\x81\x05\x71\xf7\x90\xc1\x01\x97\xf8\xa2\x1e\x82\x87\xa5\xc5\x91\x02\xac\x13\x11\x79\x8b\x70\x24\xa5\xc9\x0d\xd7\x98\xab\x53\x75\x43\xce\xe8\x95\x64\x61\x8f\x61\xa0\xf1\xa8\xd2\x07\x3e\x24\xca\x1d\x92\x2b\x03\x3a\xc5\x0f\xfe\x70\x49\x12\x4e\x0b\xb0\xa1\xd7\x34\x98\x6a\xba\x68\x8c\x39\x51\xc1\xd4\x06\x2c\xfb\x59\xe6\xc0\xa5\x0b\x6d\x7e\xbb\xb1\xd5\x3f\x62\x54\x51\x4a\x60\xd0\x31\x04\x75\x09\xcb\x66\x8c\x58\xc4\xe2\x43\x0b\x1a\x2c\x58\x5f\x4f\x09\x3b\x89\x27\x85\x8e\x03\xca\x89\xdd\xd0\x6a\x88\x4e\xb1\x12\x58\xf0\x9a\x5c\xc6\x62\xe8\x16\xeb\x2e\xaf\x82\x10\xc6\xbc\x23\x80\x44\x06\xd2\x47\x95\xc1\x3d\x62\x29\xaa\x23\x22\x2a\xb1\x0d\xb3\x9a\xe7\xcb\x1a\x80\x62\x0c\x63\xe0\x21\xe5\xac\xa9\x62\xd5\x1c\x96\x07\x09\xc4\xe0\x02\x24\xb0\xcd\xd6\x6a\x79\xe8\xf3\x0a\x31\x78\x2b\xd2\x0e\x6e\x8e\x83\xe2\x96\xda\xb4\xcd\x04\xf8\x97\x51\x23\x8d\x51\xc7\x21\xab\x33\x38\x5a\xf8\x40\x9a\x6c\xcb\x36\x06\x38\x91\xea\x56\x7d\xaa\x94\x6c\x56\xa2\x45\x8b\x50\x51\x5f\x74\x40\xe9\xe9\xb8\x5e\x4d\x1b\xf5\x04\x25\xd5\x8f\x0b\x79\xef\xc5\xdc\xe5\x8a\x39\xcf\x54\x82\x03\xba\xb9\x09\x61\x8d\x2a\xa1\x9b\xa3\x0d\x29\x9e\x35\x2c\xf4\x98\x6d\x7d\x73\xaf\x05\x8b\x6e\xea\x86\xd9\x26\x59\xc7\x50\x32\x88\x8e\xf7\x71\x34\x27\x19\x6f\x31\xbc\x28\x7b\xa6\x9f\xd2\xc1\x10\xab\x74\x9c\xea\xe0\x57\x19\x0c\xe4\x45\xa6\xe4\x61\x0f\xd6\x98\x56\x7a\x53\x54\x7d\x25\xca\x96\x53\xfc\x3c\x6a\x1b\x98\xc1\x07\x36\x24\x10\x4b\x0e\x36\xba\x57\x10\x0c\x31\x7f\xcd\x13\x79\x59\xa1\x15\x01\xc8\xd9\x8a\xe6\x2e\x80\xad\xb7\x80\x7c\xe1\xd4\x63\x47\x43\xc3\xe2\x36\x94\x59\xde\x07\x01\xb3\x34\x32\x2e\x48\xe7\xe7\x56\x7f\x20\x58\x3e\x5e\xfd\x0d\xe2\xa2\x2f\x1f\x16\xdc\x5b\xc9\x40\xc5\x67\x65\x2e\xfa\x38\x05\xf8\x55\xa8\x20\x29\x09\x26\x07\xd3\xf8\xde\xb6\x8c\xb5\x17\x2b\xa3\x72\xea\x6f\xa8\x73\xae\x82\x5c\x04\x63\x83\x75\x0b\x7e\x4d\x89\x74\x92\x83\x43\xdb\x62\x6e\xb5\x21\x53\x8e\xa5\x2f\xa7\x1e\x00\x02\x70\xae\x6f\x24\x8a\x14\x14\x0b\xab\x97\xd5\x1d\x97\x61\x2b\x20\xec\x64\xce\xf4\xc5\x7b\x26\xe0\x7d\xe8\xdb\xeb\xf8\x37\xac\x42\xfa\xfb\x04\x56\x34\xe8\x85\x92\xe8\xe7\x49\xa4\x53\xd9\xfd\x81\x7d\xac\x03\xa4\xc7\xd9\x5f\x78\x0c\x91\x45\xc5\x62\xf5\xd8\xfa\x58\xbc\x5b\x2c\x8c\xb6\x0c\x84\x14\xdb\x2c\x3c\x1c\x69\x62\xdf\x74\x66\x70\x8e\x2e\x71\x44\x3e\xde\x1e\x00\x47\x80\xb1\x55\xbd\xc6\x50\xfb\x96\xea\xdc\x8f\xf4\xc9\x62\x7d\xf6\xb6\x3b\xc2\xee\x9d\x17\xad\xbb\xb5\x04\x64\x3e\x62\x56\xbf\x20\xbe\x30\x63\x73\x73\xc9\x22\x70\x39\xd5\xd8\x98\x00\x41\x33\x86\x40\x4d\x7a\x62\xe8\x2f\x29\x0c\x02\x0f\x0a\xec\x4b\xfb\x08\xb7\xb8\x77\x55\x12\x61\x85\xfb\x2f\xea\xc0\x9b\x77\x52\xaa\x41\xb7\x28\xa2\x15\xec\x9e\x46\x10\xc5\xe9\x00\xd4\x27\x6d\xa0\x22\x94\x70\x47\x43\x83\x80\x8e\x16\x1c\xae\x32\x06\xc5\xf0\x2b\x3a\x10\xa9\x76\xf0\x5f\xc5\x41\x26\xe1\x7e\xae\x85\x12\x02\xe8\x32\xc1\x47\xa8\xca\x65\x25\xd8\x58\x68\x7e\x6a\x4d\xd8\x44\xdf\xf9\x71\xb5\x1d\x91\x35\x1f\xaa\xee\x6c\xb3\x42\xc0\x41\xb1\xd0\x88\x5d\x64\x68\x25\xf3\x81\xd3\xc2\x07\x89\x00\xff\x83\x5e\x08\x22\xde\xc8\x72\xca\x9d\x76\xc1\x50\x81\x21\x1e\xdd\xb4\x70\x88\x0e\x0a\xac\xf2\xf0\x6c\x07\x01\xc5\x56\xd0\xf8\x61\x3e\x96\x58\x81\x8f\x9d\x33\x7c\x62\x40\x6b\xdf\xaf\x24\x74\x15\x40\xa5\x1d\x80\xe2\x54\xed\x94\x2d\xa4\x43\xe1\x97\x6f\x26\x0a\x2e\x93\x0d\xd1\x01\x62\x00\xa3\x00\x10\x72\xc1\x05\x77\x47\x7d\x9f\xe6\xe5\x75\xd4\x4a\xf9\x01\x02\x22\x06\x2c\xc8\x62\x09\x67\x1a\xb2\x69\x9e\xa6\x15\x27\x35\x66\xda\xc0\xdb\x56\x97\x8d\x2f\xcb\xe0\x63\xff\x04\x59\x50\x0a\x18\xc3\xf9\xda\x1e\x8c\x97\xc7\xc0\xdc\x59\x05\x17\xac\x00\xfc\x99\x1b\xd7\xa6\x27\xf0\x53\x16\x6e\x13\x37\xf4\x1e\x82\x60\x19\x7e\xcc\x28\x8c\x88\x16\x0c\xf2\x9a\xfb\x29\x77\x3b\x5f\xfd\xf3\xf6\x6c\x07\x66\x8a\x75\xc7\x22\x40\x3d\x38\x5e\x3c\xe2\xe2\xb8\x96\xfb\xb4\x01\x1d\x49\xa1\x2a\x0e\xe6\xa4\xe0\x01\xce\x6c\x2f\xd0\x56\x81\x28\xf2\x60\xc1\x1f\xce\x57\xa8\x31\x02\xaf\xbe\x44\x77\x00\xf5\x5f\xc3\xb6\x8a\x5b\xe9\x46\xc0\x53\x63\x01\xb2\xd4\x92\xea\xe3\xd8\x0f\xa1\x38\x3a\x53\x4a\xc6\xde\x03\xa0\x86\x14\xb4\x22\x12\x8f\xdf\x6b\x58\x0a\x1f\x89\x74\x53\xd3\xb0\xcb\x25\xd6\xde\xd1\x80\x42\xc7\x4b\x5d\x52\x1a\xf1\xd2\x90\x63\x06\x44\x39\xca\x0d\xbd\xf6\x64\x17\x30\x0b\xb4\xcf\x08\x04\xc7\x42\x5e\x11\x8c\xf9\xb6\x06\x8a\x4a\x6d\x22\x76\x07\x41\xa6\x23\x01\x85\xa3\xb5\xae\x07\x47\xb1\xa9\x33\x8a\x3c\x96\x98\x3f\xc0\xb5\x87\xe3\x75\x46\xc0\xd3\x43\x47\xba\x34\x29\x45\xa2\x14\x06\xf5\xcb\xb9\x59\xe4\x0b\x76\x9e\xbd\x5f\xa7\x30\x69\x53\xfa\x4e\x20\x20\x19\x05\x44\x66\x73\xb7\x49\x60\x81\x70\x4f\xf0\x26\xac\x9b\x26\xc4\x64\x6d\xe5\xb9\xe2\x45\xa4\x17\xb3\x3f\x1c\xf9\xe7\x81\x6f\xa5\xa5\x48\x2c\x2c\x83\x17\xe4\xca\xf4\xe8\xea\xa8\x90\x07\xb5\x0f\xe1\x7b\x1e\x05\x87\x9b\x15\x2a\x38\x0d\x73\x69\xe4\x96\xb2\x76\x71\x92\x7b\x40\x8c\xb4\x63\xa7\x9e\x8d\x06\x82\x90\x8a\x12\xe5\xa1\x6d\x2e\x37\x3c\xda\xb5\x33\x30\xbe\x7a\xcb\x9b\x50\x01\x5a\x27\x52\xfc\x4d\x24\x65\x2f\xf5\xa6\xd7\x08\xe3\x27\x0c\x0a\xc8\xaf\x35\x35\x52\xa4\xea\x58\x19\x1a\x04\x8c\x8b\x85\x4b\x14\xe0\xaf\xee\x92\xf5\x11\xe2\x71\x71\xc2\xe6\xf0\x5e\xc9\x51\x91\xd1\x16\x3b\x24\x49\xed\xd2\xc5\x17\x52\x3d\x40\x1d\x71\x1c\xe6\xf1\x06\xa8\x16\x9f\xa6\xca\xec\xc6\xb0\xe9\xb7\xc9\x15\x00\x85\xbe\x8f\x0b\x95\x1d\xd4\xd4\xaa\xab\xe6\xab\xdc\x2d\x98\xb3\xb0\x19\x97\x33\xac\xce\xaf\x3a\x30\xa4\xdf\xeb\x72\x63\x18\xe5\x0f\x06\x1a\x21\xdb\xf4\x99\x63\x85\xae\x34\xca\x80\xa5\xc9\x8e\xee\x3c\x23\xb5\x2a\x50\xc2\x31\x20\x64\x7e\xea\xe9\x0f\x26\xd7\xeb\xca\xab\xec\xd0\x73\x07\x4e\x0a\x3d\x01\x98\xe0\x5b\x88\x36\x65\x1e\x36\x20\x05\xf5\x92\x7b\x29\x70\x46\x12\x5a\x0d\x58\xe5\x5c\x2b\xa8\x4b\x38\x1f\x28\x87\xb1\x60\x81\x33\x2b\xf4\x88\xd7\x32\x34\x1b\x28\x29\xd1\x95\x64\xc2\x01\x42\xd5\x84\x3c\xc4\x91\xc8\x5c\x1f\x06\x34\x5e\x88\x3d\x62\xba\xf5\xa8\xaf\x51\x28\x24\x36\xc0\x3c\x8c\xb1\x14\xca\x2a\x0b\x88\x48\x84\x7c\x3b\xad\xa2\x2c\x76\x39\x17\x0e\x4d\xa2\x1b\x4d\xd5\x9a\x99\x0c\x00\x92\xe7\x09\x38\xbe\x66\xf2\xd7\xca\x96\x42\x32\x13\xcc\x94\xa4\xf8\xfa\xad\x88\xa5\x56\xb2\xb6\xd0\xf9\x35\xdd\xc8\xdb\x7a\x27\x60\x91\xca\x77\x96\xa8\xa8\xdb\xc0\xc8\x97\x63\x52\x0e\x50\xb7\xb6\xd2\x4f\x81\xa5\x36\x23\x30\x18\x8c\x2a\x16\x40\x79\xb1\x71\x3b\xee\xb5\x40\x33\xa0\x71\x94\x7f\x84\x35\x44\x28\x24\x49\xb2\x81\xcb\x89\xd3\xe5\x49\x50\xc4\x6e\xee\xb0\xa9\xec\xa0\x08\x70\xfa\xf8\x38\xb8\xee\xbc\xcd\x1a\x29\xc5\x57\x25\x72\x93\x49\xfb\x4f\xc0\x84\xc2\x96\x19\x8c\xef\xdf\x68\x12\x92\xd8\x09\x1a\xaf\x89\x44\x18\x48\x02\x93\x4a\xad\x1e\xe6\x32\x92\x9b\x1f\xc6\x8b\xc1\x08\xa8\x34\xb2\x85\x63\x64\x13\xcd\x37\x59\x1e\x93\x66\x6c\x47\x80\xa4\xc5\xd8\x31\xed\xa0\x84\x10\x36\xca\xdd\xef\x2c\x4d\x60\x9d\xab\x46\x59\x21\x60\x04\x4c\x3d\x44\xba\x46\x3d\x12\xc1\x93\x00\x30\x1b\x45\x2f\xda\x50\xc3\x69\x35\x90\x85\xc4\xbc\x7f\x86\x84\x76\xc2\xa2\xe6\xa8\xc2\x0c\xb0\xcb\x42\x97\xc0\x9a\xd5\x7a\xdc\x61\xe1\xb6\x3f\x8f\x4c\x21\x24\x7c\x23\xac\xc7\xcd\x8f\x76\x35\x60\x51\xc7\x27\xbc\x80\x6c\x3d\x02\x89\xe5\xdc\x6f\x48\xbd\x01\x0a\xa5\x07\x1c\x3f\x28\xb0\x3f\x3a\xe7\x17\xfd\xf2\xcc\xa6\x00\xea\x40\x30\xf1\xd5\x52\xd8\xb1\xf8\x6f\x02\x20\x84\xdb\x61\x83\x44\x5f\x40\xc5\xf1\x44\x2c\x28\xb9\x05\x35\xc4\x76\x68\x55\xcc\xa3\x2e\x83\x5e\x91\x35\xd1\x61\x7c\x25\xd1\x81\x17\x4f\x3d\x93\x3f\x12\x89\x7f\x17\x43\xd0\x3c\xf0\xbc\x6d\x52\xea\xb0\xba\x29\x33\x16\x43\x95\xb2\x72\x62\xcb\xe1\x80\xde\x26\x29\xd1\xc8\x47\xa6\xdf\x81\x96\x76\xb2\xf3\x66\x6d\x8a\x75\xf1\x13\xa7\x77\x2a\x89\xa8\x96\x67\x38\xa1\x01\x89\x80\x2a\x20\xae\x05\x7d\x82\x86\xe1\x6c\x17\x72\x53\x04\xa1\xe1\x51\x21\x39\xb6\x08\x9d\xef\xc4\x45\x1a\x93\x67\x53\xcd\xb0\xa8\xd8\xc0\x29\x49\xb4\x3c\xf9\x79\xf2\xa3\xd2\xbe\xe8\x65\x97\x14\xdf\xcc\x30\xe0\x1e\xb6\x44\x8a\xbd\x4a\xe1\xe7\x6c\x6a\x6a\xa4\x07\x93\xb3\x4c\xb2\xb5\xe5\x9d\xe7\xb9\x43\xa1\x74\xf2\xed\x31\x06\x27\x00\xa1\x85\x90\x7c\xb2\xff\x09\x15\xe7\x6a\x99\x90\x39\x2a\x24\x09\x00\xe0\x78\x70\x04\xfe\xed\x43\xf2\x08\x84\x41\xf0\x7c\xcb\x95\xa9\x7d\xce\xd8\x55\x33\x7f\x37\x14\x88\xcb\x30\x8f\x9e\xbb\x8c\x08\x06\x75\x09\x03\xfd\x76\x25\x44\xf7\x31\xf2\xdb\x72\xcc\xec\x56\x38\x3e\xaa\xa5\x2c\x92\x91\x5a\x05\xcd\xf1\x8d\xe6\xe3\xf7\x2b\x3f\x0d\x21\xbf\x6e\x34\x36\x64\xf3\xe6\x54\xa2\x68\xe9\xd6\xf8\x2d\x38\x24\x3b\xbc\xd2\xa0\x18\xc9\xff\xe3\x50\xa1\xf6\x0c\x4a\xd5\x08\x3c\x6d\x9a\x87\x4d\x41\x2d\x9e\x64\xab\x55\x29\x42\xac\xc0\xdd\x6d\x55\xba\x8a\xa9\x16\x22\x15\xeb\xd0\x54\xf4\xc9\x86\x15\x22\x98\x20\xb5\xdc\x71\x59\x30\x07\xb7\xb8\x7f\x95\x1e\xc5\x0e\x51\x48\x77\xd5\xd5\x6c\x01\xc1\x93\x03\x6c\x3d\xec\xe2\x2f\x0e\x46\x50\x25\x07\x30\x25\x5c\x7f\x45\x1f\xae\x12\x39\xa5\x0f\x76\xf0\xb2\x18\x35\xc5\x30\x37\x98\x06\x1e\xe4\x80\x25\x4e\x04\x53\xab\x69\x46\xd7\xcf\x0d\xe5\xe8\x5d\x75\x88\x11\x51\x6e\x95\xee\x40\xbc\x8a\x0c\xac\x57\x08\xe0\x34\xe5\x3d\x46\x3f\x97\x80\xf6\x07\xca\x90\x03\x77\x62\xc4\x43\x7b\xd3\x71\xcf\xd9\x8e\x63\x2f\x52\x97\xe2\xd9\xa9\x80\x4c\xc9\xc5\x60\x5f\xb4\xff\xeb\x04\x24\x95\xa8\x65\x74\xc0\x02\x1d\x39\x6b\xf7\x02\x10\x07\x7b\xb1\x1e\xaa\x38\xfe\x42\x05\x1d\x3e\x4f\x9e\x69\x56\xa1\xd6\xaf\x50\x18\x40\x39\x04\xc4\x77\xee\xe1\x26\xe2\xa6\x47\x5e\x96\xf2\x77\xf3\xd3\xdf\x28\x72\xae\xf3\x5a\x98\xbf\xbf\x1d\xf5\x02\x36\xaa\x4d\xf3\x4b\xa5\xc5\xf6\xf7\x19\x0e\xa0\xf0\x9c\x2b\x57\x29\x3c\xb0\xef\x6e\x4f\x92\x48\x74\x96\x56\xaa\x91\x42\xee\xab\xd7\xb6\xcb\x41\x38\x9e\xc0\x20\x88\xe2\x70\xac\x5c\x50\xf5\x6b\x3e\xd6\x1d\xa8\x82\x54\x40\xb3\x92\x9d\xd0\x99\xb0\x08\x18\x3e\x9d\xdc\x5a\x0f\x28\x82\x80\xac\x91\xd8\xc5\x52\x24\xa0\x68\xee\x95\xf8\xae\x02\x11\x14\x73\x17\x92\xb5\xf9\xa5\x88\x1b\x5c\xb6\x1a\x56\x24\x60\x3e\x6d\x08\x11\xfd\xda\x7b\x9f\x81\x89\x8a\xdb\x6c\x95\x99\x32\xb8\xb6\xe0\xd1\x23\xab\x00\x9a\x41\x21\xf0\xc2\x97\xc2\xf2\x40\xe9\x3c\x56\x05\x30\xd0\x02\x06\x18\xb2\xee\xb4\x77\x1c\x08\x14\x01\x9a\x2b\x9a\x86\x21\x9c\xa2\x4b\xbd\x61\x03\x1a\x68\xee\xf1\xe5\xd5\x58\x81\x6c\x1c\xfd\xd1\xaa\x4a\xe1\xc3\x23\xfe\x5b\x16\x7e\x0c\xc3\x62\x71\xbb\xa9\x2b\x1b\xa4\x70\x20\xdb\x5b\x00\x72\x7c\x2d\x9f\xec\xfa\x95\xd3\xef\x49\x6b\x27\x99\xa2\xdb\xab\xe9\x60\x38\x9f\x95\x5e\x6e\x83\x94\xc2\x4f\x50\x75\x25\x28\x77\x6a\x7b\x5f\x2e\x98\xdf\xc3\x13\x49\x6e\x0e\xb3\xc8\x7f\x34\xda\x9f\xac\x5c\xac\x21\xaa\x9b\x0f\x8a\x78\x85\x8a\xb6\x86\x9b\xb2\x86\x3f\x0e\x90\x6c\x49\x61\x5e\x39\xb6\x41\x81\x63\x5e\x7d\x4e\xd1\x53\x76\xe3\x57\x02\x6e\xeb\x4d\x84\xeb\x68\x41\x98\x45\xc6\x04\x18\x55\xde\x4a\xee\x01\xe6\xfe\x43\x24\x22\xed\xd8\x48\xa1\x2b\x69\xd0\x7d\xea\x0a\x3b\xb3\xa8\x28\xe8\x0b\x7a\x8c\xaf\x10\x19\xd1\xff\x96\x17\x2a\x52\x9d\x21\xa4\xb4\x61\xf8\x68\x0c\xd9\x8d\x3e\x0f\x40\xeb\x60\x23\x1a\x41\x18\xa6\x71\x69\x40\xb6\x65\x5e\x5c\x57\xd0\x15\x80\xe3\xe6\x38\xf6\x91\x03\xcf\x37\x2e\x30\xb2\x49\x0e\xec\x09\x3c\xaa\x36\xde\x12\xee\xcc\x21\xce\xe6\x60\x75\xf0\x6b\x2b\x9f\x05\x38\xb3\xa3\x94\xf9\xca\x98\x96\xc9\x3d\xb1\x21\x30\x09\x04\xc3\x90\x96\x4a\x27\xb7\x47\xd2\xb2\x2f\x62\x91\xe6\x03\xa2\x59\x06\x09\xa0\xce\x76\x6b\x90\x6b\x6a\x0e\xdc\xf1\xb6\xce\x9e\x24\x34\x04\xf7\x6f\xe1\x82\xbb\x38\x1c\xd9\x10\x4a\x3a\x78\x64\x11\xae\x0c\x7e\x14\x60\x08\x48\x38\xb9\xaf\x88\x43\x27\xa0\x91\xe7\x21\x07\x58\x60\xbd\x7a\x35\xe0\xb7\x94\x78\xb0\x37\x05\xfc\x3b\xa1\x96\xc3\x46\xa1\x85\x05\x7a\x0c\x20\x72\x4f\x0d\x27\x20\x0c\x46\xdd\xdb\xc8\x91\xf5\xdc\x5b\xc2\x15\x45\xa1\x0e\x44\xea\xef\x4e\x50\x18\x5a\xa9\x78\x88\xc3\x72\x08\xd4\xa2\x15\x19\x34\x3b\x92\x7c\x0d\x83\x0d\x7b\x5d\x34\x8f\x14\x8a\x2d\x6e\x11\x40\x39\x32\x90\x4c\x5e\x54\xbe\xcd\x63\x69\x98\x30\xf1\xd8\x18\x35\xf6\x55\xe7\xa3\x85\x61\x16\xfa\x32\x4d\xdf\x21\x1e\x1c\x21\xcc\xd0\x27\x30\xa3\x99\xc7\xc2\xfc\xc2\xac\xc7\xb1\xe3\x5e\xf0\xa0\xe5\x01\xb0\x7a\x66\x9e\x67\x9e\x0a\x29\x56\xcc\x49\x3b\xee\xb3\x66\xcf\x16\xc5\x5f\x5f\xe5\x12\x56\x0b\x77\xd2\xd2\x79\x9a\x71\xfc\x89\xa1\xc8\x18\xc6\x59\x18\x90\x7b\x51\x3d\xa0\xc2\x74\xbe\xfc\xaa\x54\xc3\xcf\x99\xe3\xd4\xae\x3e\xc1\x36\xdc\x6e\xee\xe4\x10\xd9\x7a\xe8\x38\x22\xfe\xa9\x2e\x30\x1a\xf1\x4a\x78\x35\x28\xce\xd3\xa0\x35\x93\x37\x74\x08\xd7\xad\xe4\xd6\x68\x09\x2a\x93\x95\x2f\x45\x36\x41\xa6\x75\x0c\x0f\x6c\x83\x0a\x42\x5b\x94\xc8\x22\x5c\x87\x9b\x05\xc6\x0a\x62\x3d\x4d\x8d\x57\xc0\x81\xc9\xf3\x4e\x10\xa2\x4e\xe6\x9e\xe1\x85\x58\x64\x66\x67\xa8\x48\x18\x81\x45\x1f\x38\x14\x95\x3b\xca\xbc\xd5\x9d\xc9\x0d\x43\xa7\xc8\x78\x06\xed\x60\x0a\x68\x14\x42\x64\x9e\x86\x2c\x82\xad\xbb\x08\x8f\xe4\x95\xe9\x19\xd4\xb8\x10\xe0\x22\x44\x7c\xd7\xdd\x1d\x7a\xc8\x00\x13\x21\xec\xde\x63\xa6\x60\x18\xa3\xfc\xad\x74\x89\xe0\x95\xac\x0f\x2e\xd0\x18\x12\x90\xb8\x5e\x87\x3a\x5b\xf1\xe3\xc4\x6f\x15\x17\x9b\x9b\x26\xb3\x30\x5c\xca\x03\xc8\x4f\x7f\xe5\xa3\x40\x8a\xbc\x8c\x0e\x20\x3a\xd6\x64\xa8\x72\x01\xa3\x6c\xaa\x4e\x2a\x14\x2a\x48\xd3\xfb\x73\x2e\x42\x61\xdb\x01\x8f\x57\x03\x4d\x59\xc6\xe2\xd9\x32\xb9\x3d\x60\x4f\xf4\xda\x85\xfc\x16\x7e\xb7\x44\x19\x01\x84\x04\x98\x44\xcb\x2d\x06\x1d\xc5\x0b\x96\xe8\x5d\xc6\x7a\x4c\x1b\x27\x9d\x8a\x62\xe0\x4e\xc1\xbc\x3c\x11\x7b\xce\x2e\x13\x27\x75\x80\x74\x64\x1e\xe3\x2d\x82\x64\xe4\x72\xdc\xc8\xd0\x1d\xe4\x1f\x3c\x0a\x4e\x69\x80\x03\xbd\x60\x09\x11\x73\x11\x9c\x82\x42\x0d\x0c\xcf\x23\xb8\x86\xfb\xba\x2b\xb9\x1f\x41\x2d\x42\x8e\xe0\x2e\xc3\x61\x4e\xd7\xe6\xb4\xcd\xb1\xab\x68\x02\x54\x33\x16\x35\x9a\xcc\x94\x97\xbd\xe2\x4a\x67\x9f\x6f\x72\xef\xe2\xcd\x4a\x0e\xc7\xfe\x65\x0c\xde\x17\x4c\x07\x4c\x5a\x4a\x59\xcd\x3a\x52\x24\xd0\x0b\x4c\x01\xc0\xd8\x86\x2a\x88\x97\x48\x20\xa0\x08\xeb\x13\x79\xcd\xb2\x4d\xbf\x2f\x3d\x31\x0a\x92\x24\x27\x7d\x81\x78\x8a\x94\xa4\x98\x26\x71\xf9\x35\x3a\xa6\x26\x23\xd3\xa6\x9a\xf8\x1d\x65\x9d\x3c\x39\xea\x4e\xbf\xc4\xe7\xa4\xe1\x8a\xcf\x0e\x7d\xcb\x92\x5c\x1a\xb7\x89\xcb\x4d\xfa\x0d\x13\x90\xa8\xb4\x92\x3b\xc7\xca\x69\x80\xdd\x04\x24\xd2\x92\x36\xbe\x17\xd9\x0d\xf8\x6c\xfd\x1e\xc0\x87\xf9\xe1\x3c\x46\xc5\x9c\x7e\xfb\x4a\x34\xdd\x62\xc3\x89\x30\x45\x1c\x3a\x56\xea\x09\x32\xf5\xca\xf1\x50\x7d\x34\x74\x43\xac\x68\x24\x72\x83\x82\x30\x8a\xb1\x34\x19\x46\xac\x76\x90\x61\xd4\xb1\x97\x32\xa9\x80\x10\x2c\xeb\x9a\x06\x6a\xbe\x67\x63\x0f\x80\x13\xc6\x54\x03\xf9\x9c\xec\x9c\x78\x51\x7e\x34\x5a\xc0\x1a\x96\x7d\xba\x37\xdb\xc5\x81\x96\x6d\xb0\x88\x34\xfa\x53\x60\xd6\x3c\x4b\x39\xb1\xfb\x73\x5a\x50\xa9\x86\x95\x1b\x95\x56\x1c\x2a\x8a\x4e\x67\xc2\xdb\x29\xd0\xa0\x63\x10\x3c\x15\x74\x00\x64\x79\x80\x73\x95\x06\xd1\x46\x93\x6c\x57\x19\x1f\x55\xbe\xea\xa1\x31\x84\x28\xae\x99\x17\x64\x93\xab\x7a\xb0\xbe\xc2\x6b\x19\xb5\x83\x38\x67\x3a\x85\x33\xcf\xc9\x46\x4b\x88\x67\x81\x30\x02\x9b\x97\x5f\x1c\xc0\x63\xdc\xb9\x92\x0f\x78\x0e\x2f\x58\xe9\x4b\x9c\xf9\x40\x0f\xc4\xb6\xb2\x80\xc9\x07\x87\xda\x4b\x03\xa3\x2a\xa9\x38\x9c\x30\xdc\x55\x61\x02\xaa\x20\xc1\xa8\x5f\xb0\x03\xde\x37\x00\x1b\xfc\xa1\x99\x84\xb9\xb7\x23\xad\xd4\xbf\xe5\x81\x1e\x12\x03\x8a\x16\x4f\x81\x48\x73\x67\xd5\x58\xd3\x0a\xf0\xde\x97\xc9\x1a\xc2\x78\xd8\xb4\xd1\xf2\x48\xce\x89\xf9\xf6\x9c\xbb\x2d\xed\xd7\xc9\x64\x3b\xe4\x22\x9c\x20\x7c\x42\x07\x59\xae\x72\x16\x4f\x00\x4a\x8a\x69\x9a\xc8\x70\x2a\xd0\x39\xa0\x66\xc0\xdf\x18\x26\x79\x20\x41\x12\x2d\x62\xc2\xb6\xdd\xcb\xfd\xc7\x3a\x06\x95\x17\xbb\x38\x27\x6d\xad\x4e\x0c\x80\x5b\xb4\xe2\x45\x85\x62\x51\x0c\x55\x03\x5b\x30\xcf\x06\x2d\x6f\x17\x0c\x04\xcb\x82\x88\xdd\xa8\x6a\xdb\x42\x69\x4b\x75\x01\x9f\x76\xdc\x13\xda\xff\xea\x38\xe1\x5e\x58\x1e\x7e\x3b\x08\x26\x29\x63\x89\xce\xb9\x71\x5c\xd2\x3f\x0e\x7b\x4a\xc6\x54\x15\x1a\xc8\x76\x66\x14\x54\xa9\x81\x68\x84\x63\xed\xc3\xaa\xc7\x48\x22\x48\x29\xa5\x23\x96\x04\x28\x97\xb4\xea\xf7\x0c\x98\xd0\xf2\x02\xe1\x93\x88\x10\x48\xca\x53\x79\xb0\xd7\x38\x47\x50\x69\xc8\x53\x0c\xe4\x31\x69\xc2\x65\xe2\xd0\xb8\x3c\x8f\x8b\x5c\x9a\xce\x92\x1e\xaf\x4e\xc0\x1e\xa7\x55\xbf\x25\x6d\x1a\xa8\xfa\x21\xeb\xb9\xd4\x82\xaa\x67\x94\xd0\xe7\x7d\x6d\x6a\xdc\xf8\xe3\x91\x43\x18\xa4\xec\x13\xaf\xb6\x00\x9f\xa4\x33\x2e\xb6\x16\x0f\x8c\x41\x5e\xa5\x7a\x38\x78\xcb\xc5\xd5\xaf\x12\xab\x4d\x6a\x8e\xe1\xe0\x16\x34\xe1\x34\x77\x86\x20\x76\x26\xd5\xaa\xa4\x52\x7e\x8d\x10\xd6\x12\x0e\x95\x54\xd6\x17\x76\x24\x00\x74\xd0\xe2\x98\x45\x4d\x47\x18\xc2\x22\x94\x60\x95\xc9\x36\x32\x9c\x4e\xc6\x6b\x40\x62\x28\x10\x1b\xc0\x67\x8e\xec\x14\x11\x8d\xd3\x05\x1d\xf5\x6c\x14\xf3\x98\xb2\x85\x4c\x5b\xd0\x02\x16\x60\xa5\x3d\x8f\x92\xc1\x29\x68\x1c\xb6\x6c\xca\x09\x02\x61\x5f\x3e\x51\x05\x06\x7b\x80\x37\x20\x21\x5d\x5f\xae\x42\xd2\xa8\x96\xd0\xdc\x3c\xb1\x38\x31\xed\x59\xc4\xc3\x98\x7f\x56\x86\x46\xb3\x49\x00\xff\xe1\x01\xb9\x1b\x11\x00\x09\x4b\xe1\x1a\x1b\x6b\xc3\x53\x8a\xba\x42\x86\xff\x56\xbb\xd8\xcc\x9c\x96\x9e\x40\x65\x4f\x0d\x77\x9f\xba\x49\xb4\x27\x24\x8c\x64\x18\x7c\x0e\xee\x36\x02\xbc\x8b\x0f\x80\xa1\x95\xcd\x80\x40\x8b\x7e\x4c\xd7\x24\x39\x0f\x4f\xf3\x89\x09\xc7\x92\xa0\xa1\xc2\x84\x5b\xc3\x04\x14\xc9\xa8\xaa\x3d\x4b\x8b\xcd\x5b\x8e\xa5\x92\x68\x4c\xfd\x04\x79\x6b\xbf\x68\x8c\xac\xba\x97\x76\x09\x6a\x2a\xfc\xac\x00\x46\xc7\x28\x10\x39\xf9\x6a\x32\x14\xcd\x80\x1e\x4a\xff\xee\x33\xe9\xab\x92\xb5\xba\x89\x68\x12\xb5\xe4\xde\xde\x8c\x5c\xb4\x07\x45\xcd\x4a\xa8\x31\x0c\x0c\xf0\x35\x52\x46\x9b\xa7\xcb\x65\x13\x2e\x0d\x9f\x2e\x4f\x27\x19\x15\x9c\x1d\x39\x00\xa4\xda\x22\x52\xaa\x09\x08\x38\xd4\xf2\xb3\x18\x36\x7e\x0a\x58\xfa\xb5\x24\xe9\xa9\xbc\x9b\x2e\x44\x4f\x04\xc3\xd7\xb5\x62\x0b\xc2\x6e\x4d\xa2\xc6\xd6\xa9\xfc\x8f\x97\x42\xce\x69\x1b\xb9\xc3\x96\xda\x50\x8b\xdd\xb1\x12\x01\xe9\x50\x79\xc7\xbb\x95\x7d\x29\x13\x30\x6d\xce\x60\xb1\xee\x8e\xf0\xf2\x25\x8c\xe3\xe0\x91\xc7\xdb\xf0\x4d\xbb\x9a\x70\x4d\xae\xdb\x92\x01\x1b\xd6\x15\x22\x65\xad\x2c\x21\x52\xa0\x05\x71\x43\x47\xc6\xf4\x22\xba\xf0\xb7\xac\xe8\x08\xdb\xb8\xb6\x12\x50\x26\xc4\x11\x2f\x49\x71\x89\xba\xdb\x93\x32\xee\x35\x9d\x66\x21\x1a\x9a\x94\x0f\xed\x78\x13\xc1\x6b\xfa\x34\x98\x99\x72\x14\x70\x3b\x4f\xb9\x91\xde\x36\x3e\xcf\x4d\x50\x16\x35\xa0\x50\x6d\x2a\x15\x0b\x37\x10\x26\x58\xb3\xe8\xe6\x19\x04\x22\x30\xea\xc4\x3f\xd2\xb7\x1e\xa3\x41\x45\xaa\xf8\x33\x57\x7f\x34\x06\xda\x35\x21\xc7\x31\x1e\x1b\x3b\x08\x70\xc5\x2c\x22\xc2\x71\x4c\xe9\xab\x4e\x10\xd4\xc2\x89\xf4\x0b\xa6\x8a\x40\x83\x93\xc4\xeb\x67\xab\x6e\x6a\xa8\x86\x82\x66\xb7\x0c\x23\xe9\x07\x54\x86\x2f\xfd\x76\x55\xa7\xe3\xbc\xd0\xee\x29\xec\x5e\x8a\x13\x80\xb3\x43\x7d\x46\x97\x9c\x91\x2b\x44\xac\xcc\xaa\xf9\xf9\x37\x65\x28\xfd\x0f\x68\xbc\x58\x2e\x4e\xe0\xa4\xe2\x31\xce\x8d\x4f\x6e\x11\x4d\xb7\x79\xde\x3f\x35\x6b\xdd\xa8\x49\x9c\xed\x06\xf5\x19\x22\x4c\x8e\x9a\x1a\xa0\x20\xaa\x59\xf5\xb4\x7a\x2e\x22\x96\xf5\xe3\x92\x95\x0d\x1a\x6b\x7b\x39\x16\x2e\x6d\x14\x8b\x6b\x95\xd3\x79\x8a\xea\xe3\xcb\x3b\x4d\x9e\xde\x35\x92\x4e\x8c\xd6\x8e\xb3\x45\x23\x11\x8a\xf7\x4b\x1c\xee\xa0\x6e\xf0\x16\x75\x39\xc2\x60\x98\x2e\xf7\x51\x8a\x44\x6e\x8e\x0b\xd7\x6d\x58\x09\xb9\xf5\x1c\x64\xc9\x3b\x97\xbe\x0e\x06\x38\x1b\xd4\x11\xcc\x5e\xb1\x1a\xf1\x25\x52\xc6\x40\xf2\x57\x2f\x82\xc8\xe4\xd1\xd3\x05\x77\x90\xb4\x7b\x7d\x68\x39\x28\x49\x13\xa9\x2c\xa6\xcf\x6e\x54\xdb\xd2\xad\x7a\x54\x75\xc0\x09\x52\x32\x0a\x88\x57\xd0\x89\xd7\x3d\x53\xd5\x2d\xff\xe1\x0d\xab\xc3\xdc\x3e\xde\xac\x3c\xde\x9d\x62\xe0\xfb\x85\xb8\x66\xbc\x2d\xcd\x5e\xad\xb6\xda\x4d\xf9\x58\xe1\x3d\xd0\x36\x31\x27\x09\xba\xb8\x4b\x03\x80\xe1\x1b\x86\xc8\xe7\x55\x80\x65\x78\x7c\xb4\x3d\xa8\x5c\x07\x74\x73\x80\xd5\x70\xe1\x12\xcd\x0d\x18\xd9\x08\xb1\xda\x65\xfb\x0b\xf6\xc2\xe1\x02\x43\xe1\xac\xbf\x01\xe2\xe5\xde\xa5\xcc\xb7\xcc\x48\x66\xb0\xb1\x28\xf6\x28\x8f\x5f\x67\xca\x98\x88\xe2\x1a\xe3\x1e\x44\x82\x8f\x8a\xb3\x1d\x80\xe2\x88\x20\x4f\x94\x37\x36\xbb\xa0\x0c\x00\xbe\xc6\xe2\x85\x7a\x21\xb2\x74\x73\x31\xb1\x55\xc5\x12\x0d\x8d\x17\xf9\x00\xca\xe5\xbe\x08\x66\x48\x37\x3a\x40\xfc\x2c\xca\x2b\x43\xc0\x67\x92\x6e\x65\x19\xa3\xa8\x51\x68\x69\xca\x23\x1b\xb6\x30\xef\x94\x5e\x7f\x82\x96\xbf\x0f\x95\x1b\x28\xd9\xa4\x46\x89\x94\x64\x80\xca\x35\x69\x13\x41\xa8\xa3\x43\xbc\x6b\xee\x4c\x3b\x88\x59\x6e\x92\x8c\xe5\x72\x8a\xc1\x68\x2f\x2b\x62\xac\x35\xcb\x28\xbc\x51\x74\x65\x15\x83\x9b\xdb\x14\x58\xb7\xce\x67\x72\x8b\xe0\x9b\x6f\x61\x45\xca\xb9\x84\x72\xad\x5c\x84\x3a\x26\x4d\x0d\x0a\x2f\x87\x34\x30\x28\xa6\x6d\x11\xae\x11\x40\xbb\xc3\xc0\x2e\x90\xa1\xbf\xc4\x5d\x51\x00\x70\x8a\x16\x8a\x56\xd3\xac\xb8\x2b\x86\xc2\x82\xc1\x61\x19\x91\x5f\x94\x2b\x86\xc1\x1e\x4e\x75\x51\x42\xd5\xac\x89\xaa\x26\xec\xea\x8a\x11\x5b\xc1\xd9\xe1\x42\xf1\x5f\x64\x65\x33\x45\xa3\x89\x13\xda\x41\x11\x22\x43\x8a\x38\xa1\x4d\x2b\xa1\x03\x11\x41\xb8\x71\x00\x27\x5e\x28\x43\x5e\x3e\x72\xe5\x09\x23\xf3\x62\x04\x14\xaa\x24\x04\x20\x30\x92\xc9\x45\x50\xa3\xf8\x82\x22\x85\x78\xf8\x7d\x9b\xad\xca\x44\xb3\x7f\x9b\xd1\x73\x8e\x98\xe8\x55\xd4\x7b\x18\x22\xc0\xad\xfb\xf6\xed\xd3\xa9\xec\x0b\x3f\x0b\xc5\x06\xd5\x5d\xc5\x18\x96\x8b\x22\xde\x78\x01\xd3\x70\x74\x1a\x17\x7f\x49\x5c\x7a\xc1\x5a\x00\xc9\x14\x17\x3f\x29\xc8\x55\x15\xa9\xb8\x2d\x6f\x42\xb0\x8e\xa5\x8a\x45\x53\x1b\x11\xba\xf4\xc8\xb8\x34\xd7\x08\xd7\x08\xc6\x40\xc8\xb8\x6b\x9d\xdc\x09\x54\xe9\x41\x60\xd6\xa9\x6b\x35\x24\xe7\x6e\x42\xd8\x43\xdb\xd9\x93\x0b\x3e\x58\x91\x13\xd7\x10\x34\x98\x75\xcf\x47\x4a\x28\xa4\xed\x1b\xcb\x91\x7c\x90\x9c\x11\xa6\x78\x37\xd9\x51\x58\xf2\x31\x40\xb4\xd0\x84\x20\x5a\xdb\x12\x2e\x5b\x74\x25\x50\xda\x4c\xc3\x68\xa6\x5a\x03\x75\xdf\x38\x1f\xa5\x3b\x0a\xc5\x56\xc9\x28\xc8\xef\xcb\xe0\x7f\x56\xca\x7f\x02\x5d\xfa\x24\xa4\xb1\xbc\x03\x86\x08\x0d\x21\x61\xaa\x21\x23\x07\xe5\xd0\x22\x93\x08\x5b\x82\xc4\x85\x6e\x34\xd1\xfd\x3c\xff\x13\x80\xc8\xb9\x47\x8b\x04\x4c\x16\xa7\x2f\x48\x13\x35\x5a\x12\x27\xf7\x24\xb5\x8a\x25\x52\xad\x94\x0d\x7c\xe7\x23\x8c\x2e\x64\xa3\x54\x1e\x85\x63\xc5\x26\xb5\xca\x93\x5e\x91\x35\x17\x3f\xd5\xf9\xe5\x23\x42\x80\x72\xb1\xdb\x50\x80\xc9\x87\xc3\x4d\x35\xdc\x38\xcc\xae\x33\x27\x64\xc9\xcf\x09\x20\x72\x9a\xf0\x8e\x41\xda\x55\x03\xe5\xcb\xc3\xe5\x96\x02\xf3\x6c\xfe\x08\xd8\x0c\x31\x3c\xf7\x60\xc4\x12\x03\x6d\x81\xf8\x60\xb2\x84\x75\x79\xa9\x66\x9f\x22\x99\x8f\x9e\x30\x32\xc1\x10\x89\xfc\x21\x3c\x5c\xc9\x09\x2f\xb0\x4f\x0c\xcb\x5f\x03\xce\x52\x7d\xb2\x12\xd8\xc6\x3c\xbd\x5a\x5d\x1e\xe4\xab\x10\xd9\x3b\x1b\x6c\x3f\x9c\x67\x20\x29\x2e\xe9\xcd\x47\xa4\x51\x2b\x4c\xd2\xc9\x6a\x12\x2c\x81\x8e\x42\x8d\x66\x9d\x87\x65\xe4\x63\x18\xdd\x4e\xbb\xf9\x9c\xae\x9e\xd2\x71\x3f\xc1\xf7\x2e\x12\x71\xd0\x9d\x84\x53\x6c\x2e\x70\xb7\xb0\x4a\x8a\x84\x9c\x54\xbd\xab\xb9\x3c\x5c\xc3\xfa\x81\xf0\xb5\xa5\xd2\xf6\xc3\x00\xd2\x74\x0f\x3c\x1c\xae\x1d\x3a\x0f\x58\x2e\x3e\xcb\xea\x61\xa2\x8f\x59\xb0\xb3\xd7\x1e\x3f\xa1\x75\x75\xc9\x85\x8b\x52\xd7\xf5\x8c\xe3\xd8\xa9\xfa\xb6\x62\xc2\x16\x9a\xf3\xb5\xf3\x7a\x8a\x01\x83\x9c\x99\xcc\xb2\x9e\xad\x23\xf3\x94\x28\xfc\x1b\x13\x83\xc9\x45\x4c\x5a\x88\x9c\x5e\x16\xcc\x08\x89\x33\xfe\x57\x23\xd0\xca\xb5\x66\x5a\xb2\x3a\x31\x90\x4e\xa7\x95\x94\x83\x99\x5d\x83\x87\x19\xdc\xb2\x47\xf1\xcc\x8d\x5c\xbb\x1b\x5b\x5c\x34\x29\x6a\x98\x95\x0c\xda\x70\xa6\x61\x33\x92\x8d\x0e\x05\x42\xd4\xa7\x67\x88\x2a\x0d\x3f\xc1\x71\x03\xa5\xd5\x3a\xb4\x2b\xdd\x80\xd9\x88\x63\x19\x2d\x8d\x2c\x30\x71\xde\x62\x6f\x04\xc6\xdd\x05\xe7\xcb\xc1\x72\x40\x47\xb5\xea\x3d\xe8\x84\x29\xc3\x6c\x1a\xa7\x00\x25\x34\x1c\xbd\x05\xd4\xd6\x28\x1b\x8d\x2a\x18\x94\x81\xdc\x42\x5e\xd4\xe8\x4e\x23\xc0\xa0\xe8\x4d\x90\x76\x04\xb9\x3a\xc2\xa2\xee\x6c\x2d\x1e\x67\x18\xa5\x20\x71\xa4\x84\x78\x8f\xfb\x54\x71\x22\x0e\x2b\x7f\xc0\x4e\x51\x9d\x17\x25\xd1\x95\xfd\xcc\x47\x5f\x97\x79\x48\x74\x4f\x65\xc6\xc1\x87\x3a\x07\x45\x79\x51\xd9\x68\x82\x1d\x82\xaf\x49\x3a\x8d\x91\x4a\x01\x24\x35\x50\x40\x84\x3f\x78\xfc\x25\xbc\x07\xec\xae\x3e\xe3\xa9\xd0\xac\x09\x85\xbd\xec\xa2\xa7\x14\x5d\x98\xaa\x99\x20\x63\x24\x88\x6c\x0d\x1d\xc2\xf2\xc0\x28\x9c\x0a\x2a\xe5\x57\xc6\x1b\xfe\x0e\xa9\x0b\xe7\x5d\x48\x46\x78\xd0\x7d\xe6\xc3\xca\x1a\x94\xe0\x7f\xd9\x2e\xf5\x64\x20\xa4\x3a\xbb\x2a\x8c\x6a\xae\x36\x2b\x09\x58\xb0\x45\x76\x1b\x2a\x38\x3e\x97\x8a\x46\xf5\x6a\x34\x37\x31\x67\x0b\x9a\x9d\x83\xd8\x51\x81\x24\x5f\x25\x83\x78\xec\xa5\x40\xc4\xdd\x70\xd0\xc2\x26\xf1\x25\x4a\x97\x3b\x7f\xc0\x13\xc7\xc0\x16\x51\xc9\x0c\xc7\xaa\x32\x3e\x7c\x82\xa0\xf1\x0b\x55\x05\x42\x2c\x39\x92\xa4\x99\x23\x22\xf8\x18\x0f\xd1\x23\x5d\x46\x20\xc5\x2f\x5c\xfc\x05\x78\xdc\xfb\x05\x6e\x21\x07\xac\x68\x68\x5d\xae\x24\x74\x28\x64\xf9\x62\x27\xe3\xf5\x71\x57\x18\x28\xcc\xba\xe8\x35\x2a\xe1\x4d\x40\x05\x00\x74\x45\x38\x13\xf5\x1c\x20\xa3\x0f\x68\x61\x80\x4b\x56\x91\x2c\xee\xeb\xc2\x17\x98\x2c\x7c\x1d\x0b\xca\xbe\x1d\x50\xec\x1e\x9a\xe9\xce\x02\xb6\x1c\x3d\xf1\x1f\xcf\x3c\xcc\x08\x28\x55\x17\xcd\xfa\xc9\x53\x85\x19\x17\xc2\x1f\x7a\x1f\xb1\xb0\x72\x60\x2b\x92\x95\xcf\x44\xc3\xdc\x17\xf0\xcb\x74\xaa\x6c\x0e\x21\x11\xc1\x01\xa0\xa5\x38\x9f\x0d\xc4\xdb\x81\x82\x20\x15\xd2\x94\x91\x49\xbc\xfe\xc0\xa9\x18\xdd\xa0\xca\x28\x38\xf7\x78\xe1\x4e\x0d\x54\x0d\xb0\x81\x1a\x2d\x88\xe9\x67\x67\xa7\xe3\x66\x26\x14\x58\x5b\x3b\x38\x23\x28\x63\xe4\x54\xaa\xc1\x63\xd6\xab\x65\xf1\x3b\xb5\x91\xc7\x1a\x46\xed\x02\x82\xe6\x37\x0e\x18\x62\xb7\x88\x31\x3c\xb9\xfc\xa3\xae\x85\xe1\x07\x6e\x62\xc3\xec\x94\x51\x9d\x95\x96\xd9\x15\x4d\xd0\xd7\x49\xa9\xfb\xe2\xb5\xc9\x11\x1e\x71\xc0\xd1\x01\x02\xd9\xed\x23\x00\x80\x36\xda\x15\xc4\xa8\x4d\x7a\xd0\x31\x81\x8b\x4c\xeb\x2d\x00\x05\xdf\x53\xcd\x88\xe9\x44\xfe\x41\x90\x64\x9c\x8d\xc7\xed\x29\xd5\x01\x69\x68\x2c\x47\x87\xe9\x73\x7d\xc7\x81\x05\x6e\xc5\xf1\x76\x31\x23\xa0\x5a\x47\xa9\x40\x90\xba\xef\xe8\x49\xf5\xd1\xb8\xff\x04\x00\x24\xe7\xa1\x44\xbd\xd6\x7a\xaf\xa5\xfa\x96\xd8\x0e\x3c\x06\x27\x69\x8d\x90\x22\x17\x74\x5a\x52\xe8\xdc\x6c\x12\xe8\x11\x1b\xb9\xc2\x4e\x2c\x7c\x41\x40\x35\x93\x8d\x9d\x96\xb2\x09\xa7\x60\x8f\x9d\x82\x8a\x81\x8d\xcd\xac\x46\xf6\x91\x1b\xa0\x7e\x2c\xed\x25\xc0\xd4\xe3\xf5\xed\x1f\x7d\x23\xd4\x23\x34\x74\x9c\x68\x56\x90\x80\x9e\x72\x43\xe0\x8d\x54\x05\x05\x17\xd2\x86\x28\x28\xa5\x9e\xca\x5e\x74\xdf\x43\xc4\x87\x5f\xad\x00\x1f\x44\xb3\x86\x2c\x73\x6d\xc9\x78\x90\x2a\x53\x4c\x84\xce\x0f\x74\x43\x80\x47\xe4\x46\x0c\x2c\x34\x0e\xc5\x56\x34\x1a\x0e\xd2\x42\x19\xad\xc5\xa8\x32\xce\x84\x16\x09\xa2\xb3\x3d\x55\xa1\xa4\x91\x86\x7c\x11\x4a\x35\x86\xbe\x00\x77\x61\xb9\x05\xf8\x97\xe6\x80\x1b\x8c\x42\x94\x9e\x07\x6a\x4d\xb2\x20\x4c\xed\x86\x5b\x11\x88\x12\x0d\xa2\x0d\x05\x48\x3b\xb7\xa0\x89\x51\x84\x14\xf7\xa4\xc0\x6d\x88\xf8\x29\x53\xc0\xb3\x52\xb5\xd2\x00\x5d\xfb\xa8\x92\xbd\x12\x29\x02\xb4\x12\x86\x3b\x5e\xc3\xa1\x17\xf2\x5e\x1c\xe7\x25\x40\x8e\x83\x55\x83\x39\xde\xc6\xb9\xbd\x24\x0b\xe5\xa4\x43\x90\x47\xe5\xa9\xc2\x24\xfc\x00\xf6\xd4\x2a\x1d\xb5\xf8\x5c\x69\xc0\xa2\x1e\xc7\x35\xcf\x78\x1c\xff\x2a\xa2\x8c\x63\xc2\xe3\xc2\x3a\xc7\xe4\x36\x35\x46\xc4\x23\x43\x3d\xa4\xb7\x13\xdd\x14\xa4\xce\xfb\xba\x6f\x90\xe5\x96\x04\x71\x1a\x1c\x77\x84\x0f\x8e\x04\xc0\x70\x38\x60\xa2\xa0\x9e\x03\x81\x54\x70\xa2\x64\x1b\x60\x4a\x7e\x37\xdb\xc7\x80\x0d\xb7\x80\xc5\x76\x7f\x0b\xf3\x94\xc1\x0c\x5b\x5c\xaa\xc5\x3f\x6c\xea\x53\xc7\x1c\xbd\x9b\xf1\x61\x40\x8d\x19\x24\xa3\x81\x46\x06\xc0\xdf\xcb\x9e\x19\x0d\x00\x55\x47\x2c\xcf\x87\xb4\x03\x5b\xe2\xf1\xa2\x43\x10\xe0\xea\x15\x67\x26\x8e\xd8\x0d\x6d\xb8\xed\xa2\x22\x8b\xf8\x45\xd7\xbd\x9f\xab\x53\x70\xb6\x6f\x93\x90\x36\x0e\x90\x99\x47\x4e\xbe\x8c\x20\xdf\xe1\x33\x87\xc3\x05\x56\x80\xe2\x98\xa4\x0b\x63\x90\x3f\x8e\x79\x9e\x22\xe7\xc0\xef\x3c\x27\xbd\x41\x2b\x7e\x43\x36\x17\x5b\xef\x04\x53\x7b\x84\x01\x17\x28\xb0\x4f\x62\x0c\x6d\x4a\x8c\x6c\x94\x24\x3b\x21\x4a\x33\xa1\x63\x9b\x36\xcc\x4f\x7a\xea\x14\x5e\xa0\x81\xc1\x31\xe5\x10\xdb\x5b\x19\x00\x00\x17\x80\xbb\x6d\xab\xbd\xc1\xb5\x96\x8a\x62\xc2\x1a\x46\x42\x15\x11\x08\x19\xa4\x56\xee\x5e\x3c\x3c\x16\x71\xa0\xb8\x01\xad\x14\x44\x14\xc1\x25\x61\xe1\x87\x0a\xd9\x85\x15\xbb\x41\xbc\x1b\x06\x74\x8d\x5b\x3a\x90\x84\x29\x9f\x21\x0b\x1c\xb4\xac\x89\x55\xc4\x62\x99\xf9\xb5\xf9\x5a\x6e\x54\x21\xaf\x4e\xba\x69\x94\xe6\xb8\xb6\xd9\x94\xd0\x4f\x56\x54\x82\x70\xf2\x42\x2a\xa5\x3b\x2c\x04\x38\xea\x46\x91\xd3\xf4\x70\xb8\xa6\x50\xac\x66\xa7\x3c\x25\x51\x9e\x70\xaa\x2b\xa0\x06\x86\xc4\x77\x37\x14\x66\x89\xa2\xbe\x56\xb4\x1e\x06\xdc\x80\xcb\xd4\x8c\x9b\xaf\xe4\x5a\x96\x32\x48\xb8\xb9\x27\x2e\x9c\x77\x15\x52\xe5\xa5\xfc\x6b\xd6\x18\x39\xd6\x54\x83\x57\xc4\x6d\xd8\x3e\x92\x3f\x6f\x5f\x66\x0d\xff\x4d\x34\xd4\x72\xaa\x56\x37\x71\x4a\xd9\xe5\x38\xc8\x2e\x0d\xa3\xe0\x58\xf4\x76\xb8\x0a\x2d\x38\x85\x30\xc7\xf9\x65\x72\x3a\xf1\x05\x97\xc4\x9f\x86\x4b\xea\x3f\xe7\x8f\x0d\x24\x4b\x73\xdf\x48\xb1\x67\x0c\x3f\xc8\x65\xde\xe4\xb3\xb2\x97\x6d\x7f\x27\x52\xa3\x85\xa8\x86\xd6\x55\x2c\xc5\x07\xa6\x25\xf2\x79\x8d\x3b\xf9\x83\xf6\x17\x00\x74\x6b\xf7\xec\x6b\x61\x92\x40\xa5\x98\x69\x40\xb8\x19\x9a\x2e\x6a\x19\x81\xe8\xa0\x37\x3d\xcb\x83\x44\x3f\xb4\x0c\xde\x2e\xab\xbd\xf7\xc1\x2d\xa1\x43\x1f\x64\x31\xc3\x82\xdb\x0b\x04\x11\xa4\x38\xe3\x9f\xce\x4c\xa1\xed\xa0\x35\x20\xd4\xa9\x39\x50\x87\x11\x62\xa1\x43\x32\x2d\x08\x4a\x15\x0c\x12\x6f\xb5\x53\x97\x93\xb7\x7f\x6d\xd2\x9e\x22\x99\x26\x46\x58\x79\x27\xa4\x62\x4a\x68\xae\xc3\xe5\x5f\x33\x9b\xa6\xcb\x75\x6f\xae\xc9\x99\x52\x4f\x89\x54\x11\x0a\x14\x7a\x82\x15\x27\x1f\xe8\x59\x4b\x42\xce\xb9\x44\x94\x59\x1e\x24\x41\x0f\x9a\xe8\x36\xbd\x48\x96\x9d\xa0\x21\xc5\xc1\x91\xcb\x96\x2c\xca\xf1\x95\xd4\x22\xa5\xf1\x38\xb4\x20\xa2\xfb\x50\x76\xeb\xc4\xd5\x6a\xc6\xa5\x52\xd7\x02\x10\xec\x48\x89\x12\x14\x7d\x89\x59\x32\x43\x4a\x40\xe2\x70\xb0\x40\xe5\x3e\x98\xb8\x29\x2e\x31\xd8\x22\x65\x8c\xfa\x6c\x8b\x8e\xbe\xb0\x00\xfb\x6e\xb9\x54\x6e\xc2\x54\x21\xc2\x80\x63\xa4\x1d\x59\xe7\x80\xae\x14\xbe\x5d\x8a\x07\xda\xa0\x05\xd2\x9d\x80\x4b\x78\x2a\xb3\xe3\xa8\xd5\x56\x40\x14\x02\x93\x63\x6b\x58\x82\x77\x16\x37\xb9\xa7\x36\x03\xaf\x19\x65\xa6\x9d\x55\xac\xb0\x15\xd5\x32\xc7\x4e\x82\xf3\xbb\x07\x80\x75\x77\xed\x86\x80\x27\xf9\x33\xd2\xd4\x5f\x43\xa7\xc6\xa6\x43\xbc\x72\x3d\xbf\x41\x65\xf6\x26\xcc\x06\x04\xe7\x2c\x5f\x79\x32\xa5\xea\x3a\x0f\x7e\x14\x71\xe2\xeb\x8b\x87\x1d\x9f\x7a\x57\x94\x9e\x2e\xa4\x67\xa8\xab\xd5\x4c\x3a\x6a\x03\xe0\x94\x10\x82\x8e\x51\xd2\x89\x2e\x22\xba\x08\x56\x0d\xd4\xc2\x41\x22\x32\x2b\x95\x18\xe6\x5d\x7a\xe9\xe3\x41\x34\x34\xe8\x2e\x2b\x43\x12\xb6\x62\x7e\x08\x85\x64\x0d\xab\x2f\xe6\x76\x8f\xba\x0e\x7a\xac\x9a\x03\x17\x45\xa4\xac\x21\x9e\xe7\x8f\x62\x30\xb7\x02\xd5\x3b\x98\xe2\xd2\x42\xa1\x38\xbb\xbe\xf3\x48\xc8\x39\x0a\x77\x07\xf2\x9c\x4a\x1b\xf1\xda\x4e\x56\x09\x81\x5a\x49\xfa\x88\x32\x17\x6d\x60\x22\x91\x39\x77\x0f\xe1\x9e\xd4\x77\xc4\x25\x07\x87\x49\xbe\x6d\x24\x14\x07\x3f\xc7\x48\xfd\xbf\x34\xc1\xf2\xec\x0a\x22\xf8\x0c\x81\x00\x30\x00\xf9\x15\xdc\x7f\xa5\x60\x0c\x44\x8b\xae\x70\x60\x87\xcb\xcf\x18\xce\x88\x4a\x18\x23\x9b\x27\xbb\x31\x70\xa3\x84\x4e\x3d\x3e\x0d\x00\x01\x8b\xcd\xed\x6c\xad\xde\xf7\x9e\x11\xf4\xb4\x43\x54\x58\x7c\xc4\x9d\x3a\xc2\x6b\x1f\x70\x6c\xd1\x3f\x55\x65\x0c\xf9\x92\xb7\xee\xa7\x0e\xb0\x36\x42\x98\x01\xe9\x4b\x7b\x3e\x45\x89\x81\xf4\x38\xa4\x78\x1a\x82\x24\x96\xa2\xe4\xed\xe1\x68\xc7\x96\x42\xc8\xf4\x09\xbf\x56\xd8\x46\x00\x98\x66\x98\x10\x2b\xab\x98\x6c\x7d\xfa\x7f\xe6\x28\x00\x7d\x42\x05\x05\xf1\xb5\x8c\x7c\x19\x06\x35\xa0\xe5\x68\x24\x86\xa7\xe4\x01\xa4\x9c\xc0\x94\xc4\xe4\x8b\xe8\x04\x54\x0a\xf8\x27\x3b\xeb\x4d\x32\x71\x76\x95\x90\x07\x5a\x08\x8d\x32\x2c\xb5\xba\x22\xa6\x16\x4d\xbe\x18\xe4\x12\x5d\xe1\x55\xf3\x87\x67\x06\x22\x1d\x1c\x1b\xe7\x00\x88\xb9\xf4\x2a\xbb\xc3\xde\x4e\x73\x50\xa7\x91\x39\xcc\x11\x4f\x5f\x7e\xa6\x83\x29\x41\xd9\x75\x8d\x24\x46\xe9\x2d\xb0\xbd\x65\xe6\x63\x09\xd1\xf5\xe7\x0b\x23\x1b\x35\x3a\xde\x07\x1c\x91\xb8\x9e\x00\xb7\x54\x6b\x24\x24\x73\xf2\xc7\x18\x26\x1d\x35\x72\xad\x61\x0b\xfa\x64\x57\x27\x08\x92\xa6\xfc\x82\x46\x03\x00\x08\xcd\xc7\x16\xd3\x18\x77\x44\xbd\xed\x2d\x51\x6c\x14\x1f\xdc\x46\x99\xab\x0d\x6a\x2d\x88\x29\x50\xd2\x95\x51\xc5\x98\x88\xe5\xc4\xe5\x37\x05\xc9\x84\xa0\x62\x15\xaf\x15\x03\x20\x44\x99\xc8\x66\xa0\x17\x46\x54\x0d\xa5\xa1\xf5\xca\xa0\xb0\x4c\xc5\x39\xa6\xda\xf7\x1b\x56\xc0\x88\x0f\x39\x71\x0d\x00\x20\x09\x66\x7a\x20\x06\x1c\x0e\xe5\x19\x76\xfa\xa9\x94\x5b\x34\xf5\x94\x77\x72\xca\x2b\x42\x26\xe9\xa6\xf7\x21\x90\x91\xb7\xd1\x6b\xa5\x11\x9f\x4a\x00\xf8\x0d\x78\xd2\x72\xc8\x1f\x93\x29\x64\x75\x31\x48\x13\x6b\x93\xf0\x58\x28\x92\x12\xee\x09\xe2\x53\x3c\x2d\x8a\x51\x7b\xf1\x77\x11\xd0\x6e\x69\x41\xe2\x08\x7e\x31\xb9\x0a\x07\x8c\x30\x0f\x51\x15\x7c\x73\x88\xb1\xd7\x47\x49\xf9\x2a\x1d\x05\x21\x0d\x42\x0e\x2a\x13\x26\x81\x51\xf2\x23\xb7\xb2\x8c\x73\x39\x1c\x50\x02\xb9\xc4\x9a\x08\x7f\x08\x4b\x66\x52\x81\x08\xac\xcb\xe4\xe7\x5c\x85\xfd\x4a\x36\xba\xd4\xf8\x5a\x70\x1d\x33\xdd\x34\x6b\x45\xdb\xba\xc6\x57\x8d\x19\xfc\xf2\x2c\x65\xc6\x8f\x06\x8c\x32\xdd\x39\x92\x67\xc5\xd2\x6d\xbb\xb4\x33\xd0\x93\x2c\x25\x4a\xa3\x33\xc0\x78\xec\xd1\xe2\x1a\x48\x62\x09\x12\x86\xe1\x8b\x2d\x7b\x6c\x5b\x8f\x2f\x01\x0a\x04\x4d\x1f\x40\xb5\xa0\xce\x9c\x29\x4d\x0e\x19\xcd\xc1\x40\x85\xd4\x40\xa0\x29\x88\x54\x5d\xa6\x10\x2e\xb8\x16\xdb\x59\x89\x3e\xc9\x2b\xc0\xad\xc5\x44\x18\xf7\x65\xc5\x68\x91\xd0\xac\xa4\x08\x3c\x67\x63\xab\x5f\x74\xd1\xc5\xd7\x47\x36\x20\x89\xcd\xd3\x69\xc5\x70\xf6\x37\xb5\x27\x2c\xb3\x3c\x72\x33\xb6\x68\xf9\xc0\x39\xf0\xf0\x6d\x31\x7d\x1e\x51\x97\x52\x42\xc4\xa7\x31\xbb\x77\x85\x2a\xd7\x44\xed\xd5\xa2\x7c\x14\xe2\x2d\x0e\x86\x73\x26\x32\x2f\xe1\x70\x58\x22\x6c\x41\x4e\x43\xae\x35\x38\x28\x4a\x44\xa7\x76\x8a\x8a\x85\x7c\xed\xde\x91\x95\xa5\x7e\x6a\xb0\x72\x37\x59\xa5\x00\x32\x1b\x66\xa3\xfb\x5c\x5d\x05\x58\x8a\xe7\x42\xd3\x98\xa7\x76\x4d\x03\x90\x8a\x4e\x77\x36\x46\xa0\x72\x85\x39\x0d\x1c\x34\xe8\x4b\x9e\xbe\x75\x8a\x86\x86\xeb\x53\xcf\x05\xc6\xe4\x1b\x1b\xb3\x2c\x86\xaa\xc0\x24\xd8\x32\x5f\x8c\x86\x2a\x53\x68\x64\x9b\x3e\x02\x1c\x8c\xa9\x62\xf6\xc3\x99\x17\xe9\x18\x3c\x2e\xeb\xed\x00\xf0\x49\x04\xe1\x34\x78\x0d\x18\x8a\x58\x01\xcc\x2f\xc1\xb0\x47\x4c\x34\x79\x65\x56\xf5\x64\xa8\x25\xc3\x72\x1b\x56\x31\x55\x48\x51\xd4\x21\x72\xa1\xcf\x7c\x1b\x0b\xcc\x14\xff\x07\x5a\xe4\x03\x1d\x42\x61\xa7\x5e\x92\x7f\xf8\x61\x5b\x1b\x4d\xf4\xae\x29\x7f\x7b\x17\x6e\x3e\x2d\xad\x06\x90\x33\xad\x3d\x1a\x35\x97\x7d\xc7\x0a\x26\xef\x82\x22\x06\x36\x75\x1a\xe5\xc9\xb4\x70\x98\x12\x6d\x08\x91\x7a\x2d\x0b\x95\x6a\x8e\x2a\xa1\x00\x48\x37\xc8\x04\x43\x4d\x05\xa6\x70\x32\xaa\xd0\x08\x01\xa0\x36\x1c\x46\x27\x07\x29\x08\x9d\x86\xd9\xa5\xd1\x62\xb8\x36\xdc\xa8\x80\x41\x96\x82\x1d\x9c\xcd\x0b\x27\xee\xbe\x9f\x48\x86\x00\x14\x8e\x61\x1f\x88\xb2\xd4\xfe\xeb\xf8\x7a\x9a\x6b\x7d\xbd\x38\x2f\xeb\xf3\xeb\x6e\xc8\xcb\x4d\x13\x23\xfd\x07\x22\x26\xc7\x96\xec\xf5\x11\x34\x6e\x49\x24\xb3\x38\x5e\x1e\x21\x20\x9f\x9b\xec\x8a\x7e\x35\xea\x16\xf5\xeb\xc6\xe0\xdb\xfa\xd2\xe3\xa0\xe9\xa0\x21\x8a\x01\x75\xaf\xd0\x63\x3d\x59\x6c\x15\xfb\xa5\x82\x3c\x47\x63\xab\x12\xa4\x20\xe2\xf5\x6a\x41\x51\xbc\x2d\xb0\x3d\xd4\x5b\x63\xd1\xa8\xbc\x08\xf7\xcc\x50\x60\x1b\x48\x0c\x4a\x7c\xe0\x9d\x6b\xdf\x87\x40\x11\xda\x0e\x2f\xc0\x3c\xd9\x25\x3e\x81\x9f\x00\x0c\xe9\x1e\xf7\xe8\x25\x23\x06\x06\x73\x74\x11\x04\x42\xc1\xc0\x5d\x9e\x39\x55\x73\x15\x65\x5a\xbf\xc9\x59\xc0\x6d\x5e\x47\x2c\x4c\x7a\xb2\x5a\xc8\x20\x88\x59\x5d\x96\x5d\x51\x0a\x98\x9d\xd5\xce\x68\x88\x33\x73\x04\x5b\xdf\x2f\xd0\x5c\x5f\x18\xeb\xb1\x01\xa3\x3f\xde\xef\x40\x6f\x30\xab\x07\xed\xee\xa2\x57\x98\x8a\xdf\x6e\x8c\x2a\x56\x78\xc0\x0b\x5b\xc1\x21\x85\xf1\x4a\xc2\xb7\x23\x56\xd5\x12\x34\xa4\x98\xe5\x66\x05\xeb\x10\x2e\xf3\xdd\x9f\x81\x3b\x07\x17\x40\x1f\xc0\x97\xed\x43\x5a\x2c\x7d\xce\x31\x10\xda\x28\x79\x04\x25\x77\x85\xbd\x0f\x29\xc3\x1d\x7b\x11\xad\x9b\x43\xcc\x12\x74\x2e\x55\xd7\xe9\xc4\x6d\xdc\xce\x1e\x09\x18\xa9\xf5\xd2\xa8\x71\xd0\xef\xdd\x2e\x5e\x8c\xd5\xa4\xae\x68\xea\xbc\xb1\x44\xef\x99\x10\x69\x8d\xdb\x75\xca\x45\xe1\x8f\x40\xdb\x61\x06\xc6\x43\x85\x3c\xe1\x71\x6b\x64\x38\x48\x3f\x1e\xb3\x77\x0d\xad\x9a\x57\xa6\x00\xc2\xb0\x1c\x51\x0c\x08\x82\x77\x70\xdf\x10\x49\x3e\xbd\x71\x05\xb6\x38\x27\xbe\x60\x86\xb4\x1f\x5d\x5b\x34\xc2\xc5\xe6\xd6\x3c\x04\xd1\xf5\x4c\x34\xd1\x7c\x94\x72\xb9\x5e\x37\xb1\x05\xd5\x12\xa9\x44\x39\x1c\xe4\xea\x4f\xa2\x10\xc3\x32\x15\xef\x7f\x1e\x29\xc5\x1a\x81\x15\x0f\x14\xe0\x8c\x59\xc3\x16\x4a\x49\x29\x63\xaa\x50\x22\x2c\x71\x97\x86\x5c\x58\xf3\x58\xc1\x2e\xc3\x18\xb1\x20\x6a\x14\x50\xcd\xd7\x2a\x04\x13\xff\xaf\xeb\x5a\xc9\x22\xcc\x8d\xde\x00\xe7\x41\x7b\x25\xdc\x94\x70\xd3\x15\x1c\xc3\x03\x84\x6c\x74\xe3\xd2\xcb\x30\xe2\xb2\xc1\x78\xc2\x84\x5d\xe3\x89\xf0\x8e\x78\xe3\xef\x8b\x94\x92\xdc\x13\xe8\x32\x16\x64\x56\x93\xa0\x93\xc1\xaa\x02\x69\xf4\x48\x38\x66\xfb\xcd\xbc\x1c\x93\xcd\xd8\x22\x09\x6d\x04\x28\x3d\x83\x3e\x00\x17\x59\x58\xa2\x4c\x9f\x4f\xd4\x95\xd3\xbb\x88\x4b\xcd\x84\x3e\x61\x01\xc3\x6c\x79\x49\x49\xe7\x35\x88\xc7\xe4\x43\xcc\xc0\xe2\xc1\x3a\x42\xe3\xaf\x36\xf1\x94\x4c\xba\xf8\xa2\x06\x8a\x1f\x6f\xf4\x2a\xdb\xa8\x87\x95\xcd\xef\x32\x3a\x77\x25\x88\x77\x00\xa0\x0f\x94\xb0\xba\xe9\xf3\x1b\xfc\xca\x84\x95\x9a\x21\x65\x5f\x78\x14\x34\x64\x8a\x35\x42\x09\xca\x08\x10\x0d\xf9\x0e\xde\xfd\x49\xd0\x07\x22\xd1\x0b\x37\x0d\x99\x47\x8f\xf2\xf5\xab\x3d\x58\x2b\x67\x67\x18\x10\xa5\xa2\xb0\x36\xea\xc0\x6f\x81\xda\x7e\x01\x5a\xf2\x0a\x92\xa6\x52\x0c\x5f\x90\xcf\x89\xf5\xb5\xab\x93\x67\x24\xa9\x84\xc9\xf6\x12\x23\x04\x1c\xaa\x8f\xe7\x13\x81\x61\x52\xe3\x1b\xa0\x3e\xb0\x71\x9a\x77\x3a\xde\x08\x7f\x87\x85\xa3\xa9\xb0\x0a\xe9\x99\x02\xf4\x44\x19\x86\x04\x3e\x71\xdd\xec\x7d\x61\x81\x03\xbe\x46\x17\x25\x8e\xca\x33\x75\x18\x90\xaf\x43\xaf\xc9\xa2\x99\xa4\xa0\xdb\x3a\x16\xa8\xce\x49\x63\x95\x59\x7a\x7e\x4f\x43\x13\xb7\x63\xc5\x52\xfa\xe3\x9e\x18\x58\x18\x04\xc8\x86\x4d\x83\x32\xb1\xae\xc8\xed\x74\x4d\xaf\xac\x00\x35\x88\x61\x60\x48\x9c\xdc\xbc\x6a\xb5\x52\xa6\x18\xc9\xe0\xdb\xab\xe9\xa9\xf5\xd6\x11\xf7\x48\x4c\x4b\x3f\x71\xe3\x21\xac\xc5\xd0\x40\x4b\x50\x49\xc4\x80\x8f\x14\x65\x07\x51\xf8\x2e\xa7\xc8\x04\x9f\x9e\xc1\xc0\x14\x2a\xba\x66\xb6\x04\xfe\xde\xc0\xf8\x9e\x3d\x22\x6d\xe9\x31\x94\xf0\x0f\x61\x79\xe1\xa8\x88\xd6\xea\x1d\xaa\x91\xc8\x9d\x3a\x87\xe3\x06\xc8\x2c\xed\x5f\x1c\x81\x6c\xc3\x03\xde\xa4\x78\xe0\x10\x27\x57\x9d\x09\x60\x3c\x2b\x46\x57\x04\x93\x1e\x1b\xc5\x1f\x26\x04\x20\x39\x11\x66\x0a\x57\x7a\x6e\xc3\x32\x89\x72\x3e\x2b\x66\xbc\xa8\xf8\x15\x9e\x26\x91\xa5\x27\xb2\xda\x45\x35\xd9\xc0\x57\x1e\x99\xce\x7c\x8e\xf5\xfc\x2a\x7b\x84\x6f\x1b\xb6\xb9\x01\x49\x7d\x29\xe8\x30\x5b\x31\x9d\x58\x0e\xe3\x6b\x75\xe9\x03\x9d\x4d\xb6\x17\x1e\xa9\x8a\x56\xb2\x7d\x18\xce\xa9\xff\xb8\xa5\xe9\xda\x1a\xf4\xb7\xc3\xdb\xf9\x41\x94\xdf\xa1\x9d\x42\xa3\x5a\xd3\x76\x26\xbd\xcd\x80\x16\x85\x20\x69\x48\x81\x97\x70\xed\x09\x99\x79\x8e\x2a\xd8\x73\xcd\x11\x40\x37\xc4\xd1\xcc\xd3\xd6\xfd\x49\x0a\xd6\x8e\x10\xd3\x3e\xa2\x49\x0c\xc9\xc2\x8d\xa7\x63\x0a\x58\xc7\xf8\x96\x96\x3d\xc9\x48\x03\x0f\x59\x70\x83\x3d\xb7\x8c\x0e\x58\xac\x8e\x5a\x2e\xf7\x4a\xb1\xd4\xd1\xbc\x8a\xe0\x71\xe3\x41\x03\x03\x0a\x28\x21\x18\x84\x07\xeb\xd0\x9c\xe9\xb7\x0c\x67\x26\xa7\xf6\x7d\x08\x0e\x32\xe8\x23\x31\x26\x32\x41\x90\x43\xa1\x51\x64\x56\x19\x05\x89\x31\xa5\xd9\xc6\x40\x2f\xfb\xa0\xe4\x1c\xcc\xe9\x92\x00\x54\x25\xa2\x8a\xef\x73\x6b\x7a\x02\xac\x2c\xfa\x0a\x84\x11\xb9\xb2\xa7\x9f\xa2\x4c\x45\x6f\x94\x23\x8e\x1c\xb0\x0b\x50\x54\xa4\x39\x3c\x89\xcf\x7a\xd3\xa5\x13\xc6\x1f\x78\x18\xa6\xdb\xa3\xb2\x20\x4e\xe5\x44\x38\xc2\xb2\x20\x75\x36\xc5\x1e\xfb\x04\x53\x18\x76\x9e\x86\x9b\x7c\xbb\x87\xbc\x04\x4a\x04\x6d\x70\x79\x59\x7c\x36\xc8\x1f\x78\x04\xc4\x2d\x1d\x98\xa3\xd4\x11\xc7\xee\xcd\x07\x5f\x47\x23\x79\xce\xe2\x63\x4f\xd8\x28\xa0\x8e\x81\x8e\xf1\xee\xc7\xcf\x42\x75\x8d\x8e\x32\xf3\x62\xcb\x9c\xc4\xa1\x98\xc0\x15\x84\xfe\x45\xb3\x76\xd8\x14\x09\x05\xad\x62\xf5\x36\xa7\x78\x43\x56\x9d\xad\x73\x02\x32\x40\x19\xa7\x88\x18\x74\xd8\xe0\x5b\x9d\xf4\x23\x4c\xe0\x45\x46\xce\x30\x7f\x2d\xdc\x11\xd3\xb4\x43\x4d\x16\xb5\x3a\xb5\xe5\x03\x56\xc1\xc4\x89\xba\x91\x7a\xa0\x78\xc1\xe1\x31\x2b\xe8\xe1\xed\x11\x8d\xb9\x00\x2d\xc2\x0c\xc6\x40\x78\x2c\xf7\x77\x48\x90\xc7\x88\x9c\x1c\x05\x97\xe6\x3d\x4a\x90\x25\x33\x28\x8d\x8d\x3d\x2c\x78\x28\x11\xcc\x92\x39\x5d\x03\xd1\xfc\xbf\x90\x07\x43\x30\xa8\x2a\x65\x9c\x82\x96\xa3\xe7\x1a\xa8\xd5\x86\x2e\xc1\x6a\x91\x18\x42\x1e\xc3\xaf\x54\x08\x44\x08\x27\xb5\xf4\x70\x86\x8c\xae\xe2\x26\xfb\x4b\xab\xab\x82\x9f\x11\x0c\x1d\xa4\xac\xbb\x42\x61\x58\x81\x17\xc2\xf6\x10\xc5\x02\x02\xfe\xd5\x73\x8e\xd9\x20\x35\x28\xf1\xa7\x43\x86\x6c\xa9\xbb\xc1\x11\x98\x9c\x81\xa2\x56\x4b\x13\x90\x24\x11\xf0\x72\x6b\x68\x73\x70\x27\xcb\xd1\x01\x97\x8e\x41\xf6\x8f\x58\x1c\xb9\x62\xa0\xe1\x90\x54\xeb\x6e\xfc\x20\x40\x74\x84\x6a\x68\x78\x69\x5b\x6e\x7d\x11\x26\x48\x85\x59\x88\x42\xcf\xf6\x1c\xc8\x4a\xb1\xd4\x4c\x96\x8a\xc3\xcf\x6d\x07\xb1\x86\x2c\x56\x47\x39\x71\x11\xf9\x04\x1c\xfc\x28\x5e\x20\xe9\x0c\x19\xd2\x3c\x71\x0a\x44\x0b\x5b\xde\x81\x51\x13\x23\xe8\x60\xd8\x52\x71\xf1\x4a\x58\xb8\x59\x4a\xa2\x6f\xa6\x81\x50\x35\x2b\x0c\x4f\x66\x00\x34\xce\x96\x30\xba\x6c\x6f\x85\x40\xe6\x38\xf0\xdb\xd8\x32\x7d\x53\x8f\x0d\xac\x7e\x30\xf9\x77\x7a\x4c\x60\xd0\x88\x4c\x60\x30\xc9\x0c\x3b\xd3\x9b\xc9\x9c\xb4\xe7\xad\x67\xca\x19\xc0\x63\x68\x39\xbe\x94\x99\x02\xa0\x6f\x9c\x69\x50\x15\x87\x52\x18\x31\xb6\x66\xa4\xb0\xb9\x29\x80\xa3\x39\x3a\x55\xe6\x4a\xc8\x14\x97\x39\x21\x92\xc8\x1c\xa5\xcc\x94\xb6\x61\x9f\x93\xcc\x47\x1e\x80\xe1\x21\x40\x98\xe2\x03\xd9\x0a\x8f\x70\x64\x8b\xe4\x10\x53\x84\x8a\x9f\x69\xc6\xad\x0d\x7c\xfb\x41\x5b\x08\x01\xeb\x10\xb9\xa0\x81\x43\x8b\xf1\x7c\x51\x58\xf4\xd4\x58\x2b\xeb\x10\x52\x33\x48\x25\xba\xed\x03\x98\x4a\x20\xa4\x00\xbe\x5e\x10\xa4\x10\xd9\x95\xbf\x52\x8c\x14\x57\x07\xec\x78\x09\x7c\x11\x75\x83\x03\x44\xb5\x3b\x19\xa7\xf7\x42\xa3\xc2\x65\xee\x2c\x24\x21\xf3\x01\x94\xf9\x8f\x43\x85\x3c\x0e\x24\x98\x2d\xc5\xa8\x97\xb1\x4f\x64\x51\x29\x83\x85\x55\x98\xb3\x46\x8f\x89\xf5\x97\xa7\x73\x60\x0b\x47\x60\x3f\x21\x74\x85\x17\x47\x43\xc1\xac\x26\x9d\x0d\x44\x25\x23\xe3\xf1\x75\x9c\x14\xba\x34\x1c\x90\x28\x63\x01\x83\x1c\x2b\x46\xa5\x50\x02\x39\x8f\xef\x25\xfc\x65\x45\xff\xe7\x1d\xcd\x6f\x29\x72\xe6\x06\xb2\x52\x84\x14\xcd\x81\x91\x6b\xd3\xeb\x90\xea\x42\x74\xbe\xb4\x3b\xd7\xe8\x1e\x00\x09\x1e\x82\xbe\x80\x99\xa2\x93\x03\x31\x03\xf2\x05\xc6\x8e\xbc\x9d\x03\x68\xfb\x55\x39\x12\x61\xa0\x6a\x93\xe0\x09\x6e\x23\x93\x30\xc9\x11\xc3\x9a\xfc\x62\x4f\x31\x67\x32\x72\x63\x14\xa2\x98\x53\x8d\x2c\x80\xac\xc6\xc7\x69\x4e\x86\xd7\x42\x63\x63\xa7\x6c\x5d\x40\x14\x4c\x4e\x8f\xff\x4c\x31\x69\x79\x74\xd7\xda\xef\x02\x98\xda\x9b\xb1\xf8\x09\xf4\x30\xb3\x27\x67\xc4\x9b\x4d\xbb\x7d\xe9\xf0\xcd\x26\x49\x45\xe6\xd7\x70\x2d\x6c\x16\xde\xfc\x9a\xf3\x73\x8e\xc1\x39\x69\x6f\x29\xa0\x58\x49\x0e\xcf\x8d\xc6\xb0\xa4\x7c\x9f\x79\x6b\x2a\x0a\xd2\xb1\x2d\xdb\x06\x81\x84\x1d\xff\x65\xcb\x3a\x0a\xa7\xea\x5a\x30\xf6\x2d\x5f\xf3\xcd\xc9\xeb\x42\xc8\x53\xc4\x0a\xb1\x65\xcd\x83\xb2\x4f\xe4\xd0\x41\x95\x43\x8e\x0f\x64\xef\xdd\x42\x67\xbe\x85\x1e\x85\xb9\x04\x10\xa2\x18\x0c\x38\xa7\xf0\xda\x18\x82\x15\xe4\x28\x29\x43\x48\x39\xe2\x9e\x4f\xc5\x81\x8e\x53\x8c\xd0\xb9\x8f\x40\xc6\x8e\x17\x84\xb2\x1c\x05\x3d\x1c\x43\x92\x8f\x92\x17\xa0\xb0\xb4\x9a\x5c\x96\x52\x74\x81\x00\xb7\x20\x78\xed\x68\xfa\x72\x19\x46\xd2\x0f\x66\xa9\x2d\xa3\xef\xa4\x58\x99\x5a\xb2\x2f\x22\x3d\x76\x7c\x6a\x72\x90\xd0\x6a\xf0\xdd\x15\x97\xa8\x40\x6d\x3f\x64\x82\xe3\x87\x1e\xac\x01\x45\x03\x82\x2b\x83\x38\x39\xd1\xfb\x9b\x83\xf8\x65\x0f\x0b\xaf\xe9\xbe\xc0\x61\xd5\xb6\x4b\x50\xb7\xdd\x78\x50\x1c\x60\x62\xd0\x16\xa2\xc1\x16\x8f\x9e\x0e\x02\x69\x65\x64\x4b\x2c\x07\x77\x10\x41\x0d\xd9\x5b\x5a\x40\xab\x91\x65\x43\x9f\xe8\xa2\xe9\xfc\x1d\x21\x80\xcd\x05\xe9\x0c\xb4\xa9\x19\xf7\x4d\x08\xe8\x6c\x4c\xd7\x84\xa9\xc7\xc6\xb6\x93\x42\x19\xc7\xba\x64\x94\xe7\x50\x9e\xa4\xb4\x9f\x95\x05\x07\x05\x19\x0c\x1e\x31\x56\xbb\x18\xad\x87\x5b\x13\xd9\x00\x0d\x8d\xfd\x85\x40\xe8\x3b\x64\x6a\xdd\x50\xa0\xbd\xc5\x56\x46\x01\x0b\x56\x18\x04\x2d\x90\x58\x21\x1b\x90\x40\x70\xbf\x7e\xf5\xc4\x77\x83\x93\x88\x08\x8c\xcc\xb8\x6e\x24\x8c\x88\x6e\x82\x06\x72\x62\x52\xd6\xa3\x5b\xa1\xfd\x73\x12\x56\x1a\x03\x39\xc9\xc2\x49\xe8\xea\x80\xd9\x1c\xd5\x5c\x04\x42\x81\x68\x71\x73\xb4\xc2\x71\x07\x32\xba\xd0\x24\x13\x0f\x4c\x7a\x0c\x38\x85\x6e\xa8\xb6\x2f\x06\x4f\xcc\xe4\x87\x54\x2a\x1e\xd6\x7c\x8c\xab\x5d\x04\x25\xc3\x45\x99\xf6\xac\xe7\xdb\xa8\x87\x96\x5e\x17\x15\x40\xf4\xb4\x7b\xdb\x32\xca\x8c\x07\x94\xd4\x46\x90\xff\x51\xbd\x33\x2e\x36\xc9\xae\x81\x82\xe4\x22\x19\x30\x03\x38\x9f\xe1\xc5\x3c\x88\x6a\x8a\x85\x7d\x10\xc1\x9c\xe5\x72\xed\x8d\xdd\x92\x34\x2a\x63\x06\xa1\x86\x7b\x84\x7c\xe7\x87\x76\xd9\x77\x0e\x18\x0f\x3e\x71\x20\xa2\xe5\x9c\x0e\x54\xa7\x1f\xdb\x73\x24\xed\x2a\x25\x79\x44\x2e\x28\x82\x67\x5e\x13\x9a\xce\x03\x00\x4e\xda\xbc\x2b\xf6\x2b\xcd\xd9\xc7\x32\xb0\x72\x83\x63\xa1\x7f\x1b\x45\x14\x71\x92\x25\xf2\xd8\xac\x06\x99\x2b\xf8\x8f\x2b\xc3\xa5\x38\xad\xda\xdf\x55\x02\xb6\x4f\x4b\x21\x53\x1c\x2d\xe1\xf3\xdd\xc6\xe6\xf7\x0d\xf2\x4a\xee\xeb\x94\x60\xd7\x47\x60\x23\xa5\x70\x34\xf1\x2c\x3c\xfc\xe6\x63\x98\xf5\x1a\x1d\x1c\x61\xb8\xb7\x3a\x01\xb3\x92\x41\xce\x7c\x96\xc0\x3a\x3b\xfd\x0b\x36\x14\x3c\x53\x71\x98\xbc\x83\x14\x40\xd5\x36\x27\x67\x9f\x37\x7f\xb5\xd3\xaf\x3d\xd1\x61\x26\x80\x0e\x70\xe6\x0b\xd1\x90\x65\x4b\x76\x41\x86\x0e\x52\xfe\x03\x29\x61\xa4\x41\x1c\x22\x36\xc8\xcf\x1e\x2e\x2a\x0c\x1f\x11\x72\xf1\x05\xe8\xe3\xf8\x55\x67\x7a\xf5\xca\x24\x53\x95\x67\x00\x57\x4b\x52\x0a\x35\xeb\xbd\x69\xfd\xa7\x3f\xd0\xb2\x8e\x30\xea\x5e\x07\x52\x6a\xe0\x2d\x64\x4f\x6d\x05\xa8\x56\x1c\x82\x70\x4b\x85\xf8\xa0\x61\x39\x8e\x7d\x43\x6f\xc3\xa4\x18\xe3\x22\x91\x4d\x84\x90\x71\xe6\x08\x5c\x18\x41\x6a\x88\x8c\x0a\xe7\xc3\x24\xad\xec\x53\x30\x25\x28\xd1\x02\xc5\x48\xab\x70\x8c\x18\x11\xb6\x9d\xe0\x04\xf6\xd2\x69\xc2\xb4\x1c\xa0\x10\x42\x45\xed\x61\x61\xd7\x21\x37\xc3\x01\x42\x59\x45\x6a\xd1\x58\x77\xde\xe0\xe7\xbc\xaa\xe1\x59\x88\x34\x09\x5e\xc1\x56\xc9\xdc\x5d\x94\xca\x07\xd1\xd3\x7c\x70\xbd\x0a\xdc\xea\xa5\xde\xfb\xa2\x18\x1d\x71\x4f\x4a\x3d\xb0\x08\x73\x9f\xb0\x56\xb9\x32\x30\xef\x06\x7c\x52\x8e\xc7\x16\x88\x05\xb2\x06\x05\x54\xc3\x46\xdc\xc8\x28\xc6\x62\x68\xa3\x5a\xcf\x85\x5c\x5f\xb0\x8b\x5e\x7d\xde\xe1\x0a\x8c\x46\x02\x28\x66\x07\x88\xf2\x7a\x59\xd7\x8f\x17\xfe\xa6\x41\x8b\x4d\x0a\x1c\x0d\x1e\x9e\x8a\xb6\x42\x2d\x3e\x21\xa7\x52\xc4\xf8\xa1\x47\x19\x42\x14\x72\x0b\x8b\xa0\x61\xbb\x2e\x51\x5f\x1b\x10\x36\xc7\xeb\xd8\x56\xfb\x3c\x37\xd1\xa0\xb8\x15\xac\x1e\xaa\xe1\xb3\x98\x06\x89\x81\x3a\xe9\xb2\xfd\x08\xb2\x7a\xca\xd6\x51\x88\x43\x48\x18\x77\xbc\x43\xb6\x0b\x8a\x21\x16\xe0\xf9\xf5\x03\xbf\x60\xae\xc2\x2b\x16\xf0\x6e\xc1\x1a\x94\x8c\x99\xc1\x0b\x1b\xb3\x1c\xce\x50\x0d\x00\xdf\xfa\x58\x18\x38\x8b\x3c\xfa\x9b\xbe\xcf\xa0\xbb\x96\x98\x9b\x5e\x3c\xd0\x5d\x4a\xec\x65\xae\x23\x4a\xf1\x9f\x05\x0a\xf3\x26\x27\x08\x56\x4d\x4c\xe6\x00\xab\xe0\x99\x38\xfa\x35\xd4\xd4\xca\xd8\x06\x2b\x34\xba\xe8\x2b\x08\x2c\x0f\x98\x59\xee\x67\x33\xc9\xe8\x89\xf7\x1c\xe7\x42\x53\xcf\xf9\x4e\x6f\x13\x34\x3a\x46\x42\x12\xd1\x9c\xd8\xcf\xcf\xd7\xc4\x78\x50\x2a\x3b\xc3\x00\xd4\xa2\x04\x18\x50\x08\x00\x32\xdb\x05\xd0\xa7\xc4\x58\xd1\x4a\xe3\xdb\x14\xb3\x44\x39\x4e\xc1\xb8\x25\xff\x8a\x58\xd3\x14\xc4\x12\x9c\xcb\xe4\xe3\x24\x27\xb0\xf4\x26\x71\x58\xb8\x92\xba\xa1\x90\x69\x1c\x4e\x93\x45\xf8\x9f\x46\x1c\xa8\x4a\xf0\xfc\xa2\xbb\x56\x3f\xd4\x09\x00\xc6\x10\x40\x8d\x61\xe1\x7e\xf2\x4e\x65\x81\x10\xc6\xca\x47\x82\xf9\x4f\x00\x38\x0f\xd3\x40\x1c\x22\x6a\x4c\x63\xef\x52\x44\x64\x60\x05\xb6\x08\x98\x11\x02\x4b\x64\x11\xb0\x63\x99\xba\xc9\xe3\xc9\x03\xe7\x08\x81\x1d\x3a\x39\x19\x1d\x1e\x2a\x80\x11\x99\x4d\xb4\x62\x58\xfe\x80\x65\x28\xd9\x7c\xa2\xa1\x52\x08\x67\xd0\xa9\x84\x10\x84\xc1\x41\xed\x98\x83\x43\x7a\xdc\x19\xa3\xd0\xca\x04\xc9\xbd\x0d\x2c\x0e\x71\x17\xef\x35\x35\xcf\x9d\x0a\xd4\x8f\xe8\x9d\x8a\x01\x00\x00\xff\xff\x92\xd4\xfb\x24\xa8\xe1\x00\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_eot() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_eot, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.eot", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_svg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x79\x93\x64\xc9\x71\x1f\xf8\x7f\x7d\x8a\xd0\x68\x57\xb6\x57\x72\xc2\x6f\x0f\x91\x43\x2d\x44\x40\x4c\x48\xaf\x08\x3e\x31\x90\x92\x6a\xcf\xc6\x4c\x63\xd0\x62\x4f\xf7\xb0\x7b\x06\x87\xf6\xf8\xec\x6b\xfe\x8b\x97\x03\x54\xa1\xb2\x86\x6b\x58\x1a\x97\x34\x5a\x5b\xdb\x8b\xca\x77\xc5\x8b\x08\x77\xff\xb9\x87\x1f\x7f\xf2\xaf\x7e\xfd\xd5\xdb\xf6\xcb\xd7\x1f\x3e\xbe\x79\xff\xee\xb3\x4f\xe8\x8f\xfa\x27\xed\xe3\x37\xaf\xde\x7d\xf1\xea\xed\xfb\x77\xaf\x3f\xfb\xe4\xdd\xfb\x4f\xfe\xd5\x9f\xde\xfd\xc9\x3f\xfb\xe1\x4f\xfe\x6c\xfe\xa7\xbf\xfc\x51\xfb\xf8\xcb\x2f\xdb\x5f\xfe\xf4\x5f\x6f\x3f\xfe\xb3\xf6\xc9\xe9\xd3\x4f\xff\x83\xfc\xd9\xa7\x9f\xfe\x70\xfe\xb0\xfd\xd5\xe5\xcf\x1b\xfd\x11\x7d\xfa\xe9\x8f\xfe\xe2\x93\xf6\xc9\x2f\xbe\xf9\xe6\xeb\x7f\xf9\xe9\xa7\xbf\xfa\xd5\xaf\xfe\xe8\x57\xf2\x47\xef\x3f\x7c\xf9\xe9\x9f\x7f\x78\xf5\xf5\x2f\xde\x7c\xfe\xf1\xd3\xbf\xba\xfc\xf9\xa7\x75\xe1\x0f\xe7\x0f\x3f\xfd\xf8\xcb\x2f\x89\xfe\xe8\x8b\x6f\xbe\xf8\xe4\x4f\xef\xfe\xa4\x9e\xfc\xeb\xaf\xde\xbe\xfb\xf8\xd9\x33\xb7\x73\xef\xbd\x2e\xaf\x0b\xbf\x78\xfd\xf3\x8f\xed\x4f\xef\xfe\xe4\xe7\xef\xdf\x7d\xd3\xde\x7c\xf1\xd9\x27\xff\xfe\xfd\xcf\xde\x7f\xf3\xfe\xfe\xfd\xbb\xf7\x9f\xb4\x5f\xbc\xff\xf0\xe6\xbf\x9c\x5e\x7d\xf1\xcb\xd3\xaf\x3f\xfb\x84\x58\xe8\x93\xf6\xa7\xb8\xf2\xf4\xf3\x57\x9f\xbf\xbe\x6b\xad\xb5\xe3\xaf\xaf\xde\xbc\xfd\xcd\xf5\xde\x56\x37\xb7\xfb\xd7\x5f\xbc\xf9\xf6\xab\x4f\x70\xd1\xb7\xef\xde\x7c\xf3\xf1\xf4\xf5\xeb\x0f\xa7\xd7\x5f\x7d\xf6\x09\x77\xcd\xf5\xfb\xd7\xaf\xde\xbd\xff\xf8\xfa\x44\x9f\x7d\xd2\xdb\xef\xfd\x5b\x97\xbc\xfa\xf8\xf9\xeb\x77\xdf\x7c\xf6\x09\x93\xfa\xfa\xe5\x8b\xd7\xc7\x4f\x27\x33\x3b\x2e\x7a\xfb\xf5\x2f\x5e\xfd\xec\xf5\x37\x6f\x3e\xff\xec\x93\xfe\x49\xfb\xf4\x4f\xef\xfe\xe4\xcb\xb7\xbf\xf9\xfa\x17\xf5\xe2\xcf\xdf\x7f\xf1\xfa\xb3\x4f\xda\x27\x0d\xbf\x9c\xde\xbd\xfa\xea\xf5\x67\x9f\x7c\xfc\xfa\xd5\xe7\xaf\x7f\xef\xfb\x78\x3c\x7b\xef\x3f\x7b\x7c\xef\xeb\x5f\x7f\xfe\xf6\xd5\x57\xcf\xde\xfc\xc5\x67\x9f\xdc\x07\x79\xd3\x21\x67\x1d\x7d\xd3\xe4\x46\x6a\x7e\x0e\xd6\xed\x38\xf1\x70\xaf\x2e\x8d\x68\xec\x38\x46\x34\x1d\xa3\x31\xd9\xf4\xae\x8d\x4d\x77\x0f\xae\x63\x8b\x5e\xbf\xfb\x0c\x75\x5c\x5f\x47\xe7\xf5\xf3\xba\xfa\x44\xb2\x9b\x78\x1d\x9b\xf5\xde\x58\xe7\xf1\xf0\x87\x67\xbf\xe4\x5f\xfc\xcd\xb7\xef\xbf\xf9\xe3\xc7\x9f\x53\x3f\xbd\xfe\xe2\x67\x6f\x6f\x7e\x90\x0e\x6b\xa4\x3c\x36\x8d\xde\xa8\x4b\x3f\x0b\xf1\x85\x4c\xfc\xac\xc3\x2e\x75\xea\xe1\x3e\xd3\xd7\x45\xe9\xb4\x2e\x8a\x2e\xeb\xa2\x4c\x5f\x17\x3d\xdb\xa5\x7f\xfe\xb8\x37\xef\xbe\xfd\xea\x67\x45\x3e\x5f\xbe\xbb\xd9\x1f\x0f\x6b\x4a\xfd\xac\x9a\x9b\x04\xb7\x7e\xe6\xee\x1b\xa7\xe0\x57\xa3\x8b\x79\x54\x17\x37\x09\x6a\x99\x74\x26\xf6\x0b\x75\xed\x67\xed\xb4\x69\x8c\x35\x25\xae\xba\x99\x7b\xc3\x99\x18\xb2\x65\xd0\x3a\x43\x5d\x72\x1b\xde\xd7\x29\x22\x8f\x4b\x3d\x66\x48\xc7\x35\xf5\x78\xea\x83\x2e\xf5\xba\x54\xde\xc2\xad\xf5\xb3\x8d\xb1\x1d\x5d\x7b\xb8\xd7\x48\x5c\x17\xdd\xb6\x70\xb9\xab\xfb\x4d\x7c\x3b\x7e\x7f\x7e\x28\xfe\xab\xc7\x43\xf1\xc5\xfb\xb7\x6f\x5f\x7d\xb8\x39\x0c\x19\xa3\x49\xf6\xbd\x8e\xca\xdc\xd2\xbd\xa9\xc5\x4c\xe6\x66\x4c\x33\x54\x9b\x85\x4f\xe7\x68\xce\xb6\x1b\x8f\xe6\x16\x4d\xad\x37\x1f\x3e\x85\xac\x45\xe6\x64\x1e\x6d\x50\x9f\x34\x46\xa3\x1e\xb2\xa3\x41\x16\x8d\xd9\x1b\x31\xfb\x94\xce\x8d\x44\x63\xd6\x7b\x48\x85\xa6\x65\x6f\xa4\x21\x17\xf2\x41\xe7\xd0\x7e\x21\x0d\xda\x93\xa3\x86\x70\xb4\x5c\x6b\x46\x26\x75\xaa\x7b\x39\x26\xf5\xb4\x3b\xa2\x8c\x49\x44\xb5\x46\xba\x9d\x33\x78\xcf\xe0\x46\xdd\xb3\xa5\x45\x23\xa2\x9c\x49\xda\x88\xbb\xae\x85\xcf\x36\xa6\x9b\x34\xe2\xc8\xdd\x46\xa0\xd1\xac\x2e\x66\x97\xa9\xa3\x57\x27\x79\xaa\x51\x75\x3b\xa7\x4a\xd6\x87\xd8\xbe\x1a\xc2\xf8\xe4\x31\x72\xea\x90\x36\xc4\xa6\x05\xd7\xc2\x98\x3e\xb4\xa5\xf4\x3d\x86\xb4\x18\xde\x6a\x76\xc3\xaa\xab\xdd\x9a\xbb\x55\x9f\x47\x33\x95\xea\x72\x36\x49\xde\xd1\xe0\xa1\x8d\xfa\xe8\x8d\xb9\xae\xa1\x5a\x29\x36\x33\xb5\x08\x30\x68\xb4\x13\xf9\xe5\xc4\xb5\x1a\xbd\x5f\x4e\x14\xbb\xc6\xb8\x3b\x8d\xa6\x45\xe1\x7d\x72\x80\x46\x26\x45\x36\x56\x9a\xa4\xd2\x54\xf9\x5c\x2f\x90\xe4\x26\xae\xb8\x54\x48\x40\xcf\x2c\x3c\x4d\xb5\x51\x8e\xe9\x62\x8d\xc2\xf7\xa8\x21\x09\x6f\x49\xde\x58\x68\x1e\xcb\xe1\xf9\x95\xf5\x5f\x3f\x5e\x59\x5f\xbf\xfe\x50\x1c\xf4\xe6\xd2\x92\x5a\x00\xc3\xf7\x3a\x16\x23\x32\x6f\x24\xbd\x3e\x75\x34\x92\xa1\x93\x46\x51\xbb\xe9\x14\xaa\x09\x8f\xd8\x05\xf4\x5f\xcc\xac\x06\x5d\xcd\xa6\xb1\xad\x8b\x2d\x62\xdd\x6e\xb5\x28\x68\xf8\x85\x8a\x9b\xe1\xaf\xee\xdc\x2c\x6a\x9a\x88\xa7\xb1\xb7\xc1\x32\x55\x46\x4b\xe7\x29\x34\x5a\x6a\xdf\xd9\x7a\x1d\x1b\x8d\xc4\xef\x44\xbd\x0d\xe6\x59\x4b\xa0\x13\x4d\x19\x77\xf5\xc4\x4b\x3d\xfb\xe1\x9e\x3b\x96\xd1\xd8\xd1\xe8\x83\x1b\x93\x60\x85\x4d\x96\x5a\x6a\x6c\x93\x3d\xda\x18\x86\x37\x8c\x94\x5d\x14\xc7\x26\x51\x0b\x45\xa7\xf6\xba\xa3\xb8\x29\x63\x71\xd6\xca\xcf\xf6\xdd\x4b\x76\xfc\xc5\x2c\x20\x3c\xe2\xa2\x8c\xba\x83\x47\x9f\xe2\x35\x46\xdc\xd7\xd0\x88\xf0\xce\xb9\x1a\x8d\x8b\xdb\x08\xd3\xea\x07\x0f\x9a\xe8\x19\x6b\xce\xd5\xe9\x63\x68\x1e\xee\x5d\xa8\x89\xc4\x8e\xe3\xd0\xe6\x9a\x4d\xd5\x66\x74\x6a\x26\x3a\x23\xf3\xce\x86\xcd\xd1\x47\x73\x8a\x7d\x44\xd6\x11\x8c\xb7\xd5\x09\x22\x8a\x66\x52\x0d\x1f\xb8\xb5\x28\xaf\x9e\x79\x61\x1b\x3b\xfe\xe0\xa2\x6a\x2a\x9e\x6e\xb4\x16\x78\x8d\x6d\xd1\x0b\xcf\x41\xd4\x4e\xdc\xf7\x54\xae\x63\x8b\x5a\xec\x33\x3a\xd7\x35\xae\x03\xf7\x54\xef\xd8\xc6\x45\x24\x1e\xee\xa3\x84\x98\x8d\x1d\x47\xe1\x96\xdd\x1a\xf7\x9c\xc9\xda\xc8\x6d\xa6\xd5\xb8\x18\x9e\x4c\x2c\xfb\xd0\xfa\x74\x69\xc3\xb5\x78\xcb\x1c\x45\xd9\xae\x45\x4e\x45\x23\x45\x84\x34\xae\x8f\xdf\xeb\x8f\x3b\x29\xd1\xd6\x49\x9a\x64\xcc\x31\xb4\xa9\xf4\x59\x7c\x5a\xbd\x63\x28\x14\xec\x24\xeb\x08\x6e\xa2\x4e\x33\x6b\x96\x8a\x3e\xba\x35\xc9\x9c\xd5\xbf\x63\x18\x1e\xee\xb5\x3a\x33\x4a\x78\x68\x63\xef\x5b\xaa\x35\xe2\xcc\x6d\x14\x53\x62\xd6\xed\xb8\xe2\x86\x38\x7d\xf5\xd5\xd7\x4f\xa4\xe9\xab\xaf\xbe\x7e\xfd\xe1\xe3\xab\x77\x5f\xdc\xe6\xdb\xd9\x24\x64\xcf\x9a\xd1\x62\x1c\x25\xff\x6d\x92\xd7\xc4\x8d\xc9\xaa\xcd\x6b\x19\x99\xb4\x08\xdb\x79\xf4\x96\x6e\x8d\xcd\xda\x50\x9b\x4c\x45\x9b\x44\xfb\x6a\x8c\x62\x20\xd5\x67\xf7\x29\x4c\x8d\x24\x69\xaa\x42\x90\xf1\x04\xb7\x2c\xea\x74\x88\xb6\x88\x16\x82\x53\x34\x53\x6a\xd8\xb3\xc6\xad\xf8\x67\xf8\x1c\x5c\xc0\xc1\x78\x5f\x8d\xde\xdb\xe8\x71\x47\xdd\x7c\xa6\x4b\x1b\xc1\x33\x46\xb4\x1c\x63\x06\x59\x4b\xe1\xcd\xa5\xb7\x70\xda\x46\xa7\xa6\x7d\xec\x43\xa4\xa9\x8f\x36\x8c\x9a\x69\x9f\x23\x4a\xd4\xf0\x99\x28\x6a\xcd\xc5\x68\x66\x45\x46\x60\x77\xc5\x4e\x6a\x01\x69\xdf\x88\xc9\x5b\x3f\x0f\x89\x2d\x8b\x32\x79\x8f\xc1\x4d\xa2\x45\xcf\x96\xd3\x58\xda\x89\x69\x2f\x62\x3b\x31\x35\x51\x6e\x45\x32\xd6\x46\x9f\xe0\xc7\x54\xdc\xb7\x86\xf5\xe1\xbe\xc4\x1c\x45\xdf\x2d\x71\x6c\x5e\x32\x24\xc7\x0c\x2b\xee\x2c\x9b\x7a\x81\x28\xdd\x20\x06\x89\x76\xed\xa3\xc4\x64\x93\x34\x70\x7a\xd1\xbc\xd3\x18\x53\x84\x9a\xb2\x4e\xe1\x68\x92\xb4\xe3\x28\xd1\x44\x7b\xe3\x31\xa6\x04\xd6\xf9\x54\xe5\x56\x42\xed\x78\xef\xc3\xbd\xd6\x7c\x10\xf1\x8e\x46\xf7\x1a\x12\xbf\x32\xb8\xea\xb2\x6e\xce\xd9\x46\xea\xee\x45\x13\x90\x35\x51\x57\xb0\x83\xc2\xa8\x7b\x0d\x71\x11\x67\xaf\x86\xd6\x88\xe9\xbe\x1a\xd1\x5b\x74\xc0\x41\x9b\x9e\xe0\x1e\x7d\xe2\x1b\x39\x8e\x09\xe7\xd4\xdd\xea\xc9\xb5\xaa\xad\x26\x9c\xa3\x4f\xc5\xc5\x22\x53\xad\xfa\x17\x39\xaf\x1d\x7d\xf8\xe4\xee\xd9\xb5\xfd\xf5\xfb\x8f\xcf\x41\xc5\x8f\x6f\xde\x7d\xf9\xf6\x79\xec\x0c\x74\xe6\x25\xf9\x89\x37\xc7\xea\x66\x3e\x03\x26\x14\x10\x74\x2f\xb4\x58\x2f\x7c\x8e\x98\xfe\x9b\x27\x32\xea\xd5\x87\xd7\xef\xde\xbe\xfe\xf9\x0b\x52\x4a\xb3\xd9\xe0\xbd\x8e\x51\x33\x53\x70\xaf\x10\x01\xb8\xfc\xf0\x69\xdc\x17\x4f\xf6\x02\x32\xe0\x9f\x25\x9c\xcc\xc6\xcc\x1a\x31\x17\xde\xb2\x44\xb9\x0e\xda\x53\x8a\x56\x34\x5a\x14\x40\x94\xe0\xe9\x51\x03\x5e\x53\x3b\xb2\x0d\xe9\xd3\xbc\x5e\xa8\x17\x0b\xdd\xab\x5d\x32\xaf\x46\x9c\x65\xe0\xe2\x13\xf7\x59\x77\x9f\x8a\x7d\xd5\x83\x4f\x52\x80\x58\xbd\x9d\xd4\x65\x8f\x61\x77\xa7\x12\x8f\x21\xa3\x9d\x64\x10\xa0\xd9\x89\xa3\x16\x0f\xb5\x13\x15\x88\x11\x6e\xc1\xb3\x3e\xa5\x24\x26\x3e\x31\xfc\x62\xe3\xc6\xa0\xfd\xb7\xcf\x0c\xda\x87\x37\x5f\xfe\xe2\xf6\xa8\xa5\xe3\x91\x7b\x1d\x55\xa4\x15\xcb\x93\x9e\x33\x52\x5a\xa1\xc5\x21\xed\x44\x34\xa6\xa5\x57\xdf\x6c\x16\x33\x3d\x09\x24\x9b\xe0\x43\x36\x21\xc7\xa7\xed\x85\xbe\x4f\x9c\x5e\x8c\xb8\x28\xb3\x4f\x13\x6b\x27\x96\xe9\xc4\x8d\x25\xa6\x6b\xc9\x77\xbd\xd8\xd0\xbd\xda\x91\x5c\x54\xb7\x86\xb3\x96\x26\x0d\x9a\x5a\xd3\x23\x45\x73\x54\xf3\x34\x72\x03\xa7\x77\xe1\x5d\x49\xef\xc8\xbb\x37\x2d\x0e\x56\x33\x67\x59\xeb\x4b\x15\x3d\x2d\x5e\x8d\x9e\x97\x9c\x9f\xf5\x29\xe9\x7d\xe2\x13\x07\x5f\x2c\x6e\xf0\xed\xff\xee\x09\xcf\xfe\xf8\xcd\xeb\x0f\x6f\x3e\xfe\xf5\xcd\x31\x33\xc9\xe6\x6a\x1b\x95\x52\xa6\x7d\x2b\x76\x35\xc4\xb7\xea\x4b\x84\x6f\x06\x78\xda\xe5\x1c\x96\x5b\x70\x71\xee\xbe\x01\x3b\x0e\xf6\x8d\xc8\xa8\x05\xc7\x16\x4e\xcd\x25\xb6\xa2\x8a\xc2\x76\x5b\x16\x29\x8e\xbe\xb9\x5a\x33\x1b\x9b\x4a\x49\x65\xda\xb8\x16\x17\xe5\x76\xbc\xf7\xf9\x8f\xf8\xef\x9f\x4c\xfd\xdb\x6f\x3f\xde\xd6\x49\xd9\x5a\xf6\xd2\x65\x7a\x5c\x2c\xec\x1c\x5c\xa4\x58\x0a\x1c\xe3\x6f\xea\xe3\x52\x17\xd4\xdf\xc4\xdd\x71\x41\xf6\x1b\x70\xf2\x7f\x78\xfc\xea\xcf\xdf\x7f\xf5\xd5\xab\xdb\x0c\x21\x0b\xcb\xec\x75\x28\x24\xe1\x9e\xed\x04\xb5\xa4\x60\x72\x3a\xa8\xea\x54\xf3\xa8\x59\x64\x11\xb6\x89\x15\xe9\x74\xdd\x65\x14\x7d\x14\x80\xe7\xde\x4e\x64\x32\x55\xa5\xb1\x5d\x58\xf4\xec\xc9\xdb\x7a\xf6\xf3\x9d\x3c\x3d\xee\xe4\x2f\x7e\xf3\xf5\x2f\x5e\xdf\x56\x2a\xa9\x5b\x6f\xa6\x7c\x66\x1d\x97\x90\x1a\x11\xeb\x17\xd3\x1b\x74\xf7\x47\xbf\x07\xa8\xdf\xbc\xbf\x2d\xf2\xd5\x8a\xc9\xc8\x8e\x63\xe1\x93\x12\xe8\x7d\x4c\x28\xfe\xce\xb3\xd6\x0f\x8f\x9c\x25\x17\x84\x68\xf7\xe8\x75\x6c\x25\x0d\xea\xf7\x28\x65\xcc\x65\xc6\x20\xdc\x97\x05\x36\x55\x76\x1c\x7b\xb6\x92\x96\x51\x22\x2e\x1b\xc7\x8c\x2e\xed\x14\x78\x58\x41\xb8\x45\xc8\xbd\x59\x8d\x6a\xae\x77\xc6\x2c\x99\x54\x32\x60\xf5\xec\xf9\x8f\xfc\xf4\x89\xcd\xe4\xed\xab\x8f\xbf\x78\xe1\x1b\xc1\xc2\xec\xcc\x22\x5b\xf6\x71\x55\xa5\x39\xb6\xeb\xa9\xe7\xdf\xd2\x1f\xbf\xe5\xbf\xbc\xfe\xf0\xfb\x86\xa7\xdf\xce\xd2\xc0\x87\xec\x68\x28\x70\xbd\x65\x93\xee\x13\x38\x92\x7d\x26\x59\x23\x9f\x85\x86\x0b\x33\x58\x4f\x60\x86\x5a\x41\xe4\x4b\xf3\x2a\xa5\xad\x24\x7e\x69\x34\xc5\x9f\x4c\x2f\xa3\xf3\x5e\x6d\xea\x05\x4b\xa3\x04\xa3\xf5\xc9\xc0\xf2\xd2\xa7\x52\x29\x35\x25\x69\xeb\xe9\x85\xa8\x8a\xa2\x80\xa8\xb2\x3a\x51\xa7\x86\x97\xa2\x2b\x34\xa9\x43\x91\x2d\x50\x5d\xbd\x1c\x9d\x2f\x66\xfa\x70\x2f\xc9\x77\xc5\x45\x52\xb3\x8d\xc1\x3b\x54\x1a\x52\x6a\x60\x60\x4c\xbc\x9e\x5e\xe2\x5b\x47\x2e\xf1\x0d\x88\xc8\x9d\x66\xa9\x85\x43\xfd\x52\xec\xe0\x3e\x4b\x21\xea\xba\x49\x5d\x61\xb1\x6b\xa1\x86\xa0\xa5\x02\x94\x1a\x6e\x1d\x7f\xd7\xd1\x88\x2f\xd9\xf5\xf9\xb1\xa7\xc7\x63\xff\xfe\xdd\x6d\xb9\x9e\x9d\x5b\xe9\xb3\x74\x21\x72\xda\xa8\xe0\x55\x2f\x2e\xc2\x62\x5b\x64\xac\xf9\xce\xce\x97\x1b\x4c\x83\x1f\xbf\xeb\x9b\x5f\xbd\x34\xcd\x29\xad\x17\x09\x5e\xc8\x6d\xb3\x18\xcd\x93\x77\x97\xd1\x42\x47\xf3\x18\xc5\xcd\x60\xe1\xc8\x61\x33\x22\xdb\x08\x2b\xad\xa8\xd6\x43\xdf\xd1\x28\x04\x1b\x51\x50\x56\x79\x46\xa1\x33\xd8\xd8\xbc\x2f\xbb\x81\x39\x10\x52\xdf\x55\x56\xa3\x49\xe9\xa1\x45\x5e\x10\x43\x9d\xe4\x5c\x6a\x76\x61\xad\x8e\xc7\x95\xb0\xe2\xc9\xd0\x81\xb5\xc4\x61\x09\x2b\x19\xd3\xea\x25\x1a\x5e\x2c\xee\xae\x1a\x2d\x80\x81\xb4\xf4\xb3\x52\xfd\x6c\xcc\x51\xca\x2e\xc3\x0a\xc2\x40\x85\x7d\x47\x6b\x8c\x5a\x73\x5d\xda\xe0\x31\x47\xe1\xda\x5e\x72\xac\xbe\xd1\x67\x08\x37\x53\xdb\x30\xbd\x83\xce\x35\x2c\xb7\x46\x57\x9e\x8c\xee\x2f\x3e\xbc\xbe\x3d\x97\xda\xb5\xa5\xf8\xd9\x34\x76\xa7\x5e\x6d\x98\x86\xd2\x78\x86\xd8\xc2\xf8\x49\x6d\x44\x07\xe6\x2f\x35\x7d\x47\x83\x3c\x5b\x28\x74\x23\x9b\x56\x00\x89\x53\x76\xa8\xfa\x30\xc0\x25\x88\x70\x4c\x25\x5e\xdf\x2b\x45\x96\x54\xca\xbc\xd6\x73\xa2\x58\x42\xee\x6b\x44\x8b\x60\xf0\x2c\xb1\xc9\x85\xcc\xc4\x6b\xa1\x1f\x63\x67\x4b\x67\xf1\x1d\x38\x4c\xc3\xef\xa2\xe6\x4e\xad\x1f\xc3\x1a\x45\x60\x1d\xfa\x37\xf4\x56\x5f\xfd\x3c\x5a\x84\xf5\x59\x7a\x8b\xce\x91\xda\xb2\x74\x46\x8a\x96\xc5\x3f\x99\x5a\x68\xec\x99\xd1\x82\xb5\x0d\xe1\xe6\x99\x87\xdd\xa7\x57\xa3\x24\x32\xf1\xa2\x65\x45\x8f\x2d\x8a\xcf\xd4\x43\x7b\x63\xf6\x39\x28\xdb\xe0\x19\xa5\x1b\xa1\xb3\xc5\x6c\x6b\xf6\x8b\xd9\xca\xe8\xcd\x27\xcb\x68\x29\x93\x44\x1b\x13\xcd\x51\x1a\xe8\x38\x8b\xe8\x2e\xa2\x4d\x94\x9a\x58\x01\x3d\x9a\x32\x0e\x6d\xa2\x58\x4f\x41\xce\xfa\xe6\xa0\xdd\x33\xef\x08\x56\x29\x59\x56\x1e\x1a\x4d\x7b\xec\x38\x46\x71\x81\xa2\x70\x83\xa5\xcc\x0a\xe9\x7a\x6f\x2e\x3a\x4d\xa3\xb9\xe6\x59\xbb\x5e\x52\x6e\xc0\x20\x7d\xbc\x66\x7e\xfe\xfe\xdb\xdb\xd6\xc6\x52\xd7\x8d\xe2\x4c\xc4\x7e\x11\xd6\xf3\x50\xb9\xf4\x73\x74\xc5\x5f\xc1\x9b\x7b\xe9\x7e\x9b\x2f\xd3\x90\xe3\x02\xa3\x78\xb8\x17\x62\xdc\x5a\xd7\x12\x49\x6c\x0e\x83\xcf\xe8\xdb\x71\xe6\xf9\xde\xd9\x93\xde\xbd\xf9\xe5\xed\x05\x4d\xc3\x5a\x30\x6f\x8c\xa5\x02\xb9\x63\x72\xa9\x85\x71\xd6\xe0\x4d\xb1\xa6\x63\xaf\x11\xab\x35\x60\xa5\x7f\x89\x4f\x77\x6e\xc3\x6c\x2f\x7a\x1d\x66\xad\xa0\xfa\x60\x5a\xeb\x85\x75\x52\x2f\x05\x32\x4a\xc9\xec\xbd\xa4\xf6\x8e\x06\xd6\x74\x0f\x6e\x50\x9b\x13\x94\x3d\xa1\x3f\xe4\x01\xe9\xfb\xb2\xca\x73\x6f\x6a\xd2\x7c\x4a\x11\x9c\x4e\xa8\xeb\x24\x93\xac\x56\x08\x9f\xa1\x57\x0e\xbb\x03\xa7\xf7\x5a\x56\xeb\x01\x6b\xe6\x1d\x3c\x3c\xa4\x37\x1a\x02\x99\xcf\xa6\xd0\x5c\x44\xc7\x4c\xa7\x06\x93\xab\xc3\x24\x04\x1c\x6f\x19\x33\x46\xa9\x93\x39\x83\xa4\x14\x8d\xe9\x1d\x3a\xfa\x6e\x16\x75\x6c\xc6\xde\xc2\x0a\xd6\xd7\xb3\x03\xe0\x3b\x8a\xe9\xa5\x37\x0f\xdb\x8e\xa1\x7c\x7e\x4e\xfc\x09\x22\x78\xf3\xeb\x17\xf4\x8c\x12\x09\x5e\x70\xd2\xf2\x9c\x46\x7b\xc0\x68\x66\x05\x69\x61\xb2\x55\xd8\x63\x89\x4a\xbe\x76\x6d\x63\xc8\x14\xb7\x96\x6c\xbb\xe4\x28\x66\x04\xa9\x9d\xe1\x80\x86\x83\x3b\xc8\x6c\x18\xcd\x52\x32\x47\xa9\x54\xc1\x75\x84\xa0\x1b\xcc\x73\x64\x6f\x49\x35\x71\x56\x1c\x6d\x4c\xea\x59\xc3\x14\x3b\x1a\x02\x53\xb3\xf5\xc6\xc9\x73\x58\x75\x47\x67\x16\x67\x1f\xb3\xf8\x20\x28\x78\xd0\x1d\x26\xae\xf7\xc2\x49\xac\xa5\x31\xf2\x2c\xe8\x2f\xa2\x93\xb8\x00\x43\xbf\xb8\xca\x5e\xed\x28\x51\x2b\x09\xd6\xb9\x64\xa2\xfa\xe4\x2c\x94\x41\x32\x15\x36\x40\xb5\xe9\xfd\x30\x9c\x43\xe8\xab\xf3\x39\x3d\x1e\xee\xbd\xc0\x5b\xf4\xdd\xbc\xf4\xce\xde\x8c\x47\x0b\x2b\x58\x36\x5a\xb0\xcc\xe2\xfc\xee\x39\xc5\xb9\xd9\xc8\x8b\x49\xdf\xab\xad\xc5\x3a\xf0\x41\x36\x6b\x71\x43\xa0\x15\x10\x19\x3e\xbd\x98\x63\xc8\xee\xd8\x5d\x92\x16\xf5\x77\x49\xc9\xa4\xc6\xe6\x33\x0b\x64\x5a\x9f\xa9\x5a\x2c\x64\x4f\xd5\xbb\x52\xc5\x92\x47\xb3\xac\xeb\xb4\x79\xd2\x0c\xea\x2d\xb4\x9e\x87\x3e\x3e\xbf\x20\xe2\xc9\x82\x78\xfd\xcb\x17\x31\xf6\x80\x01\x54\xb6\xea\x6b\x3f\xb3\xd3\x56\xbd\x20\xb6\x38\xe7\xb8\x1c\x94\x3b\xfc\x52\x17\x3d\xff\xc2\x7c\xb2\x17\xf7\xa2\xae\x0b\xeb\x4b\x51\xea\x8e\xd6\x28\xb1\xdc\x7b\xb6\x4c\x9e\x69\x59\x93\xb7\x0f\x2a\x8d\x7b\xd1\xbf\x67\xad\x18\xe9\x87\x0c\x88\x68\x46\xbd\x50\x9c\x36\x19\xbe\xa3\xc1\x30\x5b\x17\x20\xa7\x98\xc3\xbc\x65\xcc\xec\xde\x0a\x70\xaf\x15\x64\x34\x16\xe9\x97\x2e\x3f\x0b\x59\xa4\x4f\xca\x8e\x3b\x48\x65\x3d\x4b\xa5\xa9\x79\x23\x1b\x78\x09\x77\x6f\xde\x47\x5d\x7e\x07\xfb\x5f\xac\xee\x15\x6b\x88\x62\x1b\xd2\xb1\x65\x41\xb0\x14\xd5\x17\x01\x99\xf8\x68\x00\x24\xac\x3a\xa5\xf7\x25\x15\x01\x1a\x55\x07\x40\x30\x44\x68\xd0\x82\x28\x2d\x60\xee\x28\x11\x2a\xbe\xac\x1c\xd4\x01\x8d\x60\x8e\x3b\x46\xab\x00\xa6\x41\xea\xe1\x58\xf4\x25\xd9\xac\xe7\x8c\x82\xdf\xb5\x46\xc8\x21\x66\x9c\xb2\xb9\xf1\x6e\xae\x75\x6c\xc6\xa5\xe1\xda\x54\x0d\x5c\x57\x44\x54\xf7\x49\x61\x83\x9e\x7b\x1d\x79\x78\x53\xf5\xc6\x75\x3f\xf7\xc5\xec\x82\x97\x98\xa3\x25\xfe\x60\x6e\x16\x9d\xf5\x5e\xe9\x39\x8f\xfe\x3c\xdc\xc3\x9a\xdc\x5d\x77\x34\x88\x0a\x30\x61\xb7\xaa\x04\x71\xac\x8d\x20\xd8\xd0\xd8\x63\x7d\x3e\xf0\x49\xf4\x85\x4f\x4c\x0a\x69\x7b\x4e\x05\xfa\x63\x9b\xca\xb8\xdd\xa7\x92\xad\x27\xaf\x06\x69\xab\x53\x85\x1e\x20\x35\xba\xc1\xb6\x91\xde\xd1\xe9\x54\xdd\xdd\xbd\x8e\x2d\x8a\xb9\x7b\x9f\xe1\xd9\x46\xd7\x59\x3d\x1a\x21\xf3\xda\xd7\xe7\x17\xf2\x78\xb2\xef\xf9\xe6\x05\xec\x5d\x28\x81\x46\xee\x9a\x38\xb6\xc2\xae\x25\x2b\x6a\x5a\x85\x4a\x2f\x84\xa6\x00\xd2\xf6\xde\xf7\x5a\x8f\x16\xd6\x02\x1b\x65\x0a\x1b\xa2\x95\x52\x24\xde\x74\xf4\x69\xca\x4d\x01\x7d\xad\x8e\x4d\xcc\x9b\x71\x9f\xcc\xd6\x9c\x73\x92\x66\x8b\x5c\xcc\x6e\x78\x82\xd1\x51\x2f\x98\x6b\xc5\xb0\xdd\x60\xa6\xc6\xae\x9e\x8c\x42\x69\xe2\xd3\x06\x5d\xd7\x1a\x2f\xb8\x96\xbd\x7e\xe1\x9c\xc3\x60\x87\x03\x6d\x2d\xeb\x75\xad\xb5\xd1\x32\xf5\x92\xbd\xe8\xca\x47\x5b\x96\xcf\x62\xdb\x9d\xd7\x9e\x9a\x16\x64\x62\x6d\xb5\xb6\x4b\xf3\x25\x92\xe9\x25\x05\x7d\x8a\x71\x3b\xf9\x59\x44\x2e\x34\xf2\x2c\x46\x0f\xf7\xd5\x01\xf7\xb1\x7b\x81\x39\x1f\xeb\x7f\x32\x6c\x7e\x41\xb5\x76\xa5\xf4\x81\x99\xc5\xeb\x54\x2e\x83\x79\xaf\x36\xde\x95\x84\x2f\x8c\x19\x06\xb3\x7a\x3f\x8c\xab\x36\xd6\x87\x71\xf2\x5e\xf3\x5f\x8d\xa6\x05\xda\xb9\xd8\x34\x43\x29\x90\x29\x05\xdb\xfa\xb0\x29\x36\xee\x46\xd8\x2e\x36\xda\x20\x6b\x12\x82\xb5\x51\x8b\x2a\x5c\xa6\x66\x36\x1f\x36\x8f\xce\x3e\xbf\x34\xfe\xe5\x53\xf3\xca\xdb\xf7\xb7\x99\xaa\x02\x2f\xcb\x8e\x63\x64\xd3\xe1\xb0\x11\x98\xf4\x65\x5b\x48\x5d\xb6\x05\x1b\xb0\x2d\x44\xa7\x65\x5b\x90\x65\x73\x28\x5d\xa9\xc4\x47\x32\x2f\xdb\x82\x2c\x5b\x05\x8e\xc5\x2b\x59\x60\x5b\x48\x98\x0d\x42\x14\xb6\x05\x03\x8b\xdb\x97\x96\x0d\x9e\xd0\x4e\xb9\xde\x19\x53\x47\xc0\xb6\xb0\x7a\xf6\x80\x2e\x8e\xa1\xab\x8b\x9d\xc7\x5d\xf5\xb1\x74\x20\xdc\x40\x35\xaf\xd5\x4b\xa2\x62\x59\x18\xff\x52\x37\x6a\xf5\x94\x8a\x50\x1d\xc5\xa9\xa5\xd5\x91\xa2\xab\xb8\xbd\xfa\x58\x0f\xc6\xd1\x06\xfa\x3a\xa4\xa3\xb3\x59\x18\x08\xb8\x48\xf1\xd0\x14\x42\x77\x6b\xca\xab\xbb\xa9\x82\xd7\xd7\x75\xd5\xe1\x52\xc0\x8e\x8e\x3e\x3f\x2b\x7f\xfc\x54\xd4\x7d\xf5\xe6\xe5\x99\xb1\x8e\xcd\xc4\xbd\x8e\xe0\xb2\x86\x6d\xef\xfa\xec\x65\x79\x97\x69\xd8\x6a\xd7\x71\xd8\x9a\xeb\xb3\xc9\x8f\xcf\xd6\x5c\xa7\x60\xe4\xc1\x67\x4b\x1c\x9f\xad\x63\x7d\x76\x1d\xf1\x69\xcb\x3e\x9d\xc5\x88\xea\xb3\x75\xac\xcf\x0e\x5d\x9f\x2d\x8c\xcf\x2e\x28\x88\xcf\x56\xc3\x75\x46\x8c\xcf\x3e\x3a\xfa\x70\x1f\xa9\x77\x22\x7b\x21\x00\x6c\xfa\x95\x52\x73\xe8\xa1\x30\xd5\x39\xb4\x9c\xcc\x69\x83\x97\xa9\x4e\x2d\x96\xa9\xae\x9e\x01\x53\x1d\x36\x6b\xc8\xea\x2d\x7e\x35\xd5\x45\xda\x56\x0f\xbd\x65\xaa\xfb\x17\x6f\x9f\x3a\xa5\xbc\x7d\xfd\xf1\xb6\x35\x53\x9d\x9a\x9b\x6f\x32\x4a\x0a\xc9\x86\xbf\x89\x36\x0c\xb2\xf6\xb8\x90\xc7\x46\x2e\xcd\xb4\x5f\x42\xfa\x3a\x41\xd4\xf9\x92\x7e\x5c\x6e\x37\x74\xa2\xcf\x9e\xe0\x8b\xbf\xf9\xf6\xd5\x6d\xcf\x18\xea\x69\x85\x91\xce\xe4\x76\x19\x6a\xa5\xdb\xda\x25\xd4\x1f\xd6\x29\x61\xc6\x29\x63\x5a\xa7\xe4\x16\xb0\xfe\x17\x5f\x3e\x1d\x81\x2f\x3f\xbc\x7e\xf5\xcd\xeb\xdb\x0a\x59\x89\xfe\xf4\xb8\x10\x75\xd9\xb0\x8f\x1e\x42\x17\xd3\xbe\xd5\x19\xf2\xb8\x68\xd7\x2d\x1c\x1b\xc4\x5b\x51\x88\x4b\xac\xbf\x2d\xb7\xe3\xee\xe7\x3b\xf3\xaf\x9e\xee\xfa\xbc\xfe\xf8\xcd\x9b\x17\x17\x7a\x21\x75\xdf\x71\x1c\xd1\xac\xc4\x4f\x69\xf0\x5c\x2f\xed\xd3\xdc\x9b\x8f\x31\x5d\x8b\x03\xeb\xee\xe1\x2d\x7b\xb4\xa0\xe2\xc4\x3c\x23\xb4\x0d\x72\xa8\xe5\x63\xf8\xc2\xc8\x3d\xe9\xb0\x90\x65\x6f\xb1\x94\xac\x5c\x3b\x39\x1c\x01\xab\x66\x35\x9a\x15\x9d\x94\xb4\x87\x63\x4f\x81\x06\xc5\xbe\x42\x91\x35\x98\xfa\xb0\x33\x01\x2f\x15\x19\x15\xb3\xeb\x79\x07\xc6\x2e\xdd\xd6\xb6\x83\x6a\xae\xfd\xd2\xb5\x4f\x14\xb1\x07\x98\x20\xac\x7b\xc7\x29\xb8\x03\x49\xc4\xa4\xae\xf0\x8a\xf0\xd2\x2d\xaa\x9f\x83\xf6\xa3\xc5\x7d\x49\xb0\x01\x83\x0f\x83\xd6\x46\x97\x16\xca\x80\x88\x85\x94\x22\xbc\x79\xe9\x0d\xd8\xef\x2d\x16\x55\x9f\x30\x66\x29\x47\x5a\x28\x9d\xa3\xc6\xf2\x6c\x9d\x1f\xee\xb1\xe9\x01\xab\x02\x35\xec\x9e\xf6\x05\x3b\xb1\xbb\x62\xbe\x7b\x81\x4a\xf3\x16\x54\xbf\xe7\x0c\x33\x5c\x5f\x47\x97\x92\x7a\x25\x2c\x9d\xf8\xee\x44\xbc\x9b\x6a\x3b\x95\xc6\xdd\xb3\xf1\x52\x00\x89\x6f\xe0\xfa\xff\xf1\xc9\x0e\xc9\x0b\x18\x9b\x5c\x6b\x36\x77\x22\x2f\x00\x07\x86\x56\xf3\x0e\xf3\xa7\x34\x0d\x59\x76\x15\xb1\x31\x33\xbc\x09\xd9\x5e\x33\xbd\xfc\x8f\x7a\x93\x5a\x01\x94\x4d\xb9\x94\x5e\x81\x92\xe6\xd8\x68\xd5\x59\x5a\xb4\x90\xef\x5a\xbf\x53\xe1\x46\x69\xa2\x34\x25\xa2\x29\xd9\x14\x2d\xe5\xb7\x4f\x91\x84\x85\x10\x5b\x81\xa3\xb7\x3a\x0f\xbd\xb1\x80\x53\x67\x9e\x56\x50\xbb\x98\xa8\x43\x88\x68\xec\xe1\x74\x57\x8d\x96\xb0\x45\x95\x06\x8f\x7d\x24\xd7\xad\x96\x9d\xe9\xc0\x96\xa0\x51\x89\x10\x6a\x3a\x74\xa6\x95\x9a\x2e\x33\x43\x5b\x61\xe8\x1c\xd1\x54\x63\x1f\x8c\x23\xb6\xbd\x35\x74\x8e\x51\xac\xa7\x34\x08\xec\x77\xd0\xd2\x29\xb2\xeb\x4e\xbd\x24\x15\xc3\xdf\xe5\xe8\xd9\x90\x7a\x7d\x8c\x89\xa5\xc6\x61\xd3\x6b\x16\xa5\xc7\x6e\xa6\x68\xd4\x18\xd6\x1a\xa7\x29\x90\x85\x42\x93\x95\xe1\xc9\xc4\xbd\xb4\x16\xdf\xa9\x10\x20\x95\xa4\x2f\x31\x6d\x4b\x09\x14\xdf\x1d\x16\x6c\x5f\xfb\xfe\xc6\x33\x65\xdc\xd1\x70\xf8\xb1\x79\xec\xa9\x05\x00\x61\xc3\x16\x9d\x01\xb1\xb4\xb6\x32\x65\xf9\x17\xe6\xae\xde\xdb\xa9\x34\x46\x6b\x4a\x93\x92\x1b\x25\x4d\xe0\xf9\xa2\x6c\xbc\xdd\x81\xa8\xe0\xcb\x30\x92\x0f\xf7\x16\x80\x6b\x78\x24\x8c\xe9\x0e\xb7\x83\xbe\xc7\xf2\xbe\x2b\xb1\x5b\x14\x06\x9f\x22\xc0\xaa\xb0\x49\x24\xcb\xae\x32\xaf\x6b\xea\xe1\x5e\x47\xc7\xc4\x96\x64\xb6\x58\x6b\xd7\x68\xc0\xa7\x48\xdd\x60\xbd\x54\xb7\xe6\x40\xb4\xb4\x1c\x64\x54\x2f\xa6\x63\x0b\xb0\x91\xde\xf7\xe0\x7e\x47\xbd\x83\x09\xd5\x2f\xbe\x7b\x87\x26\xe8\xad\xd6\xc5\x60\x9e\xc7\x7b\x9e\x27\x86\x1f\x3c\x26\x86\x1f\xdc\xb6\x79\x98\x35\x91\x3c\x6b\xef\x5b\x69\x63\xfd\x6c\xbc\xc1\x38\x0a\x1f\x50\xf1\x8d\x18\x3f\x0f\x5b\x9b\x7f\x22\xf9\x00\x71\x66\x2a\xe7\x18\x06\x8f\x8a\x5a\xa7\xdb\xf1\xe3\xf3\x1d\xfa\xd7\x8f\x3b\xf4\xaf\x6f\x13\xa7\x66\xeb\x4b\xaf\x76\x92\x3d\x16\x37\xb3\xa5\x34\xa9\x14\x5b\x1b\xcb\xec\x0a\x6d\x97\x58\xc6\x24\x5a\x9a\x10\x7c\xdd\x0a\x57\xd5\xa4\xd8\x42\x0c\x39\xbc\x85\x8d\x7d\x58\x2c\x33\x70\xef\x5a\x6c\xbc\x78\xa1\x42\xf3\x23\x92\x52\xb3\x72\x12\x59\x6f\xca\xba\xa3\x21\x40\xca\xc5\xb6\x14\x56\x5b\x78\x66\xcd\xd4\x68\x5c\x72\x21\x5a\x3f\x93\xe6\xc3\xbd\x64\x01\xf7\x7e\xa1\xe1\x67\xb7\x42\xab\x79\x47\x05\x27\xcd\x60\x39\x4b\x29\x50\x31\x66\xe6\x68\x22\x87\xd7\x0f\xeb\xbe\xbc\x7f\x46\xcb\x51\x08\x84\x67\x2d\x47\x1b\x3e\x63\xad\x0d\x58\xfa\xdc\xfb\x59\x72\xac\x97\xa4\xca\xd9\x69\xec\x5e\x00\xbd\x94\x38\x1a\x2d\xad\x54\xf9\xde\x72\x04\x68\x7d\x38\x83\xd6\xa9\x1b\xed\x68\x50\xf7\x86\x4d\x5b\x52\x9b\x09\x3d\xb3\x17\xef\xee\x4b\x83\x5e\x0a\xa7\x65\xbd\xe6\x92\xb7\x66\xef\xcf\x1e\xcf\xde\x9f\xbd\xc0\x5a\x85\xc1\x60\x8a\x3d\xc1\xeb\x85\x7a\x82\xf3\xcf\x01\x33\x40\x42\x64\x96\x5a\xc4\xb4\x3c\x64\x72\xed\x76\xd5\x17\x4a\xe9\x73\xda\x28\xfa\x24\x2e\x4d\xc4\x67\x29\x1d\x9c\x97\xe4\xe2\x59\x6d\xac\xad\x90\x22\xb9\x9c\xcb\xd7\x33\x6d\xca\x80\x55\xde\xa6\xc3\xd7\x13\xc2\x30\x0e\x61\x08\xef\xce\x12\x6a\xa5\x87\x8a\xc2\xa7\x13\xde\xc6\x3e\xd1\xd7\x31\xf2\x9c\x83\xf7\x4c\xbf\x03\x24\x49\xbf\x42\x76\x8c\x4c\x57\xc8\x3b\x2a\xbd\x04\x8f\x87\x5a\xa5\x74\xa8\x55\x10\xe9\x5a\x5d\x88\x1a\x61\x9f\xa2\xa0\xd7\xe2\x7b\xda\x92\xc7\xc5\x39\x61\x3a\x37\x98\xcf\xb3\x95\x64\x2e\x14\x28\x3d\xa6\x96\xa2\xd3\x07\xc6\x82\x42\xf6\x50\xd8\xc1\xc0\xdc\x4a\x85\xcc\x41\x35\x98\xe7\xea\xe9\xf3\x13\xf3\xc3\xc7\x13\xf3\xc3\xdb\x13\x23\x71\x25\x2b\x1d\xb2\x17\xae\x01\x59\x05\x76\x34\xb0\x19\x69\xcb\xce\x00\x93\x11\x7c\xa8\x88\xb4\x70\x0c\x5f\xbc\xc0\x08\xc9\xa8\x75\xda\x0e\xdb\xd2\x98\xc3\x7d\x59\x3e\xdc\x9a\x2e\x48\xde\xcf\x24\x51\xab\x95\x30\x62\x17\x1a\x72\xb6\xde\x77\x28\x0d\x43\x5b\x2d\x5d\x58\x01\x6a\x00\xd8\x66\x46\x6f\x1a\x0e\x22\xf5\xe0\x4b\xa4\xee\x39\xac\x25\xb4\x21\x6a\xa3\xa0\xfc\xf0\x3b\x22\x5e\x50\x7e\xf1\x68\xb8\x51\x38\x8c\xd1\xcf\x0f\xcb\x8f\x1e\x0f\xcb\x8f\x5e\x80\xc3\x9d\x9b\x9b\x9c\xb5\x0b\x28\x98\xa8\xeb\xa5\x9f\xa9\x3a\x7f\xd8\xf6\x62\xd9\x83\xeb\x8a\xac\xc9\xe8\x9d\x2f\x6e\x37\x28\xe5\xdf\x3c\x7e\xf3\xbf\x79\xe1\xcd\x5c\x4b\xbb\x9f\x95\x3a\x5e\x98\xc7\x0b\x89\xe8\x78\x21\xf5\x4b\x52\xbd\x90\xe9\xe2\xb7\x60\xcf\x9f\x3f\x7e\xe1\x9f\xbf\x40\x9a\x45\x2f\xc9\x3b\xbc\x3c\x68\x39\x1a\xd7\x62\xa5\x59\x68\x40\x02\xe6\x86\x93\x4d\x97\x63\x17\xbe\x2f\x4d\x59\x7b\x21\x9a\xc9\xe2\x8b\x32\xa5\xc0\xca\x98\x03\x98\xa7\x7a\x08\xca\x04\x8e\x5b\x5e\xcc\x93\xe1\xc1\x95\xba\xc8\x42\x59\xd7\x0a\x87\xa9\x65\xc1\x54\x87\xe2\xbb\x36\x1c\x8b\x2f\x08\xc0\x29\xf8\x39\xc9\x24\xc2\x8e\x23\xdb\x39\x73\xec\x99\x25\x0b\x53\x1b\xfc\xf4\x09\x5b\x4a\xc5\x06\x88\x66\xc8\x81\x32\x1c\xdb\x79\x31\x76\x03\xd4\x8d\xd1\x10\x02\xc0\xca\x30\xd4\x13\x15\x02\x33\x82\xa7\x6c\x21\x92\xa4\x71\x71\x89\x45\x99\xea\xd8\xd4\x2a\x9c\xb4\xbe\x35\xa6\x75\x59\xf1\x0d\xba\x5c\x97\xbd\x40\x40\xf8\x61\xed\xeb\xcb\x81\x67\x18\x98\x36\x73\x9f\x99\x51\x4c\x7e\xab\x85\x6b\xd6\xcf\xce\x7e\x09\xc1\xde\x93\x6e\xd7\x91\x7f\x7e\x02\xcf\x8f\x27\xf0\xfc\x92\x2d\x9a\x5b\x3f\xa7\xe5\xc5\xad\x9f\xc5\xa5\xd6\x8d\x1c\x54\x5d\x7f\xd6\xf2\xac\xd3\xd7\x95\x7b\x73\x63\xfb\xc7\x8f\xdf\xf9\xe3\xdb\xef\xcc\xef\x02\x0c\x14\x74\x10\xe7\x10\x86\x05\x0b\xbf\xf4\x33\x25\xe1\x4f\xcd\xb1\xce\xe3\x07\xbd\xa5\xac\xfe\xdb\xc7\x6f\xfe\xb7\xb7\x81\x89\xf0\xf5\xcd\x61\x1b\xf5\x28\x28\x6d\x3b\xf5\x28\x3e\x5a\xc8\x4d\x6a\xc8\x73\x0e\x81\x59\x75\x16\x30\x27\x9b\x96\xcb\xce\xa3\xc9\xc7\xb6\xa6\xb5\x31\x59\xad\x0d\x9b\xa4\xd6\x58\x80\xe0\x9a\xb2\x9d\x45\x6d\x97\x92\xf5\x85\x58\x89\x5a\xad\x97\xe5\x85\xe9\xbb\xab\x62\xca\xbd\xfe\x1e\x8b\xcd\xb1\x19\x5c\xfd\x45\xfb\x4c\x48\x3a\x7b\xe1\x5b\xff\xdd\xe3\x6f\xfd\x77\xb7\xb5\x51\x5d\x56\x01\x19\xbd\xa9\x65\x8d\x6a\x8d\x36\xa6\x75\xf4\x4b\x84\x6e\xc6\xd2\x86\xc6\x36\xfa\xb1\x57\x49\x34\xc6\x06\x3b\x2e\xc5\x46\x25\x36\xfb\x19\x0e\x5e\xeb\x59\xcf\xf7\x68\x7b\xdc\xa3\xed\xb6\xbd\xa2\xf4\xd0\xc5\x0e\xbd\xba\x13\x07\x3b\x54\xaa\xc9\xbf\xf1\xbd\xf7\x8f\x9f\x7e\x7f\xfb\xe9\x02\xe9\xe3\x9b\x97\xaa\xc2\xb1\x21\x7c\xe2\xe0\x7e\x7c\xe9\x88\xbf\xb1\xde\x37\x78\xfa\x92\xe4\xe6\x98\xfe\x7e\x36\xeb\x1b\xb6\xe5\x0b\x70\x4a\x01\xce\x0e\xee\x29\x76\xf4\xef\xd6\x97\xff\xc5\xe3\xbe\xfd\xc5\x4b\x54\x46\x45\x65\x3a\xb6\x65\x22\xed\xbc\x49\x28\x44\x1b\x1d\x73\x12\x0a\x17\x49\xb5\x80\x67\xcc\x95\xdc\xe8\x16\xb9\xfd\xe4\xf1\xcb\x7f\xf2\x12\x7c\xc2\x2e\xc5\x8e\x86\x15\xe4\xaf\xa5\x2a\x79\x04\x78\x50\x01\x5a\xa5\x86\x7d\x8c\x63\xf3\x6f\x79\x6f\x36\x04\x61\xe8\x64\x40\x89\x9c\xc4\xba\x7c\xce\xa9\x9e\x77\x49\xee\xfb\xa0\x86\xd5\xd3\xad\x8d\x5c\x16\x73\x38\x9a\xc0\x2d\x9b\xc3\x11\x5a\x40\x92\x3c\x55\xc7\x72\xb9\x76\x80\xee\x62\xdb\x4a\x07\xdb\x2e\x91\xa1\xcc\x13\x38\x9a\xb8\x5e\x45\x5d\xee\x10\xac\x80\x5e\x27\xf7\x8b\x8b\x3e\xdc\x43\x90\x33\xef\x39\xb4\x8d\x5a\xa8\xd9\xdb\x48\x9b\x09\x8d\x90\xc7\x11\x2b\x23\xbc\x5e\xc3\xc1\xbb\x61\xbf\x35\xb8\xc1\xa9\x80\x45\x66\x91\x04\x2e\x16\x75\xdc\x2d\xc2\xf5\xd4\x7a\xc5\x5e\x9c\xdc\xac\xbe\xdb\x9b\x06\xe3\x62\xe1\x80\x4b\x02\x33\x63\x8c\x4a\xe2\x79\x01\xc4\xe4\x56\x2f\x64\x6c\x7c\x6b\x13\xf6\x59\x3d\xd2\xa0\x59\x3d\x5d\xa3\x74\x83\x47\xff\xe5\xe3\x09\xfc\xcb\x17\xdc\x54\xa2\xd9\xa2\x60\x3f\x28\xd8\x4d\xf7\xf0\x03\x6e\x01\x89\x2b\xf6\xe9\x4b\x92\x60\x7b\x96\x96\x5b\x7c\xe9\x90\x08\x0f\xe9\xb2\xa3\x35\x60\x4e\xe6\x5e\xc2\x6a\x5d\xef\xa5\x73\xdb\xe1\x36\x61\x5a\x6f\x3a\x2b\x74\xce\x5e\xfa\x06\xaf\x77\x91\x55\xbb\xd5\x3b\x23\xfa\x72\x31\xad\x8f\x1e\x78\xe4\x1c\xd0\x95\x3a\xed\xab\x61\x59\xca\xc3\x5d\x11\x3a\x2e\x25\xca\x84\x87\x08\x84\x67\xbd\x05\x50\x4b\x7b\x5c\xc2\x6e\x0c\xcf\xfe\x78\x78\xf6\x17\xd6\x37\xe2\x01\x0b\x4d\xaa\x2f\x3b\x58\x29\x5f\x05\x01\xb1\xd3\x2a\x52\x0b\x1d\xbe\x27\x3c\xc7\x72\xbf\xd9\x88\x86\xb5\x13\x75\xdf\xe0\x27\x73\x62\xa3\xad\x3e\xf0\xc4\xa5\x26\xd7\x99\xd2\xe8\xdb\xa9\xc4\x35\xc9\xc1\xfc\xfb\x6f\x89\xc2\x26\x97\x12\x99\x34\x09\x7a\x46\xcc\xcc\xea\xc4\x25\x7b\xee\x79\x04\x7e\x75\x69\xa3\xd6\x32\xe2\x16\xc5\xd7\x2d\x1c\x72\x25\x8a\x3e\xd5\xfa\xdd\x22\x8a\x63\x67\x72\xc1\x75\x10\x05\x1a\x5c\x6a\x22\xa2\x63\x02\xb3\x7a\x58\xfc\xf1\xa9\xd9\xf3\xe2\xcc\x0f\xf7\x20\x04\xea\x3b\x8e\x45\x20\x45\x95\xa0\xea\x92\x62\xec\x87\x41\x4c\x8e\xd7\x3c\x21\x0a\x5d\xf4\x22\x19\xeb\xe2\x12\x84\x23\x62\x8a\xd4\x2a\xe9\xf5\x8a\xbd\xda\x35\xb2\xa5\x7c\xd5\xe2\xae\x8b\x85\xc7\x54\x60\x6f\x59\xcf\x05\x51\x8c\x45\x14\xa5\xa7\xb2\xa0\x07\xc2\xa5\x30\x17\x51\x94\x9e\xaa\x6b\x94\xa8\x3f\xef\x6e\xff\xef\x1f\xcf\xfa\xbf\xbf\xed\x4e\x2b\xd1\xcc\xf3\x2c\x03\x88\xc5\xe4\x77\xd4\xfb\x65\x69\xb0\x5a\xe3\xc7\xce\x5b\x21\x2b\x51\x5f\x9e\x88\x50\x56\x69\x01\x4b\x82\x56\x99\x0d\x61\x38\xd4\x47\xcb\x94\x49\xdd\x14\x7b\x64\x08\xdc\xa8\xb9\x2d\xb5\x19\xa0\x0b\x3b\xa8\x97\x7e\x1e\xa4\xdb\xd1\x85\x87\x7b\x19\x52\x3a\xcf\xd9\x49\xe1\xa5\x55\xfa\x4f\x70\x3d\x62\x00\x56\x26\xd7\x23\x62\xed\x8a\x66\xdc\x51\xef\x03\x4e\x57\x70\xac\x39\x94\xc3\x58\xf1\x7e\xa5\x44\x46\x29\x98\xa5\xab\xad\xe9\x2a\xa5\x64\xc8\x25\xfc\x06\xa5\xfc\xd5\xe3\x31\xfb\xab\xdb\xce\x4b\xbd\xf4\x5f\xdb\xeb\xa8\x1c\x2d\xe1\x6f\xe3\x88\x0d\x32\x71\x78\x07\x5a\x26\x58\x9c\x4b\xdf\x61\xb8\x36\x83\x9b\x85\x0f\x9e\x3c\xe0\xb9\x3e\x29\xbd\x8d\x1e\x40\x3e\x2b\x54\x12\x34\xee\xd1\x08\x06\x6a\xa5\x89\xd0\x40\xf1\x9c\x6a\x05\xb9\x34\x27\xbc\x5d\xd6\x0a\xb7\x2b\xdb\xf7\xe5\xc2\x3e\xe0\x0f\x61\x85\xd1\x4b\x1e\x2d\xb4\x5e\x44\xd3\x85\xcf\xa3\xfb\x3e\x3a\x15\x5a\xaf\x1e\xc3\xf0\xc7\xd8\xbd\x5c\x68\x1d\xd8\xbc\x14\x69\xc9\xe5\xc8\x88\x3d\x34\xce\xde\x0c\xbf\xb8\xc3\x8d\x64\x29\x79\x08\x19\xf1\xbe\x16\x7b\x0f\xdd\x57\x83\x05\x4e\xb4\x23\x7d\x6a\xd2\xe1\x62\x13\x2d\x83\xa7\x0f\x6a\x29\xba\x47\x32\x8c\xf5\xe9\xa5\xdf\x96\x46\x4b\x54\xaa\xe7\x8a\xe2\x34\x2d\xea\x2c\x02\x89\x5a\x50\x9a\xad\x3a\x40\xd4\xa3\x71\xe9\xc1\x23\x5a\x2e\xdf\xa8\x80\x99\xe7\x44\x63\xb7\xe2\x27\x34\x60\x5a\x3d\xf9\x94\xcc\x26\x32\x39\xac\x8d\x98\x94\x76\x47\xe9\x10\xb9\x6b\xcb\x98\x9a\x4a\x9c\x45\x79\x2f\xac\x82\xc8\x88\xfa\x8f\x60\x09\x83\x3d\x09\x34\x3d\x18\x2f\xa0\xb0\xb5\x75\x18\xb6\xb6\xd0\x32\x67\xca\xf2\xd8\xcb\xb4\xc6\x39\xe6\xb1\x1c\x9e\x5f\x54\xf3\xf1\xa2\x9a\x2f\xb0\xdf\xfa\xd2\xd2\x2d\x43\x8a\x14\x75\xe8\x52\x35\xad\x5f\x95\xcf\xec\xf8\xe5\xf9\x17\xfd\xf4\xf1\x8b\x7e\xfa\x3d\x6e\x33\x85\xf0\xa8\x8f\x6c\x9a\xb4\x97\x22\xdd\x10\x69\xd8\x9d\x1b\x47\x2c\xf7\x67\xc4\xce\xf2\x72\x7f\xa6\x43\xed\x94\xa5\x76\x2e\xaf\x68\xc6\x55\x31\xc9\x1d\x66\xe2\x52\x3f\x35\x69\xa3\xab\x7e\x20\x9e\x9b\x04\x7e\xdc\x6b\x98\x95\x80\x7c\x9a\x20\xae\x56\xd6\x8e\x32\x1c\x8a\x06\xde\xb1\xd4\x39\x3a\xd4\xb9\xfa\x3d\xe1\x8d\x50\x6a\x64\x2a\xdd\xd5\x7d\x69\xe8\xf4\x96\xcb\x7d\x73\xb9\xf8\x3c\x3f\x26\x97\xc7\x63\x72\xb9\xcd\x05\x89\x9b\xb8\x6d\x10\xbb\x6b\xb0\x23\xb6\xe2\x1f\x35\x11\xb9\xe9\xe1\x7f\x2e\x44\xdb\x71\xed\xf3\x6f\xfc\x0f\x8f\xdf\xf8\x1f\x5e\xf4\x67\xb3\x4e\xdb\xf8\x2e\x4a\x9c\x46\xa9\x52\x7d\xb4\x7e\x8e\x18\x9b\x73\x6f\xc3\x73\x53\x87\x6f\x93\xe8\x76\x45\xb3\x1c\x85\x7a\x0b\x82\xfa\xef\x58\x83\x49\xb6\xe3\x99\xcf\xf7\xec\x3f\x3e\xee\xd9\x7f\xbc\x3d\x16\xac\xad\xd8\x72\xc9\x98\xeb\xc2\x8b\x2d\x82\x5b\x48\xb1\xee\x51\x83\x32\xc8\x11\x76\x66\x46\x9b\x28\x4c\xd3\xbe\x15\xcd\xd7\x35\x7e\x78\x6f\x8b\xe6\x76\x3c\xed\xf9\x3e\xfd\xa7\xc7\x7d\xfa\x4f\x2f\xcc\x8f\xb7\xf0\xbe\x0d\x1a\xbf\xdb\xa7\x82\x98\x2c\x5b\x08\x7d\x37\x4f\xde\x8c\xc7\xa6\x76\x9d\x2f\xd9\x8e\x7b\x9f\xef\xc1\xc3\xe3\x1e\x3c\xdc\xf6\x99\x81\x51\x01\x4a\x10\x10\x64\xa7\x9a\xac\x46\xce\x1b\x68\xa4\x28\xb5\xf4\xb1\xeb\x8a\xac\xb9\x2c\x3a\xe3\x91\xdb\x71\xef\xf3\x3d\xf8\x9f\x1e\xf7\xe0\x67\x1f\x5e\x7d\xfe\xd7\xaf\xbf\x79\x31\x52\x6d\xc5\x96\xe5\x38\xbb\xca\xe5\x44\xe2\xe7\x94\xb8\x9c\x84\x05\x76\x29\xf2\x08\xfc\x52\xd7\x3c\xff\xd2\xff\xf9\xc9\x4b\x5f\x7d\xfe\xd7\x2f\x87\x63\xf0\xa1\x15\x9e\xd5\x78\xed\x7f\x23\x38\x23\xfb\xd8\xae\xa7\x9e\x7f\xd3\xff\xf2\xec\xe7\xbd\x1c\x53\xa6\x18\xd8\xfa\x08\xce\xe3\xb3\x7a\x5f\x1f\x6a\xc8\x10\x91\x03\xbf\xd4\x35\xcf\xbf\xf5\x7f\x7d\x1a\x91\xf5\xf9\x9b\x37\x9f\xbf\xf9\xf0\xf9\xb7\xb7\xf3\x6c\x28\x5b\xf3\x94\x33\x73\xdf\x4c\x8e\x65\x16\x3d\xeb\x6b\x1d\x67\x92\x79\x73\x65\x18\xac\xb6\x65\x6f\x66\xdb\xe0\x8a\x59\xbf\x1c\x0f\x78\xbe\x43\xff\xdb\xe3\x0e\x7d\xfb\xee\x8b\xd7\x1f\x3e\x7e\xfe\xfe\xc3\x0b\x3e\xc8\xdd\xb3\x9d\x28\xf3\x4c\x06\x35\xba\x7b\x5e\xea\xef\xe7\x5f\xf0\xbf\x3f\xdd\xee\x7f\xf5\x82\x7f\x73\xc2\x57\xb5\xdb\xd9\x8b\xc1\x2c\x3d\x32\x11\x01\x75\x3d\xf3\xfc\x4b\x5e\x3d\x19\xd6\xdb\x2f\x50\x6b\x7d\xcf\x12\xa8\x1d\x9e\xa0\x1a\xcb\x66\xdf\x6d\x5f\xd1\x45\xcb\x79\x38\x80\x0b\x28\xe0\x15\x7a\xa2\x0e\x1f\x12\x28\x09\x7c\x38\xbe\x5b\x34\x85\x37\x7f\xf0\x24\x87\x20\x86\x03\xbc\x94\x26\x26\xda\x34\x10\xcb\xd4\xcc\x57\x2e\x03\x77\x3a\x17\xda\x0e\xe1\x1d\x98\x91\x12\x1a\x57\x7a\x4e\xcb\x6c\xa3\x10\x83\xf6\x3a\x36\xeb\xa5\xfc\xe6\x54\xd5\xb5\xbd\xdb\xf3\x2e\x4b\x9d\x1d\xde\x22\xe8\x4c\x16\x7b\x29\x7b\xf0\x5d\x4a\x6f\x39\x0a\x57\x48\x1b\xe3\x88\x48\xe8\xa1\xd3\xa1\x09\xf6\xc2\xec\x81\xc6\x8a\xf8\xec\xb0\xc2\x22\x2f\xc5\xa1\x20\xd6\xdd\xd8\xed\x0f\xe9\x17\xd6\xdc\xd7\xd6\x7f\x60\x54\xa0\x65\x1e\xb0\x3a\x2e\xfd\x9c\x6a\x0f\xf7\x48\x4a\x11\xb2\x7b\x5f\xae\xb7\xd8\x18\x48\x85\xbb\x24\x93\xce\x40\x62\x97\x00\x36\x96\xee\x17\xeb\xe3\xec\x96\xbb\x61\x57\x7e\x60\x7b\x5b\x9d\xa7\x84\x94\xf6\xb0\xd7\x91\x11\x35\x50\x12\x35\xe0\x4e\xcc\x94\x53\x43\xef\x28\x6d\x1e\xef\x7b\x7e\xee\x7f\xf6\x84\x90\x5f\x00\x32\x1d\x4c\x78\x47\x03\xab\xab\xc7\x68\xd2\xc7\x0a\xca\x17\x9b\xe9\xa5\x45\x4e\x5f\x66\xc0\xdd\x72\xa1\x0a\x38\x34\x19\x5c\xc7\x89\x1c\x26\x9e\x52\x49\x72\x85\xfb\xca\x88\xcb\x88\xb1\xc3\xbd\xa2\x4b\x36\xa3\x85\xfc\xa7\x2f\x8c\xc8\xf0\x34\xc2\x14\x24\x5c\x4f\x9d\xf1\xc6\x81\xbd\xf3\xc8\x16\xd0\xfd\xb0\x4d\xdb\x2f\x86\x34\x33\x25\x31\xad\xef\xe9\x71\x57\x14\x9d\xf0\xda\x75\xa8\x10\x08\x09\x92\x42\xaf\x31\x9d\x46\x2b\x00\x6d\xa2\xb0\xd3\x28\xbc\x70\x03\x36\xf4\x70\xbb\x08\x25\x96\x2c\xdb\xf2\x80\x84\x79\x1a\xd6\x1e\xdb\x61\xa3\x2c\xf8\x28\xde\xb8\x33\x20\x15\x97\x56\x69\xda\x64\x74\x68\x34\xc6\xe3\x62\x76\x43\x46\x7d\xfe\xc4\x7f\xef\x05\xc9\x9d\x88\x55\xf7\x60\xc4\xaa\xc3\x4d\xb7\xd6\x4b\xc6\xd2\x22\x25\xe0\xaa\x8e\xad\x62\x88\x29\x60\xbf\x44\x7f\xe0\x6a\xde\x98\x3a\x74\xfb\xea\x57\xe7\x56\x34\xd5\x8f\xc0\x37\x5b\x81\x6f\x44\x8d\x79\x32\x7c\x09\x06\xf2\x0c\x08\xf1\x2c\xdd\xcf\x98\x2f\x66\xb9\x57\x1b\x8e\x02\x36\x00\xf1\xeb\xda\xa1\x34\x91\xfb\xa0\x5b\x22\x56\x73\xcd\x17\x2f\x92\xb9\xc3\xa6\x41\x0f\x9e\xa3\xae\x45\xe8\x8c\x66\xcb\xab\xc7\xbd\x0f\x3b\xa7\xd9\x9e\xe6\x88\x76\x4e\xed\x2d\xa2\xa0\x21\xb7\x54\x47\x8e\x94\x2c\xc4\xce\xd5\xf3\xb1\x9b\x71\x1d\x9b\xd5\x52\x88\x81\xb4\x1b\x31\xc6\x94\x84\x39\x62\x8a\x2f\x4b\x90\x95\x4a\xee\x01\xcf\x69\xa9\x35\x3a\x04\xd7\x72\xd2\xac\x7b\xb9\xd3\x3c\x06\xf5\xf9\xa9\xf9\xe2\x49\x8a\x9d\xdb\x44\x51\xaa\xa1\x8e\xbd\x8e\x98\x1e\xe4\x63\x50\x84\xf4\x0c\x1d\x53\xb0\x2f\x7c\xc4\x6e\x2e\x76\x02\x49\x53\xec\xe4\x3a\x36\xc5\x47\x47\xea\xa2\x06\xea\x3e\x8a\x4f\x18\x6f\xcb\xad\xa9\xef\x91\xc5\x67\xdb\xda\x95\x9f\x66\x47\x08\x91\x2d\xe2\xaa\x37\x30\x4d\xae\x8b\xc5\x57\x00\x42\xb1\xa6\xea\x18\xe7\xc5\x74\x3c\xdc\x23\x2e\xa0\x18\x85\x73\x2b\xc5\x5f\xc2\xef\x04\x11\xd5\xbd\x71\x8d\xe3\xc8\xc6\x5d\xe1\x30\x04\xa8\x3e\x96\x19\x1e\xb6\x3b\x22\xf4\x50\x7a\x5c\x22\x62\x8f\x91\xd0\x4c\xeb\x5c\x06\x4d\x27\x5d\x24\x84\xd5\xe5\xc8\x2f\x05\x67\xc9\x22\xbb\xbe\x7c\x70\x3c\x63\xc5\x26\xe8\xb8\x18\xdf\x90\x74\xaf\x9f\xb8\xd4\xdd\x26\x87\xc3\xab\xb4\xa4\x39\x94\x16\xed\xdf\x65\xcb\x91\x0e\x69\xc2\xc3\x56\x08\x46\xe7\x8b\x1d\x21\x18\x98\x1e\xd8\xe7\x6c\x72\x28\x02\x44\x74\x45\x83\x09\x72\x94\xac\xa5\xab\xe3\x60\x35\xd8\xa7\x73\x99\x23\x47\x1b\xc6\x6b\xc5\x42\xbd\xa7\xe2\xc3\x1e\x17\xf5\xd2\x84\x6a\xa9\x65\xd3\x2e\xb5\xcc\x10\x73\xa3\x96\xd8\x7d\xc7\x9c\x0f\x9d\x1e\x02\xf7\xf5\x70\x85\xfb\x7a\xa2\xc3\x81\xed\x5f\x81\x89\x6d\x58\x11\xf4\xf2\x70\x5e\x56\x03\x58\x5f\xc6\x1c\xd8\xf0\x80\xaf\xf8\x89\xaf\xfe\xb4\x0f\xf7\x45\xbd\x20\x88\xec\x8b\x20\x8a\x9f\xd5\x84\x7a\xaf\x8e\x23\xcd\x4c\x98\x21\xcb\x8c\x2b\x9f\x33\xfc\xe2\xde\xf7\x44\xa0\x47\x51\x20\xa4\x27\x78\x56\x0a\x2f\x7e\x98\x39\x8f\xe7\x3e\x3f\x41\x3f\x7f\x12\x69\xf5\x02\xe4\x8a\xd6\x2f\xa3\xeb\x99\xc4\x2f\xc5\x88\xce\xca\x71\x21\xd2\xb1\x2b\x6c\x37\xa6\xad\x06\x09\xb6\x58\xec\x1e\x6a\x89\xf9\x21\x8d\xac\x7a\x95\x45\x48\x49\xfb\x30\x42\x63\xa5\x73\x21\x0b\x9a\xf0\x1a\x23\x53\xdf\xa8\x96\x38\x89\xf9\x8e\x8d\x4a\x2a\x82\x47\x5a\x1a\x92\xb0\x65\x71\x95\xd4\x3d\x4a\xea\x94\x64\x04\x53\x12\x96\xe9\x0e\xbf\x81\xb1\x7a\x06\x82\xab\xbe\xba\x97\x80\x56\xbe\x01\x3d\xbf\x7c\x02\xc4\x5e\x60\x09\x7a\xb0\x04\x3d\x58\x82\x2e\x96\xa0\x7c\xb0\x84\x71\xb0\x04\x3f\xc4\x9b\xdb\x15\x61\x60\xd6\x7d\x4c\x04\x2a\x85\x2e\x5d\x78\xf5\x32\xe2\x52\xb2\xb7\x47\xb4\x13\xdc\x08\x95\xda\x89\x5c\xe7\xa8\x86\xf4\x98\xf5\xa5\x27\x19\x06\x3c\x74\x82\xa7\xa5\x2a\x1a\x0d\x31\xf3\x4a\x01\x6a\x3c\x49\xfa\xe4\xe8\xed\x24\x45\x2e\x10\xd2\xea\x1b\x8f\xb8\x3b\x51\x97\x5d\xac\x30\x5b\x58\xd3\x15\x1a\xee\x08\x33\x3c\x31\x12\x0d\xad\x46\x01\xe2\x76\x62\xee\x33\xdc\xeb\xe2\x0e\xbf\xb4\x53\x8e\x25\x8c\xe4\x32\x1c\x23\x5f\x0c\xbd\xf8\x56\x9f\x66\x79\xf0\xad\x63\xef\x24\xc6\xe2\x5b\x7c\xf0\x2d\x3b\xf8\x96\xfe\x2e\xdf\xd2\x83\x6f\xe9\xc1\xb7\x8a\x97\x17\xdf\x32\xf0\x2d\x43\x9e\x2c\x85\x18\x47\xb2\x2b\x04\x38\x7b\x43\x12\x17\xea\xe8\x8b\x74\xb9\x44\xd2\x9e\xdd\xe0\x01\x1d\x26\xcb\x70\xc5\xb4\xf8\x96\xd9\xdd\xe2\x5b\x71\xf0\xad\x58\x7c\x2b\xfb\xc1\xb7\xf4\x65\xbe\xf5\x8b\x27\x09\x04\x5e\x48\x97\x85\x10\xd2\x5d\xad\x23\xcf\x4b\x83\x5b\x7b\xb7\x40\x0c\xd5\xe2\x3e\xe3\x3b\xa0\xa3\x2b\xd0\x00\x71\x83\xbd\xf7\x15\x76\x93\x48\x36\x86\xa0\x80\x58\x52\xe2\xe2\x3e\xf6\x34\xb8\xf5\x36\x18\xd0\xc2\xe0\x54\x90\xf0\x16\x95\x25\x3f\x41\xd6\x7e\xc8\x4f\x47\x64\x42\x86\xce\xea\x51\x24\x36\x1b\xcd\xae\x68\x4c\x2f\xe3\x96\xe7\xcb\x9b\xc7\x9f\xfa\xe6\xb6\x5a\x09\xcf\xad\xe4\x73\x94\x5c\x1b\x79\x26\xea\x76\xe9\x67\xee\x81\x3f\x4d\xe5\x92\xa5\x94\xd5\xdf\x3d\xf9\xe1\xde\x40\xcc\xce\x3b\x1a\x4a\xd9\x90\x9b\x46\x4d\x57\x2c\xb6\x0e\xda\x03\x7e\xb7\x83\x0e\x07\x1a\x33\x64\x69\xc2\x5d\xab\xd1\xbd\xad\x5d\x94\xe8\x47\x04\xb7\xc8\x4a\x20\xc6\xd8\xb5\x1a\x2b\xea\xf8\xfa\xae\xe7\x3f\xf2\x3f\x3f\xfe\xc8\xff\x7c\x7b\x3e\x57\x5a\x05\x3e\xa7\x05\xb2\xb7\xa5\x45\xa9\xcf\x02\x0f\xa8\x53\x81\x8c\x00\x6d\x62\xb7\x8d\x8b\x00\x0b\x2c\x15\x49\x4a\xec\x2b\x4d\x4a\x2d\x50\xb2\x6a\x28\xf6\x04\x4f\xca\x1d\x9a\xf7\x89\xd9\x77\xd6\x7a\x0e\x8f\x06\x6a\x65\xa1\x29\x45\x65\x2c\x86\x10\xc8\xa2\x44\xc4\x4e\x9d\x58\x12\x79\x84\xaa\x81\xe8\xea\x13\x73\x40\xfe\x9c\x68\x10\xe2\x07\xaa\x63\xd3\x09\xd4\x8a\xb1\x2f\xc2\x38\xc6\x7e\xd8\xdd\x1a\x7b\xa4\xe3\xa3\x6c\xbe\xf2\x3f\x29\x7c\xfa\xd7\xd8\x8f\x5c\x63\xbf\x02\x3f\xcc\x26\xf2\x20\xd6\x5d\xab\xd1\xbd\xe5\x72\xd1\xec\xeb\xae\x1a\x7b\xb0\xda\xfa\x1c\x3c\x10\x63\x5f\xaf\xb8\x39\xf6\x7f\xfd\x78\xec\x5f\x48\xb5\xc2\xd6\x34\x64\x93\x52\x7b\x74\x60\x05\xfb\x75\x05\xdb\xc5\x85\x60\x33\x0a\xd5\xb5\xcf\x0d\x1e\x4a\x9d\x37\x87\x03\x22\x6f\x44\xee\xad\x9f\xd3\x73\x3b\x9e\xf5\x7c\x8f\xde\x3e\x09\x38\x78\x21\xb6\xb8\x90\xb1\xf8\xef\x2c\x79\x82\x57\xd3\x18\xdf\x2d\x79\x12\x89\xf5\x83\xdd\x0a\xb6\xfe\xea\xf1\xfb\x6e\xdb\x35\x78\xac\xd5\xb7\xf1\x18\x88\xbe\x12\x04\x29\x09\x21\x45\x15\x75\xf7\x69\x64\x8b\xad\xd8\x55\x7f\x02\x42\xef\x61\xd3\x47\xb6\x91\x63\x47\xd8\x70\x47\x72\x09\xa0\x51\x9a\xe3\xaa\xf7\xc2\xa3\xb3\x6e\x1a\x35\xf5\x3d\x8b\xf3\x00\xcd\x32\x76\x87\xa4\x78\xd9\x5c\x89\x29\x46\xc7\x96\xcf\xb8\xc4\xe0\x7d\x2c\x17\x49\xf8\x58\x66\xd2\x72\xd7\xef\x25\x0e\xc0\x84\xee\xc2\x1c\x51\xf6\xc1\xb5\x98\x8a\x2b\x58\x57\xdc\x59\xec\x1c\x21\x7c\x31\x5a\x66\x9f\xa5\x63\xd6\x9d\xe2\x0b\x5a\x8a\x0a\x50\xca\x5a\x6b\x80\xc9\xba\x84\x38\x8f\x1b\xd3\xf7\xee\x49\xf8\xdc\x6d\x62\x46\xae\xc5\xe4\xad\xb4\x54\x70\x69\xc0\x30\x02\x8a\xbe\x72\x69\xbd\x72\xe9\xb8\x72\x69\x5b\x6e\x91\xd8\x40\xeb\x5d\x8a\x4b\x77\xc0\x62\xea\x99\xcd\xc3\xd1\xc9\x01\x6f\xbe\x84\x8d\x60\x80\x82\xa2\xd4\xb7\xd1\x5b\x9a\xc3\x2f\x34\x0b\x26\x42\xcb\x29\xa9\x9d\x07\x97\x5e\x8f\xaa\x35\x1e\xf1\x1d\x97\xae\xef\x95\xb8\x61\x0d\x7e\xff\x24\x53\xc7\x0b\xda\x3c\x35\x33\xda\xeb\xe8\x0e\x0b\x74\x0b\x5f\x89\xe5\x86\x2a\x42\x8a\xb1\x95\x8a\x3d\x36\x7c\xb5\x1c\x8a\x4b\x1e\xa9\x29\xf0\xd5\x75\x2d\x54\xcd\xba\x99\x88\x4a\x09\x27\x04\x20\xe3\x8f\x65\x4e\x49\x6e\x42\x2b\x5e\x9e\x24\x66\x96\x46\x4d\x48\x63\x02\x6f\xd4\xe1\x4b\x05\x85\xff\x17\xdc\x86\x80\x08\xd4\x71\x17\x7a\x2a\xfd\x62\x46\x0f\xf7\x62\xfd\x0e\xd1\xcd\xd6\x97\x76\x57\x10\xba\x10\x01\x09\xf6\x37\x10\x32\x86\x4d\x07\x5b\x2a\x73\x1e\x2a\xb3\x20\x24\x72\xc2\xcb\x33\x1c\x61\xf1\x75\x5f\x46\x5c\x1f\xbe\x57\xdb\x8b\x7b\xfb\x4a\xf3\xb0\x8c\x05\x0c\x6e\x56\xcb\xb1\x46\x02\xa0\x5b\x0d\xa0\x5b\xe1\x34\xd9\xf1\xee\xba\x4e\xdc\x71\x5f\xf5\xed\x18\x84\xe7\x27\xe9\xeb\x27\x59\x81\x5e\x32\xb9\x00\x25\xec\x68\x5c\x4d\x53\x6b\x2c\x07\xaf\xb1\x44\x3e\x80\xe9\x71\xe8\x44\x79\x44\xda\xc1\x86\x82\xa5\x33\xfc\x72\x52\xf2\xc5\x20\xd7\xe2\xf1\xb5\xca\x43\xae\xb9\x4f\x0d\x76\x25\xf8\x93\xf8\x4a\x65\xc2\xcb\x07\x1f\xf3\x6d\x79\x35\xba\x70\x1b\xd6\x17\x1f\x88\xf0\xb9\xfa\x77\x7c\xea\x7d\xba\x60\x49\xa5\xcb\x9d\xb3\xb6\xd4\x5c\xe3\xd8\x97\x26\x08\x34\x12\x09\xcf\x13\xac\x73\x1e\x6b\x9d\x1f\x5b\x89\x58\xe7\x49\x17\x1e\xb1\x03\xe1\x29\x35\x0d\xc7\x0e\xe1\xda\x44\xa2\xdd\x23\x56\xba\x83\x3a\xdf\xfb\x4a\x77\x80\xad\xfc\x6c\x32\x18\x29\x08\xaf\x8b\xe5\xd9\xb1\xff\x9b\x27\x41\x4b\x2f\xc3\x78\xeb\x07\x8c\x97\x43\xb3\xb7\x59\xe8\x77\xc1\x78\xb9\x6a\xf6\x71\x85\xf1\x74\x85\xf1\xb4\x0c\x58\xb9\x5c\x05\x56\x02\xaf\xef\x94\x0d\xcc\x46\x4a\xbf\x94\x58\x2d\x44\xbb\x42\x9c\xc6\x34\xb3\x03\x22\xeb\x23\xd5\x5e\xc6\x6f\x55\x7b\xea\x07\x44\x5e\x86\xa5\xfb\x82\x11\xc6\x03\x70\x62\x99\x3b\xe2\x50\xed\x17\x41\x2c\x73\x47\x87\xe4\xc7\x00\x8e\x23\x5f\x84\x06\xa0\x33\x36\x3d\x87\x5d\xe2\x90\xf1\x59\x7c\x40\xaf\xd6\xb1\x3c\xcc\x2e\x74\x98\x5d\x04\x1c\x5d\x6b\x72\xbb\x20\xf8\xdc\x73\x20\xe3\xdb\xd5\xf4\xf6\xec\xa0\x7f\x78\x3c\xe8\x2f\x24\x2b\x1e\x79\x08\x9f\xc3\x82\xd4\x06\x22\x72\x80\x7f\x61\x66\x1a\xba\x78\x2c\xf5\x84\xbb\x02\x4c\x85\xb6\x2d\x74\xac\x7d\x1f\x06\x94\x8c\x1c\x1d\xe9\x06\xcc\x58\x7f\x7b\xfd\x4e\x86\xfc\xb8\x8b\x2d\x4b\x3f\x98\xa9\xf1\xd8\x96\xe9\x58\x76\x87\xb3\x56\xa7\x86\x71\xea\x46\xf3\xda\xa5\xe7\xbf\xec\xe3\x93\x68\xcf\x17\xf6\x05\x6b\x9c\x65\xaf\xa3\x20\x32\x7c\x20\xa4\x09\x36\xde\x14\x30\x19\xa5\x22\x0e\x6b\xaa\x63\x87\x9d\xd7\x07\xb2\x03\xe8\x88\x59\x52\xde\x5c\x91\x0a\xd6\x4d\xa1\xb6\x45\xe8\x5e\x47\xd8\x13\x8a\x59\x8d\xb1\x72\x30\xf7\xae\x2b\xe1\x24\x44\xfd\x31\x94\x7b\x88\x5d\x19\x78\x5f\xa7\x8e\x4c\x07\xc8\x5f\x63\xd0\x14\xe0\x45\x10\x16\xe7\xd4\xdc\x53\xf3\x0e\x31\xb2\xa2\x2d\xe9\x30\xcb\xc5\x22\xe4\xd1\x63\x09\x2c\xa6\xdd\x42\xea\x08\x77\xfb\x41\x7d\xaa\xe7\x62\x8c\x82\x9c\x41\xb0\x47\x47\xea\x8e\xa3\x21\x70\xad\x85\xd8\xd4\x62\xb4\xa5\xaf\x8a\x36\x77\x41\xfa\x66\x17\x5b\x71\x69\x88\xc1\x5d\x6e\x57\x23\xac\x19\xfc\xb7\x4a\x0f\x2c\xd4\xd1\x07\x2c\x27\x3b\x1a\x2c\xcb\xc6\xd6\x28\x74\x0e\xcf\x16\x84\xd8\x5f\xf9\xad\x91\x93\xf8\xc8\xee\x55\x63\x02\x4b\xd1\x90\x49\x81\xac\x08\x93\x34\x9a\x28\x9d\x25\xc6\x2e\xc9\x77\x3c\x4a\x16\x19\x4c\x38\xea\x0a\xf2\x41\x5a\x65\x6c\x45\x14\x27\x18\x7b\xc0\x0a\x31\x1a\x82\x3b\x86\xcf\x63\x7a\x9f\x5f\x24\xdf\x3c\x49\xba\xf4\x82\xd3\x0e\x92\xdc\xea\xd5\x32\xa1\xb2\x2c\x13\xa2\x17\x49\x83\xf6\x2d\xbc\xd2\xfc\x72\xea\xf4\x1c\x70\x84\x46\x72\x91\x2c\xb9\x5a\xcc\xb1\xf4\x90\xc4\xfe\x43\x0e\x82\xe3\x34\x68\x08\xc6\xd7\x42\x30\xa3\x1a\x86\x4f\xdf\x8a\x8a\x9a\xc2\xf0\x54\xfd\x47\x32\xe3\x46\x31\x07\x0c\x07\x30\x28\x9f\xc8\xe1\x9a\x76\x42\xdc\xdd\x1a\x47\x48\x57\xa4\x88\x0b\x70\x9a\x3b\x04\xb7\xd7\x9c\x04\x1f\x76\x1f\x3a\x64\xcd\xb0\x4b\x7d\x51\x7d\xc3\xf3\x83\xf3\xed\x93\x1d\xb4\x17\xf6\x9e\x4a\x1f\x4c\xe8\xc8\x98\x64\x6f\xac\xb3\x08\x17\x20\xc2\xfc\x08\x69\x89\x66\x93\x6b\x05\xc6\xa4\x41\x48\x87\x44\x8e\xc4\xd9\x87\x29\xaa\xf3\x45\xb5\x23\x1b\x1a\x0c\xa2\xc8\x8e\x40\x70\xc0\x64\xe9\x13\x92\x10\xc1\xcb\xb6\xec\xfc\xe3\x70\x13\xb1\x0e\x17\xb9\x94\xd1\x84\xbe\x9b\xa3\x00\x0e\x75\xd9\x8e\xfe\x3d\xff\x95\xbf\x7c\xfc\x95\xbf\xbc\xad\xd8\x8c\x6c\x52\x7a\x0a\xc1\x9d\x72\xab\x05\x27\x9d\xb6\xe5\x30\x07\x2d\x46\x79\x0b\xca\xd6\xcf\x46\xbc\xe5\xa1\xdc\x88\xd0\x76\xdc\xfb\x7c\x0f\x7e\xf5\xb8\x07\xbf\xba\x8d\x84\x1d\x99\x1e\xb6\x42\xdd\x9c\xb1\x15\x97\xaf\xbf\x91\x14\xa3\x5e\xe5\xa3\x6f\x09\x9a\x49\xec\x2b\x72\x38\x5c\x14\xc4\x6c\x25\x44\x5e\xdd\x44\x7a\xe4\x80\xd7\x83\xc3\xb9\x22\x58\x37\xa7\xc2\x62\xb1\x21\x5b\x0c\xdb\xa6\x88\xe9\x62\x8d\x0d\x96\xd8\x82\xf2\x46\xdb\xd1\x85\xe7\x3f\xe4\xd7\x8f\x3f\xe4\x76\x6a\x21\x67\xac\x92\x0d\x35\x07\x56\x9f\x8c\x37\xe4\xcf\xd1\xb1\x21\x78\xb0\x9f\x73\x8c\x0d\xe9\xb3\x63\x6c\x82\x5f\x46\x6c\xa5\xe7\xe2\x1a\x80\x22\x40\xa6\x95\x8d\x37\xe8\x46\xa7\x7e\xf3\xb8\x53\xbf\xb9\x3d\xbf\x59\x2c\x4c\x36\xe7\xe2\x60\xb2\x0d\x1e\xd7\xce\x0d\xdd\x5c\x1d\x46\xbd\xfd\xc8\xca\x68\x0d\xaa\x3b\x1b\xc3\x7b\xe9\x24\xba\xd2\xa0\x9e\x14\x39\x60\x72\x99\x12\xd8\x6c\x99\x12\x98\xb9\x1a\x3c\xc9\x61\x6e\x18\x1b\x01\x5b\x8b\xec\x0c\x0f\x1f\x41\x84\x05\x1a\xd8\x31\x80\x29\x81\x1d\x46\x3d\x9f\x0c\xa3\x9e\xc4\x7e\x58\x19\x6a\x8a\x01\xd1\x63\xca\xd0\x3b\x98\xf9\x60\x13\x24\x4a\x44\x43\x9f\x52\x36\x83\x8b\xd6\x66\xd7\x91\x62\xd9\x8e\x6f\x7c\x7e\xa4\xfe\xcb\x93\x3c\x8e\x2f\x64\x8a\xb4\x95\xce\x8e\x3a\xf4\x7b\xed\x17\xb2\xdc\xc2\x4a\xb8\xac\xdd\xf3\x83\x04\xb3\x5f\x06\x9c\x43\x70\xc3\xf3\xaf\xfd\x3f\x7e\xdf\x5f\xe1\xf5\x8b\xce\x18\xc3\x7b\x3b\x89\xf7\x7d\x65\xe8\xf5\x95\x5b\xfe\x24\xba\x12\x0a\x9e\xf8\xbb\x44\x07\x05\x4f\x97\x4f\x6c\x31\x8d\x1a\xd4\x55\xf7\xa0\xfb\x85\x7d\xd9\xe8\x15\xf1\xa8\x56\x12\x1d\x05\x15\x0a\xa2\x46\xf7\xbd\x78\x4e\x74\x87\x8f\x5b\x78\xe0\xbe\xe1\xe3\x42\x24\x8c\x1b\x89\x52\x9b\x65\xae\x98\x4b\x80\x38\x51\x9f\xee\xba\x42\xec\xa2\xc8\xc6\xb0\x07\xa8\x77\x64\xf0\xf0\xea\x25\x99\x62\x1b\x2b\xd9\x62\xee\xd8\xae\x46\xb5\x85\x44\xce\x8e\x0e\xd0\x07\x87\xc2\x15\xd4\xa3\x89\xb8\xf3\x7a\xe9\x65\xf8\x40\x5e\x98\xb4\x8e\x24\x8a\x61\x89\x3a\x08\x4e\xb9\xfb\x90\x66\xb1\x7e\xd7\x18\xb8\x89\xab\xb7\xdd\x71\x8f\x0e\x44\xd1\x9d\x06\xfc\xe5\x4f\x44\x06\x07\x68\x98\xa0\x06\x14\x13\xee\xdb\x75\x5c\x9f\x9f\xa6\xff\xf3\xa9\x03\xcb\x6d\xac\x18\x9d\x6a\x8d\xf7\xb3\x89\x5e\x0e\xaf\x0e\x2a\x70\x7d\xe3\xd1\xff\xd7\x33\x2b\xe0\x65\x7f\x15\xe1\xd5\x67\x14\x5b\x38\x31\x76\x49\xf1\x39\xbc\xb2\x1d\xd7\x07\x22\xa1\x05\x95\xd4\xc8\xdf\xce\x78\x3f\x92\x3e\x97\xd8\x89\x40\xae\x44\x8c\x1f\x65\x73\x0f\xfc\x1e\x36\x70\xcf\x6f\x67\x1b\xf1\xe5\x39\x56\x04\x02\x6a\x05\x40\x5d\x36\x01\x8e\x22\xe5\x81\x24\xe3\x35\xa5\x48\x7d\x5b\x93\xbc\x17\x14\xaf\x46\xcd\xc7\x9a\x7f\x94\x51\xa8\x15\x81\xf4\xfb\x2b\x03\x72\xae\x55\x03\xc7\xdf\x5a\x47\x08\x08\xbb\xce\x76\xac\xa0\xc9\x16\x63\x6d\xeb\x8e\x81\x35\x09\x1d\x3e\x5d\x61\xa5\xae\x73\xb5\x76\xeb\xda\xeb\x8c\x07\xc2\xb8\xa0\x89\x9d\x68\xfa\xf2\x17\xcf\xe9\x20\x0e\x6c\x1a\xd0\xa2\x12\x45\xa0\xb8\xf6\xb9\x12\xf6\x7a\xdf\xae\x03\xfb\xfc\x44\xfd\xdf\xcf\x38\xf9\x7c\xf3\xe6\xed\x17\x2f\xf8\xd4\x60\x5f\x4f\x7d\x47\x03\x9b\x2e\xa4\xd4\x1c\xe5\x01\x90\xec\x66\x05\xa3\x2a\xf9\x4c\x8b\x26\x99\x7b\x12\xd7\xb1\x45\x70\x93\xe1\xf8\x00\x2d\x4d\x9a\x7b\x53\x2f\x60\x51\x8a\x95\xed\x90\x05\x1e\x4d\x55\x01\x46\x45\xa3\x39\xe9\x2e\x84\x63\xe3\xd1\x9b\xf7\x3e\xb9\xae\x77\x99\x4c\x7d\xa5\x03\x43\xd4\xbf\x95\x5c\x53\xb7\xbd\xa0\xac\x8c\x66\xd9\xbc\xcb\x24\xee\x77\x41\x85\xe6\x0b\x19\x07\x12\x14\x24\xe9\xae\x82\x23\xd6\x40\xc4\x98\x6e\xde\x3c\xc6\x1e\xf0\x38\xd6\xb6\x90\x31\x63\x7f\xc8\x56\x98\x5e\x1d\x0b\x8d\xe3\xb9\xc3\x14\x71\xcc\x23\x57\x2a\x8d\x31\xb2\x85\xdb\x76\x1d\xa0\x1b\x59\x45\xfe\xf9\xaf\x5f\xd1\x1f\x3f\x57\xbd\xe8\x8b\xf7\xbf\x7a\x21\x9f\x47\x75\x34\xf5\x1c\xda\xb7\x28\x69\x20\x11\x67\xeb\xb6\x1d\x27\x1e\xee\xa3\x80\xb6\xfb\x8e\x63\x1f\x0d\x4b\x0d\x7b\x2f\x09\xa7\x61\xc3\x76\x65\x69\xb3\x0a\xc5\x42\x33\x70\xbd\x2e\xaf\x63\x45\x96\x98\xb5\x3f\x8b\xba\x1a\x5d\x96\xfe\x4a\x5d\x56\xbe\x9f\xee\x3a\x8f\x97\xdc\xfe\x34\x7e\xf2\x69\x2f\xd6\x34\xc1\xf6\x3c\x0c\x47\xbe\x0c\x47\x45\x72\xa9\x33\x3b\x2d\x5f\x0b\xa3\xe5\x6b\xe1\xe3\xf0\xb5\x18\xb6\xc3\x25\x90\x91\x56\xd6\xb3\x31\xc7\x1c\x08\xa1\x89\x99\x61\x48\x99\x20\xd2\x4e\x24\x97\x13\xab\x9d\x4d\xe4\x72\x22\x42\x5a\xad\x00\x04\x35\x5f\xfb\xf7\xe1\x93\x0a\x48\xc9\x91\x71\xf8\xea\x78\xa1\xdc\x6a\x25\x90\xc3\xa2\x8d\x6b\x47\xd7\x29\xce\x77\xa8\x53\xb2\xa0\xd9\xe0\x0b\x09\x2d\x3f\x63\x74\xeb\x6a\xf9\x46\x14\x10\x75\x4d\xe4\x97\x1d\x7e\xcd\xab\xa5\x87\x26\x05\x37\x8c\xe2\xfb\x30\x94\x8d\x96\xd8\xb1\x5c\x42\x01\x6e\x18\x72\x6c\x23\x29\x2d\x7b\x80\xfb\xb2\x07\x90\x2f\x37\x0c\xf1\xe5\x86\x01\x64\xee\x53\x92\x7e\xeb\x86\x51\x64\x67\xbe\xf6\xc6\x87\xe0\x5a\xb8\x61\x14\x7c\xef\x34\x8f\xf1\xbe\x3d\x7b\xf2\x34\xa1\xd2\x37\xaf\x3f\xbc\x7d\xf3\xee\xf6\xfe\x6b\xad\x3e\xef\xba\x19\xf8\x75\xee\x75\x14\x63\xa4\x9b\xe1\x61\xd8\x9d\xa7\x21\x67\x22\xe7\xc2\x15\x64\x08\x99\xa6\x61\x3b\x97\x62\x8c\x14\xab\x2b\x66\x89\x0f\xaf\x69\xc6\x2c\xda\x44\x8c\x2b\xf1\xc6\x21\xf5\x8a\x33\x11\x5f\x62\xe8\x99\x3d\x36\x06\x02\x42\x19\x9a\xb1\x6a\x57\xc0\x42\xcf\xac\xcb\x9b\x5e\x9c\x56\x1e\x2b\x85\x63\xcb\x4a\x7e\x56\x53\xb4\x72\x01\xaf\x02\x03\x2b\x1b\x08\x52\xdc\xc6\x11\xce\x82\x4c\x08\xc5\xcd\xa8\x47\x1c\xde\xfe\xbe\x42\x78\x32\xeb\x4d\xc1\x2b\x90\xa5\x10\x5c\xc4\x0a\x5b\x99\xd1\x57\x2a\xbb\xdd\xe1\xf8\x97\xd2\x96\x63\x63\x61\x0c\xfc\xc2\x74\x6c\x0f\xa8\x41\x91\xab\xae\x6f\xd6\xa3\xd5\xf7\x20\x52\xb7\xeb\xd9\x6e\x39\xf8\xd6\xc4\xe8\x53\xb2\xfa\xf6\xc3\x87\xd7\xef\x3e\xbf\x0d\x7d\x47\x81\x9c\xdc\xd3\x4a\xa3\x81\x37\x9d\x4d\x67\x5d\x76\x4b\x3d\x1c\xd0\x0b\x9d\x23\x8e\x3f\x7c\x63\xec\x36\xfb\x86\xf4\x9f\xb9\x31\x48\x30\x77\x78\xa5\x17\xb1\x95\x0e\x62\x63\xf9\x28\xf5\xe5\x9f\xb4\xd2\xcb\x0d\x54\x65\xe2\x5e\xfa\x39\xd5\xed\x03\xbb\x6a\x2b\xcf\xde\x26\x9a\x6d\x68\xec\x05\xca\x06\x7c\x6b\x8e\x02\x41\x8e\x4c\x7c\xa2\x7b\x20\x9e\xa2\x3a\x81\x5d\x01\x5a\xbb\x22\x43\x7d\xa3\x0e\xc3\x2a\x58\xaa\x21\xd9\xe8\x86\x88\xee\x18\xb1\xf6\xe6\x61\x64\xe9\x23\x9a\xa3\x02\x11\x1d\x5d\xab\x06\xc4\xf8\x4a\x0c\x5b\x14\xa8\x51\xba\xe9\x7a\x4e\x7d\x1e\x1e\x7d\xe2\xd8\xd6\x38\x3d\xdc\x0b\x04\x41\xee\x75\x2c\xb2\x11\xc9\x26\xa1\x08\xae\x66\x37\x98\xf6\x10\xcf\xb0\x4a\xe7\xec\xc8\x59\xe3\xd6\x60\x9b\x18\xb4\xe2\xa4\x5d\x91\xfc\x42\x42\xe6\x10\xc1\xf3\x70\x3c\x1c\x47\x4a\x58\xd4\x75\xa1\x63\x86\xda\x5d\xf2\x1a\x86\xd4\x44\x71\x90\xd4\x5c\x66\x3f\x5e\x41\xdd\x61\x47\x16\x1d\xe5\x79\xf4\xef\xf6\x0a\xb1\x27\x2b\xe4\x37\x2f\x24\xfd\x74\x2a\xf0\xa8\xdb\xd0\xc3\x21\x99\xb8\xb4\xdb\x1a\x0a\xe5\x15\x57\x6d\xc3\xce\x21\x76\x51\x3b\x7e\x90\xee\xf8\xa1\xa3\xc0\x5c\xfd\x45\x12\x38\x5d\x7f\xd7\xe5\xf5\x77\xdd\xaf\xac\xdb\xd5\xa3\x9e\x4b\xcf\x5a\x6f\xbb\xdd\x75\xff\xe3\xa7\x68\xf1\xfd\x5f\xbf\x7e\xf7\x12\x1c\x5d\xbb\x18\xd1\x2f\xc6\x76\x0e\xe6\x4b\xfd\x71\xd6\xe1\x0f\xf7\xc1\xdc\x7c\x64\xfd\x71\x00\x55\xe6\x8b\x8f\x17\x46\x2e\x7e\x2f\x8b\xdc\xe7\x2f\xa6\xd6\x42\xec\xa2\xda\x11\xc4\x28\x58\x51\x54\x1c\x68\x01\x6f\xca\xbe\x53\x37\x6e\x24\xcb\x72\x8a\x12\x4e\x84\x6a\x22\xdd\xf6\xa3\x85\x14\x14\xa8\x02\x00\xaf\xa7\xc2\x6a\x05\xf2\x0b\xdf\xad\x10\xbc\x52\x37\x63\x79\x11\x54\xa3\x95\x98\x3e\xa9\xc7\x51\xf2\x43\x72\x72\x9d\x92\xb4\x59\xca\xf5\x69\xd5\x02\x2b\x5c\x88\xa8\xfd\x76\x2a\xd5\x9e\xe5\xee\xa4\x63\x17\xe4\x7f\xa3\x52\x31\x51\x07\x8d\x91\x3c\xff\xc4\xa2\x87\xaf\x70\xc1\x04\xfc\x52\x4c\x0c\xf8\x3b\x05\xdb\x38\x35\xae\xd8\xc7\xc1\xc5\x85\x50\x4f\x08\xd1\xad\x6b\xa8\xc7\x8e\x86\x47\x4b\x87\xab\xcb\x0a\x1b\x5b\xbb\x77\xee\xd3\x16\xb5\x2d\x6f\x53\xcd\xa2\xc5\x46\x59\xb0\x6d\xf9\xce\xae\x70\x45\x99\xab\xa0\xdb\x9e\xa3\xa1\x92\x9a\x48\x8b\xae\x93\x4b\xf9\x24\xdf\x69\x08\x0a\xe9\x81\x07\x20\xdd\xef\xb1\xd3\xba\x1a\x35\xe4\x70\x3f\x28\xc1\x5e\x42\x1a\x64\x0b\x35\x4c\x97\xeb\xe5\x11\xe9\x95\xd7\x58\x46\xba\x32\x7f\x24\x67\x75\x6c\xad\xd0\x8a\x49\x44\x80\x6f\xb1\x8b\x73\x8e\xd8\x13\x16\xef\xe1\x4b\xa6\x93\x0c\x38\xe7\x11\xdc\x86\x57\x85\x27\x5b\x2f\x40\x79\x1f\xa7\xa3\xbc\x0f\x5d\xcb\xfb\xe0\x62\x21\xc8\x68\xa2\x50\x38\x12\x10\x75\xdd\xd1\xe8\x7e\x24\xb8\xef\xb2\x74\xfd\x11\x7a\x14\x5c\x8b\xe9\x89\xf4\x3e\xc7\x3e\x41\xa9\xe1\xde\x12\xd9\xcf\x05\xee\x55\x2b\x87\x44\xe1\xd3\x5a\x86\x77\x6a\xf2\x70\x6f\xc8\x32\xa2\xbb\x99\xb4\xba\x1f\xd2\x79\x04\xaa\xef\x05\x0b\xf0\x41\x74\x6e\xa5\x1b\xb8\x2d\x15\xc7\x2c\x50\x47\xa9\x16\x82\x68\x6f\x9a\x1d\x61\xc6\x05\xcf\x75\x15\x70\x42\x10\x97\x30\xed\x3e\x7a\x93\x82\x96\x3c\x1a\x8f\x40\x72\x43\x0e\x46\xbe\x6b\x3e\x62\x3d\x45\x12\x3e\xdb\x2a\x4b\x19\xd6\x28\xc4\x6c\x80\xe9\x59\xc8\xa0\x34\x1b\xe3\xe6\x25\x14\x57\x7f\x6f\x93\x66\x3e\x21\xcd\x2f\xde\xbc\xfe\xf0\xfa\xe3\x9b\xdb\x96\xff\x02\x0b\x35\xa5\x3b\x1a\x4a\xbe\xf2\xc3\x6b\x71\xd2\x01\x93\xa1\xee\xc0\x24\xa5\xef\xe9\x58\x19\xb0\x8e\xb2\x78\xee\x2b\x69\x3e\x92\x9a\x21\x9d\x68\xca\xba\x8b\x8b\x86\x90\x20\x5b\xe1\x9b\x89\xdc\x38\xf3\xfa\xae\xe2\x39\x40\x11\xb6\xd2\x69\xaf\xbc\xa2\xc7\x22\x2b\x01\x4c\x9a\x8c\x9c\xc6\xd5\x68\x03\x71\x35\x3a\xe6\x28\x2d\xb2\xee\x1a\xa8\x6e\x44\x56\x42\xaf\x1e\x4d\xeb\x2e\xd6\x58\x3e\x4a\xac\x2b\x4d\x38\x4e\x5d\xdf\x75\x7b\xd0\xc6\x53\xac\xf0\xfe\xeb\xdf\x7c\x5f\xfd\x21\x98\x6c\xf7\x3a\x0a\xaf\xba\x8b\x58\xdb\xc4\x8d\x91\xf4\x0c\x47\xf8\xfa\x33\x27\xa8\x8b\xe1\xae\x55\xc2\x2e\x91\x78\xa4\xf8\xad\xa5\xef\xd5\x76\xeb\x88\x84\x8b\x2e\xb8\x36\x86\x21\xe1\x48\xda\x7a\x66\xa2\x58\xc7\xa8\xe3\xaa\xf1\x48\x09\xde\xe2\xda\xcf\x51\x5f\x0d\x0f\x5c\x86\xef\x75\xe8\xaa\x5c\x14\x61\xbb\x85\xdf\x45\x58\x33\x45\xe8\x03\x9e\x19\xb5\x4e\xc3\xb1\xa7\xa1\xee\xcd\x32\x2e\x3a\x7c\x57\x94\xde\x54\x04\xda\x2b\x77\x5c\x0b\x58\x58\x7c\x08\xa1\xf3\xdc\xa4\x27\x12\x9f\x48\x4f\xbc\xaf\xd6\x6e\xa8\xa3\xee\x63\xba\x3c\x20\x3b\x88\x29\xef\x75\x44\x99\x1b\xb2\x26\x16\x53\xa8\xa3\x90\xde\xf2\x2e\xcb\xe9\x35\x68\x8c\x72\x60\xc1\x2b\xa1\x73\x5f\x89\x3b\x56\xd5\x3c\xa4\xf7\x8e\xe5\x56\x86\xe7\x55\xc3\x81\x33\xb9\xc8\xc9\x71\x6d\x86\x22\x50\x6f\x40\x6b\x83\x93\x43\xee\x26\x05\x8f\x7a\x36\x35\x42\x0a\xe3\x7a\x77\x5d\xc9\xe4\xb8\xf3\xe8\xe3\xc3\xfd\x40\xb1\x9c\xbd\x54\x64\x24\x46\xe4\x16\xce\x93\xd5\xdb\xd0\x3e\x15\x05\x34\x6c\xac\x27\xaf\x2d\x2a\xb9\x6e\x51\x8d\x75\xaa\x34\xd8\x01\x08\x4c\x08\xaf\x2f\xd6\xa2\xab\xc3\xd5\x50\xdc\x59\xe3\xc4\x84\x6b\xa9\x00\x8d\xf4\xc6\x82\xa7\xae\x44\xdb\xd7\xe0\x46\xaf\x9f\x79\x05\x8e\xcf\xea\x8d\x70\x9f\xab\x8f\xb7\xd7\xee\xab\x27\x6b\xf7\xfd\x87\x2f\x7e\xfe\xfa\xab\x37\x2f\x66\x62\x0e\xcf\x16\xdd\x50\x7d\xb3\xb8\x3c\x56\xcf\x18\xf8\xbe\xc2\xe8\x58\x45\xf5\xe1\x05\xd7\x58\xe1\x1e\x16\x7d\x51\xbd\x0f\xda\x91\xab\x6e\x94\xfe\x52\x2b\x76\xd9\x07\xc2\x64\x96\x4a\x91\x5c\x8a\x88\x23\xe2\x85\x91\xdf\x4b\xfa\x12\xf9\x7d\xf4\x95\xd1\x8f\xac\x16\xad\x5e\x88\x3b\xad\xad\x2a\x46\x9e\x47\xc4\xad\xd9\x52\xa6\x85\x73\x37\x97\xbb\x6a\x34\x83\x6f\x6c\xff\xae\x4c\xea\xd8\x50\x96\x92\x55\xf6\xd5\x18\xda\x04\xdb\xd0\xe2\xcb\x35\x44\x61\xf3\x42\xa4\xe6\x2a\x48\xb4\x6a\x70\x8c\x23\xd3\xd0\x0a\xd3\xb7\x31\x57\xee\x0a\x14\x3a\xcb\x55\xd5\x12\xb1\x7e\xdc\xfb\x25\xd3\x97\xb3\x90\x44\x1b\x6c\x2d\x86\xcc\xe2\x44\xd1\xed\x1c\x9e\x0f\xf7\xe6\xd9\x52\x6c\x37\xd4\x5f\xb5\xe2\xcf\x48\x96\x89\x64\x6c\xbe\xe2\x65\x72\x28\xec\xb1\x83\xf3\x42\x5d\xe4\xec\xb5\x40\x11\xf2\x2a\xc8\xec\x7a\x14\xe8\x1c\xb4\xdc\x28\xd5\xe9\x6e\xb8\x21\xe5\xe3\x60\xd9\xeb\x98\xb9\x64\x42\x5a\xce\xe3\x9d\xb7\x97\xc3\xcf\x9e\x26\x60\xfd\xf6\xcd\xdb\xb7\xaf\xbf\x7a\xff\x72\x68\x5f\x8d\x99\x75\xd9\x1c\xd4\xa9\x67\x4d\x85\x6d\x5e\x87\x5e\x8c\x64\x2b\xde\x3f\xba\x9c\xdd\xfa\x76\x5c\xfb\x70\x1f\x86\x3d\xf7\xed\x48\x84\xa7\xe7\x54\x42\x11\xb1\xeb\x5d\x09\x85\x5c\xce\x75\xc1\x76\x5c\x7d\xbb\xe7\x9f\x3f\x4d\x9e\xfb\xfe\xcb\x37\x9f\xbf\x7a\xfb\xee\xfd\x4b\x99\xf1\x0b\x0e\x85\x9e\x93\xe9\xe2\xa2\x67\x4a\xbf\x64\xb7\x95\x1f\x4b\x5e\x92\x93\x5f\xfc\xf1\xd3\xd0\xb8\x37\xbd\xff\xe0\x85\x64\x69\xff\xef\x2a\x6b\xd5\x2b\x5e\x3f\x79\xc5\x87\xd7\x5f\xbe\xf9\xf8\xcd\xeb\x0f\xaf\x5f\xac\xaa\x69\x4a\x7b\xe6\xc1\x90\xfa\xc1\x90\xf4\x60\x48\x72\x65\x48\x57\x87\xdc\xa5\xb3\xf1\x4a\x6a\xb7\x18\x92\x5f\x19\x52\xbf\x32\x24\xc6\x43\xd1\xc0\x16\x73\x9d\x02\x6b\x41\x44\x36\x61\x63\xf6\x30\x2d\xae\xed\xe8\x7e\xc4\xdc\x08\x62\x6e\x8a\x40\xeb\x89\x45\xc7\x34\xe6\xea\xe3\xc3\x3d\xc5\xb8\xc3\x73\x63\x14\xfb\x47\x7d\x5a\x70\xfa\x9e\x8b\xd3\xeb\x8a\x11\xa8\xc7\x86\xec\x81\x6c\xdd\x0d\x29\xd0\x8f\xc8\x01\x46\x7d\x02\xf6\xb6\x52\x7d\x21\x57\x24\xed\x68\x1c\x65\x17\xa3\x05\x1b\xae\x5d\x9c\x9e\x0f\x4e\xdf\x0f\x4e\x0f\x36\x5c\x9c\x5e\x57\xb2\xfa\x7a\xf7\xe2\xf4\xba\x38\x7d\x69\xf1\xd5\xd9\xc2\x6a\x9a\x7a\x61\xe1\xb3\x8c\x71\x49\x1f\x67\xa7\xbe\xc3\xcb\xaf\xe4\x6e\x46\x2b\xe5\x32\x0d\xfe\x17\x3b\x8e\x2b\xcf\x4a\x33\x94\x91\x40\xc6\xce\x2d\x5d\xef\xea\x19\xa1\x89\x7d\x39\x4d\x3d\x1b\xf1\x7a\x81\xa5\x9d\x9d\x7d\xf7\xd2\x4a\xd3\x10\x8d\x64\x83\x66\xa0\x2a\x42\xce\x52\x0f\x5c\x0c\x6e\xb7\x5e\xc2\x4f\x51\x51\x6f\x09\x6e\x5d\x89\x1b\xc2\x47\x3d\xf0\x62\xf9\x02\x91\xff\xfc\xc9\xca\xfa\xea\xd5\xe7\x1f\x5e\x50\xbf\x46\x0e\x64\xae\x3f\xb3\x1f\x79\x36\x06\x32\x73\x8d\x5b\xf5\xd5\xff\xf9\xaf\x7f\xd6\x9f\xe2\xc8\xd7\x5f\xbe\x54\x8b\x49\x56\x00\x67\xee\xab\x51\xa8\x68\x41\xb4\x23\x88\x45\xae\x85\x2c\xe1\x31\xcd\x7c\xad\x89\x74\xe4\x92\x08\x3e\x3c\xa6\x0b\x1f\x93\x8c\xe5\x38\x46\x42\x3c\x13\x89\x03\x7b\xee\x68\x10\xfc\x67\xe0\xc8\x64\x28\x86\x5b\x94\x3e\x03\x19\xfe\x57\xb2\xc7\xa1\xab\xac\xe5\x50\x6d\x86\x60\x76\x3d\xe2\x68\x98\x56\x70\x43\xdd\x2a\x96\x77\xf5\xd4\x07\x28\xc6\x78\x3e\x1a\x80\x06\x30\x60\xd9\x58\x76\x4b\x42\x36\x09\x59\xbe\x3d\xe8\x79\x4f\xdd\x91\xa4\x01\xd9\x42\xc1\xcb\x87\xcc\xe8\xab\xb4\xf2\x4a\x40\x47\x56\xb8\x48\xd6\x93\x57\x43\x0c\x06\x66\xa4\xdc\xc7\xc5\x3c\xc6\xf4\x00\xee\xf0\xf5\x64\x11\xdf\x0d\xd9\x34\xc4\x1b\x8a\x27\x09\x07\xfc\x4f\x48\x4a\xfc\xf6\xa3\x90\xf8\xb5\xcf\xb7\xa7\xef\xa9\xbd\xfc\xeb\xb7\xdf\x7e\xfc\xea\xcd\xbb\x17\x8b\x2b\x4a\xcb\xe1\x2b\xe0\x37\x7a\x3f\x07\xcb\x45\x50\x8a\x9e\xf0\x37\x19\x5f\xea\x02\x43\x32\x42\x54\x5f\x94\xfa\xe1\xe1\x7e\x25\x26\x3f\x53\xf2\x85\x86\x16\xf3\x1d\x97\x1b\xfb\x9c\xd5\xb7\xa7\x06\xef\x6f\x7e\xf5\xfe\xe3\xb7\xa8\x3d\xf8\x42\xe1\x26\xc4\xd8\xc6\x59\x58\x2f\x31\x68\xf3\x15\xd4\x67\xc8\x7c\x0a\x86\x86\x6d\x24\x54\xd0\x60\xd8\x35\x65\x5f\x0d\x40\x15\x20\x0b\x3e\x36\x28\x91\xbc\x43\xd1\x68\x50\x41\xa5\xc0\xc2\x4a\xe4\xa9\xcb\xda\xc8\xea\x4b\x26\xd3\x18\x67\xe9\xbe\xcb\x1a\x7a\x6d\xb2\xa0\xc8\x91\x70\x47\x32\x66\x69\x28\xc8\x5a\x88\xd4\x52\xea\xb1\x87\xf1\x5d\x35\x1a\x36\x32\xb5\x0b\x6c\x5c\xc4\x47\x86\x57\xa2\xe4\x1a\x6a\x64\x70\x46\xf2\xa6\x55\xb3\x61\x15\x51\xf3\x19\xdd\xda\xe0\xb1\x99\x4b\x4b\xd2\xf3\x10\xbb\xf8\xad\x2c\xe7\x35\xa0\x4f\x6d\xd0\x28\x9b\xf6\xbd\x43\x0a\x72\x24\xa1\xb3\xf7\xa3\xb4\x32\xc9\x52\x76\xd7\xea\x45\x1e\x45\x5e\xa0\x70\x29\x54\x7c\x14\xab\x47\xe9\x5e\x1e\x74\xac\x5e\xea\x2b\x65\xac\x50\x82\xf2\xaa\xd1\x4c\x56\x16\x02\x68\x11\x85\xd4\xce\x75\x5a\x90\x42\x69\x38\xaa\x86\x91\x20\x3e\xc0\x16\x00\x43\xb1\xc0\x65\xc8\xa9\xf1\xf4\x95\x17\xbc\x1a\x77\xd8\x45\x56\xe4\x7d\x2e\xd5\xb0\x0f\x24\x07\x25\xe8\xcd\x78\xa0\xf6\x1d\x0d\x0c\xec\xca\x31\x73\x2d\xa8\x1a\x7d\x5f\x23\x6c\x7d\x19\xb1\x7b\x3f\x04\x4a\xc6\x3e\x8e\x92\x02\xa3\xb4\x99\x4c\xa4\x6c\x0f\xf2\x19\x32\x9a\xc7\xea\x8a\x9b\xed\x86\x3a\x4c\xd6\xac\xc3\x1b\x79\xc5\xaf\x51\x5f\x86\xe0\xd4\x59\x0a\x6e\x0e\x3d\xeb\xe0\x1d\xc1\x2b\xa8\x44\xe2\xa5\x26\x20\x90\x27\x3b\xef\xb0\x4e\x20\xae\xd2\x6a\x5d\x40\x6b\x1a\xbd\xef\x38\x5a\x20\xde\x72\x24\x10\x72\x69\x2f\x72\x36\xee\x97\x9a\x92\xdb\xf3\xfe\xd4\xc4\xfd\xea\xf3\x6f\xbf\xb9\xcd\xa2\xb1\xf3\xaa\x81\x2a\x56\xdb\x2a\x7a\xd7\xed\x2c\x83\xb7\xeb\x99\xdb\x6f\x7a\x6a\x2a\xfd\xea\xb6\x1f\x14\x8a\x45\xf5\xe4\x8b\x3a\xc3\xa5\x0e\x09\x58\x4a\x99\x21\x3b\x12\x4e\x05\x32\xa2\x53\xea\xe1\x07\xcd\x3b\x56\x54\xac\x7c\xf2\x70\xfb\x54\x94\x28\xfa\xce\x83\x42\xe0\xc4\xa4\x1b\x1c\xf7\x73\x47\xa6\xef\x15\x47\x95\x2b\x68\x04\x7e\xda\x7a\xc0\x96\x68\x62\x87\x53\x71\xe4\xe1\x55\x75\xab\x3e\x5b\x7d\xdd\x53\x6b\xea\xd7\xaf\x3e\xbc\xfa\xf2\xc3\xab\xaf\x6f\xc7\x4a\x45\x7a\xeb\x17\xe3\x7e\x8e\x2e\xe0\x26\x45\x4d\x35\xf5\x66\xb6\x2c\xd0\xc6\xd8\x73\xcd\x4e\x93\x89\xda\xc8\xdc\x19\x4c\x2b\xb3\x31\xd2\x55\x85\x4e\x11\x04\xfd\xf1\xd4\x95\xaf\xb8\xa3\xec\xe9\x12\xd1\x43\x2f\xfd\x1c\x79\x7b\xe7\xf0\x67\x4f\xcd\xb0\xab\x7e\xeb\xe7\xaf\xdf\xbd\x0c\x32\x11\x79\x42\xbe\x1f\x11\x28\x6b\x37\xd7\x73\x5a\x51\x03\xd1\xb4\x95\xd3\x0f\x79\x0d\x52\xc7\xee\xa5\x73\xe8\x68\x0e\x3d\x67\xa0\x14\x4d\x5d\x17\xbe\x7c\xf2\x23\x0c\xcf\xab\xa3\x67\xb6\x70\x6f\x5e\xfa\x8f\x20\xa7\xda\xac\xfb\xac\x84\xa7\x58\xb3\x92\x9d\xa5\x40\xd4\x90\x85\xe3\xf7\x12\xb3\x75\x5d\x89\xb7\xba\xef\xe8\xdf\xed\xef\x7e\x6a\xe3\xfa\xfc\xf5\x17\x6f\xde\xbe\x7d\xa1\x76\xaf\x69\x5b\x39\x34\x4e\xb6\xca\xd2\x9e\x8a\xa0\x47\xb4\x93\x07\xec\x92\xa7\x31\x56\xcd\x6b\xb2\x0e\x46\x7c\x2a\x66\xbd\x1a\x70\x26\xe7\x76\xaa\xf5\x5b\x44\x0a\x03\xb2\xf7\xd1\x4e\x2a\xcb\x99\xf4\xa4\xea\x48\x75\x7e\x12\x42\xe9\x35\x34\xb0\xff\x08\x23\xb3\x21\xa6\x70\xf4\x15\xf9\x88\xe4\x43\x70\x9b\x2a\xac\x8d\xd0\xa7\x1a\x08\x18\x8a\x0d\x65\x1c\xee\x4e\x24\xbe\x95\xca\x87\xf4\x7d\xb7\x07\xe2\xa9\xdd\xea\xfd\xbb\xef\x67\xfb\x11\xd2\xdc\xf9\x6c\x80\x80\xa2\x9b\xa0\x96\x40\xda\x85\x44\xfa\x16\x28\xa5\xab\xe3\x1c\x21\x17\xbf\x15\x08\x55\x2f\x7f\xc6\xf0\xf0\xd5\xab\x8f\x9f\x7f\xfb\xf6\x25\xcb\x03\xaf\xe0\x56\xda\xd1\x80\x55\x1b\x85\x89\xc2\xa6\x00\xf1\x25\xad\xaa\x56\x8f\xb2\xea\xfd\x56\x6f\xb7\x43\x48\xa0\x2e\x9f\x24\xaf\x0a\x60\xa8\x60\xe8\xab\x0e\xed\xa5\x14\xea\xbd\xfe\x1a\xa5\x43\x4b\xe9\xe0\xab\x98\x36\x82\x5a\x6c\x14\x07\x06\xe3\xf1\xd1\x51\x0d\xc9\x91\xdd\x0e\x65\xbb\xa6\x38\xe1\x3a\x1e\x7c\x97\x39\x26\xba\xd9\x59\x2f\xf5\xe8\x87\xfb\xe5\xb5\xcc\xba\x57\x63\xa4\x34\xb5\x15\x35\x5b\x0a\x72\xbd\xc7\x50\x44\x6f\x55\xd8\x4d\x71\xec\x6f\xa2\x2e\x29\x82\x69\x3a\x30\x61\x3d\x17\xc5\x42\x50\x0d\xc8\x7e\xfb\xfc\x1d\x7f\x15\x04\x0d\xe4\xba\x44\x45\xcc\x23\x79\x20\xd2\x39\x08\x1d\xb9\xfa\x60\x1d\x59\xd0\x31\x57\xa2\x34\x21\x5d\xa5\x8a\xea\x62\x85\x31\xb4\xf8\xed\x91\x37\x06\x83\x72\x7b\x2a\x6f\x1a\x0d\xbe\xc7\x01\x69\x8c\x36\x24\x37\x87\x4a\x98\x17\xe3\xb1\xc1\xfa\x2b\x03\xf5\x93\xb5\xc0\xb4\x24\x02\x06\x87\x64\x29\x5e\x0f\xf7\xc5\xe2\xeb\x26\xa4\x21\xb9\xde\x85\x9a\xa8\x32\xce\x36\x74\x4b\x65\xdc\x65\x88\x47\xcd\xf3\xcd\x24\x4a\xd5\xf3\xa7\x46\x83\xf7\xef\x5e\xff\xcd\xb7\xaf\x3e\xbc\x54\x72\x66\xed\x13\xd2\x99\x25\x2f\xc4\xee\x9b\xad\x8a\x6b\x17\x12\x5b\xf1\x55\xa4\x36\x50\x73\x34\xac\xe6\x9c\xa2\xb1\xf0\x56\x0b\x55\x7a\xdf\x56\xc2\x7c\xc9\x0d\x15\x30\x28\xfa\x76\x5c\x81\x72\x39\xdc\x18\xde\x92\x3e\x2e\x84\xcc\xe0\x79\xe4\x1b\xc4\x9f\x36\x04\xe5\xd6\xd9\x6c\x1b\x04\x10\xb1\x2e\xe1\xe4\x87\x7b\x04\x3d\x24\xe3\x6a\x1d\x63\x1b\x5d\xef\x34\x79\x3b\x7e\xbf\x3d\x0a\x4f\x8d\x19\xef\xdf\xbd\xfe\xc5\xab\xb7\xb7\x23\xe0\xbd\xaf\x4f\xaa\x09\xaa\x4f\x42\xb4\x4e\x7d\x12\x36\x82\xf1\x4d\xc7\x25\x0f\xf7\x82\x14\x74\xe3\xcc\xbd\xf8\x85\xeb\x86\xd4\x93\x85\x4d\xc4\xfa\x26\x06\x43\x5a\x9c\x25\xec\x12\x3a\x1e\xee\x89\x90\x2c\xd7\x6b\xd1\x11\x6f\x39\x46\x13\x1d\xfb\x30\x6b\x58\x2f\x11\x4d\x91\xd2\x13\x45\xf5\xfa\xbe\x1a\x82\xda\xc7\xcd\x9c\x91\x64\xd2\x32\xf6\x0c\x94\x02\xbd\x2b\x55\xdc\x90\x8a\x71\x40\xba\xc6\xc8\x66\xa5\xf4\x0d\x98\xc5\xce\xce\xb6\x3b\x1b\x02\xe1\x5c\xa5\x19\xd2\xfe\xa1\x70\x2c\x30\x60\xf4\x0e\xeb\x5e\x30\xaa\x15\x97\xb2\xd9\xd7\x1e\xd5\xda\x03\x5f\xd9\xcb\x76\x34\x14\x99\xe5\xcc\x96\x1b\x3f\x31\x8c\xf2\x13\xde\xfb\xa8\xce\x9d\xda\x58\x7c\x03\xa2\x14\x38\xc5\xde\x4c\xf0\x5b\xf3\xf2\xd4\x02\x04\x60\x7e\xac\xcf\x17\x0a\x43\x0d\xc1\xec\x88\xc7\x5a\x70\xf0\x9a\x00\xc9\x20\x6f\x79\xad\xb8\x75\x49\x8d\x36\x1f\x2b\x0e\xf3\x83\xc2\x00\x8c\x15\x67\x6b\xc5\xf9\xe1\xcc\x8b\x15\x67\xc7\x8a\xab\x4b\xd6\x8a\xcb\x63\xc5\xd9\xb1\xe2\x54\x1b\x56\xdc\xfa\xfd\xe1\x1e\x05\x15\xc8\xe5\x2c\xdd\x90\x9f\x03\xae\x5a\x2b\x03\x6f\xe9\x3e\x84\x2a\x44\xb4\xa3\xb4\x78\x31\xcb\x55\x32\x39\x09\xde\x36\x54\x83\x86\xbb\x84\x15\x1b\xf2\x24\x42\x3b\x83\x73\x09\x21\x84\x0a\x4c\x0d\xc8\x88\x5d\xce\x6a\x3b\xe2\xeb\x10\xf6\xd7\x48\x34\x91\x2a\x84\x94\x68\x22\x6a\x1b\xfb\x52\x48\x1d\xe5\xba\x4b\x40\x43\xd0\xb6\x36\x2f\x8d\x96\x9f\xa3\x92\x4c\xf3\x7a\x8c\x8e\x69\x60\x8a\x4e\xfb\x6a\xf4\x6c\x2b\xd7\x89\x8f\xa9\x0e\x73\xfe\xd5\x8e\x34\x3a\x5c\x1f\x4b\x55\x98\x86\x04\x3e\xb2\xd7\x31\xe1\x57\x6a\x2d\x4d\xa7\x91\xdd\x45\x0e\xc4\x2f\x85\x26\xba\x12\xa2\xf0\xaa\x81\xf7\xe1\x51\x6e\x94\x78\xc9\x11\x1b\x2d\x8d\xa6\x58\x71\xfb\x33\x77\xda\xb9\x13\x6a\xea\x71\xa1\xad\x41\x53\x28\x5a\xba\xef\x45\x67\xe9\xde\xb4\xaf\xdf\x55\x3a\xaa\xfa\xc2\x2d\xa3\x77\x6f\x48\x9c\xdf\xd9\x57\xc5\xa7\xae\x71\x66\xf6\x4b\xcd\xc7\xed\x05\xf8\xd4\x50\x74\x2d\x82\xf5\xa2\xe3\x5c\xa0\xb2\x98\xed\x28\xee\x94\x8a\x98\x18\x93\x02\x4a\x28\x04\x0c\x87\x4d\xc9\x55\xae\x43\xfa\xd8\x6d\x50\xe3\x22\x56\x1b\x8d\x65\x55\x7d\x20\xd8\xb0\xbd\x95\x42\x2d\x05\x95\x50\xa0\xfc\x84\xc4\x8f\xd9\x4e\xa4\xbe\x2a\xfb\xd3\xd0\xdd\xdd\xd6\xf6\x7e\xc0\x59\xb5\xa4\xb4\xa3\xfa\x1a\xcf\xec\xd1\x4e\xc3\x51\x84\xf2\x44\x7a\x46\x69\x4b\x90\xe3\x89\xa0\x27\x21\x23\x5c\xe4\x1c\x12\x05\xb1\x56\xe5\x93\x93\xf8\x91\x41\x48\x86\xec\xcb\x33\x7d\x08\x8c\x84\x27\xf1\xc4\x42\x3c\xf1\x90\xc9\xeb\x76\x9e\x5c\x77\xc5\x5e\x07\x47\x4a\x5c\xd4\xd4\xe5\x22\x77\xd4\x48\x0f\x04\x43\xa9\x8d\xa6\x22\xbb\xe6\x68\xea\x8c\xcd\x3d\x4d\x9b\xc6\x35\x40\x82\xd2\x9a\x96\x4b\xbb\x71\xb3\x73\x38\x3d\xdc\x2f\x1b\x54\x75\xa3\xc3\x9d\x07\x7b\x19\x9d\x78\x25\x16\xe9\xc6\x40\x85\x08\xd3\x75\x24\x4d\xcd\x5c\x9a\x6f\x29\x0a\xd1\x75\xe5\xf4\xc2\x2e\x49\x5f\xf5\x41\xef\x70\x7b\x41\x84\x55\x3c\xd8\x4a\x4c\x36\xd4\xed\x2c\xdd\xf5\x28\x8b\x17\xbd\x56\xac\xe0\xa1\xa9\xb2\x63\x17\xb1\xd8\x63\xae\x32\xbf\xf5\x7a\x94\xcf\xe3\xc0\x7d\x47\x3f\x6f\xae\xa5\xcf\x9f\x5a\x04\x7f\xf0\x7d\xc9\xde\xfe\x3f\xaf\x22\x74\x0f\x73\xb7\x99\x9c\x4d\xfb\x86\xf2\xc4\xc9\x7e\x36\xd3\xed\x7a\xe6\x76\xf7\x9f\x5a\xc4\x7e\xf0\xb2\xb6\xfc\x77\xd2\x7d\x42\xce\x71\x39\x8f\xf4\x2d\x8a\x89\x99\xd5\x73\x63\xbb\x9e\xb9\xdd\xfd\xa7\x46\xb3\x1f\xac\xbc\x82\x3f\x7f\xfb\xfa\x85\xe2\xd5\x7f\x07\xdf\x30\x42\x1a\x79\x01\x56\x1b\x71\x8e\x24\x98\xc1\x29\x90\x28\x94\xe1\xec\x7d\xe6\xc1\x17\x72\xf6\x0d\xd6\xb5\x74\xb8\xbe\x6f\xd7\x3b\x6f\x7f\xe3\x53\x3b\xd6\x0f\x5e\x76\xab\xfe\x3b\xf9\x3c\xb8\x23\x99\xee\x87\x5f\x52\xc1\x12\x24\x6d\xf1\x09\xb8\xe7\xd0\x25\xa8\x91\x4b\x02\xc4\x93\x53\xee\xc1\xab\x01\x98\x4f\x2e\xbc\x8a\x8f\xb8\x1f\x72\xc8\x47\x69\xb5\x7a\x47\xd1\x73\x47\x1e\xfb\xc0\xf6\x34\x52\x7c\x11\x1c\x59\xc8\x63\x4c\x2d\xe9\xe5\xea\x73\xa5\xa2\xec\xba\x15\x5f\xad\x07\xee\xab\x11\x01\x87\x6e\x0a\xee\xab\x8a\x5a\x8c\x95\x62\x83\x4a\xca\xc0\x2f\x39\xaf\xe9\xc1\x33\xb8\xf0\x54\x9d\x3a\x72\x9f\x25\x07\xfc\xc8\x29\x50\x53\x2a\x1a\x45\xf2\xca\x40\xb4\xf2\x23\xd7\x03\xf3\x28\x9e\x9a\xf0\x3e\xa9\x86\x0a\x32\x68\x53\xa6\x6f\xd7\xf1\xb9\x3d\x89\x4f\x8d\x52\x3f\xf8\x5e\x0f\x94\xbf\x8b\x79\x44\x09\xfd\x20\xdb\x57\x03\x99\xac\xea\x7b\xc7\x38\x86\xab\xd8\xb8\x0d\x34\x96\xeb\x4a\x9d\x32\xf6\x75\x17\x1a\x8e\x22\x46\xb2\x26\x14\x77\xd9\xc8\x5d\x94\xee\x68\x85\xb2\xd5\x64\x09\xcd\xeb\xbb\x1e\xee\xa3\x46\x39\x48\xf7\xd5\xf0\x95\x4b\x1c\x93\xb4\x86\x52\x68\x1f\xc8\x8e\x27\xb4\x5c\x57\x62\x24\xca\xbd\xe3\x2e\x34\xdc\x4b\x33\x8c\x7a\xf4\x31\x01\x36\x7c\x8f\x9a\x36\x1b\xbe\x1e\x58\xa7\xae\xef\xba\x3d\x13\x4f\x8d\x76\x3f\xf8\xf0\x92\x5f\xf2\xdf\xc5\x2c\xa0\xb2\x70\xc1\xa3\xd5\x58\xd0\xbf\x96\x96\x2c\xab\x79\x86\x2d\x31\x38\x28\xa6\x0b\x37\x1a\xc2\x6b\x57\x68\xc8\x72\x66\xc1\x29\xc4\xfa\x67\xac\x54\xe7\xb8\x1d\x15\x00\xeb\xc9\xd8\xc0\x87\x76\x5d\xa7\xbc\xf4\x83\x40\x0e\x40\x41\x5d\xe9\x92\x09\xeb\xc9\x26\x63\x87\xa4\x45\x9c\x83\x2d\x71\x31\x35\x65\x5d\x8c\x8e\xb9\xe9\xbc\xf6\xb9\x24\xf7\x58\xbd\x5f\x0d\x64\x44\x8a\x45\xcc\x70\xd3\x73\x18\x72\x6a\x3a\xb4\xaf\x77\x38\x7a\xaf\x68\x2c\x4b\xba\x7b\x9f\x90\x4d\xf5\x9c\xd5\xc8\xbe\x4e\x65\x1f\xeb\xae\x94\xdc\xb1\x9f\x81\xfa\xe4\x63\x2d\x8f\x95\x7e\x2b\x51\x02\x19\x61\xb3\x25\xa1\xd7\x37\xdf\x9e\xf1\xa7\x86\xcc\x1f\xbc\x50\xe5\x8a\x72\x94\x9a\x66\x7c\x11\xed\x30\x03\x73\x7a\xeb\x67\x89\xcd\xec\x5a\xc0\x04\x15\x2b\xd8\xf9\x9c\xd9\x2f\x69\xa5\x3a\x88\x5f\xdc\x1c\x3f\x2c\x37\xf5\x1c\x97\xfe\x70\x8f\xba\xe9\x26\x85\x47\x63\x2b\xca\x2a\x31\xed\xb7\xaa\x43\x54\x67\x9f\x5a\x2f\xff\xec\xfb\xcc\x78\xff\xd0\x0a\xc9\xdd\xfd\x4e\x21\xb9\xf6\xff\xef\x42\x72\xf7\x90\x47\x9b\x0f\x6f\x27\x1d\x90\x67\x27\x83\x99\xa4\x9d\x7c\xe5\xb1\x3a\x15\x13\x43\x9c\x88\xe6\x4c\xf5\x76\x62\xe6\x7d\x35\x82\x5b\xb2\xb7\x13\xaa\xb8\xbb\xde\x9d\xa0\x1e\xc0\xeb\x96\x13\x5b\x6b\x27\x55\xdd\x8c\xac\x9d\xa4\xf4\x2d\x5d\x0d\x84\xeb\x9d\xa4\xcb\x51\xa5\x23\x13\x01\x17\x27\xf6\x8e\x68\xfb\x13\xd3\xd8\xd1\xa0\xd0\x06\x7f\x5b\xb2\x95\x34\xe2\x44\xa2\x88\xf9\xd5\x73\xbc\xb0\x11\xfa\xf9\x53\x5b\xf1\x8f\x5e\x46\xad\x7f\x48\xf1\xb7\x7b\x38\xd7\x9b\xe6\xd9\xd4\x40\x4d\x94\x4c\x67\xb3\xb1\x5d\xcf\xdc\xee\xe7\x53\x53\xee\x8f\x5e\x86\xa7\x7f\x58\x3f\x09\x4c\x38\xcf\x63\xd0\x86\xb4\x41\x86\xb8\x1f\xde\xae\x67\x6e\xf7\xf3\xa9\xd5\xf7\x47\x7f\x0b\x1c\xfa\x07\x75\x76\x44\x89\x59\x1a\x05\x38\xf9\x1c\xe9\x9b\xa3\xea\x1c\x8f\x0d\x78\xa7\x7e\xe5\xba\xdd\x99\x36\x43\xfd\x41\xa7\x73\x74\xdf\xae\x77\xde\xfe\x98\xa7\x76\xcf\x1f\x7d\x2f\x56\xf9\x83\x3e\x85\x51\x31\x8e\xfa\xbe\x1a\x2b\x87\x6d\x61\x00\x5d\xdb\xa0\xc9\xb9\xc3\x02\x95\x28\xa3\x1c\xeb\x94\x01\x5f\x53\xdf\xd1\x70\xef\x0d\x5b\xa5\xce\xc7\xe6\xa9\x0d\xd9\x45\xe1\xec\x2d\x4d\x08\x20\xdb\x27\x47\x09\x0b\xea\xb5\x2a\xc1\xf5\x56\x24\x25\xc1\x00\x0e\xe8\x37\x78\x26\x10\x10\xfb\xda\x3d\x2d\x12\x46\x4a\x4b\x78\xba\xa1\x10\x7f\x1f\x3b\x1a\x6e\x48\x32\x5a\x8f\xb6\x75\x97\x0d\xda\x73\x61\x22\x5a\x0f\xac\x53\xd7\x77\xdd\x1e\xf2\xa7\x06\xdb\x1f\x7f\x0f\x3d\xfe\x01\xc5\xe6\xee\x51\xa1\xaf\xe4\x90\xe6\xd8\x58\xfa\xa1\x2e\x76\xd9\xae\x67\x6e\xf7\xf3\xa9\x49\xf5\xc7\xdf\x43\x8f\x7f\x50\x3f\xa1\x26\x95\x5e\x28\xb6\x21\x22\xaa\xf4\x42\x0d\xdf\xae\x67\x6e\xf7\xf3\xa9\x89\xf1\xc7\x7f\x1b\x7a\xfc\x43\x3a\x3b\x98\x7f\x57\x01\x94\xbe\x21\x10\x1c\x0a\x20\xca\x33\x97\x02\xa8\x74\x28\x80\xa8\xb6\xe5\x0e\xc7\xc1\xeb\x9d\xb7\x3f\xe6\xa9\xb9\xea\xc7\xdf\x4f\x8f\x7f\xc8\xa7\x2c\x3c\x50\x4a\x02\x1f\x4a\x02\xdb\xa1\x24\x88\x5d\x95\x84\x7e\x55\x12\xf4\x50\x12\x34\x0e\x25\x01\x0d\x28\x09\x7a\x28\x09\xb8\xab\x94\x04\x6c\x6a\x95\x92\xc0\x76\x55\x12\x18\xc9\x75\xed\x58\x95\x81\x5a\x43\x57\x25\x81\xae\x4a\x42\x3f\x94\x04\x24\x12\x2f\x25\x01\x8e\x0e\x50\x12\xe4\xaa\x24\xc8\xa1\x24\x20\xd4\x02\x4a\x42\xbf\x2a\x09\x7a\x55\x12\xe8\x50\x12\xae\xef\xba\x39\xe4\x5f\x3c\xb5\xea\xfc\xe8\x9b\xdf\xdf\xf5\xb6\xef\x8a\xf5\x47\xeb\x17\x37\x3a\x9f\xc4\x2e\x25\xdb\xbe\xab\x68\x66\x2c\xcb\x15\x07\x05\x64\xc7\xb5\x80\xec\xb8\x16\x90\x25\xfe\xae\x80\x6c\xfc\x6e\x01\x59\x3f\x0a\xc8\xa2\x36\xdd\x58\xee\x8b\x28\x20\x3b\x56\x01\x59\x41\x01\x59\x8f\x87\xfb\x82\xca\xf5\x6a\x25\x5a\x35\x64\xa5\xef\xd0\x6a\x61\x38\x5c\x35\x64\x8b\x83\x09\xdb\x1c\x7d\xd5\x90\x1d\xec\x77\xd7\x1a\xb2\x83\x57\x0d\x59\x84\xca\x41\x95\xf0\xa3\xba\x56\x3f\x6a\xc8\x1a\x1f\xe5\x9a\xea\x15\xf5\x75\x2e\xc5\xb8\x6f\x3b\x60\x7c\xf1\xd4\xa6\xf4\x17\xdf\x13\x07\xfe\x87\xd5\x11\xbc\x47\x41\x55\x18\x27\xd0\xe8\xd9\xc6\x0a\xcb\x5d\xd5\x72\x97\x71\xa2\x86\x04\xc6\x89\x5a\xaf\x2b\x2d\x02\x1f\xc6\x89\xb5\x16\x4b\x69\x91\xc3\x38\x21\x72\x18\x27\xa0\xa6\xf6\xdc\xb1\x94\x01\x06\xd9\xef\x60\x9c\x10\x3c\x39\xc6\x14\x2c\xf7\x82\xa1\x85\x62\x61\x9c\x38\xd6\xfd\xbe\x1a\x11\x6b\xb9\xc3\x38\x81\xe2\x45\x23\xd6\xc5\x30\x4e\xa0\xcf\xc1\xcb\xcf\x0e\xc6\x09\x70\x64\x4b\x18\xdb\x97\x71\xc2\xe5\x30\x4e\x88\x1d\xc6\x89\x52\x80\x23\x79\x85\x3a\xc2\x38\x01\xdd\x89\x3a\x72\x28\x2d\xe3\x04\x9e\x93\xbe\x5d\xc7\xe7\xf6\x84\x3d\xb5\xa2\xfd\xe4\x7b\xa4\xcf\x3f\xac\xda\x8b\x77\xdf\xd5\x5e\x6c\xff\x68\x6a\x2f\xde\xc3\xb6\x66\xa1\x67\x93\xc3\x1c\x56\xa0\xca\x34\xb7\x60\xe4\x14\x79\x61\xba\x9f\x1a\x14\x7f\xf2\x3d\x42\xfc\x9f\xa6\xfb\xef\x7f\xba\x3b\x3c\xc3\xf4\x3c\xb2\x6f\x70\x86\xb2\xa0\xb3\x31\x6d\xd1\xfd\xae\xce\xdc\x9e\xee\xa7\xa6\xc7\x9f\xfc\x6d\xb0\xd0\x3f\xcd\xf9\xdf\xfb\x9c\x0f\xa8\x0f\x6a\x97\x12\x53\xe7\x08\xc3\x8e\x35\x85\xd9\xa6\xe1\x77\xf8\x95\xd3\x2f\xe4\x1a\x9b\x81\xc9\x67\x9c\x7d\xd8\x76\xbd\xf3\xf6\x9a\x78\x6a\x04\xfd\xc9\xf7\xa5\x6a\xf9\xa7\xe5\xf0\xf7\xbe\x1c\xb0\xb1\x17\xb6\xaf\x06\x8f\x36\x1c\x5b\x14\x31\x07\x73\xa1\x68\x42\xea\xbf\xd2\x4a\x67\x00\x8c\xc8\xd8\x91\xc7\xdf\x65\x34\x4f\xe4\x1b\x90\x95\x76\xdf\xf3\xb0\xd6\x06\x19\xa2\x73\x29\x78\xec\x70\x31\x0b\x1e\xf0\xdf\x22\x04\x44\x32\x10\x50\x5f\xe1\x63\x8e\x22\x3b\x0a\xa5\x76\xe3\xba\xd8\x4d\xf6\xd5\x18\xc8\x6e\xd8\x28\x94\x56\xc6\xa3\xa4\x5c\x17\x67\x30\x0a\x50\x52\x62\xdb\x99\xd1\x68\x86\xf4\x86\x71\x84\x11\xa6\xe6\xf2\xe5\x4a\x8a\x89\x10\xd5\xec\x82\xe4\xd3\xd5\x68\xc8\xdd\xbc\xd0\x4d\x2e\x3b\x70\x6a\xde\x51\xba\x2e\x47\xf1\xd1\x63\xbb\x8e\xcf\xed\x45\xff\xd4\x0e\xfc\x93\xef\xd7\xa3\xfe\x69\xdd\xff\xbd\xaf\x7b\x2c\xaf\x10\x5f\xeb\x2c\xd2\x1b\xb2\xa5\x26\x23\x51\xf2\x1d\x90\xbf\x62\x1b\xc9\xb4\xad\xbd\x3e\xee\xd3\x96\x7d\xd7\x91\x48\x86\x3c\x1d\x1e\x16\x20\x00\x29\xf5\xcb\x69\xec\x22\x8e\x46\x43\x4d\x00\xb8\x26\x1f\xef\x3a\xf0\x55\x88\xad\x4d\xcc\x48\x83\xbf\x07\x16\x35\x52\x46\xa6\xf1\x3e\x3a\x40\x3c\xb7\x51\xb3\x91\x34\x90\xf3\x14\x77\xa1\xe1\x69\x6d\x40\xdf\x30\x5a\x77\x39\xc5\x1e\xd8\x0c\x3d\x92\xaa\xe2\xd4\xf5\x5d\xb7\x57\xee\xd3\x4d\x81\xaf\xbe\x7d\xfb\xcd\x9b\xaf\xdf\xde\xce\xda\x82\x84\x44\xbe\x22\x14\x3d\x7d\x43\x19\xdb\xde\xc7\x06\x6f\x23\xb2\xc0\xb6\x54\x8a\x6d\xd8\x6f\xab\x1f\xa8\x23\x37\x7d\x1f\x5b\xa0\x96\xbf\xaf\x5f\xea\x29\x03\x15\x85\xd6\x56\x96\x49\xe0\x21\xf5\xf7\xf1\x96\xdb\xfd\x7e\x6a\x66\xfe\xc9\xcb\x75\x0d\x89\x44\xaf\xe4\xa6\x57\x72\xa3\x2b\xb9\xc9\x22\x37\x19\x20\xb7\xbe\x0a\x93\x18\xf7\xa3\x9c\xd0\x68\x0a\x8a\x09\xd9\x90\x51\x71\xd8\xd9\x6c\x63\x82\x05\x71\x27\xe3\x86\x38\xfb\xb5\xef\x31\x91\x22\x62\xd1\x61\x8e\x83\x0e\xe5\xa0\x43\xbf\xd2\x61\x5c\xe9\x30\xae\x74\x18\x57\x3a\x8c\xab\x0b\x6e\xae\x4c\x40\x11\xbc\xbc\xb0\xf0\x28\x89\xe2\x47\xd9\xc8\x28\xcf\x44\xa8\xee\x8a\xa4\x7d\x6e\x3b\x75\x64\x3a\x8b\x23\xad\x2f\x75\x47\xb6\x08\xfd\x2d\xa1\x8a\x20\x6f\xd8\xaa\x4f\x9d\xbd\x89\x58\x33\x0e\x64\x62\x53\xe6\x0d\xbb\x9e\x94\xb6\x63\xd7\x93\xd9\x8e\x20\xe1\xe2\xa1\xc8\x29\x00\xca\xf5\x2b\xe5\xca\x41\xb9\x70\x68\x06\xe5\xea\x41\xb9\xfd\x4a\xb9\xc5\x1c\xe4\x60\x0e\x08\x2a\x6c\x99\x08\xef\x9d\x19\x2b\x16\x77\x53\x1e\x8d\x5d\x76\x75\xba\xab\x57\x7e\x57\xc5\x05\x44\xc0\x48\xe9\xb0\x68\x5a\x0f\x9a\xe6\x45\xd3\x91\x07\x4d\xcb\xcb\x95\xe3\x6b\xbd\x3c\x35\xf7\xff\xf4\xfb\xb6\x25\xfe\xc1\x15\xcf\xbd\x3b\x8a\xe7\xb6\xdb\xc5\x73\xef\xe1\xdd\x8c\xbd\x07\x93\x0d\x35\xa7\x93\xf2\x6c\x1e\xdb\xf5\xcc\xed\x11\x7c\xba\x11\xf1\xd3\xef\xdb\x30\xf9\xc7\x39\x82\x05\x94\x93\xec\x3c\xc6\xd8\x10\x45\x69\xca\x70\x8f\xba\x9e\xb9\x3d\x82\x4f\x77\x3f\x7e\xfa\xb7\xda\xca\xf9\x07\x33\x8c\x77\x4f\xaa\x38\xbf\x34\x8c\x23\x21\x20\xfd\x42\x96\xe3\x1c\x48\x75\x5b\xa2\x8a\x7d\x53\x78\x5e\xe4\x58\x09\xd9\x9d\x72\xc5\x4e\xa5\xe5\x39\x48\xb7\xeb\x9d\xb7\x87\xf9\xe9\x8e\xc7\x4f\xff\x16\x9b\x4c\xff\x28\x07\x99\x0b\xb2\x44\x8f\x7d\x35\x2c\x90\x69\x9e\xe2\xa8\x8f\x41\xc9\xb6\x6b\x00\xf1\xd8\x92\x89\x75\x0a\x45\x71\xeb\x2e\x34\xdc\x62\xc5\xe7\x3a\xeb\xba\xcb\x46\xdf\x8f\x7c\xa3\x85\xc1\x0a\x03\xb1\xcc\xeb\xbb\x8a\xc7\x00\xd8\x17\x92\xac\x86\xf9\x0a\xae\x80\x29\x11\x25\xef\x59\xf6\xc1\xd8\xab\x95\x36\xa0\x29\x8c\x3e\xc7\x90\x75\x17\x1a\x6e\xbe\xdc\x03\xbc\xf8\xbd\xff\x3f\xec\x7d\xcd\xae\x1c\xb9\x91\xf5\xbe\x9e\x82\xf8\xf6\xc2\xc7\x88\x60\xfc\x70\x33\xeb\x5a\xa4\x16\x09\x24\x0a\x18\xed\xd4\xd3\x52\x8f\x80\x76\x0b\xe3\x76\x1b\xf0\xdb\x0f\xe2\x04\xf3\x76\x4f\xd9\x55\x57\x36\xec\x06\x04\x6b\x21\x14\x75\xb3\x32\x99\xc5\x24\x23\x83\x11\x27\xce\xf1\x0b\x69\xc4\x1e\xf9\x42\x50\x70\x74\x6a\x1d\x3a\xfb\x7a\x3c\x19\xee\xd3\x4a\xff\xf9\xdc\x6a\xfd\x33\x04\xa8\xdf\x82\x6c\x0f\xe9\x25\x1f\x1b\xe4\x62\x01\x3b\x24\xdd\xce\x23\x8f\xef\xf7\x3e\xbd\x74\xfc\xf7\xe7\x3f\x3e\x51\xa9\x89\xba\xcd\x5b\xbe\xf5\xaf\x26\x06\x0c\x31\x5c\x00\x6c\xd8\x68\xc8\x41\xbd\x68\x55\x40\x3f\x37\xda\x24\x29\xe9\x7d\x97\x28\xe9\x7d\xc8\xcd\x12\x29\xe8\x4a\xf1\xed\x81\xa4\xa3\x35\x11\x39\x4c\xd2\x2d\xee\x57\x89\x62\x5d\x9e\x2b\x6e\x1e\xf3\x1d\xba\x9f\x21\xb7\x31\xb9\x3a\x87\x0a\x4a\x55\x15\x2a\xf1\x11\x23\x2f\xea\xf5\x86\x1e\x7a\xcc\x1e\x97\xf4\x9c\xab\xfc\x53\x5a\xb9\x06\x8e\xef\xcd\x6e\xd8\x9e\x4d\x63\xf4\x39\x43\xd0\xc9\xc3\x91\xba\xcf\x5d\xfd\xf0\xe1\x8f\x7f\x78\xff\xd3\xf7\xdf\xfd\xf8\x04\xe8\xdf\x09\xd9\x0d\xb9\x51\xf7\xb9\x93\x15\x78\xa4\x11\xd2\x26\x61\x07\x47\x3e\x4f\xf1\xda\x9d\x2a\x2f\x7d\x2a\x35\xaa\x64\x8b\x1a\x35\xcc\x39\x1d\x1d\xda\x22\x34\x7c\x80\xa4\x84\xc4\xa4\x50\x31\x9c\x93\x18\xa2\x29\x3a\x1a\xe2\x25\x44\x56\xdf\xe9\x23\xb7\x69\xd6\xe6\xe4\x03\x6e\xd0\xc8\xd9\xad\x55\x30\xa5\xb9\xa1\xf2\xd2\x3e\x0d\xbf\x80\x78\x48\x05\x79\x28\x0b\x05\x0d\xaf\x11\x68\x1b\xa2\x65\xf7\x60\x69\x03\x49\x18\x0d\x69\x02\xdf\x76\x48\x63\x38\x99\x80\x15\xf4\x83\xfa\x90\x66\xf3\x98\xac\x8d\x0f\xf7\xe2\x9b\xf0\x92\x41\x68\x16\xde\xde\x40\x94\x59\xdb\x9b\x2a\x0b\x24\x3f\x46\x6e\x95\x64\x53\x06\xef\x25\xa0\x23\xcc\xd6\xd4\xe6\x92\xbb\x1d\x8d\xa6\x1c\x86\x05\xef\x87\x6b\x29\xeb\x78\x2d\xe0\x06\x44\x50\x54\xc1\x18\xd3\xc0\x8e\x0b\x04\x72\x1d\x3b\xb1\x1d\x9f\xf9\xbd\x90\x36\xba\x22\x99\x90\x83\xe8\x46\x97\xfc\x59\xb9\x83\x33\x1a\x87\xc9\x6c\xde\x15\x95\xce\x69\x32\xf0\x69\xa3\x19\x5b\x8b\xe9\x87\x69\x6f\x53\x73\x6f\xbf\x28\x19\x91\x83\x03\x01\x2c\x74\x2d\x98\x8a\x00\x8d\x66\xaf\x3c\x1d\x8b\xb4\x12\x22\x33\x3b\x50\xa1\x0e\xf1\xc7\x01\xa9\x62\x2f\x60\x99\x58\xa9\x9b\x64\xa3\x34\x73\x04\x99\x14\x94\x56\x7b\x11\x14\x71\xb7\x23\x27\x12\x24\x18\x1f\xd7\xa2\x7c\xb8\x4f\xf4\xbd\x7f\x05\xbe\xfd\xb5\x49\x69\x5f\x96\x94\x76\xfb\x37\x93\xd2\xbe\x2c\x29\xed\xf6\x5b\x29\xed\xb7\x40\x97\xb3\xd0\x55\x69\x6e\x0c\xce\xf5\x3e\xae\x2a\xb2\x9d\x47\x1e\xcf\x94\xfb\xac\xe6\xfb\x57\x90\xf2\xdf\x66\xca\xd7\x3c\x53\xf0\x50\xb4\xd3\x75\x9a\xa2\x92\x93\x98\xe3\xaa\xdd\xb6\xf3\xc8\xe3\x99\x72\x9f\x4e\x7d\xff\x25\x45\x09\x5f\xcb\x74\xb9\xdc\x69\xf4\xff\x3b\x4c\x97\xcb\xdf\xd0\xe8\xff\xbf\xd3\x65\x16\x4d\x2b\x2f\x0a\x18\xeb\x5b\xd1\x9e\x10\x03\xf6\x8d\xbf\xb2\xd3\x8d\xa4\x0f\xc8\x56\x91\x8e\x71\xb5\xe8\xdb\x79\xe6\xe3\xe9\x74\x9f\xae\x7d\xff\x4a\xfd\xc7\xd7\x32\x93\xbe\x19\x9e\xbf\x39\x93\x40\x50\x2b\xbc\xa3\x31\x62\x81\x0f\xc7\x18\xc7\xec\x60\x24\x2f\x42\x16\x12\xb2\xc3\x51\xd1\x3e\xd3\xa7\xaf\x46\x11\x2f\x81\x7b\x06\x94\x51\x83\x4a\x04\x4b\x9c\xc1\x32\x42\x12\x56\xd1\x72\x09\xab\xb2\x03\x41\x85\xcd\xf2\xaf\x8a\xbe\x87\x47\x51\x42\x71\xf0\xc6\xf8\x32\xf5\xbd\x1a\x9a\x7e\x22\x6a\xd9\xe3\x90\xe2\x43\xd7\xfa\x72\xfa\xe1\x03\x37\xaf\xb9\xdf\xae\xfd\x54\x03\x6e\x5b\xc5\x72\x96\x5d\x48\xd3\x55\xf4\x51\x0e\x39\xd2\x0d\xc3\xfa\xee\xa6\x68\x34\x07\x67\x50\x6e\x45\x40\x71\x10\x51\xb9\x09\xe5\xda\x44\x93\xda\xd8\xce\xf1\x79\xbc\x5e\xfe\x8a\xff\xe5\xf5\x52\x9b\x6f\x4b\xe6\x6b\x5e\x32\x80\x53\xa2\xa6\x15\x36\x77\x48\x53\xf0\x91\xbb\x63\x8f\x4a\x4a\xb4\xa3\xc0\x4b\x89\x4a\xad\x1d\xfa\x2e\x28\xc0\x9e\x52\x51\x74\x19\x02\x36\xe2\x5a\x3b\x8b\x3d\x63\x07\x05\x10\xbb\xb5\x5a\x44\x7d\x1e\x67\x5f\xb9\x50\x73\x3f\x39\x73\xa1\x82\x87\x77\x49\xee\xe6\x7a\xa8\x81\xd1\x3e\x73\xb3\x37\xd1\x2a\x16\x26\x1a\x8e\x22\x68\xab\x33\x57\x0b\x6c\x14\x91\x8b\x13\xcc\x7f\x20\xf3\xf4\xb1\x53\x17\xba\x64\xab\x2e\x9c\x07\xcf\x3e\x1f\x4f\xfe\xfb\xc4\xfe\xfb\xe7\xd5\x4d\xdf\x26\xfe\xd7\x3c\xf1\x51\x7d\x37\x88\xf7\x6a\xa8\x82\xe5\x89\xc6\xa4\x82\x2e\xaa\xca\x81\x2a\x2d\x9d\xc5\x97\x4c\x46\x7d\x37\x80\x04\xc0\x0d\x27\x75\xc8\x01\x5d\xd7\x01\x61\x56\x9c\x1e\x88\xac\x51\x3e\x1b\xc8\x98\x46\x95\x41\x8a\x48\x7d\x99\x9d\x0e\x9c\xce\xb2\xa8\xc9\x98\xbc\x68\xce\x98\xbc\x30\x8c\x79\x68\x94\xb0\x3b\xc1\x73\x22\x39\x2b\x06\x07\xb8\x21\xfb\xea\x03\x0d\x99\x4b\xff\x36\x5f\x55\x2a\xf3\x42\x32\x3a\x44\xac\x48\x28\xaa\x0f\xc1\xdd\xd7\xfb\xa8\x41\x24\x18\x44\xcb\xcb\xd3\xda\xab\xa1\x51\x87\x46\x78\x9d\xa5\x64\x28\xc6\xcf\x46\x03\x67\xa1\xe6\x42\xce\x77\x68\x7e\x07\x9d\x0e\x1d\xc7\x79\x3f\x8f\x17\xd7\x3d\x80\xe0\xfd\x13\x2f\x2c\x6a\x81\x78\xd4\x02\x71\xca\x95\x7b\x28\x54\xb9\x4b\x5e\x2c\x0a\x04\x61\xfd\xd0\x9c\x9b\x13\x81\xe5\x37\x13\x24\xd8\x79\x2a\x7b\xa9\x02\x73\xfe\x03\xdf\x83\x8d\xc3\x80\xbe\x38\x40\x04\x46\xfb\x18\x6d\x60\x17\x3b\x9a\x2a\x1d\xb9\xc8\x6c\xf0\x55\xbb\xdc\xdc\x05\x51\xef\x90\x28\x9a\x5c\x17\x10\xb4\xcd\x3e\x41\xad\x0d\x7d\x09\x66\x14\xbb\x73\x2e\xf5\xe0\xcd\xc6\xc5\x27\xed\x36\xa0\xa6\x1c\x9e\xab\xef\xa0\xf4\x31\x3a\xf9\x01\x14\x78\x8f\xd2\x27\xc6\x52\x1a\xbe\x78\x56\xb5\x14\x0a\x7a\x29\x6d\x76\xd2\x1d\x82\xc4\x5d\x7d\x29\xfe\xc4\x0a\xc4\x41\x25\x76\xf4\x33\xf5\x59\x01\x1a\x3d\x88\xba\xa5\x95\x3b\x88\x1c\xac\xde\x07\xd1\xd4\x1c\xb4\xdb\x70\xbe\x3a\xcd\x9b\x84\xef\x4e\x13\x20\x13\x37\x07\xb0\x19\x7a\xb3\x4e\xfb\x04\x40\x96\x1a\xf4\x7b\xd2\xc2\xf6\xf4\x16\x66\xaf\xca\x33\xf0\xa9\x12\x43\x86\x64\x43\x07\xd6\x77\x22\xb5\x06\xc4\x85\xf4\x8b\x40\xa5\xd4\x5b\x94\x80\x02\xe8\x35\xf1\xf8\xde\xbd\xcd\x2e\x73\x48\xa7\xf3\xcd\x4d\xf6\xb9\x68\xb9\x67\x0e\x12\xd3\x31\x07\xb5\x30\x47\xe0\x2c\x66\xd1\xb4\xe7\x10\x07\x95\xdc\x34\xe4\xc2\xc1\x76\x5c\x0c\x48\xce\xd6\x3c\xf4\x70\x70\x44\x8f\x9b\x0d\xce\x75\x8c\xd0\x7d\x91\x5a\x18\x43\x7a\x87\x7c\x80\x24\x90\xbb\xdd\x86\xdb\x75\xf8\xdc\x21\x2b\xeb\xd6\xf2\x01\x0c\x23\xd4\x3a\x0f\x9a\x07\x88\x9e\x75\x1e\x1c\xbd\x71\xf8\x8e\x4f\x81\x40\x26\xb2\x66\xeb\xfa\x8f\x27\xf6\x3d\xbe\xe0\xbf\x5e\xe5\x0e\xe3\x28\xc1\x25\x5f\x4a\xdd\xb4\x4c\x5e\x78\x09\x2e\x89\x97\xe0\x92\xea\x12\x5c\x42\xb6\x26\xb8\x31\x74\x0a\x00\x28\xe8\xc7\x1c\xde\x66\x07\x78\x79\xfe\xaa\xfb\xda\x75\x31\xd6\x11\x88\x76\xb1\xe0\xe7\x41\x55\x18\x54\xc2\x31\xa7\xc6\x12\x47\x79\xbc\x5a\x2a\x68\xf9\xdd\x39\xd2\xda\x80\x07\x13\x05\xde\x97\xa2\x04\x3e\xa5\x89\x21\x9e\xd7\x9d\xa1\xba\x85\x7c\x7f\xc7\xa3\x49\xab\x1e\x54\xaa\x4a\xaa\x15\xe0\x95\x09\xf9\x40\xf7\xa5\xa2\x0b\x0d\xa0\x59\xaa\x4a\x90\x7d\x9f\x60\xb4\x2f\x95\x65\x2e\x55\x25\xe6\x52\x55\x8a\x5e\xaa\x4a\xe6\xbf\xaa\x2a\x99\x2f\xb5\xe7\x59\xaa\x4a\x20\xa9\xa1\xa5\xf6\x4c\xc7\x1a\xd4\x9a\x74\x63\xf3\xee\x55\x76\x28\x5a\x65\x87\xc6\x28\x3b\xcc\x5f\x80\xb2\xc3\x31\x56\xd9\xa1\xfa\x2a\x3b\x44\xc3\xf9\x92\xc3\x5f\x65\x87\xae\xad\xca\x0e\x7d\xac\xb2\xc3\x34\x32\x28\x3b\x44\x69\x62\x0f\xd0\x38\x56\xd9\x61\xd0\x2a\x3b\x84\xbe\x4f\xc4\xaa\x36\xb4\x0e\xe9\xc2\x2a\x3b\x2c\xe5\x8e\xd1\x0c\x24\x21\x9a\xf6\x53\x56\xd9\x61\x5a\xa3\x5c\xab\x8f\xe7\xd9\x3d\x1e\xe4\xc3\xf3\x68\xab\xe9\xd2\x47\x97\xb9\x40\x1e\xbd\x71\x29\x01\x93\x74\xf8\x19\x3c\xf5\x20\xce\xf7\x28\xdf\x74\xc8\x9e\x6d\x4c\x4a\x5b\xc2\xdf\xe9\x3e\xe9\xa2\xdb\x85\x26\x99\x2c\x3f\xc0\xc7\xa9\x94\x2e\xb3\x0e\xcd\x40\x39\x57\x4d\x04\x0f\x2e\xfa\x7a\x35\xbf\x0d\xb3\xab\x58\x3e\xc1\x80\xe0\x3d\x74\xb1\xc6\x84\x2a\x15\xab\x1d\xe0\xce\x99\xe3\x30\x97\x4b\x1a\x24\x37\x94\xd0\x94\xc6\x73\x77\xf8\x6d\xd2\x91\xb8\x04\x52\x7b\x87\x94\x17\x21\xdb\xc0\xf1\xc2\xfc\x3c\xf2\x0d\x9c\x3f\xf5\x58\xbf\xfc\xdd\xdb\x5c\x14\x73\xbd\x30\x30\xcf\xc4\x8b\x07\x07\x22\x6c\xb3\x38\x37\x55\xa1\xa0\x90\x76\x2a\xdc\x6e\x66\x7d\x0f\x97\xe6\xe9\x27\x29\xfc\x2a\xe4\x43\x43\x18\x95\xb5\x91\x4f\xb6\xae\xfb\x12\x12\xe5\xdf\x86\x44\xf5\xb7\x21\xd1\x27\x66\xe3\x1e\xae\xf1\xe1\x95\xb4\xdd\xb7\xc7\xf9\x2f\x7f\x9c\x2b\x3a\xc9\xbf\x8d\x5b\xce\xdf\xc6\x2d\x9f\x3c\xce\x7b\xec\xc8\x87\x2f\x88\x5b\x7e\x4d\xcf\xf4\xb2\x9e\x69\xfb\xca\x9e\xe9\x0a\x11\xca\x2d\xb7\xa2\xbf\x0d\x2e\xca\x19\x5c\xb4\x33\xb8\xa8\x67\x70\x51\xcf\xe0\xe2\x25\xcf\x7c\xfc\xcc\xef\xd1\x2e\x1f\x5e\x0d\x96\x7c\x7b\xe2\xff\xfa\x27\xbe\xa2\x0c\xe3\x8c\x68\x8c\x33\xa2\x11\x67\x44\x83\xcf\x88\x06\x9f\x11\x8d\x38\x1c\xa2\x55\x73\x9c\x11\x8d\x71\x46\x34\xe8\x8c\x68\xf8\x19\xd1\xf0\x15\xd1\xc0\x56\xbe\xfa\x7a\x89\x68\xc8\x19\xd1\x90\x33\xa2\x61\x67\x44\x83\xfa\x19\xd1\xa0\xfe\x12\xd1\xf0\x97\x88\x86\xbc\x44\x34\xe4\x25\xa2\x31\x5f\x22\x1a\x8a\x88\x06\x5a\x67\x44\x63\x9e\x11\x8d\x27\x33\xf4\x1e\x28\xf4\xe9\x15\x4c\xe0\x5c\x9a\xd6\x1e\xa3\x0a\x5e\x89\x50\x8a\x3e\x27\xfe\xab\x43\x6e\x11\x52\xff\xef\x01\x7a\x4a\x90\x4c\x74\xbd\x86\xf0\x86\x0d\x22\xf8\xa0\x21\x1c\xb8\x0e\x3d\xbe\xbd\x7b\xe8\xca\xa7\x57\x00\x77\x7f\xf7\xed\x9d\x7a\x63\xd7\xbc\x99\xad\x92\xe4\x5d\xae\x6a\xb2\x9d\x87\x1e\xdf\xdd\x3d\x50\xe5\xd3\x97\x80\xd9\xfe\x81\x11\x2c\xc0\xb8\xdd\x88\xc7\xbc\x06\xf9\x66\xc5\x44\x6b\x9b\x16\x15\xf9\xbc\x0a\x47\x1a\xb0\xd8\x50\xd7\xa8\x90\x3c\xf5\xed\xe5\xd4\xc7\xbf\xe1\x1e\x42\xf2\xe9\x75\xa4\xd8\xdf\xfd\x0b\x04\x8b\xc0\x7c\x97\xb2\xac\xde\xa4\x24\x0d\x97\x91\x1a\xa1\x3b\x20\x6f\x23\x8a\x52\xb3\x68\x15\xb1\xce\xcc\xf7\x6a\x90\x37\x44\x5b\xc0\x97\x8f\x05\xa7\x7d\x17\x2c\x38\xed\x4d\xa0\xe8\x13\xa5\xbb\x94\x67\xbd\x7b\xeb\xa6\x17\xc8\x85\x55\x04\x9c\xac\x39\x16\xdc\x98\x47\x4c\x84\x27\x64\x9f\xc0\xfe\x87\xb4\x19\x0b\x61\x5c\x50\xa1\x3c\x6d\xb5\x08\x38\x9c\xd2\x12\xc3\x79\x3c\x62\x0f\x2c\xb5\x11\x75\xc9\x3c\x84\x4e\xe4\x89\xe6\xee\xc7\x7b\x30\xc4\x87\xbf\x51\xf5\xfc\x12\xe0\x28\x43\xa2\x27\x8a\x06\xea\x73\x84\x98\x1b\xf5\xf0\x66\x83\x6e\xea\xbe\xe3\x3f\x03\xd6\x1c\xe2\x6f\x45\x4a\x48\xa3\x03\xe8\xc2\x39\x88\x52\xac\x34\x5a\x78\x17\xc1\xe6\xf7\x28\xb4\x0f\x1d\x60\x51\xf4\x43\x47\x1b\x16\xbb\x8e\xa6\x91\x3b\xae\x66\xae\x07\x4d\x28\x11\x1f\x32\xb4\x4d\xb1\x43\xf3\xd3\x65\x37\xb6\xfc\x84\xc2\xc1\x1c\x86\x9a\xd8\x70\x30\x33\x5c\x66\xbe\x83\xf2\x71\x75\x59\xaf\x06\xb2\xbe\x95\xa8\x15\xd9\x26\x02\x94\xf4\xd8\xc0\x50\xc6\xca\xf5\xd8\x79\x7a\x03\x05\x92\xb0\x6c\x63\x8e\x8a\x2a\x99\xca\x22\x60\x86\xaa\x87\xf3\x36\x41\xc9\x3c\x65\x2b\x94\xb7\xc4\xd8\xce\x81\x7a\xf7\x36\x46\x0e\x8b\xec\xf8\xd4\x7c\x11\xe5\x67\xd1\xc6\x98\x8f\x3d\xa4\xe3\x96\xa3\x8f\xe2\xdb\x87\x7e\x54\xbe\x77\xbc\x79\x8e\x81\x72\xf3\x70\x70\xe9\xe7\x46\x7b\x0c\xe8\xc3\x41\xc8\xd1\xc0\x99\x49\x10\xbb\xe6\x29\x18\x2c\x7c\x12\x5d\xf2\xef\xa2\x71\x88\x0d\x00\x17\x21\x36\x36\xf5\x50\x10\x5e\xf4\xbd\xa8\xea\x56\x44\x6d\x46\x3d\x18\x0f\x08\xe0\x8c\xce\x47\xde\xa7\xda\xb8\xd9\x78\x6c\xa6\x3f\xde\xc3\x23\x7e\x7a\x9e\xa5\x14\x68\xb4\x46\x31\x0b\x4f\xe1\x7d\xe0\xbd\x4b\x52\xab\xab\x6b\x69\x3f\x96\x53\x70\x46\x6c\x03\x62\x87\x1e\x07\xa6\x7b\xef\x72\x40\xfa\x30\x9c\x0e\xf0\x42\x9a\x1b\x62\xb2\x13\x65\xf4\x81\x18\xee\x44\x58\x18\x24\xd7\x20\x9b\xb6\xc3\xb9\x42\x32\xb5\x85\xb7\x5d\x47\xa0\x00\x60\xcc\xba\x94\x4c\x6d\x8e\x2b\x91\x2e\xae\x7d\x71\xca\xd7\x23\x5f\x56\x66\x8e\x57\x66\x0e\xf5\x00\xc8\xcc\xc9\xca\xcc\x89\xad\xcc\xdc\x98\x95\x99\xb3\x39\xcf\xcc\x9c\x9e\x99\xb9\x7e\x66\xe6\xfa\xca\xcc\x21\xa3\x86\xcc\x5c\x3f\x33\x73\x72\x66\xe6\xe4\xcc\xcc\xc9\x99\x99\xd3\x33\x33\xd7\xcf\xcc\x5c\x3f\x33\x73\xba\x32\x73\x3d\xce\xcc\x9c\x9e\x99\x39\x3e\x33\x73\xb2\x32\x73\xb9\x0c\x2b\x33\x37\xda\xca\xcc\xf5\x33\x33\xc7\x67\x66\x8e\x2e\x95\x99\xf3\x58\x99\x39\x04\x49\x23\xaa\xa2\x1e\x99\x39\x5c\x07\x99\x39\x7e\x9e\x99\xfb\x78\x0f\x8c\xf8\xfc\x5a\x9d\x39\x35\x55\xda\x09\xb4\xb7\xb0\xb9\x60\xd6\x2f\xe1\xa7\x51\x35\x69\xdd\x7a\x91\x7f\x97\xf0\x13\x9f\xc2\x4f\x25\x8b\x89\x99\x92\xdf\x45\xec\x29\x4f\x26\x22\xcb\xab\x42\x29\x1f\xff\xa9\x14\x41\x70\x4b\x47\x69\x42\x02\xc5\xc1\x83\xc0\x04\xc2\xf2\x52\x51\xb0\x8a\x49\x75\xc9\x3f\x73\x61\x09\x51\x2b\x92\x67\x11\xd1\x45\xa5\xdf\x54\xe9\xdd\x5b\xc1\xe0\xf6\x3d\x3f\x11\xee\x49\x3f\x73\xa1\x79\xd3\x94\xa1\xd2\x1f\xb8\x61\x5d\xa2\xe5\x2b\x86\x26\x15\xad\x03\x15\x95\x1b\x08\x15\xf3\xbc\x34\x20\xeb\xe2\x7b\xb6\x8d\x05\xf1\x59\x8b\x92\x49\x8d\x9e\x1e\x24\xf4\xc2\x31\x12\xf0\x4c\x47\x85\x1f\xd3\x78\xe5\xdf\xb3\xef\xfc\x9e\x98\xe1\x3c\xdc\x63\x0d\xc2\xbb\xb7\x55\x3d\x22\x74\x55\xb6\x0d\xd4\xee\x40\x45\x8d\xbe\x9d\x47\x1e\x3f\xd2\x7b\x70\xc2\xe7\xd7\x6a\xc9\xbf\x3d\xd2\xdf\xe3\x91\x42\xf6\x07\xf0\x25\xe7\x0d\x3b\x05\xc0\x97\x48\xb6\xf3\xc8\xe3\x47\x7a\x9f\x3f\xff\xfc\x45\xf5\xe2\xdf\x9e\xeb\xef\xf1\x5c\x81\xc4\xff\x0d\xce\xc8\x37\x68\x0c\x15\xce\x28\x4e\x9c\x51\x9c\x38\x23\x3f\x71\x46\xbe\x4d\x9d\x97\xa7\x38\xa3\x8f\xf7\xa9\xe3\xcf\xaf\xd5\x84\x7f\x7b\xe4\xbf\xcb\x23\x47\xc6\x32\xdd\x0e\xec\x4c\x01\x08\x8a\xe5\x76\x80\x3a\x1e\x80\x20\x5f\x6e\x07\xd8\x1a\xa7\xed\x4e\xfd\x52\x6e\x87\xdb\x29\x46\x45\xcb\xed\x00\x74\x1a\x45\xd9\x7d\xb9\x1d\x90\xfb\x4a\xb7\xa3\xb0\x42\xf3\x18\xb8\xb2\xae\x72\x6f\xb8\x1d\xe0\x5d\x4c\xb7\x63\x69\x83\xed\xd5\x48\xb7\x03\x5d\x00\x10\x34\x97\xdb\x91\x5f\x86\xdb\xe1\xb2\xdc\x0e\xf0\xe9\x01\x10\x14\xcb\xed\xc8\x01\x86\xdb\x01\xb2\xaa\x74\x3b\xe0\x4e\xa7\xdb\xe1\x7c\x02\x82\xe6\x72\x3b\x20\x92\xb7\xb4\xa8\x16\x20\x28\x96\xdb\xb1\xc6\xe7\xdd\xff\xbb\x3c\x98\xd8\xf7\x69\xdb\xcf\x5f\x50\xf7\xfd\x6d\x6e\xff\x1e\x73\xbb\x12\xfe\x40\xee\xf8\x42\xee\x68\x5f\xc8\x1d\x94\x3a\x12\xed\x60\x85\x05\x72\x47\xf4\x44\xee\xa4\x29\x03\x72\x67\x2e\xe4\x8e\x9c\x93\xbc\x84\x61\xac\xa4\xec\x80\xdc\xc1\x6c\x07\x72\xc7\x4f\xe4\x0e\xb6\x66\x93\x91\xcc\xa5\x12\xaf\x81\xde\x5a\x41\x77\xfc\x84\xee\xe4\x46\x74\x41\x77\xe6\x09\xdd\x61\x39\xa1\x3b\x68\x01\xba\x33\xfb\x0b\x74\xc7\x5f\xa0\x3b\x30\xc6\x63\x5d\x19\xd8\x9d\xd5\xeb\x63\x03\x7c\x9f\x85\xfd\xfe\xd3\x9f\x3f\x3d\x35\xc0\xcc\x4d\x43\xae\x44\x74\xf3\x39\x4a\xc0\x42\x43\xde\xbd\x05\x8d\x70\x9f\x63\x47\x03\x25\x28\x90\xed\x1b\xa3\x86\x81\x4e\xfa\x07\x86\x61\x30\x48\x97\x40\xa0\x33\x1b\xcd\xaa\x50\x9a\x0e\xa0\x16\x90\xd7\x1d\xeb\x74\x87\x14\xee\x1c\x7b\x35\xc6\x42\x36\x74\xd4\x80\x58\x9b\xb6\x52\xa2\x67\x65\x46\xef\xe3\x38\xef\x26\xef\xab\x5f\xd8\xe7\x3e\x50\xd5\x2c\x4d\x49\x21\x25\x62\x34\xda\xe8\xb6\x9b\x47\x7e\x22\x9d\x2c\xde\x91\x35\xcf\xef\xe3\x13\x75\xce\x82\xbc\xbe\x15\x3b\xe7\x5e\x84\xc5\x03\xd7\xa1\x98\xb0\x68\xec\x8f\x13\x90\x1f\xef\x13\x90\x9f\x5f\x2b\x48\xff\xbb\xed\x00\x9f\xd2\xb3\x48\x41\x9b\x6e\x50\xde\x63\xe2\x2b\x75\xf6\x6d\x96\x1c\x37\xed\xd4\xc9\x1b\x2a\xec\xba\x59\x0b\xea\xff\xa0\x7d\xc8\x51\x86\x7d\x10\xbd\xc4\x26\x48\xcf\x4a\x5c\x99\xfb\x26\x4c\xcd\x7c\x07\x9f\xc4\x80\xf8\x44\x63\x43\x3f\xed\x81\xc9\xe0\x06\x51\x87\xd0\x63\xd0\x6c\x6c\x81\xe2\xd9\x08\xc5\x36\x36\xf0\x3a\xe1\x36\x3b\xff\x63\xcb\x1d\xf6\xe4\xc5\x96\xf4\x16\x26\xcd\x82\x60\xdd\x7d\xd2\x06\xaa\xb9\xb0\x0a\xa7\x79\x6f\x5f\x60\xa7\x2e\x77\x76\xea\xf1\xa3\xbf\x4f\x56\xfe\xf2\x5a\xa5\x0f\x36\xba\x10\xce\xb7\x40\x85\x3d\x0f\x6c\xd9\x2b\x58\x65\x8b\x42\xd9\x9b\x1e\x6c\xd1\xc2\x0f\x9a\xd4\x58\xe8\xa0\x52\xc1\x5f\x12\x7b\x9d\x6f\x63\xf4\x3d\xa7\x8a\x18\x43\x3e\x18\xfa\xaf\x63\x36\x96\x5e\xa8\xa3\x88\x2a\x61\xf3\x1c\x68\x80\xe7\x5a\xae\x2f\x26\x2e\xbe\x03\x1a\xa7\xe6\x9f\x4f\x68\xfe\xc9\xb6\xee\x2f\x77\x6f\x00\x5d\xf5\xab\x72\x6c\x9c\xa6\x71\x84\x5c\x75\xf0\x76\x1e\x79\x3c\x26\xf7\x19\xbf\x5f\x5e\xab\x69\xf9\x5a\xc6\x04\x20\xb3\xe8\x67\x6d\xe7\x85\xb8\xfb\xaf\xb5\x9d\x23\x9e\x8c\xc9\x7d\x46\xec\x97\x2f\xaa\xde\xf8\x4a\x06\x66\x1a\x5d\x88\x83\x6e\xc4\x3a\xae\x6e\x73\x03\x1d\x90\x4c\xda\x00\xe6\xca\xbf\x72\xf4\x1b\x71\xc8\x06\x0e\x7a\x65\xb9\x5a\xcc\x6d\x22\xd3\x18\x4f\x16\xd8\x7d\xa2\xe6\x97\x2f\xc0\x5d\x7f\x25\xc3\xa6\x94\x1e\x87\xf3\xae\x54\x74\x3b\xa0\xb9\xa1\xa1\x76\x18\x8a\x8b\x67\xdf\x21\x4a\x33\x66\x5a\x29\xaf\x43\x20\x67\xcc\xb3\xaa\xc1\xdc\x1c\x6e\x41\xcc\x3a\x8b\x55\x77\x85\x5b\xad\x5a\xf2\x4b\x9c\x37\x49\x15\x4b\x4e\x3f\x05\x16\x9f\x76\x34\x46\xa1\x54\x17\x58\x91\xfa\xac\x40\xdc\x5e\xb1\x77\xb0\xdb\xe4\xe0\x40\x2f\x1a\xa4\x20\x38\x75\xb5\x18\xa2\xbd\xe0\x52\xf7\x75\x2e\xab\xec\x78\x81\x67\x6b\x5d\x39\x8f\x9e\xbd\x3e\xf6\xa7\xef\x53\x5e\x7f\x79\x45\x61\x35\x46\x1b\x4b\x6f\x4b\xba\x6c\x93\x57\x76\x86\x08\x8c\x02\xd6\xde\x90\x8d\x1d\xc2\x47\xdc\xb5\x95\x0a\xa4\xf2\x51\x12\x45\x83\x0e\xa0\x8c\x47\x9f\x07\x47\xb4\x37\x43\x7c\xcf\x11\xcb\x46\x03\xd5\x0b\x64\xc9\x2c\x1b\x34\x21\xd0\xff\x86\x45\x76\x46\xcd\xbf\xa4\xdb\xac\x68\x1c\x8c\x99\x25\x8a\xfa\xff\x37\x2c\x76\x70\xe0\x3b\x0e\x09\xde\x6c\x5c\x64\xe0\xbd\x5a\x3b\x9f\x37\xe4\x1d\x3a\x24\x6f\x88\x4a\xba\xfd\x4d\xae\x0b\x4a\xe7\x66\xd3\xf5\x33\x84\x65\x5b\xbf\xf1\xdd\x5b\x87\xe4\x56\x5a\x9e\xa9\xcb\x00\xa7\xe5\x11\xdb\xce\x23\x8f\x17\xd0\x5f\xeb\xa2\x3d\xab\x2a\x3f\x81\x97\x3b\x1a\x0b\xe7\xac\xe5\x2a\xcc\xe5\x2a\x18\x43\xc1\x3e\x16\x09\x02\x78\xff\x7b\x43\x4a\xae\x60\x9c\xd3\x97\x22\xac\xda\x8d\x54\xe9\x2a\x53\x6f\x33\x78\x07\xd5\x4d\xce\x8e\xf2\xe2\x9c\x8a\x34\x17\x2e\x4e\x9c\x5b\x1d\x83\x8b\xc3\xa0\x05\x98\xc8\x4c\x41\x15\xd4\x8e\xba\xb7\x97\xd7\xbe\x49\xbd\xf6\x4d\x2e\xc6\xa3\x54\x53\x73\x0b\xd1\x07\x84\x60\x9d\x4b\x9b\x29\x77\xa8\x08\xc8\x23\x0d\x6e\x6d\x78\x2e\x79\xae\x80\x7c\xf4\x1b\xcf\xb9\x0f\xd6\xc6\x83\x0b\x4f\xde\xbd\x1c\x2f\xa7\xc5\x1a\x4c\xcd\xd3\x3b\xea\xc5\xfe\x8b\x1c\xc6\x98\x4d\x26\x03\x7d\xfa\xaa\x8b\x70\x9f\x69\xfc\xcb\xab\x16\xec\xdf\x6a\x6e\x33\x52\x10\xce\x3b\x1a\x69\x05\x85\x8a\x91\xe3\x00\x1f\x74\x5a\x41\x44\xa1\xd2\x0a\x02\xd3\x9c\x87\x54\xb4\xce\xaa\x46\xc1\x42\xca\x0a\xe2\xac\xb4\x82\x60\x88\xce\xdf\x0d\xaa\xa5\xb4\x82\x67\x5f\xef\xde\xc2\x66\xa6\x29\x43\x23\xad\x20\xcc\x69\x1a\xc1\xaa\xed\x8f\xd8\xc1\xa1\x9d\x26\x10\x5c\xb7\x69\x01\x27\x84\x41\xd3\x76\x46\x9a\x6e\xa6\x36\x51\x1f\x1e\x5e\x67\xa5\xf5\x03\x43\x74\x1a\x3f\x5c\x30\x0f\x9d\x7d\x3d\x9c\x22\xdc\xe9\x3e\xe2\xfd\xe1\xa7\xef\x9f\x6f\x21\x2c\x72\xe3\x7c\x35\xbf\x05\x41\x3c\x24\x6e\xf6\x84\x5c\x82\x3b\xdd\x47\x60\x3f\xfc\xe1\x9f\xde\xc5\xfd\x46\xe8\x7f\x7e\xf9\xfc\xa7\x0f\x3f\x7e\xf8\xf8\x58\xd6\xb4\xde\x30\x21\x90\x0f\x21\x16\xae\x47\xcc\x61\x47\x49\xad\x4e\xae\x17\xec\xc8\x0d\x5a\x3a\x13\xea\xb2\x79\x60\x3e\x68\x55\xf7\x0f\xf6\x06\x3b\x28\x5a\x6a\x94\xa5\xb0\xdb\xb9\x5f\x47\xc4\x2d\x2f\xff\xec\xa6\xef\x5d\x78\xdc\xf4\x73\x31\xd6\x25\xa1\x1a\x45\xb9\x21\x23\x1a\x14\x3f\x78\x96\x6a\x31\x61\x37\xa9\xd8\x9f\xd2\x01\x70\x4c\xef\xb1\x01\x54\xdf\x73\x27\xd2\xa5\x94\x2f\xa1\x4f\xc7\x3c\x57\xf4\x6c\xfa\x8d\xd4\xfa\xd5\xad\xdf\xf2\xf2\xcf\xee\xfa\xde\xc9\xc6\x5d\xff\xfc\xe9\xa7\x1f\x7e\xfc\xee\xfd\xcf\x8f\x5f\x9b\xae\xda\xbc\xef\xf9\xc1\xc5\x67\xf1\x46\x18\xfa\x75\xb9\xc1\x3b\x72\xb3\x8e\x65\xae\x2e\xed\x8d\xd0\xdc\x2a\x81\x3e\x78\x1f\x13\xd2\x20\x52\x52\xcb\x73\x82\x2c\xc6\xe2\xc6\xc3\xaf\xae\xb6\xd5\x95\x9f\xdd\xf2\xbd\x2b\x87\x5b\xfe\xfe\xbb\x1f\x9f\x4e\x10\xe1\x51\x13\x04\x8d\x9c\x20\xd0\xf1\xce\x09\x22\xf0\x29\x26\x1f\xe0\xc2\xcf\x09\x02\xb6\x9a\x9c\x20\x60\xaa\xc8\x09\xa2\x08\x03\x72\xee\x10\xbd\x26\x08\xa8\x2e\x5e\x26\x88\x40\x0e\x38\xe4\x1d\x10\x68\xe8\x08\x8d\xec\x08\xe0\xb2\xec\xc8\xab\x94\x84\x0f\x47\xf5\xe4\xec\xab\x70\xd0\x65\x43\xe8\x3c\x3b\x9a\x64\x17\x74\x14\x20\x93\x50\x3e\x4a\x80\xe6\xec\xc8\x74\xbe\x3a\x13\xef\x5d\xa0\x73\x80\x9e\x4f\x46\x30\x8c\xe7\x64\xac\xc6\x08\xd0\xbb\x61\x32\x02\xdf\x95\x93\x11\x6a\xc5\x1d\x41\xbb\x5e\x93\x91\xc1\xcb\x17\x56\x7c\x85\x39\x19\xa1\x09\x9d\x93\x51\x10\x13\x38\x27\xa3\x4e\xa9\xc9\xf8\x16\x84\x84\xd9\x51\x35\x46\x34\xc8\xb4\x65\x47\x81\x40\x50\x0e\x0c\x0a\x33\x26\x1d\x50\x8f\xce\x8e\x6c\x50\x75\x64\x31\x2e\xe8\xc8\x7b\x01\x48\x11\xe5\xfb\xb5\xa3\x39\xe8\xd5\x59\x7f\xef\xcc\x9c\x23\xf4\x74\xce\x1b\x71\xb3\x80\x28\x23\xcd\x66\x10\xad\x1c\x47\x89\x80\x8f\x0e\xc6\xa5\x37\x2c\x45\xc1\xf4\x46\x98\x36\xc1\x5f\xc6\xc0\x1b\xe4\x4d\xfa\xf4\x92\xcb\x81\x16\x43\xbb\xd9\x8d\x79\x5e\x0d\xbc\x3f\x79\xe9\x77\x6f\x27\x5b\x76\x81\xc8\xcb\x6c\x93\x04\x5d\x84\x5b\x75\x11\x34\xab\x0b\x1f\xa3\xba\x80\xbe\x4e\x76\x61\x56\x5d\x5c\x2c\xb4\xba\x48\x0b\xb2\xba\x98\x6c\x37\x7b\x36\x20\x7c\x9f\xfc\xfe\xee\x97\x1f\x7f\xfc\xf0\xc4\xdc\x76\x6d\x9e\x2f\xd4\xae\x2d\xa4\xd0\x27\x28\x7e\xb3\x0a\x3d\xe5\xe2\x98\xb9\x93\xe0\x0a\xbf\xed\x56\xc6\x4b\x5b\x7a\x9d\x79\xc4\xc1\x5d\xa3\x07\x04\x13\xdc\x91\x24\xf0\xd9\x6f\x2e\x54\x10\x94\x18\x2d\x72\xf1\x0c\x3b\xd2\x4c\xab\xcf\x23\xcf\x55\xd1\xc3\xd8\x9a\xd2\xdc\xd5\xb5\xc1\x25\x28\x39\xa5\x63\x98\x36\xf5\x38\xf2\x35\x6c\x43\x21\xb5\xe2\x42\x37\x9f\xcf\xec\x89\xdc\x1b\xee\x1f\x7e\xf9\xf4\x23\x2c\xe0\x53\x83\xa2\x13\x2a\xde\x60\xfe\x27\x99\x40\xb4\xca\xe4\xa6\x3c\x6f\x3a\x62\xb3\x80\x66\x36\x90\x7a\xeb\xbb\xcf\x6e\xe2\xde\x0e\xbf\xdc\xc4\x2b\x8b\x56\x21\xb8\xbd\x41\x25\x74\x09\x73\x6b\xd5\xa4\x5c\x25\x02\xba\x3b\x79\x97\x92\xee\x87\xc4\x55\x5f\x98\xf6\xff\xff\xc7\xcf\x3f\xfd\x29\x3f\xbf\xff\xf0\xf1\xe7\xfc\xfc\xf9\xcf\x3f\xfc\xc7\xe5\x7f\x03\x00\x00\xff\xff\x64\xf3\xf9\x1b\x47\x08\x01\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_svg() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_svg, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.svg", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_ttf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x7c\x07\x7c\x1b\x45\x16\xf7\x7b\x33\xb3\x92\x5c\x63\x59\x96\x65\x5b\x8e\xac\x62\x49\xb6\xe5\x2e\xcb\xb2\x5c\xd7\xbd\xc8\x71\x49\x75\x49\x1c\x97\xc4\x49\x88\xe3\x38\xbd\x91\xde\x20\x81\x84\x14\x38\x5a\x48\x42\x80\xd0\x71\x80\x84\x72\x74\x42\x28\xc7\x1d\x1c\xdc\xd1\x39\x7a\x09\x09\x38\x07\xdc\x71\x10\x6b\xfd\xfd\x76\x57\x72\x9c\x00\xf7\xdd\xf7\x19\x14\x49\xbb\xb3\xab\x99\x37\xaf\xfc\x5f\x5b\x40\x00\x88\x40\x00\x06\x50\x5d\x51\x59\x15\x92\x15\x92\x0d\x80\xa1\x00\xc0\x57\x4f\x9a\x52\xf6\xa5\xfa\x23\x0d\x00\xd6\x03\x90\x9a\xc6\x49\x19\xd9\x7f\xf4\x7c\x33\x0d\x80\xee\x07\x80\xce\x9e\x05\x5d\x03\x93\xbe\xba\x35\x03\x80\xfe\x08\xa0\xba\xac\x67\xf9\x52\x63\x4f\xbc\x76\x0d\xe0\x43\x89\x00\x70\x73\xef\xc0\x9c\x05\x9f\x44\xbd\x7f\x0e\xf0\xa1\x67\x00\x42\xfe\x30\xa7\x6b\xc9\x80\xf8\x6b\x80\x0f\xc5\x03\x80\x6a\x4e\xdf\xaa\xde\xbd\xef\x1d\x7d\x13\x20\xb4\x13\xb0\x77\x70\xee\xec\xae\x59\x3f\xb7\x44\x44\x00\x2e\x89\x00\x80\xdc\xb9\x73\x67\x77\x85\xa6\x28\xcd\x80\x4b\x6a\x00\x20\x71\xee\x82\xa5\x2b\x8d\xce\xef\x37\x00\x2e\xe9\x03\x88\x30\xf7\x2d\xec\xe9\x7a\xee\x70\xdc\x7f\x00\x37\x5f\x03\xa0\x4a\x5c\xd0\xb5\x72\x80\xfb\x5b\x58\x2c\xe0\xce\x87\x01\xc0\xd8\xdf\xb5\x60\xf6\xa4\xbc\x35\xa7\x01\x77\xfe\x0d\x80\x2e\x1d\x58\xb8\x64\xe9\x17\x65\x47\x4f\x03\xee\xae\x01\xb0\xfc\x75\x60\xf1\xec\x01\xf7\xb2\x82\xa7\x01\x9f\x6e\x01\x80\xfb\x25\x5a\x88\x2b\x17\xff\x08\xa8\xe0\x55\x78\x15\x10\x4d\x68\x07\xc4\x16\xec\x01\xc4\x95\xb8\x12\x10\xd7\xe2\x3a\x40\xdc\x80\x1b\x00\x71\x2f\xee\x07\xc4\x57\xf1\x55\x40\xe9\xfa\x60\x30\x40\x2a\x60\x45\x55\xfd\x64\x50\x89\x54\x05\x18\x19\x91\xce\xe0\x92\x05\x3d\x03\xa0\x12\x3f\x49\x2f\xe6\x7f\x57\x01\xc1\xa7\xe0\x03\x3c\x80\xb7\xe0\x41\x3c\x84\x87\xf1\x56\x3c\x82\xb7\xe1\xed\x78\x07\x1e\xc5\x3b\xf1\x2e\xbc\x1b\xef\xc1\xb7\xf1\x5e\xbc\x0f\xef\xc7\x07\x70\x10\x8f\xe1\x83\xf8\x10\x3e\x8c\xc7\xff\xbf\xae\xf9\x84\xdc\x48\x6e\x20\x37\x92\x9b\xc8\x4d\xe4\x66\x72\x80\xdc\x42\x0e\x92\x43\xe4\x30\xb9\x95\x1c\x21\xb7\x91\xdb\xc9\x1d\xe4\x28\xb9\x93\xdc\x45\xee\x26\xf7\x90\x7b\xc9\x7d\xe4\x7e\xf2\x00\x19\x24\xc7\xc8\x83\xe4\x21\xf2\x30\x39\x4e\x4e\xfc\x7f\x5e\x75\x86\x3c\x42\x1e\x21\x8f\x92\x47\xc9\x63\xe4\x31\xf2\x38\x79\x9c\xfc\x91\xfc\x91\x3c\x49\x9e\x24\x4f\x91\xa7\xc8\xd3\xe4\x69\xf2\x0c\x79\x86\x3c\x4b\x9e\x25\xcf\x91\xe7\xc8\xf3\xe4\x79\x72\x92\x9c\x24\x2f\x90\x17\xc8\x8b\xe4\x45\xf2\x12\x79\x89\xbc\x4c\x5e\x26\xaf\x90\x57\xc8\x9f\xc8\x9f\xc8\xab\xe4\x55\xf2\x67\xf2\x17\xf2\x17\xf2\x1a\x79\x8d\xbc\x4e\x5e\x27\x7f\x25\x7f\x25\x6f\x90\x37\xc8\x9b\xe4\x4d\xf2\x37\xf2\x37\xf2\x77\xf2\x77\xf2\x16\x79\x8b\xbc\x4d\xde\x26\xef\x90\x77\xc8\xbb\xe4\x5d\xf2\x1e\x79\x8f\xbc\x4f\xde\x27\x1f\x90\x0f\xc8\x87\xe4\x43\xf2\x0f\xf2\x0f\xf2\x11\xf9\x88\x7c\x4c\x3e\x26\xab\xc9\x6a\xf2\x29\xf9\x94\x7c\x46\x3e\x23\x9f\x93\xcf\xc9\x17\xe4\x0b\xf2\x25\xf9\x92\x7c\x45\xbe\x22\x5f\x93\xaf\xc9\x69\x72\x9a\x7c\x43\xbe\x21\x67\xc8\x59\x72\x96\x7c\x4b\xbe\x25\xdf\x91\xef\xc8\x0d\x40\x20\x0c\x2c\x50\x08\x00\xe5\x30\x1d\xe2\x60\x33\x6c\x86\x1c\xd8\x0a\x5b\xc1\x85\x5f\xe0\x97\x90\x8b\x5f\x93\x14\xc8\x23\x69\xa4\x18\xd6\x90\x52\x32\x13\xae\x26\x5d\x64\x31\xdc\x4b\x96\x91\xe5\xf0\x14\x59\x45\x56\xc1\x33\x64\x0d\xd9\x0f\xcf\xd2\xcf\xe8\x67\xf0\x3e\x50\xf6\x1a\xfe\x08\x1c\x00\x77\x23\xe7\x04\xc0\x04\xf9\x9d\xfe\x15\x7a\x09\x8c\xfd\xfb\x18\xc8\x48\x04\x18\xdb\x45\x6e\x17\xbf\x0f\xac\x5a\xbc\x44\xe2\x38\x9f\xaa\xdb\xf7\x77\x00\x55\x37\x71\x18\x01\x0f\x36\x8a\x02\x9e\xcf\x0d\x4a\xe3\x44\xae\xa3\xfe\x57\xbc\xf4\x0d\x14\x9d\x40\xa5\x4f\xf1\xc0\x14\x15\xd2\x8d\x37\x80\x02\x3a\x25\x39\x08\x82\x30\x30\xc1\x3a\x38\x04\xf7\xc2\x7d\xf0\x34\x9c\x82\xd7\xe0\x4b\x18\x02\x01\xc7\xa1\x1a\xad\x68\xc7\x4c\x9c\x84\x33\x71\x0e\xae\xc3\xf5\xb8\x17\x0f\xe3\x20\x9e\xc3\x11\xa2\x27\x6e\xd2\x4a\x9e\x20\x2f\x92\x97\xc9\x87\xe4\x07\x8a\x94\xd2\x20\x3a\x8e\x5a\xe8\x0e\x7a\x15\xdd\x4b\x0f\xd3\x41\xfa\x18\x7d\x99\xfe\x85\xbe\x41\xdf\x62\x56\x96\xc1\x2a\x59\x23\xeb\x66\x0b\xd9\x0a\xb6\x8d\xfd\x85\xbd\xcd\x3e\x61\xff\xe2\x90\x8b\xe0\x34\x06\x34\x94\x18\xb6\x1a\xfe\x69\xf8\xc1\xf0\x73\xc2\x04\x63\x88\x51\x6b\x34\x18\xcd\x46\x9b\x31\xd3\xe8\x34\xe6\x1b\x0b\x8d\x15\xc6\xa5\xc6\xf5\xc6\xdb\x8c\x47\x8d\xf7\x9a\x38\x93\xc6\x14\x6d\x32\x9b\x6c\xa6\x74\x53\x87\x99\x98\x15\xe6\x71\xe6\x48\x73\x9c\xd9\x60\x76\x98\x6b\xcc\x9d\xe6\xd9\xd6\x57\xfe\xfd\xbc\x30\x32\xe2\x1b\x19\xf1\x4b\xba\xb8\x42\x23\x98\xe1\x10\x1c\x86\xfb\xe0\x7e\x78\x06\x5e\x84\xd7\xe1\x2b\x38\x07\x23\x18\x81\x91\x68\xc3\x24\xcc\xc2\xc9\xd8\x89\x73\xa5\x15\x1e\xc2\x07\xf0\x1c\xfe\x42\x62\xfc\x2b\x3c\x45\x5e\x26\xef\x90\x1f\x28\x8c\xae\x70\x0b\xbd\x8a\xee\xa2\xfb\xe8\x11\x7a\x8c\x3e\x4e\x5f\xa1\x7f\xa5\x6f\x31\x60\x36\x96\xc9\xaa\x58\x13\xeb\x61\x03\x6c\x25\xbb\x82\xbd\xc6\xde\x61\x9f\xb2\x7f\x73\x84\x53\x1b\xc0\x50\x6c\xd8\x60\x38\x64\xf8\xde\xf0\x63\xc2\x04\x23\x18\x35\x46\x9d\xd1\x68\xb4\x1a\x33\x8d\xd9\x46\xcf\xe8\x0a\x8f\x18\x8f\x1a\xef\xb9\x68\x85\xed\xfe\x15\xaa\xc7\xac\x70\x96\x7f\x85\xc3\xa2\xe6\x61\xa1\x4c\x31\xf2\x2f\x80\x91\x4f\xb1\x7c\xe4\x19\x74\x8f\x3c\x0d\x80\x29\x00\x68\x05\x40\x93\xc8\x5d\x00\x38\x1e\x00\x45\x3d\x1f\x3d\xa2\x1d\xa1\xc2\xbf\x85\xd3\x28\x6a\x44\x10\x7a\x84\x32\xb8\xda\xf7\x96\xef\x76\xdf\x29\xdf\x31\xdf\xed\xbe\xdb\x7c\x07\x7d\x37\xfa\xb6\x03\x8c\xcc\x19\xe9\x15\x47\xf8\x94\x00\x23\xd5\xc3\xe7\x87\xff\x03\x30\x7c\x02\x60\xf8\x7e\x80\xe1\x23\x00\xc3\x07\x01\x84\x3d\x00\xc2\x2e\x80\xe1\x6a\x80\x2f\xea\xbf\x08\xfd\xfc\xc9\xcf\xcf\x7c\xde\xfc\xf9\xe9\xcf\xf1\x93\x16\x80\x4f\x1a\x3f\x69\xf8\xa4\xfe\x93\xf2\xcf\x34\x9f\x14\x7c\x16\xf2\x49\xf6\x27\xf4\xe3\x9f\x01\x3e\x7e\x13\xe0\xe3\x15\x1f\x5f\xf6\xf1\xdc\x8f\x67\x7c\xb4\xe7\xe3\x89\x1f\xdb\x3e\xda\xfc\x8f\xbb\x3e\x5a\xf1\xd1\xf2\x8f\x16\x7e\xd4\xf7\x51\xe7\x47\x15\x1f\xa5\x7d\x94\xf2\xfe\xa9\xe0\xbf\x90\x7d\xf8\x07\x99\x7b\xa5\xbf\x77\xc6\x88\xc5\xeb\x00\xf0\x1e\x00\x32\x00\x34\x8c\x79\x75\x8e\x95\x1d\xec\xc6\x3e\xf8\x9d\x3f\x6c\xf3\x8f\x58\x07\x80\xd7\xf9\x8f\xdd\x0f\x80\xff\x06\x20\x06\x00\xc2\x03\x10\xd1\x26\xbe\x05\x40\xbe\x04\x20\xbf\x5c\x7a\x07\xf2\xdd\x6f\xdd\x97\xfc\x43\x7e\xfd\x3f\xfc\x51\x16\x81\xdf\xe0\x19\x3c\x8b\xdf\xe2\x77\x38\x04\xeb\xf1\x4b\xfc\x05\xcf\xe3\x30\xfa\x50\xc0\x11\xd8\x00\x1b\x09\x10\x24\x84\x50\xc2\x60\x13\x6c\x26\x1c\x51\x10\x25\x51\x91\x20\x12\x0c\x5b\x60\x2b\xd1\x92\x68\xa2\x23\x31\x24\x96\xc4\xc1\x36\xd8\x4e\xf4\x24\x9e\x8c\x27\x06\x92\x00\x57\xe0\x17\xf4\x33\xb8\x12\xbf\x82\x1d\xb0\x13\xae\x22\x0d\xa4\x91\x34\x91\x66\xb8\x9a\x4c\x24\x93\xc8\x64\x32\x85\x4c\x25\xd3\x48\x0b\x69\x85\x5d\xb0\x9b\xb4\x91\x76\x32\x9d\xcc\x20\x1d\x64\x26\xe9\x84\x6b\x60\x0f\xe9\x22\xdd\xa4\x87\xcc\x22\xb3\x49\x2f\xec\x85\x7d\xa2\x3e\x23\xab\xc8\x1a\x72\x39\x59\x8b\x5f\xe3\x69\x3c\x47\x42\xc8\xb5\xe4\x3a\xf2\x07\x72\x3d\x59\x42\x96\x92\x15\x64\x25\xdc\x03\xf7\x92\x21\xb8\x8f\x9c\x23\xff\x24\xdf\xc3\xfd\xf0\x00\xf9\x99\xfc\x42\xce\xc3\x20\x19\x26\x3e\x38\x46\x04\x32\x02\x0f\x52\x80\x87\x28\xc2\xc3\x94\x50\x0a\xc7\x29\x83\x13\xf0\x08\xe5\xa8\x82\x2a\xa9\x8a\x06\xd1\x60\x1a\x42\x43\xe1\x59\x1a\x4e\xc7\xc1\x73\x34\x0c\x9e\x87\x93\xf0\x02\x9c\x82\x17\xe1\x25\x78\x99\x46\xc0\x2b\xf0\x27\xda\x48\xa3\xe1\x35\xaa\x83\xd7\x69\x0c\x8d\xa5\x71\x54\x0f\x7f\x85\x37\xe0\x4d\x3a\x9e\x36\x51\x03\xfc\x8d\x26\xc0\xdf\xa9\x91\x9a\xe0\x2d\x6a\x86\xb7\xe1\x1d\x78\x97\x5a\x68\x3c\xbc\x47\x13\xa9\x95\xda\xa8\x9d\x26\xd1\x64\x9a\x02\xef\x53\x07\x4d\xa5\x69\xf0\x25\x7c\x05\x5f\xc3\x69\x9a\x0e\xdf\xc0\x19\x38\x4b\x33\xe0\x5b\xf8\x0e\x86\xe0\x1c\xcd\x84\x7f\xd2\x2c\x9a\x0d\xdf\x53\x27\xfc\x40\x73\x68\x33\x75\x81\x40\x73\x61\x84\xba\x69\x1e\xf5\xd0\x7c\x04\x44\x24\xb4\x80\x4e\xa4\x85\x48\x91\x21\x47\x7f\xa1\x93\xe8\x64\xd4\x60\x14\x6a\x31\x9a\x4e\xa1\x53\xd1\x86\x76\x3a\xc2\x80\xfe\x4c\xff\x83\x49\x98\x8c\x29\xe8\xa0\xe7\xe9\x30\xa6\x62\x1a\xfd\x81\xfe\x48\xa7\xd1\x16\xfa\x05\xfd\x12\xd3\x31\x83\xfa\xa8\x80\x99\x98\x45\xbf\xa2\x5f\x63\x36\x3a\x31\x07\x5d\x98\x8b\x6e\xda\x4a\xdb\xe8\x69\xfa\x0d\x6d\xa7\xd3\x99\x92\xa9\xe8\x19\x7a\x16\xf3\xd0\x43\xbf\xa5\xdf\x61\x3e\x16\x60\x21\xfd\x09\x8b\xb0\x98\xfe\x8b\xfe\x9b\xce\xa0\x1d\x74\x26\x96\x20\xcf\x38\xa6\xc0\x52\x2c\x63\xc8\x08\x1d\xa2\xe7\x18\x65\x0c\xcb\xe9\x65\x74\x1e\x9d\x4f\xfb\xe8\x02\xda\x4f\x17\x62\x05\x56\xd2\x7f\xd2\xef\xe9\x16\xba\x15\xab\xb0\x9a\x6e\xa3\xdb\x59\x10\x0b\xc6\x1a\x7a\x05\x0b\xa1\x57\xd2\x1d\x38\x0b\x67\xb3\x30\x16\x8a\xab\xe8\xe7\xb8\x06\x14\x24\x18\x64\x98\x83\x97\x0a\x16\x04\x0c\x18\xf9\xbf\xf0\x3d\x06\xb8\x1f\x18\x70\xa0\x00\x25\xa8\x20\x08\x82\x21\x04\x42\x21\x0c\xc2\x61\x1c\x44\x80\x1a\x22\x41\x03\x51\xa0\x85\x68\xd0\x41\x0c\xc4\x42\x1c\xe8\x21\x1e\xc6\x83\x01\x12\xc0\x08\x26\x30\x83\x05\x12\xc1\x0a\x36\xb0\x43\x12\x24\x43\x0a\x38\x20\x15\xd2\x20\x1d\x32\x20\x13\xb2\x20\x1b\x9c\x90\x03\x2e\xc8\x05\x37\xe4\x81\x07\xf2\xa1\x00\x0a\xa1\x08\x8a\xa1\x04\x78\x28\x85\x32\x28\x87\x0a\xa8\x84\x2a\xa8\x86\x1a\xa8\x85\x3a\xf0\x42\x3d\x4c\x80\x06\x68\x84\x26\x68\x86\x89\x30\x09\x26\xc3\x14\x98\x0a\xd3\xa0\x05\x5a\xa1\x0d\xda\x61\x3a\xcc\x80\x0e\x98\x29\x5a\x4f\x51\x62\xf1\x9f\xf8\x03\xfe\x82\x23\x84\x12\x05\xe1\x88\x92\x04\x11\x15\x09\x26\xa1\x24\x9c\x84\x91\x71\x24\x82\x44\x12\x35\xd1\x90\x28\xa2\x25\x3a\x12\x4d\x62\x48\x1c\x89\x25\xf1\x44\x2f\xca\x28\xf6\xc3\x42\xe8\x86\x1e\x98\x83\x03\xb0\x0c\x36\xc3\x02\x98\x87\xeb\x61\x09\xcc\xc5\xab\x61\x3d\x6c\xc4\x1d\x30\x80\xbb\x70\x37\xcc\x86\xa5\xb8\x15\xb7\xe3\x36\x78\x1e\x77\xc2\x65\xb0\x0a\x1e\x81\x2d\xb0\x1d\xd6\x41\x17\xf4\xe1\x95\x70\x2d\x5e\x05\x0f\xc0\x7c\x58\x8d\x8b\x81\xe2\x37\xf8\x2d\x0a\xa2\xc4\x8a\xfb\x86\xf3\xb1\x0f\xe7\xe0\x5c\xd8\x86\xd7\x10\x23\xd9\x85\xcb\x71\x0d\x2e\xc5\x65\xd2\x26\x2c\x84\xe5\x38\x0f\x17\xe0\x12\x3c\x8b\x3f\xe2\x19\xfc\x17\x7e\x8f\x3f\xe1\x7f\xf0\x67\xfc\xb7\xa8\x81\x00\xf0\xbc\xa4\x7b\x00\x76\xc0\xcd\x70\x2b\xf4\xc3\x2d\x70\x10\x0e\xc1\x0a\x38\x02\x87\xe1\x80\xb8\xcf\x98\xc7\x14\x74\xb9\x42\xf4\x30\x82\x20\xc7\x3b\x98\xda\xd4\xc2\x87\x11\x91\x37\x5a\x29\x22\x16\x43\xbd\x9e\xd7\x50\x14\x0f\x4c\x11\x0f\x40\x2b\x11\x91\xf4\x84\xd6\x13\xea\x48\xb5\x9a\xa9\x62\x1c\x48\x2d\x6a\x27\x27\xfe\x83\x43\xb1\xb7\x3c\x82\xdb\x63\x6f\x79\x84\xbb\x56\x58\x84\xbf\xcc\x17\xff\x11\x79\xc9\x09\xc0\x76\x73\x83\xa0\x87\x04\x58\xea\x1d\xd4\x35\xb5\xf0\xf6\xf0\x10\x42\x43\x09\x01\xa4\xd0\xa5\x42\x85\xa2\xd0\x3b\x2e\x98\x30\xc6\xb5\x06\x29\x09\xc7\x95\x78\xc3\x10\xb1\x08\xeb\xf5\xbc\x55\x3c\x20\x9e\xa3\x1c\xeb\xfe\xf5\x55\xfe\x71\xad\x7c\x5c\x82\x61\x7c\xbc\x3e\x2e\x36\x46\x17\xad\x8d\xd2\x44\xaa\xfd\x7f\x11\x11\xaa\xf1\x0e\xb4\x50\x8b\xc6\xe2\x32\x49\x2f\x27\x75\x8a\x2f\xad\x45\x7a\x59\xa8\x53\x63\x21\x47\x3e\xab\xbf\x63\xc2\xd7\xc8\x15\xfc\x0b\x35\x0d\xb7\x37\x7c\xd6\x70\xb4\xe1\xb5\x6f\x0b\x3e\xf8\x79\xc2\x1d\xab\x3e\xcb\xff\x0c\x6f\x14\x7a\xf1\xc6\x03\x98\x7f\x10\x0f\x09\x9d\xe2\xeb\xa0\x70\xea\x80\xd0\x4b\xdc\x98\x2f\xca\xc2\xee\x91\x74\xd6\xa1\xb8\x09\x4a\xa1\x92\x2f\x8b\x1c\x47\x08\xe4\x64\x11\xca\x91\x3a\x40\xc2\x08\xb2\x01\x60\x1c\x61\x5c\xbf\x44\x70\x20\x3d\xc0\x51\xca\x4d\x03\x8e\xa3\xad\x40\x39\x3a\x81\x2f\xce\xf7\x38\xb3\x0d\xf1\x31\x3a\x75\x84\x42\x15\xe5\xc0\x9c\x74\x62\x4f\xa7\xae\x9c\x62\xe2\x76\x39\xb5\x06\xaa\xb5\xe4\xa4\x13\x8b\x39\x9c\x68\xa3\x0c\x44\x67\xa0\xda\xa8\x70\xa2\xd4\x5a\x5c\xe9\xd4\xe5\x8c\x32\x10\x67\x76\x2e\x5d\xa8\x2f\xec\xac\xec\xbe\x65\xa0\x30\xb7\xe7\xea\x69\x87\xa6\x5d\xd9\xe9\x1c\x32\xe4\x35\xe7\xe4\x35\xe7\xc4\xc5\x16\x76\xd7\xf6\x1c\xe8\xcf\xcf\x9b\xbb\xbf\xfd\x60\xf3\x75\x4b\xab\x86\xd2\x6a\xda\xd2\x97\xaf\xc3\xcb\x53\xaa\x0a\x9c\x3a\x63\xe3\xbc\x9d\x33\x26\xef\x9c\xc3\x07\xbf\xf7\x41\x68\xed\xf2\x5b\x67\x97\xcc\xae\xb6\x19\x5c\xde\x34\x47\x45\xbe\x33\xd6\xdc\x38\x6f\xc7\xf4\x96\x9d\xb3\x8b\x82\x9e\x7b\x56\x95\xbf\xe0\xe8\xb2\x86\xde\xa2\xd8\x85\x22\xfb\x71\x60\x1f\x39\xcb\x8e\x70\x2f\x80\x16\x1c\x50\x0a\xd3\xa0\x1d\x8a\xf9\x82\xf6\x36\x42\x68\x2b\x2a\x94\xa4\x0e\x08\x20\x23\xd8\x03\x0c\x94\x0a\xa6\xec\x01\x4a\x41\x44\xc3\x15\x5e\x50\x28\xb8\x76\xe0\xb8\x4a\xae\x3e\x59\xfe\x4b\x54\xa9\xe2\x1d\x9a\x9c\x62\xe2\xcc\x36\x10\xad\xb8\x40\x8b\x39\x9d\xf8\x97\x57\x4c\x5c\xae\x00\x05\xf0\x7f\x18\xc3\xd9\x51\x67\xb7\x54\xcd\xad\xac\x9c\x57\x69\xb1\x54\xce\xad\xa8\x9c\x57\x95\x78\x67\xa8\x3e\x25\xc1\x90\x12\x1b\x1a\x1a\x27\xbe\xc7\x85\xe2\x9d\x17\x86\xcc\xa9\xac\x9c\x57\x6d\xb9\x33\x54\xef\x30\x18\x53\x62\x82\x43\xe3\x52\x0c\x09\x29\x71\x21\xc2\xe5\xeb\x49\xd6\x7a\x76\x6f\x7e\x6f\x7d\x5a\x5a\x7d\x6f\xfe\x04\xcf\xec\x09\xa9\xa9\x13\x66\x7b\xf4\x59\x56\x9d\xce\x9a\xa5\x9f\x10\xf8\x30\x7c\xbb\xa7\x57\x3c\xd5\xeb\x69\xf0\xf4\xd6\xa7\xa6\xd6\xf7\x4a\x63\xa2\x6d\x59\xfa\x86\x38\x79\x4c\xdc\xd5\x3c\x63\x3c\x50\x68\x19\x39\xc3\x9e\xe1\x5e\x80\x14\xf0\x40\x3d\x2c\xe5\x35\x45\x31\x1c\x45\x2e\x23\xdd\x18\xcb\x18\x5a\x90\x30\x5a\x27\x8b\x89\x19\x38\x2e\x40\x32\x44\xd2\x4e\x91\x90\x22\xaf\x02\x19\xf3\x7f\x26\xf5\x7a\xde\x78\xf1\xa0\x56\x08\x8c\xa1\xed\x40\x69\x0d\xad\x6f\xe5\xc7\xa5\x3a\x6a\xab\x1d\x9e\x54\x8f\x25\xca\x90\xaa\x54\xc5\x48\x94\x76\xdb\x6c\xae\x00\x31\x45\x86\x52\x62\x6e\xae\xcb\x19\xa5\x50\xea\x4c\x76\x85\x42\x24\x2d\x97\x9d\xeb\x46\x65\x38\x15\xd9\x8e\x46\x45\xeb\xdc\xc5\x34\x40\xe3\x16\x5b\x65\x77\x61\x49\xb5\xab\xe7\xaa\xa9\x75\xab\xa6\xa4\x1b\xf3\xea\x53\xa7\xe0\x38\xa3\xf5\xaf\xb5\xde\xc7\x84\xd3\x55\xde\xbb\x66\xcd\x3e\xbc\xa8\x10\x1f\x2b\x5c\xec\x14\x3e\x8e\x48\xce\x8a\x55\xe9\x9d\x5e\x4b\x8a\x6d\x4e\x82\x25\x82\x45\x18\x52\xf5\x36\x8f\x4d\x83\xcb\xca\x17\x76\x4e\x4d\x69\x3b\x34\x75\xda\x15\x1d\x59\xae\xd6\xe5\xa5\x39\xad\x0d\x95\xc6\x6a\xe1\x50\xe1\xae\xe6\x6d\x9f\xb5\x9f\x9b\xee\xce\x2f\x98\x77\xcd\x32\x9b\x05\xd7\x86\x59\xca\x0b\xb3\x23\x53\x27\x78\x4c\xf4\xfe\xac\x5e\x4f\x93\xd6\x91\x62\x1f\x17\xe7\xb4\xc7\xc4\x67\x14\x03\xe2\xbb\x54\x20\x37\x48\x7a\x2c\x4d\xd6\x62\x21\xa2\x86\x6c\x05\xbf\x0e\x8b\x90\xec\xdd\x14\x10\x35\x18\x48\x0a\xec\x61\xb5\x9a\xa8\xa2\x65\xf5\x45\x6e\x88\x3d\xfa\x0c\xb7\x45\x58\x2d\xea\x4a\xc4\xe9\x42\x16\x5d\xa7\xe8\x04\x3d\x28\x1e\x8a\x52\x62\xa6\x03\x73\x8a\x99\x5b\x17\x4e\x44\xa6\x8b\x8c\x8e\xd6\x29\xd3\x39\x17\x4e\x4f\xaf\x9f\xbd\x70\x91\x33\xd3\xb3\xb4\xa3\xa0\xa0\x63\xa9\x27\xd3\xb9\x68\xe1\xec\xfa\x74\xd2\xb4\x67\xf8\xad\x07\xb6\xcf\x88\xbb\x3a\xf5\xba\x0f\x84\x77\x9f\x88\x7a\x42\x78\xf7\x1f\xd7\xa7\x6f\x8b\xed\xd8\x7e\xff\x5b\xc3\x7b\xc4\xfb\x17\x0a\x59\x74\xd6\x45\xf7\x8f\x0a\x67\x4a\x7b\x31\x89\x74\xb9\x72\x88\xcd\x66\x77\x1b\x38\x2d\x9d\x95\xde\xd0\xbb\x68\x89\x33\x23\x6f\x69\x47\x61\x49\xe7\x92\x9c\x0c\xe7\x92\x45\xbd\x0d\xe9\x84\xdf\x7d\xfe\xef\x83\x57\xcc\x8c\xdd\xe6\xb8\xfe\x23\x4c\x7e\x22\xea\x09\x4c\xfe\xf8\x7a\xc7\xb6\xb8\x8e\x2b\x8e\xbd\x75\x7e\x97\xb8\xb8\x1b\xe1\x29\xb6\x9e\x3d\x04\xe1\x10\xc7\xeb\xc2\xc3\x42\x43\x82\x83\x54\x4a\x05\x25\x18\x0a\xd5\x00\x30\x2f\x0a\x55\x5a\x07\x5a\xdd\x1c\x75\x52\xab\x8e\x43\x25\xa5\x76\x12\x27\x6c\x28\xc6\x45\xc6\x3f\x5b\xb0\xbf\x58\x58\x8d\xdc\xd1\x37\x5e\xbf\x8b\x6c\x9d\x79\xf2\x10\xde\x23\x34\xde\xfc\x62\x9b\xf0\xc4\x1a\x5c\x24\xdc\xb8\x0c\x10\x16\xc0\x5e\x36\x89\x9d\x80\x10\xb0\xf1\x16\xe0\x80\x70\x53\x18\x02\x45\x24\x80\x5d\xc0\x71\x22\x0b\x72\x64\x82\xac\x7f\x15\xaa\x38\x07\x9a\xb4\x26\xb5\x45\x6d\x72\x99\xd4\x4e\xf2\x77\x5c\x27\x6c\x3a\x2d\x6c\xc4\xf5\xa7\xa9\xf1\x13\x61\x12\xde\xf7\x89\x84\xe2\x11\xbb\x85\x2b\xc9\xdd\xf0\x0d\x84\x40\x04\x1f\xa6\xe0\x88\x3c\xdb\x38\x71\xb6\x56\x91\x41\xed\xb9\xb9\x2e\x97\x93\xdc\xa5\x77\x56\x3b\xb6\x3b\xd2\x87\x4c\xae\x81\xbe\x2e\x5b\x75\xcd\xc1\xee\xbf\x4a\x98\xe4\x67\x62\x60\x71\xe4\x23\xa0\x10\xc3\x6b\x2f\xdd\x70\x75\x84\xb4\xdd\x26\x97\x89\xc5\x0d\x7f\x44\x4d\xc4\xf0\xac\xf8\x9b\xa7\x46\xce\x52\x0b\xba\x41\x03\x1a\x3e\x42\xbc\x4b\x3b\x20\x56\x62\x7d\x52\xa2\x38\xdc\x3a\x46\x3e\x44\x81\xc0\x53\xba\xd4\xd2\x94\x94\xd2\x34\x9d\x2e\x4d\x7c\x4f\xd5\xed\xb6\x14\xa7\xc5\xc5\xa5\x15\x5b\x2c\x05\xa9\xb1\xb1\xa9\x05\xe2\x6f\x9d\x1e\xd9\xcc\x28\x37\x08\x54\xbe\x27\xc2\x12\x71\xd3\xb1\x5e\x9e\x02\x67\x41\x27\x3e\xff\x1e\xe1\xdf\x5b\xab\x48\x93\x3c\xfd\x5d\x23\x67\x58\x99\xa4\x47\xc7\x83\x05\x6a\xf9\xa0\x04\x83\x2e\x9a\x51\x82\x75\xde\xc1\x88\xa6\x16\x5e\x0b\x84\x48\xf3\xaa\xf0\x06\x54\x68\xa5\xc8\xd4\xbf\x71\xbc\x06\xea\x5b\x4f\x58\x93\x92\x13\x25\xd3\x1c\xd0\x90\xea\xc0\x32\x10\x6d\x36\x8b\x59\xa1\xe5\x30\xd2\x99\xad\x66\x65\xa5\xab\x07\xfb\x17\x0c\xae\x29\x2f\x5b\xf3\xc0\x82\xfe\xc1\x35\x65\xbe\x42\x7c\x43\xb5\xa4\x7f\xd9\x52\xfc\x9b\x90\x1e\xf9\xf6\x69\x92\x72\xf5\xdb\x7b\xea\xea\xf6\xbc\x7d\x35\x4e\x0f\x7c\x12\x46\xb0\xfd\xda\xdd\x77\xdc\xbb\x4b\xb8\x5d\xf8\x54\xa4\x30\x3c\x09\x40\xcd\xdc\x20\x28\x20\x8a\x57\x73\x4c\x74\x75\x6a\x00\xa0\x08\xea\x23\xc4\xbd\x33\x59\xd4\x9c\xcb\xea\xa4\xe6\x7f\x0a\x57\x91\xa9\xe3\xd8\x95\x57\xbc\xf1\xa1\xb4\x5f\xf5\x00\xac\x80\x3b\x09\x66\x48\xe7\x1d\x04\x81\x61\x1d\x10\x64\x48\xd8\x00\x20\x4a\xda\xab\xc2\x0b\x8c\x89\x3b\x28\xde\x2d\x2e\x31\xd2\x11\xc1\xa9\x62\x1d\x26\x93\x0b\x03\xaa\x48\xa1\xb5\x8c\x55\x62\x68\x62\x05\xc3\xe9\xf8\x5e\x61\x73\x66\x54\x82\xa7\x39\x7b\xd3\x9a\x73\x95\x1b\x1f\x5d\xd2\x77\xe7\xd2\xc2\xd4\x86\xbe\x12\xe1\x04\xb9\xeb\x76\xc2\x95\xcf\x99\x5a\x67\xcb\x9e\x52\x64\xde\xb5\x76\xe6\x5d\xeb\x6a\x8b\x17\x5e\xdf\x5e\xb1\x7e\xdd\xfa\x72\xe1\x16\x71\x5e\x33\x47\xce\x32\x13\x77\x12\x0a\x45\x7b\x6e\x40\x25\x48\xf3\x02\x24\x30\x00\x9c\x52\xa1\xe4\x14\x03\x00\xa0\xe4\x40\xd9\x33\x66\x9e\x0a\x05\x6b\x07\xc6\x2a\x59\x7d\x61\x7e\x4e\x76\x7a\x5a\xb2\x3d\x31\xca\x66\x54\x89\xfb\x20\x59\xa7\x1c\x9b\x64\x9b\x2e\x9a\xad\x6c\xca\xc7\x58\xb1\x5c\x69\x51\x16\xdc\xbf\xbb\xa4\xa3\x38\x61\xe1\x40\xd6\xa4\x22\xf3\x50\xe5\x9a\xbb\x67\xcf\xb9\x77\x75\x45\x9c\xab\xd9\x5d\xd6\x96\x17\x53\xb7\xf9\xc1\x39\x33\xef\xdd\xdc\x30\x64\x2e\x69\x71\x2f\xde\x6c\xab\x9e\x55\xb2\x9b\x56\x98\x0a\x27\x65\x5f\xb6\x64\x7c\x6e\x7d\xe6\xd4\xbd\xf3\x8b\x5c\x73\x6f\xea\x75\xb4\x4d\xae\x8d\xd5\xd5\xb4\xf6\xba\x7a\x0f\x2d\xf0\xe4\xcc\xb9\x61\x76\x66\xb3\xc7\xb8\x6a\x49\x49\x7b\x41\xbc\x88\xcb\xca\x00\x58\x2f\x37\x08\xc1\x10\x0e\x0e\x3e\x29\x0c\x81\xa9\x10\x81\xd4\x71\x01\x69\xee\x06\xc6\x0a\xbd\x20\x19\x1a\x11\xf0\xf9\xc5\xd9\xa9\xb5\x88\xe2\x6c\x47\x27\x9a\xd4\x4a\xfa\xc0\x23\x8f\x0c\xf9\xae\x50\x90\xe5\x3f\xf9\xae\xc4\x2b\xe2\x08\xf7\xac\xf0\x04\x56\xec\xa1\xef\x0f\x4f\x21\x7d\x19\xb2\xbf\x70\xdd\xc8\x59\x56\xcf\x0d\x42\x0a\x14\xf2\x1e\x0e\x15\x24\x05\x99\x82\xd4\x01\x53\x70\x0a\xc6\x0d\x00\x01\x05\x23\x8a\x1e\xbf\xbc\x42\xa1\x57\x84\x47\x22\x65\x2b\x69\x7d\x92\x39\x2a\xc9\xa2\x56\x2b\x55\x7a\x87\x46\x63\xd2\x9a\x68\x6e\xee\x58\xa1\xb4\x3b\xa3\xa3\x65\x0a\xcb\xa6\x49\xf9\x7c\x23\x0d\xf1\xfd\xd1\x6a\x59\x5a\x3f\xe7\xc8\x40\xa1\x67\xd9\x83\xab\xda\x8f\x6e\x9a\xa4\xf8\x2a\x7c\x53\x6f\x41\x4b\xfe\x78\x53\x59\x37\xef\x28\xce\x4a\x8a\x22\x6f\x90\x7f\xbc\x25\x1c\x8d\xb2\x55\xac\x3f\xbe\x78\xf6\xb1\xcd\xf5\xae\x39\x37\xf6\xf6\x2d\x4a\x6d\x5c\x58\x56\x72\xd9\x84\xd4\x30\x9d\x31\x52\xf2\x85\x56\x8f\x9c\x65\x1e\xee\x04\x58\x20\x0f\x78\xbe\x48\x89\x0c\x93\x91\x63\x22\xbe\x53\x22\xe3\x90\xf5\x88\x62\xdc\xae\x40\x4a\xa5\x79\x93\x76\x20\xa4\x92\xd4\x5b\x13\x01\x32\xd3\x13\xf3\xac\x79\x60\x01\x73\x52\x92\x49\xa5\xd2\x39\x50\x2b\xcd\xb1\x98\x8e\x5d\x82\xcb\x95\x53\xcc\x9c\x54\x3c\xa1\x0d\xa0\x99\x9c\x74\x42\x7b\x22\xd6\x1c\x5b\x56\xa4\x8a\x29\xae\x6f\xc9\x9e\x7f\xa0\x37\xbb\x64\xe5\xe0\xc0\x8a\x13\x6b\x78\x63\xf5\xa2\x83\x6f\x6c\xfd\x3a\xb9\x9e\xcf\x1e\x67\xaf\x68\xc9\xce\x6b\x29\x32\x1a\x0a\x5b\xb8\x13\xaf\x56\x2e\x3f\xd0\xaa\xcf\xb2\xeb\x26\x6e\x7f\xa0\x63\xde\xf1\x6d\x13\x3a\x0e\xfc\x65\xd1\x8c\xf9\x7f\x3e\x71\x43\x7f\xb1\xaf\x3e\x36\x8d\xb7\x55\xb4\x6e\x6d\x4b\x4b\x6d\x5c\x50\x5a\xb4\x60\x62\xa6\xbc\x37\xad\x00\xac\x46\x92\xdf\x04\x3e\x5e\x84\x10\x58\x17\x00\x12\x85\x5e\x59\xf4\xd4\x6a\x35\x15\x27\x8f\x16\x49\x83\xd6\xf8\x1e\x1b\x26\xd5\xbe\x30\x3a\xc4\x39\x7e\xf9\x3b\x3b\xfd\xa2\xa4\xc7\x76\x8f\x9c\x65\x55\xdc\x49\xb0\x80\x0b\x6a\xc1\xc5\x67\xeb\x28\x21\x1c\xd6\x89\x26\x82\x72\xa4\x07\x18\xfb\xb5\x1a\xab\xaa\x28\xcc\xcf\xce\x4c\x49\x32\x1a\x52\x15\xa2\x59\x8a\x52\x8c\x95\x8a\x8b\x61\x0a\x1d\x85\xc1\xd2\x86\xd3\x31\xa8\x58\xfc\xce\xec\xfd\x33\x73\xa7\x15\x9b\xea\x36\xdc\xd7\x33\xfb\x81\x0d\xb5\xa6\xa2\x69\xb9\x1d\x7d\x65\xcb\x6e\xed\xec\x3c\xb2\xb2\xfc\x75\x73\xf1\xb4\xdc\xdc\x69\x45\xa6\x75\x0b\x73\xa6\x15\x9b\x13\x0c\xb9\x13\xd2\x33\xbc\x39\xf1\xe3\x5d\xf5\x19\xe9\xf5\xae\xf1\x2c\x73\xfe\xd1\xcc\xd8\x9a\xb6\xf9\x85\xb3\x6f\x9e\x97\x9b\x3b\xef\xe6\xd9\x85\x7d\x6d\x35\x31\x99\x47\xe7\x77\xfd\x61\x8e\xcb\x35\xe7\x0f\x3e\xa5\xbb\x8d\xb7\x58\xf8\x36\xf7\xc0\x5a\x63\xf1\x34\xf2\x52\x66\x73\xbe\xd1\xe0\x69\x76\x66\x37\x7b\x8c\x46\x4f\xb3\x9f\x57\x7e\x61\x69\x12\x0d\xf2\xa0\x9c\xe7\x93\x91\x71\x1c\x22\x23\x75\x4a\x64\x20\xaa\xb8\x9e\x00\x83\x54\x78\x15\x28\xb2\x0d\x50\x5a\x44\xeb\xad\x89\xe8\xe7\x15\x93\x51\xab\x09\x09\x02\x0b\x5a\x54\xaa\x28\x87\x35\xbb\x98\xb8\xc3\x69\x80\x18\x01\xe4\xcb\x2c\x16\x17\x8a\xa7\x5c\x63\x68\x80\x33\x37\x1d\xeb\x77\x29\xa3\x3d\xd5\x53\x9c\xf3\x6f\x99\xeb\x2c\x5e\xf9\xc0\xc0\xaa\x87\x56\x14\xe8\x4b\xe7\x1f\x7c\x77\x97\x06\x49\xb2\xb7\x38\x33\xdc\x5e\x36\x2d\x33\x6f\x6a\x41\x42\xbc\xa7\xe5\x54\x51\xdf\xbe\xa9\xb1\x0e\x93\xa6\x79\xfb\x60\xe7\xbc\xc7\x76\x34\x75\xde\xfa\xf6\x8a\x86\xb9\x2f\x1f\xbf\x7e\x61\xc9\xab\xf8\x76\x5c\x3a\x6f\x6b\x6c\xd9\xde\x9e\x9e\x39\x69\x80\x2f\xec\x9f\xe2\x1c\x19\xc1\x2f\x46\xce\xd2\x32\xb6\x83\xd8\x20\x22\x01\x50\x09\x11\x90\x40\x27\x41\xd0\x31\xc4\x47\xe9\xa4\x41\xa7\x03\x46\x46\xf0\x65\xe1\x4a\xda\xcc\x76\x10\x3b\x44\x40\x3a\x9d\x84\x0a\x08\x9f\x03\x10\x74\x0c\x02\x63\x00\xe1\x08\x1c\x65\x1c\x6b\x00\x15\x28\x1e\x52\x32\x11\x03\x29\x75\x9c\x16\x5d\xa8\xc5\x3f\x97\x96\x92\xbc\xe1\x5b\x68\x37\xb9\x46\x17\xfd\xea\x39\x5c\xf6\x14\x2e\x1d\x12\x69\x7b\x3b\x96\xb1\x22\x7a\x0c\x28\x28\xc1\xcc\x27\x88\x16\x9e\x22\x74\x01\x25\x84\x4e\x01\x4a\x45\x8e\xa5\x12\xee\x88\x90\xcc\x9f\x88\x37\x44\x6e\x2d\x1a\x9e\x4b\xaf\x17\x5f\xe4\x9b\x17\x7d\x7b\x5e\x94\x78\xfe\x2e\x38\xca\x6c\xac\x51\xfa\x7d\x86\x98\xe9\xd0\x88\x3f\xed\xb2\xba\xed\x77\xd1\xb5\xc3\x9b\x49\x4b\x69\x29\xed\x39\x2b\x5c\xf5\xb4\xb0\xf3\xdb\xbf\x47\x69\xa5\xbd\xbd\x77\xe4\x47\x96\xc7\xbd\x00\x76\x70\x42\x1e\xef\x02\x04\x0a\x48\x07\x14\x48\x19\x50\x26\xb9\x77\xf2\xc6\x02\x63\x01\xf7\x06\x20\x3b\x33\x35\x05\xec\x60\x4f\x8c\x4a\x55\x8a\x22\x24\xb2\xb4\x68\xbc\xfc\xe6\xe0\x82\x22\x10\x81\x36\xe6\xe4\x3a\xb3\xa3\xb5\x51\x0a\x8b\xd9\x86\xff\x56\xc5\xe7\x65\x99\xaa\x3c\xd6\xfe\xb9\x49\x13\x0a\xad\xe7\xb0\x7a\xf5\x6d\x9d\x7d\x77\x2e\x2b\xca\x6a\xec\xce\x34\x18\xc7\x91\x11\xa8\xad\xa8\xf0\x7a\x2b\x2a\x6a\xf1\xee\xea\xce\xba\xd2\x14\x53\xf5\x84\x89\xa9\x3d\x5d\xda\xd4\xca\xcc\x19\xbb\xbb\xb2\x9c\xdd\xd7\xcc\xa8\x5e\xd3\xd7\xe1\x30\x64\x66\xe7\x27\x09\x7f\x29\x98\x30\xa1\xc0\xe3\xf5\x4a\x3e\xf9\xc8\x7f\xd8\x35\xdc\xdd\x50\x0d\x93\xe1\x3d\xef\xa0\xbe\xa9\x85\xd7\xc5\x60\x10\x69\xaa\x21\x34\x48\x85\x40\x9d\xc8\x41\x0e\x2a\x38\xae\x4e\x3f\x7a\x46\x75\xc9\x99\x56\xd9\x4b\x49\x56\x21\x45\x04\x8e\x82\x28\xe2\xca\x76\x50\x2a\x0b\xbd\x10\x14\x24\x51\xa3\x5a\xd4\x88\x8a\x76\x50\x28\x8a\x14\xf5\x7a\xf9\x97\xec\x40\x20\x88\x92\xa0\x9e\xdf\xbc\x70\xcc\x70\x3e\x55\x1c\xa9\x22\x41\x3d\xa0\xa2\xa0\x9a\x06\xff\x75\x78\x6b\x2b\x1f\x3e\xa9\xd9\x96\x64\xb7\x25\xd9\x93\x12\x13\x83\x45\xcf\x5f\x14\x1d\x9b\xdf\x9d\x71\x8b\xb4\x8e\xd6\x51\x85\x5f\xc3\xe6\xfa\xed\x05\x89\x74\x66\xe7\xba\x75\xd2\x50\x1b\x71\xe7\x46\xca\xf6\x05\x15\xd1\xe2\x71\x97\x46\x84\x4c\xec\x2a\x6a\xae\x9c\xef\x75\x4f\xd4\x5a\x66\xe4\xba\x9a\x9d\x51\xca\xe0\xfc\xb6\x95\x35\xb5\x1d\xf1\x0e\x1a\xa4\xd6\x85\x18\xb2\x2c\x1a\x96\xd1\xbd\xbb\x7d\xf6\x91\xa5\x65\x2c\xe4\x8d\x3f\x15\xaf\x4d\x33\xc6\x95\x56\xd5\x9a\xae\x79\x73\x7b\x09\xc7\x4d\x3f\xf8\xde\xe6\xe5\x4f\x6f\x2e\xf7\xb5\x71\x19\x69\x26\x5e\x6f\x8f\xd2\x76\xf4\x50\x7b\xcb\xe0\x55\x2d\x6e\x67\x56\x9e\xb3\x73\xfb\xe4\xbe\x7b\x57\x96\x66\x9b\x7c\x3e\x4b\xb2\x96\xcb\x9d\xb9\x79\xc2\xe5\x4f\xac\xe7\x67\xdc\xf1\xd9\x76\xe1\x9c\xf0\x8d\x49\xbf\x51\x13\xaf\x09\xea\x39\x8e\x70\xcb\x01\x8c\x7e\x7d\x55\xfb\x9d\xdf\x09\xff\xec\x9f\x6f\xcc\xe0\xf0\x79\xc5\x9d\x72\xcc\x2e\x07\x80\x0d\x72\x83\xa0\x84\x60\xb0\xf2\xe6\x60\xd1\xf9\xae\x03\x26\xc5\xda\xbb\x25\x65\x4e\xe5\x68\x89\x04\xcc\x45\x20\x85\x26\x2a\xa2\x51\x0b\x9a\x28\x9d\x26\x78\x66\xfd\x07\xdf\x7d\x13\x5f\xff\x49\x88\xc2\x86\xdb\x71\xa2\x70\x3f\x37\xf8\x4b\x13\x49\x20\x05\x52\xb4\x0f\xf6\x03\xb0\x75\xdc\x20\x44\x81\x09\xd2\x45\x5f\x3f\x18\xa9\x88\xd9\x98\x12\x29\x61\xb4\x27\xe0\x87\x4a\x88\x01\xdb\x15\xf2\x8f\x69\xb5\x00\xe9\xa9\x89\x66\xad\x49\x6b\x8c\x89\x86\x28\xd0\x98\x54\x2a\xad\xc3\xa9\x36\x19\xa8\x52\x11\xd0\xf6\x4a\x54\x9b\x64\x48\x67\xb7\x3a\xfd\x1f\x2c\xfb\xf1\xaf\xf3\x1e\xb9\xb2\x01\x71\xf9\xac\xa2\x99\xbc\xb9\x7e\xfb\x63\xf3\x05\x01\x15\x9e\x8e\x0a\xbb\x99\x9f\xee\x11\x86\xbe\xcc\x9d\x51\x91\x64\xab\xec\xc8\xfb\x9c\x1b\xc4\xf4\xce\x6b\x7b\xfb\x6e\x48\x51\x97\xb4\xcc\x2f\x9c\x7b\xcb\x65\x6e\x24\xfb\x85\x4c\x34\xe5\x4f\xce\x71\x4f\x2b\x34\xe1\x23\xa8\x77\x4d\xc8\x76\x37\x64\xeb\x10\x10\xda\x47\xce\xb0\x3e\xee\x05\x48\x86\x5e\x19\x64\x5b\x45\x1b\x45\x09\x37\xa0\x40\x8e\x51\x8e\xf5\x03\xa5\x01\x6b\xc5\xd8\x05\xd0\xfd\x3f\x8c\x13\x41\x38\x1f\x0e\x00\xc9\x90\x9c\x9c\x18\x95\x9c\xa8\x14\x49\x2d\x2b\x71\xbb\x4b\x16\x78\x9d\x25\x9d\x4a\x0a\x40\x36\x5e\xb9\x6e\xd6\x17\xdc\xb4\xe5\xa1\xfe\xad\xa7\xb6\x94\x21\x56\x6c\x3d\xb5\x79\xc9\xc3\x1b\xea\x43\xce\x29\xac\x7c\x57\x59\x73\x7f\xc5\xf8\xf1\x65\xfd\x13\xd7\x6d\x09\xc5\xa7\xe7\xdd\xb7\xa6\x7c\xce\xe0\xd9\x6d\x2f\x6e\xfd\xf6\xd8\x9c\x8a\xcb\x1f\x5c\xc0\xcf\xf3\x26\xd5\xad\xbd\xad\xed\xe5\x8e\xdb\x2f\xaf\xd9\xbd\x59\xe6\x85\x2b\x01\xd8\x52\x6e\x10\xc2\x40\x0f\xa9\x7c\x32\x87\x7e\x8b\xeb\xdf\x1b\x26\xef\x4d\x78\x38\x40\xb8\x3e\x3c\x4e\x3d\x0e\xc2\x20\xd4\xa4\x08\xec\x8b\x4e\x1b\x4e\x2d\x54\xed\x2c\xa6\x6e\x57\x3a\xb5\x5f\x89\xb3\xae\x1b\x3a\xda\x86\xd8\x76\xc7\xd9\x7d\x2b\x56\xf4\xec\xef\xc9\x42\xcc\x9a\xf5\x87\x5e\x6e\x10\xbb\x1f\xfc\xe9\xba\xfe\xeb\x7e\x3a\xd6\xcd\xbe\x3b\xff\x26\x56\xae\x1d\xec\x1b\x98\x77\xff\xfa\x6a\x91\xc6\xb7\x02\xb0\x26\x6e\x10\x42\x20\x99\xb7\x01\x07\x80\x1c\x74\x01\x63\xb4\x15\x24\xa4\x14\x08\x56\x90\xfa\xb1\xae\xa2\x5a\x74\x16\xa5\x17\xfd\xc6\x77\x17\x79\x72\x78\x22\x3d\xea\xab\x23\xd3\xc8\xd5\x82\xfb\x24\x37\x78\x4a\x98\x2d\xea\xef\x3b\x01\xd8\x34\x6e\x10\x82\xc0\xc2\x1b\xfd\x3c\xde\xe5\xb7\x01\x44\xba\xf7\xc5\x7c\x2e\xe2\x55\xe9\x9e\x3e\xdf\x81\xef\xe9\x03\xbe\x72\xd2\x43\xfa\x7c\xfb\xc5\xfb\x55\x8b\xf7\x9b\x3e\x72\x96\xf5\x72\x27\x21\x03\x3c\x7c\xae\x03\x08\x13\x71\x0b\xa1\x0a\x4a\x14\x03\xa0\x00\x8e\x29\xb8\xae\xdf\xe4\x08\xb5\xd6\xbf\xc5\x7a\x87\x35\xb0\xc5\x7e\x43\x1d\xd8\x63\xa5\xd6\x40\x75\xa2\xb1\xd6\x88\xd6\xa8\xd7\x3a\xeb\xf2\x3d\x13\x37\xbf\xb2\xb3\x16\x6b\xb6\x9f\x5c\xb7\xe8\xc1\x0d\xde\xe0\xb3\x41\x36\xbe\xbd\xb8\x7e\x41\x8d\x19\xd1\xe2\x5d\x3e\xc9\x5c\x53\x9a\xab\x26\xc2\xcf\xf8\xfd\x89\xd4\xba\x5c\x43\xef\xb1\x73\x3b\x1e\xde\x71\xee\xc1\x39\xc5\xcb\xee\x9c\x5b\xd0\x51\x66\xf1\xae\x3f\xda\x7e\xa2\xfd\x8e\xf5\xf5\x18\x14\x95\xa0\x43\xcb\x1f\x25\x9b\xb6\x09\x80\x55\x48\xf4\x36\xf1\x06\x90\xe1\x46\x17\x27\xa1\x52\x82\x01\x18\xe7\xa7\xb3\xc9\xa2\x16\x69\xe2\x54\x9b\xd4\x4e\x56\xf1\x8d\xa0\x3e\x7d\x1a\x87\xbe\x21\x3b\x7c\xcb\xb9\x41\xdf\x41\xd2\x25\xde\xef\x38\x00\xd3\x49\xf7\xb3\xf0\x46\x0e\x47\xa1\x39\x43\x42\xa4\x3d\x2c\xa2\x63\xee\xa8\xf1\xef\x9b\x68\x74\x8f\xd3\x6e\xe1\x05\x2c\x18\xbe\x05\x73\x84\x57\xb9\xc1\x17\xcf\x7f\x78\xea\x14\xb3\x88\xf7\x9c\x33\x72\x96\xe5\x70\x83\xa0\x95\x2c\x38\x01\x0a\x84\x0e\xc8\x7c\xe9\xa7\x6e\x25\xd6\x9b\xa3\xac\xb2\x05\x77\x6a\xfc\x24\xf5\x43\x7c\x37\xe5\x7f\x40\xe2\xdd\x3c\x38\x67\xfe\xfd\xeb\xea\xb8\xef\xb9\x35\x4b\xdd\x6d\x25\x66\xe4\x06\x87\xc3\x7a\xef\x59\x53\x59\xb0\xe8\x8e\xf9\xcb\x37\xa7\xd4\x75\xe5\x89\xbf\xb5\x0f\x80\xbd\xc4\x0d\x42\xa8\x88\x6b\x83\x15\x48\x01\xb1\x8e\x20\xa2\xa8\x08\x25\x7a\x44\x6a\xd4\x91\xd2\x0f\x29\x25\x5a\xb8\xd1\x84\x68\x22\xe6\x9b\x7f\xf8\x61\x2b\xae\x47\xab\xa0\x26\x2a\xe1\x63\xb2\xea\x01\x21\x97\x1b\xf4\x4d\xbd\x0f\x7d\xbe\x8d\xc3\xaf\x49\xb4\xbe\x17\x80\x4d\xe4\x06\x81\x83\x58\x3e\x3a\x00\x94\xb1\x2d\xc0\x77\x11\x22\x5a\xb6\x8a\x14\x71\xe2\xcd\xe4\xc4\x70\xdb\xb9\x93\x27\xb9\x41\x40\xd8\x0e\xc0\x5a\xb8\x41\x08\x17\x7d\xde\x60\x51\x71\x4a\xde\x25\x20\x10\x1c\xe0\x18\x11\x29\xe1\xd7\xd2\x00\x10\x0e\xe1\x1a\x8d\x3a\x52\x21\x4e\x51\xa3\x11\x37\x4c\x43\x2d\x54\xa3\xb6\xa8\xf1\xd8\xf1\x97\x30\xe5\xd3\xf0\x8f\xd7\xfd\x29\xfc\x53\x6e\xd0\xb7\x93\x2c\xfb\xa5\x09\x7f\x24\xeb\x7c\x55\xe4\x56\xdf\x8d\x42\xa8\x54\x4f\x80\xb0\x19\x80\x95\x4b\x72\x62\xe0\xf5\x4a\x42\x80\x60\x1d\x45\x71\xbe\xe8\x27\x81\x3a\x52\xa2\xb5\xc9\x22\x85\xc2\x50\xe3\x64\xe5\xdf\x0b\x36\xfc\xe1\x07\x7c\x87\xfc\x40\xbf\x19\x8e\xe6\x06\x87\x63\xe9\x57\x40\xa0\x7d\xe4\x2c\x1b\xe0\x4e\x82\x0e\xd2\x24\x4f\xe1\xb7\xa2\x12\xc9\xc9\x8e\x8b\x63\x0f\x92\x67\x23\x22\x1c\xfb\x05\x61\x90\xb6\x92\x0d\x94\x6d\x7e\x61\xcb\xe6\xe7\x36\x96\x8e\xf7\x4c\x59\xb2\x67\xda\x96\x17\xb6\x94\xfd\x13\xe3\xcb\x16\x4c\x6c\x9e\x5f\x12\x8b\x18\x57\x32\xbf\x79\xe2\x82\x32\x3d\x92\xd5\x1b\xbf\x3d\x3e\xbf\xef\xf8\xd9\x8d\x8f\x4f\xbd\x6d\xcf\x9a\x96\xec\xbe\xe3\xdf\x6d\x24\x13\x6f\x5d\xdf\xd8\xb8\xe1\xf0\xc4\x27\x26\x1e\xde\xd8\xd4\xb4\xe1\xd6\x89\xb2\xde\x3b\x0a\xc0\xb6\x4a\xf4\xd5\x8b\x3e\x2d\x50\x0e\x09\xd0\x0b\xbe\x47\xc0\xa1\x01\xd0\xc7\xaa\xc7\x41\x38\x84\x99\xd4\x0a\x55\xb4\x03\x45\x05\xe1\x37\x45\xf6\x80\xff\x65\xb7\xe0\x1f\xce\xe1\x57\x0b\x1e\xdb\xe6\xf5\x6e\x7b\x6c\xc1\x4f\x3f\x15\x75\x56\x24\x26\x56\x74\x16\xfd\x44\xd2\x7d\x6f\x70\x83\x58\xb2\xec\xe8\xbc\xde\xdb\x96\x16\xe3\x73\xd6\xb2\xe9\xb9\x9e\xce\x4a\x1b\x02\x81\x96\x11\x8e\xdd\xc3\x9d\x84\xf1\xe0\x84\x14\xde\x2e\x79\xd3\x75\x4a\x05\x81\xea\xdf\x23\x59\x4a\x80\x64\x4a\x9d\xd2\x2a\x83\x15\xbb\xab\x98\x93\x94\x88\x3d\x80\xf0\x47\x3d\x43\xb6\x3a\x2e\xcb\x9b\xf5\x9f\x83\xc2\xe7\xc6\x4a\xdb\xd6\x17\x36\xf1\x88\xf1\xf9\x53\x97\xee\x6b\xdd\xf6\xd2\x96\x32\xfc\x5e\x5f\xb6\x68\xca\x94\x05\x7c\x6c\x2c\xbf\x60\xca\xd4\x81\x32\x3d\xe9\xaf\xbb\x66\xdb\xb2\xf4\xbf\xef\xf9\x59\x15\xbc\xf0\xf8\x97\x2b\x1f\x9f\x76\xf4\xda\xcb\xdb\xb3\xfb\x1f\xfb\x7e\x33\x99\x72\xc7\xa6\xe6\xe6\xcd\x77\x4c\x7e\xa2\xee\xa6\x8d\x13\x27\x6e\xb8\xb9\x4e\xa4\xe1\x0d\x00\x6c\x2f\x37\x08\x91\x90\x20\xd2\x70\x9c\x1c\x99\x09\xe8\x58\xbf\xfb\x32\xca\xa6\x49\xa6\x14\x93\x5f\x77\x5b\xc6\x10\x11\xb5\x26\xbc\x40\x47\xb2\xf6\xc7\x73\xf8\xea\xc0\x93\x3b\xea\xed\x55\xdd\x05\x98\x33\x02\xbe\x9f\x3e\x2c\x9c\x55\x9b\x64\xab\xee\x2d\xf9\x80\xe4\xf9\x5e\xe2\x06\xd1\xbd\xe0\xb6\xfe\xba\x55\xdd\x75\x71\xbe\x9b\x43\xc9\x2f\xe6\x92\xf6\x82\xa2\x0e\xde\x24\xd7\x61\xcd\x1e\xf9\x96\x5d\xce\x9d\x84\x12\x70\xf2\x99\x97\xe6\x55\x08\x09\xc4\xbf\x2f\x04\x0d\x0a\xf3\x73\x5d\x19\x69\x89\x51\xe9\x0a\x09\x74\x8f\x66\x54\x2e\x32\xbe\x17\xd2\x29\x16\x73\x3a\xb3\x3b\x65\xd6\xa4\x57\x3a\x1a\x17\xf0\x53\x8f\x6e\x6e\x6e\xbe\xe2\xe1\xee\x79\x8f\x5c\xd9\x84\xe7\x38\x6b\x79\x67\x49\xee\xf4\x72\x5b\xce\xe4\x05\x05\xed\x77\xac\xab\x9b\xb8\xe3\x44\x4f\xf9\x96\x55\x73\x27\xa4\xe2\x3f\xb9\xcc\xa6\xf9\xa5\xb9\x1d\x55\x49\xb8\x22\xa7\xb1\x30\x4d\x13\x5b\x37\x7f\x77\x47\xc7\xb5\x73\xf3\x4a\x97\x1d\xe9\x71\xb7\x97\x25\xc6\xe7\xd6\x67\x3a\xbd\x79\xc9\x6a\x7d\xe3\xc2\xbd\x1d\x5d\xfb\x67\x39\xe3\x72\x26\xcc\x5e\xeb\x2d\xeb\x2e\x35\xc5\x39\xbd\x80\x90\x0d\xc0\x6e\x96\xb0\x9b\x9e\x8f\x11\xb5\xf5\x05\x23\x29\x1b\x32\xbf\x4b\x23\x87\x51\xd9\xcd\x42\xe9\x90\x50\xc1\x2e\x63\xdf\x9c\x8f\x66\xdf\x9c\x92\xfd\xf8\x4d\x23\x67\x59\x1d\x37\x08\xb1\xa2\xfe\x67\x94\x48\xdc\xee\xa7\x4d\xa5\xc8\xf2\x10\x0b\xb1\x56\xad\x95\x13\x29\x12\xd0\xac\x1a\xa7\xc6\x2f\x90\x1a\x56\x43\xb0\x6a\xdd\x43\x0b\xfb\x06\xd7\x55\x21\x39\x4b\xd0\x58\xd8\x5a\x50\x38\xbd\xd8\x88\x84\x1b\x1c\xce\x1a\x78\x6c\x4b\x4d\xcd\xe6\xc7\x16\xd1\xd7\x86\xb3\xca\x07\x9a\xd3\xd2\x9a\x07\xca\xe9\x6b\x80\x90\x05\xc0\x6e\x90\xe2\x07\x5a\x3e\x52\x9c\xfb\x98\x69\xcb\x51\x03\x93\x08\x31\xc9\x2c\xcc\x40\x85\x50\xfc\x85\x50\x82\x0a\x5c\xc0\xca\x7f\x11\xc1\x01\x20\x64\x02\xb0\x7b\x24\x3d\x6d\xe4\xc7\x07\x73\x04\x01\xeb\x18\x95\x54\x21\x91\x79\x2c\x52\x1d\xa9\x56\x4b\x86\x5c\xe3\xa4\x16\x2a\x65\xed\x34\x4e\xda\x33\xf7\xe3\xc7\xbf\x3c\x78\xe0\x8b\xc7\x3f\x9e\x7b\xed\x13\xf8\x2f\xfa\xc7\x5f\x9a\xe8\x4b\xc3\x79\xdc\xe0\x70\x1d\x3d\x21\xd3\x24\x0f\x80\xdd\x27\xd9\xb0\x04\x3e\x3e\x48\x41\xa9\x78\x73\x8a\x63\xef\x1d\x19\x29\x27\x32\x25\xe5\x2f\xff\x4f\x06\x30\x06\xf5\x42\x17\xde\x25\x7c\x25\x7c\x2c\x7c\x2c\x7c\x8e\x77\x09\xdd\x18\x4b\xf7\x12\x83\x2f\xdd\x67\x26\x76\xdf\xbb\xe4\x1f\xe4\x0d\xf9\x37\xd2\x00\xd8\x11\x6e\x10\x54\x10\xcf\xc7\x2a\xa8\x34\xff\xb1\x64\x88\x8c\x1c\x25\x03\xb5\x50\x34\x91\xb9\x98\x81\xa1\x42\x3e\x39\x4d\x84\x22\x0c\x25\xff\x21\x8f\x0e\xb7\xfb\xfe\x45\xd4\xf4\xa0\x74\xbf\x59\x00\xac\x43\xd2\xd9\xc9\xbc\x2d\x08\x09\x65\x52\x54\x0e\xfc\x56\x57\x36\x35\xad\x7e\x12\x47\xca\x9c\x21\xda\x1a\xbb\xe8\xf1\xea\x70\x3d\xf9\x68\x58\x89\xe4\x25\x5f\x31\xfd\x10\x4f\x9e\xbc\x95\xd5\x9c\xba\x45\x8a\xaf\xdf\x28\x3c\x49\x2b\x15\x57\xfb\xbd\x67\x0a\x52\x1a\x15\x90\x10\x29\x4e\x2e\x22\x27\x1c\xe3\x3d\x5b\xd4\x4e\x09\x30\x55\x3e\xf7\x9c\x30\x05\xef\xe1\xfe\xfa\xf3\xd1\x3f\x2a\x5f\x0f\xc4\xb7\xb9\xd1\xf8\x36\x02\x2e\x11\x0d\x38\xf8\xe3\xdb\x1a\x27\x5a\x4e\xbf\x4f\x4a\x3f\xe0\x06\x7f\x7e\x53\xfa\xdd\x6b\x84\x27\x69\xe1\xe8\xef\x02\x50\x02\xb4\x0b\x08\x22\x99\x22\x2a\xc4\x56\x40\x82\x63\xbc\x76\xb5\xc9\xe5\x54\x5b\xf0\x1a\xbc\x57\x98\xfc\xfc\xf3\x8a\xab\xff\x93\xf9\x47\x85\x14\xc3\xff\x80\xdc\xc3\x88\x44\x67\x3d\x1f\xa3\x44\xd9\x9a\x8f\x09\xaf\xcb\x56\x17\x25\x8f\x86\xda\x95\x78\xd7\x9f\xb1\xe4\x2e\x2c\x7e\xf5\xe1\xa8\x28\x72\x0f\xe5\x86\xcf\xe3\x2b\x93\x27\x4b\xb1\xc8\x0a\x96\x2a\x79\x34\xbf\x9b\x27\xe0\x44\x21\x4b\x1d\xbe\x8c\x5e\xf7\xc4\x13\xd2\x1a\x6e\x60\xc7\x69\x1b\x77\x0a\x28\xa4\x79\x07\xd3\xc7\xe6\x97\x0a\x7f\x2f\xbf\x24\x27\x1c\x44\xdf\xaa\xed\x29\xc1\x87\x6a\x76\x1c\xd5\x92\x8d\xda\x36\x72\x96\x95\xb1\x06\x29\xff\xf7\x07\xef\x60\x64\x53\x0b\x1f\x9c\x89\x0a\x25\x45\x50\x90\x3a\x7d\xe0\x0b\xa7\x20\xa2\x87\x2d\x9e\x4e\x02\x4a\x90\x50\x1c\x00\x04\xa5\x02\x95\x3d\x40\x88\x14\x6d\xae\xf6\x06\xa1\x42\x01\xed\x2a\x8e\xf8\xfd\x93\xd4\xdf\x1f\xaa\x42\x8e\x2b\xf2\x5f\x20\xab\x84\x56\x3e\x3a\xd5\x01\xe0\xcc\x72\x78\x52\x3d\x90\x02\xc9\x89\x51\x16\x9b\x3d\x58\x15\xeb\x30\xd9\x6c\xf6\x40\xd8\x29\xd1\xe9\xfc\x55\xf4\x5a\x1d\x15\xad\xd3\x4a\xc1\x29\x97\xc5\xac\x90\x12\x84\x13\x82\xc3\xb8\xd8\x92\x09\xad\xce\xa9\x3b\x7b\x72\x91\x7e\xff\xc0\xd2\xcb\x32\x6b\x32\x63\x86\x0a\x16\xdf\x7e\x59\xe7\x6d\x2b\x2b\xb4\x51\xbe\x33\xe9\xcd\xa5\x19\xe1\xd7\xef\xdd\x19\x9d\x56\x19\x95\x9b\x10\x97\x66\x8e\xca\x9a\xb6\xbc\xf2\xfe\x47\xab\xa7\xce\xd6\x25\xe5\x26\x94\xac\x98\x91\x97\x31\x63\xe7\x0c\xc1\x50\xbd\xcc\xa1\xbe\x4f\x67\xcd\x8c\xfd\x53\xc7\x34\x93\x27\x39\x46\xa4\xdb\x2d\x23\x67\xd9\x44\x05\x80\x16\xec\x70\xab\x77\x30\xb6\xa9\x85\x1f\x17\x86\x8c\x26\x18\x08\xc7\x54\x08\x1c\xad\xd3\x5f\x74\x04\x39\x2a\x52\x50\x1c\xa8\x07\x42\x8a\x45\xdc\x2e\xd9\x07\x29\x28\x01\xed\x22\x04\x12\x89\x26\x67\x0c\x13\x2e\x1d\x82\x58\xe4\x0d\xf8\xb4\x12\x6d\x13\xc6\x9c\x94\x19\xf7\xe2\x11\xad\xad\x7c\x90\x35\xd9\xa2\xd6\x24\x4a\xe6\x50\x32\x2b\x36\xbb\x52\x84\x96\xfe\x90\xb5\x9c\xc8\x57\x28\xd5\xfe\x90\x35\x9b\xe8\xee\xbb\x65\x4e\xcf\x9e\x9c\x90\x77\x87\x9c\x3b\x3a\xe6\x1e\xec\x73\x0f\xc5\x7a\x3a\xab\xa6\xf4\x8d\x1f\xbf\x60\x6a\x45\x47\x7e\x1c\x51\xaf\x7c\x79\xef\xc4\xaa\xb2\xa5\x0a\xf0\xbd\x59\xc0\x37\xef\xfd\xd3\xea\x9a\x8d\xdd\x9e\x86\x12\xa1\xb4\xa4\xc9\xdd\xb9\xb1\x4e\xd6\x41\x1b\x46\xce\xb0\x7c\xd6\x00\x0e\x98\x1f\xf0\x67\x19\x87\x1c\x93\xf8\x80\x43\xe8\x0f\x98\xc6\x6a\x29\xec\x18\x08\x51\xeb\xff\x97\x71\x35\xa4\xbe\x95\xd7\x20\x98\x8d\xf1\x7a\x9d\x36\x34\x58\xc1\x81\x03\x1d\x4a\x7f\x74\xd2\xee\x8c\xbe\x00\xf5\x24\xe6\x50\x5a\x72\xc7\x40\x16\xb2\x34\x75\x12\x6f\xc5\x4f\xb1\x76\xed\x6d\x6d\x6b\x9f\x58\x57\x52\xb2\xee\x89\xcb\xbb\x8f\xae\x2a\xc7\x4f\xd1\x54\x3c\x39\xdb\x3b\xab\x30\x36\xb6\x70\xd6\xdd\xf1\xd9\x15\x49\x0d\x57\xf6\x16\x4e\xbd\xf6\x85\x85\x89\x0b\x4f\xed\x9f\x56\xd8\x77\x5d\x6b\x6a\x43\xbe\xb9\xa8\x67\x5d\x69\x62\xd9\xba\x9e\x22\x91\x07\xd6\x8c\x9c\x65\x69\x7e\x1e\xd8\xc1\x8f\x53\x21\x07\x09\x06\xc2\xb8\x30\x7f\xd6\x5c\xde\x6b\xc4\xe2\xd1\x7d\xa9\x16\xb7\xf4\x42\xba\x3c\xb0\xd7\x97\x0c\x21\xa4\x68\x74\xeb\x2b\xa9\xb4\xd7\x17\x4e\x8e\x66\xd5\xc7\x8c\xb8\x78\xaf\xe5\xca\x85\x68\x9d\xda\xa9\xb6\xf8\xa3\x4d\x81\x8c\x8e\x5b\x6d\x93\x65\x67\x4d\xe1\xc0\xc1\x9e\xd6\x2b\x9c\xe7\xde\x0d\x75\xee\x9e\xd9\x7d\xcb\xc2\xa2\xa1\xf8\xa2\x99\x65\x13\xe7\x26\x24\xcc\x6b\x2c\x9f\x59\x34\x9e\x58\xd7\xbc\xba\xb7\xa9\xc8\x43\x92\x7e\x81\xfe\x92\xf2\x49\x7b\x5f\x5e\x5e\xbb\xa1\xd3\x5d\x5d\x88\x6f\x15\x54\xe5\x75\x6f\xaa\xf5\xe7\x22\x5a\x58\x83\x88\xcc\x80\xe7\x8b\xf4\x71\x84\x92\xd1\x08\x7b\x97\x12\xfd\x30\xb7\x5a\x06\x98\x0a\x99\xc1\x4d\x46\x04\x9b\xd5\xe8\x30\x39\x62\xa2\x23\xd5\xa1\xc1\x90\x80\x09\x2a\x55\x94\x83\x1b\xbb\x6b\x5a\xad\x49\x04\x02\x52\x20\x4c\xca\x44\x98\x5c\xe9\x94\xec\x5b\x79\xea\xea\x86\x49\x3b\x1f\xeb\x5d\xfe\xf0\xaa\x62\x5f\xa4\x22\xbb\x79\x41\x69\xfb\x0d\x99\x9b\xe2\x26\xf6\x5f\xd9\x9f\x3d\xb5\x22\x23\x18\xcf\xd3\x84\xc2\xf6\xa8\xa6\xab\x9e\x5e\x98\xbc\xf1\x2f\x7b\x1b\x1a\x77\x9f\x5c\x36\xbb\xa4\xaf\x31\xad\xa6\x64\xb5\xbd\xd6\x63\xa1\x87\x13\x2b\x7b\x4a\x22\x33\x5b\xab\x52\x00\xe1\x0a\x00\xb6\x52\x91\x06\xb1\xe0\xe6\x73\xc2\x90\x92\x70\x44\x2a\x95\x8a\x50\x24\xb4\x87\x93\x4a\x8f\x18\x22\x96\x78\x95\x28\x45\xf5\x64\xd8\xa2\xd6\x58\xad\x6a\xb5\x4a\xf4\x5c\x45\x00\xe4\xf2\xd3\x5b\x29\xe7\x33\xb5\xa2\xa7\x85\xf7\x08\x1f\xa2\xa5\x64\xc5\x9d\xf3\x2a\xd7\x56\x68\xed\x73\x4b\x37\xae\xc0\xbd\x42\x3f\xbd\xe2\xc1\xf2\x79\x87\x17\x78\xb4\xe1\x4f\x85\xa8\x57\x2f\x2a\x7f\x70\x78\x25\x10\xb8\x5c\x98\xca\x5c\xac\x01\xec\xe0\x81\x6b\x65\xb6\xd1\xa9\x50\x01\x59\x99\x84\x53\x24\x20\xe3\xa2\x91\x32\x2d\x12\x2a\xc5\x3f\x55\xa8\xc0\xdf\x38\xe3\xd7\x2d\x46\x10\x35\xaa\xa8\x4c\x24\xbd\x22\xa7\x01\xc5\x0d\x90\xa4\xa7\x54\x94\xb2\x44\x10\x57\x04\x7e\xcd\xfb\x3b\xc3\x5a\xf9\x60\x6b\xb2\xdd\x6e\xd5\x48\xd1\x84\x00\x4b\xb9\x9d\xea\x40\xa2\xcb\xed\xd7\x1a\xae\xdf\xe1\xb0\xcb\x8b\x16\x1f\x9e\xd5\xb5\xcb\x19\xfc\x6e\xcd\xc6\x87\xfb\x52\x17\x0e\xf4\x26\x2e\x2e\xba\xda\x5b\xd8\x5d\x61\x75\x5e\xd9\xde\x73\x68\x71\xd1\x39\x43\x71\x57\xd9\xa4\xb9\x09\xc6\xb9\x4d\x65\x5d\x25\x09\x32\xc7\x95\x15\xf7\x9d\xff\x6c\xc1\x5d\x4b\x8b\x34\x8e\xca\xac\xdd\x35\xc5\xe6\xb2\xae\x92\xda\xbc\xc2\x00\xff\x55\xe6\xe3\x3f\x3c\x15\x12\xff\x21\xdc\x24\xfa\x93\x0a\x00\x1d\x4c\xe0\x83\x01\x09\x68\x10\x09\xa9\x93\xa5\x2a\x1a\x18\x2b\x1e\x85\x9c\xd5\x01\x0f\x41\x2f\x79\xc8\x17\x84\x51\xae\x2d\x2b\xc2\xfa\xd6\x47\xd4\x1a\xab\xd6\x2c\x01\x3b\xbf\x82\x54\x5b\xd4\x01\x15\x29\x7a\xa3\x3b\xf2\x0e\xf7\x4c\xbe\x7a\x56\xde\x50\x82\x67\x62\x4e\xc3\x4a\xdb\xd0\x10\xbd\xad\xa9\x2d\x7b\xde\xed\x4b\x7c\xb3\xc9\x81\xe2\xd6\xfc\xf8\x52\xf7\xf0\x77\x0a\xd9\xf7\x7b\x0d\x80\x35\x73\x6f\x42\x10\x68\x21\x8d\x4f\x09\x14\x19\x5d\xc8\x21\x97\x48\x33\x0a\x04\x9d\x12\x2d\x52\xec\x42\xa2\xf5\x68\xe4\x62\x6c\x00\xfe\x35\x52\x8a\xa5\xc3\xeb\xb0\x49\x18\xc4\xc2\x9a\xd2\xb2\xda\xda\xb2\xd2\x1a\x96\x3f\x7c\xd5\xa9\x53\xe4\x3e\xfc\x28\xaf\xb6\x36\x2f\xaf\xb6\x56\xfe\xed\xf7\x05\x2f\x9d\xc3\xbd\x09\x3a\xb0\x80\x8b\xcf\x0e\x41\x42\x83\x25\xca\x04\x76\x5a\x76\xf9\xe4\x59\x04\xdc\xc0\x5a\xac\x4f\xb4\x68\x2b\xad\x81\xc8\x97\xdf\x60\xb8\x65\x40\xee\xba\x78\x36\x98\x41\x52\x0a\x17\xdd\x3e\xcf\xd9\x99\x19\x1e\x9e\x91\x95\x16\x9a\xd6\x58\x60\x12\x5e\xc4\xc4\x0b\x33\x3b\x7f\xfc\xb2\x03\xf3\x72\x94\xc1\xcf\x51\x8e\x62\xb4\x73\x4a\x09\xdd\x72\x61\x9a\x08\x37\x03\xb0\x5d\x0a\x80\x50\xa8\x7c\x44\x0a\x87\x48\x15\x06\xe2\xc6\xa9\x65\x75\x48\x48\x49\x20\x32\xa2\xe7\x75\x12\x98\x91\xbe\x5e\x74\xa6\xf5\xc4\x6f\x47\x4d\xc2\x36\x0d\x0d\xcd\xc6\x62\x34\x0a\x1d\xf8\xa9\xf0\x16\xbe\x7b\xb9\x70\x44\x01\xc3\x2b\x16\xe1\x44\xa1\xd8\x77\x05\x20\xbc\x08\xc0\xda\x14\x00\x41\x50\x72\x81\x5f\x24\x92\x14\x5f\xb4\x31\x7a\x3e\x0a\x00\x18\x02\xeb\x1a\x7b\xb8\xf5\x91\xd1\x78\xde\x85\xfd\x7a\x91\xd4\x62\xdd\xf0\x02\x6c\x11\xee\x54\xc0\x2f\xa7\x4e\x9d\x62\x4b\x24\x7b\x38\x19\x80\x2d\x63\x0d\x90\x08\x8b\x64\x21\x0d\x55\x22\xa1\x60\x8a\x21\x84\x8a\x18\x4b\xfa\xaa\xf4\x7f\xf5\xcb\x71\xb4\x1c\x25\x55\x29\x91\x8a\x9c\xaa\x60\xc4\x3f\x9d\x38\x15\x2a\x95\x25\x5e\xf9\xb4\x2c\xe7\x81\x93\xad\x52\xd5\x48\x22\x24\x6a\x2c\x1a\x8b\x36\xd1\x12\xa4\xd2\x3b\x50\x27\x32\x73\xb4\x6e\x0c\x4b\xdb\xfc\x1c\x3d\xfa\x01\xad\x0a\x63\x5f\x7d\x65\xbb\xce\x38\xab\xda\xd5\x5a\x62\xf9\x87\xdb\x91\x9c\x19\xf2\xae\x33\x35\x25\x33\xec\x1f\x2c\x7f\x71\x49\xb5\x3b\x3f\xa7\xc8\x52\xbf\x7c\xd2\xf0\x37\x34\xa6\x34\xcb\x6e\x1c\x7e\x92\xc6\x94\x38\x13\x13\x86\x1f\x63\xf9\xb2\xcd\x17\x65\x91\x67\x0d\xa0\x83\x59\xf2\x02\x44\x8e\x83\x28\x89\xed\xf4\xd2\x17\x26\x7f\xf1\xaf\x4f\x23\x49\xa1\x14\x64\x1a\x23\x9b\x3a\x0e\x19\x2b\xf9\xb5\xd4\xb6\xf2\x61\x20\xca\xb9\x4e\x63\xd5\x5a\xa4\x08\x94\xee\xb7\x64\x14\x97\x8c\x2b\x38\xda\x3b\xe9\xca\x1e\xb7\x24\xa3\x8d\xcb\x12\xcf\xb1\xfc\xeb\x9a\x5b\x33\x7b\x6f\x5d\xec\x9b\x4e\x0e\x95\xb7\xe5\xea\xaa\x0a\x87\xff\x23\x4d\x9a\xc0\xc2\x91\x33\x6c\x3a\x6b\x90\x6a\x06\x8b\x03\xe5\x2d\xfe\x58\x48\xf5\xa8\x60\x54\xa2\x54\xde\xf2\xab\xe3\x35\x58\xdf\x7a\x22\x39\x59\x2e\x6f\xf9\x5f\xaa\x05\x17\x56\x6e\x7c\x7c\xf9\x8a\x3f\x6e\xac\xa8\x90\xdf\x2b\x87\x12\x4a\x67\x55\x96\xf7\x94\x26\x24\x94\xf6\x54\x56\xcc\xe2\x13\x88\x7d\xd9\x2b\xfb\x27\x4f\xde\xff\xca\x32\xed\xf2\x57\xf6\x4d\x9e\xbc\xef\x95\xe5\x75\x9b\x7a\x3c\x9e\x9e\x4d\x75\xda\x9a\x4d\xdd\xf9\xf9\xdd\x9b\x6a\x80\xc0\xcd\x42\x27\x6b\x90\xe6\x6d\x87\x6e\x09\x64\x92\x31\xb0\x33\x80\x3b\x02\x40\xa3\xe4\x02\x2a\x14\xd1\x43\x29\x4a\x80\x42\x3a\x7e\x31\x02\x1d\x33\xe2\x37\xb1\xa3\x28\x60\xba\xdf\xc3\x8e\x0d\x79\x7d\x07\x7a\xa7\x5f\xed\x1c\xfa\x20\x38\x67\xf7\xcc\x39\x07\xfb\xf2\x86\x0c\xc5\x9d\x65\x4d\x73\x0d\x86\x39\x93\xca\x3a\x8b\xc6\x93\xc8\xe5\xaf\xec\x9b\x54\x98\x27\x00\xf7\xde\x82\xe2\xf2\xa6\x3d\x7f\x5a\x53\xbb\xb1\x2b\xaf\xc2\x23\xc4\xe7\x55\xe5\x8b\x0a\x5d\xda\x93\xcb\x85\x4e\x96\xe6\x5f\xdb\x6a\x3f\xae\x1e\x03\xac\x28\x93\x70\xb5\x0a\x39\x1c\x73\x64\x14\x57\x07\x80\x74\xf5\x05\x74\xe4\x0d\x98\xbd\x04\xd9\xec\x8d\x45\x62\x17\x8d\xf8\x4d\x0c\xe5\x76\xaa\x2d\xea\xdf\xb3\x70\xf9\x0b\x0f\xcf\xe9\xb8\x2a\x27\xf4\xad\x21\xe7\x15\x2d\xb3\x0f\x2d\x2c\x18\x1a\x2f\x2e\xb9\xd7\x68\x9c\x33\xa1\xbc\xb3\xd8\x40\x6c\x6b\x5e\xdd\xd3\x54\x5a\x38\xef\x17\x1b\x9e\xcf\xf5\x4c\xda\xf7\xf2\xf2\xda\x4d\xdd\x9e\x72\x0f\x9e\xcb\xe5\x3d\xdd\x9b\x6b\x01\x31\x0b\x80\xd5\xb2\x06\x88\x84\xb9\x72\x3e\x32\x34\x82\x23\x08\x21\x0a\x42\x50\xd2\x0d\xe2\x57\xea\xff\xda\x2a\x0f\x89\x14\xb5\x61\x3b\x95\x65\x27\xa0\xa6\xa2\x81\xd2\x12\xaf\x74\x86\xe1\x85\x13\xad\xfc\x38\x02\xe3\xc2\xc3\x42\x83\x94\x10\x49\x22\x39\x55\x94\x03\xb3\x0d\x44\xa7\x0c\x08\xbf\xb8\xa5\x74\xd3\xf8\x7c\x57\xea\x38\x73\xff\xfc\x95\xfb\x2c\x43\x1f\x87\x94\x1d\x67\x0d\x4c\x15\xa4\x38\x13\x3b\xab\xd5\x37\x9d\xe5\xdf\xd5\x22\xe5\x39\xf6\x8d\x9c\x61\xd5\xac\x01\x0a\xa0\x5b\x96\x96\xc4\xdf\x09\x7e\x55\x8f\x0d\x7e\xe9\xff\x87\x61\x52\x61\x68\x68\x7e\x5e\x8e\xf3\xf7\xc2\x64\xbf\x55\x76\x2c\xef\x8a\x04\x14\xe9\xf4\x68\x4f\xcf\x84\xce\x9b\x16\x16\x16\x2f\xb9\xbd\xb7\xef\x9e\xe5\x25\x43\xf1\x79\x93\x72\x73\x1b\x73\x62\x35\x39\xd3\x6b\x7b\x8f\x2c\x29\x2e\x5b\x7d\xcf\x65\xcb\x1f\x5e\x5d\xf2\x35\x4d\xaf\x69\x49\x5b\xb8\x14\xad\xfa\x34\xab\x71\x5c\x54\x5e\xc3\x9c\x8a\xb2\x15\x6d\xae\xdc\x19\xeb\x6a\x8c\x05\xe9\x7a\x9d\x35\x5b\xaf\x4f\x4d\x1c\x1f\x16\x99\xdb\x30\xbf\xa6\x66\xe5\xb4\xcc\x92\xde\x4d\xe5\xd9\x55\x0e\x8d\x17\x10\x36\x8f\x9c\x61\xc5\x1c\x0f\x09\xd0\xc3\x07\x8f\x43\x82\x11\x48\x25\xcc\x21\xd2\x63\xbc\x12\x15\xa0\x58\xcc\xa4\xf4\x84\x08\x1f\x25\x55\x76\x81\x10\xff\xe5\xbc\x5c\x1a\x0b\x00\x09\x90\xa0\xd6\x26\xfb\xf1\x25\x4a\x89\x22\xbf\x26\x91\xb3\xc2\xe9\xa2\x2d\x76\x99\xd4\x64\x35\xde\x20\xcc\x19\x9f\x53\x95\x92\x50\x5e\xe2\x8a\xd4\xc7\xd5\x4e\x9d\x91\xd6\xbc\xbd\xcb\x2d\xfc\x07\x55\x1c\x2f\xfc\xf2\xa0\xef\xe7\xa2\xa6\x4c\x8d\x32\x28\x84\xbb\x7d\x5c\x6c\x44\x50\xda\xcc\x6b\xe7\x92\xa8\x07\x51\x21\xe9\xeb\x23\x23\x67\x98\x9b\xe5\x83\x0e\x66\x1e\xd7\x20\xc1\x40\x7d\x5f\x24\x95\xf0\xae\xb4\x45\x6c\xd4\x25\xd5\xfd\xc6\x99\x1a\xd1\x30\x47\xfb\x0f\x32\x56\x34\xaa\xb5\x6b\x44\xe7\xf3\x02\x9a\xf2\xc7\x90\x5d\x6a\xa7\x3a\x20\x40\x4e\xb5\x85\x36\xbb\x0f\x74\x4d\xde\xd9\xe3\x1e\xd2\x65\xd6\x64\x77\x2e\x37\x9c\x7b\x67\x7f\x53\x6b\xce\xa2\x07\xd6\x90\x0d\xbe\x75\x0d\xbd\x85\xb1\x5e\x9e\xc2\xf9\x53\x01\xfb\xb9\x9c\xe5\xcb\xb1\x16\x91\x76\x72\x48\xab\x64\x34\xb2\xa7\x91\x62\x2d\x3a\xb7\x94\x3e\x76\x92\xa9\xea\x48\x54\xfc\x24\xb4\xfc\x45\x98\xfc\x13\xa6\x37\x35\xd2\xb0\xf3\xa7\x02\x76\x2a\x11\x80\xdd\xc6\xf2\x21\x12\x4c\xbc\x21\x54\x21\xe7\x3c\x18\x12\x19\x90\xc9\x09\xc0\x28\x75\x94\x46\xc2\x81\x3a\xb7\xc6\xa9\x11\xff\xa1\x16\x6a\x57\x52\x0b\x75\xe2\x5c\x65\xc8\x4d\x07\x0e\x84\x04\xcd\x7b\xe7\xcd\x97\x6f\x23\xe4\xf0\x4b\x6f\xbe\x8d\xb3\x2a\x2b\xc9\x5b\x3e\x73\x4d\x23\x79\xfb\xfc\x29\xf2\xb7\xb0\x50\x9f\x83\xe5\x03\x42\x17\x00\xbb\x8a\xe5\xff\x3a\xde\x57\xf2\x5f\xe3\x7d\x4b\x91\x60\xb0\xb0\x09\x77\x08\x3f\x09\x3f\x0a\xff\x12\xfe\x85\x3b\x84\x4d\x18\x44\x5e\xc5\x7e\xdf\x19\xdf\xfb\xb8\x46\xd8\x4a\xac\x44\x2b\xaf\xa7\x40\xf0\xb2\xbb\x59\x3e\xc4\x41\x12\x6f\x8d\x41\x42\x20\x54\x32\xb3\x0c\x03\x2b\xc2\xe9\x32\xba\x8b\xce\xb2\x58\x23\xe5\x65\xa1\xc9\x5f\x8b\xe0\xce\xf6\xb3\x96\x1b\x4d\xa4\x26\x19\x33\x31\xc8\xf7\x41\x64\xfe\x94\xe5\x8d\xa6\xf2\x38\xb3\x32\x26\x4e\xa7\xb4\xb8\x53\xf4\x8a\x6a\x21\x07\x55\x78\x6c\x13\x0d\x39\x6f\x4e\x9e\x39\xd1\x1d\xa2\x7c\x1c\x09\x26\xbb\x9c\x41\xdb\x98\x52\x9a\xc7\x55\x00\x6c\x0a\xcb\xff\xbd\x38\x61\xc9\xef\xc5\x09\x5d\x68\x72\x99\xb4\xf8\x22\xd9\x35\xec\x26\x97\xf9\x0e\xd1\x5b\x9f\x7e\xfa\x16\xf2\xde\x73\x37\x00\x62\x81\x70\x3d\x7d\x5f\x51\x04\x29\xe0\xe4\x33\x4d\x72\x2d\x18\x05\x46\x28\xeb\x01\x02\xc8\x11\xec\x91\x7a\x5f\xa7\xf9\x95\x3a\x07\x8d\x29\xc9\xea\x58\x75\x6c\x84\x42\x5c\xa6\x39\x9d\xb9\x5c\x39\x36\x8b\x2b\x3b\x57\xce\xfc\xe8\x6c\x52\x18\x40\xa1\x8c\x8e\x96\xa2\x01\x6e\xfa\x4c\x59\xdf\x94\xa2\x64\xcd\xe6\x6d\xdb\x36\xab\x6d\x05\x53\x16\x56\xe9\xcb\xea\xcc\xca\xc5\x2b\x57\x2d\x1a\x97\x5c\xe5\x16\xae\x4f\xaa\x98\x3e\x77\x81\xeb\xc8\xce\xd5\x83\x6b\xae\x3a\x92\xd3\x3f\xb7\xbd\x22\x69\x27\x16\x74\x2c\xf3\x1c\x59\xf1\x68\x66\xe6\x89\x15\x47\x3c\xcb\x3a\x0a\x44\x37\x91\x44\x0b\xbd\xe4\xc9\x0b\x71\x48\x39\xb7\x53\x1a\x88\x43\xa2\x45\xed\x24\x4f\x1e\x3d\x2a\xf4\x2a\xe5\x18\x09\x56\x0b\xd7\xd3\xaf\xa4\xb5\xb9\xf9\x9c\x20\x64\x54\xce\xbc\x51\x71\x4d\x14\x18\x88\x6b\x14\x97\x35\x0d\x00\x44\xcf\x01\xb8\xc6\x94\x64\x63\x82\x61\x7c\x94\x26\x52\x1d\xa1\x50\x69\x1d\x5c\xb4\x04\x2e\x72\xdd\x36\x9b\x84\x31\x94\xee\x6c\x03\xd3\x6a\xa3\xa2\x9d\x5a\xd1\x0b\x8d\x0a\x67\x16\xac\x76\x57\x25\x45\xf4\x2f\x5b\xd6\xaf\x34\xd7\x95\xe9\xab\x16\x4e\x29\xb0\xa9\x37\x6d\xdf\xbe\x49\x93\x5c\x34\xa5\xaf\xec\x03\x79\x29\xcb\x1e\xc9\xca\x7a\x74\xb9\xbc\x94\x9d\x49\x15\xed\x73\xfb\x73\x8e\x5c\xb5\x66\x70\xf5\x4e\x71\xc5\xd3\x2b\x92\x64\xb9\xc1\x2d\x6c\x27\x4d\x07\x0b\xa4\xf3\x0e\x0b\x10\x24\x9a\x48\x02\xb2\xb7\x1c\x98\x35\xd0\x69\x7e\x98\x44\xa1\x31\x31\xd9\x76\x51\xf2\xcd\xee\xb7\x9a\x76\xbf\x65\x0d\x00\x87\x9d\x69\xcd\x8b\xca\xd3\x9a\xbc\x75\x49\x39\x1d\xd9\x86\xdc\xe4\xd8\xc3\xa9\xcd\x03\x15\x6d\xd7\xd6\xe7\xb6\x67\x19\x72\x93\x62\xc8\x37\x75\x9b\xbb\xf2\xd4\x66\xa7\x25\x25\x23\x3e\xbd\xc8\x1c\x55\xb7\xa1\xc3\x55\x55\x9a\x96\x36\x3e\x8b\x37\x4b\x98\x01\xbf\x12\xb6\x53\xca\x1a\x81\xc2\x38\x28\x90\xa1\x80\x36\xa0\x57\xab\x47\x19\x4f\x02\x3e\x91\xd2\x62\x70\xc6\xe8\x69\x52\xdf\x7a\x22\xd1\xa2\x0e\xa4\x78\x2d\x28\xf9\x37\x2e\xc9\xd7\x21\xe4\x53\xd5\x0f\x18\xec\xad\xa8\xa8\xad\xad\xa8\xf0\x92\x9a\xe1\x12\xae\xc4\xe3\xf5\x7a\xf2\x1b\x1b\xc5\xdb\xec\x1a\x09\x61\x35\x9c\x0d\xb2\xc0\xcb\xd7\xc4\xc7\x12\x8e\x86\x87\x10\x22\x72\xfd\x25\x61\x2c\x0a\x1c\xa3\x5c\x8f\x02\x45\x15\x39\x4d\x8a\x65\xb5\x02\x01\x32\x01\x21\xc9\x66\x36\xe9\xe3\xc2\x42\x15\x1c\x64\x61\xd6\x45\x71\x2c\x7f\x57\xcd\x85\xd6\x9b\x4b\x62\x59\x9b\xfc\xb1\x2c\x4f\xf7\x56\xef\x4b\xdd\x7b\xbb\xb3\xb2\xba\xf7\x75\xbd\xd4\xbc\xb5\xd3\xf5\x1b\xd1\xac\x8a\xd5\xdd\x15\x61\x5f\x7f\x13\xd9\xbd\xeb\x58\x77\x62\xf7\xb1\xdd\xdd\x91\x9f\x7e\x14\x56\x39\x77\x7b\xe3\x25\x51\x2d\x71\x5d\x03\x00\x6c\x07\x77\x52\x44\xc5\x7c\x01\x28\x94\x4c\xa9\x60\x03\x2a\x64\xc1\x41\x84\x02\xa3\x5d\xa0\x54\xfa\x9d\x59\xb9\x3b\x0b\x02\x29\x62\x07\x38\xb4\x89\x51\x56\x75\xb4\x5a\x1d\x15\xa2\x1a\xef\x40\x5d\x94\x42\x29\x0a\xb9\xb3\x98\xba\xec\x16\x97\xd3\xfe\x2b\x6b\xae\x33\x69\x09\x51\x1a\x4c\xe4\x99\xf3\xa7\x9b\x62\x4d\x1a\xa5\xe2\xf0\x4d\xaa\x8a\x95\x77\xf4\xf4\x1e\x5a\x90\x7f\xc6\xec\xf1\x26\xa5\xd4\xba\x13\x54\x98\x47\xa6\x3f\x5e\xb6\x38\xed\xd9\x67\x15\x19\x25\x35\x09\xcf\x3c\xf5\xef\x39\x47\x16\x16\x78\xe6\xed\x6b\xcb\x6b\xcc\x8a\x36\x16\xb5\x17\xfc\xfb\x29\x09\x3f\xce\x18\xf9\x82\x6d\x67\xc9\x60\x01\x37\x74\xf3\xc6\xb8\x98\xc8\x08\x46\xd1\xa4\x1f\x17\xc4\x08\x35\xab\x14\x14\x08\xad\x8b\x55\x13\xac\xb1\x28\x09\x54\x7b\x07\xa3\xfd\xa8\x5f\xc2\xf4\x25\x63\x73\x54\x7a\x5e\x03\x08\x94\x20\xed\x19\x73\xb4\x95\x0f\xce\xc9\x4e\x49\x8a\x8e\x32\x33\x95\x56\x36\x6e\x36\xbb\xd2\x2e\x55\x86\xe6\xba\xed\x6e\xbf\xbf\xe5\xd6\x89\x5a\x26\x4a\xa1\xd4\x29\x71\x4c\x15\xad\xb8\x66\xba\xb7\x68\x7f\x73\xf3\xbe\xe2\x59\x57\xf7\x59\x6c\x0e\xdb\xd2\xab\x17\x17\xee\x9c\x30\xe1\xaa\xc2\xa5\xbb\x56\xda\x92\xad\xe6\x81\x5d\xbe\xd2\xcc\xc9\x8b\x4a\xf9\x45\x93\x33\x33\x27\x2f\xe2\x4b\x17\x4d\xce\x6c\xc8\xcc\xce\x4e\xef\xbd\xa6\xbf\x70\x57\xc3\xa4\xfd\xc5\x2b\xae\x59\x96\x92\x96\x9e\xb2\x62\xcf\x9a\xe2\xbd\xcd\x0d\x3b\x0b\x17\xed\x21\xba\x9a\xb5\x33\x5c\xae\x19\x6b\x6b\x6a\x2e\x6f\x77\xb9\xda\x2f\x97\xf6\x31\x16\x80\x3d\xc1\x0d\x42\xb4\xa8\x3f\x83\x10\x55\x48\x28\x92\x6e\x25\x52\x05\x32\x8e\xb2\xae\x60\xf4\x57\x37\x17\x71\xf5\xd1\xda\x28\x4d\xa0\x51\x4d\x2d\x6d\x1e\x9a\xd0\xa4\x95\xfe\x93\x13\x7d\xe2\x7f\x68\x22\xf3\xb1\x02\xc3\x84\xc5\x18\x2d\xdc\x84\xb3\x85\x9b\xce\x09\x37\x62\xaf\x70\x23\x26\x08\x8b\x30\x8c\xa6\x93\x4d\xbe\xdc\x7d\xbb\xf7\x0a\x7f\xc1\xec\xbd\xbb\xf7\x91\x57\x44\xf9\x3c\x27\x7c\x4f\xde\x90\x74\xa3\x12\x12\x79\x93\xe8\x4e\x07\x64\x50\xca\x21\x91\x7a\x00\xa5\x82\x63\x40\x81\xaa\x39\x95\xd6\x81\x6a\xa7\x5a\x0a\xb9\x9c\xfb\xf4\xd3\x4f\x85\xef\xa9\x7e\xf8\x0b\xfa\x12\xf9\xb7\xb8\xbf\x93\x85\x44\xb6\x95\x3b\x09\x5e\xe8\x82\xcb\xf8\xa0\xb6\xc6\x14\xca\x90\xa1\xdf\xeb\x49\xbc\x20\x79\x84\x43\x32\x1a\x40\xae\x18\xdd\xd7\x5a\x71\x5f\x4d\x97\x0e\x23\xe2\xad\x67\x8e\x8e\xe6\x44\x34\x5a\x5c\x98\xe7\x76\x66\x25\x46\xa7\x48\x68\x54\xb6\x1a\xfe\xe4\xac\xcb\x3d\x66\x4b\x25\x90\x9a\x3b\xb6\x81\xe9\x12\xa8\x6a\xb5\xd9\xec\x0a\x29\x2d\xa1\x8b\x16\x1d\x71\xf1\x22\xb6\xb5\xb5\xb9\xb4\xb2\x7a\xcb\xe3\x8b\xcb\x36\xad\xe8\xf5\xa6\x0c\xb9\x26\xcf\x73\xf1\xdd\xe5\x96\x04\xef\xe5\x33\x16\xde\xbf\x8a\x6f\x69\x2e\xad\xa8\xde\xf2\xc7\x25\xcb\xff\xb8\xb9\x6a\xc8\x52\x3e\xab\xb4\x72\x56\x69\x82\xbe\xe6\xf2\xae\x45\x83\x2b\x4b\x7c\xaf\x39\x1a\x13\x3d\xb9\xe2\x57\x47\xa3\xc5\x53\x68\xf4\xae\xc5\x17\x3a\xae\x4c\xc9\xbe\xa2\xa7\x75\xc7\xcc\xac\xc8\xe4\xd2\x99\x6b\x9b\x49\x45\x5b\x6e\x74\x5c\x46\xa9\x2d\xa9\xc0\x99\x11\x6f\xa8\xea\xd9\x3a\x63\xfa\x0e\x47\xf6\x15\xb3\xa6\xec\xe8\x76\xe5\x2d\x38\x34\x37\x6b\x6a\xa9\x75\x7c\x56\xa9\x35\xb5\x28\x3b\x2d\xce\x50\xd3\xbd\x75\x63\x48\x6c\x98\x76\x5a\x7e\x1a\x9f\x93\x11\x1f\x1a\x13\xa6\x9b\xea\x49\x2e\xc9\xcd\x96\x75\xac\x9a\x7d\x44\xdf\xe4\x5e\x85\x10\xd1\x0b\xe7\xa3\xa4\xfe\xcb\x76\x51\xfc\x2b\xb0\x3e\x31\x31\xd1\x2c\xe9\xcf\x31\x11\x22\xeb\xd8\x68\x91\xba\xbc\xa0\xa0\x5c\x7c\xe1\x8b\x65\xf2\xa7\x32\x6e\x6a\x76\x45\x45\x76\x76\x79\x79\x56\x76\x79\x79\x76\x76\x45\x05\x50\x68\x1b\x39\xcb\x36\xb1\x06\x49\x76\xbd\xd0\xc0\x7b\x03\xe5\x6d\xc1\x81\xf2\xb6\x80\x38\x32\x00\x05\x83\x1e\x50\x2a\x55\xed\xa0\x52\x55\x7b\x41\xa1\x08\x6a\x87\xa0\xa0\xca\xa0\x7a\x80\x9a\xaa\xe2\x42\x51\x46\xc1\x02\x96\x64\x73\x64\xb2\x39\x44\x84\x03\x51\x8a\x31\x89\x81\x68\xad\xc5\x9f\x45\xf2\xd7\xbc\xb9\xac\x97\x48\xa9\xf2\x92\x76\x1b\x3a\x73\xfb\xd2\xc2\xae\x8a\xc4\xc4\x8a\xae\xc2\x65\xdb\x97\x55\x94\x27\xba\x13\x35\x9a\x44\x77\x62\x79\xb9\xef\x4f\x95\x2b\x0f\x4f\x6f\x3f\xb4\xb2\xb2\x72\xe5\xa1\xf6\xe9\x87\x57\x56\xb6\x4f\xde\xf3\x5c\x7f\xff\xb3\xd7\x4c\x9e\x7c\xcd\xb3\xfd\xfd\xcf\xed\x99\x8c\x8f\xaf\x58\x9a\x52\x7f\x59\x69\x1b\x3f\x7f\x82\x63\xc5\xf2\x9a\x92\xf8\xec\xca\xe4\xf6\x94\xca\xac\xf8\xc2\xba\x59\x3d\xf7\xae\xaf\xa9\x59\x7f\x6f\x4f\xcf\xdd\xeb\xaa\xab\xd7\xdd\xdd\xb3\xfc\xcf\x7f\x98\x3a\xf5\x0f\x7f\x5e\xbe\xe2\xcf\xd7\x4f\x9d\x7a\xfd\x9f\x25\xfa\x47\x91\x87\xe8\x31\xee\x24\xd8\xc0\x05\xc7\xbd\x83\x16\xd1\x2f\x8e\xd1\x11\x24\xa9\xc8\x29\x48\x20\xdf\x34\xe6\x08\x93\xf3\x4d\xa2\x7a\x4b\x50\x21\xa7\x64\x04\x38\x98\x19\xb0\x7b\x52\x8f\x88\x1c\x9d\x97\x2a\x61\xc5\xfb\x8d\x07\x04\x05\x87\x8a\x9e\xdf\x18\x2e\xc5\x8d\x95\xc8\x38\xe0\x18\x0c\x8c\x19\x08\x97\x0c\x6b\x6d\xe5\xb5\x49\x76\x80\x8c\x34\xbb\x2b\xc9\x05\x36\xb0\xd9\x2d\x36\x5b\x90\xc8\x1d\x17\x92\x78\xb9\xfe\x24\x9e\x42\x6b\x1f\x9b\xc3\x0b\xa4\xf0\xa4\xa2\x7a\x0a\xe3\x14\xe1\xc9\xee\xaa\x94\xc2\x19\x25\xa6\xa3\xb7\x5d\xe9\x29\x28\xad\xbd\x2f\x75\xe2\xe2\xea\xb2\xf9\xf5\x29\xa1\xe1\xc2\xf6\x38\x77\x96\x35\xe8\x0a\x7b\x7e\x52\x94\x87\x3c\xeb\x70\x6a\xed\x86\x48\x63\xe1\xe4\x9c\x85\x2b\x9d\xc5\xa5\xce\xcc\x70\xe7\x94\x62\xa9\x97\x52\x38\x95\xd5\x92\xba\x29\x42\x6f\x52\xcf\x8b\x34\x24\x45\xa7\xa4\xcb\xcf\xd9\x39\x09\x73\xe9\x10\xdd\x4e\xec\xb8\x74\xa4\x70\xe4\x43\x54\xe2\x52\x38\x3c\xf2\x21\x44\x1e\x03\x7c\x74\xe4\xc3\x41\xa7\xe3\x18\xfa\x3f\x48\xba\xf4\x71\x5c\x4e\x7d\xd4\x0a\x1c\x14\x7b\x07\x83\xa5\x78\xa1\xe8\x6b\xcf\xb9\x34\x75\xac\xe7\xb5\x72\x97\xd5\x25\xc7\x5b\x8f\x8f\xa6\x84\x45\x5d\x4a\x7d\x2f\xf9\xb6\xd2\x72\x5c\x8e\xec\x1e\x00\x60\x52\x1f\xe6\x06\xd6\x00\x1a\xb0\x83\x0b\x78\xd8\x7e\x3c\x1b\x95\xaa\x80\x57\x96\xa1\x40\xa6\x24\x4a\x46\x06\x80\x83\x20\x15\x17\xd4\x03\xaa\x60\x54\x32\x95\xb2\xeb\x77\x02\x56\xff\x4f\x57\xd4\x60\x7d\x2b\x1f\x95\x94\xc4\x17\xe7\xe5\x26\xb9\x92\x5c\xd1\x26\x6d\x52\x52\x52\x62\xc8\x68\xe4\xff\x82\x18\xb8\x2f\x11\x13\x4e\x6b\x51\xcb\x82\xae\xd4\x58\xec\xf6\x40\x77\x91\xa5\x65\xf2\x35\xcf\xf5\xf7\x3f\x27\x4a\x80\xfc\xde\x5e\xb9\xf2\x70\x7b\xfb\x61\x51\x46\xe4\x77\x9c\xb0\xe8\xcd\x85\x5b\xab\xca\xf6\x2e\x5d\xb6\x62\x71\x74\x8a\x51\x93\x5f\xdb\x4d\xc6\xaf\x90\x79\x7f\x85\x9f\xf7\x57\xf4\xdc\xb3\xae\xa6\x66\xdd\x3d\x3d\x3d\xf7\x88\xb2\x71\xcf\xcd\xc3\x64\x6d\x67\x57\x5e\x83\x4e\xf8\x64\x78\x76\x68\xb4\x51\xeb\x4e\x91\xf1\xb4\x92\xd3\xd0\x0f\x2f\xf4\xb9\x8d\xa6\xc3\x2f\xb4\xda\xd1\x0f\x7d\x29\xe4\x2d\x4e\x23\xf7\x9a\xf7\xd2\x41\xba\x88\x3b\x29\xd1\x3b\x81\x8f\x1f\xd3\x0e\x8c\x28\xe5\x40\x4a\xb0\x5e\xa4\x81\xac\xd7\xfe\x3b\x0d\xb0\x37\xa5\xa6\x33\xd7\xd5\x51\x9d\x9c\x5c\xdd\xe1\xca\xed\xac\x49\xd9\x11\x65\x49\x8b\x8b\x4d\x33\x6a\x34\xc6\xb4\xd8\xb8\x34\x4b\x14\x7b\xd4\xdd\x55\xeb\x70\xd4\x76\xb9\xdd\x9d\x35\xc9\xc9\x35\x9d\x6e\x7d\x9a\x49\xa3\x31\xa5\xe9\xf5\x19\x16\x8d\xc6\x92\x21\x1a\xa0\xeb\x01\x59\x2a\x3b\x0f\x21\x30\x0e\x1c\x7c\xd2\xd8\x3e\x46\x20\x4a\x8e\x88\xc0\x4b\xd1\x2a\xd7\x97\x07\x5a\xca\x55\xaa\xf8\x8b\x5a\x1a\xc5\x95\x92\x37\xb1\x55\x38\xfa\x37\xe1\x06\x9c\xf3\x37\xcc\x1e\x3e\x46\x1b\xe9\x86\x93\xc2\x6a\xdc\x76\x12\xd7\x9c\x57\x3c\x2b\xd1\x2b\x9b\xdc\x44\x8f\x72\x7f\x04\x03\x5c\x77\x5c\x6e\x77\x93\xd9\x3a\x6e\xb4\xeb\x8d\x89\x6c\x39\x23\xd0\x54\x56\x88\xa2\x9a\x08\xfd\x2f\x23\x2a\xa4\x11\xe1\xff\x97\x7b\xfc\xb7\xcb\x5b\x5b\x5b\x1f\x89\x49\x8c\xb2\xfb\xcb\x64\x5d\x28\xda\xca\xb1\xb9\xfe\x68\xb9\x37\xd8\x44\x8f\xfa\x0e\x60\x42\x71\xb6\x3b\xc7\x98\x91\x30\xee\xb1\x94\x86\x45\xd5\xbb\x0e\xe8\x73\xea\xb3\x76\xe1\x52\x72\xd3\xe5\xa8\x72\x4f\x89\x4f\xc9\xd5\x98\x1c\xb1\x22\xd5\x37\x2e\x4e\xa9\xae\xac\x49\x96\x62\xf1\xe8\x24\xbb\xe9\x6d\xdc\xe3\x90\x0d\x6b\xf8\x60\x86\x40\xe2\x50\x09\xa4\x4e\xd6\x80\xa9\xbf\x6a\xad\x53\x00\x53\xb0\x99\xa3\x0b\xf0\x82\x52\x29\xcb\x8e\xb2\x5e\xcf\xa7\xfc\x6e\x27\xde\x25\x97\x89\xe2\x15\x92\x68\x8e\x4a\x4f\x8c\xb4\x19\xa5\x1d\x0b\x74\xd7\x5d\xd4\x32\x38\x06\x62\x10\x97\x33\x2a\x5a\x1a\x64\xb3\x58\x88\x6a\x1a\x5f\x1c\x16\x9f\x9a\x90\x55\xfa\x58\x46\xd3\xfc\xc2\x8a\x45\xcd\xa9\xd5\x7c\x6d\x7d\xd6\xd4\x65\x15\x79\xfd\x53\x5d\x8f\x55\x16\xf2\x45\xb5\x65\xd3\xd8\xfc\xdc\xd4\x48\x63\xcc\xb8\x24\x8b\x6b\x92\xc7\x30\xde\x33\xc5\x9d\xdf\x12\x13\xd5\x56\x9b\x37\xb5\x20\x41\xef\x69\xe7\x6d\xb9\x79\x29\x9e\x74\x59\x5e\xae\x60\xc7\xe9\x24\xa9\x86\xc4\x16\xa8\x21\xb9\x50\x3c\xa3\xe7\x83\x44\x25\xb6\x18\x10\xe7\x8d\x16\x8f\x98\xd0\x42\x4a\x31\x52\x38\x73\x82\x3b\x25\x0c\x89\xe7\x1f\x14\x3a\x59\x01\xcb\x87\x68\x98\xc1\x87\x04\x21\xa0\x26\x5c\x72\x7f\xe4\x78\x51\x8c\x82\x23\x12\xa2\x06\x08\x34\x8b\x03\x63\xa5\xac\x5e\xcf\xc7\x07\x4e\x49\x07\xfd\x8d\x47\x35\xfe\xd3\x72\xb9\x7a\x34\x44\x47\x5a\xd4\x1a\xab\x54\xae\x3e\x36\x70\x24\x65\xb4\xed\x6a\x8b\x1a\x0f\x1b\x5c\x35\x8e\xf6\x05\xe3\x87\xde\x57\xa6\xae\x68\x58\x3d\x61\x88\xe5\xfb\xf6\xb7\x2f\x2a\xd1\x95\xe6\x53\xcd\xf9\x53\x2d\x39\x9e\x3c\xa1\x88\x7b\x4f\xf6\x69\xde\x04\xa0\x9f\x4a\xb5\x98\xa2\xb4\xfb\x7b\x6b\x0b\x03\x21\x1f\xb9\xbc\x35\xc9\xc4\x54\xd1\x0e\x93\x7a\xb4\xc1\xc9\xa4\xa6\x91\x93\x56\x3c\xba\x96\xe7\xd7\x3e\xba\x02\x2d\x44\x55\xb5\xf6\xde\xd9\xb3\xee\x5d\x5b\xfd\x4b\x93\x48\xc3\x73\xa4\x86\x2a\x69\x33\x68\xa4\xda\x1d\xd1\x1c\x4c\xf3\xdf\x19\xb0\x51\x6e\xda\xbd\x54\x75\xe0\x39\x8d\x25\xc7\x64\xca\x11\xa1\x83\xf8\x6e\xd1\x90\x57\xe3\xb3\x12\xa3\xa2\x12\xb3\xe2\xe3\x33\xc5\x77\xb9\x0f\x0e\x9f\x11\xca\x68\x0c\x10\xd0\x42\x32\x6f\x43\x11\xb8\xd7\x31\x29\x4b\x46\x89\xd4\x98\xe8\xc7\xb2\x00\xa0\x05\x6d\xb4\x3a\x8e\x53\xe9\x1c\xd6\x40\xb7\x9a\x5d\xd6\xc2\x76\x37\xd9\x15\x1a\x9f\x9b\x12\x97\x3c\x71\x55\x93\xd2\x90\x6d\xd5\x56\x37\x25\x10\x17\xa7\x4b\x2e\x72\x64\x4f\xcc\x37\x5e\x11\xac\x35\xc7\xa4\x59\xb8\x1d\x80\xb8\x85\x5c\x47\x39\xee\x2e\x50\x40\x24\x3f\xee\x42\xdf\xec\x3c\xa9\x6b\x16\x2d\x6a\xa5\xcb\xea\xa4\xdc\xa3\x2f\x63\xbf\x86\x5c\x47\x0a\xb3\xf6\xac\x90\x71\x61\x08\x79\x90\x3e\xc3\x9d\x94\x72\x28\xf1\x7c\x2c\x10\xd1\xda\xcd\x1c\x55\xa7\xb4\x3e\x90\x21\xf9\x5f\x9e\x95\x80\x21\x99\x6d\x1b\x9a\x9a\x37\xb4\x65\x66\xb6\x6e\x68\x6a\xda\xd8\x96\xf5\x80\xd6\x51\x9a\xea\xe0\x53\xb4\x5a\x47\xa9\xc3\xc1\x3b\xb4\x6c\x59\xed\x9a\xd6\xec\xec\xd6\x35\xb5\xcb\x6a\xd7\xb4\x64\x67\xb7\xac\xa9\x4d\xae\x70\xc6\xc7\x3b\x2b\x92\x97\x25\x55\x64\x8f\x1f\x9f\x5d\x91\x24\xda\xf7\xd3\xb0\x93\xc5\xd2\xbb\x89\x1d\x97\x8d\xcc\x16\xe5\x12\x97\xc1\x5f\x40\xb6\xfd\x1e\x00\xb6\x87\x7b\x18\x32\xf0\x59\x41\x20\x43\x9e\x1b\xc1\x86\xcb\xa9\x0a\xc7\xe1\x49\x2c\x07\xf0\xdc\x08\x6a\x11\x05\x90\x21\x19\x05\x0c\xaa\xe4\x5e\x32\x88\x07\x60\x47\xb9\x07\x89\x0d\x97\x3f\xab\x92\xae\xfe\x84\x7c\xeb\xb9\x11\xc7\xe1\x75\xd8\x31\x7a\x9d\x34\x5c\x04\x0f\xe4\x5b\xff\x75\x66\x00\xf6\x18\xf7\xa8\x78\x5d\xa3\x78\xdd\x49\x9c\x2f\x8e\xc6\x71\xf8\xfc\x88\x9a\x7c\x7d\xd1\x75\x14\x1f\x25\x5f\x4b\xa0\x83\xc0\x4b\xc2\x0a\x96\xc4\x78\xb0\x43\x01\xcc\x96\xb3\x94\x56\x05\x52\x0e\x39\x3a\xb6\x44\x46\x4a\xe9\xca\x72\x36\x3d\x90\xec\x30\xff\x6a\x9c\x78\x43\xd2\x39\x3a\x9c\x93\xb3\x85\x79\xb9\xe9\xa9\x63\x1b\xc2\xc2\xa9\xf4\x88\x05\x39\x36\xe3\xbc\xd0\xeb\xe7\x2e\xa6\x2e\x7a\x09\x2f\x93\x9f\x51\xa9\xcf\xcb\x32\x94\xba\xcc\x3d\x6d\xd6\xea\x5c\xf3\x39\x52\xbe\xf4\x96\xf6\xde\x83\x0b\xf3\x33\xea\x66\xa4\x19\x12\xc2\x49\x44\xb8\x21\xd3\x6c\xce\x4a\x18\x37\x2e\x21\xcb\x6c\xce\x34\x84\x93\xdd\xd5\x33\x6b\xcb\x92\xcd\x35\x13\x26\xa7\x77\x74\x46\xa5\x56\x64\xce\xd8\xd5\x99\xe9\xec\xbe\x66\x46\xd5\x9a\xbe\x4e\xc7\xf8\x8c\xac\x7c\x3b\xe6\xc4\xa5\x9b\x35\x1a\x73\x7a\x5c\x6c\xaa\x68\x41\x53\xc5\xa9\x5b\x01\xd8\xed\xdc\x20\x8c\x83\x48\x28\xe5\x8b\xd5\xa2\xfb\x56\x07\x1c\x28\x54\x9c\xa2\x2b\x08\x55\x20\xa2\xa5\xb1\x0d\x1d\x4a\xa5\xf4\x7c\x18\xa9\xf3\x3b\x22\x22\x32\x22\xf0\x14\x96\x88\x60\x55\xbc\xc3\x64\x52\x9b\xa8\x05\x47\xbb\x3b\x50\x4d\xd9\xed\xbe\xaf\x84\xe1\xcb\x7e\x26\x41\xa4\x4b\xf8\x04\x61\x04\xd0\xe5\xfb\xea\x59\x9c\x2c\xdc\xcb\x0d\x3e\x27\xcc\x7a\x4e\xc8\xc2\xb9\xa4\xd7\x77\xa3\xac\x4f\x8e\xc2\xdb\xac\x92\x6d\x85\x10\x50\x3c\x14\x44\x31\xd3\xa1\x41\x74\x23\xea\x10\x95\x88\x47\xb1\x48\x78\x7e\x1f\x16\x62\xe1\x3e\xe1\x79\x2c\xda\x27\x9c\x14\x4e\xe2\x7c\x2c\xc7\xf2\xfd\xc2\x53\x58\xb6\x5f\x78\x52\x78\x72\x3f\x96\x09\x4f\xc9\xbd\x4c\xee\x91\xc3\x6c\x0b\xf7\x1d\x24\x40\x2a\x78\xa0\x8c\x2f\x89\x45\x46\xb2\x32\x13\x2d\xf1\x5c\x20\xa9\x17\x82\x1c\xd6\xca\x1a\x9a\xd2\x62\xb9\x8a\x48\x6e\xef\xbb\x50\xf1\xe5\x70\x68\x1c\x97\x56\x7b\x69\xa4\xe0\x60\x31\x93\x73\x59\xca\xe8\x68\x1d\x17\x15\xad\x43\x39\x16\xa7\x34\xd9\x6c\x76\xf4\x77\x33\xb0\xfe\xb2\xcd\x2f\x6c\x69\xd9\x9d\xdf\x75\xf4\x50\x49\x89\x5c\x06\xdf\xbe\xbf\x70\xe2\x9d\x7b\x8b\x8b\x70\xf8\x83\x90\x30\x7c\xcc\x34\xbd\x44\x2a\x87\x27\x4e\x0c\x09\x11\xaa\x8d\xd3\x0a\xc7\xd4\xc4\x67\xa5\xde\x89\xda\xf6\xd3\x1b\xfc\x75\xf1\x39\x19\x57\xfb\xda\xbe\x58\xf7\x78\xee\x7c\x27\x39\x9f\x94\xd1\xb8\xe1\xf0\xc4\x9c\xde\x4c\x9f\xd2\xe6\xb8\x50\x1f\x7f\x2d\x00\xbb\x9c\x1b\x84\x08\x18\x0f\x39\x7c\x96\x28\xa4\x1c\x03\x4e\x74\xef\x90\x30\xec\xf1\x37\x31\xfb\xbb\x72\x00\xd4\xe3\xd5\xf1\x51\x91\x10\x01\x11\x6a\x7f\xff\xb2\x7a\x94\x1f\x2d\x6a\x8b\x5a\xa3\x1e\x45\x65\xb8\xf5\xa7\xcb\x9f\xde\x54\x5e\xbe\xe9\xe9\xcb\x7f\x3a\x77\xee\xa7\xda\x39\x65\x06\x43\xd9\x9c\x5a\x6e\x50\xf8\xaa\x74\xd9\xa1\x99\x33\x0f\x2d\x2b\x13\xfe\xc6\x0d\x0a\x76\x41\x9b\x5c\x39\x2d\x23\xa3\xb5\x52\xc6\x91\x52\x5e\x64\x85\x22\x16\xaa\x61\x80\x0f\xb6\x22\x65\x89\xa2\xcf\x59\x27\x3b\x52\xd1\x81\xca\xfd\x62\xb9\xa4\xc9\xcf\x5f\xfe\x04\x49\x14\x20\x30\x8a\xac\xe7\xa2\x73\x7c\xcc\xe8\x61\xa9\x7a\xc1\x5f\x62\x53\x23\xb9\x4a\x21\xe5\xa5\x8e\x64\xa3\xc1\x1a\xc1\x89\x86\xc7\xa2\xbe\x20\x61\x4c\x1b\x65\x60\xa3\x5d\xe5\x81\x2a\x8c\x9c\x74\x26\xee\xe6\x05\x85\xb9\xe7\xbb\xd2\x25\x07\x67\x34\xec\x98\x5b\x14\x19\x67\x8c\x8b\x74\x94\x78\x4b\x1c\x39\x5d\x3b\xa6\x26\x4d\x6d\x2c\x8d\xca\x8a\xc8\x2a\x2c\x37\xdb\xf2\xac\xf2\x71\x4d\xbc\x39\x5e\xa3\x4f\x75\xeb\x93\x2b\x73\xc6\x33\xf7\xb2\x87\x57\x97\x38\x5a\xb6\xb5\xe5\x4c\x28\xcc\xce\x76\x5b\x92\x2a\xcb\xab\x26\xcd\x2e\x69\xd9\xda\x9a\x16\xa4\x8e\x09\x7f\x36\x58\x17\x15\xa6\x4b\xf1\x98\x53\xab\xcb\xca\x9b\x67\x97\x27\x97\xe5\x39\x73\x8b\x6c\x8e\xf2\x74\x5d\x62\x4d\x7f\x9d\xc4\xb7\xa9\x23\x67\xd9\x3d\xac\x11\x3c\x50\x05\x93\x60\x36\xdf\x6d\x42\xca\xd5\xe5\x10\x95\xd2\x45\x09\xa8\x68\x1d\x30\x4a\x28\x23\x03\x41\x48\x42\x51\xa9\x22\xca\x9e\x60\xa4\x94\x6b\x57\x20\xc7\x55\x7b\xc3\x43\x88\x4a\x05\xed\x18\x26\x97\x8b\xd6\x54\x23\x4c\xf0\x56\x4f\xaa\x99\x54\xc6\x17\xe4\x67\xa6\x3b\x52\xac\x96\x84\xf1\xb1\x31\xd1\x51\xea\x71\x41\x4a\xf0\xa0\x67\x9c\x54\x26\xf6\xfb\x6e\x64\xb4\x2e\x37\x57\x27\x57\x8f\xf9\x55\x98\x54\x3f\xe6\xbc\x40\x2e\x11\x43\x04\xfc\xcb\xc5\x9d\xbb\xd2\x23\xb3\x8a\xbc\xa9\x75\x4b\x1a\x92\x3e\xf8\x7b\x5c\x96\x33\xa7\xe0\xf3\xf4\xa9\x6b\xea\xbd\xab\x52\x1c\x4b\x6a\x26\xac\x99\x9a\x2e\x24\x76\x0e\x24\xba\xd3\xed\x91\xce\x08\x57\xed\x8c\xf7\x7c\x11\x86\xd4\xf1\x36\xa7\x31\x4c\x78\x31\x26\x47\x1b\x93\x51\xe7\xd4\x97\x44\x95\x95\xc4\x65\x58\xb4\xa9\xcd\x4b\xaa\xef\x3a\xb1\xb9\xb4\xba\x84\x0f\xaa\x5e\xd2\x9c\x9a\xea\x48\x49\xc7\xdc\x59\xbb\xdb\x7e\x98\x32\x67\x51\x48\x84\x36\xe8\xce\xd0\xf8\x98\x08\x72\xdd\xaa\x84\x5c\x7b\x74\x42\x9e\xd7\xe1\xfb\x34\x26\x0a\xc3\x13\x72\x2a\xad\xb9\xd5\xa2\x2c\xe4\x8e\x9c\x61\x25\xdc\x59\xb0\x40\x01\x34\xf3\x91\xd1\x52\x4a\xce\x62\x36\x25\x18\xe2\xf5\x71\xb1\x41\x58\x23\x3b\x82\x1a\x40\x20\x14\x49\xcf\x45\x0f\xdf\xf8\xd5\x51\xa9\xeb\x2f\xc8\xed\x4a\x73\x24\x25\x89\x98\x06\xa3\x23\xb5\x63\xfb\xd8\x45\x5a\xd9\x6c\x76\xce\xee\xb6\xd9\xdd\xd1\x3a\xb7\x8e\xe6\xe4\xd8\x2f\xf4\x21\x48\xbc\x46\x17\xf4\x2c\x6c\xba\xfa\x99\x85\x8b\x9e\xd8\x56\x57\xb3\xf1\xf8\x82\xe6\xab\xdd\xd1\xf5\x4e\x61\xa4\xe1\xb3\x2a\x6f\xdd\xc1\x75\x6f\x37\x7c\x82\x11\x39\x75\x1d\xf9\x85\x33\x2b\x12\x13\xab\x7a\xcb\xf8\x39\xb5\x49\xec\xfc\x32\xe1\xd9\x53\xfc\x8e\x7f\xdc\x34\xa9\x7e\xeb\x83\xbd\x8b\x1f\xdf\x52\xeb\xce\x98\xbe\x3b\xf7\x9a\xbe\x0d\x69\x71\xcf\x26\xcd\x5d\xb5\xc0\xa7\x57\x8d\x53\x45\x27\x27\x68\x72\x5a\x96\xf0\x9e\xf9\x93\xb3\x3d\x73\xf6\xb4\x02\x85\x85\x70\x23\xeb\x66\x27\x45\xff\x4d\xd4\x83\x7c\x72\xa0\x0a\x0f\x50\x2a\xbf\xe9\x02\xc6\x71\x6c\x9a\xbf\x9b\x99\x71\x8d\x89\x89\x36\x6b\xa0\x4d\xcf\x65\xba\x80\xb3\x14\x16\xb3\x8d\x8e\x09\x3e\xb1\xee\xe1\x30\xfa\x83\x6f\x43\xa4\x39\xdb\x68\xcc\x36\x47\x56\xf1\x7c\x15\x11\xff\x91\x3e\x54\xbf\x89\xa9\x7a\xd9\xda\xe8\x73\xab\xab\x7d\xca\xdc\xda\xda\xdc\xdc\xea\x6a\x89\xbf\x17\x8e\x2c\x67\xd3\xd9\x13\xa0\x87\x24\xc8\x81\xcb\x78\x4d\xb0\x92\x30\x48\x4b\x35\x26\x30\x8e\xc5\x68\x09\x91\xaa\x2d\x22\xe4\x12\x4e\xc0\xc5\x40\x09\x5d\x12\x68\xc7\xab\x1e\xfb\xf4\x05\xfd\x7f\x1f\x21\x15\xb5\x06\xa5\x38\x22\x93\x23\xc7\x54\x1f\xc8\x0a\xdb\xbf\x6f\x76\xa5\xc5\x6d\xb3\x89\x5e\x41\x40\x7b\x6b\x4d\x39\xa2\xf6\x96\xf6\x4a\x2a\x2d\x99\xdf\x5e\x73\xcd\xdc\x8e\x9e\x8a\x8d\x8f\x2f\xef\x9e\x58\x7d\xcd\xec\xde\xbe\x21\xb3\x05\x33\x74\xee\x04\xa9\xb6\x64\x5c\xfc\x78\xe1\x6d\xbb\xab\xbc\xa7\xd4\x5f\x67\x62\xdd\xf7\xa6\xf7\xeb\xdd\x52\xa5\xc9\xf8\xbd\x7f\xae\x3d\x77\x5d\xc3\xb6\x6c\x32\x2f\x24\x2c\xbf\x7b\x53\x4d\xe5\x9a\x4c\xdf\x91\x08\x4f\xcf\xa6\xba\x40\xbd\x89\x62\x9c\x54\x93\xd1\xfb\xab\x32\x67\xb9\x26\xe1\x57\x05\xcb\xbf\x51\x73\xf2\x5b\x27\xfd\xa5\xcb\xff\xad\xe6\xe4\x77\xeb\x95\x1b\xdc\xf3\x0f\xf4\xce\xb8\x3a\x67\x68\x28\xe7\xaa\xe9\x73\x6e\x99\xef\x1e\x1a\x5f\xd4\x59\xd6\x3c\x37\xc1\x30\x77\x72\xd9\xcc\xa2\x78\x7f\xc9\x89\xc7\x37\xa2\x7c\xc0\xf7\x62\x7e\x71\xa0\xe6\xa4\xd2\x23\x24\x78\xaa\x2f\xd4\x9c\x44\x03\xb0\x3f\x71\x83\xa0\x01\x1d\xe4\xf2\x4e\x95\x82\x40\x08\x47\x30\x58\xf4\xbc\x83\x81\x92\x60\xda\x15\x84\x4a\xa5\xdc\x6c\x58\x44\xea\x2f\x79\xaa\x5b\xa8\x6a\xfc\xe8\x63\x48\xd4\x16\xb5\xc5\xe5\x94\x5b\x19\xa5\xa7\x53\xa4\x1c\x3e\xfc\x8d\xa0\x3e\x3d\x71\xe2\x69\x1c\xfa\xc6\x67\xc7\x21\x41\xcd\xee\x3d\x74\xfe\x47\xb2\xc3\xb7\x9c\x85\x1e\x42\x26\x0c\x23\xf3\x1d\x7c\x12\x02\x35\x69\x52\x0e\x55\xea\x99\xfc\xad\x3a\xc1\xff\x5e\x75\x16\xa8\x07\x04\x02\xeb\x46\xbe\x65\x0d\x52\x3c\x24\x16\x1a\xe5\x2d\x8a\x03\x86\x1c\x32\x6e\x40\x6e\x3b\x94\x36\x61\xb4\xc2\xce\x70\xc9\x49\xc9\x56\x5d\x28\xe2\x68\xe5\x83\xcc\x51\xd6\x0b\xfd\x9a\x4e\xd3\x68\x25\xa8\xec\xa9\x16\x13\x17\x56\xbd\xf4\x12\xe1\x5f\x4a\x9e\xb2\x71\x5a\xcd\xea\xd6\xac\x97\x6a\x0a\x93\xdd\xa6\x30\x6e\xf0\xfc\xde\xa6\xf5\x2d\xe9\xc9\x93\x37\x4c\xeb\x98\x1a\x9b\x51\x9e\x22\xc5\xbb\xbc\x42\x03\x9b\xc6\x3d\x03\x3a\x30\x41\x1a\x78\xa0\x91\xaf\x0f\x41\xa2\x90\xeb\x14\x43\x31\x38\x38\xa8\x3d\x04\x83\x82\x2a\xbc\x2a\xa4\x14\x5a\xe5\x74\xb6\x12\x39\x4e\x0e\x80\x8c\x2d\x5b\xcc\xcb\xcd\xce\x4c\x4d\xb1\x25\x4a\xbb\xa1\xad\x70\x45\x84\x89\x1b\xf2\xeb\x0a\x46\x8b\xd5\xa4\x76\x6a\xa5\x86\x0e\xcd\xef\x44\xaa\xc9\x20\x1e\xf2\xf4\xdf\x32\xdb\x33\xcb\x1d\xae\x76\xe6\x66\x86\x67\xb7\x94\x5a\xdf\xf1\x1d\xc6\xfb\x3e\xf1\xf5\x9d\xf9\xe2\x9d\x7c\x8f\xa7\xa0\xc0\xe3\xc9\x27\xd5\x81\x4f\x2c\xff\xfc\x33\x73\x0f\xf5\xe5\x29\x83\x8f\x52\x8e\x62\x4c\x41\xb7\x97\x5e\x77\xf7\xf0\xc0\xdd\x77\x93\x2f\xf1\x99\x0c\x9e\xcf\x48\x2f\x29\xc9\xf0\xbf\x4b\xcf\x7a\x00\x76\x1d\xcb\xff\x75\x1f\x68\xc9\x7f\xef\x03\x75\x1d\x18\x1a\x9a\x87\x93\xd1\x2e\xcc\xc0\x27\x85\xd7\xf1\xb9\xed\xc2\x0b\x2c\x5f\x88\x58\x89\x2b\x85\x2c\xdf\xb5\x12\x76\xc9\x05\x60\x9d\x52\x9f\xb5\x8d\xb7\x84\x04\x07\xa9\x28\x91\x1f\x1a\x5e\x77\x69\x53\xa8\x56\x1d\x25\xc5\x22\xdd\x5a\xa5\x04\x80\x95\x2e\xb7\xda\x89\x77\xff\xf8\x23\x39\x31\xdc\xb6\x65\xcb\x39\x3a\xab\xee\x91\x3a\x41\x77\x92\xcc\x4a\x7a\x24\x89\x5c\x0b\x28\xfa\x4e\xac\x4b\x01\xa0\x86\x06\x3e\x2c\x2c\x34\x24\x58\xbe\x37\xc5\xd1\x72\x5b\x4a\x59\xab\x54\x73\x3b\x36\x29\xa8\xe7\xa3\x80\x81\x94\x35\x1c\x7b\xb8\xf5\x11\xb5\x56\xad\x8e\x92\xe2\x3c\x56\x2d\xe7\x67\x65\xce\x65\x95\x62\xa3\x3a\xd4\x09\xa7\xfd\x3c\xfd\x14\x96\x09\x77\x92\x5a\x7a\x76\xc3\x23\x1b\x7c\x7b\x4e\x9d\x22\xb0\xff\x91\xfd\xf8\xc4\x8b\xe2\x7a\x0f\x0b\x5e\xe6\xe4\x06\x21\x06\x0a\xf8\x3c\x5d\x24\x91\xcb\x5c\x83\x10\x90\xd6\xa9\x91\x60\x2d\xc7\x48\x00\x41\x7a\x2f\x76\x9a\x63\x20\x46\xad\xb5\x5a\xa5\x52\xc2\x51\x46\x89\x96\x22\x2e\x2e\x94\x52\x4f\x6a\xe6\xcc\x6c\xdf\x3c\xd1\x9c\x6f\x0e\xd7\x14\x69\x0a\x4a\x85\xc6\x73\xe7\xf0\x18\x37\xf8\x4b\x44\xdb\x55\x1d\x59\xca\xe0\x27\x15\x8a\x8e\x29\x3c\x7d\x6e\xb8\x98\x1b\x1c\xe6\xe9\x33\x80\x70\x9b\xe0\x65\x29\xac\x01\xac\xb0\x5d\x4e\x47\x45\x22\x52\x30\x23\xa3\x1a\x24\x2c\x12\x91\xb0\x3a\xbd\x74\x90\xbb\xf8\xa0\xbf\x7e\x4d\x8e\x42\x2a\x38\xe2\x2f\x4f\xbb\x88\xcb\xf5\xbc\x51\x84\x4d\x25\xde\x31\xe1\xdb\x4b\x86\xc8\x91\x13\x2b\x58\x35\x76\x6b\xb2\x45\x8a\x9c\x8c\x96\x49\x5e\xbc\xc6\xb1\x35\x93\xeb\xc3\x5c\x07\x66\x37\x6f\xed\x70\x66\xb6\x6f\x9a\x68\x2e\x30\xc9\xcb\x8d\x73\x7a\xb3\x1a\x16\x58\x86\x58\xfe\x75\x4d\x6d\x99\x73\x6e\x5d\xe2\x33\xc8\xeb\x7e\x5e\xa1\x98\x36\x95\x7c\x5c\xd6\xea\x8e\xf1\x64\x0d\x7f\x2c\xd7\xd5\x10\xf0\x8e\x9c\x61\x77\x70\x2f\x80\x1e\x52\xe1\x1d\x09\x0f\x1f\x4f\x90\x9e\xf9\xa0\x97\xd6\x26\x7e\xa1\x58\xa7\x17\xdf\x83\xb0\xae\xb5\x75\xf4\x99\x82\xa0\x50\x4a\x1e\x5c\xa0\x5c\xb1\xc2\x1b\xac\x22\x4a\xa5\x5c\xc7\x27\x83\x6b\x91\x36\xee\x8b\x47\x4a\xbe\x8f\xf8\xd1\xef\xee\xc9\xd7\x48\xcf\xe6\x92\x3f\x07\xe2\xda\x7a\x3e\x3b\x70\x65\xe0\x29\x20\x52\x0d\xf6\x58\x37\x51\xbe\x0a\x55\xaa\xd1\x60\x78\x2b\xaf\x31\xc4\x5b\x8c\xf1\xa9\x86\x54\x51\xa9\x44\x26\x9b\x23\x42\x24\xb7\x31\x50\xcb\xe4\xc7\x50\xa3\x0e\x24\x97\x3d\x5a\x16\xa8\x8e\x32\x10\x76\x87\xd0\x5e\xb2\xad\x7a\xc6\x81\x45\x25\xc5\x8b\x6e\x9e\x51\x7d\x45\x09\xde\x28\xec\xc1\x42\xe1\x24\xae\xf6\x35\xa6\xa7\xe9\x32\x74\x99\xde\x9c\xf8\x78\x57\xbd\x2a\xac\x78\xc3\xf3\x5b\xf0\xf5\x2d\xff\x87\xb6\xff\x00\x6f\xa3\x4a\xf7\xc7\xf1\xf3\x9e\x73\x66\x24\xdb\x71\x91\x25\x59\xb2\xe5\x26\xab\x59\x96\xe5\x26\x4b\xb2\xe5\x26\x3b\xee\x56\x6c\xa7\xd8\x71\x8b\x4b\x9c\x38\x4e\x77\x7a\x2f\x24\x21\x05\x52\x20\x04\x48\x96\x16\x3a\xa1\x1a\x02\x84\x65\x69\x09\x65\x81\xbd\xec\xb2\xbb\x70\xbf\x7b\x59\x60\x77\x59\xb8\x2c\x84\xc5\xce\x97\xbd\xb0\x90\x68\xfc\x7f\xe6\x8c\x24\xdb\x71\x02\x7c\xef\xff\xf9\x3d\x3c\x26\xb6\x74\x66\xe6\x9c\x77\x4e\x79\xdb\xe7\xf3\xbe\xba\xb3\x34\x52\xfe\xa2\xd0\xfd\xa2\x90\xa3\x26\x74\x16\xc6\x89\xf5\xdb\xe7\x0b\x59\xbd\xdb\x6a\x13\x83\xba\xf6\x83\xb4\x89\x61\x04\xa6\xa3\x1a\x6f\xa5\x1c\x64\x28\x1e\x08\x4e\x49\xc0\x94\x90\x7a\x14\x86\x30\x09\xc3\x7d\x13\x84\x57\xd3\x20\x1a\x50\xb4\x93\x03\xc6\x04\x56\xe4\x29\x2d\xf1\x4c\x2f\x9a\x6e\xb1\x18\x4c\x06\xb5\xd1\x18\x11\x22\xb9\xbc\x5c\x6f\x76\xb9\x35\xcc\xc9\x16\xca\x7b\x94\xd6\x45\x48\x8b\x4e\xe3\xd5\x4c\xa7\xce\xcc\xe9\xdc\x3d\xa7\x61\x53\xa6\x6d\x55\xc5\xcc\xad\x73\x32\x84\xa6\xc6\xd9\x1e\x5f\x6a\x91\x61\x6d\xdb\x03\x7d\xf6\x8d\x33\xe6\x5c\xdb\x99\xf3\x79\x41\xd5\xf4\xc2\xa8\xe4\x9c\x34\x7d\x76\x72\x24\xae\x2b\xc8\x7a\x67\x5a\xbc\x05\x5f\xb3\xec\x91\x0d\x65\xf9\x79\x8e\x7c\x28\x5b\x75\x47\xcf\xdb\x59\x9b\xaf\x4d\x89\xbb\xdd\xe0\x5c\xec\x70\x95\x6e\x78\x64\xd9\xce\x43\x87\x76\xbe\x55\xba\xa0\xca\x64\xaa\x5a\x50\x0a\xd3\xf6\x6f\x6d\x31\x79\xb3\x75\x08\xe0\x71\x84\x68\x02\x6f\x47\x0a\x64\xf1\x1a\xc3\x00\x50\x38\x60\xc0\xa2\x2d\x02\x18\x41\xff\xb8\x2f\x4f\x81\x14\x26\x93\xe4\xcb\x9b\x8c\xcd\x50\xc0\xe3\xe5\x9b\x1e\x5f\x66\x69\x30\xc7\x2b\x33\x52\xae\xd9\x47\x5b\x56\x0f\x6f\x2c\x9d\x16\x76\x86\xe3\x6f\xb9\xe6\xe2\x23\x08\xd0\x2f\x84\x06\xda\xc1\xdb\x91\x15\x95\x79\x8b\x53\x81\xe7\xf4\x40\xf9\x08\xc0\x88\xa5\x30\x33\x8f\x03\xe5\xf8\x7e\x71\xaf\xa6\xed\xb2\x60\xb6\x72\x70\x05\x2a\x4d\x26\x85\xd2\x62\x92\xbc\xf2\x86\x49\x27\x90\xcb\x29\x6a\x06\x97\x63\x45\x1c\xe4\xe8\x9b\xf9\xfd\x47\x3a\xec\x73\x33\xa3\xc3\xd3\x33\xd3\x23\x66\x36\xdd\x7f\x7f\xe9\xda\x07\x16\xe7\xce\xcb\xd5\x26\x54\x67\x6c\x5e\xfb\x26\xd9\x7f\xa9\x7d\xfe\xf1\x45\xce\x18\xf5\x8b\xf2\x69\x72\x6e\x68\x21\x79\xf0\xa9\xb9\x0b\x4e\x2c\x76\x69\x15\xcf\x47\xc5\xac\x1c\x9c\x1b\xc8\x7b\xf8\x8a\xfe\x81\xfb\x0a\xa5\x20\x27\xca\xf6\x66\xaa\x81\x40\x22\x50\x96\x9f\x83\x4b\x1b\xae\xc8\x16\x61\xb5\xa9\x6d\x46\xb6\x05\x4f\xc6\xc7\xb3\x18\xb5\x83\x79\xa3\x35\x53\x80\xf2\xab\x27\x03\xe5\xd7\x3d\x5d\x61\x36\xfc\xaa\x6d\x8e\xd9\x04\x3f\x0f\x2f\xdf\x5a\xaf\x19\x68\xd8\xfe\xb0\xb9\xf9\xb9\xf9\x57\x80\xcd\x63\xb4\x74\xec\x3c\x7d\x98\xde\xc3\xf0\xea\x2d\xde\x70\x39\x50\x14\x0d\x84\x06\x33\x2c\x13\x24\x35\x7a\x5c\x83\x0e\x98\xd3\x4c\xc7\xbe\xda\x97\xa2\x7a\x7d\xc6\x6a\xb5\xa9\xd9\x68\xc7\xe7\x7c\x60\x90\x3f\xe6\x91\x5c\x2a\x2a\xd6\x0b\xee\x2e\x35\x9b\x9f\x9f\x33\xc3\x6c\xfd\x89\xcc\xed\x22\xa7\x76\x41\xed\xda\xbb\x33\x2a\x4e\x76\xfc\x48\x02\x37\x3b\xab\xf7\x8e\x7d\xc5\xdd\xc7\x7d\x86\x0c\xc8\xe1\xcd\x01\x00\x02\xf5\x3c\x87\x03\x28\xeb\x00\x0e\x21\xe8\xe5\xa9\x62\x93\xda\x80\x0c\x26\xb5\x29\x36\x8e\xed\xeb\xea\x52\xc2\x7a\x7f\x25\xe4\xb4\x2f\xa7\x38\x6d\xda\x4b\xf7\x3e\x0d\x57\x07\x50\xbf\x44\xf5\xc5\x6d\x9e\x97\xcf\xca\xfd\x7b\xae\x82\xa4\x0e\xe4\xfb\x72\xb3\xe9\xcd\x28\x05\x75\x7b\xa7\x25\xc6\x13\x42\x30\x1f\xf0\x86\x48\x0e\x7e\xe0\x30\xb7\x9a\x4a\x39\xe6\x41\x38\x02\xd3\x26\x13\x27\x7d\x15\xf0\x7b\x8c\x87\x1a\xa3\xa4\x3c\x57\xa5\x49\x6d\x50\xc9\xa4\xd8\xbc\x6c\x1c\xab\x36\x31\x51\x54\xed\x72\x39\xb9\xd9\xc7\x8e\xff\x29\xea\xf2\x74\xd1\xd2\x5c\x7a\xf3\x53\x2f\x6b\x2e\x7d\x73\x85\xb4\xd1\x23\x9a\xd5\x7d\x08\xd0\x9b\x42\x03\xa9\x66\x39\xae\x56\xaf\x79\x02\x0a\xe6\x4a\xd8\x17\x75\x95\x29\x08\xf9\x9d\x8a\x7c\x49\xc4\x19\x45\xab\xef\x5b\xec\xe8\xcd\x8d\x8a\x0e\xa1\x5d\xde\xb8\x22\xc6\x45\x5c\x8b\x0f\x8c\x7d\x45\x97\xd2\x26\xa6\xd9\x4e\xf7\x7a\x93\x80\xa0\x44\xc0\x52\xae\x1c\x47\x31\xd7\x17\xc2\xc3\xd5\x34\x84\x50\x72\x55\xe0\x33\xa4\x01\x4a\xb7\xa4\xd9\x0d\xf6\x00\x34\x4e\x0f\x7a\x79\x20\x61\x9b\x4d\x52\x0b\x5b\xa4\xfa\xc0\x9a\xb4\x94\x12\xa5\xf8\xc6\xf5\x2c\x1b\xac\x77\xd3\xb9\x7d\x75\xbe\x6b\x9f\x19\x5c\xff\xe4\xba\x22\xfc\x1e\x97\x51\xbf\xb8\xaa\xb0\xbb\xb1\x3c\xa9\x49\xd7\xbc\x68\xe7\x92\xbc\x59\x65\xb6\x30\x21\x59\x57\xd8\x4e\x9b\x66\xde\xf0\xfa\x1a\xeb\x86\x37\x6f\x9c\x09\x35\x3b\x9f\x5e\x76\xa8\x6c\xc5\xac\xec\xe8\x78\x83\xf2\x0e\x4d\x96\x49\x73\x69\x5e\x7a\x75\x4f\x41\x7c\x4e\x6b\xb9\x49\xe2\x4a\xa4\x7f\x25\x65\xdc\x3f\x91\x1c\x25\x79\x13\x78\x82\x18\x50\x07\x00\x61\xb4\x46\xdc\x59\x70\x08\x50\xae\x36\x58\x64\x06\xa7\xc9\x41\xca\x5e\xb9\xe5\xe6\x97\x20\xf2\x20\xbd\xa8\x3b\x70\x20\x69\x14\x01\x28\xe8\x5f\xc9\x3b\xec\x1e\x3a\x71\xd2\x00\x82\x7a\xe6\xca\x14\x35\xc2\x52\x14\xba\x83\xdb\xa1\xe6\x0c\x26\xa7\x03\xaf\x38\xfa\x8e\x70\xfe\x98\xf0\xcf\xdf\x70\x0b\xf7\xc7\x5e\xfc\x5e\x85\x10\x40\x36\xbd\x81\x3c\xc9\x9d\x42\x6a\x94\xec\xd5\x05\xf2\x75\x24\x5a\x01\x08\x04\x41\x8c\x2a\x23\x23\x13\x98\xb2\x98\xc9\x93\xf6\xd9\x1b\xea\xeb\x37\xcc\xb6\x3f\x1d\x9d\xe6\xb4\x98\x5d\xfa\x68\xee\x54\xe9\x60\xbd\xd5\x5a\x3f\x58\x9a\x98\x67\xd1\x68\x2c\x79\x89\xe2\x33\x3e\xa1\xef\xe2\x0b\xdc\xef\x50\x44\x20\x87\x53\x0a\x61\x80\xcf\x98\x26\x85\x72\x26\x64\xb4\x7c\x52\x5d\x5e\x51\x5d\x5d\x51\x5e\xcd\x35\xb9\xeb\xea\xdc\xae\xba\x3a\x84\xe1\x18\xcd\x23\x6e\xee\x57\x48\x89\x0c\x68\x85\x14\x4e\x8d\xbd\x2c\x20\x52\x4c\x82\x61\xd4\xcb\xbf\xa9\x24\xc1\xf0\xe9\x95\xae\xb9\x52\xf3\xf6\xf6\xf6\x67\x8d\x3f\x1a\xa2\x0e\x86\x4f\xe1\x58\x5a\xe1\x8c\x4c\x9b\xaf\x20\x35\xb5\xc0\x67\xcb\x9c\x51\x98\xb6\x3c\x26\xc9\xa4\xce\x28\x28\xc8\x50\x9b\x92\x62\xe8\xff\xd8\x6a\x9d\xc9\xc9\xce\x5a\x5b\x66\x4d\x7e\x62\x62\x7e\x4d\x66\x9c\x49\x17\x53\x68\xcf\xf2\x44\x27\x9a\x11\xc0\x6e\x61\x16\x89\x42\xc5\x48\x23\xca\x3e\x9c\xbd\x3f\x4d\x18\x66\xf1\xa1\xe0\xf2\x31\x99\x44\x11\xe9\x79\x7e\xa2\x02\x11\x08\x1d\xe0\xff\x6e\x69\x4c\x4d\x4f\xb1\x47\xa7\x27\xb6\x55\x65\xfa\x0a\xf5\x29\x45\xad\x05\x96\xf9\xc5\x29\xe9\x31\xb2\x43\xd1\x49\x09\x79\x0d\xb9\x96\x99\xbe\xca\x04\x36\xdf\xf6\xd0\x4f\x89\x8f\x13\x50\x0a\x6a\xf2\xc6\x22\x20\x38\x06\x10\xe0\xfa\x14\xc0\xb5\xd1\x80\x6a\x1a\x86\xcd\x2c\x5f\x2f\x10\xa4\x2f\x0d\x45\x0f\x59\xd4\x32\x96\x25\xa1\xa2\x9e\xd0\xd7\xe0\x6b\x7f\x56\x99\xa1\x9c\x94\x88\x3a\x21\x0b\x35\x38\x41\x7c\x29\x05\x4d\xd9\x79\x55\xc5\x25\xe9\xca\xb4\x84\xe8\x6d\x29\xee\xc6\x1c\x6b\x55\x79\x85\x45\x69\x48\x88\xe6\x3e\xce\x6a\xa9\xb0\x24\xa6\x25\x46\x27\x9a\x35\x89\xf6\xd6\x4a\xab\xf8\xbb\xce\xa2\x91\xf4\xde\xbf\xd2\x4f\x89\x9f\xfb\x9a\xe5\xb6\x05\xf3\xa2\x58\xdc\xa1\x74\x22\x53\x06\x18\x88\x83\x18\xf0\x25\x00\xe1\xb7\xaf\x0d\x5c\xb8\x78\x86\xfb\x5a\xf8\x16\xc2\x85\x6f\x59\x0c\xed\x09\x61\x3f\x1e\x1d\x7b\x9a\x79\xbe\xca\x82\xf0\x28\x89\x9a\xa0\x3f\xb8\x45\x31\x17\x8a\x76\xfc\x53\x00\x3c\x37\xf0\x1d\x86\xa6\xf6\x67\x8d\x66\x69\x22\x70\x53\x26\x42\x30\x8c\x9c\xc6\xc3\x13\x09\x99\x45\x69\x7a\x4f\x46\x7c\x7c\x86\x47\x9f\x56\x94\x99\xb0\xc0\x94\x10\xaf\xd7\xc7\x27\x98\x3e\xd5\x17\xa4\x6b\x34\xe9\x05\x7a\xbd\xdb\xa2\x8e\xb3\xb8\xf4\x09\x69\x69\x09\x89\x46\xa3\xf8\x4e\x2e\x9d\xa6\xcf\x0b\x31\xbc\x56\xe2\x1b\x88\xfb\x59\x7c\xd6\x81\xac\x67\xe2\x10\x62\x6e\x7d\xe3\x77\xf4\x79\xe8\x46\xe0\x5f\x49\x7f\x29\xbc\xca\xc7\x4f\xbc\x4f\xf0\xac\x03\x76\x1f\xf1\xcf\x96\xc0\xbd\x11\x8c\xdf\xc7\x41\x0c\xfe\xef\xfe\xe3\xb5\x1b\xf8\x78\xe1\xe4\xd8\xd8\xa5\xed\xf4\xd3\xb1\x6a\x4e\xc0\x32\x74\xcf\x45\xa9\x9e\x0a\xf8\xbd\xf4\x33\xe1\x04\xbf\x03\x29\x51\x96\xd7\x16\x2b\x9a\xd5\x41\x26\xa3\x7e\x24\xae\x19\x51\x4b\x22\xed\x14\x08\x22\x33\x10\x42\x4a\xa4\x54\xc4\x29\xd8\x7e\x61\x91\x32\xf2\x0c\xee\x60\x7a\x81\x7f\x8e\xac\xae\x42\x63\x75\xeb\x65\x0f\x3d\x9c\x90\xe1\x4a\x04\xfa\xd9\x4d\x5c\xa2\x41\x95\xa8\x90\x6f\x5e\xdc\x66\x74\x1a\x54\xb4\x4a\x7c\x6f\x97\xa2\xe8\xa7\x63\xb9\xe3\xef\x7e\x52\xa9\x82\x71\xea\x0a\xe9\xed\x0b\xf2\xdf\x0a\xef\x01\x87\x93\x5f\xfe\x9f\xef\xe8\xa7\xe2\xab\x87\x70\xb1\xdf\x29\xc2\x6d\x82\x67\xec\x36\x14\x71\xa5\x18\xb2\xb4\xf1\x70\x13\x36\x1e\x7f\x4a\x5d\x65\x65\x7d\x7d\x65\x65\xdd\x7f\xbb\xeb\xeb\xd9\xbe\x03\x38\x9f\x7e\x43\x56\xf0\xd7\x04\x38\x24\x2e\x13\xa2\x22\x06\xcb\x24\x11\xe2\xcd\xff\x7a\x7d\x1d\x7f\x8d\xb0\x1a\x21\x02\x94\xbe\x4b\x53\xf9\xcf\x59\xce\xb4\x0e\xf5\x04\xd1\x6f\x8c\x87\x43\x22\xea\xc2\x9d\xe2\xf1\x9d\x47\x82\xe1\x8d\x2b\x7c\x99\x43\x18\x34\xee\x4a\x17\xb5\xb7\x7b\xc3\x8c\x46\xa3\x41\x11\xc3\xcb\x12\xd8\xe3\xb9\xab\xf9\x5c\xb6\x7e\x7b\xec\x46\xe1\x4c\x75\x69\x49\x75\x75\x49\x69\x35\x56\x07\x7f\xe3\x3f\x17\xfe\x6b\xbd\xb3\xa6\xc6\x99\x5f\x5d\xed\x74\x56\x57\x3b\xf3\x6b\x6a\x10\x1a\x1b\xc3\xd9\xb8\x96\x54\x93\x99\x98\x47\xeb\xcb\xc4\x09\x77\x12\x21\xea\x0a\xf1\x5f\x49\xc9\xd5\x38\x5d\x54\xa4\xac\x12\x13\x87\x4c\x13\x60\xab\xa1\x2e\x7f\xe7\x05\x72\x0b\xfd\xfa\x62\x2c\xe3\xa4\xc2\xc8\x82\x10\xfd\x33\xf3\x93\x31\xc6\x59\x1e\x18\x07\x16\x42\xe9\x4c\x39\xe8\x98\x7c\x0f\x07\xe8\x4d\x7a\xc0\x49\x9f\xc2\x07\x17\x7d\xe0\xc6\x75\xc2\x67\xdc\xf0\x0f\xcd\x67\xc9\xc3\xcc\x5f\xdc\x37\xf6\x15\x5d\xcf\xbd\x86\x08\xd2\xa1\x5c\xc6\x33\x07\x08\x71\x20\xf1\xcc\x89\x9b\x54\x4e\xc8\xe3\x9b\x8b\x7d\x56\xab\xcd\x14\x90\x8e\xde\xa9\xe7\x7e\x92\xa3\x8a\x94\x09\x6d\xf0\x10\xb8\x7f\x2e\x53\xd5\x96\x57\xce\xfe\x6c\xae\x2a\x09\x17\xf3\x68\x90\x37\x07\x01\xa4\x33\x37\x8e\x55\x62\xdb\x95\x49\x6c\xbb\x0e\x30\xe0\x45\xc2\x33\xff\x86\x3f\x7c\x0a\x7f\xf8\x9e\x76\x5f\xbc\x47\x1c\xbd\x14\xc3\xdc\x83\x10\xf5\x06\x72\x7c\x25\x8e\x3d\x89\x4f\xad\x0f\x71\x1c\xf3\x0b\xa5\x87\x12\xf1\xad\x10\x64\x6a\x93\x25\xd8\xdc\x7a\xb5\x9e\xf1\x28\xeb\xd5\xfa\x3d\xe4\x85\x4b\x95\x3d\xf8\xdf\x7e\x79\x0b\xb9\xed\xd2\xc2\xb3\x67\x49\xc3\x8b\x24\xed\x5c\x08\x5f\xe2\x09\x72\x12\x21\x00\x66\xbf\x4f\xec\x64\x0c\x95\x69\x83\x4c\x72\x7a\xea\xb9\x20\xe4\x5f\x20\x8f\x07\x5f\x34\xa0\x95\x08\x18\x07\xe1\x34\xd1\x3a\x92\x01\xc1\xd3\x78\x44\x10\xe1\x00\x10\xa9\x0f\x72\xf5\x4d\xee\xa3\x4a\xa1\x10\xef\x09\xc0\x60\x2a\xe0\xd4\xab\xf5\x40\x8a\x85\xa5\xf8\x9d\x8b\x17\xe1\x77\x42\x2e\xf9\xd8\xdf\x09\xc7\xf0\x6f\xfd\xdf\xbc\x72\x2b\x2e\xc7\x65\xc7\xcf\xf9\xff\xc5\x64\x51\x11\xc8\xbb\x8e\x47\xa9\xc8\x82\x52\xbd\x49\x26\x63\x72\x92\x26\x32\x1c\xc9\x11\x30\x3a\x63\xf6\x1c\x2b\xf2\x25\xea\xd8\xda\x9c\x54\x44\x43\xca\xf6\x07\x55\x9c\x46\xc1\xf3\x5c\xbe\xd9\xa2\x70\xb9\xf0\x77\xfd\x0f\x6c\xac\xac\xdc\xf8\x40\xff\x68\xff\x83\x1b\xa7\x4f\xdf\xf8\x60\xff\xa8\x50\xb0\x6a\xd1\xa2\x55\xf8\xce\xa1\x81\x81\x21\xfa\xdf\xe1\x73\xae\x7b\x61\x68\xe8\xf9\x03\x73\xc2\xcf\xbe\x12\x36\xe7\xc0\xf3\x43\x43\x2f\x1c\x6c\x09\x7b\xdb\x9f\x7a\xf0\xa1\x58\x7c\x54\xf9\xe8\xf5\x07\x1f\x51\xfa\x57\x28\x4f\x31\x59\xce\x46\x88\x9e\x62\x35\x50\x52\xbd\x49\xf1\x51\x11\x88\x32\x60\x12\xc6\x6c\xda\xb3\xc1\xab\x35\x1a\x15\x1b\xbc\xcb\xc5\xf4\xf1\x28\x2c\x53\x18\x14\x59\x84\xfd\x11\xa7\x51\x38\xf0\xc5\xb6\x85\x17\xca\x56\xdd\xd9\x3b\xda\x7f\xcf\x1a\xef\xe8\xb2\xae\x51\x1c\xa3\xb9\xfb\x16\x3c\xcb\xff\xf8\xe6\x5f\xed\x69\x9c\x26\x3c\x03\xf5\x11\xbe\x3d\x2f\x6e\x15\x3f\xb9\xe5\x6e\x0d\x39\x29\xcd\xb3\x0e\x84\xe8\x46\xee\x35\x64\x47\x19\x5e\x4b\x0c\xc2\x81\xe5\x16\x58\x1e\xe2\xe6\x01\xed\x1c\x48\x2f\x20\x21\x43\xa1\x49\x17\x27\x89\xa9\x94\x38\x03\x91\x3e\xb5\x2a\x56\xa3\xd6\x8b\x3a\xb0\x73\x22\x07\x31\x96\xe9\xd5\x7a\x7c\x7f\x6e\xa3\x3b\xf9\xe8\x8e\xed\x47\xd7\x2f\x14\x72\x81\x2b\x5e\x50\x93\x3e\xe3\xba\x73\xeb\xd6\xbd\x7a\xfd\x0c\x4b\x4d\x7f\x31\x84\x0b\x39\x5f\x47\xce\xdc\xf7\xf2\xb6\x8a\xff\xfc\xe0\x83\xff\xac\xb8\x28\xfc\x2b\xe1\xeb\x73\xf6\x9d\xbf\x78\xb4\xc3\x7b\xfd\xe7\x0f\x76\x75\x3d\xf8\xf9\xf5\xde\x8e\xc7\x4e\xec\xb4\x9f\x63\x7b\xc3\xba\xb1\xf3\xf4\x10\x6d\x44\x7a\x94\x8f\xfe\x21\x9d\xcb\x31\xa9\xc0\x93\xcc\x0c\x8c\xf8\xe8\x30\x2c\x4e\x9d\x00\x87\x87\xf8\x39\x9d\xf4\xf9\x65\x1f\x71\x84\x39\xbd\xc4\x5d\x36\x1e\xf1\x3c\xe9\x94\x51\x4c\x88\xa3\x81\x91\x4c\x74\x62\x00\xc8\x85\xa0\xaf\xeb\x2a\x0d\x32\x21\xc8\x18\x92\x24\x5a\x0d\xb6\x06\xd6\x0c\x4d\x6d\xe4\x35\x22\xc4\x73\x3c\xe2\x86\x2e\x6f\x87\x38\x2e\xd4\xac\xbd\xbd\xdd\xab\x40\x28\x27\x2b\xdd\x8c\xf4\x48\x6f\x35\x1a\x4d\x72\x99\x36\x98\x6c\x25\x69\x70\x41\xb6\xda\x60\xd6\xb4\xc6\x0d\x01\xd3\xcc\x19\x74\x77\x91\x4b\x11\x2a\x5d\x8c\x4e\xa5\x4d\x2d\x49\x9b\xb9\x26\xd9\x71\xe3\xfc\xde\x5b\x06\x9c\xce\x81\x5b\xe6\xf7\x1d\x71\xb8\x04\xa2\x75\xb6\x94\xd4\xcd\x4f\x49\x9d\x5f\x5d\xd2\xea\xd2\x52\xcf\xa5\x6f\x8c\x59\xba\x70\xee\x49\x55\x44\x79\x6d\x45\x75\xe3\xf5\x67\xd7\xa8\xb7\xbf\x77\xa2\xa5\xae\x62\x83\xff\xe5\xea\xcd\x1d\xf9\xee\xec\x44\xf0\xdb\x5d\x25\x8b\xaf\x6f\x14\xdf\xc1\x7d\xc2\x46\xba\x8e\x7b\x1d\x25\x20\x0f\x7a\xd4\x1b\x25\x07\x9e\xd8\x80\xe3\x95\x8c\x4f\x27\x80\x42\x95\x03\x41\x3c\x47\xf8\x7e\x66\xfa\xcb\x00\xa1\x1c\x69\xa4\x08\x20\x57\xdc\xc7\xed\x8c\x6b\x25\xe3\xca\x6d\xf3\x42\x6d\x33\x83\x6d\xbd\x46\x84\x01\xaf\xf9\xd1\xb6\xcc\x4b\x18\x9f\xa8\x03\x54\xe8\xce\xb6\x9b\x8d\x3a\x4f\xa2\x47\xad\x52\x44\xa3\x04\x48\x08\x93\x05\x8c\xb6\x09\x29\x7d\x2c\x96\x95\x5f\x8a\x95\x13\x12\x47\xd5\x8a\x09\x6c\xf1\x06\x27\x5e\x3f\x70\xff\x3a\x6f\x7f\xdb\xa6\x6b\x2a\xd6\x3f\xb8\xa0\xe1\xe6\xb2\x91\xfa\x1d\x0f\x77\x16\xce\x74\x68\x75\xf9\x8d\xf9\x39\xb3\x4b\x0c\x19\xdb\x9a\x8b\xbb\xbd\x69\xc9\x85\xad\xee\x2d\xdc\xeb\x05\x8b\x8e\x76\x74\xdf\x96\x63\x7f\x71\xd7\x92\xfb\x56\x15\xa5\xdb\x04\x0f\xf7\x50\xc7\x6d\x43\x5e\xff\xf1\x14\x77\x53\x4e\xba\xcf\x63\x4c\x2b\x9e\x93\x77\xe9\x63\x73\x96\xb9\xb2\xd3\xe5\xe8\xae\xce\x38\xc3\xd6\xa0\x53\xe8\xa1\x0f\x51\x0f\x0a\x17\x6d\xba\x30\x0e\x93\x20\xa2\xd2\x26\xae\x7e\x3b\xf8\x62\x63\x83\xe7\x9d\xc2\xa0\x00\x07\x68\xdc\xe4\xc9\xef\x84\xd2\x11\xa1\xf4\xdf\x90\xaf\x50\x52\xcf\xc5\xf3\x82\x07\xde\xa6\x8a\x4b\xff\xae\x9f\x21\xe9\xc1\x4b\xc6\xbe\xa2\x6b\xf9\x14\xd1\xe2\x45\xf9\xde\x5c\x39\x00\xca\x50\x84\x11\x0a\xb8\x1e\x51\x20\x40\x19\xb3\x26\x50\x04\xfd\x41\xb7\x4c\x2e\xf6\x95\x95\xe6\xe7\x65\x5b\x8c\x9c\x4c\x13\x72\xcb\xc8\xc4\x63\x2f\x80\x96\x98\x10\xb4\x66\xfb\xa2\xdb\x6c\x56\x4e\x74\xd1\x58\x44\x19\xfe\xe0\x5a\x78\x74\x5e\xd3\xf1\xc6\x4c\x55\x61\x65\xbd\xb9\xa9\x23\x3a\xc3\x57\xf2\x8f\xcf\xab\xf6\xbc\xb2\x79\xeb\xd9\x6b\xab\x9c\x5d\x9b\xab\x48\xe7\x60\x8f\xbe\x72\x49\x5d\xed\xe0\x74\xbd\xa5\x76\xa0\xac\x76\x49\x95\x9e\x7e\x59\xbb\xa6\x39\x23\xcb\x70\xb7\x4c\x15\x1b\x59\xe1\x54\x98\x33\x6c\x71\x8d\xc2\x17\xbf\x57\xad\x7e\xed\x86\x59\x33\x0f\x9f\x5b\xa5\x6a\xb9\x79\x5d\x73\xcc\xb4\xf4\x03\xfe\xad\xb5\x3b\x7b\x0b\x0a\x7a\x77\xd6\xaa\x0a\x57\xf7\x56\x4d\x2b\xec\xdd\x5e\x15\xf2\xe1\xd0\x1d\x74\x06\xf2\xa0\x72\x6f\x29\x91\x30\x7c\xa2\x9d\x0f\x64\x08\xf1\x94\xa3\x3c\x37\x84\x08\xa2\x3c\xc3\x2b\x4a\xf0\x13\xb6\x04\x19\x5b\x74\xae\xcc\x67\x54\x99\xf5\xe9\x46\x55\x86\x5c\x96\x68\x53\x5e\x1d\x42\xe2\x70\xa8\x03\x12\x91\xb2\xb2\x02\x22\xd9\xbb\x6c\x69\xcf\xc2\xca\x9d\xcf\xad\xed\x7f\x72\xcf\x8c\x11\x4b\x65\x97\xb3\xa6\xcf\x13\xaf\x2d\x9c\x57\x35\x3a\x7a\x60\x5b\x4a\xc5\x40\x75\xd9\x82\x1a\xd3\xd7\x73\x0f\x3f\x3d\x6f\xed\x8b\xfb\xeb\x21\xaf\x6b\x47\xaa\x71\x53\xed\x8c\xf5\x4d\x56\xfb\x9c\x4d\xbe\x14\x87\x59\xad\x4d\x77\x24\x24\x3b\x8c\xaa\x47\x6b\x9a\x93\x5d\x19\xf1\x09\xb6\xc2\x94\xf6\x6b\x66\xa7\x67\xce\xd9\xc4\xc6\x37\x5f\xd8\x41\xb3\x58\x9d\x04\x93\x37\x0d\x18\xc7\x99\x56\x23\x55\x42\x81\x76\x71\x17\x49\x67\xb1\x94\x0c\x94\x61\x4d\x27\xe2\x94\x57\x83\x54\x9f\x47\xa3\x49\x26\xea\x28\x22\xb3\xb8\x5c\x16\x97\xd9\xc2\x10\x32\xb1\x6e\xd0\x3b\x69\x96\x30\x58\xb9\xa4\xce\xac\xb4\x96\xd9\xff\x50\x3c\x50\x67\x05\x4b\x51\xb5\x7e\x6b\x4e\x16\x40\x49\xc3\x99\xee\xdd\x33\x8d\x4f\xfc\x12\x38\xff\x52\x6e\xf8\x06\xa1\xab\x6c\xf9\xf2\x8d\x75\xd9\x95\x39\x29\x61\x99\x51\xa9\xf9\xcd\xa5\xd6\x8e\xd6\xfa\xf8\x7e\xd7\x6c\x93\xde\x1d\xa5\x57\x94\x75\x6d\x69\xdc\x07\x86\x53\xa0\x78\x45\xec\xeb\x0d\x42\x1f\x2d\x65\xbc\x01\xcb\x26\xf0\x4f\xc4\x32\x70\x76\x80\x7f\x42\xfa\x23\x10\x6b\xd1\x8c\xf3\x4f\x38\x1a\x10\x21\xd6\xc0\xd4\xd7\x79\x75\x9c\xb4\x69\x8e\xbf\xb1\xf1\x6f\x25\x1e\x0a\x35\x52\x2b\x0d\x6a\x03\x2f\xbb\x8c\x87\x22\xc4\xa7\xb1\x34\xb2\xe0\xc1\x65\xad\x07\xfb\x5d\xa3\x43\xcb\x5b\x36\x98\x47\xa8\xe7\xf6\xd9\xf3\x32\xfb\x4f\xae\xb9\xf8\x0c\xad\xdb\xb4\xa4\x30\xf7\xd2\x47\x52\xdc\x84\xa0\xd3\x63\xe7\x69\x2e\xab\xb7\x92\x86\x6c\x68\x66\x00\x47\x8e\x28\xc2\x84\xe2\xbe\xe0\x6e\x93\x13\x8a\xfa\xe4\x8a\x16\xd7\x94\xef\xf3\x42\xdf\x67\xb2\xcc\x0f\x83\xda\xa4\xb6\x1a\x99\x6e\x39\xa5\xee\x0a\xd1\x87\xa6\x12\xe8\x03\xa7\x2a\xcd\x2d\x5d\x7b\xff\xa2\x81\x07\xd6\x95\x95\xad\xbd\x7f\x60\xd1\x03\x6b\xcb\x46\x84\xbe\x84\xfc\xc6\xfc\xfc\x19\xf9\x09\x42\x1f\xdc\x35\xb8\x78\xd1\x22\x1c\x7f\xe0\xdd\x43\xb5\xb5\x87\xde\x3d\x00\x9b\x0e\xfc\xe1\x48\x5d\xdd\x91\x3f\x1c\x10\xfe\xef\xad\xad\x5b\x1a\x8d\xc6\xc6\x2d\xad\x30\xfb\x9a\x47\x8e\x1f\x7f\x04\x01\x1b\x53\x19\xf3\xbb\xd5\x7b\xc3\xc3\x01\x48\x04\xf3\xd3\x4f\x60\xd8\x10\x6d\x3e\x5b\x28\xd5\x3e\x17\x07\x19\x36\x26\x7f\x9e\x89\x7d\xed\xcf\xaa\x2d\x26\xa6\xda\x29\xf5\x41\xaf\xe0\x38\x0c\xfe\x34\xce\x89\xcf\x70\x27\xdb\x9b\x74\xf6\xd4\xd2\x92\xd2\xd4\x59\xdb\xe7\xda\x85\xb3\xd4\xe3\x4f\x2e\x9a\xae\x97\x27\x2b\x4e\x69\x93\x63\x78\x73\xeb\xa1\x45\x58\x2b\xce\x91\xcc\xb1\xaf\xe9\x0a\xee\x07\x94\x89\xb6\x4a\x11\xf1\x98\x69\x00\xd8\xa6\xc7\x84\x00\xae\x4f\x03\x54\xa3\x9b\xf8\x51\x1a\x50\x44\x82\x9c\x0b\x29\xa1\x95\x1d\xc4\xbf\x5b\x25\x99\x53\x49\x03\x15\x5f\xca\x84\x16\xe2\x40\x58\x03\x96\x6d\x99\x4b\x7d\xed\x67\x4c\x75\xe9\x71\x31\x9c\x2c\xde\xa6\xd7\x03\xd3\xed\x79\x99\x25\xc0\xbf\x0d\xa2\x8a\x9f\xe7\x72\xb9\x65\x01\xbe\x55\x22\x83\x3c\xe1\x07\xd8\x9d\x11\x69\xcc\x2a\x4c\x8b\xb6\x2a\x48\xa4\xde\x68\x8a\xa9\x5b\xd9\xec\x8c\x81\xbe\xf0\x24\x63\x86\x56\x1e\x2e\x0f\x0f\xa3\xd1\x19\xd1\x95\x8b\x67\x16\x6b\x9e\x4e\xa1\xb1\x4b\xd3\x2a\x9d\x7a\x0a\xa7\x89\x8c\x27\xee\x59\xbd\xe9\x97\x56\xa4\x16\xd9\x75\x80\xe1\x45\x5e\x66\xad\x1f\x2c\x85\x7f\xec\x93\xf6\xad\xc7\x85\xf5\xb4\x95\x7b\x0d\x55\xa0\x4c\xaf\xb5\x02\x10\x71\xb3\xf7\x63\x36\x61\x5c\xc3\x4c\x66\xdc\x13\x52\xc9\x90\xcf\x5b\xaa\x4f\x37\x52\xf1\x38\x98\x90\x20\x14\xda\x92\x34\xc1\x12\x70\x16\x56\x47\xc0\x72\x19\x1a\x2e\x4e\x43\x65\xa9\x05\x2e\x67\x72\xc7\x66\x9f\x3e\xad\x69\x57\xef\xd1\x23\xef\xbf\x95\xdb\xb2\xba\x62\xa9\x67\xa0\x3e\xc3\x52\x54\xa3\xdf\xa8\xd5\xc7\x85\x97\x57\x17\x6d\x7a\x71\x77\xe5\xa3\x77\x6d\xdb\x5b\x77\xf0\x37\xbb\x66\x1d\x28\xa0\x1f\xc9\xa3\xc2\xb8\x84\xcc\x62\xbd\xb5\x32\x4f\xf7\xea\x91\x1b\x8a\x3a\xca\xad\x11\xda\xa8\xa4\xbc\xe6\x72\x69\x23\xd0\x65\x5a\xad\x5a\x4b\xa6\x22\x5a\x57\xb6\xe0\xe6\xa1\xa3\xe7\xb2\xd2\x8f\xf4\xb5\xec\x9b\x97\xab\x55\x89\x63\xec\x1e\xfb\x8a\xfe\x9e\x7a\x90\x2e\xc8\xb9\x23\x4e\x44\x24\x4d\x44\x5d\xf0\x0f\x0a\x78\x9c\x3b\x04\x98\x87\x6d\x88\x23\x18\x21\x96\x64\x60\x63\xea\x68\x6e\x30\x7b\x87\x22\xa0\x93\xbe\x45\x94\x5a\x1b\xa4\xe9\xdb\xee\x0d\x57\x28\x14\x6a\x93\x29\x46\x26\xd3\xb1\xc8\x4f\x60\xaa\x06\x5d\xda\x52\x62\x88\x9e\x6e\xb9\x21\x4a\x6b\x50\x27\xd9\x15\x76\x77\x5f\x5e\xf9\x82\xca\x34\xe1\x8f\x23\xbb\x68\x12\xd9\xee\x3f\x65\xcd\xd1\xf2\xd1\xe1\xf7\x99\x54\x29\x75\x1b\xda\x71\xc7\xa5\x5d\x64\xfb\x0b\xd2\xd9\x7a\x54\xe8\xa5\x2d\x01\x9e\x9a\x16\x6f\xb8\x01\x28\x91\x03\x9a\x10\x13\x09\x1c\xa8\x8e\x50\x74\x27\x37\xb4\x9b\x5d\xe1\xcb\xcc\xe0\x66\x76\xc6\x6a\x35\x29\x8d\xe2\x94\x84\x49\x2a\xca\xe4\x13\x48\xe6\x08\x25\xdc\xb4\xb8\x96\xdc\xbe\x70\xe1\x71\xd7\x48\xfd\xae\xa7\x17\xaf\x7f\x72\x43\xf1\x48\x42\x61\x57\x45\x79\x57\x51\x22\x40\xda\xea\x8e\x8a\xee\x62\x1d\x7c\xbf\xe6\xec\xc1\xc6\x8a\x12\xff\xb7\xe4\x2f\x5b\x5e\xdb\x5f\xdb\x72\xe2\xbd\xed\x8d\xd7\x2f\x2e\x29\x9d\xbf\xb5\x04\x84\x6f\x0b\xab\xf3\x3b\x37\x57\x23\x40\x03\x42\x0b\x2d\xa0\x8d\x28\x17\x99\xbd\x06\x7d\x2a\x86\x1a\x04\x18\xd6\xb0\xd5\x45\x00\x21\x07\xf6\x01\x62\xf4\x7e\xb9\x90\x4b\x83\xfa\x94\x61\x22\xff\xb0\x26\x99\x68\x26\xcc\x3c\xa3\xa4\x24\xe0\xde\xc1\xc7\xb6\x55\x7f\x92\x54\x32\xaf\xac\x6e\xa1\x37\xc9\xd0\xb0\x76\x56\xdf\xb1\x05\x4e\x70\xcc\x5c\xe4\x1c\x88\x73\xe7\xe8\x07\x16\x08\x97\x2e\x55\x5c\xf3\x02\x6d\x74\x0f\x1e\xef\x1d\x87\x3f\xaf\x9a\xeb\x09\x8f\x32\x15\x77\x4e\xf7\x2e\x99\x5b\xa1\x39\x1c\x96\x6a\xf7\x18\xb3\xf2\x22\xd2\x21\xe2\x7d\x46\x01\x88\x02\x71\xb6\xf3\x74\x2f\xc3\x3c\x64\xa2\x72\x49\xfe\x71\x34\x48\x4e\x68\x0b\x85\x39\x72\x19\xd3\xd8\x15\xbe\xc8\x64\x72\x37\x59\xd3\xd9\x56\x00\xfa\x89\xe1\x27\x09\x73\x00\x53\x82\x50\x74\xaf\xf0\x5d\xcb\x82\xf2\x6d\xcf\xac\xdb\xf0\xdc\xce\x8a\x8a\xed\xcf\xad\xc7\x45\x97\x7e\x9d\x54\x32\xbf\xaa\xa2\xbb\x24\x31\xb1\xa4\x67\x7a\x65\x5f\x49\x12\xd9\x38\xfd\xec\x7a\xf5\xc0\x2f\x0f\xce\x9e\x73\xd3\xdb\xeb\xd5\xab\xce\x1d\x9e\xe5\xff\x53\x28\xfa\x54\xb9\x79\x9e\xcb\x35\x6f\x73\xa5\xb8\x36\x44\xbb\x46\x4f\x3d\x28\x1e\xcd\x98\xb8\x2c\x02\xa3\x91\x42\x9b\x88\x9d\x81\x13\x37\xe8\x2b\x7d\x91\xc9\x98\xb0\xc4\x2d\x5a\x1a\xcd\xd4\x2d\xda\xa9\xa7\x29\xc2\x43\xda\x8c\x82\xd4\x9c\x86\x14\x73\x6a\x49\x71\xa9\xbe\x79\xdb\x5c\xbb\x70\x07\x79\x98\xac\xf1\x8f\x94\xd5\x18\xc3\x12\x62\x1e\x53\x25\x44\x71\x96\x8e\xa3\x4b\x71\xf8\xaf\x11\xa0\xeb\xc6\xce\xd3\x19\xd4\x83\x52\x82\xac\x4c\xb1\xcc\xd3\x6f\x6b\x08\x56\x35\x61\xfd\xb9\xfc\x43\xb1\x2f\xde\x69\x52\x64\xc9\xaa\x31\x89\x3a\x25\x04\xa9\x53\x9c\x66\x6c\x71\x4c\x20\x8d\x51\xc0\x26\x43\x69\xab\x63\x7a\x4f\x49\x22\xf1\xe6\x8c\x68\x32\x52\x94\xf9\xab\xcf\xec\x5e\x75\x7a\x5b\x05\xf5\xf8\x6f\x9e\x39\x54\x95\x52\xbd\xea\x70\xcd\x5e\x80\x6d\x59\x2b\xaf\x39\x36\x6b\xc3\xfb\x77\x77\x17\x6e\x38\xb3\x03\x2f\x16\xe7\x40\xbb\x90\x46\xef\xa7\x5e\x64\x42\x0e\x64\xf7\x66\x84\x01\x46\x66\x83\x12\x89\xbb\x45\xbd\x1c\x50\xed\xf8\x4c\x16\x8f\x33\xec\xcb\xcd\x36\x19\x13\xb4\xa2\x86\xc4\x49\x9a\x90\x26\x8a\xc8\xc4\x09\xac\x98\x58\x7f\x4b\x61\x50\x96\x12\xa7\xa4\xfd\x62\x58\x7b\xcf\x42\xfb\xf6\xb5\xc7\x2c\x05\xc6\x58\xac\xcc\xac\x71\x58\x6a\x07\xcb\xbb\x6e\x1a\x70\x67\x0f\x3e\xb0\x61\x74\xd4\xdd\x90\xa5\xc6\xb1\xc6\xfc\xb4\xa4\x84\x08\xe5\x92\x5f\xbc\xb8\xf0\x11\x88\x6e\x3b\x9a\x3e\x6f\xc1\x40\x6e\xf1\xaa\xf9\xf5\x6a\x3c\x54\xb8\xa0\x2e\xa3\xed\xd8\xab\x4b\x17\xfc\xea\xf8\xe2\x58\x21\x0b\xdf\xa6\xaa\xef\x1b\xf2\x54\x6d\xeb\x29\x48\xd7\x8b\x73\xa0\x49\x48\xa3\x4f\x52\x0f\x32\x88\xeb\x2f\x4d\x1d\x0b\x54\x0a\xcb\x00\x6a\xa7\x04\x13\x84\x6c\x10\x08\x3a\x6a\xe2\xe3\x25\x59\x96\x12\xa7\xd9\x6c\x71\x48\x06\xcd\x04\x77\x80\x38\x10\xfc\x45\xf1\xac\x7c\x0d\x64\xa6\x9e\x4f\xcd\xcd\x59\xf6\xf8\xf6\x91\xfe\x3b\x57\x16\x8d\xea\xf2\x2a\x33\xa8\xe7\xd2\x2e\x55\xd3\xe0\xe6\xf2\xdd\x97\x36\x75\x5e\xbc\x67\xe9\x1b\x27\x97\x2b\x84\x6c\xf8\x63\x4c\xdb\xb1\xf7\x0e\xc2\x17\x82\xba\x7d\x5f\x5f\x59\x0c\xd9\x82\x00\x95\x8e\x7d\x45\x6f\xa3\x1e\xe4\x12\x2d\x08\x1b\x48\xce\x12\x82\x08\xa0\x21\x19\x8f\x09\xb1\x31\x77\x0f\xed\x12\x15\xb4\x5c\x2a\x76\xcf\x85\x5c\x46\xab\xc6\xa4\xb6\xc8\x45\x55\x87\xc7\xb2\xe0\xfb\x0e\xc6\x10\x2f\x7b\xf5\x21\x7b\x56\x54\x47\x8f\x66\xba\x71\x98\x4a\xaf\xd5\xa4\x27\x2b\xbe\x53\x24\xa5\x6b\xb4\x69\xaa\x30\xec\xce\x1c\x51\x99\x12\x63\xf4\xf5\x1b\xdb\xe6\x6c\x31\x99\xb6\xcc\x6e\xdb\x54\x9f\x5a\x92\x4e\x3d\xdb\x84\xb1\xbd\x8d\x47\x96\x97\xeb\xeb\xd6\xb5\xc0\x74\xe1\xc5\x96\x75\x75\x7a\xef\xf2\x23\x4d\x13\x26\xc9\xc9\xee\xfe\xde\xde\xfe\xee\x93\xef\x6f\xb8\x1f\x48\x97\x94\xe3\x3e\xf6\x15\x7d\x9a\xf9\x3b\x8a\x91\xdb\x9b\xef\xb0\x67\x10\xa0\xf1\x98\x11\xe3\xd6\x23\xa0\x98\x02\x1e\x9a\xe0\x1f\x0c\xcc\x9a\x5c\xe4\x2b\x70\xd9\x4d\x6a\x0b\x27\x2a\x99\xbc\x6c\x7c\xe6\xba\x03\x6b\xcc\xe9\x9c\xe8\x02\x51\xb8\x5c\xcc\x34\xd7\x28\x02\x80\x39\xfa\x74\x41\x4d\xc5\xa6\x87\x17\x2d\x7e\x6c\xcb\xf4\x2f\xf4\xa5\xed\x85\xfd\x2b\xc4\x5f\x9d\xbd\x7b\x9a\x66\xed\xea\xca\x4d\x2d\x4a\xf4\x3f\x94\x5c\xdc\xe6\xf1\x14\x26\xd8\x53\x63\x71\xbb\x6a\xda\x96\x15\x8f\x6d\x2c\xab\xdc\xf2\xc8\x20\x58\x40\xf8\x53\xc9\xfc\x6a\xf3\xbe\x3d\x3b\x94\x5d\x7b\x1f\x9e\xaf\x9c\x7b\x5d\x6f\x5e\xfe\x82\xa3\xf3\x84\xb7\x68\x84\x0c\x2c\xce\x9e\xe6\x62\x05\x14\x74\x36\xc7\x9a\x8b\x33\xc4\xf7\x86\x10\xfd\x3d\x77\x0e\x99\x51\x86\xd7\xa2\x93\x63\x40\x26\x65\x0c\x1b\xa0\x04\x13\xa7\x92\x45\x8e\xb1\x15\xfb\xcc\x2a\x95\x49\x3a\x72\xa4\x02\x38\x52\x22\x84\x8c\x19\x9a\xd2\xaf\x16\x49\xa3\xd6\x28\x35\x6e\x52\xac\x2b\xab\x6d\xb6\xa7\x14\xeb\x34\x34\x3e\x2a\xd5\xad\x10\xfe\xcf\x88\xf0\x5f\x8a\x82\xd4\xc8\x78\xaa\xd1\x15\xa5\xda\x9b\x6a\x4a\x13\xef\x57\x28\xe8\xab\x55\x7d\x25\x89\xe1\x51\x2f\x12\x92\x6a\xf4\x0f\xf8\xcf\x63\x2d\xbe\xd5\x98\x4a\xc8\x8b\x51\xe1\x09\x45\x7d\xd5\xc2\x92\xba\x5a\x84\x91\x66\xec\x2b\xfa\x16\xe3\xca\x29\x40\x2e\xaf\x63\x1a\xf0\x32\xa8\x47\x32\xc4\x23\x19\x2f\x9d\xec\x81\xed\x4d\x0e\x3c\x1f\x72\xca\x98\xd4\x16\x95\x42\x63\xb4\xc4\x84\xc9\x92\x6c\x60\x18\xb7\xe7\x83\x53\xc9\xe5\x36\x38\xf5\x60\x36\x5b\xf4\x3c\x1f\x9a\x80\x4e\x47\xa8\x12\xd8\x5b\x5b\x53\x2d\xa9\xb5\xeb\x5b\x5a\xb7\x9b\x4d\xdb\x5b\x5b\xd7\xd5\xa6\x5a\x52\x96\xd0\xa7\x84\x0f\x89\x35\x4d\x48\x33\x64\x60\x79\x6c\xb2\x26\x3e\x23\x25\xf6\xdb\xd8\x14\x9b\x36\x2e\x39\x56\x4e\xae\x5d\x38\xba\xb7\xe7\xde\x8d\x95\x03\xf3\xe7\x0f\x54\x6e\xbc\xb7\x67\xef\xe8\xc2\x67\xfc\x43\xeb\x47\xd7\xad\x1b\x5d\x9f\xdf\x55\x6d\x15\xe7\xe0\xdf\xff\x2e\xce\xc0\xf4\xea\x2e\xc9\x7f\x3b\xf6\x7f\xe9\x41\x6e\x18\xe9\xd1\xc2\x67\x30\x50\xc6\xe7\x64\x60\x7c\xa0\xc0\x01\x83\x1f\xc8\x00\x21\x79\x3b\x92\xcb\xe3\xa4\xc4\x08\x1e\x30\x4e\x0e\xf0\x81\x5e\xa1\x09\xcf\x6b\x42\x09\x14\xc9\x6c\x6b\x55\x28\x14\x0a\xb3\x42\x9b\x17\x13\xc6\xb3\xfc\xca\x09\x95\xef\x18\xe0\xcc\x1c\xb4\x7f\xc4\x4d\xbf\x41\x88\x52\x59\x13\x56\x0c\x6f\xad\xc8\x1d\xbc\x67\x15\x2e\xae\xcf\x88\x82\x0d\x5b\xb4\x26\xe5\x05\xe1\x05\x6a\xa1\x5f\x0b\xfd\x18\x7b\x56\x9f\x5a\xd1\x71\x62\x65\xe9\x19\x53\xe9\x2c\xfb\xd6\xbd\x04\xfc\x1b\xe8\xd7\xe7\x24\x1d\x75\xc5\xd8\x57\x74\x13\xf7\x06\xb2\x89\xb6\xb5\x68\xec\x10\x4c\x87\xe4\x20\xe3\x78\x4e\xc6\x0f\x21\x8a\x38\x19\x1d\xaf\x82\x92\x14\xa2\x33\x4d\x46\x01\x22\x12\x83\x42\x6d\x54\x59\x8d\x61\xbc\x2e\x58\xee\x26\x64\x02\x8d\xd7\xbb\xd1\x87\x32\x9e\xe8\xa6\x30\xdf\xee\x33\x6b\x36\x9e\xdd\x57\x57\xbf\xef\xc5\xb5\x1b\x9f\xdf\xd5\x10\x3e\x2a\x33\x4d\x5f\x50\x5d\x31\x50\x6d\xc4\x61\xfe\xef\x6e\x38\xb0\x73\x77\x14\xbc\xbc\xf8\xd1\x2d\xd3\xe7\xdc\xfe\xd1\x7e\xc8\xda\xff\xd1\x1d\x2d\xe5\x5b\x9e\x5a\x55\xbd\xb4\xd6\xe8\x1e\xbc\xa5\xdb\x71\xae\xe8\xf5\x77\xaf\x3d\x2c\xe9\x09\x69\x08\xd1\xdb\xb8\x61\x94\x8c\x6c\xc8\xe3\x75\x23\x14\x06\x32\x8a\x18\x03\x36\xd7\x2e\x07\x8e\x8b\x63\x65\x71\xa1\x53\x5c\x22\x1a\xf0\xa5\xa4\x20\x94\x62\x4b\xc9\x48\x4b\x45\xc9\x28\x59\x6f\x52\xa4\xeb\xc3\xf9\xf8\x89\x08\x17\x51\x85\x64\x48\x17\xa7\xb4\xc3\xc1\x38\xda\x05\xfb\xb3\xe7\xee\xef\xc9\xcd\xed\xd9\x3f\x57\xb8\x74\x97\xb9\x79\xdb\xdc\x24\x55\xaa\x3d\x29\x12\x37\x3b\xd2\x0b\x8c\x31\xb1\x26\x8f\x85\x1b\xf6\x7f\x51\xb5\xe5\x54\xff\x82\x53\x5b\xaa\xe8\xd7\xfe\xd3\x8f\xfa\x1f\x9c\x79\xb6\x60\xfd\x33\xdb\x48\xb4\x3f\xdd\xff\x85\xbd\x61\x7e\x7e\x5e\x6f\xbd\x9d\xf5\x7d\x05\x42\x74\x3f\xe3\x0d\x31\x88\x7b\x16\xc2\x61\x20\xa7\x58\xde\x8f\x10\xa2\x32\x44\xfb\x78\x00\x88\x6b\x40\x32\x19\xe9\xe2\x80\x10\x0d\xf1\x69\x34\x1a\x83\x26\x2d\x4d\xa1\x50\xa4\xeb\x15\x31\xe1\x7c\xa2\x0d\x1c\x0a\xc7\x64\x74\x0e\x4b\xaa\x1c\x07\xe8\xcc\x7e\xe3\x23\x4d\xc7\xc1\xf9\x0e\xc7\xfc\x83\x1d\xff\x7a\xe3\xb3\xcf\xe0\x5e\x5d\x46\x89\x39\x56\x99\x5e\x9a\x41\x2a\xf1\x32\xff\xdb\x15\xeb\xee\xe9\xeb\xbb\x6f\xe3\x74\xbc\xdb\xbf\x8d\x1b\xf6\x87\x09\x51\xd6\xea\x8e\xbc\x9c\x8e\x4a\x2b\xf3\x61\x21\x44\x3b\x98\x8f\xdd\x22\x4e\x60\x89\x17\x82\x83\x80\x72\x1e\xc7\x54\x77\x0d\xcb\x97\x36\xa9\xcb\x63\x64\xe2\x2c\xd0\x2b\x5c\x79\x13\x39\x23\x0d\x81\xa9\x5a\x26\xa4\x47\xa9\xc9\xe2\x87\x37\x56\x8c\xea\xdc\xb3\x0b\xcc\x17\x84\x97\x69\x38\xfd\x5a\xd8\x00\xd9\x0b\x6f\x5f\x26\xb8\xe0\xed\xd2\x39\x8e\x38\x7f\x67\x68\x6e\xee\x15\x8e\xb3\xba\x31\x11\x52\xbd\x1f\x42\x59\x26\x43\x9c\xa8\x15\x91\x8e\x80\x44\x02\x11\x0e\x3e\xc1\xa6\x64\xc9\xe0\x52\x5c\x62\xef\x28\xbc\x73\x41\x38\xf5\x7f\x85\xdb\xb8\xe1\x8b\x0a\x3a\xf2\x43\xb3\x70\x1c\x06\x45\x99\xdf\x18\x18\x4f\x0c\x4a\x42\xd9\xde\x4c\x04\x3c\x70\x14\x38\x56\xcd\xb1\x1d\x11\x12\x17\xca\x06\x92\x46\x95\xa4\x48\x4c\x53\xa4\xeb\x63\x64\x3c\xd3\xbb\x26\xcc\x12\xfd\x04\x29\xd3\x74\x7f\xe7\x1f\xb7\xbc\xb2\xa7\xaa\x6a\xcf\x2b\x5b\x84\x22\x72\xab\xbf\xf3\x8f\xb5\x83\xd3\x53\x53\xa7\x0f\xd6\xd2\xaf\x85\x43\x65\x6b\xee\xed\x5f\xf0\xc0\x86\x0a\x6e\xd8\x1f\x2e\xc8\x32\x6a\xbb\xf3\xf3\xda\xa7\x5b\x18\x1e\x45\x38\x41\x77\xb3\xfe\x68\x90\xcd\x9b\x8e\x01\x11\x34\x13\xc9\x64\x6c\x87\x8c\x6b\x60\xb9\x4a\x2c\x52\xa2\x61\x91\x92\x38\x86\x45\xe7\x59\xd6\x9b\x5e\x61\x20\x8e\x52\xe2\x56\xea\x15\x0e\xf1\x4c\xd6\x2b\x0c\x74\xe1\x1f\xfd\x37\xff\x87\xa9\xd8\x5e\x95\x93\xc4\x1b\xf1\x93\x1b\xfc\x0f\x84\x79\x9d\xb0\xea\x43\x46\x1e\x73\x02\xa7\xeb\x7a\xee\xf8\xec\x2e\x3c\xe7\xa2\x02\xdf\x36\x22\xfc\x6a\x11\xb5\x8b\x72\x96\x23\x44\x9f\x67\xf5\x79\x72\xbd\x59\x4a\x39\x46\x1c\xd4\xcb\x80\xd5\x64\xe0\x50\x9f\x9c\xc7\x62\x4f\xc2\x44\x2d\x50\x03\x3e\xb5\x8a\x65\x6a\x32\x84\x9f\xb8\x3f\xb1\x29\x47\xf4\x4a\xa2\x57\xb2\xa9\xa8\xd4\x13\xa5\x9e\xc8\x1d\x1f\x17\xde\x2f\x8c\x08\x1f\x83\xfc\x06\xf7\xc7\xb9\x87\x40\xfe\xe7\x1f\x84\x11\x3c\xe8\x3f\xce\x7e\xbe\xc6\xe7\xfc\xfb\xf0\x26\xf6\x53\xea\x8f\x45\x80\x66\x8f\x7d\x45\x77\xb3\xfa\xab\x8d\xde\x86\x94\x2b\xd6\x5f\x95\xc3\x65\x05\x58\x93\x42\x05\x58\x93\xa9\x0f\x50\x51\xa1\x23\xd7\x9e\x99\x6e\x8e\x53\xc5\x44\x47\x84\xa1\x62\x28\x0e\xe3\x45\x7b\x66\x82\x1f\x78\x52\x21\xd6\x49\x20\xf0\x20\xd3\x80\xd9\x60\x70\xe2\xa1\xda\x85\xe5\xc9\xfa\xea\xa5\xf5\x05\xbd\x35\xd6\xd1\x99\xd7\x9d\x19\xd8\x78\xee\x40\x7d\x4a\x51\x8b\x6b\xd3\xae\x99\x47\xdf\xdc\xd8\xfb\xc2\xcd\x5d\x17\xac\x0d\x83\xde\xba\xd5\x8d\xd6\x9b\x8e\xbc\x48\xaa\xf4\x9e\x59\x79\xf6\x99\x25\xc6\xd4\x82\xa6\xac\xee\x5b\x17\x17\x38\x17\xdf\x36\x90\xd7\x35\xb3\x42\x9b\xf1\xc8\x8e\x81\x93\xcb\x0b\x73\x17\x9d\x1c\xca\x69\x29\x33\x1a\xcb\x5a\xf3\xb6\xad\x79\x49\x9a\xdf\xfb\x02\xf1\x54\x56\xa7\x27\x8c\xe2\x20\x6d\x5d\x1c\xa3\xad\xd3\x04\x08\xdc\x78\xad\xb8\xc8\x0d\x0a\x30\x28\x1c\x0a\x52\x75\xe1\x82\xe0\xb8\x70\x81\x1b\xfe\xa1\x99\x7c\x78\xc9\xc8\x0d\x5f\x62\xb9\x03\xc8\x86\x10\x2d\x65\xd8\x0a\xb6\x4e\x81\xb6\x8b\xda\x5b\xdc\x38\x7e\x4e\xc3\x36\x6c\x25\x52\xea\x4d\x0a\x05\x2f\xde\x54\x5c\x28\x84\xc7\x3c\x2f\x6e\x75\xe2\x3c\xa2\xa5\x17\x84\x93\x18\x67\x75\xdf\xb8\xa0\x24\x3d\xc7\x6b\x89\x01\x22\x3e\x87\x7e\xed\xff\xd5\xd3\x82\x70\x7f\xe3\x59\xe2\x5c\x73\x66\x2f\x91\x89\xcf\xd3\x8e\x9d\xa7\xaf\x71\xc3\x28\x41\x7c\x9e\x36\x12\x48\x90\x10\x4f\x1a\x00\x0a\xf0\xe1\x25\x83\x2f\xce\x62\x8a\x65\x83\x98\x40\x87\x17\x08\xb5\xba\x41\x8f\x13\x5b\xa1\x0a\x22\xfd\xdf\x6a\xbd\x9d\xdb\x5a\x6b\x57\xa4\xc4\x45\x9a\x6d\x99\xca\xec\x6a\x47\x5a\x44\x9a\x10\x0d\x72\xb2\xe8\x9f\xc4\x75\x71\x66\xc1\x82\x19\x76\x6d\xf8\x2f\x69\x98\x9c\xd3\x58\xf2\x93\x6a\xc5\x99\x2b\xed\x11\x77\xd3\xdf\x8d\xef\x11\x40\x67\x49\x7b\x84\xb8\xdd\x73\x1d\x88\xe3\x34\xdc\xd4\x3d\xc2\x41\xa4\x3d\xe2\xa5\x0b\x0f\xab\xfe\x7c\xe9\x01\x69\x8f\xb8\xa8\xf4\x7f\x0c\x3d\x2c\xdf\x1d\x21\x5a\xcd\x0d\x23\x8d\xb8\x43\xc4\x01\xc1\x44\xe2\x2b\x27\xe2\xfe\x07\xfd\x1c\xc5\x18\xc7\x35\xa0\xa0\x4c\x35\x48\x63\x52\x1b\x42\x32\x9d\x9a\x5d\x47\xab\x2f\x14\x6e\xaf\x1c\xb8\x6f\x75\xc9\x68\x7c\xae\xcf\x51\xbc\xbb\x98\xd5\xd8\x2b\x8d\x8d\xcb\x5f\x39\xbc\x15\x7e\x23\x38\x9b\x16\x95\xc4\xab\x94\x78\x58\x1a\xd3\x00\x42\x74\x0d\x1b\x93\xc9\x9b\xc6\x73\x84\x88\xc7\x00\x53\xc9\x3b\x10\xa5\x1a\xa6\x91\x47\xa0\x08\x36\x2c\x99\x74\x78\x05\xfe\xd3\x2b\x60\xf6\x03\xff\xb8\xff\x9f\x17\xbf\x09\x8c\x89\xed\x7d\x5c\xf0\xbe\xc2\xdd\xf4\x6f\x0c\xdb\x6b\xf7\x66\x20\x0e\x71\xb3\xe4\x32\xe9\xe6\x14\x63\x84\xf8\x0e\x51\x19\x61\xe4\xeb\xd1\x28\x3a\x80\xba\x61\xe7\x7a\xe8\xfe\x4c\x70\x81\x67\xac\x50\x7d\x70\x69\xcd\xf8\x63\x2e\xc6\xf8\xff\x06\x3d\xdc\x30\xc2\xc8\x81\x10\xdd\x79\xa5\x3d\x36\xe0\x79\xfc\xb1\x3d\x56\x79\xd5\x3d\xd6\x81\xd1\xf2\xb5\xa7\x37\x97\x95\x6d\x3e\xbd\x56\xb8\x47\xb8\x80\xd1\x72\x6f\x67\xa1\x4e\x57\xd8\xe9\xe5\x86\xfd\x4f\x97\xae\xba\xab\xaf\xf7\xee\xb5\x5e\xfa\x8d\x7f\x58\x48\xb2\x54\x76\xe4\xe5\xb6\x7a\x4d\xcc\xf7\xbb\x04\x21\x3a\xc8\x38\x09\x62\x51\x0a\x1b\x3b\x92\x01\xcf\x21\xbe\x5f\x3c\xbd\xe2\x58\xac\xa9\x2b\xa0\x1f\x28\x95\xca\x14\x65\x32\x3b\x61\x53\xe5\x7c\x82\x0d\x26\xf4\xc6\x01\x97\x9d\xad\x9d\x35\xf3\x0e\xcf\xcf\xcb\x1f\xb8\xb9\x4f\xf8\xaf\x0b\x24\xf2\xc2\x85\x4b\xdf\x94\x5a\x3d\x46\x85\xc2\xe8\xb1\x92\xde\x92\xa1\x3b\x58\x8f\xc4\x97\xcd\x0d\x5f\xfa\x46\x88\xb7\x56\x75\x4a\xbd\x1a\x3f\x87\xa2\x90\x8e\x45\xf1\x91\xa8\x1a\x22\x16\xc0\x60\x8b\x96\xad\x1e\x0d\xf8\xa2\xa3\xa3\x75\xd1\x09\x69\x8a\xf4\x54\x36\xbf\x26\xf6\x46\x31\xa1\x27\xbb\xde\x1b\x3f\x7d\x2e\xbc\x17\x3c\x7a\xc8\x96\xab\x1c\x3c\x80\x6a\x58\xdd\xa0\x37\x90\x9d\xe9\x7d\x01\xfc\xa8\x1c\x64\x80\x40\x86\x86\x10\x46\x20\xc3\x20\xea\x7d\x8c\x81\x2e\x49\x9c\xed\xac\xe4\x66\x32\x9b\x1f\x76\x64\xb7\x1a\x55\x26\x85\x52\xd2\xfb\xf8\x80\xa5\xc4\x48\xfa\xa5\xad\x56\x33\xa1\x6a\x48\x20\x43\x0a\x0a\x89\x61\x7a\x6f\xd1\xbe\xdb\x85\x39\xf0\xa8\xa5\x7e\x71\x45\xf9\x82\x0a\x3d\xb9\x50\xb3\xeb\xf9\x35\x6b\xcf\x5e\x37\xc3\x77\xfd\x6b\x1b\x57\x9e\xd9\x5d\x83\xe1\xcf\xd5\x43\x4d\x19\xbf\x3e\xe7\x3d\x57\xd1\x73\xd3\xc2\x7c\x5b\xd3\xea\x9a\x45\xcf\x1e\x68\x9a\x75\xe2\x83\xfd\xc2\x4b\xfb\x3f\x38\x3e\xb3\x6a\xe7\x99\x35\xe2\xd9\xb9\x60\xec\x3c\x5d\xce\x7c\xfa\x36\xd4\x23\x25\xcf\xa4\x20\x8a\x40\x46\xa1\x8f\xc5\x62\x45\x1d\x21\x4e\xe2\x12\x11\x97\x4f\x32\xf2\xe9\xbc\x96\x50\x0b\xf6\x5d\x80\x2f\x3e\x49\xdc\xb1\x34\x21\xda\x91\x64\xe4\x6b\xf7\x46\x58\x2d\x06\x85\x42\xa1\x4c\x63\xe7\x6d\x0c\x36\xa4\x61\x85\x93\xe9\x57\x0a\x87\x33\x26\xd6\x91\x17\xab\x08\xd5\xe9\x0a\x59\xc1\x74\xf9\x8b\x4f\x3e\xf4\x64\xdf\xdf\xfe\xd6\xf7\xe4\x43\x4f\xbe\xf8\x59\x54\xaa\xd3\xac\xcf\x4a\x8a\x8c\x4c\xca\xd2\x9b\x9d\xa9\x51\x70\x51\xf8\x5e\xf8\x0e\xc2\x40\xb6\xdc\x7f\x9c\x1b\xf6\xaf\xbb\x01\x64\x10\x26\x7c\x27\x7c\x1f\xdb\xb2\xb1\x21\x2d\xad\x61\x63\x8b\x60\x68\xdd\x24\xfe\xb6\xa9\x55\x1c\x63\x04\x42\x34\x95\xad\x59\x2d\x72\x78\x73\xb8\x2b\xd6\xe5\x8a\x6b\xe0\x03\xa7\x33\x42\x1a\xb5\x2a\x56\x5c\xbf\xe9\xe2\xde\xa0\xb1\x89\x6b\x48\x34\x9a\x02\x3c\x1b\xa0\x8a\x73\x38\x14\x86\x34\x9e\x64\x0b\x82\xf0\x17\x61\x0c\xea\x76\xee\xab\x3b\x70\x6e\x13\xbc\xe1\x4f\x3e\x7c\xf8\xfd\xf7\x8f\x1c\xc2\x8d\xfe\xa7\xf0\x51\xf7\xf3\x7b\x07\xee\x5c\xe6\xfe\xa1\x99\xc2\xea\x6b\xe1\xd3\x1d\x62\x5f\x36\x8d\x9d\xa7\xed\xbc\x12\x65\x20\x2f\x2a\xf0\x3a\xd3\x83\xd9\x5f\x78\x35\x07\x48\xaa\x88\x1b\xaa\xb9\x96\x0c\xbe\x4c\x1b\x20\xb7\xd3\xe6\xcd\xf4\x26\x27\x4d\x0b\x47\x19\x90\x21\xe3\x27\x24\xd9\x8a\x73\xa2\x84\xe4\xc7\xba\x5c\x6e\x96\x64\xcd\x8a\xe1\xca\x5c\x2e\xcd\xa4\xba\x67\xe2\x7c\xc2\xb7\x2e\x7d\x68\x4d\x71\xc5\x8e\xe7\xd6\x6f\x78\x6e\x67\x45\xcd\x35\xa7\x57\xb8\xe6\x14\x26\x9f\x73\xf6\x5d\x37\xc7\xbb\x7c\x6e\x71\x74\xc5\xa9\xa2\xca\xbe\xd2\xc4\xa4\x92\xf9\x55\x95\x7d\xa5\x49\x49\x65\x7d\x44\xf0\x5d\x7b\x66\x89\x7a\xd5\xcb\x87\x9a\x66\x1d\x7d\x63\x9d\x9a\xb8\x5f\x06\xdd\xab\x6b\x34\x11\x71\xfa\x2c\x43\xd7\xba\x3a\x6b\x6c\x54\x6e\xf3\xfa\x59\xd5\x33\xcf\xe6\xce\x59\x59\xa2\xae\xdc\xd4\xe9\x74\x76\x6e\xaa\x54\x97\xac\x9c\x93\x2b\xc5\x8b\x6e\x16\xcf\x53\xc6\x5f\xab\x43\x86\x1f\xa9\x7b\xaa\x1d\xaf\x7b\xca\x76\x0f\x84\x0c\xfa\xe4\x44\xa5\x4e\x99\x10\xa7\x42\xb1\x48\xa1\x97\xf3\xac\xbe\xe6\xe4\x28\x35\x28\xf4\x52\xb2\xa0\xc9\x91\xc7\x74\x8e\x9b\xe1\xd9\xc5\x0f\xad\x2f\x9b\xd7\xb1\x7a\xb5\x67\xc5\xc9\x85\xc2\x37\x10\xd9\x37\xaf\x63\x81\xf0\xcd\xdb\xef\x2d\x5b\xfa\x6b\xea\x31\x36\xac\xf2\x35\x6c\x48\x4d\xd8\xd7\x3a\x63\xed\x0c\x0b\xbc\x23\x8c\x56\x57\x94\xd5\x3d\xb6\xb5\xca\x1b\x38\xaf\xb2\xa9\x67\x72\x5e\x96\xb6\x21\xa0\x34\x2a\x62\x08\x1f\xca\xcb\xca\xf6\xf7\x8d\x90\xc3\x64\xe3\xa5\xfd\x01\x6e\x76\x8b\xf0\x32\x3d\x4b\x3d\x4c\xff\x74\x78\x73\x28\x60\xc0\x33\x83\x68\x1d\x6d\x03\x2f\xe7\x48\x20\x09\x48\x43\xc4\xd9\x15\xa7\x56\x31\x62\x00\x85\x42\x11\x17\xc6\xc7\xdb\xdc\x01\x05\x94\x48\xfa\x28\xf0\xbc\x4c\xaf\xd0\x1f\xcb\x2d\xd2\x47\x73\x11\xf8\xab\x9b\x55\x7f\xf6\xd7\x7c\xac\x02\x7f\x98\x29\x1d\x56\x0a\x5f\xbd\x22\x6b\xbe\xf6\xa9\xc5\xb0\xfb\xd2\xb5\x02\x82\x72\xe1\x65\x0c\xf0\xdd\x5d\x42\x27\x7e\x34\xc8\xa3\xf8\x10\xf5\xfc\x98\x1e\xaa\xfd\x29\x3d\x14\x26\xe8\xa1\xa0\x27\xc4\xf5\xa1\xeb\x2e\xc1\x0f\xf0\x15\xa0\x63\xd9\x1f\xe6\xdc\x0c\xe8\x3c\x80\x70\x11\x9e\x11\x1a\xc4\x1f\x5c\x80\xb1\xd0\x0a\x0f\xb3\x1f\xf0\xbf\xce\xce\xc9\xcd\x63\x5f\xd1\x39\x74\x06\x2a\x10\x75\x51\xdd\xcf\xd3\x45\x53\x26\xeb\xa2\x6e\x67\xb6\xdd\x9a\x6e\x4c\x53\xc5\x46\x45\x86\xc9\x50\x01\x14\x48\xba\xa8\xeb\x0a\xaa\x28\xff\x23\x9a\xe8\xda\x75\x83\x09\xee\xb9\xc5\x8e\xf6\x0a\xf3\xd7\x0d\xbb\x1e\x9b\xbf\xf4\xf1\xad\x95\x0b\x3a\x17\x2d\xab\xdf\xfd\xcc\xd2\xce\x27\xaf\x6f\xfd\xda\x54\xd9\x57\x5c\xdc\x55\x9a\xba\x65\xdd\x27\x78\x67\x7d\x49\x82\x23\x5d\xab\x36\x3b\x52\x7c\x9b\xe6\xd8\xad\x4d\xeb\x67\xd4\x6e\x32\xa6\xee\xe8\x9a\xb1\x69\x4e\x66\xfa\xec\x6b\xda\x53\x0a\x33\x13\xe2\x33\xdc\xc9\xcd\xd5\x4f\x04\x73\xbd\xf2\x19\x0e\x76\xb2\xfe\xa9\xfd\x31\xfd\x73\x64\x44\x70\x8d\x8c\x50\xcf\xc5\x37\xf0\x5f\xfd\xa9\xd4\xe3\x4f\x65\x32\xbb\x01\x21\xfa\x14\xc3\x5b\x5a\xbc\xc6\x70\x56\xfd\x30\x58\x6d\x4c\x3c\x64\xb5\x0d\x9c\x74\xcb\xd8\x90\x2e\x06\x81\xad\x54\xc2\x5d\x9a\x1f\x1c\x19\x39\x06\x73\x21\x5d\x98\x0d\xef\x08\x6f\xc3\xe3\xc2\x2c\xea\x11\x1a\xe1\x29\xff\xb7\xfe\x77\x11\xa0\xcc\x40\x5f\x27\xeb\xb7\xda\x9f\xd2\x6f\x25\x4b\xde\x2d\x59\xf2\x34\x7f\x54\x78\x3c\xbd\xfb\x17\xab\x9c\x60\x72\x55\xa6\x47\x89\x83\x20\x1b\x85\xff\xf9\xc5\x17\xb7\x37\xbe\x9d\xbd\xf0\xae\x21\x78\x87\x8d\x65\x2b\x42\xb4\x9c\x8d\x25\xd5\x9b\x24\x0f\xd4\xa6\x63\x72\x21\x18\x07\x04\x13\xab\x50\x70\xa2\xea\xc5\x0a\x74\x12\x03\x11\x1f\x86\x7b\xce\x80\xed\x2f\x4f\xdd\xfb\xd4\x5f\x20\x0b\x2c\x44\x79\xf1\x0d\xbc\xd8\x7f\x2b\x5e\xee\xbf\x49\x5c\x6c\xe3\xf2\x9e\x52\xab\x55\xdb\x10\x18\xc1\xb8\xa6\x3a\xa9\x56\x6b\xfe\xa8\x50\x30\x3a\x0a\x6f\x8e\xc2\xb3\x42\x3d\xf5\x08\xc5\xf0\xda\xc4\xfb\x4d\xca\xd5\x9b\x78\x2f\xf6\xf2\x42\xb9\x7a\xf9\x23\x82\x7b\x94\x3c\x14\x5c\xfc\x12\x6f\xf6\xad\xc1\xeb\x43\xf5\x07\xc7\x37\x8e\xc0\xcb\x0f\xd6\x1f\xbc\x55\xe8\x1c\x15\x7a\xa8\x8b\x6c\xb9\x74\x2d\xd9\xf2\xb2\xb4\x4f\xce\x15\x7a\xe9\x3a\x1e\x21\x1d\xab\x90\x9e\xea\x4d\xca\xb2\xa7\xe9\xe3\x94\x72\x4e\x0e\x52\xc6\x19\x33\x5e\x13\xc0\x97\x14\x87\xf9\x38\x96\x7d\xe2\x56\x38\x14\xc9\x44\x3d\xc1\xbb\x6d\xca\xcf\xc2\x16\x45\x29\x71\xea\x99\x6b\x35\x8a\xa8\xe7\xba\x17\xdd\xda\x7b\xa1\xef\xd6\xc5\x6e\xf7\xe2\x5b\xfb\x2e\xf4\xde\xba\xc8\x4d\x5c\xea\xcc\x0a\xbb\xbd\x22\x53\xed\x3f\xad\xca\x28\xb7\x67\x96\x67\xa8\xb1\x65\xe0\xf4\xe1\x5e\x15\xbc\x24\x54\x28\x7b\x0f\x3f\x3d\xa0\x5e\xf4\xf4\xe1\x5e\xa5\xb0\x04\x6e\x55\xf6\x1d\x3e\x3d\xa0\x76\x0f\xb6\x55\xaa\xfc\x0d\xca\xca\xf6\xc1\xc2\x82\xc1\xb6\xe9\x2a\xfc\x94\xaa\xb2\x6d\x91\x5b\xd2\x87\x0f\x0a\x2f\xb3\xfd\x66\xb2\xed\xa0\xfd\x19\xb6\xc3\xc1\x51\x78\x64\xe4\xa8\xea\x83\x4b\x7f\xa0\x1e\x51\x18\xd2\x76\x16\xac\xc7\x5b\x13\xc4\xc2\xa8\x81\x4d\x98\x09\xb6\x83\xb4\x16\x24\xd3\x41\x69\x52\x1b\x62\xc4\x49\xa4\xbf\x92\xd1\xe0\xa0\x35\xa3\x45\x3b\x2a\x96\x3d\xb1\x65\xfa\x48\xb2\xa7\xcd\x53\xb9\xb5\x78\x14\x56\x46\x46\xe5\x2d\xbc\x6d\x31\x34\x08\xcf\x14\xcd\xce\xd7\x46\x45\xe2\x70\x04\x68\x31\x42\x74\x80\x8d\x23\x64\x2f\x68\x7f\xb6\xbd\x30\xe7\xe4\xe7\x27\xcf\x5f\x22\xc1\x71\x90\x2d\xe3\x1c\xee\x7d\xc2\xcb\xf4\x1c\xf5\x4c\xb1\x17\xb4\xff\xaf\xf6\x82\x4f\x7c\xc6\x02\xd5\xdb\x97\xb6\x8d\x3f\x46\x12\x19\xf5\x20\xcc\xea\x35\x1e\x60\x67\x90\x64\x2f\x20\x3e\xc0\x4f\x13\x20\xae\xd5\x36\x04\xb5\x0a\x69\x5a\x32\x7b\x41\x91\x9e\xca\xc6\x32\xd1\x5a\x70\xea\x27\xe8\xc4\xd8\x7b\xef\xa2\x3b\x96\xba\xdd\x4b\xef\x58\x24\x2c\x13\xbe\xc0\xf2\x7b\xf3\xaa\x32\x94\xca\x8c\xaa\x3c\x7c\x2a\xaf\x7d\x53\x6d\xdd\x8e\x1e\x17\xd9\xf6\xa2\xff\x29\xe1\x5d\x9d\xcd\x9d\x98\xe0\xb2\x25\x22\x82\x36\x20\x44\x7b\xa9\xe7\x2a\xb6\x82\xf6\x7f\x6f\x2b\xf4\x96\x74\x1f\xec\xce\xce\xee\x3e\xd8\x2d\x7c\xf0\x05\x41\x17\x2e\xf8\x51\x49\x96\x47\x3f\x6d\x9a\xde\x93\x85\x1f\x73\x74\x6c\x61\x1d\x12\xb7\x24\xea\xf1\x9f\x13\x5e\x11\xfb\x94\x58\x9c\x93\x12\xe0\xef\xe9\x63\x7d\x9a\x62\x2b\x68\x7f\xc4\x56\xd0\x4f\xb2\x15\xf4\xa1\x9e\xec\x81\xcc\xc1\x7b\x56\x14\x16\xae\xb8\x67\xd0\xff\xd9\x08\x64\x3a\xeb\xb2\xd4\xea\xac\x3a\x27\x3e\xe3\xe8\xda\xe1\xab\xdf\xd9\xed\xa4\x1e\xff\x4b\xc2\xaf\x13\x32\xdc\xc9\xc9\x85\x76\xc6\xe2\x86\xd6\x8f\x7d\x45\x6b\x69\x23\xb2\xa3\x5a\x6f\x15\x02\x24\x43\x20\x1b\x42\x94\xe7\x78\xca\x0d\x21\x19\xe2\xa9\x8c\xef\x93\x07\xe3\xb0\x29\x21\x4e\x83\x64\xe2\x03\x64\x4d\xb7\x98\x27\x14\x92\xb3\x83\x9d\x9d\x86\x93\x8e\xc1\x29\x27\xa0\x9b\x65\x9f\xe2\xe9\xd9\xad\x5e\xf3\x27\x0d\x3b\x1e\xec\xda\xf5\xea\x4e\xaf\x77\xe7\xab\xbb\x16\x3e\xbc\xb9\xf2\x13\x43\x69\x6b\x7e\xed\x82\xf2\x54\x4e\x38\x06\x4b\xf9\x34\x6f\x3f\x39\xa4\xcb\xab\x4c\x6f\xbc\x6e\xa0\x78\xee\xb1\x37\x56\x1a\x57\xbe\x7e\xac\xb5\x78\xe9\xcd\xac\x98\x5c\xee\xcc\xa5\x85\x0f\xba\x17\xfa\xec\x08\xa3\x59\x63\xe7\xe9\x4d\xb4\x91\x65\x8e\x5f\x1f\xb4\x19\x10\x22\x3c\x62\x7c\xdb\xd0\x29\x9e\x53\xec\x30\x97\x52\xec\x93\x71\x30\x5b\xd4\x70\xa5\x66\x94\x6a\xa4\xb6\x28\xe0\xe4\xb7\x84\x5a\x71\x9c\xb6\x01\x05\x00\xd2\x53\x5b\xb6\x8b\xf6\x85\x49\xa1\x50\x59\x8d\x92\x3f\xcf\x21\xe5\xa8\x84\xe4\x60\x91\x3c\xb9\x53\xb9\xdb\x6a\x16\x70\x8e\x79\xd7\xb6\x75\x1f\x9a\x97\x95\x35\xef\xfa\xee\x8e\xfd\xf3\xf2\x68\xff\xff\xfc\x0f\x34\x44\xa6\xba\x32\xac\xae\x94\x48\xe9\xdf\xd4\x69\x78\xdd\xc0\x63\x3b\x6a\x66\x1e\x3a\x3b\x54\x3d\x74\xf6\x50\x73\xcd\xf6\x47\x16\x0a\x5e\xea\xf1\xbf\x5c\xb9\x79\x9e\xdb\x3d\x6f\x73\x65\xf5\xf4\xcd\xf3\x0a\x0a\xe6\x6d\x9e\x8e\x30\x6a\x40\x88\xe5\x12\x45\xa3\x44\x51\x0f\x94\x01\x48\x76\x06\x3b\xa3\xd8\xcb\xe4\x27\x1e\x54\x08\xc5\x6b\xe2\x54\x28\x1a\x45\x29\x24\x3b\x43\xf2\x26\x19\x82\x96\x06\x11\xfb\xad\x57\xe8\xd3\xa2\x30\x2d\x1b\x11\xfe\xf2\xe5\x0f\x80\x16\x2c\x2d\x5a\x75\xcf\xa2\xd7\xd5\xf6\xaa\x1c\xb0\x0b\x7f\x73\x34\xe4\x68\xc4\xe9\x0e\x47\x84\x55\xf0\x6c\xc6\xed\x0b\xeb\x77\x74\xe5\x0b\xf7\x24\xb9\x33\x75\xe0\x49\xb4\x17\xb2\x3d\x68\xec\xcf\x42\x03\xf5\xf0\x08\x39\x90\xcf\x5b\x87\x81\x82\x15\x38\x1a\x07\x84\x53\x03\x26\xb4\x3e\x0c\x64\x3c\x33\x59\xfb\x82\x5b\x44\x4a\x03\x92\xcb\xb9\x76\x71\xf7\x0e\xc5\x55\xf4\xd8\xe7\xc8\x13\x4d\x39\xab\xc5\x66\x08\xaa\x8b\x81\xb0\x8a\xda\x71\x19\x7c\xd8\x39\xb1\xd2\x91\xc1\xe9\x70\x3a\xd4\x0e\xbc\xfe\xdb\x40\x51\x32\xc8\xe9\xb8\x66\x96\xa1\x48\x1f\x1d\x96\xa0\xd3\x85\x15\x7b\x21\x58\xa4\xec\xd9\x67\x47\xbe\xa5\x8f\x09\xdf\x49\x95\xca\x7e\xe3\x1f\xe9\xb8\xbe\x27\x47\x16\xfe\x02\xe1\x08\xee\x6e\x2d\x1f\x2f\x5c\x46\x1f\x7b\xf8\x94\x94\x1f\xbe\x65\xec\x3c\xab\x47\x27\xad\x29\xca\xf1\x1c\xe5\x87\xc4\xc1\xc8\x00\x0d\x21\x5e\xdc\x78\x64\x7d\xc1\x85\x94\xd2\x10\x5a\x5d\xc9\xf8\xaa\x6b\xea\x27\x8a\x33\xca\xf4\x6a\x7d\x32\xc1\x2b\x7f\xbc\x3a\x63\xc5\xbc\x12\x3d\x07\xfd\xc2\x9d\x7c\x6a\x69\xd7\xd5\x6b\x34\xe6\xcc\x1c\x2c\x7c\xa8\x60\x60\x46\x96\x68\x47\xa4\x20\xc4\xce\x8a\x44\x64\x45\x43\x12\x7a\x4c\x3f\x35\x18\xa3\x9d\x1c\x8c\xd1\x79\x6d\x57\x6a\x83\x42\x4d\x24\xf6\xe4\x40\xeb\x76\x6f\x5c\x52\x12\x42\x49\xd6\xa4\xf4\xd4\x64\x94\x88\x12\x7f\x34\x7a\xe3\x76\xe7\xb9\x26\x05\x6f\x88\x59\xd5\x7d\x74\x41\x7e\xfe\x82\xa3\xdd\x63\xe8\xb0\xb9\x65\x5f\xaf\x0d\x74\x35\x15\x78\xbe\x2a\x43\x72\xd9\x64\x50\x8f\xb0\x27\xbf\x6b\xa7\xcf\x77\x4d\x8f\x2b\xa4\x17\xc2\x6f\xfe\x0f\xbc\xe3\x7f\x5d\x78\x29\x29\xbb\x38\x25\xd9\x9d\x99\x80\x42\xb1\x9b\x13\x2c\x3f\xc5\x10\x44\xf5\x24\x61\x40\x61\x72\x4c\x65\x88\xf6\x8b\xf6\xa0\x76\x52\xe8\x46\xe7\x35\x5c\x31\xc0\x33\xb9\x55\xbb\x57\xf1\x53\x31\x1e\xfd\xd4\x18\x4f\xf7\x13\xa3\x96\x8e\xeb\x7b\x72\x73\x7b\xae\xef\x10\xbe\x78\x62\x74\x14\xee\xb2\x18\x1d\xa9\x51\x51\xa9\x0e\x23\xbe\x0b\x6e\x13\xf6\xe4\xcf\xdb\xc1\x86\x05\x7f\x15\x44\x9d\x7d\xe2\x70\x00\x85\x07\xea\xfb\xa5\xa0\x42\xaf\x0b\x03\x01\x35\x43\xd1\xca\x81\xe7\x00\x01\x8f\x42\xe1\xbf\x14\xb1\xaf\xb8\x7d\x3c\xe6\xa3\x60\x3a\xcc\xe4\x38\xa5\x62\xea\xfa\xd1\xe3\xfb\x85\xcf\x2e\xaf\xea\x77\xe3\x8d\x23\xa0\xa3\x4f\x0b\xa3\x53\x6b\xfb\xd1\xa7\x1f\xbe\xe7\x9e\xa0\x8e\x76\x5b\x40\x67\x16\x4f\x3e\x82\xc9\x1a\xc6\x69\xca\x74\x28\xdc\x11\xe8\xc9\x14\xfd\x26\x14\x08\x52\xc0\x56\x78\x6b\x44\xb8\x7f\x44\xb8\x47\x52\x3d\x2e\xbe\x21\xdc\x06\x0b\x25\xfd\xb7\x5d\x3c\x0b\xb8\x61\x64\x94\xb2\x4b\xa4\x8a\xed\x94\x60\x1c\x37\xa1\xec\x9b\x14\xe8\x34\x22\x23\xab\xf5\x66\x62\xe7\xbc\x62\x72\x64\x9a\x61\x35\x18\xf3\x40\xe8\x17\x7a\x53\xce\x9c\xb5\x95\x75\x6b\x8d\x86\x55\x55\xd5\x1b\x5a\x73\x3f\x73\x66\xd8\xdd\x5f\x16\xe7\x98\x73\xb8\xe1\x8b\xf7\x76\xec\xeb\xb0\x57\x54\x54\x54\xd8\x3b\xf6\x75\xd0\x79\x17\xef\x9d\xdb\xdc\x3c\x77\xfc\x5f\xa9\x96\xdd\xd8\x79\xba\x8b\x16\x4d\xed\x9b\xf6\xff\xff\xbe\xed\xca\x9a\xbd\x7a\x7a\xfd\x1a\x83\x61\x55\x4d\xd5\xda\x96\xec\x4f\x72\x33\x72\xdc\x5f\x14\xe6\x99\xb3\x68\x91\xdf\x38\xef\xe0\xbc\xac\xaa\xaa\xaa\xaa\xac\x79\x07\xe7\xe1\x0f\xfd\xc6\xee\xb9\x73\xbb\xc7\xff\x45\xc1\xb5\xde\xc3\x27\x84\xe2\x96\x1c\xe5\x56\xf3\x40\x09\x48\x4e\x29\x08\x03\xb9\x0c\xe4\xfd\xe2\x5c\xe9\x92\x9c\xbc\xe3\x73\x5a\x91\xae\x97\xe6\xf4\x24\x3f\x6f\x80\xcb\x69\x62\xa8\xf5\x53\xe1\xcf\xa3\x83\x77\x8b\x6a\xca\xdd\x83\x42\xea\xf0\xf0\x28\x98\x84\x3f\x8f\x06\x75\x15\x9a\x2f\x6c\x73\x74\x6e\x6b\x68\xd8\x31\x2f\x9f\xe6\x3f\x0c\xc5\xc2\x6b\x7e\xa5\xf0\x5b\xd1\xb8\x4d\x2c\xb0\xe9\xa4\xb9\xd3\x36\xf6\x4f\x7a\x07\xf7\x3a\x72\xa3\x37\xa5\x93\x3e\x17\x61\x82\x88\x68\xc6\x07\xe2\xdb\x14\x50\x18\x70\x32\x14\x88\x70\x47\x40\x20\xc4\x2d\xef\x0c\x07\xb9\x3c\x59\x2e\x9e\xfd\xba\xe6\x36\xaf\xf3\x47\x2e\x8c\x88\x88\x6b\x98\x14\x1f\x1f\xbf\xd8\x5b\xf8\xf3\xaf\x0b\x0f\xd7\x48\x17\x23\x76\x6d\x7b\xbb\x37\xd6\xed\x72\xe6\x3b\xf2\x8c\x2a\x93\x42\x6d\x54\x99\x62\xa6\x89\xcb\xcc\x31\x9e\xba\x1e\x0c\xae\x3b\xd4\x86\xa0\xbb\xcc\x1d\xa4\x12\x95\xfc\x94\x50\xb6\xd9\x3e\xef\x86\x05\x33\xf6\xf4\x3a\xff\x13\xc7\xe8\x9d\xe9\x76\x8f\x7e\xda\x37\xdf\x4c\x4b\xf5\x64\x5b\x1c\x29\x31\xdc\xff\x21\xee\x9e\x9d\xbe\x85\x37\xcc\xb3\x6f\xfe\xfc\x73\xd2\x9c\xb5\xe5\xfd\x3b\x3a\x5c\xab\x1e\xdf\x50\xd8\x5d\x61\x2a\x5f\xbc\xaf\x3a\xe7\xcd\xd6\xda\x7d\x8b\xbd\xc6\xf2\x0e\xe7\xd0\x43\xab\x0a\xda\x6e\x7f\x7f\x6b\xab\x7f\x23\x37\x8c\x00\xad\x1e\xfb\x8a\xde\x42\x9b\x50\xf6\xb8\x6c\xc3\xc2\x65\xe1\x61\xb2\xa1\x00\x1c\x74\x28\x02\x64\x14\x10\x16\x8f\xe6\xf0\x70\xbe\x53\x0e\x3c\xcf\x4c\x4b\xc9\x2d\x9b\x4c\x82\x7a\x95\xf3\x47\x2e\x64\x97\x84\x87\x33\xa1\xa4\x4c\xbe\xd8\x5b\xf8\xf3\xaf\x63\xba\x40\xc0\x51\x93\xcc\x30\x93\xb1\xd9\x59\x19\xe9\x66\x93\x51\xa1\x50\xa8\x8c\xb1\x46\x49\xb6\x06\xa9\x16\x6e\x40\x86\x96\x80\x7f\x22\x90\x3b\x6c\x30\x9b\x2d\xe2\x09\xea\x20\x0f\x9e\x87\xa8\xd4\xfc\xf4\xbc\x52\xfc\x11\x76\x77\x6e\xa8\x98\x77\xb0\x3b\x8f\xae\xfa\xe2\x8b\x55\x34\xaf\xfb\xe0\xbc\xda\xcd\x6d\x79\xf0\x11\x76\x17\x5a\xf2\x53\xa3\xf0\x79\xf8\x75\x6e\x7f\x53\x6e\x73\x45\xe3\xce\x8e\xdc\xfa\x6b\x1e\xeb\x17\x0a\xa9\x47\xf0\xcc\x7f\xec\x9a\x86\x9c\x9e\x83\x9d\x33\x7a\x21\xaf\x69\x7e\x0e\xc2\x48\x8b\x10\xfd\x90\xc5\x7c\xa2\xc4\x9d\x2e\x0a\x78\x51\xff\xe2\x31\xdb\x80\xe7\xb3\x58\x30\x17\xf0\x7c\x05\xe8\xd0\x58\xac\x5d\xf2\x7a\x31\xc8\x20\xe8\x09\xe9\xdc\xf8\xe1\xb2\xeb\xbe\x87\x6f\x3e\x85\x7f\xfe\xdb\xff\x0d\xd4\xde\x0b\x8f\x0a\x73\xc4\x1f\x16\x70\x1a\x00\x3f\x5b\xbf\xcd\x08\xd1\x3b\xd8\x9e\x1a\x23\x3e\x2b\x7a\xd2\xb3\x44\x45\x4a\xfb\x33\x9e\x65\x91\x91\xd2\x45\xaf\x2d\x1a\xfc\x17\x3c\xfd\x09\x9c\xf9\x97\x50\x09\xd1\x43\xda\x78\xd0\x0a\xff\x10\x7f\x98\x62\xf7\x1a\x58\x3a\x3a\x10\x46\xdd\x08\xd1\x97\x58\x6c\x92\x55\x48\x89\x13\x75\xb6\xfa\x70\x90\x89\x56\x24\xc8\xd0\x7c\x71\x6a\xc4\x35\x84\x31\xc3\x95\x79\xf6\x26\x90\xbe\x45\x8c\xfb\xf6\x0c\xca\xc0\x1b\x51\xb2\xf2\x63\x84\xdc\x98\x7b\x57\x5e\xf7\x9f\x96\xdf\xf4\xfe\xfb\x2f\xbf\xf1\x1a\x54\xfc\x97\xf0\xee\xf3\x6d\xf0\x9a\x50\x1c\xfc\xe1\x86\x2f\xfd\x86\x38\x7f\x68\xc6\x5b\xe0\x7d\x14\xec\x07\xf3\x21\xc5\x21\xa7\x37\x4f\xea\x87\x64\xca\xb6\x4b\xd3\x33\x1c\x64\x32\x68\xff\x7f\xef\xc9\xed\xf9\xa7\x4a\x66\xfe\xa9\x6d\xfb\xfb\xef\xff\xf2\x3f\x58\x4f\xde\x7b\x6a\x0e\xc4\x08\xa3\xc1\x1f\xea\xf1\x1f\xc2\x6b\x2e\xbe\x01\xbf\x86\x00\x8f\x53\x29\x42\xf4\x3e\x96\x47\x64\x44\x36\x6f\x3a\x2f\xea\xd9\x18\x10\xee\x47\x72\xb9\xac\x1d\xc9\x64\xe3\xef\x3b\x56\xa1\x56\xeb\x15\x26\xb5\x74\xce\x26\x93\x89\x79\x15\x52\xf0\x81\x65\x13\xbb\x41\x0f\x4a\x3d\xa9\x9a\xbd\xab\x23\x67\x34\xd6\x5c\x60\xce\x1a\x2d\x31\x17\x98\x62\x47\x73\xbb\xf7\xb5\x0a\xcf\x50\xa5\xc0\xdf\x25\x3c\x46\xe2\xa8\xbd\xe3\xba\x3e\xa1\x17\x4e\xe6\x57\x5b\x15\xfe\x47\xf1\x1c\x85\xb5\x3a\x5f\xfc\xbb\xff\xfa\x0e\x1b\xc1\xbf\xf0\x3f\x0e\x47\xa4\x3e\xce\x42\x88\x2e\xa6\x1e\x94\x86\x4c\x28\xcb\x6b\x4b\x05\xe0\xa1\x9e\x00\xf0\x88\x67\x0a\x2a\xcf\xd4\xec\x80\x37\x40\x83\x7c\xb1\x1a\xb5\x3e\xd6\x14\xc7\x26\x4b\x32\x51\xab\x0d\x12\xde\x4a\x16\xec\xa7\xf8\x41\xa8\x9f\xd5\x55\xcb\x1a\x2c\xa3\xd1\xc9\x59\x29\x46\x3c\x92\x9d\x92\x95\x1c\x3d\x62\x6d\x1c\xaa\x15\xce\x93\x51\x41\x7e\xab\xf0\x07\x3c\x4f\x9e\xd7\xb5\xaf\xeb\xd3\x4f\x0b\xeb\xed\xb1\x54\xe8\x86\x07\x62\xed\xf5\x85\x9f\x7e\xda\x7d\xa0\x2b\x97\x87\x0f\x05\x3b\x98\xc4\x3e\x96\x21\x44\x1f\xe3\x86\x51\x2a\x32\xa0\x62\x6f\x61\x64\xc0\xf3\x28\xe7\x31\x02\x82\xfa\x51\x78\xb8\xa4\xaf\xc4\x35\x44\x84\xc9\x38\x1a\x08\x92\x18\xd2\x50\x2a\x4a\xcd\x8d\x35\x30\x27\xb2\x52\x5c\xfd\x7a\x92\xef\x96\xde\xaa\x9e\xe8\x49\x9c\x92\x18\x48\xbe\xd9\x60\x10\x85\x6b\x31\xa4\xf1\x6a\xa2\x54\x1a\x60\x03\x55\x6e\xf9\x8f\xff\x80\x25\x9f\x11\xd9\x7f\xff\x80\xf1\x4b\x34\xdd\xad\x7d\x01\x52\x5d\x36\xf8\xdb\xc0\x3b\xf0\xa7\xd9\xc5\xfe\x13\xdc\xb0\x7f\x19\x3e\xe6\x5f\xac\x11\xfe\x53\x48\x87\x3f\x4d\xaf\xc3\xfe\x3b\xf1\x7c\x5c\x37\x5d\x48\x27\x8f\x43\xbd\xd8\xe7\x0a\x84\x58\x2d\x39\x51\xae\xe5\xde\x52\xb1\xcf\x89\x5a\xcc\xca\xb8\x4d\xed\xb8\x76\x52\xc7\x4d\x46\x94\x86\xd2\x94\x2a\xa5\xfa\x6a\x1d\x8f\x53\xb3\x9e\x5b\x0c\x32\x03\xeb\x3a\x1f\xe8\xfa\x2e\xa2\xdc\xfd\xce\x3b\xd0\xf9\x1b\xfc\xdd\x3b\x2b\xd6\x90\x17\x49\xba\x2b\x2c\x1c\x5e\xa0\x71\xf9\x56\xf2\x61\xff\x1b\x90\x34\xcb\x23\xcc\xa5\x1e\x21\x19\x3e\x11\xe2\x15\xb7\x1e\x16\xfe\x0e\x49\x15\x35\x10\x2f\xac\x86\x3b\xc3\xa0\xa6\x42\xf8\x3b\xbe\x01\xc2\xd8\xbc\x78\x5c\xf0\x52\x9b\x6c\x2d\x2a\x46\x55\x68\x8e\x77\xe6\x74\x90\xf1\x6a\xe0\x10\xae\xb7\x98\x31\xa9\x91\x03\x2f\xe3\x57\x23\x19\x96\xad\x0e\x03\x84\x24\x4f\x4e\x20\x8f\x39\x2e\xc4\x5c\xc9\xfc\x02\x55\x95\x15\xe5\x65\xa5\x45\x85\x8e\x9c\x94\xc4\xa8\x69\x52\xce\x46\xf8\xc4\x9c\x0d\xbd\xf3\xb2\xc0\x49\x10\x0d\x21\xcb\x22\x8c\x5a\x62\xdc\x55\xae\x0c\xd1\x9a\x28\x6b\x16\x78\x93\x53\xca\xfa\x2a\x84\x4f\x21\x71\xf9\x99\x3d\x75\xdb\x86\x76\x1f\xa8\xbd\xe6\xf4\xb2\xfc\x9a\xe2\xd4\x6c\xa7\x7a\x56\xc9\x92\xa6\x2c\xc8\xed\xdc\xd9\xec\x28\xee\xa9\x48\x3b\x71\xd3\x91\x87\x82\x44\x28\x64\x46\x4a\x61\x63\xb6\xad\xde\x9d\xf2\x6a\xde\xfc\x1b\x7b\x86\xee\xb1\x67\x3c\xb2\x73\xe0\xe4\x8a\x42\x8f\xdd\x5c\x60\x4d\x0a\xbb\x55\xe9\x6d\x5b\x51\x51\x33\x58\xa9\x4f\x2b\x9d\x9d\xb7\x79\xcb\x6b\xe4\xae\x00\x73\x8a\xc4\x23\x5e\x43\x13\xf8\x30\xe4\x41\xd3\x45\xb9\x94\xff\x7c\xb9\x68\x27\xcb\x65\x7a\x85\xb7\xac\xa4\xb8\xd0\x1d\x92\x8b\x07\x3c\xff\xaf\x72\x71\x5d\x2e\x16\x5b\x71\x8b\x2b\x5e\xe7\x9e\x53\x28\x8a\x65\xe0\xd4\x96\xca\xbe\xb6\x25\x2b\x2b\x36\xdc\x37\x3f\xb7\xde\x9b\x62\xcf\x53\xcd\x74\x2d\x68\xcc\x81\xec\xb6\xad\x33\xb2\x97\x6d\xdc\xb3\xf3\xe6\xa7\x83\x42\xc1\x2b\xd5\x66\x67\x6a\x62\x8e\x51\x75\x26\x7d\xc6\xea\x86\xa6\x0d\xc6\xd4\x4d\x2d\x33\x36\xcd\xce\x0c\x08\xe5\x06\x95\xb7\x75\x69\x59\x65\xbf\x37\x65\x56\x59\x43\xdd\x29\x12\x2b\x89\x84\xa0\xd6\xb1\xaf\xe8\x52\xee\x35\xa4\x41\x46\x94\x2b\x6a\x8a\x32\xa0\x3c\x4c\x02\x54\x25\x85\x00\x55\xc9\xc8\x67\x36\xc5\x6b\xed\x36\x53\xae\x39\x37\x35\x59\x6b\x8c\x37\xda\x8c\x72\x3e\xee\x72\xd6\xac\x64\xac\x96\xe9\x83\x58\x7d\x93\xde\x19\x40\xef\xd3\xa5\x57\xc0\xeb\xfb\xdf\x19\xc7\xe9\xfb\xdf\xc1\x8e\x71\xfc\xfe\x14\xbe\xac\x65\xcf\x7c\x7d\xcd\xe3\xd3\x82\x58\xfd\x67\xf9\x20\x7c\x1f\x21\x82\xba\xc6\xce\xb3\xda\xb1\x6a\x94\x8a\x6c\x92\xc6\x8b\x08\xe6\x08\x2b\xbd\xcf\x3a\x9f\xd2\xc0\x43\x80\x40\x24\x19\x7c\x69\x7a\x4d\x9c\xc5\xac\xb7\xa5\xd9\x12\x75\x71\xa9\x9a\x54\x2b\x1b\xc7\xd4\xd2\xc5\xc0\xbc\x5c\xc9\x44\xc9\x2c\xf3\x2c\xd2\x75\x79\xe1\x62\xf8\xb7\xa7\xc3\x6b\x96\xf9\x7f\x90\x99\xcb\x3b\x3d\x45\x9d\x5e\xb3\x0c\xf3\x32\xb3\xb7\xe3\x0a\x05\x8c\x85\xe3\x99\xbe\xc5\xc5\xc5\x8b\x7d\x99\xf8\xef\x99\x33\x06\x8b\x8a\x06\x67\x64\x22\x40\x31\x08\xd1\x0b\xdc\x39\x14\x8b\xca\x9f\x81\x40\xfd\xd1\xa4\x40\xf5\x6f\x09\x01\x22\x85\xbe\x83\xd0\xb0\xb8\x10\x81\x63\xf0\xf3\xf6\x67\x15\x4a\xbd\x45\xca\xe0\x71\x2b\x4b\x89\x43\x23\x63\x99\xc4\x06\xd0\xe3\x9e\x44\xdd\x67\x09\x25\x4d\xfd\x5e\x3b\xa8\xb2\x8b\xe2\x84\x5b\x46\x84\x48\x08\x87\xeb\xd7\xae\xc2\xdf\xcf\xdc\xd4\x6c\x81\xf7\xca\xca\x2f\xde\x14\xcc\x3f\x99\x8e\x10\x5d\x4a\x1b\x91\x0a\x05\xc0\x40\xe1\x61\x0c\xed\x18\xc0\x0a\x85\x01\x10\xe9\x8f\xc0\xd7\xe3\x7d\x4c\x99\xd4\x47\x6d\xa8\x8f\x29\x13\xfa\x68\x32\x05\xfb\x28\x55\x86\x0b\x66\x3c\x1b\xc0\x81\x0d\x2a\xd5\x0d\x59\xc7\x16\x24\xe5\xc7\x6b\x68\x42\x64\x5a\x51\xa4\xf0\x97\xdf\x0a\x6b\xfe\x0d\x4b\x7a\x7b\xe1\xf5\x9b\x0e\xca\xa3\x5f\xc0\xc4\x69\xbd\xf4\xb1\x68\x17\x12\x54\x25\xcc\xa4\x2f\xb3\xbc\x82\x3c\x54\x21\xee\xd0\x1a\x90\xe1\x1c\x40\x32\x13\x43\xaa\x05\x2b\x3a\x25\x35\x70\x92\x4b\x38\x98\x34\xc0\x16\x71\x17\x22\x44\x4f\x7c\x16\x43\x5c\xa1\x5a\x23\xbe\xf9\xc4\x2b\x60\x03\x41\xa3\x74\x90\x80\x9a\x39\x5e\x1b\x94\x38\xb8\xfc\x20\xb7\x21\x33\xd5\xf0\x4d\xd6\xc6\x35\xf5\x55\x4b\x6a\x8c\xc6\xda\xc5\x55\x75\x6b\x9a\xac\x30\x4d\xd1\x33\xfc\x65\x58\x6a\xc1\x2c\x4f\xb8\x4e\xa7\x95\x51\x5e\xa9\x56\x71\x49\x96\x84\x28\x4e\x7d\x7c\x58\x68\xcf\xf3\x24\x59\xb4\xe1\x99\x9e\xa2\x5c\xf8\x68\xd5\x73\xbb\x6a\x6a\x76\x3d\xb7\x0a\xbe\x0d\xfe\x26\xfc\xfe\x71\x5c\x79\x31\xd9\xdc\xd9\xec\x22\x1c\x8f\x8f\x63\x0c\x19\x9e\x92\xd8\x59\xb4\xbc\xe4\xc0\x71\x4b\xfd\xd2\x2a\xff\x73\xd7\x1f\x3f\x7e\xbd\x28\x83\x7c\x51\x06\x6c\xce\xe7\xa1\x5a\xb4\xd2\x1b\xa5\x01\x5e\x96\x03\xc0\x9b\x80\x42\xb0\xf8\xb5\x9e\x05\x8a\x39\xf1\xf8\xd7\x86\x0a\x5d\x4d\x12\x83\xce\x6b\x9a\x2c\xa4\x94\x2b\xb7\x63\xde\xd0\x71\x89\x4d\x5d\x2b\xa6\xab\x48\x6c\xaa\x83\x34\xdf\xd4\xbc\x65\x6e\xdb\xb6\x66\x93\xa9\x79\xeb\xdc\xb9\xdb\x9a\xcc\x64\x69\x4c\xef\xd5\x65\xe6\xbf\x4e\x9e\xe0\xc8\xb4\x39\x12\xe4\x72\x5d\xbe\xcd\x96\x97\x20\x9f\xb0\xb8\x82\xbf\x1c\x3d\x83\x67\x5c\x51\x6e\xfe\x3f\x35\x1d\x5e\x5a\x56\xb6\xf4\x70\x93\xba\xf1\xf0\xb2\xb2\xb2\x65\x87\x1b\x11\xe3\xdd\xed\x1c\x5b\x47\x87\xf8\x2c\xc6\xd3\x91\x82\x9c\xe8\x11\x89\x89\x27\x0b\x01\xc7\xc1\x00\x42\x3c\xe1\xd1\x20\x22\x32\x19\x19\x40\x98\x52\xbc\x68\x42\x26\x8a\x4c\x46\xbb\xa4\x40\x72\x80\x12\xc6\x7e\xe5\xab\xf0\x9a\x2b\x5f\xc4\x9e\x02\xab\xa5\xe6\x64\x08\x11\x19\x4f\x64\x2b\xae\x7e\x01\xf3\x45\x5b\x6d\xa6\x09\xb9\xa5\x0e\x25\x73\x3e\xff\x14\x57\x0a\x7e\xf3\x8d\x37\xe0\x8d\x37\xe0\xc1\x9f\x49\x96\x42\xf7\xc1\x83\xdf\xd7\xc0\x53\x30\xfb\xe7\x51\xa6\x50\xb4\x72\x6c\x90\x76\xd1\x37\x99\x1c\x93\x90\x03\xfd\xad\x61\x58\x25\xc9\x91\x52\x51\x22\x32\x22\x13\x25\xc2\xf3\xa2\x44\x38\x0e\x2f\x12\xc7\xd5\x89\x28\x65\x13\x8d\xeb\x42\x1c\x97\xcc\x89\x72\x8c\x93\xe4\x78\xa5\xab\xf0\x9a\xab\x5d\x14\x10\x3e\x15\x85\x19\xbc\x46\x46\xf8\x15\x3f\x72\x11\xeb\x5a\xb0\xbd\x28\xfc\x9f\xb8\xa0\x5d\x92\xbe\x75\x92\xf4\x89\x28\xfd\x9f\x51\xc8\x05\xbf\xfa\xfc\xf3\xf8\xf9\xe7\xfd\x8f\xff\x64\xc9\x7b\x92\x0c\x0f\xff\x70\x12\x5e\x04\xfc\x33\x4a\xdf\x23\x82\x4a\xc7\xce\xd3\x57\x65\x5e\x94\x8f\xea\x51\x2b\x5a\xe2\x5d\x54\x06\x91\xe1\xad\x40\x51\x14\x63\x84\x28\x87\x30\xa8\x43\x91\xe1\x61\xe1\x91\x61\xe3\x20\xfc\x08\x14\x1e\x19\x11\xde\x1f\x05\xd3\x50\x18\x9a\x16\xd6\x2f\x67\xe7\xa3\x94\x11\x2a\x83\x20\x27\x46\x32\xf8\x9c\xce\xe6\x26\x67\xbd\xb3\xae\xba\xb2\xa4\xa8\xc0\xa5\x36\x28\x4d\x8a\x78\xa3\x35\x26\x5a\x34\x70\x26\xd2\xe8\x4e\xa4\x81\x55\xa7\xf1\xea\x29\xbe\xac\x7c\xb3\x41\xa9\x96\xd8\xc6\x78\x66\x5f\x30\x1f\xa4\x03\x5c\x2e\x86\x0c\x89\xc2\x32\xe2\x6c\x39\xba\xb4\xd8\xd5\xbb\x7b\x46\xf5\x2a\xb3\x69\x75\x55\xe3\xee\x1e\x57\xf1\x92\xa3\xad\x35\x73\xcb\x9d\xd9\x05\xe7\x0b\xb2\x1d\xd3\xdb\xab\xde\x4c\x6b\xd8\xbc\x70\x8e\x29\xbb\x70\xdf\xb6\x15\x8e\xee\x05\x2b\xab\x84\x2c\xbd\xe1\x66\x8d\x39\x37\x9e\x1b\xce\x1f\x38\xb1\xd0\x5f\xd1\x75\x5d\x67\x56\x71\x49\x49\x71\x56\xe7\x75\x5d\xf8\xa5\x85\x27\x06\xf2\xcf\x0d\xae\xf0\x57\x74\xcc\x69\x9e\x0b\x1f\x09\x86\xb9\xcd\x73\x3a\xf0\x4b\xcb\x17\xc3\x07\x7b\x4d\x76\x73\x8e\x2b\xd6\x34\xb4\xd8\x6c\x37\x09\xfb\x33\x6a\xcc\x3d\x03\x49\xc5\x2e\x7b\xa4\x14\x2f\xef\x18\x3b\x4f\xaf\xe3\x3e\x46\xf9\xc8\x87\xda\xd0\x69\xaf\xb2\x0c\xc2\xc2\xdb\x26\xc8\x35\x12\xea\x1a\x86\xd3\x9b\xdb\xbc\xc5\x28\x32\x0c\x85\x45\xa2\x90\x78\x99\x58\x23\xa7\x85\x89\xb6\x41\x44\x27\x8a\x88\x48\x6a\x18\x17\x70\xca\x64\x01\xeb\xbc\x9e\xcb\x2f\x17\xdf\x4e\x58\xf0\xed\x44\x4e\x7a\x3b\x97\x5d\xdc\xee\x4d\x70\x3a\x67\xcd\x74\xfa\x9c\x0d\xff\xdf\xbc\x20\x3a\xe9\x05\x99\xeb\x76\xf5\x15\xe4\xcd\x5d\xe3\xad\x5d\x9d\x96\xb6\xaa\xb6\x7c\xcd\xdc\xbc\x82\xf9\xd7\xd4\x97\x4c\xcf\xce\x74\x14\x7c\x50\xec\xb0\x65\x4e\x2f\xfe\x8d\xbd\x61\x53\xff\x2c\x53\xb6\x67\xff\xf6\x95\x69\x65\x65\xde\x9a\xa6\x2c\xa1\x3c\xf0\x8a\x68\x63\x4e\xdf\x4d\xf3\x85\x6b\xda\x77\xcf\xb5\xd5\x56\x57\xd7\xda\xe6\xee\x6e\x87\x1d\xf3\x6f\xea\xcb\x79\xb2\x77\x9d\x70\xa8\xbd\xa5\xb2\x15\xd0\x18\x6a\xad\x6c\x69\x87\x35\xeb\x7a\xe1\xad\xf1\x57\xc4\x8a\x79\x08\x7b\x26\xbd\x24\x8c\x7a\xc6\xce\xd3\x13\x32\x19\x92\xa1\x4c\xb4\xf6\x19\x05\x50\x99\xa8\x35\x89\xdb\x8e\x09\x61\xe0\x01\x0f\xa2\x60\xc5\xb8\x88\x70\x39\x61\xce\x0b\x10\xd7\x36\x07\x81\x0d\xd8\x2c\xb5\xe3\x87\x7e\xbc\x61\xbb\x57\x25\x97\xcb\x33\xe5\x99\x56\x8b\xd2\xa0\x36\x9a\x19\xcb\x3d\x73\xa6\x6b\xf4\x6a\x83\x53\xcf\xfd\xb4\x33\x17\x22\xf0\x3f\x40\xf8\xe8\x19\x61\x84\x1c\xbe\x9a\xcb\x59\x26\x1b\xda\xb1\xe3\xf3\x9f\xe1\x76\x46\x58\xf2\x3b\x33\xfe\xa7\x4c\xb4\x71\xd2\xd8\x2d\x81\xb1\x4b\xd4\x7b\x2c\x8d\x57\x1a\x94\xf6\xf2\xd1\xa7\x07\x47\xff\x53\x4d\xaf\x36\x7e\x65\x60\xfc\x3f\xc3\x99\x3d\x16\x1a\xfe\xee\xab\x79\xb5\xb9\xe1\xa1\x1d\x3b\x84\x8b\x3f\xc3\xb5\x8d\x00\xed\x17\x0e\xd0\x6e\xee\x75\x94\x86\x66\x87\xea\xf5\xc5\x33\xaa\x88\x00\x36\x6a\x82\xcb\x36\x50\x39\x20\x01\x49\xe5\xf6\x02\xdf\x07\xca\xed\x05\x9b\x11\x5f\xfb\x19\x6b\x9a\xca\xc6\x32\x3d\x40\x02\x73\x8e\x63\xbf\xc7\xa9\xac\x1d\x0e\xe2\x1b\x5d\xfa\xd8\xe6\x8a\xda\xdd\xcf\xad\x5a\x75\x7a\x6b\xc5\xe8\x86\x2d\xa5\x7d\x15\x06\xdb\xac\x0d\xbe\x63\xc2\x01\x58\x1c\x33\x70\xe7\xef\x36\x82\xea\xda\xbf\xde\xdb\x55\xb9\xe3\xb9\x75\x47\x6f\xf7\xae\x3a\x3e\x57\xf8\xb2\xed\xf8\x2a\x2f\x02\xf4\xac\xb0\x9f\xfa\x68\x23\x32\xfe\x54\xbf\x53\x7e\x5e\xbf\x53\x58\xbf\x8d\x93\xfa\x3d\x95\x35\x45\xe2\x28\x20\xb6\x91\x9e\xa3\xfd\x79\xde\x2d\xcf\xac\xef\xb9\x6b\xb5\xf7\x93\x64\x97\x2f\xab\xb2\xdb\xa3\x4b\x28\xea\xae\x3a\x2c\xec\x87\xa5\x8a\xbe\x23\xa7\xfb\x27\xc5\x0e\x27\x54\xc2\x06\xb4\x1c\x21\x7a\x13\x57\x2a\xe5\x76\x29\x63\x15\x31\x91\xd3\x22\xc2\xc3\xe4\x32\x9e\x60\x88\x96\xd0\xa9\x48\x3c\x51\x91\x06\xf9\xe2\x55\x58\xb4\x09\x39\x99\x89\x18\x94\x26\x37\xc7\x7e\x1c\x84\x93\x99\x70\x27\xe8\x6b\x85\x8f\x9e\x79\xe2\x6f\xc2\x5f\x6a\xc0\xf4\xb6\xf0\x71\x1d\x18\x7e\xf9\xe8\xa7\x60\xf2\x09\x7f\x85\xb3\x8f\xee\x7c\x58\x38\x0b\x87\x1f\xd9\xf9\x08\x0c\x3e\xb2\xeb\x11\xa8\x16\x96\x3e\xb2\xe3\x61\xf1\x9d\x0b\x63\xf4\x1e\xf8\x3d\xe7\x47\x32\x74\x50\x9a\xea\x5a\xc6\xfb\x38\xc0\x08\x0d\x17\x51\x08\x20\x70\xe2\x42\x14\x7d\x9a\xd0\xf7\x68\xcd\x65\x5f\xeb\x19\x47\x3f\x06\xbc\x7a\xea\xb7\x5e\xdd\xf8\x17\x48\xfc\xa2\x85\x21\x99\x28\x10\x20\x8d\xa2\x1e\x30\x0d\x21\x24\x43\x32\x85\x42\xc1\xf1\x1a\x1b\x51\x5b\xdc\x7a\x8b\x46\xdd\xf4\x14\x60\x3d\x3c\xc9\xa5\x6e\x87\xaf\x97\x81\x34\x4f\x05\x3f\xa7\x81\xef\x79\xb5\x94\x67\x14\xc4\x65\x51\x60\x64\x2b\xe2\x79\x8b\x7d\x80\xe2\x54\x8a\xe8\x69\x11\x72\x1e\x69\x40\xc3\xf3\x2a\x1b\xc9\x63\xb4\xd3\x32\x99\x21\xc0\x57\x6a\x30\x58\xde\x77\xb4\x37\xd5\xd7\xd6\xa5\xaf\xdd\x0a\xb0\xbf\x28\xdb\xd6\xbb\x7a\xff\xec\x6c\xe0\xee\x60\x3b\xe3\xe2\x21\x53\xac\x2b\xc7\x6c\x37\xed\x65\xb1\xf8\xcf\x38\x25\xfa\x33\xdf\x86\xb8\x40\xed\x3a\x44\x19\x47\xcd\x62\x05\xf0\x6a\x1b\xb1\x68\x64\x1a\x59\x02\xbc\x08\x9e\x59\xdc\xc7\x9b\xf1\xee\x35\x33\xc4\x77\x1b\xcb\x29\x21\x8c\x5d\xa3\xf0\x46\x71\x18\x88\x74\x89\x52\xbc\x44\x69\x71\x5b\xdc\xea\xfe\x99\x1e\x78\x89\x53\xce\x58\xb3\x1b\x6f\x16\xc7\x26\xbf\x74\x5a\x78\x8d\x36\x72\x4f\xb0\xbc\xee\x72\x34\x17\x2d\x47\xbb\xd1\x09\xf4\x04\x94\x34\x0c\xa7\x34\xb7\x79\x07\x52\x09\x06\x4c\x31\xd0\x21\x93\x46\xad\x97\x71\x1c\x2f\xe7\x39\xf9\x90\x59\x17\x9f\x16\xc1\x85\x85\x4f\x0b\x0f\x9b\x36\x64\x54\x62\x45\xac\x62\x8d\x0a\x68\x1c\xf0\x1c\xe5\xfb\xb5\x20\x4f\x80\xf0\x30\x79\x78\x7f\x22\x4c\x4b\x86\xa8\xc8\x69\x51\xfd\x28\x06\xc5\x2a\x62\x62\x43\xac\x41\x71\x0d\x96\x94\x24\x43\x34\x17\x19\xa9\x89\xf4\xe9\xbc\x8b\x7f\xce\x83\x02\x57\x44\xc5\x44\x45\xc6\xfc\x2f\x9f\x8a\x7d\xed\xde\xde\x5f\xfc\x62\xcf\x9e\x15\x2b\xda\xda\x2a\x2a\x32\x33\xe3\xe2\x10\xfa\xc5\x13\xbf\x78\xe2\x91\x53\xf7\xdf\x77\xf2\xce\x3d\x27\xf6\x9c\xb8\xf9\xa6\x23\x87\xaf\xdb\xbf\x62\xf7\x8a\xdd\x3b\xb6\x6d\xda\xb8\x76\x75\xdb\xf2\xb6\xe5\x8b\x17\xf5\xcf\xef\xee\xaa\x98\x5b\x31\x77\xf6\xcc\x19\xbe\xda\xea\xcc\xf2\xcc\xf2\x92\x22\xb7\x2b\x2f\x27\xce\x16\x67\xb3\x98\xf4\xa9\x89\x09\x01\xc2\xde\x74\x71\x3a\x4d\x59\xbd\x30\xe5\x13\xe5\xcf\x68\xf3\xbf\xfb\x64\xea\x9d\x7b\x93\x5c\x8d\x39\xb9\x8d\xee\xa4\xa1\x08\x8d\x59\xa7\x33\x69\xc2\xe1\xe3\x24\x77\x63\x4e\x6e\x93\x3b\x69\x55\xb8\xd6\xac\x4b\x30\x69\xc2\xeb\xd8\x27\x62\xa3\xc0\x27\x11\xc2\xdb\x53\x3e\xf2\x37\x4f\xba\x15\xfb\xa8\x31\xc9\xdd\x98\x3b\xe9\xee\xc2\xc7\x53\x2e\x74\x4e\x79\x1e\xfd\xc6\x5a\x95\x97\x98\x98\x57\x65\x55\x19\x13\x15\x8a\x44\xa3\x4a\x38\x3f\xe5\x93\xb0\xcb\x3f\xf1\x7f\x3f\xa5\xcd\xa7\x97\x7f\xc2\x25\xfc\x6f\xee\x23\xae\x07\xff\x34\xa1\x9f\x36\x70\x6f\x20\x8a\xc2\x50\x14\x52\x22\x2d\x4a\x42\x69\xc8\x82\x96\x7b\x53\xf4\xa9\x71\x84\x60\x4b\x5a\x92\x56\xa3\x8c\x55\x44\x47\x45\x4e\x0b\x8f\x04\x62\x36\x25\xea\x28\x62\x66\x7a\x96\xb8\x5d\x31\xc6\xd0\x76\xe6\x7f\xa5\xc1\x23\x99\xed\xfe\x6a\x84\x39\x20\x80\x49\xdf\xc4\xcf\xdb\xbd\xb1\x1c\x87\x10\x17\xc6\x85\xc9\x65\x88\x22\x1a\xcb\xf3\x6a\x1b\xa7\x21\x06\x25\xb1\x28\x1d\x04\xdc\x9c\xda\xc4\xc9\x4c\x4e\x0e\xdc\x26\x0d\x07\x32\xce\x62\x22\x16\xe2\x56\x82\x46\x29\x23\x10\x15\xb1\xb9\xb7\xda\x33\x6d\x73\x6f\x35\x4e\x8e\x84\x19\xc2\x03\x17\xd7\x45\x0a\xa7\xa1\x83\xdc\x86\xa1\xbc\x52\xf8\xe0\xd2\xbf\xb0\xf0\x4a\x15\x98\x6d\x8a\x63\xe5\x6f\x90\x1e\xc5\xcd\x15\xaf\x17\x47\x09\x8f\x41\x1f\xbd\x27\x0a\x66\x09\x27\x05\xc5\xb4\xad\xf3\x6b\x8a\xc4\xff\xc1\xe3\x31\x27\x2a\xdf\xbc\x74\x58\x71\xa2\xea\x4d\xfc\x29\x86\xea\x2a\xe1\xfd\x4b\x7f\xc7\xc2\xaf\x6a\xc0\x26\xe9\xd3\x0f\x22\x44\xaf\x65\x7c\x98\xb1\x28\x05\xb9\xbc\x0e\x82\x31\xa1\x00\x88\x11\x90\x73\x80\x11\xc1\x21\x50\x42\x10\xb4\x45\x69\x4a\x92\x5a\x49\x63\xa9\x42\xaf\xe6\xc5\xe3\x44\x06\x6e\x96\xc0\x14\xe4\xd8\x09\xd5\x9c\x37\x50\xdf\x3e\x61\xe5\x3e\xe1\xc3\x51\xf8\x7c\xf9\x2f\xf7\x36\x34\xec\xfd\xe5\xf2\xef\xbe\x2b\xe9\xad\x34\x1a\x2b\x7b\x4b\xbe\x83\xe1\x72\xac\xab\x10\xe6\xfb\xff\xc0\x0d\x43\xd9\xba\x07\x17\x0f\xdc\xb7\xb6\x14\xce\x99\x2a\xba\x5c\x85\xbd\x55\x66\x90\xfa\xc8\xea\x3a\xd1\x46\x56\x23\xc8\x86\x06\xbd\x6a\x05\x50\x6c\x48\x23\x98\x72\x74\x1a\x20\x4e\x14\x3d\xad\x0f\xf2\xe3\x04\x0b\x74\x68\x43\xe5\x9b\x92\x1b\xa4\x14\x5a\x1d\xab\xfe\x34\xee\x2b\x4e\x99\xd2\x22\x58\xdb\x29\x9d\xa5\x10\xcb\xc0\x6d\x9a\x50\xdf\x49\x73\xb5\xfa\x4e\xd3\xd7\x08\xeb\x57\xc3\x2d\x05\xcb\xee\x18\xe8\x3a\xe4\x18\xf9\x30\x3c\xff\x48\xcf\xa2\xbb\x96\x15\x8c\x24\x97\xf6\x56\x34\x0f\x26\x27\x2f\x9a\x5d\xd1\x5b\x92\xd4\x01\x77\x74\xae\x65\x95\x9e\x0a\x04\xc4\x7d\xb0\xbc\x74\x7a\xb0\xd0\x53\x65\xa1\x90\x58\x50\x1d\x28\xf4\x04\xe8\x01\x84\x68\x9b\x2c\x0a\xc9\xa4\x8a\xcf\x98\xac\x0e\x82\x12\xe2\xae\x98\x5b\xac\x70\xd0\x36\x7f\xd9\x05\xfc\xea\x88\xc4\x23\x0a\xdd\x92\x2e\x76\x1f\x42\xb4\x9e\x5b\x8b\xc2\xa6\xdc\x67\x42\x8e\x72\x0e\xbb\x8f\x41\x1d\xbc\x53\xbd\xd6\xdf\x37\x82\xcf\x8c\x90\x4d\x70\x69\x3f\xf5\x40\x20\x97\xf5\xa4\xf0\x26\xc3\x89\xeb\x58\xcd\x33\x40\x94\x63\x05\x04\x11\x26\x8c\x84\x29\x80\x66\x0e\xe6\xfc\x9a\x15\x5a\x7d\x10\xcc\x3c\x05\x7c\x6f\x08\x32\xdc\x0e\x1f\xfc\xcb\xed\xb3\x8b\xb6\xbe\xbc\x07\x66\x0e\x16\x6b\xe0\xf4\x99\x61\xc6\x79\x2b\xb4\xcc\xb8\xf9\xbf\x0e\x6e\xfe\xdd\x2d\x2d\xcf\x95\x0c\xee\xab\x7f\xe5\x75\xff\xb5\x12\x37\xea\x7d\xc2\x27\x74\x19\xe3\x4a\xb2\x79\xd3\xa3\x22\x31\xa9\x09\xd5\x93\x0b\x50\x22\xb0\x74\x4e\x0d\xf1\xe9\x12\xe2\xb5\x1a\xb5\x3e\x86\x13\x27\xa7\x5e\x1d\x82\xac\x06\x39\x94\xa5\x2e\xe4\xf9\xfb\x5e\x5d\xf7\xda\xe1\xa6\x8c\xce\x1b\x16\xcd\xda\x30\x68\x9b\xb1\xbc\xe2\x55\x86\xee\xf8\x47\xd9\x96\xd3\xeb\x0a\x0f\xee\x5e\x1a\xff\xa8\xe5\xe8\xa2\xaa\x25\x35\x26\xc1\xcd\x92\x7a\x01\x1d\x43\x88\x7e\xcd\x0d\x23\x15\x2a\xf1\x7a\x80\x45\xf4\xe4\xc0\x8b\x46\x0a\x0f\x7d\xe1\x61\x98\xe3\x18\x78\x93\x85\x20\xb5\x0d\x34\x94\x58\xaf\x42\xaa\x60\x24\x34\x36\x82\x4f\xb2\x85\x61\x3d\x18\xd4\x86\x10\x1e\xca\xa1\x76\x00\x7d\x5d\x38\x0b\x83\xc2\xef\x85\x7f\xa4\xdf\x3b\xf7\xc2\x85\xb9\xf7\xea\x81\xe3\x86\xfd\xfd\x97\xfe\x89\xd7\x7d\xf9\xa5\xff\x7a\x6e\xd8\x7f\x4c\x10\xf0\x32\xb1\x1f\x87\x11\xa2\x77\x53\x0f\x52\xa1\x22\x6f\xc1\xe5\xfd\x40\x32\x84\x91\x0c\x4b\xfd\xf9\x89\x5e\x90\xcb\x7a\xa1\xa4\x7b\x85\x57\xa1\x4d\x78\xf7\xc3\xdc\xdb\x1b\x46\x46\x1a\x6e\xb7\xfe\x91\x7a\xfc\x7e\xff\x5b\xf0\xf8\xe9\xd3\x12\xa8\xe0\xcd\x37\xe1\x29\xb1\x0f\x49\x01\xfe\xd8\x28\x64\xf7\x66\x4c\x9b\x8c\xac\xc2\x98\xb4\x4b\xf0\x31\x7e\x02\x70\x61\x42\x24\x9c\x55\x01\x57\x32\xec\xc2\xf1\xa6\x51\xe1\x35\x9c\x59\x3b\x0a\x2a\xe1\xb7\xd0\x2e\x7c\x8a\x57\xfa\x6f\xa4\x9f\xbf\xe5\xbf\x13\xcf\xf7\x57\xfa\xa7\x89\xcf\x32\x23\x44\x5f\x66\x39\xbc\x57\x7f\x96\xf6\x67\x3c\xeb\xb9\x05\xdf\x08\xaf\xe3\xac\xde\x73\x90\x21\xbc\x0f\xf5\xc2\x9b\xf0\x90\xd0\x46\x86\xde\x16\xe6\xc0\xa3\xfe\x31\x3f\xab\xd7\xd4\x89\x10\xbd\x87\xd5\xa7\xb2\x78\x8d\xe2\xd4\x22\x88\xf6\xb1\x0a\x70\x12\xa3\xc0\x44\xe8\xbc\x22\x38\xcd\x03\xb5\xcd\x59\xda\x48\x35\xe4\xe1\x0c\xe1\x95\x2f\x85\xdf\x9e\x3f\x4f\xca\xf0\xaa\xb7\x2e\xc6\xe3\x35\xfe\x43\x41\x3f\x7e\xbf\x78\x7f\xea\xb9\xca\xfd\xb5\x3f\x7d\xff\x56\x28\xc0\x2a\xe1\x2f\xdf\x08\x6f\x7e\xf3\x0d\xde\x04\x67\xdf\xba\x74\x04\x9e\x12\x1a\x83\x79\xe7\xcd\xc2\x2b\xf4\x5e\x6e\x18\x25\xa1\x2c\xaf\xb8\xcd\x4b\xc0\xb2\x00\x2f\x3f\xc7\x05\xc2\xe3\x3c\xb0\xdc\x76\xf1\x19\x5a\x85\x56\x72\x9d\x4d\xe4\x48\xcb\xc2\x16\x85\xc4\x87\xa0\xc7\x5f\xac\x7a\x60\x85\x33\x67\xe1\x1d\xcb\xb0\xbb\xd2\x38\x4d\x65\x6f\x28\xfc\xf2\xf5\x2f\xf1\x09\x52\x0e\x5d\x77\xbe\xb7\x71\xeb\xbb\xc7\x5b\xe0\x15\x28\x5d\x74\x6d\x4d\xd5\xfe\x15\x95\xd8\x7f\x88\xfe\xfd\x62\x92\xb4\x66\xe7\x0b\x9f\xd3\x9b\xa9\x47\xca\x4c\x8f\x08\xc7\xb8\x26\x58\x06\x07\x11\x12\x8c\x7f\x4b\x59\x68\x49\x89\x6c\xd9\xc6\xa9\x55\x31\xe2\x79\x79\xd5\xce\xfc\x77\xdf\x5d\xab\x4a\xd3\x67\x6e\x6d\x9d\x93\x5b\x6e\x89\xd1\x64\x55\x65\x7f\x39\xfc\x25\xde\x83\x6f\xc1\x35\x3b\x86\x97\x96\xde\xb8\x67\x51\xec\x13\x0a\x4f\x43\x5b\x76\x61\x7f\x5d\x26\x16\x3c\x64\xd5\xa5\x23\x2c\x4f\xbe\x67\xec\x1f\x74\x27\xf7\x3a\x72\xa2\xe9\x68\xbd\xc4\x50\x1b\x51\x98\x87\x29\x21\x8c\xa5\x4c\x37\xfe\x17\xcf\x62\x28\x62\x83\x78\x19\x63\x0b\xe7\x00\xe3\x24\x26\xb2\x50\xe6\x98\xce\x6b\x98\xf8\x1d\x0a\x7d\x25\x71\x7c\x04\x5a\xb5\x7b\x23\x32\x12\xac\x85\x8a\x78\x29\x4d\x99\x9b\xe2\xf3\x09\x81\x1f\x19\x19\x9d\x62\x1c\xf5\xc9\xcb\xe2\xe2\x18\xbf\xb2\x4b\x72\x03\xa5\xf1\x6a\xba\x73\xce\x2d\x15\x8e\xd5\x65\x1b\xce\x1d\xf4\xe5\xf7\xee\x9d\xa9\xb3\x25\xc5\x98\x6b\x17\x57\xc8\x15\xf2\xe6\xd6\xac\xd9\xeb\x6a\xeb\x37\xcf\xcd\xa9\x28\x49\xad\x32\x0b\x73\x9c\x0e\x83\x29\xc7\x66\xcd\xd4\xa6\x26\x27\x25\xf7\x9d\xfa\x7c\x2f\x64\x6d\xfc\xed\xf1\xb9\x6f\xbb\x7b\xf7\x34\x0a\xef\xce\xbb\x73\x75\x39\x40\xc7\xc8\x11\xf0\x0d\x9e\xde\xdd\xe0\xdb\xf7\xab\x21\xe1\xa9\xdd\x7f\x9b\x1b\x16\x0e\x7f\x1f\x7c\xd4\x5b\x72\x4f\x2f\x74\x1f\xbd\xe9\xe6\x03\xcc\xa7\x31\x63\xec\x3c\x7d\x92\x36\xa2\x7c\x54\x8d\x36\x49\xb9\x9a\x11\x05\x40\x49\x1e\xc1\x92\xdc\xa2\xd8\x5f\xc0\x53\x51\x74\x8c\x8a\x30\x66\xb2\xe8\x52\x7e\x44\x74\x29\x3f\x22\xba\xcc\xf8\x2b\x8a\x8e\x19\xd2\xea\x28\x12\x80\x39\xe6\xb9\xa5\xea\xc1\x41\x77\x2f\x2f\x0b\x09\x6e\x9c\x9b\xec\xc9\xde\xfb\x6b\x3c\x7b\x1a\xd6\x9f\xbb\xde\x57\x30\x70\x78\xae\x3e\xdf\xa4\xb4\xd4\x0e\x56\x84\xab\xc2\x6b\xeb\xb3\x5a\x37\x37\xcc\xd8\xd6\x96\x3d\xbd\x64\x46\x9b\x10\x5d\x5a\x9c\xe3\x88\x4e\xb4\xea\x74\xd6\xc4\xa8\xd8\x44\x5d\x62\x72\xdb\x2f\xfe\xb0\xb9\x7e\xe0\xb1\x9d\xb5\xbf\xc6\x19\xb5\xfd\x45\xbe\xe6\x03\x0b\x0a\x71\xc3\x4b\xcb\xb7\x77\xfe\x62\x55\x59\xf5\xa6\x07\x7a\xb7\x2e\x39\x53\xab\x80\x1b\x5b\x8e\xb8\x72\xf6\xcf\xda\xe1\x68\x9f\x6e\x4e\x2b\x9e\x9d\xcb\xd6\x62\xa2\x70\x37\xfd\x23\xc3\x9f\xda\xbc\xe9\x88\x27\xfc\x2c\x89\x7e\x9f\x86\x76\x12\x59\x07\x92\xc9\x34\x32\x5f\x30\x4f\x46\xf2\x61\x3b\xf5\x6a\xc3\x38\x5e\x06\xd4\xdf\xe3\xb7\xfe\x06\xb5\xa3\xb7\xc6\x7e\xe8\xcf\xa1\x9f\xbf\xf5\xd6\xc5\xcf\xe8\xa7\x17\x93\xfc\xef\x41\x8f\xb4\xe6\xad\xc2\xcb\xf4\x41\x96\x7f\x3e\xf5\x39\xda\xab\x3e\x47\x79\xd9\x73\xfe\xfd\x3b\xbc\xef\x75\x28\xfe\xe6\x90\xea\x2f\xfe\x4a\xb2\xfa\xcd\x37\xfd\xad\x64\xf5\xa5\x43\xfe\x7f\x43\x79\x00\x47\xe1\x61\xba\xa2\x0e\xad\xf6\x86\x27\x00\x07\x32\x20\x1c\xae\x97\x6a\x88\x18\x11\x50\x8e\x02\x37\x84\x44\x5d\x03\x0d\x22\x0e\x11\xc4\x91\x05\x32\x89\x00\x23\x18\x81\x34\x4d\x6e\x86\x87\xae\xd8\xae\xdd\x1b\x4d\x29\xd5\x51\x9d\x49\x6d\x88\x15\x3b\xcb\x00\x6f\x8e\x2b\x13\x04\xe0\x07\xee\xbd\x17\x8e\x5d\x4e\x12\x00\x66\xfc\x5f\xf0\xe4\x55\x89\x02\x30\xda\x8e\x10\x9d\x4e\x3d\x6c\x3c\xb7\x78\xc3\xe3\x81\x03\x7e\xc2\x78\xd2\xc4\x8e\x72\x30\x78\xd9\x70\x78\x09\x37\x27\x8d\x46\x9a\xe9\x86\xab\x8c\x7c\x52\xd3\xcb\xe5\x33\x3e\xf0\x89\xcd\xda\xdb\xbd\xe1\x4a\x93\xda\x10\xd8\xf8\x4d\x06\x86\x84\xb9\x02\xbc\x09\x3f\x7d\xef\xbd\x70\x64\x0a\xc4\xe9\x79\xdc\x75\xe9\xcb\xab\xe0\x9c\x4e\x05\xea\x2e\x32\x5e\x06\x02\x04\xe2\xa4\x6a\x3f\x01\xef\x07\x33\xe0\x19\x39\x83\x94\x12\x3c\x81\x97\xc1\x31\x5e\xdd\x94\x18\x88\xb8\xa6\xcc\xbc\x4c\x71\xea\x7f\x0a\x37\xcc\x18\x7c\x70\xbd\x97\x7c\x4b\xe2\x72\x7d\xae\xaa\x2d\x25\xdc\xb0\xff\x0d\x85\xaa\x60\xcd\xf0\x46\xa1\x00\xde\xac\xe9\x2f\x4b\x82\x38\x85\xbf\x8d\xf9\x46\xc7\xfe\x3d\xf6\x05\xbd\x9e\x7b\x15\x59\x91\x0b\xcd\xf2\x36\x45\x06\xe4\x6d\x04\x4a\x4c\x80\x28\xad\x97\x03\x87\x08\xe5\x48\x5f\x10\xe8\x91\x24\xea\xa9\xda\x86\x10\xaf\x75\x32\xf2\xd9\x32\x00\xe5\xe5\x64\xb8\x6c\xae\xd4\xe4\x78\xad\x52\x11\x1e\x86\xac\x60\x0d\xe3\x55\x36\x2e\x2d\x0b\x5b\x9c\x66\xb3\xdb\xc1\xc7\x69\x02\x68\x10\x59\x88\x44\xd6\xad\x89\x22\x10\x82\xd7\xab\x49\xd4\xf6\x57\xf7\x56\xc1\xce\x03\x61\xcf\x82\x3e\x83\xd4\x6d\x3d\xd5\xbf\xf1\x81\xc5\xd9\xe0\x5f\x9d\x5a\xb3\x7a\x96\xb5\xce\xeb\x8a\xcb\x55\x7b\x67\x0d\x08\xa7\xe1\x78\x74\x46\x7d\xb1\x73\xa6\x3b\x51\x33\xef\x9e\x8f\x76\xf5\x25\xfd\xc7\x29\xdf\x12\xdd\xee\x8f\xee\x6e\xef\x7e\xe0\xef\xfb\xce\xce\x68\x3c\xbc\xcc\x1b\xa9\xd4\x4e\x7b\x2d\x32\x39\x41\x41\x96\x37\x95\xae\xeb\x72\x17\x2f\x39\x26\x8d\x19\x25\x8f\x7d\x45\x0f\xd3\x46\x64\x45\x4e\xd4\xe2\x9d\x15\x05\x3c\x70\x40\xf8\xf1\x31\x23\xe0\x78\x0e\xf8\x21\xc4\x23\x42\x79\xd2\x27\x87\x00\x28\x3d\x65\xca\xb0\x73\xb2\x33\x9c\x36\x67\x6a\x72\x42\xbc\x2a\x36\x22\x7c\xd2\xb0\xb3\x88\xdb\x11\x37\x61\xd4\x81\xf8\xa2\x26\x8a\x10\x96\x1c\xe1\xcc\x22\xf8\xfb\xc1\x47\xb6\xd6\xd0\xb2\xde\x72\x3d\x3c\x8a\x33\xb3\xa3\x9b\xd6\x1c\x6b\x59\x76\x72\x89\x0b\xfc\x07\x39\x43\x71\x4b\x41\xb6\xaf\xcc\xa1\xe9\x4f\x6a\xe8\x1e\xea\xb0\x96\xe7\xea\x65\xb0\x19\xd4\xf6\x4a\x95\x6f\xdf\x0b\xab\xa2\xbd\xbd\xdb\xea\x6b\x17\xc6\xf7\xdc\xb5\xd6\x3b\x63\xff\x73\x4b\x77\x95\x2c\x6e\xb4\x47\xeb\x4c\xea\x1b\xf4\x85\x56\x2d\x39\x61\xad\xea\x72\x24\x64\xcd\x2e\x95\xb8\x54\x9e\x12\x5e\x67\xbc\xfd\x89\xa2\xfe\x21\x07\x9e\x15\xf6\x44\x3c\xc2\x7c\x3f\xe2\x10\xe5\x68\x0f\x81\x71\x63\xd2\xac\x48\x08\xaa\x39\xfa\x20\xa0\x35\xc0\x83\x17\xb2\x18\xe0\xde\x0b\x17\xb6\x43\x23\xe8\x85\xa1\x05\x77\xac\xf0\x14\x6d\x0b\xda\x0c\x27\xef\x7e\x8f\x1b\xf6\x9f\xc4\xbd\xfe\x6b\x63\xe7\xdd\xf0\xea\xa6\xcd\xbf\x3d\xde\xf2\xcb\xd2\x45\xa2\xd5\x20\xed\x8b\xf7\x08\x5f\xd1\x6e\x09\x57\xe1\x35\x47\x84\x63\xa8\x09\xc0\x6a\x83\x78\x34\xa6\x30\x86\x34\x8f\x58\x8e\x57\x8d\x6b\x1e\x92\xb5\x60\x09\x01\x6d\xf1\xbf\x9a\x76\xcd\xcb\x4b\x9f\xbb\xbf\x6f\xd6\xd2\x5e\x73\x55\x6f\xf1\x3b\x23\x23\x6b\xc0\x01\x16\x3c\x5f\x59\xbf\xe2\xa6\xae\x82\xbd\xdb\x17\xc5\x3f\x6a\x3a\x30\xdf\xdb\xeb\x4d\xa3\x41\x04\x6e\xc0\x7e\x6a\xa0\x19\xcc\x7e\x2a\xf2\x16\x44\x01\xe1\x22\xa5\xb5\x87\x10\xe5\x10\xed\x93\xf1\x98\x49\xe4\x32\xd4\x0d\x42\x48\x87\x74\x0a\xa5\xcb\xa4\x50\x48\xd9\xe9\x7a\xc5\xe5\x78\x1b\xa6\x13\xc2\x8d\xf0\xd0\x05\x56\x07\xb4\x48\x1f\x15\xa6\xd3\x25\x84\x15\x97\x0b\x6d\x17\xb8\x61\xff\x0e\x7c\x4d\xa8\x14\x28\xe1\x08\x74\xb7\xe0\xc7\xfd\x47\x59\x0e\xf2\x9d\x42\x03\x35\x33\x7b\xea\xea\x7d\xd2\x5e\xb5\x4f\x96\x9f\xec\xd3\x21\x78\x78\x24\xa7\x63\xd7\xac\x34\x4f\x5a\x10\xee\x23\xb4\x8e\x48\xf8\xdb\x8b\x7b\xc7\xfb\x84\xbb\x5b\xe1\x5b\xa1\x9e\xe9\x68\xb3\xc7\xbe\xa4\x03\x2c\x7e\x90\x85\xa6\x7b\xbd\xc9\x40\x50\xd2\x95\x6b\x92\x25\x8d\xd7\x24\x4b\x06\x9f\xd1\x00\xc8\x9a\x6e\xc8\x32\x66\xc5\x6b\x58\x4d\xb2\x34\x48\x93\xf3\x53\x6b\x92\x05\x37\x80\xcb\xaa\x92\x15\xec\xff\xfd\xa1\xda\x59\x37\x9c\x5d\xb9\xe3\x95\x6b\xca\x89\x21\xcd\xb7\x69\xae\xab\xcb\x57\xa2\xcd\x8d\xf2\xb4\x6f\x5c\x54\xbd\xb4\xde\x0c\xfe\x77\x12\xcb\x07\xb9\xd7\xbb\xee\xfb\x64\xdf\xf7\x07\xff\xf1\xd0\x3c\x68\x3d\xf9\xf7\x43\xbf\x6a\x6e\x39\x3e\x54\x11\x15\x17\x3f\xed\xf9\xb0\xe4\x24\xf5\x0f\x5f\x57\xac\xb9\xad\xad\xb3\x6a\x73\x47\x3e\xe3\x5d\x3f\x4f\x97\x33\x7c\x44\x91\xb7\x80\x02\x02\x23\x87\x39\x84\xeb\x03\xfb\xfe\x10\x53\xcc\xe9\x8a\x20\xc8\x77\x9c\xd6\x25\x19\xfb\xcc\x46\x95\x2d\x80\xf3\xd6\x3b\xf5\x1a\x98\x40\x0a\x3a\x19\xe2\x4e\x32\xfc\x37\x90\x7d\x20\x6c\x5b\x74\x72\x45\xa1\xef\xc0\x0b\x2b\x3b\x1e\xbf\xae\x65\xd4\x50\xde\x59\xe0\x5d\x58\x6d\xbc\xed\xa6\xc3\xf4\xeb\x73\x27\x84\xf2\x88\xaa\x55\xb7\xf7\x0f\x9c\x5c\x51\x98\xbb\xe8\xee\x10\x93\xd2\x2d\xbb\x1f\x61\x78\x6d\x61\x1d\x9d\x4f\x3d\xc8\x88\x16\x7b\x23\x26\xf4\xb3\x61\x38\x87\x1d\xeb\x57\xee\xae\x36\xd4\xdd\x04\xf1\x74\xd3\x5f\xde\x8c\x22\x4c\x99\x6f\x40\x6a\xcd\xf8\xbe\xd3\x8d\x2a\xeb\xc4\x51\x5d\x11\xb8\xcf\x6a\x0c\x90\x58\xff\x6d\xe4\x00\x08\xfb\xde\xfa\xb3\xef\xc0\xaf\x02\x83\xf2\x76\x15\x78\x07\xaa\x4c\x96\x19\xab\xea\x6f\x20\x1b\xcf\x9d\x10\xbc\xda\x4f\x5f\x1b\xb8\x8b\x0d\x6a\x65\xf6\x9c\x32\x93\xb1\xac\x25\xaf\x61\x69\x65\xea\xc3\x08\x8d\x8d\xa1\x7c\xa1\x81\xee\xe7\x86\xb1\x19\x3d\x3e\x0b\x21\x0b\xbc\x3d\x46\x91\x0d\x78\x78\xf7\x28\x42\xf2\x27\x01\x86\x6d\xc3\x0e\xdb\xd8\x18\x9a\x27\xd4\xd1\x6d\xd4\x83\xcd\xe8\x1f\x8d\x52\x3b\xfb\x58\x33\xc8\xe0\xdd\xb1\xa5\x63\x02\x8a\x7d\x12\xe0\xb9\xb1\xe6\x61\x87\xed\x49\x0c\xcf\x8d\x09\xc3\x0e\x1b\xc2\x68\x0e\x42\xb4\x32\xc0\x3f\x93\xe3\xb5\x33\x47\x19\xc5\x81\x43\x94\x81\xb4\x42\xa0\x52\x84\xa2\x75\xd1\x09\xb1\x31\x28\x0a\x45\xea\x15\x32\x3e\x8e\x01\x7c\xf5\xc1\x12\xf7\x4a\x45\x88\xad\x9a\xcc\xbe\x20\xa8\x82\x44\x34\x17\x2f\x86\x68\x68\x8e\xe2\xe4\x1f\x9a\xab\xb6\x9c\x5a\xd0\xff\xe0\xc6\xe9\xfe\x6c\x1c\x63\xab\x9d\x97\x97\x3f\xbf\xc1\x3e\x9e\x67\x7c\x96\xcd\xb3\x5c\x34\x10\x28\xd1\x4b\x01\x10\x47\x80\x93\x08\x71\xe4\x3c\x26\x04\x75\xc9\x24\x47\x80\xce\x6b\x40\x14\x03\xa6\x30\x84\xae\xde\xaa\xdd\x1b\x6f\x32\x01\x32\xe5\x9a\x72\xd2\xcd\x09\xf1\x31\x51\x91\xd3\x22\xc2\x90\x11\x0c\xe2\xa1\x13\xea\xbd\xa8\x19\xb8\x4b\x89\xdb\x95\xc5\xe8\x4b\x65\x51\xc4\x60\x1a\x1f\x10\x5c\x98\x7f\xdb\x92\x82\x82\x25\xb7\xcd\x77\x8c\x9a\x2c\x05\xa6\x58\x00\x79\xb4\x26\xfa\x8b\xc8\x04\x65\x38\xe0\xc2\x81\x23\x73\x85\xf3\x8e\xac\x0a\x9b\x4a\x65\xab\xc8\x0a\x0e\x10\x27\x5f\x8c\x01\x70\xb4\xad\x9f\x6e\x5f\xb6\x62\x99\xdd\xbe\x64\xf9\xff\x8f\xba\x37\x0f\x6f\xea\xb8\x1a\x87\xcf\xcc\x9d\x7b\x25\x1b\x30\x96\x6d\x59\xde\x2d\x59\x9b\x65\x59\xb6\x64\x59\x92\xe5\x55\xde\xf0\x6e\x6c\x63\x8c\xcd\x62\x76\x30\x9b\x59\xcc\xbe\x67\x81\x04\x82\x43\xf6\x15\x03\x81\x04\xb2\x87\x94\xb8\x49\xf3\x36\x09\x21\x84\xa4\x4d\x9b\xbd\x6d\xfa\xbe\x4d\xd3\xb4\x7d\xdb\x24\x90\x04\xb2\x37\xe0\xab\xef\xb9\x33\x57\xd7\x12\xa6\xcb\xef\xfb\x7e\xff\x7c\x3c\x0f\xa0\x7b\xe7\xdc\x33\x33\x67\x66\xce\x9c\x73\xe6\xcc\x39\xcb\x9d\x5b\x5e\xde\x55\xfb\xf2\x95\xfd\xee\x0d\x7e\x4a\x0e\x08\x49\xe0\x80\x00\x54\x06\xca\x55\x88\x83\xf2\x3c\x8c\x05\x33\x22\x98\x93\x0f\xbd\x38\x69\x5f\x95\x76\x57\x41\x76\x9f\x52\x21\x8c\x59\x68\xd6\x0c\xd2\x6c\xb3\x98\x6c\x3a\x73\x5c\x98\xcf\x94\x4e\xe3\xd6\x08\x19\xd8\x2d\x75\xc9\x12\xea\x91\xa0\x68\x1e\xc8\x32\x7a\x6e\x27\x69\x6c\xd6\xde\xec\x96\xd5\x0d\x53\xca\x2f\xa0\x28\x4d\xf2\xc4\x44\x83\x6e\x3c\xc6\xfa\x8c\x4f\x27\x24\xc7\x8f\x43\xd8\x37\x63\x7d\x55\xf7\x4e\x8b\x71\x5e\x65\xfd\xaa\x96\x6c\x74\xca\xe8\x34\x3a\x33\x26\x4c\x48\xcf\x37\x66\xe4\x6b\x54\x18\x37\xae\x7e\x61\x4f\x4b\x29\x16\x2e\x59\xf4\x1e\x6b\x22\x2a\x98\x75\x5d\xc7\x82\x37\x16\xb8\xe6\x2f\x5c\xec\xbe\xe9\xad\x1b\x6b\x70\x69\x4d\x69\x55\xed\xd6\xc7\x16\xa1\x07\x6d\xee\x69\x6b\xab\x06\x8b\xe7\xd7\xdb\x52\x93\x72\x0a\xa4\x35\x5b\x12\xfc\x94\xdc\xc5\x9f\x80\x22\x28\x0a\x78\x92\x59\x0c\x5a\x1e\x23\xcc\xd3\x31\x05\x82\x80\x5e\xff\x9e\x11\x0a\xc9\x17\x0a\x3e\x64\xd5\xe5\x1b\x4c\x06\x13\x35\x2a\xb0\x95\xa6\xb8\xba\x86\xa2\x69\x64\x70\x5a\xad\x90\x18\xa2\x40\x62\x22\xa5\x40\x1e\xb6\xa2\xdf\x24\xd9\x4b\x8c\x77\xf7\x0e\x2c\x9b\xd7\xf7\xfe\xfb\x4b\x1e\x5c\x53\xba\x62\x41\x51\xab\x2b\x11\x65\x5b\xb2\x0a\x4d\x5a\x8c\xf4\x19\x9f\xa5\xd8\x31\xae\x5c\x36\xd8\x32\x69\x55\x5b\x1e\x87\x36\x78\xbb\x2b\xb2\x5e\x59\xb7\x76\xc1\x86\x57\xbc\x4b\xee\x5f\xb4\xf6\x21\x57\x42\xa0\xab\xaf\x64\x59\x8e\x0f\x15\xcc\xa4\x9d\x9d\xf7\xcb\xc5\xfb\xde\xdc\x53\x8d\xf5\x93\x56\x4d\xa6\xfb\x64\x4b\xf0\xcf\xe4\x66\x1a\x5b\xb7\x28\xe0\xe1\x58\xcc\x18\xc4\x13\x1e\xd1\x13\x56\x0e\x58\xe8\x18\xda\x1b\x76\x87\x6d\x26\xe3\x97\x06\x8b\xc1\x6c\xd3\xda\x69\xbf\x46\xfb\xe0\xf5\x46\x8e\xa2\xa7\xd0\x62\x35\x5a\xdd\x72\x18\x11\xe9\x57\x06\xc6\x9f\x4c\x9f\xe6\x69\x70\xc4\x23\x43\xae\x3d\x5f\x1a\xbd\x4f\x26\x24\x27\x8c\x43\xd8\xdb\xb3\x36\x30\x34\x14\x35\xb9\xe9\x35\xbc\x7f\xe9\xac\x44\x67\xb3\xe7\x8f\xc2\x5f\x97\x3c\xb8\xaa\x18\x7f\xdf\xbe\xca\x14\x93\x57\xda\x60\x2b\xb7\x14\xe0\xfd\x3b\x5b\x8f\xb6\x5a\x27\xb7\xb5\x67\xaf\x3e\xbe\xd2\xc7\xad\xbe\xae\xa9\xa4\x12\x3f\xdf\x58\x61\x28\xca\xd6\x9d\xca\xed\xd8\x04\x18\x9e\x10\xf7\x92\xfd\xfc\x09\xb0\x83\x0f\x02\x81\x32\x2d\x22\xa0\xa7\x7a\x46\x81\x0b\x73\x75\x00\x02\x92\xf6\xdb\x70\x27\x6f\x9e\x1f\x0d\x19\xe3\xf3\x82\x1d\x72\xb2\x0c\x06\x8b\x41\x25\xe8\xec\xf1\x4a\xf3\x0d\x56\x43\xd8\x88\x25\x64\x60\x9d\xd6\x98\xc7\x12\x10\xa1\x90\xf8\xe2\x71\x8f\xa0\x57\xef\xbe\x3e\xb3\x72\x51\x9d\xf8\x31\x87\xb2\x36\xbd\x70\x4d\xcd\xda\x55\x81\x6e\x6f\x92\x2a\x36\x35\xe1\x3b\x5d\xca\x78\xbc\x7d\x00\x1f\x49\x75\xd7\xd9\x6f\xb0\xe7\x7d\x89\x7b\x4f\xad\x5b\xed\x99\x56\x9e\x75\xca\xb7\xfc\xe0\xa2\xd5\x47\x0a\x12\xaa\x7b\x96\x97\x6d\x4e\x2d\x2b\xf1\xc4\xe9\x12\x6a\xea\xab\x34\xeb\x57\x5f\x3f\x72\xc6\xb3\x6a\xf9\x5c\x4b\x5d\xfd\xa1\x79\xef\xd0\x75\xf8\xaa\xb8\x89\x2c\x24\xc5\xe1\xfd\x4b\xfd\x17\xfd\x4b\xba\x6a\xff\xf4\x72\xff\xd0\xff\x61\xff\x10\x8f\xfe\xba\x7c\x7e\x92\xbb\xd5\x2b\x7e\x4c\x90\x71\xc9\xb1\x81\xb2\x9e\xa9\x05\xb5\x39\xf1\x64\x7c\x42\xec\x77\x9a\xb8\x28\x34\x6f\x0e\xee\x0b\x75\x10\x1d\x7c\xba\xb5\x32\xab\x38\x27\xe9\xc5\xbc\xae\xad\xad\xed\xeb\x2c\x1a\x77\x75\x9b\x63\xda\x04\x5b\xae\x75\x9c\x66\x7c\xbe\xdb\x31\x6e\x6a\xeb\x54\x71\x20\xbc\x83\x08\x34\xc1\x4f\xe9\x1d\x09\x3b\x2c\x64\xe7\xd7\xfa\x50\xb8\x67\xe0\x38\xa1\x47\x45\xaf\xdf\xf0\xf4\x76\x71\xe8\xca\x7b\x20\x1b\x90\x24\x6d\xf1\xe1\x20\xc0\xf3\xd4\x7f\x4d\xa7\xc4\x02\xa7\x01\x6b\x27\xb2\x40\xb0\x06\xb3\xd6\xaa\x33\x32\x89\xea\x6a\xcb\x4f\x63\xd4\x24\xc8\xc1\x06\x69\x34\x16\xce\x8d\xd3\x53\x74\xc6\xe4\x18\x8c\x12\x13\xfe\x3b\x3e\x03\x4b\xfc\xa6\xb2\x72\x71\xa3\x8d\xdb\x97\x33\xf3\x8e\xa5\x06\xad\xbd\xd4\x1a\xc7\x9f\xb8\xb4\x38\xaf\xf4\xca\xe5\x66\x68\x18\x68\xe7\x7e\x2b\xc6\x9f\x16\x3f\x7a\xa9\xf7\x74\xe5\x4d\xbf\xbf\x37\x14\x3b\xcf\x2e\xf1\x54\x52\x0c\x36\xb8\x85\x65\xf9\xcc\x04\x5e\x12\xbd\xf0\x2a\x50\xe2\x9b\xd0\xec\x57\x33\x65\x5b\xab\x7c\xa4\x6f\x1b\x0b\x36\x1a\xd8\x89\xde\x48\x56\x3e\x08\x58\xff\x09\x2c\xc8\xa0\xc2\x4c\xc6\xab\x24\x5d\xd8\xaa\x35\x6a\x0d\xe6\x90\x29\x37\x74\x33\x99\xa6\xbb\xd5\x8c\x2e\xf0\x51\x2a\x61\xf3\x1e\x63\xcb\xd6\x9e\x5c\xa2\x4d\xcf\x4e\x1a\x87\x97\xa0\xd4\x94\x5c\x37\xe5\xc9\xa9\x39\x18\x17\xcd\xdc\x58\x5d\xb5\xa4\xc9\xce\x71\x1b\xc4\xef\xef\xfb\xf4\xc0\xe4\xb7\x51\xfe\xc2\x03\x2b\xd0\xaf\x2e\x5f\xf0\xd6\xe3\x87\x6f\x9b\x7d\xaa\x77\xd6\x4b\x73\xaf\x79\x69\x7b\x05\x36\xb6\x6e\xee\xa2\x77\x20\x3f\xa5\xb6\x54\x33\xf4\xb1\x8e\x1a\xc3\x15\x36\x90\x14\x36\x15\x33\xfa\x4b\xbc\x48\x19\x7e\xeb\x3f\x83\x0a\x8d\xfe\xcc\xd0\xe8\xc7\xb2\x54\xf8\x1a\x8d\x46\x6b\xd3\x19\x59\xf8\x8f\xd1\xe1\x97\x39\x57\xc8\xfc\x29\xed\xb6\x9c\x1e\x25\x27\x26\x9a\x92\x63\x30\x36\x64\x7c\xc6\x78\x95\x7f\xd6\xe6\xea\xc0\xe2\xc6\x1c\xee\x6f\x17\x2f\xfe\x8d\x3f\x71\x69\xbd\xa7\x1a\x15\xcc\xb8\x62\x3b\xb1\x74\x5c\x3b\x13\xe5\x4b\xb2\xbf\xa4\x14\x00\x82\xe9\xc1\x4f\x69\x8e\x00\x03\xcc\x0d\xa5\xb9\x17\x30\x87\x05\x49\x86\x03\xe0\x95\xd0\x43\x34\x66\x87\x2a\x34\x7a\x96\x7f\x02\x44\x07\x8f\xe7\x55\x33\x41\xa5\xca\x50\x35\xf7\x04\xc6\x59\xb5\xc6\x30\x8b\x96\xdc\x7c\xf7\xd5\x87\x6d\xe2\xab\x17\x2e\xbc\xfa\x25\xb2\x18\x4d\x36\x8c\xb4\x09\x7f\x8f\xcf\xc4\xd8\x33\x6d\x75\x05\xdb\x48\xfe\x4b\xac\x25\xc5\x62\x25\x7a\xe9\x9f\x8e\xd3\xfa\xe0\x39\x32\xc8\xbf\x0a\x76\x28\x0d\xf8\x63\x10\x46\x13\x11\xc1\xb8\x11\x08\xe6\x30\xa1\xb9\x4e\xc2\xef\x4b\xf0\x4c\xa9\x46\x60\x32\x66\xa4\xc5\x4b\xea\x82\x1d\xd9\x05\x59\x99\xf6\x44\x24\x63\x0f\xd9\x67\xc3\x9b\x8c\x6f\xdf\xf4\xda\xfe\xd6\xd6\xfd\xaf\x6d\x5a\x7b\xa2\xba\xa2\x72\x7f\x77\xdd\xca\x16\x9b\xad\x65\x65\xdd\xce\x5d\x1c\x4e\xd7\x7d\x16\x6f\x45\x78\xca\xde\x9f\x6a\x7b\x1f\xfa\xf3\x2e\x24\xec\xfa\xf3\x43\xbd\x8e\xdc\x27\x0d\xc6\xea\x81\x7b\xbb\xc4\x1f\xba\xef\x1b\xa8\xc6\x7b\x36\x74\x9f\xec\x9e\xf6\x93\xe9\x03\x8f\xae\xf2\xd1\x75\x77\x6b\xf0\x1c\xe9\xa7\xb1\x0c\x4a\x03\xfe\x4c\x44\x38\x3d\x42\x84\x46\x5e\x97\xf6\xf2\x55\xa3\x47\x96\x7c\x44\x14\x03\x53\x56\x7a\x6a\x5c\x6c\x94\x1a\x1c\xc8\x21\xb5\xdf\x5c\xce\xf9\x0a\x59\xf0\xfb\xd0\x4d\xd6\x2b\x3a\x43\xd5\x9d\x17\x7c\xd2\x86\xc7\xc7\x7c\x32\x2e\x16\x57\x0f\x0c\xcd\xdc\xfd\xd6\xcd\x0d\x75\x37\xbe\xbe\x73\xe5\x03\xee\x3c\xef\x60\x47\xeb\xaa\x7a\x83\xb1\x79\xe3\xe3\x28\xd1\x56\x62\x71\x2d\x29\x28\xe8\x2b\x98\xbe\xab\xdb\xde\x7d\xe7\x99\xe5\x39\xcb\xcf\xdc\xd1\x6d\xcc\x7c\x3e\x35\xb3\x7c\xfe\xd6\xb2\x9c\x8a\xad\xf3\xcb\x69\xfb\x27\x05\x3f\x25\x87\xe9\x7d\xbc\x1c\x1a\x22\x50\xda\xa9\x57\x31\x13\x24\x53\x6d\xe4\x48\x88\x19\x7c\xb3\x55\x67\xd6\x8c\x2a\x01\x5a\x96\x8c\x61\xac\xb4\x71\x87\xf8\x13\xee\x41\xf1\x7e\x8d\x3e\x2f\xdd\x56\x61\xd7\x61\x6c\x48\xff\x34\xd5\xce\xe1\x9a\xd5\x77\xb4\x77\x5c\xd7\xeb\x25\xe4\xf3\x57\x5e\xb9\xbc\xd9\x56\x53\x90\x1a\xc6\xde\xe8\x4c\xcf\x99\x75\xeb\x22\x40\x50\x13\xfc\x94\x6c\xa6\xf3\xfb\x6a\x6d\x4a\x0a\x6f\x93\x4d\x7b\x95\x36\x45\x4a\x0f\x52\x9b\x36\x8a\xbf\xe2\x6e\x12\xef\xd1\x18\x5d\x99\x4d\xed\x1c\x36\xa4\xff\x9d\xad\xbf\xaa\x15\xfb\x5b\x3b\x77\xcd\xf6\x11\x6e\xf3\xa9\x53\x23\xe7\x6d\x35\xae\x34\xbc\x6b\x7d\xe3\x50\x93\xb9\xb9\xa5\xd5\x22\x09\x06\x38\x67\x26\x6d\x53\x57\xf0\x1c\x59\xc6\xbf\x0a\xa5\xff\x79\x2e\xae\x74\x25\x17\x57\x86\x92\x8b\x2b\x97\x49\xac\x5e\x1f\xcb\xc4\xf8\x9f\xe6\xe2\xea\xba\x76\x93\x77\x6a\x49\x66\xd3\x9e\xd3\x1b\xe6\x3e\x79\x6d\xcb\x45\x73\xa0\xab\xa0\x71\xd9\x24\x43\x46\x60\x51\xdd\x4b\x2f\xdd\x7c\xbb\xad\x75\x4d\x43\xf1\xec\x1a\xf3\x85\x69\x83\x27\x67\x6c\xf8\xc5\x6d\xed\xe8\x9e\x1d\x8f\xe5\x24\x55\xb5\xcf\x2c\x58\x74\xff\x12\xaf\x7f\xc9\xdd\xbd\x79\x93\x8b\xf4\xa6\xb2\x76\x47\x41\x47\xb1\xe1\xc5\x81\x6d\x05\x5d\x92\x2a\x39\xd5\xb9\xea\x81\xc5\x2e\x7f\xff\x61\xaa\x77\x55\xe1\x95\xe4\x16\xce\x09\x75\xe8\xc6\xe0\x5a\x80\x29\xee\x00\xfc\xcb\xf7\x0f\x88\x55\xc4\x07\x80\xad\x50\x09\xe3\x44\x11\x09\x50\x39\x0e\x20\xea\x69\x40\xcf\x89\x54\xdd\x02\x84\x3e\xe1\x2e\x73\x09\x82\x19\xc6\x41\x6c\x60\x82\xc0\xb3\xac\xce\x4b\x52\x90\x5a\x4b\x73\x4a\xfb\x74\x82\xa0\xd5\x1a\xd1\x27\x29\xce\x6a\xdb\x7a\xbb\xf3\x1d\x72\xc8\xb5\xbc\x6f\x96\xa9\xb5\xe6\xae\x99\x0f\x49\xdf\xff\x8a\xbb\x80\x7f\x10\x92\x60\x1c\x64\x3e\x23\x7d\x5e\x47\x3d\xda\x87\x81\x66\xf6\x4e\x3d\x29\x21\xeb\x39\xc9\xd0\x8d\xca\x16\xf8\x87\x14\x67\x8d\x6d\x9d\xdd\xf9\x0e\xbf\xbe\x60\xd9\xe2\x5e\x53\x6b\xed\x9d\xb3\x8e\x4a\xf3\x1d\x9d\x16\x5f\xc6\xdf\xc0\xf7\xa3\xed\xa9\x53\xda\x63\x0e\x43\xf0\xb5\xd4\x9e\x2d\xf6\xbc\xdf\x4f\x72\x2d\xeb\x9b\x65\x6a\xa9\xbd\x73\xe6\x49\xa9\xcf\xe8\x55\xee\x02\xfe\x4a\x48\x82\x3a\xd4\x47\x5e\x00\x38\x05\x8c\x16\xa8\x86\xbb\xcc\xbd\x24\x98\xb1\x15\x2d\x0e\xce\x04\x00\x15\x5a\x0c\x8f\x01\x2b\x33\x73\x17\xb8\x27\x84\x24\x6c\x45\x7d\xc1\x1e\x5a\xd6\x07\xc3\x34\xaf\x30\x46\x6e\xf1\x25\xee\x20\xfc\x2f\x8c\x03\x1d\x24\x04\x34\x71\x1a\x81\x27\x50\x87\x10\xc0\x92\xd4\x14\xac\x4e\x0c\x6f\x15\x1f\xd6\xc0\x05\xc9\xf9\x55\xb6\xed\xf6\xbc\xdf\x23\xbf\xd4\xd4\xed\x39\x05\x1f\xd4\x28\x4d\x3d\xfa\xc0\xe8\x4f\x90\xb8\x10\x90\xd6\xd1\x58\xc1\xa4\xb4\x89\x05\x3d\xe3\x11\xc7\x55\x48\x1b\x40\x99\x92\x31\x55\x9d\xa2\xc4\x3d\x93\x74\x5d\xd2\x2a\xee\xfe\x52\xbc\x09\xad\xfb\x12\x6d\xe6\xd6\x5d\xbe\x89\x5b\xf7\x2a\x5a\x2f\xee\xa5\xb6\x87\x39\xa4\x87\xde\x6d\x2e\x0c\xb8\x40\x10\x4a\xa9\x4f\x36\xdf\xa3\x42\x3c\x5f\xd1\x14\x85\x38\x8e\xa5\xa9\x2e\x6b\x62\xc9\xa5\xc3\x2e\x14\x47\xab\xd3\xed\x86\x50\x25\x72\x45\x5a\x83\xc6\x40\x7a\xc4\xdd\x17\xc4\x41\x34\x20\xfd\xbd\x80\x36\x8b\xbb\xd1\x66\x71\x0e\x3a\xfc\x12\xfe\xd9\x69\xa9\xd6\xd3\x23\x75\x54\xd6\x41\x77\x62\x15\x37\x99\xfb\x1c\xb4\x57\xcb\x69\x6c\x33\xb1\x64\xea\x63\x2e\x9d\xdd\x99\xe9\x6f\x77\x17\x76\xf8\x33\x33\xfd\x1d\x6e\x77\x87\x3f\x93\x4b\xcc\x9f\xec\xd7\xeb\xfd\x93\xf3\x4b\xf2\x5b\xa4\xd7\x2d\xf9\x6c\xbc\xc6\x07\xcf\x13\x27\xf2\x61\x2b\xc4\x06\x27\x51\xd7\xc4\x58\x34\x81\x8d\x25\x3c\x17\x3c\xcf\x9b\x58\x99\xf8\x15\x00\x58\x20\x76\x1b\x85\x90\x3a\x0b\x02\x04\x82\xe7\xc9\x63\xfc\x19\x30\x80\x0f\x4a\xa0\x1d\x16\xc3\x36\x68\x0d\x34\x95\x14\x63\x41\xe5\x57\xe3\x28\x48\x46\x58\xcd\x35\x82\x00\x3c\x08\xfc\x7c\x9a\x1c\x27\x4a\x0d\x51\xf3\x43\x97\x24\x6a\x9a\xa2\x91\x5a\xcd\x5c\x61\x6a\x71\xf3\xa6\x0d\xfd\xcb\xe7\xcf\xb5\xd9\x1c\x36\x9b\xc9\x66\x32\x8d\x57\xa7\xcb\x7d\x4b\x0c\xb9\xb5\x5c\x91\x2e\x62\x6c\xcf\xe3\xad\x48\x67\x1e\x1b\x4f\x69\xcc\x1b\x7e\x2c\x4c\x65\x56\xd5\x9c\xf2\xe2\x1e\xbd\x7e\xba\xbf\x62\x4e\x95\xc1\x50\x39\xa7\xbc\x78\x86\x5e\xdf\xed\xaf\x98\x5b\x95\x25\x06\x0d\x81\x59\x65\x15\x73\x2b\xb3\xb2\x2a\xe7\x94\x97\xf5\x56\x1a\x36\x76\x72\x9e\xce\xcb\xdf\x44\x27\x1a\x93\x93\xb2\xb4\xd1\xd1\x5a\x63\x72\xb2\x51\x1b\x85\xfb\xa3\x75\xc6\xa4\xd4\xac\x04\x55\xb4\x36\x8b\xbe\x11\xef\x63\x6f\xe2\xd5\xa1\x37\xc8\xe6\x5f\xd4\x92\x6b\x31\x18\x2c\xb9\x2d\x8b\xfc\x16\xff\xa2\xe6\x5c\xb3\xc1\x60\xce\x6d\x5e\xe4\xe7\x1e\x2e\x5e\xd4\xec\x70\x34\x2f\x2a\x36\xf9\x17\xb6\xe4\xe6\xb6\x2c\xf4\x8f\x74\xce\xc0\x5d\x33\xba\x52\x5d\x66\x9d\xce\xec\x4a\x35\xa5\x16\x48\x3f\x0a\x52\x2f\x77\x4b\xaf\x12\x2d\xae\x54\x4b\x0a\x2b\x4b\xb1\x8c\x79\x43\xe7\xd0\x8d\x70\x13\xd7\xca\x3d\x0a\x02\x64\x04\x52\x39\x39\x17\x4c\x64\x9a\xf1\x78\x0d\x9d\x49\xf1\x46\xe4\x41\x6e\xdc\xf5\xc3\x31\xf1\x4f\x48\x7f\x0c\xa7\x88\xab\xd1\xee\x78\xb4\x9b\xcd\xc5\xeb\xe1\x26\xae\x89\xe2\xb1\x04\x8c\x3c\xc2\x12\x22\x8c\x28\x26\x8c\x14\x54\x74\x6a\x08\xf1\x9c\xc4\xa6\x90\x16\x19\xe3\x39\x9c\x83\x0c\xe2\x47\xc7\x7e\xf8\x81\x7b\x54\xdc\x1c\x2f\x6e\x46\xfb\xd1\x2d\x12\x3e\x3d\xfc\x89\x1b\x22\x6f\x4a\xc2\xe7\x49\x0c\xc8\x69\x37\x5b\x91\x0e\x1d\xdc\x8e\x82\xdb\xff\x54\xc3\x3d\x5a\x23\xf1\x8c\x09\xd8\x49\x52\xf8\x57\x21\x1a\x62\xa0\x23\x10\x3d\x01\x01\x51\x23\xa4\x18\xfe\xb4\x3c\x0a\x79\xdf\x03\xc6\xd4\xbf\xa6\x14\x53\x97\x67\x02\x98\x4c\x0d\x2b\x25\x04\xf7\x00\x26\xb8\xa5\x27\x10\xc5\x42\x8a\x52\x06\xe0\xd6\x1a\xb5\x46\x8f\xc1\x8a\xdc\xc8\xa0\x51\x71\xbb\xef\xb8\xe3\x29\xb1\x98\xa0\x57\x9f\x11\xeb\x51\x54\x1c\xb7\x7c\xd7\xb3\xcf\xce\xc7\x5b\x46\x8e\xa3\x2d\xf4\xdc\x00\x15\xe3\x7d\xdc\x5b\xfc\xf3\xa0\x83\x65\x2c\x29\x08\xcd\x8d\x98\x40\xc3\xa2\xcb\xb9\x11\xd9\x43\x0f\x2b\x4e\x19\xcd\x8d\x58\xda\xc4\x52\xb8\xb0\x07\x49\x4c\xd5\x85\xb6\x4f\x56\xc4\xe2\x5d\x96\x86\x52\x23\xea\x40\x17\x6f\xd6\x1a\x05\xf5\x15\xa9\x11\x95\xc0\x3b\xe8\x1d\xbd\x71\x65\x43\xe9\xec\x1a\xd3\x99\xb8\x2c\x57\x46\x61\x4d\xdc\x19\xfe\xf1\x4d\x15\xf5\xc6\xa6\xb5\xed\x22\x8f\x7e\xe9\xa9\x77\x24\x38\x73\x46\xde\xe5\xf4\x4c\x6f\x5a\x0a\x40\xae\xe7\xcf\x80\x1b\x9a\x02\xf5\xa1\xc8\x1a\xe3\x90\x6a\x3c\x12\x78\x95\x30\x77\x02\xe2\x09\x0b\xc3\x1a\x0a\xab\x51\x43\x9b\x45\xbd\xb1\xca\x70\xb3\xbb\xc0\xe5\xcc\xcf\xb3\x59\x8d\x59\x92\x26\x90\xa8\xd1\x24\xc4\xc6\xa8\xe9\x45\x86\x04\x41\x65\xd0\x1a\x3c\xee\x72\xce\x63\x35\x7a\xdc\xf4\xef\x98\x1d\x5f\x67\xd0\x1a\x74\x06\xce\x2f\xbe\x8e\x33\x0c\xf8\xd4\xa5\x4f\xdb\x92\x0d\xf1\x2a\xfc\xd0\x03\x64\xe8\x1e\xbe\x66\xe3\xb1\xf9\x8b\x0e\xaf\x28\x3e\x97\xe5\x6f\xb2\xe5\x34\x78\x33\x05\x34\x49\x7c\x89\xa0\x32\xf4\x1b\x77\xd5\x1a\xc7\xcb\x2f\x0b\xf9\x15\xf5\x99\xfe\xc1\x2d\x83\xc7\x16\x1f\x5d\x59\xe2\x5f\x72\xfb\xf4\xa2\xc9\xae\x44\x7d\xd9\x8c\x92\x63\x83\x5b\x00\xd3\x38\x5b\xcf\xf0\x27\xe8\xb9\xdd\x07\x54\x53\x18\x1e\x47\xaf\xc2\xa6\x0e\x8f\x43\x3c\x42\xa1\x03\xff\x02\x50\x0b\xe3\x04\xf5\xb8\x55\x10\x0d\x04\x45\x93\xf9\x30\x6e\x1c\xb5\xd4\x48\x43\x00\xa0\xea\x89\x42\x2a\x15\xdd\x28\xf0\x4c\x9e\xb1\x25\x59\x7b\xfc\x3f\xfd\xb2\x5e\x9a\x87\xde\xff\xf0\x23\x9e\x2f\x63\x5f\x02\xfd\xb0\xa7\x27\x10\xe7\x2d\xcc\xcd\xb1\x65\x6b\x12\x0c\x1a\x93\xd6\x6c\x8e\xa5\xdc\x70\x6c\x32\x3c\x63\x0c\x47\x3d\xc5\x68\xfc\x12\xaa\xbb\xa0\x51\x0b\x35\x39\xfc\xe4\xc4\x94\xac\xf8\x84\x9c\x71\xa9\x89\x5d\x76\x77\x4f\x95\xb9\x33\xca\xd3\xb3\xa9\xd9\xf7\x7a\xb0\x65\x73\xb7\x47\xdd\xf9\xfa\x93\x97\x8f\xfa\x42\xd1\xcc\x7d\xdc\x83\x23\x37\x38\x4a\xb2\x62\xa2\xc9\x4d\x09\x3a\x63\xcb\xe6\x69\x78\x63\xc7\x8d\xf3\xbc\x23\x6f\xf2\x27\x7c\xf3\xf7\x76\x20\x22\x5e\x16\xef\x71\x4d\x5e\xec\xf5\xf5\xb5\xbb\x00\xc1\x36\x1a\x5f\xfc\x0c\xe4\x41\x5b\xa0\x45\x8f\xd4\x2a\x03\x12\xd4\xd2\xea\x8c\x42\x18\x91\xc6\x28\x24\x44\x23\x49\x5a\x9c\x3b\x6e\x34\x70\x90\x5a\x4d\xa5\xc4\x1a\x25\xed\x59\x2d\x6e\xce\x73\xe4\xda\x73\x6c\x72\xa0\x16\x13\xeb\x29\x3d\x1d\x0c\x75\x53\x9a\x50\x1e\x9a\xc0\x20\x4c\x4b\x90\xa6\x9c\xd6\xc0\x5d\x2f\xde\xcd\x39\x3b\xd7\xd5\xaf\x9e\x93\xe2\xdf\x56\xb9\xe1\xf5\xdb\x3a\xc9\x13\x4f\x3c\xf1\xa4\x6a\xda\x6d\xaf\x6f\xa8\x58\x57\x9a\xe2\x5c\xea\xad\x1f\x98\xe2\xe2\x51\x9f\x78\x37\x5a\x82\xe3\x66\xdf\x30\xcd\x66\x78\x25\x26\xb6\x76\xef\x9b\x7b\xf6\x5e\xb3\x77\xf7\x1b\x37\xd6\x68\x62\xce\x4c\x8c\xcf\x99\x7a\xdd\xf4\xbd\xd7\xd0\x7b\x9d\x81\xe0\x39\x72\x2f\xd5\xd3\x2a\x61\x1a\xcc\x80\x09\x81\xe8\xe9\xdd\xed\x93\x4a\x9c\x13\x09\x71\x46\xdc\x55\xbf\xda\x55\x09\x89\xfa\x63\xef\xb6\x8e\xbd\xd7\xc7\x5b\x91\x0e\x4f\x33\xd6\xcc\x0f\x04\x16\xd4\x9a\x4c\xec\x7f\xe3\xc3\xe3\x93\x2d\xc9\xc9\x96\xe4\xf1\xe3\x53\x2c\x29\xc9\xe6\xa4\xf1\xef\xd2\x92\x85\x35\x26\x63\xcd\x02\x0a\x79\x3c\x26\xc5\x92\x94\x6a\xd1\x8d\x1b\x9f\xc2\x20\xc5\x3b\x24\x8e\x49\xcc\x9e\xde\xfa\x1c\x67\xfb\x8a\xb2\x96\xf2\x15\x1d\xce\x9c\xfa\x39\x1e\x9d\xdd\x90\x90\x92\x5b\x94\xd9\x92\x51\x64\x4f\xd1\x66\xd9\xb4\x23\x81\xb2\xfe\x76\xa7\xb3\xbd\xbf\xac\xb5\x7c\x85\xf4\x63\x45\x79\x86\xdf\x9e\x92\x62\xf7\x67\xb4\x86\x7e\xec\x62\x9c\x17\x00\xc3\xcf\x83\xe7\x48\x2c\xff\x18\x18\xc1\x09\xea\xe1\x5c\x93\x06\xb0\x93\x69\x9f\x1e\xc1\xe8\x29\xf0\xfa\x34\x11\x59\xc3\xd9\xf1\xc0\x68\x7a\x71\x6e\xc6\xa6\x93\x1b\x8a\x7b\x17\x78\x67\x3b\x5c\x33\xae\x6b\xaf\x5a\xdd\x9e\xe7\x5d\x72\xdf\x02\x9d\xb7\xa7\xea\x13\xe7\xa4\xbc\x44\xbb\xde\xeb\xd7\x06\x36\x1c\x5f\x14\xad\xf9\xaf\x28\x35\xba\x6f\xee\xbd\xcb\x8a\x1c\x5d\x9b\x5b\x72\xaa\xef\xb9\xeb\xc6\x82\xea\x8a\xf9\xd5\x26\x9c\x9c\xd5\x3e\x7d\xb6\x33\x37\x50\xd9\x3b\x97\xdd\xb9\xdd\x40\x73\x9e\x9f\x82\x28\xc8\x04\x07\xb8\xa4\xb1\x71\xe6\xd9\xb2\x92\x63\x78\x20\x4e\xbb\x81\x06\xe9\x75\xc7\x6b\xdc\xba\x31\x23\xe0\x63\xb7\x89\xe4\xc6\xc5\x1b\x3c\x06\x7c\xfe\xc5\x7f\xbc\xf8\xe2\x3f\x5e\x6c\x4f\xcc\x2e\x31\x99\x4b\xb2\x13\x13\xb3\x8b\xcd\xe6\x62\x5b\xe2\xd2\x04\xbd\x3e\x3e\x41\x9f\x99\xf0\x96\xf8\x0e\xca\xe7\x56\x5e\xbe\x95\x3f\x71\xf9\x4e\x6e\xd9\xc3\xd9\x35\xae\xd4\x54\x57\x4d\xf6\x6f\xb3\xab\xa5\x1f\xd5\xd9\xd1\x0e\xa7\xd3\x71\x3a\xd7\xe5\xca\x1d\xf9\xd3\x3c\x89\x66\x2b\xb8\x3b\x48\x27\xcd\x8d\x9f\x00\xea\xe1\xf8\x89\x02\xc2\x4e\x3b\xe2\xe4\x76\xc5\xbb\x35\x46\x16\x5f\xc6\x63\xe0\xfe\xbe\xbd\x6c\xdb\x8a\x1b\xae\xdd\x7d\xdd\x0a\x31\x76\xef\xda\x7d\x68\x2f\x1f\x2d\xee\x95\x84\x3f\x9c\x26\x5e\x83\x76\x8c\xfc\x15\xbd\x28\xd6\xa0\x9f\xf7\xd2\xb1\xb8\x2b\x78\x9e\xdc\x4a\x5a\x21\x13\xb2\x41\x3d\x6c\xd2\xc7\x62\xec\xb4\x9b\xe9\xf2\x20\xca\xd5\x5d\xad\x81\xfa\xfb\x7a\x7d\x48\xda\x20\x0c\x1a\x8b\x85\x24\x4c\x7d\x7e\x7e\xc3\xee\xb5\x73\x6a\xcc\xb6\x86\xf9\xeb\x76\x56\x2d\x7e\x66\x77\xeb\x08\xf8\xf6\xb5\xf6\xfe\xac\x47\xbc\xa5\x69\xd0\x8f\xd3\x3c\x7b\x7a\x3d\x65\xd9\x8d\x8b\xb6\xed\x6f\x69\xd9\xbf\x6d\x51\x63\x76\xc7\x2d\x67\xd7\xe5\x8b\xcf\xb9\x4b\x4a\x2a\xb8\x9c\x4a\xbf\x78\x0e\x65\x14\x96\x05\x83\x30\x23\xf8\x1d\x79\x8f\x7f\x02\xf2\xd1\xcb\x41\x3d\xfe\xc4\x7f\x1f\x58\xd0\xfa\x38\x40\x13\xd1\xeb\xe8\x6e\x00\xff\x7d\x4c\x1f\xc2\x9f\x48\xfa\x50\x30\x08\x96\xe0\x77\xe4\x5d\xfe\x79\xc8\x47\xaf\x04\xb5\xf8\x33\x06\xaf\xff\x9e\xc2\xdf\x45\xe1\xe3\x28\xfc\x67\x27\xdc\x76\x7a\x80\xf5\x3d\x3b\xeb\x4a\x0f\x7e\x47\x9e\xe5\x87\x21\x1f\xbd\x1a\x54\xe3\x2f\xd8\x77\x31\xac\x9e\x2d\x61\xf5\x7c\x21\xd7\x53\x1b\xfc\x8e\x9c\xe6\x7f\x02\xf9\xe8\xb5\xa0\x1f\x9f\x63\xf0\x9f\x32\xf8\xdd\x61\xf0\xe7\xa8\x9e\x86\xa9\x1d\x66\x2a\xff\x0d\x64\x43\x39\xa8\x87\xdd\xb6\xf4\x38\x69\x8c\x0a\x12\x75\xf2\xcd\x67\x9a\x4a\x36\xf1\xca\x8c\xd9\x57\xc4\xac\xcf\xe3\x70\x73\xe7\xdd\x25\x13\x02\xbd\x1b\xaa\xac\xd5\xe5\x15\x59\x69\x69\xe5\x8d\x33\x8a\xf7\xbe\x77\x73\x7d\xd5\x8e\x9f\xad\x5f\xff\xdc\x8e\xaa\xf2\x8d\x4f\xed\xab\x9d\x57\x9e\x9e\x5e\x3e\xb7\xa6\x76\x5e\x59\xba\xca\x58\x36\x9d\x90\xca\xf2\xb9\x07\x57\x96\xaa\x26\xc4\x4f\x18\x1e\x9f\x1c\x3f\x7e\xe0\xb7\xe2\x9b\xa7\x8a\xf7\x5d\xfc\xc9\xc2\xb6\xfd\xa7\xd7\x68\x97\xfe\x74\x77\xd3\x29\x77\xd7\xea\x72\x1a\xb0\xbe\xa2\xff\xf6\xce\xee\xa4\x52\x2f\xf3\x59\x38\x18\x4c\x27\x36\x7a\x6f\x4f\x38\x29\x48\xf2\x12\x1f\x0a\xfb\x6c\xbb\x20\x4e\xbd\xc0\xdd\xf4\x17\xfe\x37\x3f\xda\x85\xdb\xa9\x8d\x54\xfc\x9a\x3c\x4a\xe7\xa1\x70\x52\xcd\x21\xa7\x1d\x21\x69\x8b\x46\xc8\x63\xd0\x1a\x10\xb7\x71\xe4\x1c\x57\x77\xe9\x1a\xdc\x3e\xf2\x14\xa9\xbe\xfc\x2d\xd6\xe2\xea\x91\xd5\x2f\xdf\x8d\x5f\xc7\x67\xef\x79\x79\x64\x35\x93\x17\x0e\xe1\x95\xdc\x17\x9c\x13\x38\xaa\x7b\x5c\x21\x31\x6a\x62\xa9\xc4\x68\xf0\x18\xb8\x2f\x2e\x3f\xcd\x4d\xc6\x2b\x5f\x96\xde\x67\x03\x90\x6b\xf8\x13\x10\x0d\xc2\x49\x9e\xd6\xab\xf3\x21\x37\x32\x72\x46\x8f\x01\x1b\x34\x89\x68\xde\xef\xc4\xb8\x53\x7f\x78\x0b\x2d\x44\xf5\x9d\xd3\xc9\xbc\x1f\xdb\x70\xed\x69\xe0\xa0\x08\xbe\x23\x4f\x73\xef\x83\x0d\x2a\x60\x2a\x44\x3f\x3b\xb9\xc6\x9f\x97\x4c\xb8\x51\x76\x6b\x8d\xb0\x15\x65\xe0\x90\x1f\x49\x48\x92\xf7\xc9\x51\x42\xb4\x86\xd0\xe9\xb9\x7c\x81\xdd\x43\x9e\xb6\x34\xae\xac\x2f\x98\x52\xeb\xd3\x6a\x7d\xb5\x9d\xae\xfa\xfe\x46\x8b\xa5\xa1\xbf\xde\xd5\x39\x89\xbd\x29\x90\xde\x5c\x76\x4c\xd0\x17\x5a\xac\x95\xce\x74\x8e\x4b\x77\x56\x59\x2d\x6e\xfd\x04\xce\x3e\x41\xef\x36\x67\x57\x3a\x33\x38\x2e\xdd\x55\x49\xdf\xe1\xf6\xa6\x1d\xb3\x0a\x4d\xa5\xcd\xd9\xd9\xcd\xa5\xa6\xc2\x59\x3b\x9a\xac\x8d\x3b\x67\x79\x4c\x25\x4d\x56\x6b\x53\x89\xc9\x33\x6b\x67\xa3\x35\xa7\xd6\x95\xea\xae\xae\x9a\x98\x18\x53\x51\x59\x90\xe6\xaa\xb5\xd9\x6a\x5d\x69\x05\x95\x15\x31\x89\x13\xab\xaa\xdd\xa9\xae\xda\x1c\x4a\xdf\x8b\x62\x13\xf7\x17\xc1\x01\x59\x20\x9c\x4c\x24\xd2\x78\x5e\xe1\xa1\x10\x6e\x16\x13\xb4\x1a\xfc\x4b\x1a\x98\xd4\xaf\x1f\x1f\x95\x9a\x9e\x16\x55\x5c\xee\x9e\xbd\xa7\xcb\xd2\x64\x49\x8a\xcf\x4d\x6f\xef\x2c\x9b\xbe\x6f\x4e\x81\xec\xac\x30\xb7\x8b\x7c\x3b\x7d\x5f\xaf\x6b\x7c\xd4\x4f\x79\x7e\xf6\xd4\x4b\xe3\x28\x0f\xb9\x19\x44\x52\x47\x78\x30\x40\x35\xa8\x87\xab\x0b\x0c\xb1\xd8\x69\x8f\xf7\x7a\xdd\x5e\x9a\x00\x36\x4c\xae\xb0\xe6\x71\xaa\x2c\x41\xa5\xfa\x17\x65\xf7\x38\x37\x57\x65\x97\x79\x3d\xfa\x0c\x97\xdb\x6f\xae\xda\xe0\x8c\x76\xae\xad\x32\xfb\xdd\xae\x0c\xbd\xc7\x57\x96\x5d\xb5\xd5\x99\xe0\x5c\xaf\x40\x14\x9b\xab\x36\x3b\xa3\x9d\x1b\x42\x10\xde\xb2\xec\xaa\xcd\x4e\x6e\x65\x6d\x0b\x1a\x97\x90\x1a\x3b\x31\x39\x3e\xba\xa5\xf6\x95\xda\x96\xe8\xf8\xe4\x89\xb1\xa9\x09\xe3\x50\x4b\xed\xb9\x7f\x51\x26\xcf\x4f\x38\x40\x7c\xa4\x16\xe2\x41\x38\x39\x1e\x4b\x73\xcd\xa0\xb2\xfa\x8c\x1e\x83\xcf\xe0\x31\xf8\x74\x2a\xb7\xd6\xa0\x32\x10\xdf\xc8\x67\x9d\x8b\xbc\x22\x5a\x30\x20\xda\x70\x69\xf3\xa2\xbc\x0f\xc4\xd3\x6b\xd0\x09\x54\x75\xac\x64\xd9\x6b\x1f\xbf\x76\x47\xf1\xf4\xd7\x3e\x66\xfa\xee\xd3\x10\x4f\xe2\xc9\xcb\xb0\x18\x32\x20\x06\x3e\x0e\x80\xff\x3e\xa4\x42\x37\x82\x6e\xe4\x41\xd0\x3c\x0d\xe8\xc4\xc7\x32\xa3\x1a\x79\x90\x72\x12\xe9\x9b\x93\xa0\x21\x4e\xf2\x36\x2c\x06\x3d\x44\xc3\x97\x61\xdf\x1c\x61\xdf\x7c\x19\xfa\xe6\x08\xfb\x06\x30\xec\x06\x20\xcd\xfc\x09\xe0\x61\x02\xa8\x87\xc7\xab\x39\x69\x5f\x45\x6e\x14\x8a\xb9\x16\xaf\xf3\x61\xd5\xcb\xe8\x7a\x71\xc7\xcb\xe2\x56\xfc\x9b\x3f\x6a\x75\xff\xfd\xa7\x04\x2d\x7f\x62\xc4\x3a\x62\xc3\xbf\x43\xbf\xa9\xa8\x10\xed\x62\x4e\x79\x99\xa4\x8f\x24\x04\xbb\x71\x3a\xfc\x08\xe3\x40\x38\x19\xcd\x4b\x3a\x54\x98\xe1\x24\x3d\xde\xec\xb7\xae\xb6\x98\x5f\x1c\xb6\xcf\x9e\x35\xd5\xd0\x5c\x71\x5d\x73\x3d\x24\x42\x0f\x44\x93\xeb\x89\x00\x13\x20\x0d\x72\xa0\x18\x02\x30\x09\x9a\xa1\x03\x66\xc0\x6c\x98\x0f\x8b\x61\x19\xac\x84\x01\xd8\x02\x3b\xe0\x3a\xb8\x01\x6e\x82\xfd\x70\x3b\xb8\x02\x79\xb7\xdd\x72\xf3\xbe\xbd\x37\xee\xbe\xfe\xda\x9d\xdb\xb7\x6e\x5a\xbb\x7a\xd5\x8a\xe5\x4b\xfa\x16\x2e\x98\x3b\x67\xd6\xcc\xee\x29\x6d\xad\xf5\x75\x35\x95\xa5\x25\xfe\x42\x4b\x66\x72\x4c\x14\x4e\x74\xda\x11\xdb\x68\x59\x4e\x40\x8f\x8e\x9e\xe0\x52\x6f\x25\x8b\xd1\xa8\xb1\x26\x08\xc6\x2c\x8b\x87\x5e\x15\x4f\xd4\xf2\xec\xc9\x28\xef\xd0\x46\xe4\x71\x6b\xdd\x92\x42\xe1\x71\x6b\xa5\xdf\x46\xad\x59\xfa\xd7\x83\x0a\x12\xb5\x09\x82\xd1\xe8\xe1\x24\x00\x0f\x05\xd1\xc6\x87\xff\x96\xb0\x25\x18\x8d\xbc\xd1\xe3\xd6\xc8\x7f\x51\xf8\xef\xcf\x27\xf9\xfd\x93\xea\xfc\xfe\xda\x43\x6e\x7f\x5a\x9a\x4e\x57\xee\x5b\xdc\x9d\x6d\x34\xd9\x6c\x46\xa3\x0d\xc7\x64\xe8\x52\x32\xdd\xa5\x4e\x47\x71\xc1\xe5\x5b\xcb\x97\xe3\xdf\xad\x28\xbb\xf4\x9b\x47\x97\x73\xd5\x8f\x96\x89\xb5\xe9\xa9\xa9\xe9\x93\x4c\xf7\x56\xdf\x3b\x72\xe2\x9e\x6a\xf6\xdf\x62\xb7\x41\x5f\xe9\x16\xdb\xcb\xe9\x1f\xee\xf3\x32\xfa\x07\x9b\xbd\x55\x55\xde\x72\xe9\x9f\x0d\x76\xbb\xce\xaa\x8e\xca\xd2\xda\xb3\xc5\x77\x36\x58\xec\x76\x4b\xb9\xf4\xcf\xd4\xa4\x8c\xa4\x94\x3c\x47\x81\xe3\xed\x91\xa5\x4f\xae\xac\xa8\x58\xf9\x24\x37\x7b\x28\x30\x6b\x56\x60\x68\x96\xe8\x4a\x49\xd4\x26\xcd\x42\x6f\x05\xe8\x9f\xcb\x35\x15\xf4\x0f\x5e\x14\xab\xcb\xed\xd8\x2b\x1e\xdf\x83\x12\xf7\x88\xc7\xe5\x1f\x00\x3c\x4c\x1c\xf9\x0d\x79\x4a\x3d\x00\x1c\xd8\xa8\x3c\xe4\x81\x89\x81\xf1\x85\x05\xce\xbc\xdc\x9c\x38\x82\x81\x77\xda\xa3\x38\xbe\xb0\x1c\xfb\x98\x87\x3a\x65\x8c\x6e\x1a\x3c\x47\xcb\xb2\xb1\x68\x75\x46\xad\x9b\x73\x6b\x8d\xd2\x5f\x3c\x0f\xb7\x8c\x9c\x1c\x79\x02\x3f\x2f\x8c\xd7\x8c\x4b\x74\x98\x74\xe6\xda\x45\x81\xa2\xb9\x0d\x76\xf4\x06\xb6\x25\x99\xf5\x9a\xa4\xd4\xe8\x74\xa3\x56\xfd\xcb\x5f\xfe\x72\x39\x21\x98\x10\xa1\xe3\xb2\xeb\xb2\x8b\x7b\xeb\x52\xb2\x35\x33\x3d\x36\xd3\xe7\x0f\xd8\x02\x8b\x1b\xac\x19\x95\x0b\x27\xf9\x9c\x81\xc2\x14\x77\xbe\x75\x82\x29\xdb\x52\xe0\x9c\xf1\xe8\x48\x17\x89\x3e\x48\x00\xc3\x70\xf0\x02\x49\x23\x43\xf4\xee\xa7\x7a\xd8\x9c\x32\x91\xe0\x30\x3e\xef\x91\x83\x31\x5a\xc7\x48\xd5\x24\xad\x68\xc5\x91\xe5\xcb\x8e\xae\x28\x42\xc8\xb7\xe2\xc8\xb2\xe5\xd2\xaf\x0b\xda\xbc\x26\x9f\xb7\xc9\xa1\x95\xfe\xf7\x35\x39\x12\xd0\x9f\x57\x3c\x7b\x7d\x63\xe3\xf5\xcf\xae\x78\x7d\xc5\xb3\xbb\x1a\x1b\xaf\x7f\x6e\x85\xae\x78\x71\xb3\xc3\xd1\xb2\xd8\xff\x4d\x49\x5f\xab\xc3\xd1\xda\x57\x42\x75\x79\x17\x00\x77\x8c\xd3\x43\x06\xe4\x06\x6c\xec\x42\x35\x60\x44\x10\xbd\x49\x0d\x08\x73\x68\x7e\xe8\x1e\x75\x19\x34\x27\x99\x12\xac\xb1\xbc\x3a\xd9\x6e\x30\x78\x10\x9b\xc7\xa3\xc1\xcd\x19\x35\x55\x06\xee\xd8\xc8\x10\xca\x2c\x2f\xf0\x15\xea\xf3\x33\x27\xfe\x2c\xa7\x75\x75\xdd\xcd\x43\xa9\x85\xcd\xae\x9b\xd1\xda\xad\x48\xed\x9b\x9a\x96\xe3\x8d\x37\xd8\x93\x7d\x73\x1b\xec\xd7\xac\xc9\xa9\xab\xad\xb7\x0d\x50\xdb\x68\x02\xf9\x3b\x77\x49\xf8\x11\x04\xb0\x80\x7a\xd8\x92\xc8\x53\x9e\x60\xb4\xaa\x8c\xc8\xed\x93\x49\x43\xeb\x0b\x29\xd6\x94\x22\xdc\xa5\x53\xcf\x3c\xf3\x12\xd2\x1f\x3f\xa1\xcb\xf6\x19\x4c\x85\x0e\x47\x7a\x4c\x72\xc2\xb8\x9e\xc4\x6c\x9f\x21\xc3\xed\x72\xa5\x4d\x48\x49\x18\x4f\xfe\x7e\xf4\x28\x42\xdf\x18\x02\x05\x19\xda\x24\x6d\x6c\xb2\x41\x93\x64\xa8\x74\x67\x4a\xbf\x53\x0d\x71\x52\x8f\xc9\xdf\xc9\xcb\xc2\x19\x10\x20\x09\xd4\xc3\x13\x55\xa3\x75\x9b\xdd\xbc\xbc\x64\x7d\x72\x17\xb5\xdc\x39\x5a\xa5\xf6\xe7\x88\x43\xa5\xa5\x9d\x01\x7e\xe7\x35\x89\xc6\x5c\x9d\x54\xc9\x8f\x6b\xaf\xc3\x29\xe9\xa6\xf4\xe9\x53\xea\x32\x1d\x99\x1a\xae\x1c\x70\xf0\x32\xf9\x9c\x8c\x13\xee\x06\x01\xa2\x41\x3d\x1c\x15\x89\xdb\xc8\xb9\xc9\xb8\xf7\x0f\x1f\x7a\x1f\x19\x1f\x10\x6f\x18\xfa\xed\x87\xe4\xf3\xfd\xfb\x2f\xcd\x40\xd1\xcc\x5e\x1c\x45\xfe\xce\x27\x0b\xb7\x2a\xdf\x62\xc6\x27\x79\x46\x15\xce\x88\x1d\x0f\x20\xe3\xfb\x87\x0f\xfd\x86\x73\x7f\xf8\xbb\x03\xfc\xc7\x3f\xee\xdf\x8f\x1e\x15\xbf\xa5\xdf\xe6\x91\xbb\xb8\x53\xc2\x69\xd0\x42\x32\xa8\x87\x93\x12\x09\x84\xcd\xb1\x51\x6d\xcc\x6a\xb4\xba\xb9\x53\x79\x5d\x9b\x9a\x9b\x37\x4f\xcd\x7b\x26\xd6\x54\x64\xcb\x2e\x32\xc6\x66\xbf\xf0\xde\x8f\xfc\x89\xf2\xbe\x26\x9b\xad\xa9\xaf\x3c\xd5\x69\x4a\x4c\x34\x39\x53\x2b\xde\x63\x76\xb0\xbf\x92\xe5\xf8\x1f\x42\xee\x28\xcf\x55\xac\xfb\x2a\x23\xfa\x6b\xb2\xcd\x93\x76\xad\xde\x80\xde\x23\x17\x5c\xb3\x3b\xab\xb5\x53\x7c\xeb\xea\x37\x51\xbe\x6f\xa2\xb9\x6f\x06\x41\x05\xd1\x60\x0e\x64\x45\x23\x42\xbd\x4e\x09\x5e\x23\x5f\x13\x9a\xc7\x21\xc5\x40\x4d\xa7\x9a\xd9\xa0\x52\xe2\x7e\x4e\x13\xd3\x67\x7d\x8d\xde\xfb\x08\xbd\xfb\xb5\x48\x50\xf7\xe3\xdf\x7f\x4f\x06\x2f\x0d\xa0\x27\xd0\x2b\x00\x1c\x3c\x0b\x40\xa6\x93\x41\x48\x00\x03\xe4\x41\x69\xc0\x2f\xe7\x32\x0a\x05\xa1\x53\x72\x1a\x85\x0e\xbc\xcb\x50\xb3\x56\x0b\x90\x97\x6b\xca\xd2\x1a\xb4\xfa\xa4\x44\x48\x80\x78\x83\x5a\x4d\x33\x19\x65\x70\xb2\x4b\x83\x44\x30\x4e\x89\xd8\x6b\xb5\x8e\xda\x16\x9e\x45\xcf\xcf\x3c\xbe\xa3\x71\xd1\xd4\xc2\x36\x5f\x7a\xed\xa6\x07\x7b\xbf\xfe\xda\xde\xec\x37\xa4\x17\x36\x38\x46\xfe\xdb\xd6\x58\x64\xc8\x2a\x6e\xce\x79\x9f\x0c\xa2\xac\x96\x4d\xdd\x3d\x5b\xf5\xe3\x0b\x6a\xbb\x9c\xd3\x77\xb4\x99\xd1\x65\xf1\x95\x04\xb3\xdf\x92\x53\x66\x4b\x40\x8f\xc4\x66\xf9\xac\xb9\x7e\x63\x8c\xb4\x9f\xcf\x0e\x5e\x20\xf5\x64\x08\x6c\xd4\xce\x8e\x25\x41\x86\x5f\x25\x20\x9e\x70\x3c\xe9\x57\x3c\xc0\xe5\x70\x6c\xb5\xf4\xb2\x98\x0d\x6c\xb6\xac\x04\x9b\x49\xa5\x4e\x0e\xa5\xa6\x55\x18\x88\x51\xb6\x13\x84\x02\x19\x91\xba\xa8\xce\xeb\x1f\x9f\xb3\xf6\xbf\xae\xaf\x43\xa8\x71\xf7\xf3\xab\x17\x3f\x7e\xcd\xe4\xe8\x0b\xd1\x3b\xd6\x56\x2d\xa8\xc9\x42\xc8\x50\xbd\xa0\xda\xd3\x5d\x65\x13\xd0\xae\x45\xf7\x2c\x2c\x68\xdf\xff\xf2\xaa\x3d\x6b\x4e\xdf\xdc\xee\x5d\x72\xcf\xfc\xbe\x35\xde\x59\x9b\x6b\xf7\x4e\xda\x32\xd3\x9b\x5c\xd8\x51\xc4\xf6\xf1\xe3\x34\x67\xc3\x20\x4c\x80\x54\x7a\x7a\x07\x3c\xe2\x30\xc8\x34\x26\x8c\xc6\x31\x31\x00\x31\xa9\x31\x29\x9a\x89\x30\x01\xc6\x1b\x84\x10\x7d\x75\xda\x18\x49\x29\x74\x97\x73\x3e\x4a\xd9\xe3\xe8\x9e\x81\xd7\x6e\xef\x44\xa8\xeb\x8e\xb3\x6b\x8e\x1f\xaf\x5b\x33\xd9\x8e\x6c\xad\x6b\x1a\xc9\x20\x6a\xdd\xf7\xf2\xc0\xea\x75\xa7\xf7\x36\x73\xbf\xbe\x7c\x11\xe5\x4f\xdb\xd2\xb2\xa6\x61\x73\x8f\x0b\x51\x19\xe8\x24\x00\xc9\x25\x83\x30\x8e\xde\xd3\xe2\x80\xf0\x1c\x99\x0b\x3c\x30\x3b\xde\xa8\xf1\x2e\xe2\xcc\x83\x1e\x41\x48\x7f\xb9\x77\x47\xde\xc3\x37\x5c\xbe\x81\xdb\x38\xb2\x19\x3b\xd0\x65\xf1\xf4\x8b\x64\xf0\x94\xf8\x05\x93\xaf\x7e\x01\x40\xfc\x64\x10\xa2\x68\x2e\x1b\xe6\x3c\x38\x57\xb9\xd1\x16\x39\x53\xd9\x49\x0a\xc5\xf9\xf9\xc8\xdb\xdf\x70\xab\x46\xae\xc7\x4e\xf4\xa1\x68\x94\xf0\xbd\xcd\xf0\x2d\x0f\x5e\x20\x6d\x64\x08\x1c\x50\x1c\xf0\xd9\x10\xe1\x81\xde\x69\x02\xcc\x09\x1c\x16\x56\x29\x23\x2c\x00\xb5\x1a\x85\x8d\xb4\x46\x2b\x8f\x72\xaa\xdd\x7c\xf5\x51\x56\x76\x09\x9f\x24\x00\x92\xb6\xac\xf9\x5b\x06\x9b\x37\xbd\x7c\x43\x03\x42\x0d\xbb\x7e\xbe\x76\xd9\xe3\x5b\xeb\xd5\x9f\xc5\xec\xe8\xab\x59\x54\x6b\x32\xd6\xf5\x37\x1b\x2a\x4b\x0a\xe2\xd0\x57\xe8\x4f\x77\x66\x97\xe5\x24\xb6\x0d\x9e\x5e\xb3\x67\xcd\xe9\xfd\x6d\x9e\xf9\x37\x4f\x5f\x38\xc3\x3b\x73\x4b\xcd\x4d\x35\x5b\x66\xf9\x84\x09\xda\xd8\xb7\x4f\xd2\xb3\x6f\x00\x12\x4d\xe9\x7c\x45\x5e\x1f\xf9\xe8\x07\xc2\x28\x1c\x91\xd7\x27\xfa\x9c\x38\xeb\xdc\x39\x74\xf4\x1c\xfa\xbd\x68\x25\x83\xe2\x78\xf4\x8d\x84\xef\x6d\x00\x32\x91\xec\x93\xf1\x01\xcf\xac\xd4\x04\xc9\xe9\x50\xca\xb8\x30\x7c\xf1\xf2\x78\x79\x0c\x1a\xc3\xdb\x5c\x85\xf8\x1b\x64\xbf\xfc\x32\x32\x89\x7f\x20\xfb\xce\x8e\xc0\xd9\xb3\x1c\x30\xfa\xde\x1d\xbc\x40\xd4\x64\x10\x74\xf4\x2e\x2d\x60\x58\x03\x98\xc3\x6b\x42\xe1\x3e\x6a\x51\xb3\x29\xc1\x1c\x4b\xd4\x49\x76\xa4\xc4\x59\x53\x32\x71\x70\x89\x5f\x21\x54\xb7\xfe\xfe\xae\x39\x87\xd7\x4f\xe2\xbf\xca\xf4\x35\x3b\x6c\xb5\xee\x74\x44\x06\x47\xc6\x2f\x3a\xb8\xdc\x9f\xbf\xf0\xbe\xa5\xfe\x29\x9e\x64\x7d\xe9\xb4\x22\x40\x70\x04\x80\xdc\x4e\x06\x61\xbc\x54\x57\xb4\x80\x38\xf9\x30\x00\x41\x0f\xc7\xe8\x11\x17\xaf\x89\xa3\x75\xa9\x28\x2d\x7c\x2c\x07\x54\xca\x8d\x17\x2e\xac\x44\x53\x50\xb6\x18\x40\xbf\x13\x3f\x46\x7f\xbc\x5e\x3c\x46\x06\x47\x2e\xed\x46\x3b\x46\xbe\x1f\xd9\x4a\xfb\xf1\x53\x00\xd2\x4b\x06\xe5\x5c\x67\x18\xf0\x1a\xe9\xf5\xf4\xd0\x8c\x8b\xe5\xd4\x3a\xbb\x59\xa2\x89\x1b\x3d\x81\x9f\xbe\xdc\xfd\xfd\x8b\x2f\x92\x41\x40\x70\x23\x00\x69\xa5\x6d\xb2\x06\x4c\x6a\x1e\x63\x96\xba\x8e\x06\x8e\x26\xf4\x48\x3d\xc4\x5f\x69\x6a\x27\xf5\x95\xa9\x9d\xfa\xcf\xa0\xb4\x3f\x9e\x38\xf2\xdc\x1f\x91\x09\x4f\xc1\xc5\x97\x06\xb8\xe2\x91\xdf\x63\xfb\xe5\xd3\x64\x90\xb6\xeb\x29\x00\x92\x40\xd7\x43\x46\x20\x55\x85\x31\x60\xd4\xc8\x21\x8c\xa1\x07\xc9\x5d\xd6\xc4\x51\xf2\x1a\x8c\x88\xc6\x56\xe3\xdc\x24\xe1\xef\x62\x1f\xf9\xec\x13\x74\x37\xf7\x29\x17\x7d\xf9\x3b\x32\x78\xf9\x5b\x6e\x1c\x60\x18\x08\x5e\x20\x3d\xb2\x0c\x94\x1e\x48\x51\x2e\x09\xcb\x91\x32\x6b\xa1\xd9\x66\xb3\x99\x28\xfd\xc6\xd8\x1b\xaf\x22\x19\xf5\xd4\xec\xfc\xd9\xba\xf5\x3f\xbb\xa6\xa6\x66\xc7\xcf\xd6\xaf\x7b\x7e\x67\xed\x97\x19\x15\xf3\x26\xd5\xcd\x2b\x4b\x4f\x2f\x9f\x5f\x37\x69\x5e\x79\x3a\x16\x56\x9c\xbe\x6d\xea\xd4\xdb\x4e\xaf\xd8\xb1\xe2\xf4\xed\x5d\x5d\xb7\xbd\xb2\x02\x55\x6e\x99\x53\x52\x32\x77\x4b\x60\x67\x60\xcb\xdc\xd2\x92\xb9\x5b\x03\x8c\xaf\xcd\x0a\x96\x92\x25\x64\x08\x52\xc0\x09\xd9\x01\x33\x2f\x47\xa6\xc7\x50\x77\xf5\x66\xda\x42\xcd\x54\xe9\x54\x56\x21\x52\x88\x0b\x05\x30\x0f\x4d\x33\xb2\x24\xad\xb0\xd1\xf9\x8b\x7b\x3e\x2f\xaf\xdc\x70\x6a\x77\x03\x42\xf5\xbb\x5f\xda\xb0\xfe\xd4\x0d\x0d\xe8\x4b\x94\x55\xdb\x57\xdf\xd0\x57\xa3\x37\xd4\x2c\x69\xa8\xef\xab\x31\x20\x2c\xd4\x6c\x5b\xd9\x6b\x3a\xb2\xfe\x74\xcc\x94\x5b\x5e\x59\xb5\x63\xd5\x2b\xb7\x76\x4e\xb9\xf5\xcc\x2a\x54\xbb\xb5\xb7\xa8\x68\xf6\xd6\x9a\x9d\x35\x5b\x67\xfb\x8b\x66\x6f\xab\xa1\xed\x1e\x94\xc7\x3f\x0e\x32\x59\xcc\x6b\x26\xd1\x51\x9f\xfc\xf9\x21\xbe\x25\x4f\x81\x6c\x43\x8e\x41\xe6\x87\xc6\xb0\xa8\x00\x48\x6b\x40\x6e\x59\x54\x36\xe2\xd9\x7f\xf9\x12\x9d\xed\x3d\xbe\xb5\x3e\xab\x74\x8a\x0b\x25\x88\x41\x31\xff\x77\x8e\xc9\xa5\xc6\xac\x92\xb6\xbc\xdf\xa1\x47\xc5\x2e\x32\x88\x72\xba\x76\xcd\xac\x5a\xd0\x52\x9c\x28\x66\x45\xe3\xa5\x48\x6b\xaf\x74\xe4\x55\xdb\x13\xa5\xf9\xb2\x2b\x78\x81\x34\x91\x21\x28\x93\xb4\x27\x90\xa3\x8c\x00\xe1\x31\xe1\xfb\xa9\x90\x02\x78\x7e\x28\xf5\x47\x2d\xd7\x5c\x5c\x54\xe8\xce\x77\x98\x12\xf2\x04\xb5\xce\x8e\xbc\x54\xd3\xf6\x5c\x99\x66\x3d\x81\xaa\xe3\x4a\x02\x19\x37\xdb\xdb\xb8\x79\xc8\x5e\xdf\x5b\x30\x6d\x68\xc3\xa4\xd6\x1d\x47\xa6\xce\x3c\xbe\x63\x32\xb9\x88\xcc\x15\x1d\x0e\xfb\xe4\x32\x93\xa3\x61\x76\xc1\xb4\xfb\xd7\xd7\x4c\xbe\xee\x91\x9e\x9e\xa7\xf6\x4d\x27\x17\x91\xa3\xa1\xb7\xc0\xd1\x51\x61\x45\x85\x36\x7f\x76\xda\xf8\x44\x6f\xfb\x86\x69\x9d\xdb\x3a\x6c\x39\xdd\x37\xce\xce\xad\x72\xe8\xe2\x4c\x5e\x53\xb6\xd7\x92\x32\x5e\xeb\xef\xda\xdc\xd5\xbd\x75\xb2\xd9\xda\x73\xf3\x62\x6f\xa3\x23\x3e\xce\xe8\xa5\x71\xf7\x01\xc8\xb5\x54\x96\x91\xd6\x28\x87\x11\x4d\x03\xa7\x6c\x0a\x8c\xcb\x84\xb2\x8a\x5d\x2b\xce\xfd\x4a\x5c\x4c\x72\xb8\x5f\x5f\x76\x73\xbf\x3e\x25\x7d\xff\x70\xf0\x02\xdd\x5b\xb4\x12\xff\x23\x1c\x46\x18\xad\x09\x9d\x86\xb1\xad\x5d\x0b\x92\xde\xc7\x4b\xb4\xd0\xc8\xcc\x4a\xe3\x96\xed\x9b\xf1\xc4\x8f\x26\x6d\x3e\x36\x77\xde\xf1\xcd\xb5\xe8\x73\x3c\xb0\x78\xf1\x2a\x84\xc9\xe0\xe5\xe0\xfc\x7b\x97\xf8\xbc\x4b\xee\x9b\xcf\xa1\xcb\xc1\x15\xab\x56\xad\xe0\x10\x20\x08\x00\x90\xc3\x64\x10\xd4\x90\x1a\x48\x92\x58\x94\xc4\xa9\x00\xc1\x9a\x50\x73\xe3\x25\x8e\x22\x1b\xaa\x90\x1b\x4f\xd7\x6a\x51\x86\x28\x36\x7c\x2d\x36\x8a\xa8\xba\xbb\x8b\x6b\xbe\x34\x40\x59\x00\x20\xb0\x01\x90\x63\x94\xc7\xe8\x03\xe9\xd1\x72\xde\x38\x4e\x62\x32\x6b\x30\x9b\x59\x71\x1a\x85\xb9\xb8\x39\x23\xc7\x19\x39\x77\x7c\xbc\x9b\xeb\x5e\xf5\xc7\xdf\xbf\x7f\xdb\x2d\xbf\xf9\xfd\x47\xab\x76\xbf\x8b\x7e\x81\xcf\x5c\x1a\xc0\xaf\x8f\x14\x91\xc1\x91\x00\x3e\xc5\x70\xb7\x02\x90\xcd\x74\x8f\xc9\x0c\xa4\x45\x09\x1c\x17\x4a\xd6\x87\x7a\x42\xb8\xe3\xe2\x34\x94\xb2\xf4\xa2\x38\xc7\x51\x96\x3a\xeb\x1b\xa4\x13\xf7\xa0\x3d\xe2\xdf\x82\x97\xc5\x4f\xd1\x35\xe2\x8d\x48\x8b\x7f\x40\x77\x8e\xbc\x38\x32\x8c\x0e\x88\x0b\x70\x13\xae\xa2\xf8\xab\x68\x3e\x13\x89\x0e\x69\x81\x64\x81\x8e\x59\x04\x21\xe2\xe2\x34\x94\x10\xc8\x80\x34\x46\x0d\x32\xe0\x15\x28\x0b\x45\x8b\x8d\x17\xc5\x36\x14\x8d\x97\x63\xc3\x88\x5a\x5c\x86\x0e\xe1\x2f\x00\xc1\xa3\x00\xa4\x81\xf2\x42\x6b\xc0\x14\x85\xe4\x78\x1c\x8d\xc0\x49\x72\x02\x9e\x1b\xba\x52\x51\x26\x27\x18\x54\x27\x51\x8e\xed\xa1\x9e\x4b\xe8\x03\xbc\xfa\xf2\x5c\x3c\x77\xe4\x71\xee\x9a\x17\x5f\xbc\x91\xab\x3d\xb5\x8b\x2e\x87\x49\xe4\x37\xdc\x69\x41\x04\x2d\xd8\x40\x3d\xac\xff\xa7\x32\x7b\x28\x42\x42\x48\x27\xd1\x71\xa7\x73\x3b\xd6\x37\x34\xae\x9f\x92\xfb\x78\xac\xb1\x28\xdb\xea\x33\xc6\xbe\xa7\xaa\x0f\xa4\xe4\x05\xcc\xaa\x5b\x6f\x49\xb6\x15\xa6\x46\xf3\x27\x5c\x6d\xc5\x7a\x7d\x71\x9b\x2b\x31\x3b\x23\x2e\x2e\x23\x3b\x31\x69\x0b\xa7\x4b\xd1\xe8\x26\x08\xcd\xad\x95\x69\xd6\xd4\x89\x9c\x4f\xa2\x91\x08\xc0\x75\x92\x41\x10\x40\x38\xc9\x03\x72\x4a\x9b\x39\xef\x31\xbb\xb9\xce\x0b\xe2\x7d\xb8\x38\x8d\x1b\x98\xf3\xf2\xcf\x00\xc1\x43\x54\x36\x1a\xa2\xb6\x3b\x2d\x85\x33\x78\x90\xcc\x38\x2c\x82\xca\x28\x5b\x27\xa5\xe6\xf1\x06\xe2\xbf\xbc\x1b\x3d\x62\xac\x2c\x48\x4f\x75\x56\x5a\xe6\xae\xe2\x2e\xe0\x49\x1b\x8f\xcc\xea\xb9\x6f\x4d\x65\x6e\xf3\x42\xbf\xf8\x23\x6e\x3a\x8a\xf6\x67\x56\xd5\xd4\x18\x4d\x25\xb6\x44\xb4\x78\x46\xf7\xfe\x05\x3e\x47\xcf\xb5\x9d\xe5\xab\xfb\xe6\x3b\x3f\x00\x04\x4f\x07\x2f\x10\x3b\x19\x82\x00\x08\x27\x6d\x5a\x49\xe7\x70\x87\x25\x3d\x8f\xa8\x6f\x2c\x7b\x60\xec\x0c\x7d\xb0\x43\x92\xd0\xd3\x5c\x93\x72\x4c\x55\x85\x06\xfc\x25\x6e\x58\x7f\x77\xdb\xb4\xa1\x0d\xb5\x99\x9e\x06\xbb\xb3\xbd\xd8\xd0\xb4\xfd\x68\x77\xdb\xfd\x5b\x5a\xf1\x05\x9c\xe5\x6b\xc8\xb1\x37\xf9\xf4\x96\x8a\x29\x8e\x1d\xf8\xe1\x78\x6b\xa9\xcd\xe4\xb3\x24\xc4\xea\x5d\x59\xed\x9b\xda\x6d\xb6\x8e\xed\x9d\xf9\xad\x15\xf9\xb1\x31\x8e\xaa\x1e\x7f\xd7\xce\xa9\x76\x6b\xc7\xb5\x33\xcc\x45\x96\x04\xad\xad\xcc\xea\x0c\x58\xe3\x00\xc3\x7e\x00\xd2\x44\x06\xe9\xd9\xbd\x7a\x78\xc2\xb8\x28\xaa\xe7\x5f\x71\xe2\xfe\xd4\x81\x03\x9f\x8d\xbc\x17\x85\xed\xdf\x8e\xfc\x0e\x55\xa4\xa2\xe7\x5f\xfe\xc7\x3f\xee\xc6\x23\x23\x0e\xf4\x74\x2e\x20\x78\x2e\x78\x81\xe8\xc9\x20\xe4\x80\x70\x52\x83\x90\xd3\x1e\x2f\x49\x43\x2a\xf9\x38\x5c\xe9\xa7\x1c\xe6\x24\x44\x8e\xdf\x37\xe0\xd3\x22\x6f\xb0\x2c\xf5\xcf\xb8\xa3\xaf\xa8\x6c\xcd\x03\xf3\x3b\xee\xde\xd8\xa2\x3a\x37\x61\x79\xbb\xab\xd1\x95\xa4\x2f\x69\x77\x1a\x3c\x8e\xec\x38\x5c\x82\x3b\xce\x7e\xa7\x49\xf5\x2c\xdc\xdf\xdd\x75\xeb\xd2\x92\xdc\xa9\xdb\xda\x5b\xaa\x0d\x45\xcd\xb9\xf9\x4d\x9e\xf4\x68\x8d\x6e\x02\x8d\xf9\x1d\xbc\x40\x4a\xc9\xbd\x90\x09\x85\xa0\x1e\xce\xd1\xc7\xd3\x79\xa9\x35\xd2\x54\xb6\xbe\xf0\x76\xd0\xd8\xf7\xf4\x36\xa3\x36\xec\xaa\x10\xb7\x71\x62\xd7\x1d\xab\x1b\xa2\x5d\x7b\xdb\xa7\xed\x9d\xeb\xae\x1a\x38\x34\x6b\xe1\xb1\xf5\x95\x68\xf6\xe3\x5f\xdd\xf1\x8e\x31\xe0\xcd\x99\x90\xec\x6e\xf1\x38\x1a\x0b\xd3\xd3\xdc\x0d\xe4\xde\x33\x28\xab\x79\xe3\xb4\x82\x52\x54\xd2\xb7\xbf\xb3\xe7\xf6\xa5\xc5\x95\x9b\x1e\x5f\xda\x7a\xf8\xeb\x07\xa7\xa0\x91\x27\x35\xe9\xb6\x24\xbb\x7b\xe6\x24\x9b\xbe\xa8\x29\xd7\xd1\xe8\x49\x07\x04\x4f\xd2\x3b\xc2\xf2\x9c\x45\xd4\xd6\x6f\x94\x16\x1a\xa9\x1e\x19\x19\xc1\x64\x64\x31\x77\x27\x51\x5d\xfa\x07\xf7\xc6\x69\x16\xab\xe6\x4c\xf0\x02\xc9\x25\x43\x60\x85\x12\x98\x0c\xd1\xcf\x36\x06\xbc\xb9\x59\x31\xb2\xad\x3d\x6c\xfa\xd0\xde\x8c\xee\x41\x5c\xb8\xef\x9e\xb4\xe9\x5c\xf1\x4c\x62\x53\xf3\x03\x56\x47\x93\x37\xb3\x7e\xd3\xd0\xd4\xa9\x07\x37\x35\x64\x7a\x9b\x72\xad\x81\xfc\x94\xaa\x55\x77\xb4\x77\xdc\xb1\xaa\xfa\x3d\xbd\xaf\xde\x9a\x5d\xe7\xc9\xd4\x7b\xeb\xb2\xad\x75\x5e\x7d\x5a\x6a\x5e\xb9\xd1\x54\xea\x48\x4e\x76\x94\x9b\x4c\x65\x8e\x14\xae\xcb\xd1\x12\x70\xc7\xc5\x7b\x26\x4d\x73\x77\x6d\x9f\x92\x9d\x3d\x65\x7b\x97\x7b\xda\x24\x6f\x7c\x9c\x3b\xd0\xec\xe8\xd8\xdc\x61\xb3\xb5\x6f\x19\x79\x24\xbb\xcc\xa6\xd5\xda\xca\xb2\xb3\xcb\xb2\xb5\x5a\x5b\x29\x36\x18\xbd\x96\xf8\x78\x8b\xd7\x68\xf4\x59\xb5\x5a\xab\x8f\xc9\x31\xcf\x05\xbf\x23\xe9\x64\x08\x32\xa1\x00\xd4\xc3\xd9\xfa\x74\x0d\x76\x52\xef\x53\xf9\xf0\x3c\xb4\xb7\xd2\x55\x63\xf4\xc4\x17\x78\x95\x43\x84\x84\x0c\x8c\x6e\xed\xbc\x79\x59\x75\x94\x73\x67\xed\xb4\xc1\xf9\xde\xca\x81\x83\xbd\x0b\x8e\xac\x2e\x43\x33\x1e\xbe\x78\x77\xfc\xb9\x9a\x45\x29\x28\xb9\xa0\xc1\xe5\x68\x28\x48\x4d\x71\x37\x0c\xa3\x8c\x9a\x95\xed\x0e\x97\x6f\xd1\xfe\x9e\xee\x7b\x56\x56\xd4\x6c\x3d\xb1\x62\xd2\x83\x17\x0f\x4d\x46\x2f\xa1\xcd\x65\x79\x53\x5c\xd3\x2a\x2d\xa6\xd2\xb6\xdc\xdc\x96\x22\x3d\xb3\x6d\xf8\x83\xdf\x72\x77\x73\x7a\xd0\x82\x11\xd4\xc3\x99\x49\x11\x36\xb0\x70\x51\x2f\xdc\x88\xca\xdd\x9d\xdb\xb6\xb2\xba\x66\x65\x7b\xae\xf4\x7f\xf5\xaa\xf6\xdc\x9f\x55\x14\xf9\xca\xa5\xbf\xa8\x7c\xea\xd6\x76\xab\xb5\x7d\xeb\xd4\xbb\x3a\xb7\x49\x74\xdb\xd6\x39\x61\x7a\x5b\xdb\xf4\x27\x67\x4e\x9e\x3c\x13\x10\xea\x05\xc0\x1f\x71\xf1\x11\x7c\x4d\xe5\x31\xbb\xf1\x47\xcf\xfd\x02\xf5\xc7\xe3\x52\xd7\xad\x1b\xa4\x76\x79\xc9\xfb\xdc\x0b\xc2\x8e\x7f\x6b\x37\x71\xab\x8c\xdc\x0b\x8e\xce\x8d\x8d\x4d\x1b\x3b\x1d\x4f\xc5\x1a\xfd\xd4\x6e\xb2\x70\xf8\xe1\x1d\xfc\x09\x67\x7b\x89\x5e\x5a\x62\x89\xb6\xcc\xb8\xb8\x4c\x5b\xe2\x5b\x6c\x7f\x43\xce\xe0\xb7\xdc\x03\x9c\x1e\x0a\x40\x38\x69\xd0\x30\x1e\x26\x27\xcb\x15\xfe\x79\xae\xdc\xc4\xd0\xe5\x1f\xcc\x4f\x0b\x94\x4f\x48\xcb\xcd\x74\x55\xfe\x2c\xbf\x6d\x59\x69\xcd\xea\xf6\xdc\xba\x40\x43\xb3\xab\x6b\x5d\x4d\x51\x7f\x97\xe7\x67\xb5\xa5\x81\xb2\x86\xaa\x69\xe8\x1d\x6f\x6e\x9c\x3e\x69\x62\xb6\xd1\x33\xc5\x9f\x91\xee\x9f\xea\x2b\xee\x4e\x4a\x98\xde\x50\xd4\x55\x92\x99\xea\x9f\x11\xb0\x78\x8b\x72\xfc\x79\x80\x91\x11\x80\x7b\x9c\xd3\x52\xfe\x64\x0d\x98\x26\x50\x79\x71\x8c\xcb\x10\xd5\x9e\xaf\xea\x30\xe4\xf6\xa8\xb8\xa6\xb9\x73\x9f\x17\xef\x8f\x42\x2b\xfe\x4b\xdc\xf7\xfc\x78\xe4\xbf\xeb\xe8\xd1\x8d\xe8\x47\xd1\x74\x31\x9e\xf5\xb9\x30\xf8\x2d\x77\x1b\xa7\x05\x0b\x08\x27\x27\xd2\xb5\xa9\xf0\xaf\xc4\xb1\xec\x8b\x19\x2c\x50\xbd\x1b\x9d\x17\x1f\xd7\x6a\x1a\xec\xd7\xed\x33\x35\xad\x69\x29\x5e\xde\x59\x88\x9f\xe3\x02\x1e\x83\x23\x6d\x7c\x4d\x55\x8a\x25\x2d\x21\x0a\xed\x40\x77\xdd\x79\xa7\x2a\xe1\x86\xcd\x9e\x79\xcd\x8e\xcc\x92\x2e\xaf\xc3\x92\x90\x95\x9f\x52\x54\xa3\x1e\x1f\x23\xd0\x39\xe6\x0a\x7e\xcb\x1d\xe0\x0c\x90\x09\x79\xa0\x1e\xb6\x28\x7c\x4b\xaa\x23\x92\x81\xb2\x09\xc7\x65\x09\x2a\x3a\xd3\x68\x53\x38\xed\xb8\xd2\x79\x0d\x79\x6a\x7d\x4f\x71\x45\x6f\x85\xde\x3e\x79\x65\x4d\xdd\xba\xce\xbc\xca\x8d\x8f\x2c\xbe\xd5\x51\x15\x5b\x5b\x92\xea\xd0\x6b\x2a\x38\xc3\xdd\x09\xf9\x8d\xde\x4c\x6b\x76\xdd\x1c\x7f\xf1\x82\x06\x9b\xad\x6d\x43\x6b\xe1\xca\x63\xfd\x3e\xb1\xc7\x94\x64\x6a\xaa\x8b\xcf\xca\x4b\x29\x2a\xa3\xb4\xc8\x01\xe0\x1e\xe0\xb4\x63\xf8\x14\xf7\x80\xf8\xc4\x2b\xa8\x53\x6c\xc2\x1b\xf0\x13\x23\x53\xf0\xce\x3b\x29\x9f\x52\xd6\x48\x26\xbd\xb5\x33\xf4\xd3\x78\x0e\x63\x1e\xc9\x91\x0f\x52\x95\x00\x4f\x3c\x60\x8e\x1f\xd5\x49\xca\xa0\x39\xb5\xe9\xc4\xf8\x7f\x05\x52\x4b\x41\x62\xfe\x1d\x96\x7f\x89\xa0\xa7\xa7\x27\x10\x65\x32\x99\x2c\x79\x39\x74\x5e\x44\x4e\xdb\x42\x1a\x29\x45\x61\x9c\x74\x11\xd3\x99\x1c\xf1\xfb\xfa\x52\x6f\x59\x7d\x5e\x7b\x7f\x65\xe5\xca\x8e\xbc\xfa\x32\x6f\x69\x4e\xf3\xe2\xf2\x8a\xbe\xe6\x9c\x87\xaa\xbc\x9e\x40\xa5\xd7\x53\x99\x50\xe8\xcc\x77\x17\x3a\x9d\x05\xb8\xb2\x78\x5a\x6a\xea\xec\x2a\x7f\x97\x3f\x2d\xcd\xdf\xe5\xaf\x9a\x9d\x9a\xda\xed\xf7\x76\x16\xa5\xa7\x17\x75\x8a\x6b\xf2\x5c\xae\x3c\x47\x61\x21\xda\x94\x9d\xef\xc8\xb1\xba\x5c\x74\xfc\x4b\x82\xdf\x53\xfa\xa5\x43\x2e\xa8\x87\x4d\x19\x29\x13\x25\xfe\x27\x69\x61\x02\x3d\x6f\x89\x70\x91\x30\x7a\x7c\x12\xff\x93\xad\xda\x09\x89\xe8\xb7\xa5\x33\x2b\xad\x42\x46\x5b\xde\xf6\x1b\xa4\xb1\xaf\x5e\xd5\x96\x5b\x3a\x70\x7c\x69\xcc\x43\x39\xfe\x98\x2a\x4f\xaa\x3d\x23\xb6\x74\x8f\xc6\x56\xe5\x4a\xc9\xdc\xbb\xad\x78\x71\xab\xc3\xd6\xbe\xa9\xbd\x70\xcd\x83\x4b\x0a\x6e\x13\xf5\xda\xda\xfa\xaa\x44\xb3\x2b\xcd\x57\x4b\xd7\x3d\xde\xcd\xbd\x41\xcf\x91\x65\x3f\x3f\x3a\xe8\x6f\x8c\x2c\xc4\xf7\xe3\xdd\x8f\xb2\xb1\x3e\x4b\x26\x71\xbf\x11\x6e\x03\x0e\x74\x60\x84\xe8\x67\xf5\x29\x71\x6a\x0c\xd2\x9e\xe4\x56\x19\x55\x0a\x6f\x60\xe4\xf5\x29\x4c\x21\x4b\xc0\x9f\x7c\xfe\xcd\x81\x1d\xe9\xee\x1a\xab\xa5\xda\x95\x9e\xee\xaa\xb6\x58\x6b\xdc\xe9\xf3\xdd\x66\x93\xd3\x69\x32\xbb\x85\xdb\x4e\x7f\x68\xa9\xcc\x4f\x4d\xcd\xaf\xb4\x58\x02\x79\xc9\xc9\x79\x01\x8b\xd9\xe5\x32\x5b\x0b\x0a\x28\x8d\xbe\x21\xd7\x71\xaf\xf2\x67\x80\x07\x0d\xa8\x87\x63\xc7\x11\xea\xaf\x11\xef\xd6\x72\x46\x6b\x39\xe7\x73\x53\x97\x6d\xfc\xcc\xcc\xe1\x17\xa7\x9c\xe2\xe2\xd3\x8c\x71\xad\xba\xb4\x6b\xc9\x61\x64\xd2\x8a\xbf\xdd\x6e\x28\x76\x5a\x27\x5a\xfa\xfc\x9b\x19\x4f\x5f\x44\xde\xe6\xfe\x2a\xfc\x01\xb4\xe0\x02\xf5\xb0\xcb\xf8\x4f\x78\x67\xbc\x62\xce\x17\xc2\xac\xf9\x5e\x0f\xf7\xd7\xdc\x29\xeb\x1b\x1b\xd7\x77\x38\x9e\x88\xcd\x2a\xca\xce\xf6\x65\xc5\xde\x9a\x9c\x5b\x66\xca\xf6\x3b\x5d\x86\x4c\xfb\xa2\xa4\xdc\x32\xb3\xa1\xa8\xd0\xab\xcf\xc8\xe5\x4f\x14\x74\x94\x18\x0c\x25\x1d\x05\x21\x1e\x8b\x62\x4c\x55\x05\xe9\x89\xa9\x89\x05\xe6\x54\x53\x95\x3b\x93\xfe\x02\x84\x2e\x8b\xf7\xe1\x73\x30\xfc\x4f\xcf\xf0\x85\x44\x1a\xb3\x04\x9f\xfb\xf2\x4b\xf1\x3e\x9c\x4a\xd7\x69\x9f\x38\x9b\xcb\x82\x2a\x48\x05\xe1\x64\x14\xf5\xcb\x0c\xc9\x04\x16\xab\x6f\x54\xd2\xb2\xe2\x59\x85\x4d\xce\x44\x4b\x55\x8f\xbb\x71\x76\x7a\x96\xa6\xc8\x9c\x69\x4b\x8a\x4a\xd0\xe7\x24\x56\xa5\x06\x26\x35\x18\x3d\x6d\xde\xd4\xf4\x89\x83\x82\x26\x26\x31\x63\x62\x4a\x7e\x4e\x76\x3c\x20\xd4\x26\x36\x71\x76\x78\x1d\xe2\x25\x0d\x3d\x1a\x21\x1c\x85\x00\xe1\x46\x0e\xd1\xa8\xa9\x72\xca\x07\x43\x28\xcf\xb7\xd7\x4c\x84\x44\xbb\xf9\xca\x9b\xfb\x9c\x9d\x65\xe8\xd4\xc7\xc8\x57\xf6\x5f\x17\x7f\x60\x57\xf5\x5f\xe1\x78\x0e\x4d\xeb\x42\x6a\x49\xce\x99\x21\x36\x92\xa5\xa4\x15\x8a\xa1\x0d\x16\x41\xf4\xb3\x73\xa6\xd6\x96\x7b\x53\xa5\x39\x65\x4c\x94\x7d\x3b\xac\x02\xbb\x80\x10\xc6\x8d\xa9\xd4\xc3\x16\xef\x68\xcc\x1e\x9d\x01\x51\xb7\xe3\x70\xb1\xce\x38\xd6\xad\x98\x2c\xdd\xeb\x0f\xac\x7f\x68\x41\x47\x6d\xac\x36\xde\x98\x97\x7a\xe2\xd4\xfb\x0d\xfb\x7e\x75\xed\xfa\x67\x36\x57\xa4\x17\x54\x99\x93\x52\x13\xf4\x39\xba\x9e\x05\x95\x1b\x1e\x5a\x38\xb5\x09\xad\x1a\xb9\x41\x67\x4f\x30\x17\x64\x54\xf4\x56\x36\xaf\x6d\xb1\x6a\x72\xea\x3c\xe2\x2f\x33\x7c\x93\x5d\xce\x16\x5f\x7a\x86\xaf\xd5\xe9\x6c\xf5\x65\x70\x87\xa7\x2c\x4b\x6c\xda\x35\xdf\x1f\x17\x63\x4b\xd3\xa5\xc7\xa9\xee\xbc\xa3\x64\xdb\xa2\x4a\x47\xf3\x02\x5f\x5e\x6b\x85\x2b\x4e\x57\x6a\x35\x97\xba\xac\xb1\xae\x83\xbd\x89\x6d\xbb\xe7\x78\x13\x2e\x7d\xc4\x91\xf8\x46\x67\x7a\x61\xb6\x2e\x23\xbf\x28\x35\xd5\x9e\xa9\xc1\x27\xb3\x2a\x0b\x32\x32\x0a\x2a\xb3\x12\x4d\x95\xae\xb4\x34\x57\xa5\x49\x92\x1b\xc5\xd7\xb8\x1f\xb9\x2a\xd0\x82\x70\x32\x5a\x1a\xe7\xf8\xb1\x71\xf0\x9e\xfc\xea\xca\x00\x78\x5f\x71\x55\x57\xc4\xbe\x93\x64\xad\xb7\x00\xb8\x4c\xfe\x3d\x79\x1d\xc5\xa8\xe9\x59\x0d\xb5\xae\x19\x10\x3b\xe4\xa5\x67\xbc\x6f\xe1\xca\x8b\xe2\x09\x54\x5a\x5f\x59\xd5\xd0\x50\x55\x59\x4f\xd3\xb3\x0f\xa0\x8f\x8a\x1a\x1a\x8a\x8a\x1a\x1a\xd8\x9e\x79\x20\x78\x9e\xbb\x24\x24\xd1\x76\xc5\x50\x7e\xa1\x51\x02\xa4\x84\xfc\x1e\xf1\x82\x84\xbc\x26\x5f\x9a\xd7\x65\xd7\x24\x4c\xda\x3d\x69\xf6\x8e\x56\x83\x90\x74\x69\x5e\x6d\x4f\x61\x42\xf4\xc4\x58\xd5\x7d\xfa\x8c\xfc\xf9\xf7\x2f\x27\xb7\x43\x30\x08\x2f\x00\x70\x59\xfc\x09\x2c\x40\x3c\x3d\xb3\xaf\x03\x20\x5e\xfa\x9c\xfc\x85\xd4\xf6\x93\x00\x64\x2a\x19\x54\x72\x2f\x23\x20\x1c\x8d\x1c\x18\x0a\x2d\x49\xb7\x03\x80\xd4\x64\xcd\x44\x76\x41\x5e\x50\x27\xda\xc3\x82\x49\x1a\xad\xb2\xcd\xc8\x6a\x44\x47\xbe\x44\x7f\xe8\x3d\xb6\xa5\xae\x6e\xcb\xb1\xde\xcf\x3f\xcf\x63\x5e\xf7\x79\x9f\xa3\x3b\xc5\x65\x64\x10\x15\xce\xdf\x3f\xa3\xe7\xa6\x39\x05\xa7\x50\x52\x5e\x75\x8e\xa3\xce\x9d\x86\x98\xee\xdf\x28\x36\x93\x55\xa4\x11\xec\x21\x7d\x32\x5e\x92\x4c\x75\xf1\x6e\x14\x9f\x98\xa8\x4b\x2c\x60\xfe\x17\xd6\x3c\xce\x6a\x45\x46\xc4\x49\x62\xaa\xa0\xb2\x7a\xbd\xbf\x9a\xbc\x66\xb2\x7b\xe2\x9c\x2f\xbf\x12\x6f\xfb\x6d\x52\x89\x43\x25\x10\x41\x1d\x1d\xe7\x49\x2c\x9f\xdd\xe8\xd3\xae\x15\xbf\xf9\x16\x0d\x3e\x37\xde\x98\xeb\xcd\x1c\x9f\x33\x81\x4b\xad\x21\x8d\xbe\x8e\xd9\xd9\xef\xa0\x77\x46\xbc\xa2\xcb\xdf\x40\x10\x42\xaf\xa8\x04\xcc\xb9\xda\x97\x94\x7c\x3b\xf2\x0d\x47\xd0\x8d\x7a\x9f\x2d\x89\xc3\xcf\xa9\x43\x3e\x23\x40\xb6\xd1\xdc\x5b\x76\x50\x0f\xdb\x0c\x1c\xe5\x8f\x52\xd7\x0b\x48\xc4\xb5\x57\x83\x7c\xed\x75\xf4\xe6\x32\xda\x27\xa2\x9f\x7f\x87\x60\xc7\xda\xaa\xe9\xde\x24\x21\x36\x55\x2b\x5e\xd2\x25\x8f\xe7\x36\xad\x3a\x73\x6c\xff\xce\xf4\xf2\xb9\x35\xc3\x78\xea\xc8\x63\xfc\x89\xdf\xbf\xb9\xf1\x90\x33\xa1\xa6\x67\x45\xd9\xda\xe4\xd2\x52\x4f\x5c\x6a\x7c\x6d\x43\xb5\x66\xd5\xca\x6b\x7e\xb5\x7a\xb9\x7b\x6a\xa9\x41\xa2\xcf\xfd\x00\xe4\x14\xf5\x67\xb2\x06\x4c\xd1\x72\x06\x30\x1a\x24\x65\x2e\x4b\xfd\xc5\x87\x85\xd5\x63\x97\xa4\x94\x90\x28\xd4\xee\x7c\xf3\xc5\x8b\x2b\xd0\x9d\x48\x2b\x16\xa2\x4f\xc5\x3f\xe3\x35\x23\x37\xb3\x3b\x86\x23\x95\x23\x13\x01\xc3\x9e\xe0\x39\xb2\x96\x7f\x0f\x92\xc1\x0c\xea\xe1\xac\x34\x8d\x3c\x7f\xc3\x22\xf3\xb0\x89\x17\x31\x9d\xf7\xe0\xb2\x74\x67\xa5\x29\xa3\xb2\xac\x50\x93\xaa\xab\x6e\xeb\xc9\x6d\xb9\x61\xbe\x5f\x7c\x06\xd5\x8c\x4e\xf0\x11\x57\x51\x43\x8e\x46\x35\x6e\x02\xff\x48\x4c\x52\x6c\x54\xce\xcc\xdb\x96\x60\x55\xd8\x8c\x47\xf0\x40\xf0\x1c\xd9\x2e\x00\x24\x4b\x3a\x2e\x1d\x7b\x03\x77\x65\xbd\xf1\x86\x07\xb0\x27\x23\xd3\x3b\xc9\x9a\x59\x1d\xf0\x6a\x52\x75\xb5\x1d\x33\x1d\xed\xfb\x16\x97\x26\x8b\x2f\x0b\x70\x69\xa0\xa4\xc9\xa1\x51\x8f\x1b\xcf\xea\xb0\xcf\xba\x73\x19\x77\x96\xce\xab\x57\x01\x38\x51\xf6\xc7\x8a\xe2\x91\xd3\xee\x33\x50\x7b\x86\xc6\xa0\x35\xfc\x1d\xa5\x88\x67\x70\xc6\x44\x34\xfe\xf2\xa7\x67\xb9\x57\xfa\xdf\x7d\xe5\x52\xe2\x59\xc0\x70\x6d\xf0\x1e\xb2\x92\x9c\x83\x0a\x68\x03\xf5\xf0\xa4\x40\xa1\x4d\x1a\x73\x8b\x72\xed\x82\xc6\x54\x60\xc7\x2e\x3a\xdd\x68\x14\x1f\x2a\xca\x5a\x2d\x4a\x70\xb8\x44\x9d\x96\x0a\x1b\x9e\x90\x46\xc5\x3d\xa5\x8e\xe6\xf4\x73\x4a\xab\x17\xd5\x1a\x8b\xe6\xdf\xd8\xde\x11\x7d\xdd\xb2\x9e\x5d\xd3\x72\x30\xc2\x9e\x39\xbb\x3b\x53\x8b\xbd\xf9\x71\x85\xc9\x15\xb5\x93\xf4\xb7\xbe\x79\x7d\x25\x87\xb8\xda\x9b\x7e\xbd\xbb\xfb\xfe\xb5\x55\xb1\x1a\xf1\xf6\x74\x97\x39\x45\x28\xca\x6f\x2d\xd6\x4f\xc8\xc8\x47\x42\x4c\x4e\x92\xb1\xd0\x31\x79\x69\x79\xd3\xc6\x29\x8e\xa5\x6b\xaa\xb7\xff\x74\x4d\xe9\xc0\x89\x8d\xe5\x51\xb1\xda\x09\x07\xe2\xd3\xe2\xa3\x16\x3c\xfd\xd5\x7e\xfb\xfe\x8b\x27\xe6\xb9\x97\x1c\xee\x17\x07\xf3\x16\x59\x62\xee\x9d\x98\x92\xa9\xf9\xa3\xc6\x5c\xee\xd0\xfb\xb2\x75\x72\x5c\x8a\xe0\x79\x72\x80\x3f\x03\x2e\xa8\x02\xf5\x70\x49\x41\xaa\x8a\xc9\xc8\xb2\xc9\xf1\x0a\x15\x38\xf2\xfe\x9a\x36\x4c\xf9\xf5\x69\xc8\x81\x27\x4c\xb3\xd7\xed\x6b\x9b\x73\x7c\x4b\x9d\xce\xdb\x5d\xe9\xaa\xcb\x4b\xac\xdd\xf0\xc0\xac\xd9\x07\xd7\x54\x7c\x99\xe6\xae\xb7\xe7\x36\x78\x32\x52\x0a\x27\x7b\x8a\x67\x55\x19\x4d\xd5\xbd\xfe\xd4\x52\x9f\x23\x86\xab\x7a\x5e\x04\xbd\x3f\x27\xb9\x68\xc5\xa1\x45\x9e\xc5\xd3\x1b\x74\xc9\xf5\x9d\xd3\xed\x8b\xee\xef\xf3\x94\x2d\xbb\xad\xcb\xd9\xec\x4d\xcf\x28\x9a\x52\x58\x30\xa5\x2c\xeb\xf9\xf4\xd2\x19\x15\xfe\x69\xfe\xf4\xa8\x89\x09\xe3\x90\x9c\x3b\x77\x63\xf0\x3c\xd9\xcf\x9f\x81\x7c\x10\x4e\xc6\x11\xa6\xd7\xc5\xc6\x51\xb5\x56\x89\x5c\x12\xb1\x6b\x1b\x8d\x9e\x78\xf9\xc8\x0c\x2d\xb9\xf8\xbf\x7f\x6b\xde\xb5\x69\xa5\x47\xfc\xf4\x27\xaf\xd4\xac\x3f\x32\xab\x79\xa7\xbf\x2e\xbd\xdb\x57\xd8\x5e\x94\xae\xaf\xe8\x2d\x5b\x77\xd1\xb4\xa0\xb6\xaa\xc7\x97\xc4\xbd\x88\x10\xe2\xf5\xe5\xd3\x8b\xc5\x6d\xba\x0f\x5f\x58\x76\x64\x45\x51\x5a\xf2\x2b\x1a\x7d\x56\x59\x97\xbb\x7e\x61\x45\xfa\x43\xa8\xd7\x50\x98\xd7\xb9\xbe\x9e\xb6\xe9\x44\xf0\x1c\xe9\x22\x07\x20\x1f\xe6\x05\x26\x64\x19\x62\x26\x10\x84\xf3\x11\x47\x2f\x6d\xe8\xda\xba\x03\x69\x80\x30\x60\x7a\x63\x14\x30\x22\x94\xc1\xb2\xa4\x9f\x65\x5c\x73\x6a\x40\x3f\xa6\x98\xe3\xca\x9a\x00\x80\x5e\x84\xac\xe7\x9b\x7b\x02\x51\x79\x46\xad\xc9\x92\x25\x09\xde\xe6\x51\xdd\xc9\xe8\xf1\x85\x6e\xc3\x1a\x35\x2c\x4b\x88\x8e\x1b\x15\x5d\x70\x6e\x72\x43\xbe\xb5\xdc\x9e\xb4\x7d\xa0\xf3\x6c\x4a\xbd\xdb\x59\x63\xd7\x7e\xfe\xee\x3b\xb5\x1b\x97\xf6\xda\xbf\x6d\xde\x3c\xd5\x51\xba\x74\xff\x94\xea\x35\xee\x3f\x69\xf4\x29\xf9\x55\xd6\xae\xba\x87\x2e\xeb\xb2\x8c\x15\x5d\x85\x23\x09\xf8\xfc\x07\x1f\x64\xfa\x5a\x9d\xe2\x07\xe3\x0a\x27\x2f\xaf\x9e\xb9\x6f\xb6\x2b\x3d\x99\xde\x9f\xca\x27\xb7\x70\x4f\xf3\x8f\x60\x01\x0e\xd2\xbd\x45\xfe\x83\x05\x89\x3b\x05\x83\xf0\x0f\x9c\x41\x52\xf0\x47\x58\x80\x89\x34\xbe\xd8\x87\x00\xe4\x36\xfe\x04\x68\x58\x5e\x5d\x9a\x83\x1d\x78\x04\x4a\x38\xb1\x52\x96\x56\x5f\xcd\xa8\x01\x60\xcc\x32\x64\x26\x26\xc4\xc7\x81\x06\x62\x0d\x1a\x4d\x94\x5a\x67\x67\xee\x4c\xa1\x43\xe4\x78\x23\x3b\x45\xce\xe3\xac\x46\x8d\xfb\xf8\x2f\x7f\x89\x16\xdc\xf5\xe5\xf1\xe9\x08\x4d\x3f\x76\xfe\xf6\x45\x1f\x6e\x98\x7f\xc7\x7c\x17\x42\xae\x05\x77\x2f\x5a\xf5\x21\xbe\xe9\x51\xbc\x05\xcd\xfb\xc9\xf7\x77\xf5\xdf\xf5\xfd\xd3\xf3\xf0\x4d\xa2\x17\xd5\x6e\x3b\xb1\x7c\xd5\x92\x27\x77\xd4\x21\xb1\x0e\xfe\x7f\xd2\x46\x24\xed\xe4\x64\x2e\xcd\x67\xbd\x28\x10\x3d\x9a\xcf\x9a\x05\xc4\xd4\x87\xa5\xb5\x56\xa9\xca\x95\x14\xbc\x75\x34\x2c\x40\x19\x96\x26\xd9\xd8\xcc\xd7\x75\xa3\x99\xaf\xcb\x70\x73\x4f\x60\xfc\x68\xf2\x6b\xf5\xbf\x4d\x7e\xfd\xa4\xf8\xe3\x95\xc9\xaf\x8f\x1d\xfb\x12\x09\xe4\xac\xf8\xc7\xab\x24\xbf\x3e\xfb\xe8\x2d\xb7\xd0\x7e\x14\x00\x90\x03\x34\xf6\xa2\x2d\x60\x51\xa1\xd0\x41\x8a\x40\x2f\x18\x02\xcf\x97\x86\xdf\x59\xd4\x68\x62\xd5\x6a\xf9\x9e\x3a\x25\x2f\xbd\x06\xec\xe6\x1e\x7f\xeb\xcb\x0f\x3f\x14\x6b\xc8\x52\xb1\xf2\x2d\x2e\xe1\xf2\x79\x2e\xe1\x51\x94\x7b\xf6\xac\xf8\x3e\xa3\xd5\x75\xc1\x73\xa4\x9c\x0f\x80\x15\xb6\x06\xa2\xe3\x11\xe1\x12\x10\x4f\x24\x5a\xc5\xb6\x75\x07\xac\xe3\x50\x34\x44\xaf\x51\x21\x2c\x20\x7a\xc0\xaf\xa6\x87\xb8\x51\x08\xa0\xa2\x09\x08\xa1\x8b\xae\x96\x6f\x4e\xfd\xcf\x20\xe9\xf2\x4c\x00\x00\x2b\x58\x2d\x66\x8d\x46\x4b\x93\x1e\x69\xe8\x9d\x0e\x69\xcf\x89\xc8\x64\xac\x53\x32\x19\x7b\xdc\x1e\x83\xc7\xa0\xc1\x9b\xd1\xbd\xe2\xe2\x8f\x3e\x4a\x2f\x9c\x94\x93\x59\x5d\xe1\x89\x4b\x4d\x69\xe8\x9a\xe5\x68\xbf\x61\xae\xef\xd7\xbf\x16\x7f\x40\x6a\x3e\x20\xfe\xf8\x93\x63\x8f\x3e\x5b\xd6\xe6\x8c\x57\x45\x8d\xe3\x1f\x9a\x98\x1c\x1b\xe5\x98\x7d\x67\xdf\x99\x47\x8f\xfd\x04\x09\xcc\x27\xb3\x10\x80\x9c\x50\x65\x61\x0b\x18\x01\x90\x0a\xaa\x82\x3b\xd1\x4c\x88\x7a\x1a\xa3\xe7\xd0\x4c\xd9\x67\x9c\xc1\x64\x2a\x30\x03\x70\x03\xea\x91\x61\x7a\x22\x60\x1a\x15\x98\x03\x70\x33\x9a\x25\xc3\xcc\x8a\x80\xe9\x55\x60\x8e\xc0\x7e\x34\x47\x86\x99\x13\x01\x63\x53\x60\xfa\x00\x31\x3c\xf8\x4a\x3c\xfb\x14\x98\xc3\x10\x8b\xde\x91\x61\xde\x09\x87\x51\x97\x87\x60\xd0\x1b\xc1\x7f\xa0\xc7\x25\x18\xee\x39\xf4\xb8\x0c\x33\x43\xac\x21\xcb\xf9\x57\xb1\x05\xcc\x20\xcd\xee\x0d\x5e\xcc\xe2\x48\x61\xe6\x5b\x7f\x04\x80\xb4\xa9\xd2\xb1\x05\xac\x32\x6d\x76\xa1\x69\x10\xf5\x34\x42\xcf\xa1\x69\x32\x0e\x06\x93\xa2\xc0\x0c\xc0\x3e\xd4\x29\xc3\x74\x46\xc0\xd4\x2a\x30\x07\xe0\x76\xd4\x2d\xc3\x74\x47\xc0\x98\x14\x98\x3e\x10\x18\x0c\x1e\x85\x19\x06\x20\x3a\x3a\x56\x76\xb9\x3d\x2d\x74\xac\x50\xd8\x58\x31\x98\x4c\x05\x66\x00\x3a\xe9\x58\xa1\xb0\xb1\x62\x30\x8d\x0a\xcc\x01\x98\x41\x69\x8c\xc2\xc6\x8a\xc1\xd8\x14\x98\xbe\xe0\x5b\x0c\x26\x6c\x1c\xae\x03\x20\xd5\x74\x3c\x9d\xf2\x78\xae\xa4\xe3\x89\xc2\xc6\x73\x46\xf0\x3c\x59\xa5\xf2\x61\x0b\xb8\xe4\x36\x6f\x46\xab\xe5\x31\x5f\x1d\x01\x53\xa8\xc0\x0c\xc0\x35\xa8\x5f\x86\xe9\x8f\x80\x99\xad\xc0\x1c\x80\x1b\xd1\x1a\x19\x66\x4d\x04\xcc\x80\x02\x73\x04\xf6\xa0\x75\x32\xcc\xba\x08\x98\x72\x05\xa6\x2f\x78\x99\xe1\xc1\xa3\x78\xae\x0d\x9e\x27\x8d\x74\x4c\x7d\x72\x9b\x07\xc7\x8c\x29\x83\xd1\x29\x30\x03\x70\x07\x6a\x97\x61\xda\x23\x60\xaa\x14\x98\x03\x70\x3f\x9a\x2a\xc3\x4c\x8d\x80\x31\x28\x30\x7d\x10\xc3\x60\xf0\x28\x8c\x03\x80\x1c\xa5\x63\x5a\x22\xd7\xb5\x65\xcc\x98\xee\x0e\x9e\x27\x55\xfc\x9f\xb0\x05\xaa\xe5\x36\x2f\x83\x14\x50\x3f\x8d\xd1\x89\x14\xea\x4c\xad\xc0\x7c\x28\xc3\x08\x30\xb0\x46\xc7\x20\x74\x6c\xbe\xd3\x72\x41\xad\x94\x1f\xd8\x94\xca\xca\x53\xc3\xcb\xd3\x94\xf2\x23\x9b\x33\x58\x79\x46\x58\x39\xff\x77\xa5\xbc\xef\x73\xfa\x3d\x8e\xfc\xbe\x51\x69\xe3\xe1\xe0\x65\xd8\xcf\x20\xf6\x47\xb4\x51\xb8\x1c\xc2\x81\xde\xf8\xeb\x52\x09\x82\x3b\xb1\x94\xe1\xd8\x29\xd6\x90\x62\xd2\x8a\x2d\x50\xcb\xd6\x6c\x65\xe4\x9a\xdd\x1c\x3c\x4f\xba\xf9\x8f\xb1\x45\xd2\x5c\x65\x3a\x84\xf5\x82\xd6\xc1\x60\xfe\x28\xc3\x48\x74\x48\x62\x10\x49\x61\x38\x84\x28\xa5\xfc\xc0\xa6\x34\x56\x9e\x16\x5e\xc7\x27\x4a\x79\xdf\xe7\x69\xac\x17\x72\xf9\x6b\x00\x64\x3a\x7f\x16\x5b\x60\x2f\xbd\xe0\x5b\xf5\x20\xe3\xb5\xec\xfd\x19\xf6\x9e\x8e\xe3\x63\x41\x91\x8d\x23\x0b\x43\xa7\xc0\x7c\xa1\xc0\x1c\x80\x9f\x00\x62\x3d\x44\xa1\xf6\x33\x98\x5f\xcb\x30\x02\xf4\x99\x29\x04\xa6\x10\xc1\x20\xd5\xff\x02\x74\x9c\xda\xd8\x38\xad\xcf\x60\x18\xe4\x71\x5a\x19\x3c\x47\x66\xd2\xb9\xd2\x2e\xd3\x68\xcd\x98\xb9\xc2\x60\x3e\x94\x61\x04\x18\xd8\x14\x39\x57\x68\x39\x9d\x2b\xed\x72\x3b\x77\x8e\xa1\x33\x83\x49\x53\x60\x8e\xc0\x35\x10\x36\x63\xc2\xea\xf9\xbb\x52\x4f\xdf\x37\x91\x73\xe6\x68\xf0\x1c\xf1\xf1\x6f\x60\x0b\x4c\x93\xdb\xba\x16\x78\xd6\x1b\x3e\x84\x83\xc1\xbc\x2e\xc3\x08\x30\xb0\x25\x72\x4e\xb0\xf2\xaf\x15\x1c\x07\xe0\x5a\x10\x18\x84\x10\x89\xe3\x5d\x05\x47\xdf\x77\x02\xa3\xa9\xc0\x70\x94\x88\x4d\xe4\x51\x5a\xc7\x0c\x79\xec\x6e\x81\xb0\x5a\x28\x0e\x06\xf3\xae\x0c\x23\x40\x5f\x74\x24\x0e\xba\x27\x09\xdf\x29\xfb\x56\x3f\x44\xa1\x49\x32\x7f\x9a\x14\xb1\x8e\x9f\x51\xd6\x50\xff\xb7\x84\x51\x8c\x84\xe1\x50\xd5\x2b\x38\x0e\x82\x1a\x1d\x92\x71\x1c\x0a\xc7\x21\x08\x0a\x8e\x83\xdf\xcc\x62\x38\x66\xb1\x58\x87\x85\x62\x07\x39\x41\xe3\xb9\x66\x42\x4d\xa0\x32\x13\x09\xbc\x0e\x01\x37\x0e\x21\x18\x4f\x6f\xa3\xca\x41\x8e\xe6\xa9\x90\x24\x54\x91\x50\xb8\x06\x2a\xcf\x36\xe0\x66\x80\x8c\x74\x48\x83\x34\x4d\x92\xd9\xac\x51\xab\x93\xed\x08\x19\x05\xd9\x4e\xaf\x58\x9d\x0a\xbd\x3e\xce\xc0\x19\x11\x67\xe0\xf0\x9f\xd0\xdb\x65\x53\x5b\xf5\xd9\x99\x8e\x89\xd9\x69\xdd\xb5\xb9\xcd\x7e\x43\xe7\xe4\x99\xa2\x7f\xc1\x0f\xe8\xf7\x01\xd4\xfa\x10\x7f\xe2\xc7\x36\xeb\xbc\xd2\xcc\xec\x58\xd5\xe0\xc4\xf4\x94\x82\x26\x57\xd5\xae\x42\x54\x26\x3e\xc9\x9f\xb8\xbc\x12\x97\xd0\x7b\x20\x62\x07\xa9\x22\xad\x50\x0e\x2d\xd0\x1d\x98\x5a\x83\x54\xea\x6c\x8c\x41\xe5\x46\x3c\x14\x22\x81\x27\x8d\xc0\x61\x84\x39\x1a\x2e\x4f\xad\x42\xea\xf9\x80\x31\x0d\x9c\x50\x47\x73\xac\xb1\xa3\x88\xa6\x50\xac\xb9\x06\xa1\x39\x50\x51\x57\x5b\xd1\x12\x68\x31\xe7\x9b\x12\x8c\x16\x4b\xb4\x3a\xd5\x6e\xb6\x84\x6e\x4e\x15\x9a\xdc\xee\x48\xaf\xf5\x90\x9a\x7e\xb5\x9e\x5a\x65\xd5\x9d\x9a\x3c\xb9\xfa\x89\xea\xe4\x8a\x96\x1e\x77\xd7\x4d\xf3\xbd\x88\xfb\xea\xa9\xb5\x4b\x9d\xf5\xce\xa4\x2f\x4b\xd6\x3c\xb4\x74\xce\x83\x1b\x6b\xb4\x09\x8e\x2b\x68\xd1\xf2\x6e\x5e\x7b\x65\x7e\xcc\x3d\xb7\xdd\x94\xe8\xa8\x1d\x6f\xf1\xa5\x38\xb2\x12\x5c\xd3\xd6\xd7\x3e\xf9\x5c\x5d\xd7\x42\x5d\xb6\x37\xb3\x62\xc3\xac\xa2\xfc\x59\x37\xcd\x12\x33\xea\xd6\xd9\x35\x91\x94\xaa\xd8\xf9\xbe\xce\xec\x4c\x7e\xa3\x77\x9a\xc1\x6f\x4b\x02\xb6\xc7\x9d\x23\xcb\xe9\xde\x6d\x96\xe7\xea\x30\x9a\x2f\xef\x17\xf3\xe5\x39\xb2\x33\x78\x8e\x14\xd3\xf5\x5d\x1b\x92\x5b\x40\xc7\xe6\xb3\x2e\x34\x9f\x19\x9e\x4e\x05\xcf\x01\xf8\x39\x5a\x2c\xe3\x59\x1c\x8e\x87\xf2\x81\xda\x90\x6c\x43\xf9\x00\x0a\xe3\x03\x0c\x4f\xb9\x82\xe7\x10\x14\xa3\x95\x32\x9e\x95\x11\xed\xf9\x4a\xe1\xeb\x87\x34\x46\x86\xc5\xc8\xe6\xfd\x95\x6d\x19\x02\xef\xbf\x69\x8b\x00\x43\x13\xc2\x5a\x12\x0c\xc2\x1e\x00\xb2\x96\xca\x61\x16\x86\x23\xf8\x12\x95\xb1\x70\x98\x1c\xb6\x25\x78\x5e\x98\x20\x24\x81\x05\x26\xb1\x88\x2c\x9c\x16\x14\xf9\x4c\xb8\xa8\xc8\x67\xfd\x10\x83\x2a\xe5\xfa\x2b\xe5\x6f\xd9\xbe\x30\xac\xec\x0b\xfd\xdf\xf2\x6c\xdd\xf1\xe1\xf2\x64\xb5\x82\xe3\x20\x4c\x40\xf7\xc9\x38\xee\x0b\xc7\x21\xa8\x14\x1c\x07\xbf\xe9\x65\x38\x7a\xc3\x71\xe4\x2b\x38\x0e\x81\x66\x8c\xcc\xc5\xda\xf1\xb5\x82\xe3\xd0\x0f\x26\x86\xc3\x24\x01\x20\x38\x22\x76\x90\x36\x1a\xdb\xa9\x32\x50\x1e\x83\x38\x3c\x11\x11\x0e\x37\x82\x1a\x00\xa9\xa9\x1a\x48\xd3\xbf\x50\x75\x0a\xf7\xf0\x92\x8e\x27\xa9\x85\x74\x35\x35\xd0\x0c\x13\x3a\xb3\x59\xa3\x09\xa9\x7a\x86\xab\xae\x09\x5f\xc8\x6d\xfa\xb3\x91\x47\xf0\x0b\x8b\xae\x98\xf2\x35\x95\x23\x77\x71\xc7\x47\x1a\xf1\x34\x3c\x28\xfa\xce\x44\x4e\xe9\xd2\x0d\x6e\xfe\xc4\x59\x71\xa1\xb4\xee\x37\x8b\x0b\x49\x37\x69\x85\x02\x69\xe5\x07\x1a\x0b\x10\x4d\x11\x84\x27\x20\x04\x5c\x23\xf0\x04\x13\x1e\xaf\x02\x15\x10\x5e\x45\xe6\xaa\x91\x20\x50\x0f\xc1\xba\x26\xc0\xb8\xb6\x49\xd2\xe8\x66\xb2\x38\x33\x85\x6e\x7f\x91\xbb\xbc\xb0\xdc\xa4\xb5\xe9\xcc\xd9\x51\xea\x14\xbb\x59\x10\x54\x57\x6b\x77\x78\x62\x3f\xad\x81\x5d\xe7\x43\xa1\xa0\xdb\xa4\x4e\xbf\xa2\xf9\x8a\xbe\xe4\x39\x56\x0e\x5f\x53\x37\xe5\xa6\x9f\x2d\x5a\xff\xcc\xa6\xf2\x91\x38\xa1\xa0\x7d\x45\xe5\x8c\x7b\x9d\xe2\xd3\x05\x5d\x35\xf9\xd1\xe8\x12\x97\x59\x3a\xe3\x39\x67\x77\x7a\x64\x2f\x5d\xf3\x1d\xaa\xa9\x7b\x9f\x5b\x6a\xbb\xe6\xcd\xdb\x5a\x27\xef\x3f\xb3\x6e\x61\xc5\xf2\xc9\x8e\xfa\x0a\x3c\xc3\x54\x3b\xbf\x22\xce\xd9\x33\x29\xe7\x2a\xba\xc3\x10\x4c\x18\xa3\x3b\x5c\x29\xaf\x0c\x7d\x13\x29\xaf\xcc\x0c\x9e\x27\x8b\xe8\xda\xb1\xc9\x6b\xf4\xe0\x98\xb5\xb3\x55\xec\x22\x1e\xba\x76\x1a\x98\xcc\xd3\x1f\x29\xfb\x31\x1c\x1d\x0a\x8e\x83\x90\x84\x1e\x91\x71\x3c\x12\x81\x43\x50\x70\x1c\xfc\x34\x6c\xdf\x51\x70\x94\x2b\x38\x0e\x41\xda\x18\x3e\x40\x71\x50\x3e\xc0\x70\x1c\xfa\xdc\xc8\x70\xc8\x7c\x60\xa6\x98\x4a\x16\x51\x19\x8a\xe2\x40\xb7\xc2\xbb\xe2\x2b\x0c\x87\xf8\x4a\x44\x3b\x8e\x87\x70\xa0\x03\x64\x0b\xc3\xb1\x85\xe1\xb8\x16\x80\xd4\x50\x9a\xe6\xc8\xf4\x58\x37\x86\xa6\xf7\x53\xdd\x66\x3f\xb6\x40\xa3\x0c\xd3\x8c\x8e\xc8\x30\x47\x22\x74\xa4\x5e\x45\x47\x3a\x02\x33\xc7\xac\x45\x2a\xab\x09\x58\x91\xe7\x8e\xc0\x49\x20\x8c\x2b\x91\x10\x7f\xa4\x78\xa8\x5c\xc0\xf0\xf4\x07\x7f\x47\xe5\x02\x14\x26\x17\x30\x99\xef\x7e\x45\xe6\xeb\x77\x9c\x93\x25\xc7\x73\xca\xfd\x4a\xd6\x9e\x7a\x05\xcf\xc1\xe0\x6f\xa9\x6c\x80\xc2\x64\x03\x86\xe7\xbc\x82\xe7\x60\x6e\x35\x6b\x4d\x35\xe3\x0d\xc3\x62\x07\xd1\x51\xde\x50\x12\x28\x8a\x45\x84\xd3\x50\xfb\x87\x3a\x94\x0e\xad\x94\x06\xdc\xe5\x7a\x04\x44\x0d\x8d\xb2\x25\xa3\x81\x6f\x96\x99\x02\xe3\x0a\x21\x2f\xfc\xab\xf2\x05\x8f\x41\x63\x18\xe6\xe6\x89\xaf\xa2\x12\xf1\xf3\x31\x7c\x41\xdc\x8f\x0a\xc5\x5f\xf1\x27\x5e\xbb\xf4\xe1\xd9\x31\x6c\xe1\x2c\x31\x02\x86\xb7\xc4\x0e\xd2\xce\xbf\x47\x7d\x1d\x26\x05\xaa\xc3\x38\x58\x54\x94\x1c\x8b\x85\x26\x62\x07\x80\x0a\x9a\x42\xe8\x2a\x4c\x2c\x27\xdb\x18\x62\x63\xd1\xb4\xc1\xff\xb2\xb9\x57\x1c\xcb\xa1\x4a\xf1\xb1\xb1\x0d\x7f\x1a\xb5\x45\x1e\xd7\x5d\xde\x77\x95\x1e\xe0\x27\x46\xcf\x33\x94\x31\x2b\x54\xc6\xec\x50\xf0\xbf\xd1\x42\x79\xcc\x16\xca\x63\xb6\x38\x78\x9e\x8f\xa5\xeb\x26\x97\xcd\x45\xf4\xce\x18\x5d\xf3\x75\xb1\x89\x98\xa9\x4c\x7f\x9f\x3c\x5f\xff\x16\xfc\x5a\x9e\x21\x5f\xcb\x30\xb7\x8b\x99\xe4\x75\x1a\x3f\xdb\x21\xaf\x9d\x17\xc5\xd7\xe4\xb5\xf3\x9a\x0c\x73\x40\xd4\x93\x9b\x05\xc0\x16\x68\x91\x61\x6e\x14\x5f\x97\x61\x5e\x97\x61\x1e\x07\x20\x1d\x2a\x69\x4e\xe7\x31\xd9\x21\x58\x84\x4a\xe5\xf6\x94\x86\xcf\x33\xd5\x42\x6c\x81\x56\x59\xbe\x38\x3e\x66\x2e\x3e\x2e\xda\x49\x07\x6d\x4f\x9e\x5c\xd7\x69\xf1\x3d\xb9\xae\xf7\x42\x78\xc4\x5c\x32\x9d\xb6\xa7\x55\x86\xf9\x5f\xf1\x7d\x19\xe6\xfd\xf0\xf6\xf0\x4f\x2b\x78\xfa\x10\x04\xef\x95\xfb\x7e\x6f\x58\x7b\xfe\x21\xf0\x10\xc2\xd3\x87\x51\xf0\x73\x19\xe6\xf3\x08\x3c\x4a\x7b\xe0\x10\xec\x19\x91\xeb\x1a\x79\x3f\x0c\xcf\x4d\x02\x84\xf0\xc0\x21\x74\xdf\xc8\xc7\x32\xcc\xc7\x11\x76\x91\x4c\xc5\x2e\x32\x00\x8b\xc7\xe8\xeb\x54\x47\xa3\xf2\x17\xd3\xd1\x06\xfa\xc3\xa4\x2f\x09\x87\x68\x25\xd5\xb4\x2d\x4e\xb9\xdf\x0f\x88\x6f\xc9\xfd\x7e\x2b\x84\x43\xb4\x93\x00\xd5\x85\xdb\x64\x98\x47\xc6\xd0\x8f\xb5\xa5\x51\x69\xcb\x50\xf0\xd3\x31\xb6\x1e\xa6\x2f\xaa\x95\xb6\x0c\x5d\x88\x90\x9b\x82\x37\xd0\x72\x9d\x52\x4f\xdf\xc8\x7f\x05\x83\x32\xed\x82\x11\x76\x95\x71\x8a\x5d\xa5\x1f\x38\x34\x43\x96\xad\x66\xc8\x30\x4c\xd7\x7b\x46\xd1\xf5\xfa\x2f\x47\xea\x36\x0c\xc7\x2c\x05\xc7\x41\xc0\xe8\x19\x19\xc7\x33\xe1\x38\xe8\x1e\xc3\x70\x1c\xbc\x14\xb9\xc7\x48\x38\x6e\x52\xcd\x51\x70\x1c\x85\x9b\xc7\xd8\x77\x24\x1c\xd7\xd1\xfd\xb2\x5d\x86\xd9\x0d\x61\x5a\x27\xe5\xa5\xf7\x02\x90\xdb\x54\xf1\xd8\x22\x69\x5c\x74\x0c\x57\xa1\x16\xb9\x2d\x2d\x0c\x0f\x72\x01\x90\x06\x3a\x86\x9d\x6c\x0c\xbb\x22\xc7\xf0\x5e\xd1\x4e\x6e\xa3\x63\x58\x28\x8f\xcf\x53\x74\x7c\xf0\xe8\xf8\xa0\x68\xd1\x4e\x1a\xe8\x18\x76\x32\x98\xe0\x77\x63\xc6\x90\xb5\xa5\x5c\x69\xcb\x50\xf0\x2b\xba\xfe\x71\xd8\xfa\xff\x54\x6a\x0b\x1d\x43\xd6\x96\xa1\x0f\x22\x65\xdf\x85\xc1\xcf\xc9\x56\xca\x67\x3c\x8a\x9d\xb2\x5f\x9e\x07\x21\x1b\xdb\xed\xc1\x73\xa4\x8e\xf6\x67\x2a\xeb\xcf\xaa\xc8\xfe\x30\x1c\xb3\x15\x1c\x07\xe0\x76\x4a\x5b\x14\x66\x83\xa3\x38\x68\x3b\x18\x8e\x03\x1b\xae\x68\x87\xe8\x27\x5b\xe9\xfe\xed\x61\xf6\x9b\xa9\xdf\xcb\x33\xe9\x7b\x65\x1f\xbb\x5d\xf4\x93\x3a\x4a\x13\x86\x63\x43\xde\x58\x98\x85\xa2\x2e\x0c\x8f\x44\xdb\xb7\xc4\x97\x64\xba\xbd\xa4\xf0\x3b\x5d\x18\x1e\x09\xe6\xe1\x31\x30\x57\xf6\x49\x92\xaf\xfe\x5d\x9f\x86\xbe\x8a\xec\x53\x81\x68\x25\x07\xe8\x38\x7b\xe5\x7a\x4e\x8c\x59\xab\xd7\x89\x06\x52\xce\x07\xb0\x05\xba\x64\x18\x51\xfc\x85\x0c\xf3\x0b\x19\xa6\x40\xac\x0f\xc3\x23\xc0\x06\x6f\x98\x95\x22\x18\x84\x6e\xb1\x81\x5c\x4b\x06\xb1\x05\x3d\xc5\xca\x0b\x54\xac\x5c\x15\xe2\x19\x55\xa3\x75\x80\x0a\x36\xc0\xf5\x94\x56\xf4\xdc\x84\xda\x21\xbd\xf2\xfc\x09\x8e\xb1\x43\x5e\x17\x3c\x47\x9e\x14\x5e\x84\x50\xfb\xfa\xd0\x4f\xe1\x18\xc3\x7e\x2c\xb4\x26\x98\xad\xb2\x4b\xb1\x55\x1e\x81\x03\x63\xe4\x26\x6a\x47\xa1\xfa\xcb\x34\x19\xe6\x3a\x88\x62\x78\xa2\x22\xf0\x08\x5f\x28\x78\xfa\x21\x11\x95\xcb\x78\xca\xc3\xf1\xf0\x87\x15\x7b\x4c\xbf\x78\x41\x9e\x03\x17\x94\x39\xc0\xda\x13\x50\xf0\x1c\x04\x2d\xba\x5b\xc6\x73\x77\x04\x9e\x8b\x0a\x9e\x83\x23\xf5\xac\x35\xf5\xb2\x2c\x48\x71\x5c\xaf\xe0\x38\x0c\xe9\xe8\x17\xb2\xfd\xf5\x17\x11\x7d\xf2\x28\x38\x0e\x93\xcd\xcc\xae\xb3\x79\x14\xc7\x41\xaa\xd7\xf9\x64\x7e\xf2\xc0\x18\x1b\xae\x84\x63\x17\xff\x8d\x42\x97\xa3\x70\x23\x84\x59\x87\xe8\xd9\xd3\xb5\xe2\x4d\xa4\x91\x3f\x01\x0e\x98\x15\x88\x9e\x88\x00\xc7\xca\xd1\xfb\xe8\x41\xb0\xc0\x63\x8e\x2b\x55\x92\x74\x30\xed\x66\x06\xd3\x6e\x52\x03\xc9\x14\x03\x9a\x7d\x25\x14\x6e\xee\x09\xc4\x00\x80\x03\x1c\x66\x6d\xa2\xd9\x4e\x2f\xff\xc6\xc7\x70\x57\x51\x7d\x7c\x79\x9c\x35\xde\x1d\x2f\x3b\x29\xc4\x93\x7a\x8c\x2c\xf5\x8b\x2b\x5d\x79\x11\x82\x8e\x7f\xf1\x23\x1b\xab\x10\x3e\x8f\x91\xbe\xb4\xa7\xa4\x74\x66\xb9\x1e\x61\xfe\xc4\x65\xd7\x94\x5b\x36\xf4\xa4\x1a\xda\xf2\xc2\xc4\x9d\xc9\x4d\xa4\xf1\xba\xe1\x7e\xee\xad\xcb\xae\xea\x55\xed\x0e\x47\xfb\xaa\x6a\xee\x2d\x40\x70\x54\xec\x20\x53\x49\x31\xe4\xc2\xbc\x40\xbc\x0d\x11\x2e\x37\x11\x63\x12\x85\x00\x47\xcb\x99\x5f\x63\xdb\xba\x03\xa9\x72\x18\xd2\x88\xfe\x4a\xda\x5c\x83\xd4\xdf\x2b\x4a\xeb\xc3\x4b\x7b\x02\x51\xf1\x66\x6d\x8e\xd9\x4c\x2f\x98\x5e\x4d\xa8\xb3\x5e\x25\x01\x97\x86\x5c\x69\x97\x69\xae\x9f\xe0\x1b\x9a\xdb\x79\xd3\x7c\xdf\x97\x3a\x67\x7d\xc1\x9c\xf5\x19\x17\xae\xb0\xbd\xec\x70\xef\x69\xeb\x29\x5c\xfd\xd4\x16\xbc\x73\x64\x7b\xeb\xa2\xd2\xe4\xa6\x00\x07\x97\xce\x06\x83\xd2\x6e\x4b\x1e\xa3\xfb\xae\x5f\xe6\x95\xdb\xc6\xec\xbb\x26\x00\xf2\x20\xd5\xd3\x7b\x18\xaf\xdc\x1c\xb9\xde\x99\xdd\xbf\x51\xb1\xfb\x1f\x80\x6b\xc7\xe0\x60\x36\xc7\xaf\x15\xbb\xe4\x01\xb8\x7b\x8c\x6d\x93\xe1\xb1\x29\x78\xfa\x82\xdf\x8d\x39\xcb\x59\x00\x40\x7a\xe9\x79\x46\xe9\x3f\x3d\xcf\xd8\x07\x40\xa6\x52\x1b\xe8\x4c\x19\xe6\xe0\x18\x1b\x28\xc3\x93\xab\xe0\x39\x04\xc9\x63\xda\xcc\xf0\x7c\x28\xe3\x11\xe0\x90\x31\x86\x61\x89\x61\xfd\x66\x38\xaa\x14\x1c\x43\xa0\x1d\xc3\xaf\x18\x8e\xaf\x15\x1c\x43\x99\x91\xb4\x33\x03\x90\x87\xa8\x0c\xb6\x43\x6e\xeb\x5f\xc6\x9c\x59\xe6\xd2\x98\xac\x7f\xc4\x16\x89\x4f\x52\x98\x43\x90\x04\xea\xa7\x39\x76\x12\x40\xfb\xe3\x0b\x3e\x40\xae\xa7\x32\xc9\x35\x32\xcc\x7a\xca\x63\xb8\x30\x1e\xb3\x32\xb8\x9e\xcc\xe4\xff\x1b\x5b\xe0\x06\xb6\x6f\x4e\x4e\x60\x58\x12\x98\xfc\x74\x96\xdd\x7d\xc7\x16\x74\x98\xf2\xd6\x5f\x8a\x77\x05\x57\xb1\xb6\x04\x57\x31\x1c\xff\x09\x4c\xe8\x1e\x61\x88\xff\xa3\x5f\x7e\xfc\x86\xcc\x13\xdf\x50\x78\x22\x8d\x9b\x20\xf1\x3b\x34\x24\xdb\xcb\x57\x83\x9d\x49\x48\xf6\x50\x9f\x18\xcc\x17\x32\x8c\x00\x03\x1b\xb3\x19\x44\x36\xa3\x1d\x2d\x17\x92\x95\xf2\x03\x3b\x72\x59\x79\x6e\x78\xb9\x43\xa9\xe3\x08\xec\x84\x7c\x06\x91\x1f\x59\xc7\x0f\x0a\x8e\xbe\xaf\x73\x99\x84\x15\x81\x63\x86\x82\xe3\x30\x20\x38\xcc\x20\x0e\x47\xe0\x50\x4d\x08\xe1\x40\x6f\x7c\xb6\x85\x9d\x05\xc9\x7a\xfc\x6c\xb1\x92\xd4\x93\x21\x6c\x41\x87\xd8\x7e\x68\x88\x90\x4a\xe5\x98\x43\x40\x72\x29\x3d\x1e\x90\xe9\xd1\x45\xe9\x81\xc2\xe8\xc1\x60\xbe\x90\x61\x04\x18\x98\x95\xcd\x20\x64\x7a\xd0\x72\x4a\x0f\x56\x7e\x60\x41\x2e\x2b\xcf\x0d\x2b\xa7\x7d\x65\xe5\x7d\x1f\xe4\x32\xce\x2e\x97\xd3\xfb\xeb\xfc\x47\xd8\x82\x1e\xa2\xe5\x55\x7b\x92\xd9\xf7\xc9\xe1\xe5\x7f\x90\xcb\xd9\xd9\x42\x22\x83\x48\x0c\xb5\x91\xc2\x48\xfb\xaa\x0c\x23\xad\xf3\x14\x06\x93\x12\x01\xc3\xff\x4d\xa9\xa7\x2f\x3a\x85\xb5\x23\x85\xd5\x43\xef\x64\xd3\x71\x7b\x54\xb1\x45\xe4\x33\x1c\xca\xb8\xd1\xbb\xd6\xfc\xf7\xd8\x82\x1e\x93\xe9\xb5\x1d\x5c\x6c\x6c\x5d\x91\x30\xdf\x28\x30\x03\xb0\x0b\xf2\x18\x4c\x5e\x04\x8c\x90\xa9\xc0\x1c\x80\x7d\x50\xc0\x60\x0a\x22\x61\xdc\x0a\xcc\x11\x18\x04\x0f\x83\xf1\x44\xd6\x25\xca\x30\x02\xf4\x31\x2c\x98\x62\x09\x06\xd9\xdd\x58\x5a\x7e\x82\xd1\x76\xb0\x88\xf5\xa8\x28\xbc\xfc\x92\x5c\x4e\xf9\x1a\xad\x03\x85\xd5\x41\x61\x04\x8b\x02\x73\x00\xee\x07\x3f\x83\xf1\x47\xc2\xf0\x4a\x3d\x7d\x31\x7e\x46\x5b\x3f\xab\x87\xde\x17\xa5\x73\xe8\x19\x36\x87\x96\x44\xce\x21\xb6\x1e\x5e\x55\xd6\x43\xff\x25\x2d\xeb\xa9\x36\x7c\x3d\xe8\x94\xf2\x83\x3f\xf6\xb3\xf2\x7e\x76\x66\x63\x12\x3b\x68\x3c\x94\x7f\x7a\x66\xa3\x42\xbc\xc0\xaf\x09\x9d\xdc\xfc\xbf\x3e\xb3\xb1\x1a\x54\xec\xcc\xe6\xb7\xe8\x5d\xe7\x15\xfb\xe1\xe4\xa6\x6e\x16\x57\xa5\x1c\x75\x3f\x4e\x06\x2f\x0d\x44\xee\x86\x81\x6b\x0a\x3f\xf9\x9e\x0c\x8e\xe8\xd1\x2b\x6c\xed\xd1\x18\x25\x74\x9e\xb0\xf5\x39\xb0\x30\x8f\xd1\x24\x4f\x5e\xbf\x52\x39\x9d\x23\xac\xfc\xc0\xf2\x02\x56\x5e\x10\x5e\x1e\xa5\x94\x1f\x3a\x57\xcc\xca\x8b\xaf\xfe\xfd\xd0\xdf\x23\xbf\xbf\x87\xfa\x3d\x25\xcb\x3c\x55\x80\xa1\x1b\x22\xf9\x18\x5b\xb7\xaf\x2a\xeb\xb6\xff\x4f\x5a\xf6\xbd\x36\x7c\xdd\xeb\x94\xf2\x83\x1f\xf5\xb3\xf2\xfe\xf0\x72\x4e\x29\x3f\xf4\x97\x42\x56\x5e\xc8\x6c\x69\x27\xc5\x0e\x1a\x6f\xc4\x00\x15\x81\xd2\x30\x2b\x95\x00\x2a\xb5\xa0\x9a\xab\xd8\xdb\xff\x6f\x58\xd9\x69\x70\x92\x5d\x63\xad\xec\x9f\x85\x85\x2b\x19\x63\x8c\x0a\xc5\x2f\xb9\x0a\x8f\x1b\xfa\x28\x92\xc7\xd1\x78\x24\x94\xd6\x47\x95\xf3\xde\x30\x6a\x53\x1c\x0c\x26\x5d\x86\x91\x74\xf3\xb5\x0c\x62\x6d\x38\x8e\x28\xa5\xfc\x50\x30\x72\x3c\x97\x8b\x99\xa4\x8d\xf2\xf3\xa3\xb2\x8e\xf4\xfc\x18\xfb\x14\x8d\x2d\x42\xdb\xf9\xa0\xdc\x8e\x07\x20\xac\xa5\x61\xbc\x32\x55\xe1\x95\x47\xe0\x1e\x48\x67\x30\xe9\x91\xbc\xf2\xa4\xc2\x2b\xfb\xe3\x38\x06\xc1\x85\xf1\x64\xba\xde\x59\xf9\x41\xcd\x4c\x56\x3e\x93\x8d\xed\xdb\x62\x07\x8d\x49\x62\x00\x7f\xc0\x3b\x6a\x27\x05\x50\xb3\x0b\x71\xff\x57\xac\xa4\x72\x00\x13\xf1\xdb\xb1\xc6\xc6\x47\x47\x63\x9a\x8c\xb5\x31\x72\x10\xd6\xc7\x8b\x4a\x1f\x0e\x69\xb3\x58\x1f\xb2\x58\x1f\xef\x0e\x5e\x20\x2f\x08\x89\xd8\x82\x8e\xc9\x76\xc5\xed\x60\x63\x10\xb6\x10\x9d\x8e\x88\x56\x72\x3b\x95\x39\x8e\xcb\x63\xb2\x75\x8c\x6e\x3b\x2c\xc9\x6b\xfc\x5f\xb0\x05\x3d\x2c\xdb\x03\x1d\x63\xe8\xfd\x53\xd1\x46\x7a\x29\x9e\x87\x65\x3c\x3d\xe2\x3b\x32\x9e\x90\xcf\x16\x8b\x65\xb2\x5f\x81\xe9\x83\x9d\xe2\x06\x19\x66\x43\x04\x8c\x82\x07\x0e\x81\x79\xa4\x42\xb6\xbf\x55\xc8\x30\x74\x9f\xa3\xbc\xf8\xd1\x90\x9f\x05\x84\x71\x63\xda\x9e\xa7\x44\x23\x49\xa0\x78\x1e\x95\xdb\xf3\x57\x51\x96\xa6\xc4\x37\xc2\xf1\xd0\xb9\xf6\x28\x5b\x13\xb9\x91\x6b\x82\xed\x4d\x6f\x28\x7b\x53\xbf\x2a\xf2\xcc\x84\xed\x6f\xe9\x4a\xf9\x41\x61\x2d\x2b\x5f\x3b\x5a\xbe\x5f\xd0\x2b\xfb\xdf\x51\xb8\x2d\x7c\x77\xa3\xed\xa4\x71\x3a\xe8\xfe\xf5\x04\xe3\xa1\xb6\xb0\x1d\x52\x2a\x17\x6d\xa4\x95\xf6\xe3\x09\xb9\x1f\xcb\x28\x5d\x71\x18\x5d\x29\x0e\xba\xbf\x31\x1c\x43\x8f\xf9\x19\x0e\x79\xef\xa2\xb1\x37\x28\x9f\x7e\x52\xf6\x9f\x88\xe4\xd3\xb4\x9c\xae\xfd\x27\x15\xff\x89\x2b\xd7\xfe\x2e\xb1\x92\x34\xd1\xb5\xcb\x70\x6c\x28\x1e\x2b\x8b\x45\xe2\x11\x60\x68\x24\x92\x5f\x77\x8b\xd9\x61\xf2\xad\xd4\x97\xc7\xc5\xb7\xe5\x31\x79\x3b\x5c\x06\xa6\x63\xc2\x6c\x20\x43\xdf\x45\x8e\x09\xdb\xa7\x8b\x95\xbd\xfc\x08\x1c\x80\x52\x06\x51\x1a\xb1\x97\xf3\xef\x2a\x7b\x79\x7f\x62\xe4\xba\x60\x38\x4c\x4a\xf9\x41\xed\x16\x56\xbe\x25\xbc\xbc\x4f\xa9\xe3\x30\xa4\xc3\x13\x4c\x1a\x78\x22\xbc\x8e\x83\x82\x55\x81\x39\x0a\x0f\x40\x98\xc4\x40\xb5\xf5\x87\xc5\x7b\x68\x5c\x0f\x0b\x14\x06\x5c\xa1\x53\x4d\xdc\x28\xa9\xf0\x84\x5b\x23\x2b\xf4\x61\x9a\x3c\x4d\x2b\x61\x31\x6a\x13\xcd\xd9\x54\x8d\xd7\x08\x82\xea\xaa\x5a\x7c\x78\xec\x0f\xbc\x6b\x65\x47\x04\xf3\x28\x98\x7d\x64\x7d\x75\x44\x20\x90\x7d\x3f\x77\x54\x4c\x0b\x63\x21\x8d\x75\xb8\xa8\xef\xee\x79\xa3\x71\x41\x82\x41\x16\xcb\x83\xd2\xfd\x27\xf2\x1c\xf8\x74\x0c\xdf\xa5\x32\x10\x85\x61\x32\xd0\x81\x55\x91\x63\xc3\x64\xa4\x1f\x94\xf2\xbe\xbf\x46\xca\xc9\x34\x4e\x06\x5d\xb7\xc3\xf2\xba\xdd\x33\x66\xdd\x52\x18\xba\xe7\x0e\x33\x9e\x16\x13\xb6\xe7\x2a\xe5\xc9\x4a\xf9\x50\x74\x64\x1b\x98\x0f\xce\x35\xcc\x7f\x06\x54\xf0\x98\xd8\x2a\xe1\x0d\x9e\x02\x20\xcf\x08\xd7\x82\x05\xac\x0b\xa4\xba\x1f\x1b\xd9\x77\xa5\xdf\x55\xf0\x0c\x95\xd1\xae\x01\x0b\xe4\x2c\xa0\xdf\x8e\xdc\x42\xdf\xbf\x07\x40\xb6\x08\xd7\x81\x05\xec\xf2\xb7\x87\xae\xd4\x8b\x83\xaf\x06\xcf\x93\xeb\xe9\xb7\xae\x04\xf6\xed\xad\xf4\xfd\x56\x00\x5e\x45\xdf\x97\xc8\x38\xeb\xe9\xfb\xff\x01\x20\xfb\xe8\xfb\x67\x65\xf8\xe3\x6c\x9f\x0e\x9e\x23\x15\xc2\x41\x6c\x81\x53\xb4\x7f\x8f\xff\xe9\x59\x69\x85\x70\xcf\x05\x9f\x55\xd6\x19\xed\x23\xbd\xb3\x65\xa4\xcf\x77\x00\x90\xed\xf4\xd9\x34\xea\xcb\x40\x9f\xad\xa3\x3a\x3b\x7d\x2e\x65\x76\x35\x96\x0b\x15\x0b\x90\x33\x7a\xae\x48\x9f\xd9\x18\xdc\x0e\x40\xcf\x91\x04\x70\xd0\xe7\x1b\x00\x48\x37\x7d\xce\x07\xe5\xcc\x81\x3e\x3b\x41\x39\x1b\xe0\xcf\x60\x01\x5c\xf4\xf9\x38\x00\xd9\x45\xcb\x0b\x46\xed\x93\xf4\xd9\x3b\x6a\xaf\xa0\xcf\x25\xf4\xb9\x08\x80\x3c\x41\x9f\x8b\xc3\xce\x39\xff\xb5\x6f\xea\x7f\x62\xf3\x58\x17\x3c\x47\x06\x85\x7d\xd8\x02\xcf\x51\x5a\x3e\xf6\xcd\x38\xc6\x17\xc7\x8d\xfa\x2b\xee\x10\x6e\xc2\x16\xf8\x39\x2b\x27\xd1\x6c\x54\xa3\x59\xf9\x2d\xe2\x5c\x52\x4e\xbf\x7f\x91\x95\xa3\x71\xac\x5c\xfe\x9e\x8d\xd5\x46\x65\xac\x1e\xfb\x6e\xac\x1d\x7b\x6f\xf0\x1c\x69\x11\x1e\xc4\x16\x78\x9d\x8d\xe7\xcb\x2f\xc8\xe3\xf9\x82\x02\xf3\x08\x00\xb9\x8b\x14\x63\x41\xe2\xe4\xa1\x33\x10\xd2\x8a\x05\x68\xa7\xcf\x3f\x11\xe7\x90\x12\x5a\xbe\x96\x3e\x77\x02\x90\xf5\xf4\xb9\x9b\x3e\xcf\x95\xe6\x12\x7d\x9e\x3e\x3a\x87\xa8\x9f\x1a\x6b\x57\xdf\xa5\x48\x3f\x35\xda\x26\xfe\x03\xa5\x4d\x7d\x7f\x18\xcf\xca\xc7\x87\xfb\xfe\xed\x53\xce\x60\x1e\xfb\x32\x92\x6e\xac\x4f\xdb\x95\xef\x1f\xfb\xdd\x88\xdc\xef\x11\xa5\x4f\xe5\xc1\xf3\xe4\x7e\x61\x07\xb6\xc0\x1b\x32\x6d\x22\x3c\x21\x47\xe7\xe9\xbf\xf1\x89\x3e\x0c\x40\xbc\xd4\x57\xf7\x49\x99\x67\x6c\x8f\xf4\xd5\x05\xc4\x6c\xfc\xfc\x19\xa8\x00\x77\xc0\x79\x65\x6c\xa9\xf0\xa4\x5c\xd4\x77\x24\x83\x6b\x2e\x2d\xf6\x7a\x58\x74\x29\x41\x47\xd3\xaa\xfe\xdb\xe8\x52\x44\x89\x2e\xb5\xc7\x3e\x79\x45\xa0\xeb\xf8\x75\xed\xed\x37\x3e\x33\x6f\xc9\xb3\x7b\xda\xd0\x05\xde\x5c\x3d\xa7\xc2\x3b\xb3\xda\x52\xd8\xb9\xa2\x64\xc6\xb1\xed\x8d\x1d\x7b\x7f\x3a\xbf\xfa\xfa\x4d\x7d\x2d\xb9\xe8\x22\xef\x6c\x5b\x56\xe9\xed\x9d\x94\x8d\x36\x14\x4e\x2e\x75\xc4\x27\x37\x2e\xdb\xdf\xdb\x7b\x67\x5f\x51\xe5\xba\xa3\xf3\x7d\x33\xaa\x4c\x69\xde\x66\xa7\xbb\xa9\xc8\xa6\x49\x9d\xbc\xf2\xb6\xde\xb9\x77\x2c\x70\xa7\x14\xb6\x2c\xdc\xd6\x54\x35\xaf\xd2\x90\xe2\x6e\xba\xca\xfa\xfc\x4f\xd6\xc7\xe2\xe0\x79\x52\x48\xbf\xc9\x85\xd0\x19\xe0\x29\xe9\x19\xfd\xf7\xe8\x1a\xa7\xe7\x5f\x0e\x99\xae\x03\xf4\xfc\x0b\x8d\x9e\x7f\x41\x52\xf0\x1c\x39\x43\xed\xde\xff\x23\xdb\xdf\xf5\x63\xfc\x99\xfe\x1d\x2f\x3a\xac\xdc\x2f\x7d\xf2\xaa\xbc\xe9\x06\x3a\xbe\x5e\x6c\x81\xdf\xcb\x3e\x0d\x9f\xa0\x41\xb9\x8e\x41\xb9\x8e\x2b\xf9\xcf\x95\xfc\xeb\x4a\xfe\xb3\x0f\x80\x14\xd3\xf2\x93\x57\xe5\x47\xd4\xd7\x8c\x7f\x15\x0b\x60\xbe\x2a\x7f\x92\xf6\xb1\x9f\xd3\xe7\xe1\xab\xf2\x27\xea\x7f\x49\xd7\x67\xf5\xa8\xbf\x31\x7d\xae\x53\xea\x2f\xe4\xbf\xc7\x16\x38\xcf\xe4\x8b\xff\x6d\x65\x7c\xa3\x35\x6c\x7d\x85\xad\xef\x03\xe2\x1c\xd2\x4a\x9f\x3b\xa8\x50\x40\xfd\xdc\x48\x2b\xd8\xa1\x24\x50\x04\x84\x47\xbc\x9c\xf9\x19\x41\x7f\x68\x16\x67\x36\x09\x11\x89\x05\xb3\xf4\x69\xa9\x3a\xed\xf8\x68\x81\x07\x3b\xb2\xab\x84\x04\x1a\xdc\xc0\xea\x4e\xbc\x22\x8a\x8a\xca\xe8\x0d\x0b\x98\x87\xd7\xe6\x4e\x09\x98\xd1\x9f\x51\xc3\xb6\x07\xa7\x6f\xfb\xf9\xf6\x8a\x8a\xed\x3f\xdf\x3a\xef\xf8\xa6\x6a\xf4\x67\x64\x28\xef\x2c\x68\x5a\x50\x9a\x9c\x5c\xba\xe0\xd1\xb4\x82\x9a\xec\xd6\x3d\x8b\x4a\xbb\xee\x7c\x75\xa5\x69\xe5\xd9\x3b\xa6\x95\x2e\xbf\xab\x27\xb7\xb5\x38\xab\x6c\xfe\xf6\x4a\x53\xd5\xf6\xf9\x65\x8a\xad\x9a\xf2\xa1\x19\x57\xe5\x4b\xff\xce\xaf\xfa\x01\x00\x92\xcf\xbf\x89\x2d\xf0\x89\x2c\xa7\xaa\x19\xdd\xd4\xac\x9c\x9e\xd3\x51\x3a\x4d\xa5\xf8\xde\x02\x20\xed\xfc\x7b\x58\x80\xa6\xff\xc8\x6f\xfa\x7f\xc4\x26\x6e\x31\x85\x6f\xa6\xf0\xb7\x00\x90\x9f\x50\xf8\xcf\x59\x7d\x65\x91\xe7\x6d\xcc\xf6\x7e\x51\xf1\xf7\x3d\xa8\x89\x3c\x5b\x62\x67\x00\x59\xca\x19\x40\x55\x70\xe5\x98\xfb\x1a\xec\x0c\xe0\x0d\xf9\x0c\x40\x82\x59\x3e\xc6\xbf\x99\xe1\xc9\x54\xf0\x0c\xc0\xfa\x31\xfe\x04\x0c\xcf\xeb\xca\x59\xc2\xc0\x40\xa4\x0f\x34\xc3\x61\x53\x70\xf4\x05\x2f\x8e\xe1\x09\x0c\xc7\xbb\x0a\x8e\xbe\x2f\x22\xf7\x05\xb6\xa7\x66\x29\x7b\x6a\x55\x70\xed\x98\xfe\x30\x9a\xbc\xa1\xd0\xa4\x6a\x4f\x58\x6f\x82\x41\xf4\x7b\x4e\xc4\xf7\x0a\x80\x05\x88\xa2\x77\x02\x8b\x88\xc0\xad\xa7\xcf\x84\x3e\xbf\x15\xfc\x5a\xf5\x2c\x7f\x02\x2c\x24\x56\x92\xcf\x48\x2c\xf9\x35\xa5\xc1\xeb\x62\x13\x71\x28\xfe\x2d\x02\x0c\xcd\x89\xf0\x6e\xa1\xdf\xca\x39\x01\xb1\x80\xfa\x46\xe5\x12\x4a\xb7\x7c\x99\x6e\x6b\xc7\xd0\x4d\xda\x2b\xd7\xd1\xb3\x88\xc9\x32\xcc\xd0\x18\x3f\xd8\x42\x71\x2f\xe5\x61\xcc\xe7\x5a\x80\x07\xb5\x98\xcd\x4b\x99\xb6\xbb\xc5\x9b\xe9\x7a\x0f\xf9\x5b\x3f\xf8\x5b\x81\x95\x33\xba\x05\x25\x5e\xbb\x4a\xe8\x0c\xf9\x24\xa0\x5f\x8d\x0c\xc0\x2d\x0c\xe2\x16\x45\xcf\xfe\x0f\xee\x1a\x31\x5e\x18\xab\xf0\xc2\xaa\xe0\x6c\xd4\x28\xc3\x34\x9e\x08\xf7\xfd\xfc\xd7\xf7\x1f\x18\xff\x79\x47\xe6\x3f\x12\xcc\x4c\x08\x93\x5c\x28\xcc\x14\x00\xf2\x08\xe5\x69\x3f\xa5\xcf\x93\xc5\x2c\xf2\x34\x5d\xab\xbf\xa4\xcf\xb1\x00\xe4\xa2\x6a\x26\xb6\x20\x2d\xc5\xf1\x08\xa9\x67\xfe\x04\x78\xd4\x9f\x40\xe2\x9b\xcb\x04\x27\xb6\xa0\x44\x19\xc6\x04\x55\x6c\x46\x55\x29\xf5\x88\x3a\x72\x1d\x3d\xc7\xff\x80\xd2\xe6\xcd\xe0\xdf\x82\xdb\xe4\x91\xdd\x16\xea\x93\x68\x20\x9d\xa4\x05\x5b\xe0\x1c\x3d\x07\x78\xf3\xab\x1b\x64\x88\x1b\x14\x59\x61\x86\x68\x0c\xbf\xcb\x85\xde\xbc\xb0\x47\x86\xd9\xa3\xc0\xec\x14\x8d\xe1\x77\x47\xd0\x9b\x97\xc6\xc2\x5c\x29\x7b\x7a\xc4\xd9\xe4\x61\xda\xef\xe7\xaf\x2a\x0b\xab\x01\xc8\xf3\x74\x0f\xfc\x9d\xe2\xb3\x72\xe5\x1e\x98\x4c\x6d\xbf\x12\xbf\xff\x8c\xf1\x89\x6f\x23\xf9\xfd\x95\x38\xff\x3f\xfb\xf8\xff\x87\xf7\xe8\xfe\xdd\x7d\x1d\x7a\x86\x46\xdb\xb5\x83\xb6\x8b\x9e\x97\x91\xc9\x58\x90\xfd\x0a\xfe\x6f\xf8\x33\x4f\x09\x7e\x46\x16\x09\xdf\x61\x0b\xaa\x56\xe4\xf4\x1c\xb9\x9d\x39\x32\x8e\x63\xc1\xf3\x64\x19\xad\xf7\x7e\x50\x9e\xe9\x3e\x71\x3f\x6b\x77\x5c\xe4\x3e\xc1\xc6\xc4\xa4\x8c\x49\x5f\xf0\xf2\x18\xb9\x91\x8d\xc9\x07\xca\x98\xf4\x7d\x11\x29\xe3\x4e\x09\x9e\x27\xd7\xa9\xdc\xa1\x79\x09\x7d\xc1\xaf\x98\xcf\x2c\x1e\xf5\x99\x95\xfa\xd6\xc9\xff\x2d\x34\x2f\xa1\xef\xfb\xc8\xf3\x16\xba\x5e\x85\xbf\x2a\xeb\xb5\x3f\xf8\x29\x2a\x94\xe9\x53\x18\x76\x8e\x59\xc8\x1f\x53\x64\x81\xfe\xbf\x7d\x27\xcf\xc9\xef\x94\x39\xc9\xd6\xbd\x4e\xc1\xd3\x17\xfc\x18\x35\xc9\x6d\x69\x8a\xc0\xf3\x81\x82\xa7\xef\x8f\x91\xfd\xf9\x4f\xee\xbd\xfd\xbb\xbb\x38\x5d\x94\xee\x67\xb0\x80\x58\x6c\x90\x99\xc1\x73\xd4\x77\x49\x40\x09\xf4\x99\x96\x4b\xfb\x83\x54\x4e\xe7\x1c\xa0\x2e\x88\x7a\x9a\xc3\xcf\xa1\x2e\xb9\x0e\xfa\x0d\xff\x23\xb6\x48\xdf\x48\x75\xbc\x99\x07\xea\xa7\x39\x1c\xb2\x35\xd5\x51\x7f\x0c\x89\xee\x7f\x51\x64\xd7\x2b\xe9\xbe\x3e\x78\x9e\xd4\xd3\x76\x5e\x62\x38\x3e\x4e\x65\x7d\x95\xdb\x49\xe5\x52\xea\xab\xff\x3f\xb2\x7f\x89\x61\x8c\xaf\x3e\xdb\xa7\x0e\x2b\xfb\x54\x7f\xdc\x58\xff\x12\x26\xdf\x9a\x14\x3c\x7d\x90\x3c\x66\x1e\xfd\xbb\x3b\x3f\x0c\xc7\x24\x05\xc7\x51\x78\xfc\x9f\xe0\xf8\x46\x39\xc3\x3f\x0a\x43\x91\xbe\x21\xb2\xec\x33\x89\xb6\xe5\x43\x99\x2e\xc3\x63\xf0\xfc\x3f\xcc\xbd\x79\x58\x14\x57\xf6\x3f\x7c\xee\xd2\xcd\x2a\x8a\xbb\x62\xb4\xb1\x45\x0d\x34\xc8\xbe\x28\x31\xd0\x0b\x88\xb8\x20\x6e\xa0\xc6\xd0\x40\x2b\x28\xd0\x84\xc5\x2d\xc6\x38\xc6\xa8\xc1\x8d\x28\x2a\xe0\x8e\x88\x88\x5b\xa1\xc6\x38\x8e\xe3\xf8\x33\xc6\x38\x99\x94\x71\xb2\x18\xb3\xf9\x4d\x1c\x93\x31\x89\x93\x98\x8c\x31\x26\xd1\xee\xf7\xa9\xaa\xd3\x4d\x81\x3a\xf3\x7d\x7f\xcf\xfb\xc7\xab\x4f\x71\x6e\xdd\x3a\xf7\xf3\x39\xf7\xdc\x73\x97\xba\xdd\x55\x2d\xad\x7b\x53\xe5\x18\xf8\x59\xb1\xa5\x57\xfb\x18\x98\x03\xc0\x0b\xe4\x31\xe1\x4b\xc4\x10\xe5\x31\x81\xa9\xc6\x84\xf9\x00\x3c\x47\xae\xcf\xaf\x0a\xc6\x93\x5a\xa5\x7d\xb0\x3e\xf1\x8e\x74\x4d\xa2\x3c\x17\x0e\x97\x9f\x8f\xb8\x4c\xfd\x95\xb5\x9c\x23\x9d\x5f\xe1\xc3\xe9\x60\x69\x2d\x27\xe5\x93\x03\x72\xfe\xf3\xce\x5b\x3c\x54\x9e\xdf\x53\xe4\xf3\x10\x47\xba\x26\x44\x2e\xff\x09\x96\x57\x7c\x6d\x70\xa4\x6b\x06\xca\xe5\xbf\xc7\xf2\xbf\xe0\xdc\xbb\x5d\x35\xf7\x7a\x40\x0b\x7f\x5b\xde\x5b\xa1\xaa\xef\x1c\xac\x70\xec\x56\xcd\xbf\x92\x4e\x95\xec\x3f\xaa\xfa\x0e\x84\x32\x1e\x5e\x74\xe3\x34\xf3\x4b\x24\x0d\xc7\xd4\xb4\x76\x63\xea\x0a\x37\x4e\x33\xff\x23\x78\x28\x38\x1e\x2a\x1c\x8d\xaf\xc7\xbf\xdc\xcf\x15\xd7\x3b\xff\xad\x3c\x2f\x4d\xdb\xd6\x40\x12\xce\x2f\xda\x03\xee\x67\x18\xeb\xaf\xf5\x55\xfa\x91\x32\x2e\x38\xaf\xc9\xb6\x7c\xe6\xc6\xa8\x73\x5e\x27\x16\xc4\xb0\xe0\xf7\x01\xfe\x2a\xdb\x52\xef\xc6\xa8\x13\x99\x82\xc1\xda\xc6\xf7\x53\x1e\xf7\xdd\x18\xb5\xce\x5f\x49\x3c\x62\xc4\xab\xec\xd8\xab\xfd\x93\x1b\xa3\xf6\xc6\x2f\x8a\x86\x6a\xff\x41\x79\x4e\x3a\xca\x8d\xb3\xc5\xf9\x3d\x49\x40\x9c\x84\x76\x7e\xf9\xc9\x8d\xb3\xe5\xe3\x7b\x88\x73\xaf\x0d\x47\x6a\x27\xd7\xf3\xdf\x30\x44\x79\xfe\xdb\xdd\x5e\xfe\xee\xe7\xc0\x5b\x19\x36\x9c\xab\xdd\x5c\xcf\x9b\xc2\x60\xd8\xb6\x30\xc0\xdd\x7a\x5d\x5c\x2b\x16\xa9\x80\xfa\xf9\x39\x8f\x77\xdd\xb6\x9e\x73\xfe\x4e\x32\xd0\xd6\x8c\x76\xb6\xae\x75\xdb\x7a\xee\x6b\x3f\xc5\x6f\x7e\x2a\x0c\xcf\xc9\x6e\x0c\x69\x06\xd9\x88\x18\x1b\xd5\x18\xf2\xbd\xaf\x82\xb1\xf5\xbb\x09\x0a\xc6\x04\x35\x46\xb2\x1b\xe3\x84\xf3\x5b\x62\x42\x0c\x53\x3b\x3b\x9c\x6e\x8c\x13\x1f\x12\x05\x83\xa8\x31\x82\xdc\x18\xa2\x53\x54\xe2\x91\x76\x8c\xc7\x7f\xb8\x31\xc4\x93\x1e\x0a\x06\xde\x7f\x28\x3e\x1f\xe5\xf6\xb9\xbc\x4e\xe8\xe0\xf3\x9d\x8f\xf4\xb9\xd6\xed\xf3\x1d\x77\x9e\x69\xef\xf3\x67\xda\xfb\xbc\xc1\xb1\x57\xbe\x1f\x77\xcd\xf1\x2d\xfc\x03\x50\xed\x82\x29\xf7\x6d\x8e\xad\xf2\xfd\xad\x3c\xc7\x83\xa4\xf3\xbe\x6a\x7d\xf0\x86\xbb\x6c\x33\x7f\x9f\x98\x71\x1c\x36\xb7\x5b\x1f\xac\x74\xaf\x57\xa5\x3e\xe7\xa9\xf4\x39\xcf\xf6\x6b\xe3\x6c\x37\x4e\x03\xd4\xc8\xdf\x2d\x26\xaa\xef\x16\x2b\x38\x4f\xb8\xd7\x19\x0d\x8b\x06\x28\x28\x03\xdc\xcf\x4d\x69\xfc\x3d\x6e\xba\x30\x48\xbd\xf3\x9e\xb2\xbe\xa6\x6d\xeb\xeb\x45\x72\xbf\x3d\xe8\xc2\x20\xf5\xd7\xda\xcd\x7f\xce\x7f\xc8\x76\x7c\xe4\xc6\xa8\x73\xfe\x93\x24\x21\x46\x92\xaa\xdf\x66\x69\xb7\xba\x31\xea\x44\xae\x60\xf0\xb6\xe7\xb7\xfe\xe2\xf1\x8b\x1b\xa3\xd6\xe9\x20\x51\x88\x11\xa5\xb2\x63\xaf\xf6\xb4\x1b\xa3\xf6\xc6\xc3\xfd\x4d\xf6\x89\x67\x98\x1b\x67\x8b\xf3\xdf\xca\xda\x82\xb6\xad\x2d\x14\x9f\xb8\x9f\x03\x23\x5b\x3e\xfe\x15\x71\x7e\x6d\xc3\x91\xda\xd7\xf5\x7c\x91\xdc\x6f\x37\x92\x2c\x77\x3b\xfb\xbb\xbf\xdb\x29\xb9\xd2\xdb\xbd\x1e\xdf\xda\xf6\xbc\x91\xdc\x6f\xfb\x11\x6c\xf5\x76\xcf\x1d\x29\xfb\x50\x17\xdd\xfb\x50\xcd\x7c\xab\x1c\xe3\x44\x35\xe6\x2a\xcf\xc7\x14\xbb\x9f\x8f\x69\xe6\x3f\x39\xbf\xc7\x99\xd8\xf5\x9b\x85\xaf\x39\xf6\xca\xeb\x63\x17\x4e\x0b\xdf\xfa\x50\x0c\xbe\xeb\xd8\x2b\xdf\xeb\x0f\x96\xee\xf5\x65\x9d\x1f\x64\x1d\xaa\xd2\x99\xee\xd8\x20\xef\x03\xb9\xd6\x40\x2d\xfc\x6d\xe7\x2f\xf8\x1d\xab\x5f\x5c\x6b\x20\x47\xb5\xbc\xf7\xe2\xfa\x6e\x78\x0b\xff\xb3\xf3\x67\xd4\xf9\x59\x50\x7f\xd7\xfd\x73\x37\x4e\x33\xbf\x48\x66\xe2\x5c\x32\x53\xbd\x96\x92\xe7\x92\x09\xa8\x73\xf6\xa1\xb9\x64\xba\xf3\x96\x46\xeb\x49\xdd\xf7\x85\xf5\xce\x7f\x29\xef\x46\xa0\x6d\xef\x46\x90\x70\x1c\xf2\x5c\x32\x41\x89\xc9\xaf\xda\xcf\x25\x57\x65\x5b\x7e\x74\x63\xd4\x39\x3f\x23\xd3\x10\x63\x1a\xc6\xe4\x65\xd9\x96\x7a\x37\x46\xdd\x07\xed\xe7\x12\xa9\x3e\xc7\x3d\xfd\xdd\x18\xb5\xce\x7f\x2b\xdf\x75\xa7\x6d\x7b\x7d\x92\x1d\x07\xe5\xb9\x44\xc1\xa8\xfd\xee\xe1\xb9\x44\xf6\x8b\xe7\x28\x37\xce\x16\xe7\x4d\x32\x0e\x71\xc6\xb5\xf3\xcb\x4f\x6e\x9c\x2d\x5f\x3c\x1c\xdb\x72\x3b\xb9\xde\xf5\x20\xc7\xe4\x2a\x52\xe6\x6e\xaf\xae\xee\x77\x3e\xb4\xb2\xb6\xdf\xc1\x94\xdb\xcd\xf5\x3c\xba\x5c\x66\x29\x04\xb8\xdb\xcf\x5f\x35\x9b\xb4\xb5\xe3\x33\xce\x5b\xfc\x3d\x79\x3f\x63\x33\xde\xfb\xbf\xf8\xd0\xbb\x4f\xe6\x3a\xbf\xe3\x2d\xf2\xfe\xc0\x16\x65\x5f\xa5\xa2\xfd\x73\xf0\x0a\x46\x90\x1b\xc3\xe8\x5c\x40\x9e\x45\x8c\x67\xdb\x61\x7c\x81\x18\x92\x4e\xf1\x43\xcf\xdb\x2b\x38\x7f\x73\xe3\x34\xf3\x0b\x64\x0c\xe2\x8c\x51\xe3\xc8\x31\xb5\x05\x75\xfe\xf4\x50\x4c\x29\x38\x56\x37\x4e\x03\xac\x94\x9f\xfd\xa5\xaa\x67\x7f\x15\x9c\x7e\xee\x3a\x35\x2c\x6e\xff\x1e\x87\x67\x1c\x5b\xf9\x7b\xf2\x33\x62\x9b\x71\x3c\x3f\x29\x63\xcf\x75\x6c\xe0\x2d\xbc\xc1\xcd\xdf\xc2\xff\xf4\x50\xff\x59\xe6\xa8\xe5\xa3\xe5\xbe\x1a\x87\x3a\x7f\x74\xb6\xdb\xfd\x77\x3a\x61\x8f\x63\x2b\x8f\x93\xd7\x7a\x53\x11\xbf\x58\xd9\xb7\x95\xd7\xfe\x67\xdd\x65\x9b\xf9\xa7\x0f\xad\xdb\x95\xef\x62\x97\xb9\xbf\x47\xdd\xcc\xcf\x3d\xf4\x9c\xd3\x0a\xe7\x2d\x4d\xa3\xbc\xef\x53\xeb\x6e\xd7\x8e\xfb\x3e\x1b\x9d\xdf\x69\x26\xca\xfb\x65\x75\x4a\xbb\xce\x6f\xbf\x5f\xa6\x60\x0c\x74\x63\x48\xed\xda\x71\xaf\x4b\xc1\xf8\x1b\x62\x48\x3a\xa5\x0f\xed\xdd\x29\x38\x17\xdd\x38\x52\xbb\x76\x1c\x03\x65\x1c\xb9\x4e\x75\xa8\x73\xe6\x31\x75\x9a\xe9\xc6\x91\xda\xb5\xe3\xb3\x86\x0a\x8e\x87\xbb\x4e\x0d\x2f\xaa\xbe\x79\x2f\xcf\xfd\x1b\x34\x8d\x9a\xaf\xdc\x18\x2d\xfc\x82\xb3\xdd\x27\x52\xf2\x33\x13\x5b\x35\x13\xf9\x26\x05\x43\x6e\x9b\x22\x65\x5f\xc4\x71\x4c\xde\x17\x71\xed\xfd\xb5\xf0\xbf\xc8\xdf\x95\x25\xaa\xef\xca\x8e\x70\x74\x97\xf7\x77\x5d\xf7\x31\x2d\x9a\xb3\xce\x85\x88\xbf\xb0\xdd\xe7\x72\x17\xdd\x38\xcd\xfc\xdc\x43\xfe\x90\xef\x87\x64\x7f\x4c\x47\x9d\x8f\x1e\xf2\x87\x82\x33\xd3\x8d\xd3\x00\x2f\x3d\xe4\x0f\x05\xc7\xc3\x8d\xd3\x00\xb5\xed\x9f\x45\x90\x7f\x0b\xfd\x16\xbf\xa1\x05\x78\x02\x86\xc1\xa1\xa4\xce\x3d\x88\x17\x1b\x32\x98\x7a\x7a\x71\x42\x3c\xd9\xe8\x74\xa1\x4f\x46\x56\x52\x90\x87\xfc\x6b\xef\x4c\x23\xbf\xd5\x6b\x64\x3a\x78\x79\xb9\x9e\x32\xf6\xf4\x24\xd3\xf1\xf7\x26\x02\x94\xf7\x69\x3d\xf9\x78\x65\x42\x9e\x92\x4a\xb8\x3e\xce\x0f\x68\xa7\xdb\xa6\xa6\xd5\x2a\x3f\x07\xa1\xd6\xcd\xce\x4e\xf2\x0b\x91\x5f\x0f\xd5\xed\x49\xbd\xf2\xc8\x22\xd1\xfb\xeb\x5d\xdf\x63\x8f\xc1\x5f\x3f\x8d\x51\x5e\xb1\x15\x45\x5c\xdf\x6a\xc7\x77\xbc\xf1\x1b\xaf\x7f\xec\x1b\xb5\xfe\xd9\xdc\x1d\xf6\xa7\x12\x4b\x77\xe6\x65\xaf\x8a\xba\x73\xe7\xf6\xeb\xf7\x57\xf4\x7b\xea\x59\x63\x66\xc1\x80\x01\x85\xe3\x4d\xcf\x3e\xf5\x04\xbf\xf8\x7b\x7c\xc9\xd3\xa6\x89\x1b\xfe\x3a\xaf\xc7\xf3\xef\x6c\xc8\x78\x2a\xe1\x76\xcb\xba\x75\xf7\x77\xa4\x2d\xcd\x89\x4b\x4d\x24\x57\x46\xa4\xc4\xe7\x2e\x4b\x53\xee\xeb\x1c\xef\xcb\x7e\x53\x9e\x93\x1f\x42\xde\x26\x7d\xa8\x91\x68\x21\x39\x76\xbd\x32\x42\x53\xa3\x6b\xb8\x75\xbf\xdb\x65\xab\x63\x07\xff\x5d\x8a\x21\xf2\x89\xb2\xd7\x47\xbb\x3c\xf4\x2c\x6c\xb5\xa3\x5e\xc3\xe4\x18\xfa\x97\x7c\x1f\x78\x89\x2a\xef\x34\x58\xe6\xa8\xe7\x1f\xca\xf1\x17\xac\xe4\x93\x6f\x95\xbd\x4c\x47\x3d\xff\x54\xd6\xbf\x8d\xf9\xb7\x95\xcf\x6c\x1c\xf5\x6d\xcf\xd2\x48\xf9\xb0\x0e\xef\x53\xeb\xf9\x16\x59\xff\x27\xcc\x57\x3e\x77\x8a\x77\xd4\xf3\x9f\x55\xf7\xb5\x97\xa8\xb7\x5b\x7f\xbd\xea\xbe\xf6\x12\x69\x54\xee\xc7\x1d\xf5\xfc\x96\xac\xff\x39\xea\x13\xb7\x9d\xdf\xcb\xfa\x3f\x63\x3e\x73\xeb\xa7\xa8\xf5\xe1\x88\x5b\x3f\x55\xad\x0f\x82\xf2\xb9\x98\xa3\x5e\xfe\x5c\x4c\xfe\x5c\x53\xca\x77\x8e\x75\xe3\x0c\x93\xf5\x6f\x62\x7e\x2f\x65\x1f\xd2\x51\xaf\x19\x20\xeb\x7f\x84\xbc\xd1\x72\x7e\x1f\x47\xbd\xa6\x97\xac\xff\x2d\xe6\xcb\x9f\xf7\x39\xef\x39\x06\xf1\xd5\x9a\x37\xe8\x60\xf2\x94\xd2\x16\xb0\xd1\x59\x85\x63\x79\x15\xf6\x9f\xfe\x8e\x20\xbe\x4e\x5a\x0b\x91\x91\xa8\xf3\x92\x73\x35\xea\xac\x16\xda\x9e\x1d\x34\xc9\xf7\xf7\xa3\xe5\xfe\xd4\x43\xfe\x1e\xfb\x70\xe8\xa9\xbc\x0f\x4f\xdb\xf6\x6b\xf6\xc4\x8b\x28\xef\xe5\xd0\x68\x7a\xcb\x6f\x8f\x9b\x01\x94\xf6\xa2\x63\x7a\xf5\xea\xa5\xef\x35\x70\xa0\xbf\xbf\xbf\xff\xd0\xc0\x2e\xde\xda\x7e\x21\x24\xb0\x47\xa0\xeb\xe5\xba\x81\xae\xb7\xc6\x11\xff\x40\xd7\x5b\x19\xa9\xe0\xf8\x80\x18\x0a\x1a\x4a\x12\x12\x4a\x1a\x0a\x1e\x7c\xb5\x74\xe9\x0f\xc4\x20\x65\xc5\xa4\x85\xf5\xe8\x11\x96\x16\xc3\x06\x14\x44\xcd\x78\x71\xcc\xe8\xa5\x33\x63\xd8\x80\x96\xe7\x9e\x73\x0c\x73\xbc\xd5\x37\x38\xae\x7f\xff\x84\xd0\x7e\x40\x9d\xef\xca\x9f\x03\x09\xff\xd9\xc6\x9e\xff\xc5\x46\x7d\x8f\xa8\x8e\x36\x46\xb5\xfd\xfa\x9f\x9e\xce\xb9\xf9\xc1\xf3\x67\x97\x5b\x2c\xcb\xcf\x3e\xef\x18\x71\xee\xdc\x8f\x37\x6f\x7e\x30\xaa\xc0\xa4\xd3\x99\x0a\x46\xf1\x94\xbf\x3d\x5d\xbe\x27\x2f\xbf\x69\xbe\x91\xa7\xb4\x9c\x3d\xfb\xe0\x6d\x87\x47\xf0\xa8\x99\xd1\x91\xd9\xa6\x21\xf0\xff\x7b\xfb\x88\xf3\xb6\xf2\x99\x2d\x74\x82\x21\x49\x83\xb4\xee\xf7\xf0\x81\x46\xc3\xb3\x81\xf3\x9e\xd2\x48\xd7\xcb\xf5\x1a\xbe\x2e\x1e\xda\x00\xd5\x5b\xf8\x7a\x04\xfa\x47\xd1\xd5\xbf\xfd\x28\x08\x6c\xf3\x83\xe9\xbf\xd1\x1d\x0f\x72\xe9\x8e\x16\x5a\x70\xce\x21\xf5\x2f\xe2\xfc\x0e\x40\x8a\xef\xc7\x61\xf7\xfe\xcf\xd8\x3d\xa2\xe8\x8a\xbb\x3f\x9c\x38\xc1\xd6\x3d\xb0\xde\x25\x97\x1d\xe1\xe4\x72\x0b\x39\x7b\xce\x21\xbf\xdb\xcf\xf9\x2b\x00\xff\x40\x23\x40\x77\x88\x4d\x8a\xea\x4a\xc0\x83\x8c\xd6\x10\xa6\x25\xd4\x83\x51\x2b\x78\xc8\x73\x84\xd5\x93\x48\x35\xf0\x52\xde\x90\xdb\xbd\x9b\xbf\xeb\x65\x82\xde\xda\x27\xdc\x54\xf2\x4f\xee\xea\x5d\xaf\xcb\x0d\x5b\xf7\xe3\x89\x13\x3f\xde\xb9\xd3\xe1\x95\xb9\xbc\xb8\xa5\xae\xae\xc5\x71\x0e\x5f\x9b\x0b\xc4\x79\x1d\x80\x37\x68\x01\xba\x4b\xad\xda\xd5\x8f\x30\xd0\x92\xd1\x9c\x50\x0d\x21\x5a\x4a\xac\xc0\x18\x64\x7b\x10\x80\x5e\xd2\x1c\xd0\x3b\x5d\x4e\xca\xbf\x0d\x27\xfd\xeb\xea\x29\xb5\xaa\x47\x3b\x03\xf0\x77\xe2\x02\x97\xfd\x70\xe9\xd2\x0f\xd7\xae\xd9\xc8\x48\xa2\x73\xcc\x24\xd7\x1d\x57\xc8\xc7\x8b\x1d\x7b\xf8\x1f\x5b\xb6\x6f\x6f\x79\x70\xe6\x39\x92\xe9\x18\xf9\x60\x95\xb2\x97\xec\x28\xd1\x78\xbb\x3e\x4f\x87\x21\xca\xe7\xe9\xc4\x03\xfc\x68\x8e\xf3\x2b\xe8\xea\xfe\x5c\x5d\xee\xe4\x5f\x29\xeb\x86\x35\x8e\x12\x8d\x97\xeb\xf3\x6a\x18\x0c\x3b\xbe\x1a\x27\x97\x78\xd6\xf9\x95\x7c\x87\x28\x7f\x8e\xe1\x2e\x80\xcf\xe6\x39\x4a\x34\xcc\x35\x5e\xcb\xda\xd9\xce\xaf\x70\x0e\xff\xca\xb5\x67\x2d\xe1\xba\xc6\x6e\x37\x62\x7b\x1d\xc9\xde\x61\x32\xce\x30\xd4\x79\xf9\x21\x9d\xc5\x8e\x12\x4d\x6f\x19\xe7\x07\xd4\x29\x79\x48\x27\xc4\x51\xa2\xe9\xea\xda\x77\x94\x75\x0a\x1e\xd2\x31\xb8\xed\xf9\xfe\xd1\xf6\x00\x71\x7d\x3e\xa4\xbc\x83\xd2\x47\xfe\xdd\x50\x77\x94\xe6\x6a\x88\x2a\xfa\xbb\x4a\x8d\x86\x11\xda\x83\xe9\x99\x3e\x46\x89\x17\x12\xc5\x8e\x7f\x44\xbf\xa1\x1f\xad\x70\xac\x23\xbe\x64\x18\x19\x46\x7c\x1d\x6b\x97\x53\x5f\xf2\xe0\x67\xea\xdb\x42\x7f\x7b\x30\x8a\x9e\x7c\xa0\x05\xe2\xfa\xec\x09\xba\x40\x48\xd2\x50\x85\x4b\x62\xe8\x9d\xae\x25\x8c\xc1\x34\xaa\x84\x0a\x21\x7d\xc9\x18\xff\xee\xee\xfe\xa0\xc1\x20\x25\x51\xca\xaf\x74\x45\xb1\x37\x3e\xff\xe1\xdd\x3a\x47\xc5\x3d\x12\xed\xdf\x8d\x18\x7e\x71\x54\x36\x71\x47\x1e\xd9\xde\xc2\x6a\xee\xdf\x1b\x3d\x96\x69\xee\x17\x29\xef\xbe\xc4\xef\x31\x80\x3f\x0c\x4b\x32\x74\x22\x5c\xa3\xfc\x4e\x95\x87\x6b\xfc\xc9\xd5\x12\x69\xdc\xa1\x44\x55\x41\xff\x2e\x72\x5c\xea\x95\xaa\xa9\xea\x78\x6e\x23\x59\xe2\xf8\xa7\xe3\x0b\xc7\x17\x8e\x1b\x64\xc9\xfa\x97\x1c\x75\xa4\x0f\xe9\x4e\x7a\x93\x00\x47\xed\x4a\x5a\xf3\xa0\x88\x0e\x79\xf0\x31\xad\x69\xa1\x65\x0f\xae\xd3\xfe\x0f\xd6\x01\x71\x7d\x1f\xe0\x3f\xf3\xf7\xfe\xaf\xfc\xdd\x64\xfe\x53\x4b\x49\xa6\xe3\x17\xc7\x1d\xc7\xcf\x8e\x9f\xc9\x84\x8d\xab\x1d\x6f\x10\x2f\x07\xa1\xc4\xdb\xf1\xc6\x7c\x72\xc5\x11\x4c\x9e\x77\xbc\x4c\xae\xb4\x90\x53\x8e\x0d\xa4\xc4\x91\xe2\xda\x6f\x7b\x91\x8f\xa5\x5a\x38\x2d\xc7\xb0\x1f\x00\x9f\x2a\xc7\xcc\x50\x50\x9e\xc9\xba\xe6\x98\x8b\xdf\x47\x9d\x8b\x31\x63\xa4\x76\x5e\xcd\xc2\x21\x95\xac\x72\x56\x00\x4c\x8c\x52\x7e\x17\x90\xbc\xeb\xfc\x37\xfd\x56\x23\x00\x83\xce\xca\x2f\x4c\x2a\xbf\xf1\x95\x98\x0e\x94\xba\x7e\xc4\x6e\x90\x1e\x7f\xfb\x4d\xcf\xa2\xd4\x6f\x98\xa0\xef\x5c\xf7\xfc\xc9\xf1\x7b\x9a\xd9\x3c\x7a\xb4\xd9\x9c\x46\xfe\xc5\xde\xf8\xed\xad\xe1\x63\xc7\x0e\x4f\x48\x4f\x97\xda\x49\x9a\x67\x93\xbd\xbb\xdf\xcc\x78\xb6\x73\xe2\xcf\xe0\xe3\x29\xbf\x45\xf7\xfc\x6d\xff\x30\x49\xfe\x7d\xd9\xb1\xe9\xf7\xfd\x1e\x7c\xe8\xf1\xba\x67\x39\x00\x78\x01\xc5\xd7\xec\x12\x00\xcf\xdc\x07\x1f\x02\x78\xd5\xdf\xf7\xfb\xfd\xa8\xc7\xeb\x32\x92\xea\x1f\x07\x2e\x62\x4a\x74\x1d\x24\x9e\x8b\x10\xc5\x45\x58\xcf\x45\x18\xc2\x45\xc8\xe2\x22\xf9\x98\x8b\x64\x06\x17\x49\x22\x17\xa1\x9e\x8b\x50\xcc\x45\x92\xcb\x45\xf8\x95\x8b\xe4\x02\x17\xe1\x1b\x2e\xc2\x3a\x2e\xc2\x9f\xb9\x08\x63\xb8\x08\xcf\x72\x11\x8c\x5c\x84\xcd\x5c\x84\x45\x5c\x84\x6c\xc4\x5b\xc4\x45\xf2\x15\x17\xc9\x5f\xb9\x08\x7b\xb8\x08\x7b\xb9\x08\xfb\xb9\x08\x07\x91\x33\x9a\x8b\x50\xc3\x45\x98\xce\x45\x78\x85\x8b\xd0\xc0\x45\x68\xe6\x22\xcc\xe0\x22\x2c\xe3\x22\xbc\xc6\x45\x98\xcd\x45\xd8\x88\x65\x56\x72\x11\x5e\x42\xfd\x7d\x8a\xad\x50\xc7\x45\xb0\x71\x11\x22\xb1\x4c\x04\x17\x21\x9c\x8b\x20\xd5\x2b\x94\x8b\x90\xcf\x45\x52\xaf\xd8\x4c\xaa\xb9\x08\x9f\x29\x76\x12\xa9\xdc\x0a\x2e\xc2\x0e\x2e\xc2\x52\x2e\xc2\xf3\x68\xfb\x2a\x2e\xc2\x62\x2e\xc2\x56\x2e\xc2\xbb\x5c\x84\x4f\xb9\x08\xdb\xb8\x08\x6f\x71\x11\x26\x61\xbe\x1d\xf3\x16\x73\x91\x44\xa0\x7d\x2f\x61\x1d\x25\x9d\x41\x5c\x04\x2b\x17\x61\x04\x17\x61\x0d\x17\xc9\x08\x2e\xd2\x9e\x5c\x24\xa9\xca\x35\xf2\x4f\xf4\x5f\x29\x17\xe1\x19\x2e\x42\x1f\x2e\x92\xdb\x4a\x59\xe2\xcf\x45\x98\xc6\x45\xd2\x9d\x8b\x70\x9e\x8b\x70\x0a\xdb\xc4\x83\x8b\x64\x16\x17\xa1\x96\x8b\x24\x92\x8b\x24\x8a\x8b\x44\xb2\xf5\x28\x17\xe1\x7d\xa5\x3c\x39\xcb\x45\xb2\x9c\x8b\xc4\x07\xdb\x28\x81\x8b\xd0\x8f\x8b\x30\x90\x8b\x70\x91\x8b\x10\x84\x7e\x8b\xe3\x22\x6c\x42\x7b\x0d\x5c\x84\x58\xac\x93\xab\x5e\x3d\xb1\xbe\x4b\xb8\x08\xe9\xd8\x66\x92\xce\x25\x2e\xc2\x6e\x2e\x42\x23\xe6\x1b\xb8\x48\x0e\x63\x8c\x48\xf5\x98\x8b\x3e\xdd\x88\x7c\x4d\xe8\x6b\x7f\x2e\x92\x61\x5c\x24\xd7\xb9\x48\x6a\xb8\x48\x24\x5f\x2d\xe7\x22\x7c\xc1\x45\x72\x84\x8b\xf7\x8f\x71\xf1\x81\x9d\x8b\xf7\x97\x70\xf1\x41\x12\x17\xef\xfb\x71\xf1\xc1\x00\x2e\xd2\x68\x2e\x12\xce\x45\x3a\x8c\x8b\xb0\x0b\xe3\xd3\x8a\xfe\x5d\xae\xf8\x56\xb6\x59\x8a\xbd\x89\x8a\xdf\xa0\x12\xed\x8b\xe1\x22\xcc\x41\x7b\xa4\xd8\x95\xda\xfe\x18\x1e\x52\x9d\x25\xbb\x67\x72\x11\x36\x70\x11\x66\xa1\xfd\x52\xd9\x2a\x8c\xdf\xf1\x5c\x84\x91\xe8\x27\x49\xf6\x42\xde\x12\xf4\x67\x09\x72\x48\xf8\xaf\xa2\x7f\x3c\xd1\x0e\x29\x4e\x43\xb8\x08\xbd\xf1\xfa\x6e\xe4\x98\x85\x71\x3f\x07\xcb\xa4\x2a\xf1\x09\x52\x7b\x2d\x44\xae\xdd\x58\xcf\x3e\x18\x8f\x6b\xd0\x76\x03\xc6\xe5\x1a\x3c\x24\x3f\x4c\xc5\xb4\x14\xf7\x85\x98\x27\xc5\xfd\x7c\xc4\x9a\xc7\x45\xc8\x54\xda\xca\xf9\x29\xc6\xf8\x00\xb4\xdd\x1b\xcb\x66\x63\xcc\x0e\xc0\xfe\x54\x86\x76\x67\xa0\x7f\x66\x62\xfd\x25\x9c\xa7\xd1\xd7\x87\xb1\x7d\xa7\x60\x5f\xed\xc2\x45\x30\x71\x11\x2c\xd8\xa7\xa7\x63\xbb\x8c\xc4\x36\x79\x16\x39\xa4\x78\x3d\x21\x8d\x27\x00\x0e\x27\x80\xe3\x01\x80\xf3\x2b\x00\xe8\x0a\x70\xff\x18\xc0\x03\x5f\x8c\xcf\x6d\x18\x3b\x8d\xd8\xee\x8d\x38\x4e\x48\x7d\xe6\x09\x2e\xc2\x60\xe4\xc8\x43\x3b\x73\x91\x63\x2c\xc6\xfb\x93\x58\xff\x25\x4a\xec\x3a\xef\x71\x11\xfa\x63\x5f\x69\x40\xcc\x1d\xd8\x56\x2b\xd0\xaf\xd1\x18\x03\x93\xb0\xae\x33\xb1\xff\x4a\x98\x87\xb8\x08\x6f\x72\x11\xfc\xb1\x5d\xb3\xb0\x5e\xf3\xb0\x1d\x53\xb8\x08\x66\xf4\x07\xfc\xbf\x3c\x8c\x78\xec\xe6\x22\xb9\xc9\x45\xf2\x0e\x17\xc9\x39\x2e\x92\x37\xb9\x48\xcc\x5c\x24\x41\x4a\x5f\x97\xc7\x0a\x69\xbc\xd9\xc4\x45\x22\xf9\xe9\x24\x17\x21\x49\x19\x03\xe4\x3e\xaf\xe3\x22\xe9\xc4\x45\x32\x1c\xe3\x4b\x6a\xeb\x17\x14\x1d\x38\x8d\x31\x51\x8c\x63\xf4\x74\xf4\xe1\x13\xd8\x66\xf3\xd0\x1f\x52\xdd\x76\x72\x11\x86\x62\x1c\xfd\x88\x3e\x97\xf2\x5a\xb1\xef\xac\xc0\xb1\x09\x30\x76\x3a\x2b\xe3\xb4\x34\x0e\x4a\xf9\x52\x7f\x75\xde\xe7\x22\xf1\xe2\x22\x09\xe3\x22\xb9\x81\xfd\xe6\x75\x6c\xa3\x7d\x88\x23\xcd\x09\x45\xe8\xbf\xcb\x5c\x84\x2d\xd8\x36\x27\x30\x4e\x8e\x70\x11\xca\xb1\x4d\xd6\x72\x11\x5e\x46\xbf\x37\x63\x9d\xa4\x36\x1e\x87\xbe\x6b\xe1\x22\x91\xda\xc0\x81\x73\x4c\x2b\xce\x3f\x27\x31\x4e\x0f\xe3\x58\x7a\x92\x8b\x24\x81\x8b\x64\x26\x17\x49\x2c\x17\x49\x38\x17\x89\x9e\x8b\x24\x1a\xed\x0f\xc6\xeb\x23\xf0\xda\x05\x2e\x92\x3b\xca\xb8\x4b\xa4\x3a\x15\x70\x91\x64\xa0\xff\x0e\x2b\xf3\x03\xd9\x86\xf3\x60\x2a\xd6\x6b\x34\xfa\x6c\x2b\xce\x69\xbb\x31\x76\x96\x61\x5c\x2d\xe0\x22\x08\xca\x78\x28\xfb\xf0\x57\xfe\x9d\xf3\x73\xe5\x80\x6e\x38\x8f\xbd\x84\xf1\xf8\xb8\x63\x3a\xfa\x4a\x7d\xbc\xd6\xe1\x70\xcd\x93\x1d\x8f\x65\x1d\x8e\x50\xec\x03\x8f\x3b\x96\xe2\x38\xa4\x3e\xde\xea\x70\x6c\x55\xcd\x1f\xea\x63\x4f\x87\x63\x04\x1e\xd1\x88\xdd\x51\x4e\x47\xbe\xc7\xc9\x57\x34\x79\x72\x5c\x37\xa0\x1d\xff\x4d\xce\xc0\xbe\xfd\x38\xb9\x0c\x6d\x7f\x0d\xeb\xf1\x28\xf9\xae\x6a\x1d\x72\x11\xe7\xb6\x6d\xb8\x1e\x79\x4b\x2d\x35\x79\x28\xf7\xcb\xf2\x25\xc4\xee\x20\x9d\x2b\x55\xe3\x63\x47\x59\x87\xeb\x09\x49\x7a\xe3\xda\xe6\x1b\x5c\xdf\x6c\xfc\x5f\x48\x57\xec\x44\x62\x5f\x51\xd2\x3f\xcb\x72\x19\xb6\xc1\xff\x56\x86\x63\xbf\x0d\xc5\x36\xc3\xb5\x94\x3c\x67\x74\x94\x41\x38\x3f\xc5\x29\xf5\x70\x5e\x50\x0e\xd9\x86\x41\xff\xe1\x78\x56\x35\x27\xbb\x8e\xcb\x1d\x0e\xd7\x38\xd0\xf1\x68\xee\x70\x18\x1f\x81\xad\x3e\x6a\x1f\xc1\x75\x0c\xc7\x20\xf5\xf1\xea\x23\x6c\x50\x8f\x4f\xaf\xe1\x18\xe5\x3a\x8e\xa8\x0e\xb5\x7d\x6b\x55\xc7\xcb\x1d\x8e\x2c\xd5\x58\xf6\xa8\xe3\x49\xd5\xbc\xd0\xa2\x3a\xa2\x35\x11\xce\xb3\x9a\x08\xe7\x79\x4d\x84\xf3\x7d\xfe\xa5\xf3\x4d\x4d\x84\x73\x31\xff\x52\x9e\xdb\x8f\xa9\xd6\xd3\x0d\xd8\x36\xae\x35\xf4\xc6\x47\xac\x9d\x23\xb1\x4d\xe3\x51\x27\x14\xd7\x3f\x2b\x54\x6b\xa5\x2a\x5c\xfb\xd9\x71\xee\x9c\x84\x6b\x0c\xd7\x35\x3b\xca\x91\xaa\x79\xd5\xa6\x1a\x83\x66\x63\xec\x6f\xc4\x35\x85\xcb\xbe\x5d\xa8\xbf\x12\x8f\x65\x68\xd7\x1a\xb4\x6d\x3a\xda\x67\x44\xfb\x56\xa8\xd6\x42\xae\x35\xea\x52\x8c\x4b\x2b\x5e\xdb\x8d\x3c\xef\x62\x7f\xfc\x14\xeb\x31\x42\x15\xcb\x1d\x25\xc6\xb6\x7c\xbf\x13\xef\x55\x4f\xde\x55\xfa\xb8\x34\x07\xcb\x76\x4d\x6a\x1b\x9b\x9c\xb3\x55\x36\xbb\x6c\x99\x88\xeb\xc4\x2e\x68\xef\x44\xbc\xe6\x1a\xaf\x42\x71\x8d\xf8\x1a\xae\x0d\xfb\x60\xba\xe3\xb8\xe7\xea\x3f\xae\x71\x6b\x22\xae\x7f\x9a\x54\xe5\x5c\xd8\x2b\x91\xdb\x25\x5d\x63\x87\x6b\x2d\xe6\x92\xa9\x38\xaf\xf7\x46\x1f\x74\x94\xbb\xd1\xef\x73\x70\x6d\x10\x8f\xbe\x7c\x1e\xd7\x01\x86\xc7\x8f\xd3\xce\x6b\x5c\x74\xfe\xf5\x3f\x8c\xe3\xff\x5b\xf9\x5f\xc6\x6f\xe7\x3f\x90\xe7\x71\x7a\x1d\xc7\xe9\xc7\x8c\xab\xce\xab\x5c\x74\x5e\xfe\x0f\xe3\xae\xeb\xde\xe5\xbf\xc9\x8e\x63\xa4\xeb\x5e\xe7\xbf\x49\xf5\x18\xda\x26\xbf\x83\xe7\xe5\x43\xe9\x23\xd5\x88\xbb\x06\x63\xc9\xaa\x6a\x13\x57\x5b\xb9\xe4\x2e\x4c\x63\x6c\xb8\xd7\xb7\x12\x4e\x0f\x2e\x3a\xdf\xc5\xe3\x36\x17\x9d\xdf\xf1\x2f\x9d\xbf\xf2\x2f\x9d\xd7\xa5\x98\x81\x35\xb0\x0c\xd6\xc0\x4a\x58\x0c\x21\x60\x80\x50\x88\x81\x78\xb0\xc2\x0a\xf0\x03\xa3\xbc\x85\xf0\x6e\xbb\x0d\x83\x48\x68\x20\xfd\xc9\x29\x9a\x4f\xab\xe8\x29\xfa\x2d\xeb\xcb\x52\xd8\x2c\xb6\x94\xb5\xb0\x73\x7c\x20\x1f\xc9\xab\xb8\x43\x13\xad\xd9\xa0\xa5\xda\xc1\xda\x66\x8f\xde\x1e\xc1\x1e\x89\x1e\x53\x3c\x16\x7b\x6c\xf6\xb8\xef\xf9\xb5\x57\x4f\xaf\xc5\x5e\xb7\xbc\xc3\xbc\x67\x78\x2f\xf7\xfe\xda\xc7\xcf\x27\xde\xa7\xc4\x67\x9b\xcf\x49\x9f\xdb\xbe\x3d\x7d\x0b\x7c\x5b\x3a\x79\x77\x9a\xd4\xe9\x7c\xa7\xaf\xfd\x06\xfa\x19\xfd\x4a\xfd\x1a\xfc\xde\xf6\xbb\xdb\xb9\x6f\xe7\xc8\xce\x53\x3a\x2f\xea\x5c\xd3\xf9\x54\x97\x29\x5d\x6e\xf8\x67\xf9\x5f\xed\x1a\xdf\x75\x71\xb7\xde\xdd\x66\x75\x6b\xec\x76\xb7\x7b\x6c\xf7\xa2\xee\xd7\x7a\xc4\xf7\xa8\xe9\x49\x7b\x2e\xea\x79\xb9\x57\x66\xaf\x13\xbd\x7d\x7b\x47\xf6\x2e\xe8\x5d\xdf\xfb\x5a\x1f\xcf\x3e\x33\xfb\xcc\xeb\x73\xa9\x6f\xbf\xbe\x59\x7d\xcf\x07\x0c\x0c\x68\x0e\xb8\xd5\xaf\x6b\xbf\x4b\x4f\xc0\x13\xeb\xfa\xc7\xf6\x1f\xd7\x7f\xc9\x80\xfe\x03\x62\x07\x2c\x1d\x70\x42\x17\xa9\x3b\xa1\xbb\x1a\x18\x16\x98\x15\xb8\x22\xf0\x4c\xe0\x27\x03\x07\x0f\x8c\x1e\x98\x31\xb0\x68\xe0\x2a\xbd\x9f\x7e\x8a\x7e\xb1\xfe\xde\x20\xe3\xa0\xab\x41\x4b\x82\x1c\x83\x47\x0d\x7e\x67\x48\xe2\x90\xa5\x43\x9a\x86\xdc\x1d\x5a\x36\x74\xd7\xd0\x4b\x4f\xf6\x7e\x32\xe7\xc9\x6b\xc1\xeb\x42\xba\x84\x18\x43\x76\x18\xa8\x61\x9e\xe1\x62\xe8\xd0\xd0\xfc\xd0\xb7\x43\x6f\x85\xf9\x85\x25\x85\xe5\x84\xbd\x33\x8c\x0e\x9b\x36\x6c\xf1\xb0\x77\x86\xdd\x0e\xef\x1e\xde\x3f\x3c\x2b\x7c\x51\xf8\xb6\xf0\x13\x11\xdd\x23\xfa\x45\x0c\x8f\xc8\x89\x38\x13\x71\x2d\xd2\x2f\x32\x2c\x32\x3f\xf2\x78\xe4\x4f\x51\xa3\xa2\xbd\xa3\x8f\x47\x5f\x8b\xc9\x8a\xb9\x18\xdb\x3f\x76\x51\xec\x8d\xb8\xf0\xb8\xe3\xf1\x83\xe3\xd7\xc4\xdf\x4d\xc8\x4c\x38\x3e\x9c\x0f\x9f\x34\xfc\xc4\x08\x18\x31\x67\xc4\x67\x89\xe1\x89\x3b\x9e\xd2\x3e\x35\xeb\xa9\xf3\x23\x7b\x8e\x9c\x34\x72\xc9\xc8\x0b\x4f\x7b\x3e\x3d\xfa\xe9\xf3\x4f\x7f\x9b\x34\x30\x69\x56\x52\x75\xd2\xe5\xa4\xfb\xc9\xe1\xc9\x0b\x92\xcf\x19\xa9\x31\xdf\x78\xc5\xd4\xcf\xb4\xc1\x74\xd3\xac\x35\x8f\x31\x57\x5b\xb8\x25\xd8\x32\xcd\x52\x6d\x39\x6d\xb9\x91\xc2\x53\x06\xa7\x2c\x4f\x39\x9c\x72\x33\xb5\x7b\xea\xa8\xd4\x75\xa9\x57\x47\xf5\x1d\xb5\x24\xcd\x3b\x6d\x4a\xda\xf9\xd1\xc1\xa3\x1b\xd2\x3d\xd3\xa7\xa4\x2f\x4f\x7f\x6f\x8c\x6e\x4c\xc5\xd8\x81\x63\xdf\x1e\x07\xe3\xe2\xc7\x2d\x1e\x77\x6e\x7c\xf7\xf1\xb3\xc6\x9f\xcd\xd0\x65\x1c\x9c\x10\x3d\xa1\x76\xc2\xdd\xcc\xc4\xcc\xea\x89\x5d\x27\x1e\x9d\x34\x65\x72\xd7\xc9\x67\xa6\x54\x4f\xf5\x9b\xba\x6e\xea\xb7\x59\xa3\xb2\x56\x65\x5d\xcf\xee\x97\x1d\x9b\x9d\x31\xed\xea\xf4\x59\xd3\x4f\xce\x08\x9f\x31\x69\xc6\xa2\x19\xa7\x67\x38\x9e\x31\x3e\xb3\xfc\x99\x53\xcf\xdc\x9e\xa9\x9b\x99\x31\x73\xf3\xcc\xcf\x9e\x5d\x90\xd3\x33\x67\x74\xce\xe2\x9c\x1b\xd6\x19\xd6\x6d\xb9\x3d\x73\xab\x73\xaf\xe4\xf5\xcd\xcb\xcf\x3b\x9c\xdf\x3d\xbf\x20\xff\x83\xfc\x9b\x36\x6a\x1b\x65\x3b\x3f\xcb\x38\xeb\xf0\xec\xde\xb3\x57\xcd\xbe\x57\x50\x52\x70\xb7\x30\xbf\xf0\xed\x39\xc1\x73\xaa\xe6\x7c\x30\xb7\xff\xdc\xea\xc7\xfe\xdf\x36\xb7\x79\xee\xa9\xb9\x9f\x14\xd1\xa2\x81\x45\x61\x45\x89\x45\xa3\x8b\x16\x17\x35\x15\xdd\x28\xee\x5e\x3c\xb0\x38\xb2\x44\x5b\x12\x5c\x92\x59\x92\x5f\x72\xd0\xee\x6d\x5f\x50\x1a\x59\xba\xe3\xb9\x81\xcf\x15\x3d\x77\xfa\xb9\x9b\x65\xc1\x65\xc6\xb2\x99\x65\xf3\xca\xd6\x95\x7d\x5b\x0e\xe5\x03\xcb\x13\xcb\xb3\xca\xdf\xab\xf0\xae\x28\xab\xa8\xaf\x38\x5e\x71\xa9\xe2\x4e\xa5\x5f\xa5\x5f\xe5\x9d\x79\xe3\xe6\x6d\x98\x77\x75\x7e\xcf\xf9\xe6\xf9\xb9\xf3\x97\xce\x3f\x3c\xff\xed\xf9\xf7\x16\x4c\x5b\x70\x74\xc1\x9d\x85\x03\x17\x8e\x5e\xd8\xbc\xf0\xf2\xc2\xdf\x16\x85\x2f\x9a\xb9\x68\xd1\xa2\x96\x45\x97\x9f\xef\xff\xfc\xa2\xe7\xcf\x2d\x0e\x5f\x9c\xb1\x78\xc5\xe2\x83\x8b\x3f\x79\xc1\xfb\x85\xf0\x17\xa6\xbd\xb0\xed\x05\xe1\x85\x9b\x4b\x8c\x4b\xf2\x97\x34\x2d\xb9\xfb\xa2\xdf\x8b\xcb\x5e\xbc\xbc\xd4\x73\x69\xbf\xa5\xa3\x97\x6e\x58\x7a\xfe\x0f\xf4\x0f\xa3\xff\x90\xbb\x8c\x2e\x4b\x59\x96\xb5\xac\x66\xd9\xa9\x97\xf8\x4b\xfd\x5f\x1a\xf3\xd2\xb2\xe5\x5d\x97\xc7\x2f\x9f\xb9\x7c\xc5\xf2\x75\xcb\x37\x2f\xbf\xfa\xf2\xa0\x97\x0b\x5e\xae\x7d\xf9\xca\x0a\xbe\xa2\xff\x8a\x9a\x15\x77\x56\x8e\x5c\x79\x7c\xe5\xe9\x95\xe7\x57\xbe\xb3\xaa\xff\xaa\xd2\x55\x1f\xbc\xa2\x7d\x65\xc9\x2b\xd5\xaf\x34\xbc\x72\xfc\x95\x0b\xaf\x5c\x7d\xe5\xdb\x57\xee\x57\xf9\x56\xf5\xaf\x0a\xaf\x32\x56\x4d\xaa\x9a\x55\xb5\xa0\xaa\xaa\x6a\x5b\xd5\xe1\xaa\xb3\x55\xef\x55\xdd\xa8\xba\xbb\xda\x73\x75\xdf\xd5\x86\xd5\x23\x57\x67\xac\xce\x5d\x5d\xb1\x7a\xf9\xea\x9a\xd5\x8d\xab\x8f\xaf\xbe\xb0\xfa\xca\xea\xaf\x57\xdf\x5b\xe3\xb9\xa6\xf7\x9a\xa1\x6b\xa2\xd7\xa4\xac\xc9\x5a\x53\xb0\x66\xc1\x9a\xaa\x35\xf5\x6b\x0e\xae\x39\xb3\xe6\xd2\x9a\x2f\xd6\xdc\x5e\x4b\xd7\x76\x5d\x3b\x68\x6d\xf4\xda\x94\xb5\x53\xd6\x16\xac\x5d\xb0\xf6\xbd\x75\x05\xeb\x16\xad\x5b\xb3\x6e\xc7\x3a\x61\xdd\xb9\x75\xef\xad\xbb\xb1\xee\xce\x7a\xed\xfa\xae\xeb\x07\xad\x8f\x5e\x9f\xb2\x7e\xca\xfa\x82\xf5\x0b\xd6\x5f\xaa\x1e\x57\x9d\x53\x5d\x5a\xbd\xac\x7a\x43\x75\x63\xf5\xf1\xea\x0b\xd5\x57\xaa\x6f\x56\xdf\x7b\xd5\xfb\xd5\x7e\xaf\x86\xbd\x9a\xf4\x6a\xe6\xab\xf9\xaf\xce\x7b\x75\xc5\xab\x57\x37\x8c\xdc\x90\xb1\x21\x77\x43\xc5\x86\x15\x1b\x6a\x37\xb4\x6c\x38\xbd\xe1\xd2\x86\x2f\x36\xfc\xb4\x91\x6f\xec\xb9\x71\xe8\xc6\xe1\x1b\x47\x6f\x9c\xb1\xb1\x64\xe3\xd2\x8d\xd5\x1b\x1b\x36\x1e\xdf\x78\x7e\xe3\x95\x8d\x5f\x6f\xbc\x57\xe3\x5d\xd3\xaf\xc6\x50\x33\xb2\x26\xa3\x26\xb7\xa6\xac\x66\x79\x4d\x4d\x4d\x53\xcd\x89\x9a\x8b\x35\x9f\xd4\xdc\xaa\x71\x6c\xea\xb2\x49\xb7\x29\x72\x93\x79\xd3\xa4\x4d\xf9\x9b\x4a\x37\x2d\xdb\x54\xb3\xa9\x69\xd3\xc9\x4d\x6f\x6f\xfa\x6c\xd3\xf7\x9b\x1c\x9b\xbb\x6c\xd6\x6d\x8e\xdc\x6c\xde\x7c\x72\x4b\xf0\x96\xc4\x2d\x63\xb6\xcc\xdc\x52\xba\x65\xd9\x96\x9a\x2d\x4d\x5b\x4e\x6e\xb9\xb8\xe5\x93\x2d\xdf\x6e\xb9\x5f\xeb\x57\xab\xab\x0d\xaf\x35\xd6\x4e\xaa\x9d\x55\xbb\xa0\x76\x55\x6d\x6d\x6d\x4b\xed\xa9\xda\x77\x6a\x3f\xab\xfd\xbe\x0e\xea\xba\xd4\xe9\xea\xc2\xeb\x92\xea\x32\xeb\xf2\xeb\x2a\xea\x56\xd4\xd5\xd6\xb5\xd4\x9d\xae\xbb\x54\x77\xad\xee\xfb\x7a\xa8\xef\x5a\x3f\xb0\x3e\xb2\xde\x58\x9f\x59\x7f\xb0\xfe\x74\xfd\x3b\xf5\x9f\xd5\xdf\xaa\xbf\xbf\xd5\x77\x6b\xbf\xad\x86\xad\xcb\xb6\x6e\xd8\xda\xb8\xf5\xf8\xd6\xf3\x5b\xaf\x6c\xbd\xb9\xf5\xb7\x6d\xde\xdb\xfa\x6e\x2b\xda\xb6\x78\xdb\xba\x6d\xbb\xb6\x1d\xdd\x76\x7e\xdb\x95\x6d\x37\xb7\xfd\xb6\xdd\x77\x7b\xbf\xed\x86\xed\x89\xdb\xc7\x6d\x9f\xb9\xbd\x74\xfb\xd2\xed\xd5\xdb\x1b\xb6\x1f\xdf\x7e\x7e\xfb\x95\xed\x5f\x6f\xbf\xb7\xc3\x73\x47\xef\x1d\xc1\x3b\x12\x77\x6c\xd8\xd1\xb8\xe3\xf8\x8e\xf3\x3b\xae\xec\xf8\x7a\xc7\xdd\x9d\x74\x67\xf7\x9d\xba\x9d\x91\x3b\x47\xee\x1c\xbd\x73\xca\xce\x82\x9d\xa5\x3b\x17\xec\x5c\xba\x73\xd5\xce\xea\x9d\xb5\x3b\x77\xed\x6c\xde\x29\xec\x3c\xb9\xf3\xec\xce\x8b\x3b\x2f\xef\xbc\xba\xf3\xdb\x9d\xf7\x77\xf9\xee\xea\xb7\xcb\xb0\x6b\xe4\xae\x8c\x5d\x59\xbb\x72\x76\x15\xec\x2a\xdd\xb5\x60\xd7\xaa\x5d\xb5\xbb\x9a\x77\x9d\xda\xf5\xce\xae\x6b\xbb\x6e\xef\xce\xd9\x5d\xb0\x7b\xd1\xee\x65\xbb\xab\x76\x6f\xdb\x7d\x78\xf7\x89\xdd\x67\x76\x5f\xd8\x7d\x69\xf7\x17\xbb\x6f\xee\xbe\xbd\xfb\x5e\x03\x34\x78\x36\x74\x69\xe8\xdd\xa0\x6b\x18\xda\x10\xde\x10\xdf\x30\xaa\x21\xa3\x21\xab\xe1\x78\xc3\xe9\x86\xf3\x0d\x1f\x34\xdc\x68\xb8\xd5\x70\x67\x0f\xdf\xe3\xbb\xa7\xdf\x1e\xc3\x9e\x91\x7b\x32\xf6\xe4\xee\x29\xdb\xb3\x7c\x4f\xcd\x9e\xa6\x3d\x27\xf6\x9c\xd9\x73\x61\xcf\x7b\x7b\x6e\xec\xb9\xb5\xc7\xd1\xd8\xa5\x51\xd7\x18\xde\x68\x6c\x9c\xd4\x38\xab\x71\x41\x63\x55\xe3\x86\xc6\xfa\xc6\x83\x8d\x67\x1a\x2f\x37\x5e\x6f\xbc\xb3\x57\xbb\xd7\x6f\x6f\xcf\xbd\xfd\xf7\x86\xef\x4d\xda\x3b\x6a\xef\xb4\xbd\x73\xf6\x2e\xde\xbb\x66\x6f\xcd\xde\x6d\x7b\x0f\xef\x3d\xb3\xf7\xf2\xde\xab\x7b\x6f\xee\xfd\xad\xc9\xbb\xa9\x5f\x93\xa1\x69\x64\x53\x46\x53\x6e\x53\x59\xd3\xf2\xa6\x9a\xa6\x6d\x4d\x8d\x4d\x27\x9a\x2e\x34\x5d\x6d\xba\xd9\xf4\xdb\x3e\xdf\x7d\xfd\xf7\x85\xed\x4b\xda\x97\xb9\x2f\x7f\x5f\xc5\xbe\x15\xfb\x36\xef\x6b\xd8\x77\x78\xdf\x89\x7d\xe7\xf6\x5d\xda\xf7\xc5\xbe\x9f\x9a\x79\x73\xcf\xe6\xa1\xcd\xf1\xcd\xa3\x9b\xa7\x35\x17\x35\x2f\x69\xae\x6e\x6e\x68\x3e\xdd\xfc\x41\xf3\xd7\xcd\x77\xf7\x7b\xee\xef\xbd\x3f\x78\xff\xf0\xfd\x63\xf6\xcf\xd8\x3f\x6f\xff\xba\xfd\xbb\xf6\x1f\xdc\x7f\x66\xff\xe5\xfd\xd7\xf7\xff\xd4\xc2\x5b\xba\xb7\x0c\x6e\x89\x6d\x19\xd5\x32\xad\xa5\xa8\x65\x49\x4b\x6d\xcb\xc1\x96\x33\x2d\x97\x5b\xae\xb7\xdc\x39\xa0\x3d\xd0\xfb\x40\xf0\x81\xc4\x03\xe3\x0e\xcc\x3c\x50\x7a\x60\xe9\x81\x0d\x07\x1a\x0f\x9c\x38\x70\xf1\xc0\xf5\x03\xf7\x0f\xfa\x1d\xec\x7f\x30\xfc\xa0\xf1\xe0\xa4\x83\xb3\x0e\x2e\x38\xb8\xea\x60\xcd\xc1\xa6\x83\x27\x0f\x9e\x3f\x78\xe5\xe0\xcd\x83\xbf\x1d\xf2\x3e\xd4\xef\x50\xd8\xa1\xa4\x43\x99\x87\xf2\x0f\x55\x1c\x5a\x71\x68\xc3\xa1\xc6\x43\x27\x0e\x5d\x3c\xf4\xc9\xa1\x5b\x87\x1c\x87\xeb\x0f\x1f\x3f\x7c\xe1\xf0\x7b\x87\xaf\x1d\xfe\xf6\xf0\xdd\x23\xf4\x88\xdf\x91\xbe\x47\x06\x1f\x89\x3c\x32\xf2\xc8\xe8\x23\x53\x8e\xe4\x1e\x29\x39\xb2\xe8\xc8\x9a\x23\x3b\x8e\x34\x1d\xb9\x27\x8c\x12\x6a\x85\x0b\xc2\x9d\xd6\xe8\xd6\x79\xad\xd5\xad\x2d\xad\xa7\x5b\x2f\xb5\x7e\xd1\xfa\xd3\x51\x7e\xb4\xe7\xd1\x31\x47\x97\x1f\x3d\x7f\x8c\x1f\xf3\x3d\xd6\xff\x58\xb0\xfc\x3f\x0b\x08\x00\xf7\x07\x01\x7a\x82\x1d\x34\x40\x21\x03\x72\x60\x3e\x00\x7c\xee\xb3\x05\x98\xfc\xb9\x43\x67\x38\x25\xa5\xb8\x17\x00\xcc\x04\xc0\x34\x81\x41\x30\x13\xd3\x14\xfc\x60\x19\xa6\x19\x84\x41\x35\xa6\x39\x0c\x82\x33\x98\xd6\xc0\x24\xb8\x8e\x69\x2d\x0c\x24\xb1\x98\xf6\x80\xd1\x24\x0b\xd3\x5e\xe0\x4b\x1a\x30\xed\x03\xdd\xc9\x61\x4c\xfb\xc2\x60\x72\x0e\xd3\x9d\x60\x06\xb9\x89\x69\x3f\x98\x44\xcd\x98\xee\x02\x3d\x69\x2d\xa6\xfd\xc1\x97\x1e\x06\x13\xd8\xa1\x14\x16\x42\x19\x14\xc2\x6c\x28\x80\x0a\xd0\x41\x24\x84\x43\x04\xc4\x80\x0e\x52\xc1\x0e\x76\x98\x0d\x45\x60\x03\x1d\xa4\x41\x09\xe4\x41\x18\xe8\x20\x19\x8a\xa0\x08\x74\x90\xe9\x2e\x55\x2e\x9f\xd9\xa0\x1c\x6c\x50\x06\xf3\xc0\x06\xf9\x10\x06\x99\x60\x87\x5c\xb0\x43\x05\xd8\x41\x07\x63\xc1\x0e\x25\x98\x92\xae\x17\x42\x25\x14\xcb\xa5\x66\x43\x25\x14\x81\x15\xca\xda\x31\x0e\x7f\x4c\xf9\xe1\x6e\x0b\xff\x37\xf8\x53\x64\x8b\xca\xa1\x50\xbe\x2a\xd5\x2e\x0c\xc2\xe5\xff\x09\x10\x0f\x31\x30\x42\x55\x63\x29\x5d\x01\x15\x30\x0b\xac\x50\x29\xa3\x16\x40\x21\x94\xc8\x5e\x19\x0a\xf3\x20\x02\xc2\x20\x0a\x9e\x6c\xc7\xeb\x62\x0d\xed\x50\xab\x47\x5b\x56\x28\x7b\xca\x2a\xf3\x94\x81\x15\xf2\xc1\x06\xc5\x72\xcd\xe7\x82\x0e\xec\x30\xab\x83\xd7\xc3\xda\x9d\xb5\xbf\x92\x07\x76\x28\x06\x13\x14\xc8\xad\x57\x0e\x15\x50\x08\x56\xb9\x8e\x0a\xbb\x54\x6f\xa9\x65\x24\xee\x31\x50\x08\x79\x60\x83\x12\xb9\x85\xf2\x41\x07\x95\x50\x22\xb3\x97\xc9\xb6\x14\xc8\x2d\x9c\x0c\xa5\x60\x85\x3c\x3c\x6b\x5f\xc6\x00\xba\xc7\xf8\xb2\x40\xf6\x59\x29\x0c\x87\x61\x30\x0c\xe6\xcb\xff\xc3\xc0\xaa\xc2\x0a\x03\x3b\x94\xc1\x6c\x18\x06\x45\xed\x30\xcb\x61\x18\x8c\x81\x34\x30\x81\x05\xc6\xc1\x44\xb0\x40\x28\x62\x3e\xda\x7f\x6a\x0f\xe3\xe7\x80\xce\x39\x90\x0f\x8f\xf8\xc7\xfd\x41\xfe\x2d\x51\x60\xa0\x01\x2d\x78\x80\x27\x78\x81\x37\xf8\x80\x2f\x74\x02\x3f\xe8\x0c\x5d\xc0\x1f\xba\x42\x37\xe8\x0e\x3d\xa0\x27\xf4\x82\xde\xd0\x07\xfa\x42\x00\xf4\x83\x27\xa0\x3f\x0c\x00\x1d\x04\xc2\x40\xd0\xc3\x20\x08\x82\xc1\x30\x04\x86\xc2\x93\x10\x8c\xf7\x11\x61\x30\x4c\x8e\x98\x48\x88\x82\x68\x88\x81\x58\x88\x83\x78\x48\x80\xe1\x30\x02\x12\xe1\x29\x18\x09\x4f\x43\x12\x24\x83\x11\x4c\x60\x06\x0b\xa4\x40\x2a\x8c\x82\x34\x18\x0d\xe9\x30\x06\xc6\xc2\x38\x18\x0f\x19\x30\x01\x32\x61\x22\x4c\x82\xc9\x30\x05\xa6\x42\x16\x64\xc3\x34\x98\x0e\x33\xe0\x19\x98\x09\xcf\x42\x0e\x58\x61\x0f\x2c\x87\x97\xe1\xcf\xb0\x19\x6e\xc2\x0a\x58\x07\xab\x61\x3b\xec\x87\x46\xa8\x22\x0c\x5e\x82\x8d\xf0\x13\xfc\x1b\xd6\xc2\x16\x58\x45\x38\x5c\x83\x1f\x61\x07\xb4\xc0\xcf\x70\x07\xee\x42\x03\x54\xc3\x6d\x78\x15\xfe\x05\xaf\xc0\x2e\xf8\x16\x4e\xc2\x6e\xf8\x9e\x68\xe0\x23\xa2\x25\x1e\xc4\x13\xae\xc3\x3f\x88\x17\xf1\x06\x01\x5a\x89\x0f\x34\x11\x5f\xd2\x89\xf8\x91\xce\xa4\x0b\xf1\x87\xab\xf0\x25\x7c\x0a\x9f\xc1\xe7\xf0\x05\x7c\x0c\xff\x43\xba\x92\x6e\xa4\x3b\xe9\x41\x7a\x92\x5e\xa4\x37\xe9\x43\xfa\x92\x00\xd2\x8f\x3c\x41\xfa\x93\x01\x44\x47\x02\xc9\x40\xa2\x27\x83\x60\x27\x09\x22\x83\xc9\x10\x32\x94\x3c\x49\x82\x49\x08\x31\x90\x50\x12\x46\x86\xc1\x56\x12\x4e\x22\x48\x24\x89\x22\xd1\x24\x86\xc4\x92\x38\x12\x4f\x12\xc8\x70\x32\x82\x24\x92\xa7\xc8\x48\xf2\x34\x49\x22\xc9\xc4\x48\x4c\xc4\x4c\x2c\x24\x85\xa4\x92\x51\x24\x8d\x8c\x26\xe9\x64\x0c\x19\x4b\xc6\x91\xf1\x24\x83\x4c\x20\x99\x64\x22\x99\x44\x26\x93\x29\x64\x2a\xc9\x22\xd9\x64\x1a\x99\x4e\x66\x90\x67\xc8\x4c\xf2\x2c\xc9\x21\x56\x92\x4b\xf2\x48\x3e\xb1\x91\x59\x64\x36\x29\x20\x85\x64\x0e\x99\x4b\x8a\x48\x31\x29\x21\x76\x52\x4a\x9e\x23\x65\xa4\x9c\x54\x90\x4a\x32\x8f\xcc\x27\x0b\xc8\x42\xb2\x88\x3c\x4f\x16\x93\x17\xc8\x12\xf2\x22\x59\x4a\xfe\x40\x96\x91\x97\xc8\x72\xf2\x32\x59\x41\x56\x92\x55\xe4\x15\x52\x45\x56\x93\x35\x64\x2d\x59\x47\xd6\x93\x6a\xf2\x2a\xd9\x40\x36\x92\x1a\xb2\x89\x6c\x26\x5b\x48\x2d\xa9\x23\xf5\x64\x2b\xd9\x46\xb6\x93\x1d\x64\x27\xd9\x45\x76\x93\x06\xb2\x87\x34\x92\xbd\xa4\x89\xec\x23\xcd\x64\x3f\x69\x21\x07\xc8\x41\x72\x88\x1c\x26\x47\x88\x40\x5a\xc9\x51\x72\x8c\x1c\x27\xaf\x91\x13\xe4\x75\x72\x92\xfc\x91\x9c\x22\x7f\x22\xa7\xc9\x9f\xc9\x19\xf2\x17\x72\x96\xfc\x1f\x72\x8e\xbc\x41\xce\x93\x37\xc9\x05\xf2\x16\xb9\x48\xfe\x4a\xde\x26\x7f\x23\xef\x10\x91\x5c\x22\xef\xc2\x51\x38\x46\x2e\xc3\x09\x78\x1d\xce\x93\xbf\xc3\x71\x78\x0d\xde\x84\x65\x70\x0e\x56\x92\xf7\xe0\x00\x5c\x80\x33\xf0\x17\x38\x4d\xde\x27\x1f\x90\x0f\xc9\x15\xf2\x11\xb9\x4a\x3e\x26\x9f\xc0\x1a\xf2\x29\xf9\x8c\x7c\x4e\xae\x91\xff\x81\x5a\xa8\x87\x3a\xf8\x01\xf6\xc2\x06\xd8\x06\xfb\x60\x3d\xd4\xc0\x26\xf8\x23\xf9\x82\x7c\x49\xae\x93\x7f\x90\x1b\xe4\x2b\xf2\x35\xf9\x27\xb9\x49\xbe\x21\xdf\x92\xef\xc8\x2d\xf2\x2f\xf2\x3d\xf9\x81\xdc\x26\x3f\x92\x9f\xc8\xbf\xc9\x1d\xf2\x33\xb9\x4b\x7e\x21\xf7\xc8\xaf\xe4\x37\xf2\x3b\xb9\x4f\x1e\x10\x07\x71\x52\xa0\x84\x52\xca\x28\xa7\x1a\xaa\xa5\x1e\xd4\x93\x7a\x51\x6f\xea\x43\x7d\x69\x27\xea\x47\x3b\xd3\x2e\xd4\x9f\x76\xa5\xdd\x68\x77\xda\x83\xf6\xa4\xbd\x68\x6f\xda\x87\xf6\xa5\x01\xb4\x1f\x7d\x82\xf6\xa7\x03\xa8\x8e\x06\xd2\x81\x54\x4f\x07\xd1\x20\x3a\x98\x0e\xa1\x43\xe9\x93\x34\x98\x86\x50\x03\x0d\xa5\x61\x74\x18\x0d\xa7\x11\x70\x90\x46\xd2\x28\xf8\x86\x46\xd3\x18\x1a\x0b\x87\xe0\xaf\xf0\x16\x1c\x86\x5c\xc8\xa3\x71\x90\x0f\x7f\x03\x1b\x5c\x84\xb7\xe1\x5d\x78\x07\x44\xb8\x04\xb3\xe0\x7d\xb8\x0c\x7f\x87\x23\x30\x1b\xae\xc0\x07\xf0\x21\x14\xc0\x77\x30\x07\x0a\x61\x2e\x14\x43\x11\x94\xd0\x78\xb0\xc3\x73\x50\x2a\x8f\x63\xd2\x18\x3f\x0f\xe6\xc3\x02\x58\x04\x0b\xe1\x79\x78\x01\x16\xc3\x8b\xb0\x04\x96\xc2\x1f\xe0\x16\x9c\xa2\x09\x74\x38\x1d\x41\x13\xe9\x53\x74\x24\x3c\x00\x07\x7d\x9a\x26\xd1\x64\x6a\x04\x27\x01\x6a\xa2\x66\x6a\xa1\x29\x34\x95\x8e\xa2\x69\x74\x34\x4d\xa7\x63\xe8\x58\x3a\x8e\x8e\xa7\x19\x70\x0f\x7e\xa5\x13\x68\x26\x9d\x48\x27\xd1\xc9\x74\x0a\x9d\x4a\xb3\x68\x36\x9d\x46\xa7\xd3\x19\xf4\x19\x3a\x93\x3e\x4b\x73\xa8\x95\xe6\xd2\x3c\x9a\x4f\x6d\x74\x16\x9d\x4d\x0b\x68\x21\x9d\x43\xe7\xd2\x22\x5a\x4c\x4b\xa8\x9d\x96\xd2\xe7\x68\x19\x2d\xa7\x15\xb4\x92\xce\xa3\xf3\xe9\x02\xba\x90\x2e\xa2\xcf\xd3\xc5\xf4\x05\xba\x84\xbe\x48\x97\xd2\x3f\xd0\x65\xf0\x3b\xdc\xa7\x2f\xd1\xe5\x70\x03\xbe\xa2\x2f\xd3\x15\x74\x25\x5d\x45\x5f\xa1\x55\x74\x35\x5d\x43\xd7\xd2\x75\x74\x3d\xad\xa6\xaf\xd2\x0d\x74\x23\xad\xa1\x9b\xe8\x66\xba\x85\xd6\xd2\x3a\x5a\x4f\xb7\xc2\x9f\xe8\x36\xba\x9d\xee\xa0\x3b\xe1\x6b\xf8\x27\xdd\x45\x77\xd3\x06\xba\x87\x36\xd2\xbd\xb4\x89\xee\xa3\xcd\x74\x3f\x6d\xa1\x07\xe8\x41\x7a\x88\x1e\xa6\x47\xa8\x40\x5b\xe9\x51\x7a\x8c\x1e\xa7\xaf\xd1\x13\xf4\x75\x7a\x92\xfe\x91\x9e\xa2\x7f\xa2\xa7\xe9\x9f\xe9\x19\xfa\x17\x7a\x96\xfe\x1f\x7a\x8e\xbe\x41\xcf\xd3\x37\xe9\x05\xfa\x16\xbd\x48\xff\x4a\xdf\xa6\x7f\xa3\xef\x50\x91\x5e\xa2\xef\xd2\xcb\xf4\xef\xf4\x3d\xfa\x3e\xfd\x80\x7e\x48\xaf\xd0\x8f\xe8\x55\xfa\x31\xfd\x84\x7e\x4a\x3f\xa3\x9f\xd3\x6b\xf4\x7f\xe8\x17\xf4\x4b\x7a\x9d\xfe\x83\xde\xa0\x5f\xd1\xaf\xe9\x3f\xe9\x4d\xfa\x0d\xfd\x96\x7e\x47\x6f\xd1\x7f\xd1\xef\xe9\x0f\xf4\x36\xfd\x91\xfe\x44\xff\x4d\xef\xd0\x9f\xe9\x5d\xfa\x0b\xbd\x47\x7f\xa5\xbf\xd1\xdf\xe9\x7d\xfa\x80\x3a\xa8\x93\x01\x23\x8c\x32\xc6\x38\xd3\x30\x2d\xf3\x60\x9e\xcc\x8b\x79\x33\x1f\xe6\xcb\x3a\x31\x3f\xd6\x99\x75\x61\xfe\xac\x2b\xeb\xc6\xba\xb3\x1e\xac\x27\xeb\xc5\x7a\xb3\x3e\xac\x2f\x0b\x60\xfd\xd8\x13\xac\x3f\x1b\xc0\x74\x2c\x90\x0d\x64\x7a\x36\x88\x05\xb1\xc1\x6c\x08\x1b\xca\x9e\x64\xc1\x2c\x84\x19\x58\x28\x0b\x63\xc3\x58\x38\x8b\x60\x91\x2c\x8a\x45\xb3\x18\x16\xcb\xe2\x58\x3c\x4b\x60\xc3\xd9\x08\x96\xc8\x9e\x62\x23\xd9\xd3\x2c\x89\x25\x33\x23\x33\x31\x33\xb3\xb0\x14\x96\xca\x46\xb1\x34\x36\x9a\xa5\xb3\x31\x6c\x2c\x1b\xc7\xc6\xb3\x0c\x36\x81\x65\xb2\x89\x6c\x12\x9b\xcc\xa6\xb0\xa9\x2c\x8b\x65\xb3\x69\x6c\x3a\x9b\xc1\x9e\x61\x33\xd9\xb3\x2c\x87\x59\x59\x2e\xcb\x63\xf9\xcc\xc6\x66\xb1\xd9\xac\x80\x15\xb2\x39\x6c\x2e\x2b\x62\xc5\xac\x84\xd9\x59\x29\x7b\x8e\x95\xb1\x72\x56\xc1\x2a\xd9\x3c\x36\x9f\x2d\x60\x0b\xd9\x22\xf6\x3c\x5b\xcc\x5e\x60\x4b\xd8\x8b\x6c\x29\xfb\x03\x5b\xc6\x5e\x62\xcb\xd9\xcb\x6c\x05\x5b\xc9\x56\xb1\x57\x58\x15\x5b\xcd\xd6\xb0\xb5\x6c\x1d\x5b\xcf\xaa\xd9\xab\x6c\x03\xdb\xc8\x6a\xd8\x26\xb6\x99\x6d\x61\xb5\xac\x8e\xd5\xb3\xad\x6c\x1b\xdb\xce\x76\xb0\x9d\x6c\x17\xdb\xcd\x1a\xd8\x1e\xd6\xc8\xf6\xb2\x26\xb6\x8f\x35\xb3\xfd\xac\x85\x1d\x60\x07\xd9\x21\x76\x98\x1d\x61\x02\x6b\x65\x47\xd9\x31\x76\x9c\xbd\xc6\x4e\xb0\xd7\xd9\x49\xf6\x47\x76\x8a\xfd\x89\x9d\x66\x7f\x66\x67\xd8\x5f\xd8\x59\xf6\x7f\xd8\x39\xf6\x06\x3b\xcf\xde\x64\x17\xd8\x5b\xec\x22\xfb\x2b\x7b\x9b\xfd\x8d\xbd\xc3\x44\x76\x89\xbd\xcb\x2e\xb3\xbf\xb3\xf7\xd8\xfb\xec\x03\xf6\x21\xbb\xc2\x3e\x62\x57\xd9\xc7\xec\x13\xf6\x29\xfb\x8c\x7d\xce\xae\xb1\xff\x61\x5f\xb0\x2f\xd9\x75\xf6\x0f\x76\x83\x7d\xc5\xbe\x66\xff\x64\x37\xd9\x37\xec\x5b\xf6\x1d\xbb\xc5\xfe\xc5\xbe\x67\x3f\xb0\xdb\xec\x47\xf6\x13\xfb\x37\xbb\xc3\x7e\x66\x77\xd9\x2f\xec\x1e\xfb\x95\xfd\xc6\x7e\x67\xf7\xd9\x03\xe6\x60\x4e\x0e\x9c\x70\xca\x19\xe7\x5c\xc3\xb5\xdc\x83\x7b\x72\x2f\xee\xcd\x7d\xb8\x2f\xef\xc4\xfd\x78\x67\xde\x85\xfb\xf3\xae\xbc\x1b\xef\xce\x7b\xf0\x9e\xf0\x0b\xef\xc5\x7b\xf3\x3e\xc0\xf9\xb8\xc9\x63\xc6\x68\x8b\xad\x79\x65\xf6\x12\xbf\x52\x5b\x59\xa1\x3d\x3f\xcf\x56\x52\x61\x2b\xb3\xe5\xf3\x51\xb9\xd6\x32\x9a\x36\x9a\x16\xce\xf1\x9d\x3b\xbb\xcc\x66\x2b\x29\xb2\x96\xe4\x17\xe6\x31\x4b\xc9\x6c\x66\x2b\x99\xad\x29\xb2\x97\xcc\x2e\xd7\x8c\x2f\xb0\x97\x95\x68\xec\xf2\xdf\xc9\xf2\xdf\x4a\xe9\xaf\x47\x65\x49\x61\x78\x64\x54\x9c\xa6\x3c\xaf\x60\xbe\x55\x39\x4b\x89\xf2\x9a\x5d\x66\x9d\x67\xcb\xb3\x17\xe7\x7a\x59\xf3\x2a\x2b\x94\x54\x45\x61\x51\xbe\x9c\xe2\x05\x76\xfb\x5c\x59\x35\x2a\x3c\xc5\x33\xdf\x5e\x91\x6b\x2b\xb2\xcf\xd7\x54\xd8\x4b\xec\xe5\x9d\xf2\x0b\x6d\x65\xb6\xf2\xc2\x72\xf9\xcc\xcb\x5a\x62\xaf\xb0\x15\xd9\x0a\xad\x9a\x54\x6b\x71\xb1\x55\x63\xb6\x15\x55\x58\x35\x93\x0a\x6c\x15\x56\xed\x18\x6b\x71\x6e\xbe\x95\x66\x15\xd2\x8c\x42\xcd\xc4\xc2\xd9\xc5\x56\x96\x51\x50\xc8\x32\xca\x0b\x35\xd6\xa2\xd2\x02\x2b\xcf\xb5\x55\x58\x35\xb3\xe5\x72\xf9\x52\x39\x0f\x5b\x69\x79\x61\x91\xbd\x84\x2f\xb2\x55\x58\x99\x74\xb1\x42\x02\xe2\x85\xf6\x0a\xab\xb6\x48\x41\x5b\x50\xc8\xca\x0a\xec\xda\x72\x09\x2e\x42\x23\x0b\x56\x61\xad\xf4\xa8\x54\x8a\xb2\xd2\x82\x42\x56\x5a\x5e\xa8\xb1\x17\xdb\x66\x2b\xd5\x8d\x32\x47\xa0\x8c\x44\x19\x2b\xcb\xe8\xf0\x48\x94\xd1\x28\x13\x50\x26\xa3\x34\xa2\x4c\x51\x64\x44\x04\x4a\xd4\x8f\x40\x9c\x88\x38\x94\xf1\x28\xb1\x5c\x64\x14\x4a\xd4\x8b\x44\xbd\x48\xd4\x8b\x44\xbe\x48\xe4\x8b\x74\x95\x33\xa1\x34\xa3\xb4\xa0\x44\x3b\xa2\xd0\x8e\x28\xb4\x3f\x0a\x79\xa2\xd0\xae\x28\xe4\x8b\x42\xbe\x28\xe4\x8b\x42\x9e\x28\xe4\x89\x42\x9e\x28\xe4\x89\x42\xfc\x68\xc4\x8d\x46\xbc\x68\xc4\x8b\x46\xbc\x68\xc4\x8b\x46\xfb\xa3\x11\x37\x1a\x71\xa3\x11\x37\x1a\x71\xa3\xd1\xfe\x68\xc4\x8f\x41\xfc\x18\xc4\x8f\x41\x9c\x18\xc4\x89\x41\x9c\x18\xd4\x8f\x0d\x47\x89\xf5\x8e\xc5\xfa\xc6\x62\xf9\xd8\x18\x94\x68\x67\x2c\xda\x19\x8b\x76\xc6\x22\x7e\x2c\xe2\xc7\x22\x7e\x2c\xda\x19\x8b\x76\xc6\xa2\x9d\xb1\xc8\x1b\x87\x76\xc6\x21\x5f\x1c\xf2\xc5\x21\x5f\x1c\xe2\xc7\x21\x7e\x1c\xe2\xc7\x21\x7e\x1c\xe2\xc7\x21\x7e\x1c\xe2\xc7\x21\x7e\x3c\xd6\x2b\x1e\xeb\x15\x8f\x7c\xf1\xc8\x17\x8f\x7c\xf1\xc8\x17\x8f\xf5\x8b\x47\xde\x78\xe4\x8d\x47\xdc\x78\xc4\x4d\x40\xdc\x04\xc4\x4d\x40\x9c\x04\xc4\x49\x40\xbb\x12\xd0\xae\x64\xd4\x4f\x46\xfd\x64\xd4\x4f\x46\xfd\x64\xe4\x4d\x46\xbf\x26\x23\x7f\x32\xf2\x1b\x51\xdf\x88\xfa\x46\xbc\x6e\x74\x5d\x47\xbf\x18\x91\xd7\x88\xbc\x26\xac\xa7\x09\xcb\x9b\x10\xdf\x84\xe5\xcd\x28\x2d\x68\x9f\x05\xed\x4b\x41\xbc\x14\xc5\xcf\x31\xe1\xe1\x28\x23\x51\x46\xa1\x8c\x46\x19\x83\x32\x16\x65\x1c\xca\x78\x94\x09\x28\x93\x51\xba\x70\x4d\x28\xcd\x28\x2d\x28\x15\x3f\xc7\x44\xc8\xbc\x91\xe1\xe1\x2e\x19\x81\x32\x12\x65\x14\xca\x68\x94\x31\x28\x63\x51\xc6\xa1\x8c\x47\x99\x80\x32\x19\xa5\xb1\x53\x65\x49\xbe\xad\xac\x3c\xcf\x5e\x66\xcb\xcf\x2d\xea\xf4\x5c\xa5\x5d\x9a\x11\xe6\xd9\xca\xca\x6d\xf9\x8a\x4e\x24\x62\xc6\x45\x7b\x95\x94\x57\xca\x13\x47\x19\x2f\x2a\x2c\xb3\x6a\x4b\x6d\xe5\xd2\xd8\x69\xa9\x2c\xb3\xcb\x2a\x11\x48\x1f\x11\x11\x85\x32\xd6\xcb\x56\x5e\x51\x58\x6c\xad\xb0\xe5\x7b\xd9\x4b\x6c\xb6\xc2\xd9\x05\x15\x05\xbe\x15\x05\x65\x36\x4c\x97\xfb\xcc\x2a\x9c\xe7\x4a\xfb\x96\xdb\xe6\xd9\x4a\x5c\x17\xf2\xec\xc5\xc5\x56\x6b\x9e\x34\x47\x49\x68\x29\x96\x14\xd9\x29\x29\x29\x29\x26\x94\x66\xaf\x45\xb6\x32\x7b\x58\x79\x71\x5e\xa9\x47\xc5\x7c\x7b\x58\x79\x65\x69\xb7\xbc\xc2\xb2\xbc\xca\xe2\x59\x45\xb6\x05\xee\xb9\xa6\x6b\x5b\x9e\x34\xeb\x48\x59\x2a\x35\xf7\x34\xa5\xca\x73\x4f\x58\x7e\xb9\x92\x2f\xdc\x2a\xfe\x2a\x9b\xca\xec\x15\xd6\x0a\x9b\x36\x59\xa6\xd7\x1a\x15\x61\x52\x84\x59\x11\x16\x45\xa4\x28\x22\x55\x11\xa3\x14\x91\xa6\x88\xd1\x8a\x48\x57\xc4\x18\x45\x8c\x55\xc4\x38\x45\x8c\x57\xc4\x04\x45\x64\x2a\x62\xa2\x22\x26\x29\x62\xb2\x22\xa6\x28\x62\xaa\x22\xb2\x14\x91\xad\x88\x69\xb2\xe8\x24\xd7\xc7\xe5\x05\x4f\x7b\x89\x4d\xce\xf6\x94\xbd\x57\x9c\x57\xea\x2d\x37\x8d\x9c\xf4\x9a\x65\xaf\x2c\xc3\x54\xe1\x3c\xd4\x2b\x2f\x5c\xa0\xe8\xc9\x2d\xa5\x24\xe5\xf6\x52\x14\x4b\x0a\x5d\x80\x4a\xc3\x54\x96\x7a\xc8\x14\x95\xa5\x8a\x23\x55\x0b\x01\x85\xa7\xb2\xd4\x53\xa1\x91\x12\x32\x4b\x65\xa9\x87\x4c\x52\x59\xea\x85\x1c\x95\xa5\x5e\x48\x51\x59\xea\xa9\x30\x54\x96\x7a\xe6\x95\xd9\xcb\xcb\x73\xad\x65\x5e\x65\x85\x25\xb3\x65\x5c\xaf\x7c\x6b\x79\xa1\xd5\xbe\xa0\xd0\xaa\x90\xb9\xdb\xdf\x27\x6f\x61\x59\x61\x51\x51\x61\x5e\x45\x61\x5e\x17\x57\x5a\xf2\x41\x91\x6d\x56\x85\xaf\x3a\x43\x33\x3b\xcc\x5a\x54\xe1\x57\x64\x2d\x9b\x6d\x2b\x93\xc3\x50\xca\x2c\x94\x32\x35\x45\xd2\x5f\xd9\x63\x45\x25\x95\xc5\xe8\x00\x29\xa9\xcd\x50\x22\x30\xaf\x40\x51\xcc\x94\xff\xa6\x4b\x7f\x79\x61\x58\x61\x05\x2f\x0a\x2b\xac\x90\xfd\x60\x2d\xaa\xd0\x5a\x2b\x24\xd1\xc9\x5a\x5c\x6a\x2b\x2b\xb7\x96\xe4\x4b\x67\xde\xa9\xb6\xb2\x62\x6b\x49\x7e\x6e\x51\x79\xe7\xb6\xa4\xd2\x60\x2e\xf3\xe4\x2a\xc9\x83\x42\x78\xb2\x59\x6b\xce\x2b\xb3\x5b\x2b\x78\x41\xae\xb5\x8c\x4f\x92\xfe\x54\xe4\x5a\xcb\xbc\x93\xdd\xbe\xf0\xb6\xba\x93\x1e\xc9\xca\x92\xcf\xc3\xaa\x48\x6d\xb2\x0c\xa5\xb5\x2a\x88\xc9\xf6\xd9\xf6\x12\xdb\x5c\x0f\xab\x22\x7d\x4c\x6d\xbd\xc0\x27\xaf\x2d\x2d\x33\x47\xe0\xf0\x15\x11\x6e\xd4\x9a\xf3\xac\x12\x58\xbe\x2c\x3c\x2c\xc8\x61\x43\x0e\x8b\xc2\x61\x93\x85\xb7\x25\xdf\x5e\xa1\x74\x1a\x6f\x9b\x3b\xe9\x61\x41\x66\x9b\x22\xb5\x16\x05\xd1\x26\x0b\x9f\x54\x95\x1d\xb3\x3b\xda\x11\x19\x8e\x32\xc2\x37\x55\xd5\x25\x7d\x67\xab\x4e\x7c\x46\xa9\x10\x0a\xda\xd2\xda\x34\x39\x30\xb4\x85\xb2\xf0\x48\x43\xcb\x0b\xd1\xf2\x34\xc5\xf2\x42\xc5\x3b\x69\x68\x63\xa1\x22\xbd\xd3\xdc\xe6\xfb\x8c\x56\xc1\xcf\x69\x4b\xfb\xa6\xab\x0d\x9a\xab\x3a\xd1\x8e\x91\xdb\x43\x5b\x24\x0b\xdf\x31\x6a\xbd\xa2\x76\x7a\x8a\x23\x8a\x64\xc1\xc7\xe4\xdb\x2b\x78\x51\xbe\xbd\x42\x3b\x4e\x29\x5f\xa2\x94\x1f\xa7\x2e\x5f\xa2\x2e\x3f\x4e\x29\x5f\xa2\x38\xb2\xc4\x5a\x6a\x2f\xaf\x28\xb3\x97\x16\xd8\x3c\xc6\x63\x65\xed\x58\xd9\xf1\x4a\x65\xed\xb2\xe8\x34\xbe\xa0\xb2\x64\xb6\xb5\xac\xb2\xb8\xc8\x5a\x59\xd1\xc9\xae\x3e\xd3\x66\x2a\xdc\x65\x0a\x77\xa6\x9a\xbb\x4c\xcd\x9d\xa9\x70\x97\x29\x62\xa2\x52\xaa\x5c\x16\x3e\x13\x55\x1e\x2b\xef\xd0\xa4\x91\xb8\xb2\x8d\x8c\x48\x40\x99\x8c\x52\x99\x29\x23\x62\x23\x7d\x51\x2a\xbd\x4d\x39\x89\xd2\x4e\x52\x98\x2a\x14\x31\x59\x69\xdb\x4a\xa5\x6d\x27\x63\x75\x2b\xb1\xba\x93\x95\xea\x56\xca\x42\x33\x59\xea\x22\x9a\x4a\xe9\x6f\xa7\xc9\xed\xaa\x5e\xa9\x3e\xf3\x98\x8c\x31\x50\x89\x3d\x64\xaa\xaa\x1a\xf3\x55\xe9\x6c\x55\x7a\xa1\x2a\xde\xa6\x29\x4e\x58\xa4\x74\xcc\x69\x6d\x7d\x61\x51\x5b\x5f\x48\xb6\x28\x7d\xd5\xaa\x0c\x91\x3e\xe3\xcb\x8b\xac\xe5\x05\x4a\xda\xae\x4a\x2b\xfd\x5e\x19\x62\x2d\x15\x05\xca\xa8\x2b\x0d\x00\x72\xca\x27\x59\x9e\xa9\x30\x2d\x97\x90\xd3\x5d\x92\xdb\xcc\xc1\x8b\xb2\x83\xe4\xb4\x5f\xb2\xeb\x76\x4b\x19\xce\xe5\x41\x44\x4e\x76\x6e\x1b\x4f\x94\xb1\xc8\x94\x67\xcb\x2f\x2c\x2a\xb2\x2a\x18\x16\x15\x99\x45\x45\x66\xe9\x40\xe6\x67\x69\x47\xe0\x93\xa6\x2a\x97\xa6\x2a\x97\xd6\xb1\x5c\x5a\xfb\x72\xe3\xda\x6c\xf6\x19\xaf\xc2\x18\xaf\xc2\x18\xdf\xb1\xa2\xe3\x55\x15\x1d\xdf\x1e\x6f\xb2\x0a\x63\xb2\x0a\x63\x72\x47\x3b\x26\xb7\x2f\x97\xdd\xa6\xeb\x8b\x63\x2b\x3a\x55\x8e\x2b\xbc\xa0\x04\x8b\x72\xc1\xa4\x42\x37\x75\x40\xf7\xc5\x81\x15\x35\xe5\x30\x56\xd2\xe6\xb6\xb4\xaf\x45\xcd\x63\x69\xe3\xe9\xdc\x36\xb4\xa2\xa2\x9a\xd7\xd2\x86\xd0\x25\xb5\xa3\x67\x52\x55\xd6\xe2\xa0\x2a\x9f\xf8\xab\x47\x54\xa5\xec\xa8\x8e\x65\xd3\xda\xbc\xea\x9b\xa6\x36\x2d\x4d\x05\x9a\xa6\x32\xa5\x73\x5a\x7b\x3b\xbb\x8c\xee\x00\xe9\x9f\xde\x91\xd5\x67\x4c\x9b\xd7\xfc\xc7\x3c\x7c\xb5\xad\x6e\x5e\xd2\x10\x89\x31\xa2\x2a\x33\xee\xa1\x32\xe3\x54\x1e\x1d\xaf\x36\x7b\x7c\x9b\xd9\x5d\xdb\x8d\x82\xca\xe5\x4c\x15\x6a\xe6\x43\xa8\x99\xaa\x36\x9b\xa8\x6a\xe9\x89\x1d\xaa\xd8\x69\x62\xbb\xee\x33\xb1\xad\x98\xff\xa4\x87\x40\x27\xa9\x40\x27\xab\xbc\x3d\x59\x6d\xf6\xe4\x36\xb3\xbd\x27\xbb\xbb\x6d\xd7\xc9\x0f\xd5\xc0\x77\xb2\xaa\x2d\xba\x4c\xed\x60\x58\x97\xec\x8e\x11\x9f\xdd\x3e\xe2\xa7\xb5\xd5\xaa\xf3\xb4\xf6\x0d\xe9\x33\xad\xcd\x50\xef\xe4\xa2\xd2\x02\xab\xbc\x69\xe3\x6b\x51\xf6\x4a\xe4\x13\x4f\x4b\x85\x92\xeb\x95\x66\xc7\x94\xef\xf8\xe2\x42\xa9\x1e\xca\xc9\x64\x95\xb2\xf7\xf8\x62\xdb\x6c\x45\xc9\xbf\xd0\x5e\x61\x6d\xb7\x17\xa4\x91\x19\xb8\xd1\x56\x61\xf5\x40\x06\x3e\xcd\x56\x61\x65\x96\x0a\x2b\x97\xc0\x35\xe9\xd6\xd2\x52\x2b\x1d\x5b\x49\xc7\x55\x7a\x20\x07\xcb\x2c\xb0\xb3\x49\xd6\x4a\x0f\xa4\x61\xa6\x82\x42\xdf\x34\x15\x74\x67\xbc\xe0\x3a\xf7\xb6\xb6\xd5\xc3\xa6\xae\x87\xcd\x55\x8f\x42\x57\x3d\xba\x57\xb6\x2f\xaa\x58\x39\x57\x32\xc2\xc3\xae\xd0\xcb\x33\x55\x94\xd1\x44\x4b\x2a\x59\x5e\x41\xa1\xaf\xba\x52\x9d\x3b\x14\xf7\xb5\xab\xdd\x52\xa9\x76\x8b\xdd\xed\x16\xe5\xce\x34\x1c\xef\x54\xf1\x4e\x34\x1a\xef\x40\xa3\xc3\x5d\x3b\x4f\x78\xa7\x1b\xee\xda\x31\x72\xed\x38\xe1\x1d\x32\xde\x69\x46\x47\xe0\x9d\x6f\x04\xee\x0c\x44\x20\x5e\x04\xe2\xe1\x7c\x1c\x1d\x81\xe5\x22\xf0\xce\x3a\xc2\x55\x1e\x77\x04\x70\x49\x16\x1d\x89\x76\x45\x22\x5e\x24\xde\x79\x47\x22\x5e\x14\xea\x45\xb9\xce\x11\x3f\xca\xb5\x83\x83\xd7\xa3\x11\x27\x1a\xed\x89\x46\xfd\x18\xcc\x8f\xc1\xfc\x18\x57\x3e\xd6\x3b\x06\xeb\x1d\x83\xf5\x8e\x41\xbb\x63\x2c\xda\xa9\xf2\x80\xaf\x9d\xaf\x88\xa9\xca\xb4\x3c\x5f\xb9\x77\x98\xea\x6a\x02\xaf\xf9\xae\x94\x36\x5b\x51\x5c\xa8\x88\xe2\xc2\x12\x79\x2d\x63\xcb\xb3\x97\xe4\x7b\xd9\x16\xe4\x15\x59\x8b\xf3\x73\x8b\x94\x85\x48\x8a\x62\x75\xa4\xb2\xff\x10\x61\x51\x6a\x13\x61\x51\xf6\xbb\x22\x2c\xca\xfd\x7b\x84\x45\x69\xb5\x88\x14\xd7\xbe\x15\xee\x2b\x44\xe3\xfd\x7f\x74\x0c\x9e\xc7\xb8\xf6\x73\xf0\x3c\x0e\x6b\x1d\x87\xb5\x8c\xc3\x5a\x26\x60\x2d\x13\xd0\x8b\xc9\xd8\xca\xc9\xb8\x3f\x94\x8c\x5e\x4d\xc6\x56\x32\x21\x9e\x09\xf1\x4c\xd8\x4a\x26\xbc\x6e\xc6\xeb\xb8\x9f\x19\x8d\xfb\x99\xd1\x66\xf4\xb6\x19\x5b\xd3\x8c\x5e\x77\xed\x73\x9a\xd1\x1e\x33\xf2\x9b\xd1\x1e\x33\xda\x61\xc6\x56\x30\x63\xbd\xcc\x68\x97\x19\x79\x2d\xc8\x63\x41\x1e\x0b\xf2\x58\x90\xc7\x82\x3c\x16\xe4\xb1\xb8\xf6\x6d\x90\xc7\x82\xbc\x16\xe4\xb3\x20\x9f\x05\xf9\x2c\xc8\x67\x41\x3e\x6c\xaf\xe8\x14\xd7\x7e\x0f\xf2\xa7\x20\x7f\x0a\xf2\xa7\x20\x7f\x0a\xf2\xa5\x20\x5f\x0a\xe2\xa7\xb8\xf6\x6d\x14\x9c\x18\xec\x45\x31\x4a\x2f\x8a\xb0\x24\x63\xbb\x2b\xfb\x5e\x11\x96\xe4\x48\x94\xae\xeb\xd1\x28\x63\x50\xc6\xa2\x8c\x43\x19\x8f\x32\x01\x65\x32\x4a\x23\x4a\x8c\xb7\x64\x33\x4a\x8c\xbb\x64\x8c\x3b\x23\xf2\x1b\x91\xdf\x88\xfc\x46\xe4\x37\x22\xbf\x11\xf9\x8d\xc8\x6f\x44\x7e\x23\xf2\x1b\x91\xdf\x88\xfc\x46\xe4\x77\xc5\xbb\x11\xf9\x8d\xc8\x6f\x44\x7e\x13\xf2\x9b\x90\xdf\x84\xfc\x26\xe4\x37\x21\xbf\x09\xf9\x4d\xc8\x6f\x42\x7e\x13\xf2\x9b\x90\xdf\x84\xfc\x26\xe4\x37\x21\xbf\x09\xf9\x4d\xc8\x6f\x42\x7e\x33\xf2\x9b\x91\xdf\x8c\xfc\x66\xe4\x37\x23\xbf\x19\xf9\xcd\xc8\x6f\x46\x7e\x33\xf2\x9b\x91\xdf\x8c\xfc\x66\xe4\x37\x23\xbf\x19\xf9\xcd\xc8\x6f\x46\x7e\x0b\xf2\x5b\x90\xdf\x82\xfc\x16\xe4\xb7\x20\xbf\x05\xf9\x2d\xc8\x6f\x41\x7e\x0b\xf2\x5b\x90\xdf\x82\xfc\x16\xe4\xb7\x20\xbf\x05\xf9\x2d\xc8\x6f\x41\xfe\x14\xe4\x4f\x41\xfe\x14\xe4\x4b\x41\xbe\x14\xe4\x4b\x41\xbe\x14\xe4\x4b\x49\xd0\xe6\xcb\xb7\x1a\x1e\xf2\xd6\x9f\x6b\x38\x49\xc0\x6e\x96\xe0\x1a\x5e\xb0\xdb\x24\x63\xb7\x49\xc6\x6e\x91\x8c\xdd\xce\x88\xd7\x8d\x78\xdd\x88\xdd\xd8\xe8\xda\x86\x45\x1c\x93\xab\x3b\xe1\xf5\x14\xd7\xf0\x86\xe7\x09\x78\x6e\xc4\x6e\x6c\xc4\x6e\x6c\xc4\xf2\xf1\xc8\x17\xef\xda\x6e\x47\xde\x04\x97\x44\xfe\x04\x2c\x9f\xe0\xda\x1e\xc7\xfa\xc4\xbb\xec\xc0\xee\x6d\xc2\x7c\x93\x6b\x1b\x19\xcb\x99\x70\x38\x30\xb9\xea\x81\xc3\x88\xd1\x35\x8c\xa0\x5e\x8a\x6b\xfb\x16\xb7\x6b\x71\x32\xc5\x6d\xdb\xf0\xf0\xf0\x04\xe5\x99\x7e\xe2\x74\x42\xe7\x47\x7d\x9f\xe7\xa1\x7f\x3f\xc0\x0f\x70\x16\xce\x6a\x04\x00\x3e\x1c\xc0\x91\xe3\x99\xfb\xe0\x43\xcd\x9b\xce\x5b\x7c\x9c\xf3\x96\x23\x5d\x7e\x37\x80\x4a\x47\x23\xf0\xe1\xce\xef\x50\xeb\xbc\xf3\x96\xe6\x4d\x3e\xce\x75\xde\x4e\xef\x1b\x15\x9a\xa4\xf7\x8d\xac\xa7\xe0\x45\x42\xa4\x00\x06\x9d\x00\x93\xb3\x2c\xd9\x3a\x5d\xfa\x49\xf0\x9b\x90\x2e\x68\x27\x4e\xcb\x12\xa2\x03\x84\xa1\xd9\x39\xb3\x74\x55\x93\xb3\x04\x1a\x64\xfd\xa3\x27\x78\x42\x5e\x9e\x3e\x37\x20\x30\x50\x80\x6c\x01\x4c\x7a\xf3\x51\x20\x60\xca\x31\x86\x0a\xc4\x20\xe8\x72\x66\x85\x0a\xd4\xa0\xcb\xd7\x09\x67\x33\x04\x3e\x78\xda\xd1\xa1\xc4\xdb\x64\xc9\xb3\x64\x4e\xcf\x0a\xd4\x07\x06\x54\x65\xe9\x84\x8c\x8c\xac\x40\x21\x29\x3b\x40\x27\xc4\x4b\xa9\xf8\xec\x6c\x5d\xab\xa2\x64\xcd\x17\x86\x66\x64\x05\xe2\x99\x4e\x08\x97\xae\x87\x4b\x9a\x67\x33\xb2\x74\xb3\x74\x55\x55\x56\x9d\xe0\x9d\x91\x95\x13\xa0\x13\x74\xd2\x35\x6f\x29\x15\x2b\xa5\x62\x73\x02\x72\xb2\xb3\xb3\x03\x04\x12\x92\x9d\xad\x17\x20\x23\xcb\x96\x9d\x1d\x2a\x30\x83\xce\xa2\x13\x78\x90\x35\x5f\x27\x68\x4c\x19\x59\x82\x46\x6f\x14\xb4\x7a\x63\x40\x60\x60\xb6\x40\x72\x42\x05\x6e\xd0\x07\xea\x03\x75\xf9\xad\x9a\x5c\xa3\x4e\xba\xa2\x90\x4b\x7f\x05\x9e\x63\xc9\x13\x58\x70\xa0\x4e\xd0\x9a\x74\x55\xba\x2a\x81\x84\xb4\x86\x6b\x82\x04\x3e\x78\x42\x56\x4e\x46\x80\x35\x33\x3b\x4b\x9f\x1d\xa8\x13\x92\x26\x66\x09\x24\x24\x40\xaa\x14\x32\x87\x0a\x1a\x83\xe0\x61\x0a\x39\x0a\x54\x71\x8d\xd6\x20\x78\xe8\x8d\x7a\x9d\x00\x7a\xa3\x55\xa0\xb9\xb3\x04\x92\x27\x90\x1c\x41\x13\x1c\x2a\x78\x18\x74\x92\x91\x3e\xa6\xbc\x93\x1c\x72\x75\x12\x82\x90\x94\x93\x2d\xa9\xe4\x98\x65\x23\x3d\x0d\x47\x3d\x7c\xc0\x64\x31\x06\x07\xba\x9d\xed\x65\x68\xef\x7c\x6f\x05\x85\x84\xe8\x05\x30\x09\x3c\x28\x47\x67\xa9\xd2\x5b\xa5\x86\x90\x3d\x05\x01\x92\x37\x05\x5d\x80\x90\xe4\xf6\x8f\xc0\x82\xf4\x56\xb3\x42\xe1\xf3\x98\xe2\xc2\xa0\x8c\x2c\xa9\x70\xd2\xa3\x0a\xf9\x1a\xe4\x0a\x1d\xf5\xf1\x66\x96\xac\xc0\x00\x7d\x60\x76\x70\x60\xa8\xd0\xc9\xd0\x4a\xa9\x45\xc8\xb7\x9a\x43\x05\x3f\x83\x40\x72\x74\x3a\xc1\xd7\x34\x5a\x2a\xae\x13\x7c\xf5\xc6\x6c\xa1\x93\x74\x96\x99\xa5\x13\x3a\xe9\x8d\xd9\xa1\x42\x67\x83\x4e\xe8\x22\xbb\x44\x77\x92\x43\x5e\x95\xde\x2a\xf8\x99\x72\x74\x55\x39\x3a\xc1\x4f\x6f\xd4\x87\x0a\x5d\x0c\xe9\x93\xb2\x5a\x79\xbe\x39\x7b\x90\xd0\xc9\xa6\x5f\x10\x2a\xf8\x1b\xd2\x27\x64\xa5\x4f\x54\x32\x03\x02\xb3\x07\x09\xdd\xe4\xfc\xae\x86\x56\xe8\x6c\x9a\x9c\xd5\xda\xb9\xb3\x49\x20\x56\xa3\xd0\x39\x44\x0a\x52\x81\x06\x19\x5b\x7d\xa5\x3f\x9d\x68\x90\x51\x20\x3d\xf5\x3a\x81\x05\x65\x64\xb5\x4a\xce\x13\x78\x90\xb1\xaa\x4a\x27\xd3\x06\x07\xea\x05\x62\x75\xa5\x03\x94\xeb\x52\x11\x1a\x24\xe7\x64\x0b\xbe\xa6\x54\xa1\x93\x29\x35\x47\xa0\xed\x9b\xea\x31\x0d\xd8\x0a\xd0\x4d\x6f\x16\x88\x49\x80\x91\x47\x09\x21\x72\x5b\x75\x33\x40\x2b\x50\xcb\xa4\x2c\xa1\xb3\xde\xa8\xb3\x08\x3e\x7a\xa3\xe0\xad\x17\x78\x8e\x51\x97\x23\x10\xeb\x6b\x5d\xba\x10\xf0\x03\xa3\xb1\x2a\xa7\xb5\xab\x36\x44\xa8\x0c\x09\x18\x98\x1d\x2a\x74\x37\xb4\x42\xb7\x90\x50\xa1\x87\xa1\x95\x48\xb2\xa7\xa1\x95\x4a\xb2\x97\xa1\x95\x49\xb2\xb7\xa1\x95\x4b\xb2\x8f\xa1\x55\x23\xc9\xbe\x86\x56\xad\x24\x03\x0c\xad\x1e\x92\xec\x67\x68\xf5\x94\xe4\x13\x86\x56\x2f\x49\x3e\x69\xd0\x85\x09\xe4\x99\x50\x21\x58\x4e\x3c\x17\x2a\x84\xc8\x89\xb2\x50\xa1\xbf\x01\x84\x4e\x21\xff\x17\x36\x0e\x30\xb4\x42\xff\x90\x50\x41\x67\x68\x25\x92\x0c\x34\xb4\x52\x49\x0e\x34\xb4\x32\x49\xea\x0d\xad\x5c\x92\x83\x0c\xad\x1a\x49\x06\x19\x5a\xb5\x92\x1c\x6c\x68\xf5\x90\xe4\x10\x43\xab\xa7\x24\x87\x1a\x5a\xbd\x24\x69\x30\xe8\x12\xe5\x50\x0b\x35\xe8\x72\x84\x2e\x39\x3a\x93\x5e\x20\x39\x26\xb9\x39\x48\x8e\x60\x90\xe2\x2d\xcc\x20\x84\x86\x08\xa1\xc1\xa1\xc2\x30\x83\x4e\x97\xaa\x7b\x4c\x4b\xe8\xad\xf1\x7a\x69\x18\xfb\x8f\x1a\x01\x81\xd9\xa1\x42\xb8\xbb\x79\x48\x4f\x61\x58\x70\xab\x86\xf4\xb0\x64\x85\x67\xcb\x15\x8c\x50\x7b\xe6\xe1\xcb\x91\x06\x5d\x8c\x6c\x6f\x94\x01\x04\x62\x79\x98\x44\x20\x21\x8f\x24\x97\xf2\xa1\xe7\x71\x79\x0a\x30\x8f\xd4\xc7\xb7\x46\x92\x1e\xc1\xa1\x42\xb4\x41\x97\xa8\x4b\x7d\x8c\xbd\x02\x98\xac\xf1\xa1\x42\x8c\x21\xac\x57\x62\xa8\x10\xfb\xdf\x54\x05\x62\xca\x8b\x0f\x15\xe2\x0c\xad\x14\x7a\x06\xe9\xc2\x74\xa9\x52\xe7\x15\x68\x50\x5a\x55\x55\xaa\x3e\x55\x6f\xd5\x65\xe5\x06\x48\xc3\xa2\xde\x78\x34\x96\x90\x1e\xdd\x83\x43\x85\x78\x83\x00\x3d\x05\x1e\x24\xf0\x20\x59\x45\xf0\x32\x85\xd8\xaa\xc2\xf4\x3a\x5d\x62\x55\x7c\xa8\x90\xd0\x76\x59\x17\xa6\x60\x08\x5c\x6f\x94\xb4\x74\x42\x8e\xd4\xdf\x93\x26\x64\x1d\xa3\x3a\xa6\x0b\x38\x46\x07\xb3\xbe\xd9\x46\x69\x0c\xf4\x34\xe9\xaa\xf4\xb2\xb6\x3e\x25\x47\xe0\xa6\x8e\x5d\x29\x47\x1a\x87\x94\xc1\x9e\x9a\x72\xf2\xf5\x02\x33\x59\xf3\x33\xb2\x04\x6a\xb2\x06\x08\xcc\x94\x23\x8d\x41\x1d\xcb\x58\xf5\x3a\x9d\xc0\x07\xeb\x53\xac\xf1\x01\x7a\xc1\xd3\x94\x22\xd0\x20\xc1\xd3\x24\xb3\xe4\xe8\x1e\x45\xa2\x57\x46\x3b\x6e\xca\x91\x7c\xaf\x09\xb2\x0a\x9a\x87\x50\x05\x3e\x58\xaa\x51\x90\x6c\x44\x50\x4e\x7e\x86\x32\xca\xb5\x71\x65\x87\x0a\xc3\x25\x1f\xe8\x74\x3a\x41\x33\x18\x7d\xa0\x4f\x8c\x0f\x15\x46\xc8\xd9\x82\xa7\xde\xa8\xd3\xe9\x52\xf4\xa9\x12\x99\xd4\x5a\x89\xb2\xcb\xa4\x0a\xa0\x47\x61\x52\x56\x98\x2e\x51\x1f\x18\x20\x59\x8c\x99\x3a\xc9\x16\x97\xcb\xb5\x41\x82\x26\x28\x4d\x3d\xfb\x2a\x0d\xf5\xa8\x08\xc6\x96\xd1\x4b\x61\xfc\x14\x5a\x60\x72\x35\x4d\x8e\x34\x3d\x77\xac\xa2\xab\x29\x47\x1a\xf4\xba\x30\xc9\x6b\x29\x99\x59\xba\xc4\xec\xb0\xd6\x30\xd2\x3d\x24\x54\x78\xda\x9d\x9d\xa1\xce\x4e\x6a\xaf\xfd\x48\x9d\x64\x83\x10\x1f\xf2\x48\x50\xa3\x41\x48\x08\xa9\xd2\xe9\x12\xa5\x60\xa9\x8a\x7f\x84\x8e\xc0\x4d\x61\x42\x58\x48\xa8\x60\x72\x47\x98\xcb\xbb\x52\x70\xe9\x75\x89\xba\x30\x7d\x3c\xc2\x99\x0d\xad\x9e\x3c\xc8\xf8\x7f\x11\x8a\xa9\xff\x5f\x45\x9f\x64\xbe\x34\xbe\x24\xea\xe3\x03\x02\x55\xed\x1d\x98\x8d\x36\x5a\x24\x67\xb8\xea\x9f\x22\xd5\x3f\x50\x8f\x0e\xc0\x7a\xb8\xab\x9c\x6a\x10\xa0\x87\xd2\x39\x8f\x82\xd4\x0f\xbb\x85\x09\xd1\xc1\xa1\xc2\xa8\xc7\xe4\xa7\x19\x5a\x81\x74\xef\x26\xc4\x04\x87\x0a\xa3\x0d\x42\x5c\x70\xa8\x90\x2e\x79\xcd\xa2\xd7\x85\xe9\x52\xaa\xf4\x56\x97\x9f\xc6\x18\xa4\x70\x14\xd2\x43\x42\x85\xb1\x86\xa3\x00\xe6\x90\x50\x61\x9c\xe1\x28\x10\x29\x31\xde\x70\x94\xc8\x39\x19\x86\xa3\x44\xce\x99\x20\xe9\x58\x42\x42\x85\x4c\x49\x47\x4a\x4c\x94\x74\xa4\xc4\x24\x49\x47\x4a\x4c\x96\x74\x92\x43\x42\x85\x29\x92\x8e\x94\x98\x2a\xe9\x48\x89\x2c\x49\x47\x4a\x64\x4b\x3a\xa6\x90\x50\x61\x9a\xa4\x23\x25\xa6\x4b\x3a\x52\x62\x86\xa4\x23\x25\x9e\x91\x74\x52\x42\x42\x85\x99\x92\x8e\x94\x78\x56\xd2\x91\x12\x39\x92\x8e\x94\xb0\x4a\x3a\xc6\x90\x50\x21\x57\xd2\x91\x12\x79\x92\x8e\x94\xc8\x97\x74\xa4\x84\xcd\x20\x0c\x77\xbb\x79\x96\x74\x22\x8c\x0c\x09\x15\x66\xcb\xa9\xa7\x43\x42\x85\x02\x39\x9e\x86\x87\x08\x49\x21\xa1\x42\xa1\x41\x18\xe1\xd6\x9e\x23\x9d\xc8\xda\x73\xe5\x94\xa4\x5d\x24\xa7\x24\xd5\x62\x83\x90\xe8\x56\x2d\x91\x4e\x64\x55\xbb\x9c\x92\x54\x4b\xe5\x94\xa4\xfa\x9c\x41\x78\xca\xad\x5a\x26\x9d\xc8\xaa\xe5\x72\x4a\x52\xad\x90\x53\x92\x6a\xa5\xe1\x98\x17\xa7\xae\xc5\x93\x31\x44\xf0\xb4\x09\x6c\x50\xc6\x02\xd7\x9c\x12\x0a\x90\x7e\x12\x2e\x66\x66\xb5\x12\xb2\x2e\x5b\x20\xca\x00\x50\xda\x0a\x5a\xe3\x6b\x90\x1a\x35\x80\x43\xb0\x94\x4e\xf2\x1e\x4b\x86\x7b\x0e\xf6\xec\xee\xc1\x3d\x31\x63\x1c\x98\xb5\xe1\xda\x27\x34\x72\x86\xb7\xf1\xcf\xdd\x96\xfa\x9d\xf5\x3a\xab\x49\x02\x0e\x5e\xc1\xad\xe0\x67\xfc\x33\x00\x24\xc9\xff\xe5\x1c\x06\xe6\xd6\x41\x64\xd5\x84\x2c\x21\x69\x55\x56\x2b\xcb\x37\xb7\x0e\x96\xce\x4e\x79\x2e\x05\xc2\x93\x56\xe5\x4d\xca\x92\x54\xb2\xb3\xb3\xb3\x25\xec\x44\xcf\xa1\x9e\x3d\x3d\xb8\x6f\xf0\x49\xe2\x7c\x59\xe0\x6b\x5b\x29\x98\x5b\x35\xf9\x66\x80\xff\x27\x00\x00\xff\xff\x3e\x2b\x23\x9a\x08\xc0\x01\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_ttf() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_ttf, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.ttf", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x97\x43\x70\xe0\x0d\xb0\xed\xff\x99\xd8\xb6\x6d\xdb\xc9\xc4\xb6\x6d\xdb\xe6\xc4\xb6\x33\xb1\x6d\x4e\x6c\x67\x62\x7b\x62\x5b\xaf\xbe\x7a\xf7\x6e\x6e\x57\xff\x36\x5d\xd5\x67\x71\x36\xa7\x8e\x87\x82\xb8\x38\x00\x02\x00\x00\xf0\x21\x0a\x20\x01\x00\x00\xd2\x07\x05\x80\xfc\xff\xcb\xff\x1d\x09\x51\x31\x71\x00\x00\xb1\x05\x00\x80\x1b\x00\x00\x21\x58\x66\x58\x16\x09\x15\xb5\x9f\x00\x00\x52\x0e\x00\x20\x3c\x00\xf0\x43\xf2\x18\x79\x07\x55\x41\x85\x91\x05\x00\x7e\x1c\x02\x00\xa0\x0c\x00\x80\x61\x17\xf7\x99\x86\x89\x9d\x91\x23\x00\x80\x72\x01\x00\xf8\x01\x00\x40\x59\xab\x9c\x14\x32\x9a\xb8\xbb\x12\x01\x00\x34\x1e\x00\x00\x0a\x00\x00\xe4\x98\xe0\xa1\xfb\x98\x3b\x5a\xd8\x01\x00\xb4\x2d\x00\x80\xc7\x00\x00\x6c\xfa\x1e\xda\xc6\x8d\x85\x91\x8b\x23\x00\x20\xbc\x00\x00\x00\xf5\x3f\x20\x59\xd8\x7a\x99\x03\x00\x22\x00\x00\xb3\x57\x00\x88\x79\x7d\xd2\x7a\xd9\xa2\xa5\x99\x91\x29\x00\x6c\xdf\x00\x00\xc0\xf1\x1f\xaf\x9a\x48\x48\x96\x96\x66\x46\x00\xb0\x43\x05\x00\x00\x11\x00\x00\x64\x70\x34\x90\x24\x96\x76\xae\x9e\x00\xb0\x23\x09\x00\xe0\x68\x00\x80\x44\x42\xc4\x7a\x17\x68\xeb\x60\x62\x04\x00\x87\xba\x00\x00\x39\x09\x00\x50\x64\x03\x05\x38\x2f\x76\x46\x9e\x8e\x00\x70\xf1\xbf\xbf\x44\xe0\x7f\xe1\xb1\xed\x8d\xec\xcc\x00\xe0\x42\x12\x00\x40\x82\x00\x00\xd4\x55\x85\xcb\xe7\xd4\xd1\xc1\xc5\x15\x00\x2e\xa7\x00\x00\x7e\x05\x00\x48\xe7\x8f\x7e\x96\x9d\x3a\x3a\x9b\x39\x02\xc0\x7b\x31\x00\x00\xb9\x00\x00\xd4\x72\xba\xf1\xfe\xf1\x04\x31\x31\x34\x35\x34\xdc\x35\x0a\x04\x28\x20\x10\xc2\x58\x85\xc6\xc6\xca\xc7\xca\x11\xc8\x48\xb1\x92\x83\x4c\xc1\x4d\xc0\x13\xaa\xcd\xaa\x41\x93\xe0\x63\xe0\x85\x9c\x51\x0e\xd0\x88\xbc\xc2\x90\xcb\x51\x80\x11\x52\x28\x67\x00\x00\x3c\x41\x72\x27\x41\xe1\xd0\x0c\xf1\xc0\x6f\x9e\xf5\x97\xab\xab\xa9\xe5\xd6\xec\xad\xed\xa7\xd8\x19\x71\x4d\x32\xb2\x59\x66\x38\x9a\xec\x36\x38\xcc\x0f\xbc\x37\xa6\xb7\xfd\xfe\x28\x04\x04\x01\x3c\x45\x88\x61\xc1\xac\xe6\xd3\x79\x21\x71\x96\xb0\x75\xe2\xa0\x0f\x83\x2d\x93\xe9\xb5\xce\x08\xd3\x63\x2d\xc7\x1b\xc8\xfb\xdc\xdd\x46\x81\xc2\x61\x58\xe6\xa1\x4a\x23\x58\x16\xc1\x52\xa5\x19\xe6\x61\x5a\xc7\x2f\x39\x5e\x18\x9a\xa6\x91\x66\xea\x9a\x66\xb1\x6e\x04\x76\x56\xc7\x45\x08\xa7\xbf\x67\x8d\x78\x0b\x03\x83\x61\xa8\xab\x23\x0a\xa3\xa8\x6b\x43\x93\xa4\xa9\x6b\x62\x1a\x27\xa8\xeb\x82\xa3\x68\x2a\xaa\xa3\x2a\x2b\x2b\x6a\x8b\x78\x96\xf7\xff\x3a\xe0\xb7\xa1\xba\x2f\xc8\xaf\x59\xf1\xda\x9c\x5c\x74\xeb\xd5\x47\xbb\x8f\x33\x6c\xa0\x77\x59\xaf\x5c\x86\x6d\x35\xeb\xb8\x6f\x5c\xad\xea\x6d\x35\xbd\x3f\xf5\x11\xac\x93\xfa\xd8\x2a\x5c\x54\xf0\x37\x9d\x3c\x0d\xe8\xaf\xd3\xfa\xd8\x39\x5c\xd4\xf4\x34\x3d\x3f\xf5\xb7\xae\x52\xbe\xdb\x1a\x5c\x54\xf9\x35\x5d\x3f\x0d\xfa\xaf\x33\xbe\xd7\x08\x3e\xad\x7c\xad\x09\x43\x6d\x31\x21\xa1\x02\xb2\xa3\x7c\x0f\x7d\xee\xb8\x41\xb9\x1c\x49\x06\xaf\xf0\x45\x2f\x22\x21\xcc\xe2\x83\x6c\xd0\x3a\xec\x6a\xb0\x0d\x32\xd1\x2d\x10\x5e\x35\x2b\x10\x39\x8b\xe6\x76\x23\xe0\x76\x4b\x04\xba\xb6\xf7\x1d\xd3\x16\xdd\x5f\x88\x5b\x39\x3d\x4c\xff\x79\x67\x62\x68\xce\x3d\xfb\xf2\x2b\x28\x35\x28\xc8\x0d\xa3\x8a\x19\x14\xb4\x88\x2f\xd4\xbc\x77\x2c\x61\x64\x28\x10\x8e\x80\x89\xe9\x13\xd3\x50\x31\x02\x82\x05\x5d\xe8\x23\x78\xa2\xd0\x18\xe9\xf3\x9b\x51\x62\x61\xa7\x0a\x0e\x0e\x4f\x4a\x76\x1d\x06\x2e\xe6\xfe\x13\x1b\x1b\x4b\xb3\x5a\x93\x33\x70\x89\xf9\x07\x70\xe6\x85\x44\xf5\x9f\x66\x4a\x32\x68\x3d\xa9\x0e\x9a\xd8\x33\xf7\x3b\xc5\x6c\xeb\x9b\x1b\x4b\xab\xdd\xc6\x53\x9b\xdd\x46\xeb\x7f\x4b\x89\x3d\xdb\x94\xfb\xf0\x67\x67\xe4\xa2\x12\xbd\x48\x63\x49\x0f\x78\x61\x1d\x46\x02\x6e\xae\x81\x9f\xfe\xbe\xf6\x1f\xc9\x20\xa1\x4e\x3f\x3e\x56\x41\x02\x49\x40\xa8\xa1\x76\xb9\x36\x03\x7d\x1c\x19\xf3\x46\x6d\x3c\x09\xb3\x95\x62\x33\x8a\xa5\xc2\x5c\x13\xed\x17\x0c\x30\xc6\x79\xd6\xf4\xe2\x92\x0f\x8e\x48\x3a\x94\x08\x12\x70\x6e\x9b\x25\xc3\x4f\x61\xfc\xc4\x0d\x56\x38\x1f\x75\x6a\xca\x12\x64\x0d\x71\x78\x6f\xe9\xf2\x06\xa3\x3d\x49\x09\x77\x93\x7d\x93\xaf\x6f\x49\xfd\xcd\x3b\x33\xfc\xcd\xa3\x32\x2d\xdc\x59\xde\xb3\x07\xa7\xad\x8e\xf9\xef\x3b\x22\x33\xc4\xf3\x5f\x16\xfc\xb4\xe2\xb8\x0e\x72\x54\x72\xb5\xcb\xb6\xad\xe8\x73\x0f\x28\x3a\xb8\x6b\x0f\x20\xb6\x6a\xed\x03\x3c\x12\x78\x17\xf0\x2f\xe5\xdd\x11\x9d\xe2\x3d\x1c\x9c\x1c\x3c\xae\xa1\x5f\x7e\x68\x05\x6d\x0a\x31\xcd\xb1\xcf\x71\xd6\x73\x94\x0b\x07\x30\xd1\x67\x60\xd3\xc1\xf1\xf4\xeb\xf7\x9f\xf6\xe3\x07\x77\xb9\x7b\x55\x9d\x1e\x65\x9c\x88\xf1\x23\xbe\x2c\xcd\x89\xcd\xe1\x6c\x5b\xc2\x5f\x0f\xc2\x7a\xe2\x13\x1a\xc2\x5a\xef\x4a\x75\x9a\x4a\x6b\x9c\x32\x80\x9a\x36\x5c\x10\xf9\x7c\x58\x7a\x86\x6c\x3a\xc0\x6f\xb0\x7d\x5b\x0c\xae\x54\xef\x61\x2e\x23\xfd\xc1\xc9\x33\x86\x9f\x3d\x18\xee\xce\x44\xbc\xa3\xee\x1d\x46\xac\x21\x96\xd5\x58\xdc\x91\x65\xbf\x9f\x9e\x39\x06\x5c\x42\xb9\x07\xbb\x1d\x7a\x99\xce\xe5\x92\x15\xfc\xb0\x11\x72\x1a\x66\xa0\x67\xe0\xe5\x73\x17\x0d\xe1\xf7\xcc\x3b\xbc\x6a\xcf\xdd\x1b\xc2\x40\xb7\x90\xff\xe0\x6c\xdb\xc2\x5f\x7f\x85\xec\x55\xe6\xc3\xb3\xfa\x5b\xb4\x4f\xce\x86\xe1\x2f\x2b\xca\x36\xde\xfa\xc4\x06\xb6\xe9\x53\x78\x31\x8e\x31\x5d\x7b\x09\x79\x6b\x77\x6a\xfe\x48\x53\x96\x89\x24\x9f\x4c\x3a\x3f\xf2\x8c\x61\x1f\x6e\x1d\x77\x06\x22\x2e\xf1\xb2\x23\x5c\x8a\xf2\xc5\x1c\x62\x7b\x31\xfc\xe6\xb6\xb7\x51\x7a\x04\xbc\xd5\x1e\x5c\xfb\x36\xb6\x36\xe0\x81\x42\xa7\x40\xce\x9a\xa2\x9e\x22\xf0\x7f\x9e\x53\xce\xf9\x47\xe6\x93\x8f\x42\x17\x3f\x27\xbd\x9e\x6e\xd9\x0c\x17\x2f\xe4\xc6\x71\xf3\xb7\x34\x7b\x9d\xfa\x47\xec\x70\xc9\x1b\xf1\x22\xa6\xa2\xa7\x62\xa7\xe2\x64\xd7\x13\xd0\xb1\x5b\x88\xa9\x59\x98\x06\x1c\x69\x91\xbe\x56\x9d\x3d\x3d\xeb\x6e\x08\xf6\xd8\x0b\x60\x07\x61\x07\xf5\x44\x28\x03\x3c\x2c\xfe\xdd\xcc\x19\x15\x7c\x8a\xbc\x87\xba\x43\xc9\x21\x3c\x42\x3f\x7e\xbc\xb5\x0c\x3d\x3f\x18\x77\xe0\x05\x1b\x3c\x81\xfb\x6f\x40\x02\xbd\x3f\x86\x34\x73\x76\x1a\x40\xfd\x39\xd7\xa4\x9e\xfa\x05\x65\xd5\xbf\x3e\x22\x0f\x80\x0e\x38\x41\xf9\xea\x4c\x36\x90\x33\xcd\x11\x1d\x73\x1d\x81\x26\xdb\xd6\xe6\x3d\x85\x45\x9a\x8f\xe9\x87\x2e\xc2\xb5\xbc\xf9\x62\x99\xcc\x14\x99\x5f\xaa\xd2\xa9\xaa\x07\x9e\x6b\x74\x76\x0b\x0c\xf8\x28\xa9\x19\x9e\x5c\x20\x94\x34\xaa\xaa\xa9\xd6\x8e\x28\xf2\xea\xf9\x6f\xec\xf2\x07\xec\xc2\xa8\x4e\x30\xf2\x4b\x78\xd3\x4b\x7c\x3e\xea\xb0\xcd\x48\x65\x7b\xae\x1b\x66\x0d\x69\xe5\x45\x25\x5c\x22\x1c\x4e\xa0\x33\x29\xf4\x5c\xb0\x16\x07\x78\xb9\x55\xf7\xae\xbd\x0c\x7d\x1d\x9d\x8a\x98\xa7\xc6\x7a\x85\x32\x6e\x99\x0c\x2b\xe8\x5c\x88\x27\xe7\xd2\x7a\x25\x55\x6e\xb1\xb5\x4b\x6e\x9d\xa0\x0c\x7d\xbf\x3a\x8b\xae\x8a\x79\xcf\x19\x3a\xab\xae\xc2\xa2\x1d\x1b\x08\x2a\xc3\x4f\x13\xbd\x9b\x09\x8a\x46\x27\xd4\xd7\x28\xd8\xb3\x8a\xd3\xcf\xcc\xbc\x3b\xf4\x0b\x20\xcf\x89\xbd\xdb\x09\x82\xba\x9c\xe2\xd5\x0f\xf4\x6b\xe6\xb5\x6b\x06\xfd\xda\x0d\x74\x5a\xe4\x36\x6e\x03\xdd\x2d\xd1\x10\xad\x65\xf9\xf9\x44\x77\x8d\x60\x08\x0a\x92\x3c\x53\x20\xe2\xf7\x9c\xde\xfe\x59\xe0\x1d\xd8\x19\x45\xca\x1a\xb3\xe8\x9b\xd2\x2c\xde\xa0\xa8\xdc\xb0\xe8\xf7\x57\x79\xc2\xd7\x1d\xc0\x77\x8f\xbb\x76\xff\x6a\xe3\x8e\xef\xf0\xcc\xf7\x7a\x09\x7c\xa5\x33\x24\x8e\xbe\x21\x16\x18\x18\xa5\xdb\xf3\xe5\x79\x09\x2d\x79\x49\x61\x00\x7d\x89\x11\xf6\x8d\x63\xbc\x29\xa9\x69\xc5\x32\x68\x60\xed\xaa\xa7\xed\x6a\xe0\xf5\xa9\xa7\xec\x35\x67\x7c\x32\x27\xb4\x1d\xc1\xb0\x1d\xe6\x78\x12\xc3\x9e\x50\xea\xf7\x2f\x17\x45\xaf\x54\x1a\xfc\x2a\x3f\x02\x10\x44\xf1\x21\x0b\xf2\x42\x3a\x02\x45\x90\x0e\x14\x3d\xf1\x46\xf6\xf0\xfa\x13\x7f\x20\x2b\xc5\xed\xff\x8c\xc3\x88\x42\x26\xdc\x68\x8f\x88\x26\x97\x69\x24\x97\x70\xee\x08\x95\x29\xa9\x72\x2d\xb2\xe8\x53\x6f\x95\xf4\x38\x25\xe6\x2f\xc1\xdc\x58\x23\xee\x29\x41\x3c\x5f\xeb\x33\xd3\x9d\x91\xdb\xa4\xf3\x2b\x21\x2c\x8a\x91\x0a\xc0\xee\xa3\xdf\xa4\x01\x35\x4b\x80\x4b\x23\x66\x51\x0d\x73\x02\xd7\x70\xc6\x9d\x6c\x8f\xaa\x92\xcb\x89\xb4\xe0\xa6\x35\x6d\x8f\x31\x24\xaf\x32\x2d\x8e\x49\x9a\xb7\x4d\x63\x66\x49\x8b\xb5\xdd\xc7\xa9\x3d\xe2\xc1\xa6\x3c\x88\x9d\x7d\x31\x0b\x96\x65\x33\x4e\x59\xaa\x66\x66\x13\xa7\x70\x62\xbc\x1a\xef\xe9\x40\x7c\x3e\xf2\xdf\x34\xa0\x98\x44\x5b\x6e\x8c\x2b\xbb\x51\xcd\xa4\x59\xf4\xc4\x51\xe0\x84\xa6\x50\x2a\xbd\x87\x4b\x1e\x62\xf5\x4a\xbb\x20\xe9\xca\x42\x4b\xa6\x93\x70\x2e\xc2\x83\xff\x43\xf1\x23\x10\x08\x16\x94\xff\xfd\xa7\x38\x30\x20\xff\xc3\xf9\xcd\x68\x37\x84\xd0\x29\x42\xe2\x07\x4a\x62\xa8\x69\x31\x11\xba\x95\xa4\x04\x04\x4b\xe2\x2f\xdb\x43\x22\x4c\xaf\x31\x09\x10\x18\xa5\x50\xe3\x94\x3e\x61\x6a\x5d\x30\x24\x51\x4a\x57\x71\x4c\x57\x31\x4e\x57\x09\xc4\x07\x51\xc6\x07\x71\xc2\x07\x31\xc1\x87\x51\x00\x6e\x88\x08\x6e\x04\x09\x6e\x98\x09\x6e\x14\x2a\x66\x88\x2a\x66\x04\x2b\x66\x98\x2b\x66\x14\x4c\x76\x88\x4c\x76\x04\x4d\x76\x98\x4d\x76\x14\x6e\x6a\x88\x6e\x6a\x04\x6f\x6a\x98\x6f\x6a\xf4\x07\xdd\x10\x09\xdd\x08\x0a\xdd\x30\x0b\xdd\x28\x4c\xf5\x10\x4d\xf5\x08\x4e\xf5\x30\xcf\x05\x10\x41\xaf\x6e\x5d\xa2\xbf\x3e\xa4\xb2\xce\xe0\xd7\x3a\x05\xb6\x61\x5e\x48\x61\x53\x59\x6a\x99\x55\x6a\x53\x6a\x6e\x99\x66\x6e\x13\x57\xc3\xb6\xe2\xae\x6d\x29\x43\xdf\x9a\xba\x2e\xfe\xe7\xfa\x37\x1d\x0c\x2e\x0c\x40\x95\xf6\x81\x9d\xd9\xcc\xcc\xca\xca\x7a\x60\xc7\x07\xc2\xaf\x2e\xb4\x94\x92\xd9\xd1\x72\xa3\x8f\x82\xa9\x69\x1a\xaa\x44\xa1\x67\x9c\xab\x72\x9c\xf9\x94\xa0\x56\xda\x7d\x92\x60\xe2\xa0\x79\xd7\x2f\x31\xa2\x75\xbf\x29\xc3\x18\xe1\x39\x09\xb7\x11\xca\x7d\x90\x04\x1a\x96\x79\x9f\xe5\x71\x0d\xc5\x3c\x19\x47\x0b\x87\xc5\x6a\x55\x65\x61\x7b\xcd\x69\x91\xeb\xb2\x40\xcd\xe0\x0b\x03\x11\x02\xc9\xb9\xe9\x36\xed\x06\x60\xae\x39\xae\x7b\x69\xc8\x69\x32\xd9\xcf\xe7\x98\xd1\xaa\xd3\x3f\xc2\x80\x2d\xbf\x5f\x06\xe1\x0a\xbc\x98\x04\x31\xf6\xbe\x1a\x25\x07\xf8\xbf\x5e\x00\x2c\x29\x7f\xdd\xff\xcb\x0d\x22\x88\x6e\xc8\x01\x50\x38\x48\x4d\x4e\x26\xa6\x7a\x4d\x66\xa6\x0f\x99\x5d\xc9\x37\x9f\xd4\xc7\x7f\xdf\x9c\x74\xfe\xdf\x3b\x1f\xf7\x10\xb7\x09\x4b\xf5\xf6\x86\x0d\x6f\xdf\x38\x95\x67\x63\xdf\x9c\xd5\x12\x5a\x1f\x42\xbe\x70\x6e\x8c\xfd\xa5\xc4\x7f\x7b\xc0\x2a\x42\xb2\x2c\x86\x0c\xc1\x80\xde\x3a\x8e\x3d\xc0\x13\xa4\x5a\xed\x28\xeb\x60\x0c\x81\x3e\x3c\xcb\x08\xcb\x57\x38\x2f\xeb\xe1\x32\x3b\x85\x7f\xca\x76\x74\xfc\x86\xcd\x3f\xdf\x66\xde\xfe\xad\xa7\xfb\x1d\xce\x1f\x87\x7b\xf2\xfb\x69\xfe\x69\x4c\xca\xe5\xd9\x59\x44\xb5\x44\x59\x4a\x42\x42\xf9\x57\x2a\xb1\x7a\x95\x94\x6d\xa4\xfe\x67\x71\x29\xa6\x81\x93\xc9\x6b\x4f\xa8\x43\x27\x9f\xc3\x22\xfd\x84\x06\x6a\x2d\x5b\x53\xbe\xc4\x52\xb9\xb6\xc1\x8a\x4d\xed\x49\x43\x63\x35\xc9\xd6\x29\xad\x84\x98\xd5\xbf\x26\x93\x8c\x05\xfa\x7c\xda\x30\x8e\x88\x00\xad\xdd\xf5\x4d\x9f\x4f\x2f\x0b\xbe\xa8\x95\x83\x92\x67\x54\x05\x1f\xfb\x3c\x24\x46\x3a\x32\x02\xc1\x16\x86\x5b\x3d\xad\xad\x96\xb4\xa8\x20\xa5\xd6\xfe\x7b\x45\x78\x8f\x21\x8d\xa3\x0f\x1a\xba\x3d\x3a\xe2\xc0\x31\xd6\xfd\xdb\x5f\x64\xbf\xc2\x0e\x6d\x75\xd5\xdb\xcc\xdc\x78\xdd\x54\x6c\x6a\x26\xe5\x37\xb4\xa7\xad\x89\xd7\x9a\x97\x4f\x2a\x89\x5f\x2a\xd8\x59\x81\x4a\x09\x58\xe8\x15\xb7\x31\x78\xfc\x1f\xbd\x66\x94\x8f\x1d\xe6\x6c\x8e\xf3\xe2\x4a\x06\xb0\x52\xf2\x10\xfd\x47\xc9\x36\x56\xdd\x33\x4b\x69\x90\x7e\xa2\xdc\x47\x37\x7a\xba\x35\x9c\x89\xcb\xc6\x49\x0c\xed\x6b\x49\x72\xcd\xc3\xa7\x8b\x47\x60\x12\x0c\x49\xeb\x71\x17\x2e\x5b\x37\x92\x7f\xaf\xaa\x26\x02\xb3\x20\x5a\x79\xfe\x0e\x49\x87\x63\x6b\x2c\xb7\xae\x6a\x49\xf8\xd6\xb6\xf9\x12\x30\x93\x11\x51\x16\x3e\xe6\x5b\x5b\xc7\x0e\x81\x0a\xca\xd5\x64\x14\xe7\xa2\x1c\x96\x9f\xc6\xcb\x96\x53\x21\xe8\x6c\x23\xac\x99\x98\x0b\xbe\x1e\x94\x60\xee\xce\xcd\x91\x1e\xa4\xec\xeb\x5a\x34\x33\x9b\x4a\x77\x0c\x50\x24\xc3\x26\x6c\x50\x75\xac\xff\xd5\xb2\x40\x32\xde\xcf\x38\xf7\xc5\x6e\x43\xb3\xc7\x77\xb3\x5a\x48\x81\x7e\xa4\x1c\xa9\x72\xda\xef\x58\x6f\xa2\x9f\x3d\xa1\x56\x51\xa5\x61\x76\x30\xc5\xcf\x2f\x83\x87\x8b\xf4\x64\xf1\xa6\x5e\x69\x98\x2b\x38\xa2\x5e\xa3\x37\xe2\xfc\x95\x3b\xcb\xea\xc8\xaa\xa3\xfc\xd3\xd0\x10\xdf\xc9\x8b\x47\x9a\x5a\x21\xb2\x4c\x38\x6b\xb6\xe9\x78\x49\x5a\xf9\x2f\x07\xcf\x13\x8b\x82\xdd\x99\x83\xaf\x80\x91\x3e\x3d\x45\x5d\x1a\xa4\xf4\x4a\xc8\x97\x6a\x85\xa0\x15\x0c\x3b\x6a\x0d\xc5\xf0\x94\xec\x90\x3c\xc6\x9d\xac\x4e\x16\x5a\x0d\x2e\x46\xf2\x1d\xf3\x2f\x44\xf7\x19\xeb\x9f\x04\xb0\x52\xc4\x87\xc4\x1b\x4c\xb3\x15\x70\x1b\x77\x6c\xb5\x76\x75\x5b\xfd\xdc\xb5\xbb\x7f\xfe\x6a\x9a\x2e\x80\x7e\x11\x34\xbf\xcb\xb8\xc9\x82\xc0\x96\xc8\x5b\xd5\xa3\x37\x78\x6f\x7a\xe0\x95\x55\x2f\x51\x17\xc1\xa8\x45\x6a\xa0\xe4\xcd\x13\x0f\xf3\x15\x88\x10\xac\xfc\x6b\x4b\x50\x0e\xfd\xf6\x77\x5f\x56\x5a\xa4\x81\xbb\x6f\xe6\x5a\xb3\xbc\x4f\xb7\x7b\x46\xb1\xe4\x89\xdd\x94\x6f\xf1\x13\x30\x81\x91\x38\xd4\xba\xa1\xbb\xcb\xa1\xae\x24\x99\xcd\x2e\xa4\xb8\x0b\xa6\x3e\x23\x61\xcc\x2a\x24\x5e\x60\x1f\x8e\x18\x0b\xc8\x34\x56\x3d\xfc\x23\xc7\x4c\x71\xf7\x1d\xf6\xc3\x5d\xe0\xa1\x43\x8d\x41\xe0\xb1\x43\x8f\x41\xe0\xfe\x55\x50\xfc\x56\xf5\x9d\xd1\xf0\x83\x91\xe9\x0b\xb2\x17\x1a\x4b\xcc\xbb\x8f\xea\x0e\x85\x29\xea\x6f\x1f\xd5\x1d\x0b\x53\x94\xed\x8f\xa2\x31\x6e\x43\xb4\x57\x41\x43\x34\x6e\xc4\x18\x92\xd8\x82\x70\xb3\xaa\x57\x08\x23\x0b\x95\x28\xb6\xd6\xc4\x14\xd0\xa4\xd8\x07\x1d\xc3\x55\x87\xa6\x78\xa9\x4e\xe3\x08\x6f\x57\x59\x72\x57\x77\x8d\x49\xd6\xa7\x6c\x0c\x4b\xf2\xfc\xba\xab\x94\x51\xee\x49\x0d\x6d\xb1\x2d\x6e\x54\x4a\x0d\xbb\xcc\xdd\x96\xa4\x4c\x93\xf8\x3a\xdc\x4e\xb5\xfd\x1e\x10\x5e\x4a\x01\x3c\x30\xd4\xb0\x5d\x89\xf3\xa5\xb5\xeb\x94\x0f\x57\x82\xf3\xae\x61\xb7\x13\x38\x96\xce\xc8\x8f\x0a\x0f\x38\x7d\x75\x25\xf7\x95\x13\x1d\x0a\xae\xe7\xb9\x93\x8d\x3f\x16\x13\xf2\xcd\x08\xf7\xbc\x54\x91\x3c\x1b\xc5\x81\xde\xd5\xcd\xae\x4f\xd1\x7c\xd7\xa7\x79\x33\x54\x5a\x22\x5f\x17\x86\x85\x0e\xbc\x33\x99\x8b\x11\x01\x2b\x00\x3a\x04\x58\x40\x09\x74\xbc\xd8\xe5\x34\xdf\x9c\x28\xa2\xcb\x4b\x67\x9b\x8f\x6c\x7f\x1f\xe4\x8a\x2b\x95\xfa\x50\xc5\xd4\xfb\xe2\xf0\xe1\x06\x8c\xda\xf8\x67\x2b\x8b\x46\x8f\xa5\x88\x17\xa8\x04\xe9\x84\x9b\x55\x4d\x57\x86\x80\xea\x3d\xa0\xfd\x03\x37\x64\xb4\x17\xa5\x04\x37\xab\x4a\xa9\xb5\x21\xc1\x30\xb9\x43\xb3\xec\x0e\x02\xbf\x3b\xd9\xea\xe7\x3f\xee\x2d\x31\x78\x76\x12\xd7\x44\x4c\x51\x6c\xf2\x92\xa2\x60\xcb\xc8\x42\xa7\xa4\x9f\xce\xf8\xf0\x6a\x82\x87\xe8\x04\xe4\x45\xe6\xd0\x3f\xf2\x61\x43\x34\xec\x39\x31\xa4\xfd\x0d\xb8\x88\x2c\xcf\x5c\x44\x10\x1e\x44\x14\xef\x85\xfe\x8e\xa9\x85\x73\x9d\x9f\xe5\x81\x25\x5b\xf3\xa3\xf9\x65\xf6\x25\x28\xb5\x24\x81\x3d\x28\xfa\x30\xb0\x6d\x48\x73\x6d\x94\x74\xcf\x0f\x5d\x0d\x6f\x3b\xec\x08\x17\xc4\x9d\xed\x1a\x99\x35\x37\xdf\x16\x11\x07\x5b\x76\xb1\x55\xf8\xf2\x13\xca\x3a\x75\xa5\xc4\xc7\x96\x0a\x69\x9e\xef\x1b\xf9\x5b\x86\x90\x38\xca\x9b\x00\xf9\x17\xe5\x98\x4f\x95\xf9\x57\x6d\x02\x0b\xc7\x99\x7b\x5d\x97\xa4\xb9\x61\x61\xd7\x2d\x2e\x60\x69\xe6\x20\xeb\x83\x1c\x54\x32\x7d\x20\xb2\x45\xb9\x08\xa0\x5d\xbc\xf4\xe5\xf3\x67\x41\xbd\xbc\xae\x2b\xfd\x45\x41\x9c\x1f\x8c\xcd\xc6\xd7\xf9\x67\x02\x41\xf9\x5b\xe0\x74\xb1\x94\xa6\x0a\x3d\xfc\xbc\x43\x58\xb0\xd8\x1b\xaf\x1e\xe4\x01\x0a\x88\xd0\x73\x1e\xcf\x65\x9b\x22\x13\x16\x10\x83\x6b\x1a\x2c\xe1\x65\x3f\x7a\x23\xb5\x7c\xfd\x63\xbe\x7e\x51\xa7\xb8\xbc\xa1\xed\x0c\xbc\x95\xec\xf1\x22\xd5\x85\xb6\x60\x75\x2b\x73\x42\x46\x19\xf8\x54\x43\x1e\x42\xfd\x20\x0a\x2c\x64\xbe\x4a\x34\xe6\xc1\x8c\xb8\x6c\x99\xd6\xda\x18\xc5\xd1\x75\x7c\x8f\x8f\xaa\xab\xfa\xca\xf8\x32\xff\xfe\xb5\x31\xff\xa1\x22\x3e\xb4\xfc\x1c\x43\x52\xc9\x05\xc6\xdc\x80\x88\x28\xa4\xeb\x04\x85\xc2\x46\x18\x45\x06\x2f\x39\x1f\xc8\x06\x3f\x36\xd7\x4d\xd5\xc8\x46\x24\x01\x7a\xc7\xf6\x5b\xe8\xbe\x94\x6a\x21\x10\x05\x9e\x6a\x31\x10\x66\xba\xac\x50\x1a\xd4\x9a\xed\xb7\x3c\x28\x0e\x5b\x5d\x14\x05\xbc\xe5\x7c\x20\x07\x3c\xd3\x50\x37\xbc\x82\x4b\x78\xbf\xaf\xaa\x9b\x1e\x7f\x85\x77\x0e\x76\x98\x05\xfe\x9b\xf1\xf6\xaf\xc7\xc0\xfe\x9a\xf0\xb1\x1a\x89\x31\xb9\x51\xe3\xed\xf0\xd3\xd0\x7e\xb9\xb2\x31\x39\x8b\x31\xb9\x13\x63\x81\xd0\xd3\xe0\x7e\xb9\xf4\x31\x39\x8d\x31\xb9\x95\x7d\xdd\x3c\x3c\x70\x41\x85\xba\x95\xe3\x5f\x46\x04\x06\xc3\x1e\xfd\x9c\x47\xe6\x88\x5e\x81\x72\xb6\xff\x75\xdc\xef\x6f\x00\xd1\x13\x24\xc6\x1b\x52\x57\xe5\xe4\xed\xfb\xbe\xfb\xda\x47\x1e\x40\x86\x27\x16\x8d\xf8\x41\x4c\x96\x48\x8d\xf4\x13\x2a\x94\x8c\x0e\x1b\x04\x2c\x27\x90\xc4\x27\xc5\x4a\xad\x19\xa1\x5a\xd9\xa3\x66\x6b\x71\xde\xee\xb2\xb8\x67\x49\xff\xfa\xb2\xbd\xa8\xc5\x67\xc7\xec\x7a\xbb\xad\x07\xf4\xfa\xcd\xa3\xff\xf6\x3b\x2f\x19\xaf\xe0\xfc\xb9\x43\x7a\x84\xfb\x3a\xdb\xc3\x37\xff\xd1\x2f\xef\x19\xe8\xe7\xa3\x58\x50\x42\x0e\x14\xa6\x3a\x7c\xa1\x5c\x38\x5b\x7e\x39\x46\x01\xeb\x13\x8f\x8a\x20\x28\xe7\x78\x73\x45\x3b\xc2\xa5\x3d\xc2\x9d\x93\x44\x42\xb2\xc6\x99\xb5\x26\x6d\xd1\xc6\x68\x24\x42\xaf\xd0\xb2\xc1\x3c\xe4\xcc\x89\xe1\xbe\x85\xbb\x3a\x71\x18\xa0\x5f\x80\xf8\xa8\x36\xf0\x07\x25\x32\x84\x34\x94\xf8\x05\xcd\xf4\x93\xcf\xf6\x4e\x01\xeb\x05\xaf\x35\x82\x3b\x34\x0c\xf5\x87\x64\x01\x3d\x98\xd8\xfc\x65\x3e\xa6\x38\x16\x2a\x8e\x08\xbb\x28\x52\xf7\x57\x47\x84\x66\x84\xaf\x7b\xb4\xaf\x88\x7d\xd1\x0f\x9b\xef\x89\xba\xbf\xfe\xb1\xbd\xab\x2f\xed\x62\xb0\xb1\x0d\xcc\xb0\x70\xf3\x6f\x54\x7a\xc5\x1c\x2f\x0e\x5f\x1f\x09\x62\x15\x96\xa5\xe6\xb9\x6b\x46\xca\xfa\xee\xd6\xe9\x06\xde\x4d\x77\x2c\xf7\xb4\xac\x1d\xd7\xcf\x4b\x88\xcb\x1f\xe0\xbf\x82\xbf\x0b\x6b\x9f\x82\xd6\x77\x56\xf2\x2a\xfd\xde\xaf\xc1\xff\xbc\x34\x1f\xf7\x57\xf9\xe7\x7f\xfb\x74\xab\x9c\x8d\xf0\xc6\x9b\x7c\x49\x75\xeb\x58\xa7\x1a\x50\x96\xdc\x8f\x96\xd8\xef\x0f\xf9\x02\xa1\x45\xe9\x2c\x9a\xd1\x9e\x98\x68\xc2\x99\x75\x5c\xce\x04\xc4\x09\xc9\x62\xe5\x42\x95\x00\x34\xe9\x98\x78\x20\x74\x28\xb4\x08\x20\x84\x24\x09\x09\x95\x02\x53\x25\x8c\x64\x49\xaa\x18\xb4\xfc\xc2\xf7\xca\xe0\xe3\xbe\x39\x00\x0e\x71\xe9\xcb\x4c\x46\x83\xee\xc2\x12\x41\x1f\xc2\xe3\xcc\x37\x74\x5a\x7f\x7e\x50\xbe\x3d\x75\x9d\x81\x4a\x1a\x21\x40\x13\x87\xf5\xe2\xa6\x0a\x36\xff\x6f\x1a\x61\x7b\x74\xe6\x7a\xb5\xc9\xe5\xb4\x7e\x7e\x4b\x7b\xd9\xdf\x78\x28\x77\xc3\xc9\xf4\x71\xab\x0a\xb1\x75\x9d\xf2\xe0\xee\xcc\xe5\xc5\xc0\x36\xa6\xab\xa7\xf1\xe0\x45\xd1\x5f\xff\x7a\x7a\x9a\xf2\xdc\x61\xab\xd9\x95\xa5\xa7\x90\xda\xc4\x15\xce\xa3\x98\x8e\xbe\x1e\x17\x25\xed\x11\x5f\xbf\x6d\xdf\x31\x9e\xf1\x22\xc4\x20\x54\x23\x6e\x7b\xe3\xe8\x92\xa6\x6d\x84\xfb\xe3\xb4\xa2\xe4\xf5\x29\x63\xc8\xcc\x2f\x7c\xb9\x96\x7b\x53\x0d\xeb\x2d\xe4\x3a\xfc\x10\x31\x6f\x5d\x77\x43\x0f\x8b\x15\x0e\x20\x0a\xbc\x5c\xd8\x59\xf5\x1b\x90\xf9\x1d\xae\x4a\x15\xbc\x34\x07\x47\x60\x20\xec\x82\x4a\xdc\x8c\x2c\x06\xbf\x23\x00\x62\x0a\xc6\x1b\x18\x24\x6e\x9a\x85\xf0\x3b\xe5\x19\x84\xea\x31\x84\x0a\x66\x1a\x2f\x90\xa5\x80\x87\xfb\x86\x91\x9a\xcc\xd4\xa8\x32\xee\x3a\x03\x54\xf8\xe1\x0e\x62\x3a\x12\x9b\xac\x9d\x1f\xd1\x89\x4b\x15\xec\x26\xe0\x1f\xe9\xea\x9c\x21\x2b\xe3\x25\x3d\xed\x39\x2d\x6b\xf6\xa4\xb7\xcc\xe4\x5b\x1a\x05\x3f\x9a\xbd\x6c\x64\xbc\x4c\x24\x34\x62\x7c\xaa\xa0\xc9\xe0\x6d\x41\x26\x03\xff\x47\xd3\xe6\x54\x57\xf1\x08\x79\x31\x1d\xd4\x81\xde\xfe\xbe\x8a\xf1\x89\x24\xaf\x7b\x62\xb5\xde\xc5\xfc\xc7\xd5\xd9\xc3\xc3\xd9\xd5\x07\x8e\x86\x86\x9c\xb6\xb6\x5c\xfa\x64\x86\x19\x33\x16\x9d\xd6\x08\xce\xe3\xe4\x5f\xd0\x5a\xfb\x8e\x8a\x0d\xb5\xf3\xb3\x5a\x79\x99\xaa\x2b\xf5\x37\x51\x9d\xa6\x98\x96\x86\x20\x81\x06\x09\xdf\x98\xd7\xc0\x81\x2c\x99\x00\xb3\x9d\x83\xf6\x92\x40\xd8\x4a\xa3\x64\x05\x8d\x76\xa1\xdf\x54\x74\xe3\x92\x11\x46\x70\xd3\x92\x58\x35\x30\x19\x52\x24\xa3\x92\xbf\xe0\x12\xd9\x54\xc8\x8a\xe7\x18\x49\x4c\xfa\xaf\x43\x75\x24\x07\x30\x79\xd9\x83\xd7\xc3\x39\x40\x4b\xd0\x53\x70\x47\xbb\x9b\xff\x4e\xdc\xa9\x6a\x64\x4d\xe2\xa1\xa7\x97\x42\x6b\xfd\x26\xba\x6c\xd6\xc6\xa7\xc9\x68\xfc\x69\xc5\xc4\x99\x1e\x42\x6d\x0d\x47\x91\x4d\x35\x31\x07\xb3\xd6\x21\xff\x57\x54\x51\xeb\xd2\x52\xb5\xb9\xff\xb4\x80\x66\xc4\xa6\xda\xec\xd2\xde\xa1\xa3\xe8\x60\x5d\x4d\x4d\xa3\x66\x4a\x72\xac\x4a\x5e\x27\xf2\x1e\x85\xee\x5a\xfd\x6d\x56\x8a\x90\xe1\x31\xff\xea\xa2\xd3\x22\x04\x77\xb6\xa3\xae\x59\xe6\x4f\x66\x7e\x0e\x3a\xaa\x71\xf3\xfb\x34\xf5\x72\x9e\xe7\xbd\x2f\x87\x20\xc3\xb4\xa5\x9b\x96\x5b\x7b\x87\x69\xbb\x9b\x9a\xf4\xe2\x56\x95\x3a\xa1\xe5\xb8\x33\x5b\x1c\xc6\x11\xdb\x72\x1a\x79\x8a\x8c\x47\x57\x5d\xd5\xce\xf3\xfb\x71\xb4\x4d\xee\x2b\xb8\xdf\x8a\x43\x6b\x96\xd3\x89\xae\x4b\x24\x2f\x2f\x4b\xcd\x88\x59\x61\xbc\x85\x5b\xd7\xd9\x43\x05\x75\xab\x57\x83\xfb\x46\xf0\x2f\x19\xbe\x40\xcf\x20\xe9\x43\x84\xe1\xf8\x12\xc8\xee\x55\xbc\x84\x5c\x2c\x30\xbf\x55\x5f\x45\x5d\xac\x31\x02\x38\x34\xc8\xa7\x66\x75\x99\x9f\x85\xa0\x57\xd1\x9b\xc8\x2e\x67\x3e\x03\xec\x0b\x1c\x3f\x01\xa4\x15\x69\x2d\x57\x59\x5b\x70\xd2\x88\x9d\xa8\x05\x43\x0a\x4e\x49\x44\x17\x1c\x92\x88\x6a\xd7\xc4\xf9\x79\x08\xb9\xb0\xdd\xbe\x16\xec\x25\xbd\x41\xdc\x8b\xcc\x5a\x39\x7a\x70\x70\xfa\x6c\xdd\xcc\x27\xf8\x41\xbd\x25\xec\xe2\xab\xb0\x8a\x7c\xbe\x86\x00\xbd\x8b\xc4\x66\x9d\x00\x62\x3d\x4f\x8e\x33\xad\xd3\x81\x3a\xfb\xd9\x55\xcc\xc5\xc6\xef\xdb\x7c\xd9\x2d\xa2\xf8\xeb\xe3\x03\x0f\x7f\xa3\x8f\x72\xa8\xd2\x06\x2f\x49\x32\x0d\x23\xe3\x96\xf5\x1c\xa7\xe0\x3c\x77\xf3\xbf\xee\x0e\xab\x96\x06\x49\x6d\x15\xc3\x97\x76\x5b\x19\x4d\x43\xbd\x4e\x22\x1e\x76\x10\xb7\xf8\x9f\x1f\xa3\xa8\x90\xcb\xa3\x17\x32\x3d\x9f\x2b\x19\x53\xa3\xa3\x87\x3b\x9b\x79\x9d\x8c\xad\x47\x7d\xc9\x82\xaf\x1f\x3c\x40\x28\xef\x9e\x57\x6b\xb4\x1f\x2c\x09\xd1\xb2\x45\x44\x06\xae\x00\x25\x1d\x9b\x28\xa9\x72\xf0\x9e\x22\x02\xe0\xa7\x84\x55\xa8\x20\x16\xad\xf2\xdb\xdd\x9a\x19\xaa\xbc\xe0\xaf\xb8\x71\x49\x15\x7f\x3b\xf1\x9e\x1c\x2b\x82\x57\xb1\x1d\x55\x8e\xf7\x75\xee\xa2\xe9\xf5\x1b\xe6\xf5\x88\x44\xb1\xd9\xa8\xbe\x7d\x52\xde\x56\x1c\x6e\x31\x2f\x27\xe8\x00\xd1\xe6\x58\x5a\x53\x13\x13\x64\xb5\x00\x2b\x94\x50\x68\x2a\x5c\x10\x09\x4a\x1f\x07\x12\x98\x16\x38\xb8\x32\xea\xcd\x1f\x63\x49\x5b\x9a\xac\x07\x8a\x1a\x2d\x1b\xe7\x0c\xae\x65\xc1\x11\x66\xab\xd9\xf0\x05\xfb\xcd\x47\x62\xb9\x97\x9a\x66\x3c\xc2\x77\xfa\x6d\x18\x16\x86\xcb\x05\xe1\x3b\x26\xdf\xa1\xd1\xdc\xeb\x6c\x5a\x18\xb2\xfa\x75\x4d\xaf\x16\x0c\x2d\x61\x3b\x5d\x41\x7c\x77\xe7\x75\x4b\x46\x85\xad\xfc\x2c\x66\x2b\xe7\x18\xb8\x66\xad\x49\x5a\xf9\xd6\x3f\xb0\x00\x54\x7e\x12\x17\x86\x8c\x3f\x3c\x1a\xc6\xcb\x83\x01\x46\xbb\x7b\x2f\x89\x7d\x2f\x04\x06\xef\xa3\x8d\x35\x89\xd3\x4e\xfa\x09\x5f\xc0\xa9\xc3\xdf\x18\xf9\xb9\xa0\x38\x5a\x68\x80\x03\xd4\x18\x5b\x9d\x51\x3e\xa9\x4b\x47\xf5\x1d\xea\x0d\x87\xcf\x41\x92\x56\x5a\x8a\x5a\x9a\x13\x6b\xe1\x68\x96\x6d\x50\xa9\x89\x92\x9f\x83\x63\xcb\x84\x03\xb3\x78\x78\xa8\x18\x7d\xcc\xc5\xcf\xd3\x2a\x47\x89\xe0\xda\xd2\x50\x36\x34\xb6\x71\xae\x81\xa7\x1e\xac\x3f\xc6\xfd\x63\x0f\x72\xe8\xb9\x5f\x9e\x19\x1f\xa0\xd2\x1d\xfd\x14\x6e\xd8\x97\xc0\x0c\xc2\xa6\xf1\x2b\xb8\x75\x0a\xb3\x14\x87\x76\x66\x64\xca\xaf\x6a\x24\x80\x52\x5a\x56\x3b\xd3\xd0\xb3\xc4\xd6\x38\xab\xeb\x32\x00\x59\x8a\xb5\xa0\x8f\x4e\x4e\x4e\x99\xab\xf6\x96\xac\xe9\x84\x17\xad\x5a\xca\xa1\x3a\x03\x8f\x69\xb6\xb0\xd1\x72\x9a\x6f\x8d\x2c\xe8\x8f\xbc\x24\x1f\xde\xc8\xc7\xc2\xcb\x5a\xd5\xe7\xbb\x1c\x79\xfe\xc9\x81\x60\xb7\x1d\x2a\x98\xc4\x42\x12\xf0\x46\x2c\xc5\x7d\xb7\x88\x5b\x59\x69\xff\x72\x8a\xac\x5b\xe5\x9f\xcc\x60\x74\x4f\x2f\x41\xe8\xfb\xc0\x73\x0a\x72\xea\xc1\x32\x70\x83\x07\xc8\x1d\xbe\xa3\x13\x4f\x94\xa1\xbf\x0c\x60\x1b\x40\x0a\x11\xab\xce\xa6\x9b\x59\xb0\xd8\x80\x87\x0f\xcb\xa3\x7e\x53\xeb\xc9\xa8\x4f\x9b\x40\x22\x76\x3f\xcb\x88\xe9\x2f\x01\xd5\x42\x9e\xc8\x28\xc4\x83\xe9\xd2\x48\x58\xea\x20\xc2\x61\xa1\xb1\x40\xe1\x7e\xcf\xcb\x0c\x56\xc8\x48\x9f\x65\x83\x54\x62\xc5\xfd\xaf\x84\x0c\xd5\xe4\xf1\xa0\x4a\x5a\x94\xc7\xe3\x35\x79\x38\xb9\x6a\x43\x1a\x50\x41\xc7\x15\x0b\xf1\xe1\xae\xb3\xa6\x67\xdb\x3f\x9a\xad\xef\x1b\xb8\x90\x04\xeb\x87\xf2\x55\xf8\x37\xd2\x16\xe3\xa7\x90\x11\x8a\x0b\x4d\x95\x13\x59\x3d\x8d\x4c\xb7\x9d\xb9\xe7\x0a\xf1\x6a\xde\x61\x0e\x0e\x0c\x5b\xec\xad\x55\xa2\x3c\xc4\x75\x36\xfc\xf1\x36\x14\xbd\x0c\x6d\x78\xb3\x07\x8a\xa0\x13\x9d\x00\x74\x4c\xe0\x6f\x64\xf6\x60\xae\x1f\x00\x0e\x08\x1b\x7e\xd3\x32\x75\x54\x35\x36\x16\xad\xc9\xd2\xd5\x47\xce\x45\xcc\x83\xa9\x8e\x72\x0a\x3b\xb1\x68\x5a\x08\x4a\xae\x73\x75\xe3\xce\xc7\xbe\xf5\xc1\xbf\xf4\x42\xcd\xda\x46\x6a\xd6\x6d\xdf\xbf\x1b\xfb\x91\x84\x04\xe3\xda\xfa\x19\x5c\x5a\xad\x9f\x7b\xb5\x79\x12\x6d\xa9\x23\x3c\x67\xb9\xc3\x72\x5e\xb0\x95\x23\xf9\x67\x5a\xdf\xff\x3c\x2f\x4d\x0b\x3d\x62\xef\x27\x9c\x6c\xbc\xca\x9e\xa9\xe8\xd9\x3b\xd2\x2d\x0c\x1a\x9c\x94\xec\xdd\x8e\x2b\x71\xdf\x61\xf1\x7b\x3c\xdc\xca\x38\x6a\xca\x63\x98\x55\xd9\xdc\x79\x3b\xaf\x09\x5c\x8f\x1e\x36\xe7\x53\xb5\xae\xa5\xdb\xad\x8b\xda\x3a\x0c\x89\x81\x20\x63\x60\x79\xfa\x08\x03\x02\x39\xe1\x4c\x87\x0f\x33\xe8\x17\xd1\x8f\x0a\x14\x55\x1b\x7b\xc8\x91\x4d\x7f\xc5\x1f\xb1\x1c\x77\x8d\xdc\x2e\xfb\x64\xd9\x4d\xf0\x97\x96\x0b\xd6\xff\x50\x67\xf9\x58\xb9\xfd\x84\xc8\x8a\x08\x15\x08\x87\x40\x1b\x44\x5f\x7a\x1f\xe8\xd2\xb6\x85\x02\x04\x5a\x92\xe0\xe8\x40\xc4\x96\xdb\x9c\x65\xab\x5e\x75\xa9\x77\x9f\x3a\xc0\xd0\xa4\x60\x58\x12\x55\x41\x50\xc1\x13\xa1\x49\x85\x84\x4c\x45\x2f\xa0\xd6\x69\x6f\xa4\xc0\x85\x85\x5b\x63\xd4\x19\xe5\x63\xb4\x6d\x97\xad\xd9\x89\x47\x54\x73\xe3\xba\x50\xb2\xb2\x79\x37\xa8\xec\x9e\xfe\x59\x62\x1b\xb1\xb3\x59\xf9\xb7\xc7\xcc\x64\x7e\xd5\x0e\x77\x57\x74\x9e\xf4\x22\xb7\xd9\xdc\xab\x68\xb0\xe7\xaf\x37\xe9\x7e\xb8\x0c\xe5\x5d\x05\xb3\xbf\x46\xcb\x0e\x5f\xf6\xaa\x2a\x2c\xef\x53\xdd\x11\xbc\x2e\x29\x14\xab\x28\x2d\x2f\xe8\x59\xd4\x5e\x78\x3b\x77\xaf\xcf\xbb\x58\x3c\xf7\x85\x35\x9b\x0d\x0e\x6f\xd3\x5a\x2f\x1c\xe3\xa0\x90\x08\x8f\x58\xe1\x1a\x74\xc9\x70\xc1\x9a\x8f\x81\xe6\xd7\x29\x86\xc0\x25\x2b\x19\xb2\xfc\x39\xd8\x01\x37\xc5\x07\x84\xb2\xc5\x8a\x55\xb5\x38\xad\x20\x7e\x4e\x48\xb6\x90\x43\x13\xb1\x92\x52\xcf\x26\x41\x9a\x4b\xea\x76\xaf\xa2\xa1\x18\x4b\x8a\xf5\x34\x8a\x23\xe6\xf6\x80\x5f\x3d\xf3\x4f\xc9\x1f\x41\x70\x2f\x57\x76\x15\xe0\xdf\xb7\x09\x76\x74\x30\x99\x06\x95\x79\xcb\xb9\x7f\xdf\x5e\xd9\x5e\x2f\x47\x26\xd2\x5b\xb4\xbd\xa3\x4c\x70\xe6\xf8\x3a\x5c\x1b\x24\x55\xf9\xad\xdd\xdb\x96\xd8\x34\xde\x2f\xa3\x51\x0c\x75\xac\x40\x59\xec\x50\xe1\xf2\x6f\x5b\x4e\x35\x62\xe3\x3c\x09\xce\x2f\x78\x98\x1b\xc8\x4d\xde\xb6\x71\x54\x9f\x07\xdc\x5f\xe0\x8b\xe4\x9d\x9e\x65\xb8\xe6\xb7\x34\x3b\x39\xa8\x78\xaf\x37\xf6\x17\x0e\xf4\x87\xc9\x02\x00\xb8\xa3\x7a\xc1\xaa\x43\xb7\x03\x31\x11\x4a\xb5\x72\x64\xe8\x06\x21\x13\x3f\x83\x37\x0d\x23\xc1\x74\x14\x64\x4d\x86\x00\xa7\xd8\x44\xd9\xc9\x82\x14\xf1\x63\x13\x61\x13\xa2\x81\xfa\xc7\xaa\x52\xdc\xa2\xb2\x3d\xa7\xb9\xa3\x10\x39\x97\xef\x1a\x84\x74\x44\x1f\x24\xaa\x50\xe9\x20\x7e\xdf\xaa\xc6\xd6\xea\x82\xb2\x87\xbf\xbb\xf9\xc4\x7e\x68\x3b\x9b\x12\x82\x8c\xd2\xbe\x6d\xd5\x0b\x89\x5c\x41\xba\x55\x3d\x89\xe3\xa3\xf2\xaf\x98\xb5\xb0\xe5\x93\xda\xa7\x8c\xca\x5a\xff\xea\xa2\xf3\xc8\x2a\x5a\xb9\x5f\x55\x2e\x3a\x10\x51\x9c\x3b\x1b\xeb\xde\x3b\xcb\x49\x1e\x28\xfc\x55\x2e\x2e\x1a\x98\x59\x23\x61\x2e\xea\x3e\x28\x07\x07\xce\x36\x2c\x69\x2f\x2e\x18\x0c\xce\xaa\x8c\xe3\xe5\xee\x74\xc6\x99\x9f\x65\x2c\x26\x34\x59\x6f\x5b\x7a\xa3\x6f\xce\x2e\xef\x71\x6e\x1d\x90\x59\x34\x18\xa6\x79\x67\x0e\x5d\x35\xa3\x7b\xff\x3a\xec\xb4\x0f\x6c\xef\x32\xa7\x7b\x29\x4e\xc6\x66\xc0\x66\xad\xef\xa4\xcd\xfd\xfc\x7f\xe6\x54\x6d\xe7\x4d\xd7\xd0\xf4\xab\x11\xfe\x4d\x9d\xd5\xec\x0c\x16\x26\x48\x79\xf1\x1d\x1f\x03\x03\x49\x3c\x8f\x82\xc0\x26\x62\xba\x50\x44\x2f\xfe\xcb\x48\x12\x58\x78\xf0\x2b\xe5\x1c\x06\xc2\x6d\x38\xe5\xf7\xca\x34\x34\x38\x6b\x96\x88\x27\x83\xe1\xde\xbb\xb3\xb8\x22\x3a\x5c\xea\x2b\x4b\xd3\x5a\x90\x73\xb2\x09\x06\x44\xbb\xff\x6c\xb2\x08\x82\x5c\x73\x95\x6f\x49\xcf\xb7\x68\xdd\x56\xd3\x63\x64\x62\x55\x6f\x4b\x49\x9f\xe6\xdf\x80\xbb\x01\x37\x1e\xb2\x71\x7f\x05\xf3\xd0\x1a\x4f\x37\xf3\xed\xca\xe0\x97\x5f\xb5\xec\x27\xb0\x90\xf6\xda\xc3\x5b\x15\xb5\xfe\xdf\xa2\x36\x3b\x1d\x22\x6e\x35\xcf\x5f\xae\x32\x76\xd7\x55\x16\xf6\x84\x4f\xbd\x41\x82\xb1\xd3\x37\x5a\xe9\x35\x6b\x3b\x39\x89\x1d\xbe\x43\x27\x04\xda\x56\x7f\x5c\xa1\xbf\xc7\x0e\xcc\x98\x79\x45\xab\x99\x04\x09\x14\x41\xef\x89\xf3\x18\xc2\xe7\x28\x91\xff\xc8\xa5\x2b\xac\xaa\x04\x3d\x7b\xa9\xf1\x48\x9e\x7b\x11\xe2\x3a\x4c\xff\x9e\x54\x0a\x8d\x20\xd8\xf5\x13\xba\x04\x85\x7a\xee\xa7\xa6\xa8\xd7\x86\xda\xc3\x93\x1c\x34\x45\x28\x66\x86\xf2\x76\xfd\x4d\xb0\x43\x47\x43\xe2\xa5\x42\x69\xc9\xdb\xb1\x8d\xf4\x39\x22\xb6\xf9\xc1\x67\x9f\x95\xd2\xe0\x07\x44\x6b\x11\xfb\xa1\x50\x59\x12\xcd\x63\x22\xb2\xf8\x42\xd9\x09\x41\x17\xd0\x06\x29\x6b\x99\x54\x0c\xf0\x1e\xd3\xee\x29\x1c\xe3\x7e\x0c\xc3\x94\x79\x9f\x5e\xde\x45\xfb\x3e\xdc\x3d\xc0\x37\xd6\x92\xe4\x1c\xdf\xeb\xac\xb1\x98\xf9\x87\xf9\xfa\xe7\xf2\xb5\x0c\xee\x37\xe7\x96\xf2\x96\x8d\x8c\x67\x15\x92\xac\xdf\x72\x9e\xae\x63\x16\x0f\x06\x7c\x3b\xa5\xe8\x27\x5e\x16\xa5\x7f\x0d\xde\x79\xe6\xb4\x06\xe1\xdf\xf9\x22\x08\xfd\x0e\x74\x15\x15\x9d\x08\x64\x21\xef\x81\x85\xc2\xc0\x52\x59\xc4\x0d\xbc\x98\x6a\x46\xab\x07\x89\x87\xb0\xc2\x59\x0b\x35\x4d\x7d\x9a\x9b\xdc\x33\x1c\x41\x1e\x13\xc5\x75\x69\xb7\x39\x80\xa6\x2b\xdb\x51\xff\x08\x20\x86\xbd\x6f\x94\x95\xd1\x4b\x2b\xd8\x1e\x66\xb7\x9f\x14\xa3\xdb\x71\x0f\x38\xef\x13\xc9\x86\x6d\x4a\x6b\xb1\x18\x21\x9f\x22\x4d\xff\xdd\xd8\xfc\xf7\x9a\x91\xbe\x66\x28\x7c\x52\xa7\x2a\x4a\x59\xf6\x88\x1d\xde\x0a\xdf\xee\xad\xb9\x71\xca\x4d\x62\xa3\xf1\xe2\x72\xa5\x8e\x76\x47\x60\x2e\x09\x27\x3d\x33\xf7\x8f\xa6\x77\xd5\xef\xd2\xd2\xbe\xa3\x67\x5a\xee\xd7\x12\x85\xd5\xc7\x81\x41\x45\x04\xda\x5d\xd0\xef\xd0\xc4\x45\xb8\xc1\x1f\x70\xe4\x6e\xe8\xa1\x61\x61\x44\x8a\xbc\x30\x09\x21\x85\x44\xaa\xd8\x8c\x6d\xa1\xbe\x15\x25\xcc\x09\x25\x64\xe1\x44\x62\x60\x41\xc1\xb6\xfb\x59\xe6\x73\x96\xed\x3b\x50\xf0\x6a\x73\x54\xe9\xfc\x85\xab\x70\x85\x9a\x54\xea\xb8\xa0\xac\x6b\x81\x42\x54\xe4\x05\xf8\x06\xef\x83\x5a\x5b\x7e\x56\xce\xb3\x48\xdb\xa8\x3f\xa9\x42\xab\xc3\xbe\x9b\x7c\x4c\x8a\x18\x8d\xbd\x7a\xdc\x1a\x62\xbf\xe9\xe5\xa5\x61\x92\x59\x03\xd6\x5c\xab\xfb\x5d\xc3\x06\x67\xfa\xd9\x15\x99\xff\x19\xb9\x84\xdc\x06\x8b\xde\xf5\x9d\xb3\x51\xe9\xd5\x0c\x65\xe2\x62\x47\x30\x52\x89\x4f\x3e\xe3\xf3\x64\xb2\x34\xd8\x58\x19\x6b\xfd\xd9\x59\xfb\xcd\x59\x37\xe9\xf6\x77\xa3\x88\xcd\xe8\x55\x4e\x87\x96\x46\x07\xa3\x74\x41\xb1\xc6\x48\x5e\x37\x4d\x6b\x34\xad\x99\xd0\xee\xaa\xd3\x41\x85\x39\xfb\x7e\xfb\x3c\x2f\xf7\x14\xba\x41\x4c\x86\x56\x6e\xe5\xcf\x9f\x1d\x5a\x28\x1b\x05\x7f\x26\x81\xb7\x01\xcf\x71\xd7\xe4\x7a\xb2\xad\x43\xd6\xf5\xc2\x07\x7a\xfc\xbf\xad\xe6\xfb\xeb\xec\xf2\x3e\xea\x79\x3d\x6e\xdf\x51\x41\x12\x6d\x18\x66\xd9\xa5\x65\xd3\xe3\xde\xc4\x1e\x9f\x9e\xd3\x71\x16\x1e\xaf\xcb\xfc\x2f\xef\x9f\x0b\x62\xa7\xa4\xc9\x4e\x6d\xf6\x05\x0c\xcd\x07\x70\x03\x91\x07\x58\x9f\x33\x6a\xd3\x88\x9f\x22\x6f\x27\x8a\x01\x03\x28\x20\x01\x54\x02\x60\x51\xfe\xc7\x40\x3d\xf4\xd5\x28\x3b\x12\x04\x86\x81\x31\x16\xcb\x5a\x32\x2b\x60\x3a\x57\xcb\xe5\x82\x53\x9e\x36\x36\xa4\x4b\xac\x6c\x59\xc8\x82\xcb\x7e\xaf\xd0\xa9\xed\xec\xe6\x1f\x8c\xb9\x3d\xea\x21\x90\x56\x58\xff\x04\x62\x9b\x40\x80\x49\x21\x50\x45\x7a\x5b\x0c\xa0\x7d\xfb\xb3\x02\xb8\x07\x07\x12\x41\xd0\x2c\x87\xba\x82\x70\xd4\xc9\x16\x73\x44\xe4\x31\xee\xe5\x5e\xe5\x03\x58\xf5\x5a\x70\xb2\xa5\x2b\xa0\xa6\xc5\xe4\xe4\x67\x72\x6f\xa1\xe0\xf3\x48\xe0\x3c\x2a\x50\x1e\x0f\xee\x35\xd4\x71\xd6\xa2\x4b\x1b\x36\x8a\x36\x30\x8a\x3c\xd9\xc3\x04\x1f\xc6\xbd\xd8\x3b\x97\x3e\xc7\x86\xf4\xfb\x96\x16\x7b\xde\x06\xc6\x8f\x5f\x2e\x9f\x49\xa1\x85\x55\x25\x7f\xd3\xfe\xe9\x9c\x27\x51\x7c\xa7\x74\xd5\xba\x36\xb4\x54\x93\x5f\x23\x0e\x80\x99\x37\x6f\x2f\xf0\x3b\x4a\x44\x2d\x77\x95\xee\x6c\xf9\xec\xc3\x50\x26\x65\x97\xc8\xb2\x1d\xd5\x8d\x39\xd5\xba\x67\xdf\x60\xb3\xf1\x58\x37\xe6\xb6\xac\x41\x80\x85\x9a\xcf\x74\x40\xb6\xd3\x53\x8a\x78\x04\x9a\xea\x1c\x62\x89\x45\xf6\x4d\x6b\x25\xd8\xc8\x89\x08\x55\xe0\xd4\x60\x65\x13\x6f\x7d\x8b\x08\x66\x86\xbe\x93\x00\x2f\xbb\xdd\xf5\xc8\xa9\x39\xc5\x89\x05\x08\x5c\x4e\xd9\xa4\x86\x37\x10\x2e\x10\x6a\x78\x42\x44\x9e\x47\x3c\x6b\x42\x9a\x5b\xec\x3b\x38\xeb\x3e\x5f\x59\xc6\x02\xcb\xdb\xf7\x07\xb8\xf9\xbd\x9d\xde\x33\x62\xf3\xfb\x36\xb4\xb5\x84\x34\x7a\xcd\xe5\x9e\xe5\x46\x17\x59\x8e\xbe\x05\xd7\x0d\x97\xe4\xfc\xa8\x01\x1b\xcf\x77\xdb\x7f\x04\xd7\x54\x3a\x0f\x2a\x84\x0d\xf2\x03\x9c\x96\x66\xde\xb3\xf5\xed\xbc\x0c\x25\x86\xe7\x6f\x03\x19\xf0\xc0\x0c\xb3\xdb\xab\x8f\x83\x91\x17\x7c\xc7\x7f\x28\xf3\xe8\x70\xd0\x11\x65\x43\xf5\x4e\x40\x99\x88\x56\xbb\x13\x5c\x63\xd9\xa3\xa8\x75\x60\x3d\xf8\xb6\xa8\x4e\x82\xef\x1d\x8a\x51\x6c\x08\x5f\x74\xbb\xdd\xa9\xa2\x1a\x2f\x86\x04\x74\x59\x4d\xa6\xc5\x65\xf3\x36\x22\x35\xf1\x38\x1c\x1c\x22\x6f\xe4\xbf\xbd\x2c\x17\xe8\x08\xfa\x37\xe6\x7e\x1e\xdc\x3f\x37\xd8\x9e\x0c\xf5\x49\xee\x1c\x74\x4d\x98\xc5\x5c\x83\x1b\xba\xf9\xc2\xbb\x10\xad\x59\x80\x83\x00\xe0\x96\xa0\x23\x87\x8d\x98\x6e\xb3\x68\xb4\x92\x8f\x17\xaa\x4a\x36\x0b\x90\x06\x0f\x45\xa7\x8b\x87\x1d\x15\x10\xde\xd6\x9d\x51\xd5\x14\x12\x64\x27\xd1\x03\x43\x5e\x15\xb0\x40\x50\x15\x9f\xce\xf4\xe8\x71\xd0\x42\x3a\xd2\xdf\x5b\x8e\xdf\xaa\x66\xf4\x06\xcb\x2e\x35\xdc\x5c\xc7\x0f\x0f\xb7\x01\xf3\x94\xa5\x32\x92\x90\xd8\x19\xbd\x5a\x04\x75\xba\x04\x0e\xf4\x27\x0c\x5b\x7c\xf6\x8c\x20\xe9\x8c\x9c\xe8\x50\xc9\x5e\xb0\x05\x24\xe4\x39\x17\xd1\x44\x4c\x4a\x96\xef\xda\xb1\x73\x67\x21\x24\x1c\xa5\xda\xaa\xc8\x90\xa0\x2d\x34\x26\xb1\x79\xa4\x34\x90\x36\xb9\x78\xb1\x9d\xf4\xb9\xbc\xf6\x96\x58\x01\x97\x8e\xe4\xea\x17\x01\x4e\xb6\x83\x2a\x1a\xef\x83\x5f\x18\xd6\x8f\xec\x3e\x95\x90\xb4\x28\xc8\xd3\x5f\xf3\x47\x91\xe8\x62\x1d\xda\x24\x7e\x51\xdf\x3c\xd9\xea\xa9\xb8\x2b\x9f\x87\xc3\x22\x0a\x84\x9d\x2f\xaa\xf1\x16\xf7\x22\x3d\xe0\xf4\xc3\xe6\xdf\xb5\x2a\xd3\x16\xd9\x84\x9b\x6a\xb1\x05\x4a\xb7\x10\x6c\x01\x1a\x91\x56\x3e\x80\x66\x45\x70\xdb\x38\x26\x24\x48\xe7\x3c\x05\x55\x75\x8a\x61\xc2\x48\x05\xd7\x7d\xb1\xec\xc8\xd0\xcc\xce\x65\xf5\x03\xa9\xd4\xfb\x5e\x38\xd7\x2b\x32\x37\x1b\x3f\x8d\xac\x6c\x3e\x99\xdd\x9d\xa7\x05\x90\x21\x8c\x1d\x6f\x42\xb7\x6b\x66\x3d\xa3\xc8\x70\x4b\xdd\x6d\xb6\x1c\xd1\x19\xb8\x99\xf2\xdb\x27\xac\x55\x86\xd1\xa8\xff\x2f\xf4\x54\xe2\x36\x12\x85\xfe\xd7\x47\xfa\xc9\x2c\x6b\x13\x9f\x39\xe2\x28\x77\x78\x7c\x85\x06\x09\x17\x08\x4c\x68\x1c\xd8\x43\x92\x32\xfb\xab\x7c\x4c\x23\x18\x49\xbb\x1e\xa6\xb0\x85\x8a\x2f\xe5\xe3\x27\x6e\x64\x80\x6f\x61\xd9\xf7\x6d\x03\xcd\x9e\xc1\xc0\x93\xdc\x0c\x85\x03\x09\x0c\xaa\x8a\x4b\x17\xe1\x9a\xbe\x7a\xfd\x5e\xff\xd7\xfc\x6d\x4a\x65\x2b\x9f\x57\x6d\x36\xb0\x4a\xeb\x5b\xeb\x98\xb9\x12\x16\x29\x09\xd2\x10\x45\x54\x78\x01\x85\xce\x47\xe2\xb6\x2e\x69\x46\x12\x1b\xfc\x0b\x55\x2e\x82\x22\xc9\xf3\x62\xe7\x7b\x3b\xba\x6b\x8e\xe4\x16\x25\xf1\x01\xd7\x79\x09\x55\x99\x41\xc2\x6c\xc9\x84\x8b\xbf\xc7\xe7\xcc\x0e\xfc\x5c\x02\x44\x13\x94\x50\x27\x10\xcb\xa0\x59\x3a\xa5\x41\x6a\xa9\xeb\x95\x45\xa7\x75\x2c\x62\xf5\x16\x8b\x9b\x77\xc9\xf5\x56\xac\xb6\x2b\xb0\x9e\x30\xb0\x66\x6f\x87\xe4\x30\x87\x53\xd6\x3d\x47\xda\x1d\x1a\x0a\x4c\x02\x4c\x1c\x60\xf0\xb1\x02\xb6\x69\x7f\x8e\xa6\x53\x4d\xc8\xfc\x3d\x35\x0d\x3a\x6d\xd7\x3b\x7b\xa1\x14\xf0\x3a\x46\x97\x7d\xd5\x1b\x72\x18\xd1\x8f\x7f\xc1\x37\xd8\x34\x6a\x7c\x6d\xe2\xf9\x40\xc4\xce\xd6\x97\xbe\xca\xed\x55\x81\xc1\xa4\x48\x71\x8b\x03\xad\x47\x19\x96\xdf\xf7\x15\x87\x27\x16\xaa\x8f\x2a\xec\xd6\x87\xfb\xf9\x3b\x56\xb5\x9e\x23\x53\x89\x7a\xff\xfc\xa2\xfa\xd0\x20\x09\xfd\xfb\xd3\xe1\x03\xfb\x95\xf3\xd3\x92\x26\x2b\x04\x57\xe4\x1b\x0e\x2c\xab\xe3\x42\xbc\x3d\x16\x8b\x48\x4f\xfc\xc1\xa6\x0a\x65\x7c\xbc\xc2\xfa\xd2\x88\xa2\x49\x09\x2b\xce\x6e\x04\x0b\x4d\xa9\x31\x71\xff\x36\xbd\x16\xfb\xbb\xff\xaa\x50\xac\x36\x15\xd7\x41\xd3\x6f\x5a\x66\x05\xed\x1b\x15\x13\x03\x91\xe3\xef\xb3\x8f\x09\x92\x49\xcf\xe7\x23\x7c\xc8\xb0\x38\xd9\x86\xfb\xf7\xa7\xec\x77\x5f\xe6\x9f\xcb\xaf\x99\xca\x77\x87\xd5\x5e\x0a\x9f\xdd\x29\x41\xf7\xe4\x30\x1f\x0f\x7a\x1d\xf7\x47\x7e\xf8\x59\x8e\xcd\xa6\xae\xda\xab\x33\x1f\xdc\x1f\xfe\xd7\x68\xc0\x46\xd5\xae\x4d\x8a\x8b\xf6\xef\x1f\x28\xbf\x59\x3b\xc2\xb3\xe6\x00\x2c\x93\xe6\x7b\xcf\xb6\x0e\x8a\x1a\x2a\xcc\x30\x53\x48\x64\x38\x31\x0e\xf6\xef\xc6\xcc\xdb\xd6\xe8\x97\x93\x7e\x97\xf7\x8f\x2f\xbf\x13\x08\xc1\xaf\xf6\xfa\x16\x36\xea\x8a\xe6\x96\x1b\x93\x24\xe6\x4f\x02\x0f\xff\xed\xe9\xb2\xb7\xce\xeb\x9d\xc3\x7e\x42\xcd\xa8\x95\xe3\x4e\xed\xc9\x6a\xa8\xd0\x15\x0f\xf0\x27\xa8\x51\x2b\xe4\x55\xe2\x61\x0b\x95\xc6\x53\x9a\x58\xc9\xdf\x1f\xd9\x44\x32\x4a\xc4\x8b\x58\x6c\x18\x4a\x70\x10\x30\xc2\x4e\x24\x1c\xa9\x7b\x06\x33\x70\x6b\xad\xab\x74\x01\xcb\x94\x94\x25\x82\x64\x29\x5a\xcf\xbd\xcd\xa3\xe1\xed\x4c\x01\x4b\xa5\xd9\x38\xcf\x3d\x03\x21\xa3\x7f\x62\x86\x71\xd5\x6b\xf1\x1e\x86\x87\x5e\x20\x34\x6a\x71\xa8\x39\x92\x0a\x2a\xcf\x9f\xed\x66\x5e\x6e\xe1\xf3\xc3\x42\xe1\xf3\x5f\x17\x97\xaf\xab\x05\xdc\x26\xe3\x8e\x2f\x0a\x5c\xbe\x71\x28\x69\x09\x37\x55\x0c\x04\xbf\x76\xa3\x2c\xaa\xae\xd6\xb7\xe6\x1c\x1f\x1b\x68\xb0\x07\x79\x81\xd5\x58\xbc\x41\xc9\x88\x74\xe6\x9c\x32\x55\x73\x55\xc2\xaa\x52\xc6\xf4\x25\xd7\x06\xea\x61\xb4\x87\xad\x63\x2d\xa2\xc2\xed\x50\x56\xae\xa4\xdc\xef\x8e\x08\x87\x18\x3e\x8f\xf2\xf5\xd6\xe6\x1e\xc0\x85\xa1\xff\x61\xf4\x8f\xab\x87\x3a\x43\x6b\x9a\x87\x4f\x80\xf0\x5d\x69\x47\x6e\xa1\xcb\xcd\x57\x41\x65\xd5\x7a\x95\x71\x59\xfc\xaf\xe4\x59\x14\xaf\xcc\xc2\xfa\x61\x8b\x9f\x62\xf1\x5d\x0c\x9f\xb9\x97\xbb\x19\xde\xfd\x57\x93\x1f\x77\x1d\x30\xc4\xd6\x9f\x3e\xa5\x96\xbb\x33\xb3\x6e\x74\x52\x0a\x51\x13\x48\x22\x70\x67\x91\x13\xe9\xf8\xf7\xd5\x07\x68\x08\xdc\x4d\x6b\xa0\x95\x52\x88\xa5\x0c\xb8\x0f\x35\x3c\xec\xfa\x06\x01\xbb\xa7\xee\x33\x42\x67\x37\x85\x86\xd4\x56\x8f\xc7\xb5\xf4\x0d\xc7\xd5\x58\x74\x96\xfe\x8e\xd5\x95\x7b\x73\x6b\x71\x49\x36\xb5\x67\x35\x52\x83\x01\x30\x99\x6e\x9f\x62\x1d\xf4\x32\x98\x07\x69\x39\x66\x57\xae\x7a\xb2\x6a\xdf\xf3\x69\x69\x3a\xde\xf7\x51\x1c\x3b\x2b\x7b\xb6\x0c\xf2\xda\x63\x55\x2c\xee\x01\xfa\x8d\xcb\xed\xb6\x2f\x23\x69\xad\xd9\xbc\x97\x0d\xdc\xec\x7a\xbc\x9f\xc3\x97\x62\xa5\x9a\x5d\x84\x48\x8d\x20\xab\xcc\xbf\xba\xb0\xfd\x60\xa1\x7e\x94\x0b\x2b\xf7\x7b\x52\x94\x40\xa7\x28\xad\x31\x57\x58\x2a\xd3\x98\x69\xd4\xc7\x0b\xc4\x9b\x13\xe6\x86\x07\x7e\x9f\x3c\x69\x0d\x8f\x46\x24\x7e\x0a\x16\x81\x29\x45\x3e\x55\xe6\x81\xdc\xa4\x61\x45\x6f\x93\x8c\x45\x94\xe7\xa9\x59\xac\x80\xc3\x2b\x8f\xd2\x40\x31\xe0\xbf\x2f\xdf\xf4\x0d\xad\x2a\x93\x05\x90\x66\xec\xda\xd3\x39\xd6\x3d\x92\x11\xed\x09\x10\xd9\x1c\x6e\xb2\xa3\xa3\x1f\x9c\x70\xcc\xb5\x95\x35\x4a\x8b\x9f\x2d\x2e\x9e\x4b\x48\xff\xdb\x08\x4c\x00\xef\xbb\x52\x3c\x83\xf4\x36\x28\xee\x76\x77\x5b\x4b\xaf\x82\xa0\xc8\x34\x4e\x92\xd7\x0d\x2e\x3c\x7c\x2d\x3a\x14\x43\x86\xd4\x1a\xb7\x60\xe1\x06\x42\x65\x81\xa7\x88\xfd\x32\x54\xdf\xe8\x01\xb0\xe0\x40\xb5\x18\x9a\xda\x04\x30\x57\x3a\x65\x06\x01\xea\x20\x5d\x8b\x32\xf3\xca\x9c\xf5\x5b\x07\xfc\x9e\x3f\xaf\x33\xf9\xf2\x04\xdf\x07\x1e\xfe\x8b\x3e\x93\x4d\x2f\x06\x6f\x5b\xb3\x67\xff\x68\x55\xbc\x7c\x1b\xd4\x1e\x6c\x81\x64\x3e\xe0\x29\x03\x65\xb0\x7d\x14\x06\x9d\x3a\x15\xb2\x8c\xcb\xe7\x62\x6c\xac\x4f\x98\x22\x8b\xe1\x3b\x11\x59\x37\x50\xbc\x02\x5e\x41\x26\x20\xcd\x7f\xf0\xfb\x3b\x28\xc0\x66\x14\xcb\x9b\x34\x32\x7b\x26\x43\x9e\xac\xf5\x14\xf6\x50\xe3\xb0\xa7\x0f\xef\x14\xb8\x10\x10\x90\x80\xa2\x7b\x18\x8e\x50\xd5\xfa\xb6\xc5\x7a\x01\xa3\x81\xf3\x3d\xf2\x7d\xd0\x47\x10\x6d\x4f\x51\x10\x20\x53\x26\x0e\x4b\x56\x18\x6b\x2b\xcb\x2a\xfb\x96\x69\x7e\x28\x66\xd1\xa7\x04\x6c\x94\x7c\x39\x4e\xe4\x0a\x24\xa9\x54\x2a\x9d\x91\x62\x3a\x83\x14\x17\xb1\x42\xb9\x94\xe7\xe1\xc8\x97\x57\x0f\x63\x56\x02\xbb\xc6\xea\xca\xd8\x24\xf5\x33\x9f\xe6\x0c\xf6\xa3\x19\xb7\x27\x69\x66\xf2\x15\xcf\xce\x3d\xa4\x67\xe7\x59\x6e\x25\x99\x7c\x4a\x7f\xe3\x15\xfd\x40\x09\xa6\x0d\xd1\x85\xb3\x30\x9b\xe5\xc3\xa2\x0a\xad\xb8\x80\x14\x4c\x50\xdf\x27\x1d\xe8\xca\xcf\x7b\xab\x3d\xc6\x6f\xe9\xa5\xd7\xad\x75\x20\xdd\x15\xe7\x0e\x14\xa9\xef\xad\x69\x2a\x7a\x1d\xcc\x4f\x2e\x34\x80\x42\xcd\xef\xad\x9b\xf2\xe1\xcf\x5f\xf1\xf3\xd2\x07\xa4\x03\x5b\x41\x84\xc9\x68\x83\x90\xbc\x28\xc1\x2c\x8e\x53\x5d\xdc\xbb\x96\x63\x56\x0e\x8a\x16\xa2\x08\xbf\x14\xf9\xee\xa4\x8e\x3d\xc4\x4a\xc2\xbe\x61\xef\xa0\x48\x61\x66\x36\xc5\xd9\xb0\x22\x8e\xad\xbd\x3e\x9d\xff\x8a\x91\x17\x15\x70\xc0\xe7\xf9\xa3\xf6\x94\xcd\xdf\x8f\x2c\x2a\x29\x1d\x22\xd3\xc8\xfa\xc5\xd5\xd5\x68\x16\xfc\x25\x91\xd1\xc2\xe9\xfb\x76\x93\x27\x1a\x13\x4f\xe3\x70\x03\xef\x79\x5c\xb3\x48\xe5\xdf\xec\x9f\x99\xa3\xd8\xe3\x53\x7c\xf5\xa5\x36\x79\x7a\x4d\x7a\xcf\x9e\x49\x4f\x09\x4a\xd9\xac\x3c\xf5\xb2\xc2\x69\xb9\x80\xb3\x4e\xc5\x6a\x89\xdf\xb0\x62\xae\x52\x9b\xf9\xb6\xbf\x57\x10\xbd\x9b\x1f\x60\x51\xfa\xab\x08\x96\xa8\x8a\xbd\x04\x1b\x64\xc0\x46\x33\xed\x8c\x47\x2a\x49\x15\x07\x04\x8b\x8b\xca\x41\x22\x15\xaa\x66\x4f\x7e\x16\x50\x45\xcd\xe1\x91\x24\x18\xfa\x27\x3d\x4d\xeb\x89\x28\x22\xc1\xa4\x12\x96\x33\x14\xcc\x63\xe6\xa6\xc1\x18\xce\x26\xcd\x42\xbc\x7a\x73\xa5\xb2\xeb\xd8\x19\x39\x47\xe6\x12\x8a\x54\x98\x95\x91\x75\x7d\xd2\x2e\xd9\xd0\x0b\x22\xfc\xd5\x49\x81\x41\x9b\x8d\x4b\x05\x1d\xc8\xaa\xef\xf8\x19\xd3\x56\x3a\xdf\x7b\xe6\x28\xc1\xb0\x10\xc0\xdf\x70\x1a\x35\x15\x35\x05\x9e\x0c\xae\x21\xe0\x28\x76\xfe\xa9\x23\xf3\xa8\xb4\x18\x30\x5d\xce\xa8\x8d\xe2\xf4\x1e\x1b\x5e\xb4\x38\x59\xe8\x7c\x60\xb2\x88\x5a\xd4\xa8\x1e\x9f\xc6\xff\x75\x79\xa7\xa6\x17\x36\xdc\x71\xbb\x4d\x7f\x7e\x97\x56\xcd\xdb\x2d\x1f\x45\xbb\x93\x53\xe9\x37\x65\x38\x1e\xe3\xd5\x63\xd6\x32\x9e\xda\x2d\x34\x72\x09\x36\x5a\x23\x0c\x36\x17\x02\x7f\xf5\xa8\x30\xe4\x68\x78\x3c\x2d\x26\x7e\x70\x10\xd1\xf7\x13\x09\x6c\xa2\x3f\xdb\x0f\xf2\x35\x77\x44\x48\x82\x14\x69\xff\x56\xe4\x46\x51\x95\x5a\x5a\x88\xd5\x18\x68\xee\x8b\x34\xfa\x48\xef\x22\xc2\x80\x78\xab\xe8\x30\xf8\x90\x2d\x2a\x6c\x37\xb8\xea\x87\x45\x2a\x48\x33\x95\x5f\x48\x4a\x71\x2c\x0f\x45\xaf\x92\x23\x55\x99\x14\x92\x22\xf6\x4c\x60\xb4\x6e\xee\x4f\x62\xb7\x71\x44\xc8\xf9\x77\xda\x4e\x6c\x31\xf3\x4b\xea\xbd\x20\x6d\x3b\x19\x74\x66\x1c\x4b\xe3\x7c\x21\x15\x34\x1a\x03\xbe\x96\xc6\x6e\x3c\x9e\x7c\xbd\xa6\x6e\x7b\xb5\xbe\xd9\x33\x19\x6a\xf1\x1a\xf3\xe5\xcc\xc1\xd7\x4f\x67\xf8\xca\x5d\xa3\x46\x83\xe6\x6e\x99\x5b\xc7\x43\x03\xdc\x77\x6e\x89\x2f\x7f\xfa\x84\x27\x15\xe6\xd3\x5a\x60\x12\x0c\x2d\xa3\x10\xf2\xc7\x40\x02\x0e\xce\x64\x6a\x63\x91\x76\x21\xc7\x17\xe3\x27\x0d\x94\x06\x1a\xfe\x4f\xe3\x81\x9f\x45\xc2\x84\x04\x14\x30\x09\x51\x15\x59\x86\x6e\x49\x2e\x2e\xa9\x67\xe0\xa9\x22\x26\x33\xb9\x62\x5a\x63\xa5\xcd\x47\x02\xb0\x5f\x08\xb4\x5e\x71\x9d\xf7\x6b\xcc\x75\x1e\x17\x6b\xf8\x97\x65\xb5\x34\x7b\x6d\xb2\x79\xe8\x6b\x5f\xf2\x1e\xb2\x31\x5d\xf7\x7b\xbf\xd6\x4a\xa2\x6d\x10\xdd\xbb\x34\xb6\xee\x16\x1c\x17\x6e\x5e\xb3\x35\xba\x20\xed\xed\x64\xab\xa6\x15\xe8\x2e\xb0\x68\xa5\x69\x08\xce\xa9\xc0\x88\xea\x73\xcf\x85\xbc\x15\x21\x11\x5e\x8f\x9d\x52\x21\x18\x6c\x29\xa6\xd4\xe4\xa7\xd5\xb4\x48\xbd\x19\x26\x7f\x4d\x5a\x3f\x39\x75\xd0\x9c\x33\xba\xed\xc5\xa6\x8b\x19\x88\xa3\x6b\xcd\xb2\x4d\xcc\xdc\xca\xf0\xf7\x92\xd9\xe4\x36\x3e\x5a\x82\xa6\x37\x73\x6b\xda\x29\x2b\xb8\xe6\x68\xdb\xf4\xb9\xb7\x76\x49\xc8\xbb\xb3\x11\xd4\x1b\x74\x23\xd9\x0b\x76\xf6\x7e\x0e\x39\xee\x1d\x0e\x0c\x3c\x0e\xc3\xf7\xdc\xde\xfa\x4d\x4a\x2f\x63\x32\x90\xa4\x5d\x3a\x6c\x6a\x6a\xfc\x23\x89\x16\x0c\x21\x76\x18\xbf\xc3\x35\xc0\xaf\xe9\xee\x5c\xd2\xba\x1a\xc9\x47\xa3\x9b\xb6\xd9\x51\xc1\xe6\x8b\xd6\x1c\xb4\x36\x33\xa7\xc8\x17\xc3\x32\x81\x26\x4f\xa7\xbd\xb0\xc3\x81\x5b\xd8\xbc\x03\xfa\xd1\x40\x61\xec\xa5\x85\xea\xb5\x51\x94\xe5\x2a\x60\x0b\x49\x5b\xf6\x8c\x90\xe2\x6f\x9d\x9d\xb4\x32\xe8\xd9\x7b\xf2\x54\xda\x0c\x89\x65\xb9\x23\x99\x6e\xff\xe6\x6f\x36\x3f\x7e\x24\xae\x1f\x85\xcf\xba\xc5\x0b\xf8\xa5\x5a\xf0\x28\x4f\xd5\x12\xd2\x59\xf7\x92\xba\x28\xd8\x0e\xce\xf5\x17\x5c\xa8\x95\xc8\x0c\xdc\xb8\xe0\x5c\xdb\xc7\x55\x76\x3d\xfd\xda\x3b\xdc\x72\xd8\xd2\xec\xba\xf8\x17\x9d\xdd\xd5\x0d\x3a\xb9\x40\xdb\xbd\x61\x9b\xca\xc0\xda\x43\x59\x51\x3d\x88\x9b\xb9\xd6\xce\x06\x8e\x84\x00\xd4\xd7\x18\xf3\x0c\x05\x2e\xa6\xb3\x62\x52\x47\x0a\x15\x3b\xdb\x82\x46\x85\xba\x43\x51\xf9\xa8\x85\x45\xe8\xff\x81\x48\xad\xd4\x0f\x6c\xb5\x74\xc3\x88\x56\xc7\x1d\x28\x50\xb7\xee\x8c\x23\xda\xce\xea\xf3\x2a\xd5\x9f\x69\xbe\x41\x3e\x4d\xb7\x7c\xb2\xf7\x2a\xaf\xb3\xb5\xa8\xd8\x5e\xd6\x69\xf6\x81\xdd\xa6\x82\x9f\x07\x55\x48\x7d\xd8\x62\xfd\xb7\x20\xc1\x27\x28\xd1\x65\x27\x32\xae\xa2\xa2\x13\xd4\x87\x60\x85\xee\xe2\x88\x67\xb7\x1b\xac\xf3\xc3\xda\x04\x4a\x18\xb9\x91\x25\x92\x68\x84\x14\xb5\x30\x91\x85\x1f\x65\xe2\x3c\x5f\x1a\xd6\xbf\x45\xec\x91\x1e\x9a\x28\x0a\xc4\xa2\xf0\x25\xb5\x8f\xf9\x37\x1d\x30\xec\x1d\x65\x4a\x2b\xf3\xc3\x4b\x42\x5a\xf0\x65\xc4\x3e\xb6\x97\x49\xa6\x71\xda\x7c\x9e\x7a\x09\x4c\xad\x24\xc7\xbd\xc6\x7b\xee\x08\xce\x1b\x7e\x94\xd3\x72\x35\x6e\x80\xf6\xfa\xd4\xb6\x6b\x86\xc0\xbd\xc0\xf8\x79\x11\xd4\x6a\x90\x74\x4b\x4a\x03\x83\xe0\xb6\x6b\x43\x86\xfe\x29\x64\x1a\xdf\xc3\x40\xcb\x93\x79\x66\x51\xbd\xbb\x9b\x53\xa0\xa0\xad\xb6\x7d\x1a\x97\x70\xae\xdd\x78\xb6\xef\xe4\x0f\x21\x5f\x4f\x85\x62\xba\x76\x9a\x5b\xf3\x40\xf2\x58\x36\xcd\xfd\x66\xe5\x57\xea\xd1\x41\x9d\x6e\x49\xd4\x17\xf1\x26\xf9\x49\x32\x49\x20\x88\xb5\xaf\x51\x20\x98\x6b\x44\xa8\x2a\x78\x35\x0d\x0e\xd6\xbd\x6e\x69\xce\x91\x75\x98\xa1\x2a\xcb\x21\xb6\xc9\xd0\x88\xa1\xc8\x01\xab\x6e\xf5\x9b\xe8\xaf\x55\x70\x7c\xb2\x93\xb6\xca\xe8\x94\xa6\x79\x11\xaf\x67\xd7\x6a\xae\x85\x4c\x4e\xec\x6b\xeb\xb1\x8a\x2d\xeb\xdc\x9c\xe2\xe7\x15\x76\xb3\x67\xfe\x7a\xa7\xce\x68\xbc\x67\xb6\x63\x46\x3a\x67\xf9\x4f\x11\xb8\x43\x7f\x07\xd0\x7a\xef\x3d\x3f\x28\x70\xfe\xe2\x77\xe5\xbf\xe1\x31\xe6\x33\x09\x3d\x13\x51\x7f\x0b\x55\x92\xb4\x2a\xf4\xa8\x34\x0d\x6a\x75\xa7\x18\xfa\xfe\xc8\x45\xd5\x5b\x5a\xc3\x9d\x17\x43\xbb\x6a\xa0\xa1\x6b\xa8\x63\x60\xaa\xd5\x7f\x54\xd8\xcc\xe6\x53\xc6\xef\xd5\xdd\xd3\xd0\xde\xbf\xd0\x32\x3d\xcf\x92\x0b\x5e\xee\xb9\xe0\xf6\xd1\xe5\xfb\x4e\x0b\xff\x1c\x44\x33\x55\x95\xa2\xa5\x36\x70\x44\xb7\xc6\xd1\x8c\xf4\x45\x7e\x63\x89\xd6\x7e\x85\x81\x80\xb3\x08\x4c\xe0\xed\x6d\xc7\xd1\xfd\xa9\xbc\x89\x4b\xf0\xaf\xa9\xcd\x5c\x5c\x94\x6e\x5c\x1a\x51\xc1\x40\xdd\x30\x49\x7f\xa4\x38\x33\xd5\xcf\xff\x38\xea\xc0\x8f\x3b\xab\x9e\x50\x31\xc8\xb8\xd9\xaf\x24\x5d\x9f\xb5\x49\x36\xd4\x04\xb8\xe0\x41\x26\xc2\x9b\xc8\x53\x9a\x20\x06\x0b\x09\x5e\x84\xd8\x24\x26\xd6\x6f\x61\x19\x48\xd5\x27\x66\x9d\x38\xc2\xd4\xc6\x99\xf5\xf7\x5b\x32\xbd\xca\x1b\x1f\x67\x78\x30\x0c\xfe\x1b\xfc\x27\xd9\x3f\x18\xd3\x5d\xf2\x39\x92\xa9\xc5\x0c\x94\x43\x32\xef\x14\x34\xf0\x86\x05\xb0\x41\x01\xf9\xd9\xcf\x5b\xc4\x08\x43\x96\xb7\x16\xbc\xe7\x22\x01\x02\x88\x18\xda\x35\x39\xb8\xd8\x29\x9d\x7b\xb1\xde\x79\x67\xaa\x1a\x2f\xfd\x25\xaa\x4d\x24\x40\xd9\x6b\xba\xef\x9e\x22\x4b\x56\x0a\x45\x07\x6c\x59\xdb\xae\xc9\x56\x91\x98\x16\x1c\xe1\x51\x60\x4a\xc1\x43\x15\x33\x4d\xa8\xd3\xb3\xfa\x4a\xac\x47\xe7\x83\x68\xac\x22\x20\x2a\xaa\x2b\x48\x48\xfb\x8f\x86\xc2\x7e\x8b\x1f\x3c\x42\x66\x21\x5b\x70\x72\xd0\x28\xc4\x92\x09\x27\xcd\x54\xb3\x9e\x27\x4f\x15\xe8\x66\xcf\x25\xd0\x46\x4f\x33\xc9\x94\xd4\x44\x89\xcf\xbe\x05\x63\x30\x1b\xfd\xee\xac\x5e\x4b\x98\xd3\xba\xb2\x7c\xc8\x0a\x38\x92\x95\x9b\xc9\x71\xe9\xcf\x4b\x4b\xe2\x7e\xd6\xa0\xfb\x96\x76\xe8\x60\x15\x2c\x9b\xd3\xe5\xef\xf4\x3d\x23\xed\xfc\x4d\x35\x99\xc6\xf4\x88\xa7\xb7\xdb\x42\x39\xac\x90\x6b\xf2\x0a\x20\x35\x8b\x11\xee\x14\x81\xf0\x80\xe2\x26\xb0\x23\x14\xa2\xb5\xb0\xd2\x60\xca\x76\x28\x3e\x97\xa9\x54\x2b\x1a\x1e\xc2\xb6\x5a\x21\x25\x30\x5f\x6b\xd4\xb4\xce\x73\x62\x9a\xf2\x72\x3a\xa2\xb2\xd3\xa2\x53\x0d\xae\xac\x51\xd9\xe7\x68\x38\x56\xfa\xbc\xf6\x23\x94\x19\x17\x4d\x72\x50\xea\x99\xbe\xb6\x2d\x73\x9a\xbb\xef\xf8\x1c\x3d\x68\x3b\x7b\x48\xa9\xd4\x1a\x55\xf8\x9c\xa1\x9a\xcd\x83\x85\x71\x2b\x68\x4d\x5a\xa7\x5a\x40\xf0\x9f\x1d\xd0\xa7\xcc\x84\x1a\xb5\x40\x58\x7e\x74\xbe\xa3\x8f\x2d\x31\x72\x6b\x79\x75\x1f\x05\x78\x6b\x3b\xb6\xdb\x3e\x7b\x88\xb7\xf9\x7a\x78\x58\x59\xed\x36\xd9\xb2\xf4\x96\x37\x55\x17\x17\x51\x09\xf4\x96\x17\x55\x37\x2f\x62\x2a\xd8\x66\x1b\x74\x79\x0d\x47\x65\x1b\x6c\x54\x13\xfa\x5d\x96\xa2\xd3\xda\x7b\xdb\x35\x5b\x2b\x84\x4f\x2e\x35\x94\x49\x1b\x34\x94\xf1\x0b\xfe\xf1\x53\x00\x47\xe2\xa2\x68\x69\xd4\x36\xdb\xe2\xb0\xd4\x90\xa4\xc8\x14\xe3\x55\xdb\x2e\x40\x81\xbf\x86\xa3\x4d\x59\x13\x41\xa6\x09\xfd\xd9\x51\xc7\x32\x56\xf7\xf0\xa2\x7d\x45\x85\x9b\xb1\x97\xdd\x6e\x62\xb7\xdd\x77\x7b\xd5\x22\x71\x91\xfc\x07\x6a\x92\xbb\xb3\xf7\xe4\x50\x68\xdb\x34\xa7\xac\xa5\xbd\x96\x93\xa1\xd6\xc2\xcb\x89\x96\x12\x2d\xd1\x57\x66\x72\xcb\x0b\x05\x8a\x10\xce\x5b\xfa\xcc\xde\xd3\xcf\xe7\xe8\xaa\xb5\x5b\x39\xbd\x99\xc9\x81\x7a\x47\x73\xce\xe3\x72\xd7\x47\x06\xf1\xca\x4e\xc7\x90\xb6\x29\x12\xdd\x0c\xa6\xee\xd8\xc3\xf1\x78\x06\xae\x4e\x3d\xd2\xf5\x15\x8e\xf7\xae\xca\x48\xa1\x54\x8b\x06\xc3\x60\xe5\xc0\x86\x3b\x65\x71\xc6\xe3\x53\x0e\x99\x21\xe0\x25\x2f\x2f\xcd\xc6\x65\x20\x80\xc5\x4a\xb0\xbe\xf4\xfc\x6a\x2f\x78\x5c\xec\x2e\xad\x0b\x15\xc5\xdb\x5a\x5a\x9b\xdf\x69\xa8\xf3\x33\x16\xf7\x2c\x6a\xd3\x2f\x5f\xeb\xf6\x5e\x77\xe5\x2e\xdb\x13\x6e\x63\xf1\x8a\xc6\x69\x6f\x58\x37\xbf\xca\xaf\x1b\x05\xe9\xc8\x5b\x8c\x7c\xc7\x81\xec\x01\x62\x86\x74\xf0\x04\x16\xcc\x28\x4e\x12\x6a\x22\xad\x48\x77\x61\xd7\xcc\xe4\xb7\x0c\x19\xd1\x4f\x56\xf8\xd5\xb8\xb3\xd2\xc2\x20\xe5\x3a\x03\x2b\x23\xae\xc5\xb9\x7f\xd9\x12\x86\x04\x01\x37\x0c\xaa\xa0\x89\x64\xca\xbb\xb2\xb0\x47\x95\xc9\xe2\xec\xfe\x5a\xc5\xae\xb3\x85\xbe\x12\xeb\xdd\x43\x05\x5f\x35\x9c\x99\x94\x01\xac\x65\x2f\x70\x2b\x75\x09\x8a\xb7\x75\xcc\xb9\xb1\x8b\x36\x5a\x5f\xa7\xec\x7a\xd2\xf0\xd9\x1b\x32\xdc\x06\x36\x20\xcd\x90\xd5\xe4\xa7\xb8\x51\x06\x47\x4d\xd1\x06\x23\xdf\x05\xd9\x77\x86\x96\x9e\xfe\xfa\x71\x9f\xd9\x13\xa6\x06\xcf\xab\x4e\x42\x34\x30\x4a\xc5\x36\x45\x7a\xf8\xec\x35\x1e\xf0\x5d\xfc\xb8\x84\xff\x08\x3c\x4d\xff\xf2\x76\x30\x39\x78\xd9\x5f\x35\xe6\x60\xe9\xcd\xac\x4f\x5c\xbd\x73\x78\x47\xb5\xf1\x3b\x0f\xff\x5b\xdc\xe8\x0e\x28\xc0\x46\xb7\x59\x08\xe7\x2c\x18\xce\xb0\x97\xca\xc0\x4c\xd5\xd8\x50\xd1\xee\x2e\x19\x4f\xec\xb2\xaf\x26\x29\x20\x1a\xb4\xac\x37\xc5\x8d\xb5\x92\x8a\x3e\x16\x3f\x5e\x7e\xd2\x50\xb5\xd5\xcb\x3d\xbd\xdc\x56\x49\xea\x61\x53\x3b\x49\xb7\x59\xc5\x03\x8d\xdf\x0d\xf1\xfc\x77\xf3\x6b\x5a\x24\xf8\x3e\x11\x45\x19\xbd\xcf\x24\x11\x42\x0c\xa9\xce\x74\xe2\x36\x34\xb0\xff\x86\x07\x74\x88\xb3\xb5\x2a\x7e\xe4\xc7\x4d\xd0\xc1\x2b\xb3\x7c\x82\x41\xa1\xb3\x22\xda\x03\x19\x0b\xb6\x7a\x6b\x35\x5f\xb7\x64\xeb\x1e\xbe\xf2\x6c\x61\x4e\x09\xf5\x2d\xb9\xbe\x44\x31\x73\xab\xf3\x52\xe7\xc3\xdb\xa7\x9d\xfc\x29\x2a\x1c\xb2\xef\x82\x85\x82\x5c\x80\xb6\x66\x7a\xc5\x62\xe8\x0c\x32\x41\x06\x26\xab\x20\x9b\xdf\x27\x7d\x0f\xd9\x19\x35\x1a\x7a\x80\x1f\xe1\x4e\x78\xf2\x51\x08\xc8\x72\xfe\x3c\xb1\x30\x9c\x3d\x71\x12\x89\xf1\x1c\x68\xd3\x24\x75\xc5\x9e\x8d\x36\x8d\xd0\x72\xe7\xae\xdc\x48\x4a\x9f\xef\xeb\x98\x13\x46\x76\x23\xd8\x74\xb8\x84\xc5\x52\x60\xbb\xd2\xbc\xf7\xc9\x6d\x2b\x7a\x78\x47\x19\x87\xa9\xba\x69\x5b\xdc\x88\xde\xc7\xda\xb4\x5b\x2c\x37\x6e\xde\xaa\x7c\x6d\x1e\x41\xd5\xa5\xfb\xe8\x8b\x1f\x9a\x80\x60\xdd\xc8\xac\x52\x1a\x61\x79\x0b\x51\x25\x39\xfd\xf5\xd1\x44\x9e\x7c\x45\x0b\x56\xce\xc4\x6d\x43\x6e\xf5\x82\x78\xe1\x4b\x43\xf3\x31\xbd\xd5\xf0\x68\x86\x52\x5b\xcc\xcc\xe7\x47\x37\x4e\x59\x12\xb0\xfa\xf9\x41\xa2\x5c\x2b\x13\x16\x1d\xc4\x8a\x18\x46\x26\x34\xf6\x03\x32\x50\x69\x9d\x2a\xb7\xdb\x59\x80\xa4\x4e\x72\xc2\x41\xb5\x76\xef\x86\x93\xf7\xc9\xfa\x78\xd3\xed\xe3\xe5\xbb\xec\x4a\x10\xd8\xa0\x69\x14\x70\x74\x35\xbf\xea\x49\xda\xa4\x9f\x4c\xb2\x9d\x14\x6b\xcc\x22\xd7\x6a\x35\xd3\x4a\x3a\xa2\x99\xec\x49\x6f\xdf\x70\x8a\x44\xdd\x38\x75\xf7\x56\x90\xbc\x0e\x42\x22\x7a\x50\x04\x2d\xf8\xd5\x9a\x52\x52\x3c\x97\xa6\xd7\x3a\xd0\x1a\xdf\x58\x7f\x21\xa1\x23\xd9\x58\x5f\x9f\xf0\xef\x78\x7a\x6a\xa9\x25\x97\xcb\xc8\xeb\xfa\xb3\xaa\xbf\x61\x62\xd3\xa7\x2c\x8f\xdb\x65\xe6\xfa\x43\x5e\x73\x6c\x53\xf0\x7b\x0f\xf3\x99\xc4\x75\x05\x37\xe0\x05\x35\x47\x4f\x3f\xee\x0b\x4b\xb2\xc6\x5a\x34\x80\xe7\x1b\xc7\x9b\x97\x84\xcf\x70\x50\x81\xc8\x12\xa9\xef\xca\xec\xbe\x74\xe3\x3d\x2a\xe0\xef\x76\x1b\x1c\x09\xd6\x84\x43\x58\xd7\xeb\xf5\x8b\xc3\x4b\xc0\xfd\xf7\x48\x1d\xc7\x20\xd2\x03\x6d\x3b\xd5\x8d\xd8\x6e\xc0\xae\xb6\x3f\x2e\x0b\x49\xc9\x5c\x9e\x6f\x6f\x1a\x7f\x58\x7e\x22\xb0\xe0\x3b\xc2\xb5\x09\x20\xc9\xb7\x69\x61\x44\xd1\x07\xf7\x04\xbb\x97\x39\xff\x8b\x65\xfe\xd9\xf4\x9b\x21\x42\xec\xc6\x14\xb2\x2c\x0d\x52\xb0\x6d\xe2\x47\x93\xa1\xe4\xee\x56\x46\x77\x2b\x7a\x6c\xe7\x42\xa8\xaa\x95\x6e\xb0\x76\xe5\xb3\x26\x7b\x92\xb4\x00\xe4\xc4\xee\x41\x76\x66\xfd\x7d\x45\xda\x17\x86\x42\xc6\x83\x57\xc4\xef\xe1\x23\xb8\xb5\x19\x69\x2b\xfe\xa7\xfd\xd6\xd6\x06\x2f\x8d\x26\x54\x0c\x83\x69\xf9\x7f\x24\xee\x3f\xc9\x7d\xf1\x2f\xff\xec\x0a\xdf\xff\x90\xc8\xe8\x32\xf0\x7f\x45\x78\x58\x51\xe1\x3c\x28\x7c\xfd\x30\x3a\x0e\x20\xfb\xd5\x27\x7d\x71\xc1\x03\x02\x3b\x02\x60\xec\xf8\x44\x78\x56\x70\x89\x02\xb2\x80\x23\xbe\x70\xc1\x4c\x90\x78\x95\x18\x01\x63\x7c\x7c\x5a\x82\xb9\x31\x6d\x67\xf4\x6a\x94\xee\x9a\x7d\xff\x7d\x11\x87\x12\x6b\xa0\x68\xa5\xb2\x92\x4d\x60\x38\xf7\x9e\xc1\x9c\xba\xa5\x92\xed\x5a\xaf\x5f\xf4\x66\xca\x4e\x6b\xfb\xcf\x83\x3a\xa9\x54\x06\xad\x16\x6f\xbe\x09\xe5\xbd\x3d\xc4\xb2\xd4\xc7\x38\x06\xd7\xad\x26\x8b\xe9\xdb\x16\x9f\xeb\x71\x2d\xb6\x75\x95\xb4\x56\xc8\xe3\x67\xfa\xe7\xed\xa6\xbb\xb5\xea\xea\xfc\x9a\xee\xd1\xae\x6e\x46\xc2\x1f\x40\x62\x14\xa1\x38\x63\x94\xbb\xe4\x7c\x9b\x0a\xc9\x3a\x31\x31\x88\xfb\x1f\xcf\x07\x2a\x41\x3a\x74\x5b\xb2\x7a\x94\xb6\x4b\xd4\x05\x0e\xe7\x27\xb8\x20\x3a\x52\xcf\x6d\xac\x05\x8a\x4d\x71\xa1\x75\xc9\xac\xa5\x20\x99\xe4\x64\xd0\x5d\xc7\x8d\x66\xae\xda\xd0\xa1\x64\x51\xd4\x13\xae\xb2\xc2\x89\x5f\xd9\x86\x0b\x11\x71\xc4\xc3\x21\xe3\x34\xd0\x78\x72\x99\x34\xc8\x8e\x5a\xf5\x0b\x2a\x89\x18\x3d\x96\xaf\x77\x62\x0b\x7f\x71\xfe\x94\x1a\x3b\xe9\xf4\x4a\xf5\x7a\x8d\xc6\x4d\xc3\xc8\x18\x6d\xfc\xf8\xee\xfa\xa9\x92\x26\x78\xe0\xc8\xd7\xf5\xd3\x72\x22\xaf\xb9\x31\x6f\x5e\x8c\xfb\xf9\x42\xcf\xc7\x77\x9a\x60\x61\x7f\xbb\x91\xcd\x68\xab\xaf\xe6\x82\x80\x02\xf4\x5f\x64\x9d\xa2\x42\x75\x53\x14\xd6\xfe\x54\x96\xb6\x4d\x9f\x2b\xd8\x12\x19\x04\x1b\x0e\x5d\xa9\x4c\x8e\xc3\xf1\x6e\xad\x15\xc2\x55\x75\xe1\x7e\xfd\xe8\x36\x9f\xbe\xb5\x43\x65\x8d\xd4\xe4\xe9\xa4\xbc\xbb\xce\xfe\xb5\xb4\x03\x01\xed\x79\x6f\xc1\xcc\xd6\x81\xa4\x7b\xd9\x70\xc1\xac\x4d\x2b\xdc\xf1\x84\x4a\xae\xb7\x8d\xb9\xb1\xb8\x91\xb5\xed\x74\xa9\x80\x86\x58\xe4\x56\xde\xe1\x4d\x89\x72\x2e\x88\xff\xc0\xb5\x21\x56\x2b\xb2\x20\x3b\xcc\x21\x6c\x65\xa0\x72\x4a\x55\xea\xfe\x10\x2a\x5a\x3e\xd6\x3a\x16\x97\xcb\xbe\x4d\x68\x2a\x97\xef\x0b\x8a\x5e\xb7\xb7\xe4\x2c\x27\x83\xf7\xb2\xf0\x3f\xd2\xb5\x15\xa6\x14\xc3\x2c\xa8\x56\x68\x35\x3d\xaa\xe3\x28\x66\xf3\xf1\xec\x95\x55\x49\xfb\xa6\x6f\x63\x2c\x9d\xe1\xcc\x40\xd0\xbf\x6f\x95\x28\x07\xc8\xa3\xbb\x19\x44\xa1\x16\x9f\x47\xe6\x74\x10\x48\x9e\x23\x09\x60\x28\xc8\x6b\xc2\x76\x5a\x7a\x00\x66\x75\x38\xd1\x74\x4a\xe5\x22\x99\x68\xa8\x0c\xd7\x6e\x60\x5c\x85\x3b\x1d\x73\xa5\x39\xcb\xc3\x31\x8b\xce\xf2\xf1\x6f\xfa\x49\x5e\x1b\x9d\x4b\xdc\x26\x84\x19\x67\x2e\x73\x3d\xc1\x17\xf1\xfb\x56\x90\x15\xf4\x6a\x2d\x33\x1b\xf3\x54\x31\xdf\x37\xaf\xa9\xea\xcf\xf8\x59\x96\x29\xef\x8f\xbe\xea\x8c\x78\x81\x08\x2a\xc2\xad\x79\xcf\x4c\xb5\xe8\x66\x1b\x38\xc0\x9d\xf3\xc9\x61\x0d\xaa\x16\x42\xb2\xb8\x5a\x75\x20\x6e\x9c\x08\x17\x27\x18\xab\x8f\x25\x44\x88\x06\x9e\xc0\x1c\x39\x47\x77\x09\xd8\x85\xb5\x95\x16\xa9\x56\xaa\x4d\x9a\x34\x19\x84\xda\x97\x8a\xc5\xc4\xd5\x3a\x04\x13\x33\x59\xee\xca\x39\xb6\xea\xea\xd0\x2e\x13\x95\xcc\xaa\x16\xa1\x9c\x09\x58\x46\xab\x53\x91\x24\xf7\xd8\xa2\xa1\xd5\x71\xfb\x46\x0a\x83\x3e\xf1\x4b\x3c\xab\x91\x6b\x52\xf7\x51\x36\x65\xc2\x7c\x14\xb8\x36\x30\x16\xf4\x52\x4e\xd2\xd2\x4d\x75\xde\x2f\x71\x90\xb8\xd2\xca\xb9\xce\xf5\xf1\xf3\xb0\x2f\x12\x29\xa1\xbf\x18\xff\x7e\x22\xaf\x14\x9c\xe9\x7e\x41\x74\x87\xb4\x01\xf1\xde\xed\xef\x6c\xe0\x20\x46\xf0\x49\xc1\x2e\x5f\x14\xfd\x55\x1f\x21\x95\x2a\x15\x11\xff\x87\x42\x3f\xce\x30\x55\x3f\xaa\x1e\xc2\x59\x57\xcc\x22\x7a\xf7\x1a\xb3\x8d\x73\x7e\xa4\x12\x48\xd0\xac\xcf\x2c\x18\x57\x88\x34\x22\xa3\xdc\xc8\x2a\x8d\x92\x33\x33\x93\xee\xec\x40\x6e\xaa\xcc\x24\x11\xd9\x22\x68\xa2\xf4\xdc\xbe\x2b\x8f\x4c\x21\x06\xa1\x53\xa6\xca\x03\x0b\xb6\x33\x47\xc0\x20\xb0\xb6\xef\xed\xb5\x7c\xea\x05\xf7\x4e\x9e\x6e\xb6\xdd\x49\x0a\xe6\x7f\x7c\xf4\x81\x4d\xbb\x34\x30\x6b\xc4\x52\x19\x7d\x82\x94\x6e\xd4\x1e\x95\xf1\x3d\xa8\xd1\x7a\xa9\xab\x03\xfb\xb6\x1b\x9b\x98\x99\xc1\xea\x75\x57\xea\xff\x0a\xc3\x0e\x8f\x52\xd7\xef\xda\xb4\x9e\xad\xaf\xed\xb6\xb7\x9b\xef\x3f\x0e\xe3\x07\x3f\x58\x21\x76\x5b\x7a\xcb\x64\x58\x99\x7a\x54\x53\x3b\xf7\xd6\xad\xcd\x73\x73\xc5\x3b\x00\x31\x34\xe8\x63\x91\x12\x3b\xb4\x80\x0a\x65\x31\x8e\x96\x68\x2a\x4e\x48\x14\x4a\x33\x59\xed\x57\xc4\x12\xe5\xc4\x74\x76\x23\x53\x96\x63\xf8\x9a\xeb\x0f\xe1\x41\xa1\x2d\x40\x3b\x20\xff\x17\xa0\x18\x7e\x3c\xc8\x82\xd5\xcf\x18\x44\xf3\xa5\xce\x15\xfe\xe7\x91\x2e\x00\x16\x6f\xe4\x0f\xf5\x07\x57\x8c\x21\xcb\xdc\x71\xe0\xfb\x1b\x28\xe4\xab\xc1\xe0\x45\x08\x64\xad\x84\x43\xd2\xa3\x57\xda\x37\xe6\x00\x81\x75\x54\x2a\xdb\x8b\xeb\x21\x97\xdc\xca\xef\x7f\x22\x3f\x3d\xaf\x24\xc9\xf1\xa2\x61\x99\x9c\xe3\x00\x87\x86\x30\x21\x39\x06\x0b\xc1\xb7\x7f\xa4\x5f\x06\x31\xc7\x03\x82\x19\x9c\x73\x6d\xa6\xbe\x3a\x5e\xa0\x5d\xf0\xb3\xd3\xda\x4c\x50\xc7\xaf\x3f\x3b\x71\x6b\xe0\x60\xb5\xb0\xf8\x1e\xb1\x28\x34\x08\xf6\x89\xb2\x98\x88\xd2\xe5\x62\x6c\xd8\xb1\x35\xb6\x8e\x86\x91\x3a\xdc\xbe\x45\xad\xe2\x2c\x8b\xc4\xc0\x3b\xb0\xe0\x2d\x14\xb5\x2a\x38\xa4\x3d\xe0\xe7\xb9\xcf\xef\x22\x44\x68\x68\x2a\x44\x61\x0c\xe4\xd4\xd8\xb3\xa0\xfe\xc5\xf7\x2a\x25\x86\x70\x75\x44\x6c\x2d\x2f\xe9\x2a\xeb\x77\x3c\xbe\x92\x7f\x4d\xd3\x86\xdb\xd4\x58\xe8\xd6\xb8\xe8\xf5\x6a\x95\xbc\xa5\xac\xbb\xb1\x62\x0a\x76\xae\xaf\xac\xe9\x2a\xab\x77\x3c\x9e\xc8\x68\x7c\xf8\xca\x0c\x63\xfb\x9d\x5e\x24\xdd\xad\x91\x53\x67\x55\xba\x85\x1c\x8c\x6a\xa0\x43\xfa\x9b\xd8\xb0\x79\x6e\x1d\xd6\xd4\x28\x5d\xd3\xcf\x2d\xd7\x86\xd7\x3d\x5d\x36\x9a\x5f\xe3\x9d\xad\x6f\x5d\x47\x34\xa4\x3c\xd4\x39\x88\x9b\x6d\xd9\xab\xfd\x34\x8f\xa4\xa6\xdf\xc9\xcc\xcc\xd0\x65\x6e\xb6\x33\xbf\xb6\xd7\x79\x9a\x59\xb3\xeb\xb2\xe8\x70\xc6\x24\xc0\x76\x6b\x4e\xc7\x4a\xc6\x23\x1f\x79\x18\xb0\xf5\xf9\xe9\xbc\x54\x6d\xb7\x12\x3a\x2c\x41\xc5\x7b\x77\xd1\x9b\x33\x35\x74\xd3\x0e\xe5\xd6\xb5\xa2\x7c\x31\x83\x61\x5a\x9d\xf3\x19\xf8\x0a\xfa\x4c\x8b\x24\x2e\xbf\xd7\xab\x89\x13\xb0\x26\x92\x16\x80\xdd\x8a\x8b\x0d\x57\x21\xea\x2f\xdf\x82\x84\x5d\xd6\x1d\x76\xb7\xf0\xf1\xa1\x7c\x07\x6b\xf0\x0c\x5b\xf7\xa1\xeb\xe3\xae\xa5\xe5\xee\x6e\x55\x01\xfa\x6d\x7e\xb0\x12\x08\xb2\xb5\x9a\xd7\x9d\x69\xf7\xdb\xa6\x0d\x83\xed\xc5\x5a\xcc\x53\xa7\x1c\xca\x01\x35\x9d\x14\x36\x30\x14\x5c\x44\x13\x69\xdc\x3b\x50\x56\x5d\xaa\x3a\x93\x98\x1f\xeb\x58\x8b\x20\xf8\x44\x59\x4d\x4c\x09\x44\xab\xe8\x45\xdc\x5b\xc6\x3a\x86\x9c\x5d\x16\x43\x41\xdc\x31\xca\x44\xe8\x17\xe4\x38\x1b\xfa\xfd\x31\x8b\x7e\xab\x74\x49\xfa\xaf\x0d\xa6\x4f\xde\x34\x74\x38\x94\xb1\x61\xc3\xfe\x3b\xfc\xc9\x49\x69\x78\x82\x90\x9f\x41\xdf\xd4\xf4\xf0\x1f\x8d\xbe\x4b\x7a\x3d\xfc\x12\xea\xa9\xe9\x75\x3c\x0b\x8b\x3e\x2b\x95\x77\x79\xcb\xe7\xf2\xf4\xda\xae\x77\xeb\xcb\xcb\x36\x0a\x0c\xda\xae\x67\x9d\xea\x2f\x1f\x13\x66\xcb\x9d\x5e\xe4\x5b\xbd\xaf\x8f\xad\xa9\xb4\x95\x51\xa8\x4d\x93\xf4\xfc\xcb\xce\x12\xc6\xc2\xd3\x17\x05\xe1\x9c\xea\x6a\x76\xbe\x9e\x96\xff\x56\xc3\x26\x26\xe0\x47\xc3\xd4\xbb\xdd\x54\x7c\xde\xe5\x1c\x6a\x34\x5f\x97\xf7\x9e\x9e\x06\x1d\xe6\xbf\xe2\xc5\x14\x58\xe2\x0f\xbc\x1c\x7e\x30\xdc\xb8\x5e\x3a\xf1\x73\x63\x8e\x56\x20\x8b\x9e\x0e\x71\x52\xbe\x65\x97\xfa\x0e\x28\x07\xa0\xa2\x3b\x68\xfa\x3a\x2b\x63\x80\x20\x28\x38\x85\x52\x98\x88\x82\x9d\xf3\x89\x0d\x24\xbd\x93\x83\x40\x91\xe1\xa5\xc0\xe9\x15\x70\xb5\xe0\x26\x03\xa0\x7d\x0d\x86\xb6\xd2\xc2\x8e\x5a\xcc\x17\x51\x8a\xa5\x99\x20\x63\xcd\xd9\x7a\x56\x0c\xba\x7a\xc9\x5a\x0e\x2c\xbf\x12\xd6\x98\x4f\x87\x5c\x20\x73\x3d\x51\x4a\xbc\x2a\x11\x15\x5c\xf7\x94\x14\xf9\xb7\xa7\xc8\x13\x31\x14\x7e\xb5\x18\x9a\x37\x5c\xfd\xeb\xe9\xea\x7e\x25\x5f\x8a\x2f\x6e\xa3\xab\x78\x98\xad\x6b\x0a\x93\xb8\xe3\x45\xe1\x43\x30\x19\x93\x77\xd1\xd7\xae\xc6\xcc\x6d\xe6\x4e\x3d\x3e\xc4\xb2\x13\xb6\x99\xd9\x57\x9b\x29\x44\xb1\x50\x2f\x6e\xaa\x89\x18\x51\xbe\xab\xe3\xe6\x59\xe4\x94\xb0\x71\xbd\xeb\x60\x1e\xb7\xa2\xb1\x81\x00\xb0\x30\x11\xf4\x41\x8a\xa6\xb0\xcd\x21\x59\x06\xcd\x30\x61\x19\x7a\x21\x4b\x1c\xb1\xdb\xcf\xf7\x7d\x88\xc2\x88\x06\x19\x7b\xc3\x13\xf7\xe2\x07\x77\x61\x69\x64\xf2\xc3\x69\x33\x00\x13\x30\xbc\x06\xb4\x5f\xca\x3e\xc4\x81\x48\x31\xba\x57\x3c\x14\xa5\x24\xfb\x10\xbd\x1f\xf7\xb5\x65\x62\xe9\x4c\xa9\x25\xb2\xbb\xb1\x7d\x1c\xa5\x68\xb5\x81\x17\x22\x43\xbd\x92\x07\x4c\x9c\x7b\x1d\x75\x80\x39\xdf\x80\x40\xfd\xc1\xa9\x2d\x55\x6a\x64\x59\xa3\x2c\xb4\x69\x09\x14\xe2\x04\x56\xad\x50\x44\x0c\x29\xd6\xa1\x22\x95\x99\xd9\x42\x3f\x2d\x6e\xb5\xff\x1b\x7a\x21\xf5\x24\x66\x76\xda\x31\xed\x84\x5b\xd9\x9e\x91\xca\x69\x8a\x95\x95\x55\x18\x93\x71\x6c\xaf\x2d\xb6\x27\x83\x0e\x05\x1e\xc2\x1f\x64\x8c\x4e\xd5\x02\xce\xec\xe1\x7f\x24\x7e\x16\xe7\x2d\x65\x37\x53\x94\xb4\x42\x2f\x1b\x21\x2b\x92\x0a\x88\xfa\xb8\xfb\x06\x9a\x82\x5f\xe1\xc3\x1b\x34\x1f\x90\xe9\xf4\x06\x1d\xa2\x66\x4b\x34\x77\x95\x16\x05\xc5\xa9\x03\x9b\x06\xd8\x39\xef\xb4\xe1\x04\xeb\x8a\x6a\x2d\x7b\x05\xc4\x1f\x98\x75\xb1\xe1\xf6\x5d\x81\xcb\x88\x70\xc7\x1c\xe5\xaf\x88\x8c\x53\xd0\x1a\x56\xa9\x04\x55\xbf\x15\x64\xb8\xc1\xef\xf3\xca\x03\x14\x9c\xc2\x15\xc2\xd6\x99\xaf\xc1\xab\xff\xc5\xe7\xec\xbb\x77\xe6\x85\x65\x1e\x4c\x71\x3d\xc3\x9c\x3a\x44\x11\x9a\x64\x54\x34\xd4\x0c\xf1\x41\x9c\x4b\x12\x42\x39\x5f\x8e\xbe\x03\x08\x3a\x55\x10\x9b\xb5\xbd\xd2\xd1\x25\x8d\xb3\x47\x04\xe5\x8d\x57\x71\x4b\x1b\xa8\xfb\x97\xda\xbf\x7e\xda\xc4\x2b\xd4\x9f\x9b\xac\x59\xf0\x87\x2c\x71\xe8\x3c\xfe\x1e\x65\x55\x34\x6b\x50\x85\xf7\x64\x73\xc7\x17\x9f\x5f\x63\xcf\x92\xed\xf9\x59\x30\x4b\x86\x3b\x67\x04\xac\xb9\x3e\xf1\xa5\x35\x28\x81\x9d\xb3\xb1\xc7\x21\x13\x51\x87\x47\xec\x93\x9f\xa2\xdc\x1c\x19\x4b\x72\x43\xab\xe5\xe1\x2c\x48\x6a\x47\x7d\x01\x5d\x2f\x45\x0e\xf7\x9c\x83\x89\x6d\x46\x4f\xbf\x46\x33\xc5\xcd\x17\x69\x3f\x70\xda\x3f\xd1\xdb\x9f\xba\x0f\xc9\x2e\xeb\x6c\x5d\x69\x5d\x52\xde\xb9\x25\x21\x38\x05\xe8\x43\xbb\xa0\x17\x79\x8c\x48\xce\x62\xc9\x17\x9d\x4b\xb1\x54\xd5\x81\xc8\x0c\xa8\xef\x44\x14\xb3\x66\xd1\xc3\x80\x8e\xd1\x78\xbd\xed\x5f\xd3\x10\x4e\x61\x9a\x2e\x48\x14\xe7\xc1\xf6\xcf\x25\xbd\xfe\xa9\x48\xb8\xd5\x83\x44\x9b\x1b\x46\xd2\x4a\xad\x94\x12\xd9\x99\x28\x8f\x39\x2d\x46\xdd\xce\xdf\x97\x59\x39\x3c\xa3\xfe\xed\x70\x5b\x9d\x08\x13\x7c\x76\x91\xea\x6d\x3f\x2d\xa2\x29\x7b\xfc\xa7\x51\x6c\xcc\xbc\x52\xcd\xa8\xed\xda\x50\xf1\x0d\xaf\x8e\xf2\x20\xd7\x0c\x6b\x18\x53\x7e\x01\xe4\x42\xd4\x42\xec\xc1\x60\xb2\xf9\x18\xda\x94\x20\xd5\xa1\x97\xf9\x96\x42\xf4\x04\x20\x46\x97\x92\x4e\x2a\xd5\x1a\xd1\x43\x5d\x1f\x2c\x8d\xdd\x03\x70\x15\x0d\xd8\x61\x58\xc9\x69\x71\x58\xdb\x4e\xa5\xbf\xe0\xa2\x68\xc2\x2c\x05\x29\x22\x02\x3a\xd3\x12\xaa\x07\x35\xd0\x12\x33\xf2\xf6\xa9\xbc\x18\x9a\xac\xfc\x85\xd7\x3c\x5d\xbc\x4b\xea\x3a\x67\xe6\x7b\xbb\xe9\x3c\x94\xba\xce\x3b\xee\x7e\x18\x18\xb5\xfc\x09\xc9\xbd\x96\x8f\x9f\x1f\x11\x2b\x39\xd5\x63\xed\x1e\xc7\x1a\xff\x37\x7e\x1e\x13\x7d\x59\x4b\x81\xcc\x81\xe3\x10\x3f\x7b\x38\xd3\xe2\xcd\x1a\xfa\xd8\x88\x6a\x22\x69\xae\x08\x17\x29\x35\x94\x20\x1b\x6c\xc1\xd6\x8b\x44\x32\x94\xb6\xeb\xec\x42\xd9\x47\xca\x53\x2e\x41\xce\x14\xf6\xbd\x6f\xb1\x69\xf3\x81\x7d\xf7\x89\xba\xaa\x9e\x3d\x7b\x0c\x82\x9e\x71\x0a\x0b\x1b\x04\xd0\x90\x9c\xde\x4a\xd4\x63\x0e\x4b\x71\x81\x11\xf3\xbf\x44\xf7\xef\x07\x9a\xc9\x68\xfa\x3e\x8b\xde\xd2\xbe\x19\x31\xdd\x94\x4b\xbf\xf0\x40\x69\x68\x80\xa8\xc5\x10\x6c\x24\x50\xe9\xea\xb1\xe1\xc9\x79\x36\x47\xd2\xe3\x6c\xa7\x5e\x54\x36\x3e\xd2\xc9\xf2\xdc\x0b\x2e\x3c\xa4\xc2\xdb\x9c\xcd\xd6\x7b\x05\x89\xf0\x1f\x0c\x9f\x25\xf1\x89\x3b\x7d\xb5\xcc\xe0\x39\x30\x18\x8c\x7d\xaa\x71\x2d\x1a\x3e\x20\xde\x23\xf7\x1b\x27\x2d\x31\x8c\x2c\x63\x44\x50\x10\x82\x6c\x67\x95\x9a\x38\x89\xb8\xdd\x45\x02\x94\xb9\x39\x91\x99\x0d\x77\x6b\x8f\x02\x3b\x6f\x16\x1a\x3f\xf9\x10\xd0\xcf\x09\xf3\x58\xdf\xf7\x1e\x53\x05\xd9\x12\x05\xf8\xa2\x2b\xb1\xa8\x17\xe1\xd0\xd0\xba\x44\x5a\x43\xe2\x76\x73\x41\x6c\x8b\x85\xbb\x16\x45\x21\xf9\xaa\xe6\x4e\xfe\xb9\x72\x8b\xba\x11\x05\x3c\xc2\x3c\x54\x89\x86\x13\x73\x2c\xef\x4a\xca\x4e\x91\x04\x34\x85\xde\x72\xf7\xbf\x67\x72\x05\x06\x26\xad\xaa\x10\x29\x6d\xda\x68\x9e\x91\x93\xbe\x28\x41\x89\xe9\x61\x00\xba\x3f\x2b\x92\x28\x1d\xc1\x0e\x68\xc5\xab\x32\xc1\xa9\x6d\x9f\x7e\x7f\xee\x45\xda\xdb\x04\x97\x98\xb9\x25\xb3\x71\x6f\x94\x57\xdb\x4a\x0b\x33\xc8\xdb\x51\x37\x9b\xb5\x1d\x5a\x79\x84\xd1\xa8\x1c\x5c\x78\xdb\x73\x06\x3a\xd2\x76\x26\xee\xb5\x43\x06\x81\x0d\xbd\x14\x52\x1c\x98\x9f\x24\x95\x6b\x35\x5a\x48\x49\xfd\xa5\x7b\xbe\x60\xdc\x25\x01\xef\x44\x46\xe7\xaa\xd5\xa1\xfe\xf7\xcb\xe8\x1f\xf4\x31\xd8\x33\xcc\x6d\x01\xd2\x10\xb6\x90\x69\xdb\x79\x3e\x52\x99\x6c\xee\x3f\xe2\x57\x6a\x5d\x68\x26\xba\x2a\x1f\x15\x95\xfb\xd2\xab\xea\xea\x5a\x39\x39\xb9\x15\x57\x5e\x02\x95\x75\xe9\x05\x3b\x81\x2a\x94\xef\x96\x35\x5f\x0e\xf2\xae\x6e\x6f\x3b\x0d\x77\xf7\x95\x75\xeb\x8f\x42\x56\xde\x2e\x17\xbb\x96\x92\xa9\xcc\x8c\x7f\x74\x4d\x74\x0a\xb4\x93\xf2\xd2\x03\x16\x7a\x8d\x7f\x02\x20\x9e\xea\x6f\xa7\x98\x4d\xc3\x26\x19\x67\x88\xcf\x51\x18\x20\xff\x40\x0c\x6c\x5f\x83\x07\xf6\xc4\xf9\xc0\x98\x0e\x24\xf3\xc5\xcf\x78\x3a\x80\x50\x74\x77\x4d\x1a\xa2\xf9\x82\xa7\xfd\x08\xdc\x99\x8c\xc4\x08\x9c\x81\xd2\xee\x73\xca\x44\x92\x81\x40\xb9\x75\x93\xe8\xa0\x44\x62\xf0\x53\x16\xaf\xfb\x42\xf2\x3b\xed\x01\x37\xf0\x20\xbd\x40\xad\x2b\x1a\xae\xb8\x0b\xec\x85\xd3\x4f\x8f\xaa\xf3\x89\xf3\x49\xd3\x5d\x91\xac\xf5\x01\x9f\x81\x0c\xd4\xf7\x78\x2b\xc4\xf3\xf3\x1e\x77\x83\xeb\xbd\x52\xa9\x74\x25\xba\x81\xf8\x93\x24\x67\xe2\xd7\x07\x77\xd7\x8f\xd7\x2f\x63\x95\x22\x14\x16\x82\xc7\x6a\xa4\x83\xa4\xd7\x39\xc0\x73\x8e\x9e\x8b\x5f\xb1\x38\x91\x88\x5b\x18\x14\xb9\x9f\xb3\x4b\x3f\xe5\x66\x51\xac\x00\x0f\x15\x6d\x4a\x35\x1c\x6c\x98\xed\x14\xf5\x96\x85\x44\x3e\xa2\xcb\x91\x3e\xff\xac\x58\x39\xee\x46\x96\xde\xae\x1c\xde\x19\x9b\x7a\xf5\xb7\xa9\xdc\x75\x0d\x9f\x7f\xd0\x83\x61\x66\xb2\x3a\xd3\x4a\x41\x3e\x52\x74\x3e\x71\x5c\xab\xa2\x22\x2e\xa5\xbc\x1c\x4d\xc2\xda\x5a\xdd\x99\x8c\x47\x71\xcd\xe0\xb2\xad\x58\x7d\xa9\xcd\xfc\x01\x7e\xa8\x34\xdd\x6c\x7a\x53\x30\x41\xcc\x78\x90\x66\x99\x01\xab\x9e\xdc\x8c\xe7\x6e\x8a\x89\x92\x98\x54\xad\x40\x72\x5a\x32\x42\x81\x92\xd7\x92\xa7\xa2\x13\x19\x78\x12\xe8\xf6\x2f\x12\x82\xa3\xba\x45\x1f\x27\x1e\x55\x2e\x8f\x14\x1d\x91\x82\x10\xf9\x0d\x87\x64\x67\xc5\xf2\x3b\x04\xe6\xac\xd6\xb0\x58\xd8\xd5\xd5\x55\xd6\x35\xa6\xdd\x24\xcc\xf8\xb5\x8a\xd4\xf0\x27\x7f\x4e\xc4\x55\xa0\x73\x58\x0f\xe3\x0d\x74\x80\xd1\xf6\x33\x15\x18\xfc\x1d\xe1\x4f\x47\x64\x21\x8d\xdd\xe4\xe4\xfa\xd4\x80\x0c\x5e\xff\xa8\x7c\xbf\x28\x8f\x3e\x25\x36\xbc\x76\xb1\x04\x4a\x89\xfe\xfc\x55\x67\x77\x5c\xa8\x41\x66\x1f\x62\xb8\xc8\xb5\x90\x39\xd0\x02\x9c\x9f\xd4\xa1\x12\x46\xc4\x01\x6f\xde\x9a\x00\x6c\xed\x89\xc2\xe0\xc0\xf9\xab\x86\x27\xdf\x71\x3d\x5a\x1a\xc1\xbe\x41\xf0\x97\xc8\x47\xf4\x47\x74\xf8\xef\xfc\x00\xa9\x08\xb3\x3b\xdd\xee\xe8\xad\x09\x3f\x70\x65\x21\x9e\xbc\x6c\x7f\x03\x27\x3e\xd3\x44\xd2\xc9\xdf\x0a\x87\xa2\x65\xfa\x58\x87\x86\x2d\x44\x05\xd8\x61\x3f\x06\x87\x6e\x7a\xa5\x86\xd2\xa7\x4b\xeb\xf5\xe2\x9e\x94\x15\x0f\x0c\x91\x69\x5f\x1a\x6f\xbe\x0a\x8f\xeb\x0b\xe1\xc1\x75\x72\x52\x80\x73\x43\xa6\xac\x20\x3d\x51\xa2\x9b\x5c\xc8\x3b\x88\x78\x02\x6a\x06\x0c\xc3\x1b\xfe\x70\x18\x6d\x02\x2e\x4d\x55\x28\xc6\x6e\x5c\x0c\x90\xfc\xc5\x47\x0c\x15\x2e\x3e\xe7\x81\x7a\xa6\x5e\xe5\x0d\x25\x26\x70\xd4\x6b\xc9\x00\x80\xc6\x47\x60\x03\x6d\x68\xf8\xc4\xf4\x0a\xd6\xf5\xdb\x64\xf0\xfe\xea\x55\xde\x55\x80\x3e\xf9\xf7\x81\x4b\x58\xd3\x0f\xe5\x64\x3b\x14\xc2\x00\x50\xe0\x82\x87\xaf\x74\x9e\x08\xfa\xf0\x05\xcf\x34\xd1\x99\x6e\x77\xec\x16\x81\x04\x03\x01\x5a\x78\xca\x58\x15\x01\xb8\x23\xf3\x32\xb6\x85\x63\x20\xa0\x47\x1c\x61\x9c\xa4\x3c\x26\x0d\xf2\xa1\x3d\x44\xd5\xc6\xde\x7c\xda\xea\x4c\xe7\x4c\x4f\xb3\xf7\xf7\xda\xf2\xb0\x98\xf5\xd7\xe0\xdf\x57\x90\x7f\x8a\x57\x75\x19\x7d\x55\x90\x4e\x23\x3c\xbd\x16\x6c\xdc\x9c\xfd\x13\xbb\x93\xe9\x55\x52\xd2\x4d\xca\xda\x54\xb5\x09\x43\xf1\x41\x42\x4b\x7e\xfb\x1b\x25\xc6\x08\x0c\xce\x54\x13\x94\x4c\x5d\x7e\x8f\xa8\x04\x25\xf1\x5d\xec\x47\xb1\x54\x86\x41\x61\x08\x19\x86\xc1\x0c\x4b\x02\x7e\xe7\x21\xaf\xc1\xe6\xd0\xe8\x0b\xa8\xf3\x16\x58\x1c\x3c\x2d\x78\x09\x39\x47\x34\xc7\x5a\x04\x3b\x01\x3a\x74\x48\xa6\xae\x11\x9d\x40\x7a\xe3\xbe\x34\xaa\x12\x56\xbb\x15\x1d\xf6\xb4\x54\x90\xd7\x96\x06\xb9\xcc\xf5\xff\x03\x04\x40\xfb\xbf\x9c\xd9\xb0\x7b\xb4\x30\x26\x41\x9b\x10\x63\x2b\xae\x2d\xb6\xe5\x0c\xee\x6e\x4f\x6b\x6f\x2c\x89\x75\x44\x3b\x0a\x4a\x53\x4d\xb9\x46\xe1\x73\x45\x62\x6a\xa2\x42\x93\xee\xd1\x58\xca\x73\x92\x58\xcf\x72\xec\x0b\xb3\x75\x6e\xef\xce\xa9\x2f\xc8\xce\xf6\xe8\xd3\xca\x4b\x2b\x66\xcc\x29\xee\xdc\xd6\x65\x0f\x91\xc7\x45\x9e\x0c\x55\xc7\x46\xa8\xad\xde\xd4\xf4\x4a\x7f\x69\xf3\x9c\x52\x8b\x3f\xd7\xe9\x2e\x34\xd9\x4a\x33\xd4\x86\xaa\x45\x35\x74\xde\xa6\xe3\xf3\xfa\x43\x6c\x23\x9e\xb3\x15\x60\x06\x98\xe3\x9b\xa5\x83\x0c\x57\x93\x83\x64\x52\x17\x83\x80\x8c\xa9\xc1\xed\x46\x0c\x8b\xc6\x42\x20\x0a\xc7\xeb\x13\x49\x87\x42\x21\xc3\x70\x3d\x12\xc8\x71\x95\xb5\xd8\x58\x2a\x93\x81\x1e\x18\x21\xc0\x45\xab\x2a\x21\xa8\xaf\xad\x9c\x51\x35\xc3\xef\xcb\xcf\xcb\xca\xb0\x59\x8d\xfa\x94\xa4\xf8\x38\x55\xac\x3c\x0a\x3b\x2f\xbd\xd0\x1b\x45\x61\x62\x57\x3f\x46\x12\xe3\x8a\x5a\x40\x8f\x05\x45\x18\xc5\x8f\x39\x27\xbb\x8b\xe8\x10\xe2\xf9\x72\xc9\xc0\xfe\x8c\x18\x47\x61\x6d\x7a\xcd\xd2\x86\xb4\x77\xdf\x49\x70\x38\x73\xf2\x3f\xce\x68\x5f\x5b\x57\xbb\xda\x6a\x5b\x5a\x55\xbf\xb6\x3d\x83\x37\x0c\x8c\x19\x3c\x19\xe6\x18\x67\xb4\xab\x7a\xe6\x5f\x03\x98\x2b\x26\xc9\xe4\xd4\x46\xf0\xaf\xc7\xe5\x28\xe3\x32\x6b\x9c\x9a\xe2\x58\x7f\x71\x42\xa6\x5e\x99\xde\xbc\xb4\xf2\xc1\x9f\x6d\x29\xa9\x2c\xf6\x85\x54\x2e\x6d\x4e\x4f\xb7\x59\x33\xa0\x7b\xf6\x81\xee\xaf\xdb\x46\xc6\xc3\xa2\x95\x21\x0f\x84\x27\xc6\x45\xa3\x1b\x57\xa7\xb8\xcd\xaa\x94\xdc\x5a\x5b\xe0\xa3\xb8\x58\x18\x99\x92\x53\x6e\x74\x57\x92\xb5\xe0\xc6\xf3\xae\x98\xfb\x27\xd0\x63\x59\xdf\xec\x8b\x51\x51\x97\x9c\x3e\x55\x97\x92\x4c\x88\xa4\x42\x60\x15\x3d\x08\x52\x8b\x24\x31\xe2\x0d\x4d\x25\xdf\x98\xfe\x29\x8d\xfa\x0b\xf1\xb8\xec\xb6\xb4\x34\xa2\xd3\x40\x55\xcc\xe4\xbe\x1b\xec\x2b\xbc\xf6\x39\xb3\x07\x2b\x09\xc4\x58\xc9\xe4\xe4\x04\x63\x62\x26\x22\x3b\x98\x85\x43\x8b\x9b\xf6\x9d\x58\x3c\xfe\xc2\xf6\x9a\xaa\x6b\x9e\x5e\xd8\xbc\xcf\xa3\xaa\x73\xf2\x17\x1b\xfe\x5e\x51\x5b\x73\xe7\x86\x3f\x35\x7c\x08\xa3\x73\x6a\xfa\xf2\x0a\xfa\xb1\x51\xa4\x62\xd8\xef\x1b\xa9\x4e\x63\xcf\x2f\xe7\x4f\xbe\xe6\xdb\xfd\xfe\xad\x33\xea\xb6\x3d\x31\xbc\xe4\xf9\xad\xd5\x9e\xcc\xde\x03\xee\x6b\x17\x6c\xb2\x27\x9c\x4c\x1b\x5d\xbd\x30\xa0\x91\x45\xc9\x54\x96\x14\x45\x4e\xe7\x52\x9f\x77\x7e\x6b\xb6\x77\xe4\x3a\x2c\xb1\xc1\x62\x70\x0b\x3b\x8b\x7d\x85\x9c\xdf\x88\x1c\xf4\x59\x44\x14\x1e\x80\x14\x7e\x83\x45\x3b\x16\x86\x1d\xc1\x68\x66\x96\x6b\x34\x18\x4c\x46\x31\x4c\xcf\xa5\x13\xb5\x0b\xc1\xe0\xc4\x4c\x31\x3e\xb1\xb3\x2e\x44\x30\x5f\x07\x36\xc5\xa4\x66\x6b\xb5\xd9\xa9\x31\x15\x3e\x5f\x05\x22\xff\xd0\x17\x95\x7f\x80\xe9\x1a\x61\xb7\xd1\xb8\x2b\x2b\x03\x52\x77\x75\xb5\x1b\xbf\x00\x80\xd4\xe9\xe2\x0a\xb6\x97\x7d\x01\x68\x40\x1a\xc8\xc1\xd6\x46\x45\xa8\x14\xb1\xc0\x9e\xae\x4d\x61\x39\x36\x4e\x89\x10\xc7\x08\xe7\x73\x1a\xff\x0d\x97\x00\x06\x31\x4b\x71\x0d\x27\x9d\xdb\x13\xd0\xd6\x1f\x2f\x41\x41\xad\x21\x56\x5b\x8c\x25\x66\x0a\xfa\x40\x10\xd8\xc1\x71\xc3\xb2\x9c\x98\x18\x9d\x93\xd2\x5b\xa9\xcb\x21\xd2\x9b\x8e\x15\x85\x96\xcc\xef\xa9\xba\x76\xb4\x6f\x88\xa0\x4b\x66\xb5\x54\x5e\x3b\x67\x78\xc1\x99\x54\x3d\xcc\x54\x7b\x52\x28\xb6\x24\x2a\x31\x89\xff\x93\xd9\x45\xf0\x26\x02\xce\xc4\x78\xfd\x1f\x6a\x3f\x3d\x40\x91\x26\x49\x07\xdf\xaa\x3e\x7b\x63\xc3\xf6\x6c\x34\x37\x2c\x82\xa0\x4c\xca\xd7\x66\x05\xee\x89\x26\xc0\x13\x11\x6f\x22\x89\xa2\x98\x8c\xe1\x69\x30\x67\x8a\x49\x98\x0e\x58\x9e\x8e\x39\xb9\xe2\x97\xd4\x40\xf2\xe3\x98\x13\xf9\x55\x31\x27\x1e\xcc\x43\x31\x73\x5f\xce\x99\x33\x39\x7b\x7b\x47\xee\x98\xef\x39\x93\x54\x38\xe0\x6f\x1e\x4d\x49\x1e\x6d\xf5\xf7\x17\x26\x06\x21\x27\xde\xc0\x45\xe9\x63\x81\xd7\xf3\x8a\x44\xcc\x49\xb9\x97\x4f\xf1\x56\x4e\x62\x4e\x54\x00\xb0\xbf\xc4\xfb\x90\x02\xa8\x81\xdb\xe7\x94\x49\x10\x08\xe3\x10\x0c\x25\x27\xef\x50\xc0\xa0\x50\x06\x6b\x18\x24\xbe\x9b\x15\x4e\x0b\x97\xb1\xba\x85\xcb\x92\x26\x68\x48\xf0\x2f\x76\x73\xe0\x3a\x07\x8f\xe2\xac\xf5\xae\xbb\x48\x40\x63\x4b\x0b\x09\x69\x0c\x98\xe1\x19\x5e\xce\x3e\x7c\xe4\xfc\x37\x24\xba\x91\x0d\x3f\x02\x59\xfe\x02\x64\x03\x77\xbe\x08\x44\x4c\x1a\xf1\xa1\x12\xdf\xf4\x95\x71\x82\x3f\x8e\x3a\x13\xf1\x80\xb8\x4d\x1b\x70\x8c\x52\x03\xb5\x87\xc4\x83\x46\x61\x88\x12\x00\x0b\x39\xc8\x72\x63\x42\xd8\x21\x1d\x84\x09\x84\x5d\xf2\x65\x5f\xe2\x8f\xa7\x82\x38\xf0\xe0\xe0\x40\xc8\xc9\x78\x4d\xa7\xce\x29\x9f\xd4\xe3\x85\xf1\x80\x15\x6f\xbc\x81\x7c\x6f\x58\xda\xae\xe9\xa8\x5a\xd3\xe5\x78\xa3\xaa\xc0\xe2\xd1\x45\x70\xc7\xcf\x1f\x6c\xda\xd8\x99\x61\x69\xdd\xd4\xd1\xd7\x1e\x9f\x59\x6a\xa5\xf6\xae\x5a\xbe\x01\xc7\xcc\x9e\xc0\x3d\xae\x03\x76\xe0\x05\x8d\xbe\xba\x30\x88\x24\x02\x4e\x31\x1c\x86\x86\x86\xf4\x84\xc1\x90\x90\xb2\x5a\x19\x24\x50\x45\xc1\x9d\x2d\x85\x1c\x27\x18\x40\xa6\xc2\x16\x73\xdd\x84\xd6\xc0\x64\xa0\xa3\xa1\x2c\x73\x45\x47\xc8\x92\xae\x84\x60\xd4\x1b\xf1\xa0\x28\x69\x40\x87\xe2\x2a\x96\x6a\x74\x1c\x1e\xf1\x2e\xba\x63\x8e\x77\xb6\x27\x52\xee\x74\x67\x45\x66\x77\x96\x18\xff\x1c\xb8\x0b\xf3\x42\x05\x16\x7c\xf1\x8f\x3f\xe7\x79\xbd\xf9\xf9\x5e\x6f\x1e\xaa\x14\x5f\x61\xa0\xe3\x89\xd1\x23\x0b\x72\xa5\xa1\x47\x09\xd0\x31\x2e\x7f\x56\x2d\x73\xe3\xb1\x0b\x63\xc7\x8e\xa1\xff\x85\x27\x32\x7d\xbe\xcc\x8c\xe2\xe2\xcc\xe0\x5f\xca\xf5\x00\xd8\x1b\xd9\xbc\xe9\x71\xa0\xc5\x3f\x1e\x07\xea\xba\xfd\xcc\x99\xb9\xb0\x15\x9a\xf9\x99\xf0\x45\xfe\xb7\xf0\xd4\x0e\xfe\x55\x36\x8f\x8f\x5e\x05\x57\xf1\x8e\xc0\x0d\x54\x77\x71\xe3\x7b\x0f\x90\x38\x6b\xc2\x85\x45\x88\xb6\x48\xf8\x8f\x8c\x20\x2b\x2f\x0f\x0a\xc5\xe6\x56\x6a\x8b\xf4\x28\xa5\x54\x01\x96\xba\xf0\xd9\x1a\x1e\xfb\xe6\x1b\x12\x1e\xba\x75\xeb\x59\x66\x76\xcd\x33\x35\xbc\xfa\x15\x34\x3b\xed\x99\x34\x74\x03\x80\xe4\xec\xc4\x0e\x4a\x00\x90\x63\xbb\x7c\x04\xa1\xf1\x12\xee\xcd\xc0\x09\xb8\x2d\xc3\xb0\x5d\x04\x73\x3b\xd5\x29\x48\xe1\x93\x2c\xa0\x5e\xc3\xc9\x8f\x29\xd8\x56\x89\x7d\x84\xd4\xce\x63\x54\x72\xc2\x54\x26\xcc\x4c\xd4\x36\xaa\x86\x6a\xfe\x33\x61\x4e\x13\x75\x99\x7f\x00\x55\x33\xff\xdc\xf4\xcc\xa6\xc0\x75\x78\x72\x83\x43\xcf\x1c\x82\x2f\xbc\x4e\xda\x7b\x17\x5f\xcb\x3a\x71\x7b\xe3\x40\xbe\x2f\x57\x1d\x83\x04\x98\x2b\x31\x44\x30\x35\x72\x88\x60\x35\xc7\x22\x51\x83\xac\xbd\xf4\xd0\x1c\x07\xe2\xe4\x4a\xa3\x91\x42\x09\x27\x26\x8a\x8a\x5a\x5c\x5c\x90\xba\x9e\xe4\xac\x33\xab\x67\x4b\x4b\x6a\x5e\x6a\xa4\xa2\x50\x91\x5f\xc2\x37\x9e\x3d\x0b\x1f\xc7\x24\x04\xd1\xdd\x7b\xfb\x1c\xd2\xd0\x17\x25\x92\xbe\x36\x1f\x73\xea\x42\x11\x0e\xf1\xf2\x31\x27\x00\x04\xf7\xe2\xfa\x58\xd9\x06\x60\x04\x3b\x04\x77\x54\x0c\x84\x0c\x48\x85\x2c\xa3\x80\x88\xc5\x6f\x10\x5b\xa3\xa1\x1f\x72\x97\x7c\x28\xe2\xd7\x04\x2b\xa4\x84\x43\x41\x78\xda\xd4\x59\x4e\xb8\xf5\x88\xda\x54\x2c\x46\x6b\x4e\x2f\x12\xb4\x9c\x18\x81\x51\x61\xc6\x92\x94\x5a\x4e\x44\xbc\xde\x65\x6d\x9c\x8a\x99\xdc\x18\xe1\xba\x7d\x4e\xf3\xb6\x3e\xdc\xdc\xcd\x2d\xa9\xf9\x3a\xa1\xb9\x38\x12\xd0\xd1\xb0\x50\x7f\x06\xe3\x27\x9b\xba\xb3\x46\xee\x5e\x1a\x48\x16\xda\x7d\x5a\x22\xe9\x68\x47\x7f\xf3\x77\x79\xe2\xbc\x8e\x0b\x7f\x13\x70\x35\x08\xd4\x62\xfd\xe5\x7e\xee\x55\x12\xe1\x0f\xfe\x4c\xf5\xe1\xa7\x53\x28\xe7\x83\x86\xb6\x8d\xbc\x61\xf0\x1b\xf2\x37\x04\xd6\x74\x75\x4d\x70\x0a\x02\x89\x94\x9e\xe0\x44\xb8\x62\x59\x6d\xa8\x0c\x11\x2b\x1b\x14\x95\x6b\xda\x37\x9e\x4b\x4b\x02\x52\x30\x04\x8a\xc7\x3d\xe1\x1a\x81\x9b\x4b\x78\x2d\xda\xb5\x35\xbe\x6c\xf1\x4a\xec\x1e\x0a\x5e\x78\xd9\x31\x51\xb8\x0a\xca\x64\xe2\x45\x58\x33\x57\x24\x27\xea\xb5\x89\xe9\xc9\xe9\x44\xa8\x60\x17\x52\x74\x18\x3d\x36\x8a\x58\xa6\xa0\x0e\x35\x71\x80\xe4\xb2\x27\x60\x81\xc4\x58\xc5\xde\xcf\xf7\x14\x6f\xaf\x9c\x79\xfb\x78\x71\xd1\xf8\x6d\x33\x2b\x77\x16\xe3\x80\xb7\xeb\x60\x01\x3e\x06\xae\x09\x34\x66\xd8\xd5\x99\xea\x2c\x4c\xf7\x93\xe8\xaa\x93\x45\x14\x6d\x3a\xbd\x15\xfe\x76\xeb\xe9\x4d\x45\x11\xb2\x17\xf9\xbe\x17\xf9\x2c\x25\xc3\xb6\x20\x94\x58\xb3\x61\x16\x9f\x31\xb0\xbe\x2a\x51\xd4\xb5\x8f\xb2\x8d\x34\x46\xa0\x14\x54\xfa\xca\x64\x50\x0a\xe2\x21\x83\x52\x12\x10\xcb\x30\x35\x20\x04\x20\x06\x1f\x5d\xa7\x74\x1e\x89\x9a\x61\x18\xb6\x87\x83\x94\x09\x2c\x3f\xaf\xa8\x30\xaf\x34\xbf\xd4\x6c\xd6\x1b\x31\x3a\xd8\x40\x1a\xa4\xb8\xa2\xde\x8c\xc3\x2e\x48\x3b\x27\x63\x47\xc8\x67\x53\xac\x34\x58\xe1\xa6\x3a\x75\x3a\x5e\x20\xad\xb5\xab\xd3\x6d\xe3\xfe\xe6\x75\xad\x56\xbe\xb1\x61\x46\x5e\x9d\x36\x5f\xbf\xac\xf3\xfe\x41\xfb\xaa\xfa\xd6\x6d\x3d\x59\x9f\xe4\x96\x97\x7a\x89\x11\x40\x97\x99\x1c\x81\xaa\x73\x33\xde\x0a\x8f\x37\xa3\x6b\x16\x3c\xb4\xb2\x38\x27\xdb\x99\x03\x8b\xc7\x6f\xef\x7f\x33\x63\xcd\xb6\x14\xd5\x6d\x7a\xd7\x5c\xa7\xbb\x68\xe5\x43\x0b\x36\xed\xdb\xb7\xe9\x17\x45\xb3\xcb\x8d\xc6\xf2\xd9\x45\x30\x7c\xe7\xba\x36\xa3\x2f\x93\xc4\xd1\x3c\x0a\x00\x9b\x20\xb1\x03\x39\x30\xfb\x0c\x21\x10\x82\x50\x48\x50\x91\x44\xae\x21\x00\x87\x26\x6d\x79\x72\x20\x37\x1a\x05\x5b\xde\xa5\xb1\x19\x72\xf8\x68\xc9\xea\x47\x17\x98\x6b\x4d\xf1\x0a\x6b\xca\x35\x3b\xd8\xb6\x25\xc7\x57\x15\x85\x87\x3c\xc3\x49\x6e\xbc\xe6\xfc\x43\x84\xaf\x10\xaf\xe1\x6e\xfc\x0c\x0b\x28\xf6\x15\x68\xa1\x84\xd3\x41\x56\x12\x06\x11\xa0\x10\x66\x6a\x71\x60\x39\x09\x7e\x16\xae\x4b\x17\x09\x71\xb9\x04\x41\x4f\x02\x43\xf0\xe2\x13\xac\xf2\xfa\x4b\x76\x20\xb7\x8b\x68\x06\x97\xc7\x8a\x38\x99\x83\x6f\xe4\x0c\x1d\xe8\xb6\x77\xa4\x47\x85\xa6\xa5\xa7\x85\x35\x37\xde\x77\x5f\xd1\xb2\xfb\xe7\x3a\x66\x3a\xe2\x12\x2a\xac\x6b\x96\xbd\xc1\xec\xbc\xd0\x35\xeb\xf0\x88\x2b\x5a\xf9\xa2\x2c\x5c\xc6\x8d\xcd\x61\x8e\x3e\xd1\x31\xfb\xe6\xb9\xee\x38\xf9\xf3\x91\xd1\x8b\x47\x3b\x04\xdc\x03\x9e\x1f\xbf\xc7\xe7\x87\x14\xe0\x02\x99\xbe\x74\x25\x64\x60\x22\x64\x19\x54\x43\xf5\xb2\x2b\xb2\x45\x58\x6c\x4a\x9b\x01\x8b\xe0\xcb\xe3\xe3\xa9\x8f\xda\x49\xad\xd1\xea\x69\x81\xf2\x4b\x2e\x0d\x94\x5f\xfe\x94\xdf\xa4\xff\x79\x67\xab\xc9\x08\x7f\x5a\xbc\x7c\x7b\x8d\x7a\xb8\x76\xc3\x31\x53\xd3\xb3\xb3\xae\x10\x36\x8f\xc0\x7c\x2c\x47\x8e\xb1\x77\xd3\x78\xf5\x36\x5f\xa8\x0c\xb2\x20\x0a\x32\xac\x88\xb0\x4c\x10\xd4\xe8\x49\x0d\x9a\x61\x26\x74\xec\xab\x7e\x59\x45\xf0\xfa\x16\xdc\x5c\xd2\x5a\x71\xce\x4f\x36\xf2\xc7\x2c\x92\xf3\x89\x62\x3d\xfb\xae\x22\x93\xe9\xf9\xd6\x7a\x93\xe5\xbf\x20\xb7\xf3\x5d\x71\xb3\xab\x96\xdd\x65\xf5\x1f\xe9\xfe\x11\x00\x37\x99\xaf\x24\xee\x92\xbb\x97\xfb\x07\xd0\x13\x6c\x06\x84\x90\x81\x35\x12\x8e\xee\x56\x22\xed\x1c\xd5\xa6\xc5\xc6\x01\x40\x9c\xd9\x38\x5e\x3a\x46\x45\xe5\xba\xb2\x88\xa1\xb5\xbf\x52\xe4\x74\x5d\x56\x41\x6a\xf8\x4b\xf7\x3c\x05\xaf\x1e\x40\xfd\x12\xab\x2b\xe8\xcc\x7b\xf9\xa4\x2c\xb0\xf5\x2a\x91\xd4\x41\xbc\x2f\x37\x83\xbd\x01\xcf\xa9\x3e\x5f\x78\x62\x3c\x83\xbb\x53\x02\x01\x33\x69\xe0\x87\x1c\xe2\x96\x10\xa5\x38\xb8\x2b\x41\x51\x9b\x4c\x9c\xfa\x95\x68\xf7\x98\x74\x35\x46\x0a\x38\x57\x02\xe6\x8f\xa5\xcd\xc1\x2d\x21\x96\xfd\xe9\x40\x51\x25\x1e\x25\x6e\xc6\xa1\xc3\x7f\x8e\xbc\x1c\x2e\x5a\xe4\x60\x6f\x78\xe2\x65\xf5\x85\xaf\xaf\x00\x1b\x3d\xa0\x5e\x32\x08\x20\xb6\x9f\xd6\x32\x15\x04\xe3\x4a\x6c\xe8\x93\x51\x30\x57\x8c\x7d\x51\x96\x53\x9a\x8f\x2b\x47\xbe\x24\x22\x6b\xfe\x92\x7b\x71\xb4\x8b\x23\x32\x6a\x22\xda\xe5\xb5\x2b\xc6\xb8\x90\xb5\x78\x3f\x5e\x8b\xf3\xd9\x46\xa2\xd9\x12\xde\xb5\x24\xc8\x80\x44\x88\x04\xac\x1c\xc7\x22\x4e\xf0\xc0\x4a\xa8\x88\x26\x22\x44\xf4\xda\xea\x53\x21\x48\x33\xa7\xda\xf5\xf6\x60\x68\x9c\x0e\xea\x48\x68\x1c\x14\xcd\xe6\x66\xba\x48\x75\xc1\x35\x69\x2e\x62\x14\x64\xc4\x75\x14\x0d\x36\xb0\xfa\xd4\x8e\xea\xba\x6d\x4f\x8f\xae\x78\x7c\x79\x3e\x7a\x9b\xb3\xd6\xcc\x2d\xf7\xf6\x35\x94\x24\x35\x6a\x9a\x46\x36\xcd\xcb\x6e\x29\xb6\x85\xf0\xc9\x1a\x6f\x17\xdb\xd8\x7c\xed\xab\x4b\x2d\x2b\xdf\xb8\xae\x19\x56\x6e\x7a\x6a\xc1\xbe\xe2\x45\x2d\x99\x51\xf1\x7a\xc5\xed\xea\x0c\xa3\xfa\xc2\xcc\xb4\x8a\xfe\xdc\xf8\x2c\x8c\x0d\x11\xb8\x12\xd9\xbf\x31\xc5\xdc\x97\x40\x06\x92\x7c\x09\x12\x06\xd0\x40\x1d\x08\x71\x4b\x96\x12\xc9\x82\x26\x02\xca\x95\x7a\x7c\x44\x25\x4e\x82\xe2\x13\x37\xde\xf0\x12\x8c\xd8\xcb\x9e\xd7\xec\xda\x95\x74\x16\x40\x28\xc7\xf7\x78\x8b\xde\x43\x43\x26\x0d\x41\xc1\x52\x53\x26\xd1\x08\x8b\xc0\xc4\x1d\x3c\x4e\x25\xa7\x37\xba\x9c\x68\xd1\xc1\xb7\xf8\x2f\x0e\xf1\x5f\xfe\x92\x9b\xb3\x33\xe6\xfc\xf7\xb1\x00\x40\x98\xc9\x5e\xcb\x3c\x8e\xfd\x13\x4a\xc2\x1d\x12\xc4\xeb\x08\xb4\x02\x30\xe8\x04\x31\xc4\x1a\x28\x99\xc0\xb4\xc5\xcc\x3c\x6e\x9f\xb1\xb2\xa6\x66\xe5\x0c\xfb\x53\x51\xa9\x2e\xb3\xc9\xad\x8b\xe2\x1e\x2c\x1a\xad\xb1\x58\x6a\x46\x8b\x12\xb3\xcd\x6a\xb5\x39\x3b\x91\x3c\xe3\x23\xf6\xb7\xe8\x1c\xf7\x1b\x10\x46\x7c\xc8\xa2\xbe\x48\xf0\x2d\xa9\xd4\x95\x33\x15\xd1\xf2\x51\x45\x89\xbf\xa2\xc2\x5f\x52\xc1\x35\x7a\xaa\xab\x3d\xd8\x6a\x00\x10\x3c\xc4\x66\x33\x1e\xec\x53\x55\x00\x3d\x58\x24\xb8\x53\x63\x2e\x73\x88\x14\x30\x82\x1b\x75\xfa\x37\x65\xf4\x9b\xc8\xab\x5c\x73\xa5\xe2\x5d\x5d\x18\xba\xf8\xa3\x2e\x6a\xd1\x7d\x0a\x0f\xa5\x7a\xeb\xd3\x6d\x75\xb9\x5a\xcc\x8d\x6c\xc3\xbc\xc5\xa9\x0b\xa3\x93\x8c\x4a\x6b\x6e\xae\x55\x69\x4c\x8a\x66\xff\x6d\xab\x72\x25\x13\x6f\x5a\x7a\x25\x56\x4a\x72\x2a\xd3\x55\x46\x4d\xb4\xd7\x9e\x91\x17\x95\x68\x02\x10\x6e\xe1\x5b\x98\x48\x50\x00\xd4\xa4\xef\x43\xe9\xf8\xa9\x43\x10\xf5\x0f\x89\xcb\xc7\x68\x24\x5d\x84\xd5\xa3\x29\x0a\x84\xe8\x3a\x40\xff\xdb\xd6\xa0\x4d\x4b\xb1\x47\xa5\x25\x76\x96\xa7\xd7\x79\x75\x29\xf9\xed\xb9\xe6\x59\x05\x29\x69\xd1\xd2\x7d\x51\x49\x09\xd9\xb5\x0e\x73\x73\x5d\x59\x02\x9d\x6f\x5b\xd9\x8f\x99\x3a\x8e\x07\x29\xa0\x11\xb7\x19\x32\x28\x1a\x02\x88\x6a\x52\x20\xaa\x8a\x82\x04\xaf\x67\x22\x78\x3d\xd1\x49\x5f\x34\xe1\x3d\xa4\x5e\xcb\x18\x0a\x42\x05\xfd\x13\x5f\x93\x10\x1d\x85\x55\x71\x09\x10\x75\x0a\x0a\x55\x9c\x20\x75\x29\xb9\x8d\x99\xd9\xe5\x05\x85\x69\x8a\xd4\x84\xa8\xf5\x29\x9e\x86\x2c\x4b\x79\x89\xdf\xac\xd0\x27\x44\x71\xef\x67\xb4\xf9\xcd\xd8\x74\x8a\xfb\x42\x9d\x68\x6f\x2f\xb3\x90\xd7\x1a\xb3\x5a\xd0\x7b\xff\x86\xeb\x1b\xe0\xbe\xa2\xd8\x36\x11\x17\xd5\x45\x27\xf6\x54\xa6\x0c\xa8\x67\x9c\x8c\x1e\x5d\x80\x90\xff\xf5\x2b\xc3\xe7\xce\x3f\xc3\x7d\xc5\x7f\x0b\x43\xf9\x6f\xc9\x3d\xe0\x63\xfc\x4e\x74\xf6\xe2\x53\xd4\xf2\x55\x2c\x86\x47\x09\xd4\x04\x43\x54\x44\x89\x26\x94\xb8\xc9\x4f\x21\x44\x1d\xc1\xef\x10\x6c\xc4\x13\xc1\x24\x4c\x04\x6e\xda\x44\x50\x89\xf3\x40\x02\x1f\x4b\x48\xcf\x4f\xd5\xe5\x59\xe3\xe3\xad\x79\xba\xd4\xfc\xf4\x84\xd9\xc6\x84\x78\x9d\x2e\x3e\xc1\xf8\xb1\x2e\x37\x4d\xad\x4e\xcb\xd5\xe9\x3c\x66\xa5\xca\xec\xd6\x25\xa4\xa6\x26\x24\x1a\x0c\x64\x4c\x2e\x3c\xc9\x3e\xcf\x47\x4b\xe2\x04\xbe\x01\xd5\x4f\xe1\xb3\x16\x51\xcf\x8c\x93\x8f\xbe\xe9\xb5\xdf\xb0\xcf\xc3\x3e\x00\x03\x8b\xd9\xe7\xf8\xd3\x92\xf8\xa9\xf7\x11\xf7\x3a\x48\xef\x43\xde\xb6\x05\xef\x0d\xe0\xe4\x7d\x70\xdf\x05\xbe\xfb\xd5\x2b\xd7\x4a\xe2\xf9\x23\x17\x2f\x5e\xd8\xc0\x7e\x7c\xb1\x82\xe3\x91\x14\xdc\x7d\xfe\x07\x40\x7e\x60\xc0\xc7\xfe\x83\xbf\x59\xb2\x11\x28\x08\x3e\x39\x06\x32\x93\x4c\x46\x43\x00\x30\x0c\xf5\xcc\x32\x5d\xc4\x85\xca\xd4\x03\x40\x28\x96\x31\x4a\x95\xca\x0b\xb3\x5b\x70\xc5\x7b\x44\x78\x41\xa0\x55\x5a\xed\x57\x63\xdb\x85\xf4\x81\x63\x09\x56\x77\x22\x64\xff\x71\x3d\x97\xa8\x8f\x4d\x94\xcb\xd6\xcc\xed\x34\xb8\x30\x9a\xa3\x9c\x8c\xdb\x85\x48\x5c\x0f\xc7\xe4\xd8\x5f\x92\xaa\x60\x92\xba\x42\x18\x7d\x5e\xf6\x6b\xfe\x6d\xc8\xa1\xe4\x97\xff\xfd\x1d\xfb\x31\x0c\x25\xc3\x4f\xea\x9d\xc2\xdf\xca\xe7\x5d\xbc\x15\x84\x5d\xc9\x87\x2c\x08\x1e\x6e\x8a\xe0\x09\xa4\x60\x24\x72\x4d\x0d\x46\x24\xff\xaf\xa7\xa6\x86\xca\x1d\x88\x72\xd8\xaf\x99\x45\x92\x6b\x04\x0e\x89\xcb\x3b\x11\x77\xa1\x54\xe8\x42\xb4\xe6\x9b\x57\x97\x4b\xae\xe1\x97\x00\xc0\x40\x96\xfd\x2d\xab\x95\x7c\x42\x31\xd3\x1a\xd0\x2f\x46\xbf\x51\x1e\x0e\x81\xa8\x0b\xf5\x90\xed\x3b\x9b\x8a\x25\xf5\x95\xbf\xcc\xc2\x5f\x5e\xe5\x22\x12\x92\x6e\x30\x10\x64\xb5\x44\x9a\x40\x1f\xcf\x5d\xcd\xe6\xb2\xee\xdb\x43\xd7\xf1\xcf\x54\x14\x15\x56\x54\x14\x16\x55\x20\xa5\xf8\x4a\xf2\x09\xff\x97\x15\xae\xca\x4a\x57\x4e\x45\x85\xcb\x85\x7f\x73\x2a\x2b\x89\xff\x16\x65\xa2\x2a\xa6\x82\x69\x46\x12\xb0\xa2\x98\x4c\xb8\x23\x00\xb0\xee\x09\xfe\x2b\x01\x5c\x8d\xd2\x88\x22\x65\x11\x98\x38\xa4\xea\x20\x5b\x0d\xeb\x0e\xf4\x9c\x63\x6e\xc4\xf4\x70\x31\xb8\x3c\x59\xbf\x66\x7c\xed\xff\xe0\xd7\x8c\xc0\x38\x2b\x81\x94\x03\x0b\x80\x34\xaa\x1c\x74\x5f\x7a\x0f\x27\xd4\x19\x75\x10\x25\x7d\x0c\xff\x7a\xbe\x0e\x7a\x50\x35\xff\x0f\xc2\x4a\x78\x92\x39\x46\xed\xc5\x83\x78\xdf\x5f\xc1\x11\x1b\xb6\x06\x38\x28\xcf\x1c\x04\xc4\xf9\x3a\x28\x5a\x3e\xb3\x26\x2c\xbe\x0e\x44\xa8\x96\x8c\xb4\x77\xa8\x01\x9b\xfb\xaf\x1c\x55\x4c\x31\xdf\x09\x1f\x80\x9e\x9f\xca\x54\xb5\xf6\xc4\xc9\x9f\xcc\x55\x25\xc4\xc5\x3c\x2c\xf2\xe6\x00\x08\xd3\xa8\x19\xc7\x42\x27\x32\x6d\xbb\x40\x65\x82\x46\xf8\xa7\xff\x03\x7f\xff\x31\xfc\xfd\xf7\x6c\xdf\xf9\xbb\x49\xeb\x01\x6d\xfb\x56\x12\xff\x19\xc4\xf8\x0a\x1c\x7b\x02\x9f\x1a\xe1\x68\xa2\x76\xa1\x34\x11\x88\x4f\x3b\x94\xfc\xd0\xb6\x63\xed\x45\x47\x79\x94\xf1\xef\x56\xe6\x85\x0b\x65\xfd\xe8\x3f\x01\x59\x1b\x73\xeb\x85\x39\x27\x4f\x32\xb5\x2f\x32\xa9\xa7\x26\xe2\x4b\xf2\x44\x4e\x22\x00\x21\x3d\xbf\x4f\xad\x64\x34\x2b\x8d\x13\x99\xe4\x74\x6c\xde\x39\x3e\xe7\x1c\xf3\xa8\x38\xd0\x10\x2c\x06\x90\x72\x10\x86\x93\xd3\x11\xa1\x3a\x0b\x97\x10\xb8\x31\x07\x21\x60\x6a\x44\xae\xbe\x4b\xeb\x18\x2b\x97\x93\x7b\x42\x48\xc3\x54\xa0\x0b\xff\x81\x4c\x01\x3f\x1f\xbd\x75\xfe\x3c\xfc\x0d\xef\x60\xde\x0f\xf4\xc0\x43\xe8\xd7\x81\xaf\x4f\xdc\x84\x4a\x50\xf1\xe1\x53\x81\x6f\x68\x5f\xf8\x83\xb8\xeb\x78\xa0\x05\x66\xc2\x23\x64\x34\x24\x27\xa9\x23\x42\x81\x8c\x18\xfb\x68\xe7\x02\x5a\xed\x44\x0d\x5d\x9b\x97\x24\xd1\x10\xd0\xfe\x10\xdb\xf9\x71\xdc\x21\x87\x4d\xfc\xd8\xfc\x8d\xbe\x1b\xba\x7f\x55\x19\x41\xc5\x9f\x1d\x3a\xba\xaa\xb4\x74\xd5\xd1\xa1\xb3\x7c\xee\xf8\xc8\xc8\x38\xba\x63\x6c\x78\x78\x8c\xfd\xdf\xd0\xd6\xdd\x2f\x8c\x8d\x3d\xbf\xab\x35\xf4\xe4\x89\x90\xd6\x5d\xcf\x8f\x8d\xbd\xb0\xb7\x2d\xe4\xcd\x80\x76\xef\x03\x31\xe8\xa0\xe2\xe1\x3d\x7b\x1f\x52\x04\x16\x29\x1e\xa4\x7d\x39\x03\xd7\xef\x41\x92\x03\x85\xd4\x2d\x3e\x32\x0c\xb0\x34\x30\x09\x21\x00\xc4\x55\xa3\x54\xab\x63\x69\xe3\xb1\x70\x94\x53\x53\x2f\xb1\x15\x65\x30\xe4\x0d\xa9\x1a\x76\xea\x76\xce\x39\x57\x3c\x7e\xc7\xc0\xd9\xa1\xbb\x97\xfa\xce\x2e\xe8\x3d\x8b\xa2\xd5\x77\xdd\x88\x5a\x02\x8f\xae\xf9\xf9\xd6\x86\x70\xfe\x69\x58\x13\x56\xb7\xf5\xc5\x75\xe4\x93\x1b\xef\x52\x33\x47\x84\x79\xd6\x4d\x38\x17\xf0\x1a\xb1\x13\x36\xb2\x68\x80\x82\xcb\x2d\xb8\x3c\x58\x48\xfc\x01\x1c\x14\x06\x20\xc1\x2a\x57\xa7\x91\x49\x62\xc4\xa7\x1d\x61\x0b\x23\x49\x0f\xd4\xc4\x58\x48\x02\x23\xa6\x22\x4a\x48\x98\x01\xba\xcf\xd1\xe0\x49\x3e\xb8\x71\xc3\xc1\x15\x73\x78\x07\xe4\x0a\x66\x57\xa6\xd5\xef\x3e\xb5\x7c\xf9\xe9\x3d\xf5\xe6\xca\xa1\x02\x2c\x75\xb3\xbe\x8a\x68\xde\xf1\xf2\x7a\xff\x1f\xff\xfa\xd7\x3f\xfa\xcf\xf3\xdf\x24\x7c\x75\xca\xbe\xe9\x96\x87\xbb\x7d\x7b\x3e\x39\xda\xdb\x7b\xf4\x93\x3d\xbe\xee\x47\x6e\xde\x64\x3f\x45\x65\xc3\x72\x7c\x16\xdd\xc7\x36\x00\x1d\xc8\x01\x9f\x0a\xfb\x72\xb4\x16\x4a\x98\x74\x2b\x02\x92\xa8\x10\x44\xa6\x0e\xe5\xf0\x10\x3e\x67\x2f\xf9\xfc\xb2\x8f\x08\x1a\xb7\x4b\x90\xb2\xf1\x40\x22\x61\x7a\xa4\xc4\x36\xe9\xac\xe5\x20\x91\xf6\x08\x42\xe8\x80\xd4\xd6\x75\xf5\x02\xe9\x50\x64\x0c\x49\x22\xa7\x06\x5b\x2d\x2d\x06\xa6\x17\xf2\x19\x00\x90\x70\x12\xc0\x8d\x5d\x5e\x0e\x2f\x46\xb1\x18\x51\x1f\x7d\x72\x42\x0a\x9e\x66\xc2\x2d\xd4\x59\x0c\x06\xa3\x4c\x1a\x27\x82\xad\x04\x0d\xce\x24\x9e\xc9\x44\xbb\x85\x07\x06\x8f\x66\x2e\xd1\xdc\xc5\x5c\x08\x8b\xd5\x44\x6b\x62\xe3\xb4\x85\xa9\xcd\x4b\x93\x9d\xd7\xcd\x1a\xb8\x71\xd8\xe5\x1a\xbe\x71\xd6\xe0\x01\xa7\x9b\x67\xe2\x5c\x6d\x85\xd5\xb3\x52\xb4\xb3\x2a\x0a\xdb\xdd\x71\xd8\x43\xf1\xb5\x21\x43\x13\xca\x3d\x1e\x1b\x56\x52\xe5\xaf\x68\xd8\x73\x72\xa9\x72\xc3\xdb\x37\xb7\x55\xfb\x57\x06\x5e\xae\x58\xd3\x9d\xe3\xc9\x4c\x84\x01\xbb\xbb\x70\xee\x9e\x06\x32\x06\xf7\xf2\xab\xd8\xe5\xd8\xae\x98\x00\xf2\xc0\xc3\xbe\x48\x19\xee\x7e\x1b\xe4\x24\x0a\x08\x27\x9c\x6f\x06\x19\x64\x70\x7b\x19\xc9\x10\x3d\xfa\x4b\x21\x6e\x94\xd0\x52\x12\x5f\x4b\xe4\xb8\x1d\x91\x9e\xb3\x5e\xb9\x6c\xf6\x44\xd9\x74\xb1\x2c\xee\x40\x04\xd1\xd2\x1f\x2d\x4b\xad\x84\xf1\x89\x1a\x08\xbc\x9e\x4c\xbb\xc9\xa0\xc9\x4b\xcc\x53\x62\x57\x35\x48\x80\x09\x21\x52\x7a\x68\x13\x21\x7d\x93\xbe\x2c\xdc\x8b\x8a\x29\xc0\x51\xa5\x7c\x0a\x5b\xbc\xde\x85\x56\x0c\xdf\xb7\xdc\x37\xd4\xb9\xfa\x1a\xff\x8a\xa3\xb3\x6b\x6f\x28\x3e\x53\xb3\xf1\x58\x0f\x26\xf5\x8e\xd3\xe4\x34\xe4\x64\xcd\x28\xd4\x5b\xd7\x37\x15\xf4\xf9\x52\x93\xbd\xed\x9e\xb5\xdc\xab\xb9\x23\x07\xbb\xfb\x6e\xcd\xb2\xbf\xb8\x79\xde\xbd\xe3\xf9\x69\x36\x3e\x8f\x7b\xa0\xfb\xd6\x31\x5f\xe0\x70\x8a\xa7\x31\x2b\xad\x2e\xcf\x90\x5a\xd0\x9a\x7d\xe1\x7d\x53\x86\xa9\xac\xc7\xed\xec\xab\xb0\x3e\x43\xd7\xa0\x8b\xef\x67\xb1\xaf\x08\x84\x92\x33\x5d\x08\x87\x18\x31\xa2\xd2\x46\x56\xbf\x9d\x84\x25\x8a\xfb\x1d\xae\x33\xfe\x57\xed\x61\x1e\xff\x8e\x2f\x3a\xc3\x17\xfd\x07\xe6\xc8\x15\xf8\xe0\xfb\x05\x9f\x07\xdf\x64\xe5\x17\xfe\x53\x53\x2f\xe8\xc1\xf3\xf0\xde\xb7\x4c\x92\x42\x4e\xbc\x04\xcb\x41\xb8\xfb\xad\xf2\x10\x86\x85\x24\x1a\x0a\x32\x90\xa5\xcc\x9a\x90\x05\x90\x38\xa9\xc5\x3d\xb0\xb8\x28\x27\x3b\xd3\x6c\xe0\xa4\xea\x09\xb3\x8c\x94\x6c\x7b\x42\xb4\xc4\x54\xa7\x35\x95\x8b\xd8\x03\xaa\x98\x6a\xa2\x31\x93\x3e\xfc\xc1\x3d\xe7\xe0\xcc\xc6\xc3\x0d\xe9\xb1\xde\xb2\x1a\x53\x63\x77\x94\xb5\xae\xf0\xd3\x4f\xca\xb7\x9e\x58\xb3\xee\xe4\xb6\x72\x57\xef\x9a\x72\xa6\x67\xb4\x5f\x57\x36\xaf\xba\x6a\xb4\x54\x67\xae\x1a\x2e\xae\x9a\x57\xae\x63\x3f\xaf\x5a\xda\x64\xcd\xd0\xdf\x25\x8d\x8d\x89\xf0\xe3\xd9\x6c\xb5\xa9\x1a\xf8\xcf\x7e\x17\xbb\xe4\x95\x6b\x5b\x9a\xf7\x9f\x1a\x8f\x6d\xbb\x61\x79\x53\x74\x78\xda\xae\xc0\xba\xaa\x4d\x03\xb9\xb9\x03\x9b\xaa\x62\xbd\x4b\x06\xca\xc3\xbd\x03\x1b\xca\x27\x6c\x38\xec\x46\xb6\x1e\xe4\x11\x44\x12\x23\xc4\xf0\x91\x73\x3e\xc4\x6d\x95\xb0\x84\xa6\x75\x8c\xb8\x3e\x24\x0c\x3b\x11\x40\x44\x97\x20\x65\x8b\x76\x48\xeb\x70\x4e\x06\x5d\x9a\x21\xd6\x2a\x93\x62\x4b\xec\xd5\x43\x48\x9c\x4e\x25\xe9\x11\xb1\xe1\xce\x60\x97\x6c\x5f\x30\xbf\x7f\x4e\xd9\xa6\x67\x97\x0d\x3d\xbe\xb5\xfe\x8c\xb9\xac\xd7\x55\x39\x98\x17\x1f\xe7\x9d\x59\x7e\xf6\xec\xae\xf5\x29\xfe\xe1\x8a\xe2\xd9\x95\xc6\xaf\x3a\xf6\x3f\x35\x73\xd9\x8b\x3b\x6b\x60\x76\xef\x46\xad\x61\x75\x55\xfd\x8a\x46\x8b\xbd\x75\x75\x5d\x8a\xd3\xa4\x8c\x4b\x73\x26\x24\x3b\x0d\xb1\x0f\x57\x36\x25\xbb\xad\xf1\x09\x36\x6f\x4a\xd7\x35\x33\xd2\xd2\x5b\x57\xd3\xf6\xcd\xe2\x37\xb2\x19\x24\x4f\x02\x61\x70\x86\x94\xe3\x2c\x4e\x2d\x64\x42\x81\x5d\x44\x8a\xa4\x51\x5f\x8a\x15\x58\x2d\x69\x0c\x99\xf2\x4a\x28\xe4\xe7\x51\x93\x00\xed\x48\x86\x24\x49\x31\xbb\x4d\x66\x1a\x21\x13\xe3\x81\x3a\x17\x9b\xc1\x8f\xe2\x81\x30\x29\x2c\xc5\xf6\xdf\x17\x0c\x57\x5b\xa0\x39\xbf\x42\xb7\x2e\x2b\x83\x90\x57\x3d\xd3\xb7\xa5\xd9\xf0\xd8\x73\x90\x0b\xcc\xe7\x8e\x5f\xcb\xf7\x16\x2f\x5c\xb8\xaa\x3a\xb3\x2c\x2b\x25\x24\x3d\x52\x9b\xd3\x54\x64\xe9\x6e\xaf\x89\x1f\x72\xcf\x30\xea\x3c\x91\x3a\x79\x71\xef\xda\x86\x1d\x50\xff\x20\x94\x9f\x20\x75\xbd\x96\x1f\x64\x8b\x28\x6f\xc0\x82\x29\xfc\x13\x31\x90\x99\xe4\x9f\xa0\x6f\x44\x5f\x8b\x7a\x92\x7f\xc2\x49\x8c\x53\x96\xe0\xd4\xd7\xf8\x34\x1c\x15\x9a\xe2\x88\x4d\xfd\x96\xf2\x50\x50\x63\x03\xe6\xd7\xd0\x4b\x88\xb4\xbc\x12\xb1\x06\x9c\x1f\x91\x7b\x74\x41\xfb\xde\x21\xf7\xd9\xb1\x85\x6d\x2b\x4d\xd8\x89\x72\xdb\x8c\x99\xe9\x43\x47\x96\x9e\x7f\x9a\xad\x5e\x3d\x0f\xfb\x4d\xde\x13\xfc\x26\x0c\x78\x12\xef\x31\x0e\x9a\x6f\x25\x15\xd8\x40\x73\x30\x8e\x1c\xb0\x80\x00\x67\x06\x45\x69\x93\x35\xe1\xf5\x71\xe0\x13\xd7\xf4\xef\xb3\x27\xbe\x4f\xa7\xc8\x0f\xbd\xd2\x88\xa9\x80\xc9\xd6\x39\x3d\xef\x0a\xa3\x9b\x98\x4a\x50\x17\xdc\x55\x59\x47\xd1\xb2\xfb\x46\x86\xef\x5f\x5e\x5c\xbc\xec\xbe\xe1\x91\xfb\x97\x15\x9f\xe1\x07\x13\xb0\xd0\xc9\xa9\xcf\x49\xe0\x07\xe1\x9d\xa3\x73\x47\x46\x50\xfc\xae\xdf\xee\xab\xaa\xda\xf7\xdb\x5d\x70\xf5\xae\xdf\x1f\xa8\xae\x3e\xf0\xfb\x5d\xfc\xbf\x6e\x6a\x5f\xdb\x60\x30\x34\xac\x6d\x87\x33\xae\x79\xe8\xf0\x61\x62\x43\x27\x6d\x2a\xa6\x76\xb7\x1a\x5f\x28\xee\x7a\x26\x8c\xda\xe9\xa7\x30\x6c\x74\x81\xa0\xb0\x11\x05\x81\xe6\x4a\x9f\xa7\x93\xe0\x4c\xa5\xd9\x48\x55\x3b\x85\x4e\xb4\x0a\x4e\x86\xc1\x3f\x89\xb2\xe2\xad\x9e\x64\x7b\xa3\xc6\xae\x2d\x2a\x2c\xd2\xb6\x6c\xe8\xb0\xf3\x27\x31\x0c\x38\x39\xbf\x54\x27\x4b\x96\x3f\x18\x97\x1c\x2d\x31\xb5\xef\x1b\x41\x71\x64\x8e\xa4\x5f\xfc\x8a\x5d\xc4\xfd\x80\xfb\x68\x9d\xe0\x11\x8f\x26\xb1\xd2\x36\x1d\x62\x18\x5c\xbd\x54\x08\x2a\x35\x53\x3f\x4a\x85\x2c\x60\x44\xce\x85\x94\x89\x95\x2d\xc6\xbf\x5b\x68\x9f\x0b\x2f\xe9\xa0\x4c\x2d\xd1\x05\x82\x05\x28\xda\xd2\xc1\x62\x03\xb4\xb1\x3a\x4d\x15\xcd\x49\x49\xc6\x18\x68\xa6\x42\x4e\x6a\x0e\xf2\x6f\x43\xa2\xe2\x67\xbb\xdd\x1e\x69\x90\x6f\x95\x91\xc2\x6c\xfe\x07\xb8\xc5\x1a\x61\xc8\xf0\xa6\x46\x59\xe4\x4c\x84\xce\x60\x8c\xae\x5e\xdc\xe4\x8a\x86\x83\xa1\x49\x06\x6b\x9c\x2c\x54\x16\x1a\xc2\x46\x59\xa3\xca\xe6\x36\x17\xa8\x9f\x4a\x61\x63\xe6\xa7\x96\xb9\x74\x2c\x7c\x92\x91\x4a\x18\x4f\xcb\x40\xda\x85\x45\xda\x7c\xbb\x06\x22\xf8\xa2\x44\x4a\x4c\x5d\xf0\xd3\x1d\x82\xdc\x7a\x94\x5f\xc1\xb6\x63\x1d\xcc\x4f\x70\x36\x7e\x08\x18\x0f\x1d\x1f\x93\x11\xa1\x4a\x7a\x64\x46\xfd\x13\x2a\x19\xa8\xf3\x15\x61\x21\xc5\x92\xed\x20\x83\x99\x2e\x92\xd4\x62\x0a\x38\xdc\x16\x02\x39\xbe\x2c\x1a\x4e\xa5\x66\xa5\xda\x5c\xb7\x2b\xb9\x7b\x4d\x9d\x2e\xb5\x71\xf3\xc0\xc1\x03\xef\xfc\xc2\xd1\xb6\xc4\x3f\x3f\x6f\xb8\xc6\x6a\xce\xaf\xd4\xad\x8a\xd3\xa9\x42\x4b\x2a\xf2\x57\xbf\xb8\xa5\xec\xe1\x3b\xd7\x6f\xaf\xde\xfb\xcb\xcd\x2d\xbb\x72\xd9\xf7\x64\x91\x21\x5c\x42\x7a\x81\xce\x52\x96\xad\x39\x7d\xe0\xda\xfc\xee\x12\x4b\x58\x5c\x64\x52\x76\x53\x89\x20\x08\x34\xe9\x16\x4b\x9c\x39\x5d\x1e\xa5\x29\x9e\x7d\xc3\xd8\xc1\x53\x19\x69\x07\x06\xdb\x76\x60\xb7\x49\x2c\x69\x63\x1f\x96\xcd\xbf\xc3\x73\x50\x23\x72\xee\x90\x89\x08\x84\x89\xa8\x11\xdf\xb0\x10\x4d\x72\x87\x40\x6a\x61\x1b\xe3\x18\x04\x00\x05\x19\xd8\xa8\x3a\xea\x10\xd1\x3b\x2c\x80\xec\x25\xdf\x02\x96\xc5\x43\x4c\x4a\x90\xa0\x50\xb9\x9c\x38\x94\xa3\xa5\x52\x0d\xf5\xfc\x24\xa3\xa9\x66\xb0\x20\x30\x44\xc7\xae\xbd\x36\x32\x4e\xaf\x4c\xb2\xcb\xed\x9e\xc1\xec\x92\xd9\x65\xa9\xfc\x1f\xce\x6c\x66\x93\x98\x0d\x81\x07\x2d\x59\x71\x92\xa8\xd0\x7b\x8d\xb1\x29\xd5\x2b\xbb\x50\xf7\x85\xcd\xcc\x86\x17\x84\xbd\xf5\x20\x3f\xc0\xb6\x09\x3c\x35\xc4\x27\xa2\x87\x2c\x23\x83\x60\xd2\x27\x22\x6e\xa8\xce\x09\xef\x8e\x43\x94\x66\x57\xfa\x32\x5d\xf8\x92\xfa\x44\x30\xbf\x17\x9e\x92\x53\xe1\x36\xd3\x76\x20\xa9\x73\x02\x70\xd3\xe6\x9e\x77\xdb\x9c\x39\x87\xdd\x67\x6a\x36\x3f\x35\x77\xc5\xe3\x2b\x0b\xce\x24\x78\x7b\xfd\x25\xbd\xf9\x89\x10\xa6\x2e\xe9\xf6\xf7\x15\x68\xe0\xf7\x4b\x4f\xee\x6d\xf0\x17\x06\xbe\x65\x3e\x58\xfb\xca\xce\xaa\xb6\x9b\xdf\xde\xd0\xb0\x67\x6e\x61\xd1\xac\x75\x85\x90\xff\xd6\x5b\x91\xd3\xb3\xa6\x02\x40\x30\xcc\xb7\xb1\xb9\xb8\x4d\x0e\x82\x55\xd0\x69\x11\xac\x04\x10\x41\x62\x53\x16\x40\x29\x4e\x54\x07\x41\x78\xa8\x10\x16\xcd\x8a\xfa\xd4\x44\xa5\x82\xa1\x95\xea\x29\x33\xcf\x20\x28\x09\x68\x60\xf4\x91\xf5\x15\x1f\x25\x15\xce\x2c\xae\x9e\xe3\x4b\xd2\xd7\x2e\x6b\xc1\x1c\xb7\x2e\xe8\x6c\x1e\x71\x0d\xab\x3c\x59\xba\xe1\xd9\xfc\x85\x0b\xfe\x6b\x5e\xc0\xf0\xa1\xd1\xc3\x03\x93\xe1\xcf\xe3\x1d\x79\xa1\x91\xc6\x82\x9e\x52\xdf\xbc\x0e\xbf\x7a\x7f\x88\xd6\x9e\x67\xc8\xc8\x0e\x4b\x83\x61\xef\x50\x0a\x40\x10\xf4\xb3\x7d\xc1\x6e\xa7\x31\x0f\xe9\xa0\x44\xe8\x7f\x15\x2b\x92\x13\xda\x44\x37\x07\x55\xe6\xaf\xf8\x45\x3a\xed\x77\xa3\x25\x8d\x8a\x02\xa8\x9b\xea\x7e\x12\x62\x0e\xe0\x34\x27\x14\xbb\x9d\xff\xae\x6d\x76\xc9\xfa\xa7\x97\xaf\x7c\x76\x93\xdf\xbf\xe1\xd9\x15\x28\xff\xc2\xeb\x49\x85\xb3\xca\xfd\x7d\x85\x89\x98\xb7\xaf\xb4\x6c\xb0\x30\x89\x59\x55\x7a\x72\x85\x72\xf8\xb9\xbd\x33\x88\xdb\x49\x39\x7e\x6a\x7f\x4b\xe0\xcf\x13\xde\xa7\xb2\x35\x33\xdd\xee\x99\x6b\xca\x00\x80\xf4\x5c\xa3\xc3\x6d\x88\x07\xf5\x53\x97\x45\xb0\x35\xa4\xf7\xe9\x89\xfd\x32\x01\x7d\xa5\x2f\xd2\x29\x13\x16\x11\xd1\x42\x6b\xa6\x8b\x68\x3c\xe7\x53\xf8\x07\xe2\xac\xb9\xda\xac\xda\x14\x93\xb6\xb0\xa0\x48\xd7\xb4\x1e\x4b\xe9\xdb\x99\x63\xcc\xd2\xc0\x99\xe2\x4a\x43\x48\x42\xf4\x23\xb1\x09\x91\x9c\xb9\xfb\xe0\x7c\x14\xfa\x3a\x80\x60\x37\xae\x5f\x3d\xae\x5f\x8a\xc8\xca\x14\x43\x2d\xfd\xf8\xb1\x00\x4c\xd4\x67\xda\x87\xa4\x2e\xbe\x70\xc1\xb3\x64\x51\x1b\x89\x4e\x09\xe5\x62\x5f\x9a\x90\xd9\x39\x85\x34\x46\x0e\x57\xeb\x8b\xda\x9d\xa5\x18\x24\xc6\xf8\xb2\xce\xa8\xad\x18\x8f\xb8\xe4\x99\x2d\xe3\x4f\xae\xf7\xe3\xdd\xe3\x86\xe6\xb1\xf2\x94\x8a\xf1\xfd\x95\xdb\x21\x5c\x9f\xb1\xf8\x9a\x43\x2d\x2b\xdf\xb9\xab\xcf\xbb\xf2\x99\x8d\x68\x2e\x99\x03\x5d\x7c\x2a\x7b\x1f\xeb\x03\x46\xe0\x24\xdc\x6e\x21\x10\x01\x93\x5e\x01\x58\xe2\x5c\x92\x41\x50\x35\x39\x93\xc9\x76\x86\xea\x1c\x99\x46\x43\x42\x1c\xd1\x90\x38\xaa\x09\x91\xee\x91\x92\x09\x3c\xb1\xd8\x84\xf3\xb5\x02\x4f\x64\x41\xfb\x45\x70\xd9\xdd\x73\xec\x1b\x96\x1d\x32\xe7\x1a\x62\x90\x22\xbd\xd2\x69\xae\x1a\x2d\xe9\xbd\x7e\xd8\x93\x39\x7a\xff\xca\xb3\x67\x3d\xb5\x19\x4a\x14\x63\xc8\x49\x4d\x4a\x08\x53\xcc\xbb\xe5\xc5\x39\x0f\xc1\xa8\xce\x83\x69\x33\x67\x0f\x3b\x0a\xc6\x67\xd5\x28\xd1\x98\x77\x76\xb5\xb5\xf3\xd0\xe9\xf9\xb3\x7f\x7e\x78\x6e\x0c\x9f\x81\x6e\x8d\xad\x19\x1c\xcb\x2b\x5f\xdf\x9f\x9b\xa6\x23\x73\xa0\x11\xb7\xe1\x71\xdc\xc7\x7a\xb2\xfe\x52\x95\x31\x90\xda\x00\xa8\x3d\x96\x80\x76\x71\xbd\x61\xd0\xe9\xa8\x8e\x8f\x17\xfa\x12\xd7\xce\x64\x22\xec\xf7\xca\x4b\xcd\x01\xa4\x21\xe8\xb3\x82\x96\x1c\x35\x4c\xd7\x7e\xa1\x75\x64\x2d\x78\x74\xc3\x99\xa1\x3b\x16\xe7\x9f\xd5\x64\x97\x59\xf1\x89\x6f\x73\x6c\xe3\xe8\x9a\x92\x2d\x17\x56\xf7\x9c\xbf\x7b\xfe\x6b\x47\x16\xca\xf9\x4c\xf8\x87\xe8\xce\x43\x6f\xef\x85\x9f\xf1\xca\xae\x1d\x83\xc5\xd1\xcc\x5a\x00\x41\x11\x96\xd9\xb7\xe2\x3a\xb9\xc9\x09\xc2\x06\x05\x63\x09\x03\x18\x08\xc6\xa4\x12\xc4\x30\x36\x6a\xee\x61\x7b\x39\x48\xb7\x54\x00\x70\x49\xb7\x01\x8f\xb5\xd2\x2c\x23\xaa\x8e\x04\x49\xc5\xf1\xa6\xf5\x9a\x3e\xf4\xe2\x79\x96\xaa\xa3\x07\xd3\x3d\x28\x24\x56\x17\xa7\x4e\x4b\x96\x7f\x27\x4f\x4a\x53\xc7\xa5\xc6\x86\x20\x4f\xfa\x99\x58\x63\x62\xb4\xae\x66\x55\x67\xeb\x5a\xa3\x71\xed\x8c\xce\xd5\x35\xda\xc2\x34\x36\x6f\x3d\x7f\x71\x7b\xc3\x81\x85\x25\xba\xea\xe5\x6d\xb0\x94\x7f\xb1\x6d\x79\xb5\xce\xb7\xf0\x40\xe3\x94\x49\x72\xa4\x6f\x68\x60\x60\xa8\xef\xc8\x3b\x2b\xef\x83\x4c\xaf\x80\x71\xc7\x6d\x7a\x8a\xda\x3b\x0a\x08\xd3\x87\xd3\x6e\x65\x20\x1b\x8f\x00\x43\x91\x0b\x90\x45\x2c\x44\x63\x53\xec\x83\x08\x89\x6a\x5e\xae\xdb\x8e\x1b\xc6\x11\x25\x53\x22\x9d\x9c\xb9\x9e\xe0\x1a\x73\xb9\xa6\x9a\x40\xe4\x58\x79\x80\xc2\x94\x12\x8e\xe5\xec\x53\xb9\x95\xfe\xd5\xc7\x46\x48\x86\x8e\xcf\x74\x45\x5d\xde\xa1\x45\xe4\xa5\x6b\x60\x6b\x63\xcb\xe6\x5e\x87\x36\x3f\x31\xf0\x40\x32\xf6\x01\xe7\x79\x13\xec\xda\x18\xd4\x15\x1b\xbe\x76\xd1\x23\xab\x8a\xcb\xd6\x3e\x34\x0a\xcd\x90\xff\x73\xe1\xac\x0a\xd3\x8e\xad\x1b\x15\xbd\xdb\x8f\xcd\x52\x74\xec\x1e\xc8\xce\x99\x7d\x70\x26\xff\x0b\x36\x4c\x0a\xcd\xae\xfe\xa6\x02\x39\xcc\xed\x69\x8a\x31\x15\x58\xc9\xb8\x01\xc0\xfe\x8e\x3b\x05\x4c\xc4\xa6\xa3\x91\x21\x08\x8c\x8a\x68\xda\x40\x06\x8a\x7c\x54\xb4\x69\x16\x54\x67\x8a\x8d\x35\x0a\x5b\x4e\x11\x33\x09\x84\x90\xd2\x83\xa6\xf0\xd2\x2c\x68\xd4\x6a\x05\x3e\x75\x16\x68\x8a\xab\x9a\xec\x29\x05\x1a\x35\x1b\x1f\xa9\xf5\xc8\xf9\x3f\x9d\xe1\xff\x22\xcf\xd5\x46\xc4\xb3\x6a\x4d\xbe\xd6\xde\x58\x59\x94\x78\x1f\x36\xd3\x9d\x2e\x1f\x2c\x4c\x0c\x8d\x7c\x91\x61\xb4\x86\xc0\x70\xe0\x0b\x14\x87\x6e\x32\x68\x19\xe6\xc5\xc8\xd0\x84\xfc\xc1\x0a\x1e\x9f\xfd\x00\x02\x6a\x3c\x16\xbf\xa0\x5c\x39\xb9\x04\xe7\x19\x0e\xf1\x73\x6b\x80\x14\x48\x80\x54\x42\x77\x76\x51\xbc\x91\x74\xbe\x13\x46\x19\x3c\x08\xb1\x72\xb5\xc1\x1c\x1d\x22\x25\xd9\x7b\x55\xaa\xcb\xa7\x92\xdb\x83\x77\x76\x88\x97\x06\x76\x7f\x4d\x4c\x40\x97\x73\x22\x13\xd8\x2f\xd6\x69\xcd\xda\xaa\x15\x6d\xed\x1b\x4c\xc6\x0d\xed\xed\xcb\xab\xb4\xe6\x94\x79\xec\x13\xfc\xbb\x8c\x25\x95\x4f\xd5\x5b\x91\x2c\x26\x59\x1d\x6f\x4d\x89\xf9\x36\x26\x05\x93\xa2\x26\xc7\xc8\x98\x6d\x73\xce\x6e\xef\xbf\x67\x55\xd9\xf0\xac\x59\xc3\x65\xab\xee\xe9\xdf\x7e\x76\xce\xd3\x81\xb1\x15\x67\x97\x2f\x3f\xbb\x22\xa7\xb7\xc2\x42\xe6\xe0\xdf\xff\x4e\x66\x60\x5a\x45\xaf\x60\xbf\xbd\xf8\x2f\x76\x2f\x3e\xab\xe9\xc0\x9c\xa7\x11\x64\x21\x0c\x86\x34\x6a\x01\xe4\x20\x0d\x3f\x20\xf6\x0b\x59\x17\x90\xc9\x54\x02\x30\x42\x02\x11\x4a\xa6\xc6\x8e\x2b\x16\x91\x48\xd4\x13\x00\x8a\x64\x2a\x5a\x89\xcd\xd6\x24\x8f\xcb\x8e\x0e\x91\x50\x7c\xa5\x30\x4e\x93\x01\x67\xc2\xf0\x05\x49\xe1\x6b\xf9\xc8\x58\x4b\xc2\xa2\xe3\xeb\xfc\x8e\xd1\xbb\xc7\x51\x41\x8d\x35\x12\xae\x5c\x1b\x67\x54\x9c\xe3\x5f\x60\xcd\xec\x57\xfc\x10\x42\x79\x4b\x1e\x5c\xd4\x7d\xf3\xe2\xa2\x67\x8c\x45\x2d\xf6\x75\xdb\x19\x18\x58\xc9\x7e\x75\x4a\xd0\x51\x17\xe1\xb1\x5a\x8d\xe3\x13\x6d\xe4\x6c\x4d\x0e\x3b\x0c\x22\x1c\x24\x52\x4e\xc2\xe1\xc1\x02\x2c\xe0\xa4\xec\x64\x16\x94\xa4\x09\x3a\xd3\x64\x10\x24\x22\xd1\xcb\x95\x24\x17\x4a\x88\x04\xeb\x63\xe2\x6e\x74\x39\xe5\xbe\x52\x37\x81\x78\x62\x57\x87\xd4\x6d\x79\x66\xe9\xaa\x93\x3b\xaa\x6b\x76\xbc\xb8\x6c\xd5\xf3\x9b\x6b\x43\xcf\x4a\x8d\xa5\xb3\x2b\xf0\x41\xda\x80\x42\x02\xdf\x5d\xbb\x6b\xd3\x96\x48\x9c\xf2\xe6\xe1\xb5\xa5\xad\xb7\xbd\xb7\x13\x66\xec\x7c\xef\xf6\xb6\x92\xb5\x4f\x8c\x57\xcc\xaf\x32\x78\x46\x6f\xec\x73\x9e\xca\x7f\xf5\xb7\xdb\xf6\x53\x3d\x81\xc6\x7c\xdd\x8a\xc7\x23\x19\xd7\x25\xcf\xe7\x01\x20\x04\x4a\x59\x40\x19\xb0\xb9\x2e\x42\x7e\xad\xaa\x95\x50\xd7\x3f\x59\x22\x6a\x58\x97\x92\x02\x40\x8a\x2d\xc5\x9a\xaa\xc5\x97\x24\xeb\x8c\x38\xc2\x25\x54\x12\x3f\x35\xc2\x85\xa8\x90\xe4\xaf\xde\x25\x48\x38\x38\x19\xed\x82\x02\x99\x1d\x3b\xfb\x1d\x8e\xfe\x9d\x1d\xfc\x85\x3b\x4d\x78\x83\x4d\x8a\xd5\xda\x93\x22\x50\x93\x33\x2d\xd7\x10\x1d\x63\xcc\x33\xe3\xb4\x1c\x9f\x95\xaf\x7d\x70\x68\xf6\x83\x6b\xcb\xd9\xaf\x02\x4f\x3e\x1c\x38\xda\x7c\x32\x77\xc5\xd3\xeb\x99\xa8\x40\x5a\xe0\x33\x7b\xed\xac\x9c\xec\x81\x1a\x3b\xad\xfb\x22\x5c\xf7\x9d\x94\x37\x44\x4f\x64\x16\x40\x21\x50\xc6\x22\x19\x09\x60\x61\xa5\x04\x06\x0a\x21\x54\x11\xe8\x1c\xd3\x4b\x7c\x3e\x6a\xa6\x4e\xad\x56\xeb\xd5\xa9\xa9\x72\x39\xae\x36\x8e\xb0\x92\x90\x08\x57\xb9\xf3\xd2\xe8\x1c\x02\xaa\x9c\xac\x32\x9c\xf1\xda\x7b\xea\xee\xbd\xb3\x9c\xce\x59\x7b\xbb\xbf\x79\xed\x1f\xff\x80\xf7\x68\xac\x85\xa6\x18\x45\x5a\x91\x95\x29\x43\x0b\x02\x6f\xe2\x5c\x79\x83\x83\xf7\xae\x2a\x45\x5b\x02\xeb\x71\xed\x43\xf8\x48\x4b\x45\x77\x76\x56\x77\x99\x85\xda\xb0\x08\x56\x9a\xd8\xd8\x09\x16\x4c\xe4\x85\xe0\x60\x50\x39\x57\x51\xd5\x5d\x4d\xf1\xd2\x46\x65\x49\xb4\x54\xa2\xa1\x33\x36\x7b\x2a\x67\xa4\x3e\x38\x55\x8b\xf9\xb4\x48\x25\x33\xf7\xd8\x2a\xff\x59\x8d\x67\x46\xae\xe9\x1c\xff\x32\x1b\x8a\x67\xe8\x4a\x98\x39\xe7\xb6\x05\xbc\x1b\xbe\x59\xd4\xea\x54\x05\x7a\x26\xe6\xe6\x76\xfe\x30\x9b\x23\xe6\xa2\x01\x2c\xc3\x52\x24\x03\xee\x11\x08\x99\x6e\xa1\x47\x44\x0f\x87\x04\x83\xf9\x29\x18\x5c\xf0\x4b\x6c\x3f\x0b\xdf\x3a\xc7\x3f\xf8\x2f\x1e\x4f\x8d\xf3\x72\xf6\xcc\x0f\x4d\xfc\x61\x38\x4a\xfa\xfc\x3a\xda\x1e\x1a\x0b\x45\x3c\x14\x00\x92\x94\x4e\x90\x23\x7d\x4e\x5d\x1d\x2a\x11\x0d\x24\xb4\x8a\x84\x42\xa5\xe2\xce\xc6\x2d\x23\x7a\xd7\xd4\x59\xa2\x9b\xd2\xcb\x6c\x5a\xa0\xe7\x0f\x6b\x4f\x6c\x2d\xc7\xe6\xb0\xb5\x7c\x3e\x73\x13\x7e\x8b\xad\x60\x5a\x6d\xe9\x68\x15\x6e\xe1\xbe\xe2\xa5\xf7\x0c\xcd\xbe\x7f\xa5\x1f\xf7\x6f\x28\x2f\xb5\x56\xf5\xe5\x64\x77\x95\x9a\x69\x3c\x0a\x7f\x33\xbb\x85\xd6\x47\x4d\x62\xd1\x89\x4d\x1b\x34\xe3\x21\xa7\x12\x52\x55\x4b\xb1\x4a\xd4\x53\xa2\xa6\x9e\x12\x15\x8d\x45\x27\xe3\x4e\x3d\x30\x0c\xc9\xd6\xa4\xc0\xd5\x22\x7b\x32\x7e\xcf\xce\xf9\x43\xe0\x86\x5f\x19\x0b\xec\xe5\x59\x49\x12\x03\x7a\x7c\x65\xe0\xfe\x10\x9f\x0b\x8e\xbf\x4b\xc9\x63\x6e\x46\x69\x9a\xfe\xdb\xff\x71\x27\x6a\x3d\x2f\x47\xb7\x9e\xe1\x7f\x3e\xc2\xda\x49\x3f\xcb\x00\x60\x9f\xa7\xf9\x79\x1c\xbe\x0c\x85\x0c\x01\x0e\xd6\x48\x21\x87\x20\x4d\xde\x24\x93\x20\x52\x93\x10\x06\xd1\x4a\x28\x63\x29\x52\x93\x46\xf8\x11\xf9\x44\xa7\x1c\xa3\x53\xe0\xff\xe9\x54\x54\xe8\x18\xfc\xbf\xcc\xf9\xbe\xf7\x3e\xfe\x0c\xff\x3e\x94\x5d\xeb\x79\xdf\xb1\x0f\xca\xfe\xe7\x07\xfe\x0c\x1a\x0d\x1c\xa6\xbf\x5f\xa1\x53\x81\x1d\x68\x35\xfd\xc5\x0c\xd3\xc4\x57\x82\xe5\xd0\x16\x92\x7f\x95\xf0\x91\xa4\x5c\x31\xff\xaa\x0c\x5e\x96\x80\x35\x69\x22\x01\x6b\x32\x5b\x07\x41\xbe\xd7\xe9\xb0\xa7\xa7\x99\x54\xb1\xd1\x51\x61\x21\xa0\x00\x16\x84\x48\xc8\x79\x46\x18\xa3\xe9\x89\x58\x55\xaa\xe9\x80\x34\x12\x06\xee\x42\x63\x55\x73\x4a\x92\x75\x15\xf3\x6b\x72\x07\x2a\x2d\x67\x9b\x77\x3f\x33\xbc\xea\xd4\xae\x9a\x94\xfc\x36\xf7\xea\xcd\xcd\x07\xdf\x58\x35\xf0\xc2\x0d\xbd\xe7\x2c\xb5\xa3\xbe\xea\x25\x0d\x96\xeb\x0f\xe0\x0c\x0b\xba\xbc\x96\x6c\x7b\x73\xa1\x41\x9b\xdb\x98\xd1\x77\xd3\xdc\x5c\xd7\xdc\x5b\x87\xb3\x7b\x9b\xfd\x71\xd6\x87\x36\x92\x44\xac\x8e\x91\x23\x63\x59\x6d\xc5\x06\x43\x71\x7b\xf6\xfa\xa5\x34\x1e\x51\xc8\x0b\xe4\x16\xf3\xf4\x84\xb0\x48\xa4\xad\x53\x51\xda\x3a\x75\x90\xc0\x4d\x42\x08\xb3\xc8\xb6\x4d\x50\xea\x4c\xf9\xb9\x73\xbc\xf3\xdc\x39\xe2\x10\x64\xde\xbd\x60\xc0\x98\x68\x03\xbd\x97\x0d\xdf\xab\x88\xc6\x56\xd0\x75\x0a\xd9\x2e\xa2\xbd\xa9\x26\xe3\xe7\xd4\xa0\x4e\xf0\xc7\x63\x99\x27\x97\x90\x9b\x92\x85\xc2\x48\x90\x44\x82\x9b\x4c\xe7\x11\x5b\x74\x8e\x3f\x82\x50\x46\xdf\x75\xb3\x0b\xd3\xb2\xb0\xdb\x08\x32\xe4\x39\x58\x8c\xfd\xfc\x29\x9e\xbf\xaf\xe1\x24\xe3\x5a\xfa\xcc\x76\x46\x4a\x9e\x17\x87\xcf\x0e\x24\xbb\x51\x02\x79\x5e\x5c\x04\x64\x44\x42\x3c\xa1\x01\x20\xc8\x87\x97\x0c\xeb\x54\x66\x63\x0c\x69\xc4\x54\x3a\xbc\x64\x66\x82\x0d\x2f\xb1\x1d\x96\xc3\x88\xc0\xb7\x71\xbe\x9e\xf5\xed\x55\x8b\x52\x54\x11\x26\x5b\xba\x22\xb3\xc2\x99\x1a\x96\xca\x47\x41\x19\x33\xf2\x25\xe3\x3e\xdf\x9c\x3b\xbb\xde\x1e\x17\xfa\x1c\x8b\x29\x36\x70\x76\x9c\xa4\x2a\xd6\x2e\xca\x88\xbb\xd8\xdf\x4c\xca\x08\xc8\xb6\x08\x32\x82\x88\x7b\xae\x1b\x70\x9c\x9a\x9b\x2e\x23\x9c\x8c\x20\x23\x5e\x3a\x77\x2c\xf6\x7f\x2e\xdc\x2f\xc8\x88\xf3\x8a\xc0\xfb\xb0\x9f\xe2\xdd\x01\x60\x2b\xf0\x3d\xd5\x44\x42\xa8\x70\xd3\x18\x81\xaf\x9c\x21\xf2\x0f\x0e\x71\x84\x06\x18\x37\x51\xec\x53\x35\xc0\x9a\xb1\x7e\xa2\x4f\xa7\xa3\xeb\xd8\x8a\x73\xde\x0d\x65\xc3\xf7\x62\x2a\xee\x78\x47\x9d\xb3\x60\x4b\x01\xe9\x56\x54\x14\xa3\xca\x59\x7c\x7c\x1d\xfc\x25\xef\x6a\x1c\x29\x8c\x8f\x55\xa0\xe3\x42\x9b\x86\xf1\xf3\x97\x92\x36\x11\x7b\xb0\x84\x63\x18\x08\xc9\x94\x20\x92\x0b\xb0\xac\x9a\x6a\xe4\x61\x20\x8c\x36\x4b\x2a\x6c\x5e\xf4\x3f\xd2\x38\x38\xe3\xfe\x4f\xef\xfb\xf2\xfc\xd7\x42\x9b\x04\xd9\xc7\x89\xf7\xc5\x7d\xf5\x21\x8d\xed\x25\x4c\xd9\x1c\xe0\x5a\x64\x52\xe1\xe6\x2c\x22\xe6\x96\x6e\xa2\x8c\x50\xf2\xf5\x28\x10\x25\x17\x7e\xe8\xbe\x2e\xde\x9f\x76\x9c\xf8\x8c\x45\xb1\x7f\xbd\xb0\x74\xf2\x31\xe7\xa3\x03\x1f\xc2\x7e\x7c\x77\x04\x9c\xb8\xa6\x9b\xae\x20\x63\x45\xcb\xe3\x8f\xc9\x58\xc5\x55\x65\xac\x13\x81\x85\xcb\x9e\x5c\x53\x5c\xbc\xe6\xc9\x65\xfc\xdd\xfc\x39\xfc\xd6\xd7\xe3\xd5\x10\xc2\x05\x2c\x56\x9f\x2a\x1a\xbf\x73\x70\xe0\xae\x65\x3e\xf6\xeb\xc0\x71\x3e\xc9\x5c\xd6\x9d\xed\x68\xf7\x19\xa9\xed\x77\x1e\xae\xcf\x28\xe5\x24\x88\x01\x29\xb4\xed\x40\x0a\x25\x1c\x90\x0c\xb1\x90\x8e\x24\xc7\xc1\xde\xa0\x7e\xa0\x50\x28\x52\x14\xc9\x74\x87\xd5\xca\xf0\x8c\x81\x53\x6a\xe3\x84\x97\xed\xad\x3d\x95\x33\xf7\xcf\xca\xce\x19\xbe\x61\x90\xff\xcb\x39\x26\xe2\xdc\xb9\x0b\x5f\x17\x59\xf2\x70\x80\x8c\x21\xcf\xc2\x0c\x14\x8e\xdd\x4e\x6b\x44\x06\x1b\xaf\xd3\xaf\xf9\x78\x4b\x79\x8f\x50\xab\xc9\x7d\x28\x12\x68\xa8\x17\x1f\x10\xd5\x10\x50\x07\x06\x5d\xb4\xb0\x57\x90\xf9\x51\x51\x51\x9a\xa8\x84\x54\x5c\x1b\x3a\xbf\xa6\xd6\x46\x3e\xa5\x26\x9b\xdf\x9e\xdc\x7d\xce\xbd\x2d\x6e\x3d\xcc\xda\xab\x6c\x3c\x10\x54\xd2\xbc\x41\xaf\x01\x3b\xd1\xfb\xc4\xf8\x51\xac\xf7\x41\x00\xa5\x58\xe4\x22\xfc\x07\x41\xa2\xf7\x51\x06\xba\x24\x32\xdb\x69\xca\xcd\x64\x3a\x3f\xec\xc0\x6e\x21\x04\x74\x0a\x41\xef\x93\x04\x4f\x4a\x78\x97\x17\x45\xad\x7a\x32\x6b\x88\x88\x90\x82\x5e\x46\x5f\x3a\x90\xbf\xe3\x36\xbe\x15\x3e\x6c\xae\x99\xeb\x2f\x99\xed\xd7\x31\xe7\x2a\x37\x3f\xbf\x74\xd9\xc9\xdd\xf5\x75\x7b\x5e\x59\xb5\xf8\x99\x2d\x95\x08\xfe\x4f\xc5\x58\xa3\xf5\xf5\x53\xbe\x53\xfe\xfe\xeb\xe7\xe4\xd8\x1a\x97\x54\x8e\xfc\x6c\x57\x63\xcb\xcd\x7f\xdd\xc9\xbf\xb4\xf3\xaf\x87\x9b\xcb\x37\x3d\xb3\x94\xec\x9d\xb3\xb1\x0c\x5a\x48\x6d\xfa\x36\x82\xac\x51\x53\xf3\x31\x8b\x6b\xce\xc2\x41\xea\x8b\x25\x3a\x02\x55\xa0\x04\x11\x98\x4c\xcc\xc7\xe6\x89\x12\xf4\x3b\x89\x44\x6c\x20\x9e\x8d\xa4\xa8\xa8\xdd\xe2\xa0\x61\x8b\x99\xb0\xc5\x2b\x52\xe9\x7e\x1b\x8d\x1b\x81\xe4\x2e\xaa\x5f\xc9\x9d\xae\x68\x9c\x3f\x34\x46\x3e\x91\xa7\x6b\xe2\x14\xcc\x2e\x7c\xf1\xf1\x07\x1e\x1f\xfc\xf0\xc3\x41\xfc\xe7\xc5\x7f\x44\x6a\x5d\x26\x5d\x46\x52\x44\x44\x52\x86\xce\xe4\xd2\x46\xc2\xf3\xfc\xf7\xfc\x77\x10\x2b\xa9\x0b\x03\x87\xf1\xa0\x2c\xbf\x16\x4a\x61\x08\x26\x20\xfd\x3e\xa6\x6d\x55\x6d\x6a\x6a\xed\xaa\x36\x5e\xdf\xbe\x9a\xbc\x5a\xdd\x4e\xda\x18\x06\x00\xab\xa5\x6b\x36\x8e\x20\x98\xb9\x2b\xe6\xe5\xc2\x7a\x42\x70\x77\x06\x40\x8d\x3d\xf7\x64\xfd\xa6\x11\xd9\xa0\xb6\x91\x35\x44\x0e\x4d\x41\x9e\x0d\x88\xb5\x70\xbc\x99\xa4\x4a\x98\x4c\x9e\xe7\x3f\xe0\x2f\xc2\xea\x4d\x3b\xaa\x77\x9d\x5a\x0d\x5f\x0b\x24\xef\xdf\xff\xce\x3b\x07\xf6\xa1\x86\xc0\x13\xe8\xa0\xe7\xf9\xed\xc3\x77\x2c\xf0\x60\xe9\x0f\x97\x6c\x83\x1f\x6f\x24\x75\x59\x8d\xfb\xbb\x4b\xa2\x00\x56\xe0\x23\xb9\x70\xd3\x44\xf4\x17\x5a\x82\xab\x25\x64\xc4\x15\x73\xae\x11\xc1\x9f\x6e\x83\xc0\xe3\xb2\xf9\xd2\x7d\xc9\x49\x18\x64\x6b\x85\x56\x29\xd9\x8f\xa7\x72\x53\x14\x32\x39\x31\xf8\x44\x4d\x41\xd6\x34\x19\xae\x14\x47\x48\x88\x76\xc7\x09\xe3\x1c\xba\x69\xfe\x03\x4b\x0b\xfc\x1b\x9f\x5d\x41\xec\x72\x95\xd7\x3c\xb9\xc8\xdd\xea\x4d\x3e\xe5\x1a\xdc\xdd\xea\x5b\xd8\x51\x10\xe5\x7f\x30\xbf\x6c\xb0\x28\x91\x18\xea\xf0\xdf\xa4\xa4\xe2\x41\x86\xaf\xdb\xf6\xcc\x3c\xe5\xf8\xcb\xfb\x1a\x5b\x0e\xbe\xb6\x5c\xc9\x78\x5e\x86\x9a\xd3\x4b\xd5\x61\x2a\x5d\x86\xbe\x77\x79\xb5\x25\x26\xd2\xd1\xb4\xa2\xa5\xa2\xf9\xa4\xa3\x75\x71\xa1\xb2\x6c\x35\x21\xf3\x5b\x5d\xa6\x2c\x5c\xdc\xea\xa0\xfe\x22\x1a\x33\x5f\x44\xf9\x6b\x35\x40\xff\x23\x79\x4f\xe3\x26\xf3\x9e\x52\xe9\x01\x80\x5e\x97\x8c\xc3\xbf\x15\x09\xaa\x58\x7c\xb1\x5c\x27\x93\xd0\xfc\x9a\x97\x7a\xa9\x21\xfe\x80\x82\x05\x8d\xce\x6c\xaa\x73\xdc\x00\x7f\x36\xf7\x81\x15\xc5\x33\xbb\x97\x2c\xc9\x5b\x74\x64\x0e\xff\x35\x8c\x18\x9c\xd9\x3d\x9b\xff\xfa\xcd\xb7\x17\xcc\x7f\x9d\xcd\x33\xd4\x8e\xd7\xd5\xae\xd4\x26\xec\x68\xaf\x5f\x56\x6f\x86\x6f\xf1\x67\x2b\xfc\xc5\xd5\x8f\xac\x2b\xf7\x05\xf7\xab\x4c\x36\xef\x52\x5c\x16\xae\x18\xa9\x12\xc5\x54\x49\x26\x70\x59\x99\x81\xc1\x33\xcc\x7e\x66\xd5\x85\x9d\x41\x6e\x76\x33\x56\xc2\xb1\x27\x87\xe8\x9f\x64\x7e\xb1\xc4\x42\xd9\x4c\xa3\x75\x68\xe3\x24\x32\x8e\x09\x82\x80\xd4\x0c\x99\x5d\xb8\xfe\x94\x18\x00\xff\xa8\x42\xb0\xbc\xf6\x04\x15\x50\x46\xd0\x47\x21\x3e\x9a\xe3\x29\x77\xc8\x91\x8f\xc1\xbf\x61\xe8\x9f\x37\xc4\xfe\x4f\xa0\xf2\xfd\x58\x18\x08\x31\xa6\xc1\xc5\xfc\x3f\x4f\x48\x9b\xb6\x3d\x31\x17\x6e\xb9\xb0\x8d\x07\xb0\x84\x7f\x19\x41\xf8\xdd\x9d\x7c\x0f\x7a\x58\xe4\x51\xc4\xfe\xf2\x1f\xd3\x43\xe3\xfe\x9b\x1e\x0a\xa7\xe8\xa1\x24\xc3\xad\xfb\x5d\xf7\x9d\x7c\x00\xc2\x7f\x42\x70\x28\xf3\xdd\xac\x1b\x20\xf8\x02\x42\xfe\x3c\x7c\x9a\xaf\x25\xbf\x28\x17\x21\xbe\x1d\x1e\xa3\xbf\x30\xf0\x2a\xdd\x27\x49\xbe\x95\x56\xb6\x1e\xe4\x12\x5d\x54\xf3\xd3\x74\xd1\x94\x4b\x75\x51\x0f\xce\x43\x67\x49\xc3\x54\x44\x31\x91\x11\x21\x52\x90\x0b\x73\x05\x5d\xd4\x7d\x05\x55\x54\xf2\x23\x9a\xe8\xb2\xe5\xa3\x09\x38\x93\xad\xb3\xcb\x6f\xfa\xaa\x76\xf3\x23\xb3\xe6\x3f\xba\xae\x6c\x76\xcf\xc8\x82\x9a\x2d\x4f\xcf\xef\x79\x7c\x4f\xfb\x57\x46\x4c\x93\x47\xa2\x0d\xd6\x2e\xff\x08\x6d\xaa\x29\x4c\x70\xa6\xc5\x29\x4d\xce\x94\xba\xd5\xad\x76\x4b\xe3\x8a\xfa\xaa\xd5\x06\xed\xc6\xde\xfa\xd5\xad\xe9\x69\x33\xae\xe9\x4a\xf1\xa6\x27\x10\x47\x5e\x53\xc5\x63\x22\xd6\x2b\x87\xcd\x9b\xa6\x7f\xc6\xfd\x98\xfe\x79\xe6\x0c\xef\x3e\x83\x3d\xad\x98\x81\xf9\x6f\x01\x2d\xb6\xe2\x6a\x01\xf5\x0b\xe3\x7b\x3d\x41\xe2\x2d\x89\x3e\x18\x4a\xb3\x1f\x8a\xd9\xc6\x58\x48\x66\x23\x27\xdc\x32\x66\x42\x17\x83\x41\x51\x2a\xc4\x5d\x9a\x8e\x9e\x39\x73\x08\x76\xc0\x34\x7e\x06\x9e\xdd\x6f\xc2\x47\xf9\x16\x36\x8f\x6f\x80\x4f\x04\xbe\x0d\xfc\x96\xf8\x14\x85\xba\x5e\xa6\xdf\xc6\xfd\x37\xfd\x56\x38\xc9\x7b\x84\x93\x3c\x9b\x73\x96\x7f\x34\xad\xef\x96\x71\x17\x34\xba\xcb\xd2\x22\x49\x23\x98\x55\xfc\xbf\x6f\xf9\xec\xb6\x86\x37\x33\xe7\xdc\x39\x06\xdf\xa2\x6d\x59\x87\x9f\x55\x42\xda\x42\x70\x5b\xb2\x60\x6e\x3a\xda\x2f\x0c\x42\xc1\x8e\xc1\xed\xe0\x88\xea\x45\x13\x74\x32\x7a\x86\x3c\x0c\xf5\x3f\x03\x6d\x1f\x3c\x71\xcf\x13\x1f\xc0\x0c\x68\x26\xdc\x48\x68\x6e\xe0\x26\xb4\x30\x70\x3d\x9b\x37\xb5\xbf\xa7\xe5\x6a\x25\x1d\x4e\x5b\x20\x6a\xaa\x97\xe5\x6a\xc5\xf5\xce\xc5\x51\x91\x6f\x9c\x85\x3f\xe3\x6b\x70\xb7\x14\xc0\x57\xa6\xde\x6f\x2a\x56\x6f\xea\xbd\xe8\xe0\x4d\x62\xf5\x72\xce\xf0\x9e\xb3\xcc\x03\xe2\xe2\x17\x78\xb3\x6f\x62\xf3\x2e\xcb\x3f\x28\x0a\x0e\xf1\xfa\x89\xfc\x83\x37\xf1\x3d\x67\xf9\x7e\xd6\xcd\xac\xbd\xb0\x8d\x59\xfb\xb2\x20\x27\x3b\xb0\xcf\x6c\xb9\x04\x00\x0d\xc9\x90\x4e\xfa\x2b\xc3\x9e\xaa\x53\x29\x64\x9c\x8c\xf4\x9a\x08\xf3\x4b\x80\x75\x49\x2a\x24\x51\x51\xf4\x09\xa1\x97\xc2\x86\xe2\x29\xd6\x6d\x23\xc1\x98\x10\xbb\xb7\x8e\x9a\x56\x31\xb8\xa1\xc3\x33\x72\xd3\xc0\xb9\xc1\x9b\xe6\x7a\x3c\x73\x6f\x1a\x3c\x37\x70\xd3\x88\x87\x71\x2b\xd3\xfd\x76\xbb\x3f\x5d\x19\x78\x32\xd6\x5a\x62\x4f\x2f\xb1\x2a\x91\x79\xf8\xc9\xfd\x03\xb1\xf0\x25\xde\xaf\x18\xd8\xff\xd4\xb0\x72\xe4\xa9\xfd\x03\x0a\x7e\x1e\xbc\x49\x31\xb8\xff\xc9\x61\xa5\x67\xb4\xb3\x2c\x36\x50\xab\x28\xeb\x1a\xf5\xe6\x8e\x76\x96\xc6\xa2\x27\x62\xcb\x3a\x47\x3c\x40\xc0\x3a\xf2\x2f\x13\x79\x73\xd9\xd9\x21\xee\x27\x9c\x1d\xf6\x9e\x85\x0f\x9d\x39\x88\x15\xe0\xdf\xb3\x79\xa4\x33\x04\x71\x26\xe6\xe3\xad\x14\x63\x61\x94\x04\x09\x71\xc9\xd9\x41\x58\x0b\xc2\xd1\x81\x84\xe5\x44\x93\x49\xa4\xbb\xd2\xa1\xc1\xc9\x56\x9e\xcd\xdf\xe8\x5f\xf0\xd8\xda\xd2\x33\xc9\x79\x9d\x79\x65\xeb\x0a\xce\xc2\xc5\x11\x91\xd9\x73\x6e\x9d\x0b\x6b\xf9\xa7\xf3\x67\xe4\xc4\x45\x46\xa0\x50\x00\xc1\x5c\xfc\xcc\x61\x36\x6f\xea\x79\x21\xee\x27\x9f\x17\x5a\x8f\x7c\x72\xe4\x8b\x0b\x8c\xd0\x0e\xf2\x3b\xc9\xe1\x3e\x88\xfb\xe7\x14\x9b\x37\xed\xbc\x10\xf7\xff\xed\x79\xa1\x8e\x3c\x63\x76\xec\x9b\x17\xd6\x8b\x8f\x11\xbb\x0c\xdf\x1d\xd1\x7c\x8d\xbb\xf0\x2b\xf1\xbc\x00\x24\x41\x7e\x1a\x84\xc4\x19\x19\xd4\x2a\xd4\x50\x3c\x2f\x10\xfd\x9c\xb6\x65\xea\x69\xc1\xa5\x9b\xa2\x13\x23\xdf\x3d\x23\xb7\xcf\xf7\x60\xee\x82\x11\x7e\x01\xff\x19\x92\xdd\x93\x5d\x6e\x55\x28\xac\xe5\xd9\xe8\xc1\xec\xae\xd5\x55\xd5\x1b\xfb\xdd\xcc\xfa\x17\x03\x4f\xf0\xbf\xd5\xd8\x3c\x89\x09\x6e\x5b\x22\x60\xc0\x4a\x12\xdb\xcd\xe6\x5d\xe5\xac\x10\xf7\xff\xfb\x59\x61\xa0\xb0\x6f\x6f\x5f\x66\x26\xfe\x87\xff\xeb\x67\x0c\x38\x77\x2e\x00\x0a\x33\xf2\x74\xe1\xe1\xba\xbc\x0c\xf4\x88\xb3\x7b\x2d\xad\x10\x11\x49\x58\xa6\x9e\xe2\x4f\x90\x3a\x25\x16\x64\xa5\x04\xf9\x7b\x06\xd9\xbc\x2b\x9d\x15\xe2\x7e\xe4\xac\xa0\xbb\xe4\xac\xa0\x9b\xa8\xc9\x56\x98\x3e\x7a\xf7\x22\xaf\x77\xd1\xdd\xa3\x81\x7f\x9c\x81\xe9\xae\xea\x0c\xa5\x32\xa3\xda\x85\x9e\x71\xf6\x6e\xac\x23\xb4\xdf\xb8\x06\x2f\xf1\xaf\x27\xe0\x9d\x22\xd9\x6b\x4f\xa4\x73\x61\x05\xde\x13\xab\xd8\x06\x60\x07\x55\xbe\x72\xfc\x5e\x0a\xa0\x74\x0c\xb0\x12\x4e\xc2\x72\x63\xc4\xb6\xcf\x4a\x25\x83\x32\xd1\x0f\x9b\x32\xc1\x69\x90\xcc\xd4\x41\x60\xc1\xe9\xf9\xa7\x24\x92\xb3\x43\x3b\xdd\x0d\xe9\x36\x78\x55\xba\x32\x0f\x45\x9f\xa2\xd2\xcc\x76\x9f\xe9\x23\x9c\xfc\xba\x77\xf3\xe9\x4d\x3e\xdf\xa6\xd3\x9b\xe7\x1c\x5b\x53\xf6\x11\x76\x2b\xe6\x54\xcd\x2e\xd1\x72\xfc\x21\x38\x5f\x92\xea\x1b\x62\xf6\x69\x48\x32\xb9\xdd\xc3\x05\x1d\x87\x5e\xc3\xc9\xe4\x5e\x3d\xd4\x5e\x30\xff\x06\x9a\x4c\xce\xd1\x3c\xdf\x7b\xd4\x33\xa7\xce\x0e\x10\x68\xc1\x3a\xec\xf5\x6c\x03\x45\x8e\xef\x11\xcf\x0c\x00\x30\x12\x40\xf9\xb6\x61\x0f\xd9\xa7\xe8\x66\x2e\x40\xec\x93\x91\x88\x16\xd5\x5f\xa9\x18\x5e\x5e\x42\x59\x10\x34\xf2\x9b\x27\x4a\x71\x5c\x5c\x2d\x2d\x0a\xa6\x97\x14\x48\x89\x48\xf6\x09\x6c\x3a\x17\xec\x79\xd8\x02\x73\x49\x3f\x98\x05\x4b\xee\x74\xee\xb6\xca\xd9\x9c\x73\xe6\xb6\xce\xbe\x7d\x33\x33\x32\x66\xee\xe9\xeb\xde\x39\x33\x9b\x1d\xfa\xf7\xbf\x61\x6d\x84\xd6\x6d\xb5\xb8\x53\x22\x84\xbf\xda\x70\xb4\x7c\xf8\x91\x8d\x95\xcd\xfb\x4e\x8e\x55\x8c\x9d\xdc\xd7\x84\x59\x3d\xe7\xf0\x3e\x3c\xb4\x2f\x63\x1f\xb5\xc7\x83\x7d\xd4\x15\xa5\x6b\x66\xe6\xe6\xce\x5c\x53\x4a\xe2\xca\x01\x60\x8b\xe9\x5a\x4f\x24\x7a\xa0\x14\x12\xb2\x67\x71\x8f\xa2\x83\x29\x99\xba\x51\x01\x10\xaf\x56\xc5\xe2\xd2\x91\x54\xa6\xa8\x83\xd6\x24\xbd\x78\xd2\x60\x48\xbd\xf1\x8a\xc4\x35\x66\x31\xc6\xe9\x83\xcf\x7f\x80\x60\xf6\xfc\xfc\xf1\xbb\x47\x5e\x55\x62\xe3\x24\xb4\xf3\x1f\x3a\x6b\xb3\xd4\x64\xba\xc3\x03\xfc\x38\xfc\x99\xf5\xb6\x39\x35\x1b\x7b\x73\xf8\xbb\x93\x3c\xe9\x1a\x98\x97\x68\xf7\x52\x19\x74\x11\xe7\xd8\x62\xf3\x24\x00\x38\x41\x9d\xaf\x9a\x38\x5c\x2c\x90\x63\x55\x90\xe1\x48\x36\x36\xb6\x26\x04\x4a\x25\xe4\xc8\x4a\xb1\xff\x62\x57\xcb\x64\x5c\x17\xae\xf2\xa4\x5f\x45\x87\xea\x9c\xd9\xe4\x28\x67\x31\xdb\xf4\x41\x75\x51\x74\xab\x28\x9d\x97\x85\x0f\xbb\xa6\x66\x3a\x22\xa1\xc4\x4e\xa5\x13\xad\xf8\x36\x98\x94\x0c\x66\x75\x5f\xd3\xa2\xc7\xda\x6d\x48\x82\x46\x13\x52\xe0\x83\x62\x92\xb2\x9f\xfd\xec\xcc\xb7\xec\x23\xfc\x77\x42\xa6\xb2\x5f\x06\xce\x74\xef\xe9\xcf\x92\x86\xbe\x40\x98\x95\xfb\xda\x4b\x26\x13\x97\xb1\x8f\x1c\x7b\x50\xc0\x87\xaf\xc5\x73\xd1\x35\xb1\xa6\x58\x4e\xc2\xb1\x92\x31\xd2\x18\x29\xe1\x86\x97\x10\xc1\x23\xa5\x7d\x2f\x28\x98\x13\xab\x2b\x19\x5d\x75\x4d\xfd\x78\x72\x46\x8a\xde\x4e\x66\xd0\xe2\x1f\xcf\xce\xe8\x9f\x59\xa8\xe3\xe0\x10\x7f\x87\x44\x5b\xd4\x7b\xf5\x1c\x8d\x59\xcd\xa3\xde\x07\x72\x87\xeb\x33\xc8\x39\x22\x05\x00\xba\x57\x24\x02\x0b\x18\x13\xa2\xc7\x74\xd3\x9d\x31\x71\x97\x3a\x63\x34\x3e\xdb\x95\xca\x00\xb1\x08\x5d\x31\x62\x69\x92\xb8\x34\x29\x09\x80\x24\x4b\x52\x9a\x36\x19\x3f\x28\xf1\x47\xbd\x37\x1e\x4f\xb6\xfb\x12\xe7\x0d\x63\x8a\xed\x3b\x38\x3b\x07\xfb\x57\xfb\x2e\x82\xfd\xa6\xb6\x1d\x03\x36\xa8\xa9\xf4\xa3\x59\xb1\x56\xc1\x64\x83\x5d\xe8\xfc\xd6\x9c\xde\x4d\x75\x75\xd7\xf4\xbb\x27\xf4\x42\xf8\xcb\x3f\xc1\xb7\x02\xaf\xf2\x2f\x25\x65\x16\xa4\x24\x7b\xd2\x13\xc0\x84\xef\xe6\x66\x8a\x4f\xd1\x8b\x51\x3d\x49\x08\x82\x10\x19\x22\xae\x9b\x21\x72\x1e\x8c\x9b\xea\xba\xc1\x6d\xd5\x4f\x77\xf0\x4c\x2b\x85\xa1\xe2\xff\xcd\xc7\xa3\x9b\xee\xe3\xe9\x7b\xec\xac\x19\x4f\x37\xec\x98\xda\xd3\xcd\x7f\xf6\x18\x56\x15\xef\x34\x1b\x9c\xda\xc8\x48\xad\xd3\x80\xee\x84\xb7\xe2\x66\xcd\xdc\x48\x9b\x05\xff\xc6\x13\x9d\x7d\x6a\x73\x20\x08\x0d\xe6\xf7\x4b\x01\x5e\x9f\x1b\x41\x06\x92\xb5\x45\x20\x16\x12\x0e\x02\x28\x01\x13\xee\xbf\x14\x52\x57\xd4\x35\xe9\xf3\x91\x13\x1d\xe6\x32\x3f\xa5\x7c\xfa\xfa\xc1\x11\x03\xfc\x3f\x2e\xcf\xea\x77\xdd\x75\x67\xa0\x86\x7d\x8a\x3f\x3b\x3d\xb7\x1f\xfb\xd4\xb1\xbb\xef\x16\x75\xb4\x5b\x05\x9d\x99\xec\x7c\x94\xd6\x89\x72\x9a\x52\x1d\x0a\x75\x0b\x35\x99\xae\xdf\x4c\x38\x82\xe4\x70\x1d\xfc\xc5\x19\xfe\xbe\x33\xfc\xdd\x6c\x9e\xa0\xdd\x10\x3a\x7d\x41\xff\xed\x22\x7b\x01\xb6\xad\x18\x04\x74\x89\x90\xb1\x9d\x65\x10\x52\x4d\xa4\x7d\x13\x1d\x9d\x06\x60\xa0\xb9\xde\x8c\x74\x9f\x17\x25\xc6\xa4\xd6\x46\x9d\x9b\x53\x5e\xb0\xd7\x67\xb5\x2e\x2b\xab\x5e\x66\xd0\x8f\x97\x57\xac\x6c\x77\xfc\xc3\x65\xb5\x7b\x3e\x2f\xc8\x32\x65\x61\x8b\xe9\x3d\xdd\x3b\xba\xed\x7e\xfc\x63\xc7\x2f\xd8\x99\xe7\xef\xe9\x68\x6a\xea\x98\xfc\x2b\xe4\xb2\xc3\x75\xdb\xcc\xe6\x4f\xaf\x5b\xdc\xff\xff\x75\xdb\x9c\x31\x63\x49\x69\xcd\x52\xbd\x7e\xbc\xb2\x7c\x59\x5b\xe6\x47\x0e\x6b\x96\xe7\x33\x6f\xb6\x29\x83\xcd\x0f\x18\x66\xee\x9d\x99\x51\x8e\x7f\x32\xf0\x0b\xf4\x6e\xc0\xd0\xd7\xd1\xd1\x37\xf9\x17\x88\x6b\xbd\x5f\x92\x30\xe1\xb7\xe4\x58\x6e\x89\x84\x78\xb6\x05\xa3\x14\xc4\xb3\x5c\x0a\x65\x43\x64\xae\xf4\x0a\x46\x5e\x71\x4e\xd3\x49\x4d\xe6\xf4\xa5\xbe\x34\x91\xcb\x69\xaa\xab\xf5\x63\xfe\x7f\xce\x8e\xde\x45\xd4\x94\xbb\x46\x79\xed\xf1\xe3\x67\xa1\x11\x7f\x22\xea\x2a\x6c\x0e\xbf\xde\xd9\xb3\xbe\xb6\x76\xe3\xcc\x1c\x36\xe7\x18\x61\xfc\x08\x28\xf8\x5f\x93\xc3\x6d\x62\xae\x4d\x23\xcc\x9d\x4e\xcc\xcd\x74\x3b\xb6\x0f\x7a\xc0\x1b\xc2\x4e\xef\x00\x88\x01\x0c\x39\xc6\x07\xfd\xdb\x2c\x04\x21\x90\x93\x82\xa0\x87\x3b\x0c\x06\x5d\xdc\xb2\x1e\x42\x53\x92\x2c\xab\xd3\x08\xa8\x54\xd7\x8f\x5c\x18\x16\xa6\x12\x51\x67\x97\x5f\xec\xf3\xfe\xf4\xeb\x42\x43\xd5\xc2\xc5\x80\x5c\x4b\xf4\x83\x18\x0f\xb6\x16\x38\xb3\x89\x9d\x95\x64\xfb\x88\x0e\x27\xcb\xcc\x39\x09\x5d\x17\x9d\xeb\x18\x23\xaa\x14\x75\x26\x91\x4a\x54\xb0\x53\xc2\xe2\x35\xf6\x99\xd7\xce\xae\xdf\x3a\xe0\xfa\x23\x8a\xd6\xb9\xd2\xec\x58\xe1\xfc\xfa\xeb\x70\x6d\x5e\xa6\xd9\x99\x12\xcd\xfd\x89\xf1\xf4\x6f\xaa\x9b\x73\xed\x4c\xfb\x9a\x4f\x3e\x61\x9a\x32\xd6\xbe\x73\x7b\xb7\x7b\xfc\xd1\x95\xde\x3e\xbf\xb1\x64\xee\x8e\x8a\xac\x37\xda\xab\x76\xcc\xf5\x19\x4a\xba\x5d\x63\x0f\x8c\xe7\x76\xde\xf6\xce\xba\xf6\xc0\x2a\xbc\x62\x20\x58\x82\xf5\xc1\x1b\xd9\x46\x90\x39\xd9\xb7\x21\xa1\xd2\xd0\x10\xe9\x58\x30\x1c\x74\x2c\x8c\x58\x59\x01\xc2\x5b\x33\x6e\x9b\xa4\x87\x60\x3d\xe8\xd1\x52\x30\xcb\x26\x33\xa2\x5e\xe5\xfa\x91\x0b\xc9\x25\xf8\x6a\xda\x29\x29\x97\x5e\xec\xf3\xfe\xf4\xeb\xa8\x2e\x00\xa1\xa8\x90\x92\xbe\xcd\xcc\xb0\xa6\x99\x8c\x84\xcb\x2a\xd6\x10\x63\x10\xfa\x56\x4f\x15\x00\xb1\x0f\xcd\x41\xfb\x44\x10\x3b\xac\xc7\xc0\x13\xb2\x83\x3a\x99\xa3\x5f\x40\x8c\x93\x4f\xc3\xdd\xfd\x1e\xf2\xf4\xac\xf4\xcf\xdc\xdb\x97\xcd\x8e\x7f\xf6\xd9\x38\x9b\xdd\xb7\x77\x66\xd5\x9a\xce\x6c\x88\xbf\xf0\x9a\x73\xb4\x91\xe8\x0b\xf8\xba\x63\xa8\xd1\xd1\xe4\x6f\xd8\xd4\xed\xa8\xb9\xe6\x91\x21\xde\x8b\x77\x99\xbc\x59\x8f\x5c\x53\x9b\xd5\xbf\xb7\xa7\x7e\x00\x66\x37\xce\xca\xc2\x2d\x88\x03\x80\x7d\x97\xfa\x7c\x22\x89\xa4\x8b\x84\x12\xa2\x7f\x49\x10\x15\xc0\xb3\xa8\x2f\x98\x63\x82\xc6\x07\xfa\x43\x7c\xed\xa2\xd5\x8b\x86\x0c\x12\x6b\x57\xcf\xaa\x77\x17\xec\xfe\x1e\x7e\xfd\x31\xfc\xf2\x3f\x81\xaf\x61\xd5\x3d\x24\x9f\x3a\xf9\xa5\x0e\xa7\x61\x18\xa0\xeb\xb7\x09\x3f\xeb\x76\x2a\x53\xa3\xc9\xb3\xa2\xa6\x3e\x8b\x2a\x52\x71\x3f\xe1\x59\x66\x29\x53\x34\xf2\xca\xc8\xe8\x37\xf0\xa9\x8f\xe0\x33\xdf\xf0\x65\x30\x6a\x2c\x2e\x1e\xc6\xf1\x9f\x92\x5f\xaa\xd8\xbd\x02\xcd\xdd\xdd\x00\x81\x3e\xfc\xbc\x97\xa8\x6f\x92\x66\x48\x51\x11\x9d\xad\x86\x90\xe4\x23\x44\xb4\x9d\x59\x64\x6a\x60\x07\x33\xc7\x30\xf4\x99\x97\x90\xbe\x85\x4d\xda\xf6\xf4\x8a\xe0\x88\x28\x68\xfa\x31\x86\xb9\xce\x71\x67\x76\xdf\x9f\x17\x5e\xff\xce\x3b\x2f\xbf\xf6\x0a\xf4\xff\x85\xff\xed\xf3\x9d\xf0\x15\xbe\x40\xfc\xc5\x4e\x97\x5f\x32\x2e\xdc\xf0\xb5\xf0\x1d\x20\xd6\x83\xda\x90\x54\x24\x5f\xab\x50\x0f\xe1\x28\xdb\x25\x4c\x4f\x5c\x29\x29\xec\xfa\xff\xbe\x26\xb7\xe5\x3c\x58\xd8\xfc\xe7\xce\x0d\xef\xbc\xf3\xdc\xaf\x68\x4d\xde\x7e\xa2\x15\x46\xf3\x67\xc5\x5f\xbc\xe5\xee\x43\x4b\x71\x97\xbc\x0e\x83\x3c\x4e\x45\x24\x3f\x1a\xc5\x11\x19\x88\xdf\x5f\x42\xf4\x6c\x04\x01\x1a\xc2\x33\x56\xda\x85\x45\xe7\xe4\x78\xc7\xc8\x31\x80\x06\xc3\x2b\x84\x7d\x36\x99\x99\x8a\xab\xa0\x12\x40\x40\x13\x13\x02\x33\x6c\xf4\x2c\x9f\xb1\xb9\x3b\xeb\x6c\x8c\x29\xd7\x94\x71\xb6\x90\x70\x92\x9e\x75\xf4\xed\x68\xe7\x9f\x66\x15\xbc\xe4\x4e\xfe\x11\x46\xc5\xda\xbb\x77\x0f\xf2\x03\xf0\x48\x4e\x85\x45\x1e\x78\x18\xb5\xca\x2d\x15\x39\xe4\xfd\xd0\x9e\x6e\x1b\x83\x6e\x09\x3c\x0a\x0f\x08\x75\x6c\xc1\x75\x9c\x8b\xfb\x2b\x15\x18\x49\xb4\xb7\x16\x42\x09\x31\x10\x92\xdc\x7a\x54\x41\x95\x50\x35\x9b\x5a\x03\xe8\xa1\x80\x44\x0c\xc6\x18\x55\x74\xb2\x10\x03\x8f\x5e\x88\xb7\x92\x8a\xf5\x24\x1f\x4c\xd4\xb3\xa2\x7c\x41\xad\xf9\x6c\x54\x72\x46\x8a\x01\x9d\xc9\x4c\xc9\x48\x8e\x3a\x63\x69\x18\xab\xe2\xbf\x60\xce\xf2\xb2\x9b\xf8\xdf\xa3\x99\xb2\xec\xde\x1d\xbd\x1f\x7f\xec\xad\xb1\xc7\xb0\x7c\x1f\xbc\x3f\xc6\x5e\xe3\xfd\xf8\xe3\xbe\x5d\xbd\x0e\x09\x7c\x97\xb7\x43\x23\xa9\x63\x31\xae\xe3\x23\xb8\x1f\xb5\x40\x0f\x0a\x7c\xde\x88\xa0\xe5\x91\x70\x0b\x42\x06\x0c\x61\x21\x80\xba\x04\x2f\x5f\x58\x88\x94\x63\x83\x4e\x12\x7d\x2a\xbe\x40\xeb\x88\xd1\xc7\x52\x25\x86\xac\x7e\x1d\x93\xe3\x11\x46\x55\xc7\xe8\x18\x95\x82\xd1\x33\xc4\x04\x4b\x3a\xd7\x4c\xa0\xa2\x8c\x42\xa1\x87\x2b\x59\xc5\xda\x5f\xfd\x0a\xce\xfb\x07\x23\xfd\xdf\x1f\x10\x7a\x89\x4d\xf3\xc4\xbd\x00\xb5\x6e\x1b\xfc\x70\xf8\x2d\xf8\xe7\x19\x05\x81\x9b\xb1\x53\x67\x01\x3a\x14\x98\xab\xe6\xff\xc8\xa7\xc1\x3f\x97\x56\xa3\xc0\x1d\x68\x16\xaa\x2e\xe5\xd3\x98\x47\x89\x45\x0c\xd1\xb8\xd5\x63\x42\xbf\x12\xef\x1b\xa9\x73\x62\x1c\x19\xfc\x2b\x55\x3c\xee\x92\x8a\x1b\x0d\xf8\xaa\x54\x45\xac\x42\x79\xb5\x8a\xab\x94\xb4\xe6\x66\xbd\x54\x4f\xab\x2e\x09\x56\x7d\x33\xa3\xd8\xf2\xd6\x5b\xb0\xe7\x97\xe8\xbb\xb7\x16\x2d\x65\x5e\x64\xd2\xdc\x21\xa1\xf0\x05\x56\x95\x63\x61\xde\x1d\x7a\x0d\x26\xb5\xe4\xf1\x1d\x58\x36\x25\xc3\x8f\xf8\x78\xf9\x4d\xfb\xf9\xbf\xc3\x24\x7f\x25\x8c\xe7\x97\xc0\x3b\x42\x60\xa5\x9f\xff\x3b\xba\x16\x86\xd0\x79\xf1\x28\xef\x63\x6d\xd2\x65\xa0\x00\x94\x83\x56\x5f\x73\x29\x5e\x47\x4a\xc8\xe1\xea\x9b\x4d\x88\xa9\xc4\x2b\x49\x2a\x59\x02\xa4\x48\xba\x24\x04\x02\x40\x2d\x39\x22\x8e\x99\x7a\x7e\x27\xed\x02\xe5\x65\xfe\x92\xe2\x22\x8c\xdb\xc8\x4a\x49\x8c\x0c\x17\x30\x1b\xa1\x53\x31\x1b\x3a\xd7\x65\x8e\x13\x31\x1a\x42\x9a\xc1\x50\x6a\x89\x49\x53\xb9\x62\x82\xd6\x44\x51\x39\xdb\x97\x9c\x52\x3c\xe8\xe7\x3f\x86\x89\x0b\x9f\xd9\x5a\xbd\x7e\x6c\xcb\xae\xaa\x6b\x9e\x5c\x90\x53\x59\xa0\xcd\x74\x29\x5b\x0a\xe7\x35\x66\x40\x47\xcf\xa6\x26\x67\x41\xbf\x3f\xf5\xe6\xeb\x0f\x3c\x20\x12\xa1\x30\xf5\x29\xde\x86\x4c\x5b\x8d\x27\xe5\x74\xf6\xac\xeb\xfa\xc7\xee\xb6\x5b\x1f\xda\x34\x7c\x64\x91\x37\xcf\x6e\xca\xb5\x24\x85\xdc\xa4\xf0\x75\x2e\xf2\x57\x8e\x96\xe9\x52\x8b\x66\x64\xaf\x59\xfb\x0a\x73\x67\x90\x39\x45\xe0\x11\xaf\x64\x13\x24\x21\x20\x0f\x94\x92\x7e\x29\xf9\xe9\xfd\x12\x77\x69\xbf\x94\x62\x6e\xea\xc2\x02\xaf\x67\xa2\x5f\xf2\x60\xde\xff\xb7\xfd\xe2\xbe\xbc\x5b\x6c\x05\x6d\xee\x78\x8d\xa7\xd5\x4b\xba\x65\xf8\xc1\xb5\x65\x83\x9d\xf3\x16\xfb\x57\xde\x3b\xcb\x51\xe3\x4b\xb1\x67\xc7\x36\xbb\x67\x37\x64\xc1\xcc\xce\x75\xf5\x99\x0b\x56\x6d\xdd\x74\xc3\x53\x62\xa7\xa0\xc5\x4a\xec\xba\x24\xac\xf9\xcf\xa4\xd5\x2f\xa9\x6d\x5c\x69\xd0\xae\x6e\xab\x5f\x3d\x23\x3d\xd8\x29\xd7\xc6\xfa\xda\xe7\x17\x97\x0d\xf9\x52\x5a\x8a\x6b\xab\x1f\x64\x62\x84\x2e\x61\x40\x3b\xe1\xe7\xc1\x98\x1e\x35\x30\x00\x07\xd1\x14\xa5\x90\x95\xc0\x4b\x02\xaa\x92\x88\x0a\x24\xba\x5c\x4d\xc6\xf8\x38\xbb\xcd\xe8\x30\x39\xb4\xc9\x71\x86\x78\x83\xcd\x20\xc3\x26\x63\x38\x2d\x62\x5f\xaa\x13\x63\xf5\x8d\x3a\x57\x30\x7a\x9f\x9d\x7f\x85\x78\xfd\xc0\x5b\x93\x71\xfa\x81\xb7\x90\x73\x32\x7e\x1f\xad\xb9\x42\xcc\xfe\xa3\xe1\x62\xac\xfe\xcf\x24\x62\xf8\x3e\xb1\x71\xf7\x62\x5d\xbc\x9a\xc6\x85\x68\x81\x4d\xd0\x78\x01\x83\x38\x86\xa6\xde\xa7\x95\x4f\xa9\x25\x28\x4f\xd1\xf1\x99\xaa\x53\xab\xcc\x26\x9d\x2d\xd5\x96\xa8\x51\x69\xd5\x5a\x0b\x6d\xc7\xf4\xd4\xc5\x90\x5a\xb9\x92\x19\x05\x3d\x99\x67\x30\xbd\x97\x27\x2e\x86\xff\xc9\xeb\xf6\x99\xa4\x81\x1f\xa4\xa6\x92\x9e\xbc\xfc\x1e\xfc\x1a\x49\xa4\x26\x5f\xf7\x15\x12\x18\xf3\x87\xd3\xeb\xe6\x16\x14\xcc\xad\x4b\x47\x7f\x4f\xaf\x1f\xcd\xcf\x1f\xad\x4f\x07\x10\x44\x03\xc0\x9e\xe3\x4e\x11\x36\xf7\xa7\x61\x30\xff\x68\x52\x30\xfb\xb7\x10\x01\x22\xb8\xbe\xc5\xd0\x30\x95\x48\xe0\x38\xf1\x79\xd7\xcf\xe4\x0a\x9d\x59\x40\xf0\x78\x14\x58\x1b\x52\x4b\x29\x92\x58\x0f\xb1\xc3\x23\x51\xf3\x8f\x84\xc2\xc6\x21\x9f\x1d\xc6\x66\xe6\xab\xf8\x1b\xcf\xf0\x11\x30\x14\xee\x59\x36\x8e\xbe\x6f\x5e\xdd\x64\x86\x6f\x17\x97\x9c\xbf\x5e\xc4\x9f\x94\xe2\xba\xcc\xc7\xfd\x18\x0b\x82\xc1\x40\xa1\x84\x5c\x0e\x8a\xb1\x42\xf8\x0d\x23\xbc\xa1\x5f\x4f\xad\x63\xca\x25\x75\x8c\x9b\xa8\x63\xca\x94\x3a\x1a\x8d\x62\x1d\xdd\xee\xa9\x88\x67\x92\xa9\x54\x1f\x1b\x7b\x6d\xc6\xa1\xd9\x49\x39\xf1\x6a\x36\x21\x22\x35\x3f\x82\xff\xe0\xd7\xfc\xd2\xff\xc0\x79\x03\x03\xf0\xd5\xeb\xf7\xca\xa2\x5e\x40\x8c\xcb\x72\x01\x27\xe1\x26\xe3\x5d\xce\x37\xb3\x2f\x53\x5c\x41\x36\xf0\x13\x09\xad\x86\x52\x94\x05\x81\xd4\x48\x23\xd5\xa8\x4d\x82\xce\x5d\x8e\xc8\xe7\x49\xd0\x00\x5d\xc4\xbd\xb8\x82\x3a\xa6\xce\xac\x57\x79\x95\x6a\x32\xf2\x89\x57\x88\x0d\x84\x6a\x85\x93\x11\xd4\xcc\x29\xb9\x41\x19\x27\x17\x44\x95\x07\x8f\x6a\xe8\x7a\x4b\xc3\xd2\x9a\xf2\x79\x95\x06\x43\xd5\xdc\xf2\xea\xa5\x8d\x16\x18\x2e\xef\x3f\xfe\x79\x88\x36\xb7\x25\x2f\x54\xa3\x89\x93\xb2\x12\x85\x32\x96\x4b\x32\xe3\xb8\x0e\xe5\xe1\xe3\x7c\x57\x76\x5e\x92\x39\x2e\x34\x3d\x2f\xdf\x01\xdf\x1b\x7f\x76\x73\x65\xe5\xe6\x67\xc7\xe1\xb7\xe2\x2b\xfe\x77\x8f\xa2\xb2\xf3\xc9\xa6\x9e\x26\x37\xc3\x49\xd0\x61\x84\xa0\x35\xaf\x30\xa6\x85\x2d\x29\xdc\x75\xd8\x5c\x33\xbf\x3c\xf0\xec\x9e\xc3\x87\xf7\x90\x3e\xc8\x21\x7d\xc0\x36\xd0\x3e\xa8\x02\x8b\x7d\x91\x6a\x2c\xbe\xb2\x20\x94\xe0\x3e\x80\x62\xf2\x6b\x1d\x75\x14\x73\x08\x11\xaf\x89\xd8\x2d\x97\x74\x83\xc6\x67\xbc\xb4\x93\x52\xae\x5c\x8e\x5a\x43\x27\x7b\x6c\xfa\x5a\x31\x5e\xa5\xc7\xa6\x1b\x48\x73\x8c\x4d\x6b\x3b\x3a\xd7\x37\x19\x8d\x4d\xeb\x3a\x3a\xd6\x37\x9a\x98\xf9\xd1\x03\x57\xef\xb3\xc0\x6e\x59\x82\x33\xdd\xe6\x4c\x90\xc9\x34\x39\x36\x5b\x76\x82\x6c\xca\xe2\x12\x5f\x1c\x7c\x06\xd5\x5f\xb1\xdf\x02\x7f\x6e\xdc\x3f\xbf\xb8\x78\xfe\xfe\x46\x65\xc3\xfe\x05\xc5\xc5\x0b\xf6\x37\x00\xca\xbb\xdb\x73\x71\x39\x3b\x26\xc9\xa0\x3c\x1d\x84\x2b\xf0\x21\x81\x89\x27\x03\x40\x8e\x83\xc3\x00\x48\x18\x09\x18\x05\x0c\x36\xfd\x0c\x03\xc4\xb2\x68\x64\x12\x89\x42\xd0\x9f\xbd\xd4\x91\x2c\x52\xc2\xd8\xaf\x7c\x15\x5a\x7a\xe5\x8b\xe8\x53\xe0\x12\xa1\x38\x33\x06\x48\xa0\xa2\x74\xd1\xd5\x2f\x20\xb6\x68\xca\x92\x32\x89\x2d\x75\x2a\xf0\x2f\xfc\xaf\x5c\x29\xe8\x8d\xd7\x5e\x83\xf8\xff\xa3\x3f\x91\x2c\x85\xdd\x01\x8f\x7e\x5f\x09\x9f\x80\x33\x7e\x1a\x65\x0a\x8b\xb9\xc1\x47\xd9\x5e\xf6\x0d\xda\x8f\x84\xab\xf0\xc3\xda\xe3\xb1\x42\x3f\xb2\x2c\xe9\x11\x29\x23\x25\x3d\x22\x91\x90\x1e\xe1\x38\x34\x42\xda\x45\xdc\xf0\x74\xa2\x71\xbd\xb8\xad\xc9\x1c\xe9\x47\xd2\xfb\xf6\x2b\x5f\x85\x96\x5e\xe5\x22\xb1\xf3\x59\xb8\x64\xf2\x1a\x29\x23\x59\xf4\x23\x17\xd1\xaa\x89\xe5\x99\xb1\xff\x7a\x41\x97\xd0\xfb\x96\x4b\x7a\x9f\xc1\xbf\x3f\x25\x91\x0b\x3a\xfd\xfc\xf3\xe8\xf9\xe7\x03\x8f\xfe\xd7\x94\xf7\x4c\x32\x3c\xf6\xc3\x11\xf8\x22\x44\x3f\x21\xf5\x3d\x60\x40\x11\xde\xf3\x4e\x4b\x7d\x20\x07\xd4\x80\x76\xcc\xc9\x3e\x52\x0c\x23\x42\xdb\x21\x0b\x22\x29\x23\x44\x09\x0c\x81\xd5\x20\x22\x34\x24\x34\x22\x64\x32\x08\x3f\x0c\x84\x46\x84\x85\x0e\x45\xc2\x70\x10\x02\xc2\x43\x86\x64\x74\x7f\x14\x10\xa1\x52\x28\x72\x62\xe0\x1d\xd2\xe5\x6a\x6a\x74\xd5\xb8\xaa\x2b\xca\x0a\xf3\x73\xdd\x4a\xbd\xc2\x28\x8f\x37\x58\xa2\xa3\xc8\x01\x67\x2a\x8d\xee\x54\x1a\x58\x92\x6d\x77\x9a\x2d\x0b\xcb\x4b\x85\x52\x60\x1b\x93\xd0\xf3\x05\xb5\x41\x3a\x09\x9d\x8a\xcb\x49\x3d\xcc\x8c\xab\xed\xe0\xfc\x02\xf7\xc0\x96\xfa\x8a\x71\x93\x71\x49\x79\xc3\x96\x7e\x77\xc1\xbc\x83\xed\x95\x1d\x25\xae\xcc\xdc\x2f\x72\x33\x9d\xa5\x5d\xe5\x6f\xa4\xd6\xae\x99\xd3\x6a\xcc\xf4\xee\x58\xbf\xc8\xd9\x37\x7b\x71\x39\x9f\xa1\xd3\xdf\xa0\x36\x39\xe2\xb9\xe3\x39\xc3\x37\xcf\x09\xf8\x7b\x77\xf7\x64\x14\x14\x16\x16\x64\xf4\xec\xee\x45\x2f\xcd\xb9\x79\x38\xe7\xd4\xe8\xa2\x80\xbf\xbb\xb5\xa9\x03\xbe\xc7\xeb\x3b\x9a\x5a\xbb\xd1\x4b\x0b\xe7\xc2\xbf\x6e\x37\xda\x4d\x59\xee\x18\xe3\xd8\x5c\x93\xdd\xc8\xef\xb4\x56\x9a\xfa\x87\x93\x0a\xdc\xf6\x08\xc1\x5f\xde\x8d\xfb\x75\x37\xf7\x3e\xee\xd7\x3a\xd0\x09\x9e\xf4\x29\x8a\x61\x48\x68\xe7\x94\x7e\x8d\x80\xd5\xb5\xc7\xd3\xf0\xbc\x2b\x00\x11\x21\x20\x24\x02\x4c\x74\x2f\xed\x56\x9c\x60\x9e\x9c\x0d\xc2\x7a\xb0\xfd\x28\xa9\x76\xb2\x83\x53\x2e\xed\x60\x8d\x2f\xef\xf2\xcb\xc9\xe8\x84\x88\xa3\x43\x6e\x73\xd5\x8b\xbb\x7c\x09\x2e\x57\x4b\xb3\xab\xce\x55\xfb\x7f\xce\x00\xb1\x97\x0c\x90\xa9\x7a\xf3\x60\x6e\x76\xc7\x52\x5f\xd5\x92\xd4\xd4\xf1\xaa\x92\xa5\x1d\xd9\xb9\xb3\xae\xa9\x29\x2c\xcd\x4c\x77\xe6\xfe\xb5\xc0\x69\x4b\x2f\x2d\xf8\xa5\xbd\x76\xf5\x50\x8b\x31\x33\x6f\xe7\x86\xc5\xa9\xc5\xc5\xbe\xca\xc6\x0c\xbe\x24\x38\x44\x6c\x43\xd6\xe0\xf5\xb3\xf8\x6b\xba\xb6\x74\xd8\xaa\x2a\x2a\xaa\x6c\x1d\x5b\xba\xe0\x46\x9c\xa3\x37\xeb\xf1\x81\xe5\xfc\xbe\xae\xb6\xb2\x76\x92\x66\xa6\xbd\xac\xad\x0b\x2e\x5d\x3e\x00\x7f\x31\x39\x44\x34\x99\x07\xbf\xf5\x92\x41\x42\xa0\x1f\x8f\xd1\xcd\x78\xbf\x92\x82\x74\xb0\xec\x69\x39\x64\xa5\xb0\x46\x10\x3b\x46\x80\xa0\x04\xa2\x51\x20\x66\x8c\x0b\x0b\x95\x31\xd4\x78\x01\xc9\xda\xe6\x60\x50\x00\x9b\x84\x72\x92\xb1\x1f\x2f\x88\x93\x01\xca\x64\xb2\x74\x59\xba\xc5\x4c\x0c\xb8\x26\xca\x72\x4f\x8d\xe9\x6a\x1d\xee\x2b\x1d\xf7\xdf\x8d\xb9\x30\x0c\x7d\x0a\xf9\xf7\x9e\xe6\x31\xac\xeb\x6a\x26\x67\xa9\x74\x6c\xe3\xc6\x4f\x7e\x82\xd9\x19\x20\xc1\xee\xcc\x1d\xa7\x6d\x5f\x75\x49\xdb\xcd\xc1\xb6\x33\x10\xc2\x20\x8c\x57\x68\x54\xdc\xe5\xad\x4f\x13\x5b\x3f\xbd\xe8\x4f\x6b\xbf\x22\xd8\x7e\xf8\xdf\xdb\x7f\x71\xa2\xf9\x5b\xae\x66\xd5\xe6\x8e\xe3\xe6\xf3\xe7\x7f\x82\x69\x1b\x40\xb0\x93\xdf\xc5\xf6\x61\xdd\x2f\x15\xcc\x10\xf3\xf5\x51\x55\x27\x49\x8c\x8d\x9a\x34\xd9\x8a\x99\x03\x12\x00\x89\xff\x16\xbf\x17\xd3\xed\x89\xc5\x18\x12\x87\x9c\x1a\x6b\xa3\x48\x0f\x28\x04\x73\x4e\xc6\x7e\x9b\x26\xd1\xa3\x4e\xa6\xee\xec\xfc\x47\xd6\xf8\xab\xb6\x3c\x3b\x3e\xfe\xe4\x3a\xff\xd9\x95\x6b\x8b\x06\xfd\x7a\x5b\xcb\xca\xba\x43\xfc\x2e\x38\x37\x7a\xf8\x8e\xdf\xac\x82\xb1\xdb\xfe\x76\x4f\x6f\xd9\xc6\x67\x97\x1f\xbc\xcd\x37\x7e\xb8\x83\xff\xbc\xf3\xf0\x38\xc1\x00\xfe\x8c\xdf\xc9\xd6\xb1\x0d\xc0\xf0\xdf\xea\x9d\xf2\xd3\xea\x9d\x42\xeb\x6d\xb8\xa4\xde\xd3\x59\x53\x94\x42\xc5\x6d\x67\xfa\x0f\x0e\x65\xfb\xd6\x3e\xbd\xa2\xff\xce\x25\xbe\x8f\x92\xdd\x75\x19\x65\x7d\x79\x9a\x84\xfc\xbe\xf2\xfd\xfc\x4e\x38\x5f\x3e\x78\xe0\xc9\xa1\x09\xdf\xe1\x65\x99\xb0\x21\x58\x08\x00\xf6\xc3\x14\x09\xd8\x2e\x92\x76\x9d\xf0\xde\x87\xc8\xa4\x04\xd4\x1a\x25\x44\xa7\x02\xb8\x44\x00\xcd\xc4\xc7\x12\x18\x11\xe4\xa4\x46\x06\x0b\x25\x0f\x47\x7f\x9d\x0c\x7e\x8f\x7a\xa0\xae\x0a\x4f\x85\xc7\x3e\xe4\x3f\xa8\x84\xc6\x37\xf9\xf7\xab\xa1\xfe\xb9\x87\x3f\x86\xc6\x3a\xfe\x6f\xf0\xe4\xc3\x9b\x8e\xf1\x27\xe1\xfe\x87\x36\x3d\x04\x47\x1f\xda\xfc\x10\xac\xe0\xe7\x3f\xb4\x91\xf0\xc9\x41\xfe\x22\x7b\x37\xfc\x1d\x17\x00\x52\xb0\x57\x98\xea\x71\x94\xf7\x71\x98\x12\x1a\x8e\xb0\x30\x18\x81\xa3\x9a\xa0\xe8\x53\x4f\x7c\x0f\x96\x5e\xf6\xb5\x8e\x72\xf4\x23\x88\x96\x4c\xff\xd6\xa7\x99\xfc\x02\x90\x2f\xda\x68\x24\x13\x2e\x03\x99\x86\xae\x2e\x21\xaa\x1a\x8b\x1d\x39\xc1\x96\xa9\x6d\x8c\xd2\xec\xd1\x99\xd5\xca\xc6\x27\x20\xd2\xc1\xc7\x39\xed\x06\xf8\xd5\x02\x28\xcc\x53\x3e\xc0\xa9\xe1\xf7\x12\xa5\x80\x33\x12\xe3\xb2\x58\x48\xc9\x56\xc8\x7e\x4b\x5c\xc4\x24\xa3\x4f\x78\x98\x4c\x02\xd4\x50\x2d\xc1\xe6\x03\x26\x9b\xd2\x4e\x4b\xa5\xfa\x20\x5f\xa9\x5e\x6f\x7e\xc7\xd9\xd5\x58\x53\x55\x9d\xb6\x6c\x1d\x84\x3b\xf3\x33\x6d\x03\x4b\x76\xce\xc8\x84\xdc\xed\x54\x32\xce\x1d\x33\xc6\xb8\xb3\xf0\x3e\xb6\x9d\xfa\xe2\xff\xc1\x29\xc0\xff\x48\x3a\x01\x17\xcc\x5d\x07\x58\xca\x51\x33\x57\x0e\x31\xc6\x95\x31\xab\xa5\x6a\x69\x02\x7c\x11\xe6\xb5\x70\xef\xaf\x41\x5b\x96\xd6\x93\xb1\x8d\xe1\x14\x30\x84\x5e\x23\xf7\x45\x72\xb8\x92\xc2\x25\x0a\x72\x89\xc2\xec\x31\x7b\x94\x43\xcd\x79\xf0\x25\x4e\x51\xbf\x74\x0b\x5a\x43\xda\x26\xbb\xf0\x24\xff\x0a\xdb\xc0\x3d\x46\x71\xdd\x25\xa0\x03\xcf\x8f\x2d\xe0\x66\xf0\x18\x2c\xac\x3d\x9e\x82\xbb\x77\x58\x4b\x62\x5e\x59\x04\xd9\x31\x23\xb6\x38\x4a\x39\x4e\x22\x93\x70\xb2\x31\x93\x26\x3e\x35\x8c\x0b\x09\x0d\x0f\x0d\x09\x1f\x33\x28\x10\x46\x2f\x2e\x8d\x85\xac\x0a\x12\xbf\xfa\x50\x1c\x94\x25\x40\x3c\xab\x42\x87\x12\x61\x78\x32\x8c\x8c\x08\x8f\x1c\x02\xd1\x00\xcf\xb6\x98\x09\xd6\x20\x55\xad\x39\x25\x49\x1f\xc5\x45\x44\xa8\x23\xf0\x70\xcd\xfd\x29\x0f\x0a\x5e\x11\x19\x1d\x19\x11\xfd\xff\xe3\x53\x49\xd4\xe7\xc0\x2d\xb7\x6c\xdd\xba\x68\x51\x67\xa7\xdf\x9f\x9e\xae\x52\x01\x70\xcb\x63\xb7\x3c\xf6\xd0\x83\xf7\xdd\x7b\xe4\x8e\xad\x37\x6f\xbd\xf9\x86\xeb\x0f\xec\xdf\xbd\x73\xd1\x96\x45\x5b\x36\xae\x5f\xbd\x6a\xd9\x92\xce\x85\x9d\x0b\xe7\x8e\x0c\xcd\xea\xeb\xf5\x77\xf8\x3b\x66\x34\xd7\xd7\x55\x55\xa4\x97\xa4\x97\x14\xe6\x7b\x70\x96\x0e\x95\x4d\x65\x33\x1b\x75\xda\xc4\x84\x20\x61\x6f\x1a\x99\x4e\xd3\x56\x2f\x9c\xf6\x89\xe2\xea\x65\x7e\xe2\x27\x3f\xfd\xce\x03\x49\xee\x86\x2c\x4c\x24\x97\x34\x16\xa6\x36\x69\x34\x46\x75\x28\x7c\x3f\xc9\x83\x3f\x6a\xf4\x24\x8d\x87\xc6\x99\x34\x09\xf8\xa3\x6a\xfa\x09\x29\x14\xfc\x24\x8c\x7f\x73\xda\x47\x81\xa6\xa9\xb7\x12\x3e\x6a\xc0\xa5\x1c\x97\xdc\x9d\x7f\x7f\xda\x85\xae\x69\xcf\x63\xbf\xb6\x94\x67\x27\x92\xa4\xd1\xb1\x86\x44\xb9\x3c\xd1\x10\xcb\x7f\x31\xed\x93\x90\xcb\x3f\x09\x7c\x3f\xad\xcc\xc7\x97\x7f\xc2\x25\xfc\xff\x72\x1f\xb2\x1e\x02\xe1\xfc\x10\x5b\x8b\x63\x35\x58\x10\x02\x22\x49\x16\x4c\x90\x04\x52\x81\x00\x16\x40\xe9\xbf\x19\xc7\xbf\xa4\xe8\xb4\x2a\x86\x41\xe6\xd4\xa4\x38\x35\x16\x9c\x51\x78\x7e\x85\x46\x40\xc6\x64\x4c\xd4\xb0\x80\x1e\xd3\x33\x88\xb8\xe2\x60\x90\x78\x91\xc4\x6b\x42\x38\x29\xfd\x95\x00\xe1\xef\x20\x62\x06\xa7\x7e\x8e\xdd\x63\x1c\x49\x38\x1d\xc2\x61\x21\x8c\x9f\xca\xc6\x48\xf0\x6a\xe5\xd4\x58\xe2\x32\x66\x2c\x6c\xa1\x87\x53\x1a\xb1\xc4\x75\x71\xd0\x63\xc4\x37\x97\x72\x66\x23\x63\x66\x3c\x0a\xa8\x56\x48\x19\x18\x19\xb6\x66\xa0\x22\x2f\x1c\xff\x83\x92\x23\x60\x3d\x7f\xff\xf9\xe5\x11\xfc\x93\xb0\x9b\xb9\x15\xc1\x92\x32\xfe\xaf\x17\xbe\x41\xfc\x89\x72\x68\xb2\xc9\x0f\x95\xbc\xc6\xf4\xcb\x6f\xf0\xbf\x5a\x10\xc9\x3f\x02\x07\xd9\xbb\x23\x61\x0b\x7f\x84\x97\x87\xaf\x9b\x55\x99\x4f\xfe\x81\x8f\x46\xdf\x5c\xf6\xc6\x85\xfd\xf2\x9b\xcb\xdf\x40\x1f\x23\x58\x51\xce\xbf\x73\xe1\xef\x88\xff\x79\x25\xb4\x09\xfa\xf4\x51\x00\xd8\x6d\x84\x0f\x93\xe0\xf5\x48\xb4\x39\x83\x10\xc3\x42\x08\x28\x01\x39\x07\x09\x03\xc0\x44\x50\x82\x18\xb4\xc5\xb2\x29\x49\x4a\x05\x1b\xc3\xca\x75\x4a\x09\xd9\x4e\xa4\xd0\x43\x01\x4c\x22\xc7\xce\x44\xce\x79\x3d\x5b\xb7\x83\x5f\xbc\x83\x7f\xf7\x2c\xfc\x64\xe1\x73\xdb\x6b\x6b\xb7\x3f\xb7\xf0\xbb\xef\x0a\x07\x48\x7e\xf2\x81\xc2\xef\xe0\xf1\x12\xa4\xf1\xf3\xb3\x02\x38\xed\x3e\x2c\x5e\x7e\x74\xee\xf0\xbd\xcb\x8a\xe0\x29\xa3\xbf\xd7\xed\x1d\x28\x37\x41\xa1\x8e\x34\xaf\x13\xdb\x40\x73\x04\xd9\xc0\xa8\x4f\x29\x87\x2c\x5e\x03\x0c\x62\x39\x36\x1c\x02\x8e\x74\x3d\x5b\x23\xf2\xe3\xd0\x04\x1d\x22\xd6\x50\x34\x2c\x41\x98\x20\xe4\x76\x9a\x6a\x2b\x4e\x99\x56\x42\xcc\xed\x94\x46\x21\xc4\xb8\x55\xc6\x29\xf9\x9d\xd4\x57\xcb\xef\x54\xba\x94\x5f\xb1\x04\xde\x98\xbb\xe0\xf6\xe1\xde\x7d\xce\x33\xef\x86\xe6\x1c\xe8\x1f\xb9\x73\x41\xee\x99\xe4\xa2\x01\x7f\xd3\x68\x72\xf2\xc8\x0c\xff\x40\x61\x52\x37\xbc\xbd\x67\x19\xcd\xf4\x94\xcb\x03\xee\xaf\x0b\x8b\x4a\xc5\x44\x4f\x65\x5e\x3e\x31\xb7\x22\x98\xe8\x09\x82\xfb\x01\x60\x3b\xa5\x91\x40\x2a\x64\x7c\x46\x0c\xd9\xbb\x85\xf9\x77\x45\x6c\xb1\xdc\xc9\x76\x06\x8a\xcf\xa1\xd3\x67\x04\x1e\x51\xd8\x27\xe8\x62\xf7\x02\xdc\x2d\xdc\x32\x10\x32\xed\x3e\x53\x30\xca\x59\xf4\x3e\x7a\xa5\x78\xa7\x9a\x38\x1c\xe2\x80\x9e\x39\xc3\xac\x86\x04\xe7\x0c\x83\x58\xd6\x23\xfc\x1b\x34\x4e\x5c\x43\x73\x9e\x41\xc0\x72\x34\x81\x20\x40\x0c\xea\x07\x13\xd1\xcc\x22\xe6\x17\x87\xdf\xeb\xc4\x60\xe6\x69\xc1\xf7\x7a\x91\xe1\xf6\xf8\xde\x0f\x6e\x9b\x91\xbf\xee\xe5\xad\xb0\x79\xb4\x40\x0d\x9f\x7c\xe6\x38\xe5\xbc\xe5\xdb\xea\x6f\xf8\xcb\xde\x35\xbf\xb9\xb1\xed\xd9\xc2\xd1\x1d\x35\x27\x5e\x0d\x90\x09\x4a\xda\xc3\x7f\xc4\x2e\x20\x5c\x49\xc4\xe3\x87\xb1\xbb\x4c\xe5\x44\x3e\xb9\x20\x25\x02\x6e\x97\x00\x16\x4a\x88\x8f\xc3\x3b\x4e\x34\x47\x26\xa7\x4e\x39\x11\xb2\x2a\x72\x28\x0b\x55\xc8\x0e\x0c\x9e\x5e\xfe\xca\xfe\x46\x6b\xcf\xb5\x23\x2d\x2b\x47\x6d\xf5\x0b\xfd\xa7\x69\x74\xc7\xa7\xc5\x6b\x9f\x5c\xee\xdd\xbb\x65\x7e\xfc\xc3\xe6\x83\x23\xd8\x7e\x68\xe4\x3d\x6c\x1e\xed\x87\x43\xf8\x49\x5f\xe1\xea\xc4\x82\x42\x5f\x1e\xa4\x1e\x3d\xc2\xf5\x08\x21\x92\xc0\xc1\xd0\x10\xc4\x71\x34\x78\x93\xba\x20\xb1\x67\x6f\x02\x58\x1f\x0b\x62\x45\x4f\x68\x0c\xf1\x84\x86\x20\x1d\xee\x74\xbd\x18\x0f\x45\x40\x72\x90\x7d\x15\x6b\x58\xa3\xfc\xef\xf8\x4f\xd3\xee\xe9\x38\x77\xae\xe3\x1e\x1d\xe4\xb0\x3b\x6c\xe8\xc2\x97\x68\xf9\xe7\x9f\x07\xf6\xe0\xd7\x87\x78\x1e\x2d\x20\xf5\xd8\x8f\xeb\x71\x17\xae\x53\x2c\xc9\x29\x74\x79\x3d\x80\x14\x20\x20\x45\x42\x7d\xfe\x4b\x2d\x98\xcb\x6a\xa1\x60\xb7\xf3\xa7\x61\x27\xff\xdb\x77\x1d\xb7\xd5\x9e\x39\x53\x7b\x9b\xe5\x0f\xd8\xfb\x1a\x08\xfc\x02\x3e\xfa\xe4\x93\x42\x50\xc1\x1b\x6f\xc0\x27\x48\x1d\x92\x82\xfc\xb1\x91\x04\x63\x13\x7e\x69\x64\x15\x81\x1e\x0b\xe1\x63\x12\x31\x70\x61\x8a\x27\x5c\xcc\x02\xae\xa0\xb1\x0b\x87\x1b\xcf\xf2\xaf\xa0\xf4\xaa\xb3\x30\x96\xff\x35\xec\xe2\x3f\x46\x8b\x03\xd7\xb1\x9f\xfc\x82\x38\xfe\x02\x65\x81\x70\xf2\x2c\x13\x00\xd8\x9e\x9a\xf7\xa3\xcf\x8a\xfb\x09\xcf\x7a\x76\xf6\xd7\xfc\xab\x28\x63\xe0\x14\xb4\xf2\xef\xc0\x1a\xfe\x0d\xf8\x00\xdf\xc9\x8c\xbd\x49\xdc\xfc\x81\x8b\x01\x92\xaf\x89\x48\x04\xf6\x6e\x92\x9f\x8a\xc6\x4a\x00\x40\x34\x35\xf2\x14\xd8\x25\x30\x0a\x88\xa1\xf3\x53\x9e\x22\xa4\xd7\x09\xc6\x1c\xc0\x0a\x98\x8d\xac\xfc\x89\xcf\xf9\x5f\x7f\xf1\x05\x53\x8c\xc6\x7f\x71\x3e\x1e\x2d\x0d\xec\x13\xed\xf8\x43\xe4\xfe\x6c\xde\x55\xee\x1f\xf7\xdf\xef\xdf\x0e\x73\x51\x2c\xff\xc1\xd7\xfc\x1b\x5f\x7f\x8d\x56\xc3\x93\xbf\xb8\x70\x00\x3e\xc1\x37\x88\xb8\xf3\x26\xfe\x04\x7b\x0f\x7e\x58\x12\xf1\x3a\xe3\x4f\x68\x60\x99\xc8\xcb\xcf\x71\x74\x6e\x0a\xb4\x0e\x6a\x96\x3e\x25\x4e\x1e\x27\x98\xce\xa6\x72\xa4\x65\x20\x22\xf5\x68\xf7\xa1\xcf\xc6\xef\x5f\xe4\xca\x9a\x73\xfb\x02\xe4\x29\x33\x84\xc7\xda\x6b\xbd\x9f\xbf\xfa\x39\xba\x99\x29\x81\xbd\x77\xbc\xbd\x6a\xdd\x6f\x0f\xb7\xc1\x13\xb0\x68\x64\x5b\x65\xf9\xce\x45\x65\x28\xb0\x8f\xfd\xfb\xf9\x24\x61\xcd\xce\xe2\x3f\x61\x6f\x60\xf3\x04\x64\x7a\x58\x28\x42\x95\x62\x1a\x1c\xc0\x30\xa2\xff\x5b\x40\xa1\x25\x25\xd2\x65\x8b\x1d\x72\xd1\x78\xbf\xbc\x7a\x65\xfe\x77\xf0\xce\xf1\xa2\xb4\xe6\x75\xed\xad\x8e\x12\x73\xb4\x3a\xa3\x3c\xf3\xf3\xe3\x9f\x23\x9c\x18\x1a\x55\x6e\x3c\x3e\xbf\xe8\xba\xad\x23\x31\x8f\xc9\xf3\x6a\x3b\x33\xbd\x43\xd5\xe9\x88\xcf\x63\xc6\x2f\x1c\x60\xf3\xa8\x5d\xe2\x53\x76\x13\x3e\x9b\xba\x40\x29\x58\x21\x30\xd4\x86\x79\xb3\x49\x5a\x22\xca\x52\xa6\x99\x7c\x27\xa1\x3e\x14\x52\x20\x5e\x4a\xd9\xc2\x89\x11\x3e\x89\x76\x99\x88\x1c\x23\x80\xc4\xa9\xdf\x81\x89\xaf\x04\x8e\x0f\x08\xc5\x30\x48\x9c\xd7\xda\x8b\xad\x3f\xb4\x87\xb9\x69\x36\x9f\x89\xe0\x47\x42\x46\x37\x79\xb4\x95\x53\xdf\x24\xe5\x57\x26\xd4\xc6\x41\xfa\xc3\x4d\xad\x37\xfa\x9d\x4b\x8a\x57\x9e\xda\x5b\x97\x33\xb0\xbd\x59\x63\x4b\x8a\x36\x55\xcd\xf5\xcb\xe4\xb2\xa6\xf6\x8c\x19\xcb\xab\x6a\xd6\x74\x64\xf9\x0b\xb5\xe5\x26\xbe\xd5\xe5\xd4\x1b\xb3\x6c\x96\xf4\x38\x6d\x72\x52\xf2\xe0\x83\x9f\x6c\x87\x19\xab\x7e\x7d\xb8\xe3\x4d\xcf\xc0\xd6\x06\xfe\xb7\x33\xef\x58\x52\x02\x61\xf7\x99\x03\xb0\x6e\xf4\xc9\x2d\xb5\x75\x3b\x7e\x3e\xc6\x3f\xb1\xe5\xc3\x0e\xec\xd2\xfe\xfb\xe8\xc3\xbe\xc2\xbb\x07\x60\xdf\xc1\xeb\x6f\xd8\x45\x6d\x1a\xf5\xd8\xa6\xf1\x38\xde\x7f\x73\x40\x05\x58\x2d\x60\x35\xc3\x72\x21\xcb\x64\x33\x48\xe8\xb7\x48\xfa\x0e\x4a\x58\xd2\x75\x94\x8a\x30\xfa\xd2\xae\x4b\xf9\x91\xae\x4b\xf9\x91\xae\x4b\x8f\xbf\x62\xd7\xb9\x68\xd7\x45\x32\xc1\x30\xc7\x6c\xdc\x73\x53\x59\x96\x25\x52\xb1\xe3\xa6\x70\x93\x3d\x3e\x70\x5f\x65\xde\xd6\xda\x15\xa7\xf6\xd4\xe5\x0e\xef\xef\xd0\xe5\x18\x15\x98\xab\xca\x1f\x1a\x1b\x5a\x55\x93\xd1\xbe\xa6\xb6\x7e\x7d\x67\x66\x69\x61\x7d\x27\x1f\x55\x54\x90\xe5\x8c\x4a\xb4\x68\x34\x96\xc4\xc8\x98\x44\x4d\x62\x72\xe7\x2d\xbf\x5f\x53\x33\xfc\xc8\xa6\xaa\xd7\x91\xb5\x6a\x28\xbf\xae\x69\xd7\x6c\x2f\xaa\x7d\x69\xe1\x86\x9e\x5b\xc6\x8b\x2b\x56\xdf\x3f\xb0\x6e\xde\x33\x55\x72\x78\x5d\xdb\x01\x77\xd6\xce\x96\x8d\xce\xae\x52\x53\x6a\xc1\x0c\x07\x5d\x8b\x89\x38\x66\xfc\x0f\x24\xfe\x94\xec\x59\xc4\xa1\xd0\x22\xd0\xef\xb3\x13\x92\x44\xda\x0d\xa4\xf8\xe4\x47\x17\xe2\xa4\x0d\xdb\x85\x0d\x38\x93\xf1\x32\x50\xf9\x3d\xfa\xc5\x87\xb0\xea\xec\x4d\x31\xef\x06\xb2\xb0\x68\xfc\xc5\xf9\x7f\xb0\x1f\x9f\x4f\x0a\xbc\x0d\xfb\x85\x35\x6f\xc1\xb1\x26\x47\xd9\xbc\x2b\x3e\x27\xee\xaa\xcf\x51\x5c\xf6\x9c\xff\xfc\x06\xed\x78\x15\x16\x7c\xbd\x2f\xf6\x83\x40\x19\xb3\xe4\x8d\x37\x02\xed\xcc\x92\x0b\xfb\x02\xff\x81\x25\xc1\x38\x8a\x3c\xaa\x2b\x6a\xc0\x12\x5f\x68\x02\xe4\x20\x1e\x46\x0e\xd5\x08\x39\x44\x0c\x00\xb2\x24\x4e\x9d\x18\xed\x10\x03\x46\x89\x97\x17\x70\xcc\x6c\xa9\x40\x80\x21\x7a\x20\x8d\x97\x16\x43\x63\x57\x2c\xd7\xe5\x8b\x62\x59\x56\xc3\x6a\x30\x40\x36\x86\x54\x36\x81\x1a\xf6\xaf\x4c\x10\x80\xee\xbf\xe7\x1e\x78\xe8\x72\x92\x00\x68\x42\x7f\x81\x8f\x5f\x95\x28\x00\x81\x0d\x04\xb7\xcb\xe6\xd1\xf6\xdc\xe8\x0b\x8d\xc7\xed\x91\x4c\x69\x4f\x2a\xa9\x28\x07\x47\x2f\x6b\x0e\x99\xc9\x71\x62\x6b\x84\x99\xae\x17\x9b\xf4\x63\x45\x7d\x86\xe9\x0d\x9f\x5e\x0c\x5b\x31\x42\x09\x28\x38\x28\xf8\x8d\xa4\xcd\x57\x0c\x6f\x42\x4f\xe1\x36\x1f\x98\x16\xe2\xf4\x3c\xea\xbd\xf0\xf9\x55\xe2\x9c\x48\x4e\xc7\x01\x91\x97\x81\x81\x0c\x54\x51\x9c\xb2\x68\xfd\xa0\x07\x78\x8e\x45\xa4\x1e\x97\xf1\x32\x38\x27\xb3\x9b\x32\x7a\x86\xac\x29\x13\xd6\x7f\x1f\xfc\xb7\x77\x65\xfd\xe8\xd1\x15\x3e\xe6\x5b\x46\xe5\xa8\x73\x97\xaf\x2d\xc4\x2a\xca\x6b\xf2\xd8\xdc\xa5\xc7\x57\xf1\xb9\xf0\x8d\xca\xa1\xe2\x24\xa8\x92\x07\x3a\xa9\x6d\xf4\xe2\x7f\x2e\x7e\xc6\xee\xe1\x4e\x03\x0b\x70\x83\x16\x5f\x63\x44\xb0\xbf\x0d\x90\x65\x8c\x10\xb0\x2c\xd6\x60\x70\x8f\xb0\x1c\x33\x28\x06\x7a\x60\xb1\x4a\xa6\xaf\xc8\x6b\x4d\xa4\x82\xcd\x0a\x41\x76\x96\xd5\x6d\x73\x6b\x93\xe3\xe3\x14\xf2\xd0\x10\x60\x81\x16\x82\xdd\xe7\x88\x6f\x13\x2b\x98\x1e\xa7\x44\xa5\x2e\x62\x44\xa8\x03\xee\x31\x31\xc5\x32\xd4\x4d\xc8\x03\x26\x72\xc3\xe9\xed\xe5\x70\xd3\xae\x90\x9f\x41\x9d\x95\xa9\x5e\xf7\xe0\xd0\xaa\xfb\xe7\x66\xc2\xc0\x12\x6d\xe5\x92\x16\x4b\xb5\xcf\xad\x72\x28\x7d\x2d\xc3\xf8\xe0\x75\x38\xca\x5a\x53\xe0\x6a\xf6\x24\xaa\x67\xde\xfd\xde\xe6\xc1\xa4\x5f\x3d\x58\x37\x4f\xb3\xe5\xbd\xbb\xba\xfa\xee\xff\xfb\x8e\x93\xf5\xd8\x6f\xe9\x8b\x50\xc4\x85\xbf\x12\x91\x9c\x20\x67\x16\x36\x16\x2d\xef\xf5\x14\xcc\x3b\x24\xb4\x19\x24\x63\x0c\xc7\x7e\xb6\x01\xb7\xd9\x05\xda\x7c\x2d\x91\x84\xcb\x01\x32\x92\xc9\x36\x03\xc8\x49\x70\x3f\x90\x78\x05\x86\x95\x30\x83\x04\xc2\x2f\xc4\x00\x4d\x6b\x76\x56\xa6\xd5\x65\x73\x69\x93\x13\xe2\x63\x63\xc2\x42\x2f\x69\x76\x06\xe3\x71\xaa\xa6\xb4\x3a\x99\x11\xdb\xcc\x10\x7f\x23\x81\x79\xa0\xef\x47\x1f\x5a\x57\xc9\x16\x0f\x94\xe8\xe0\xc3\x28\x3d\x33\xaa\x71\xe9\xa1\xb6\x05\x47\xe6\xb9\x61\x60\x2f\xa7\x2f\x68\xcb\xcd\xac\x2b\x76\xaa\x87\x92\x6a\xfb\xc6\xba\x2d\x25\x0e\x9d\x14\xae\x81\x4a\x7b\x59\x6c\xdd\x8e\x17\xc6\xa3\x7c\x03\xeb\x6b\xaa\xe6\xc4\xf7\xdf\xb9\xcc\x57\xbf\xf3\xd9\xf9\x9b\x0b\xe7\x36\xd8\xa3\xf0\xda\xbc\x56\xe7\xb5\xc4\x31\x37\x5b\xca\x7b\x9d\x09\x19\x33\x8a\x04\x2e\x95\x27\xf8\x57\x29\x6f\x7f\x22\xd1\x3f\x64\x50\x42\x13\x7b\xe2\xf6\x21\xc9\x10\xe0\x00\xcb\xb1\xfd\x0c\x9c\x3c\x4c\x9a\xe4\x09\xa2\x9a\xa3\x13\x03\x5a\x93\x99\x4b\x4f\x0c\xf0\x9e\x73\xe7\x36\xc0\x06\xa8\xe3\xc7\x66\xdf\xbe\x28\x2f\x7f\xbd\x78\x66\x38\x72\xd7\xdb\x78\xca\x1d\x41\x03\x81\x6d\x31\x33\xaf\x3d\xbd\x7a\xcd\xaf\x0f\xb7\x3d\x57\x34\x42\x4e\x0d\x82\x5c\xbc\x9b\xff\x27\xdb\x27\xc4\x55\xf8\x4c\x58\xff\x80\x95\xc1\xb0\xda\x21\x16\x4e\x9e\x83\x26\x34\x8f\x18\x0e\xf7\x28\x7d\xfc\xe4\x69\xc1\x3c\x11\x68\x8b\xbe\x69\xdc\x3c\x33\x3b\xad\x63\xe7\x60\xcb\xfc\x01\x53\xf9\x40\xc1\x5b\x67\xce\x2c\x85\x4e\x68\x46\xb3\x14\x35\x8b\xae\xef\xcd\xdd\xbe\x61\x24\xfe\x61\xe3\xae\x59\xbe\x01\x5f\x2a\x2b\x46\xe0\x0a\xe7\x27\x92\x73\x93\x9c\x9f\x88\xbe\x1e\x09\x19\x2e\x42\x58\x7b\x00\xb0\xb8\x4b\x06\xb1\xec\x23\x3d\x72\x79\xd4\x0d\x00\xf8\x02\x8d\x5c\xe1\xc6\xde\x4d\x01\x9d\xae\x93\x5f\x1e\x6f\x43\x75\x42\x78\x1d\x7c\xe0\x1c\xc9\x03\x4a\x12\x63\x86\x68\x34\x09\x21\x05\x25\x7c\xe7\x39\xdc\x37\x1b\xd1\x35\x13\xa9\x40\x49\xfa\xaf\xbe\x36\xf4\x68\xe0\x20\xc5\x20\xdf\x81\xeb\x64\x62\xf3\x7e\xb4\x4e\x71\x57\xad\x93\xf9\xbf\xd6\x69\x1f\x3c\x76\x26\xab\x7b\x33\xc9\x4d\x2a\x86\xfb\xf0\xed\x67\x84\xf8\xdb\xf3\xdb\xc5\x3a\xd1\xf8\x1e\xf8\x2d\x5f\x43\x75\xb4\x19\x17\x3f\x67\x87\xa9\xff\x20\x83\xe4\x24\x4b\x86\x0c\x48\xba\x72\x4e\xb2\x24\x31\x27\x19\xf5\xb9\x19\xf4\x24\xa4\x47\x9f\x61\xc8\x88\x57\xd3\x9c\x64\xa9\x10\xf3\x4e\x4c\xcf\x49\x46\x05\xc0\xf4\xac\x64\xb9\x3b\x7f\xb7\xaf\xaa\xe5\xda\x93\x8b\x37\x9e\xb8\xa6\x04\xfb\xe8\xeb\x56\x77\xb8\x7b\xeb\x0a\xe3\x1c\x91\x79\x5d\xab\x46\x30\x93\x91\x09\x03\xa0\x12\x4b\x46\xb9\x57\x7b\xef\xfd\x68\xc7\xf7\x7b\x3f\x7d\x60\x26\x6c\x3f\xf2\xf7\x7d\x3f\x6f\x6a\x3b\x3c\xe6\x8f\x54\xc5\x87\x3f\x1f\x92\x9c\xa4\xfc\xe1\x2b\xff\xd2\x5b\x3b\x7b\xca\x71\x7e\x00\xc2\xad\x43\xf8\x35\x48\x7c\x04\xe9\x5f\x16\x02\x68\xe0\x10\x81\xb3\x05\xe5\xfe\x18\x55\xcc\xd9\x45\x62\x90\x2f\x05\xf7\x89\x01\x4a\x26\xec\x3a\x08\xc6\x79\xe3\xd3\x0b\x61\x5e\xbe\x4a\x88\x3b\x63\x0d\x5c\xcb\xec\x80\xfc\xfa\x11\x0c\xb3\xab\xdb\xf5\xc2\xe2\xee\x47\x77\xb7\x9d\xd5\x97\xf4\xe4\xfa\xe6\x54\x18\x6e\xbd\x7e\x3f\xa6\x03\xbb\x99\x2f\x09\x2b\x1f\xbf\x6d\x88\x20\xf1\x1c\x23\x77\x4d\x30\x29\xdd\xb8\xe5\x21\x1a\xaf\xcd\x2f\x67\x67\xb1\x79\xb8\x9e\x73\x7d\x61\x53\xea\x59\x7b\x3c\x8b\x6c\xeb\x57\xa9\x6e\xdc\x44\x75\x13\xc8\xee\xa6\xbb\xbc\x18\x4b\x00\x13\xfd\x13\xa5\x29\xdf\x37\x66\x91\xb7\x4c\x6d\xd5\xf4\xc0\x7d\x31\xc7\x00\x13\x13\xb8\x95\xd9\x05\xf9\x1d\xbf\xf8\x9f\xba\x5d\x3f\x0f\x36\xca\xd7\x9b\xeb\x1b\x2e\x37\x9a\xeb\xc7\x6b\xae\x65\x56\xe1\x66\xf9\xe2\x3e\x7e\x65\xf8\x4e\xda\xa8\xc5\x99\xad\xc5\x46\x43\x71\x5b\x76\xed\xfc\x32\xed\x31\x92\x7f\x07\xe4\xf0\xb5\x84\x1f\x0e\x99\xc0\xa3\x2d\x00\x98\xe1\x9b\x17\x59\x60\x83\x12\xf8\xdb\x83\x00\xc8\x1e\x87\xf0\xb8\xed\xb8\xd3\x86\xcb\xcd\xe4\xab\x59\x1c\x59\x8b\xcb\x7d\xda\x20\x94\xb3\x5f\x6c\x82\x52\xf8\xdb\x8b\xf3\x2f\xf2\x20\x06\x97\x7c\xf6\x62\x13\x2e\xfa\x38\xc2\x2f\x78\xfc\x82\xf8\xf9\x00\x60\xcb\x82\xfc\x33\x59\x3e\x3b\x35\x94\xb1\x48\xd8\x44\xa9\xb2\x3b\x19\x54\x0a\x00\x09\x2b\x8d\x89\xc6\x65\x23\x74\x72\x29\x31\x49\x10\xb0\xa9\x98\xe2\x5e\x21\x9f\x60\xab\x66\x66\x9c\xe3\x63\x45\x22\x9a\xf3\xe7\x27\x68\x68\x0e\xa2\xe4\x1f\x9a\x30\x2b\xde\x6c\x92\x55\x25\x90\x89\xa2\x6d\x55\x33\xb3\x73\x66\xd5\xda\x27\x71\xc6\x27\xe9\x3c\x73\x80\xe1\x60\x8a\x5e\x62\xc2\xe3\x18\xc8\x09\x84\x38\x32\x42\x4b\x0a\x7a\xa5\xd4\x10\x40\x43\xa9\x58\x62\x99\x87\x63\xe0\xea\xa5\x70\xd6\x08\xa3\x11\x02\xa3\xc3\x98\x95\x66\x4a\x88\xc7\xf6\x79\x82\xa4\x34\x40\x3d\xd9\x74\x26\x6a\x4f\x34\x03\xc2\x61\xe1\xce\xa0\xf4\xa5\x52\x0c\x31\x32\x4e\x36\x08\x9e\x9b\x75\xeb\xbc\xdc\xdc\x79\xb7\xce\x72\x9e\x35\x9a\x31\x98\x1a\x42\x59\x94\x3a\xea\xb3\x88\x04\x45\x28\x44\xde\xe1\x03\x1d\xfc\x17\xce\x0c\xbf\x2d\x36\xd6\xe6\xcf\x10\x1b\x88\x92\xcf\x47\x43\xe8\xec\x5c\x51\x6a\x5f\xb0\x68\x81\xdd\x3e\x6f\xe1\x82\xac\xb5\x38\x45\xc2\xc9\xcb\xdb\xdd\x87\xf5\x89\xdb\x24\x71\xc0\x0e\x7c\x04\x65\x26\x85\x0c\x28\xca\x40\x88\x40\xac\x10\x13\x74\x7a\x31\x64\x5f\x95\x8c\x89\xb4\x8b\xc4\x53\x8f\x10\xdb\x1b\x74\xa0\x5a\x4c\x84\x96\x35\x66\x0a\x66\x4a\x8d\xdb\x43\xe8\x78\x48\x93\x4c\x62\x8b\x24\x13\x27\x0f\x28\x38\x1c\x95\xe2\x89\xcd\xdc\x97\x56\x3f\x5e\x3d\xa3\xe8\x2c\x0c\x91\xc7\x47\xa9\x74\xea\x70\x84\xb4\xc9\x9f\x45\xc4\x2b\xc2\x20\x0e\x6e\x58\xe1\xef\xdc\x64\xd2\xcf\x2a\xa9\x1a\xab\x4f\x83\x27\xf4\x59\xfa\xac\x64\x4c\x65\x93\xa9\x4f\xce\x94\x4b\x11\xaa\x19\x7f\x71\x57\x7d\x01\x92\x9c\x37\x69\x5d\x66\x15\xcc\x9e\xb9\xa5\x65\xf6\x2f\x67\x3b\x86\xe6\x8c\x38\xf7\xfc\x66\x67\x19\x2a\x28\x2b\xf0\x97\xaf\x7b\x68\x18\xde\x6b\x71\x76\x2c\xf3\xef\xcb\x1b\xaa\xb2\x68\xe2\xac\xd9\x64\xcd\xe6\xe3\xb6\xdf\x88\xc7\x3c\x97\x30\xc9\xc4\x0b\x1c\xb4\x1c\x82\x88\xa3\x63\x0a\x58\x08\x68\xf8\x77\x8f\x48\xc9\x27\x92\x0f\x99\xd5\x99\x3a\x83\xce\x40\x8d\x0a\xc2\x4a\x9b\x80\xba\x8a\x6c\x1a\x04\x7a\x2e\x51\x89\x3d\xa0\x52\xd1\x1e\xc0\xc3\x0b\xdf\x89\xb3\xe5\xeb\x6f\xea\x5b\x3a\x7f\xd6\xe8\xdb\x6f\xcf\xbd\x77\x49\xc1\xc2\xd9\xb9\x0d\x0e\x15\x4c\x33\xa5\xe6\x18\x94\x08\x6a\x93\x3f\x4f\xb0\x21\x54\x32\x7f\x5f\x7d\xc5\x58\x53\x06\x03\x57\xba\x3b\x8b\x53\x4f\x2f\x5f\x36\x7b\xe5\x69\x37\x26\x74\x5b\x76\x9f\x03\x43\x5d\x47\xf3\xe7\x5b\x3d\x30\xbb\x97\x36\x76\xd6\x9b\x23\x7b\x7f\xbd\xab\x14\x69\x31\x65\x11\xa0\x49\xd9\x2e\x7e\xc4\xee\x27\xdc\xba\xa4\x5d\x8c\xc0\x19\x03\x39\x96\x83\xd4\xc3\xca\x00\x81\x3a\x86\xb6\x46\x88\x61\xeb\x15\xe4\xa5\xce\xa4\x33\x5a\x94\x36\xda\xae\xc9\x36\xb8\xdd\x97\x8e\xa2\x8b\x00\xbb\xcd\xb4\xc5\xa4\xed\x66\xd2\x64\xf4\x69\x77\x87\xab\xda\xae\x80\xba\x74\x5b\x26\x19\xbd\x4f\x23\xe2\x63\xf1\xe8\xb9\xbb\x96\xf9\x6e\xbf\x3d\xa4\xb1\xf6\x75\x74\x60\xde\x4c\x55\x56\x9d\xeb\x7d\xc9\xc7\x73\xef\x1d\xcb\x43\xdf\x35\x8f\x19\x22\x33\x0a\xaa\x2d\x45\xa6\x6c\x74\x60\x53\xc3\x3d\x0d\xe6\xc6\xa6\xe6\xb4\xf1\xa3\x8b\x3d\xcc\xf8\x96\xda\xfc\x12\xf4\x7c\x4d\x31\x49\x54\x77\x22\xbd\x65\x35\x40\xe0\x11\x7e\x37\x7b\x80\x3b\x4e\xb0\xaf\xc0\xe7\x2b\x54\x42\x16\x68\xe9\x39\x23\xdb\x41\x6c\x98\x40\x02\xc9\x7e\x3b\x15\xe4\xcd\x71\x93\x94\x31\x1e\x37\xbe\xd0\x9a\xaa\xc3\x2d\x24\x81\xc2\x8a\x89\xea\xeb\xcc\xba\xc9\x11\xa3\xe8\x65\x12\xd3\x44\x13\x10\x41\x51\x7d\x71\x39\x03\xf0\xd5\x9b\xb6\xa6\x94\x0c\x57\xf2\x1f\x32\x30\x75\xf5\x8b\xd7\x94\x2d\x1b\xf3\x75\xba\xe3\xa4\x38\x17\xce\xb7\xea\x84\x70\xb4\x61\x29\xba\x5b\xe3\xac\xb4\xed\xb0\x65\x9c\x41\x7d\x27\x96\x8f\xbb\x3a\x8a\x52\x4f\x78\x16\xdc\x31\x3c\x7e\x77\x76\x6c\x69\xd7\x82\xc2\x35\x9a\xc2\x7c\x57\x8c\x3a\xb6\xac\xca\x2f\x5f\x31\xbe\x35\xf0\x8a\x6b\x6c\xc1\xa0\xa9\xb2\xea\xce\x59\xbf\xa3\xeb\xf0\x55\x7e\x35\x8b\x43\x02\xa7\xb6\x4f\xf3\x23\xed\x8b\xbb\x62\xfb\xb4\xc1\xf6\xc1\xff\x2f\xdb\x07\x39\xf8\xf1\x82\xa1\x38\x67\x83\x9b\xff\x90\x85\xfa\xb9\xf7\x2f\x2d\xec\x6a\x23\x4c\x05\x6c\x78\x6c\xf4\xb7\xf2\x98\x10\x38\x6b\x00\x8d\x8a\x0d\x84\x77\x3c\xde\x50\x92\x9a\x67\x8d\x7b\x29\xa3\x7d\x5d\x43\xf3\x72\x93\xdc\x59\xda\x64\xef\x88\xb0\xa4\x9b\xc3\xe4\xe1\x99\x4e\x7b\x58\x5b\x43\x1b\xbf\x74\x6a\x03\x21\x90\xe3\xb5\xf6\x08\x1d\xbf\x39\x82\xff\x5a\x2b\xd2\x3d\xe3\x36\x48\xba\xa4\x34\xfc\x86\x78\x8d\x27\x43\xde\x7d\x69\xb8\x08\x91\xac\x53\x8b\xe0\x66\xb3\x3d\x42\x20\xbb\x18\x89\x4c\x0f\xba\x02\x11\xac\x0e\x13\xf8\xaa\xf5\x82\x46\x75\xa5\xe5\x47\x02\x73\x91\x44\x32\xc1\xab\xca\x38\x51\x52\x82\x5a\x1f\x1f\x89\xa0\x2a\xf6\xaf\x8a\x64\x44\xe4\x4d\x49\xc9\x48\x8d\x85\xd9\x6b\xed\x3d\x34\x4f\xa7\xb4\x15\x98\x63\x70\xb8\xe4\x48\x46\xc1\xe5\xcb\x4d\x57\xbd\xb4\x99\xf9\x23\xaf\x38\xc5\x7f\xf0\x72\xdf\xa9\x92\x3d\x7f\xb9\x59\xe4\xce\xb3\x11\x99\x8a\xc7\xd2\x02\xae\x15\xb2\x7c\xa6\x00\x8e\xa8\x5e\x68\x4c\x64\xf8\x14\xec\x75\xb0\x57\xb0\xb5\x8a\x2e\x7d\xcb\xf4\x62\x93\xc4\x4e\x44\x00\x4d\x5e\xe0\x33\x5f\xa5\x2c\x08\x16\x95\xf4\x52\x59\x45\xcf\xc2\x66\x25\x76\x4d\x18\x45\x53\xae\x18\x99\x4c\xda\xaf\x93\xd3\x05\x7e\x59\x2f\x21\xe3\x2e\x7d\xfd\xba\xae\x74\x56\x99\x94\x16\x17\x86\xe6\x42\x4d\x42\xba\x93\xca\x64\x8d\x15\xa1\xdc\xde\x55\xa5\xfe\xb9\xb5\x36\x86\x59\xc9\x7f\x87\xc3\x93\x1b\x7f\x4b\xb8\x53\x17\xc2\x5f\x5d\x38\xeb\xae\x42\x0f\x1c\xec\x3f\xd1\x37\xf3\xe5\xc1\x6b\x5e\xde\x50\x8c\xf4\x0d\x6b\xda\x69\x0c\xe4\x67\xd4\x96\x6a\x04\xa3\x42\x43\xf5\x53\x0f\x6c\x80\x1c\xd8\xa4\xd4\xe8\x4f\x65\xd1\xc4\xf0\x9b\xaf\x56\x4a\x1c\xfd\x5e\x71\xf4\xa3\x85\x54\xf8\x24\x2d\x83\x45\x8d\xf7\x56\x8d\x38\xfc\x53\x25\x97\x68\xfe\x24\xbb\x2d\xa3\x85\xf1\x2a\x95\x01\x8f\x3b\xd2\x25\x7f\x2e\xc8\x2a\x2f\x26\x21\xf0\x8d\xd4\x58\x99\xff\x3d\x77\xee\x7f\xf1\x90\xaf\x70\x95\xc2\xec\x9e\xcb\xb6\x13\x13\x26\xd4\x86\x99\x81\x83\xc2\xa1\x80\xe4\x38\xc3\x6d\x23\x39\x02\x74\x60\x50\x4c\x73\x2f\x41\x0c\x92\x10\x1d\x0e\x00\x8e\x01\x83\x53\x38\x3b\xa4\xe2\xe8\x99\xae\x52\x08\x7f\x4d\x4a\x4a\x7b\x81\x54\x9a\x2c\x25\xd6\x3b\x3c\x76\x93\x16\x2d\xb1\xfa\xce\x2b\x0f\x5b\xd4\xab\x67\xcf\xbe\x7a\x06\x6f\xaf\x06\x0b\x82\xca\xd8\x4f\x14\x29\x08\xb9\x3a\xc6\x8b\x85\x8d\xe4\xe7\x7c\x39\x9b\xc7\x97\xc0\x97\xaf\x3a\x4e\x2b\x48\x0e\x34\x7c\x6e\xb0\x91\x28\xa6\x48\x88\x60\x14\x64\x89\x0b\x93\xc5\x75\x65\x69\xae\x93\xa9\xf1\x12\x9c\x70\xa8\x86\xc0\xa0\xc7\x64\x63\xe4\xb8\x60\x83\x36\x49\xf0\x30\xed\xba\x24\x19\xbb\x68\x9f\x9d\x5a\x65\x74\xfd\xea\xd7\x0f\x34\x34\x1c\x78\x7d\xf5\xb2\xe3\xa5\xc5\x25\x07\x3a\x2b\x17\xd7\x5b\x2c\xf5\x8b\x2b\x37\x6d\x63\x50\x92\xfa\x73\x85\x19\xa2\x19\xbb\x7f\xa6\xec\xbb\xef\xa3\x6d\x50\xb2\xed\xa3\xfb\xfa\xec\xe9\x8f\xea\xf4\xa5\x4b\x6f\x6e\xe7\xff\xd3\x79\xcb\xd2\x52\xb4\x6b\x65\xe7\x93\x9d\x1d\x4f\x74\x2f\x3d\x36\xe6\xa1\xeb\xee\x3a\x5c\xff\x45\x84\xcb\x80\xd4\x3f\x05\xb2\x78\x94\x21\x4b\x99\xd7\xc9\x5e\x3e\x36\xe9\xb2\xe4\x2e\x61\x31\x30\xa4\x26\x69\x62\xa2\x43\x64\x84\xbf\x80\xd4\xdf\x88\xe7\x4d\x8e\x40\x7e\x2f\x46\xb2\x5e\xd6\x18\x7a\xdc\x79\xd1\x43\x36\x3c\x2e\xf2\xd3\xb0\x68\x54\xba\xf4\xf6\xde\xed\xbf\xd9\x5f\x5d\xb9\xf3\x8d\x4d\x8b\xef\x72\x66\xb8\xf7\xb5\xe0\x38\x32\x9d\xbe\x6e\xd5\xc3\x50\x65\xc9\x37\x39\xe6\x66\x67\x8f\x66\x77\x6f\xeb\xb4\x75\xde\xf0\xca\x02\xeb\x82\x57\x0e\x75\xea\x53\x9e\xd7\xa4\x14\x0d\xad\x2b\xb4\x16\xaf\x1b\x2a\xa2\xf5\xaf\xc0\x73\xe9\x08\x89\xc7\x23\xdc\xea\xc1\x9d\x7a\x0c\xc1\x89\xa3\x8d\xc8\x84\x98\xcc\x61\x15\xc4\x28\x9f\x3c\x04\x28\x85\x64\x0c\xd3\xb5\x8d\x43\xfc\x13\xcc\xbd\xfc\xad\x72\x6d\x46\x92\xa5\xd8\xa6\xc6\xb3\x3d\xe9\x33\x8d\x8d\x41\x65\xe3\x87\x9a\x5b\xb6\xf4\xb9\x59\xf6\xcb\xd3\xa7\x2f\xac\x21\x69\x57\xa6\x88\x37\x3a\xd3\xad\x33\xaf\x1b\x06\x10\x94\xe1\x3a\xad\x61\xf3\xae\x52\xa7\xb8\xa9\x75\xb2\x28\xa7\xd7\xe9\x32\xed\x81\xd4\x69\x15\xff\x2b\x66\x0f\x7f\x58\xae\x77\xa4\xd4\x36\x33\xb8\x46\x9f\x08\xeb\xcf\xbf\xf0\x40\x43\xeb\xb6\x7e\x0f\xcb\xac\x39\x71\x22\xf0\x4f\x4b\x99\x23\x11\x6d\x5b\x51\x73\x7b\xad\xb1\xae\xbe\xc1\x44\x14\x03\x64\xed\xa5\x75\x6a\xc7\xe3\x3c\x1f\xcf\xd3\x82\x9f\x9e\x8b\x2b\x69\x22\x17\x57\xf2\x44\x2e\xae\x74\x41\x63\x75\x7b\x32\x98\xff\x6f\x72\x71\xb5\x6f\x5e\xed\x6e\xcb\x4f\xa9\xdd\x75\x6a\xe5\xe0\xa3\x9b\xeb\xcf\x19\x7d\xed\xd9\x35\xf3\x2b\x74\xc9\xbe\xe1\xca\x97\x5f\xde\x8f\xc3\x25\x96\x54\xe7\xf5\x97\x19\xcf\x76\xec\x7b\xb2\x67\xe5\x2f\x0e\x36\xc3\xc3\x1b\x1f\xb2\xc6\xf9\x9b\x7b\xb3\x87\x6f\x9d\xeb\xf6\xce\xbd\xa9\x2f\xa3\x31\x57\x6b\x28\x6c\xb6\x67\xb7\xe4\xe9\x5e\x5a\xba\x3e\xbb\x9d\x1c\x25\xdb\xb2\xc6\xee\x1a\x71\x78\x17\x1d\xa1\xe7\x2e\x3f\x5a\xcc\x5e\xcb\x64\x81\x4a\xb8\xf3\xe2\x32\x00\x66\x38\x7d\xe0\x47\x3f\xbf\x8b\xf7\xb3\x1e\x00\x90\x19\x94\x80\x30\x9e\x87\x12\x50\x12\x06\x40\xc8\xe3\x00\x3e\xcb\xd3\xe3\x16\x80\xf0\x53\xe6\x02\x13\x2b\x31\x92\x98\x5b\x5f\x84\x84\x13\xb2\x3a\xcf\x4d\x80\x32\x25\xcd\x29\xed\x51\x4b\x08\x3c\x16\x7e\x9a\x90\x55\x6a\x59\x61\xcb\xfa\x1d\x7b\xa7\x63\xc1\xe8\x4c\x43\x43\xd9\x8d\xbd\xf7\x91\xeb\x7f\xc5\x9c\x45\xff\x91\xc4\xe1\xeb\x53\x9e\x22\x97\x57\x52\x44\xfb\xd3\x80\x66\xf6\xd6\x3c\x49\x6e\xd6\xf5\xa4\x70\xbb\x49\xdd\x02\xfd\x27\x21\xab\xcc\xb2\x1c\xdf\x8e\x5b\x91\x3d\x7f\xa4\xcf\xd0\x50\x7e\xc3\xcc\x7b\x00\xb9\xdf\x29\xfe\x24\xfa\x06\x7c\x37\x59\x9f\xca\x89\xfa\x18\xa7\xdc\xe0\x6b\x52\x9f\xb5\xb6\x8c\xbf\x54\x38\xe6\xe3\xea\xd4\x97\xdf\xd0\xfb\x24\x69\x33\x7c\x15\xd7\xe7\x5f\xb8\x3e\x95\x70\x94\x7d\x11\x80\x13\x40\xe8\x0b\x58\x86\xdb\xf9\xb2\xc4\x88\xcc\x70\xe4\x22\x61\xcc\x97\xc2\x11\xf0\x10\x10\xbe\x33\x32\x67\x99\x47\x24\x71\xf8\xbb\xd1\x8b\x5d\xf4\xbb\x51\x40\x5a\x00\x00\x82\x4e\xfe\x65\xe6\x0e\xf0\x0f\x5c\x1f\x35\x88\xf5\x61\x10\x95\x84\x63\xf1\xcd\x21\xae\x94\x26\x01\xc9\x54\x53\x6b\xc5\x4d\xa9\xe0\xec\xf8\x4c\xbf\x65\x03\xae\x20\xf4\x92\xaa\x6e\xb0\x66\xff\xb9\x6c\xa2\xaa\xf7\xdc\x35\xf9\x12\x10\x29\x04\xd8\x86\x49\xae\x60\xb6\x80\xb2\xd9\x08\xbe\xd7\x62\xb2\x01\x14\x4e\x64\x4c\x95\x25\x4c\xf0\x9e\x91\xb3\x2e\xdb\xc0\x6f\x3f\xc3\xef\x81\xcb\xcf\xc0\x35\xcc\xf2\x0b\x7b\x98\xe5\xaf\xc2\x15\xfc\x6e\x6a\x7b\x18\x60\xbb\x48\x6c\x33\xc9\xa5\x01\x24\x92\x02\x8a\xc9\xe6\xba\x08\xa0\xba\xb8\x36\x04\xdf\x59\x48\x53\x5d\x58\x2b\x24\x97\x9e\x12\x50\x1c\x2a\xc3\xc1\x9b\xe2\x43\x82\x0f\x52\xe2\x57\x6c\x17\xbf\xfd\x2c\xbf\x0f\x2e\x25\xbf\x67\xe1\x1a\x7e\x3b\xfe\xc5\xf1\xb9\x2f\xa3\xe7\x4e\x91\xa7\x9e\x0a\x54\x02\x3a\x86\x37\x20\x29\xd3\xc8\x7c\x09\x94\x57\xca\x69\x6c\x31\x90\x5e\x83\xd3\x83\xce\x6e\x48\xc1\x99\x0e\x73\x5a\xbc\x29\x98\x88\xc3\xe9\xc4\x7f\x19\x55\x66\xa3\x57\xab\xf5\x36\x66\xe6\x67\xd6\x93\x8f\xeb\x33\x85\xf1\x0a\xc7\xb6\xdf\x2c\xe8\xc1\xf3\x3a\xfa\x62\x05\x85\x26\x46\xc3\x08\x61\x2c\xc1\xb3\x17\xff\xc9\x19\x84\xef\xf8\x7f\xe1\x8f\x4c\x20\x7a\x3d\x2d\x41\x1a\x0b\x24\xc0\x87\xaf\x7d\x08\xc7\xfe\xe9\x80\x07\xe4\x83\x66\x30\x02\xd6\x13\x36\xc5\xfc\x3c\x24\x91\x7a\x65\x28\x04\xc4\x43\x24\x23\xb1\x54\x80\x03\x12\x6e\x88\x26\xc7\xc1\xdb\x40\xc8\x90\x18\x24\x51\x56\x4b\x58\x14\x04\x28\x4c\x39\xaa\x5b\xbd\x72\xd1\x82\xa1\x41\x8b\xc5\x6e\xb1\x18\x70\x0a\xcd\x70\x59\x52\xb0\x6d\x2a\x11\xd6\x72\x59\xba\x88\xe9\x2d\xc7\xbb\x9a\xda\x38\x9d\x4f\x69\xda\x27\xdc\xf4\x32\x25\xa9\xfe\x81\xa2\xbc\x2e\xad\xb6\xdb\x5b\x3c\xe0\xd7\xe9\x4a\xf0\xbb\x1e\xad\xb6\xd3\x8b\xa3\x4c\x53\xf9\x8b\x3a\xdf\xcc\xc2\xe2\xc1\x92\xd4\x54\xfc\x79\x61\x5f\x89\x6e\x55\x2b\xe3\x6a\xbd\xf0\x4d\xa8\x4a\x1f\x1f\x97\xaa\x0c\x0d\x55\xea\xe3\xe3\xf5\xca\x10\xb4\x28\x54\xad\x8f\xd3\xa4\xc6\x4a\x43\x95\xa9\xf4\x13\xfe\x16\xe1\x13\x85\x4c\xfc\x04\x5a\xbc\xc3\xf5\xe9\x26\x7c\x5a\x4a\xaf\x1f\xf6\x9a\xbc\xc3\x75\xe9\x46\x9d\xce\x98\x5e\x37\xec\x65\x1e\xc8\x1b\xae\xb3\xdb\xeb\x86\xf3\x0c\xde\x39\xf5\xe9\xe9\xf5\x73\xbc\x81\xd6\x1e\xd4\xde\xd3\xae\x71\x18\xd5\x6a\xa3\x43\x63\xd0\x64\x93\x17\xd9\x9a\x0b\x9d\xe4\x23\x95\xc9\xa1\x31\x25\x08\xdf\x25\x98\xa6\x7d\x42\xe7\xd0\x4e\xb0\x87\x69\x60\x8e\x01\x09\xe1\x80\x64\xe8\x39\xfc\xf2\x34\xe3\x0a\x39\x9d\x49\x0a\x3d\x74\x41\x27\x6a\xff\xcf\xfd\x18\x4e\xab\xbd\x1f\x25\xf0\xe3\x70\xbb\x02\x6e\x17\xe6\xe2\x56\x7c\x9f\x5a\x72\x1f\x92\xe7\x86\x83\x88\xdc\x08\x41\x7a\x27\x04\x27\x6e\x45\xa7\x86\x44\xc1\x10\x31\x05\x95\x50\xaf\x60\x90\x15\xea\xf8\x0f\xee\xff\xcf\x7f\x98\x63\xfc\x1a\x05\xbf\x06\x1e\x80\xd7\x92\xfb\x69\xc1\xdf\x98\xdb\xd9\x5f\x13\xe5\xf3\x49\x04\x60\x96\xcd\x88\x47\x0f\xde\xb1\x01\x5e\xdc\xf0\xb7\x32\xe6\x58\x19\x91\x19\x11\x28\x8b\x4d\xc0\x7b\x51\x28\x88\xc4\xfe\x18\x0c\x7c\x03\xac\x0c\xc2\x09\xc3\x9f\x92\x83\x22\xfa\x1e\x20\x44\xf1\x35\x05\x88\x42\x9e\x89\x69\xaf\x6d\xca\xb7\x2c\x4b\x50\x45\x2c\xaa\xc7\x26\x3e\x79\xcc\x84\x00\xc0\x7b\x10\x41\xa1\x9b\xa1\x13\x62\xbb\x17\xb3\xfd\xd0\xa1\xc7\xf8\x3c\x16\xbe\xfa\x14\x5f\x05\x43\x62\x98\x05\xdb\x9e\x79\x66\x08\xad\x0d\x1c\x85\x6b\x0d\xb4\x0f\xf2\xd0\x5e\xe6\x37\xdc\xf3\x40\x0d\xe6\xe3\xa4\x20\x62\x6e\xc4\x58\x08\x27\x73\x23\x0a\x6f\xba\x84\xaf\x13\x26\x73\x23\x16\x50\xd2\x41\xf1\x0d\x51\x53\xd5\xe2\xf6\x49\xbe\x12\xf9\x2e\x0b\xc4\xd4\x88\x6a\xa0\x26\x5e\x36\x89\x8c\x44\x3c\x5e\x89\x78\x07\xfe\x4e\xab\x5f\x5c\x5d\xd0\x5f\x66\x78\x25\x26\xd5\x91\x9c\x53\x16\xf3\x0a\xf7\xf0\xea\xe2\x2a\x9c\xa7\xab\x99\xe7\xe0\x9b\xae\x2a\x7b\x6c\x96\x35\xf0\x7b\x46\x4b\xc7\x8f\x72\x64\x6f\xc5\xeb\xd5\x09\x6a\x7d\x55\x22\xb3\x46\x18\x94\x86\x43\xc2\x5b\x32\x18\x01\x39\x56\xa0\x61\x15\x69\x35\xca\x68\xb5\x28\x1a\xab\x90\xd0\x6b\x39\xb2\x32\x33\x2c\x38\x52\x9e\x9c\x04\x54\x98\x55\x23\x3a\x52\x46\x03\x19\x62\x25\x84\x74\x8a\x10\xcc\xbb\xcc\xf8\xe8\x47\x7f\xa7\xed\xf8\x6a\x5c\x44\xad\x63\xbc\xfc\x1b\x28\x59\x87\x4e\x9c\xff\xac\x29\x5e\xa7\x90\xa2\xfb\xee\x62\x6f\x3f\xcc\x91\x7c\xcc\x98\x43\x3f\xef\x8b\x54\x6f\xad\xc5\x5a\xed\x4e\x91\xc0\x0a\xec\x2d\x86\x85\xf0\x1d\xa7\x7f\x89\xfd\xe4\x49\x49\x66\x71\x55\x8a\x77\xdf\xda\x7d\xf7\x8f\xdc\xb3\x38\xdf\x3b\xf7\xfa\xee\xdc\x46\x87\x4a\x5b\xd8\x93\x7f\xff\xbe\xb5\x00\x51\x9e\xad\xa7\xb8\xe3\xd4\x6f\xf7\x67\x7a\x52\x78\x3a\x8c\x86\xc2\x6a\xf0\x5f\x0e\x42\xd1\xe1\x9f\x0d\x64\x92\x30\x89\x2c\x6c\x0c\xcf\x28\x16\x86\xb2\x43\x38\xc6\x86\x5a\x6a\xc8\x10\x00\x20\xed\x22\xc1\x0b\x74\xa3\x40\xbd\x1c\x15\x4b\xf4\xf4\xf8\xff\xc3\x95\x55\x64\x1e\xba\x7f\xe2\x45\x1c\x57\x28\x5c\x09\xe8\x85\x84\xbd\xc4\x9d\x93\x8e\x73\x81\xca\x63\x75\x72\x03\x49\x86\x47\xa5\xe1\xf4\x64\x78\xfa\x48\x86\x22\xc5\x28\x7f\x09\x3d\xbb\xc0\x49\x0b\x35\x7b\xe4\x51\xcc\x15\xa8\x88\xb5\x86\x69\x54\xed\x36\x4c\x30\x6b\x6c\x0d\x71\x75\xad\xae\xf3\xbc\x71\xb1\x7e\x4d\xa7\x4b\xd6\xfa\xc6\xa3\x17\xee\xf1\x88\x6c\xe6\x1e\xe6\xde\xc0\x0e\x7b\x7e\x6a\x64\x28\xbb\x27\x56\xad\xaf\x5f\xd3\x81\x56\xb5\xec\x9c\xe5\x0e\xfc\x9a\x3b\xee\x19\xda\xdd\x02\x59\xfe\x02\x7f\xd8\xd1\x38\xe2\xf6\x8c\x36\x3b\x00\x04\xeb\x29\xbf\xf8\x2b\x20\x03\x34\xf9\xea\xb5\x50\x26\xd5\x41\x89\x8c\xac\xce\x10\x88\x20\xe1\x6d\x93\x84\x42\xa2\x2d\x0e\x86\x4d\x12\x07\xc9\x64\x54\x4b\x2c\x13\xd3\x9e\x91\x0e\xce\xb0\xa7\xdb\xac\x96\x20\x51\x8b\x41\x68\x29\xf5\x0e\x8a\xcd\x24\x13\xca\x85\x7f\x27\xd2\x1c\x89\x3c\x67\x4a\x1d\xb3\x95\xbf\x89\xc9\x6a\x5d\x5e\x35\x3e\x90\xe0\x5d\x5f\xb2\xf2\x8d\x83\xad\xec\x23\x8f\x3c\xf2\xa8\xb4\xe3\xe0\x1b\x2b\x8b\x97\x17\x24\x64\xcd\x73\x57\x2d\x9d\xe1\xe0\xe0\x28\x7f\x13\x9c\x8b\x62\xfa\x77\x74\x58\x74\xa7\x23\xa3\xcb\x77\xff\x7a\xd7\xee\x6b\x76\x6f\xff\xe5\xce\x32\x79\xe4\x2b\x51\x0a\x6b\xdb\x96\xee\xdd\xd7\xd0\xb8\x4e\x1f\x89\x0d\xe2\x5e\x0d\x22\xd3\x7b\x40\x84\x2f\xb4\xbb\xb3\xb9\x22\x3f\x2b\x8a\x65\xb3\x26\x22\x7d\xaf\x16\x2a\x41\x7a\x5f\xf1\x13\xe2\xfa\x38\x2c\xec\x50\x87\x1e\xc7\xd4\xfb\x66\x97\x1b\x0c\xc2\x5f\xfd\x03\xe1\xf1\xa6\x78\xfc\x7f\x78\x78\x02\x36\x68\x1b\xe3\xc2\x7f\x4f\xbf\x99\x53\x66\xd0\x97\xcd\xa6\x25\x8f\x46\x26\x98\xe2\x34\x26\x75\x18\x2e\x41\x4b\xf2\x87\x88\xc4\x64\x8d\xae\xbe\x2a\x6b\x56\xf3\xc2\xc2\xfa\xa2\x85\x2d\x59\xd6\xaa\x01\x17\x66\x06\x8f\x4d\x48\xcf\x4d\xa9\x4f\xce\xb5\x25\x28\x53\x2d\xca\x80\xaf\x70\x51\x73\x56\x56\xf3\xa2\xc2\x86\xa2\x85\xe4\xc5\xc2\xa2\x64\xaf\x2d\x01\xe7\xaa\x4d\x6e\x10\x5f\x6c\xa3\x92\x97\xda\xcc\x5e\xc0\xfd\x10\xcd\x3d\x04\xf4\x20\x0b\xc8\x9e\x4e\x37\xc8\x01\xca\x12\x4e\x9f\x2e\x89\xde\x45\x3c\xfc\x53\x9b\x29\x15\xdc\x03\x93\xe9\xc5\x99\x9e\xd5\x4f\xae\xcc\xeb\x9b\xed\xee\xb7\x3b\x7a\xb6\x34\xfb\xc7\x9b\x33\xdc\x73\x6f\x99\xad\x76\x77\xf9\x3f\xcd\xaa\xc8\x50\xd9\xb4\x6e\xaf\xd2\xb7\xf2\xe8\x70\xa8\xfc\xe7\x21\x32\x78\xcb\xe0\xcd\xf3\x73\xed\xed\x6b\xea\xad\xa5\x87\x6f\xdc\x99\x5d\x5a\x3c\x54\x6a\x40\xf1\xa9\xcd\xdd\xfd\x59\xe9\xbe\x92\xbe\x41\x21\xe6\x76\x25\xcd\x79\x7e\x82\xe0\x45\x81\x1d\x38\xc8\xd8\x64\x65\x58\x52\xe3\x23\x39\x80\xc7\x46\x47\x49\x7a\xb1\xbb\xc2\xa9\x9e\x36\x02\x1e\x1a\x4d\x24\x56\x4e\x81\x95\x31\xf4\xcf\x97\xbe\x7f\x09\xff\xdf\xac\x4a\xcb\x37\x18\xf3\xd3\x54\xaa\xb4\x3c\xa3\x31\xcf\xa2\x9a\x17\xab\xd5\x2a\x62\xb5\x29\xb1\xbf\xe1\x7f\x07\x33\x99\xc5\x17\xae\xc3\x34\x33\x37\x30\xf3\x1f\x48\x2b\x73\x68\x34\x8e\xb2\xb4\x3f\xa6\x95\x92\x17\xa5\x69\xa1\xf6\xac\x2c\xfb\xa9\x74\x87\x23\x3d\xf0\xb7\x59\xa4\xcf\x16\x32\x87\xd8\x56\x9a\x1b\x3f\x16\xf7\x99\x22\x4a\x02\x71\x9f\x41\x26\x58\x2f\xcc\x2f\xab\x87\x7a\x21\x7f\x25\xf3\xc9\x86\xc2\xf5\x0b\x77\x6c\xde\xbe\x65\x21\x1f\xbd\x7b\xd9\x5e\xb8\x9b\x0b\xe5\x77\x13\xe5\x0f\x25\xf2\xd7\xc0\x8d\x81\x8f\xe1\x4b\x7c\x19\x7c\xa1\x8f\x8e\xc5\x8d\x78\xad\x5d\xc7\x36\xe0\x56\xa7\xe1\xfb\x1a\xb4\xd1\x08\xdf\xd7\x48\x97\x07\x3b\x11\xba\x8b\x35\x4b\x15\xcd\xc0\x04\xc9\x06\xa1\xc3\x69\xc5\xd9\xd8\xb6\xe7\x87\xaa\xb7\x2f\x1b\x28\x33\x5a\xaa\x87\x96\x6f\xf2\x8f\x3c\xb5\xbd\x21\x00\x3c\x7b\x1b\xfa\x9e\xeb\xe2\xaf\xad\xdd\xe7\x45\x89\xae\x5d\x7d\xae\xc2\xb4\x9a\xe1\xf5\x07\xea\xeb\x0f\xac\x1f\xae\x49\x6b\xb9\xf6\xb5\xe5\x99\xfc\xb3\xce\xfc\xfc\x62\xc6\x5a\xe2\xe5\xbf\x80\xc9\x39\x85\x58\x1f\xec\xb9\xf8\x2d\xc6\x09\x3d\x02\x32\xe1\xc9\x8b\x5a\xf4\xa9\xf7\x16\x60\x82\x2b\x62\x00\x8c\x82\x6f\xc0\x9b\x00\xc0\xef\xe9\x79\x08\x7d\x4a\xce\x43\xb8\xbc\x09\x97\xff\x3d\xf7\x3c\x2e\x7f\xfa\xa2\x12\x7d\x2e\x94\xd7\x7e\x47\xcb\xdf\x48\xcb\xc7\xd0\xf2\x9f\xe3\xf2\xd4\x81\xf5\x9d\xe0\xeb\x4a\xc2\xd7\x3d\xc3\x3d\x8d\xaf\x7b\xf5\xa2\x0c\x7d\x25\x5c\x17\x29\x3c\x67\xed\x94\xe7\x7c\x15\x7c\x4e\x39\x2e\x7f\x8a\x7b\x02\x97\x7f\xfd\xa2\x17\x7d\x21\x94\xff\x4c\x28\xbf\x7d\x4a\xf9\x2f\x48\x79\x80\xa8\x1d\xa6\x8d\xfb\x06\xf7\x64\x11\xee\x4b\xa7\x25\x29\x86\x8c\x11\x96\x2c\xc1\xc8\x67\x33\x95\x33\x97\x67\xcc\xbe\x8c\xb3\x3e\x83\x41\x75\xad\x37\xe5\x47\xf8\xfa\x56\xfa\xcd\xa5\x45\xc5\xa9\x89\x89\x45\x35\x3d\x79\xbb\xff\xb0\xbf\xca\xbf\xf1\xb9\x15\x2b\x9e\xdd\xe8\x2f\x5a\xf5\xd8\xde\xf2\x59\x98\xac\xbe\x68\xb0\xac\x7c\x56\x61\x92\x54\x5f\xd8\xcd\xb2\x25\x45\x83\x77\x2c\x2e\x90\x46\x28\x22\x9e\x0e\x8f\x57\x84\x2f\xfd\x23\xff\xeb\x13\x79\x7b\xcf\x3d\x31\xa7\xe9\xc0\xa9\x25\xca\x79\x3f\xdb\x5e\x7b\xc2\xd9\x3e\x5e\x44\x09\xeb\x8b\x17\x5d\xdf\xda\x19\x57\xe0\x16\x30\x0b\x77\x5c\x4c\x62\x2d\x34\x6e\x4f\xf2\xa4\x84\xe8\x4b\x9c\x48\xfb\x6c\x39\xcb\xb7\x9d\x65\xf6\xfc\x9d\x7b\xe7\x07\x9b\xe4\x7a\x6a\x23\xe5\xbf\x66\x8f\x91\x79\x88\xcb\xca\x18\x5c\x16\x42\xb2\x45\x43\x48\x2c\x07\x90\x59\x15\xf8\x82\xa9\x3c\x7f\x0d\x6a\x0e\x3c\xc6\x96\x5e\xf8\x37\x52\xa2\xd2\xc0\xf8\xc9\x9b\xd0\x1b\xe8\xb5\xc3\x27\x03\xe3\x82\xbe\x70\x27\x5a\xcc\x7c\xc5\x64\x01\x86\x9c\x3d\x2e\xd7\x18\xe5\xd1\x54\x63\xc4\xcb\x88\xf9\xea\xc2\xe3\x4c\x23\x5a\x7c\x92\x7c\x9e\x06\x00\x7b\x0d\x7e\x6e\x28\x7e\x2e\x47\x9f\xab\xf6\x10\x36\x29\x06\xcf\x78\x84\xa7\x27\x9c\xf5\x27\x3e\xe6\xc4\xbb\xbf\x81\x73\x60\x55\x6b\x37\x3b\x0b\x43\x9f\xca\x4f\xe1\x27\xe4\x82\x6f\xd9\xc7\x99\xb7\x81\x05\x14\x83\x36\x10\xfa\x4c\x63\x99\x37\x23\x9e\x65\x26\xc5\xad\x39\x92\xb9\x44\xea\x8a\x38\x12\x51\x93\xf7\x04\x59\x42\x94\x3a\x2a\x60\x27\x03\xd8\x5d\xec\xe3\xa6\x9a\xc5\x55\xd9\x33\xca\x3d\x4a\xa5\xa7\xbc\xd5\x51\xb5\xa8\xc6\x64\xaa\x5e\x54\xe5\x68\xad\x10\x3e\xc9\x26\x9f\x5c\xb0\x47\x68\xb1\x55\xaa\x24\x2b\x89\x61\x92\xb2\xfc\x66\x93\x53\x1b\xc1\xd8\x22\xb4\x4e\x63\x5a\x49\x56\x32\xfe\xcc\x51\x42\x3f\x43\xcd\x84\x8f\xce\x50\x50\x97\x96\x56\x57\x60\xc0\x9c\x8b\xb5\xe6\x9a\x4d\x33\x5d\x86\xfc\x5a\xb3\xb9\x36\xdf\xe0\x9a\xb9\xa9\xc6\x6c\x2d\x77\x68\x9c\xa5\xfe\x28\x55\x64\x71\x49\x76\xa2\xa3\xdc\x62\x29\x77\x24\x66\x97\x14\x47\xaa\xa2\xfc\xa5\x4e\x8d\xa3\xdc\x4a\xfb\xf7\x1c\x5f\xcb\xfc\x5d\x62\x07\xa9\xb8\xaf\x54\x2c\x19\xcf\xcb\x10\x0a\x53\xcd\x62\x38\xee\x16\xbd\x49\x89\x49\xbd\xda\xf0\x10\x4d\x52\x62\x48\x5e\x91\xb3\x7f\x57\xbb\xa9\xd6\x14\xa7\x48\x4f\x6a\x6e\x2d\xec\xde\x3b\x90\x1d\x04\x2b\x0c\xb6\xb3\xff\x26\xd8\x85\xf0\x90\x9f\x71\x5c\x7f\xdb\xf9\x30\x2a\x43\xf6\x03\x9e\xad\x64\x39\xa0\x03\xa5\x78\xde\x97\x66\xeb\xa2\xf1\xbc\x27\x4c\x1a\x6e\x9a\x00\x56\xd4\x2b\x04\xac\x8e\x14\x8b\x10\xe9\x8f\x7c\x77\x38\x6b\x8d\x3f\xad\xd0\x8d\xa1\x3e\x0e\xa7\xd7\xe8\x5f\x99\x15\x9a\xb5\xcc\x6f\xc4\xe9\x99\x92\xb5\x2e\x4f\x61\x9a\x7f\x5d\x56\x6c\xd6\x8a\x89\x12\x79\x46\xff\x1a\x5c\x62\xa5\x58\xc2\x5d\x98\x86\x3f\x60\x16\x97\xd7\xc3\xb0\x58\x4d\x74\x54\xbc\x22\xb4\xbe\xfc\x74\x79\x7d\xa8\x22\x3e\x0a\x3b\x7d\xc2\x60\x7d\xf9\x17\x3f\xf2\x5d\x70\x7e\x82\xdb\x58\x0f\x5b\x0e\x14\xb8\xff\xc2\x11\x99\x6b\x3a\xa9\x99\x24\x10\xf4\xe8\xf0\xaf\x5a\xea\xc4\xf1\x5c\x3a\xd6\x13\xf8\xbc\x75\xd8\xcd\xc3\xd9\x4b\x79\x0b\x2a\xa8\x1b\xce\xf8\x33\x7f\x6a\x09\x3c\x0e\xfd\xf7\xe7\xcf\x7f\xfd\xc3\xd7\x0f\xe5\x75\xbf\xfe\xa1\x70\xde\x7d\x1c\x28\x58\x05\x7b\x12\x8c\x80\x64\x10\x09\x3e\xf4\x61\xc9\x01\xa5\x70\x27\x50\x07\xee\x05\x72\x2c\x41\x8e\x7f\x18\x14\x54\x81\x7b\xf1\x0b\xe1\x9a\x27\x81\x9c\xcd\x62\x7f\x8b\xaf\xd1\xe2\x39\x7f\x66\xca\x35\x77\x0b\xd7\x9c\x11\xaf\xb9\x5b\xb8\x06\x20\x80\x65\x12\x5b\x87\xd7\x08\x07\x22\xf0\x38\x84\xcb\x18\x40\xe4\x8f\x13\x8a\x9c\x6b\x0a\xb5\x07\x49\x4f\xc2\xad\xfc\xc6\x93\xfc\x3a\xf4\xce\xfb\x4a\xf5\x5f\xff\x16\xab\xc4\x26\x71\x73\xc0\x82\xfe\x04\xdf\x29\x2e\xe6\x6d\xbc\xb5\x88\xc4\x55\xc2\xd8\x8b\x9d\x28\x09\xfc\x00\xc2\x70\x1f\x84\x72\x30\xeb\x12\xcb\x4e\x92\xc2\xe8\x35\xe3\x88\xf8\x97\x9e\xb6\xf5\xcf\x6c\xd3\xd5\x15\x6f\xa9\xab\x02\x2a\xbc\x80\x43\xd9\xad\xac\x04\x3f\x3d\x11\x58\x41\x1e\xf0\x81\x0a\x50\x07\x5a\x40\x0f\xe8\x07\x43\xb8\x25\xf3\xc1\x62\xb0\x14\xac\x05\x1b\xc1\x16\xb0\x03\xec\x01\x07\xc0\xf5\x24\x5b\xc3\xc1\x6b\xf7\xef\xdd\xbd\x73\xfb\xd6\xcd\x9b\x36\xac\x5b\xbd\x6c\x7c\x6c\xe1\x82\xb9\xa3\x73\x66\x0f\x0e\xcc\xec\xed\x9c\xd1\xd4\x50\x55\x59\x56\x52\x90\xef\xcd\x31\xa5\xc4\x47\x86\x20\x15\x6e\x90\xb0\xd1\x2a\x85\x6d\x57\x4d\x3d\xb8\x14\xad\x44\xa2\x2b\xcc\xb1\x78\x2e\x11\x40\x2c\xa1\x71\x51\x72\xc2\x3b\x7d\x70\x87\xd6\x43\x02\xf2\x27\x07\x0a\xfc\x97\xbc\xd6\x2b\x8d\xe4\x5f\x17\xc4\x65\x63\x89\x77\x89\x21\x05\x5c\xb4\x88\x52\x31\xf5\xb5\x93\x94\xd0\xeb\x39\x42\x36\x19\xfc\x85\x53\x5f\x7f\x59\xe1\xf5\x56\x54\x7a\xbd\xe5\x77\x3a\xbd\x89\x89\x6a\x75\x91\x67\xa4\x33\x0d\xdb\xf3\x2d\x7a\xbd\x05\x45\x26\xab\x13\x52\x9c\x05\x59\xf6\xbc\xec\x0b\xd7\x15\x2d\x40\x7f\x5a\x58\x78\xfe\x9d\x63\x0b\x98\xd2\x63\x85\x7c\x79\x92\x46\x93\x54\x61\xb8\xb9\xf4\xe6\xc0\xf1\xc3\xa5\xc2\x9f\x11\xa7\x4e\x5b\xe2\xe4\x9b\x8b\xe8\x0f\xf3\x65\x21\xfd\x41\x46\xb7\xdf\xef\x2e\x22\xff\xac\xb4\xd9\xd4\x66\x59\x48\xaa\xd2\x96\xc6\xff\x6e\xa5\xc9\x66\x33\x15\x91\x7f\xda\xe2\x92\xe3\x12\x32\xec\xd9\xf6\xdf\x06\xe6\x3d\xba\xb8\xb8\x78\xf1\xa3\x4c\xff\xed\xbe\x99\x33\x7d\xb7\xcf\xe4\x1d\x09\x2a\x65\xdc\x4c\xf8\x1b\x1f\xfd\xb9\x50\x56\x4c\x7f\xd0\x70\xb4\x3a\xbd\x65\x37\x7f\x74\x17\x54\xed\xe2\x8f\x06\x5f\x00\xc0\x81\xa8\xc0\x3b\xec\x63\xb2\xa5\x80\x01\x16\xaa\x0f\xb9\x40\x94\x2f\x3c\x27\x3b\x2b\x23\xdd\x1a\xc3\x22\xc0\x65\xd9\x42\x18\x8e\x18\x1f\x8b\x98\x09\x58\x91\xd3\x4d\x7b\x5d\xc8\xc6\xa2\x54\xeb\x95\x4e\x06\xf7\x2e\xf9\x45\xb3\x50\x7d\xe0\xc9\xc0\x23\xe8\x79\x49\xb8\x3c\x4c\x65\x37\xa8\x8d\xe5\xc3\xbe\xdc\xc1\x6a\x1b\xfc\x25\xb2\xc4\x19\xb5\xf2\x38\x4d\x68\x92\x5e\x29\x7b\xf3\xcd\x37\x17\xb0\x2c\x62\x59\x49\xcb\x05\xc7\x05\x07\xf3\x9b\xf3\xf1\x38\x48\x32\x3a\xc5\xe3\xf5\x59\x7c\x23\xd5\xe6\xe4\x92\x39\x15\x9e\x2c\x5f\x4e\x82\x33\xd3\x1c\x61\x48\x33\x65\x67\xf5\x1c\x0b\xb4\xb3\xa1\x77\xb0\x00\x81\xa7\x2f\x9e\x65\x13\xd9\xdb\x49\xec\x27\x9e\xff\xc6\x84\x28\x16\x4d\x91\xf3\xae\x20\x19\xa3\x79\x9a\x56\xcd\x26\xe6\x2e\xbc\x7b\xc1\xfc\x7b\x16\xe6\x42\xe8\x59\x78\xf7\xfc\x05\xe4\xd5\x59\x65\x46\xad\xc7\x5d\x6b\x57\x92\xbf\x9e\x5a\x7b\x2c\xfc\x08\xf3\x81\xd5\xd4\x6c\x7d\x66\xe1\x1b\x0b\x9f\xd9\x86\x5f\x3c\xbb\x50\x9d\x37\x82\x8d\x2a\xf5\x23\xde\x6f\xf2\x47\x1b\xec\xf6\x86\xd1\x7c\x7a\x96\x77\x00\xc0\xdc\xcf\x68\x41\x32\x89\x17\x12\x02\xaa\x01\x82\x2c\xa4\x91\xd4\xc4\xe2\x0d\x87\xc4\x38\xea\x42\x50\x17\x67\x88\x35\x47\x73\x32\x92\x73\xde\x05\x85\x79\x2c\x92\x9b\x8b\xbd\x29\xd5\x31\xf7\x07\x6e\x87\x29\x45\xd9\x9e\x1c\x6d\x66\x4a\xd4\x73\xd6\x86\xf1\xca\xfd\xb7\x6b\x72\xea\x1c\xfb\x21\x8e\xbe\x95\x79\xda\x12\xad\x6e\x85\xce\x16\xef\xc1\x5d\x7a\xcd\x12\x6b\x65\x79\x95\x65\x29\xb5\x8d\xc6\xb2\x9f\x30\xe7\x25\x3f\x10\xdb\x0a\xee\x13\x93\x8a\xa3\x32\x41\x6f\x96\xea\xa1\xd3\x13\xec\x1a\xfa\x3c\xf1\x60\x4d\x7b\x84\x39\x7f\xe2\xa9\xa7\x5e\x86\xda\xa3\xc7\xd5\x69\x1e\x9d\x21\xc7\x6e\x4f\x8a\xc4\xc6\xfe\x2e\x15\x7e\x97\xec\x74\x38\x12\x23\x12\x62\xc3\xd9\x4f\x30\x0a\x17\x7e\xa3\xf3\x65\x27\x2b\xe3\x94\xd1\xf1\x3a\x1c\xf8\x54\xe2\x4c\x21\xaf\x35\xba\x18\xd2\x62\xf6\x13\xf6\xa4\xe4\x15\xfc\xec\x38\xfc\xec\x28\xe9\xe4\xb3\x8d\x4e\x2e\xb8\x64\x3d\xc1\x26\x2a\x99\x2f\xe8\x23\x95\x2f\x40\x06\x16\x14\xb4\xfa\xb8\x4d\xd7\xa8\xf4\xe9\x6a\xf2\x90\x1f\x96\x6d\x41\x09\x49\x86\xa4\xee\x19\x95\x29\xf6\x14\x39\x53\x04\xd0\xc5\x0b\xec\x97\x6c\x98\xe4\x26\x7c\xef\x50\x7c\xef\x90\x4b\xef\x8d\xe7\x1c\x1b\xf6\xf6\x91\x3b\xdf\x86\xfa\xbb\xf8\x1d\xb7\xff\xf1\x3d\xf6\xcb\x03\x07\xce\xf7\xc0\x50\xc1\x5e\x1c\xc2\x7e\xc2\xc5\x4b\xae\x9b\xb8\x16\x09\x72\x92\x13\x7a\x85\xd1\x23\xfb\x5d\x50\x8f\x2f\x7f\x87\x71\xbe\xf7\xa7\xdb\xb8\x0f\x7f\x38\x70\x00\x1e\xe3\xff\x4d\xaf\xcd\x60\x6f\x64\x4e\x48\x4e\x01\x25\x88\xc7\xd7\xc6\xa9\x58\x7a\xed\xb4\xd3\x18\x41\x5a\x30\x27\x32\xda\x57\xd7\xd5\xad\x69\xcb\x78\x2a\xda\x90\x6b\x49\xcb\xd5\x47\xa7\xbd\xf8\x87\x1f\xb8\xe3\x45\xa3\xb5\x16\x9c\x01\xb0\x48\x93\x65\xc0\xce\xcc\x2c\x4d\xf1\x1f\x04\x3b\xd8\xc7\xec\x02\xf4\xbd\x24\x7d\x42\xe6\x4e\x5a\xf7\x71\xbd\x3e\x8e\xb7\xb8\x12\x37\x6b\x75\xf0\x0f\xec\x59\x47\x7f\x6b\xa9\x72\x86\x67\x79\xd5\x6a\x2a\xf7\x0d\x34\xf7\xcd\x3e\x20\x05\xa1\x24\x8b\x43\x28\x64\x29\xea\x94\x45\x4b\x82\x61\x42\xb3\x18\x38\x61\xa0\xa6\x53\xcd\xa8\x93\x4e\xf0\x7e\x76\xf0\x49\x33\xbf\x86\x7f\xf8\x00\xfe\xfe\x6b\x9e\x85\x9d\x0f\x7f\xf7\x1d\xbb\xef\xfc\x52\xf8\x08\x3c\x4d\xe2\x0f\x9f\x21\x99\x20\xf0\xbd\x63\x81\x0e\x64\x10\xff\x5c\x30\x97\x91\x48\x42\x27\xe6\x34\x12\x1d\xde\xe4\x31\x4a\x25\x00\x19\xe9\x86\x54\x7c\x8e\xd6\xc6\xa9\xf0\xa5\x0a\x9d\x4c\x46\x33\x19\x25\x33\x41\x48\x03\xe9\x30\x46\x3e\x11\x2a\x69\x9e\xb4\x2d\x3c\x03\x9f\xef\x3d\xba\xb1\x66\xb8\x2d\xa7\xc9\x93\x54\xbe\xfa\xde\xbe\xaf\xbf\xb6\xd5\x79\x75\x49\x39\xd5\xf6\xc0\x5f\x2d\x35\xb9\xba\xd4\xbc\x3a\xeb\xdb\xec\x3e\x98\x5a\xbf\xba\xb3\x6b\x9d\x36\x3c\xbb\xbc\x3d\xab\x7b\x63\x93\x11\x5e\xe0\x4f\xc7\x1a\xbd\x26\x6b\xa1\x25\x16\x3e\x18\x9d\xea\x31\xa7\x7b\xf5\x91\x64\x3f\xef\xc7\x72\xa1\x0a\xcb\x05\x0b\xb5\xb3\x23\xa2\xc8\x70\x63\x24\x4f\x04\xc3\xb1\x8b\x44\x04\xb8\x98\x79\xbf\x9c\x06\x8b\x59\x80\x05\x13\x2f\x58\x0c\x52\xdc\x59\x30\x48\x1d\xe5\x9a\x64\x73\xbd\x84\xc8\x88\xad\x0c\x69\xdd\xfa\xf0\xc0\xb2\x9f\x6f\xad\x84\xb0\x66\xfb\xf3\xe3\x23\x0f\x5f\xd3\x18\x7a\x36\x74\xe3\x32\xff\xec\xb2\x54\x08\x75\xa5\xb3\x4b\x5d\x9d\x7e\x8b\x04\x6e\x1b\x3e\x3c\x27\xbb\xf9\xc0\xc9\xb1\x5d\x4b\x4e\xed\x6f\x76\xcf\x3d\x3c\x34\xba\x04\x27\x7c\x2f\xdf\x5d\xb1\xb6\xd7\x1d\x9f\xd3\x92\x4b\xe7\x27\x8d\x4b\x1d\xc4\x7d\x1e\x01\x34\xd4\x7b\x07\x38\xc8\x20\x10\xec\x63\x56\xe8\xe3\x48\xdc\xb2\x48\x4d\x64\x82\x3c\x0a\x17\x0b\xd7\x49\xc4\xfe\x55\x13\xdf\x27\x23\x27\x3e\x45\xda\xb3\x47\xe1\xe1\xa5\xaf\x5f\xdf\x0a\x61\xfb\xa1\xd7\x96\x1c\x3d\x5a\xb9\xa4\xd1\x06\xb1\xa7\xab\x06\x77\x60\xc3\xde\x93\x4b\xc7\x97\x9f\xda\x5d\xc7\xbc\x75\xe1\x1c\xcc\xec\x58\x5b\xbf\xa4\x7a\x4d\x97\x03\x52\x1d\xe8\x49\x5c\x87\x74\x5c\x87\x30\x1a\xa7\xc5\x00\x96\x63\xd8\x41\xc0\x01\xc1\x8e\x37\x61\xbc\xbb\xd4\xe7\xa1\x53\x06\x7f\x99\xdf\x07\xfe\x80\x76\x5c\xd8\x81\xcf\x03\x6b\x90\x1d\x8f\xcc\xa9\x97\xd8\x7d\x27\xf8\xaf\x04\xfd\xea\x17\xf8\xde\x5e\x7c\xef\x10\x9a\xcb\x46\x00\x0f\x0e\x4e\x44\xb4\x5d\x3a\x53\x05\x4f\x0a\xbd\xe7\x97\x81\xdf\x7e\xc3\x8c\x05\xb6\xa2\x2c\xc2\x9a\x43\xee\xf7\x5b\xe1\x7e\x0b\xf0\xf8\x36\xe1\xf1\xb5\x93\x2c\xbe\x16\x02\xb8\xa1\x31\x4d\x00\x31\x12\x86\xf0\xa8\x88\x23\x2c\x01\xd4\x6a\x34\x65\xa4\xe5\xca\xe0\x28\xe3\x68\x83\x2b\x8f\xf2\xc4\x2e\xe1\x21\x0a\x20\xdb\x94\x3a\xb4\x76\x5f\xdd\x6a\x9c\x81\x18\xc2\xea\x6d\x2f\x2c\x9b\xff\xf0\xba\x2a\xd9\xe7\x91\x1b\x47\xcb\x86\xcb\x0d\xfa\xca\x45\x75\xba\x92\xfc\xec\x18\xf8\x2f\xf8\xb7\x1b\xd2\x0a\xad\xaa\xa6\x7d\xa7\x96\xe0\xb1\x3e\xd0\xe4\x1a\xda\xdf\x3d\xa7\xc7\xdd\xbb\xb6\x6c\x4f\xd9\xda\x99\x1e\x49\x84\x32\xfa\xb7\xb8\x8b\x21\xcd\xe5\x17\xca\xee\x9b\x96\xd7\x47\x74\xfd\x80\x89\x1e\xbe\x2c\xaf\x4f\xe8\x17\xfc\xcc\x2f\xbe\x80\xf7\x7c\x01\xff\xc2\x9b\xd9\x7d\x7c\x38\xfc\x86\xdc\x0f\x77\x09\x1b\xc5\xee\x0d\xde\x0f\x70\x82\x95\x9a\x85\xc1\x74\x28\x85\xcc\x94\xfb\x29\x84\xf1\xa2\x2e\xa4\xdf\x32\xc5\x38\x26\xd0\x76\xe1\x24\x34\xf0\xef\xb2\x7b\x5f\x0b\x80\xd7\x5e\x63\x80\xd0\xbf\x37\xe1\xfe\x95\xe1\x3a\xaa\x69\x2c\x2d\x40\x60\x09\x09\x7d\x5d\x22\xd2\x7d\x94\xc3\x3a\x42\x31\xcd\x12\x7b\xf2\x04\xcf\xda\x44\x26\x0e\x46\xf5\x2f\x08\x2b\x57\xdc\xda\x3e\x70\x64\x45\x05\xf7\xaf\x14\x4f\x9d\xdd\x52\xee\x4c\x82\xec\xbe\x40\x38\xce\x12\xe7\xcd\x9c\x73\xcb\x3c\xef\x0c\x57\xbc\xb6\xa0\x23\x97\x60\xd6\x09\x9f\x07\x7e\x56\x38\x79\x56\xa8\x04\x32\x41\x67\x00\x04\x5d\x8c\xd0\x1f\x31\x0a\x79\x0c\x7d\x96\x94\xf6\x85\x47\xc8\x01\x95\xb0\xf3\xec\xd9\xc5\x70\x06\x4c\xe3\x7d\xf0\x4f\xfc\x87\xf0\xfd\xad\xfc\xfd\xf8\x11\xe7\xb7\x63\x83\xc7\x77\x81\x75\xb4\x1d\x3f\xc3\xf7\xee\x63\xf7\x09\xb9\xce\x68\xee\x39\xf2\x71\xb7\x38\xe3\xa2\x19\x99\xda\x66\x24\x7d\xe2\x84\x8f\xa0\xc7\x2f\x74\x7e\xf7\x12\x9e\xb5\x84\xd7\x85\xf8\xfe\x48\x9d\xc8\x5a\x90\x11\xca\x3a\x58\x23\x12\x47\xb3\xd4\xa5\x2e\xca\x57\x9a\xda\x49\x76\x79\x6a\xa7\x45\xaf\xc0\xc4\xf7\x8f\xdf\xfd\xec\xfb\xd0\x80\x66\xa0\xbc\xf3\x4b\x99\xbc\xc0\x5f\x90\xed\xc2\x29\x76\x1f\xad\xd7\x63\xf8\xfe\xb1\xf8\x35\xcd\xa5\x25\x45\xb8\x62\x84\x2a\x17\xff\xed\x82\xc1\x26\xcb\x63\x68\xf7\xea\xf4\x90\x72\xab\x31\x4e\x36\xf6\x13\x7e\x94\xfd\xfc\x53\x78\x13\xf3\x19\x13\x7a\xe1\x5b\x76\xdf\x85\x7f\x33\x61\xb8\x52\x4b\xf1\x58\x75\x05\x75\xa0\x24\x5f\xc2\x44\x90\x30\xc3\x88\x73\xde\x82\xbd\x60\xe4\x66\xd3\xed\x8d\x57\xd0\x8c\xba\xca\x36\x3d\xb7\x7c\xc5\x73\x98\x1c\x0c\xdb\x1e\x96\x3f\xbf\xa9\xfc\x4c\x72\xf1\xac\x8a\x4a\x6c\x74\x48\x2a\x1a\xaa\xac\xc0\x46\x08\x24\x59\x78\xea\x60\x5b\xdb\xc1\x53\x0b\x37\x2e\x3c\x75\x7d\x7b\xfb\xc1\xd3\x0b\x61\xc9\xda\x81\xfc\xfc\xc1\xb5\xbe\x4d\xbe\xb5\x83\x05\xf9\x83\xeb\x7c\x82\x5c\x9b\x79\xb1\x80\x9d\x8b\xeb\x96\x00\xb2\x40\x1a\x21\xf7\x13\x98\xe9\x11\xa8\xbc\x72\x35\x2d\x62\x35\x71\xe8\x96\x59\x72\xa9\x12\x97\xc1\x5c\xba\x3a\xd9\xb9\x89\x39\x35\x59\xbf\x38\xfc\x65\x51\xc9\xca\x13\xdb\xab\x21\xac\xda\xfe\xf2\xca\x15\x27\xf0\x3a\x3d\x03\x53\xcb\x47\xab\xaa\x47\xcb\xb4\xba\xb2\xb9\xd5\x55\x98\x7f\x15\x22\x49\xd9\xfa\xc5\x7d\x86\xbb\x57\x9c\x8a\x9c\x71\xed\xe9\xb1\x8d\x63\xa7\xaf\x6b\x9d\x71\xdd\x2b\x63\xb0\x7c\x5d\x5f\x6e\x6e\xff\xba\xb2\x4d\x65\xeb\xfa\xbd\xb9\xfd\xeb\xcb\x68\xbd\xf7\x09\xe3\x4f\x59\x02\x28\xe7\x35\x60\xa1\x88\xc9\x1f\x12\xe5\x56\x70\x0a\xa4\xe9\xac\xba\xa0\x3c\xd4\x4f\x61\x05\x80\x4a\x1d\x74\x06\x55\x65\x3d\xea\xff\xfb\x19\xf8\x5a\xdf\xd1\x75\x55\x24\x54\x0e\xc6\xf2\x17\xf9\xcc\x3f\xd9\x1b\x0b\xf4\xa9\xf9\x4d\x19\x7f\x22\x09\xe5\xb0\x74\xb6\xb6\x6f\xeb\xf5\xcf\xae\xcf\x53\xf1\xa9\xa1\x68\x1e\x54\xda\x4a\xec\x19\xa5\x36\x15\x99\x2f\xdb\xf0\x18\xd7\xe2\x7e\x2c\x24\xa7\x27\x10\x64\x19\x01\x2c\x87\x58\x8e\x20\xd4\x29\x15\xb4\x98\xfa\xa3\x9c\xa9\xcb\xcb\xcd\x71\x66\xda\x0d\xb1\x19\x12\x3c\xbf\xa1\x9b\x9e\xb4\x5d\x97\xa7\x59\x27\x10\x43\xa1\xae\xc2\xf2\x15\xf6\x36\x66\x16\xb4\x55\xf5\x65\x77\xdc\xbe\xb2\xa2\x61\xe3\xdd\x6d\x78\x63\x6e\x64\xcf\x41\x63\x71\x8b\xdd\xd6\x58\x68\xb0\x57\xf7\x67\x77\xdc\xba\xa2\xac\x71\xcb\x83\x5d\x5d\x8f\xed\xed\xc6\x5f\xd9\xab\xfb\xb2\xed\x2d\xc5\x66\x98\x63\xf1\xa6\x25\x86\xab\xdc\xcd\x2b\x3b\x5a\xd7\xb7\x58\xac\x9d\x3b\xfb\x71\x06\x2e\x75\x8c\xc1\x6d\x48\x73\x9b\x12\xc2\x95\xde\xf6\x35\xed\x9d\xeb\x1a\x8d\xe6\xae\xfd\x23\xee\x1a\xbb\x22\x46\xef\xa6\xbc\xfb\x00\xb0\x9b\x89\x2e\x43\xd7\x28\x83\x20\x80\xcc\x94\x4d\x41\x90\x32\x62\x56\xb1\xcd\xfc\xe0\xbf\xf8\x11\xd6\x8a\x37\x30\x27\xf3\xd6\x09\x72\xfd\x03\xb8\x6f\xc8\xde\xa2\x24\xf2\x8f\xc5\xd7\x23\x88\xa5\x15\x9a\xb2\xb5\x2b\x01\x39\xf7\x71\xa4\x2f\xe4\x41\x61\x25\x77\x06\xed\x9b\x0a\xd6\x0b\x2b\xd6\xdc\x3f\x38\xeb\xe8\x9a\x72\xf8\x25\x5a\x3a\x32\x32\x06\x11\x5e\x5b\x17\x87\x6e\x9e\xeb\xc1\x46\xe6\x21\x06\x5e\xb8\xb8\x70\x6c\x6c\x21\x71\x3b\x10\xd8\x02\x7b\x04\x3f\x4b\x46\x72\xa0\x11\x11\x45\x24\x15\xe1\xb7\x17\xab\xab\xc0\x12\x45\x34\x54\x41\x27\xea\x56\x2a\x61\x32\xcf\x57\x7f\xcd\xd7\xf0\xb0\xb4\xb3\x9d\xa9\x3b\xbf\x14\x5f\x2e\xc4\x30\xe2\x7b\x61\x81\x25\xe4\x8d\x0b\x0d\xe6\x8d\x63\x10\xb9\x1b\x12\x66\x56\x8c\x7c\x42\xb8\x60\x1d\x95\xc1\xff\x13\xbb\x2f\xd3\x39\xf6\xfe\x5f\xde\x3e\x78\xed\x3b\x7f\xf9\x60\x6c\xfb\xef\xe1\x2f\xd0\x2b\xe7\x97\xa2\x37\x02\xb9\x58\xf6\xf9\xd0\x09\xe1\xde\x0d\xf8\xde\x6b\xc8\x1e\x43\x64\x6a\x88\x84\x61\xc4\x64\x7d\xb0\x4b\xbc\x37\x16\x5c\xb4\x67\x69\xa0\x38\xc3\x50\x91\x3a\xf3\x1b\xa8\xe6\x77\xc1\x5d\xfc\xff\x5e\xbc\xc0\x7f\x06\xaf\xe1\x77\x42\x25\xfa\x0f\xbc\x21\xf0\x52\xe0\x69\x78\x1b\x3f\x1b\xd5\x22\x3f\xbd\xbf\x9f\xe4\x33\xa1\xfd\x90\xe8\x8b\x97\x30\xe8\xf2\x8e\xc0\x37\xa7\x1d\x01\x75\x24\x84\x11\xdf\x79\x21\x4c\x85\xa1\x7c\xcd\x39\xbe\x09\x86\xa2\x05\x48\x17\x90\xf1\xf3\xe1\x9d\xe8\x2b\x7c\xc9\x31\x7c\xaf\x6a\x22\x0b\x89\xac\x0d\x81\x02\x1f\x07\xcd\x81\x46\xd8\x38\x06\xc5\x90\x0a\x2a\x6c\xe9\x6c\xa0\x12\xdb\x45\x91\x4b\xf0\xcf\x68\xfc\xc2\x20\x1a\x0c\x3c\xcc\x5c\xf3\xd2\x4b\x3b\x99\xf2\x13\xdb\xe8\x72\xa8\x60\xdf\x61\x4e\x49\x78\x3c\xf2\x16\xac\xb3\x6b\xaf\xaa\xb3\x8b\x0c\x09\xe2\x99\x44\xcd\x9c\x4a\x6f\x59\x51\x5d\xb3\x62\x46\xfa\xc3\xd1\xfa\xdc\x34\x6c\x03\x8a\xfe\x83\xb4\xca\x97\x90\xe1\x33\x4a\xaf\xbb\x36\xde\x92\xa3\x09\xe5\x8e\x3b\x9a\xf2\xb4\xda\xbc\x26\x87\x2a\x2d\x39\x26\x26\x39\x4d\x15\xb7\x96\x51\x27\xc8\xd5\x11\x92\xba\x86\x92\x44\xb3\x26\x8a\xf1\x90\x3e\xe2\x01\x60\x5a\x71\xbb\x24\xc4\x7e\x09\x60\x16\xd9\xcc\x39\x97\xd1\xc9\xb4\x9e\xe5\x6f\x41\x79\x89\xcc\xd2\x81\x93\xcf\xe1\x72\xf7\x51\xdd\xe8\x76\x6a\xbb\x53\xd2\x72\xb8\x71\x54\x70\xd0\xb8\x43\xbd\x20\xff\x68\xf5\x38\x1d\xeb\xbd\xb0\x1d\x3e\xa8\x2f\xc9\x4e\xd2\x64\x95\x98\x06\xc7\x98\xb3\xa8\x62\xd5\xdd\x33\xbb\x6e\x59\x52\x92\x5e\x37\xc7\xcb\xff\x80\x6a\x71\x9c\x64\x8a\xbf\xac\x4c\x6f\xc8\xb7\xa8\xe0\x48\x4f\xe7\x81\xd9\x1e\x7b\xd7\xe6\xd6\xa2\xf1\xd1\xa1\xac\x3f\x03\x08\x1e\xc7\xeb\xc5\x86\x9f\xe7\xc3\xcf\xb3\x28\x21\x39\x07\x4d\x49\x7a\x7e\xc9\xf3\xa6\x8b\x07\x41\x9c\xc1\x3f\x6f\x24\x1a\x7a\xa2\xa3\xc2\x6a\xf0\xe7\xe8\xd0\x19\x54\xbd\xe2\xa6\x26\x2c\x33\xca\x53\x5c\xd5\xb6\xac\xe6\x3c\x5d\xed\x86\x7b\x3a\x9b\x6e\x5d\xdb\x80\xce\xa2\x54\x4f\xb5\xd5\x56\xeb\xd1\x9a\x8a\x67\xd8\x37\xa2\x07\x14\xe6\x02\x8b\xc1\x63\x8a\x8d\xd6\x3a\x52\x9b\x57\x37\x5b\x2c\x2d\x1b\x5a\x33\x1b\x8a\x33\xa3\x23\xed\xfe\x2e\x6f\xfb\xa6\x36\x9b\xb9\x65\x73\x8f\x31\xd7\x14\xab\xb4\x14\x9a\x71\x5e\xf1\x18\x80\xc0\x01\x00\xb0\xfc\xdb\x47\x7c\xf7\x78\x3c\x23\xc2\x42\x58\x94\x35\xcd\xe3\xfe\xd8\x6d\xb7\x7d\x1e\xf8\x43\x08\xb2\xfd\x3b\xf0\x27\x58\xac\x81\xcf\x9f\xfc\xfe\xfb\x9b\x50\x20\x60\x87\x8f\x13\x6e\xe3\x67\x71\xbb\xb5\xf8\x1e\x56\xdc\x6e\x39\xc4\xed\x56\x10\x6d\x48\x2a\xb8\xc3\x27\xdb\xa9\x52\x5d\xd2\x1d\x7f\xa9\x46\xa7\x78\x4e\x67\x9a\xe7\xed\x39\x34\x9a\x5b\xb8\xe4\xae\xa1\x96\x9b\x56\xd5\x4b\xbf\x88\x58\xd0\xec\xa8\x71\xc4\x69\xf3\x9b\xb3\x74\x2e\x7b\x5a\x0c\xca\x47\x2d\xaf\x7d\x2b\xd7\xb8\xe6\x1c\xe8\x6c\xbf\x6e\x5e\x7e\x7a\xdb\xfa\xe6\xfa\x52\x5d\x6e\x5d\x7a\x66\xad\x2b\x29\x14\xcf\x0e\xca\xf9\x8d\xeb\x50\xc0\xde\x0c\x52\x40\x0e\x6e\x87\x55\xab\xa0\xf3\x52\xa9\xa7\xa9\x6c\x3d\x53\xeb\x41\xb9\xef\x19\x7a\xe8\x98\x12\x2a\xc4\xac\x8a\x6a\x3f\x34\x5e\x1d\xea\xd8\xdd\xdc\xb1\x7b\xd0\xe9\x5f\x7a\xe7\xcc\x39\xf7\xaf\x28\x81\xfd\x0f\xff\xeb\xd0\xef\xf4\x3e\xb7\x35\x22\xde\x59\xef\xb2\xd7\xe4\x24\x25\x3a\xab\xd9\x9b\x5f\x81\xa9\x75\xab\x3a\xb2\x0b\x60\xfe\xe8\x81\xd6\xae\xeb\xe7\xe5\x95\xac\x7e\x78\x5e\xc3\x91\xaf\xef\x9d\x01\x03\x8f\xca\x93\x2c\x38\xd4\xb5\xb7\xc2\xa2\xcd\xad\x4d\xb7\xd7\xb8\x92\x00\x04\x8f\x92\x18\x61\x71\xce\x92\x3e\x22\x96\x44\x22\x77\x4b\x31\x27\x06\x62\x03\x23\xcc\x0d\xac\xf4\xfc\xf7\xcc\x2f\x4f\x09\x5c\x35\xaf\xe0\xf6\xa4\xe3\xb9\x64\x06\xf9\xa0\x11\xdb\xda\x6b\x7c\xee\xf4\xd4\x48\x62\x6b\xbf\x74\xfa\xd0\xd6\x4c\xee\x41\x4c\xb0\x77\xc5\xa6\x5d\xfe\x9e\x8d\xd6\x64\xfa\xcc\xf6\x5a\x77\x4a\xd5\xea\xdb\xdb\xda\xee\x58\x5d\x9d\xe2\xae\x4d\x37\xfb\x32\x13\xfc\x63\x18\x0e\x79\x68\xac\xf4\x0f\x5a\x4f\x95\x39\xad\xd2\x95\xa2\x75\x57\xa6\x99\x2b\xdd\x38\xb5\x55\x46\x91\xde\x50\x60\x8f\x8f\xb7\x17\x19\x0c\x85\xf6\x04\xa6\xdd\x5e\xef\x73\xc6\x28\x5c\x15\x1d\xce\xf6\x0d\x33\xd2\xd2\x66\x6c\x68\x77\x76\x54\xb8\x15\x31\x4e\x5f\x9d\xbd\x65\x4d\x8b\xc5\xd2\xbc\x36\xf0\x60\x5a\xa1\x45\x89\x27\x5a\x5a\x5a\x61\x1a\xfe\x5b\x80\x74\x7a\xb7\x49\xa1\x30\xb9\x31\xf0\xda\xac\xc4\x94\x6a\x82\x1e\xf3\x2c\xf6\x0b\x25\xe1\x76\xa6\x80\x6c\x3c\x6e\x69\xda\x24\x39\xca\xa2\xe8\xd3\xa0\xf3\x5c\xdc\x5b\xe9\xaa\xc1\x34\xea\x78\x63\x71\x4d\x6e\xb3\xf0\xba\xd6\xfd\xf3\x4b\x43\xb2\x36\x95\x77\xec\x1b\x72\x97\x2c\xbd\xa3\x6f\xf6\xdd\xe3\x85\xb0\xe7\x81\x73\x37\x29\xbe\x28\x1b\x4e\x80\xf1\xd9\xd5\x0e\x7b\x75\xb6\x26\xc1\x59\xfd\x34\x4c\x2e\x5b\xdc\x6c\x77\x78\x86\x0f\x74\x75\x1e\x5e\x5c\x5c\xb6\xee\xf8\xc2\x8a\x7b\xcf\xdd\xd9\x08\x5f\x86\x6b\x0a\x33\x66\x38\x3a\x4a\x4c\x86\x82\x26\x8c\xe7\xc9\xd5\xd2\xba\x41\xef\xc5\x7f\x33\x37\x31\x5a\xa0\x04\x7a\x5c\xb7\x94\x38\xd1\x06\x36\x4d\xd5\x9b\x6a\x44\x65\x6e\x4a\x6f\x5a\x5c\x8a\x9f\x94\x4e\xfe\x96\x8e\x35\xa7\x3f\x57\x9c\xeb\x29\x22\xbf\xb0\xa8\x6d\x5d\xb3\xd9\xdc\xbc\xae\xed\xc6\xd6\xf5\xa4\xdf\xd6\xb7\x46\x74\x37\x35\x75\x3f\xda\xdb\xd8\x48\xa2\xbc\xfa\x00\x40\x1f\x30\x8a\x4b\xe4\x9a\x14\xcb\x35\xf4\xc1\xb3\xbf\x80\x8b\x14\xa8\xc0\x71\xdd\x4a\x52\x2f\x37\xfb\x36\xf3\xa2\x64\xe3\x7f\xb5\x9b\x38\xa5\x7a\xe6\x45\x7b\xeb\xaa\x9a\xda\x55\xad\xf6\xc7\xa2\xf5\x5e\x6a\x37\x99\xf3\xf4\x03\x1b\xb9\xe3\x59\xcd\xf9\x5a\xb2\xc4\x54\x96\x94\x98\x98\x14\x8b\xea\x37\xc2\xfe\x06\xb3\x70\x9b\xef\xc2\x6d\xce\xc6\x75\xd0\xc9\xa9\x0c\x13\x93\xe5\x4a\xae\x9e\x2b\x57\x25\x06\xff\x20\xae\x03\x27\x52\x48\x4c\x4f\x71\x94\x3c\x97\xd9\x34\xbf\xa0\x6c\xbc\x39\xbd\xd2\x57\x5d\xe7\x68\x5f\x5e\x96\xbb\xa8\xdd\xf5\x5c\x79\x81\xaf\xb0\xda\xdf\x01\x7f\xe7\x4e\x8f\xd1\xc6\x45\xa5\xe9\x5d\x33\xbc\xc9\x98\xad\xd8\x93\xd7\x19\x17\xdb\x5d\x9d\xdb\x9e\x9f\x42\x32\xc9\x9b\xdc\xb9\x56\x6f\x06\x40\x50\x0f\x00\xf3\x30\xa3\x24\xf2\x89\xec\x62\x11\x54\x5f\x9c\x06\x19\x22\xa7\xe7\x2b\x03\x86\x9c\x2e\x29\x53\x3b\x38\xf8\x3c\x7f\x6b\x08\x5c\xf8\x73\x7e\xef\xf3\xe1\xd0\x7b\xe3\x3d\xf7\xac\x82\x3f\xf0\x86\x73\x0a\xa1\xcd\x39\xb8\xcd\x07\xf1\x33\x4c\xb8\xcd\x51\x74\x6d\x4e\xc8\x2f\xd5\x74\xf1\x25\x18\x2c\x60\x95\x13\xfe\x93\x7f\x58\x29\xaf\xb6\x6d\xd9\x6b\xa8\x5d\x52\x9f\xb7\xa0\x35\x07\x3d\xcb\xf8\x5c\x3a\x7b\x62\x78\x99\x3f\xc1\x94\x18\x1b\x02\x37\xc2\x1b\x6f\xb8\x41\x1a\xbb\x63\x8d\x6b\x56\x9d\x3d\x25\xbf\xdd\x6d\x37\xc5\xa6\x66\x26\xe4\x96\xc9\xc2\x23\x25\x74\x8e\x39\xf0\xb3\x6f\x63\x74\x78\xfe\x67\x10\x9b\xa2\x28\xb7\xe8\x33\xa6\x0a\x50\x71\xc2\x31\xa9\x12\x2c\xb7\xc4\xaa\x30\xca\xb0\x82\x59\xd5\x19\x32\x6d\x57\x5e\x71\x5f\xb1\xd6\xd6\xb8\xb8\xac\x72\x79\x6b\x46\xc9\xaa\x07\x47\xae\xb3\xfb\xa3\xcb\xf3\x35\x76\xad\xbc\x98\xd1\xdd\x14\x9b\x59\xe3\x4e\xc1\xcb\x7a\xc0\x9b\x37\xbb\xda\x62\x69\x5a\xd9\x90\xb3\xf8\xfe\x45\x1e\xbe\xcb\x10\x67\xa8\xad\x54\xa4\x66\x24\xe4\x16\xd2\xbe\xb0\x02\x80\xc7\x5f\x39\x4d\x4e\x31\x77\xf1\x8f\x9c\x86\xad\x7c\x2d\x5a\x89\x1e\x09\xcc\x40\x9b\x6e\xa0\x72\x6a\x62\x8d\xa4\xd0\xa8\x9d\xdb\x7f\xa6\x60\x10\xe2\x60\x90\xf9\x40\x33\x41\xf0\xc4\x11\x53\xd1\xe4\x99\xa4\x10\x10\xc4\x4e\xf8\x8f\x15\x29\xa7\x45\x22\xff\xdb\x5d\x7e\xf4\x06\x84\xcb\x31\xc4\x60\x30\x98\x32\xac\x74\x5e\x5c\x3a\x6d\x73\x28\x53\x8a\x28\x38\x85\x45\x4c\x67\xf2\x25\xaf\xb7\x16\xb8\x0b\xab\x32\x9a\x17\x95\x94\x2c\x6e\xc9\xa8\x2a\x74\x17\x58\xeb\x46\x8a\x8a\x47\xeb\xac\xf7\xf9\xdd\x2e\x5f\x89\xdb\x55\x12\x9b\x93\x95\xe9\xcc\xc9\xca\xca\x46\x25\x79\x1d\x1a\x4d\xbf\xdf\xdb\x8e\xfd\x16\xf8\x1f\x7f\xbf\x46\xd3\xe9\x75\xb7\xe6\x26\x25\xe5\xb6\xf2\x4b\x32\x1c\x8e\x0c\x7b\x4e\x0e\x5c\x9d\x96\x69\xb7\x9a\x1d\x0e\x3a\xfe\xf9\x17\xbf\xa3\xfd\x97\x04\xd2\x09\x66\x20\x39\x21\x8a\xc8\x3f\x72\x0a\x93\x50\x7f\xcb\x25\x10\x09\xbd\xcb\x43\xe4\x9f\x30\x05\x71\xfd\xe0\x1f\x0b\x7a\x4b\xcc\x92\xe4\xa6\x8c\x0d\x3b\xc8\xd8\x97\x8e\x35\xa5\x17\x2c\x3d\x3a\x2f\xf2\x3e\xab\x37\xd2\xef\xd2\xd8\x92\xa3\x0b\x76\xc9\x2d\x7e\x47\x42\xca\xee\xf5\x79\x23\x0d\x76\x0b\xd6\x0b\x72\x96\xdc\x3b\x37\xfb\x20\xaf\x55\x96\x57\xf9\x55\x46\x47\xa2\xa7\x9c\xae\x7b\xb4\x9d\xf9\x25\x93\x35\x89\xf3\xa3\x83\xfe\xcb\xc0\x1c\x74\x2b\xda\x7e\x4c\x18\xeb\xd7\xd8\x0a\xe6\x1d\xc9\x41\x5c\x46\x0d\xf4\x78\x4f\xc2\xcc\x94\x32\x04\xc8\x9e\x84\x25\x8d\x54\xac\x69\xb0\x7b\x83\x50\x0e\xda\x95\xe8\xd3\x2f\xbf\xb9\x6d\x63\x92\xb3\xcc\x6c\x2a\x75\x24\x25\x39\x4a\x4d\xe6\x32\x67\xd2\x90\xd3\x68\xc8\xca\x32\x18\x9d\x92\x83\xa7\xde\x33\x95\x64\x6a\x34\x99\x25\x26\x93\x2f\x23\x3e\x3e\xc3\x67\x32\x3a\x1c\x46\x73\x76\x36\xed\xa3\x6f\xd8\x2d\xcc\xab\xdc\x2b\x84\xbb\x12\xf7\x51\x74\x18\x0b\x11\x59\xa3\x4e\x25\xa3\x37\xe3\x9d\xc2\x49\x21\xdb\xe8\xa9\xde\xa7\x5f\x9a\x71\x82\x51\x24\xea\x63\x1a\xd4\x89\x9b\xd9\x23\xd0\xa0\xe4\xff\xb8\x41\x97\x97\x65\x8e\x32\x8d\x7a\xd7\x08\x32\x7d\x98\xfd\x2d\xf3\xb1\xe4\x5d\x92\xdb\x1c\xdf\xcb\xa1\xbf\x8a\xec\x54\x4c\x98\xf3\x25\x93\xd6\x7c\x22\xdd\x3f\x4e\x9f\xb1\xa2\xa6\x66\x45\x8b\xfd\x91\xe8\xd4\xdc\xb4\x34\x4f\x6a\xf4\x75\xf1\xe9\x85\x86\x34\x6f\x96\x43\x97\x62\x1b\x8e\x4b\x2f\x34\xea\x72\x73\x30\xa7\x44\x3a\x77\x3c\xbb\x25\x5f\xa7\xcb\x6f\xc9\x16\x65\x2c\x8c\x34\xf8\xb3\x93\x54\x1a\x55\xb6\x51\x63\xf0\x3b\x53\xe8\x2b\x00\xe1\x05\xac\xb5\x7e\x01\x9e\xbe\xaa\x0f\x5f\xa2\xa2\x9c\x25\xe8\x8b\x33\x67\x70\x49\x0d\x5d\xa7\xa3\x7c\x3f\x93\x0a\xfc\x40\x83\xc7\x2b\x84\xe2\x32\xb1\x4e\x20\xba\xa6\x27\x35\x2d\x33\x9a\x99\x53\x9b\xa5\x32\xf9\xbb\x9c\x35\xfd\x49\xa9\xf2\x5c\x63\x8a\x25\x2e\x24\x56\x6b\x55\xf9\x35\xbe\x8a\x6a\xbd\xab\xc9\xad\x49\x8a\xda\x27\x91\x47\xaa\x92\xa3\x12\x32\xad\x69\x0a\x00\x61\x13\x5f\xcb\xd8\xc0\x1b\x40\x41\x4e\xe8\x04\x2e\x19\x02\x01\x44\xc4\x8c\x02\xd1\x12\x31\xe5\x83\x4e\xcc\xf3\xed\x36\xb2\xb8\x82\xc6\xcb\x23\xf7\x19\x9b\x90\xa1\x53\x1b\x19\x0c\xd9\x7f\x83\xff\x8f\x10\xaa\x7f\x9a\x04\xb4\x75\xb4\x43\x19\xd1\x73\x7a\xf8\x1a\x76\x1e\xdb\x00\xf2\x40\x13\x18\xc6\x73\x6a\xa0\xad\xbc\xc8\xad\x21\x73\x4a\xaf\x0a\x62\x3b\xcc\x12\x21\x00\x41\x94\xc6\xa2\xd6\x23\x2c\xde\x49\xce\x1e\xb5\x0e\x52\xd8\xf1\x54\xb5\x4e\x3f\x1d\x56\xcc\xce\xdb\xed\xf5\xad\xb8\x6f\x76\x4b\x79\xb4\x52\xa1\xcf\xd0\x1c\x3f\xf1\x76\xf5\xde\x5f\x6d\x5e\xf1\xd4\x9a\xe2\xa4\x6c\xbf\x31\x4e\x83\x7b\x47\xdd\x35\xbb\x64\xe5\x7d\x73\xda\x6a\xe1\x58\x60\x87\xda\x16\x6b\xcc\x4e\x2e\xee\x2b\xa9\xc3\x29\xff\xe5\xd6\x4a\x17\xff\x66\xb2\xa7\xd1\x91\x55\xef\x49\x4a\xc6\xbc\x95\x59\x0d\xb8\xc9\x47\x66\xcc\x57\xd5\x6e\x1b\xf2\xc6\x44\x5a\x12\xd5\x49\x31\xd2\x1b\x0e\xe5\xaf\x1f\x2e\xb1\xd7\xcd\xf6\x64\x34\x14\x3b\x62\xd4\x05\x66\x63\x81\xc3\x1c\xed\xb8\xa3\x4f\xd5\xb4\x7d\xc0\x1d\x7b\xfe\x03\x86\x55\xd4\x64\x25\xe5\xa4\xa9\x93\x33\x73\x35\x1a\x5b\x8a\x1c\x3d\x99\x5a\x92\x9d\x9c\x9c\x5d\x92\xaa\x32\x94\x38\x12\x13\x1d\x25\x06\xa2\x37\xf2\xaf\x33\x3f\x30\x7e\xa0\x24\x7e\x0c\x40\x74\xeb\xe9\x3c\x78\x8f\xfe\xeb\x72\x02\xbc\x7f\x31\xfe\xcb\xb8\xef\x88\xae\xf5\x1b\x00\x98\x14\xee\x0f\xc1\x75\x14\x29\xa3\xbe\x1a\x6a\x5d\xd3\x41\xc1\xc9\x4b\x7d\xbc\xbf\x41\x25\xe7\xf8\xe3\xb0\xa0\xaa\xc4\x5f\x5d\xed\x2f\xa9\xa2\xe9\xd9\x97\xc2\x0f\x72\xab\xab\x73\xf1\xaf\xb0\x67\xde\x76\xf1\x9f\xd8\x17\x16\x47\xeb\x15\x49\xe5\x85\x3c\xd8\xd3\x93\xb8\x47\x34\x3b\x16\xfb\xfb\x12\xdd\x0e\x9b\x3c\xb6\x62\x7b\x45\xff\xc6\x06\x9d\x24\xee\xfc\xac\xf2\xae\x9c\xd8\xd0\xa8\x68\xe9\x2d\xda\xe4\xcc\xa1\x5b\x17\xb0\xd7\x13\x1f\xfd\x8b\xb8\x6e\xa9\x38\xc6\x5e\x02\x14\x80\xbc\xaf\x04\x80\x75\xd3\xf7\xf1\xd8\xd2\x8d\xa8\x0d\xbd\x8d\xdd\x37\x91\x7b\x19\x02\x96\x21\x42\x5f\xa4\x96\x14\xb6\x03\x00\x34\xf1\xf2\x28\x21\x40\x5e\x42\xa0\x2f\x93\x66\x23\xec\x44\x0a\x12\x80\xe9\xe1\xdd\x67\xe0\xbb\x7d\xf7\xaf\xad\xac\x5c\x7b\x7f\xdf\x97\x5f\x66\x08\xa8\xfb\x8c\x2f\xe1\x0d\xfc\x7c\x76\x1f\xcc\x19\x3a\xd0\xd3\xb5\x67\x20\xfb\x04\x8c\xcb\x28\xb5\xda\x2b\x9d\x89\x50\x38\xfb\xd7\xf0\x75\xec\x18\x5b\x03\x6c\xe2\x79\x52\x41\x34\x53\xb5\xc2\x09\x15\x98\x33\x45\x95\x2d\xe0\x2f\xb0\x45\xc8\x6c\x86\x7a\xc8\x10\x35\x55\x42\xdc\xfc\xbf\x6a\x5c\xd2\xe8\x8c\x1a\x38\xf3\x2f\xfe\xe0\x1f\xe3\xf2\xed\x52\x09\x2b\x91\x85\xc6\xb8\x54\x45\xfd\x35\x1e\xe5\x32\xfe\x9b\x7f\xc3\x7d\xcf\x86\xeb\xd3\xdd\x29\xe1\xd6\x08\x46\x53\xc6\xd6\x78\x5a\xfa\xd3\x7e\x07\x7f\x17\x70\xf3\x0e\x6f\x35\x0b\x21\x3c\x2d\x95\x20\xc6\xd1\x3c\x37\xff\xdf\x81\x6f\x18\x16\xee\xd4\x7a\x2c\x71\x0c\x7a\x56\x26\x62\x46\x00\xbb\x9e\xe4\xde\xa2\xbe\x5a\x8b\x8e\x21\xf2\x91\x36\x3d\x9b\xbd\x24\xec\x55\x27\x84\xbd\x4e\x89\x5c\x86\x7b\x79\xf8\xc2\xb7\x10\x60\xff\x4a\xb7\x3b\x4e\x12\xad\x51\xf2\xe7\xd5\xf1\xe1\xcc\xea\xb1\x57\xee\x3f\xb0\x89\x80\xa2\x9e\x46\x6d\x81\x87\xb8\xe3\x7f\xf9\xf5\xaa\x3b\xb3\x62\xcb\xba\x16\x16\x2e\x8b\x2f\x28\x70\xc5\x68\x14\xe5\xd5\xa5\xf2\xb1\xc5\xd7\xfc\x6a\x7c\x81\xb3\xad\x40\x47\xfa\xe7\x56\x5c\x8f\x13\xb8\x1e\xd4\xb6\x1b\x1a\xcc\x00\x06\xa8\xd1\x49\x48\xfd\xc5\x4d\xd0\xea\x89\x41\x52\x22\x25\x8a\x60\x77\xde\x7f\xee\xdc\x42\x78\x03\x54\xf2\x39\xf0\x33\xfe\x23\xb4\x24\xb0\x5f\x88\x31\x0c\x94\x04\xa2\x70\x3b\x77\x61\x4c\xd8\x32\x3c\x7f\xe3\x81\x11\xb7\x33\x35\x51\x2e\xcc\xdf\xc9\x89\x17\x84\x1f\x5d\x3a\x9d\x77\xa1\xc2\xa4\xac\x12\x43\x72\x49\x61\x8e\x5c\xa3\x2e\x6d\xea\x4a\xaf\xdf\x31\xe4\xe5\x9f\x82\x65\x93\x13\x3c\xe0\xc8\xad\xb6\xca\xa5\x61\x11\xdc\x83\x91\x71\xd1\x21\xd6\xde\x83\x73\x91\x74\xca\x8c\x87\xe0\x2e\xfc\xec\x0d\x12\x00\xe2\xc9\x19\x97\x8e\xbd\x8e\xb9\xfc\xb9\x0a\xdd\x5d\xc8\x95\x9c\xe2\xae\x30\xa7\x94\xfa\xdc\xf8\x61\xe5\x2d\xbd\xf6\xe6\xbd\x23\x05\xf1\xfc\x49\x09\x38\xbf\x34\xbf\xd6\x2e\x97\x85\x85\x0b\xcf\xb0\xcd\xbc\x61\x3e\xf3\x1a\x9d\x57\x78\x71\x32\x7c\x10\x8f\x15\x42\x7c\x95\x1e\x1d\xb5\x67\x10\x7f\xc2\x27\x30\x81\x7f\x05\x25\x47\xc1\xf0\x0b\x9f\xbd\xc6\x9c\x5e\xf4\xfb\xd3\xe7\x55\xaf\x01\x04\x36\x5f\x3c\xcc\x2e\x66\xbf\x00\xc5\xa0\x09\xf7\x45\x85\x2f\xc7\x42\xc6\xdc\x24\x84\x5d\x88\x9c\x0a\x82\xdb\x45\x8d\x8d\x91\x53\xeb\x69\x36\x9b\x26\xc8\xe1\x54\x6a\x25\x55\x36\x5c\xe2\x89\x8a\x79\x4c\x16\xca\x68\x07\x0a\x4a\x87\xcb\xf5\xb9\x43\x3b\x9b\x5b\x42\xb7\xcc\xef\xda\xd6\x61\x45\x10\xb9\x06\xb6\xb7\x6a\xf2\xdc\x99\x31\x39\xf1\xc5\xe5\x15\xda\xeb\x7e\xbd\xb5\x84\x81\x4c\xf9\x9e\xb7\xb6\x77\xde\xba\xcc\x1f\x2d\xe7\xaf\x4f\x72\x18\x13\x24\xb9\x99\x0d\x79\xda\x88\xe4\x4c\x28\x89\xb4\xc6\xe9\x73\xec\x8d\xf3\x8a\x6a\x57\xcd\xb0\xcf\x5b\x52\xba\xe1\x67\x4b\x0a\x30\xa3\x53\x51\x48\xb4\x32\xe2\x36\x45\xa2\x22\x64\xf6\xe3\xff\x3a\x60\x3b\x70\xee\xf8\x2c\xe7\xdc\x23\x8b\xf8\x7d\x19\xc3\xa6\xc8\x9b\xa3\x12\x52\xe4\xef\xcb\x8d\x45\x76\xad\x27\x4d\x1d\xe4\xa5\xc0\xb8\xca\xdb\xf0\xfe\xef\x00\x7e\xdc\xd6\xfc\x6c\x8d\x54\xd0\x91\xb1\xc9\x51\x6c\xeb\x55\xe3\xd7\x94\xe2\x0b\xd2\x4a\x39\x7b\xdb\x23\x86\xfe\xe5\x7b\x9b\x06\x8e\xae\xad\x54\xbb\x3b\x4b\x1c\x95\x19\xaa\xf2\x95\x77\xcd\xec\xbf\x63\x49\xf1\x99\x44\x67\x95\x2d\xbd\xda\x95\x9c\x90\xd3\xe8\xca\x9b\xe9\xd7\x1b\x4a\xfb\xbc\x9a\x02\x8f\x3d\x92\xf1\x3f\xcf\x03\xad\xd7\x1a\x9f\xbb\xf0\xce\x61\xd7\x48\x77\xb5\x3a\x1e\xe3\xe2\x6c\xc3\xb7\x8e\xba\x0a\xe7\x1f\x6c\xcf\xaa\x73\x27\x25\xe7\xce\xc8\xc9\x9e\x51\x98\xfa\x7c\x52\x41\x4f\xb1\xb7\xc3\x9b\x14\x12\x85\x41\x50\xc1\xdc\xb9\xab\x70\xfd\x0f\xe0\xfa\x67\xe2\xf1\x8d\x61\x85\x73\x5d\x74\x0c\xa9\x2b\x65\x2e\x99\xbe\x6b\x93\x7c\x61\x41\x97\x19\x9c\x7b\xee\x1f\xff\x5b\xb7\x6d\xf5\x62\x17\xff\xd9\x13\xa7\xcb\x56\xdc\x3d\xb3\x6e\x93\xb7\x32\xa9\xd3\x93\xd3\x9c\x9b\xa4\x2d\xee\x2b\x5c\x7e\xce\x30\xbb\xdc\xdf\xe5\x89\x63\x5e\x82\x10\x72\xda\xa2\xee\x3c\x7e\xbd\xfa\xbd\x17\xe7\xdf\xbd\x30\x37\x31\xfe\xb4\x5c\x9b\x5a\xd8\xee\xac\x9a\x53\x9c\x74\x1f\xec\xc3\xb0\xbb\xd6\x15\x55\xb4\x4e\xc7\xf1\x7c\x6e\x67\x6f\xc3\x75\x9a\xe5\x8b\x48\xd5\x45\x46\xb0\x10\x65\x42\x06\xa0\x1a\x01\x49\x9f\x08\x20\x02\x88\x46\x8c\xe2\x3f\x2c\x15\xb0\x42\xd2\xcf\x42\xc2\xa0\xae\x9d\xf6\x35\xfe\x82\x04\x24\xd3\x40\xc8\x2a\x8e\x90\xb4\x64\x90\x54\x02\xa9\x44\xf1\x36\x4e\x9c\x9d\x88\x0a\x4b\x5b\x26\x84\x49\xb8\x69\x27\x30\x93\xaa\x0b\x4a\x8f\xaf\xce\x34\x17\xd9\xe2\x36\x2c\x6d\x7d\x2d\xa1\xca\x99\x55\x66\x53\x7e\xf9\xfb\xdf\x95\xaf\x9a\xd7\x67\xfb\x37\x76\xff\xdb\x0b\xe6\x1d\x98\x51\xba\xc4\xf9\x37\xb9\x36\x21\xd3\x6f\x6e\xaf\xbc\xef\x82\x3a\x55\x5f\xdc\x9e\x13\x88\x45\xff\xfc\xf3\x9f\x53\xf0\x7e\xcc\xff\x39\x2c\xa7\x71\x41\x69\xef\xde\x7e\x47\x52\x3c\x8d\x9f\xca\xc4\xd1\x82\x8f\x73\x0f\x22\x09\xb8\x83\xbc\x07\xc1\x1f\xfc\x9e\xa1\xef\xbf\x47\xc9\x6c\x02\xfa\x00\xbf\x8f\xa2\xfc\x62\xef\x01\xc0\x12\x66\x23\xb9\x90\x57\x97\xe6\x60\x07\x1c\x04\x13\x74\x62\x05\x42\x5a\x7d\x19\xed\x0d\x9a\xc6\x50\x97\xa2\xc2\x39\x2a\xf1\x15\xd1\x3a\xb9\x3c\x04\x1b\x68\x05\x38\x93\xe8\x44\x56\xe8\x05\x2f\x32\xde\x1a\xf0\xab\xa3\x6f\xbe\x09\x67\xdf\x78\xe6\x68\x37\x84\xdd\xf7\xff\xf3\xfa\xe1\xf7\x56\x0e\x1d\x1a\x72\x40\xe8\x98\x7d\xd3\xf0\xd8\x7b\x68\xcf\x31\xb4\x16\xce\x7a\xe2\xbb\x1b\x17\xdd\xf8\xdd\xe3\xb3\xd0\x1e\xde\x0d\xcb\xd7\x1f\x5f\x30\x36\xf7\xd1\x8d\x95\x90\xaf\x04\xff\x2f\xa9\x23\x04\x0a\xe2\x7b\xa7\xf9\xac\x87\x7d\xa1\x93\xf9\xac\x05\x42\x4c\xed\x94\xb4\xd6\x52\x69\xd1\x44\x0a\xde\xca\x5a\x16\xd2\xf3\xbc\x66\x6a\x91\xc9\x6f\xc5\xcc\xd7\xa4\x08\x66\xea\x9f\x4c\x7e\x2d\xfb\xaf\xc9\xaf\x1f\xe5\x7f\xb8\x3c\xf9\xf5\xfd\xf7\x9f\x81\x12\xf6\x35\xfe\xfd\x2b\x24\xbf\x7e\xed\xd8\xb5\xd7\xd2\x76\x64\xe3\x76\xdc\x46\xb8\x17\x89\xe6\x21\x85\xa2\x23\x85\xb0\xf3\x50\xe6\xd1\x02\x31\x66\x51\x64\x44\x94\x09\x71\xea\x42\xf7\xba\xa8\x17\x94\x79\xf8\x37\x67\xde\x7b\x8f\x2f\x63\xe7\xf1\x25\xbf\x61\x62\x2f\xfc\x93\x89\x3d\x06\xd3\x5f\x7b\x8d\x7f\x5b\xe8\xab\x2d\x78\x3d\x16\x71\x3e\x60\x06\xeb\x30\x71\x1f\x64\x99\x58\xc8\xb1\xa8\x46\x08\x88\x31\x87\xc1\x50\x10\xba\x44\x4a\x48\x79\xa9\x83\x5f\x46\x9d\xb8\x24\x7d\x61\x31\xa1\x02\xa0\x8b\xae\x9c\xab\xd3\xfc\xb4\x92\x74\x79\xc6\x02\x80\x1f\x66\x36\x19\x09\x61\x80\x91\xd4\x9b\xc6\x74\x90\x3d\x87\x66\x32\xbe\x7c\x73\x73\x91\x5e\x24\xee\x6d\xb4\x06\xde\xcc\x8f\x7c\xf0\x41\x52\x4e\x85\x35\xa5\xb4\x18\xab\x02\x09\xd5\xed\x33\xed\xcd\x3b\x06\x3d\x6f\xbd\xc5\xff\x07\xca\x38\x1f\xff\xc3\x13\xf7\x1f\x7b\xa6\xb0\x29\x4b\x21\x0d\x09\xfb\xff\x34\x77\x15\x80\x55\x1c\x4f\x7f\xf7\xde\xdd\xbd\x84\x02\x25\x40\x08\xc1\x82\x24\x68\x82\x25\x58\x08\x49\x48\x90\x08\x09\x2e\x69\x42\xa0\x48\x79\xb5\x87\x43\x5b\xdc\x5d\xaa\x58\x84\x06\x6a\xa1\xde\x22\x75\xea\xb4\xfc\x5b\xea\xee\x6e\xb8\xb6\x90\xbb\x6f\x6f\x66\xdf\xe4\x36\x2f\x2d\x9f\x7f\x5f\x95\x7b\xf3\xbb\xdf\xce\xda\xec\xee\xec\xee\x9c\x71\xcf\x95\x91\x75\x42\xe3\xc6\xdd\xe9\x7b\xa5\xfc\xde\xc7\xb9\xc9\x30\xa6\x12\x63\xfa\xa3\xde\x96\x5a\x6b\xd1\x7e\x19\xf7\xb2\x34\x7b\x31\x2f\x60\xa1\x4e\x68\x24\x5e\x80\x67\xc6\x25\x26\x8a\x30\x33\xd9\x2a\x9e\x27\x31\x79\x0a\x26\x8b\x30\x45\x6c\x23\x1f\x2b\x31\x63\x15\x4c\x21\x61\xca\xd8\x26\x3e\x5e\x62\xc6\x2b\x98\x76\x84\xf1\x31\x8e\x3c\x5a\x55\x9e\xf5\x84\xd9\xc9\xea\xf0\x77\x25\xe6\x5d\x37\x26\x24\x39\x80\xe1\x87\xed\x3f\xf9\x83\x0e\xc6\x73\x80\x3f\x28\x31\xf9\xa2\x19\xdc\x60\xbc\x2a\x30\x31\x02\x63\xb2\xb9\xdd\x35\x8c\x23\xa5\xc1\xd9\x7a\xd8\xb7\x1f\xe2\x6d\x2a\xe4\x6d\x64\xd9\xac\xe0\xa3\x05\x07\x17\xfa\x8e\x46\x0e\x89\x69\x44\x98\x99\x6c\x3d\x1f\x21\x31\x23\x14\x4c\x7f\xc2\x14\xb1\xdb\xf9\x18\x89\x19\xa3\x60\xa2\x09\xe3\x63\x26\x62\xb4\x4a\xcc\x5e\x81\x89\x80\xba\xea\x20\xf5\xc9\xe1\x05\x92\xa7\x40\xc1\x44\x11\x66\x26\x1b\xc1\xf3\x24\x26\x4f\xc1\x64\x11\xa6\x88\xe5\xf3\xb1\x12\x33\x56\xc1\xb4\x23\x8c\xcf\x3e\x82\x18\x57\x3d\x2c\x13\x98\x74\xa8\xcf\xce\xb2\x3e\xa7\x42\x7d\x72\x57\x7d\xe6\x8b\x31\x77\x9a\xb7\x87\xc0\x74\x91\x3a\xdf\xc2\xa7\xcb\x3a\x9f\xae\x60\x12\x08\x33\x93\x2d\xe1\x7e\x89\xf1\x2b\x98\x71\x84\x29\x62\xab\xf9\x0c\x89\x99\xa1\x60\x66\x12\xa6\x8c\xad\xe1\xb3\x25\x66\xb6\x82\x49\x26\x8c\xcf\xbe\x84\x3c\x5a\x25\xcf\x52\x81\xc9\x82\x3a\xed\x21\x75\xde\xa0\xd6\x29\x61\x22\x08\x33\x93\xdd\xc1\x87\x4a\xcc\x50\x05\x93\x46\x98\x22\xb6\x83\x8f\x94\x98\x91\x0a\xa6\x05\x61\x7c\xac\x36\x62\xb4\x4a\x4c\x1c\x63\xfa\x2e\xa8\xd3\xde\x32\xad\x79\x41\x75\xba\x52\xf0\xa4\x19\xdf\x08\x4c\xba\xd4\xf9\x7a\xd6\x88\x85\x88\xbc\x3f\xda\xc8\x81\x54\x62\xbe\x94\x18\x93\xcd\x9c\x11\x81\x88\x08\x81\x08\xc8\xcd\x10\x92\x17\xdd\xdc\x18\xe5\x8d\xdd\xf2\x26\x24\x2f\xbb\xa5\x19\xca\x9b\xb9\xe4\xc6\xcf\x24\xf7\x1d\x85\xf7\x35\xf5\xfd\x2c\xd2\x71\xa7\x7d\x89\x6d\x42\xc4\x26\x45\x47\xf3\x52\x80\x83\x1f\xfe\xe1\x3a\x07\xe1\x79\xf4\x3a\xe4\x58\x2c\xfa\x6c\xa2\x9e\x2b\xe4\xfd\xb1\xcf\xf6\x55\xfb\xec\x2d\xe2\xfd\x31\xc6\xb7\x42\x3e\x90\xca\xc1\x95\x0b\xc6\x08\xf3\x15\x60\xb0\x1c\x1a\x22\xa2\xa1\x8b\xc3\x0c\x05\x39\x96\x43\x13\x94\x37\x71\xa7\xf1\x0b\xc8\x31\x9f\x20\xd7\x02\xf2\xd7\x9d\xf3\x85\xc6\x6b\x42\xbe\x16\x2e\xf8\xa6\xed\x66\x8c\xd1\xef\xaf\xc0\xef\x58\x8f\x7b\x6c\x0b\xeb\x11\xc3\xd0\x11\xe6\x18\x61\x8a\xd8\xe3\x8c\x63\x0e\x39\xe8\x4f\x98\xb7\x00\x03\xe9\xc7\x00\x42\x03\x84\x6d\xc3\xfa\x2f\x15\xea\x69\x08\xd6\xd3\x9c\x66\xc8\x20\xeb\x69\xaa\x18\xe3\x0a\xa0\xad\x0c\x95\x65\x34\x43\x6d\x2b\x84\xf9\x12\x30\x50\x46\x37\xab\x6d\x05\xe4\x66\x08\x71\x14\xb1\xc5\x6a\x39\x13\xa6\x09\x61\xca\xd8\x12\x46\x2d\x46\x49\xe7\x67\x4a\xc7\x77\x46\x6d\x33\xbb\x84\xbc\x87\x71\x58\xc8\x47\x4b\x5d\x67\x31\x03\x73\x63\x00\x07\x61\x0e\x01\x06\x74\x9d\xa7\xb6\x09\x94\x9f\x26\x8e\x22\xb6\x94\x99\x88\x30\x55\x8e\xf7\x88\xc3\x77\xce\xc4\x32\x35\x91\xa3\xb7\x95\xad\x97\x43\x1a\xf9\xb2\xee\x36\x33\x4a\x05\x39\x10\x03\x1c\xf9\xc8\x51\x43\xe5\x80\x31\xc9\x3c\x47\xe3\x96\xb0\x71\x7c\x80\xb4\x4f\x03\x94\x7e\xfc\x24\xf5\x21\xff\x59\x1d\x4b\x4c\x77\x71\x78\x33\x88\xa3\x84\x85\xf0\x52\xc9\x51\xea\xe6\x30\x4d\xe2\x28\x39\x33\x16\x39\xc0\x70\x6b\x2c\xc1\x1a\xa6\x3f\x0a\xf1\x5c\xa3\x58\xbf\xd4\xbe\x51\xdc\x34\x22\x38\xf3\x5c\xc1\x39\xab\x09\xb7\x51\x65\x90\xa3\x09\x5e\xee\x4c\xaa\xf4\x40\xb8\x06\x98\xcf\x66\x3a\x11\x43\x9b\x35\x15\x2f\x37\x09\x6b\x18\x13\x13\x16\xe2\x9c\xde\xe0\xad\x4c\xe9\xa7\x47\xaf\x13\x7a\xf5\x3d\xe2\x63\x04\x5c\xfc\x47\xfb\x86\xbf\xd3\xcc\xfc\x45\x50\x9d\xcf\xd7\x05\x8c\x1e\x3c\xb8\xbb\x05\x27\xc1\xdd\x3d\x58\x70\x09\xee\xee\xee\xee\x2e\xc1\xfd\x40\xd0\x10\xdc\x9d\x83\x1c\x38\xb8\xbb\xbb\xbb\x3b\xb7\x7e\xef\xbf\xee\xe0\xd6\x9d\x7e\x83\xef\x99\x3c\x5d\xdd\xb5\x77\xaf\xda\xab\x7a\xad\xde\x93\xb6\x34\x73\xb8\x6d\x56\x71\xd6\x6c\xb6\x67\x2f\x0d\xac\x5c\xd2\x26\x67\x6b\xed\x39\xe1\x3a\x86\xfe\xe4\x4c\x3b\xdc\xd8\xf5\x8b\x07\x8d\x87\x15\xff\x6d\x76\xef\x24\xae\xb6\x5b\xf9\x6b\xeb\x91\xd1\x88\x8b\xd8\x99\x78\x5f\xdb\xfa\x93\xf7\xd7\x29\xea\xa3\x68\xd8\x84\xb5\x0f\xb3\x9c\x05\x9f\x9d\xfc\xc9\x50\xc0\x1a\xf1\x8c\xc6\x6c\x26\x0f\x90\x98\x51\xcc\x4c\x94\xfe\x9c\x24\xee\x5a\xb4\xb5\x13\x83\x05\xdd\x59\x31\x5d\x7c\x2b\x2c\xf8\x2a\x9e\x6b\x2d\x66\x08\x0d\x9c\x3d\xca\x89\x50\x52\x8a\x72\x96\x9f\x9c\x92\x8d\x3d\xfb\xad\xbd\x9b\x97\x40\xbb\x9f\x8f\x65\xb9\x5d\xc1\xe8\x1b\x31\x29\x79\x4d\xae\x4e\x99\xb9\x8f\x3b\x9f\x3d\x55\xc6\x05\x6d\xe5\x1a\x47\x35\x4a\xb4\xfc\xf0\x70\x2c\x79\x93\x83\x89\xe7\x05\xdf\xfd\x50\xe5\x29\xbf\xa5\x9b\x83\x57\xe7\x63\x9c\x6f\x35\x31\xe8\xb5\x34\x60\xfb\x7e\xf7\x5f\xaa\xe4\x84\x2f\x69\xe4\xc3\xb9\xba\xef\xa9\xfd\x29\x11\xf8\xbe\x66\xb9\x5d\xba\xa8\x35\xfd\xbe\x23\x0e\x38\xfb\xb9\x0d\x03\x23\xad\x90\x60\xb5\x2a\xf4\xdd\xfc\x62\x09\x98\x37\x58\x4d\x6c\xcb\x45\xcc\xdb\x21\x91\xa9\xa3\xfa\x2d\x56\x24\x2a\xea\x98\xc4\xbb\xd5\xa9\x11\xbb\x3d\x63\x9b\xe0\xb1\x23\x00\x26\x6e\x9d\xad\xbe\xea\x62\x1f\x7b\xdf\x8b\x4d\xa5\x39\x69\x00\x3a\xe5\xcb\x7b\x07\x08\x5c\x69\xa9\x88\x7e\xb8\xd4\xaf\x2f\x48\x15\x55\x16\x25\x34\x5a\x26\x03\xfc\xe6\x40\xc6\x01\xeb\xed\xe4\xd0\x4f\x44\xa5\x64\x9a\x46\x97\xe5\xf5\x53\x9b\x32\xff\xbb\x77\xe9\xf7\x97\x5c\xca\x0e\x03\xa2\x05\x24\x6d\x1d\x44\x51\xae\x76\x9c\x86\x8b\x8c\xe9\x01\xb3\x81\x26\x19\xec\x2d\xad\xfe\x4c\x61\xe4\x03\xe3\xaa\xa4\xfe\x00\xa8\x03\xad\x6c\x5b\x32\xee\xc9\x8f\xfe\x4a\x73\x6e\x9c\x28\x28\x82\xa4\x01\xec\x09\xab\x00\x0b\x60\xf1\x73\x56\xfe\xfc\x81\xbf\xf9\x8b\xff\x7e\x07\x2f\xf3\x59\xb8\x33\xd4\x6b\x75\xf0\xfb\x84\xd3\x24\xdd\x6c\x74\x51\xd8\xfc\xce\x2a\x0d\xc4\x83\x27\xf2\x18\x0e\xed\xac\x23\x7c\x48\xe5\xe8\xe0\xe8\x07\x49\x09\xa3\x7c\x9e\x6b\x12\x59\x59\x74\xd1\x9d\x38\xa7\xcb\x0f\x01\xc0\xc4\xc8\x0f\x43\x22\xe8\xba\xbc\x1f\x63\x85\x2b\x6b\x45\xfa\xc3\xee\x74\x94\x8e\x51\xa2\x91\x3d\xec\x18\xc2\x9f\xc9\xb0\xfe\xc2\x93\x4e\x0b\x5e\x13\xf5\x18\x3e\x6a\xb4\x7e\xc6\x94\xe2\x6e\x6f\xb5\x3d\xaa\x35\x92\x5e\x4d\x5d\x22\x4e\x76\x2f\x2d\x31\x08\x8d\x87\xd5\xe5\x33\x7b\xaf\xf7\x55\xad\xa3\xae\x86\x92\xe9\xdc\x3a\xab\x46\xf7\x5e\x92\xf6\x33\xb2\xae\xbb\xf1\xd2\x86\x0d\xb4\x02\xef\x1f\x78\xb6\xf5\xc2\x52\x77\xaf\xd5\x8a\x93\x4a\xe3\x27\x23\xdb\xd8\x62\x3a\x4c\x13\x59\x74\xa3\x7c\x55\x7f\x05\x9c\x0f\x3b\xe5\x79\x3a\xdb\xb5\xcc\xb2\x68\x73\x31\x48\x8e\x60\x0b\xb0\xbb\xf2\xd8\x0c\x82\x9c\x2d\xb0\x76\x7c\xef\xe3\x94\x14\x65\x12\xd0\xf0\xa1\xc4\x57\x23\xf8\x27\x30\x66\xef\x34\xca\x5a\x5e\xfb\x03\xb6\x99\xae\xf8\xc9\xd1\x61\xd7\x17\x10\xb8\x41\xce\xca\x69\x9d\x6e\x71\x39\xed\x9e\xc3\x3d\xdb\xa7\xc0\x76\x8b\x89\x14\x1e\x3a\xcd\x39\xae\x0e\xb4\xae\x3a\xc7\x8f\xe6\x89\x05\x53\x7d\xe9\xfb\x53\xf5\x50\xc3\xbb\x1f\x34\xfb\xe4\x47\x82\xa5\xe5\xd9\xa3\xcc\xd8\xbb\x9d\x54\x8b\x64\xad\xd5\xeb\xc9\x2d\x8e\xa3\xa4\x9d\xc7\x69\xcb\x29\x6a\x0e\x04\x24\x19\x49\x85\xfb\xd2\x8f\xf9\x99\xaa\x2d\xae\x1b\x41\x0f\xf3\x95\xa4\x31\xda\x4c\xee\xe7\xca\xe3\x7e\x25\x4f\x71\xfc\x86\xdf\x30\x6e\x6c\x0b\x2e\x1b\x53\xfc\x1b\xa9\xff\x5e\x8e\xb5\x48\x1d\xaf\x17\x5c\x9a\xed\xe4\x42\x6a\x26\xde\x7f\x9b\x12\x38\xa7\xd6\x46\xbc\x41\x0d\x5f\x07\xf5\x19\x63\x49\x0f\xd7\x70\x5e\xb4\xf2\x26\x47\x17\xa5\x72\xa9\x9c\x01\x9c\x09\xca\xa2\x8a\xee\xac\x18\xf6\xac\x68\xf8\x2a\x07\x5f\xb8\x58\x23\xa1\xd1\x02\x18\x7c\x27\x7d\x08\xf9\x2a\x33\x70\x85\x2e\x90\x9d\xae\x28\xfd\xc9\x5c\xc6\x24\x12\x4a\x14\x2b\x0d\xe9\x67\x1f\xea\x05\x2d\x10\xd2\x8e\xd1\xb4\x56\xed\xb0\x32\x19\xa3\x09\xc1\xa3\xd4\xa5\xf2\xda\x54\xb8\x33\x44\xe5\x71\xb8\xf4\xfe\x49\x07\x36\xa5\x11\xae\x5c\x3d\x82\xbd\x6e\x8d\x3f\xdb\x61\x28\xc8\x6e\x49\xae\x9f\xce\x13\x9f\x01\xc3\x1c\xa2\x59\xf8\x17\x05\x7c\xf9\x22\x17\x9e\x3f\x96\xbc\xd4\x3a\x54\xf3\x51\x76\xbe\xd5\x89\xec\x94\x24\x97\xa9\x6f\x3f\x87\x7a\xfd\x34\x99\x55\xc9\x71\x6b\x44\xf5\x0d\xb7\x8f\x02\xac\x7e\x35\xd1\x5b\xdc\x6e\xa7\x43\x79\x23\x3f\xea\x0e\x3a\x62\x30\xe0\xf5\x74\xe4\xff\x60\xbc\x31\x33\x23\x0a\x9d\xa2\x2f\xf8\x55\xa0\xf6\x34\x7f\xcf\xc2\x9b\x0d\x5a\xe4\xe8\xf5\x49\x7b\x6c\x4e\x80\x5f\x86\xb3\xc5\x56\xaa\xfd\x30\x17\x7c\x79\x19\x60\x31\x44\x66\x47\xae\x39\xae\xca\x7d\xe7\xf8\xb3\xab\xbc\xeb\xcf\x7b\xca\xfa\x95\x6b\xdd\xbc\x57\x5c\xc2\x9c\x11\xef\x09\x43\xc0\x35\x97\x89\xb6\x66\x21\xaa\xc9\x71\xf5\xbb\xd1\xa0\x4d\x50\xdf\x67\x81\xc3\x54\x33\xc9\xa5\xed\x39\xa2\xc6\x1b\x9b\xf0\x8f\xf5\xea\x8e\xc6\xee\x6c\x12\x2b\xf4\xe9\x00\x29\xf3\x3c\x1a\xe5\xbc\xb4\x95\xfc\xeb\xe1\xfa\x09\xda\x51\xfe\x1c\x4a\x13\xb9\xf9\xe0\x00\xec\x58\xfb\x24\x10\x71\xe3\x82\x20\xf5\x01\x90\x8d\xb5\x6c\x33\x81\xe0\x21\xc5\x9f\x88\xed\xc1\x3a\xba\x6d\x3d\x66\x06\x5d\xec\xed\x8c\x77\xd9\x13\xd8\x62\x20\x1d\x77\xdf\x0e\xc6\xd1\x1e\xbf\x8f\xa7\xc5\xce\x24\x89\xd6\xb6\x27\x4d\xce\x94\xc0\xba\x2d\x98\xf2\xce\xd4\xc4\xce\x4c\xe0\xf5\xac\xf5\xbd\xa1\x2e\x57\x4a\xee\xc8\xf3\xa6\x43\x96\x67\x36\x59\xf2\x17\xb3\xbf\x16\xab\x08\x15\x46\xb9\x3b\xa6\x9f\xf5\x19\xf6\x31\x2c\xbd\x0f\x08\x82\xc4\xe0\xbe\x47\x42\xa1\x9b\x04\x34\x0a\xff\xce\x44\x5f\x7b\x21\x48\xc4\x4c\x4c\xe4\xf0\xcd\x19\x7b\xe5\xce\x10\x0e\xcc\x86\x47\xbe\x7a\xe2\x74\x20\x4f\xcb\x2c\x42\x42\x3f\x09\x7d\xb0\x56\x08\x97\xaf\xd8\x81\xc1\x9f\xe4\x4f\x81\x42\x37\x7a\x7a\x88\x71\xa4\x39\xd0\x1d\x60\xc1\x92\x0c\x48\xca\xb2\xfb\x39\xe5\x43\xba\x60\x35\x98\xd1\x28\x95\x73\xec\x39\xde\x4d\x82\x56\x11\x0f\x44\x6b\x77\x4b\x7f\xee\x5e\xe5\xa7\xbc\xf5\xa7\xee\xa1\x18\x61\xf9\x35\x09\x87\x06\x16\x2c\x48\x27\x3f\x4e\x96\x6c\xc7\x59\x05\xfd\xeb\x26\xd3\x61\x89\xf8\xcd\x3c\x40\x97\xea\x9d\xd2\x85\xb4\x87\x99\x9a\x50\xb3\x43\xb8\x9a\x6e\x6e\xc9\x10\x90\xc6\x30\x54\xb3\x63\x49\x06\x64\x39\xd4\x78\xc6\x0a\xb5\xed\xa2\xb3\xae\x3a\x04\x15\x57\xdb\xff\x36\x65\x74\x4e\x65\x8d\x17\xf9\xc6\x07\x74\x73\xcd\xa4\x75\x4e\xd5\x2b\x66\x8b\xe0\x5d\xf0\x86\x60\x43\x98\x9b\x55\xee\x2f\x65\x12\xcc\x2d\xe8\x9d\xbe\x5a\xd0\x14\xfd\x2a\x6b\x1c\x5e\x25\x01\x75\xb7\x00\x7b\xa8\x87\xf8\x73\x07\x5d\x8b\x99\xf9\x86\xfa\x3b\xbe\xc8\xd3\xce\x6d\x7f\xa9\xec\x57\xb1\x21\x75\x68\xe0\xe7\xf5\x85\xe9\x09\xbe\xbf\xfd\x32\x97\xa8\xa1\x2d\xd2\x19\xd1\x63\x26\x4e\x9a\x20\x1a\xe7\xaf\x58\x25\x31\x43\x43\xe8\x55\x8b\xa6\x24\xf6\xb9\xa8\xf7\xfe\xa9\x29\x8d\xcf\x11\xe6\xf6\xed\xe3\x47\xde\xab\x62\x73\xe2\xc9\x6d\xef\x84\x1b\x95\x48\x09\xf9\x2c\x05\xf9\xea\x79\xa1\x1e\xbc\x78\x80\x94\x49\x40\x69\xf9\xb3\x58\x82\x73\x32\xcc\x7b\x26\x07\x35\x04\x85\x27\x92\x50\x9c\x44\xd2\xb5\xe2\xc8\xf8\x7e\xe6\xb0\xff\x69\x1d\xf5\x9d\x87\x6a\x72\x34\xdd\x8d\x2c\x86\x8c\x17\xd6\xa2\x00\x28\x47\xe2\x2a\x00\x6f\x0c\xab\x04\x7b\x6d\xb4\x4c\x56\x67\xf0\x7b\xff\x01\x7a\xb9\xe3\xcb\x8e\xd8\xd8\xfb\x77\xa9\x71\xec\xf1\x1a\xe6\x8c\xb2\x1d\x35\x1b\x60\x7b\x4c\xb7\x0e\xec\xfd\x9a\x7e\xe9\xed\xdf\x15\xcd\x3f\x22\x2d\x4e\x0f\xb8\xb0\x16\xa9\x60\xad\x05\x62\xac\x5b\x78\x13\x58\x25\xf8\xeb\x02\x91\xec\x4e\x9c\xdf\x13\x04\x0c\xb3\x6d\xd2\x85\x4d\x07\x89\x05\x9d\x15\xf8\xfb\x1b\x41\xe3\x32\x15\xf2\xa1\xde\xcb\x7a\xcd\x24\x23\x48\x0f\x0a\x9d\xd6\x3d\xb1\xe7\x90\xea\x93\xc8\x30\xff\xc4\xc8\xf1\x43\x6d\x51\x11\xf2\x4d\xc8\x85\xe4\x83\xef\x9f\xa9\x61\x4d\xbe\x18\xbf\x34\xf3\x4a\x99\x2c\x9e\x24\x72\xb8\x05\x96\x22\x1a\x0b\x42\x64\x49\xa0\x72\x38\x44\x50\x4a\x30\x60\x21\x88\x4e\x0e\x68\xc6\x93\x58\x97\xf2\xc6\x16\x70\x0a\x4b\x79\x86\x8d\xd6\x57\xa2\xf4\xfd\x3a\xb5\xd6\xa9\x5b\xf2\xc6\x4e\xc5\x4b\x11\x4b\x49\x56\x12\xde\x26\x85\x02\x00\xae\xcb\xe5\xf5\xa8\x2f\x7d\x43\x3d\x0e\xf4\x97\x18\x56\xe3\xd9\x59\x2a\xdf\x0c\x09\xc8\xd3\xfd\xce\xf7\xb3\xf3\x18\x5c\x17\xbb\x5e\xf5\xe2\x44\x03\x41\xda\x45\x71\xfa\x6a\xc1\xe5\xea\x1d\x69\x74\x69\x5d\xde\xa4\x38\x89\xe5\x5a\xc3\xcb\xcd\xdd\x34\x98\x96\x6b\xed\xce\x5b\xb3\xf6\x85\x1b\x75\x7c\x57\xb6\x30\xd1\x6d\xeb\x84\x96\x5c\x93\x27\x5e\x8d\x2a\x38\x38\xb1\x22\xc6\x85\xfb\xd0\x86\x83\x96\x77\xd7\xa4\x8f\x18\xec\x76\xd5\x67\x9e\xb3\x02\xb4\x49\x17\x16\xe2\xe7\x37\x6c\xa8\xa2\x43\xff\x36\x37\xcb\xc1\xb9\xc1\x6f\xfa\x73\x93\x99\x34\x2d\x5a\xb1\xe6\x1b\xfa\x5a\xea\x60\x93\x08\xe7\x86\xe0\xb7\x1a\x4f\x55\x31\x17\xd7\x6a\x44\x1e\x85\x8c\xed\x9c\xc3\x03\x2e\x07\xb6\xe2\x22\xdb\x76\x0e\x5e\xdd\x49\x9d\xe6\xc5\x4b\x3e\x97\xf2\x58\xde\x40\x52\x7c\x1e\x37\x9d\xf6\xc3\x2f\xbb\x76\x19\x99\xa0\xf8\x39\x6c\xed\xca\xa5\xdb\xea\xc5\x84\x53\xe0\x12\x7c\x76\x69\xa4\x4b\xe9\xfc\x56\xee\xb1\x4b\x43\x15\x5b\x04\x45\x49\xee\x94\x0d\xb3\xda\x5e\xcb\x3f\xce\x7e\x26\x5c\xdf\x0d\x13\x86\x7a\x7f\x79\x14\x3d\xd6\x2a\x07\xd5\xc5\xd2\x6c\x74\xa7\xf0\xe3\x5f\xef\xec\xa1\xec\x36\xf7\xf4\xdd\x3e\xe0\xf6\x68\xa1\x04\x69\xb7\x89\x23\xfe\x00\xc5\x06\xec\x5f\x7e\x2c\xb1\x3b\x8b\x28\xc3\x72\x99\x1f\x43\x82\xf6\xce\x03\x7d\x6b\xb6\xc9\x94\x0d\x6a\x42\x67\x3b\xb6\xcd\xe7\x71\xcd\x2f\x64\x04\x9e\xbe\xb2\xba\x6d\x5f\xad\xd6\xe2\xf1\x32\xd7\x6b\x15\x27\x25\x74\xbd\x63\x57\x36\x7b\x2f\xd1\x49\xba\x60\x02\xe4\xc2\x43\xfd\x12\x7a\x92\x58\xd8\x74\xd5\x37\x69\xaf\x1b\xa9\xc8\xf2\xfd\x99\xad\x58\x2c\x93\x7b\x70\xfa\x02\xa4\x66\x36\x2f\x2c\x2b\xf1\x33\x93\xb6\x60\x98\x7e\x67\x62\xcd\x23\xfc\x14\xac\x03\xab\x8d\x50\xfe\xca\x8b\x3e\x94\xdb\x0a\xe6\x32\xa8\x58\x19\x52\xd5\x05\x44\x51\xc5\xf3\xc6\x68\xb7\xda\xd4\x44\xed\x72\x3a\xe3\x48\x97\x9b\xe3\x53\xed\x3d\xf6\x90\xd8\x25\xcd\xdd\xbf\x16\x08\x8d\x6a\xd1\xd1\x32\x9c\xc1\x30\x66\x64\xaa\x2e\x28\xd7\x7a\x19\xd1\x01\x6e\x67\xfb\xbb\x75\x0d\xd1\x5c\x93\x69\xb0\x38\x10\xec\xe2\x20\xe6\xa6\xa5\x2b\xae\xe0\xce\x03\x8e\x60\xed\xf0\xdd\x83\xad\x97\x21\x55\xf2\x43\xa5\x1a\xbe\xd7\x4b\xa3\x16\xcf\x10\x7b\xff\xd9\xf6\x51\x60\x44\xfb\xd2\x6c\xd0\xee\x66\x78\xd2\xe3\x97\xe1\x8f\x5b\x1e\x90\x10\xa3\xfd\x8e\x71\x7d\x34\x06\x4f\x6f\x9d\x67\xa7\xd6\xcb\x68\x59\x03\x1a\xaf\xc4\x09\xe0\x6b\x1f\x09\x0c\xca\x91\xaf\x9a\xee\x8f\x46\x38\x7f\x15\x07\xa9\xe4\x4e\x2b\x15\xc6\x11\xd3\xf5\x1b\xde\x9f\x45\x71\x4c\x16\x79\x18\xd3\xb2\x0a\xbb\xd0\xce\x4f\x8a\x30\x91\xa5\x2e\x7b\xd8\x10\xc5\xc1\x65\xc5\x1f\x67\xea\xbc\x9d\x4d\xd0\x24\x6f\x57\x8e\xb5\x09\x8f\xb0\x0b\xd7\xbb\x95\xdd\x8a\x28\xb0\x14\x2c\x03\xd7\xb5\xe1\xec\x0c\x70\x68\xad\xb7\xe8\xfb\xce\x2d\x8c\x89\x2a\xca\x64\x82\xca\x64\x61\x7c\xf0\x04\xf4\x89\x75\xf6\x98\xc1\xfb\xc1\x2e\x1c\xc9\x7b\x92\x29\x26\x2a\x64\xa7\xc9\x12\x06\x2a\x17\xaf\xb0\x7b\xa9\x9a\xad\x20\x07\x3f\xa6\xbd\xc7\x20\x41\x7b\x05\xea\x6e\xf2\xe3\xf4\x40\x8a\xfd\xd6\x96\x29\x00\x26\xaa\xb2\x74\x34\x5b\x57\x54\xd2\x7b\x27\xa6\x09\xd1\x37\x82\x5d\xba\x9f\x10\x4d\x18\x0c\xa2\xaf\x61\x24\x17\x66\x12\x5d\x69\x29\x2c\x85\xd8\x4e\xca\x5d\xdb\xfa\xb6\xbb\x9d\x3d\x67\x49\xfb\x4d\xbf\xdd\x7b\xdb\xcf\x0b\x4d\x26\x30\x2c\x68\x75\x7b\xf9\x29\x4b\x8b\x42\xd8\x8a\xbe\xa8\x51\xfb\xd8\x69\x82\xdd\x7e\xb1\x5d\x87\x7d\x33\x25\xd6\xe2\x01\xbb\xa9\xcd\xd6\x03\x60\xbc\xc5\xf1\x50\xb5\xc2\x48\x2e\x06\x43\xde\x54\x18\x57\x51\x85\xd8\xa4\x85\xd6\x6f\x62\xe9\xa5\x3b\xe0\xad\x9d\x7e\x4a\x98\x8c\x2d\x44\xf5\xfa\xeb\x2c\x20\xb3\x75\xa9\xc7\x89\x1d\x3f\xd9\xc0\x88\xc3\x84\xfd\xee\xf7\x57\xb1\x92\x50\x32\x21\x6e\xd7\xb0\x97\x58\x22\x37\x28\xf9\xd8\x02\x11\x24\xf0\xa1\x7a\x3e\x46\x7e\x49\xce\x78\xdb\x97\x6e\x23\x7f\xb4\x2b\xac\x32\xc6\x40\xdf\x77\x7c\xb4\xeb\x5c\x63\x8d\x27\x0c\xce\xcb\xf9\xbc\x03\x2a\xe4\xe0\x19\xac\x35\x3c\x47\x81\x16\xdb\x46\xbc\x78\x79\x7d\x51\x06\x7f\xc9\xe2\x51\xfc\xca\x0d\xfa\x7e\x62\x95\xd9\x4e\xbd\x8d\x8f\x69\x59\x52\xc8\x17\x48\xf8\x4a\x06\xa6\x0f\xf6\x50\x8d\x31\x67\x5f\xb6\xa6\x21\xd1\x95\x15\x75\x90\x4a\xea\x3c\x8a\xa8\xa6\xbf\x3c\x49\x8f\x4c\xee\xbc\x7b\xfc\x91\x4a\xa7\xf1\x19\x70\x3d\x79\xf2\xaa\x4b\x9a\x83\xf4\xee\x41\x37\xa2\xf9\x87\x54\xed\xf5\xbc\x62\xce\xf1\x7d\x33\x6c\xf7\x75\xfb\x22\x80\x5c\xec\x26\xb9\xe6\x9d\xfe\xb1\x63\x9f\x2c\x39\x23\x20\x3f\xe8\x06\xf6\xae\x24\x7a\xd2\x56\xa2\x33\x09\x8f\x91\x86\x6b\x78\xbf\x84\x3d\x8b\x07\x7c\x67\xa0\xf0\xf1\xf0\xf9\x2f\x23\x2f\x24\xa5\xf2\xcb\x43\xfd\xe7\x01\x92\x26\xd6\x5e\x1c\x12\x98\xa5\x7c\x70\x10\x37\xb0\x6a\x85\x37\x4a\x1a\xda\xbc\x2b\xf6\xc1\x57\xbf\x64\x9c\xc0\x38\x9b\x12\x7e\xe1\xa0\x01\x83\x6d\x74\x1c\xf3\xe7\x8d\xaa\x6e\xd5\x24\x71\x25\x3d\xdd\x01\xe2\x88\x71\xfc\x9d\xdb\xef\x40\x24\x93\xd8\x20\x60\x47\x09\x99\x27\xc7\x8c\x7a\x5d\x5a\xfc\xb0\x46\x7a\x74\xfa\x14\x0e\x9b\x02\x6e\xdc\x35\xec\xf2\xcf\x40\x7d\x74\x4a\x41\x68\x31\x12\xf8\x61\xb9\x3e\x24\x65\x83\x20\xf7\xd7\x04\x2e\x14\x93\xe4\x46\xa3\x2e\xd5\x0e\xcd\x17\x59\x42\xe4\x5e\x64\xe7\x4f\x54\x03\x55\x24\x23\x93\x3c\x54\x0f\xee\x74\x35\xf9\x14\x1b\xbf\x38\xb2\x83\x91\x5d\xd9\x11\x09\x6b\x2f\xb9\x31\x09\xb9\x21\x2a\xb0\xa8\xf7\x84\xdd\xd7\xbd\xc7\x9f\xa0\x1d\xf1\x05\x34\xcc\x73\xe8\x7d\x75\xda\x85\xe6\x96\xfe\xdc\x5d\x61\x6d\xba\xdb\xf9\xa6\xaa\x3b\x63\x3c\xa2\x4d\xe4\xb1\xf7\x19\x72\x02\x7c\xf5\x8d\xd7\x4a\x0f\xc5\x5c\x2c\x30\x40\x09\x78\x5f\xbd\x97\x64\xd9\x6c\xc6\x98\xa2\x10\x76\x5d\x37\xb0\xa0\x17\x9d\x55\x61\x14\x15\x99\x56\x9f\x19\x83\x03\x56\x2f\xfe\x0a\x0f\xe1\xab\x1d\xd8\x0f\x76\xc5\x1b\x33\x8f\x27\x34\xaa\xd4\x50\xf4\xc3\x02\x07\x09\x8b\x68\x45\x9a\xeb\x44\xae\x0b\x5a\x50\x1b\x15\x28\x81\xff\xf9\x43\x43\x4a\xfb\x39\xb9\x9f\xbb\x4e\x80\x88\x43\xe3\xa5\xd4\x2c\x6c\x96\x7f\xfc\x34\x4a\xfc\x52\x96\x49\xf6\x6b\x69\x3b\xe3\xa5\x78\xca\xe9\x06\x8f\x83\xae\x4f\x29\x1a\xff\x9c\xeb\x51\x15\x53\xb5\xac\xf0\x39\x0b\x2a\xa3\x3d\xb7\x92\x8d\xfc\x2a\x72\x49\x23\xb1\xb0\xdd\xa1\xdf\x98\x45\xe6\x73\x3a\xeb\x5b\x22\x36\x2a\x23\x4f\x3f\xa4\x53\x17\x40\x75\xe1\x40\xda\x6f\x45\x43\x3c\x79\x65\xa8\xec\x56\x7c\x43\xdb\xc9\xcc\x21\xe0\xc4\x57\xf3\x12\x4d\x44\x32\x49\xfa\x88\x6f\xe6\x04\x0d\x74\x0a\x5a\x75\x51\x9d\xee\x91\x3e\x92\x2c\xc5\xc1\xa2\x38\xe5\xaa\x9d\xc2\x42\x8e\x7f\x10\x8d\x8e\x86\x35\xcb\x46\xc9\xa8\x0e\xba\xec\x0a\x11\x8d\xbe\xa3\xce\x05\x04\x93\x4c\x53\xb3\x20\xe6\x47\xde\x78\x3b\xb4\xa1\xef\x1f\x71\x18\xa1\x6f\xdb\x6d\x51\x78\x12\xd1\x58\x10\x83\x0b\x94\x82\xda\x2c\x50\x50\x76\x7c\xb4\x74\x29\xaa\xa5\x6d\xe9\x22\x34\x8d\x34\xd5\x46\x5d\xd2\xaf\xda\x2d\x23\xf4\xa6\x3a\x34\x6e\xe2\x10\xad\x4e\x35\x4c\x08\x37\xf1\xd2\xaf\x8d\x4b\x8f\xab\x1c\x70\x6b\xc0\x1f\x53\x1a\xf2\xa4\xa5\x04\x89\xd5\xbb\x23\x07\xc5\x0c\xc1\xa2\x0b\x22\xc4\x19\xec\x2b\xe6\xe2\xf5\xf0\x36\x42\xfe\xba\xb4\xea\x83\x70\x75\xf6\x71\xfb\x50\xfb\x1f\xad\x76\x30\x20\xf8\x65\xfd\x4c\x18\x28\xf8\x43\x51\xc9\x59\xbd\x2f\xd9\x54\xfa\x5f\xdb\x2e\x11\xdc\x81\x28\xce\xec\x05\x9b\x17\x69\xef\x1e\x0a\xca\x20\xb8\xb8\x63\x28\x94\xa5\xc6\x95\x6a\xb6\x8c\xbd\x24\x6a\x96\xea\x3f\x27\x41\x96\x4e\xe9\x5b\xcf\x84\x07\xe6\xbe\x95\x7a\x91\x8b\xc2\xf4\x01\x81\x33\x7a\xdf\x91\x5a\xc7\xa9\x07\x07\x2e\x71\x4f\x2b\x80\x1d\xf5\x86\xc1\x7c\x2b\x58\xc1\xd6\x22\x88\x1b\x55\x4b\x28\x20\x10\x4b\x40\xbe\x25\x33\x36\xc8\xf3\xf7\x65\xba\x86\x3e\xfe\x6a\x4d\x4c\xd3\x81\x8b\x57\x8b\x9c\xbf\xdf\xa3\xc6\x93\xbf\xb0\x69\x04\x7e\xc0\x25\x13\x1f\xc7\xd6\xe3\x24\xdc\xa1\xcf\x93\x3f\x08\xbc\x19\xb9\xdb\x78\x45\x55\x92\x49\x23\xfe\x19\xfa\x1b\x84\x00\x5a\xbe\xbc\xc3\x98\x84\xf2\x15\xb9\xe7\x18\xa2\x5a\x5b\xb6\x81\x9b\xf4\x8c\x3a\x0c\xbf\x22\xd1\xf7\x4e\x87\x02\xae\xaa\x57\x2f\x6f\xf3\x21\x02\x8d\x03\x71\x80\xab\x9a\x17\x0c\x7d\x1c\x0b\xbd\xe7\x3b\xcf\x18\x82\x90\xde\x86\x06\x11\x56\x78\xa0\x00\xdb\x8a\x6b\xd0\xe1\x44\xdc\x03\x7c\x9c\x26\xd8\x15\xdf\x0b\x8f\x6f\x5a\x33\xa8\xd3\xb6\x24\x10\x0b\xd8\xa1\xf9\xc2\xb0\xd5\xc6\x23\xf8\x88\x33\x89\xde\xeb\x4a\xf9\xfa\x08\x54\x78\x7f\x7c\x12\xb4\x10\xd8\x24\xe0\x58\x44\x1e\x83\xa2\x1f\x15\xb2\xac\x16\xed\xf0\x92\xdc\xf7\x1e\x90\x3c\xe0\xa7\x08\xc4\xdb\xf7\x41\xad\x9c\x27\xa2\xdf\xb4\xd3\xaf\xa2\xeb\x7f\x9d\x2c\xca\x15\xb8\x74\xf5\x21\x3f\x3d\xa1\xfd\x57\x21\x74\x18\xf2\xbe\x64\x0b\x47\x0b\x59\x63\x62\x8d\xac\x15\x36\xf4\x53\x5c\x38\x74\x0d\x73\xee\xbe\x0d\xc8\x00\xd2\xdf\x80\xfe\xdc\x8c\xe5\x02\x19\x80\x91\x7d\xb7\xbb\x0b\x5e\x5d\x3c\x43\x96\xbd\xb7\x5f\x82\xf3\x61\x26\x4d\xb7\x9e\x6d\xca\x98\x7a\x6f\x7f\xa5\xd9\x0f\x79\x25\xde\xdd\xe8\xab\x4f\x96\x07\x2b\x0e\xd2\x15\xa7\x5c\xc6\x66\xd3\xd7\x1c\x0b\xbf\xb6\x00\x1f\x8c\x1e\x48\x34\x47\x51\x6f\x1b\x7f\x6f\x6c\xde\x3a\x87\x8f\x79\xc2\xed\x7f\xd3\x4e\x3d\x47\x73\x4d\xea\x21\x49\x37\x2f\xca\x0d\x33\xfb\xdc\xe0\x98\x16\x80\x2b\x15\xc8\x9d\xf7\xd7\x5a\x89\x0b\x3f\xd1\xd6\x1f\x9c\x86\x38\x76\xf6\xa9\x6a\xf9\xd9\x1c\x7e\xaf\x2b\x49\x4d\x74\xe9\x5d\x4e\xb2\x00\x8a\xc9\x46\xaf\x77\x18\xbb\x7d\x3b\x84\x49\x47\xfc\x4c\x38\x52\xe5\x97\xcc\xd0\x99\x35\xbe\x8a\x2f\x2f\xba\xd0\xe5\x76\x3b\x3a\xa1\xa3\xd3\xeb\x08\x1c\xc7\x08\xe8\x8b\x92\x25\xcf\x9f\xe9\xfa\xda\xe5\xde\x17\x45\xec\x7b\xb8\xd9\xc1\x6a\xbb\xb4\xe2\x8f\x3d\x9b\xb1\x79\x36\x1a\xbd\x4f\x17\x3f\x21\x51\x7d\xb9\xda\xe5\x24\xaa\x2b\xcc\x63\xec\xa4\xaa\xd7\x35\x54\x79\xca\x83\x8b\xb7\x71\x7c\xba\xec\xf9\x50\x1d\x2d\x74\x33\x5b\x98\xe3\x46\x3e\xc7\x27\xdc\x61\xd9\x51\x3b\x18\x5a\xb6\xa1\xe1\x75\x4f\x9a\xb2\x43\x4c\xb3\x27\x6f\xf0\x3b\x8f\xfb\x8f\x63\xac\xd4\xf5\xb2\xcd\xe7\x9b\xe7\x03\xfa\x92\xda\x02\xf6\x56\x9e\x96\x17\xc2\x25\x4a\x8c\xe5\x87\xb6\x39\x79\xe4\x7b\x0d\xaf\x76\x35\x87\x77\x02\xe3\x22\xc9\xf0\xb4\xf2\xdc\x2d\xc3\xd6\xe3\x87\xde\xcb\x66\x4e\xc5\x61\x16\xb3\x63\x6c\xed\xc7\xd6\xf3\xb6\x8d\xfd\xec\xf7\xbf\x9b\x17\x94\xf1\x4a\x6c\xa8\xaf\xf8\xdd\x62\xa5\x75\x50\xb3\xca\xe7\x4a\xb5\xef\xaa\xe7\x89\x77\xa4\xb4\x21\x6f\xd1\x5f\x7d\x7f\x1c\xce\xc7\x69\x0e\xb8\xca\xd7\xfa\x27\xef\x2e\x35\x5c\x75\xf2\x0c\x09\x4f\x3f\xcb\x1d\xe5\x1f\xa7\x1d\xc6\x6f\x7b\x7f\x2d\xc9\xdf\x7a\xd2\x5a\x22\xe7\x05\x3d\xb1\xe1\x9f\x4b\x31\xdf\xb3\x94\x04\xe2\x47\x7f\xe4\x21\x4f\xf6\x1b\xa9\x02\x0e\xd7\xee\xf4\x16\x7a\xf9\x8a\x7a\xdd\x42\x89\x6f\x46\x27\x73\x9f\x61\xaa\x78\xbf\xaf\xaa\x0b\x33\x2e\xa9\x82\x13\xa3\xbf\xd4\x68\xf7\x73\xe6\x2a\x51\xf9\x8c\xbf\x60\xac\x89\xfe\x98\xfd\x8b\x25\x39\xb0\xfa\xaf\x83\xc1\x08\xc8\xcd\xe0\xe1\x65\x83\xf2\x99\x60\xc9\xbc\xe4\x3f\x1f\x62\x89\x5f\x5a\xcc\xe8\xe7\xf1\x11\xf6\xea\xa0\x88\x2f\xd2\x24\x43\x36\xcd\xe5\xab\xaa\x6a\x66\x36\x53\x7c\x43\xab\xff\xda\x34\xae\xef\xaa\x30\xf3\x57\xc0\x30\x8f\x48\xe8\xbe\x49\x40\x8a\x6e\xdd\x49\xd3\xc0\xce\xc1\x64\x54\x18\x1b\xff\x21\x5e\x51\x97\xb7\x0e\xfd\xf9\x5f\x2f\xda\x3e\xc2\x6a\x49\x20\xa4\xed\xa4\x03\xae\x3b\xe5\xba\xf9\xf7\x27\xe5\x61\x39\x85\x96\x03\xc5\x57\x88\x3f\x3f\x7d\x59\x52\x8f\x67\x18\xdb\x61\x6e\x94\xd7\xc4\x87\x67\x5e\xce\xc7\xda\xc8\x83\x3c\xd4\xdb\xd7\x1e\x47\xbc\x27\x08\x54\x20\xce\xec\x69\xd1\x45\x8b\x58\x80\x91\xe3\x37\xc3\x6a\xcc\xf9\x2e\x9a\x35\x18\x2b\x59\x5f\x80\xf5\x83\xfa\x7d\x37\xfc\x39\x14\xc9\xa0\x10\xa0\x67\xad\x00\xe8\x48\x0b\xa4\xdf\x13\x23\x6f\xf4\x01\x06\x79\xa1\x41\xa1\x1f\xf1\xcf\x72\xc1\x50\x24\x78\x80\xb7\x1b\x94\xfe\x71\x07\xf3\x6e\x50\xa1\x6d\xb2\xb9\xeb\x05\xb1\xe1\xde\xcc\x0a\x38\xe1\xe9\x8e\xa3\xa7\x0d\x1b\x7f\x4f\x69\xe4\x4a\x25\x8e\x0c\x0d\x3c\xa9\x6b\xb4\xa7\xc5\x36\x27\x41\xf2\x84\xf6\x3d\x29\xb5\x44\x13\x3c\xbd\xf2\x03\x0b\x9f\xaf\x3b\x0a\x8e\xe8\x9c\xba\xe7\x3e\x67\x19\x48\x07\xc6\xc2\x4d\xb4\x80\xb7\x9f\xf1\x72\x17\xe3\x35\x15\x5b\x7a\x3a\x6e\x72\x82\xb2\x87\xfd\xd3\x6e\xb1\xe8\x5b\x14\xeb\xd7\x2c\xca\xf7\x69\x21\x23\xcb\xb5\xf8\x6c\x5a\x26\x31\xa1\x13\xbd\xb4\x5a\xb6\xbd\x11\xdb\x59\xb6\x29\xe7\x68\x8b\xb5\xfa\x36\x2e\x40\x23\x7b\xb7\x17\x81\xbc\x96\x8d\xf7\xa4\x68\x17\x46\x9e\xd5\xba\xa6\xd9\x31\xcc\x60\x0e\xc4\x37\x43\xdc\xbe\xfe\xd8\xa8\x71\xf6\xf8\xd1\x4d\x2e\x4a\x5d\x2d\x04\x3b\x0a\x93\xc1\x6b\xc6\xe8\x61\xf1\xb1\xfd\x4b\x91\xdf\xef\xde\xf8\x67\xe8\x26\x48\x04\xe3\x7a\xd4\x16\xad\x3d\x82\x00\x6e\x7b\x72\x41\xf4\x66\x9d\x93\x44\x31\x43\x7f\x6c\xe0\xe9\x97\x67\x59\xc7\xe0\x4c\xcb\x48\x18\x08\x8c\x0f\x3c\x90\x6e\xea\x48\x10\x6a\x69\xfc\x74\x7c\x02\x7a\x56\xd4\xa4\x50\x9b\xa8\xf9\x2f\xe7\x4f\x48\xcc\x54\x46\xaf\xf0\x07\x9d\x32\xb7\xe3\xaa\xc8\x32\xb2\xd9\x38\xf3\x97\xbd\x61\x9b\x3f\x89\x53\xae\xb0\x07\x9e\x4b\x08\x5e\xaf\x73\xdf\xa3\xb5\x24\x5d\xc3\xfd\x2a\x70\xd7\xf7\xa1\xc7\xa2\xb9\xb0\x1a\x22\x58\x63\xe1\xa4\x36\x48\xc5\xc6\x06\xbe\xca\x4f\xad\x35\xe4\x70\x29\x82\xc8\x6f\xde\xdd\x9a\x5c\xb7\x31\xae\xdf\x38\xe3\x82\xc9\x67\xb3\xd2\xfe\x99\x1a\x15\x37\x38\x00\x7c\x3f\x89\x57\xa2\x1b\xfe\x75\x69\xf2\x7d\x12\x4f\x3c\x7d\x76\x5c\x4c\xeb\x7f\x74\xa3\x9d\xfd\x09\x36\x88\x25\x38\xcf\x38\x0e\x1d\xb8\x75\x19\xfc\xc8\x99\xe0\x40\x6f\x09\x9c\xad\x71\x9e\x10\xbe\x71\xcb\x2e\x6b\xc9\xf0\x69\xce\x20\x79\x44\x4a\x38\xa5\x58\x27\x8d\x03\x1a\xe7\x2e\x05\xfb\x2c\xfe\x82\x20\x56\xa6\x58\xfd\xc5\xde\xeb\x2c\x9e\x20\x2e\x57\x14\xfe\xc3\x7f\x4d\xaa\x76\xd8\xda\x2f\x49\x34\xda\x79\x3d\xc5\x9c\xb4\x8b\x93\x4f\xc9\x57\xda\x7a\xc3\xdd\xf7\x84\xb8\x42\xe3\x94\xab\xf9\xa8\x5b\x00\xca\x16\x51\x0e\xbc\x5f\x05\xdd\xc0\x6a\x0b\x6f\x51\x96\x76\x7b\xb1\x8c\xc3\xbd\x89\xe4\x49\x84\xf9\x4f\x88\xb5\x1e\x88\x62\x82\x77\x1b\x40\xfb\xcb\xaa\x19\x76\xe1\x87\xd8\x3b\xd7\xfe\x25\x07\x87\x37\x8f\x1b\xcc\x81\xf8\x96\x38\xa9\x1d\x99\xd2\xce\x71\xa8\xaa\x5f\xaf\xb2\x26\xbc\x46\x4f\xfb\x39\x86\xf2\xae\xc5\x86\xea\xc6\xd9\x84\x47\x96\x19\x70\xad\xe3\xb0\x70\xee\x12\xae\x33\x7a\xe6\x20\x9c\x1b\x78\xdd\xb4\xc1\x5f\x9e\xb2\xe1\x91\x12\x18\xe9\x1f\x2f\xad\x2f\x74\x9a\xd6\x0e\xbf\xc8\xc3\x1f\x79\x63\xf2\x75\x87\xdf\xf2\x16\xd3\x8d\xc9\x8d\xa7\x70\xb2\xdc\x37\xe0\x9d\x68\xfb\x13\x95\x79\xcc\xf0\xee\xd7\x10\xfb\x75\xc3\x7a\x75\x4e\x83\x77\x4d\x93\x7e\x0a\xb4\x9f\xe5\x91\xef\x10\x88\x92\x74\x2c\x85\x06\xf6\x3b\xc3\xf3\x01\xd4\x2a\x81\xa8\x49\xae\xf9\x50\x05\xa3\x19\xf5\x7a\x0f\xff\x04\x5d\x36\x04\x30\x56\x7a\xb4\xe7\x68\xc4\xad\x61\xae\x14\x24\xc8\x97\xc2\x1c\x69\x20\xba\x46\xd8\x82\xcc\x39\xac\x9a\x46\x83\x12\x01\x1f\x3f\x12\x3c\x68\x17\x12\xc7\x94\x94\x18\x56\x65\x42\xea\x58\x31\x2f\xa4\x3b\x8b\xc2\xb7\xf5\x14\xf7\xb6\xa9\x84\x54\xde\x02\x70\x3f\x26\x1e\x59\xbd\xf3\xc5\x13\x43\xaf\xfd\x01\x82\x9e\x18\x97\x9e\x41\x8f\x22\x29\x97\x1c\x8d\x4c\x3b\x8f\xe9\x57\x1f\x6c\xcf\x1f\xde\x7c\x0f\x78\x1d\x83\x06\x2c\x0c\x8b\x9b\x66\x44\x3a\x18\xf1\x17\x28\x3a\x9e\xb3\x4f\xb1\x99\x4d\x63\x3f\x50\xd2\xc8\x57\xfa\x25\xc0\xae\xa0\x0f\xee\xc9\x54\x6e\x2e\xb5\xba\x72\x86\x24\x04\x56\x25\x36\x96\x1b\x2f\x7d\x41\x29\x85\xcb\x69\x00\xfa\xa6\x43\xfe\x01\x5c\x3d\x39\x6e\xab\xd7\x44\x8e\xef\x11\xda\xee\x43\xcd\x96\x87\x7e\x0f\xf3\x92\x61\x30\xb3\x21\x06\x84\xfb\x55\x60\xc3\xd0\xe5\x4e\x1a\xed\x15\x75\xca\x5c\xc0\xd9\xce\x77\x34\x94\x84\xcc\x7a\xb3\x77\x50\x9f\x32\xa1\xea\x21\xbf\xb3\x6c\xef\xe8\x78\x66\x97\xec\x96\x70\x67\xe9\xa5\xdf\x5b\xf4\xf7\x67\xf0\x85\x2c\x04\x7b\x12\xef\x95\xe0\x92\xc6\xdb\xe7\xdb\xbe\x4b\x8c\x57\xb3\x9f\x8f\xd8\x8d\xde\x6f\x41\x2d\x25\xb7\xcf\x9c\xa6\xde\xd7\x4d\x75\x43\x63\x37\xf4\x37\xb6\xc4\x4a\x5e\x6d\x47\xb7\xcd\xd4\x26\x8f\x8b\x1c\xd5\xf3\xf9\x5e\x42\xe4\x6e\xa3\x76\x48\x23\x55\xf1\xa9\xdc\x83\xa4\xf0\x8f\x13\xfe\x1f\xd3\xee\x30\xc7\x2f\x33\x4a\x4d\x75\x6b\x36\x1d\xbc\xe2\x52\x58\x91\x1c\x21\x6b\xcc\x7c\x0e\x9e\xae\x5e\xa7\x98\x90\x84\xcd\x48\x4a\x88\x32\x8f\xb4\xe1\xce\x92\xe5\xe7\xe0\x2c\x8d\x74\x7b\x61\xa4\x02\xc9\xab\xf0\xde\x50\xef\x3a\x09\x1b\xf8\x3a\xfd\x28\x36\x2b\x59\xc2\x3e\x71\x13\x1b\xa2\x8b\xd0\xd9\x03\x55\x95\x34\x22\x18\x3a\x42\x72\x80\xf8\x6b\xa4\xb3\x71\x85\x9d\xa7\x7c\x6c\xa0\x53\x8c\xe9\xb6\xce\x26\x2b\x43\xfb\xb1\xc7\x87\x64\xd0\x4b\x34\xa0\x47\xcf\x80\x35\xe2\xb6\x81\xb4\xb6\x3b\x9c\x0d\xc8\x97\xf9\xa8\x7f\x1b\x9a\x71\xbc\xfe\x7a\xff\xe8\x2d\x62\x1d\xf9\xfa\xed\x36\xf4\xd7\x53\xf5\x99\x2b\xc5\xd2\xa1\xf8\x5c\x9b\x33\xd9\x75\x6a\x9d\x80\x57\xf7\xde\xb0\xa6\x57\x36\x25\xfa\x9a\x42\x82\x78\x3a\x7d\x3b\x8f\x79\x98\x77\xa0\x18\xda\x51\x0b\xbe\x53\x40\xd5\xf4\x1b\x11\xef\x44\x0e\x3a\x25\xc2\x9d\xae\xf9\x5b\x03\x08\x41\x48\x98\x36\xc1\xfe\x61\x52\xf0\x97\x4b\xb1\x2a\xc8\xfd\x6e\x29\x98\x64\xca\xd1\x7d\x6f\x4a\x16\xfd\x1d\xee\xd2\x7b\x67\xc9\x46\x57\xd0\xc0\x05\x9c\x42\xa6\x08\xf2\xc7\xe3\x2b\xd8\xfc\xf7\x1e\x3f\x42\x5d\x4c\x75\x6d\x87\xe9\x41\x2f\x76\x43\x4d\x6f\x1e\xf2\xd8\x53\xbb\xf9\xf1\xcd\xfb\x23\x55\x50\x0b\xe4\x06\x8a\x6a\xea\x5d\x82\x55\x9f\x34\x76\x6b\x56\xc3\xa1\xd1\xe0\x5d\xe0\x59\xe7\xe9\x0b\x58\x0d\x1b\xd5\x29\xf3\x95\xe6\xac\x81\xcb\x59\x15\x5b\x38\x47\x03\x7e\x3b\x65\x52\x6b\x23\x77\xa5\xaa\x1e\x86\x72\x1d\x11\x8e\x20\x78\xcd\x04\x9f\x35\x5d\x04\x3f\xb3\x5d\x89\xfe\x14\x08\x59\xd9\xc2\x0c\xc6\xb4\xf5\x0f\x1e\x4e\xcf\xdc\x0d\x9a\xd6\xcb\xf4\x3b\xe5\xbe\x82\xd9\x26\xf9\xf2\x12\x8d\x8a\x87\x29\x54\xcf\x8b\x50\xcf\x1d\x7a\x09\x77\x20\x1a\xe4\x3d\x21\xcc\xc0\x66\x99\xd6\x70\x61\x48\x89\x7e\xe4\x17\x85\x4f\x19\x81\xff\xfd\x70\x4e\x93\x12\xdd\x08\xed\x9f\x29\xe2\x0d\x41\xdf\x1b\x14\x7a\xf3\x70\x91\x5f\x7b\x23\xd4\xac\xbe\x60\x7a\x1b\x82\x57\x81\xc2\xc7\xdf\x04\x9a\xfc\x20\x66\xba\x68\xd3\x9c\x77\x38\xd0\x4f\x17\x3d\x9a\xd5\x3d\x81\x82\x51\x8f\x9d\xa5\x87\x60\xf6\x74\xd1\x00\x20\x0a\x22\x55\x42\x55\x21\xd3\xbe\x4c\x02\x49\x06\x19\x7a\xf6\x24\x06\x64\x61\x73\xbe\x2e\x6c\x84\x86\x3a\xd4\xab\xf9\x8b\xa1\x7e\xf5\xde\xf0\xaf\x91\x7d\x9c\x6b\xbb\x67\x29\xeb\x55\x75\x25\x9c\xd3\xe0\xa6\x5e\x2d\x74\x75\x43\x77\xb6\x03\x98\xec\x6f\xf2\x06\x0b\xc4\xeb\xd2\x96\xf6\x57\xc2\xfc\xf3\x86\x99\xb6\x9c\xe5\x95\x90\x3a\xf1\xcd\xc7\x9e\x7c\xe7\x0c\xbd\x57\x16\xa4\x18\x7f\x97\xae\xa9\x16\x92\x37\x18\xdd\xa9\x1a\x76\xb9\x2e\x84\x44\x12\x36\x70\x92\xc5\x26\x18\x22\x9b\xe0\x8c\x04\xe1\x19\x82\xca\x24\x9e\x7f\x7d\x00\xbb\x66\x7a\x5d\x2c\x1a\xee\x86\x52\x4f\x7e\xe5\x41\x6f\x2c\x67\xc2\xba\x8d\x5b\x29\x8d\x3a\xb4\xd9\xf9\x66\x5a\xf1\xf4\x63\x98\x43\x65\xdb\x5a\xdc\xfb\x7b\x4e\xcd\xa0\x33\x01\xc3\xcb\xa3\xef\x20\xf9\x10\xd4\xc3\x1b\x20\xf4\xf1\x47\x57\xea\xa9\x79\x6a\x40\xdb\x87\xbc\xf2\xa7\xf6\xf7\x07\xce\x86\x82\x9a\x87\xdf\x99\x65\x76\x37\x1f\x72\x63\xcc\xbd\x9b\x30\x07\x3e\x45\x34\x9f\xf1\xd5\xb7\x6b\x08\xd7\xfa\x43\x9b\x87\x27\x9d\x79\x13\x26\x93\x3d\x9e\x50\xb7\xc9\x3e\x93\x88\x10\x05\x53\x9e\x27\xff\x66\xd5\xae\x7f\x01\xe4\x57\xb8\x44\xfd\xbd\x86\xcd\xa8\xa7\xee\xd5\x27\x2c\x12\x09\xe9\x43\xc1\xf7\xff\x5e\xda\xa3\x76\x59\x5d\x00\x16\xd9\x27\x1d\x54\x40\x89\xa1\xd0\xfb\x7f\x4b\xa2\x3b\xc1\x82\xf6\x29\x99\x87\x9f\xb4\x4a\xe1\xff\x4d\x6c\x70\x51\x93\xb1\xec\x97\xdb\x61\xe6\x75\x66\x04\xfc\x5b\x8d\x5b\x1f\x4c\x04\xab\x54\x83\x2c\x3a\x3c\x8b\x83\xfa\x57\x8c\x51\x16\x2f\x7f\xa0\xfd\xcd\x21\x9e\x62\x31\x11\x82\x0a\xc0\xbc\x7a\xef\xed\x60\xa9\x8d\x18\xda\xa8\x65\xff\x10\xf3\x87\x80\xe4\x4e\x33\x5d\x76\x0b\xfc\x1b\xf6\x40\xda\xcb\x19\x02\x61\x82\x5a\x81\x3f\xbd\xa7\x7c\xbe\x8c\x50\x19\x9a\x08\x6b\x8c\x86\x7a\x21\x25\x21\x5c\x12\xfe\xdd\x17\x13\x34\xd8\x83\x1a\xd3\xb8\x67\x86\x9e\x35\xf2\xbf\x09\x1d\xd6\x52\x5b\x88\x16\x4a\xf5\x31\xe7\x45\xbf\x6f\xb4\xae\x0a\x0f\x3b\xc9\x8d\xf4\x02\xcb\xde\xc9\x38\x63\x09\x0d\x22\x1b\xfa\x3e\x12\x60\xcc\x33\x68\x33\x76\x49\xc0\xb4\xc4\x49\x88\x7b\x75\xbf\x6d\xfc\x30\x8d\x2b\x9b\xbf\xb8\xec\x85\x3e\xe8\xc4\x5c\x9a\x70\xac\x34\x42\xa4\xdd\xd8\xf1\xfe\x8e\x27\xec\x62\xd0\x01\x13\x16\xf9\x6f\xb1\x1a\x57\x4f\x3b\x6c\x48\x23\xd8\xf5\x6c\x7d\x6f\x51\xa9\xc3\x38\xaa\xca\x8b\x8c\x77\x9e\xd9\xb4\xf3\x58\xe4\xec\xb3\xd1\xe2\xad\xd4\x19\xfb\x67\xe9\x83\x6c\xb6\x06\x3f\x9b\xa3\xfb\x5b\x16\x07\xdd\x83\xa1\xce\x72\xf1\x64\x6b\xa3\x71\xf7\xdf\xbf\xb6\x08\x65\x89\xa7\xb3\xea\x22\x6e\x75\x65\x22\x34\xfe\x4f\xf6\x8e\x63\x88\xf9\x8f\x35\xab\x11\x77\xc7\xee\x85\x7e\xbb\x83\x72\x34\x59\xb1\x90\x47\x82\x4c\xb0\xc8\x89\x50\xc1\x61\x58\x49\x56\x6b\x75\xc3\x46\xa4\x4b\xbf\xef\x8d\xfd\x53\x8e\xa0\xaa\xdc\x2e\xed\xe9\xaa\x3f\xb6\x8e\x15\x13\x93\x91\xc3\xb7\xe6\x51\xb4\x8a\x1f\xa0\xa3\x46\x8a\x0f\xc2\x97\x97\x46\x7e\x31\x4f\x63\x1e\xdd\x55\xd4\x44\x60\x94\xb0\xe7\x81\x11\x11\x7b\x23\xc3\xea\x3d\xfa\x9f\xf7\x26\xc8\xe6\xb3\xe3\xd1\x28\x0e\x28\x10\xed\x09\xfb\xe6\x11\xbb\xd5\x92\x2a\x20\xc3\xd3\xfa\xca\xb3\x19\x73\xb1\x7c\xe7\x91\x29\x48\x24\x1c\x34\xea\x5f\x06\xdc\x79\x6c\x68\xad\x4e\x3b\x5e\xf8\xfa\x46\xab\xb7\xf8\xf3\x63\xbd\x95\x0c\x1f\xf4\x09\xf5\xc4\x42\x03\x4c\x01\x42\x00\x81\x1a\x1f\x17\x14\x6f\x00\x1e\xa0\x90\xf8\x53\xb0\x83\xa0\x2f\xce\xe3\x00\xf8\x72\x1d\xea\x93\xf5\xc3\xe1\x10\x43\x89\xae\xe7\x93\x32\x30\x51\x54\xa4\x98\xbe\x85\xbe\x27\x90\x71\x56\x21\x68\x93\x6a\xe0\x12\x33\xe8\x53\xe1\x03\xed\xd5\xff\x01\x8e\x41\xc7\xd0\x32\xaa\x8d\xef\x32\xd4\x9d\xa2\x12\xa2\x63\x3d\xba\x38\xf2\x31\x3b\x16\x33\xcd\xc3\xef\x4a\x01\x64\x64\x1b\x3d\x73\xc7\x6a\x98\xf0\x57\x22\x5a\x78\xd4\x9e\xca\xef\xdb\x26\xf1\xa5\xb4\x0d\xba\xbe\x1a\x1b\xa9\x59\xbe\x55\x4e\x70\xe6\x43\x29\xfa\xe3\x2a\x82\xdf\xbd\x49\xfe\x07\x35\x26\x2a\xca\x0a\x77\xba\xbe\x04\xfb\xb9\xd2\x3e\x96\x9f\x6b\x8c\x96\x34\xb7\x86\x05\x21\xe4\xb4\xf9\xcb\x8f\xf8\x5d\x63\x26\x68\x15\xc2\x26\xe9\x2a\x74\xaf\xca\x9a\xb1\xcd\x8a\x0c\xd0\x98\xe6\xf5\xee\xce\x00\xc4\xbb\xf2\x56\xad\x65\x2c\x61\x67\x36\x3d\x6b\x5d\x50\xa5\xfb\x29\x44\x32\xb4\x1e\x0f\x3f\x46\x24\x5d\x29\xdf\xc1\xbd\xde\xc0\x71\xae\x5b\xba\xc1\xa2\x6b\x27\x9b\x75\x5c\x18\xfa\x55\x34\xf1\xa3\x21\x01\x95\xb9\xa8\xe8\x09\xcb\xea\x17\xe9\xee\xf5\x69\xe0\xdf\x5d\x77\x90\x1f\xeb\xe5\xd6\xcd\xc7\x7b\x06\x79\xae\xe5\x7d\xc0\x71\x49\x0a\xe8\xed\x46\x2c\x82\xa5\xcb\xfb\xd6\xcd\x30\x42\x78\xcb\x69\x64\x4c\x1f\x9b\x6e\x5d\x80\x47\x81\x5c\x39\xe0\xca\x68\x20\x27\xbd\xc5\x5f\xca\x58\x7c\xb1\xf3\x8e\xfb\xec\xb3\x2b\x60\x4d\x38\xd8\xb7\xb9\x32\x1d\xdb\x70\xa1\x98\xd7\x4f\xfc\x9b\x50\xe2\x71\xfb\x14\x4a\xdf\xe8\x08\xbd\x9f\x41\x83\xb3\x39\x8e\x70\x54\x6f\x59\xd5\xeb\xe9\x5e\x51\xa2\xcf\xc5\xbf\xa1\x4f\x39\x86\xf2\xcc\x82\xb4\x54\xdb\xee\x8c\xca\x8a\xcc\xfe\x77\x01\x53\xc5\xd7\x0f\x81\x8b\x88\xcf\x31\x52\xb2\x9a\x2a\x41\x4f\xbf\x4d\xe1\xc9\xc1\x98\x8a\xc9\x6b\xcf\xca\x89\xb7\x3c\x97\x80\x2b\x9a\x58\xa8\xc7\xfc\x90\x57\x98\x3f\x9e\xfe\x0b\xfa\x7e\x3c\xa1\x1c\x2c\x93\xec\xad\x90\xbd\xec\xc5\x67\xa4\x44\xfc\xc1\xa8\x0a\x89\xd6\x94\x50\x65\xb4\xe1\xb9\x1a\x7c\xda\x4f\xac\xf0\x18\x5a\x1e\xe5\xf4\xed\x2a\xe8\x6d\x17\x01\x07\xc1\x36\xc7\xcd\x61\x0e\xcb\x7f\x61\x63\xf3\x8e\x8c\x9b\xcd\x55\x6b\x3e\xb2\x11\xe3\xb8\xc7\x81\x74\x33\x2c\x1c\x84\x15\x97\x73\x36\xeb\x2b\x94\x86\xb4\x93\x33\x6d\x16\x4e\x0e\x36\x6b\xd1\x55\x43\x37\x9d\xb9\x75\x5f\x2c\x51\xac\x32\x51\x03\xcd\x42\x4f\x0a\xd1\xdc\x25\x72\x75\xee\xbf\x23\x0d\x5d\x82\x9b\xb4\x7c\xde\xce\x5b\x12\x03\xef\xe7\xcd\x80\x63\x39\xba\xe1\x6f\x02\xa7\x54\x1f\xc7\x7e\xb6\x19\x1f\xea\xde\xce\xce\xde\x03\xb7\xb3\xcf\xac\x0c\x6d\x26\x5c\x2f\xc9\x4c\x20\x15\xaa\xda\xfc\x89\x95\xad\x80\xf6\x21\x4f\x7b\xfb\xce\x77\xaa\x0a\xb9\xd7\x93\xa9\xe1\x40\xb0\x77\xbf\xcf\xb5\xa2\x95\x11\x28\xbb\xc9\xe3\xa1\x62\x3b\xde\x79\x27\x9e\x75\x0d\x52\x80\x7f\xe4\x00\xf4\x82\x60\xd7\x2e\x06\x4d\x60\x5b\x91\xf4\x43\xe1\x6e\xa1\x2e\x39\x98\xa8\xb3\x16\x38\xd2\x6d\x1d\x53\xb3\x31\x84\xb0\xde\xc2\x95\x52\x5c\x91\x64\x10\x04\x62\x94\x86\xf6\xcc\xa5\x05\x48\x83\x9f\x42\x58\xeb\x8a\x27\xeb\x4e\xee\x8d\xf5\x2e\xd0\x87\x09\x52\x35\x7b\x3c\x25\xca\xd3\x14\x59\x5b\x2b\xee\x17\xdd\xbf\x2b\x34\x4f\x39\x25\xde\xaa\x78\xda\xb1\x08\x6e\xdc\xee\x41\x56\x6a\x56\x20\x26\xab\xbf\x17\xf7\xf2\xc0\x9b\x5c\x55\xa8\xa3\x4d\xd9\x9d\x3b\x95\x1a\x0d\x7a\xaf\x15\x94\x12\x02\xca\xc6\xec\x64\x4b\xbe\x26\xee\x5a\x91\x73\xcd\x99\xe9\xbd\x79\xc2\x5f\x55\xef\x6a\x2b\x38\xed\xbe\xe7\xf2\x60\x95\xcf\x97\x7d\x18\x0d\x49\x8d\xec\x5e\x33\xe8\x5f\x03\x33\x40\x82\x01\x66\x39\x5c\xa7\xd0\x4a\x5f\x2a\x20\xa6\x93\xba\x0d\x97\xf3\x55\xd1\x9d\xad\x6b\xae\x90\x12\x64\x6d\x3e\xb2\xdd\x19\xd4\x29\x11\xe8\x43\x02\x2d\x82\xd3\x54\x22\xdd\xd8\x53\xf8\x80\xb2\x11\xe2\x5a\x11\x6c\xf9\x8b\x25\xd2\xf8\x0e\x76\xfa\x42\xbb\x90\xa6\xde\xca\xb6\x9b\xa7\x99\x73\xbf\x3f\xf7\x0d\xf7\xf1\x4f\xaf\x08\xdd\x4e\xb3\xec\xb6\xc4\x89\x7b\xf7\xde\x12\x1b\x4b\x2b\xed\x3f\x3b\x8a\x76\xe0\xab\xe2\x9f\x8c\xb6\x48\xf7\x0b\x2b\xfc\xca\xb8\x2a\x96\x86\xbc\xb6\x04\x7b\x44\xca\x36\xaf\xea\x8f\x17\x43\xef\xf2\x0d\x18\x75\xde\xbd\x4f\xe3\xdc\x17\xf8\x47\x23\x37\xba\x27\x7c\xb2\x22\x75\xf4\x76\xb9\x2a\x33\x0e\x6f\x12\x2b\x1f\xfc\x80\x4d\x21\x81\xea\x13\xf9\xcd\x0e\xbb\x01\xb6\x00\xe4\xdc\xc7\x19\x57\xce\x14\x21\x64\xfb\xd6\xe6\x29\x4b\xce\xc6\xac\xe6\x1b\xc5\x05\xcd\x85\xfb\x1b\xc1\x93\xfb\xfa\xf1\x62\x6b\xb5\xfb\x71\xe0\x84\xdd\x57\x43\xfb\x49\x13\x3b\x2f\xc1\x00\xfc\xa9\x65\xc8\x42\x00\xb6\xf9\xb1\xb1\xe6\x0e\x3e\xed\x35\xb1\xa1\xac\xa2\x51\x76\x8f\xf4\x59\xa1\xee\xb0\x23\xa8\xe9\x06\xdc\x41\x25\x6f\xf5\xf9\xc2\xbc\x97\xea\xce\xd6\x60\x08\xaa\xac\x0c\x78\x67\x7f\x56\x99\x1c\x0d\xec\x02\x66\xa6\xa4\x2c\x31\x08\xe4\xbc\x13\xb3\x32\xfc\x1a\x01\x00\x00\x50\x00\x00\x00\x1a\x20\x86\x84\x73\xa4\x6c\x88\x2e\x78\x0f\x40\xfe\x02\xf8\xef\x03\x5f\x61\x32\xff\xf7\x9f\x0e\x69\xd0\x7d\x43\x7b\x9f\x47\x68\xf9\xe2\x0a\x00\x00\x10\x01\xd0\xff\xb7\x0c\xf0\x82\x32\x35\x32\x33\xda\x92\x79\xf1\x4d\x0b\x0e\x76\x5d\x20\xef\xde\xcc\x59\x6a\x81\x91\x54\x06\x20\xc3\x00\x80\xf4\xf0\xba\x5e\x50\x69\x0b\x70\x76\xc4\xda\xd0\x41\xdb\xc3\xd6\x59\x59\xde\xa3\x28\x50\x8f\x23\x7e\xf2\xdf\x8a\x51\xcb\x3b\xc7\x8e\xbc\x86\x8f\x57\x8e\x47\x06\x44\x7b\xbf\xb9\x66\xd8\xe2\x26\x3c\x27\x93\x71\x70\x70\x70\x3c\x77\x03\x81\x1a\x0b\xa9\x54\xfe\x2f\xe4\x99\x96\x77\xa9\xb3\xc2\xd8\xef\x9f\x4a\xa1\xf5\x61\x68\x96\x7c\x5d\xe5\x75\x0f\xa8\x27\x04\xe6\xdd\x09\x1d\xf1\x87\x27\x22\x77\xd8\x2f\xc8\xe9\xd7\x01\x1b\xe2\x54\xd8\x47\x5f\x87\x19\xd3\x4d\xf5\x1e\xb0\xd1\x08\x1d\xcd\x05\x3a\xbc\x83\xb7\x53\x67\xa5\x98\xe4\x96\xfa\x98\x4f\x64\x1a\x12\x25\x1b\x6f\xa0\xb5\xb3\xcb\xcd\xe9\xb8\x2a\xcd\xa1\xfa\x65\x38\x52\x29\xa8\x09\x86\xfc\x2e\x41\x8a\x81\x7f\x18\xee\x56\xdd\x08\x6a\xe6\x51\x88\xbd\xb2\x69\x93\x1b\x7f\x53\x4e\x1e\x3e\xe1\xe5\xb9\xb1\xc5\x0b\x3e\xce\xc8\x8e\x9c\xa2\xcc\x6b\x64\x2f\x8f\x70\xfa\xb0\x46\x26\xed\x09\x4a\x19\x7a\x86\x2b\x0a\x75\x96\x89\xcc\x9a\xaf\x49\x0b\x69\xea\xbe\x76\x29\xce\xc6\xba\x37\x1b\x94\x92\xef\x0a\x6d\x67\xe7\x0e\x8b\xef\x72\xf1\xc7\x6d\x37\x66\x5e\xee\xcb\x0d\x82\x0e\x25\x18\x0f\xd6\x9c\xe2\xa5\x9c\x48\x5b\xa6\x14\x94\x3c\x54\x25\x05\x74\x09\x45\x69\x1e\xe1\xf3\xf4\xc4\xf0\x95\x6e\x2c\x3c\xd4\x86\x2d\x97\xc7\xb8\x37\xe2\x0e\xd3\xbb\x8a\x4f\xff\x1e\x2a\xb2\x37\xce\x8c\x27\x5c\xe9\x1a\x8e\x19\x05\xc8\x10\x8f\x2f\xe0\xdf\xfa\xef\x66\x28\xbd\x8e\x81\x90\xcb\xfc\x0f\x44\x1e\x4f\x52\xf8\x15\x59\xa6\x88\xdf\x2d\xf6\x1f\x94\xd4\x26\xe3\xb9\xa7\x73\xf8\xee\x8c\xd8\xf8\x2e\xcc\xa1\xe7\xc7\x0e\x8c\x9b\x55\x7a\x49\xcd\x32\x47\x91\x90\x7a\x01\x06\x85\xc1\xbf\x18\x8b\x81\x91\xde\x09\xda\x9d\x79\x6c\x8d\x91\x06\xb2\xe8\x17\xdb\xe9\x53\x48\xec\x95\xc5\xc9\x0d\x7f\x69\xe5\x02\xab\x29\xfb\x2d\xf0\xe0\xfb\xdb\x42\xd3\xe4\xcd\x85\x0f\x6f\x78\xcf\xed\x4a\x79\x34\x53\xa8\x21\x48\xf0\xbf\x29\xf1\xc7\x8c\x69\xf9\x66\xd6\x26\x48\xb0\x04\x7f\x0a\x24\x5e\x31\xeb\x55\xec\xb4\x34\x46\x13\xb7\x45\xba\x0e\xb1\xc5\x5a\xaf\xc9\xa0\xa2\x3b\xe1\x5e\x16\x50\x10\xf4\x77\x10\x8c\xc2\x1a\x14\xe6\x10\xce\x39\x63\x62\x67\xc9\xf3\x35\xad\x8d\x12\x58\xcc\x0e\x71\xea\x2c\x4d\xae\xab\xdc\x6d\x52\x7e\x46\x17\xee\x28\x91\x48\x67\xfc\x98\x06\x21\xab\xdc\xe5\xdf\xf6\xbd\x2f\x0f\xa3\x35\xd7\x7d\x6b\x8c\x37\xd7\x53\x62\xb1\xc9\x82\x08\x64\xca\x51\x39\xee\xf3\xbf\xcc\x4c\xa4\x9c\x3d\xac\x7f\x56\xf3\xd4\x66\x30\xd9\x99\xc0\xcc\x9b\xc9\xa8\x28\x0a\xcd\x7a\xe1\xa3\xc6\xed\x55\x75\x0e\x41\xda\x32\x3f\xe6\x58\x73\xa4\xb5\x86\x71\x68\xd9\x42\x8f\x70\x14\xbe\xe8\x3d\xd6\xe7\xdf\x5a\x0b\xf7\x41\xb2\x7e\x28\x45\x44\x36\x50\x9a\xaf\x4d\x78\x0f\x22\x10\x5a\xae\xf5\x99\x38\xec\xf8\x19\x90\x5f\xd4\xd0\x02\x8d\x48\x2e\x77\x55\x2e\x4a\x43\x75\x7c\x9c\x85\x52\xbc\xc3\x50\xef\x2c\xa9\xfc\x65\xae\x10\xd2\xeb\x92\x34\xbf\xfd\x46\xb4\x54\x03\x33\x32\x9b\xe5\x37\xfd\xd1\x1b\xb4\x0e\xb8\x0c\x3c\x5d\x46\xd9\x81\x3c\xf8\x3a\x05\x49\x79\xa8\x6e\x61\x78\xd6\x25\x4f\x36\x64\x33\x9d\x95\x85\x67\x78\xff\xf6\x49\xbf\x61\xe4\x3a\x33\x21\xf1\xf7\x26\xc6\x5e\xda\xf5\x2f\x3d\x0a\x5c\x9e\xa8\x60\x3c\xfc\xba\xde\x09\x86\xb0\xb2\x10\x8b\xc1\xa4\xa1\x6c\x6b\x8c\x10\xfe\x14\x91\x62\x4d\xa6\xf0\x0b\x11\x69\xf8\x1d\xe8\x4a\x7c\xf9\x05\xb4\x29\xe7\x37\xd1\xa9\xb6\x39\xa9\x8e\xd4\x19\x6d\xbe\xa7\xdd\x67\x21\xac\x98\xed\x79\x4d\x50\xe3\xb5\x61\x14\xff\x04\xb1\x06\x7d\x0f\x40\x28\x94\x1b\x8f\x9c\x96\x7f\x76\x9e\xab\xa7\xb1\x30\x94\xe7\x68\x72\x2e\x36\x85\x4f\xe6\x4b\x28\x93\x1d\x74\x1b\xd8\x6b\xe3\x49\xa8\x62\xa3\x0a\x75\x61\xbf\x56\x1d\x9d\x85\x1c\x27\xcf\x1e\x4a\x2a\xb4\x87\xef\x45\xff\x24\x2d\xdf\xe5\x54\x00\xfa\xbb\x91\x16\xe5\x23\xeb\xff\xe0\xa9\x72\xbb\x81\xd6\x2f\xb9\x5f\x56\xf7\xac\xd8\xcc\x17\xac\xc3\x6b\xa0\x39\x34\xed\xb4\x45\xdf\x8c\xfc\x73\x48\xc2\x0c\x32\x82\xaa\xa2\x73\x68\xf5\x4c\xcd\x5e\x1c\x0c\x54\xd9\x4c\xab\x2a\x9b\xa2\xb8\x33\xfa\x4a\x25\x71\x98\x12\x9b\x01\x44\x29\x40\xda\x2c\x7a\x42\x8c\xb2\x39\x72\x26\x89\xc7\x31\x11\x26\x17\xe5\x45\xd8\x59\xc2\xe5\xa0\xf8\x58\x61\xb3\xa5\x07\x3b\x6b\x8e\xfd\x14\x46\xc7\x10\xc8\x7f\xa8\x03\x81\x47\xc5\xde\x5c\x99\x99\xae\xed\xe4\x15\x6a\x4f\x09\x5e\xd8\x29\x96\xd4\x0a\xdf\xee\xfe\x0c\xa0\x5f\xb3\x75\xbb\xad\xa0\xc7\x90\x2f\xa6\x06\x30\xf8\x65\xb8\xac\x2c\xf5\xf9\xcd\x9c\x15\x71\x7d\x80\x38\xfa\x09\x64\x42\xfc\x51\xf6\x8c\xd9\x2b\x0b\x7a\x5c\xcf\x0e\x0c\x1e\xd8\xe3\xf9\xc2\x84\x4e\x47\x08\x9a\x6b\xa3\xe1\xce\x90\xf1\x92\xca\xd2\x2a\xe8\xcb\xe2\x15\xec\x28\x88\x8b\xcb\x69\x20\x8a\x36\x84\x83\xb0\x58\x66\x32\xc9\xbb\x06\xfc\xde\xd9\x49\x63\x14\xc3\x16\x3a\xcf\x24\xfa\x7e\xb1\xb8\x71\x66\x5f\x84\x76\x68\xd6\x56\xcd\x37\xbf\x3a\x3f\xb4\xb3\x4f\xc6\xb7\xc7\x8b\x54\x69\x97\x62\x4e\x94\xee\x14\x26\x4f\xe6\x52\x4b\x73\x39\x1e\x52\x46\xa8\x28\x24\xeb\x00\x2d\xbe\xe2\x9e\xed\x32\x56\x5b\x18\xbe\xad\x15\xd1\xc1\x2c\x89\x27\xdb\x78\x88\x7a\x19\x78\xd9\xd7\xef\xfd\xd4\x19\xed\x1a\x2b\xa8\x2e\x56\xf3\x0e\xab\x20\x90\xed\xcc\x91\x75\x45\x48\x4c\x36\x42\x53\xb8\xb3\xec\xa9\x9b\x3c\xde\xf1\xe4\xc3\x31\x14\x99\x07\x3e\xbd\x31\x7f\x44\x49\x40\x56\x12\xf3\x67\x21\xc2\x9a\xb1\x86\x87\xb7\x90\x95\x32\xa0\x00\x9f\xca\xae\xa5\x59\xc4\x02\x36\xcf\x9a\xe5\xf5\xc7\x88\x63\xbc\x33\x10\xb7\x78\x98\x2d\x8e\x8f\x7a\xca\xa9\x4a\x7c\x39\xcc\xb9\x95\xa7\xef\xb3\x65\xaf\x6d\xed\xcd\xb5\xf7\xf2\x39\xed\x76\x9b\xfc\x6d\xca\x80\x7b\x44\xd2\xba\x5e\xe5\xfb\x09\x39\x6a\x14\xbc\x14\xae\x0a\x65\x36\xb6\x79\x21\x72\x21\x62\x12\xa8\x7e\xf2\x1d\xfd\xf6\x97\xd0\xae\x17\xd4\x8f\x5e\x0e\x00\xb1\x0a\x00\x30\x45\x6d\x39\xd0\x1c\xdf\x41\x4e\xdc\x64\xbf\xda\x6c\xbf\xea\xb1\xb8\xc2\xdd\xf2\x92\xbe\xc2\x0d\xe9\xa6\x7b\x42\xff\xc2\x8d\x3c\xde\xd7\x5f\x58\x5d\xb8\x5c\xd8\x5f\x88\xff\x9b\xec\x1f\x9a\x7b\x24\xad\x78\xc7\x9f\xd9\x5a\x52\xe6\x9e\x86\x6d\x11\x19\x14\xed\xb8\x18\x65\x9e\x76\xec\x59\x93\x00\xc6\x48\x2e\xc8\xa0\xc9\x68\x9d\xe1\x13\xb6\xb8\x42\x1c\x8d\x41\x92\x71\x3d\x13\x5f\x9a\x9f\x78\x74\x39\xce\x7c\xbe\x8e\x1c\x69\xf1\xc6\xb4\x4d\x3b\x5d\x57\x0e\x45\x56\xe9\x98\xf6\x41\xf4\x12\x73\x75\x14\x42\x0c\x4f\x2c\x4b\x2c\x48\xe6\x0e\xeb\xab\x35\x33\x21\x93\xf6\x77\x3e\x46\x7b\x66\x7f\x6a\xdb\x6f\x1d\x4c\x4a\xc3\x90\xef\x8d\x31\x17\x31\x55\x31\x2c\x23\x61\xf5\x35\xc9\x9a\x25\xea\x72\xf3\x94\xf7\x56\xf7\x0a\x0a\xa6\xe3\x01\x4c\x55\x70\x2b\xc0\x95\x79\x1d\x83\xc8\xd3\x95\xd3\x88\xd3\xea\xd3\xf8\x97\xf4\x97\x06\xf8\x0e\xe3\xb2\xed\x34\x15\x87\x4e\x07\xac\xcc\x83\x1c\xec\x83\x97\x83\x6b\xbc\x06\x1a\xe3\x2c\xab\x65\x47\xb8\x85\xf7\x85\xd5\xe6\xda\xaa\x12\xfb\xf6\xf3\xd6\xf3\xea\x75\xfb\xc4\x65\xe2\x95\xd7\x15\x4b\x7e\x70\xc2\x41\x42\x5d\x82\xe3\x44\xcc\x6d\xb3\x6d\xe7\x69\x62\x47\xe9\xeb\x3f\xba\xc3\xac\xa3\xe5\x8b\xe7\x1d\xd2\xb3\xf5\xa3\xae\x8b\xd9\x17\xfe\x17\xaf\xcf\xb7\x20\x4e\x65\xc4\x4a\xf4\x98\x90\xfe\x50\x7c\x89\x0d\xe5\xc5\xa9\xfd\xa9\x8a\x5a\x5e\x3d\x24\x4f\x14\xc3\xf8\x28\xca\x2a\x2a\x53\x2a\x4d\xaa\x4b\x2d\x1a\x5b\x0b\xdd\xfa\xa2\xe5\xa6\xb3\x00\xc5\x61\xc2\x36\x94\xc5\x24\x81\x89\x6b\x51\x94\xbe\x02\x86\x25\x64\xe1\x1f\xb6\x83\x43\x4b\x1b\x04\xe4\x8e\x84\xa0\x4c\x56\x3a\x29\x3a\x32\x9a\xe5\xbd\x8d\x54\x01\x2e\x9e\x7b\x9a\x75\xde\x2e\x1e\x18\xcb\x6c\x8b\x07\x4b\xb8\xe5\x8d\xe5\x57\x3e\xee\x16\xe1\xc4\x83\x8e\xc3\x49\xbc\xb9\xf0\xd2\xf0\xeb\xf0\x5b\xc9\x4e\xad\x0e\xaf\xe6\xa7\x42\x33\x16\x77\x16\x26\xc6\x75\xc6\xf7\xef\x0d\xfb\x81\x6e\xbd\x30\x95\xbf\xa0\x00\x80\x29\xbb\xd5\x66\x7b\xe1\xd5\xe6\x78\x5b\x86\xff\xf8\x43\x5d\x76\x18\xf2\x0c\x1c\x7a\x18\x0b\x44\x63\x7b\xe8\x2c\xce\xa5\xa6\x6d\x63\xb1\xa7\xc8\x63\xc1\x35\x4f\x33\xe3\x5f\xd6\xf3\x86\xf3\xe6\x69\x93\x16\xd6\x0c\x50\xfd\x50\x55\x11\x9b\x96\x65\x53\xa9\xd3\xa5\xf8\x4e\x4c\xff\x6b\x64\x79\x24\xf2\x9f\xc5\x77\x45\x7d\x85\x73\x65\xc3\x39\xb7\xd9\xca\x45\x8d\x69\xfe\x46\xec\xa6\x16\x77\x7b\xb7\xa8\xee\xbc\x8f\xfa\x3f\x71\xc6\x51\xc1\x6c\xb9\x3c\xdc\xac\xb4\x71\x96\x0a\xf6\xf2\x02\xe3\x30\x63\x72\xe3\x86\x8c\x54\x8c\xae\x55\xf7\x95\xaf\xf6\x68\xbe\x42\xaf\xd6\x10\x3d\x4b\xa6\x43\x3b\xcb\x68\xb9\xfd\xec\x13\x9f\x0b\x87\x6d\xb2\x3d\x6e\x6f\x32\x1f\xec\x8d\xa2\x6e\x61\xe1\x9c\xc4\x9b\xbc\xbb\xf7\x6b\xb9\x37\xec\x77\xc8\xfb\x25\xb4\x3d\x74\x69\xcf\x4e\xcf\xec\x57\x4c\x1b\x9c\x99\xb0\xcc\xa9\xd1\x5a\x96\x4e\xf6\x19\x7a\x76\x1e\x17\x91\x15\x46\xa2\xd8\x8b\x04\xae\xa8\x12\x13\x4f\x53\x93\x4e\x3d\x3d\x5c\x50\xe6\x6f\x6a\x0f\xba\x1c\xea\x32\x5a\x50\x09\x52\x39\xcb\xb1\xd6\x8b\x4b\xa9\xae\x85\xcf\x81\x43\xf3\x2f\x0f\x87\x72\x4d\x8b\x16\x8b\x44\x4b\xf2\xc3\x91\xfd\x95\x7d\x9f\x7d\xa9\x3d\x4e\x3e\xda\x16\xbe\x47\xf6\xcd\xaf\x9b\xcc\x9b\x35\xca\xe5\x53\x55\x46\xdf\xc0\x48\x02\xb1\xf3\x31\xb0\x53\xe8\x5a\xa8\xcd\x30\xae\x5b\xb2\xca\x61\xed\x62\x58\xf4\x00\xe3\x29\xbb\xbf\xb0\xcc\x30\x2d\xa1\xd2\x3d\xcc\x4f\xdc\xaa\xa8\xc1\xbf\xf7\x87\xc4\xf6\xf8\x6f\x10\xab\xee\x3f\xe9\xc6\x82\xc6\x21\x64\x3b\xf1\x4e\x84\x64\xbd\x70\x7e\x3c\x01\x84\x9f\x52\x5e\x51\xef\x60\xba\x7a\xd2\x72\x8a\x96\x64\x9e\x61\x72\x75\xf2\xef\xa2\x2a\x73\x1e\x27\xb4\xeb\x31\xa5\x47\xb7\xf2\xe4\x83\x60\x79\x0b\x0f\xf6\xc4\x65\x1b\x3b\xf2\x85\xfe\x6a\xb3\xc7\x7a\x4a\xba\x6d\x93\x35\x8b\x0b\x64\xc3\x58\xf2\xc9\x4d\x9c\x7f\x5f\x98\x60\xc7\x45\x42\xb6\xa0\x62\x1c\x08\x00\x80\xad\xff\x48\x5b\x6d\xee\xfa\x64\x5d\xd5\x5d\xa7\x96\x9c\xa3\x6e\xf8\xbf\xc3\xf7\xb0\xee\xc6\xfe\x7e\x15\xe7\xc5\x91\x3d\x7e\x54\x36\x30\x4b\x64\xad\xcf\x59\x7a\x3e\x87\x7d\xd4\x76\x87\xd7\x6e\x51\xcc\xf1\x8f\xa0\x0b\x65\xf4\x2a\x7e\xa8\xd5\x01\x8f\xd5\xb4\x94\xb3\x46\x07\xb1\x52\x0f\xaf\x41\x78\xb5\xe9\x6c\xfc\xc1\xe1\xb5\xd6\x7f\x65\x78\x1f\xc5\x93\xb9\x23\x7a\xad\xdc\xe1\x88\xd9\x8d\xa7\x43\x7a\xfd\xf4\x42\xee\x91\x47\x06\xca\x25\x98\xbd\x80\xec\x08\x00\x1f\x7c\x0d\x08\x5a\x36\x62\x5a\x42\x67\x0e\x81\x6c\x31\xc8\x43\x37\xf4\x62\xd5\xe2\xd9\xc1\xbc\xf6\x4e\x4f\x05\xa1\x30\x47\xe4\x6c\xab\x78\xe1\x0a\x87\x6f\xaa\x60\xa5\xc2\xe1\x8a\xe1\x2a\x53\xcd\xc1\x0d\x4c\x79\xc1\x4e\xc9\x37\x12\x9d\x4b\x5a\x4e\xfb\xdf\x6d\xc4\x1e\x96\xdc\x22\x79\xe1\x76\x4a\x19\xd0\xb1\x1c\xc4\x3f\x32\xbf\xb0\x05\x16\x26\xbe\xb5\x7d\xf8\x7c\x16\x04\x4e\x07\x9e\x05\xa2\x61\xc1\x1d\x87\x40\x8b\x85\x17\xa8\x4c\x7d\x8b\x82\xdb\x0d\x6d\x30\xae\xa8\x55\xe2\x15\x9c\x13\xc7\x62\x46\xe3\x89\x94\xee\xaf\xd8\xbe\xbd\x12\x50\x8c\x70\xdd\x52\x6d\x45\x73\x88\x44\xd8\xaa\x5b\xea\x5b\x94\x65\x9a\x89\xb8\xa3\x2a\x8a\x96\xa4\xd6\x96\xf5\x48\x69\xd8\x13\x7e\x96\xc1\x9e\x92\x6f\xfc\x52\x25\x95\x33\x4d\xe6\x46\x9f\xa7\x28\xd1\xfe\xdb\xa1\x34\xf2\xf8\xd7\x4b\x6a\x80\xe5\xb0\x16\x9a\x46\xc8\xbc\x89\xbd\x96\x08\x77\x32\x61\x5c\x5d\x89\x1d\x83\xc0\x84\x43\xfd\xe2\x19\x8b\x52\xff\xed\x95\x4b\x27\xd4\x65\x0f\xc2\xd5\xb6\xde\x6e\x1c\xcb\xfe\xea\xb3\x6c\x40\x0e\x68\x3f\xb0\x88\x53\x05\xf8\x57\x6f\xee\xeb\x0a\x73\x4c\x34\x51\x61\xf8\x11\x4d\x04\xb2\x02\x6b\x9d\xba\x1d\x3e\x64\x40\xe1\x5a\xf5\x2d\xbd\xdc\x8c\x4c\x5b\x6a\x21\x85\x74\xef\x2b\x9f\x01\xbf\xea\x48\x9a\x4b\x99\x20\x93\xe3\x68\xcb\xf7\x84\x9f\x45\x37\x7f\xd9\xff\x25\xd8\x94\xc1\xff\x9d\x1e\x51\x55\xad\x52\xff\x14\x08\x41\xd8\xe2\x2f\x04\x00\x82\xfe\x93\x4a\xa1\xbf\xff\x51\xa6\x5b\x66\x99\x0b\xa2\x55\xfc\x6f\x68\xca\x63\x7c\x58\x9e\xd7\xe2\xd1\xad\x9a\x4c\xbf\x9c\x6a\xf2\x93\xab\x24\x6b\x46\xd6\x39\x15\x76\x3f\xcc\x45\xc2\xfb\xcf\x9b\x32\xc7\x5f\xb8\x39\xa4\x13\x4a\xf7\x94\x9f\xf3\x51\x3e\xa2\x5d\xc5\xc2\x2a\x20\xeb\xe3\x46\xbf\x15\x02\xfb\x84\x66\xc5\x50\x1d\x19\x81\x02\xfd\x19\xa0\xd5\xe6\x1d\x8a\x0f\x54\x57\xc8\x86\xa8\x63\xd9\xe3\x2c\xdd\x11\xf2\x1d\x2a\xff\x02\xd5\x0b\xd4\x7b\xf2\x87\xcc\xa7\x49\x31\xdb\x0d\xc1\x7e\x1c\xfc\x20\x6d\x28\x11\xe6\x6e\x90\xf3\xb0\x97\x99\x1f\xf4\xb0\x28\x9a\x32\xac\x3a\x4c\xbc\x28\xc3\x14\x6a\x1c\x00\xbb\x07\xa5\x16\x50\x09\x20\xee\x41\x03\x04\xc3\x42\x61\xc0\x3c\x04\x51\x6d\xa1\xb4\x42\x03\x83\xc9\x59\x61\x18\x01\x0c\x3d\x52\xff\x7b\x3b\x09\xd3\x09\x3a\x17\x4a\xb3\x87\x54\xb9\x8f\xd7\x0b\x7a\x23\xc4\x71\x0a\xc0\x09\x3d\x2e\x1e\x3b\xf5\xbd\x98\x02\x5d\xf2\x8f\xfe\x11\x06\x7f\xf8\x45\x01\xdd\x11\xea\x4b\x48\xca\x16\x27\x2f\xf2\x44\x68\xec\x16\x7b\x2b\x52\x75\xa8\xee\x16\x5a\x2b\x42\xc2\x16\xac\x1f\xc0\xb0\x07\xfd\x0a\xf9\x2d\xb8\xf8\x2b\xa1\x0c\x94\x6a\x30\x27\x25\xe9\xd0\x57\xf6\x68\x46\x0a\xdd\x2f\x74\x2a\x66\xf8\x7c\x3f\x26\x92\x10\xf6\xe0\x9e\x25\x1b\xa6\x28\x1b\x91\xec\xa5\x3a\xa6\x8c\xdd\xe0\xf5\x25\x79\x54\xc2\xf9\xdd\xf0\x85\x24\x2e\xa7\xd1\x19\x71\x47\xc1\x2e\x75\xe2\x95\x48\xb6\x7d\x3a\xb5\x06\x76\x38\x39\xfd\x0b\xb5\x4c\xf2\xa6\x64\xab\x03\x13\xb5\x0c\x67\x88\xaf\x83\xb3\xd7\xd0\x9d\xd0\x8e\x60\x81\x2b\x31\x3f\x2c\xc3\xbe\x16\xa7\x78\x35\xb2\x01\xf4\x6b\x86\x37\xc4\x4f\x5a\xf6\x28\xf1\xc2\x64\x2b\x4a\xfe\x68\x0a\x93\x18\x2d\xda\x66\x44\x46\x41\x4c\x9a\x87\x68\xb5\x9d\x04\x2f\x3a\xb5\x21\xbd\xfa\xb8\x4a\x2a\xdd\x61\x03\x97\xb8\x5c\x3a\x1e\x19\x46\xec\x3d\xb8\x67\x99\x00\xf6\xd9\x4c\xef\x31\x17\x0b\xa1\x86\xf8\x65\x48\xae\x45\x35\xc7\x9f\xe3\xcc\x8e\x31\x8e\x03\xa1\xdb\xbc\xb4\xbe\x11\xe3\xb4\x7a\x1b\x6d\xa6\x4a\x83\x05\x02\x5b\x60\x53\xbf\x4b\xa5\xfe\x02\xe1\x29\xf0\xbe\x57\xd1\xfc\xb0\x6e\x74\x19\xf5\xcc\xc3\x43\xc4\x37\xa4\xab\x67\xc3\x4c\x4d\x60\x44\xd8\x64\xb3\x21\x90\x37\x2b\x57\x5c\x11\xb7\x2c\x6b\x76\x80\xf0\x60\xcc\x49\x83\x57\x97\xe4\x02\xcc\x8b\x90\x2b\x37\x81\x7d\x98\x93\x33\xc1\xb4\xa5\xe1\x92\xd3\x9a\xb7\x46\x71\x81\xe3\x99\xd5\x31\x5c\xe2\x90\xea\x0b\xee\x3a\xe8\x76\x0a\xf4\x8e\xc1\xbf\x46\xf3\x3e\xec\xd4\xdd\xe0\xb8\x4c\xc9\x1f\x9b\xdc\x3b\xbc\x95\x7b\x9e\x7f\x93\x0a\x60\x00\xe5\x88\x0c\x91\x1f\x4e\xde\x2c\x3e\x45\x4c\xbe\xb3\x04\xe3\x05\x93\x06\x4b\x04\xa3\xf7\x12\xf5\x5a\xf7\xa2\x8a\x31\x64\x62\x08\xe2\x76\x62\xfb\xe1\xff\xc4\x1c\xc1\xb5\xc1\xd6\xc1\xe2\xc7\x50\xc4\x9c\xc0\x60\xc6\x61\x7e\x0c\x4c\x14\x39\x66\x9a\xe9\xfe\xbf\xbe\x09\x16\x13\x50\x0b\xc0\x03\x38\x02\xe0\x00\xd0\x00\x65\x80\x11\xc0\x13\x00\x00\xac\x23\x67\x00\x60\x00\x50\x5e\x50\xf1\xbf\xb9\x92\xd5\xa1\x30\x22\x40\xce\x6b\x14\x83\x79\xee\x9b\xb0\x9e\x9e\x91\xd7\x59\xf7\xfe\x21\xc5\xb9\x41\xbf\x33\x61\xec\x12\x46\x55\xa2\x78\xe1\x03\xdd\xb9\x6a\xd9\x35\xde\xf7\x6c\xf1\x8d\xa8\xc8\x65\x93\x64\x6a\xe0\x81\x21\xae\x21\x5d\x82\xee\x8a\xf5\xc1\x3c\x13\xdf\xda\xbd\x4e\x73\x2d\x58\x0c\xf3\x38\xd6\x0e\x32\x5c\xd3\xd7\xa3\x29\x0e\x49\xf0\xb1\x1f\xf3\x34\x1b\x98\xaf\x37\xbc\x99\x56\xb1\x90\x27\x4e\x97\xf2\x9f\x8e\x3b\x81\x90\xe8\xcd\x09\xe2\xd6\x3c\xc1\xf3\xce\x68\xd2\x61\xcf\x89\x1c\xed\x0c\xbd\x2d\x9c\x86\xb1\xeb\xec\x20\xfe\x5f\x36\x3f\xce\x8a\x13\xc9\x7c\x08\x71\xf2\x4c\x35\x54\xcd\x63\xea\x1b\x91\xc7\x94\x8b\xe5\xdc\x42\xbe\x0d\x2b\x3a\xec\x68\x87\x95\xa6\x21\xde\xc3\x77\x4e\xb5\xfc\xc8\x60\x6c\xc0\xb9\x93\xf2\xf1\x74\x91\xdc\x24\xa4\x7b\x4e\x23\xe6\xb0\xd7\xfe\x35\x8d\xe3\x1d\x42\x43\x0a\xc9\xde\x4b\xdc\xc6\xf6\x50\xff\xac\x56\xc0\xf9\x99\xb2\xd8\x7c\x5a\x08\x31\x4b\xc5\x9c\x27\x80\xf0\x78\x24\x50\xe3\xde\x80\x35\x9a\x4a\x3b\x09\xa7\x15\xd1\x6e\x42\x0c\xda\x8f\x0e\xa7\x92\xbb\x37\xd2\x4c\xe5\xda\xb9\x73\x2a\x1d\x32\x46\x74\xf3\x83\x04\x69\x46\xe4\x57\x0f\x52\xce\xcc\x34\xf2\x32\x0c\xba\x6c\xa3\x9b\xe7\xd4\x70\x94\x5c\x63\x88\x82\xe7\xe3\xef\xc6\x57\x13\x16\xd6\x1f\x12\xbe\x54\x3d\x9a\x3f\xc7\xa4\x4a\xfe\x51\x68\x4b\xd1\xaa\xbc\x80\xe5\x96\x53\x68\x4c\xc1\x1e\x4b\x2a\x3b\x5a\x99\xc9\x2d\x3a\xb3\x73\x19\x25\x4a\x32\x4b\x60\x6b\xa7\x61\x51\x68\x1f\x62\xf9\x37\x3f\xc0\x08\xf5\xcb\xbb\x2c\x7d\x0e\xc5\xbc\x6d\x0c\x4e\xd1\x39\xa2\x62\x6d\xe6\x31\x73\xd1\xce\x0b\x34\x80\xff\x01\xb3\xd8\x19\x69\xf3\x7f\x3d\xaa\x5d\x6f\xa8\xbb\x04\x14\x00\xd0\x73\x5a\xb3\x6e\xf8\x9f\xd8\xc7\x3c\xa7\x36\xb1\x5b\xd5\x8b\x5e\xc0\x8a\x96\x7f\xad\x09\xc9\xfe\xfd\x4f\xb4\x40\xa7\x8a\xff\x9e\x88\xd3\x66\xa6\x52\xb2\x82\xfb\x9c\x3f\x8c\xdf\xfd\x78\xa1\x48\x33\x3f\x00\x06\x1e\x95\x90\xdb\x64\x2e\xd3\x19\x9b\x56\x21\x8b\xdb\x74\x21\xd7\x1b\x19\x8f\x49\xbb\xd9\x64\x3e\xdb\x9d\x98\xdb\x7e\xb9\xd9\x74\x11\xe8\x8f\x80\x46\xca\xe7\xb1\x33\x97\xe5\x8a\xcf\xac\xdf\xe6\xb1\xbb\x90\xe7\x8b\x4e\x26\xe4\xfd\xb0\x33\x9f\xe3\x49\x2e\xec\xff\xfc\xb0\xbb\x98\x1f\x88\xa9\xc2\xe6\x8c\x28\xfb\xcd\x9a\x50\xd2\x3c\x64\x8b\x82\x89\x00\x00\x08\x3a\x1a\x7b\xa4\x5a\x6d\xf6\x1e\xb4\x5b\x5d\xf8\xa7\xf1\x4c\xb4\xdc\x6c\xbb\xee\xcb\x35\x57\xaf\x40\xee\x39\x37\x2d\xc5\x51\xc4\xc8\x2e\x91\x12\xf8\xb7\x34\x07\x5d\xd8\xba\x24\x1f\xfe\xd3\xa5\x4f\xc0\x94\xf1\x7a\x1c\x5f\x44\x7e\xba\x97\x38\x4f\x70\x76\x08\x16\xbd\x92\x6d\x38\xf6\x73\xe9\x1e\x04\x05\xef\xd2\x5b\x22\x06\xdf\x30\x16\x43\x31\x46\x68\x93\xb9\x2d\x45\x60\x8d\xe3\x9b\xeb\x3a\x84\x09\xc9\xad\x9b\x2c\x9f\x1e\x24\xb0\xcd\xbd\xa6\xcd\xb4\x4a\x1e\x2e\xcd\xb4\xc9\x3e\xb6\xc8\xb4\x4e\x5f\x3e\xc8\x1c\x6d\xf5\x3e\xd0\x35\xfa\x23\x89\xa7\x6b\x52\x6e\x9e\xae\xdb\x5b\x9b\x06\x82\xed\x0d\x4d\x82\x01\x00\x00\xb5\xa3\x32\x8e\xab\xdc\x36\xab\xcd\xf8\x8e\x26\xfd\xa5\x4c\xab\x1e\x67\x2b\x0d\x97\x3d\x7f\xa8\x20\x8a\xb9\xfc\xae\x17\x7d\x25\x0c\x8b\x0e\x6b\xed\xae\x97\xbd\x45\x74\x93\x06\x9d\x3e\xb7\x17\xfd\x65\x2c\x9b\x01\x6f\x2f\xb7\x2c\x5f\xe9\xa9\x19\x29\xbf\xd3\x32\x53\x7c\xa3\x61\xa2\x62\xa0\xab\x29\xf8\x5b\x5c\x59\xf8\xaf\xb4\xfa\x4f\x79\x49\x55\x51\x45\x99\xa3\x91\x95\x99\x9d\x89\x8d\x85\x83\xb1\x75\x13\xed\x17\x32\x0c\x2a\xa8\x20\x40\x90\x02\x30\xa0\xd9\x7e\xee\x3f\x4b\xae\x6b\x4a\xf3\x3a\x4a\x82\x00\xbd\x4e\xb2\x0e\x0d\xbc\x8e\xd3\x16\x37\xbc\x4e\xf3\x1e\x85\x9f\x8e\x52\x26\xbb\x9f\x4e\x72\x2e\x03\x9e\x8e\x33\x36\x3f\x9e\x4e\xf3\x3f\x93\xa9\xe5\x92\xbe\x2b\xb4\xa3\x64\xd5\x9b\x8d\x26\x31\x28\x75\x43\x87\xc7\xe0\x30\xa8\xfc\x93\x6f\x43\x4a\xfb\xa7\x5e\xa1\x52\xa1\xd8\x05\x1f\x9f\xcd\x69\x3b\xfd\x4f\xa1\x03\x2d\xaf\xdd\xed\x74\xba\x82\x05\xa9\x48\x26\x30\x55\x4a\x9b\x93\x38\x6a\x87\x3e\x3a\xbd\x95\x3c\xfe\x1a\x6c\x64\x26\x69\x3b\x27\xa5\xaf\x4e\xcc\x6e\x07\xfe\xcb\xb6\x4b\x2b\x3f\x28\xa7\x56\x3a\x9e\xc9\x85\x6f\xb8\xeb\xeb\x17\xfb\xa3\x18\xfc\xfa\x44\x68\x7d\x4d\x2b\x3c\x58\xf6\x97\xd5\xb1\xb7\x90\x66\x54\xa3\x52\xa7\xc1\xe1\x7f\x05\xf9\xb9\xf4\xff\x57\x91\x0d\x4c\x58\x25\x84\x65\x00\x00\x20\x79\xe9\x19\x68\xb6\xda\x6c\x9f\x90\x6c\xdf\xe1\x3d\xe3\x8b\x6c\x66\x1a\xc1\x29\xce\x2f\x8d\xf2\x37\xf0\xed\x54\xe4\x93\xd8\xac\x96\x22\x82\xc8\xa2\x15\x53\x8a\xc8\xbc\x91\x6d\x90\xc8\xb2\x13\x91\x36\xdb\xac\xfe\x5b\x69\xb6\x45\x3b\xa1\x45\xb6\x79\x33\xdf\x41\xb6\x65\x37\x1c\x9e\x8e\x59\x1d\x4d\xba\x8e\x45\x1b\xae\x86\x8e\x79\x13\xd7\x99\xae\x2d\x69\xcd\xc2\xaa\x11\x15\x42\xae\x73\x1f\x85\xff\xdd\x2a\x18\x80\x8f\xe2\x32\xc2\xc7\xa3\xe7\x32\xc0\x25\x21\xe8\x34\x4a\x2a\x8d\x72\x3b\x46\xa5\x14\x77\x35\x41\x50\x14\xc7\x31\x0c\xab\xc6\xcd\x31\xce\xc8\x31\xc6\x36\x49\x89\xcc\x58\x37\x86\x64\x5b\x59\x3f\x41\x4b\x6c\xd7\x30\x80\xd6\xe1\xe7\x64\x17\x5b\xd5\xbc\xec\x10\x99\xe7\x77\x6d\x9f\xb1\xfe\xb0\x34\xaa\x14\x64\x18\xb2\xd5\x1b\x15\x0c\x00\x00\x96\x0c\x35\x2a\xec\x57\x9b\x9b\x3c\x7d\xed\x28\xff\x7f\xb8\x24\xf7\x0b\xcd\x0f\x29\x4c\xae\x8f\xf9\x97\xdd\x1e\x51\x9a\xde\x9c\x50\x0d\xec\x0e\xfe\x93\x54\x17\x5d\x9e\xd5\x16\x5e\x92\xd6\x14\x5f\x95\xd7\x15\x5a\x94\xd2\x10\x5b\x91\xd3\x11\x59\x96\xd1\x32\x99\xff\xd5\xab\x27\x81\x11\x00\x00\x3c\x18\xa2\x75\x37\x77\x35\xd9\xdb\xda\xac\x7a\x08\xfc\xb3\xa7\x03\x7a\x5f\x84\x67\x18\xc0\xb5\xf4\xe6\x2d\x6e\xc0\x26\x7d\x3d\xa9\xf2\xdc\x78\xdd\x2a\x52\x12\x7e\xdd\xa9\x70\xec\x7e\xdd\x2e\x33\x0c\x78\xdd\xad\x09\xfc\x90\xfb\x4d\x2f\xeb\x82\x91\x4c\xf9\x2b\xfb\xee\x2b\x1e\xd8\x7c\x28\x95\x46\x37\x41\xcf\xfb\x06\x97\x5e\xbd\x58\x2b\x5a\xd5\x7c\xe4\xd7\x5f\xf5\x12\x9d\x78\x1d\xf7\x13\x2e\xab\x39\xea\x62\xed\x58\x0d\xfb\x15\xf7\xa3\xb9\x12\xdd\x44\x03\xff\x17\x54\x02\x4e\xb3\xa5\x28\x15\xd3\x41\x85\x4c\x4e\xf3\x95\x38\x6d\xd7\x03\x26\xad\x46\xb3\xe5\x98\x5f\xb6\x0b\xf6\x4b\x38\x78\x98\xb8\xd8\x2d\xe6\xab\x09\xfa\xbe\x0f\xa4\xbc\x6e\x7b\x4b\xd1\x6a\x96\x13\xfa\xad\x6e\xfb\x2b\xf1\xba\x9e\x17\x42\x98\xb0\xe8\x5f\x30\x01\x00\x40\xcf\x49\xfa\xff\x5d\x0c\x9b\xed\xbb\x85\xec\x40\xc1\x22\x62\x21\x70\x18\x94\xea\x99\x4e\x98\x94\x92\xd1\x78\x54\x1a\xb9\x5e\x88\x58\x34\xb2\xe9\x94\xbf\xb2\xdd\x08\xd9\xcd\x87\xd3\xa9\x34\x81\x7e\x70\x48\xb8\xdf\x34\x0a\xd5\xb3\x5c\x70\xbf\xff\x2a\xd7\x28\xd2\xc8\xf3\x41\x25\xe2\xb2\x5e\x28\xfc\x95\xe3\x41\xfa\xff\xa0\x9e\x7c\xd0\x7d\x01\x62\x89\x43\x01\x00\x41\xfe\x67\x2b\x93\x43\xcd\xff\x83\x69\x7b\x3b\xee\x29\xf2\x76\x37\xea\x18\xf8\x76\x3f\x19\x08\x05\x0d\x87\x88\xf7\xff\x06\xb8\xa0\x2f\x21\xb1\x30\x00\x71\x00\x40\x14\x5f\xaf\xac\xed\x33\x3d\x00\x2e\x74\xda\x6c\xd0\xa4\x69\x99\x54\x31\x63\x75\xf7\xfe\x19\x4e\x25\x19\xd7\xdd\x8a\x7f\x58\x22\x4d\x5f\xe0\x8b\x1f\x5d\xcf\x78\x45\x80\x86\x86\x8a\x23\xbe\xb2\x67\xc6\xa6\x6c\x26\xcc\x2c\xb2\x3c\xda\xef\x95\x83\x9a\xdf\xce\x19\xee\x6d\x14\x3c\x9f\xb2\xde\x8f\x3e\xae\x1c\x37\x53\x52\x68\x15\xa4\x52\x26\xeb\x26\x43\x04\x2a\xa3\xb1\xf0\x26\xee\xde\xbf\xa6\x0f\x6f\x96\x7e\x80\xb7\xbe\x5a\xd9\x0c\x58\xb3\x42\x87\xaa\x24\x84\xca\x9e\x6c\xb8\xa0\xc4\xc4\xfa\x31\xd5\xe7\x8f\xb6\xa3\x37\x76\x75\x78\x16\xab\xda\x82\x8c\xaf\x26\x1e\xf0\xe4\xc3\x58\xec\x96\x79\x90\xa7\x1e\xbc\x6b\xd9\xf9\xf4\x19\xad\xb3\x20\x25\x6e\x8e\xaf\x67\xa0\x83\xb5\x82\x5d\xc7\x34\x3e\x27\x9d\xe9\x30\x4c\xec\x92\x1d\x26\xd1\xad\x38\x34\xc4\x39\x3e\x2f\xf4\x13\x58\x7d\xf8\x7b\x13\xb6\xfe\x23\x78\xbf\xa2\x3f\x2f\x05\x27\xc1\x73\x1c\x84\xe8\x3b\xbd\xc9\x5e\x32\xc5\x3d\xee\x78\x66\xa1\x84\xa9\xdf\xfc\x7d\x36\x34\x4d\x33\x86\x9c\x7f\x07\x66\x8a\x8d\xa5\x78\x0b\xcb\x60\x4d\x96\xb6\x19\xaf\xa0\x47\x5b\x79\xa7\x1e\xec\x7a\xa8\xab\x50\x4a\x18\x3e\x4a\x54\x1c\x31\x46\x67\x95\x2f\x15\x11\x6e\xe4\xd5\xf3\x2e\xc2\xe3\xf5\x28\xa3\xf4\x68\x20\x49\x10\xbe\xbc\x3a\xba\xfd\xfd\x29\x26\x72\x48\x9c\xb5\xf4\xc1\x48\x51\xe7\xe4\xe2\x7c\x7b\xeb\x18\xc7\x68\x77\x46\x72\xc7\x62\xce\xed\x81\xa6\xc8\xec\x40\x66\x20\x7c\x92\x44\x85\xcd\x81\x4c\x2c\x80\x80\xcf\x83\xce\xb2\x9f\x01\xee\x1b\x9c\xe8\x1d\x1e\x18\xef\x1f\x95\x7e\xe6\xfa\x2f\x66\xf6\x15\x8f\x20\x4b\x5b\x6b\x79\x89\x8f\xb7\xad\xd5\xdb\xeb\xd9\xca\x41\x69\x8c\xb1\x92\x24\x57\x6f\x4d\xb0\xd3\x2f\x55\x04\xfa\xbf\x68\x06\x62\x04\x3a\xf2\xfd\x89\x9e\xa1\xbe\x11\x89\x2e\x0d\x23\x33\x63\x73\xd3\xc3\x82\xe7\x8e\x5a\x17\x27\x97\xeb\xa9\xb5\x14\xed\xa5\xe3\xcf\x7d\xe4\xb9\xcb\x86\xd6\xcf\x4a\x0a\x56\xb6\x86\xda\xfa\x3a\xd7\xff\xd0\x5c\xdd\x5c\xdf\x3a\xa2\x80\x4a\x31\x08\x28\xff\x2f\x89\x00\x02\x1d\xfe\x23\x8f\xdc\x2f\xf7\x20\x56\x1c\xb0\x93\x25\x7e\x2e\xe2\x52\x51\xfa\xca\x2d\xf6\x82\xf4\xab\x6b\xc0\xb0\x61\xbd\xa6\x61\x70\x2b\x4a\xd8\xbf\xda\xd7\x62\x31\x51\xaf\x10\x82\xf9\xcf\x03\x4e\xa3\x0d\x16\xdb\xc9\x17\x0e\xb4\xec\xe5\x84\x1b\x49\xd8\xc0\xa6\xdb\x3f\x38\x01\x74\x90\xe0\x0f\x2f\x41\xf4\xe7\x66\x78\xb9\x43\x17\xb1\x26\x34\xb2\xa3\x6c\x8d\x95\xbc\xc6\x30\x1e\xc2\x83\x3f\xb9\xdc\xd8\xe0\xeb\x2c\x02\x6a\x9b\x17\x57\x33\xfa\xf2\x59\x73\x0c\x58\x9e\xb6\x6f\xf6\x27\x92\xe9\xdb\xc2\xc8\xe0\xbf\xad\x42\xef\x9e\x9e\x9f\xb8\x2d\x94\x6a\x77\xab\xb6\xba\xee\x72\x14\x7c\x97\x1b\x23\xaf\x3f\x2f\xf6\x47\xae\x4a\x75\xa2\x54\xe7\x9b\x24\x8b\x45\x8a\x1a\x9b\xb3\x44\x72\x08\x27\x2c\xb0\x77\x1a\xdf\x49\x2c\x8f\x23\xfd\x48\xed\xd7\x77\xc4\x10\xf7\x1f\xf4\xa9\x1b\xfe\xea\x6d\xd2\x5e\xef\x5e\x34\x1c\x54\xe5\xcd\xe6\xf3\xfb\xc4\xd8\xf7\x43\xd4\xfd\x1d\x1e\x83\xef\x6f\x6a\x26\x06\x1c\x46\x89\x0f\xd4\xd2\xf1\xbe\x33\x42\x38\x0e\xf2\x24\x8c\xa0\xe5\xa1\xc8\x33\xa1\x5c\xb7\x04\x6a\x01\x09\x41\xa6\x5b\xb0\xbc\x70\x13\x41\x80\x56\x00\x73\x30\xc3\x16\xd1\x97\x60\xf2\x1e\xa5\x2d\xfc\x2b\xe2\x27\xd3\x29\x9e\x6b\x75\x6d\xab\xf2\xe4\xcc\xe3\xf4\x09\x20\x1e\x7f\x29\xa7\x94\xdd\x66\xa9\x39\xbc\x6c\xc6\x97\x57\x97\xe7\x28\xff\x52\x55\x0c\x85\xae\x5a\x67\x2a\x86\x70\x7a\xf9\x36\xf7\x34\x44\x05\xea\x99\x00\xcc\x20\xd2\xa6\xa9\x10\x42\x9a\x9e\x18\xfe\xc2\x38\xab\x66\x63\x09\x39\xd6\x3f\x3c\xbd\x21\x58\x85\x8c\xe3\xb7\x20\x4a\x5b\x4b\x97\x06\x4e\x9f\x55\x1e\xca\x0c\x4a\xff\x54\xe8\x41\x8f\xfb\x4b\x29\xa5\x2c\x79\x2c\x42\x5c\x76\x1f\xfd\x61\x7e\x04\x59\x3f\xdd\xbb\xa7\x1f\xae\xcf\x62\xd4\x03\xa3\x3f\xcc\x46\x79\x67\xb9\xc7\x8b\xe7\x52\xc6\x7f\x88\x28\x0c\x26\x2b\xb4\x49\x41\xc7\x1d\xe5\xee\xa2\xc6\x69\x2c\x79\x59\x03\x21\x2f\xcb\xbf\xc9\xcd\xa6\x65\xe6\x24\x0e\xc5\x26\x79\x0b\xa7\x8e\x62\x9b\xda\x65\xda\x96\xd6\x8e\x54\x2c\xc9\x2c\x6d\x69\x3e\x15\x6e\x34\x35\x7e\xf4\x7e\x7f\x94\x97\x29\xfd\x86\xd2\x59\xce\xf1\x6b\x3b\xb6\xb0\x4e\x15\xd1\x4a\xef\x54\xfa\x0f\x19\xa9\x63\x46\x6c\xc2\x52\x74\x75\x64\x8d\x5f\x35\x80\x74\xf2\xaf\x0b\x2c\xa7\xcf\xb1\x6a\x9b\xc7\x21\x52\xad\x40\x5d\x4b\x01\xb1\xf6\xb2\x16\x19\x9a\xe0\xce\x9f\x1b\x51\x2b\x73\x1e\xf8\x6a\x25\x6e\x93\xa9\x6b\x63\x2a\xee\xa3\x27\x1e\xeb\x60\xb9\xd9\x68\xcf\xc2\xd3\x94\x7d\x02\x37\x3f\xab\x38\xd4\x76\xd7\x03\x88\xcb\x66\xe2\x74\x10\xef\xd9\xf8\x72\xda\x19\xd3\x72\xc1\x6b\x9e\xb5\x96\xf6\xb2\x76\x26\x7e\x7f\x12\xfc\x45\x88\x60\x46\x41\x43\xd0\xa1\xaa\x44\x55\x72\x22\xd6\x19\xa3\xc7\x85\x67\x62\xe6\xcb\x67\xe5\x9a\xc0\x01\xda\x7a\x5d\xb0\xab\xc9\xc9\x36\x35\x7c\x17\x76\x37\x4b\xf9\xb9\x04\x25\x56\xe8\x60\x34\xfb\xb2\xcc\x5c\x3f\x5f\xff\x33\xea\x44\xfe\xf5\x2d\x71\xc0\x07\xca\x21\x8f\xcc\x9e\x94\xdd\xac\x9e\x7b\xc5\xf9\x77\x0f\x18\x24\x6e\xb8\x3c\x40\x6f\x29\xfc\xbb\xd1\xaf\x7f\x9e\xb4\x0c\x8b\xd1\xf4\xb1\x01\x23\xd2\x13\x34\x76\x96\xb5\xfe\xc3\xf6\x96\x6b\x0f\x34\x76\x96\x3d\xb8\x8a\xfb\xf0\xeb\x0c\xe9\x75\x7e\x35\xc5\x45\xdb\x9a\x3b\x3c\x85\xd2\x82\x3f\xca\x45\x12\x7d\x7e\xac\x71\xa3\x0c\x4e\x70\x31\xe2\x8a\x46\xad\xa4\xff\xb5\x97\xd9\x4e\x2f\xc0\xa6\x5c\x9b\x29\x20\x3c\x61\x98\x61\xbc\x6f\x20\x5f\x10\x67\x79\x1e\x42\x3d\x26\xa5\xef\xbd\x50\xc2\x1b\x84\x49\x09\xe4\x78\x1e\x1e\x99\x20\xa7\xde\x5e\x2e\xb8\x85\x6c\x84\x5b\xfa\xe2\x0b\x92\x7b\xfe\x02\xcb\xfc\xfa\x4d\x47\x69\x28\xa6\x98\x15\xe7\x9b\x88\x77\x8a\xcf\xe0\xa6\xbf\x0e\x88\x9b\xbb\x1f\xa3\xc3\x1d\x7e\x81\xdd\x5b\x04\xba\x47\xe2\xb9\x87\xd4\x3e\xcd\x54\x04\x38\x64\x51\x64\x47\x61\x1a\x12\x4e\xff\x3b\x56\x2a\x7c\x92\xa2\x8d\x0e\x42\xcb\x27\xbc\xcd\x62\x0b\x9c\x5c\x92\x03\x59\x14\x74\x18\x1d\xe2\x9d\xad\x99\x7c\xae\x15\x06\x5c\x8c\xbd\xac\xa1\x66\x26\x04\x1d\x7f\x79\x80\x41\xd5\x2a\x10\xd3\x37\x1c\x72\x0b\x93\x97\x6e\xbd\x94\xd6\x12\x79\x5c\xbd\x38\x57\x71\x1c\x80\x26\x62\xc0\xfb\x5b\x65\x62\xdc\xd7\xd8\xf0\x11\x93\x37\xa7\x65\x6d\x49\xed\x71\x52\xaa\x71\xf1\xbc\x96\xe0\x78\xde\x59\x5f\x95\xc6\xed\xd2\x71\xf4\xb7\x56\x60\x73\x72\x2c\xd7\x5b\x4e\x61\x1e\x65\xe3\x2a\x21\xa6\x61\xf3\x71\xb2\x30\x7c\x87\x91\x4b\x59\xc7\xe8\x67\xb9\x67\x9f\x12\xa7\x62\x45\xb2\xbb\x92\xd6\xbe\x3d\x76\xfb\x14\x73\x9d\xcf\xcd\xe5\xbf\xf8\xaa\x2a\x5d\xea\x2e\xaa\x33\x14\xc7\xdf\x8d\x23\xec\x44\x4e\x2d\x30\xa7\x0f\xba\x1b\x70\xc7\x6b\x34\xb3\x23\xba\xe4\x55\xf5\xd9\xfa\x75\x3f\x0d\xcf\xc3\x97\x40\xff\xf4\xf3\x19\x7c\xcf\xc6\xef\x45\x7e\xd6\x64\xcd\xfc\x36\xcf\xd1\x21\x62\xd2\x6a\x11\x28\xcd\xa1\x08\xd1\xe1\x28\x32\xad\xc4\xab\xd1\x86\xe9\x07\x5f\xbe\xf3\x7c\x78\xbe\xc7\x4b\x23\x48\x50\xd8\x7f\x16\x72\x9d\x5a\x41\x66\x03\xdb\x32\x45\xec\x7d\x84\x3f\x18\xd8\x60\xe6\xcb\x59\x57\x0d\x8a\xa9\xcb\xef\xe4\x48\x11\xe0\x29\x56\xd7\x10\x17\xae\xb1\x72\x36\x64\x9a\xba\x1e\x0c\x95\x67\xb5\xac\x48\x06\xc3\x9d\x86\xc5\x77\x13\x89\x48\xe8\x91\x51\xab\x3a\xbd\x19\x9b\x75\xaf\x77\x1a\xfd\x9c\x35\xda\xcd\x76\xb7\x5c\xd2\xc8\xf4\x62\x67\x68\x38\x10\x52\xd2\xce\x98\x32\x4f\x34\x1b\x95\xe3\x05\xfa\x06\x31\x6f\x79\x77\xbe\xa3\x65\x25\xdf\x75\x83\x7d\xd6\x47\x05\xce\xc3\x72\xfa\x04\x3f\x30\xf8\x73\x3b\x97\x52\x11\x92\xea\x19\xdb\xf6\xbb\x76\xbb\x52\xcb\x4a\xf6\xac\x65\x3d\xad\xff\x04\xc6\x45\x80\xd9\xae\xb1\xaf\x39\xae\x91\xaf\x19\x78\xef\xac\x04\x29\x5e\x38\x45\xbe\x26\x44\x99\xee\xd0\xed\xf0\xec\x84\xf1\xd2\xbc\x80\x09\x79\x89\x30\x22\xc1\x98\xd7\x54\x49\x77\xf1\x08\x60\x9b\xb7\xf8\xa3\x50\x72\x04\x30\x85\xb3\x7c\xf1\x7b\x7e\x04\x98\xad\x2e\xfb\x53\xfe\x4d\xfc\xed\x67\x2e\x86\xff\x61\x99\xf5\xd3\x04\xcc\x15\x36\xf9\x28\x3a\xfc\x79\xfe\x2f\xc4\x15\xf4\xb4\xbd\xb7\xc1\x41\x3a\x23\x26\x1e\x9f\x40\x32\xe9\x7f\x06\xe7\x4f\x6c\x3f\xc1\x3a\xfe\x0a\x9f\x20\xb8\x8e\x66\x3c\xc6\x88\x3f\x80\x4c\x7b\xa1\x08\x69\xb4\xf8\x34\xbb\x4f\x26\x46\x3f\x05\xce\xc3\x52\x29\x59\x95\xa8\xdc\x3b\x53\xc2\x5b\x90\xf7\xe2\x38\x76\x29\xf8\x6d\xb7\x2d\x5d\x5f\x26\xf5\xf2\xc7\xb3\xc2\x98\xdf\x53\xc4\xb9\x29\xb2\xef\xe1\xd6\x01\xa2\xa5\x89\xc5\x36\xa2\xa6\x89\x85\xf1\xfe\x40\x0e\xba\xa1\x07\xf7\x7f\xe6\x01\x74\xc2\xd7\x30\xe8\x7c\xbe\xda\x87\xfc\xcf\x32\xb0\x81\xe0\xb1\xbe\x91\x58\x1e\x11\x6e\xc5\xec\xd5\x62\x92\x83\x3e\xa2\xd7\xf5\xff\x74\x9d\x65\xc3\xef\xe9\xc6\xd4\xf4\x70\x6b\x6f\xe7\x00\x51\xfa\xff\x9b\x23\xc0\xee\xec\xff\x4c\x64\x5b\x7e\x8c\xb1\xb2\xd3\xeb\x76\x7b\x34\x31\x3e\x2f\x34\x25\x36\x87\x4e\x2f\x3a\x2b\x3c\x0d\xdf\x51\xd8\xef\xb9\xee\x7f\x3e\x11\x26\xc0\xd6\x50\x7b\xb3\x33\x1e\xc9\x22\xf2\x3f\xdb\x02\x5e\x51\x5b\xfc\x6f\xe7\x87\xd3\x47\xa5\x0a\xcc\x22\xd0\x85\x4e\x93\x62\x1b\xbe\x86\x62\xb5\x13\x8e\x86\xb0\x5f\x3f\x1f\x6f\xff\xed\x15\xea\xaa\x84\xb7\x1d\x59\xc2\x95\x6e\xee\xb6\x5a\xdf\xa0\x46\x9b\x77\x5f\x8d\x6b\x58\x43\x9d\xab\xf3\xed\x01\x76\x02\x98\x04\x38\xbe\x4b\xc8\x5a\x7d\x9f\x55\xaa\xbe\xf4\x01\xad\xd8\xbe\x0e\x06\x78\x41\x99\x5e\x6d\xf4\x3a\x51\xd2\x9b\x50\x51\x99\x1a\xee\xc1\x0f\xe6\x91\xa0\x90\xa0\x0c\xc3\x11\x13\x2e\xe5\x36\xb3\xb7\x12\x8f\x36\xb0\x5a\x05\x2f\xa1\xe9\x75\xc7\x69\x90\xd8\x90\x50\x9e\x31\x92\x28\x43\x89\xc0\xe3\x73\xc3\x70\x6b\x6b\xd4\x02\x32\x66\x0d\xb6\xe1\xbb\x61\x72\x11\xb4\x48\x09\xb4\x08\x78\x83\x29\xfd\x14\x7d\x09\x09\x08\x48\x82\x30\xbe\xf7\x8d\x6d\xd5\xab\x84\xd7\x51\xb1\x9a\x84\x4a\x48\x83\xa5\x0e\x70\x32\xe2\x6d\xbe\x6e\x30\x27\xc0\xc3\x4b\xe1\x45\x26\xec\xfd\xfe\xf2\x3b\x59\xe6\x2b\x20\xcb\xbe\xff\x4f\x2f\xc5\xe0\x44\x5f\x51\x53\xe8\x75\xe0\x29\x7c\xfa\x46\xbc\xbc\xe8\x79\xe5\x37\x66\x40\x78\xd5\xb7\x08\x00\x00\xf0\xff\x09\x00\x00\xff\xff\x5d\x7a\x3e\xde\x44\xfc\x00\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.woff", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff2 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x18\x40\xe7\xbf\x77\x4f\x46\x32\x00\x01\x00\x00\x00\x00\xc9\x14\x00\x10\x00\x00\x00\x01\xc0\x08\x00\x00\xc8\xb5\x00\x02\x00\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\x40\x1c\x84\x48\x06\x60\x00\x90\x6a\x08\x81\x1c\x09\x97\x17\x11\x08\x0a\x85\xcd\x30\x85\x88\x1a\x01\x36\x02\x24\x03\xa0\x22\x0b\x90\x24\x00\x04\x20\x05\x86\x74\x07\xc7\x51\x0c\x81\x2e\x5b\x35\x94\x91\x02\xc6\x8d\xb6\x73\x85\x52\xf2\x5e\xb7\x21\x00\xed\x33\xd5\xdb\xb5\xba\xe9\x0b\xcc\x39\xf0\x96\xcd\xf4\x66\xf5\x7d\x31\x91\xfc\x62\x4b\xd8\x36\xb4\xe2\xdd\x0e\x60\xb5\x57\x05\xc8\xfe\xff\xff\xff\xff\x1d\x49\x45\xc6\x4c\xca\x48\xbb\xe1\x10\x01\x40\xd5\xeb\xd1\xfb\x1f\xf2\x10\x05\xc9\x45\x8e\x5c\xa2\x3b\x94\x52\x3d\x17\x95\xbe\xeb\xba\xa3\x50\x72\x04\x0e\xbd\x90\x11\xf0\x2a\x38\xf2\x10\xe4\xe1\x0d\x4f\x35\xcd\x98\xbc\xcb\x4d\xa7\x53\x44\xd5\x1c\xa5\x78\x29\x90\xe7\xec\x39\x0b\x8e\x18\x62\xd2\x5c\x78\xa4\x58\x62\x42\xf0\x0a\x51\x39\xb2\xcb\x3a\xb9\x07\x24\x09\x12\x04\x49\x82\x44\x0e\x19\x92\x25\xd1\x16\x71\xd4\x99\x2e\x70\xaa\x74\x2d\x35\x1b\x91\xee\x66\xab\xf1\x05\x81\x4e\xb8\xe3\xab\x3e\x16\x3f\xd3\xd3\xfe\x36\x95\xf0\x6e\x8f\x17\x9a\xa9\xfa\x16\x23\xed\xe8\x92\xf7\x32\xb5\xda\xd3\xf8\x32\x5e\x11\x3b\xfa\xb1\x4e\xbd\xa9\x04\x53\xf3\xdd\x9c\x71\xc6\xfb\x87\x84\x13\xc4\xc1\x62\xb1\x44\x2b\x76\x7c\xec\x9c\xf8\xde\xda\x57\xfa\x07\x3f\x59\xbc\x5b\x0b\xbc\x59\xad\xfd\x75\xe1\x40\x40\x9c\x7d\x74\xb1\x20\xcc\xc6\xc5\x53\x54\xdb\xcd\x21\x3b\xf7\xe5\xb0\x18\x43\xb2\x5b\xc2\xed\xf0\xa0\xc0\x86\xcf\xc0\x57\x54\xb3\xa8\xb1\xdb\xb2\xd7\x06\x37\x53\xd3\xf4\x78\x19\xa5\xd5\x7a\xf6\x49\xa2\x3d\xef\x5f\x7b\x5b\x2d\xff\x6b\x6f\xb4\x38\x37\xff\x6f\xc9\x1a\xca\xb8\xbd\x40\xcc\xd2\xa1\x4b\x8f\xba\x66\xbf\x10\xff\x7e\xb3\xcf\xaa\x2b\xb5\x7a\x66\x1e\x00\x7b\x16\x11\xbc\x4c\x41\xf6\x86\xe9\x2b\xef\x74\xd8\x41\x06\xb7\xf6\xdd\x8f\x6c\xd3\x43\xa2\x01\xa2\x8a\xaa\xc9\x81\x1c\xda\x13\x6a\x4d\xfa\x5f\xfe\x00\x48\xa8\xbd\xf9\x39\x14\x66\x42\xee\x80\x9f\xdb\xdf\xdb\xc6\x28\x51\xb0\x06\x06\x4c\xa4\x73\x20\x1f\x89\x14\x5a\x04\x47\x88\x11\x05\x1f\x91\x01\x23\x36\x40\x47\xd5\xa8\x1c\x65\x14\x28\x35\xc0\xe7\x00\x8b\x56\x3a\x87\x05\x03\xb4\xcd\x0e\xa7\x88\x35\x03\x1b\x94\xb0\x66\x60\x05\x2a\x82\xa0\x60\xa1\x0d\xa8\x20\x21\xa1\x80\x82\x28\x28\x66\xcc\xc8\x39\x97\xe1\xca\xa5\x0b\x67\xcf\xb9\xa8\x5f\xff\x2f\x7e\xae\x5d\x80\x5b\xff\xfe\x7f\x14\xd5\xa4\xf5\x5c\x2e\x9f\x42\x62\xb0\x06\x83\x90\x28\x8f\x46\x08\x81\x12\xb8\xcf\xef\xbc\x39\xad\x97\x1d\xc7\x89\x1d\xb0\x85\x26\x92\xcc\x01\x9c\xa6\x90\x6a\x86\x77\xbb\x9f\x80\xaf\xd7\xce\xeb\x66\x7a\x3f\xfe\x01\x7e\x9b\x3d\x2e\x9c\x6b\xa3\x51\x42\xa2\xea\x15\xf0\x88\x12\x01\xb1\x40\x14\xd1\xc6\xcc\x45\xea\x66\x2c\x6e\xa9\xdb\x74\x51\x6e\xb7\x5b\xdf\xa2\x2f\x3a\xfe\xe9\xdd\xee\xfe\xee\xda\xa4\x6d\xe0\x91\xd0\xfb\xb7\x86\x88\x3e\x70\x1b\x92\x80\x87\xe7\xe7\xf8\x9d\x3b\x86\x7a\x14\x97\x90\xc4\x9a\xb8\x44\xbc\x34\x1a\x25\x11\x0a\xf1\x8b\x3a\xb6\x07\xcf\xcb\xc5\x1e\xbc\xbb\xdd\x4e\x03\x0a\x38\x0f\x9b\x67\x2d\x91\x34\xcd\x2c\x4c\x24\x93\xac\xf9\xfb\x50\xe0\xb6\xdd\xe3\xb1\xce\x5b\xc3\x3c\xa4\x4a\x05\xbe\xfa\xb5\x7f\x7b\xf7\x9d\xee\xb9\xef\x57\x14\x83\x8b\x11\x6c\x51\x26\xc2\x93\x31\x24\x7c\x84\x45\x36\x02\x7d\xca\x33\xcc\xd5\x9a\xee\xda\xbf\x14\xf0\xbe\xc8\x52\xc4\x15\x1d\xfb\xc6\x17\xc7\x27\xfc\x1c\x42\xd4\x35\xb6\x21\x10\x00\xf7\xaa\xd6\x0b\x90\x79\x06\x10\x57\x5f\xe7\x10\x73\x1f\x8b\x0a\x04\xb5\xa2\x42\xa6\x56\xba\xbc\x41\x22\xa7\x21\xfd\x3b\xf2\x3d\x57\x77\xf7\x63\x4a\x0a\x76\xeb\xa2\x37\x3c\xff\xe9\xac\xfe\xbe\x02\x55\x49\x46\xd9\xdc\x1a\xb7\x49\x76\x5b\xcd\xa8\x01\xd4\x12\xd5\xd2\x07\x3e\x39\x06\xe9\x66\xd1\x87\x20\x59\xab\x5f\xf3\x23\x97\x6f\xdc\x61\x79\x34\x1a\xd0\xc9\xd3\x11\x0e\x00\x16\xc2\xf8\x36\xdc\x3d\x13\x90\xa7\x4e\x77\xdf\x32\xc3\x8c\x8e\x06\xda\x05\xe9\xee\x67\xfb\x64\x92\x0e\x5e\xea\x53\xb3\x01\x62\x52\xaa\x51\xd6\xa7\xbe\x5f\x6d\xb3\x40\x64\x60\xbb\xb1\x77\x24\x50\xd1\x55\x6a\x9d\x5e\xc0\xf9\x7a\x20\x00\x80\x20\xfc\x3f\xb3\xf5\x5a\x51\x26\x4e\x73\xc9\x8b\x18\xd3\xc5\x27\xc6\x5a\x54\x20\x0a\xbb\xfb\x7f\x51\xa7\xa8\xe9\xaa\xc3\xc4\x9d\xe8\x90\x00\x24\xb5\x55\xe7\x7d\xcc\x8f\x31\xf5\xd7\x55\x50\xef\x40\x11\x5f\xa8\x21\x96\x92\x35\xff\x58\xa3\x00\x06\x62\x00\x42\xb4\x51\x6a\x44\xf6\xee\x01\x82\x1f\xc2\x50\xca\xa9\xd2\xfd\xb0\x6d\x2e\xef\x07\x2b\xe2\x64\x9b\xe5\xef\x97\x7c\x47\x44\x33\xb9\x2f\xd9\xa2\xc6\x76\x5e\x8f\x4a\x0e\x99\x1e\xea\x8e\x9d\xe2\x2e\x05\xc1\xef\xc8\x98\x67\x9a\x61\xdf\xa7\x6a\x75\xf7\x7b\xef\x7f\x80\x94\xec\x4c\x42\x89\x72\x8a\x35\xd2\x84\x28\x59\x13\xac\xa2\x8c\x49\x41\x0b\x81\x53\x5a\x18\x13\xf2\xa2\xa8\xdb\x6d\x2f\x27\x1f\xe7\x78\xdc\xcd\xcb\x74\x9e\xdf\x8e\xbf\x42\x4d\xc7\xec\xcb\x68\x56\x52\x21\x35\x66\xeb\xcc\xf7\xa5\xa3\x5d\x4d\x5f\xe6\x5f\x87\x31\x65\xca\xb2\xf8\xc0\xe1\x50\x33\x32\xf0\x12\xd0\x43\x6f\x92\x51\x83\x87\xe7\xde\xbd\x76\x6b\xe3\x1a\xd4\x09\x24\xc0\x52\x5c\xe3\xf8\xd8\xba\x16\x75\x22\x48\x34\xb0\x97\x2d\x9a\x1b\xa8\xac\xe3\x01\x3f\xc1\x02\xfa\xec\xff\xef\x4b\xd5\xba\x76\x83\x59\xf6\x7a\xe9\x90\x37\x05\xcd\x46\xcd\xc6\x2b\x29\x6a\xe3\x29\xdd\xb6\xf6\xb8\xc7\xad\x3b\xfe\x7f\xff\x37\xd0\xfd\x3b\xb8\x03\x40\x37\x00\x92\x42\xa0\x64\x00\x54\x40\x20\x25\x40\xc1\xdd\x0d\x48\x6e\x04\x4f\x81\x94\xec\x12\x29\xd7\x96\x53\x4d\x89\x9e\xa9\x5d\xca\x69\x42\x12\x08\x51\x96\x48\x5b\x13\x52\xba\xcd\x71\xa3\xd3\x86\x10\x6e\x97\xbd\xed\xf5\x3c\x97\xc3\x71\xaf\xa6\x29\xbd\xd5\xef\x8e\xf5\xb1\x34\x13\xe5\x51\x5a\xe5\x06\x2c\x14\xfe\x15\x9f\xbd\x7f\x3a\x77\xb9\x2b\xa5\x2b\x5d\xee\x4a\x69\xc8\xd8\x90\xf5\xca\x32\x61\x20\x7f\xad\xbd\xda\x4f\x7b\x13\xd5\xf2\xf8\xca\xb8\x0a\x19\x60\x59\xa7\x0e\x76\xdf\x0b\xed\x86\x2f\x84\x97\x22\xd8\xbe\xdd\xbb\x0f\xbb\x49\x4a\xe4\xd0\x57\x68\x74\xc4\x4e\x55\x4b\x82\xf9\xd7\x99\xae\x5f\x41\x5d\x90\xa6\x64\xf3\xcb\x44\xc3\x92\x35\x2f\xc3\x9a\x2d\xcb\xf2\x75\x28\x05\xe5\x10\xeb\x82\x0e\xda\x41\x39\x80\xb8\x31\x4e\xf4\x75\xce\x7b\xf9\x0a\x7e\xd9\x01\xf9\x92\xb6\xff\x17\xa5\x4e\x52\xd1\x57\x42\x9c\xba\x75\xec\x3c\xfa\x5c\xf2\xa5\x3c\xae\x9d\xba\xce\xfd\x3f\x5b\x6a\xab\xd3\x9f\x31\xf0\x89\xd6\xc4\xe3\x10\xbc\x5e\xea\x92\xb2\x1b\x32\xdd\xdf\x9f\x89\xf6\xf6\x34\x4f\x1a\x9d\xbe\xd0\x40\x1b\x84\x33\x9f\x53\x6d\x00\xab\xb4\x69\x5d\x54\x41\x2c\x93\xae\xa1\x2a\x86\xff\xa7\xb9\x4f\x7d\x17\x5b\x23\x23\x64\x84\x5b\xb2\x26\x2f\xfb\xdf\xd2\x9c\xe2\xa4\x44\x6e\x61\x8a\x9c\x59\x46\x67\x4b\x64\x64\x11\x07\x87\x34\x00\x3f\x5c\x24\x88\x30\x20\x88\x28\xdd\xf3\x8b\xa7\x83\x81\x4a\x84\x13\x8f\x74\x2f\x21\xa1\x72\xe5\xc7\xa1\xd9\x86\xde\x96\x5a\xdb\x3b\x43\x82\x22\x19\x02\x63\xe7\x66\x36\x77\xb8\x7e\xa7\x4e\x4a\xa5\xb8\x47\x0b\x1b\x10\x7f\x79\xe6\x04\x46\xef\x63\xce\x9e\x59\x63\xf2\x2e\x9a\x3b\x4c\x93\x14\xb0\x50\xba\x52\xdb\x22\x2c\xb3\xf7\x7f\xa7\xc2\x94\xc9\x98\xa2\xb9\x7d\x63\x25\x05\x5d\x94\x9f\xb1\xf9\xdd\x73\x2e\xfa\xe7\x2a\x9c\x28\x08\x28\x91\xc6\xb5\xef\x7c\xeb\xbf\xee\x91\xbb\xf7\xaa\xb7\x85\x22\x73\x09\xa2\x30\xc1\x18\x63\x84\x10\x46\x18\xe3\x31\x21\x33\xff\xbd\x2c\x36\xb5\x23\x4d\x48\xc7\xba\xb1\xd3\x96\x31\x83\x09\x63\x19\x5b\x12\x12\xe4\xbe\x77\x0c\x5d\x75\xc4\x64\xfd\x8b\x7a\xee\xb5\xfa\x16\xd2\x9a\x86\x54\x20\x94\x81\xb8\xff\x9d\x02\x6f\xcc\xf6\x8a\xa0\x55\xa1\xc8\xd7\x8d\x18\xe6\x22\x96\x82\x1c\xbe\xef\xc6\x21\x6e\x4a\x16\xe2\x05\xf2\x00\x79\x3f\x04\x00\xf9\x88\x35\x80\x7c\x1c\x04\x40\x7c\xd4\x58\x10\x3f\x0f\x0d\xc8\xb2\x86\x19\x9a\x50\x02\x39\xe6\xb8\x23\xae\x00\x21\x03\x03\xf5\xf7\xc9\x7e\xef\xba\xe5\xd4\x75\x80\x60\x64\xde\xa7\xc0\xfe\x9b\x9f\x03\xf8\x41\xfa\x4c\x33\xdd\x0c\x33\x65\x9a\x65\xb6\x39\xe6\x9a\x67\xbe\x05\x16\x5a\x64\xb1\xdf\x2d\xb1\xd4\x32\xcb\x65\x59\x61\xa5\x55\x56\x2b\x37\xa2\xbf\xf4\x27\xf4\x2f\x51\xe3\xee\x37\x61\x32\x5b\x38\x5e\x10\x25\x59\xb1\xda\xec\x0e\xa7\xcb\xed\xf1\xfa\xfc\x81\x60\x28\x1c\x89\x9a\x48\xe1\x6e\x3a\x9e\x03\x2f\x78\xc9\x2b\x5e\xf3\x96\x77\xd4\x52\xc7\x7b\x3e\x50\x4f\x03\x8d\x34\xc3\xa6\x85\x56\xda\xf8\xa8\x45\xe3\x13\x1c\xda\xe9\xa0\x93\xcf\x7c\xe1\x2b\xdf\xf8\x4e\x17\xdd\xf4\xd0\x4b\x1f\xfd\x0c\xf0\x83\x9f\x3c\x64\x89\x61\x46\x18\x65\x8c\x71\x26\x98\x64\x4a\x3b\x1d\x33\xcc\x32\x37\x4f\x12\x18\x0a\x69\xc7\x10\xe0\x68\xb9\xec\xa1\x08\x5a\x2d\x42\x6e\xa5\xed\xa8\x63\xe8\x38\x11\x0a\xf4\x42\x79\x19\xf1\xcb\x08\x91\x47\x57\xe6\x1b\x25\x1c\xcc\xee\x84\x92\xc9\xec\x01\x04\x98\x0e\xbf\x18\xe4\x7d\x1a\xc6\x4a\xf4\x82\xcd\x5f\x72\x05\x1e\x4c\xf3\xb2\x46\x13\xb8\x61\x3f\x24\x7d\x85\xb3\x19\x20\xee\xfc\x63\x30\xb5\x73\x17\x12\xef\x00\x68\x27\x20\x9d\x7f\xde\xbc\x05\x20\xf5\x64\x9c\xfc\xf7\x96\x20\x67\xcc\x8a\x3b\x01\xc9\x38\x8e\x00\x40\x32\x4b\x4f\x0d\x01\xd0\xe2\x25\xbe\x55\xa6\x55\x4e\xc4\x91\x87\x0c\x0e\x6f\x66\xe9\x53\x06\x82\x87\x13\x80\x66\xe0\x07\x21\x38\x40\x00\x99\x94\x50\x4a\x2d\x4d\x70\x18\x63\x9e\x8d\x69\x1b\x72\x2e\x4a\x3a\xd9\xd4\x72\x31\x4f\xa1\x35\xd6\xda\x2f\x53\x96\x0b\x6e\xce\x6b\x96\xee\xf2\x88\x89\x68\x8e\x96\xe8\x8f\xe5\x84\xa4\xfe\xbf\x4c\xa7\x05\x69\xcb\x11\x91\x68\xe9\x69\x62\x26\x56\x7a\x99\x5a\xd2\xa7\xd4\x99\xbe\x21\xbb\xa5\x51\xc5\x1c\x07\x4e\x72\x8d\x7b\x84\xf2\x69\x7f\xdf\x83\x7b\xd5\x08\x8f\xb0\x77\x6c\x47\xc4\xf7\x8b\x87\x88\x2f\xe2\xbe\xe0\x7e\xe1\x8f\x22\x8d\x88\xeb\x88\xe2\x44\x49\xa2\x0c\x51\x8d\xa8\x49\x24\x11\x0d\x89\x66\xc8\x52\x64\x2d\x72\x17\x31\x9f\x58\x72\x80\x47\x0c\x05\x25\xa6\x12\x73\x88\x54\x22\x97\x58\x92\xb3\x00\x0d\x46\x9b\xa2\x2d\x72\x32\x73\x70\x39\xac\x1c\x34\x27\x98\x13\xa6\x3c\xff\xad\x3e\xe4\xd7\x66\xfd\x67\xc1\x5c\xee\xbb\x3a\x6d\x0b\x92\x30\x8f\x2b\x53\x47\x33\xed\x8c\xb3\xc0\x26\x68\x61\xdb\x93\x49\x2e\xf5\x5c\x65\x2b\x12\xb4\x99\x96\x1b\x7f\x87\x28\x4d\x74\xa9\x80\xe0\xd1\x51\x89\x91\xb2\x53\x45\x7a\x95\x5a\x53\x87\x70\x3f\x28\x01\x27\x83\x1a\x16\x38\x72\x8a\xeb\xdc\x27\x0c\xce\xee\xda\x43\x7b\xcd\x18\x1e\x91\xed\x20\x7e\x16\x0f\x14\xcf\x14\x5f\xc2\x7d\x15\x9a\x00\xe2\x81\x48\x20\x4a\x54\x1a\xcc\x1a\x44\x56\x72\x22\xdb\xf3\xa4\xe2\x47\xee\xef\x8a\xd3\xfc\x7d\x25\xf3\xdc\x5c\xea\x37\xa0\x2e\x65\x5a\xeb\xd2\x9d\x5a\x03\xee\x04\xdc\x06\xdc\x04\xdc\x00\x5c\x07\x5c\x02\x5c\x3e\xbb\x06\xdb\xff\xb3\xff\x4d\xee\x00\xd0\x5f\x1d\x44\xd7\xff\x6f\x77\xee\xdd\x74\x57\xbc\xed\x9b\x73\x67\xdc\xc9\x37\x15\x54\xe1\x9c\x05\xc0\xa4\x05\x53\xc9\xcf\xbf\xfe\xff\x6f\xe0\xff\xef\x7a\x61\x3b\xaf\x77\xbc\x1a\xf4\x23\xdb\x15\x9f\xf3\xf5\xd9\x3d\x1e\xe0\x17\xa7\xbc\xc6\x23\x1f\x78\xa6\x47\x9c\x9e\xb7\x23\xc8\xe0\x05\x0a\xf0\x93\xd3\x99\xca\x89\x4c\xbc\xa1\x6c\x70\x0b\x0e\xee\xc5\xd8\x9f\xff\x01\xf8\xf1\xd7\xe0\x0b\x77\x1f\x15\x92\x88\x98\xe8\x23\x67\x72\x05\xe5\x2c\xc4\x3d\x28\x51\x0c\x09\xd8\x20\x01\x03\x05\xd9\x24\xf0\x29\x18\x26\xa4\x5c\x80\x8e\x6f\x23\xbe\xf8\x2f\x03\x7c\x17\x30\x63\x5c\x0f\x9d\x57\x00\xbf\x15\xaf\x52\x42\xc4\x8b\x54\xf7\xd5\x00\xf8\xa2\xc3\xf7\x7e\x3b\xe0\x3f\x81\x58\x0f\xe2\x08\x80\x38\x05\x20\xbe\x09\xc4\x2f\x85\xa5\xfe\x0b\xf9\xf5\xe2\x8f\x58\xf1\xc3\x97\x93\x05\x9f\xb1\x94\x17\x36\xe5\xb4\x33\xce\x3a\xe7\x3c\x8f\xe2\x95\xbf\xfd\xe3\x5f\xff\xb9\xe1\xa6\x1e\xe7\x71\x06\x60\xe0\xf7\x7f\x8a\xcc\x4d\x33\x14\x05\x8f\xdb\xe3\xf5\xf9\x83\x0b\xb1\x0b\xe3\x70\x79\xfc\xd0\xa8\xf6\x0a\x45\x62\x49\xf8\x46\x0d\x2f\x7c\xe3\x8b\x28\x32\x1a\x7b\xc9\x52\xa4\x46\xe7\x2c\x5d\x86\x4c\x59\x68\xe8\x18\x45\x15\xed\xb8\x1c\xb9\x98\x58\xf2\xb0\x8b\xe9\x09\x5f\x5c\x3c\xf9\xf8\x04\x3d\x8d\x51\x96\xa1\xfb\xff\x5f\xb6\x52\x95\xea\xbd\x69\xb2\x05\x82\x8e\x78\x09\x12\xdd\x52\x4a\xa5\xbc\xe2\x4a\xcc\xaf\xd4\x82\x45\x4b\x55\x2a\xf7\xcb\x6f\x7f\xaa\xf9\xeb\x5f\x96\x0d\xfa\x9e\xa9\x20\x74\x42\xf8\x2c\x21\x12\x44\x35\x5b\xad\xd1\xd2\xa5\xad\xa3\x1b\x85\x73\xfd\x50\x3c\x43\x49\x83\x46\x4d\x9a\xb1\xb5\xb4\xb5\x6a\xfb\x35\xe0\x74\xb4\x77\x7b\xfd\x81\x0e\x9d\x3e\x8f\x7e\x7d\xf4\x65\xe2\xeb\x74\xe6\xdb\xdc\x77\x5d\xba\x17\x43\x3d\x79\xb1\x5c\xad\x37\x5b\xbd\xbb\xfd\x85\x31\xe3\x26\x4c\x5e\x9a\x32\x6d\xe6\xca\xac\x39\xf3\xcc\x50\xab\xb6\xbf\xa8\x13\xee\xaf\x9a\xfb\x9b\x16\x97\xa0\xf5\x3a\xab\x3f\x92\x53\x50\x86\x69\x32\xd2\xc1\x72\x45\xb4\xd0\x6c\x93\xfe\xcb\x45\x46\xd0\x92\x4b\x29\x95\x47\x56\xae\xd1\xfc\x77\x89\x5f\xd6\x93\x8b\x11\x33\x96\xbf\xfc\x4d\x29\x8e\xc7\x56\x1c\x43\xf7\xd2\x58\x2a\xf1\xfc\x63\x23\xb5\x04\xbe\x31\x91\x46\xa2\xc4\x49\x92\x26\xe3\x97\xed\xad\x29\x64\xb9\xd7\xcf\x53\xe9\x77\x66\xd2\x4b\xe1\x7f\xe6\x22\xa5\x4a\xed\x49\x87\xd2\xfa\xcd\x1a\x2f\x2c\x79\x45\x05\x5c\x2f\x17\x8f\x2c\xfa\xa0\x1c\xe9\x4f\x16\x8e\xcd\xd9\xa3\x15\x2a\x20\x26\x21\x55\xa4\x38\x52\x31\x56\x2c\x09\x16\x92\x45\x64\x2d\xa8\xe7\xcf\x33\x9e\xa0\xed\x82\xe9\xe9\x22\x3a\x1d\xff\x26\x79\xae\x0f\x30\xa9\x47\x3f\x34\xdb\x40\x0d\x96\xa9\x54\x95\xd7\x03\x40\x54\x97\xf2\xbf\xa9\xa7\x89\x36\x96\xcb\x76\xdc\x1e\xaf\x9f\x0f\x22\x4c\x28\x73\x5c\xcf\x0f\xc2\x28\x4e\xd2\x2c\x2f\xb8\x28\xab\xba\x69\xbb\x7e\xb1\x5c\xad\x37\xdb\xdd\xfe\x70\x7c\x71\x75\xba\xbe\xb9\xbd\x3b\xdf\x4b\x00\x31\x9c\x20\x29\x9a\x61\x39\x5e\x10\x25\x59\x51\x35\xdd\x30\x2d\xdb\x71\x3d\x3f\x08\xa3\x18\xc9\xad\xb7\xbb\xe8\x97\xcf\x56\xb3\x19\x0e\x2f\x2e\x6e\xde\x7c\xf9\xf0\xc7\x0f\x02\x61\x04\xe5\x60\x79\x54\xf4\x1f\xc4\x70\x8b\xee\xbf\xa1\xf7\xd7\x2e\xcd\x12\x51\x18\x32\xca\x34\xba\xa2\x20\x6a\x51\x10\x45\x17\x8f\xd4\x47\x04\xd7\xa3\xdb\x68\xce\x28\x8d\x66\xa9\x86\x52\x6f\x24\x17\x55\x18\x17\x8c\x2a\x00\x87\x24\xda\x89\x0b\x1a\xe5\x2e\x51\x47\x09\xab\xfc\xad\xb3\x6e\xe4\x56\x1c\x67\xef\xb3\x62\x25\x0a\x15\xd1\x12\x31\x41\x5c\x51\xde\xb5\xd2\x52\xcb\x84\x8f\xc9\xdb\x50\x46\x81\x52\x15\xbe\x77\xc5\x69\x57\x5d\x92\xeb\xba\xbf\x5c\x2b\x7d\xd2\x80\xff\x2b\x77\xfe\xd5\xc6\x3c\x43\xaa\x2c\x57\x6d\x91\x21\xd3\x3d\x3b\x31\xa5\x11\xc5\x3f\xed\xb8\xba\x75\x1a\x16\x90\x0f\x02\xfd\x15\xed\x96\x83\xce\xc6\xfa\x7e\xdb\xbb\xf1\xb2\x95\xb9\xd4\xe7\x35\x5d\x26\xcd\xf4\x03\xd7\xa0\x9f\x8d\x0f\x54\xee\x06\xff\x6f\x6c\xc2\xd0\x37\x49\x9e\xc2\xab\x65\x92\x7e\x06\x01\x82\xbb\xb4\xc8\xd2\xd3\x7f\xcc\x5f\x3d\x25\xba\xf9\x94\x38\xdf\x61\xf3\x54\x0e\xd5\xbe\x7e\x44\x79\xfd\xef\x05\xdf\x40\x65\x1b\x5b\x3b\xef\xe1\x09\x68\xf3\x09\x15\xb8\xc4\x80\x80\x59\x1e\x06\x14\xb4\x15\xbf\x5e\x62\xca\xa7\x69\xa3\x26\x17\x9b\xc5\x9b\xcf\xc9\x9b\x77\xed\xbb\x43\x3e\xbb\x4c\x9e\xf2\xc9\x89\x6b\xfe\x1f\xe7\xae\x9f\xb2\x7a\x8e\x64\xdd\xb2\xb9\xa5\x57\xb6\x38\x4e\x0d\x8e\x91\xb8\x5f\x45\x31\x50\xf1\x4b\x77\x48\x72\x99\xca\x9d\x34\x7b\x2e\x25\xc7\xc0\x25\x77\x79\x57\xc9\x7b\x6f\x1c\x12\x39\x1b\x5c\xa6\x83\x9c\x03\x1a\x22\x61\x1b\xaf\xcc\x74\xb5\x7c\x95\xb0\x16\x89\x2c\xb2\x5e\x99\x91\x0c\x18\x18\x4f\xc5\xda\x76\xfb\x19\xf5\x94\x54\x8c\xbf\x2b\x31\xb9\xd8\xa0\x27\xfe\xd9\xdd\x54\xeb\xe0\xff\x30\xfa\x71\x57\xe8\x5a\x5e\xa7\xf2\xca\xd5\x37\x39\x59\x7e\x61\x97\x37\x69\x26\xb9\x1a\x51\xaa\x17\x0b\x58\xe0\x78\x65\xa2\x25\x16\x31\xba\xfc\x58\x2c\x9a\xc0\x62\x45\x7d\x1e\x22\x5f\x48\x62\x27\x01\x07\x31\x58\x55\xe3\xe6\x9f\x91\x90\x4a\xa7\x28\x33\x67\x9b\x65\x9e\x3c\x97\xc7\xe4\x66\x04\x5e\xc4\xcb\x5e\xd0\x4b\xc4\x10\xbc\x9c\x10\xd8\x4c\xc2\x80\x18\x2f\x5a\xb4\x65\x55\x02\x48\xc9\x60\x47\x92\x36\xb3\x1d\x06\x85\x71\x19\xda\xad\xce\xf1\xb7\x53\x2b\xaa\x93\x97\xe8\x60\xa7\x5e\xae\x05\x57\xc7\xb5\xf9\x1c\x4d\xb5\xe9\x76\x93\xbc\x33\x9f\x2f\xfb\x40\x03\x5d\xb5\x1a\xfe\x58\xe7\x81\x26\x90\x94\xa8\xf3\x49\x51\x74\xc8\x59\xcc\x34\xae\xf8\x6b\xbe\x51\x1a\x68\x41\xb4\xc5\x91\xd5\x3f\x23\x65\x34\xbf\x60\x34\x59\xd4\x7e\x7b\x48\xd3\xa2\x05\xda\x78\xfa\x2e\x75\xf3\x3d\xcf\x67\x69\xfc\xd8\x8f\x40\x8a\xa7\xaf\xd3\xd3\xb7\x0f\x74\xe7\xe7\x7d\xdd\xed\x3b\xe8\x2c\xf0\x7d\xb8\xf5\x6c\x8e\xd4\x48\x2b\x32\x10\xe5\xb1\xd7\xbf\xf8\xc6\x7a\xc8\xba\x09\xed\xaf\x52\x17\x5c\x16\xe3\xb1\xa9\x16\x57\xb9\x60\xe2\x0d\xa9\x67\xd9\xbd\xc2\xf9\x4d\xe5\x2b\x31\x37\x42\x5c\xf1\x2e\xae\x9e\x78\xa8\xa9\x1e\xe5\x5d\xa6\x23\x49\x36\x47\x08\x27\x93\x0c\xf4\xf4\x0d\xd0\xc5\x4e\x97\x56\xf3\x2e\xd1\xb2\xa8\x05\x35\x8b\x24\x86\xc9\xa8\x82\xd4\xdf\xed\xc5\x5d\xb0\x4a\xa0\xd8\x7e\xfb\xdf\xe9\x75\xfc\x3d\xdc\x99\x1c\xe8\xa1\xb3\x72\x25\xd0\x47\x97\x3d\x37\x08\x28\x6e\x18\xd0\xdc\x28\x60\xb8\x71\xc0\x72\x5b\x81\x88\xcb\x02\x8e\x7b\x16\xf0\xdc\x24\x10\xf7\x28\xa0\x01\x79\x0b\xec\x8e\xb9\xdf\xbe\x3d\xee\xef\x59\xbd\x8d\x1d\xb6\x82\x3f\x7e\xca\xef\xf3\x33\x9c\x88\x73\xc0\x20\x2e\x00\x83\xb8\x04\x0c\x62\x0e\x18\xc4\x15\x60\x10\xd7\x80\x41\xdc\x01\x0c\xe2\x06\x30\x84\xf7\xb1\xd1\xcc\xb8\x83\xc2\x42\x3b\x35\xb3\x4b\x36\x53\x45\x4a\x92\x7d\x5b\xfb\x1b\x73\x08\x0e\x82\x83\x49\xe0\x08\xd2\x4a\x5a\x48\x59\xbd\x69\x21\xac\xfe\x97\xc8\x8c\x66\x02\xc7\xaa\xe9\x26\xeb\x1c\x4d\xba\xd5\xb5\x45\x0a\x41\xb8\x76\x0d\x27\x52\xa9\x91\x95\x3e\x85\xae\xf1\xfa\x14\xce\xb0\x03\x4d\x05\x67\x47\xa2\x62\xfc\x2c\xc5\xfa\x2f\xde\xfe\xe6\x20\xf7\xec\x66\x3f\x55\x7a\x39\x70\x0e\x8d\x5a\xf1\xfa\xb7\x09\x58\x6f\x06\x2e\x30\x9c\x18\x03\x97\xf9\x92\x08\x37\x79\x37\xb9\x42\x57\x92\x7a\x4e\x83\x56\x60\x56\x7d\xcf\xe3\xf6\xcb\xdc\xb2\xab\x52\x48\x7f\x2f\x33\x62\x71\xba\x54\x65\xed\xe8\xe5\xc0\x35\x60\x1d\xe3\x1f\x90\xdd\x95\x98\x57\x0e\xda\xa1\x49\x63\x23\xe3\xbb\xc9\x32\x35\x4c\x73\xc2\x58\x44\x88\x89\xdf\xfa\xfa\xe1\xe5\x55\xfa\xa9\x0e\xf7\x53\xf7\x6c\x51\xf6\xfd\x1c\xa3\x09\x4f\xb5\x25\xe2\x93\xb4\x65\xc1\xd0\x8d\xe6\x8a\x90\x08\xf4\x5d\x14\xcb\xd6\xd0\xac\xdb\xac\xa4\x62\x75\x67\xa9\xc4\x1f\x4f\xf4\xca\x6a\x12\xa6\xd8\x52\x7f\xa2\x11\x4f\x2e\x51\xbe\x03\x0a\xa7\x2c\x4a\x65\x8b\x74\xb6\x61\xd9\x27\xb1\x5e\x3f\x3d\x73\x20\x62\xb8\x31\xcc\x19\x40\xdf\xf2\xab\x08\xe7\xa0\x93\xca\x81\xdb\xe6\x87\xb5\x29\x6c\x81\x12\x1b\x6f\x06\xee\x1e\x25\xf1\x16\x9f\x87\x97\x70\x45\x58\x53\xec\x5e\x5c\x98\x79\x2a\xcd\x4a\x6e\xd3\xa0\xd1\xbc\xbb\x13\xe6\x92\xf8\x10\xc4\xad\x47\x7e\xd5\xf0\xb8\xe3\x25\x4a\xaa\x69\xbd\x54\x2b\x88\xbf\xa9\xc0\x03\x75\x95\x6a\x91\x4a\xdb\xec\x59\x3f\x41\x8d\xb9\x47\x98\x06\x89\xbd\xbb\xe5\x9b\xa4\x31\x0f\xfd\x50\xc9\x95\xc0\xd3\xa3\x71\xaf\x9a\x94\x88\xb5\x5f\xbf\xe1\xe7\xe0\x3a\x30\x16\xbc\x00\x37\xd1\x2a\xc5\x86\x82\x38\xad\x91\x3c\x07\x86\x03\x87\x11\x78\x69\x5d\x82\x64\xb1\x61\x65\x4d\xa3\x06\x07\x21\xb8\x9e\xdd\xaf\xd0\x7d\xc7\xa3\x19\xfe\x9f\x58\x59\x1e\x66\x1d\xc7\x16\x7d\xb4\xf0\xe1\xd4\x75\xc4\x67\xfe\xa4\xd7\x82\x10\x9a\x1e\x78\x13\xf1\x36\xa6\x4d\x08\xd5\x97\x7f\x2b\xaf\x39\xa6\x31\xe1\x83\x6f\x97\x23\x03\xe7\x93\xc0\xbb\x67\xf7\xbc\x47\x47\xbf\x74\x2e\xd2\xe4\x07\x70\xb5\x53\x2f\xaa\x2a\xeb\x0b\xd3\xa0\x65\xe3\xa0\x73\x32\xf0\x11\x4c\xb1\x9f\x6a\x55\xfa\x18\x13\x82\x1c\xe0\x93\x40\xc5\xa7\x17\x44\xe0\x33\x7d\x27\x3e\x4f\x10\x3d\x7f\x01\x81\x8a\x2f\x9d\x00\x7f\x05\x1a\xc4\xd7\x09\x02\xf2\x37\x10\xa8\xf8\xd6\x09\xf0\x77\xa0\x41\x84\x04\x81\xf9\x7b\x08\x54\xfc\xe0\x04\xf8\x47\xd0\x20\x7e\x4a\x10\x03\xff\x0c\x81\x8a\xdf\x38\x01\xfe\x2d\x68\x10\xbf\x4b\x10\x88\x7f\x0f\x81\x8a\x3f\x38\x01\xfe\x23\x68\x78\xfd\x27\x70\x2b\xe2\xd6\x9f\x2f\xfa\x79\x3c\xd6\xb0\xdc\x43\x72\x83\x2d\xc9\x04\xb2\x18\x7b\x1d\x62\x6b\x02\x0d\x6e\x3e\x2a\x70\x0b\xa8\x8d\x58\xdb\x7c\x6b\xdb\x6a\x48\x70\x7b\x50\x70\x07\x14\xc4\xd9\x16\x5a\xd7\x57\x0d\x77\x07\x05\xf7\x40\x61\xce\xcb\xae\xea\x70\xf1\x5f\x4e\x1b\x40\x8a\xac\xf6\x4c\x97\xa4\xbe\x3a\xe6\xc9\x32\x1c\x40\xb0\xb5\x61\x01\xdf\x06\xf2\xa2\xd7\xbf\x4c\x6d\x06\xf1\x07\xe0\xe0\x2f\x02\x5c\xdc\x0e\xc0\x9a\x17\x19\x58\xf4\x71\x80\xbb\x4a\x00\x70\x7c\x2f\x2c\x99\x38\xfa\x23\xec\xbb\x87\x6d\xbe\x03\x6a\x6f\x6e\x3e\x54\x50\x25\x1d\x4b\x01\x83\x96\xda\x01\x28\x52\x6b\x3f\xb5\xdc\xcc\x79\x2e\x2b\x62\x16\x6a\xff\x8f\x81\xd4\xac\x31\xa8\xdf\xc4\xc9\x80\x7b\x15\x1d\x2f\x62\x67\x14\xaf\x75\x02\x6d\xab\xd2\x82\x28\xda\x31\x6b\x71\xc7\x80\xb3\x4e\xcb\x77\x81\xa9\xe4\x57\x83\x16\xad\x62\x06\x03\x24\x48\x2f\xa3\x01\x6b\xbb\x54\x63\x41\x1b\x5a\xa5\x7d\x1f\x70\xf2\x7d\xf9\x0c\x62\x92\x86\x7c\xce\xda\xce\x3d\x6b\x59\x15\xe6\xaa\xd8\x8e\xcc\x5a\xb3\x7c\x13\xcd\x8c\x08\x1b\x8b\xec\xd2\x50\x7c\xd2\x97\xd1\x5e\x1b\x9c\xa0\x19\x35\x00\x52\x1e\x6c\x31\x2c\x87\xc7\x60\x90\x5e\x96\xdf\x33\xb8\x54\xef\x21\xea\x76\x97\x75\xe2\x7a\x40\x88\xd9\x15\xba\x93\x91\x7f\x53\xdf\x34\x1b\xb3\x9d\xb7\xd2\x8a\xa5\x7c\x65\xf8\xca\xad\x4b\x51\x95\x5a\xad\x2a\x02\xbe\x6e\xe1\xff\x19\xe5\xfc\xe0\x7d\xab\x50\xa7\x18\x86\x92\xf9\x44\x8f\xf5\x82\x93\x62\xfd\x68\x9a\x5d\x42\x91\xbe\x42\xbb\x9e\xb4\xb7\x5d\x11\x46\xcb\x4c\x9e\xa0\x0b\x35\xff\x50\xd3\x7e\xd1\xab\x85\xf3\xc9\xb6\x24\x2a\x37\xfc\x5b\xf4\x6d\x2f\xb2\x33\x86\xab\x0b\x33\xa4\xb0\x55\x80\x95\x11\x9d\x7c\xd6\x83\x12\x2e\x2b\x4d\x5a\x63\xff\xbd\x85\x3b\x98\x4e\xe2\x61\xe3\x42\xc5\x81\xa5\x5a\x06\x17\x44\xa7\x1a\xdd\xfb\x14\xca\x8e\xa7\xd5\xde\x6a\x34\xf1\xd3\xc3\xc2\x4f\x88\xfe\x83\x79\xf5\xf4\x6b\x5b\x44\x39\x53\x13\x3b\xa6\x87\x67\x34\xb1\x1e\x0a\xd8\xf8\xe6\x96\x93\x48\x2b\xbf\xdf\x8a\x2c\x02\x35\x1c\x85\xe1\x3c\x55\x04\x12\x35\x8b\x71\xf7\xab\xd8\x6e\x5c\xe5\x76\x09\x23\x16\x29\x64\x2e\x4b\xb0\x6f\x42\x22\xb2\x48\xb8\x20\x89\xde\x10\xcc\x05\xdd\x52\x80\xa2\x6e\x9f\x96\x41\xa9\x78\xca\xdd\x34\xd5\x27\xbc\xdb\x03\x52\x86\xe3\xb7\x08\x3c\x9d\x60\x48\x2b\xb3\x78\x75\xb2\xeb\xe9\x98\x0f\x0f\x32\x91\x81\x5b\x69\x15\x3e\x54\x7e\x7a\x29\xfd\x9b\x56\x2c\x99\xa6\x9c\x80\xa6\xdc\xa3\x2b\x75\x71\xe6\xe1\xbc\xa9\xc4\x0b\x6b\x1d\x99\xd5\x41\x54\xe4\xf9\x69\x66\x41\xcf\xc4\xcb\x65\xaa\x5e\x5f\xf8\x96\xef\xfc\xad\x4a\xf9\x76\x8a\xf4\xf8\x82\xfb\x50\xbe\x2b\x83\x08\xea\xba\xeb\x31\x6b\xcc\x0b\xf2\x20\x92\x08\x78\x01\x7e\x11\x58\x2f\x75\xbc\xf9\xd2\xeb\x50\x14\x10\x8b\xde\x99\x20\x2b\x04\xa7\xab\x18\xfb\xde\x5a\x63\xc6\xf1\xa5\x79\xe1\x9a\x86\x02\x35\xc2\x4e\x76\x3c\x9b\xc5\x38\x77\x53\xc3\xca\x52\x4e\xdd\x9b\x57\x07\x86\xb1\x77\xab\x7c\x38\xe5\xfc\x81\x57\x8a\x47\x86\x3b\x8c\xa1\x14\xd5\x14\x9e\xef\xe4\x7c\x00\x68\x21\x15\x0c\x89\x4e\xe5\x16\x5a\xa8\xde\x01\xf3\x9c\x7d\xa1\xd9\x58\xd3\x14\x20\x44\x72\x2a\x94\xd2\x24\xad\x5e\xd4\xc0\x83\x4a\xca\x29\xd2\x55\x40\x9c\x54\xc0\x09\x04\xc1\x36\x2f\xa6\xdb\x1a\x1f\x35\x4a\x1f\xbc\x9a\x7f\x49\x62\x20\x85\xb9\xf1\x3e\x75\x30\x0a\xf4\xac\xa6\x75\xb2\x2a\x31\x8f\x36\xde\x82\x0a\x46\xa4\xe8\xdf\x79\x4e\xf8\xf4\x59\x39\x3c\xd6\x31\x11\x3c\xd4\x9f\xdb\xa7\xed\xe5\xe2\x44\x5c\x6a\x36\xb3\xdb\x4f\x36\x3f\xe3\x9c\xf8\x74\xac\x31\x73\x5e\x7f\x3e\x8c\x6e\x22\xbb\xac\x2e\x9b\x1a\xd3\xf7\x4d\xeb\x1c\xb1\xa7\xb1\xd4\x04\x13\x07\xaf\x77\x1d\xc2\x93\x8e\x81\xcb\x97\x1b\xb0\x89\xd7\x30\xe8\x0a\x5d\x8c\x81\x0a\x71\x8d\xd8\x8a\xa3\x50\xe8\x77\x4b\x8e\x6c\x63\x13\x28\x94\xbd\x68\x89\xac\x47\x72\xe6\x34\x7f\xb8\x2b\x47\x4b\x23\x03\xae\x55\xc7\x7c\x95\x62\x95\x2a\x4c\x2a\x63\xb0\x6a\x06\x99\x41\x64\x33\x1a\xf7\x24\xfe\xce\xea\xfa\x24\xe4\x45\xc2\x9b\x64\xca\x96\x9b\x87\x14\x2d\xd7\xd7\x14\xc6\xa8\xca\x1a\x5f\xa4\x0c\x4e\xbf\xbb\x5f\x4d\x9e\xd0\x7d\xc0\x50\x68\x02\x3d\x5e\x54\xba\x36\x3d\xf5\x22\xf6\x78\x66\x8f\xfd\x95\x73\x22\x7a\x60\xc8\x71\xc4\xec\xd5\x95\x5f\x20\x31\x1b\x17\x10\xdc\xa6\x4b\xe1\x87\xf0\xfe\x10\x96\x5f\xb5\x5e\x51\xef\xcb\x0f\x03\x88\x6c\x50\xc1\xbc\xfe\x44\xed\x7f\x36\x8a\x6f\xc6\xac\x46\xef\x11\x3e\x36\xb2\x1c\x46\x83\x16\x36\x47\x61\x7f\xa2\x5a\x4d\x4d\x92\x09\x03\x4c\xc1\xa5\x89\xe7\x8a\x6c\x36\xac\x77\x0a\x1c\x69\x8f\xd7\x47\x85\x93\x63\x74\xf8\x3a\x60\xd4\xd2\x9c\xad\x75\x13\xbc\x03\x42\x6a\xac\xcf\x6c\x8a\x79\x3e\x91\xf1\x7b\x41\x06\xe3\xff\xbe\x54\xcf\x75\xf0\xfb\xfc\x1c\x36\xf6\xf8\x22\x31\x2c\x68\x06\xbf\x68\x02\xb5\xaf\xc2\x71\x40\x58\xe9\xef\x2d\x51\x90\x17\x68\xf3\xba\x12\xc4\x8b\xe4\x11\x84\x51\x83\x2b\xa0\x40\xc8\x80\xf5\xbf\x68\x4d\x13\xae\xa4\xfd\xcb\x5e\xaf\xce\x6a\xcd\x17\xca\x42\x89\x98\xc0\xcd\x44\xb1\x50\x5d\xce\xa2\x67\xe7\xc4\xa0\xac\x7c\xc5\x07\xce\x36\xaf\x05\x5c\xae\xc7\xb0\x76\x89\x64\xb6\x98\xd9\x06\x2d\xfa\xb2\xa8\x15\x50\x8d\xd7\x29\x07\xbe\x57\x04\xa7\x0d\x4b\xfa\x55\x1e\x37\x18\xec\x0e\xea\xd8\xf0\xf4\x4e\xce\x4d\xa5\x57\x78\x97\xc9\x7b\x3d\x1c\x4e\xb3\x42\xd3\x63\x80\x27\x95\x66\x02\x65\xac\x87\x31\xe0\xa7\xfa\xb5\x0a\xcf\xb0\x8c\x13\x53\x94\x68\x7d\xf6\x20\x9e\xb2\x15\x3f\x17\xe9\xc4\xd4\xe4\x57\xd8\x15\x69\x03\x1e\xe9\x11\xd8\xc9\xb4\x6a\xf8\xde\x12\xcf\x43\xb3\xb8\x45\x93\x39\x5a\x8a\x5a\xd7\xc2\xea\x7c\x95\x87\x6b\xe5\xee\xd2\x2d\xed\x1b\xc3\x0e\x85\x54\x67\x6b\x61\x47\x5b\xc7\xff\x28\x78\x8f\x0e\x85\xf7\xd6\x7c\x4a\xee\xee\xb8\xef\xfe\xb0\xa6\xac\x69\xe3\xf1\xdd\xb3\x2b\x29\xd1\x04\xc2\x14\xe6\xb2\x8b\x24\x37\x6f\x9d\xb8\x96\xd9\x7e\x9c\x1b\xf2\x1d\xd3\x98\x9a\x1d\xe2\x99\x33\x2a\xb0\xb2\xd7\x18\xc1\xd9\x9e\xe1\x70\x7b\xe3\x05\x95\x28\x12\xab\xc9\x19\x72\x2c\xf3\x70\xc6\xa4\x5f\x57\x08\xaa\x19\x01\xdb\x23\x8b\x98\x67\x04\x54\xb3\xe0\xe8\x7b\x91\xec\x44\x85\x89\x0c\x5b\x50\x37\x9b\x68\x8a\x05\x97\x0d\xb0\x45\xb9\x2c\x5a\xd2\xc6\xd2\x95\xc2\x93\x6c\x8f\x4b\x5f\x34\xaa\xf9\xda\xbe\x52\x55\x4b\x65\xa0\x15\x47\x89\x9c\xa5\x62\x54\x75\x77\xa4\x4e\x4f\xa6\x60\xf6\xda\xd0\xed\x64\xa4\x1a\x90\xad\x44\xe2\x76\x23\xc1\xe0\x60\x0d\x41\xcc\xc9\x07\x10\xcd\xc8\x85\x05\xcd\x24\x82\xf3\x69\x83\x44\xb2\xc2\xb7\xab\x96\x43\x35\xbc\x53\x62\xc2\xf4\x97\xd7\xc5\x6a\x6b\x61\x09\xd8\x56\xcf\x1f\x30\x71\x32\xc7\xbb\xc5\x8b\x5b\x83\x74\x89\x1f\xa7\x4d\x16\x9c\x93\x08\x81\x4e\xdf\xbc\x12\x1e\xf8\x82\x37\x48\x44\xa8\xce\x8e\xda\x74\xa3\x43\x92\x2b\xc8\x24\x11\xee\xd0\x11\xe4\x71\xa5\x85\x9c\x1d\x88\xf9\x4c\x2c\xe6\x72\xb9\x90\x2b\x81\x19\x99\x94\xa1\xa4\x7d\xae\x3a\x24\x48\x91\x09\x92\x26\xb5\x0e\xc9\x54\x70\x24\x58\xc0\x55\xaa\xa5\x55\xea\x01\x6b\xc3\x54\xd6\xaf\x4f\x6c\x7a\x53\xe2\x3f\xc3\xed\xa2\x2b\x7f\x70\xe9\x6a\xe4\x6c\x61\x67\x2b\xb5\xb7\x5b\x3c\x63\x3f\xc9\xad\xcc\x44\x1b\x86\x50\x0a\x54\xbe\x58\x09\x1d\xc8\x54\xbb\xf1\x98\xdc\xa4\x73\x6e\xbb\x42\x29\x6e\x74\x07\x93\x04\xc2\x2d\x1e\x2e\x48\x5a\x79\xf6\x78\xad\x0d\x1b\x53\xd0\x9f\x86\xb1\x80\x9e\xea\x32\x1f\xcf\xd9\xec\x0c\x96\x0c\x61\xb5\xdb\x5e\xdb\x53\xe1\x83\x33\xe9\xd7\x3a\x59\x2e\xf9\xcd\xe3\xfd\xf7\x5c\xc1\x65\xbe\x38\x57\x4f\x47\xd6\x03\x4c\x32\xe1\x50\x9a\x89\xd0\xd3\x49\x74\x32\x52\x78\x9b\x9c\xb6\x4a\x34\xa7\x2c\xb0\x83\xd4\x11\xe3\x0e\x10\x52\xe0\x58\xfb\x32\x5b\x24\xc1\x42\x0d\x70\x97\xf5\x46\x97\xeb\x95\xe3\x18\xde\xe8\xbe\x66\x9f\xfd\x80\x77\x16\x8c\x0f\x04\x05\xa9\xd3\x18\xe1\x13\x09\xeb\xf8\x7e\xd1\x5a\x13\x07\xdc\xe2\x44\xcb\x1e\x7b\x38\xbb\x4f\x21\x2b\xa7\xe3\xf7\xba\x5d\x8d\x8d\x73\x18\xba\xa0\xc9\x91\x4d\x6b\x17\x43\xa7\xbc\x90\x8f\xd6\x2b\x9d\xa2\x6a\x1e\x3a\x5e\x53\x57\x2f\x1a\x2d\xf0\x31\xdc\xa9\x2a\x2a\xdd\x5e\x87\x40\x7c\x9b\xdd\x5d\x33\xb9\x07\x79\xb9\xb3\xa1\x58\xa9\x4a\xab\x95\x21\x99\xb0\x72\xa6\x2e\x0e\x44\x22\x75\xe1\x9d\xd9\x92\xdd\x1e\x6b\x74\x25\x22\x42\xc0\x77\x44\x97\x8b\x1e\x1c\x86\x91\xb7\x14\x63\x12\x46\x3d\xec\x7c\x15\xac\xa0\xfb\xe5\x53\xed\x5b\x63\x99\xb8\xce\xb6\xe9\x58\x3f\x0c\x7d\x4b\x7e\x90\xdc\xee\xda\xa8\x4a\xaf\x9c\x54\xfb\xc0\x21\x8d\x9c\x69\x84\x2f\x2d\x96\xfa\xec\xbd\x80\x17\x42\x79\xa5\x41\xc8\x0a\xb7\xc6\x6b\x02\xa5\x7c\x11\x6a\x3d\x77\x01\x08\x07\x6f\xc9\xd7\x52\x89\x5e\x64\x0c\x46\x15\xdf\x70\x8e\xbd\x8c\x95\xe8\xb2\x1c\x91\x4d\x1a\x95\x04\xea\xb7\x44\x41\x5b\x2b\xae\x6f\xce\x04\x0e\x71\xe9\xc2\x52\xbe\x66\x60\x33\x4e\x9f\x0a\x0d\xce\xdc\x83\x39\x6f\xcf\xba\xfc\xf7\x30\xc7\x70\xc0\xae\xe2\x78\xcf\x30\x34\x03\x0d\x1a\xb4\x16\x42\x9d\x6d\x2e\x94\x8c\x3e\xa4\x92\x5b\x55\x3a\x7a\x9d\x56\x6e\x4a\x47\xe1\x27\xb9\x5e\x9e\x95\x28\x54\xaf\x91\xe4\x18\x0f\xd5\x49\x57\x0f\x23\x1c\x8f\x98\xfc\x1f\x1d\x3a\x50\x12\xf9\xe7\xe1\x73\x39\x71\xd1\x71\xc1\x46\x04\xe4\x8c\x80\x9d\x10\x11\x98\xb4\xa7\xc6\xd1\x4c\x9a\x88\x23\x8e\x5a\xd6\x04\xf6\xbd\x7b\x5a\x7a\xdf\xbd\xce\x3c\xc5\x9e\x0f\xca\xfa\x95\x43\xf9\x5f\x9d\x89\xd8\x9c\x11\x03\x93\x4b\xd3\x72\xe5\x08\xe6\xa9\xf9\x62\xac\x52\x38\x5b\x9b\x26\xd8\xc7\x82\xf2\x45\xdf\x6f\x7e\x75\x6d\xaf\xbe\x66\xae\x22\x68\xbc\x5c\x4c\xf4\x24\x5f\x32\xac\x96\x89\xb4\x72\x75\xe6\x86\x7c\xab\xc0\xb4\xa0\x56\x3d\x52\xad\x24\xcd\xcc\x0b\x06\x36\xe3\x9b\xe0\x3e\x68\x8d\x55\xd3\xe5\xc2\x62\x47\x87\x53\xa7\x0e\x08\x83\x59\xce\x0c\xa7\xc3\x3e\xac\xb2\x58\x94\x76\xf7\x58\x21\xda\x17\xd5\x78\xf2\x85\x42\xd4\x98\x69\xb9\x4d\xd1\x1d\x30\xbc\xec\xcb\x4a\x12\x56\x67\x28\x02\xce\x68\xef\xb3\xe9\xfc\xb0\x12\x90\x0e\x12\x0a\x24\xc7\x14\xab\x7f\x06\xee\x26\xe9\x3e\xd1\x9a\xbf\x0c\xa0\xba\xdd\x47\xb3\x65\xba\xe8\x21\x73\xad\xc0\x7a\xb4\x94\xae\x97\x6c\x6e\xbc\x6f\xdf\xbd\xeb\x1a\xaf\x93\xba\x5a\x5e\xb2\xfd\x2a\x12\x11\x11\xd8\x8a\x8f\xf0\x67\x0c\x70\x6d\xdb\x04\x2c\x44\xc4\xaf\x3e\x63\xb9\xe6\x1e\x3b\x2f\xe9\x3d\xae\xce\x58\xc0\xf5\x50\xb3\xdb\xd8\x03\x55\x49\xc2\x56\x11\xf5\xa5\x18\x18\xde\x36\x8f\x84\xec\x45\x1d\xa7\x65\xa5\x66\xf6\xbc\xc4\x40\x4c\x92\xfc\xbc\xda\x45\xbb\x1d\x27\xd3\x68\x92\x84\xe3\x89\x9a\x8e\xfd\xf2\x91\xab\x0a\xe2\x81\xc7\xc6\x2b\x11\xaa\x0d\xf9\x2a\x67\xc5\xe2\x65\x43\x59\x10\xdc\x2e\xa5\xb3\x87\x5a\x6c\xbf\xa1\x9e\x35\xc1\x00\xda\x37\x14\xbc\x4c\x82\x2f\x5d\x71\xef\x0d\x3c\xd4\x25\xe5\x5c\x6d\x74\x79\x1d\x6b\xa8\x79\x1b\x2a\x00\xcd\x88\x1d\x96\x0e\xaf\xac\x9b\xa6\x2f\x1c\x9a\x96\x32\x79\xaf\x97\xac\x27\xb5\xc4\xa1\x43\x66\xe4\x15\xe5\x12\x64\x42\x30\xdb\x2f\x4f\x53\x67\xe1\xa5\x55\xf4\x29\xfe\x9c\x74\xdc\xde\x98\xcc\x2a\xd3\x64\xf6\xb6\x1f\x4d\x6d\xae\x64\xa8\x8e\x6b\x7b\xf0\x56\x36\xfb\x3a\xda\x9e\x97\xb0\xf9\x19\x85\xed\xe2\xdf\xfa\xf5\xbb\xc1\x0d\xa9\x19\x1e\x5e\x27\x2e\x16\x55\x3d\xcb\x1e\xc7\xf3\x3f\x76\x42\x6a\xfc\xec\xa7\xe4\x04\x0a\x99\x5f\x0a\x22\xc5\xa6\x27\x16\x77\x2f\x46\xf3\x49\x50\x48\xeb\xec\x29\x8c\xae\xb6\x69\x17\xad\x3c\x21\x03\xaf\x07\xfa\x17\xf0\x81\xa3\x89\x86\x34\xf1\x48\x72\xd1\x2a\x9f\x2b\x81\x30\xe8\xea\x89\x21\xdf\x65\x6e\x45\x49\x3e\xb1\x67\xa3\xbb\x3a\x2e\x42\xec\x1f\xde\x85\xb3\xd2\x41\x56\xe3\x68\x43\x5c\x9c\x59\x75\x24\xf9\x81\x96\xa7\xf7\x67\xdc\x72\xdf\xec\xa3\x11\x8b\x98\x1a\x46\x5f\xcc\x56\x3c\xb2\x91\x46\xac\x6f\x55\x6b\xf7\xf9\xc8\x0b\x13\x01\xa5\x4b\x7d\xd1\x4b\x01\x4d\x62\xc0\xb3\x7e\x43\x67\xea\xb6\xe1\x5e\x2f\x5d\x2d\xfa\x4a\x0d\xf1\xe6\xcf\x93\xd1\x19\x69\xb5\x65\xa7\xab\x2f\xfe\xdd\x0d\xc9\x35\x18\x43\xa9\x25\x26\xde\x50\x7f\x4a\x9b\xc2\x17\x25\xde\xf0\x6a\xf3\xc9\x50\x80\xbb\xe1\x7b\x99\xc3\x12\xc4\x34\xd4\x39\x13\x35\x7b\x14\xd9\x7d\xc4\x23\x70\x84\x24\x0e\x0e\x65\x02\x11\xb4\x8a\x72\xb4\x91\xc4\x82\xba\xbb\x87\x55\xc7\x80\xdd\xe2\x2f\xfc\x12\xff\x10\x36\xe4\x03\xf7\xd0\xf0\x22\x94\xeb\x44\x87\x2e\x19\xf6\xcc\x3e\x90\xb7\xad\xce\xf0\x19\xb7\x3c\x67\x77\x40\xf7\x13\x1e\xc6\x3e\x50\x18\xa2\x8d\x9f\xf5\x51\xfc\xe9\x13\x93\x3c\xe8\xd7\x17\xd7\xeb\x07\xd4\xda\x9f\xd8\xa5\x2a\xb9\x56\x69\xad\x18\x68\x05\xb1\xeb\x7c\x11\xb2\x3e\x0c\xb9\x04\xb2\x98\xc7\x33\x8d\xd5\xb2\x5b\x09\x5b\x29\x74\x06\x7b\x96\x72\xd7\x72\xb6\x55\xc9\xcb\x3c\xec\x88\x84\xd8\x0f\xe3\x44\x4b\xd7\x6e\x5a\x58\x83\xe4\x65\x52\x35\x69\x78\x67\xbb\x33\x6d\xed\x12\x61\x33\x1d\xcf\xe3\x6c\x81\x70\x77\x61\x70\x18\x9d\xd1\xf2\x24\x61\x74\xc2\x60\xee\xed\xaf\x55\x07\xd5\x79\x9f\x54\x43\x2c\x5a\x5c\x7c\x8f\x21\x66\xc7\xf5\x32\xbd\x53\x28\x0a\xc9\x2a\x8d\x54\x43\x2f\x85\xd5\x2a\x83\xa9\xbc\x10\xd6\x70\xba\xbc\x28\x1e\xfe\xea\xef\x7f\x6c\x78\x1f\x36\x5c\xf3\xfe\xec\xab\x13\xa6\x57\x8d\x82\x8c\x04\x97\x03\xfa\xc6\x88\xf4\x75\x81\xa8\xce\xf6\x28\x60\xb5\xec\x67\xba\x01\xbe\xc8\x4f\x9a\x01\x18\x7b\x31\xe7\xcb\xd3\x53\x1c\x90\x44\x45\x01\xd0\xd6\xb3\x9c\xdc\x5e\xe3\x6d\x21\xc2\xda\xe9\xf7\x9d\x76\x36\x8e\xb4\xd7\x00\x73\xdb\xf9\xfb\xb8\x8b\xe7\xde\x19\x48\x30\x60\x93\xf9\x95\x33\x55\x9b\x7e\x4c\x2f\x70\xb2\xd2\x65\xc9\x04\x39\xf9\x12\xff\xad\x7c\x1f\xde\x3b\xa3\xa5\x88\x25\xcd\x14\x8f\x66\xfd\x73\x4f\x1b\x37\x1f\xbe\xa5\x3a\xde\x89\x7c\xe2\xab\x06\x98\x37\xe5\x09\xa7\xa3\xb8\xc7\x45\xce\x4b\x38\x20\x0b\x9c\x70\xa5\xec\x82\x0c\xd3\x30\xa2\xec\xd3\xea\xee\x8d\x79\x7e\x82\x3c\x9c\x99\x2c\xcc\xd4\x70\x78\x22\xf9\x95\xad\x3c\x99\x24\x7d\xb3\x2d\x62\x5c\x15\x9d\x18\xf8\xcd\x59\x71\x86\x2c\x53\xd9\x4a\x37\x13\x00\x7c\xca\x28\x36\x5e\x6b\xfa\xec\x75\xa3\x27\x7c\xeb\x65\x63\x72\x23\x3c\xaf\x5f\xbf\xa1\xa5\xb7\x9c\x04\x6c\x3b\xe7\x2e\x93\x1a\xd7\x64\x7b\x3c\xf0\x0b\xcd\x55\x07\x1b\xd6\xd9\x14\xa6\x23\x32\x95\x5d\x60\x53\x60\x15\xc1\x2a\x9a\x2a\x73\xef\x2a\x18\xbc\xed\x62\x0b\x29\x48\xdf\x2c\xfe\xf4\x40\xdf\x7d\xac\xaf\x69\x0e\x1e\x53\x25\xe9\x75\x16\xf4\x29\xf5\x6b\xb5\x54\x5d\x72\x23\x1e\xd4\xd9\x52\x74\xf7\xe2\x3d\x47\x4b\x78\x4e\xf6\xb4\x5a\x1c\x65\x5e\xf6\xbe\xfc\x6d\x79\x60\xe8\xe3\xb0\x10\xf1\x4f\xe0\x99\x59\x20\xb0\x26\xe1\x74\xf3\x2c\xb4\xb0\x6f\xd6\x16\x0e\xb8\xc0\x1b\x26\xa9\xb5\x0b\x54\xf7\x9c\x42\xe3\x35\xb3\xe4\x46\xd8\x02\x1e\x07\x14\x6b\xf2\x9c\x81\x4c\xdd\x63\x6e\x4b\x25\xb0\xfe\x77\xeb\xbe\x25\x94\x98\xf5\x88\x3a\xa7\x11\xac\xb4\x9f\x2a\xea\x6a\x7c\xdd\xc3\x78\x9d\xac\xc8\x4f\xb0\xbd\x09\x7c\x88\x5e\x45\xed\x33\x6d\x66\x84\x2f\x2e\x98\x71\xc4\xa5\x16\x6c\xe1\x31\x6d\x40\xef\x83\xb4\xc7\x8a\x71\x69\x59\x02\x72\x4e\x3b\x04\x06\x93\x11\x65\x9a\x68\x76\xca\x7a\x5c\x5a\x5f\xb0\x50\x7e\x48\xbc\x1e\xeb\x9a\x54\x53\x15\x42\xd3\x07\xdd\x9f\x49\xef\xfe\x28\xd9\x94\x19\x19\x25\xf7\x03\xbd\xa1\xf8\x3a\x7d\xcf\xb2\xee\xa2\xaa\x31\xb3\x10\x34\x7b\xa7\x1f\x68\xf7\x9e\xcd\x6b\xd4\x95\x0c\x53\xae\x9a\x67\x16\xd8\xf3\x87\x37\xb4\x4c\xad\xea\x7f\x42\x12\x9d\xef\x4f\xa1\x96\x50\xec\xba\x2a\x81\x37\x66\x5b\x11\x62\x8d\x52\xf7\x6f\xdf\xc4\x91\x71\xd5\x73\x95\x30\xee\x69\x22\xba\x2a\x5d\x69\xc0\xc2\x56\x7a\xa2\x6c\xf1\x37\xad\xd6\xfd\xfb\x0c\x0e\x5b\x4e\x09\xcd\x64\xc4\x00\x9f\x29\xc9\xca\x26\x21\x7c\xb0\xf9\x16\xf0\x1a\xd2\xdd\xe3\x20\x79\x3f\x07\x9c\x27\x4d\x09\x6d\x8c\x3a\x0c\xf6\x2a\x20\x3c\x30\xc2\xbf\x4d\x18\xd7\xf8\xe3\x06\x98\x83\x4c\x81\x12\x95\xa0\x27\x7d\x4c\x89\xc0\x32\xaa\x19\xe7\x5c\x46\xf5\x23\x48\x7a\x64\x0a\x66\xcd\x80\x2e\xbe\x60\x85\x93\x81\x87\x27\x6d\x98\x95\x3e\x10\xd4\x63\x29\xb4\x45\xaf\x2b\x3b\x6a\x3c\x89\x9e\x6c\x77\x04\x11\x96\x5a\x8c\x74\x1d\x56\x3b\x08\xb4\x5a\x2c\x05\x57\xc7\xdb\x0e\xa5\x25\x4c\xb4\xd7\x97\x8a\x9b\xcf\x9c\x2d\x35\xa6\xe3\x83\x8f\x52\x8c\x61\x67\x02\x45\x0e\xa9\xc8\xa8\x87\x6d\x71\x2f\x59\xd4\x7e\xb7\xb6\x23\x68\x2c\x42\x72\x4b\x36\x79\x18\x2c\xfa\xb6\x47\xa3\xbf\x34\x3a\xd2\x2b\xee\x5a\x9f\x14\x07\x95\xe7\xdc\x46\x6a\x98\x18\xa6\xa0\x7d\x85\x06\x5e\xd2\x9f\x0e\x6b\xb0\x1a\x2e\x9a\xac\x7b\x2a\x30\x4e\x42\x93\x8c\xe5\x3e\x63\xb1\x76\x04\xfd\xeb\x42\xcb\xdb\x5d\xde\x89\x3d\x2c\xe4\x57\xdf\x59\x75\xbd\xa3\x8f\x80\xc0\xe8\x78\xc1\xe7\xb5\xeb\xb6\x60\xf9\x1c\x54\xea\x65\xcc\x72\x32\x34\xa1\x84\x5a\x1c\xa1\xd7\xa3\x8b\xbb\xb5\xf2\x1d\xcd\xec\x6a\x6e\x03\xdf\xfc\xb6\xe2\x4e\xb9\xa4\x09\xa5\x5b\x91\xf9\xd2\x30\xa5\xa7\x86\xac\x5a\x28\x31\xc4\x8a\xe2\x65\x6b\x0e\xf8\xf5\xec\x8e\xb2\x56\xc6\x81\x83\xcd\x01\xf2\x31\x26\x6b\xa0\xb4\x05\x81\x01\x26\x34\xc5\xa2\x2b\xf7\xd1\x44\x03\x63\xd9\x3c\x10\xcb\xe4\x44\xd8\x59\xc2\x73\x06\x45\x33\x74\xfb\xc6\xd7\x65\x0e\x7b\x78\x60\xcf\xc0\x47\xeb\x10\x40\x35\x43\x91\x66\x8e\x3c\x70\x45\xc3\x59\x10\x95\x3d\x69\x1e\x92\x8c\xd7\xab\x0d\x5d\x0b\x7c\xd9\x00\x53\xc4\x4d\x4a\x13\x1b\x0e\x56\x57\xa4\xef\xa2\xdb\xfb\x01\x4f\x1e\x90\x26\x1a\x9b\x86\x0a\xcd\x56\x20\xdc\x1a\x83\xd6\x60\x37\xa0\xb6\x8b\x0f\xd8\xcf\xea\xd3\x3c\x3a\xd2\xc5\x0b\x45\xb8\x63\x69\xf3\xcd\x01\x56\x34\x67\x23\x39\x18\x7c\xc0\x45\x6f\xcf\xff\x4b\xa2\x2f\xf2\x97\xbd\x04\x29\xc0\x82\x27\x4c\xe3\x56\xd9\xd9\x29\x5d\x84\x14\xf9\x98\x82\x8f\xa3\x10\xc3\x42\xbd\x48\x10\xbb\x8e\x85\x0c\xe3\x6a\x92\xd5\x1e\x42\xba\xa6\xb4\xf9\x53\x6b\xd5\x07\x83\xd1\xb7\x8d\xcb\xdb\xc5\x98\xd7\xb8\x8b\xc4\x44\xb3\xce\x1d\xe4\xd4\xb9\xed\x0a\x93\x17\x9a\x5d\x3a\x54\xda\xf0\x60\x39\xac\xc6\x7d\x4d\x6a\xb2\xbd\x29\x26\x4d\xc1\x0a\x4f\x6b\xc0\xd8\x77\x30\xa4\x29\xec\x32\x63\xb6\x5c\x81\xcb\x8f\xcf\x06\xe0\xc8\x91\x21\x03\x9c\x2d\x97\x4c\xdc\x76\x74\x93\xe6\x69\xe1\x42\x8b\xeb\x3f\xa9\xdc\xc8\xb1\xb1\x14\x96\xec\x1a\x82\xbe\xe6\x8c\x28\x9b\x15\xc2\xe1\xd2\x6e\x2d\x72\xde\x87\x40\xc2\x90\x46\x49\xb9\x0c\x49\x1d\xcc\x3c\xbd\xb8\xa2\x4f\x9e\x45\x48\xf8\xe8\x11\x23\xc7\xaf\x25\xc9\x8a\x00\x20\x12\x3b\x8e\x1b\x54\xa0\x87\x66\x27\x54\xb4\x61\xd6\xfe\x8b\x08\x21\x18\xbb\x7d\xcc\xf3\x98\x63\xc8\x80\xb5\x0a\xb7\xf7\x57\x89\x18\x44\x4f\xc4\x09\x6e\x0b\xe8\x50\xe9\x92\xb6\x5c\x66\xe0\xce\xde\x48\xb3\xf7\x91\x62\x9c\x9a\x00\xa6\x97\x9d\xc8\xd6\x29\x37\x8d\x6a\x75\x14\xe3\x9f\x29\x42\x07\x3d\x97\xcd\xb1\xe5\x4a\xfe\x6c\x8f\xe3\xa2\x9d\xb6\x31\x2e\xa8\xf1\xc1\x24\x20\xb1\x92\x8d\x3f\xa0\xa7\x32\x39\x6f\xcc\x62\x11\x61\x94\x01\x47\xe2\x82\x01\xa7\x72\x41\xd6\x99\x8d\xdf\xe3\x18\xa3\xd3\xfa\x38\x23\x5b\xc5\x07\xcd\xb7\xa3\xec\xd6\xdb\x9b\xbf\x4d\x68\x19\x14\xba\x48\xfc\xf2\x6d\x9e\x34\x29\x86\x70\x32\xa6\x4b\x5a\x41\x73\x43\xf2\x10\x9b\x85\xaf\x96\xcc\xfe\x32\xbc\xf9\xc0\xf5\x7c\x04\xa0\x97\x16\x7c\x2e\x8b\x41\x79\xd8\xae\x30\x1b\x35\xab\xbe\x64\x71\xe4\x32\x42\xc2\x22\x4d\x5e\x6a\x20\x24\x51\x9f\x60\x0e\x83\x95\x5e\x6e\x5d\x9b\x54\x9d\xaa\xb6\xb0\x39\xe3\x6c\xc0\x17\x3c\x75\x48\xf4\x6c\x32\x7e\x61\x4b\x83\x3d\x1b\x19\x40\x38\x11\x9b\xcd\x7a\xf9\xe9\x7f\x52\xaa\x48\xb8\x1d\x84\xde\xfb\x63\xc0\xa3\x1f\x8a\x9f\x4e\x8d\x87\x28\xbb\x64\x12\xf6\x70\x75\xa3\x6f\x38\x33\x65\x9d\xe5\xbe\x6d\x18\x92\xb6\x32\xd8\x2f\xc4\xe2\xd0\xfe\x5b\x87\x4a\x6d\x53\xf2\x36\x8e\x66\x92\x24\x98\x98\x7e\x7d\x1d\x26\xe4\x2f\x09\x26\xae\x9c\xd7\xd9\xc5\x0d\x0c\x17\x77\x12\x95\x49\x6e\x83\x20\xd9\x49\x56\x5e\x16\xe8\x6f\x2a\xaa\xc4\x69\xcc\x62\x24\x68\xe9\xf5\x4c\x28\x26\xc1\xc6\xaf\xa0\xbe\xd5\xb5\x7c\xb2\x9a\x8c\x76\x13\x51\xab\x38\xcb\x9d\x19\x13\x9b\xe1\xf5\x3c\x9f\xec\x20\x14\x01\x0f\x5c\xa4\x3a\x47\x88\x78\xc2\xba\x47\x4d\x91\xb8\x9b\x92\x38\x79\xa1\x28\xc3\xe0\x16\x5c\xfe\x0f\x21\x84\x0a\x3c\x1c\xa8\x61\x13\xe2\x7f\x83\x80\xaf\x3a\x36\xdf\x5e\x22\x63\x3a\x0a\x74\xc8\xb2\xaa\x05\x63\xf8\x4d\x90\xa5\xf1\xe3\xc1\x14\x74\xa6\x43\xd5\x28\xe9\xa8\x83\x65\xa2\x46\x0a\x8a\x88\x93\x93\x7e\x6c\xbb\x09\x26\x3e\x13\xef\x4f\x3c\x9b\xf8\x7c\x1d\x05\x4d\x3c\x9e\xb8\xa3\x0f\xbe\x54\x51\x3d\xfb\xf2\x45\x76\xbd\xf0\x95\x01\x1b\xae\x4e\x0d\xf9\x80\xbe\x72\x05\xc8\xbf\xa8\xab\xaf\xf6\xf5\xa8\xfb\xe3\x56\xb4\x9f\xfe\x68\x5f\xb5\x48\xcd\xa3\xf1\x06\xf3\xef\x46\x43\x4d\xa3\xd1\x76\x1a\x88\x24\x45\x81\x89\x04\x0c\x62\xe1\xdf\x6e\x78\xce\x74\x0c\xb6\x05\xf2\x22\xc9\xf7\x3e\xe6\x3f\x89\x5a\x22\x90\x0c\xa4\x83\x56\xd1\xf7\xce\x81\x01\x9a\xcc\x22\xc3\x05\xe1\x26\xd6\xf2\x20\xd6\x01\x3b\x56\xbc\x24\x05\x52\x80\xe1\x51\x18\x06\x59\x18\x9d\x60\xd8\x86\x4e\xcb\x48\xda\x01\x13\x2c\x6a\x96\x70\x21\xcd\x7b\xc5\x41\x56\x7e\xaa\xac\xf6\xce\x1e\xe5\x24\x41\x05\xfc\xcb\x90\xc1\x0f\xc4\xde\x8c\x25\xa8\xd4\x13\xa5\xa5\x88\x77\x27\x8e\x36\x1a\x8c\x2b\x54\x59\x3a\x58\x2f\x6a\xe4\xc0\xbb\xc8\xa6\x39\x37\xde\x18\x51\xac\x94\xba\x43\xe9\xfb\x79\xc7\x93\x1e\xa4\x5d\xda\x4f\x39\x1b\x19\x93\xfb\x5e\x61\x37\x39\xff\x21\x04\x3c\x60\xb0\x84\x90\x6b\x6f\x99\x05\xf6\xb0\xf3\xc6\x1c\x82\x8d\xc9\xb2\x42\x3c\xe7\xdf\x4e\x0a\x06\xf7\x21\xa1\xf5\x41\xb1\x60\xa5\x4a\x5d\x43\xb7\x98\xb7\x56\x0e\xdf\xb2\xe0\x5b\x91\xb8\xe6\x80\x49\xe8\xcf\xf5\x44\x62\x4d\x93\x5b\xf9\x7f\x91\x06\xb2\xc9\xad\x8b\xb7\xbf\xad\x20\x71\x93\x46\xb9\x6d\xbf\x54\xa6\x69\xbb\x9b\xf3\x43\xc7\xa3\x75\xb8\x56\x9b\x1e\xe4\x6a\x9f\xd0\x50\x15\x30\xb6\x44\xd7\x6d\x34\x4f\x01\x1d\xf4\x02\x89\x40\x75\x73\xcf\x1f\xfa\x44\x0d\x79\x54\xab\x57\x40\x8c\x4a\x34\x8a\x61\x48\xaf\x95\x35\x7c\x75\x42\x8b\xf1\xf5\x4a\x1e\x4b\x43\x1a\xa1\x36\xb0\x0d\x09\x63\x48\x55\x9f\xd8\xa0\xe8\xec\xd8\x5b\x11\x3e\xe9\x97\x47\x1b\xbd\xbf\x90\xca\xae\xb7\x88\x31\xa5\x78\x13\xb5\x2e\x5e\xbf\x2e\xa2\xc3\xd8\xd4\xde\x89\x5f\x63\x16\x5e\x1b\xf7\x38\xc8\x3d\xd3\x5d\x7c\x27\x62\x0b\x9a\x95\x3f\x4e\xae\x85\x33\x8f\x27\x2f\xfb\xfa\x2e\x95\x06\xf2\xdd\xab\x9b\x5f\x25\xf4\x70\x12\x38\x26\x08\xd1\x1d\xe9\xbd\x9f\x09\x76\xe3\x98\xda\xe2\xfc\xa6\x36\x44\x37\x6c\x88\xcb\xe0\x9b\xdf\xa2\x8f\xb8\x0e\x05\xc3\x6b\x25\xbc\x10\x01\x3a\x4f\x8c\x1b\xf1\x9f\x0c\xb5\x7e\xf6\x61\x58\xcc\x0a\x42\xcb\x62\x8e\xcb\xe3\x42\xe0\x82\xc1\xfd\xdb\xd5\xfe\xe3\x6b\xd6\x94\x24\x97\x96\xdd\x34\xb7\x85\xcd\x9e\xb5\x3b\xef\xae\x88\x96\xb1\x17\x1e\x46\xde\x8d\x56\x83\xb8\x4b\x8f\x31\x3a\x5d\xbc\x43\xeb\x74\xda\x04\xda\x81\xff\xd9\x13\x38\xb7\xb2\x5a\xee\x64\x3a\x79\x9e\xb5\x9a\x59\x7a\x33\x40\x31\x35\x99\x6a\x2f\x04\x4f\xcb\xc4\x3c\x1a\xcf\x80\x9d\xe5\x5c\x6d\xad\x9d\x87\xc2\x88\xf1\x2d\xb8\x0d\xed\x15\x52\x59\xd4\xd2\x64\x4d\x4a\x96\x2d\xa8\xf7\xad\xe0\xab\x45\x09\x5e\x67\xc2\xc9\xb9\x9f\x68\x3d\x12\xca\xac\x6d\xe4\x16\xbb\xae\x43\x3b\x2c\xba\x2e\xf5\xbe\x1c\x43\xc6\x16\x06\xb5\x43\x9a\x24\xcd\xe7\x94\x5d\x71\x02\x7d\x2c\x7c\x0a\xf2\x53\x6b\xb4\x73\xee\xef\xd8\x01\x25\xc0\x92\x24\x1f\x4a\x63\x35\x58\xb1\xdf\x22\x75\xfd\x72\xed\xc1\x71\x88\x40\xa2\xe2\x52\x2d\x8f\x40\xaf\x48\xeb\x83\xcd\xd4\x3a\x83\x65\x6f\x44\x47\x53\x98\x5d\x09\x5a\xdb\x67\xe2\xfe\x95\x96\xfb\x30\xe5\x09\xd2\x84\x8d\x21\x6e\x8d\xf2\xfb\x87\x24\x64\xc0\x80\x0b\xbd\xc0\x99\x34\x7f\x49\xe1\x1b\x2a\x73\xc1\x5a\xe8\xf9\x9b\x2d\x70\x49\x7c\xef\x1a\x87\xc0\xf7\xeb\xbe\xce\x21\x2c\x6e\x9b\xc0\x52\x80\x45\x56\x56\xd4\x7b\x01\x95\x0e\xeb\x57\xb0\xb7\x90\x82\x71\x9a\x29\xaf\x90\x2d\xec\x13\x40\x02\xaa\x46\x7e\x87\x66\x00\x17\x21\x72\x44\xbe\x97\x77\x47\x79\xc6\xd0\xc8\xf6\x3c\xf4\x96\x64\x72\x51\x20\xe4\x44\x8d\x54\x57\x65\x8d\xf0\x3b\xc9\x61\xc7\x64\x56\x4e\xe3\x7c\x72\x6b\x1f\xaf\xb4\xcf\x0c\x29\x23\x31\x75\x76\x5f\x51\x71\x44\x02\x50\x39\xe6\x30\x2c\x34\xa0\x14\x62\xbe\x80\x92\xb3\x4b\xf9\x0d\x44\x7a\x26\xb1\xea\x70\x76\x61\x0d\x3a\x82\x4b\x9a\xca\x7a\x18\x60\xe3\x7e\x8c\x16\x4c\x97\x85\xe8\x84\x03\xc4\xe1\xa2\xe7\xe3\x6c\xcf\x18\xa3\x5f\x40\x66\x25\xd6\x8d\xc0\xfc\x5c\x54\xc5\x0d\x16\xdf\x0e\x46\xbb\xe5\xdc\x04\xaf\x86\xd6\xa2\x86\x80\xaa\xe2\xfa\x89\x6b\x7e\x02\x89\xf7\xc9\x3a\x1d\xd5\xef\x6a\xf1\xf2\x84\x37\xd8\xde\xb1\x9a\x99\x1a\xf7\x48\xdd\x62\x84\x12\x41\xc4\x59\xa3\x91\x11\x09\x2b\x76\x9b\x5f\xe5\xdc\x6f\x24\x9c\xca\xe3\x57\xec\x1c\x61\xf5\xf7\x77\xd7\x0b\x39\x68\xe6\xbd\xbd\x55\x76\x39\xed\x61\x73\xa8\x9c\x99\xec\x86\x6a\x6b\x28\x43\xd1\x8f\x07\x3d\x33\x8f\xc5\x6a\xee\xba\xa5\x50\x85\x59\x18\x78\x77\x3c\x5e\x7b\xf7\xf5\x8c\x85\xbb\x4b\xa0\xba\xfa\x45\xa0\x9a\xd2\x11\x70\x19\x09\x1e\x44\xa1\x42\x26\x94\x24\x3c\x98\xc1\x3c\x68\xfd\xfe\xb7\xcd\xfd\xdf\xfd\xa1\x67\x07\xde\x50\x17\x7a\x2a\x60\xf4\x8f\x0c\xab\x3d\x14\x95\xd3\x7b\xaa\xe0\x90\xcf\x9a\xa1\xf3\x1e\x53\x0e\x90\x17\x43\x52\xf5\xe1\x4c\x9e\x63\xca\x02\x42\xbe\x65\xd5\x19\x38\xac\x38\x32\x64\x01\xc7\xcf\x62\xf6\x3e\x06\x8c\x3e\x66\xf9\xb8\xca\x03\x5e\x0c\x78\xeb\x22\xda\xf0\x35\x7f\xfa\xbd\x7b\x0f\xab\x34\xe4\x3e\xe8\x03\x47\x03\xf1\xa6\x3f\x45\x7f\x41\x4a\x57\xd9\x99\x22\x6a\x74\xd1\x07\xa6\x81\x43\xe3\x19\x1d\xef\xc8\x05\xd6\x38\x66\xdd\xee\xd5\x07\x7b\xad\xf5\xc5\x86\xc0\xb0\x8d\x0c\x32\x64\xb0\x27\x17\x74\xb5\x0e\x08\xe6\xfd\xa9\x43\x57\x0a\x41\x2b\x48\x30\xe2\xab\x70\x0b\x9e\xbb\x48\x32\x65\x4a\x19\x0a\xa4\x1d\x5c\x8c\x55\x59\x07\xe3\x1c\x3d\xc2\x81\x7e\xc7\x40\x21\x1a\xce\x7d\xa5\x78\xfc\x98\x9d\x14\xfb\xc7\x18\xe1\xe0\x07\xd0\x6f\xba\xba\x9e\x1c\xd6\xdc\xce\x71\xf8\x57\xd0\xe0\x94\x6c\x53\xf8\x28\x48\xa0\xa8\x50\xb2\x94\x28\xfa\x1c\x81\x86\xea\x25\xd4\x6b\x40\x72\x0d\xb3\x6d\xa4\x57\x7f\xe7\x26\x6d\x51\xd3\xdd\x1a\x8b\x61\xa5\x2a\x56\xc1\x19\x70\xc6\x14\x03\x3e\x5e\x06\x78\xa2\x1a\xc9\x86\xea\x35\x16\x49\xd4\xb5\x3b\x97\xec\x54\xa2\x99\x0e\x4c\x16\xce\x71\x05\x61\xbb\x78\x1a\x42\xb1\xe5\x2a\xc8\x03\x98\xee\xf6\x1d\x54\xf8\xb8\xec\x49\x0f\xdc\x27\xe6\xc8\x62\xf5\x2c\x75\x1f\x42\x9a\xe1\xa8\x57\xc7\x0d\x86\x60\x6f\x60\x38\x54\xfa\x4d\x82\x98\x68\xcb\x24\x4d\xe0\x04\xe6\x72\x93\xef\x99\xe3\x33\x9a\x81\xda\x7d\xc2\x5b\x26\xc6\xcc\x22\xeb\x66\x31\x39\xe4\x9c\xdf\x60\xac\xf5\xcc\xa0\x88\x66\x02\xc2\xe3\x0e\x72\xaa\x1f\x77\xd1\xb9\x32\x29\xc9\xb4\x90\x11\xa8\x10\x3f\xe5\x3a\x3d\x5c\xc6\xaf\x23\xad\x26\x28\xf7\x7b\x67\x06\x98\xf3\x00\x6f\xc2\x88\x29\x90\xe0\x2e\x8f\xd7\x7a\x67\xa0\x28\x44\xab\xc4\x38\xaf\x5c\xfd\xbd\x3a\xb8\x96\x01\xd7\x24\x2f\x60\xa6\x6f\xa5\x2d\xd0\x3c\xfd\x61\xcb\xfd\x60\xd1\xb6\xce\x4b\x4b\x44\x9d\xe2\xcb\x8f\x96\xf5\xba\x9f\x2a\xdd\xf4\x4d\xe3\x94\xbc\x9d\xb4\x41\x32\xb3\x7e\x77\x4d\x2f\xf1\xe8\x69\xea\xf5\x02\x26\x94\x75\x40\x48\x57\x2d\xce\xfa\x0c\x72\x02\xeb\x95\xbe\x50\x89\x09\xfb\x85\xb2\x5d\xae\xa2\x57\xec\x13\x0d\xe7\x40\x8f\xe1\x64\xfb\x9f\xdb\x3c\x72\xe8\xf9\x93\x7f\xeb\x80\x88\x2a\x56\xae\xd9\xb5\xf4\x17\x80\x92\x58\x22\x07\x12\x61\xf1\x61\xbf\xa2\x95\x2f\x5a\x07\xf4\xf1\x14\x02\x8f\x15\xf2\x14\xb8\x41\xed\x0a\xea\x23\x4b\xe7\xe0\xaa\x04\xc6\x68\x75\xdc\xb4\xd7\x37\x2a\x38\x34\x9a\x13\x68\x99\xca\x04\xc7\xc8\xbf\x9a\xc4\xb2\xb6\xb5\x7b\xc6\x32\xd8\x67\x2a\xf1\xa6\x2d\x2b\x80\xf3\x32\xeb\xca\xf2\xea\x4a\x8c\xd3\x28\x7f\xe0\x29\xc5\x9a\x25\xea\x99\x9a\x00\x56\x9e\xd4\x0c\x16\x82\x07\x54\x84\x26\xef\xd5\x6f\xe7\xd2\xfb\x4d\x23\xdf\x37\x16\x83\x92\x4a\x0f\x85\x38\x31\x8f\xe4\x32\x3c\xf6\x6a\xcc\x01\x66\xc8\xd3\x08\xe2\x28\x0a\x3c\xaa\x4c\x11\xd7\xba\x62\xfb\x1b\x00\x25\x96\xa0\x02\x55\x28\x4c\x34\x9f\xd2\x24\xaf\x69\xcb\x63\xe9\x03\x75\x5c\x78\xb4\x43\x69\xbc\x1b\x15\x23\x6b\x82\xbe\xc5\xf1\xe5\xce\xf0\x41\x56\xd6\xbb\x49\x95\x98\x12\x59\x7d\xd1\xa4\xe5\x68\x04\x3f\xdf\x14\x2e\x80\x8d\xe7\x56\x94\xa4\x6a\xa3\xbb\xd6\xa6\x2e\x92\x11\xf8\xf8\xe8\xd9\x4b\x32\x66\xec\x33\x4c\x02\xa8\xd9\x5b\xbc\x54\x82\x3c\x9f\x88\x90\x86\x96\x80\x06\x7e\x73\x43\xf7\xdb\x58\x38\xa1\xdc\x19\x29\x1c\xf7\x53\xae\xca\xc6\xe9\xb3\x68\x77\xba\x0d\xa4\xb0\x37\x39\xa5\xf3\x61\xd0\x0f\xd0\x8d\xd6\x24\xb5\x31\x28\xd0\x5c\xb9\x0d\xc2\x65\xcf\xf0\x48\x5f\x46\x40\x05\x03\xeb\xc5\x7e\x32\x8e\x45\xa9\xfe\x6d\xd4\x35\xbd\x38\xd6\x8f\xb1\x24\x8c\x71\xb6\xff\x18\x7b\x2e\xfb\x7f\xb5\x34\xbc\x73\x56\xfb\xb6\x18\xd3\xa9\x67\x40\xad\xeb\x27\x9d\x41\x74\xd5\xdc\x4c\x57\x3f\x40\x3a\x9d\xb8\xe1\x04\x87\x04\x5d\x32\x72\x6e\x04\x96\xdc\x15\xd8\x12\x10\xc8\x45\x4d\x88\xb5\x3b\xe7\xd8\x00\xa1\x16\x10\x3b\xc8\x8c\xe4\x70\x85\x57\x7d\xac\xa2\x2b\x91\xcd\x07\xbb\xa1\x8a\xaa\x50\xf9\x7b\x13\x5a\x6c\x19\xb9\x04\x2a\x50\x67\x05\xf1\xed\xad\xb5\xc1\xf7\x0e\xab\xe5\xa5\x0b\x77\x79\xc4\xf4\xae\xd6\x30\xb0\x9e\x1d\x22\xea\x5a\x4a\x0d\x64\xfd\x0c\x98\x88\x32\xca\x51\x53\x82\xab\x61\x0d\x73\xfe\x0d\xa9\xc2\xb2\xc5\xe8\xbe\x21\x6d\x0a\x78\x0c\xe6\x9c\x22\xe7\xee\x33\x0c\x04\x4e\xde\x88\xee\x3f\x65\x3a\x9e\x12\x89\xa4\xb7\x68\xa4\x39\x6d\x9c\x6f\x11\x6d\xe0\x68\xcf\xd1\xcb\x7a\x60\x58\xd9\xa0\x9f\x4e\xf8\xfa\x89\x29\xac\x18\x18\x9f\xe8\x68\x4e\x4b\x3a\x13\x41\xf1\x22\x8e\xea\x8c\x6a\xdd\x93\x20\x14\x06\x40\xf2\xa7\x4c\xc1\x84\xcc\x90\x2d\xf8\xeb\xb3\x62\x25\xbb\x74\xf3\x2b\x5b\x90\xda\x49\x34\x13\xeb\x43\x30\x43\x52\x47\x6a\x4a\x6d\x75\xd1\x59\x1f\x04\x5e\x3b\xbd\xb1\xed\xea\x0e\xff\xdc\xb2\x83\x5a\x18\xb5\x16\xf1\x33\xb1\x7a\x02\x1b\x7d\xd6\x77\xcd\x8b\xa0\xc1\xf6\xe6\x14\xf8\x21\xe6\x29\x7e\x6f\xa1\x84\xad\x1b\x31\xd6\x01\x2d\x6c\xcb\x6b\x72\x49\xb3\x8c\x0f\xb9\x2d\x5b\x8d\xd4\xef\x13\x66\xac\xbe\x72\x20\x16\xed\x71\x39\x6b\x60\xb1\x1d\xec\xca\x7d\x6a\xa9\x74\xd2\xac\x79\xce\x50\xe0\xad\xe1\x11\x82\x44\x36\xb8\x46\xb8\xc5\xca\x66\x64\x91\x60\x2a\x6f\xc5\x25\xf4\xc6\xb1\xe2\x7b\x49\x60\x5a\x55\x1c\x53\x43\xdb\x04\xe3\x84\xaf\xe3\x21\x0f\x7a\x21\xae\x5b\x0b\x0f\xb9\x59\x1d\xcd\x9f\x0c\x86\xe7\x85\x10\x09\x06\xc6\xb0\x08\xac\x6e\xe8\x84\x62\x41\x7d\x75\x60\xb4\x2e\x3a\x63\xcf\xe5\x41\x80\x08\xa6\x49\x10\x53\xbd\x39\x5c\x21\xc1\xfa\x2c\xc7\xe5\x18\xc1\xc4\xe6\x44\x4c\x8e\xf6\x54\xee\x27\x80\x52\x3e\x33\xc3\x55\x2b\xa4\x46\x88\xd2\xff\x1f\xf6\xdf\x91\xff\xe6\xc7\xa3\x39\x78\x27\x1a\x7f\xc3\x08\xdc\x31\xf2\x3c\x61\x64\x26\x71\xe4\xdb\xcd\x7a\xd8\xb0\xdf\xb6\x42\x93\x0e\x4e\x1b\xf8\x02\x1c\x55\xbd\xb2\xf5\x03\x56\xf1\xe1\xe6\x9f\x5f\x12\xe5\x4c\x79\xf0\x17\x61\x8a\x2f\x4a\x83\x7f\xae\x62\x66\xea\xaf\x06\xfc\x91\xd4\x52\xfc\x7e\x6a\x71\xa5\x6a\x33\x33\x43\xb2\x99\x2b\xd8\xaa\xcb\x5a\xfa\xe7\xb6\x47\x59\x46\x6d\x94\xbc\x56\xe1\x14\x5f\x13\x95\x5d\x2e\x33\x38\x29\x62\xb9\x33\x5b\x9c\x61\xe6\xb0\xd2\xe1\x2b\xa5\xfe\x68\x7a\x88\xb8\x8f\x2a\xad\x54\x6c\xca\xa5\xcb\x36\x0b\xf3\xc7\xd5\xd9\x71\xb3\x5b\x67\x52\xf4\x87\xc2\x14\xb5\xfa\x99\x56\x0d\xd5\x2b\x6c\x54\xfb\xd3\xb9\x6d\xbd\xf5\xfa\x05\xa5\x07\x95\xe8\xb0\xde\x12\x61\xeb\xf5\x95\x6c\xc4\x92\x13\x56\xda\x14\x39\xe5\x88\x35\xc2\x42\xf4\x95\x2c\xbd\x95\x54\xae\x38\x06\x1b\xdb\xb5\x0e\xe1\xb8\xb3\x69\x0c\x96\x84\x9d\x1d\xfc\x04\x83\x8a\xfd\x9a\x9c\x30\x53\x82\x26\x4e\x2f\x23\x56\x7a\x15\x76\x45\x45\xc4\x52\x91\x62\xb0\xa4\x42\xdd\x7b\x1c\x91\x3b\xca\x7a\xb1\xd4\x4c\xde\x11\xa1\xde\x66\xdf\xd8\x59\x13\x45\x4a\x5e\x14\xf1\x4a\xeb\x6b\x81\x29\xf5\x48\xa0\xd4\x73\x45\xcb\x30\x1c\xf4\xd2\xc4\x1b\xb8\xcc\x2d\xfc\x2c\x73\x87\x38\x2f\x9f\xd3\x0a\x8a\xf1\xf9\x32\x9b\x05\xb9\x99\x17\xbb\x2a\xef\x97\x73\x57\xea\xad\x16\xca\x52\x7c\xf6\xe5\x39\x1b\x7d\xa1\x59\x7a\x2c\x2c\x3f\x3c\xa9\x94\x55\xaa\xb6\x9d\x2e\x8d\x68\xa4\xe4\xe0\x7b\xfe\x6e\xf0\x8d\xde\xd2\x68\xc1\xce\xb4\xd2\xcd\x84\x05\x01\x87\xfd\xdc\xc3\xf9\x15\x8e\x2f\x3d\xfe\x08\x36\xb5\xff\x74\xef\x39\xcc\x75\x0b\x0b\xd3\xc2\xd8\xd1\x64\xdb\xbc\x57\x67\x1a\x53\xe8\x18\xe5\xfc\x4a\x78\x2b\xff\x70\x7d\x4b\x34\x97\xc1\xdb\xba\x56\x31\x54\xfc\x17\x96\x7a\xdd\x72\x02\x4c\x8b\x3f\x52\x0c\x0f\xfb\x34\xaf\x91\x15\xd7\xaf\x2f\x3f\x64\xb9\x8b\xf9\xab\x0f\x1c\x1c\x0d\x6c\xe3\xfc\x93\xf4\x26\xff\x48\xb4\xb5\x89\x45\xe7\xae\x53\x2b\x76\x15\x3f\x09\xa7\x6b\x46\xe2\xd6\x04\x3e\x29\x19\x56\x7a\xaf\x73\x2f\x29\xfe\xd2\x31\x3c\x66\xa3\x23\xff\xec\x06\xdb\x35\xd5\xb2\x34\x77\x65\x5b\xf1\xa3\xd7\xd0\xb3\xd2\x8d\x9a\x85\x66\x86\x2e\x71\x4f\xd7\x2d\xd9\x0d\xfe\xbe\x16\x7b\x8e\x9b\xd0\xf7\x59\xcd\xa1\xef\x0e\xd5\x3e\xab\x5d\xf7\x9d\xeb\x31\x64\x50\x66\x83\xb0\xc6\x10\x9c\x5e\x1f\xeb\x61\xe4\x1c\xe0\xde\xd2\x98\x81\x87\x70\xa8\xdb\xa8\xf4\xfb\xdd\x4e\xd2\xeb\x80\x1d\x93\xe9\x41\x2f\x4a\x9d\x48\xd5\x2f\xe0\x6d\xbf\x88\xd3\xaf\x15\x42\xef\x54\xfd\xe9\x1c\x8b\xf9\x13\x8a\xe4\x30\x87\xf1\xf7\x2a\x7a\xcf\xc6\x15\xd5\x51\xad\xde\x0e\xdd\xeb\xca\xed\x02\xef\xad\xec\x33\x71\xd2\x7a\x05\x00\x71\x73\xc0\xad\xe3\xfa\x83\x25\xdd\xf5\x65\xcd\xd3\xa7\x6e\x77\x1d\x7f\x03\x99\x67\xbf\xf3\x36\x33\x2e\xe7\xe7\x76\x45\xeb\xeb\x99\x8f\x4c\x2d\xc3\x5f\xdf\xfd\x50\x37\x3c\xda\x59\xc1\xf3\x24\x99\xa8\x42\x5c\xde\x56\x27\x4a\x38\xa4\xee\xea\xd5\xe6\x21\xc7\x06\xaa\xc7\x51\x45\xed\x51\x8d\xa2\x5e\xb5\x2b\x87\xc4\xea\xb3\xf5\xd6\xf4\x69\x21\x53\xe9\x71\xae\x1d\x8c\x6c\xd3\x31\x09\x1f\x38\xe6\x0a\xab\xeb\x9b\xa2\x82\xdc\xac\xfb\x28\x0b\x7f\x2e\x8b\x34\xda\x55\x78\x5c\xcd\x8f\x9c\x14\x57\x44\xe0\x3d\x15\x9e\x19\x7e\xb1\xdb\x89\x56\x82\xa9\x7e\xa3\x2c\x3f\x2d\x2c\xa9\x30\x1d\x1c\x92\x1c\x95\x0b\x03\x27\x45\x0d\x82\xa4\xdd\x61\x8d\x2f\xd1\xf9\x2d\x0d\x21\x6b\x1a\xea\x50\xe8\x28\x05\x06\x65\x19\x56\xb7\x2d\x06\xfb\x8b\xde\xf8\xcc\x38\x49\x43\x2a\x5f\xdc\xeb\xc6\xfb\xe0\xbb\xac\xe2\xe4\x46\xc9\x16\xd6\xec\x2d\xea\x63\xa3\x7b\x31\xce\xf9\xa4\x66\x8a\x35\x72\x08\x2e\xee\x53\x5d\x28\xe1\xcb\x67\x4b\x1b\xce\x25\x54\x14\xce\x88\xeb\x05\x69\x4f\x2d\xe6\xbf\x36\x11\xd7\x47\x05\x2a\x1f\x4b\x61\xcf\xaa\x87\x74\x84\x2a\xd0\x5a\xca\x02\x58\x1f\x82\x6b\xfd\xd4\x52\xc9\xc5\xab\x66\xdd\xb3\x48\x69\xab\x7a\x9f\x3e\x5d\xfd\x6a\x82\xab\x2f\x55\x58\xb3\xcf\xc5\x5f\x2f\x38\xcc\x2a\xd0\x5e\x50\x35\x9f\x4d\x94\xb5\x3f\x53\xac\xde\xa7\xbb\x26\x67\xd6\xe0\x5f\x8c\x3d\x19\x5d\x7f\x40\x7a\x2b\x72\xdd\xeb\xe3\xee\x09\xe9\x7f\x23\x5e\x92\x18\xd4\xb5\x44\x86\x8f\x2d\x94\xfb\x58\x6a\x3b\xbe\x16\xd4\x64\xd7\xaa\x5c\x3e\x1e\x80\xac\x63\x39\xb7\xb2\xfe\x76\x2e\xfd\xee\x73\xf3\x3c\x02\x6a\xe1\xd7\xd4\xcd\x94\xf8\xe4\x7b\x8d\x1a\x3f\xa1\x5a\x1d\x36\xed\xed\x17\x9d\x92\xf0\xc2\x67\x24\x93\x1e\xba\x37\x1c\x41\xa8\x51\xfb\xbd\x46\x5f\x31\xaf\x66\xa6\x86\x03\xee\x6c\x11\x4c\x89\xd9\xc1\x43\x62\x55\x05\xb4\xf3\x95\x1f\xba\x28\xff\x27\x59\x68\xa9\xd4\x29\xbd\x82\xf4\xcb\xa2\xbd\x3d\x0d\x62\x2f\xfe\x23\x94\x17\xf7\xd0\x37\xdb\xe9\xb7\xe2\xb9\x3c\x73\xb6\x1c\xeb\x14\x09\xb3\x9c\xa8\x05\xcf\xe3\x42\x44\x77\x0c\x49\x4a\xee\x37\x8c\x45\x48\x6b\xc4\x63\xe0\x4c\xfa\x66\x03\x32\x2f\x51\x54\xb3\xdf\x29\x5c\x2f\x3c\xc2\x2e\xd0\x5c\x56\xb5\x9f\x49\x96\x75\x9e\x0f\x28\xa7\x94\xf7\x54\xd4\xca\xcc\x47\xf8\x13\xd5\xc3\x07\x8a\x1e\xe0\x46\xa0\x57\x41\xf7\xdc\xcd\x19\x1f\xfd\xfe\x9a\x4c\xa7\xae\x27\x64\x7b\x39\x7c\xb9\x87\xa7\xcc\xc5\x35\x00\x6a\x6c\x9d\x3c\xcf\x27\x84\x97\x1a\x5c\xed\xc1\x5b\x03\x29\xb2\x17\xb4\x3a\xa8\xd6\x1b\xd4\x68\x99\x03\x13\xff\x58\x5e\x7f\x71\x7d\xb1\x50\x27\xda\x70\x80\xf7\x3e\xe4\xb5\xd2\xa9\x7f\x3a\xca\x3e\xd0\xee\xe0\xa1\x40\x72\xec\xd7\xfd\x64\xfd\x3c\x98\x49\x06\x2c\x05\xcc\x0d\x72\x2b\xd9\xc5\x2e\xab\x0b\x56\xd2\xad\xc9\xd7\x9c\x49\xfc\x79\x20\xd7\x30\xd2\xc9\x3e\xcc\x67\xd7\x1e\x15\x96\x96\xaa\xb7\x31\xc9\xfc\x2e\x7b\x4d\x69\xf1\x9f\x8f\x37\x07\xed\xe8\xff\x09\x54\xa8\x15\x41\xcc\x56\x95\xc2\x6c\x46\x10\xd4\x2c\x47\xef\xba\x2d\xa0\xa1\xce\x92\xd6\x56\xd3\x2c\x32\x97\x14\x22\x14\xc9\xa4\x12\xa7\x50\x18\x48\x5a\x0f\x4e\x37\x10\x87\x9d\x64\xa8\xda\x01\xd4\x54\x2c\x98\xf5\xd0\x41\xb7\xe9\xe6\x1b\x39\xea\xa1\x59\x89\x43\x49\xab\x2a\xbd\xaf\x71\x6a\x46\x74\x39\xe1\x43\x45\x8a\x69\x70\x69\x55\x8b\xa1\xe9\x2d\xab\x17\x70\x3d\x84\xe7\x11\x03\xfd\x78\x98\x3e\x11\x8d\x43\xf5\xfe\xc1\x6d\xb9\x80\xfb\xbd\xe8\x26\xdd\x4d\x39\x56\x07\x6e\x3c\x2c\x6f\x6c\x9b\x2c\x68\x38\x1a\xfd\x61\xf7\x6a\x5d\xa9\x77\x35\x87\xf8\xdf\x19\x1e\xd7\xd9\xa0\x94\x92\xd0\xd1\xf7\x83\x1a\x73\x1f\xf2\x52\x7f\x77\x18\x1a\xbb\xed\xb0\x78\xec\xfb\x3b\x71\xfb\x11\xa5\xcb\x04\xa0\xc7\xba\x25\x02\x2e\x72\xda\xf2\x92\x26\x30\x7c\x4c\x4d\xeb\xee\x32\xf7\x5b\x2c\x9c\xce\x47\xac\x56\x57\x5a\xf6\xaf\x2f\x38\x2d\x2d\xc4\xc4\x30\x6e\x82\xeb\x98\x48\x58\x41\x75\x8b\x65\x44\xef\x5f\x39\x84\x01\xb3\x53\xaf\x52\x72\x33\x61\x31\xcd\x2a\x94\x51\x6c\x88\xa0\x38\x35\xfa\x25\xce\x70\x7b\xca\x40\x94\x7c\x6a\x8d\xfa\x18\x54\xb4\xee\xbe\xa0\xf1\x2c\xe1\x1d\xd0\xfc\x10\x68\x82\xdf\x37\x8d\x7d\x67\xd8\x7c\x1c\xae\xed\xb6\x9c\x5b\x26\xd1\xe6\x91\x2b\x75\xe6\x20\x0d\x72\xd5\x99\xe0\x9e\xac\xc3\xd9\x97\x58\xf0\x23\x84\xca\x3a\x63\x6e\xdf\x9a\x11\xa3\x06\x41\xbb\x8f\x90\xf9\x43\x98\x8f\xbe\x7b\xce\x31\xbe\x01\x43\xf5\x06\x07\xb3\xdd\x63\xef\x38\x03\x4b\x4a\x3f\x62\xda\x43\x98\x71\x84\xdb\xc3\x3f\x0b\x88\xa3\x98\x4a\xfe\x69\x5e\xcd\x4e\x03\x1f\xc3\x36\x3a\xd4\x45\xbb\x74\x7e\xfe\xb0\x31\xcd\xbd\x0b\xa7\x36\xd2\xdc\x75\xaf\x4b\x78\xb5\xbf\x7c\xb7\xfa\xc8\xc2\xf9\x33\x3c\x27\x43\xf0\xa2\x85\x67\xea\x96\x6c\x77\x48\x5b\xf3\x1c\xbf\x63\x96\xa2\x01\xda\x2f\x74\x90\x35\x2d\x47\xe7\x04\x35\x8d\xe7\x34\xb5\x2d\xe6\xa3\x4b\x85\xef\x3b\x5c\x98\x3a\xb0\x20\x47\x6b\xad\x35\x1b\xfb\x88\x33\x40\xf6\x45\x89\x26\x67\x3a\xbe\xa6\xd5\x92\x8b\xc9\xb1\x8c\xc3\x43\x4b\x62\x41\x68\xfd\x73\x9f\xc2\x48\xdf\x77\x68\x3a\xde\x5a\x6d\xe4\x2d\x47\xc3\x59\x46\x2d\xcf\x1c\x0b\x5d\x0c\x27\xa9\x1e\x70\x17\x02\x49\x3b\xc6\x8b\xc7\x3e\x03\xd0\x65\x10\x3f\xfe\xc4\x90\xfa\x08\x22\xac\x39\xad\xac\x8e\x9a\xa6\x17\x15\x7e\xd2\x2d\x53\x0f\xb5\x84\xf8\x19\x5a\x13\x31\xb8\x04\x8d\xea\xd8\x7b\xe6\xf2\x67\xd0\x69\x60\xb4\xe9\x60\xcd\xbf\x2e\x1f\x6b\x90\x6b\xfc\x90\xf8\xbd\x73\xa7\xe6\xf7\x9c\xd0\xd0\xda\xc1\x52\x66\x4f\x94\x5e\x2c\xf5\xf8\xa6\xbd\xf4\x45\xa8\xfa\xe9\x99\x9a\xcb\xdb\x4d\xf8\x5f\x96\x7e\x8c\xed\x4d\xfc\xc5\x61\xe7\x32\x00\x9d\x32\xeb\x00\x87\xc6\xd7\x80\xd3\xf8\x67\x71\xf2\x02\x75\x3d\xf8\xbe\xe1\xc4\x7c\x61\xd3\x9a\x19\x71\xdd\x05\xfc\xbb\xfa\xb3\x59\xf0\xc3\xa1\xbd\x19\xea\x26\xdf\x76\x01\x6d\xed\x3d\x71\xe3\x05\xc2\x87\x7a\x2d\x08\x70\xc2\x4e\x11\x6a\x6a\xed\xb9\xae\x6a\xbb\xb6\x3f\x7d\x92\xe2\x75\xc3\x64\x4c\xe2\xea\x0a\x93\x5d\xb9\xb5\x0e\xb0\x3f\x73\x8a\x3e\xfc\x4e\x8c\xf7\xbc\xdd\xf8\xd7\x12\xe0\xb2\xb6\xb9\x34\x7e\xa6\x4a\x60\x3e\xbc\x4e\x71\x5a\xc3\x3c\xf3\xff\x19\xee\xa1\x3c\x32\x0c\x92\x0a\xa5\x0a\x52\x00\x46\x02\x94\x5b\xdf\x15\xc9\x87\xea\xe3\x33\xb6\xf9\x36\xc7\x97\xae\xfc\x7e\x27\xbd\x17\xf6\xe3\x3b\x69\xa9\x6b\xf3\x7c\x51\xfd\x85\xa8\x97\x80\xea\x2a\x26\x0b\x3b\x13\x36\x98\x59\xd9\x5c\x30\x26\x60\xac\x7f\x28\x6d\xbc\x4c\x58\x01\x1a\x7e\x06\x65\xda\x4f\x13\xea\xa3\x29\x1e\x4f\xad\x53\x37\x64\xbb\x3b\x63\xc2\x6c\xbb\x27\xaa\x4e\x92\xea\xf1\x36\xb8\x3c\x51\xfb\xde\x78\x8f\x1e\xd9\xaf\xa1\x71\xfb\x6a\x31\x70\x5d\xda\x2e\x49\x38\x5c\x1f\x4f\xed\xd0\x97\x96\x9a\x8e\x8b\x78\x2b\x00\xbe\x5f\x8f\x0d\xcb\x88\xa8\x96\x56\xa0\xd2\x50\x8a\x0d\xba\x30\xe1\xd3\x47\x9e\xf2\x51\x55\x20\xd3\x6e\x57\xd5\xb2\x7f\xc9\x4c\x9f\x89\x6b\xa8\x4e\x19\x29\x61\x39\x27\x36\x08\x8f\xcb\xb8\x55\x17\x81\xb6\x96\xe4\x43\x18\xee\x7c\x2c\xb9\x00\x02\x03\x24\x9d\xb4\x10\x0b\x49\x28\x16\xbe\x48\x64\x76\xcb\x6a\xe9\x93\xd9\xf6\xd3\xd4\xea\x7a\xd3\x68\x09\xc7\x35\xbe\x89\x77\x52\xc8\x83\xd7\x64\x94\x8b\x22\x56\x6b\x39\xab\x07\x63\xfe\x59\x97\xe0\x53\xea\x00\xaa\x09\xa0\xb4\x38\x43\x2f\xa4\x99\x45\xa6\x7b\xcb\x53\xcb\x9a\xe5\x89\x85\x42\x18\xb2\x6e\x16\x70\xe2\x00\xc5\xfa\xcb\xbd\x8d\xe7\xc9\xc5\xb5\x67\x8d\xd5\x43\xe5\xc5\xc8\x8e\x34\x7d\x7f\x14\x1d\x8d\x6f\x50\x39\xf3\xd9\x2a\x75\x21\x5b\xe3\x6c\x5e\x0c\x04\x0c\x50\x65\xb5\x89\xbf\x12\x63\xe1\x2e\xb3\x2f\xe1\x29\xb3\x60\xab\x60\xc1\x6f\xe0\xc6\x73\x7f\x1b\xed\x1e\x7b\x65\xf0\x79\x91\xff\xf6\xe2\xcb\x47\xc2\xbf\xc1\x8d\xa7\x0c\xd2\x4f\x5d\x47\xba\x2d\xec\xb7\x71\xc0\x1e\xb8\xb5\xef\xb1\x1d\x9e\xaa\x62\xd6\x94\x37\xdf\xda\xd8\xc8\x13\xef\x71\x63\x38\x6f\x3a\xc6\xf0\x2d\xc8\x0c\x2e\x3a\xf8\x66\x5a\x73\xf7\xe9\xfc\x4f\xd8\xce\x6e\xa2\xcc\x2e\x3c\x06\x36\x33\x02\x3d\xaf\xcd\x02\x60\x8f\xd9\x73\x07\x00\xfd\xf6\x03\xe8\xd5\x43\x63\x7f\x39\xa7\x72\x3e\x84\x66\xc4\x76\x1d\x3c\xe8\x74\xf0\xdc\x9c\x0a\x7e\x0e\x7d\x6c\xf4\x1a\xf4\xb1\xde\x7e\xe8\x73\xbd\xab\xc7\x2f\x41\xdd\x5a\x13\x0b\xdd\x9a\x58\x97\xa4\xd8\x06\x1d\x39\x39\xa9\x63\x66\xce\xb1\x8d\xdf\xa7\xb6\xff\x98\x88\xca\x4f\x12\x79\x37\xf3\xb9\x5e\x49\xab\xfe\xcc\x82\xf1\x4f\x47\xc8\x59\xcd\xe5\xd5\x7c\x63\xea\x93\x32\xfc\x5c\x94\xb2\xad\xb1\xe8\x88\xac\x30\x78\x98\xab\x2a\x82\x37\x17\x2f\x91\x2d\x5b\x94\x09\xc9\xa7\xbc\x53\x52\x01\xf2\xdc\x83\x2b\xeb\xfb\x3b\x98\x34\x62\xfe\x23\x92\xcd\xae\x18\x74\x42\x87\xf4\x91\xb8\x6f\x7f\xaa\xb0\x6c\xbb\x3e\x00\x5c\xa6\x78\x08\x80\x61\x5e\x99\xb9\x29\x8a\x55\x79\xc0\x29\x1e\x95\x5e\x56\x6b\x28\xb6\x03\xa1\x9c\x80\xdc\xe0\xa9\xb1\xbd\x3c\x75\x5d\x92\xec\x45\x8a\xa5\x8a\x40\xc6\x40\xfc\x8e\xe6\xfd\xec\x34\xec\xcf\xce\xc4\x25\x4b\x40\x12\xba\xb1\x87\x7f\x58\x95\xdd\x7b\xcd\x53\x3d\xa1\x9d\x2f\x76\x6e\xd0\xde\xaf\x1e\xb8\x96\x55\x15\x9a\x51\x95\xd7\x40\x3b\x30\xf4\xcf\x8d\x90\x49\xef\xa5\xa3\x84\x96\x32\xb5\x2a\x94\xde\x0b\x92\xa1\x30\xa6\x0a\x95\xa9\x6b\xba\xc8\xdd\xaa\x17\x8a\xfb\x0e\x24\xf3\xfc\x1b\xd4\x6b\xe8\xf3\xae\x5f\x65\x74\x0b\x4a\xbd\x47\xa2\xf3\x42\xfb\x73\x8b\x46\xd5\x8b\x4a\x4d\x1c\xac\x5f\x1d\x28\x91\x42\xb9\x11\xc3\x0f\xf7\x96\x45\x31\x0e\xb8\x44\xa6\x2e\xcd\x1a\x8c\xeb\x18\x83\x96\xdf\x4f\xee\xdc\x92\x34\xd9\xe0\x3e\x98\x76\xad\xa3\xef\x74\x92\xa0\xed\x69\x7b\xf9\x88\x66\xae\x8c\xff\x13\xcb\xaf\xc6\x69\xaf\x65\x83\x85\xbb\x8d\xff\xd7\x57\xac\x73\x51\xea\xe4\x1b\xd1\xe0\xe7\xdb\xfd\x33\x49\x30\xc2\x0d\x1d\xf8\xcb\xc2\x07\x97\xaf\xd2\x17\x30\x80\x93\x1b\x9d\x8e\x39\x11\xab\xb4\x93\x4a\xc9\x51\x79\x81\xbe\x27\x19\x5e\x69\x79\xbe\x50\x18\x0f\x0e\xb6\x55\x34\xc2\x63\xe7\xfb\xdb\x42\x2a\xc9\xdd\xea\x17\xe4\x7d\x93\xc9\xf9\xa5\xc3\x20\x66\xa9\xf8\xa1\x43\x9d\xf1\xd8\x80\xe2\xb8\x5a\xc2\xae\x4f\x6c\x60\x86\x11\x7e\xe3\x88\x9a\xbc\x55\x93\xa0\x2e\x25\xc2\x20\x39\xa8\x33\xd1\x36\x86\xe7\x94\x1d\xcc\x95\x7b\xdf\x53\x1b\x97\xdd\xaf\x09\x04\x71\xee\x08\xf2\xdd\x93\x1f\xe7\x60\x27\x14\x94\x69\x4b\x71\xc8\xfd\x50\xfa\xce\x5d\x21\xc9\x93\x7e\x5e\xde\x56\x01\xaf\x52\x76\x44\xb1\x71\x6e\x33\xce\x31\x7f\x93\x0b\x26\xb6\xb7\x03\xde\xc4\xb9\xd8\x20\xb6\x33\xfe\x82\x25\xb4\x80\x0f\x1a\x16\x52\x0e\x39\xc3\x3f\x0e\x35\xa2\x20\x84\xa2\x72\xb9\x7f\x52\x42\xa0\x11\xe5\x24\xfe\x8a\xf5\xb0\x54\xab\xf6\xc9\x44\x47\x44\x05\xa2\x40\xec\x4f\x93\x99\x3f\x5e\xe8\x4c\x1b\x63\xa8\x29\x87\x90\x19\xba\xb5\x61\x4e\xda\x87\x93\xac\x78\x50\x5f\xc9\xb4\x37\x96\xc3\xf3\x65\x1a\x17\x61\x6a\xe6\x99\xca\x43\xbf\x42\x09\x98\x30\x8b\x49\xf1\x0f\x06\x16\xe8\x8a\x7c\x5d\x62\x9e\x72\xb1\xfc\x7f\xb1\xc1\xaa\x2f\x90\x56\x3d\xe6\xa9\x8d\x92\xfc\x1c\xad\x25\xa7\xd5\x9d\xfa\xb1\x2d\x18\x64\x31\xfe\x7f\x84\xf8\xd0\x56\x97\xc3\x66\x3e\xbe\x6e\xf9\x04\xdb\x98\x26\x56\xae\x1a\xc2\xa6\xcc\xe4\x0b\xdc\x1b\x79\xdc\xb0\x74\xaa\x64\xd7\xdc\x36\xa2\xa3\x7f\x9d\xcb\x5a\xec\x68\xd1\xab\xe2\xb4\xd8\xfc\x7a\x6a\x2b\xf2\x5c\xdd\xc0\x99\x74\x65\xfb\x55\xf7\xec\x4f\xbc\x54\x66\xd5\x16\xed\xea\xfa\x15\x04\x63\xa4\x4b\x4a\x4d\xbc\xe3\x20\x9e\x5b\x26\xd7\xc3\x21\x39\x10\xaa\x4e\xf1\x56\x28\xd4\xc9\x09\x29\xf4\x48\x99\x42\x57\x1a\x05\x05\x87\x7c\x6e\xd1\x26\x7b\x4e\xdc\xbf\x2f\x4d\x50\xb4\x55\xe5\x86\x99\x07\xbd\x9e\x47\x06\x92\xc8\x04\x53\x47\xe4\x80\x43\xbc\x5d\x76\xb9\x32\x12\x87\x81\x48\x76\x40\x06\x39\x23\xf0\xbb\x2f\xee\x0b\x62\xdc\x50\x40\x21\x18\xe0\x76\x53\xba\x15\x2f\x14\xf5\x4e\x26\x0b\x4b\xb6\x00\xe1\xcb\x45\xf7\x4c\xe6\xa8\xf9\x25\xdd\x1a\x4a\x0f\x1f\xcc\x2d\x1a\x53\xa6\xb6\x4e\xf0\xc1\xc8\x04\x5f\xb0\x84\x9c\x61\xe8\x77\xed\x57\x81\xce\x06\x07\xe4\x9a\xd2\xec\xa1\x38\xb5\x9c\x6c\xcf\x1e\x27\x9f\xfe\x0a\xf5\xbd\xd4\xb6\xa6\x63\xac\x0c\x9d\x7f\x64\x0e\xfb\xa9\xe1\x3e\x02\xed\x42\xb9\x48\x72\xdb\x05\x5b\xb4\x36\x84\xb0\xae\xca\x83\xee\x09\x29\xb2\xa9\x2a\x10\x48\xd3\xd6\xe4\x3f\x22\x16\xd4\x9e\x90\x94\x15\x69\x7b\xd1\x39\xe4\xd5\xea\xb4\x4c\xa9\xd4\x9e\x2a\x1e\x84\xc1\x58\xa2\xc2\x2c\x74\x05\xdf\xfc\x50\x50\x89\x4d\x53\x8d\xa2\x60\x7b\xa7\xf7\x04\xaf\xb0\xed\x69\x6d\x45\x58\x3b\x48\x7c\x83\xe2\xe8\x8d\x4c\x5f\x22\xa7\xa1\xd9\x1c\xa2\x4d\xe3\xc1\x23\xc7\x46\xf4\x23\xe1\x0e\x9d\x3e\x91\x89\x87\x62\xdf\xc4\x5b\x66\x1e\xd9\x42\xb1\xf5\xac\xce\x85\x60\x52\xd7\xb3\xd9\x25\xd2\x09\x91\x65\xdc\x31\x08\x98\x17\x14\x3f\x11\x9c\xbc\x2f\x9f\x93\xb7\x59\xc4\x8d\x4a\xcf\x54\xd6\xcd\x35\x50\xad\xc3\x7f\x91\xd3\x85\xc1\x56\xf3\x27\x80\x16\xfb\x20\x2f\x93\x13\xef\x48\xb0\xc7\x97\xad\xfc\x6e\xdf\x84\xbd\x6e\x7f\x0f\xfb\x04\x26\x2c\x8b\x25\x19\x92\x36\xbc\xb5\x79\xd3\x63\x43\x32\x84\x2a\x7a\xfb\x81\x49\x20\xf6\xb9\x9d\xb7\xe1\xd8\xc9\x3b\x8b\x9f\x3a\xef\xa0\x9a\x5f\x00\x49\x0d\xab\x2d\x37\x39\x1b\x18\xa9\xbb\xb1\x70\xc2\xca\x6f\x96\x22\xc8\xb3\xf4\x7a\xe8\x2a\x23\x03\x34\xe9\x63\x5b\x45\x49\x9e\xab\x55\xea\x20\x42\xcb\xd6\xa1\xce\xe8\xcb\xfa\x82\xfa\x4e\xa2\x89\x43\xf4\xd8\x75\x59\xf3\xfa\x90\x35\x0b\x93\xdd\x53\x97\xb6\x14\x3c\x64\xcf\xee\x18\x71\x8f\x88\x11\x45\xd7\xd0\xf2\x60\x75\x21\x3d\x92\x58\x2b\x39\xbc\xb6\xa1\xa2\x65\xb6\xa5\x41\xdd\x79\x38\xd0\xac\x8e\x12\x51\x16\xe4\xc1\xf5\x34\x43\xe6\x66\x02\x60\x52\x12\x8b\x63\x4b\xc3\x0e\xab\xe4\x97\xda\x7d\x3a\x78\xd1\x67\xda\x77\x2a\x56\x97\xae\x29\xd6\x2b\x83\xa2\xeb\x23\x7b\x01\x7d\x9b\xbd\x49\xb1\x1f\xb0\x63\x94\xb4\xe2\xd5\x5a\xfa\x97\x49\x2f\xb6\xf8\x6a\xc7\xba\x4b\x6d\xd4\x04\x97\xa2\x8a\x4d\x4a\x10\x93\x19\x11\x5b\xe4\x0e\x5e\x59\x40\x89\xc4\xd7\x89\x0f\x77\xd6\xab\x5b\x67\x5b\xeb\x2b\xd6\xc2\xc3\xa2\x8e\x1e\x51\x17\xde\x19\x6a\x68\x90\x0c\x3d\xff\x7d\xbc\xd7\x50\x0a\x3b\x2a\x83\x39\x8e\x78\x33\xd1\x24\x6c\x52\x14\x73\x85\xb8\xc2\xe1\xad\xe8\x6d\xd0\x78\x56\xbf\xb3\xb8\x41\x8c\x14\x4c\xe8\x13\x80\xa2\x02\xb6\x00\x57\x14\xed\xcf\xe1\xc6\x90\x97\x80\xc6\xdb\x9f\x85\x77\x47\xb5\x3c\x1f\x82\x42\x89\xda\x11\xc4\x6c\x57\x0d\x96\x8e\xa4\x44\x79\x67\x69\xe9\x5a\x38\x7e\xc5\x9b\xc5\x65\x8e\xf9\x28\x87\x33\xcc\x1f\xe3\x3a\x87\xe2\xb5\x88\xd3\x3d\xc6\x61\x27\x7c\xbe\xf8\x34\xc5\xb8\x89\x94\x17\x11\xaf\x07\xa8\xe5\xa4\x83\x2d\x31\x39\xe0\x33\xd1\x0e\x8d\x2b\xa6\x67\x6c\x6e\xa7\x34\xaf\xf2\x06\x93\x11\x8b\xa7\xb6\x4f\x6e\xd4\xff\x2a\x84\x0f\xb5\x17\x4d\x2b\x79\x15\x07\xe5\x92\x4a\xc5\x58\xf6\xbb\x50\xa2\x7d\xc0\x6c\x45\x67\xa2\xf8\x5a\x5c\x81\x6a\xc9\xd7\xd0\x49\x5c\x18\xc1\xfe\xca\x80\x5f\xaa\x6b\x4c\xf0\x98\xc7\xdf\xba\x4d\x2c\x65\x51\x86\xa9\xe9\xcc\x71\xa6\xa2\xed\x42\xc8\x4b\xaf\x6c\xf6\x4a\xb2\x6d\xe1\x9c\x01\x66\x78\xbb\x4a\x5d\x4c\x1f\x4d\xa5\x92\x37\xc3\x8a\xa3\x40\x4d\x5a\x53\x78\x3d\xee\xa2\xa8\x18\x04\x5c\x76\x17\xfd\x7a\xa0\x28\xaf\xdb\x5d\xe0\x05\x40\xb9\x58\xc0\xbc\x1a\xa2\x3e\xed\x4d\x1c\x5c\xd9\x75\xc9\x7a\x9c\xdf\x13\xee\x0f\xfb\xcf\xfb\x0b\xc6\x2a\x7a\x2a\x06\xf0\xdd\x97\x4c\x02\x34\x26\xb0\x25\xd8\xa3\xa5\x6f\x43\x52\xa8\xeb\x3e\x8b\xbe\xd1\xe9\x0e\x08\x90\x0d\x65\x0c\xc3\xa6\x35\xac\x33\xfc\x12\x68\x30\x41\x49\x0f\x03\xe6\x12\x46\x8f\xeb\x27\x10\x29\xd0\xef\x96\x54\xa6\x48\x80\xd2\x0c\x88\x9b\x03\x50\xe9\xdf\xc7\xfb\x77\x73\x8b\xb0\xf5\xd9\xa7\x63\xca\x43\xba\xb5\xcc\x5c\xdf\x26\xa7\x07\x20\x80\x37\x94\x67\x1a\x76\x35\xe7\xac\x58\xd1\x76\x55\xd6\x20\x89\x39\x58\xa9\xf1\xcb\xf1\x40\x40\x19\x19\xd4\x97\x65\x01\x7c\x1c\x40\x61\x9f\x22\xfb\x75\xb3\x83\x19\xd1\xec\xb3\x64\x55\xa9\x76\xad\x6f\xdd\x28\xd5\x56\xbd\x36\x28\x4b\xc9\x39\x4b\x0e\xe8\xe6\x06\xb1\x27\xa9\x36\xec\xf5\xe1\x99\x0a\xc6\xbf\xf1\x92\x1e\x41\x75\x42\x8a\x57\x08\xc1\x2a\x15\x04\x0b\x85\x10\xb4\x1f\x08\x3d\xf0\x15\x82\xeb\x66\xc2\xa3\x54\x41\x38\x4d\xf2\xf3\x59\x55\x4b\x73\xa9\x3a\xc8\x80\x2d\xa4\x2a\xb0\x00\x20\x55\xc3\xd6\x20\x53\xdd\xba\xbe\x4d\xd9\x8a\xc2\x5a\x98\x5c\x23\x48\x44\x18\x85\xcc\x20\xe2\xd7\x90\x61\x48\x65\x16\x97\x95\x21\x27\xdb\x6b\x26\x8d\xb9\x85\x07\x8d\x02\x4b\x90\xa3\x8e\xb7\x57\x1f\x34\xe4\x14\x4d\x1a\x54\xbd\xc4\x15\x70\xdb\xdc\x2f\xf6\xae\x9b\xc9\x2c\xaa\xbf\x95\xd9\xb3\x13\xb2\x52\xc5\xf2\x3d\xc3\xd3\xd5\x6e\x67\xf6\xee\xba\x4d\x52\x7f\xd7\x2d\xa7\xdd\x69\x91\xc6\x24\x30\xd5\x45\xf8\x1f\x90\x6e\x71\xc3\x4c\xfb\xae\x4d\x01\x38\x39\xa0\x02\x51\x21\xff\x94\x49\x80\x67\x9e\x4b\xd3\x98\x63\x84\xaa\x73\x2c\x08\xa3\x42\xaf\x14\x2c\xa7\xfd\x55\x5e\x9f\x59\xbc\x0c\x5f\x57\xd5\x46\xeb\xab\x0e\x49\x65\x0e\x9f\xb4\x88\x7a\x4d\xb9\xa8\x5b\x79\x00\xc6\xf9\xb2\xac\x4f\x73\xae\xf0\xed\xc2\xaa\x0c\x22\x00\x2a\x5b\x59\x86\x9c\x68\xaf\x9e\x34\xe6\x14\xba\xe0\xc1\xb6\x27\xca\x56\x9c\xa1\x90\x21\xff\xb0\x6e\xfc\x5b\xde\xfb\x46\x71\x53\x80\x23\xd7\xdb\xc0\xd4\x51\xc7\xd2\x96\xbf\x94\xe5\x4d\xa9\x7b\xbf\xfa\x58\xc9\x9e\x8a\xe3\x6e\xd0\xdc\x85\xbe\xbd\xf9\x1e\x34\xb5\xfc\xb2\xcc\x3d\x68\x44\x03\x4c\xa9\xa4\x98\x69\x40\xe9\x41\x99\x8c\x1e\x30\x18\x8b\xe9\x12\x69\x80\x6e\x34\x32\x02\x9b\xa4\x30\x35\xe1\x8e\x7d\xc6\x1d\xad\x12\x0c\xcb\xfd\x65\x56\x2c\xf3\x0e\x5a\x8b\xe7\x88\x06\x18\xf3\x8c\x96\x37\x5b\x84\xf3\xc2\xca\x37\xa1\xe4\x3f\x93\x6f\x27\x7b\x2a\x9b\xf6\x96\x55\xe1\x96\xdc\xf3\xcb\xcb\x62\x86\xc5\x84\xcf\xff\x5e\xb6\xbb\x62\x73\x02\xb0\xa1\x51\xa6\x71\x64\x5f\x5d\x89\x47\xa6\x41\x84\x58\x8c\x71\x5d\x25\xa5\x3b\x09\x4d\x62\x1a\xf0\x96\x57\xe2\x2b\xe3\x93\x08\x3f\x80\x46\xba\x12\xe4\x9d\xeb\x90\x57\x67\xab\x91\x68\x96\x53\xce\xca\x93\x29\x0d\xbe\x27\x94\x24\x8b\xdf\x24\xe7\x7b\x3c\xca\x16\x1c\x22\xaf\xcb\xf4\xc8\xc5\x05\xc0\x15\x2a\x49\xa2\x06\x1e\x7a\x28\x50\x0e\xe4\xeb\x26\xa7\x3c\xb0\x48\x8e\xbf\xe8\x6a\x9f\xac\xac\x2d\xcc\x8e\xda\x8d\xa9\xac\xc2\x5a\xe0\x39\xe8\x1c\xf6\x03\x30\xed\x78\x5b\xa8\xbd\xcb\x2a\xbb\x5b\xfb\xa0\x99\x16\x71\xe9\xaa\x4b\xfa\xaa\x1e\xdd\x49\x7e\xbe\xc3\xa9\x5c\x32\xa8\x48\xed\xe6\x93\x22\x34\x57\xe0\x04\x92\x88\x48\x14\x89\x08\x59\x59\x3c\xd1\x87\x85\x24\x5e\xfa\x30\xe8\xc4\x89\xac\xf5\xfb\x3c\xfd\xe9\x2e\x97\xa2\x03\xef\x8c\x6d\x75\xb4\x43\xc0\x74\x8e\x21\xc7\xb1\xc8\xb1\xdd\xdd\x37\x77\xe7\xe5\x88\x45\xdf\x51\xa9\x32\x29\x31\xfe\x42\x59\x1c\xaf\xcb\x9f\xdf\x2f\x70\xba\x04\x4a\x67\x5e\x97\x49\x91\x92\xef\xe3\x9d\x03\xbc\x8f\x8f\x3d\xcb\xb0\x84\x0f\x01\x30\x36\xeb\xaf\x7e\x4b\x22\xa3\x95\x1e\xc8\x29\x00\xce\x62\xfd\xbd\xdd\x92\x48\xcf\x4a\xe8\x31\xf7\x7b\x37\x10\x1b\xcb\xb2\x47\x65\x60\xdc\x2d\x3c\x59\x6c\x25\xba\xb9\x25\xa1\x40\x01\xc5\x90\x54\x48\x84\xf9\xf3\xa0\xdc\xe8\xe1\xe6\xbc\xfd\xbc\x9c\x8a\x03\xc2\xa2\x52\xc5\x36\x66\x2c\xb7\xcb\x54\x53\x14\x78\xfe\xd1\xc7\x9b\x76\xb4\xd5\x01\xf6\x1f\xdd\xfa\x24\x89\x5e\xf0\xec\x83\x7d\xc6\x0f\x1a\x1d\x34\xfa\x97\xa7\xbd\xfc\xdd\x19\x19\x8b\x0a\xd2\x00\x00\x40\xff\xbf\xff\x40\x0e\x8d\x71\x66\x11\xfb\x80\x59\xb8\xa1\x9d\x1e\xa9\xb8\xc5\x27\xcc\x54\x47\x40\x5a\x6d\x6c\x3c\x9c\x00\x73\x92\xaf\x1e\xb1\xb1\x4b\x5d\xa4\xa7\x99\xdf\xcd\xdf\xc8\xde\x7b\x74\xab\x25\xae\x40\xfb\x6d\x5d\x47\xe9\x3a\x15\x8e\x8b\x26\x53\x3b\x8f\xf5\xfd\x1b\xc9\x50\x7f\x09\x54\x0b\x81\xab\x52\xc3\xc2\xd9\xd3\xff\xe8\xe7\x78\xeb\x7a\x4c\x27\x12\x2d\x34\xe4\x1f\xb9\xfc\xe3\x6b\x16\x53\xbd\xc6\x41\xe9\x9e\xd9\x8c\xef\x55\x37\x80\xfa\x96\xe8\x83\x81\x3c\x1f\x76\xb0\x74\x12\xac\x7a\xe2\xd5\x7b\x71\xad\xe6\xc1\xbb\xef\xd6\x15\x74\x10\xc9\xf6\xf2\x78\xd9\xf9\x20\x52\xc1\x30\x89\x47\x3f\x86\xb4\x02\x4f\x37\x55\x1c\xd0\x32\xed\x9b\x98\x42\x9f\x7a\x5d\x76\x60\x82\x75\xef\xcf\x7d\xd6\x4e\x74\x26\xa2\x85\xcc\x7a\x6d\x2e\xb3\x5c\x97\x2f\x5a\xcb\xa6\x6f\x62\x67\xd1\x3d\x71\x54\x33\x20\x4d\xc3\xbf\xf5\x13\x7f\x3c\xda\x18\xed\xda\x66\x4a\x6f\xfa\x14\x4c\x0c\x5a\xd0\x0c\x69\x9d\xcc\x72\x98\x91\x08\x5e\x4a\x3c\xe9\xe5\xca\xca\x84\x9e\xad\x80\x31\x10\x92\xc8\x98\x55\x67\x8e\xca\x08\xc9\xc1\x61\xf0\x89\xdd\xaa\xd9\x78\x4b\xb6\xb9\x89\x65\x73\xd2\x9a\x8c\xc7\x3f\x38\x79\xd7\x7e\x0d\xc1\xd7\x20\x12\x9f\xc1\x3f\x87\x90\x31\x4d\x1e\x67\x17\xcb\x6a\xe9\x60\xed\xd9\x5f\x82\x31\x62\x6c\x5d\x12\x4f\x19\x67\x24\xfb\xf3\xa3\xa3\xc2\x40\x34\x4a\xae\xfe\x24\xdf\x56\x78\xf4\x57\x02\x9a\x56\xb4\xfa\xe1\xd0\x7f\x15\xf8\xdf\xee\xd5\x38\xb8\x72\x9f\x18\xc7\x7b\xca\xb3\xd3\x65\xf0\x2a\x5b\x1f\x13\x8e\x94\x89\x50\xa4\x5a\x43\x58\xfa\xe6\xaf\x93\x2d\xf5\xda\x07\xf8\x0e\xc7\xe3\xce\x0d\x53\x69\xc5\x8d\xd7\x2c\xcd\x6b\xe3\x8e\x56\x94\x18\xaf\x0c\x34\x9e\xa0\x48\x5d\x5b\xa5\x45\x29\x85\x96\x11\x0a\x10\x6d\x13\x7f\x5e\x1b\xc3\x36\x67\x98\x6e\x6d\x71\xab\x8e\xbc\x5d\x9e\x54\xfb\xe9\x0b\x88\x69\x75\x61\x4d\x1c\xae\x38\x51\xa9\x2e\x11\xc1\x3e\x52\x13\xa0\x20\x55\xeb\xdd\x61\x01\x04\x54\xc8\xd1\x0a\xda\x76\x46\xaa\x21\xc7\xf8\xf8\xf6\xf2\x23\x16\x36\x3b\x21\x91\x40\x48\x4c\xc8\xc6\x4a\xf5\x06\x00\x10\x5f\xcc\x8f\xe0\x18\x54\x6a\x87\x4a\x15\xb3\xb0\x5b\x7c\x27\xae\x29\x20\x1b\xc7\xb6\x0b\xff\x60\xc6\x87\xbe\xe9\x69\xf6\x5d\x6c\xc8\x95\x65\x18\xdd\x9e\x7f\x95\x4f\xa9\x99\x5b\xa7\xa1\xa2\xd6\xa1\xbc\x2b\xab\x6b\xf1\x6d\xbd\x09\x4d\x63\x60\x5d\xaf\xac\x29\x6a\x90\xb4\x06\x9b\x16\x36\xfe\x2a\x48\x9f\x2b\x04\xc5\x7c\x68\xcc\x49\xf4\xcb\x35\x61\x8a\x2d\x91\xb9\x91\xfd\x8e\xc2\xed\xd2\xbb\x0a\xf0\x81\x08\x2d\x57\x04\xf9\xf6\xd9\x03\x61\x6c\x1e\x54\x22\x00\xec\x58\x02\xe8\xc8\xa9\xed\xdb\xb6\x1b\x53\x11\xea\x6e\x39\xe3\xb4\x6d\xb9\xba\x6f\x75\x35\xba\xcb\x0f\xd8\x9a\xf3\x9a\xe0\x15\xa5\x58\x53\x4b\xdb\xb7\x74\x28\x1f\x65\x78\x94\x66\x9e\x75\x11\xbf\x58\x94\x42\xef\xcb\xf3\x0d\x70\x68\x68\x27\x3d\xdf\xcd\xef\xf7\x3d\x62\x91\x3d\x6a\x46\xe5\x2a\xe3\x68\x0f\x07\x6b\x11\x76\x1b\x5e\x24\x3f\x28\x15\xef\x97\xf1\x15\x65\xb1\x05\x26\x7b\x74\x9c\xd3\xe6\x57\xfb\xd3\xd2\x00\x25\xb9\xd4\xb2\xf3\x5d\xd6\xfe\xd3\xbd\xcf\x46\x07\x47\xdf\xbd\x7a\x79\x7f\xca\x67\x6b\x58\xd8\x59\x1f\xef\x33\x39\x78\x20\xd6\xfb\xdb\x2e\xc9\x81\xb7\x37\xb5\x84\x6b\xb0\x73\xda\xf3\xed\xee\x76\xda\xa1\xeb\x13\x85\xbe\xf8\xcc\xc3\xf9\x9f\xe3\x2e\x59\xf4\x3b\x9a\x44\x31\xbf\x91\x36\x4e\xd7\x21\xad\xab\x5f\xf3\x8f\xd6\xfd\x97\xe2\x0d\x5e\x2c\x02\xe0\xf8\x25\x3e\xe4\x3a\xfd\x62\x1c\x15\x96\xcc\x02\x7a\x0b\xd9\xbc\x2d\xd9\xcc\x21\x7e\x5a\xce\x4e\x3b\x93\x09\x97\x0b\x50\x15\x50\xec\x01\xb0\x49\x77\x66\x33\x40\x44\xbb\x96\xbc\x35\x1d\x9e\xf6\x2b\xd6\x78\x28\x30\x79\x9f\x9f\xef\x5a\xcb\x63\x56\x08\xa7\x14\x4b\x26\x18\xb4\xcf\x18\x98\xcc\xde\xc4\xeb\xfd\x34\xda\x2e\x9f\x6a\x4e\x13\xd8\x6b\xe5\x04\xc2\x1c\x76\xc3\x9e\xdd\xaf\x9b\x8d\xc9\xcc\x7d\x1a\x59\xbf\xf6\x4e\xd3\xcd\xa6\xc8\x59\xbe\xeb\x5e\x0d\xd3\xb8\x61\xc5\xeb\x0d\xe7\x8b\x77\xa8\xcf\x47\xdc\x54\x8f\x25\x7b\xdf\x49\xe3\x7c\x66\xc3\x37\x63\x45\x26\x6c\x6f\xe8\x75\x36\xac\x47\x6c\xb4\x60\xdf\xf5\x1c\x90\xf8\x9c\xc8\x56\x0e\x69\x33\x2c\x1d\xa2\x73\x3b\x64\x01\x20\xc6\xd5\xad\x75\x47\x19\xfb\xf2\x2e\x1f\xf5\x56\xdb\xd6\xba\xb1\x16\xdc\x6f\xd8\x8d\x68\x85\x38\x7f\x26\x28\xba\xa3\x0a\xb2\xe5\xad\xd5\x64\xb7\xf1\x4e\x48\x5e\xd7\x85\x74\xc6\x10\xe5\x5b\xeb\x2e\xe1\x56\xf2\x1c\x90\x5f\xd1\xa8\x2f\xf3\x6f\x60\x05\x0f\x87\x2e\x0f\xc5\x6c\xa8\xba\x96\xe9\x72\xb3\xbb\x90\x7c\xc6\x53\x02\x9c\xed\x50\x9d\xd6\x48\x68\xe6\xe5\x74\xdb\x8b\xce\x43\x88\xfa\x96\xa1\xfa\x4c\x37\x05\x69\xe3\xe2\x5e\x6e\xc0\x2e\xae\x60\x44\x9c\xcd\xf1\xae\x3e\xb1\x7a\x62\xb8\x72\xbc\xc5\x28\x95\xda\x10\x3e\x3a\x7d\x6c\x37\x2d\x5f\xb3\x5b\x21\x9a\x96\x14\x08\x8a\xd2\x30\x84\x97\x9b\x63\x4c\x3d\xd4\xcd\xf5\x95\xbe\x47\x51\xc6\x1c\x7a\x8e\xb8\x68\x7d\xda\x43\x30\x79\x73\xc2\x96\x6b\x7d\xb4\xe3\x6e\x17\x8a\x83\x7c\x09\xe0\x0c\xee\x24\x78\xd5\xd9\x41\x4c\x97\x4f\x2a\xef\xd0\x5c\xca\xd0\xab\x2d\xe9\x93\x56\x77\x0a\x48\x3f\x98\xdd\x1f\x12\x83\x99\xc8\xfd\xb1\xc9\xcf\x63\x30\x23\x1a\xf6\xc6\xd4\x8e\xe9\xe3\xfa\x80\x1f\x15\xe4\xf3\x03\x3c\xe2\x1d\xc7\x06\x26\x87\xad\x4d\x1e\x98\x0c\xf4\x1b\x7a\x7a\xee\xf9\x36\x96\x96\x24\xdc\xeb\x70\x3a\x95\xfb\xe4\xa2\xc3\x12\x03\x8f\xa5\x97\xc1\xba\x53\x17\x25\x57\xdc\x4e\x69\xd9\x46\x99\x57\xb8\xb7\x5b\x1e\x36\xf5\x9e\x48\x11\x62\xda\x66\x0d\xa5\xfd\xca\xa7\x25\x5d\x6f\x52\xdd\xeb\x4c\xae\x4a\xae\x5e\x51\xbc\x2a\xc9\x16\xc8\xb9\x43\xdd\x34\x93\x8c\xa9\x20\xf7\xa7\xc6\xee\xdc\xe9\x9f\x4a\xd3\xea\x99\x25\x1b\x3e\xb7\xe3\x57\xc7\x24\xa4\x0c\xe4\x93\x61\xd1\xaf\xbf\x60\xd3\x43\x6d\x83\x6d\x93\x0e\xc6\x9a\x4e\x07\xd7\xaf\xf8\x7d\x1b\xae\x59\x24\xff\x39\x68\xf1\xc3\xf2\x0a\x4c\x95\x72\x1c\xe7\x15\xc9\x35\xb5\xd1\xcd\x66\x27\xcf\x35\xb1\x23\xda\x0b\xf0\x67\xd6\x06\x1a\xd5\x1b\xfb\x0c\x8e\xc3\x51\x1c\x32\x3d\x0a\x42\xe0\x65\x52\x1e\x02\x89\x93\x32\x90\xdf\x3c\x51\xc6\xb5\x56\x07\x36\xcb\x92\xdd\x82\x37\xb2\xd8\x78\x43\xb3\x05\x3b\x92\x39\x2b\x76\x0d\x2a\xb6\x96\x95\xfa\xeb\x65\x07\x2b\x66\x07\x87\xdb\xc9\x4c\xb1\xbf\xf0\xf5\xea\xd7\x19\xae\xb6\x52\x35\xfe\xc9\x1a\xc4\x2b\xaf\xdc\xb6\x4e\xd2\xe0\x7a\xb6\x25\x63\x10\x19\x2f\xa0\xe1\x9c\x4a\x8b\x07\xee\xc4\x89\xef\x3f\xf1\xc6\xe5\xc9\x40\x3b\x95\x27\x44\xb0\xe7\xae\xac\x49\xc2\xed\x7d\x69\xd3\x83\xe5\xe0\x3c\x52\xd8\x46\xe7\x33\x10\x2c\x40\x04\xb1\xb4\x24\xee\x9e\x57\x36\x0e\xde\xfd\x8f\x20\x3f\x83\x79\xbe\xc1\xca\x3f\x06\xe3\x36\x87\x9f\xa3\x76\x8d\xef\x41\xa3\x76\x0e\xb7\xa2\x50\xeb\xd7\x0d\xa2\xd0\xd3\xa7\x86\x78\xc8\x4c\x30\x33\x23\xc6\x1e\xbe\xd0\xce\x1e\xd6\xe1\x17\x9d\x1d\xbe\xc0\xbc\x81\x21\xec\xb4\xbb\x3a\x97\xd7\xcb\xf1\xb8\xf7\x12\xdc\x4f\xd1\x25\xc0\x48\xc9\x35\x03\x11\x54\x6c\xc5\xbe\xe3\x22\x3a\x79\xa2\x3f\xfd\x38\x86\xc4\xc5\xaf\x7d\x71\xdd\x73\xa9\x9e\x83\xc1\xd4\x17\x83\xef\x36\x7f\xbf\x0c\x41\x4d\x08\x62\x32\xc9\xa4\x26\x14\x41\x50\x34\x9d\x36\x53\xff\x65\x9e\x5e\x66\x4b\x7b\xf0\xfa\x1b\xc3\xb5\x8f\x52\x26\xd1\x1b\xb4\x1a\x7a\x48\xc4\x7a\xbd\x46\xdb\x31\x59\x2c\x09\x41\xc1\xe9\x39\x43\x90\x21\x00\x97\xff\xb4\xfb\xe3\x4a\xf1\x41\xba\xce\x0e\xf5\xd6\xd8\x0b\x87\xe9\xb1\x13\xc1\xd3\x71\xe6\x4f\x8f\x22\x02\x7e\xa9\x3c\x76\x6b\xdf\xf1\x83\xa1\x7d\x6a\x30\xa8\x2d\x25\xc9\x17\x58\x3f\x1c\x5c\x9c\x81\x1e\xf1\x4f\xab\xc6\xe9\x89\x99\x09\xbd\xcf\x09\xbf\x9f\xff\xa1\x97\x8e\xde\x3b\xbb\xd1\x1d\xfb\xf3\xc7\x8f\x9e\xa1\x75\x18\x16\x70\xe7\xfa\xa0\xf1\xb5\x69\xbd\xe1\xeb\xf8\xeb\xb8\xdd\x4f\x66\x77\x0f\x18\xf9\xf8\xb4\x7c\xcd\x35\xd8\x9d\xae\xda\x04\x9f\x8b\xca\xe0\x2b\xed\x6d\xa5\xe6\x2e\x9d\xd1\xd6\x9d\x84\xec\x49\x7f\x28\x40\x67\xa2\x32\xe8\x5a\xfb\xda\x99\x0c\x6e\xdc\x65\x6d\xf3\x8f\x4e\xd9\xde\x0a\xf3\x31\x81\x45\xf4\xe4\xfe\x8e\xce\xe2\xd1\xb0\xc5\x98\x59\xdb\x70\x8c\xf0\x8f\x29\xcd\xba\x7c\x72\x67\xda\x4a\x5a\x97\xf6\xaa\xac\x71\x7f\x52\xde\xf2\x04\x6d\x7c\x68\xd9\xf6\x84\x92\x35\xba\x89\xaa\xb4\xf9\xb4\x9d\x35\xdb\x0a\xad\x27\xb5\xc8\x5d\x1f\x8c\x93\x52\xa4\xeb\x1d\x26\xab\xa3\xdf\xee\x7b\x58\x5b\xe3\xe6\xef\x45\xff\x2a\x5b\x9e\x6f\xf7\xd3\x8d\x59\xbd\x09\x5e\xad\xe1\x29\xda\x81\x6c\xfc\x16\xeb\xab\xf6\x3d\x33\x39\x65\xad\x77\x72\x3a\x66\x24\xaf\xaf\xc5\x67\x53\x4f\xc5\xae\x0f\xd5\x5e\x5f\x36\x7b\xd3\x43\x77\x0f\xbb\xd2\xf9\x10\x76\xbf\x19\x4c\x9c\x36\xfb\xf9\xb2\xa4\xab\x09\xc8\x36\x0a\xc1\xed\x7a\x6e\x70\x87\x8d\xbf\x59\x3c\xad\xb0\xea\x13\xbf\xc1\x5f\xbf\x23\x83\x5b\x3a\x82\xfa\x83\x92\xb6\xbf\xf1\x86\xb4\x4e\xb1\x3f\x4f\xa4\x31\x95\x4a\x7f\x82\xff\xf3\x2f\x47\x62\xd0\x78\xd4\x92\xca\xb4\xcd\xd4\x37\x6e\xe1\xfb\x82\x5d\xb2\xd2\x0a\xdd\x68\x36\x2b\xb4\xc7\xe7\xd3\xc1\x1e\x98\x68\x28\x24\x1c\x6e\x95\xcd\x28\xf3\x2d\x13\xb4\xe5\x85\xf6\xaa\xad\x05\xd9\x71\x7b\xfa\x8a\x8f\xeb\xb2\x23\x0a\x27\x8e\x9a\x66\xe7\xd3\x33\x2d\x0a\x1b\x49\xcc\xcf\x25\xbe\x80\x76\x0b\x73\x76\x54\x61\x9c\xea\x62\x8a\x0e\x26\x16\x48\x45\xd9\xc5\x72\xbd\x87\x21\xeb\xbe\x74\x2a\xdc\x52\xf9\x04\xde\x26\x96\x35\x97\xd3\xf9\x09\xbf\x43\x89\x71\x66\x71\x89\xd6\xec\xd5\xbb\x96\x29\x41\x4d\xe5\x8e\x51\x06\xd3\xb1\x8b\x93\x94\xc3\x9a\x0c\x6e\x24\x9a\x9b\x56\xb8\x26\xfb\x41\x49\xc2\x57\x23\x09\x1e\xf7\x5f\x27\xbd\xb2\x7e\xcd\xb2\x09\xb9\xdb\xd8\x33\x95\xaa\xee\xb9\x95\xd2\x34\x4c\x9a\x91\x5b\x7a\xc4\x13\x39\xa5\x9d\x0e\x64\xb5\x67\x36\x2d\xb2\xb1\xa4\x11\x45\xf6\xc3\x81\x2a\x99\x09\x8d\xc8\xa0\x80\xb8\x13\x4d\x56\x50\x1b\x8d\x81\x30\xf2\x03\xa5\x40\x8e\x04\x08\xbd\x7a\xf1\x3a\xbf\xdc\x9a\xbe\x6a\x7c\x09\xa9\xbc\x03\xb5\xc1\xad\xfd\xf6\x4b\xf4\xd2\xb2\x59\x76\x63\x7a\x62\x87\x75\x0e\x11\x82\x29\x85\xc9\x12\x63\x30\x6d\x57\x83\xbd\x63\xd3\x9a\x22\xa8\x7e\xfe\xa0\xb6\xbd\x2a\xd6\x89\xfb\x8a\xe0\x1e\x4e\x37\xe8\xca\x32\x0c\xbd\xe2\x78\xf5\x13\x23\x6b\x60\x38\xed\x38\x8d\xd9\x72\x9d\xd5\x9a\x1e\xd7\x01\x42\x5f\x8d\xf5\x0e\xef\x24\xe2\xaa\x6a\xd1\x5a\x4a\xbb\x89\x97\x08\x6f\xfb\x69\xf1\x96\xe7\xb3\x7c\x04\x2a\xa2\x3b\xb4\x71\xae\x0c\xa5\x47\x6f\x8a\xab\xe4\xfe\x86\x49\x5b\x04\x34\xd9\x98\x9c\x42\x32\xe3\x87\x70\x29\x85\xa4\x2e\xfb\x86\x33\xe8\xd3\xfb\x74\xcd\x86\xa6\x5d\x52\x2f\x60\x8d\x37\x86\xa4\xcd\x14\x49\xbc\x5b\x58\xdc\x90\xe4\xa0\x22\x61\x3e\xae\xb3\xa1\xaa\xce\xd3\x26\x77\x92\xe6\xb0\xb5\x70\x62\xc6\xa6\xc8\x1b\x8a\xce\x23\x64\x61\xc5\xb4\xb1\x74\xab\xf6\x46\x7b\x45\xbb\xf6\x96\xa2\xfb\x08\x45\x10\x99\x46\x27\x6c\x1a\xed\x1f\x4d\xb6\x0e\x67\xd9\x75\x89\x6c\x31\xd1\x5f\x6c\x25\x89\x6c\x4c\x74\xde\x03\xb9\x5b\x07\x0f\x08\x87\xab\x84\x15\xbb\x4e\xa6\x1a\x05\x62\xf9\x9f\x87\xa7\x43\xdb\x23\x8e\x1c\x7b\xf6\xa4\xd7\xbe\xef\x8f\x39\x77\x91\xb9\xbd\x14\xaf\x87\xbd\x55\x68\xab\x33\x0b\x63\x6d\x03\x13\x19\xd5\xb7\x9d\xe0\x37\xeb\xd0\xa6\x8d\x80\x4e\xe5\x2c\x38\x28\x3a\xde\x54\x2f\x75\xb8\xc4\x81\x27\xd6\xd0\xb1\xad\x97\x23\xf6\xd8\x42\x0c\x65\x7d\x03\xab\x26\x5e\xae\x33\x25\x89\xe8\x4e\x93\x2a\x52\xf7\xf4\x37\x8e\xeb\xab\xf0\x2d\x1f\x7d\xff\x3f\x1f\xc1\x15\x74\x66\x58\x58\xcb\x51\xee\x44\xd8\x2e\x18\xb4\x67\x8f\xdd\xed\xb9\xbb\xd8\xdd\x1b\xee\xeb\xcf\x03\x1a\xe9\xe0\xb2\x42\x9b\xfd\x7c\xb8\x49\xc0\x70\x80\x8c\x80\x01\x86\xc4\xaa\xe2\x76\x2d\xa7\xaf\x4f\x77\x03\x58\xfa\xf8\x33\xe5\xf6\xd7\x71\x0d\x3c\xe2\x44\xb4\xff\xe4\xcc\x16\x4c\x15\x6d\x5d\x37\x27\x13\x5d\xbf\x25\xf7\xb2\xef\x50\x5a\x5b\x9a\x82\x6d\x7c\xba\xaf\xd7\xe7\xfe\x89\xca\x25\x25\xfb\x65\x03\xaf\x9d\xf9\xec\x24\x21\x58\x86\x83\x51\x62\x9b\xbf\x80\xd3\x37\x57\xd3\x70\xdd\x41\xae\x77\xfd\xa1\x90\xdc\x2a\x58\xbb\x37\x89\x1f\xde\x05\xe6\x2e\xd3\x3c\xad\x8c\xbb\x5b\xdf\x7a\x9c\x5c\xd0\x36\x9b\xa7\xdc\xad\xba\x5d\xa3\xa1\xda\x6d\x0e\x15\x15\xaa\x21\xb0\x50\xa3\x2c\xc5\x76\x6b\x30\x88\x80\xad\x5c\x5f\x00\x15\x8b\x54\x05\x99\x9d\x06\x0f\x75\x11\x55\x74\x4a\x5a\x15\xd1\xef\x0a\x2e\x79\x65\xd9\x9e\xcb\x45\xe9\x4c\xe5\x6a\x5d\x28\x8b\xae\xc2\x3c\x27\x6a\xf6\x36\x2b\x5c\x4b\xd9\x26\x03\xce\x3c\x95\xb8\x00\x03\x01\xc2\x2a\xa7\xb7\x02\x34\x84\x87\xf3\x8b\xff\x36\x70\xf6\x0e\x0b\xca\x96\xad\x72\xfb\x65\x78\xd7\xb9\x01\xbc\x5f\x37\xa4\xcd\xd6\x15\x2d\xeb\x58\x9a\x11\x5d\x76\x4b\x69\x55\x01\x5c\xee\x59\x7b\x21\xad\xac\xfd\x92\xbb\x76\x0c\xbc\xa4\xb4\x6a\x04\x6f\x57\x77\x5d\x4a\x55\xaa\x44\x63\x6b\xe2\xb3\x06\x23\xb8\x7d\xe3\x00\xa8\x58\xae\x0e\x61\x6b\x6c\x14\x82\xed\x54\x17\x95\x48\x60\x24\x28\x99\x49\x62\x56\x27\x02\x82\x8f\x15\xf9\x09\xba\x34\xc3\x78\x07\x92\x6f\xce\x98\x73\x39\xf5\xf9\xd2\xdb\x3b\x28\x67\x0f\xd5\xeb\x67\x8f\x8a\x0d\x79\x17\x47\x93\x6c\x26\xb0\x62\x57\x4e\x83\x06\xf1\xe0\x44\x70\x89\x5e\x1d\xc5\x0e\x93\x75\x9a\xa3\x00\x55\xff\x39\xa9\x7b\x3d\x6e\xc0\x62\x20\x4d\x25\x7a\x53\xbe\xed\x22\xb3\xb1\xf1\x98\xbc\xaa\x0d\xbc\xd8\x5f\xa0\xc5\x08\xdc\xb2\x98\x2a\xc8\x7f\x8a\x3d\xc1\x3f\xd0\xbb\x5a\x41\x1b\x1f\x15\x86\x14\x91\xca\x12\xc2\xf1\xea\xc4\x28\xab\xd4\x60\x22\x47\x15\xd4\x32\x23\x1a\x61\x80\x45\x63\x3e\xfe\xb8\x74\x56\x9c\xcf\xbd\x2a\x1c\x9e\x16\x29\x13\x5e\xd7\xce\x27\xf3\xe2\x4d\x9c\x60\x72\x83\x32\x86\x64\xde\x43\x2a\x91\xe5\x64\xef\x42\x61\xb8\x13\xd8\x9a\xa7\x5d\x54\x51\x24\xb5\x13\xc4\x0c\xb1\x7e\x21\xca\x7f\x40\x14\xf0\xff\xdc\x21\xf6\xb9\x2f\xde\x7a\x5a\x52\x1d\xff\x9a\xe6\x36\xd7\x74\x33\xad\x68\x5c\x79\xbb\xf3\xad\x76\xda\xc3\x7e\xbd\x1f\x1b\xd6\x1e\xac\x74\xcd\x20\x2b\x59\x3d\x52\x0c\x12\x42\x85\x74\x43\x25\x04\x20\x3d\x2d\x9a\x8d\xc6\xb7\x78\xe0\x27\x44\xcf\xcb\x70\x16\x1a\x4d\x4b\xc7\x27\xd5\xc6\x75\x27\x83\x9a\x83\x01\x45\xff\xb9\x48\x72\x3d\x76\xc0\xf4\x9a\x90\x84\x37\xe3\xb6\xb6\x33\xf3\xf3\xba\x42\xe4\x80\xc2\x8c\xe7\xee\xfc\x8e\x62\xd3\x41\xfc\x1d\xd5\x6e\xb5\x8e\x5b\x8e\xd8\x02\xf9\x9b\x0d\xcb\x2b\x8b\xc0\x53\x1d\xaa\xe3\x5a\x61\xd5\x29\x58\xdd\x05\x9d\xa8\x74\xfb\x16\x58\x73\x88\x50\xaa\xd1\xe7\x53\x14\x65\x75\xeb\xd7\xd6\x8a\x12\x4f\xe5\xa8\xd7\x41\xfb\x43\x50\x9f\x78\x53\x5e\xde\x1a\x41\x72\xee\xa0\x28\xa7\x8c\x3f\xca\x0c\x79\x3c\x7a\x8a\xe6\x2a\xc9\x2e\x51\x39\x7c\xaa\xed\xa1\x39\x0a\x87\x22\xf3\xf6\xd7\xbd\x1e\x32\xd1\xbd\x39\x7b\x44\x1b\x34\xaa\x1d\x58\x0e\xfe\xca\x21\xeb\x09\xff\x86\xd5\xc8\xe2\x85\x6b\x46\xac\x34\xb6\xd4\x9d\xab\x6a\x91\x2b\x1b\xfc\xad\xaf\x1f\xda\x8f\xc4\xd8\x33\x0c\x4a\x4d\x10\xab\x3f\xb2\xc3\x8c\x12\x6f\x64\x5a\xc7\xd7\x55\x21\xca\xa9\x73\x2d\x79\x88\x43\x64\x55\x2b\xec\xf1\xf6\x86\x29\xa5\xe4\x52\x58\xe0\xf5\xb6\xc0\xc6\x76\xfc\xa1\xbc\x16\xaa\xc6\xb1\xbc\xfa\x99\xf3\x4e\x3d\x3a\x65\x6b\xe6\x50\x2d\x1f\xa3\x5b\x18\x73\xa0\xb2\xc0\x25\x39\xe6\xfa\x77\x6d\x32\xb6\x3b\x52\x12\x5a\x3c\x5f\x7c\x1b\x3e\x2a\xba\x38\x74\x32\xdd\xfa\x1d\x73\xfd\x92\x9c\x60\xe4\xc2\x4f\x9f\xd2\xf2\x5f\x6c\x17\x9d\x55\x54\x36\x82\xc7\xea\xb3\xf9\xbb\x85\x45\x53\x1a\x79\xcc\xa9\x88\x38\xf2\x7e\x93\x54\x0c\xc6\xaf\x6d\x5d\xb7\x2d\x44\xd8\xb4\xf2\xd1\x6c\xd6\x2d\x6c\x1c\xbd\x09\x11\x25\x9c\x1c\x52\x9f\x82\x14\x1d\xb7\xd2\x5b\xf6\x52\x1e\xb5\x79\xb7\xc5\x3d\x6a\xd9\x34\x91\x51\xda\x71\x05\xa8\xef\x8a\x3f\xb7\x54\xa6\x05\xc7\x38\x57\x43\xc6\x32\x92\x01\x0a\x4b\xf5\x11\xd2\x0e\x56\xc0\xd2\x59\x83\xf0\x0b\x3d\x37\xda\xeb\x1a\x9a\x4c\xba\x08\x3e\x6f\x8d\xd9\xf8\xf8\x36\x20\xac\x2e\xfe\x31\x5e\xbe\xc3\x09\xcb\x35\xb4\x45\x1f\xb7\x26\x1d\xa4\xfc\x9b\x3c\xd3\x93\xe2\xcb\xbe\x6d\x49\x78\x08\x6f\x5d\x71\xa2\xda\x34\xf9\xbe\x8d\x88\xde\x43\x32\xaf\xe6\x04\x0a\x13\x02\x64\xd3\x3e\x1a\x36\x45\x84\x3c\x90\x3c\x0e\x4e\x2b\xd8\x02\x72\x5a\x84\x53\x1c\x8e\xf0\x30\x47\xb5\x05\xca\xfe\xb5\x71\xa1\xf1\x65\xcd\x7d\xeb\xbe\xdc\xf1\xed\x13\xcc\xe3\x91\x8b\x3e\xc1\x2f\xe4\x27\xfa\x69\xf0\xbb\x1e\x32\xf8\xd7\x8f\x5d\xed\x37\xad\x16\x16\xec\xe7\xaa\xca\xc1\xbd\xb5\x97\xb5\xad\x46\x99\xee\x50\x6e\x8a\x9c\x3a\xbd\xf2\xf1\xf0\xac\xa1\x1b\x84\x3f\x36\xaf\x41\x35\x55\x7f\x74\x34\xd1\x2f\xa2\x30\x09\x5a\xfb\xd3\x6e\xc5\xed\xca\x29\x6d\x63\x09\xe9\x50\x59\x3e\x32\xbd\x46\x39\x05\x56\xde\x57\xf3\x0d\xef\xfa\xfa\xf3\x76\x1a\x4f\xd4\x90\x11\x5f\x2c\x16\xe2\xf3\x21\x28\x42\x45\x79\x06\x57\xc5\x1b\x02\x71\xe4\x45\x67\x9a\xfa\x79\x12\x8b\xb7\x0f\xfe\x42\x6f\x8b\x53\xfa\xb9\x39\x15\x63\x4f\xdc\xc7\x28\x44\x5c\xd1\xc8\xf9\xd0\x93\x3f\x24\x0a\xa8\xfc\x58\x14\x76\x44\x68\xfe\xcf\x87\xfe\x19\x48\x4f\x79\x48\xe7\xc7\x15\x7e\x5b\xcb\x21\x7f\xce\xfc\x9c\x15\x11\xd0\x16\xc6\x50\xca\x09\x80\x22\xdb\x25\xe4\x10\x9c\x7a\x75\x35\xc9\x2c\x0f\xe0\x0d\x32\xba\x9d\x3b\xcf\x72\xee\xdc\x24\x3a\x25\x13\x74\xdc\x0e\xdc\x28\x8a\xdb\x53\xe1\x8f\x2b\x54\x3a\xf3\x40\x5f\x07\x63\x70\xb4\x56\xe0\x3c\x38\x2a\xb9\x18\xda\x11\xbc\xc6\x1f\x14\xe4\x1c\x8c\xae\xf8\xae\xc9\x33\x6b\x23\x24\xc0\xd4\x48\xb2\x69\xe9\x1e\x61\xef\x58\x53\xcf\xb3\x93\xd4\x40\xcf\xec\xe5\x0d\x5a\x79\xb4\xef\x8d\x47\x52\x0d\x71\xf8\xab\xb1\x3b\xca\xc7\x13\x20\x12\xe8\x38\x06\xc4\xdc\xb5\x3d\x29\x5f\x73\x7b\xcd\x2f\x5f\x5c\x4b\x56\x9f\x02\x9a\x31\x01\xbc\x6e\xa8\xbb\xc2\xcc\x1f\x2d\xdd\xd2\x95\xc8\x5d\x47\x54\x51\x65\x05\xd6\x1e\xb6\x17\xad\x4b\xfb\xce\xea\xf2\x1c\x7d\xef\x05\xa8\x8f\x3e\x95\x9a\x74\x0a\x45\xc6\x27\x73\xe2\x02\x11\xbc\x0b\x31\x5b\x04\x45\x7d\x90\x97\x4d\x42\xc2\x56\x33\xc3\xd5\x57\x5b\x21\x15\x87\x45\xf2\x7a\xf5\xd9\xaa\x2b\xda\x36\x07\xdb\x8a\x15\x09\xb6\x22\xf5\x10\xf4\xd8\x98\x8f\x95\x64\x56\xb3\x47\xf3\x46\xb3\x5b\xf3\x41\x9f\x64\xf2\x32\xab\x8b\x32\x50\x7b\x35\x09\xf7\x7e\x5e\xd7\x0f\x1e\xb3\x2a\x0a\x20\xb1\xae\xe5\xbc\xa6\x22\xaa\x3d\xc0\x61\x6b\x27\x2b\x14\xe7\x75\xa5\x25\x8f\x4d\x7f\xeb\xb9\xb4\xdd\x73\x3d\xc8\xe1\x4c\xbf\x50\x90\xe9\xd9\x56\xe0\x0c\xf0\x52\x9e\x66\x93\x8b\x87\xd5\x9c\x06\xc1\x3e\x0e\x5b\x34\xc9\x57\x4c\xe8\x38\x34\x7f\xb4\xf5\xbd\x1b\x00\xaf\x56\xdf\xdb\x26\xaf\x71\x8c\xdd\x4e\xa4\xf8\x02\xa1\x20\xde\xa3\x9b\x70\xc7\xa4\x93\xba\xdf\x8c\xef\x75\xae\x7c\xfb\x79\xe7\xce\xbd\x0c\xf9\xfb\x3a\x31\xe8\x06\xc8\x1e\x60\xa8\x36\x6c\x5c\x98\xc5\x1f\xbc\x73\x30\x3a\x8f\x3a\x16\x97\x5f\x29\x82\xc0\x32\x26\x68\x27\x34\x2e\x88\x5d\x11\x1a\x9e\x19\x6c\x3b\x43\x55\xb4\xdc\x4a\x6d\xdf\x9d\xf8\xb0\x2d\xba\xcd\xf2\xb0\x63\x78\x2e\xa5\xbc\xe1\x22\xd2\xd0\x1f\x7b\x31\xa6\x84\x60\x78\xed\x17\xef\x04\xe4\xe8\xbe\x31\x88\xbe\x94\x53\xf9\x99\x5b\x2e\x78\xb6\x96\xd3\xbb\x64\x0c\xb2\xef\xe8\x04\x44\xff\x85\xb9\x67\xa5\x0a\x61\x06\xa9\xc4\xd7\xe0\xe6\x15\xaa\xcc\x8f\xb2\x8c\xcb\xe1\xe6\xd7\x50\x54\x10\x6f\x5e\x59\x9e\x15\xe0\xd9\x17\x20\x93\x62\x28\x7d\xfd\xc1\xeb\xcf\xb4\x08\x28\xfb\x37\x8a\x67\x82\x3b\x1f\x58\x60\xdc\xdb\x39\xa6\xa4\x6b\x6d\xf7\xdd\x17\x77\x7b\x3a\x6b\x02\x18\xcd\xff\x8a\x8f\x5a\x4a\xd6\xaa\x4e\x15\x56\x27\xc9\xc0\x8d\xbe\xce\x4b\x54\x65\xfb\x25\x57\xed\x28\x78\xa1\xcc\x6a\x61\xc8\x54\xac\xfd\xc0\xec\xb1\x12\x69\x6a\x81\x3b\x65\xe0\xb1\xd3\x9d\xdc\xc0\x96\x20\xba\x89\x9e\x9e\xf0\x8f\x84\xef\x75\xa8\x5a\x57\xa5\x12\xf4\xc7\x9c\xd8\x5b\x24\x36\x5f\xe3\xc6\xd6\x6b\x52\x90\xac\x0e\x75\x41\xa9\x58\x8f\x04\xc5\x9a\x82\xac\x0e\x24\x45\x93\x55\xaf\x75\x07\xf9\xf2\x1d\xd8\x53\x05\x7b\x49\x65\x66\x6d\xd4\x6a\x29\x6a\xf3\xe3\x1b\x33\x1a\xd7\x7b\x93\x14\xcd\x75\xd6\x83\x54\xfe\x8a\xab\x66\x2b\x39\xb9\x7a\x48\xe7\x47\xcb\x57\x1c\xbc\x7c\xa7\x2a\xa6\x46\x57\xf3\x10\x07\x3d\x2e\x3f\xd8\xa1\xc1\x8e\xd8\x0d\x4c\x81\xb1\xc9\x84\xb5\xab\xcb\xab\xe0\xfc\x4a\xd0\x5b\xbf\x21\xe8\x66\xef\xc1\x33\x84\x01\xcc\xfe\x7e\xf7\xe9\x7b\xff\xd1\x4e\x17\x97\x58\x6a\xaa\xa9\xd7\xe8\xd4\xf4\xb9\xad\xe9\xd5\x58\xd0\xfd\x21\xc0\x78\xab\x16\xf5\x15\xa9\xc5\x16\xc2\x54\xe0\x35\x44\x2c\x8f\x9f\xa2\xbf\x35\x62\xd2\x64\x8e\x09\xb3\xd2\xd4\xa2\xfc\x64\x90\x92\x8b\xff\x29\x31\xbe\x63\xd0\x7d\x90\xcd\xad\x39\x4d\xaf\xb4\xc3\xad\xb6\xca\x96\x7a\x01\xa9\x02\x5f\xd3\x57\x64\x33\x75\x0c\xb9\x4f\xb0\xc4\x85\xb3\xb4\x8e\xb4\xcc\x01\xff\x47\x04\x0a\xb3\x82\x19\x6a\x75\x61\xfa\x7b\xdf\xc4\x53\xba\xf4\xad\x9f\x1f\xa1\x06\xe6\x29\xe7\xb4\xf3\xdf\x97\x9e\xbe\xf9\x1c\x29\xa7\xf7\x1e\x96\x62\xeb\xd8\x60\xd6\x51\xfa\x41\x83\xab\x3e\x52\x1a\x8c\x28\x95\xf3\xe5\xb9\xcb\x37\xb8\xbd\x61\x6e\x7c\x2a\x49\x2e\xc1\xb4\x48\x4b\x61\x2e\xad\x7c\xe5\x16\xd9\x35\xb7\x12\xea\x72\x05\x94\xa5\xfc\xa4\xe0\x68\xe5\xce\x73\x12\xe9\x27\x58\x2e\x41\x3c\x7f\x6a\xf1\x94\x16\xab\x9d\x67\xcf\x6b\x0f\x04\xce\x95\x5f\x2a\xd7\x62\xf7\xc1\xe2\x9a\xbb\xa7\xbb\xb5\x95\x53\x37\x83\x61\x5e\x6a\x85\xf4\xbc\xa0\x6b\x67\x5e\x5e\xd2\x8d\x95\x49\xb6\x05\xfc\x45\xc3\xd2\xe3\x02\xab\x48\x48\xa2\x13\x82\xa2\xe3\xca\x70\x1e\x3b\xb1\x05\xc3\x5a\xd0\x01\xc1\x14\x59\x72\x84\xe5\x03\xe1\xbb\x27\x67\xc3\x6d\xac\xfc\xe4\x88\xc2\x26\x4f\x8a\x30\x7c\x00\x74\xf7\xd8\x71\x3c\x91\xe1\x4b\xae\x90\x11\xe2\xe6\xb1\xf3\x95\x27\xbb\x35\x95\xfd\x49\xbf\xdf\x27\x78\x93\x8c\xf3\xc5\xa7\xfa\x4c\xa2\x25\x67\x04\xea\x72\x68\x4f\x55\xc2\x5c\x42\x78\x76\xee\xb8\xcf\x46\x89\x74\xaf\x9c\x30\xd4\xba\x5b\x21\xca\xee\xc9\xee\xd7\x2f\xa3\xbf\xc3\xfe\x83\x75\x49\xbe\xf7\xdd\xf2\xca\xfc\xa4\xff\x9e\x27\x34\x2a\x31\xba\x63\x3b\x85\x9b\x04\x85\xf9\xd2\x0e\xd4\x24\xed\xab\x2e\xd9\x27\x11\x4e\xf4\xda\x3c\x0b\xa1\xfa\x1e\xf6\x27\x65\xee\x71\x85\x67\x52\xf6\x90\x60\x42\x5e\xe0\x94\x86\xb5\x45\xc8\xf4\x73\xbb\x50\x13\xb7\xaf\xf8\xa3\x96\xb0\xa8\xca\xef\x7c\x17\x61\x57\xd4\x6d\xbf\x47\x00\x0d\x77\x8f\xe1\x29\x38\xfc\x9a\xe9\x16\x6f\xcc\x9a\x53\x5e\xa2\x29\xa1\xb4\x50\xde\x67\x35\xcb\xfb\xeb\x8a\xa7\xc4\x22\xac\x72\x2e\x3a\x8c\x2d\x41\x33\xde\x8b\x75\xc4\xa1\x1f\x52\x60\x12\x06\x59\x34\xec\x93\x99\xf9\xb3\x0b\x91\xfe\x39\x35\x7e\x53\x1f\x7f\x46\x95\x3b\x74\x27\xab\x76\x5c\x77\x61\xa2\x80\xac\xbb\xb7\x2c\xbd\x93\xd9\x10\xde\xaf\xaa\xa8\x86\x27\xfc\x4b\x5e\x39\xb6\xf7\x32\x51\x62\xb4\x8c\x0f\x38\xf1\xd5\x68\xed\xd1\x9a\x2c\x62\xb9\xce\x12\x62\xa3\x86\x96\xf2\x45\x7c\xff\x53\xb9\x35\x6b\x0d\xf4\x92\xad\xce\xdc\xad\x9c\x69\x59\x6c\x34\x20\x4d\x6e\x4e\x66\x15\x6c\x30\xe4\xf6\x0a\x4e\xac\xca\xe7\xdd\xfa\x4a\xfa\x1a\x0f\x20\x2b\x2a\x10\x45\x5e\x26\xc3\x8b\x2b\x7a\x3a\x93\x0c\xf0\x77\xe0\x13\x7d\xf9\x75\x5c\x5e\x41\xdc\x02\x7f\xc1\x62\xe7\x7a\x50\x6f\xbb\xff\xf9\x7d\x7c\xca\xbd\x7a\x6f\x38\x5e\xd9\x17\x2d\x9c\x12\x09\xef\x31\x1d\x0c\x2f\x90\xec\xf9\x1c\x25\x5e\x64\xc6\xfe\x2d\x12\xd1\xca\x4f\xff\xdf\x60\x84\xfe\x9d\x70\x05\x64\x9e\xcd\xdb\xcc\x60\x0d\xf0\xd2\x48\x33\x06\xab\xcf\x35\x0c\xee\xd8\x6e\x10\x11\x55\xec\x05\x63\x6e\xdc\x3f\x81\x1f\x3a\x35\x7a\x6a\xbf\x66\xff\xb7\xc4\xfa\x89\x12\x54\xa0\x22\x9e\xda\x49\x88\xa0\x65\xc7\x42\x34\x7c\x58\x63\x2d\xe4\xa0\xc2\x72\x65\x4f\x72\xc9\xa8\x88\x57\x28\xea\xb7\x5a\x45\x03\xbc\xb2\x5f\xc2\xc2\x74\x8c\x2c\xdf\xe0\xf2\x26\x63\xe3\xfa\x24\x36\x0b\xd3\x92\x49\x26\x3c\x7f\xff\x1a\x07\x0b\x25\x33\xf7\xe1\x8c\x10\x8e\xb1\xe1\x23\x1e\xb2\xe2\x03\x67\x37\x6a\xab\x68\x05\x9b\x45\xac\x22\x7e\x9f\xd5\xca\x1f\x60\xb1\x36\x4b\xb2\xd3\x3e\x3d\xf2\x77\x9a\x7e\x4d\xdf\x82\x8d\xa6\x91\xd9\xff\xfe\x25\x81\x7b\xfb\x97\xbc\x73\x80\x99\x77\x01\x6b\x36\x25\x41\xe3\x44\xdf\x68\xdf\x0e\xcd\x0e\x58\x58\x5a\x0a\xb3\xf7\xb9\x4a\x0d\xb6\x30\x3c\xc7\x67\x29\x19\x26\xc9\x2c\x33\x9b\xb7\x3e\x9d\xd1\xcc\x46\x4c\xcd\x20\x09\xcc\x01\xa3\xa0\xde\xd0\xc6\xf6\xf8\xf9\xeb\xb3\x99\x5f\x31\x69\x62\x07\x93\x23\x75\xf8\x8a\xbf\x67\xd2\x54\x0e\x3e\x95\xf7\xd9\x9f\x83\x92\x55\x1f\xa6\xc6\x96\xb4\xdc\x46\x0e\x6c\x6e\x42\x72\x76\xd1\x46\x11\xa3\xbe\x99\x93\x57\xc4\xdd\xc2\x7c\xb4\xf4\x88\xe5\xeb\x65\xf2\xa5\xde\x92\x0f\xdf\x3e\x62\x85\x7a\x85\x54\x0e\x61\x85\xe1\x22\x62\xca\x1a\xad\x68\x52\x28\x2d\x90\xf7\x58\x2c\xf2\xbe\xba\xa2\x49\x91\xe8\xd3\xc0\xd9\xd1\xb1\x08\x6d\x84\x0b\xf9\x47\xff\xf9\x20\x4a\x7a\xfa\xb3\x20\xcb\xf8\x3e\xc5\x5e\x22\x4b\x7a\x9c\xd2\xc5\xed\x66\xbf\x99\xbb\x69\x1b\x23\xdf\xb6\x46\x92\x17\x15\x9f\x56\xdd\xb3\x5d\xcd\x44\x82\x08\x9d\xa3\x00\x08\x95\xcb\x5b\x62\x7d\x1f\x2f\x2e\xbb\xa1\x2b\xf7\x08\xd1\x41\x9e\x1b\x09\x07\xac\x66\x90\xde\xd1\x29\x0e\x3e\xca\x92\xf5\xcb\xac\xe1\x6d\xbe\xdc\xbd\xec\x3b\x55\x59\x5d\x1b\xbf\x99\x9a\x15\xbc\x88\x6d\x7c\xf8\x0e\x30\x39\x89\xe8\x35\x3b\x5d\xa8\x71\xc4\x10\x1e\x83\x92\x82\xfb\x0b\xfc\x6d\x7c\xa8\x78\x8b\x89\x39\x20\x38\xb8\x8a\x2b\x7f\xf8\x16\xfb\xdd\x82\x7c\x15\xc7\xef\x14\xb3\x6e\x4b\x3c\x13\xed\xe4\xf9\x4a\x04\x5b\x80\xec\x8f\x40\x89\xc1\x81\x01\x9a\x1f\xde\xbe\x92\x83\xf8\x61\x31\xe8\xdc\xc1\xf2\x83\x1f\x1e\x94\xb4\x9f\xfc\x89\x08\x9a\x7d\xe1\xf8\xd6\xd8\x0f\x63\x3e\xe5\xd0\xdf\xee\x01\x9f\xd9\x46\xd2\xef\x39\x9b\x48\xda\xaf\x30\x92\xf2\x73\x58\x8b\xf2\xd7\x73\x73\xa6\xc5\xae\x69\xfe\x74\x3f\x43\x91\x70\xcf\xef\xde\xd6\x79\xff\xe2\xbb\x0f\x24\x73\x03\xf3\x77\x7d\xe4\xb4\xbb\x41\x37\x8d\x79\x41\xf7\x2c\x29\xb3\x0f\x7d\xba\xae\xfa\xee\x04\x28\x6e\x9b\x89\xe3\x8f\x9b\x45\x3a\x57\x3f\xa0\x99\xd6\x98\xbd\x85\x7d\x4b\x71\xe6\x85\x92\x79\x4b\xb2\xf2\x3d\xcf\x07\xc7\xd2\xc3\x24\x62\x77\x6a\xee\xc2\x7a\x2f\x86\x9f\xb7\x89\xb3\x6d\x7e\x5b\xa0\xb9\x3e\x3f\x4a\xe5\xe6\xcd\x67\x68\xa8\x51\xf4\x90\xc4\x87\xd4\x79\xbe\x9b\x99\x8c\xf5\xcc\xcc\x05\xf1\x23\x49\x3f\x53\x0f\x8c\xa4\x7b\x8a\x43\xc5\xc8\x12\xb1\x9f\xb9\x90\xba\x3e\xf7\x85\x76\x44\x7f\x55\xdc\xa3\x5b\x08\x72\xd2\x21\xcd\x1e\x1f\xc4\x6b\x8f\x7e\x72\x19\xf6\xa5\xe6\x05\x6b\xcd\xc6\xa4\x9c\x06\xbe\x71\xb1\xe5\x5f\x5a\xee\x1f\xf1\xce\xde\xdc\xf6\x85\xf7\xd3\x3d\xbb\x23\x2f\xce\x27\xc3\x0c\x16\xbe\x18\xd0\x7f\xb9\xee\xa7\x35\xc8\x1d\x74\x7f\xf2\x5f\xfa\x44\x37\x54\x96\xbe\x80\x3b\x11\x02\x21\x83\x99\x28\x8c\x79\x67\x2b\xf4\x30\x3f\xee\xa5\x88\x21\x1d\x78\x1a\x63\xcd\xfe\x6b\xd8\x97\x96\x72\x2e\x3f\xfb\xfe\x71\x4c\x6a\xd6\xb4\x73\x44\x07\x7e\xde\xbe\x97\xa3\x69\x06\xe7\xd2\xf5\xa0\xee\x89\x2d\xa1\xd6\x7c\xba\x01\x5a\x00\xff\xab\x87\x0b\x59\x20\xa0\x44\x36\x63\x19\xee\x77\x87\x24\x1e\x0b\x67\xfa\x9a\xed\x08\x65\xdd\x85\xd7\x5d\x14\x34\x72\x28\xdb\x03\xb2\x9e\xa9\x06\xaf\x21\xf7\xb6\xd1\x3a\x01\xf9\xe0\x80\xf4\x98\x5c\x22\x36\x5e\xe1\xb8\x3e\x79\x73\x84\xe2\xda\x79\xa7\x20\xca\xee\xe3\xd4\x61\x40\x23\x3f\x52\x00\xf7\x13\x9c\x22\x75\x09\x11\xd4\x10\x73\x85\x5d\xbb\xbb\x06\xb6\xcd\x1b\x36\x6e\x1d\x74\xfc\x6e\xca\xf0\xa8\x57\xe7\x25\x7b\xd6\x12\xe0\x67\x79\xe9\x49\x8a\xac\x4b\x70\xc1\x31\x9a\xda\x0a\x37\x5a\x1c\xc1\x36\x1f\xa9\x0a\x5f\xdf\xe1\xb1\x81\x1d\x6d\xb9\x87\x59\x5c\x81\xf9\x0f\x8c\xeb\x37\x8b\x70\xb9\x73\x9b\x9b\xa7\xb3\x79\x78\xd5\xab\x48\xde\x21\x9f\xae\x1b\x67\xe3\xd5\xb6\xbb\x74\x96\x35\x68\xdd\x8e\xfd\x46\x44\x0b\xbb\x57\x44\xec\xf9\x39\x85\x6b\x39\x14\x60\x3c\x84\xb6\x1e\xe1\x33\x01\x60\x5a\xdb\x72\xca\x0a\x27\xe0\x20\xbf\x0b\x95\x7e\x96\xce\x42\xa9\xac\x89\x15\x87\x27\x60\x29\x60\x29\x3e\x0f\xf7\xd4\x59\x29\x91\xea\xd8\x42\x06\x3a\xab\x9f\x25\x2b\xd9\x8c\x55\x64\x46\xbf\xfc\x21\x96\xa2\xee\xb0\x3b\x42\x54\xe0\x16\x70\x7b\x27\xef\x8c\x15\x3e\xf5\x88\x54\x93\x7e\xfd\x0c\x09\xe8\xaa\xa4\x80\xd2\xde\x76\x0f\x33\x36\xb0\x36\xdf\x41\x36\x62\x7d\xce\xaf\xdf\x04\xbd\x6b\xd1\x22\x29\xe7\x65\xdb\x37\xb1\xbf\x33\xc6\x3e\x94\xaf\xb9\x94\x54\xdf\x14\x6b\xd6\x57\x19\x0c\x83\xa4\x71\xf9\x37\x79\x73\x37\xb9\xbe\x32\x56\x6f\x6a\x32\xd8\x07\xe9\xe3\x72\x23\x6f\xb3\xd3\x2c\xe2\xec\xaa\x5d\x4b\xcd\x88\x6c\x99\xc3\x25\x51\x2e\xdb\xb1\xab\x8c\xb3\x70\x18\x8c\x22\xf0\x17\x3b\x14\x3c\xf5\x21\xc1\xd2\xb5\xb4\x89\x30\x36\x13\xd1\xee\x37\x8c\x75\xa8\x48\x33\x2d\x2d\x8c\x41\xb7\xb0\x86\xb1\xe1\xfc\x5d\x6b\x09\x01\xd4\x56\xf2\x73\xc9\x03\x5d\xe9\xbe\xfc\x1e\xb7\x63\x9c\x7c\xa5\x69\x0a\xd0\x0d\x7c\xe5\xec\xe3\x94\x83\x1b\x3c\xdb\x6f\x7a\x2a\x2f\xd1\x7e\x54\xab\x9b\x63\x49\x97\x5d\x21\x97\xcd\xe2\x26\xdc\x1d\x93\xad\xec\xa1\xb2\x17\x6b\x59\x2c\x5c\x46\x0d\xff\xd3\x50\x8b\xd9\x6b\x5b\x17\xf6\x2e\x00\xd6\x2f\x17\x8e\x2d\xec\x49\x1b\x0e\x7d\xb1\x3e\xc9\x0e\xc0\x5d\x1d\x3d\x0b\xb8\x9c\xb8\xfa\xec\xd9\x54\xd0\x14\x2a\x46\xcf\x02\x3c\xb3\x9e\x3e\x51\x61\x58\xb5\x9b\x3f\x59\x14\xb4\x29\x2f\x7b\x88\x93\x64\x88\xaa\x8a\xac\x8d\x2a\xbd\x7d\x88\xc3\x2a\x90\x6c\xca\x9d\x54\x21\x2d\xe0\x8f\x8a\xb2\xee\x90\xb3\x22\xf5\x37\x0a\xf0\x6e\x09\x4f\xe6\xf0\x7d\xf4\xee\x31\x6d\x38\x8e\x27\x82\xdc\x05\x37\xea\xe8\x95\xfa\x87\x0f\x5b\xd0\x09\x9d\xe4\x72\xb6\x9b\x42\xe1\x6d\x0b\xb6\xd8\xe0\x22\xeb\xa9\xac\x17\x15\x53\xca\xd8\xf5\x64\xfd\x6b\x2a\x03\x74\x2c\x35\xb0\xa3\xc2\xa1\xc6\xb3\xa2\xb3\xd0\xbf\xdc\x6e\x1a\xe4\xb1\x83\xb2\x31\x6e\xad\x5f\x30\x94\x95\xd5\xc4\x04\xd0\x46\x23\x51\xaf\x3d\xa3\x46\x14\xbc\x6c\xf2\x7a\x05\x43\x8c\xda\x90\x6c\x8c\xc3\x1e\xe0\xc5\x9f\xd3\x44\x07\x5a\x9b\xfd\xdc\x3c\xb6\x48\x06\x7b\x31\xef\x43\x96\x0a\x16\xb1\x58\x79\xfe\xe6\x56\x28\xa0\x7e\x7e\xb1\x05\x93\xd0\x41\x0e\xb1\x5d\xae\x82\x83\x60\xe3\xd3\xe8\xad\x6c\xc8\xf9\xec\xed\x6f\x0b\x3b\x7b\x02\xf7\x46\xe5\xfa\x85\xf8\xb8\xd9\xb8\xfe\x1b\xa0\x98\xd4\xff\x4c\xbf\xb9\xfc\xd3\xd7\xb5\x54\xbf\x96\xd5\x5f\xc7\x0c\xaf\x60\xc1\xe2\x0a\xcb\x25\xe5\x81\xb7\x55\xda\x82\xea\xd5\x07\xf9\x15\xfb\xc1\xeb\xe5\x96\xeb\xc8\x4f\x1b\x76\x8c\xe7\xc8\x1b\xcf\xc3\x95\x7d\xe0\xa5\x56\x6d\xbf\x72\x63\x37\x2e\xa8\x03\xa3\x39\xbb\x68\xd6\xf9\xcc\x5d\xa9\xb2\x36\x9d\x75\xc2\xed\x7f\xae\x5c\x23\x66\xc5\x8f\xb2\xb9\x23\x82\x63\xbc\xe6\x92\xf6\x7d\xf5\xc0\x85\x2c\x65\xe0\x80\x4a\x5e\xa3\xdb\x21\xe4\x98\x6d\xf3\x5b\x88\x5c\xa4\x58\xad\x08\x65\x0e\x69\xd1\xcb\xe8\x55\x86\x8a\xd5\xfa\x11\x77\xf6\x2d\xe4\x49\x72\x6d\xce\xf1\x13\xb8\x23\x7f\x77\x21\x47\x63\x6b\xc9\x27\x2e\x09\x51\x27\x28\xf5\x39\xa3\xa7\x63\x0e\x7e\x31\x78\x3a\x2b\xa1\x06\x7f\xdc\x4d\xf7\x2b\xb2\xe6\x1c\x06\x98\x3d\x80\xb9\x34\x8b\x79\x44\x33\xc9\xdc\x2c\xa2\x27\xd8\x33\x4c\x78\x63\x06\x9a\x40\x6f\xe9\xae\xc4\x34\x2c\x6a\xb3\x08\x3e\xeb\xe3\x19\xa0\x34\xb2\x37\x38\xa7\xf3\x30\x21\x0c\xd0\xee\x27\x40\xc5\xf5\x18\x20\x48\x51\xe2\xb2\x26\xc6\x06\x41\x9d\xd6\x8d\xc7\x0c\x3d\x0b\x52\x9b\xc7\xea\x7e\x76\x87\x23\x2e\x1b\x96\x2f\x70\xb1\x94\x3a\x8c\x68\xf2\x61\x71\x0a\x16\x0b\xd4\x8c\x27\x3f\xb6\x3c\x9e\x53\xa0\xb4\xcf\x7e\x5b\x63\xf2\x78\x65\x20\xf3\x3a\xca\xff\x05\x13\x14\x7e\x73\x87\x93\x83\x62\x4f\x79\x04\xe6\x0e\x40\xc2\x93\x92\xb9\x69\x21\xf0\x43\x9b\x28\x38\xbd\xc0\x58\xef\xd1\xc7\x15\xfe\x06\x4c\xc2\x0f\x55\xa4\x05\xf5\xc1\x85\xbb\x76\x9c\xaf\x48\x0d\xea\x03\xd9\x3f\x5d\x49\xac\x0c\xf9\x0d\xe8\xac\x4a\x22\x50\x9c\x3b\x8c\xc0\xef\x86\x89\x94\x87\xbe\x77\x4b\xcc\x74\xbb\x49\xa4\xe7\x83\x9a\xc7\x17\xa0\x81\x18\x3c\x72\xdf\x43\xf2\xd8\x01\x34\x48\x22\x18\xee\x79\xd4\x21\xb7\xc7\x5a\xf0\xbd\x99\x2d\x04\xa7\xfd\x93\xbd\x9f\x84\x74\x88\x4d\xfe\x4d\xfb\xe4\xd9\x3b\x9a\xe7\x40\x0e\x14\xe9\xd7\xfe\x34\x73\xf3\x64\xcc\x39\x96\x06\x81\x1c\xee\xb4\x8d\xe9\xd0\xc9\x97\xb0\x47\xea\x48\xcf\xf5\x71\x60\xac\xf3\x49\xe2\xc6\x89\xb4\x07\x9d\x6a\xec\xcb\x95\x43\x37\x32\x9a\x30\xe3\x2e\xa1\x5a\x15\x49\x5d\x1f\x0f\xdc\x3c\x3f\x3f\x3e\x56\x69\x8e\xe1\x3a\x2f\x22\xa9\xe3\xe0\xb7\x73\x65\x73\xb8\x61\x35\xf5\x7c\x6b\x18\x63\x4b\x76\xc3\xb6\x42\x41\xba\xeb\x64\x9b\x6b\x64\x34\x12\xc3\xac\xb2\x1a\x6a\xc9\xd0\xdd\x4b\x7d\xc5\x30\x3c\x13\x3d\xb3\xda\x4d\xd6\x8d\x50\x9f\xb4\x16\xfa\xf7\x3b\x97\x69\x65\xc6\x23\x5f\x91\xf8\xfe\xdd\xf9\x3f\x4a\x57\x1c\x89\x96\x2b\xd5\x0b\x68\xc1\xfc\x0f\x0e\xf9\x1d\xdf\x74\x3c\xa1\xc3\x66\x73\xc2\xe2\xa6\x45\xf7\xd7\x8f\x86\x0f\x17\x25\x37\xcc\xbf\x36\x7c\xce\x2b\x84\xce\x71\x2c\x05\xd7\xe8\x9f\xe1\x98\x4b\x7b\xf3\xf7\x3d\x96\xa9\x9e\xf7\x3e\xc5\x9e\x39\xe0\xe1\x81\xb1\x96\xcb\x39\xc9\x65\x3a\x61\x23\xf3\x39\xfc\xeb\x65\x85\x7f\xf3\x0f\x56\xdb\xfd\xce\xcd\xd3\x21\xbf\x6d\xf9\x1c\xaa\xf1\xf1\xb1\xd0\x63\x9f\xb1\x9f\xdd\xbc\xc7\x09\x32\xcc\x74\xa1\x74\xbf\xf8\x76\x79\x15\xef\x95\xfc\xe1\x7d\x19\x62\x4c\x4c\x2d\x9b\xa8\x21\x55\x2c\x6f\x22\xc7\x24\x6d\xf0\x92\x9a\xe1\xc1\xe6\xe5\xe7\x17\x9e\x2f\x9b\x4e\x0a\x47\xbc\x5f\x0e\xb1\x41\x5b\x62\x65\x7d\x9a\xb3\x62\x1c\x6d\x7b\x4a\x63\xb7\xc0\x93\xe0\x3e\x83\xc1\x2b\xa8\xe6\xd5\x34\x1f\x45\x6a\x88\x83\x22\xac\xcf\x16\x96\xe5\x63\x8d\xcb\xd8\xb5\x3e\x14\x4c\xba\xeb\x0e\x3c\x21\x9b\xdd\x98\xad\x6b\xbf\xcd\x5e\x7b\x2c\xe1\x55\x8b\x77\xb9\xe8\xa5\xbc\xe1\x75\x59\xa9\xcf\xc3\x66\xe0\x79\xab\x1b\xa9\xbe\xc5\x94\xfd\x64\x79\x25\x00\xc5\x01\xd7\x1d\x7e\xcf\x4f\x3d\x89\x22\xce\xf9\xb4\x86\x96\x78\xd4\xdc\x69\xf1\xae\xe7\x9d\x95\x51\xd7\x80\x7f\x47\x78\x7f\x27\x2d\x75\x3d\xb0\x24\x0a\x3c\xe9\xe3\x45\x9e\x62\xb3\xc6\x78\xfd\x9e\xee\xac\x89\x76\x65\x42\x7c\x62\xf0\x08\x36\x36\x73\x6f\xa3\x43\x42\xdb\x6d\x5a\xc7\x53\x09\xb7\xd4\xf1\x15\xb2\x53\xfc\xda\x61\x23\xed\x21\x28\xcc\xd9\x98\x18\x52\x59\x9d\xd4\x8d\x64\x5e\x44\x0e\x2d\xb3\xec\x23\xc7\x9b\x9e\xad\xab\x29\xe4\x3c\x95\x29\xeb\xd4\x5a\x6c\x3d\x7a\x5f\x07\x77\x9a\x5d\x55\x0d\x5d\x54\x93\xad\xf1\xf9\xf3\xbd\x99\x91\x23\x27\x7f\x6f\x37\xa4\xd5\x8a\x56\xd1\x61\xd0\x3a\x2c\x6c\xf0\x9c\x49\x9a\x5f\x67\x42\xde\x37\x3f\x5b\xfa\xe7\xb5\x67\x30\xf4\x4b\xed\x70\x82\xb9\xe7\x87\x79\x37\x3d\x57\x37\x96\xdc\x58\x6c\x5d\xbc\x30\x1a\x51\xf2\x58\x31\x9c\xa4\xff\x94\x30\xc1\xda\xed\xb2\xf3\xe1\xce\x01\xda\xd1\x91\x28\x39\x7e\x65\x67\xee\xce\xf4\xcf\xd6\x3d\x59\xef\xba\xfd\xbf\xf0\x5f\xb1\x75\x4a\xa8\xad\x72\x46\x56\xd6\xa4\x3b\x5b\xae\x73\xf1\x9b\xfd\x06\x20\x5b\x85\x56\x25\xc0\xa5\x08\xa6\x2b\xe5\xd6\x3e\x1f\xdf\x4f\x6d\xfa\xee\xe4\x36\x4f\x91\x1e\x01\xf5\xa5\xb5\x59\x1b\xaf\x40\xf6\x9d\x02\x12\x08\x55\x7b\x16\x34\x50\x1e\x55\x6e\x3b\x46\xe7\x75\x4c\x17\x8b\xa6\xb9\x4b\xad\xc0\x74\x54\x12\x15\x3f\x1c\x2b\x6e\xd4\xe5\x32\xd0\x15\x9f\x68\x85\xfc\xbb\x89\xff\xa5\x66\x84\xe3\x93\xdf\x90\xae\x77\xe0\x56\x95\xba\x17\x9a\xa4\x6a\x89\x53\x25\xad\xc2\x8e\xd3\xd3\x7e\x87\x8a\x4e\x58\x2a\xd7\x1b\xce\x2d\x94\x7d\xcc\x8b\x02\x02\x84\x1e\x8c\xe9\x54\x0c\xd9\xb3\xfc\xdb\xd5\x2c\xea\x81\x26\xc5\xb8\x2e\xb3\xf6\xa0\xb5\x60\x83\x64\x5c\x0c\x0c\xb6\x24\xe6\x54\xaa\x6c\x79\x6c\x39\xcf\xb2\x6a\xd9\xb9\x3c\xb4\xed\x56\x7c\x68\x31\xbd\x21\x6d\xf1\xce\x11\x77\x3c\x9d\x8f\x10\x0a\x43\x5d\x99\x2b\x2d\xd3\x5e\x22\x3a\x79\x0e\xa7\xf7\xf0\xd8\x7d\xb6\x00\x71\x9b\x9a\x97\xb0\x2f\x57\xba\x4d\x31\x5b\xa1\x56\xbe\x54\x35\x9c\xc1\xc0\xe9\x8a\x1a\x55\x85\xe1\x83\xf3\xdb\xef\x78\x3f\xe6\xd8\x13\x07\xe3\x72\xeb\x04\x63\xb9\xa1\xb4\x75\x59\xd5\x1b\x2a\xd8\xf9\xea\x14\xd5\xce\x81\x8d\x21\x3c\x25\x80\xe8\x02\xc4\xa7\xaf\x65\x92\x87\xa5\xf0\x3f\xe7\xe6\x9e\x91\x32\x5b\xbf\xaf\x7e\x65\x0e\x88\x30\x9b\x23\x70\xa2\x61\xd7\x8e\x5e\x83\x88\xa7\xce\x67\x8e\x15\x39\x2d\x85\x37\xbc\x7c\xf7\x46\xe7\x35\x6a\x1d\xcd\x18\x73\x3e\xfa\xed\xb4\x5b\x3d\xd1\x83\xfd\x35\xfc\xff\xe8\x29\x0d\x56\x45\x5a\x77\xa1\xed\x66\x4e\xe7\x61\xf2\xb3\xd6\x9f\x9d\xa9\xaf\x7b\xf6\x4e\xe7\x16\x61\xfa\x6f\x7a\xea\x0e\xe2\x97\xba\xce\x39\xa5\x78\x88\xbb\x12\x8a\x3b\x40\x9f\xb4\x70\x65\x82\xd5\xa3\x4a\xdf\x2b\x0f\x36\xd3\xe1\xed\xc9\xb1\x65\x16\x86\x6a\xd0\xd4\x44\xd9\x03\xd0\x44\x85\x7a\x6c\x27\xe0\x8f\x88\x60\xe1\x91\x8f\xb2\xd9\x56\x60\xfd\xd0\xa4\xc0\x70\x2b\x49\x1a\x95\xef\xe5\x09\x2c\x07\x37\x4a\xcf\xc9\x8b\x0b\x4e\xf3\xdb\x05\x19\x93\x51\xad\x2f\x3a\x0f\xd0\x16\x90\xe4\x40\x39\x49\xaf\x25\x79\x84\x3b\x37\x34\x0c\x74\x1f\x08\xf7\x23\x75\x84\xef\xb4\x03\xeb\x3b\xa6\x1e\xd9\xbc\xff\x7c\x5e\x90\x70\x60\xa3\xf4\xac\x91\xeb\xa1\x41\xeb\x83\x76\xff\x9b\x43\x96\x03\x61\x12\xa2\x25\xe7\x09\x2d\xd4\x6a\x2b\x1c\xc5\x9b\xb7\x9f\x28\x80\x58\x04\x89\xc6\x1c\x2f\x96\xed\xfb\xca\x29\xa4\xb1\x8b\x74\xac\x9c\x87\xcc\xac\x51\x4d\x41\x95\x7f\xde\x14\xfe\x8b\x12\x61\x42\x46\x7c\x91\x50\x8c\x2f\x85\xcc\x11\x36\xca\xff\x99\xbb\x07\x29\xe8\x92\xe9\xb0\x4d\x36\x53\xa0\xda\x03\x71\x45\xb8\x79\x2d\x3e\xd8\x44\xf6\x25\xb4\x62\xa0\x15\xfa\xe2\xd5\x52\xeb\x9a\x1f\xdf\x5e\xb5\xab\x4a\xac\x5d\x2a\x36\x05\xa9\x43\x6f\xf1\x9b\x46\x48\xb4\xe4\x5b\x66\x22\x2e\xc8\x64\x1a\x93\x2c\xca\xcf\x92\x4a\x99\x66\x90\xcd\xad\x28\x36\x35\xd2\xae\x27\xb6\x45\x13\x4d\xee\x0f\xc0\xda\x3f\xb7\x35\x81\x9b\x4d\x53\x40\xd6\xb9\xcb\x1b\x40\xa9\x20\x1e\xe2\x79\x87\xb2\xef\xa6\x6d\x43\x89\xe5\xcb\x04\x3a\xa0\x8e\xe0\xeb\xd9\xad\xad\x44\xc8\x17\x53\x1b\x4e\x81\x59\xa5\x20\x88\x36\x20\xd6\x6e\xda\x09\xc1\xd4\xe1\x35\xbe\xa4\x5f\x1c\xb2\x56\x28\xa2\x87\x95\xc6\x5c\xb8\xf1\x5b\x27\xdc\xf7\xfa\x05\xe6\xe0\x9b\xca\xe0\x34\xdf\x99\x29\xa7\xe1\x39\x96\xa2\xba\xa5\xa5\xbc\xb4\xad\xf2\xcd\xb9\x3b\x05\x3b\x25\xf2\x4a\xd5\x1e\x41\x69\xed\x91\x32\xdf\x66\x9b\x8e\xef\x49\x89\xa8\x6a\x96\x2a\x5d\xe3\x05\xa4\xc2\x64\x57\x0b\x03\xff\xbf\x7f\x6f\x57\xca\x7c\x0e\x24\x00\xad\xc5\x5f\x2b\x6c\xdb\x1a\x9d\xa4\x8f\x29\x46\x38\xf4\x9c\x86\x05\xd4\xd0\x6f\xbe\x39\xf9\x1b\xbc\x24\x1b\xca\x79\xc1\x02\x65\x68\x17\x83\xbc\xb6\x7b\x77\x83\x6a\x41\x49\x88\x43\x0e\x49\xdf\x2e\xd8\xda\x93\x1c\xcb\x52\xf4\x41\xb2\xa0\x19\x7a\x51\xb3\x14\xd8\xb7\x60\x93\x0c\xd2\x90\x10\x6e\x07\xcc\x31\x17\x41\x67\x7a\x0a\x73\x4d\x3a\xa2\xef\x49\x42\xaa\xe4\x63\xbd\xa9\x17\x05\x3b\x59\xc5\x2e\x45\x87\xfc\x6f\x26\xe6\xe6\xfd\xe1\xc6\x52\xb9\x04\xe7\x05\x34\x61\xa2\x11\xbf\x60\x0a\x5d\x71\x5d\x5a\x27\x26\xee\xaf\x90\x37\x4f\x35\xf8\x3d\xa6\x41\x92\xfc\xb4\x1a\x4d\x17\xb6\xf6\xcf\x5d\x7e\x36\xff\xe7\x65\xc0\xcb\xc9\x20\x82\x79\x5b\x63\xef\x9a\xe6\xed\x2a\x86\xd7\x6f\x17\xbc\xee\x66\x60\xec\x4b\x09\xd7\x06\xe6\x74\x32\x6c\x69\x52\xfc\xc2\xf3\x4e\x05\xd3\x9c\x12\x8f\xba\xdb\xee\xca\x6f\xc9\xa3\xc4\x23\x42\x06\x94\xe8\xe0\xf8\x56\x86\x9e\x0b\xfe\xc7\xfc\x9b\x91\x63\x83\xb1\x51\x26\xb5\x34\x2f\x18\xd9\x6a\x53\xc8\x00\xc9\xec\x88\xc3\x15\xfb\x20\x31\xbd\x70\x65\x08\xd5\x97\xf2\x3c\xb4\xec\x7d\x8b\xd2\x6c\x86\xc1\xd7\xb2\xdb\x5a\xa3\x41\x20\x46\x80\x34\xa1\xf4\xa6\x05\x29\xf7\x3a\x3f\xcc\xba\x13\x0a\x6f\x8c\x33\x0b\x89\x77\xac\x58\x2a\x80\xba\xd9\xfc\xc1\xc8\x18\x1f\x3d\xd9\xe0\x76\xb6\x74\x03\xfa\x4d\xe2\xc6\x6e\xaa\x9f\xbd\xf0\x06\xde\xa1\x2f\xad\x7c\xd9\x46\xe9\xd5\x02\xb3\xc5\xf6\xe4\xcc\x73\xfe\x7b\x41\x7d\x20\x16\xe2\xa6\x03\xf3\x3b\xfb\x22\xc6\x0d\x10\x1b\x54\x17\x32\x99\x53\xdd\xae\x85\xc1\x18\x11\xda\x6c\x63\x76\x2e\xc8\xec\x15\xea\x8d\x75\xe8\xda\x46\xa7\x3a\x05\xe9\x05\x2b\x13\x0a\x87\xe4\xbe\x2f\x92\x14\x41\xe8\xf5\xdc\xd6\x4e\x22\xfc\xb3\x80\x62\x72\x31\x06\x75\x72\x7c\xbe\xce\xd0\x46\x57\xea\x5f\xd5\x8b\x56\x9f\xbd\x70\x4e\x8b\xd5\x4e\x5d\x98\xd2\x98\x2d\x76\x21\x93\x04\x74\xe7\x42\x00\xac\xe4\x9b\x50\xe6\x37\x16\x45\x38\x21\x30\x70\x32\xab\x3a\xaa\xd5\x45\xb8\x82\x76\xd8\x38\x80\xe6\x8c\x25\x57\x3c\x60\x76\x1f\x49\x7a\xd6\x0c\x6e\x0e\xb8\xe0\x41\x5e\xd1\x72\x96\x1d\xcd\xd2\x9e\xc6\x23\x47\xd0\x74\x63\x3d\x64\x6d\xa2\xef\xce\x82\xd0\xd7\x3c\x45\xc8\xfb\xab\xb1\x3f\xa6\xa9\x4d\x47\x09\xa2\xc1\xcf\x5b\xd3\xbe\xb7\xf0\x52\xcf\x01\x8c\x98\x92\xb4\xe3\x9b\x8a\x4f\x4a\x23\xae\x1f\x60\x53\x52\x1e\x79\x2c\xf6\xd3\x15\xdd\x7a\xb3\xdd\x54\xe8\x1f\xc3\x88\x5e\xdb\x44\xdb\xc7\xcc\x5d\xff\x32\xad\x6b\x82\x32\x27\xf1\xa8\x35\xdc\x6d\x1d\xb8\x48\xab\x6b\xd8\x96\xe3\xcd\xb9\x92\xdd\x89\x4b\xb3\x37\x68\x8c\x21\x42\xb7\x86\xa9\xcb\xe9\xb6\x84\xda\x35\xea\x0c\xe4\x7f\xd4\xb9\x5d\x73\xfc\x16\x86\x19\xfc\xf3\x9f\xfb\x07\x9e\x79\x14\xa6\x86\x83\x02\x2f\xfb\xce\x3e\xe9\x02\x9d\xa8\x3a\x88\xd7\x65\xad\xe3\xc4\x54\x57\x4c\x83\x3b\xb3\x48\xb2\x7d\x15\xdf\x23\x6d\x8d\x3a\xf0\xd6\xda\x69\x91\xa5\x99\xeb\x8d\xb0\x1c\x11\x1f\x93\xd2\xb4\xa0\x0c\x14\x87\xdc\x07\x8f\xff\x66\xde\xd6\x92\x64\x5d\x96\xa4\x07\x92\x11\x66\x6a\x8b\x46\xa4\x54\x77\x4c\x93\x3b\xab\x50\x2a\xb8\xc7\xb3\xab\xbf\xfe\x44\xb9\xbb\x2f\x0f\x54\x3a\x71\x85\xc2\x0a\xf3\x9e\x8d\xa2\x99\xa0\xf6\xd2\xd3\xf2\x7a\x51\xe2\xce\x92\x15\x6f\x67\xfb\x93\x4c\xbc\xd0\x5c\x4d\xd2\xab\x09\x4e\x8e\x30\xdb\xf5\x07\x9f\x60\xbc\x79\x63\xaa\xbb\xbf\xa4\x5a\x48\xf7\xd8\xb4\x8d\x24\x93\xb2\x84\x04\x17\x3f\xb6\xf3\xe7\x65\xde\xc9\xad\x82\x63\xfc\x9c\xf6\x47\xa1\xa3\xd2\x94\x83\xa0\x81\x63\xd3\x56\x3f\xbb\x1a\x5e\x04\x2a\x5a\xd3\x9a\xc4\x84\x79\x3b\x72\x77\xbf\x66\xc6\x5b\xa7\xf4\xcf\xa8\xe6\x55\xc0\xc5\x6b\x5a\x92\x98\x08\x6f\x82\xb9\xf3\x35\xc4\x2f\x31\x82\xc3\x54\x4d\x72\x57\x22\x31\x9c\x89\xdc\xe3\xef\x99\x95\xc1\x82\xf4\x6a\x6e\x04\x44\x91\xde\xbe\x3b\xdf\x0b\x9d\xdc\xfa\x7a\x13\x19\x88\xe0\xd1\xc8\xbb\x96\xc8\x17\x65\xea\xd6\xb9\xb2\xb2\xfb\x65\xca\x39\xa5\x9a\xe4\xef\xa2\xd9\x50\x54\x4c\x35\x9f\x69\x9e\x55\x28\xe7\x95\x5d\x77\xd4\x67\xba\x02\x33\xdc\xa9\x3c\x9c\x7d\xa3\x13\x21\x12\xbb\xf0\x1b\x1d\xa9\x3c\x15\x0f\x67\xdd\xe8\x72\x14\x89\x1c\x9e\x84\x89\xbc\x74\x80\xae\x20\x86\x41\x6b\x80\xa5\x55\xe6\x53\xe6\xb5\x0c\x8a\x42\xf7\xf1\x07\xad\x84\xb0\x82\xaa\x88\xd6\x80\xe5\x28\x5f\x40\xe6\x69\x64\x10\xe4\x2d\x44\xbd\xf8\xa4\x63\x58\x64\x58\x67\x29\x62\x6b\x74\x41\x36\xa0\x1c\x46\x49\x56\x10\xcb\x01\x0b\x70\x9a\x62\x16\x60\x25\x94\x2b\xda\x4f\xba\xb3\x45\xb9\x5e\xa1\xc2\xbf\x95\x05\xdb\x9e\xe1\x9a\x91\x9e\x8a\x6c\xc7\x3a\x63\x47\x49\xae\x19\x19\x54\x64\x10\xeb\xfa\xc5\x3e\x58\x6f\xbe\x6b\x3a\x36\x45\x12\x3c\xb2\x33\xb7\x93\xac\x4f\xf5\x19\xc8\xe4\x53\xee\x1a\xa2\x44\xd5\x54\x4f\xc6\x93\xee\x3d\x88\x66\xa8\xf9\xed\x71\x44\x1f\x1e\x45\x6e\x80\x44\x7e\xef\xfe\xde\xe3\xba\xf9\x69\x35\x11\xff\x78\x34\xbe\xd9\x62\x43\x79\xb5\x13\xeb\x06\xc7\x8f\x8c\x2f\xac\xe2\xce\xab\x4f\x5c\xa2\x1b\x54\x42\x73\xb3\x53\x4e\x21\xca\xb9\xf5\x46\x93\xba\x24\x07\x36\x93\x9a\x5d\x7f\xcd\xb7\x06\x25\x18\xb3\x16\x3a\x06\xc2\xbc\x0c\xee\x3d\x64\x8d\x68\xf4\x6e\x68\xe2\x12\x8b\xc7\x4a\xfa\x74\xd7\xf6\x55\xea\xcd\xc3\xeb\x75\x77\x2f\xb3\xe0\x18\x5c\xd1\xf5\xbf\x78\x77\x6c\x17\xb8\x4a\x1d\x69\x31\x2f\xdc\x75\xb8\x02\xf3\x7d\x9f\x03\x34\xf9\xa9\x9d\xf6\x1d\xe9\x99\xa9\x2c\x51\x7e\x0e\x68\x25\x77\xfa\x3a\xf2\xe2\x52\x03\x37\xd0\x39\x1d\x12\xab\x4c\x38\xc3\x94\xdd\xef\xaf\x54\x48\x7d\x21\xf1\x26\xfd\xd4\x8c\x45\x8b\xba\x87\x83\x6e\x89\x42\x18\xdb\x9d\xa8\xf1\x15\x52\x59\x7c\x84\xe4\xdc\xce\x08\x79\x37\x14\x4a\xac\x5a\xc0\xea\xac\x9a\xc8\x6a\xa1\xa3\x8d\x01\x42\xc6\x9d\xae\x2a\x53\x82\xea\x21\xa9\x6f\x53\xfa\xb5\x55\x6d\x87\x3a\x0e\xd5\xbb\x65\x87\xc1\xcd\x59\x97\xfb\x5a\x2f\x12\x55\xba\x96\xf8\x67\xed\xe6\xfe\xbf\x90\x28\x45\x9b\x18\xb9\x79\xfc\x21\x5d\x86\x68\x73\x55\x7d\x55\x0a\xa5\x85\x22\xc9\x29\x86\x8d\x21\x06\x00\x94\xf1\x10\x27\xa9\x56\x63\xd3\x86\x02\xbb\x42\x3c\xc5\xf5\xc1\x40\x8c\x39\x01\xc9\x31\x9b\xb3\x75\xe9\x76\x19\xfe\x2d\x97\x10\x49\xb8\x4b\x1b\x18\xf6\x19\x48\xe3\xe5\x94\x5b\x53\x91\x4e\x75\xb0\x53\x0f\xaa\x9c\x07\x3b\x49\x75\x1a\xbb\x36\xa7\x96\xed\xcb\x78\xb6\xe0\xb4\x47\x1d\x1f\x6c\x60\xd8\x62\xfd\xd5\xc7\x70\x54\xdc\xe5\x3f\xc1\xfc\xe0\xcd\x97\x1d\xc5\x6b\x63\x83\xcd\xca\xa0\x31\xab\x8a\xf3\x3a\x65\x9b\x62\x46\x60\xc8\x34\x2b\xbf\x26\x65\xc5\x5d\xdc\xc0\xf1\xdd\x9d\x5d\x38\x24\x4b\x85\xa2\x6c\xa7\x87\xd3\x99\x37\x98\x4a\x76\x89\x86\x9e\x6a\xe5\xf9\xc1\xba\xd4\x90\x04\xca\x27\x41\xdf\xd8\xfe\x1c\xe3\xe4\xf8\x53\x4a\xf8\x6c\x80\x09\x10\xa4\xf2\xe2\xd2\xb8\xf7\x93\xa6\x03\xc5\xc5\x37\x42\x4e\x90\xae\x7a\xc4\xe2\x1b\xce\xbd\x74\x2b\x38\x7a\x82\xec\x72\x42\x66\x05\xd3\xdf\x5e\x93\x02\x45\xf7\x50\x5c\xf6\xd4\x59\x45\xd3\xab\x96\x62\xa2\x08\x04\x1e\xe7\x8e\x17\x9f\x80\xe7\xb3\x5f\x46\xf0\x42\xbc\x95\xb8\xb2\x65\xd5\x65\x9a\x9e\xd6\xb6\xba\xac\x0d\xf5\x35\xcd\x7d\x8d\x59\xd2\xb9\xf3\x1d\x13\xa5\x13\x5b\x59\x1d\x71\x04\x7c\x49\x9e\xf8\x4a\x04\xcf\xb4\x8e\xa6\x30\x05\xc2\x70\x0f\x79\x24\x29\x89\x3e\x42\xa9\x0a\x85\x5b\x4c\xfd\x34\x28\xf2\xb4\xab\x79\x5b\xd2\x85\x32\x1f\x8c\x55\x68\x8b\x92\x5a\x72\x59\x49\xd7\xa6\x2d\xf4\x48\xd8\x0a\xb4\xa5\xc0\x71\xf0\x46\x35\xc4\xc0\xc2\xc0\xc0\x79\x5e\x37\x63\x1d\x70\x68\x05\x3b\x6a\x3f\xb3\xa8\x4d\x05\xd1\xa0\xd8\x47\x4b\x70\xec\x85\x73\x0f\xe2\x2c\x0a\x96\x63\x3b\xfe\x28\xe9\x7a\x8b\xec\x77\x0b\xbb\x95\xa0\xad\x39\x77\x39\x5f\xd9\x76\xc9\x51\x33\x02\xce\x94\x58\x55\x6b\x9e\x51\x35\x9f\x89\x5f\x7b\x33\x86\x23\xd4\x78\xb2\xa2\xda\xd1\x3b\xa3\x9a\x82\xa0\x18\xd1\x97\x6a\xd5\x75\x59\x63\x19\xf4\x08\xeb\x3e\xc3\x29\x2e\xba\xf7\x8b\x3e\xa3\xf7\xeb\x81\x17\x52\x2d\x80\x19\x6b\xc1\x21\x0d\x44\xcb\x11\xf2\x4c\xed\xb0\xf3\x62\xca\x85\xf5\xc4\x19\xa3\x4b\x01\xe3\x96\x8a\x17\x4e\x50\xb2\x25\x18\xe3\xdd\x29\xfe\x54\x72\xe8\x1d\xc7\xaf\xc6\xa6\xff\x22\xdd\x98\xe5\x83\x13\x2c\x5c\x16\x4a\x9f\xa9\xa8\x5e\x84\x0a\x73\x49\x88\x4a\x0a\xd1\xd8\xcc\x22\x2a\x37\x49\x80\xd6\x89\x4c\x45\x94\x3e\x0b\xcd\x4c\xe9\x47\x8b\xea\xc4\xa8\xc0\x4d\xd2\x2b\xa5\x66\x83\x01\x41\x88\xd2\x4d\x12\xa2\x75\xe2\xb3\x2c\xfa\xcd\x1a\x3e\x8d\xb9\x82\xa4\xc5\xba\xd2\x00\x21\x0f\xca\x02\xb9\xa9\x9c\x97\x7d\x00\x50\x40\xa3\xb2\xe6\x8d\x49\xee\x2c\xc6\x19\x94\xa7\x0b\x1d\x10\xf0\x80\x8f\x31\xa9\x5c\xf6\xe4\x43\x80\x90\x1c\x33\xdb\x63\xd9\xa5\x88\xf6\x67\x1d\x79\x03\x82\x34\xd2\xfa\x9f\x46\xd6\xed\x9a\x3d\x6a\x80\x8d\x0c\x7a\x7f\xcb\x16\x6e\x61\x31\x37\xf2\xb3\xa8\xe6\xe5\x74\x9b\x67\x9c\x4f\x38\xa4\xba\x4b\x3c\xbf\x81\x0d\x1a\x8b\x7d\x90\x4e\x2b\x14\x7d\x3e\x3d\xfe\xbf\x01\x08\xba\xdd\x25\xba\xcd\xca\x43\x96\xce\xba\x5e\xb3\x15\xa2\x6c\x42\x43\x9e\xfc\xb6\xe1\x3d\x2f\x8b\xee\x3e\xc1\x27\x7d\x3f\x4b\xab\x3e\x30\x52\xb4\xb3\x78\x1b\x97\x9e\x0a\x14\xe3\x88\x72\x28\xd5\x3d\x1d\xc6\x4a\xaa\xff\xbd\x78\xba\xe4\xd3\xfb\x17\x23\x2c\xe3\xe1\x30\x8e\xff\xdd\x8b\xb8\xc6\x4f\xc7\xc0\xe6\xe6\x84\xd6\xd9\xdb\x8d\x0f\xea\xee\x05\xad\x7b\x77\x1f\xdf\xa1\x16\xbd\x77\xe7\xe9\xdd\x48\x6b\x1c\xfc\x84\xa7\x45\x09\xb9\x48\x9e\x17\x8c\x5a\x4a\xc8\x43\x89\x94\x1b\xb1\xef\x9d\xa5\x7a\x50\xa1\x70\x45\xaa\x95\x1a\x24\x80\x98\x3b\xa0\x0c\xd8\xec\x69\x73\x71\x5c\xc4\x49\x61\xbd\x13\x12\xe1\xf9\xda\xa8\x5d\x24\xf2\x66\x57\x1c\x75\xb3\x93\xd3\xb0\xdb\x24\xc3\xf6\x23\x9b\xcc\x6f\xec\x45\xdc\xeb\xbe\x98\x51\xcc\x4d\x7f\xe9\x2f\xeb\x0e\xe3\x8a\x6b\x75\xef\x44\xd5\x35\x68\xce\x44\x1f\x0f\x6c\x3e\x81\x97\x14\x8b\xf9\xc5\xc0\x89\xfd\x91\xcc\xab\x2f\x3b\x1c\xb7\xb6\x3a\xea\x10\x5b\x4c\x7a\x19\x3f\x02\x10\x89\x56\x0a\xb0\x1b\xd0\x0d\x98\x88\x1a\x89\x22\x0a\x46\x53\x74\xbb\xa3\x04\x61\x11\xf1\xbf\x34\x36\x28\x3a\x93\x8a\xdb\x8c\x63\x68\x37\xe1\xac\x05\x0f\xdc\x6b\x8c\xc8\xcd\x91\xe5\x37\x45\x5a\x07\xfa\x51\xa9\xb9\xe4\x37\x6e\x3c\x5b\xe7\x22\x7a\xe5\xcc\x3f\x76\x59\x37\x56\x1c\x61\x2d\x84\x36\x30\x00\x72\x05\x82\x86\xa9\x80\x3c\x98\x8d\x02\xcc\x72\x8c\xfe\x05\xeb\x6d\xb6\x2e\xff\x89\x33\x17\xd4\xec\xd9\x37\xe7\xa6\x6f\xe4\x3f\x97\x7d\x79\xf4\xb2\x78\xff\xa2\xde\x09\x50\x48\x7f\xc3\x98\x12\x66\x96\xa4\x21\x17\x25\x8d\x53\x71\x92\x9a\x43\x22\xae\xa9\x8e\x80\xe4\x91\x8d\x25\xbd\x28\x69\x9a\x8a\x13\xd7\x2a\xc1\x38\x6a\xce\x5a\x99\x5c\xc1\xb1\x98\xd9\x32\xa9\xc8\x6c\xab\x04\x2a\x7e\x0d\xb7\x8c\x70\x6c\x0a\x4e\x76\x88\xd8\x92\x22\xaa\xb8\x3d\x2c\x3e\xfe\x6c\xdd\x85\xd7\xd3\xc7\x77\xe8\xcd\x37\x85\x00\xf2\xcf\x7e\x46\x15\x37\xd6\x11\xc9\xe2\x87\xf3\x0e\xab\x7a\x42\xb7\x99\xd3\xd3\x88\x29\x40\x53\x3d\x11\x47\x5e\xa2\x0b\x37\xd9\x8a\x1d\xb3\x80\xe0\xf4\x1a\xb1\xfc\x39\xa1\xa3\x00\x86\xce\x9d\x71\x70\x76\x67\x01\x8b\x18\x75\x03\x69\x1d\x81\xcb\xe4\xce\x72\x71\x71\xf8\x13\xff\xbb\xb3\xb5\x7b\x4b\xf7\x1d\xf4\x9f\xdb\xcb\xb3\xf7\xbf\x65\xf0\x18\x82\xbe\xfb\x6c\x3b\xfa\xe7\x89\x82\xca\xdd\x00\xc1\x89\xc7\xf7\x0c\x37\x41\x22\xf4\xc6\x70\x98\x88\xc7\xdc\x41\xb7\x5a\x3b\xe9\x79\x66\x4e\x44\x7b\x01\xf6\x5b\xd4\xca\xa0\xb7\x92\xfe\xc3\xf6\x3d\xfb\xfa\x1f\xff\xf0\x39\x92\xe6\xfd\x6c\x4b\xe8\x6e\x31\x74\x61\x30\xed\x1b\xb2\x14\xc5\x74\xbc\x01\x0e\x92\x3d\x79\xee\xf9\xed\xb3\x43\xe0\xf0\x53\x07\xf2\xf0\xe7\x5f\x07\xe9\x07\xee\xb8\x5c\xea\x3a\x9b\x03\xcc\x10\x6b\xac\xa6\x8e\x7c\x7f\xb8\x3b\x0f\xaf\x72\x08\xa4\x48\x96\x87\x5f\x80\xf4\x75\x38\x0e\x93\x59\xbf\xfc\x8a\xfc\xec\x99\x90\xb4\x16\xe2\xea\xf1\x62\x28\x9a\x74\xeb\xdf\x82\x3f\xdd\x4d\xab\xe5\x60\x37\xaf\xf4\xb1\x04\x13\x8f\x3b\x11\x48\xe3\xba\x38\x7e\xfa\xae\x35\xf9\x07\x04\xec\x96\xab\xce\xc6\x91\xd8\x69\xa0\x78\x13\x46\x6e\xba\xdd\xdc\x75\x26\x45\x1e\x39\x29\xa9\x13\x51\x77\x2d\xe5\x6a\x0d\x84\x35\x8d\x2d\x50\x99\x04\x2e\x22\x76\x62\x90\xcd\x98\x18\x42\x17\x54\xf8\x3d\x0f\x49\x7c\xe9\xa0\x88\xee\xf2\x89\x8f\x76\xad\x2f\x01\x1e\xd8\xf5\x6f\x49\x9f\x06\x4a\x1a\x31\x2d\x9e\xdb\x03\xed\x17\x12\x4a\x96\x29\xae\x99\xee\x8d\x05\x1a\xb9\x76\x2f\xb3\x0b\x63\x6d\x32\xd1\x3b\x6d\xf9\x8d\x7c\x13\x86\x79\x88\xf8\x37\x06\xb7\x61\xb2\xa2\xab\x63\xba\xc5\x02\x43\xd3\xbe\xf6\xd8\xf7\xa3\x2f\x74\xd9\x74\x95\x2f\x9f\xa8\xc7\xec\x48\xe3\xaa\xbb\x18\x5b\xad\x12\x3b\x6f\x25\xb7\x6c\xa5\xcc\x00\x72\x1f\xc1\x61\xb8\xa9\xfb\x5c\x72\x69\xcd\x49\x71\x65\xc8\x38\xbc\x84\xb1\x6c\x92\x5f\x53\x50\x89\x84\x25\xc8\x54\x4a\xaa\xc8\x16\x04\xdd\x65\x28\xaa\x93\x5a\x89\x00\x56\xf5\x4a\xd6\x4a\x00\xe7\x5f\xf5\x86\x04\xd3\x7f\x69\xf7\xf4\xe6\xf4\x4a\xf6\xd7\x1f\x76\x49\x1c\x6d\x7f\x93\x22\x53\xfc\x66\xec\x4a\x31\xa9\xa3\xfa\xe9\xae\x4f\x98\x65\x9d\xb9\xa4\x95\x5d\x4a\x0e\x75\x63\x67\x78\xdf\xc9\x37\x4f\xd2\xbd\xf0\x59\xb1\xdd\x39\xdf\x56\x14\x23\x6f\x86\xf0\xdc\xe7\xa6\x2f\xb1\xa9\x9f\x4a\x39\xbe\x30\xfc\x71\xf1\xd5\x0b\x69\x01\x72\x53\x7c\xdf\x7e\x24\x24\x4a\xde\x56\xbc\x2b\xa0\x73\x33\xce\xa4\xd5\x9f\xbe\x49\x1f\x20\x3d\x22\x93\xf5\x5c\xc1\x68\x80\x2e\x25\xbb\x73\x5c\xec\x6a\x01\x30\xdd\xa7\x7e\x27\xc4\x3c\xf5\x69\x5e\x0e\x68\x0a\xbe\x75\xd4\x8f\xc5\x4a\x89\xb7\x6b\xfb\x2e\x67\x94\xb5\x79\x40\xdd\x28\x71\x46\x5a\xab\x20\xae\xe9\xbf\x9c\xa9\x6c\xbd\xe2\xa9\x1d\x45\x66\xa5\x1f\x01\x42\x76\x97\x36\x50\xaa\x34\x18\xe9\xaf\x0e\x66\x75\x01\x03\x40\x04\x6a\x82\x21\x95\xd1\x50\x5a\xb2\x99\xcf\xea\x06\xb2\x0d\x63\xb1\x24\x58\x8f\xa8\xde\x54\xfc\x78\x91\x39\x5c\xf6\x7e\xe6\x31\x41\x75\x33\xb7\x79\x1b\x65\x16\x28\xee\x37\x53\xc6\x3b\xcd\xbd\x93\xe9\xaa\xb6\x9b\xb9\x2d\xdb\x29\x73\x40\xf1\x4f\x00\x60\x46\xec\x46\x8a\x23\x32\xd4\x24\x39\xc3\x25\xf8\x6e\x64\x00\x41\x76\xc3\x25\x95\xf2\x39\xb2\xf1\x18\x2e\x21\xf4\x60\x60\x7a\xc9\xf1\x2f\x46\x35\x5d\x0b\x4c\x60\x86\x51\xe9\x31\xae\x2d\x8a\x26\x96\xa9\xac\xb9\x8a\xc5\xd0\xc7\x86\xa0\x9b\x05\xf7\xa7\xa9\x96\x57\xd1\x78\x0e\x97\x08\x9d\x70\x58\x71\xdf\x71\x97\x12\xc5\x71\xfb\xc8\x6e\xc5\x58\xac\x37\x65\x5f\x90\xd2\xa9\x6f\xf3\xe5\xd9\x7a\xfa\x5c\x53\xf4\xcc\xa2\x19\x46\x8d\xcf\xbe\x61\x21\x6b\xc5\xc8\x99\xf0\x63\xaa\x35\x87\x65\x4f\xb8\x1b\x44\xa6\xdf\xa7\xb8\x94\x64\x60\xbd\xc9\x7b\x42\xcb\x3c\x70\xa7\x37\xdf\xde\x3d\x64\xdf\x47\x66\xf8\xcf\x50\xd7\xd2\x19\xc3\x0b\x05\x2b\x7a\x5e\x71\x28\xbb\x38\x51\xc8\x71\x25\x7c\xce\xf7\x43\x49\x2f\x6d\xbd\xf6\x09\x4d\x9a\xf6\xc8\x80\x27\x86\x41\xc0\x49\xfd\xee\x4e\xd1\xb4\x94\x13\x9a\x91\x4c\x4a\xc8\x53\x18\x6e\xcc\x07\x10\x48\x52\xd2\x10\x89\x34\x34\x60\x6a\x31\x24\x04\xc5\x80\x92\x7d\xc9\x9e\x84\x2f\x12\xff\x87\x95\x0e\x3f\x86\xe5\x0f\x43\x2f\x68\xf0\x52\xf1\xdc\x13\x93\xc1\xae\x3b\x7d\x17\x7b\x2e\xde\x5d\x3b\xe2\x69\xf1\xd4\xba\xa9\x3f\x90\x45\x4f\x3e\x0f\xda\x28\xc1\x8d\x66\xfb\x7f\x37\xfe\xda\x68\x53\x17\xaf\x02\x53\xf0\xb5\x35\x44\xc2\xb2\x93\xdf\x87\x56\xb6\x1e\xf9\x60\x08\xbf\x7f\x5e\x3e\x79\xb0\xcd\x15\xaa\xcf\xbb\x55\xdf\xec\x16\x41\x99\xf5\xf3\x74\xb8\x14\xad\x78\x93\x59\x6c\xcc\x55\xb0\x1c\x82\x53\xd6\xdf\x31\x72\x3a\xad\x94\xf3\xc4\xfa\x0f\x9b\x58\x35\x79\xc1\x37\x7b\xf3\x9d\x8f\xbe\x4a\x83\x13\xfa\xb6\x25\x11\xb2\xd6\x77\xe0\x76\xac\x83\x64\x68\x15\xe1\xc0\xed\xb0\xcb\x70\x70\x98\xfa\xf0\xb1\x6e\xef\x9a\x8d\x15\x9c\x05\x93\xc8\x27\x7e\xe0\x53\xa8\x41\x4c\x43\xc5\x82\x6c\x2d\x88\x16\x33\xd2\xce\x9b\x92\x32\xfd\x4f\xb1\xe5\xf9\xc0\x60\x1e\x8e\x15\xb5\x44\x06\x82\x92\xcc\xc5\xf7\x13\xc0\xf7\xf7\xd6\x7a\x5a\x12\xd7\x1b\xb9\x3b\x5f\xd4\x8b\x81\x32\xc9\xe0\xea\x28\x40\x64\x1e\x94\x42\xe9\x68\x75\xee\xa4\xa7\xf8\xf6\xd1\x95\x2e\xa4\x37\x8f\x87\xb3\xd9\x51\xee\xd9\xff\x52\xd8\x0a\x90\x90\xaf\xf0\x9a\xfb\x7b\xf3\x0e\x31\xe9\xce\x3d\x54\xb5\xcb\x36\x18\x93\xad\xb5\xb4\x09\xa3\x49\x4c\x96\x39\xb9\xf2\x6f\x37\xdf\xc0\xd7\x69\xe6\x9c\xfe\x58\xec\xca\xd9\x4d\x33\x9b\x7e\x2e\xff\x52\x86\xac\xf3\xf8\xf7\xeb\x9a\x3f\xa2\xce\x1d\x80\x3c\xc0\xa2\xae\x3b\x0b\xbf\x88\x5f\x53\xaa\x32\x15\x85\xe3\x62\x61\xb9\x6c\x84\x9e\xa5\xde\x2e\x2f\x98\x54\xf2\x72\x77\xb2\x54\x79\xd6\x9e\xd8\x94\x77\xc6\x89\x62\xc8\x25\x30\x11\x96\xd8\x24\xb0\x79\x78\xf3\x11\x27\x9c\x4f\x34\xdd\x52\xc2\x63\x43\x9a\x46\xe6\x4d\x33\x81\x71\xa2\xcc\x82\xb6\x2f\xcd\x02\xb5\x87\xa7\x60\x7c\x9b\x94\xec\x88\x70\x24\x83\x01\x8e\x35\x15\x1c\x50\x30\xc3\xd3\x40\x59\x07\x70\x12\x53\x60\x9f\x2c\xf9\x74\x60\xe7\x4a\xda\x38\xe6\xa6\x93\xd3\x7c\xee\xee\x87\x9e\xa2\xf4\x42\xa1\xde\x4a\x97\x70\x4c\x78\x59\x96\x99\xcd\xc1\x9a\xc8\x68\x56\x1c\x29\x70\x09\xd2\xa8\xfc\x87\x24\xbe\x30\x32\x3b\x04\x26\xac\xca\xc2\x64\x5a\xe7\x3e\xf9\xde\x89\x0f\x94\xe8\x71\x5e\x91\xd7\xd8\xdb\x91\xbb\x8f\x96\xe9\xd9\x4f\x9b\x26\xd0\x5e\xaf\x08\xe7\x95\xe8\xcd\x92\xf3\x9c\x4f\x1a\x31\x0b\x27\x17\xec\x6c\x70\x8d\xd3\x53\x73\x9d\xa0\xd8\x09\x75\xbd\x9e\xb5\xe6\x6f\x91\x31\x99\x46\x37\x24\xa3\x3f\xae\xa9\x9a\x34\x43\x32\x9d\x16\xa3\xf9\x7f\xc1\x90\xa4\xe9\xbb\x7f\x38\x91\xcf\x5f\x68\x76\x72\x5a\xbf\x70\xc7\x99\x7c\x6f\x61\x9d\x61\xef\x89\x74\x60\x38\xbb\x10\x86\xea\xe3\x52\xfe\xad\xe5\xeb\x7d\x5b\xa5\xdc\xb0\x64\x84\x41\x07\x76\x35\x15\xed\xd7\xb2\xca\xa7\x60\x59\xb7\xfa\x2c\x20\x31\x1c\x29\xd0\xee\xdd\xa2\xa5\xee\xc4\x40\x6b\x97\x2b\x48\x61\xf5\xfe\x74\x20\xdd\x4d\x00\xa0\x14\x01\x07\x25\x61\x33\x1d\x6c\x76\x86\x95\x86\xe2\xe3\xc2\xe4\x5a\x0f\xab\xdb\xe1\xac\xa7\xc2\x08\x65\xa7\x93\x38\xcf\xce\x3c\xcf\x1e\x47\x6e\x3d\x0d\x86\x1b\x68\xce\x5c\xe8\xe5\x5d\x5e\x91\x8d\x73\xc8\x65\x1a\x47\xc1\x99\x22\x9c\x5d\xea\x6b\x2f\x8a\x7b\xba\xa4\x13\x1d\x1b\x7e\x77\xcc\xd7\xcb\xe9\x56\xb6\xe3\xcd\x16\x79\xf3\xee\x56\xb2\x9d\xfc\xb3\xd6\x3f\xbc\xeb\xdd\xd7\x34\x72\x7f\xb7\xce\x7f\xf9\xe4\xde\xa9\x5a\x88\xee\x4d\x16\xd6\x64\x22\x36\xf0\x68\x18\x67\x67\xe9\xce\xab\x3b\xf9\x10\x95\xe4\x8f\x73\x8a\xbf\xce\xae\x1c\x73\x23\xf7\x09\x77\xbc\x1f\xca\xb0\x9c\x00\x53\xa0\xac\x35\x6b\x5b\xd4\x41\xa4\x52\xb3\xa5\x91\x6d\x53\xd6\xe0\xdc\x4a\x91\x27\xe5\xb2\xd7\xd7\x20\xd4\xdd\xa3\x93\xf6\xa1\x30\x0c\x65\xfa\xae\x69\x9a\xc1\x7e\xe9\xc4\x5d\x46\x11\x9c\x24\x94\xcb\x31\xb5\xfe\x4b\xa7\x2a\x75\xc5\x34\xad\x01\x1f\x50\x28\x99\x65\x76\xb4\x9e\x8e\x18\x5b\xe8\x6e\x07\xa7\xcd\x2e\x6e\x00\xa6\xdb\xa5\xc7\xa4\xc2\xed\x33\x18\x02\xe9\x89\x73\x02\x62\x50\x61\xef\xac\x08\xd9\x87\xfe\x08\xc1\x5a\x9c\x4e\x3b\x78\x37\xbd\xf6\x99\x1d\x2a\x70\x68\x34\xa8\x54\x79\x0b\x9e\x27\xb3\x20\x05\xc7\xe3\x94\xd7\x61\x41\xb0\x1e\xeb\x92\x73\x3c\x0a\xc8\x58\xf2\x7c\x76\xb8\x4f\x21\x65\xb8\x2d\xb2\x8a\x2c\xad\x2e\x92\x65\x91\x15\xf2\xc8\xb0\x37\x81\x2f\x95\xcc\x7b\x63\x00\xd1\x80\x82\x48\xea\xa0\x6b\xf9\x3c\x36\x93\xc6\xef\x71\x2e\x7e\xff\xdd\xb6\x88\x9c\x78\x80\x4e\x05\x9d\xef\x25\x3b\x72\xfb\xd6\x6f\xaa\xc6\x32\x2b\xec\xb6\x7a\x36\x02\x37\xd0\x1d\x4e\x56\x87\x4b\xdc\xa4\x3a\x5c\x22\x9a\x11\x14\xae\xea\xdf\xf5\x9f\x47\xcf\x9d\x18\x0a\x08\x4a\xb0\xd3\x77\xb4\xfb\x42\x54\x48\x5c\xc4\xb1\x96\x8d\xa3\x1b\xc1\xde\x2d\xfd\x1f\x3e\xbf\x4f\xad\x79\xe4\x9a\x05\x70\xe1\x4c\x1a\x15\xca\x5c\x05\xc7\x53\xa9\xaf\x98\x44\xdb\x52\x69\x70\x3a\xe7\x15\xae\x0b\x85\x40\x21\xcf\xbb\xb8\xfd\xec\xec\x42\x5c\xe6\x49\x9a\x2c\x74\x7a\xc6\xea\xbc\x7b\xfa\xcd\x5e\x24\xe3\xa6\xab\xa3\x3d\x8c\x8d\x28\xba\x86\xe2\x70\x31\xb3\x42\x4f\x57\xae\xb2\x95\x60\x36\xf3\xf6\xef\x52\xb2\x5d\xc2\xd3\xd6\x3f\x1c\xe5\x74\x7a\x29\xee\x77\xeb\x5e\x13\x67\x5b\xf0\xdc\x8b\xce\xf4\x75\xff\xe8\xa1\x10\x53\x2e\xfc\x4c\x72\x1a\x78\xfe\x65\x17\x62\xab\xd2\x43\xc0\x9d\x73\x81\x2c\xf3\x35\xb0\x39\xdb\x22\x50\x69\xd6\xf1\xf4\x29\x28\x49\x42\x71\x80\x92\xfc\x4c\x91\xb9\x24\xeb\x65\xd4\x56\x3d\x99\x0b\x7e\xb8\xac\x6b\xb5\x3d\xee\x8f\xe1\x34\xb0\xff\xd8\x22\x64\x38\x17\x0c\xd4\x22\xcd\xfc\x34\x99\xe5\xb6\xc5\x13\xaf\x37\xce\x3d\xf6\xf0\x64\x47\x68\x5a\x4d\xaa\x45\xb7\xb6\x8c\x7b\x44\x9e\x9f\x8b\x24\xfc\x43\xc9\x4a\x63\x13\xdf\x86\xcd\x4e\xdf\x1e\x1c\x0c\xa7\xf4\x6c\x09\x5f\xc1\x37\xb4\x1d\x67\x57\x58\xb4\x65\x32\x6e\x96\x0d\x07\xf2\xc1\xb6\x93\x34\x17\xd5\xfc\xba\x62\x3a\xbf\x6c\x7f\x89\xb5\x13\x58\xd7\x96\x77\x44\xc2\xf7\x98\x93\xa2\xb4\x09\x94\xcd\xa1\x80\x68\x81\x89\x9f\xfd\xc6\x6b\xa6\x35\x68\x6d\xce\xb6\x72\x23\x58\xec\xb2\x2d\xb1\x66\x12\xc9\x79\xb4\x03\x50\x6a\xcf\x16\xf0\xad\xd9\xa5\x59\x40\x4e\x2a\x39\x1b\x08\xda\xb0\x7c\x3e\x8f\x4c\x30\x1b\x20\x2f\x33\x7c\x1e\xfd\x69\x74\xa9\xf5\x27\x30\xe6\xc9\x5a\x94\x3f\x2b\xf0\x4e\xf2\xa1\x38\xd7\xd8\xf4\x03\x31\xd0\xfc\x37\xe2\xa1\xb2\x2c\xff\xaa\x23\x60\xe8\x48\x0c\x62\x9d\x43\x6c\xa0\x8f\x6b\x0b\x11\xf6\x48\x06\x62\xb7\x0f\x0e\x69\xba\x1e\x31\x81\x69\x91\x3a\x64\x18\x29\x64\x18\x36\x77\xe5\x4d\x0b\x58\x3f\x4e\x7d\xb8\x49\xb5\x19\x46\x44\x33\x39\x78\xc3\x90\x1d\xf6\xea\x07\xf7\x15\xf3\xf1\xc9\x8d\x52\xbb\x4b\x58\xf2\x4d\xde\xcd\x8f\x37\x3f\x5d\x79\xee\xee\xf5\x72\x2c\x7a\x97\x0d\xd6\x4d\x91\x2d\x9d\xb5\xd6\xbb\x5e\x67\xf9\x9a\x9c\xd2\x4a\x73\xf3\xaf\x46\x46\x5f\x6d\x6f\xeb\x8e\xb7\x4e\xb9\x9e\xa6\x21\x56\xf4\xcf\xe8\x8c\xef\x25\x1a\x82\xd7\x66\x64\xfe\xdb\x03\xd5\x99\xf8\xf6\xfb\xcf\xf5\xf2\x9a\x03\xcd\x3e\x60\x92\x1f\xa6\x64\xde\x98\xb5\x9a\x96\x8c\xc2\xbf\x76\x11\x60\x8b\xb9\xb6\xc8\x72\x8a\x4e\xb4\x79\xb4\xa1\x63\x20\x3a\x77\x65\x4f\x4f\xad\xac\x56\x94\x95\xf7\x01\x1b\x89\x3c\x13\x67\x27\x1f\x69\xa2\xdd\x7d\xf2\x4b\x07\x07\xac\xae\x4c\xbe\xd1\x8a\xbb\xc5\x0d\x62\x23\x5f\x09\xcd\x42\xff\xc0\xc7\x93\x71\x40\xec\xe5\x88\x45\xf6\xfb\xa4\xd1\x69\x8e\xd5\x74\x88\x57\xd2\x7a\x06\xb7\x50\x3e\x5a\xa0\x9f\x48\x0c\x93\x70\x0c\xad\x01\x6d\xe4\x45\x57\xb8\xa3\xb9\x48\x1f\x4f\xc3\x43\x4b\xfe\xc9\x31\xc5\x80\x94\xe6\x5a\x9d\x03\xc1\xa4\x6e\x61\x0a\x8a\x54\x13\x62\xd0\xc0\x42\x54\xec\xab\x0b\xf6\x77\xc3\xeb\x5e\x77\xb8\x63\xba\x6c\xbc\x60\x53\x81\x38\x07\x5c\x3d\x42\xfb\x94\x27\x52\xc3\x61\x36\x62\xcf\xa9\xd2\x5a\x64\xed\xa1\xdc\x0d\xec\xd4\xdc\xa5\x05\x0d\x8d\x62\xff\x5a\x28\xab\x97\xf1\x0c\x48\x6e\x04\x2a\x09\x3c\x9b\xa7\x5a\xa7\xc9\xc0\xee\xce\x7b\x01\x17\xed\x6d\x78\x47\xb2\xd0\xc7\x21\xfb\xae\xf1\x1a\x67\xf1\x2b\x3a\xdd\x86\x66\x3d\x49\xdb\x71\xe4\x2a\xa7\x25\x7f\x83\x50\x51\x09\x1e\xac\x57\x70\x57\xf3\xf5\x56\x4b\xd6\x67\xaf\x8e\xdb\xe2\x7c\x12\xca\xb3\xc5\x4f\xfc\x87\x41\x3e\xb8\xff\x0a\x12\x37\x17\x7d\xf6\x34\x10\xe5\x2d\x6f\x61\x6c\xb1\x4d\x09\xce\xc8\xd4\xb5\x86\x03\x15\x41\xa9\x08\xf6\xfb\x50\x20\x35\x2e\x96\xcc\xe9\xae\x16\x30\x58\x15\xc8\x9e\x36\xe1\xa4\x98\x19\xd8\xaf\x96\x57\x6b\x47\xb3\x34\xbe\x58\x0b\xc5\x98\xc5\x62\xa3\xd9\xc6\xec\x5c\xb1\x30\x23\x57\x6d\x27\x4a\xae\x62\x73\xb3\x40\x55\x4e\x81\x4e\x41\xf2\x42\xf2\xe2\x2c\x05\xf6\x72\xd1\xdc\x9f\x3b\x20\x05\x2b\x93\xa0\x17\xba\xaf\x12\x9b\xf0\xe5\x9a\x7a\xbf\x29\x75\xe8\xa8\xf5\xec\xa3\xf3\x62\xe2\x54\xab\x64\x4a\xc6\xb4\xf6\x63\x37\xc6\xce\x4e\xd3\x10\x32\xb1\x93\xd8\x93\xe5\x11\xa1\xf8\xf2\x9f\x98\x70\x4d\xeb\xf4\x3c\x93\x5f\x26\xd2\x43\xf9\x1c\xa9\x3b\xad\x15\x8d\xf5\x7c\x5a\x47\x41\xf0\x68\xef\x1d\xb6\x21\xd0\xbc\xbd\x86\xe6\xbc\xe9\xfb\xbf\xe2\xc9\x28\x11\x1f\xce\x39\x63\x99\x29\xfe\xf1\xc3\xfb\x07\xb7\xee\xdf\x8a\x51\xe1\xaa\xa4\xc5\xb6\xb3\xbf\xba\x25\x2c\xab\x08\xc8\xb3\xb3\x6b\xe0\x22\xd5\x96\x02\xd6\x08\x3f\x1d\x6e\xcc\xa2\x87\x8e\x6e\xe9\x31\xcd\xbd\xf2\x76\xf0\x58\x6b\x8c\x70\xc7\x47\x97\x37\x4f\xf4\xca\x47\x21\x86\x76\x9c\xf9\xe5\x02\x18\x3d\x91\xcf\xd0\xc2\x9e\xd1\x3d\xbd\x9a\x5e\xb0\x00\x7b\xd7\xf2\x15\xcb\x39\xcb\x8f\x46\x1f\x7b\xbd\x98\xd6\xe0\x85\x29\xaf\x1b\xee\x98\x33\x3b\xb3\xe7\xe9\xe8\xd3\x71\xdc\x99\xe3\xcd\x5f\x1b\xbd\xb6\x07\x72\x0c\x02\xae\x32\x10\x1b\x01\x31\x68\x10\x32\xf9\xb7\xd4\x07\x3f\x03\x88\xb7\xde\x98\xc3\x99\xa7\xc8\x85\x96\x23\x43\xee\xb5\xf6\x80\x42\x35\x9e\xde\x93\x82\xee\xaa\x3e\xea\x2e\x25\x49\x3c\x60\xfc\x52\xc9\x13\x6b\x9e\x38\x8e\x6c\x47\x67\xed\x7f\xed\x36\xbf\xac\x6e\xf9\x4b\x21\xbb\xf4\xf7\x0c\xde\x77\xf3\x24\xb0\x62\x14\x35\xdc\x06\x08\xab\x39\xe3\x1d\x2e\x02\x12\xbd\xfc\xdf\x9f\x69\x96\x2c\xad\x8f\x1f\x01\x27\xf4\x62\x11\xf8\x44\x46\xdd\xa6\xd8\xf1\x6a\x3c\xab\x25\x53\x0b\x50\xac\x5a\xd9\x7c\xd6\x02\x12\xf2\xad\x20\xdc\xf1\xe6\x1d\xea\xbd\xa6\x8d\xbc\xf3\x5a\xa8\x30\xa6\xe6\x3d\x53\x1b\xf2\xd6\x0e\x04\xaa\x66\x86\x18\x26\x2f\x2e\x8f\x90\x3d\x39\xe6\xbe\xa3\x3c\xdb\x5e\xb9\x34\xca\x36\xb2\xb2\x22\x1f\xc8\xc4\x28\x3b\x70\x1d\x7e\x75\x3b\xe4\xe6\x8a\x85\xfb\xe2\x54\x43\xe0\x09\x8c\x74\x11\x73\x9b\xcc\x08\x7d\x06\x2c\x7d\x46\xe1\x8a\x36\xae\x48\x7e\x6e\xd4\x0a\x5e\xac\x9d\x54\xa9\x68\x63\xf2\x87\x39\xf8\xb6\x7c\xdd\x13\x01\xb9\xf0\x54\x80\xef\x9b\xbe\xbe\x1e\xf9\x94\xcf\x57\x49\xc6\x68\x8f\xb9\xfd\xe6\xb0\x96\x53\xfb\xd3\x9a\xce\xf5\x50\xa7\xb7\x7d\x23\x33\x92\xb7\x4b\x3c\xa9\x1f\x17\xc8\x82\x59\xe1\x4b\x82\xf4\xc5\xde\x36\xd0\xda\xa6\x73\x45\x5e\x2e\xad\xcf\x86\x60\x2f\xa7\xa1\x24\x66\x7b\x48\x59\x04\xda\x89\xe1\x74\xd1\xb4\xc0\x0c\x0b\x41\x43\x5f\x83\xfb\x5f\xc4\xf9\x0f\xd2\xd2\x7d\xcf\x83\x4e\x53\x95\x3e\x34\xea\xe9\x05\x85\x12\xac\x6b\xd7\xc2\xe0\xc3\x07\x39\x98\x36\x30\x37\x3b\x11\xbc\x5c\x06\x2c\x03\x73\xeb\x9c\x39\x61\x91\x85\xb9\x9a\x93\xe0\xf7\x27\xa2\x92\x1e\x8d\x2f\x22\xe1\x35\x58\x71\xca\x7b\xb5\xcd\x7f\x19\xfd\xd2\xad\xed\x1e\x0f\xd9\xc9\xe5\x8f\xf7\x0a\x1c\x4a\x84\x18\x18\x78\xae\x42\x78\x55\x4e\xd1\x7f\x19\xf0\x03\xa3\x75\x72\x8d\xdc\x8b\xf5\xea\x4c\xfd\xa7\x20\xa3\x1e\x89\x7d\x73\x85\xad\xe6\x15\x88\x9d\x1d\x9d\x9d\x5e\xa9\x9b\x78\x1d\xb4\xb4\xe6\xe4\xeb\x2f\xd8\xbc\xf9\x9f\x2d\x2b\x5b\x4c\xb5\xbb\x8b\xd6\xdd\xd9\xbd\xe7\x1f\xb7\xe6\x1b\xdf\xda\xe7\x6f\x9a\xcb\x57\x4d\x77\xcf\x6e\xfd\xff\x9b\x1b\xa6\x59\x24\x4a\x7f\xb6\x47\x56\x46\xaa\xa9\xe1\x1a\x47\x66\x30\x01\xbd\xee\xc5\x9c\xb9\x3e\x7a\x7d\xb3\x66\xf3\x93\xd1\x27\xd1\x18\x76\xa2\xac\x46\x41\x8c\x85\x47\xaf\xf8\x03\xaa\x2f\xf4\x16\x64\x74\x7f\xb4\x45\xfe\xd3\xd8\x7b\xbc\x4a\xe3\x92\x9f\x4d\xee\x11\xfc\x45\x8f\xc3\x2c\xb8\x31\x3a\x62\x3b\x37\xb8\x74\xf9\xf9\x12\xef\xea\x7d\xb7\x3d\x3e\xb8\xc7\x33\x22\x67\x62\xa0\x7a\x80\xbb\x63\xf0\xa7\x62\xdb\x68\xa3\x40\x9e\x91\x94\xfd\xd0\xc7\x8b\x44\x1a\x37\xf0\xc2\xa7\xee\xd5\xa5\xde\xe5\x7c\x76\xe1\x94\xbb\x03\xa3\x6b\x23\xce\x18\xfc\x27\x8d\x91\x1a\x5e\x9b\xa8\x7c\x96\x5e\x79\xbf\x04\x34\xde\xfd\x24\x9c\xa9\x50\xa2\xd1\x7e\xaf\xc9\xaa\x54\x98\xae\x8c\xcf\x0e\x19\x23\x43\x78\x03\x40\x5a\x4a\x90\x48\x2e\xe1\xd6\x3a\x03\xa7\x72\x59\xc1\x14\x5d\x8f\xce\x6c\xb7\xab\xe1\xf4\xc7\xfb\x1a\x66\x3b\xe2\x07\xdf\xa9\x67\x00\xb4\x46\xb8\xfe\x9e\xee\xee\xfb\x7e\x23\xe6\x0f\x14\x46\xc6\xbb\x09\xe2\x02\x3f\xae\x29\x80\xf9\x48\x1a\x6a\x7f\x04\x72\xb6\x65\x70\xcd\x9a\xe8\xd8\x8b\xf4\x1e\x3c\x7d\xa6\xc1\x4b\x64\xb0\xef\x63\xd5\x7c\x4d\xfc\x65\x5e\xf4\xef\x6f\x20\x0a\xeb\x87\x00\x33\x50\x76\x02\x03\xcc\xda\x5a\x75\xe9\x17\xef\x97\x1f\x7d\xdf\x30\x71\xda\x5e\xcc\x38\xa6\x7f\x47\x55\x3c\x1b\x58\x46\x5b\xbd\x0d\x38\x7b\x9b\x31\xe6\xf8\x72\x9d\x59\x87\x19\xf5\xbd\x78\xb6\x4c\xa5\xbb\x8b\xf2\x79\xe0\xc3\x2c\x75\xae\x7a\x6a\x58\xbc\x9e\x03\xf8\xf0\xf9\xea\x31\x34\xe4\xe4\x76\xc2\xd5\x62\x27\x25\x0a\xad\xed\x97\x06\x06\xf8\x48\xa4\x0c\x44\x79\x51\x91\xa2\x2d\xd6\x2e\x86\xa1\x4f\x9b\x60\xa2\x07\xeb\xab\xd5\x9a\x5a\xbf\x91\x2b\xe3\x0f\x36\x56\x48\xfc\x71\xfd\x7c\x40\xfa\x1d\x6c\xae\x61\x6b\x5a\xfc\x06\x42\x5f\x76\x8e\x23\x5b\xf9\x73\xc4\xf1\xbf\xe1\xf5\x69\x10\x26\x39\xce\x41\x22\xc0\xbf\xf7\xf3\x59\x0b\x4f\xb9\x71\x45\xed\x1f\x5f\x28\x01\x1d\x1a\xc5\xdf\x3d\x70\x10\xb0\x65\x6b\x0a\xc4\xf3\xa9\x48\x6b\x78\xa8\x20\x2a\xbc\x94\x8a\x8e\x13\x1f\x45\xa0\xf8\xe1\x84\xb0\x1d\x77\xf1\x73\xf5\xa7\x25\x0d\xe9\xb3\x85\x8d\x9d\x98\x40\xb2\x95\x38\x84\x63\x41\xe3\xce\x70\x85\xc6\x8c\x70\xc7\x30\x02\x93\x62\x0e\xda\x09\xf4\xa4\x41\x86\x87\x06\x64\x8f\x61\x4c\x1c\x52\x93\x0b\xd7\x48\xbd\x00\x3f\x4c\x4e\x1a\xd7\xc7\x55\x68\x1c\x16\x37\xa1\x54\x78\xdc\x49\x98\xfe\xc6\x49\x97\x90\x2e\xd8\x07\x45\x06\xc3\x49\x05\x29\x71\x74\x18\xad\x26\x03\x40\x25\x99\x86\xee\x25\xf6\x74\xa2\x88\x8f\x08\x8f\x2c\xbc\xc4\x66\xfa\x0a\x37\x85\xdd\xb1\x17\xb6\x24\xe9\x2f\xd1\xbf\x6e\xf3\x73\x3f\xbf\x98\x9b\x1b\x3d\x78\x24\x58\x96\x27\x18\xb3\x08\xa2\x0f\x2d\x64\x61\x1d\x76\x6f\x8d\x00\x8c\x6c\xfd\x8e\x93\xca\x07\xd2\xc6\xf3\x50\x50\x09\x31\xe9\xad\x15\x01\x1c\x0b\x7d\x26\x8f\x9c\xaa\xe1\x4d\x45\xc2\x29\xbe\x24\x44\xab\x20\xd0\x5e\x76\x4a\x3d\x96\xb1\x58\xc0\x21\xa2\x63\xd9\xdd\xdb\xf4\x82\x41\x7c\x8d\x09\x1a\x07\xc1\xa3\xc0\x91\x83\xc8\x22\xbb\xbd\x30\x4f\x13\xe2\x14\xb0\x27\x2b\xcf\xc0\xe3\xcc\x63\x3f\xbc\x88\x94\xe0\xf3\xd5\x5d\x19\xf2\xf2\xaa\x2d\xd4\x3d\x19\xa7\xac\xb4\x8c\x3b\x11\xe2\x2a\x78\x13\xe7\x34\x64\xe8\xf1\x54\x45\x24\xaf\xb5\x80\xe3\x6c\xd2\x83\x99\x4e\xc6\x62\x81\xa7\xff\x92\xcb\xd0\xb3\x53\x2d\xee\xb8\x32\x58\xb6\x39\x4c\x56\xc7\xdc\x5f\x79\xab\x3d\xb2\x41\xec\x87\x17\x07\x25\x84\x7c\x59\x26\x43\xde\x29\x12\xf1\xba\x47\x16\xc7\xa4\x4e\x72\xfa\xea\x0b\x0a\x1e\x6a\x37\xc9\x2b\xc0\x74\x61\x60\xcd\xe1\x1e\x36\xaa\x84\xa8\x85\x99\xb4\x7b\xa5\x68\x9f\x4e\x8f\xb1\xd8\x7d\xf0\x7e\x8e\xe8\xec\xeb\xb7\xf9\x8a\xec\x47\x0a\x35\xf0\x4e\x75\xb2\x61\x7c\x24\x76\x74\x6c\x52\x9e\x92\x29\x02\x5c\x05\x17\x4f\x3e\x7d\x6f\x9f\x88\x88\x1b\xa6\x1f\x49\xd2\x37\x78\x64\xb2\x1e\xde\x17\x53\x4f\x67\x50\x09\x29\x44\x47\x7f\xca\xe4\xe6\x58\xfd\x4c\xca\x52\x9b\xef\x8a\x66\xb2\x63\xcd\xb0\x82\x8d\x2a\xb4\x8f\x92\x5e\x86\xb9\x3d\xda\xf6\x56\x72\xf1\xfb\x39\xe2\x43\xff\xd9\x10\x8f\xf6\x5f\x70\xbf\xa1\xc0\xff\x11\x73\x78\x18\xa0\xfa\xee\x7e\x44\xe1\xff\xbf\x68\xa7\x23\x79\x32\x38\xa8\x12\x11\x0e\x07\xdf\x53\x73\x74\x8f\x10\xbd\x8f\x23\x98\x05\xc7\x32\x2c\xac\xeb\x33\x12\xa7\xc9\x61\xe7\xc1\xdc\xb7\x37\xa5\x1a\x4e\xae\xcd\xe6\x00\xab\xbc\x55\x5e\xdc\x6f\xec\xff\x2d\x8a\x2a\x81\xf1\x1d\x99\xfc\xf5\x4a\xa9\xa8\xa1\x47\x4e\x0c\x43\xbd\x4e\x5a\xd4\x94\x45\x12\xba\x62\x8e\xce\x10\xa2\x4b\x8e\x28\x97\x66\x61\xd8\xfa\xba\xe6\x33\x12\xa7\xa5\x36\x78\x14\x5c\x56\x4a\x6a\x63\xe7\x28\xce\x8f\x22\x3e\x20\x44\xed\x54\x08\x37\x31\x15\x9e\xa7\x57\x85\x8d\xd3\xdc\x5f\xc6\x36\x36\x72\xef\xe3\x08\x4e\x5f\x6b\x19\x14\x04\xed\x2e\xe8\x29\xb4\x8e\x07\x48\x27\x05\x59\x06\x4b\xb7\xee\x46\xff\x99\xb8\x9d\x60\x03\xf8\xb2\xf2\xa3\xdc\xca\x9b\xf0\x24\xad\x15\x4d\x00\x56\xd9\xa9\x4d\xe4\x5c\xb2\xab\xa1\xa7\xc8\x9b\x04\x49\xa5\x7a\x9f\x8e\x31\xa6\xe0\x8f\x1f\xf2\xac\x35\x3a\x51\xc4\x62\xfe\xa1\xc4\x2e\x13\x32\xf9\x6f\xa5\x12\xfb\x6d\xc9\x92\xfc\x61\x4a\x31\x67\x0e\x1d\xa3\x66\x18\x3c\xe9\xdb\x88\xff\x3b\x25\xf7\x40\x7c\x15\x3b\x9b\x52\x10\x14\x25\x32\xab\x25\x78\x0e\x63\x5a\xbb\xd5\x70\xde\x91\x27\xf1\x16\x18\x4a\x91\x58\x92\x45\x55\x88\xcb\x56\xfd\x92\xd8\x2e\x41\x1e\x05\x2f\x7a\xd0\xa3\x6c\x7c\xee\x79\x0a\x66\xcd\xad\x44\xe5\x63\x54\x6a\x07\xea\x16\x3a\xba\x73\x5d\x99\xb7\xed\x67\xfb\xf8\xb9\x0e\xd7\x1c\x6d\xf2\x27\x6d\xbf\x50\xda\x34\xe9\xde\xe0\x49\x06\xf1\x85\x5c\xe0\xf0\x9e\x9d\xa0\x54\x20\xd5\x1a\x0e\x46\x0f\x27\x10\x92\x6d\x7e\xee\xb7\x7e\x98\x81\xe6\xc6\x92\x4d\x62\x56\x00\x37\xc1\x8c\x67\xe5\x8e\x2c\x5c\x61\xaf\xc3\x32\xc8\x1d\xdd\xfa\x69\x95\x9f\x5e\x61\xf7\xd3\xda\x1e\xf6\xa4\x14\x38\xe5\x08\x45\x43\xd1\x0a\xa4\xe2\x7a\x1c\xc0\x8f\x29\xd2\x4c\x45\x05\x34\x1a\x87\x14\x9d\x76\x2a\x60\x14\x59\x8f\xd1\xad\xdf\x0e\x70\x2d\x75\x09\x9e\x55\x41\x0a\xfd\x67\x81\x33\x1e\x50\x5d\xa3\x9b\xf6\xb1\xff\x9b\x02\x96\x3f\x57\x6d\x61\xba\xaa\x82\x2c\xdc\x11\x66\xb1\x93\x54\x70\x6b\x2c\xcf\x44\xdf\x07\x83\xd8\xd7\x59\x21\x93\xda\xab\x59\x6c\xd4\x2a\xb8\x36\x35\x64\xaf\x15\xa4\xc1\xec\xe8\x0a\xb7\x1f\xa3\x31\x91\xce\xb5\x8e\x78\x35\xe4\x3b\xe5\xa4\x4f\x31\xb5\xe1\xc5\x2d\x2a\xd1\x7e\xb3\xd9\xcf\xc1\x1e\x99\xcc\x2e\x6a\xc6\xf9\x39\x94\x37\x4f\xa6\x03\x70\x7f\x52\x7e\xd9\x96\xff\xd0\xe8\x54\x30\x33\x50\xb9\x90\x63\x0f\x70\x84\x47\xf1\xda\xe1\x21\x75\xc5\xbd\x17\x11\x49\x4f\xfe\x6b\xec\x25\x72\x80\x1c\xee\xe3\x88\x91\xbe\xad\x2a\xf0\x7a\x76\xeb\xd8\x4f\x84\x3d\x58\x26\xdc\x6e\x70\x4a\x3d\xb5\x00\x4a\xbb\xb4\x46\x9b\x6c\x19\xbc\x54\xdf\x47\x0b\xfe\xd1\x46\x51\xd6\x79\xad\x72\xf8\xe5\x2a\x68\x04\xde\xd8\xbb\x49\x05\xff\x7f\x50\x79\x19\x2e\x29\xda\xc7\x20\xf3\x88\x92\x5b\x4e\xea\xaf\xc1\x10\xec\x17\x48\x1e\x2c\xf3\xbb\x13\xcc\xc8\x8a\x94\xb2\x94\x62\x3a\x8c\x2a\xab\xe3\x64\x43\xbc\xc7\x6a\xe1\xc1\xb1\x0e\x9b\xa8\xc6\x22\x68\xcf\x6b\x42\x9c\xa1\x45\x93\x3c\x25\xe1\x8f\x38\x08\xd0\xf2\xa4\xb0\x07\x60\x80\xec\x35\x18\xd0\xf3\x41\xff\x69\x10\xba\x50\x18\x04\x30\x26\x2e\x15\x1f\x95\x01\x43\x17\xea\x4b\xe1\x09\x19\x24\x81\x15\x3d\xc7\xb3\xf3\x41\x0c\xd4\x55\xda\xff\xb4\xee\xb9\x86\x5f\x8a\x42\xc7\x0b\xba\x61\x01\xfa\xa0\x1f\x06\x61\x18\x46\x60\x14\xc6\x60\x0a\xe6\x71\xae\xf4\x15\xae\x31\x57\x18\xbf\xf8\xa2\xee\xf4\x93\x21\xc1\x47\xfe\xe6\x58\x9b\x0b\x88\x77\x31\x04\xa5\x4d\x3f\x19\xe1\x02\xd8\xd3\x4f\x7f\xbe\x05\x6c\xc2\x11\x58\x85\xd3\xfd\x67\x15\x31\xfe\x8d\xcd\x60\xac\x32\x5e\x09\xf8\x49\xaf\x60\xac\xf9\xa4\xf4\x9f\x68\x7b\xe7\x91\x8d\x0b\x9b\xf7\xd2\x45\x52\x13\x19\xfa\xaf\xa0\x67\x06\xcc\xc0\xb3\xed\x77\xa3\xa4\x9c\x88\x8a\x55\x82\x7a\x67\xde\x27\x11\x00\x00\x40\xff\xbf\x4d\x36\x36\x3c\xb7\x77\x76\xa0\x3b\xe1\x74\x9a\x88\x6e\xea\xf8\xbe\xfe\x37\xd6\xf6\x77\x1a\xbc\xfa\x5d\x2a\x6c\x7b\xe1\xae\x52\xf9\x8c\x47\x63\xb3\xbd\x35\x70\x74\xfc\xb9\xcb\xae\x4a\x34\xd1\x39\xe7\xf9\x74\x0a\x27\xce\x61\x5f\xcf\xd5\x28\x15\xf6\xbf\xc1\x2c\xd3\x01\xde\xcb\x09\xcb\x6c\x74\x16\xa7\xad\xe9\xda\xa5\x96\x3c\x18\x5e\xbe\xf8\x04\xfd\xb9\x17\x18\x73\x9a\xe9\x31\x26\xfa\x51\x4c\x8b\x13\xfc\x31\xd8\x63\xae\x4e\xae\x14\x91\xe7\xcb\xf9\x06\x53\xc8\x95\xf6\x79\x19\x18\x06\x59\x18\xd0\x3e\x2b\x1b\x05\x96\xe1\x57\x17\xf8\xc2\xe3\x05\x78\x87\x6f\xa4\x5a\x15\x4a\xc9\x81\xe1\xe6\xeb\x0f\x1e\x4c\xe4\xbb\xf3\x17\x5c\x99\xe6\xee\x96\xe0\xd7\xc4\xdb\xf6\xf3\x93\x5b\xf4\x5e\xf2\xa9\x9b\x7d\xb2\x4f\xf1\x57\x52\x9a\xc1\xb3\x3d\x19\x45\xe1\xbd\xc0\x67\x7f\x03\x62\xd0\xae\xe8\xd9\x47\xb9\x95\x45\x24\x77\x6f\x91\x62\xb2\x4e\xd7\x5d\xfc\x62\x7d\x35\xd5\x7b\xa7\x01\xcb\xd4\x5f\xa9\x77\x0d\xa7\xfc\xe2\x9f\xc3\xaf\x59\xa7\xfd\xe2\xff\xc2\xbb\x2a\x7c\xee\x45\x1e\xf8\xbe\xf2\x36\x5e\x26\xa6\xe2\xb0\xfd\xd9\x35\x5e\x0f\xaf\x70\xf3\xd1\x73\x29\x4f\x78\xae\x95\xee\xbf\x7d\x79\xbb\xda\x15\x2d\x66\xda\xc7\xe7\x15\x16\x9e\x3b\x89\xe6\x65\x0b\xc4\x39\xfb\x44\xd9\xdb\x86\xe0\x8e\x39\xec\x31\xd6\x6c\xa2\xb8\x74\x51\x73\x74\x1a\x1c\xcd\xb4\xb7\xf2\x69\x32\x2d\x17\xb3\x6f\xf9\x16\x55\x98\x06\xb3\xfd\x64\xac\x31\xbe\xd5\xe8\xb9\x82\xb7\xf1\xde\x18\x3d\xc3\xa5\x20\x06\x87\x53\x3a\x0d\x78\xde\x33\xdf\x89\x17\xfd\xf2\xd6\x64\x0c\x77\xb2\x15\x22\xfe\xc4\x7a\x58\xef\x26\x0f\x75\x71\x15\xe4\x38\x67\x21\x9a\x90\x9d\xae\xcb\x2e\xea\x9e\xb2\x54\x89\x65\x45\x9a\x27\xf5\x57\xc1\x1a\xe4\xab\x68\x2d\x94\x2f\x07\x11\x6d\x83\xf8\x35\xb9\x06\x4f\xaf\x26\x01\xb4\x7e\x39\x44\x9e\xf9\x71\xf6\x2a\x8b\x81\x28\xec\x7c\x17\x3d\xed\x00\x88\xb9\xba\xdc\xc6\x1f\x7a\x9c\xb7\x82\xb1\xe0\x08\xf0\xcf\xea\x61\xfe\x49\xeb\xf8\xe1\x87\xf9\x4b\x78\x97\x7c\x59\x5d\xee\x3e\x8b\xaa\xf8\xb2\x1f\xee\xf9\x45\xbd\xb4\x0e\x65\x9e\xbd\xf4\x0b\x58\xf5\x92\xfa\x4b\xbd\xec\x25\x3f\xe7\xaa\x17\xd7\xb9\xf4\x47\x5e\xfc\x9d\xf5\x92\xd9\x9b\xb9\x2b\x48\x2c\x18\xdc\x1c\x5d\x51\xe8\x8b\xfc\x68\xfd\xa5\x63\x3e\x7f\xf4\x97\x5b\x1f\xea\xe5\x80\xcf\xcf\x5e\xfe\x3b\x27\xf5\xae\x3a\x95\x69\xf6\xae\x6f\x20\x27\xbf\x60\x75\xb0\x06\x7f\x61\x6c\x8b\x71\xbd\x72\x65\x98\x9e\xe9\x05\xc9\x1a\x39\xfb\x05\x81\xae\x68\xc1\xfa\x3f\x77\xcc\x89\x87\xa2\x66\x63\xc2\xda\x1a\xf8\xe2\x49\xc5\x5e\x5f\x7d\x37\xcd\xe9\x2b\x7c\x74\xc9\x97\xd5\xf5\x51\x43\x96\x86\x87\xbd\xa4\xf1\x78\xc6\xd0\x02\x0e\x1a\x6f\xa8\x09\x2d\xac\x43\xc3\xe5\x3e\x22\x4b\xe4\xbf\x82\x83\xb9\xa1\xbc\x92\x78\x4b\xb5\x2c\x44\x83\x54\xc4\x14\x8b\x28\x02\xbc\x54\xff\x18\x1f\x78\xec\x32\xc9\x96\xc1\xbc\x54\xe7\xd6\xfa\xfd\xba\xad\xf1\xdb\xba\x1a\x57\x0f\x73\xb6\xde\x1a\xd6\x79\x4e\xaa\xe3\xec\xcd\x66\xee\x84\xf8\x8b\x3d\x51\x8d\xfb\x3a\x8e\xec\xa5\x5f\xc7\x6a\xb8\x3c\x6f\x3d\x65\x2f\xf9\x1d\x57\xbd\xb8\x4e\x64\x3f\xf2\xe2\x1f\xaf\x3b\x32\xb7\xa4\x57\x90\xe8\x22\x1f\x0d\xb4\x57\x2a\xc4\x27\x52\xdb\x07\x6b\x13\x9c\x86\x9e\x10\xa2\x87\xb6\xa6\xfb\xe5\x59\xc6\x57\xd8\x3f\xd5\xc3\xbc\xc9\x23\x1a\xbe\x56\xe8\x29\x29\xea\xcd\x9c\x2f\x36\xa2\x6f\x70\xce\x41\xf0\xc2\x23\x3d\xce\x5f\x0b\x23\x5d\x36\xfb\xb2\xfe\xbb\x0c\xb7\x00\x5e\x49\xf2\xf1\xf4\x30\xef\x1d\x52\x74\x2c\xe0\x87\x9b\xa1\x90\x28\xbd\xc1\x10\x49\xf1\x39\x26\x6a\x41\xb9\xb0\xc0\xeb\x33\x3b\x24\x22\x58\xc7\xb5\xfe\x77\xc5\x2c\xc2\x09\x64\xfa\x7e\xa9\x86\x4d\x62\x0d\xb5\x00\x5e\x96\x47\x06\x71\xac\xbd\x0e\xe7\x64\x76\x7a\x7c\x5d\xad\x20\x23\xd6\x55\x92\x64\xf8\xee\x49\x03\x8a\xc7\x45\x95\x88\xff\xa6\xf1\xe7\x67\x6d\x55\x6c\x99\x08\x66\xcb\xce\x68\xc9\xd4\x33\x51\x97\x43\x18\x6e\x5d\x69\xc1\x50\xb4\x7e\xae\x80\xf5\x4e\xc9\x05\xb3\xfb\x3b\x0f\x4b\xeb\x89\x92\x4b\x50\x26\x48\xf5\x10\x18\xc0\xe9\x8b\xe6\x80\xfa\xe3\x80\xd0\x2a\x6e\xc1\xe2\x71\x94\xaf\x87\x25\xca\xd6\xd7\x24\x9a\xc0\x13\x36\x13\xdd\x62\x7d\x68\xc9\xa9\x41\xa5\xb2\x43\xda\x16\x60\xa4\x08\x48\xa3\x17\x52\x52\xa4\xf0\xec\x5d\x26\xed\xf8\xb2\x30\xb8\x50\x14\x57\xd4\xd1\x79\x69\xd1\x6e\xb6\x7f\x87\xcb\xfd\x5d\x66\x2a\x8a\x0b\x99\x5c\xf0\x71\xa9\x0a\x4f\x96\xf3\x70\xab\xec\x81\x61\xff\x5c\x4e\xc2\xf3\xb5\x3e\xc9\xdd\x63\x7c\x7c\xe0\x75\xe9\xff\x61\xf5\xfc\x35\xb0\xfe\x73\x58\x88\x21\x00\x66\xbe\xbd\x32\x61\x98\x7f\xc0\x37\xa6\xfc\x3f\x0e\x07\x0a\x33\x87\xff\xff\x39\xbf\x6a\xff\xd8\x19\xff\x9a\x6f\xbe\x4f\xd7\xfe\x5c\xc0\x23\xf3\x7a\xd7\x1f\xf3\xed\xc4\xbc\xbf\x07\xd2\xaf\x05\xfc\x45\x7d\x7f\x98\xe4\x0e\x5b\xfa\xf0\xc3\x29\x77\xd0\xc0\xf9\x71\x9a\x44\x65\x92\xc8\x5c\xec\x28\x42\x1f\xc8\xa3\xa6\x9a\x7d\x40\x7e\x73\x53\x89\x24\x90\xdf\xd3\xbc\xf8\x7f\x80\x2f\x6a\xec\xf9\x7f\xa8\x2e\xab\x14\x9b\x52\x09\xec\x6d\x6d\x6b\x58\x78\x15\x26\xab\x33\x96\x49\x56\x9c\x7b\x93\xda\xfe\xe7\x98\x85\x89\x21\xc0\x4f\xa4\x85\x58\x2a\xa2\x99\xa5\x7f\x53\x6d\x91\x4e\xfa\x58\x48\xa5\xfc\xa5\x5b\xea\xdb\xad\x96\xae\x17\xfa\xdd\xd4\x4f\xa9\x8e\xe4\xb4\x96\x3f\x37\xa5\xc8\xdc\xee\x6c\x5e\xb1\xff\xf6\xf3\xa6\x06\x73\xfe\x20\xe1\x49\x85\x1d\xb9\xa3\xbe\xa7\x8a\x48\x56\xdb\xed\xbc\x05\x69\xf3\xc9\xc2\x12\x90\xf7\xd3\xaf\x6a\xc5\x57\x15\x4d\x21\xdf\xf6\xfb\x4f\x88\xef\x3d\xeb\x07\x5a\x40\x77\x00\xb0\x4a\x72\x27\x09\xb2\x21\x6f\x92\x47\xda\x39\x86\x91\xc8\x21\x5c\x76\xa3\x2c\x00\xc7\xda\xff\x41\x7b\xc8\x3c\x91\x52\x0d\x13\x4a\x1b\x90\x04\xd9\x24\xf2\xa2\xac\x67\x5a\xde\x22\xcf\x0c\xd7\x4b\xf7\x83\xb4\xc8\x87\x6e\x25\x46\x0a\x62\x9b\x1a\x06\x44\x20\x93\xf2\x01\x29\x03\x64\x83\x43\x79\x6e\xe2\x9f\x84\xfd\x71\xf8\xfc\xbe\x18\x8d\x93\xcd\xd8\x5f\x05\x6a\x2a\x48\xd8\xeb\x21\x72\x77\x0f\x06\x1c\xc8\xc2\x8f\xef\x27\x34\x03\x1c\x77\x13\xa8\x81\xe6\x12\x54\x0a\x1b\xd7\x28\xae\xcd\x34\x9e\x12\x0c\x61\xbf\x84\x81\x3d\x4b\xc6\x65\xe7\xba\x6e\x03\xb1\x69\xb9\xdc\xc9\x20\x0b\x45\x31\x83\xb4\xb3\x05\x59\xd6\x34\xf8\xea\xd6\x78\x2b\x74\xe3\xc9\x9c\xe2\x72\xc9\x2b\x70\x67\x52\x4d\xc3\xd1\x35\x0e\x1f\x1a\x2d\xed\xa5\xb3\xbd\xc2\x01\x6e\x97\xb9\xfc\x66\x26\x42\x78\xd1\x56\x66\x59\xd4\x9e\xd6\x84\xa8\x4c\xe3\xf0\x7a\xd5\xd0\xbb\xec\x01\x6b\x19\x78\xf2\xd9\xd2\xb7\xfd\xf3\xa2\x6d\x38\x39\x13\x1e\x8d\xa4\x94\x51\xcf\xb0\x22\x37\x54\x92\xaf\x20\x00\x33\xb8\x14\xaf\xf8\x68\xef\xa4\xde\x56\x0f\x05\xc3\xa3\xac\x45\x4e\x89\xcb\x8a\x66\xca\x5a\x3a\x37\x33\x16\xae\xc1\x6c\x0b\xff\x46\xda\x3f\x31\xc2\xc3\x3e\x59\x4a\x8d\x40\x54\x00\xae\x02\x38\x17\x26\x67\x9b\x3a\xa3\x92\x58\x38\x9b\xa5\xe6\x94\xa8\xf3\xac\xdd\x15\xf9\xaf\xf0\x70\x89\xcb\x00\x91\xc6\xcb\xa9\x44\xeb\x2b\xee\x47\x89\x86\x29\x71\x4a\x89\xdc\x18\x7b\xa0\xcd\xf3\xf0\x6d\x3e\x75\xf7\x04\x6f\x7b\x41\x2f\xf8\x6a\x8e\x5e\xba\x95\x4d\x8d\xc8\x3a\xb1\x3d\x25\xfc\x90\x04\xf0\xb4\x76\x4c\xea\x02\xac\x6b\x70\x52\xe9\xee\xa7\xea\x93\x00\x58\x9b\xb3\x4b\x46\x9a\x6c\x5a\x06\xce\xcc\x2c\xfe\xa5\x25\x46\x60\xcb\x54\xc3\xd1\x47\x9d\x85\x29\x42\x37\xc8\x7d\xcc\x12\x7b\xa2\x34\x4c\xfb\x53\x2a\x6b\x68\x82\xd4\x32\x25\x22\x46\x36\xa6\x1a\x5a\x76\xcf\x44\x10\xf4\x18\x42\x21\xd0\x57\x26\x64\xc8\xcb\xf2\xae\x47\x53\x37\x4f\x0f\x85\x37\x44\x99\x8b\x9c\x19\x97\x31\x2d\x62\x70\x7b\xb4\x1b\xe9\x65\x7a\x9e\x10\xaf\x48\x0d\xa0\xb8\x6c\x24\x05\x90\xe3\xe5\xde\xf7\x36\x3d\x62\x69\x7f\x79\x9d\x06\xf0\x2e\x82\x68\x00\x47\xcd\xfe\x20\x25\xea\x27\x93\xe5\x96\x25\x0d\x90\x5b\x12\x52\x22\x28\x7e\xa7\x3b\x4c\x82\x5b\x21\xee\x6e\xe0\x9e\x69\x12\xe0\x0b\x7d\x7f\x2e\x77\x40\xf3\x6c\x29\x80\x02\x2f\x02\xe7\xe2\x88\x79\xe5\x18\xad\x23\x79\xdb\x12\x02\x9f\x40\xac\x48\x53\x15\x80\x12\x19\xc2\x39\x99\x6b\xc2\xf7\xeb\x6a\x07\xd8\xc6\xf3\x83\xb0\x2f\xc3\xf3\xa2\x3c\xa6\x1c\x60\x67\x8d\xd9\xb7\x66\x01\x0f\x73\x09\x57\xe2\x48\x78\x4d\x4a\x36\x54\xd0\xab\x0f\xfc\x13\x47\x66\x2e\x0f\x98\x00\x24\x69\x88\xdd\x38\x46\x90\xcf\x19\x5b\x95\xd4\x41\xc2\xa0\x97\x9f\x7f\x4a\x04\xf0\x95\x9c\x36\x92\xcc\x31\xe8\xc5\x6a\xe2\xcb\xc4\x8e\xa9\x26\xd0\x7e\xc1\x1f\x86\xaf\x90\xa6\x27\x00\x02\x29\x46\x23\xed\xf5\x55\x9c\x78\xc6\x16\x95\x80\xd5\xde\x66\xb7\xb2\xa2\xc1\x80\xde\xeb\x55\x6f\x0f\x7b\x16\x03\x6f\x0a\x9e\x65\x44\xef\x29\xdd\xa2\x3e\xcf\x09\x23\xd9\x20\x6b\xe8\x10\xbb\xad\xb6\xbf\x1a\x1d\xa2\xe8\x00\xf6\xd6\x30\xbd\x14\xd8\x6b\x2e\x03\x84\x4c\xda\x7a\x65\x0f\x23\x21\x5b\x08\xb6\x36\x4c\xb8\x47\xf7\x84\xf6\x86\x0c\xc6\xd2\x94\xb4\x67\xee\xe4\x5e\x0a\xb5\xf3\xd5\xf4\xc8\x4a\x1e\x20\x2f\x55\x5b\x6f\xe9\xb9\xd7\x55\xd4\xeb\xe9\x1c\xe2\x60\xbd\xd8\x2c\x58\xed\x71\xd7\x09\xa8\x4e\x50\x37\xb4\x68\xbb\xc7\xfd\x59\x80\x5f\x28\xdd\xd8\x33\x04\xf3\xc2\x1f\xcc\x1b\x6e\xf5\x0a\xa0\xf5\xab\x2a\x4c\xfe\x97\xf4\xdc\xcb\x66\x29\x96\x03\x48\x8f\x6e\x09\xdd\x13\x12\x7a\xf4\x4a\xe8\x11\x2a\x01\x0c\x35\x32\x0b\x2a\x80\x3b\xf4\x48\x93\xd0\x23\x6b\x0d\x37\xc8\x07\x08\x31\xab\xf7\x25\xe9\x1e\x94\x00\xbd\x9e\xd2\x12\x23\x25\xdf\x9b\xd3\xef\xcc\x34\xf4\xd0\x66\x57\xf5\x51\x22\x15\x53\x29\x46\xdc\x48\x1b\xbb\xaf\x08\x5a\xcb\x2e\x39\x2a\x04\x88\x87\x34\x12\x2b\xd8\xab\xb2\x20\x06\xa1\x70\x05\xb8\xbb\x83\x2f\xd0\x74\x4e\xe4\xce\x21\x77\xa5\x0e\x85\x16\x36\x49\x80\x8c\x66\x86\x94\x3c\x5a\x51\x20\xf3\xb1\x4e\xed\xd1\x66\xa5\xc9\x59\xd1\x8f\x16\x41\x4a\x4f\x9d\xe6\xff\x7c\xed\x90\xe8\x4c\xd3\x70\x99\x5a\xa6\x4b\xfc\x6a\x9d\xa3\x96\xec\xd5\xb1\xc8\x5a\x68\xe1\x69\x7f\x45\x3c\x6b\x95\x9e\xc1\x23\x6e\xb4\x0c\x4c\x1e\x7e\xa3\x67\xbb\x5d\x4d\xe4\xae\x72\x1f\x6b\x99\x6b\x05\xa4\xb2\x3d\xe9\xd1\xf7\x2b\xd9\x95\x05\x98\x93\xaa\xfe\x34\xc2\x37\xc1\x5e\x1c\x00\x27\x7f\x46\xd1\x9b\xed\xe2\x1c\x87\x18\xa8\x34\x23\xd4\x2f\x8e\x58\x92\xf4\x6d\x44\x12\xc4\x26\x79\xdf\xd9\x52\x2f\x99\xbb\x5d\x5b\xdd\xc7\xc6\x9c\x14\x40\xf4\xc0\x63\xef\xee\xd3\x39\xb3\x5c\xcf\xcd\x9a\xc1\x42\xf9\x9b\x3e\x1e\x0b\xf3\x7a\x44\x2d\x92\x25\xc1\x75\xfa\x1d\xf7\xd3\x6a\xb3\xb5\xe3\xa1\x8d\x68\x6e\x75\x2b\x1e\x5f\x8f\xeb\xca\x69\x42\xaf\xf0\xaa\x66\xac\x38\x7d\x07\x17\x80\x42\xb3\xe4\x50\x0e\x15\x90\x24\x0c\xb0\x58\x9e\x96\x9e\xf6\x52\xd4\xe4\x52\x1a\x14\x37\x78\x18\x11\x57\xec\x44\x8e\x64\x39\x07\xee\x4c\x22\xeb\xd5\xf9\xda\x05\x28\x80\xe4\x09\xe0\x7b\xf7\xaa\x4c\x25\x36\x0a\x7b\xb9\xb1\x3f\xae\x5e\x76\x65\xb6\x2b\xa6\x9e\x25\x91\x59\x4b\xe3\xb0\x3a\x75\x74\x99\x29\xce\x66\x4d\x79\x7c\xe9\x4c\xef\x99\x27\x6a\x91\x14\x77\xa5\xbc\x9b\x81\x52\x9a\x39\x93\xae\x1e\xd3\x9e\x65\x44\xb3\xcf\xb3\xc2\x13\x78\x6f\xd7\xca\x6c\x57\x4c\xe7\x56\x72\xac\x81\x27\xd4\x8a\xa0\x79\x54\x92\xcf\xfd\x5b\x96\xb3\x76\x4c\x53\x77\x77\xb6\x4a\xd5\x1e\xcf\x1e\x8b\x2d\x4c\x33\x79\x7c\x49\x51\x27\x59\xb8\x15\x6f\xb1\xc5\xd9\x68\x10\xe0\xb2\xbb\x5c\xbc\x7d\xbe\xe4\x75\x8f\x4f\xa4\x76\xeb\x29\xd9\xd0\x2c\xf9\x62\xfc\xdb\x26\xad\x96\x25\x94\x03\xb0\x2f\x06\x8a\x42\xa9\x6e\xc9\x5c\xab\xfd\x2d\x0f\xa6\x3a\xad\x44\xf6\x40\x42\xf9\x55\x6f\xe1\x9d\x7d\xc7\x4d\x71\x0f\x9c\x35\xfa\xa6\x25\x48\x96\x96\xb9\xbf\x98\xc8\xcd\xeb\x90\xb3\x86\x66\x6e\xba\x54\x3a\x2a\x9b\x38\x7c\xc4\xf1\xf4\x54\x3c\x9a\xd5\x0e\xa2\xc3\x7e\x93\x93\xb4\x1f\x2e\x45\x56\xef\xf0\x90\xd5\x74\xef\x4f\x3c\x6c\x6f\x8f\x9a\x56\x53\xbd\xa7\x72\xf2\x08\xf6\x5f\xb5\x48\x4d\xbc\xe3\xa6\xa4\x87\xcf\xdc\x77\x2d\x4d\x41\xca\x55\x6a\x8b\xdb\x94\xbe\xc9\x8d\x87\x4a\xba\x5c\x4b\xad\xda\x0a\x12\x66\x74\x79\xf6\x6a\x2c\xae\xc8\x33\xe5\x51\xe6\xec\xaa\xd7\x27\xc8\x8d\x8d\x9e\x89\x6b\x6d\x1f\x19\xc6\x23\xf6\x6a\xd2\x0a\xe5\x57\x8d\xe7\xc3\xf0\x86\xb5\xae\xeb\xac\xb1\xd8\x87\x20\xf9\x2a\xd5\x43\x84\x4b\xa0\x42\x7e\x7d\x58\xe5\xa6\x4b\xa5\xa3\xf2\x91\x81\xbd\x70\xbb\xf3\x92\xd4\xa5\xbc\xc8\xfd\x9c\xa4\xe9\x27\xb6\xc5\x09\x25\x5f\xb1\x4f\x6a\x1a\xed\x3c\x67\xc8\x92\xcb\x17\x91\xa5\xa0\x76\x63\x63\x96\xb2\x63\xb9\x2e\xa4\x15\x91\xea\x5a\x37\x5b\xf2\xcc\x39\x25\x31\xe2\x5e\xda\xc5\x6c\x4e\x92\xd4\x86\xec\xae\x54\xef\x0d\xc1\x1b\x36\x16\x7a\x34\x6c\xef\x34\xe2\xa4\xdc\xd3\xa3\x60\xc2\xa0\xe4\x91\x6a\x46\x1b\xb2\x65\xae\xe1\xe4\x7d\x52\x5e\xf0\xeb\x0d\x46\x1e\x00\x57\x3a\xc0\x1f\xb3\x14\xd3\x1e\x63\x25\x3e\x6d\x0f\x5f\x21\x68\x75\x7a\x41\xc3\xa5\xf6\x42\x13\x24\x80\x1e\xad\x42\x34\x30\x61\x46\xe5\xf8\x39\x90\x05\x58\x42\xa6\x9a\x35\x2a\xc6\xaa\x24\xf8\xea\x96\x10\x62\xa1\x09\x7b\xf6\xfa\xff\x9c\x48\xd7\x13\x8f\x42\x14\xf6\x57\xa7\x65\x02\x70\xa9\x7a\x0b\xf0\xea\x48\x28\xea\xcd\xcf\xc3\x2d\x35\x51\x6f\xac\xa4\x6c\xd6\x88\x23\xe0\x33\x51\x15\xa2\x3f\xc4\x73\xe7\xe9\x14\xe2\x00\xdb\xef\x4d\x02\x98\xd1\x55\xe6\x3f\x5e\xc0\x1c\xcf\x28\x72\xa7\x51\x59\x8f\xfd\xd7\xbf\x2f\x67\xca\x9c\x9b\xdf\xdd\x68\x56\xf0\x44\x66\x56\xe2\x63\x0a\x90\xaf\x6f\xde\x3b\x34\x0a\x10\x1f\x87\x4f\x10\x41\xa8\xf5\x6a\x3c\x3c\x3a\xe8\x9f\x89\xaa\xb9\x21\x5b\x91\x40\x43\xe7\x49\x69\xaf\xac\x55\xee\xd1\xc4\x4d\x11\x07\x35\xe3\xad\xef\x43\x48\x12\x23\xfc\xfc\x31\x2c\xfc\x79\x09\x8a\x72\xc5\x20\xfd\x69\x1c\x85\x81\xef\xb9\x0e\xa3\x04\x57\x44\xde\x2a\x6d\x7b\x7c\x35\xe4\x2b\xd4\x1a\xfd\xe1\x7b\xf5\x44\xb5\x50\x4d\xc9\x45\x1f\x70\xc8\xe3\x0f\x80\x22\xd4\x13\xb3\x38\x26\x61\x0d\x0a\xfb\xb8\x3c\xdf\x9e\x76\xdb\x38\x74\x1d\x68\xeb\xfd\xca\x90\x37\x3f\xfc\x50\x55\x6b\x24\xb3\x6a\x08\xba\xd8\x63\xe4\xe4\xb9\x47\x86\x16\xf0\xaa\x02\x9d\xa2\x25\x71\x68\x67\x01\x9f\x00\x1f\xf7\xcd\x21\xf1\x83\x3b\x34\xc6\x4b\x9f\x52\x4f\x73\xde\x44\xdd\x6a\x39\xec\xc9\x89\x28\xf8\x02\x45\xb5\x1a\x69\xbf\x74\xdc\xcf\xa2\x8a\xa0\x49\x9a\x23\xda\x90\x16\x5a\x8b\xec\x48\x37\x7e\x0b\xeb\xc3\xf8\xec\x7d\x77\xd3\x9f\x0a\x12\xf7\x23\x31\x63\xd5\x18\x13\x49\x15\x52\xd3\x26\x95\x48\x19\xe9\x86\x5f\x42\xa8\xf6\xc9\x78\x22\x23\x76\xbe\x3f\xd7\xd2\x69\x6e\xad\x8c\x47\x65\x91\x93\x89\x2b\x98\x03\xfe\xd6\x93\x7e\x75\xc8\x82\x80\xe2\x6b\x03\x8c\x14\xd8\x91\xe0\x24\x11\xfa\x58\xd6\xa3\x7a\x5f\xcf\xcc\x32\x54\xa2\x6f\xab\x29\xa5\x68\xa4\xed\xc9\xd5\xa4\x8d\x20\x2d\xc5\x43\x99\x9b\xfc\xf6\x7a\xc1\x19\xb7\x47\x11\x2a\x8d\x9b\x6b\x87\x69\x26\x0a\x8b\xb7\xd3\x14\x55\x09\x04\x54\xe6\xd2\xeb\x66\xd5\x7a\xc6\xbd\x2b\x0a\x9f\x44\xdd\x70\xb3\x2b\x94\xd0\xba\xc9\x37\x25\xe0\x81\xd9\x66\xeb\xfd\xe8\x14\x70\xd6\x90\x4e\xf9\x40\x51\x9a\xa8\x78\xc6\x8e\x06\xa9\x62\x2b\x47\x9d\x3d\xec\x6b\x46\x94\x8e\xa5\x01\x11\x6d\xc2\xf0\x17\x4d\x4e\x39\xd2\x00\x70\x81\xdc\x97\x7c\x5f\x3b\x79\x8b\xfd\xd0\xcc\xfb\xdb\xfd\x76\xb9\x68\x2a\x4e\xca\x74\xcc\xc2\x25\xeb\x06\xf0\x82\x84\x6a\x2b\xc3\xd2\xe7\xd8\xf7\x0a\x68\x1a\xbb\x09\x15\xe2\x27\x73\xb2\x24\x3d\xc0\x93\x6a\x9c\x22\x79\x0c\x10\xc9\x95\x7a\x41\x8a\x94\x30\x13\x14\x3f\xaa\x43\x3d\x37\x0b\x52\x17\x10\x8e\xfa\xc6\x90\x77\x0e\xe7\x7d\xc2\x55\x53\xe7\xde\x41\xef\x01\xba\x8d\x30\x4b\x38\x7d\x09\xa8\x43\x35\x57\x39\x90\xe3\x43\x7e\x25\xae\xc0\x03\xf7\x9b\x3a\x1b\xf7\xe9\x90\x21\x50\xac\x4d\x0d\x21\x83\x20\x10\x5f\xd2\x20\xab\x60\x3b\x1c\xa8\x62\xfc\x0a\x04\xb2\x50\x8f\x5d\x21\xeb\xbe\x79\x73\x7b\xbb\x5d\xb7\x75\x1a\xf7\xba\xa4\x3f\x24\xd9\x88\x47\x90\xae\xda\xe1\x20\x9c\x3d\x13\x25\x4f\x2b\x1d\xa0\x11\xfa\xbe\xf1\x33\xa0\x74\xcb\x52\x8a\x27\x0b\x6e\xca\x43\x77\xc1\xc3\x3e\x2a\xfc\x13\xfb\xe5\x7f\x76\xbf\x03\x20\xf6\x34\x72\x7b\xbd\x40\x02\x80\x26\x3a\x5e\x45\xb2\xaf\x91\xb1\xcc\xcc\x26\x25\x5b\xf5\xb1\x27\x8d\x28\xfc\xa1\xa7\x81\x36\x44\x98\xc3\xdc\xf9\x09\xed\x69\x60\xf7\xdb\x4a\x70\x7a\xdc\xb7\xe0\x05\x95\x21\x47\xe2\xa7\x7c\xd0\xcd\x19\x29\x8b\x3e\x7b\xa7\x5a\x59\x6c\x9f\xeb\x15\x02\xaf\x4a\x46\xd4\xd9\xd3\x9d\x75\x39\x38\xf8\x3a\x8d\xc7\x48\x84\x41\x48\x5c\x1e\x9d\xbc\x67\x5e\x25\x55\x6e\x3e\x9a\x48\x65\x9d\xf6\x73\x66\x54\x82\x9e\xba\xa2\x34\x95\x7d\x21\x67\x5e\xa3\xec\x91\xf8\xe2\xe9\x67\x19\x8a\x63\xa0\x32\xfc\x40\xce\xff\xff\xbc\xdc\x54\x1f\xa9\x9a\x73\x33\x32\x6e\x95\x27\xb8\x58\x63\x40\x1c\xcf\xf5\x2c\x0f\x62\x2a\xb8\x33\x58\xfd\x77\xdf\x24\x98\x1f\xe7\x4c\x93\x5b\x1f\x8b\xc0\x60\x13\x6c\x23\xd4\xf7\xa2\xdf\x07\x72\xb8\xcf\x73\x9a\xd1\xd4\x65\xe0\x90\x03\x3b\xb2\xae\x0e\x9f\xe5\xc4\xd5\x2d\x4c\x31\x44\x84\x5b\xf8\x1f\xc8\xcc\xa5\xc3\xee\xc3\x27\x8a\x82\x7d\xba\x50\xce\x05\x14\x04\xd7\x30\x39\xd2\x88\xbf\xe1\xc6\x36\x18\x47\xfd\x66\xab\xe6\x36\xd0\xdc\xd8\x3e\xdf\xb3\x64\x15\x2b\xd7\xad\x70\xab\x92\x00\x24\xd0\x61\xb7\x06\x6f\x10\x82\x6a\xa7\xce\x38\xa6\xa4\x32\x51\x3a\x6b\x62\xca\xe5\x96\x4b\xc1\x71\x0f\xa8\xc7\x78\x94\x96\x5e\xe1\x34\xd0\x08\x4f\xd1\x35\x2d\x92\xf6\x99\xe5\x36\xac\x18\xfb\x37\x3b\xeb\x8e\x51\x15\xef\x0a\x55\x3c\x69\x71\xf1\xb4\x86\xc4\xe5\xa2\x7d\xcb\x3e\x32\x41\x61\x90\x0d\x53\xa1\xba\x92\x43\x99\x8b\x9e\xb0\xf9\x4d\x64\x98\x24\x0d\x64\xad\x20\xd5\x0a\x14\xd2\x9d\x2e\x44\x59\x2a\x73\xec\xa8\x9c\xd4\x8a\xd9\xde\x5d\xdc\x25\x8d\x26\x2c\xaa\x41\x88\x83\x75\x91\xa7\x76\xb1\x1b\xd0\x4c\xbc\x8c\x23\xa0\x0f\x07\xae\x08\x62\xad\xc1\xa5\x28\x15\x44\x52\x44\xbf\x76\xbc\x4e\x17\x45\xc7\xe1\xcd\xd4\x58\x50\xb0\x10\x22\x84\x9a\xf5\x41\x36\x86\x96\x9c\xc3\xea\xf5\x3d\xbd\x23\x60\x55\xbc\x7c\x9a\x6a\x97\xc2\x1c\x63\x7f\x2b\xb7\xc2\xba\xa0\x3b\x1a\x63\x42\xcc\xcf\x6e\xe6\x6d\x26\xc0\xa6\xeb\x1e\x41\x94\xea\x68\x1d\x81\x75\x9d\xfb\xdb\xe3\x61\xb5\xe0\x64\xa9\x4b\xe6\x1c\x57\x01\x58\x0d\x31\x06\x52\xd3\xd1\xd8\x18\xe6\x9e\x12\x58\xff\x35\x7f\xc0\x98\xb3\x15\x15\xc3\x72\x01\xe4\x2c\x02\xa2\xce\x46\x49\x88\xa9\x69\x4c\xc2\xfd\x2a\x92\x9e\x09\xa1\x85\xe5\xc2\x38\xcd\x32\x17\x69\x52\xae\x03\x15\x8e\x78\x11\x5a\xb9\xf0\xa2\x15\xc0\x86\x65\x8c\xcc\x49\xa8\xc6\x80\x88\xb6\x07\x1a\xa5\xc3\x75\xef\x04\x03\xc4\xd0\x51\xd2\x72\x69\xac\x39\x75\x90\x1a\x14\x3d\x1d\x0f\x78\x06\xb8\xc7\x36\x6f\x96\x20\x68\xc1\x3a\x48\xea\x6b\xf7\x9c\x86\x12\x13\x8c\xb8\x0e\xd4\x72\xd8\x75\xda\xc3\xea\x81\x05\xcb\x1e\x1e\x97\xb8\x65\x97\xf6\x68\x44\x1e\x5d\xd2\xfc\x8a\xcc\x46\x24\xd5\xd9\x09\x1f\x72\x08\x7a\xbf\x6a\x4c\x94\x71\xa0\x90\x13\x73\x0f\x65\x9e\x37\x9a\x57\x06\x29\xa1\xf5\x21\xed\xd3\x66\x1f\x6d\xdf\x98\x88\xfd\xc8\x0c\xb7\x3a\x48\xb6\xdf\x01\x39\x3b\x81\x5d\x36\x78\x67\x62\x27\x8b\xb2\x32\x3b\xcb\x7e\x78\xf4\x8a\xbc\x92\xb5\x45\xb7\xed\x6b\x35\xbc\x20\xc2\xca\xe5\xfa\xc0\x53\x0e\x91\xe6\x07\xa8\x9e\x14\x80\x73\x60\x0f\x32\x68\x85\xf2\x10\x1c\xd7\x34\x09\x4e\x14\xf7\xe3\x08\xf3\xa6\x3f\x09\x20\x5d\xe0\x11\xba\x4e\xf8\x81\x34\x9e\xde\x0a\x88\xf9\x90\x17\xe6\xe4\xbc\x07\xc3\x2f\x75\x4f\x10\x7f\xf4\x77\x36\x37\xc6\x02\x40\xb8\xdf\x59\x1c\xee\xe8\x7d\x0a\x12\x8b\xdc\x98\x85\x81\x43\xa7\x6b\x0a\x3c\x94\xd1\xa0\x73\xd6\xea\x0c\x54\x78\xca\x63\x15\xf8\x92\xfb\x19\xf8\x44\x39\xe4\xb8\x10\xaf\xe0\x78\x05\xa3\x80\x50\xf5\xcd\x43\x7d\xe3\xd8\x85\x80\xb1\x33\xd4\xe3\xe6\x50\x79\x97\xf9\xaa\x09\xb5\x4c\x75\x8e\x43\xff\xdc\x8c\x38\xbc\x6f\xf3\x99\x22\x77\x56\x69\x97\x75\x2e\x43\x70\xba\x62\x5b\x6e\x7a\x25\x0a\xf7\x0d\x4c\xe7\xf8\xed\xfd\xad\x21\x8c\xb2\xde\x02\x48\x63\x20\x0f\x6a\x84\x95\x25\x93\xbd\x34\xc5\x42\x40\x38\x6e\x66\x5c\xd5\xf7\xd3\xf1\x24\xec\x1e\xab\x91\xb6\xf1\x98\x60\x7e\x15\x35\xf0\x80\x7c\x27\x22\x1d\x18\x46\x4a\x7f\x33\x85\x0b\xb4\x12\xc0\x32\x5d\x01\x59\x93\x4b\xef\x75\x8d\xc1\x39\x37\xc4\x69\x8f\xfd\xd1\x41\x9a\x4f\x6f\x55\x25\xb0\xf5\xb9\x98\x29\x14\x2e\x0b\x52\xdd\xd0\xb7\x33\xdc\xe9\xac\x15\xa4\x0e\x48\x98\x8f\x7d\x4c\x00\xfb\x52\x0f\x79\xea\xe1\xf9\xf2\x4c\x9a\xcf\x4e\x6a\x4b\x7c\x1c\xc8\x99\x3d\x25\x16\x4c\xaa\x99\x2f\x0f\x50\xe8\xf0\xb6\x76\x8d\x8d\x04\x25\x89\x0e\x27\x49\x04\xbd\xae\x3f\x93\xfb\x38\x7d\x2b\xe6\x68\xf6\x6c\xc5\x80\x04\xe0\x72\xca\x70\x50\x4c\x53\x07\x06\x0d\xd5\x61\x1e\x88\xe6\xd4\xed\x1b\x0d\x9f\x8c\x9d\xa3\x8a\x70\x9e\xc6\xc7\xd2\xbd\x94\xac\x24\x08\x86\xf0\xce\x0b\x55\x50\xb0\xf4\xa4\x2d\xd6\x9b\x36\xca\x70\x7d\xa4\xaa\xe9\x1a\x38\x1d\xc8\xb4\xb3\x64\x86\x44\x52\xbe\xd1\x5e\xa6\x74\x57\xee\xe5\xbe\x27\xe7\x83\x0a\x22\x9d\x29\x3c\xb2\x40\x87\xee\xc9\x79\xec\x16\x25\x29\x2f\x8c\x46\x22\x39\x61\xc7\xc4\x95\xba\x62\xd9\x49\xbf\xd3\x33\x31\xdc\x31\x60\x9c\x9d\xdd\xf5\x14\x1c\x8b\xfb\x41\x47\x1e\x1c\xe4\x4c\xc0\x30\xd4\x6e\x66\xa1\x37\x07\x21\x55\xd4\x82\x6a\x6f\xeb\xde\x3c\x94\x9d\xb7\x9f\x7e\x24\x0e\x26\xb6\xe0\xe0\xd9\xcc\xaf\xf9\x4d\xb8\x17\x46\xb2\xef\x40\xff\x88\xd5\x83\xf9\x9e\x8c\x58\xf0\xf3\xd0\x75\xce\x50\x2f\x2d\x05\x7a\xd4\xa9\x3f\x4c\x73\x07\x7d\x18\xcb\x90\x23\xcc\x9b\xbe\xb7\x73\x80\x5a\x4d\x91\xfe\xc4\x35\xdf\xb8\x43\xbd\x0a\xe5\x83\x5e\xd3\xdd\x50\x62\x9c\x24\xb6\x35\x3e\x1d\x30\x39\x04\x97\x23\x20\x5a\xdd\xf8\x42\x4f\x4a\x32\xcc\x1e\xb1\x6f\x87\x61\x5f\x10\xa4\xa5\x38\x4f\xb0\x8f\x2d\x33\x2e\xa9\xfd\xe8\x57\x1a\xbf\x1d\x8e\x41\xc6\xbd\xbd\xbf\x59\x14\x10\x03\xce\x99\xfe\xf2\xd3\x7e\x87\x56\x8e\x30\x77\x28\x5e\xc0\xa6\x39\x2e\xe8\x85\x22\x47\x42\x5a\x1a\x48\x34\x96\x31\xe7\x38\x47\xbd\x61\x90\xf7\x3d\x96\x80\x69\x08\xcd\xd2\xf9\x6d\xde\x05\x2b\x4a\xe6\x6c\x22\xad\x0b\xa1\x5c\x9a\x31\x61\xad\x1c\x5f\xfe\x5d\xa4\x64\x1e\x33\xf6\xfd\xde\x8a\x3c\x1b\x82\x76\x99\x76\x05\x78\x33\xf0\x74\x63\x9a\xe2\x44\x5c\x4f\xa0\x9a\x30\x48\xe7\x10\x10\x1f\xee\xd5\x02\x43\xa7\x9d\x3f\x95\x8a\x91\xa2\xc2\xca\x74\x8a\x1a\x52\x5b\x5c\xe8\x9f\xfc\xe0\xa4\x10\x28\x8b\x5a\x30\x6a\xe2\x03\x6b\x3d\xa7\xce\xef\x8f\xe0\x32\xef\x21\x18\x62\x4f\x00\x8e\xe9\x42\x68\x81\xc5\xa7\xbb\x05\xf4\x32\x6c\x3d\x5f\xd5\xc6\xbc\xda\x73\x5c\x35\xb7\x8f\x71\x43\xdf\x92\xa5\x4c\x09\x8e\x9c\xf0\x8b\x7e\xcc\x41\x6c\xef\xc4\x38\x88\xa9\xf4\x85\x25\x2f\x66\x2f\x6c\x0e\xea\x96\x40\xa9\x6f\x4b\x15\x03\x25\x24\x9c\x82\x3e\x9e\xc6\xe5\x1a\x9f\xe6\x45\xc9\xb5\xa1\xe2\x09\x2a\xc2\x38\xa4\x97\x02\x53\xf4\x5e\x08\x41\xc0\x6f\x83\x44\x35\xe9\x91\x16\x27\x15\xec\xf6\x21\x1c\xab\x61\xe7\xc6\x12\xee\xbd\xb0\x41\xa1\x10\x6e\xd1\xbb\x49\x09\xc7\x3f\xde\x0b\xa8\x06\x42\x1f\x8b\xdc\x5b\xe7\x59\xe0\xcf\x36\x5f\x6e\xdc\x95\xaf\x3f\xd8\x1b\x32\x7b\x4e\x3e\x78\x7c\x54\xca\xe0\xd6\x31\xd9\x98\x10\x86\x91\x34\xef\xa6\x80\x3d\x46\x9f\x13\x01\x19\x84\x64\x42\x60\xbf\x28\xe9\x96\x8b\x6c\xcd\x78\xfd\xc2\x5a\x5c\x76\xa3\xa7\x41\x56\x8f\x53\x95\xa3\xa5\x53\xcc\xab\x47\xa6\xdf\x38\x86\xfa\x9e\x80\x99\xde\x3c\x06\x98\x68\xbd\xcf\x7a\x41\x9a\xdf\x7d\xd3\xd6\x8c\xe4\x5a\x73\x7e\xb0\xeb\x18\x16\x94\x51\xcf\x1d\x96\xe8\x61\xde\x25\x88\x2f\xb1\xfd\x98\xac\xa3\xb0\x67\x50\xa1\xfd\x19\x62\x58\x73\x80\xb8\x83\xd6\x05\x2e\x85\xc3\x60\x17\x23\xcb\x63\x8d\x2f\x9f\xb6\xda\xe9\x9c\x31\x7d\xbc\x01\x39\x69\x42\x58\xda\x53\x65\x03\xef\x9b\x66\x51\x0e\x21\xa0\x70\x1a\x53\xb2\x53\xff\x27\xff\xf1\xdb\xd5\x8b\xdd\x86\xb3\xf6\x72\x44\x43\xa2\x55\x00\xaf\x64\xe6\x63\x79\xfb\xa9\x0f\x54\x7b\x30\x11\xea\xe1\x73\x60\x20\x72\xf4\x4c\x2e\x5a\x56\x31\xaf\x40\xa7\xb2\xe5\x2a\x0f\xe3\x09\xde\xbd\x39\xdf\x37\xcd\xc1\xe0\x81\x87\x22\x47\x87\x4d\x2c\x23\x5f\x5c\xca\x3a\x3d\x51\xd1\x23\x22\x09\xef\x3a\x3f\xc8\xee\xe0\xb6\xb8\x54\xe2\x89\xec\x42\xe0\x74\x68\x81\x6c\x46\xa0\x18\x30\x21\x38\xaf\xb7\x2d\x02\xa4\x60\xea\xa3\x02\xea\x79\xf3\x0e\x0f\x84\x63\x88\xd4\x0c\xee\x65\xc3\x0f\x24\xdd\x54\x40\x8e\x0e\xaa\x43\x7d\x00\xcf\x65\x77\x8a\xb2\x34\x2e\x1f\xf3\x48\x23\x9b\xfd\x98\x59\x82\x5f\xd2\xc3\x7f\x84\xfc\x56\x4a\x86\x08\xf1\x23\xa5\xc1\xc6\x10\x48\x8c\x97\x5f\x24\x5c\x08\xcd\xfe\xcb\x56\x69\x85\x0e\xfc\x9f\x64\x15\xe1\x59\xd9\x35\x10\x94\x45\x94\x3d\x6b\xc4\xec\x45\xee\x4c\xed\xc9\x8b\x8d\x8d\x70\xa5\x24\x9b\x5a\x9e\xaf\x8f\x75\x95\xee\x66\x19\xfd\x8a\xd5\x7c\x02\xaf\xfc\x36\x75\xa2\x73\x89\x3f\x14\xa9\x47\x8b\xca\x51\x07\xcc\xd8\x84\x2e\xbb\x58\xdd\x1c\x94\x43\xe3\xcf\x4a\x0d\x73\x24\xc8\xe9\x98\xcd\x96\x2f\x92\x29\xa9\x25\xcd\xe7\x4e\x75\xe3\x8b\xfa\xad\x04\x6a\xec\xd1\x79\xed\x4e\x43\xfb\x9e\xde\x9f\x79\xfa\xba\x93\x86\xc3\xe6\x9e\x5d\x4e\x2a\x1e\xa6\xda\x74\x42\xeb\x34\xd8\x37\xdc\x6f\x9a\xf7\x32\xed\x82\x86\x27\x3f\xdd\x73\x7b\xd6\xe4\xe6\x14\xdd\x59\xda\x6b\x79\x5d\xaf\x24\xb8\xce\x8b\x27\x8f\xf7\x64\xc9\x11\xa7\xab\x6d\x2e\x56\x1d\xd4\x38\xa8\xc0\x10\x08\x96\x7b\xf5\x67\x9a\xda\x43\x4e\x16\x82\x97\xb7\x55\xa5\xc3\x96\x30\xed\x46\xa1\x43\x14\x30\xff\x59\x60\x7f\xcf\xa4\x55\x43\x6f\xf0\xa0\xcc\xa8\x72\x14\x44\xd8\xaf\xec\x80\xe3\x4e\x61\x1d\xc1\x51\x43\x29\x5d\xdd\xb3\x7d\x84\xa1\x89\xdd\xbb\xd3\x8a\xcd\x53\x44\x68\x32\x38\x99\x2d\xf0\x53\xb9\xbd\x4b\x29\xc8\x58\x1b\xec\x7e\x81\xa9\xa7\xa8\x65\x8e\x04\xf4\x39\x1a\x40\x5f\xb2\xf0\x59\xec\xb9\xfc\x37\xf7\x5e\x1e\x0a\x8a\xa7\x7d\x2a\xaa\x27\x22\xc4\x13\xea\x5a\xcc\xff\xad\x17\x7c\x62\x2d\xf9\x29\x2a\x9e\x0d\xff\x7d\xc7\x0f\xf8\x7f\x10\x58\xfe\x16\x44\x84\x05\xc3\x48\x26\x2c\x0d\x48\xf3\xa8\x0b\x0c\xd7\x3c\x8f\x73\x08\x50\xd0\x5f\xa3\xca\x81\xa5\x1f\x7e\x7d\xb9\xec\x45\xdc\x12\x79\x4e\x95\x70\xea\xf7\xd2\x52\x11\xa9\x8b\x29\xc0\x5c\x50\x04\x9c\x9d\x8c\x46\x88\x0b\xb7\x37\x8d\x6c\xd4\xef\x79\x33\xf6\x64\x18\x8b\x7c\xa9\xfb\xb1\xe2\xda\xfd\x8a\x17\xe1\x10\xf3\xce\xd5\x08\x3e\xeb\x7c\x53\x46\xd2\x05\x51\xd9\xb1\xf8\x9e\xdd\xdb\xc3\x1d\x09\xfd\x20\x36\x88\x63\x38\xa2\xc7\xa0\x9c\x3d\x2f\x4f\xe5\xc7\x8d\x81\xa4\x13\x18\x12\x04\x76\xd9\x4d\x05\xf9\x6a\xf3\x09\xf3\x5b\x88\xf5\x1d\x85\x91\x18\xe8\xee\x20\x68\x01\xaa\x32\x85\x59\x6f\x99\x00\xdc\xe8\xbd\xff\x64\xe9\x7a\xc1\x12\x89\x52\x43\xfe\x08\x0d\xe8\xea\x7f\x9f\x77\x45\x1a\x0b\x7b\x38\x2c\xbe\x7e\xbf\xcc\xc4\xa2\x3e\x57\x3d\xbf\x66\x8a\xc2\x6a\x6c\x32\xd7\x10\xa3\x15\xe6\x42\xb9\x4f\x30\x8b\x36\x22\x62\x5e\xcd\x37\x54\x14\x68\x65\x4b\x17\xfa\xb9\x78\xf7\x5e\x91\x8f\xab\xf7\xdf\xfa\xf0\xad\x57\xf2\xe6\x76\xbd\xec\x5a\x51\x24\x91\xe7\x32\x02\xad\x25\xe3\x2d\xf9\x79\xc7\xec\xaf\x8b\x06\x8a\x92\xf5\x72\x91\x25\xf1\x0a\x5e\xc2\xe0\x48\x73\xbe\x65\x0c\x90\x51\xfd\x2a\x8f\xb7\x0f\x7e\x3c\x42\x1a\x3f\x7e\xbf\xe8\xea\x7a\x90\xab\x0d\x29\xe7\xd9\xc0\x10\x1d\x8e\xf0\x63\x76\x7f\xbe\xc7\xa7\x79\x5e\x0a\xd9\x6f\x14\x27\x4d\xc4\xff\x02\x1d\x4e\xe4\xbd\x3a\x52\x95\xbc\xe0\x82\xf9\x64\x21\x97\x48\x76\xc6\xde\x36\xbc\xdd\x32\xb9\x1f\x59\x28\x30\x21\x65\xc6\xfb\x40\x0d\xea\x6a\x4f\x1e\x88\x90\x86\x96\x89\xe4\xe3\x45\x93\x6a\x06\x50\x6e\xc7\x73\xf7\x3e\xcb\x9d\x4f\x61\x1c\xe2\x08\xec\xd8\x30\x8d\xac\x8b\x59\x05\x90\x35\x8d\xe0\xb5\x3e\x1a\x98\xb6\x11\x2f\xd6\x9d\x94\x17\x97\xf3\x68\x1f\x67\xd0\x63\xe0\x91\xe1\x3e\x44\xbb\x9b\xc5\x01\xd0\xaf\x1c\x94\x05\x95\x10\xf1\xd1\x02\x67\x3d\xf7\xc5\x04\x25\xea\xbf\x49\x9d\xd1\xa8\x6c\x6b\x94\xe5\xd3\x6a\xcc\x1d\x01\xdf\x99\x11\x11\x66\xc7\x25\x04\x18\xd7\x97\x9b\x32\xb1\x92\xc3\xd7\x1c\x7d\x73\x68\xcf\x54\x77\xcb\xdb\x3b\x3f\x90\x8a\x8d\x4c\xe4\x3e\x49\x14\x10\x6b\xb6\xfb\xc6\x7e\x4a\xa4\xd9\x86\x27\x89\x31\x69\x94\x42\xd2\x66\xde\x30\x22\x2e\xf8\xf9\x52\xb2\x92\xe0\x30\xb8\x75\x5e\x88\xa8\xdc\x49\x21\x24\x99\xab\x21\x52\xc5\x8d\xab\x94\x04\xad\x4e\x45\xf9\xcc\xba\x26\x77\x93\xd2\xb1\xf7\x1a\x71\x9a\x52\x21\x74\x30\xde\x1d\x09\x86\x1b\xe2\x76\x19\xf5\x13\x5b\x5e\x3f\x3f\x8a\x60\xe1\x41\x97\xbb\xc4\xaa\x4f\x45\xa1\x07\x77\x8d\x05\x49\xe9\xd4\x44\x0f\x0e\xf0\xe0\x15\x4c\x4c\x49\x76\xc5\x53\xb7\xea\x49\xd8\x81\xd9\xe3\x88\x4b\xa2\xb8\x58\x67\x67\xc0\x27\xbc\xe1\x9f\x5c\x39\x19\x7e\xb0\x79\x2d\xc1\x50\x4e\x76\xf1\x8a\x75\xee\x69\x65\x76\x19\x55\x4d\x74\x11\x56\xb0\xc9\x8b\x58\x12\x7b\xfc\x87\xce\xb9\x24\xbe\xde\xb0\x27\x7f\x05\x78\x33\x9d\x95\xdb\x54\xc2\x8a\x19\xc8\x4b\xae\xb9\x9a\xa4\x98\xa6\x28\xf6\xdd\xc3\x0f\x24\xde\x0e\x8b\x34\xec\xe3\x1e\xbe\x22\x78\x6a\xd8\x93\x6d\xf8\x7f\xf0\x37\x63\x32\xd6\xc4\xb4\x7d\xae\xba\x59\xcd\x05\x59\xa9\x4e\xdd\x1e\x6f\x2b\x1d\x33\x6f\x2d\xdb\xb7\x5b\xde\xdd\x9e\xef\xae\x5f\xdf\xbc\xac\x76\x0a\x51\x50\xce\xb3\xd8\x84\xc7\x10\x23\x8a\xaa\x01\x4f\xbe\xde\xe2\x7e\x6f\xca\xde\x4a\x14\xdc\xce\x94\x8c\xeb\x37\xf9\x31\x85\x51\x7b\xe9\xc4\xe1\x62\xa1\x06\x30\x8d\x63\x68\x84\x76\xc0\x72\x21\xea\x00\xc0\x58\x47\xca\xbe\xaf\x18\x37\x71\x12\x77\x76\x3d\xa9\x15\xa5\xb9\x62\x8f\x76\x1c\xfc\x1c\xd7\xe9\x38\x4f\x73\x82\x2f\xfb\xfa\xc9\x31\x33\x51\x4d\x0f\x73\x57\x5d\x01\x58\x6f\xe9\xcf\x4d\x8e\x64\x7f\xf4\x5a\xa0\xb1\x8e\xa2\xe7\xd2\xf5\x28\x87\x71\x43\xf9\xec\x06\x2c\xcb\xaf\xa8\x40\x0c\x86\xec\x9e\x5e\x9e\x0d\x16\x51\xb2\x52\x04\xe4\x94\x11\x8a\xa5\x61\x83\x04\xe6\x0b\xf4\x46\x63\xe8\x4d\xed\x91\x03\xdb\xca\x73\x96\x01\x0b\x55\x8c\xe4\xec\x2f\x99\xc3\x9a\x7c\x21\x76\x61\xd4\xeb\x32\x72\x12\x9b\xa2\x14\xf8\x40\xb8\xa2\x93\x77\x27\xdf\x56\xa2\xef\xc6\x87\x32\x97\x0b\x45\xee\xed\xe4\x8b\x62\xc1\xf5\xde\x78\x5d\xee\xba\xf9\x91\xc1\x20\xd6\xc2\x27\xe9\xac\x05\x34\xdd\x54\xf9\x30\xdc\x08\x82\x35\x05\x9e\x29\x80\x47\xbc\x95\x80\x8e\x91\x95\x20\x05\x18\x75\x63\x4e\xb8\x6a\x4f\x7c\x4c\xc3\xe4\xc5\x06\x06\x6f\x36\x43\x60\x2a\x7a\xaf\xe1\xb3\xa7\x6f\xf4\x95\x86\xcd\x35\xe3\xd7\x8c\xaa\x87\x1f\x2c\xda\x05\x98\x6f\x06\x49\xa9\xe3\xc3\x58\xb1\x9c\xd0\x68\xe6\x6a\x05\x07\x37\x47\x60\xba\x80\x50\xf5\x54\xf4\xa8\x05\x79\xee\x2b\x29\x65\xd0\x9e\x80\x51\x69\x6f\x97\x44\x18\xbe\x68\xa7\x41\x98\x1d\xbc\x09\xb7\x58\x23\x57\x02\x75\xe0\x71\x95\x4c\xe0\x2d\xc9\xda\x91\xda\x77\x1d\xd8\x3b\x9f\xeb\x33\x4b\xea\xd8\xdf\x16\x3f\x55\xbf\xbf\x24\xd8\xe7\x04\xff\xb5\x85\x6e\x0f\x91\x88\xc2\xb0\x65\xe2\xdc\x26\x42\x90\xc4\x93\xa0\x73\x8e\xec\x3a\x8a\xad\x7a\xe6\x7b\xa0\x0d\x33\x5f\x50\x37\x06\x83\x7d\x0c\xe8\x16\x4f\x19\xec\xc6\x46\xf2\xcf\x4f\x42\xc5\x6a\x40\x6d\xd2\xc5\xd4\xcf\x79\x4e\xe4\x4e\xb6\x89\xfc\x3a\x27\x88\x61\x3d\xf8\x38\xb5\x06\xe9\x65\x43\x72\xb5\x02\xf8\x9d\x7a\x12\xe0\x35\x0f\xe3\xf1\x91\xa7\xd1\xf5\xe6\x58\x0c\xe9\xa5\x5c\xf7\x0a\x14\xef\xaf\xbf\xf1\xad\x4b\x18\x21\xb0\x06\xf8\x9a\x94\x45\x74\x06\x95\x97\x00\x58\x6e\x92\xf3\xad\xb6\x83\x6e\xb8\xdd\xd9\xa2\xe8\x44\xe6\xbd\x10\xf0\x5e\xa9\x00\x45\x03\xd0\x94\x64\x6d\x3a\x48\xe9\x30\x13\x73\x28\x4a\x9e\xfa\x80\xd0\x33\x89\xc8\xbb\x30\x94\xbb\xc2\xdb\xb6\xd6\x6a\xf1\xea\xbd\xc3\xb4\x92\x60\xb0\x20\x61\xb5\x1a\xde\x23\x19\xae\x07\xb8\x5b\x44\x2b\x1e\x47\xce\x6c\x45\x01\xb2\xce\x11\x03\xae\xf1\x2c\x6b\xe2\x2d\x64\x34\x9e\x6f\xc0\x09\xd6\x5a\x55\x62\x88\x7a\x67\x7f\xe8\x90\xd9\xaa\x0d\xb4\x36\x68\x55\x8f\xd2\x90\xd8\x58\xb2\xc8\x6d\xb5\xd0\xa9\x0f\x84\x74\x5f\xd8\x9e\x29\x69\x8f\xde\x55\x49\xe7\x4b\x11\x56\xeb\xac\xf0\xb9\xf1\xee\xf5\xab\x19\x36\x7b\xe2\x3b\xfe\xa1\x7b\x64\xb2\xd6\xb9\xcc\x5e\xa9\x21\x80\xb4\x0a\x72\x97\x49\xb3\x9e\x8b\xd1\x47\x68\xc8\x4a\x23\x87\xfb\xc3\xc2\x69\xc1\xd3\xcb\x58\x72\x24\x8a\x84\x18\x5e\xcf\x80\x84\x13\x0e\x33\x24\x34\x03\xda\x5d\x97\xe0\xae\x5c\xc1\xb9\x18\x37\xc6\x73\xce\x3b\x93\x3d\x24\xd2\x65\x60\x8c\x7b\x70\x8f\x21\x85\xa5\xde\x9d\x73\x00\xc7\x09\xad\x43\x71\xb7\x00\xf5\x58\x0b\xd6\x46\x1b\x6c\xe8\x74\xf0\xd1\x6f\x7f\xc9\x51\xea\x0c\xa6\xf4\x2b\x7a\xcf\x02\x45\xde\xba\x5a\x2d\x4a\x1e\x5c\x87\xd7\x74\x21\x51\x20\xeb\x72\xbe\xb4\xa7\xe0\x33\x1d\x32\x09\x71\x60\x8f\x7b\x6c\x75\x3a\x64\x5c\xb9\xf1\x10\x0f\x52\xc3\xd0\x6d\x35\xe6\xa5\xdc\x06\x80\x38\xd8\x4f\x7c\xdc\xee\x76\x4f\x8f\xfb\xed\xaa\xc2\xc1\xa5\x33\x46\x05\x6b\x4a\x26\x06\xdc\xbe\x3d\x3c\xc5\x10\x87\x27\xa1\x2e\x91\xc8\x41\x23\x02\xd8\xe6\xb0\xdd\x36\xf3\x5e\x99\xd5\x9f\xe7\x6b\xc7\x6d\x73\xc8\x5c\x00\x59\x8f\x86\xe6\x70\x17\x96\x46\x41\xde\x93\x09\xd8\xcd\x2e\xea\x41\x9e\x9d\x0a\x9e\x5f\x71\x49\x8c\xfc\x40\xd1\x18\x07\x65\x34\x25\xbb\x5f\xb1\x4c\x56\x06\xf6\x8e\x3a\x8a\xe1\xb8\x42\x14\x3d\x76\x9f\x23\x6d\x52\xd0\x60\x3b\x3e\xc2\x21\x73\x75\xf5\xaa\xed\x50\x86\xc6\x09\x82\x7f\xcf\x6b\x43\x2f\xeb\xfb\xa0\x52\xe3\xe1\x48\xd0\x86\xf7\xdb\x11\x73\x15\xc7\xfe\x80\x54\x3a\x23\x6b\x7b\x22\xa6\xe8\xae\x6a\x91\x3c\xce\xe9\x8f\x14\x89\x94\xd1\x61\x5a\xbe\xf8\xe0\x1f\xc1\xae\x43\x3d\xbc\x53\xcd\xa8\x7a\x21\x32\xcf\x7e\xdd\x7f\x03\x87\x69\x5c\xb4\xe4\x96\x08\x8a\x04\xb9\xc8\x23\x7c\x23\x55\x70\x5e\x8d\x34\xb8\x20\x1c\x18\xde\xf5\xaa\x67\xf1\x59\x3d\xb0\x87\x0d\x3a\x94\x7f\xa1\x88\xbd\x51\x81\xe7\x5c\xaf\x54\x9d\x53\x10\x75\x3a\x04\x24\x65\x96\xe7\x3b\x3a\xad\xb5\xe9\xad\x42\x9e\x8c\x32\xab\xd9\x0f\x93\xce\x4d\xb7\x00\x20\x50\x83\xb5\xd7\xb0\x88\x61\x0f\x87\x11\x75\x97\x6f\x7c\xa4\x83\x7e\x65\x0e\xd8\xef\x57\x4d\xc5\x82\x34\xb9\x9b\x9c\x10\xf6\xa8\x29\x69\xd7\x7e\xc0\xad\x20\x58\x3a\xda\x56\xb5\x57\xa8\x40\xed\x84\x14\x6a\x5d\x50\xf7\x7d\xc4\xd2\xc5\x05\xe6\x95\x2d\x2c\xe6\xa9\xca\x1c\x8f\x9d\x35\x1d\xaf\xf3\x67\x6a\x8a\x68\xed\xf7\xef\xca\xd7\xde\xb4\x52\x51\x66\xf4\xfb\xda\x43\xb6\x0c\x0f\x4d\xb5\x4f\xb2\x47\x69\xdc\x29\x9a\xda\x76\x36\x11\x8d\x89\x50\xbd\x0c\x72\x75\x91\x46\xcd\x93\x78\x87\x78\x2a\xb4\xc3\x31\x91\xd0\xc7\x22\x63\x22\x1f\x16\x48\x17\x42\x7a\x9e\xc0\xa1\x2c\x39\xa5\x1b\xe3\x85\x23\x3a\xf2\x3a\x6d\x8c\x70\x67\x89\x81\xef\x1e\xe6\xc1\x51\xc5\xd7\x05\xec\xa9\x79\x72\x24\xb8\xef\xf6\xc7\x72\x59\x2c\x28\x52\x9c\xb5\xdb\x88\x68\x8c\xc9\x80\x3d\x61\x73\xe3\x43\xcf\x8b\x2f\xb1\xd9\x53\xe6\x98\x9e\x06\x23\x06\x97\x32\x7b\x38\x7f\xa5\xcd\xc2\x42\x60\xbb\x01\x97\x89\x79\x0e\x62\xb4\x1a\x77\x96\x5e\xfb\xb3\x45\x3b\xc0\xd7\x54\x8c\x77\x58\xbb\x5c\x4e\x0d\xb3\x2b\xcd\x8d\x7e\x02\xb7\x2b\x2e\xc2\xb0\xe1\xac\x74\x44\x36\x56\xe2\x76\xd7\xf6\x89\x28\x5f\x36\x63\xee\xd1\xd4\x7d\x9d\xeb\x1e\x11\x77\xf5\x79\x76\x75\x52\x66\xcd\x20\x21\x27\xf2\xa2\x4d\xba\x77\x4c\x4a\x53\x0b\x4a\xb4\x9a\x40\x87\x57\xb6\xd1\xb6\xe4\xb9\x53\x4e\x0a\x4d\x3f\xa0\x14\x82\x6e\xf4\xde\x01\xf8\x86\x55\x4c\x96\x06\xfb\x22\xa4\x19\xd8\xa0\xd6\xe5\x99\x4e\x53\x14\x98\xe9\xd3\xbd\xe7\x8a\x12\xba\x5b\xdb\xc8\xad\xb1\xf4\x0a\xa8\xb9\xc9\x07\x4f\x8e\x14\x05\x5b\x03\x23\xb2\x9b\xca\x69\x5b\x00\x86\xf0\x36\xa2\xe8\xd1\x97\x70\xbb\x55\xc3\x8d\xdc\x18\xf2\x05\x12\x33\x3b\x4c\x72\x3e\xf2\x68\x3c\x11\x93\xd2\x71\x67\xab\x21\xa7\xcc\xe9\x14\xc8\x74\x2f\x69\xf3\x14\x5c\x57\x31\x17\xb0\xce\xcc\x5c\xab\xf3\xcf\x08\x5a\xb2\x70\x15\x3d\xc0\x64\x78\x17\x41\x4e\x0a\x4c\xb6\x85\xc5\x6c\x6a\x73\xb8\x82\xc2\xc9\x73\x08\x43\xa4\xa0\x6d\x26\x97\x27\x68\x43\x22\x96\x5e\xca\x26\x7d\x98\x9b\x22\x9c\x9c\xa0\x2f\x6d\x57\xa4\x7c\x8a\x9b\x2f\x00\xe6\x0f\x2a\x50\xb4\x93\xc4\x28\x85\xc3\xe7\x46\x3d\x24\x86\x33\x7a\x80\x63\xda\x84\x83\x22\x09\x25\x23\x18\xe6\x99\xa2\xc4\xd0\xa6\x47\xad\x80\xe1\x73\x26\xdf\x37\x54\xc1\x1f\x1e\x32\x63\x43\x2a\xed\x41\x96\xa8\x34\x2e\xde\xfb\xb6\xec\x8e\x15\xc1\xda\x11\x22\x18\xe8\x7c\x0a\x3f\x6e\x98\x02\x72\x7d\xe4\x4a\xe8\x28\x99\xb7\xe0\xd4\x0f\x09\x8c\x79\x29\x8f\x37\xb4\xc5\xcd\x3e\x35\x91\x77\x6e\x76\x9b\x45\x5f\x97\x8c\xd8\xd6\x46\x89\x3d\xf9\x6d\xc9\x2b\x43\x06\xb1\x4b\xb1\xda\x37\x50\xa6\x7a\x50\x3e\xab\x38\xd0\x1b\x4b\x51\x42\x42\x48\x6e\x48\x68\x68\x74\x6f\x4c\xa8\xe3\xec\x19\xcd\x30\x05\x2c\x49\x44\x01\x3e\x3f\x8b\xef\x08\x94\xd0\x68\x8a\xcb\x5f\x34\xf1\x4b\x1d\x40\xc6\x09\x89\x69\xbc\x9a\x1b\x28\x26\x83\xe7\xd8\x02\xb7\x41\x0b\x5d\xd2\xa4\x40\xaa\xfa\x90\x9e\x28\x17\xa8\x38\x8f\xc2\x8c\xcc\xf5\x11\x80\x39\xc1\x3e\xed\xb0\xe1\x5a\x10\x23\xdc\x88\xa3\x5a\x02\xf1\x85\x6f\x81\xd6\xd5\x54\x40\x74\x42\xa7\x69\x7a\xe1\x56\xf2\xc5\x67\x20\x4f\xe7\x4d\xa6\xb3\x5d\xfd\xa8\x67\x8b\x38\xa6\x40\xea\x0d\x05\x9c\x4d\x70\xd1\x92\xc3\xdd\xc5\x13\x1c\xb7\x46\x23\x1d\x97\xec\x88\x12\xb1\x74\x03\xdb\x01\xb5\x09\xf5\x83\xf0\xc2\xad\x25\x37\x76\xce\xef\xf7\x50\x26\xf5\x2c\xa7\xed\xe6\xc9\x04\x33\x06\xf8\xa9\x44\xec\x90\xe9\x54\xd7\xdd\x2a\x00\xa2\x96\x4e\xb3\x74\xc3\x07\x49\x05\x62\xb8\x97\x11\x8e\x63\xfb\x04\x07\xb3\x03\xbb\x68\x5a\xc8\xd5\x9a\x7c\x03\xb9\xed\x99\xac\xac\xae\xc2\x79\x0a\x00\x42\xc9\xce\x50\x53\xd5\x0a\x0a\x74\x70\x90\x93\xb7\x97\x02\xce\xc4\x39\xb9\x9e\x7a\x6d\xc1\x99\x41\x03\x7a\x11\x18\xf6\x09\x6a\x56\xee\xde\xc2\x51\x4e\x87\x3c\x6c\xb8\xb2\x39\x2d\x2d\x30\xdf\x0e\x01\x46\x2b\x67\xcc\xfd\x3d\x45\xde\xb8\xa8\xfd\x57\x65\x19\x4f\xa6\x2b\x1e\xc8\x7b\xcb\x2b\xd0\xe5\x31\x23\xa8\xe7\xcb\x02\x59\xce\xe3\x10\x07\xd8\x67\x04\xec\xb3\xa7\x33\xaf\xf2\x4d\x08\x97\x10\x35\x72\x70\x5e\x16\xae\x0d\xa2\x3e\x97\x3d\xcd\x1b\x55\x7a\x0f\x5b\xc2\x18\x53\x2b\x7a\x7c\x40\x89\xe8\x1e\x6d\x0c\x66\xdc\xe6\x7a\x3a\xe9\x2e\x56\x3f\x0f\xc1\x4e\xb6\xc5\x37\xcc\x54\xff\x8a\x9b\x9a\xe7\x04\xcd\xb7\xca\x8c\x37\xe5\x27\x34\xc1\x68\x41\x02\x8c\xb5\x01\x28\x6f\x12\x55\x0d\x31\x7c\x9d\xae\xe5\xe8\xcb\xbb\x5c\x45\x22\x6f\xcc\x0a\xd9\x4c\x0d\x54\x1e\x76\x96\xca\x35\xe8\x73\x5f\xb5\x68\x48\x17\x0e\x2d\x07\x5d\x17\x48\x21\x1d\xd0\x5b\xc7\xfd\xa0\xa7\x7b\x44\x87\x8b\x3c\x63\x78\x1c\xc5\xb4\x4d\x17\x87\xdc\xfa\xaa\xc9\x40\xcd\xc9\xd8\xb1\x4b\xa3\x91\xb2\x3f\x5e\xa4\x19\x88\x8f\x85\x50\xcc\xce\x3f\x1d\x35\x7e\x7e\xaa\x9f\x63\x15\x10\x1e\x14\x30\x10\xad\x8a\xb4\x49\x05\x61\x83\xfa\x77\x2d\xf4\xf3\x55\xed\x6a\x75\xef\xb7\xa0\x90\xc1\x3c\xac\x38\xe1\x67\x4f\x4e\x9d\xa7\xf4\xb4\xed\x1d\x37\xb3\x45\xee\xaf\x26\x70\x02\x3e\x63\x8f\xe5\x23\xa1\x09\x83\xc7\x76\x82\x4e\xb0\xeb\x27\xd3\x24\xdb\x29\x91\x51\x44\x67\xca\xdf\xb6\x2c\x70\x12\xf6\x69\x30\x19\x77\xb2\xac\x02\xa4\x13\x55\xa1\x96\xb8\x52\x18\x68\xec\x27\x08\x29\x06\xd9\x46\x37\x39\x08\xed\x0d\x0a\xde\x10\x91\x5c\x01\x18\x0f\x19\xd9\x7c\xcb\xb9\x8b\x91\xcf\xd4\xd5\x33\xef\xc7\x04\x8b\xab\xa8\x79\x1d\x93\x13\xc1\x2c\x09\x11\xd2\x5d\x6b\x15\xd1\x90\xa0\x79\xb8\xeb\xfa\xd9\xa9\x3b\x87\x9b\xaa\x2b\x7a\xf0\x05\xde\x02\x47\x0a\x4f\x03\x6c\x64\x1e\xc4\xfe\x34\x9d\x72\x57\x87\x93\xdb\xd5\xac\x28\xef\x75\x36\x26\x5f\xb6\xc8\x98\x9f\x9d\x54\x67\xcd\xca\xee\xba\x06\x5c\x62\x60\x41\x03\x5e\x2e\x48\x36\x89\x80\x4c\x8a\xa8\x4e\x63\x70\x59\x88\x5e\xa2\xcb\xc4\x22\x05\xca\x42\x7e\xa0\x1f\x5f\x05\xb5\x2e\x58\x2a\x8f\x00\x67\x0b\x12\x1e\x73\x47\x85\xb1\x5e\x5f\x43\xb5\x27\xc5\x64\x02\x0b\x88\xd0\xc3\x26\xab\xa1\xb3\x18\xec\x74\xc0\x40\x1e\x59\x62\xb2\xb3\x28\x94\xc5\x2c\x50\x27\x38\xde\x1d\x4f\x89\xd7\x0a\x18\x6e\xd3\x8a\xc3\xe0\x92\xb0\x95\xf1\x9c\x47\x98\x25\x13\x9d\xc3\x8d\xf9\x73\xa9\x2e\xb6\x27\x3c\x96\x11\x6e\x9c\xbb\xaa\xaa\x64\x91\x59\xf4\x05\x36\x17\xb8\x8e\xf2\x22\x0f\x10\xe9\x0f\x77\x6d\x30\x0f\x26\x0c\xb0\xbf\xc7\x18\x50\x32\x32\xb6\x91\x1a\xde\x71\x45\x9b\x50\x14\xb3\xbe\x26\xa8\xdd\x43\xa8\x47\x9e\xf1\xa4\xd8\x67\x47\xc8\x07\xa9\x3c\x45\x49\xec\xd1\x14\x31\x5c\xd4\x8b\x44\xf4\xd7\xb7\x8f\xed\x77\x5b\xa6\x40\xa4\x1f\xf6\xda\xd3\xdc\xaa\xc2\x76\xcb\x28\x8f\xca\x4c\xd7\x87\xd8\x35\xf2\x31\xa9\x8c\x2e\x89\x92\xd4\x7a\x52\x1a\x9c\x09\xd3\x10\x9d\x59\x4f\x6f\xf7\x10\x0a\xf0\xcd\x3d\x4a\xbd\xc9\x76\x48\x54\x85\x93\x13\x05\x7a\x23\x9d\x18\xcd\x99\x6d\x0e\x3b\x5a\xb6\x75\x29\x38\x5c\x9a\x70\xc4\x51\x2f\x59\x36\x49\xce\x9a\x16\xe1\xb1\xe7\x54\xb6\x32\x9c\x88\x59\xfa\x4c\x58\xfb\xc5\x65\x0b\x8b\xef\x26\xae\xbe\x6b\x3d\x50\x5a\x7a\x3f\x12\xb2\x4b\x60\xc6\x73\x4f\x4a\x93\x32\xe6\x09\x98\xde\x9d\xaa\x57\x69\x72\x90\xb7\xf8\x64\x5e\x90\x9b\x06\x7b\x5a\x4d\x72\x66\x13\xa2\xac\x8e\x80\x73\xe5\xea\x5a\xab\xc8\x0d\x93\x0b\x7d\x54\x27\xa5\x34\x83\x82\x76\x95\x8a\x6e\xa6\x90\x58\xeb\x8f\x26\xd2\xc8\xc3\xd2\x78\x45\xa7\xa2\x1e\x43\x66\x67\x48\x33\x24\x58\xee\x23\xa7\x06\x0d\xa0\x17\xc9\x2f\x33\xf4\xec\x51\x1f\x9c\x3f\xa9\xc9\x92\xc3\x19\xb3\xdd\xcb\x05\xb8\x2d\x7d\x82\x0a\xd2\x31\xa1\x2e\xa5\x73\x34\x7d\xf3\x74\xdf\x52\xa1\xc7\x57\xbb\x57\x39\xb8\xef\x61\x5d\x82\x29\xaa\xf8\xc6\x6b\xa5\xa5\xab\x84\xfb\x01\xed\xac\x55\x9b\x7b\x52\x4e\x4b\x46\x79\x19\x03\x4c\x8b\x54\x2e\xa0\x4d\x74\xe6\x30\x03\x15\x1c\xbe\x7a\xf5\xf2\xfe\x91\x3f\x99\x5b\x27\xe1\x7c\x93\x37\x09\xac\x0f\xd2\x37\x5e\x26\xb7\x93\xea\x67\x7d\xf0\x42\xde\x3f\xdc\x9e\x5e\xdc\xf8\xb6\xfc\x72\xde\xbd\xc3\x13\xc5\x63\x43\x5b\xdc\xf6\xfb\xb7\x5e\x79\xee\xa2\x13\x9b\x72\x93\xc6\x2e\xf7\x78\xc7\xc7\x39\x19\x31\xf2\x30\x85\xd9\x1c\x40\xb0\xd9\x69\xa5\xa3\xf6\xe0\x66\x5b\x2f\xe6\x0e\xab\xca\xac\xcb\xbb\x30\x60\xa9\x93\x36\x61\x22\x17\xc5\xa8\x56\x89\x4c\xde\x89\xa0\x86\xb0\xd7\x82\x54\x4d\x9b\xa8\x93\x85\x73\x45\xe1\x13\xc4\x59\xc5\x10\x51\x69\x15\xbf\x0c\x12\xfd\xd0\x6f\x14\x39\x62\x1d\x3f\x1d\xaa\xc6\x4e\xb7\x09\x71\x55\x79\x1e\x2a\x4d\x3b\x48\xbe\x8d\xc3\x6a\xc3\xbd\xc4\x56\x0d\xa9\x11\x81\xf5\x87\x3a\xe5\x17\xdc\xf5\xa2\x9d\x25\x3b\x51\xa7\x5c\x57\xdd\x1c\x72\x7e\x42\xe6\x1d\x48\xb7\x71\x02\xc7\xa5\x2c\x4a\xba\xb1\x2a\xf6\x9c\x26\xe7\x8e\xbe\x42\x56\x8a\xc4\xdb\x98\x06\x01\x2a\xc0\x91\x16\x51\x02\xfd\x07\x2e\x21\x82\x3f\x80\xc8\x12\x7e\x42\x39\xdb\x0f\xd0\x5d\x3f\xf2\x2e\x99\xc9\xbe\xa0\xa5\xa9\xee\xa5\x8d\x45\x84\xd3\xd0\x99\x0b\x19\x58\x5c\xba\xba\x0d\xe8\x71\x26\xcb\x7f\x60\x03\xbb\x82\x75\x29\x94\xa3\x4f\x3c\x3c\x92\x7c\x6e\x73\xbf\xc1\x59\xde\x96\xd2\x48\x04\x0a\x17\x14\x04\xa5\x2e\x8e\x05\x89\x59\x38\xfd\xac\x66\x04\x84\xea\xf1\x07\x1c\x5c\x54\xc1\x7f\xbc\xd9\xd2\x1f\x0e\xe4\x4b\x08\x8a\xab\x76\x22\x3b\x39\xec\x86\x9a\xff\x10\xf9\xbb\x7b\xd9\x1a\x7d\x23\x8e\x73\x64\x58\xfd\x5c\x59\xf8\x8c\x67\x54\x8e\x56\x4b\x21\xfb\xd6\x07\xa3\xd5\xf1\xa8\x6f\xb2\x82\x12\x2b\x65\xef\x3b\x0d\x91\x0d\x44\x47\xa8\x2e\xd0\xe1\x7d\xbe\xb8\xf8\xfa\xd7\x0e\x1f\x0e\xef\xdf\xbd\xb9\xbb\xbb\x3a\xd2\x02\x0b\xe8\xf1\xc6\xb6\x46\x94\x35\xf1\x93\xb2\x8c\xfe\x92\x09\xb7\x25\x55\xff\x31\x38\xf7\x96\xb7\x6c\x95\x28\x57\x91\x1a\xa4\xc2\xaf\xbe\x08\xf6\x68\xdc\x72\xc6\x5b\x75\xd8\xc9\x74\xc5\xac\xbc\x0e\x8b\x8b\x3a\x58\x8e\x5f\xf5\xda\xbf\x52\x41\xfa\x17\x87\x6f\x7e\xe3\xf0\xd1\xa1\x3a\xe6\x2e\x50\xf1\xdc\xdd\x71\x0b\x38\x5e\xa0\x4c\xd4\x4f\x40\x33\xd3\xb5\xb5\xb0\xf9\x44\xc2\x89\x58\x88\x4d\x2e\x83\x3c\x80\x34\x78\xbb\x83\x24\x7e\xe1\x47\x19\x6f\x15\x2b\x23\x95\x37\xa3\xe9\x34\xbb\x81\x4a\xd5\xeb\x4f\xad\x41\x75\xd8\x69\x35\x58\x9f\x10\x5e\x7d\x07\xc1\x90\x14\x77\x7b\x35\x12\x0e\x3a\xd9\x11\x0a\x4c\xb2\xb6\x00\x82\xd2\x6b\x14\x09\x38\x92\x49\x9c\xe3\x39\xe9\xf8\xb2\x13\x88\xef\xe7\x61\xbb\x6f\x7b\x80\x1b\x92\x83\xeb\x9d\x8f\x45\x90\xcf\x0b\x7d\x13\xe0\x72\x49\xb8\x6f\xdc\x53\x73\xd2\x65\x5f\xc3\x45\x49\xcd\xd3\x86\x1f\x0d\x22\x3b\x6d\xa2\xc7\xd5\x9c\x6b\x4b\xe1\xcc\xe5\x33\x9e\x9d\x42\x4b\xb7\xa3\x0c\x4e\x06\xe0\xbf\xae\xb2\x13\x83\xd1\x3e\xe9\x5c\x85\x53\x01\x0e\x79\x1b\x19\xa6\xe6\x36\x6d\xa2\xf1\x86\xeb\xa1\xb5\x00\x03\x35\x45\x8c\xef\xba\x6c\x8e\x8b\x84\xa9\x9c\x64\x6e\xcb\xac\x70\x83\xbf\x60\xc3\xf5\xa9\xe4\xdc\x3c\x44\xfb\x25\xd0\xb5\x1f\x1e\x93\x5c\xd9\xbf\x4d\xb5\x57\xe0\xa2\x0f\x2b\x7a\xe1\xb3\x3a\x8a\x48\x45\x8a\x62\x58\x67\x5e\x3e\x89\x72\xb4\x32\x2a\x57\x86\xbc\xab\xee\xed\xc3\x7f\x11\xf1\x09\x19\x9e\xfa\x91\xf4\x75\xea\xec\x4a\xa3\xfe\x99\x6c\xce\xd8\x5e\x5d\x39\xd7\xf3\x51\x97\x1a\xd2\x9e\x75\x1d\x54\xd5\x34\x2a\xac\x58\x5d\x9d\x6e\x95\xf2\x7e\xff\x21\x15\x1a\xf8\xf7\xe2\xdc\x85\xed\xad\x0b\x19\x76\x1d\x7c\x4c\x22\x03\x08\xee\xd9\xd3\xd4\x54\x54\x94\xff\x07\x63\x1e\xc6\x66\xa7\xa6\x62\x20\xf9\x6c\x3b\x1c\xd8\xbf\x7b\xd7\xb6\x2d\x4d\x23\x3b\x0c\x0d\xf4\x74\x77\xb4\x15\x35\xee\xd0\x5f\xdd\xd9\xd1\xd2\x94\x5f\xb7\x43\x55\xa4\x2c\x54\x52\x04\xf9\x76\x70\xbb\x6c\x56\xd4\xc0\x06\x6d\x8d\x4a\x66\x98\x76\x57\x2a\x2d\xbb\x33\xaf\x12\x59\x1a\xfa\x60\x8f\x91\x5a\xef\x9a\xcc\x53\x36\x30\xdd\xbd\x8f\x5c\xa7\x0d\xe1\x95\x3f\x3d\x46\xab\xb4\x3b\x4f\x61\xa0\xc9\x94\xc7\x2f\xa7\x1c\x8b\x5e\x7b\x7a\x52\x5a\x47\x82\xf6\xc9\xd1\xf3\x05\x8d\xb2\xee\xdc\xe1\x41\x22\x1b\x80\x2d\xbb\xad\xc8\x70\xe3\x52\xde\xb6\xa9\x9d\xd6\x15\x2a\xc8\xf3\xb4\xab\x16\x04\xa0\x57\x30\xbe\x7d\x45\xb1\xb6\xef\x7b\x77\x54\x4f\xf4\x4f\x9b\xa6\x8a\xeb\xe6\xfd\x40\x3d\x7c\x85\x08\x92\x70\x4b\xae\xa1\x2a\xb0\x3d\xb8\x3e\x54\x35\xdf\xbe\x2a\x20\x56\x4b\x56\x16\x84\x98\x6c\x29\x4f\x6b\x3a\x91\xdd\x78\x5c\x1a\x53\xf5\xad\x33\x0d\xe0\x41\x16\x69\x41\xa6\x9b\xa3\xf2\x78\x41\x84\x93\x29\xa1\x9b\xf9\x87\xd4\xcd\x2d\xd9\x1c\x2a\x4a\xf5\x1f\x68\x43\xb8\x56\xfc\xa8\x98\x14\xcd\xec\x61\xc9\xdf\xcf\x6b\x81\x89\xb5\x27\x19\xa9\xc4\x2e\x59\x14\x21\x7d\x06\xa6\x7a\xa6\x2a\x4d\xc0\x35\xdb\xe3\x30\x7d\x66\x88\x09\x6f\x7a\x15\xb2\x9c\x81\x90\x15\x43\xfd\xfb\x25\xda\xba\x00\x34\x43\x59\x23\x60\xf5\xeb\x32\x37\xba\xa8\xa8\x0b\x73\xc2\x6a\x94\x23\x31\x83\xe3\x58\x6c\xb4\x1c\x2e\x75\x44\x7d\xce\x84\x15\xdf\x11\x41\x2b\x35\x29\x8a\x24\x16\x1b\xa6\x8e\xc4\x0b\xe3\x85\xdd\xc8\xa4\xbe\xa0\xaf\xad\xd2\x1c\x12\x37\x8d\x6c\xa1\x41\x38\x74\xc7\x63\x7a\x4c\x5b\x1f\x55\xe0\x45\x6a\xaa\x7f\xfe\x46\x75\x33\xc2\x19\xd3\xd0\x4f\x2c\xed\xf0\xc5\x9e\x9e\xc3\x4c\xad\x45\xda\xca\x30\xb4\x2c\x5f\x96\x95\xc5\x79\x0d\xb8\x5a\x65\x33\x4b\x64\xcf\xf3\xdf\xcf\x9b\x13\xf4\x38\x6d\xc5\xdb\xc3\x93\x9f\x32\xf6\xb2\x69\x86\x6c\xfe\x53\x8c\xf4\x63\xd4\x6a\x68\x86\x03\xed\xea\xf6\xae\x6e\xff\xa2\x0f\x67\x25\xb2\x26\x2d\x49\x1f\x89\xc5\x30\xb9\x27\x6b\xe5\x13\x26\x4f\x9b\x8d\x45\x4d\xbc\x5d\xac\x36\x30\xcf\x09\x66\x5a\xc8\x26\x63\x07\x0e\x1e\xce\x78\x3e\x68\x19\x7e\x22\x30\x84\x7d\xe7\xb4\x42\x02\x73\xdf\x44\xe0\x9c\x5a\x83\xb7\x3b\x48\xcb\x17\xde\x28\xf5\x44\x0b\x94\x19\xbf\xce\x9f\x8d\x4d\x81\x7c\xa5\xe0\x4f\xae\x1c\x49\x89\x89\x4f\xea\xb3\x9d\xa2\x58\x6e\x3c\xcf\xc2\x3b\xf2\xe5\xc2\x09\x07\x92\x29\x14\x12\x88\xb4\xac\xd7\x18\x27\xe6\x7e\x82\x1d\xd3\x42\x30\xa8\x86\x2e\xe9\x90\x4b\xf1\x13\xf9\xda\xac\x04\x05\xb7\x70\xbb\x0d\xba\x44\xed\x09\x98\x87\x75\xc2\xc4\xf8\x56\x01\x19\x93\x00\x46\x29\xdc\x66\xee\xed\x2a\xf2\x58\x9b\xad\x8e\xdd\x31\x8d\x3d\x17\x43\x73\xc1\x7d\x79\x93\xaf\xbf\xb9\x6f\xce\x49\x0c\x5a\x4a\x8c\x23\x9e\x82\x2b\x4f\xe6\x9b\x27\xeb\x3c\x8a\x8e\xe6\xdb\x31\x6e\xb7\x73\xd4\x1e\xba\xc3\x8f\xf3\x3d\x82\x26\xeb\x70\xe7\xff\x41\xc4\x1a\x22\x41\xa9\x27\xf0\xf0\x53\xcd\x58\x7e\xc6\x3a\xf5\xe5\x14\xa8\xef\x71\x24\x32\x7c\x41\x2c\x0c\x7e\xa8\xd7\x19\x68\x18\x67\xd9\x55\x13\x8b\xd5\x9a\xb2\x81\xf1\xd3\x9d\x4b\xb9\x5e\xd2\xcc\x6a\x40\xc6\x45\x8a\x8f\x96\x9e\xf8\xce\xd7\x15\x6e\xd7\xaa\xc1\x6a\x58\xc6\xa7\x81\x2d\x48\xe6\x98\x09\x37\xeb\x99\x2f\x15\xb9\xbf\x29\x96\x7c\xe9\x39\xaf\xd2\x37\xe4\xbe\xe7\xba\xd2\x00\xde\x0a\x0d\x78\x84\x20\x26\x07\x5e\xcc\x87\xb0\x4a\x21\x75\x1b\x37\x9b\x5d\xe7\xa4\x93\xec\xfb\x27\xe1\xa4\xea\x7f\xb0\xe9\x74\x24\x8f\x3c\x54\x99\xeb\x6a\x71\xe7\x85\x73\x88\x21\xd7\x69\x40\x51\x1c\xd1\x30\xf9\x91\x9b\x54\xf6\x7f\x54\xf8\x42\xd1\xa6\x4c\x72\xfc\xc2\xab\xfc\x46\x56\x2e\x2c\x72\x14\xb5\xcb\x87\xe9\xb8\x8b\xe1\x0d\x60\x6b\xed\xdb\x2f\x78\xc2\x46\xf4\x24\xc0\xbb\x8f\x32\x10\x61\x0c\xa5\x9f\x3d\x4e\x6d\xac\x85\x9b\x57\x8e\xc9\xca\x02\x17\xb5\xf6\xb2\x9e\x00\x9b\x06\xe9\xad\x84\x22\xb7\x4f\xc4\xba\x2e\x7d\xcf\x7e\xc8\x57\xbe\xc4\x2d\x79\x20\xaf\x17\x3a\x3b\x0c\x4f\x0e\x55\x4d\xb7\x71\x19\x5d\xbb\x50\x48\xb0\x34\xe8\xe3\x31\x07\x63\x49\x66\x0d\xdc\xcc\x28\xd6\x26\x0d\x32\xe2\xe3\xad\xc3\xd8\x0c\x22\x1f\x51\x91\x8b\x3b\x60\x08\xd8\xc0\xcd\x10\x54\x8d\xf7\xec\x0c\x57\x19\x0f\xda\xaa\x75\xd0\xaa\xb9\x7c\x85\x07\x19\x70\xcb\xa0\xa1\x83\x80\x5a\x65\xf5\xc3\xcd\x4a\xe7\xeb\x4c\x34\xb4\x8b\x52\x72\xd7\x57\x1c\xd7\x06\x9f\xd7\x3a\x3d\x51\x6d\x0e\xa2\x45\x70\xe1\x10\x79\x31\x37\xa2\x8a\xab\xb8\xba\x04\x83\xf7\x45\x16\x1d\xa4\xfb\x10\x75\x57\x37\x26\xae\x06\x52\xc2\xc4\xab\x29\xec\xa3\x04\x59\x6a\x9c\x98\xef\x61\x43\x00\xe5\xc6\x5b\x2a\x6b\xb0\x30\xc6\x65\xc1\x46\x09\x39\x0e\x99\x3f\xb1\xa8\xae\xde\x63\xcc\x05\xad\x9c\xa2\xa3\x10\xf3\xde\x58\x42\xbc\x99\xd1\x80\xca\x6b\x9e\x86\xc4\xc5\xa4\x4f\x17\x14\x2d\x1a\x1c\x87\x72\x13\x44\xff\x21\xec\xd3\x29\xab\x60\x0a\xae\x95\x16\x37\x09\x8f\xad\x3f\xec\xe5\xa8\xa0\x99\x20\xa9\x34\x14\xa3\x59\x00\x72\xa3\x95\xf6\x02\xb5\xa8\x72\x5b\x55\x00\xc1\x1f\x5c\xc8\xb6\xe5\x41\x38\xdd\xc3\x68\xe3\x14\x9a\xe7\x77\x93\x93\x32\x25\x1b\x10\x60\xf5\x91\x0b\x40\x82\x0b\x57\x89\x76\x4a\x0c\xf0\x47\x13\xf9\xb6\xc9\xb3\xa6\xcb\x89\xeb\x98\x2c\x77\x3c\x35\x11\xcf\xd3\x75\x1c\x96\xc9\x6d\x28\x3d\x95\xe2\x99\x16\x2f\x29\x72\x6b\xa9\x11\xc6\x43\xcf\x1d\x0f\x65\x64\xe5\x69\xaa\xb8\x5d\x03\x77\xd7\x2a\x87\x13\x03\xed\xdb\x38\xd4\xe2\x54\xdd\x5a\x44\x01\xb2\x8d\xae\xbf\x81\x68\x4a\x45\xda\xda\x60\x37\x02\xb2\x77\x10\x06\xe9\xb3\x20\xcd\x9d\x42\x15\xb7\x20\x6b\xe8\x1a\x57\x7d\x6b\xd1\x3f\x19\x33\x14\x87\x26\x43\x33\xa9\x0f\x88\xfc\x47\xe0\x9f\x1b\xc5\x12\x20\xf7\x0d\x1d\x49\x5f\x7e\x27\x0b\xa7\x53\x17\x00\x33\xac\xa5\xff\x9f\x31\xc3\xd3\x83\x37\x9f\xbf\xd7\x82\x1d\xa8\x87\x63\x9e\xc6\xdf\xb2\xad\xd9\xce\x2c\xe5\x6c\x47\x6e\xd6\x46\x2c\x78\x08\x8b\xf6\xc1\xb0\xca\x6f\xc8\xb4\x47\x63\x89\x47\xe3\xd8\x54\x74\x03\x8f\x2c\xc0\xa3\x8b\xa0\x9c\xb4\x6f\x40\x2d\xf3\x9e\x5c\x7d\x4d\x91\x7f\x29\x1e\x6e\x6e\xd5\xcc\x6f\x75\x2d\xb1\x26\x5a\x58\x4d\x23\x90\xa2\x17\x30\x66\x59\xa0\xec\x69\x53\xec\xe9\x62\x11\xd2\xa9\xb9\xe0\xa1\x9a\xff\xfe\xdf\x5f\xff\xfc\xab\x5f\x34\xc5\xe2\x84\x79\x8c\x2f\x8a\x8a\x04\x7a\x6e\x97\xc7\xa4\x72\xa3\x9b\xde\xef\x93\x85\x45\x4b\x8e\xb0\xda\xa4\x62\x5d\x01\x88\x90\x2e\x5b\x8d\x88\x4f\x87\x87\xed\x0c\x69\xa2\xfe\x91\x2a\xa7\x83\x5a\x56\x5b\x93\xea\x97\xc8\x7b\x2c\x19\xe7\x3a\xe4\x5f\xab\x8c\xda\xb5\x16\x5d\x1f\x07\x69\xf0\x06\x24\xb3\xb4\xea\xc5\x05\xc1\xe7\x7c\x3e\xf4\xdd\x0b\xdf\x70\xae\x51\x9d\x44\x41\x8e\x93\x11\xfd\x56\x7b\xdc\x41\xa2\xf2\xc3\xa8\x4b\xf7\x1a\x79\x85\x29\x72\xea\x1a\xc4\x76\x84\x41\x7f\x36\x3e\x65\x1c\x5b\xe7\xec\x74\xb3\x5e\x2d\x9b\xaa\xc8\xf3\x34\x66\xd3\xcf\xd8\xf3\xbe\xb5\xc9\x5d\x26\x14\xd9\x88\xf6\x4f\x18\x64\x23\xfb\xfd\xda\xd2\xd3\x38\x15\xe3\x81\x0d\xe7\xc8\x7b\xce\xb8\xf4\x27\x98\x65\x71\xd7\xc4\xb8\x29\x65\xa0\xa8\x85\x8d\x2e\x5a\xe8\x9d\x54\x53\xfc\xd1\x83\x51\x1e\x0d\x24\x12\xfb\x10\x62\x90\x4c\xa2\xcb\x7d\x0f\xdb\xcd\x41\x92\x41\x3e\x3f\x13\x52\xc9\xfb\xfc\x95\x54\x7a\xbe\x4e\x16\x05\x89\x92\xa2\xd7\x31\x69\xc4\x5c\xd8\xd1\xd5\x6e\x11\x9a\xab\xc8\x7d\x0e\xf6\x6b\x54\x86\x79\x87\x07\x7d\xd7\x36\xe3\x52\x32\xb7\xeb\x7d\x30\xbf\x7c\xf7\x8d\x77\x37\xc7\x96\xfb\xce\xb8\xf4\x1c\x02\x4d\x40\x55\x5f\x7d\x6a\x72\x6f\x1e\x38\x72\x3b\xb6\x92\xd9\x0b\x4f\x6d\xf5\x33\xb0\xdb\x06\xfe\x81\x25\xf5\x5f\xcd\x0e\x95\x7b\xa0\xfe\x8f\xf0\xff\xce\x5e\x76\x4d\x84\x42\x24\x9f\x74\xf0\xe3\xc8\xd8\xea\xc2\xe2\x32\x9e\x86\x2a\x15\xcf\x5f\x43\x4e\x87\x9e\x66\x01\x47\x98\x96\xbb\xbc\x16\xce\x6d\xd3\xf1\xa9\xe8\x70\xe4\xc5\xa0\x73\xd7\xfe\x4b\x45\x5f\xcc\x2b\xa4\xc4\xe3\x1d\xd3\xc2\x30\x62\xc6\x67\x5b\x2e\x41\xc7\x7a\xbb\x3b\x3b\xda\x5a\x9a\x1a\xea\x6a\xaa\x3a\x5b\x1a\xa3\x75\xb5\x55\x95\xe1\xf2\xd2\x60\x71\x51\xbe\xdb\x69\x47\x8d\x08\xa8\x56\x29\xc4\x2c\xb0\x4c\xbc\xf9\xa2\x09\x76\xd7\xe9\x77\xdf\xac\x97\x7d\x8b\x34\x45\x64\x7c\xbb\xf0\x2d\x5f\x4a\x36\xf8\x9d\x6b\x0b\x94\xb1\xbf\x0f\x2d\x0d\xcf\x5d\x4a\x36\x94\xc0\xb2\xac\xbc\x1f\x32\xfa\x74\x5c\x6f\x74\x99\xe6\x3b\xe0\x8a\xb8\x4a\xd7\x12\x1b\xd1\x0c\xec\x04\x63\x48\x38\xbd\xa8\x4c\x9e\x88\xd1\x18\xb0\x01\xe7\x10\xf9\x2e\xe0\xb2\x2e\xc1\xe1\xd0\xcb\x27\x2b\x64\x8b\xcc\x32\x59\xf9\x1b\xee\xc6\x31\x78\x98\x03\x9f\xc3\xf4\xed\x68\x4c\x33\xd4\x07\x43\x0a\xa6\xed\x17\xbc\x28\x14\x0f\x10\xae\x1f\xe0\x47\xc0\x39\xd4\xd1\x0d\x9b\xcf\x91\x9d\x5a\x77\x77\x54\x6c\xf1\x96\x05\xdb\x70\x28\xc4\xcb\x2f\x2f\xd4\xf2\x67\xf3\xb9\xe0\xf9\x64\x80\x1e\x84\x4a\x81\xdb\xb8\x0f\xdd\x0d\x98\xc5\x3b\x6a\x7f\x76\x52\x78\xd5\x1a\xa2\x61\x97\x68\xd6\xf2\x17\x26\x23\x3f\x24\x4b\xf0\x28\x4c\xd7\x53\x6c\x64\xb9\xe5\x5d\x20\xd5\x87\x7f\x0a\x7f\xc2\xf5\x2d\x51\x8b\x71\x6b\xe0\xf5\x33\xc9\xb0\x0d\xe7\xe4\x97\xc2\x9b\x70\x0f\xe2\x72\xa8\x0f\x7b\xc7\x81\xf0\xd8\xe1\xd8\x05\x14\x34\x0e\x85\xc1\x85\x32\x80\xb3\x39\x64\x01\xb4\x16\x00\xc5\x58\xfe\xd4\x04\xc1\xd4\xdd\x47\x2e\x69\xf6\xb4\x87\xe0\xc7\x3e\x3a\xd2\xd0\xdc\x65\x36\x2e\xfd\xa4\x01\x15\x59\xa2\x4d\xb1\x1e\x0c\x15\xcf\x9f\x03\xc7\xfd\x7c\x6e\xfb\xdb\xeb\x34\x82\x07\x2e\x89\x6b\xb9\x1d\xa1\x4c\xbf\x2d\x83\x26\x6f\x44\x88\x77\xe5\xeb\x81\xcd\x6b\x3e\x59\x8e\x8c\x2b\xad\x4f\x18\x13\x97\xd0\x42\xb4\x80\x4e\x29\x70\xc8\xa5\xb1\x4f\xd8\x61\xdb\x9e\x9e\x8f\xbe\x66\x69\x5f\xfd\x36\xd4\x6f\x58\x09\xcb\xbf\x62\xe5\xb2\xf5\x6c\xee\xc2\x63\xdf\xf2\x26\xb4\x45\x8a\x9f\x53\x1f\x8d\x15\xe1\x71\x87\x3d\x71\x9a\x9b\x22\x04\x6a\x57\x01\x7c\x8e\x18\x88\xca\x92\xa1\xf9\x7a\xd5\x3a\xaa\xe5\x8d\x61\x75\x3e\xfd\x4f\xbc\x7c\xb3\xce\x64\x3c\xff\xdc\xf3\xf6\x7c\x19\x0c\xca\x52\x08\xe0\x1b\xe7\x85\xe4\xb9\x15\x0e\xbe\x04\x02\x75\xba\x36\xde\x27\x89\xdf\xdc\xa5\xc9\x06\xf8\xab\xd6\xfc\xc4\x09\x26\xe9\x4b\x1e\x42\x77\x02\x30\xf6\x64\x84\xf1\xdb\xdf\x01\xfb\x22\x77\xb9\xd9\x06\xa3\xd3\x23\x48\x7b\x4e\x39\xbb\xbf\x9b\x6f\x39\xf5\x12\x86\xc8\x51\x12\x82\xa0\x06\x7d\x1a\xa2\x7b\x8b\xcc\x40\x09\xec\x37\x4f\xcf\xa1\x93\x4a\xf1\x62\x8a\xc5\x91\xa5\x01\x48\x9f\x46\xb7\x58\x9e\x6d\xcb\xf6\x0e\x3a\x19\xe8\x28\x35\x89\x62\x36\xcb\xde\x36\x3c\x8d\xc2\xce\x12\x66\xdc\xf1\x5d\x60\x8f\xdd\xb9\x64\x64\x86\xfb\xc2\x08\xe2\x1a\x73\x3e\x15\xa7\x99\xd6\xa6\xd3\xaa\x2e\x98\xcc\x3e\xac\xe6\x68\x00\x76\x76\x1e\x55\x70\xe6\xd5\xc0\xfe\x14\x7e\xfe\xab\xd0\x63\x47\xd1\xd2\x17\xb5\xd8\x6f\x22\x81\x8b\x0b\x28\x31\x67\x4b\xf3\x00\xb7\x2b\xc4\xa2\x95\x47\x56\x35\x46\x18\x2d\x1d\x4a\xac\x73\x4e\xf5\x90\x68\x62\x8e\x5e\x84\xff\xf2\x39\xc8\x74\x45\x21\x3d\x45\x10\x7c\x8f\x99\xb5\x80\x9c\xc8\xfc\x85\xad\xa7\xd3\x3e\xaa\xfc\x13\x59\x0c\xba\xc4\x48\x23\x79\x61\x7b\x15\x4f\x28\xcc\x41\x80\x8a\x1d\x39\x6c\xa1\x64\x05\xa4\x8b\xbb\xb9\xb1\xc7\xc0\x73\x2d\xba\x7b\x18\x70\xc6\xc3\x23\x06\x03\xe8\x5e\x80\xbc\x1b\xde\x55\xef\xa6\xba\xe3\x15\xf7\x4d\x07\x95\x13\x51\x47\x6d\xb5\x8f\x92\x44\x48\xb7\x7a\xcf\x56\xb0\x35\xc5\xf5\x12\x23\xdf\x8e\xe9\x9e\x7b\x13\xb6\xbb\xf1\x32\xa9\x5e\xb9\x92\xc8\xb5\x10\xed\x25\xd4\xab\xe0\xcb\x48\x27\x61\x18\xb0\xbc\x12\x8e\xdf\x01\xa4\x6b\xc2\x77\xac\x2b\x76\xd9\xe5\x94\x90\x1f\x16\x32\xd6\xc2\x12\x95\x37\x2c\x23\x0c\xd9\x77\xc2\x9a\x7c\x99\x48\xc6\x14\xb1\x31\x89\x15\x8a\x5e\x0f\x39\x4c\x3d\x77\x24\x4c\xa5\xf5\x23\xa3\x6c\x74\xe2\x33\x35\xc1\xf6\x64\xaa\xe3\x09\xa9\x2b\x04\x1c\x57\x5d\x4f\xf9\xce\x1b\xa5\x15\xf7\x54\x91\xf1\xbb\x83\x18\x08\x27\x58\x3e\xb5\x0f\x21\xec\x1a\x00\x16\x87\x18\xa6\x7a\xf8\xb3\x68\x96\xf7\x6f\xdf\xde\x7f\x2c\xbf\x22\x8e\x70\x60\x71\xe0\x4a\x79\x23\x6e\x94\xfe\x92\x54\x42\x64\x29\x3f\x2a\x06\xf7\x0e\xfc\xad\xf5\x41\xd5\x4e\x95\xc9\x4c\x79\xef\xaa\x55\x9e\xd5\xc0\xdf\x9b\x79\x27\x32\xfd\x85\x14\x2a\x97\xe7\x26\xa6\xf3\x1c\x04\x0e\x59\x80\x14\x40\x75\xa2\xa8\xd7\xb2\xe5\x3a\x44\xd9\xe2\xd8\xb3\x5b\x39\x86\x23\x68\x0b\x90\xd5\xe3\x9f\x6f\x65\x44\xd0\xd2\xea\xe2\xdb\x54\x5c\x3e\x6c\x54\x32\xf0\xc8\xfe\x07\x31\x38\x78\xce\xa2\xba\x30\x01\x2d\x93\x7b\xaf\xf2\xfc\xec\x74\xb5\x3b\xef\xcf\x5c\xa8\x73\xae\xa8\x8d\xbe\x9e\x73\x84\x94\x15\xba\x4e\xbf\x1a\x12\x7e\xbe\x77\x61\xc4\x3a\x82\x66\x8c\x22\x7d\xbd\xa2\xc9\x43\xd9\x11\x39\x8d\x59\x21\xa0\x90\x5c\x54\xd2\xcf\x7e\x90\x71\x9d\x3e\x80\xcd\x1d\x20\xdd\xd1\x25\x72\x61\x05\x97\x16\x95\x54\xbe\x29\xbe\xdb\x7d\x4b\xd0\x0e\x97\xf0\xb4\xcc\xe1\x4e\xa4\xa1\x43\xd7\x7e\x38\x7c\x23\x06\xd3\x7d\x61\x81\x2d\x80\x3b\xbc\x35\x28\x88\xa5\x9d\xd0\xfa\xc9\x13\x6f\x82\x6f\x98\x92\xf3\x4c\x4e\x8f\xeb\xf2\xe5\xaa\x66\x49\xb1\x37\x2e\xc3\x6b\x98\x1b\xf7\x9f\x09\xfb\xb2\xa9\x26\xb1\xd9\x4d\x93\x2f\xae\xc1\xf2\x0a\x93\xe6\x25\x7b\x8e\x5d\x50\x80\x61\xf4\xc4\x75\xf3\xd1\x49\xce\x95\x0d\xab\x49\x31\x86\x25\x4f\xe0\x5b\x76\x6e\x59\xf2\x72\x04\x35\xba\x74\x04\x5e\x4c\x6a\xd9\xa7\xa9\x9b\xbc\x9f\xab\x49\x5d\xf6\xb5\x66\x03\xe4\x2a\xed\x96\x52\xe8\x16\x48\xd7\x96\xb4\xb7\x42\xba\x37\xa5\xb2\xb8\x9b\xbe\x53\x46\x8e\xaa\x05\x52\x4a\x88\xbb\x13\x4a\x69\x6e\xf3\x2d\x30\xdd\x83\xc5\x36\x2f\xdc\x42\x6c\xce\x3a\xa0\x06\x69\x7f\x00\xaf\x0d\xe0\xb0\xa1\x4e\xe6\xd1\x10\x71\x47\xc8\x67\xdc\x51\xec\xe5\x3a\x64\xa0\x65\x04\xeb\x78\x0e\x6e\xa3\x4c\x74\xf0\xac\x24\x79\x05\x97\x76\xf9\x50\x31\x79\x5a\x60\x66\x54\xbf\xb0\x50\x0c\xc6\xe9\x0e\xa8\x4b\x30\x63\x4c\x2a\x8d\x4e\x08\xd8\x9b\x80\x16\xe8\x6d\xf9\xd5\x38\x56\xa7\x0d\x67\x49\x2c\xee\x52\x05\x3a\x9d\xea\x56\xd0\xe6\x9c\x1f\xdc\x76\xa9\xbb\x65\x51\x27\xa9\x22\x70\x93\x02\xe9\x96\xaa\x5e\x5c\xaf\x4b\x79\xfa\xdb\x0e\xf8\x18\x4c\x22\xa4\xdb\x61\xcb\x76\x91\xbb\xa7\x48\x0e\xdb\x31\xdd\x6b\x06\xb0\xa5\x09\x4f\xdd\xe4\x16\x0e\x37\xcc\x90\x18\x4a\x40\xba\x55\x7b\xb6\x5c\xae\x56\xe3\x00\x8e\xcc\x22\xdd\x9e\xc0\x76\x63\x7b\xc9\x7d\x1d\x8f\xe4\x09\x48\x77\x00\x89\x4e\x25\x20\xdd\x81\x76\x59\x07\xfa\x21\x40\x6c\xd9\x7a\x6e\xad\xfd\xce\x68\x41\x4d\x69\xee\xac\x03\xcb\x84\xb1\x8f\xf8\x8b\x71\x1b\x48\x77\x90\x1c\x02\x4e\xe2\x6e\x89\x90\xe4\xf7\xb9\x50\xaa\x4b\xc0\x25\x30\xd9\x53\xec\x0d\x50\xdb\x94\x59\xc7\x90\x60\x25\x4e\x3b\xee\xf6\x02\x96\x7f\xb8\x61\xeb\x58\x2a\x5c\x52\x23\x2d\xc4\x87\x00\xb6\xf7\x1d\xd8\x2b\xb7\x87\x3f\x82\x74\x9b\x2d\x71\xed\x58\x38\x80\x2b\x73\xe3\xbe\x43\x62\xf7\x2e\x31\xf9\x2f\x71\xdc\x34\xee\xdb\x7c\x48\x5b\x40\xd6\xdd\xb1\x8c\xb1\x0e\xf6\x8d\x0b\x89\x5e\x53\x14\x90\x74\x08\x8a\x4b\xf5\xed\x81\xc0\x0e\x01\xbf\xf3\x14\x7c\x23\xa6\x7b\x4b\xc2\x89\xa5\xa0\x06\xef\x03\x34\x9f\xbe\x3c\xcd\x26\x2c\x44\x0c\x9c\x7c\x82\x97\xc6\xec\xd9\x32\x74\x14\x6a\xcd\x7e\x63\xa2\xaf\xdd\x21\xe2\x35\x3d\xb6\x99\xfb\x0e\xd8\x71\x7d\x9e\xff\x41\x4a\x84\x74\x73\xb4\xc9\x99\xbd\x63\x4e\xf9\x1d\x44\xb3\xdf\xb6\x0a\x6f\x81\xe9\xe6\x6e\x6f\x31\xae\xff\xda\xa5\x5a\x83\x3c\x6c\x36\x67\xfb\xed\x0e\xd6\x3a\x16\x26\x02\x97\xc2\xaf\x28\xaa\x6c\xbb\x26\x56\xb8\x61\xf4\xe1\xd3\x66\x5b\x0c\x59\x70\xf1\x1b\x6c\x88\xc6\x81\x4c\x3f\x83\x03\x6d\x54\x0b\x64\x44\xd2\x96\xb6\xdb\xca\x83\xf4\x2d\x48\x83\xcf\xe1\xd1\x4a\xc6\x70\x25\xa5\xaf\x51\x3b\xb6\x22\x0c\x75\xfd\xa8\x30\xe6\xa5\x8c\xad\x0a\xd3\x3d\xef\x11\x7b\x3d\x0e\x9b\xd6\x99\x08\x79\x85\xa9\x92\x77\x62\xba\xa3\xe2\xfa\xbf\xe4\x51\x9b\x0c\x87\x50\x8c\x02\xcf\xdc\x90\xd7\x7a\x64\xa4\xea\xd7\xdb\xb7\xa1\x2a\x53\x70\xac\x8d\x71\x91\x38\x42\x85\xe3\x5c\x19\x3c\x37\x56\xcb\x13\x6a\xed\xbc\x6d\x9b\xa0\x8c\xcd\x94\x9e\x62\xd3\xef\x26\x89\xdc\x48\x6d\xb4\xd7\x34\xc5\x49\xcd\x4f\x7d\xb1\xb1\xa2\x50\x73\x9d\x60\x5e\xa2\xb6\xc3\xce\x18\xd6\x7e\xd2\x7a\xa3\x5a\x5f\x32\x4f\xb5\x5a\xc1\xcc\xbd\x24\xf5\x24\x9e\x8f\x02\x14\xab\x7f\xa0\xd6\xad\xe4\x6e\x9a\x3a\x7f\xaa\x80\x1c\x46\x3a\x6e\xd4\x7c\x60\x0c\xef\x4c\x66\xea\xc9\xbd\xc9\x30\x10\xb3\xd4\x81\x46\x97\x92\x8c\x3f\x3b\xd6\xec\xac\x9a\x52\x30\xb2\xda\x10\x68\xf6\xb1\x34\x11\x20\x69\xbc\xf2\xb2\xad\x79\x7d\xe1\xc6\xd3\xb2\x7f\xb5\xde\xa4\x1c\xd5\x3a\x21\xd2\x1a\x2e\xaa\x73\xde\x22\xba\x20\x1c\x83\x2f\x6c\xf5\x92\x7a\xc7\x4a\x93\x37\x9a\x3c\xde\xb4\x5d\xd3\xf6\xa5\x9b\xe8\x1a\x6c\xa8\xab\xcc\x53\xad\x50\x30\x1f\x0e\x01\xb2\x8f\xf8\x0b\x3a\xa1\xd8\x17\xd7\x1a\xcc\xee\x7f\x69\x79\x1d\xcb\xc5\x4c\x6a\x41\xe4\xb6\xd6\x0f\x1d\x2f\xc7\x74\x61\x2e\x9a\x6f\xa1\xe2\x1c\x3c\x30\x78\x9c\x5c\x6d\x15\x7f\xb2\xdb\x39\x83\x6f\x3a\xeb\x14\x83\xc8\x84\x34\x2f\x62\x59\x5c\x33\x38\xd6\x7b\xd8\x6f\xd3\x82\x0e\x68\x88\x01\x28\x06\x9e\x05\x77\xa4\x75\xca\x6b\x8c\x7e\x43\x4a\x38\x06\x0c\x3c\xf1\x34\x7d\x44\x4b\x0c\x2e\xbf\x4d\x85\x90\x00\x8d\x6c\xf5\xa4\x36\xf5\x60\x70\x2b\xef\xbe\xe5\x14\x87\x49\x24\xf5\x47\x03\xf6\x8a\xe2\x1a\x21\xe5\x23\x2f\x2b\xc5\x4b\x07\x05\x5b\x6b\x46\x06\xc2\x4c\x46\xfe\xc2\xe5\xc2\x38\x19\x4f\xe7\x03\x0c\x2f\x3a\x63\x97\xcc\x22\x4d\xd1\xd2\xdc\xca\xcf\x11\x6d\x57\x20\xdb\x93\x1a\x50\x2a\x46\x9b\xe2\x4a\xf4\x31\xb6\x5c\x99\x04\xb2\x73\x64\x29\x68\x4d\xf8\xa8\x73\xe6\xd9\x49\xf1\xf6\xb9\xf3\x98\x2c\x4f\xca\xa0\x68\xb4\x70\x30\x38\x89\x33\x13\x41\x98\xa5\x8a\x23\x2b\x3f\x3f\xa3\x1b\x3f\xa1\xd8\x87\xa6\x34\x60\x35\x1d\x86\xb6\x6b\xb4\xba\x01\x45\xa5\xa5\x10\x7f\x70\x6f\xca\x9e\x74\xb9\xf2\x2a\xb6\x05\x30\xd3\x07\xa9\xf3\x4b\xed\xa7\x6b\xe2\x0b\xe5\x03\xdc\xe9\xc4\xd9\x8d\x98\x16\x7d\xc1\xa2\x9d\xa1\x72\x88\x2d\x84\xe4\xe6\xe6\x87\x6a\x23\x69\xea\xea\x04\x50\xe4\x90\x45\xfa\x09\x84\x08\x4e\xb0\xcd\xa4\xb5\xd9\x95\x51\x6b\x31\x7f\x89\x63\x44\x17\x2f\xa4\x7f\xd4\x03\xf0\xf3\x7f\x2d\x80\x60\x08\xb6\x9c\x50\x67\x7e\x3e\x4e\xc4\x3f\x9f\xe0\x14\xe2\xae\x8f\xff\x59\x64\xb7\x96\x3d\x3c\xf3\xf9\xab\x8a\xfc\x77\xd5\xbf\xd7\xf5\x7c\xdc\x12\x68\x59\x37\xff\x99\x49\x67\x26\x80\x7f\x10\xd9\xc1\x65\xf2\x1f\x75\x7f\x6e\x1b\xff\x2d\x06\x13\x00\x87\x7e\x2a\x74\xab\x97\x1e\x28\xcd\x37\x5c\x45\x4b\xb6\x70\x17\xad\x5b\x9e\x85\x21\xa8\xe4\x89\x2b\x4f\x9d\x2c\xff\x02\xad\x69\xa3\x26\x8b\x28\x51\x6f\x75\x44\x3e\x32\x51\xbc\x1e\xe2\x51\xaa\xc2\xf9\x46\x51\x6e\xd9\xa8\x6c\x51\xb9\x2a\xa4\xa4\x9e\xb4\x14\xfb\x69\xb2\xa8\x70\x51\x59\xa2\x0a\x3e\xe4\x59\x04\x89\xaa\x49\xe7\x44\x31\xd2\x45\x85\x92\x1a\xf2\x65\x7e\x43\x92\xa8\x33\xa2\x34\x48\xea\x52\x33\x4d\x52\x9e\x3b\x2d\x5a\xb2\xdc\xd3\xc5\x84\x3e\x89\x93\xe5\x28\x54\xe9\x0a\xc4\x4f\xb6\xc2\xe4\x5f\x4e\x11\xc5\x11\xd5\xab\x54\x35\xe3\x1a\xe3\xda\x7b\x95\xd2\xa4\x2e\x0d\x8a\x3e\x3b\x97\x94\x7c\x65\x20\x5a\xb5\x9f\x5e\xbb\x83\x65\xbc\x69\xdc\x3a\x5d\x97\xd7\x84\x18\xc2\x42\xde\xe9\x44\x8a\xe3\xa2\xed\x4c\x0d\xa2\x5e\xb5\x43\xbc\xd3\x67\x41\x25\xd2\xb4\x06\x68\x9a\x30\x99\xaa\x0c\x9f\x73\x4f\x57\x97\x82\x41\x13\x6c\x8f\xf4\xb5\x4f\x92\x62\x23\x6d\x99\x74\x89\x93\x2a\x25\x74\xf4\xb8\x26\x76\x6b\x55\x00\xb6\xed\xb2\x73\x7d\x12\x93\x9c\x58\x95\xd7\x54\xe6\x0f\xd3\xc0\x25\x3b\x61\xd4\x22\xcf\xe6\x5f\x8b\x80\xa6\x0a\xda\xd0\x46\x8b\x05\x8d\xf2\xa1\xe0\x4f\xfe\x14\xad\x1c\xf4\x59\x05\x7a\xd3\xc4\x93\xce\xdf\xc6\xbb\xb6\x96\x25\x40\x97\x16\x68\xb8\x2a\xaf\x91\xe9\x4d\x7c\xad\xb5\x5c\x68\x72\x65\x12\x5c\x2c\x6b\xdc\x91\x26\x6d\x2e\x4a\xd1\x49\x6b\x3b\x55\x9b\x94\x4c\xb2\xbc\xf5\x94\xb3\xd2\x2d\x8f\x08\xef\xca\x01\x23\x8b\x6c\x87\x50\x93\xab\x56\x1a\xa1\x5d\x9a\x27\xd6\xc0\x27\x41\x54\x29\x22\x7a\x06\xb3\xbc\x6d\x68\x4a\xb2\xf4\x60\xe9\xcd\xd3\x04\x79\x50\x07\xa6\x46\xc4\xbc\x08\x4d\x36\x4a\x9e\x84\xb6\x25\x5f\x51\xc7\x8e\x14\x24\xea\xc2\x7b\xd2\x13\x75\xaf\xcc\xdc\x5d\x51\xce\x6d\x6a\xa6\xd7\xdf\x48\xc8\x46\x20\xe0\xe1\x57\x8b\x25\x77\x51\x37\x25\xe3\x68\x8d\x6d\x18\x95\xe0\x3f\x9b\x29\x6b\x2d\x6e\x7d\xfa\xae\xb0\x28\x53\x51\xe6\xfd\x0c\xb9\x25\x96\xc3\xf1\xd1\x80\x6b\x5f\xbd\xfa\x4c\xd4\x15\xe0\x7f\x6f\xff\xfe\x07\xf4\x2f\x04\x5a\x0d\xfc\xbd\x23\xf8\xb7\xca\x9b\x46\xe4\xb5\x90\xcc\x9d\xd8\x7e\x49\xfb\x45\xc9\x94\xe7\x94\x44\x4e\x02\x3b\xaf\x23\xaf\x3d\x04\xf8\xf6\x99\x59\x07\x25\xde\x27\x64\x95\x23\xbd\x4d\x84\x5a\x8a\x56\xfb\x71\xd5\x89\x77\xef\x5a\xb9\x77\x4b\x45\x35\x8a\x12\x69\x29\xee\x9a\xb8\xdb\xc2\x64\x21\xca\xcc\x8a\xad\x84\xad\xd7\xa4\x60\x8a\x36\xa1\x8f\xfa\xa0\xc6\xaa\x5c\x4c\xba\xcf\xeb\x31\x51\xf8\x8b\x16\xf7\xf6\x16\x1c\xea\x85\x28\xe3\xfe\xaf\xfb\x7d\x82\x08\x09\x41\xf2\xd6\x9c\x9f\xa8\xff\xcf\x1b\x6f\xfc\x10\xae\xf4\x62\x6d\x1b\x32\x36\x62\xae\x81\x74\x5d\x29\x43\x94\x9c\x87\x58\xb4\xdb\xde\xa9\xe8\x1b\x42\xc7\x12\xe0\x9b\xb9\x6d\x38\x54\xcd\x08\xb4\xd8\x23\xe1\x70\xe8\xfc\x0d\xd3\xfc\x38\x34\x15\x30\xd2\x33\x3c\x6f\x0f\xf9\x25\x52\x8b\xa8\xcb\xd6\xa5\x76\x51\x09\x6d\xe1\x99\x47\x52\xb9\xa8\x5b\xed\x48\x74\x51\x21\x96\x53\xa0\x27\xc9\x8b\xb2\xb7\x4d\x45\x4f\x59\x80\xda\x60\xbe\x98\x4c\xa2\xed\x81\xed\xd5\xd0\xc0\xcf\xa7\x4f\xaf\x7a\x83\xa6\x03\x9a\x1a\x74\x10\x2d\xe9\x28\x9c\x61\x10\x57\x53\x58\x19\xb9\x93\xe9\xd1\x79\x1c\xad\xb3\x72\x13\x9c\x10\x53\x99\x81\x58\x6a\xc2\xc6\xae\x98\xe2\x3c\x83\xe9\x1b\x82\x3c\x35\x77\x5f\x14\x6b\x14\x7e\x05\x80\xfa\xc5\xf4\xf4\x6f\x37\xec\x70\x86\x41\xf1\xe2\x82\x08\xb2\x4d\x2d\x0c\x55\xe3\x33\x32\x8b\xa1\x82\x50\xf6\xff\x82\x40\xe0\x08\x6a\x61\xa8\x66\x9f\x87\x59\x0c\x95\xdd\x6b\x80\x56\xd9\xec\x0e\xb9\xd6\x82\x70\x3d\x7c\x39\xe5\x69\xb2\x24\x2c\x8a\xf0\xec\xeb\x05\x81\x20\xd9\xd4\x68\x98\x97\x7a\x39\x9c\xf3\x11\x8c\xd1\x44\xc9\xf9\x58\xa8\x64\x8d\xa2\xbb\x10\x4a\xd9\x1c\x4e\x0c\x95\xd1\x98\x05\x49\xab\x84\xa1\x47\xa0\x9e\xe1\x9c\xa9\xb9\x28\x72\xdf\x18\xce\xba\x1f\x53\xab\x20\xc8\xfe\x25\x01\x6a\x3d\x8b\x72\xbb\x3a\x6b\xd4\x7e\x68\x21\x4a\x3b\x9b\x82\xae\x86\x38\x4d\x5b\x5d\x7f\xa3\x52\xd8\xe1\xe3\x3c\x76\x0c\xd5\xee\x23\x20\x8b\xa1\x0a\xd6\x33\x29\xdb\xc2\x7a\x89\x75\x0c\x43\x5d\x5e\xef\x49\xfd\xd6\x68\x8a\x35\x8e\x27\x0f\x03\xcb\x5b\xd2\x56\xd2\x31\x54\x48\xaf\xfb\x48\x0a\x76\xc8\x3b\x13\x56\x16\xa1\xd0\x5a\xd4\xbb\x4e\x0d\xd3\x9f\x19\x9c\xc6\x5d\xfe\xf4\xea\xf0\x55\x9a\xac\xb6\xf8\xfa\xbc\x0f\xc3\xb5\x19\x8d\x76\xa2\x77\x6e\x07\x77\x7a\xd0\xd7\xa4\x18\xe1\xda\x17\xaf\x39\x37\xa3\xab\xeb\x85\xc7\xb9\xb6\xef\x30\x72\xa6\xee\x38\xe3\xf8\xe1\x9c\xef\x23\xc3\x75\xc2\xa5\x91\x99\x0a\x75\x23\x48\x12\x34\x59\x76\xa0\xa1\x1d\x3d\x39\xbe\x06\xf9\x7a\x4a\xa0\x27\xf1\x8d\xc3\xac\x01\xa7\x17\xe9\xd5\xb0\xd2\xc0\xc7\xd9\xbd\xe3\xeb\xfa\xaa\x73\x4f\x6f\x99\x3c\xe5\x05\xf6\xfc\xad\x25\x5d\x76\x75\x2c\xed\x9c\x73\x72\x5d\x46\x74\x71\x45\x44\x58\x2a\x2e\xe4\xa3\x2a\x2a\xbb\x1e\xc6\x1a\xd7\x42\xc4\x8e\xec\xc8\xf3\xde\xf1\x91\x65\x25\xc8\xdb\x3c\xc7\xcb\x42\xad\xeb\xbb\x8f\x0d\x5f\xc3\x9c\xa2\xa5\x33\x1d\x51\xfd\x59\x82\x69\x79\xbc\xe8\x5a\x80\x9e\x8d\xd1\xcf\x15\xe0\x60\x4a\x8e\xe8\xf3\x33\xb0\x6d\xb0\xe5\x6c\x69\xf6\xc5\x8c\xee\x66\x86\x6b\x2c\x28\x25\x3b\xa2\x17\x32\x52\xcf\x4f\xd7\xb6\xc1\xf6\xb3\xb1\x6b\xcb\xa2\xf6\xec\x78\xf4\x6b\xce\xa2\xa8\x35\x3e\x3f\xc2\xf5\x69\x7e\xdb\x68\x7f\x10\x53\x12\x9a\x8f\x56\xfa\xb6\xc3\xdb\xe4\x3b\x99\x47\xc7\x17\x63\xab\xad\x95\x98\xd8\xc5\xe1\x6c\x5a\x28\xa6\x19\x9c\x5f\xe5\x21\x50\x54\x68\x04\xdd\xa4\xe2\xff\x4f\x44\xfc\x7f\xb5\xd1\xa3\x8d\xe0\xab\xc5\x56\xb6\x02\xc0\x2f\x81\x60\xf2\x22\x2c\xbb\xb9\x46\x0f\xe0\x30\x36\x15\x80\x1f\xcc\x49\xf8\xe7\x93\xbe\xb6\x80\xcf\x9f\x02\x27\x4f\x63\xb8\x0c\xf0\xeb\x58\x3a\x7e\x2d\x00\x45\xdc\xe4\x18\x22\x46\x06\x1d\xbc\x93\xc9\x71\x4b\xb2\x68\x53\x47\x36\x7b\x83\x1e\x5b\xe0\xeb\x20\x9f\x0a\xcb\x14\xd0\xe5\x07\x85\x9c\x8f\x37\x8a\x38\x9e\x91\x94\xb0\x3b\x12\xff\xa5\x6c\x89\xed\x98\x2a\x26\x53\xa1\x44\x01\x21\x91\x52\x48\x34\x50\x43\x1d\xed\xcf\x78\xdb\x96\x8a\xbf\x67\x85\x24\xf8\xa1\xd0\x5a\x11\x1e\x6f\xb2\x0f\x93\xd0\x0c\x12\xe7\x0c\xa6\x08\x36\x9f\x62\xb3\x4b\x28\x5f\x95\xf9\xbc\x71\x56\x8c\x0b\xbe\xd4\x46\x62\x07\xa5\xe8\x13\x9f\xe5\x0b\x94\x91\x66\x88\x42\x5a\x2d\xc1\x51\x52\xad\x1d\x6c\xae\x86\x15\x77\xc2\xa5\x59\x96\x18\x51\xc1\xf0\x09\x56\x26\xaa\xfc\x8a\xbf\xaf\xad\x8f\x1e\xda\x18\xa8\xc5\x87\x78\x9b\xf2\x02\x1c\x65\x05\x6d\x91\x82\x5f\xb0\x21\xd7\xcb\x71\x77\xb5\x0a\x9a\xc8\xd7\x14\x7e\x69\x86\x51\x54\x87\x28\x76\xc1\x24\xe6\x5b\x43\x2c\xf9\x45\xcc\x27\x26\x55\x7d\xbd\x18\xb2\x99\xc0\xf0\x46\x6f\xe6\x11\xe5\x4f\xe5\xa5\x88\x44\x8d\x13\x15\xbf\xc4\x0b\x70\xf4\x91\xca\x58\x33\x6e\x0a\x46\x36\x51\x01\xde\x93\x15\x35\x27\xc8\x46\x72\xe7\xc0\x95\x59\x89\x0c\x26\x6a\xae\x7d\x98\x0c\x0a\x8f\x79\xa4\xf3\x5e\x75\xd8\x88\x5b\x5f\x58\x4a\x06\x8b\xea\xf7\xbe\x7b\x67\x7a\xe3\x5b\x46\xf4\x26\xbb\x84\xf0\xa4\xf1\x72\x39\x51\xf1\xd6\xed\x88\x38\x44\x31\xa8\xd2\x5f\x0a\x86\xea\xb0\xce\x65\xae\xa9\xc3\xe3\xee\x65\x9b\x54\x0b\xe5\xfb\x97\x39\x2f\x02\x06\x80\x23\x32\xdf\x9b\x38\x76\x0a\x16\xe2\xad\x78\x13\x84\x8a\x12\x29\x4d\xa1\x1c\x11\x81\xe5\x16\x86\x25\x96\xa1\x4b\x10\x16\x38\x7e\xb2\x48\xba\x22\xab\xac\xb0\x46\x96\x18\x0b\x3c\x31\x4b\xb8\x4c\x53\xbc\xc0\x34\x27\x0f\x3f\xc4\xdb\x3a\xc5\x5f\x86\xe5\x77\x86\x97\x2a\x42\x90\xfb\xb0\xb4\x8b\x9f\xef\x02\x17\x26\xa2\x8b\x41\x7a\xe9\xa3\x9f\x9f\x74\xf3\xc3\xed\xb0\xe8\x5c\x47\x48\x34\xb1\xf6\xb4\xb7\x7d\xed\x4f\x3c\x89\x88\x1d\x48\xb2\x83\x49\xc9\x08\x69\x66\x74\x26\x31\xfa\x69\xa4\x94\x72\x2a\xa9\x4a\x09\xb5\xd4\x5d\xd1\xbd\xd3\x4b\xdf\x12\x9d\x5a\xaa\x22\xfa\x36\x22\xc1\x68\x89\x92\x8c\x31\x56\xb2\x14\xe3\x8c\x37\xc1\x44\x93\xa4\x9a\x6c\x8a\xa9\xa6\x99\x6e\x86\x99\x66\x49\x93\x2e\xc3\x6c\x73\xcc\x95\x29\xcb\x3c\xd9\x72\xe4\xca\x1b\x21\x14\x28\x54\x64\x81\x85\xdc\xe6\x9c\xa5\x16\x59\xac\x4c\xb9\x25\x2a\x3a\x89\x4a\x55\x96\x5b\xa1\xda\x4a\xab\x9c\xe3\x29\xd6\x86\xff\xd8\x20\x29\x06\x1b\x62\xa8\x54\xc3\x0c\x37\xc2\x48\x69\xd2\xc5\xce\xef\x23\xc6\xf8\xc4\xa7\x32\x8c\x35\xce\x78\x13\x4c\x34\xc9\x64\x53\x4c\x25\x8c\x4f\xb5\x44\xf5\xcc\xe7\xbe\xf0\xa5\xaf\x7c\xed\x1b\xdf\xfa\xce\x5a\xeb\x7c\xef\x07\xeb\x6d\xb0\xd1\x26\x9b\x65\xdb\x62\xab\x6d\x7e\x14\xf5\x93\x1c\x2a\x55\x45\x3b\xcf\x3c\xd7\x60\x07\xd5\x6a\x34\x12\xe4\x03\xd4\xe8\xa4\x58\x13\xef\xd4\x7a\x13\x9f\xfd\xe2\x57\xbf\xf9\xdd\x2e\xbb\xed\x81\x16\xbd\xf6\xd9\xef\x80\x3f\x48\x94\x2c\xc9\x3c\xb9\x9e\x4a\x95\x2f\x5a\xac\x38\x2f\xe3\xa7\x83\x0e\x39\xec\x88\x2b\x9c\x77\x7c\x31\x27\xe5\xd8\x67\x70\xc1\x45\x97\x5c\x76\xc5\x55\xd7\xfc\xcf\x93\x0a\xb2\x27\xf1\x63\x4f\xa6\xc7\x1e\xeb\x6a\xf3\xf0\xe6\xc3\x57\x1c\x2d\xc1\x63\xfa\xcc\x52\x64\x4f\x62\xc8\xbe\x57\x4b\x65\x72\x05\x4e\x28\x55\x6a\x8d\x56\xa7\xb7\xb0\xb4\xb2\xb6\xa9\x04\xd9\x35\x99\x89\x83\x63\xa5\x3d\xa7\x59\x59\xa1\x1e\xfc\xd8\xe9\x5a\xce\x54\xd7\x8a\xe3\x23\xd4\x27\x67\x1b\x69\xd7\xa1\xbc\x48\x53\x5f\x7c\xa5\x37\x91\x77\x85\x0a\x88\x49\x49\x14\x65\xf2\xae\x91\x93\xbd\xb0\x3b\x5e\x99\x52\x4a\x2a\xe5\xd4\x2a\x54\xaa\x56\xa5\x56\x8d\xba\xea\x7b\x7f\x96\x00\xfc\x08\x03\xf7\x82\xe5\x78\x41\xec\x5f\x05\x9d\x0c\x04\xf5\x5b\x42\xe8\x19\x18\xa1\x4c\xcc\x2c\xac\x6c\x48\xed\x7d\xec\x47\xbf\xb9\xf6\x14\xce\x64\x42\xed\x88\x45\x54\xaa\x52\xad\x46\xad\x3a\xf5\x1a\x44\x35\x6a\xd2\x69\x1f\xaf\x55\x9b\x76\x1d\x3a\x75\x81\xb5\xd1\xfa\xf4\x1b\x30\x68\xa8\x5f\x41\xf1\xe5\x9a\x28\x45\x70\x23\x8d\x0a\x11\x8a\x2a\x4c\xb8\x08\x91\x68\xe8\xa2\x44\x8b\xf1\xc4\x53\x0c\xc1\x63\x1d\xdb\x00\x40\xbf\x8e\xd7\xaf\x4f\xc6\x18\x77\x9e\xb3\xe7\xc8\x73\x4c\x3c\x67\x6f\x62\xb5\xbc\x73\xf6\xc1\x76\x6e\x37\x46\x93\xcb\xd8\xae\x73\xa5\x0d\x75\xce\x38\xa2\x73\xd6\xc9\x39\x67\x5f\x2d\xe7\xac\x0b\x72\xce\x7a\x15\xe7\x6c\x80\x70\xce\x06\xfd\xe6\x6c\x04\x6f\xce\xc6\xe5\xe6\xc4\x6d\x8e\xd5\xe6\xf2\xbc\x8c\xfb\xa2\xb1\x1c\x2b\xb1\x1a\x6b\xc1\x8d\x75\x1d\x37\x0e\xf7\x32\x2e\x78\x99\x2a\x4a\xb2\x8a\x7b\x9b\x9e\xab\xea\x83\x08\x13\xca\x1c\x0c\x77\xcf\x30\x8a\x93\x34\x93\xa5\xba\x05\xdc\xa4\x0f\x61\xb9\x5a\x6f\xb6\xbb\xfd\xe1\xe8\xdd\xfe\xba\xdd\xdc\xde\x9d\xef\x25\x80\x18\x4e\x90\x14\xcd\xb0\x1c\x2f\x88\x92\xac\xa8\x9a\x6e\x98\xd2\x6d\x2c\xdb\x4e\x78\xbe\x63\xfb\x1f\x28\x4e\xd2\x2c\x2f\xca\xaa\x6e\x5a\xc3\xf6\xe7\xac\x1f\xc6\x69\x5e\xd6\x6d\x3f\xce\xeb\x7e\xde\xef\x07\x40\xc8\xb4\x8d\x45\xdb\x06\xae\xd9\xfe\xa6\x4c\xd1\x0c\xcb\xf1\x82\x28\xc9\x8a\xaa\xe9\x86\x69\xd9\x8e\xeb\xf9\x41\x18\xc5\x49\x9a\xe5\x45\x59\xd5\x4d\xdb\xf5\xc3\x38\xcd\xcb\xba\xed\xc7\x79\xdd\x8f\x13\xdf\xef\x77\x3d\x3f\x08\xa3\x38\x49\xb3\xbc\x28\xab\xba\x69\xbb\x7e\x18\xa7\x79\x59\x37\xb9\x1f\x27\x88\xaf\xfb\x51\x77\x63\x6f\x37\x38\xbb\x63\xdf\x2f\xec\xc6\x9c\x6e\x20\x74\x63\x87\x37\x5e\xc5\xa3\x63\xbf\xff\x98\xbc\xb1\xc4\x7b\xdd\xd4\x87\x19\x87\xe0\x30\x38\x2c\x0e\xf7\x5b\x8e\x05\xde\x98\xd4\xfd\x07\x09\x27\x88\xdb\x82\x13\xc2\x6d\xc5\x6d\xc3\x09\x23\xc2\x76\x76\xb0\x93\x5d\xec\x16\x17\x02\xa2\x88\x09\x87\xfb\xde\x1b\xf2\xf3\x53\xcf\x60\x99\xca\xdd\x82\x1c\xc8\x59\x2c\x1d\x19\x9d\x8c\x9e\xc0\x53\x9c\x4c\x34\xec\x63\xcf\x88\x25\x41\x71\xc1\x0a\x61\xbc\x40\xe3\xd5\xc4\xc5\x37\x55\x6a\xe2\xa2\x38\x62\xbe\xfb\x64\xc0\x3e\x8f\xb1\x26\xfc\xd1\x60\xff\xec\xea\xfa\x86\xab\xe7\xbf\xff\xfc\xfd\x06\x37\xb4\x94\xcf\x05\xd4\xe8\xc7\x3b\x0f\x4a\x2e\x2f\x35\x53\xcc\xf7\xde\x69\xc2\xcd\x1d\xf7\x13\x13\x7d\xab\x83\x0b\xb5\xa3\x23\x86\xe2\x2d\xb4\xd1\xe5\x16\x30\xd4\x31\x61\x00\x15\x42\xce\xcf\x6d\x3e\xa6\x3e\x7a\xd6\xf8\x9e\xea\x0c\xf2\xe9\x60\xba\xd1\x54\x91\x6a\xc9\x67\x10\x95\x0e\x77\xb7\x3d\x28\x98\xea\x05\xf2\x89\x68\xac\x2f\x13\xe8\xb2\x06\x97\x16\x1a\xa2\xcb\xff\x43\x49\x64\x48\x07\x16\x5b\x12\x13\xea\x9f\xaa\xbe\x24\x36\x4d\x7a\x1f\x9b\x7f\x79\x76\x65\xe2\x80\x61\x6c\x31\x5d\x2c\xc4\xf9\x25\xc3\x33\xfa\xba\x6e\x9a\x97\xce\x78\x70\x8f\xde\xec\x4b\x80\x88\x54\xde\xba\x8d\x48\x18\x17\x29\x53\x62\x60\x5c\x48\x35\xa0\x8d\x0d\x0f\xb8\x4c\x09\x26\x8c\x0b\xe5\x69\x13\xd2\x15\x02\xc2\xb8\x90\xca\xd3\xc6\x06\x28\xad\x26\x28\x2f\xa8\x35\x00\x88\x09\x65\x5c\x64\xc4\xd8\xb6\x36\x36\x34\xeb\x94\x60\x42\x93\x70\xce\x39\xe7\xbc\x01\x00\x11\x26\x94\x65\x24\x1a\x0b\x21\x29\x65\x53\x80\xea\xf0\xd4\x02\x80\x84\x32\x2e\x42\xbb\x4f\x80\x8a\x79\xa5\x74\x68\xb6\x39\x21\x3c\x65\xef\xc0\x5e\x08\x6f\xbd\x82\x23\xe3\x97\x02\x00\xc2\x84\x32\x2e\xa4\x1a\x92\xda\xd8\x93\x7c\x28\xfe\x11\x40\x02\x11\x26\x94\x71\x21\x55\x5b\x85\x8f\xea\x38\x8e\xe5\x90\x9b\x25\x46\x77\xa6\x63\xb5\xd4\x91\xf1\x76\x3b\x84\xee\xb5\x27\x72\xd3\x5c\x7e\x66\x1f\xad\xc6\x0a\x2c\x27\x62\xd0\x0b\xb6\xb8\xf9\x5c\x58\xa6\x6c\xaf\x5e\x75\xae\x8e\xbc\x3f\xa2\xfd\x70\xef\x21\x43\x47\xb7\xb0\x41\x0c\xfe\xea\xd7\x7e\x32\xc6\xf3\x83\xb6\xbd\xe8\x76\x71\xdf\xb1\xa7\x3c\x5c\x49\x71\xce\x00\xd6\x62\xe9\x84\x9e\x7f\xbc\x7f\x7c\xec\x9b\xf3\xaf\xb0\xcd\xdb\xf2\x47\xa6\x5f\xb7\xb2\xad\xe6\xf8\x8c\x37\x1f\xf5\xf9\x54\x60\x3b\xf2\x57\xc2\x9f\x6e\x66\xd1\xd3\xbd\xea\x70\xd4\xe2\xd7\x3c\x5d\x6d\xd4\xaf\xf7\x5d\xad\xd5\xc0\xdd\x53\x0e\x5d\xd9\x8b\x1f\xf9\xf9\x8a\xa9\x43\x47\xed\x54\x3d\xa4\xdd\x1d\x7a\xe8\xa3\xc0\x00\x43\x8c\x30\xc6\x04\x53\xcc\x30\xc7\x02\x4b\xac\xb1\xc1\x16\xcf\x28\xf1\x82\x57\xbc\xe1\x7d\x72\xc2\x03\x8f\xa6\x1c\x93\xc0\xd2\xcc\x06\x1f\xe1\x2c\x39\x73\xc0\x55\x2d\xee\x74\x71\x79\xf1\xe0\xb4\x43\x37\x94\x91\x9d\x7e\x9c\x96\xfc\xc8\xe9\xca\xe7\x1a\x35\x54\xbc\x52\xd2\xa8\x06\x7f\x39\xaa\x10\x7b\x7b\x01\x9e\xc6\xec\xa8\x73\x6a\x0f\x6e\xa1\xa1\x59\x74\x47\x5d\x52\x73\x3c\xba\x30\x39\xfc\xc2\x1c\xbe\x5a\x6d\xd4\xda\x09\xbc\x6c\x54\x3c\xc9\xaf\x59\x3a\x68\x01\xe8\x27\x40\x45\xc7\x75\xff\xed\x9b\xfa\x71\x48\x29\xd8\x1e\xec\xc3\xd9\x36\xff\x33\x09\xbf\xfa\x7e\xf3\xd5\xaa\x3f\xf9\xa6\x7e\x37\x01\x7b\x64\x13\xb4\x0f\x06\xa9\x50\xd3\xb7\x93\xd6\xca\xe5\x32\x72\xed\xed\xa9\xd4\x95\xf5\x95\x4a\xe7\xc2\xe6\x7b\x30\x9d\x97\x74\xba\xf0\x69\x4c\x4e\x06\xe6\x6e\x46\xc3\xb1\xfb\x92\x03\xe6\x8a\xdc\xa0\xb8\xed\xd9\x35\x44\xce\xe7\x4f\x9d\xa9\xdd\xa7\x5e\x59\xc7\x58\x73\xf5\x71\x01\xe1\xc7\xd5\xea\x4d\xfb\x8a\x09\xba\xd4\x4f\x60\x79\xfe\x6a\x1c\x71\x75\xe4\x10\x57\x38\x95\xc6\xe9\xef\x95\x06\xf6\x6d\xed\xe0\x69\x6b\xd8\x7d\x8d\x71\xd8\x53\xc1\x68\x20\xa9\x6d\x9e\x07\xd4\x36\x75\x76\x54\x49\x3d\x74\x0d\xa8\x1b\xea\x2d\xc0\x84\xdd\xae\x63\x04\x79\x89\x42\x00\x5e\x58\x45\x47\xdd\x61\xe2\x8a\xa7\x8e\x11\x54\x05\x96\x5a\x10\x03\xac\x6d\xe1\xfa\x1d\xb7\x9e\x87\x0e\xc1\xfe\xa3\xf8\x0f\xdd\xb1\xbe\xf7\x17\xf5\x2d\x2a\x3d\x4e\xb7\x75\x6c\x14\x6d\x4d\xbb\x8e\x89\xb9\x96\x24\x62\xa0\x8e\x89\xf9\x13\x14\xd7\x98\xf5\xfa\x96\x6c\xc6\x0d\x6f\xdb\x53\x66\xc6\x8f\x6d\x9d\xe9\xa2\xad\xa7\xdd\xdb\xf6\x0c\x65\xe2\xe4\x85\x00\xd3\xa4\xcc\xaa\x9b\x94\xd3\x57\xa9\x8b\xb2\xc2\x4c\x28\x26\x18\x51\x80\xf9\x85\xcd\x40\xa5\xd6\x99\xea\x85\xa6\xac\xa9\x64\x51\x02\xdf\xd1\x51\xea\x51\x3c\xf0\xc8\x09\x46\x3f\xf8\xaa\xd4\x0d\x5d\xb1\x4d\x68\x26\x6c\xa2\xc9\xb7\x5d\xde\x96\x80\xbd\xbe\xb5\xd2\x7a\xab\x5d\x9d\xa4\x31\xa8\xed\x6a\x60\xee\x65\xc1\xdb\xa5\x6e\xf4\xf7\x9e\xe6\x2f\x66\xf9\x7b\xa6\x92\x1f\xbb\x5c\xea\x55\x58\x29\xa5\x15\x12\x6c\xa1\xa4\x7b\x14\xca\x7e\xbf\xfd\x90\xf5\x9e\x60\x3b\x46\xea\x5f\xd8\xfa\x76\xad\x43\xff\x67\xd9\x7f\x3f\x8f\xfb\x95\xfa\x21\x00\xf8\xff\x70\x5b\x1f\x7e\x00\xff\xd3\x11\x2f\x6e\x03\xb8\x7f\xdf\xca\x3d\x41\xbb\xce\xc8\xe5\xf3\x15\x5e\x6f\x71\x5c\x87\x7d\x71\x7e\x1d\xcf\xcd\xe9\xa4\x7a\x2d\x64\x81\x3d\x1c\x66\xa5\x33\x24\x1c\xc1\xeb\xce\xf9\x59\x4b\xab\x0a\x20\x5a\x5c\xf7\x0e\x68\xf4\x79\x78\x0a\x5d\x48\x09\xe6\xfe\xeb\x81\x8a\x10\x0c\xeb\x00\xbb\xc3\x32\x48\x4a\xc2\x11\xfc\x3a\x2a\x8f\x62\x72\x54\xcb\xad\x1c\x03\x9a\x39\x8c\xcb\x8c\x46\x3b\x8c\xab\x2d\x50\x6d\xfa\x61\xad\x0a\xe6\x20\xcc\xc6\x61\x50\x6d\x24\x6d\xea\x0c\xf7\x22\x68\x00\xc6\x86\xd5\xce\xf5\x43\x73\xa0\x74\xca\x04\x67\x72\xda\x01\x55\xf0\xb8\x4d\x95\xa3\xcf\xa0\x44\x17\xc9\x16\xd0\x25\x1b\x61\xc9\x63\xca\x8b\x2f\xde\x47\xd1\x58\x12\xfb\x73\xeb\xc5\x57\xb3\xf6\x0a\x8f\xf5\x64\x06\x3a\x0f\x88\x45\xb1\x0c\x7a\xfe\x08\x58\x59\x33\x09\xf2\x84\x74\x4a\xcb\xac\xd6\x57\xae\x33\x6a\x99\x6f\x63\xc4\x3d\x2d\xe9\x8d\xc1\x57\xdb\x65\xf3\x37\xf7\xae\xf5\x90\xf2\x33\x95\xd2\xcb\x30\x6d\xed\x70\xc2\x1e\x25\x1a\x87\xc9\xd0\x46\x5f\xbf\x6f\x81\xdf\xd8\x58\xe2\xcf\x24\x70\x81\xa2\x14\x79\x32\x55\x44\x8e\x8f\x48\xf4\x81\x40\xb6\x7e\x99\x73\x6e\x2d\x67\xf4\xd3\x91\xc7\x0b\xee\x3f\x03\x31\x45\xfc\x47\x49\x17\x3b\x18\x5d\x3e\x2e\x44\x01\x92\xc4\xbc\xb1\x4a\xa1\x56\x98\x72\x3b\x15\xd6\xac\x8f\x15\x8d\x26\x71\x86\x61\xe6\x6b\x0a\x4f\x87\x3d\xc6\xab\xdc\x3f\x14\xae\x3b\x56\x68\xc2\x38\x1c\xc4\x41\x5a\xe2\xe5\x4e\x31\xc2\xa1\x34\x32\x60\x19\xae\x9a\xfc\x36\xa8\xf0\xbd\x4e\xc6\x0a\x45\x75\x1c\x79\x15\x5d\xb4\xb3\x48\xc6\xd9\x21\x5e\x3a\x52\xa9\x45\x57\x0c\xf7\x98\x06\xc0\x3b\xdc\x92\xdf\x26\x77\x4f\x5d\x00\x84\xa9\xd4\x66\xcc\xae\x2b\x01\x40\x44\x62\x57\x19\x60\xe4\x32\xa4\x02\x04\xe2\xe8\xad\x22\xe0\x39\xc5\xb8\xd0\xe0\xf1\x65\x4c\x5f\x0b\x7b\x4b\x7f\xde\xd9\xf5\x29\x78\x01\x89\x2e\xd7\xe0\x8f\x2e\x9f\x0f\x4b\xdf\x35\xc9\xbf\x55\x6c\xa6\xa2\xb7\xfb\x8e\x96\x8a\x5b\xf0\x6b\x13\xe4\x26\x3a\xd8\x6c\x19\x0d\xcf\xc7\x32\xd1\x1e\x2c\xdc\x2b\x41\xfb\xfe\x23\x7d\x77\x04\x00\x51\x3c\x9a\x15\x39\x85\x56\xca\x10\x0a\x82\xc8\xf9\x76\x64\xb9\x42\xf9\x99\xd9\xaa\x95\x67\xd7\xed\x06\x88\xa2\x66\x8c\xd9\xc3\x84\x32\xae\xa4\xa7\x8d\x8d\x9b\x5d\x22\x98\x50\xc6\x85\x0c\x74\x1f\x68\x63\xe3\x56\xe2\xea\x25\x87\x04\x61\x42\x43\x5c\xaf\x61\x68\x36\x0b\x93\x83\x96\xfe\xe3\x16\x10\x88\x46\x8d\x50\xc6\x85\x54\x9e\x36\x76\x5d\x1f\x00\x44\x98\x50\xc6\x85\x54\x9e\x36\x36\x6e\x6b\xad\xb5\xd6\x5a\x6b\xad\xb5\xd6\x5a\x1b\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x58\x6b\xad\xb5\xd6\x5a\x6b\xad\xb5\xd6\x3a\xd7\x13\xa0\x8c\x8b\x9f\xec\xd5\x7f\x77\x33\xce\xb0\xdf\x14\x25\xcd\xda\x47\x7e\x92\xf2\x43\xb0\x5e\xb3\x1f\x61\x36\x43\xb0\xf7\xc1\x64\xa5\x6b\x10\xb5\xa6\x41\xe4\x27\x69\x3d\xc4\xc5\x6c\x63\x20\x76\xd4\x88\x0c\xc1\x36\xb0\xa3\xb2\x3a\x49\xec\x59\x29\x63\xe9\x5c\xc3\x05\x98\x22\xc4\xce\xd0\xed\xc2\x5f\x84\x0c\xd9\x02\x72\xa0\x67\x35\xe1\xff\xe2\xc1\x66\x5f\xe9\x4b\x01\x33\x51\xa7\x58\xa0\x7f\xff\xff\x0b\x3c\x2a\x00\xbc\xc9\x3d\xc0\xf2\x84\x80\xa4\xf0\xb5\xe1\x01\x01\xbb\x89\x34\x64\xc6\xce\xc2\xf1\x29\x7e\x92\xbd\xcc\x56\xb5\xec\xf7\x95\x04\x4c\x9e\x41\x03\xb7\xd6\xbd\xd5\x9d\xc6\xc2\x01\xff\x9a\xdb\x1a\x06\x3a\x3b\xb0\x03\x72\x61\x2c\x98\x7d\x9c\x91\xb0\x93\xee\x2c\x7c\x18\xfd\xe2\x4e\x07\x5c\xbb\xbc\x82\x04\x0a\xc1\x19\x5f\xe6\xb9\xfe\xb2\xc1\xec\x26\x62\x7b\xdf\x0b\xc3\x4d\x6e\xec\x2e\xdc\x16\x85\x87\xc8\xe6\x93\x6f\xe2\xe8\xb7\x30\x46\x63\x7a\xa7\x8f\x00\x01\x00\x00\xff\xff\xaf\x03\xf3\x67\x14\xc9\x00\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff2() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff2, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.woff2", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_eot = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xae\x55\x50\x1b\x0e\xd0\xb7\x9b\x40\xf0\xe0\xee\x21\x04\x77\x87\x22\x0d\x10\xdc\xa5\xfc\xb1\xe2\xee\x5e\xa0\x94\x12\xdc\x8b\xbb\x04\x77\x8a\x16\x77\xd7\x22\xc5\xa5\x68\xd1\xe2\xa5\x14\x28\x3d\x73\xde\xf9\x2e\xde\x39\x67\xbe\xdf\x5e\xec\xce\x3e\x33\xfb\xac\xcf\x0e\x00\xe0\xf4\x1d\x00\x40\x03\xa0\x01\x40\x80\xff\x1d\x20\xa0\x1b\xed\xff\xed\xea\xda\xff\xd0\x00\x3b\x26\x10\x00\x11\xe4\xff\x90\x42\x20\x00\x02\x00\x00\xb5\x34\x65\x33\x9c\x00\xff\xbf\x50\x00\x74\x01\xee\x00\x2b\x80\x3b\xc0\x07\xe0\x0e\x80\x00\x34\x00\xee\x00\x37\x80\x3b\x00\x00\xc0\x06\xc8\x01\xdc\x01\x2e\x00\x1b\x00\x00\xa0\x0f\x30\x00\xd8\x02\xbc\x00\xde\x00\xc7\xff\xe1\x10\x80\x20\x80\x17\xc0\xff\x3f\x25\x01\x10\x07\x88\x00\x24\xff\x67\xc7\x0f\x10\xf8\x3f\xb3\x0f\xc0\x07\x60\x07\xb0\x04\xf8\xfe\xcf\x5d\x07\x80\x23\xc0\x0d\xe0\x03\x80\x00\xd8\x01\x7e\x00\x01\x00\x2f\x40\x08\xc0\x01\x00\x00\x20\xff\x17\x3b\xe4\x7f\xb9\x01\x00\x39\x3d\x25\xed\xff\xef\xdf\xe8\x40\x19\x61\xc0\x67\x34\xc0\x0c\x16\x20\x99\x86\x6c\xe6\x24\xfe\xeb\x52\x34\x75\x53\x4e\xe8\xdd\xc5\xd5\x8d\x3a\x5d\x0e\x9d\x83\xb0\xf0\x85\x43\xd2\x3c\x41\x29\x1a\xfa\x93\xf8\xe8\x6f\x50\x56\xa0\x68\x45\x52\x7c\xd6\xcf\xb4\xbc\x56\x50\x19\xad\x8e\xdc\x3b\x9c\x6d\x5f\xb7\xf2\x3c\xcd\xee\x11\x0e\x47\xfb\x18\xc1\x01\xe1\x0e\x2a\x9d\x43\x41\x3b\x3d\xd5\x9f\xc2\x70\x3d\xe9\xe7\x0d\xb2\xd4\x1e\x6b\xf9\xc9\x9a\x3e\x24\x65\xf9\xad\x4d\x59\x6e\xd9\x50\xa8\x04\x6a\xff\x56\xef\x0b\x37\xbd\x98\x02\xc3\x99\x81\xad\xd1\x16\x06\x56\x89\xe0\x87\x89\x0f\xba\x97\x58\xa4\x9f\xd0\x10\x49\xfd\x3c\x34\xfb\x42\x58\xd2\x8c\x17\xc8\x4b\xaf\x26\x3d\xee\x66\xd7\xd3\x61\x7e\xdf\x1b\xbb\x5e\x2d\xd3\xb3\x3a\x5c\x35\x8c\x77\x94\x3e\xc9\x4d\x47\xd4\xe1\x18\xb4\x67\xdd\xe6\xb3\xcf\xd7\xfa\x46\x19\x58\x26\x91\xda\x8c\x47\x59\x0c\x86\xd4\xee\xb7\xee\x5a\xfe\x2f\x0c\xef\x57\x4c\x4c\x25\x3e\xd9\xa5\x84\x28\x2c\xcf\x03\x49\x62\x3f\x2d\xb5\xc5\x10\x83\x62\x2b\xf6\x72\x7c\x88\x77\x2c\xf6\x05\xd0\x93\x31\x05\xa7\xff\x92\x3e\x48\x68\x86\xdd\x50\x0c\x99\x24\x90\x09\x1b\x26\x0f\x28\x45\xf0\x83\xc6\x89\xe0\xb2\x48\xe0\x31\xe3\x1d\x63\xe9\xf7\x28\x34\xb1\x93\x56\x82\xca\x85\x28\x45\x67\x79\xe3\x5c\xf6\x35\x3b\x54\x80\x90\x5c\xbb\x57\x73\x7a\x96\xe0\x31\x1d\x57\x95\x4f\xa6\x8e\x6f\xa6\xa5\xdf\x27\x8f\xdf\xd1\x00\x38\x14\x8d\x88\x0a\x09\xc2\x85\x58\xa2\x47\xb3\x84\x66\x77\x61\x34\x47\x82\x2d\x96\x09\x2c\xee\xe1\xc1\x24\x78\xf3\xc8\xd9\x4d\x3a\xbf\x07\x31\x58\xa8\x97\x21\xd6\x4e\x88\x35\x19\xfa\x91\xa1\xaf\xc2\x45\x75\xcf\x7c\x42\xa7\x44\x9b\x83\xe8\x4f\xd6\xcd\xfe\x8d\x7b\x9a\xe0\x85\xd9\x20\xa3\xcc\x5b\xc9\xf0\x59\x12\x3b\x06\xc8\xbd\xed\x42\xb6\xcf\x0f\xed\x9b\xfa\xda\x9a\x3a\xce\xb3\xc9\x2e\x12\xde\xe9\x68\x62\xe8\xcf\xf1\xae\x14\xde\xf3\xb8\xee\xbd\x63\x4f\x00\x18\x82\x11\x0e\xe4\x0f\x11\xa5\xf4\x0d\x47\x6b\x08\xb1\x23\x22\x18\x44\xa3\x82\xab\x61\xe3\x5a\x02\x5d\xf8\x44\x29\x9b\x29\xc1\x1e\x8c\xe1\x38\x96\x68\xfe\x08\x05\x45\x89\x0c\x54\xa9\x4d\xae\x16\xa1\x9b\x8b\x55\x62\xcf\x5a\x71\x1c\xe1\x65\x21\x67\x3b\xb6\xd0\x6f\xb8\xcf\x9f\xbf\x6e\x47\x7f\xaf\x42\x99\x32\x29\x20\x0d\xdd\x97\x6f\xbf\x61\x83\x19\x3b\x39\x77\x9d\x47\x97\x79\x43\xf8\x3c\xba\x62\x2a\x26\x30\x95\x8b\x80\x91\x02\x19\x27\x33\xd3\x5f\xf7\x54\x1d\x8e\x8a\x45\xdf\xfb\x4c\x1d\x50\x59\x75\x32\x8e\xce\xbf\x77\x32\x86\xba\x0b\x41\x8d\x70\xe9\xac\xac\xd7\x68\x98\xa5\x05\x05\x48\x95\xde\xef\x8c\x0c\xaa\x09\xb0\x1a\xbc\xc4\x89\x05\x64\x22\x52\x10\xa9\x7b\xe8\x1c\xce\xd1\x88\x2f\xea\xb5\xca\x39\xd1\x9c\xde\x3f\x2b\x50\xce\x16\x96\xf6\x3e\xc6\x5b\xc0\x54\x72\x90\x1a\xe3\xeb\xc1\xd4\x8d\x62\x66\x0f\xad\x60\x79\x7c\xe2\xd0\xff\x3e\xa5\xf8\x68\x0d\x85\x58\x26\x74\xe8\x64\xc0\x0e\x73\xe5\x26\xc9\x08\x73\x6b\x5c\xfe\xd8\xa9\xaa\x97\xd8\x5b\xc8\x85\x7b\x9c\x81\x43\x12\xa4\x78\x14\x80\xa2\xa2\xae\xbd\x88\xf5\x0d\x4f\x47\xbc\x46\x19\x03\xa2\x37\x76\x7b\xbb\x40\xb3\xa9\x44\x1b\x45\x0b\x55\xd0\x73\x40\x7c\xe3\xb1\xd0\xd8\x9c\x11\x46\xfb\xdb\x35\x16\xfa\x2a\xbd\x94\x7f\xdb\xa4\x02\xb3\xb4\xb2\x16\xa1\x54\xdf\xf1\x98\x6c\xd9\x60\xa9\xd5\xe4\x9f\x2d\x65\x39\x8a\xee\xb8\x2d\x9d\x28\x7c\x12\x1c\xb4\x23\x30\xb2\x44\x87\x1a\x8c\xf6\xca\x61\x72\x5e\x5c\x45\x72\x34\x11\x0e\xef\x08\x21\xce\x1d\xaf\xa8\xe0\x2f\x68\xa8\x11\x8c\x07\x23\x6a\x56\xf8\xa7\xd6\x73\xd1\x97\x43\x19\xcf\xc6\x57\x04\x04\xa5\x33\xf1\xe7\x3b\x74\xc1\x39\x46\xe5\xed\x00\x76\x98\x2a\xc9\x84\x06\xa3\xa7\x83\x96\xe3\xc8\xc6\x46\xb3\x5b\xad\xfb\x32\x4b\x66\xb4\x60\xb0\xa9\x88\x50\x53\xb9\x6f\x91\x0f\xe4\x46\x41\x80\x82\x36\x3c\xe0\xcf\x0a\xbe\x1a\x22\x34\x2f\x4f\x2b\x90\x31\x75\xfb\xcd\x41\xf6\x1d\x9d\x26\x66\xd0\x52\x9c\xe7\x6b\xb9\xe9\xf5\x39\x15\x09\x9b\x33\xd8\xe4\xe0\x48\x7f\xa1\xa9\x33\xe1\xfe\x03\x5e\xd9\x9c\xb8\x5a\x58\xd9\xf0\x07\xc4\x1d\x3c\x9e\x52\xfa\x28\xef\x6c\xdc\x2c\x35\x59\xf0\xe2\x19\x17\x80\x21\xd8\xcd\x06\xda\x8a\x0d\x83\x0d\xe8\x1f\x58\xe6\x31\x47\x49\x24\xcd\x01\x54\x58\xfb\x1f\x9b\x58\x01\x9c\xa2\x11\xb3\x9f\x2c\x76\x8c\x13\x9e\xe5\x82\x92\x20\xa4\x66\xd8\x22\x26\xfa\xd7\xb8\xb5\x4c\xb2\xd8\x3b\xb2\x78\xb0\xc3\x1c\x5f\x7d\x44\x31\x2e\x1b\x52\xca\x38\x54\x49\x21\x91\xb4\x32\xcd\xd6\x7f\x3c\xa9\xe1\xa8\x1d\x35\xc8\x0d\xe1\x6f\x84\xe3\xcf\xfc\x00\xa3\xb1\x68\x1f\x4e\x62\x98\x79\xce\x4c\xeb\x9f\x73\x7c\x33\xcc\x0d\x6d\xe0\xa0\xe8\xc8\x68\x21\x19\xe7\x1d\x9c\x93\x23\xcb\xd2\xf9\xe6\x3d\xe2\x07\xc4\x86\x17\x34\xaf\x3f\x8c\x31\xbc\x17\x0c\x99\x59\x16\xe8\x70\x31\x53\x95\x6c\xc2\xd0\x90\xa0\xc9\xd9\x86\xc1\xdf\xb1\xfb\xf6\x67\xdc\x2e\xb4\xa9\x5b\xa3\x4d\x5b\xcb\x2d\x67\x7a\x2a\xd4\x37\x81\x5d\x4f\x5e\x2e\xf5\xce\x9f\x0b\xfd\x96\xa2\x76\xdb\xbf\x07\xc6\x0b\x32\x00\x23\x08\x97\x78\x93\x0e\xe7\x9f\x10\x9e\xca\xb6\xf8\x7a\x87\x90\x8d\x2d\x1f\x36\x2d\x80\x4d\x6b\xdb\x8d\xa7\x8f\x96\x5b\x5e\x3f\xdc\x1f\x10\xb9\x03\x5d\x67\x1d\xf0\xb1\x24\xc7\x57\x98\x23\x38\x7b\x33\x5f\x97\x14\x91\xe6\xb0\x79\x2b\x03\xfd\x5e\xd0\x51\xa1\xa0\xe5\x1b\x88\x6b\xaa\x34\x1e\xc0\x6e\x56\xb0\x6e\xc8\x1c\x9d\xc7\x8c\xad\x60\xac\xb8\xf9\x43\xfd\xdd\x4a\xe7\xac\xf0\x5c\x11\x0b\x53\x9a\xec\xd5\x93\x1b\x26\x5b\x1b\xfb\x1f\xae\x41\x60\xb3\x58\x92\x30\x57\x36\x14\xdb\xf0\xc0\xed\xd5\x61\xc3\xd0\xd9\x38\x91\x93\x9d\xfe\xa6\xd4\x2c\x44\xe0\xa4\x6d\x2f\x62\xf7\x94\x07\x53\xa0\x66\x10\x83\x3b\x48\x10\xa1\x36\xd4\xe1\xe4\x55\x08\x63\x2d\xc1\x38\xb7\xb7\xb1\xe8\x2d\x03\xc4\xf9\x7e\x9f\x4b\xc6\xc7\x36\xda\xc7\xa2\x72\x60\xf0\x78\x17\x58\xa7\x68\xed\xcd\xf7\xdb\xce\xeb\xfd\xb6\x3b\xab\xc5\xe2\xc8\x5b\x5f\x17\x7c\x12\x2f\x41\x23\xd7\x98\xa3\x45\x91\x9b\xd6\x66\xa4\xb8\x76\xc4\xbc\x46\xce\xa0\xc9\x80\x2c\x75\xb5\x81\xf2\x94\x12\x1e\x85\xa7\x19\xb2\x86\x42\xa7\x16\xb0\x32\x64\x7d\x10\xb3\xae\x90\x35\x2e\x8f\xab\x80\x29\xfc\x8f\x80\xd2\xbf\x5c\xe2\x28\x2b\x9b\xa9\xf9\x76\x4a\xb1\x0f\xa8\xbf\x52\x7c\xaa\x99\xd1\x3e\x82\xe6\x94\xa6\xdf\xe4\x0b\xcd\xa3\xb9\x6d\xbe\x5f\x68\x54\x25\xf9\x7b\x6e\x89\xae\xf7\xcb\x84\xb5\x93\x67\x04\x58\xc9\x59\x24\xae\x36\x17\xc3\x45\x5d\x2a\xf2\x99\x0c\x3d\xce\x62\x70\x60\x39\x7e\x22\x88\xe5\x16\x11\x95\xec\xf4\xb6\x7d\x26\xfb\x01\xcf\x98\x14\x65\x54\xfc\xa0\x61\x67\x1a\xe2\xd3\x61\x13\x8f\xd1\x6b\x76\x2a\x8f\x62\x51\x24\x82\x06\x02\x83\x16\x8b\x2f\x60\x34\xc4\xe1\xd0\x29\x18\x88\x93\xff\xb4\x22\xdd\x02\x9c\x94\xec\x33\xe2\xa9\x8a\xf1\x81\x05\x18\x59\x2c\xeb\x98\x9a\x69\x2a\x57\xf8\x3e\xe5\xd5\xc1\x6f\xa8\x45\x93\x33\x11\x31\x9c\xaa\x15\xb9\x30\xdf\x8e\xd4\xc1\xf3\xe8\x03\x28\x20\x85\xfc\x3f\x00\x80\xc0\xaf\x46\x89\x28\x4f\x78\x26\x8f\xd0\xfe\xa8\x9b\x32\xe5\x0d\x28\xe8\x7d\x1d\x4e\x9f\xf4\xaf\x1f\x32\x96\xc1\x36\xdc\x9a\x03\xff\xd8\xbd\x16\xe3\x62\xa5\x62\xb5\x5f\x7f\xc7\x4b\xf6\x7f\xdd\xd4\xb6\x07\xae\x66\x34\x71\x1c\xc6\xc0\x80\x72\x08\xaf\xc8\x34\x79\x66\xe2\xd5\xb6\x8f\x1f\x95\xd2\x9a\x9d\x9d\x89\x94\xa9\x14\x22\xf0\xe7\x3a\xa9\x83\x99\x2d\x2a\x81\x0e\x75\x75\xdb\xd5\xf7\xc7\x73\x52\x55\x9b\xa3\x36\xde\x2b\x48\x57\x77\xd9\x4d\x78\x4a\x5e\xe6\xb2\x46\x2a\xe2\x4f\x22\xc2\xaf\x24\xfe\xa4\x78\x5c\x28\x65\x7a\x4b\x05\x0a\x67\xee\x9b\xe8\x6a\x19\x99\xd6\x74\xcf\x14\xd4\x12\xa0\x71\x18\x52\x92\xe1\xf0\x67\xeb\xe7\x19\x78\x55\xaf\xf8\xc0\xf4\x06\xf3\x01\xc2\xb3\x93\xf3\xc3\x3d\x14\xe0\x1e\x7a\xca\xaf\xd9\xdf\x4b\xbb\x13\xbb\x17\xe8\x85\x97\xb0\xe0\xa7\x1b\xae\x07\x12\xb4\xf3\x5e\x53\x3d\xc1\x98\x67\x6d\xf4\xd8\x54\x31\xe1\x07\xbd\x3b\x5e\xb3\x10\x73\x98\xf7\x1e\x20\x3e\x79\xc1\x96\xfb\x0f\x84\x32\xdb\xcc\x4d\xf4\xa5\xfd\x3e\x22\x72\x4b\xe8\xa6\x09\xf8\x14\x93\xe9\xcd\x16\xb6\x87\xbd\x84\xc9\xe1\x5f\x36\xba\x77\x16\xaf\x89\x81\xa9\x56\xc4\xe9\x52\xd5\x1c\xf7\x99\xe0\x67\x4c\xd0\xa3\xc2\x60\x1e\xea\x11\x25\x1c\x3f\x2f\x0d\xdd\x9f\x36\xbd\x60\x0c\xc9\xe7\x48\x67\xfa\x06\x71\x7c\x5e\x37\x45\x1b\x53\x9b\x77\x3a\xdc\xaa\xea\x07\x7f\x08\x23\x6a\x67\x30\x42\x0b\x31\x9a\x05\xa1\xf7\xa1\xef\x10\xe2\x0e\xd4\x2f\x56\x4c\x7f\x78\x84\x39\xad\x89\xea\xb3\x0b\xf7\x73\x6a\xe3\x57\xd6\x0e\x68\xfe\xa9\x4f\x05\x45\xcc\x46\x7b\xbf\x75\x45\xbe\x9d\x3a\x57\x6c\xdc\x77\x6f\x6d\x69\xfd\x3d\x85\xaf\x80\x02\x7c\xc5\xce\xc7\xab\x1c\xa1\xce\xb4\x98\xa2\x5b\xb8\x48\x9f\x88\x5b\x97\xe4\xfd\xfb\x46\x93\x2e\xba\x99\x73\x2c\xbf\x7d\x81\xc0\xb7\x25\xab\x2b\x09\x0d\x7c\xc1\xb9\x51\x6d\x8d\x96\x64\xa3\x17\x87\x20\x7e\x5d\xbe\x8d\xdd\xc6\x87\x0b\xf4\x36\x12\x91\x5b\x3e\x36\x3d\x2d\x82\x88\x7e\x70\xc4\xe9\x0d\xc7\x39\x3d\x8b\xcb\x23\x80\xdd\xee\x3b\x08\xb8\x98\x0b\x0b\x30\xbf\xe9\x16\x0f\xb5\x17\x68\x25\x59\x31\xf4\x8f\x37\x2d\x00\x54\x33\x6b\x48\xe6\xf8\x95\xdc\x96\x5c\xb0\x86\xf8\xbc\x42\x2b\x45\x36\x68\x2f\x50\xcd\x2e\x4b\x7d\xeb\x58\x34\x06\x2d\xd1\x42\x85\x01\x82\x2f\xe9\x1c\x12\x4e\x2a\xf1\xc3\x39\x77\x98\x6a\xc7\x70\x10\x4e\xbe\x01\x3d\xe2\xd1\x4b\x53\x7b\x0d\xb5\x26\x1b\x16\x15\x44\x7d\x54\x27\xc3\x82\xc4\x82\x86\x85\xa6\xf6\x04\x0c\xc9\x47\x82\x37\x1b\x7d\x37\x30\xaa\x27\xdb\x5c\x9c\xeb\xbd\xda\x8b\xf3\x30\x28\xbf\x84\x88\x4c\xae\xcd\xfa\x62\xec\x67\x99\x74\xd3\x72\xc5\x9e\x30\xfe\xa5\x6f\x26\xe9\x10\xda\x4d\xbc\xf3\xa1\x7b\xc3\xdd\x97\x2a\x48\x3c\xc7\x78\x5b\xef\x15\xef\xe5\x1d\xa0\xe8\xc7\xf1\x3b\x8b\x20\x39\x4b\xed\x4f\x92\x98\x7b\xbf\xd4\x7d\x58\x55\xb9\xcb\x08\x12\x6a\xf1\x3d\x69\xf1\xf5\xd3\xa7\xb9\x1d\xfb\xf4\x1e\x67\x17\x37\xd3\x17\x9f\x62\x51\x82\xde\x97\x1b\xbd\x96\x7f\xd6\x31\x26\x2e\x0b\xcd\xef\xc2\x7f\x51\x95\xe6\x3c\xde\x88\x08\x18\x7a\x0f\x6d\x0a\x65\xfc\xf6\xc7\xdc\xbe\x18\x37\xf9\x60\x9c\xe4\x1c\xd1\xd6\x29\x2f\x28\xd0\x0e\xb5\x54\x66\xa4\x6f\xec\x5d\x0c\x2a\xd0\xb1\xd3\xe4\xff\x9e\x75\xfa\x55\x98\x9d\x55\x28\x03\xab\x03\xdb\x39\x2f\x88\x17\xfe\xae\xeb\xba\xcb\x99\x48\x35\x8e\x94\xec\x65\x32\x61\x8a\xb1\x59\x97\xd3\xfb\x41\xe1\xc4\x85\x39\x6a\x6a\xb3\x61\x9a\xa2\x13\x91\x96\xa4\xb7\x6e\xbe\xd3\x60\x77\x10\x31\x77\xd9\x36\x5b\xe0\x41\x4c\xc3\xf2\xb5\xce\xa7\x0e\xfc\x31\x6f\x0c\xd4\x53\xfa\xef\x8b\x81\x34\xc5\x0d\xf7\x3e\x6f\xf5\xd7\x87\x79\xca\xf2\x4f\x0c\x01\xc5\xb5\xfa\x8d\x91\x8c\x66\xf6\xdf\xc5\xb1\x23\x3e\xd6\x38\x07\x4e\x7c\x1d\x6d\x68\x14\x1f\x88\x3c\x12\xcb\x29\xb1\x33\xca\x29\x79\x56\x67\xf5\xca\x86\xfd\x17\x73\xc5\xdb\xfb\x97\x1c\x33\xb4\xac\xee\xd9\x4b\x38\x34\xd9\x02\x56\x73\x2a\xe7\x98\x4c\xbd\x72\x03\x97\xb8\x94\xf4\x6e\x66\xce\x6b\x74\x24\x2e\xf4\xfc\x60\x84\x46\x4d\x13\xee\xde\xa0\x92\xa2\x27\x40\x32\x8e\xbb\x5d\xba\x1e\xc2\x53\x17\xf3\x56\x66\xf9\x55\x18\xfc\x1b\x8e\x8a\xa5\x9f\x2a\x61\xf6\x12\xb2\xfb\xcd\x08\x9a\x42\xa8\xbb\x18\xd1\xad\x74\xf5\x3b\xa1\x74\xf0\xb2\x90\x01\x6e\x8c\x0b\x3a\x1e\x0f\xc3\x9f\x42\x2d\x67\xd4\x0d\x3f\x01\x91\x21\x64\xc9\xd1\x6a\xb5\xc6\x82\xf8\x3e\x6f\x3e\x9a\x95\x7a\x98\x3a\x5c\x19\xe1\x37\x0a\xfc\x2b\x84\xb6\xaa\xad\x50\x3d\x50\x40\x2b\x25\x77\x58\xb2\xfa\x33\x66\xcd\x50\x77\x0b\xf2\xe9\x7d\xb5\x01\x55\x76\x57\xeb\xcd\x67\x42\x11\x1c\x0a\xf2\x1e\xc6\xfe\x88\xba\xfa\xaa\x92\x67\xd2\xff\x6e\xb4\x9c\xb2\x7b\x12\x9c\xde\x09\x04\x8b\x96\x61\xf1\x41\x07\xa1\xbd\x61\x1a\x75\x83\xbf\x1f\x7b\xe5\x57\xd4\x97\x5b\x7a\x60\x2b\xe2\x61\xbe\xe1\xee\x26\x0e\xf3\x98\xe7\xb4\x8a\xbc\x62\x7f\x21\x6f\x74\x2a\x2d\x1a\x1e\xad\x8d\xb4\x91\xe7\xa3\xad\x1f\x11\x60\x67\xd5\xc1\xd7\xb2\xd5\x4e\x0f\xe7\xcc\xfa\xeb\xab\x4f\xff\x38\xc8\x9f\xb9\x74\x30\xc9\x64\x1c\x6e\x4a\xf0\xd8\xb0\x9d\x06\x01\xe5\x1c\x3b\xa2\x01\xd6\x36\x19\x15\x13\xf1\xc0\x4f\xa5\x7c\xfb\xc6\x44\x47\x8d\xe5\xd8\x5b\x9b\xf6\xfb\xae\x9b\xf6\x61\x0b\xde\xd4\x95\xdd\x6d\xf1\x59\x8e\x4e\xd6\x50\x7a\x63\xc3\xf1\x70\x99\x0c\xfe\xeb\x11\x5f\x3c\x1d\xfd\x26\x65\xa4\xba\x00\x27\xe4\xd2\x85\x5b\xc2\xca\x60\xb8\x6d\xd3\xb4\x8c\x08\x28\x35\xde\x12\xeb\x67\xc0\xf8\xce\xea\xd7\x9f\x64\x34\x8e\xf4\xa8\x9f\x38\x8c\xdc\xf7\x03\xc5\xad\xa2\x04\xf4\x57\xc6\x67\x42\x42\x60\x32\x08\x82\xee\xfb\xb8\x10\xe9\x87\x44\xce\x2e\xc9\x0d\xd9\x90\x9c\xa4\xa3\xc3\x78\x6b\xba\x5f\xd2\x21\xc5\x4d\xd2\xb2\xc6\xe3\xc5\x99\x5b\xf7\x3f\xe3\x0f\xb5\xd4\xd2\x3a\x5d\xaf\xfb\x06\x90\x7b\xd0\x21\x0a\x8b\xdf\x71\x90\x88\xfc\x02\x13\x89\xc6\x15\x3a\x66\xd9\x41\x2a\x7f\x0a\x07\x38\x8c\x36\xd5\x2c\xe6\xcb\x0b\x60\xce\xd0\x6b\xc5\x3b\xdc\x54\x5e\x29\x99\x3d\xf5\xbc\xa5\xd0\x9e\x9b\x16\xab\x8f\x74\x94\x0c\x35\x2d\x20\x44\xa7\x1e\x0a\xf0\x51\xea\xef\xdb\x97\x1a\x75\x80\x05\x70\x95\x48\xd6\xa7\xf7\xfd\x4d\x1b\xa3\x63\x5f\x18\x66\xa3\x26\x1d\xaf\xe4\xf2\xaa\x13\xe7\x24\x43\xfa\x15\xf3\x82\x60\x96\x08\x45\x10\xc9\xe2\x9d\xee\xea\x98\xc7\xd9\xd5\xc8\xb8\x37\x1c\xca\x4e\x1d\x67\xeb\xd5\x12\x87\x1e\xb8\x28\xaa\x1f\xe2\x15\xde\x81\x4d\xda\xf5\x9e\xe2\x3d\x10\x53\xc2\x66\x9f\x41\x5c\x62\x09\xef\x38\xe6\xba\x42\xa6\x9a\x91\xd0\x05\xba\x4b\x6d\xf3\x9e\xed\xad\x1a\xe9\x08\x16\x03\x05\xd3\x26\xd9\x89\x78\xee\x10\x9e\xf2\x50\x66\xd6\xab\x43\x5e\x8f\x28\x41\x83\x1b\x05\x35\x38\xfd\xcc\x6b\xd9\x70\x5b\x6b\xfe\x8d\xb4\xd0\xb5\xf8\xb8\xf7\x73\x2f\x18\x6e\x6f\x94\xdb\xfa\xf8\x85\x72\xa9\xc2\x89\xe5\xba\x3b\x5e\x98\x5e\xcb\xf2\xcf\x45\x1a\x57\xba\x97\xaa\xa7\x5a\x95\x4f\xd2\xa9\x50\x37\x28\x42\x15\xdf\xb3\x47\xc9\x84\xcd\x47\xe7\x1a\xe2\x3a\x4a\x9b\x10\x20\xca\xb3\x44\xa2\x4d\x3e\x46\x50\x8a\xb1\x27\xcb\x8e\x9f\xaf\x76\xdc\x0b\x89\x36\x44\x71\xc2\x9d\x92\xa6\x32\x36\x70\x53\x73\xc7\x20\x1e\x42\x71\x61\xdd\xb7\xd3\x23\x81\xf8\xf5\x3d\xa1\xa2\xf9\xdf\x92\x1a\xa4\x2d\x51\x71\x99\x15\x02\xc5\xb4\xd1\xbb\x36\xef\x43\x9c\xda\x1a\xcc\x54\xd1\x3b\x1a\x79\xa6\x22\x26\xe0\xff\x38\x8f\x73\xcc\xe7\xc2\x7e\xff\xf1\x4c\x28\x3e\xff\x73\x9b\x51\xf2\x31\xd5\xc4\xc7\x1a\x2d\x8a\x17\x28\xf7\xfa\x97\x86\xa5\xab\x07\xbf\x27\xff\x2f\xca\x85\x3d\x3f\xd6\x6a\x15\x64\xeb\xb0\x4f\x02\x72\xe6\x53\x08\x19\x1b\xe6\xc1\xa4\x48\x64\x82\x77\xd4\x5a\xff\x30\x28\x6f\x79\x97\x50\xbb\xf3\x4e\x6f\xf7\xc4\x20\x70\x56\x2d\x04\x84\x83\x66\x90\xf5\xe4\x8c\xfe\xe4\xc3\x1b\x46\x55\xc2\xe8\xd0\x92\xab\x38\x1d\x45\x26\xee\x41\xa7\x9e\xe6\xd3\xc2\xe7\xfa\xc1\xb4\x18\x45\xe8\xe7\x4e\xb1\x3e\xf3\xc3\xd4\x83\x2d\x26\x71\xf4\xa6\x60\x57\x25\x43\x20\xdb\x46\x2a\x3b\x0c\xed\xb8\x43\x78\x59\x2f\x3e\xc6\xe7\xda\xde\x99\x3b\x5f\xca\x68\x4f\x13\x82\x2e\xa5\xa3\x7b\x65\x8f\xed\x44\x8c\xc5\xc8\x69\x9d\x48\x02\xd6\x21\x71\xbf\xb2\x52\x16\xca\xe2\x2f\xc5\xcb\xa2\x27\xd7\xca\x8d\xa6\xd2\xa5\xe5\x08\x43\x43\xe8\xfa\xf3\x83\x54\xfb\x31\x09\xf5\xc7\x48\xfa\x3f\x90\x4d\x97\x32\x22\x1a\x95\xa5\x71\x73\x88\xac\x70\x0b\xd6\x89\x02\x88\x1a\x93\x02\xc8\xd7\x92\xfc\xc9\x17\x9c\xa2\x82\x74\x98\x19\xc1\x25\xd6\xb1\xb1\xe2\xbd\xec\x3f\x75\x98\x09\xaa\x8d\x0d\xd5\xd4\x60\x4d\x69\x16\x2c\x40\x37\xef\x46\x01\x81\xd1\x7d\x6c\x32\xe9\x86\x17\xf8\xaf\xa6\xc7\x5d\x76\xe9\xd1\x77\x09\x0e\x33\x2a\xc7\xc8\xe7\x05\x6b\x31\x3d\xbf\x3f\x02\x98\x61\x49\x78\x45\x26\xe1\x73\x59\x0a\x43\xc7\x5a\x33\x9b\x36\x3a\x84\xe2\xe8\x20\x13\xee\x0b\x82\x36\x59\xa7\x38\x25\xff\x8b\x54\x93\x01\x6d\xc2\x9d\x38\x93\xce\x4f\xf1\xc3\xe4\xfc\x64\xe1\x9f\xb9\xc1\x1d\x22\x3e\x90\x70\x91\xba\x2f\x3f\x19\x68\x97\x66\x39\xa5\x07\x26\x00\x7f\x59\xe1\x34\x96\xa3\xdb\x39\x5f\x6a\x1a\xf6\xf8\xe0\xb7\x76\x72\x95\x0c\x99\x13\x86\xb6\x46\x26\x98\x81\x77\xad\x4a\xb1\x39\xb5\x5f\x69\x15\xa1\x85\xca\xbf\x5e\xcd\x9b\xb4\xa5\xcf\x47\x84\x22\x3d\xde\x0f\x7b\x96\x65\x1a\xe8\xf7\xa8\x45\xd3\xfa\x17\x27\x92\x85\x95\x27\x10\xb7\x50\xb4\xcf\xbc\xa9\xca\x77\x61\x35\x26\xee\x45\x67\xe0\x4f\x34\x04\xc3\xe7\x8b\x85\x16\x83\xd0\xb9\xe3\xbd\xec\xf9\xe9\x8d\x34\x18\xe8\x07\x44\xae\x9b\x27\x6b\x3e\x49\x08\xa3\xe9\x96\x3e\x50\x95\xc6\xc4\x97\xae\x5e\x11\x6c\x1f\x9a\x78\x6c\x71\x36\xbb\xf7\x4a\xe9\xf0\x94\xe7\x15\x7d\x55\x07\xf8\xc3\x79\x4b\xf2\x26\x94\xea\x06\xca\x07\x37\xb7\x7a\xbc\x15\xf5\x4a\xd5\x62\x4f\x5f\xe6\x2c\x31\xad\xff\xe2\xd7\x99\xd8\xd6\xee\x74\x87\x94\x7b\x39\xd8\xcc\xfd\xba\x52\xb4\x86\x4f\xbf\xce\x9c\x51\x8d\x7c\xbc\x30\x31\xd1\xe3\xbf\x22\xbf\xa1\xcd\x65\x07\xba\xe0\xde\x19\x85\xf9\x27\x77\x9c\x53\xb7\x8d\xfd\x49\xe9\xdf\x8c\xea\xa6\xfb\xf2\x82\x79\x7e\x33\x00\x1c\xca\xe1\x5a\x3b\xfd\xf6\xeb\xc1\x48\x65\xd3\x19\x2b\x23\x2c\xea\xdd\x7e\x6b\x12\x5f\xd0\xc9\x1c\xbc\xed\xea\xa0\x04\x3d\x83\x24\xe2\xad\xdf\xb3\x6b\xab\xab\x13\xbf\xe8\x56\x46\x8f\x6b\x68\xa2\x27\xaf\x30\x22\xcd\xea\xd6\x56\xa9\x5f\x88\x2b\x44\x70\xa6\xf5\xad\x9b\x82\xad\xfb\x2b\x9e\xc3\xcc\xb0\x32\x0a\x92\x54\x67\x78\xc7\x64\xb3\xa6\xfb\x6a\xad\xa5\xf5\xd6\x45\xa4\x7c\xeb\x6c\x08\x84\xc0\x8f\x4e\x52\x06\xf6\xd7\xb3\xfd\x39\x90\x27\xb8\xee\xe6\xa2\xad\x2a\x72\x24\x89\x06\x23\x26\x71\x8d\xc9\xc2\x44\xc5\x32\x1c\x5d\x8f\xdb\x2e\x61\x3d\x21\xbc\x5e\x40\x15\xc7\xaf\x2e\x3e\xf4\x20\xf9\x81\x94\xe4\x05\x59\x8e\xf1\xeb\x87\xd3\xfb\x7f\x5e\x51\xfd\xd4\x85\xb7\x80\x09\x9a\xe4\x96\xad\x72\x97\xb8\x97\xe9\xd7\x46\x6d\xbf\x91\x4d\x0f\xc8\xf7\xb2\x91\x78\xff\xd2\x78\x77\x1b\x1d\xf8\xbf\x74\x0f\x75\x93\xbe\x79\xc5\xbd\xa7\x9d\x7d\xba\x99\xff\xa1\x8c\x1b\x84\xe3\x11\x32\x6c\x7a\x42\x69\x7f\xfa\xd6\x02\x67\xf7\xb8\xe8\x1b\x25\xc3\xef\xb4\xb3\xbc\xaa\x7a\x26\x7e\xba\x46\xf3\xc5\x9d\x7c\x28\x8e\xe4\x24\xd6\x10\xc9\x2e\x47\xf1\x7f\xc3\xd7\xe8\x60\xbb\x77\x05\x0b\x6f\xd6\x49\xd1\x1f\x20\x37\x56\xb0\x09\x96\xf3\xb3\x1f\xea\xf2\xc4\x03\xf6\x63\xd7\x1e\xf5\xa4\xbc\xb4\xf4\x67\xaf\xaa\xe3\xc9\xf3\x56\xd4\xfe\xad\xd6\x06\xf1\x67\xc2\x0f\x0a\xa9\xa6\x0b\xd1\xf7\x77\xdb\xe5\x35\x05\x52\x8f\xec\x6d\x6e\xfe\x66\x38\x52\x07\x19\x0d\x32\x00\xc7\x2d\x8f\x2b\xe2\x46\x97\x44\xcb\xec\xae\x93\x8b\x70\x0f\x78\x0f\xef\x9c\x10\x63\x3b\x7a\xe3\x57\xe6\x02\xfe\xf1\x4f\x56\x5d\xe2\x4f\x7c\xb8\xc7\x1c\x10\x4b\x58\xda\xe0\x57\x59\x20\x47\x39\x6d\xf8\x9a\x68\x78\x45\xc4\x51\x2c\x40\x8b\x15\xe1\x81\x15\xfb\xc7\x71\x69\xce\xba\x29\x15\xeb\x8f\x41\xa4\xa5\xd9\xa6\xd6\xfe\x81\xbf\x44\x73\x57\xa1\x67\x07\x2e\xf8\x7b\xba\xea\x1e\x31\xae\x58\x19\x4c\xde\x5a\x34\x80\xa0\x99\xf8\xb6\xa4\x01\xaf\x06\x5b\x1f\x74\xdf\xe3\xa3\xd4\x5f\x89\x7d\x88\x9f\x42\x27\x4a\xdd\x8f\xe0\x70\xb0\x22\x33\x9b\x46\xae\xe7\x84\xb5\xfb\x7d\xc8\xf7\xf6\x78\x48\x36\x2f\xd1\x69\xe0\x9e\x2e\xc9\xff\xcf\x3c\x3c\x3c\x7c\x5b\x24\x8e\x0d\xfc\xf3\xb5\x37\x92\x4a\x1e\x1b\x38\xe7\xe1\xc3\xf2\x0d\x9a\xc2\x06\x8b\xb2\x77\x59\x54\x11\xe6\x40\x53\xc6\x42\xaf\x8f\xbb\x3a\xc1\x00\xcd\x95\x36\x41\x06\x43\x6c\x2b\x50\x51\xee\x90\xe8\x20\x88\xf0\x60\xd1\x66\x7c\x72\x12\xe6\x64\x11\x6d\xd8\x38\x10\x26\x8f\x06\x4f\xd0\xe0\xb2\x1e\xd4\xd6\xca\xc4\x2a\xa1\xf3\x30\x25\x1e\x88\x52\x7d\x13\x1e\x04\xd7\x78\xf2\x5c\xc5\xd1\xc5\xcb\x77\x98\x56\x16\xf3\x90\x8e\x87\x0c\xf4\x12\xe1\x05\x3c\x1c\x97\x38\xf2\x5f\xcf\x5f\x56\x00\xe8\xb5\x70\xb1\x1d\xe5\x22\x4c\x10\x5a\x57\x50\xb4\x48\x0d\xa6\x02\x3a\xa6\x3b\x62\x53\x19\x9b\xd3\x1d\x7c\x71\xbf\xe1\xf8\xa2\x2c\x63\x0c\x85\xfc\x91\x5e\xc8\x31\x89\x5b\xc4\xe4\xd4\xa0\xb7\xe6\x78\x1e\x8d\x32\xd1\x69\x96\x20\xbb\x3e\xdc\xc9\x6a\x47\x7f\x47\xfa\xb8\x77\x1d\x96\x05\x35\xbf\xe2\x7a\x7f\xf8\x9d\x2f\xa6\x2b\x7e\xbc\x3c\xf9\xb8\xb2\xbe\x8b\xd2\x75\x4b\x8a\x9d\x6c\x2b\xf8\xe1\x45\x98\xe4\x83\x07\xc6\x29\x7e\xfe\x69\x15\x81\x2e\x39\x94\x67\x88\xee\x6a\x71\x42\x20\x05\xd9\x7a\xf3\x83\x66\x18\x42\x8a\xea\xfa\x36\x58\xe4\x65\x86\xda\x1f\xa3\xbb\x46\xba\xd8\x92\xd5\x2a\x31\x97\x97\x78\x39\xcc\x77\xa4\x26\x0b\x6e\x0a\xcd\x0f\x4b\xea\x76\xd4\xf2\x45\x58\x11\xdf\xa0\x06\x2c\xaf\x71\x5f\xf1\xf8\xdf\x2e\x6b\xfb\x22\x50\x05\x78\x24\xd1\xd3\xef\x6c\xbe\x95\x8c\x9f\xbc\x1c\x27\x51\x7e\xc6\x5c\xc4\x46\xf1\xa5\x74\xab\x79\x00\x1e\x50\xa6\x89\xd1\x5a\xe7\x48\x6b\x34\x8c\x64\xc3\x24\x20\x11\x4a\xd8\x7a\x38\x38\xc8\x5a\xac\xb9\x4a\xc5\x44\x7b\x9e\xca\xb1\xe2\xf8\x9c\xf0\x2f\xc9\xdd\x2b\x3e\xad\xcf\x22\xe4\x95\x68\x87\x9c\xd3\x25\xed\x8e\x62\x08\xce\xbe\x67\x33\xe3\xfe\xe8\xdd\x5f\x84\x2c\xd9\x39\x18\xb4\x77\xca\x4f\x0e\xb0\xa9\xdc\xc2\xb8\x64\x0c\x3e\xb0\x6c\xd4\x63\x12\xfb\x2b\x93\xef\x8c\xc1\x1f\xc3\xcb\xc7\xf7\xd1\xb4\xe7\xf8\x0e\x01\xac\xac\xd1\x06\x53\xd0\xfa\x4f\x81\x95\x51\x12\x0f\x23\x7b\x2d\x08\x32\xae\xe1\x6d\x67\x05\x09\x0b\x4f\x5c\x08\x9c\x0e\x35\xa7\xc1\x39\x3b\x08\xfd\x23\xa1\xae\x68\x4c\xbf\x3a\xfe\xe9\xd3\x4f\xa4\x21\x6c\x4e\x27\xa8\x89\x0f\x7f\x49\x96\x29\xc8\x0f\x5b\x31\xc2\x68\x10\x6b\x7d\x4c\xd6\x86\xc0\x0c\x4b\x1d\x97\xa5\x92\x93\x49\x2a\xc1\xc4\x96\x85\x51\x51\x9e\x20\x05\x8f\xde\x77\xbe\x37\xf6\x7d\x32\x5d\x55\x87\xfa\xda\x91\xaf\xe5\x6b\xdd\xba\xa7\xdb\x0c\x4d\x56\x47\xba\xc8\x8f\x1c\x6d\x93\xf1\xed\xfa\x76\x45\x01\x5e\x04\x0e\xa9\xdf\x58\x6b\xd3\x02\x1c\x73\x42\xd9\xc0\x11\xf9\xe8\x01\x13\xa1\xb6\x58\x3f\x1c\x03\xae\x6e\x86\x61\x90\x19\x3c\x44\x40\xb5\x7a\xa4\x3d\xaa\x32\x2b\x2e\xac\xa7\x7f\xe4\x1b\x50\xee\x50\xfb\xbc\x65\x39\xc9\xc7\xb4\xdc\x7b\x41\x7c\x89\x63\xaf\xb7\xbe\xb0\x59\x7d\x6f\xb0\xb8\x58\x79\x31\x9d\x35\xcf\x2d\x91\xbf\xb5\x56\x94\x04\x99\x11\xbf\xfa\x06\xfc\xe6\x33\x55\xac\x4b\x24\x13\xbe\x63\x50\x41\xda\x6e\xf7\x44\x30\xa1\x3e\x6d\x65\x70\x63\xce\xa2\x6a\xac\x80\xc2\x29\x4d\x10\x5b\x0c\x80\x7d\x21\x97\x08\xbb\xf3\xa4\xf2\x2d\x31\xeb\x9a\x9b\x24\x69\xd1\x28\x29\x99\xad\xd0\x8c\x78\xc5\x5c\xda\x2f\x3c\x0e\xac\x7a\x47\x82\x48\x7e\x9a\xca\x38\xfc\x7e\x35\x1d\x25\xef\x4a\x95\xaf\x09\x34\x75\x22\xce\xaa\xc9\x73\x1e\xa0\x2a\x8d\xf2\xbb\x7f\x0a\xe8\x02\x76\xd8\x77\x50\xa0\x9a\x19\x4e\xad\x3a\xb7\xf1\xab\x8d\x12\xf8\x9d\x5f\x49\x9e\x32\x82\x85\x3e\xa9\x6e\x40\x84\x86\x87\x89\xb8\x55\xd9\x85\xd8\x5f\x98\x69\x20\x7e\xd3\x61\x40\x4b\xfe\x83\xcf\x97\x00\x08\x8f\x18\x2c\xb7\x01\x3f\x79\xa1\x33\x2a\x01\x49\x84\xc8\xf8\x82\x8d\xfc\x36\x6e\x58\xb4\x1f\xe0\x89\x47\x1e\xea\x65\x6e\x6b\x56\x6b\xff\x03\xec\x3c\x28\xcb\xe8\x12\xba\x22\x26\xd1\xf5\x4d\xdd\x25\xa2\x39\x8e\x01\x9c\x3d\x5c\xef\x03\x74\x8e\xd4\x63\x48\xd6\xe2\x37\x5a\x5a\x87\x4e\x46\x39\xed\xc5\xdf\x1b\x58\x17\x27\xb2\xa1\xc7\x10\xe6\xdf\xf3\x9c\xb4\x32\x6e\xf3\x3e\xfd\xa7\x5c\x8e\xb8\xea\x79\x58\xa0\xee\x36\x8e\xe3\x11\xb6\xec\x56\xfb\x1b\x77\x50\x7d\x3a\x97\x23\xbf\x74\xf4\x31\xd3\xb6\xff\x77\xb6\x61\xd2\x2f\x01\x21\xa6\x01\x5d\x05\x44\x6d\xbc\x5c\x69\x91\x1a\x1d\x39\x31\x5f\x3c\x6a\xa1\xa0\x45\x48\xb2\x04\x84\xa1\x34\xa5\xc1\x4c\xe3\x24\xfb\xce\xf9\xbd\x9e\x23\xd1\xbe\xfc\xc9\x75\x3d\x15\x89\x57\xca\x61\xb3\x88\x2e\x05\xc9\x68\x89\x61\x1d\x3e\x19\x4d\x43\xec\x9c\xe9\x14\x15\x41\xa2\x0a\x1e\x15\x98\x28\x74\x2a\xa0\x37\x0e\x03\xb3\x08\x9d\xd7\x6d\xc0\xa7\x43\x5e\xd5\x63\xe3\x62\x77\x5f\xa9\xf9\x95\x44\x41\xe8\x97\xfe\xbd\xcb\xd0\xff\x64\xf9\x26\x5d\xa4\x3e\x8a\x52\x4f\x90\x21\x50\xc1\x69\x4e\xd2\x5c\xea\x26\x6a\x03\x7e\xb2\x25\x55\xdd\xdf\xca\x17\x3c\x4b\x42\xe7\xba\x6a\xeb\xa6\x99\xf0\x69\xce\x13\xf8\xf3\xfb\x3a\x3f\xd9\xf0\x0b\xed\x4b\x25\xc2\x79\x26\x2d\xbd\x5f\x1a\x34\xdd\x0f\xea\xb9\xbf\xda\x9a\xe7\x15\x07\xf5\x93\x72\x81\xed\xfe\x05\x7c\xde\x7b\x93\xda\x35\xc2\xf7\x3d\xb8\xf1\x66\xad\xbe\x60\x34\xe0\xca\x19\x3b\x41\xbe\xfe\xec\x2d\x25\xa7\xbb\x37\xc5\xd3\x5c\x88\xbe\x5e\x2c\xf9\xdf\x4f\xf5\x2b\xf5\xcc\x63\xec\xec\x15\xdc\x5f\x8f\xd2\x3d\x89\xd4\xbb\x73\xd4\x92\xa6\xc3\xe9\x44\x4d\x53\x34\x34\xcd\x2b\xa3\x96\x0f\x43\xbd\xca\x7c\x4c\x5c\xbc\x64\x79\xfa\x34\xbc\x5c\x26\x94\x51\x9c\x1e\x46\xa3\xac\x46\x1e\x7c\xd3\x4d\x42\x9c\xa1\x9b\x0a\x48\xba\xe4\x11\x12\x47\x77\xf8\x2e\xa9\xa5\x83\x69\x82\xde\x0b\x9b\xda\x2b\x73\xc4\xf3\x1b\xa6\x0f\x44\x9b\x6e\x5c\xb4\xe2\x0a\x65\x3f\x31\x85\x53\x46\x78\x5d\x3b\xd4\xa5\xc1\xe5\xea\x78\xdb\x6e\x18\xaa\x32\x76\x86\x95\xfb\xea\x9a\xd7\x7c\xbf\x3c\x96\x7d\xe5\x31\x2e\x95\x88\x74\x36\x5e\xda\xd7\x7b\x51\x14\xa3\x01\x7a\x03\x8e\x17\xde\xf2\x2c\x44\xa3\x83\xc5\xc9\xb5\x63\x78\xa2\x7b\xc4\x64\x01\x62\x2a\xa9\x01\xcd\x68\xdc\x5d\x56\xd1\x59\x14\x42\x62\x17\x0f\x5c\xcc\x4c\x7c\x9b\x51\xcd\x7b\x39\xfc\xf5\x87\xb5\xa8\xac\x78\x63\xf8\x47\x98\x8f\x75\xa5\x48\xce\xb4\x13\x75\xf5\x2b\x1f\xef\x90\x54\x98\x6e\x7f\x58\x28\xb8\xcb\x84\xc7\x21\x51\xe7\xb6\xc7\xcb\x9b\x84\x95\x0b\x2f\x62\x7d\xfb\x4d\xcc\xea\x5f\xa6\xa0\x5f\xe7\x5f\x3d\xa3\x4c\x65\xa3\xca\xeb\x02\x29\x06\xee\xda\xaf\xb9\x65\x3a\xf1\xae\x32\xb0\xa9\x46\xda\xc5\xa7\xe9\x12\x12\x04\x76\x79\x8c\x93\xb7\xd1\x43\x2c\xdd\xe6\x92\x3f\x37\x26\x90\x35\x03\xde\x9a\x07\x39\x2a\xbf\xbb\x16\x4e\x7c\x84\x30\xd0\x78\xe9\xaa\x16\xb1\xd1\x04\x24\x5f\x90\xc2\x9e\xe2\xa2\x94\x31\xb6\xb5\xa6\xb8\x2b\xa5\xa4\xd2\xdf\x91\x6c\xfe\x9b\xfc\x56\x55\x4b\x07\x33\xe1\x4e\xe7\x20\xbd\x96\x2f\x49\x3e\x63\x37\xcb\xf9\xae\xca\xad\x08\x94\xf8\x26\x1c\x46\x61\xe0\x22\x98\x2e\x25\x86\x76\xea\x5b\xe5\xc3\x93\x59\x2e\xf1\x8a\x24\x22\x3d\xf8\x7a\x7b\xf1\x5b\x41\xbf\xa9\xe8\xb8\xa8\x51\x52\xc5\x90\x76\x48\x6b\xe4\xb3\x6a\x08\xb9\xdd\xbf\x05\x64\x1f\x0b\x1a\x89\x28\x56\xca\x38\xf8\x40\x9c\xb5\x10\x8d\x13\xe7\x0f\xe3\x33\x03\x3a\x6d\x00\x45\xc9\x42\xa5\x3c\xbf\xee\x11\xb9\xee\x40\xe6\x5d\x0e\xc7\xb7\x80\xbe\x4f\x9d\x74\x13\x00\x9d\x6a\x71\x60\x86\xfa\x2a\xf3\xf7\x33\x4e\x83\x60\x87\x3d\x4d\x70\xf6\x88\xe4\x15\xf3\x9b\x2c\x68\xd2\xf4\xe7\x3a\xe0\x56\xec\xe1\xdc\xc7\xf4\xa2\x31\xa9\x86\x27\x0c\xca\xc0\xfe\x41\x9f\x6e\x32\x64\x98\x0f\x80\xc2\xb7\xaf\x6e\xc4\x04\x9d\xc8\x48\xa0\xb6\x65\x8b\xcc\x5b\xce\xf5\xa2\xb3\xa9\xfa\xcc\xb5\x4e\x29\x3d\x46\x88\x48\xf7\x6a\x46\x90\xa1\x97\x0f\x94\xa9\x09\xc6\xd7\xfe\x41\x34\x9c\x73\x35\x2d\x32\x0d\x35\xb2\x8f\x0e\x9f\x23\x32\x62\x5d\xff\xaf\x6c\x29\x59\x9b\x58\x1d\xa8\xb5\x4d\xde\xca\x53\xa2\xdc\xb4\x79\x76\x6a\x3b\x45\xf8\xa9\x6c\x16\x79\x0d\x26\x76\x93\xfd\xfd\x4c\x55\x6a\x87\x4e\xfa\xfd\x3e\x46\x99\x80\xbd\x1f\x7c\x2a\x62\x45\x89\xfc\x3a\xd2\xef\x31\x46\xa5\x19\x01\xe5\xb1\x93\x33\xd1\xee\xa1\x16\x8e\x8e\x2c\xc8\x75\xac\xfc\xe8\xb5\xdb\x2d\xa5\x66\x20\xca\x4c\xad\x2a\x7c\xd8\xec\x82\xfa\xc5\x20\x77\x1a\x1c\x00\x34\x9f\xde\xd1\x83\x29\x15\x8e\x0d\xcd\x43\x0b\xd9\x39\xfc\x75\x3b\x68\x90\xee\xd7\x4b\xd8\x45\xca\x1e\x92\x9f\x9d\xcd\x29\xee\xb4\xf2\xad\x33\xd5\x95\x6d\x2b\xe9\x62\x34\x47\xd1\x2e\x5b\xcd\xb8\x51\x95\xe1\x04\x45\xa4\xf8\x5a\xe9\xcc\x99\xcf\x83\xac\xe3\x0a\x55\xf9\x2e\xc7\x87\x4e\xe3\xd0\xb5\xaf\xa4\x4c\x57\x70\xe0\xb0\xf9\xf2\x8d\x10\x69\xc8\xbc\x82\x37\x91\x75\x66\xdf\x44\x4e\x18\xc9\x0f\xed\x3f\x00\xc5\x4f\x1b\x90\x4a\xdc\x83\xb6\x45\xa4\x3e\xfe\x5e\xfc\x2f\xc1\x43\xfa\xb1\xd2\xfe\xf3\x29\x3d\x0a\x2f\x77\x2d\xcb\xbb\xf1\xb2\x01\xf2\x9b\x60\xc2\xae\x86\xcf\x59\x23\xf8\x8b\x18\x29\xb7\xd9\xe3\x6e\x55\x97\xe4\x38\x66\x67\x5e\x14\x6d\xed\x58\xaf\xb0\x8c\xbc\xa7\x3d\x47\x61\xac\xa9\x0f\xe8\xa5\x18\xe2\xa0\xa8\xb3\x05\x6d\xad\xcb\xf5\x92\x71\x00\x0f\x9d\xce\x6c\x3d\x55\x2c\xe9\xdf\x59\x46\x57\xf4\x7e\x49\xf9\x88\x4a\xb8\xbf\xb6\xe2\x1b\xdb\x04\x23\xcf\x69\x57\x7a\xe8\xf5\x54\x55\x76\x40\xad\x1a\x29\xb3\xff\x81\x6d\xe6\xb3\x24\x56\xa5\x5c\xeb\xf5\x40\x47\x20\x36\x11\x38\x45\xfe\x45\xea\xb8\xee\x97\xb7\x3e\x6e\xc9\xbf\xba\xb7\xbf\x64\xbf\xd0\x1e\xcb\xfc\x6c\xe8\x50\x5c\x58\x68\x92\x77\x27\xfc\x30\x96\x0b\xd9\x57\x8e\xc6\xfd\x93\x25\xff\xd1\x64\xee\x34\xf9\x84\x37\x6d\xfd\x51\xdc\x2f\xa2\xb7\x1f\xbe\xd7\xb5\x2d\x45\x33\x37\xb0\x22\x75\x81\xaf\x2c\x3b\x8e\x15\xf9\x83\xc9\xc2\x84\xb4\x34\x0d\x2d\x51\xe9\x01\x9e\xce\x5a\x30\x75\x7c\xe0\xc0\x7e\x6e\x66\x5e\x12\xff\x21\xfb\x4a\x0b\x81\x57\x93\x9c\xa2\xe1\xe7\x10\x71\xee\x26\x3a\xfe\x56\x3a\xb9\x71\x42\xb9\xd6\x75\x65\x16\x2b\x22\x90\x1e\xbd\x64\xb3\x5f\xb8\x9b\xd0\x2e\xfd\xa1\xcc\x47\xe8\x29\x7d\xb2\xa8\x9f\x5a\xad\x76\xee\x75\x34\xdd\x08\xad\x52\xf4\x46\xbc\x8b\x17\x6e\x40\xc0\x84\x27\xe0\xa4\x1d\x7b\x60\x4a\x1c\x47\x59\xa2\x4d\xec\xd0\x82\xd9\xf9\x62\x34\xf1\xba\x8f\x5f\xc3\x82\x28\x21\x53\x77\xc9\xef\x54\xa8\x42\x5d\xe2\x89\x5f\x02\x5f\xe2\x0e\xc8\xd7\x90\x4c\x4b\x8a\xff\x73\x2f\xd1\x7e\x8d\xf6\x6d\x14\x00\x1f\xb5\x2c\xd9\x50\x99\x89\x8d\xa8\x89\x82\x87\xcf\x39\x12\x3f\x41\xf7\x3c\x42\xa4\x5c\xe6\x29\x8b\xdf\x50\x9c\xa2\x1a\x22\x3a\x1f\xed\xd3\x44\x68\x0a\x00\x3d\xe3\xb5\x7d\xef\x3e\xa2\xeb\x89\xfb\xb4\x35\x3c\x4a\x47\x88\x38\xc8\x60\x4a\xec\x05\x77\x1c\x9a\x3c\xe2\xe8\x36\xe4\xa3\x07\x3a\xb9\x05\xe5\x0c\x8d\xd8\x49\x49\x80\x53\x7c\x8a\x3c\x9f\x53\x62\x19\x36\xfb\x2d\xc2\x2c\xb0\x65\xbe\x0f\xc8\xf9\x4f\x1b\x74\x45\xf5\xb3\xe3\x6f\x12\x7e\x03\xae\xbd\x31\x1c\x58\x93\xf8\x66\x1f\x82\x3f\xd0\x88\x18\x21\x56\xaa\xe3\x1e\xcf\xbd\x31\x46\xc5\xbe\x50\x31\x9f\xc8\xbe\x2f\x8d\xd2\x53\x27\x1f\xb6\xc7\xfb\xd2\x8f\x9c\x25\x38\x93\xe0\x33\xa6\x0f\x33\xe2\xd6\xde\xe4\xfe\x3b\xfd\x5a\x1e\x36\x33\x6e\xf2\x86\xaa\x16\x06\x52\x6e\xa8\xc7\x7b\x33\xf8\x12\x18\x31\xd1\xed\xe3\xd6\xc0\x85\x45\x93\x27\x97\x55\x77\x22\x10\x5a\x48\x58\x23\xef\x14\xbc\xa3\x07\xc8\x9d\x30\x35\xaf\x23\x62\xad\x95\x65\xbd\xa9\xfa\x0f\xb9\xe6\x5d\x46\xd3\x08\x61\xce\x9f\x2c\x3b\x80\x2c\x47\x64\x59\x72\x1c\xef\x1d\x5f\x56\xd0\x24\x13\xb2\xaf\x1a\xfb\x10\x2d\xe0\x4e\x9f\xc8\xae\x6f\xa4\x55\x57\x3d\xab\xad\xa7\x9c\xc8\x69\x1a\x1c\x63\xa2\xed\xa8\x02\x87\x6a\x00\x0d\xef\x8f\x08\xaa\x3d\xca\x3f\x53\xa2\x3f\xec\xd8\xc3\x1b\x71\x80\x87\x5a\xb1\x26\x2c\x6b\x49\x4c\xf7\x67\xef\xcd\x49\xe5\x34\x2c\x98\x42\x28\x83\x42\x19\xa2\xd9\xfc\x10\x7f\x75\xbf\x69\x68\xda\x3b\x2b\x71\x15\xa2\xa3\x4d\xcd\x49\x3b\x94\x63\xc7\x9b\xf1\x4e\xb0\xbe\x73\x5a\xbd\x07\x06\x50\xb7\x73\xef\x08\x1e\x07\x78\xef\x71\xd0\xf5\xf0\x60\x8b\xb4\xc0\x2d\x87\x27\x9d\xa8\x34\xbf\xc6\x3b\xf8\x06\xd5\xbb\xb8\x18\x87\xe0\x3e\x74\xd6\x68\x9a\x4c\x3e\x5b\x61\x91\xe8\x81\x5c\x13\x95\xc3\xc5\x68\x23\x8a\xe1\xce\x1d\xe1\x17\x10\x5c\x43\xc5\x38\x38\x01\xe6\xf6\x35\xe7\xba\x97\xee\x7b\x61\x3d\x04\x61\x96\xf3\x11\x7d\xcf\x96\x1c\x2f\x27\x8c\x08\x4d\xc1\x2f\x04\x36\x88\xe3\x66\xfe\x69\x05\xd0\x82\xd5\xf7\x51\x3c\x0b\x0f\x7d\xb8\x30\x24\xd5\x4b\xb9\x02\x7d\x76\x85\x76\xb1\x72\xa1\xd8\xa1\x84\x12\x08\xca\x6c\x07\xf5\x2d\x94\xf8\x86\x13\x66\xc8\xb6\x17\x23\xbd\x20\xe1\x66\x04\xbb\x8f\x23\x76\x32\xf7\xc6\x1f\x3f\xab\xfe\xd5\xea\xc9\xf1\x64\xdb\x58\xd2\x22\x84\xa5\xd8\xa5\x90\x8c\x53\x77\xa2\x34\x19\x5a\x8c\xfd\x87\xdf\x69\x13\xe9\xd0\x2f\x71\x78\x9a\xe1\x4e\x9b\x10\x8b\x83\xbf\xe0\x73\x64\x22\xd0\x9c\xb3\x5b\x31\xe2\x42\xf0\xe8\x3a\xdb\xac\x5f\x12\xe8\xd1\xf9\x43\xab\xb5\x00\xa2\xb2\xa3\x13\x8a\x4f\x97\xa4\x65\xa6\x8c\xc6\xda\x21\xaa\x03\x45\x39\x7f\x54\x4d\x72\xbb\x03\x9d\x14\xdf\x70\xbd\xff\x48\xe0\xee\xa3\xac\xf9\x31\x85\x24\xab\x21\x7c\x91\xc8\x80\x59\x2d\x97\xe7\xf5\x81\x85\x58\xb0\xe8\x6b\xea\x1c\x83\xd3\xb7\xfd\xa1\x0f\xca\x70\x50\xd4\xde\x5c\x3e\x15\x6c\x7d\xfe\xef\x0a\xeb\xbf\x90\xd4\xd3\x02\x91\xcd\x94\x17\xbe\xab\x28\x26\x22\x85\x14\x17\x82\x6c\xc7\xa0\x33\x4b\xfc\x48\x86\x55\x3a\xb4\xa3\x89\xf3\xf0\x66\xdd\x35\x65\xa6\x36\xba\x22\x07\x9e\x0a\xd4\xa1\x6d\x9a\xc9\x2a\x97\xc5\x46\x22\x4b\x52\xb2\xa0\xe7\x1c\x10\x15\x93\x34\x94\x98\x66\x7e\x7b\x78\x9b\xda\x87\xfe\x7e\x76\x66\x08\x73\xd4\x01\xfe\x5d\xa2\x51\x66\x82\xc0\x22\x9d\xab\x14\x8b\x59\xb4\x42\xae\xdc\xc8\x84\x08\x90\xf6\x51\x90\xbf\xb2\x27\x74\x9b\x8e\x7b\xba\x34\xc3\x24\x1d\x10\x6b\x2d\xba\x69\x78\xa1\x67\xa7\xc5\xa0\xd0\x0e\xc4\x9e\x94\xe1\x3a\xcf\x8d\x90\x35\x83\xa4\x15\xb8\xe6\x29\xc6\xd6\x60\xe5\x51\x9a\x4a\x80\xec\xb1\xf3\x7c\x95\x99\x33\x32\x49\x83\x6a\x91\xf3\xab\x68\x55\x61\x26\xe3\xcd\xfd\xfd\x8d\x44\x87\x6b\xfa\xf2\xef\xd1\xdf\xf6\x73\x27\xb4\x64\x24\xad\xcc\xde\x80\x0c\x7e\xcf\xa4\x2f\x1c\x1f\xd3\x07\x94\xfe\x65\x6d\xcc\x0c\x1b\x3c\xdb\xf2\x34\x3d\x89\x92\x6a\xa4\x7f\x64\xc3\x7b\xfb\xf8\xb1\x11\x04\xa8\xc8\xca\xd5\xfe\xac\xc0\x4e\xb2\xa1\x04\xd3\xbb\x40\x27\xd9\x1a\xcd\xfb\xf2\x6d\x60\xa4\x8a\x41\xb4\x5f\x52\xea\xe2\x69\xb4\x40\x98\xf2\x5f\xbf\x9f\x23\xf6\xe5\x10\x5d\xf9\x5e\x52\x33\x10\xf0\x71\x7c\xfa\x2e\x4b\x26\x06\x17\xf4\x9c\xc9\xc4\x46\x53\x3f\xd6\x39\x09\xb8\xaf\x34\x4b\xe2\x3e\xfd\x18\xbd\x48\xfc\x50\xf1\xd9\xb1\x23\xd4\xe4\x2b\xf1\x60\xc6\x14\x10\xad\x55\xf4\xe7\x31\x04\x55\x99\xf4\x3e\xc9\x51\xd4\xd5\x78\x53\x63\x70\x9a\x52\xef\x57\x78\x98\xf2\x9c\x7e\x49\xab\x58\x02\x4e\xfd\xe4\x86\x10\xe4\x03\x1d\x25\xad\xc3\x22\xc2\x35\xe6\x8e\x59\xf2\xef\xab\xa2\x8c\x10\xc2\xd9\xb2\x37\xde\x5c\x44\x1a\xa5\xf1\xf2\x01\xa6\xd6\xdf\x67\x43\x8a\xd9\x29\x15\x29\x30\x49\xbf\x8d\xe8\x86\x9f\xf9\xda\x68\xca\x5d\x20\xcf\x63\x43\xca\xfd\x6b\x46\x02\xa7\x65\xae\xec\x28\x16\x87\x9a\xda\x0f\x50\xf3\x3f\x14\xb1\x30\x5d\xa6\xaa\xe9\x29\x33\x28\x4c\x96\x94\x9b\xdd\x14\xb7\x64\xb6\x76\xc5\x2b\x92\xd3\x5b\x02\x8b\x0c\x63\x96\xe9\x9a\x4f\x37\xb4\x04\xcf\xd9\x89\x87\x56\x11\xc8\x65\xf9\xb3\x4e\xe5\x1e\x61\x6b\x86\xce\xb8\x27\x44\xce\x16\xbd\xd9\x1b\x63\x6f\x33\x88\x6e\x75\x14\xad\x9e\x96\x6e\xe0\x93\x7a\xe0\x8a\x65\xc2\xa5\x44\x41\x0a\x59\x24\x2b\x89\xcf\xa4\x79\xe7\x78\x2d\xbe\x8c\xc7\xdb\xa4\x42\x36\x1b\xa9\x0e\xdf\x9e\x16\x82\xa3\xc3\x4d\xed\x59\xe2\x5f\x70\x10\xc5\x8a\x8e\x2c\x17\x36\x5a\x04\xa9\xd4\xb2\x8a\xcd\x2f\x7f\x0f\xa9\xb7\x34\x1a\x3c\x9b\x9e\x62\x00\xbd\xef\xcb\x4b\x95\x78\xc7\x2c\x8b\xf1\x86\xf1\x56\x01\xdd\x47\x15\x6d\xb5\xec\x12\xba\xc7\xc0\x7a\x38\xfc\x97\x96\xf4\x86\xe7\x91\xf6\xfb\x83\x5e\x94\x3c\xcd\x36\xbe\xce\x30\x4c\x17\xbd\xcf\xef\xd7\x82\x4d\xb2\x36\xce\xaf\xc1\x80\x6d\x3c\x8c\x72\x54\xae\x3e\x00\x20\x1a\x1d\x24\x4f\x37\x5a\xb8\x56\x62\x81\x90\x64\xbd\x36\xc4\xb0\x23\xa0\x6c\x3d\x88\x51\xb6\x3f\xd8\xd6\x1f\xb5\xcb\x23\xbe\xce\x81\xdf\x07\x94\x93\xf3\xfd\xc4\x49\x25\x98\x27\xc1\x9e\x94\x77\x9b\x93\x66\xf9\x3d\xe1\xb2\x20\xa2\x54\xc6\xdf\x93\x11\x31\x45\x3d\x3e\x3d\x9b\xc8\x49\x3a\x6f\x17\x0e\x40\x8f\x7b\xb5\x82\x7f\x96\xd5\xa6\x2b\xe7\x5c\xb7\xbb\xc0\xea\x9a\x24\x23\xc7\x84\x75\x01\xff\x3c\x2c\xeb\x5c\x42\x61\x07\xea\x4e\xc4\x8e\x08\x7e\x8c\xfa\xed\xc3\xae\x90\x81\x0f\x9a\x87\x97\xcb\x52\x31\x84\xe7\xd0\x53\xa3\x31\x67\x51\xc6\xfa\xa9\x86\x4a\x9d\xf9\xc5\x9b\xa6\xb1\x2a\xd2\x5f\xb8\xe5\xfd\x09\xe8\x53\x57\xa3\xbd\x56\x1d\x38\x16\x69\x92\x03\xe1\x20\xb0\xc9\x2d\xb6\x53\xa1\xea\xcb\x12\x49\xee\xd0\x0f\x49\x2a\x12\xf3\x49\x30\x5f\x43\xba\x94\xab\x05\x44\x63\x3c\x07\xb2\x23\xe8\x5d\x9b\x27\x10\x20\x45\x8c\x00\x29\xcb\x5a\xb0\x2e\xc5\x40\x2f\xad\xe8\xb5\x10\x8f\x23\xc1\x72\xb1\xd6\x92\xcc\xb5\x17\x5f\x4c\x49\x7b\xff\xe1\xe0\x9c\x59\x82\xb2\x9f\x5f\x7b\xde\xb1\x25\x6c\xc8\x8c\xfc\x76\x5b\x92\x53\x5f\x12\x48\xa8\x81\x1b\x3e\xb1\x73\xbc\x84\x44\x96\x13\xa4\xfe\x8d\x1a\x01\xa4\x8b\x92\xea\x19\x6e\x2b\xcb\xe5\xb6\xd7\x7e\x2e\x7a\x79\xe7\x11\xcb\x43\x4e\x09\x00\x8f\x1b\x0b\x3c\xa8\xfe\xc3\x8f\x7f\x4b\x65\xdf\xdf\x35\x1e\x73\x45\x13\xd0\x8f\x9e\x6c\xa3\xf4\x1c\x90\x83\xae\x4c\x1a\xf5\x09\xa4\x5f\x28\x9e\xfe\x25\x2e\x93\x91\xd9\x5c\x63\x31\xa5\xbd\x14\x2f\x12\x80\x9b\x5b\xf7\xf0\x7c\x3c\xeb\x9a\xd0\x80\xb1\x9f\x68\x51\xbb\x3b\xfe\x6b\xca\x80\x74\xf8\xe6\xae\x78\x7c\x78\x91\x80\x67\xd0\x89\xb1\x00\xeb\xd2\xf1\x84\x2e\x64\x61\x3a\x98\xc0\x6f\x22\xe5\x7d\x4d\x4f\x46\xdc\x96\xf0\x19\x89\x95\x57\x59\xa1\xdc\xa8\x7b\x2a\x39\xf2\xd6\x80\xf7\xa2\x54\x72\x37\x69\x96\xf4\xb9\x65\x13\x3d\x2b\x77\xce\xe9\x82\x23\x3c\xc9\x3b\xd7\x96\x4a\x7b\xb6\xe8\xc7\xbc\x16\x09\x13\xf8\xcd\xf6\x41\xeb\xf8\xb8\xfa\x30\x53\xf9\x51\x69\xb6\xa5\x5f\xe2\x44\xc3\x0a\x2d\x46\xb3\xdb\x34\x09\xc7\x4c\x03\xa7\x8b\xef\x5a\x78\xc1\xb3\x9c\x2f\xb0\xd5\x0b\xca\x80\xb9\x06\x76\xec\xf9\xd1\x73\xe0\x27\xe2\x3f\x43\xac\xce\xd4\x47\x19\xed\x18\x7f\x7a\x18\x2d\x09\x90\x11\x27\x01\x97\xd9\x3e\x0c\x0f\xd6\x21\x71\x65\xae\xa4\xfd\x19\x89\x05\xa3\xc4\x3c\xdd\x8a\xe3\x2e\xbb\xf1\xb5\x3f\x3d\x66\x78\x5a\xe9\x6c\x00\x70\xba\x51\x61\xb9\x21\x64\x95\x7f\xcd\x28\x16\xa2\x93\xca\xcd\xdf\x3e\xa8\xd0\xf2\x4e\x68\x2c\x4c\x17\x73\x39\x85\xbe\x22\x12\xe1\xec\xc5\x96\xbd\xba\xa4\xfb\x49\xe7\x55\x70\x3d\xe6\xec\x31\x3a\x89\xed\x81\x34\x3f\x24\x5c\xa1\x8c\xa2\xce\xcd\xed\x8e\xe3\x10\xa0\x70\xc6\x9d\xd6\xe7\x27\x2c\x77\xde\x63\x70\xef\x78\x7b\xe0\x8d\xbd\x95\x64\x5e\xbf\x03\xf1\x03\x32\x95\x7d\xe0\x57\xf3\xfc\x4f\xd8\xcb\x85\x9f\x86\x64\x0c\x89\x46\xf4\x36\xf9\x83\x7b\xbc\x45\xc7\x1c\x38\x86\x7a\x65\x02\x43\x74\x1e\x7b\x79\x5e\x76\x9e\xc9\x26\xce\x30\x17\x2b\xb8\xe4\x19\x54\xae\x36\xaf\x19\x76\x66\x8b\x26\xa0\x9c\x9a\xb4\x8a\x45\x58\xba\x58\x27\x7e\xc4\xf1\x47\xf4\xa0\xcb\x53\xe3\xf6\xa8\x41\x81\x25\xcb\xc2\x44\x2f\x55\xf0\x3e\x68\x98\x2a\xbd\x74\x00\xec\xb9\x58\x3a\xca\x55\x49\xb7\xb8\x74\x72\xca\x4f\x1f\x2c\x88\x9e\x5a\x38\x56\xcf\x12\x8b\x6d\x2d\xa5\xbf\x0e\xff\x38\x61\x1a\x76\x42\x37\x94\x83\xd2\xff\x01\x02\xec\x2f\x98\xda\x73\x9d\xdb\x9d\x76\xd2\x6d\xc8\x86\x0d\x4a\x12\xc8\xd2\xcb\x0c\xff\x17\xc7\xeb\xe9\xee\xf1\xe1\xf0\x7b\x6f\xac\x0a\x28\xd5\xc1\xc3\x6a\x82\x97\x3e\x58\x81\xf8\xc6\x54\x0a\x67\xa9\x4a\xba\x7d\x6f\x51\x44\xbb\xfa\xc0\xa9\x28\x0b\x9f\x3e\xc5\x6b\x6b\xd8\x42\xc1\x7b\x8c\xea\x94\xe1\x45\x25\xe4\x1f\xd6\xbb\x5e\xde\x9a\xe3\xbd\x89\xf7\x5e\xb6\xd8\x33\x60\x88\xb9\xdd\x40\xbc\x20\x15\xb2\x04\x99\x98\x3d\x33\xb9\xfe\x82\xeb\xc9\xf1\x8e\xd7\xab\x72\x7d\xd3\xde\xb2\x29\x2b\x2f\x35\x45\x69\x75\x0b\x44\xde\x0c\xf6\x03\x5a\xa4\x90\x6b\x43\xf4\x7f\x52\xc8\x2f\x31\x57\x6d\xb3\x0e\xf6\xe8\x7a\xad\xe3\x7b\x8c\xf6\x77\xba\x40\xe2\x3c\x2d\xc4\x23\x44\xf2\x9c\xec\x42\xfa\x2d\x86\x8d\x24\x8a\xa2\xd5\x54\xb5\xc3\x46\x8c\x91\x83\xaa\x1e\x6f\x45\x52\x46\xd8\x15\x3c\x21\x14\xc1\x99\xa6\x6f\x0e\x21\x9e\x73\xad\xe1\x71\x3b\x33\xf9\xdf\xe9\x83\xa8\xc1\xbf\x58\x92\x46\xa6\x36\xea\xa9\xfa\xde\x0e\x12\x48\x36\x4d\x74\xe7\x60\x20\x3f\xe7\xac\x50\x9e\xc1\x3a\xb9\xce\x8a\x23\xa3\x6e\xb3\x14\x00\xd6\xc6\xc9\xab\x7c\x99\x83\x40\xe5\x61\x54\x9c\x45\x54\x6b\x2e\x93\x10\x71\x6b\x7c\xdc\xf3\x25\xbf\x59\x9b\x3a\x9a\xc0\x27\x17\x72\xf1\x05\x26\xbd\x57\xd0\x79\x27\x8f\x48\xb9\x70\xb3\xc4\x24\x1f\x8b\xcf\xe8\x81\x91\xf1\xc2\xb8\x26\xde\x96\xae\x92\x86\x28\x15\xe3\xf0\x64\x11\x53\xc3\x24\xdf\x7e\x7f\xd1\x22\x95\xbc\xab\x6e\xf3\xaf\x47\x8b\x0f\x0c\x79\x2e\x5e\xe7\x1e\xbe\x72\x21\xaa\xd4\x44\xab\x29\x7a\x46\x74\xd1\xab\xcc\x5a\xed\xb5\x5b\xe8\x4b\x24\x0d\x9f\xaa\x4c\xbc\xb8\x43\x53\x7f\x66\xcf\xed\x62\xa9\xac\x5f\x52\x64\xd0\x73\xaf\x36\xfe\x66\xa1\x8c\x55\x5d\x3c\x34\x00\xce\x35\x51\x56\x92\x5f\xb4\xa3\xcc\x5d\xd5\x0c\x08\xad\x7e\x30\x4e\xee\xfb\xe3\xbd\xf6\x75\x19\x9a\x3f\x29\xfd\xb9\x7b\x87\x0a\xee\x29\x0e\x4f\x1a\x35\x5a\x9d\x7e\x35\x0c\x44\x14\x1b\x61\xc4\x30\x8a\xab\xe8\x5c\x23\x7f\x2e\x8a\xa0\xb3\x61\x37\x0f\xf5\xe4\x3d\xdb\x86\x09\x1e\x5b\xb7\x28\x96\xc2\x3a\x66\x67\x1b\x34\x99\x43\x29\x07\xeb\x1b\x65\xb3\x0f\x72\xbb\x07\x75\xd0\x49\xc8\x2b\x5b\xc1\x29\x36\x54\xf0\x50\x81\x77\xc0\x24\xf6\x76\xc1\xf1\x14\x4d\x8d\x99\xd3\xf2\x2f\x3d\xc4\x9a\xa4\x64\x88\x6a\x34\x96\x5a\x0d\xfc\x0d\x37\x63\x85\xfb\x0a\x3a\x22\x57\x64\xa1\x2d\x9f\x6e\x41\x24\xa2\x6a\xe8\xb6\x16\x0a\xb2\x39\x91\xc1\xf4\xc2\xe5\xb6\x4c\x73\xa3\x10\x61\xf8\xb4\x6e\x38\xf4\x5d\x17\x2d\x06\xd9\x4f\x8e\xd0\x3d\x49\xbb\x42\x61\xb9\x5f\x96\x6f\xd1\xac\xe5\x79\x61\x68\x6a\x01\xcf\xcb\xce\x9b\xf0\xf4\x30\x4e\x48\x12\x2d\x85\x8c\x4b\x4b\x48\x55\x37\x6a\x3e\x8b\xd3\xe6\x17\xa8\x0a\xbd\x8f\x30\xfd\x2c\x6d\xa0\x6e\x9e\x42\x46\x17\xb6\x22\x80\x37\xb7\x3b\xad\xfc\xf7\x35\xfc\x0f\xbf\x70\x47\xb3\x27\x66\xdf\x5f\xad\xc7\x1f\xd9\xe4\xa6\xe7\x23\x09\x5f\x17\x15\xf8\xa3\x12\xb2\xea\x94\x62\x8a\x7d\xb0\xa7\x52\xf6\xd7\x36\x4a\x03\x24\x31\xd0\x84\xe4\x16\x56\xa1\x3c\x42\x11\xd5\x7b\xc9\xfb\xac\xd1\xd2\xb3\x6d\x8d\xd5\xb1\xf3\x9f\xf7\xa7\x3e\xf6\x0b\x09\x77\x53\xc4\x91\xf1\xf3\x6a\x87\xe0\xfc\x5b\x8a\xa7\x0b\x92\xc3\x29\xf6\xa2\xb8\x88\xc0\x03\x28\xf0\xf7\x10\x7b\x5d\xcd\x35\x10\x89\x06\x5a\x86\x26\x3c\xbc\xbb\x6c\xa7\x1e\x87\x15\x11\xa5\xdc\x0f\xef\x80\xdb\x82\x9e\x23\x15\x6f\xa8\x1a\x3a\xca\xb1\x5d\xa7\xee\xf3\xf2\x67\xa4\x80\x44\xa6\x33\xdc\x5f\x59\x9a\x7f\x0e\xb8\xbc\xd3\x3e\x63\xc4\xfb\x82\xfb\x5b\x2b\x32\xed\xf0\x3f\x48\xca\xa0\x90\x8c\xd0\xe8\xd2\x7a\x4a\x50\xdd\x34\x03\x7e\x7f\xfa\x91\xcb\x78\x25\x28\x08\x95\x1c\x61\x0c\xf8\x09\xd3\x84\x84\x05\x27\x78\xea\x54\x9a\x5a\xb8\x0f\xbf\x99\x64\xd2\x28\x34\xc4\x8e\xd4\x81\x51\xfe\x8c\x2c\x6b\x8a\x4d\xde\x36\x50\xc4\x1c\xb7\x23\xba\xf9\x32\xf1\x2a\x10\xfd\xa5\x53\xe1\x04\x6b\xd9\x4f\xd1\x29\x1b\xbd\x65\x72\x80\xd5\x49\x81\x30\x53\x40\x32\x0f\x13\xd7\xeb\xd1\x02\xe4\xcf\x8c\x79\x45\x2c\xd1\x9f\x71\x50\xc5\xb3\xf1\x43\xb0\x87\x18\xfb\xa6\xc0\xa8\xd0\x0d\x99\x56\xdb\xce\xb8\x05\xd9\x3c\xf6\x30\xae\x37\xd0\x79\xeb\x9c\x89\x68\x39\x05\x6c\xc6\xe6\xa9\x1a\xa8\xbc\xf5\x4d\x6e\xbc\x16\xa9\x52\x7b\x2f\xb4\x54\x08\xc1\xd4\xbe\x18\x4f\xd4\xe9\x66\x53\x76\xf5\xde\xd5\x4a\x9a\x42\x18\xc8\xbf\x62\xb9\xb0\x50\x16\x86\x59\xfa\xb0\xb6\xb3\x43\x26\xc5\xff\x13\x32\xa2\xae\x2a\x01\x27\x21\x92\xba\x8b\x3f\xa4\xf0\xc7\x88\xd5\xf3\xd7\xff\x87\xe3\xe4\x96\x71\xae\xc9\xa8\xca\xfe\x4c\x68\x5b\xc2\x14\x04\xbb\xcd\xce\xfe\x6f\x9c\x96\xdf\xaf\x1a\xcc\xf3\x8e\xa2\x70\x76\x22\x53\xff\x91\x52\x4f\xd7\x08\x3f\x0f\xc6\x60\x6f\x32\x0d\xff\x43\x22\x24\x9d\xe4\x2a\xd1\x2a\x3d\x43\x2b\x50\xec\x4f\xcf\x01\xa2\xcc\x88\x66\x90\x0f\xbe\x09\x23\xff\x50\xf7\x37\x2a\xaa\x23\x4a\x82\xcb\x33\x3d\xdd\x2c\xf4\xf5\xbf\x4f\x1a\x59\x5c\x3f\xae\x1f\xab\x3f\x87\x95\xc6\x3f\x72\x4d\x83\x7c\xa0\xcf\xcc\xed\x11\xd9\xbc\xdd\x26\xc6\x26\x3b\xe0\x13\x1e\x2c\xbb\xc3\xee\x26\xf9\x3f\x61\x12\xef\xf0\xb2\x33\xde\x18\xc6\x02\xfd\x93\xdb\xfa\x2e\xe9\xc6\x78\x99\xbe\xbe\x98\x69\xb0\x38\x55\xe8\xdc\x50\x14\x40\x08\xbf\x25\xf2\x6a\x9d\x8d\xac\xf2\x9a\xb8\x84\x0f\xca\x24\x6e\xff\xf5\x60\x8c\x92\x26\x31\x3e\x56\x2f\x15\x84\xc1\x1a\x9e\x52\x0f\xa1\x13\xd8\x92\xed\x9c\xdc\x83\xc9\xe4\x7d\xfc\x34\xfb\xb8\x78\x2a\x84\xe8\xcf\x85\x04\x56\xdd\x3f\x6e\x40\xcd\xb7\x9b\x21\x41\x33\x6d\x3e\xab\x6d\x29\x13\xaf\xdd\x06\x31\x32\x8b\xe6\x1a\xf7\x70\x6e\x25\x69\xe0\x72\x5c\xe2\x59\xad\xba\x37\x24\x18\x74\xff\x35\xfb\xb1\x5a\x9f\x5f\x0f\x0a\xdf\xf5\x2f\x68\x8b\x00\x97\xa4\x14\x7f\x2f\x7e\x31\x82\x75\x2f\xa2\x42\xc4\x9d\x0b\x1d\xef\xf1\x6d\x5e\xcd\x23\xcd\x95\x6e\xe5\xb0\x6d\x22\xd8\xd0\x5e\xd1\x43\x0e\xe2\x2b\x07\xd1\x86\xf1\x9d\x58\xe5\xe6\x5b\x88\x12\x23\xcb\xe8\x0e\x52\xa4\x93\x88\xd2\x66\xe3\x56\x12\xb0\xf6\xc7\x0f\xd3\xbf\x18\xf0\xd7\x71\xdb\x38\x2b\xb8\x8e\x99\x10\x18\x99\xb8\x38\x5d\xd6\x31\xbe\x0d\x82\x47\x91\xd7\x96\xf0\x41\x21\xcb\x26\xa1\xd4\x01\xe0\x7d\xee\xcf\x9c\xdb\x4d\xb3\xbc\xa0\xf7\xf0\x92\xfc\x10\x3f\x8e\xb6\x22\xd4\xc3\x60\x1c\x13\x18\xe6\xc4\xff\x4a\x97\x94\x89\x33\xf4\xfe\x1e\x21\x4e\x2f\x5a\x1d\xff\x22\x1f\xca\xe8\x14\x35\xb0\x8b\x50\x40\x5a\x92\x97\xe4\xfe\xe7\xe5\x77\x2b\x70\xf3\xe7\xfc\xbb\xdb\xac\x1e\xb6\x48\x0e\x0b\x7a\x51\x30\x07\x74\x94\x34\x4b\xaf\x0b\xdb\xa6\xa1\xc4\x82\x07\xf5\x50\xa2\x9a\xc3\xff\x65\xae\x69\x75\x2e\x8e\xf2\x77\xf4\x26\x04\xb4\x8e\x1f\x39\x6c\x83\xa3\x95\xb6\x34\x97\xdd\xa7\x5b\x1d\x45\x2f\x1e\xf5\xd9\x4f\x1b\xb5\x62\xae\xd4\x48\xfc\x43\x9a\x8a\x99\xbb\x59\x89\x42\xc9\xb2\x44\xc6\x67\x87\xd6\xa0\x65\x1c\x6d\x30\x4e\xd6\x63\xcc\x3f\x85\x15\x2e\xc1\x27\x77\x66\x53\xab\xc3\xb3\x43\x8d\xcf\xb3\x7b\xb8\x48\xb3\xe3\xac\x3e\x53\xfa\xa9\x08\xbf\x36\x43\x4f\x95\x1e\xd7\x10\x49\x81\x05\x20\x7c\x0f\xc0\x14\x86\x8b\x5a\x53\xa0\xdb\x92\x67\x0c\x8f\xca\xf1\xbd\xe3\x07\x17\xe7\x6c\x18\x4d\x5e\x4a\xb6\x24\x91\x2c\x47\xdb\xbd\xb6\xab\xa4\x1f\xe2\xe6\x4a\x0e\xe5\x17\x85\x2e\x70\xe5\x6a\xff\x67\xff\x8b\x3c\x37\x4d\x8a\x3a\xb2\xb7\x71\x35\x2b\xf5\x32\x4c\x58\x69\xfc\x3c\x6d\x89\xe0\xc8\xca\x85\x12\x06\x0c\x32\x09\xfd\x23\x93\x62\x71\xe2\x9a\xd3\xdb\xa0\x33\x04\x6a\x0d\x5f\xa4\xfc\xb7\x13\xc0\x52\x24\xe5\xc8\x86\xd0\xe7\x11\x8d\x80\x75\xd3\xd5\x73\x9f\x3b\x41\x40\x42\x96\xa5\xc9\xcb\x08\x90\x9b\x6d\x1b\x40\xb6\xa2\xca\x99\x41\x86\x5c\xf2\x0d\x13\x5b\xe3\x28\x9c\xf7\xc7\x39\xed\x2b\xdb\xbb\x6d\x7a\x9e\xc0\x95\xff\xa4\x00\x62\xaf\x5b\xd1\xbf\x4d\x84\xb6\x87\xb8\xc3\xf5\xe1\x82\x71\x8d\x74\x02\xf9\xae\xde\x71\x29\x01\x3e\x82\x21\xac\x16\xe1\x83\x8d\x2a\x55\xb9\x7a\x87\x9a\x6c\xa6\xc2\x48\x31\x07\x22\xaa\xfc\xf0\xeb\xd9\x29\xf2\x8d\xd9\x6f\x07\x46\x8d\xd8\x23\x15\x04\xed\xa1\xbf\x38\xa9\xb7\xbf\x85\xa4\xa3\x8d\x6d\x5c\x4c\x28\xdb\xe9\x35\x7e\x18\xc2\xd5\x5d\xf0\x24\x9c\x6b\xa1\x46\x54\xc4\x93\x70\xd3\x07\xec\xc5\xbb\x2a\x43\xa6\xae\x28\x25\x31\xbd\x70\x76\x3c\xc5\x03\x83\x51\x5d\x35\x64\x0b\x29\xf8\x64\x4e\x0f\x38\x7c\x06\x3a\xcc\x16\x9c\x35\xa4\xc3\x29\x1d\xd3\x3f\x4b\x0b\xbf\x3b\xe0\x33\x19\x0f\x89\xd3\x28\x8f\xc5\x24\xe4\x2b\xd5\xb9\xd9\x4d\x68\xee\x67\xe8\x1e\x2a\x1e\x80\x76\x93\xcb\x58\xae\x3d\x2b\x6a\x8f\x05\x85\x26\x1a\xca\xfc\x9f\x47\xe5\x10\x4d\xfc\xd1\xf1\x62\x40\x42\x29\xf8\x60\xb2\x8e\xc8\x9d\x95\x78\xfe\xf6\x9b\x5f\x42\x98\xce\xf9\xbf\x21\x16\xf9\x05\x1c\xbc\x8a\x3a\xbc\x57\x50\x58\xee\x7c\xa0\xa6\x3e\x46\x4c\x3c\xdf\xa0\x47\x94\x49\x43\xe3\x46\x38\x7e\xe6\x55\xc3\x3e\x1a\xfb\xc4\xe0\x76\x44\x71\xed\x56\x24\xac\x4e\xac\x8c\x9a\x06\x2d\xba\xce\x47\xca\x73\x2d\x6f\x1e\xe5\xf5\xc7\x89\xc2\x5d\xa8\xf2\x5c\xd1\x75\x26\xec\xa7\x02\x97\x87\xa0\x0a\x11\x15\x9a\x60\x55\x76\x96\xea\xc0\x84\x10\x67\x95\xdf\x0e\x10\x36\xca\x7e\x89\x12\xab\xe1\x93\x52\x55\x1a\xce\x62\xdb\xa2\xb2\xd6\x1a\xb0\x91\x1f\x03\x84\x67\xab\x9c\x0a\x65\x67\xf2\x4b\xb1\x3c\x4c\x38\x98\x90\x70\x62\xc0\x3a\x7e\x0f\x77\x38\x8a\x1a\x55\xe3\x29\x09\x3a\x08\x87\x73\xd0\x2e\xec\xbe\x85\xb3\xe2\xc3\x99\xf1\x6b\x77\xc9\x74\x9a\x99\x29\xa4\x4d\x26\x11\xf1\x4c\xa1\x68\x8b\x08\x8f\xec\xda\x94\xf7\xc7\x2c\x0a\xfb\x91\x46\xe1\xbf\x87\x6c\x6b\x6f\x8b\x97\xba\xbc\xe3\xd0\xba\x61\xdb\x23\xff\xd0\x04\x90\x18\x22\xc0\x73\xf3\xe7\x1e\x77\xea\xac\xff\x4c\xfe\x20\x02\x31\x88\x11\x27\xdf\x7d\xa0\x31\x19\x83\x3c\x60\xbf\xc1\xc1\x7c\x1f\x5c\x33\x96\x92\x48\xc2\xd5\x42\xe1\x96\x00\x3a\x31\x6e\x8e\x98\x41\x3c\xba\xac\x6e\x19\xd1\xdc\xbb\x32\x5a\xdc\x9e\xcc\x5e\x08\xa0\xcb\xe5\x4c\xea\xdc\x42\x87\x80\x9d\xcc\xa1\x11\x9b\x1d\x63\xa7\x0e\xe8\xc9\x08\x97\xf9\x19\x02\x84\x31\x76\xbd\xe3\xfd\xba\xfc\x6d\x57\xf6\xc1\xe5\x57\xfd\x17\x5e\x87\x88\x26\xcd\xd0\x89\x57\xd8\xd9\x96\xdf\xc3\x69\x75\x40\x98\x9a\xae\xeb\xbd\x40\x28\x8b\x51\x83\x56\xa0\x76\x12\xc6\xd4\xab\xec\xdb\x6a\xf5\xb6\x3e\x28\xf8\xc0\x47\xf0\x47\x3b\x66\xea\x64\x05\x4d\xf1\xeb\xbb\x2c\x7e\xfa\x6f\x0e\xa9\x0d\xc0\xf0\x21\x36\xfb\xc3\xd4\xea\x38\x89\x08\xa0\x4c\xa2\x78\x1a\xf6\x11\xd8\x12\xb7\x1b\xfb\x8a\x74\x48\xb3\x11\xed\x73\x69\xac\x9c\xa9\xea\xf8\x9c\xa3\xdb\x16\xf4\xb6\x97\xa6\xf2\x7a\x9e\x28\xac\x9b\x11\xda\x7f\xe0\xe4\x97\x2f\x26\x11\x80\x83\xa2\x9f\xa0\x74\xc0\x0e\x77\xc7\xd2\xec\xd3\xc1\x21\x57\xba\x7f\xbe\x53\x8a\x84\x3d\x95\x96\x84\xde\xc3\x38\x36\x76\xd0\x78\xdf\xeb\x8c\xa3\xc8\x39\x2e\x55\x29\x4d\xa9\x44\x2e\x37\x5f\x4c\x37\x26\xb9\x89\x74\xaa\xd9\x53\x00\x8e\x82\x03\x5d\x12\x33\x13\x4d\x3d\x67\xab\xf2\xca\x5a\x87\xb5\xef\xb6\xcb\xa1\x52\x45\x9b\x91\x77\xe4\x56\x64\xbf\xe3\x42\xcb\x3f\x4d\x73\xf0\x3e\x49\x01\x79\xa5\x1b\x8b\x8b\xbf\xa4\x0c\xd9\x69\x9a\x3a\x82\x18\x33\x7e\x58\xe5\x0c\x9f\x63\xd0\x28\x83\xb4\x21\x83\xca\xa1\x89\x72\x71\x48\x4b\x8c\xd3\x35\x41\x6e\x3c\x9b\xab\x86\x4d\xb2\x35\x98\xa1\x0e\x15\xbf\x57\x47\x14\xc6\x8d\x7a\xc5\xef\xe8\xa2\x36\x79\x66\x89\xda\xbf\x6e\x8f\xd8\x71\xaf\xad\xdf\x5e\x19\xde\x47\x85\x82\x5e\x2d\x76\x09\x9a\x7e\x52\x79\xfd\x8d\xf8\x4d\xda\x9e\x48\x4a\x49\x0e\x4e\x2d\x75\x06\x58\x89\xd9\xe0\x60\xb4\xaa\x82\x2a\x95\xaf\xc9\x48\x11\x4d\x98\x86\x79\xa5\x8c\x54\xd5\xee\x4a\x15\x9f\x07\x98\xc0\xb1\x50\x99\x7c\xa3\xf7\x45\xd9\x3c\xb6\xab\xaa\x70\x2f\xbf\x3a\x09\x66\xe3\xde\x0e\xc6\xa2\xa2\x3d\x46\x2e\xed\x05\x71\xc6\xb8\x80\xe8\x71\x48\x69\xa2\xc9\x49\x15\xb2\xcd\x32\x57\x30\x7b\xa2\xff\xa0\x6f\x8b\x50\xd3\x40\x58\xfb\x44\x8e\x99\xd6\x9d\xec\xfe\xa8\x0f\x2c\xe4\x8c\xa1\x9e\x14\x0a\x13\x63\x39\x61\xce\xd8\xfc\x86\xf2\xdb\xc2\x7f\x23\x40\x78\xbb\xe0\x84\xbb\xe2\x79\x05\x29\x23\xbf\xd0\xf3\x91\x86\x66\x29\x09\x6c\x8b\xc7\x89\x2f\xc4\xd6\x1b\xd1\xe6\xcf\xec\x7d\x4d\x53\xd9\x45\xbf\x8a\x02\xb4\x30\x40\xc9\x2a\x35\x25\x1a\xf6\x62\xa2\xbf\xb9\xc5\x2b\x16\x98\x6a\x1b\x5c\xab\x22\xc7\xaa\x75\x80\x52\x81\xa3\x19\xff\xa1\x0f\x79\x36\x74\x64\x93\x79\x55\x43\x3d\xc9\xda\x0f\xa7\xb5\x1b\x35\x4e\x5f\xc3\xb4\x93\x02\x75\x44\x39\xa4\x15\x7f\x76\x20\xb1\x76\xbb\x03\x08\x61\x16\xb8\x94\x6b\xc7\xca\x55\x35\x0a\x97\x0d\xe2\xde\x57\x34\x1f\x55\x44\xfe\x93\x5c\x1e\x74\xe8\xef\x3b\x87\x41\x54\x2d\xf4\x54\x1f\x4c\x4f\x38\x22\x83\xa4\xef\x79\xf6\xcf\x7c\xb2\xa9\x59\x36\xd0\x63\xe7\xd9\xf4\xa8\x2b\x5a\xf7\x20\xbe\xb2\x21\x62\x3a\xe7\x06\x7e\x6b\x34\x4f\x34\x13\xaf\xbf\xa9\x2c\x3e\x55\xb8\x86\xff\x95\x63\x31\x10\x51\xd9\x22\xe8\x8e\xf4\x59\x5e\x6b\x2a\xb7\xa9\xde\x17\x78\x6d\xf2\xdf\xce\x3c\xd8\x42\x2a\x32\xdc\x12\x60\xd0\xb5\x4b\x60\x60\x75\xaf\x2f\xe7\x55\xfc\x14\x98\xa7\x23\x55\xf8\x73\xc1\x51\x08\x07\xa9\x8b\x99\x89\x4c\x57\xf6\x80\xaf\xff\xe1\x94\xc0\xbd\x58\xcf\x46\x75\x59\x37\x25\x27\xab\x74\x4e\xc2\xbb\x0d\x4f\x90\xf2\x21\x95\x1c\xb8\x01\x57\xb8\x51\x71\x29\x02\x80\x2e\xa5\x9d\x6b\xef\xb8\x6b\x9f\x53\x1c\x59\xa6\x12\xad\xea\xa5\x58\x7d\xc4\x7c\xc3\x9d\x91\x19\x48\x83\xfe\xc1\x98\x0d\xbd\xd3\xf5\x4e\x17\xef\xfb\x51\x91\xfc\x33\x18\x00\x5a\xa5\x0b\x3c\xa5\xe1\xea\x3e\xd8\xf9\x2b\x50\x89\xf3\xfd\x9c\x0f\x6a\x2a\xdf\xe8\x23\x07\xd7\xf5\xb9\x8a\x38\xfa\x71\xc2\x55\xfd\x27\x4e\xdc\xa8\x3e\x5f\x43\x3f\xe9\xa0\x60\xff\x60\x37\xfa\x4b\x28\x09\xd7\x0d\x4f\x37\xef\x8f\x49\x1e\x4e\x92\x5a\xa2\x20\x0b\xf4\xf6\xe5\xbd\x84\x6a\xda\x12\xfa\xd0\xf6\x64\x48\x3b\xdd\x36\x36\x59\x3d\x73\x00\x8f\x89\x65\xd5\xb7\x19\x35\x72\xa3\xe0\x65\xdc\x17\x02\x0f\x03\x03\xd7\x43\x53\x23\x3b\x6a\x61\xbd\x96\xdf\x83\xfe\xb3\xa1\xdb\xfe\xd0\x0f\xeb\x94\x5a\xf1\x71\x93\xfe\x19\x7f\xbc\xe4\xa7\xcd\x2d\x06\x61\x5a\x6b\xe3\x9f\x07\x7f\xf7\xa5\xd8\x42\x50\x11\x0d\xc6\xb9\xd0\x7d\xcd\xb9\xaa\xa4\x79\x27\xe2\xf6\x54\x59\x26\x52\xda\x08\x9d\x55\x6b\xa3\x15\xc7\x1a\xcc\xbb\x0a\x17\xeb\x56\xb6\x63\x7f\xeb\x38\xd4\x75\x5c\x76\xc9\x7a\x87\x7a\x1e\xca\xf1\x66\xa0\x6d\xf9\xab\x5e\xb6\x94\x5c\xc2\x39\x4d\xa3\x8e\x44\xaa\x75\x1b\xa0\xc2\x38\x15\x57\xde\x05\x53\xd1\x7f\x96\x04\xa3\x3e\x3d\xdc\x09\x45\x39\xd1\xd6\x47\x58\xf9\xfe\x6c\xeb\x38\x2c\x43\x77\x63\x86\xf2\x8b\x2a\x23\x46\x29\x31\x6f\x32\x35\x60\x0f\x1f\x08\x61\x02\xa0\x9b\x57\xf8\xed\x16\x03\xa9\x69\xfb\xf9\x2b\x31\xb0\xbf\xbe\x6c\xa2\x53\x5d\xb7\xfe\x6b\x36\xea\xd0\x80\xc7\xf9\x17\x6f\x6b\x43\x8d\x38\x2a\x81\xf1\x68\x9a\xde\xd3\x21\x86\xd5\xc5\xc2\xd7\x3c\x63\x9a\x54\x18\x7c\x3e\x64\xdf\xe9\x01\x49\x0c\x22\x8a\x8d\xeb\x56\xf1\xbf\x7f\x28\xe2\xfb\x8c\xed\x3b\x6b\x2b\x86\x3a\x93\x71\x26\x88\x61\x83\x36\x7d\xc0\xa1\x79\xfc\x46\x4a\x4d\x94\xb5\x6c\x03\xb5\x66\x04\x0d\xfb\x9b\x79\xc6\x65\x23\x88\x74\x6c\xe3\xd3\x2b\x0b\x8f\x33\x92\x7c\x02\x1f\x2b\xc1\xc5\x34\x08\xa3\x2d\x15\xb6\x60\xfe\x1b\xeb\x25\x1b\x55\x1c\xf0\xab\xdf\x5e\xd1\xe2\x7b\x24\x5d\x25\xec\x1f\x79\xd6\xc5\x33\x41\x16\xf4\x5f\x0b\xb5\xda\xfd\x02\x04\xb8\x51\x3d\xb9\xa5\xf8\x52\x10\x4f\xf5\x24\x78\x20\xf5\x36\xe1\x80\x37\x43\x61\x9b\xa2\xa3\x33\xb2\x77\xe6\x13\xa3\xe3\xb8\x42\x68\x0f\x0f\x88\x84\xcc\x88\xfc\x4e\x8f\x92\x82\x23\x4a\x81\x49\xef\xf2\xfc\x4e\xbb\xdf\xb0\x11\x37\xbc\x9c\xb3\x3a\x9f\x21\x53\x40\x85\x4d\xf0\x34\x99\x5a\x2a\x8e\x48\x09\x58\xc5\xb8\x25\x62\xdb\x38\xfb\x55\x0f\xb8\xc4\x60\x41\x66\x4f\x23\x40\x42\xa8\x54\xb2\x6b\x52\xb1\x58\x44\xf5\x43\xa3\x2c\x7f\xab\x42\xf3\xa2\x48\x0b\x5b\xfd\xf8\x7d\x75\x7c\xbc\x20\xdc\x64\x33\x49\xc7\x10\x9d\x1c\x53\xf6\xad\x67\xb9\x6f\x75\x23\xbf\xfd\x0e\x05\x6b\x7a\x1b\x4f\x23\x29\xfe\xec\xbd\x6e\xcd\xd2\x3a\x06\xc6\x09\x12\xdc\x3a\xec\x5b\x32\x36\x8c\xa2\xc4\x8c\xe3\x89\xa2\x37\xfc\x50\x68\x49\x6d\x81\xe6\xde\xa3\x59\xa8\x51\xec\x7f\xab\x7d\x8c\x5d\x02\x94\xa5\xa4\xf0\x29\x12\x54\x3e\xb5\x9d\xf5\x55\xe2\x40\x7e\x4b\x81\xd3\x43\xda\x65\x42\xd1\x68\x1f\x16\x7c\x85\xf0\x99\xe5\xd8\x39\xd9\x52\x9d\x10\x4d\x01\x55\x5e\x1d\x94\xa5\x04\xbe\x25\x90\x90\x01\xc1\xd6\xcf\xd6\xaf\xa3\x2a\x36\x06\xd3\x0e\x88\x1f\x4d\x64\x43\x0b\xbf\x7e\xa7\x24\x9a\x28\xd6\xa7\xa0\xa4\x4d\xd3\xbd\xe6\x15\x15\x49\x56\x0a\x30\x92\x67\x70\xa9\x93\x7f\x85\xdd\x4a\x4d\xf0\x61\xc2\xc8\xab\xec\x8f\x3e\x55\x00\x51\xfa\x95\xe9\x2e\x8a\x44\x46\x8d\x38\x7b\x3a\xb2\x0c\x92\x29\x4a\x33\x9d\x21\x9b\x37\xe2\xc4\xc6\x2a\x4f\x14\x95\x31\xee\x4a\x20\x36\xd3\xb1\x17\x73\xc9\x5c\xe7\x13\xb1\x10\x6a\xad\x68\xaf\x91\x30\xa2\x4c\xa9\x2c\x61\x75\x67\x4a\x64\x72\x07\x76\x8a\x39\x1e\x0e\xf3\x50\xf1\xfc\xef\x59\x51\x21\xf6\x02\x06\xd5\x49\x45\x73\x20\x27\xff\xf9\xc4\x3c\x1c\x19\x2e\xde\x75\xe7\xf6\xcb\x1e\x5f\x81\x06\xc4\x7d\x75\x7f\x52\xc1\x74\x1d\xc2\x4f\x16\x28\x26\xeb\x1f\x4a\x4b\xff\xcb\x4f\x3d\xb4\x95\xf7\x9f\x79\x1a\xc5\x40\x24\xe0\x2f\x65\x38\x48\x72\x6b\x2c\x28\xec\xe4\x81\x29\xb0\x36\x8f\x94\x0b\xdd\xc4\xf6\x97\x9c\x8f\x12\x5e\x24\x2e\x11\xf2\xaf\xde\x2f\x97\x56\xd3\xbc\x20\xb4\xc2\xe1\xb2\x7c\x6f\x6f\x67\x3b\xd8\x36\xe3\xe7\x98\x9c\xfa\x5e\x17\xa6\x10\x2c\x44\x43\xd3\xed\x5a\xfe\x72\x3c\x95\x1d\xf4\xab\x99\x1e\xf1\xb8\x40\x19\x60\xee\xbf\x9a\x35\x15\x06\xfb\x78\xf8\xdc\xbf\xb9\x73\x80\x9c\x04\x88\xdf\xc3\x27\x79\xee\x01\xf6\x8d\xec\x17\x43\xcb\xf8\x77\x95\x68\x37\x79\x03\x16\x0f\x96\x80\xc1\x35\x91\x41\xab\x4d\x8e\x36\x42\x4a\x6a\x45\x7e\x76\x66\x4e\x6e\x0b\xb1\x09\xd6\x56\x0f\xd2\xf8\xb1\x10\x51\x8b\xda\x59\xb5\xab\x48\xb2\x2d\xd6\x85\x68\x88\x52\xea\x43\x22\x44\x2e\xe4\x43\xd9\x47\x0f\x71\x9e\x57\x97\x6c\x5b\x12\xd1\xed\x23\xef\xe7\xfa\x0c\x9a\x79\xdc\xc2\x05\x04\x43\x2c\x13\xa7\x0e\x1d\x97\x53\x27\x9e\x6a\xff\xec\x38\x42\xd4\x53\x44\xfe\x83\x5a\xa5\xce\x63\xfc\xa4\x92\x92\xd4\x2b\xbf\x52\x77\x92\xd3\x22\x2e\x52\xfa\xe6\x30\xc7\xed\x73\x88\xed\x1b\x25\xb1\x24\xfe\x2e\x5a\x31\xab\x93\x70\xc4\xc8\x7b\xd5\x94\x89\x8a\x99\x3f\xeb\xea\x4a\x4b\xdd\xd8\x45\x4b\xfb\x75\x04\xfb\xd4\x68\xc9\xfb\x6f\x73\xe4\xb9\x9d\x5d\xbf\x1f\x74\x63\x8c\x66\x24\xd5\xbc\x0e\xb4\xb4\xe3\x1f\x41\xe9\xf4\xb1\xbb\xcd\xfa\xa2\x92\xc9\xa4\xc7\x7a\xf1\xf2\x27\x29\xea\xa5\x74\x35\x34\xc3\x2c\x95\xf1\xa3\xe7\x69\x16\x5a\x2b\x50\x69\x4b\xe4\x3e\xed\x63\xda\x06\x7d\xc1\x15\xfd\x84\x10\x41\x45\x34\xe9\xfe\x59\x6a\x13\x22\x13\xf3\x65\x6f\xdc\x7b\x00\x40\xf6\x10\x7f\xc2\x5c\x64\xfe\xa8\x5e\x50\x99\x3b\x22\xf5\xcc\x2d\xf2\x94\xba\xd3\x59\x73\x78\x9b\x3a\xc6\x17\x13\x81\xb6\x02\xf3\xaa\x42\xb4\xd3\xd7\x11\x3d\x28\x59\xf3\xd1\xaa\xe0\xea\xf4\x22\xcd\x14\x72\x0e\xaf\xf9\x3f\x77\x07\x10\x32\x94\xd1\x3b\x48\xba\x9f\x32\x4a\x36\xd9\x80\x4e\x64\x56\xb2\xfd\x93\xcc\x44\xbe\xcf\xfd\xa5\x44\x73\x5a\x88\xda\xf2\x12\x71\x16\x47\xfa\x9b\x67\xc4\xa6\xf2\xea\x09\x1d\x55\xa1\x1f\x7c\x3d\xfa\x82\x6b\x17\x14\x1e\xfe\xf5\x53\x4d\xb1\x62\x08\xa4\x4d\x91\xd7\x7e\x58\x24\x9e\xc8\x8a\x41\x34\x57\x68\x3e\x7f\xd4\x84\xfd\x73\xd7\x9d\x8a\x25\x6d\xb4\x14\x73\x33\x53\x33\x97\xa9\x78\x54\xde\x2f\xc8\x97\x1f\xf3\xf7\x85\x7c\x5c\xc3\x76\xc3\xa2\x11\x2c\x8a\xbf\x59\x92\x04\xeb\xf0\x37\x77\x6f\xb0\x74\x33\xe7\x70\x2b\x15\x54\xf6\xd8\xde\x78\x78\x78\x9c\x02\x79\x69\x35\xbf\x55\xcb\x92\x78\x1d\xb9\x63\x53\x1b\xca\x52\x22\x52\x16\x8f\xe4\xeb\xe1\x41\xe2\xc1\xcc\x59\x36\xc1\xda\xba\x30\x1f\xdd\xa4\x9f\xcc\xac\x35\xc5\x0a\xfb\x75\x44\xe4\x59\x12\x4c\x55\x9c\x92\x0c\x67\xe1\x52\xd7\xdf\x59\xa3\x52\xd9\xf7\x7e\x16\x31\x0a\x12\x5d\x9d\x3b\x41\xa3\x3a\xea\x75\x1d\x87\x44\x10\xd7\xed\x02\x0c\xc2\xa9\x4f\x13\xd1\xf6\xc1\x60\x45\x2e\xaa\x50\x89\xf4\x22\x76\x8b\xd5\x92\xf9\x23\x1f\x28\xc8\xf0\x6b\x2c\xb7\xb0\xeb\x26\x02\xea\x0f\x47\x2c\x9f\x67\x89\xf5\x35\xa9\x04\x53\x63\xb9\x87\x46\x3f\x3c\x59\x44\xfa\x7b\xc9\xcd\xdb\x33\x0b\x54\x86\x20\x89\xbd\xfc\xa4\xe1\x6c\xe3\x5f\xdd\xd2\x3f\xa1\x1d\x08\xee\x8c\x86\x3c\x9b\xb8\xc7\x9f\x7f\x3a\x79\xdc\xd7\xc0\x50\x79\x40\xe3\x27\xbc\x1b\xe2\xb5\x99\x88\xcb\x0e\xa5\x1e\x2a\x8b\xb2\x16\x4b\x85\x05\x62\x0e\x06\x4a\xeb\xb6\x25\x8c\x85\xfb\x4f\x82\x59\xe2\x95\x58\x13\xa1\xb3\x58\x75\x5c\x90\xee\xde\x06\x60\x8a\x8b\x55\x4d\x8d\x10\x37\xec\x43\xbd\xff\x56\x5f\xe4\x27\xda\x54\x2b\x24\xb7\x7b\x91\xee\xda\xf2\xc9\xb0\xd7\x93\x3f\x98\xc5\x23\x63\xa7\xba\x88\xc1\x0d\xa3\x22\x64\x42\x69\x18\xee\x6b\xb1\x50\xb4\x7e\x46\x62\x0d\x5d\xac\x8c\x82\xf2\x7c\xc2\xf1\xe7\xe2\x25\x58\x98\x2b\x71\xcb\x7a\xa9\x9b\x51\x3f\xe0\xc5\x14\x37\x83\xb9\x71\x4d\x67\xa7\x6d\xac\x3d\x1d\x66\xd9\xa4\x2d\xd9\xf5\x4a\x58\x48\x99\xb1\x29\x6a\xa0\x48\x66\xf3\x64\xa9\x8c\x01\x0f\x39\x70\x56\xcf\xb0\x8e\x20\xfc\xca\x2c\x95\xef\xed\x35\xef\x76\x7f\x0e\x89\x34\xfd\x05\xfa\x2c\xb4\xc8\xcd\x2f\xf5\x9a\x24\x7b\x62\xe2\x34\x13\xdf\xa6\x22\x51\x4e\xa5\x58\x63\xcc\xa4\x1f\xab\x27\xce\x74\x18\x70\xc4\x3f\xb0\x52\x23\x49\x8b\xec\x05\xc8\x4d\x33\x82\xe6\xe6\xfc\x3b\x51\x98\x45\x99\x2b\xda\x6c\xe2\x8b\x6b\x79\x4e\xf3\x0c\x0a\xed\xc3\x6d\x6d\x37\x14\xc4\xf8\x86\x2b\x2a\x94\xd1\x8a\x29\x05\x82\x7e\x4a\x91\x41\x91\xf2\x5b\x9b\x21\x52\xef\x45\xdf\x95\x1a\x3e\xd3\x4a\x78\x9a\x50\x08\xf8\x06\xea\xbb\x1d\x34\x3f\x25\xca\x9a\x9a\x06\x2c\x8a\x9a\xd0\xee\xb6\x78\xce\x51\x92\x61\xda\x67\x7e\x19\x2c\xa8\xe9\xd7\xa6\xc0\x4c\xcf\x1d\x62\x2a\xde\x49\x5c\x2a\x0c\x57\xe9\xe8\x49\x2a\xec\xdc\xc9\xb7\x9a\x26\x0e\xad\x5f\x7e\x2d\x89\xc6\xe6\xc1\x3f\x19\xf4\xf6\xbf\x8c\x4a\xe8\x91\xce\x02\x09\x46\x3a\x8b\xf0\x6a\xa6\x10\x00\x0a\x71\x04\x12\x23\x1b\xf2\x0d\x1b\x55\x0f\x59\xb4\x4e\x70\xc3\x97\xb9\xc8\x0d\x75\x1a\x16\x76\x8f\xd7\xeb\x73\x20\x75\xb1\xf1\x39\x56\x1b\x42\x22\x2a\xce\xce\xe5\x49\x68\xa2\x4a\x2d\xfc\xe0\x0a\x40\x8d\x25\xfa\x51\x50\x94\x1c\x99\x40\x1d\xb7\xb3\xeb\x9b\xe5\xe5\xec\x72\x7f\x6e\x1d\x6b\x57\x8f\xd6\xd0\x9d\x60\x64\xd8\x04\x0b\x71\xa4\x7f\x07\xd6\x2b\xd3\xb5\x2f\x44\x1d\x99\x20\x92\x1c\xb4\xdb\x4f\xe6\xf8\xd4\xd6\xb8\x54\x4d\x4a\x73\x8c\xa2\x88\x60\xea\xf5\xdd\xcf\x72\x95\xc2\xb5\x9e\x54\x9f\xd7\xc8\x0d\xe6\x7f\x64\xc0\x18\x5e\x4b\x2d\x77\xd2\x03\x02\xed\x51\x74\x71\x00\x01\x0b\x3a\xef\x13\xa5\x70\xfa\x10\xe2\xdf\xc3\x00\x06\xee\x06\xfd\x02\xe0\xc2\xfe\xbd\xc3\x82\x72\x1c\x77\xea\x2b\xed\x15\x43\x1d\x48\x48\x7b\xbe\x27\xcf\x29\x1f\xcc\x12\x67\x1a\xbb\xc9\xcf\x44\x50\x68\x6a\x6e\x0d\xe1\x39\x73\x3e\x01\xf3\x4f\x11\xbf\xed\x0d\xb7\xa7\x3d\x0c\x92\x60\x60\x71\x5b\x8d\xce\x21\x0e\x5a\x65\x22\xda\xe2\x58\x55\xa6\xe9\x6d\x38\xff\x48\xd3\xaf\x95\x77\xcf\x1e\x47\xcf\x63\x94\xe6\xdb\x89\xec\x23\x3d\xf0\x9e\x6a\xcc\xe3\xca\xfa\x05\x75\xc3\x0f\x6b\x99\x63\x61\x36\x89\x52\x67\x11\x0b\x75\xf0\x2a\xa7\xcb\x6c\x00\x75\xe6\xcc\x5c\x4b\x5e\x0e\xe3\x22\xe0\xe6\xcd\xee\x2d\x1c\xf7\x86\xa3\x43\xb4\x68\x15\x28\x3d\xec\x8b\x78\xa7\x9a\x5f\x44\x90\x38\x05\xdf\xfa\x2b\x1d\xd6\xd8\x54\xbd\xba\x97\xd3\x7d\x9c\xb3\xba\xfb\xda\x86\x77\x3e\xf1\x5f\x63\x08\xfc\x25\xf8\xfb\x50\x1a\x80\x47\x85\xc1\xfb\x10\xab\x3f\x11\xff\x5e\xe2\x7a\xe3\x5c\x90\x0d\x53\xc4\x2c\x0c\x31\xdf\x62\x91\xa9\x2b\x3f\x84\x02\xc1\x82\xb9\xd0\x9b\x47\x54\xad\x20\x90\xba\x60\xf6\x2f\x7e\xf3\x11\xb9\x16\xce\x89\x18\x89\xfc\x8e\x8f\x66\x34\x88\xfb\x6c\x49\x31\x44\xbd\xc4\xd8\x9e\xd8\x5c\xc8\x72\xf9\xf1\x15\x19\x2e\x42\xbc\x40\xd1\x85\x7d\xfe\x6b\xc4\xaf\x5d\xd5\xd7\xa8\x11\xc1\x56\xa2\x46\x97\xdb\x57\xac\xde\xf8\x47\xa5\xbb\x8c\xa9\xdc\xa7\xe7\xa7\x4b\x01\xf2\xec\xbc\x1d\xa2\x5f\x33\xae\x64\x67\x40\x82\x84\x69\x57\x65\x43\xef\x52\xd8\x30\x04\xfc\x2d\x82\xe2\xb8\x4b\xda\x0b\x71\x6a\x16\xa7\x98\xb2\xdd\x1f\x4e\x8c\x83\xc7\x75\xf0\xa0\xaa\xa3\x86\xf6\x67\xa4\xc2\x91\x49\x5f\x52\x65\x2d\x68\x53\x8c\xd5\xb5\xb4\x70\xa8\x1e\xf8\xc8\xf7\x4a\x18\xa9\x79\xcf\xbc\x8f\x45\x62\x27\x90\x4a\x89\x0d\x96\x32\x75\xd3\x61\x0b\x56\x3b\x10\xd6\x1f\x63\xa6\x4a\x08\xbd\xc8\xa0\x89\x73\xa9\x07\xd2\x46\x6c\x55\xbb\x92\x7f\x15\xb9\x8c\x56\x71\x38\xab\xec\x96\xd0\x61\xdb\x9f\xa5\x4a\x82\x86\xe6\x82\xa4\xdb\x9f\xa0\x33\xc7\x0b\xef\x33\x7b\xfb\x76\x9b\x5c\x59\x2f\x9d\x3c\x7d\xac\xa1\x5b\x6a\xa3\x44\x33\xfd\x63\x9b\x2c\x7d\x88\x6f\xfc\x38\x3e\x5d\x00\x9e\x64\x4d\x4b\xad\x11\xb2\xdd\xcc\xc1\x7b\x12\x07\x16\xbc\xeb\x99\xbb\x62\x32\xb2\xec\x44\xc7\x33\x60\x5d\x7a\x88\x37\x7f\x4d\x0c\x35\xee\x7e\xa9\x5e\x98\x49\x12\x0c\xa1\x56\x6c\xc7\xa5\xdb\xd4\xb2\x75\x22\xd9\xac\x3c\xbd\xea\x78\x89\x10\xc8\x65\xf9\x2f\x3e\x8d\x21\x5e\x35\x1d\x56\x04\x2e\xc3\x33\x78\x4c\xa0\x96\xdf\xf8\xe3\x9f\x2c\x5d\xec\xf4\xe3\x36\x7f\x56\x6b\x7b\x32\xa7\x17\x5e\xfc\x74\x96\x0c\x15\xad\x75\x79\x6f\x89\x04\x43\x6c\x7f\xfa\xec\xf0\x92\x78\x70\xe9\xe0\xbf\x9f\x04\x9c\xfd\x1e\x53\xc5\xfa\xfa\x26\xe1\x92\xbd\x07\xf8\x18\x69\x16\x73\x0e\x36\xda\xf4\x8f\xc0\x9b\x92\xdd\xa7\x90\x6a\x94\x03\x12\x54\xe2\x16\x1a\x61\xab\x0c\x09\x5d\x86\x05\xac\x7d\xcc\xb5\x53\x36\x78\xaa\x72\x70\x93\x75\x95\xbc\x5a\x04\x13\x09\x93\xc9\x85\xc5\x9d\x28\xf3\x2f\xfc\x21\x82\x22\x8d\x96\x9d\x7d\x66\x0d\x3a\xc0\x7c\xba\xe6\xc9\xdd\x83\xd4\xa1\x3c\xfa\x8e\x64\x0d\x82\x6c\x95\xc5\xe7\xc3\x4d\x1e\x55\xac\x4a\xce\x03\x27\x38\xf5\x07\xbc\x6e\x15\xaf\x88\x4e\x86\x74\x3e\x3b\x41\x31\x44\x02\x84\xa9\xc3\xde\xb2\x8f\x90\x74\x1f\x79\x13\xf8\x9e\x8d\x75\x07\x03\x45\xdf\x7a\xe1\x7a\x4a\x84\xa9\x27\xfe\x14\x2d\xfb\xc2\x42\xc3\x1a\xff\xab\xf5\xc7\x55\x6e\xe1\xd7\x5e\x0b\x33\x8a\x99\x16\x6e\xf4\xd3\x4b\xb2\xa3\x62\xbb\x83\x29\x4d\xce\x64\x85\xe3\xec\x24\x24\x3e\xc2\xf2\x6e\xe9\x62\x3c\xe1\x37\x71\x8e\xc3\x78\xbc\x92\x1c\x87\x12\x5f\xad\x6e\xb2\x9d\xa5\xb6\xbd\x06\x39\xfa\x99\x80\x23\x53\x64\xf4\x37\x0c\xb5\xc6\x91\x66\xd6\xec\xec\x12\x7d\x6d\x48\xe7\x5c\x4d\x83\x4e\x57\xc1\x6e\xe6\x9a\x0a\x34\x54\x8d\x8f\x16\x6b\x8c\xbf\xc2\x3d\x79\x64\x65\x8e\xba\xb8\xc9\x5e\x58\x40\x5c\x4a\xd5\x52\x5c\x50\x29\xcc\xe3\xb0\x49\xdf\x1f\x17\xaf\x85\x50\xe1\xbc\x95\xae\xc2\x61\x75\x83\x67\x0f\xc4\x2a\x6f\x83\x0f\x88\xd6\xb6\x92\xe6\x4c\x74\x27\xa5\x8c\x7e\x5e\xfb\xbe\xde\x6a\xd1\x48\x7f\xbd\x5d\x65\xbb\x9a\x64\x04\x0a\xd0\x4d\x12\x0d\x78\x5a\x7e\x8d\xa3\xf5\x9b\xa9\x28\x50\xf7\x1e\x09\xca\x1e\xfd\x69\x59\xd6\x79\xef\xed\x10\xfd\xd8\x92\xfe\x1c\x93\x8e\x15\xd4\x5f\x57\x15\xb9\x1d\xee\x75\x5a\x7d\x4a\x44\x17\x95\xfa\x85\xc7\x3c\x4f\xe2\x5d\x88\x7e\xac\x89\xeb\xd8\x38\xc6\xed\x63\x6c\x55\xdf\xee\x7e\xd2\xfc\xe7\x5e\x92\xa5\xc6\x78\xe8\x2b\xa7\x0f\x54\x97\x21\xad\x06\x3e\x69\x33\x16\xb6\xcc\xde\xe4\x2a\x1f\x8b\xe4\x14\x35\x81\x74\x9c\x0c\xd8\x5f\x63\xfa\xc3\xdf\x31\xab\x39\x94\xfd\xd7\xe8\x5d\x4c\x6a\x54\xf9\x87\xe9\x8a\xc3\x99\x65\xbc\x27\x1a\xd7\x0a\xe8\x87\x4c\xe3\x8c\xa4\x29\x82\xf9\xcd\x0e\xf4\x43\x68\x02\x4c\xd9\xfe\xa0\xca\xd5\x3a\x0f\xe6\x75\x34\xbf\xc8\xdd\x0b\xad\x49\xa2\x10\x69\x9f\x4c\x0c\x15\xb2\xa9\xa7\xfe\xb4\x0a\xfc\x2e\xfd\xc0\xe6\x5a\xe4\x0c\xa5\xb8\x7a\x03\xb6\xa7\x82\xfb\x97\xca\x31\xc4\xfc\x85\xd3\xda\x2e\xb6\x0e\xdc\x7e\x18\x6c\x03\xa9\xb6\xa2\xbf\x18\x75\x49\x8b\xed\x7c\x26\x1f\xc8\x58\xb4\x49\x5a\xdf\x65\x3a\x47\x4b\x65\xe5\x65\xb9\x2d\xf9\x43\xbd\x82\x26\xd6\xb2\xfb\x15\xa4\x64\xfc\x0e\xe2\xa0\x3f\x1d\x33\x67\x1a\x28\xe6\xd9\x2f\xaf\x59\x6c\x63\x41\x75\x7c\x10\xe4\x5e\xa2\xb4\x81\xad\x8a\xfe\xa5\x27\x83\x3b\x93\x99\x6a\x8f\x7a\x91\xba\x35\x53\x7e\x3f\x86\x67\xd1\x56\x46\x71\x60\x64\x04\x27\x40\xea\xf9\x3a\x24\xe8\x35\xc6\x01\xf1\x0e\x18\x4c\x42\xd5\xaa\xb2\xd4\x8f\xf8\x14\x1d\xa1\x95\xdf\x0a\x27\x03\x0a\xfd\x9b\xfa\x4a\x6b\x41\x12\xc1\xa7\xc2\x8e\xf9\x37\xf4\x8a\xe6\xe7\xeb\x18\xfe\x9e\xf2\x2f\x9b\x65\x9c\x85\x4d\xe1\xd0\xed\x8b\x2e\x1c\x08\xbe\x59\x6a\x04\xe1\xb0\x59\x43\xf2\x79\x73\xd5\x0e\x79\xd1\x07\x13\x0f\x4a\x3b\x55\x0f\x87\xe8\x12\xe2\xfd\x8b\x3e\x1d\x2a\x0a\x4a\x12\x93\x97\xad\x42\x21\x69\x2a\x7f\x53\xcd\x01\xf3\x44\x7a\xd4\xea\x80\xe4\x9a\x31\x97\xe9\x8f\x13\x8d\xc5\x82\x6a\x92\x0e\x46\xa9\x7d\x3d\x0b\x5a\x98\x17\x4f\x4e\x4d\xdc\xfc\x9b\x01\x2f\x00\xd4\x5f\xb5\xe2\x71\x5c\xde\x66\x03\xe5\x3f\x64\x37\xc9\xd5\x32\x12\xe5\xa8\xf1\x14\xa6\x30\x4f\xc2\xdc\xc2\xe3\xe8\x75\x03\x17\x40\x11\x3d\x81\x0b\xfc\x41\x5a\xa2\x45\xd5\x5e\xa6\x3f\x3f\xff\x3e\xe9\x59\x09\x39\xb1\xa6\xca\x2b\x7f\xf1\x61\xf5\xe9\xb0\xdb\xd6\xe0\x66\x8e\x23\x31\xa8\x03\xc7\x40\x1c\xd2\x93\xb6\x8c\xd5\x48\x1f\x28\xab\x1c\x58\x28\x09\x5e\x4c\xea\xae\x2e\x53\xe9\xe3\x98\x08\x3e\x49\xeb\x9a\x66\xb4\xa0\xf5\x3f\x76\xd6\x3f\xfc\x75\x08\x19\x23\x2d\xa1\xcc\x6e\x98\x8b\x4c\x51\xb3\x7b\x70\x1f\x50\x25\xde\x5a\xf6\x90\xed\x2c\xfc\x68\x6d\x1d\x2b\xd9\x50\x34\xdf\xca\x2c\x60\x85\x78\x96\x27\xab\x9d\x71\xcc\xf6\x4a\xda\x5b\xd4\x1d\x3e\x1d\xee\x7a\xae\xf5\x0c\xe0\xa9\x9c\x5d\x30\x4b\x09\x53\x2e\xc8\x3f\x35\x96\xbf\x04\x45\xb9\x38\x86\xba\x3c\x27\x79\x5d\xda\xab\x6e\x3c\x81\xc5\xb4\xf2\x6d\x14\xb5\x50\x53\xa9\xac\x31\x94\xf5\x50\xee\x7e\x2e\xe7\x56\xf6\xd9\xd8\x75\x36\xd9\x60\x07\x78\xb7\xed\x4f\xcc\xcc\x4e\x12\x8c\xb0\x4a\x19\x83\x74\x9f\x73\x41\x5b\xfe\x82\x08\x95\xfc\x56\x61\x17\x4f\x8c\x49\x06\xea\x23\x0c\xfd\x1a\x0f\xdd\x7b\x7b\xa9\x0c\x22\x9b\x2f\x8e\xea\x07\xe4\xf6\xab\x0c\xf9\x6f\x47\x8b\xcd\x6e\xff\xf5\xdb\xb0\xe3\x76\xd9\xac\xc6\xe2\x64\xa5\xd8\x14\xa2\x97\x73\xbd\x72\xfe\xb8\xb2\xcc\x89\x99\xcc\x3c\x16\x99\x25\x5d\xb5\xaa\x1d\xeb\xf5\x79\x2c\x9b\xba\xf6\x8b\xce\x0f\xd4\xd9\xfd\xcd\xcb\x46\x08\x89\xe0\x12\x65\x35\xe5\x74\xb0\xd4\x2e\x1e\x64\x38\x35\x47\xc4\x16\x4a\xc1\xd5\xbf\x17\xa8\xd1\x43\xa9\xbe\x9c\x75\x67\x91\x6e\xa2\xc4\x44\x23\x75\x6a\x07\xbe\x08\x60\x9e\x1d\x0e\xcc\xee\x2b\x7e\x9d\xa0\x44\x2b\xbe\x59\x81\x02\xa7\x0a\x73\x6b\xcc\xfc\xf8\x27\xa7\x52\x03\x1a\x8f\x29\x98\x1d\xfe\x11\xcf\xaf\x37\x9e\xf9\xbd\x58\x27\x22\xfc\x31\xeb\x52\xae\xef\x9b\x51\xff\xc3\xcc\x30\xac\xc8\xd7\xff\x46\xa7\x35\x60\x20\x99\xe9\xfb\xb7\xb7\xad\x36\xa6\x96\x82\x05\x54\xcf\xdf\x27\x27\x6e\xc3\xd1\x5d\x58\xb9\xc9\x68\x12\xf3\x2c\xec\x32\xb2\xef\x73\x1f\x6a\x98\xe3\x27\xb7\xf9\x21\xec\x94\x01\x45\xc2\x71\xa9\xf5\x49\x34\x5e\xee\xc3\x0f\xe0\x35\x35\xe3\x23\xb1\x0b\xd3\xe0\x78\x41\x0f\x19\xed\xca\x05\xd8\x7f\xe6\x81\xd4\xf7\x0a\x24\x58\x4f\x88\x71\x50\x8c\x29\x15\xc8\x25\xe4\xa4\xf6\x6f\x24\x45\x52\x25\x7a\xc7\x15\x4f\x70\x93\xa2\x0b\xa1\xf1\x11\x36\x03\x1f\xdd\x0f\xb7\x72\x2d\x77\xa5\x27\xee\x8f\x1e\xad\x4a\x61\xa6\x86\x09\xcc\xb9\x90\xec\x64\x47\x57\x69\xd6\x74\xd0\xbf\x34\x31\x42\xbc\xcd\x4e\xb0\x50\x72\xfa\xb5\xcb\x60\x19\xa7\xd6\xc9\x0c\x29\xcf\x3e\x0d\xa3\xd3\x5d\xdd\x40\xd2\xfa\x0e\x98\x94\x28\x77\x56\x3d\x2f\x67\xe1\xd0\x0a\x83\x5d\x5f\xeb\xd9\x6d\xac\x8b\x15\x87\x2a\xc8\xbd\xe7\xfb\x11\xb1\xe0\xa2\xd5\xc2\xb7\x19\xf1\xe7\x14\x9e\x83\xcf\xf7\x9c\x2e\x37\xca\x86\x79\xb6\xca\xcb\xd0\x10\x54\x1c\xeb\xa8\x12\xdf\xe3\x83\x69\xe7\x59\x9b\xe5\x6d\x26\xee\xec\xcb\xdb\x85\x3b\xa9\xd2\xa8\x43\x97\x82\x8a\xc8\xe1\x7d\xcd\xbc\x3c\xa3\x96\x62\x2a\x75\x91\x34\x4b\x56\x9c\x31\xf6\x4c\xdf\x35\x54\xba\xc9\x14\x57\x51\x22\x26\x13\xd6\xc4\x0e\x4b\xef\x40\x0d\x2a\x4c\x79\x4c\x4d\x1b\x13\x68\xf4\xa9\x55\x4a\x11\xc3\x1c\x43\xa9\xe8\x02\x99\x79\x67\x20\xe1\x26\x4c\x70\xa8\x59\xee\x62\xda\xe2\x8e\xda\x8c\xd6\xf6\xd4\x0e\xc1\xb5\x06\x57\x95\x7b\xc9\x55\x87\xfe\x68\x4d\x18\x8a\x11\x1b\x87\xd6\xd0\xcb\x85\xdc\xfe\x65\x5a\x92\xcf\xa9\xf7\xed\xa8\xca\xf4\x76\xee\x51\x05\x6f\x3b\x90\x08\xcd\xd6\x5a\x25\xb3\xe4\xe4\xb0\x5b\x51\x53\xa8\x4a\xe2\xdc\x4f\xee\xd6\xde\xd1\xf2\xef\x6e\x3d\xa8\xae\x49\xa7\x3a\x67\x2e\x13\x17\xc8\x0e\x27\x15\xc9\x45\xd9\xb7\xe9\x5c\x59\x5d\x59\x4e\x77\x44\x8b\xa3\xda\x65\x04\x09\xf4\xce\x5e\x3f\xae\x18\x62\xff\xf8\x8d\xa9\x3c\x9f\x01\xec\xb7\x31\x3d\x4f\x7e\x6d\x05\x32\x31\x9e\xa2\x8e\x0a\xce\x97\xd0\x9e\xf9\x5d\x4e\xcc\x6a\x13\x1c\x51\x10\xdb\x4d\xbb\x16\xca\x63\x83\x96\x58\x40\x91\x63\x69\x23\x5a\x0d\x60\x22\x3a\xd6\xdb\xc7\xee\x2e\xb7\x8a\xeb\xc5\xd6\x30\x6f\xc1\x5d\xfa\x39\x65\x74\xc3\x4c\xc1\xed\x3b\xda\x55\xf4\xea\xa7\xd9\x7c\x63\x6b\x2d\xaf\x01\xf8\x76\xeb\x77\x7b\x9a\xbf\x2d\x0e\xb6\x75\xdd\xfc\xdd\x2a\xe9\x6c\x3e\x79\x25\xff\xd7\x0b\x8b\x56\xbc\xb9\xc9\xd5\x4d\x3e\xef\x02\xd6\xdb\xff\x68\x29\x7e\x38\xa7\xde\xdd\x85\x10\xb4\x1a\x43\x00\xd2\xcb\x9b\x86\x1d\x5c\xd1\x14\x6f\x8f\xb0\x06\x8e\x2d\x85\xf3\xb5\x2c\x2a\x09\x8f\x96\x0b\x2a\xf6\x95\x26\x18\xb9\x26\xa3\x20\x99\x53\xe4\xb1\x69\x18\x43\xc7\x13\xff\x0f\x00\x00\x40\xff\xbf\x0d\x37\xb3\x20\x56\x73\x12\xbd\x18\x0b\xf7\xa0\x17\x3f\x32\x98\x06\x75\xe3\x1e\xb5\xf1\x12\x00\x16\x08\x6b\x51\xf9\xa0\xcb\x09\x86\xb1\xf3\xbe\x03\x8c\x05\xe5\x6a\x98\x56\x74\x23\x2c\xbc\x95\xf8\xd1\x6c\x78\x03\x36\xc5\x0e\x8d\x2b\x69\xf7\x39\xe6\x36\x41\xa7\xc4\x64\x99\xe7\xfc\x92\xcb\x2e\xdb\x20\x56\x41\xda\x1d\x41\x84\x65\x1a\x87\x92\x26\x41\x4e\xaa\x8d\x74\x03\xa3\x9b\x06\xa2\x6d\x58\xcb\xe6\x5a\x03\x70\x94\x84\xb0\xad\x46\xf6\xd3\x29\x7c\xa8\xc6\x10\x8e\x6f\xd2\x32\xc3\xf9\x5a\xa2\x9f\xf8\x1f\xc9\x32\xc1\x04\xcf\x03\x21\xd2\x40\xe6\x65\xc2\xe5\x89\xdc\xde\xd4\xcd\x85\xb2\x50\x59\x5f\x95\x82\xe6\x1d\x0c\x26\x63\x85\x93\x64\x13\x20\xc7\x69\x1f\xa1\xa7\x22\xd0\x17\x77\x7a\x27\xb8\xd6\x26\x69\x40\xe2\xd1\xa2\xd7\x50\x8e\x6a\xa7\xc7\x21\x51\xfc\x4a\xd0\x04\xc8\xd2\x3c\xc9\x04\x01\x1e\x44\x1e\x4c\x57\x8e\xfd\xb6\x4b\x42\x8a\x6d\x5b\x01\x1d\x00\x47\x2b\xf1\x24\x0f\x7e\x94\x96\xe4\x66\x90\x79\x4b\x13\x70\x51\x94\x32\x6c\xc8\x18\xbc\xb6\x89\xbf\x18\x8d\x7a\x37\x39\x11\xdf\x7a\x92\x73\x3d\x2f\x38\xd9\xe2\xf0\x64\x32\x43\xd1\x03\xe0\xdb\xe4\x73\xb9\xbc\xbf\xb0\x1e\x5f\xbc\xf2\x3b\x7e\x84\xb1\xb4\xa1\x25\xfa\x14\x63\x95\x10\xc7\x03\x26\xbc\x06\x40\x6d\x44\x9b\xac\xe5\xa9\x77\x11\xa8\xa6\x99\x5d\x9a\x00\x04\xe4\x4f\x67\x38\x58\xb6\xf1\xe4\x35\xb6\x1e\x11\x09\x63\x0e\xcc\xcd\x3e\x61\x86\x75\x0a\x0b\x9a\xb3\x8b\xac\xbe\x0c\x66\x30\xe5\x0c\x69\xae\xd0\x0b\x89\xfd\x6e\xe1\xb8\xdd\x5d\x51\x33\x6e\x23\x84\x99\xee\x55\x31\xd8\x27\xfb\xe7\xc9\x83\x10\x0e\x14\x9a\x58\x75\x6e\xb7\xd0\x58\xa0\x6c\x87\x35\x27\x74\x32\xc8\x91\xf2\xd8\x2e\xf8\x30\x31\xb1\xa9\x5a\x9a\x95\x77\xc0\x58\xc1\xa7\x53\x65\x68\x8c\x86\x9e\xa5\x64\x88\xe9\xad\x08\xd4\x71\xd2\xce\xc5\xa7\x6d\x89\x40\x67\x5a\xc1\xd6\x8c\x9b\x7d\xb8\x11\x4b\xb8\x8f\x6d\x2b\xda\x13\x3b\x04\x7c\x56\x6f\xcf\x78\xeb\xcc\x3b\x84\xce\xcb\x0f\xbe\x1e\x95\x31\xc6\x91\xaa\x8a\xf3\x91\x20\xcf\x69\x96\x69\x93\xe0\xed\xd5\xe4\x46\xe9\x52\x3e\xb6\x48\x5c\x09\x64\x64\xb0\x04\x84\x94\x96\x34\xa0\x73\x99\xde\x43\x86\x25\xa0\x58\x42\x3e\xf7\xd8\x08\x9c\x79\xf4\x04\x78\x2a\x56\x12\xda\xc3\x74\x20\xca\x74\x54\x28\x12\xbb\xe4\xb8\x50\x49\x56\xdd\x55\x4f\x64\x61\x91\xab\x90\xd6\x00\xed\x8d\x4d\xa4\xa3\x8c\x51\xaa\x46\xf1\xdf\xda\x5d\x9a\xea\x45\x68\xfa\x2d\x91\xeb\x54\xf0\x13\x5e\x6e\xd7\x4f\xaf\xb0\x24\x8f\x1d\xad\x86\xdd\x88\x67\xe0\x61\xe4\x88\x4f\x2c\xe7\xff\xcb\x3f\x63\xd1\x54\xcb\x1a\xe0\xd1\xf6\x51\x53\xa4\xc5\x6b\x87\x4e\x40\xe4\xc5\x1d\xfc\xa6\x55\x3c\x80\xaf\x0a\xd7\x87\xc6\xca\x74\xf9\x65\x09\xd1\xaf\x33\x3c\x5a\xfa\x6f\xa9\xf2\xc0\x32\xe9\x08\x9d\x97\x97\x7f\x34\xc3\x98\x10\x3f\xa1\x6b\x36\x53\xc8\x1f\x9c\x8e\xb5\x1a\x88\x87\x87\x32\xf6\x22\x81\x29\x04\xce\x81\x64\xd3\x43\x8a\x5c\x67\x02\x54\xd7\x34\xb3\xfe\xf5\xdc\xfc\xdc\x21\x9e\x52\xe6\x5c\x34\x12\x18\x52\x00\x85\xfe\x90\xfe\x1b\x91\xa6\xc4\x17\xfe\x4c\xe3\x38\x4b\x24\x84\xc8\x27\x7a\xc4\xa8\xee\x26\x12\xaf\x82\x32\x99\x81\xb4\x09\x69\x12\x35\xb0\xd9\xac\x76\xa7\xd1\xa7\xae\x1c\x52\xd4\x15\x66\x4b\xca\x69\x8b\x60\x75\x55\xd6\x34\x6d\xca\x92\x0b\x76\x4a\xef\x79\xe1\xc4\x36\x6c\x56\x86\xff\xa3\xe7\xec\x82\x14\x47\xb2\xc2\x4c\xdd\x11\x94\xa9\x21\xfc\xa6\xb8\xc0\x84\x36\x55\x2c\x5f\x14\x89\x0c\xbd\x7c\xe9\x89\xde\x73\x54\xd3\x5b\x87\x14\x38\x3d\xf7\xba\x48\x70\x45\x7e\xfb\x7c\xa4\x7b\x93\x60\x1e\xc8\x7d\x7f\x14\xe2\xf1\xc4\xa4\xb5\xc4\x35\xff\xbf\x30\x0b\xa6\xfd\x5d\x27\x6d\xdb\xf2\x07\x62\x4c\x10\x18\xf3\xdf\xb8\x00\x80\x64\xdd\x2f\x11\x6a\x02\x4e\x99\xf3\x89\x11\x4c\xd4\x06\xc1\xe2\x14\xb8\x8b\x03\x3d\x79\xd1\x84\x84\xb9\x1b\xd4\x06\xe6\x68\x97\x88\xf4\x26\x18\x05\xfc\x42\xdc\xf6\x1a\x8f\x09\xf5\xde\xab\x01\x43\x5a\x87\xc1\x73\x79\x8d\x08\xcf\x7d\xeb\x82\x94\x55\x93\xfd\x83\x69\xc1\xe4\x3c\x4f\x93\x8a\xf9\xeb\x21\x35\xbc\x35\x1d\x1b\x3c\xc7\xb4\x77\x7b\x21\xb6\x91\xeb\x16\x58\xd5\xf7\x5f\xcd\x7d\xbb\x11\x39\x06\x7b\x2d\xd8\x22\x70\x88\x40\x18\x63\xd9\x67\xce\x4f\x42\x30\xad\xd6\x9a\x1a\xac\xb4\x27\x68\xce\x69\xcc\xd7\x24\x94\x6e\xd8\xe0\xcd\x8a\x99\x06\x8d\xe0\xfa\x80\xb6\x7d\x01\xb7\x56\x63\xb9\x33\x51\x1c\xe8\x3b\xfd\xba\x10\xb5\x23\x64\x3a\x04\x75\x08\x8d\xe5\xf2\x72\x73\xff\xdf\x62\x74\x2c\x25\xe0\x55\xdf\xf0\x16\x38\xe7\x47\x66\x3e\xba\x5d\x55\x25\xb2\x69\x3c\xef\x7e\xd0\xc5\x0c\x54\xbd\x25\x8d\xac\x38\x52\x16\x98\x49\xa2\xf9\x65\xfc\xb7\x76\x20\x91\x90\xcd\x3b\x9d\xc0\xa6\x5c\x32\xf7\xa1\x76\xa5\x62\x39\x56\x45\xf5\xd8\x3e\x15\x40\x20\xa2\xca\xdb\xbb\x4b\xbd\xc9\x48\x34\x7a\x1c\x66\xdb\x28\x22\x4c\x62\xc5\x30\x06\xd9\x7f\xe5\x64\x2e\x05\xe7\x44\xb0\x61\x49\xcb\xc9\xed\x78\xc4\xe4\xee\x0c\x89\x58\xf1\x7d\x00\x55\x84\x80\xa8\x93\x4c\x58\x05\x14\x53\x56\x20\xac\xaa\x94\xdc\xd0\x40\x04\x11\x31\x51\x9a\xea\x05\xf1\xc4\x93\xc0\xb7\x54\x8a\x35\x9f\x34\x27\xdc\xba\xa5\xdb\xd4\x5b\x6b\xf8\xc9\x80\xef\x85\x90\x61\x2a\x27\x10\x10\xd8\x08\xfa\xaa\xe1\xc1\xf2\x37\x94\x5c\x92\xe4\xbc\xa3\x4c\xdc\x4f\xf7\x1c\x68\xa7\x6f\x81\xd2\x1a\xd6\x92\xde\x06\x39\x97\x32\x8b\x0a\xbe\xbe\x4c\x14\x46\x45\x2c\x01\xd5\x22\x58\xff\xe3\x71\x9d\xe0\x40\x6b\xea\x12\x98\x1a\x75\x5f\x0d\x44\xd8\xa3\xa4\xc4\x50\xd6\x10\xc1\x23\xf9\x71\x7d\x61\xdc\xcd\x49\x79\xcc\x59\x10\xf1\x0a\xa6\xa2\xaa\xc5\xe8\x96\x2b\xe1\x2f\xcb\x38\x34\x61\x44\x6e\x46\xc9\xed\x5a\x05\xd1\xef\xb2\xb8\x47\x48\xf4\x9b\x8d\xab\xaa\xb2\x6a\x59\xc9\xf0\x24\x3d\xad\x60\x41\x8d\x81\xd5\x91\x5d\xe8\x86\xd1\x1e\xb7\xb4\x4c\x88\x46\x8d\x05\x42\xe2\xf8\x22\xe1\x3b\x99\x1a\xd2\xea\x0f\xcd\x31\x20\x0d\x91\x89\xe8\x0d\x1d\xd5\x98\x5c\x3d\xa0\xfc\xb6\xe8\x10\xbb\xd6\xa6\x0d\xb0\xb5\xb1\x78\xec\xbd\xa3\xb1\x84\xb5\x07\x89\xdb\xc9\xbc\x89\xe5\xe0\x10\xc8\x1c\x6a\xd5\x29\x2b\x63\xd9\x8d\x2a\x62\x3a\x19\x8c\x10\xba\x4a\x5a\xdd\xbd\x90\x0d\xc6\x20\x87\xfb\x14\x20\x57\x27\x62\x22\x9f\x63\x33\xc8\x9f\xa0\x68\xde\x1d\x85\xaf\xe2\x52\x37\x3d\x9e\xe5\xa4\x49\x02\x62\x1e\x49\xc4\xe5\x82\xf4\x7c\xfe\xcc\x44\x1c\x99\xb2\x00\xb6\xfd\xb9\x40\x48\x58\x5d\x08\x1b\x7c\xf6\x98\x0d\xe8\xa8\x0e\xce\x1c\x08\xfa\x19\x2f\x8f\x44\x25\x78\x41\x54\x12\x1e\x8e\xd3\xfc\x9b\x31\x96\xa2\xbf\x3e\x94\x56\x77\x34\x4a\x8f\xf6\xcc\xb4\xac\x7c\x80\x85\x0d\x46\x79\xb5\xfe\xad\xd6\x26\x62\x90\x69\x89\x76\x54\xcf\x31\x66\x35\x63\x9a\xc0\x9f\x3a\x61\xf8\x75\x11\x87\x01\xa7\x0b\x21\x76\xf6\x56\x62\xd8\x24\x3c\x91\x71\x45\xeb\xa2\xdd\x41\x8a\x3c\xc1\xba\x61\x70\xc0\x5c\xc4\xbd\xfe\x6a\xb5\x5f\x7f\x8e\xce\x15\x90\x82\xab\xb7\x82\xc6\x08\xec\x37\x62\x6b\xcb\x2d\xf8\x0b\x31\xf5\xba\xb2\x84\x92\xd5\xc2\xfa\x1c\x91\x7e\x8b\x5f\xcd\x31\xb9\x04\x62\x0d\x09\xe5\x29\x41\x11\xb8\x22\x51\x8b\x6f\x42\xf2\x79\xe0\xf3\x24\x48\xa8\xab\x8f\x64\xdc\x13\x76\xe8\x7b\x9b\x0f\x2b\x72\xe0\x48\x36\xa6\xb1\xe6\x4a\x7e\x6f\xc8\xb8\xca\x43\x9b\x56\x2b\x2b\x73\xc6\xf3\xb1\x84\x1c\x17\x45\x16\x1b\x88\x07\x32\x78\x37\x5c\x07\x19\x91\x40\xd5\xc3\x7a\x4b\x1f\x0a\x02\xe6\xd5\x28\xa9\xc5\xc5\x5f\x4e\x26\xdf\xb1\xeb\xb8\x4e\x45\xb3\x22\x80\x1d\xf8\x67\x82\x0d\xc0\x0d\x95\x25\xbe\x8b\x7c\xec\x7e\x80\x16\x46\xb3\x06\xc0\xfc\x81\xba\x2c\xed\xa7\x53\xf9\x72\x45\x11\x62\xc3\x61\x4e\xd9\xa2\x56\x79\x1a\x64\x7f\xee\xec\x25\xeb\x6f\xac\x44\xd6\xd4\x36\xab\xca\xf0\xe9\x5a\xfd\x89\xb7\x6a\x8f\xb7\x97\x01\xae\x3b\x9e\xda\x3e\x8a\x9a\x7a\x4d\xee\x42\x0f\xe7\x16\xad\xcd\xd5\x36\xe2\x49\x0b\x22\x1a\x22\x0e\x16\xd6\x22\xac\xa6\x79\x64\x2d\x94\xf9\x76\x66\xc7\x29\xab\xbe\xcd\xc1\x33\x9a\x75\xc5\xf3\x0b\x46\x88\x18\xf7\xb1\x42\xce\x43\xd4\x1c\x17\xd2\xf2\x87\x2a\xdf\xa1\xcc\x1c\x37\x02\x27\xcc\x25\x10\xb6\x55\x1c\x25\xe2\x3d\xad\x54\x3a\xe2\xb3\x45\x14\x50\x2d\x98\xb1\xb0\x3e\x00\x2b\xd5\x49\x61\x1b\x08\x2d\x20\x9d\xa8\xec\x2a\x48\x6b\x91\xa0\x71\x63\xa3\xe9\x3e\x7a\x6c\x46\xb5\xe8\x8f\xc2\x55\x12\x04\x9b\xff\x4f\xe6\x0c\xb1\x57\x40\x5c\xa4\x5a\x4a\x50\xb9\x76\x8b\x1f\x6f\x78\x60\xb5\x63\xd1\x44\xb5\x8a\xb8\x1e\xc0\x8d\xa6\xb9\xbc\xfc\x9a\xf6\x31\x0a\x32\xa3\x10\x19\x71\xee\x62\x0b\x90\x01\xbc\x77\x93\xdb\xbd\x79\x33\x33\x38\xd4\xf3\x2a\x46\xe0\xe0\xfb\x64\x79\x34\x13\x02\x48\x94\x95\x09\xbd\x9a\x22\x5b\xb2\x87\x9e\x79\xd8\x93\x21\xf8\xb6\x11\x83\xca\x12\x21\xf3\x5e\x6e\x5e\x58\x25\xc1\xd4\xf2\xf6\x95\x31\x0b\xea\xda\x12\xe1\xa9\x46\x89\xce\xc8\xbf\x32\xef\x19\xcc\x1b\x5e\x62\x1e\x52\x64\xb4\x58\x3e\xfa\x08\xe9\x3a\x6c\xd2\x8e\x20\x86\x43\xb8\x95\xb8\x50\xb9\x68\x29\x84\xde\x56\x4d\x9e\xde\x59\x7c\xcc\x12\x50\xd3\x8e\x36\x58\xcb\x55\x86\x7d\xb0\x27\x62\x53\x08\x94\x17\xa4\x54\x74\x9f\xb4\x24\x55\x2e\xc1\x02\x3d\x50\x40\x5c\x02\xb0\x77\x03\x61\x33\x18\xfb\x21\x60\x4c\xca\x47\xaa\x18\xe3\x22\xfe\xee\xfe\xa2\x05\x12\x32\xd2\xe2\x8e\x2c\x43\xb2\xaf\xea\x37\xcb\xd3\x92\x63\x1c\x32\x9e\x8b\x47\x0d\xde\x1a\x0d\xe8\x6a\x85\xc7\x7e\x63\x94\x44\x6f\x66\xb3\xeb\x31\x8f\xdd\x4a\x4f\x80\xd7\x68\x17\xb0\x90\xeb\x67\x41\x2c\x85\x26\x1b\x20\xfc\xe4\xb9\xf7\x10\x8c\x49\x94\xd8\xa3\x98\x65\xad\x34\xa7\x4e\x6a\xc9\x1d\xc0\x70\xe4\x02\x15\x04\x31\x19\x9b\x6f\x83\x9a\x43\x8e\xa5\xea\x09\x9b\x29\xed\x31\x52\xaa\xc9\xc6\x24\xdc\x90\x3d\xa9\x7f\x21\xd5\xb2\x67\x25\x30\xbe\xa8\xae\xe1\xe0\x07\xc6\xa3\xdc\x74\xea\x21\x60\x97\x25\x24\xc4\x56\xf1\x82\xa4\x91\xa0\x37\x38\x14\x44\x0c\x11\x17\x16\xec\x19\x77\x15\x17\x20\xe2\x59\x50\x30\x23\x3f\x1d\x4e\x73\xb7\x3d\x5a\xd8\x70\x7f\xde\x3a\x78\xa7\xf9\x0d\x8f\x18\x6e\xe2\x88\xa6\x43\x33\xce\x28\x3d\x81\x37\xbd\xc7\x26\xca\x11\xeb\x1f\xd3\x6e\xc2\xfe\xd4\x28\xe2\x2a\x22\x29\xbd\xf0\x25\xe0\x99\xea\x61\xb5\x9c\x12\xcb\x37\x7d\xb8\xd3\xea\xde\x8b\x45\x92\x08\xa1\x27\x18\x03\x17\x0e\xca\x53\x6a\x41\xb1\x49\x83\x19\x3d\xdf\x3b\xf0\x41\xb2\x9b\x4a\xdf\xdd\x29\x25\x86\x10\x20\xad\x90\xda\x7a\xd7\x72\x04\x32\xe1\x5a\xb6\xb5\xef\x82\xd5\xaa\xb1\xe0\x2c\xe8\xf5\xb5\x77\xd0\x93\x2d\x3b\xce\x9e\x18\xf5\xcd\xb3\xd3\x64\x34\x94\x85\x70\x37\xa2\xc7\x55\x39\x5b\xd5\x2c\x06\x0e\x41\xd5\x49\x2a\x97\x39\x16\xaa\x3a\x2b\xb4\x53\xd4\x96\x02\xfb\xab\x05\x6a\xda\x21\xbe\x4f\xd6\x56\xe9\xc3\x22\x35\x0c\x02\x97\x2f\x44\x07\x67\x66\x85\xc8\x8c\x5a\xb2\x10\xf1\x35\xbd\x25\x6b\x82\xa3\x93\xc9\xfd\xaf\xbe\x21\x75\x52\x39\xc0\xb7\x63\xeb\x30\x27\x96\xb4\x23\x1a\x64\xbf\xd1\x70\x3b\x9c\xd3\x1f\xd3\xe9\xda\x90\xd5\x0d\x4a\x06\xb4\x37\x05\xc0\xaf\xc5\x7a\x38\xf3\x9d\x4e\x26\x99\x42\x4b\xb4\x6c\x89\x42\x60\x29\xb1\x2e\xb7\xab\x65\x71\x0b\x03\x5c\x91\x54\x9a\xfc\xe6\xaf\x9b\x73\x94\xf6\xd1\xec\xc1\x76\xba\xe6\xc0\x3a\xfe\x70\x87\x65\x77\x61\x0c\x43\xcb\x18\x25\x4b\x4a\x7e\xcb\x0c\x96\xc8\x9a\xa6\xd7\x81\x85\x31\x8a\xf2\x54\x65\x20\x6e\x39\xbf\x2c\x90\xc3\x8c\x8e\x71\x8a\x37\xc4\x7a\x0c\x01\x5a\xe3\x2f\x22\x0d\xd6\xad\x0e\x00\xed\x07\x6e\x51\x02\xca\xdd\xd8\x21\xcc\x37\xea\x71\xc2\x9b\x8a\x13\x85\x6f\x61\x5b\x87\x5a\x0d\xa5\xcd\x4b\xc1\x4a\xd5\x6b\x87\x01\xef\x48\xf8\x46\x94\xf4\x01\xfe\x5d\x94\xd7\xc1\x5e\x22\xc8\x1a\x0a\x48\x3b\x87\x69\xe7\x89\x11\xc4\x99\x1e\x07\x1d\xc5\x41\xae\x67\x1e\xa7\x70\x6b\x62\x7f\x8c\xce\x98\x2f\xe0\x84\x61\xdc\x7d\x95\x35\x21\xee\x31\xe2\xf6\x1f\x33\x7e\x4c\x3e\x8b\x50\x95\x93\x2b\x79\x6d\x3c\x95\x92\x5f\xc0\x1d\x14\xee\x5a\x40\x27\x09\x21\xdb\x4e\x85\x20\xda\x98\x9c\x85\x68\x93\x97\x9d\xd1\x64\xee\xfa\x35\x81\x80\xfd\xb8\x2c\x2b\x60\x57\x52\xe0\xd4\x19\x89\xe1\x80\x54\xd9\x56\x16\x72\x71\xa0\xa0\xa2\x1d\x29\xd1\x40\x43\xba\xd7\xc0\xe2\xbf\xd4\x96\x10\x67\xd1\xb8\x4a\xca\x4b\x42\xb3\xe2\xd7\x26\x40\x2e\xe4\x39\x19\x0e\xc8\x58\x93\xf9\x09\x46\x00\x6b\x54\x33\x30\x19\xa1\xc3\x3d\x3b\xd2\x01\xb2\xb0\xa9\x47\xab\x7c\x49\xfb\xb6\xe8\x43\xf7\x67\x5e\x43\xf4\x1f\xd5\x79\x4d\x0c\xc6\x8b\x9a\x72\xea\xb6\x04\x8c\x8b\x4c\xd9\x49\xd0\xd0\xc4\x50\x8d\x09\x07\xb7\x97\xdb\xbb\x36\x8f\x06\x70\x52\x42\x46\xe0\x6f\xc1\x45\x1a\x0c\x68\x5a\xe8\x1a\xa3\x00\x30\x44\xe0\x09\x12\x11\xec\x31\x30\xb8\xb0\x93\x5a\x39\x35\x04\x83\x91\x43\x0c\xf3\x25\x63\x26\x68\x94\xc6\xc0\x12\xc4\xd0\x60\x90\xc6\xff\x9b\x02\x3d\x55\x1a\x3b\x26\x47\xba\x3a\xb7\x2c\x09\x43\x05\xc3\x1f\x0f\x04\x76\x37\x9d\x57\x5b\xd5\x29\xa5\x68\x7a\x21\xda\xf0\xc7\x18\x2d\xde\xb8\x66\x31\x4e\xb6\xbe\x53\x04\xac\xe6\xc0\xab\x6e\xc4\x3d\xa0\x0f\xfd\xa1\xc0\x02\xd2\x09\x6e\x64\xb2\x16\x26\x2b\xb6\x15\xd7\xb2\x6d\x48\xdc\x51\x82\x60\xa2\x98\xbb\x4a\x9b\x7b\xf0\x16\x7d\xc4\x4e\x1c\x3e\x2a\x6c\x2e\x68\x65\x54\x0e\xf0\x09\xa4\x59\x3c\x42\xac\x93\x32\xd6\xb6\x54\x3b\x6d\x7d\x2a\x0b\x0f\xbe\xc5\x8a\x4d\x45\xf4\xf5\x2b\xb6\x4f\x5f\xf1\x14\xd3\xd2\xe2\x01\x44\x33\xb6\x82\x71\x6a\x10\x5b\x4f\x48\x06\xbe\x8b\x12\xa6\x98\x98\x4b\xb0\x4c\xde\xb6\x62\x5e\x92\xf8\xcf\xc7\x42\x9f\x5a\x4f\x44\x00\xf8\x22\x94\x02\x4c\xa9\x1b\x71\x6f\x4c\x38\xb6\x27\x67\x65\xc4\x24\xb3\x14\xe8\xc9\x93\xcd\xc3\xef\x98\xae\x41\x16\xe1\x11\xd5\x41\x50\x39\x28\xd5\xd5\xc8\x9a\x73\x66\xea\x25\x6e\x8f\x94\xa1\xda\x00\x90\x26\xa1\x16\x7d\x49\x96\x8e\x3c\xc1\xa9\x89\x5c\x75\x62\x9a\xd4\x84\x79\x9f\x76\x8b\x57\x2f\x7c\x97\x13\x5a\xcb\xfc\xf3\xc4\xb7\xba\xd0\xc4\x84\xcb\xe5\xa9\xd5\x7c\x7f\x23\xd0\x3b\x72\x9c\xb9\x1d\x0a\x4c\x73\xdb\x6a\x27\x72\x55\x93\xb4\xb3\xf9\xce\x33\x88\x47\x42\x27\x96\x50\x85\x77\x2c\x8b\xc6\x53\x82\xbf\x2e\x9a\xd1\x83\x22\x8f\x57\x9b\x57\x29\xc6\xc9\xda\x02\x06\x65\x06\x6b\x07\x14\x78\x09\x25\x8c\x26\xc5\xb9\x89\xe9\x52\xb3\x37\xaa\xb5\xcb\x73\xa0\xf6\xad\x9d\x9d\xfd\x09\xb1\x5b\x4a\x96\xcd\x60\xda\xa4\x98\xc5\xe0\xe4\x90\x00\x23\xb6\xfa\x29\x4c\x49\x4a\xfd\xdd\xc2\x17\x4a\x12\x85\x48\xfd\xa0\x9f\x4b\x43\x30\xaa\x6d\x60\xb6\xe7\xbc\x1f\xc3\x79\x8a\x75\xe8\x3b\xa4\xa5\xea\x69\x08\x11\xfe\x0a\x81\xd7\x36\xc1\xd9\x21\xe7\x20\xae\xc9\x0b\xcc\x6c\x17\xc2\x9b\x0f\xbd\xbe\xde\x4f\xb4\xd5\x2f\x1c\x44\x44\x2a\x14\x62\x61\x9e\xd1\x55\x2e\x1e\x17\xd5\x07\x1b\xe8\xbc\x18\xbc\x81\x75\x12\xf1\xd4\x5e\xf6\xf8\x83\x3c\x79\xf5\xad\xd1\x20\x5b\x13\xcf\x76\x38\x7c\xaf\x26\x9c\xad\x2b\xaa\xea\x73\xed\xc7\x20\xca\x47\x33\xd3\x8b\x36\x5c\xf6\x9a\x97\x0f\x22\xbf\x1e\xef\xae\xde\x19\x1a\x2b\x61\xc4\x68\x3d\xa7\x13\x66\xf9\x9d\xd9\x0c\x52\x15\xf6\x9d\x70\xb3\x4e\x73\x56\x52\x0d\x60\x46\xa9\xab\x00\xcf\x2e\x19\x4e\x75\xb5\x58\x03\x2c\x18\x22\x3b\xd3\x7e\xac\x75\x18\xa0\x3e\x32\x10\xc9\x68\xe1\x08\x18\x70\x16\x56\x1a\xd3\x32\xd5\xb0\x0b\xc5\x12\x81\xe0\x4a\xe7\x33\xdf\x53\x86\x49\x5a\x6c\x41\x7b\xaa\x40\xd6\x78\x40\x35\x94\x7f\x0f\xbb\x28\x1e\x17\x58\x9b\x33\x1c\x54\x7d\x9a\xc2\x21\x4e\x4c\xca\x96\x39\x38\x3f\x5e\x03\xae\x75\xfa\x7a\x3f\x27\xf2\xce\x66\xa3\x3a\xba\x42\xa9\xd5\x59\x37\x89\x29\x4c\x4a\xe1\x2a\x00\x9e\x3f\x0c\xa2\xee\x84\x76\xab\x13\x56\x0d\x28\xab\xe1\x05\x18\x33\xa7\x68\x68\xdf\x20\xee\x32\x2a\x0a\x0a\x29\x3d\xae\x4d\x9e\xeb\x5c\x4c\xa5\xbd\x09\xe7\xd4\xfd\xcf\x95\xc2\x28\x97\x4b\xd7\xba\x22\xe2\x50\x55\x5a\x39\x26\x4f\x19\x72\xe5\xc8\xd8\x9e\x76\x87\x15\xc9\x0e\xfd\x69\xd5\x15\x11\x36\x72\xf2\xc2\x2b\x88\x01\x8e\x5e\x25\xbe\xc8\x0d\xd1\x5c\x98\x77\x12\x86\x8e\xd1\x83\x75\x40\x16\x5e\xf8\x10\xcf\x21\xc4\x32\x5a\x46\xe8\xa3\x92\xcf\x39\x5d\xc4\x55\xec\x65\xda\x62\xe6\xef\x0b\xc4\x20\x0e\x44\x48\xbe\x21\x8b\x47\x16\x40\xbc\x9f\x62\x4e\xbf\x1f\x91\xba\x64\x53\xd9\x6e\x3e\xd7\xa5\x4f\x9b\xe0\x6f\x60\xeb\xb6\xc8\x87\x74\xbb\xb4\x5b\xa8\xc2\x1f\x08\xd5\x4a\xe7\xd2\x90\x5d\x8b\x76\xa9\x60\x14\xc9\x6c\xf3\x5e\xb3\x51\xfe\xf7\xe6\x55\xa8\xbc\x54\x64\xaa\x8c\x10\x53\x92\x00\x32\xec\xd7\x0b\xaa\x13\x54\x79\x0d\x12\xef\x0d\xca\x9f\xdb\x56\x68\x6c\x30\xb0\xa4\x4a\xa4\x82\x76\xf9\x6f\x3f\x39\x5e\x0b\x32\xef\x1a\x3e\x4b\xc1\x40\x3d\xb1\x97\x0d\x0f\x5a\x34\xad\x76\xc7\x6f\xa9\x87\x00\x79\x05\x33\x34\x61\xe6\xbd\x48\x69\xd4\x10\x6c\x8b\xb0\x54\xae\x77\xcb\x3d\xf9\x9e\x9e\x36\x8f\x5d\xba\xa0\x86\xe8\x33\xc1\x5d\xef\xb0\x38\xd3\x06\xf0\x8f\x70\x4d\xd6\x9b\xcf\x00\xbf\x88\x7f\x1b\x49\x29\x4d\x89\x29\xdb\x26\xc4\x59\x95\x8f\x03\x4a\x7d\xdb\xdd\x1e\x8b\x15\x79\x22\xdd\x4c\x33\xd8\x1f\x24\xb7\x60\x43\xa2\x03\xac\x7b\xaf\x63\x82\xff\x6e\xb2\xcd\x75\xbe\x75\x18\xc2\x85\xe4\xa1\x09\xa3\xd2\xac\xa2\x4c\x22\xd6\x89\xfc\x2d\x08\x81\x25\xd9\x55\xeb\x56\x38\xb4\x20\xf6\xa0\x91\x7a\xa3\x58\x2e\x3b\x67\x3d\xdc\x3d\x83\x10\xd8\x2a\xd7\xa0\xe2\xc7\xf3\x96\xe6\xd1\x43\x2f\xe1\x4f\x47\x5e\x7d\x14\xec\xf2\x60\xd4\xd6\xa2\x76\x80\xdc\x93\xa8\x8e\x7a\xba\xb6\x23\x36\xb9\x86\xe8\x74\xbc\x2f\xf5\xb8\x26\xd4\x92\xa1\x51\xe6\x4c\xa2\xfe\x12\xd3\xcf\x05\x00\x6a\x31\xc2\x41\xb0\xf8\xd4\x1c\x71\x54\x2b\xb4\x74\xc8\x0c\x74\x5d\xc1\x07\x1a\x75\x59\x38\xce\x8b\x47\x3a\xf4\x0a\xa4\xdb\xbc\x42\xc4\xc2\x12\xc8\xac\x76\xce\x6c\xce\xab\xae\xae\x9b\x11\x66\x70\xa2\x57\xba\x9d\xde\x07\x75\x91\x2a\x25\x4c\x63\x97\x65\x50\xb8\x8e\x2c\x65\xc8\x4c\x45\x3f\x84\x26\x2c\x7b\xcd\x8a\xe7\x78\x2c\x3d\x21\x68\xb3\xf4\x13\x14\x22\xf4\x84\xe0\x12\x52\x88\x49\x30\xd9\x60\xab\xa9\x65\x8b\x06\xc5\x52\x94\x07\x08\x62\x1c\xe1\x43\x32\x19\xf3\x7e\xc0\x29\x8f\xae\x16\x62\x0e\x63\x77\x51\x41\x25\xcb\x63\x82\xb8\xa4\xb7\x1e\xb5\x98\xee\xf9\xf0\xa9\xd8\xac\xca\x5f\xd7\xd9\x4f\x2c\xce\xa9\x6c\x27\x05\x70\x1f\x15\x43\xb8\x69\xa3\x51\x1f\x15\x76\x5e\x10\xce\x3c\x62\x1f\x6b\x75\x61\xcd\x54\x0a\x5f\xe8\x36\x61\x1b\x79\x86\x70\x2a\x1c\x02\x95\xa1\x0d\x2b\x68\x9b\x91\x3a\x3b\xcc\x7b\xf8\x49\x24\xa0\xee\x32\x43\x94\x6b\x3e\x43\xe0\x29\x28\xea\x7a\x53\x5a\x2b\x60\xa3\xd8\x87\x88\x78\x58\x95\xc7\xd1\x1b\x94\x7a\x00\xc1\x0b\xc7\x3f\xfc\x11\x86\x24\xcf\x20\x34\xeb\x91\x29\xc4\xe4\xdb\x07\x46\x18\x5f\x0e\xd5\x1f\x0c\xd8\x53\xbf\x8c\x29\x16\xa2\x8f\x0a\xc6\xa0\x81\xb3\x05\x2d\x7c\xc4\x27\x22\x88\x0a\x3d\xc3\xa9\x34\xe1\x8f\x27\x4d\x0f\xc0\x7c\x13\xcc\xcb\x18\xff\xc7\x80\x7d\xb9\x88\x7d\xb0\xd0\xc8\x92\x35\x92\x48\x95\x2b\x65\x75\x96\x99\xea\x5e\xee\xe3\xfc\x81\x04\x17\x6b\x2b\x5b\x10\xce\x20\x9b\xd4\xf1\x72\x52\x1d\x11\x8b\x62\x3b\xc5\xac\x94\x1c\x9e\x3d\x6b\x39\x03\xe5\xb4\x73\x1e\x5b\x12\x98\x1b\xf3\x5d\x71\xaa\x8a\x15\x12\xea\x88\x3b\x1a\x8d\x09\x28\x91\xa1\x58\x29\x45\x4f\xb9\x30\x0e\x20\xb9\xae\x23\xe8\x80\x10\xc1\x38\x6b\x3f\x2d\x27\x22\x65\x05\x27\x65\x18\xa1\xb8\x60\x5f\x52\x4e\x06\x3f\x27\xf5\xf8\x8b\x6e\x02\x34\xc0\xf6\xcd\xcf\x04\x91\x9d\x9b\x3c\x89\xbc\x5b\x93\xc8\x73\xd2\xce\xc3\x11\x99\x21\x6b\x8d\x2e\x71\x1b\x48\x82\x22\xcd\x42\xa6\x66\xf7\xa5\xf4\xc4\x46\x0b\x04\x59\xba\x70\xf8\xf8\x4a\x3f\xbb\xc5\x36\x20\x9c\x18\xe8\x5c\x8b\x62\xf1\x06\xe5\xb8\x8a\x9d\xfa\xdf\xae\x87\xd4\xef\xc6\x7f\xbe\xf0\x88\x26\xec\x20\xb8\x22\x7b\x50\xcf\x0d\xe3\xe9\x33\x26\xf1\xbe\x3c\x78\x53\x0d\x3c\x51\x35\xef\x9e\xf5\x45\x29\xb8\x3f\x77\xe5\xd2\xb2\x3a\xc9\xa8\x35\x97\x98\xcd\x0a\x7b\x96\xd1\x2d\x96\x48\x4d\xe6\xc1\x36\x00\xfc\xf1\xa0\xa8\x2e\x71\x3c\x53\x79\x98\x30\xe7\x45\xfa\x2b\x79\x06\xdc\x22\x49\x7b\x00\x46\x25\xd8\xeb\x6d\x5f\xff\xd9\x65\xd8\x6a\x9e\xc3\x45\x4d\x53\xec\xf5\x2c\x6d\x49\xe0\x28\xb5\xa9\xaf\x0a\xc1\x8f\xe1\xce\x78\x4c\x8b\x02\xa9\x03\xc0\xac\xb1\x05\x4f\xc1\x5e\xea\xb6\x4f\x96\xae\x02\x03\xa4\xdb\x27\xb0\xad\xdf\x4a\x47\xe8\xf7\xe8\x2d\xce\xef\x2d\x87\x13\xe3\x61\x0a\xc6\xef\x65\xae\x06\xa6\x63\x92\x19\x59\xfa\x69\x58\xe9\x22\x64\x0e\xf5\xde\x06\x21\x20\xf7\x20\x4f\x72\x67\x76\x00\xc4\x02\x26\xa9\x3e\x37\x4d\xdc\xf4\xbb\x9a\x0a\xfd\xa8\xed\x25\x7d\xb5\xa2\x10\x1d\x3e\x77\x56\xd3\x5f\xfc\x2f\x59\x7e\xfd\xbb\x45\x3e\xc7\x10\xb0\xa1\x06\xd6\x88\x0f\x7c\x1b\x1b\x7e\xb7\x8b\xfa\xef\x7a\xda\x82\x9a\x9a\x04\x11\x06\xf5\xbf\x62\xf5\x85\xd9\xc4\x89\x41\x34\x55\x61\x45\xa7\xc8\xbd\xa5\x1b\x53\x06\x05\x4b\xdc\xe1\x18\xc8\x14\xee\xe0\x0b\x44\x1f\x26\x04\x62\xeb\x3d\xfa\x13\x06\x56\x0b\xf7\xc7\xa3\xc6\x8a\xf3\xe2\xd3\x8e\x4a\x5a\x6f\x02\x61\x10\x22\xce\x8a\x6f\xe8\xfb\xac\x51\x1f\xb3\xb9\x29\x20\x38\x3e\xd8\xc3\x24\x4e\x6f\x32\x10\xc0\xba\x38\x1b\x09\xe2\x3e\x94\x75\x28\x61\x29\x2b\xfe\x43\xd1\x71\x57\xb9\x90\x71\xae\xe9\x45\x10\xef\x18\xa0\xc4\xc1\x08\xbf\xf0\xc9\xa2\x2e\x71\x72\x8d\x29\x59\xd1\xe6\x9c\xdc\x7e\x6d\xa7\x80\x6a\xa3\x63\x88\x54\xb4\x59\x6b\x92\x32\x6f\x30\x96\x16\xba\x4a\xbd\x66\x4c\x6d\x75\x6a\x85\x33\x41\xce\x34\x3c\x0e\x22\x42\x20\x3b\x0b\x6b\xe7\xfe\x02\xde\x15\x9f\xe1\xc3\xf4\x62\xe7\x58\xcb\x71\x8e\x50\x29\x2e\x90\xbe\x22\x14\x3f\x80\x11\xeb\xf8\xc3\xab\x88\xc9\xe2\x6c\xc4\xbc\xfa\x4f\xc6\xfb\x44\x7b\x4c\xaf\x51\x40\x17\xef\x83\x71\xd7\xd0\x50\x49\x5b\xb8\x75\x90\xbd\x26\x21\x84\x2f\x84\x47\xac\x0e\x3c\x5f\x12\xd2\x53\x3d\x91\x3b\x9e\x94\x94\xe9\xa9\x9f\x08\xf8\x01\x85\x68\xa1\x16\x99\x10\x43\x4b\xcd\xac\xc2\x44\x3c\x28\x6d\x09\x56\x22\x08\x56\xd6\x3b\x80\x5a\xcf\x0a\x91\x4f\xf6\x53\xc8\xfc\x8b\x20\x25\x35\xe4\x80\xcc\x14\x53\xa5\x4d\x87\x5f\xf1\x00\x74\x41\xf2\x30\x95\x5c\x82\xee\x61\x3a\xdd\x40\x62\x4f\xbc\x92\xac\xd4\xa6\x9a\x1d\xb0\xba\x3f\xca\x91\xf1\xc5\x5e\x5e\x42\xe8\xb8\x88\x06\x4d\x8b\xe1\x52\x99\xbb\xc9\x38\x37\x66\x23\x87\x67\x29\x69\x20\x7c\xe2\x61\x72\x2d\x89\xed\x2c\x6c\x91\x47\x96\x05\xeb\x5f\xca\x92\x64\x12\x55\x6f\x67\x34\x56\x99\x49\xa0\x51\x7d\x6a\x41\x06\x04\x77\xd7\x52\xa4\xc8\xa0\x2f\xc8\x8e\xb3\x71\xf0\x04\x4d\x83\x9d\x04\x40\x14\x1b\xf9\xae\x68\x2d\x81\x09\x6a\x95\xf7\xf2\x21\x90\xb6\x14\x20\x5e\xb1\x0f\x94\x35\x3e\x29\x73\x40\x08\x5b\x80\x0b\xa3\x84\x54\x14\xec\x47\x7a\x08\x60\x69\xf9\xbc\x90\x07\x8e\x58\x08\x17\x4f\x90\x5c\x09\x6b\x57\x52\x06\xef\x61\x1a\x06\x42\x3d\x25\x30\x57\xf7\x50\x5a\x0f\xc2\x8c\x20\x2d\x36\xa4\xa6\x54\x6b\x4c\x32\x2e\x13\x3a\x8b\x4a\x37\x4b\x98\xd0\xb4\x32\x0f\x89\x26\x95\xd0\x56\xe4\xa2\x01\x66\xed\x27\x5f\xea\xb6\x63\x44\xec\xd0\x80\x08\x21\xda\x28\x24\x36\x25\x6f\xf0\x64\x97\x74\x93\x5c\xe3\x11\xd1\x12\x1c\xfe\xbb\x97\x98\x05\x7c\x80\xa5\xe6\x02\x8b\xb7\xf4\xaa\x92\x4b\xd5\xa9\x6d\x86\x45\x78\x7f\x88\xb7\x47\xbe\xf2\x20\x26\xaf\x07\x47\x79\xfc\xa0\xfc\xa8\x60\xf2\xfe\xe3\x29\x6b\x21\x59\x5d\x61\xae\x57\x73\xd8\x75\x4d\x0b\x8b\xea\xbd\x91\xc9\x74\x09\x6f\x11\xea\xab\x19\x15\x23\x2c\xc4\x23\x7b\x59\x3e\x5e\x99\x68\x47\x86\xdb\xf5\x65\x8c\x25\xe4\x07\x1e\xd3\xc5\x0c\xa7\xa1\xd5\x0a\xb3\x26\x13\x9d\x25\x03\x97\x52\x07\x62\x4f\xdf\xf9\xa5\x54\x01\xd2\x4a\xa6\x27\x29\xa8\xd0\xa1\x63\xb0\x20\x86\xcf\xe9\x5e\xa1\x62\xab\x71\x02\x5d\x13\x37\x49\x06\xdb\x78\x1d\x2c\x71\x8e\x54\xdb\x58\x10\xd0\xc4\x65\x1f\x83\xa5\x33\x83\x47\xcc\x05\xe0\x96\x39\x0e\xe8\x54\x87\x8b\xf2\x82\x4b\x61\xa0\x2c\x80\x02\xc8\x37\x77\xe6\x95\xa7\x7d\x3f\x4e\x0d\xb8\xf9\x48\x45\x61\x93\xec\x89\xaf\x77\xc1\x94\xe0\x1f\x75\xc1\xca\x3b\x14\x58\x99\x15\xb4\x4d\x50\x6e\x0e\x68\x66\x89\xf4\x19\x90\x22\xa9\x2a\x69\xa4\xea\xba\x66\xa8\x74\xfa\x25\xfd\xce\x20\x77\x73\xa2\x57\xfc\xe7\xc5\x2b\x3b\x97\xd2\xe2\x68\x26\x73\x50\xe7\x9d\x77\xf8\xa4\xb4\x3f\x56\x28\xfc\x29\x91\x8a\xc2\x13\x8d\xea\x1e\x1b\x03\x89\xee\x61\x41\x41\x49\x65\x36\x95\xf8\xdd\x91\x14\x96\x05\x94\x9c\x86\xa3\x19\x2e\xae\x2a\x3e\xb8\x39\x3a\x3b\xc8\xb8\x2e\x15\xfa\x18\x8e\xc8\x58\x65\x84\xe1\x17\x60\x1d\xa3\xaa\x2b\x83\x72\xc4\xac\xb8\x8a\xf1\x41\xef\x0a\x9e\xdc\x40\x2f\x5b\x7a\x50\x01\xec\xcc\xc1\xec\xfd\x1f\xa0\xab\xec\x2b\xb6\x7a\x59\x1b\x7a\x62\xed\xff\x7a\x7f\x40\x24\x03\xd5\xe8\x15\xb5\xd2\x80\x15\x42\x0f\xaf\x00\xbf\x4d\x00\x81\x1f\x10\x30\x1e\xd7\x1f\x9d\x62\x1d\x1b\x3a\x80\xb3\x67\xcd\xd5\x00\xf8\x37\x01\x43\xe2\x89\x2d\x13\x6e\x47\xca\x2b\xbb\x05\x55\x16\x79\x0c\xa6\xed\x2c\xf9\xcf\xd6\xe1\xc1\x7f\x2b\xf1\x2d\xb6\xb8\xb6\xcf\x9d\x00\x3b\x42\x66\x45\xe8\x65\x7f\xdf\x98\x83\x92\x47\xe9\x42\x17\x80\x7f\x8c\xe2\x41\xce\x18\xa5\x14\x9e\x40\x05\x61\x44\x4d\x4f\x7e\xee\xda\xa2\xad\x0b\x4b\xd6\x13\x08\xe4\x3d\x57\x7e\x78\xee\x59\x09\x29\x8e\x1f\xe6\x4d\x88\x12\xf4\x3d\x76\x9f\x64\x42\xc3\x39\x20\x2c\x4f\x58\xe4\x25\xf3\x72\xde\x7a\x01\x1b\x1b\xcb\x4e\x14\xb5\x5b\x55\x45\x2f\x6d\xc5\xa2\x41\x3a\x25\x33\x57\xd7\x02\x0c\x7c\x7e\xd0\x51\x19\x32\xd9\xe4\x94\x4c\x83\x12\xfc\x85\x06\x3b\x25\x88\x10\x51\x4b\x58\x51\xec\x43\x0c\x37\x92\x6e\x9c\x00\xc9\xad\x56\xc4\xeb\xf0\x2b\xb1\x89\x01\x55\xb7\x0e\xf1\x86\xbf\xc3\x02\x22\x02\x0a\x50\xd3\xb8\x62\xd2\x13\x27\xed\xe4\x9d\xf5\x08\x83\xa2\x0d\x85\xb6\x29\xc3\x86\xa1\xe3\x63\x3d\x0b\xb8\xc1\x12\x9a\x25\x42\xf7\xb0\xa6\xcb\xd4\xf4\xca\xfb\x5e\x40\x15\x06\x2b\x8b\xd9\xf7\x5d\x4b\x46\xd1\x24\x58\x18\x31\x64\x8d\xec\x1a\xdc\xcf\x44\xde\x12\x5c\x50\xae\xd9\x87\x11\x2b\xe4\xff\xea\x32\x9d\x3a\x14\xb8\x2f\x14\x95\x4e\x5e\x82\x5a\x13\xd0\x93\xd0\x05\x01\xd6\xc0\x13\x2b\x89\xba\x03\x98\xe2\x6a\x26\xc8\x5e\x29\xe5\xba\xd1\x11\x9b\x09\x28\xf0\x94\xea\xef\x02\x5a\x92\x68\x8a\x2a\x90\xe2\x16\x61\xfb\x01\x22\x79\x8c\x1c\x4b\x2e\x4c\x2c\x51\xe0\x68\x04\x91\xcb\x53\x7f\x21\x7d\x3e\xe3\xa4\x07\x92\x0b\x00\x6c\xed\x04\xac\x01\x82\x57\xe2\xf8\x59\x33\xb3\xd8\x42\x79\xcf\x87\xe3\x0c\x89\x85\xa6\xe0\x58\x4f\x53\x75\x99\x9f\xd2\x5c\x73\x94\xc7\x55\x79\x39\x6c\xa8\x80\x9d\x46\x42\xd8\x7c\x83\x15\x96\x0c\x58\x44\x89\xfc\x9f\xe7\xd9\x4c\x42\xd3\xf6\x72\x81\x6b\x6f\x5f\x97\x06\xa0\xef\x31\x15\x2b\x52\xa3\x63\x52\xe2\x6d\x76\x62\xf8\x8e\x4c\x49\x51\xaf\x15\x4b\x34\x95\x37\xa9\xa5\xc0\x26\x4b\x4c\x52\x27\x28\x37\xfd\xb2\x54\x4d\x03\x56\x31\xc7\x0a\x06\xf7\x4f\x89\xca\x2b\x2e\x42\x4a\x3a\x21\x71\x0d\xe1\x7a\x0c\x49\x3e\x65\x86\xb1\x96\x3f\x9e\x72\x49\xb5\x60\x65\x10\x0e\x9c\x5c\x8d\x95\x22\x90\xf8\x5f\xb2\x45\x70\xa9\x48\xcb\x6f\x34\xc2\x06\x2a\xa3\xe0\x05\x65\xa1\x46\xa0\x2a\x54\x39\x6c\x06\x47\x38\x4a\xc8\xa9\x11\x54\x57\x05\x18\x39\x6d\x43\x92\xf7\x3a\x4e\x70\xd0\x3a\xcd\xa4\xbb\xce\x35\x47\x45\x3b\x70\xd1\x59\x01\x91\x4e\xbe\x91\x7a\x03\x2a\x4f\x68\x75\xe0\xe2\x93\x3b\x84\x91\xa6\xfd\x74\xcf\x45\x4d\x68\x51\x31\xf6\x2d\x6f\xfa\xc1\x95\x1a\x78\xd2\x19\x6d\xdf\xcc\x5b\x1c\x98\xc9\xf6\xaf\xd8\xf7\x90\xd8\xc4\xc6\x8d\xbb\x81\xdc\xf0\x31\x01\xe7\x42\xec\x19\xca\xd2\x29\x2e\x66\xf4\x6b\x70\x95\xe9\x20\xbb\x6a\x49\xb4\x74\xe4\xb8\x36\x3c\xfb\x3a\xc7\x45\x3d\xa7\xc4\xa0\x44\x2b\x54\x8c\x88\xc3\xdb\xd8\x4b\x97\x28\xc0\xe3\xc4\xf0\x85\xc8\xbf\x22\x64\x72\xa1\x25\xa4\x08\x16\xd3\x84\x3b\x8d\x59\xaa\x38\x49\x9a\x80\xc7\x96\x0d\x7c\x5b\x62\xae\x16\xe5\x4c\x5a\xe8\x62\x10\x2d\x64\x3e\x24\x5e\xe9\xe0\x83\xa1\x43\x10\x57\xd7\x9d\x74\x3d\x4f\x2c\x6d\x82\x10\xec\x68\x72\xb3\xdc\x11\x0c\x64\xbd\x32\x58\xfb\xe2\xf1\xe6\xc6\x40\x71\xdc\x0d\xa1\x26\xb2\x57\x9e\x1c\x07\x14\x73\xe4\x2e\x19\x5d\xa4\x8c\x6b\x95\x44\x7d\x3a\x40\x57\xa3\x31\x5c\xbc\x26\xa3\x57\x20\x85\x01\xf7\xbb\x8d\xf3\x12\xeb\x62\x71\x2a\x4b\x99\x63\x7c\x41\xec\x3b\x2a\xc4\x26\x42\x0d\xed\xb1\xc3\x6e\xa6\x7a\x8c\xad\x8a\x86\x7e\xc6\x91\xc4\xf0\x09\x4c\xe8\x78\xaa\x68\x82\xd6\x59\xd4\x93\x6e\x04\xdf\x49\xb6\x6f\xfe\x8e\x15\x80\x8a\x36\x4f\x54\x9d\x93\x4f\x00\x89\xf1\x46\x39\xb9\x78\x3f\xb0\x74\x1e\x73\x5a\xba\x05\x9a\xa3\x24\x56\x2f\x9b\x54\xdc\x51\xb7\x34\x47\x6e\xd6\xd1\x92\xa9\x0b\x2f\x2e\xbf\xdc\x8c\x63\xd6\xa3\xdf\x28\x26\xf5\x11\xa2\x90\x64\x4d\xa1\xe5\xaa\x94\x07\x03\x84\xe6\xdf\xb4\xbc\x2d\xb6\x0d\x89\x0f\xd2\x1a\x1e\x41\xe9\xf4\x65\x18\xb9\x3f\xc0\x63\x27\x87\xe9\xc9\x52\xf0\xc0\x30\x94\xfd\x9c\x95\x81\x54\x30\x3e\xaa\x93\xf8\x3f\xb5\xb3\xaa\x5c\x59\x58\xa0\xb1\xb4\x73\x6c\x17\xd4\xef\x08\x8a\x0f\x52\xa2\x33\xc6\xb1\x5d\x3d\xe9\x20\x12\xfc\x4f\x1b\x30\x05\x91\x12\x98\xef\x87\x8e\x9e\x1b\xc8\x99\x6a\x77\x26\xcb\xc4\xe7\x06\x64\xe3\x62\x1d\xb4\xd6\x3d\x6b\xb4\x24\xff\x79\x1f\x7a\x0e\xa7\x4f\x5d\x4e\x6c\x28\xfc\xeb\x3f\xe0\xa1\xd7\x1d\x4e\x41\xfc\x75\x38\xbf\x5f\x43\xd1\x71\x8d\xa9\x93\x87\x42\xda\xd1\xe3\x8e\x1e\x8e\x81\xb8\x7d\x08\xdf\x16\x6c\x09\xf1\x56\x5f\x96\x72\xf4\x19\xa3\x76\x12\x4e\xe2\xce\xf5\xe4\x80\x73\x2f\x73\xdb\x42\x6c\x2a\xec\x2a\xca\xf9\xd4\xd9\xee\x87\x8d\xbc\x92\xae\x7a\x19\xa8\x74\xc4\x6a\x4b\x7a\xfd\x54\xcc\x96\x36\xa0\xf0\xf8\x10\x9e\xf5\xdd\x55\x19\xaa\x38\xe7\x7a\xb8\xa5\xb1\xbe\x11\xc9\xf7\x79\xdb\xe0\x8e\x95\x88\xb7\x21\x55\x07\x81\x57\xb0\x2a\xc2\x19\x2f\xc0\xf3\x0a\xc5\x4e\x94\x88\xd8\xfd\x09\x74\xc1\xe6\x57\x75\x7c\x85\x3d\x40\x4c\xe1\xaf\xbd\x88\xdf\xda\x21\xf2\x42\x82\x90\x0a\x0c\x91\x70\x4b\x19\xaa\x2a\x8b\x17\x88\xb4\x98\x62\xa4\x2f\xba\x62\x6c\x11\x9c\x7f\xb7\x42\x88\x55\x80\x5f\x1b\x90\xfd\x41\x13\xfd\x03\xc5\x05\x53\x25\x5c\x97\x1b\xaa\xcb\x70\xca\xee\x95\xda\xcc\x80\x8d\x6a\xad\xb8\x0a\xc6\xc6\x80\xb7\x9a\x5b\x65\x8d\xc3\x8a\x9c\x37\x04\x88\x5d\x12\x48\x2b\x2d\x05\xd5\x45\x7e\x23\x7d\x29\x62\xcf\x31\xb5\x27\x55\x6e\x52\x47\x12\x32\xbc\x8a\xc3\x44\xd1\xb8\xa7\xb8\x4d\x10\x1f\x4a\x92\x09\xb1\xe4\xca\xc8\x48\xf4\xd9\x00\x6e\xc0\x70\x10\x33\xa4\x9c\xab\xe1\xfd\x19\x01\x86\x24\x0a\x4a\xe4\xbb\xd2\x39\xe0\x26\x7a\x4b\xd4\x02\x4c\x90\x76\x9a\xaf\x57\x86\x65\xaf\x0c\xd4\x4f\x22\x16\x26\xa6\x9a\x80\xfb\x84\xd3\x24\xda\x57\x21\x16\x93\xe7\xd2\xa7\x78\xde\xdd\x82\x71\x67\x4d\x54\x10\xac\x9e\x55\x8e\x13\xfc\x54\x2a\x7d\x5a\xbb\xbe\x06\x73\x7c\x11\x62\x8e\xbc\x0d\x35\x04\x43\xe2\x72\x89\xde\xe7\x33\xda\xde\x17\x07\x03\x14\xd3\xcc\x48\xed\x4e\x0e\x06\x30\xa8\xbe\x70\x28\x0e\x0e\x07\x21\xef\x54\x18\x0f\x96\x24\x40\x1f\x64\xb2\xab\x14\x32\x4a\x32\xf9\x6b\x84\x83\x84\x6b\xa6\x4b\x28\x38\xfe\x23\x9b\x2a\xf0\x25\xf2\x68\x24\xe4\xd6\xe0\xfc\x03\x07\x71\x1d\x1c\xc9\x85\xc5\xa8\x8f\x9d\xeb\x63\xb7\x23\x9a\x37\x00\x7a\x08\xf3\x4e\x2e\x44\x39\x79\x00\x8d\x6c\x08\x19\xd2\x6f\x8a\x90\xdf\x78\x79\x45\xb4\x81\x1f\xfc\x80\x84\x21\x1c\x37\xc8\xc0\x71\x02\x21\x1f\x08\x85\x9d\x44\x38\x88\xb2\x52\x60\x1c\xed\x0e\x45\x38\x9e\xb6\x68\x19\x66\x83\x08\xe1\x79\x18\x0d\x22\x6f\xce\x20\x01\xdf\x21\xd4\x83\x93\x25\x06\xb9\xb8\x6f\x1e\xed\x82\x02\x4f\x41\x1f\x88\xab\x49\xe0\x32\xc8\xb5\xe4\xdf\xd8\x6f\x26\xd5\xc2\xe5\x95\x62\x80\x8d\xd9\x30\x89\xd2\x04\x00\x09\x74\x92\xd9\x64\x74\x75\x7e\xa8\xee\x21\x42\x8e\x4b\x60\xc5\x56\x58\x54\x3f\xc1\x63\x3b\x6c\xcf\x16\x8b\xbb\xd3\x65\xc9\x63\x03\xbe\x65\xdf\x0a\x08\x45\xc8\x34\xbd\xa4\x6f\x03\x7e\xde\xb3\x81\x0d\xf8\xf8\x1f\x69\xfb\xc9\x4f\x40\x4d\x03\x25\x34\x10\xe6\x52\xa4\x05\x0a\x8c\x3f\x22\x97\xc6\x13\x61\xa5\x99\xfa\x63\x54\xe6\xc0\x07\xa0\x14\xb7\xc8\xa7\xd6\xb0\xed\x7b\x61\x23\xf9\x7c\xf3\x49\x19\x9a\x7f\x99\xc3\x20\xf6\x77\x06\x1a\x1c\xb0\x17\x4f\x81\x1f\x03\x67\xd6\x1a\x31\xf0\xf9\xfb\x01\x78\x14\xda\x4e\x2d\x24\xa4\x30\x61\x20\xcc\x69\x80\xb0\x17\x48\xb9\x0c\x8f\xa2\xc2\xf5\x9c\x51\xc4\x84\x6b\x02\x8d\x07\xb6\x16\x76\x2e\xb1\x1e\x79\x9a\x05\x7d\xb9\xff\x05\x94\x36\xe9\x1b\x44\xd7\x63\xab\x3b\xad\xd1\x33\x95\xb7\x77\xe1\x6c\xf5\xef\x0f\xa4\x57\xa0\xde\x12\xb2\xeb\x44\x5c\xfe\xc0\x23\x23\x25\x1b\xc8\x8e\x77\x94\x9f\x53\x4c\x5f\x4c\x11\x92\x64\x66\x1f\xe0\xe5\x40\x60\xcd\x0a\x15\xb6\x47\xa7\x07\x60\x47\x46\xd9\x15\xb6\x4d\x94\x2b\x97\x2a\x65\x1e\x1e\x2a\xd3\xe9\x2e\xaf\x8c\x3a\x93\xfa\x09\x4d\x3a\xd0\x95\xa9\x88\xd0\x4e\x7c\x15\x27\x85\x0c\x18\x3c\x1c\x29\xf6\x8d\x38\x50\xca\x25\x49\xaa\x56\x03\x64\x57\x2c\xa3\xd9\x02\xb1\xfa\x1a\x05\x0c\x97\xcb\xcd\xbb\xde\xfd\x66\xd6\xda\xbf\x72\xe8\x18\x9f\x78\xac\xaa\x07\xf8\x43\x87\x99\xc3\x80\x78\x34\x3d\xf5\x04\xe7\x95\x16\x60\xe2\x15\xb3\xf9\xea\x31\x9c\x92\x8f\xb3\xfb\x40\x0b\xad\x7d\xd4\x90\x7b\x16\xb6\x08\x6b\xba\x00\x4e\xe8\x2b\x91\x58\xc4\x0e\x5b\xb5\x5e\x1b\x3d\xdc\x8c\x37\x12\x1d\xf0\xc3\x80\xc7\x80\x70\xb1\xf1\xe6\xb1\x13\x84\x12\x47\xcc\xbb\x79\x52\xc3\x48\xd9\x08\xad\x64\x2f\x37\xd1\xec\x74\x8b\x06\x5c\x5b\x35\x1e\xc2\x3c\xfc\x24\xbd\xb3\x7f\x2c\x65\x5a\x01\x91\xa7\x8e\x86\xb2\xd5\x52\x10\xbb\xe9\x86\xdd\x24\x9c\x9d\x7e\x75\x4c\x96\x26\xf8\x5f\xea\x28\x96\xc3\x5d\x57\x70\xbd\x39\x1c\x71\x1f\xec\xf7\x48\x47\x5b\x2e\x40\xcf\xd2\xc1\x88\xdf\xc5\x5a\x67\x58\x37\x02\xf8\x36\xc5\xb2\xcb\x19\x96\x2b\x6a\xa1\x39\x0b\x45\x51\xe5\xfb\x8a\x80\x11\xb4\xcf\xcc\xe2\x50\xca\x3b\xd3\x0f\xe1\xd6\x6e\x2c\x54\x99\xd1\xf7\x47\x57\x1f\xe9\x50\xae\x2c\xa9\xea\x4d\x30\x4c\x24\x3f\x50\x92\x16\x08\x02\x19\x97\x04\xc7\xe4\xcc\x58\x7d\x16\x8c\x66\xd2\x24\x8f\xa6\xc7\xe9\x88\x08\x93\xbf\x6a\xb9\xaf\x2b\xe1\x6e\xdb\x1c\x26\x24\x77\x97\x54\x20\xbd\x97\x55\x31\xd7\xb1\x4f\x6b\x89\x58\xa4\xeb\x13\x48\x9c\x0f\x6f\x50\x4e\x6c\x07\x4c\x38\x87\xe8\x61\x95\x3a\xe3\x52\x76\x78\x54\x22\xa6\x46\xe4\x05\x31\x0b\x26\x3a\xe3\xf0\xe8\x73\xf6\x3a\xc3\x3a\x71\xf3\xbf\x04\x96\xe0\xcf\xaf\x9c\x46\xda\x62\x3c\xa2\xf5\xd2\xac\xfe\xed\x6b\x65\x57\xf5\x2e\xba\x70\x2e\x64\x89\x4e\xe8\x28\x2f\x55\x38\x25\xac\x8d\x89\x80\x28\x17\xbe\xca\xd1\xc1\xc3\xea\x61\x5b\xb5\xc7\x7f\xdb\xda\xe5\xb3\x81\x2f\xbd\xb5\xa3\x21\xb1\x13\x7b\x45\x90\x26\x37\xf2\x28\x8b\x98\x21\x04\x28\x69\x94\x0e\x48\x37\xa0\x17\x1c\xef\x5d\xe5\x9a\x16\x29\x13\xed\x5c\x52\x53\x08\x3d\xc0\xb0\x71\x85\x5c\xf2\x18\xc1\xc2\xf4\x3a\x0c\x65\xff\xdc\x36\x7b\x20\x28\x73\x60\x54\x86\x1d\x03\x02\x03\x10\x44\xc1\x06\x14\x5f\xe8\xe5\xe4\x43\x11\x4b\xea\xb2\x48\x16\xd0\x84\x4e\xf8\xe7\xe1\x6f\x1a\xde\x3b\x73\x93\x80\x41\x9a\xc4\x72\xc9\x89\x4e\xcc\x62\x49\x0b\x85\x34\xb9\xe2\x71\xaa\x6d\x7f\x58\x32\x43\xe0\xc5\x80\xf1\x38\xd7\x50\x19\x4a\xf0\xbc\xec\x28\x11\x5d\x38\x86\x5c\x28\x87\xf8\xd8\x92\x19\xc5\x10\xac\xdd\x55\x3a\x92\xe4\x53\xbe\x98\x02\xa9\xf3\x2e\x5e\x21\xec\x25\x91\xda\xbe\x30\x70\xdd\x27\xe7\xea\x7e\xa2\x7e\x7e\x45\xac\xc6\xa3\xcd\x77\xfb\xac\xf8\x1a\x40\x86\x4f\xf0\x73\x13\x44\x49\x30\x78\xeb\x7d\x36\xb0\x40\x73\xaa\x2b\x56\x81\x09\xc9\xcd\x56\xae\x5b\x61\xb8\x11\x12\xc8\x6c\x3b\xd3\x10\xb0\xf9\x47\x98\xb2\x34\x7a\x8c\xa5\xcb\x48\x4b\xd4\x85\x61\xd8\x27\xd9\xac\x67\x61\x82\x90\xdc\x99\x12\xb0\x35\x0e\xf0\x75\x90\x1d\x58\x04\x1d\x65\x44\x13\xd8\x75\xc6\xc8\xcf\x82\xda\xa3\x5a\xe0\x61\x41\x14\x84\xa4\xf5\x66\x4c\xad\x16\x26\x98\x82\x7e\x06\xc9\x9b\xc5\x68\xb3\x30\xc5\x24\x83\xfd\x9d\x4e\xcc\x6a\xdd\x8f\x63\xdc\x50\x50\x33\xd4\x73\x95\x99\xef\x70\x51\x81\xe3\x9b\x8d\x2a\xf1\x7e\x62\x46\xbe\x06\xc2\x6d\xfe\x64\xee\xcc\x06\xca\x59\x36\xde\xe9\x33\x53\xcc\x8e\xc5\x26\x0f\x2d\x4a\x2f\xe8\x0c\xf9\x59\xec\x1e\x16\x02\x83\x68\x0c\x65\x8d\xcb\x91\x7a\x3e\x8e\xf5\x1c\x00\x30\x88\x50\x04\x2c\x1a\x57\x63\x33\xc1\xcb\x86\x25\xae\xaf\xe4\x06\x10\xf7\x77\x83\x8e\xd1\x9c\x3b\x74\x76\x51\xb3\x68\xc0\x90\xc8\x0c\xc6\x08\x12\x46\x67\xab\xa1\x22\x5e\x0d\x93\x1b\x5c\x9e\xc1\x09\x38\xb6\xba\x4d\x00\x2a\x3b\x65\xdf\x16\x2e\x84\x70\x65\x8b\x49\x7f\x9d\x85\x08\x7b\x18\x81\x85\xec\xa6\x7b\xac\xe0\xfc\x79\x13\xda\x2d\x59\x45\xdd\x6c\x93\x9b\x8e\xfb\x7d\x11\xee\x73\x9a\xbd\x26\xd5\x69\xaa\x39\x2b\x0f\x39\x68\x21\x11\x41\xb9\xff\x8e\xd6\x01\xc3\x19\xe1\x8d\xdd\x8a\xbc\xea\xaa\x20\x03\x49\x2a\x92\xfe\xb9\xd3\x44\xfc\xfa\x29\xf2\x40\x05\x33\xba\x0b\x08\xfb\x37\xe7\xf9\x88\x90\xc4\x32\x6b\x33\x3e\x19\x6e\xee\x51\x08\x46\xdb\xf0\x2e\xbe\x74\x67\x4f\x72\x84\x98\x01\xea\xe1\xa0\x91\x1f\xd5\x03\x1f\xe3\xee\x4d\x08\x92\x11\xa4\x0a\x48\x32\x37\x52\xc0\x56\x02\x9b\xc1\xdc\xc8\x52\xb3\x20\xdf\xfe\xb0\xd4\x3f\x0e\xe8\xcf\x4f\x04\x3b\x65\x25\x42\x40\x1c\x51\x49\xf4\x98\xfd\x2c\x68\xf4\x43\xb5\x04\xc6\x53\xa5\x11\x36\x8c\xca\xd2\x0b\xa7\x18\xcf\x5c\x0e\x7e\x40\x80\x7a\x36\xba\xbc\x18\x70\xb3\x99\x3a\x38\x7d\x20\xc8\x55\x8c\x6e\xbe\xcf\x03\x92\x0e\x99\x30\xbe\x62\xe0\x50\x40\x41\x92\x39\x62\x04\x16\x9d\x0b\xb8\x1f\x4d\x05\xaa\x3c\x57\x17\x77\x20\x19\xac\xee\x4f\x9b\x46\x63\x63\x0a\x78\xdd\x65\x5b\x2d\xb7\x32\xd4\xa1\x3d\xfe\xc6\x99\x39\xa9\x05\xf3\xaa\x90\xef\x88\x31\xdc\x42\x51\xbd\x00\xcf\xd0\xd6\xdf\x11\x10\xe9\xe6\x58\x1e\xc7\x41\xcc\x84\x50\x8e\xb4\x7c\x71\x05\x62\x60\x5e\xcb\x23\x88\x75\x65\x50\x58\x26\x3a\xa0\xdc\x0d\x78\xee\x59\xdb\xef\x8d\x14\x37\x4a\x55\xd6\xc4\x53\xf6\x98\x17\x29\x1c\xa1\xc3\xf0\x40\x42\x88\x28\xeb\x63\xd0\x71\x69\x60\x8f\x64\x05\x81\x70\x48\x42\xb2\x41\x64\x06\x9b\x72\xa6\x3b\x11\x45\x3f\x00\x70\x35\x67\x50\xf8\x91\xc1\x48\x50\x98\x76\xc2\x00\x59\x3a\xaa\x39\x7c\x74\xc8\x47\x9d\x1a\xcb\xa6\x4a\x89\xc8\x59\x26\xbb\xbd\x4d\xde\x98\x8a\x33\xbd\xba\x86\x8d\x39\x3e\x40\xa9\xee\xe1\x64\xa8\x2e\x2a\x8a\x87\x44\x6d\x00\xf7\x1e\x5f\x69\x9a\x0a\xc7\x09\x2f\xb1\xe2\x92\xe9\xa3\x70\x30\xce\x6a\x2c\x64\x7a\xf7\x5e\x39\x66\x50\xfc\x0a\x25\xec\x05\xf3\x91\xc3\xa1\x31\xf7\xe6\xc3\x06\x52\x91\x8f\x51\x8e\x94\x7a\x7a\x5d\x0a\xe7\x00\xb2\x78\xa0\x79\xda\x2a\x30\x0d\x5e\xef\x75\x93\xd1\x09\x73\x56\x67\x51\x31\xc0\x14\x92\x22\x7c\xb8\x71\x32\x9b\x07\x14\x4b\x90\xc0\xe1\x43\x03\xd4\x51\x74\x8c\x59\x38\x23\x14\x45\x1f\x6b\x27\x48\xc8\x3b\xed\xe6\xdc\x01\x11\x13\x6f\x51\x7a\xa4\x38\x31\xdc\xe4\x10\xbc\x91\x34\xbc\xb2\xe2\x84\xec\xa9\x74\xbf\xf6\x9c\x07\x74\x2c\x75\x0c\x0e\xf7\xff\xf8\x4b\xb1\xcf\x5b\x30\x82\xb8\x91\x93\xb0\xd8\x18\x70\x30\x18\x22\x90\x62\x42\xda\x81\x32\x8b\x8d\xd7\x23\x82\x88\xdb\xe0\x49\x18\xd1\x84\xb1\xe9\x8c\xe6\x6f\x48\x5e\x36\x00\x3d\x25\x36\xbc\x88\xf8\x4c\x85\x6c\x74\xc9\x67\x42\x1e\xe7\x16\x4d\x32\x36\x1a\x35\xae\x7b\xc9\x69\x1b\xcc\x0a\xde\x7f\x16\x4c\xf5\x58\x80\x30\xb4\xdd\x2e\xc1\xd3\xd0\x59\x2f\x48\xe0\xbb\x07\x0e\x00\x6f\x68\x40\x95\x34\xcb\x93\x9b\x1b\x86\xa0\xe5\xcd\x92\xe2\xb5\xf9\xb7\xf7\xab\x7c\xec\x08\x34\x2f\x50\xcc\xb7\xd0\xa1\x4e\x6b\x6d\xde\x8c\xd4\xba\x0f\x78\x49\xae\x92\x84\xbd\x65\x8f\xfa\xdc\x34\xa0\x7e\x4c\x4e\x2f\x99\x82\x38\x30\x06\x9a\xe0\x3a\x9c\x29\x5f\x60\xaf\x02\x0b\x2e\x3a\xfc\xc0\x2a\xb2\xc6\x2b\xd5\x52\xd9\xc0\xd9\x74\x5e\x91\xb0\xa8\x0d\x28\xec\x36\x8a\xe0\x0a\xca\x3c\x04\xfe\x85\x82\x96\x77\xf3\xca\xe1\x84\xae\x03\xa8\x22\xc5\xcb\x77\x05\x01\x1b\x9c\x0d\xf4\x32\x82\x63\x04\x6a\xbb\xe8\x44\x88\x82\x88\x8c\x00\xf2\xd2\x7a\xd2\x8b\x49\x52\x93\x8e\x1a\xff\xfd\xc8\x06\x07\x20\xa1\x25\x60\xe6\x56\xd9\xb5\x40\x93\x62\x6c\x51\x12\x9c\x78\x94\xc5\x67\xb5\xa5\x13\x14\x85\x06\x24\xdb\x10\x16\x13\x4f\x41\x1b\x44\x93\xd6\xd1\x9e\x98\x02\x12\x76\x06\x09\x93\x84\xfe\xdc\x41\x4d\x5d\x84\x34\x1d\x1b\x58\x1f\x4b\x88\xc5\xb1\x6d\x94\x10\x31\xdc\x4c\xb6\xd0\xc4\x0a\x6d\x8a\xec\xaa\x71\x0a\x64\x49\x15\x49\xb8\x0e\x51\x25\xcf\xc0\xb8\x02\xfc\xce\x0c\x39\x3a\x1a\x00\xe4\xa1\x8e\xb3\xb6\x1b\x9a\x28\xa4\x5f\x1c\x0c\x56\x7e\x6f\x8c\x9a\x48\x29\x42\x8a\xfa\xef\x2a\xa1\x62\x82\x3d\x67\x4c\x64\x67\x5c\x24\xee\x85\xb8\x27\xde\x21\x26\x5c\x41\xdd\x22\x6a\x03\x61\x95\x20\xa1\x55\x56\x2c\x56\x2a\x41\x2b\xcf\x09\xe8\xeb\x71\xad\xad\xbe\x0b\x08\x20\xbb\x2e\xb7\xe1\x8c\x13\xb3\x20\x44\xb6\x24\xcc\xb1\x51\x89\x6b\x92\x54\x5a\x64\x42\x5e\x08\x87\xf8\x20\x92\x5a\x15\x0d\xf0\x30\x3e\x4f\x66\x16\x12\x0b\x10\x34\x48\x12\xdc\xa5\x3d\x11\xa7\x70\x02\x0b\x1c\x32\xcf\xac\xaf\x68\x02\x04\x76\xad\x21\xfe\x5d\xe6\x85\xc3\x70\x7e\x58\x1a\xa5\x38\x5b\x79\x87\x8b\xf8\x8f\x1c\x16\xa6\x1e\xf2\x48\x50\xab\x15\x0e\x72\x11\x2d\xd5\x13\x63\x90\x66\x8a\x8b\xd3\x9e\xee\x4e\x22\x17\x2c\xba\xa9\xdd\xb8\xa9\xf1\x51\x98\xa1\xba\x03\xeb\x5b\x5f\x4a\x77\x40\xd1\x0c\xa8\x8d\x42\xc7\x2e\xa4\xaa\x57\x0b\x22\x55\xee\xd3\xe7\xd3\xa0\x7e\x5d\x00\xe6\xb3\x01\xa6\x31\x81\x8e\x0e\xb7\x82\x19\xeb\x01\xa9\x3b\xaf\xc4\xf4\xc4\x46\x24\xf6\x3b\x9b\x17\x5f\xb2\x90\x27\xd8\x55\xb4\x4d\xeb\x77\x0e\x8e\xd4\xe4\xc6\x9f\xb3\x76\x12\xc5\xe2\x2d\x98\xf0\x2f\x51\xb8\x9e\x47\x7a\x9f\x35\xaf\x61\x07\xbe\x85\x76\x1b\x05\xc0\x26\x95\x89\x11\x0e\x13\xf4\xb2\x10\x49\xc7\xc8\x46\x69\x41\x08\x59\x6a\xb8\xa6\x81\x28\xdd\x90\x44\xd4\x2b\xbf\xa7\xd4\x22\xe6\xdc\x61\x92\x45\xcf\x9a\x4b\x55\x1c\xe1\x41\xd6\x20\x35\x20\x12\x64\xe7\xca\x7f\x0c\x2f\xc9\x75\xc6\xa4\x12\xb7\xf4\xfa\x90\xa6\xf0\x3a\x3a\x10\xad\x60\x64\xe4\x43\x85\x77\x40\x16\x59\xbe\x40\x2b\x13\xe2\x4e\x32\xe8\xfd\xcb\x6f\x85\x55\x91\xc9\x80\xd0\x28\x67\xba\x95\xc4\xde\x97\xe5\x94\xf1\x28\x4a\xad\x08\x04\xda\xcd\x41\x2c\x35\x6d\x14\xaa\x4a\xee\x84\x76\x30\x0d\xde\xfc\x3e\x20\xb5\x81\xb8\x50\x9d\x1f\x8d\x4f\x29\xc8\x82\xa5\x47\x8c\x0a\xf2\x67\x36\x8d\xbe\x4d\x61\x5c\xdf\xaf\x09\xd6\x0c\x74\x10\xd6\xd8\x07\xc8\x35\x04\x91\x49\x18\x55\x3c\xa1\xb5\x61\x0a\xb6\x07\x84\x4a\xcd\x16\x2e\x09\xa0\x44\x7f\x1c\x06\x42\xec\xd0\x14\xdb\x3c\x7d\xc8\x74\xb4\x5c\xad\x0d\x15\x48\x29\xff\x4d\xd0\x5b\xc1\x1e\x5f\x68\xe0\xe9\xd7\xb0\xd0\x01\x58\xbf\x9c\x6d\x4d\xf6\x9e\x31\x7c\x3e\x0d\xcb\x45\xa1\xcc\x5a\x62\x04\x42\xee\xa6\x06\x32\xe9\xc0\x1e\x95\x5a\x4f\x97\xcc\xad\x19\x8b\xbf\xf6\xe0\x2e\x3e\x29\x61\x1c\x37\x0f\x03\x1c\xc1\x0a\xce\x01\x5a\xc4\x2c\x70\x49\x2a\x13\xc6\x7a\xb2\x5d\x37\x33\xd6\x40\x2f\x91\xf5\x4c\x37\x48\x94\xde\x0d\xdc\x3e\x69\x8f\x4d\xd7\x4d\xc0\x2b\xf0\x00\x3a\x93\x59\x86\xe6\x08\x64\x51\x2a\xe7\x9d\x13\x69\x82\x0b\xce\xf4\x99\x6c\x05\x1a\xa1\x73\x87\xf4\xee\x5d\x07\x65\xd4\x63\xad\x8d\x79\x2b\xcf\xfb\x91\xf3\xba\xfc\xa9\x1b\x11\x13\x24\x36\x81\x23\xb2\x68\xb9\x50\xae\x62\x18\x07\x6c\x28\xc0\x79\xf9\x87\x5d\x8d\x8f\x00\x26\xdc\x83\x10\xac\xb2\x46\x00\x79\x1e\x8a\x4c\xf2\x08\xf9\x2a\xbd\x81\xbd\x9e\x44\x1e\x75\x8d\x15\xd3\xc4\xaf\x95\x4b\x47\xf6\xd5\xd8\x8e\x1c\x3f\x5a\x4d\x6c\xa6\x6a\xad\xf5\xd9\x03\x0b\x80\x70\x38\x80\x6a\xe5\xd8\xdc\xce\xd6\xae\x7e\x20\x21\xc5\x11\xd6\xde\x5d\x37\xaf\x83\x70\xba\x1e\x41\x31\x60\x72\xa1\xca\x84\xc7\xfa\xc8\xfa\x67\x5c\x51\x19\xcb\xef\x5d\xc3\xa5\xb4\x39\x1f\x49\x4b\xe7\x99\x72\x9a\x42\x96\xf8\xc4\xe6\xc0\x7a\xc8\xd5\x46\xc2\x3c\x05\x32\x20\xc6\xb6\x8c\x39\x77\x9c\x9c\xa1\xe3\x1b\x79\x84\x8c\x20\x92\xb9\x44\xe4\x21\xab\x37\xd8\xfc\xe6\xdf\x43\xca\xe9\x41\xa5\xc2\x83\x1d\xd8\x21\xdc\x6b\x39\x0c\xaf\xcd\x61\x08\x7a\xa7\x38\x14\xdc\xb8\x0d\x9f\xd8\xd4\x02\x9b\x0c\xda\x5f\x75\xd5\x7b\x59\x5c\xe8\xc9\x4e\xa7\x41\x80\x9a\x37\x44\x86\x46\xc1\xc2\x42\x24\xab\x12\x71\xd3\x15\x3a\xd6\xa5\x07\x83\xcd\xae\x61\x19\x92\xf9\xbb\x80\xfd\x1f\xd0\xd5\xb7\x3e\xde\xac\x19\xdc\x35\x8e\x80\x07\x9a\x2b\x46\x5a\xc8\x92\xe1\xad\xbd\xcf\xcb\x53\xc7\x2d\x50\x91\xb3\x21\xe0\x2b\x8e\x7e\x80\x09\x5d\x70\x42\x4b\xf8\xf8\xd2\x15\xe9\xed\x1d\xa8\xe6\x00\x24\x61\xeb\x9c\x8a\x9b\x25\xdc\xcd\x17\x31\x9f\x08\x43\x59\xe9\x00\x93\x24\x5a\x53\x73\x22\x59\x8f\x00\x9a\x07\x61\xf5\x34\xd6\x94\x8e\xd0\x60\x9f\x41\xba\x3a\xdf\xe5\x00\xdc\xf9\xd2\xd3\xd6\x61\x80\x3b\x92\x96\xe7\x8d\x26\x3d\x3e\x70\xe0\x94\x2b\x2e\x27\xc9\x42\x9e\x2e\x2a\x6c\x2b\x06\xc4\xc2\xe8\x04\x4c\x3f\xb7\x8d\xc8\xda\x36\xdb\x82\xd3\x1f\x64\x01\x01\xea\x62\x94\xb9\x2d\xb1\x10\xa0\xa3\x06\x05\x72\xcc\x5d\x17\x94\x2f\xab\x8b\xbd\x60\xbd\x7b\xb7\x1b\x48\x6d\x95\x2a\xd3\xbc\x01\x57\x1b\x65\x4d\x68\x8a\x8d\xa1\xa6\x8a\x12\xe9\x4b\x16\xc6\xb0\x0e\xf8\xc3\xf1\x07\x40\x10\x68\x90\x83\x43\x40\xba\xb8\x79\x80\x4e\x4b\x7d\x96\x54\xb0\x8d\x2c\x49\x24\x0c\x9b\xd1\xd2\x3b\x85\xfd\x5f\x59\x5b\x8a\x63\xb6\xb4\xb0\xe9\x77\x0b\xbe\xb7\xf4\xaa\x0e\x3c\x2f\x52\x17\x9f\x91\x56\x9d\x22\x7e\x96\x33\x78\x6c\xb2\x04\x07\x17\x5e\x05\x04\xc7\x02\x27\xa7\xa1\x94\xb1\x70\x7a\x40\xa9\x04\xe3\x07\x09\x9d\xe5\x2d\x61\x96\x08\xe1\xb5\x82\xbd\x4c\x1d\x69\x13\xe2\xb5\xb5\x8b\x9e\x2f\xa4\xbe\x7c\xc2\x7c\x6f\xfa\x87\x08\x1a\x01\x9d\x3f\x60\xcc\x8a\x09\x5d\x65\x45\x6f\x79\xe5\xe0\x22\x2d\x5c\xdc\x4d\x48\xe2\xa4\xa3\x0d\xf8\xb5\x0f\xdc\x07\xc6\x56\x6e\xd0\x27\x49\xa3\x67\x29\xe8\x06\x86\xab\x0d\xe3\x2b\xd9\x81\x85\x9b\x49\x8c\xb3\x56\x4a\x77\xf1\x33\x95\xc2\x23\x43\x20\x51\xfe\x5b\x04\x84\xb4\xed\x1c\xcc\x1b\xd1\x44\x7a\x3e\xd6\xc9\x30\xdc\xc4\xe4\x49\x80\xc7\x91\x9a\x29\x65\x87\x34\x09\xde\x55\xe7\xfd\xa7\x94\x1f\x66\x7c\x5d\x42\x12\x49\x91\x4a\x27\xee\x7a\x24\x92\xe5\xda\x51\x35\xdc\xcb\x8f\x1d\x89\x85\xd4\xb2\x89\x9d\xaa\x89\xe5\x0b\x3b\x4a\xb8\xdd\xd0\x20\x9b\xda\x9f\xfd\x11\x9a\xce\x35\x63\x62\x4c\x03\x6c\x93\xc0\xee\x63\xc8\x96\x56\xa0\x51\xa0\x90\x20\x23\x6a\x7c\xcb\xa5\x70\xe2\x84\x03\xda\x42\xc2\x85\x2a\x6f\x1b\xa7\xf1\xb5\xd4\x7f\x49\x80\x30\xda\x13\xf1\x2e\x64\xf8\x2f\xa5\x0b\x55\xf6\xb8\x59\x52\xca\xe4\x74\xd4\x10\xb8\x53\x59\x40\x32\x8b\x1f\x77\x7c\x71\xe9\xd3\x42\x62\x55\x65\x0a\x7a\x4b\x3b\x32\x1a\xd2\x53\xbd\xa0\x79\xaf\x36\x40\x44\x83\x15\x98\x52\xbd\xb8\x37\x2f\xcf\x1f\x55\x3d\x8b\x92\xe4\xf3\x61\x2e\x53\xf6\xa2\x9e\x4e\x09\xb7\x77\x40\xea\xe0\x49\x2e\x44\x54\xa6\x67\x08\x1b\xfb\xef\x92\x12\x87\x58\xd2\x66\xcb\xe8\x70\x62\x8e\x63\x01\xd2\x20\x53\x16\x92\xd0\x31\xf2\xd0\xde\xae\xa5\xd8\x32\x29\x15\x1c\x16\x93\x1d\x3c\xca\x31\x73\x10\xdb\x57\xfa\x1b\xbc\xb3\xe9\x12\x27\xf4\x8a\xea\x90\xa2\xa6\xb9\x8b\x46\xd9\x5b\xd2\x19\xd9\xb4\x54\x92\x5e\x91\x64\xea\x7e\x6f\x8e\x87\x55\x48\xe8\xfe\x46\xc9\x57\x21\xc4\xfb\xbc\xe6\x3e\x7c\x79\x7b\x21\xc9\x69\xe7\xe1\xec\x64\x2d\x74\x41\x6a\x42\x8b\x31\x16\xe3\xaa\x9c\x6f\x88\xea\x76\x7c\x69\x08\xb8\x51\x66\x29\xd2\x9a\xb9\x7a\xf8\xa8\x72\xbf\xf7\x79\xc4\xda\xe9\xf8\xae\xe0\x9f\x5d\xa9\x20\xda\xb1\xd0\xc5\x4f\x02\xd1\xa4\x9b\xd8\x87\x68\x90\x02\xc6\x98\x10\x90\x6f\xf1\x46\xd1\xed\xa4\x99\x51\x11\xe1\xb3\xcf\xed\xe7\x46\x1c\x6c\xec\xfc\x10\x9b\x83\xf9\xa7\xa3\x57\x90\x6e\x1c\x95\x29\x64\x2c\x3d\xb5\x1e\x98\x8b\x10\xca\x13\x9d\xa2\xd3\x05\xae\x22\x02\x04\xd9\x39\x57\x64\x75\x03\xa1\x33\x63\x91\x50\xa0\x3e\x0f\x93\x2d\x63\x72\xe5\x91\xa9\x29\xad\x22\x02\xd3\x05\xb4\x50\x8f\x9e\x62\x8d\x6c\xc1\x77\x84\x43\x8b\x0a\x95\xf8\x22\x48\x7a\xc5\x1f\x12\x0d\x48\x37\x50\x96\xba\xdf\xf1\x61\x9b\x5a\x44\xc0\xfe\xec\x13\x54\xd9\x79\x09\xca\x46\x3f\xd2\x2f\x71\xe4\xd8\xbc\xa6\x5b\x4a\xde\xcf\xef\x86\x32\x90\x9b\xba\xca\x98\x4d\x64\x3d\x97\x46\x3f\x42\xcc\x23\xbf\x29\x66\xee\x51\xe1\x74\xf6\xb0\x32\xde\xe9\xe9\xa1\xc1\x65\x0d\xed\x80\x7a\x66\x37\x99\x77\xef\x54\xa6\xe2\x07\x89\x29\xc5\xc3\x70\xde\x94\xec\xc6\x3a\x64\x0b\x05\x65\x3a\x35\x7b\xe1\x57\xf5\x98\x1d\xd0\x94\x15\x8f\x69\x73\xdc\x06\x0d\xd2\xfe\x0d\xa1\x4e\xa7\x8b\x9d\x67\x0b\xc1\x22\x8d\x76\xc3\xd4\x82\xb9\x4e\x5a\x71\x70\x76\x6a\x1f\x10\xcc\x6d\x34\xe8\xa0\xe5\xb2\xd5\x9c\xde\xdb\xee\xc6\x77\x72\x92\x37\x86\x35\x59\x6c\x58\x53\xb3\x32\xdd\xa9\xf0\x58\x7e\x0d\x0e\xa5\xa8\x87\x52\xd5\x37\xc3\xb2\xf2\x39\x7c\xc4\xd9\x16\x60\x28\x4e\x4e\xdc\xca\xe3\x86\xa5\xb0\x0c\xf7\x8e\xb1\x99\xaa\x1f\x5e\xf8\xc4\x77\x46\x33\x8d\x9e\xe0\x84\x70\xd5\x8b\x85\x5c\x2d\x9f\x6d\x04\x24\xcd\xd8\x17\x1b\xf3\x3b\x41\x9c\xe4\xc6\x32\x52\x0a\xf7\xc9\x05\xb6\xcd\x24\x31\x7e\x86\x01\x44\x59\xce\xc1\xb9\xde\x30\xf0\x13\x03\x9c\x5e\xd6\x78\x1c\xb8\x3f\x3a\x33\xd8\x39\xdb\x1c\x15\x84\xcc\x30\x65\x58\x93\xd1\x0f\xa6\x3c\xfd\x0c\x56\xde\x72\x05\xa7\x19\x30\x96\x4a\x63\x91\xf2\x3d\xd6\x65\xb4\x3c\xbe\x7c\x2a\x8c\x40\x72\x38\x28\xba\x17\xa1\x18\xe3\x9b\x08\xc6\xfc\x85\x3b\x69\x32\x10\xa1\x4d\xe3\x35\xcf\x0e\xab\x0e\x24\x71\xd0\x0c\xc4\xe5\x19\xb0\x9b\xbf\x8f\x88\x8c\xae\xca\xb3\xc8\xaa\x7a\x63\x6d\xae\xda\x46\x5f\x18\xcb\x67\xf4\x9e\xce\x29\x94\x19\x52\x1c\xf1\x09\x51\xc9\xb0\xa0\x1c\x28\xf7\x00\x1c\x5a\x49\x7f\x7b\x1d\x76\xc0\x30\xc9\x3a\x3b\x13\xd3\xce\x3b\xf0\x74\x4a\x67\x3e\x2d\xa4\x62\x96\xf2\x96\xb2\xc4\x7a\x0a\xad\x6c\x4f\xa3\x32\xb5\x37\x31\x9b\x08\x50\x7f\x08\x9f\x6f\xea\x93\xaf\xd7\xac\xe4\xd5\x2b\xf7\x72\x73\xf5\x7d\x26\x68\x12\xdc\xe7\xb1\x39\x3a\x27\x70\x7b\x15\x87\x49\x92\x1b\xb9\xc1\x7c\x9b\xa9\xb3\x08\x4c\xb6\x66\x14\x06\x95\x5b\x1f\xbe\x1f\xb6\x82\xb1\x54\x53\x53\xa4\xd0\x33\x4e\x98\x30\xfa\x3f\xa2\xc0\x39\xb8\x5b\xf4\xad\xae\x4a\x72\x3b\x56\xb7\x4a\x08\xfc\x7e\xbc\xb8\xd8\x91\x43\xb0\x52\x24\x39\x6d\xa8\xd8\x67\xbb\x88\x21\x80\xc4\x1a\x34\x14\xa9\x01\xee\x96\x4d\x5b\x7b\x01\x61\xe7\xe1\x3e\xe2\x7c\x2b\x19\xf9\xf3\x61\x0b\x11\x94\x75\xc3\x11\x54\xb5\x9e\x46\x37\x51\x11\xdd\x2b\xe7\xca\x90\x59\x14\xd3\xbc\x03\x9c\xfd\x0b\xd1\x72\x2a\x31\x0e\x35\xcb\xed\x13\x53\x20\x84\xf3\x43\x02\x1b\x12\x83\x04\xb3\x11\x52\xc9\x2c\xb8\xff\x81\x14\xcc\xed\x85\x13\x7e\x46\x83\xdf\xcb\xbd\x0d\x15\xaf\xf8\xb0\x93\x76\x95\x0b\xbd\x77\xa0\xa2\xb5\xff\x16\x06\xc6\x6b\x0c\xdc\x0b\x02\xfc\x9c\xd0\xc1\x01\xa8\xb1\x95\xd5\x96\x03\x03\x3d\xff\x86\x6f\xf4\x97\xb1\xa5\x2c\x01\xf2\x8b\x13\xe1\xe6\xb4\xc2\xe3\x2c\x0e\x0f\x6e\xd1\x98\x86\x9b\xf9\x18\x29\x69\x44\x49\x54\x29\x0e\x70\x8b\x0d\x8b\xbd\x0b\x31\xcd\x9a\x0c\x4d\x8b\x50\xfc\xfa\xaa\x53\xf0\x54\xf0\xb3\x6d\xd5\xe6\x49\x45\x91\x25\x4d\xe9\xdd\xba\xa1\x9a\x7b\x74\x14\x54\x14\xde\xd4\x62\x22\xd3\x1b\xb9\x4d\x07\x12\x01\xfc\xb6\xc8\x61\xa6\xc0\x35\xc9\xc1\x85\xe6\xdd\xf9\x7d\xff\x8d\x49\xa8\xb2\x54\xd1\x00\x06\x0e\x16\x4a\x11\xf7\xce\x82\x1b\x04\x82\x68\x4d\x5b\x07\x8c\xb6\xf7\x65\xf3\xb7\x55\xa8\x5b\x72\xd0\x8e\x5f\x77\x36\x22\xc8\x00\x26\xf4\x98\xab\xb8\x56\xe9\x17\x82\x74\xd3\x30\xd9\xdc\x98\x9a\xf4\xda\x1c\x62\x04\xc9\x0c\x66\x96\x6b\x4c\xe1\x1a\x4f\xdb\x81\xbb\x4c\x2e\xd2\x7b\xb2\xab\x58\xb4\x7e\x11\x1c\xe8\xcd\xac\xc4\x1a\xf5\x8a\xad\x54\x8a\x2e\xe6\x4e\x22\x0f\x1b\x08\x3b\xe1\x06\x23\x2e\x58\xac\x79\xc6\xf8\x9b\xc3\xda\x50\x7e\x14\x24\xbe\xf5\x2d\x3a\x4d\x07\x64\x2f\xe8\xf2\xfb\x06\xc2\x21\x65\xac\xc1\x5c\xbd\x94\xae\xfe\x69\x15\x3d\x08\x52\x6f\x71\x99\xc7\x6e\xf7\x08\x7b\x8a\x83\x03\x4e\x0e\x77\xfa\x51\xe3\xc3\xeb\xc9\x0e\x45\xd2\xe5\x08\xc1\x68\x41\x87\xf4\xb3\x44\x41\xe2\x25\xd5\x1f\x48\xb9\xd9\xa8\xd0\xf5\x09\xd9\x14\x73\x5f\x86\x2c\x19\x38\x55\xdc\x0c\x98\x03\x89\xf2\xb8\xd9\x24\x1b\x81\x15\x25\x16\xdd\xdf\xee\x7d\x0d\xee\x6f\xf6\x29\x35\x92\x11\x68\x1e\xa7\x0c\xbf\x5a\xe3\x03\xee\xc6\x6b\x26\x24\x41\xb1\xbb\x39\xa0\x2f\xc2\x71\x0c\x00\x27\xde\xef\x85\xb3\xe9\x3c\xeb\x79\x73\xb7\x75\x18\xc9\x32\xab\x82\x31\x63\xc8\x1b\x86\x42\xc4\x90\x87\x82\x59\x3b\x61\xe0\xe3\xc1\x0c\xcf\x8e\xe8\x9b\x64\xab\x71\x90\x15\xb9\x27\x7e\x28\x84\x43\xb7\x45\x25\x50\x79\x03\xfb\x4f\x1e\x3d\x81\x7c\x0c\xe0\x5a\x6b\x0b\xbf\x3b\x1f\x3e\xf6\xd0\x29\x8d\xf2\xe3\x07\x1c\x0d\xec\x1a\x47\xff\x6a\x3c\xcd\xe8\xc9\x31\x2f\xcc\xfc\xdf\x8f\x39\x93\x6e\x16\xf6\x51\x27\x4f\x78\x40\x11\x6a\x9f\x43\x48\x52\x9d\x45\xb9\xe6\x52\x28\x02\x42\x7d\x52\xad\x6f\x8d\x97\x43\x1f\x04\x52\x62\x6f\xbc\xdf\x17\x99\xd6\x20\xd0\xa1\x4c\xe4\x33\x64\x09\xb0\x45\x35\xdf\x21\x37\xa0\xa0\xd8\xca\xa8\x5a\xc6\x34\x39\xbd\xaf\xca\xb3\x4c\x65\x3c\x41\x90\xf0\x0b\x4c\x7a\xc8\x4e\x4c\x80\x00\x95\x28\xe0\x31\xea\x63\x15\x44\xe4\xf4\xa6\xe5\x32\x2c\x8b\x00\xfa\x37\x63\x97\x36\x11\x17\xbc\x15\x34\x18\x1a\x13\xc9\xb0\xfe\x41\xcc\x0a\xf8\x37\x07\x19\x53\x8b\x51\xa8\x46\x04\x84\x3e\x0a\xbc\x7e\xa4\xa7\xcc\x43\xc6\x0e\xe3\x84\x9d\xbd\x70\x48\xee\x8f\xe4\x40\xf4\xe5\x58\x24\xad\xbc\x73\x18\x1e\x3f\xb1\x08\x2d\x7f\xd6\xab\x0a\x00\xee\xba\xb7\xbf\x42\xf0\x84\x15\x0e\x06\xe5\x0a\x3a\x3c\xde\x22\x12\x88\x30\x5e\xe5\xe4\x87\xe6\xa2\xf9\x14\x41\x84\x2a\x0f\x09\xcc\x1a\x39\x13\xdd\x18\x2a\x2e\x9b\xa2\x48\xc2\x80\xbc\xa8\xcf\x53\x57\x64\x1e\x24\xc3\x12\x1d\x49\x2c\xe7\x20\x80\xd0\x12\x41\x97\x1b\xe3\x02\x47\xe2\x41\x27\x3c\x42\x28\x3c\xb4\x47\x1d\x88\x38\x2f\xf0\x67\x7d\x1d\x87\xae\x23\xde\x6b\xd8\xaa\x3b\xb8\x20\xb1\x55\x9d\x75\x71\x41\xe3\xb3\x6a\x59\x20\xd9\xa3\x37\xbe\x1e\x92\x04\x80\xd4\x2d\xe1\x7c\x33\x8b\xa2\xee\x73\x38\xf8\xb7\x31\xed\xfb\x1a\xc4\x13\x86\xd5\x6e\x79\x93\x17\x34\x78\xa5\x0b\x3a\xea\x21\x0f\x7f\x6e\x52\xbb\x2a\xaa\x09\x10\xd3\x10\x40\x78\xf7\x89\xae\x20\xb4\xd2\x70\xf9\xa5\x91\x2f\x49\xba\x51\x90\x00\xd2\x63\x7d\x7b\x9b\xb4\x8f\x39\x26\xa2\x82\xfa\xe2\xb7\x8a\x1d\xd6\x84\x04\x6a\x55\x75\x7b\x06\x0c\xc4\x58\x54\x29\x71\x51\xc1\xb7\xf7\x48\xf0\xb2\x38\xf2\xfd\x73\x7e\xb1\x56\x0d\x97\x0d\x93\xa8\xab\xaf\x6b\xf7\xcb\x62\x69\x67\xc7\x98\x27\xbc\xe7\xf2\x4e\x59\x94\xb4\xad\x81\xf6\xba\x63\xea\xc5\xaf\x4b\x28\xbf\x65\x4a\x06\x55\x5d\xd8\x29\x00\x66\x79\x00\xee\x2e\x67\x04\xa1\x2a\x90\x26\xa6\xf8\xc4\x14\x3c\xc0\xd8\xdb\x55\x88\x8a\x76\x37\x8d\xe2\x0f\x85\xe3\x05\xa0\x22\x15\x84\x80\xb0\x10\xf3\x63\x7b\x3b\xa4\xec\xb1\x48\x62\xe0\x40\x5f\xa5\x82\xe6\x7c\xd2\x36\x14\xf2\x15\x88\x3c\xf6\x78\x76\x8e\xb9\x6b\x23\x9a\x59\x8f\x8d\x4d\x4b\x6f\xfc\x77\x8a\x91\x05\xab\x19\x57\xe1\x4b\xd9\xd3\xff\x72\xc8\x3e\x88\x5c\x91\xe3\xf3\x69\x9a\xe9\xfe\x86\x80\x5d\x00\x5e\x73\x78\x09\xf4\x72\xcd\x02\xbf\x4e\xb0\x83\x13\xc4\x08\x68\xd5\x6e\x58\x38\x99\xfa\xe4\xd9\x78\x05\x88\x26\x93\x44\xf3\xfc\x00\x46\x44\x93\xce\x8f\x4b\xcc\xe1\x48\x4a\x0b\x14\x04\x13\x55\xa9\xdc\x32\x0f\x94\x43\x13\xbc\xc4\x50\xb1\x19\xcf\x4c\xb6\x66\x56\xf9\x10\x43\x93\x89\x6d\x43\xb6\x27\x37\xb1\x7e\x21\xdb\x0a\x3d\x3a\x31\x14\xc5\xd2\x6b\x8a\xaf\x1c\xb1\x18\x7e\x08\x3f\x91\x65\x8f\x6f\x60\x4b\xe2\xaa\x25\x18\x34\xf2\x0c\x89\xb4\xb5\x76\x46\xc4\x44\x1a\xa4\x72\xa8\x7e\xea\x56\xc5\x4b\xd8\xdd\xa2\x73\xb9\x0d\x8a\xa0\xda\x40\x56\x54\x21\x9a\xa3\x81\xaf\xe1\x51\xca\x56\x92\x6d\xd7\x2a\xf4\xb2\x41\x8b\x77\xc2\xdc\x5e\x5f\xa0\xbb\x5f\x31\x6f\x6a\x7f\x4a\x10\x37\x07\xdc\x22\x28\xdc\xd6\xee\x1b\x7e\x83\xfb\xd4\x3c\x69\x20\x74\x57\x75\xd4\xf2\x19\x9a\xa0\xb0\x36\xf0\x66\xdb\x52\xe3\x05\xaa\xe9\x60\x4e\x6d\x10\xc2\x32\x68\x6f\xcb\x5a\xc5\x70\x26\x6e\x84\x70\x1e\x11\xf4\xcd\x57\xb5\x3d\x25\x5a\x6d\xf1\xbc\x54\xec\xd2\x83\xd8\x6d\x52\x47\x18\x21\x10\xde\x56\x2c\x12\x7f\x3a\x6a\x04\xf9\x8b\xab\xd7\x8d\xbc\x35\x89\x80\x86\xa3\x78\x9c\x5a\x93\x72\xfe\x00\xff\x0e\xe8\x71\xb6\x4f\x6b\x95\xc7\xf5\x96\x81\xe8\xb0\x39\x25\xdd\xee\x4e\x12\xf9\x61\x6a\x7a\x37\x05\x81\x9a\xe2\x58\xbd\x1f\x41\x47\x1a\xc5\x59\x70\x40\xb2\x16\x11\x8c\xb0\x15\x02\xea\x9e\xb8\xc5\x89\x5b\x40\x9f\xda\xba\x78\x64\x06\xc7\x71\x50\x47\x8e\x46\x4d\x56\xa7\xc6\x4e\x8c\xe1\x23\x8e\x90\x50\xa6\xb9\x2a\x2a\x1a\xb9\xf1\xc2\x12\x00\x6e\x6f\x7b\x9f\xf4\xe8\x1d\x16\xa1\xfd\xde\x20\x1f\x1b\xfc\x49\x78\xd8\xcd\x12\xa6\x1c\xea\x00\x02\xd8\xe0\x50\x0d\xf6\xf9\xee\x74\x46\xa9\xaf\x87\x94\x70\xac\xe3\xb9\x15\xfc\x2d\x54\x0c\xff\x83\xab\xbd\x40\xab\xb5\xfc\xaf\x2e\x1f\x66\x47\xac\xa8\x16\xf2\x92\xcd\xc6\x89\xfd\x3f\x65\x78\xd4\x20\x13\x48\xf8\xb1\x63\x61\x8b\x23\x45\xf8\xa6\xca\xfc\x9e\xe2\xc8\x88\x91\x24\x72\xd1\x38\x78\xb7\x7e\xc9\x65\xe4\x80\x0f\xb2\x86\x01\x44\xb6\x46\x4e\x4e\x2a\x72\xe2\x8e\x71\x02\x39\x09\x99\xc9\x1a\x79\x1a\xaa\x91\x0b\x90\xbc\xc6\x9b\x27\x0f\x5c\xec\x37\xac\x36\x2d\xe0\xc2\x5f\xc5\x94\xb8\xf4\x78\x39\x98\x01\x33\x6d\x6d\x9d\xe0\x80\x21\xe1\x42\x10\x08\x60\xa5\xc7\x30\xf3\x78\x80\xda\xbf\x50\xbd\x2f\x02\x90\x0d\xd0\xaf\x08\xde\xfe\x8a\x59\x42\xfe\x3c\x89\x71\xae\xd1\x06\x2d\x8f\x14\x01\x36\x74\x80\x9e\x9e\x04\xbf\x41\xb4\x55\x42\x37\x14\x01\x17\xcc\xb3\x33\x3f\x9c\x5d\x0b\xb1\x6c\x1c\xd2\xc1\xcb\x1a\x79\x2a\x96\x80\x56\xe9\xba\x23\x15\xca\x11\x0b\xe2\x9c\x68\xa3\x79\xc5\xa0\xc1\x54\x25\x68\xdc\xb8\x62\xc1\x92\x8d\x03\x91\x1f\x34\xf1\x74\x3b\x14\xc3\xa3\xfb\x24\xe6\xa2\xb9\x5c\x00\xdb\x4a\xd2\xbe\xd8\x12\xe0\xbf\x3e\x5d\x7a\x52\x44\xfb\xd8\xe5\x69\x23\x9c\x03\xcb\x8e\x20\x22\x33\x1b\x21\x2b\x98\x9d\xfe\x23\xe2\xc1\x0d\xee\xc4\xd2\x25\xca\xf0\x24\x32\xe5\x99\x2c\xcc\x88\xb5\x04\x0a\x6c\x3c\xde\x20\xd0\xb8\x2c\xc2\x89\x44\xb6\x28\x82\x4a\x7b\xfe\x28\x19\x18\x68\x78\x20\xc9\x13\x1a\x05\xcc\xa6\x98\xc9\xcf\x7c\x02\xa9\xe8\x3f\xb8\x07\x59\x61\x88\x2a\xa3\x7a\x85\x94\x1d\x78\x1a\xbf\x60\x8d\xcc\xca\x34\xcd\x20\x12\x98\x81\x08\x62\x33\x7e\x3b\x09\x4e\xfb\x9e\x24\xdc\x61\xe3\x1e\xa2\x02\x79\xa9\x25\x74\xb5\xd0\x9b\x05\xfd\x81\x18\x58\x00\x80\x7b\xba\x5a\xa8\x4e\xfe\x9e\x04\x39\xab\x92\x52\xa7\xfc\xba\x1f\x7b\x3e\x54\x45\x92\x04\x33\x48\x92\x53\xf8\x27\x8a\x7f\x48\xcd\x53\x65\x61\x20\xe8\x82\xd6\x02\x62\x88\xdf\x38\x35\xfc\x0d\x4b\x59\x08\x9b\x7c\x9e\x11\x42\xd5\x96\x79\x51\x38\x1c\x4d\x5a\x97\x2f\x59\xdb\xe4\x89\x2b\x10\xdd\x33\xb0\xe4\x48\x89\x2f\xb8\xac\xb1\x9f\x79\x30\x19\x7f\x72\x54\xaf\x91\x79\x4c\x5c\xb1\x02\xeb\x89\x47\x2c\xb2\x7e\x94\xbe\x8a\xa3\xb1\xae\x52\x57\x37\xfe\x65\x6a\x91\xd2\x70\x37\x39\xe4\xb4\x8c\x98\x9e\x9a\x4f\x9b\x0e\x30\x03\xf2\xe5\x11\x9c\xaf\x45\x84\x68\x8b\x7a\xdb\xcc\x8c\xbb\x95\x29\x35\x3a\xa7\x67\xb9\x50\x08\x67\x19\x33\xe5\x9d\x08\xeb\xee\x41\x2f\x91\xfc\x06\x2e\xce\xd0\x90\xa1\xb3\x00\x85\xa8\x67\x25\xbd\xa0\x39\xd9\x43\x0a\x18\xc3\xee\x2c\x48\x4a\xa8\x38\x92\xe4\xdc\xee\x44\x05\xe4\x66\xfc\x40\xe0\x5b\xef\x2a\xdf\x93\x27\x1b\x09\xe9\x57\x75\xaa\x1b\x73\x8c\x99\x7e\x3e\x6f\xe6\x4b\x17\x0a\x73\xaa\x40\x49\xee\x02\x52\xe3\x65\xe4\xd7\x3a\xd3\xfb\xe7\x7a\x0a\x82\x86\xd1\x57\xe8\x2c\x39\x39\xd8\x52\x52\x64\xbd\x50\x49\xe6\x3e\x3f\xd3\x87\x26\x10\xc2\x11\xf1\xf9\x77\x09\x02\x50\x49\x3c\x9c\x9e\x05\xbf\x1d\xdc\xeb\x4b\x33\xc0\x37\xe2\x21\x1c\x13\x46\xd1\x30\x7d\xd1\x00\x31\x90\x25\x75\x30\xe5\x18\x9b\x93\x23\x98\x48\x83\x0b\x25\x08\x47\xc2\x42\x05\x67\x1e\x49\x26\x74\x64\x00\x2a\xd0\xab\xb6\x2d\x08\xb1\x2a\x47\x37\xe9\x44\x25\x0f\xa9\xc9\x9e\xe4\x53\x29\x82\x72\x11\x7f\x71\x3d\x17\x05\x9f\xf8\xba\xab\x44\x0a\xa9\x27\xc7\x27\xf2\x0a\xd7\xa0\xa3\x6d\xc9\x7f\xb4\xb4\xc1\xdb\x87\x58\x11\x2c\x30\x48\x9d\xe5\xf0\x06\x9e\x18\x7d\xd2\xd9\xc4\x27\xb4\x17\x14\xb9\x72\x82\x25\x8f\x30\x93\xe5\xea\x4e\xac\x1e\xc2\x95\xe7\x47\xf8\x20\x8e\xe8\x42\xfd\x97\x20\xbe\x12\x02\xa8\x72\xed\xba\x10\x26\xd6\xf4\xd8\x60\xe8\x48\x06\x2a\x41\x29\x25\x9f\x4e\x8a\x0d\x85\xa7\xdc\xf1\xe7\x02\xbc\x3a\xb9\x18\x60\xd8\xb5\xab\x8a\x79\x5b\x60\xa8\x5c\xef\x81\x28\x35\x1f\x01\x74\x8d\x04\x7d\x9a\x6a\x17\x36\x46\x3d\xb1\xc6\x8c\x8f\x7d\xf6\xe5\x5e\x61\x81\x42\xee\x6a\x3f\xc5\xaa\xc1\x5e\x62\x04\x57\xcb\x81\x99\x93\x4f\x20\xe8\xcf\x93\xea\x55\x2e\x2b\x32\x4c\x77\x3f\x05\xbb\x61\xbd\x20\xcf\x5c\x53\xc7\xd2\x1e\x2f\xc7\xa2\xe8\x91\xe3\x55\xb4\x40\x96\x36\xea\x02\x88\xcb\x2e\x67\x1c\x14\xca\x71\x42\x0a\xa3\xd8\x14\x90\xb4\xce\xa4\x1f\xd9\x16\x2a\x75\x81\x05\x32\x64\xbf\x5f\xde\xe6\x53\x18\x59\xe8\xf8\x30\x5b\xf1\xa5\x8e\xf1\x36\x01\x14\x8c\x08\xcc\x2c\x93\x4a\xcb\xc5\x32\x88\x6c\x7b\xc4\x6e\x47\x07\x27\x02\x0c\x20\x37\x43\xb1\x86\xdb\x7f\x85\xec\x4f\xc7\xc0\x33\x9e\xc6\x59\x7b\x04\x65\xc4\xbe\x40\x50\x51\x56\x8d\x55\xc1\x5a\xcb\xa1\xe6\x8c\x7c\x77\xc5\x64\xe2\x1f\x48\xa9\xc8\x22\x41\x5e\x0b\x4d\x65\xe0\x72\x40\xc9\x99\x96\x91\x88\xd4\xc8\x86\x7c\x14\x9c\x98\x34\x64\x32\x8b\xc6\x82\xe9\x92\x76\xc7\x8c\x50\x2f\x34\x22\x04\xf2\x9d\x2f\x20\x98\x61\x05\xbd\x0c\xca\xc9\x3c\x61\x00\x8b\xb4\xb2\x79\xc7\xa1\x6c\xf7\x85\x7c\x83\xea\x67\x8b\x4e\x51\xe8\x52\xa3\xe4\x5c\x88\x85\x78\xd3\xc7\xfa\x82\xb7\xad\x27\x63\x1e\xa5\x11\x19\x59\xa1\x0d\x7e\x90\x6b\xac\x4c\x6d\xed\xa0\x64\x39\x41\xc2\x1b\x70\x49\x80\x11\x32\x16\x6e\xe6\x62\x0f\x52\x6d\x28\x8b\x5c\x9c\xa1\xb8\x7e\xd8\x84\xda\xb5\x0a\xa1\xf2\x80\x57\xc5\x7a\x6b\x3b\xe9\xa0\x11\x28\x03\xe6\x83\x8c\xe0\x48\x6e\xb6\xad\x30\xb7\x04\xbe\x0e\xa0\x58\x41\x19\xf0\xb4\x45\x66\x82\x69\xa4\x41\xa4\x12\x44\x13\x69\x8b\x44\xdc\xdd\xf1\x00\x00\x28\xa3\xee\x3d\x9e\x4e\x48\x8d\xc5\x85\xa6\xa7\x9e\xae\xf9\x4f\x6f\x32\x8d\xbd\x39\xaf\x0e\x66\x44\x3b\x0e\x3e\x61\xc0\x47\x05\x65\x11\x91\x03\xdc\x5f\x30\x8b\xf1\xed\x13\x72\x29\x82\xbb\xee\x1b\x87\x58\x2d\x0a\xfd\x02\x19\x94\x32\x39\x10\x9c\x20\xa9\x6a\x69\x2a\xad\x67\xb7\xe3\xf1\x5c\x82\x7e\x89\x69\x02\x4f\x99\xcf\xff\x97\x20\x86\xe5\x8d\x92\x95\x7d\xc5\xef\xcc\xb7\xbd\x2a\xc1\x27\x98\x5f\xb5\xcb\xb9\x6a\xe4\xe7\x9f\xdb\xcf\x54\xa8\x35\x49\xf6\xec\x57\xe1\x95\x81\x02\x67\x9d\xce\x05\x7b\x70\x8b\x88\xb6\xa0\x96\xf3\xfe\xe1\x04\x88\xc2\xa7\x2a\x25\x28\x8e\x5d\xf3\x92\x11\x67\x39\xf2\x42\x2d\x1d\xa4\x5d\x10\xbe\x2b\x3b\x2c\x52\xfb\x86\x40\x02\x31\x5e\xf2\x60\x2b\x56\x3d\x60\x26\xff\x76\x91\x13\x7f\x81\x37\x6e\xc8\xcf\xfa\xbd\x23\x0e\xe6\x31\x76\x79\x4e\xf1\x81\xbc\x90\xcd\xaa\xf8\x0c\x6e\x13\xf6\xe7\x6b\x8b\x0c\x5f\x9a\xab\xf7\x05\x51\xf4\xe4\x03\x4f\x44\x68\xd0\x5a\x76\x37\x0d\x22\xd7\x77\xb0\xb7\x52\x50\xfb\x0e\xb2\xc2\x1d\xb2\x40\xd2\x72\x0e\x9d\x94\xc6\x94\xe6\x20\x08\xe0\x20\x0d\x9b\x05\x49\xd8\x55\xce\x48\x6d\xa8\x41\x80\x16\xcb\x01\x55\xd4\xf0\x5a\x11\xc3\x86\xa2\x84\x1b\x81\x34\xf6\xf3\x7e\x24\xbb\x58\xab\x70\x35\x56\x7e\xfd\x0c\x8a\x8d\x0c\xe2\xd7\xa3\x04\xfc\x80\x90\x95\x94\x47\xa8\xf6\xf7\x0a\x63\x08\xdd\x64\xdd\x65\x53\x15\x60\xd4\x01\xda\x94\x61\x7e\x76\x5d\x1f\x3c\x4b\x9d\x6b\x02\x9e\xc8\xd2\x86\x53\x12\x02\x99\x65\x0b\x54\x95\xcc\x46\x01\x37\x48\xec\xa4\x50\x5e\x48\xfb\xf0\x1c\xc0\x21\x3f\x6d\x84\xef\x22\x08\x79\x68\xcf\xb8\x90\x84\x41\x08\x1f\xcb\x64\x6b\x91\x60\x09\xab\xc1\x44\x82\x31\xf0\xa8\xbb\x1d\xdd\x2b\x45\x18\x9e\x9e\x4d\xbb\x4a\xe2\xeb\xb5\x4b\x15\x61\x45\x8c\xb4\x9a\x1a\xc3\x51\xd7\xb9\x87\x04\x38\x77\xa0\x58\x1f\x53\xbd\xbe\xc6\x78\xf5\x19\x9c\x2a\x20\xdd\xf0\xb7\xb8\xc4\x47\x22\x3b\x01\x01\x75\x84\xe4\xba\x53\xbe\xad\x26\xf6\x64\xa3\xfd\x70\x4d\x7f\x9e\x4d\x71\x71\x09\xc6\xc7\xe9\x44\x36\xd8\x6d\x64\xca\x58\xe9\x48\x1d\x93\x65\x91\x95\x73\x0a\x25\xd1\xe9\x57\xa9\x16\x67\x41\xd2\x75\x44\x47\x4b\x4a\x87\x28\x0f\x83\xc1\x8b\x09\xd0\xe7\xed\x5b\xa1\xe5\x87\x68\x64\x3b\xb1\xc2\x87\x48\xa0\xd3\xc0\x60\x0a\x05\xb0\x78\x3a\x9f\x80\x00\x75\x27\x07\x00\xfd\x0a\xe2\x63\x8e\x01\x69\x86\x7f\x76\x31\xa5\x92\xa6\xfa\xa1\x8b\xf1\xc6\x61\xe8\x5d\xf6\x06\x99\xe1\xe6\x48\xcf\x4c\xc4\xf8\x20\xf0\x79\xcf\xf4\xe7\x93\x66\x99\x7c\x1a\x98\x89\x47\xa5\x94\x16\x6b\x87\x6f\xc2\x20\x02\x3a\x1c\x2f\x1a\xe0\x22\x77\x69\x6c\x34\xc1\xec\x2d\xd6\x11\x55\x8f\xc6\x97\x44\x86\x39\x43\x34\xc7\xf9\x98\xe1\xf7\x09\x85\x54\x36\xf5\x87\x2c\x68\x20\xcc\xc2\x03\xaf\x81\x1f\x07\x9e\xc3\x0a\xeb\xc4\xa1\xd8\x19\x12\x7c\x20\x71\xe6\x74\x98\xad\x74\xb0\x9a\xb3\xb0\xfa\xa6\xb0\xd4\x9f\xc7\xeb\xc2\x6b\xc5\xa5\xd4\x79\xee\xed\x45\x5e\x08\x29\x99\xa8\x8c\x1a\xb4\x3b\x06\xe8\x1c\x63\x63\x34\xa7\x80\x72\xb0\x11\x09\x9d\x9f\x37\x07\xd2\xef\x22\xb0\xf4\x52\x30\x07\x21\x86\x6b\x6d\x55\xcf\x8a\xf2\x26\x16\x85\x2c\x3d\x25\x1b\x22\x7e\xc5\x9b\x07\xf9\xd5\x71\xd3\x52\xb7\xe2\x8f\x34\x26\xe6\x1e\xa9\xbf\x5d\x22\x0e\x03\x3d\x32\xfc\x4a\x04\x9f\xe9\x8c\x30\xca\x5a\xa1\x1a\x2e\x0a\x1b\xc1\x20\xb3\x35\x8a\xd6\x24\x3c\x5b\x1a\x3e\xcb\x01\xe4\x13\x4a\xc4\xc2\x9c\x72\xd6\x6b\xad\x50\x80\x21\xde\x8d\xc6\x50\x02\x53\x41\x7e\x51\xa8\x3d\xad\xfd\x33\xae\x18\x6d\xfc\x19\x39\xe9\xd8\x50\x97\x12\x11\xe5\x03\xa3\x6e\xe8\xe0\xed\x46\xa8\xb2\x12\xee\x64\x70\x1a\x21\x74\xba\xbb\xd8\x11\x26\x35\x30\xa6\x02\x60\xb7\x7e\xb2\xd0\xb1\x7a\x6a\x3f\x36\x27\xdc\xf1\x87\xdf\x4c\x17\xf3\x02\x42\x00\xe0\xcb\x65\x3c\x05\x45\x60\x01\xdc\x57\x29\xee\x47\x02\xb5\x3c\x57\x6e\x92\xef\x49\xc3\x86\x93\x19\x91\x54\x09\xc2\x89\x10\x28\xfb\x99\xc2\xb0\xbc\xb2\xf5\xbc\xe1\x5a\xc7\x38\x91\x61\xe9\xb0\x90\xf3\x4a\x27\x6c\x8c\xd0\x52\x06\x42\xce\x51\xde\x44\xbb\x1b\x52\x8c\x2b\x21\x11\xce\x99\x11\x09\x60\x3c\x8c\x00\x95\x02\xad\x1f\x14\x04\xe7\xfe\x22\xb4\xa1\xf2\xb9\xf8\x9e\x9f\xdf\xa3\x05\x22\x70\xd4\x4e\xc9\x0a\x8f\xe8\x82\xf0\xc5\xa3\x11\x69\x15\x50\xda\xd2\x42\xb1\x63\xa5\x92\x17\xc5\x24\xef\x14\x20\x9e\x46\x8a\xab\x39\x58\x16\xcf\xa6\x42\xbe\x34\xe1\xed\xd6\x9e\xb0\x64\x8c\x2d\x85\x73\xa3\x61\x8e\x72\x33\x3c\x57\x6e\x53\x3c\x28\xb9\xb4\x22\xe2\xe7\x0f\x56\xcf\x08\x49\x1b\x5c\x41\x59\x07\x0a\x5b\xdc\xfb\xa0\xac\xaa\xc0\x81\x64\x08\x85\x0b\x73\x94\xea\x6a\x5c\xa0\x06\x8c\x3d\xf1\x90\x41\x0f\xe9\x4d\xc1\xc5\xb0\x24\x06\xcc\x2f\x42\x64\xdc\xb8\x4d\x68\x1a\x91\x35\x20\x29\x13\x91\xd8\x29\xdc\x18\x4c\xcb\xb4\x38\x81\x42\xb6\x01\x03\x9d\x28\xa9\xdb\x94\x98\xf8\x1f\x95\x7d\xf4\x6d\xbf\xef\xf3\x68\xdd\x04\x41\x5a\x56\xce\x69\x47\xa8\x14\xfd\xf7\x2f\x93\x9f\xb5\x1d\x51\xd0\x47\x16\xde\x06\xd9\xb4\x8b\x5c\xa6\xc6\x40\xc9\x06\x9c\x1b\x7c\xd9\x79\xa3\x52\xe8\x07\xf5\x7c\x09\xc2\x15\xc1\x5d\x8d\xa2\xc9\xc9\xa3\xc1\x16\xdf\x4e\x22\xa2\x6e\x92\x2c\x04\xee\xbc\x1f\xe6\xf5\xa6\xf2\x35\xba\xe6\xa3\xad\xd2\xf0\xc2\x24\x4a\x93\xf4\x60\xda\x86\xb0\xd2\x71\x7d\x05\x22\x3d\x72\x56\x69\xe2\xa3\x25\xcc\x27\x94\xc7\x01\xb0\x52\x6a\x23\x70\xad\x88\xaa\x8f\xb7\x62\x40\xfb\x43\xa5\x74\x88\x10\xc4\x3b\x21\xab\x13\xfb\x49\xde\x5c\x6e\xb7\x1c\x65\xf7\x04\xd6\x0d\xfa\x64\x4b\x10\x86\x64\xd8\xe4\xe2\xdf\x60\x82\x70\x0a\x37\xba\xc0\x09\x9f\x35\xca\x7f\x0d\x16\x18\x4d\xa0\xbf\xbb\x1d\x68\x91\x26\xf3\xe1\x8f\xca\xf2\xc0\x02\x4a\x9c\xde\x55\x05\xfe\xdd\x3d\x63\xa5\x02\x23\x21\x47\xce\xa8\xc0\x12\x59\x74\x40\x2c\x92\x70\xbf\xe4\x98\x81\x05\x2e\x6a\xb9\xef\xf7\xac\x8e\x2c\xf6\x9b\x78\x68\x42\xa7\x74\x60\x73\xd7\x76\x99\x95\xd2\xea\xf7\xd2\x72\x50\xa2\x5a\xd6\x53\xaf\xf3\x49\x64\xae\x94\x21\xc8\x98\xce\x3b\x57\xa7\x4b\xb9\x08\x1c\x2f\xee\x13\xf8\xd9\xbc\x15\x96\x1f\x9e\x27\xf9\x8d\x41\x53\x52\xb0\x5d\x46\xb4\xd2\xea\x8e\x78\xa1\x1b\x7f\x11\x8b\x50\x99\xd8\x30\x50\x24\xb2\xb9\x5d\x6f\x00\x1d\x55\x80\x8b\x86\x14\x40\x3b\x6f\x35\x49\x00\x3c\x63\xe8\x5a\xad\xef\xce\x5a\xde\x97\xa6\xd1\xff\x68\x02\x95\x3d\x00\x33\xf8\xf1\x6d\xfb\xcd\x24\xd4\x1f\x31\xd1\x78\xdd\x66\x02\xc9\x22\x1f\xcd\x04\x80\x1c\x58\xdc\x38\x1b\x45\x54\x9d\x16\xc2\xe4\xdf\xe1\xe4\xac\x83\xf0\x92\x0e\xde\x95\x05\xb2\xdd\x46\x71\x1f\xd6\x07\xcc\x72\x55\x50\xb4\x77\xdb\xbe\x0d\x63\xda\xaa\x47\xe7\x01\x90\xba\x8d\xc6\x9b\x46\xef\x80\x6e\xa9\x6c\x10\x51\xe8\x1a\x0f\xc8\x58\xe6\xcf\x7d\x4b\x95\x73\x20\xf3\xa2\x37\xdc\xc5\xf4\x45\xd2\xc7\x44\xdd\x14\x73\x72\xa4\xe5\xcc\x7c\x68\x58\x52\xe1\x24\x72\xaa\x1e\xc8\xc5\x71\x79\x0f\xea\x0f\x42\xd0\x2e\x16\x0a\xb1\x09\x12\xb2\x4d\x2a\x8b\x83\x62\x44\x86\x7d\x03\x29\xb1\x0e\xa1\x21\xb2\xc7\x9a\xbc\x24\xcd\xb1\x92\xe9\x84\x1f\xef\x8d\xf2\x75\xec\x84\x49\xdb\x89\x90\x1c\xe0\x19\xb7\xa4\x26\x20\x49\xce\x30\x55\x67\x73\x05\xdb\x44\x0d\xe6\xff\xa6\xbd\x66\x64\xd3\xe8\xf5\x08\x55\x87\xab\xe3\xfe\x40\xe5\x61\x30\xb1\x37\xb9\x0b\x0d\xc1\xef\xb4\x64\xf8\xe2\x69\xc6\x89\x36\x8b\x94\x8a\x1f\xd7\x32\xa4\xdc\xf1\x38\x61\x89\xaa\x7b\xdb\xc7\x00\xb4\x8d\x3d\x18\x93\x25\x38\x44\x8e\xa2\x2d\xf1\xdc\xca\x52\xd0\x4c\x09\xe7\x55\x1d\x72\x90\x4b\xc9\x1e\x30\x9c\xb3\x48\xf4\x99\x35\x55\xad\x10\xe5\x48\x56\x4b\x67\x7c\x2f\xc9\xa4\xdc\x47\xea\x15\x6e\x9f\x0e\x0f\x3d\xb4\x97\x0d\x82\x89\xbc\x77\xd4\x6b\xf9\x6b\x6f\x20\x54\x06\xfd\x17\x81\x0a\x48\xa1\xd6\x9e\xe7\xa6\x91\xa2\x76\x1f\x9f\x06\x02\xc3\x7d\x12\xb7\x12\xb2\xfe\x4a\xe1\x99\x48\xeb\x71\x66\xd4\x51\x01\x74\xd1\x2e\x03\x35\x29\x90\xcc\xa6\x80\x13\x88\xe0\x99\x84\x49\x1a\xf4\x42\xfe\xb5\xb7\x91\x4c\x3d\x0d\x11\x3b\xba\xcf\x4d\xae\x0a\xd7\x34\xa4\x47\x99\x4f\x1a\xbc\xaf\x63\x0e\x17\x57\x77\xf1\xac\xdc\x59\x47\x9c\x02\x68\x5d\x72\x22\x59\x48\x9a\x38\x3b\x48\x56\x62\xc2\x21\x78\x5c\x5b\x23\x72\x2a\xcc\xa5\x5f\x0f\xd2\x93\xf1\x31\x34\x5d\xae\x80\xa5\x54\x86\xdd\x98\x0a\x6d\x7b\x67\xaa\xc5\xc4\x98\x3a\xf3\x24\xd8\x3e\x8d\x8c\x95\xc4\x1e\xf2\xe6\x45\x1c\x3e\xa0\x45\x19\xa2\xd3\x5c\x31\x79\x65\x67\xd3\x81\x2a\x24\x9f\xa6\xb4\xda\xd0\xb2\xc0\x3b\x44\xad\x06\xb9\x56\xd8\x59\x49\xac\x1b\x12\xec\xae\xc4\x07\x08\x25\x25\x90\x1e\xe1\x5d\x88\x08\xfa\x0e\x42\x6e\x41\xd7\xfe\x1d\x23\x42\x7e\x84\xda\x07\x57\x0d\x3d\x9a\x3f\x4a\xeb\x7f\x51\x7a\xbc\x6d\x30\x0a\x89\xda\x5b\x03\xd3\x48\x73\x4a\x83\x6a\x98\xa9\xba\xd5\xbf\xa6\x8c\x93\x78\x8d\xa3\xff\xb7\x81\x61\x79\x04\x58\x3e\x52\x48\x38\xc9\xde\xcb\xac\x2b\x6c\x56\x86\x7a\x5b\x6a\x24\xc1\xa2\x19\x6b\x89\xab\x8c\x01\xb0\xfa\x91\xee\x0a\x66\x0d\x65\x91\xed\x15\x80\xda\x9f\x6c\x01\x9b\xb9\x2c\xf3\x82\xac\x8f\x06\x46\x50\x12\xd4\x90\xe9\xd4\x83\x09\xb4\x38\xcb\xc0\x5e\x2e\x3f\x09\xaa\xf1\xba\xc5\xe7\x84\x16\x9b\xe7\x8b\x2e\xe7\x46\x92\x80\x5d\x71\x0f\x30\x2c\xdf\xce\x8c\xf3\xd2\x72\xaf\x18\x2c\x81\xcc\x8d\x12\x81\x7d\x70\xfc\xa1\x2d\x59\xb2\x8c\xf5\x17\x2b\x1d\x7a\x79\xcb\xaa\x8c\x67\x85\x3a\xd0\x7c\xde\xc7\xf1\x6f\xd3\x64\xc1\xe6\xf7\x94\x5a\x32\xcc\x55\x11\xa9\xb8\x0f\x78\x4f\x94\xe8\x38\xc3\x41\xc8\xcc\xbc\x1a\x26\xcb\xce\x01\xa9\xa9\xea\xe4\x91\x4d\x4d\x22\x2a\xfa\x85\x62\xa8\xc7\x6d\xf3\x3d\x1a\x4a\x12\x65\x66\xc3\x1c\xb0\x36\x62\x33\xab\x41\xc1\xc3\x18\xb1\x8e\x52\x33\xcb\xb5\x2e\xc5\x0a\xad\x67\x38\x0a\x55\x84\x7c\x20\x4e\x15\x10\x18\xec\x18\xb2\xeb\xf4\x68\xf8\x33\x87\x8c\x75\xe4\x5b\x75\xd2\x33\x5f\x31\xca\x22\x20\xb5\x65\x9a\x33\xc3\x82\xe9\x60\x15\x87\x31\xd7\xa5\x06\x4b\x01\x80\xd3\x70\x48\x34\x6a\x84\xaf\x8e\x1b\x95\x5c\xa7\x25\x03\x96\x43\x6a\xf2\xb6\xd2\xc6\xd6\x08\xd1\xb0\xb2\x57\xb3\xa4\x96\x1d\xad\xcc\xba\xc8\x75\x9e\x6a\x59\xb6\xab\x33\xda\x18\x15\xbf\x62\x25\xb9\x52\xe6\x71\x5d\xd4\x68\x81\x1f\xbc\x67\x30\xc8\x26\x2a\xa0\xe5\x92\x38\x20\x9a\xa2\x8b\x41\x9b\xcc\xf9\x03\xea\xbd\xf5\xd9\x61\x59\x8c\xcb\x2c\x67\x0c\xd5\xa5\xbf\xcb\x66\x6e\x59\xb8\x52\xa1\x51\xaa\xdf\x91\xf1\xd3\x57\x20\x62\xa9\x20\x22\x73\xde\x20\x85\x13\x13\x3c\x47\x5e\x00\x2c\x86\xd9\x44\x9c\x4b\x04\xd2\x21\x48\xbc\x40\x19\xfe\x5c\xa0\x43\xb4\x8f\xec\xa5\x0a\x17\x89\x08\x5a\xa2\xbb\x3d\x18\xd0\x5a\x13\x0c\x60\xfb\xd9\x7d\xba\xb4\x36\xc4\xc0\x38\x22\xfa\xc2\x5d\x64\x9c\x8d\xc7\xda\x3c\x3e\x31\x30\x76\x66\xf9\xe5\x8d\x08\xa8\x8e\x72\x82\xf6\x12\x3a\x0b\xee\x2c\x65\xb0\x08\xad\xa5\xd4\x6f\x91\x1b\x00\x37\x94\xd9\x17\x37\x4b\x55\xaf\x61\x4a\x97\x82\xdc\x8c\x8a\x03\xfd\xa7\x4e\xc9\xa0\xb4\x02\xb8\xda\x4d\x73\xec\xb4\xda\x6a\x89\xdb\x0a\xaf\x0c\xa4\x6d\xef\x11\xdb\x00\x05\x40\xfa\xbf\x87\x15\xc1\x0b\x19\x25\x4c\x3c\x2c\x35\xd8\xf8\x81\x33\xf1\x37\xa9\x27\x86\x2f\x5a\xe6\x64\x87\x0b\xf4\x22\x39\x66\xb2\xd0\x52\x99\x67\x45\x68\x92\xf2\x7a\x96\x9f\xde\x8c\xff\x4f\x77\x9f\xd1\x99\x03\x26\xe8\x82\x1b\xf0\x24\x6b\xf0\x05\x39\xfa\x01\x4a\x11\x61\x02\x80\x52\x74\xa6\x2f\xe1\xad\x01\x10\x26\x94\x18\xea\xc4\x2c\x09\x90\xb4\xf6\xef\x38\x21\x25\x0d\x39\x29\xf0\x8c\x8f\x0b\x59\x35\x10\xa1\x77\xdb\xa4\x44\x91\x5c\x37\x48\xe2\xec\x09\x82\x59\x43\x01\x4b\x22\x0e\xc2\x93\xda\xc0\x1f\xf6\x21\x7d\xce\x3b\x1a\xf0\x33\xe4\x21\x60\x4d\xbb\x2c\x49\x86\xb1\x27\x09\x14\x21\xf2\x6e\xf7\x49\x7d\x87\x90\x0e\x01\xdd\x42\xcb\x39\x88\x55\xb1\xd0\x65\x67\x29\xf3\xb7\xdd\x4d\x94\xed\x64\x6e\x91\x55\x85\x1e\x90\x03\xa8\x32\xcb\x53\x4e\x0e\xd6\xab\x15\x26\x32\xcd\xf0\xbf\x79\x4b\x54\x89\xda\xb1\x89\xed\x29\xc6\xca\x58\xb5\x5b\x2b\xd7\x3f\xf3\x81\x7e\xed\x45\xc0\x38\x91\x9d\xbc\x61\x7a\x24\x38\x6e\xa8\x10\x5b\x5b\xa0\xb6\x15\x16\x00\xe5\xa6\x30\x44\xc1\x70\xce\x2f\x18\x6a\xbc\x03\xc5\xed\xd9\xf3\x07\xff\x99\x07\xb5\x23\x79\xe4\x9a\x7b\xf6\x9d\xc5\x88\x74\x59\x0a\xe0\xf0\x1f\x71\x14\x34\x55\x3b\x96\x6a\x27\x3b\x5a\x42\xe2\xf4\x71\xd1\x6c\xb6\xe3\xe7\x0d\xe7\x10\x52\x4b\xb8\x8e\xf8\xb3\x57\x16\x9f\x72\xf9\x5e\x7c\x8b\x2e\x27\x21\xbc\xc2\x55\xbf\x9e\x02\xad\x9c\xe1\x92\x3f\x66\x40\x5e\x79\x0c\x38\x65\x46\xe5\x80\x8a\xd1\x4e\x28\xd1\x6c\x24\x3d\x54\x27\x1c\x5a\x28\x04\x4c\x16\x82\x16\xcd\x83\x09\x14\x62\x89\xd0\xc0\x55\x5d\x95\x06\xb8\x7e\xed\xb9\x18\x41\x12\xf6\x3c\xde\x4d\x8d\x26\x84\xfe\x97\x95\xae\x49\x8d\x11\x4a\xfa\x52\x0d\x81\x55\xdd\xae\x4d\xc9\x81\x14\x2c\xe8\xd1\xe4\x44\xd8\xcd\x47\x3f\x20\xe5\x64\x88\xb0\x58\x83\x1d\xe1\xc7\x16\xe6\xe4\x4c\xc7\x2c\x21\xe3\x4b\xfd\x48\x1b\x29\x9f\x2b\x46\x44\x48\x74\xcd\xde\x8c\xcc\x3c\xa7\x27\x14\x31\xcc\x64\x24\x27\x14\x5b\x89\xf1\x81\xfc\x39\x8c\x77\xa3\x0d\xdd\x87\xb0\x0d\x63\x0e\x85\x2d\xda\x25\xa4\x78\x08\x67\x18\x6b\x49\x80\x61\x02\x50\x39\x14\x01\x33\x75\xd1\x5e\x2e\x8a\x76\xee\xa1\xe7\x63\x9a\x9e\x4a\x6f\xdc\x70\xbc\x6e\x4b\x0a\x85\xb0\x51\xcd\x53\x1b\x6f\x0c\x2a\xce\x4c\x39\x9d\xbc\xa4\xbd\xc3\x88\x70\x3c\xdd\x79\x8e\x4b\x85\xc3\xe9\x0f\xd7\xfe\x6a\x73\xe8\xa4\xa4\x6d\x91\x93\x8b\xdc\x72\x1c\xda\x5f\x01\x40\xed\x5a\xb8\x7d\xcc\x8b\xee\xc4\x77\xe7\xeb\xfc\x23\x81\xcd\x70\x91\x88\xe1\xbc\x5d\x71\x7b\xa0\x73\xf5\x38\x81\xdd\xe3\xd3\x0f\xf3\x5b\x77\x8b\xc6\x75\xb6\x56\xf8\xac\x91\xad\xc8\x8a\x09\xe3\x5a\x3c\xda\x4c\xa8\xa7\x99\x9a\xe0\x1e\x39\x8d\x14\x0c\x3a\xe5\x5d\x10\x4e\xae\x3c\x12\x31\x8c\x70\x81\x6a\x86\x69\x50\xfc\x63\x58\x5e\x16\x63\x18\x95\xa8\x83\xc2\x22\x98\xc2\x58\x1e\x6a\x4a\x1d\x84\x86\xe0\x8e\x30\x91\xab\xd4\x94\x38\xb3\x1f\xf9\x0f\x76\xa3\x9c\xa5\xa0\xd4\x4e\x95\x64\xa4\x33\x51\xe2\x70\x80\x2b\x95\xca\x49\xc0\xa0\xf8\x30\x6d\x3b\xa3\x71\x28\x8f\x60\xba\x72\xd6\x20\x1c\x6a\x47\x7d\x73\xea\xc1\xd2\xe1\x81\x42\x29\x1a\x03\xb9\x8b\x8f\x8b\x5b\x1a\x5f\xc2\xb3\x39\xb5\xf3\x51\x6e\xe9\x35\xb9\x83\x02\x8c\x59\x64\x08\x04\xc2\x18\xc8\x7e\x0c\x08\xe8\x99\xc0\xe2\xa8\x8e\x1c\xa4\xe6\x62\x2a\x69\x11\xcf\x2f\x61\x74\x14\x9b\x18\x18\x12\x16\x56\x33\x1f\xb8\x64\x3f\x04\x05\x35\x60\x98\xc5\x36\xec\x77\xf2\x29\x49\x2a\x2f\x76\x8a\x15\x4b\xbd\xde\xb0\xe8\x8d\x08\x13\xac\x47\x66\x44\xa0\x68\x88\xe3\xe0\x51\xf4\xf5\x07\xb3\x48\x00\x96\xb4\x94\x4a\xee\x20\x00\xd6\xb5\x9d\xc1\x04\xde\x55\x5c\x46\x0c\x59\x99\x0f\x59\xd5\xa1\x82\xe2\xd8\x9a\x5d\x89\xda\x31\xa7\xe1\x0c\x22\xb6\x62\xc1\xc0\x1a\x61\x85\x9a\x54\x0e\x57\xdd\x87\x41\x69\x6b\x0a\x08\x95\x60\xe7\x6e\x93\x78\xa7\x4e\x44\xdf\x4c\x86\x55\xe7\x70\x79\x43\x66\x92\xc8\xa4\xb5\xec\x6e\xb6\xbc\x17\x6a\x9d\x58\x44\x03\xcd\x16\x46\x80\xd4\x04\x2a\xdb\x4b\x5c\x5e\xad\xf9\x36\xee\x9c\x3e\xc1\xd4\x57\x2c\xbe\x59\x46\x48\xd7\x91\xb2\xf4\xce\x76\x0e\x68\x24\x8e\x88\xc3\x40\x16\xe3\x10\x94\xe0\x51\x68\x0b\x16\x9e\x90\x7e\x8c\xdc\x00\x84\x26\xe4\xe2\xae\x57\xdf\x98\xba\xa7\x31\xd2\x99\x4e\x42\x90\x62\x2f\xaf\x60\x8a\xca\x48\xe1\x59\xe5\xa3\x96\xbc\x8d\xcf\xd1\xfb\x62\xd5\xe0\x32\x94\x5b\xb9\x40\x36\x7e\x58\x54\xc8\x66\x48\x00\x33\xbe\x09\x2a\x83\xb3\x07\xc2\xec\xbc\xc7\x2a\x30\x81\x06\xe0\x5e\x3e\xc3\x7c\xf5\x0b\x9b\x51\xeb\xda\x37\x86\xbd\x1e\x6c\x9b\xc2\xf5\x4f\x56\xad\xaf\xc5\x11\xb8\x1e\x4d\x33\xd6\x06\xb0\xa9\x8f\xd6\x06\x95\x30\x5b\xa9\x0a\x03\x3e\xa1\x49\xdc\xe2\x76\x6a\x7e\x57\x37\x20\x70\x0f\x57\xb1\xf8\x6a\xa8\x62\xde\xde\x6e\x40\xd3\x5e\x6a\x4f\x34\x02\x97\xa2\x8b\xf2\xf7\x4a\x62\x79\x90\x76\x16\x8e\xa1\xf6\xa4\x1e\x63\xcd\xa1\xc4\x28\xb1\x8d\x26\x3a\x2d\xa5\x79\x7c\x4c\x8f\x07\x51\x74\xde\xdf\xd3\x78\xa2\x33\xb6\xd0\x39\x24\x03\x01\x88\xdb\x62\xe2\x62\x82\xab\x97\x94\xe5\xa1\x07\xe5\x84\x36\x14\x3c\xd6\xfc\xb0\x88\x54\xc5\x0c\x73\xc8\x28\x6c\x40\xb3\x81\x22\x58\xb2\x7c\xb2\xa9\xc7\xf9\x40\xf3\xa2\x03\x5d\x32\x27\x8b\xaa\x9c\x18\xb0\x1d\x0c\x64\x83\x93\x8c\x70\x72\xda\x46\xc1\x15\x11\x90\x3b\xe0\x68\xf6\x9d\x78\x66\x1c\x90\x25\x53\x83\x15\x83\xa1\x7d\xd1\x62\xe5\x06\xf8\x1e\xbb\x4f\xbe\xdd\xe4\x0b\xf1\x13\x94\x37\x49\x69\xb9\x14\xca\x90\x75\x72\x9f\x59\xc7\x6d\xc4\x92\x31\x57\x52\x4a\x8c\x40\x72\x50\xc8\x1e\x63\x10\x80\x84\x62\x25\x58\xd4\x09\x47\xad\xc4\x94\xa0\x08\x88\xf0\xf6\xcc\x22\xc5\x40\xd6\xef\xc8\x3e\x07\x3b\x60\x08\xb0\x95\x68\x90\x3d\xd1\xb8\x1f\x80\x82\x29\x92\xc2\xb2\xd7\x24\xd3\x5c\x06\x99\x0c\x44\x0b\xbd\x40\x4f\x80\x1a\xa2\x78\x01\x91\x75\x0c\x2f\x4e\x6b\x27\x5a\xbf\x50\x0a\x45\xb0\x3d\xa2\x44\xb9\xa6\x2e\xd0\x6c\xe7\x5f\x30\x29\xe0\x21\x70\xcd\x6d\xd6\xe4\x09\xb5\x45\x68\x9e\x75\xb2\x74\x1a\x1f\xa0\xbd\x18\xd6\x25\x84\x6c\x67\x55\x16\xf7\x5c\x16\x06\xb1\x1e\x63\xa4\x77\x2d\x21\x49\xfa\xc2\xcb\xa4\x00\xc6\xc1\x02\x42\xbe\x26\x10\x4b\xb4\x2c\x9d\xba\x18\xeb\x81\xab\x82\x24\x8b\x9a\x22\x56\x79\x55\x2e\x8c\x6a\x77\xaf\x50\x0b\xe5\x59\xd1\xfb\x93\xe3\x41\xc9\xc2\x0a\x6e\x12\x7c\x5a\x88\x05\xde\xa4\x42\x84\x36\x8d\xa6\x3f\x53\x70\x95\x28\x76\x3e\x1a\x0d\x2d\x34\x14\x26\xf5\xb2\xfe\x0c\x03\xaa\xe2\x58\x66\xcd\x83\xc4\x18\xf0\xdc\x2e\x21\x81\xc5\xac\x04\xce\xcf\xcf\x82\xd1\x0b\xa2\x67\x24\xc6\x90\xce\x21\x87\x31\xab\x40\x78\x79\x2e\x04\x93\xee\x7c\x21\xe0\x50\xd7\x36\x43\x56\x8f\x4f\x39\xf0\x87\x11\x12\xf2\x88\x78\x29\x9b\x08\xdd\x0d\x93\x4f\x25\x78\x30\x2c\xd1\xcd\xb8\x5c\xf5\x06\x6c\x14\x9a\xf3\xff\xe5\x00\x06\x30\xaf\xd1\x16\xb4\x87\x9b\x0e\xd0\x0c\x98\x2e\x17\x5b\x8a\x13\xf1\x15\x44\xb2\xa9\x3e\xdd\xb0\x52\x6d\x1a\xfa\xcb\x3a\xdb\xfc\xf4\xa6\x55\xf3\x3c\xcd\x5d\x82\x8f\xd5\x42\xa3\xa0\xb4\x91\x2b\xad\x68\x62\x80\x90\x10\x36\xf1\x9b\xea\x4e\xd5\x84\x30\x48\x02\x35\xfd\x4e\x58\x0e\xa8\x6c\x16\x13\xc1\x00\x6b\xa1\x03\x29\x86\xbd\xe8\xaf\x16\xb5\x44\x31\x70\x5b\xaf\x22\xf4\x6e\x79\x6e\xa0\x29\xd3\x55\xcd\x80\x1a\x80\x1a\x75\xe6\x00\xe2\xb3\xbb\x70\x43\x39\x71\xcc\x91\xd1\xc0\x64\xf6\xb8\x6b\xc9\xb3\xd8\x2f\x2d\x4c\x34\x8e\x40\x14\xf8\xea\x71\x00\xc1\xce\xb9\x0a\xd0\x4d\x01\x04\x52\x36\x30\x01\x38\x05\x90\x7c\xf4\xa0\x8c\xd2\x2b\xac\x2d\xc0\x30\xd6\x0f\xd8\xae\xb3\xd0\xa6\x74\x54\xa6\xb1\x45\xbe\x14\x2d\xfd\x32\x5d\xf8\x05\x9e\xfe\x08\x3d\x03\xb3\x57\x67\xf0\x20\xde\xf8\x00\x28\x7e\xa3\x40\x0f\x83\xc4\x17\xb0\x91\xe0\x90\x26\x81\x85\xdd\x81\x8e\x16\xf0\x90\xce\x89\x09\xd7\x15\xe1\x44\x00\xdc\x56\x01\xfd\x00\x98\xed\xfd\x2b\x1a\x61\x55\xd9\xb0\x8a\xf0\x1b\x1d\xa0\xa3\x8c\x1c\xac\xc0\x2d\x48\x42\x24\x66\x56\x69\x1d\x99\x5d\xd5\x72\xaf\x98\xe9\xbc\x09\x38\xf9\xa2\x91\xd6\x29\xc2\xad\x22\x59\x24\xa8\x98\x07\xec\x64\x61\xcc\xb7\x18\xa8\xdc\xd2\x7b\x60\x84\xa7\xed\x6b\xcd\x58\x35\x13\x85\x55\x80\xee\xbb\x16\x55\x6c\x1f\xcf\x54\xc7\xb6\xc1\xc4\x8d\x7e\x2d\xb9\xe8\xd1\x81\xa4\xb0\xe1\x64\x28\xf5\x95\xd2\x59\x8a\x84\xcb\x95\x9e\xc3\x9b\x8f\xc5\xc2\x07\x9b\x3d\x96\xcc\xb1\xa4\xe3\x02\xe1\x63\xb2\x28\x2e\x4e\x6d\x8c\x4f\xe1\x8b\x34\x0c\xc0\x23\x47\xa9\x8c\xdd\x60\x14\x1b\x34\x03\xa7\x78\x91\x26\x80\xfc\x60\x5f\x9e\x40\x29\x26\x4a\x4f\x56\xd3\xb1\xe7\xe0\x54\x54\x43\x82\x2f\x5c\xa2\xb4\xf0\xe5\x56\x2c\x68\xa8\x14\x13\x45\xa4\xb1\xd5\x08\xf1\xc3\x4c\x30\xe8\x37\xd0\xd4\x60\xaa\x53\xec\x82\xb9\xa5\x13\x6a\x9c\x42\x96\xdb\x01\x89\xe8\x67\x92\x53\x0d\x17\x0c\x8b\x44\x74\x73\x3b\x9d\x17\xbd\x88\xe3\xcc\x8c\x68\xe6\x1d\x4d\x39\x40\x38\x04\xc6\xd0\x0a\x39\x34\x64\xcf\x89\x38\x8c\x0a\xf4\x86\xf2\x2c\x76\x65\x93\x3a\x79\xa0\x35\x9b\x03\x73\x3c\x04\xe6\x1c\x2c\x9c\x5a\x3d\x69\x38\x28\x59\xc5\x9a\x14\x6d\x2d\x7b\x62\x0c\xa1\x2f\x6f\x9b\xd8\x5f\x76\x0a\x09\x20\x47\x97\xd9\x67\xa6\x96\x00\x30\x1f\xe5\x76\x3e\x50\x4a\x80\x96\xe6\x90\xc4\xad\x94\x53\x34\x85\x3a\x34\x84\x00\x2d\x58\x49\xcd\xb9\x13\x0c\x13\xbb\xe3\xcb\xd1\x23\xe6\x14\xcc\x3a\x93\xb8\xb0\x3c\x70\xa3\x53\x4f\xfc\x58\x90\x13\x4e\xca\x14\x11\x69\x99\x36\x5f\xe7\x08\xaa\x58\xed\x73\xdd\xd5\x67\x4d\x67\x41\xea\x96\x03\x89\xd8\x3e\x92\xae\x57\x5c\xb8\x6d\xc4\x24\x8e\x0e\x8a\x22\x45\x4c\xbb\x30\xa9\x23\x90\xd2\x57\x59\xdc\x79\x3b\x5a\xd5\x8e\xfc\x35\x27\x6a\x4e\xfd\xf8\x8a\x9e\x8c\xa3\x70\x40\x06\x82\x53\x22\x9a\xc1\xf0\x35\x12\x24\x78\x1b\x88\x18\x32\xae\x0b\xd8\x40\x38\xfb\xb1\xda\x2b\x77\x51\x01\x73\xee\xc5\x15\x6d\xf4\x04\xfa\xd1\xa7\x69\x32\xa5\x2d\x33\x2d\xec\xcd\x05\x68\xd1\xe2\xda\x46\x30\xe7\x48\x26\xdd\xf8\xe2\x3c\xff\x7a\x18\x36\xfa\x2e\x73\x10\x4a\xbb\xec\x0d\x5b\x19\xc2\x49\x6c\x0b\x81\x91\x10\x2b\x2e\xcb\x02\xce\x38\x17\x91\xd0\xb7\x4b\xe6\x8d\xc8\xd2\xe9\x89\x1d\xca\x8b\xb1\x64\x66\x53\x44\x46\xac\xc2\xf9\x33\x3e\x5c\x17\x90\x83\x51\xdf\x60\xb8\x5d\x91\xb3\x42\x62\xc2\x75\x12\x0c\x3f\xc9\x98\x72\x01\x4d\x2e\x43\x15\x60\x5a\x25\xd9\x08\xcb\xbe\xb3\x45\xe8\x0c\xc3\x9b\x5f\x8d\xb0\xd7\xa4\xad\x46\x60\x0d\xa1\x71\x54\x9f\x47\x0d\x2a\x66\x04\x37\xd3\x85\x9b\x2d\xca\x61\xcf\xa0\x13\xe0\xce\x78\x0f\xdc\xdc\x3c\x01\xf6\x36\x41\xce\xd2\x10\x2d\xeb\xc3\x85\x54\x67\x7a\x01\xbd\x43\x55\xb8\x20\xee\x08\xde\x3e\x4a\x53\x79\xb8\xee\x6f\xe7\x19\x2c\x7b\x71\x6b\x26\x68\x20\x52\x69\x30\x83\xd7\x6c\x38\x38\x9f\x64\x65\x37\xcd\xbe\x7e\xe7\xde\x0e\x94\xee\x30\xb2\x65\x35\x2a\x0c\x55\x19\xc9\x7d\x2e\x08\x88\x60\x26\xf3\xd9\x08\x8b\x7f\xa9\x44\x31\x8d\x15\x63\xf8\x5f\x44\x7b\x88\xb9\x63\x78\x29\x45\x36\x60\x31\xa7\x38\xcc\x7c\x75\x14\x91\x23\xaa\x59\xbe\x08\x51\x34\x6c\x09\xf8\xd7\x93\x37\x55\xfc\x55\x85\x32\x79\x51\x9b\xc4\x99\x15\x3b\x96\xce\x24\xc1\x25\xb6\x50\x41\x21\x06\x57\x21\xcc\xb0\x88\x6f\xc7\x90\x24\x65\x5a\xb5\xb3\x25\x80\x14\xf6\x6b\xc9\x8d\x6b\x92\xc4\x30\x39\x41\xc0\x5f\xda\x88\x50\xa2\xbf\xb0\x8a\xd8\x0e\xa3\xa7\xe7\x37\x13\x08\x2c\xe0\x46\x6d\xe9\xcb\xe2\x4c\x21\x07\x32\xb3\x02\xbe\x00\x65\x82\xf6\x42\x57\xa0\xc9\x50\x17\xe1\x10\xa1\x4f\xe4\xc5\x5c\x5e\x59\x0d\xc6\xc6\x4f\xeb\x46\xba\x9a\x36\x5a\xa9\xf5\x6c\x5a\xf0\xa0\xb4\xa3\x9e\xb6\xe9\x62\x15\x97\x0b\xb3\x46\xd2\x4e\xaa\x0f\x49\x49\xe6\xa0\xf1\x72\xde\xc3\x91\xf6\xa4\xfe\x86\xc8\xfa\xb0\x06\x8a\x89\xa0\xa3\x0d\x7e\x9d\x0d\xc9\x9b\x4f\x80\x3e\x18\x8b\x3e\x40\x09\x69\x08\x69\xa4\x0c\xa1\x89\xfa\x20\x9e\x89\x00\x95\xda\x69\x63\xaf\x3d\xa6\xea\x0f\x5e\xad\xec\x0a\x9f\xcb\xa6\x40\x9c\xf3\xbc\x57\x89\x74\x41\x55\x99\x9f\x4c\x0a\x79\x62\x58\x6a\x2b\xd8\x12\x59\x12\xfd\xc6\xe2\x40\xee\xed\x14\x78\x10\xb0\xb4\x37\x67\x74\x3f\x85\xec\x91\xad\x40\x18\xa3\x23\xe6\x98\x64\xf4\xe8\x0a\xd0\xb8\x51\x12\xce\xe7\xc3\x85\xd7\x6b\x3b\xe9\x7b\x48\xf1\x33\xc6\x08\x72\x73\xbc\x01\x41\xed\x0c\x3a\x60\x5f\xed\x32\x39\x95\xf8\x04\xee\xb4\x88\x2a\xbb\x95\x61\x8f\x94\x15\x69\x2f\x19\x04\x06\x97\xa2\x93\x05\xea\xf7\x16\x4d\x9c\xa9\x26\xa9\x7d\xaa\x0d\xea\x64\xb7\xe7\x10\x06\xa8\xec\x2d\x70\x7c\xed\x33\xe2\x70\x44\x73\xff\x42\x7e\x02\xb0\x52\x8a\x04\x05\x30\xb4\xb2\xa2\x52\x15\x5c\xbd\x3f\x28\x17\x19\x48\x20\x90\xf0\x14\x60\x72\x90\x73\xa0\x94\x89\x1c\xe2\xa4\xe1\x52\xe1\xd9\xe4\x10\x5f\xad\x9d\x5a\x63\xd4\x53\x05\x07\x53\x00\x03\xc1\x43\x46\x68\x49\x7f\x18\xe5\xd7\x97\x8c\xff\x82\x69\xcd\xa0\x59\xa7\xd4\xa8\xad\x24\xb4\x89\x34\x64\xb6\x8b\x97\x7b\xb9\x9c\x65\x2c\xd2\x01\x55\xe6\x96\xd9\x8c\x48\xdb\xce\x11\x5a\xcb\x10\x4d\x91\xba\x3f\x6a\xd6\x55\xf4\xe6\x4a\x49\x44\x58\xdc\x6a\xfa\x9d\x3e\x51\x48\xd2\x15\x6c\x8b\x86\x59\x3e\xe1\xcd\xd4\x12\x78\x53\xa4\x0c\xfa\xa4\x7a\xc3\x0c\x89\xef\xe6\x16\xad\x57\x93\x09\xad\x27\x85\x45\x15\xd4\xc2\x6a\x74\x68\x07\x71\x60\x15\x0f\x65\x78\x8b\x1d\x88\x34\x93\x65\xbc\xc2\x97\x4a\x11\x9a\x24\x00\xd7\xb5\x12\x05\xc3\xf4\x1a\x22\x1a\x55\xd0\xcb\x74\x5d\xac\xe9\x69\x59\x00\xc0\x41\x29\x68\x7a\x64\x9e\xfe\x0e\x55\x84\xc7\xb6\x61\x4a\x72\x10\x88\x6c\x73\xc7\x93\x74\x59\x85\x28\x1f\x58\x3f\x39\x7e\x40\xde\x14\xe1\x43\x3a\xc5\x5a\xca\x95\x04\x47\xc9\x45\x6a\x7b\x22\x49\x0f\x73\x53\x68\x39\x13\xf6\xcf\xcb\x05\x35\x42\x92\x14\xa0\x40\xbb\x40\x06\x49\xde\x00\x83\xf6\x32\xa7\x15\xcb\x08\xd8\xec\xc1\xf1\x05\x43\x84\x78\xec\x17\x98\x69\x5b\x27\x95\xbd\xcc\x38\x0d\x56\xa8\x97\xd4\xae\xa8\x78\x85\x23\x91\x23\xb0\xa4\x57\xdb\xc6\xb5\x2d\x0d\x6c\x99\x8a\x3a\x0b\x6a\xa5\xd9\xae\x25\x26\x33\x52\x25\xac\xb8\x09\x24\x0d\xb6\x8d\x89\xd4\xc2\xdd\x45\x84\x4c\xae\x4c\xf8\x71\xcb\xb6\xfe\x87\x06\x91\x02\xe9\x1e\x91\xa0\x4c\x52\x04\xee\x83\x78\x37\x26\x17\xc1\x44\xa8\x2e\x34\x3a\x7c\x41\xd0\x81\x25\xa4\x61\x42\xd6\xc3\x70\x5a\x03\x64\x92\x5b\x0f\xc0\x17\xbe\xa2\xab\x61\x24\x2a\x69\xcc\x3d\x92\x31\x42\x2a\xfc\xb2\x2e\xfc\x7a\x82\x58\xa3\x65\x97\x0c\xc3\xee\x01\x81\xaa\xf1\x10\x8b\x39\x97\xb9\x9c\x43\x4c\x41\x4a\x3b\x36\x98\x00\x01\x72\x63\x39\x30\xfc\xf0\x0a\x32\x3d\x5b\xee\x3e\x67\xb3\xc0\xee\xc2\x42\x40\x78\x19\xb6\xc9\x3d\x76\x6c\x23\xe5\x5e\xc1\x37\x3a\xa2\x4e\x3a\x38\x9e\xdd\xfa\xbe\x7a\xbe\x37\x10\xb9\x24\x32\xf6\x2c\x50\x7a\x21\xb3\x3b\xc4\x05\x16\x44\x8c\x36\xe4\x85\x21\xd8\x33\x3f\xcd\xcb\x19\xfd\x00\x55\xa8\x61\x07\xdd\xd4\x0c\x2d\x6a\x4b\x5b\x30\x42\x08\x1c\x7d\x3a\x32\xdb\xf5\xb1\x73\xc8\x19\xd4\x39\x14\x31\xe1\xcf\x25\xef\x09\x36\xe6\x05\xc1\x2e\x93\xd1\xeb\x1c\xbd\xec\xcc\x7b\xec\x44\xf7\x2f\x9c\xca\x62\x0e\x58\x87\xa4\x92\xd8\xa6\x0d\x16\x6d\xb5\x86\x8d\x93\x55\x63\xdd\x88\x21\x4e\x6c\xc3\xfa\xa3\x6d\x98\x58\x95\xea\xda\x90\x78\x1b\x19\xc6\xd6\xde\x67\x58\x61\xa7\x73\xd2\xcc\x96\x0d\x18\x3c\x95\xd0\x9a\x40\x3d\x19\x99\xf5\x07\x99\xfe\x00\xa8\x4c\x3c\x09\xaf\x0f\x69\xa2\x08\xd0\x5a\x8d\x48\x6a\x49\x0a\x62\xc8\x8d\xdb\x6c\xb6\x60\xe1\x99\x76\xcc\x07\xec\x3c\x72\x99\xf2\x9b\xee\x0f\xf2\x6d\xf7\x58\x81\xad\xd2\x18\x5a\x40\x2b\xee\x2d\x79\x0d\xf7\x0b\x12\x2e\x8d\x21\x21\x3e\x00\x1b\x9f\xc1\x3c\xc6\x92\x43\x74\xe3\xe8\x0a\xa2\x15\xbe\x1c\xee\x70\x2d\x8e\x3d\x7a\x77\x08\xe1\x4c\x70\x15\xec\x71\xe4\x94\xee\x11\xac\x3b\x61\xae\xf0\xb9\x2b\x19\x88\x4c\x3c\xc4\x26\x16\x5c\x04\x89\x4b\xe7\x42\x9a\x58\x24\x92\xd0\x00\x0a\x08\xaf\xd8\xc8\x12\x6e\x96\x93\xc8\xb1\x78\x06\x6a\x22\xa7\xc4\xbd\x3c\x25\x31\x74\x25\x9f\xf2\x14\x9a\x81\x44\xf5\xb3\x45\x66\x41\x38\xeb\x56\xaa\x7f\x26\x05\x2e\x7c\x32\x78\x72\x60\x48\x96\x35\x22\x16\x88\x52\xc0\xff\xb8\x47\x68\x48\xaf\x86\x04\x83\x0a\xc5\x49\xe0\xf4\x2a\xf2\x3a\xfc\xe2\x86\xda\x1d\x28\x39\x2b\x39\xa3\x81\x46\x88\x2d\x93\x93\xc3\xa1\xd5\x6b\x22\x00\x3e\x70\xbb\xa3\xe7\x18\x2f\x0b\xa0\x63\x15\x46\x75\x06\x99\xcc\x7d\xad\x12\x55\x7f\x4c\x94\x21\x30\xa8\xf4\x12\x7e\x51\x95\xf9\x7b\x01\xa8\x75\xa4\x36\x83\x01\x20\x09\x9a\xd8\x39\xd8\xb6\xc7\x75\xfb\x9f\x24\x81\x2a\x64\xcb\x24\x0f\x2a\x58\xa0\x78\x36\xac\x8e\x2e\x80\xcf\x83\x43\x8f\x54\xe7\x7b\x88\x1a\xd5\xc0\x2b\x03\xe1\xa0\x4a\x91\x0b\x83\x52\x5c\xc1\x32\x9f\xd3\xd6\x22\x74\xe4\x00\xba\xc0\x57\x8e\xc7\xc5\x01\x75\xbf\xb3\x1d\x6a\x23\x3c\xcc\xe0\x73\x81\x49\x8e\x7d\xcb\x40\xe6\x0d\xfd\xdc\xe0\x34\x67\x33\xfc\x21\x19\x5e\x03\x06\xa2\x6a\xce\x21\x76\xa6\x02\x99\x4c\x50\x99\x1c\x49\x1b\xcd\xb0\x11\x54\xd0\x0a\xff\x5d\x2a\xce\xbc\x88\x47\x1d\x40\x4a\xad\x19\x1c\xff\x36\x61\x86\x5b\x7b\xaf\x8d\x6d\xff\x09\xdf\x68\x04\x47\x51\xab\x40\xce\x18\x9f\xe5\xf0\x2c\xa8\x11\x2a\x7c\x00\xd1\x8b\xdc\x29\xac\x91\x3d\xf5\x79\xc3\x74\x42\x6e\xf9\xae\x4c\x09\xfd\xae\x94\x49\xeb\x5b\xad\x19\x53\x75\xcd\xe1\x3f\x80\xa1\x53\xd9\x84\xad\x0c\x46\x28\x05\x18\x7e\x00\xbc\x2d\x1a\xa3\x30\xbe\x0b\x35\x3d\x7a\xcb\x92\x9f\xda\x70\x6d\xab\xed\x96\x22\x6b\x89\xef\x65\x64\x58\x00\xf3\xc8\x7f\xa7\x82\x8b\xc3\x38\x7a\x8e\xc1\x7a\x8e\x5d\xca\x79\x5d\xad\x83\xc1\xb7\x95\x08\xae\x98\x8c\x52\x1b\x0d\x8c\x62\x05\x6a\xe9\xaf\x99\x82\xc5\xd9\xd8\x6c\x63\x10\x39\x61\x99\xb5\x93\x34\x6a\x9b\xaf\x5c\x6c\x06\xd0\x6a\xf6\x9d\xd2\xd3\x8a\x3d\xd3\x3c\x83\x6c\xb0\x34\xf9\x7a\x9f\x28\x43\xd8\x8a\x56\x56\xbe\x01\xb5\x8f\x01\x74\xb1\x14\xe3\xa5\x57\x66\xfa\x0e\x1d\xf7\xd9\x6c\x5e\x6f\x08\xc7\xe5\x26\x78\xa7\x09\x0f\xe0\x98\xd2\x0c\xb6\xdd\x7f\x90\xc0\x1b\xbd\x80\xa0\x0c\xee\x69\x29\x8f\x75\xd3\x5c\xe4\xc5\x17\xf9\x5f\xd8\x61\x63\x02\x69\xa8\xc8\xbc\x0d\x5c\xcc\xa8\xcc\xa8\xa5\xb5\x42\x7d\xa8\x1a\xe5\x28\x59\x32\xb6\x4e\x46\xaa\x3a\x05\x73\x4e\xf6\xa9\xd5\x57\xe5\x21\xa4\xba\x32\x13\xe3\x20\x24\x8a\xe1\x95\x35\xc0\x03\xdc\xad\xad\xc3\x08\x3d\x79\x0d\x2d\xdc\x05\x4d\x06\x4c\x75\x5d\xc7\x17\xd8\xd0\x0d\x14\xe7\x04\xe8\x53\x96\xb9\xcc\xb9\xd0\xdc\x3b\x90\x82\x30\x83\x2a\x8d\xfa\xd0\x7c\xea\x61\x2f\x45\xde\xf2\x16\xfc\x1d\x8a\x2f\x03\x7c\xd2\xa1\x4f\xd7\x08\x2f\x05\x4f\xc6\xe4\xf6\xa3\x39\x4e\xfe\xab\x3e\xaf\x05\x4f\xd9\xa9\xce\x17\xdd\xf2\x06\xd5\x33\x02\x15\x2f\xc6\xad\x39\xf4\x68\x33\xaa\x29\x53\xa7\xd4\xe7\xeb\xc4\xa5\x39\x8d\xb8\x94\x6f\x8a\xbd\xb7\x65\xd6\x59\xf7\x1b\x25\x45\x3e\x3e\xe1\x73\x0e\x02\x5f\xa8\x2f\x6c\x94\xbe\x64\xc9\x47\x85\x3b\x10\x8a\x8a\x24\xc3\x5b\x3a\xb9\x0a\x39\xf2\x03\x12\xae\x25\x14\x93\x77\xd5\x86\x4d\x79\x43\x53\x89\x62\x9e\xd2\x1e\x94\x87\xc9\x88\x28\x1a\x91\x1a\xc9\xfa\xc4\xb7\xd2\x23\xa6\x1c\x2d\x76\x89\x4d\x53\x09\xb3\xd2\x3d\xbc\x91\xd5\x39\x11\xfb\x82\x9b\x6d\x95\xbf\x27\xf4\xda\xec\x6f\x63\x05\x10\x83\xc2\xc4\x5e\x31\xa6\x22\x8c\xfb\xc9\x3e\x24\x72\x52\x4e\x46\xf3\x17\x70\x98\x6c\x4c\x47\xf1\x32\x1b\x0a\x9a\x10\x87\x84\x12\x64\x4b\xe7\x79\xdd\x2c\x74\x87\xe7\xa7\xaa\x94\xe7\xb3\xf1\xec\x3d\xd2\xd0\x25\x04\xbf\x02\x0e\x85\x0c\xbc\x96\x18\x32\x1b\xdb\xf5\x47\xee\x36\x29\xb9\x44\xd0\xd4\x3a\x6e\x56\xf7\x54\xa5\x51\x13\x9e\xf8\x11\x0f\xc6\x51\x32\x0d\x8d\x44\x0e\x44\x61\x0f\xc6\x45\x8c\x9b\x29\x49\xe6\x8b\x7c\x89\x14\x24\x99\x08\x11\x38\x13\x6f\xaa\xb4\xc3\xfd\xbd\x3c\x13\x88\x46\xa8\xf0\x65\x2e\xc6\xaa\x49\x95\xf3\xc8\xfb\xa9\x50\x92\x36\x69\x9c\x17\xb4\x22\xee\xa1\xdd\x4c\xf0\xf0\xa5\x5d\x21\xfa\xd2\x24\x4a\xc1\x7c\x07\x81\xcc\x77\x20\xf7\x65\x52\x01\xef\x87\x97\xc7\xfe\xd9\x2a\x34\x26\xc6\x14\x4a\x52\x87\x7e\xd8\x57\x1e\xf5\x61\x1e\x1d\xfb\x37\xe7\xe1\xdd\xde\x1d\x79\x01\x10\xfd\xac\x7c\x1a\x49\x07\x72\x6a\x0b\x94\x61\xce\x10\x1a\x8b\x68\x74\x8a\x80\xf2\x8c\x38\x84\x09\x3a\x75\x90\x87\xb8\x06\x6d\xf3\x32\x03\xa7\xc2\x04\x91\xc4\x0a\xe6\xc7\x9c\xd1\x37\xb1\x48\x5e\x2e\x34\xa4\x59\xdb\x69\xd9\x4e\x46\xfe\x68\x76\x9e\xe2\x05\x59\xcc\x1c\x82\x1a\xb6\xdc\x20\x68\xb9\x84\x15\x61\x66\x19\xf4\xa6\x8e\x10\xee\xab\xb3\xc3\xd0\xea\x01\x93\xf4\xf8\x63\x2f\x24\x8a\xb2\x6c\xb0\xc3\xa9\x91\x6e\x42\xb9\x1e\x47\x43\x11\xe3\x27\x3c\x20\x06\xce\x5f\xc4\xd9\xdd\x2d\x06\x17\xf9\x8f\xde\x9e\xb8\x9a\x6d\x3d\xe9\xba\x59\xec\x84\x40\x83\xc5\xf7\xba\x18\x80\x34\xf2\x4c\x50\xad\xed\x8f\x75\x90\xe2\xd1\xfe\x55\x48\x2c\xdc\xf7\x2b\x63\x71\xf0\x36\x93\x9e\xd1\x50\xa7\xb2\xc8\x79\xea\xcd\x96\x1c\x9c\x15\xf8\xac\x9f\x9a\xcc\x7f\xed\xea\x72\x1c\x6d\x2a\x2d\xfe\x38\x94\x7b\xeb\xd4\x1d\x9d\x0b\x90\x88\x05\x2a\x2d\x90\xab\x17\x12\x29\xfd\x0b\x5b\x09\xad\x97\x5c\x38\x7b\xa7\xb0\x42\x52\xc0\xb8\x28\x1c\x5b\x2a\x9e\xf9\x75\x37\x49\x4c\x49\xe3\x0b\x6d\xd6\x14\xf1\x2e\x74\x43\x9c\x35\xd3\xa9\x8e\x95\xf7\x28\x92\x7e\xe4\xa4\x7d\x92\x24\x29\x3b\xa8\xa7\x24\x45\xd0\xa2\x27\x70\x82\x07\xcb\xe3\x04\x2c\xeb\xa8\x88\x68\x2c\x96\xc1\x01\xd7\x08\x31\xbc\x89\x06\xe2\x95\x1d\xe2\x7e\x99\x3d\x3c\x37\xe1\xa9\x19\x1b\x49\xf0\x53\x0e\x74\x41\x30\x02\x24\xcf\x24\x1a\x1f\xcf\x7e\xe8\xde\x03\x1a\xa7\x14\xd3\x7c\x47\x48\x5e\x6d\x27\x9c\x71\x0b\x01\xf9\xb0\x5b\xf6\xcb\x30\x02\x3f\x2f\xf7\x6c\x3e\x27\x10\xa3\x5f\xdb\x2c\xeb\x36\x4b\x93\xc5\x75\xdf\x9a\x7f\xe7\x7c\x8c\x46\xf6\xc0\x45\xc6\xa2\x37\x99\x06\xcb\x8d\xa3\x4c\x9e\x79\x21\x3c\x98\x29\xcf\x7f\xd8\x7f\xc4\xa1\x19\x11\x4a\x5c\x07\x27\x03\xfe\x24\x19\x2c\xe9\xad\xb4\xd2\x1d\xf1\xd7\x8d\x96\x62\xe8\xce\xfa\xcc\x64\x7f\xb4\x08\xac\xb5\xe3\x37\x92\x98\xd8\xd4\x69\xb1\x93\x86\x58\xa1\xe1\xd3\x2f\x84\x78\xfc\x11\x20\xf8\xc6\xa3\x52\x44\xe1\xa4\xf2\x7e\x43\x27\x61\xa4\x0f\x2e\x78\xf7\xe4\x43\xbd\x9a\x86\xfd\x97\x72\x57\xc0\xb1\x2c\x31\xd2\x82\x14\xea\x84\x8e\xbe\xcb\xec\x21\x0f\xfb\x20\xfe\x98\x9d\x01\x03\xf5\xd6\xcf\x3a\x05\x22\x01\x80\x55\x84\xd0\x29\x03\x7b\xc0\x07\xf9\x06\x20\xf3\xc8\x6d\x47\x9f\xcb\xe6\xc8\x1d\x33\xcd\x32\xc6\x22\x3b\xa0\x22\x85\x03\x1b\xb3\xb4\x82\xce\xbd\x10\x79\x22\x6d\xd2\x68\xd5\x0b\xe6\xfc\x91\xd2\xbb\x6a\x86\x1c\x28\x15\x26\xa0\x3d\x66\x10\x4d\x26\x3a\xab\xb2\x5b\xb8\xc8\x35\x12\xa8\x70\xb1\x33\xf6\x97\x20\xec\x39\xc9\xb8\xd0\x46\x78\x82\xfc\xba\xe8\xc0\xbc\x08\x0f\x81\xf7\x41\x3d\x93\x0f\xc4\x24\xf4\xf9\x10\xc0\x7a\x78\xeb\x00\x8e\x38\xb1\xd2\x0c\x3b\x45\xef\xa6\x1e\x9e\x86\x91\x83\x07\xd8\xe2\x44\xe3\x83\x0c\xd8\x0f\x3c\x82\xfd\x97\x66\x59\xda\xd9\xc0\x5e\xda\x60\x4e\xa6\xc8\x9d\x1c\x62\x98\x03\xfe\x30\x0f\xa5\x47\x44\xdb\xb5\x7d\x66\x9d\x94\x9e\x4c\xf9\x19\xd5\x95\x46\x6e\xb8\x03\xe8\xeb\x16\x01\xb2\xf9\xfe\x7e\x2a\x5b\x26\x37\xd1\xc2\x7e\xf7\xc0\x4d\xe4\x43\xe9\x65\x6f\xce\x8b\xdd\x38\xe5\x4e\x1f\x4b\x7c\xcf\xc8\x87\x46\xd7\xef\x79\x3e\xb8\x6b\x00\x4f\xef\x53\xe4\x09\x4d\xc4\xca\xfc\x91\xac\x3b\x0a\xdd\x7e\xef\x22\x50\x52\x6c\x3f\x32\xe1\x12\x01\xb1\xb2\xde\x72\xdb\x81\xf7\xd2\x77\xa5\xa0\xa8\x83\x96\xed\x6c\x7d\xc3\xcf\x91\x9c\x74\x94\x3a\xde\xbc\x56\xbd\xfa\x31\x47\x04\x50\x41\xfd\x78\x8a\xfb\xf5\xca\x06\xc7\xe3\x7d\x94\xac\x5d\x83\xb3\x3f\x07\x4d\xe4\xe4\xd9\x8e\x32\x4b\x34\xc9\xda\xf4\xe9\xd2\x49\x27\xfb\x8c\x8b\xcc\x19\x89\xb0\x32\x72\x29\x86\xc6\x49\xd8\x49\x83\x65\xc9\x1a\x19\xf8\x80\x6a\xe7\x63\x3d\xe9\x5e\x4e\x63\x84\x5a\x94\x33\x3e\x33\x41\x22\xb5\x8b\xa1\x11\x91\xaa\x89\x23\x78\x6f\x9f\xfb\xd9\x8d\x4a\xe1\x24\xfe\xe0\xd4\x8b\xa2\x12\x75\xe6\xbb\x6f\x70\x38\x64\xfb\x55\x1c\x41\xbb\x81\x81\xf2\xec\x4c\x4a\x02\xf5\xea\x44\x77\x0c\xa0\xfa\xf9\x23\xc4\x73\xc5\xdb\x37\xf5\x26\x29\xc0\xbc\xa7\x09\x72\xc5\xbd\x64\xab\xb9\x13\xa1\x3d\x94\x27\xaa\x5c\xb7\x49\x86\x77\x14\x84\xf7\x98\x9f\xa4\x07\xd0\xc6\x7e\xb2\xea\x13\xdf\x2d\xb7\xd8\xac\xe2\x8f\x98\xfb\x64\x27\xef\x5a\xfe\xc9\x01\xed\x21\x19\x43\x52\x45\xf3\xa9\x4e\xde\xf6\x7e\x22\xd5\x50\x44\xa5\xfa\x03\xf1\xa4\xfb\x0f\xd9\x7e\xa4\x8a\x79\x38\x71\x80\xab\x8d\xa9\x36\xff\xc3\xca\x4a\xf7\xaa\x1f\xf7\x55\xfd\xc4\x69\x01\xf8\xf2\x5d\xf9\x88\xd4\x39\x7a\x3c\x32\x9d\x2e\x3e\x7d\x96\xf8\x92\x7f\x81\x89\xcc\x32\x14\x48\xde\x65\xfb\xbe\xd5\x3f\x88\xca\xd4\xbf\xad\x8f\x1e\x9a\xf9\xdb\xd1\x1d\x3e\x17\x99\x9c\xfb\x94\x6d\x74\x29\x29\x3e\xb0\x25\xf6\xb2\x2a\xfc\xcf\x8f\x68\xe8\xe2\xfb\xa5\xea\xa3\x71\x72\x3d\x66\x46\xa6\x7c\x0a\x32\xcb\x9b\x65\x24\x08\x3d\x3d\xfc\x7b\xcf\x9d\xbb\xb0\x40\x7c\xa2\x88\x29\x8c\x0b\x17\x67\xe5\x5f\x8e\x41\x5d\x81\x09\x87\xef\x76\xe9\xde\x0a\xf0\xfd\xbb\x4e\x30\x81\x31\xbd\xbd\x44\x34\xff\x05\x0b\x5f\xd9\xda\x76\x83\xe2\x79\xb4\x73\xc8\xfc\xb5\x93\xc8\x1b\x66\xeb\x3b\x33\x40\x8f\xac\x7c\x02\x6d\x99\x01\x97\x1a\x7b\x34\x59\xc7\xe7\xec\xd9\xe0\x6d\xa9\xb6\xb4\x60\x46\x46\x22\x93\x4c\x14\xcb\x2f\x76\x38\x66\x75\x8b\x70\x06\x46\x67\x31\x90\x2f\x23\x2e\x9d\xac\xb2\xb2\xc0\xe4\x46\xe4\x2f\x9d\x70\xc2\x8f\x2c\xf1\xe5\xa2\x74\x81\xdc\x9b\x6e\x52\x22\xfa\x59\x46\x6e\x22\x00\xb4\xc0\x1c\xad\xb1\x0c\x18\x88\x8e\x18\xa8\x61\x8f\x3d\xec\x21\xe7\x28\xf5\x43\xd5\xc3\x2e\x4f\xc4\x9a\x76\x20\x01\xc8\xe6\x61\x10\xf4\x59\x5a\x3e\x0f\x63\x65\xe7\xcf\x1c\x77\x44\xae\xa4\xe9\x21\xc9\xe0\x9b\x1b\x94\x9c\x4e\x06\xe2\x8f\x37\x14\xda\x4b\xc9\xe0\x2b\xa5\x78\x6b\x49\xb8\x74\x05\x81\x29\xc1\xba\x30\x4c\xa6\xc2\x99\x57\x43\x07\xd9\x00\x79\x4a\x7a\x6e\x3c\xb2\xda\xf2\x23\xa7\x1d\x10\x3b\x49\x81\xe9\x6f\xf0\x56\xc3\xcb\xe3\x35\x21\xb8\x28\xff\x47\x4e\x37\xe0\x2b\x19\xa9\x0d\xa9\xbb\x90\x4e\x9d\x26\x03\xfb\x1b\xb0\xa1\x6f\x61\x5c\x07\x0e\xb5\xff\xfb\x1c\xec\x2a\xf7\xb0\xa8\x23\x87\x62\x35\x07\x23\x86\xa3\x2e\xc2\x9f\x0a\xf2\xcd\x42\x7a\x49\xf3\x5d\x1b\x34\x4a\x00\x7b\x2f\x0f\x22\x35\x8c\x28\x0f\x23\xc0\x06\x61\x9c\x86\x66\xa2\xa2\x9a\x92\xc2\x72\x62\xc9\x15\x3a\x63\x8d\x5a\x5b\x01\x88\x05\xac\x5c\x60\x24\xef\xb7\xc5\x51\x30\xd3\x35\xe2\x1c\xff\x38\x2d\x60\x1d\xfd\x16\x93\x0c\x8e\xa9\x08\x2a\x19\x80\x22\xcf\x52\xbc\x68\xe4\x3e\x0b\xbb\x8f\x1b\xd6\xe1\x2e\x0e\xf4\x4f\x46\x60\x07\x61\x97\x62\x2f\x90\xd6\xb9\xd4\x53\xf3\x32\xb1\x5b\x4c\x01\x2d\x39\x54\xc1\xff\x00\xba\x72\x1b\x4a\xa4\x62\x36\x10\x13\x96\xc0\x9d\xbf\xcc\x75\x7d\xb9\x0c\xd0\x81\x18\x99\xf3\x68\x9a\xa8\xb4\x1c\xd7\xfb\x7b\x59\xd3\x11\x2c\x90\x95\x03\xd3\x5e\x9e\xa5\xef\x4d\x2c\x52\x22\x69\xf9\x16\x23\xb3\x12\xa8\x22\xe9\x75\x0a\xaa\xf3\x09\xeb\x74\x51\x9b\x89\x51\xe3\x5b\x85\xe3\x6a\x51\x0a\xa8\xf9\xed\xa8\xea\x14\xdf\x5d\x68\x82\x02\xcf\xcc\x46\x01\x60\xdd\x34\x51\x08\x4d\xb7\xfb\x6b\x73\xa7\xb3\xf3\xca\x74\x14\xff\x86\x8e\x8f\x65\x3d\xbe\xdd\x33\x5b\xad\xcb\x15\x0d\xf7\x73\x5b\xab\x75\x92\x01\x4c\x47\x0c\xe2\xdb\x01\x88\xfe\xba\xb1\xfe\x7c\x80\xa7\x7e\xf9\x08\x16\xe4\xc1\x59\xdb\x73\xfe\xb7\x6d\x3f\xb8\x74\xfc\xd8\x14\x68\x5e\x19\x0c\x0f\x2f\x92\xcc\x67\xd5\x2c\x7a\x5f\x0a\xc6\x75\x5c\x90\xaa\x1a\x76\x29\x95\xd0\xfe\x90\x88\x0a\x51\x01\x3b\x88\x90\xc8\x4a\xe2\xd2\xfa\x56\x54\x6c\xf7\x23\xdd\xe3\xc3\x5c\x58\x73\x02\x1f\x30\x69\x45\xe4\x7d\x75\x3f\x17\xbb\x0a\xd6\x81\x2d\x46\x76\x53\x45\x7d\x05\x2d\x73\xf6\xae\x43\x54\x4d\xaa\x48\xc2\x7e\x22\x9f\xb3\xe7\xab\x69\xc8\x0d\x33\x79\x97\xab\x65\x61\xb2\xdf\x99\x19\x00\x5a\x82\x90\xf0\x0a\x16\x94\x41\xc8\x67\xf9\x85\xe2\x60\x72\xb3\xdb\xaa\x46\xbb\xe5\xa2\x0f\xb2\xcc\x66\x2b\x7b\x05\xad\x5e\xc4\x29\xd4\x9d\x8b\xd7\x4b\x05\x76\x82\xd3\xbb\x1d\xb5\x42\x4c\xa7\xc7\xc9\x31\x42\x4c\x34\x44\x93\xd1\x26\x74\x49\x81\x06\x9f\xed\x22\x6e\xa4\x81\xec\xf2\x91\x42\x10\x23\x61\x5a\xaf\x1d\xf7\x12\xc5\xfd\xb1\xc5\x74\xb7\x0e\xcd\xf8\x0b\x09\x48\x73\x68\x18\x34\x99\xb3\xcd\xdf\x67\x76\x92\x88\x63\x34\xbb\x59\x36\x69\x77\x49\xda\x26\xf9\x5a\x1c\xa2\x40\x6f\x9b\x2c\x97\x5a\x65\x5c\xc0\x24\xaa\xf0\x94\x20\x5e\x89\x24\x89\xbf\x89\x77\xcd\x12\x2d\x48\x96\xcc\x88\x1c\x72\x6f\xe8\x87\xd2\x12\x0f\xff\xc4\x3e\xa4\x3b\x6a\x87\x20\x1e\xd8\xbf\x30\x45\x3c\x9a\x3b\x1b\x97\x06\xa3\x25\xda\x2c\x6a\x37\x0a\xd2\x82\x31\x6a\xc5\x60\x08\xa5\xa0\xa1\xa4\x22\x97\xe0\xfa\x5c\x88\xc2\x9d\x85\xd2\xa0\xf0\xdd\xcf\x2a\x20\x3c\x71\x06\xad\x01\x24\xf0\x2b\x19\x40\x2b\x8d\x11\x17\x86\xa3\xc5\xf8\x50\x0a\x69\x4a\xac\x4d\xfe\x38\xfb\xa4\x49\xa0\x7f\x45\xd9\x40\xa8\x30\x18\x1e\x3d\x5c\x5f\xf6\x8f\x37\xe5\xf9\x30\x02\x38\x3e\x2f\x2d\x97\x9c\xca\x77\x0a\xff\xf5\xb0\xa5\x12\x4b\x9f\x99\x20\xc7\xc1\x6f\xfb\xd0\xfc\xe4\xa3\x4e\x85\xd7\xbe\x1e\x49\x8d\xe4\xa7\x81\x7d\x76\xb1\xc0\xd0\xff\xa9\xac\x70\x54\xe4\xad\x03\x68\x11\xbc\x9a\xf4\x39\x78\xbf\x70\xd9\xa7\x59\x0e\x0d\xec\x0d\x98\x3c\xea\x9b\x44\xf3\x1c\x7c\xc0\xcd\x19\xd4\x87\x07\xde\xcc\xeb\x0d\xd8\x11\x46\xcd\x5c\x6b\x46\xeb\x38\xa1\x77\xa0\x31\xc9\xc9\x30\xa2\x37\x12\xc9\x83\x42\x14\x81\x84\x99\x2b\xad\x89\x17\x63\x80\x1f\x3d\xd8\x68\x6e\xbe\x80\x5f\x95\x1b\x9f\xe4\xd5\x08\x0c\x38\x56\x5c\x9f\x83\x78\x8b\xc9\x8f\x9d\x1b\x31\x0e\x01\xeb\x42\x06\x03\xe7\x2e\xb6\x00\xb5\x33\x6f\xd8\x9d\xdd\x44\xb1\x7a\xf8\x83\xf7\x2b\xd1\x4b\xd3\x0a\x03\x68\xec\xa6\x5b\x0f\x24\x14\x16\x59\xc9\xe2\x95\x1c\x15\x3f\x3f\x38\x57\x4f\x58\x7b\x60\xf8\xdd\x03\xcf\x85\x29\x8d\x7e\x72\x90\x91\x0f\x0e\x58\x4a\x9d\x38\x02\x06\x17\xf1\x04\x1d\xdd\xb3\x02\xee\x40\xe2\x7c\x83\x9d\xfb\xa0\xff\x45\x32\xe3\x5b\xf4\x6d\xce\xc7\x0a\x27\xc2\x9e\x8a\xac\xb1\x77\x9d\x37\x11\x3e\x09\x00\xc4\xde\x93\x79\x77\x3f\x8d\xbd\x0c\x5a\x31\xc0\x63\xe1\x4d\x4a\x68\x8d\x59\x2c\x82\x94\x74\x1f\x45\xc8\x41\x0c\x1e\x9d\xab\x75\x56\x84\x37\xae\x6a\x3d\x8a\xa6\xb3\xdb\x38\x46\x82\x0f\x43\xd8\xbd\x2e\x14\xb9\x25\xe8\x08\x41\x0c\x56\x08\xc4\xd4\xad\x04\x06\x1d\x2c\x41\x9d\xd6\x7b\xe9\x50\x42\xd3\x18\x27\x23\x4e\x58\xa3\x6c\x9c\xdb\x60\xc1\x10\xfb\x16\xad\x97\x0f\x02\x77\x04\x91\xa3\xe8\x22\x81\x9e\x20\xf2\x16\x69\x01\x04\xa9\x52\xf2\xa3\xc5\x0a\x88\xc6\x87\x3d\x95\xbb\x5d\xe0\xd7\x2f\x35\xc6\x9a\xa0\x8d\x57\xf6\x6c\x8d\x60\x52\x9d\x46\x76\xe6\x8a\x60\x0a\x48\x99\xa0\x65\xb3\x32\xd2\xd9\x60\xdc\xb3\x20\x13\x0d\xb0\x09\x94\xb5\x92\x42\x51\x60\x88\xa9\x09\xbc\x08\x3f\xaf\x80\x38\x47\x5d\x1e\x09\x64\x96\xc0\x1f\x58\xbd\x03\x66\x8b\x15\xa2\x00\x3f\xcc\x58\x61\x86\x18\x36\x4a\x74\x80\x01\x57\x0f\xc7\x76\xe1\x43\x5d\xe0\x81\xaf\xdc\xe4\xbf\xed\xf1\x8e\x97\x9f\xc8\x2d\xc5\x59\xfa\xef\x3a\x38\x5d\x01\x68\x75\xf2\x63\x3f\xd8\xd7\xe2\x54\xd3\xa2\xeb\x1e\x87\x4e\xde\x82\xc3\xf0\x61\x9e\x5e\x16\x8f\x4f\x9e\xb1\xcd\x9f\x19\x73\x0b\xd0\xe5\xd9\x82\xf0\xea\x2c\x54\xab\xb0\xf7\x91\x76\x07\xc6\xf3\x9a\xec\xdf\x6e\x55\xda\xaa\xc4\xdf\x4f\xb5\x2a\xfc\x73\x1d\x59\x92\x4c\x63\xb2\x59\xa1\x79\x15\x7d\x62\x6c\xab\x60\xea\xc8\x25\x49\x92\xa4\xb7\x52\xb1\xe9\x59\xc7\x24\x26\x7b\x92\x15\xe1\x82\xb1\x68\xfc\x90\x19\xe9\x66\x11\x7a\x86\x71\x05\xb9\xe4\x3f\x47\x46\xa9\xe5\x13\x35\x59\xc1\x60\x0b\x5f\x3b\x11\x6b\x98\x6b\xc0\x41\x28\xd4\x21\x23\x9e\x83\x71\xaf\xa8\xa3\x34\x56\x79\x15\xe0\x72\x55\x3f\xa3\xbb\xc4\x39\x50\xe4\xa9\xbc\xe9\x01\x03\xd3\x69\x41\x9b\x08\x77\x4e\xf1\x33\x23\x9d\x11\xe0\x7a\x70\x9e\x19\xb0\x1e\xef\xed\x81\xc9\x5c\xca\x66\x65\x13\x4b\x34\x8c\x00\xa6\x00\xad\xe2\x4a\x9d\x9d\x07\xa0\x70\x55\x8d\x16\x00\x54\x01\x42\x04\x48\x93\xb2\xff\xa4\xaf\xc1\x78\xbd\x4f\xe9\x7b\xb5\x03\xa1\x30\x00\x65\x50\xb3\x2c\x84\x5e\x86\xba\x30\x36\xd0\x5c\x76\xe5\x42\xe7\xdb\xc0\x80\x64\x0f\x46\xba\x0b\xd1\xfb\x31\xb4\x80\x76\x02\x42\x70\x55\x2d\x0b\xf1\x3e\xcd\x9d\x53\xfc\x15\x62\x74\xd0\x10\xac\x91\x56\x5d\x20\xf2\xfc\xfc\xe2\xb1\xd0\x38\x2b\x00\xb7\xb0\x69\x0f\x07\x03\x6d\x9c\x5c\x9c\x42\xe9\x1f\x98\xce\xec\x5d\xb7\x4e\x8f\x99\x30\x6a\xdf\x02\xab\xcb\x7e\xcc\x56\xb7\x39\xb7\x53\xe1\x67\x3f\xeb\xbf\x35\x54\xad\x40\x6d\xd8\x1b\xd9\x76\xce\xca\xa8\xfb\x07\xfa\x2e\xc9\xda\xd4\xf8\x1a\xf4\xee\x9d\x3b\xaa\x31\x12\x57\xbc\x31\x1b\xc3\xb2\xdc\x55\x83\x6d\x4e\xcb\x42\x68\xb5\x83\x61\x9c\x99\x40\x5a\x90\x0e\xe4\x3a\x07\x23\x6d\xdc\x7d\xc0\xdc\xa1\xe2\xb6\xce\x79\x13\x72\x00\xe7\xd7\x49\xc7\x54\x0e\xce\xbc\x96\x25\xd7\xa6\x3e\x6d\x9c\x6b\x17\x12\x48\x75\x93\xc3\xb6\x42\x4b\x71\x95\x03\xb4\xa3\x2c\xac\x8c\xc2\xad\x89\x0d\x93\x1d\x98\x3a\xc4\xbb\xcc\x8b\xb8\x47\xa8\xa3\x8d\xde\x1b\xec\x57\x54\x19\x01\x22\x4c\x25\x2f\xf7\x35\x13\x63\x7c\xd9\x95\xde\x80\xe1\x06\x6f\x7a\x8f\xc5\xa1\xa1\xf6\x8a\x56\xff\x51\x6f\x8f\x55\xb5\xfd\xff\x72\xff\x7b\xdf\xfd\x78\xa6\x3d\xc5\xc9\xd0\xea\x96\xad\xee\x78\xe6\x1f\x04\x31\x11\x4d\xed\x36\xfe\x6e\x2b\xa2\x36\xd0\xb4\x34\x69\x5c\x74\x5f\x9e\xb6\x15\x7a\xd5\x67\xe1\xef\x45\x43\xa8\xf0\x9e\x7a\xd8\xf5\x29\x55\x0d\x3c\x74\x13\xe9\x7a\x0a\x80\x3a\x0a\x9d\x94\xb6\xa7\x7e\x4b\xf7\x52\x94\x85\x31\xf2\x5e\x26\xa6\xcb\x4c\x72\x76\x3d\xa8\x61\xa0\x7a\x34\x0b\xd8\x5d\x39\x20\x68\x82\xfb\x49\x4c\x6c\x57\x48\x55\x2a\xf7\x28\x03\x16\x58\x61\x7d\xa2\x12\x8a\x79\x3d\xc8\xdb\xdb\x40\x23\x83\xee\x02\x1c\x45\xab\x46\x83\x5a\xc8\x22\x2c\xd9\xd3\xc2\xe0\x3a\xbc\xe0\x95\x5d\xc2\xe2\xd7\x82\x00\xb7\xad\x70\x44\xb4\x52\xc2\xbe\x99\x41\x2f\x18\x71\xc4\x30\x30\x71\x80\x2c\x0f\xf8\x23\xe1\x59\x3b\x9f\x60\x70\xe8\xc1\x76\x4a\x31\x06\x77\x20\xaf\x1d\x49\xb9\xc6\x63\x3a\x40\x8e\xe7\x67\x4d\xaa\x62\x57\x31\x28\x6d\xce\xed\xe7\x07\x13\xb9\x7e\x96\xa9\x13\x5a\x5c\x21\x4c\xb3\x35\x7d\xb5\x75\x91\x97\xc9\x29\x48\xba\xc5\x05\x85\x43\xb6\xa0\xbf\xd0\x11\x40\x92\xa9\xe1\x56\xde\xe0\x56\x62\xfd\x08\xa4\x82\x45\x15\xe0\x0f\x19\x6d\xdb\xc6\x0b\x2d\x20\x29\xb2\xa4\x01\x09\x2d\x7b\x67\xa5\xe8\x94\x45\x66\x3c\x11\x55\x02\x46\xcd\x70\x48\x64\xc0\xc2\xd6\x31\xdc\xbf\xdc\x1b\xef\x8b\x43\xf2\x46\xf3\xa4\x65\x4d\x17\xd1\x13\x88\xe5\x35\x4e\xb7\xd1\x24\x12\x40\x35\x29\xea\xf5\x82\x61\xcf\xdd\x9c\x13\x93\xa4\xb8\xbd\x87\xd2\xe7\x5f\x56\x9e\x96\xa7\x5a\xba\x4c\x4b\x0a\x9a\xab\xab\xa3\x4a\xef\x29\x1a\xa0\x70\xc1\x63\xdc\x0a\xe2\x42\xa4\xa0\xbd\xe2\x50\xa6\x09\x25\x49\x16\x4a\x74\x99\xff\x31\xb1\xfa\x4b\x6c\xad\xc3\x54\xc9\xd3\xcd\xde\xa8\x9d\x1b\xbc\xbc\x5b\x13\x38\x4c\x9c\xb5\x49\xf4\x5f\x84\xb5\xb4\x0c\x1d\xdb\xc9\x47\xa0\x6e\xd2\x07\x91\x7b\x40\xc5\x09\x92\xf6\x8d\xe8\x18\x62\x4c\x06\xa5\xa0\x68\xb9\x5c\x9a\x7d\xd0\x30\x70\x01\x34\x48\xd0\x30\xd4\xa4\xcd\x5c\x33\x0c\x03\x14\xc8\x33\xd9\x86\x0d\x8b\x29\x9a\x7e\x61\xb0\xe2\x5e\x3f\x5c\x9a\xc9\x54\x71\xbc\x26\xbd\x85\x10\x6c\x51\xa2\x74\x4c\x86\x07\x8d\xef\x8b\x2c\x15\x31\xbc\xc7\xc4\xd2\x89\x23\xf2\x23\x3c\x46\x53\x29\x59\xbd\x0a\x48\xad\xec\x00\x04\x6d\x17\x7e\xcb\x3f\xf7\x80\x4d\x4f\x3b\xe1\xce\x12\x54\xd3\x83\xb5\x92\x0f\x58\x10\xca\x15\xd5\xac\xde\xf7\xb6\x26\xcb\x19\xa5\xad\xa5\x90\x41\x73\xb4\x89\x1f\xce\xa1\xe3\xfb\x64\x3e\x57\xc9\xa6\xda\x40\x3f\xa1\x43\xde\x09\x1b\x10\x3a\x12\x0a\xd4\x80\xe8\xb3\xb0\x89\x0f\xde\xe1\xdd\x3b\x0a\xcb\xd0\x6a\x11\x9e\x2f\x89\x44\x6e\x9f\xd7\x3a\x20\x3f\x19\xfa\xd5\x61\x13\x94\x20\xed\x39\x25\x77\x24\xdc\x5e\xdb\xbc\xdb\xb7\x7b\x6a\xcb\x10\x5b\xe7\x45\x0f\x65\xaf\x99\xf5\x82\x2e\x56\xec\xbf\xb1\x9f\x1c\x6a\x12\x30\xa0\x36\xf9\xd9\xc8\xde\xc5\x96\x70\x43\x6b\xcc\x79\x91\xee\xbe\x7b\x15\xa0\xc5\x13\xbd\x49\x3d\x72\x79\xfc\x47\xe4\xf1\xd4\x28\xc5\x40\x8a\xb6\x23\x91\x09\x54\x53\xae\x84\xd2\x7a\xe3\x06\xeb\xa3\x86\xd8\x20\x01\xfb\xf2\x61\x0f\x82\x2b\x14\x47\xc2\x04\x5b\x6b\xd8\xa6\xb9\x68\x88\x1c\x3a\x94\xb3\x41\x82\x74\x28\x2f\xac\x47\xa3\x6b\xc0\x84\x4a\x80\x38\xf4\x60\xc9\x63\x9a\x3b\x20\xa7\x30\x7c\xd4\xc8\xd4\x17\xd8\xc0\xc6\x75\x72\x6d\xd4\xae\x3d\xb9\x43\x05\x4e\x03\xa9\xb9\xdd\x71\x23\xe6\x19\x75\x3a\x64\x88\x33\x41\xd8\xa6\x9a\xcb\x56\xe4\x9f\x10\x8e\xc9\x4f\x6d\x69\x52\x43\xf4\xb8\xa4\x9e\x67\x45\x13\x52\x45\xc6\x80\x78\x95\xe2\x08\x30\x1c\x91\x59\xf1\x22\x29\xe6\x24\x4a\x13\x92\x88\x71\xa1\x98\xec\xed\x67\x10\xf9\x09\x5e\x45\xa4\x13\xfc\x9c\x91\x62\x90\x5d\xfa\x9e\x82\x45\x76\xd9\xfb\xdc\x31\x67\x95\xe4\xbf\x9e\x41\x5a\x65\x14\xb0\xc1\x43\xa7\x74\x13\x37\x02\x23\xbd\x90\x99\xa2\xaa\x86\xf1\x86\xdc\xc8\x88\x6d\xc8\xfd\x29\x0d\xc1\x13\xc5\x21\xa6\x07\x89\x1f\x20\xa7\xa7\xa6\x96\x1d\x93\xdc\x0a\xa2\x37\x9b\x81\x03\x8e\x48\x9a\xbb\x86\xe0\xd0\xeb\xa1\x63\xad\x21\x9e\x46\x05\xb0\x24\x84\x6c\x1f\x8a\x4b\x68\x76\x39\xac\x94\x0d\xa0\x09\x86\x07\x72\xda\xd5\x6f\x0c\x38\x4f\xc2\xf2\x1c\xa7\x2d\xd4\xea\x52\x5b\x5a\x08\x6e\x42\x6e\x14\x70\x76\x85\x54\x38\xc1\x38\x4b\x4b\x63\x9c\x08\xd0\xb7\x86\x91\xcd\xcc\xd3\x50\xac\x40\x12\xf2\x53\xf2\xef\xa1\x9b\x98\x78\x0e\xf3\x2b\xe0\x8f\x37\x89\xc2\xc6\x20\xfa\x5b\xdb\x4f\xaf\xbc\x48\xf3\x9b\xdb\x6f\xaa\xbc\x80\xfc\x7b\xd3\xaf\x51\x3e\xe4\xf0\x50\x9d\xa5\xb6\x8e\x09\x76\x5b\x4c\x38\x2e\x5f\xba\x08\xee\x0b\xac\x2e\xb9\x3a\x42\xed\x1b\xa6\xee\xa5\x3a\xfa\xdb\x1b\x68\x2d\x5f\x36\x32\xdb\x1b\x7d\xcd\xc4\x35\xc0\xd9\x99\xa8\x62\xe3\x4d\xa4\xb7\x42\x6a\xe2\x4f\xac\x6c\x71\xbe\xe3\xdd\x34\x7a\x59\x5c\xdf\x58\x01\x2f\x9c\xdb\x0a\x32\xe8\x58\x95\xb3\xd3\x10\xb7\xed\x8f\x91\x5b\xee\x64\xb1\x94\x66\x47\xcc\xc1\x59\xc9\x64\x7c\xbb\x3f\x33\xdb\x0e\xe6\x51\x85\xe1\xb1\x7e\xbc\x75\xb0\xfd\x67\xb9\x93\xfb\x3f\x25\xed\x1c\x9e\x2b\x68\x2c\x01\x9d\x82\xa9\xd9\x02\x99\x88\x64\x7d\x66\xc2\xaa\x4b\x6e\xcc\xa3\xab\x95\xaf\xc8\xb9\x52\xf0\x17\x49\x61\x14\xd6\x8e\xdd\x2d\x99\x7a\x3d\xb6\x7d\x4b\xc0\x2c\x24\x5a\x58\xb1\x3d\x66\xc2\xff\x2a\x5e\xbf\x56\xc5\x7a\x0f\x36\x7f\xdf\x55\x16\x1b\xf2\x02\x93\xc9\xaa\x6e\x22\x51\x47\xa0\xba\x6e\x22\x4a\xf6\x9b\x96\x95\x3a\x5d\x9e\x2c\xbd\x42\x10\xd0\x8b\xb0\xe8\x88\xb3\x7c\xd1\x14\x92\xfe\x15\x51\xd5\x95\x53\x44\x51\x6b\xbf\xd5\xd1\x57\xdc\xa3\x59\xb4\x25\x65\x55\xc5\x54\x50\x49\x97\x15\x15\x7e\x25\x5e\xa3\x12\x5d\x63\x2b\x04\x85\x8c\x41\xbd\xd0\x20\xda\x74\x4b\x6e\x48\xe7\xb8\x14\x99\x52\x2a\xa4\x3d\x0f\xc0\x70\xa9\xec\x39\x51\x1c\xa3\xd1\x3a\x44\xcb\xfa\xae\x21\xf0\xc2\x04\x45\xf3\xd5\xc1\xe7\x06\x10\x42\x2e\xa8\x9e\xa9\x6f\xf4\x26\x10\xb0\xbf\x3d\x5e\x36\x9d\x46\x61\x02\x0a\x2d\x43\x25\xb8\x70\x52\x12\x8e\x14\x08\x55\xfa\xa8\xd5\x8c\xab\x45\x60\xaa\x75\x57\x8a\xe6\x55\xfd\x96\xdb\x86\x66\xfd\x3f\x41\x30\xaa\x45\x3f\xaa\x9c\x17\x67\xeb\x28\x8a\xa1\x8a\xad\x53\xa2\x91\x29\x33\xbe\x66\xfa\x25\x42\x69\x88\xae\xa9\x43\x11\x02\x52\x4a\x4e\x45\x33\xf4\xe1\xd2\x02\x49\x95\x2e\x24\x9b\x93\x95\x4c\x55\x34\x54\xb2\xd3\x5c\x48\x4d\x26\x2d\x20\x9f\x98\x01\x49\x00\x5f\x0a\xae\xd8\x61\x00\x5c\x96\xf4\xf3\x84\x97\xd2\x90\x02\x65\x7b\x4b\x10\x02\x3c\x66\x08\x01\x13\x0f\x19\x92\x00\x7b\x9c\xfc\xf2\x00\x7d\x2e\xf8\x64\x00\xe5\x5f\x4f\x9f\x8d\x90\x02\x9c\x8f\x14\x90\x02\xaa\x5a\x40\x09\xf2\x5c\x80\x13\x7c\xa2\x11\x00\x32\xdf\x34\x22\x00\x43\x9d\x96\x21\x00\x9b\x83\xd5\x01\x00\x9d\xe7\x41\x44\x02\x14\x82\x26\x43\xc6\x88\x05\xf0\x63\x20\x16\x6a\x88\x30\x20\x16\xa2\x0b\xee\x40\x24\x7f\xe2\x01\x17\x6b\x5a\xf9\xfc\x84\x9f\x40\x2c\xb6\x4f\xcd\x2b\x12\x4a\xf4\xff\xd6\x6a\x7f\x61\xab\xf3\xfb\x0d\x39\x9f\xdb\x20\xaa\x69\x0c\x25\xe4\x96\x24\x91\x31\xe9\x84\x4a\xba\x67\x92\x6a\x94\x04\x9c\x24\x08\x9b\xba\x77\x9f\xb8\xa2\xf1\x1c\x48\xbd\x43\xea\x34\x51\x76\x8d\xa4\x4c\x22\x91\x0f\x08\xa6\x47\x24\x2a\x90\x01\x40\xc9\x02\xd4\x5a\x23\x2d\x01\x94\x28\x67\x4c\xf9\x3a\x02\xcf\x92\x08\x99\x18\xb9\xf3\x02\x0b\x88\x68\xa0\xd2\x8c\x82\x21\x88\x9d\xa1\x8a\x8a\x7a\x01\xa8\x2e\xa1\xc4\x8a\xaa\x06\x48\xc8\xa1\x62\x85\x52\x2c\x28\x05\x20\x94\x70\x81\xc4\xe7\x51\x1e\x56\x74\x59\xc9\x67\x2f\x1f\x9c\x79\x19\xf0\x87\x58\x9f\xfc\x72\xf1\xc8\xe7\x55\x9d\xbe\x76\x01\xd8\xa7\x55\x39\xa0\xf1\x13\xa4\x8e\x80\x3c\x38\xfa\xf3\xab\x0f\x00\x3e\x74\xf5\x73\xd5\xcf\x0d\x3e\x68\xf2\x33\xcc\xcd\x7d\x35\x98\xd2\x43\x31\x4d\x16\x35\x4c\xde\x43\x61\x8c\xc5\x34\x4c\xd2\xd3\x43\x4d\x46\x36\x40\xcb\x93\x75\x0d\xce\x37\xc4\xd6\x63\x3a\x0d\xaa\x34\x38\xd9\x13\x20\x8c\x82\x9a\x4a\x33\x84\x64\x40\xc8\x81\xba\xe6\x9f\x8b\xf3\x29\xfe\x58\xd1\x7c\xc5\x92\x93\x7d\xf2\x88\x15\x39\x34\x33\xee\xdd\x54\xf8\xb4\x0c\x95\xeb\x30\x33\xe2\x20\x32\xe7\xc6\x3d\x04\xff\x18\x50\xcf\xb7\xbf\x39\xf1\x10\x30\x4b\xd0\x97\x92\x2b\x1b\xf4\xcc\x40\xef\x92\x62\x00\x1e\x14\xc4\x3e\x28\xa0\xa1\x33\x26\x16\x60\xcb\x83\x32\xc0\x5f\xbf\x45\xf9\x91\x90\x1e\xb5\x25\x84\xba\x9b\xc0\xc9\xb9\x9e\x4a\x00\x9b\x57\x83\x4b\x81\x98\x21\x95\x5f\xbc\xec\x81\x2d\xb0\xec\xf5\xf0\xe7\xdd\xc0\x25\x0a\x47\xb3\xf4\xfc\x62\x2b\xd5\x7f\xb7\xb0\xef\xe9\x52\x1f\xf6\x4f\x99\x62\xfa\x32\x33\xda\x5a\xd4\x19\x8b\x6b\x94\x8f\xbb\x5d\xe5\x9d\x6b\xb3\x09\x9a\x49\x6f\xf7\x45\x8b\x09\x44\x64\xf0\xee\x81\x2c\x3b\xa3\x02\x54\x25\x72\x2d\x90\xde\xa4\xe3\x94\xad\xac\x6d\x70\xc2\x4b\xac\xc1\x9b\xb2\xbe\xb0\x94\x81\x53\xed\xeb\xe9\x28\x01\x58\x60\x0a\x93\xe2\x9f\x27\x91\x15\x35\x83\x23\x2c\x63\x8c\xfd\x99\x5c\x49\xcd\x0c\x40\x92\xdb\xf4\x50\x15\x7a\xf0\x85\xeb\xd7\xe5\xf8\x17\x31\x4b\x14\xb4\xb1\x11\x87\xfd\x96\x20\x8c\x82\x79\x2e\x17\x0e\xc6\x7a\x42\x21\x39\xf1\xa0\xbf\x81\xa6\x2e\xf3\x1a\x34\x68\xbe\xae\x1c\xbc\x73\xd2\x10\xfa\xd1\x30\x7d\xdd\xd9\xc3\xfd\xa1\x44\xe4\x4c\x84\x00\x14\x98\xcc\x3a\x66\x56\xeb\xd4\x48\x29\x75\xa6\x12\xf0\x63\x22\xb0\x8c\xe0\xfd\x7a\x23\x88\x52\xb9\xd9\xa0\xa4\xf5\xbb\x13\x68\xc1\xc6\xa3\x3a\x52\xa4\x6b\xa0\x42\xbc\xd5\xc4\xc1\x74\x47\x83\xda\x8f\x93\x13\x01\x0c\x4d\x7c\x92\x16\xca\xf3\xe9\x04\x98\xcc\xb0\xf4\x29\x88\x01\x26\xe2\xfe\x49\xa7\x2e\x85\x64\x68\x50\x1e\x85\x6f\xcc\xa4\x8c\xd8\xc8\x46\x8a\xcb\x33\xd1\x5b\x10\x50\xf4\x59\x94\xc3\x99\x59\x83\x61\xb9\x87\x4b\x33\x58\x39\x9a\xbc\xc8\xd5\xde\xc5\xeb\x8d\x8b\xd6\x79\x41\x0e\xd9\x14\x41\x91\x5f\xf2\x2b\x50\x84\xdf\xa8\x42\x6b\xd4\x2e\x66\xd4\xb4\xc5\xa8\x4c\xbb\xa9\x79\x67\x52\xf2\xce\xa5\xe5\x8d\x0b\x4b\x1a\x16\x94\xf4\x2d\x28\xe8\x5a\x4f\xd0\x94\xdd\xa1\x19\xb3\x42\xa6\x7d\x0a\x98\xf3\x2a\x5e\xcc\xa9\x6b\x30\xb9\x6b\x32\x32\xce\x64\x65\x9c\xc8\xca\x99\x11\x94\xb2\x0b\x94\x32\x25\x38\x62\x4a\x70\xc4\x94\xdb\x89\x04\xd1\x89\x04\xc9\x89\x04\xbf\x99\xe6\x0a\x10\x89\x62\x77\x30\x62\x2f\x2e\x66\x39\x6d\x73\x32\xb1\x0e\x96\xb1\x0e\x96\xb0\x0e\x95\x70\x25\x29\xe0\x4a\x51\xbc\x94\x9f\x78\x74\x9b\x78\x74\x97\x78\x74\x95\x79\x0b\x41\x78\x73\x37\x78\xf6\x66\xf1\xec\xbd\xc3\xd9\x4b\x86\x32\x37\x0c\x63\xad\x18\xc5\xda\x31\x88\xb4\x63\x07\x68\xc5\xfa\xd1\x8b\xa5\xa3\x16\x1b\x08\x56\x1b\x0a\xab\xb5\x8f\x57\x6b\x1e\xad\xd6\x3d\x5b\xac\x7a\xad\x59\x22\xa9\x59\x55\x4a\xa1\x15\x42\xa1\x2a\x75\x42\x5c\xba\x84\xb9\x35\x09\x72\x2a\x10\x71\xaa\x10\x70\x69\x09\x70\x29\x09\x40\xb3\x3a\x03\x99\xd0\x1c\xce\x80\xe4\x74\x02\x91\x17\xf5\x27\x2f\xea\x46\xbf\xa9\x1a\xef\xc8\xee\xec\x8e\xee\xc8\x8e\xdc\xa4\x0a\x4c\x5d\xb4\x99\x76\x52\x65\xed\x41\x33\xdb\x22\xbd\xa8\x18\xf4\xc8\xa8\xe0\x34\x7f\xce\x45\xff\x39\x15\x1a\x71\x54\x39\xdf\x8a\xe1\x7e\xe4\x6b\xed\x72\x15\x3f\x11\x54\x31\x14\xb8\x8a\x8f\x88\xae\x38\x0a\x99\x80\xb7\xb8\x0b\xfb\x01\x67\x89\x0e\x78\x0a\x33\x80\xbf\xf0\x16\x77\xe2\xb9\x05\x01\x19\x60\x92\x65\xa5\xaf\x7b\xbc\x5a\xeb\xc5\x4f\xbc\x55\x0b\x85\x5c\xb8\x54\x7b\x85\x6e\xb8\x54\xbb\x85\xbc\xb4\x5f\xd6\x8b\xb0\x68\x28\xa8\x47\xdc\x32\xb8\xc3\x08\x80\x1a\x0a\xf8\x6b\x82\xfe\x11\xdc\x04\x76\x84\x90\xf1\x1b\x58\x25\x98\x5e\xd6\x9d\x61\x76\xcb\x7c\x29\x00\x75\x8f\x5b\xde\x37\xc3\x46\xfc\x4b\x13\xb3\xa8\x7f\xbc\xb0\x81\x82\xa5\xd6\x61\xa0\xe4\xe0\x9a\x0b\x14\x4a\xff\x33\x91\xc7\x62\x12\xfc\x7a\x7d\x6b\xc5\xdc\x62\x4e\x04\x23\x4c\x62\x82\x05\x6b\x22\x40\xa7\x5e\x23\x40\xdd\xd9\x00\xcc\x06\x51\xe8\x8d\x9d\xb0\xa2\x20\x6d\xe0\xd0\x94\x8e\xe1\xc0\x64\xa5\x0f\xf9\x60\xe2\x01\x71\x79\x80\x44\x5a\xa6\xb2\x16\xa9\xcf\x13\x72\x21\xfc\xf2\xd8\xb2\xed\x06\xce\xf9\xad\xbf\x6e\xa9\xb6\xce\xc4\xfa\xf6\x12\xa1\x64\x8e\x9b\xd8\xea\x5d\x44\x4b\x23\x71\xc9\x96\x48\x60\xe3\x0a\xb2\x43\xc3\x44\xa6\x59\x0b\x78\x41\xa8\x40\xad\x30\x78\x1e\xf9\xa0\xdf\xe7\xad\x23\x1a\xc0\x2b\xc8\x00\xa2\xa0\x05\xff\xf2\xa8\x7f\x2a\xa1\xec\xb4\x3e\x4b\x45\xda\xb9\x1d\x0a\x7d\xd0\xb1\xdc\x2a\xef\xbe\xb2\x3b\x8b\x7b\xb6\xad\xfb\x0b\x8b\xa8\xb5\x1a\x4a\x87\xa0\xbe\xb3\x94\x13\x35\x7e\x65\xa8\x7e\x4a\xa9\x63\xaa\xc7\xda\x8b\xbd\x8c\x9a\x4a\x3e\xe3\xc4\x87\xd4\x7d\xde\x6a\xb4\x1e\x6e\xc4\x8f\xd3\x6a\x4e\x9c\x6b\xa8\x31\x88\x3c\x70\x5a\xe2\xbd\xb5\x4f\x6b\x8b\x91\xde\xfd\xee\x47\xcb\x5d\x2c\xb5\xe6\x8a\xcc\x89\x95\x97\xd2\xa6\x4c\xad\x3c\xcf\x08\xaf\x96\xd9\x87\x3e\x1b\xdf\x32\xe4\xcb\xdc\x39\x12\x20\x4e\xe5\x97\xa9\x94\x67\x65\x65\x19\x84\xe3\x2a\xcc\xc0\x43\x68\x11\x75\x74\x35\x23\x29\x0b\xe1\x03\xd7\x09\x93\xe9\xc1\x1e\x60\x07\x6f\xa3\x0a\x65\x5b\xa5\xf0\xe2\x26\xa8\x4f\x34\xb8\xb8\xd5\x66\xc3\x0a\xfd\xdf\xcc\xea\xba\xd8\xbd\x9c\xe0\x01\xaa\x79\xc7\xcf\x70\x81\xeb\x70\x34\x6b\x01\xa7\x8e\x83\x32\xd7\x49\x95\x8c\xba\x6c\x45\x47\x54\x65\x2d\xaf\xf4\xaf\xd5\xd7\xc8\x4c\x4c\xb8\x59\x94\x81\x75\x62\x33\xb5\xb3\x15\x3f\x13\xc2\x41\xeb\xde\x4a\x12\x50\xb1\x2d\xa8\x41\x0e\x14\x7e\xf0\x89\x05\xdf\xae\x0d\x7e\xcb\x41\xaf\xa5\x7d\x3c\xd4\x3b\x4d\x68\x75\x82\x9e\x58\xca\x45\x6b\x22\x3e\x49\x09\xcd\x22\x22\xc5\x42\xab\xf0\x98\x89\x47\xcd\x41\x6e\x7a\x98\x8f\x98\x7a\xa0\x0f\x1b\x26\x27\x9f\xe9\x3a\x13\x8a\x3b\xbc\xcb\x7e\x20\xbb\xf9\x54\x77\x49\x10\xfc\xce\xc4\x34\x12\x45\x6f\xe6\xb3\x81\xd0\xb4\xfd\xcb\x66\x92\x1e\x4a\xf6\x6a\x42\xc4\x82\xd2\xc9\x1e\xe0\x3e\x4e\x58\x7d\x83\x5d\x80\xc9\xd5\x4b\x36\x43\x1d\xfe\x41\x9d\xe6\x41\x9f\xfc\x6b\x04\xbe\x78\xf1\xfe\x94\x19\xbd\x16\x70\x5e\x0f\xd8\x67\xb1\x31\x88\xc7\x6a\xe4\xf6\x26\x35\x6b\x97\x5a\x24\x0a\x07\x91\xdc\xd4\x58\xc7\x05\x95\x35\x68\x94\x0d\x33\x89\x45\x00\x33\x43\x66\x11\xca\x5c\x40\x71\x89\xa9\x48\x55\x30\x9a\x06\x84\x69\x6e\xa3\x15\x49\x19\x4e\xcf\x88\xa7\x4f\xc4\x91\xb9\xd1\x3f\x99\xc8\x83\x3e\x65\x42\x78\x4b\xc5\xc0\x46\x72\x0e\x62\x6e\x49\x16\x48\x09\xd9\xae\x10\xf4\xe2\x88\x21\xb9\xe4\x94\x5a\x17\xb6\x0c\x20\x0c\x8e\x1c\x96\x6f\x07\x92\x17\x9f\x31\xa7\x8f\x48\xf1\xb7\xee\x92\xec\x08\x44\xa5\xae\x36\x76\xb8\xca\x5e\xc1\xb6\x57\x70\x6c\x8d\xae\x25\x85\xe1\x3b\xff\x4e\x28\x4d\xfb\x72\x23\x16\xf8\xab\xc8\x49\x45\xa6\x12\x51\xbc\x85\x97\x33\x48\x52\x2b\x72\x63\x56\x15\xe8\x4e\xd4\xd6\x49\x81\x3f\x64\x2a\xc6\x0c\x21\x07\xc2\x85\x44\x67\x61\x51\x1c\x23\x4c\xfd\x99\x34\x44\x42\xfa\x05\x11\x7e\x95\x6b\x6d\x44\x14\xe1\x81\x17\xab\x24\x96\xe5\x2e\xb1\x56\xd8\x8e\x78\x6b\x0f\x85\x40\x3f\x67\x84\x72\x5b\x5b\x91\xac\x40\x66\x84\x3d\xfd\xb4\x45\x34\x14\xfa\x05\xb6\xc2\x65\x7d\x40\xe2\x34\xef\xb8\x8f\xa7\x8c\x7d\x0b\xc6\x3f\xd3\xcc\xec\xfb\x3a\x24\x3e\x9d\x36\x64\x53\x62\x12\x23\xe8\x8d\xce\x33\x40\x1a\x18\x9f\x0f\x1b\x79\x65\x4b\x64\xfb\xc4\xab\xe7\x80\x10\xa9\x6e\x63\x09\xc0\xad\xea\xef\x33\x6b\x21\x84\x4c\x56\x55\xb4\x0d\x94\xae\x61\xfe\x7f\xfc\x8b\xfa\x21\x73\x67\x16\xb3\x51\x92\x02\x51\x26\x94\x45\x8b\x68\x11\x27\x09\x11\x3e\x7f\xf5\xe4\xa1\x64\x62\xf1\xdb\xb1\x8e\x27\xec\x3a\x1b\xe3\x8f\xf1\x95\x71\xbf\x7d\x8e\xd2\x5b\x4a\x59\x59\x43\x7e\xd1\xf6\xa8\x1f\x70\x49\xca\x18\x50\x0f\x8a\xe5\x2a\xca\x03\xe4\xc1\x0e\x50\x35\x77\xcc\x6c\x58\x15\xae\x1f\xe3\x31\xa7\xf8\xc0\x69\xfc\x00\xc6\x0e\x8f\xd1\x36\x9a\x25\x35\x70\x7f\x2f\x70\x7f\x2a\xae\x33\x84\x7a\x74\xbc\xc7\x86\x93\xc8\x7d\x9d\xc1\x9b\x1b\x23\x35\xa0\x06\x48\xd4\x83\x49\x06\x8b\xe5\x5c\x7c\x57\x19\xf1\x54\x67\xc7\x97\x1c\x1d\x51\xe5\xe5\x4a\x8d\xa4\x05\x52\x79\xee\x9d\x10\xc7\xad\xa1\x21\x27\xad\xa9\x9c\x80\xe2\x67\x2e\x38\x5c\x10\xc2\x05\xf7\x69\x60\x53\x16\x29\x11\x7c\xcd\x20\x3f\x40\xf1\x97\xe8\x19\x60\xe5\x2a\xcf\x2d\xa5\x20\x48\xfb\xf2\x85\xc1\xfe\x97\xa8\xca\x94\x90\x08\x6c\x52\x9e\x8f\x8a\x01\x4d\xd0\xf0\x1b\x51\x1a\xa0\x2d\x9e\xc6\x00\x5e\xd0\x18\xa0\x0c\x2e\x84\x00\x0a\x5f\x3f\x09\x83\x1d\xe7\x34\x4c\x3f\xb9\x18\x78\x85\x0a\x1d\x60\x11\xa2\x1d\x1e\xa7\x54\x83\x23\xad\xb5\xbf\x6c\x26\x8d\xc9\xb3\x29\x50\x9e\x74\xec\x6e\x6b\xec\x8c\xf3\x38\x6a\x0f\x38\x7c\x9e\xec\x4f\xfc\x5b\x70\xcc\xda\xc6\xf7\x98\x59\x75\x67\x6e\x6e\x78\x81\xed\x46\xf1\xa6\xa6\xa5\x08\x68\x7d\x1e\xb4\x68\x99\xf9\xb7\xf0\x51\xe4\x83\xa1\x4e\xf7\x05\x3d\x35\xcf\x67\x4d\x68\x7c\xe6\xf7\xb6\xe1\xc9\x4c\x47\x8e\xff\x17\x6f\x22\x80\xf0\xd4\x04\x1f\xdf\xed\x90\x53\xf8\xa9\xbd\x0c\xa5\x53\x57\x65\xaa\xba\x4c\x6e\x2a\xae\xae\xb6\x79\x0e\x8b\xd3\xc7\xd0\x22\x1f\xe3\x14\x07\x08\x0f\xbf\x94\x3d\x7a\x50\x0c\x4d\xd6\xa4\x28\x9c\x20\x89\x20\xdf\xae\x61\x2f\xd2\x19\xdc\x26\x0a\x78\xce\x19\x43\x99\x6b\xd0\x2e\x60\xaf\x79\x22\x1b\x62\x16\x4c\xfd\x76\x86\x14\x63\xbb\xc3\x27\x55\x51\x49\x12\x1a\xcd\xd4\x95\x88\xf1\xb8\x1d\xf5\xf2\x11\xf8\x49\x11\xf8\x59\x17\x77\x86\x71\x2b\x92\x46\x08\x0e\x00\xfc\x45\xd1\xa0\x21\xcc\xc8\xe9\x56\xdc\xe1\x21\x89\x68\x4d\x91\x0e\x20\x79\xa9\xc2\xd1\x9b\x0e\xac\xce\xc8\x01\x92\xec\x80\x15\xf1\xf2\xdf\x17\x03\x35\x41\x19\x04\x34\xf4\xb2\x71\xf9\x50\x66\xde\x63\xd7\x31\xa1\xcc\x23\x51\xd9\x52\x2e\x0e\x59\x04\x00\x6c\x3f\x71\xa5\x87\xc7\x95\x8b\x8e\x75\x19\x4a\xac\x6b\x7d\x14\xd7\xc1\x5c\x78\x14\x67\x21\x73\x6b\x19\x42\x87\x3f\x2c\x17\x9b\x38\xfc\xb0\x2d\x4b\x28\xdb\x31\x0b\x82\xad\x4e\x0a\x83\xc1\x4b\x0f\x58\x2b\x40\xb2\xe8\xd7\x30\x49\x50\x6c\xb4\x6c\x41\xab\x6c\x25\xa9\x6e\xad\x21\x56\xeb\x75\x53\x2b\xd5\x2a\xb0\x41\xbb\x14\x96\xea\xa9\x57\x8a\x93\x54\x14\xd6\xa5\x52\xeb\xf5\x6a\xa9\x56\x6a\x95\x5a\xa0\x20\xd6\x0a\xac\xd6\x0a\xac\xd6\x0a\xac\xce\x75\x47\xe0\x37\xf0\x99\x62\x0d\x3c\xb0\xbf\xc1\xec\x6c\xf0\x33\x34\x1f\xd9\x0f\xa4\xfc\xd2\xb8\x10\x54\xfa\x5b\x21\xd5\xd6\xcb\x1a\xe4\x22\xc0\xc1\xb0\x76\xd5\x2e\x6d\x0d\x7a\xf9\x94\x87\x81\xb5\xf8\x1f\x96\x1f\xb2\xc2\x14\x3b\x1a\xbd\x6c\xf4\xd6\x28\x8a\x9f\xab\xa4\x1f\x0e\x2c\x3b\x43\x9e\xff\x91\x52\x21\x4a\x4b\x0f\x4d\x53\xa9\xaa\x65\x35\x73\xa6\xae\x0c\xfb\x9b\x59\xc9\x9b\x59\xc9\xb0\x58\xc9\xb0\x18\xdd\xbd\xfb\x57\xbb\x15\x2b\x1e\xef\x4b\xc6\x6e\x4b\xd5\xe4\xbd\x5e\x2b\xf7\xdb\xa8\xc4\x5a\x8c\x44\x68\xc4\x46\x8c\x44\x17\xfb\x83\x8a\xa1\x57\xff\x82\x56\x95\x09\x5a\x54\x21\x6b\x90\x85\xa5\x41\xb5\xa6\xdd\xc9\xb5\x6c\x28\x22\xd2\x50\x45\xa8\xbe\x56\xb5\xee\xb5\xaf\x65\xad\x7b\x2d\x6b\xd1\x6b\x5e\x8b\x5a\xf3\x5b\x05\xe6\xb5\xaf\x25\xa8\xbb\xd6\xbd\xde\xb5\xee\xe5\xaf\x76\xab\x7b\xb1\x5b\xd5\x63\xd1\x22\xa6\x54\xf5\x4b\x93\xc5\x2e\x4e\x54\xb9\x38\x52\xe4\xd9\x4b\xd3\x55\x2f\x4b\x54\xb1\x2c\x91\x40\x44\x13\x7a\x54\x15\xad\xd9\x24\x15\xe0\x08\x36\x77\x4f\x85\xee\xce\x91\x69\x11\xad\x01\x01\x29\x0a\xa2\x9f\x54\x43\xda\xd4\x75\x56\x0e\x6d\xe9\x7d\xee\x5d\x76\x17\x5d\xc5\x74\x10\xa6\x98\x9a\xab\x54\x5d\x89\xdc\xea\x4e\xe7\x52\x77\x3a\x53\xb9\xd2\x9d\xae\x84\xad\x73\xa5\x6b\x9d\x2b\x5c\xe9\x5a\xe7\x4a\xd7\x3a\x36\xb9\x91\xb5\x57\x67\x0c\xa8\xda\xe4\x46\xd7\x22\x16\xbb\x90\xb5\xda\x85\xae\xd4\x2d\x76\xa1\x6b\xac\xfb\x5d\x67\xda\xea\x3e\xd7\x51\xf6\xba\x4f\xb5\xd0\x7d\xae\x83\xed\x74\x1f\x6b\xa0\xeb\x5d\x07\x5a\xe7\x3a\xd7\x31\xd6\xa0\x87\x5a\x81\x1d\x6a\x04\x75\xa8\x11\xd6\xa0\x47\x5a\x80\x9d\x6a\x02\x75\xa8\x09\xd6\xa0\x07\x5a\x80\x1d\x6a\x00\x5d\xa8\x01\x76\xbf\xcb\xb5\xfa\x5d\xaf\xd2\xed\x7e\x97\x6b\xb4\xbb\x5d\x85\x5a\xec\x2a\xd7\x59\x56\xba\xca\xb5\xd4\x55\xae\x92\xad\x74\x95\x6b\xa4\xab\x5d\x25\x5a\xe9\x26\xd7\x41\x36\xb9\xc9\xb5\xcc\x4d\xae\x52\x6d\x72\x93\x6a\x58\x4d\xa9\x59\x36\xa5\x64\x5e\x94\x91\x7a\x4e\x45\xe9\x21\x17\xa3\xe4\x5e\x8e\xdd\x05\xb4\xd7\x62\xeb\xf4\x95\x55\xca\x16\xeb\xa9\x55\xa2\xa0\xac\x56\x3d\x2c\xaa\xe6\x28\xbf\x09\x53\x92\x7c\x72\x4f\x88\x2a\xc5\x87\x8f\x4f\xb4\x8a\x52\x1a\x08\x57\xba\x7c\x46\x67\xc6\xea\x6a\xdb\x4d\x50\x55\x8b\x0e\x2e\x49\x66\xd5\x54\x8b\xd5\x42\x2d\x52\x08\xa2\xd9\x0f\x00\x11\x6b\x5f\x36\xb5\x32\xea\xa4\x46\x2a\x78\xe0\x40\x29\x86\xac\xb2\xe6\x1e\x97\x34\xb1\x41\x53\x95\xfc\x70\x80\x15\x83\x15\x54\x85\xb2\xf2\x2b\x1e\x91\x1a\xca\x3b\xa9\x54\xce\x03\xea\x91\x14\x3f\xa9\x41\xcb\x54\xf2\x3f\x03\x92\xe0\x65\x20\x9d\x3e\xe1\x55\xaa\x05\x0a\x52\x8b\x76\x84\x80\x1b\x0c\x96\x05\x14\xb8\x1e\xe4\xd7\x5a\xd0\x57\xe1\x04\x98\xbc\x00\xf6\x6b\x33\x8f\xbb\x4b\x4b\xfa\x3f\x20\xd5\x46\xee\x23\xef\x77\x0c\x3b\xc7\x8d\x3d\x5d\x44\xe1\x88\xd5\x89\xfa\x2c\xc8\xb6\xea\xfa\x40\x83\x1f\x5c\x63\x4b\x60\x6f\x9c\x60\x78\x4b\x68\x7b\x19\x67\x53\xab\xc1\xe3\x94\xbc\x73\xcb\x5a\x70\x20\x0d\x13\x98\xbd\xf0\xac\x87\xa2\xc9\xf3\x3a\x49\x24\xf2\x50\xc0\xac\xfb\xd2\x31\x6b\xbf\x80\x25\xc8\xaa\x5c\x40\xfb\x1f\x84\xa9\xf8\x88\x5d\xc3\x7d\x8c\x46\x4c\x00\x1e\x44\x94\xc5\x84\x33\xcd\x84\x2a\x1c\x90\x26\x91\x5b\xba\x54\x2e\x36\x14\xca\x86\xb2\xaa\x99\xba\xa3\xd5\xd5\xa4\x8e\xc5\x88\xdd\x56\x1c\x24\x84\xa6\xb2\x9b\x50\x8a\x9e\x56\xb2\x99\x71\xa5\x8d\x2a\xdc\x73\x35\x6e\x1a\x3a\x62\x73\x1b\x53\xa6\xa1\x58\x68\x3c\x47\xc7\x9c\x8e\x86\xf9\x34\x72\x24\xca\x09\x54\x86\x86\x2c\x2f\x17\x5f\x7e\x58\xb1\xde\x0b\x8b\x2e\x7d\x90\x67\x02\xf2\xd5\x39\x35\x32\x96\xa3\xd2\xc8\xd3\xd0\x9a\xb4\x2a\x7a\x98\x77\xd3\x46\x10\x21\xb1\x01\x01\x42\x27\x97\x15\x69\x52\x74\x44\x56\xa6\x2c\x68\x4e\x40\x15\x53\x99\x65\x74\x17\x7b\x57\xd5\x3e\x3d\xe8\xf2\x40\x1d\x36\x2d\xeb\x07\x79\x8d\x63\x98\xb5\x4a\x85\x31\xa2\x7c\x56\x2b\xd4\x36\xa0\x76\xcb\x9f\xa2\xa3\xfe\xa8\xd8\x26\x0f\x1a\x84\x0f\x44\x2b\x64\x20\xc0\x09\xdd\x7b\x67\x4e\x08\x16\xa0\x0c\xea\x26\xea\xe3\xfe\xd6\xfa\xba\xe7\xdd\x51\xb4\xf5\x45\xc4\x64\x19\x95\x2c\x26\x90\x2c\xe3\x10\x0e\xef\xac\x2d\x77\x9b\x24\x86\x66\x60\x61\xa8\x19\xbd\xc0\x40\xec\xd1\x03\xe6\xf1\xf1\x25\x26\x9f\x7c\x3b\x77\x11\x50\x09\x38\x23\xf9\x20\x6c\x53\x40\xd2\x1b\x20\x96\x0f\x23\xbe\x38\x1f\xaa\x35\x1a\x4a\x33\xb4\x24\x83\x3c\xb0\xd2\x31\xc5\xcc\x15\x66\x37\x78\x29\x24\x88\x63\x3f\x84\xc5\x3f\xc8\x04\x57\xcf\x32\xda\x12\x38\x20\x43\x73\x22\x1e\x1d\x94\x41\xd8\xa0\xbe\x52\x5a\x34\x98\xe6\xc1\x5c\xd8\x86\x8d\x33\x92\xc9\x5a\x5e\x72\x1c\xc8\x32\xff\xf2\x99\x85\x67\xdc\x45\x63\xa6\xa1\x3b\x98\x47\xa2\x24\xc7\x98\xb8\x85\x6e\x69\xa9\x0e\x75\x96\x81\xc9\x18\x9e\xdf\x52\xa5\x34\xc1\x73\x10\x22\x9e\x28\xb6\x92\x71\x07\x42\x4c\xa4\xd4\x25\xe8\x90\xe7\x00\xc5\x81\x62\x1a\xe4\x01\x9f\x3d\xd6\x1a\x34\x1d\x6f\x06\x13\xa3\x8e\x9b\xd0\xdf\xe6\x40\xef\x88\x15\x52\xac\xd3\xe7\xcc\xbd\x68\x62\xde\x71\x0d\x54\xfc\x2c\xec\x5f\x42\x02\xe2\xec\x18\xc9\x0b\x0f\xcc\xc7\x13\x2d\x49\x16\xd8\x72\x3c\xa4\xdc\x60\x46\xa5\x64\x94\xa6\x8d\x95\xa5\x1b\xef\xae\x1a\x9b\x80\x85\x6d\x63\x62\x61\x78\xce\x29\x74\xd9\xbd\xad\x8b\x86\x6c\x3f\x37\xfc\xcd\xb3\x03\x44\x01\x03\x18\x91\x1f\xdf\xe1\x8d\xde\x47\x61\x5a\x4a\x3c\xcf\x3b\x39\xcc\xa9\x6a\x3d\x6a\x40\x9d\x9b\x22\x25\x08\x65\x48\x55\xa6\x12\x8d\xe0\x58\x93\xa8\xb1\x7d\x5d\xfe\x9c\x74\xc5\xde\xa4\x1d\x66\xcd\x09\x02\x81\x02\x0a\x6c\x54\x70\x37\x3a\x7e\x85\x6e\x15\xe2\x2a\xfd\xec\x66\xd4\xe7\x62\xd2\x66\xbe\x4d\x78\xa7\xa1\x48\x73\x09\xe9\x90\x3f\x66\x35\x43\x4d\x91\x7b\x69\x13\x98\x0c\xc9\xa2\x44\x5f\x31\x84\x35\xa3\x98\x44\xb4\x50\xd7\x27\x2b\x88\x81\x1a\xd3\x50\x77\xfb\x15\x81\xfb\x44\x70\xc8\x99\x6f\x85\x9b\xcc\xfa\x21\x10\xf2\xc8\x85\xf0\xc3\x44\x01\xec\x30\x2b\x95\x54\xaf\x86\x59\x8d\xdc\xca\x16\xf1\x8e\xa6\x85\xf7\x6e\xaa\xfb\x0f\x7a\x3d\x1b\x5c\xd4\x94\xbe\x04\xa7\x6e\xeb\x94\x08\x87\x35\x25\x1a\x61\x7c\x98\x21\xe4\xdb\xa8\x66\x2c\x1c\x2d\x17\x38\x80\xfc\x0e\xc1\xd1\xe1\x10\x3b\x25\xb1\x15\x02\xdd\x06\x99\xb3\xc9\x5f\xee\x7f\x5d\x4a\x7a\xc4\xbf\x44\x1d\xa2\x84\xbd\xf6\x43\xe6\xa5\x96\xc2\x89\xf6\x2f\x45\xf1\x59\x46\xe0\x5c\x19\x7d\x3a\x03\x5d\xae\x62\xa7\x85\x10\x6c\x31\x88\xc2\x66\xc6\xb6\x4b\x30\x6f\xa4\x00\xf2\x0b\x04\x85\x03\xfc\xe0\x42\x95\x9d\x21\xf4\x47\x4e\x72\x94\x21\xe6\x6f\x9f\x51\xac\xdc\x16\x72\x70\x36\xe4\xad\x2a\x00\x1d\xb2\x2e\x50\xe2\xaf\x77\x09\x03\xea\x2c\x59\x0c\x4c\x0f\xd0\x4d\x73\x27\xf7\x47\x20\x33\x07\x8a\x94\x5d\x20\xd9\xfc\xc4\x93\xcc\x45\xa4\x02\x0d\x4d\x89\x55\xe8\x4a\x8c\x46\xe8\x39\x94\xd2\x01\x5a\x11\x88\x86\xc4\x14\xdd\x85\x9c\x1a\x8d\x60\x7c\x90\xfd\x63\x50\x3d\xa3\x89\x30\x23\x64\xb5\x16\xb3\x04\x3f\xe4\x62\x4e\x68\x9d\xc3\xf3\xfe\x36\xb1\x6f\x49\xd4\xca\x2a\xa6\xc7\x3f\x1a\xd6\xb8\xa6\x0f\x0a\xd6\x24\xdf\xc2\x57\x01\x75\x96\x0a\x22\x70\x8d\x80\x04\xe7\x30\x87\x82\xd0\xa1\x74\x60\x96\x34\xc0\x3a\xcd\x24\x27\x7a\x6d\xf5\xa6\xdb\x92\x55\x50\xce\x79\x8c\x47\xd7\x1b\x6b\xab\xc9\xb0\x20\x40\x01\x91\x48\xf8\x95\xbb\xc5\x90\x26\x91\x45\xa7\xc3\x12\xde\x80\xd1\xe6\x87\x70\x70\xcd\x43\x7c\x11\x82\x7e\x55\x4f\x7b\xd4\xcc\xb9\xf6\x88\x93\x05\x1c\x20\xbb\x32\x0e\x7a\x76\xc9\x21\x1d\x08\x97\xc8\x34\xf1\x68\x63\x84\x4d\xb2\x0c\x9a\x2f\x36\x15\x67\x38\x05\x8f\xba\x02\x3d\x2c\x15\xc9\x3d\x01\x90\x82\x87\xfc\xcd\x06\x76\xf1\xa1\x07\xc8\x0a\x54\xce\x46\x9f\xb3\x43\x85\x47\x98\xa1\x66\x36\x34\x50\xf0\x60\x57\xc2\xa0\x46\x9a\x12\xc0\x49\xdb\xc4\x9f\x89\x04\x42\xe7\xf3\x92\xe0\x5c\x99\xf2\x38\x72\x68\x38\xf9\xcb\x25\x05\x21\x3a\xb1\xa5\x09\x63\xf5\xa0\x73\xa2\xc6\x27\xc7\x58\x0d\x82\x49\x39\xca\x7f\x5f\xd8\x24\x21\xb0\x3b\xd4\xdb\x17\xec\x3d\x70\x99\x7f\x8a\x0e\x5a\xed\x45\xd2\x02\xb8\x3f\x84\xd3\xb8\x48\x1a\x2c\x22\x2e\x24\x8e\x29\xe2\x19\x35\x51\x38\x29\xd4\x52\x25\x32\x5c\x63\x2a\x74\x9e\x81\x73\xc1\x81\xca\xf2\x8b\x55\x50\x27\xe5\x18\xa5\x29\xc4\x8a\x61\x0c\x2d\xa0\x82\xa0\xb9\xeb\x04\x3c\x8b\x54\x45\xe4\x8e\x79\x83\xa6\x3d\xb3\xb2\xcc\x10\x73\x14\xb0\xa2\xbf\xe1\x90\x7d\x4f\x0c\xe8\x93\x58\x7e\x65\x07\x1d\x27\xb9\x79\x91\x67\xee\xe6\xa7\xca\x33\xa7\x6e\x2f\x4f\x1f\x52\x12\xfd\x93\x4d\x32\xe8\xa7\x2a\x3d\xd2\x4c\x38\x46\xeb\x91\xce\x15\x61\x96\xf5\x41\xc8\x8a\x56\x10\x0f\x01\x93\x04\x02\x40\x03\xde\xd5\x81\x8b\x9e\x10\x97\x36\x21\x02\x38\x7c\xc2\xb2\xa5\xa8\x8c\x70\x0d\x29\x17\x75\x69\x5f\x8d\x04\x1b\x0d\x88\x56\x09\x05\x25\xa0\x9b\x19\xfd\x1f\x42\xb9\x9c\x9d\x32\xcf\xb9\xe6\xe7\xc1\xac\xf5\xd2\x3f\x44\x2f\x08\x0d\xc9\x5d\x3f\x90\xf7\xfb\x3e\xe8\x93\x70\x07\x81\x14\x80\x06\x97\x70\xe0\x01\xdb\x51\xb8\x00\x3b\x64\xc8\x47\xa4\x75\x94\xb1\x15\xd6\x09\x74\x04\x63\xb5\xd5\xef\x93\xbd\xb3\x01\xbb\x79\xf4\x01\x9d\x65\xc4\x67\x7f\x40\xac\x86\x30\x8e\x33\x80\xd3\xa3\xb8\x09\xea\x4f\x14\xca\xb3\x44\x6d\x9d\xb5\x18\x12\xf4\xd4\xdf\x30\x1d\x5d\x13\xae\x50\x1f\x74\x9a\x0d\x16\x5a\xa2\x6b\x98\x99\xd4\x32\x39\x5d\x31\x83\xa5\xb3\x28\x97\x39\xc6\x86\x79\x16\x74\xf8\x22\xac\xe5\x98\x85\x72\xc9\xfe\xa1\x25\xe5\x40\xf3\xa4\x98\xc1\x48\x56\x23\x49\x45\x7a\xd5\xfa\x57\xab\x30\x22\x88\x3e\x10\x99\xb4\x5a\x1e\xc2\xf3\xb6\xc4\xa2\xbc\x0f\x70\xba\x02\xfa\x0b\x74\x98\x06\xab\x99\x67\xc4\x7b\x48\x20\x11\x25\x26\xb5\x06\x20\x10\xf9\xe1\x8f\xcd\xef\xd6\xf3\x76\x97\x37\x50\x68\x07\x20\xf7\xca\x2c\x02\x1f\x3b\x62\xef\x0a\x06\x05\x91\xa9\x60\x2a\xc5\xc7\xf1\x8e\x4a\xee\x9a\xf0\x62\xe3\x3a\x05\x88\xa9\xb2\x9e\x5b\xd5\x5f\x31\x3c\xeb\xad\xbe\x8a\x1b\x45\x87\xc1\xb8\xb0\x33\xe8\x68\x5a\x5e\xa5\xfb\x24\x97\x02\x3d\x9b\x45\x4a\x09\x7c\x7b\x7a\x81\xf4\x9c\x10\x91\xc5\x5c\x41\x9f\x73\xac\x48\x5f\x15\xbd\x28\x5c\xfc\x3e\xe3\x01\x8e\x65\xb5\x9c\xb2\xfe\xe4\x3a\xb4\x80\x80\x0d\xc0\x78\xd6\x5e\xc3\x84\xac\xad\xf3\x13\x07\xd5\x71\xf3\xbd\x65\x80\x98\xd8\x2d\xa1\xc4\xdf\x09\x4a\xd2\xc9\x96\xef\x78\x52\x18\xd0\xe9\x89\x3a\xaa\xec\x01\xe0\x64\x6a\x53\x61\x56\xed\x9f\x14\x4a\x01\xef\xf7\xe9\x7e\x96\xcb\x2d\x80\x9d\xa9\x5c\xc2\xf5\xce\x80\x08\x80\x75\x24\x6b\x34\x11\x87\xd3\x97\x06\x3e\x80\x79\x19\x5a\x27\x33\x37\x94\xec\x07\xa6\x8c\x5e\xa7\x8a\xbb\x7f\x16\xb7\xe0\x95\xa8\x15\x84\x4f\x82\xc4\x03\xf1\x68\xf9\x20\x25\x68\x0b\xcd\x3d\x95\xe8\xb6\xd5\x76\x19\x87\x0d\xcf\x1e\xce\x1b\x70\x45\x95\x3c\xbb\x08\x5d\x1b\xad\xe1\x2c\x3e\x81\xec\x1a\xf3\x48\xd3\x63\x5e\x38\x0f\x3a\x0f\x32\x18\x18\xad\x7c\xa8\x12\xde\xa8\x0b\x1a\x99\xb1\x3d\x2d\x05\xb7\x03\x31\x71\x23\xca\x83\x1f\x1c\x5f\x93\xa3\x40\x75\x1d\xb7\x57\x89\x4c\x48\x0b\x80\x25\x41\x47\xf4\x88\xdc\x66\x0e\x2f\x90\xd8\x9f\x53\x29\xd0\xc4\xab\x20\x04\xe0\x44\x64\xa2\xb5\xa1\xd1\xc4\x28\xbc\x12\xfd\xe8\x8d\xaf\x6d\x78\xd2\x9e\x52\xc4\x90\xd2\x4e\x00\x83\x6e\xc2\x8d\x9c\xa7\xda\x08\x38\x06\x11\x3e\x04\x3d\xfd\x24\x57\x06\x4b\x02\x03\x9c\x65\x80\x45\xcc\xc8\x06\x98\x1c\x9b\xea\xbe\x33\xa5\x18\xde\x32\xed\xd1\x0c\xe3\x69\xde\xde\x13\x24\x23\xe4\x52\xe3\xa7\x63\xe2\xff\x4e\x9c\x04\xed\x90\x7b\x3c\x3d\x62\xaf\xc8\x50\x2b\x8d\x81\x06\xc2\x5f\x44\xfd\xdc\x79\xf7\x56\x14\xd0\xc4\xc7\x17\xb6\x42\x67\xb8\x17\xd2\xb1\x9a\x50\x01\xe8\x9f\x27\xf1\x9c\xda\x43\x54\x78\x48\x22\x54\x9b\x60\x89\x88\x4d\x1f\xc9\x9d\x9c\x42\x25\xa2\x18\xa9\x30\x85\x5b\x39\xe8\xc6\x90\xa1\x5b\x01\xd0\x9f\x28\x41\xba\x72\x4a\x0e\xbc\x62\x9c\x98\x65\x2f\x35\x62\x69\x6f\x08\x38\x29\x18\x1e\x0d\xc6\x89\x20\xe2\x10\x8f\x3e\x4d\x19\xa0\xa7\x15\x23\x0f\x94\x81\x73\x4c\xcb\xa6\x4c\x15\x71\x1d\xd1\x55\x4e\x41\xa1\xe0\x79\xaa\x37\x62\x43\x41\xf0\x81\xa3\xba\x7f\x1b\x00\x8c\x36\x39\x07\xc5\x99\x73\xcc\xcf\x8b\x2a\xe3\x19\x32\xc2\xd0\xe8\x84\x4d\x11\xe0\xb8\xd6\x8b\xc9\xe2\x95\x0c\x7d\x0e\x2b\xe0\x69\x1a\xf7\x2f\x60\xe3\xe5\x66\x15\x10\xac\x13\x7d\x6c\x6e\xdd\x0c\x74\x99\x08\x7d\xce\x83\x6a\xbd\x8e\x23\xc7\xc6\x17\x5c\x52\x00\x71\x8c\xec\x8c\x08\x99\x06\x98\xbf\x23\x14\x40\xa3\x90\x2a\xd1\x3c\xb7\xc8\xe4\x4b\xa9\x43\x5f\x00\x51\xf9\xd6\x28\xd7\x85\x0c\xd8\xed\x16\x90\x03\x41\x86\x3d\xa8\x32\xd1\x43\xef\x27\x74\xc4\x56\xcc\x61\xb7\xa2\xfc\x31\xb0\xe4\xea\xf6\x9c\x0d\x86\xde\x0d\x3d\x0e\x30\xe9\x5e\xad\x36\x96\x3d\x09\xb7\x25\x45\x07\x40\x8a\x74\x01\xb2\xf4\x21\x63\x8f\x86\x36\x8a\x6e\x84\x13\x25\x75\x4d\x2b\x4a\x60\x32\x56\x66\x00\x90\xe5\x14\x9c\xe0\xf6\x6b\x21\x4a\x37\x74\x60\xe9\x7e\x71\x09\xe8\x30\x9d\xf3\x0b\x46\x21\x2d\x46\x62\x20\x5d\xe7\xea\x6a\xcb\x84\x46\x90\xb4\xb4\x2a\x5e\xa0\x51\xb0\xd2\x76\x6c\x6f\xbb\xc6\x4d\x9b\xc5\x1c\xc6\x6c\x84\x53\x3e\xd3\x4d\x68\x0c\x56\x00\xf0\xca\x4e\x25\xd9\x26\x68\x49\xb9\x96\x28\xa6\x26\xff\x65\xde\xa1\x53\x64\xc5\x4f\x19\xfc\x9f\x0b\x93\xb1\x29\xf5\x42\x86\x94\x9a\x3f\xe0\xed\xf9\xd4\x6f\xa8\xa6\x10\xaa\x32\x86\xe1\x3c\x6d\x31\xd3\x17\xaa\x57\x3e\x07\x6f\x57\x02\xab\xe4\xc2\x7c\xa1\x30\xfb\x37\x53\xda\xca\x73\xa8\x9f\x1d\x38\x63\x06\x99\x70\x54\xc1\x0f\x90\xb8\x08\xa3\x1b\xd6\x11\x2b\x07\x25\x2f\x0f\xec\x9c\xf0\x7e\x06\x14\x29\x34\xcd\xe2\x2f\x9f\x22\x89\x56\xc9\x4c\x9f\xd7\x57\xf8\xc7\x44\xef\x95\xc0\x0f\x22\x66\x12\x2d\xce\x7b\x0d\x1e\xcc\x06\x11\xa3\x74\xd9\x18\xe1\xcf\x8f\xf4\x43\x47\x12\x12\x4d\xf9\xa9\x74\x4f\x4f\xe4\xc4\x03\x09\x87\xd4\x01\xc4\x87\x1a\x07\x24\x3d\xde\xb0\xf0\x2b\x71\xb1\xcc\x89\x64\x1c\x29\x3b\xb8\x01\x62\x5e\xcf\x70\xa9\xe4\x40\x97\xa9\x12\xa8\x23\xe1\x53\x7a\x15\x2c\x65\xb3\x2f\x89\x09\xe5\x94\xb5\x0a\xac\x80\x49\xf4\x55\x32\x18\x26\x5d\xaf\xc0\x27\x74\x32\x4e\x86\xa1\x6e\xf2\x7d\x44\x28\xa2\x7c\xa2\x2a\x96\x75\xa7\xe0\x77\x3c\xd3\xc6\x2a\xc9\x1a\x41\xc7\xe8\xcd\xf3\x38\x0e\x43\x11\x76\xb0\x40\xbe\x9f\x7c\xb6\xda\x95\xca\xe0\x6d\x47\x8a\x6a\xf9\x2b\x4c\xb3\xaa\xf2\x1a\x2e\x0c\x85\xba\xcd\x98\x8f\xf3\xea\x74\x70\x0b\x41\x54\xf6\x7f\xb5\xbd\x18\xc7\xdb\xe5\xaa\x08\xc3\xd1\x2a\x14\x78\x56\x3c\xc6\xe4\x8e\xaf\xcd\x37\xdf\x0b\x4b\xd8\xfe\x49\x41\x79\x4c\xe4\x8e\x90\x0c\x8f\x64\xe0\xa2\xeb\x91\x13\x66\x46\x5d\xf6\x05\x85\x19\x0f\x61\x54\xc8\xf2\xaa\x27\xac\xb0\xa3\x38\xb6\x4c\x8e\xfd\x25\x68\x25\x26\xdd\x6c\x8a\x31\x82\xe6\x2a\x8d\x7c\x8c\xd6\x89\xa1\x52\x1a\x39\x2b\x12\x8b\x1b\x39\xb7\x7f\xae\x4e\xc8\x08\x84\x52\xf9\xa7\x7d\xc0\x60\x4e\x0b\x98\x44\x82\xa4\xd3\xcb\x33\xb0\x08\x0a\x35\x18\xf0\x16\x62\xa4\x72\x8c\x53\x21\x8b\x65\x2e\x08\x58\x8c\x1c\xb5\x18\x4a\xc6\x53\xf0\xae\xfc\xb4\xe0\x9d\x36\x3a\x00\xfe\x18\x68\xd6\x8d\x19\x2e\x4f\xbf\x75\xa0\xb8\xcd\x9e\x05\x33\x78\x0e\x81\x55\x2e\x59\x76\x0c\x1a\x82\x3a\xc7\x5a\x34\x90\xe2\xf5\xd4\x06\x89\xfc\x69\x72\xc5\x48\x99\x00\xe1\x2e\x6b\x6b\x35\x52\xa5\xee\x3b\xf6\xe5\x95\x90\x32\xc8\x80\xe0\xd1\x52\xa0\x57\x42\xa6\x33\x5e\xa2\x8e\xa4\xfa\xf0\x1d\xd5\xe2\x2d\x1e\xe0\x4d\x26\xc0\x28\x0c\x2f\xb8\x52\x03\x81\x43\x85\x02\x83\x16\x2a\xcc\xf9\x64\x51\x01\x3e\xb4\x25\x18\x0d\x91\x52\x50\xe9\x2a\x06\x7b\x70\x1f\xdb\x12\x21\x3c\x67\x67\x47\xd8\x9e\xd4\x06\xe8\x5a\x06\x6f\xfb\x5d\x16\x35\xca\x5a\x45\x4c\xbd\x0c\x4d\xb1\x7a\xd5\xc3\x09\x43\x5a\x25\x34\xf5\x9e\x0a\xa2\x1f\x2e\x80\xe8\x84\x86\x2a\x4e\x9b\x29\x82\x96\x52\x0c\x2b\x2e\x94\xb1\xda\x37\x87\x1d\x1e\x47\x74\x5b\xd0\x2a\xe2\xdf\x70\x87\x6f\x34\x18\x5d\x8f\xc8\x79\x5a\x89\x56\x30\xc0\x94\xa4\x0f\xb1\x48\x63\x3b\x15\xd2\xc6\x54\xc6\x22\xc2\x4d\x88\x20\xb4\x63\x75\x02\x24\xbb\xff\x96\xd4\x48\xf7\x46\x31\xb3\x18\x48\x5e\x4b\x34\x64\xea\x78\xe5\x97\xf6\x81\xbe\x04\xc0\x86\xc1\xf3\x03\x8b\x11\x55\x8a\xf0\x44\x46\x41\xda\x2d\x3b\x76\xbb\xd0\x6a\xad\x1c\xfe\x9c\xc5\x4e\x39\xba\x10\xb4\x8e\xad\xe2\x59\x0a\x7d\xc3\x25\xf6\x25\x74\x42\x2b\x8c\xb1\x2e\xaa\x79\xe4\x1c\x10\xf0\xc3\xc7\x6a\xfb\x91\xa3\xf6\xf7\x54\x32\xde\x7e\x36\x4a\xf1\x18\x82\x1e\x38\xcb\x7a\xca\x2f\xaf\x0d\xe5\x58\xc8\x06\x31\x8d\x42\x2f\xde\xd7\x19\x8b\x6b\xb1\xa9\xcb\xbe\x69\x90\x85\x78\x60\x01\x7a\x9a\xf7\xb1\xcc\xb3\x53\x4c\xc4\xd2\x97\x66\x62\x8b\x8e\xa9\x5e\x12\x9c\x1f\xbd\xc1\x30\x2b\x8b\x0c\x25\x68\x92\x34\xff\x8c\x62\xbf\xe7\x84\xa8\x33\xb5\x74\x26\x2c\x65\x10\x6d\xef\x28\x2e\x70\x8e\x42\x4e\xee\xde\xd0\x8d\xa1\xef\xa3\x8b\x9c\x00\xcc\x0a\x2a\xeb\x95\x95\xf5\x4e\xe6\x92\x33\xec\x42\x92\x40\x27\x60\x55\x70\xb0\x32\xfd\x51\xfa\x82\x72\x08\x86\xc4\x2a\x74\x59\x70\x5e\x5f\x57\xce\xa0\x64\x88\x3c\x95\x6a\xe5\x74\xdb\x2d\xf0\x9a\x04\xa5\x0a\x30\x7d\x87\xe9\x50\xa9\xe0\x50\x30\xa0\xd3\xc3\x86\x02\x12\x47\x59\xcc\x1f\x4b\xad\x5b\xe3\xe8\x96\xe6\xd2\xa7\xa3\x6a\x2a\xe8\xa4\xb8\x71\xb4\x0e\xbb\x90\x5a\x06\xc8\x66\x18\xa9\xef\xfa\x3c\x42\xb6\x87\x8f\x86\x4a\xf8\x1d\xb5\x7b\x03\x19\xb5\xf3\xbf\x91\xb0\x64\xef\x72\xe1\x6d\x13\x8f\xf4\xea\xf9\x49\x85\x4f\x29\x2a\xc2\x67\x09\xa3\x2c\xaa\x54\x74\xb1\x04\x93\xa3\x1d\x0f\x33\x3a\x23\x1f\x45\xa8\x0c\x71\xcb\xd3\x66\x0a\xf8\x8a\xb0\xb7\x80\x1c\x9c\x0e\x70\x2e\x3d\xf0\x9a\xd8\xb6\x58\x8f\x88\x2a\x69\xb0\xf0\x26\xe7\x6e\xea\x30\x42\x8e\x97\x0b\x40\x18\x42\x1a\x9a\xe8\x78\x94\x21\xf5\x19\x2e\x8b\x1f\x10\x5a\x0f\x27\x1f\x4b\xee\x16\x6c\x3c\x83\x5c\xa0\x43\x6f\x57\x81\xdc\x52\xa9\x51\x4f\x22\xa0\xa1\x3e\x7a\xaf\x3b\xf0\x41\xc3\xf8\x93\x73\x90\xe3\xba\x00\x3d\xbb\x60\x1a\x04\xd0\x23\xef\x88\x42\x3a\xcf\x90\xe2\xfb\x36\xd7\x91\x51\xb7\xa5\x9e\xaa\x83\x3d\xbe\xd9\x77\xef\x49\x9e\xe9\xf0\xf4\x05\x47\x68\x56\x73\xe3\x84\x03\x83\xdf\x5c\x34\x2a\x81\xaa\x94\x69\xd6\x0f\x79\x5c\x2a\x1e\x91\x88\xae\x26\x64\x6d\x54\xa3\x68\x56\xc8\x92\xde\x3c\xb9\x78\xf5\x2e\x0f\xc7\xf9\xb4\x6c\x10\xeb\x8b\x6f\x76\x73\xdf\xa4\xaa\xb8\x98\x76\xe2\x72\x96\xe7\x4c\x1f\x86\x82\x81\xc3\xcd\x28\x0d\x0a\xbf\x28\xd3\x07\x32\x3f\xce\x17\x16\x4a\x1b\xdf\xb6\x30\x8b\xd5\x29\x9d\xc0\x34\x38\x00\x34\x06\xb4\x86\x49\xf0\x34\x5d\x38\xac\x99\x89\x4f\x40\x1c\x25\xc0\xfe\x90\x8b\x4a\x40\xe9\x03\x2b\x7a\x1c\xf4\x99\xbd\x41\x1b\xc4\x84\xf3\x2b\x62\x24\x19\x21\x96\xde\xb2\xa1\x60\x51\xd0\x46\x57\x45\xf0\x8d\x79\x05\xf0\xbd\x7a\x01\xa0\x96\x84\x68\x4f\x64\x66\x30\x94\xaf\x82\xc2\x52\xa8\xe4\xc2\xdd\x4c\x3e\x67\x5a\x5a\x39\x93\xcc\x4c\xec\x19\x10\xf8\xc9\x20\x07\xf5\x03\x56\x16\x98\xe0\x06\x39\x33\xa2\x11\x8c\xb0\x8b\xd3\x20\x6d\xa1\xb4\xa7\x3d\x89\x18\x10\x11\x96\x86\xe8\xe0\x12\xd1\xf4\x49\x33\x5c\x90\xb2\x09\x0e\xac\x07\x3f\x80\x85\xdd\x94\x42\x20\xf7\xbf\x5b\x31\x33\x0f\xdd\x30\xb1\x64\x7b\x04\xcb\x15\x44\xee\x99\x50\x93\xe8\xfe\x53\x02\x28\x58\x7a\x26\xd2\x02\x39\x08\x9e\x00\x1a\x11\x8e\x0b\x73\xb6\x79\x81\xd8\x8e\xc1\x8c\x68\x41\xe0\x94\xe4\x21\xe0\x5b\x9b\x2a\x24\xd1\x1d\x2e\x88\x01\xe2\x02\xf9\xa2\x40\xd1\x38\x2e\x41\xa6\xe9\x95\x18\x7f\x38\x15\x4c\x33\x07\xd1\x23\x08\x8b\x23\x10\x4e\x48\x6e\xd7\xba\x43\x63\x40\xf8\x97\x28\x85\xdb\x75\xc5\xb3\xac\xcb\x54\xf2\x0b\x3d\x7f\x47\x01\x24\xfe\xaa\xbe\x84\x0c\x6d\xab\x1b\x1f\xda\xa8\x8a\xf5\x2b\x3b\xcb\x16\xfe\x8d\x30\x40\x4c\x64\xe0\xae\x0a\xed\x1e\x0d\xe5\x12\x5d\x19\x4d\x91\x89\x09\x93\x62\xa1\x3a\x6f\xf0\x46\xc8\x0b\xaf\x4d\xb3\xb4\xd9\xa2\x92\xcb\x97\xbd\x50\x2c\x85\xa2\x3a\xd0\x4c\x73\x9d\x5a\x82\x69\xae\x9c\x79\xb4\x24\x01\x39\x6c\x2b\xdf\xf1\xeb\x42\xbc\x77\xe7\x77\x97\x0f\xf1\x66\x63\x05\x5c\x4c\xe4\x98\x17\xd4\xcc\x22\xa4\x94\x6c\x85\x5e\x94\xe8\x24\x39\x1a\x8f\x53\x16\x64\x40\x59\x00\x59\x5f\x36\x5d\x1c\x73\xf6\x15\xa5\xa8\x7c\x3a\x4a\xd4\x08\x1c\x3a\x6c\xc8\xee\x42\x80\x09\xe2\xb7\x72\x69\x70\xeb\xc4\xf0\x61\xdb\x4f\x0d\x49\x88\xd8\x4f\x03\x6d\x35\x01\x98\x97\xc4\xb7\xe3\xc9\x7d\xbd\xba\x37\x0c\xa3\xd4\x5b\x74\xa4\x1b\x73\x39\x42\xe4\x93\x6b\x00\xb4\xcf\x08\xf0\x25\x8f\x60\x3b\xb3\x3a\x82\xf0\xdc\x05\xb3\x5d\x3c\x76\x97\x69\xba\xd6\xcf\x7e\x79\x06\x91\x28\xaa\xac\x59\x2e\xab\x24\xcf\x8f\xa0\xee\x12\xb7\x97\x93\xa6\x42\x84\x1d\xb2\xdf\x56\x52\xa9\x66\x33\x12\x50\xa0\x54\x5d\xe3\x68\xd6\xb4\x68\x56\x5a\x01\xf1\x54\x4e\xa4\x54\xae\x88\xef\x49\x98\x5f\x59\x90\x32\xd4\xfa\x3e\xec\x44\xfc\x94\x4a\x8a\x1d\x3d\xc6\x27\x67\x85\xc8\x02\x43\x6c\xd1\xe1\x34\x37\xb3\x15\x8c\x50\xf5\x41\x04\x84\x16\x14\x64\x88\x50\xa5\xc6\x3b\x7e\xa2\x82\xca\x11\xa0\x89\x0c\x28\x2a\x90\x7c\xe1\xc9\x6c\x8d\x06\x0b\x02\x33\x56\x5b\xb7\xac\x84\x81\xef\xcb\xc8\xc4\x38\x81\x53\x97\x83\xa8\xa8\xc7\x03\x3e\x7c\x06\x49\xec\x21\x93\xd1\x65\x45\x89\xdc\x86\x4c\x75\x6e\x51\x43\x8d\x46\x55\xd2\x52\x0d\x97\xc0\x84\xc1\x78\xf9\x0f\x1b\xfe\xb4\xa9\xda\xd2\x3d\x6b\xbd\x92\x02\x21\xae\x82\xc9\x78\x9f\x3f\x18\x3c\x00\x18\x80\xe1\x8f\x59\x64\x1d\x3d\x01\x0b\x9b\xea\xbe\x88\xc5\x0c\x7e\xc3\xc7\xfb\xce\xad\xbd\xb7\x1f\x07\x9f\x06\xff\xea\x66\x34\x18\x46\xc2\x0a\x66\x12\x9b\x50\xa5\x38\x54\x93\x1f\x81\xf4\xf1\x8f\x05\x9a\x31\xa4\x50\xb0\xe2\x12\x63\x41\xfc\x48\x01\xc3\xf0\xd8\xd8\xb3\xb3\xfb\x20\x4e\x19\x31\xf0\xd8\x34\x29\x02\x54\x64\xa6\x30\x46\x8e\x92\x54\x0b\xcd\x75\x16\x9f\xa9\xc3\xdd\x96\xcc\x4e\x6a\xe6\x0f\x8f\x4d\xb0\xc7\x80\xe1\xf1\xb7\x6a\x42\x22\xc2\x40\x76\x0c\x82\xf9\xf8\x64\xec\xa2\xad\x21\x4e\x1c\x00\x06\x20\xf9\xdf\xd8\x49\x25\xa8\xbe\x30\x9b\x01\x1c\xb6\x4d\x15\x63\x9b\x23\x05\x31\x66\x25\x9c\x08\x30\x5f\x76\xf9\x93\xcc\xe5\xd6\x58\xb5\x90\x67\x08\xec\xc8\x38\x4e\x91\xf0\xc7\x03\x32\xb2\x78\x99\x66\x17\x00\x70\x70\xb2\x05\x33\x3f\x67\x49\x01\x51\xb5\x32\x03\x96\xf5\x38\x21\x3b\x2c\xa0\xd6\x01\x48\x05\x8e\x2d\x28\xb6\xaf\x11\x9e\x9e\xd9\x85\x84\xe0\x66\x8b\x95\xb8\x7b\xcd\xca\xa0\x00\x56\x84\x15\x4c\x6e\x2c\x8e\xee\x05\xbd\xa9\x1d\xe2\xee\x49\x75\xd4\x60\xd3\x84\xa6\xda\xc2\xd4\x6c\x17\x5e\xca\xe0\x13\x79\x68\x1e\x5d\x3e\xf1\xc9\x70\xc0\xf5\x2f\x0e\xc8\x8f\xcf\x6e\xc4\x59\xdc\x66\x88\x8f\x53\x55\x56\x11\xe1\x19\x02\x40\x4b\xd7\xfd\x83\x44\xea\x12\xe1\x45\xb9\x8f\xe2\x1e\x13\x68\xc2\xaf\x42\xde\x1e\x5b\x01\x92\xcb\x6a\x36\x22\x62\x44\xf7\x54\x43\x13\x9d\x91\x84\x28\x33\x94\x72\x5a\xd6\x98\xf8\x14\xfa\xae\x2e\x02\xc9\xb6\xe2\x10\xd2\xed\x2d\x85\x16\xad\x14\xe6\xc2\x4d\x46\x48\x42\x24\x19\x76\x33\x46\x77\x68\x7c\x59\xc1\x27\xe8\xed\x41\xda\xaf\x10\x39\x60\xba\x56\x4d\x10\x50\x07\x16\x3a\x6c\x9a\xe9\x41\x31\x38\x5d\x19\x4f\x05\x71\x42\x63\x06\x92\x32\x32\xf6\x99\xaf\x32\x03\x59\x47\x22\xb7\x95\x1b\xc1\xa0\xf9\x0b\x42\xc1\x91\x59\xa0\x07\x94\xcc\x47\xed\x73\xdc\x94\x1b\x39\x13\x01\x95\x73\x03\x67\xed\xf0\x10\x18\x30\xe3\x52\xe0\x03\x8a\x61\xe7\x23\x93\x06\xcf\xd8\x1d\x96\xb3\xaa\xe3\xcd\xa1\x90\x3f\xf8\x12\x34\x89\x08\x1a\xff\xd7\xa8\xb4\xcc\xa1\x72\xc3\xa4\xfc\xb0\x13\x22\x60\xd9\x9b\xb7\xcc\xc2\x9f\xc6\x28\x46\x0a\x07\xc6\xa8\x55\x29\x27\x35\x60\xc8\x89\x43\x7e\x71\x03\x11\x93\x20\x73\x43\xe6\xc7\x5d\x35\x36\x27\x43\x2b\x04\xe4\x2c\x2e\x79\x11\x40\x11\x26\x40\xd5\x4b\x9f\xc5\x0c\xac\x04\x4d\x36\xf3\x95\x9c\xe6\x58\x28\x9a\x00\xca\x88\x2e\x37\x5a\x84\x83\x03\xca\x8c\x05\xda\x31\x56\x5a\xe3\xbc\x07\x1f\xa5\xfb\xd6\x25\x70\x9e\x33\xea\xf5\xc9\xd1\x7b\x55\xe7\x12\xb5\x09\x66\x12\xb3\xcc\xf4\x90\xac\xee\x92\xee\x77\x1f\x2e\x8c\x63\xd7\xf1\xa5\x72\xaa\xd2\xa0\x63\xb1\x9c\x8f\x0d\x57\x61\xca\x40\x9b\xf8\x88\xd2\x78\x86\xb9\x40\x99\xf4\x02\xcf\xe0\xad\x60\xfc\xf9\xda\x52\xf1\x07\xa3\x03\x3e\x1c\x9e\x70\xac\x2c\xec\xf4\x47\xc0\x0f\x40\xc7\xaf\xb5\x6b\x96\x29\xf9\x02\xe7\x46\x80\x41\x62\xa6\x3a\xe8\x85\xb6\x9c\xda\x8c\x00\x85\xd4\x5e\x42\xc0\xe1\x85\x0a\x72\x29\xd7\xd8\x8d\x73\x85\x05\xbc\x86\x16\x77\x32\x9c\x78\x1a\x8d\x48\x95\xa8\x94\xc3\xa4\xd8\x10\xc2\x60\xee\x9d\x3e\xf2\x2f\x8c\xa4\x0d\xf8\x8b\x64\x38\x12\x40\xfe\x1f\xea\xbe\xd5\x06\x36\x76\x3d\xc0\x7b\xa4\x63\x5f\xfa\xd5\xcb\x48\xb6\x60\x2a\xb2\xb3\x9c\x26\x31\x4c\x2c\xf1\x14\x83\x59\x00\x06\x19\x10\x22\x21\xd5\x1d\x8f\xbd\x0e\x97\x43\xd1\xda\xf8\xc5\xad\xea\xef\x41\x90\x55\x1d\x0c\xee\x56\x58\x3e\xd0\x87\x06\x02\x60\xc3\xae\x5d\xf1\xe9\xf8\x2a\x8b\x0d\x5e\xdb\xba\x68\x02\x56\xda\xa3\x1e\x43\x36\x39\xb2\xc6\xa5\x9f\x82\x45\x25\xa5\x57\x8f\x31\xea\x3e\x17\x38\x43\x98\x29\x01\x58\xe0\x38\x8d\x66\xf0\x68\x9c\x5c\x8e\x76\x13\xaf\x21\xf8\x97\x64\x8c\xd9\xb0\x70\x12\x29\xca\x80\x27\x1e\x74\x68\x10\x3b\x75\x58\x52\x7f\xee\x1a\xab\xbc\xd6\x98\xd9\xd0\x35\x78\x0a\x61\x68\x60\xa6\x1a\x8c\x06\x6c\x7e\xb7\x26\x34\x5a\x92\x81\x24\x42\xc6\x00\x0e\x26\x5e\xbe\x9b\x8e\xa0\x27\x82\xc9\x95\xd3\xd5\x78\x1d\xc7\x7f\x21\xa5\xce\xf2\x85\x0e\xcb\xdc\x29\xf3\x45\x47\xbe\x24\x8d\x50\xfd\xb3\xec\xd4\x46\xca\x43\x1a\x1c\x3c\x18\xa0\x1a\x8c\x36\xe0\x54\xbd\x03\x4d\xf9\x40\x6f\x58\xa3\x8d\x96\x1f\xbc\x60\x30\xc7\xba\x60\x80\x5b\x79\xf6\x41\xa5\x29\xea\x9f\x74\xa8\x02\xc1\xb3\x36\x46\x12\xca\x50\x1c\xe0\x42\x6b\x6d\x24\xd5\xcc\x04\x13\xd6\x09\x01\x6e\x4f\x78\x81\x22\x35\xb2\xa0\x3b\xc5\xa0\x5a\x1c\xfa\xbb\xe9\x7d\x44\x89\x2b\x99\xa6\xe2\xda\x45\x99\x02\x5c\x8b\x07\x4b\xae\x3c\xa9\x44\xd4\x39\x8c\x4b\x2c\x8a\x42\x12\x5f\xae\xbf\x57\x60\x8d\x5a\x9a\x77\x0c\x9c\xc4\x50\xa7\x01\xa3\xc0\x68\x14\xb6\x1e\x76\x36\xfe\x88\x97\x3f\x43\x1e\xa9\xb7\x72\xeb\xaf\x56\x10\xd4\x1c\xaa\x4e\x21\xd5\x7e\x93\xa8\xb8\xec\x6f\x64\x17\x69\xe7\x46\xa5\x98\x29\x80\x2e\x3a\x31\x2e\x00\x14\xe7\x7e\xfd\xf0\x04\x58\x28\x7e\x06\xe0\x8a\x22\xfb\x15\xc8\xfb\x9c\xc5\x10\xcc\x0c\xf9\x33\x9f\x15\xc9\xec\xf0\x22\x52\x05\x9a\x4a\x70\xce\x52\x67\x13\xab\xc5\x19\x29\x92\x14\x93\x8f\xd2\x20\xc3\xad\x54\x84\xf1\x38\x3a\xa6\xe7\xc6\x29\xfa\x23\x21\x81\x2d\xfb\xa1\x8a\xc6\xf4\x68\x86\xf9\x1c\x57\xd2\xe6\xce\xf3\xef\x6d\x29\x3e\xf8\xef\x89\x06\x38\x9b\x95\x47\xe2\x14\x81\x67\xcd\x22\x54\x68\x50\xeb\x70\xf0\xe3\xd9\xca\x4f\xbb\xf6\x34\xc9\xe0\x25\x17\x52\x70\x40\x4c\x05\x73\xf5\x00\x59\xa7\x96\x33\xec\x48\x4c\x98\xb6\x85\x0b\x81\x73\xa2\x2d\x16\x9e\x1e\x1e\xda\x33\x15\x9b\xf6\x23\x2a\x56\x2e\xe8\x38\xd2\xa7\xf0\xcc\x84\x0e\x1f\xf9\x84\x45\x11\xa4\x18\xae\xf5\x8d\x09\xb6\x74\xce\xc6\xd1\xbb\xb5\x92\xc8\xea\x55\x8e\x54\x77\x0f\x51\x57\x15\xd8\xa1\x20\xf4\x4d\x44\xb2\x67\x63\x68\x85\x9d\x8d\xd7\xf2\x2a\xde\x68\xbc\x13\x64\x14\xe8\x50\x05\xc2\xf0\xe0\xe9\x9f\xd8\xc0\x06\x5b\xad\x57\xc1\xc6\xc6\x40\x35\xc1\xa4\xad\x72\x36\x56\xb0\xd1\xc9\x30\xcd\xac\x0f\x75\x5c\x7e\xbc\x31\xae\xd8\xd7\xbb\xd2\x1c\x3b\x77\x44\x52\xf8\x21\x68\xe7\x07\xa8\xfc\xc9\xad\xbe\xb8\x30\x11\xe2\xc4\xa5\x2d\x14\xe9\x15\xb8\x1d\x04\xfe\x78\x19\x32\x5c\x4d\x48\x8f\x47\x34\x63\x66\xba\x23\x8a\xc0\xc9\x90\x68\x36\x07\x03\x32\x62\x43\x03\x32\x7d\xd0\xd9\x48\xa5\xb8\xbe\xe6\xe6\x26\x42\x0b\x25\x97\x94\x75\xfd\x49\x32\x47\xd8\x9a\x2e\x51\x08\x02\x3e\xb5\x52\xf7\xf2\x97\x30\xf1\x5e\x4e\xae\xb3\xd9\x88\xcb\x1b\x24\x52\x0a\x05\x8d\x67\x04\xeb\xb0\xe1\x49\xe3\x82\xef\x08\x84\xa6\x3f\xf6\x08\xad\x21\x07\xe7\xc5\xd6\xb5\x4b\x1b\x41\x62\x3b\x3b\x60\xdb\x76\xe6\xa2\x48\x95\xb3\xd2\xdb\x43\x3b\x0a\x5b\x7c\xba\xf0\x86\xd9\x9a\x67\xe0\x85\x5a\xd2\xfb\x8d\x38\xf8\x0d\x8c\xde\xcd\xaf\x42\xce\xb2\xa3\x84\xd5\x61\x66\x88\x25\x17\x68\x7b\xa4\xf2\xc0\x2d\x24\x15\xf7\x8f\x58\x45\xae\x49\x93\x81\xaf\xe8\xbc\x5d\x96\x37\x78\x67\x3a\xb0\x38\x3c\x98\x4b\x72\x51\xd6\x8b\x23\x45\xd2\x32\x74\x96\xdf\x76\xe7\x65\x37\x1b\x5b\xb4\x93\x4b\x36\xc7\x5d\x33\xb7\x64\xb5\xef\x63\x37\x0b\xb6\xce\x6c\xb4\x2b\xa5\xbb\x65\x8d\xed\xb8\x78\x73\xe9\xf6\xae\x8b\x69\x3d\x7a\x1c\x34\x20\x3a\x81\x1a\x81\xbe\xdc\x3c\x7d\xcc\x2d\x62\xe4\x10\x3a\x06\xfc\x06\xf7\xdf\xc8\x25\x9c\x49\x3c\xf8\x1c\xf3\x8d\x9d\xf8\x4c\x6d\x14\x04\xa9\x98\x04\x34\xc5\x4a\x53\xfb\x2f\xe1\x25\xa6\x3c\x1c\x93\x42\x6f\x0a\x16\x90\x4b\x60\xc5\x9c\x11\x63\x15\xc4\x0a\xb3\xd8\x0a\x3f\x20\x0e\xd0\x44\x0a\x1f\xe3\xb4\xcc\x4a\x7c\xf6\x54\xa7\x2b\x64\x9a\x10\x11\x2a\xab\x0c\x12\x05\x91\x24\xfb\x5d\x12\x00\xf6\xea\xf7\x80\x27\x4d\x62\x24\x6b\x8c\xeb\x1c\x89\x13\x5c\x2e\x92\xc7\xc6\x2e\x6e\x9a\x14\x93\x57\x2b\x86\x6d\x10\xc4\x32\x96\x46\x8b\xb3\x52\x17\xbd\x0d\x13\xbc\x43\x3f\x5d\x21\x73\x45\x8f\x4a\x44\x4e\x65\x8f\xe9\x9c\x7d\xcc\x4f\x9d\x13\xbb\x1f\x8e\xa2\x69\xa1\x43\x4e\xd1\x7d\xcd\xa8\x9c\x29\x26\xbe\xe8\x9c\xa4\x62\xbc\xa8\xa1\xe4\x42\x4b\xb2\xa5\xa8\x2b\xa2\x64\x23\x45\xdf\x1b\x17\x22\xb0\x12\xd1\x2d\x10\x4a\x4f\x22\x66\xc7\xa5\x3d\xb4\x4c\xa1\x9b\x45\x71\x13\x4d\x5f\x42\x50\x5c\xae\xd2\x00\xce\x5e\x18\x90\x22\x65\x20\x1b\xa0\x44\xc4\x3d\x18\xc7\x31\x13\x3e\x9a\x44\xf8\x2c\xc2\xfd\x48\xe1\xf5\x44\xf6\x58\xe2\x53\xa8\xe0\xce\xd3\x11\x52\x11\xd4\xa8\x4d\xa2\xe8\xab\x41\x92\xaa\x51\x1e\x20\xf0\x45\x65\x8e\xf7\xff\x68\xab\x98\x49\x08\x70\xd9\xa9\x95\xa4\x14\x86\x0c\x6c\x7d\x02\x41\x1b\xba\x9e\x7a\x2b\x4a\x31\xf6\xc6\x8a\xc6\x22\x9d\x10\x9f\xde\xb4\x80\x4d\xe0\x07\x34\xd4\x75\x6b\x1e\x81\xbd\x58\x4b\x42\x6c\x6a\xec\xe3\x1d\x4b\x2d\xf9\xec\x78\xc6\xbd\x59\x0b\xa9\x22\x46\xf1\x80\x5c\xfa\xec\xf2\xa5\x48\xa0\x6d\xdc\xa0\x92\x48\xf4\xea\x30\x05\x8d\x2b\x69\xd8\x47\xc2\xaf\x51\x41\xf4\xf6\x9c\xc7\xda\x1f\x93\x6d\x23\x2b\xfa\xec\xd5\x84\x9d\xcb\x2f\xdf\xac\x63\x45\x03\x22\x35\x3b\x72\x65\x46\x25\x90\x27\xa1\x58\x51\xa5\xc3\x9c\x78\x07\x02\xf9\x07\x26\x06\xa7\x52\x51\xd2\x4c\x30\x61\x84\x18\xa2\x31\x6f\xff\x3d\x89\x1a\xe2\x1f\x0a\x2e\xfd\x13\x30\xb1\x40\xb9\x51\xbc\x19\x24\xa9\x3d\x47\x93\xc2\xe9\x6d\xc5\x5f\x99\x8d\x07\x81\x21\x3b\x93\x7f\x8b\x63\xc1\x8e\x4a\x21\x89\x64\x72\xbd\x38\x99\x3c\x81\xad\xcf\x12\x42\x24\xca\x00\xcb\x6b\x14\x6d\xa0\xfd\xed\x52\xb3\x25\xc4\xa0\x8d\x8f\x44\x5b\x5c\x4b\xb0\xbe\x04\xa1\xe0\xbe\x49\x49\xb8\x42\x32\xc1\xba\xd9\xe1\x77\x9e\x3c\xae\x9b\xb3\xe0\x0c\x83\x2f\x28\xb2\x9d\x44\xdd\x08\x53\xa0\xd2\x84\x16\x3a\x8b\xc4\x21\x53\x48\xbe\xd4\x62\xca\xe9\xee\x04\x02\x3b\x07\x00\x65\x0a\x5b\x5a\xa1\xd8\x12\x67\x5f\xe9\x78\x0e\xe8\x6a\xe1\xb5\x77\x69\x2f\xcd\x2c\x05\x70\xc3\x1e\x06\xb2\xd4\xda\xe4\xe2\x0f\x23\x98\x17\x66\x39\xa0\xcb\x09\x05\x46\x00\x55\x22\xcd\x43\x72\xf2\xc2\xa2\x47\x35\xcf\x68\xb2\x54\xec\xea\x21\xcf\xa1\x2f\x69\x8a\x0c\xbd\xe1\x06\xfb\x51\x00\x2e\xb3\x5e\xd9\x78\x67\xba\x8d\x2f\xdb\x55\xc7\x3c\xff\x43\xce\x09\x22\x0f\x0d\xec\x29\xd7\x4e\x65\x0d\xda\xab\x76\xaa\xd9\xaa\xb4\xe2\x7f\xba\xae\xbc\x9c\xbc\x3d\xf9\x00\x79\x18\x24\x7b\xe6\xc1\x1c\xd7\x66\xe6\x77\xa4\x17\x77\xe5\xde\x15\x03\x6e\xbb\x60\x8e\xc0\x64\xac\x00\xaf\xc5\x2b\x13\xf2\x16\x32\xfd\x31\x05\x58\xa2\x16\xe2\x8b\xb1\x66\xf1\x19\x8a\x21\xb1\x74\x10\x7c\x9a\xeb\xb7\x58\x71\xc1\x26\x9f\x8d\x1d\x1d\xab\x8d\x10\xf7\x55\x63\xc5\x9e\xcf\xd6\x88\x08\xd5\x23\x20\xd2\x54\x45\x90\xc8\x33\xa8\x6d\x0d\x96\x42\xf2\xaa\x42\xc0\xa0\xdc\xc9\x70\x9d\xf1\x37\x4a\xc5\x56\x1a\xb4\x10\x5b\xf0\xb6\x18\xe9\xd9\x66\x51\x71\x05\xe8\x6e\x4e\x36\xa0\xe8\xa1\xb7\x67\xcc\xdf\xb9\x24\x3c\x70\x66\xe5\x54\x17\xfb\x9c\xb2\x15\x51\xb6\xcd\xc6\x94\x80\x03\x94\x2a\x89\xa4\x4a\xe6\x18\x71\xba\xba\xe3\x57\xc4\x00\x83\xa0\xec\x7e\xcf\x42\x95\x5d\xb6\x27\x8c\xbb\x62\x2b\x6c\xa1\x56\xc4\x6b\xe2\x82\xa0\x4a\xa2\xa3\x41\x65\xaa\xc0\x08\xdb\x4b\x7f\x1c\x5e\xb9\x99\x9f\x40\x9d\xae\xe2\x07\x72\x22\x4e\xf4\x3f\x23\xc9\xdc\x9f\x4a\x99\x26\x04\x64\x1c\xe1\xf2\x80\x61\xc3\x72\x34\x50\xf8\x28\x00\x26\x94\x20\x20\xdb\xd9\x06\xd1\x58\x50\x1d\x54\xbf\xa8\xe4\x8a\x80\x0f\xc5\x04\x34\x83\x51\x79\x20\x78\xa9\x62\x96\x0e\xaa\x2e\x24\x06\xcb\x50\x8c\xd4\xec\xd0\x40\xa1\x62\xa7\xbe\x06\xb2\x8d\x7d\xf5\x85\x8f\x02\x8d\xac\x7f\x60\xb5\x3b\x70\xa2\x05\x36\x60\xa8\x23\xe6\x1e\x42\x69\xad\xd5\x88\x6f\x7f\x9b\xbf\x8e\x97\x74\x44\xbe\xe3\x0f\x2f\xec\x25\x00\x41\x75\xe4\x3f\x00\x5a\xeb\xcc\x08\x40\xac\x59\xbc\x07\xc4\x66\x13\x9f\xb1\xf5\x2d\x9e\x0b\xc6\x14\x94\xc4\xb3\x7b\xe5\xf9\x49\x95\x9b\x81\x6a\xd9\x2d\x90\x28\xf5\x48\xb8\x29\x7b\x0d\x0f\x68\xcf\xcc\x7c\x3e\x1f\x94\x73\x18\x91\xa9\xd2\xa7\x57\x07\xe9\xf8\x89\x3d\x17\x4b\x83\x36\x2d\x43\x43\x3d\x40\x81\x90\xd1\x9e\x9c\x98\x0e\xd2\x01\xbd\x92\x40\x0c\xf1\x49\xf0\xc2\xea\xb0\x42\xa3\x48\xc7\xa2\x86\xc6\xb0\x00\xc6\xad\x00\xa9\x2a\x10\x1f\x51\x05\x9c\x69\xcc\xf8\x3e\xc3\x8a\x42\xd2\x0e\xc5\xb5\xb4\x8f\xf5\x79\x23\xf0\x7d\x78\x44\x55\xd4\x00\x0e\xbc\xdd\x3b\x0a\x5e\x3a\x70\x84\xf1\x97\x04\x49\x87\xbc\x09\x65\xc7\x8b\x46\xcf\xcb\x30\x07\x0e\xcf\x44\x64\xe5\xd0\xdd\x90\x06\x1e\x41\xa0\xd6\x09\x06\x5b\x01\x8e\x59\x6c\xa3\x85\x03\xf7\x49\x23\x5d\xe9\xa6\x10\xd8\x91\x7b\x06\xeb\x40\x66\x41\x08\x27\x08\x05\xf5\xda\x39\xba\x91\x82\x43\x49\x46\x72\x77\xc1\xcf\xe8\x59\x58\x74\x8a\xb8\x94\xd9\xd0\x16\x14\x03\x6c\xb1\x68\x96\x4c\xf4\x8e\xcf\x99\x98\xb3\xb9\x40\x48\xe3\x40\x43\x24\xaa\xd4\x9c\xeb\x44\x64\x17\x94\x22\x1f\x91\x2f\xe4\xb4\x99\x4b\xc2\x9f\x0e\x50\xcd\xb1\xf3\xdc\xc6\x43\xe7\xf0\xe4\x06\x18\x21\xac\xcf\x04\xb7\x43\xd2\xd3\x97\x3c\xc3\xb3\x71\x11\x6e\x5d\xc1\x9c\x3b\x97\x33\x04\x19\x4b\xe2\x38\xb9\x62\xb9\x76\x70\xa9\x52\x40\xdf\xb0\x07\x88\x40\xda\x41\x46\xe7\x8f\x83\x2e\xe4\x48\xfd\x16\xca\x50\x31\xdc\x5e\x11\x89\x7e\x3b\xc0\x10\xa7\x89\x64\xf9\x21\x02\x3b\x38\xd7\xd0\xc9\x22\x84\x1a\x2a\xf9\xfa\xa5\xf0\xc5\xc8\x22\x70\x0d\x25\x02\x74\x2a\x50\x8a\x16\x92\xda\x08\x52\x74\x33\x99\x31\xcb\xa2\xe2\xa6\x2a\xf8\xd5\x35\x51\x34\x06\xc2\xd2\x41\x09\x0b\x83\xc5\x74\x7f\xa9\x12\x80\x61\xa1\x0c\x93\x83\x88\x44\x04\xd1\x29\x04\xc7\x4c\xc4\xe6\xf0\x82\x28\xcb\xeb\x65\x03\x24\x60\x23\x3a\x13\x61\x5e\x86\x70\x43\x87\xdc\x7f\xaa\x05\xb9\x7b\x02\xfa\xf9\xd0\x87\xfe\xa6\x80\x63\xc3\xab\xf1\xfb\x13\xd8\x34\xd9\x61\x8a\xca\x0c\x23\x49\xc0\x2f\x96\x2e\x0b\x52\xe7\xb0\xac\x06\x94\x03\x5b\x19\x04\x88\x1b\x06\xa8\x04\xe1\x07\x10\x76\x60\x08\xc5\x2f\xc0\xc7\x07\x20\x5c\xe1\x4a\x95\x44\x20\x0c\x4d\x01\xf2\x38\xf1\x91\x25\x89\x4f\xa1\xf9\x49\x8f\x28\xd4\x0c\x3f\xea\xf1\xb9\x5c\xb0\x09\x50\xd0\xe3\x37\x8f\x59\x60\x2b\x6a\xa2\xb1\x92\x41\x56\x77\xd1\x40\x90\x96\x50\xa7\x3e\x34\x48\xa4\x4e\x11\x48\xa8\x0d\x3e\x1d\x78\x0f\x46\x0c\x6a\xa5\x8e\x74\x9a\x83\x09\x1f\x12\x43\xb5\x0c\x6a\x93\x0e\x84\x29\x3c\x46\xa1\x9b\x10\xbd\x37\x05\x23\x47\x37\xa4\xb5\x20\xc5\xe9\x42\x82\x12\x5b\x9d\x78\x80\xbd\xe8\x14\x30\x39\xff\x9c\x00\x75\x3f\x55\xa4\x51\xd8\x95\x15\xa4\x0d\x07\x64\xe2\x04\xba\x7d\x14\x68\x17\x77\x36\xc5\x08\x1a\x72\x80\xc0\x5c\x40\x15\x19\x5f\x14\x09\xd5\x48\x59\x31\x05\x8e\xbf\x0c\x3f\x03\xc4\x65\x12\x04\x76\xd5\x51\x45\xc5\x8e\x2f\x65\x5f\x4b\x51\xa5\xe6\x55\x6e\x65\x80\x38\x9f\x82\x4d\x6c\x1e\x67\x86\xbd\xb8\x0a\xab\x93\x7a\xd3\x9f\x03\x42\x6d\xe2\x71\xf5\xe8\xb2\x16\x2a\x78\x23\xc0\x6d\x2d\x30\x00\xd9\x2d\x4f\x0a\xec\xf5\x90\xd6\xea\x82\x8d\xb4\x06\x30\x73\x18\xe9\x63\x14\x8d\x24\x15\xec\xc5\x0f\x41\xe6\xec\x58\xe9\x22\xd8\x28\x13\xf1\x4c\xe0\x96\x91\x20\xb2\x82\xcf\xbe\x81\x18\xaf\xf3\x1a\xc6\x77\x51\xfe\xe9\x4f\x19\xf1\x47\x84\x81\x98\xc2\x3b\xd1\x73\xf5\xe7\x0e\x2e\x69\x93\x7c\x12\x21\x94\x36\xd8\xd9\xcc\xde\x72\xcf\x2f\x10\xda\x74\x91\x3f\x3e\x90\x4e\xe9\x22\xf6\x81\xa6\xe0\x59\x02\x17\x32\xb8\x1a\x77\x01\xd2\xe2\x1e\x16\x42\x1c\xd5\xfc\xb1\x06\xf2\x40\x30\xee\x30\x31\x59\xb1\x12\x9d\xad\x02\xe0\x9c\xde\xba\xb5\x37\x4e\x0e\xd6\x17\x25\x62\x04\x26\x1e\x5c\x40\x1f\xd2\xe2\x5a\x1b\xbb\x7b\xfd\x89\x2e\x12\xe8\x6f\x35\x67\x09\xa4\x1f\x06\x05\x67\xe3\x37\xd1\xc8\x70\xcb\xb8\x7c\x40\x40\x68\x36\x65\x56\x08\x7a\x0f\x65\x7f\xfb\x2d\x9b\x7d\x53\x59\x71\xa8\xd7\x53\x49\xcc\x78\xa1\xb5\x04\x03\x6b\xec\x79\x0d\x2e\xb2\x88\x64\x1d\xf8\x65\x54\x5a\x60\xbf\x6b\x64\xfa\x4c\x24\xf8\xb1\x9d\xc0\xbe\xd5\xb8\x20\xd2\x59\x37\xdb\x07\x10\x63\x2d\xe8\x67\x99\xec\x43\x37\x97\x45\x79\x9d\x82\x80\xe9\x1f\x34\xeb\xbc\x5b\x0c\x33\x37\xf5\x10\xaf\x73\x01\x91\x35\x27\x34\xe1\x1d\xc7\x2b\xc7\xc4\x15\x91\x03\x7e\x0a\x2e\xba\xe6\x01\x86\x54\x0a\xfb\x91\x18\x91\x66\x0a\xed\x85\x64\x41\xac\x70\xed\xfe\x95\x0c\x28\x36\x46\xc2\x3f\x70\x13\x09\x56\x73\xb2\x1f\xec\xf4\x14\x73\x5b\xef\x24\x07\x5d\xd5\x3e\x06\x08\xe6\xff\x56\x3e\x4d\xf5\x6d\x00\x00\x16\xe1\xab\x3b\x6d\x98\x9e\xe0\xda\xd4\x8b\x6a\x45\x32\xa1\x4d\x05\x11\x58\xb0\xaa\xa1\x18\xf6\x93\xb6\x9a\xce\x70\x54\x6b\x58\x43\x49\x18\x48\x33\x3a\x87\x64\xa3\x13\x03\x62\x99\x11\x17\x18\x67\x84\x3d\x38\x0d\x55\x78\xa0\x96\x58\x21\x1a\x3a\x6e\x0e\x12\x0a\x8e\x48\x69\x02\xf3\x04\xc6\xbc\xe9\x22\x54\x3a\xdb\x8f\x32\x15\x45\x84\x47\xa8\x5b\x14\xdd\xd3\x1a\xa0\x05\x89\x01\x84\x8e\xb1\xd5\xe7\x30\xe0\xbc\xda\x08\x35\x88\xbc\x6e\x8e\x08\x45\x6e\x95\xca\xa2\xdc\x90\xb4\x18\x30\x80\xf3\x01\x60\xb1\xa6\x96\x1f\x33\x15\x73\xe2\x6f\x93\x95\xec\x23\x86\x09\xe7\x43\x74\x92\xf3\x19\x02\xbe\x6a\x39\x34\xca\xab\x57\x6f\x75\x53\xce\xd0\xf4\x33\x63\x08\x20\xe2\x34\x11\x62\xed\x00\x60\x1d\x00\xe0\x7d\xf1\x03\xf7\xfd\x8d\x8c\x25\x3d\x76\x45\x04\x96\x3a\x1c\x0d\x6e\x8e\x54\x17\xa7\xc7\xcd\xbe\x15\xb3\xa9\x5c\x00\xf8\x3f\xbb\x04\x20\x2b\x8c\xd3\x4e\xfc\x41\x27\x6e\x3a\xa8\xf7\x02\xed\x5d\x97\xc8\x99\x0e\x28\x11\x8a\x09\xb4\x44\x58\x8f\x83\xcc\x58\x4a\x08\xb0\x03\xc4\x62\x96\x28\xe5\x99\x1f\x8e\x3c\x22\x51\x15\x60\xd7\xd8\x1a\x29\x09\x02\x26\x89\xaa\x2f\x87\x91\x65\x7b\xc5\x58\xe2\xc2\x70\xa0\x01\x12\x24\x32\xba\x98\xe2\x27\xf3\xa4\x76\xb1\x8c\xee\x16\x87\x47\xe1\x17\x40\xbe\x7f\x48\xd1\x5a\x23\xe7\xdb\xb7\x58\x34\x76\x20\xb8\x48\x72\xdb\xca\x34\xfd\xfc\x11\xa1\x1a\x10\x94\xfe\x28\x8c\x0e\xe8\x48\x10\x5d\x98\xa8\x64\x5e\xe5\xd9\x69\x14\x38\xe0\x9a\xb7\x44\x75\x93\xf8\xf4\x24\xda\x40\x0e\x11\x4d\xc2\x21\xd8\xa1\x86\x6d\x7c\xea\xe4\xa2\xa4\xa3\x03\x01\x7d\x70\xf1\x48\x32\xe1\x25\x61\xa6\xf6\x20\xf2\xc1\x4e\x28\xd5\x61\x62\x05\x0e\x08\x9a\x61\x36\x8e\xe1\x93\xc7\x2b\x1b\x39\x97\x1b\x0a\x08\x9b\x27\x51\x77\x7c\xc6\x9e\xb7\x22\xda\x82\x45\x2c\xc4\x4a\x7d\x52\x80\xce\xac\xc8\x34\x24\xb4\xdf\xce\x10\x69\xfd\x68\x50\x7e\xc2\x32\x0d\x51\x42\x55\x0d\xee\x7b\xe0\xce\x0b\x93\x67\x4a\x80\xee\xd4\xe8\x39\x52\xd1\x7c\x20\xc1\x7c\xec\x73\xb8\xf3\x33\x67\x4f\x19\xbe\xdd\xcc\x4e\xdb\xe4\x08\x93\xd7\xb1\xff\x8a\xd2\x2d\x18\x9e\x94\x22\x14\xb4\xe1\xc1\xf1\x9c\xac\x8b\x7a\xde\xae\x02\x2a\xae\xcb\x43\x1e\x01\x93\x27\x10\x6f\x05\x0b\xc9\x97\x21\x7e\x42\x63\xbe\xf3\x5d\xa6\x57\x1d\x7b\x6a\xa9\x30\x04\x37\x08\xf9\x48\x12\x18\x6c\xd3\x2b\xc8\xb1\x16\x64\x86\x5e\xc0\xcb\x0b\x7c\x6b\x60\xd2\x49\xc1\xeb\xc6\xc0\x6f\x34\x3f\x23\xc7\xc4\xa6\x47\x6d\x69\x4a\xc4\xf5\x42\x84\x39\x6a\x84\xc6\x0b\xbc\xc1\x34\x8b\x0e\xb1\xf2\x57\x04\x61\x66\xbe\x99\xe6\xf3\xe4\x11\xb1\x6c\x4d\x7b\xc6\x6e\x11\x12\x38\xfb\xc0\xea\xdf\x50\xd7\xcd\x5a\x88\xd6\x4f\x1a\x1c\xc5\x38\x73\xe4\xbd\x18\x05\xcf\x39\x25\x06\xfb\xfe\xc6\x65\x21\x63\x21\xc5\x03\x93\xa7\x89\x71\x0c\xcd\xd5\x5e\x27\x8e\xc8\x1d\x72\x0d\xfe\x06\x99\x7a\xb5\x51\x15\xb0\xd1\x06\x18\x4c\x34\xd9\xa9\x42\xfb\x34\x1c\x77\x7a\xe8\x5f\xa7\x91\x10\x96\xac\xb3\x3d\xcc\xba\xfa\x4a\xdf\x67\x23\x85\xc5\x04\x0d\x41\x07\xfd\x02\x40\x81\xa6\xee\x6d\xe1\x18\x4c\x2f\xb1\x0b\x07\x17\x9c\x80\x07\x0d\xa0\xe3\x9c\x76\x02\x85\x85\x07\x4c\x25\x09\x8e\xa5\xcc\x53\x09\x34\xa5\x67\x6f\x4c\xf1\xd2\xdd\xce\x1a\x91\x84\x49\x09\x2b\xd5\x02\x72\x26\x2b\x44\x5f\x60\xd1\x59\x07\xdd\x22\x8a\xc5\x25\x41\x26\xc8\x12\x0b\x7f\xe3\xbf\x87\x80\x19\xd1\x36\xf2\x84\xcb\x00\x63\x1e\xc7\x8d\x66\x66\xb1\x88\xfe\x98\x8b\xdb\x21\xef\x74\x39\x96\x97\x8a\xa6\x24\x5d\x3a\xf2\x0f\x1d\xc0\x88\x3d\x61\x20\x52\xe9\x22\xa6\x80\xd5\xf7\xd5\xcf\x19\x1b\x85\x32\xa9\x2a\x4d\x41\x7e\xc8\x1d\x15\xd0\x1b\xb3\x82\x50\x97\x41\xb3\xcc\x13\x3a\x8a\xac\xc2\x55\x85\x27\x3f\x4d\xf0\x44\xca\x9c\x19\x47\x0e\x0a\x47\x8d\xce\xd4\x25\x06\x59\x58\xa3\xe4\x7b\x38\x22\xb2\xdf\x34\x8d\x88\x27\xc2\x0d\x0c\x40\xe0\x22\x23\x94\x1d\xc0\x60\x10\xee\xaa\x41\x0b\x4b\x49\x97\x85\xe2\xb4\x1b\x32\x45\x96\xa5\x1c\x13\xad\x5c\x4a\xb4\x98\x66\x01\x26\xd6\x87\xef\x0b\xe6\xa3\x7b\x22\x6f\xbb\xfb\x2d\x43\x8c\x48\xa4\x29\x56\x02\x14\xa2\xb7\xac\x99\x10\x9d\x56\xb5\x8d\xbe\x48\x1e\x2f\x05\x82\x27\x32\x02\xd5\x12\x6a\x92\x38\x3e\xa7\x86\xd4\x48\xfb\xc4\xb1\x16\xf4\xce\x4d\x1f\xae\x72\x40\xda\x04\x23\x84\x6d\xbb\x1e\x97\x23\x63\x70\x42\x19\x3a\xda\xd3\xe1\x99\xfe\x9d\x4d\xa0\xe5\xa6\xb0\x17\x46\xe8\xed\xb9\xae\x48\x0f\xe2\x52\xc3\xad\x12\x00\x16\xc8\x27\x43\x24\xa4\xa6\x26\x83\xf2\x41\xe0\xeb\x3f\x61\x15\x34\x66\x16\x04\x7c\x3c\x9e\xfb\xee\x12\x83\x5c\xc9\xd9\x0d\x61\x57\x16\x99\x5f\xce\x94\x0a\x3b\x75\x58\x8c\x90\xd6\x24\x3a\xe1\xd9\xd9\x7f\x77\x94\xc8\x01\x1e\xf0\x02\x3d\x5a\xda\x13\xfc\xf1\x01\x7c\x03\x96\x09\x61\xfd\xc6\x09\xd6\x83\x32\x06\xc2\x82\x70\x91\x0f\x29\xff\x15\x89\xdd\x18\xd5\x46\x47\x69\xd2\x4c\xf0\x62\x58\x41\x98\x7e\x07\xb0\x59\x56\xfb\xad\xa4\xc9\xf5\xe2\xd3\x5b\x63\x38\x9f\xbe\x11\x26\xb7\x3d\x18\x36\xf8\xaf\xb3\x7b\xd8\x43\x0d\x74\xc9\x50\xf6\x25\x88\x25\xe8\x22\x5e\x86\x90\xd9\x89\x7e\x11\x06\x69\x0a\x43\xfb\x44\x03\xfa\x97\x49\x73\x6a\x05\x46\x4e\x15\x9f\x15\xd0\x3a\x47\x97\x5d\xb8\x83\x41\x41\x04\xe9\x7e\x52\x3b\xfb\x03\x15\x03\x5a\x75\x12\x4d\xc1\x74\x24\x9a\x9f\xb4\x24\xf8\x05\x06\x45\xf3\xf4\xb7\x1c\x47\xe1\x9d\x6e\xfa\xbc\x3e\xf8\x38\xc2\x23\x33\x80\x88\x6a\x1e\x22\x87\xb9\xc5\x19\xe5\x70\x48\x13\x39\x84\x41\x5f\x8a\xf7\x2d\x57\xad\x2a\x16\x1d\xac\xa4\x64\x7e\x3e\x1f\xd8\xbe\xc4\x0e\x86\x20\xa9\xc4\x3a\x27\x65\x9c\x29\x3c\x3c\x33\xaf\x75\xa6\xab\xbc\xd5\x7a\x4b\x39\x4d\xa5\xcc\x20\x26\x22\x07\x08\x03\x04\xde\x74\xd1\x0a\xd5\xd7\xc4\xd4\x85\x4c\xfd\x73\x2c\x1a\x43\xc2\x66\x28\xaa\xad\x3a\xe1\x18\x60\x5c\x01\x60\x42\x30\x42\x81\xe8\xf7\x34\xc1\x33\x26\xa2\x5e\x50\x08\xd9\xae\x8d\x66\x4a\x87\xf4\x4a\x60\x5c\x17\x51\xc5\x8c\x7b\x90\x44\x4b\xc4\x51\x85\xf4\xdd\x69\x9e\x48\x83\x0a\xdf\x4b\x15\x1e\xb1\x01\xb6\x29\xed\xfc\x24\x16\x84\x2f\xda\xc4\xbc\x90\x9b\x50\x5b\x65\x71\x26\xeb\x51\xc2\xa6\x70\x66\x4e\x14\x68\xbb\xc4\x98\x94\x4b\xa6\x17\xeb\xca\x8d\x0b\x47\xb2\x19\xbd\x7e\xf3\x67\x55\xcc\x6c\xf3\x0c\xc3\xc3\x5b\x5d\x19\x29\x19\x1d\x21\x44\x61\x4e\x24\x4d\xfd\x45\x40\xc2\x19\xbe\xd4\x62\xf3\x0a\x54\x5e\x30\xa8\x7a\x51\x36\x2f\xd4\x1d\x04\x07\xf3\x7c\x45\xaa\x51\x0c\x55\xe8\x13\xa1\x6e\x7e\x27\x9e\x28\x3a\x88\xd0\x30\x9d\xa7\x3e\x8a\x8d\xad\x19\x89\x20\x85\x56\xcd\xd1\xf7\x4e\xbe\x08\x70\x17\x73\xb9\xa3\x93\x70\x90\xb4\xac\xbf\x04\x07\x22\xf1\xab\xab\x51\x23\x1b\xed\x16\x7a\x1e\x9c\x60\x8b\xb7\x08\x96\xf0\xec\x6c\xfa\x7c\x23\xd3\x75\xe1\xa0\xda\x70\xbd\x81\x7f\x54\xb8\x62\xd9\x22\x96\xa8\x56\xeb\x77\x6c\xb3\x1d\xb3\xed\xf2\x91\xce\x3b\x3e\xfc\x39\x4d\xc5\x2a\x9c\x4c\x3b\x1d\x02\xa3\x1d\x56\xea\xe5\x35\x6f\x77\x51\x48\x82\x4b\x1d\x18\x42\x0d\x36\xd7\x23\xb2\x41\xa0\x35\xe8\xd5\x86\xdb\x88\x9e\x4e\x9e\x9b\x00\x2e\xa8\x84\xaa\x41\xab\x8e\x68\x2b\x2c\x0c\x74\x1a\xd8\x10\xbc\xc2\x05\x06\x92\x2f\x74\x03\xba\x70\xb5\x72\x5a\x6d\xda\x74\x51\xc0\x63\x9f\x35\x1b\x66\x40\x3e\x53\x99\x00\xcc\x5b\x6b\x06\xf4\x55\x02\x18\x2e\x5c\xc0\xf5\xcc\xa1\x50\x01\x59\xb6\x2b\xf1\xb5\x4e\xfa\xed\x9d\x1a\xfc\x70\x80\xc9\x3b\xcd\x2c\x25\xb4\xa7\x5c\x93\x2b\x9a\x4e\x33\xde\x5e\xc6\xd3\x29\x0d\x47\x16\xde\x0d\xb5\x6d\xa4\x44\x90\xdc\x1c\x0c\xab\x75\xe0\xb3\x4a\x88\x88\x12\x06\xf2\xa2\xa6\xcc\x00\xed\xec\x1e\xd9\x83\x77\x97\x2d\x1d\x8c\x7c\x74\x0f\x16\xd3\xff\x2c\x20\xae\x4f\x80\x50\x62\xf2\x5d\x43\x0b\xa6\x20\xd6\x51\x74\x9d\x71\x95\x1c\x41\xe3\xaa\x9a\x06\x46\xa0\x08\x5c\x16\x53\x4e\xa7\xfc\x2a\x0b\xe3\xc0\xc7\xc0\x91\x03\xdc\x23\xa0\x61\x06\xc9\x2d\x35\x1c\x23\x53\x80\x0a\xfc\x82\x79\x59\x40\x99\x1f\xa3\xeb\x5f\xba\x24\x11\x42\xee\x6b\x4c\xb8\x7b\x80\x32\x17\xc0\xc0\x8a\x56\xb6\xab\x82\x4a\x82\xa7\x38\x65\x0c\x41\x1d\x0c\x59\x08\x31\x14\x86\x48\x13\x39\x34\x65\x6c\xb7\x9a\xf3\x86\x04\xf3\xa9\x24\x91\x13\x13\xaa\xde\x0f\x27\x1b\x16\x42\x05\x4d\x2e\xc9\xbd\x77\x5e\x0f\x53\xd1\x59\x28\x76\x96\x8a\x35\x24\xa2\xd0\xe7\x30\x2c\x06\x20\xc2\x2d\x25\x0a\xfe\xc1\xd2\x8f\xe9\x6d\x4e\x2c\x0a\x82\xae\x98\x58\x9f\xd1\xd6\x81\x80\x1c\x9b\x17\x78\x04\x22\x1b\x1d\xf2\xb0\x0f\x15\x21\xdd\xc0\x7b\x43\xb4\xb5\x01\xcf\x90\x0f\xac\x29\xa4\x0e\xce\xe4\xec\x76\x10\x3f\x33\x28\x2f\x71\xea\xae\xe1\x21\xb2\x55\x86\x02\xab\x58\xc1\x45\x0e\xf4\x0c\xc9\x01\x7e\x80\x51\x86\x9f\x6d\xa8\x75\x20\x4d\x52\x63\x5e\x6e\xea\xc8\xd9\x0f\xa1\x65\x74\xa6\x2a\xe4\xf6\x1c\xbd\xa2\x8d\x87\x4a\xdb\x34\x5d\x7c\xf3\xab\x16\x23\x80\xe1\x58\xbf\xaf\x32\x66\x63\xbe\x2e\xad\x3f\x1d\x86\x19\x51\x58\x8d\x04\x2b\xf4\xc5\x28\x12\x0f\x9f\x16\xb5\x93\x6d\x59\x84\x14\x7e\x0c\xb7\x71\xa1\x66\xee\xa7\x03\x0e\x8c\xd6\x8b\xec\x39\x1f\x49\x6f\x1c\x5a\x52\xc5\x34\xdd\xb2\x01\x89\x57\xdc\x63\xcb\x67\xd0\xb1\x37\x63\xc1\xae\xe1\x45\x0a\xe2\x55\xaf\xe7\x6b\x55\x96\x32\x8c\x5f\xf0\x6a\x9d\xda\x1e\x48\x7a\xda\x71\x4a\xad\x75\x48\x7f\x38\x28\xc4\x9d\x62\xbc\xfb\x5b\x4c\xa3\xf1\xab\xb2\x8c\x8a\xa1\x82\x32\x67\x9c\xd2\x44\xef\x49\x62\x5a\x9a\x01\x9a\xc3\x02\xad\xbb\x8d\x38\xb9\xa0\x78\x93\x5c\x13\xb8\x6d\xc0\x2d\xfa\xb1\x20\x79\x38\x4a\x7a\x6d\xc8\x0a\x7e\xe1\xc3\xbc\xea\xdd\xd0\xc0\x93\x20\x88\x1d\xea\x14\x58\x60\x45\x80\x04\xc2\xca\x8c\x99\xcf\x4d\xc7\x91\xc7\x71\x8b\x83\x49\xd1\xaa\xf5\x0d\x29\x13\xa6\xe3\x2b\x92\x6d\x84\x39\xc7\xa0\x97\xf3\x0d\x1d\x86\xa5\xc6\x61\xf4\x83\x2e\x1e\x29\xa8\xa1\x35\xd1\x17\xe4\x3f\xcb\xec\x30\x55\x86\x38\x24\x61\xe2\x1e\x0b\x29\x84\x07\x45\x67\x8e\x0b\x91\x01\xb9\xdf\x73\x19\xc7\x36\x0a\x33\x4c\xa4\xf3\xba\xb5\x3d\xf4\x9c\x65\x52\xc8\x4a\x23\x0b\x21\xc4\x94\x09\x9a\x63\x88\x9e\x8a\xc5\xf4\x33\x41\x0e\x11\x55\x67\x69\x8e\xc9\x23\xdc\xa6\xc0\x80\x15\x09\x47\xc5\x81\x27\x63\xe3\x6f\x82\xe3\xcf\x32\xf7\x41\xad\x96\x45\x92\x6f\x86\xaa\x1f\xc2\xe5\x28\x29\x29\x60\xe8\x51\x57\x01\x46\x54\xc1\x5b\x45\x21\x87\x07\x39\x77\x65\x95\x15\xb0\xe0\xe6\x61\xa5\xbc\x5f\x4c\xcc\x66\xb1\x94\x71\xb8\x66\x64\x16\xad\xe9\x31\xc1\x6f\x16\xfd\xe6\x28\x60\x4c\x92\xd0\x17\xb4\x43\xe0\xf2\x3e\xe4\x6e\x66\x15\xe8\x42\x32\x5d\x68\xc5\x36\x05\x74\xad\xfe\x8c\xd6\xfd\x76\xf2\xa0\xc5\x9d\x92\xec\xcd\x27\x86\x72\xf8\x30\x90\x4e\xb7\x63\xdc\x55\xea\xe0\x16\xef\x6b\xdd\xac\x2b\x94\xde\x62\x8f\x7f\xdc\xe7\x3f\x4f\xe1\x82\x52\x18\xcc\x10\x36\xaf\xe9\x61\x38\xe7\x40\xd5\x65\x4c\x26\xe4\x3a\xf1\xdd\x6d\xae\x09\x19\xb5\x85\x7b\xc0\x4d\x49\x10\x2c\x78\x39\xb3\x11\x80\x00\x37\xcc\x5a\x68\xe1\x43\x4d\x20\x31\x10\x94\xda\xb6\x51\xe2\x21\x19\xbd\xc1\x7e\x04\x8e\x61\xfb\xf0\x2e\x45\x1c\xf4\xbf\x4e\x1c\xaa\x85\xab\x47\x0c\x0b\x60\x50\xc7\x5c\xb6\xe1\x3f\xde\x81\x7a\xc1\x50\xa3\x86\x82\x21\x78\x97\xbd\xcb\x59\x6b\x37\xe4\x60\x48\xdc\x6a\x90\x52\x94\x2f\x22\xd3\x2d\x0d\xe9\x16\xe3\xf1\xab\x80\xf6\xe4\xb4\x16\x71\xb0\x78\x5a\x03\x6d\xc3\x5f\x6d\x4e\x87\xe5\xe9\xdf\xe1\x08\xa1\x28\x14\x61\x31\x1a\xd8\xd6\x87\x6a\x95\xeb\xee\x9d\x3f\xdd\x94\x17\xc4\xc5\x32\x02\x40\xc7\x0e\x40\x0a\xbc\xc0\x40\x1a\x26\x01\xcb\xa2\x0b\xe9\x52\x51\x14\xc9\xf5\x52\x46\x9c\x0b\xa3\xae\xf8\x4a\x31\x58\x49\xa0\xd4\x5b\x27\x26\x33\x76\x7c\x28\x33\x18\x48\x42\x0e\x74\xe9\xf0\x81\xdb\xbb\xe5\x4d\x65\x1f\x89\x7a\x3d\x5f\x02\x60\xcd\xb5\xe1\x4f\xe8\xad\xb1\x2d\x20\x03\x90\x0c\x51\x03\x07\x89\x63\x09\x8e\x20\xb1\x16\x0c\xdc\x3c\xd9\x62\x81\xcd\x35\x93\x89\x28\xd2\xb6\x86\xf8\xcf\x82\xc0\x38\xc5\x89\x58\xce\x72\xca\x10\x89\x10\xb6\x58\x10\x6c\x4b\x68\x42\xca\xc1\x0e\x26\x69\x4c\x0f\x70\x16\xe9\x46\x83\xae\x36\x27\xa6\xd6\x96\x35\x6f\xf2\x83\xaa\x39\xb9\x93\x9f\x65\xd0\xeb\x2e\xb0\xb9\xc7\x0b\x2f\x75\xf8\x25\x0e\xe2\x13\x9c\x38\x38\x8c\xc2\x65\x4b\xd9\x01\x04\x01\x9b\xc4\xf0\xb8\x24\xc3\xe2\xb2\xe7\xc3\xa1\xc0\xc0\x4f\x27\x64\x11\x9f\xa7\x19\x9e\xa5\xc8\x67\x05\x4f\xde\x07\x6f\x38\x49\x93\xea\x67\x8b\x01\x45\x8f\x09\xdd\x0c\x34\x3a\xca\x04\xf6\x27\x5f\x8b\x10\xa2\xc3\x4c\x21\xd1\xa3\x64\xc0\x7f\xa2\x85\x07\x58\x49\xe2\xe3\x97\x6d\x2d\x1e\x67\x63\x1f\xd5\x2a\xc6\x1d\x0c\xa8\x68\xbb\x98\x3d\x92\x33\x10\x6a\x87\x4e\xb8\x88\x09\xf0\xc3\xe7\x38\x0c\x0a\x86\x87\xa4\x9b\x65\xe1\x20\xb6\x55\x24\x33\x82\x46\xbc\x8e\xb7\x3c\xbd\x8a\xf3\xe0\xf4\xa8\xbd\xca\xa0\xe3\x97\x2e\x4c\xce\x2a\x0c\xf8\x04\x4d\xc8\x57\x42\xf2\x96\x0c\xc0\x13\xb5\x15\x30\x5a\x36\x22\x40\x12\xe1\x00\xd9\x69\xfd\xb6\x80\x23\xbc\x08\x64\x42\x73\x68\x2b\x4f\xcd\x05\xb6\xa5\xf6\x8b\x4d\xe6\x40\xb1\xc4\xa1\xe1\x94\x9c\x4c\x5c\x39\x00\x1c\x5e\xb1\x20\xda\x58\x28\x05\x5a\xbc\xd6\x32\x2b\x4a\x36\x4b\xf8\x00\xd1\x85\x4d\x87\x55\x02\xe2\x42\x74\xe0\x56\x0e\xc1\x68\x42\x9c\xdc\x6c\xb6\x41\x87\x58\xec\x21\x06\x81\xb1\xe1\xc5\xae\x6f\x3e\x86\xfb\x04\x91\xee\xf7\x08\xc8\x7c\x47\x81\xec\x81\xfa\x4c\x32\x11\xbe\x3c\xa8\xc2\x97\xcd\xc9\x24\x6c\x30\xa7\x13\x59\x7b\xa0\x96\x9d\x26\xcc\xd6\x57\xa2\x01\x5b\x04\x0e\xb7\xcc\x5e\x40\x0c\xa2\x33\xb0\x42\xe5\x92\xf3\x2b\x10\x35\xe4\x40\x51\x07\x2a\x2d\x35\x05\xa5\xf2\x29\x4d\x0c\x18\x46\x55\xb5\x5f\x21\x3e\x4d\x29\x00\x5c\x52\x8d\xa3\xa1\x20\xa7\x3a\x87\xea\x43\x41\x63\xb6\x8e\x11\x35\x66\xd8\x5e\x82\x7c\x9a\xa7\x9c\x8e\xb6\x0e\xee\xd8\x08\x96\x4f\x52\xcf\x7c\xb8\x68\x06\xac\xf1\x70\x24\x77\x6c\x72\x52\xbd\xdb\x27\x89\x8a\xab\xfb\x31\x49\x9a\x69\xe5\x96\x45\x01\x05\x2e\xeb\xca\xb3\x03\x4c\x00\x34\x1d\xc0\xc5\x01\x21\x84\x58\xfd\x12\xa3\x4d\x96\xde\x2a\x1b\x30\x0a\x3d\x76\x02\x56\x12\x65\x8b\x85\xd8\x0d\x36\x04\x01\xd3\x80\x64\x34\x9c\xda\x42\x04\xe0\xbf\xb4\xe0\x65\x26\x83\x88\xc7\x1c\x69\x18\x61\x08\x44\xcb\xbc\xf8\xb7\x61\xbc\x25\x60\x94\x8a\x50\x69\x1a\x15\x85\x46\x06\xe1\xdb\x88\x3b\x7b\x01\x2e\xb9\xb4\xa3\x7c\x18\xc8\x83\x80\xb0\xe1\x2a\xb8\xd7\x36\xaa\x0e\x4d\x1c\x05\x92\x36\xb8\xc0\xa0\x5d\xf2\xe7\x39\x24\x00\x5d\x97\x37\x61\xa0\x00\xc8\x3b\xf2\x42\xfc\x3c\x2a\x22\x5d\x97\xd7\x32\x3a\x78\x2e\x56\x5c\xa4\xf5\xdc\x55\xc9\x30\x33\x58\x00\x21\x24\x89\x4d\x56\x90\x8e\x8d\xd4\x4c\x21\xc9\x00\xf5\x38\x2a\x12\x95\x18\x68\xa4\x1e\x00\xae\x1d\xf7\xf4\x7e\xce\xd9\xe4\x66\x76\x0b\xd4\xbc\x26\xf0\x5c\xb7\x86\x14\x84\xdc\x65\xd8\x23\x47\x09\x99\x27\x93\x91\xb0\x99\x28\xa4\x78\xfd\xb7\x8f\x4d\xe4\xc3\x0e\xdf\x91\x17\x93\x5a\x83\x8c\x4f\x2c\xa9\x59\x13\x89\x2a\x0d\x39\xec\xc7\x9a\x54\x7b\x77\x90\xb4\x68\xf0\x21\x54\x86\xa9\x70\x10\x12\x96\xa4\x27\x20\x5b\x1a\x3f\x33\xda\x91\x0e\xbf\x4d\xb1\x33\xc0\xdf\x65\xaa\x0b\x3f\x05\x9c\xea\x5c\x05\xcf\x13\xc1\x1b\xe8\xa3\xbd\x4d\x6e\x1a\xfa\x52\x4e\xb2\xe1\x5d\xcc\x0a\x21\x1a\x2f\x26\x7e\x55\xf3\xda\xd3\x04\x3a\xe1\xbe\x19\xa4\xab\x71\xc6\x49\x49\xa7\xa6\x97\xb9\x25\x6a\x89\x59\xca\x4c\xe9\xda\xa1\x59\x36\x19\x32\x95\x88\xf5\xd0\x34\x96\x8a\x83\x4a\xba\x1a\xd6\x40\xe2\xdb\xab\x56\x90\x26\xc0\xa7\xb9\x20\x2a\x8b\x52\x7a\x31\xee\x31\xa1\x0d\x52\x7a\x6c\x65\x3c\x91\xe9\x2c\x9c\xa2\x1e\x39\x8b\x10\x24\xb0\x00\x32\x24\x6a\x2f\x49\x9e\xe7\x84\x6b\x80\x2d\xc1\x32\x32\x43\xc3\xcd\xab\x5b\xf4\x78\x03\xbd\x75\x76\x8c\xff\x4a\xf6\x4d\xa8\x5d\x72\xc8\x5b\xec\x39\xc7\xe0\x14\x23\x1b\x9c\xfe\xb3\x36\xca\x31\xf9\x58\xd7\x01\xf3\x1b\x02\x81\xb3\x77\x0a\x86\x5c\xff\x26\xd2\xf1\xc9\xb4\x2f\x4d\xe2\xdc\x6b\x8b\xa6\x84\x7d\x3c\x9a\x1f\x64\x8b\x3c\x3f\x89\x6c\xa6\x13\xe2\xf7\x0b\x6a\x3f\xcc\x10\x63\x86\x00\x08\x02\x84\xd3\x9c\x58\x1f\x0f\x70\xd2\x13\x00\xce\x10\xf1\x5f\x10\xf8\xb4\x58\xdb\xe2\x30\x1f\xe2\x24\x1d\x43\xca\x2a\xa3\xd1\x2d\x6b\x81\x38\xaa\x01\x20\xea\x0b\x90\xc5\x73\x1d\x66\xbc\x8a\x30\xe5\x1e\x62\x8b\x17\x68\x44\x15\xf8\x8f\x19\xf6\xd6\xfa\xda\x8c\xb9\x45\xd6\xed\x91\xa8\xbb\x14\x14\xf7\x1a\xa6\xb7\xa0\x6b\xea\x16\x0d\x99\x20\x7d\x7e\xe0\xe1\x85\x38\x44\x44\xdc\xaf\xb7\x29\x5c\x5b\x45\xc6\xfd\xfd\x32\xdb\xc1\x96\x6c\x48\xe3\xb0\xa6\x9b\x96\x28\x38\x70\x00\x4e\x7c\x0e\xb7\x81\x19\xfd\x5f\x88\xc3\x30\x4f\x12\x6c\x13\x87\x3e\xdb\x56\x07\x49\xcf\x32\x77\x70\x45\x08\xe0\xb0\x46\xc7\x11\x4a\x91\x82\x30\x29\x84\xac\x3e\x34\x55\xcd\xed\xc8\x54\xa0\xb0\xbc\xc0\x0b\x02\x08\xd8\xc2\x4e\x9b\x47\xee\x0e\x24\xf3\x3a\xf2\x15\x9e\xa9\x4a\x29\x21\x85\x1a\xf5\x49\xae\x93\x73\x3d\x0e\x14\xee\xb3\xa1\x1c\x4c\x9e\x48\x61\x0f\x95\x82\x58\xab\xcc\x3e\x25\xfe\x8d\x05\x1f\xb5\x22\x58\x90\x24\xdf\x64\xc8\xa3\x0e\x96\x9f\x8b\x28\x3f\xa6\xe7\x1a\x36\x90\x4d\x1b\xa0\xd7\x2b\xf1\xa9\x6c\x2b\x1b\x64\x2e\x18\xfc\x19\xdd\xcd\x9d\x17\x01\x7a\x41\xd4\x7b\xbf\x62\x46\x2b\xae\x74\x1e\x08\x03\xa6\x76\xb1\x25\x24\x2a\xfe\xf3\x50\x35\xf5\xfa\x1a\x84\x65\x07\xd6\x29\x9f\x1d\xd5\x42\xb6\x6b\x5c\xeb\xc0\x1f\x60\x00\xd4\x2b\x17\x4b\x2d\x75\xec\x4e\xf4\xf9\x53\xf2\x7b\xe8\x47\xad\x42\x21\x90\xbb\xf8\x3a\xa3\x1f\xee\x59\x94\xef\x82\xe8\x49\xaf\x7c\xc0\x68\xbc\x43\x6c\x82\x81\xd9\x31\xed\x9f\x14\x3d\xa7\x4a\x45\x71\x64\x7a\x52\x68\x76\x4c\x88\x80\xe1\x8c\xb0\xf8\xde\x78\x02\xf4\x84\xf8\x4c\xf7\xaf\x86\x94\xa8\x21\xcd\xae\x0d\xc6\xe3\x0b\xc4\x2b\x24\xaf\x24\x57\xb0\x87\xc4\xc9\x16\x61\x11\x05\x06\xe9\x06\x07\x8e\x29\xa3\xee\xb7\x9a\x10\x42\x74\x55\xf8\xbc\xbd\x08\x73\x80\x22\xa9\x24\xcc\xd1\x22\x82\x50\x11\xac\xc8\xbd\xb8\xc4\x86\x24\x61\x70\xf8\xa4\xc2\xda\x34\x16\xa0\x00\x46\xc1\xb6\x61\x84\x60\x46\x92\xb2\xa2\xc8\x25\x69\x67\xfc\xd2\x96\x3d\xd2\xb8\x18\x49\x14\x3f\x1e\x86\x94\x88\x28\xa2\xbc\x49\xab\x66\x40\xf3\x78\x9b\x6b\x45\xd4\x9e\xab\x7d\x3c\xfa\x66\x0e\x94\xd1\xbc\x53\x98\xaf\x8a\x19\x87\x6f\x12\x6c\x04\x01\x09\xaf\xd8\x44\xa5\xcb\x4b\xd4\xcc\x8b\x20\x5d\x99\x15\x08\x1b\x66\x8f\x98\x2b\x30\x10\x38\x79\xcd\x81\xbe\x77\x44\xdf\x0b\xeb\xec\xc9\xa1\x86\x0a\x67\x81\xa2\x1a\x6b\x13\x4a\x69\x91\x16\xfc\xaf\x61\x2a\x0e\x0d\x4f\x11\x7d\x2d\xcc\x14\x19\xbe\x40\x00\xf0\x94\x4e\xd0\x39\x17\x84\x34\xf1\xe0\xd7\xa1\x15\x7d\x88\x11\x1b\x54\xd6\x35\x33\xad\xfa\x78\x6c\xc9\x4e\x91\x6e\x0d\xd6\x89\x58\xa0\x00\x94\x49\x77\x65\x97\x2e\xde\x22\x78\x0d\x5e\x72\x25\x1e\xa1\x22\x5f\x28\xdf\xbc\xc2\xf2\xfb\x9f\x0c\xdb\x28\xe5\xf3\xe8\x2d\x70\xed\x36\x4f\x0d\xf4\x56\x8a\xc5\xa9\xb6\x7a\x03\x94\x85\x29\xc9\x78\x71\xd7\x5e\x0b\x20\x01\x52\x0c\x8f\xc5\x48\x3e\x4e\x82\x9d\xc2\x85\xcc\x2b\x13\x3c\x6c\xff\x91\x8c\x31\x8e\xf4\x37\x97\x1a\xca\x4e\xdd\x93\x2d\x06\x73\x35\xef\x24\xf4\x8e\x4b\xe8\xf2\x11\x1d\x59\x8d\xf1\x84\x46\xec\x2d\x87\x84\x5c\xed\x52\x2e\x92\x30\x04\xf4\x57\x08\x0c\x66\xce\x6e\x81\x01\x1a\xd4\x34\xd5\x39\x9f\x64\x89\x66\xe9\x00\x1d\xcc\xdd\x78\xd0\xd6\x60\x73\x83\xfa\x47\xf9\xc3\x9b\x9a\xec\xf1\x19\x04\xa2\x5d\x4b\x00\x31\x43\xee\x6b\xc8\x19\x34\xa6\x5f\x34\x93\x36\x10\x44\xb5\x73\x21\xd3\x2b\xa7\xe2\xc7\x03\x2f\x17\x01\x9a\x21\x87\x2e\xc7\x6e\x0a\x0b\xa2\x7f\x39\xe0\x71\x30\xe1\x5d\x4e\xa1\x38\x05\xe1\x00\x1b\x8e\xdd\x2e\x07\x79\xd4\x00\x2c\x1c\x20\x6e\xa5\xbc\x1b\x80\x83\x49\x96\x0b\xba\xe5\x3d\x5f\x39\x94\x35\xa5\x38\x6d\x50\x0b\xe0\x45\x98\x20\xeb\xd5\x05\x7e\x46\x88\xb7\xf8\xa9\xf6\x5c\x14\x77\xf7\xf4\x65\xaf\x95\x25\xb5\x41\x84\x64\xfb\x81\xa4\x0f\x30\xab\xba\xe0\xaa\xf2\x61\xa4\x26\x11\x24\x52\x6b\xa0\xc0\xca\x9c\x3d\xa8\x72\xc2\x80\xb7\x0f\x76\x46\xa2\x7c\x4a\x65\xd5\x88\x8d\xd1\xc3\xa3\x5c\xc4\xae\xb3\x2d\xf9\x10\xd5\x52\xf4\xc1\x5a\x03\xd7\x9a\xc0\x99\x9e\x50\x68\x77\xc2\xe0\xe0\x93\x03\x45\x63\x3a\xb8\xea\xb2\x38\xe6\x25\x0c\x10\x34\xff\x29\xe4\x8a\x54\xd6\x54\x4d\x04\xea\x2b\xf7\xb2\xb9\x48\xc9\x04\x70\x60\x48\xf9\x12\xf4\xf0\x1a\x66\xf1\xf2\x01\x17\x6d\x60\x17\x28\x4d\xc8\x18\xa1\x47\x20\xc8\x33\xc5\x0a\xc1\x22\x78\x05\x22\x37\xc7\x8a\xd8\x77\x5a\x07\x4a\x70\xe9\x4a\xee\x6b\x0b\x55\x23\x33\x05\x23\xef\x11\x03\x19\x76\x14\x45\x03\x01\x40\x90\x81\x45\xcc\x4d\x5e\x4a\xf3\x08\x04\xfa\xe8\x35\xe6\x36\x2f\x0b\x2d\x81\x69\xcb\x27\xca\x87\x31\x1e\x0e\x8f\x46\x15\xa0\xa8\x83\x38\xc0\x06\x06\xdc\x1f\xfa\x94\x76\x07\x76\x33\x1a\x00\xbe\x63\x50\x26\xd4\x52\x5a\xd4\x14\xd2\xcb\x5a\xf4\x9e\x14\x3e\x60\x70\x56\xf5\xc0\xc9\x28\x2e\x1c\x7a\xb2\xbc\xb9\x48\x1c\x61\x3f\x44\x64\x64\xad\xe2\xa7\x05\xbc\x2a\x40\xb6\xac\xce\x0b\x36\x16\x13\x30\x8a\x01\x00\x00\xff\xff\x80\x56\xb5\xb2\x74\xe0\x00\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_eot() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_eot, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.eot", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_svg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x79\x97\x25\xb9\x75\x1f\xf8\x7f\x7e\x0a\xb8\x3d\xe3\x33\xdb\x53\xe3\xee\x17\x96\x5a\x1e\x5a\xa4\xf5\x68\x47\x8a\x0a\x0b\x7c\xb6\x6b\xd6\x62\x75\xb1\x59\x56\x75\x55\xab\xaa\x9b\x8b\x66\xf9\xec\x73\xee\x0f\xf1\x8a\xcc\x64\xbe\x6c\xcd\x70\xe4\x33\x9c\xe3\xd3\xa7\x2b\x90\x2f\x22\x00\x04\x70\x71\xf1\xbb\x2b\xfe\xec\x5f\xfc\xfa\xeb\xb7\xed\x97\xaf\x3f\x7c\x7c\xf3\xfe\xdd\x17\x9f\xd1\x9f\xf4\xcf\xda\xc7\x6f\x5f\xbe\xfb\xf2\xe5\xdb\xf7\xef\x5e\x7f\xf1\xd9\xbb\xf7\x9f\xfd\x8b\x3f\xbf\xfb\xb3\x7f\xf2\xc3\x9f\xfc\xc5\xfc\x0f\x7f\xfd\xa3\xf6\xf1\x97\x5f\xb5\xbf\xfe\xe9\xbf\xdc\x7e\xfc\x17\xed\xb3\xd3\xe7\x9f\xff\x3b\xf9\x8b\xcf\x3f\xff\xe1\xfc\x61\xfb\x9b\xcb\x5f\x36\xfa\x13\xfa\xfc\xf3\x1f\xfd\xd5\x67\xed\xb3\x5f\x7c\xfb\xed\x37\xff\xfc\xf3\xcf\x7f\xf5\xab\x5f\xfd\xc9\xaf\xe4\x4f\xde\x7f\xf8\xea\xf3\xbf\xfc\xf0\xf2\x9b\x5f\xbc\x79\xf5\xf1\xf3\xbf\xb9\xfc\xe5\xe7\xf5\xe0\x0f\xe7\x0f\x3f\xff\xf8\xcb\xaf\x88\xfe\xe4\xcb\x6f\xbf\xfc\xec\xcf\xef\xfe\xac\x6a\xfe\xf5\xd7\x6f\xdf\x7d\xfc\xe2\x89\xd7\xb9\xf7\x5e\x8f\xd7\x83\x5f\xbe\xfe\xf9\xc7\xf6\xe7\x77\x7f\xf6\xf3\xf7\xef\xbe\x6d\x6f\xbe\xfc\xe2\xb3\x7f\xfb\xfe\x67\xef\xbf\x7d\x7f\xff\xfe\xdd\xfb\xcf\xda\x2f\xde\x7f\x78\xf3\xf7\xa7\x97\x5f\xfe\xf2\xf4\xeb\x2f\x3e\x23\x16\xfa\xac\xfd\x39\x9e\x3c\xfd\xfc\xe5\xab\xd7\x77\xad\xb5\x76\xfc\xf5\xf5\x9b\xb7\xbf\xb9\xbe\xdb\xf0\x32\xee\x7e\xf7\xee\xcd\xb7\x1f\x4f\xdf\xbc\xfe\x70\x7a\xfd\xf5\x17\x9f\x71\xd7\x5c\xbf\x7f\xf3\xf2\xdd\xfb\x8f\xaf\x4f\xf4\xc5\x67\xbd\xfd\xde\x7f\xeb\x91\x97\x1f\x5f\xbd\x7e\xf7\xed\x17\x9f\x31\xa9\xaf\x5f\xbe\x7c\x7d\xfc\x74\x32\xb3\xe3\xa1\xb7\xdf\xfc\xe2\xe5\xcf\x5e\x7f\xfb\xe6\xd5\x17\x9f\xf5\xcf\xda\xe7\x7f\x7e\xf7\x67\x5f\xbd\xfd\xcd\x37\xbf\xa8\x86\x5f\xbd\xff\xf2\xf5\x17\x9f\xb5\xcf\x1a\x7e\x39\xbd\x7b\xf9\xf5\xeb\x2f\x3e\xfb\xf8\xcd\xcb\x57\xaf\x7f\xef\xc3\x78\x3c\xf9\xee\x3f\x79\xf8\xee\xeb\x5f\xbf\x7a\xfb\xf2\xeb\x27\x5f\xfe\xf2\x8b\xcf\xee\x43\xac\x59\x1f\x67\x4d\xde\xd4\xbd\x91\x9a\x9f\xc3\x68\x3b\x6e\xbc\xb8\x57\xf5\x46\xe2\x3b\xae\x3e\x9a\x5a\x34\x1a\x31\x35\x47\x63\xf5\x69\xda\x1b\x47\x4e\xef\xd9\x78\xf4\xdd\xd5\xea\xda\x3c\xac\x71\x8c\x19\xec\x78\x2e\x2c\xf1\x5e\x44\x47\x7d\xb8\x76\x6d\x61\xa3\x85\xaf\xc7\x72\xd6\x5b\x27\x41\x65\x27\xb2\xdd\xa2\xd7\xb5\x55\x23\x27\x5d\x6d\xe6\x54\x8b\xbb\xf0\x79\xf4\xec\xc5\x93\xc3\xf0\xcf\xfe\xee\xbb\xf7\xdf\xfe\xe9\xc3\xb1\xa8\x9f\x5e\x7f\xf9\xb3\xb7\x37\x47\x43\x33\x1a\x29\xe7\xa6\xd5\xd9\xde\xf3\xcc\x49\x17\x32\xf1\xb3\x66\x5c\xea\xd6\x8b\xfb\x1c\xb9\x1e\x4a\x7c\x41\xcf\xb3\x0f\x59\x0f\xe5\xc8\xf5\xd0\x93\x5d\xfa\xa7\x0f\x7b\xf3\xee\xbb\xaf\x7f\x56\x8b\xee\xab\x77\x37\xfb\xe3\x3a\x9a\x52\x3f\xab\xe6\x26\x61\xad\x9f\x69\xf8\xc6\x7e\xfc\x4a\x17\x8b\x71\xe6\x31\x36\x31\x6a\xe9\xe3\x4c\xe4\x17\xea\xda\xcf\x92\xb4\xa9\x1d\xf3\xe9\xa2\x9b\x39\x86\xbb\x9f\xc3\x69\x4b\xb1\x75\x87\x3a\xd9\x36\xf4\xb8\x45\x64\x71\xa9\x6a\x06\xf5\x2d\x2d\x5b\x55\x4f\x3d\xe9\x52\xcd\x25\xe7\x16\x56\x9d\xb0\xf0\xed\xe8\xda\x8b\x7b\x8d\xf5\x9c\xc7\xd8\x42\xfa\x5d\xbd\x6f\x3c\xb6\xe3\xf7\xa7\x87\xe2\xbf\x78\x38\x14\x5f\xbe\x7f\xfb\xf6\xe5\x87\x9b\xc3\x90\x2e\x4d\x92\xf7\xba\x2a\x6b\x4b\xa3\xa6\xe6\x33\x89\x9a\x91\xcf\x90\xd1\xcc\x6d\xba\x50\x73\xea\xbb\x49\x6f\xae\xde\x54\xa3\x79\xfa\x94\xee\x2d\x62\x4c\x26\x6b\xa3\xf3\xa4\x94\x46\x3d\xfa\x8e\x02\x99\x35\x26\x6e\xc4\x6c\x93\x87\x36\x12\xcd\xa9\xcc\x8d\x54\x78\x5a\x8e\x46\x1a\x72\x21\xcf\x3c\x87\x8e\x0b\x69\xd0\x9e\x52\x3f\xdb\x68\x83\xa8\xc8\x81\x27\x75\x91\x46\xc2\x3e\x89\x88\xee\x88\xb2\x4a\xf5\x58\xef\x76\x4e\xa7\x3d\x9d\x1a\x11\x7b\xcb\xee\x8d\x28\x73\x7a\x2d\x26\x36\xda\xbd\x7e\x61\xa3\x66\x3e\x1a\xb1\xe4\xb4\x5e\xb7\x7a\x9f\x1a\xdc\x88\x94\xa7\x62\x0a\xa3\xef\xab\x20\xd4\x34\xa8\x6a\xa7\x69\xd4\xdb\x50\x9d\x96\xd2\x72\xd8\xf4\x61\x2d\x35\xf6\x18\xd5\xd8\x68\x19\xd9\xc2\xc7\xa4\x4e\x59\x2b\x73\x12\xf5\x6c\x66\x34\x89\xb4\x37\x49\xdd\x51\xe0\x51\x1d\x23\x6a\x5c\x9f\xd1\xb9\x56\x81\xce\xa2\x78\x96\x19\x5c\x8b\x32\x2e\x27\x26\x39\x9b\x8f\xcb\x89\x62\xd7\xd4\x76\x1a\x4d\xbb\xde\x71\x9f\xec\x35\xb2\x3e\xc9\xb5\xb1\xc6\x24\x8e\xa6\x26\x67\xed\xbe\x6b\xf7\x26\x49\x4d\x39\x9a\x88\x4c\x4d\x6a\x6c\x3e\xcd\xb2\x31\xd9\xac\x19\xe3\x2e\x7b\x98\xd4\xb5\x65\x31\x14\x93\x79\xcc\xfe\xd3\x84\xf4\x5f\x3e\x24\xa4\x6f\x5e\x7f\x28\x6e\x7b\x93\x92\x8a\xee\x69\xf8\x5e\x57\x36\x6d\xc6\x8d\xa4\xdb\xa4\x6e\x8d\x64\xe8\xa4\x9a\x7f\x35\x9d\x42\x98\xf6\xd8\x65\x30\x0a\x4d\x15\x8b\xc6\xa6\x89\xae\x87\x2d\x7d\xbd\xee\x5d\x51\xef\x85\x88\xc6\x8e\xbf\xba\x73\xb3\x62\x27\x9d\x18\x6f\x0c\x16\x70\xac\x74\x9e\xc2\xd4\x52\xfb\xce\x3a\xea\xda\x68\xac\xdf\xa9\x47\x1b\x5c\xcf\xd7\x7b\x34\xc5\xee\xaa\xc6\x4b\xd5\xfd\xe2\x9e\xb9\xa8\x95\xc6\x8e\x42\x1f\xde\x18\x13\x14\x36\x59\xab\x49\x89\xc9\x61\xc7\xab\xbc\x48\x63\x17\x05\x2b\xa3\x26\xc5\xde\x3b\xf5\x29\x35\xc9\x5d\x7c\x6a\x51\x7d\x0f\x9d\x4a\xd1\x3e\x35\xb4\xe3\x2f\xa6\x5a\xdf\xb5\x2a\xf4\x78\xa3\x98\x3c\xea\x90\x7e\x0c\x8f\x90\xee\x5c\xc3\x23\xa4\x8d\x43\xd7\x60\x70\x8d\x53\x71\x7e\xf4\x8e\x95\xe6\xea\xf8\x31\x3c\x2f\xee\x9d\xa5\x89\xc4\x8e\xeb\xd0\xe6\x4a\x35\xb8\xd3\x87\x36\x13\x9d\x91\x72\x67\xc3\xe6\xe8\xd9\x9c\x62\x1f\x59\xcb\xba\x86\x52\xb4\xd5\x0d\x22\x96\x66\x52\x85\x30\xbc\x4a\x34\x50\xe7\x85\x6d\xec\xf8\x83\x7b\xad\x9a\xf0\x46\x20\x72\xd6\x86\xf1\x15\x6b\x3c\x07\xf5\x76\xe2\xbe\xa7\x64\x5d\x5b\xa4\x36\xc6\x9a\x71\x9e\xd5\x9b\x7a\xa7\x7a\xc7\x36\x2e\x22\xf1\xe2\xbe\x38\x4d\x55\x8d\xab\x78\x4b\x0a\xd0\x2c\x18\x69\xc4\x4c\x5f\x0d\x55\xcd\xa4\xb4\x8f\xaa\x44\xa9\x8d\x5a\xa9\xd6\xe7\x28\x26\x12\xb5\xa4\x3a\x37\x26\xad\x82\x5d\xab\xdf\xeb\x8f\x3b\xc1\xa2\xee\xb5\x18\x69\x8e\xd4\xa6\x94\x73\x98\x36\x55\xc5\x50\xa8\xe9\x9e\xb5\x7e\x4c\x8b\x58\xf0\xdd\x29\xdc\x94\xc6\x4c\xc2\xda\x02\x47\x3c\x86\xe1\xc5\xbd\x92\x35\x1a\xb9\x71\x8c\xc6\x2e\x1b\x28\x8d\x07\x6d\xa3\x86\x85\xd9\xb7\xe3\x89\x1b\x3b\xe8\xcb\xaf\xbf\x79\xb4\x81\xbe\xfc\xfa\x9b\xd7\x1f\x3e\xbe\x7c\xf7\xe5\x6d\x3c\x61\x4d\x82\xf6\x9a\x16\x89\x36\xa4\xe9\xe0\x49\xea\xcd\x86\x4e\xe6\xe2\xc7\x3a\x45\xb4\x85\xc7\x5e\xc4\x9a\x56\xf0\x40\xda\x10\x9b\x5c\xa3\x47\xbd\xef\xab\x90\xde\x58\xc0\x1f\x7d\x0a\x15\xe1\x85\x4d\x5d\x7c\xb7\x4f\xef\x7d\x2d\xd0\x82\x0c\x58\xa0\x21\xbe\x6e\x65\x8d\xbe\x44\xcc\xd1\x8b\x99\xfa\x98\xa3\x58\x33\x69\xdf\x51\xe8\x59\x6c\x3b\xee\xa8\xab\xce\x0c\xa9\x69\x9a\xc5\x6e\x32\x6d\x06\x47\x4b\x1a\x9b\x6b\xb4\x30\xdd\x72\x68\x7d\xcb\x3e\xd8\x9b\x0e\x6d\x43\xa5\x99\xf3\x1c\x4e\x2d\x7a\x9e\x89\x06\x48\x6e\x34\x2b\x6e\x4c\xb5\x47\x99\x4c\xea\x9a\x8d\xb5\x6f\x54\xf4\xd2\xcf\x83\x72\x4b\x93\x96\xb2\x47\x44\x13\x6e\x3e\xbc\xf9\x34\xa2\x76\x62\xda\x15\x34\x49\x4d\x78\xb4\x9c\x34\xb8\xe5\x00\x5b\x62\x92\xb9\x46\xf5\xc5\xbd\x31\x08\x7b\xb7\xc2\x56\x9d\x9b\x73\xdd\x2f\xf0\x04\x56\x0a\xd8\x62\xa3\xe0\x4b\x6f\x36\x78\x57\xee\xcd\xaa\x43\x9d\xb0\x5e\x24\xf8\x4e\xb3\xf8\x4a\xb6\xda\xdb\xc4\xb4\x49\xc6\x8e\xab\x06\x58\x84\x90\x4c\xed\xbd\xb1\xd9\xd4\x62\xc5\xe4\xf3\x68\xf7\xc5\xbd\x3a\xaf\x19\x42\xa1\x9b\x35\xcd\xbe\xb8\x8a\x09\xb5\x41\xb2\x39\x6b\x1b\xc9\xbb\x5b\x71\xa2\xea\x24\x36\x29\x96\xe9\x03\x9b\x83\xce\xa8\xa9\xeb\x63\xac\x02\xb1\xee\xab\xa0\xd9\xf0\x0c\x05\x4d\x0f\x29\x26\x54\xeb\x91\x17\x17\xc1\x84\xb3\xf1\x6e\x0e\xee\xcd\xcd\x8a\x16\x8a\x3f\x29\xf8\x53\x8f\x89\x0d\x91\x6c\xcc\x6b\x47\x5f\x7c\x76\xf7\x24\x69\x7f\xf3\xfe\xe3\x53\xe0\xf0\xe3\x9b\x77\x5f\xbd\x7d\x1a\x6a\x03\x8f\x55\xf5\x32\x74\xf3\xa2\xd8\x21\x67\xb5\x58\xc8\xcf\x83\x2e\x75\xe7\xe9\xa5\xf4\x5f\x3d\xda\xa5\x5e\x7e\x78\xfd\xee\xed\xeb\x9f\x3f\xb3\x4f\xa9\x61\x02\xeb\x1a\x22\x98\x98\xb4\x98\xca\x35\xa8\x19\x20\x1b\xe2\xec\xd3\x6b\x61\x68\x71\x4d\x1e\x8d\x4c\x63\xa6\x4a\x23\xa7\xb1\xe5\x28\x34\xeb\xb1\x63\x3d\x14\x70\x8a\xac\x6d\xce\x78\x7a\x15\x28\x78\x3a\x71\x1b\x4c\xd3\xb2\x58\xab\x5e\xcc\x73\xaf\xb2\xa4\xb4\xba\x57\xa3\xeb\xb5\xc5\x53\x9f\xf5\xf6\x89\x06\xcd\xaa\xf8\x24\x3d\xb6\x6a\xea\xa4\x16\x7b\x64\xde\x9d\x54\xb8\x85\xf4\x76\x92\x34\xf4\xeb\xc4\xc1\xd3\x88\xdb\x89\x28\xd1\xf7\xd0\x29\x1e\x0d\x3b\x48\x7d\x62\xf4\x8b\x8d\x1b\x5b\xfb\x7f\xfd\xc4\xa0\x7d\x78\xf3\xd5\x2f\x6e\x8f\x5a\x71\x47\x8b\xbe\xb8\xa4\x48\x4b\x1b\x4d\x88\x66\x8c\xd1\x92\x67\xd4\x52\x23\x2a\x4a\x92\x76\x62\x2f\x19\xc6\xab\xb7\xd5\xa9\x81\x0f\xd9\x8a\xcf\xd4\xa7\xed\x12\xb5\x2e\xdd\x00\x57\x4e\x34\x78\x1a\xe0\x0f\x4f\xef\xb5\x07\x8c\xe9\x5c\xa8\x33\x2f\x36\x74\xaf\x72\x44\xb6\xa2\x51\x6c\xe0\x5c\x38\xaa\x76\xd6\x2a\x88\xd9\x62\x60\x1a\x7d\xab\xa6\x6a\x7a\x76\x65\xbf\x23\x2b\xee\x52\x30\xc2\xd4\xd1\x2f\x52\xe9\x33\x8a\xff\x71\x28\x7a\x4e\x3d\xfb\xac\x4f\x49\xe3\x89\x4f\x1c\x7c\xb1\xe8\x4f\x8f\xda\x7f\xf3\x88\x63\x7f\xfc\xf6\xf5\x87\x37\x1f\xff\xf6\xe6\x98\x99\x7a\x73\x89\x8d\x4c\x8b\xd2\x36\xe6\xde\x86\xe4\x66\xc3\x5a\x04\x6f\x66\xb5\xc6\xba\x9c\x23\x72\x2b\xa0\x1d\x6e\x1b\x20\xe2\xe0\xdc\x88\x8a\xef\xd2\xd8\x22\x46\xf3\xfa\xa1\x17\x1b\xe9\xb6\xa5\x63\xc7\xdb\xbc\x58\x92\xe6\x56\x58\x9c\x32\x36\xf6\x6c\x42\x7d\x3b\xda\x7d\xfa\x23\xfe\xdb\x47\x53\xff\xf6\xbb\x8f\xcf\x48\xb0\xd4\x92\xf8\x4c\x7d\xc4\xc5\x2c\xcf\x21\x74\x21\xf5\xb3\xba\xe3\xef\x31\x2e\x75\xbf\xfe\x24\xee\x8e\xfb\x49\x37\x88\xee\xbf\x7b\xd8\xf2\xab\xf7\x5f\x7f\xfd\xf2\x76\xd3\xd4\x1b\xf3\x5e\x97\x93\x58\x2b\x00\x71\x2a\xf0\x6d\x5c\xac\xbc\x16\x55\xb6\x93\x50\x00\xcb\x9f\xb4\xfb\x56\x9b\xfc\x49\xa4\xef\x12\xa3\x9d\x4a\xd8\x90\x7a\x89\xb1\xb4\x6b\x95\xc5\x98\x5a\x8b\x6a\xf0\x2c\x26\x3e\x2e\xac\x72\x0e\xa2\x6d\xb5\xf5\x74\xa7\x4f\x0f\x3b\xfd\x8b\xdf\x7c\xf3\x8b\xd7\xb7\x85\x4a\xa2\x12\xa8\xa5\x9f\x39\xf9\x12\x66\xe7\xfa\xe1\x62\x72\x83\xa0\xfe\xe4\xf7\x10\xf6\x9b\xf7\xb7\xf7\x7f\x88\x4d\x4e\x7b\x5d\xb9\xf7\xa6\x05\xb8\x0a\xec\x87\x34\x1e\x04\x24\x2c\x52\x6c\xcb\x9a\xa8\xed\xee\xbd\xae\xd8\x0c\x45\x68\x46\xc1\x81\xc1\x33\x86\x36\x16\xc5\xae\x5c\xf5\xe1\xca\xd2\x62\x94\x08\x37\xc3\x4a\x86\x98\xf5\xd6\xc9\x51\x59\xe1\x39\x68\x0b\x6a\xcb\x13\xad\x9f\xab\x4d\xe1\x59\x5d\x18\x7d\x1e\x3d\x7b\xfa\x23\x3f\x7f\xa4\x70\x79\xfb\xf2\xe3\x2f\x6e\x7f\x63\xcd\x1d\xb1\x9d\x99\xfb\x16\xfe\x49\x94\x66\xdd\xae\xb7\x9e\x6e\xa5\x3f\x6c\xe5\xef\x5f\x7f\xf8\x7d\x75\xd5\xa7\x59\x2a\x90\x62\xa6\x3b\x0a\x4a\xb5\x75\xd6\x47\x77\x9f\xa3\x84\x2c\x2e\xf1\x57\x1b\xf9\xc1\x69\x69\x07\x91\x31\x15\x1e\xac\x9f\x39\xb0\x5d\xce\x82\xc8\x10\x71\x94\xaa\xbe\xcb\xe8\xbc\x57\x99\x7a\xed\x13\x05\xda\x0b\xa0\xd6\xb2\xa4\x9a\x18\x80\x7f\x2d\xae\x5f\xb5\x17\xbe\x0a\x5e\x85\x5a\x65\xeb\x56\x41\x1f\xaa\xd9\xa2\x6e\xc5\xe7\x0a\x61\x03\x53\x75\xbe\x98\xe9\x8b\x7b\x65\xba\xf3\xd0\xad\x44\xcf\xe1\xb2\x2f\x79\x97\x7a\x83\x12\x88\x92\x56\xed\xd8\xcc\x21\x6c\x18\x37\x2d\x86\x51\x58\x5a\x99\xda\x50\xbf\x78\xe8\x8b\xfb\xaa\x21\x42\xb7\xfa\x51\xd3\x8b\x69\x36\x51\x6e\x1a\x25\x71\x08\x3e\x1e\x42\x63\x49\x20\x5d\x5a\x38\x41\xeb\x54\xef\x19\xf1\x25\xe2\xc6\x96\x4c\x0f\xe7\xe2\xfd\xbb\xdb\xbb\x7e\x32\xb7\x7e\x36\xa5\x92\x5f\x62\xa3\x02\x8c\x69\x17\x62\x8e\x2d\x4b\x4a\xaf\xe9\x4f\xe6\xcb\x8d\x15\xc4\x0f\x9b\xfa\xf6\x57\xcf\xcd\xfa\x90\xd6\xcf\xd4\xfb\x85\x46\xdf\x0a\x51\xfa\xf0\xdd\xd9\x5b\xad\x0c\x77\x6d\xd9\x0b\xa3\x5a\xcb\xa1\x33\x6c\xb4\x11\x7d\xe9\xd4\xba\xe4\xa1\x54\xcb\xc0\xd3\x54\xd3\x1f\x10\xed\x72\x4c\xaf\x5f\x58\xfa\xb4\xa8\x11\x57\x5d\x18\xae\x24\x47\x5d\xea\x88\x3e\x45\xa1\xad\xa0\x73\xf4\x1d\x35\x0d\xc8\x97\x75\x53\x27\x13\x66\xdd\xa7\x14\xd1\xa8\xe4\x92\x7f\x35\x7c\xf7\x11\x77\x55\x68\x91\x20\x11\x9b\x83\x81\x34\x72\x52\x2f\xd2\x65\x2e\x91\x47\x41\xc4\x7d\x47\x69\x44\xd5\xcd\x00\x8d\x73\x58\xb4\x48\x99\x69\xd1\xdc\x96\xaa\xc1\x48\xb6\x92\x75\x98\xa5\x98\xbb\xdc\x1a\x5e\x79\x34\xbc\xbf\xf8\xf0\xfa\xf6\x5c\x16\x1d\xa5\xf5\xb3\x05\xef\x9e\x05\xaa\x7a\x8b\x12\xd4\x7a\xcc\x80\x5c\x6c\x09\xad\x09\x51\x27\x08\x86\x44\xe2\x33\xb4\x7e\x19\x31\x3d\xeb\x6b\x24\xa6\x15\x50\x65\xa3\xdd\x8c\x0e\xcd\x4d\x09\x53\x05\x0c\x14\xbf\x74\x9b\x8a\xa1\xb3\x92\x9f\x6b\xbd\x45\x09\x0b\xb2\x53\x0d\x08\x79\xd1\xcd\x01\x5f\xd9\xa0\x12\x35\xe0\x6e\x52\x8d\x09\xcd\xc1\x1a\x59\xbb\x8e\xac\x2d\xe1\x66\x14\xe8\x95\xa8\x25\x27\x87\x7c\x5d\x32\x7c\x21\x6b\xda\x8f\x12\xe1\xcf\xde\xc6\x52\xf9\x8c\x96\xc9\x73\x18\xb7\xec\x25\xab\xd6\x27\x97\x40\x43\xad\x08\x69\x78\xb1\x5f\xd4\x37\x9a\x43\x36\x4d\x6e\x46\x35\x77\xc3\x9b\xf6\xdc\x51\x90\xee\x8b\x07\x31\xfb\x1c\xb5\x39\xf1\x8c\x5a\xf5\xe8\x6d\xf1\xdf\x12\x8f\x8a\xff\x16\x3d\xd9\x64\xcd\x42\x5d\x24\xd9\x0a\xc7\x57\x0d\xc3\xcf\x12\xba\x17\x01\x41\xe4\x18\xbd\x09\x0d\x70\x68\xb6\x9c\x06\x71\x27\x6b\x6c\xef\x6a\x51\xfb\x18\x6b\x51\xdb\x28\x59\x79\x26\x74\x12\xb4\xe3\x1a\xbd\x65\xaf\x7e\xf2\x0c\x93\x66\xc5\x54\xa2\x24\x78\x9a\x16\xdc\x5c\xf4\xac\x4c\x97\xb4\x1b\x64\xa3\x0f\xc9\xe6\xe7\xef\xbf\xbb\xad\x80\x1c\xd5\x80\xd2\x99\x88\xf9\x22\xe4\xe7\x61\x72\xe9\x67\x0f\xc3\x5f\xd1\x37\x1b\x4d\x47\xdf\x20\x20\x14\x3b\xa8\x07\x4c\xe9\xc5\xbd\x08\xe3\xd5\x7a\xb6\x06\x76\x73\xe8\x63\x44\xb7\xe3\xce\xd3\xbd\xb3\x47\xbd\x7b\xf3\xcb\xdb\x34\x4d\x66\x2d\x28\x36\x2e\x7a\x58\x5b\x91\x16\xd6\xe1\x7e\x56\x8f\xad\x60\xf9\x80\xc8\x26\x6d\x50\x36\x03\xc2\x8b\xe9\x46\x6d\x98\xef\xc5\x2a\x86\x79\x4b\x49\x28\xa9\x46\xb1\x7a\xa8\xff\x5c\x9b\x07\x17\x19\x68\x53\xf7\x1d\x05\xa9\x9d\xa2\xbb\xb5\x92\x3e\x96\x26\xc1\x66\xd6\x72\x1f\xd3\x0f\xc5\x8a\x61\x4b\xea\x4d\x21\xcc\x72\x31\xcc\x3e\x4b\x32\x66\xe6\x49\x14\x4d\x3b\x9f\x65\xd0\xae\x9d\xee\xa4\x47\x53\xcc\xb0\x4d\xef\x98\xf1\xdd\xab\xfe\x9a\xf9\x5e\xeb\x5f\x67\x78\x36\x4e\x9e\xd9\xb5\x49\x74\xe8\x3b\x34\xfb\x5e\x57\x93\x5c\x94\x90\x0e\x5c\xe0\x51\x22\x0b\xb7\x60\x9d\x56\x2b\x47\x65\x37\x29\xd9\x43\x5a\x51\x58\x88\x4f\x35\x6e\x51\x32\x09\x15\x83\x95\x29\x11\xcd\x9d\xb7\x63\x28\x9f\x9e\x13\x7f\x04\x12\xde\xfc\xfa\xf6\x96\x11\xa3\x44\xaf\xbc\x14\xaf\x38\xa7\x2f\xad\x66\xfd\xd1\x1c\x0a\xde\x9e\xd3\x6a\xcc\x6a\x1f\xd7\x92\x9c\xc7\x98\x92\xd1\x52\x14\xaa\x80\xc2\xfb\xaa\xbd\x65\x0a\xd0\xe3\xe0\x80\x26\x7a\xd8\x80\x3c\x36\x82\x4a\xe8\xaa\x6b\x4b\xb7\x36\x84\xe7\x18\xd6\xb2\x76\xfc\x5e\xf4\xef\x58\xbf\xd9\x34\xc6\x8e\x82\xc4\x12\xbf\x31\x90\xc3\xb1\x09\x2c\x0c\x31\x20\x06\xae\x15\x6c\x77\x6b\x05\x97\x8c\x33\x59\xc1\xce\x81\x1d\xa0\xd8\xee\xd6\xcc\xe2\xe2\x5e\xb8\xc4\x5a\x4a\x34\x32\x6e\xa3\xb6\x87\xc1\x8b\xfd\x19\x97\x14\x53\x8c\x06\x6f\x7b\x9e\x33\xc6\x8b\xfb\x12\x6e\x42\x73\x2f\x31\x2a\x34\xa1\xbb\x8e\x9e\x53\x52\x9b\x77\xbb\x18\xcb\x5e\xe5\x82\xbf\x0a\x35\x98\xcc\x12\x1a\x38\x75\x1a\x25\xc8\xc0\x7b\x34\xee\xba\xd7\x5e\xc6\x5d\x81\x1a\x17\x79\xd4\x57\xd1\xac\xdd\x58\xdc\x67\xed\xd8\x1a\xb6\xd7\xb5\xc0\x60\xfd\x6e\xb9\x9e\x03\x79\x0c\x6f\xc1\x31\x8f\x3e\x3d\xad\x24\x88\x47\xd3\xfd\xfa\x97\xcf\x81\xea\x0e\x3d\x68\xa7\xad\xa6\xb5\x9f\x59\x78\x4b\x28\x2c\x78\x9c\x7d\x5c\x8e\x75\x39\xf8\x52\x0f\x3d\x4d\x5f\xf9\xc8\x72\xf7\xac\xac\x0b\xe5\x0b\x75\xaf\xc9\xb5\x62\xe2\xb2\xb4\x2d\x59\xc3\x50\x54\xac\x63\x2f\x9c\xe6\x90\x20\x59\x9a\xf7\xda\x0b\xb2\xb8\x70\x31\xf4\x2c\x9c\x5d\x35\xe8\x68\x4c\x31\x87\x7a\xcb\xda\x03\xa9\xd5\xe6\x36\xae\xe4\xf0\x89\xa1\x07\xb6\xa9\xf4\x49\x35\x29\x14\x45\x5d\x47\x5d\xa3\xc1\x5e\xc6\xd6\x8c\x68\x52\x51\x5f\x1f\xd0\x49\x7b\x8e\x29\x5a\xb8\xaf\xef\xac\x71\x17\x05\x28\x86\xb6\xcc\x3e\x17\x08\xad\x0f\x50\xe8\xcd\xb2\x15\x54\x25\x56\x99\xec\xc7\x1e\x07\xdc\xab\x3a\xa6\x8d\x4f\x50\x03\xda\x3e\x18\x74\x8e\x0d\xb1\xf0\xe9\xda\x10\xb9\x03\xd0\xcc\x4f\x83\x53\x00\x32\x9a\x52\xec\xb8\x7a\xb4\x18\xdc\xac\x36\x7b\xeb\xcd\xc2\xb0\x98\x9c\xaa\x81\xa8\x3d\x63\x37\x1d\x75\xad\x2f\xc1\xef\x0a\x35\x85\x4f\xed\x82\xf7\x24\x13\xf5\xd5\x55\x68\x59\x05\xd8\x3b\x86\x0c\x9c\x4b\x17\xe7\x2a\xa0\x50\xa3\x14\x9a\x77\x75\xbf\x06\x56\x38\xe6\xd1\x9f\x17\xf7\x01\xfc\x53\xfc\xb7\x0a\xd4\x7b\x83\x28\x01\xb4\xc1\xe3\x40\x1b\xc1\x57\xb4\xe1\x07\xda\xa0\x03\x6d\x28\x1e\x1e\x63\x02\xee\x57\x3d\xab\x40\xdc\xc0\x4f\xaa\xcb\xee\x00\x57\xb5\x20\x33\x04\x5d\x4c\xcb\xdd\xb5\x30\x50\x36\x0f\x6d\x19\x3c\x43\x3a\x9e\xab\xf6\x47\xd8\xbc\xf6\xec\x69\x2a\x1d\x8f\xac\x98\x6f\x9e\x41\xce\xb5\xc5\x31\xd3\xae\x5a\x6c\x9c\x9a\xc1\x16\x6c\xd3\x5d\x9a\x90\xce\xd0\xd1\xb4\x40\x6a\xc9\x3a\xa1\x7b\x68\x34\x13\x6e\x9e\xd4\xac\xf3\xb4\x42\xfd\xc1\xb0\x48\x68\x70\x13\x29\x58\xd8\x27\x77\x5f\x48\x85\x0d\x66\xad\x11\x6d\x38\xef\x23\x6a\xd2\x4b\x90\xe9\x45\x50\x04\x85\x33\x09\xdb\x14\x10\x8b\xd8\xb4\xa4\xc7\x74\x04\x10\x5b\xec\x53\x0b\x85\x61\x95\x48\xdc\x11\x31\x80\x15\x15\x76\xba\x44\xd6\xee\x57\x68\x1c\x26\x13\xce\xda\x0f\x67\x0e\x83\x32\xdf\xbd\x76\x23\xa8\xb5\x4f\xc4\x67\x21\xb9\x30\xd3\x59\x84\x5f\xdc\x17\x36\xf2\x8c\xdd\xd9\xea\xda\xbc\x76\xa8\x91\x33\xa8\x58\x50\xce\x70\x2e\x01\x07\x02\x6f\x0a\x5f\x86\xd0\x5e\x65\xea\x44\x6d\xcd\x44\xd0\x0c\xe1\x43\x2d\xea\x25\x37\x09\x4d\xcb\x7e\x50\x84\x5c\x29\x02\x88\x94\x73\x2a\x17\x41\xb9\x81\x56\x61\xdf\x29\xc0\x35\xdc\x01\xbc\x06\x15\x6f\x8d\xda\x61\xa0\x9d\x8a\xe8\x53\x87\xdc\x05\xf5\x79\x74\xf6\xe9\x89\xff\xe7\x8f\x55\x23\x6f\xdf\xdf\xe6\x87\x2a\xbe\xf4\x00\xe2\x4b\x0f\x50\x6c\x06\x46\xbf\x58\x7a\x00\xcd\xa5\x07\xe0\xb1\xf4\x00\x05\x09\xb5\x36\xdf\xbe\xf4\x00\xd1\xa1\x07\x80\x11\x50\x14\x1c\x1d\x7a\x00\xc6\x8a\x80\x51\x73\x94\xe0\x43\x4d\x04\xfa\xb2\x93\xa3\x32\xc0\x8f\x5c\x38\xb4\x1a\x39\x39\xda\x14\x9e\xd5\x85\xd1\xe7\xd1\xb3\x17\xe8\xe2\xc8\x40\x17\xa9\xb3\xdf\x29\xa4\x9f\x1a\x96\x84\x39\x2c\xd0\x4b\x22\x5b\x35\xd7\xf8\xa3\x9f\x55\x40\x47\x89\xec\xf0\x67\x20\xca\xa5\xaa\xe8\xde\xd1\xd7\xaa\x18\x57\x1d\xab\xaf\xe4\xe8\x6c\x8d\x7a\xbd\x9a\xbc\xbe\x3d\xbb\xa3\xbb\x25\x21\x1b\x00\x73\x47\xf3\x69\xb9\x3a\x4c\x3e\x8f\x8e\x3e\x3d\x2b\x7f\xfa\x78\x97\xfa\xfa\xcd\xf7\xcc\x4c\xd8\xfa\x6c\x58\x0a\xb9\x28\x37\xd7\x67\x2f\xa5\x25\x1d\xd2\x07\x3e\xbb\x16\x53\x7d\x76\x90\x1c\x9f\x5d\x63\x54\x9f\x5d\x1f\xb5\x3e\x5b\xe3\xf8\x6c\xa7\xf5\xd9\x75\x85\x61\x33\xd1\xfd\x5c\x70\x06\x8b\x1d\x9f\xed\x89\xcf\x76\x4c\xa3\xc3\x4a\x5a\xbf\x57\xf3\xf8\xec\x5c\xef\x1d\x1d\x7d\x71\x1f\xe9\x77\xcc\x7b\x40\x59\x6b\xad\x86\xf1\x34\x6c\x99\xa3\x99\xd6\x9a\x58\x6a\xb6\x94\xa5\x66\xab\x11\x83\x9a\x4d\xcd\x96\x9a\x4d\xa1\xce\xb5\x98\xd6\xfb\x52\xb3\x19\x0d\xa8\xd9\xaa\xd9\x43\xcd\x96\xb1\x55\x23\xb7\xd4\x6c\xff\xec\xed\x63\x87\x92\xb7\xaf\x3f\xde\x56\x4c\xd6\x7a\x74\x8d\x4d\x6b\xe5\x33\x6f\xf5\xb7\x0d\xa8\x48\xa9\x29\xd9\x85\x54\x37\x32\xaf\xad\xe6\x12\xe2\xeb\x06\x51\x97\x4b\x8a\x6c\xc7\xeb\x4f\x77\xe5\x8b\x47\x50\xe1\xef\xbe\x7b\x79\xdb\xab\x85\xe0\x66\x43\x71\x26\xcb\xcb\x50\x3b\xd7\x0f\x97\x82\xb9\xeb\x16\xa7\xe3\x96\x91\xac\x5b\x9c\xb7\x9c\x6a\xbe\x7a\x3c\x02\x5f\x7d\x78\xfd\xf2\xdb\xd7\xb7\x25\x27\x72\x2a\x4c\x7b\xa9\xcf\xda\x4a\x44\x6d\x21\x71\x31\xea\x5b\xdd\x21\x95\x8b\x92\x6c\x21\xc0\x80\x5b\xc0\x04\x6b\x70\x3e\x72\xb5\xed\x78\xfb\xe9\xce\xfc\x8b\xc7\xf6\x9b\xd7\x1f\xbf\x7d\xf3\x1c\xe1\x8f\x82\xd4\xbc\xd7\xb5\xb6\x51\x2b\x99\xc1\x16\x21\xb8\x1a\xfc\x10\x82\x1c\x5e\x24\xc5\xef\x4b\x06\x49\x0a\x20\xa8\x34\x9a\xe1\x4b\xb7\x9f\xdd\xda\x18\xb1\x58\x52\x0f\x59\x3c\x89\x5c\x5b\xc0\x66\xd5\xab\x0a\x00\x91\xdc\xad\x38\x79\x09\xc2\x70\xbf\x01\x3a\x06\x28\xec\x70\x62\xaa\x95\xa4\xcb\xa2\xd9\xc3\xce\xe4\x7d\xc7\xa8\x50\x44\xa3\x91\x77\xc4\xc6\x93\x0b\x32\x49\xe4\x72\x77\x52\xe3\x55\x3b\x34\x73\xb0\xeb\x40\x5c\x1b\xeb\x56\xc9\x6e\x78\x98\xfa\x52\xff\xc1\xd3\xa3\xfa\x59\x1b\xd8\x2a\x91\x41\x17\xd1\x86\x15\x86\x23\xaf\x85\x3a\x87\x14\x48\x63\x18\x94\x1d\x1a\xbb\x12\xa1\x05\x6a\x07\xa7\x3e\xc3\xa9\x99\xcb\x0c\x28\x3a\x68\xed\xdc\xca\x67\x1d\xe3\xc5\x3d\xd0\x9f\x8c\x1d\xd7\x58\xaa\x3c\xee\x7d\x5a\x49\x11\xd6\xa7\x19\x43\xe8\x70\x2e\xa6\x5e\xf0\xbd\x36\x01\xc5\x7e\xc8\x29\xf0\xdf\xa9\xe7\x22\xe8\x8e\x3b\xcd\x48\x41\x7d\xb1\xfc\x74\x5a\x04\xb7\x18\x78\x4c\x68\x7a\x66\xeb\xa8\xeb\x44\xbc\x5b\x72\x5d\x5b\xb5\x71\x22\x34\x29\x34\xab\x07\x31\xe6\xd1\xb1\xa7\xe9\xe7\xbf\x7f\x64\x29\x79\x06\x6b\x53\x14\xc7\x96\x1d\x6a\x9b\x85\xce\x00\x13\xe3\x50\x91\x00\x7c\x76\x6b\x52\x23\x18\xd2\xa4\x3b\xa8\x02\x8e\x47\x49\x6b\x47\x23\x6b\xda\x6d\x2f\x60\x28\xde\xe1\xf5\x20\xa2\x6b\x27\xec\xb9\x17\xdb\x93\x9e\x90\x7f\x04\xb6\xda\xde\x94\x78\x42\x4d\x20\x3a\x85\x47\x73\x98\x04\x7b\x8b\x43\x0e\x4f\x78\xc1\x61\x52\xfd\xd8\xac\x8a\xfa\x60\xdc\x93\xdc\xc3\xe5\xae\x0a\x4b\x73\x4b\x64\x33\x97\x09\x96\xb7\x2c\xf8\x2b\xb6\x17\x93\xb6\xee\xcb\xa5\x6a\x14\x13\xe7\x05\x6d\xb2\xc3\xc5\x6a\xd4\xde\x6d\xba\xac\xdf\xa6\x6d\x68\x34\x85\x83\x42\x49\x82\x70\x68\x18\x10\xa9\xe0\x59\x94\x54\x30\xa9\xb6\x3d\x39\x9c\x4e\xa8\x73\x1c\xd6\xf7\xb0\x99\x54\x62\x82\xd3\x74\x58\x95\x72\xec\x06\x07\xa8\x1c\x4d\xa1\x49\x50\x9d\x22\xc7\xe6\xcb\xea\x6d\xb0\x4d\xae\x16\xb2\xef\x25\xf0\x99\x16\x7b\x2e\xd4\xed\x53\x7a\x87\x0e\x02\x36\xd1\x5c\x08\x9c\x34\x76\x97\x7e\x57\x32\x4a\x81\x4c\xaa\x75\x5b\x20\xd0\x79\x46\xed\x6a\xd9\x67\x16\xb5\x75\xde\xb2\xe0\x5c\xec\xa9\xd6\x74\x0d\x91\x14\x22\xad\xf5\x37\xdd\xa3\x9d\x04\xb0\xfb\x94\xbb\x5a\x6f\xa7\x6c\x02\x55\xe9\x24\x58\xb6\x62\x7a\x89\x3f\x32\x95\xd1\x3b\x8d\xa5\x40\x29\xd1\x3c\x26\x97\x4c\xc2\x25\x3e\x94\x48\x22\x45\xfb\xf5\x56\xb1\x1f\x74\xa3\x26\x2d\xb3\x24\xc6\x51\x6b\x15\x26\xee\xe0\x49\x4b\x26\x0a\x9f\x57\x92\x7b\x71\x5f\x6c\xaa\xe6\x5d\x87\x37\x8b\x80\xfa\xc6\x20\xb0\x68\x53\xa7\xdd\xa9\xc0\x28\xdd\x79\xc9\xcd\x21\xd3\x47\xe1\x6c\xde\xd7\x15\xaa\xbd\x66\x9c\xd3\x4b\xf0\x91\xe2\xad\x1d\xf6\xf9\xa2\xc7\x9a\xc5\x62\x6f\x23\x6d\x87\x25\xb8\x66\xb5\xa4\x80\xc2\x82\xab\xdd\xa7\xd7\xce\x0f\x1e\xae\x9d\x1f\xdc\x56\x84\xc0\x1c\xa8\x67\xa5\xbe\x09\x6b\x49\xc6\xb9\x59\x3f\x6c\x26\xe1\x7d\x2b\xc8\xda\xfa\x79\x94\xc0\xbc\x1e\x7e\x01\x0b\x8b\x61\x47\xa6\xcd\x05\x6c\x76\x6c\xc7\x8f\x4f\x77\xe8\x5f\x3e\xec\xd0\xbf\xbc\xbd\x96\x79\xb4\xbe\xc4\x71\xa7\xdc\x43\x96\xfe\xbe\xb6\x99\x25\x06\x2c\xb2\x15\x1b\xc5\x39\x8b\x38\xe1\x67\xa4\xb6\x54\xc3\x44\xaa\xd0\x96\x51\x1f\xd4\x32\x0c\xc4\x1d\xc6\xfb\x18\xbe\x3c\x50\x6a\x36\xa3\xeb\x2c\x74\xd4\x9c\xab\x1e\x17\x2c\x61\xa2\xc8\xa6\x1c\x3b\x0a\xc2\xcb\xaf\xaf\xb1\xf2\x52\xbe\x52\xcf\x99\xe1\x8d\x63\xba\xf7\xd6\xcf\xc4\x70\xe3\xa1\xe6\xca\x17\xe6\x38\xbb\xd3\x1e\x51\x70\x28\x5b\x16\xb4\x4e\x81\x35\x5e\x79\xec\x39\xb2\x59\x41\x4a\x95\x66\x69\xf0\xa0\xf0\x62\xd1\x44\xab\x92\x54\x3b\x3b\x77\x7c\x73\x96\xb8\xdf\x3b\xac\x08\xe9\x70\x1e\xb3\x1d\x05\xaa\xbb\x35\x04\xcb\x4c\x53\xeb\x94\xa3\x2a\xb9\xa4\xde\xb0\x6b\xfd\xc5\xc3\xc1\xff\x8b\x67\x18\xa9\x72\xb1\x95\x9d\x48\xac\x89\x62\x18\x97\xee\x77\x94\x18\x56\xdf\x0f\x69\xfe\x93\x51\x4b\x73\x19\xb5\x4a\x62\x61\x9f\x5c\xfd\xc1\xd4\x58\x13\xb7\x09\xab\xf3\xb8\x24\xdb\x1e\x30\x85\x14\x9f\xa9\x4a\xfb\xe4\x62\x0b\x3c\x7c\x0a\x5c\xfa\x78\xcc\x5a\x29\x6b\xdf\x94\x3c\xf6\xcd\x92\x9d\x54\x65\x8e\x51\x73\xae\xc5\xcf\x06\xe4\x6a\xac\x45\x29\xfc\x09\xed\x5d\xda\xb8\xa3\x6e\xdc\x52\x15\xa6\x81\x65\x99\xa7\x64\xd8\x62\x20\x91\xa1\x7a\x6c\xfa\x50\xf5\x81\xb1\xd6\xad\x42\xf4\x40\xd6\x92\x4b\x0e\xed\xdd\xa7\xb8\xb6\xe4\xb8\x38\x8f\xbd\xca\x4a\x0a\xd7\x56\x29\xe6\x03\x9b\x56\xee\x70\x89\xee\xd9\x62\xf4\xc6\xc5\x93\x1d\x6e\xaf\xe7\x1a\xc5\xa7\x27\xe2\x87\x0f\x27\xe2\x87\xcf\xac\x02\xbb\xae\x02\xeb\xbc\xbb\x1e\xab\x20\x8a\x02\xb4\xc7\x1c\xf0\xb1\x81\xf9\x00\xc2\x68\x61\x05\xaa\x9d\x27\xe3\xe2\x1e\xcb\x5b\xb4\x58\x11\x06\xac\xb8\x18\x34\x8a\xb9\xe4\x21\x2d\x54\xe5\x20\x60\x7b\x71\xaf\xb0\xdd\x72\x5e\x98\xfd\x6c\xe4\xbb\xd5\x9c\xb3\x43\x16\x66\xf3\x19\x2e\x4d\x54\x66\x4a\xc7\xe6\x92\x26\xcd\x3d\x2e\x91\x63\x87\xcf\x54\xae\xa9\x1a\x1e\x33\x5c\xef\xd6\x2e\x67\xcb\xe7\x12\x8c\xaa\xaa\x3f\x6b\xbf\xe1\xc9\xf6\xa3\x87\xc3\xf2\xa3\x67\x94\x6a\x1c\xcd\x25\xcf\xca\x03\xeb\x8d\x88\xf3\xd2\xcf\xa4\x71\x68\xf0\x88\x97\xe1\x0f\x4f\xa4\xf7\x73\xbd\x72\x71\xb9\xd1\xf2\xbf\x7a\xd8\xf2\xbf\x7a\x5e\x9d\xe7\x5d\xce\x2a\x84\x06\xaf\x2a\x43\x12\x39\x1a\x14\xba\xa4\xd0\xb9\x9e\xbc\x78\xbf\xc1\x07\xff\xf2\x61\x83\x7f\xf9\xcc\x52\x2c\xbe\x1a\xbd\x50\xa1\x15\x66\x04\x7f\x2b\x3e\x30\xb1\xc7\x17\xce\x65\xb8\xe2\xcb\xa1\xd3\xef\xfe\x49\x17\xc8\x3a\x59\x6c\xb9\x56\xb2\x37\x31\x9d\x19\xcd\x39\x2f\xc9\xbe\x67\xb4\x51\x74\xce\xb1\xbc\xbc\x18\x16\xab\xae\xcb\x1e\x56\x3c\x16\xde\x9c\x1a\xbe\x87\xf6\xa5\x85\x39\x56\xa2\x2d\x3e\x20\x40\x16\x89\x3d\x54\x26\x91\x00\x48\xe8\x39\xad\xf6\x6b\x80\x1a\xc7\xb2\xc0\x4a\x75\x6c\xb6\x3a\x60\xff\xaf\x42\x33\xfc\xc2\x25\xf3\x17\x91\x28\x4d\x19\x87\x9b\x9a\x60\x5f\xcd\x8b\x73\xc2\xc7\xa7\x16\x9d\x4a\x36\x29\xe4\xaf\xd2\xb8\x24\xd3\xe2\xc1\x05\xdd\x7a\xb6\x12\x30\x61\x7d\xe0\x82\x2f\x01\xf5\x55\x81\x27\x8e\xbe\x15\x68\x32\xd1\xb3\x53\xbf\x84\x6a\x4d\x16\x6d\xd7\x81\x7d\x7a\x7e\xce\x0f\xe7\xe7\xfc\xbc\x42\xb9\x9f\x93\xf4\xe2\x42\x67\xed\x5c\x64\xc1\xb2\xc8\xa2\xfe\x4c\x1b\xb8\xfd\x5b\xd5\xf2\x8d\x36\x7f\xfc\xb0\xcd\x1f\xdf\x6e\xb3\xd0\xe1\xaa\x4d\x40\xe6\xe3\x1c\x46\x58\xb6\xf8\xa5\x9f\x69\x08\xfe\xd4\xe8\xeb\x7e\xfd\x50\xaf\x3c\xdd\xf2\xbf\x7e\xd8\xf2\xbf\xbe\x0d\x13\xe8\x93\xe9\x6a\x8c\x0d\xda\x50\xd5\xd8\xeb\xaf\xe2\x0c\x30\x6e\xae\x6d\xc2\x8a\x3d\xf7\x09\x45\xb2\x1e\x9e\x5c\x7d\x2f\x61\x79\x11\xa7\xb4\x9c\x0c\xc5\xc9\x24\xcd\x56\x8c\x99\xa8\xa6\x39\xcf\x32\x64\xaf\xcd\x40\x88\x96\xda\xd6\x06\x2a\xc0\x94\x1b\x61\xca\x0b\x2d\xc1\xa2\x60\xa3\x71\x21\xd6\xce\x4d\x8c\x80\x5c\xf5\xe0\x02\x4f\x7f\xeb\xbf\x79\xf8\xad\xff\xe6\xb6\xc7\x95\xdb\x72\xd2\x44\xb7\x06\xa6\xf5\x58\xed\xb5\xcb\x46\x8e\xcd\x6a\xeb\xf1\x38\x3c\xf8\x6a\x58\x58\x69\x2b\xd9\x2b\x89\x37\x62\x1b\x85\x98\xd8\xb6\xa3\xae\xa7\x7b\xb4\x3d\xec\xd1\xf6\x8c\xb2\x8e\xdb\xe2\x76\xa4\xd5\x1d\x3b\xb6\x06\x15\xa0\x8e\xa7\x6b\xbf\x7f\x58\xfb\xfd\x33\x0a\xa7\x15\x86\xb2\x39\x69\x1b\x7d\x6c\x71\x35\x92\x12\x71\xbf\xf4\x73\x3a\x5f\x54\x68\x4b\xe8\xd6\x88\xb7\x12\x91\x34\xfb\xd9\x54\xb7\x65\xb5\x4a\xdb\x24\xad\x1d\xcc\x91\x0f\x6e\xac\x71\x63\x2e\xfe\xea\x61\xdf\xfe\xea\xb9\x55\x46\x58\x65\xb4\x15\x5f\x1b\x32\x1e\xae\x32\xdf\xb2\x17\xaa\x22\xb8\xb2\x5c\x29\x94\x6e\xad\xb4\x9f\x3c\x6c\xf7\x27\xcf\x01\xa1\xe2\x97\xb4\xa3\xa0\x49\xcb\x3d\x46\x5c\x0a\x7f\x4a\x23\x2f\x39\x45\x10\x11\xb5\xf8\xee\xae\xb9\x9c\x9b\x24\xb9\x00\x22\x17\x0b\xf5\x7e\x20\x21\x99\xd9\xab\xbe\x4b\x4a\xc9\xee\x6d\x04\x02\x5b\x80\x52\xd7\xa3\x3c\x74\x0a\x94\xdf\xa8\xd3\x0e\xfe\x2b\x7c\xe5\xbf\xbc\x6e\xad\xe6\x19\x5e\xf6\xd4\x57\x05\xe8\x64\x8a\x5c\x9c\xe9\xc5\x7d\x3a\xdf\x25\xd0\x22\xb7\xc1\xba\xf4\x7c\x63\x60\xa9\xd4\x7e\x39\x83\xaf\xae\xbb\x7d\xd9\x73\x76\x83\x1b\x77\x09\x28\x85\xb3\x8a\xa7\xaf\x88\x03\x4e\x58\x5e\x61\xfc\x74\x6b\x29\x56\x4d\xec\x55\x36\x91\x56\xf7\xd4\x12\x0f\x0b\xe7\xac\xb7\x0b\x2c\xd7\x90\x30\x2d\x65\x2c\x13\xb5\xe0\x05\xa2\x0b\xb6\xc2\xc6\x52\x63\x6a\x01\x61\x76\x0d\xca\x0d\xe0\xfa\xd7\x0f\xe7\xeb\xaf\x9f\x59\x21\xf0\x2a\xfb\xdd\x9d\xd9\x35\xf6\x38\x22\xe6\xe0\x8f\x7f\x04\x01\xc1\xf1\x05\x41\x40\x4b\x67\x9c\x85\xff\x97\xa6\x19\x85\xcc\xfa\x59\x7a\xcb\x8e\x10\x1b\x2f\x41\x15\x5d\x35\xcf\xe9\xb0\x80\xe8\x59\xa5\xbf\x40\xab\xe1\xbc\x9a\xea\xd1\x60\x2b\x30\x6a\x51\x52\x6c\x8d\x3c\x8f\x99\x9e\x6d\xf4\x3e\x33\xe1\x95\xb4\x27\x74\x26\x52\x5d\xba\xba\x8e\xb2\xdd\x2d\x4d\xf5\xf2\x4b\x19\x68\x64\x21\x26\xe9\x97\xf0\x1b\x60\x72\x7f\x38\x38\xfb\x33\xc4\x6c\x10\x4d\x77\x84\x52\xa9\xca\x41\xcc\x6c\x87\x7f\x40\xb1\x2c\x8a\x76\x1a\xbe\xa1\x6b\x27\xb6\xd8\x8a\xc3\x9e\x08\xde\x65\x27\xea\xcd\x13\x11\x7f\xbf\xb5\x44\xa7\x1f\xe4\x9e\xb5\x0a\x10\x42\x52\xc0\xbf\x7e\xb2\x3e\x4b\x50\x8d\xb8\x64\xc9\x3d\xb6\x80\x3f\xc0\x68\xd6\xa3\x85\x07\x87\x2c\xf3\x87\x96\x30\x45\x7c\x25\xf7\x71\x90\x3b\x70\x07\xc8\x9d\xe8\x0e\x4f\x43\x5c\xa3\x9e\x10\x2e\xbc\xc6\xf6\x62\x11\x2f\xee\x33\xa8\xd0\xc9\x5e\xd7\x01\xef\xa1\x22\xd8\x15\x7c\x46\xc4\x31\x03\x06\x18\x5a\xbe\xd4\x8b\xdc\x55\xae\xe4\x1e\xeb\x16\x9c\x0f\xeb\xe1\x5a\xbd\x63\xc4\x82\x21\x42\xd5\xc4\x5e\x65\xeb\x03\x2b\x5b\x55\xf1\x70\x91\x71\x49\xfc\xac\x82\x7a\x41\xee\xc9\x8b\xdc\x65\x2d\x03\x04\x7b\xb0\xcf\x34\xaf\x51\x9f\xd5\x43\x0c\x8a\xdc\x30\x30\xff\xdb\x87\x33\xfa\x6f\x6f\xfb\xb9\xb3\x35\xd3\x92\xda\x81\x3a\xe0\x50\x0b\x81\x79\x1c\x88\xed\x70\x17\xb9\x72\x8c\x22\x79\x85\xc4\xcb\xcb\x0f\x9f\xc8\x80\xb7\x40\x13\xbd\xc1\x67\xa9\x70\x51\x46\xcc\x12\xe6\x5b\xb8\xcd\x92\x98\x3d\x72\x16\xbc\x77\xd2\x8d\xb8\xf7\x46\x52\x3b\xc2\x18\xdb\xd1\x87\x12\x5d\xb9\x45\xf0\x21\xba\x0e\x68\x03\xb3\xf6\x79\xe1\x45\xfd\x23\xf7\x84\xa1\xa2\xc7\x5d\x56\x5f\xc8\xe3\x2a\xb9\x26\xbe\x21\xe2\x06\x8d\xff\xcd\xc3\x11\xf9\x9b\x67\x5c\xcb\xa3\x49\xf6\xbd\xae\x4a\xa3\xd5\x5e\xa5\x26\x33\xe1\xa8\xe6\x13\xce\x25\xd1\x31\x57\x5e\x22\x0e\x45\x09\xdf\xb0\xc5\x7a\xd2\xe4\xc8\x16\x61\x13\xce\x83\x5d\x26\x21\x0e\x25\x68\x47\x81\x5c\xa0\x38\x45\xe0\x1f\x27\xbc\xc1\x1c\x8e\xc0\xf0\x06\x5b\xe2\x59\xd1\xaf\xd3\x41\xbf\x05\x83\x6a\xce\xa1\x76\x23\xb9\xc6\x38\x61\x79\x13\x21\x38\x83\xc7\x39\x33\xf7\x4c\xbf\x83\xbe\x37\x11\x1b\x41\x63\x39\xeb\x50\x2e\x8b\x0c\xf4\x1b\x2b\xc6\xc2\x78\x87\x47\x1f\x42\x2b\x40\xc2\x32\xa0\x49\x25\xee\x04\xff\xe4\x92\x89\x27\xc4\x39\x84\x21\xa2\xc0\xa3\xc0\x15\x96\x04\x2c\x37\x12\xd3\x92\x5b\x66\xce\xc2\xcf\xa9\x01\xe7\xdd\x02\x50\x39\x6a\x26\x8b\xeb\x49\xcd\x7c\x91\x49\xf1\xd5\x12\xbb\xc9\x15\x21\x9e\x28\x70\xfa\x8a\x93\xac\xa5\xb3\xfc\xd7\x1c\xae\x81\xb9\x7c\xab\x69\xec\x30\xf5\xd0\x80\xd3\xdd\x29\xe0\x44\x22\x3c\xd9\x4b\xf4\x98\x14\x7a\x47\x59\x8c\x17\x2a\xd8\x99\xa3\xa9\xf1\x59\xdc\x76\x44\x1f\xa4\x83\xad\x48\x7d\x9e\x7a\x63\xe7\x69\xe2\x70\x3d\xab\xfa\xb9\xeb\x0e\xe8\x8f\xe8\x64\x82\x19\xbf\xc6\x0c\xc1\x88\x41\x4d\xfa\xa2\x59\xc9\x1b\x30\x60\x3e\xa4\xaa\xf9\x8c\x18\xde\x69\xe9\x57\xc2\x6a\xa5\x1d\xb0\x3a\xce\x57\x84\x53\x0f\xe0\x97\xa7\x1b\xfa\xe9\xc3\x86\x7e\xfa\x9c\x09\x68\x61\xae\x0d\x46\x00\x1d\xb4\xac\x01\x08\x46\xe8\x5e\x58\x57\xe7\x58\x81\xa6\x10\x73\x80\xad\xf3\xc0\xd6\x2b\x4a\x4e\x11\xdb\x36\x19\x2e\xbc\x32\x09\x9e\xb6\x02\x01\x50\x07\x6d\x10\xf7\x16\x6a\xca\x4d\xfb\x40\x23\xf5\x8e\x58\x6f\xea\xbf\x13\x24\xde\x7d\x0f\x5a\x70\x3b\xdc\xf0\x7b\x32\xa1\x12\x98\x52\x16\x34\xbc\xe5\x25\x73\x79\xf8\xcd\x97\xdb\x4c\x8c\xa4\x69\x8f\x2d\xf3\x2a\x5b\xd0\xc8\x2d\x2c\x5a\x0d\x34\x6d\x72\xa0\x50\x51\xda\x8e\x67\x9f\x6e\xf1\xdf\x3d\x6c\xf1\xdf\x3d\xa3\xec\x2c\x26\x30\xb6\xa1\x57\xac\xc8\x3d\x36\xf0\xc7\x8e\xa0\xfa\x6a\x26\xbd\x6f\x85\xe5\xfa\x99\xd9\x37\x3e\x42\xb4\x39\x65\x93\x8c\x66\x69\x1b\x7c\x3c\xa0\x1e\x25\xde\x8e\x3a\x9f\xee\xd9\xbf\x7f\xd8\xb3\x7f\xff\x0c\x43\xd7\x36\x44\x37\xa0\x83\xd5\x33\x92\xad\xb8\x68\x48\x31\x5e\x96\x42\xc1\xc3\x36\x2f\x7e\x26\x7d\x13\x2f\xe9\x53\x3a\x42\xc9\xea\x19\xbd\x8e\x96\x8f\xed\xa8\xed\xe9\x3e\xfd\x87\x87\x7d\xfa\x0f\xcf\xf4\x29\x5b\xa4\x6d\x83\xae\x1e\xf4\xcc\xba\x15\xa4\xb2\xae\xf0\xab\xef\x67\x4d\xdb\x34\xb5\x58\xec\x26\xf2\x3b\xf3\xb5\xde\x7d\xba\x07\x2f\x1e\xf6\xe0\xc5\x33\xa8\x8e\x0e\xb9\xc7\xd6\xae\x73\xa1\x60\x18\x21\xb1\x08\x07\x7d\xd2\xc1\xd8\x06\x95\x03\x71\x8e\xed\x78\xeb\xe9\xb6\xff\x87\x87\x6d\xff\xec\xc3\xcb\x57\x7f\xfb\xfa\xdb\x67\x63\xbd\x72\x71\x77\x3b\x7b\xc4\xe5\x44\xdc\xcf\xa9\x71\x39\x89\xd8\x59\x7b\xbf\x90\x8f\xf5\x4b\x3d\xf3\x74\xa3\xff\xe3\xa3\x46\x5f\xbe\xfa\xdb\xe7\x23\x18\xf8\xd8\xc4\xcf\xd6\xfb\x46\x5d\x6d\xc5\x33\xd4\x6c\x5c\x6f\x3d\xdd\xd2\xff\xf4\xe4\xe7\x3d\x1f\x95\x05\xa7\xe6\xf5\x11\xf9\xdb\xcf\xc2\x87\x5a\x10\x3e\xeb\xd3\x87\x3e\xdd\xea\xff\xfc\x38\xa6\xe9\xd5\x9b\x37\xaf\xde\x7c\x78\xf5\xdd\xed\xbc\x16\x2a\xf0\x64\x39\x17\x99\x9b\x1c\x4c\x25\x44\x36\xea\x46\xb8\x93\x9c\x5b\x71\x7b\xa2\xa2\x27\x60\x38\xb6\xcd\xe1\xd6\xa1\xb4\x1d\x15\x3c\xdd\xa1\xff\xe5\x61\x87\xbe\x7b\xf7\xe5\xeb\x0f\x1f\x5f\xbd\xff\xf0\x8c\x8f\x6e\x77\xc4\x77\xc6\x99\x14\x1a\xc5\xee\xfd\x52\x7f\x3f\xdd\xc0\xff\xfa\xd8\xca\xfe\xf2\x19\xff\xdf\x1c\xd0\x84\x8e\xb3\x87\x41\xab\x40\x1a\x79\x0e\x8a\xed\x7a\xe7\xe9\x46\x5e\x3e\x1a\xd6\x67\xb4\x33\xd1\x3a\x3c\xe8\xb8\xc3\x6a\xa0\x3e\x03\x5e\x23\xb4\xd7\x3a\x0d\x6f\x48\x17\xa2\xcb\xca\xe5\x2b\xf0\x89\xe0\x57\xb4\xb6\x10\x3a\x64\x57\xa5\xa6\x93\x99\x5a\xd0\x24\xc4\x9f\xc8\x92\x60\xbb\x14\x52\x5c\x61\x1d\x5a\xa2\x50\x20\x00\xdb\x9d\xce\x11\x79\x09\x36\xf8\xc9\x81\x63\x71\xc0\x64\x6d\x09\xf3\x05\x9c\x14\x11\xa4\x6b\x87\xff\x08\x95\xa4\x54\xb0\x75\xec\x24\xe3\x0e\xc6\x71\x1f\x2d\x4b\x14\x5e\x79\x3d\xfa\x54\xd8\x26\x43\xa7\x41\xdf\xdf\x79\x5f\x91\xa7\xbd\x10\x4a\xc0\x40\xbe\x1c\x0b\x7b\xa1\xd9\x5e\xb8\x7f\xc5\xe3\x7a\x0b\x96\x15\x66\x8e\xe0\x97\xda\x33\xbb\xc3\x94\x3f\xa1\xae\xa2\x28\x56\x42\xf1\xe2\xde\x8a\xba\x86\x2d\x27\x80\x61\xcd\xa5\x37\xee\x2b\x39\x03\x0b\xcd\x80\xeb\x60\xc0\xdf\x4e\xfa\xb8\xe8\xb0\xb3\x8b\xef\x16\xb5\x19\x1a\xac\x77\x9a\x82\x40\x30\xd5\x84\xfa\x54\x4a\x8c\x1f\x52\xc2\xd5\x5e\x57\xe4\x02\x11\x6e\x2c\x3c\x8f\xf6\x9e\xf6\x66\xfd\xd9\xa3\x95\xfb\x5c\x78\x98\xd7\x16\xb0\xa3\x50\x1b\x39\xf5\xd1\x01\x7a\xa8\xd7\xea\x10\x9d\x19\xd9\x98\x10\xb0\x0f\xd5\xf0\x72\x17\xad\xb7\x1a\xd9\xd4\xe5\x1a\xb5\xc9\xa8\xad\x16\xba\x73\x64\x50\x61\xbb\x8c\xd4\x5d\xa1\xd1\xd1\x0e\xc7\x6d\x78\xb7\xf9\xe0\x35\x07\xd0\xea\xd5\x1c\x24\xe6\xc0\x69\x35\x39\x34\x56\x80\x51\x80\x5c\xaa\x7f\x46\x88\x58\xbb\x2f\x29\xc4\x8c\xf6\x94\xbc\x73\x8a\x56\x78\xdc\xc3\xe1\x4e\x17\xc8\x3e\x13\x2d\xad\x4f\xe7\xaa\xd4\x77\x83\x9b\x6b\x21\x96\xd1\x12\xb2\x96\xb5\x30\xbf\xd4\x78\x6a\x61\xbd\x1a\x4f\xa4\xbb\x08\xe8\x95\x19\x16\xfb\x22\x7c\x6b\xc1\xd9\x98\xc7\x8c\x1a\x77\x38\x80\x64\xd3\x12\xbd\x05\x7b\xe6\xc5\xec\x06\x64\x79\xf5\xc8\x73\xee\x99\x2d\xb1\x23\xbe\xdb\x0b\x5b\xc1\xfe\x9a\x70\x30\x0c\x97\xc6\x9a\x33\xbb\x37\xe9\x34\xb3\xd6\x52\x14\x17\x29\xc8\xdc\xf3\x80\xcc\x08\x39\x27\x9d\x43\xb3\x8d\x0e\x85\xcc\x98\x25\x47\xc1\x92\x86\x49\xa2\xa6\x5d\x6b\xee\x18\xc9\x73\x72\x96\x78\x26\x44\xf0\xca\x37\xb6\x8b\x99\xed\x55\x5e\xf6\xea\x12\xd4\x12\x19\x1d\x86\x32\x7c\x60\xe1\x29\xe6\x2c\xc7\x84\x1d\x85\xbb\xe5\xfc\x16\x8c\x8c\x05\xa3\xb0\x77\xb7\xde\x72\xe9\xf1\xb9\x79\xf2\x39\xb9\xc3\x29\x22\x6a\x2a\x7a\xb6\xb0\x9c\xe1\xcb\xf7\x2b\x6a\xce\x7d\xd9\x1b\x33\x02\x26\xb4\xa2\x01\x83\xef\x58\x87\x93\x43\x44\x2d\x01\x47\xfa\x12\xa9\xe5\x61\x76\x31\x2c\x03\x6b\xea\xdc\xb4\x5b\x7d\xdc\x54\xed\x18\xa4\x12\xa9\x6b\xba\x8e\x41\x7d\x7a\x6a\xbe\x7c\x94\x88\xe6\x99\x65\x51\x42\xd1\xd8\xeb\x0a\xb7\x5c\xed\xf0\xdb\xe4\xc2\x42\x3a\xa6\x18\x28\xb6\x24\x89\x38\x18\x0a\x2f\xaa\x6e\x8e\xb9\x89\xa5\x9f\x42\xe4\x58\x2d\x07\xea\x09\xe5\x27\x8f\x2d\x09\x0e\x1b\x7b\xb8\x36\xeb\x88\x23\x25\x9b\x26\x2b\xaa\x11\xce\x6c\x50\x7b\x60\xd1\xc1\xae\x29\xbe\x7c\xf2\x21\xed\x71\x33\xce\x8b\xe9\x78\x71\x2f\xa3\xd7\x1f\x7b\x5d\x0b\x73\x6b\xa7\x3b\xed\x0c\x1f\x23\x81\x47\x8e\x83\xf5\x40\x83\x06\x4b\x47\x2e\x1c\x5e\xe2\x8d\xc4\xa1\x41\xe3\x4b\x78\xdf\x23\xa4\x55\xcf\x82\xbd\xa5\x1a\xb0\xfb\x5a\x42\x03\x4b\xc8\xea\x6f\x23\x8c\x77\x24\x4d\x45\xac\x7f\xc0\xd4\x62\x3a\x2e\x76\x2b\x0f\xd2\xeb\x47\xce\x6b\xb7\x97\x83\x2f\xd5\xa7\x29\x2d\x09\x44\x06\x46\xc0\xb5\x91\xf0\xa4\x92\xd5\xc6\x12\xf3\xac\xcb\xc5\x54\xd6\xf4\x14\x3b\x36\x82\x67\x30\x7b\xb1\x0f\x5f\x16\xd8\x62\x28\x2e\x07\xbf\x0f\x3b\xa6\x27\xf5\x48\x4b\x30\x46\xb6\x61\xb6\x6c\xc0\x91\x25\x9e\x16\x1a\xf6\x71\x51\xa3\xb3\xd4\x56\x53\x22\xd3\xf0\x86\x28\xc4\xfa\xf4\x2c\xc9\x89\x11\x66\xc2\xc5\x10\x53\x56\x34\x22\xeb\xdd\x8a\x46\x84\x82\x12\x91\x10\x2c\x3a\x07\x2d\x99\x69\x94\x14\xca\x51\xc2\x58\x6d\x21\x51\x6b\xb8\x83\xa4\x0e\x3f\x00\x9b\xa3\xb6\x4a\x9e\x35\x01\x27\x99\xc7\x48\xbc\xb8\x77\x91\xb5\x40\xd2\xd7\x02\xd1\xc0\xc2\xd1\x18\x2d\x49\xa6\xf2\x68\x21\x63\xca\x18\xcd\x55\xce\x69\x76\x71\x37\x98\x51\xa3\x0f\x68\x6d\x42\x73\x16\xc8\x4d\x3a\xb2\x5d\x78\x9f\x47\xbd\x4f\x4f\xd8\xcf\x1f\x05\x23\xdd\x46\x5d\xd4\x5b\xbf\x64\xc4\x99\xd8\x11\xee\x74\x56\xea\x97\x02\x54\xc0\x00\xb0\x8a\xc3\x26\x27\xd2\xa7\x41\xa6\xf0\xc4\x3e\x42\x66\x0c\x87\x6a\xb2\xa4\x7d\x60\x27\x49\x6a\xc3\xb9\x91\xc5\x58\x9a\x52\x32\x84\x23\x15\xf4\x30\x07\x72\x58\x2f\x1e\xe8\x5c\x44\x57\xa8\x0b\x09\x9c\xa2\x10\x56\x07\xe7\xb6\x68\x24\xa6\x80\x30\x55\x40\x00\x0a\xf1\x18\xd3\xa1\x8d\x55\x5a\x9d\xa5\x1e\x03\xdd\xf7\x1c\x25\x8e\xd3\x8d\xfc\x11\x5f\x3d\x82\x67\xcf\x59\x59\x0f\xae\x21\x07\xd7\x90\xc5\x35\x84\x16\xd7\x58\xf2\xf7\xb1\x77\xd3\xd5\x14\x0f\x18\xb2\xfc\xf4\x6a\x7b\xa1\x36\x62\x6c\x08\xa7\x59\xbd\x1c\x76\x11\xdb\x41\xa7\xa7\x58\x9e\x29\xed\x44\x4e\x73\x98\xb4\x93\x74\x47\xb8\xc1\x49\x86\x41\x17\x73\x52\xf6\xdd\x44\x50\x68\x1a\xd1\x4e\x4a\x8e\x64\x3e\xc8\xd5\xc0\xce\xed\x24\xb5\xa2\xa2\x44\x7d\xd3\x4d\xba\xdc\x9d\xd2\x76\x31\x6f\x27\x52\x6b\xca\xd2\x4e\x14\x3e\xcd\xa1\x0d\xc8\xdd\x13\xec\xa9\xf8\x78\xaf\x67\x7c\x25\xa1\xe1\xcb\xd0\xbd\xd8\x7a\x71\x05\xf8\x1b\x4e\xb3\x65\x41\x56\x5d\x30\xa1\x3e\xba\x96\x71\x61\x6e\x30\x32\x3d\x18\x99\xfc\x2e\x23\xe3\x83\x91\xf1\xc1\xc8\x8a\xb9\x33\x22\x82\xc0\xc8\x68\xd9\xf6\x16\x73\x77\xa0\x37\x30\x32\xed\xcb\x5f\xbc\xfa\x02\xcd\x5f\x47\x9c\x54\x16\xe6\x54\x02\x70\xfc\x84\x05\x5c\x16\x23\x2b\x54\x0b\x46\x36\xee\x16\x23\xf3\x83\x91\xf1\xf3\x8c\xec\x17\x8f\xe2\xee\x9f\x59\x17\xa3\x0d\x91\x03\xfa\xc0\x5b\xb1\x2f\xa7\x0a\x04\x57\xd7\xbc\x2f\x7f\x6a\x04\xf0\x20\xcb\x57\xac\x5c\x41\x63\x00\xfa\x2c\xc7\x71\xa8\xd5\xdd\xac\xb6\x0d\xe1\x8b\x5b\xec\x29\x8b\x52\x92\x6a\x22\x0a\x4b\x3a\x62\xc0\x82\xa8\xa5\x0b\x76\x7f\x7c\xab\xd9\xc1\xb4\x75\x7d\x2b\x8d\x62\xda\x30\x68\x5c\x33\xdc\xd1\xb8\x0c\xb9\xe1\x57\xf0\xe6\xe1\xa7\xbe\xb9\x2d\x5a\x82\x6c\x6b\xbb\xef\x7a\x58\x8e\x47\x21\x62\x26\x5b\xfe\x1f\x2c\x97\x34\xc3\xdf\xf5\xdc\x8b\x7b\x2b\x54\x21\x36\xf6\x55\x18\xd4\x0c\xa1\xe7\x94\xd3\x20\x1a\xbb\x21\x3a\x87\x74\xf8\x5c\x4e\x7d\x3d\x96\xe3\x96\xf5\x68\x01\xce\x89\xa0\x2f\x5d\xf5\xa0\xc0\x05\x00\x13\xa1\x11\xb2\xde\x82\x0a\x9d\xa1\x90\xa7\x66\x23\x97\x87\x00\x9a\x60\xe3\x69\x64\x77\x60\x09\xd7\xfe\x3c\x3d\x10\xff\xf1\xe1\x40\xfc\xc7\xdb\xb1\x2f\xc5\x6b\x30\x10\x4e\x97\x13\x1b\xfc\xe2\x4f\x54\x7c\x16\x1e\x15\xd4\x67\x11\xeb\x49\x24\x97\x9f\xa1\x22\xf1\x4e\xad\x56\x89\xbd\xe0\x44\x15\x60\xac\x3e\xa9\x28\x2c\x20\x27\xe5\xbe\xb1\x20\x21\x89\x22\x7b\xd8\x89\x46\x34\x46\x96\xc4\x31\xa6\x10\x00\xb9\x00\x8d\x9c\x4a\xd6\x90\xc4\x72\xf5\x5d\x79\x15\x9a\x3a\x34\xa7\x31\x0d\x96\x17\x8f\x69\x5e\xf2\x3f\x31\x24\xaa\x13\x1b\xe6\x47\x7a\x5c\xe7\xc7\xe9\x6e\xcd\x0f\xc2\xfe\x6b\x7e\xc0\xc9\x28\x57\xde\xb3\x9a\x1f\x38\xe3\xd4\xfc\x04\xf7\x63\x7e\xc0\xd3\x7b\xac\x18\xc1\xe5\x52\x4a\xc7\xfc\x60\x5a\x10\xef\x92\x6b\x7e\xf0\xd6\x32\x71\xe8\x9a\x1f\x64\x0f\xaa\xf9\x59\x36\xc4\x9a\x1f\x38\x57\xd7\xfc\x38\x3d\x33\x3f\x7f\xfb\x70\x7e\x9e\x4b\x7c\x02\x8b\xfe\x06\x6b\x8b\x74\xac\x04\xbd\x4a\x2a\xb5\xb8\x72\x2b\xb4\x84\x14\x50\xfd\xa0\x69\x22\x19\x5b\x08\x35\x87\xa3\xc7\xf0\xd6\x6b\x87\xdd\x8e\xba\x9e\xee\xd1\xdb\x47\x31\x03\xcf\xb8\x5f\x8c\xb6\xd2\x48\x5e\x97\xce\x61\x8f\x1f\xe3\xd3\xd2\x21\xe9\x03\x3f\xd4\x83\x4f\xb7\xf7\xf5\xc3\xf6\x6e\xeb\x48\x04\x61\xe2\xc9\x9b\x30\xb7\x61\xb4\x0b\xf2\xce\x41\x46\x38\xc4\x2f\xd3\x7e\x6c\x4b\x30\x1e\x60\x5b\x5a\x51\x1e\x01\xd4\xa4\x84\x80\x3a\x48\x71\x83\x8e\x2d\x0c\xe9\x21\x96\xaf\x39\x04\x86\xd4\x59\x0c\x6d\xf9\x02\x43\xaf\x3f\x18\x3e\x95\x25\xa2\x31\x14\x6f\x74\x89\x90\x3d\x07\xb5\x2c\x06\x95\xd6\x92\x75\x66\x49\x07\x66\x80\x4f\x19\x34\x93\x16\xe3\x8e\x94\xbb\x62\x66\x25\x16\x15\x93\x0b\xe1\x96\xec\xb5\x63\x67\x5c\x22\x14\x6e\x83\x35\x6b\x5a\x9c\x93\x6d\xaa\x23\xd3\x18\xb0\x6a\x22\xae\xb0\xa3\x26\x81\x5d\xa4\xc0\x1c\x42\xe3\xa6\x70\xb6\xa4\x22\x86\x23\x5c\xfb\x2c\x74\x43\xcf\xf9\xee\x51\x1c\xdc\xed\x61\x86\xcf\x75\xf2\x56\x8d\x0e\xe1\x5d\x11\x41\x5d\xbb\x9d\xd1\xb1\x0b\x5c\x41\x29\x54\xef\x6b\x17\x58\x5e\xfa\x6b\x17\xa8\x7f\x96\xdd\x2c\x3d\x96\x5f\xaa\xbb\x2f\xe9\xe1\xe2\xce\x7b\x16\xec\x2b\x9c\x5e\x78\x1d\x2a\x85\x62\x33\xb2\x2c\x30\xee\xbf\xdd\xf2\x8c\x8e\x6d\x60\x6d\x85\xca\xbd\x60\xf2\x75\x1b\xc0\x07\x8f\x1b\x5b\xc0\xfb\x47\x19\x33\x9e\xd1\x75\xe1\xd3\xf6\xba\xfa\x8a\xe4\x5c\x58\x5c\x1c\x49\x2a\x57\xfe\xc1\x02\x9d\x74\x15\x23\x8f\xef\x07\x6b\xc4\xad\x31\x56\x42\x4b\xe8\x1e\x22\xfa\x32\x6f\x1d\x62\xff\x8e\x3f\xa0\xe9\x82\x6a\x82\xe8\x70\xe0\x74\x80\xa5\x02\xe2\x74\x15\x7a\x65\xb9\x8f\x96\x20\xdd\x27\xd2\xc9\x15\xe4\x00\x63\xed\x13\x3d\x3d\x24\xf7\x7b\x49\xba\xab\xca\x91\xa3\xd2\x19\xa9\x09\xb5\xcb\xca\x4e\x80\x7d\x21\x1a\x73\xa2\x6e\x08\xe9\xf0\x12\x2b\x79\xb6\xe3\xf7\x82\x5c\x25\x8e\x20\x27\x5f\xe7\x99\x6a\xd7\xca\xe1\x64\x0e\xf5\x84\xf0\xa1\x9e\x60\x58\xf1\xe3\x80\x1e\x30\x0c\x40\xee\xa5\x05\xeb\x8b\x71\xd6\x36\x2d\x86\xe7\x90\x26\x31\x1c\x1e\x1c\x57\xdd\xc7\x93\x93\xf4\xcd\xa3\x6c\x3d\xcf\xa9\x79\xea\xdb\x69\x47\x61\xe5\x97\x49\x60\xa6\xab\x41\x37\x67\x06\xb7\x62\xc1\x03\xe2\x17\xf2\x5a\x2e\x35\x4f\xd1\xef\x2c\x48\x38\xf4\x52\x50\xf2\x4c\x7a\x2c\x17\xed\x45\xe7\xdc\x46\xf8\x91\x23\x4e\x7c\xe9\x85\xba\x5f\xd1\x36\x14\x3d\x57\xe1\x0b\xc9\xe1\x96\xdb\x8b\x16\x13\x2a\xb4\x63\x2d\x60\x1c\xc4\x12\xe1\x8b\x09\xbd\xb8\x4f\x29\x89\x9f\xf7\x14\xbb\x2b\xd0\x97\x5c\x88\x7a\xcc\xc8\xda\xe7\x19\xf1\x94\x6b\x24\x0f\xc0\x03\x9e\xe1\x4d\x87\x1f\x94\x5e\xe2\x58\x5c\x84\x0c\x40\xb4\x84\x48\x85\x22\x4e\xe1\x8e\x88\xd8\x5d\xcc\xa8\xb4\xa8\xbf\x79\x20\xe1\x59\x81\xcd\x6a\x4b\xbb\x22\xdb\xa3\x09\x5d\xcc\x6e\x68\x13\xfe\xee\x51\x48\xd2\xf3\x72\x81\xf5\x43\x2e\x10\xe4\x8a\x8c\x30\x6c\xf2\x0f\xb5\x09\x9f\x18\xb0\x1c\x23\xb6\x92\xe7\x79\x22\x1b\xc6\x08\xde\x12\x4e\xe7\x90\x0b\x92\xd6\x74\x64\xe7\xcb\x60\xe4\x1c\x90\x84\x6b\xc5\x98\x26\xf9\x48\x9d\x10\x4b\x9d\xa0\x07\x0a\xe7\xb5\x24\x80\xc2\xc7\xc5\xac\x17\x0a\xa7\xfa\x63\xaf\xeb\x52\xb1\xc8\x1d\x96\x04\x74\x0f\x7d\x5a\x5f\x1a\xb1\x4f\x69\x1b\x92\xd7\x00\x72\x42\x23\x09\xef\xb9\x65\x7f\xdf\x23\x8a\xa9\x33\xc2\x67\x52\xc7\x74\xa2\x83\xe4\xf9\x50\xf5\x10\x32\x9c\x69\x89\x48\xc9\x53\xbb\x62\x82\xd1\x07\xeb\x17\xe3\x1b\x3b\xfe\x87\x87\x83\xfe\x4c\x16\x0f\xca\x63\x83\xca\x4f\x1b\x94\xd4\x16\x38\xb4\xd8\x0b\x14\xc2\xb6\x41\x14\x0f\xc4\xb5\x17\x76\xae\xed\xce\x6b\x53\x88\x99\x56\x72\x84\x22\xec\xaa\x30\x66\xed\x89\x11\x03\xf8\xc9\xad\x36\x0d\xce\x05\x9a\xce\xa6\x8e\xcc\x69\xa3\x1b\x22\x7f\xc7\x08\x50\x15\x75\x1d\xf3\xda\x8f\xa7\x3f\xe7\xe3\xa3\x80\xce\xdb\x5a\x79\x19\x8d\x47\x20\x13\x71\xed\xe0\xc9\xd9\x44\x09\x71\x2e\x52\x3c\xa6\x67\x6d\xe4\x48\xed\xa7\x62\xbb\xc2\x0c\xbe\xf8\xa6\x26\x4f\x0e\x5f\x19\x80\x73\xc5\xbf\x91\x05\xb2\x72\xd6\x15\xd1\x10\x39\x90\x4b\x98\x93\xd6\x06\xa4\x70\xe8\x0d\x9b\xce\x74\xe5\xdb\x7a\x2c\x63\xa8\xca\xc3\x97\xc3\x4f\xef\xb2\x92\x50\x24\xfc\xe8\xbb\xb5\x30\x39\x27\xc7\x9e\x1c\x77\x25\x9a\x41\x4c\xb1\x44\x4d\xa3\xd3\x5e\x58\x74\x74\x6a\x5a\x44\xe2\xbe\xd4\xb2\xd9\xf7\x43\x3d\x8b\x34\x62\xc8\xdb\x11\xbd\x79\xf1\x62\xed\xb5\xb5\xc0\x5c\xef\x6a\x7b\xc9\xa0\x08\xa7\x45\x20\xa1\xce\x81\x58\x91\xbe\x32\xe3\x28\x5c\x53\xfa\x28\x29\x73\x47\x01\xfb\x40\x8f\x95\xbb\x75\x44\xb4\xe0\xb5\xc8\xb1\x51\xae\x64\x5a\xfd\xd0\x96\xd6\x86\x8c\xd4\x07\x45\x25\x48\x15\x4d\x93\x0a\x33\xaa\x9c\x91\x3b\x73\xf4\xda\x1e\x30\xac\xec\x09\xa8\xc1\x88\x1d\xee\x0d\x29\x9e\x39\xef\x28\xc6\x0e\x37\xa1\x18\x88\xa8\x63\xe2\x79\x4c\xdf\xd3\x44\xf0\xed\xa3\x9c\x46\xb7\x55\x64\x86\xc0\x85\xb8\xea\x2f\xcc\x96\xfe\xc2\xe8\xa2\xc4\x70\x6b\x15\x78\xd3\xeb\x0a\xb8\xef\xd2\x18\xb1\x8c\x2b\x3b\x41\xc2\xe3\x39\xf6\x44\x42\xd1\x68\x03\x1e\xcf\x1d\xae\x00\x2b\xc7\x03\x8f\xc6\x0c\xa7\x1d\x68\x08\x0f\xff\x01\x44\xc3\x4b\xe3\x71\x2c\xa1\x98\xc3\x4a\x4e\x41\x72\xa1\x13\xf9\x0c\x5f\xf1\x1b\x1e\x2b\x7e\xa3\x60\x3c\x23\xe5\x73\xd8\xd4\xbe\xe2\xfc\x24\x8a\x3f\xd9\x43\x85\x91\x44\xa1\x5c\xc5\x37\x3c\x3d\x38\xdf\x3d\xb2\xbe\x3d\xb3\x42\xa8\x91\x15\xeb\xf1\x16\x2b\x15\x06\xdb\x34\x44\x89\xd3\xae\x6a\x0b\x1b\x84\x35\x9b\x0c\x01\x19\x1a\x10\xf8\x0c\xc3\xe6\xc2\xc7\xa6\xc6\x79\x51\xed\x90\xa1\x24\x90\x0e\xb6\x09\x8f\x59\x40\x0e\x31\xc5\xbc\x46\x73\x69\x55\x6d\xaf\x6d\x0e\x06\x03\x45\xb6\xe0\xa5\xae\x2f\xf0\x7e\x68\x6f\x0a\x6f\xa5\xc6\x76\xf4\xef\xe9\xaf\xfc\xe5\xc3\xaf\xfc\xe5\x6d\x12\x80\xce\x96\x36\xe0\x12\x95\x0d\x21\xf5\x94\x5b\xa1\xe7\x43\x6a\xb1\xd8\x42\xfd\xb0\xa7\xc7\xa1\x46\x12\xe7\xed\x78\xf7\xe9\x1e\xfc\xea\x61\x0f\x7e\xf5\xcc\x38\x4b\x13\x19\xdb\xe0\x4f\x2d\x26\x6f\x23\xb3\xf5\x73\xa8\x6e\x0e\x25\x78\x6e\x0a\x9b\x3e\x33\x6d\xd7\x07\x39\x09\x89\xed\x45\x7c\xb9\x3d\xd4\x8f\x3e\x6a\x68\x50\xe5\xd3\x1d\xfb\xf5\xc3\x8e\xdd\x4e\xc3\xe3\xe2\xad\x3a\x00\xcf\xe2\xd5\xb1\x90\x2d\xa9\x17\xe3\xdb\x90\x61\xb8\x9f\x33\x7d\xf3\x9a\x51\xd3\xad\x16\x73\xc9\x23\xe8\x2a\x9e\x59\x12\xcc\x02\x36\x47\x75\x4f\x77\xea\x37\x0f\x3b\xf5\x9b\x67\xe6\x8b\x8b\x0f\x6f\x8e\x54\x88\xb9\x0d\xbe\xea\xf5\x98\xc7\xe6\x89\x05\xc4\xbb\x3b\x1c\x21\x05\xd9\x48\x4e\xb5\x68\x0d\x6a\x3a\xed\x08\x6b\x3d\x69\x2f\x79\xff\x50\x17\xf0\x58\x85\xc6\x61\x55\x70\xa4\xee\x39\xa9\x30\xd2\xb6\x9d\x94\x7d\xd2\xd2\xfb\xc5\x86\x5f\x8a\x4e\x79\xe9\x04\xac\xb1\x01\xd9\xf9\xe4\x11\x4b\xbb\x27\x2b\xea\x23\x9b\x98\xb5\x53\xf1\x31\x19\xe3\xee\x44\x30\x99\xc1\xb8\xdb\x57\xa2\xca\xec\x9b\x51\x6f\xb5\xdf\x5d\xe9\xca\x7c\x3b\xbe\xf1\xe9\x91\xfa\xfb\x47\x69\x10\x9f\x89\xd8\xce\x95\xfd\x8d\x56\xf0\x01\xe5\x72\xd0\xc0\x11\x00\x7e\x26\x39\xd6\x27\x11\xf5\xcb\x20\xdb\x8e\x17\x9e\x6e\xf6\x7f\xfb\x7d\xdf\x85\xd7\xcf\x3a\x66\x0c\xa8\x67\xbc\xef\x45\x3e\x55\x68\xb5\x90\x31\x03\xf0\x5a\xe5\x74\x24\xd1\xc2\xc8\x39\xf2\x0a\xf4\x9c\x2b\x09\xe5\x5c\xe7\x2d\xf8\x85\x7d\xec\x06\x05\x26\xc3\xb0\xa8\xde\xa7\x20\x39\x61\x5e\x82\x12\x70\x2c\x28\x71\x2f\xa0\x5f\x45\xda\xb6\x0b\x91\x30\x5e\x24\x4a\x6d\xe6\x79\x84\x8f\x97\xec\x24\xea\xd3\x55\x97\x07\x60\x01\x5f\x32\x96\x99\xa4\x77\x64\xb5\xa1\xd5\xce\x63\x23\xb6\x81\x44\x7d\xda\xf7\xb1\xd2\xe8\x1c\xca\x45\xa5\x95\x38\x9c\xe4\x30\x30\xd0\xf2\x26\x65\xf8\x68\x5e\x86\x8f\x1d\x92\xb6\xf5\x16\xa6\xb0\xd3\x21\xa3\x1a\xe5\xee\x08\x42\x5d\xbf\x6b\x0c\xbc\xc4\xd5\xdb\xee\x78\xa7\xb0\x1c\x65\x3b\x09\x76\x96\xd3\x3a\x3c\x80\x97\xe6\xb8\x7a\x73\xe2\xce\xdb\x75\x5c\x9f\x9e\xa6\xff\xfd\xb1\x33\xcb\x6d\x40\x17\x48\xab\x4a\xfd\x6c\x72\x78\xec\x47\x8f\x42\xc0\x37\xaa\xfe\x3f\x9e\xa0\x80\xe7\x7d\x57\x44\xb0\x08\x19\x42\xe1\x89\xbb\x22\x27\xfe\x09\x69\x2a\x6b\x35\xd6\x07\x22\x44\x51\xa7\x22\x4e\x6e\x4d\x78\x95\x85\x97\x18\x27\x85\x10\x15\x01\xce\x30\x6f\x9a\xad\x7c\xdd\x4e\x01\x89\xca\x3d\x9a\xc1\xd0\xda\x51\xc7\xa7\xc9\x47\x85\xc5\xa2\x74\x1c\x19\xb0\x15\x29\xf6\x95\x97\x35\x4b\x49\x11\x1c\x5e\x33\xbc\x21\x31\xbf\x0d\x64\x33\xb9\xab\xc2\x72\xb5\x2f\x72\xc0\x01\x16\x45\x20\x0e\xef\x51\xd5\x95\x5e\xb8\x88\x08\x4a\xd4\x22\xab\x95\xdf\xf0\x98\xfc\xfa\x23\x8f\xac\x59\x45\x92\x0b\xbc\xe6\xc5\x28\xf7\x74\x90\x2e\x0c\xb8\x45\xca\x01\xff\xc9\x45\x00\x55\x46\x16\x61\x6f\x27\x9a\xd1\x7d\x2d\x08\x47\x0e\x8e\xee\xcb\x14\x51\x8b\x66\xa5\x5d\xd6\x7e\x58\x20\xbc\x6f\xd7\x71\x7e\x7a\xde\xfe\xcf\x27\xfc\x7f\xbe\x7d\xf3\xf6\xcb\x67\xdc\x6d\xa0\x5c\x32\x5e\xf1\xba\x4b\x79\xc5\xdc\x1c\x6a\x14\x1b\x4d\x53\x91\xc5\x54\xbb\xcf\x92\x9f\x24\x12\x32\xa9\x44\x82\xb6\xa5\x96\x76\x64\x53\xea\xd0\x40\xaa\x31\x12\x9c\x1b\xf1\xae\xb9\xb2\x0d\x14\xbb\xb5\x38\x12\x59\x0f\xdf\x85\xb2\xae\x8d\x87\x34\x4b\x41\x14\x92\x69\x4c\xc6\xea\x36\x24\x2d\x52\xb1\x0d\x91\xf4\xb1\xf3\xca\x5c\xa7\x59\xd8\xa8\xf0\xe9\x5d\x94\x38\x56\x63\x3e\x02\x13\x5b\xb2\x06\x7c\x8d\x59\x41\x03\x31\xfa\xf4\x02\xbe\x83\x00\x31\xbc\xa8\x46\xa4\x39\x27\xd0\xab\x17\x90\x2b\x20\xdc\x03\xfe\xc9\xce\x34\x07\x79\x73\xcb\x39\x56\x6e\x9d\x39\xac\xc0\x77\xed\x7d\x6b\x80\x6e\xe4\xf9\xf8\xa7\xbf\x7e\x49\x7f\xfa\xd4\x41\x42\x5f\xbe\xff\xd5\x6d\x4d\x97\x51\x71\x2a\x3b\x87\xc7\x16\x29\xed\x24\xd9\xcf\x3a\x62\x3b\x6e\xac\x6c\x5c\x43\x57\x36\xae\x41\xd6\x70\x3e\x49\x06\xf0\x68\x16\x1d\x96\x10\x58\x34\x53\xbd\x1b\x8e\x63\x51\x02\x3c\xc7\x91\xbb\xd2\x4a\x24\x93\x01\xc7\xa2\x7a\xaf\xe6\xa2\xea\xc3\x35\xfb\xca\x81\xd4\xaf\xc9\xf5\x3a\x38\xd7\x8a\xd5\x5e\x0c\x93\x20\xa4\xd2\x5d\x15\xa0\xca\xc4\xad\x58\xc9\xec\x97\x55\x94\x7a\x1f\xf3\xe8\xe7\xed\xd1\xe1\x47\xa3\xf3\xec\xa9\x23\x2b\x27\xd8\x4a\x38\xba\x34\x46\xb2\xdc\x3a\x32\x97\x5b\x87\xd0\x72\xeb\x50\x5b\x6e\x1d\xd4\xe3\x10\x54\xa0\x2a\x4b\x82\x34\x0d\x15\x09\x52\xee\x94\x84\xa7\x33\x6a\x8b\x27\xb9\x9c\x58\xed\x6c\xca\x97\x53\x51\xa7\x4a\x73\x24\x87\x30\x9d\x7c\x75\xb1\xf2\x44\xae\x89\x12\xf2\x3f\x39\x79\x28\x37\xe4\x84\xf5\x68\xa1\x8e\x67\x47\x8f\x29\x9e\x77\xd4\xd9\xa7\xc1\xde\x38\x0a\x8d\x53\x9e\x03\x60\x78\xd8\x9e\xbc\x10\x51\x4b\x24\x35\x55\xa8\x28\x03\x47\x28\xac\x9f\xc5\x0f\x0d\x65\xf2\x39\xd5\xf6\xd4\x58\x3e\x1f\x08\x94\x4f\xe8\xbe\xe0\xf3\xc1\xcb\x74\x5d\x13\x03\x45\x00\x74\xb1\xd1\x4c\x6c\xf9\x7c\x54\xc7\x22\x91\x1e\xd1\x4b\x6a\xe0\xfe\xc9\xe7\xa3\xca\x50\x48\x48\x5f\x3e\x1f\x6e\xcb\xe7\x43\x74\x29\x24\xd6\x88\xdf\x9e\x3f\x79\x9c\x37\xe9\xdb\xd7\x1f\xde\xbe\x79\x77\xdb\x92\x5b\x5b\x31\x9c\x73\xbd\x56\x31\xed\x75\x95\x62\x86\xc6\x85\xb6\x61\x35\x5a\x3a\xfb\x90\x03\xab\xd4\x9f\x25\x5c\xb1\x60\xfe\x1a\x23\xe6\x90\x90\x6b\x99\x47\x4e\x8e\xd1\xc4\x7c\x72\x72\x53\xca\x8d\x03\xfe\xbf\x85\xd7\x2f\xd9\xfd\xcc\xd1\xb7\x75\xa0\x8e\xf6\x1d\x05\x2a\x71\x0d\xa9\xe0\x58\xa7\x14\x5f\x17\xaf\x8f\xc6\x26\xe0\x0b\x0a\x68\x78\xcd\xd1\xca\x1a\x3b\xba\xaf\x10\x02\x38\x79\x12\xe2\xcb\x10\x4d\xcb\x52\x25\x87\xf2\x4d\xcf\x39\x78\xcf\xb1\x72\x84\xe0\xac\x20\x64\xad\x5d\xe6\x99\x9e\x73\xd9\xd1\xb0\x3c\x79\x45\xda\xfa\xca\xd6\x01\xc5\x41\xdd\xf2\x69\x78\x7d\xf8\x34\x64\x1e\x16\x9a\xb6\x2c\x04\x7d\x83\x86\xa7\x3b\xe2\xfc\xea\xfb\xec\xd6\xd6\x5f\x13\xa3\x8f\x17\xd6\x77\x1f\x3e\xbc\x7e\xf7\xea\x36\x9c\x1e\x5d\x5b\xe4\x5e\x78\x03\xe1\x52\xa3\x19\xb2\x4b\xc3\x71\x44\x8e\xb0\xd0\x9a\xbc\x29\xac\x2d\x7c\x63\x60\x37\xdf\x70\xf6\x53\x6e\x84\x88\xcf\xdc\xc9\xbc\x71\x22\xd7\x4e\x5b\xd9\x1f\xb2\x59\xcf\x1d\x57\x68\x97\x47\x73\xb7\x49\x63\xb4\xec\x54\xaf\x0f\xee\xa8\xad\xc6\x70\x13\x64\xff\x88\x5d\x46\xb6\x91\x03\xc9\x06\x71\x12\x0f\x52\x5d\x77\xd1\xdd\x07\xdd\x41\x5c\x46\x18\x47\xdd\xaa\x25\x34\xd4\x37\xac\x20\xea\xc8\xac\xaf\x03\xf5\x42\xf2\x8e\x11\x3b\xbc\x0b\xa1\x20\xef\x89\x24\xa5\xc7\xd9\x4d\xe8\x5a\xed\xc2\x50\xae\x8e\xde\x04\xee\x72\x25\x03\xc0\x38\x85\x44\x5d\xb9\xaa\x3e\x71\x6c\x6b\x9c\x5e\xdc\x4b\x57\xbc\x5c\xd7\x02\x9f\xb2\x84\x5a\xa8\x98\x71\x26\xc2\x80\x17\xe1\xea\xb6\x27\x5c\x84\x8a\x7f\x40\xd7\x33\x74\x85\x25\x22\xf9\xdd\xc0\x7b\x83\x05\xf5\xe1\x0a\x97\xcc\xa2\x0a\xc2\x73\xf0\x34\x11\xbb\x4b\xa4\x18\xd5\x56\xec\x00\xee\x43\x6a\x60\xd5\xf5\x7b\xb5\x5b\xcf\x55\x3f\x5c\x79\x1e\xfd\xbb\x4d\x21\xf6\x88\x42\x7e\xf3\x4c\x5a\x4e\xe4\x18\x93\x78\xe4\x63\x9e\x4a\x2d\x94\x57\x28\xa7\x05\xf2\x90\x5c\xd4\x8e\x1f\x38\x03\x3f\xf4\xb3\xc6\xc0\x5f\x24\x8e\xdb\xf5\x77\x3d\x5e\x7f\xd7\xfb\xda\x6d\xe3\xab\x5f\xbc\xd0\x76\xb4\x76\xbb\xeb\xfe\xa7\x8f\x11\xe8\xfb\xbf\x7d\xfd\xee\x39\x88\xab\xb0\xdf\x46\x2f\xae\x77\x0e\xa5\x4b\xfd\x71\xd6\xcc\x17\xf7\xa1\xd4\x7c\x64\xfd\x71\x80\x5f\xa5\x8b\xdf\x3c\xcd\xe7\x9f\xfe\xfa\x65\xfc\x5e\xb2\xb8\x57\xcf\x66\xcc\x22\x9c\xf7\x17\xb6\xa3\x80\xe8\x51\xe2\x80\x22\x09\x64\xc5\x5d\x96\x1e\x88\x0c\x86\x9c\x68\x69\x2b\x87\xcd\x69\x1d\x28\x46\x05\x95\xb1\xed\x16\x04\x44\xb8\x52\x27\x20\xbe\x99\x38\xd1\x4f\x78\x7a\x89\x93\x05\x88\x8c\x03\x05\x50\x74\x09\xb3\x93\x0d\xf0\x30\x11\x2d\x75\x2a\x06\xb4\xce\xeb\xd8\x04\x19\xdf\x02\x99\x33\x4e\xc3\x9b\x64\xdc\x9d\x48\x56\xc2\xd8\x13\x0d\x01\x4f\x3c\x71\x81\x5e\xc8\xb8\xc2\x30\x58\x56\x01\x3e\xc4\x38\xd0\x23\xeb\xed\x5c\x69\x4f\x4e\xb6\x04\x9e\x13\x3b\xb4\xd6\xcc\x40\xc9\xee\xd0\xee\x12\xc9\xae\x86\xc3\x39\x9a\xd4\xdf\x91\x93\xa9\x90\xaf\x2c\x5d\x60\xe4\xcc\xb1\x12\x2a\x8d\x06\x27\x83\xda\xb4\x0a\xf4\x81\xf7\xe5\x4e\xc8\x35\x3e\x56\xb6\x5c\x98\x41\x91\x1c\xc1\xe1\x6b\x49\x94\xbc\xc6\x10\x09\xbf\x0c\x39\xbc\x78\xe5\x0e\x52\x1d\x70\xce\x5a\xf1\x5f\x26\xd7\xf8\xc5\x71\x47\xaa\x2b\x7e\x71\x45\x8b\x11\xd1\x91\x1a\xf2\x08\xbe\xd3\x3c\x67\xac\xb8\xc5\x95\xac\x66\xa5\x84\xcf\x23\x72\x71\xf0\x15\xfe\xfb\x6a\x00\xf1\x5f\x41\x47\xfc\x17\xfb\x71\xb4\x8e\xf1\xca\x69\xa6\xd7\x84\x87\xcb\x7c\x37\x72\xbf\xda\xf1\xda\x0a\x04\xab\xe1\x87\xf3\xa7\x4e\x53\x6d\x43\x97\x63\x6f\x8e\x40\xfe\x7f\x18\x73\x87\x21\x6c\x0f\xbb\x51\x28\x02\xc0\xa2\x79\xfd\x72\x90\xda\x8b\x7b\x1b\x8a\x0c\x64\x56\xc8\x35\xb5\x21\x00\xa5\xe7\xae\xdd\xef\x3c\x57\xf4\x96\xc3\x75\xca\x9b\x39\xed\xb8\x42\x8d\x57\x30\x5b\x10\xa7\xa6\xda\x67\x61\x4e\x29\x3e\xe6\xdc\x44\x7d\x8f\x4e\x4d\xa0\x46\x0e\x84\xa6\x22\x57\x70\x67\x20\x66\x81\x97\x8c\xac\x40\xea\xe1\x4d\x75\xec\xb8\xa6\x21\x4d\x93\x91\x40\x62\x36\x5f\x87\x0d\x3a\xe9\x3c\xfa\x79\x7b\xb5\xe5\xa3\xd5\xf6\xe5\x9b\xd7\x1f\x5e\x7f\x7c\x73\x5b\xa1\xcf\x8e\x2d\xda\xf6\x55\xa8\x7d\x09\x47\x5b\x95\x9c\x87\x93\x61\xac\x84\x8d\xda\xd0\xf3\x70\x60\xd7\xd1\x77\x95\x55\x68\xeb\xb8\xc7\xa4\xa9\x48\x84\x65\x3a\x0d\x21\x59\xd5\xd7\x65\xf7\xb4\x15\x88\x2d\x32\x9a\x2d\x1a\xf5\xf5\x30\x97\x3c\x6b\x2b\xc5\xec\xaa\x99\x95\x90\x1e\xa3\x0a\x2b\x51\x0f\x5b\x5f\xdd\xe0\xf0\xc9\x61\x77\x78\xfd\xda\xe7\x62\x47\x47\xef\x57\x61\x50\x0b\x3b\x7a\x1f\x2b\xea\x48\x66\x42\x6e\x8d\xb1\x7c\x41\x34\xc7\xbe\x4e\x4f\xcc\xd1\x86\x1c\x1f\x36\xe2\xe8\xfd\xda\x14\x15\xcc\x86\x8e\xfe\x1f\xa5\x95\x5d\x0c\x5f\x60\xf3\xc8\x35\x62\x13\x55\xb0\x1e\xb5\xb3\x8c\x3d\x6d\x15\x5a\x2e\x72\xce\xd5\x95\x7a\x18\x9d\xab\xd7\xaf\xfd\xbe\x3d\x91\xe3\x31\x24\x79\xff\xcd\x6f\xbe\xe7\x20\x22\x1c\xcf\xc6\x08\x91\x97\xe3\xd4\x12\x76\x83\xcd\xab\x10\xa1\x21\xdb\x44\xb4\x05\x1a\x97\x19\x9e\x13\xd8\x1b\xbc\x04\x21\x73\xc3\x2f\x96\xbe\x57\xd9\x8b\x46\x6b\x0f\xee\xb2\x4c\xf6\xc3\x90\xf6\x26\xcd\x3e\xd9\xd1\x82\x17\x7c\x5e\x9e\x9d\x89\x63\x13\x5d\xfb\x39\x74\x49\xe6\x85\xdd\xf0\x3f\x22\x8a\x61\x6e\xdc\x2d\xec\x2e\xc2\x90\x79\x34\x0a\x49\xc2\x76\xc7\x48\xbd\xe9\x2e\xc8\x20\x6c\x19\x17\x1d\xbe\x57\x19\xe6\xa3\xb0\xa6\xbc\xf2\x83\x01\x7d\x2a\x52\x59\xa1\x4e\xe9\x0b\x2f\x48\x4f\x48\x57\x22\x89\xf1\x55\xe5\x42\x7f\x2f\xee\x29\x7b\x33\xe5\xbd\xae\x25\xa9\x70\x2d\xd2\xe2\x29\x30\x20\xae\x94\xa7\xd0\x19\xc0\x50\x88\xb4\xa3\xc8\xfd\x07\x91\x03\xa9\xb6\x78\xc5\x63\x04\x5e\x5b\xa7\x2c\x56\x7d\x55\xc0\xc9\x7d\x9d\xb3\x05\x3b\x9e\x4d\xe4\xd5\x95\x36\x82\x51\x63\x49\x86\xbb\x49\xbf\xab\x02\x18\xcb\x08\x41\xdb\xf5\x24\x2f\x5f\xe7\x79\xf4\xf1\xc5\x7d\x71\xf4\x9a\xc4\xc2\x7d\x1d\x1c\x3d\x9c\x0f\x67\xf8\x3e\x71\x76\xde\x72\x86\xbf\x46\x2f\x5c\x4d\xb4\x88\x38\xa9\x5b\xf0\x28\x56\x5a\x81\xd1\x71\xf5\x58\x45\x87\xab\xa0\xeb\x40\xc7\xa2\x11\xc2\xb3\xa4\x3c\xeb\x65\xec\x5b\x7c\xa4\xd2\xe7\x23\xfa\xd2\x56\x46\x76\xc7\x53\xd5\x1b\xe1\x3e\x57\x1f\x6f\xd3\xee\xcb\x47\xb4\xfb\xfe\xc3\x97\x3f\x7f\xfd\xf5\x9b\x67\xb3\x36\x23\xa4\xa7\x2f\xa3\x5a\x14\x65\x40\x18\x1f\x7b\x14\xbe\x8e\x44\xea\xdb\xa8\x0f\xf7\x23\xc9\xfe\x18\x2d\x7a\x9f\xc6\x0c\xdd\x44\x09\x66\x3e\xa8\x29\x79\x8b\x92\x28\x25\x5b\x98\x4c\x1e\x1d\xce\x38\x38\x0f\x80\xc6\xce\xf0\x86\x94\x5e\x42\xd0\xca\xd9\xb5\xce\xd1\xb4\x0e\x28\x43\xdc\x69\xa5\xb8\x2c\xd9\x07\x19\x68\xb9\xf8\xf9\x4a\xb0\x90\xbb\x79\xbf\xab\xc2\xca\xf6\x23\x7d\x25\x17\x86\x12\x1d\x9e\x4d\xac\xb2\xaf\xc2\xd0\x26\xcb\x3f\xd8\xe1\x18\x4d\x8a\xd8\x24\xc4\xab\xe6\xaa\x70\xa5\x84\x3e\x92\x11\xc1\xb7\x49\x6d\xac\xe3\x1d\x91\xca\x7e\xa0\xd1\xa5\x4f\x21\xee\xfd\x92\xe9\x7b\xfd\x91\x82\x23\x3b\x8b\x46\xe7\x40\xe6\x37\x3b\x47\xf1\x43\x5b\x09\x2d\xf6\x92\x1d\xaa\x1e\x84\x36\xd4\xda\x5b\x19\xfb\x67\x14\x1e\x1e\x8e\x8c\x83\x43\xfa\xa5\x36\xd0\xb3\x77\x83\x64\x89\xb3\x64\xc1\xac\x3b\xeb\x5c\x19\x7a\x3b\x14\xff\x77\xc3\x6d\xaa\xe2\xa8\x86\xbd\xae\x38\xec\xec\x30\xa7\x1e\x6d\xde\x26\x87\x9f\x3d\x4e\xdf\xfa\xdd\x9b\xb7\x6f\x5f\x7f\xfd\xfe\xf9\x08\xc5\xda\xdf\x75\xf0\xe6\x08\xe5\x3f\xab\x8f\x8d\x32\x9a\xa6\x5c\xac\xf3\xa6\x08\xae\xe2\xb3\x5b\xdf\x8e\x47\x5f\xdc\x47\x3d\x30\x78\xc9\x31\x43\xce\xa9\xb9\x64\xe7\xe3\xa5\x54\xc4\x83\x9f\xeb\xfe\x76\x3c\x7c\xbb\xdf\xaf\x1e\x27\xde\x7d\xff\xd5\x9b\x57\x2f\xdf\xbe\x7b\xff\x5c\x82\x7c\x04\xc9\xe8\x39\xb9\x5f\x5c\xf4\x4c\x59\x62\xb5\x55\x8b\xfd\x22\xb7\xce\x05\xaa\xd6\xbe\xfc\xd3\xc7\xf1\x7d\x6f\x7a\xff\xc1\x33\xd9\xd4\xfe\xef\x9d\xa8\x55\x4d\xbc\x7e\xd4\xc4\x87\xd7\x5f\xbd\xf9\xf8\xed\xeb\x0f\xaf\x6f\x47\xa0\x64\x36\x53\xda\x33\x0f\x76\xd4\x0f\x76\xa4\x07\x3b\xfa\x14\x9b\xd3\xaf\xec\xa8\x5f\xd9\x51\x5c\xd9\x91\x5f\xd9\x51\xbf\xb2\x23\x9c\x41\xb2\xa3\xb0\x92\x54\x20\x73\x47\xc7\xb3\x54\x62\x1c\x07\x7c\x80\xb8\x2f\xbb\xf8\x71\x4c\x65\x35\xc7\xab\xf5\x7a\xaa\x7a\x23\x54\x3b\x2f\x8e\x34\xb9\xa7\x18\x77\xa8\x37\x90\x26\xb6\x31\xc9\xc1\xe7\xf3\xe0\xf3\x45\xd1\xab\xb3\x21\x08\x07\x8f\xda\x26\x01\x55\xe7\x10\xc6\x53\xf0\xf9\x5f\xb9\xc0\x9c\x56\x3f\xab\xe0\x88\x93\xe0\x68\xc1\x86\x67\x17\x9f\xe7\x83\xcf\xf7\x83\xcf\x83\x09\x23\xa1\xea\x38\xf8\x7c\x1e\x7c\x5e\x17\x9f\x87\x8f\x00\xbd\xb8\x2f\x16\xab\xa9\x17\x16\x3e\xcb\x18\x38\x01\xdb\xa9\xef\xc1\x38\x54\xbb\x05\x12\x54\xd3\x4c\x83\x13\xd6\x8e\x2b\xf7\x92\x5e\x71\xec\x4c\x50\x36\xa3\xb1\xa5\xeb\x5d\xd5\x11\x9a\x08\x28\xd5\xd4\xb3\x11\xaf\x06\x2c\xed\xec\xec\xbb\x6b\x56\x19\x8e\x71\x36\x96\x9a\xdc\x7b\xce\xe5\x55\x6a\x60\x07\x5e\x5b\x5f\xc9\xa8\xf5\x8d\xd8\xb2\x13\x47\xab\x84\x8f\xaa\xf0\x62\xb7\x22\x9f\x8b\xb2\x7e\xfe\x88\xb2\xbe\x7e\xf9\xea\xc3\x73\x32\xde\x91\xef\x87\xcf\x1c\x72\xcd\x25\xd6\xe5\x52\x3f\xdd\x6c\xe4\x67\xfd\x31\xb6\x7d\xfd\xd5\x73\xa7\x2e\xc1\x9d\x09\x66\x94\x75\xde\x35\x50\x4e\x91\x70\x4c\x05\x22\x1d\x7a\x1c\x1b\x62\x0a\x89\x6d\xf1\xe3\x3c\x92\x13\x81\x92\xeb\x16\x8c\x55\x05\xea\x33\x70\xda\x46\xae\x84\xb6\x55\x33\x0a\xa4\x85\xe3\xa1\xb6\xf4\xf5\x70\xa7\x8e\xa1\x1d\xb6\x24\xcd\x21\xb4\x5b\x70\x5d\x5b\xb5\x58\xbf\xa3\x0b\x2b\x37\xdc\x58\xaf\x8a\xc5\x1d\xe1\xc0\xd3\x95\x5c\xb0\xf3\x6e\xeb\x3c\x61\x6b\x06\x3b\x99\x95\x88\x89\x0c\xe8\x3a\x0d\xaf\x2d\x57\x0f\x38\x6d\xee\x0e\x47\xda\xc0\x51\xdb\xeb\xbc\xce\xe2\xf6\xb5\xd5\x43\x7c\xa8\xd5\x76\x24\xdf\xa8\x75\x8a\x02\x0f\xc4\x2e\x40\x02\x8c\xb5\x6b\xd5\x5e\x51\xbb\x16\x52\xc5\xaf\xe3\xd9\x76\xaf\x6e\x88\x74\xa8\x5a\xb0\x23\xd9\x3a\xd5\x57\x71\xd0\x26\xbc\xa9\xaf\x7d\xbe\x3d\x7d\x8f\x75\xfb\xdf\xbc\xfd\xee\xe3\xd7\x6f\xde\x3d\x7b\xca\x62\x8d\x99\x9c\xa9\xbb\x5c\xa2\xd3\x39\x84\x2f\x22\xb4\x3c\x6e\x3b\x21\xcc\xb3\x1e\xc0\x39\xf9\x9c\x8a\x07\x86\xc8\x8b\x7b\x9c\x54\xde\xcf\x14\xb4\x52\x2a\x76\xb9\x99\x3f\xab\xfa\xf6\x58\xb3\xfe\xed\xaf\xde\x7f\xfc\x0e\xa7\x0e\x3e\xe3\xd9\x25\xb0\xa3\x9d\x85\xfc\x92\x9d\x36\x1c\xa4\xd9\xbd\xe3\x78\xc1\x15\x35\x81\x93\xbc\x6a\x6c\x71\x24\x30\x8d\x7d\x15\x2c\x1b\xd2\x25\x23\x3d\x35\x81\xa8\x56\xb0\x44\x15\x96\x94\xc4\x21\x4b\x4a\xa2\xa1\x67\x1e\xb9\x23\x23\x37\x23\x6e\x72\x2c\x97\x74\xc1\x64\xa4\xcf\x95\xeb\x0c\xc1\x72\xb2\xce\x5e\x2d\x10\x55\x85\xe5\xda\xaa\x5d\xe6\x40\xc6\x21\xee\x4b\xf6\xa1\xda\xba\x11\xf6\xaa\x1d\x39\x4e\xe0\x28\x19\xa3\xb7\x31\x12\x07\xd5\x0c\x1a\x5b\x91\x58\xb2\x9f\x87\xe8\xc5\xfd\xb6\x86\xe9\x67\x8f\xf5\xda\x38\x0d\xed\x7b\xc7\xcf\x56\x00\xa2\x9d\x1d\x67\x2f\x09\xfe\x00\x86\xc3\x61\xba\xb1\x72\xe9\xd8\xbe\x0a\xda\x0f\x34\x56\x8b\x75\x1c\x87\x7d\x3b\x0e\x93\xab\x2e\x43\x21\x01\x1c\x13\x28\x2c\x1c\xc3\x79\x3d\xd2\x5e\xe9\x5c\x83\x8c\xe3\xc4\x18\xc7\x3e\x76\x88\x74\x4b\xb1\xa0\x7d\xe5\xf9\x22\x35\x3a\xf2\x94\xb9\x1f\x67\x3c\xbb\xdf\xc5\xca\x02\xb1\x12\x95\x93\xf6\x01\x79\x1d\xaf\x8f\xa3\x73\x3b\x0a\xc5\xdd\x91\xed\x02\x07\xaa\xa4\xae\x94\x35\xc8\x9b\xd3\x8d\x10\x30\x0e\x43\x51\x91\x4e\x66\xec\xb8\x16\xa3\xe8\xc5\xf0\x13\xfa\xa9\x20\x87\x6b\xb6\xc7\xea\x8a\xdb\x52\x5f\xba\x19\x8e\x82\x76\xcf\xa5\xbe\x2c\xde\xc1\xc8\x1a\x3f\xb9\xe4\x8d\xde\xcf\x3a\x6c\x45\xa6\xfb\x22\xa3\x54\x82\x9f\x69\x92\x41\x44\x82\xa7\x76\xb7\x96\xca\xf0\x5f\x1f\x05\xb8\xeb\x5a\x14\x59\x62\x43\x20\x39\x61\x89\x2a\xfd\x6c\x64\x97\x9a\x92\xdb\xf3\xfe\x58\x6d\xfe\xf2\xd5\x77\xdf\xde\xe6\xc7\x86\xe0\xde\xc8\x73\x86\x6d\x08\x85\xa1\x31\xce\x92\xbc\x5d\xef\xdc\x6e\xe9\xb1\xfa\xf5\xeb\xdb\xfe\x57\x0a\x3d\x54\xf2\x45\x9d\x91\x44\x1b\x19\xae\x5c\x9a\x08\x1f\xc9\xe1\x15\x0e\x0f\x38\xfe\x5f\x0c\xce\x53\x81\xec\xb7\xd6\xc2\x1d\x27\x86\xa4\x6a\x13\xba\x3a\x4f\x11\x23\x53\x87\xeb\x96\x56\x82\xde\x5e\xe3\x58\xdb\xa4\x8d\x76\xcd\x55\x4a\x7b\x71\x76\xa0\x14\x24\xea\x3c\x5c\x94\xe3\xea\xcd\x75\xeb\x44\xb8\xfa\xba\xc7\x1a\xda\x6f\x5e\x7e\x78\xf9\xd5\x87\x97\xdf\xdc\x8e\xed\x2a\xd0\xd2\x2f\xc6\xfd\x1c\x85\x3a\x4a\x20\x2b\x71\x6d\x44\x33\xb3\x29\x2a\xcd\x8d\xd7\x61\x78\x9d\xa0\x35\x1c\x99\x7b\x5d\x11\xc8\xc8\xc8\xda\x0e\x33\x72\x71\x9f\x12\xbe\x21\x98\x20\x28\xfa\x53\x52\xcc\x1e\x97\x7e\x8e\x71\xc3\x51\xab\x3a\xfe\x58\xb7\xbb\xce\x69\x7d\xf5\xfa\xdd\xf3\xa0\xb2\xc8\x38\x3a\xc1\xd9\xa0\xd6\x16\x0e\x48\xf3\x8e\x7c\x48\xd9\xd7\x11\x8f\x29\xcb\xd1\x32\x8d\x76\x4f\x04\xfd\xc2\x99\x35\xb5\xaf\x00\xee\x82\x2f\x25\x03\x3a\xe1\xb0\x8f\xaa\x2f\xa1\x3c\x1d\x25\x37\x42\xab\x1f\x9e\x38\xba\x1f\x58\xc9\x15\xf5\x99\xf1\xee\x08\xe6\x67\x1c\x02\x62\x2e\xd0\x54\x19\xb4\x1b\x86\xf7\x8e\xfe\xdd\xfe\xee\xc7\x5a\xb6\x57\xaf\xbf\x7c\xf3\xf6\xed\xed\x5c\x16\xb5\xa5\xda\xe6\x6e\xed\x54\x9f\x33\xa4\x9d\x90\xd3\xa1\xb7\x13\xb2\x0b\x67\x3b\x1d\xb9\x0c\x4f\xb0\x81\x21\x90\x80\x75\x5f\x05\xe8\x57\xa4\x9d\x04\xf6\xcb\x6c\x27\xa9\x5d\xba\x5e\x56\xf8\x67\x50\x3b\xa9\xe5\xa6\xae\xed\x54\x5b\x05\xd2\x53\xd5\x7e\x61\x88\x7d\x8c\xb1\xce\x28\x61\xb2\x23\x83\x55\xc8\xba\x45\x56\x50\x28\xdb\x89\xc4\x21\x50\xd9\xd9\x6f\x65\xb7\xac\xcf\x7e\xac\x93\x7a\xff\xee\xfb\xb9\x7c\x71\x41\xb7\x71\x36\x1c\x5e\x4a\xbc\x21\x33\x36\xf9\xb8\x90\xb0\x1d\x27\xd9\xaa\x9d\x23\xf5\xe2\xb7\xe2\xab\xaa\xf1\x27\x94\x0a\x5f\xbf\xfc\xf8\xea\xbb\xb7\xcf\x69\x15\xb8\xc4\x5a\x52\xda\x51\x28\x10\xce\xa3\x2f\x5d\x9c\xd8\xa8\xed\x93\xe0\x50\xb9\x18\xff\x35\x63\x1f\xb2\x72\x00\x03\x5a\xac\x5b\xc5\x50\x91\x51\x7f\x88\x2d\x65\xe4\xb0\x4f\x31\xbc\xac\x7b\xfd\x35\xac\x64\x6a\x6b\x89\x13\x0d\xa2\x45\xea\x0c\x1c\xef\xb1\xec\x5a\x3e\xfa\x6e\x82\x2b\x0e\x92\xac\xdf\xc5\x3b\x9e\xe3\x41\x77\x99\x63\xa2\x9b\x9d\x15\xd1\xcb\x2f\xee\x75\x29\x97\x74\xaf\xc2\x48\x69\x6a\x2b\x84\x57\x53\xd0\x4e\x51\x2e\x32\x4d\x94\x5c\x2f\x8e\x43\x2e\x52\xbc\x79\x0e\xfc\x1e\x70\xbf\x1a\x08\xcd\xa9\xf7\xd6\x9e\x74\xd4\xbf\xaf\x93\x46\x93\x5a\x04\x22\xe0\x0c\xcf\xe3\x0c\x70\x87\x51\x92\xe4\xc0\x27\xd0\x7c\x8c\xb6\x34\x1f\x00\xcf\xa4\x53\x11\x37\x17\x7a\xa8\xeb\xc9\xe0\xa2\xff\x69\x50\x6e\x4f\xe5\x4d\x85\xc0\xf7\xe5\xf4\xc9\x36\xd8\x37\x1c\x2e\x20\x7e\x31\x8a\x6d\xa5\xf9\x8e\x33\x73\x6c\x35\x91\xc6\xbe\x31\x47\x3d\x87\xd4\xdc\xf7\x91\x86\x97\x70\x46\xd7\xf5\x2d\x9c\x6b\xca\x71\xf6\xae\x1b\x22\x66\xaa\xd6\xae\x78\xeb\x66\x86\xa7\xea\xf9\x63\x95\xc0\xfb\x77\xaf\xff\xee\xbb\x97\x1f\x9e\x3b\x8c\x06\x0a\x29\xa3\x33\x4b\x61\x54\x1d\x1b\x92\x9c\x53\xbf\x90\x58\xdf\x96\x66\xc8\xf2\xac\xe4\x97\xb0\x9a\x73\x64\x45\xb0\x0d\x0a\xa4\xce\x2b\x0e\x90\xb5\x6f\xd0\x34\x53\xc8\x76\x3c\x51\x20\xb7\x78\xf9\xa0\x33\x51\xf4\x0b\xa9\x9e\xeb\x97\x4b\x3f\x8f\xee\xf8\xd3\x86\x6d\x25\xf7\xb1\xf3\x36\x56\x6e\xe9\x4b\x50\x5f\x8f\xf1\xa0\x17\xf7\x45\xa0\x55\x43\xbd\xa1\xa9\x5b\x0e\xbb\x53\x8f\xed\xf8\xfd\xf6\x48\x3c\x56\x57\xbc\x7f\xf7\xfa\x17\x2f\xdf\xde\x8e\xd2\x47\x3e\x49\xb1\x4d\x93\xf0\x59\x63\xf9\x97\xf5\xad\x76\xd7\xf5\x5d\xc7\x23\x2f\xee\x25\xac\x85\xf1\x99\x86\x5f\x0a\xf3\x6e\xeb\x60\x0b\xaa\x21\xa3\x4d\x0c\xeb\x75\x9c\x25\xec\x12\xc6\x2f\xee\x89\x7b\xb4\x0e\xff\x73\x62\xda\x0a\x4d\x89\xe9\x3e\xbc\x37\xc1\x41\x13\xf0\x9b\x5a\xae\x2c\x0a\xeb\x76\x57\x1c\xf9\x36\xe0\x55\x55\xe8\x38\x9a\x85\xed\xc0\x4d\x61\x77\xa9\x25\xf9\x1b\x18\xb1\x86\x9e\x5d\x74\xc7\xf9\x7c\x5c\x78\x4c\x9a\x15\x5a\xee\xd9\x5c\x63\x25\x7d\xe9\x7d\x02\xc3\x31\xce\x19\x26\xb0\x76\x84\x12\x2d\xd3\x39\xfc\xe9\x60\xd5\xf7\x75\x6a\x21\x85\x36\xb8\xc7\x92\x64\x13\xe7\x15\xab\x58\x48\x76\x0c\x69\x38\xe3\x19\x27\x76\x08\xb2\xb9\x3d\x27\xb9\x3c\xd6\xe9\x00\x7b\x1f\x34\x79\x5b\xb2\x42\x9a\x12\xb1\x4d\xa0\x37\xe7\x0d\xf9\x61\x31\x1b\x38\xce\xb0\x66\xe3\x78\xe4\xc5\x3d\xd2\x1c\x80\xca\x98\x72\x51\x19\x89\x17\x95\x99\xe2\x4f\x57\xd9\x1c\x06\x7a\xde\x86\xe9\x6f\xa9\xac\x1e\x03\x95\x65\x5f\x35\xd4\x1b\x45\x65\x43\xa5\x15\x95\x1d\xbf\xbf\xb8\xe7\x95\x90\xd2\xcf\x42\x0c\xe3\x1a\xb2\xd6\xca\xa0\x3b\xa2\x5c\xd9\x95\x88\x35\xf6\x55\x70\x82\x47\x24\x84\x24\x19\xd7\x13\x17\x60\x14\x22\x99\x10\x90\x84\xc6\xbe\x72\x5a\xd2\x68\x5c\x92\xb1\x74\x9d\x0c\x8b\x8c\x17\x1c\xdb\x61\x81\x21\x6a\x10\x18\x74\x20\xa5\x20\x29\x2d\xdf\x65\x30\x7d\xe8\x71\xd5\x75\x97\x40\x34\xb1\xe2\x68\x59\xdc\x32\xa4\x0e\x27\x59\x9e\x5e\xa2\xeb\x28\xc7\xea\xd9\xbe\x0a\x25\xc7\xf9\x91\x15\x14\x87\x9e\x11\xac\x00\x63\x59\x45\x0d\xae\xe1\xc6\x50\xb0\x0c\x95\xbd\xae\x09\x17\xbe\xbc\x4b\x18\xd1\xac\x45\x0e\xb8\x21\xc1\x4f\x81\x0a\x29\xe9\xce\x8e\x2b\x4c\x18\xa1\x3e\x89\x15\xfb\x07\x22\x49\x79\x8a\xb4\xb1\xc2\xdc\x77\x26\x43\xa2\x64\xa8\xea\x3a\xcd\x65\x6d\xcc\xbd\xa4\xc6\x8c\x44\x46\x9e\x81\xf8\x9a\x6c\xc3\x06\xc2\x0c\x60\xde\x12\x1c\xbf\xcd\x0e\x3f\x6f\xea\x6a\x67\x16\xb9\xd4\x7c\xdc\x26\xc2\xc7\xea\x9f\xeb\xb1\x58\xcf\x3a\xee\x15\x86\x75\x19\x7b\x60\x40\x4a\x90\x29\x14\x2b\x33\x56\xb0\x03\x0c\xc5\xe2\x81\x38\x7a\x1e\x63\x77\xa1\x56\xfb\x23\x0e\xbd\x94\x43\x07\x61\x25\xb8\x95\x60\x83\x30\x8f\x13\xed\xb8\xa4\xb6\x15\x68\xce\x8a\x34\xa3\x27\x72\x5b\x51\x21\x04\x33\x03\xb2\xfe\x3a\x4e\x66\x3d\xd1\x61\x7c\x3f\x85\x22\xe1\x3a\xce\xfd\x8e\x23\xcf\xc5\x58\xa7\xeb\xdd\x9d\x28\x18\xc7\x53\x9c\x8a\xd4\xb2\x90\xbe\xf8\xca\x69\x5c\x68\x0c\x81\x7f\x55\x80\xd3\x0f\xbc\x07\x04\xba\xcb\x21\xb3\x48\xfb\x44\xd1\x27\x57\x23\xbc\x23\xc5\x12\x52\xfb\x17\x01\x4f\xce\x95\x04\x47\xa2\xe3\x04\xa6\x45\x66\x4b\x8c\x53\x53\x24\x23\xd2\xf0\x69\x85\x93\x0f\xcd\x8b\x05\xc1\x51\xce\x65\x00\x9f\xdf\x1b\xdc\x80\x78\xc7\x35\x7a\x83\x29\x7c\x94\x98\x03\xad\xfe\x0a\x12\xa1\xee\x36\x1d\x27\xac\x87\x23\xd7\x68\x15\x96\x8b\x4d\x77\x9f\x01\xb5\x51\x0d\xfc\xc8\xbb\x31\x6c\x9d\x39\xa6\xbc\xe3\x5a\xbb\x58\x0d\xf4\xd0\x95\xee\xc1\x74\xd6\x9b\xc9\x81\x3a\x93\x02\xd1\x82\x38\xbb\xac\x07\x7e\xaf\xd6\x41\xcc\x5a\xa0\x48\xe6\xd1\xcb\x9b\x64\xf4\xea\xb1\x82\xef\x07\xdf\x93\x82\xee\xff\xfd\x63\x7e\xee\xe1\x93\x6c\x1a\x67\xe3\x58\x7e\x70\xc9\x7e\x36\x1f\xdb\xf5\xce\xed\xee\x3f\x56\x70\xfd\xe0\x79\x79\xf8\x1f\xa5\xfb\x1d\x3d\x2e\x1a\xee\x63\x83\x6d\xd0\x0a\x07\x90\x6f\xd7\x5b\xb7\xfb\xff\x58\x09\xf6\x83\x95\xee\xf0\xe7\x6f\x5f\x3f\x73\xe6\xf4\x3f\xc2\x47\x40\x81\x4e\xce\x7c\x21\x1b\x8a\x13\x12\xe1\x2b\x12\x4c\x48\x62\x8a\x5f\xd9\xe5\x42\xce\xba\xe1\xe0\x9b\x74\x3b\x07\xe9\xf6\xe9\xd5\xdb\x5f\xf9\x58\x59\xf5\x83\xe7\x9d\xba\xff\x31\x3e\x70\xd4\x16\x91\x4e\xfb\x2a\x40\x3a\xe7\x46\x51\x3c\x46\xaa\xff\x43\x67\xd6\x42\x75\x39\xfc\x20\x9d\x62\x87\x16\xca\x71\x36\x60\x3d\x23\x1d\x87\x06\x92\x97\xe0\xec\x78\xab\x17\x2f\xbc\xa3\xe8\xba\xc2\xa0\xe3\xf0\xb6\x23\x47\x16\xb3\xd1\xc8\xbb\x6f\x38\xe7\xd8\xc5\xf7\x55\xc8\xde\xb8\x80\x7c\xb0\xc2\x1d\x8e\xb2\x1f\xbb\x6a\x7a\x5f\x18\x3f\x93\x11\x2c\x49\x70\x4b\x29\xc1\x27\x8b\xf9\x71\x75\xbe\xc4\x74\x3c\xdc\x07\xe4\x72\x8a\x61\x7b\x16\xad\xc1\x27\x40\x7a\x11\xdd\xa1\x64\xcc\x51\xb8\x6f\x7d\xfb\xed\x09\x7a\xac\x55\xfa\xc1\xf7\xfa\xb0\xfc\x63\xcc\x11\x97\x4c\x13\xa4\xfb\x2a\x68\x2f\x78\xd3\x28\x7c\x99\x94\xd7\x28\x09\x96\xd4\x58\x49\xdf\x53\xc6\xae\xb4\x0a\x2b\x21\x7d\x4a\x47\xd8\x01\x1e\x46\x7e\x99\x7a\xdd\x58\xef\x50\x33\x86\xb4\x04\x2d\xdc\x72\xb7\xf5\xb0\xf3\x91\x85\xdb\x7b\x5f\x35\xdb\xe8\x3b\x50\xaf\x8d\xda\x24\x90\x94\x7e\xac\x6e\x38\xaf\x4c\x4a\x78\xfd\xda\xe7\x17\xd0\x9c\xa3\x8d\x55\xd0\xde\x20\xd9\x55\xf3\x38\x3a\x36\x3b\xcf\x24\xf4\x3e\x91\xcf\x9c\x52\x12\x87\x79\xd1\x71\x22\xff\xfa\xb0\xe1\x47\xef\xc7\x38\x7a\xbf\xfc\xc1\xab\xea\x55\xf2\x8c\x86\x9b\xee\xba\x1e\x77\x5e\xfe\x99\x64\xe3\xa8\xdb\x32\x91\x2b\xb1\x0a\x0d\xcd\xda\x38\xce\xb0\xad\x87\xd1\xb5\x7a\xfd\xda\xeb\xdb\xb4\xf1\x58\x0f\xf8\x83\x0f\xcf\xb9\x4f\xff\x63\xd0\x85\x32\x35\x0a\xe1\x7d\x15\x8e\xc0\x4c\x4a\xea\x10\xca\x29\x83\x27\x52\x6c\x8c\x12\x9e\xe1\xbe\xca\x87\x3f\xeb\x60\x9c\xf5\xb9\x6e\x45\xad\xf8\x44\x08\xb0\xaf\xd7\x53\xf9\x0e\x35\x23\xe7\x96\xc3\x6f\xa1\x86\xd3\x6c\x3d\x6c\xb5\xf5\x22\xee\xca\x74\xd5\x6c\xda\xf7\x22\x09\x02\x28\xa8\x46\xeb\x16\xba\x61\x43\xa0\xda\x21\xaf\x5f\x8e\x3e\x17\x50\xb0\xd5\x7b\x14\x40\x7b\xb5\xc7\x39\x72\xd4\xd5\x24\x96\xa0\x53\x90\xb6\xfe\x42\x26\xad\xba\x85\xc3\x27\xeb\xad\x55\x88\x68\x6b\x33\xe9\x47\x3f\xb2\x2a\x2c\x79\x6e\xb9\xab\xd5\x2f\x7d\xa5\x12\x44\xab\x37\x67\xf3\xb1\xde\xf3\x07\xcf\x1c\x92\x45\x01\x11\x4f\xe9\x22\xa2\x67\x65\xdd\x44\x3a\x82\x4b\x37\xbb\x26\x01\x27\xb2\x12\x18\x39\xcf\xa3\xe7\x25\x9d\xd7\xd1\x59\x2e\x86\x1f\x0e\x4f\xf9\x12\xa7\xee\x5d\x81\xc2\x2f\x44\xdd\x37\x5d\x90\xbc\x6a\xbf\xdd\xd9\xc7\xba\xce\xbf\xf8\x3e\xa5\xdf\x1f\xdb\xb9\x73\x77\xbf\x73\xee\x5c\xfb\xff\xd6\xb9\x73\xf7\x38\x4e\xb3\x6f\x45\xfe\x27\xb8\x96\x69\x3b\x19\xad\x53\x99\x9d\x91\x95\xe2\x54\x9b\xa6\x09\x32\xc7\x41\x5f\x77\x62\x1a\xfb\x2a\xc4\xfa\x96\x13\x5c\xef\x62\xb4\x93\x64\x4e\x0f\xba\x43\xd4\xaa\x31\xb7\x93\x9a\x6c\x87\xe2\x54\xe0\x0d\x53\x85\x86\x00\x4b\xe8\xc3\x10\x0f\x4b\x1d\x6a\x80\x13\x79\xae\x5b\x64\x8c\x7c\x8c\x27\x12\xda\xd6\xc9\x74\xe7\xb8\x95\xa6\xbb\xa8\xe8\xb1\xe6\xf8\x47\xcf\x43\xdc\x3f\xe4\x6c\xb8\x7b\x78\x1b\x9a\xe4\xd9\xc4\xb7\x1a\x03\x4a\x8a\xb3\x45\x6e\xd7\x3b\xb7\xfb\xf9\x58\xd5\xfb\xa3\xe7\xb1\xec\x1f\xd6\x4f\x42\xd7\xf4\x4c\x9d\x72\x83\xf3\x95\x89\x9d\x8d\x6d\xbb\xde\xba\xdd\xd1\xc7\x6a\xe1\x1f\xfd\x03\x40\xeb\x1f\xd4\xdb\xe5\x0d\xea\x24\x17\xb2\xb4\x73\x0c\xdf\x70\x92\x45\x10\x6f\x8a\xa8\xc7\xb4\x33\x07\x5f\xc8\xc9\x36\xab\xbd\x39\x6b\xb7\x61\xd9\x3e\xbd\x7a\xfb\x73\x1e\xab\x46\x7f\xf4\xbd\xe0\xe7\x0f\xfa\x18\xf6\xda\x19\xba\xed\xab\x50\x12\x76\x54\xc1\x74\x32\xd2\x4a\x8f\xc3\x46\x54\x18\x4e\x00\xdd\xa4\xef\xba\x90\x5f\x6f\x50\xfc\x26\xd3\x2c\x69\x15\x0f\xc3\xa1\xa2\x5e\x37\x20\xf6\x6e\x08\x87\x21\x0f\xc8\xf6\x77\xe4\xe6\xeb\x61\xa7\x58\x7a\x63\x1b\xb4\x6a\xb6\x24\x9c\x94\x81\x14\x9c\x68\xd4\x8a\xb3\x55\x37\x9c\x7c\xa2\x63\xf5\xfa\xb5\xcf\x2b\x18\x01\x6d\xac\x82\x10\x4e\xce\x40\xf3\xb5\xca\x29\x86\xac\x03\xb3\x93\xc6\x44\x76\xe7\xe4\xb1\x8f\xbe\x0a\x6d\xc8\xf1\x61\x23\x8e\xde\x2f\xbf\x94\x80\x1f\x30\x1d\xfd\x5f\x25\x6c\xe0\xeb\x90\x2c\xb3\xf5\x82\xd3\x72\x04\x22\xcb\xa3\x76\x8b\x81\xc0\x33\x5a\x96\x73\xdc\xca\xea\xca\x1d\x1e\x46\xe7\xb0\x9d\x1f\xfd\xbe\x4d\x06\x8f\xf5\xcc\x3f\xfe\x1e\x36\xf1\x07\x9c\xa1\x77\x0f\xb3\x7a\x89\xbc\x3a\x74\xe3\x05\xd8\x1d\x3c\xe3\x7a\xe7\x76\x3f\x1f\x6b\x81\x7f\xfc\x3d\x6c\xe2\x0f\xe9\x27\x54\x17\x25\xdb\x8e\xf0\xcd\x91\xb6\x4e\xf5\xac\x29\xdb\xf5\xce\xed\x7e\x3e\xd6\x92\xfe\xf8\x1f\xc2\x25\xfe\x90\xce\x2e\x0a\xf9\x24\xc2\x9a\x6e\xb5\x5f\x2c\x11\x16\x14\x52\x22\xac\xf4\x43\x84\xad\x8d\xa3\x44\x58\x4f\xda\xae\x6f\xde\xfe\x98\xc7\xda\xb6\x1f\x7f\x3f\x8f\xf8\x43\x3e\x05\x30\x04\x92\x10\x0a\x25\x09\x01\x06\x96\x24\x04\xa9\xae\x24\xa1\xde\x0f\x49\xa8\x76\x96\x92\x84\x24\xed\x90\x84\xa8\x1f\x92\x10\x04\x75\x78\xcc\xd2\x7a\x1d\x2e\x17\x55\x33\x0a\x85\x46\x35\xe9\x6e\x49\x42\xf5\x30\x24\xa1\x7a\x1d\x92\x10\xf6\xac\x92\x84\xd8\x0e\x49\xa8\xf7\x43\x12\xb2\x38\x24\x21\x64\xdd\x2f\x49\xe8\xe8\xf3\x8b\x7b\x10\x4a\xb5\xb1\x0a\x48\x10\x7b\xf4\x1e\x91\x28\x25\x09\x21\x9b\x27\x24\x21\xb1\x43\x12\xf2\x55\x68\x39\x8e\x0f\xc3\x71\xe2\x90\x84\xfc\xe8\xfd\x88\xa3\xf7\x28\x40\x0e\x72\x3a\xe4\x20\xf0\x3c\xd6\x89\xd7\x21\x07\xe1\xe4\xd2\x92\x83\xfa\x2a\xac\x14\xa2\x90\x83\x24\xee\x96\x1c\x04\x09\xdd\x75\x5e\xfb\x7c\x93\x04\xbe\x7c\xac\x29\xfb\xd1\xb7\xbf\xef\x2b\x60\xd7\xc9\x37\x6b\xfd\xe2\x2a\xe7\x13\xc7\x05\xca\x21\xb3\xe3\x18\x5e\x61\xa8\x45\xd7\x31\xbc\xe3\x7a\x0c\xef\xb8\x1e\xc3\x8b\xd3\x9d\xd6\x31\xbc\xf1\xbb\xc7\xf0\xc6\x71\x0c\x2f\xf1\x71\x0c\xef\x58\xc7\xf0\xe2\x98\x86\x31\x0d\x69\x5f\xc8\xec\xc5\xbd\xbb\x21\x25\xb4\xca\x71\x12\xaf\x3a\x72\x53\xe1\x24\xde\x3c\x4e\xe2\x1d\xc7\x49\xbc\x7e\x9c\xc4\x9b\x72\xf7\xe9\x24\xde\x3c\x4e\xe2\xf5\xe3\x24\x5e\x58\x8f\x71\xde\xfc\xf5\x24\x5e\xb9\x9e\xc4\x2b\x89\xaf\x73\xb7\xfa\xda\xdb\x83\xf7\x58\x4f\xf7\x57\xdf\x13\xd6\xff\xff\xf8\xb8\xc6\xfb\x11\x57\x45\x4f\x5c\x15\x3d\x7e\x55\xf4\xd0\x55\xd1\x63\x57\x45\x8f\x5f\x15\x3d\x74\x55\xf4\xc4\x55\xd1\x43\x57\x45\x8f\x5e\x15\x3d\x75\x0b\x8a\x1e\xbd\x2a\x7a\xe8\x50\xf4\x48\xd6\x7e\xd3\x7d\x63\xbd\x2a\x7a\xf4\xaa\xe8\xf1\xab\xa2\xa7\x5f\x15\x3d\x71\x55\xf4\xf8\x55\xd1\xd3\xaf\x8a\x1e\xb9\x2a\x7a\xfa\x55\xd1\x13\x57\x45\x8f\x1e\x8a\x1e\x44\xb6\xac\xe0\x8f\xab\xa2\x47\xae\x8a\x9e\xf8\x1e\x45\xcf\x97\x8f\xf5\x8d\x3f\xf9\x9e\x4d\xee\x8f\xee\xf8\xca\xbb\xdf\x3d\xbe\xb2\xfd\xf1\x1d\x5f\x79\x1f\x8c\xa4\xe7\x79\xb6\x3e\x36\xd6\x9a\x7d\x8d\xb3\x19\x6d\xd7\x3b\xb7\x67\xf7\xb1\x9e\xf5\x27\xdf\x03\x0d\xfe\xf3\xec\xfe\xa7\x9e\x5d\xf8\xa0\xa6\xea\x79\x0c\xda\xe0\xfe\x6b\x6e\x67\x1d\xb9\x5d\xef\xdc\x9e\xdd\xc7\x4a\xda\x9f\xfc\x43\x00\xd5\x1f\xc9\x14\xdf\x3d\x7d\xfe\xec\x1f\xe3\x14\x0f\xe8\x88\x55\x20\x8c\x9e\xc3\x07\x12\xb6\x51\x28\x6f\xb0\x10\xd4\xaf\xac\x76\x21\x57\xdb\x4c\xec\x8e\x32\xfd\xec\xc3\xb7\xeb\x9b\xb7\x49\xe0\xb1\x2e\xf6\x27\xdf\x9b\x1d\xe7\x8f\x62\xf6\xff\x7f\xb4\xc0\x11\xa4\x5a\x7b\xfa\x2a\x48\x21\x54\x5d\x62\xf1\x28\xf8\x16\x64\x33\x4b\x06\x77\x1b\x33\xbc\xc4\x73\xc9\x1d\x67\x40\x38\x52\xb8\x16\x09\x1c\x89\x82\xc9\x93\x70\xa8\x02\x05\xd1\x84\x19\x2e\xd8\x76\x9c\xab\x11\x6c\x4d\x17\x9e\x59\xa9\x53\xc9\x39\x36\x5e\xe2\x6e\xec\x28\x44\x5f\xd6\x7b\x0a\xb5\x29\x0b\x2d\x28\x86\x82\x12\x4e\x78\xde\x68\x74\xc1\x89\xff\x55\x68\x38\xa8\x23\x11\x9f\x37\x16\x44\x01\x52\x2d\x49\x02\xc1\x0b\x49\xbe\xc3\x8f\xab\x60\x15\xf2\x88\x25\x12\x40\x0c\xe8\xd7\xb7\xeb\xb7\xdf\xa6\xdf\xc7\xda\xe7\x9f\x7c\xbf\x18\xf5\x9f\x49\xf8\x3f\x35\x09\x33\x12\x7d\x8a\xed\xab\xe0\x04\x87\x16\x82\xcf\x24\x34\x9a\x45\x44\x35\x64\x69\x7d\x4a\xf4\xbb\xa2\x94\x1d\xa7\xff\x41\x9c\x60\xdc\x3a\x9c\x3c\xeb\x61\x1d\xbe\x5e\x07\xa1\x55\xcd\xab\x80\xb3\x43\x0b\x41\xa7\xaf\x87\x5d\x03\x19\x61\xc9\x99\xe0\x9d\x41\x4e\xb4\x8b\xae\x42\x43\xa3\xce\x7d\x75\xc3\x91\xcb\x48\xd7\xeb\xd7\x3e\xbf\xb8\xc7\xa6\x5a\x6d\xac\x82\xd7\x47\x1f\xbd\x8f\xa5\x3a\x93\x95\xfe\x29\x75\x2c\x41\x20\x71\x54\xc1\x2a\xb4\xd1\x8f\x0f\x1b\x7a\xf4\x1e\x99\x6e\xeb\x75\x58\x10\xaa\xe6\x91\x7e\x47\xd1\xb3\xe1\x96\xa7\xad\x87\x5d\x6d\xe2\x75\xa7\xa3\x66\xef\x63\x4f\x5e\x05\xc4\x6b\x93\x53\xae\x6e\xd4\xc3\xb1\x8c\x91\x2b\x44\x14\xbd\xbf\xb9\x70\x1e\x5b\x42\xbe\xfe\xee\xed\xb7\x6f\xbe\x79\x7b\x3b\x5b\x0e\x59\x34\x09\xda\x6a\x91\x7b\xfa\x46\x88\x38\xe9\x84\x33\x00\x88\xdc\x90\x3e\x34\x8d\x0f\x1f\x47\xa4\xa4\xc1\x59\x79\x9d\xb6\x18\xbc\x5e\xaa\x5f\xaa\x96\x7a\x86\x7b\xe0\x1d\xe3\x8e\x4a\x70\xe4\xe9\x6a\xe5\x76\xbf\x1f\xeb\xde\x7f\xf2\xfc\x79\x95\x08\x4f\x5c\xab\xdd\xf8\xba\xda\xed\xba\xda\xf3\x58\xed\x38\x28\xdc\x57\x72\xcb\xdd\x70\xec\x59\x6f\xd0\x5e\xcc\xea\x98\xdb\xc6\x42\xed\x34\xec\xac\xb9\x31\x26\x54\x76\xc2\x21\x7c\xc8\x78\xb4\xd2\x78\xd8\x6f\xd9\x80\x2d\x36\xc0\xc7\x2a\x3e\x0e\x16\x2f\x36\xe0\x07\x1b\xa0\x7e\x75\x53\x3e\x0e\x66\x0e\xa7\xbb\x92\x3b\x91\xda\x87\x64\xe4\x06\xef\x64\xa3\x3c\x13\x29\xf4\xce\x82\x60\x98\x1d\x69\xbd\x88\xb1\xe6\x57\x30\x40\xac\x78\xcc\xdf\xe1\x13\x71\xf0\x09\x47\xe2\xc6\x74\x69\x83\x79\x22\xab\x41\xef\x0c\xf5\x15\x67\xec\xd5\x70\x71\x76\xa3\xe3\x74\x2f\xa2\x63\x79\x8f\x63\x79\xc7\xb1\xbc\x7d\x2d\xef\x1a\x44\x2c\xef\xf8\xed\xf2\xae\x75\x05\xde\x11\xbd\x59\x7a\x93\x58\x0e\x99\xc8\xab\x91\x63\x0b\x0c\x52\xf6\x65\xc5\x62\x42\x22\xe6\x12\xf7\xbd\x86\xe1\xee\x38\xf8\x9c\xaf\x6c\xca\x0f\x36\xc5\x07\x4f\x5b\x07\x9f\x8f\xe3\xe0\x73\xb0\xa9\xdb\xe4\xf1\xd8\xe4\xf1\xd3\xef\x13\x47\xff\x18\x4f\x37\xbe\x0f\xa4\x6a\x84\x4f\x50\x6d\xd1\x87\xbb\x90\xd9\xd8\x42\xe0\xe0\xf4\x0c\xe8\x7f\x6c\x6b\xf9\xe9\xf7\x89\x74\x7f\x94\x23\xe4\x43\xee\x28\xb9\x9f\xc7\x18\x5b\x40\x8b\xaf\x74\xb6\xee\x1b\xe2\x02\x92\x6f\x7b\xe3\x7e\xf9\xd8\x7c\xf3\xd3\x7f\x90\x58\xf4\x47\x33\x4c\x77\xbf\x33\x4c\x48\x1d\xe1\x34\x2e\x64\x83\xce\x11\x81\x4c\x54\x14\x94\x9b\x06\x54\x9b\x74\x66\x83\x93\x16\x6d\x48\xcb\x96\xce\xe7\xe8\xba\x5d\xdf\xbc\x3d\x8c\x8f\xcd\x1f\x3f\xfd\x07\x40\xb3\x3f\xca\x41\xe4\x65\x39\xfc\xbf\xd8\xbb\x9a\x1e\xc9\x8d\x23\x7b\xaf\x5f\x91\x7f\xa0\xb1\x19\xdf\x99\x97\x3d\xd7\x81\x7d\x20\x40\x14\xb0\x73\x1b\xad\x46\xda\x01\x64\x0d\xd6\xb2\x0c\xf8\xdf\x2f\xe2\x45\xb2\xa5\x2d\xbb\xba\x47\x86\x31\xc0\xc0\x73\xaa\xec\xe6\x47\x26\xc9\x60\x30\x32\xe3\xc5\x7b\xb4\x57\x43\xa2\x15\x86\xc7\x7b\x29\xf2\x8f\xde\x0f\x29\x30\x8e\xc3\x29\xd2\x10\x2f\x0d\xfc\x21\xde\xb4\x00\x48\x51\x25\xa0\x03\xe2\x08\x5a\x87\x17\xdc\x88\x68\x2f\x70\xd1\x30\xa8\x70\x91\x3b\xd7\xce\xce\x72\xa8\x2c\x28\x0e\xce\x6c\x23\x76\xd1\x6a\x80\x40\x86\x6c\x7a\x0d\xc3\x99\x0b\x5c\xe4\x28\xfe\xaf\x31\xbf\x7b\xc6\xcb\x91\x7d\x54\x43\xa2\x15\x82\xc7\xfb\x11\x9e\x13\x04\xc4\x97\x78\x9b\x0c\x42\x06\x84\x2f\x4b\x81\xa5\xac\x4d\x5a\x17\x36\x6d\x8d\x7e\x8e\x35\xfa\x82\x1b\x11\xed\x05\x2d\x1a\x60\x78\x2a\x30\x0a\x76\x2e\x96\x51\x0c\x71\x9d\xd9\x86\xed\x83\xab\x01\xb6\xad\xc2\xcb\x78\xaf\x9d\x31\xb0\xc2\xb2\xac\xd1\x3f\x34\xbe\xfb\x9c\xd6\x7f\xbd\xee\xe5\xfe\x15\x8a\xe2\xcf\x8e\x05\xf4\xc2\x6d\xca\x16\xec\x27\x6e\xb3\x6f\xe7\xa6\xc7\x03\xbe\x4f\x6e\x1d\xff\xf3\xe9\xcf\x8f\x61\xd7\xba\xc6\x79\x23\x1a\x76\x75\xe5\x3d\xc0\x54\x9b\xb7\x0d\x90\x12\xe3\x03\x02\x2a\x60\x6f\x20\x92\xd9\x26\x8d\x03\x25\x0b\x21\x63\x47\x03\x6c\x08\xb9\xc9\x6c\x14\xff\x9f\x92\x03\xb3\x28\x2c\x80\x5c\xf3\x98\x57\x25\xa4\x96\xc4\xd7\x52\x39\xd9\x3b\x74\x3f\x9d\x6e\x46\x52\x9d\x53\x6f\x46\x20\xe9\x6c\x26\x04\x62\x5c\x43\x12\x80\x50\xc3\x38\xa6\x5d\x42\x7c\x1f\xd3\x5a\xa0\xbc\x96\xda\xb9\xce\x3c\x26\xa3\xc2\x6a\xe6\xec\x42\x39\xcf\x8b\x4e\x1e\xde\xa9\xfb\xcc\xd9\x8f\x1f\xfe\xfc\xa7\xf7\x3f\x7f\xff\xdd\x4f\x8f\x1d\x8b\xca\x6c\xfd\x4a\xce\x37\xc0\xa6\xc9\xc1\x38\xa9\x8d\x10\x6c\x0c\x3b\x78\x42\x61\x31\x20\x77\x4a\x26\xbd\x80\x91\xe6\xbc\x47\xce\x2c\xcc\xa1\x22\x0b\x90\xd6\x31\xa1\x5d\x16\xa7\x74\x10\xd8\x84\xb8\x12\x19\xfb\x6a\x01\x27\x94\xb1\x19\xd1\x22\xc4\xe8\x1a\xc7\xf4\x09\x59\xbe\xa9\xd2\x66\xce\x08\x98\xdb\x98\xe3\x98\x28\xfc\xe2\x7d\x92\x5e\x62\x46\x9b\x60\x7a\xb4\x63\x0e\x69\xd1\xe9\xc8\x83\x9b\x83\x77\x93\x08\x34\xd0\x20\xe0\x54\xd7\x03\x95\x5f\x02\x3d\x98\x91\x73\x73\xd4\x5d\x5b\x03\x1c\xa8\x47\xb4\xb0\x63\x66\xcc\x06\xf4\xd9\x13\xd3\x22\xb3\x23\xe0\xc2\x9e\xa8\xb4\xb2\x9f\xfc\x28\x04\xd0\x61\xbd\x37\x89\xcd\x4c\x1b\xdb\xd8\x2d\x7a\x03\x19\xf1\x94\xc6\x32\x41\xb8\xca\x5c\xd4\x13\xa0\xf7\xcc\x59\x60\x87\xb4\x0e\xe8\x69\x47\xfa\x68\xdc\x21\x69\xa2\xba\xe3\x17\x4c\x68\xd2\x94\xc6\x31\x44\xa1\x4b\x1d\x80\xb7\x47\x9e\xe7\x92\x73\x1b\xb7\xe2\xfb\x71\xf1\x36\x98\x76\xfc\x22\xe9\xa4\xb8\x41\xee\xd6\xa6\x8d\xc3\x4f\x92\x5e\x94\xe6\x40\xff\x0a\xc5\x6a\x94\x26\xd4\x57\x90\x69\x50\x84\x4b\x37\x06\x74\x93\x1f\xd1\x17\xae\xaa\xd8\x4f\xce\xe8\x5b\x64\xee\x16\xb6\x58\xcd\x20\x2d\x0a\xc6\x9c\x59\xb5\x81\x08\xff\x09\x08\xbc\x09\x11\xde\x57\x0a\x78\x3e\xdc\xa7\xf2\xde\xbf\x01\x7a\xff\xda\x64\xd1\x2f\xbf\x93\x45\x6f\xff\x0e\xb2\xe8\x97\xdf\xcb\xa2\x3f\x17\xe3\x03\xdb\x55\x67\xdf\x50\x7f\x64\x5d\xaf\x26\xbc\x9d\x5b\x1e\x9b\xc6\x7d\xa2\xf2\xfd\x1b\x05\x05\xdf\x4c\xe3\xab\x32\x0d\x07\x7d\x7e\xa7\xeb\x0c\xde\x8a\xd3\x82\xc1\xf7\xba\x9d\x5b\x1e\x9b\xc6\x7d\xee\xf4\xfd\xe7\xd4\x6a\x7c\x2d\xf6\x71\x59\xf6\xd1\xfe\x5d\xec\xe3\xb2\xec\xa3\xfd\x3f\xfb\x00\xae\x44\x7a\xbf\x11\x07\x5f\xc3\xfa\x56\x42\x1c\x73\x6e\xa8\x0f\xc8\xff\x32\xfb\x8d\xa4\xf3\x66\x40\x86\xab\x5c\x3d\x62\x3b\x8f\x7c\x6c\x3f\xf7\xd9\xd9\xf7\x6f\x54\xc1\x7c\x2d\xa6\xf3\xcd\xb5\x94\xe9\x64\xb8\x62\x32\x51\x03\x4d\x50\xf8\x50\x84\xfd\x19\x60\x51\x31\xfd\x8e\x9c\x89\x08\xf9\x11\x0a\xe6\x27\x83\xd0\x4a\x36\x1a\x44\x3b\xa4\x0f\xf0\xcd\x82\xe7\xc6\x4a\x37\x7b\x1c\x8a\x4d\x83\xa1\x92\x96\x0d\x94\x58\x93\x58\xce\x4f\x39\x43\x62\xdd\x18\x3a\x2f\xa4\x7b\x35\x6c\x34\x86\xa6\x72\xe7\x83\xb1\x66\x39\xe8\xa8\x7a\x16\x19\x47\xc1\xe1\xbc\x03\xfd\x4e\x60\xbc\xaf\x35\x97\x38\xaa\xb6\x21\x23\x4d\x94\x7c\x8f\x38\x8a\x94\x2b\x64\x0f\xf7\x4b\x36\x8a\xa6\x53\xe7\x80\xde\x15\x59\xf4\xed\xbc\xf6\xc7\xc6\xff\x77\xbc\x35\x6f\x57\x18\x7d\xb3\xff\xaf\xca\xfe\x15\x0e\x70\xf2\x8e\x86\xd2\xa8\xf5\x7b\x55\x3a\x0c\x20\x2d\x24\x33\x19\x62\xd1\x85\x6f\x32\x14\xb0\x56\xa3\x81\x57\xca\x72\xb2\x80\x94\xdb\xa0\xa3\x28\xa0\x34\x87\x2c\x75\xe6\x6a\xb8\x83\xc1\x86\x44\xa5\x76\x96\xae\x8b\x96\x0a\xab\x41\x28\x0a\xcf\xd9\x50\x35\x40\x3b\x03\xe6\x63\x0c\x43\x4e\x34\x64\x1e\x7e\x8e\xf9\xdd\xf3\xb4\x35\x7a\x34\x72\xf4\xd3\xd7\xe8\xe7\x98\xc5\x58\x4c\x5d\xf8\x42\xd6\xfd\x00\x45\x3f\x19\xf9\x4e\xa8\x07\xc1\x97\x80\x74\x5d\x1c\x26\xf6\xb8\x04\x62\x5a\xd7\x40\xcc\xeb\x22\x56\xab\x28\x29\xa4\x74\x7e\xea\x08\xe9\xa8\x0a\xe1\x9a\xd1\x54\x1f\xec\x39\x4b\xb5\x6a\xb5\x1c\xc1\xe2\x40\x86\x28\x44\xe7\xc2\x46\xe6\x39\xce\x2b\x78\xfc\x0e\xde\xa3\x07\xde\xbf\x5e\xc9\xf5\xed\xfd\xfb\xaa\xde\x3f\xa0\x7f\x95\x7a\xc1\x80\xd5\xb8\x15\x75\xf8\x38\xfd\xbd\xf5\x03\xfc\x6f\x36\xe9\x00\x17\x98\x77\xdf\x51\x47\xe1\xdd\x0b\x79\x00\xa2\x4a\x14\x5d\x5b\x07\x37\x1d\x0e\x1f\x10\x17\xa1\x0e\x7a\x77\x02\x3f\xf5\xc4\x8c\x5c\x6a\x67\x0e\x3e\x70\x38\xc6\x03\xd2\x3c\x1a\xbb\x19\x18\x44\x46\x43\xa7\xb9\x09\xc3\xe0\x20\xa8\xdf\x93\x08\x1f\xe7\x98\xdf\x3d\xeb\xa2\xeb\xdd\xd1\x90\x45\xa6\x96\x93\xfd\x3a\xa3\x10\xef\xae\xfd\x92\x8d\x86\x58\x5d\x50\x06\x2b\x75\x54\x35\xcc\xa0\xb2\x45\x3a\xd6\x38\x8c\xfa\x0e\x9d\x12\xa3\xfc\xc6\xe1\x8b\xb6\x48\xfe\x1e\x8a\x87\xe5\x9b\x72\x8f\x53\x78\xff\x4a\x98\xe6\xb5\xa2\x9d\xcf\x33\xad\x1d\x62\x43\x75\x83\xe7\xdc\xd3\x5c\xc3\x9a\x59\x34\x10\x36\x6a\x03\x65\x0f\x24\xe4\x50\xa3\x95\x87\x32\x6a\xd0\x20\x2e\xdd\xf8\x20\x9e\xcd\xfd\xc8\xeb\x70\x3f\xd4\xa1\xfd\xaa\xde\x00\xd7\xc8\x4f\xb5\x05\xa8\xc3\x5c\xc7\xd5\x7a\xbf\x85\x07\x54\x4c\xf3\x63\xac\x83\x97\x08\x32\xb4\x76\x77\x09\x03\x57\xb8\x98\x80\x16\x40\xc0\xec\xec\x9b\xcf\x4b\x8c\x0c\x3e\xda\xb0\x68\x93\xdb\x24\x3f\x08\x4a\x76\xe0\x7a\x77\x54\x60\x1e\x58\xf4\xce\xd7\xc4\x6c\xbd\x26\x27\x25\x6b\x71\x76\x76\x97\x5a\xb7\xe9\x43\x90\x64\x2c\xd5\x5d\xfd\x4d\x16\x7e\xbd\x6f\x44\xbd\xd8\x11\x80\x63\x2e\x6d\xf3\xa9\xcd\xe7\xbc\xa9\xe9\x35\x54\x6e\xe2\x02\xff\x2e\x20\x79\x63\x10\xb3\xc4\xe0\x0c\x63\xb0\x40\xc9\x64\xe0\x8c\xe1\x2e\xf0\xd1\xdc\xa5\xcd\x18\xbf\xf1\x84\x33\x8d\x83\x7a\x74\x28\x3d\x63\xe9\x8d\x8d\x37\x90\x9a\x78\xdf\x89\xd4\x2f\xa8\xad\x23\x6f\xd2\x6b\x91\x4e\x8f\xe9\xd2\x9e\x48\x8e\xf5\x14\xdf\x3d\xe7\x10\x5c\xe5\x3a\x65\xdc\xc2\x6c\x9f\x32\x80\x74\x99\xe0\x41\x53\x20\x26\xf2\xce\x8e\x12\xf2\x46\x2c\x34\x5c\x81\x24\x1e\x3c\x00\xd3\x8d\x10\x7c\xb3\xa2\x2b\x50\xd1\xcf\x8a\x8a\x4d\xdb\x35\x5d\xf4\xb0\x06\xb0\xc3\xac\xf5\x3b\x26\xba\xa9\xeb\x55\xe7\xdc\xd3\x99\x15\x19\x05\xe4\x10\x0e\xc9\xf7\x9c\xe4\x10\xb1\x26\x50\xad\x97\xc6\x53\x76\xfc\xaa\x22\x0b\x02\x0e\xa8\x3a\xff\x63\x7b\xbe\x87\x0f\xfc\xf7\x9b\xec\x69\x69\x8e\xe9\x1f\x9d\xb0\x54\xe8\x73\x94\x92\x95\x4b\x29\x59\x75\x2f\x25\x2b\x70\x2f\x83\xdd\x88\x77\xea\x43\x1b\xa3\xce\x52\x6b\xf7\xa9\xa3\xcd\x0e\xc0\xcb\x04\xff\x76\x69\xb5\xcf\x25\xb9\xab\x10\xa6\x56\xf0\x7c\x41\x89\x55\x88\xa0\x98\xf1\xa2\x5d\x85\xc0\x20\xdf\xd6\xd9\xc2\xc7\xe2\x64\xe7\x43\xfb\x0b\x09\xb2\x5c\x8a\x04\x99\x97\x85\x8e\x22\xd9\xc8\xef\xa1\xb6\x39\xd2\x26\xac\xb7\x01\x72\xe1\xc1\x25\x56\xc5\x7d\x2f\x85\xea\xda\x1d\x62\x55\x1e\x25\x56\x85\x75\x51\x82\x82\x5f\xa9\x56\xcb\x52\xad\xee\x25\x56\xa5\x5c\x62\x55\xe9\x32\xc3\x50\xb5\x7f\x8a\x55\x65\xbb\xd4\xb3\xad\xc4\xaa\xb4\x97\x58\x55\x9f\x25\x56\x55\x37\xf5\x5f\x50\x5a\x79\xf9\x87\xa5\x95\xed\x4b\x97\x56\x7e\xb8\x87\x77\x7c\x78\x7d\x21\xd5\xbd\x10\x5a\xa6\x54\xd9\x3f\x99\xb0\x00\xc7\x6a\xee\x41\xeb\xb5\x27\xe2\x66\x5d\x6e\xa6\x19\x1f\x70\xf9\xf4\xbc\x3f\x3e\x0f\xf6\xde\xa6\x7a\x55\xbc\x76\xd4\x50\xaf\x4f\x39\x60\x35\xb0\x00\xe8\x51\xb9\x16\x2b\xbf\x59\xd5\xdc\x06\x60\x17\x3c\x9a\x79\x3a\x1d\xba\x4a\x46\x11\x3d\xe7\x52\xde\x14\xfc\xd3\x84\x8b\xcf\xaf\x99\x85\x63\xe5\xdc\x87\x5c\xd2\xe1\x04\x6b\xe9\x9d\x3b\x70\x54\xc7\x50\x86\x9b\x99\x54\xf9\xca\xe9\x91\x8e\x6b\x23\x02\xb0\x29\x76\x88\x8b\x13\x9c\x25\xd6\xa3\xed\x48\xaf\xb8\x64\x38\x9f\xe4\x58\x77\xe2\xdd\xb3\x43\xbe\x20\x76\xf0\x2f\xa6\x9d\x69\x89\xa5\x69\xcc\x36\x80\xab\x98\x2d\x64\x82\xce\x3e\xfd\xd2\x30\xbb\xb9\xdb\x9e\xb6\x11\x7d\xb6\x21\xa3\xd4\x97\x50\x10\x60\x4b\x6c\xad\x1f\xeb\xbc\x0b\x0f\x85\x32\xa3\x59\xb8\x18\xb2\x6e\x57\x93\xd8\xce\x2d\x8f\x1f\xef\x3d\x3c\xe3\xc3\x1b\x69\xb9\x6f\x8f\xf7\x8b\x3f\x5e\x48\x5e\x5a\xe7\xeb\x8c\xd8\xa2\x67\x10\xc6\x72\xd5\xa1\xdb\xb9\xe5\xf1\xe3\xbd\xc7\x96\x7c\xf8\x8c\x05\xcd\xaf\xe9\x19\x5f\xd6\x33\x6e\x5f\xf9\x33\x06\xcc\x50\x3a\xdd\x88\x43\xae\x61\x06\x39\x6f\xd2\xde\x37\xf0\xeb\xe7\x7f\x59\xe8\x96\x73\xdb\xcd\x98\x0a\x6c\xe4\x83\xb7\xf3\xc8\xc7\x36\x70\x8f\x9e\xf9\xf0\xe6\xba\xcc\x37\x0b\xf8\xf2\x16\x00\xf8\x88\x4c\xd9\x8b\x77\x9c\x66\x03\x6d\x8d\x2a\x17\xe8\x04\x13\x1e\x8b\x5a\x40\x71\xe2\x0b\x19\x8d\x9a\xdb\x19\x8d\x75\xef\xfb\x2c\x41\xe0\xdc\xb9\x18\x2a\x94\x8f\x48\x03\xca\x33\x57\xc3\x57\x22\x56\x5e\xd4\x83\x73\xea\xea\xb1\xb8\xbf\xc1\x00\xe8\x39\xad\xa9\x06\x26\x36\x58\x76\xc1\x30\x04\x2a\xc9\x5e\x87\x9f\x63\x7e\xf7\x0c\xf8\x48\xf6\x81\x46\x8e\x1e\xa4\x35\xd9\x3d\xb0\x26\x58\x29\xe9\x58\x08\x42\x30\x3f\xb9\xd6\x86\x20\xe5\x8b\xc5\x21\x80\xbf\x71\x71\x44\x73\x5d\x02\xe6\x96\x38\x09\x31\x8f\x0b\x3a\x00\xb7\x0c\x66\x8f\xb5\x55\x54\xd6\x11\xd2\xa5\xca\x4b\xb0\x12\x54\x7d\xb0\x47\x09\x0a\x65\xab\xd5\x08\xc0\x33\x3b\x97\xce\x0c\x86\x99\xe7\x38\xaf\xe0\xf1\x7b\x74\x0f\x9f\xfa\xf8\x56\xf5\xf8\x2c\x11\xf5\xd1\x75\x91\xa4\x90\xa2\x26\x78\x56\xcd\x26\xcb\x6d\x98\xe1\xef\xdc\x0f\xec\xfa\x5e\xf4\xdd\x83\xa2\x18\xb8\x40\xec\x6d\x73\x7b\xd9\xf4\x78\x78\xf7\x00\x9b\x8f\x6f\x15\x8d\xff\xd1\xe1\xa1\xb0\x57\xc3\xaf\xd4\x55\x00\xc5\x21\x9a\x71\x35\xeb\xdb\xb9\xe9\xf1\xe8\xee\xd1\x34\x1f\x3f\xab\x54\xfc\x8f\xdf\xc1\xc5\xb4\x7b\x23\x56\xbf\x0e\xa6\x0d\x96\x2d\x21\x10\x2e\xc6\x7f\x79\x46\xba\x59\xdf\xac\x56\xf8\x02\x2a\x1f\x2f\x87\x3e\xbe\x86\x7b\x9c\xcb\xc7\xcf\xa8\x10\xff\xa3\x57\xc0\x58\x25\x74\xdf\xab\x31\xd3\xd3\x5a\xe9\xbc\x4b\xa9\x6a\x18\xe4\xf2\x4a\x1d\x0e\x8a\x95\x93\x6a\xd6\xa9\xb3\xd4\x83\xca\x55\xd0\xac\x9d\x0d\x39\x02\xb2\x72\x1e\x79\xe6\x6a\x28\x00\x1f\x8d\x84\x22\x77\xbe\xe0\x15\xc7\xe1\x9c\x53\x04\x86\x5e\x1c\xef\xa8\x3b\x61\xe5\x56\x6f\x9c\x51\x0d\x23\xdf\x30\x0c\x2c\x0f\x3f\xc7\xfc\x0e\x72\x53\xe8\xa3\x1a\x33\x27\x52\x6b\xf4\xe3\x94\xbd\x1b\xa7\xec\xdd\x3c\x65\xef\xe6\x29\x7b\x37\x4f\xd9\xbb\x39\xd7\xe8\x31\xed\xc7\xf1\xf5\xee\x0a\xd6\x4a\x4f\xe5\xbb\xda\x2a\xe4\x75\x40\x11\x48\x2f\x7d\xbb\x59\xd2\x77\xbd\x44\x13\x59\x7b\x43\xc7\xd0\x94\x3b\xa5\xef\xe2\x94\xbe\x3b\xc7\xfd\xf0\xd9\xff\x70\x8f\x27\xf9\xf0\x0f\x4a\xc3\x5f\xd6\x8b\x30\x18\xd7\x82\xd9\x41\xbd\xb5\x6b\xac\xc5\x91\x4e\xcd\x35\x6e\x16\x73\xc7\x1f\x28\xf5\xe9\x0e\x06\xb2\xa3\xd2\x49\x0a\x62\x69\x4e\x7f\x3f\x6a\x3a\xad\x5c\x0c\x46\x79\x05\x71\x40\x62\x92\xe9\xc8\x10\x37\xe2\x90\xd1\xd4\xc7\x2e\x03\x42\x22\xc1\xcd\x83\x0f\x2c\xc2\xf0\x04\x41\xe9\x14\x3a\x4c\x7a\x9b\x1e\xbb\x77\xcb\xdf\xdc\xa7\xcd\xec\x69\x6a\x1b\x31\xf7\x08\xb9\x4c\x1b\x2d\xea\xb6\x52\x29\xcc\x93\xc8\x96\xce\x9c\x7a\xef\x9b\x2c\x64\xcf\x56\xab\xed\x3c\x77\x18\x19\x1b\xe4\x71\xb0\x10\x7f\x68\xc9\x9d\x8c\x0d\xc2\x25\x46\xb6\xd7\xdc\x1e\x29\x25\xac\xfa\x59\x01\x55\x35\x6c\x03\x51\x26\x89\xf3\x76\xde\xb1\x77\xcf\x39\x69\x77\x27\xac\x43\x7a\x5e\xce\xa0\xe6\x33\x20\xb3\x1f\x1c\x00\xa4\x85\x06\x64\x29\xc3\x6c\x4f\xb3\x09\xb3\x96\x51\x52\x08\xa1\x84\x06\x5a\x0e\xc2\xcd\xc2\x0f\x21\xaf\xbb\x93\xbf\xa4\x2d\xff\x2f\xee\x90\xf9\xe0\xc1\x87\x5a\x5c\x98\xf5\x30\xe7\x5a\x0d\x41\xd9\x43\xde\x43\x2c\xd6\xa1\x92\x03\xab\x20\xa8\x05\x67\x10\x9f\x98\xe9\xcd\x75\xde\xfc\x95\x32\xec\x1f\xee\x51\x26\x3f\xbf\x9e\x0a\x96\xd2\xc5\xe3\x4d\xa9\xb7\x29\xbc\x63\x01\xa9\x93\x14\x03\x19\x90\x55\x67\x04\x05\xa0\x2d\x22\xa8\x7c\xf1\x7a\xa0\x50\x09\x6b\x71\xc0\x98\xcd\xb5\xfa\xd6\xf3\x4e\xf8\xad\x5f\x07\xe7\x58\x79\x1f\x19\xa3\xb0\x97\x5e\x05\xd6\xa7\xa5\x0d\x11\x70\x2e\x0f\x77\xe8\xd4\x8d\x70\x48\x1a\x8e\xf0\x66\x9d\xd6\x52\x23\xf4\x8a\xc0\x7e\x43\x25\xbc\x50\x1f\xfd\xc8\x38\x54\x66\x51\x35\x20\x1d\x8a\x17\x38\xdf\x3e\xf0\x9b\x07\x43\xf2\xa1\x5e\x31\xb3\x4a\x87\x06\xb2\x37\xd3\x60\x82\x48\x87\xa2\x34\x0a\xe9\x50\xe8\x26\xa4\x19\x61\xd3\xe0\x1d\x3c\x8b\x90\x9a\x40\xa4\x62\xf9\xe0\x64\xa5\x43\x91\x29\x22\xdd\xab\x61\xa3\x21\x09\xa0\x9d\x0f\xc9\xbb\x81\x74\xa8\xcf\x95\x0e\x45\x5e\xd4\x0b\x95\x5c\xe9\x50\x29\x16\x96\x03\x81\x36\xd2\xa1\xb0\xd4\xb1\x20\x6c\x48\x87\x82\xc4\x21\xef\x12\x00\x86\x20\x9c\xc8\x4b\x8e\x5e\x58\x80\xd7\xd2\xa1\x3f\xdc\x63\x49\x3e\xbd\xc5\x49\x85\x47\x9d\xde\xad\xd6\xc3\x24\x2a\x90\x16\xc7\x8b\x7a\x2a\xb4\x56\xd9\x60\x89\x82\xd9\x32\x03\xc8\x46\x03\xdf\xdb\xb1\x2f\x34\xa4\x23\x7a\x51\x4d\x98\xd1\xcd\xa4\xef\xf8\x43\x4b\x28\xbf\xd6\xe1\x0a\x2e\xe9\x10\xad\xcf\x57\x9e\xce\xd5\xbb\x42\x24\xca\x1c\x8d\xfb\xc1\xe5\x78\x0f\xa8\x69\x13\x72\x64\x17\x93\x7e\x33\xa3\x77\xcf\x32\xa8\xe5\xc9\xf3\x57\x3d\xa3\x74\x6d\xda\xe5\x50\xb1\xc6\x73\x42\x27\x86\x01\xf0\x5b\xba\xf9\x71\xea\xe6\xaf\xf7\x6b\x12\xe6\x12\x43\xb8\xe5\xa3\x03\x6f\x7c\x9d\x7c\xcf\x36\x74\x56\x24\xdf\x47\x87\x2e\x58\x8c\x0e\xac\xe1\x58\x05\x94\xb5\x80\x47\x15\x93\x43\xb5\x98\xd0\x77\xee\x97\x63\xc9\xe3\x30\xc6\xba\x09\x19\xc5\x48\x21\xc7\x8c\x74\x63\xeb\x0b\x39\x66\xbe\x9d\x5b\x1e\x3f\xd2\x7b\x78\xc7\xa7\xb7\xe8\xbb\xbe\x3d\xd2\x2f\xf1\x48\x21\xf6\x08\xc4\xd7\xf4\x6d\x09\x1c\xf1\xd5\xba\x6c\xe7\x96\xc7\x8f\xf4\x1e\xb4\xf0\xe9\xb3\x88\xce\xbe\x3d\xd7\x2f\xf1\x5c\xc1\x98\xf3\x1b\x52\x2b\x74\x83\x22\x20\x90\x5a\x35\x5f\xe5\x2b\x5b\x5f\x48\x2d\xf0\x96\xab\x5c\xa3\xd3\x36\x67\x06\x76\xaf\x20\xb5\x7e\xb8\x4f\x94\x7f\x7a\x8b\xad\xe6\xdb\x23\xff\x22\x8f\x3c\x03\x49\x84\x14\x43\x57\x48\x81\xaf\x32\xb0\xf9\xb6\x42\x0a\x5b\x41\x3f\xca\x18\x11\x52\x70\xbf\x54\x48\x51\x18\x8b\x51\x44\x9a\x08\x29\xa0\xff\x96\x21\xc5\xb0\x15\x52\xe8\x5c\x21\x05\x40\x1a\x19\x52\x54\xd1\x41\x7e\x0e\x7c\x85\x14\x68\x64\x48\x81\xc8\x26\x43\x0a\x5a\x78\x0f\x29\x7d\xf7\x51\xc0\x92\x0c\x29\x8c\x68\x85\x14\x8b\xcb\x1c\xba\x31\x15\x52\x40\xf6\x30\x43\x0a\xd3\x15\x52\x94\x30\xad\xb4\xaa\x96\xca\x7b\x9b\x11\x12\x42\x8a\x75\xed\x8f\x8d\xf6\x3e\x67\xfd\xe9\x33\x68\x0c\xbf\xd9\xed\x97\xb0\x5b\x90\x2f\x02\x19\x55\xb3\xf5\x45\xdc\x0a\x64\x14\x30\x4e\x83\x4a\xd4\x02\xc8\x28\xa1\x85\x8c\xf2\x8c\x26\x29\x9a\x0f\x5f\xc8\x28\x5e\x30\xaa\xd2\x48\x52\x2a\xf6\x6f\x20\xa3\x3c\x16\x32\xaa\xe6\xef\x52\x3b\x03\x19\x35\x7c\x21\xa3\x84\x0a\x19\x85\xa0\x16\xc8\x28\xcc\xe8\x23\x6a\x18\xd2\x05\x72\x5c\x85\x8c\x5a\x63\x5e\xb4\x7a\x40\x46\xc5\x1a\xfd\x1c\x6b\xf4\x55\xe4\x5c\xd0\x28\xa0\x2c\xba\x57\xe6\x7d\x41\xa3\x94\x4e\x68\x94\xaf\xab\x23\x3e\xa1\x60\x84\x67\x5c\xd0\x28\x8d\x13\x1a\xa5\x71\x59\xd0\x28\x58\x00\x16\xf7\xfa\x3c\xa1\x51\x58\x65\x88\xb3\x8f\x82\x46\x0d\x3a\xa1\x51\x98\xdc\x87\xad\x51\x01\x1b\x85\xd7\x5a\xf9\x38\xaf\xe1\xf1\xdb\x73\x9f\x21\xff\xfe\xe3\x5f\x3f\xbe\xca\xac\x82\x29\xa4\x5c\xa9\x8f\xdb\xe8\x10\x5e\xe1\x9b\x85\xbc\x7b\x56\x87\x14\xe8\xdc\xd1\x20\xeb\x0d\x6c\x07\x34\x3b\x74\x01\x89\xa5\x43\x5d\x2d\x1b\x0d\x4f\x29\x37\x81\x99\x3b\x8f\xaa\x06\xc4\xcd\x27\xf2\xd7\x79\xd0\xd4\xb1\x9b\xe2\x17\x67\xcb\xff\x9f\xfd\x64\x8f\xd2\x38\xc6\x0e\xc5\xbd\x3e\x5a\x7a\x10\x11\x05\xdc\x44\x62\x1e\x66\x7c\xd1\x3e\xf1\x42\x28\x67\xef\xde\x30\x6d\xe3\x68\x92\xc6\xed\x03\xc7\xe3\x97\x02\xff\xa7\x08\xec\x4f\x12\xbb\x41\xb7\x25\xaa\x9a\x31\xe2\x58\xfd\x3d\xbe\x99\xf7\x69\xe1\x4f\x6f\x54\xfd\xff\x71\x3f\xf4\x32\xc9\xed\x25\xf8\xb8\x8d\x00\x9e\xce\xae\xd4\x85\xb7\x59\xca\x2a\x5c\x05\x5e\xf5\x57\x68\x1b\xc4\xff\xa4\x7f\x32\xa6\xc2\x2c\x68\xbf\xd8\x96\x33\xc7\x27\x52\xba\x42\x5c\x8d\xf2\x95\xdf\x21\x61\x83\x72\xb4\x68\x6c\xf3\xc0\x45\xfd\x63\x97\xa5\x4d\x66\xba\x9e\x38\x54\x7a\x93\x6e\x5b\xe4\x64\x1a\x32\xa6\xc0\xed\xb4\x7f\xca\xcd\xc0\x8f\x9d\x3e\x2c\x67\xed\xe2\xcd\x6d\x02\xab\x11\x26\x9b\x95\x3e\x33\x80\x91\x58\xc5\xf8\x7c\xff\xf8\xe2\x7c\x1f\x3e\xf2\xfb\x54\xf1\xaf\x6f\x94\x54\xc1\xcb\xf1\x1e\xe1\x2d\x08\x0c\x03\x6c\x87\xf1\x5c\x4b\x5a\x56\x5f\x83\xb0\x66\x07\x9b\xb5\x11\x07\xc5\x00\x80\x8e\x00\x8c\x3b\x35\x1e\x79\xdc\x54\x3b\xa4\x74\x64\x11\xc3\x0b\x4f\xd0\x89\xb0\x05\xb8\x71\x99\x4a\x8c\x85\xbb\xed\x3e\x66\x89\x4e\x2a\x35\xce\xc7\xcc\x28\x9f\x5c\xa2\x93\x7d\xce\x5b\xbf\x0e\x8d\x6d\x8d\x2f\x67\x84\x69\x57\xbd\xf4\x3c\xd8\xf8\x42\x3a\xe4\x6a\x36\xb6\x73\xcb\xe3\x7b\x72\x9f\x5f\xfd\xf5\x8d\x5a\xa2\xaf\xe5\x9e\x38\xca\x2f\x47\xbf\xce\x39\xb6\x60\xba\x10\x77\xba\x5a\xb7\xed\xdc\xf2\xf8\x9e\xdc\xe7\x1b\x7f\xfd\x9c\x22\x9a\xaf\xe5\xc6\xcc\x19\x17\xe2\x98\x37\x62\xa3\x2b\x80\x76\x8c\xa5\xae\x01\xa9\x47\xfc\x97\x8d\x6f\xc4\x83\xf0\x3a\x92\x31\x5f\xa3\x4b\x49\x74\x70\xbc\x12\xde\xdd\x27\x98\x7e\x7d\x1b\x40\xff\xb5\xdc\x36\xcd\xdb\x26\x91\x51\x20\x02\x81\xf2\x77\x90\x46\x85\xa0\x81\x7a\x3f\x2c\x00\xde\x74\xe4\x44\x49\xa7\x97\x7c\xb1\x4e\x6f\xf8\x98\x56\xa5\x02\xd5\xce\x61\x73\x29\xab\xd6\xd7\x84\xf6\x6a\xa8\x41\x3f\x16\xea\xab\xd8\x99\x87\x94\xec\x62\x5e\x07\xce\xcc\x1a\x3b\x34\x9d\x33\x28\x41\xa7\x6c\x5e\xc3\xe0\xc1\xa5\x6c\xfc\x22\xde\x2a\x41\x8b\x70\x34\xfb\xa8\xc6\x8c\x36\xc7\x1a\x3d\xf5\x2a\xfc\x06\x86\x18\x83\x04\x59\x14\xc6\x6d\x3b\x04\x00\x08\x81\x16\xf9\xba\x3a\x2a\x25\x34\xef\x19\x1f\xad\x8b\x20\x70\x89\x66\x0f\xab\x85\xda\x11\x99\x25\x0b\x5e\x47\x70\x46\x54\x38\x0b\xdb\xd9\x07\xab\x65\x7c\x54\xad\x56\x23\xe0\xe2\xd9\xb6\x3a\x02\x03\xcd\x93\x9c\xd7\xf0\xd8\xfc\xee\x13\x88\x7f\x7b\x03\x0a\xd4\xb9\xa9\xe9\xe6\xa2\x4d\x64\x6c\x33\xdf\x03\x3c\x7f\xe6\xb9\xf9\xe8\xed\x89\x9c\xf1\xbd\x7b\xe2\xfc\xec\x03\x90\x66\x84\xa5\xf6\x27\xd1\x8e\x45\xd9\xa7\x8c\x5a\x84\xb8\x3d\xa9\xc4\xce\xb3\x1a\x8d\xc3\x0a\xea\xc6\x8a\xff\x94\x7e\xdc\x13\xc4\xfd\x22\xda\x93\x52\x6c\x5c\xf4\x40\xb6\x33\x03\xd9\x69\x8d\x0d\x68\x5b\x3f\x78\x02\x6e\x3b\x76\x81\x8a\x70\x1f\x17\x31\x6b\x4f\x34\x06\x12\xf4\x4f\xa4\x0a\x89\xb6\x27\xea\x1d\xaa\x30\x4f\xa3\x6f\xd0\x04\xf3\xcd\xd6\x65\x88\xf9\xb6\xae\xf1\xdd\x33\x14\x42\xd2\x1f\x52\x67\xde\x42\xf1\x5d\xa0\xab\xf1\xdc\xce\x4d\x8f\x6f\xec\xdf\x8b\x09\xbe\xc6\x24\x80\x27\x6b\x42\x3b\x1a\x4a\xc8\x0b\x78\x93\x0c\x6c\x3a\x62\xf7\x71\x8c\xca\x0f\xa5\x2f\x7e\xca\x68\xaf\xe3\xba\x9b\x01\xa8\x7b\x28\xc4\xf0\x97\x54\xb2\xda\x0d\xcb\x22\xca\x72\x9b\x20\x18\x82\xfe\x1c\x97\xe0\x68\x8f\x3c\x4b\x5f\x21\xd7\x89\x94\x2f\xdd\xfd\x53\x96\x66\x5a\x4e\x03\x86\xb5\x88\x28\xbb\x33\xe3\x9b\x09\xbd\x7b\x1e\x62\x17\xb3\x2a\x37\xf7\x9c\x3f\xb1\x34\x8f\x12\x44\x8d\xc1\x10\x56\xa9\x39\x95\x57\x66\x41\x05\x99\x85\x7c\xa7\x2b\xb3\x20\x2d\xdc\x6f\x42\x8e\x79\x39\xbb\x62\x1b\x8b\x62\x0a\xcf\x5d\xc0\xa4\x0c\x4c\x47\xfe\xcd\x79\x6e\x6f\xd2\x3b\xe4\xe2\xb4\x2b\x38\xa0\x4d\xe8\x66\xf6\x4a\xec\x7f\x9f\xba\xfd\xdb\xdb\x18\x98\x7f\x27\xf3\x66\xe4\x3f\x83\xf6\x6a\xcc\x1a\x21\x5c\x93\x94\xfa\x7d\x3f\xa4\xf2\xb6\x5e\x25\x16\xe9\x9e\xb5\xf2\xb6\x8e\x0a\x0d\xb8\xe7\x82\xdd\xa7\x2f\xe7\x17\xef\xbe\x5c\x67\x35\xa0\x0a\xfb\xe2\x5f\x67\xb9\x67\xad\x9c\x6d\xd4\x99\xd3\x3d\x4b\xe5\x6c\xa3\x32\x9e\xe9\x9e\x31\x8c\x74\xcf\x18\x58\x1e\xce\x6e\x97\x72\xcf\xa1\x6b\xf4\xd5\x98\x81\x8c\x60\x7d\x1d\x86\x94\x77\x86\xe8\x4f\x3a\xe7\x81\x8a\xa5\x69\x25\xd9\x9f\xae\x19\xec\x68\x79\x61\x20\x37\x84\x63\xee\xfd\x37\xf7\xbe\xc6\xbf\x5a\x5a\xa5\x23\xa7\x4f\x9d\xcb\xcb\x8a\x97\x5b\xc6\xd9\xd3\x2b\x83\xd8\x2b\x9d\x32\x3a\x4e\x9f\x1c\x95\xb8\xa2\xca\x84\xe5\xe1\xe7\xb8\x1f\x9a\x2d\x77\xba\x4f\x39\x7c\xf8\xf9\xfb\xd7\xd9\xd5\x62\x36\xef\x74\x75\xba\x0d\x1e\xd7\xfc\xfb\xe6\xaf\x2c\x80\x73\xa7\xfb\x25\xf0\x0f\x7f\x7a\xab\x0b\x43\x17\x16\x67\x17\xf6\x56\x17\xf7\xb3\xc5\xff\xfd\xf5\xd3\x5f\x3e\xfc\xf4\xe1\x87\x57\x54\x89\x27\xd8\x53\x46\x91\xd8\xe7\xa7\xb0\x94\x70\xa6\x20\xf5\x4b\xda\xfb\xe1\x48\xf3\xcd\x71\x78\x60\x09\x6d\x6e\xa0\x5d\xb4\xde\xf7\xf0\xdc\x27\xa7\x52\xf8\x88\x3a\x15\x01\x1f\x8d\x79\xa3\x4e\x7c\xd5\x49\xb7\x3c\xfd\x6b\x83\xbe\x9f\xef\x60\xd0\xaf\x6b\x29\x07\x12\xda\x23\xf6\x6a\x88\xb7\x00\xf6\x08\x1a\x3f\xd0\xe3\x75\x50\x67\x20\x69\x6b\x53\xda\x9c\x0e\xfe\x3e\xea\x61\xc5\x11\x4e\xba\xca\x58\x18\x98\x0d\xc1\xf9\x6e\x64\xde\x33\xda\xbc\xe5\x5f\xaf\x0d\xfa\x7e\x42\x82\x41\xff\xf2\xf1\xe7\x1f\x7f\xfa\xee\xfd\x2f\x8f\x3f\xe6\x91\x66\x63\x3b\xf4\x3d\x40\x75\x92\x9e\x0b\x20\xb5\x27\x52\x47\x6a\xf4\x89\x55\xa1\xc7\xfa\x24\x6c\x4b\x16\x5d\x7d\x37\xd0\x96\x8c\xbe\xa4\x41\x7b\x00\x71\xe2\x7a\x63\x9f\xd7\x18\x7d\xab\x53\xbf\x36\xe6\xfb\xb8\x17\x63\xfe\xfe\xbb\x9f\x5e\x35\x10\x81\x1e\xd2\x18\x3b\x1a\x69\x20\x20\x91\x4c\x03\x81\x42\x52\x1a\x08\x34\xc4\xd2\x40\x50\x16\x98\x06\x52\xb5\x88\xbd\xef\x06\x4f\x95\x9f\x8e\xb4\x9d\x34\x10\xd3\xf9\x3b\x03\x11\xf6\x32\x90\x67\x00\x88\xb2\xa3\xc2\xc8\xc9\x6c\x8e\x97\x7c\x4a\x91\x9e\x64\x47\x60\xa2\xc1\x62\x2e\x12\x8a\x31\xb7\x09\x6e\x9a\xde\xf7\xa9\xfd\x82\x8e\xc0\x64\x94\x1d\x41\xbd\xe0\xa5\x23\xf7\x78\xd3\x12\xef\x23\xb3\xf3\x06\xbd\x6e\x8c\xc5\xa9\x32\x62\x5f\xe4\x2a\xde\xac\x16\xba\x17\x90\x30\x8d\x11\x3e\x38\x8d\x51\x39\x60\x8c\x50\x7f\x48\x63\x94\x8c\x25\xd2\x18\xc5\x97\x0c\xb9\x20\x94\x3c\x8d\xd1\xa1\xb5\x3d\xe2\xdd\x33\x56\xe8\xb3\x9f\x6a\x88\xb7\x69\x2b\x96\x9e\x58\x19\x0c\x2f\x32\xa9\xec\x27\xbf\xde\xd9\x8f\x43\x0d\x2b\x6c\xf7\x9c\x19\x64\x3f\x01\xc8\x11\xd4\xd2\xfd\x77\xfd\x4c\x68\xda\xbf\x6e\xf4\xf7\x01\xd6\x79\x7f\x5e\x35\x79\x17\x6f\x2e\x60\xb6\x21\x6e\x60\xdd\x51\x3e\x6c\xc0\xe4\xab\x34\x3b\x0d\xfc\x28\xed\x59\x8e\x4d\xb0\x40\xa4\x63\x17\xcb\x6f\xec\x90\x26\x10\xc7\xed\xf3\xd0\xae\xcd\xf9\xc6\x62\x57\x97\xd8\xea\xd4\x79\x67\x34\xbb\x00\x3d\x30\xb7\x69\x1d\x5d\xcc\x0c\x07\xb2\x8b\x61\xf5\x0e\x15\x15\x50\x76\xe1\xe0\x02\xd2\xb1\x3b\xce\x3c\xe4\x12\xdd\xab\x8b\x10\x3e\xbb\x98\x6e\x5b\x9d\xfa\x95\x9b\xc2\xf7\xf8\x83\xef\x7e\xfd\xe9\xa7\x0f\xaf\xc9\xc0\x67\xc8\xe6\x7b\xfe\x66\x48\xa5\x19\xce\x61\x25\x30\xa0\x71\x6f\xda\xf3\xc1\x1d\x78\x83\x3a\xc9\x8e\x85\x80\x4e\x82\x12\xd1\xdc\x32\xfa\xc4\x9e\xc3\x00\x91\x3d\x32\x8a\x8c\xe1\xb7\xe0\xb1\x0f\xc0\x92\x66\xcb\x6d\x9e\x01\x2c\x75\xd4\x82\x46\x5a\x25\xd3\xe1\x32\x9a\x75\xdd\x6d\x28\xd6\x20\x4d\xa9\x19\x77\xf4\x9e\xfb\x29\x13\x8e\xc3\x28\x79\xdc\x62\x3c\xc6\x6a\x71\x97\x7b\xd7\xfd\xe3\xaf\x1f\x7f\x82\x13\x7c\xd5\xa5\x78\x86\xb6\x1c\xdb\x28\xf3\xbd\x7a\xe8\x26\x93\x9b\xd1\xb8\x59\x3e\xd6\xd0\x36\x39\xae\xc3\x6c\x5b\xfb\xbe\x36\x88\x7b\x57\xfc\x32\x88\xd7\x5f\x5b\x73\x87\xb4\xfe\xd0\xf9\xa2\xac\x6f\xb5\x2c\x7e\x95\x61\x9b\xb3\x43\x59\x5f\x4a\x82\xff\x6a\x2f\xb0\xb5\xff\xf8\xe1\xd3\xcf\x7f\xc9\xdf\xef\x3f\xfc\xf0\x4b\xfe\xfe\xf2\xd7\x1f\xff\xf3\xf2\x7f\x01\x00\x00\xff\xff\x68\x11\x19\x44\x14\x0c\x01\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_svg() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_svg, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.svg", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_ttf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\xbc\x09\x7c\x53\x55\xfa\x3f\xfc\x3c\xe7\x9c\x9b\xa4\x2b\x4d\xb3\xb5\x4d\x97\x2c\x4d\xd2\x26\xdd\xd3\x24\xdd\x9b\xb6\xe9\x42\x53\xda\x02\x85\x36\x2d\x4b\x17\x5a\x0a\x14\x28\x14\x28\xc8\xaa\x20\x8b\x82\x03\xa8\xe8\xa8\xb8\xa3\xa3\xa0\x16\x71\x9b\x19\x67\x5c\x40\x05\x97\xd9\x74\x46\x1d\xc7\x41\xc1\x85\x4d\x47\x9d\x71\x46\xa1\xb9\x7d\x3f\xf7\x26\x29\x05\x75\xfe\xf3\x7b\xab\x21\xc9\xbd\xe7\xde\x9c\xf3\x9c\x67\xf9\x3e\xdb\x05\x04\x80\x18\x04\x60\x00\xb5\x9e\xea\x9a\x88\xdc\x88\x3c\x00\x8c\x04\x00\x77\xed\xf4\x19\x95\x9f\xc9\x4f\x2a\x00\xb0\x01\x80\xd4\x35\x4d\xcf\xce\x7b\x1e\xcf\x0d\x03\xd0\x5b\x00\xa0\xb3\x67\x71\xd7\xe0\xf4\xcf\xef\xcf\x06\xa0\xff\x02\x90\x2d\xec\x59\xb5\x42\x37\x0f\xd5\xcd\x80\x47\x66\x01\xc0\x5d\x7d\x83\xf3\x17\x7f\xac\xfc\xe0\x2b\xc0\x23\xdf\x01\x44\xdc\x36\xbf\x6b\x68\x50\xf8\x35\xc0\x23\x2d\x00\x20\x9b\x3f\xb0\xa6\x6f\xe1\xdc\x23\x53\x00\x22\x3b\x01\xe7\x97\xf4\xf7\x76\xcd\xfb\x4f\x66\x8c\x1e\x70\xe8\x2e\x00\x70\xf6\xf7\xf7\x76\x85\xf1\x61\x33\x01\x87\xde\x01\x80\xd4\xfe\xc5\x2b\x56\xa7\xbc\xf9\xeb\x21\xc0\xa1\xef\x00\x62\x0c\x03\x4b\x7b\xba\xea\x87\x1e\x90\x01\x6e\x49\x04\x90\xa5\x2e\xee\x5a\x3d\xc8\xbd\x13\x15\x0f\xb8\xd3\x0d\x00\xba\x25\x5d\x8b\x7b\x6b\x0e\x2f\xee\x07\xdc\xd9\x09\x40\x93\x07\x97\x0e\xad\xf8\xb4\xf2\xe1\xb3\x80\x3f\xdb\x04\x60\xfc\xe3\xe0\xf2\xde\x41\xd7\xca\xe2\x17\x00\x5f\xd8\x0d\x00\x8f\x8b\xb4\x10\x56\x2e\xfc\x11\x90\xc1\x9b\xf0\x26\x20\xea\xd1\x02\x88\x6d\xd8\x03\x88\xab\x71\x35\x20\xae\xc7\x0d\x80\xb8\x09\x37\x01\xe2\x5e\xbc\x05\x10\xdf\xc4\x37\x01\xc5\xeb\xc3\x21\x19\x32\x00\x3d\x35\x0d\x2d\x20\x13\xa8\x0a\x30\x36\x26\x9e\xc1\xa1\xc5\x3d\x83\x20\x13\x3e\x89\x2f\x16\x7c\x97\x01\xc1\xdf\xc2\xdf\x70\x3f\xde\x8d\xf7\xe0\xbd\x78\x1f\xde\x8f\x0f\xe0\x83\x78\x00\x1f\xc2\x87\xf1\x17\xf8\x08\x3e\x8a\x07\xf1\x5d\x3c\x84\x8f\xe1\xe3\xf8\x04\x8e\xe0\x61\x7c\x12\x8f\xe0\x53\xf8\xf4\xff\xaf\x6b\x3e\x26\x77\x90\x9f\x93\x3b\xc8\x9d\xe4\x4e\x72\x17\xd9\x4f\xee\x26\xf7\x90\x7b\xc9\x7d\xe4\x7e\xf2\x00\x79\x90\x1c\x20\x0f\x91\x87\xc9\x2f\xc8\x23\xe4\x51\x72\x90\x1c\x22\x8f\x91\xc7\xc9\x13\x64\x84\x1c\x26\x4f\x92\x23\xe4\x29\xf2\x34\x79\xe6\xff\xe7\x55\xe7\xc9\xb3\xe4\x59\xf2\x1c\x79\x8e\xfc\x92\xfc\x92\xfc\x8a\xfc\x8a\xfc\x9a\xfc\x9a\xfc\x86\xfc\x86\xfc\x96\xfc\x96\xbc\x40\x5e\x20\x2f\x92\x17\xc9\x4b\xe4\x25\xf2\x32\x79\x99\x1c\x25\x47\xc9\x31\x72\x8c\xbc\x42\x5e\x21\xaf\x91\xd7\xc8\x71\x72\x9c\x9c\x20\x27\xc8\xeb\xe4\x75\xf2\x06\x79\x83\xbc\x49\xde\x24\x6f\x91\xdf\x91\xdf\x91\xdf\x93\xdf\x93\x3f\x90\x3f\x90\x3f\x92\x3f\x92\x3f\x91\x3f\x91\xb7\xc9\xdb\xe4\x1d\xf2\x0e\xf9\x33\xf9\x33\xf9\x0b\xf9\x0b\x79\x97\xbc\x4b\xde\x23\xef\x91\xf7\xc9\xfb\xe4\xaf\xe4\xaf\xe4\x03\xf2\x01\xf9\x1b\xf9\x1b\xf9\x90\x7c\x48\xfe\x4e\xfe\x4e\x4e\x92\x93\xe4\x23\xf2\x11\xb9\x86\x5c\x43\x4e\x91\x53\xe4\x34\x39\x4d\x3e\x21\x9f\x90\x4f\xc9\xa7\xe4\x33\xf2\x19\xf9\x9c\x7c\x4e\xce\x90\x33\xe4\x2c\x39\x4b\xce\x91\x73\xe4\x3c\xb9\x40\x2e\x90\x2f\xc8\x17\xe4\x4b\xf2\x25\xf9\x39\x10\x88\x02\x23\x94\x00\x40\x15\xcc\x82\x04\xd8\x0c\x9b\x21\x1f\xae\x87\xeb\xc1\x81\x9f\xe2\x67\xe0\xc4\x33\xc4\x0a\x05\x24\x93\x94\xc1\x5a\x52\x41\xe6\xc2\x2e\xd2\x45\x96\xc3\x21\xb2\x92\xac\x82\xdf\x92\x35\x64\x0d\xbc\x48\xd6\x92\x5b\xe0\x25\x7a\x9a\x9e\x86\x0f\x80\xb2\xdf\x93\xe7\x81\x03\xe0\xee\xe0\xec\x00\x98\x12\x78\xa7\x7f\x84\x3e\x02\x13\xff\x3e\x02\x32\x16\x03\xba\x0e\x81\xdb\x85\xef\x83\x6b\x96\x0f\x09\x9f\xc6\xfc\xb2\x6e\xff\x9f\x01\x64\xdd\xc4\xa6\x03\xbc\xa7\x49\x10\xf0\x22\x6e\x44\x1c\x27\x70\x1d\x0d\xbe\x12\xc5\x6f\x20\xe9\x04\x2a\x7e\x4a\x04\x26\xf1\x88\x37\xde\x04\x12\xe8\x14\xe5\x20\x0c\xa2\x40\x0f\x1b\xe0\x5e\x38\x04\x8f\xc1\x0b\xf0\x2a\xfc\x1e\x3e\x83\x7f\x00\x8f\x93\x50\x8e\x26\xb4\x60\x0e\x4e\xc7\xb9\x38\x1f\x37\xe0\x46\xdc\x8b\xf7\xe1\x08\x7e\x85\x63\x44\x4b\x5c\xc4\x47\x9e\x27\xaf\x91\x13\xe4\x43\xf2\x4f\x8a\x94\xd2\x30\x3a\x89\x1a\xe9\x0d\x74\x27\xdd\x4b\xef\xa3\x23\xf4\x97\xf4\x04\xfd\x1d\xfd\x13\xfd\x0b\x33\xb1\x6c\x56\xcd\x9a\x58\x37\x5b\xca\x86\xd9\x56\xf6\x3b\xf6\x2e\xfb\x98\x7d\xcb\x21\x17\xc3\x29\x92\x31\xb9\x3c\xf9\xfa\xe4\xaf\x93\xff\x99\xfc\x7d\xca\x14\x5d\x84\x4e\xa5\x4b\xd6\x19\x74\x66\x5d\x8e\xce\xae\x2b\xd2\x95\xe8\x3c\xba\x15\xba\x8d\xba\x07\x75\x0f\xeb\x0e\xe9\x39\xbd\x42\xaf\xd6\x1b\xf4\x66\x7d\x96\x7e\x8e\x81\x18\x24\x86\x49\x86\x58\x43\x82\x21\xd9\x60\x33\xd4\x19\x3a\x0d\xbd\xa6\xd7\xff\x7d\x94\x1f\x1b\xf3\x8f\x8d\x05\x25\x5d\x58\xa1\x0e\x0c\x70\x2f\xdc\x07\x8f\xc1\xe3\xf0\x22\xbc\x06\x7f\x80\xcf\xe1\x2b\x18\xc3\x18\x8c\x45\x33\xa6\x61\x2e\xb6\x60\x27\xf6\x8b\x2b\xbc\x17\x9f\xc0\xaf\xf0\x22\x89\x0b\xae\xf0\x55\x72\x82\xbc\x47\xfe\x49\x61\x7c\x85\x5b\xe8\x4e\x7a\x13\xbd\x99\x3e\x40\x0f\xd3\x5f\xd1\xd7\xe9\x1f\xe9\x5f\x18\x30\x33\xcb\x61\x35\xac\x99\xf5\xb0\x41\xb6\x9a\x6d\x67\xbf\x67\xef\xb1\x53\xec\xdf\x1c\xe1\xe4\xc9\x90\x5c\x96\xbc\x29\xf9\xde\xe4\x6f\x92\xff\x95\x32\x45\x07\x3a\x85\x4e\xa3\xd3\xe9\x4c\xba\x1c\x5d\x9e\xae\x70\x7c\x85\x0f\xe8\x1e\xd6\x1d\xbc\x62\x85\x1d\xc1\x15\xca\x27\xac\x70\x5e\x70\x85\xa3\x82\xe6\x61\x91\x4c\x32\xf6\x2d\xc0\xd8\x29\xac\x1a\x7b\x11\x5d\x63\x2f\x00\xa0\x15\x00\x4d\x00\xa8\x17\xb8\x0b\x00\x93\x00\x50\xd0\xf3\xea\x31\xd5\x18\xe5\xff\xcd\x9f\xc5\x36\x81\x34\x7c\x0f\x5f\x09\xbb\xfc\x7f\xf1\x1f\xf0\xbf\xea\x3f\xec\x3f\xe0\x7f\xd0\x7f\x8f\xff\x0e\xff\x36\x80\xb1\xf9\x63\x7d\xc2\x08\xbf\x14\x60\xac\x76\xf4\xd2\xe8\x77\x00\xa3\xcf\x00\x8c\x3e\x0e\x30\xfa\x00\xc0\xe8\x3d\x00\xfc\x1e\x00\xfe\x26\x80\xd1\x5a\x80\x4f\x1b\x3e\x8d\xfc\xe4\x37\x9f\x9c\xff\x64\xea\x27\x67\x3f\xc1\x8f\xdb\x00\x3e\x6e\xfa\xb8\xf1\xe3\x86\x8f\xab\x4e\x2b\x3e\x2e\x3e\x1d\xf1\x71\xde\xc7\xf4\xa3\xef\x01\x3e\x7a\x1b\xe0\xa3\xe1\x8f\x16\x7e\xd4\xff\xd1\xec\x93\x7b\x3e\x9a\xf6\x91\xf9\xe4\xe6\xbf\x3f\x72\x72\xf8\xe4\xaa\x93\x4b\x4f\x0e\x9c\xec\x3c\xe9\x39\x99\x79\xd2\xfa\xc1\xab\xe1\xbf\x23\x37\xe3\x6d\x01\xee\x15\xff\xde\x9b\x20\x16\x7f\x00\x80\xbf\x02\x20\x03\xc0\xe4\x09\xaf\xce\x89\xb2\x83\xdd\x38\x00\x3f\xf1\x87\xed\xc1\x11\x1b\x00\x70\x5f\xf0\xd8\xe3\x00\xf8\x6f\x00\x92\x0c\x40\xdc\x00\x44\xb0\x89\x7f\x01\x20\x9f\x01\x90\x8b\x57\xdf\x81\x7c\xf9\x63\xf7\x25\x7f\x0f\xbc\xfe\x0f\x7f\x94\xc5\xe0\x39\x3c\x8f\x17\xf0\x0b\xfc\x12\xff\x01\x1b\xf1\x33\xbc\x88\x97\x70\x14\xfd\xc8\xe3\x18\x6c\x82\x6b\x09\x10\x24\x84\x50\xc2\xe0\x3a\xd8\x4c\x38\x22\x21\x52\x22\x23\x61\x24\x1c\xb6\xc0\xf5\x44\x45\xd4\x44\x43\xe2\x48\x3c\x49\x80\xad\xb0\x8d\x68\x49\x22\x49\x22\xc9\x24\x05\xb6\xe3\xa7\xf4\x34\xec\xc0\xcf\xe1\x06\xb8\x11\x76\x92\x46\xd2\x44\x9a\xc9\x54\xd8\x45\xa6\x91\xe9\xa4\x85\xcc\x20\x33\x49\x2b\x69\x23\x3e\xb8\x09\x7e\x46\xda\x49\x07\x99\x45\x66\x93\x39\x64\x2e\xe9\x84\xdd\xb0\x87\x74\x91\x6e\xd2\x43\xe6\x91\x5e\xd2\x07\x7b\xe1\x66\x41\x9f\x91\x35\x64\x2d\x59\x47\xd6\xe3\x19\x3c\x8b\x5f\x91\x08\x72\x2b\xd9\x47\x6e\x23\xb7\x93\x21\xb2\x82\x0c\x93\xd5\x70\x10\x0e\x91\x7f\xc0\x63\xe4\x2b\xf2\x35\xf9\x06\x1e\x87\x27\xc8\xf7\xe4\x22\xb9\x04\x23\x64\x94\xf8\xe1\x30\xe1\xc9\x18\x3c\x49\x01\x8e\x50\x84\xa7\x28\xa1\x14\x9e\xa6\x0c\x9e\x81\x67\x29\x47\x25\x54\x4a\x65\x34\x8c\x86\xd3\x08\x1a\x09\x2f\xd1\x68\x3a\x09\x5e\xa6\x51\x70\x14\x8e\xc1\x2b\xf0\x2a\xbc\x06\xc7\xe1\x04\x8d\x81\xd7\xe1\x0d\xda\x44\xd5\xf0\x7b\xaa\x81\x3f\xd0\x38\x1a\x4f\x13\xa8\x16\xfe\x08\x7f\x82\xb7\x69\x12\x6d\xa6\xc9\xf0\x0e\x4d\x81\x3f\x53\x1d\xd5\xc3\x5f\xa8\x01\xde\x85\xf7\xe0\x7d\x6a\xa4\x89\xf0\x57\x9a\x4a\x4d\xd4\x4c\x2d\x34\x8d\xa6\x53\x2b\x7c\x40\x6d\x34\x83\x66\xc2\x67\xf0\x39\x9c\x81\xb3\x34\x0b\xce\xc1\x79\xb8\x40\xb3\xe1\x0b\xf8\x12\xfe\x01\x5f\xd1\x1c\xf8\x9a\xe6\xd2\x3c\xf8\x86\xda\xe1\x9f\x34\x9f\x4e\xa5\x0e\xe0\xa9\x13\xc6\xa8\x8b\x16\xd0\x42\x5a\x84\x80\x88\x84\x16\xd3\x69\xb4\x04\x29\x32\xe4\xe8\x45\x3a\x9d\xb6\xa0\x02\x95\xa8\x42\x35\x9d\x41\x67\xa2\x19\x2d\x74\x8c\x01\xfd\x9e\x7e\x87\x69\x98\x8e\x56\xb4\xd1\x4b\x74\x14\x33\x30\x93\xfe\x93\xfe\x8b\xb6\xd2\x36\xfa\x29\xfd\x0c\xb3\x30\x9b\xfa\x29\x8f\x39\x98\x4b\x3f\xa7\x67\x30\x0f\xed\x98\x8f\x0e\x74\xa2\x8b\xfa\x68\x3b\x3d\x4b\xcf\xd1\x0e\x3a\x8b\x49\x99\x8c\x9e\xa7\x17\xb0\x00\x0b\xe9\x17\xf4\x4b\x2c\xc2\x62\x2c\xa1\xff\xc1\x52\x2c\xa3\xdf\xd2\x7f\xd3\xd9\x74\x0e\x9d\x8b\xe5\xe8\x66\x1c\x93\x60\x05\x56\x32\x64\x84\xfe\x83\x7e\xc5\x28\x63\x58\x45\x17\xd2\x05\x74\x11\x1d\xa0\x8b\xe9\x12\xba\x14\x3d\x58\x4d\xbf\xa6\xdf\xd0\x2d\xf4\x7a\xac\xc1\x5a\xba\x95\x6e\x63\x61\x2c\x1c\xeb\xe8\x76\x16\x41\x77\xd0\x1b\x70\x1e\xf6\xb2\x28\x16\x89\x6b\xe8\x27\xb8\x16\x24\x24\x1c\x02\x30\x07\xaf\x16\x2c\x08\x19\x30\xf2\xff\xe0\x7b\x0c\x71\x3f\x30\xe0\x40\x02\x52\x90\x41\x18\x84\x43\x04\x44\x42\x14\x44\xc3\x24\x88\x01\x39\xc4\x82\x02\x94\xa0\x02\x35\x68\x20\x0e\xe2\x21\x01\xb4\x90\x08\x49\x90\x0c\x29\xa0\x03\x3d\x18\xc0\x08\xa9\x60\x02\x33\x58\x20\x0d\xd2\xc1\x0a\x36\xc8\x80\x4c\xc8\x82\x6c\xc8\x81\x5c\xc8\x03\x3b\xe4\x83\x03\x9c\xe0\x82\x02\x28\x84\x22\x28\x86\x12\x28\x85\x32\x28\x07\x37\x54\x40\x25\x54\x81\x07\xaa\xa1\x06\x6a\xa1\x0e\x26\x43\x3d\x78\xa1\x01\xa6\x40\x23\x34\x41\x33\x4c\x85\x69\x30\x1d\x5a\x60\x06\xcc\x84\x56\x68\x03\x1f\xb4\x43\x07\xcc\x82\xd9\x30\x07\xe6\x0a\xd6\x53\x90\x58\xfc\x1a\xff\x89\x17\x71\x8c\x50\x22\x21\x1c\x91\x92\x30\x22\x23\xe1\x24\x92\x44\x93\x28\x32\x89\xc4\x90\x58\x22\x27\x0a\xa2\x24\x2a\xa2\x21\x6a\x12\x47\x12\x48\x3c\x49\x24\x5a\x41\x46\x71\x09\x2c\x85\x6e\xe8\x81\xf9\x38\x08\x2b\x61\x33\x2c\x86\x05\xb8\x11\x86\xa0\x1f\x77\xc1\x46\xb8\x16\x6f\x80\x41\xbc\x09\x7f\x06\xbd\xb0\x02\xaf\xc7\x6d\xb8\x15\x8e\xe2\x8d\xb0\x10\xd6\xc0\xb3\xb0\x05\xb6\xc1\x06\xe8\x82\x01\xdc\x01\xb7\xe2\x4e\x78\x02\x16\xc1\x35\xb8\x1c\x28\x9e\xc3\x2f\x90\x17\x24\x56\xd8\x37\x5c\x84\x03\x38\x1f\xfb\x61\x2b\xee\x26\x3a\x72\x13\xae\xc2\xb5\xb8\x02\x57\x8a\x9b\xb0\x14\x56\xe1\x02\x5c\x8c\x43\x78\x01\xff\x85\xe7\xf1\x5b\xfc\x06\xff\x83\xdf\xe1\xf7\xf8\x6f\x41\x03\x01\xe0\x25\x51\xf7\x00\xdc\x00\x77\xc1\xfd\xb0\x04\xee\x86\x7b\xe0\x5e\x18\x86\x07\xe0\x3e\xd8\x2f\xec\x33\xc6\xd3\xaf\xe8\x75\x12\xc1\xc3\x08\x03\x8d\x5b\x49\x04\xb6\xf0\x51\x44\x2c\x83\x06\x79\xac\x5c\xce\x64\x71\x36\xa4\x46\xb9\x9d\x13\xfe\xc1\xcf\x93\x0e\xff\x0e\xef\x4c\x3c\xfc\x16\x77\x0b\x3f\x8b\xc4\x0c\x08\xff\x88\xfc\x92\x0e\xc0\xae\xe7\x46\x40\x0b\x29\xb0\xc2\x3b\xa2\x69\x6e\x73\x5b\xa2\x23\x08\x8d\x24\x04\x90\x42\x97\x0c\x25\x92\x12\xef\xa4\x70\xc2\x18\xe7\x0b\x93\x12\x8e\x2b\xf7\x46\x21\x62\x29\x36\x68\xdd\x26\xe1\x80\x70\x8e\x72\xac\xfb\x87\x57\x05\xc7\xf9\xdc\x09\x29\xc9\x49\x89\xda\x84\xf8\x38\x8d\x5a\xa5\x54\xc4\xca\x83\x7f\x31\x31\xb2\x24\x1b\x1a\xa9\x51\x61\x74\xe8\xc5\x97\x9d\xda\x85\x97\xca\x28\xbe\x8c\xd4\xae\x30\x92\x1d\x27\x26\x1f\x99\xfc\x09\x92\xfc\xf3\x18\xe6\x7d\xb2\xfe\x44\xfd\x53\xde\xf7\xff\x93\x7f\xd2\x3f\xf9\x48\xf7\x09\xfb\x09\xbc\x83\xef\xc3\x3b\x1e\x41\xc3\x41\xbc\x97\xef\x14\x5e\x07\xf9\xbf\x3f\xc2\xf7\x91\x2a\x34\x08\xfc\xbe\x71\xcc\xc6\x56\x48\x6e\x87\x72\xa8\x76\x57\xc6\x4e\x22\x04\xf2\xb2\x09\xe5\x48\x3d\x20\x61\x04\xd9\x20\x30\x8e\x30\x6e\x89\x48\x54\x20\x3d\xc0\x51\xca\xb5\x02\xc7\x51\x1f\x50\x8e\x4e\x29\x2b\x29\x70\xe5\xe6\x24\x26\xc4\x69\xe4\x31\x12\x99\xd2\x86\xf9\x59\xc4\x92\x45\x1d\xf9\x65\xc4\xe5\xb0\xab\x92\xa9\x4a\x9f\x6f\x36\x1a\xa2\x89\x4a\x99\x4c\x34\xc9\x54\xa5\x8c\x26\x52\x95\xd1\x91\x45\x1d\x7a\x65\x32\xb1\xe7\x39\xe9\xdc\x78\x97\xaf\xbc\xf7\xa1\x95\xee\xa2\x85\xfb\x66\xdd\xdb\xbe\xbb\xd7\xc5\x9f\x5b\x32\xc7\xee\xcd\xd1\x68\x5c\xed\x55\xbd\x0f\xae\x2c\x2f\x1a\xb8\x7d\xce\x3d\x33\xee\x5d\x5b\x8f\x1a\x6b\xd5\xcc\xcc\x45\x4b\x70\x83\xb5\xc2\x99\xa9\x4e\x6d\x5e\xb8\xab\x6b\xc6\xae\x7e\x77\xd8\xbb\xef\x47\xd6\x0f\xdf\x37\x6f\xcd\x7a\x6d\x6e\xa5\xc5\x52\x9a\x9f\x1d\x67\x9e\xba\x68\x57\x67\xdb\xae\xbe\xd2\xb0\x63\xc7\x64\xc5\x83\x07\x57\xd7\x75\x15\xc6\xcd\x03\x00\x0e\x8c\x63\x17\xd8\x23\xdc\x2b\xa0\x02\x1b\x54\x40\x2b\x74\x40\x99\xbb\xb8\xa3\x9d\x10\xea\x43\x89\x94\xd4\x03\x01\x64\x04\x7b\x80\x81\x54\xc2\xa4\x3d\x40\x29\x08\x68\xd7\xe3\x05\x89\x84\xeb\x00\x8e\xab\xe6\x1a\xd2\x03\x7f\xa9\x32\x59\xa2\x4d\x91\x5f\x46\xec\x79\xc9\x44\x25\xac\xce\x68\xc8\x22\x0e\xbb\xb8\xb6\x32\xe2\x70\xe4\x67\x11\x71\xf9\xf8\x3f\x8c\xe1\x2c\xa8\x31\x1a\x6b\x17\xd5\x4e\x5e\x54\x63\x34\xd6\x2c\xac\xab\x5b\x54\x9b\xfa\x7c\xb8\xc6\xac\xd5\x9a\xd4\xe1\xe1\x1a\x53\xa2\x36\x55\x13\x8e\xbb\x53\x83\x43\x0c\xb5\x0b\xeb\xea\x06\x6a\x53\x9f\x8f\x8c\x37\xc5\xa7\x98\x95\x92\x70\x8d\x49\xab\x35\xab\xc3\xf9\x15\xdb\x49\xee\x76\x76\xa8\xa8\xaf\x21\x33\xb3\xa1\xaf\x68\x4a\x61\xef\x94\x8c\x8c\x29\xbd\x85\x1a\x9b\x5e\xa1\xd0\xdb\x34\x53\x42\x1f\x46\x0f\x14\xf6\x09\xa7\xfa\x0a\x1b\x0b\xfb\x1a\x32\x32\x1a\xfa\x82\x63\xac\x71\x8d\x1a\xab\xf8\x41\x73\x63\x05\x63\x15\x40\xc1\x3b\x76\x9e\xbd\xc3\xbd\x02\x56\x28\x84\x06\x58\xe1\x56\x94\xc6\x71\x14\xb9\xec\x2c\x5d\x3c\x63\x68\x44\xc2\x68\x7d\x40\x44\x0c\xc0\x71\x21\x92\x21\x92\x0e\x8a\x84\x94\x7a\x25\xc8\x58\xf0\x33\x69\xd0\xba\x75\x57\x0e\xf2\x41\x68\x0c\xed\x00\x4a\xeb\x68\x83\xcf\x3d\x29\xc3\x36\xb9\xd6\x56\x98\x51\x68\x54\x26\x67\x48\x65\x71\x22\xa5\x5d\x66\xb3\x23\x44\x4c\x81\x9b\xa4\x0a\xa7\xd3\x61\x57\x4a\xa4\x1a\xbd\x45\x22\x11\x48\xcb\xe5\x39\x5d\x28\x8d\xa6\x02\xcf\x51\xa5\x5a\xe3\x2a\x23\xf9\x21\x22\x7b\x4d\x9e\xb9\xc5\xc5\x15\xae\xbe\xdd\x3e\xef\xda\xd6\x1c\x5d\x81\xd7\xd6\xfc\x1f\x9d\xf1\xcb\xc9\x8d\xcf\xf3\x2f\x57\x34\x3c\x30\xbf\xf7\xfe\x65\x25\xf8\x62\xfe\xbc\x2c\xfe\x7b\x59\xb2\x59\x25\x8d\xcb\x28\xd7\x98\x74\xb3\x53\x74\x51\xd1\x09\x26\x8d\x31\xdf\x20\xc7\xa1\xca\x25\x73\x5b\xd2\x7d\xf7\xcc\x98\xb9\xb3\xdb\xe1\x9c\x7d\x8d\xc7\xde\xde\x54\x93\x52\xc1\x1f\x2d\xdc\xde\xb8\xe3\x8b\x39\x5f\x4d\xb7\x3b\x8a\xfa\x77\x4f\x4f\x4c\xc0\x99\x92\xa4\x82\xfc\x6c\x55\x9a\x27\x37\x91\x5e\x97\xd9\x61\xaf\x56\xda\x2c\x29\x61\x71\x59\xa9\xea\x38\xab\x0b\x00\xf1\x04\xfd\x98\xdc\x23\xea\x29\x85\x5b\xd0\x38\xe8\x83\x80\x8e\x92\x13\x99\x3a\xa0\xa1\xc8\x3d\x89\xbf\xfa\x0b\xb7\x9c\x5f\x4a\x52\x44\xf5\x88\x3e\xde\x45\xaf\x95\x4c\x07\x2d\x48\x8e\x28\xa5\x98\x63\xc3\xfc\x32\xe6\xd2\x44\x13\x81\xb9\x62\xd5\x6a\x8d\x34\x8b\x73\xa0\xcf\x56\xdf\xb3\x64\xa5\xcb\x59\x30\xe8\x2b\x28\xf0\x0d\x16\x38\x5d\x2b\x97\xf4\xd4\xdb\x48\xf3\xae\xef\xdf\x7e\x7c\xeb\xec\xf8\xdb\x6d\x7b\xde\xe5\x4f\x3d\x97\xf0\x4b\xfe\xd4\xbb\x7b\x6d\xfb\xe2\xe7\x5c\xff\xf8\xdb\xdf\xdd\x24\xdc\xbf\x84\x77\xd1\x65\x57\xdc\x5f\x19\xcd\xa4\x96\x32\x12\xeb\x70\xe4\x13\xb3\xd9\xe2\x4a\xe6\x54\x74\x59\x46\x43\xef\xf2\xd5\x85\x0e\xd7\x60\x7b\x41\x51\xfb\x52\xa7\xa3\x70\xf5\xf2\xde\x86\x0c\x52\xb4\xe3\xdb\x77\x9e\xd8\xd1\x19\xbf\xcf\xba\xf7\x2f\xa8\xfb\x65\xc2\x73\xa8\x7b\x6f\xaf\xf5\xd6\xf8\xce\x1d\x4f\xbc\xf3\xed\x0e\x41\xe7\xdc\x01\x23\xec\xe7\xec\x08\x44\x43\x82\x5b\x13\x1d\x15\x19\x11\x1e\x26\x93\x4a\x28\xc1\x48\xa8\x05\x80\x05\x4a\x94\xa9\x6c\x68\x72\x71\xd4\x4e\x4d\x1a\x0e\xa5\x94\x5a\x88\x81\x5f\x5d\x89\xc3\xa9\x1f\x58\x70\x45\x25\xbf\x1c\x23\x9f\x7c\xfb\xed\x23\x64\x7d\xe7\x5b\x0f\xe1\x13\x7c\xfd\x03\x7f\xec\xe0\x7f\x73\x2d\xae\xe0\x6f\x5b\x0b\x08\x3d\xb0\x97\x4d\x66\xcf\x40\x04\x98\xdd\x46\xe0\x80\x70\x33\x18\x02\x45\x24\x80\x5d\xc0\x71\x02\xab\x71\x64\x4a\x40\xc7\x4a\x64\x09\x36\xd4\xab\xf4\x72\xbd\x5c\xef\xd0\xcb\xf5\xe4\x03\x5c\xc2\xef\xe5\xff\xc3\xef\xc1\xa5\x18\x46\x33\x78\x7e\x1e\xde\xc5\xe3\x0d\x80\xd8\xcf\x2f\x24\xaf\xc1\x3f\x21\x0a\x62\xdc\x51\x12\x8e\x04\x66\x9b\x28\xcc\xd6\x24\x30\xa2\xa5\x8c\x3a\x1c\x7a\xf2\x6a\x8a\xd3\x6b\xbb\x59\xa1\x8f\x8b\x46\x4e\x5d\xb8\x7a\x70\x9e\xa5\x21\xb5\x7e\xda\x2c\xd7\x39\x81\xb6\x09\x24\x96\x75\x90\x7f\x02\x85\x38\xb7\x4a\x04\x2b\x33\x00\x11\x7c\x02\x5d\xa6\xc8\x63\xc4\x4d\xd7\x3b\xf4\xac\x63\xf4\x05\x5a\x41\x62\x3f\x16\xae\x79\x68\xec\x02\x4d\x43\x1f\x28\x42\x3c\xd2\x01\x88\xd5\xd8\x90\x96\x2a\x0c\x37\x4d\x90\x05\x81\xf9\xf1\xa1\x84\xbc\xba\xcc\xcc\xba\x5c\xad\x36\x57\x78\xcf\x4b\xb8\xcf\x52\x95\x9b\x94\x94\x5b\x65\x31\x57\xe6\x26\x26\xe6\x56\x0a\xbf\xf5\xb7\xb1\xcd\x0c\xb8\x11\xa0\x81\x7b\x22\x0c\x09\x1b\x8f\x0d\x81\x29\x70\x7a\xd4\xe3\x49\xde\x4f\xf4\x48\xd7\x4b\x32\x81\xc2\xae\xb1\xf3\xac\x42\xd4\x99\x49\x60\x82\xc9\xee\xb0\x94\x64\x8d\x9a\x51\x82\xf5\xde\x91\x98\xe6\x36\xb7\x0a\x08\x11\xe7\xe5\xf1\x86\xd4\x65\x35\x34\x68\x7f\xec\x78\x1d\x34\xf8\x9e\x31\xa7\xa5\xa7\x8a\x36\x38\xa4\x0d\xe5\xa1\x65\x70\x68\x36\x1b\x0d\x12\x15\x87\x6a\xb5\x3d\xcf\xe9\x60\x15\x15\xd7\x8c\x2c\x59\x3c\xb2\xb6\xaa\x72\xed\x13\x8b\x97\x8c\xac\xad\xf4\xcf\xc3\x2d\xb4\xb3\xb3\xab\x13\xb7\xf0\xeb\xb8\xce\x39\xdd\x73\x89\x75\xd7\xbb\x7b\xea\xeb\xf7\xbc\xbb\x0b\x67\x85\x3e\x7d\x82\xfa\x9b\x6f\xda\x77\xd7\x21\xfe\xa3\xdd\x37\xde\xbe\x5f\x58\xe2\x63\x00\xd4\xc9\x8d\x80\x04\x94\x6e\x39\xc7\x04\xd7\xa5\x0e\x00\x4a\xa1\x21\x46\xd8\x43\xbd\x5e\xce\x39\x4c\x76\xea\xe4\x3f\xe7\x77\x93\x6b\x26\xb1\xd9\x5b\xbe\xf9\x54\xb8\xae\x06\x80\x55\x73\xc7\xc0\x00\x59\x6e\x1b\x41\x60\x58\x0f\x04\x19\x12\x36\x08\x88\xa2\xb6\xf2\x78\x81\x31\x61\x17\x85\xbb\x25\xa4\xc6\xda\x62\x38\x59\xbc\x4d\xaf\x77\x60\x19\x0d\x68\x1e\x89\x4a\x3f\x51\x69\xa1\x9e\x55\x8f\xa6\xe0\xbb\xae\x86\x6c\x55\xa2\xbd\xd6\x36\xb4\x8c\x3f\x5b\xbf\xed\x85\x15\x4b\x0f\x0e\x95\x64\x4e\x5f\x51\xcb\x7f\x49\x36\xfe\x16\x2f\x96\x74\x4f\xad\xd1\xe7\x36\x38\x12\x37\x0d\x75\x3d\x76\x9d\xb7\x6c\x70\xff\xdc\xba\xcd\x9b\xae\x9f\xcc\xff\x1d\x10\x3a\xc7\x2e\xb0\x3a\xee\x18\x94\x08\xb6\x3b\x19\xa5\x20\xce\x0b\x90\xc0\x20\x70\x52\x89\x94\x93\x0c\x02\x80\x94\x03\x69\xcf\x84\x79\x4a\x24\xac\x03\x18\xab\x66\x0d\x25\x45\xf9\x79\x59\x99\xe9\x96\x54\xa5\x59\x27\x13\xf6\x42\x20\x77\xc8\x16\x5d\x31\xdb\x80\xdd\x16\xf7\x29\x68\xb5\xc5\x71\x46\x3c\x70\xdb\xf2\x25\xf1\x79\x53\xec\xd6\xc9\x2e\x1d\x7f\x6e\xf2\xa6\xc7\xe6\x0d\x3c\xb5\xa9\x36\xd1\xd9\x9c\x5f\xea\x2b\x4a\x6c\xdc\xfe\xeb\x81\xd9\x87\x6f\x98\x8e\x6a\x5d\x71\x73\xce\xc2\xd5\x86\x8a\x8e\xc2\xdb\xe8\xb4\xa1\xd9\xb6\x5a\x7b\x62\x5c\xa6\x3b\xcd\xb7\x77\x41\x91\x63\xc1\x9d\x7d\xd9\x1d\xd3\xaa\xe3\xd5\x9e\xd6\xfe\xa2\xbe\x7b\x17\x17\xda\xe7\xdf\xb5\xd0\x5a\x6b\x4f\x1a\xec\x2c\x6e\x71\x26\x04\x70\x7b\x31\x00\xeb\xe6\x46\x20\x1c\xa2\xc1\xe6\x4e\x8b\x42\x60\x32\x44\x20\xf5\xdc\x65\xc9\x66\xac\xc4\x0b\xa2\x71\x11\x10\x5e\x50\xb4\xed\x2a\xa3\x20\xda\x16\xd4\xa3\x5e\x2e\xa5\xbf\x7c\xe4\x11\xfe\x9c\xff\x81\x08\x32\x0f\x13\xfc\x37\x63\xab\x96\x24\x7d\xcc\x1f\xc3\x92\xc7\xe9\xab\xa3\x8b\x49\x52\x8e\xb0\xdf\x2b\xc7\x2e\xb0\x1a\x6e\x04\xac\x50\xe2\x2e\xe4\x50\x42\xac\xc8\x24\xa4\x1e\x98\x84\x93\x30\x6e\x10\x08\x48\x18\x91\xf4\x04\xe5\x16\x4a\xbc\x02\x1c\x12\xa8\x5b\x4d\x1b\xd2\x0c\xca\x34\xa3\x5c\x2e\x95\x69\x6d\x0a\x85\x5e\xa5\xa7\x4e\xe7\x44\xe1\xb4\xe8\x05\xa6\x2e\x23\x21\x32\x4b\xef\x9c\x4e\xd3\xfc\xbf\x31\xa6\x2c\xaf\x5f\x70\x60\x59\x49\xd1\xea\x67\xd6\xcd\x79\x62\xfb\x0c\x8a\xb1\xe1\x2b\x3b\x0a\x9a\x72\x35\x49\x25\xed\xa5\xe9\x25\x59\xa9\x31\xe4\x2d\x72\xfa\x02\xff\x62\xac\xb9\x6a\xc3\x33\x43\xdd\x23\x5b\x1b\x0b\x06\xf6\xf7\xce\xed\xb7\xd6\xf7\x15\x17\x75\xd5\x98\xa3\xd5\x49\x31\x02\x9d\x16\x8c\x5d\x60\xf5\xdc\xf3\xa0\x87\x7c\x70\xbb\x4b\xa5\xc8\xd0\x84\x1c\x13\xf0\x9c\x14\x19\x87\xac\x47\x70\x70\x3a\x24\x28\xf2\x02\xc7\x91\x0e\x20\xa4\x9a\x34\x18\x0d\x00\x19\x56\x43\xbe\x31\x1f\xf4\xa0\x4b\x4b\xd3\xcb\x64\x1a\x1b\xaa\xc4\x39\x96\xd1\x89\x4b\x70\x38\xf2\x63\x9d\xa9\x76\x6a\x90\x48\x55\x21\x04\x93\x9f\x45\xe8\xd2\x98\x25\x8f\x0c\x57\x87\x69\x4a\xbc\x6d\xf6\xfe\x3b\xfb\xed\x9e\x0d\x4f\x0d\xae\x7c\x7e\x73\xed\x9c\x5f\xa1\xf2\xe9\x7f\x78\x87\x92\xf4\x25\xd3\x72\x72\x9b\x0b\x92\x93\x0b\xa6\x72\xcf\x7f\x5e\xb4\xf0\x96\x8e\xf8\x5c\x4b\x5c\xd3\xb6\x23\x3d\x0b\x9f\xd9\x3a\xa5\xf5\x8e\xb7\xd7\x2f\x7a\x0c\x2d\xef\xae\xf1\xe7\x34\x97\x4f\x6b\x5e\xdd\x94\x96\x5e\xd7\x53\x5c\x3c\x6f\x72\xba\xb0\x27\xd5\x00\xcc\x23\xca\x6e\x8a\x3b\x51\x80\x0b\x58\x1f\x02\x0d\x25\xde\x80\xd8\xc9\xe5\x72\x2a\x4c\x5a\xd8\x69\x87\x9e\x79\xfc\x27\xf8\x0f\x48\x81\xdf\x44\xc7\x38\xd5\xc5\xf3\xec\xad\xd3\x00\x14\x16\x8f\x5d\x60\x65\xdc\x31\xd0\x83\x1d\xaa\xc1\xe1\xce\x53\x51\x42\x38\xac\x17\xcc\x04\xe5\x48\x0f\x30\xf6\x43\x35\x56\xe9\x2e\x2a\xc8\xc9\x4a\x33\x27\x27\x5a\x25\x82\x69\x52\x4a\xa4\x6a\xf5\x38\x3d\xae\x84\x24\x34\x24\x40\x4a\x71\xa3\x69\x50\xf8\x83\x94\x62\x29\x8b\x66\x2f\x5c\xef\xdd\xfc\xe4\xfc\xfe\x23\x5b\xbc\xfa\x92\x19\x8e\xd9\x0b\x3d\x6b\x1e\xee\xe9\xf9\xc5\xda\xea\xef\x92\x5d\x53\x72\x72\xa6\x38\x93\x97\x77\x65\x35\xb8\x52\x92\x12\xb2\xab\xac\x33\x66\xc5\x65\x57\x59\xad\x95\x59\xf1\x2c\x73\xe1\x81\xdc\xbc\xa7\xd6\xcc\xbf\x6b\x81\xd3\xb9\xe0\xae\xf9\x25\x8b\x7c\xb5\xf1\x39\x07\x16\xf6\xdc\xd6\xef\x70\xf4\xdf\xe6\x97\xe7\x35\x17\x26\x27\x17\x36\xe7\xcd\x5b\x9e\x54\xd0\x44\x0e\x67\xd4\xd9\x13\xfb\x3b\x32\x26\xe7\x27\x25\xe5\x4f\x0e\xc8\x50\xd7\xd8\xbf\x58\x36\x77\x0c\x52\x20\x1f\xaa\xdc\x6e\x13\x32\x8e\x43\x64\xa4\x5e\x8a\x0c\x04\xb5\xd6\x13\x62\x08\x8f\x57\x82\x02\x9b\x04\x78\x5a\xaf\x43\xc8\xb0\xea\xf2\xf5\xf9\xc9\x89\x0a\x79\x98\x14\x52\x30\x45\x26\x53\xda\x4c\x79\x65\xc4\x15\x40\x5c\x8e\xcb\xe8\x96\x48\x98\xd1\xe8\x40\xe1\xdc\xb8\x32\x51\x26\x13\x6c\x18\x7c\x70\x69\x69\x98\x75\xcb\x9c\xfe\xbb\x17\xb9\xaa\x36\x1c\x19\x5c\xfe\xcc\xc6\xaa\x99\x4f\xf1\xe7\x5e\x52\x61\xac\xb9\xc2\x61\x89\xd4\x17\x35\x66\xe6\x4e\xc9\x4f\x4c\x70\x34\x7f\x98\xd3\xb1\x79\xba\xb5\xa4\x61\xcb\x91\xf9\x0b\x7f\xbd\x73\x6a\xdb\xdd\x7f\xbd\xae\xf3\x71\xfe\x6f\x7f\x1e\x3e\x8b\x7f\x52\x5b\x1c\x29\x3d\xcd\xab\x9b\xd3\xb2\x9b\xe6\x17\x14\xf4\x35\x64\xc2\xd8\x18\x3e\x35\x76\x81\x3a\xd9\xcd\xc4\x0c\x31\xd1\x80\x52\x88\x81\x68\x5a\x04\x61\x87\x11\x9f\xa3\x45\x23\x76\x9b\x38\x86\x5f\x48\x67\xb3\x9b\x89\x05\x62\xc0\x41\x8b\x50\x02\xd1\x0d\x00\x61\x87\x21\x34\x06\x10\xee\x82\xdd\x4c\xce\x9a\x40\x06\x92\x23\x52\x26\x60\x1f\xa9\x86\x93\xa3\x03\xe5\xf8\x85\xc7\x43\x52\x47\x6f\xa4\x2b\xc9\xb6\xf8\xb8\x67\xf9\xaf\x71\xe9\xc7\xb8\x94\xff\x26\x40\xdb\xbb\x31\x99\x35\xd3\xc3\x40\x41\x0a\x06\x77\x8a\x60\xd9\x29\x42\x17\x50\x42\xe8\x0c\xa0\x54\xe0\x54\x2a\x62\x8e\x18\xd1\xec\x89\x58\xc3\xa1\x67\xcd\xa3\x8d\xf4\x49\xe1\x45\xde\xfa\xc4\xbf\xf8\xb4\x18\x83\xb8\x0f\x7e\xc6\x4c\xc1\x39\x30\xc4\x1c\x9b\x42\x8e\x2a\x94\x9b\x5c\x96\xfb\xe8\x96\xd1\x75\xa4\xb4\xb4\x84\x56\x62\x14\xbf\xf7\x34\xbf\x07\xa3\x5f\x54\x2a\x81\xc0\xbd\x63\xff\x62\x8d\xdc\x2b\x60\x81\x62\x28\x70\x3b\x00\x81\x02\xd2\x41\x09\x52\x06\x94\x89\xee\x5b\x60\x63\x81\xb1\x90\x0b\x03\x50\xe0\xcc\xca\x00\x0b\x58\x52\x95\x19\x52\x41\x74\x04\x56\x16\x0c\x96\xe8\xb1\x49\xf5\x97\x05\x5f\x00\xd3\x78\x35\xd0\xf8\xa7\x34\x21\x3f\xdb\xe0\x71\x19\xba\xe7\xa4\x7a\x1c\x7a\xe4\xcf\x62\xfd\x86\x47\x7b\x96\x8e\xac\x71\xe7\x34\x74\xe5\x26\x1b\x26\x31\xfe\x43\xb5\xb5\xc4\x6c\x2a\xb5\x6a\x34\xd6\x52\x93\xb9\xc4\xaa\xc6\x5f\x55\x77\x4e\xa9\x30\xa5\x54\x4f\x6e\x30\x77\xb4\x28\xac\x95\x59\x7d\xb7\xcd\xcb\xcd\xeb\xd9\xdb\x59\xbb\xb2\xb7\xc3\x96\x9c\x95\x53\x98\xc6\xff\x51\x5f\x28\x5c\x51\xa8\xd7\x15\xa4\x69\x34\x69\x05\x01\x1a\x9b\xc6\xbe\x63\xfb\xb8\xfb\xc1\x0b\xed\xb0\xd5\x1d\x17\x87\x61\x64\x66\x43\x3c\xa5\x61\x32\x04\xea\x42\x0e\x0a\x50\xc2\x71\xf5\xde\x91\xa4\xe6\x36\x77\xba\x0c\x29\x22\x70\x14\x04\x99\x96\x76\x80\x54\x5a\xe2\x85\xb0\x30\x91\x0c\xb5\x82\xea\x93\x74\x80\x44\x52\x2a\x69\xd0\xba\x2d\x40\x20\x8c\x92\xb0\x9e\x1f\xbd\xe6\xf2\x48\x9f\x3b\xda\xd7\x66\x4e\x4b\x4f\x4b\xb3\xa4\xa5\xa6\x86\x0b\xde\x79\x34\x35\x1a\xcc\x41\xb7\xc3\x25\xd0\x4b\xad\xa1\x92\xa0\x56\x74\x06\x75\x7c\xf0\xbb\x4b\x23\x0c\xce\x22\x2e\x67\x6c\xc0\x28\xa0\x44\x00\x38\xae\x7c\xa7\x43\x21\x20\x1e\xb6\x97\xa6\xd6\x2e\x99\x62\x9f\x1e\xa7\x9b\x91\x57\xd2\x5e\xa0\x92\x45\x14\xb6\x5f\xd3\xd0\xd8\x93\x62\x23\xd2\x49\xca\xf0\x04\x9b\x4e\xce\x6c\xb3\x6e\x68\xef\x7b\x60\xa8\x92\x71\xd9\x3d\xb7\x75\xa7\x54\x96\x17\x6a\x74\x09\x55\xf5\xf5\x86\xbd\xef\xdc\x50\xce\x71\x73\x0f\x9c\xda\xbe\xea\xb7\x9b\x2b\xfd\x9d\x92\xdc\xdc\xb8\x3c\x0d\x9a\x27\xc5\xb4\xce\xa5\xae\x39\xbf\xbc\xb9\xc3\x9e\x93\x99\xef\xec\xbd\xa9\xb5\xef\xc1\x95\xe5\x59\xc9\xfe\xaf\x93\x74\x31\xcc\xd9\x79\x7d\xd3\x35\x47\x56\x14\x74\xdc\x7f\xf2\xfa\xad\xc7\xaf\xaf\x94\x4d\x52\x46\x6e\x53\x24\x2a\xc2\x3a\x9f\x1c\xbb\xe7\x6e\x54\xff\x7e\xd8\xf7\xc0\x27\xfc\x37\x43\x2b\xe2\x53\xa9\x94\xe2\x0b\x74\x1f\x10\x48\x04\x60\x6f\x72\x23\x20\x85\x70\x30\xb9\x0d\xe1\x82\xb3\x5c\x0f\x4c\x8c\x7d\x77\x8b\x0a\x99\x06\x22\x1b\x22\xc0\x16\x80\x10\xea\xa9\x1e\xed\x82\x62\xa6\xb4\x89\xf7\xce\xe4\xdf\xc3\x0f\xc7\xf0\x1d\xfe\x3d\xbe\x18\xb3\x6e\xc5\x1c\xfe\x0f\xdc\xc8\xc5\x66\x92\x42\xe2\x04\x1d\x7d\x2d\x00\xbb\x83\x1b\x01\x25\x24\x81\x59\xf0\xcd\xc3\x91\x0a\x98\x8b\x49\x91\x12\x46\x7b\x42\x7e\xa3\x68\xed\xb1\x43\x12\xf8\x31\x95\x0a\xc0\x9c\xaa\x4b\x56\x25\xa9\x12\xe3\xd4\xa0\x04\x85\x5e\x26\x53\xd9\xec\x72\xbd\xc0\xb3\x12\x49\x08\xc4\x50\xb9\xdd\xe9\x74\x38\xcd\x16\x93\xdd\xe9\x74\xe5\x9b\x2d\xc6\x6b\xf1\xec\xf0\xd1\x1b\xbc\xb8\xa8\xbf\x7c\x56\x69\x52\xdd\xd6\x17\x57\x7f\x7f\x71\x68\x0d\x2e\x19\xe2\x2f\xfe\x71\xe5\x06\xdc\x30\xfc\x07\x6e\x24\xa7\x7b\x5f\x5f\xdf\xfd\xd6\x18\x77\xeb\x7c\xd7\x82\x7b\x07\x9c\xe4\x3a\xbe\x0b\x97\xb6\xcf\x1b\xc4\x37\xb0\x73\x76\x9f\x0f\x01\xa1\x69\xec\x3c\x1b\x16\x65\xb0\x2f\x00\x8a\x4d\x82\x4d\xa1\x84\x1b\x94\x20\xc7\x28\xc7\x96\x00\xa5\x21\xeb\xc2\xd8\x65\x90\xfc\x3f\x8c\x13\x40\xb3\x3b\x1a\x40\x90\x56\x4b\xaa\x32\x3d\x55\x2a\x90\x35\xc0\x50\x8e\x90\xf6\xd5\xe8\xb3\xa8\xa8\x6f\x45\xe3\xe3\x74\xb1\x55\xd2\xa9\xdb\x9f\x5f\x7e\xed\xf1\xed\x75\x0d\x3b\x5f\x5b\xb7\xfa\xd7\x5b\x1a\xc2\xf9\x33\x2c\xa5\xd8\x57\x56\xd1\x59\x9e\xbc\x66\xf3\x92\x4d\x52\x3c\xbe\x64\x64\x5d\xd5\xdc\x83\x5f\xed\x3e\xb6\xe7\xab\x43\x73\x3d\x1b\x9e\x59\x5e\xd1\x5d\xa1\x2f\x18\xd8\x3f\xef\xd5\x77\x7f\xb7\x72\x33\x10\x58\x0f\xc0\x56\x70\x23\x10\x05\x5a\xc8\x70\xa7\x73\x18\xb4\x8c\x41\xfa\xb3\x00\xfd\xa3\xa3\x01\xa2\xb5\xd1\x09\xf2\x49\x10\x05\x91\x7a\xc9\x65\xda\x87\xc8\x3e\x1e\xeb\x58\x8f\x6b\xf6\x9c\x7f\xb8\xa3\xe3\xc1\xcf\x6e\x1c\x18\x68\x5a\xdf\x9a\x95\xe9\xdb\x3c\x93\x1b\xe9\x39\xfc\xef\x9b\x57\xdf\xfc\xed\xe1\x6e\xf6\xe6\xa8\xba\x64\xf9\x03\xfd\xd7\x74\xdf\xb7\xc2\x1d\x88\xcb\xde\x0c\xc0\xfa\xb9\x11\x88\x80\x74\xb7\x19\x38\x00\xe4\x40\x40\x7c\xd4\x07\x94\x96\x5c\x0e\x20\x90\x86\x89\x6e\x9d\x5c\x74\xec\x84\x17\xa3\xfe\x47\xc9\xaf\x47\x6d\xf4\x4f\xfe\x3a\x32\x93\x6c\xe0\x7b\x4f\x73\x23\x9f\xf2\x7b\x84\x7b\xdf\x0a\xc0\x16\x73\x23\x10\x06\x46\xb7\x2e\xc8\xc7\x5d\x41\x9d\x4d\xc4\x7b\x5f\xc9\xcb\xf2\xd0\x3d\x53\xfc\xbb\xf9\xcf\xe8\x7b\xfe\x4a\x32\x48\x3a\xfc\x07\x84\x1b\xae\x00\x84\xd6\xb1\x0b\x6c\x80\x3b\x06\x36\x01\x3f\x5a\x90\x71\x82\x71\x25\xf5\x40\xa8\x84\x12\xc9\x20\x48\x80\x63\x12\xae\xeb\x47\x99\x41\xae\xb2\x18\xc4\xdd\xd5\xda\x4c\x3f\xd8\x5d\x73\x20\x92\xa6\x52\xab\x35\x82\x3e\x51\x18\x1d\x7a\x36\xa0\x9d\x73\xed\xbd\xb3\xd6\x1d\xbf\x69\xca\xd4\x9f\xbd\xb4\x6c\xed\xb3\x1b\x6a\x23\xf8\x2f\xa3\x17\x0d\x3a\x67\x79\xd2\x70\xeb\x0d\x7a\x77\x81\x2d\x02\xbf\x26\x61\x8f\xea\x3d\x2e\x43\xdb\x43\x5f\xff\xfc\xd5\x9f\x7f\xfd\x8b\xb6\xb2\x95\xbf\x58\x30\xb8\xcc\xb5\x70\xff\xfc\xe3\x6f\xbe\x8f\xe1\xb1\x9a\x28\x94\xfd\x49\xa0\xc5\xda\x20\xce\x8a\x00\xbd\x3b\x19\x02\xb0\xa0\x4b\xd8\xf1\x12\x2f\xc1\x10\xcc\x0a\xd2\x57\x2f\x52\x22\xf0\x1f\xf3\xf0\xe7\xf8\x79\xfc\x59\xd4\xe0\x5d\xa8\x26\xc3\xfe\x1d\xdc\x88\xff\x20\x99\x21\xdc\xf3\x25\x00\x16\x21\xde\xd3\xe8\xd6\x71\x38\x0e\x9b\x19\x12\x22\xee\x5f\x29\x9d\x70\x57\x45\x70\xcf\x04\x03\xf9\x12\xad\xe7\x3f\xc1\xc4\xd1\x67\x50\xc5\x9f\xe7\x46\x4e\x8f\xaa\x4e\x9d\xa2\xe7\x85\x7b\x2e\x1d\xbb\xc0\x1a\xb8\x11\x50\x89\xd6\x96\x00\x05\x42\x07\x03\x3c\x19\x24\x6b\x35\x36\x18\x94\xa6\xa0\xb5\x55\x04\x68\x39\x0e\xbf\x69\x1e\xc6\x23\x4e\xd9\xfa\x74\xff\x92\xa7\xae\xad\x43\x4c\xc0\xbe\x45\x39\xcd\x05\x29\xdc\xc8\xe8\xa4\xfe\x83\xeb\x3c\x05\x4b\x7f\xb1\x6c\xe5\x02\x93\xdb\x67\x07\x14\xf5\xd1\x79\x6e\x04\x22\x05\xec\x19\x2e\x41\x0a\x88\xf5\x04\x11\x05\x45\x27\xd2\x24\x56\x21\x8f\x15\x7f\x48\x2a\x52\xc3\x85\x7a\x44\x3d\x71\xdc\xc1\x7f\x86\x09\x5b\xb0\x1b\xdb\x78\x35\x8e\xf2\x4f\x92\x99\x8f\xf0\xd3\xb9\x11\x7f\xef\x93\x78\xd6\xbf\x6e\xf4\x1d\x40\xd8\x07\xc0\xda\xb9\x11\xe0\x20\xde\xad\x0e\x81\x59\x6c\x0f\xf1\x5c\x8c\x80\x68\x4d\x22\x45\x70\x84\x3c\x3a\x5a\x82\x09\xa7\x4f\x8b\x29\x75\x40\xd8\x08\xc0\x3a\xb9\x11\x88\x16\xfc\xd2\x70\x41\x39\x8a\x1e\x20\x20\x10\x1c\xe4\x18\x11\xa8\x11\xd4\xc4\x00\x10\x0d\xd1\x0a\x85\x3c\x56\x22\x4c\x53\xa1\x10\xa6\xa9\xa0\x46\xaa\x90\xeb\xe5\xf8\xb7\x1b\xf6\xe3\x6c\x9e\x8f\x7c\xe1\xc6\x83\x91\x3c\xcf\x8d\xf8\x3f\x24\xc6\x8b\xcd\xf8\x04\x79\xc4\xbf\x9d\xcc\xf6\x2f\xe7\xa7\x72\x23\x41\xde\xa8\x12\xe5\x24\xd9\xad\x95\x12\x02\x04\xeb\x29\x0a\x73\xc6\x20\x19\xe4\xb1\x22\xbd\xf5\x7a\x14\xe8\x80\x0a\x3d\xab\xe2\xcf\xf0\x8b\xf8\x4f\x51\x8b\x7b\x11\x13\xe8\xc1\xd1\x19\xdc\xc8\xa8\x8f\x3e\x2c\xd8\xf3\xe6\xb1\x0b\x6c\x2d\x77\x4c\x8c\xc3\x0a\xa8\xfe\xc7\x22\x08\xe9\xe9\x57\xc5\x09\xc6\x91\xa6\x29\x04\x2e\xc7\xbd\x10\xb6\xb6\x7e\xe7\x89\x0d\x1b\x8e\x6d\xad\xa9\xd9\x7a\x74\xc3\xc6\x13\x3b\xeb\xf9\xd3\x49\x65\x5d\xd5\x9e\x59\x05\x71\x71\x05\xb3\xaa\x3d\x5d\xa5\xc9\x64\xf1\xce\x0b\x8f\xce\x9d\x7b\xf0\xfc\xce\x77\x76\x5e\x38\xd8\xd9\x79\xf0\xc2\x4e\xe2\xdb\x37\x50\x5a\x3a\xb0\xcf\xf7\x97\xb6\x7d\x4b\xca\xca\x16\xef\xf3\x01\x11\x75\xc2\x4d\x22\x6d\xb5\x82\xbf\x09\x94\x43\x02\xf4\xb2\x7f\x10\x72\x3a\x00\xb4\xf1\xf2\x49\x10\x0d\x51\x7a\xb9\x44\xa6\xb6\x89\x0b\x0f\x81\x24\xcb\xb8\xab\x67\xc4\xc7\xf9\xcf\xf1\x9b\xe1\x17\xb7\x4d\x9e\xbc\xed\xc5\xe1\xf7\xdf\x2f\x69\x2b\x4e\x4a\x2a\x6e\x2b\x79\x9f\xa8\xfd\xe7\xb8\x91\xea\xb5\x87\x16\x74\x3f\xb4\xc6\xf3\x49\x6a\xd9\xd4\x0c\x7b\x5b\xa5\x59\xa0\xcf\x0c\x7e\x8c\xbd\xc4\x1d\x83\x78\xc8\x16\xe6\x20\xa1\x04\x28\xd6\x0b\x1b\x5b\xfb\x53\xb4\x4a\x13\x69\x25\x91\x48\x35\x52\x0c\x22\xf3\xff\x46\xb0\x2d\xd8\xd1\xf6\xf5\xd3\xfc\x79\xe3\x64\xcb\x86\x63\xdb\x6a\x6a\xb6\x1d\xdb\xb0\xf1\xf5\x9d\x5e\x81\x6c\xdd\x35\xd5\xb3\x05\xb2\xcd\xae\xae\xe9\x2e\x4b\x22\x15\x5b\xbf\x68\xf9\xeb\x7d\x08\x61\xe1\x5d\x07\xde\x1b\x1e\xdd\xf5\xc5\xa1\xae\xae\x43\x5f\xec\x22\xed\xb7\x2d\x29\x2d\x5b\x7c\x5b\x3b\xef\xd9\x3c\xdf\x5d\xde\xbf\xd9\x03\x04\x36\x03\xb0\x11\x6e\x04\x62\x03\xb4\x9b\x14\x88\x98\x84\xf4\x6a\xd0\xc5\x18\x67\xcd\x54\xbd\x55\x1f\xd4\xd7\xc6\x09\xc4\x93\xa2\x4a\x1f\x08\x48\x98\x8d\x46\xb2\xec\xcf\xfc\xe7\x78\x66\xcd\xb1\x1b\xbd\xa6\xea\xae\x12\x2c\xe4\xdf\xe6\xe3\xff\x30\x7c\xed\x86\xb5\xbf\x27\x3a\xff\x47\xdc\x48\xe1\x92\x07\x07\x1a\xd7\xf7\xd4\x6b\xfd\x0f\x47\x51\xb6\x66\xc1\xe2\x35\x80\xe0\x1b\xfb\x82\xed\xe4\x8e\x41\x39\xd8\xdd\x39\x57\xe7\x33\x08\x09\xc5\x9e\x2f\x3b\xef\x25\x45\x4e\x47\x76\x66\xaa\x32\x4b\x22\x82\xe1\xf1\x4c\x86\x48\xbe\x90\x6d\xbd\x9c\xc7\x30\x1a\xb2\x98\x43\x9f\x4c\x45\x3f\x6f\x58\x5b\xb1\xa0\x71\xee\x63\x5b\x9a\x1a\x6f\x78\x7e\xc9\xf2\xdf\x6c\x6f\xe0\xbf\x24\x29\xa5\x1d\xa5\x05\xad\x25\x29\xe9\x8d\x4b\x6b\xe6\xfd\x62\x4d\xd5\x94\xed\xcf\x2f\xad\xde\xb1\x7e\xa0\x29\x13\x95\xc4\xea\x5d\x50\x5e\xd0\x5a\xa2\xc3\x75\x16\x4f\x71\xae\x2a\xa1\x71\xc9\xde\xb9\xb3\xf6\x2d\x2c\xac\x1c\x7e\xb0\x3b\x77\x5a\xb1\x5e\x9b\x5b\x65\x49\xaf\x74\x64\x28\x92\x5a\x86\x6e\x6e\xef\xbc\x75\xbe\x23\x3e\xbf\xb1\x7f\x4b\x73\xe5\x9c\x92\xc4\x84\xac\x0a\x40\xd0\x02\xb0\xc3\x22\x0e\xd3\xba\xe3\x04\xed\x7c\xd9\x18\x06\x0c\x56\x50\xf9\x05\x42\x9b\xec\x30\x5f\xce\x7f\xc6\x57\xb3\x7d\xec\x8d\x4b\x0e\xf6\xc6\xa7\xa2\x0e\xd9\x30\x76\x81\x35\x8a\x7a\x54\xef\x4e\x66\x94\x88\x9c\x1d\xa4\x4d\xb5\xc0\xde\xa0\x02\x95\x51\x65\xe2\x04\x8a\x28\x42\x42\xa8\xd0\x2b\xc4\xe0\x9c\x4b\xc1\xa6\x60\xd5\xc6\x67\x57\x2e\x39\xbc\xa1\x1a\x05\x95\xda\xdb\x35\x7f\x31\x22\x37\x32\x5a\x7c\xcd\x6f\x37\x7b\x3c\xd7\xbd\x70\x0d\x7d\x65\xb4\x78\xd7\xee\xdd\xbb\xe8\x2b\xc2\xef\xa5\x00\xb0\xc7\x45\x3f\x5e\xe5\x8e\x15\xe6\x3c\x61\xba\xe3\xde\x3b\xea\x49\x2f\x2a\xd0\xc9\xd7\xf2\xa7\xf8\x3a\x74\xe2\x6d\x2c\xfe\x62\xb3\xa8\x83\x12\x00\xd8\xb3\xa2\x2e\xd6\xb9\x93\xc2\x39\x82\x80\xf5\x8c\x8a\xaa\x8e\x04\xf8\x29\x56\x1e\x2b\x97\x8b\x86\x5a\xa1\xa7\x46\x4a\x8d\x54\xaf\x50\xd8\xa9\x77\x21\x92\xd7\xf9\x1b\xae\xe7\x8f\x23\xf6\xaf\x3b\x41\xaa\xe8\xe2\x8b\xcd\x74\xd6\xe8\x83\xdc\xc8\xe8\xcf\xe9\x7c\x61\x6e\xc9\x00\xec\x35\xd1\x4e\xa5\xb8\x13\xc3\x24\x94\x0a\x37\xa7\x38\xf1\xde\xb1\xb1\x81\xcc\xa1\xa8\xe0\x03\xff\x93\x41\xa4\x58\xcf\xf7\xe1\x83\xfc\x73\xfc\xb7\xfc\xbf\xf9\xa7\xf0\x41\x7e\x3e\xd6\xd1\x87\x48\xb8\x3f\xcb\x6f\x20\xb1\xfe\x2f\xc9\xdf\xc9\x9f\x02\x3a\x5b\x0f\xc0\x8e\x73\x23\x20\x83\x44\x77\xbc\x84\x8a\xf3\x9f\x48\x86\xd8\xd8\x71\x32\x50\x3d\x45\x3d\x59\x81\x29\xe8\xe0\x9d\xc8\x9f\x41\xbe\x14\xf3\xa9\x9c\xdc\x33\x5a\xc7\xcb\x08\xa3\x87\x84\xfb\xf9\x00\xd8\xb5\xa2\x4e\x4e\x77\x9b\xc3\x90\x50\x26\x46\xc5\x20\x68\x59\x03\xe6\xc4\x17\x24\x71\x6c\x80\x23\x04\x7b\xe2\x10\x3c\x50\x0d\x3e\x41\xfe\x74\xe9\x3d\xf2\xb2\xdf\xcd\x94\x78\xfa\xf4\x21\x96\xf2\xe9\xc3\x81\x1c\xc3\x6e\xfe\x30\x6d\x92\xdc\x11\xf4\x66\x29\x88\x69\x4b\x40\x42\xc4\x78\xb5\x80\x8c\x70\x82\x37\x6b\x94\xdb\x05\x13\x45\x9b\x1e\x7d\x94\xaf\xc0\x17\xb8\xa3\xdf\xbf\xf2\xae\xf4\xac\x30\xbf\xaf\xc6\x36\x33\xd5\x78\x9c\x19\x01\x87\x04\x23\x0d\xc1\x38\xb3\x42\x8f\xfa\xaf\x90\x11\x3d\x3f\xca\x8d\x7c\xff\x76\xf0\x77\x9b\xc7\x7f\x17\x40\xd0\x79\x5d\x40\x10\xc9\x0c\x41\xe7\xf9\x00\x09\x4e\x99\xc8\xda\x0e\xbb\xdc\x88\xbb\xf1\x45\xde\x7d\xf0\xa0\xe4\x8e\xef\x34\xef\x4a\x8a\x85\xdf\xfd\x33\x79\x82\x69\x45\x3a\x6b\xdd\x71\x52\x0c\x58\xec\x09\x61\xee\x80\x65\x45\x23\xda\xd1\x48\x2d\x52\x7c\xfa\x23\x2c\x3f\x81\x65\x27\x47\x54\x2a\xf2\x04\xc5\xd1\x31\x7c\xb5\xa5\x05\x10\x6e\x19\xb3\xb0\x54\xb1\x6e\xed\x27\xe3\xf5\x9c\x20\x5c\xa9\xa3\x83\x74\xf7\xfb\xef\x8b\xb4\xbb\x93\x3d\x41\x37\x70\xaf\x02\x85\x4c\xef\x48\x56\x73\x9b\x3b\x22\xb4\x09\x25\x02\xda\x8f\xb9\xfa\x36\xbe\xa7\x82\x81\x7f\x23\xea\xe9\x86\x0f\xf8\xef\x30\x8f\x3d\x81\x1a\xd1\xe7\x1d\x1a\xbb\xc0\xbc\xac\x11\xd2\xc0\x05\xb7\x79\x47\x62\x9b\xdb\xdc\xe1\x59\x28\x91\x52\x04\x09\xa9\xd7\x86\xbe\x70\x12\x52\xef\x0b\x9c\x4e\x03\x4a\x90\x50\x1c\x04\x04\xa9\x04\xa5\x3d\x40\x88\x18\xf1\xad\xf5\x86\xa1\x44\x02\x1d\x32\x8e\x04\xfd\x8e\x8c\x9f\x1e\x2a\x43\x8e\x2b\x0d\x5e\x10\x50\x05\x3e\xb7\xda\x9a\x0e\x90\x9b\x9d\xee\xb2\xba\x20\x0d\x2c\xa9\xb1\x46\xb3\x25\x5c\x16\x6f\xd3\x9b\xcd\x96\x20\x56\xcd\x77\xda\xed\x62\xf8\x60\x42\xb8\x5b\xae\x54\x6b\x54\x62\xac\xc8\x11\x0c\x8c\xd1\xdc\xf0\x68\x4e\x53\x32\xb9\xcd\x3e\xfd\xc6\x79\x05\x63\xfe\x3b\xfb\x3a\x67\x34\xf2\xe7\x4a\x57\x3e\xb2\xb8\xfb\x91\x75\x35\x6a\x95\xff\x43\x6b\x5d\x91\x35\xf2\xa6\x8a\x59\x45\x89\x4d\xca\xfc\xa4\xf8\x0c\xbd\x22\x67\xe6\x70\xcd\xc1\x5f\xbb\x1b\x3b\x26\x97\x56\xaf\x9b\xe3\xca\x99\xf3\xb3\x39\x7c\x4e\xeb\xf2\x74\xf9\x51\xa5\x2e\x5d\xf5\xab\xf8\xcc\x72\x53\x41\xbd\x48\xb3\x9b\xc7\x2e\xb0\x59\x12\x41\x73\x59\xe0\x1a\xef\x48\x7c\x73\x9b\x7b\x52\x14\x32\x9a\x92\x4c\x38\x26\x13\xfc\xfb\x7a\xed\x15\x47\x90\xa3\x02\xf5\x84\x81\x5a\x20\xa4\x4c\x00\xe4\xa2\x4d\x10\xe3\x04\xd0\x21\xc0\x1b\x91\x60\x29\x57\x9f\x45\x2c\xf5\x86\xdc\x51\x91\x46\x61\xa6\x74\xa3\x5c\x91\x2a\x9a\x33\x51\x5b\x9a\x2d\x52\xc1\xac\x05\xc3\xc0\xfa\x40\x38\x50\x2a\x0f\xe2\x50\x36\xcb\xb1\xf0\xee\x05\x73\x6f\xcc\x8b\xba\x88\xea\x9c\xcd\x6d\x0b\xef\x59\xe8\xe0\xcf\x29\x73\x5b\xca\x1b\xe6\x26\x24\xcc\x6d\x2c\x9f\x96\xab\x24\xb1\x6b\x5e\xdf\x3b\xb5\xd6\x3d\x24\x01\xff\x7b\x05\x65\xd3\xf6\xbe\xb1\xba\x72\x95\x2f\xdf\x5d\xc0\x4f\x2d\x70\xe7\xb6\x0e\xd7\x04\x62\xd6\xe7\x59\x09\x6b\x04\x1b\x2c\x0a\xf9\x9e\x8c\x43\x8e\x89\x7b\xcb\x21\x2c\x09\x99\xb9\x5a\x31\xb4\x17\x0a\xfb\x6a\xff\x97\x71\x75\xa4\xc1\xe7\x56\x20\x18\x74\x89\x5a\x8d\x2a\x32\x5c\xc2\x81\x0d\x6d\xd2\x60\x04\xd0\xa2\x57\x5f\x05\xcd\xa4\x7a\xe7\x04\xa4\x41\x06\xd2\xeb\x0b\x52\x08\x4a\xc8\xe4\x0d\x0f\xcf\xde\xf0\xdb\x8d\x15\xee\x4d\xbf\x59\x3f\xef\xd1\xb5\x1e\xc2\x5f\x24\x89\xce\x86\xcc\xca\x99\x76\x95\xd2\xde\xfa\x7a\x5c\x46\x99\xb9\x65\x77\x7f\xf1\x8c\x5b\x5e\x5b\x9e\xbc\xfc\xb5\x5b\x66\x96\x2c\xbe\xb3\x33\xad\x2e\x3f\xc5\xd9\xbe\xa2\x2c\xb9\x7c\xa5\xcf\x19\x88\x03\x0d\x8e\x5d\x60\x05\xc1\xfd\xed\x76\x4f\x92\x21\x07\x29\xc9\x84\x71\x51\xc1\x0c\x74\x60\x1f\x11\xcb\xc6\xb7\xa6\x56\xd8\xb3\x09\xa9\xe7\x94\xab\xcf\x12\x52\x3a\xbe\xad\xd5\xf4\xca\x7d\x0c\x64\xf7\xd5\x1a\xb9\x5e\x6e\x0c\x46\x7a\x42\x59\x10\x97\x3c\xe8\x92\x0d\x16\x2e\xd9\xdf\x3b\xe3\xda\x3c\xd4\x5c\x8a\xb6\xdf\xd0\xd1\xb3\x7f\x71\x11\xaa\x35\xf9\xd3\x8a\xeb\xe6\x26\x26\xce\xa9\x2d\x9e\x9e\x1f\x47\x4c\x6b\xdf\xdc\xdb\x5c\x5a\x40\x2c\x17\x61\x59\x79\xcd\xf4\xbd\x27\x56\x79\x56\xb6\xe6\x95\x39\xf1\x19\x57\xa9\xdd\x37\xec\x19\x5f\x5b\x3f\x6b\x04\x3d\x64\x42\x95\xdb\x9d\x88\x94\x24\x21\x50\x12\x0a\x50\x77\x49\x31\x88\x40\x6b\x03\xd0\x4f\x12\xe0\x4d\xa3\x01\x21\xcd\x62\xc8\x34\x66\xc6\xa9\x63\xe5\x91\xe1\xa0\x47\xbd\x4c\xa6\xb4\x71\x57\x40\x40\x55\x10\xad\xb8\x34\xd1\x94\x8a\x21\x3e\x47\x16\x25\x77\xac\x7f\x73\x6f\x53\xe3\xce\x17\x97\xad\x7c\x76\x63\xa5\xdf\x20\xcb\x6d\xe8\x2e\x4a\x9f\x5a\xef\x8e\xbb\x31\x61\xfa\xb2\x1b\x96\x65\x37\x16\xa7\x85\xe3\x71\x92\x5c\x30\x55\x39\x6d\xd7\x0b\x8b\xd3\xd6\xbd\x75\xcb\xb4\x29\x3b\x5f\x19\x5e\xe5\xea\xa8\x4c\x8d\x49\xc9\x4a\xd9\x67\xaa\x75\x19\xe8\xb5\xfa\xb2\x99\x0e\x75\x46\x63\xa1\x5e\xc0\x15\x00\xec\x3a\x49\x26\x68\xc1\xe5\xce\x9f\x84\x94\xc4\x20\x52\xb1\xb4\x82\x22\xa1\x3d\x9c\x58\x8f\xc3\x10\xb1\xdc\x2b\x20\xd5\x52\x89\x00\x35\xb4\xa0\x95\x2b\x2c\x26\xb9\x5c\x26\x78\x97\x02\x68\x19\xf7\x7d\xa5\x81\xa4\xa0\x4a\x70\x85\xf0\x0e\xc1\x29\xf4\x6c\x78\x6a\xa9\xb1\xa2\xac\xdc\x10\x6b\xee\xac\xb8\x6e\x15\x6e\xe5\xaf\xa1\x8b\xdf\x2a\x5e\xf4\xe0\x60\x21\x27\x0b\x97\xfc\x55\x16\xb9\x64\x7e\xf1\x5b\xa3\x37\x07\x78\x66\x19\x3f\x93\xd5\xb2\x46\x30\x81\x0b\x6e\x0d\xb0\x88\x46\x86\x12\xc8\xce\x22\x9c\x24\x09\x19\xa7\x46\xca\x54\x48\x28\x57\xaf\x15\xcf\xe0\x8f\x9c\x09\xea\x08\x1d\x08\x5a\x51\x50\x0a\xa2\x7e\x08\xa4\xd3\x84\xdd\x10\xa5\xa5\x42\x60\xb0\x54\x10\x56\x06\x41\xed\xf9\x13\xc3\x7c\xee\x70\x53\xba\xc9\x62\x52\x88\xee\x7e\x88\xcd\x5c\x76\x79\x28\x59\xe4\x0a\x64\x40\x1d\x3f\xc1\x74\xcb\x4a\x97\xdf\xdf\x37\x77\x7b\x4e\x84\xdf\xbb\xed\x37\xcb\x73\x07\x97\x74\x1b\xd7\x3b\xb6\x36\xae\xdc\x9c\xbb\x79\x66\xef\x7d\xcb\x4b\x51\xa3\x2d\x98\x59\x3c\x79\x6e\x62\xe2\xdc\xda\xe2\x99\x85\x89\x01\x0e\x74\x17\xcf\xbf\x74\x76\xc9\xa1\x55\xa5\x4a\x6b\x45\xe6\x23\x25\xe5\xeb\x87\xca\x9c\x25\x21\x6e\x2c\xc8\xc3\xd7\xed\x2e\x91\x1b\x11\x76\x01\xb0\x99\x12\x00\x8d\xe8\x01\x21\x01\x05\x22\x21\xf5\xc0\x58\xd9\x38\x46\xac\x1d\x8f\xf5\x29\x4c\x2a\x83\x08\xbb\x82\xaa\x4e\xae\x97\x87\x94\x9d\xe0\x0b\x3e\xe0\xbc\xb3\x73\xc6\x4d\x7d\x85\xfc\xb9\x24\x67\x43\x4e\xcd\x7c\x3d\x7f\x0e\xd5\xf4\x40\x53\xbb\x7d\xe0\x91\x61\xff\x32\xb2\xa7\xa8\x25\x3f\x3e\x2f\x73\xf4\x9f\x12\x71\xbf\xde\x05\x60\x93\xb9\xd3\x10\x06\xf1\x90\xe9\xb6\x86\x0a\x6f\xca\xc6\xf3\xac\xe5\xe2\x0f\x87\x82\x3e\xa9\x26\x31\x7e\x20\xd2\x71\x3c\x7a\x10\x08\x58\xab\x55\x4a\x91\x7c\xef\x92\x29\x68\x1a\xbd\x09\xf3\xf9\x37\x51\xa7\xb1\x16\xa7\xd6\xb7\xb6\xd6\xa7\x16\x5b\x35\xac\x68\xf4\x17\xa7\x4e\x91\x95\xf8\x9d\xce\x65\x51\x4f\xaf\xa8\x98\xae\xb6\xb8\x84\x39\x9c\xe4\xbd\x74\x19\x77\x1a\x34\x60\x01\x87\x3b\x2f\x02\x09\x0d\x0f\x50\x20\xb8\x9b\x65\xa2\x08\x06\x66\x13\xf2\xc8\x26\x63\x43\xaa\x49\x55\x6d\x0a\x45\xa0\x82\x46\xc0\x15\x10\x3c\x87\x5c\xaf\xb8\x62\x56\x68\x27\xd6\xb2\x55\x8f\x2e\xce\x9c\x65\x8d\x8e\xb4\x65\xa6\x87\xa7\xd5\xda\x93\xf9\x7f\xf0\x9a\xf4\xd0\x04\xd3\x35\xac\xe8\xd2\x63\x03\x77\xf6\xe6\x48\xc3\x4f\x51\x8e\x62\xac\xb5\x3a\x9f\x0e\x5e\x35\x5b\xc1\x06\xec\x06\x60\x87\x24\x00\x91\x60\x74\xeb\xc4\x38\x45\x20\x4b\x26\xee\x56\xf9\x7f\x8f\x55\xa4\x6e\x10\xf6\xa3\x05\x6d\xd8\xc8\xf7\xe3\x1f\xf9\x83\xf8\xc2\x4a\xfe\x19\x09\x8c\xee\xed\xc4\x3a\xbe\xd4\xbf\x03\x10\x5e\x03\x60\xed\x12\x80\xb0\x40\x6c\x28\xb0\x0f\x65\x57\xec\xc3\x78\x94\xec\xf2\x2e\xbc\x46\x66\xa3\x73\x74\x31\x7a\xf8\xe7\x25\x70\xf1\xd4\xa9\x53\xac\x18\x10\xbc\x00\x6c\x35\x6b\x04\x0b\x0c\x07\x84\x2a\x52\x82\x84\x42\x6a\x3c\x21\x54\xc0\x35\xe2\x57\x69\xf0\x6b\x50\xee\xe2\x39\x61\x49\x40\xc9\xa0\x4c\x8a\x54\xe0\x3d\x09\x23\x41\x8d\x9e\xc4\x21\x95\x12\x29\x25\x83\x01\xb9\x94\xa1\x54\x5a\x3e\x7e\xde\x27\xd6\x4d\x58\xc0\xa2\x30\x29\x4c\x2a\xa3\x31\x4c\xa6\xb5\xa1\x46\x60\x54\x4d\x88\x5b\x8d\xe3\xdc\x3a\xf1\x13\x16\xc9\x52\x16\x37\x6e\x4e\xd3\xf5\xd4\xe4\xce\x28\x37\xfa\xa3\xd4\x49\x93\x92\xd2\x22\xbe\x8d\x54\x25\xc6\xe8\x2c\x11\x7e\x56\xb4\xb9\x66\xea\x90\xb3\x34\xb5\x69\x7d\xfb\xe8\x28\xe5\x52\xd2\x34\x61\x5a\xcd\xe8\xab\x54\x92\x92\xa6\x0e\x4b\x4d\x1e\xfd\x0b\x2b\x12\xf7\x46\x90\xa5\xe9\xac\x11\x34\x30\x2f\xb0\x18\x81\x93\x40\x29\xb2\x93\x56\xfc\xc2\x02\x5f\x82\x6b\x55\x88\x02\x26\x06\x71\xc6\x45\x4c\xeb\xd6\x70\xc8\x58\xf9\x0f\x85\xcf\xe7\x8e\x02\x41\x4e\x35\xc2\xea\xc4\x08\x8f\xe6\xc7\xa4\x10\x77\xc8\x8b\x1e\xea\x9d\xb6\xbd\xc7\x15\x90\xc2\xda\x79\x29\xfc\x59\x56\xb4\x6f\xaa\x2f\x67\xc1\x81\x55\xfe\x3e\xb2\xcf\x3d\x3d\x47\x51\x98\x37\x3a\xc6\x8a\x80\xc0\xfc\xb1\xf3\x6c\x1e\x6b\x14\xe3\x33\x65\xa1\x32\x8f\x60\xb8\xa1\x76\x9c\xe1\xab\x51\x2c\xf3\xf8\xc1\xf1\x3a\x6c\xf0\x3d\x13\x0a\xdf\xfc\xb0\x42\x4e\xff\x83\xea\xb7\xf9\x9e\xcd\xbf\xb9\x26\xe0\x35\xfe\x76\xcd\x35\x2f\x6c\xf6\xa0\x3a\xa1\xc0\x57\x5e\xda\xe6\x4a\x48\x70\xb5\x95\x97\xb5\x15\x24\x10\xcb\xaa\x13\xb7\xb4\xb4\xdc\x72\x62\x95\x6a\xf8\xc4\x2d\xd3\xa7\xdf\x72\x62\xd8\x33\xec\xcb\xcf\xf7\x0d\x7b\x54\x95\xab\xda\xf3\xf3\xdb\x57\x55\x06\xf4\xfd\x1e\xbe\x93\xf9\xc4\xb9\x8b\x18\x21\x0a\x19\x99\x00\xff\x42\x18\x21\x04\x0a\xca\x2f\x83\x38\x01\xd3\x55\x60\x10\xeb\x95\x5f\x8d\x04\x27\x8c\xf8\x51\xac\x27\x88\x94\xe6\xa7\xb0\x9e\xcf\xb5\xe8\xee\xbe\xd6\x2d\xb9\xfc\x39\xc4\xf0\xbc\xed\x1d\xf3\xef\x1e\x70\xf1\xe7\xe2\x1d\xd3\x8b\x27\xcf\x4e\x48\x98\xed\x15\x51\x82\x62\xd5\xeb\x37\xb7\x94\x38\x79\xc2\xfd\x75\x61\x49\x65\xd3\x9e\x37\xd6\x7a\x86\x5b\xf3\x0a\xf3\xf9\x12\x7b\x69\x7e\xfb\x70\x95\x68\xcb\x3a\x59\x61\x70\x6d\x21\x7c\x3b\x01\x04\x51\x26\xe2\x5b\x19\x72\x38\xe1\xc8\x38\xbe\x0d\x01\xda\xda\xcb\x80\xc7\x1b\x32\x5b\x29\x01\xb3\x35\x11\x35\x5d\x31\xe2\x47\x71\x91\xcb\x2e\xd7\xcb\x7f\xca\x44\x15\x2c\xbe\x67\xfe\xac\x1d\x79\xf2\x6f\xf9\xb3\xb9\xd7\xcd\xe8\xbb\x7b\xa0\x10\xd5\x71\xf9\xc2\x8a\xb5\xda\xd9\xb5\xc5\xd3\x1d\xf1\xc4\xbc\xf6\xcd\x3d\xcd\x9e\xb2\x25\x17\xcd\x38\xea\x2c\x9a\x7e\xf3\x89\x55\x55\xab\x7c\xf9\x45\x76\x7c\x33\xcf\x65\x6f\x1b\xae\x16\x7d\xaa\x14\x00\xd6\xc5\x1a\x41\x0e\xfd\x41\x7d\x31\x49\x70\x9e\xc3\x19\x21\x28\xea\x0b\xe1\x2b\x0d\x7e\x0d\xae\x35\x56\x70\xb1\x3a\x68\x40\x86\x20\xa8\x28\xd4\x40\x69\xb9\x57\x3c\xc3\xf0\xf2\x09\x9f\x7b\x12\x42\x74\x54\x64\x84\x4c\x02\x72\x94\x73\x32\xa5\x0d\xf3\xd4\x1a\x2a\xc2\x0e\x69\x70\x5b\xe9\xbe\xf2\x45\xfa\x74\xd7\x50\xfe\xca\x5d\x46\xfe\x1c\xd2\xa8\xca\xe7\x58\xa3\x3c\x9c\x3f\x1f\x15\xd5\xde\xe2\x5f\xc5\x8a\x0e\xcf\x5a\x00\x08\xd7\x8c\x9d\x67\x33\x58\x23\xb8\xa0\x3b\x20\x35\xa9\x3f\x11\x7c\xaa\x9d\x18\x7c\xd2\xfe\x0f\xc3\xc4\xa2\xc8\x48\x67\x7e\x4e\xb6\x2d\xdd\xf0\x13\x61\xaa\x80\xf7\x75\x45\x94\x8a\x04\xa2\x54\x4e\x5a\xab\x29\xee\xf6\xce\xdd\x3f\x58\xee\x5e\x7d\x68\x60\xd9\x53\xeb\x2b\xf9\x73\x7d\xfd\x5d\x3d\x4a\x7b\x9b\xa7\xfb\x17\xd7\x54\x57\x6f\x7c\x6a\xe9\x35\xbf\xde\x50\x81\x61\xd4\x5a\x39\x23\x73\xfe\x00\xa6\xc7\x9b\xf5\x89\xd1\x8a\xc2\xa9\x0b\xab\xab\xae\x99\xe5\x74\xcc\xde\xe4\x2d\x9f\x51\x63\x8f\x4b\xd7\x6b\xc3\x63\xf2\x9a\x96\x35\xd6\xad\x69\xcb\x75\xcf\xdf\x5c\x99\x51\x6e\x89\xad\x14\xe3\x49\xe7\x59\x23\x57\x05\x29\xd0\xe3\x0e\x9f\x84\x04\x63\x90\x12\x12\x2c\x12\x4b\x92\xa2\x04\x24\xcb\x99\x98\x02\x10\x20\xa0\xa8\xca\x2e\x13\xe0\xbf\x9c\x0f\x94\x83\x02\x40\x0a\xa4\xc8\x55\xe9\x41\x8c\x88\x62\x22\x46\x79\x65\x7e\xd5\x21\x37\x3a\xec\x72\x72\x23\xde\xc2\x0f\x68\xf3\x6a\x33\x74\x55\xa5\x0e\x85\x36\xa9\xb1\x6d\x6e\x96\x6f\xcf\xfc\x82\xff\xfc\x87\xab\xe2\xff\xf3\x16\x9f\x5d\xdc\x94\xad\x94\x84\x85\x73\x2f\xc8\xe3\x63\xc2\xb2\x7b\x7e\xbe\x08\x2f\xbc\x85\x61\x80\xb0\x6f\xec\x3c\xf3\xb2\x22\xd0\xc0\xdc\xa7\x15\x48\x30\x54\xe3\x16\x4b\x45\xbc\x2a\x6e\x0b\x0b\xba\x84\x81\x7a\xd7\xab\xcf\xd4\x09\xce\xa2\x3a\x78\x90\xb1\xd2\x71\x8d\x5d\x07\x0d\x3e\xdf\xb3\xe3\x58\xc9\x14\x14\x1b\x79\x70\x11\x4e\x97\xe0\x64\xd0\x72\xd7\x9d\xb3\x5a\x76\xce\x73\xa1\x5a\x61\xf5\xe4\x4e\xef\xd7\xa2\x66\xf4\xf6\xa9\xb3\xf2\x97\x3d\xb1\x96\x6c\xf2\x6f\xa8\x6c\x77\xc5\x95\xbb\xc8\x7f\x2e\xbd\x1a\xb0\xfb\x75\x00\xec\x7a\x56\x14\x88\x75\x08\xb4\x0b\x84\x94\xca\xc7\x23\x6b\x0a\x31\xd6\xa1\x71\x29\x02\xb1\x35\x5f\x74\xf4\x97\x68\xe0\x7b\xf9\x4b\x7c\x0f\x1a\xb0\xa2\xd1\x4b\x46\x2f\xbd\x2a\x18\xaa\x40\x4c\xf1\x6e\x56\xf4\xc3\xf8\x5a\xf9\x8f\xc4\xd7\xec\x81\xf8\x9a\x5d\xa1\xb0\xd3\x8a\x39\x63\x2f\xff\xeb\xa6\x1d\xff\x7a\x99\x9f\xb3\xfd\x57\x38\x9d\x7c\x7e\xe9\x55\x32\xe2\x6f\x66\x45\x7e\x35\x39\x17\x98\xa7\x0f\x80\xdd\xcf\x8a\x7e\x18\x5f\x2b\xff\x41\x7c\x4d\x21\x80\x12\x4a\x45\x68\xb2\xee\x4b\xb4\xf1\xb7\xe2\x6a\xfe\x9d\xef\xff\xc3\xbf\x8d\xab\xf9\x7d\x68\x23\x67\x70\x9a\xff\x0b\xff\xfb\xd8\xcd\xdf\x4d\x2c\x44\x21\xde\x3f\x9f\xf7\xb2\xb7\x58\x11\x24\x80\xd9\x6d\x8c\x43\x42\x20\x5a\x34\xa9\x34\xc4\x49\x38\x2b\x00\xd0\xd4\xd5\xa6\x00\x04\xd2\xa0\x3e\x98\x43\xb5\xb8\xf2\x44\x2d\x6d\x77\xa1\x9e\xb4\xeb\x50\x87\x76\xff\x07\xb1\x85\x33\xd7\xb6\x28\x0d\xba\x94\x58\x83\xdc\x11\xa3\xb7\xa7\xaa\x59\x15\xef\xc4\x1c\x7c\x75\x05\x39\x73\x29\x35\xbd\x73\x5a\x01\xe5\xa4\xdc\x3b\x34\x2d\x27\x6d\x03\x8b\x14\xe6\xb0\x0a\x80\x2d\x65\x45\x3f\x15\x8f\x2b\xff\xaf\xf1\x38\x15\x7e\x43\xd6\x8f\x4a\xc9\x1c\xff\x08\xfd\xd3\xc9\x93\x87\xc8\xa1\x53\x0f\x03\xa2\x83\xbf\x9d\xfe\x4e\x52\x0a\x56\xb0\xbb\x73\xf4\x81\xda\x27\x0a\x8c\x50\xd6\x03\x04\x90\x23\xd8\x23\xf6\x6d\xb6\x06\x15\x37\x07\x4d\xd6\x74\x79\xbc\x3c\x3e\x46\x22\x6c\x93\x21\x8b\x39\x1c\xf9\x66\xa3\x43\x70\x25\xf2\xcb\x98\x5d\x63\x16\x5d\x73\xb1\x88\x49\x50\x14\x2e\x7a\xa8\x72\x60\x46\x69\xba\x62\xdd\xc6\x8d\xeb\xe4\xe6\xe2\x19\x4b\x6b\x0c\xa5\x95\xc9\xdc\xca\xb5\xeb\x56\x44\xa5\x96\xe7\xf1\xb7\xa7\x79\x66\xf5\x2f\x76\x3c\x70\xfd\x8a\xe3\x2b\xb6\x3d\x90\xbf\xa4\xbf\xc3\x93\xb6\x9f\xb8\xda\x97\x3a\x1f\x18\x7e\x2e\x27\xe7\x99\xe1\x07\x9c\x4b\xdb\x5d\x04\x00\x89\x8a\xef\x23\x47\x2f\xc7\xfb\x02\x79\x92\x8a\x50\xbc\x0f\x8d\x72\x3b\x39\xfa\xf8\xe3\x7c\x9f\xb4\x3e\x10\x67\x6c\xe0\x6f\xa7\x9f\x4a\x4a\x21\x43\xf0\x13\x23\x90\xd1\x40\x06\x8b\x0a\x6b\xa2\xc0\x40\x58\xa3\xb0\xac\x56\x00\x10\x3c\x00\xe0\x9a\x32\x6c\x06\xbd\x2e\x45\xad\x52\x2a\x62\x24\x32\x95\x8d\x53\x97\x05\x3c\x5c\x97\xd9\x2c\x82\x09\xa9\x2b\x2f\x99\x89\x29\x70\x95\xe0\x31\x2a\xa3\x99\x11\x1b\x72\xcb\x53\xa3\xb5\x05\x33\x8a\x57\x2e\xe1\x92\x2b\x4b\x0d\x35\x4b\x5b\x4a\xcc\xf2\xb5\x9b\x36\xad\x55\xa6\x95\xb5\x0c\x54\xbe\x1e\x58\x4d\x51\x7f\x7b\x6d\x7c\xde\xaf\x56\x04\xd6\xb3\x3f\xcd\xd3\xd1\xbf\x24\xff\x81\x6d\x2b\x8e\xaf\xb8\x5e\x58\xf6\x2c\x4f\x9a\xb0\xc7\x09\x78\x0d\x5b\x4d\x0b\xc0\x08\x59\x6e\x9b\x11\x08\x25\x8a\x58\x02\x48\xea\x81\x22\xd0\xd6\x60\x06\x2e\xd4\x36\x40\xa1\x29\x35\xdd\x7c\x45\x12\xcb\x12\xb4\x8e\x96\xa0\x05\x0d\x01\x84\xd5\x99\x53\x97\x7b\x32\xa6\xd4\xd7\x99\x73\xdb\xb3\xb5\x79\x16\xcd\x53\x19\x53\x97\x79\x5a\x6f\xae\xcf\xf5\x65\x6a\x73\x52\xd5\xe4\xab\xa9\x37\xf4\x14\xc4\xe8\xf3\x8c\x69\x19\xda\xcc\xa2\x14\xf5\xd4\x6d\x5d\x4e\x4f\x85\xd5\x9a\x98\x55\x2c\xd6\x86\x13\x3c\xc5\x6f\xa1\x16\xd6\x04\x14\x34\x50\x1c\xa8\x84\x51\x85\x74\x68\xed\x38\xf3\x89\x00\x27\x56\x14\x1a\x9c\x3d\x7e\x9a\x34\xf8\x9e\x49\x33\x05\x43\xab\x76\x85\x1e\x27\x54\xb8\x09\xb6\x85\x10\x7f\x0c\x7f\x0a\x9d\x1a\x5b\x89\x58\xca\x23\x96\xf6\x94\xd8\x34\xc4\x31\xda\xc4\x65\x07\x4b\x75\x74\xfa\x42\x6b\x5c\x9c\xb5\x10\x10\x6e\x1a\x8b\x60\x33\x38\x33\xe4\x82\xd7\x5d\x97\x18\x4f\x38\x1a\x1d\x41\x88\x20\x0d\x57\x85\x9c\x28\x70\x8c\x72\x3d\x12\x14\xd4\x64\xab\x18\x77\xf2\x01\x01\x32\x05\x21\xcd\x6c\xd0\x6b\x13\xa2\x22\x25\x1c\xe4\x62\xee\x15\x31\xa7\x60\x1b\xc9\xe5\x56\x93\xab\xe2\x4e\xd7\x87\xe2\x4e\x05\x3d\xdb\xa6\x1c\xef\xd9\x37\xcf\x6e\x9f\xb7\xaf\xe7\xf8\xd4\xed\x5d\x8e\x1f\x8b\x3c\xd5\x6f\xea\xad\x8a\x3a\x73\x36\xb6\xf3\xa6\xa7\x7a\x93\x7b\x9f\xba\xa9\x2b\xf6\xe3\x93\x51\xd5\x8b\x76\xb6\x5c\x15\x81\x42\x18\x02\x60\xb7\x8a\xf9\xfd\x32\x77\x31\x48\xa4\x4c\x2a\x61\x83\x32\x64\xe1\x61\x84\x02\xa3\x5d\x20\x95\x8a\xce\xaa\xc7\x1b\x68\x3b\x82\x50\x0a\xd6\x06\x36\x55\xaa\xd2\x24\x57\xcb\xe5\xca\x08\x59\x92\x0d\x35\x4a\x89\x54\x10\x7e\x7b\x19\x75\x58\x8c\x0e\xbb\xe5\xb2\x15\x0f\xae\x44\xa3\x57\x91\x1c\x49\x92\x81\xdc\x7d\xe9\x63\x5f\x5c\x92\x9c\xe3\xee\xbf\x53\x5a\xb9\xfa\xe1\x79\x8b\x1e\x5a\x56\xcc\xff\x33\x29\xaf\x22\x35\xb5\x2c\x33\x21\x0c\x9d\x64\xf2\x1d\x65\x7d\xe9\xa7\x4e\x49\x2c\xce\xf2\xe4\x87\x3f\x3c\x37\xff\x81\xa5\xc5\xc5\x03\xb7\xcf\xb6\xd7\x66\x28\xb4\xf9\x4d\xf6\x73\x1f\x0a\xb8\x78\xfa\xd8\xa7\x6c\x3d\x4b\x07\xa3\x80\x4e\xdc\xba\x84\xb8\xd8\x18\x46\x51\xaf\x9d\x14\xc6\x08\x35\xc8\x24\x14\x08\xad\x8f\x97\x13\xac\x33\x4a\x09\xd4\x7a\x47\xd4\x41\xd4\x2f\x62\xfa\xf2\x89\xb9\x21\xad\x5b\x01\x08\x02\xec\xea\x99\x70\xd4\xe7\x0e\xcf\xcf\xb3\xa6\xa9\x95\x06\x26\x53\x05\x0c\x9c\xd9\x22\xb5\x88\x15\x92\x4e\x97\xc5\x25\xa2\x63\xb5\xc6\xa5\x11\x4b\x28\xc5\x44\xe5\x84\x2a\x52\x61\xcd\x74\x7b\xe9\x2d\x53\xa7\xde\x5c\x36\x6f\xd7\x80\xd1\x6c\x33\xaf\xd8\xb5\xbc\xe4\xc6\x29\x53\x76\x96\xac\xb8\x69\xb5\x39\xdd\x64\x18\xbc\xc9\x5f\x91\xd3\xb2\xac\xc2\xbd\xac\x25\x27\xa7\x65\x99\xbb\x62\x59\x4b\x4e\x63\x4e\x5e\x5e\x56\xdf\xee\x25\x25\x37\x35\x4e\xbf\xa5\x6c\x78\xf7\x4a\x6b\x66\x96\x75\x78\xcf\xda\xb2\xbd\x53\x1b\x6f\x2c\x59\xb6\x87\x68\xea\xd6\x75\x38\x1c\x1d\xeb\xea\xea\xd6\x0a\x5e\xc2\x5a\x91\xf5\x55\xc1\x5c\x8c\x5a\xd0\xab\x61\x88\x32\x24\x14\x49\xb7\x14\xa9\x04\x19\x47\x59\x57\x38\x06\xab\x7b\x4b\xb9\x06\x41\xdf\x84\x1a\xb3\xe4\xe2\xe6\xa1\x1e\xed\x2a\xbd\x6a\xbc\x77\x40\xf8\x0f\xf5\x64\x29\xa6\xa2\x83\xbf\xf6\x22\xff\x34\x7a\xf9\xa7\xf9\xcf\xf9\x47\xb0\x95\x7f\x04\xa3\xf8\x4d\xe8\xa4\xd5\x64\x91\xdf\xf9\xd0\xba\x03\xfc\xc7\x98\x72\x60\xdd\x43\xe4\x75\x41\x66\xcf\xf0\xdf\x90\x4f\x45\x9d\x29\x85\x54\xb7\x1e\x40\xb0\x19\x01\xb9\x14\x73\x38\xa4\x01\x40\x2a\xe1\x18\x50\xa0\x72\x4e\xa6\xb2\xa1\xdc\x2e\x97\x1b\xe5\x76\x3c\xe3\xf7\xfb\xf9\x6f\xa8\x76\xf4\x53\x7a\x9c\xfc\x5b\xd8\xdf\x99\xbc\x8b\xed\xe1\x8e\x41\x2d\xcc\x82\x12\x77\xe1\x8c\x7a\x33\x65\x28\xa6\x5f\x43\x22\x47\x38\x24\xe3\x51\x5e\xcf\xf8\x86\x4e\x86\x86\xa2\x82\x7c\x7b\x76\x66\xaa\xd2\x2a\xe2\xca\x2b\x8b\x5c\x4d\x97\xcb\xbe\x45\xb4\xe9\x9c\xd8\x85\xa3\x9f\x50\xe7\xa9\x49\xa6\x26\xb3\x45\x12\x40\xa0\x6a\xb5\xc6\x29\x5e\xc3\xf6\xb4\x34\x56\x7a\x26\x6f\xfd\xcd\xca\xde\xa3\x3f\x9f\x8d\xea\x2c\xef\xdc\x9c\xa1\x35\x89\xd5\x43\xad\x83\x23\x6b\x2b\x66\x34\x56\x56\x4f\xde\xf6\xc2\xca\xd5\x2f\x5e\x5f\xc7\x9f\x4d\x2e\xf1\x15\x97\xb5\x17\x69\xe3\x2b\x87\xda\x97\x3f\x79\x4d\xb9\xff\xa5\xc6\xca\x8c\x34\xe1\x9b\xa5\xce\x60\xcb\x4a\xaa\x59\x81\x1f\xcc\xd9\x66\xcb\xdb\x31\xaf\xfd\xc6\xb9\xb9\xe9\x5d\xf7\xad\xc6\x62\x6f\x86\xbc\xb9\x4a\x9f\x9f\x69\x8b\x4f\xae\xed\xde\xd2\x31\x6b\x47\x86\x7d\xc7\xbc\x99\xbb\x7a\x9c\x05\x8b\xef\x9d\x6f\xab\x77\xe9\xe2\xad\x05\x29\x66\x67\x66\x5a\x9c\x70\xbe\x4b\x15\xa7\x9a\x92\x9b\x56\x98\x63\xd3\x46\xa8\x22\x35\x0d\x39\xa9\x05\x79\x59\x01\xfd\x19\xc6\xde\xa5\xdf\x73\x7f\x02\x05\x58\x40\xe3\x56\x0a\x10\x0e\x3a\x04\x31\xf6\x60\x43\x5a\x5a\x5a\x40\x8d\x5f\x55\x08\xf9\x83\x0e\x8c\x30\x65\x6a\x5e\x72\x72\x5e\xaa\x32\xf4\x8e\x1f\x5d\x7d\x84\x9b\x91\x90\x65\x50\x28\x0c\x59\x09\x09\x59\x7a\x85\x42\x7f\xf9\x5d\x1b\x38\x0e\x14\x7c\x63\x17\xd8\x75\xac\x51\x94\x55\x2f\x34\xba\xbd\xa1\x32\xb1\xf0\x50\x99\x58\x48\xfc\x18\x80\x84\x41\x0f\x48\xa5\xb2\x0e\x90\xc9\x6a\xbd\x20\x91\x84\x75\x40\x58\x58\x75\x58\x03\x40\x5d\x4d\x59\x89\x20\x93\x60\x04\x63\xba\x21\x36\xdd\x10\x21\xc0\x02\xe5\xc4\xf2\x00\xb5\xca\x18\x6c\xd3\x53\x05\x37\xda\x74\x95\x54\x4a\xaf\x5a\x24\x9d\xb3\x6d\x45\x49\x97\x27\x35\xd5\xd3\x55\xb2\x72\xdb\x4a\x4f\x55\xaa\xd3\x14\x1b\x6b\x72\xa6\x56\x55\xf9\xdf\xa8\x5e\x7d\xdf\xac\x8e\x7b\x57\x57\x57\xaf\xbe\xb7\x63\xd6\x7d\xab\xab\x3b\x5a\xf6\xbc\xbc\x64\xc9\xcb\xbb\x5b\x5a\x76\x0b\xef\x7b\x5a\xf0\x57\xc3\x2b\xac\x0d\x0b\x2b\xda\xdd\x8b\xa6\xd8\x86\x57\xd5\x95\x27\xe6\x55\xa7\x77\x58\xab\x73\x13\x4b\xea\xe7\xf5\x1c\xda\x58\x57\xb7\xf1\x50\x4f\xcf\xa3\x1b\x6a\x6b\x37\x3c\xda\xb3\xea\xad\xdb\x66\xce\xbc\xed\xad\x55\xc3\x6f\xdd\x3e\x73\xe6\xed\x6f\x89\xfb\x24\x27\x47\xe8\xe3\xdc\x31\x30\x83\x03\x9e\xf6\x8e\x18\x05\x1f\x38\x4e\x43\x90\x64\x20\x27\x21\xa1\x1c\xcf\x84\x23\x2c\x90\xe3\x11\xd4\x59\x8a\x0c\x39\x29\x23\xc0\xc1\xdc\x90\xed\x13\xfb\x22\x02\x61\x75\x89\x00\xea\x85\xfb\x25\x01\x82\x84\x43\x49\xcf\x8f\x0c\x17\x63\xbc\x52\x64\x1c\x70\x0c\x06\x27\x0c\x84\xab\x86\xf9\x7c\x6e\x55\x9a\x05\x20\x3b\xd3\xe2\x48\x73\x80\x19\xcc\x16\xa3\xd9\x1c\x26\x70\xd1\x8f\x25\xcd\x2c\x13\x93\x66\x57\xe4\xcc\x88\x7f\x92\x24\x3a\xdd\x55\x63\x2d\x99\x5d\xae\x7f\xf8\xc1\x1d\x85\xc5\x15\x93\x1f\xcb\x98\xb6\xbc\xb6\x62\xd1\x14\x6b\x64\x34\xbf\x2d\xa1\x20\xd7\x24\xdb\x6e\x29\x4a\x53\x16\x92\x97\x6c\x76\x95\x25\x39\x56\x57\xd2\x92\xbf\x74\xb5\xbd\xac\xc2\x9e\x13\x6d\x9f\x51\x66\x34\x56\xcf\xaf\xe6\x5f\xcd\x6d\xcb\xb8\x4e\xae\x35\xc8\xe7\xc7\x26\xa7\xa9\xad\x59\x81\x67\xc5\xfc\x1a\x66\x33\x8e\xae\x23\x16\x5c\x31\x66\x1f\xfb\x10\xa5\xb8\x02\x1e\x1f\xfb\x10\x62\x0f\x03\x3e\x37\xf6\xe1\x88\xdd\x76\x18\x83\x1f\x44\xdd\xf9\x4b\x5c\x45\x47\xa9\x09\x38\x28\xf3\x8e\x84\x37\xb7\xb9\xd5\x02\x9a\x83\xf9\x57\xa7\x6a\xb5\x6e\x55\xc0\x64\x5e\x75\xdc\xf7\xf4\x78\x0a\x56\xd0\x9d\x74\xf4\xb8\xff\x7a\x5a\x85\xab\x90\x1d\x04\x00\x06\x6d\x63\xe7\xd9\x26\xd6\x28\xca\xa1\x03\xdc\xb0\xed\xe9\x3c\x94\xca\x42\x9e\x58\xb6\x04\x99\x94\x48\x19\x19\x04\x0e\xc2\x64\x5c\x58\x0f\xc8\xc2\x51\xca\x64\xd2\xae\x9f\x08\x50\xfd\x9f\xae\xa8\xc3\x06\x9f\x5b\x99\x96\xe6\x2e\x2b\x70\xa6\x39\xd2\x1c\x6a\xbd\x4a\x90\xfd\x88\xf1\x28\xfd\x65\x31\x70\x5d\x25\x26\x9c\xca\x28\x0f\x44\x77\xa5\x0a\xa3\x25\x58\x00\x64\x36\x1a\xdb\x02\x9c\x1f\x92\x80\xdd\x2d\x1d\xd5\xab\xef\xeb\xe8\xb8\x4f\x90\x91\xc0\x3b\x4e\x59\xf6\xf6\xd2\xeb\x6b\x2a\xf7\xae\x58\x39\xbc\x5c\x6d\xd5\x29\x8a\x26\x77\x93\xa4\xe1\x00\xef\x0f\x07\x79\x7f\xb8\xe7\xe0\x86\xba\xba\x0d\x07\x7b\x7a\x0e\x0a\xb2\x71\xf0\xae\x51\xb2\xbe\xb3\xab\xa0\x51\xc3\x7f\x3c\xda\x1b\xa9\xd6\xa9\x5c\xd6\x00\xae\x96\x73\x91\xf4\xfc\xe5\xfe\xae\xf1\xf4\xf3\xe5\x16\x33\x7a\xde\x6f\x26\x7f\xe5\x22\x1f\x14\xe5\xa9\x97\x3e\x40\xd7\x73\xc7\x44\x7a\xa7\xb8\x13\x27\xb4\xbc\x22\x8a\xf9\x8a\xf2\x9f\xd6\x7f\x57\xd3\x00\x7b\x6d\xf5\xdd\x05\xce\xae\x3a\xab\xb5\xae\xcb\x59\xd0\x5d\x6f\xdb\xa3\x34\x66\x26\xc4\x67\xea\x14\x0a\x5d\x66\x7c\x42\xa6\x51\xc9\x9e\x2c\xe8\xf1\x66\x64\x78\x7b\x0a\x0a\xbb\xeb\xad\xd6\xfa\xee\x42\x6d\xa6\x5e\x11\xab\xcf\xd2\x6a\xb3\x8d\x0a\x85\x31\x5b\xcc\xe3\x02\x30\x0b\xc7\x20\x02\x26\x81\xcd\x9d\x36\xb1\x87\x0f\x88\x94\x23\x02\xd0\x92\xf8\x02\xa5\xd9\xa1\x96\x69\x99\x2c\x31\xd0\xce\x27\xb2\x95\xdc\x2e\xac\x94\xfc\x4d\xb0\xc4\xdf\xf2\x87\xb0\xe5\x5b\xb4\x8d\x3e\x48\x67\xd1\x03\x67\xf8\x9b\x70\xf9\x19\x9c\x7b\x71\x54\xac\xb9\x47\x2b\xb9\x93\x3e\xc4\xfd\x1a\x12\x61\xdf\xd3\x81\x16\xaf\x00\x5b\x27\x8c\x77\x7a\x31\x81\x2d\x67\x87\x1a\xa9\x4a\x50\x50\x13\x91\xff\x65\x84\x47\x1c\x11\xfd\xff\xb8\xc7\x7f\xbb\xdc\xe7\xf3\x3d\x1b\x97\x1a\x6b\x09\x96\x9d\x3a\xd0\xe9\x0c\xaa\x09\x63\x28\x87\x10\x4d\xa4\x52\x3d\x7d\xc8\xbf\x0f\x53\x0a\x73\x73\x73\x0a\x0b\x4e\x58\x9b\x07\x6b\x6f\xbe\x4f\xeb\x6c\x76\xae\xc4\x1e\x72\xe7\x56\xa4\x79\x33\xe2\x2c\x39\x55\x99\x05\x3d\x5e\xdb\xb5\xab\x32\xea\x6a\xea\x6c\xb3\x03\x3c\x62\x22\x3f\xa3\x0f\x71\xbf\x82\x3c\x58\xeb\x0e\x67\x08\x24\x01\xa5\x40\xea\xbd\x23\x29\xcd\x6d\xee\x8c\x1f\xb4\x92\x49\x80\x49\xd8\xdc\xf1\xc9\x7b\x41\x2a\x0d\xc8\x8d\xb4\x41\xeb\xb6\xfe\x64\xe7\xd9\x55\x97\x09\xa2\x15\x91\x6a\x50\x66\xa5\xc6\x9a\x75\xe2\x6e\x8d\x77\x9d\x85\xd6\x25\x70\xd6\x15\xe0\xc3\x2e\x96\x33\x07\x2a\xc1\x68\x5b\x49\x41\x64\x7c\x7a\x72\x46\xc9\x89\xdc\x69\x03\x25\x35\x2b\xa6\x65\xd5\x95\xd7\x36\xe5\xf9\x56\xd7\x14\x2c\xf5\x15\xbc\x5e\x51\x58\xea\xf4\x94\xb6\xb1\xa5\xb9\xe9\x93\x12\x35\xd1\x86\x64\x57\x4b\x61\x52\x52\xe1\x0c\x57\xe9\x4c\x8d\xa2\x75\x4a\xc1\xcc\xe2\x94\x84\xe2\xd9\x55\x06\xbb\x33\xd5\x11\x94\x95\x0d\xec\x09\xba\xe8\xca\x7a\x8d\x50\x8d\x2a\x8a\xf5\x1a\xc2\xd7\x19\x41\x21\x02\xbc\x5c\xaf\xa1\x47\x23\x29\xc4\x3c\xfe\xfc\x7b\xdc\xab\xfc\x59\x51\x2f\x1e\xe2\x3b\x59\x0f\x2b\x02\x35\xcc\x76\x47\x84\x21\xa0\x22\x5a\x74\x79\x02\x71\xa2\x38\x09\x47\x44\x14\x0d\x10\x6a\x8a\x06\xc6\x2a\x58\x83\xd6\x9d\x18\x3a\x25\x1e\x0c\x36\xdf\xd4\x05\x4f\x07\x4a\xbf\xd5\xa0\x8e\x35\xca\x15\x26\xb1\xf4\x7b\x42\xc0\x28\xd0\xf6\x6c\x91\xeb\xe5\xf8\xb2\x36\xd7\x93\x3e\xb5\x57\x8b\x1a\xde\x2f\xb1\x2d\xab\x5b\x34\x99\x3f\xc7\x8a\xfc\xb7\x34\xcf\x2b\x54\x16\xda\x29\x5e\x7a\xb5\x2e\x33\x27\x87\xaf\xe6\xfe\x0a\x08\xef\x01\xd0\x7f\x88\x35\x8e\x82\xc4\x07\xfb\x4a\x4b\xbc\xc1\x2c\x79\xa0\x64\x34\x4d\xcf\x64\x6a\x9b\x5e\x3e\xee\x07\xea\xe5\x54\x33\x7d\xf8\xb9\xf5\x6e\xf7\xfa\xe7\x86\xd1\x46\x64\x35\xeb\x0f\xf5\xce\x3b\xb4\xbe\xf6\x62\xb3\x40\xa7\x2f\x49\x1a\xb5\xd2\xe9\xa0\x10\xeb\x65\x04\xc2\xb5\x06\xef\x0c\xd8\x14\x68\x58\xfd\x41\x1f\xc9\x97\xea\xf4\xe2\xd4\xd4\xe2\x74\x75\xe8\x9d\xfc\x46\xe7\x12\x9c\x49\x97\x4e\xe7\x14\xde\x9d\x81\x7d\x7a\x86\x77\xd2\x6c\xe0\x40\x01\x8d\x4f\xa3\x80\xd5\xeb\xbd\x23\x39\xcd\x6d\x6e\x25\x13\x53\x5d\x94\x88\x2d\x79\x41\x30\xab\x75\xc7\x4f\x38\x0c\x80\xad\xc1\x93\x08\x4d\x3e\x77\x24\x00\x28\x40\xa1\x94\x27\x70\x32\x8d\xcd\x14\xea\x0d\xb0\x88\x5c\x66\x71\x91\x07\x23\x12\x9d\xd6\x84\x8c\xd6\x4d\x33\xa4\x76\x4f\x75\x43\x0a\x57\xc0\x69\xd2\x4b\x6d\x8e\x99\xa5\x86\x7b\xcd\x99\x56\x1d\xb7\x0b\x10\x6f\x20\x37\xd3\x18\xee\x00\x48\x20\xd6\x3d\xe9\x72\x3f\xe9\x02\xb1\x9b\x14\x8d\x72\xa9\xc3\x64\xa7\x31\xaf\xbd\x80\x43\x0a\x72\x33\x49\xb7\xdd\xb5\x3a\x80\x31\xc3\xc9\x93\xf4\x85\x60\xdd\x6b\xa2\x3b\x1e\x88\x60\x11\xe7\x8e\xab\x5c\x7a\xb9\xe8\xf5\x7f\x79\xae\x40\x78\x4e\xfb\xa6\xe6\xa9\x9b\xda\x73\x72\x7c\x9b\x9a\x9b\xaf\x6d\xcf\x7d\x42\x65\xab\xc8\xb0\xb9\xad\x2a\x95\xad\xc2\x66\x73\xdb\x54\x6c\xe5\xe4\xb5\xbe\xbc\x3c\xdf\xda\xc9\x2b\x27\xaf\x6d\xcb\xcb\x6b\x5b\x3b\x39\xdd\x63\x4f\x4c\xb4\x7b\xd2\x57\xa6\x79\xf2\x92\x92\xf2\x3c\x69\x02\x06\x38\x0d\x1b\x59\x06\xbd\x9b\x58\x70\xe5\x58\xb7\x20\xbf\xb8\x12\x3e\x80\x00\x3e\xa8\x00\x60\x7b\xb9\x23\x90\x8d\x2f\x8d\x21\xf9\x47\xe1\x1d\x60\xc6\x55\xd1\x32\x9c\x84\xc7\xb0\x12\xa0\xf0\x0e\x90\x0b\x48\x81\xfc\x23\x80\x14\x46\x64\x81\x9e\x2b\x88\x13\xeb\xf5\x9e\x22\x66\x5c\x75\x42\x26\x5c\xcd\xbf\x47\xbe\x2a\xbc\x03\x27\xe1\x3e\x5c\x3a\x7e\x9d\x38\x5c\x00\x18\xe4\xab\xe0\x75\x82\x17\xf4\x32\xf7\x9c\x70\x5d\xb7\x70\xdd\x31\x5c\x2e\x8c\xc6\x49\x78\x74\x4c\x45\xce\x5c\x71\x1d\xc5\xe7\xc8\x19\x11\x98\x10\x78\x9d\x1f\x66\x93\x59\xbe\xd8\x07\xd5\xeb\x1d\xc9\x68\x6e\x73\x9b\x24\x48\x39\xe4\xe8\xc4\x12\x17\x31\x7d\x1b\x90\xc3\x59\xa1\xe4\x87\xe1\x07\xe3\x84\x1b\x92\xce\xf1\xe1\x5c\x20\x8f\x78\x75\xd3\x54\xb0\x3d\x2a\xd0\xef\xe7\xd2\x87\x40\x9d\xd8\x4a\xe5\xa2\x57\xc3\x66\x0d\x17\x67\xcf\xd1\x55\xe4\xeb\x67\x7a\x8d\xe5\x39\x49\x88\x1a\x52\xb3\xfa\xc1\x39\x0b\x0e\x2c\x2f\xcd\xf2\xce\xc9\x4e\x49\x89\x46\x64\x51\xc9\x76\xb3\x39\x3f\x25\x3a\x3a\x25\xdf\x6c\xb6\x27\x47\x91\x8d\x9e\x2e\xaf\x3b\x55\x5f\xeb\x6d\xb2\x4e\x9f\xaa\x48\x73\x67\xf6\xde\xda\x9d\x63\xef\xd9\x3b\xb7\x66\xd5\xfc\x59\x19\x49\x19\x59\xae\x34\xcc\x4e\xcc\x4d\x55\xa9\x52\x73\x13\x13\x32\x0d\x4a\xa5\x21\x53\x9c\x7e\x0e\x00\xfb\x39\x37\x02\x93\x20\x16\x2a\xdc\x65\x72\xc1\x09\xac\x07\x0e\x24\x32\x4e\xd2\x15\x86\x32\x10\x50\xd5\xc4\x46\x0a\xa9\x14\x7c\xc1\x4a\xff\x98\x98\x98\xd8\x98\xd0\xd3\x48\x62\xc2\x65\x89\x36\xbd\x5e\x6e\xa4\x7a\xd4\x0b\x20\x47\x65\x94\xeb\x51\x4e\xd9\xcf\xfd\x67\xde\x9f\xc3\x7f\x86\x27\xc9\xca\xef\xde\x7f\x1f\xa3\xfc\x67\xf6\x61\x23\xff\x24\x37\xf2\x09\xbf\xf7\x34\x3f\x1f\x67\x11\xa5\xff\x82\xa8\x1b\xf7\xc3\xef\xd9\x14\xb6\x0b\x22\x40\x72\x24\x8c\x62\x8e\x4d\x81\xe8\x42\xd4\x20\x4a\x11\xf7\xa3\x83\x7f\xe3\x00\xda\xd1\x7e\x80\x7f\x03\x1d\x07\xf8\xb7\xf8\xb7\x70\x08\x8b\xb1\xf8\x41\xfe\x35\x2c\x7c\x90\x7f\x85\x7f\xe5\x41\x2c\xe4\x5f\x13\x9f\xd0\x03\x39\x63\xf7\xb1\x4d\xdc\x97\x90\x04\x56\x70\x41\xaf\x3b\x36\x41\x43\x38\x92\x6d\xd0\x53\xc6\x45\xc8\x08\x88\x85\x40\x91\x81\x42\x20\xc0\x21\xb1\xea\x58\x50\x6c\x57\x75\xde\xa4\x04\xce\x52\x5a\xe6\xbd\xdc\xfb\x38\x61\x84\xcf\x1d\x66\xb3\x29\xd2\xaf\x2e\xe8\x52\x88\xa1\xc6\x50\xfa\x4b\x30\x55\x26\xb3\xd9\x82\xc1\x38\x9e\x5e\xa9\xd6\x60\x30\xc4\xc7\x36\xd5\xef\x3c\xb1\x61\xe6\xee\xe2\x8e\x67\xf7\x97\x94\xd4\x6c\x3d\xba\x61\xea\xae\x62\xcf\x73\xd7\x79\x6a\xf9\xd3\x28\x95\xf1\x03\x49\xcd\x2e\x4f\x57\x69\x32\x3f\x89\x31\xdc\x9a\xdc\x98\xe7\x99\x55\x10\x17\x28\x52\xb7\x59\xef\x45\xf5\x8c\x0f\xb7\x88\x85\xea\x69\xe6\xd5\x9f\xcd\xfc\xfc\x06\x92\xd9\x62\xf6\x3b\x52\xd3\xca\x16\xef\xf3\x19\x2b\x53\xc8\x91\x64\x7d\xe9\xc0\x3e\x5f\x20\xe7\xb9\x1d\x80\xed\xe3\x46\x20\x06\x92\x20\xdf\x9d\x2b\x08\x30\xc7\x80\x13\xdc\x43\x24\x0c\x7b\x24\x62\x1b\x47\x28\x51\x0f\x20\x4f\x92\x27\x2a\x63\x21\x06\x62\xe4\xc1\x7e\x5f\xf9\x38\xab\x1a\x05\x6b\x22\x1f\x47\x75\x78\xcf\xe9\x6b\x5f\xdd\x56\x53\xb3\xed\xd5\x6b\x4f\xf3\x67\x51\x73\xda\xd3\x59\x9a\x98\x58\xda\xe9\xe1\x46\xf8\xaf\xab\x56\x1d\xe8\xea\x3e\x30\x5c\xc5\x9f\xe4\x46\x78\x39\xef\x36\x95\x4d\xb5\xd9\xa6\x95\x99\x85\x3d\xbf\x7f\xec\x3c\xdb\x2f\x49\x80\x6a\x58\xe5\x0e\x37\x21\x65\xa9\x62\x35\x53\xc0\x1c\xaa\x43\xd5\xf4\x81\x42\x8a\x8e\x20\xdf\x69\x03\xe9\xbb\x84\x09\x67\x01\x4a\xc7\x2b\x67\xea\x04\x61\x8d\x03\x04\x46\x03\xed\xcc\x57\x9c\xf2\xf9\xdc\x11\x15\xe5\xb6\x74\x5d\xb2\x29\x86\x13\x4c\x97\x5e\x7e\x59\x04\x99\x4a\x99\xcc\xc6\x7b\xb1\xc5\x9a\x0c\x01\x7b\x30\x47\x7e\x19\xbb\xac\x51\x9f\xe5\xcf\x57\xaf\x3d\xd8\xd7\xb4\x7b\x71\x45\x4c\x7c\x62\x7c\x4c\x5a\x71\x75\x71\x9a\xa3\xef\xd6\xb9\x96\x69\x0d\x6e\x95\x33\x26\xab\xb0\xd2\x58\xea\x11\x8f\xca\xe3\x93\xe3\xe5\xf1\x69\x79\xf1\xc6\xf2\x2c\x2d\xcb\x5f\xf5\xcc\xda\xf2\xcc\x59\x3b\x66\xe5\xd5\xb9\x32\x73\x0a\xcc\x46\x77\x45\xed\xf4\xde\x72\xdf\x8d\x73\x72\x65\x93\x54\xd1\x1f\x86\x29\x63\x22\xa6\x54\xa4\x57\x95\x57\x34\x76\x57\x64\x54\x3a\xb3\xed\x45\x16\x53\x71\xba\x3a\xa5\xa2\xb7\x06\x28\x64\x8d\x5d\x60\x8f\xb2\x26\x28\x82\x6a\x98\x86\x61\xde\x11\x6d\x73\x9b\x3b\x46\x87\x94\x9b\xec\x20\x32\xa9\x93\x12\x90\x09\x6e\xed\x95\x87\x22\x45\xbf\x56\x18\x9a\x09\x8c\x12\xca\xc8\x60\x18\x92\x08\x94\xca\x88\xb4\x27\x1c\x29\xe5\x3a\x24\xc8\x71\xb5\xde\xe8\x48\x22\x93\x41\x07\x46\x91\x50\xea\x2a\xaf\xb9\xcd\x5d\xf0\xdf\x2f\x82\xcb\x97\x78\xa3\x31\x32\x72\xc2\xf5\xee\xd2\xd0\xa5\x10\x21\x25\x11\xad\x61\x48\x40\xb8\xbe\xeb\x7f\xbb\xde\xe7\x73\x9b\x6a\x6a\x10\x6a\xa6\xd5\x4c\x6b\xa8\xaf\x28\x2f\x29\xce\xcd\xb6\xa6\xa7\x1a\x52\x92\xe2\xe3\xd4\xca\x98\x49\x61\x52\x28\xc2\xa2\x49\x62\x0d\xdb\x8f\xb9\xca\x81\xa8\x8b\xc6\xe9\xd4\x04\x2a\xdb\x54\x13\xd2\x80\xd4\x1e\xec\x61\x55\x61\x9e\xf3\x72\xd9\xe9\xbc\xf6\x6d\x99\xb1\xd9\xc5\xd5\xe9\x53\x56\x4d\xb5\x7e\x72\x92\x9a\xd2\xb3\x33\xf9\x4b\xd9\x6d\xeb\x9b\xf6\xb4\x5a\x97\xd5\xd5\xaf\x99\x91\xcd\x97\xc6\x5a\x2b\x73\x0c\xce\xcc\x34\x95\x4b\x59\x3a\xa5\xfd\x89\xa3\xb6\x1c\x43\xba\x5a\xca\xbf\x21\x37\x4c\x42\x5b\x45\xa6\xc6\xa5\x2c\x2b\x8c\xcb\xd0\x29\x32\xa7\xad\xaa\x7b\xe4\x99\x61\x47\x61\xb6\x33\xac\x6e\xd5\xb4\x4c\x6f\x6a\x1a\x16\xf4\xef\x9b\xfd\x6d\x47\x6a\xb1\x55\x13\x16\x15\x1b\xf6\x62\x4c\x92\x3a\x8a\xdc\x36\x58\x58\x91\x90\xe5\x36\xf9\xbf\x8f\x8e\xf4\x27\x66\x97\x19\x72\x8b\x81\x80\x79\xec\x3c\x9b\xc2\x9d\x87\x54\x28\x82\x19\x6e\xb5\x1a\x09\x16\x89\x99\xd2\x54\xa3\x41\x97\x92\xa8\x4d\x88\x0f\xc3\xba\x80\xb3\xab\x00\x04\x42\x91\xf4\x5c\xf1\x60\x8d\x1f\x1c\x15\x3b\x04\xc3\x1c\x76\x5b\x7a\x5a\x9a\x80\xd9\x50\x1d\xab\x52\x5d\x11\xc1\x57\x6b\xcc\xc1\x50\xac\xc5\xa5\xd6\xb8\x34\xf4\x72\x47\x43\x00\x53\xd0\xcd\x73\x17\x4d\xdf\xfb\xda\xd0\x8a\x17\x77\x78\xab\x37\x3e\xb3\xdc\xbb\xcd\xa9\xf2\x64\x7c\xd3\xf8\xb6\xbe\xc6\xd8\xf6\xf0\x75\xaf\x35\xf2\x31\xf6\xea\x36\xa7\xb3\xa5\x38\x45\x5f\xde\x51\x5c\xd2\x55\x95\xca\xbe\x1a\xe2\x5f\x7f\xd1\xb3\xed\xef\xfb\x67\x36\x5c\xff\x64\xdf\xe0\x73\x9b\xeb\xb2\xac\x4d\x1b\x72\xaf\x1f\x5c\xa9\x36\x44\xbd\x6f\x1d\x58\xb2\xcc\x5f\xa5\x30\x24\x4c\xca\x69\xea\x2f\x70\x76\x4e\xb6\x39\x66\x5f\x3b\x65\x6e\x40\x87\x0f\xc0\x0e\x36\xc0\x7e\x07\x14\x26\x41\x12\x64\xb8\xd3\x43\xd5\x81\x02\x5e\x63\x08\x5d\xc0\x38\x8e\xb5\x06\x3b\x96\x19\xd7\x94\x6a\x4e\x35\x86\x5a\xfb\x1c\x7a\xcc\x77\x86\xea\xa8\xcc\x74\x42\x51\x95\x99\x0d\x8c\x02\x03\x7f\xef\xb4\x9a\xda\x69\xd3\x6a\x6b\xa6\x11\x55\x5a\x81\x31\xf8\xb1\xf4\x34\xea\x4b\x9b\x9b\x4b\x4b\x9b\x9b\xfd\xb1\xc9\xf9\x66\xf5\x54\xe1\x63\x60\x3e\xf3\xc7\x86\xd8\x3c\xf6\x02\x68\xc1\x02\x76\x58\xe8\x56\x84\x4b\x09\x83\x0c\x9b\x2e\x85\x71\x2c\x4e\x45\x88\x58\x39\x22\x6c\x89\x68\x36\x96\x03\x25\x74\x28\x64\x2c\x6a\x27\x3e\x4d\x41\xfb\xdf\x47\x88\x05\xb5\x61\x56\x6b\x6c\x7a\xec\x84\x4a\x8a\xa0\x25\x09\xec\x99\x45\x6a\x74\x99\xcd\x41\x53\x12\x7c\x20\x87\x60\x61\xc4\x8d\x12\x2b\x65\xfa\x5b\x6b\xf7\xf7\x77\xce\xf3\x5c\xf7\xdb\x35\x73\xa6\xd6\xee\xef\x9b\x3f\x80\x6a\x4d\x02\x4e\xb2\xe4\x96\xb5\x15\x24\xe0\x1f\x14\x4a\xfe\x3b\xa3\xb9\xb4\xcd\x15\xac\x9a\xd1\xed\xf9\x73\xfd\xd9\xdd\x62\xdd\x4c\xc2\xde\x3f\xd4\x7d\xbd\xaf\x72\x28\x83\xd8\xe4\xf9\xed\xab\x2a\x0b\xe7\x5b\xfd\x9f\x44\xe4\x87\x6a\x50\xc5\xda\x19\x89\x54\xac\x2f\xe9\xfb\x41\xe9\x74\xc0\x45\xfa\x41\x25\xf4\x8f\xd4\xcf\xfc\xd8\xc9\x40\x00\xe8\xbf\xd6\xcf\xfc\x64\xad\xb4\xcf\xb5\x68\x7f\x5f\x9b\x58\x3f\xa3\xce\xdd\xdc\x3a\xff\xee\x45\x2e\xfe\x5c\x7c\x7e\x4b\xd1\xe4\x39\x09\x09\x73\xbc\xc5\xd3\xf3\x35\xc1\xf2\x19\x17\x8f\xd2\x87\xfd\xef\xb8\x4a\xc6\xeb\x67\x1c\x7c\x59\x7e\xa8\x7e\x46\x03\xc0\xde\xe3\x46\x40\x01\x1a\x70\xba\xed\x32\x09\x81\x08\x8e\x60\x38\x60\x17\x84\x03\x25\xe1\xb4\x2b\x0c\xa5\xd2\x40\x83\x62\x29\x69\xb8\xea\xa9\x6c\x91\xb2\xa4\xf1\xc7\x8a\xc8\xf5\x72\xa3\xc3\xee\x10\x4b\xdd\xc4\xa7\x4e\xc8\x5f\x7b\x2d\xd0\x08\x99\x9b\x1b\x68\x85\xf4\x37\xe2\x5d\xfc\x3c\xf6\xf2\xc1\x4b\x67\xc9\xb0\x7f\x07\xd3\x1c\xfc\xf2\xcb\x2f\xfd\x07\x9f\x0f\xd5\xd3\x89\xb9\xe2\x09\xf5\x74\xe5\xff\x87\x7a\xba\x50\xe5\x22\x10\xd8\x30\xf6\x85\xd8\xc7\x43\x21\x1e\x9a\x02\xe6\x20\x01\x18\x72\xc8\xb8\xc1\x40\xab\xa2\xb8\x09\xc1\x1a\x40\xad\xf0\x7b\x57\x9c\x14\xad\xe8\xe5\x62\x14\x9f\x3b\xcc\xa0\x34\x85\xfa\x3c\x8d\x72\xbb\x7e\xbc\x2a\x35\xe0\x8d\x97\x11\x07\xd6\x1c\x3f\x4e\xdc\xc7\xd3\x67\x5c\xdb\x5a\x77\x8d\x2f\xf7\x78\x5d\x49\xba\x4b\x1f\xc5\x8d\x5c\xda\xdb\xbc\xb1\x2d\x2b\xbd\x65\x53\xeb\x9c\x99\xf1\xd9\x55\x56\x31\x9e\xe7\xe5\x1b\x59\x2b\xf7\x22\x68\xc4\xca\xe6\x42\x68\x72\x37\x44\x20\x91\x04\xea\x29\x23\x31\x3c\x3c\xac\x23\x02\xc3\xc2\x3c\x5e\x19\x52\x0a\x3e\x26\xa6\xec\xa5\xc8\x71\x81\x00\xcf\xc4\xf2\xca\x02\x67\x5e\x4e\x86\xd5\x9c\x2a\xee\x86\xca\xe3\x88\x89\x12\x36\xe4\x87\x95\x96\x46\x93\x5e\x6e\x57\x89\x0d\x22\x8a\x09\xaa\xc2\x34\xe1\x33\x19\xc1\x7b\x0b\x97\xdc\xdd\x5b\x38\xcf\x15\x2d\xb7\x3b\x73\xa2\xf3\xda\x2a\x4c\xef\xf9\xef\xc3\xc7\x3e\xf6\x0f\x9c\xff\xf4\xbd\xa2\xc2\xc2\xe2\xe2\xc2\xc2\x22\x52\x1b\xfa\xc4\x8a\x2e\xbd\xd8\x7f\xef\x40\x81\x34\xfc\x61\xca\x51\x8c\x2b\xee\xf6\xd2\x7d\x8f\x8e\x0e\x3e\xfa\x28\xf9\x0c\x5f\xcc\x76\xbb\xb3\xb3\xca\xcb\xb3\x83\xef\x80\x70\x8f\xe0\xff\x88\xf5\x14\x57\xf5\x8e\xfe\x3f\xea\x31\x67\x3d\x2c\x70\xf9\x22\xb4\xe0\x6c\x7e\x03\xde\xca\xdf\x85\x07\x77\xf1\xa7\x58\x11\x6f\xde\x88\x1d\xbc\xdb\xbf\x15\x10\xec\x00\x6c\x58\xec\xcb\x36\xbb\x8d\x11\xe1\x61\x32\x4a\x02\x0f\xf6\xae\xbf\xba\x91\x54\x25\x57\x8a\xb1\x56\x97\x4a\x2a\x56\xcc\x48\x1d\x2e\xb9\x1e\xdf\x3a\x73\x86\x3c\x3a\x5a\xb2\x69\x13\x26\xd0\x55\x9e\xa3\x1e\x3e\xe7\x34\xe9\x32\x1d\x35\x91\x9d\x81\x7a\x8d\x3f\x03\xb0\x7e\x09\x80\x1c\xb2\xdc\xb6\xa8\xc8\x88\xf0\xc0\xfd\x29\xd6\x03\xa5\xcc\x27\x16\xc0\x4e\xcc\x70\xca\x55\x72\xb9\x52\x8c\x55\x99\x54\x5c\x90\x5d\x39\x87\x49\x8c\xef\xe6\x61\x3c\xff\x79\x90\x6f\x8f\x63\x01\xff\x3c\x99\x4d\x2f\xad\x3f\xba\xde\xff\xe8\xa9\x53\xf8\xd7\x1b\x8e\xde\x80\x77\x9f\x16\x7e\xf3\x16\xde\xcb\x6a\xb9\x11\x88\x83\x62\x77\x81\x26\x96\x04\x4a\x6e\xc3\x10\x90\xd6\xcb\x91\xe0\x64\x8e\x91\x10\x8a\xf5\x4e\x70\xf7\x01\x20\x0e\xe2\xe4\x2a\x93\x49\x2c\x7f\x1c\x67\x86\x60\x05\x75\xa0\x1f\x55\xce\x6a\xf3\xbb\x6e\x6c\x33\xbb\xcd\xd1\x6a\x7b\x42\x91\x9b\xdf\xc8\x7f\x8e\xf1\x78\x2d\x37\x72\x31\xbd\xf3\xd6\xde\x7c\x69\xf8\xdf\x25\x5c\xeb\x74\x0b\x5d\x36\xfa\x33\x6e\x64\xf4\x26\xba\x5c\xa4\xc3\xad\xbc\x97\x15\x88\xb5\xe3\xdb\x82\x85\x65\x88\x14\x0c\xc8\xa8\x02\x09\x8b\x45\x24\xac\x5e\x2b\x1e\xe4\xae\x3c\x18\xac\x43\x0b\x44\x53\x25\x1c\x09\x96\xd4\x5d\xc1\xcd\x5a\xb7\x4e\x40\x4a\xe5\xde\x09\x61\xe8\xab\x86\x04\xa2\x3f\x26\x30\x29\x2c\xa6\x74\xa3\x18\xfd\x19\x2f\xef\xbc\x72\x9d\x13\x6b\x3d\x6f\x8b\x72\xdc\x35\xaf\xe9\xda\x59\xf6\xfc\xae\x1b\x5b\x4d\x15\xa6\x68\x75\x7e\x42\x61\xb9\xc6\xe6\xb6\x56\xcf\xd3\xf1\xe7\x58\xd1\xed\x53\x3b\x72\x16\x3c\x3c\xec\xaf\xe8\xbc\x75\x5e\xbe\x34\xfc\x23\x89\xa4\xa5\x85\xfc\xb6\x64\x5a\x9e\x3a\xd7\x36\xfa\x95\x58\xb7\x4a\xa0\x76\xec\x3c\x7b\x88\x7b\x05\xb4\x90\x01\xef\x89\xa8\xfd\xe9\x14\xf1\x79\x0f\x01\x90\x2e\x7c\xa1\x58\xaf\x15\xde\xc3\xb0\xde\xe7\x1b\x7f\xfe\x1f\x48\xa4\xa2\x87\x19\x2a\xb1\xf4\x78\xc3\x65\x44\x2a\x0d\xd4\x1e\x5e\x06\xf9\xae\x2b\x47\x8a\xfe\x97\xf0\x31\xe8\x8e\x06\xae\x11\x9f\xab\x15\xf8\x1c\x8a\xcf\x6b\xdd\x79\xa1\x2b\x43\x0f\xf5\x10\x1d\xb7\x89\x6e\x6c\xe0\x2a\x94\xc9\xc6\x83\xfa\x3e\xb7\x22\x39\xd1\xa8\x4b\xcc\x48\xce\x10\x94\x47\x6c\xba\x21\x26\x42\x74\x6b\x43\x75\x58\x41\x9c\x34\xfe\xd8\x00\x2e\x6f\xbc\x94\x51\xae\x4c\x26\xec\x21\xbe\xa3\x7c\x6b\xed\xec\xbb\x87\xdc\xee\xe5\xfb\x67\xd7\x6e\x2f\xc7\x3b\xf8\x03\x98\xc6\xbf\x87\x7d\xfe\xa6\xac\x4c\x4d\xb6\x26\xa3\x3a\x27\x21\x21\xb7\x46\x16\x55\xb6\xe9\xe8\x16\xfc\xc3\x96\xa3\x9b\xca\xa2\x64\xef\xf3\x37\xbc\xcf\x77\xaa\x28\x8b\x25\x44\xeb\x19\x6a\xe3\xb3\x5a\x96\xba\x13\x04\xcc\x61\x1e\xbb\xc0\xee\x63\x4d\x90\x0e\xc5\x50\x0d\xb5\x6e\x8f\x0c\xa5\xa0\x45\x4a\xf4\x89\xff\x1f\x69\xef\x01\xd7\xc6\x95\xed\x8f\xdf\x33\x73\x67\x86\x0e\x42\x15\x01\x12\x42\x15\x84\x68\x42\x12\x88\x26\x3a\xa6\x63\x6c\x03\xc6\x36\x60\x6c\x70\x37\xee\xbd\x97\x38\x8e\x63\x27\xb1\xbd\xcf\x71\xb2\xe9\xdd\x29\x38\xbd\x57\x27\x2f\xc9\x66\xb3\x9b\xdf\xb6\xe4\x65\xb3\x29\xeb\xac\x13\xdb\xc9\x6e\xde\xe6\x65\x37\x31\xba\xfc\x3f\x73\x67\x24\xc0\x25\xc9\x7b\xff\xf7\x96\x18\x34\x33\x9a\x73\xcf\xbd\xf7\xdc\x53\xbf\x87\xc1\x2c\xdb\x80\x22\x11\xc3\x46\x32\xfd\x13\x98\x57\xd7\x28\x1a\x72\xb8\x87\x03\x8a\xe2\x55\x5a\x52\x59\x51\x52\x53\x5a\x63\xb7\x9b\xed\x66\xb5\xc5\x12\x1d\x06\xa4\xd4\x4c\x54\x8e\x25\xef\x84\x96\x7a\x0a\xc3\xc9\x9a\xd2\xe6\x08\x19\x3e\x56\xf1\x3f\xa2\xe6\x6c\xcb\x9d\xbd\xaf\xb3\x6e\x65\x56\xc6\x92\xaa\xb6\xad\x9d\x2e\x32\xab\xad\x4b\xef\x48\x37\x2a\x4a\xac\x6b\xdb\xee\x9a\x9f\xb5\xb6\xb1\x6b\xdf\xec\x3c\xe0\x9c\x65\xa5\xce\x28\x5d\x86\xd1\x60\xd7\x45\x31\x96\xd4\x34\x05\xbe\xd3\xca\xec\x58\x72\x62\x5d\xb9\x2b\xd3\xe9\x82\xb2\xe1\x5b\xfb\xff\x2b\x7d\xe1\x30\x1f\x1d\x1f\xf9\xb8\x39\xaf\x37\x27\xb7\x6c\xed\x89\xa5\xab\x37\xac\x5f\xf3\x56\x61\x57\x49\x5a\x5a\x49\x57\xe1\x79\xa3\x7f\x86\x6f\x7a\x55\x8b\xe4\xdf\xbb\x19\x21\x6c\xe5\x5d\x48\x81\xec\x01\x4b\x24\x00\x8a\x02\x06\x98\x06\xf1\x1a\x83\x60\x60\xdc\x2f\xa9\x40\x0a\xab\x55\xf2\x4b\xca\x03\x95\xcb\x43\x14\x70\x73\xf5\xb6\x27\x57\x66\x34\x3b\x74\x6a\x67\xda\xa6\x1d\xb8\x79\xcd\x63\x1b\xca\x63\x22\xff\xc4\xf1\xfb\xd6\x5d\x78\x4c\x96\x2f\x8b\x78\x17\xca\x40\xe5\x81\x92\x34\xe0\x39\x13\x60\x3e\x1a\x18\x44\x53\xb0\xa9\x67\x04\x73\xfc\x80\x28\x9b\x71\xb7\x10\xca\xb6\x0e\xed\x44\xa5\xd5\xaa\x50\xda\xad\x52\x94\xc1\x3c\xe9\xc4\xf1\xd2\xb4\x43\xcf\x64\x7a\xd4\x6e\xf6\xe4\xbb\xbe\xa1\xa3\x73\x72\xe7\xe4\xc6\x47\xd9\x33\x1d\x31\x53\xeb\x6f\xbf\xbd\x62\xe3\x23\xcb\xdd\xbd\x6e\x5d\x4a\x55\xd6\xaa\x15\xef\xb2\x4b\x47\xf7\x0e\xdd\xb2\xc4\x97\xa0\xfe\x28\x22\x26\x82\x1b\xea\x63\x37\xfe\xba\x75\xf0\x97\x8b\x7c\x3a\xc5\xfb\x71\x09\x03\x73\x5a\xe9\x3e\x9c\x3d\x76\x1e\x7f\xc2\x7d\x8c\x52\x50\x3e\x6a\x0f\x44\x29\x81\x05\x3d\x60\x6a\x49\xab\xa8\x25\xcd\xb2\xd0\x23\x9e\x2b\x17\x39\x38\xf4\x92\x9e\x76\x39\xa8\x89\xee\xa7\x32\x32\xd5\x19\x16\x2a\xb0\x27\x57\xd7\xd3\xa8\xbd\x5b\xc5\x0b\x9a\xcb\x15\x8d\xef\x9b\x58\x65\xbf\xf1\xd5\x5a\xbd\xee\xd5\x96\xc6\x8a\x9f\x2c\xb5\xef\x6a\x4b\x1e\xa8\xd9\x72\xc2\x79\xdd\x73\x97\x29\xb8\xa7\x63\xec\x15\x65\x0d\xbe\x89\x8e\x71\x7a\x20\x2a\x02\x30\x8a\x03\x16\x87\xb2\x47\xf5\x92\x4a\x3d\xae\x4d\xcb\x46\x3f\xd5\xb7\xaf\x74\x51\x54\xb5\x9f\xca\xc8\x70\xaa\xe8\x38\xc3\xfb\x42\x1a\x9d\xe6\xc7\xd2\xd1\x7b\x45\x25\x7b\xe8\x9e\xf2\x92\x57\x5a\xea\xac\xb6\x9f\xca\x49\x2f\xf6\xfa\x77\xaf\xb8\xcd\x55\x79\x73\xd7\x8f\x65\xa6\x03\xda\x33\x76\x9e\x7b\x8a\xfb\x1c\x99\x50\x5e\x20\x5b\x1c\x35\x87\xa8\xdb\xba\xac\x51\xe0\x19\x0a\x60\x37\xae\x84\x21\x84\x4c\xc8\x64\x56\x5b\x55\x2a\x29\xdb\x55\x5d\xc6\x7a\xdc\xaa\x38\x46\xb8\x5c\x21\xf6\xb4\x82\xb2\xb4\xc8\x37\xed\xd3\xaf\xea\xbb\x7c\x45\xf6\x29\x36\xbd\xb4\xa7\x64\xe0\xe8\x7c\x2f\x1b\xbc\xf9\x32\xc5\xd9\x80\xd6\x8e\x9d\xe3\x7a\xf1\x71\x64\x44\x73\x02\x31\x29\x49\x2c\xcb\x32\xfc\x04\x6f\x8d\x8e\x07\x8e\xe1\x56\x62\x29\x5f\x5e\x3c\xad\x42\xa2\x3c\x90\x32\xe9\x92\xec\x91\x19\x0f\xa5\xc6\x49\x79\xbb\x4a\xab\xda\xac\x12\xa4\xdc\x03\x61\xbc\x96\x6e\x62\xf2\xab\xda\xeb\xf5\x70\xbd\xc7\x6e\x1e\x4d\xb8\x34\x05\xb6\x24\x1f\x1f\x7f\xfa\x4d\x7d\x10\x5d\x26\x15\xf6\x7a\xfd\xda\x7e\x7a\x56\x7f\x46\x1a\xd9\x3e\x9a\xbb\x9b\x11\xb0\x4d\xa8\xd8\xb9\x5c\x9d\x8e\xba\x26\x04\x0f\x72\x69\x95\x0e\x78\x99\xcc\xb2\x35\x0f\x2c\x75\xcd\x72\xc6\xc5\x38\xb3\x1d\xd1\x8e\xda\x02\x03\xf9\xfa\xb2\xa5\x38\xe2\xda\xbd\x79\xec\x3c\x5e\x85\x5b\x43\x75\x7b\xa9\xc0\xa2\x14\x60\xa4\x8a\x37\x0e\x33\x5c\x7f\xb8\x58\xaf\xae\x31\x5c\xc2\x57\x03\x57\xac\xdb\x83\x90\xdb\xdf\x4e\xb7\xa5\x0c\x3e\x20\xd8\xcb\x58\x25\xf5\x32\xd3\x0c\xb7\xbe\x4d\xaf\x5f\xdd\x50\xbf\xfb\xd9\x95\x6b\x1e\xdb\x50\xc6\xbc\x20\x38\x6a\xfa\xcb\x8b\x7a\x9a\x2a\x8d\xad\x86\x69\x4b\x76\x0e\x66\x37\x78\xcd\x91\xa4\x4b\x97\xdf\x82\x5b\xa7\x1e\x7a\x75\x85\x63\xdd\xdb\x87\x3b\xa0\x76\xdb\xe3\xcb\x6f\x29\x98\x55\x63\x8f\xd5\x18\x14\x8f\xeb\x5c\x66\xcd\xe8\x16\x73\xe9\xb4\xfc\x24\x57\xa3\xd7\x48\x79\xb8\x03\x7f\xc4\x2e\xe2\xce\xa3\x08\x94\x1a\xd0\xf3\x2c\xa2\x75\x44\x00\x88\x41\xab\x44\x69\xc2\x84\x8b\xd4\xd5\x66\xbb\x60\xf6\x58\xdd\xec\xa2\x8f\x8e\xdf\xf8\x01\xa4\xdf\x8e\xbf\x4f\xd9\xb6\xcd\xf0\x0d\x02\xf4\x3d\xfe\x88\xfd\x37\xf7\x95\x94\x93\xcc\xd3\x9c\x64\xea\x6a\x15\xf5\xc5\x32\x14\xfe\x06\x9f\x5b\xcd\x99\xad\x1e\x37\xb3\xfe\xf0\x57\xe4\xfd\x47\xc8\xfb\x5f\x71\xcb\xb7\x2a\x83\xa3\x2a\x1a\x9f\xc4\x5b\xd8\x77\xb9\x3b\x90\x1a\x19\x02\xc9\x88\xa1\x22\x42\x82\x28\x00\x19\x98\xc0\x22\x6e\x6b\xed\xb8\xf8\x0a\x87\x47\xd8\x77\x73\xba\xb7\xb6\xb4\x6e\xed\xce\x79\x33\x3e\xdd\x63\xb7\x79\x4c\xf1\xdc\x1d\x15\x4b\x9a\x9d\xce\xe6\x25\x15\xfa\x3c\xab\x46\x63\xcd\xd3\x8b\xef\x78\x1f\xbf\xc9\x62\xee\x63\x14\x2d\xe7\xab\x52\xf1\x51\x06\x4d\x96\x74\x29\x54\x35\x6e\x2b\xc0\xfb\x6d\xb5\xb5\x6d\xe2\x0f\xd7\x51\xda\xda\x5a\x5a\xd2\xda\x8a\x18\x38\x8c\xe3\xd9\x42\xee\x30\x52\x22\x23\x9a\xd5\x38\x62\x9a\x58\x23\x53\x12\x0e\x9e\xd7\x41\x28\xa9\x24\xf1\xa2\x68\x4f\x09\x4b\x9d\x99\x52\xa1\xfb\x00\xcd\x92\xe8\x94\x97\x28\x03\xad\xdd\xdd\x4f\x5a\x6c\x57\x0a\xba\x87\x62\xa2\xe9\x3c\x1c\x36\xf9\x5b\xb2\xb2\x9a\x0a\xd3\xd2\x0a\x9b\xb2\xb2\x5a\xfc\xa6\x95\x45\x99\x99\x1e\x4f\x66\x66\x11\xfe\x4d\x66\x7d\x81\xc1\x50\x50\x9f\x99\x59\xe7\x4e\x49\x71\xd7\x65\x66\x79\xbd\x59\x2e\x9f\x0f\x01\x6c\x21\x5d\xac\x1a\x95\x20\xad\xc8\xdf\x18\x3a\x47\xda\x68\x86\xc6\xb0\xe8\xf2\xac\x80\x26\xab\x5d\x64\x83\x49\x0e\x6f\x78\x25\xfd\x81\xfa\xe1\x7c\xcc\x79\x57\x89\x25\xde\x60\x4d\x75\xc4\xe5\xa4\x74\xd7\x64\xb7\x97\x98\x97\x2c\x4a\x74\x64\xe5\x25\xa7\xda\xe3\xf8\xe3\xf1\xa9\xc9\x05\xcd\xee\xe6\x5f\xe4\x4b\xb6\xc4\x76\xfc\x05\xdb\xc5\xf3\x28\x99\xca\x3d\x60\x99\x38\x40\xc0\x34\x24\x03\x53\x1f\x0b\xa8\x2e\xc4\xa8\xb2\x70\xe8\xb3\x04\x35\x99\xed\xe6\x49\x69\xb3\x13\x13\x64\xc4\xb1\xb3\x5d\xc6\xa2\xd6\xbc\xdc\xba\xf2\x32\xbb\xc5\x73\xc0\x58\xd8\x9a\xe7\xa8\xad\xaa\xb6\x59\xbc\xdc\x19\x57\x57\x4d\x66\xb2\x29\xb9\x20\xdb\x90\xd5\x55\x9b\x95\x6c\x4a\x76\x4b\xf9\x5d\xe8\xff\xe1\xcf\x71\x2a\xf7\x35\xcd\xb5\x0b\xe5\x77\xd1\x78\x47\xd9\x44\xc4\x0c\x30\xb3\xe2\x4f\x0c\x28\xc8\xbb\xbf\xdf\x08\x1c\x21\xef\x72\x5f\x93\x7f\x41\x24\xf9\x17\x62\xe0\x19\x72\x90\x65\xc7\x9e\xa3\x73\x5e\x2e\xa5\x14\x29\xc7\x67\x90\x09\xf1\xee\xc7\xe6\x35\x3c\xad\xdc\x8f\x4d\xeb\x33\x7a\x57\xa9\x39\xbd\x24\x2b\x29\x29\xab\x24\xdd\x5c\xea\xd2\x2f\x4b\x4b\xd2\x1a\x0c\xda\xa4\xb4\xbf\x98\x0a\x33\xb4\xda\x8c\x42\x93\xc9\x6b\xd7\x68\xec\xbe\x34\x9d\xd1\xa8\xd3\x9b\x4c\x22\xaf\x47\x8f\xe1\x67\x49\x2a\xaf\x13\xb5\x4b\x49\xc9\x8e\x0e\x01\xfc\x96\x89\x54\x45\x4a\x47\x25\x42\x0b\xc7\x81\x07\x58\x37\x49\x7d\xe0\xc3\x4f\xf1\xb3\x30\x87\xce\x57\x70\x18\x3f\x43\x3e\xe3\x93\xa4\x98\x78\xd2\xc4\x98\x78\xd9\x8f\xc7\xc4\xdd\xac\x99\x30\x9f\xbc\x73\x0f\x9f\x44\x6e\x1b\x1b\x1b\x5d\x8e\xbf\x18\xab\xe3\x79\x46\x40\x77\x5c\xf8\xbb\xd4\x63\x21\x68\xc3\x7f\x27\xb7\xf2\x7b\x90\x52\xb4\x2b\x13\x45\x93\xb8\x21\x9c\x33\x2d\xee\x8b\x4e\x91\x6d\xdd\x18\x58\xc4\x36\x4b\x71\x5a\x85\x46\x41\xf7\xb9\x5d\xca\x26\x34\xfb\xe4\xdc\x07\x75\xd0\x1f\x3b\xa5\x42\x63\xf3\x1a\x85\xa7\x9f\xd5\x67\x7a\x53\xf0\xdf\xaf\xe6\x52\xd3\x54\xc9\x09\xc2\x9e\x85\x33\xcd\x6e\xb3\x0a\x4b\xf5\x60\x17\xfe\x85\x4f\x8f\xb5\x8c\xcf\xfb\xe4\x7e\x00\x61\x18\x0b\x69\xe6\x09\xfe\x82\x7c\x08\x3a\xa6\xfc\x93\xff\x01\x05\x3e\x0d\x51\xe4\x3b\x88\x42\x10\x8c\x25\x47\x48\xfb\xd8\x43\x3f\x16\xdb\xbe\x78\x3a\x83\xb1\x52\x92\x74\xa6\x56\x9b\x29\x25\x4d\x7f\x62\x28\x10\xa5\x4f\x81\xc1\xe0\xb6\xa9\xd5\x36\x37\x02\xa6\x06\xff\x37\xfb\x00\xbf\x43\xc6\x98\xb8\x88\xb1\x8a\x04\x46\xd0\x38\xc1\xc4\x9a\x99\xa3\xa0\xfe\xe0\x00\xbf\x83\xac\x40\x2c\xb0\xf8\x4d\x5c\x25\x44\xd2\x3c\x6f\x27\xfa\x1f\x29\x59\x45\x8d\x28\x4e\x87\x04\xd8\xc5\xf4\x88\xc7\x71\x2e\x1b\xca\x53\xb9\xcc\xc5\x7c\x36\x94\xa2\x72\xc5\x27\x13\x7e\xec\xc9\xc4\x1f\x7b\x32\xf5\xc7\x9e\x34\x5e\xf9\xc9\x2b\x3c\xd4\x2d\xfd\x5f\x20\xd2\xe1\x70\x58\x15\x09\xbc\xa0\xa7\x4c\xb9\x98\xe1\x17\xe7\x62\x32\x7b\x21\xe1\xbe\xc3\xe4\x3e\xb5\xb5\x20\xcd\x58\x60\x55\xab\xad\x05\xc6\xb4\x02\xab\x9a\xb1\x5e\xfc\x89\x10\x49\x9e\xdf\x9c\x92\x6b\x56\xa9\xcc\xb9\x29\xc9\xb9\xe9\x2a\x55\x7a\x6e\x6a\x4a\x8e\xf8\x77\x4e\x8a\xfc\x39\x8d\x85\x33\x2e\xc6\xc1\x2e\x64\x3b\x18\x1e\xad\x2d\x0f\xd5\x76\x16\x87\x31\xbc\xa4\xe4\x75\xc6\x21\x0a\xff\x0c\x09\x69\x44\xd0\xca\x28\x3c\xb8\x38\xb8\x98\x9c\x61\x1f\xc6\xef\x5c\x28\xe0\x46\x44\x79\x64\x46\x88\x93\x70\xb8\x29\xb2\x2d\x0f\x14\xc3\x0b\x21\x07\x55\x54\x66\x5e\xf4\x1d\x60\xb2\x9a\x80\x89\x86\x14\xf8\xe0\x82\x19\x96\x30\xc2\x18\xe2\x46\x7e\x68\xfb\x8c\x9d\x2e\xda\x92\x3d\x63\xe7\xf1\x5e\xee\x14\xf5\x01\xe6\x50\x9c\x3c\x40\x88\x03\x09\x27\x4f\x94\xa9\xb9\x61\x0f\x74\x1e\xd3\x94\x91\x91\x11\xe6\xa3\xc7\xc4\xfd\x0c\x7c\x2d\x36\x9f\x6c\x86\xdd\x30\xed\x67\xa0\x6c\x0d\x7e\xfc\xfe\xcf\xc1\xd9\x02\xea\x8b\x7d\x3c\x84\x07\x84\x00\x1c\xd4\xa3\x94\x21\xa1\xf9\x0a\xe3\x78\x40\xf3\xc8\xfb\xe4\x43\x78\x19\x52\xe0\x15\xf2\x5f\xd8\x77\xe1\x2d\x71\xdc\x88\x45\x1b\x10\xc2\xf5\x72\xee\xb4\x84\x0d\x28\x61\xc1\xf5\x23\x8e\xa3\x2e\x2a\x47\xb8\xe8\x21\x03\x42\x28\x73\x82\xde\xe9\x33\xa9\x4d\x14\x9f\xd9\xa4\x36\x6d\x60\x7f\x33\x9a\xb7\x84\xf9\x36\x18\xd3\xcd\x1e\x1b\x5d\xf0\xd9\x67\x6c\xfb\x87\xac\xff\x34\x3d\xb7\xc4\xef\xaf\x0b\x61\x2c\x21\x00\xea\x5f\x98\x48\x64\x02\x16\x74\x61\x24\x3c\x5c\x47\xce\x90\x79\xe4\x0c\xfb\x6e\x68\x86\x29\x56\x1d\x02\xbc\x9e\x62\x16\xb9\x02\x99\x02\x48\x5a\x35\x07\x80\xd8\x86\x10\xca\xe0\x64\x2a\x55\x0a\x85\xf8\xad\x00\xb4\x30\x08\x3c\x26\xb5\x09\xd8\x2e\x72\x1d\x73\xdd\x85\x7f\xc1\xcb\x24\xc0\x9e\x0f\xde\x00\x8b\x99\xdf\x93\xd8\x4f\xfe\x83\xa9\x61\x8a\x8f\x9d\x26\xa2\xa4\xae\x40\x08\x7f\xcd\x8d\xa0\x24\x94\x86\xec\x28\x2d\x90\x6a\xb5\x18\x52\xb5\xb1\x51\x28\x02\x01\x2d\x04\xa7\x6f\xc9\x40\x4d\x29\xc9\x54\xa6\x84\xba\x71\x98\x3c\xa1\x86\x1d\x26\x50\x69\xb4\x0a\x9e\xe7\x0a\x6c\x76\x85\xd7\xcb\x5a\x06\xef\xdb\x50\x55\xb5\xe1\xbe\x41\xf2\xc5\xe0\xfd\xe2\x6f\xf7\x0f\x82\x8e\xe4\xcd\x9d\x3e\x7d\x2e\xb3\xab\x6f\xda\xb4\x3e\x7c\x3e\x7a\xc6\x81\x17\x56\x0e\x3f\xb3\x7f\x7a\xf4\x0b\x2f\x44\x4f\xbb\xfa\x99\xe1\x95\x2f\x5e\x3b\x23\xfa\x54\xd0\xb0\xe1\x90\x8a\xa9\x51\xff\x62\xf3\x96\xa3\xea\xe0\xf3\xaa\xeb\x64\x0c\xe7\x0f\x69\x2f\x95\xb4\x40\x6a\x52\x5c\x34\xc2\xb4\x00\x8c\x61\xe8\x72\xa7\x43\x57\x6b\xb5\x2a\x3a\x74\xaf\x97\xda\x05\x71\x8c\xa0\x30\x29\xb2\x59\xfa\x87\x46\xab\x30\xb1\xf6\xa6\x16\xd0\x97\xad\xbc\x7d\x80\x7c\xb1\xe0\xfe\xf5\x15\x90\x34\x7b\x9a\x28\xaa\x35\x47\xaf\x63\xbc\xc1\xb7\xb7\xbe\x7c\x55\x5b\x0c\xb9\x17\xba\xa2\x9a\xf7\xbd\xb6\x5d\xfc\xe4\xba\xa3\x1a\x76\x85\x34\x0f\x33\x10\xc2\x3b\xb9\x53\x28\x07\x65\x06\xec\x89\x88\x91\xb7\x9a\xbc\x35\x44\x39\x03\xdd\x1c\x48\x53\xa0\xcf\x54\x24\x39\xe8\xe6\x28\x63\x3d\x72\xc4\x91\xa6\xb4\x2b\x4c\xa2\x32\x3e\x01\x52\x43\xa4\xd1\xa4\x36\x31\x77\x5b\xcb\x5c\xba\xf5\x8b\x16\x6c\x48\xca\x0e\x38\x88\x13\x62\x4a\x86\x9a\x9c\x2d\x07\x4e\xad\x5b\xf7\xfa\xb5\x2d\xce\xc6\xa1\x62\x50\x90\x4c\x48\x48\x68\xd9\xf9\xec\x26\xcf\xab\xaf\xbe\xf6\x8a\x67\xf3\xb3\x3b\x9b\x13\xc8\x3f\x4e\x3b\x37\x1e\x3d\x31\xcb\xbd\xef\xf4\xdd\x3d\x3d\x77\x9f\xde\xe7\x9e\xf5\xe0\x91\x8d\xce\xd3\x88\x41\x8b\xc6\xce\xe1\x43\xb8\x85\xe2\x35\xdf\x21\x9d\xc2\x09\x06\xe0\xd9\x2c\x07\x83\xf8\x58\x81\x11\x17\x50\x32\xfd\x08\x4f\xfc\xa8\x5b\x92\xda\x49\x88\xe7\xd9\x1e\x01\x33\x2c\xeb\x6e\xa4\x78\x1b\xb3\x18\x00\xc8\x83\x90\xeb\xed\x0a\x37\x64\x81\x54\x89\x89\xb1\xb3\x91\xde\x81\x2e\xb9\xde\xdd\x1d\x50\x20\x94\x9b\x6d\xb3\x88\x66\x5d\x86\xc5\x62\x8e\x10\xa8\xd3\x55\xe3\xce\x97\x54\xc4\x10\x24\xee\x78\x96\x04\xc8\x36\x9e\xad\xc0\x13\xf2\xa8\x61\x6c\x37\x25\x25\xea\xd2\x8a\xcd\xdd\x3b\xcc\x79\xfb\xe7\xf4\x1f\x1d\xf4\x78\x06\x7f\x31\x77\xe6\xde\xdc\x42\x52\xac\xca\x9e\xe2\x2d\x9b\xa1\x87\xe4\xe9\xc5\x9e\xc6\x6c\x35\xf6\x07\x23\x2b\xf2\xb8\xf7\x12\xa2\x6a\xea\x2b\x1b\x5a\xae\x7d\x6d\x8d\x7a\xcb\x7b\xc7\xa6\xd5\x57\xac\x09\xbe\x5e\xb9\x62\x6a\x8e\xdd\x1c\xad\x8d\x81\x4f\xcd\x36\xdf\x9c\x2d\x75\x32\x26\x33\x59\x86\xaf\xe5\x5e\x47\x7a\x54\x88\xb6\x05\xe2\x22\x80\x67\x33\x80\xe3\x95\x14\xef\x47\xae\xcc\x8d\x00\x16\xf1\x1c\xcb\x0f\x50\xd7\x81\x00\x08\x51\x21\x49\x75\xb8\x3c\x51\x06\xbb\x68\xaa\xf7\xa5\xb7\xe5\x87\x6f\xcb\x92\x6f\xeb\x0e\x24\xa5\x24\x03\xf2\x79\x5c\x4e\x4b\x7a\x72\x61\x4a\xa1\x5a\xa5\x88\x47\x7a\xd0\x47\x0a\xb2\x3d\x37\x21\xab\x91\x86\xba\x0a\xca\x18\xe5\x04\xc8\x7d\xc5\x04\x6c\x78\xb3\x87\xd9\xba\xf0\xc1\x0d\x95\xf3\x66\x6e\xdc\x55\xbe\xfa\x9e\xc1\xfa\x23\xe5\xe4\x5c\xd3\xae\x87\x7b\x07\xbb\xb4\x39\xb5\xd9\x59\x0d\x5e\xa3\x7d\x45\x9d\x77\x86\xdf\x98\xe2\x9b\xea\x19\xe4\x5e\xf7\xce\x3f\x3c\x7b\xe0\xf6\x3c\xe7\xd3\xbb\x16\xdc\xb9\xdc\x6f\xcb\x20\x05\xdc\x6d\x73\xef\x58\x15\x08\xfe\x62\x69\xaf\xb5\xba\x20\xcd\x50\xd8\x9a\x37\x3a\x6a\x48\x37\xf9\x5b\xb3\x3d\x9d\xa5\xe9\xef\x4a\x7b\xc2\x41\x7a\xf1\x93\xd8\x8f\xa2\x44\x5b\x2f\x92\x63\xd8\x50\xf5\xa8\x53\xdc\x91\x2e\x68\x4a\x4c\x0c\x9d\x3d\x0a\x93\x02\x4c\xa0\xf5\xb1\x47\x20\x9d\x54\x91\xb3\xa4\x06\xcc\x90\x14\xa7\xc0\xfe\x0b\x1f\x90\x26\x78\x1a\x9b\x47\x2f\x54\xd4\xca\xbe\xaa\xed\x7c\xba\x68\x09\xa3\x82\x40\x5e\x04\x00\xca\x54\x44\xb2\x18\x98\x06\x84\x81\x05\x4c\x91\x3a\x01\x23\x5a\x23\x17\x3a\x8f\xca\xcb\x0a\xf2\x73\xec\x16\x4e\xd0\x86\xdd\x34\x82\x68\xf5\xca\x95\x24\x13\x82\xd9\x54\x56\xf9\x6c\x36\xe5\x44\x9f\x8d\x5d\xe4\xe0\x57\xbe\x85\xff\xd1\xd7\x7a\xb8\x2d\x4b\xe5\x29\xaf\xb5\x34\x76\xc6\x58\x2a\x3d\x7f\xff\xb6\xee\xaa\x53\x5b\xb6\xbd\xb1\xaf\xce\x33\x73\x7d\x35\xd3\x39\xb8\xc7\x50\xd6\x5f\x59\x31\xa7\x2c\xd5\x5c\x31\xbb\xa8\xb2\xaf\xdc\x80\xff\xda\xb8\xb6\xc3\x99\x65\x7a\x9a\x57\x26\xc4\x14\xe5\xc4\xa7\x5b\x6c\xca\x76\xf2\xf9\xff\x53\xad\x7e\xe3\xfa\x8e\xf6\x83\xaf\xae\x50\x4d\x3b\xbc\xaa\x25\x21\x36\x73\x6f\xf0\x50\xf5\x86\x99\x1e\xcf\xcc\x0d\xd5\xaa\x82\x45\x33\x03\xd1\x9e\xee\x35\x32\x3e\xed\xee\xb1\xf3\xf8\x66\xdc\x8c\xfc\xa8\x25\xd0\x98\x0c\x48\x80\x06\xc4\xf1\x02\xcf\x09\xc3\x21\x44\x4e\x24\x44\x00\x62\x04\x34\x10\x6a\xc1\xe0\x6e\x0c\x65\xc5\xe6\xb1\x4d\x80\x8a\x7c\x39\xae\x0c\x87\x25\x5d\x95\x18\x17\x2b\x25\x3f\xd0\x85\x33\x0e\x1e\xef\x31\x85\xc3\xf9\x57\x2c\xbf\x71\xbb\xd5\xcc\xa1\xad\xeb\x52\x8a\x67\x57\x14\xcf\x2e\x37\x81\xba\xfb\xfa\xa7\xe6\xac\x7b\xe3\x60\xcb\xd2\x25\xbd\x43\xf5\x57\xbd\xb4\x7e\xfe\xe3\x57\xb5\x90\xb3\xe6\xb2\x8e\xbc\xca\xce\x02\xb5\xd6\x33\xa3\xfc\x6f\xf0\x76\xe9\x14\x7d\xae\x55\xab\xb6\xe4\xe8\xbb\xb7\x77\x38\xb2\xa6\x6d\x68\x9e\xb5\x2d\xcd\xb2\xa1\xbe\x79\x6d\x6b\x86\x6b\xfa\xa6\xe6\x94\x2c\x63\x82\xc6\xec\xd2\x26\x3b\xd3\x14\xcf\xd3\xf1\xb6\x91\xcd\x38\x8b\x1b\x41\xd9\xc8\x16\x30\x03\xc5\x57\x4b\xd6\x69\x59\xda\x12\x05\xba\x45\x39\xe1\xa0\x41\x99\x6c\x94\xed\xca\x62\xc5\x71\xa8\x41\x6a\xc8\xa3\x0d\x75\x81\xb2\x7b\xbd\x76\x6f\x36\x63\x0f\xb5\x8b\xf2\x99\x3c\x38\x8b\xf4\x55\xcc\xab\x36\x6b\x9c\x55\xae\xe7\x02\x8b\x9a\x32\x32\x2b\x5a\xed\x07\x73\xb3\x19\x88\x4e\x71\xa5\x9f\xec\xdb\xd7\xe9\x70\x75\xed\xe9\x3a\x13\xbc\x99\x1b\xb9\x8d\x4c\x2b\x1e\x18\x58\x5a\x9d\x53\x91\x9d\x1a\x69\x8d\xb7\xfa\xa7\x95\x3a\xe7\xcc\x6c\x4b\x5e\xe6\x9e\x61\x54\x18\xf5\x4a\xde\x98\x58\x31\x67\x63\x63\xdb\xf5\x07\xaf\x6b\xfb\xd7\x27\xd4\xaf\x41\xfa\x71\x13\xc5\x4d\x58\x32\x01\x83\x23\x91\xa6\x5d\xc8\x18\x1c\xd2\x1f\x72\xdc\x46\x3b\x8e\xc1\xe1\x6e\x44\x2c\x9b\x21\x6f\x89\xe4\x40\x32\x27\x89\x47\xb9\x76\x6a\xd2\x55\x09\x8b\x43\x8d\xd4\x4a\xb3\xda\xcc\x0b\x17\x61\x71\x84\xe0\x04\x60\x57\x6c\xe1\xbd\x8b\x3a\xae\xee\xf7\x92\x2f\xe6\xce\x69\x5c\x6a\x25\x67\xb1\xff\x97\x1d\x73\xb2\xe7\xdf\xba\xf2\xc2\x53\x78\xca\xbc\xde\x6c\xc7\xe8\x97\xd8\x2f\xea\x75\x23\x63\xe7\x70\x1d\xed\xbd\x92\x8e\x72\x50\xbb\x5c\x4b\x8f\x30\x62\x58\xcc\xf4\x87\xc4\x50\x6e\x38\x82\x94\x87\x44\x09\x7e\xf1\xf5\xfc\xf0\xf5\x2c\x09\xa8\x4c\x6d\x55\x67\x58\xe8\x11\x77\x49\x0f\x16\x08\x67\xd3\x78\xc0\x14\x96\x4f\xb8\xae\x62\xdd\xfd\x0b\x17\x3e\xb0\xbe\xb2\x62\x3d\xfd\xb7\x82\x9c\x23\x47\xb5\xae\x1a\x57\x56\x75\xb6\x96\x1c\x85\xc5\xda\xec\x1a\x97\xab\xda\xa5\x61\x22\xf7\xbc\x7d\x75\x6d\xed\xd5\x6f\xef\x81\xa3\x7b\xde\x3d\x50\x5f\x7f\xe0\xdd\x3d\xe4\xc3\x5b\x5b\x17\x94\xeb\xf5\xe5\x0b\x5a\x61\xed\xf6\x96\x85\x15\x29\x29\x15\x0b\x5b\xc4\x79\x79\x6c\xec\x1c\x2e\xa7\x3e\xbb\x86\x40\x54\x14\x00\x1b\x4d\xfd\xfe\x13\x10\x47\x44\xbb\xd3\x19\xf6\xa6\xe4\x31\x21\xc4\x91\xc9\x9f\x67\x31\x4d\xdd\x4f\xaa\xed\x56\xaa\x92\x29\xc3\x5e\xc5\x30\x2c\x80\xe9\x31\xa6\x40\xe7\xf0\x1a\x5c\xad\xc9\xae\xb4\xb2\xd2\xb2\xb4\x59\x07\x7a\xf3\xc8\xe7\xd8\x1f\xcc\xf6\x96\x18\x04\x83\xe2\x2d\x9d\x21\x81\x77\xcc\x3c\x34\x04\xdf\x8a\x74\xa5\x8d\x7d\x8d\xb7\xf2\x3c\xca\x42\x9b\xa5\x88\xba\x22\x06\x80\x71\x9a\xa2\x19\xcc\x02\xd3\x90\x0e\xa8\x2e\x79\xd2\x67\xe9\x80\x51\x38\x1b\x2b\x19\x01\xc3\x32\xc0\x0e\x53\x7d\x14\x2d\x0b\x83\x03\x64\xc8\x89\x87\x97\x5c\x15\x47\x93\xd1\x88\x30\xce\xc3\x4d\xdd\x4f\x59\xa7\xd8\xbc\x09\x9c\x90\xe4\x34\x99\xc0\x4e\x05\xa1\x60\x97\x00\xf9\xb5\x60\x60\xdd\xf9\xf9\x5e\xaf\x4f\x90\x4e\x59\x3b\x2b\x40\x33\xf9\x1d\xec\x30\xc4\x5a\xf3\x8a\x2d\x0a\x87\x8a\x4f\x70\x38\x9d\xaa\x29\x2b\x3a\x7c\x0a\xe8\x89\x4a\xb1\xba\xf4\x11\x91\x11\x51\x91\xbc\xca\xa5\x6a\x5c\x3d\xa3\x54\x75\x4b\x2a\x4e\x6b\x30\x55\x79\x4d\x98\xf9\x2d\x8e\xe4\x71\xe1\xd4\x7e\xc7\xe8\x01\x63\x79\xbe\x11\x00\xfe\x8b\xe7\x72\xdb\x17\x16\xc2\x33\xd7\x48\xb2\x6d\x84\xac\xc3\x1b\xb9\x53\xa8\x02\x65\x05\x32\x2a\x00\xb1\x05\x74\x7e\x6c\x56\x86\xa9\xa3\xa2\x8d\xe9\x0d\xab\x51\xa8\xa9\xb4\xd8\xe4\xb0\x60\xf1\xc8\x98\x90\x5e\xe4\x56\x87\x04\xf9\x84\xdd\xef\x29\xb0\x5f\x52\x4b\xa8\xc5\x7a\x6b\x51\x41\x7e\x6a\xfb\xf2\xea\xd4\xd4\x9a\xd5\x33\x8e\x1e\x7a\xeb\xb9\xec\xa9\xcb\x2b\x07\x4a\x17\xb6\x64\x65\x56\xb4\xd9\xaf\xca\xb5\xad\x2d\xdb\xf2\xf2\xae\xaa\x7b\x6f\x59\xb3\x75\xca\xfe\xb7\xb6\xe7\xb4\xd5\x56\x98\xf0\xb3\x91\x71\x91\x9c\xc6\xee\x35\xa6\x17\x65\xea\xfe\xb6\x73\xbb\xb7\xad\xc8\x1a\xad\x89\x33\xf9\xa6\x57\x39\x7b\x67\xb6\x26\x2f\x75\xb7\xdb\xaa\x0d\x09\xc6\x40\xdf\xf5\xc3\x07\x5f\xca\xb6\xed\xed\xef\xbe\x76\x6e\x01\x1f\x9b\x18\x23\x8d\x71\xde\xd8\x57\xf8\x7b\xec\x47\xc9\x68\x85\x34\x7d\xe2\x42\x44\xd2\x42\x4c\x0e\xfd\x81\x25\x6c\x11\x79\x76\xa9\x27\x6f\x98\x63\x19\x84\x68\x92\x82\x93\xaa\x90\x79\xa1\xec\x1f\x8c\x00\x4f\xba\x8a\x30\xce\x68\x94\x96\x6f\x77\x20\x4a\xa1\x50\xa8\xad\xd6\x04\x41\x48\xa6\x91\x24\x79\xa9\x86\x5c\xe2\x66\x9a\x58\x62\xc2\x0f\x1f\x8f\xd6\x9a\x75\x46\x87\xca\x55\x36\x94\xdf\xb0\xac\xde\x42\xc8\xd9\xbd\xb8\x81\x9d\x17\xfc\x8b\x3d\x5b\x2b\xc4\x46\xbd\x68\x57\x99\x9a\x37\xf7\x30\xf9\xa3\x37\xb3\xf3\xfe\x28\xe9\x3d\x7b\x48\x1f\xee\x95\x71\x7b\xa6\x07\xa2\xcc\x80\xd9\x08\x8a\x40\x1e\x8a\xa3\xc8\x87\xae\x3b\x1c\x0d\xca\x0b\x4b\xb6\xcb\x5c\xcc\x0a\x09\xb6\xa7\x32\x32\xac\x4a\x8b\xb8\x24\x61\x92\x0e\x33\xf9\x10\x12\xdc\xea\x50\xc2\x4e\xaf\x77\xd1\xcd\x83\x7d\x87\xdc\xe4\x6c\xfd\x9e\xe7\x56\xaf\x7d\x6c\x7d\x29\x39\xab\x71\xb7\xfb\xfd\x53\x3d\x49\x00\x86\x05\xed\xc5\x53\xdd\x5a\x18\x5b\xf3\xda\xb5\xad\x55\x65\xc1\x6f\xd9\x4f\xd6\xbc\xba\xbf\x79\xda\xb1\xf7\xb6\xd4\x6d\x99\xe3\x13\xcf\x56\xf8\xd6\x5d\x98\xd3\xb1\xa2\x52\xd6\xdf\xc9\x74\x8a\x71\x98\x23\x9e\x39\x46\x03\x03\x75\x08\x18\x58\x45\x37\x16\x0b\x08\xb9\x99\x26\x40\x14\x9e\x30\x07\x72\x70\x48\xe9\x32\x8d\xdb\xb1\x1a\xad\x81\xd5\xca\x9d\xba\xec\x05\x36\xbb\x45\xd2\x25\x98\x9e\x45\x27\xb7\xd7\x92\x1f\xf4\xde\x8e\xc2\xaa\x9e\x42\xdd\xe6\x43\x43\xc7\xe6\xbb\x19\x4f\xe7\xf2\xe2\x8d\x9a\xc2\x5c\x13\xcc\xee\x1a\x43\xdf\x56\xed\x7c\x15\xb7\x14\x2d\xb9\x79\x20\x5c\x0f\xbe\xf7\x96\x84\x84\x8c\xf2\xd9\x55\x95\xcb\x7b\xea\x92\x6e\x14\xd2\xb3\x0b\x0d\x2e\x77\x44\x16\xb0\x1f\x52\xf4\x42\x3a\x17\xad\x63\xe7\xf0\x5e\xec\x47\x3a\x94\x8d\x2a\x24\xfe\x6b\x70\x08\x58\xd1\x19\x0e\x93\x88\x5a\xf9\x65\x2f\x64\x51\xbe\x5b\x33\x32\xa9\x28\x00\xb3\x81\x9d\xac\x07\xb9\x4d\x70\x49\xe4\x0a\xef\x25\xb6\x8a\x1c\x7d\xc5\xd6\xa7\xd7\x6e\x7c\x61\x67\x55\xd5\x8e\x17\x36\x30\xa5\xa3\x9f\xe8\xbc\x5d\xe5\xfe\xa9\x05\x5a\xad\x7b\x6a\x49\x59\xa7\x37\x89\xed\x32\x36\x77\xcd\x2d\x50\x2f\x7a\x76\x7f\x5b\xc7\x91\xb7\xd6\xa9\x57\xbe\x7a\xb0\x3d\xf8\x7e\x38\x6c\x55\xb6\xbc\x23\x2f\xaf\x63\x79\x19\xe5\x7d\xc5\xd8\x39\x1c\x85\xfd\x28\x09\x35\x4f\xdc\x1a\xf2\x88\xa4\x70\x29\xa2\x67\xe2\x44\x21\x7d\xb9\x0b\xa2\x94\x7e\x4a\x21\x8a\x69\x3a\xa2\xcb\x88\x69\x8f\x09\x47\x91\x13\xda\x0c\x9f\xc9\x5d\x67\x4e\x4b\x2b\x29\x29\x4d\xef\xda\xdf\x97\x4f\xee\x60\xdf\x62\x3b\x48\x46\x49\xad\x39\x4a\x1b\xff\x9e\x42\x1d\xc3\x39\xfb\x8e\x2f\x87\xdf\x9f\x91\x71\x67\xa6\x61\x3f\x32\x86\x90\xaa\x12\x69\xa4\xc0\x19\x4e\xf1\xa7\xf4\x5c\xfc\xa1\x48\x0b\xad\x05\x11\xcd\x18\xad\x55\xd4\x3d\x21\x04\x27\xe3\xb1\x31\x76\xd3\x04\x08\x1d\x05\x1c\x31\x7a\x1b\x5d\x25\xd3\x3c\x3a\xc6\xef\x82\x58\x6d\x46\x5a\x62\xc1\xaa\xe7\xae\x5a\xf9\xd4\xf6\x6a\xec\x0f\x1e\xaa\xef\x2f\xd1\x07\x86\x76\x55\xee\x05\xd8\x92\xbd\x7c\xc7\x91\xa9\x1b\xff\x78\xeb\xac\xc2\x35\x4f\x6e\x61\x96\x23\x06\x35\x93\x74\xfc\x6b\x5c\x4b\xab\x19\x5d\x81\xcc\x68\x60\x90\xc3\xaa\x46\xa2\xc4\x68\x88\x02\x54\x3f\xbe\x92\x11\x5d\xc8\xee\x3c\xbb\x2d\x45\x2f\x2a\x4e\x9c\xac\x1e\x69\xe3\x58\x81\x1a\xa0\x13\x1b\x73\x29\x4c\xa2\x7d\x2a\xa9\xc9\x40\xd6\xdf\x33\xe8\x32\x95\x4c\x73\x3f\x6f\xce\x4f\x4f\x84\x04\x4b\x71\x56\x76\xfb\xb2\xf2\xa5\xb7\x0c\xe5\x65\x2f\xb8\x6f\x23\xf9\x12\xb4\xae\x32\x5b\x02\xc4\xa7\x38\xf4\xfa\xa4\x48\xf5\xb2\x9b\x5f\x1a\x9c\x76\xe3\xde\xe5\x19\xc7\xec\x33\xfb\x06\x72\xfc\x0b\xbb\xaa\xd5\x4c\x71\xc5\xe2\x66\xe7\x9c\x63\xaf\x0c\x0c\x3c\x77\xe3\x12\x15\x71\x31\xaf\xa8\xaa\x3a\xe7\x7b\xab\x56\x4d\xcb\xb5\xa4\x48\xfb\xb0\x86\xa4\xe3\x3f\x63\x3f\x32\x8b\xfb\x30\x5d\x9d\x08\x58\x0a\xef\x00\xea\xc6\x2c\xc3\x22\xe4\xa4\xf1\x19\x33\x32\x6b\x93\x92\x24\x9e\x96\xb1\x1e\x9b\xcd\x6e\x92\xac\x9f\x09\x26\xbd\x38\x1e\x36\x21\xbf\xd6\xa9\x84\x8c\x54\xe0\xcc\x9e\xdc\x25\x23\xdb\xc9\xd9\xf9\x77\xac\x28\x05\x9d\x36\xc3\x6f\xc6\xfe\xd1\xfb\xd5\x75\xbd\x2b\xcb\xb7\x7d\xb7\xb6\xfb\xdb\x5b\x96\xbc\x79\xe7\xb0\x92\xb8\xe0\x0f\x89\x5d\x87\x7f\xbb\x1f\xce\x13\x45\xf3\xda\x4e\xbf\x82\x9d\x26\xd2\x95\x3d\x76\x1e\x9f\xc0\x7e\x54\x28\x5a\x1d\x4e\xd1\xbe\x68\x40\xc0\x22\x16\xd0\xb0\xc0\x33\x2c\xeb\xa4\x6e\x1b\x3c\x4b\x54\xde\xf2\xb0\x48\x62\x21\x2a\xb4\x64\x68\xad\x6a\x7b\x84\xa8\x06\xf1\x8c\x10\x9a\x7b\x85\xe9\xb2\xcb\x20\x6c\xd6\x8a\x13\x02\xf7\x64\xb9\x19\x3e\x2e\x29\x31\xd1\xa8\x8b\x03\x4b\x9c\xd6\x98\xa8\x4c\x8a\xe7\x19\x8f\x13\x62\x34\xf6\x54\x85\xa9\x65\xdb\xec\xf6\x4d\x0e\xfb\xa6\xb6\x39\xdb\x5a\x4c\x89\xa9\x76\x35\xf6\x6f\x21\x63\x7b\x6b\x77\xcd\x2f\x35\x54\x2f\x6d\x85\x6e\x72\x6f\xeb\xd2\x6a\x43\xe9\xbc\x5d\x75\x13\x17\x4d\xcf\x9c\x9e\x9e\x39\x3d\xb7\xfe\x71\xe3\xd4\x23\x3b\x96\x67\x23\x06\x1d\x19\x3b\x8f\x7f\xc3\x9d\x42\x2e\x54\x88\xbc\x01\x77\x9e\xcb\xc9\x02\xd6\xb3\x14\xbc\xb7\x01\x01\x66\x30\x30\xc3\x13\x7c\x7c\xf2\x2a\xca\x43\x4d\xd9\x2e\xab\xda\x41\xb7\x19\xcf\x0b\xe3\x2b\xd9\x2a\xef\x39\x8f\x67\xa2\x27\x43\xe1\xf5\x51\xf7\x8f\xe4\xec\xc0\xbf\xd1\xfb\xd3\x6a\xb7\x3d\xbe\x74\xc9\xa3\x5b\x6b\x20\xca\x58\x3c\xcd\xdb\xd9\x37\xef\xde\x0d\x55\x85\xf3\xaf\xe9\x98\x7e\x55\xaf\xdb\x9f\x17\x7c\xbc\x7f\x4e\x96\xcb\x55\xc4\xd4\x46\xc4\xf3\x73\x97\x3e\xb2\xb9\xaa\x6e\xdb\xc3\x43\x80\x80\x8c\x79\xba\x2b\x2c\xdb\x57\xf5\xab\x7a\x76\xdf\xd7\xaf\x99\x75\xc3\xa0\xb7\x70\xd1\xf1\xb9\xe4\xdb\xc8\x18\x40\x3d\xd7\x9a\x40\xdf\x50\x15\xa8\xa5\x6b\xa9\x12\x21\x0e\xb8\x37\x91\x05\x3d\x1e\x88\x4d\xe2\x19\x40\x66\x45\x1c\x2b\x89\x96\x98\x10\xb2\x92\xa4\x37\xd1\x91\x65\x30\x21\xaf\xf4\x84\x2b\xf9\xe3\x57\x54\x57\x7c\x26\xf9\x8a\xcf\xa4\x5e\xe1\x99\xcb\xdd\x4e\x9d\xd0\x4f\x59\x0a\x54\xd6\x74\xca\x57\x09\xcd\x42\x4a\xf7\x10\xa8\x89\x2c\xfd\x6a\x97\x74\x7e\xad\x52\xeb\x63\xab\x7d\xb7\x0d\xa5\x57\x26\x6b\xb1\x31\xd6\xec\x4b\x20\xff\x45\xbe\x24\x1f\x2b\x8a\x4c\x31\x46\x56\xab\xaf\x30\xbb\x67\xb6\x56\xa5\x1c\x8b\x8d\xc3\x0f\x1f\xdd\x13\x13\xf3\x21\xc3\x9a\xd3\x83\x53\x49\x12\xfc\x93\xb9\xc3\x9c\xce\x32\x7f\x8e\x89\x4e\xad\x5c\xd8\x44\x16\x04\xca\x11\x62\xc6\xc6\xc6\xce\xe3\x31\x8a\x71\x44\xd7\x42\x0c\x00\x0f\x0d\x48\x40\x3c\x12\x78\x49\xdb\x90\xc5\x6d\x04\xf0\xbc\x94\x11\x92\x07\x4d\x56\xb5\x5d\xa5\xd0\x5a\xec\x09\x91\x42\xaa\x13\xcc\xe3\x4e\x88\xf1\x70\x9e\xd9\x63\x02\x71\x8b\xf2\x7c\x78\x13\x78\xc2\x56\x00\x1e\xdb\x68\xb0\xa6\xb7\xec\x98\x33\x7d\x57\x46\xc6\x8e\xe9\xbd\x3b\x5a\xd2\xad\xa9\x4b\x38\x44\x1e\x67\xad\x46\x92\x94\x66\x65\xf8\x84\x64\x95\xda\x92\x9c\x00\x96\x84\x64\x8b\x4a\x95\x9c\xc0\xb3\x2b\xe6\x7e\xbe\x7d\xee\x5d\x6b\x2b\xe7\xf6\xf6\xce\xad\x5c\x7b\xd7\xdc\xed\x9f\xcf\x7d\x2b\x38\x3c\x7c\x46\xfc\x5f\x56\x5b\x99\x55\xdc\x03\xef\xbe\x2b\xee\x00\x6b\x69\x3b\xc5\x86\x1f\xfb\x07\xed\xfb\x63\x42\x73\x9f\x60\x00\x53\xdc\x2d\xa3\x9c\x6d\x4d\x6b\x3d\x78\x40\x48\xe8\x46\x82\xa0\x91\xf2\x3b\x38\x60\x18\x83\x38\x51\xe6\xcb\xdd\xc1\x71\xda\x70\x1a\x88\x41\x14\xf4\xd1\x0a\x85\xd2\xa6\xd0\x99\x13\x22\xf8\x14\xf1\xe0\x99\xd0\x9a\xcf\x2e\xd7\x69\xcb\x58\x6f\x1e\x13\xae\x27\xc6\xb8\x74\xed\xf2\x27\x76\xd4\x65\x2f\x19\xd9\x09\x81\x7a\x4b\xc4\x8a\xe5\x2a\x7d\x0c\x39\x43\xde\xc3\x19\xf8\x1d\xb2\x87\x61\xbd\xcb\xee\x5b\xd1\x76\x6c\xfd\x94\xdf\xdb\x8b\x6b\x8d\xcb\xd6\x31\x4c\xf0\x08\x7e\x47\xf2\x1b\xf7\x8e\x9d\xc7\xbb\xb9\x37\x90\x13\x55\x04\xca\x44\x43\x8c\x65\xf0\x70\x04\x08\x1c\xcf\x09\xfc\x30\xc2\x88\x13\xf0\x78\x0b\x98\xd4\x30\x54\xac\x01\xc9\x40\x31\x56\x85\xd2\xa2\xca\xb0\x44\xf2\xc9\xe1\x36\x3f\x8a\x49\x6d\x7e\x24\x30\x5c\x19\xae\xc1\x87\x77\x09\x6d\xfb\x9e\x5f\xbd\xe5\xf5\xfd\x53\x1a\xf7\xbd\xbc\x7a\xeb\x2b\xfb\x9a\xa3\xc8\x17\x9c\xa9\xbc\xb7\x72\xc5\x56\x78\x9f\x38\x4c\x15\x73\x4a\x87\xb7\x46\xc0\x9b\x4b\x47\x36\x57\x4d\xff\xe5\x27\x07\x20\xf9\x9a\xcf\x6e\x99\x51\xb5\xf5\xc9\x55\x95\x03\x15\x69\x2f\xbc\x98\xfc\x57\xe3\xfc\xeb\x67\x3b\xd7\xee\xa5\x7a\x8b\x4d\xae\x1b\xd3\x4b\xd8\xa7\x08\x21\x01\x23\x0a\x10\xce\x75\x47\x00\xc7\x69\x68\xa7\x5e\xe8\x11\x77\x88\x56\x14\xf7\x76\x9b\x21\x05\xe9\x91\xde\x64\x56\x38\x4c\x91\x7c\xd2\xe4\x62\x22\xb3\x22\x81\x31\x9b\x3d\x34\x4d\x6a\x42\x59\x11\x1b\x1d\xdf\x75\x70\x9e\xc7\x33\xef\x60\xd7\x37\xfb\x1e\x7e\x3c\x49\x55\xee\x65\x66\x69\xad\xbe\x74\x85\xd2\x56\x64\xe5\x46\x08\xae\xdb\xfa\xf0\xe0\x82\x87\xb7\xd6\xe1\x77\x82\x6b\xc9\x1f\xc9\x17\x9f\x3d\x72\x92\x5d\x16\x4c\x27\x09\x99\x35\x3d\x79\x39\x5d\x35\x19\x88\x0a\x3b\xda\xa3\x5b\x83\xcc\x34\xba\xcc\xa0\x08\xcc\x44\x0c\x20\x84\xb0\x80\x70\x3f\x0f\x00\x9a\x46\x24\x08\xec\x2c\x0e\x58\x56\xcb\x36\xe9\xd2\x15\x0a\x85\xc3\xa4\x48\x88\xe4\x53\x9d\xe0\x56\xb8\x27\x93\x4a\x53\x45\xc7\x4b\x9f\x66\x3d\xf4\x8d\x30\xf3\xd0\x7c\xaf\x77\xfe\xa1\x99\xff\x7e\x88\x8c\x01\xc0\x2d\xf1\x76\x9f\x45\xa1\xb4\xfb\xed\x6c\x3d\xb3\x20\xf8\x43\xed\x96\x13\x83\x83\x0f\x6d\xa9\x65\x06\x83\xc7\xb9\x91\xa0\x8e\xa4\x38\xaa\xbb\x72\xb3\x3b\xab\x28\x5e\x94\x1d\x21\xda\xab\x46\x89\xec\x01\x4b\x08\xb3\x83\x03\xd9\x30\xd0\x50\xb3\x41\x4b\x73\xbd\x95\x6a\x45\x82\x20\xce\xb8\x49\x61\x60\x25\x7f\x81\x5d\x5e\x8f\x19\x24\xb0\xe4\xd1\x6d\xb5\xe4\xcc\xbc\x41\x72\x86\xfc\x09\x33\xf8\x1d\x72\x07\x78\x16\xde\xba\x84\x94\xc0\xa9\xa5\xdd\x4c\x70\x75\x68\xed\x2d\x25\xc7\x68\x3c\x2a\x5a\xea\x67\xc4\x62\x9a\x75\xa1\xa1\xde\xa6\x99\x32\x0b\xe4\x48\x08\xaf\xa7\x99\xe5\xa1\xff\x5f\x0a\x3a\xb8\x19\xf4\x64\x84\x7c\x4e\x7e\xc9\x8d\x5c\xc8\xc7\xef\xfe\xd0\x46\x8e\xc1\x02\xba\x26\x76\x21\x84\x67\xcb\xf5\x65\x39\x81\x2c\x04\x3c\x70\x18\x38\xda\x51\xb2\x1b\xb1\xac\x46\x42\xd9\x46\xa1\xd1\xa4\x2a\x52\xd2\x15\x0e\x53\x82\xc0\x53\x3d\x2f\xcc\xe3\xc9\xfc\xc5\xf9\xc1\xc5\x77\x6d\x7d\xeb\x9a\x86\x86\x6b\xde\xda\x4a\x2a\xd9\x47\x82\x8b\xef\xaa\xec\xaf\x30\x1a\x2b\xfa\x2b\xf1\x3b\xe4\xed\x8a\xb5\xf7\x0d\x2e\x38\xb1\xb1\x9a\x1b\x09\x62\x92\x6d\xab\xec\xca\xcb\x99\x5a\x6a\x16\xe9\x71\x91\xe3\xf8\x2a\x4a\x4f\x12\x72\x06\x1c\x0c\x20\x16\xb5\x23\x41\xa0\x12\x50\xd3\xc8\x73\x0c\xcb\xd2\x98\x8a\x16\x9a\x14\x1a\x85\x86\xe2\x03\xf0\x29\x52\x9f\x11\x33\xeb\x2e\x63\x7d\x4a\x93\xc2\x0d\x71\xac\x60\x52\x98\x71\xef\x7f\x07\x3f\xf8\x2a\xcb\x9b\x5d\x9d\x9d\xc2\x3b\x98\xdf\x2c\x0e\x3e\xcd\x29\x0d\x0e\x1d\x14\x3f\x44\x8e\xc3\x20\x39\xce\xd4\xeb\x66\x1c\xfe\xf0\x16\x66\xda\x85\x7c\x66\xe3\x9a\x17\x6f\xda\x94\xc7\x9e\x15\xf9\x3d\xf6\x6f\x84\xf0\x6b\xb4\x87\x46\x5e\x20\x5b\x19\xc1\x20\x0e\x1a\x04\xa0\xd8\x79\x1c\xea\x8f\xe0\x19\x91\x9a\x48\x51\xf3\xd4\x42\x93\x5a\x45\x33\x4f\x69\x45\xa5\xb8\xfa\xc4\x05\x67\x66\x4d\x4a\xd6\xa4\xa4\x0b\x51\x69\x62\x95\x26\x56\x51\xf0\x5d\xe1\x21\xf2\xfe\x77\x9f\x80\x6d\xaf\xeb\xbb\xcc\x6d\x60\xfb\xf0\xbf\xc9\x1f\x99\xc6\xe0\x13\xe2\x0f\xcb\x33\x0f\x04\x6f\x64\x86\xe8\xcf\x8c\xd1\x1f\x10\xa0\x96\xb1\xf3\xf8\x08\xed\x05\x5b\x11\x28\xe3\xa4\x7e\x69\x3c\x87\x39\x1e\x0f\x23\x60\x19\x96\x6a\x08\x88\x05\xa9\x7d\x1a\x6d\x6d\x97\x1a\xd6\x14\x0c\xa8\xc9\xa2\x72\x98\x6c\x16\x55\x16\xe5\x8f\xa8\xa3\x4d\x28\xbf\x0f\xe7\xc6\x15\xd8\xe8\x1e\x1e\x47\x7a\x08\x83\xfc\xe3\xad\x46\xff\x34\xcf\x86\x6d\x1d\x87\x7f\xbd\x61\xee\xcb\x37\xf6\x82\xde\x5a\x3d\xa7\xa8\x72\xb0\xd6\xb2\x6b\xdb\xa9\x53\xe5\xdd\x45\xc9\x86\xb2\xde\x8a\xfc\x19\xe5\x56\x72\xa6\xe3\xe0\x73\x0b\x37\xbc\x71\x4d\x13\xb6\xe6\xcf\x6a\xaf\xd4\x65\x9e\xd8\x36\x78\xdb\xd2\xa2\xbc\xa1\xdb\x86\x33\xeb\xbd\x46\x63\x61\x63\xd6\x9a\x05\x7f\x4e\xf5\x36\x66\xdb\xeb\x0a\x8c\xfa\xdc\xea\xcc\xbe\x63\x8b\x8a\x3c\x0b\x6f\x92\x63\x69\x08\x97\x87\x7a\x10\x45\x62\x26\x04\x21\xa8\xa1\x10\x82\x5a\x19\x54\x8f\x97\xdb\x9e\xd0\xff\xb0\x56\xd0\x93\xbf\x91\x01\x72\x06\x92\xb8\x91\x1f\xda\xd8\xdb\x47\x7b\xb9\x91\xd1\x39\x28\xb4\x37\x5b\xc7\xf7\x26\xe0\x6e\x51\x3b\xd4\x8c\xd7\x23\x6a\xa9\x40\x56\x22\xa5\xc2\xaa\x50\xf0\xe2\x17\x8b\x1b\x85\xe5\x19\x9e\x17\x99\x21\xae\x21\xdc\x4a\xfe\x46\x7e\xc7\xb1\x9e\x79\xbf\x98\x57\xeb\xc8\x2b\x36\xc5\x30\xbc\xf8\x22\xfc\x4e\xf0\xec\x4b\xe4\xdf\x77\x37\x7c\xc6\xe5\x2d\x7e\x64\x37\x23\xce\x13\x33\x76\x0e\xff\x41\x92\xab\x01\x8b\x2e\x16\x58\x06\xc5\x84\x41\x0a\x35\x61\x90\x42\x03\x34\x69\xec\xd6\x44\x3a\x10\xa5\x0c\x52\x18\x4e\x4f\xf3\xf9\xc0\xc4\xa8\x7a\x21\x17\xf2\x83\x3f\xe8\x6b\xfa\x77\x76\xd5\x2d\x4d\x4f\x8c\xb5\x3a\x32\x95\xb9\xf5\x05\xe6\xe8\x14\x82\x21\x97\x7d\x9e\xfc\x93\x85\x0b\xf3\x8a\x97\x4c\xcd\xd5\x46\xfe\x19\x47\x46\x70\x2a\x8b\x3b\xad\x0c\xeb\x65\x19\x71\x3b\xfe\x72\x5c\x46\x00\x9e\x2a\xc9\x08\x51\x9e\x73\x33\xc5\xb3\x93\xbb\x54\x46\xb8\x59\x59\x46\x5c\x0b\xfa\x17\x54\x64\x74\xf4\x66\x49\x46\x5c\xc8\x0b\xbe\x0c\xbd\x72\x8d\x2f\xc2\xbd\x34\xc6\x97\x13\xc8\xd2\xd3\x95\x47\x71\xdf\x59\x51\xee\xc1\x00\x87\x19\x86\xd1\x34\xa2\x10\x5f\x93\x51\xb2\x47\x6d\x0d\xf3\x35\x6c\x02\x86\x31\x3d\x15\xb8\x97\xfc\x4d\x5f\xe8\x73\x2b\x97\x3c\xb2\xa9\x0a\x92\xb4\xb9\xf5\x79\xaa\x7c\x5f\xa1\x9e\x36\x0c\x74\x0a\xd1\x02\xf6\xad\x7e\x62\x0b\xbc\x4e\x8a\xa7\xf4\x15\x69\x59\x21\x4a\x60\xee\x44\x80\xda\x11\xc2\x87\xe9\xf8\xac\x81\x74\x9e\x63\x59\xf1\x0c\xa0\xea\xff\x4c\x84\xb1\x96\x6a\xff\xd1\x28\x9a\x0e\x51\x90\x4e\x2b\x71\x80\x74\x98\x30\x70\x00\x22\xf7\x83\xe2\xc2\x8b\xf2\xf0\xa8\x18\xe4\x46\xc4\xf1\xb5\x93\x3b\x38\x15\xad\xa7\x76\x05\x32\x11\x87\xb8\xa9\x11\x82\xf4\xe5\x98\x61\x10\xe2\x67\x22\x9e\xd7\x52\x30\xfb\x78\x14\x2f\x57\x0c\xd1\x33\x3c\xfc\xfd\x94\x89\xe1\x77\xec\x50\x91\xb1\xd1\xa9\xe3\xef\xb9\x90\x13\x7c\x0d\xe6\x48\xb9\x01\x6e\x84\xf0\xbe\xcb\xc9\x5b\xd9\xf3\xf9\x63\xf2\x56\x39\x49\xde\x9a\x27\xc8\x5b\x37\xa3\xea\x5e\xfb\xe4\xe6\x40\x60\xf3\x93\x6b\xc9\xc1\x0b\x8c\xaa\xbb\xb0\x35\x4f\xab\xcd\x6b\x2d\xe4\x46\x82\x4f\x97\xaf\xba\xad\xbf\xef\xf6\xd5\x01\xfc\xa7\xe0\x08\xe9\x36\xf9\x5b\xb2\xb3\x9a\x0a\xd3\xa4\xfa\xb8\x06\x84\xf0\x76\x8a\x17\x91\x88\x8c\x74\xfc\x48\x00\x9e\x43\xfc\x80\x78\x82\x51\x8d\x0b\x66\xc9\x0a\x81\x52\xa9\x34\x2a\x0d\xf4\x9c\x4d\x8b\xe0\xf5\x4e\x98\x24\xfd\x2f\x3a\x61\x07\xca\x7b\x0e\xf4\xe6\x79\x16\x1c\x1b\x20\x6f\x41\x12\x9b\x2a\xee\xd4\xd1\xbf\x66\x1b\x9c\xc9\x31\x31\xc9\x99\x46\xb6\xaf\x74\xf8\x97\x94\x2a\x71\xd2\xb9\x91\xd1\x3f\x91\x76\x73\x69\xbb\x4c\xd9\xf8\xb9\x14\x87\x92\x69\x06\x00\xe2\x00\xb3\x08\x8b\xca\x0a\xdd\xc8\x74\x47\x69\xa1\x29\x3e\x3e\x3e\x39\x5e\x9f\xae\x70\xa4\xd1\xf5\x36\x91\x22\xc5\x04\x6a\x7e\x39\xe1\x34\x02\x7d\xf8\x2c\x62\x7f\x71\xa5\x93\x48\xf2\x15\x9f\xc7\x65\xdc\x1b\x28\x87\xea\x7b\x72\x5d\x6c\x04\x08\x80\x40\x40\x34\x04\x24\x30\x20\xea\x7b\x14\x19\x30\x55\xdc\x01\xb4\xab\xa8\x81\xae\x95\x1c\x94\x93\x61\x51\x59\x15\x6a\x49\xdf\xe3\xc3\x0a\xb8\x27\xec\x7d\xd7\x4e\xe8\xa7\x22\xa7\x8a\x41\x09\x9f\x56\xde\xe9\x2e\x99\x5b\x6d\x25\x3b\x60\x9b\xb9\x62\x76\x51\x69\x6f\x59\x0a\x47\xce\x4c\xd9\xf7\xca\xfa\x35\xaf\x1d\x68\x69\xba\xf6\xad\x2d\xcb\x5f\xb8\xba\x81\x85\xd3\x95\x0b\xea\x6d\x8e\xee\x03\xf3\xed\x7f\xb5\xf7\x1d\xe8\xc9\xb2\x4d\x59\x54\xb5\xf0\xd9\x03\xed\x1d\xc7\x3f\xbe\x86\xbc\x77\xe0\xa3\x1b\xa7\x56\xef\x7c\x6e\x9d\xe4\x3f\x9c\x36\x76\x0e\x2f\xa5\xf1\x06\x27\xea\x95\x72\x7f\x8d\x08\x23\x10\x30\xf4\xd3\x88\xb0\xa8\x43\x68\x24\xfc\x17\x71\x4b\x19\x10\xed\xa1\x1a\xba\x83\x5e\x93\xf1\xfa\xe9\x19\xa3\x0d\x43\xc5\x18\x90\xa8\x86\x67\xd8\xcd\xa2\xae\x93\x4e\xcf\x9a\x04\xc6\x9c\xce\x28\x3c\xe2\x31\xe8\x56\xb8\x3d\x09\x89\xee\xfc\x44\x45\x38\xf7\x24\x6c\x85\xe3\xa5\x2f\x9c\xbc\xef\x64\xf7\xf7\xdf\x77\x9f\xbc\xef\xe4\x0b\x64\x2c\x2a\x29\x33\x2d\xd9\xaa\x8d\x8a\xd2\x5a\x93\xd3\x32\x93\xa2\xe0\x02\xf9\x9e\xfc\x0b\x22\x41\xe8\x0f\xde\xc5\x8d\x04\xf7\x6c\x07\x01\x22\xc9\xbf\xc8\xf7\xe9\x8d\x43\x81\x94\x94\xc0\x50\x23\x61\x9b\x16\x88\xbf\x2d\x68\x42\xcc\xd8\x07\x08\x61\x25\xdd\xc7\x3a\xe4\x0e\xe4\x72\x97\xed\x51\xa6\x69\xe4\xe5\x53\x1b\x21\xad\x5a\x95\x28\xee\x69\x87\x28\x2f\xb4\x4e\x71\x4f\x89\x06\x93\x8c\x89\x02\x2a\x8d\xdb\xad\x30\xa7\xf3\xcc\xf7\x9f\x92\xaf\xc9\xef\xa0\x78\xf5\x86\x86\x6b\xde\xd8\x04\x7f\x0c\xba\xb6\x6e\x7b\xfe\xf9\x9d\x9b\x98\xd2\xe0\x6b\xcc\x0d\x45\x4f\xed\x5c\x78\xdb\x12\xdf\x0f\x6d\xec\x3f\x57\x2e\x85\xa7\x57\xca\x3d\x7e\xce\xe1\x85\xbc\x1a\x65\xa2\x00\x2a\x0c\x78\x1c\xa1\x8c\x38\x66\x25\x07\x48\xea\xe0\x1b\xee\x3b\x67\x80\xa6\x2c\x27\x20\x9f\xc7\x19\xc8\x0a\x18\x52\x63\xa2\x50\x26\x64\x0a\xfc\x84\x84\x61\x71\x69\x94\xb2\xde\x44\xaf\xd7\x17\x4a\x17\x8f\x63\x05\xaf\x57\x3b\x29\x97\x47\x5c\x56\xcc\x9d\x4b\xef\x5f\x5d\x52\xb5\xe3\x85\x0d\x1b\x5f\xd8\x59\x45\x13\x83\xbd\x2d\x6e\xdd\xa7\xce\xd9\xd7\x0d\x96\xce\x6f\xf1\xc6\x55\xdf\xe1\x2a\xeb\xf4\xea\x74\xde\xae\xf2\xb2\x4e\x6f\x52\x92\xb7\x8b\x25\xcd\x57\x3d\xbd\x44\x3d\xfc\xe2\xfe\x96\x69\x47\x7e\xb5\x5e\xcd\xd8\x5e\x83\xf4\x37\xd7\xea\xa2\x35\x86\x4c\x43\xc7\xea\x76\xaf\x2a\x36\xa7\x69\x49\x43\x55\xed\xa7\xae\xe6\xf9\x85\xea\xd2\x25\x6d\xd9\xd9\x6d\x4b\x4a\xd5\x85\xf3\x9b\x5d\x54\x86\xec\x47\x08\xd7\x63\xff\x4f\xf6\x76\xd5\x8d\xf7\x76\xd5\x5e\xbe\xb7\x2b\x1f\xee\x2f\xaa\x1a\xef\xed\xaa\x96\x93\x27\xed\x6e\x09\x2b\xc9\xbc\x1f\x5e\x59\x78\xff\xba\xf2\xb9\x73\xca\x66\x95\x1a\x8a\x87\xef\x5c\xf8\xcd\x37\xd3\x9a\x1b\x3a\xbf\x79\x76\x7a\x4b\x77\xf7\x09\xec\xb7\x36\xae\x6c\x6a\x5c\x97\x16\x93\x1b\x68\x71\x36\xaf\x6e\xb6\xc3\x6b\x7f\xf3\x17\x16\x04\x5e\x60\x0a\xf2\x4b\xbd\x08\xd0\x21\x84\x70\x3e\xf6\x4f\xce\xed\xd2\x35\xca\x4a\xa5\x22\x81\xe5\xc3\xb9\x5d\xf9\xc1\x95\xe4\x1c\x7b\x27\xdb\x35\x7a\x1f\xf6\x8b\xf3\x6a\x22\xcf\xe3\x4f\xb0\x1f\x25\x20\xad\xb8\xc6\x30\x30\xc0\xb4\x87\x2a\x93\x74\x8d\x7c\x04\xc7\xca\x09\x45\x5a\x56\x5c\x61\x1a\xb5\x8a\x82\x31\x28\x14\x0a\x8d\x68\x41\xf9\x64\x05\x95\x1e\x18\x26\x16\x78\x5e\xd4\x53\xaf\x2f\x2a\x35\x08\x0c\xcf\x26\x1e\x57\x11\x12\x5c\x45\xbe\x57\x33\xe6\x08\xb3\x0d\x4a\xcf\x7e\x12\xdb\xbd\xfb\x9e\x59\xb0\x6c\xf4\xee\xe0\x47\x50\x4d\x9e\x67\x2c\x70\xfe\xd8\xbf\x67\x33\x2b\x11\xa0\x74\x84\xf0\x5d\xd8\xff\x63\x3a\xaa\xee\x7f\xa9\xa3\xc6\x7a\xbe\x29\xd8\x42\xce\x7f\xfa\x01\xe8\x36\x67\x7c\xe3\xdc\x0c\x49\x7f\xfa\x2b\x39\x03\x37\x92\x21\xf1\x87\x29\x87\x0b\xd2\x6f\x70\x23\x89\x0e\x3e\x87\x00\xad\x1c\x3b\x8f\xe7\xe0\x66\x54\x28\xca\x48\xf6\x67\xe9\xa8\xc6\xc9\x3a\xaa\x4d\xd4\x51\x33\x25\x1d\x95\xff\x31\x15\xd5\x7b\xa9\x86\xda\x38\x7f\xe6\xe0\x92\xe6\x7d\xcf\x2d\xef\x39\x79\xcd\x0c\x50\x1b\xfd\x33\xbc\xbe\x0e\x5f\xf2\xca\x45\xef\xbc\xb3\xa0\x5f\x93\xd7\xec\x75\x35\x17\xa5\x91\x73\x8d\x3b\x1e\x9e\xbb\xec\xc9\x1d\x75\x6c\x62\xfd\x06\x4b\xda\xb6\x59\xcd\x1b\xa6\x65\x39\x3a\xb6\x77\xeb\x73\x2c\x1a\xad\x2d\x57\x3f\xa5\xfc\x99\x2a\x8f\xd6\x65\xd6\x24\x18\xb3\x52\x9a\x37\x4d\x77\x65\xb4\xae\x95\xf3\xc4\x4a\x68\x2d\xef\x64\xbd\x54\xf7\x23\x7a\xa9\x0d\x34\xe4\x2c\x59\x48\xce\x82\x06\xfb\x2f\xbc\xc1\x3c\x1a\x6c\xc1\xfe\x60\x0b\x3d\x4f\xf6\x20\x84\xdf\xa1\x75\xa3\xf6\x80\x25\x0a\xa4\xa2\x4b\xa9\x0b\x9b\x78\xd8\xea\x1a\x39\xe9\x6b\x13\xc3\x3a\x9a\xd4\x3d\x51\xe1\x96\xea\x47\xcb\xee\x14\xbf\xf6\x3a\x30\xc3\x1c\xb2\x0a\x1e\x22\xd7\xc1\x51\xb2\x18\xfb\xc9\x5c\xb8\x25\xf8\xaf\xe0\x6f\xe8\x3b\xc4\x35\x51\x8c\xfd\x17\xe9\xbe\xba\xcb\xe8\xbe\xa6\x89\xba\xaf\x64\x27\x53\x68\x3b\xbb\x02\x17\x93\x2f\xc9\x7f\x39\x07\xee\x5c\x9f\xc7\x98\x3c\x15\xe6\x18\x10\x87\xc2\x76\x9d\xbb\xe9\x8b\x9b\x5b\x3e\xcf\x9c\x73\x74\x31\xfc\x5a\x7c\xd7\x0a\x84\xf0\xf4\x10\xae\x78\x84\x8c\x2b\x4e\xf9\xc3\x32\x8c\xcc\xa0\x44\x85\x82\xe3\x69\xdf\x3e\x85\x59\xc1\x9a\x59\xd1\x14\x67\xfa\x8f\xc1\xac\xef\x6e\x7f\xee\xe6\xef\x60\x26\x34\x32\x7f\xbf\xf0\x06\xd3\x13\xbc\x9b\x69\x0a\x3e\x2e\xe1\x95\x6f\x90\xc7\x70\x49\xbf\x5a\x5d\xa3\x3c\x82\x71\x2d\x76\x52\xbf\x5a\x91\xee\x25\xb4\x5f\xed\x11\xd0\xc2\x5d\x64\x16\xf6\x93\x06\x78\x12\x4d\x98\xcb\x49\x39\x7f\x13\xbf\x8f\x4e\x64\x38\xe7\xaf\x84\x7c\x49\x16\x93\x2f\xd9\xd7\x42\x3b\x5f\xfc\x8e\xd9\x08\xe1\x47\x43\xdf\x11\xee\xcd\x38\x2e\x38\x26\x2c\x06\xd1\xba\x7f\x94\xf4\x92\x2f\xc9\x00\x9e\xce\xf6\x8c\xde\xcd\xf6\x7c\x4c\x65\xa5\x8f\xf4\xe1\xa3\x3c\x92\xf1\x08\xd2\x02\xa9\xd9\xae\x74\x93\x46\x19\xc1\x45\x80\x94\xb9\x46\x8d\x5b\x3d\x34\xa5\x6a\x18\x5e\x43\xb3\x66\x7c\x0a\xea\x39\x98\xe0\x65\x17\x8f\x52\xbb\xa2\x8c\xa5\x5b\x44\xab\x88\x63\xd5\x3e\xdf\xe2\x9b\xe6\x41\xd2\xfc\x9b\x17\x17\x16\x2e\xfe\xe5\x3c\x72\x66\xde\x4d\x8b\x7d\xec\x8c\x44\x7b\xb1\xc3\x51\x6c\x4f\x0c\x3e\xa6\xb0\xfa\x1d\x8e\x22\x6b\x22\x63\x9f\xf7\xe8\xb5\xfd\x6a\x78\x99\x04\x54\xfd\xd7\x3e\x3a\x5f\x3d\xff\xd1\x6b\xfb\x55\x64\x08\x8e\xab\xfb\x0f\x9c\x9c\xaf\xce\xed\x6e\x29\x55\x05\x8f\x29\xcb\x5a\x7a\xf2\x72\x67\xb6\x94\xaa\x98\xf9\xaa\xd2\xe6\xee\x5c\xca\x43\xf2\x12\x7e\x9e\xce\xcb\x44\xfb\x42\xf7\x33\xec\x8b\x0d\xa0\x85\x75\xa0\xbd\x45\x54\x8c\xff\x1f\xf6\x8b\xec\x18\xbd\x2b\xf8\x29\x54\x50\xbe\x6e\xa6\x7d\x20\xe4\xfa\x1e\x35\xd0\xc5\x33\xc1\xbe\x90\xf6\x86\x64\x5e\x28\xad\x6a\x73\x82\xb8\xa0\x4c\xe1\xf6\x14\x13\x4b\x8d\x70\x3f\xf9\xb2\x60\xa9\x7b\xcd\xf3\xbb\x6a\x41\x93\x5c\x38\xa3\xb8\x70\x41\x01\x68\x61\x76\x54\x74\xde\xfc\x9b\x97\xc0\x34\xf2\xa0\x77\x4a\x96\x32\x3a\x1a\x46\xc5\xf7\x76\x20\x84\xb7\xd1\xf1\x84\xed\x09\xdd\xcf\xb6\x27\xfa\xf7\x00\xbf\x07\xe2\x2e\xfc\x5e\x1e\xce\xdd\x6c\x4f\x08\x6f\xbf\x95\xbc\x84\xcf\x61\xff\x25\xf6\x84\xee\x7f\x61\x4f\x50\xac\x9e\xd9\xd2\x3b\x86\x55\x9f\x8e\x76\x8f\xbf\x46\xe2\x9c\x5c\xcb\x5b\x88\x10\xbe\x91\x9e\x47\x92\x3d\x81\x78\x19\x1f\x48\x06\x1a\xd6\x35\x86\xb4\x0c\x69\x89\x52\x7b\x42\xe1\x48\xa3\xe3\x99\xa8\x2d\x7b\x26\xea\xcb\x4c\xd7\x35\x8b\xee\x5a\x5e\x54\xb4\xfc\xae\x45\x64\x16\xf9\x9e\x49\xbb\xc6\x59\x62\x4d\x48\xb0\x96\x38\x99\x93\xf9\xdd\x1b\xea\x1b\x77\xf6\x15\xb2\xfd\x1f\x04\x6f\x19\x43\x3a\x5b\x8e\x4e\xed\xb4\x68\x11\x8b\x06\x10\xc2\x9b\xb1\xff\x0a\xb6\x84\xee\xff\x6e\x4b\x2c\xc9\x98\x7b\x5d\x6f\x76\x76\xef\x75\x73\xc9\xbb\x10\xc9\x26\x50\x5b\xe2\x1f\x19\xd9\x9e\x64\x41\x48\xf6\x64\x33\xcf\x78\x7a\x36\x53\x9a\x44\x39\x85\xfd\xc1\x17\xc9\x27\x22\x59\x7a\x9f\x2b\x55\xe4\x91\xa8\x9f\x6c\xa1\x74\x5d\x62\x4b\xe8\x7e\xc4\x96\x30\x4d\xb2\x25\x4c\x61\x6a\x6e\x03\xc5\xd2\x07\xd7\x94\x95\xad\x79\x70\x69\xf0\x03\xd0\x80\x22\xaf\x26\x4b\xa5\xca\xaa\xc9\x63\xde\xf5\xf4\xee\x69\x6b\xde\xd5\xeb\xc5\xfe\xe0\x13\xe4\xef\x1a\x6b\x6e\x72\x8a\xdb\xa6\x09\xf5\xb6\x9e\x86\x5b\x90\x0b\xd5\x07\x6a\x10\x20\x01\x81\x30\x8c\x30\xcf\xf1\x98\x1b\x46\x02\xe2\xb1\xc0\xf7\x47\x84\x62\xc5\xc6\x70\xc9\xa0\x81\x6d\x02\x94\xe1\xb0\xdb\x26\x34\xea\x73\x81\x2b\x52\xd4\x0e\x27\x1e\x85\x97\x56\x3d\xfa\x68\x52\x2b\xd3\x98\xdd\x5a\x64\x22\x17\xc4\x23\x70\xf7\xa9\x1d\x81\xc0\x8e\xd7\x76\x2f\x7a\x64\x6b\x2d\x70\x86\xc2\xb6\xfc\xf2\x4e\x5f\x0a\x47\x5e\x84\x0a\x2e\xa5\x70\x06\xbb\x54\xe7\x2c\xb3\x4e\x3b\xb4\xb0\x78\x86\xd4\xac\xef\xf0\xf4\xe2\xa5\xc7\xfb\x32\xea\x0a\x8c\x19\xb5\xb3\x0a\x1e\x76\x77\x57\xda\xe9\x9a\xf3\x8e\x9d\xc3\x77\xe2\x16\x94\x8c\xf2\xd0\x35\x21\x5b\x02\x21\x96\x47\x14\x27\x1d\x7a\xc4\x73\xcc\x28\xda\x0b\x52\xa6\xbf\x81\x09\xa5\xa7\x9a\x2f\x77\x1b\xc6\x5a\xe9\x5e\x24\x7b\xfe\xed\xe1\xbb\x38\x4e\xd7\x88\xe4\x02\xf1\x4b\xef\xec\x16\xed\x0e\xab\x42\xa1\xca\xb0\x48\x3e\x40\xb7\x94\x4b\x13\xe6\x85\x5d\xf2\xfb\x5e\x8a\xaf\xd7\xd9\xc1\xba\xe7\x5c\x33\xab\xef\x50\x5f\x4e\x4e\xef\xc1\xbe\xde\x6b\x7b\xf3\xa0\x83\x7c\x0c\x26\xe8\x89\xd6\xbb\xcc\xe9\x2e\x7d\x54\xb4\x3e\x3b\x5d\xfc\x97\x59\x33\xf8\xd0\xd6\xfa\xe6\xab\x9e\x5e\xbc\x76\xf1\xd3\x57\x35\xd5\x6c\xb8\xab\x97\x4c\xc3\xfe\xe0\xbd\x85\x43\x6d\x39\x39\x6d\x43\x85\x6b\x7d\x43\x6d\xb9\xb9\x6d\x43\x3e\xca\x9b\x66\x84\x70\x3b\xdd\xfb\x29\xa2\x7e\x28\x80\x04\xd4\x2d\x9d\x61\x74\x52\xf9\x89\x07\x19\x42\x49\x5a\x8d\x0a\xc5\xa3\x38\x85\x64\x83\x00\x75\x63\x9a\x94\xb2\x15\xc2\x8a\xb4\x9b\x14\xa6\xf4\x38\x06\xb7\x93\xb3\xa3\x7f\x24\xa7\xff\x31\x77\x61\xf9\xda\xfb\x17\x3f\xa6\xce\x0c\x64\x41\xc4\x18\xca\xae\xca\xa2\xaa\x06\x6c\x22\x7b\xe0\x81\xac\xe3\x03\x2d\xbb\xfa\xbc\xe4\xfa\xa4\x7c\x47\x12\xa4\xe8\x33\xdc\xf4\xec\x1a\x7b\x97\x34\xe2\x66\x9e\x06\x10\x03\x53\x18\xc0\x60\x07\x0e\x6b\x80\xe5\xd4\xc0\xb0\xb8\x21\x12\x04\x9e\x9a\xb5\xfd\x21\x71\x61\x6c\x44\x11\x11\x5c\xf7\xa4\x88\x8b\x89\x69\xca\xcb\x15\xcd\xbc\x0c\xab\xd3\x1c\x52\x23\xe5\x88\x8b\xda\x7d\x31\x3e\x83\x79\x02\x72\x81\x04\xa8\xe2\x66\x76\x7e\x29\xb7\x8c\x03\x77\xdf\x35\x9d\x36\x09\xc1\xc0\x5f\x0e\xe1\xfe\x71\x4f\x3c\x01\x9a\x2f\xf1\x3d\x64\x4c\x6a\x22\xf7\x2c\x81\xbe\xc3\xf3\x0a\x84\xa8\x0f\x79\xbe\xab\x23\x73\xbc\xa3\x1c\xbe\xe7\xf1\x7b\xee\x41\x80\x16\x8f\x9d\xc3\xf9\xe1\x7d\x85\x39\x9e\xc3\xfc\xb0\x38\x10\x01\xd0\x30\xe2\x45\x01\x24\xf4\x87\x36\x93\xb1\x31\xbc\xc3\x0c\xcc\x15\xf7\xd5\x4f\x34\xc0\x14\x4c\x6a\x93\x81\x65\xe6\xfe\x54\x07\xcc\xa2\xf6\x82\x14\x0c\xe5\xe4\x35\x3e\xc5\xd3\x72\xe5\x3e\x98\x99\x75\x73\x0a\x46\xf2\x3b\x2b\x6c\x92\x9d\xae\x46\x08\xff\x91\xe6\x2c\xd9\xd0\xa2\x50\x6b\x42\x8a\x04\xce\x8f\x07\x6a\x74\x72\xb9\xa9\x2c\x4b\x93\x45\x49\x7b\xc9\x2d\x28\x7c\x87\xb4\x85\xe4\x9b\xbb\x03\x89\x08\x99\xd3\x4d\x69\x28\x19\x25\x9b\xac\x0a\x87\x42\x0a\xec\xc8\xd6\x96\x49\x61\x0e\xeb\x82\x5e\x8f\x02\x64\x4d\x83\xf5\xf7\x1f\x5f\x58\x58\xb8\xe4\xe6\x01\xf2\xef\xe5\x99\xb3\xae\x1f\xb2\x33\xda\xaa\x1a\x36\x26\xde\x94\x6f\xb1\xe4\x9b\xe2\xb1\x9f\xdc\x0e\xbe\xbe\x3d\xad\x6d\x57\xcd\xf5\xca\x9a\xe2\x37\xcf\xbe\x0a\xbf\x0e\xfa\x92\xf3\x6c\x3a\x20\x9f\x82\xde\xe1\x91\xe3\x3a\xb7\x52\x2c\xd5\x2b\xc6\x75\x74\x3f\x1a\xd7\x99\xec\x03\xbb\x38\xae\xb3\x72\x13\x68\x63\x7a\x8f\x0c\x7a\xbd\x83\x47\x7a\xc9\x47\x9b\xa8\x32\x78\x43\x8c\x29\x3b\x35\x36\x36\x35\xdb\xc4\xdc\x08\xb7\x93\xdb\xbd\x7d\x7b\xdb\x44\x3a\xe1\x59\x52\x8b\xfd\xc1\x57\xc9\xa7\x49\x19\x9e\xd4\x94\x7c\x9b\x56\xda\x2b\xdf\xcb\x3d\x12\x8d\xa8\x28\xe0\x65\x80\x05\x35\xad\xfa\x8d\x00\x9e\x03\x04\x3c\x0a\x87\xf8\x8c\x22\xa5\x4c\xf7\x78\xac\x47\x41\xf5\x13\x4a\x69\x38\x14\x39\xa9\x5b\x9b\x0c\x2c\xc4\x3c\x44\xbe\xbb\xb4\x77\xe2\x91\x23\xa0\x81\x28\x7c\x92\x7c\x7b\x69\x07\x45\x7c\xf2\xf1\x9b\x6e\xa2\x3a\xd8\x71\xaa\xc7\x4a\x75\x31\x2c\xc3\xae\xa2\x18\xb3\x54\x3f\x62\x66\xca\x94\x5c\xa2\xb7\x8c\x2b\xc9\x70\x1d\x1c\x05\x2d\x79\x80\x9c\x25\xf7\x4b\x2a\xc5\x85\x37\xc8\x71\x18\x0c\xe9\xb8\x75\x63\xe7\xf0\xbd\xdc\x08\xb2\x88\xe7\x77\x24\xb5\x51\x04\x1e\xb3\x0c\xa3\x69\x14\x27\x44\xaa\x0f\x97\x02\x9a\x16\x64\x31\x2b\xcd\x6a\x8b\x95\x9e\xdf\x8a\xc9\xd1\x67\x5a\xdb\x41\x97\x50\xf8\x17\x7c\x6f\xfe\xcc\x8d\xf5\xf5\xab\x6c\xd6\xa5\x55\x8d\xdb\x67\x17\x00\x9b\x93\x69\xcb\x02\xec\x76\x99\xed\xdc\xc8\x85\x57\xfa\x6e\x98\x9b\x5f\x5e\x5e\x5e\x9e\x3f\xf7\x86\x3e\x5c\x7e\xe1\x95\xce\xe6\xe6\xce\xf1\x7f\x11\xa0\x9a\xb1\x73\xf8\x5a\xec\xbf\x94\x36\xdd\xff\x92\x36\xf7\xa5\xb4\x5d\x9b\x33\x63\x6d\xdd\x94\x95\x56\xcb\xf2\x9a\x29\x9b\xba\xf2\x83\x99\x76\x57\x26\xb0\xd9\xb9\xe6\x74\xec\x0f\xb6\x0e\xde\xb4\xc0\x53\x5d\x5d\x5d\xed\x59\x70\xd3\x20\x73\x32\xd8\x3a\xaf\xa7\x67\xde\xf8\xbf\x72\xcd\x17\xde\xc4\xeb\xe9\xba\xf6\x05\x0a\x10\x87\xb9\x95\x3c\x60\x16\x24\xe7\x13\x44\x42\x84\x00\x11\x03\xe2\x7a\x99\x25\x39\x77\xb5\x5a\xad\x59\x9b\x2e\xae\x6e\x85\xc3\x94\x10\x25\x85\xaf\x27\xae\x6d\x8f\xfb\xa2\xd5\xcd\x7c\x4e\xfe\xf5\x87\xa5\x27\xd6\x94\x96\xae\x39\xb1\x94\xa8\xee\xb8\x03\xb4\x10\x49\xfe\xf5\x87\xbc\x1a\xa7\x4a\xe5\xac\xc9\xc3\x05\xe4\xda\x82\xd9\x3b\x9a\x5b\x76\xce\x29\xc0\x05\x8f\x43\x3e\x79\x77\xf4\x07\x32\xaa\x36\xe7\x26\xeb\x73\xcc\xb4\x04\x0f\x15\x8e\x7d\x85\x1f\xe2\x4e\xa1\x52\xf4\xdb\x40\xb4\x0f\x04\x0e\x1a\x8a\x80\x83\x29\x92\xa8\xc9\x45\x0c\x8b\x58\x06\x0d\x23\x39\xa8\x2d\x9a\x73\x9c\x80\xe4\xa8\x76\x14\xc8\x61\xed\x88\x9e\x48\x88\x88\x30\x44\x84\x72\x30\x0a\xae\xfc\x5c\x54\x94\xa6\x71\x52\x48\x7c\xfc\xd9\x40\xe1\xcf\x7e\x2c\x32\x52\x2b\x3d\x8b\xe8\xa3\xdd\xdd\x81\x84\xd2\x92\x62\xbf\x45\x65\x57\x68\x2c\x2a\x5b\x42\x34\x15\x0e\x65\x1c\x95\xd4\x66\xe9\x9c\xc7\x6a\xb7\xda\xac\x56\xa9\xe4\x00\x8b\x5b\x23\x77\xf7\xf7\x48\x52\xa3\x74\x10\x14\xd6\x92\xce\xd5\x4d\x4d\x07\x17\x17\x47\x7c\x1f\x99\x9c\x9f\x61\x72\xa6\xc4\xf3\xf0\x87\x3f\x70\x71\x29\xd9\x66\x7b\xb6\x2e\x0a\xff\x00\xa5\x43\x57\x4f\x69\x59\xd7\x59\x6c\x4d\x18\x24\x17\x80\x63\x67\x37\x1e\xbd\x7a\x6d\x67\x9e\x7b\xed\xcb\xd7\x7a\x7b\xaa\x6c\xd6\xe2\xe6\xb6\x56\xe3\x37\x71\x69\xed\x1d\xad\x65\x56\x47\x55\x67\xf6\xbe\xe7\x57\xbb\xf3\x3b\xd7\x5f\x73\xac\x39\x2e\x78\x84\xf6\xb7\x6f\x1e\x3b\x8f\x6f\xc3\xed\x28\x0f\xbd\x29\x69\x4b\x79\x28\x32\x4a\x88\x8a\x1c\x2f\x23\x88\x06\x01\xd3\x3a\x02\x71\xe0\x7c\x4f\x04\xf0\xbc\x4e\x2a\x24\x10\x17\xb6\x81\x0d\xe9\x4f\x9e\x1f\x79\x90\x3e\x12\x15\x45\x59\x64\x9c\xfc\x70\xa0\xe8\xe7\x3f\x47\xcf\x7b\xb9\x84\xc1\xc0\x8a\x9c\x4e\xcc\xcb\xcd\xca\xb4\x59\x2d\x0a\x85\x42\x65\x49\xb4\x24\xc4\xd0\x73\x5f\xb6\xb9\xdc\x72\xab\x2d\xd9\x51\x21\x27\x33\x9b\x65\x68\x03\x37\xbb\xeb\xc9\x08\x6d\x96\x35\x37\x8f\x0b\xb2\xa5\x7d\x9b\xab\xe6\xdd\xd0\x9f\x8f\x67\x91\xff\x81\xe8\x59\x9c\xbb\xef\xfa\x81\xc6\x6d\xbd\x5e\x08\x32\x31\x5a\x5b\x8a\xd9\xa9\x8d\x84\x27\xe1\x75\xcb\xd4\x9a\xec\x8a\xb2\xd9\xfb\x7b\x5c\x4d\x3b\x1f\xec\x25\xc5\xb8\x98\x54\xcd\x79\x60\x7b\x63\xe6\x9c\xff\x58\x6a\x2b\xb2\xab\x9d\xd5\xad\x16\xe9\xac\x8c\x45\xe2\x36\x1b\x41\xd1\x28\x4e\x94\x86\x71\xc0\x53\xef\x13\x43\x85\xf4\x5c\x1a\x2f\xe6\x64\xef\x97\x0c\xf3\x46\xe3\xf0\xb2\xe7\x4b\x2a\x42\x64\xd9\xee\x39\xff\xe8\xd8\x4b\x3e\x84\xaf\x21\x15\xce\x93\x0f\x89\x0e\xcc\xd7\xc3\x3d\x64\xa6\xf8\x43\x03\x52\xcb\xe1\x57\x28\xac\xdb\x3d\x41\x65\x6f\x82\xf8\xbe\xf8\x4b\xde\xa7\xfb\xc9\xf7\xb9\xed\x76\x81\x2d\xec\x79\x79\x7a\x2f\x39\x0d\xf7\x42\x12\xdc\x47\x4e\x93\xe1\xaf\x66\xa6\xa4\x42\x3c\xf9\x46\xfc\xa1\xaa\xdc\x7f\x06\x97\x2f\x97\xde\x39\x15\x21\xfc\x22\x8d\x65\xd2\x8e\x36\x1a\x51\x4f\x6b\x88\x02\x41\xb4\x24\x41\x40\x73\xc5\xa5\xa2\x69\x8c\xa4\xc6\x2b\xf5\xf2\x4d\x00\xb5\x8b\x1e\xf7\xf3\x99\x95\xb2\x33\x5e\xe9\x06\x33\xb8\x59\x76\x7f\xe6\xad\x59\x5d\xa7\x07\x0f\x7c\xfa\xe9\xb3\x2f\xfd\x19\xbc\x9f\x93\xbf\x3e\xd8\x0e\x4f\x93\xfa\xd0\x0f\x37\x32\xfa\x2b\xd6\xf3\x43\x1b\xb3\x09\xde\x0a\xd3\x41\xfd\x4a\x1a\xe4\x09\xe4\x4b\x74\x48\xe6\x6c\xb7\xb4\x5c\xa3\x40\x10\xa0\xfb\x7f\x4f\xc9\x7f\xe4\xdc\x5f\xd8\x70\xba\x7d\xdd\xa7\x9f\x3e\xfe\x3a\xa5\xe4\x6f\xf7\xb4\x00\x26\xa3\xa1\x1f\xec\x0f\x5e\xcb\xac\x12\x99\x02\xf9\x12\x4f\xb2\x11\xc2\x2f\xd0\x9c\x22\x0b\xca\x0d\xb8\x10\x27\x88\x72\x6c\x98\x05\x10\xb5\xbe\x65\xa1\x0e\x02\x72\xf8\x4e\x8b\x9a\x12\x15\x6a\xb5\x49\x61\xd5\x50\x23\x41\x4e\xc2\xc8\x96\xf0\x70\xa5\x88\x04\x4d\x79\xf6\x81\x09\x94\x26\xb6\x7f\xea\xce\xee\x1c\x72\x26\x21\x2d\xcf\xa4\x26\x5f\xb8\x4c\x79\xc6\x04\x72\x26\x7f\xce\xd5\x9d\xe4\x59\x9c\x1f\xfc\x6e\x1b\xf9\x07\x1b\xcb\xe7\xf5\xec\xef\x25\xcb\xe0\x86\xac\x62\x73\x7c\xf0\x0f\x8c\x33\xde\x5c\x9c\x25\xfe\x3d\xf7\xda\x9e\x1c\xcc\xdc\x1e\x3c\x05\x33\x24\x5a\x2b\x10\xc2\x2b\xb1\x9f\xd2\xea\x0d\xb8\x23\x79\x86\x11\x19\x07\x0c\x0f\x3c\x03\xc3\x88\xe7\x65\xcf\xb1\x10\x62\x1c\x42\x16\x33\x32\x21\x93\x29\x51\xad\xd5\x46\xf0\x49\x4e\xb7\x47\x26\xce\xc0\xaa\xd5\x52\xec\x28\x4c\xb9\x1a\x94\xa6\x0a\x47\xe3\xd2\x5a\xf2\x15\xd6\x93\x73\x95\x0b\xeb\x6d\xe4\xcb\x68\x9d\x25\x29\x91\x9c\x4d\xd1\x59\x74\x31\x10\xb5\x8b\xfc\xf0\x75\xf7\xee\x6e\x77\x04\x7c\x48\xcc\x51\x05\xdd\x3b\x3a\xbf\xfe\x3a\xbb\xcc\x1a\x4f\x56\xc2\xc1\x78\x6b\x59\xf6\xd7\xcc\x0a\x88\x95\xec\x3a\x84\xf0\x3b\xdc\x08\xb2\x22\x07\x2a\x09\x14\xc5\xca\x1e\xca\x08\x9e\x41\x20\x5a\xf7\x51\x51\x92\xae\xa3\x69\x8c\x8e\x14\x38\x2c\x53\xeb\xb0\x23\x2b\xb2\x8a\xd4\x52\x05\x48\x94\x0e\x26\xb6\xc0\x27\xcd\xb2\x89\x35\xb1\x06\x56\xcd\x9a\x59\x89\x6c\xb3\x44\x36\xab\x54\x9a\x61\x69\x84\x66\xf0\xe3\x8f\xa1\xef\x33\x56\xf3\xd7\xca\x81\x80\x09\xff\x29\x82\x4b\x34\xa5\xc4\xfd\x2e\x29\xd9\xac\x12\xd8\x4f\x66\x3c\x0c\x8f\xf5\xd4\x04\x1f\xe2\x46\x82\x4b\x98\x23\xc1\x05\x11\x85\xb3\xb6\x34\x91\x66\x78\xcc\xe0\x73\xea\x83\x8f\x31\xcd\x7a\xa7\xcf\x40\x9a\xd9\xb7\x41\x2b\xf1\xba\x04\x21\xfc\x06\xf6\x87\xe8\x8f\xbb\x12\xfd\xba\xcb\xd1\xaf\x54\xab\x45\xfa\x55\x32\xfd\xde\x09\x03\xd0\x68\xc2\x03\x10\xc6\x47\xe0\x33\xc3\x4e\x3e\x3a\x7a\xed\x27\x9f\x40\xfb\x1b\xcc\xd8\x9b\xab\xd6\xf0\xbf\x17\xf8\x44\x93\x1e\xd8\xdf\x47\xe9\xd3\x12\x05\xfe\xb7\x53\xef\x04\x2e\xab\xd9\x44\xfa\xb1\x9f\xa4\xc3\x5f\x48\xb2\xfa\xc4\x75\xe2\x21\x92\xea\xc9\x4c\x12\xc8\x52\x38\x9e\x94\xe9\x49\x25\x17\x98\x87\x3f\x95\x31\x3a\x03\x38\x5f\x58\x8d\x0a\x51\x05\x9a\x16\x68\x2f\x07\x81\x57\x02\x87\x98\x06\xab\x85\x61\xeb\x22\x80\x17\xf8\x95\x48\x60\x84\x95\x91\xe2\x31\x49\xbd\x3c\x72\xfe\xb5\x26\x8c\xda\x49\xfd\x05\x15\x81\xb2\xd2\x62\xbf\xcf\x93\x93\x95\xaa\x8f\x89\x8a\x14\x50\x21\x14\x46\xd1\x78\x92\xe4\x4d\x37\x79\x4c\x93\x4b\x17\x43\x85\x1c\x82\xcd\x46\xc1\x38\xc6\xdd\xee\xca\x30\x9a\x4b\x54\x59\x57\xa1\x7e\xe5\x46\xf2\x1d\x44\xad\x7a\x71\x5f\xc3\xc6\xa5\x7b\xae\xa9\xdf\xfd\xf4\x70\x61\xc0\x6b\x70\xb9\x55\x53\x8f\xdd\xcd\xe4\xcf\xda\xdd\x5e\x52\xd8\x55\x92\x76\x68\xff\xa1\xdb\x42\xd8\x2f\xec\x9c\x14\x77\x4d\x46\x4b\xff\xdf\xb2\xe7\x5c\xd7\xbf\xfe\xae\xac\xcc\x13\x5b\x07\x6f\x5b\x56\xe4\xcd\x34\x17\xd8\xf4\x91\x27\x2c\x2f\x1d\x68\x58\x56\x6f\x4e\x2d\xa8\xcb\x1c\x5e\xf9\x05\x7b\x4c\x02\x8a\x61\xd0\x13\xa4\x05\xdb\xb9\xef\xfe\x0f\xbc\xd0\x5d\x9e\x17\x79\xd9\xff\x5b\x5e\x64\xb3\x32\x2f\xbc\x17\xb3\xc2\x51\x30\x25\x5b\x3d\x7f\x89\xc8\x8a\xa5\x8f\x6f\xaf\xed\x9d\xbe\x64\x45\xe5\x86\xfb\x87\xf2\xea\x4a\x53\x32\x72\x12\xa7\x96\x2c\x6a\xcb\x81\x9c\x19\x1b\x1b\x3d\x8b\x56\x6f\x5a\xf3\xcb\x53\x21\x56\x30\x2b\x55\x96\xbc\xd4\x82\xca\x77\x2c\x0d\x2b\x9a\x66\x6c\x30\xa7\xad\x9f\xde\xbc\xa1\x23\x4b\x66\xc5\x2f\x55\x95\x33\x87\x2b\xaa\xe6\x55\xa4\x4d\x29\xaa\xaa\x39\xc9\xf2\x32\x66\x0e\x4b\xf3\x80\x36\xd0\xde\x02\xe9\x28\x47\x94\x78\x3c\x5c\x54\x07\x96\x1a\xae\x03\x33\xa0\x26\x8b\xd9\x99\x61\xce\xb1\xe4\x58\xd5\x19\x16\x81\xd7\x5d\x0c\x04\x66\x60\xd4\xdc\x78\x29\x98\x75\x42\x29\xd8\x86\x4b\x41\x00\x48\x7c\xa8\xfc\x9f\xc4\xc3\x37\x21\x48\x80\x8b\x50\xc0\xfa\x4e\x9c\x3f\xf0\xac\x3e\x04\x00\xf0\x6e\x44\x08\x13\x40\xa4\xbd\x7f\xec\x1c\x9e\x43\xeb\x56\xd2\x90\x93\x6a\xc6\x52\x63\xc0\x7e\x1e\xe4\x20\x90\x71\x1c\x3b\xc9\x00\x4d\xe9\x26\xad\xc6\x6e\x33\x39\xd3\x9d\x29\xc9\x9a\x34\x6d\x5a\x86\x25\x42\x76\x83\x4f\xf6\x72\x01\xb5\xc4\xb3\x59\x96\x7a\xba\x0c\x6c\xff\x25\x8d\xa6\x89\xa7\xad\xd0\xc4\xc3\x7f\xf2\x26\x5f\x9b\xbb\xa0\xc5\x67\x12\x88\x5f\x30\x15\xb6\x5d\xa6\xdf\x34\xf4\xd8\xab\x66\x79\x3c\xb3\xaa\xec\xc1\xd9\xd6\x8a\x6e\x8f\xa7\xbb\xc2\x8a\x00\xc5\x20\xc4\xb1\xdc\xab\x28\x11\x55\x3c\x01\x72\xcf\xd8\xd4\xb6\xae\x80\x42\xea\x41\x0c\x08\x49\xa1\xf0\x50\xe9\x9a\x26\x0c\x5e\x19\xfa\xbc\xfb\x49\x85\xd2\x64\xa7\x51\x01\xad\x4f\x59\xc6\xba\xb5\x02\xcd\x29\x36\x81\x89\x59\xa5\x56\xfd\x5e\x5f\xd9\xb9\xbc\x3e\x83\x49\xce\x2a\x51\x90\x47\xc8\x07\x44\x0b\xf9\x70\x4d\x5f\x0f\xf3\xd9\xb4\x1d\x5d\x2e\xf8\x36\xe0\xbd\x70\x3f\x05\x1c\x00\x2a\x9b\xd7\xe0\x16\xa4\x42\x33\xe5\x3a\xc7\x48\x5a\xa1\x29\xd5\x32\x45\x4b\xe4\x45\x02\x0b\x53\xe4\x42\xc7\x71\x22\x8d\x93\x88\xd4\x85\x89\x34\x4e\x20\xd2\x6a\x0d\x11\x39\x39\xf9\x59\x24\xd4\xa4\x52\xad\xcf\xbd\x7d\x53\x6a\x81\x56\x87\xd3\x62\x6c\x25\x31\xe4\x07\x32\x4a\x76\x80\x19\xae\x5f\xb4\x08\x36\xdc\x7a\xb7\x10\xfb\x67\x86\x29\xce\x0c\xb2\xd4\x88\x64\x51\x0d\x69\xc7\x2f\xd1\x5c\x83\x7c\x54\x29\x6e\x40\x2d\x08\x4c\x2e\x20\xc1\x4a\x6b\xe9\x42\x5d\xb9\x52\x1b\x39\xc9\x2d\x1c\x4a\x24\xa0\x1b\x77\x16\x62\x59\x13\xdb\x64\x37\x6b\x8a\xd4\x5a\x71\xf6\x53\x2e\x57\xcb\xa8\x55\xba\xd9\x70\x93\x57\xd9\xdf\xe9\x63\xdd\x5c\x41\x08\xd7\x91\x9a\x75\xcc\xd1\x8c\xd6\x55\x0d\x35\x8b\xea\x2d\xd6\xba\x45\x35\x53\x56\xb5\x65\x40\x94\xa2\x77\xe4\x6c\x64\x5a\xe1\x54\x7f\x54\x72\xb2\x4e\xc0\xbc\x52\xad\xe2\x52\xed\xfa\x38\x4e\x7d\x6c\x84\xf4\xe4\x17\xa7\x3a\x74\x51\x2e\x7f\x71\x3e\x7c\xb4\xe2\xe9\x9d\x75\x75\x3b\x9f\x5e\x01\xdf\x85\x7e\x23\xef\x3d\xcc\x54\x5f\x30\xd8\x7a\xda\xbc\x2c\xc7\x33\xc7\x18\x06\x32\xfd\xa5\x89\x53\x71\x45\xe9\xfe\xff\xb0\x37\x2c\xae\x09\x3e\x7d\xcd\xb1\x63\xd7\x88\x3c\x28\x10\x79\x40\xd7\x7d\x3e\xaa\x47\xcb\x03\x71\x5a\xe0\x85\x5c\x00\xde\x0a\x18\x42\xcd\xca\x4d\x34\x70\xcc\x89\x5a\x8a\x2e\xdc\xac\x6c\x12\x1b\x92\x03\xd6\xc9\x4c\x32\x5e\xfe\x3e\xea\x09\x1d\xe7\xd8\xa5\xfb\xc5\x7a\x05\x8e\x5d\xea\x1c\x2d\xb0\xb5\x6f\xe9\xec\xda\xda\x6e\xb7\xb7\x6f\xe9\xec\xdc\xda\x6e\x67\x17\xff\x18\xcf\x82\xfb\x23\x53\x0a\xb2\x9c\x05\x29\x91\x91\xa9\x1e\xa7\xd3\x9d\x12\xc9\xd8\xd7\xbc\x2d\x6e\xb0\xb7\xd7\xa8\x43\xbf\xdc\x70\x92\xa9\xbb\x2c\xdf\x82\xef\xb7\x1e\x5c\x5c\x5e\xbe\xf8\x60\xab\xba\xe5\xe0\x92\xf2\xf2\x25\x07\x29\x6e\x24\x46\x6d\x63\xeb\xf1\x26\x3e\x83\x62\x80\xa4\x22\x37\x7a\x48\xc2\x64\xca\x46\xc0\x71\x30\x88\x10\xcf\xf2\x68\x01\x62\x05\x81\x1d\x44\x0c\xc6\xcc\xd0\x84\xec\x14\x41\xc0\xb3\x10\xc6\x06\x1c\x32\x9b\x72\x26\x3e\xc5\x0e\x23\x56\xe0\x59\x61\x19\x62\x30\xb3\xea\xf2\x8f\xd1\xf7\xc0\xca\x9f\xfd\x00\xf5\x44\x67\x64\x58\x27\x64\xa3\xba\x95\x66\x85\xfb\x52\xd1\x7b\x29\x02\x0b\xf3\xc6\xa9\x53\xcc\xa9\x53\xf0\xd8\x4f\x43\xb0\xe0\x79\xf0\xfa\xf7\xad\xf0\x5b\xb0\xfe\x1c\x20\x16\xca\xc7\x05\x63\x4b\xf1\x7c\xfc\x9f\x61\x3e\x7e\x26\x95\x53\x64\x23\x51\xe6\x0e\x22\x24\xb0\x82\xc8\x47\x9e\x17\xf9\xc8\x71\xcc\x90\x38\xaa\x1e\x84\x31\x5d\x68\xdc\x2c\xc4\x71\x06\x4e\xe4\xa3\xe6\x72\x4f\x09\x2c\xbf\x0c\x31\x1c\xb3\xea\x4a\x4f\x69\x69\x0b\x03\xc0\x22\x2f\x7f\xe6\x43\xf4\x2d\xa1\xfb\x45\xde\xff\xc4\x03\xdd\x97\x63\x3e\x6b\x56\xb8\xad\x57\x0c\x8d\x8c\x2f\x76\xe6\xd9\x07\x1e\xc0\x27\x4e\x04\x1f\xbd\xe4\xf8\xb8\x14\x13\x72\x14\x7e\xf5\xc3\x3d\xf0\xd1\x47\x97\x1c\x1f\x97\x82\x42\xb2\x28\x67\xec\x1c\xc7\x0a\x99\xa8\x00\x35\xa0\x19\x68\x51\x60\xa8\x1c\x62\xa3\x66\x50\xf4\x4b\xe0\xd8\x86\x0a\x88\x84\x29\x28\x36\x2a\x32\x2a\x36\x72\x18\xf1\x98\xc3\x3c\x37\x8c\xa2\x51\x54\x6c\x74\xd4\x40\x1c\xc4\xa0\x48\x14\x13\x39\x10\x01\x18\x4b\x32\x5c\x43\x71\xb3\xa5\xda\x0f\x03\x34\x79\x3c\x6d\xad\x9e\x06\xcf\x94\xda\xea\xd2\xe2\x42\xaf\xda\xac\xb4\x2a\x92\x2c\x19\x09\xf1\xa2\x99\x35\x11\x42\x78\x22\x04\xae\x3a\x9d\x57\x5f\xe2\xf7\x2a\xb0\x99\x95\xea\x10\x0e\x9b\xda\xec\x29\xa0\x3e\x4b\x37\x78\xbd\x1e\x8f\x9b\x46\x9c\xd9\x96\x39\xb7\xad\xa9\x2c\x59\x74\xfd\x8c\x9a\x15\x0e\xc7\x70\xf5\x8c\x1b\x16\x15\x57\xae\xbe\xad\xb7\x7e\x7a\xb9\x37\xd3\x05\x31\xae\xcc\x82\xc0\x8c\xda\x77\xb4\x0d\x9b\x17\x74\x5a\xb2\x8b\xf6\x6c\x5e\x9a\xdf\x37\xb8\xa2\x9a\x24\x9b\xcc\x47\xb5\xb6\xbc\x24\x6e\xc4\xb7\xf8\xd6\x85\xc1\xf9\xbd\xd7\xf5\xe5\x15\x16\x16\x16\xe6\xf5\x5d\xd7\xcb\xdc\xb4\xf0\xd6\xc5\xbe\xd3\xbd\x43\xc1\xf9\x1d\x8d\xcd\x9d\xf0\x12\xa9\xe8\x6c\x6e\xec\x60\x6e\x1a\xea\x85\xbf\xed\xb5\xba\x6c\xb9\xde\x44\xeb\xf0\x42\x9b\xcb\x4a\xae\xc9\xac\xb3\xf5\x0e\xa6\x96\x78\x5d\xb1\x52\xbe\xe2\xd8\x39\x7c\x9c\xfb\x0b\x2a\x41\xd3\x50\x1f\x7a\x2c\xa0\xac\x83\xc8\xa8\xbe\x30\x5f\xa7\x40\x2c\x4c\x69\x1c\x71\xb4\x75\x05\x4a\x50\x6c\x24\x8a\x8c\x45\x61\xf6\x52\xb6\xc6\xc6\x44\x8a\x86\x40\x74\x0f\x8a\x8e\x4e\x6d\x1c\x67\xb0\x71\x32\x83\x93\x03\xfe\x8b\x1f\x17\x67\x27\x32\x34\x3b\xb1\x93\x66\xe7\xa2\x87\xbb\x03\xfa\xd2\xd2\x99\xdd\xa5\xd3\x4a\x3b\x5a\x9a\x6a\xaa\x02\x65\x5a\xab\xda\xfe\x73\x26\x28\x74\x72\x89\x2b\xd4\x1d\x6a\xda\x49\x4d\xd5\x4b\x27\x09\x4f\x9a\x24\xdb\x94\xab\x86\x4a\x7d\xb3\xd7\x07\xea\x57\xa6\xa7\xaf\xa8\xaf\x58\x3f\xdb\x57\xba\x60\x6f\x83\x21\x2b\x35\xd6\x9e\x95\x64\xd5\x44\x9f\x8d\xd5\xdb\xf4\xce\xb4\xd8\x54\xa7\xe1\x57\xae\xc6\x0d\x03\x53\xad\x39\xfe\x7d\x5b\x97\xa7\x97\x97\x07\xea\x5a\xb3\x49\x85\x3c\x5b\xb8\x25\xb7\xff\xf0\x5c\xb2\xa3\x7b\x57\xa7\xb3\x65\xca\x94\x16\x67\xe7\xae\x6e\xd8\x36\xf7\x70\x7f\xee\x2b\x89\x59\xcd\x7e\x72\x63\x7b\x73\xb4\xc1\xeb\xfc\xf6\x5b\xa7\xd7\x10\xdd\xdc\x0e\x43\xfe\xe6\xac\x44\xf8\x60\x7c\xce\x12\xf5\x69\xfa\x44\xb2\x7b\xc2\xac\x31\xa8\x79\xec\x1c\x7e\x48\x10\x90\x80\xb2\xd0\xea\x27\x14\x80\x05\x90\x21\x6e\xad\x88\x01\x1e\x98\x05\x28\xd4\x05\x30\x3a\x2a\x82\xa5\x0e\x0d\x10\xb7\x3a\x07\xb2\x38\xb6\x49\xf7\xf1\xc3\x3f\x7e\x63\x77\x40\x15\x11\x11\x91\x15\x91\x95\x61\x57\x9a\xd5\x16\x1b\x45\xf6\xa7\xce\x78\xb5\x49\x6d\xf6\x98\xb8\x9f\x76\x52\x83\xc0\x7c\x41\xfe\xf2\x04\xf9\x3b\x7b\xcf\x95\xbd\xd5\x82\x30\xbc\x6d\xdb\x99\x9f\xf4\x58\x8b\x36\x1d\xf5\x59\x73\x27\xe9\xd8\xd7\x4f\x1a\xbb\x5d\x1e\xbb\x04\x57\x48\x53\x7f\xa5\x41\xe9\x2e\x1e\xbd\x23\x34\xfa\x9f\xba\xf5\xa7\xc6\xff\x33\x1c\xe1\xc0\x86\xc6\xbf\xff\x8a\x1e\x71\xee\xe4\xf0\xb6\x6d\xe4\xfb\x9f\x76\x8b\x23\x40\x5b\xc8\x61\x3c\x9d\x7b\x1d\xa5\xcb\xd5\x1c\x18\x1a\x42\x95\x53\xa1\xe6\x88\x21\x2f\x2f\xdb\x94\x91\xae\x72\xd2\xec\x0e\x90\x8a\x49\xc7\xeb\xd0\xc7\xe1\xba\xdd\x6e\x76\x2e\x39\xb3\xe8\x81\xf5\x81\xba\x5d\xcf\xac\x5c\xf5\xd8\xe6\x0a\x72\x66\xce\x12\x5f\x87\x2f\xc5\x52\xb7\xb0\xe6\x71\x72\x18\xfa\x12\xe6\xdf\xfc\xab\x75\x90\xbe\xfb\xe3\xdb\x66\x56\x6e\x7f\x7e\xe3\x81\x7d\x85\xf3\xaf\x6e\x27\x7f\x6e\xdf\x3f\xbf\x88\xd2\x74\x92\x5c\x8f\x67\xe2\x16\x64\x41\x1d\xe1\xbe\x90\x1a\x0a\xbf\x11\xa2\x6c\x3c\xbe\x23\x77\x70\xd0\xcb\xb8\xcb\x97\xa5\xdc\xc8\x36\x75\x3f\x95\x61\x99\x44\xfb\xa5\x40\x2e\x12\x66\x02\xdb\x41\xce\xce\x3d\x32\xe0\x0e\x6c\x79\x66\x63\xff\x9d\xab\x2b\xc8\x0f\xba\xec\xaa\xcc\xb2\x0e\xb7\x46\xed\x9e\x5e\x3e\x42\xae\x87\x01\x45\xdf\xc1\xc7\x07\x27\xc5\x08\x27\x74\x2a\x17\xe9\x5f\x8c\x10\xbe\x9e\x2b\x93\x72\xbc\x94\x89\x8a\x84\xd8\x98\xe8\xa8\xc8\x08\x81\x67\x19\x88\x97\x60\xc1\x24\x30\x48\x2d\x6a\x4a\x52\x31\xbc\xc6\x09\x9c\x60\x65\xcd\x4a\xab\x8f\xa3\x3f\x6e\x96\x13\xac\x4c\x37\x98\xea\xc9\x47\x4f\x3c\xf2\x29\xf9\xb8\x0e\xac\x6f\x93\xbf\x4c\x01\xf3\x33\x0f\x9e\x06\x6b\x13\xf9\x04\x5e\x79\x70\xfb\x03\xe4\x15\x38\x78\x62\xfb\x09\x58\x70\x62\xe7\x09\xa8\x25\x8b\x4f\x6c\x7b\x80\x62\x3d\xda\xf1\x1d\x63\x3f\x70\x41\x24\xa0\x03\xd2\x52\xd6\x51\x2c\xcc\x41\x0a\xf4\x38\x84\x41\xae\xd0\xd1\xb0\x21\x0d\x40\x1b\xbe\x8e\x56\x5d\x74\xd9\x44\x81\xae\x19\x60\x56\x5e\x7a\x35\x90\x3c\x7e\x01\x89\x17\xa6\xd3\x6a\x27\x0c\x2c\xb0\x2d\xe2\xb1\x1f\x83\x10\x12\x90\xa0\x50\x28\x38\x5e\xeb\x04\xb5\xdd\x67\xb2\x6b\xd5\xc1\x0f\x1e\x05\x26\x1d\x4e\x72\x69\x5b\xe1\xeb\x25\xf0\x67\x8a\x9f\x79\x81\xd3\x8e\xfd\xc0\xab\xa5\x1c\xa3\x50\xbd\x16\xa6\x36\x28\x27\x9e\xaf\x4c\x13\x20\x8d\x4a\x11\x1f\x13\x1d\xc1\x23\x2d\x68\x79\xc9\x45\x80\xdd\xf9\x1a\x41\x30\xcb\x9d\x87\xcc\x66\x7b\x30\x33\xb7\xb3\xad\xa9\xa1\xc1\xb1\x7e\x03\x03\xfb\x8a\x73\x9c\x73\x57\xef\x6b\xcb\x61\xb8\x5f\x52\xc1\xb7\x60\x85\x35\xd1\x9b\x6b\x73\x59\xf7\x8a\x7c\xfa\x8e\x53\x92\xaf\xf8\x1e\xc4\xc9\xbd\x04\x11\xa6\x50\x3a\x0b\x15\xc0\xab\x9d\x60\xd7\x0a\x5a\x21\xf8\x2f\x78\x11\xfc\x53\xb9\x4f\x37\x72\x1b\x57\xcd\x40\x10\xfc\x3d\xa7\x24\xef\xd0\x67\x14\x81\x38\x8e\x01\x09\x7d\x67\xa1\x52\x7a\xc4\x67\xf7\x69\x89\xb5\xbd\x18\x5e\x00\x4e\x39\x63\xd5\x46\x6e\x23\x42\x11\x3f\x6c\x23\xa7\x18\x3d\xf7\x08\xcd\xed\xae\x40\x9d\x68\x29\xda\x85\x6e\x44\x8f\x40\xa9\x54\x6a\x39\x98\xc6\x32\xc0\x60\x06\xf0\xb0\x55\xab\x36\x09\x1c\xc7\x47\xf0\x5c\xc4\xb0\x2d\x39\x29\x3d\x9a\x8b\x8c\x8a\x89\x8a\x8c\x19\xb6\x28\x19\x45\xa2\x62\x95\x0a\xb0\x06\x78\x0e\xf3\x03\x3a\x88\xd0\x43\x54\x64\x44\xd4\x40\x0a\xc4\x18\x20\x2e\x36\x26\x6e\x00\x25\xa0\x44\x45\x42\x62\xb8\x35\xbc\xa6\xd1\x6e\x4c\x35\xc7\x73\xb1\xb1\xda\xd8\xa6\xe4\xc0\xc2\x9f\xf3\x22\xf9\x89\xb8\x84\xb8\xd8\x84\xff\xe3\x5b\x99\xa6\xee\x40\xdf\xf1\xe3\xbb\x77\x2f\x5b\xd6\xd5\x55\x59\x99\x95\xa5\xd1\x20\x74\xfc\x91\xe3\x8f\x9c\xb8\xff\xee\xbb\x6e\xbb\x65\xf7\x8d\xbb\x6f\x3c\x7a\xf8\xd0\xc1\xfd\xfb\x96\xed\x5a\xb6\x6b\xdb\x96\x0d\xeb\x57\xaf\xec\x5a\xda\xb5\x74\xe1\xd0\xc0\xdc\x39\xb3\x2a\x3b\x2b\x3b\x3b\xda\x9b\x9b\xea\x6b\xb3\x2a\xb2\x2a\x4a\x8b\x7d\xde\xfc\x5c\x8d\x53\xe3\xb4\x5b\x4d\x69\x29\x7a\x19\x80\xd8\x21\x2e\xa7\xd0\x0e\x36\x87\xd3\x46\x2e\xf9\x44\xf9\x33\xee\xf9\xbf\x7d\x72\xe9\x37\x07\x97\xa4\x7a\x5b\xf2\xf2\x5a\x7c\xa9\xc3\xd1\x5a\x5b\x72\xb2\x55\x1b\x05\x7f\x49\xf5\xb6\xe4\xe6\xb5\xfa\x52\x57\x44\xe9\x6c\xc9\x7a\xab\x36\x6a\x4a\xaa\xaf\x25\x97\xde\x24\x7f\x12\x4d\x7e\x45\x6f\x9a\xf8\x51\xb0\x6d\xd2\x57\xd1\x8f\x9a\x53\x7d\x17\x7d\x3b\xf9\xcb\x25\xdf\xe5\xa1\x9f\x4c\x7c\x1f\xfe\x67\x46\x4d\x7e\x4a\x4a\x7e\x4d\x86\xca\x92\xa2\x50\xa4\x58\x54\xe4\xdc\x25\x9f\x44\x5e\xfc\x49\xf0\xfb\x4b\xee\x39\x7d\xf1\x27\x9c\xfe\xff\xf2\x3d\x08\x45\x7c\xff\x36\x19\x80\x48\xee\x0d\x84\x51\x24\x8a\x43\x4a\xa4\x43\xa9\x28\x1d\xd9\xd1\xd2\x80\xd1\x94\xa6\x61\x59\xc6\x9e\x9e\xaa\xd3\x2a\x13\x15\xf1\x71\xb1\x31\x51\xb1\xc0\xda\xac\x29\xc9\x18\x41\xa8\x0f\x92\x96\x82\x94\x76\x53\xbf\x2a\x0e\x1d\xb9\xf4\x04\x50\x23\x86\x03\x16\x18\xb6\x7f\xe2\xe7\xdd\x81\x44\x8e\x43\x88\x8b\xe4\x22\x23\x04\x84\x11\x4e\xe4\x79\xb5\x93\xd3\xb2\x66\x25\x6b\x57\xba\x59\xf0\x71\x6a\x2b\x27\x58\x3d\x1c\xf8\xac\x5a\x0e\x04\xce\x6e\x65\xed\xac\x4f\x09\x5a\xa5\xc0\x06\x7f\x1d\xbd\xb1\xaf\xd6\x1f\xb3\xb1\xaf\x96\x31\xc4\x42\x13\xb9\xf7\xc2\xea\x58\xf2\x18\xcc\x64\x6f\x66\x20\x50\x4d\x3e\x1c\xfd\x27\x43\x5e\xae\x01\x9b\x53\x71\xa4\xe2\x0d\xb6\x4f\x71\xb4\xf2\xf5\x92\x38\xf2\x10\xf4\xe3\x3b\xe2\x60\x2a\xb9\x8d\x28\x62\x36\xcf\xad\x2b\x16\xff\x03\x0f\x27\xdc\x58\xfd\xe6\xe8\x41\xc5\x8d\x35\x6f\x32\xa7\x19\xa8\xad\x21\x7f\x18\xfd\x2b\x43\x9e\xab\x03\xa7\x54\xef\x73\x14\x21\x7c\x90\x62\x6b\x26\x22\x23\xf2\x06\xdc\x2c\xc3\xb0\x18\x00\x51\x40\x75\x0e\x18\xc4\x32\xe1\xc2\x84\x50\x51\x17\xc6\xc6\x54\xb5\x12\x27\x62\x85\x49\xcd\x8b\xc7\x89\x00\x3e\x9a\x54\x10\x2e\xb5\x1e\xc7\xb8\xc3\xb3\x77\x90\x69\xdb\x09\x21\x67\xe0\xbf\xd7\xbd\x7c\xd5\x94\x29\x57\xbd\xbc\xee\x83\x0f\x4a\xba\x8a\x53\x53\x8b\xbb\x4a\x3e\x80\xc3\x45\x4c\x59\x31\xa9\x0a\x9e\xe5\x46\x6a\x36\x3d\xb8\x70\xee\x3d\x1b\xaa\x4f\x5b\xca\xda\xb3\xdc\x5d\x95\x36\xc4\x4a\x7d\xaa\x70\x0b\xc5\x3b\x75\xa2\x05\x01\xb5\x02\x30\x63\x4e\x67\x19\xcc\xe1\x18\x40\x9c\xc8\x76\x2c\xbb\x4f\x92\x51\xa8\x11\x89\x2e\xdc\x8e\xca\xd0\x28\xa5\xcf\x26\xd3\x6e\x56\xe3\xbe\x60\xe3\x25\x77\x84\x7a\x55\x39\x78\x5e\xef\xe4\x04\xf0\x59\x27\xf4\xab\xd2\x5e\xa9\x5f\x55\xe5\x32\x32\xb0\x04\x9e\xf4\x2d\xbe\x65\xb0\x93\x76\xad\x82\xa8\xfc\x7d\x3d\x43\xb7\x2c\xf1\x91\xb3\x49\x9e\x8e\xe2\x29\xb3\xf5\xfa\xd9\x8d\xc5\x1d\x05\xba\x88\x76\x78\xad\xbd\x8b\xb6\xae\xf2\x12\x86\xfb\xaf\x45\x25\x95\xe1\xce\x55\x05\xa4\xc4\x2d\x75\xae\x12\xcf\xf3\x63\x08\xe1\x21\xc1\x88\x22\xa5\x2e\xdd\x0c\x6d\x51\x23\xaf\xbf\x70\xe2\x66\x2e\x75\xd0\x99\xd5\xa1\x0c\xe5\x21\x53\x70\x31\x39\xc3\x3c\x0d\x5a\xfc\x6b\xb8\x50\xc0\x8d\xc0\x72\xda\xd7\x86\xd6\xea\xad\xb9\xcc\x77\xe9\xae\xfc\x5d\xbd\xf6\xe0\x4a\x72\x8e\x79\x02\xd4\x6c\x37\x8c\xde\x87\xfd\x50\x4c\x31\x70\xc9\xa3\xf8\x61\x6e\x44\xee\xe3\x06\x08\x73\x80\x07\x28\xb6\x15\x05\x87\x92\x83\x6c\xa1\xbc\x5f\x87\x42\x67\x0a\x15\x3a\x87\xd3\x18\x3c\xf9\x65\xd8\xe3\xb5\xd1\x80\x15\x45\xca\x7d\xf0\xea\x8f\x6f\x99\x51\xb4\xfd\x9d\xc3\x85\xed\x45\x16\x95\x00\xf7\xde\xfa\xa0\x04\x9e\x4b\xd6\x37\x1c\xfe\xf3\x0d\xcb\xdf\xbb\x6b\xe0\x0f\x69\x9e\xfa\xd6\x0e\xdb\x73\xcf\x04\x6f\x93\xea\xf3\x8e\x92\xcf\xf0\x2e\x9a\x13\xe5\x0c\x38\xe2\x62\x19\xb6\x2e\xdc\x27\x4f\x86\x46\xa0\x69\x9c\x5a\xb6\x29\x59\x9f\xa4\xd3\xaa\x4d\x09\x9c\xb8\x48\x4d\x6a\x4a\x86\x26\x04\x4c\x25\xc7\xcd\x4c\xb8\x30\xb8\xf2\xc4\xc6\x77\x8e\x74\x40\x66\xcf\xc1\x81\xe1\xa1\x05\xf6\x29\x43\x81\x13\x52\x99\xc7\x2b\xa5\x1b\x9e\xda\x50\xbc\x6f\xfb\x52\xe3\x0b\x99\xbb\xe7\x05\xe6\x06\x4c\xa4\x09\xfb\x11\xa0\xbd\x08\x71\x5a\x6e\x04\xa9\xd0\x92\x40\x34\x50\x84\x86\x44\xe0\x45\x5b\xd3\x48\x1d\x79\xbc\x68\x97\xf0\xd0\x1f\x19\xc1\x70\x1c\xad\xf9\xa4\x90\x05\xba\x46\x2c\x25\xfa\x89\xeb\x31\x74\x0f\x12\x10\x83\x04\x26\x74\xaf\x7c\x07\xc5\xdf\x44\x2a\xa4\x92\x83\xa6\x89\x51\x7c\x8a\x33\x92\x31\xb1\x66\xb5\xd9\x23\x87\xd7\x69\xdc\x14\xff\x9d\xfc\x27\xf4\x93\x9b\x82\xa9\xf7\xb6\x93\xbf\x81\xbe\xfd\x5e\xc5\x57\xdc\x48\x70\xc5\xe8\xc7\x4c\xcf\xe7\x9f\x07\xef\xe6\x46\x82\xf7\x03\x90\x31\xa6\x13\x01\xda\x8d\x10\x7e\x89\xd6\xe6\x14\x07\x0a\x25\xba\x23\xe0\x62\x42\xa2\x22\x19\x8e\x0b\x93\x3a\x89\x0a\x45\x62\x34\x9f\x7a\x31\x19\x1e\xb7\xda\xad\xc4\x27\xc8\x1f\xa1\x8c\xdc\x7c\x32\xff\xc6\x1a\x72\x16\x34\x35\x37\xba\xee\xc7\xfe\x60\x30\xf8\x16\x1c\x7d\xf0\x41\xa9\x30\xe1\xe5\x97\xe1\x16\x49\x67\x8d\x47\x08\xff\x86\xd6\xf3\xb9\x02\x99\x31\x93\x2b\xb3\x18\x86\xed\x96\xca\xcf\xf8\x09\x05\x10\xe1\xe8\xb9\x94\x9c\xec\x56\xd2\x1a\x88\x63\x7e\xf2\x05\x79\x8b\x69\xf5\xfc\x0e\x6a\xc8\xef\xa0\x9d\xbc\xc0\xb4\x06\x4f\xe2\x97\xbe\x09\xbe\xc0\x54\x05\x6b\x83\x51\x08\x50\x32\x42\xf8\x2d\x9a\xef\x7b\xe5\x77\xe9\x7e\xc6\xbb\x1e\xa9\x26\x7f\x25\xbf\x66\xda\x6a\x6f\x84\xb9\xe4\x2b\xc8\x25\x07\xe0\x6a\xb2\x8e\xad\xff\x6f\xb2\x0c\x6e\x20\x28\xf8\x06\x02\x54\x8e\x10\x7e\x90\xf6\xeb\xb2\x07\x2c\xe2\x72\x64\x11\xee\xa7\x1d\xf1\x24\x88\x82\x89\xa5\xf9\x61\x1c\x00\x93\x3a\x9c\x90\x05\x4d\x20\x30\xdd\xe4\x71\xf2\x4f\xf2\x3d\xf9\x27\xc4\xb2\x73\x98\xa9\xdf\x5c\xa8\x90\x40\x07\x64\x7c\xdb\xfb\xb0\xff\x0a\xdf\xaf\xfb\xe9\xef\x5f\x0d\x51\x4c\x26\xf9\x96\x7c\x46\xbe\x23\x9f\x81\x81\xb9\x06\x1e\xf9\x66\xf4\x29\xda\xbf\x4e\x5c\xd7\xf9\xe4\x2e\xfc\x10\x8d\xf9\x66\x07\xc4\x23\x42\x2a\x4c\x93\xfb\x19\x70\x9c\x8c\xbb\xc1\x03\xcd\x87\x17\x97\x43\x8a\x42\x9f\x26\x25\xdb\xd2\x8c\x41\x2c\xd8\xcb\x38\x4f\x41\x36\xa6\x19\x20\x94\x81\xcc\xdf\xd5\x6b\xee\x98\x97\xad\x74\x56\xf5\x6d\x6d\x63\xac\x79\x46\x85\x00\x4c\xa4\xc2\x90\x9d\xa6\x24\xdf\xde\x4d\xbe\x65\x5e\x60\x2b\x61\xc1\xbd\xef\x2d\x6e\x3a\xbc\x6b\x79\x7b\x0e\x9c\x06\x93\xaf\xb6\xb9\xd5\x9c\xdc\xd8\xd6\x52\x66\x87\xe0\x08\x7e\xea\xc2\x94\x10\xce\xf2\x34\x72\x8e\xe2\xff\xa4\x22\x77\x20\x57\x4d\xfb\x19\x44\x47\x31\x50\x87\x44\xd3\x00\xc1\x30\x62\x18\x59\x02\xc8\xf9\x8d\xa9\x29\x54\x08\x68\x12\x38\x51\x63\x0e\x01\xd3\x95\xb1\x14\x4f\x34\x4c\xe2\x0f\x83\xb7\x2d\x2f\x71\xb4\xad\x6d\x5a\x93\xe9\x35\xc6\x44\xa7\xf9\x9c\xe4\xdb\x43\xe4\x7f\x98\x7b\x98\x3b\xd8\xa6\x9d\x8f\x0c\x55\x1d\xdd\x35\x90\x78\x2a\xa1\xa8\x7e\x6a\x86\x73\x5a\x8d\x0b\x93\x36\x76\xca\xe8\x53\x72\xce\x7d\xd7\xd8\x39\xfc\x30\xf7\x3a\x8d\x6e\xac\x6d\x1c\xc9\x6c\xeb\x0a\x44\x7b\x73\x19\xcc\xb2\x14\x91\x2d\x79\xfc\x2f\x9e\x62\xcb\x89\x37\x24\x09\x10\x42\x37\x49\xa5\xec\x0c\x67\xab\x25\x07\xcc\x13\xaf\xa1\xf0\x25\x09\x3f\x44\xbe\xab\x3b\x10\x9d\x95\x94\x91\xa4\x48\x92\x52\x9d\xb9\xcb\xfb\x8e\x44\x0b\xd3\x66\x1b\x37\x9c\x15\x2a\x5e\xd0\xb8\x41\x45\x9b\xff\xc8\x69\x88\x6a\xfc\xf0\xf4\x63\xd5\xde\xf5\xd5\x5b\x7f\x7b\xa4\xbd\x70\xe8\xba\x4e\xad\x59\x17\x6b\xa9\x9e\x17\x88\x99\xd2\x9a\x3d\x7d\xfd\x94\xd6\x1d\xb3\xdd\xc5\x3e\x5f\x2d\x99\xe5\xb0\xe9\xf4\x51\x89\x7a\x45\x6a\x8a\xc2\x98\x6a\x34\xf5\xdd\x77\x7a\x37\x54\xae\x79\xfb\xc8\xf4\xaf\x72\xa6\xad\xaa\x22\xcf\x4f\x3f\x34\xe4\xef\xfa\x7c\x1f\x04\x16\x3c\xba\xab\xb1\xe5\xda\x57\x57\x93\xf7\x36\xff\x69\x46\x02\xfc\x66\xfa\x0d\xc5\xbe\xab\x5a\xa0\xa9\x71\xb0\x34\x79\xf5\x3e\xca\xb3\xaa\xb1\x2f\xf0\xef\x29\xce\x5b\x05\xaa\x0c\x94\xbb\x81\xe5\x5d\xc0\x89\x3c\xe2\x58\x49\x92\x86\xd3\xc5\x8d\xe3\x8d\x68\x0c\xd2\xa9\x2d\xf3\x20\x2b\xc9\x91\x94\x64\xa1\x8b\x9c\xbb\x08\x8d\x58\xcd\x4b\x50\xce\xee\x70\x13\x67\xea\xf7\x9d\x30\xfa\xf1\x30\xe7\xef\xe7\x9f\xa8\x2f\xde\xd3\xb0\xe5\xdd\xc3\xed\xa5\xcb\x8e\xcf\x29\xa9\xb2\xd6\x0c\x94\x79\x0b\x72\xbb\xb7\x34\xb7\xed\x9a\x95\x5f\x1b\xa8\x9f\x41\x22\xf2\x73\xf3\x3d\x71\x49\x56\x9d\xce\xaa\x8f\xd3\x25\xeb\x75\xfa\xe9\x47\x7f\xb5\x76\xf6\xe0\x43\xdb\xeb\xbf\x10\x76\x2e\xe8\xad\x59\x3b\x23\xaf\xfa\xce\xd9\x47\xba\x6f\x1c\x2e\xaf\xdb\x74\x5f\xff\xa1\xf9\x0f\x57\xc7\xc3\xb6\xfa\x4d\xf9\x19\xeb\xa7\x5c\x9f\xd5\x52\x64\x32\x14\xd4\x89\x67\x26\x90\xdb\xf1\x3f\x68\x4d\xaa\x33\xe0\x40\x3c\xcb\x4f\x95\xda\x14\xe0\xb0\x74\x10\x66\x22\x41\xd0\x0a\x4d\xa1\x5c\x19\x1a\xbf\x31\x7b\x4c\x72\x33\x4a\x5a\x3f\xf3\xe5\x17\xcc\x87\x1f\x41\x25\x68\x8f\x25\x90\xef\x83\x09\xf8\xa5\x6f\xbe\x19\x2d\xc2\x4f\x5f\xa8\x0d\x9e\x90\x6b\xf4\x4d\xe4\x25\x2a\xe7\x2f\xf7\x1e\xdd\xcf\x7e\xcf\x47\xcf\x33\x7b\x1f\x04\x05\x18\x8f\x28\xc9\xb7\xc1\x52\x76\xca\x37\xdf\x04\xef\x65\x1b\x46\x1f\x0f\xbe\x47\x6b\x75\x18\x5a\xc3\x56\x47\xf5\x47\x23\x3a\x1e\x88\x32\x00\x07\x02\xb0\x1c\xd3\x20\x75\x2b\x30\x21\x51\xe7\x40\x0b\x10\x87\x58\xc4\xb1\xf3\x04\x09\x28\x03\xd1\x0c\x55\x29\x0a\x29\xe9\x6e\xe9\xd2\x8d\xcc\xf0\x8f\xdc\x19\xb0\x22\xc0\x1c\x06\x6e\xf8\x4a\x37\x4b\xf1\xcb\xee\x40\x3c\xc6\xd8\x88\x8d\x1e\xb5\x35\x51\x1c\x18\x2d\x9c\x73\x5f\x01\x7c\x80\xb9\xe9\xee\xbb\xe1\xc1\xcb\x03\x10\x80\x91\xf9\x16\x7e\xf9\x23\x20\x04\x94\x07\xab\x45\xad\x03\xfb\x11\x8b\x92\xd1\x2f\x02\x51\x49\xc0\x01\x3f\x81\x07\xe9\x22\xd5\x1c\x2c\xb8\x88\x15\xbc\x54\x87\x17\x62\x42\x02\x2d\x87\x98\x34\xbe\xcb\xdf\x1a\xb0\x5c\x89\x0b\x13\x6f\xeb\xee\x0e\x44\x29\xad\x6a\xb3\x7c\x08\x58\xc5\xf1\x5f\xb6\x44\x8a\x79\xe6\xee\xbb\xe1\xb6\xcb\x95\x49\xdd\xcd\x6c\x1f\xfd\xf0\x4a\xb5\x52\xeb\x10\xc2\x73\xb8\x11\xa4\x45\x39\x81\x2c\x16\x58\xd0\x48\x9d\x90\x64\x4f\x0a\x75\x06\x50\x20\x08\x29\xfd\x58\x8b\xb4\x22\x31\x3c\xaf\x73\xba\xc3\xdd\x5f\xb5\xac\x89\x0d\xe9\xd3\xeb\xc0\xec\x1e\x2a\x5a\xfe\xe4\xae\x7a\xe0\xc9\x9f\x79\x95\xab\xc1\x5b\x38\x54\xc0\x8d\x04\x3f\x8a\x8e\x2d\xdf\xf4\xe4\x5a\x52\x01\x2f\xf9\xbb\x4a\xd2\x12\xa2\x83\xcb\x10\x62\xc6\xfe\x30\xf6\x25\x3e\xc0\xbd\x86\x9c\xc8\x87\xa6\x06\x5a\xe3\x81\x17\x79\xce\x3b\x00\xb3\x19\x80\x30\x6e\x40\x3c\x62\x31\xcf\xf6\x47\x80\x5c\xe8\x9d\x2a\xaf\xa5\x10\xb8\xb7\x01\x35\xb9\xb2\x00\xe5\xe7\x65\xf9\x5c\x3e\x4b\x7a\x6a\x8a\x5a\x19\x13\x8d\x9c\xe0\x8c\xe4\x55\x4e\x2e\x3d\x9b\xb1\x7b\xb2\x59\x9f\x9b\xd7\x68\x69\x12\x23\x56\x0b\x26\xb5\x81\xd5\xca\x1d\xf6\x58\x9a\x6f\x40\x2b\xac\xcf\x6e\x3f\x75\x55\x1d\x94\xcf\xab\x4a\x89\x7c\x1b\x54\xa9\x5c\xfd\xd6\x87\x16\x77\xef\x1f\xaa\xcb\x52\x31\xc1\x4d\x90\x12\x58\xd4\x6a\xa9\xaf\x2c\xd6\xe6\x95\x3e\x7b\x3c\xb7\xc6\xa9\x06\xe8\x8f\xb6\x54\x6b\xfb\xef\xfb\x6c\x57\x51\x42\xf5\xa2\xeb\x66\xd5\xcc\xd6\xaf\xfa\xdd\xed\x73\x0a\x7a\xb6\x5c\x7f\xfb\xd4\x53\xba\xea\x6d\x73\x8b\x21\x32\x5e\x15\xfd\xef\xb4\x2c\xfc\xab\x92\xde\x75\xfe\x9c\x9c\xf9\x1d\x5e\xc4\x20\xf5\xd8\x79\x7c\x3d\x6e\xa1\x95\x82\xd3\x03\x53\xe3\x80\xe7\x38\x60\x79\x0b\x60\xd6\x2a\x8d\x19\x18\x8e\x11\x17\xc6\xc5\x63\x37\x4e\x1a\x76\x86\x03\x50\xb6\xcb\xe1\xce\x70\xa7\x19\xf4\x49\xaa\xc4\xe8\x28\x64\x07\x7b\x78\xd8\xe2\xa8\x35\xf2\xa8\x19\xad\x60\x92\xf3\x65\xc7\x07\x9d\xcd\x32\xdf\xcc\xbd\x6f\x4b\x93\x50\xda\x5f\x99\xce\x3c\xc3\xd9\x6c\x09\x4d\x2b\xff\xa3\x67\xd1\x1d\x4b\x7c\x00\xc1\xc7\x84\xb4\x82\x3a\x97\xab\xca\x97\xad\x5d\x5f\xf3\xc6\x01\x8b\xc7\xa2\xe1\xc1\xc1\x28\xcc\x1e\x55\xfd\x8e\xc7\x17\x2b\x6a\x07\x77\x36\xd7\xf4\xeb\x7b\x6e\x59\x55\x39\xf5\xe0\x8b\x4b\xf6\xe6\x76\x94\x9a\xe3\xf4\x66\xd5\xcd\xd3\x67\xb3\x2b\x2c\x25\x2d\x19\x7a\x47\x8d\x3b\x55\x5c\x63\x77\x91\x87\xf1\x29\x6e\x04\x19\x90\x23\x60\x45\x1c\x62\x58\x8e\xa1\x7d\xa3\x01\xf5\xf2\x21\x04\x17\x59\xd9\x71\x28\x92\xa8\xb2\x23\x97\x2d\x4c\xb2\x33\xc4\xa5\xcf\x3a\x7a\x8f\x2d\xf6\x17\x6d\x7f\xe7\x48\x61\x7b\x91\x59\x25\xc0\x0d\x57\xff\x4e\x54\x96\x57\x41\x2c\xcc\x64\xf3\x55\x3d\x87\x5e\xdb\xb4\xec\xbd\xbb\xe7\xfd\x29\xcd\x5b\xdf\x3a\xd5\xf6\xdc\x53\x14\x61\xe0\x11\xa6\x5d\xb4\xc7\xc8\xfb\x78\x03\xf6\xa3\x14\xda\x6f\x8c\x6a\x1b\x52\x99\x6e\xa8\x8e\x8d\x2a\x1a\xb2\x9e\xa1\x56\x25\x72\xbc\x8a\x12\x22\x5b\x1a\xbe\x82\xf1\x7c\x58\xa5\x89\x75\x36\xac\x9f\x9e\x0d\x19\x33\xae\x9a\x3d\xdc\xd3\x07\xe6\xc0\xec\xa2\xc7\x44\x75\x79\xcd\xbf\x61\x0e\x33\x53\xd3\xbc\xfc\xba\x99\xc5\x7b\xb6\x2c\x32\xbe\x90\xb9\xb5\xbf\x64\x66\xa9\x89\x0d\x95\xf4\x4a\xfa\xcf\xb5\xa4\x11\x17\xd2\xfe\x0f\xc5\x81\xc2\x38\x60\xb9\x58\x69\xdf\x21\x84\x39\x84\xfb\x05\x9e\xa1\x66\xfa\x45\x55\x3a\x08\xa1\x24\x94\xa4\x50\x5a\xad\x0a\x85\x94\x01\x6f\x52\x98\x2e\xee\x2b\x4a\xcb\x01\xee\x81\xf5\xa0\x2f\xe8\x3f\xd0\x69\xab\xb0\xc5\x69\x0a\x92\x8a\xcb\xc9\x3e\x72\x86\x1b\x09\x1e\x64\x56\x4e\x6a\xa0\xca\xec\x12\x39\x44\x69\x3a\x44\x1a\x71\x1e\xc5\x0d\xbd\x32\x4d\xba\xff\x1f\x34\xdd\x0d\x6b\x41\x43\xeb\x83\x02\xb6\x78\x35\xa5\x69\x3f\x39\x2b\xd5\xf2\x5e\xb8\x45\xea\x6c\xfa\x11\x2f\x74\x4d\x83\x77\xc8\x2c\x59\x27\x6b\x19\x3b\x8b\x57\xd3\x38\x43\x36\xaa\x0a\x04\x0c\xc0\xa2\xd4\xcb\xf7\x6a\x4b\x9d\x94\x6f\x64\x31\x03\xca\x70\x98\xb3\x2d\xd9\x49\x5a\xda\xab\x2d\x1d\xd2\x23\x42\xd0\x0b\x8a\xf1\x5e\x6d\x21\xf5\xe1\xa2\x6e\x6d\xee\x83\xef\xdf\x30\xa5\xe3\x86\xd7\x57\xee\x78\x6d\x57\x15\x1b\x6b\xa8\x59\xd9\x51\xd8\xdb\x5e\xa1\xcb\x8b\x2b\x9b\xbd\x79\x65\x79\x7f\x85\x09\x48\xb4\xbe\x68\x36\xf7\xfa\xcc\xdb\x3f\xda\x4d\xce\xef\x3b\x7d\x57\x0f\x74\xde\xf1\xf9\xa1\x77\x6a\x1a\x76\xcf\x2d\x8a\x55\xea\xa2\xfe\x1a\x91\x92\xac\xbc\xa0\xf5\xcf\xdb\xdb\xdc\xe3\x1f\x6c\x74\x4a\xf3\xbe\x79\xec\x1c\xde\xc5\x8d\xa0\x74\x91\xc7\x18\x10\xa4\x73\x0c\x87\x98\x06\x59\xf6\x0f\x53\x45\x1d\x2f\x0b\x15\x0c\x8f\xc3\xc6\x18\x98\x26\x9b\x45\x95\x21\xd7\x8f\x9b\x3c\x26\x2d\x5c\xb1\xa6\x9e\x35\x04\x8f\xb3\xf7\x03\xb9\xee\x95\xdf\xb6\x5e\xfb\xca\xaa\xd9\x8f\x1f\xec\x82\x24\xa3\x7f\xaa\xdb\x3f\x2b\x60\xba\xe1\x9a\xab\xf1\x3b\xa7\x9f\x26\x0b\x52\xcf\x9c\x1a\xbc\x6d\x59\x51\xde\xd0\xed\x61\x30\xa7\xeb\xb7\x3e\x8d\x00\xad\x24\x6b\xf0\x3a\x5a\x8f\xb1\x30\x10\x2d\xd2\x68\x91\x68\x6c\x1c\xc9\x6d\xeb\x0a\x58\xae\x40\xaa\x2e\x4c\xaa\x5e\x3c\xdd\x4c\x17\xdf\x86\x11\x83\xa9\x7f\x41\xba\x9b\xe2\x9a\x3b\x7e\xce\x88\x68\x87\x05\x36\x36\x78\x13\xfb\x20\x90\x5f\xbc\xf8\x6e\xeb\x81\x57\x56\xd2\x21\xe9\x8c\xfe\x0e\xb7\x7f\x76\x79\xba\xb5\x7e\x71\xed\x7e\xb6\xeb\xb3\xa7\xc8\x90\xe1\xcb\x57\x07\x6f\xa5\x83\x5a\x9e\x31\xc5\x6b\x4c\xf3\x35\x66\x4d\x59\x50\x69\x7c\x1c\x8d\x8d\x21\x07\x69\xc4\x37\x70\x23\x8c\x0d\x3d\xdc\x89\x90\x1d\xde\x26\x17\x90\x16\x78\xf8\xed\x0b\x08\x45\x9c\x04\x18\xd1\x8e\xb8\x9d\x63\x63\x68\x0a\xa9\xc5\x5b\xb0\x9f\xb1\xa1\x2f\x1a\xe9\x7d\x63\x29\x63\xc5\x20\xc0\x6f\xc7\xb6\x8e\x5d\x40\x89\x27\x01\x9e\x1e\x2b\x1e\x71\x3b\x4f\x32\xf0\xf4\xd8\x85\x11\xb7\x53\xce\x21\x6f\x91\x71\x6d\x72\x03\x2e\xea\x70\xc3\x8c\x7c\x80\x52\xf8\xbd\x70\x31\x2a\x42\xf1\xc9\xf1\xfa\xc4\x04\x14\x87\x62\x4d\x0a\x81\xd7\x48\x5b\x26\xd4\xfa\x5f\xa9\x08\x23\x71\xb3\x1e\x48\x22\xc9\x5b\xdf\x3c\xd0\xd0\x70\xe0\xcd\xad\xef\xbc\x53\xd9\x1f\x30\x1a\x03\xfd\x95\xec\x08\x83\x7e\x68\xab\xdb\xfa\xf0\x82\xc1\x87\x36\xd7\x06\xf3\xe1\x2b\x47\x75\xe7\xff\x47\xdd\x9b\x87\xb7\x55\x1d\x0f\xc3\x73\xce\x3d\xf7\x4a\xb6\xe3\x45\x96\x25\x79\x97\x65\x59\x92\x65\x79\x97\x25\x5b\x5e\xe5\xdd\xf1\x96\xd8\x49\xbc\x24\x76\x12\xc7\x89\xed\x6c\xce\xe2\x2c\x24\x21\x09\x21\x40\x20\x60\x02\x4d\x80\x42\x56\x42\x58\x03\xd4\x34\x49\x93\x02\xa5\x50\xa0\x65\xa7\xa5\xa5\xc0\xaf\xa5\x40\x80\x96\x2c\xb4\x6c\x01\x7e\x24\xbe\xfa\x9e\x7b\xce\xd5\xb5\x14\x87\xb6\xdf\xfb\x7e\xff\x7c\x79\x1e\x5a\x5f\xcd\xdc\xb9\x73\xb6\x39\x33\x73\xe6\xcc\xe4\xe4\xcd\xa9\xcd\xa0\x6b\xa6\x07\x80\x7c\x49\xef\xfa\xe4\x41\xb1\xb7\x10\x08\x46\x98\xa0\x95\x20\xe9\xe4\x88\x67\xa9\x76\x04\xc4\x71\xd0\xa3\x62\x9e\x01\x04\x79\xb9\xe9\xd6\xf8\xb8\xa8\x88\xf0\x29\xa1\x21\x90\x86\xcc\xd2\x52\x51\x38\x72\xb2\x1b\x00\x85\xee\x6c\x9a\x5e\x55\x15\xc1\x99\x2d\x13\x4c\x62\xed\xc0\xe1\xd5\x65\x65\xab\x0f\x0f\x70\x28\xce\x68\x2b\x48\x89\x40\x48\x1d\x69\x88\x44\x9a\xf0\x78\x6d\x28\xc2\xee\xa1\xbd\x83\xe2\x4b\x5c\x7a\xa9\x2d\x26\xc6\x56\x9a\xee\xe7\x1a\xc3\xc5\x7c\xe4\xe9\x59\x53\x92\xb5\x7e\xf3\xfa\xac\xac\xb5\x9b\xae\xca\xdd\xf4\xea\xed\xd3\x4f\x5f\xd6\x96\x39\xbe\x33\xe4\x3e\x21\x96\xd6\xdc\xad\xf4\x96\xab\x10\x07\x9e\x0c\x8c\x05\x13\x22\x98\x93\x0f\xc4\x38\x69\x9f\x14\x56\xfa\xd3\x32\x1a\x9b\x54\x08\x63\x96\x3a\x36\x99\x34\xdb\xad\x69\x76\xbd\x36\x3a\x20\x7e\xca\xa0\x31\x69\x04\xbd\xd3\xed\x2e\x74\x5b\xfd\x0d\x12\x14\xbb\x43\x2e\xe1\xcf\x8e\xe9\x0b\xad\xb6\x39\xe9\xcd\xab\xa6\x36\x16\x21\x03\x8e\xd3\x27\x26\x71\x38\x25\x19\x45\x85\xc7\x69\xc3\x10\x2e\xea\xdd\x50\x3d\x67\x47\x46\x6a\x6f\x59\xc3\xca\xe6\x74\x34\x16\x9b\x9a\x60\xd1\x87\x86\xe8\x2c\x09\xf6\x24\x35\xc6\xd3\x57\x3c\xbd\xa3\xb9\x08\xe3\x8b\x4e\x77\x03\x7e\xec\x8e\x85\xaf\x2e\xcc\xeb\x5f\x34\xe8\xbc\xf9\xcd\x1b\x6b\x70\x59\x4d\x69\x75\xdd\x96\xc7\x06\xd1\xed\xb1\x59\x2d\x43\xc5\xa3\xee\xd9\x95\x16\xa3\x5d\x3e\x07\xac\xf0\x9d\x21\xf7\xf2\x63\xe0\x86\x22\xaf\x2b\x8e\xd6\x6b\x00\x1e\x23\xcc\xd3\x31\x04\x82\x80\x5e\x03\x9f\xe3\x4f\xe3\xe7\x4f\x4e\x64\xd3\xe5\x98\xd2\x4c\x69\x74\xff\x64\xab\x46\x89\x71\x75\x4e\xe4\x5e\xd1\x4d\x34\x5d\xaf\xa7\x4d\xcf\xc6\x36\xf4\x6b\x9d\xd5\x69\x3c\xba\x7a\xb0\xbf\x6b\xee\x1b\x6f\x2c\x7f\x6c\x5d\xc5\x86\xe5\xe5\x1d\xee\x58\x14\x1f\x57\x5c\xce\xa3\x94\x64\x14\x1d\xef\xc0\xb8\x76\xe4\xce\xf6\x86\x91\xb6\x1c\x0e\x6d\xc9\x6b\xf3\x18\x3f\x5d\xba\x64\x56\xff\xdf\xdd\x8b\xf7\x0e\xac\x7b\x30\x2f\xba\x7c\xc6\x80\x67\x59\xa2\x1d\x1f\x95\x9a\xba\xe0\x95\xc1\x5b\xde\xb8\xa9\x1a\x9b\x1a\x56\x4f\x97\xda\xd4\xe4\x3b\x4d\xef\x07\x16\x40\xa9\xd7\xc3\x21\x8e\xa4\xd0\x6a\xa5\x80\x78\xc2\x23\x7a\xf2\xca\x01\xcb\x25\x42\x5b\x13\xab\xa4\x7d\x4e\xc6\xcd\xa6\x34\x93\xc5\xae\x4f\xa0\xed\x9a\xd4\x06\x65\xf8\x68\x43\x6d\xfe\x16\xdb\xa4\x16\xe3\xf3\xb3\xda\xdc\x53\xb3\x62\x50\xb2\x3d\xde\x88\xa5\x91\x8b\x0c\x8f\x8b\x09\x43\xd8\xd5\xbd\xa6\xf2\x67\x4f\x84\x56\x94\xbe\x85\x77\x75\xb7\xb4\x74\xff\x4d\xf8\x64\xe9\x03\xab\x4a\xf0\x77\x6d\x2b\xd2\xc2\xb3\x4a\x1a\xd2\x73\xed\x6e\x7c\xd3\x86\xd6\xfb\x5a\x6d\xd3\xa6\xb7\xa5\xaf\x7a\x70\x45\x21\xb7\x6a\x7b\x93\xb3\xf0\x4f\x15\x6e\x4f\xd3\xe9\xcc\xf6\x0d\xd2\xdc\x7c\x48\x1c\x26\x2f\xf2\x63\xe0\x00\x0f\x78\xbd\x65\x3a\x44\x20\x85\xda\x0b\xf9\x79\x98\xab\x07\x10\x90\xb4\x6f\x06\x06\x73\xf3\xfc\x44\x0a\x19\x4f\x11\x38\x20\x23\xd5\x64\xb2\x9a\x54\x82\xc1\xa1\xb5\xf9\x33\xa1\x98\x6c\x01\x99\x72\x68\xc8\xb2\x8e\x55\x31\xb2\x9a\x91\xdf\xe9\xe1\x32\x9d\xc7\x9f\x5d\xb7\x21\xb9\xb4\xb7\x42\xfc\x13\x8f\xf2\x36\xfd\x66\x47\xc3\xba\x91\xea\x9e\xa2\x38\x41\x93\xa8\x17\x3f\x34\xc4\x4d\xe1\xd6\xaf\xc4\x6f\x1b\xdd\x4d\x8e\xdd\x5a\x53\x6c\x04\xe2\x71\xfd\x87\x4b\x16\xe5\xb6\x79\x52\x3e\x2c\x1e\x3e\x34\xb0\xfa\x90\x33\xa6\xba\x7b\x79\xd9\x32\x43\xb9\xb7\x38\x5a\xaf\xad\x6b\xae\xd6\x0c\x2d\xdf\x30\xfe\x47\xcf\x55\x2b\x17\xda\x9a\xd3\x1a\xdb\x7b\x0a\xcf\x02\x86\x67\xc5\xf9\xe4\x0e\x52\x4c\xdb\x58\xea\xf5\xe8\x68\xa6\xe6\x2b\xb7\x2f\xf6\x8a\xed\x4b\xf9\x3f\x6c\xdf\xf7\xe8\xdb\xb9\x73\x0c\xd9\x75\xd9\xe2\x7b\x02\xca\x5a\xfa\xe8\x55\x95\xed\x6d\x79\xd5\xf6\x68\x2e\x24\x2a\x5c\xfc\x70\xca\x14\x01\xcd\xed\xc1\x7b\x03\xda\x87\x76\xbc\x50\x57\x9a\x5c\x60\xd3\xff\x2d\xb7\xfb\x9a\xe9\x6d\xeb\x33\x34\xae\xaa\xe9\x99\x2d\x21\xb6\xcc\x8c\xd0\x88\xd0\xec\xbc\xac\x90\xa6\x96\xe9\xe2\xf5\x41\xed\x43\x10\xe9\x3b\x43\x6b\x9a\xd9\xe1\x36\xff\x8d\x77\x5e\x52\x2d\xf0\xca\x89\x4c\x99\xb4\xda\x54\x8f\xec\x57\x94\xed\x5c\xfb\x8f\xa1\x49\x52\x9e\xfe\x29\xf4\xb0\x55\x99\xe0\xb5\x4d\xc6\xf5\x97\x9e\x34\xd0\xf5\x2b\x63\x4a\xb6\x9e\x4d\x67\xd6\x99\x2c\x7e\xb7\x65\x8c\x9c\xb9\x50\x4e\x73\xad\xcc\x7a\xe7\xc4\xca\xc5\xd9\x03\x99\x7d\x7b\x57\x9a\x74\x16\xb7\x29\x0a\xdf\x85\x75\x7a\x93\x99\xc7\x86\x98\xaf\xa3\x8d\x58\x92\x50\x55\xb5\x2b\x5a\xb3\x38\xf2\x8a\xe8\xfe\x8d\xf8\xc1\xaf\xe7\x7e\x52\xb6\xfd\xb5\xdb\xf0\xd8\xc5\xb5\x96\xbc\xe0\x85\x6a\x6e\xbe\x6a\x16\x20\x48\xf7\x9d\x21\x63\xa4\x98\xf5\x47\x04\xeb\x0f\x0e\x38\x1e\x14\xe6\x63\x27\xf5\x87\x81\xf5\xc7\xe5\x68\x13\x49\xa1\xe8\x9d\x65\xe5\x05\xa9\x3f\xae\x88\xfb\x1f\xfb\x83\xc5\xf1\x17\x16\x5e\xde\x1d\x01\x82\x0c\x47\xcf\xb3\xb4\x5d\x37\xd7\x49\x74\x71\x66\x7d\x08\x1e\x45\x31\x31\x46\x2b\x5d\xfa\x51\x09\x19\x18\x17\xcf\xdb\x52\xdb\xb0\xba\x3d\x9b\x70\xb3\xfe\x71\xcf\x99\x7d\xd3\xbe\x44\x8e\xde\x5d\x8b\xd0\x6b\x97\xc6\xb3\xca\xf0\x9d\xdb\xe7\x3d\x3b\xb7\xf7\xd7\x7d\xdb\x7e\xbd\xa5\x02\x5b\xda\xb6\x76\x03\x82\x06\xdf\x19\xf2\x33\x7a\x27\x69\x88\x35\xd4\x0c\x88\x17\x78\x24\x50\xe3\x0c\x24\xe3\x4c\xc5\x4e\x06\x24\x79\xe5\xcf\x8a\xe0\xb5\xfd\x18\x16\x4d\x75\x30\x21\xda\xba\xbd\x51\xac\x72\xb4\x46\xa3\xd1\xd9\x74\x66\x96\x2e\xe4\x4a\x0d\xd3\xf8\x8f\x0a\xb8\x3c\x14\x39\x25\x25\x8d\x0a\x65\xad\x24\x94\x4b\xfa\xae\xa9\xab\x5d\x3e\x2d\x8b\x9c\x90\x0c\xa1\x13\xfc\xd8\xc5\x65\xa6\x0c\xfc\xb0\x3c\xb8\x74\xbb\xb1\x75\xdc\x38\x0f\x45\x52\x53\xe8\x56\xbc\x5a\x92\xc7\x35\xbe\x33\x64\x27\xbd\xbf\xd4\xc7\xda\x95\x0a\x02\xe6\xb0\x40\x8b\x9c\x48\xe3\xd3\x17\x90\xdb\x43\xe5\x1f\x39\xeb\x8f\x20\xd1\x81\xe3\x79\x55\x0f\xa8\x54\xc9\xaa\xe6\x6e\x6f\x98\x4d\xaf\xd5\x04\xe5\x70\x65\x09\x50\xae\xb8\xf7\x9c\xbf\x5d\x3c\x83\x0c\xb7\x23\x3d\x4a\x49\x32\x24\x60\xa4\x8b\x41\x11\x5a\x23\xc6\x85\xb3\xd7\x55\x36\x6f\xec\xc8\x27\xe8\x31\x71\x06\x29\x16\x67\xa1\xa3\x3f\x3a\x4e\xfd\xbe\x73\xe4\x3e\xfe\x45\x70\xb0\x1b\x42\x18\x45\x22\x82\x71\x23\x10\xcc\x61\xc2\xad\xf4\xcf\x2f\xf9\x42\x05\xcf\x0c\x68\x04\x69\xe6\xe4\x44\xad\x64\x1e\x38\x90\x43\x90\x0d\x67\x57\x50\xa1\x7a\xbf\xff\x35\x90\x6d\xbc\x67\xf3\x9b\x7b\xda\xda\xf6\xbc\xb9\x79\xcd\x58\x75\x45\xe5\xae\xae\xaa\xc1\x06\xab\xb5\x61\xb0\x6a\xdd\x26\x0e\x27\x19\x50\x74\x8c\x0d\xe3\x8e\xdb\x7e\xa5\x9b\x7b\xff\xe9\xeb\x91\x70\xfd\xe9\xfb\xe7\x66\x65\xfe\xc1\x64\x2e\x5b\x3c\x3a\x4d\xfc\xbe\xed\xd6\x25\x65\x78\xe3\xd2\x8e\xb1\x8e\x8e\xc7\xbb\xd6\x3e\xb6\xaa\x88\xd5\x1a\x3f\x47\x6e\xa2\xf9\x0e\x4a\xbd\x1e\x23\x22\x5c\x0a\x42\x84\x66\x8c\x97\xf6\xfb\x95\x13\xc7\x9d\x7c\x50\xa6\x83\xb4\xd4\xa4\x84\xe8\xa8\x10\x35\x64\xa1\x2c\x89\x7f\x4b\x39\x57\x58\xc0\x92\xf7\xcb\x2e\x32\xd7\x65\x8d\xa1\xe6\xcd\x8b\x79\x55\xe9\x1a\xc4\x47\xa0\xc8\xb0\x28\x5c\xb7\xe1\xbe\xf9\x37\xff\x79\x77\x73\xe3\xe8\x9b\xd7\xaf\xb8\xd7\x99\xed\x1e\x6d\x9f\xba\xb8\xda\x68\x6a\x58\xf9\x3a\x8a\x49\x73\x9a\xb2\x17\xe4\xe4\x2c\xc8\xee\xdd\x39\x27\xab\xeb\x8e\x17\x96\x65\x2c\x7b\x61\x4f\x97\xd9\xf8\xd7\xc4\xe4\xa2\xee\x95\x85\x19\x9e\x95\xb3\x8b\xfc\xf3\xe9\x21\x7a\xa6\x98\x41\xd3\x0b\x4a\xbb\xf9\x4a\xe6\xaa\x64\x66\x8c\x9c\x4d\x31\x99\x6f\xb6\x51\x6f\x96\x5f\xe9\xd7\xfd\xc8\xa4\xb8\x56\xfc\x0d\x77\x44\x3c\x86\x8a\xf2\xaa\x6a\x39\x6c\x4a\x42\xd1\xd2\xfa\xad\x1d\xb9\xab\xbd\x73\x67\xbf\x87\x90\x57\xfe\xfe\xf7\x4b\x47\xa7\xf6\x2a\x42\x8c\xce\xf3\xcc\xf9\x77\x2e\x61\x3a\x54\x95\xef\x0c\xad\xe5\x61\xba\x22\x3f\xf4\x5c\xd1\x1f\x68\x6c\xd7\x59\x82\xf9\x09\x18\x6e\x59\xbb\x90\x18\xea\x15\x3f\xe5\x6e\x16\x1f\x88\x4a\xce\x4a\xac\xa8\xa6\x6a\x60\x04\x53\x26\x6a\x56\xee\x69\xeb\xde\x35\x50\xcc\x73\x5d\xa7\x4f\x8b\x09\x69\x65\x99\x71\x78\x64\xb0\xfe\xce\x7a\xf3\xd4\xc6\xc6\x34\x49\x77\xc0\x99\xf3\xee\x5c\xec\xe7\xeb\x1c\x19\xe0\x5f\x84\x72\x96\x57\x8d\x70\xa8\x51\xa9\x2e\xe4\x0f\x48\xe5\x80\x08\x1c\x51\xe2\x62\x92\x9a\xfc\x19\xd6\x92\x55\xcd\xd6\x18\xab\x29\x5d\xce\xfd\xab\x2d\x70\x17\xb2\x82\x13\x57\x2a\x2d\x66\x0e\x2e\x46\x46\xa4\xd9\x50\x75\xcd\x55\xae\x99\xc5\xc6\xe6\x5b\x5e\xdc\xb0\x60\xec\xba\x56\xf1\xef\x46\x77\xa3\xa3\x6a\x5e\x79\x72\xbc\x67\x76\xc5\x8b\x2f\x6e\xb9\xce\x52\x37\x50\x95\x37\xa3\xd8\x84\xe2\xec\xf5\x7d\x2b\x37\x96\x6d\x78\x6d\xcf\x0c\xf4\xd3\xad\x47\x33\x62\xab\xda\x7a\xf2\x07\xf6\x2e\x76\x7b\x96\xfe\x74\x7e\x46\x4d\x6e\xbc\xb1\xa0\xde\x96\xdd\xe4\x4e\xfa\xeb\xd0\xda\xcc\xa6\x22\xa3\xd1\xdd\x90\xd1\xb8\x61\x5e\x6d\xa6\xde\x33\x7c\xc8\xe7\x83\x52\xdc\x4d\xf6\x72\xa5\x50\x8f\x6e\xf4\x6d\x02\x98\xe1\xf4\xd2\x7a\xac\x50\x84\xbb\xc9\x5d\xf2\xef\xeb\x03\x7e\x3f\x20\xa6\x92\x6c\x00\x6c\x83\x4a\x08\x15\x2f\x22\x01\x2a\x43\x01\x42\x9e\x00\x74\x4a\xa4\x26\x16\x20\x74\x8e\xfb\x86\x4b\x15\x1c\x10\x06\x51\xde\x70\x81\x67\xd5\xaf\x17\xc7\x23\xb5\x8e\x06\xf5\x14\x1a\x04\x41\xa7\x33\xa3\x73\x89\xf9\x55\xb6\x6b\xac\xf9\x1f\x90\x23\xce\xe5\x43\x3d\xe6\x69\x95\x77\xf4\x3d\x21\xbd\xff\x16\xf7\x09\xa7\x16\x62\x21\x0c\x8c\xc7\xa5\xd7\xeb\xe9\x56\x7e\x02\x68\x95\xf3\x84\x63\xb4\xca\xf2\x31\x46\xce\x5f\xf5\xc8\xe5\xe4\xd4\x12\xb9\xad\xd6\xbc\x0f\xf8\xa5\xce\xe5\x83\xbd\xe6\x69\x95\x77\xf6\x3d\x26\x8d\x25\xfa\xbd\xf8\x14\x37\x05\x85\x4f\xf0\x53\xaf\xf0\x63\x09\x20\x10\x96\x98\x57\x6d\xbd\xde\x9a\x75\xa6\xd2\xb9\x4c\x62\xa7\x6a\x77\xdf\xeb\x52\x9b\xd1\xf3\xdc\x27\xf8\x07\x21\x16\xea\xd1\x10\x79\x15\xe0\x59\x60\x7d\x81\xea\xb8\x6f\xb8\xb7\x04\x07\xb6\xa1\x41\x9f\x34\x01\x54\x68\x10\xe8\xb1\x99\xcf\x87\x32\xb9\x4f\xb8\x97\x85\x58\x6c\x43\x43\xbe\xd9\x14\x36\x04\xcf\xd1\x5a\xcd\x18\x55\x8a\xbf\xe4\x5e\x84\x73\x10\x06\x06\x88\xf1\x6a\xa2\x35\x02\x4f\xa0\x1e\x21\x80\xc5\x09\xf1\x58\xad\x0f\xe4\x8a\x9f\xf8\x13\x5f\x1d\x9f\xe3\xb5\xdd\x6c\xcd\x3a\x83\xea\x13\xf3\xaa\x6c\x37\x5b\x9d\x67\x2a\x9c\xcb\x86\x7a\x53\xa7\x55\xee\xe9\x7b\xec\xd1\x89\x3f\x01\xc1\x12\xb9\x86\xab\x9c\x2b\x8c\x94\x36\xb1\x84\x69\x3c\xe2\xb8\x0a\x69\x23\x28\x53\x2a\xb7\xaa\xe3\x95\x9c\x69\xf4\x78\xbe\x41\xbc\x47\x3c\x23\x1e\x44\x7d\xc8\x80\x06\xb8\xf6\x4b\x8f\x73\xed\x9f\xa1\x75\xe2\x4e\x56\x73\x5c\x9c\x4f\xf3\xc2\x6a\xa1\xc0\x9b\x07\x82\x50\x4a\x63\xb8\xf9\x6e\x15\xe2\xf9\x8a\xa6\x10\xc9\x5a\xa5\xa5\xbf\xcb\x9a\x58\xc1\xee\x80\x4b\xc8\xa1\xea\x24\x39\xc1\x9b\x4b\xf9\x98\x4e\xfa\x60\x2f\xfd\xe0\x21\x34\x5f\xfa\x4f\xfa\x28\xcd\x0d\x3e\x1f\x1d\xfa\x00\x6f\x38\x2d\x7d\xf9\xf4\xf8\x0e\x69\x1c\xf7\xa0\xef\xb9\x21\xee\x02\xe8\xae\x54\x2b\xda\x9e\xc6\x8a\xcb\x4f\xba\xa8\xb6\xc7\x54\xda\xe1\x2e\xec\x2c\x4b\x49\x29\xeb\x74\xbb\x3b\x4b\x4d\x5c\x74\xde\xcc\xd2\xd4\xd4\xd2\x99\x79\xc5\x79\xed\xa5\x26\x53\x69\x7b\x1e\x9b\xdb\xff\xf2\x9d\x27\x75\xa8\x1b\xdb\x20\xca\x37\x95\x86\x36\x46\xa1\x64\x36\x9e\xb0\xc8\x77\x8e\x47\xa8\x4b\x82\x89\xbf\xf6\xf9\xc0\x0a\x51\xcd\x3e\x24\x61\xbc\xe7\xf3\x41\x82\x34\xff\x7d\xbe\x31\xa7\x83\x3a\x1d\x7c\x7e\xa7\x83\x8f\xae\x08\x00\x01\x9a\x7c\xe7\xc9\x09\xfe\x05\x30\x41\x21\x94\x40\x1b\x0c\xc2\x66\xb8\xc1\x1b\x55\x52\x8c\x43\xc3\x3c\x6a\xac\x82\x38\x84\x05\xff\xbd\x24\x07\x42\x10\x82\x54\x02\xa8\xfa\x21\x2c\x8c\x5e\xb9\xa8\x91\x84\x4b\xe8\x1c\x08\x0d\xad\xa0\x65\x28\x58\xdc\x4d\xad\xa4\xc3\xd8\x21\x14\x78\x08\xe5\xfb\xaf\xf4\x56\x10\x6e\xb7\x37\x7a\xc3\xfa\xe1\x65\xfd\x7d\x76\x7b\x96\xdd\x9e\x66\x4f\x4b\x9b\xa2\x4e\x92\xfb\x4c\xef\x0f\xb9\xb9\xac\x8c\x05\x37\xa9\x47\xb5\x36\x64\xe0\x26\xdd\xe4\xe0\x27\x67\x79\x9a\xfc\x4b\x85\xb9\x7a\x81\xb7\xb8\x3b\x25\x65\xb6\xc7\xdb\x5f\x9d\x9a\x5a\xb5\xc0\x5b\x3c\x3b\x25\xa5\xdb\x53\xd9\x5f\x6d\xfe\xc6\xe4\xed\x2d\xf3\xf6\xd7\xa4\x9a\xab\x17\x54\x94\xcd\xad\x34\x6d\xe9\xe3\x5c\x7d\x07\x42\xb5\xc9\x31\xf1\xc9\x91\x44\x1d\x9d\xac\xd3\x27\x47\xab\xc4\x7b\xa4\x5f\xe2\x92\xa3\x26\x7e\xf1\xa9\xb5\xc9\x7a\x5d\x52\xb4\x5a\xad\x65\xbf\x20\xbb\x67\xa0\x25\x33\x2d\x25\x25\x2d\xb3\x65\xc0\x63\xf5\x0c\x34\x67\x9a\x53\x52\xcc\x99\xcd\x03\x1e\xee\xa1\xe2\x81\xe6\xac\xac\xe6\x81\xe2\x34\xcf\xa2\x96\xcc\xcc\x96\x45\x9e\xf1\x99\x73\x71\xc7\xdc\x4b\x6f\x19\x1c\x26\xad\xd6\x94\x11\x6b\x35\x64\xd0\x3f\x0c\xd6\x49\xbf\x70\x73\xd9\x4f\x0e\x43\x9a\xc1\x61\x8a\x89\x31\x39\x58\xce\x1a\x74\x23\x5c\xc3\x75\x72\x07\x41\x80\x64\x6f\x02\x87\xe4\x28\x60\xa0\x21\xb3\xd0\x2d\xad\x9c\x16\xad\x86\xce\x50\xad\x19\xb9\x90\x13\x2f\xfa\x8a\xa9\x81\x38\x52\x5c\x85\x6e\xd0\xa2\x1b\x18\x9d\x6d\xb0\x95\x6b\xe3\x0e\x80\x00\x56\xaf\x99\x47\x58\x22\x84\x11\xa5\x84\x91\x42\x8a\x4e\x29\x41\xcb\x49\x22\x10\xe9\x90\x59\xcb\x61\x37\x4a\x10\x3f\x3d\xf1\xe5\x97\xdc\x01\x71\xa3\x56\xdc\x88\x76\xa1\xdb\x80\xfa\xef\x3e\xe6\xee\x21\xbf\x97\x94\xdb\x63\x18\x50\xae\xc3\x62\x43\x06\xb4\x77\x3b\xf2\x6d\xff\xb8\x9a\x7b\xa4\x5a\x92\x47\xe1\x38\x97\xc4\xf3\x2f\x42\x28\x44\x40\xbb\x37\x34\x1c\x01\x51\x23\xa4\x38\x12\x75\x3c\xf2\x47\xfd\xfb\x4f\xfb\x4b\x31\x0d\xc7\x26\x80\xc9\xac\x00\x28\x21\xb8\x1b\x30\xc1\x2d\xdd\xde\x10\x96\xea\x94\x0a\x17\xa7\xce\xac\x33\xbb\x4c\x36\xe4\x44\x26\x8d\x8a\xbb\x61\xcf\x9e\x9f\x89\xc5\x04\xbd\x78\x5c\x6c\x40\x21\xd1\xdc\xb2\xeb\x4f\x9e\xec\xc7\x9b\xc6\x1f\x44\x9b\xd2\x68\x1f\x38\xf0\x28\xf7\x47\xfe\x49\x30\xc0\xd2\xa6\x31\xab\xbf\xa6\x64\x0c\x4d\xe9\x2e\xd7\x94\x64\x0f\xdd\x0c\x1c\x3f\x51\x53\xb2\xb4\x89\x95\x97\x61\x0f\x92\x2a\x6c\xf0\x6f\xcf\x0c\xc4\xf2\x71\x96\xfa\x4b\x4a\x1a\xc0\xa0\xb5\xe8\xcc\x82\x3a\xb0\xa4\xe4\x44\xe2\x2c\xb3\x06\xbd\x99\x62\x5e\xd9\x54\xd6\x57\x93\xf6\x7b\x8d\x29\xd7\xe8\xac\xd2\xfc\x81\x7f\x6c\x63\x45\x83\xb9\x69\x4d\x9b\x28\xa0\xa7\x0b\xa6\x66\xc6\x64\x5a\xc7\xdf\xe3\x52\x40\xc9\xa5\xbf\x8b\x7f\x01\x9c\xd0\xe4\x6d\xf0\x67\xfd\x08\x43\xaa\x29\x48\xe0\x55\x42\x5f\x38\xe2\x09\x4b\x0f\xeb\x4f\xf9\x51\x43\xd9\xa2\x11\x62\x65\xb8\xd9\x99\x9f\x97\x9b\x93\x6d\xb7\x99\x53\x2d\x1a\x8d\x46\xaf\xd1\xc4\x44\x45\x48\x4b\xd4\x64\x88\x11\x54\x26\x9d\xc9\xe5\x2c\xe7\x5c\x36\xb3\xcb\x49\xff\x9b\xa4\x51\x18\x4c\x3a\x93\xc1\xc4\x35\x8b\xa7\x71\x52\x2a\x3e\x70\xf1\xa3\xee\xd8\x24\x0d\x8f\xef\x3b\xc0\xed\xbd\x93\x54\x5d\xf5\xe0\xc2\xa5\x0f\xac\x2a\x11\xbf\x4e\xca\xaf\x4a\x4b\x2b\xcf\x8a\xe3\x51\xb6\xf8\x2e\x8f\xcc\xe8\x6d\x6b\xf9\x80\xfd\xf4\x69\xc1\xe6\xae\x48\x76\xde\xbd\xfa\xee\xbb\x06\xef\x5b\x51\x52\xb2\xec\xa7\xbd\xce\xfa\x4c\x6d\x42\xc1\x34\xe7\x5d\x77\xaf\x66\x67\xaf\x9b\x7c\xe7\x64\x3b\xdc\x0d\xef\x52\x8b\xe4\x44\x18\xbd\xfb\x9a\x70\x22\x0c\xf1\x08\xf9\x2b\x25\xe7\x83\x5a\x08\x13\xd4\x61\x2b\x21\x14\x08\x0a\x25\x92\x48\xa2\x1e\x23\x69\x18\x00\x54\xdd\x21\x48\xa5\xa2\x1b\x11\xee\xe1\x65\x49\xc6\x0c\x9c\xff\xb7\x6f\x36\x48\x73\xd1\xfd\x5f\xbe\xc4\xf3\x65\xec\x4d\xa0\x2f\x76\x77\x7b\xa3\xdd\x05\x99\x19\xf6\x74\x4d\x8c\x49\x93\xa6\xb3\x58\xa2\xa8\x44\xbc\x42\xf1\xc0\x08\x8e\xa6\x4f\xa0\x67\x74\x34\x0e\x0c\x05\xc4\x5c\x1e\x7a\x3c\x32\x3e\x55\x1b\x93\x11\x96\xa0\xef\x70\x38\xbb\xab\x2c\x33\x43\x5c\xdd\x1b\x9a\x0b\x5f\xf2\xb5\x6c\xec\x72\xa9\x67\xbe\xf4\xf8\xa5\xfb\x0a\xed\xc5\x69\x1a\x4d\x5a\xb1\xbd\x90\x3b\x32\xbe\x23\xab\x24\x35\x22\x94\xdc\x1c\x63\x30\xb7\x6c\xec\xc4\x57\xb5\xdf\xb8\xc0\x3d\xfe\x06\x3f\x56\xd8\xbf\xb3\x1d\x11\xf1\x92\xf8\xd3\xbc\x69\x83\xee\xc2\xa1\xb6\x3c\x40\xb0\xc1\x77\x9e\xcc\xa6\xb5\xaa\xa6\x7b\x5b\x4c\x48\xad\x4a\x45\x82\x3a\x04\x21\x08\x45\x18\x91\xc6\x10\x24\x84\x22\x49\x23\xed\x0b\x9b\x48\x78\xa4\x56\x53\x4d\xb4\x46\x29\x11\x57\x8b\x9b\xb3\x32\x1d\x19\xf6\x74\x96\x48\xc6\x92\xc6\x5a\x4a\x4f\x1b\x95\x76\x4a\xb3\xca\x45\x2b\x30\x04\x5c\x42\x36\xe9\x4c\x3a\x13\xb7\x47\x7c\x98\xcb\x69\x5b\x59\xeb\xea\xcf\x4a\x29\xb9\xa6\x6a\xe3\xeb\x77\x75\x92\xa3\x47\x8f\x3e\xa6\xee\xb9\xfb\xcd\x4d\x65\x6b\x4b\x52\x1c\x0b\xf3\x77\x1e\x99\x82\x66\x89\x0f\xa3\x4e\xac\xee\xdc\xd0\x68\x8a\xd4\x7c\x1c\x11\x55\xb3\xe3\xd5\x1b\xf6\x6c\xd9\x7d\xdd\x4b\x3b\x6a\x34\x11\x9f\x44\x44\xff\xe4\xf0\xee\x2d\x40\xc0\xe5\x3b\x4f\x0e\x50\x3b\xb0\x12\x3a\x61\x0e\x84\x7b\x43\x67\x77\xb5\xd5\x95\xe4\x46\x12\x92\x7b\x85\x2b\xf3\xe6\x49\xf7\x36\x27\xdf\xb1\x75\x4e\xde\x94\x6c\xc8\x80\x67\x9b\x6b\x07\xaa\xab\x07\xeb\xd2\xd2\x6a\x07\xab\x6a\x06\x6b\xcd\x4f\x87\xe9\x4c\x7a\x7d\x8a\x3e\x2c\x4c\x6f\x32\xe8\x53\x74\xa1\x7f\x95\x30\x24\x88\xb9\x66\xb0\xba\x7a\xb0\x36\xed\xc9\xf0\xd8\x94\x98\xf8\x54\xad\x3a\x4c\x9f\x4a\x31\xc5\x1b\x25\x89\x49\xd2\x5d\xf3\xa6\x3a\x72\xdb\x96\x97\xb5\x94\x2f\x6f\xcf\x75\x4c\xed\x73\x69\x2d\xc9\xd1\x06\xab\x33\xa1\x25\x21\xcf\x6a\xd0\x26\xa5\x45\x8f\x97\x95\x0d\xb7\xe5\xe6\xb6\x0d\x4b\x38\xd2\x1f\xcb\xcb\x13\xf2\xad\x06\x83\x35\x3f\xa1\xc5\xff\xc7\xb5\x4c\xf2\x4a\xeb\xe9\x90\xef\x1c\x49\xe7\x6f\x87\x34\xc8\x01\xf5\x09\x87\x25\x1a\x70\x2e\xb3\x6e\x5d\x82\x60\x76\xe5\xbb\x0b\x35\x41\x55\xd1\xd9\x79\x03\x8d\xa7\xa1\x25\xc5\xb8\x81\xeb\x5f\xdc\xe6\xcd\xea\xcd\x73\xf6\x3a\xdc\x0b\x6f\xed\x6e\xd8\xd8\x9d\x57\xb4\xec\xe0\xa0\xc1\xdd\x5d\xf5\x59\xf7\xcc\x8c\xe4\x5c\x97\xce\xbb\xfe\xc1\x81\x70\x95\xea\x29\x41\x85\x7a\x17\x3f\x30\x52\x9a\xd3\xbd\x75\x7a\x46\xc9\xce\x9d\x5b\x73\x73\x8a\xe7\x54\x98\xd0\x3f\x4b\x0f\x74\x65\x3a\x8b\x67\x74\x01\xa1\x71\x06\x57\xf1\xcf\x42\x08\x18\x21\x0b\xf2\xa4\x71\xc9\xcd\xb6\xa7\xc6\x45\xf0\x40\x72\x1d\x26\x9a\x40\xd8\xa9\xd5\x38\x0d\x93\x7a\xbf\x90\xdd\x60\x92\xf9\xd2\x9a\x5c\x26\x7c\xfe\x99\xff\x7d\xe6\x99\xff\x7d\xa6\x4d\x9f\x5e\x92\x66\x29\x49\xd7\xeb\xd3\x8b\x2d\x96\x62\xbb\x7e\x49\x4c\x4a\x8a\x36\x26\xc5\x18\xf3\xa6\xf8\x07\x94\xc3\xad\xb8\x74\x3b\x3f\x76\xe9\x0e\x6e\xe9\x43\xe9\x35\x79\x09\x09\x79\x35\xe9\x7f\x4e\xaf\x96\xfe\xa8\x4e\x0f\xcd\xca\xcd\xcd\xfa\x4d\x66\x5e\x5e\xe6\xf8\x87\x0b\x68\x5e\x77\xee\x27\x64\x25\xad\xfb\x1f\x03\xea\x13\xda\x48\x01\xe1\x5c\x07\xe2\x64\xbe\xb4\x4e\x8d\x99\xe5\xb9\x71\x99\xb8\x6f\x56\xd7\xad\xbe\xfa\xee\xab\xae\xb9\xfd\x6a\x51\x7b\xdd\x8d\x37\xa2\x3d\xe4\x3b\x71\x2f\x2d\x3a\x93\x2c\xde\x82\xd6\x8c\x9f\x46\x27\xc4\x56\xf4\xf3\xc5\x74\x1c\xf6\xf8\xce\xcb\x75\xe1\xd3\x41\x7d\x22\x2d\x25\x0a\xe3\x5c\x87\x85\xae\x0a\xe2\x2a\x28\x27\xac\xad\x26\x1a\x87\xec\x2e\x44\x2c\x9b\x9c\xd5\x4a\xa2\x67\x3d\xd9\xdf\xb0\x63\xcd\xfc\x1a\x8b\x7d\x6a\xff\xda\x6b\xaa\x06\x8f\xdf\xd0\x3a\x0e\x85\xb7\xb4\xce\xfd\x65\xb7\x78\x5b\xd3\xa8\x07\x27\xba\x6e\x9a\xeb\x2a\x4b\x6f\x1c\xd8\xbc\xab\xa5\x65\xd7\xe6\x81\xc6\xf4\xf6\xdb\x7e\xbb\x36\x47\x3c\xe5\x2c\x29\xa9\xe0\x32\x2a\x3d\xe2\x39\x94\x5c\x50\xe6\xf3\x41\x9f\xef\x5b\xf2\x09\xff\x28\xe4\xa0\xe7\x7c\x26\xfc\x99\xe7\x1e\xb0\xa2\x75\x56\x40\x91\xe8\x25\x74\x18\xc0\x73\x0f\xb3\xb3\xf0\x67\x92\x56\xe9\xf3\x41\xa2\xef\x5b\xf2\x11\xff\x24\xe4\xa0\xe7\x7d\x51\xf8\x2c\xc3\x37\x7f\x47\xf1\x0f\x52\xfc\x68\x8a\x7f\xd6\xaf\x97\x7e\xc7\xce\xcd\x12\x7c\x5f\x93\x5f\xf3\xa7\x20\x07\xbd\xe8\x0b\xc7\x5f\xb2\xf7\x74\xec\x3b\x9b\x7d\xe3\xca\x7b\x5f\x52\x35\x96\x3b\xe5\x1b\x67\xef\xd5\xfb\xbe\x25\x6f\xf3\x3f\x87\x1c\xf4\x3b\x5f\x39\x3e\xc7\xde\xfb\x81\xbd\xb7\x3b\x80\xbf\x73\x54\xeb\xc5\xb0\xc2\x77\x8e\x2c\xe4\x45\x48\x87\x72\x50\x9f\x70\xda\x93\xa2\xa5\xb1\xca\xd7\x1b\xe4\xec\x54\xb4\xf4\xae\xfe\xf2\x2a\xe4\x97\xe5\xd4\xcf\xe6\xf0\xd4\xb6\x5d\xa5\x91\x65\x9d\x2b\x2b\x6d\xe5\x45\x45\xa9\xf6\x84\xf2\xa6\x39\x45\x37\xfe\x69\x77\x4b\xf5\xb6\x5f\x6d\xdc\xf8\xf4\xb6\xea\xf2\x0d\x4f\xec\xa9\xe8\x2a\x8c\x8d\x73\x77\x96\x57\x74\x16\xc6\x86\xa6\x15\x35\x93\x50\x4f\x69\xf7\xed\x03\x45\xc2\x94\x98\xf0\x57\xc2\x13\x74\xe1\xc3\x7f\x14\x5f\xfb\x6d\xc9\xe8\x85\xe3\x83\xd3\x6f\xfd\xcd\x88\x6e\xd9\xa9\x1d\xcd\x1f\xe6\xb4\x2d\x29\xa6\xf9\xf4\x3d\x7d\xd7\x4e\x5d\x66\x70\x66\x24\xd0\x3d\x7c\x9f\x2f\x84\x58\xf8\x31\x50\x81\x70\x4c\x90\x74\x26\xde\x1f\xa8\x6d\x11\xcf\x88\x0f\x88\x9f\x71\x37\x7d\xc7\xbf\xfa\x83\x4b\x78\x90\xed\xf9\x16\xf1\x6b\xf2\x24\x9d\x93\xc2\x31\x35\x87\x72\x1d\x08\x49\x5b\x35\x42\x2e\x93\xce\x84\xb8\x9b\xc4\x58\x2e\xee\xe2\x52\x5c\x31\xfe\x1c\x59\x3e\x1e\x85\xfe\x81\x6b\xc7\x77\x7d\x74\x17\x7e\x0d\xff\xe6\xa7\x1f\x8d\xdf\xc5\x68\xdc\x81\xbb\xb9\x2f\xb9\x52\xe0\xa8\x6d\x73\x99\xe6\xa8\x89\xa2\x9a\xa3\xc9\x65\xe2\xbe\xbc\x74\x84\xeb\xc1\xdd\x1f\xd3\xef\x02\x90\x7e\x7e\x0c\x42\x41\x38\xc6\xd3\xef\x1a\x0a\x91\x13\x99\x39\xb3\xcb\x84\x6d\x91\x7a\x54\xf0\xb1\xd8\x74\xf6\xb9\xbf\xa1\xcd\xc8\xdd\xd8\x41\x86\x7f\x98\x8e\x0d\x1f\x03\x07\x45\xf0\x2d\x79\x85\xfb\x13\xd8\xa1\x02\x66\x41\xe8\xc9\x69\x35\x9e\xec\x38\xc2\x4d\x88\x5d\x5b\x90\x4f\x2a\x19\xcb\xb1\x29\x8a\x10\x56\xe9\x58\x8c\xca\x44\xae\x5b\x97\x5c\x97\x98\xbc\x62\x6b\x1e\x69\xce\x6d\xaf\xf7\xe8\x0d\x9e\xba\xf6\x9c\xe6\xd5\x2d\x56\x6b\xf3\xea\xe6\x9c\x19\x75\x1e\x83\xde\x53\x3f\x23\xb7\x79\x75\xb3\xed\xb5\xb0\xf8\x4c\x53\x5a\x89\x23\x0e\xa1\x38\x47\x89\xd9\x94\x15\x1f\x36\x4e\xc2\xe2\xb3\x52\x53\xd9\x6f\x19\x25\x69\xd2\x6f\xb8\xbd\xe5\x9a\x1e\x67\x8a\xbb\xc1\x66\x6b\x70\xa7\x38\x7b\xae\x69\x49\x6b\xd9\xd6\xeb\x34\x16\xd4\x58\xad\x35\x05\x46\x67\xef\xb6\x96\x54\x8f\x5d\xef\x28\x74\xaa\xa3\x42\x0a\x4b\xb3\x75\xe9\x45\x69\x69\x45\xe9\xba\xec\xd2\xc2\x90\x28\xb5\xb3\xd0\xa1\xb7\x7b\x52\x01\xc1\x67\x62\x13\x77\x41\xc8\x82\x14\x10\x8e\xc5\x10\x69\x3c\x2f\x8b\x7a\x08\x74\xbd\x09\x3a\x0d\xfe\x94\x06\x3f\x94\x59\xc2\x62\xca\xe2\x8a\x8a\xdd\x8b\x6e\xef\xb1\xb7\xa4\xc7\xea\x32\x8d\x8d\xad\xa9\xf3\xef\x1c\x74\xab\x42\xdf\x57\x09\x73\x67\x92\xb7\x7a\x6e\xed\xcb\x9f\x12\xf2\x67\x9e\x6f\x6b\xba\x98\x4d\xe5\xc8\xad\xf0\x25\x99\x4e\xd4\x60\x82\x6a\x50\x9f\xa8\xce\x37\x45\xe1\x5c\x87\xd6\xed\x76\xba\x93\xb1\x21\x78\xaf\xcd\xe6\x54\xa9\x82\x4a\xf5\x6f\x60\x3f\xcd\xdd\x58\x95\x5e\xe1\x71\xa7\x24\x3b\x5d\x25\x96\xaa\x35\xb9\xa1\xb9\xcb\xab\x2c\x25\x6e\x67\x72\x4a\xa1\xa7\x22\xbd\x6a\x6b\x6e\x4c\xee\x88\x1f\xc3\x5d\x62\xa9\xda\x98\x1b\x9a\xbb\xa6\xca\x52\xe2\x72\x26\xa7\xb8\x25\x8c\x8d\xb9\xdc\xea\xda\x16\x14\x16\x93\x10\x15\x19\xa7\x0d\x6d\xa9\xfd\x63\x6d\x4b\xa8\x36\x2e\x32\x2a\x21\x26\x0c\xb5\xd4\xfe\xe5\xdf\xc0\x40\xbe\x1b\xb1\x8d\x34\x92\x36\xd0\x82\x70\x6c\x0a\x96\xe6\x98\x49\x65\x2b\x34\xbb\x4c\x85\x26\x97\xa9\xd0\xa0\x72\xea\x4c\x2a\x13\x69\x1c\x7f\x63\xc6\xa6\xfc\x4f\x50\xef\x72\xd1\x8d\x6b\x3a\x36\x16\xbc\x25\x1e\x5f\x8e\x7e\x89\x92\xf7\x57\xcc\xfd\xf8\xb5\x4f\x0e\x55\xf4\x7d\xf2\x1a\xb3\xa3\x1f\x01\x33\x31\x92\x7f\xc0\x20\x24\x43\x04\x12\xbc\xe0\xb9\x07\xa9\xd0\x8d\x90\x32\xfe\x0a\x93\x3a\x48\x90\xa5\xd5\xf8\x2b\x54\x8c\xf8\x7c\x70\x14\x52\x49\x0e\xf9\x17\x0c\x42\x0a\x84\xa2\x08\xe5\x9d\xf8\xf1\x97\xe5\x77\x22\xfc\xef\xbc\xcc\x0c\x6e\x0c\xd7\x02\x90\x0e\x7e\x0c\x78\x08\x07\xf5\x89\x29\x6a\x4e\xda\x57\x91\x13\x21\x33\x32\x71\x36\x15\xa7\x35\x14\xa2\x0b\xe7\xd0\x3a\xf1\x96\x73\xe2\xcd\xf8\x99\x5f\x19\xe2\x9e\x7e\x4e\xa7\xe7\xc7\xc6\x6d\xe3\x76\xfc\x0e\x7a\xac\xa6\x46\x9c\x21\x4e\xaf\xf6\x4a\xf6\x48\x8c\xaf\x0b\x27\xc1\x0f\x10\x06\xc2\xb1\x50\x5e\xb2\xa1\x02\x9c\x32\x49\x5a\x8b\xc7\xb6\xca\x6a\x79\xe6\x84\x63\x5e\xef\x2c\x53\x73\xc5\xf6\xe6\x06\xd0\x43\x27\x84\x92\x6b\x89\x00\xe1\x90\x08\x19\x50\x0c\x5e\xa8\x83\x66\x68\x87\x39\x30\x0f\xfa\x61\x10\x96\xc2\x0a\x18\x81\x4d\xb0\x15\xb6\xc3\x0e\xb8\x19\x76\xc1\x6e\xc8\xf3\x66\xff\xe4\xb6\x5b\x6f\xd9\x79\xe3\x0d\xd7\x5d\x7b\xcd\x96\xab\x37\xac\x59\xb5\x72\xf9\xb2\xc5\x43\x8b\x16\xf6\xcd\xef\xed\xe9\x9a\x31\xbd\xb5\xa1\xbe\xa6\xb2\xb4\xc4\x53\x60\x35\xc6\x45\x84\x60\x7d\xae\x03\xb1\xcd\x56\xc7\xb6\x5e\x03\x3d\x53\xb5\xc9\x55\x3a\x34\xb6\x18\xc1\x9c\x6a\x75\xd1\xeb\xea\x7a\x1d\xcf\x9e\xcc\xf2\x2e\x6d\x46\x2e\xa7\xce\x29\x19\x14\x2e\xa7\x4e\xfa\xdb\xac\xb3\x48\xff\xeb\x42\xf9\x7a\x5d\x8c\x60\x36\xbb\x38\x09\xc1\x45\x51\x74\xda\xc0\xbf\x25\x6a\x31\x66\x33\x6f\x76\x39\x35\xf2\x7f\x28\xf0\xef\x73\x75\x1e\x4f\x5d\xbd\xc7\x53\x7b\xd0\xe9\x49\x4c\x34\x18\xca\x0b\x07\xbb\xd2\xcd\x69\x76\xbb\xd9\x6c\xc7\x11\xc9\x86\x78\xa3\xb3\x34\x37\xab\x38\xff\xd2\xed\xe5\xcb\xf0\x3b\xcb\xcb\x2e\xbe\xfd\xc8\x32\xae\xfa\x91\x32\xb1\x36\x29\x21\x21\xa9\x2e\xed\xee\xea\xbb\xc7\xc7\x7e\x5a\xcd\xfe\x6f\xd0\x69\x4a\xa9\x74\x8a\x6d\xe5\xf4\x1f\xf7\x79\x19\xfd\x87\x2d\xee\xaa\x2a\x77\xb9\xf4\x3f\xeb\x1d\x0e\x83\x4d\x1d\x92\xaa\x73\xa4\x8b\x7f\x58\x6f\x75\x38\xac\xe5\xd2\xff\xcc\x8a\x4d\x8e\x8d\xcf\xce\xca\xcf\xfa\xfd\xf8\x92\xc7\x57\x54\x54\xac\x78\x9c\x9b\xb7\xdf\xdb\xdb\xeb\xdd\xdf\x2b\xe6\xc5\xeb\x75\xb1\xbd\xe8\x4d\x2f\xfd\x77\xa9\xa6\x82\xfe\xc3\x03\x51\x86\xcc\xf6\x9d\xe2\x83\x37\x21\xfd\x4d\xe2\x83\xf2\x1f\x00\x3c\x44\x8e\xbf\x4d\x7e\xa6\x1e\x01\x0e\xec\x54\x27\x72\x41\xa4\x77\x4a\x41\x7e\x6e\x76\x66\x46\x34\xc1\xc0\xe7\x3a\x42\x38\xbe\xa0\x1c\x17\xb2\x28\x77\x96\x79\x91\xe6\xf1\xd1\xb1\x4a\x31\x3a\x83\x59\xe7\xe4\x9c\x3a\xb3\xf4\x1f\x5e\x80\x5b\xc6\x8f\x8d\x3f\x86\x9f\x14\xa6\x68\xc2\xf4\x59\x69\x06\x4b\xed\x80\xb7\xa8\x6f\xaa\x03\xbd\x8a\xed\xb1\x96\x14\x4d\x6c\x42\x68\x92\x59\xa7\x7e\xe5\x95\x57\x96\x11\x82\x09\x11\xda\x2f\xe5\x5d\xca\xe3\xde\xbc\x18\x67\x33\x26\x45\x19\x0b\x3d\x5e\xbb\x77\x70\xaa\x2d\xb9\x72\x51\x5d\x61\xae\xb7\x20\xde\x99\x63\x0b\x4f\x4b\xb7\xe6\xe7\xce\x79\x64\xbc\x83\x84\x1e\x20\x80\xe1\x94\xef\x0b\x52\x44\xf6\xd3\xbc\x4f\xea\x13\x49\x86\x48\x82\xaf\xa4\x56\x5b\x0a\xa8\xc4\x8b\x71\xe6\xbb\x48\x51\xc5\x9a\xfb\x07\x07\x1f\x58\x5b\xe1\xff\x7f\xf1\xec\xd1\x8e\x19\x47\x1f\x46\x6f\xad\x3d\xbe\xb1\xa2\x62\xe3\xf1\xb5\x9f\xac\xa5\x35\xae\x4e\xac\xd3\x7c\xb3\x69\x83\x38\x7e\xe1\x02\xf3\x59\xd8\x01\xb8\xfb\xb9\x14\x48\x84\x4c\xaf\xdd\x7f\xc7\x1c\x11\x44\x6f\x72\x03\xc2\x1c\xea\xf7\xdf\xe3\x2e\x83\xe6\xd8\xb4\x68\x5b\x14\xaf\x8e\x73\x98\x4c\x2e\xc4\xe6\x6a\xaa\xa0\x33\x33\x19\x4c\x3b\x4c\x65\xe2\xee\x1f\xbf\x13\x19\x3d\x79\x79\xb9\x9e\xa2\x97\x33\xa6\xaf\xac\xdf\x7d\x6f\x82\x7b\xba\x7b\x2d\xea\xbf\x01\x71\xf9\xb3\x62\x6d\xb9\xd5\x59\x45\xfd\x4d\x8e\x6d\xeb\x32\x1b\xea\x1a\x1c\xbd\xcc\xaf\x9a\x42\xce\x72\x3e\xe1\x4b\x10\xc0\x0a\xea\x13\x56\x3d\x4f\xd7\xbc\xd9\xa6\x32\x5b\x9c\x85\x72\xd3\xe9\x2e\xe5\x37\x9c\xe9\x1e\xc6\xf9\x5e\x3d\x72\xe4\x35\x14\xfb\xb3\x47\x63\x2c\x4e\x63\xaa\x3b\x37\x27\x71\x8a\x2e\x32\x64\x41\x4c\x9a\xd3\x98\xe8\x2a\x70\xc6\x4f\xd1\x47\x86\x90\xb3\x77\xde\xf9\xfd\x79\x93\x37\x3f\x39\x26\x36\x26\x32\x2e\x25\x3a\xd1\xe4\xcd\x37\xc6\xc4\xc6\x44\x25\x98\xa3\xa5\x6f\x47\x91\xb3\xe4\x19\xe1\x18\x08\x10\x0f\xea\x13\x1a\x55\xe0\xb7\x79\x9b\x7c\xa2\x5e\x28\x37\xd0\xc0\xfd\x8b\x7e\xd3\xf0\x04\x8a\x46\x45\xe5\xb1\x19\x25\x66\xb2\x65\xb3\xce\xe4\xd0\x21\x72\x76\x74\xf4\xdc\x92\xad\x09\xf1\xd1\x71\x91\xaa\x19\x2d\x55\xc9\x99\xc9\x1a\xae\x8c\xb6\xcf\xf7\x2d\xf9\x8e\x44\x0a\xb7\x83\x00\xa1\x60\xf7\x5a\x31\xcb\xaf\x47\x30\x59\x0d\x1c\x06\xcc\xc1\x4a\x84\x00\x56\x01\xc6\xe5\x34\x1b\x72\x34\xed\x66\x3f\x13\x66\xce\x49\x22\xff\x7c\xf7\xdd\xef\x20\xe3\x61\xf1\xa6\x23\x1f\x7e\x42\xbe\xbb\xf6\xda\x73\xf3\x50\x04\xc8\xfc\xf3\x0e\xe1\x7a\x4a\x5b\x7d\x22\x44\x85\x99\xbc\xe4\xa5\x97\x91\x93\x33\xe3\x9c\xc3\xc8\xf8\xce\xdd\x77\xbf\xc3\xb9\x3f\xfd\xe8\x08\xff\xf6\xb9\x6b\xaf\x45\x7b\xc5\x2f\xe9\xbb\x79\x64\x27\xf7\x7b\xe1\x3d\xd0\x41\x1c\xa8\x4f\xc4\xea\x09\x04\xce\x35\xc5\x2a\xb3\x99\x6d\x26\xee\xf7\x39\x9d\x57\xb7\xb4\x6c\xee\xcc\xf9\x5d\xa4\xa9\xc0\x62\x71\xa6\x44\xa8\xfe\xf2\x26\x8a\xe0\xc7\x2a\x97\xb5\x3a\x1c\xad\xcb\x2a\x63\x33\x4d\x31\x31\xa6\xcc\xd8\xe9\xef\xd1\xb9\xf5\x2e\x99\x8e\x7f\x10\xe2\x27\x64\xaf\x72\x82\xa0\x32\xa3\x77\xf5\x36\x97\xf1\xf6\x84\x74\xfc\x3e\x79\xb7\x60\xc1\xcc\x6a\x5d\x6b\xde\x35\xd3\xae\xa6\xf2\x5f\x0f\x40\x4e\x91\x51\x50\x41\x28\x58\xbc\xa9\xa1\x88\x60\x69\x56\x12\xbc\x5a\xbe\x8a\xb4\x80\x43\x8a\x13\x9c\xf6\x93\xc5\xa4\x52\x72\x92\x36\x8a\x45\xd3\xc5\x4f\xd0\xef\x50\x04\x7a\x5d\xfc\x54\xcc\x41\xf9\x7b\xdf\x7f\x9f\x8c\x5e\x1c\x41\x0f\xa3\x43\xf4\x1e\xe7\xbd\x00\x64\x09\x19\xa5\x35\x97\x68\xb6\x43\xb9\xe6\x92\x3f\x19\x9e\x52\x7b\xc9\x7f\xb8\x5e\xc6\x2a\x2e\xa5\x5b\x83\x2b\x2e\xa9\xaf\x54\x71\x49\xc3\xa2\x63\x6c\xac\xe2\x52\x36\x36\x9b\xef\x45\x6f\x2e\x7d\x62\x4b\x6d\x57\x6f\x61\xab\x33\xb6\xe2\xaa\x47\x97\x7d\xfc\xf1\x9c\xde\x59\x5d\xff\x7c\xab\x7d\x4e\x5c\x76\x75\xc6\xab\x64\xd4\x3a\x6d\xe3\xcc\x19\xd7\xa7\x86\x17\xd4\xb5\x65\x74\x6d\x6d\xb3\xa2\xb3\xe2\x85\xa9\x85\x35\x75\xe8\x57\xb8\xb4\xd2\xe2\x34\x46\xc8\xf7\x79\x7c\x5f\x90\x0e\xb2\x1f\xec\xd4\x7f\x8f\x39\x9e\xc3\xfc\x4a\x01\xf1\x84\xe3\xc9\xb0\x12\x4d\x4e\x08\x75\x99\xd5\xd2\xcb\x68\x76\xb0\xdb\x53\x63\xec\x69\x2a\x69\x32\x5d\xae\x19\xfa\x53\x43\x28\x0a\x3b\x99\xc1\xcf\xba\xe9\xd8\x82\xd5\xcf\xec\x6c\x99\xbe\xf3\x97\x4b\x56\x9c\xbc\xa1\x4d\x2d\x7e\xb6\x75\x38\x77\x66\x79\x9a\xc5\xdb\x59\x90\xd9\x5e\x61\x41\xbb\x96\xee\x1f\xc8\x6b\xbc\xe1\xe9\x55\x4f\xac\x7e\x7a\x47\xa3\x7b\xe9\xfe\x81\xb9\x83\x19\xcd\x8b\xbd\x3f\xaf\x5d\xda\x68\xd3\x65\x37\xba\xe9\x18\xee\x07\x20\x2b\xc8\x28\x84\x43\x02\x3d\x1d\x04\x1e\x71\x18\xe4\x3e\x25\xac\x4f\x23\x22\x00\x22\x12\x22\xe2\x35\x91\x10\x0e\x53\x4c\xc2\x44\x7f\x2a\x5d\xe9\x77\x08\xec\x47\xbf\x59\xfe\xec\xae\x99\x33\x6f\x7d\x6a\xe8\xe4\xc9\x82\xce\x8a\x34\xb3\xb7\xa7\x98\x8c\xb6\x5c\x7f\x72\xe9\x43\xcb\x7e\x71\x5d\x13\xf7\xf8\x78\x8e\xad\x7e\xc0\xfb\x70\xc9\xa2\xc6\x0c\xa9\xaf\x0e\x01\x90\x22\x32\x0a\x61\xf4\xee\x17\x07\x84\xe7\x48\x1f\xf0\xc0\xfc\x77\x13\x4e\xbb\xe0\x73\x14\x1d\xfd\x4f\x67\xe2\xfe\x3a\xfe\x17\xbc\xe9\xd2\x30\xf7\xd3\xf1\xad\xd8\x82\xfe\x29\xfe\xeb\x7d\x32\xfa\xc1\x47\x80\xe0\x21\x00\x92\x47\x46\x21\x84\xd6\xd7\x61\x01\x88\x7d\xca\x0d\xb9\xe0\x59\x89\x94\x63\x12\xee\xcb\xf1\x37\x25\xd3\x63\x7c\x17\xce\x43\xaf\x8b\x4e\x32\xfa\x81\x28\xd2\x31\x9d\xeb\xfb\x82\xcc\x26\xfb\x21\x07\x8a\xbd\x85\x0e\x44\x78\xa0\xf7\xa0\x00\x73\x02\x87\x85\x95\xca\xa8\x0a\x40\xbd\x44\x01\xa3\xab\xd1\xd9\xd3\xe8\xc8\x26\x38\x2c\x93\x46\x56\x56\xe9\xfd\x23\x5b\x28\x69\x7d\x64\x76\xc2\xbc\x6d\x07\x66\x5f\xf5\xec\x8e\xc6\xf6\x9b\x9f\x5a\x7a\xf5\x93\x9b\xbd\x48\xfc\x0a\x99\x4a\xda\xf2\xf2\xba\xaa\xd3\x8d\xe5\x7d\x55\xa9\x95\xee\x8c\x29\xe8\x2f\xe8\xcb\xdd\xc6\xe2\xec\xc4\x86\xeb\x4e\xad\x78\x71\xc5\x2f\xaf\x9b\x5a\x3c\xf4\x93\xae\xbc\xaa\xf4\xe8\xf4\xa9\x03\x65\xbf\x2b\x19\x68\x72\x08\x61\x91\x21\x4f\xd1\x3a\x46\xb7\x02\x90\x58\xda\xcf\x97\xd5\x1b\x92\x8f\x92\x20\xa0\x87\x83\xea\x0d\xc5\x8a\xe7\xc4\x43\xe2\x39\xa4\x43\xf3\x91\x0e\xbd\x28\x96\x90\x51\xd1\x80\xce\x48\x34\x5f\x01\x20\x21\xe4\x16\x99\x26\xf0\xcc\x43\x4d\x90\x5c\x96\xa5\x8c\x0b\xa0\xa9\x95\xc7\xcc\x65\xd2\x98\x5e\xe1\x2a\xc4\x33\xc8\x70\xe9\x39\x14\x25\x7e\x41\x6e\x39\x3d\x5e\x74\xfa\x34\x7e\x89\xad\x9d\x43\xbe\x2f\x88\x9d\x8c\x82\x96\xde\xed\x05\x0c\xab\x01\x73\x78\xb5\x3f\x0d\x49\x2d\x6a\x4e\x8d\xb1\x44\x11\x35\xad\x41\xe4\x37\xa5\x4c\x31\xf4\xd4\x9c\x8b\x46\x86\x86\x8d\x87\xe7\x0c\x3d\xb4\xae\x0a\x23\xc3\x9c\xae\xa6\x5e\x44\x46\xc7\x33\x96\x3d\xbc\xb6\xcc\xb9\xe4\xde\xe1\x25\x03\x68\xc3\x2a\x40\x70\x0f\x00\xb9\x9f\x8c\xc2\x14\xe9\x1b\xa1\x02\xe2\xe4\x03\x00\x04\xdd\x1c\xeb\x8b\x68\xad\x26\x9a\x7e\x83\x56\xd5\xd6\x14\xb2\xda\x54\xf9\xdb\x24\xb6\x17\x21\x2b\x9a\x23\x76\xa2\x93\xe2\x09\xf4\xf4\x16\xf1\x37\x64\x54\xd4\x5e\x87\x16\x8f\x5f\x18\xdf\x02\x88\xca\xac\x41\x32\x2a\xd7\x5d\xc3\x80\x57\x4b\xcd\x9a\xed\x9f\x71\x51\x9c\xda\xe0\xb0\xd0\xbe\x40\x4f\xe2\xc7\x2e\x15\xa3\x38\x49\xe8\xb1\xb6\x5f\x05\x40\xe6\x52\xbe\x6c\xde\x34\x35\x8f\x31\x2b\xa7\x47\x93\x59\x13\x7a\x5c\xef\x97\xa7\xb4\xe4\x94\x5a\x29\x39\x65\x63\x25\xa7\x86\x9f\x46\x05\xe2\x9d\xbf\x38\x20\xa2\x52\x3c\x15\xd7\x5c\x1c\xc1\xaf\x88\x19\x08\x9d\x19\x4f\x95\xbe\x80\xe0\x20\x00\x89\xa1\x6b\x22\xd9\x9b\xa0\xc2\x18\x30\x6a\xe4\x10\xc6\xd0\x8d\xe4\x66\x6b\xa2\x69\xd7\x9a\x4c\x12\x61\x13\xe2\x4c\x24\x46\x3c\x2f\xfe\x1c\x89\xe7\x51\x0c\x6a\x41\x48\x87\x9f\x1c\xaf\x23\xa3\xe3\xb5\xf8\x29\xc0\x30\xe4\xfb\x82\xf4\x53\xfd\xc7\x01\x49\xde\x78\xe5\xc2\xb2\x9c\xa6\xb3\x16\x9a\xed\x76\x7b\x1a\xed\xc7\xff\x22\x47\x1c\xe9\x6f\xbc\xe1\xa9\x55\x6b\x9e\xbe\x61\x6a\xc3\x0d\x4f\xad\x59\xf5\xd4\x8e\x26\xf1\x4c\x72\x49\x47\x51\x69\x47\x51\x42\x82\xa7\xb3\xb4\xb0\xa3\x38\x19\x7d\xb2\xf4\xe4\x0d\xcd\xcd\x37\x9c\x5c\xfa\xfc\xd2\x53\x3b\x9a\x9b\x77\x9c\x5a\x8a\x4a\x07\x9a\x1d\x8e\xe6\xc1\x92\x17\x4a\x06\x9b\xb3\x32\x5b\x06\x4b\xa8\x5c\xeb\xf3\x55\x92\xc5\x64\x3f\xc4\x42\xb6\xb4\x8f\x0b\x92\x50\x43\x8d\x3c\xc1\x50\x7f\x65\x3e\x6d\x94\x4f\x41\x50\x19\x54\x36\xe1\x3f\xf2\xba\x18\xf5\x75\xfe\xfc\xe1\x37\x2b\x6a\xd7\xfc\xfa\xc6\xc6\xc6\x1d\xcf\xac\x59\xf5\xcc\x4d\x2d\xe2\x67\x29\xa5\x5d\x9e\xd2\xee\xe2\xc4\xc4\x92\xee\xb2\xa2\xce\xd2\x14\xf4\xc9\xe6\x97\x6b\x0e\xaf\x7f\x26\xb2\xe9\xfa\x53\xcb\x9e\x5f\x76\x4a\xe2\xfd\xd4\x32\x54\x36\xd8\x94\xe1\x68\x1a\x2c\x7d\xa1\x74\xb0\xc5\xe1\x68\x19\x2c\x65\x7e\xca\xdd\x00\x64\x84\x8c\x42\x34\xab\xe1\x13\x29\x6b\x79\x34\xb6\xbf\xdf\x2f\xbb\xe4\x29\x90\x66\xca\x30\xc9\xf2\xd0\x1c\x90\xa5\x40\x85\x74\x26\x24\xad\x05\xc9\x3a\xc1\x8b\x7f\x2d\x9e\x41\x1f\x0c\x3e\x7a\x75\x4d\x4a\x71\x7b\x1e\x0a\x13\xdf\x16\x17\xbc\xd4\xb5\x08\x0d\x74\xbd\x84\xee\x12\x17\x93\xd1\xcc\xae\xed\x5d\xb5\x8b\xa7\x15\xeb\xc5\x8c\x30\xbc\x0e\xb5\xb4\xb4\xb4\x00\x82\xed\xbe\x2f\x48\x0f\xd9\x0f\x15\xb4\x7a\x85\x9c\xed\x04\x08\x8f\x09\x3f\x4c\x95\x11\xc0\xfd\xfe\x72\x23\xb5\x5c\x73\x69\xb1\xdb\x95\x93\x95\x16\x93\x2d\xa8\x0d\x34\xd8\xd6\x36\x11\x88\x61\x08\x0c\xc4\x30\xc8\x7b\x6f\x6a\x36\xb1\xf9\xbd\x1a\x5c\xbb\xb1\xbc\xa7\x6c\xe8\xde\xe1\xa2\xfa\xab\x1f\x9c\xbf\xf0\xf1\x6d\x8d\x58\x3c\x93\xec\x6e\xc8\xc8\x69\xc8\x8f\x8f\x2d\xec\xf2\x0e\x3e\xb0\xa6\x7c\xea\xb6\x27\x86\xca\x36\xac\x98\x5f\x6f\x47\xc8\x60\xf1\x76\xe4\x39\x9b\x9d\xf1\xa8\xd4\x98\x6d\x49\x8e\x48\x28\x9c\xbe\xb6\xb3\x7d\x6b\x67\x56\x7a\xe7\x2d\xfd\xa9\x25\x19\xb1\x31\xe6\xac\x58\xa3\xc3\x94\x18\x19\x5b\x32\x6b\x63\x57\xc7\xd6\x99\xf6\x48\x73\xf1\xcc\x55\x8d\xf9\xd5\xe9\xd1\xfa\xb4\x6c\x69\x7f\x06\x20\xf7\x50\xbd\x45\x5a\xa3\x1c\x46\xb4\x3c\x9d\xb2\x29\xf8\xa5\x0b\xab\x70\x76\x8f\xb8\x48\xfc\x87\x38\x4c\xea\xb8\xc7\x2f\xb5\x73\x8f\x7f\x00\x08\xf6\xfb\xbe\x20\xd5\x64\x14\x74\x92\xdc\x23\x1c\x46\x18\xad\xf6\x9f\x80\xb1\xed\x5c\x07\x92\xad\xc7\x4b\xfd\xa1\x51\x12\x7b\xca\x8e\x4d\x97\x96\x54\xd7\x6e\x3a\x3a\x38\xf8\xe8\xd5\xb5\x48\x87\xfa\xe7\xcc\x99\x27\x49\xa9\x90\x81\xfd\xcb\x0a\x0b\x97\xed\x1f\xc0\xdf\x8d\x87\x0c\xcd\x9b\x37\x84\xbf\x93\xd6\x6c\x16\x00\x79\x8a\x8c\x82\x1a\x12\xbc\xb1\x88\xde\x0d\x96\xf8\x85\xd5\x7e\x76\xb5\x92\x44\x41\x86\x42\xa6\x56\xe1\x45\x11\xe1\x48\x8f\x2c\x62\x8b\xf8\x67\x71\x1a\xb2\xa0\x4a\x6f\x39\xd7\x7a\x51\x9a\x55\x08\x4c\x00\x64\x17\x95\x2f\x29\xde\xa4\x50\xb9\x96\x1d\x87\x25\xc1\x82\xd9\xac\x8a\xd6\x4c\x08\x16\xce\xcc\x71\x66\xce\xa4\xd5\x3a\x39\x4f\x3b\x22\xaf\x89\x2b\x16\x8b\x6f\x20\xd5\xf4\xb9\x3e\x5c\x8f\xeb\x2e\x8e\xe0\xf6\xf1\xc7\xc9\xe8\xf8\xcb\xb8\x50\xe2\xd3\x0b\x40\x6e\xa6\xfb\x8b\xd1\x9b\x18\x22\x70\x9c\xbf\x90\xe0\x04\xed\xe8\x68\x0d\xed\x59\x7a\xf1\x9c\xe3\xa8\x48\xed\x79\x07\x55\x8a\x77\xa1\x6b\xc4\x5f\x7e\xf2\x37\xf1\x19\xb4\x46\xbc\x0b\x95\x73\x11\x68\xeb\xf8\x33\xe3\x27\xd0\x0d\xe2\x46\xdc\x84\xab\xa8\x6c\x2c\x06\x20\x8f\xd3\x7e\x48\xf4\xc6\x09\x74\xcc\x82\x3a\x22\x3a\x5a\x43\x3b\x02\x99\x10\xad\x53\x88\xd7\xa0\x30\x94\x23\x4e\x13\x3f\x13\x67\xa1\x5c\x7c\x1d\x0e\x19\x0f\x15\x17\xa3\x43\xf8\x73\x26\x6b\xef\x06\x20\x4d\x54\x16\xda\xbc\x69\x21\x48\xce\x0f\xd2\x08\x9c\xa4\x2b\xe0\x3e\xff\xd5\x8c\x32\xb9\x00\xa2\x3a\x96\x4a\x6d\x17\x8d\x8a\xc2\x80\x9b\x2e\xb5\xe2\xea\xf1\x3f\x70\x7b\xde\x7f\xff\x56\x2e\xe5\x83\x9b\xe9\xb2\x28\x25\xaf\x72\x9f\x09\xdf\x82\x0e\xec\xa0\x3e\x91\xf2\xa3\x3a\xba\x3f\x53\xc3\x84\xa9\xf2\x59\x6e\xd7\x96\x69\xd3\xb6\x76\xe7\x3e\xad\xb1\x94\x64\xd8\x8b\x2d\x9a\x77\x54\x0d\xde\x24\x67\x7d\x86\x6a\xd7\x2d\x71\xe9\xae\x04\x0d\x3f\xe6\x9c\x55\x6a\x32\x95\xce\x72\xea\x6d\xc9\x1a\x4d\xb2\x4d\x9f\xb8\x1e\x1b\xe2\xa2\xe3\x22\x84\xaa\xe6\xca\x04\x5b\x7c\x14\x97\x2d\xb5\xeb\x9f\x00\x5c\x0d\xd9\x09\x02\x08\xc7\x78\x40\xb9\xd2\x66\xce\xbb\x2c\x4e\xae\x46\x3c\x2b\x3e\x8b\x8b\x13\xb9\xda\xe6\xff\x39\xc9\xfa\xe0\x2e\x00\x52\x4c\xf6\x53\x9f\x9d\x96\xe1\x4a\xd6\xa2\x8d\xa9\x9b\x2a\xa5\xec\x16\xb3\x17\x49\xf1\xa5\xf5\xe8\xc1\xb6\x59\xa8\x7d\x6a\x66\x75\x56\x2c\x12\xcf\x56\xae\xbb\x7f\xd1\xc0\x91\x35\xe5\xf6\xd6\xd5\x0d\x2f\xe3\x94\xa7\xd1\xf6\xba\x6b\x72\x2a\xa6\xc6\x67\x7b\x2d\x33\x7f\xb2\xb4\x2c\xb7\xe7\x86\x59\xde\xe5\x43\x83\xc5\xf7\xca\x6b\xa6\x8c\xec\x87\x52\x10\x8e\xd9\xb4\x92\x8d\xe1\xd7\xbb\xe9\xa7\x64\xe7\xa7\xf4\x25\x45\x48\xd0\x0b\x16\xfe\x40\x69\x33\xfa\x9f\x6d\x5d\xf3\x62\x32\xbc\x0e\x53\x49\x56\x3c\x12\xcf\xa2\x86\xab\xf6\x75\x2c\x78\x70\x43\x4d\x52\xc1\xd4\xac\xfc\x76\x8f\xb1\x69\xdb\x63\x0b\xda\xee\xdd\xd6\x86\x50\x2c\x4a\xc8\xaf\xc9\xe8\x9a\x9b\xec\x6e\xca\xda\x86\xc7\xd0\xd4\xea\x84\xec\xd4\x98\xf0\x78\x5b\x7c\xdb\xa6\x76\x87\x63\xe6\xe6\xf6\xac\x96\x8a\xbc\xa8\x88\xec\xaa\x2e\xcf\x8c\x6b\x3a\x33\x6d\xb3\x76\xcc\x4f\xca\x35\xc7\x4c\xab\xb0\x7b\xcc\x51\x4c\x16\x4b\xf3\xa3\x8b\x8c\xd2\xf3\x7a\xf5\x89\xf0\xb0\x10\x6a\xdb\x3b\x75\x66\x49\x85\xb1\x49\x4b\x4d\xa3\xe2\x5e\xb9\xf5\x56\xf1\xdc\xf8\x57\x11\x38\x0e\xc5\x8e\x7f\x80\xa6\xe8\xd0\x5b\x1f\x7d\xf9\xe5\x71\xfc\xd9\x78\x2d\xea\x37\xd1\x3e\x3e\xe2\xfb\x82\xd8\xc8\x28\x64\x48\x7d\x8c\x50\xae\x43\x2b\x69\x42\xaa\x89\xf6\xb2\x86\xca\xa9\x57\xe4\x9e\x7f\xae\x15\xbf\x2b\x4e\x31\x86\x67\x14\x94\x24\xcf\xbb\x63\xc0\xe5\x59\xf5\xe0\x8a\x8e\x83\x9b\x5b\x39\xa4\x53\xf5\x36\xe6\x54\xa6\x47\x2f\x9c\x9b\xe6\xb6\xa7\x84\x63\x37\xee\xfc\xf0\x3d\x21\x62\x4a\x88\xb3\x6f\xb4\x7b\xfa\x4f\x56\x54\x65\x77\x6d\x9d\x5e\xe9\x4a\xca\xaf\xb2\xcc\x58\x10\xa6\xd1\x85\x48\x6d\x79\xc2\xf7\x05\x69\x20\x07\xc1\x08\xd9\x92\xcd\x9e\xa2\xa5\xf3\x52\x47\x3f\xe5\x76\x17\x06\x30\xc2\xf6\x3c\x2e\x55\x50\xe9\x62\xfc\x1c\x71\x5b\x23\xdb\x6f\x1d\x6e\x98\x92\xb3\x7d\x66\xf7\xce\x79\xf9\xd5\xeb\x8f\x2c\x18\x7c\x6c\x73\xdd\xd0\xc9\x6f\x77\xbd\x5d\x35\xcf\xd0\x3b\x27\xbd\x32\x27\x7e\x1e\x39\xf8\x71\x7c\xe5\xb2\x19\x59\x45\xa8\x78\xf0\xb6\x59\x9d\x7b\x96\x96\x96\xac\x7b\x62\x6d\xf3\xd1\x6f\x0f\x36\x8f\xdf\x9c\x6f\x76\x2d\x1c\x4e\xcc\xab\xb2\xb6\x75\x48\x7d\x72\x98\xd6\xd2\x1d\x65\x73\x14\x31\x5f\xbe\xb4\xb0\x48\x83\x18\x2e\xfe\x0f\xfa\x66\x7c\x2b\xf7\x00\xf7\xe5\xa5\x48\xee\xe8\x69\x6a\x07\x9e\xf4\x7d\x41\x3c\x64\x3f\x98\xc0\x05\x95\x10\x7a\xb2\xbc\x28\xd7\x9a\x38\x85\xfa\xd2\x85\x80\xe9\xe2\x2a\x70\x17\xca\x25\xc5\xf2\x93\x31\x17\x18\x01\x28\x6d\x34\xcc\x07\x42\x5d\x73\x24\x69\x76\x6b\xe6\x54\x67\x62\xed\x86\x23\x73\x7b\x8f\x6c\xac\x5f\xda\xdd\x3a\xa7\x72\xd5\x3d\xdd\xb3\xef\x59\xed\xfd\x21\x3e\xbb\xc2\x92\x56\x9e\x15\x1f\x9f\x5d\x6e\xb1\x94\x67\xc5\x27\xb6\x54\x57\x35\x35\x57\x57\x37\x71\x33\x3a\xb6\xda\x62\xdc\xf5\xb3\xf2\x66\x6d\x99\x69\xb7\xcf\xdc\x32\xab\x7f\x34\xdd\xba\xb5\xa3\x7d\xd3\x8c\x8c\x8c\x19\x9b\xc6\x4f\xa4\x3a\x53\x35\x9a\x54\x67\xaa\xa9\xc0\xac\xd5\x9a\x0b\x70\x48\x69\x79\x45\x49\x71\x5d\x9d\x34\x06\x4f\xfa\xbe\xa2\x6b\xcd\x3f\x06\x89\x1a\x9c\x4b\xab\x70\x15\xca\xa7\xdf\x41\x67\x7d\x66\x97\x36\xdf\x5d\x28\x4f\x07\x5d\x8c\x1e\x1d\x6c\xbb\xbe\xbf\x2c\x34\x7b\x6d\x65\xf7\xae\x85\xae\xaa\x75\xf7\x2f\xe8\x3b\x72\x55\x4d\xdf\xcf\xbe\xd9\xa3\xfb\xa6\xb4\x5d\x37\xbb\x2d\xbd\x22\xd3\x30\xfb\x0d\x7d\x51\x5f\xb3\x2d\xcb\xd9\x7f\x7b\x6f\xe7\xdd\xab\xab\x4a\xae\x3a\x7e\x55\xf3\xd8\x37\x3f\xad\xf9\x2b\x5a\x9f\x95\x3c\xd0\xb7\xc8\xe8\x6e\x48\x6f\xeb\x63\x7e\x1c\xb7\xef\x02\x77\x80\x4b\x01\x1d\x98\x41\x7d\xc2\x18\xfb\x23\xbe\x2b\x5b\x90\xf3\x93\x3b\x90\xd5\xb6\xaa\xa6\x66\x75\x7b\x96\xff\xff\x5f\x2a\xc9\xcf\xf7\x14\x3b\xf3\x8a\x51\xd1\x8c\x8d\xd3\xad\xd6\xe9\x1b\x67\xdc\xdb\xbe\xa9\x3d\x3d\xbd\x7d\x53\x7b\xe8\xcc\xfa\xfa\x99\xc7\x3b\x6a\x6a\x3a\x00\xa1\x85\x00\xf8\x2c\x17\x1d\x20\x97\xcc\x1a\x95\xcb\xe2\xc4\x67\x7f\xf7\x6b\x34\xa2\xc5\x76\xc7\xbe\xab\x24\xbe\x32\xc9\xcb\xdc\x3b\xc2\xaa\xff\xe8\xe7\x70\xaa\xcc\xdc\x3b\xb9\x5d\x5b\x5b\xa7\x6d\xe9\xce\x7d\x3a\xca\x52\x92\x91\x51\x9c\xa6\x59\xfe\xdb\xc7\x7e\x22\x49\xca\xb2\xd4\xd4\xb2\x59\x4e\xbd\xdd\x18\x1d\x6d\xb4\xeb\x9f\x7b\x9a\xf9\xd0\x32\x7c\x17\xb8\xa3\x5c\x0a\xe4\x83\x70\xcc\xa4\xa1\x32\xc8\x5f\x70\xd7\xef\x1c\x0b\xca\x92\xcf\xbe\xa8\xf7\x5f\xa3\xc1\xea\xae\xd2\xa2\x29\x71\xf6\xe4\xcc\xd2\x97\xf3\xda\x97\x95\xd6\xad\x69\xcf\x6e\xa8\xa8\x9f\x96\xdf\x7d\x55\x5d\xd1\x8a\xee\xa2\x57\x2a\x3d\x65\xee\x9a\xb2\x2e\xf4\x76\x9e\x3d\x32\xd1\x10\x91\x9a\x5c\x38\xd3\x93\x94\xe4\x99\x55\x58\xd6\x61\xd0\x76\xb6\x14\x75\x94\x18\xe3\x4b\x7a\xab\x53\x9d\xee\x34\x57\x06\x60\x94\x06\xc0\x3d\xce\xe9\x20\x0c\x22\xa5\x5d\x28\x82\xea\x7b\x93\x42\x7d\xa8\xf5\x9b\x3a\x39\xd0\xc7\xe5\x44\x4e\x97\x8a\x9b\x31\x67\xce\x2b\xe2\x03\x61\x68\xd1\x2b\xe2\xed\xf7\x4f\x41\xd5\xf7\x1d\x3a\xb4\x1d\x7d\x81\xc5\xec\x77\xb4\x52\x9b\x33\x7d\x17\xb8\x3b\x38\x1d\x58\x41\x38\xa6\xa1\x6b\x4d\x91\x3f\x4a\x23\x6d\xce\x00\xf1\x23\xa8\x50\xb9\x0b\x5d\x10\x7f\xa6\x53\x25\x9a\xed\xba\xeb\x6e\xb6\x34\xaf\x69\x2d\x59\xd1\xe1\x42\x2f\xe3\xe2\x3c\xa3\x3d\x2e\xb4\xbc\xcc\xe9\x8c\x40\x9b\xd1\x4f\x0f\xee\xe4\x42\xd4\xc2\x75\x1b\x5d\xfd\xcd\x39\x29\xa5\x9d\x6e\x7b\x8a\x36\x25\xc3\xe0\x2a\x4f\x08\x63\x73\xcc\xe1\xbb\xc0\x1d\xe1\xd2\x7e\x44\xee\x38\xff\x93\xdc\x49\x08\x73\xcf\x9d\x9a\x17\x62\xec\xf2\x94\xcd\xf5\xa6\x48\x33\xae\x7e\x7d\x67\x5e\xe3\x96\x87\xe7\xef\x76\x94\x46\x94\x15\xc7\xd9\x93\xa3\x4a\xb9\xb4\x23\x91\xf6\x3a\x77\x92\xc5\x56\xd7\x57\x5c\xd2\xdf\x68\xb7\x4e\xdb\x30\xc3\xb9\xee\xa1\xa5\xf9\x62\xa3\x51\x6b\xab\xaa\x88\x4e\xb1\xc7\xba\xf2\xe9\xf8\xdb\xa8\x0f\x55\x17\x28\x77\xcc\xf4\xc0\xef\x7e\xf1\xd8\x1f\x51\x8b\x38\x0b\x6f\xc1\x47\xc6\x7b\xf0\xc8\x61\x9a\x47\x4c\x59\x23\x46\x7a\x23\x7f\xff\x2f\xb4\x1c\xc6\x3c\x92\x33\x20\x24\x28\xc9\xa2\xfc\x97\xb8\x65\x73\xa2\x0c\x9a\x13\x9a\xc6\xa6\xfc\x3b\x94\x5a\x8a\x12\xf1\x9f\xa8\xfc\x5b\x02\xdd\xdd\xdd\xde\x90\xb4\xb4\x34\x6b\x76\x06\x9d\x17\xc1\xd3\xf6\x32\x51\x38\x21\xfa\x82\xfe\xbe\xa5\xc4\x55\x5a\x97\xdd\xbe\xaa\xaa\x6a\x75\x7b\x4e\x7d\xa9\xab\xd4\xd1\xb2\xa4\xc2\xbb\xb4\xc5\xf1\x8b\xb2\xdc\xdc\x92\xd2\xbc\xdc\x12\x6d\x56\x56\x46\x76\x76\x66\x66\x26\xae\xf0\x74\x24\x24\xcc\xab\xf2\x74\x78\x12\x13\x3d\x1d\x9e\xaa\x79\x89\xf1\x1d\x1e\x36\xc1\x67\x8a\xeb\x33\xa4\x7f\xd9\xd9\x68\x45\x9a\x3d\xdd\x62\xce\xcc\xa4\xe3\xef\xf1\x5d\xe0\x0e\x71\x29\x90\x04\x99\xa0\x3e\x91\x96\x1c\x1f\x19\x28\xf3\xac\x97\x8b\xbc\xc2\x60\x91\xf7\xae\xbb\xd3\x9b\xae\x32\x36\x67\x6c\xba\x59\x1a\xfb\xca\x95\x33\x72\xab\x37\x3c\xd8\x1f\xf9\xb0\x25\x3f\xbc\x38\x3f\x2e\x3d\x21\xc2\xb3\x7b\x8a\xb9\x2c\x2f\x2e\xf1\xfa\x6b\x8b\x87\x5a\xb3\xad\xd3\x36\xce\x2a\xdc\x74\xff\x22\xc7\x81\xf1\x38\x4d\x53\x65\x51\x8c\x39\x3b\xbe\xa0\x44\x1a\xf7\x2c\x7c\x23\xf7\x11\x3d\xf7\x95\xe3\xf3\xe8\xa0\x7f\x34\xde\x8c\x8f\xe3\x1b\x8f\xb3\xb1\x7e\x8e\xcc\xe4\xc6\x85\x5f\x00\x07\x06\x30\x43\xe8\xc9\x94\xf8\x68\x35\x06\x69\x8f\x31\xf1\x66\x55\x80\x26\x24\x75\x6f\xa1\x22\x14\x52\x05\xfc\x2d\x52\x89\xff\xfb\x8b\xad\x46\xf7\x54\xbb\xbd\xde\x95\x9c\xec\xaa\xb7\xdb\xa7\xba\x8d\xc3\x4e\xab\x35\x27\xc7\x6a\x75\x0a\xbf\x78\xed\x23\x5b\x4d\x5e\x62\x62\x5e\x8d\x2d\xbd\x3a\x37\x3e\x21\xb7\x2a\xdd\x9a\x9f\x6f\x4d\xcf\xcf\x07\x8c\xbe\x21\xdb\xb9\x17\xf9\x17\x80\x07\x2d\xa8\x4f\x44\x87\x11\x1a\x6b\xa1\x75\xea\x38\xb3\xad\x9c\x2b\x74\x46\x70\x3a\x9d\x19\x1f\xef\x39\xf1\xcc\x8c\x67\x51\x8c\xd1\x1c\xd5\x1a\xa6\x8d\x50\x5d\x4b\x0e\xa1\x34\x9d\xf8\xe7\x15\x16\x6f\x81\x3d\x22\x3a\xb7\xb0\xdc\xb8\x94\xad\xb9\x1e\xf2\x5b\x82\x85\xd3\xa0\x83\x3c\x68\xf0\xd6\xea\x91\x4a\x48\x43\x84\x37\x23\x44\xb8\xc6\x3c\x24\x34\xc8\x1e\xaa\x7e\x50\x01\x41\x2a\xd2\x0f\x58\xda\x9e\xe6\xa9\x39\x8c\x50\x29\x6a\x06\xc8\xc9\xca\x48\x37\x19\x95\x34\x91\x21\x92\x56\x3d\x49\xfe\x6a\x15\x57\xbf\x10\xe0\xe9\x77\xbb\x08\xce\xe9\xda\xd2\xda\xba\xb9\x3b\xe7\xa9\xa8\xb4\x62\x49\x26\x47\xdd\x1c\x9b\x59\x96\x66\x2b\x71\xe6\xa7\x24\xa5\xaf\x89\x75\x94\xa5\x99\x3c\x85\x45\xc6\xa4\x74\x7e\xac\xa0\xa3\x3c\x35\xb5\xbc\xa3\x40\x6f\x4b\x8e\x8e\x4e\xb6\xe9\x51\x54\x5a\x55\x7e\x92\x2e\x5e\x97\x67\x49\x49\xab\x72\x26\xd3\xbf\x00\xa1\x1f\xc4\x7d\x5c\x14\xbc\xfc\xa3\xe7\xf6\x34\x11\x9a\xc6\xc4\x45\x89\x67\x91\x5e\xdc\x87\xb3\x00\xa1\x61\x71\x1e\x67\x87\x0a\x88\x03\xe1\x98\x8a\xc6\x64\xfa\x57\x87\x7c\x24\xcd\xe2\xca\x6c\x78\xd5\x82\x0e\x5b\x4d\x4f\x41\x7d\x4f\x92\x59\x93\x67\x36\x5a\x63\x84\xe8\x44\xab\xb6\xc2\x3d\x5a\xef\x9a\xee\x4e\x48\x8a\xbc\x47\x88\x88\xd4\xc5\x85\xc4\x67\xd9\xad\x5a\x40\xa8\x4a\x6c\xe2\xaa\xe0\x02\x68\x24\x0b\x3d\x14\x21\x1c\x82\x00\xe1\x46\x0e\xd1\x2c\xae\x72\xd5\x09\x13\x35\x02\x35\xa0\xb1\x58\x88\xa0\x77\x58\x2e\xcf\x00\xc0\x55\xb1\xca\xa0\x69\x11\xf4\xe6\xff\x05\xf1\x63\x76\xe1\xff\x43\x41\x98\x39\x13\x25\xd1\x7a\x28\x62\x23\x59\x4e\x5a\xa1\x1c\x66\xc2\x12\x08\x3d\xb9\xb0\x7b\x6a\x55\xb1\x51\x9a\x8f\x66\xbd\x3e\x20\x7e\x98\x5d\x70\x08\x14\xa5\x05\xe5\x58\x5e\xfb\x85\x4a\xa2\x20\x83\x09\x4d\x60\x2b\x85\x24\x27\x85\x72\x91\xe5\xd7\x24\x19\xab\x36\x3e\xb2\x38\x7d\xaa\x79\x4a\x94\xd6\x9c\x9d\x70\xb2\xf7\xf6\x85\xae\xc6\xd1\x37\xae\xdb\xf0\xcb\x2d\x5e\x63\x41\xad\xcd\x10\x2b\xc9\xf8\xbe\xa5\xd5\x1b\x1f\x5d\xdc\xd5\x8a\x96\x8f\xef\x8c\xcd\xd2\x25\xa7\x27\x16\x77\x96\xd6\x0f\xd5\x98\x22\xcc\xc5\x99\xe2\x87\xf1\x79\xf5\x59\x8e\xba\xdc\xf8\xf8\xfc\x3a\x47\x66\x5d\x5e\x3c\x77\x28\x63\x7e\xa1\xbe\xe5\xfa\x85\x1e\xb5\x7a\x8a\x49\x67\x48\xd4\x08\xb6\xe6\x95\x0d\xe5\xd7\x0c\x55\x67\x35\x2f\x2c\xcc\x6a\x2e\xcf\x8d\x36\x94\xa5\xa7\x16\xe7\x58\xa3\xf2\xee\xed\xd7\xb7\xed\xe8\x73\xc7\x5c\x7c\x8b\x23\x51\x25\xe9\xf1\xb9\x69\xba\xb8\xf4\x3c\x83\xce\x92\x18\x85\x7f\x65\xf4\x38\xe2\xe3\x1d\x1e\xa3\x3e\xc5\x93\x11\x1b\x9b\xe1\x49\x91\xe6\xc0\x23\xe2\x13\x24\x96\xab\x06\x03\x08\xc7\x42\xa5\xb1\xd6\x9a\x2e\xcf\xcd\x67\x7a\x04\x45\x4f\xca\xca\x27\xfe\x93\xab\x9e\x94\x90\x0f\x30\xbc\x03\xc0\x15\xf1\x1f\x03\x0f\x3a\x50\x9f\x88\x0a\xa5\xe7\x34\xac\xd4\x37\xf2\x1f\xa1\x51\xa5\xed\x1d\xdc\x22\xfe\x43\x7c\x0d\xa5\x18\x32\x4a\xd2\x1a\x3b\x3b\x1b\xd3\x4a\x32\x0c\xb4\x8e\x7c\x27\xfa\x3e\xa5\xd0\xa6\x9f\x51\x59\x39\x43\x6f\x2b\x04\x84\xf6\xf9\xce\x73\x17\x85\x58\xd0\x81\x70\x2c\x82\xca\x20\x25\x5b\x8f\x12\xff\x88\x17\xc6\x64\x37\x15\x26\xba\xf3\x1c\x9a\x98\xba\x1b\xea\xe6\x6d\x6d\x35\x09\xb1\x17\x17\xd4\x76\x17\xc4\x84\x46\x46\xa9\xee\x49\x49\xce\xe9\xdf\xbb\x8c\xec\x06\x9f\x0f\x1e\x03\xe0\xdc\xfc\x18\x16\x40\x4b\xcf\xef\x25\xfb\xbb\x82\x3e\xc7\x5d\x94\x16\xf4\xbd\xb2\xfd\xe2\xaf\x07\x8d\x80\x70\x34\xb3\xa1\x3f\xfd\x25\xdd\x62\x00\x12\xe2\x34\x91\xec\xf2\xbd\xa0\x96\x2f\xdf\x5f\x21\xe1\x25\x3a\x29\x9e\x45\x7f\x1f\x3a\xba\xa9\xba\x7a\xd3\xd1\xa1\xdf\xff\x3e\xab\x36\x27\x2e\x2e\xa7\x36\xeb\xf7\x68\x83\xb8\x83\x8c\x96\x2c\xdd\xd3\x3d\x73\x74\xa0\xf8\x6f\x09\x59\xc5\x46\x4b\x55\x7e\x12\xb3\x2f\x1d\x62\x2b\x59\x4e\x1a\xc1\x01\xc2\x31\x03\x1d\x97\xfc\x64\x62\x30\x68\x4d\x48\xab\xd7\x1b\xf4\xfa\x18\xb7\xd3\x20\x08\xb6\x6c\xce\x66\xe3\x4c\x88\x63\x91\x90\x36\xb7\xfb\x37\x45\xb3\xeb\xdd\xf6\xa4\xb0\xf6\x0f\x50\xbc\x38\xfa\x5a\x4c\x91\x43\xe0\xb0\xca\x10\x5f\x97\x52\xb1\xa0\xb1\x40\x33\xf3\x07\xf1\x2c\xda\xf9\xb4\x61\x4e\x69\x58\x46\x38\x9f\xd6\x40\x1a\xe3\x33\x3c\xa5\xe5\x09\x63\xe8\xe7\xe3\x79\x62\x53\x5e\x8d\x1a\x21\x84\xfe\xa6\x22\x1c\x5f\x39\x77\x79\xfe\x13\x62\x02\xf6\xa1\xd1\x62\x2f\x87\xff\x18\x3a\x45\xea\x9b\xab\x01\xc8\x4f\x69\xde\x89\x2c\x50\x9f\x70\x98\x39\x2a\x73\x69\xd3\x89\xdf\x04\x0d\xbe\x8b\x6b\x9b\x30\x43\xc7\xc4\xd7\xd0\x47\x3f\x20\x3e\xad\xba\xaf\xb4\x6e\xae\x27\x4e\xd0\x24\x1a\xc4\x17\x0c\xf1\xe1\xdc\xe2\xe5\x77\xdc\xb6\x6e\x55\x9c\x7b\x46\xf1\x5e\xec\x1a\x7f\x95\x1f\xfb\xf0\xf5\x8a\x45\xd3\xcb\x62\x63\xaa\x67\x0f\x57\xf4\x69\xcb\xbc\xa5\xd1\x49\xd1\x0d\xad\xb5\x51\xbd\x4b\x56\x7d\xbf\x60\x4e\x56\xb3\x3b\x79\xc2\x0e\x7f\x89\xc6\x36\xd9\xbc\x69\xa1\x72\x45\x2f\x9a\x8c\xa5\x8f\x95\x22\xe3\x03\xd2\xf8\xb1\xcb\x59\x4a\x0e\x18\x84\x4c\xd8\xb2\x56\xfc\x07\x8a\xab\x45\x9b\x51\xad\xd8\x8a\x9e\x17\x9f\xc4\x1d\xe3\x8f\xf0\x63\xe3\x5b\xf1\xb6\xf1\xea\x71\x56\xf7\xec\x7e\xdf\x39\x72\x0d\xff\x31\xc4\x51\xdf\x44\x5a\xb2\x46\x9e\xd3\xca\x24\x54\xb2\x48\x05\x4f\xf1\xfb\x71\x6d\x7c\x56\xb1\x29\xb1\xa2\xc4\x19\x95\xa0\xaf\x9c\xd6\xe1\x68\xdf\xb5\xa4\x4c\xfc\x13\xca\x0d\x9e\xf3\xe3\xae\xbc\x0a\x4b\xa4\x2a\x2c\x9c\x7f\x31\x22\x36\x2a\xc4\xde\xbb\x67\x29\xfa\x47\xf0\x22\xa0\x6d\x7d\xcc\x77\x8e\xec\x14\x80\xca\x65\x0d\x5b\xab\xdc\xe5\x3c\x68\x4d\x8f\x61\x57\xb2\xd1\x5d\x67\x33\x56\x7b\xdd\x9a\x04\x43\x6d\x7b\x4f\x56\xf7\xde\xd5\x55\xb1\xe2\x59\x01\x2e\x6e\x75\xd7\xda\xa3\xd4\x61\x53\xd8\x97\x1c\xf3\xef\x59\xc1\x1d\xa0\xb4\x7f\x05\x40\x42\xe5\x58\xad\x10\x1e\xe5\x3a\x0a\x99\xef\x43\xe3\xd4\x99\xbe\x46\x82\xf8\x02\xae\x8b\xfc\xfe\xd2\x99\xd3\xdc\xa6\xe1\xaf\xde\xbc\x98\x7f\x5a\xea\x97\x8d\xbe\x9f\x92\xf5\xe4\x1c\x54\xc0\x74\x50\x9f\xa8\xf3\x16\xd8\xa5\xb9\x60\x55\xae\x66\xd0\x9c\x0f\xec\xba\xa0\xc1\xe0\xcf\x1a\x24\xd7\x98\xb1\x59\x95\x14\x74\x7a\x83\x8e\x2a\x36\x2e\xbf\xc9\xc9\x3d\xa8\x0e\x21\xc6\x39\xc5\xb5\x43\xb5\xe6\xa2\x85\x3b\xdb\x1b\xc3\xb6\x0c\x76\x6e\xeb\xb0\x63\x84\x0b\x7a\xaf\x6b\x4f\x28\x76\xe7\x44\x17\xc4\x55\xd4\xd6\xa5\xec\xfe\xc3\x0d\x55\x1c\xe2\xea\x46\xff\xb0\x63\xf6\x81\xb5\x35\x51\x1a\xf1\xe6\x84\xec\xb4\x58\x21\x37\xab\xc9\x95\x1c\x96\x90\x81\x84\x08\xbb\xc1\x9c\x9f\x35\x6d\x49\x79\xd3\x55\xb3\xb2\x16\x0c\x55\x6e\xfc\xd9\x8a\xd2\x15\x47\x47\x4a\x43\xa2\x74\xe1\x8f\x6a\x13\xb5\x21\x0b\x9f\xf8\x6a\x97\x63\xd7\x97\x63\x0b\x9c\x8b\x0f\x0d\x8b\xa3\xd9\x03\xd6\x88\x87\x23\x62\x93\x23\xdf\x88\xb2\x94\x38\x92\xf2\xd2\x62\x40\xce\x1f\x73\x9e\x1c\xe0\x5f\x80\x1c\x28\x05\xf5\x09\x57\x6e\x9c\x8a\xe9\xe3\xfe\x0c\x62\xff\xe6\x0a\x9d\x4e\xd6\x19\xcb\x71\xa1\x86\x1c\xb8\x27\x61\xce\xd5\xfb\x7a\x16\x3c\x74\x75\xdd\xe2\x35\x99\x55\x59\x86\xea\x0d\x0f\xf4\xf7\x1c\x5a\x5b\x2d\x9e\x8d\xcf\x2a\x4d\x4d\xaf\x70\xe8\xf5\xd9\xb5\x39\x4b\x36\x8c\x2c\x4c\x28\x71\x67\x84\x70\xad\x7f\x12\x85\x38\x97\x23\xc1\xb3\xfc\xe0\xc0\x9a\xe3\x59\xb1\x75\xed\x73\xb2\x07\xf6\x2e\x76\x15\x2f\xfe\x49\x77\xba\x37\x2b\x36\xd1\x59\xef\xc8\x69\xf1\x18\xff\xb4\x64\xdd\xfc\x61\x75\x78\xa4\x0a\x6d\x97\xc6\x73\xc8\x77\x9e\xec\xa7\x31\xd9\xc2\x31\x7b\x82\x24\x33\x03\xfc\x41\x2e\xad\x1c\x49\x66\xd2\x44\x45\x53\x57\x33\x9a\xd8\xe1\x71\xee\x14\x93\x3d\x27\xae\x63\x5e\x52\xe1\x0c\xf7\xd6\x8f\x52\xe6\xb8\x17\xad\x10\x3f\xfd\xf4\x5c\xf3\x4d\xdb\x36\x95\x8b\xdf\x3c\xfc\xcb\xea\x35\xfb\xba\x7a\x76\x14\xa0\x50\x95\x26\x22\x64\x69\x6f\xf5\x9c\xa2\xb8\xa3\xa8\xc9\x98\xb5\x7d\xf7\xa5\x2a\xee\x19\x84\x10\x9f\x5c\x3e\xaf\x52\xbc\x29\xfe\xdd\xa7\x86\xef\x1f\x2e\x4c\x89\x97\xf8\xd9\xed\x3b\x47\x16\x93\x7d\x60\x87\x05\xde\xf0\xe4\xa4\x88\x70\x82\xb0\x1d\x71\xf4\x12\x87\x61\x7a\x97\x37\x11\x10\x06\x4c\x6f\xa8\x02\x46\x84\x0a\x59\x56\xa0\xb4\x8c\x6b\x4e\xf0\xa6\x4c\x02\x73\x5c\x59\x13\x00\xd0\xcb\xa0\x0d\x7c\x73\xb7\x37\x24\xc3\xac\x4d\xb3\xa6\x52\x85\x9e\xe9\x0a\xac\xad\x85\x4a\x5b\x69\xa0\x91\x81\x0b\x68\x6a\x83\xd6\x9b\x5e\x36\xcd\xe8\x69\x77\xb6\x3f\x14\x5f\x95\x51\xdb\x29\x7e\xfe\xfe\x9f\x6f\xfb\x4b\xef\xdf\xee\x38\x52\xbe\x78\x74\xda\xb4\x75\xd9\x08\x47\x98\x9a\xab\xac\x2e\x53\xe4\xa9\x3f\xc5\xa7\x0e\x0c\x8e\xc7\xe1\x7f\xbc\xf7\xd7\x2d\x6b\xc5\xff\x4d\x3c\xbc\xbd\x77\xb4\x37\xc7\x14\x4f\xef\xd3\x59\xc8\x66\xee\x0d\xfe\x30\x16\xe0\x00\xdd\x53\xe4\x7f\x58\x90\xa4\x91\xcf\x87\xe2\x71\x34\x99\x83\xbf\xc6\x02\x44\xd2\x58\x89\x4f\x01\xc8\x4f\xf8\x31\xd0\xb0\x7a\xc0\xb4\x0e\x3c\xf0\x88\xd6\x5b\xa5\xf1\xf0\xa5\xac\xc4\xbf\x9a\xf5\x00\x2d\xc9\x6d\xd4\xc7\x68\xa3\x41\x03\x51\x26\x8d\x46\x52\x2d\x59\x48\xd3\xc4\x61\xb2\xd6\x1c\x70\x9a\x6c\xd6\x38\xf7\xfe\xe2\x17\x68\xc3\xed\xe7\x1e\x9c\x33\xe7\xc8\xdf\x6f\x5e\xff\xf1\xb2\x69\x9b\x3b\xb3\xb3\xba\xb7\x77\xcc\xfd\x18\x6f\x3f\x8e\x37\xf4\x3f\xf1\xed\xee\xab\x76\x5f\x78\x62\x01\xde\x2e\xce\x2b\x5d\x7d\xdf\xd0\xc6\x05\xf7\xae\xf1\x8a\x4b\xff\x7f\xc0\x1f\x82\x30\x00\xb2\xe6\xdf\xd6\xe0\x56\xa9\xca\x95\x0a\xc1\xf5\x34\xd7\x40\x59\x60\x0d\x6e\x75\x60\x71\xfa\x2b\xd4\xe0\x76\xe2\x5f\x8b\x93\x4b\x70\x1f\x3a\x84\xf4\x22\x79\x56\xfc\xf4\x0a\x15\xb8\x9f\x3d\x7e\xcb\x2d\x94\xb7\x04\x00\xf2\x04\xcd\xe9\x68\xf7\x5a\x55\xc8\x7f\x48\x22\xd0\x8b\x88\xc0\xf3\xa5\x81\xf7\x1b\x35\x9a\x28\xb5\x5a\xbe\xdb\x4e\xbb\x8b\x5e\x1d\x76\x72\xf7\x9f\x10\xff\xfe\xe9\xa7\x62\x2d\xb9\x53\xac\x38\x81\x2f\x8c\x87\xe1\x0b\xc7\x51\xea\xa7\x9f\x8a\x7f\xa3\xdf\xd8\xe2\x3b\x47\x5a\xf9\x6a\xb0\xc1\xd5\xde\x50\x2d\x22\x5c\x0c\xe2\x89\xb4\x98\xa2\xa6\x77\x79\x6d\x61\x28\x14\x42\x57\xab\x10\x16\x10\x3d\xbc\x57\xd3\x03\xda\x10\x04\x50\xd1\x04\x84\xd0\x45\x53\xcb\x37\x27\xfc\x77\x98\x74\x79\x49\x72\xd0\x06\x36\xab\x45\xa3\xd1\xd1\x5a\x4a\x1a\x7a\x3f\x83\xc6\x12\xd0\x3a\xca\x97\x6d\x44\x2e\xf9\xaa\x86\x06\xdf\x8c\xf6\x88\xcb\xfe\xf2\x97\x84\xfc\xfa\xcc\x94\xea\x32\x97\x36\x21\xa9\xb5\x6b\x5e\x76\xf7\xed\x83\x45\xcf\x3f\xff\xdd\x77\x7c\xb5\xf8\xdd\xeb\x07\x8e\x6f\x2d\x99\x96\x13\x23\x84\x84\xf2\xbf\xd6\xc4\x45\x85\xe4\xf4\xdf\xbd\xf4\x9e\xe3\x07\x5e\x47\x21\x34\x8e\x1c\x80\xbc\xa6\x4a\xc5\x56\x30\x03\x20\x15\x54\xf9\x96\xa1\x1e\x08\x79\x02\xa3\x53\xa8\xc7\x1f\x6b\x4e\x71\x8c\x0a\xce\x08\xdc\x80\xba\x65\x9c\xee\x20\x9c\xa9\x0a\xce\x3e\xb8\x01\xf5\xca\x38\xbd\x41\x38\x0b\x15\x9c\xc3\x30\x8a\xe6\xca\x38\x73\x83\x70\x72\x14\x9c\x21\xdf\xd7\x8c\x0e\xbe\x9c\xce\x8d\x0a\xce\x21\x88\x46\x17\x64\x9c\x0b\x81\x38\xea\x0e\x3f\x0e\x7a\xd5\xf7\x15\x3a\x24\xe1\x70\xa7\xd0\x21\x19\x67\x9a\x58\x42\xd6\xf3\x2f\x62\x2b\x58\x40\x9a\xd7\xeb\x9d\x3c\xcb\x31\xc5\xb3\x98\xf7\xdd\x00\x64\x48\x15\x87\xad\x60\x93\xfb\x66\x2d\x9a\x01\x21\x4f\x20\x74\x0a\xcd\x90\x69\x30\x1c\xbd\x82\x33\x02\xbb\xd0\x74\x19\x67\x7a\x10\x8e\x57\xc1\xd9\x07\xbb\xd0\x4c\x19\x67\x66\x10\x8e\x55\xc1\x19\xf2\x5d\x62\x38\x78\x02\xe7\x39\x00\x12\x46\xc7\xca\x21\xf3\xd3\x44\xc7\x0a\x05\x8c\x15\xc3\x31\x2a\x38\x23\xb0\x88\x8e\x15\x0a\x18\x2b\x86\x33\x55\xc1\xd9\x07\x8b\x68\x1f\xa3\x80\xb1\x62\x38\x39\x0a\xce\x90\xef\x2d\x86\x13\x30\x0e\x9b\x00\x48\x35\x1d\xcf\x5c\x79\x3c\x37\xd0\xf1\x44\x01\xe3\x39\xdd\x77\x9e\x6c\x52\x15\x62\x2b\xe4\xc9\x3c\xcf\x46\xab\xe4\x31\x5f\x15\x84\x53\xa0\xe0\x8c\xc0\x1a\x34\x2c\xe3\x0c\x07\xe1\xcc\x55\x70\xf6\xc1\x1a\xb4\x5a\xc6\x59\x1d\x84\xb3\x41\xc1\x39\x0c\x9b\xd0\x88\x8c\x33\x12\x84\x53\xa3\xe0\x0c\xf9\x3e\x62\x74\xf0\x04\x9d\x2d\xbe\xf3\xa4\x95\xf6\x61\xa1\xcc\xf3\x82\x49\x7d\xc8\x70\x12\x15\x9c\x11\xb8\x1a\x75\xc8\x38\x1d\x41\x38\x75\x0a\xce\x3e\xb8\x1a\xcd\x96\x71\x66\x07\xe1\x64\x2a\x38\x43\xbe\x33\x0c\x07\x4f\xe0\x98\x24\x3d\x9c\xf2\x53\x22\x7f\xeb\x9a\x49\xfc\x8c\xf8\xce\x93\x26\xfe\x43\x6c\x85\x6a\x99\xe7\x7a\x88\x07\xf5\x13\x18\x8d\xc5\xfb\x63\xa9\x19\xce\xfb\x32\x8e\x00\x23\x7d\x06\x86\x21\xe7\x54\xa3\x70\x41\xa5\xc0\xf7\xf5\x25\x30\x78\x42\x20\x3c\x55\x81\x1f\x1e\x4a\x64\xf0\xc4\x00\x38\xff\xb9\x02\x1f\x7a\x83\xbe\x8f\x83\xdf\xaf\x53\x78\x3c\xe4\xfb\x27\x1c\x63\x18\xc7\x82\x78\x54\xc5\xf8\x69\xa0\x57\x5f\x9f\x2b\x61\x70\x63\x73\x19\x8d\xb5\x62\x09\x29\x25\xad\xd8\x0a\xb5\x57\x5c\xb3\x2b\x7d\xe7\xc9\x10\xff\x11\xb6\x42\xbd\xdc\x0f\xcd\x10\xd0\x0a\xfa\x0d\x86\xf3\x37\x19\x47\x80\x91\x81\x58\x86\x11\x1b\x40\x43\x50\x2b\xf0\x7d\x03\xc1\xed\x64\xef\xff\x53\x81\x0f\xfd\x31\x91\xb5\x42\x86\xff\x0e\x80\xcc\xe6\x7f\x8b\xad\xb0\x93\x5e\xd6\xad\xba\x95\xc5\xbf\xb3\xdf\x5f\x60\xbf\xd3\x71\x7c\xc8\x27\xb2\x71\xf4\x89\xf2\x38\x32\x9c\xcf\x15\x9c\x7d\xf0\x10\x20\xd6\x42\xe4\xe7\x9f\xe1\xfc\x51\xc6\x11\x60\x28\x86\x62\x60\x8a\xe1\xf3\xc1\x28\x00\x99\x41\xc7\x69\x3a\x1b\xa7\x91\x44\x46\x41\xe6\x6f\x90\xde\xcd\x91\xe6\x4a\x9b\xdc\x47\xf3\x26\xcd\x15\x86\xf3\xbe\x8c\x23\xc0\xc8\x86\xe0\xb9\x42\xe1\x74\xae\x30\xf8\xbe\x0d\xc1\x73\x85\xc1\x53\x95\x6f\x1c\x86\x6b\x20\xa0\x17\x03\xbe\xf1\xb9\x42\x63\xe8\xef\xc1\xf3\xe5\x4e\xdf\x39\xd2\xc4\xbf\x8a\xad\xd0\x29\xf3\xd9\x07\x01\xa3\x4d\x69\x30\x9c\x97\x64\x1c\x01\x46\x36\x61\x86\x81\x03\x69\x7c\xa5\xc0\xf7\x6d\x12\x18\x5c\x08\x84\xbf\xab\xc0\x87\x3e\x13\x58\x5f\xca\xf0\x02\xb1\x89\xbc\x4e\xe9\xcf\x91\xc7\x6c\x37\x04\x7c\x81\xf2\xc0\x70\xde\x95\x71\x04\x18\x82\x60\x1a\x74\x2f\x12\xbe\x52\xf6\xab\x61\x9f\x88\xaa\x64\xb9\x54\x15\xb4\x7e\xc7\xd8\xbc\x07\x01\x86\xdf\x63\x73\x86\xed\x75\x95\xca\xbb\x07\x00\xd0\x41\xf9\xdd\x83\x41\xef\xfa\x94\x75\x77\xe0\xaf\xbd\xac\xa7\x7b\x59\xde\xc3\x44\xb1\x8b\xd6\x16\x4f\x06\x13\xd4\x78\x2b\x4d\x48\xe0\xe3\x10\x70\xe1\x08\x41\x04\xbd\x45\x2a\x27\x40\x5a\xa0\x42\x92\x02\x45\xfc\x29\x1c\xa8\x2e\x5a\x89\x9b\x01\x52\x8c\x90\x0c\xc9\x9a\x58\x8b\x4d\xa3\x56\xc7\x39\x10\x32\x47\x70\xcc\x57\xaf\x78\x89\x0a\xdc\x85\x9c\x89\x33\x21\xce\xc4\xe1\xef\xd1\x9f\x6a\xb3\x4a\xd3\x22\x93\x2d\x49\xe9\x11\x39\x89\xdd\xb5\xd9\x6d\xa5\xe6\x9a\x9a\x36\xb1\xa9\x43\x7c\x17\xbd\x1f\x8f\xb2\xef\xe0\xc7\x7e\x98\x1e\x9d\x9e\x99\x97\x90\x64\x8b\x10\xee\x89\x4c\x4a\x28\x68\x71\x96\x6d\xc8\x43\xa9\xe2\xef\xf9\xb1\x4b\x2b\x70\x2c\x60\x18\x11\xbb\x48\x13\x69\x85\x0a\x68\x85\xd9\xde\xce\x5a\xa4\x52\xdb\x38\x0c\xaa\x02\xc4\x83\x0b\x09\x3c\x69\x04\x0e\x23\xcc\xd1\x94\x7b\x6a\x15\x52\xf7\x03\xc6\x34\xf7\x41\x3d\xad\xcd\xc6\x8e\x24\x9a\xfc\xf9\xea\x2a\x85\xe6\x4a\x6f\x43\x9d\xb7\xb5\xb2\xd5\x53\x98\x9f\x9b\x16\x6d\xb6\xda\x42\xd5\x71\x0e\x8b\xd5\x6a\x53\x2c\x4d\xa7\x53\x0e\x4a\x37\x15\x04\x1a\xd1\x57\x6a\xaf\x2d\xc0\xb0\xd6\x73\x99\xea\x30\xde\x50\x3a\xb5\xcb\x39\xe3\xe6\x85\x45\xbe\xf1\xbd\x03\xf3\x67\xb5\x8a\x67\xcb\xd6\x3e\xbc\x7c\xc1\xc3\x57\xd7\xe9\x75\xce\x49\x1d\x52\xf5\x7c\x46\x43\x71\xc6\x94\x5b\x2b\x7b\x8a\x13\xa7\x85\x6a\xb3\xe3\xe3\x32\x4d\xda\xdc\x8e\xf5\x75\x47\x9f\xf2\xb6\xce\x99\x5a\x56\x7b\xf5\xdc\xc2\xdc\xb9\xbb\xe6\x8a\xb9\x9d\xab\xed\x9a\xcb\x3b\xab\x74\xfd\x99\x98\x14\xbb\xee\xc9\xb8\xac\x0a\x4b\x51\x23\x9d\x2b\xd3\x7c\xe7\xc8\x7a\x55\xb2\xac\xcf\x48\x73\xf5\x14\xea\x92\xf7\x89\x2e\x79\xae\xac\xf5\x9d\x23\xa5\x74\x5d\xd7\xca\x38\xdb\xc0\x30\x91\x59\x33\x80\x4e\x83\x42\x67\x1f\x9c\x9a\xa4\x67\x50\x3a\x74\xfd\xd7\xca\x38\xdb\xa8\x9c\x45\x01\x72\x96\xd1\x69\x52\xe8\x1c\x84\x12\xb4\x4c\xa6\xb3\x2c\x88\x4e\xa8\x22\xcf\x0f\x12\x07\xa3\xe2\x60\x6b\x87\xd1\x98\xaa\xd0\xd8\x0f\xf9\x3f\xc2\x8b\x5a\xa1\xb1\xff\x52\x00\x27\x3e\x1f\x6c\x96\xec\x19\xba\x86\xac\x8c\x86\xef\x30\xd5\xad\x70\x80\xfe\xb5\xd2\x77\x5e\x48\x11\x62\xc1\x0a\x75\x2c\x63\x0b\x17\x0b\x8a\x5e\x26\x9c\x51\xf4\xb2\x61\x10\x90\x47\xfe\xbe\x67\xe2\x5d\x32\xc4\x3f\xa1\xec\x07\xc3\x7f\x43\x6c\xfd\xa1\x40\x3d\xb2\x48\xa1\x71\x00\x42\xd0\x9d\x32\x8d\x3b\x03\x69\x08\xa0\xd0\x38\xf0\xd1\x5c\x46\x63\x6e\x20\x8d\x6a\x85\xc6\x41\x88\x46\x0b\x65\x1a\x0b\x83\x68\x84\x29\x34\x0e\x9e\xcd\x64\x34\x32\x25\x04\x04\xbb\xc5\x2e\x32\xc4\x8f\x81\x19\x2a\xbd\xe5\x51\x88\xc3\x1a\x44\x38\xdc\x08\x6a\x00\xa4\xa6\x56\x1d\x2d\x2b\x43\x4d\x28\xdc\xcd\x4b\x56\x9d\x64\xe5\xd1\x15\x55\x49\x2b\x50\x18\x2c\x36\x8d\x86\xd9\x77\x26\x8d\xe9\x8a\xab\xa2\xd0\x9f\xd9\x85\x1b\x7f\x04\x3f\xb5\x79\xd2\xac\x2f\x29\x1e\x3f\xcc\xbd\x35\xde\x80\x3b\xf0\x16\x71\xd1\xc7\x97\x4f\x6b\xcf\xca\x5c\x7e\xec\x53\xf1\x76\x00\x0c\x2b\xc5\x15\x64\x88\xb4\x42\x19\x4c\x85\x59\xde\x76\x27\x22\x5c\x59\x49\x81\x81\xf0\x24\x0c\x01\x3f\x85\x56\x23\x02\x15\x70\x44\x25\xd9\x56\xb2\xed\x5c\x3f\x61\x84\x35\xc9\x19\x62\x50\x25\x6a\xae\x28\xaf\xa9\x2e\x9f\x5a\x31\xb5\xb8\x28\x27\xcb\x9e\x6e\x36\x59\x6c\x21\x6a\xbd\xc3\x72\xa5\x06\x04\x56\x10\xd4\x99\x02\x7d\x6b\x36\x77\xa1\x92\x96\x9b\xbb\x76\x52\xd3\x2c\x96\x95\xbf\xd8\x56\xd7\x7a\xcb\xb3\xab\xd6\x9e\xdc\x5a\x35\x9e\xaa\xce\x6b\x5e\x50\x6c\x6f\x6b\xf4\xc6\xde\x1c\x3f\x63\xd5\xce\xe9\xc6\x64\x77\xc7\xca\x9c\xd6\x92\xf4\x50\xf4\x12\x4e\x2e\x6a\x33\x5c\xde\xf8\xac\xd9\x19\xa1\x5d\x37\x9f\x18\x48\xbf\xfa\xf5\x3d\xed\x2d\xb7\xbc\xb8\x7e\x5d\xe1\x9c\xaa\xb4\x28\x63\xb6\xf1\x4e\x4b\x7d\x61\x2a\x57\x9c\xc1\xc5\x9b\xca\x3b\x5c\xfa\xcc\x56\x8f\x09\x26\xe6\x27\x9d\xdb\x36\x79\x7d\x84\x4c\xb2\x2d\xd8\xbc\x08\x51\xe6\xc5\xfe\x8f\x82\xf5\x99\x4e\xdf\x79\xb2\x8c\xae\x77\xbb\xbc\x96\xf7\x4e\x5a\x63\xab\xc4\x0e\x52\x4f\xd7\xfb\x54\xb6\x8f\x2e\x0c\xde\xef\x19\x0d\xaf\x42\xe3\x00\xe8\xd0\x01\x99\xc6\x81\x40\x1a\x74\x9f\x62\x34\x0e\x7c\x10\xb0\x4f\x29\x34\x9a\x14\x1a\x07\x21\x79\x92\xbc\x60\x7c\x84\x2a\x34\x0e\x7e\xe6\x60\x34\x64\x79\xd1\x29\xea\xc9\x32\xaa\x63\x51\x1a\xe8\x76\xf8\x50\x7c\x86\xd1\x10\x9f\x09\xa2\x71\x4c\xa6\xa1\x42\xfb\x20\x0c\xee\x66\x54\xee\xf6\xcb\x2e\xc9\xb6\xa9\xa1\xed\xc9\x90\xfb\x64\xe9\xa4\x7e\x95\xf4\xac\x0e\xd5\x43\xd8\x0a\x8d\x32\x4e\x13\x7a\x5a\xc6\x79\x3a\xc8\x8e\x5a\xa8\xd8\x51\x87\x61\xd9\x24\x1b\x89\xea\x73\x54\x7e\xed\x94\x71\x7e\x36\x49\xc7\xa0\x74\xa8\x0e\xe1\x90\x75\x88\xf7\xa9\x0e\x81\x02\x74\x08\xa6\x17\xde\xa5\xe8\x85\xc3\xc6\x7f\xc8\xda\xe5\x3f\xd8\xd5\x48\x85\x9f\x4a\x85\xce\x01\xdf\x87\x54\x9f\x40\x01\xfa\x04\xa3\xf3\xa9\x42\xe7\x40\x6a\x35\xe3\xa6\x9a\xc9\x91\xe7\xc4\x2e\x12\x46\xe5\x48\x89\xb7\x28\x1a\x11\x4e\x4b\xfd\x23\x6a\x7f\x59\xb6\x52\x9a\xdc\x97\xeb\x16\x10\x75\x24\xca\xcb\xb1\x92\x6f\x96\x05\x08\x93\x20\xfe\xc8\xfb\x2b\xca\x10\x97\x49\x63\x7a\x8e\x6b\x14\x3f\x41\x89\xa2\x78\x05\x19\x22\xfe\x1c\xe9\xc4\x73\xfc\xd8\xc7\x97\x74\xa7\xaf\x20\x42\x4e\x73\xe7\x00\xc3\x3b\x62\x17\x99\xca\x7f\x0c\x26\xc8\x83\x3a\x6f\x75\x80\xc4\x0b\x09\xa1\xf9\x57\xca\x69\x69\x77\x89\xe5\x0a\x5a\x92\xe8\x0a\x42\x2f\x3b\xd3\xe2\x17\x7b\xa1\x94\xe9\x7f\xcb\xf2\xa4\x63\x38\x64\x11\x8f\x5d\x89\xfd\xb7\x51\xc1\xe4\xf3\xb9\x4b\x0f\x5d\xb1\x2d\x78\xed\xe5\xe7\x15\xca\x38\x36\x2b\xe3\x78\xd0\x77\x06\x2d\x97\xc7\x71\xb9\x3c\x8e\x2b\x7c\xe7\x79\xaf\xaa\x0c\x5b\x21\x93\xcd\x4f\xf4\x67\xd4\x26\xe3\xb4\xc9\x38\xa7\xc5\x26\x32\x8b\xff\x00\x5b\xe1\x1e\x79\x0e\x9f\xf3\x7d\x2d\xcf\x9a\xaf\x65\x9c\x6d\xe2\x14\x72\x8e\xea\xa6\x59\xf2\x9a\x7a\x54\x3c\x2e\xaf\xa9\xe3\x32\xce\x6d\x62\x38\x79\x94\xee\x5f\x2d\x32\xce\x9d\xe2\x09\x19\xe7\x84\x8c\x73\xa7\x34\xaf\x54\x18\x5b\x21\x9b\xe9\x1e\x3e\x17\x2a\x95\xf9\x29\x0d\x9c\x7b\xaa\x45\xd8\x0a\xad\xb2\x7e\x72\x64\xd2\xfc\xbc\x53\x34\x93\xd9\x94\x9f\x6c\xf9\x5b\x4f\x88\xaf\xca\xdf\x7a\xd5\x4f\x47\x4c\x23\xb3\x29\x3f\xad\x32\xce\xa7\xe2\x6b\x32\xce\x6b\x81\xfc\xd0\x7d\x9b\xd1\x19\x02\xd1\x77\xb7\xdc\xf6\xbb\x03\xf8\xb9\x28\xf0\xe0\xa7\x33\x84\xbe\xf6\x7d\x2e\xe3\x7c\x1e\x44\x47\xe1\x07\x0e\xc2\xad\xe3\xef\x33\x9c\xf1\xf7\x03\xe8\x3c\x2a\x80\x9f\x0e\x1c\x44\x0f\x8d\xbf\x27\xe3\xbc\x17\xe4\x4f\x31\x2a\xfe\x94\x11\x58\x3d\xc9\xce\xa7\xb6\x1d\xd5\xdf\x98\x6d\x37\xb2\xcc\x10\x94\x17\x7d\x93\x98\x48\xaa\x29\x2f\xb9\x4a\xdf\xbc\x20\xb7\xfb\x05\x3f\x0d\xd1\x4c\x66\x50\x1b\x7a\xba\x8c\xf3\xf8\xa4\xfe\x63\xbc\x34\x2a\xbc\xec\xf7\x7d\x3e\xc9\x47\xc4\xec\x4c\xb5\xc2\xcb\xfe\x7f\x04\xe9\x5d\xbe\x01\x0a\xd7\x29\xdf\x19\x1a\xdf\xe3\x1b\x97\xfb\x6e\x3c\xc8\x1f\xa3\x52\xfc\x31\xc3\xbe\xf3\xa8\x53\xd6\xcd\x3a\x65\x1c\x66\x27\x8e\x31\x3b\x51\xb2\x8d\xbe\x64\x6b\x80\xbd\xdb\xa1\xbc\x7b\xc0\xf7\x2f\x74\x5c\x7e\xf7\x78\xd0\xbb\x3e\xc5\xc6\x3c\xf0\x4d\xf0\x9e\x23\xd1\xb8\x5b\x35\x5f\xa1\x71\x1f\x5c\x3d\xc9\x1f\x24\xd1\x38\x40\xf7\xcf\x36\x19\x87\xe9\xba\xb2\xa5\x4a\x79\xd9\x0e\x40\xc6\x54\x5a\x6c\x85\x02\x79\xec\xe6\xa1\x16\x99\x97\x16\x46\x07\x19\x01\x48\x1f\x1d\xbb\x99\x6c\xec\xda\x82\xc7\x6e\xbb\x68\x26\x63\xb4\x9d\x05\xf2\xb8\x3c\x40\xc7\x05\x4f\x8c\x0b\x0a\x13\xcd\xa4\x8f\x8e\xdd\x4c\x86\xe3\xfb\x6e\xd2\xd8\x31\x5e\xca\x15\x5e\xf6\xfb\xfe\x87\xae\x7b\x1c\xb0\xee\x5f\x94\x78\xa1\x63\xc7\x78\xd9\xff\x5a\xb0\xce\xdc\xed\xfb\x9c\xdc\x42\x7d\x72\x2e\xbf\xdd\x4b\x7d\x72\x28\xc0\x27\xb7\xd1\x77\x8e\xcc\xa2\xed\x99\xc5\xda\xd3\x13\xdc\x1e\x46\x63\xae\x42\x63\x1f\xec\xa6\x7d\x8b\x02\x7c\x76\x94\x06\xd5\x2b\x18\x8d\x7d\x3d\x97\xf1\x21\x66\x91\x5b\xe8\x7e\xee\x62\xfe\x9e\x8e\xef\xe4\x19\xf4\x9d\xb2\xa7\x6d\x14\xb3\xc8\x2c\xda\x27\x8c\xc6\x7a\xfd\x64\x9c\x6e\x31\x32\x80\x8e\xd4\xb7\xef\x88\x27\xe5\x7e\x3b\xe9\xe7\x45\x8c\x0c\xa0\x23\xe1\xdc\x35\x09\x87\xb5\x69\x9e\xd2\xa6\xfd\x10\xfe\x23\x6d\x52\x2b\xfc\xec\x7f\x27\xb8\x4d\x09\xa2\x95\x3c\x41\xc7\xd9\x2d\x7f\xe7\xa8\xf8\x86\xfc\x9d\x37\xfc\x7e\x41\x31\x8e\xb4\xf2\x92\xbe\xdf\x21\xe3\x7c\x2e\x3e\x27\xe3\x3c\x27\xe3\x24\x88\xd5\x01\x74\x04\x58\x9f\x11\xce\xbe\x13\xce\xbe\x33\x53\xac\x22\xf7\x90\x51\x6c\x45\x3f\x63\xf0\xbc\x29\x0c\x3e\x85\xc1\xb7\x88\xee\x89\x6f\x80\x00\xeb\x97\xb1\xbe\xa2\x67\x2c\xaa\x7a\x3f\x7f\xb0\xdf\xf7\xcf\x2b\xf8\x2d\xcf\x91\x37\x84\xa7\xc0\xcf\xdf\x10\xfa\x2d\xdc\xc7\xa8\xdf\xe7\x5f\x13\xcc\xb7\xd9\xa7\xf8\x36\x0f\xc3\x76\x34\x47\xa6\x33\xc7\x2f\x3b\x7d\xe7\x48\x93\x10\xae\xf8\x78\x0e\xc3\xb5\xa0\x62\x74\x54\x41\x74\x84\x7f\x29\x74\x86\x7d\xdf\xa0\x0a\x99\x4e\x45\x20\x1d\x7e\x9f\xe2\xc7\x19\xfe\xfa\xbc\x3c\x07\xce\x2b\x73\x80\xf1\x53\xae\xd0\x39\xe0\xfb\x0e\xed\x93\xe9\xec\x0b\xa2\x73\x56\xa1\x73\xe0\xdb\x06\xc6\x4d\x83\xdc\x67\x94\xc6\xf5\x0a\x8d\x43\xa0\x46\x5f\xc9\xfe\xda\xaf\x82\xda\x94\xa7\xb4\xe9\x10\x48\xfa\x30\xf5\x08\x1d\x08\x6c\xd3\xbd\x54\xe7\x2e\x94\x65\xca\x75\x93\xfc\xbe\x12\x9d\x43\xfc\x37\x0a\x9d\xfb\x60\x7b\xa0\x67\x89\x9d\x55\x89\x77\xd3\x9a\x16\x36\x28\xf0\xe6\x85\x23\xc0\x11\xec\xbe\x88\x04\x43\xf3\x05\x1e\x73\x5c\xa9\x52\xf4\xa3\x96\x56\x82\xb1\x81\xcd\xac\xd3\x5b\xec\xf4\x4e\xaf\x56\x10\x54\x82\x70\xb9\x3a\x23\xd9\x40\x5a\x93\x96\x25\x3c\xd2\x92\x16\x84\x6e\xbd\xc1\x9a\x1c\xa4\xc4\xd8\x17\x3f\x72\x55\x15\x42\x71\x08\x2d\xea\x1b\x5c\x8e\x10\x3f\x76\xa9\xe4\xc4\x17\xae\x44\xaf\x35\x40\x7d\xa9\xa9\xe4\xea\xaf\x7d\x6a\x3d\xf7\xe2\xa5\x92\xd1\xdb\x6e\x1b\xe5\x5e\xa4\x7c\xdd\x29\x76\x91\x3e\x52\x0c\xd9\xd0\xef\x8d\x71\x20\xc2\x65\xc7\x1a\x38\x2c\x19\x75\x78\x8a\x5c\x62\x36\x6a\x7a\x97\x37\x41\xce\x57\xea\x67\x9e\x9a\x73\x3d\xcc\x9c\x4b\xb8\x1c\xda\x10\x08\xed\xf6\x86\x68\x2d\xba\x0c\x8b\x8d\xde\x1a\xbd\x92\xb6\x66\xbb\x42\x75\x2e\x0d\x29\x9a\xa4\xaa\x55\x57\x45\x16\xee\xed\x99\x79\xcb\xc2\x42\xa4\xd7\x66\xd4\xe4\xcd\x18\x4a\x40\x93\xcc\xb6\xd2\x0d\xb9\xb7\xb4\xf5\x14\xac\xfa\xd9\x26\x7c\xcd\xf8\x96\xaa\xd9\x85\xb1\x15\x85\xf8\xbb\x8b\xbf\x95\xc6\x30\x1e\x80\x9c\xa4\xfe\x0b\x8f\x2c\x03\x97\x4f\xda\x47\xa5\xf5\x76\x80\xfa\x28\xbb\x99\x0c\x1c\x0a\xf6\x51\x32\xff\xff\x54\xc5\xff\xbf\x0f\xae\x99\x44\x83\xf9\x20\xbf\x52\xfc\x94\xfb\x60\x37\x04\x50\x81\x89\x73\x84\x1c\x85\xce\x90\x7f\x4f\x0f\x38\xd3\xe9\x06\x20\xdb\xe8\xb9\x46\xa9\x2c\xf7\xaf\x9d\x74\xae\xb1\x0e\x80\xac\xa0\x3e\xd1\x1e\x19\xe7\xc0\x24\x7b\x85\xd1\x99\xaa\xd0\x39\x08\x3c\x5a\x22\xd3\x59\x12\x44\xe7\x82\x4c\x47\x80\x83\x26\x3d\xa3\xa2\x97\x65\x3f\xa5\x51\xaf\xd0\xd8\xef\x1b\x9f\x24\x87\x18\x8d\xaf\x15\x1a\xfb\x63\x83\xfb\x2e\x17\x80\xdc\x4d\x75\xaa\xad\x32\xaf\x7f\x9f\x74\x76\x99\xed\x3b\x4f\x1e\xa1\xe7\x01\xd7\xc9\x38\xfb\x21\x16\xd4\x4f\x70\xec\x44\x80\xb6\x27\xd7\x77\x2f\xb9\x46\xd5\x8b\xad\xb0\x4d\x39\xa3\xba\x0b\x42\x9e\xe0\xd0\x29\x74\x97\xa2\x27\x8c\x90\x85\xfc\x7b\xd8\x0a\x3b\xd8\x7e\x38\x4d\xcb\xa8\x68\x99\x3e\xf4\x08\xbb\xd3\x8e\xad\xe8\x10\x95\x99\xaf\x88\x9b\x7d\x43\x8c\x17\xdf\x10\xa3\xf1\xdf\xe0\xf8\xef\x09\xfa\xe5\x3a\x7a\xe5\x0d\x59\xd3\xf6\x9d\x50\x64\x1d\xcd\x81\x20\xd9\x70\x68\xbf\xec\x3b\xef\x02\x23\xd3\x7c\x8c\xfe\x36\x31\x9c\xd3\x32\x8e\x00\x23\xab\x83\xfd\x02\x14\x2e\x4c\x51\xe0\xfb\x56\xa7\x30\x78\x4a\x20\xdc\xa6\xc0\x0f\x6f\x30\x31\xb8\x29\x00\x2e\xcd\x49\x19\x3e\xf4\x41\x0a\xd3\x9a\x82\xde\x6f\x52\x78\x3c\xe4\xf3\xc1\x29\x86\x71\x2a\x88\x47\x55\x9c\x9f\x06\x7a\xf5\x6f\xfd\xec\x3c\xa8\xdf\xbf\xc7\xb9\x49\x07\xd9\x8f\xad\xe8\x20\xdb\xc3\x62\x58\xfb\xe9\xfd\x7d\xda\xfe\x7b\x95\xf3\x30\x23\x9b\x19\x4a\xfb\x19\xce\x69\x19\x47\x80\x91\xbe\xe0\x73\x12\x0a\xa7\xed\xbf\x57\x3e\x0f\x4b\x61\xf0\x94\x00\x38\x6d\xdf\xbd\xf2\x79\x57\x0a\x93\xce\x32\x9c\xde\x43\x97\x6c\x2b\x74\xbf\xcc\xc3\x72\x88\x63\x14\xe2\xfc\x3c\x30\x9c\xbf\x2a\x38\x23\xb0\x03\x02\x56\xc1\x04\x8e\x20\x28\x38\xfb\x60\x07\x3d\xaf\x41\x01\xe7\x35\x8c\xce\x79\x19\x47\x80\xa1\x6f\xe2\x19\x2f\xf1\x8c\x17\x7a\xc7\x9a\x8e\xd5\x23\xca\x3e\x6b\x62\x34\x4c\x7e\x1a\xf4\xde\x34\xff\x25\xb6\xa2\xa3\x32\xbf\xd3\x21\xc0\xbb\x12\x80\xf3\x4f\x19\x47\x80\x91\x25\xe9\x0c\x23\x9d\x7d\x87\xc2\x85\x58\x05\xbe\x6f\x49\x80\x0f\x52\x81\x3b\x15\xf8\xe1\x55\x59\x0c\x9e\x15\x00\xe7\x45\x05\x3e\xf4\x4e\x26\x9b\x11\xf2\xfb\xf4\x8e\x2b\x85\x8f\xc9\x3c\x8e\x40\x11\x6b\x47\x91\x9f\x47\x86\x73\x51\xc1\x19\x81\x51\x70\x31\x1c\x57\x10\x8e\x60\x51\x70\xf6\xc1\x28\x78\x18\x8e\x27\x18\x27\x4c\xc6\x11\x60\xe8\x07\x0f\xeb\x53\x0f\xe3\x85\xde\xfd\xa4\xf3\xe7\x38\xeb\x8b\xe1\xe0\xf9\xc3\xe6\xff\x09\x65\xfe\x0f\x9f\xe5\x59\x5b\xf9\xc0\xf9\x4f\x14\xf8\x81\xcf\x17\x30\xf8\x02\x76\x6e\xa3\x17\xbb\x68\x1e\x93\x1f\x3d\xb7\x51\x21\x5e\xe0\x57\xfb\x4f\x6f\xfe\x8f\xcf\x6d\x6c\x26\x15\x3b\xb7\x39\x87\x5e\xf7\x5c\xe1\xdc\xa6\x55\xce\x88\xa2\x41\xf9\x7b\xc9\xe8\xc5\x91\x2b\x9c\xdb\xbc\xf9\x3e\x19\x1d\x4f\x94\x64\x96\xb4\x26\x7d\x5f\x90\x0e\x3a\x47\x0e\xb2\x7e\xe9\x4d\x67\xfd\x22\xcf\x11\x0a\xa7\x73\x84\xc1\xf7\xf5\x66\x32\x78\x66\x20\x3c\x41\x81\x1f\xfc\xa8\x94\xc1\x4b\x03\xe1\x71\x0a\x7c\xff\xbb\xc1\xef\x4f\x97\x64\xa8\xa4\x53\x32\x19\x0a\xfb\x7d\x9d\x10\x20\xb9\x02\xd6\xfe\x09\x65\xed\x0e\xbf\x17\x7c\x8e\xcc\xd6\x3e\x51\xe0\x07\xfe\xba\x80\xc1\x17\x04\xc2\x23\x15\xf8\xc1\x4f\x73\x19\x3c\x97\xf9\xc8\x0e\x89\x5d\x34\x7f\x88\x19\x2a\xbc\xa5\x01\x9e\x27\x01\x54\x6a\x41\xd5\xa7\xf8\xdc\xff\xaf\x3d\xed\xfe\x64\x23\xdb\xaf\xe4\x69\x3f\x17\x90\x80\xe4\x0a\xae\x25\x32\xfa\xc1\x47\x4a\x5b\xc2\x95\xb6\xec\xff\x6b\xb0\x9c\xa3\x39\x46\xe8\x78\xdd\xc7\xc6\x6b\x63\x70\x7f\x33\x78\x94\x02\x3f\x70\x61\x98\xc1\x87\x03\xe1\x09\x0a\xfc\xa0\x18\x3c\x9e\x73\xc5\x38\x32\x9b\xca\xf0\xfb\x64\x5b\xe7\xf9\x49\xb6\x0e\xcd\x13\x42\x65\xf1\x11\x79\xbd\xfe\x04\x02\xb8\x0c\x90\x93\x26\x45\x4e\x1e\x86\x5b\x27\x9d\x49\x31\x39\x39\xc6\x70\x40\x80\x61\x1f\x04\xfc\x2e\x2a\xf2\xf3\x00\xea\x61\x6f\xf6\xb0\xf1\x7c\x45\xec\xa2\x39\x45\xcc\xe0\xf1\xba\x27\x7c\x9e\x00\x6a\x76\x29\xee\xff\x13\x8f\xa7\x9c\x80\xc4\x07\x57\x72\x19\x3e\x35\x91\x95\xe4\x8a\x5e\xc2\x97\x02\xfa\x20\x44\x69\xc7\xc1\xd0\x0c\xd6\x8e\x0c\x79\xde\xfa\xbe\xe0\xc3\x05\x1e\x5b\xd1\x03\xb2\x4f\xf0\xbe\x49\x7b\xd2\x3d\x62\x0a\xb9\x9f\xea\x17\x0f\xca\xe3\xb1\x41\x7c\x49\x1e\x8f\x97\xe4\xf1\xa0\xf9\x44\xf8\x57\xb1\x15\x3d\x24\xfb\xf2\xca\x27\x9d\xcd\xdf\x2b\x9a\xc8\x20\xa5\xf3\x90\x4c\xa7\x52\x7c\x59\xa6\xf3\x72\x20\x1d\x72\x9b\x82\x33\x04\x3d\xe2\x55\x32\xce\x55\x41\x38\x0a\x1d\x38\x08\xc6\xf1\x4a\xd9\x77\x56\x29\xe3\xd0\xfd\x8d\xca\xe2\x47\xe4\x38\x80\x60\x59\x7c\x50\x8c\x23\x31\x94\xc6\x23\x32\x2f\xbf\x9a\x34\xc7\xd8\x1e\x19\xae\xd0\xd8\xff\x6d\xf0\x3a\x60\x7b\xd3\x73\xca\xde\x34\x7c\x5a\xc3\xa4\x8a\x26\x70\x6f\x8b\x52\xe0\x07\x3e\x1d\x66\xf0\xe1\x09\xf8\x2e\x21\x5e\x81\xdf\xb7\x3a\x78\x6f\xa3\x79\x36\xe8\xbe\xf5\x18\x6b\x43\xa1\x8b\xbd\xef\x92\xe1\xa2\x89\x8c\xd0\x36\x3c\x26\xb7\x61\x1b\xed\x4f\x1c\xd0\x9f\x94\x86\x60\x55\x68\xec\xff\xb9\x87\xd1\x90\xf7\x2c\x9a\x43\x83\xca\xe6\xc7\xe5\xbd\x71\x3b\x04\x48\x67\xe6\xcb\x92\x70\xe8\x7a\x7f\x5c\x5e\x6b\xdb\x21\x60\xc5\x33\x1c\x31\x9f\xf4\xd0\x35\xfb\x38\xf3\x2d\xb8\x2e\xc9\x3a\xe8\x25\x45\x07\x65\x74\xe2\x14\x9c\xfd\xe2\x65\x72\x5e\xb4\x04\xe8\xb1\x52\x7b\x7e\x2e\xbe\x2e\x8f\xc9\xeb\x81\xba\x2e\x1d\x13\xe6\xc3\xd8\xff\x75\xf0\x98\xb0\x3d\xda\xab\xec\xe3\x87\x61\x0f\x14\x33\x8c\xe2\x60\x7d\xe0\x0d\x65\x1f\x1f\x26\xc9\x0c\x23\x39\x90\x46\x92\x02\x3f\xa0\xda\xc4\xe0\x9b\x02\xe1\x0b\x95\x6f\x1c\x82\x38\xf8\x03\xd3\x04\xfe\x10\xf8\x8d\x9f\x53\xfd\x6a\x4c\xb6\xd5\xef\x80\x00\x6d\x81\xda\xbd\xfb\xc5\x07\x68\x7e\x8e\xcb\x6c\x75\xc9\x48\x27\xdc\x6a\xd9\x64\xff\x37\xb6\xba\xe6\x47\x6d\xf5\xc0\x1c\x1e\x68\xe7\xfa\xa4\xd8\x20\xe1\x61\xee\x3f\xb2\xae\x2a\x30\xa5\xc7\x9e\xe7\xb3\xe2\x8b\x53\x03\x04\x48\x45\x19\xe7\x59\xba\xb7\x3f\x30\xc5\x87\x6c\x2f\xee\xa2\x32\xf7\xe7\xf2\x3c\xb8\x76\x92\xcc\xa5\x3a\x10\xc5\x61\x3a\xd0\xbe\xe1\xe0\xf1\x61\x3a\xd2\x57\x0a\x7c\xe8\x2f\xc1\x3a\x32\xcd\x77\x41\xd7\xed\x09\x36\xe7\x2f\x8b\x55\xa2\x70\xba\xcf\x32\xf8\xc1\xef\x02\xf6\x59\x05\x1e\xae\xc0\xf7\xff\x33\xf8\xfb\x2c\xf6\x66\x1b\x8b\x9f\x01\x15\x1c\x1d\xff\x48\xe2\xdb\xb7\x91\xfe\xbe\x1d\xac\x60\x5b\x28\xb5\xed\xe8\xb8\xeb\x72\x1b\xd6\xb7\x07\x80\x3c\x24\x6c\x05\x2b\x64\xc8\x38\xd3\x2e\x8f\xd7\xf2\x3d\x4f\x75\x0d\x89\x8e\x43\xc6\xd9\x32\x89\xce\x0d\xbe\xf3\x64\x97\xb0\x0d\xac\x90\x17\xc3\x78\xa8\xa4\xbf\xb7\x02\xf0\x99\xf4\xf7\x92\x85\xec\xf7\x10\xfa\xfb\x09\x00\x72\x27\xfd\xfd\xa4\x8c\xbf\x92\xf6\xf5\x31\xdf\x39\x52\x21\x3c\x8b\xad\xf0\x2c\x6d\xeb\xa3\x7f\xa2\xde\x49\xee\x94\xef\xa4\xb2\xe6\x68\x7b\xe9\x7d\x2b\x33\x7d\xde\x26\xad\x1f\xfa\x9c\x36\x71\x5e\x4c\x9f\x6d\x13\x76\x3a\x7d\x2e\x9d\x38\xf7\xa4\xcf\x19\x13\xe7\x4c\xf4\xd9\xa1\xd0\x3b\x47\x9f\xb3\xe8\xf3\x56\x00\x32\x9f\x3e\xe7\x28\xef\x57\xd3\xe7\xdc\x09\x1f\x3d\xff\x02\x16\x20\x8f\x3e\xdf\x01\x40\x6e\xa5\xf0\xfc\x09\x5f\x23\x7d\x76\x4f\xf8\x28\xe8\x73\x09\x7d\x4e\x06\x20\xbf\xa3\xcf\xc5\x01\xe7\x5e\xff\x3e\x2e\xf5\xbf\xf1\x73\x2c\xf1\x9d\x23\xbb\x84\x5b\xb0\x15\x4e\xd1\xbe\x3c\xfa\x56\x18\x93\x93\x61\x6c\xde\x5c\xe7\x3b\x4f\xf6\x09\x37\x63\x2b\x3c\xcd\xe0\x5f\x87\xb2\x51\x0d\x65\xf0\x6d\x62\x1f\x69\xa6\xef\x3f\xc3\xe0\xa7\xc3\x18\x5c\x7e\x9f\x8d\xd5\x55\xca\x58\x1d\xfd\xf3\x64\x9f\xf4\x16\xdf\x39\x32\x53\x78\x0d\x5b\xe1\x25\x36\x9e\xbf\x7a\x5e\x1e\xcf\xe7\x15\x1c\x69\x4f\x3a\x49\x8a\xb1\x00\xa3\x13\x31\x73\xa4\x15\x0b\xd0\x46\x9f\x1f\x15\xe7\x93\x7e\x0a\x5f\x43\x9f\x1b\x00\xc8\xf5\xf4\xb9\x4b\x19\xdf\xc3\xf4\x79\xf6\xc4\x1c\xa2\xb1\x6a\x8c\xaf\xa1\xb3\xc1\xb1\x6a\x94\x27\xfe\x13\x85\xa7\xa1\x3f\x46\x33\x78\x74\x60\x5c\xdf\x2d\xca\x79\xca\xe5\xfd\xc6\xda\xb4\x5d\x79\xff\xe8\xaf\x83\xe3\xf1\xb2\x7d\xe7\xc9\x51\xe1\x06\x6c\x85\x57\x19\xfc\x8f\x57\x8a\xb9\xfe\xf7\x71\xd0\xa3\x00\xa4\x84\xc6\x5c\xfb\xf7\xb0\x75\xc1\x31\xd7\x80\x98\x9f\x9e\x7f\x01\x2a\xc0\xe9\xcd\xbd\x3c\x57\x54\x60\xd1\x2e\x9a\x2d\x2a\x39\x30\x5b\x94\x30\x29\x5b\x94\xce\x9f\x0f\x2f\x38\x59\x94\x4b\x0e\x0e\xe1\xd6\x27\x54\x2e\x6e\x9d\xf7\xd8\x75\xd3\x5a\x77\x3e\x3d\xbc\xfa\x57\x37\x36\x8b\xff\xc4\xc6\xb2\x39\x65\x45\x9d\xa5\x46\x7b\xeb\x8a\xba\x85\x0f\x6d\xa8\x6e\xb9\xf1\xe9\x15\xb5\x37\x6d\x5e\x36\x2d\x0b\xc5\xe0\x8c\xa6\xc5\x15\x34\x0f\xd7\xd5\xb6\x9a\x92\x3c\x5d\x7c\xeb\xf0\x4f\xe6\xf5\xdc\xb9\xc4\x53\xb5\xfe\xc8\x82\xbc\xf6\x12\x53\x42\x5e\xb5\xcd\x5e\xe5\xca\xd4\x26\xcd\x1c\xd9\x3d\x7b\xfe\x1d\x83\xae\xb8\x82\xd6\xa1\xeb\xa6\x57\xcd\x2d\x4d\x8c\xcf\xae\xbc\xc2\xba\xfc\x6f\xd6\xc5\x0a\xdf\x79\xd2\x4c\xdf\xc9\xa4\xef\xdc\xe5\x5f\x6b\xe8\x7f\x26\xd6\x36\x3d\xc3\xca\x0a\x3a\xc3\x42\x13\x67\x58\x80\x7d\xe7\xc8\xdb\x34\x96\xe9\x2f\x72\x9c\x47\xca\xa4\x58\xa6\xff\x24\x83\xe8\xf8\xd1\xe7\xc7\xaf\x28\x93\x56\x00\x90\x0a\x95\x03\x5b\xe1\x3d\xd9\x4f\xff\x67\x74\x93\xfc\x8d\x9b\xe4\x6f\x5c\x49\xee\x04\xca\xad\xcb\xe5\xce\x06\x00\x52\x4f\xe1\xc7\xae\x28\x87\x68\x9c\x19\xff\x22\x16\xc0\x72\x45\xb9\x54\x09\x40\xfe\x49\x9f\x4f\x5c\x51\x2e\xd1\x18\x4c\xba\x2e\xab\x27\x62\x8c\xe9\x73\xbd\xf2\xfd\x52\xfe\x5b\x6c\x85\xf3\x4c\xc7\x78\x77\x26\x9b\xf7\x33\x03\xd6\x55\xc0\xba\xbe\x5d\x9c\x4f\xba\xe9\x73\x3b\x55\x0c\x68\x8c\x1b\x69\x05\x07\x94\x78\x8b\x80\xf0\x88\x97\xab\x45\x23\x18\xf6\xcf\x62\x63\x93\x10\x54\x78\x30\x35\x25\x31\xc1\xa0\x9b\x12\x2a\xf0\xe0\x40\x0e\x95\x10\x43\x93\x1c\xd8\x4c\xfa\xcb\xb2\xa9\xa8\x4c\xee\x80\x44\x72\x78\x99\xbd\xb1\xc8\x88\x91\x80\xa7\x6e\x79\xb0\x77\xcb\x33\x5b\x2b\xbd\xd7\xfc\x6a\xf3\xc2\x47\x36\xd5\x60\xf1\x07\x9c\xe8\x6e\xce\xaa\xea\x70\xea\x62\x9c\x9d\xaf\xc4\x66\x96\x5b\x67\xde\x36\x54\x32\x6b\xcf\xef\x56\x27\xaf\xfe\xdd\x9e\x8e\xd2\xe5\x7b\xe7\xa7\x37\x14\x18\xdd\xb3\xd7\x94\x27\x57\xac\xed\x76\xc3\x44\x7c\x2c\x95\x41\x73\xae\x28\x93\xfe\x53\x3c\xf5\x2e\x00\x92\xcf\xff\x09\x5b\xe1\x33\xa6\x23\xac\x8d\x60\x7d\x17\xc1\xe0\xf4\xbc\x8d\xf6\xd5\x2c\x4a\xef\x1d\x00\x32\x95\xff\x18\x0b\xd0\xf4\x5f\xc5\x4b\x7f\x20\x36\x71\xab\x28\x7e\x33\xc5\xbf\x9e\xce\x5f\xe9\x7b\x9f\xb3\xef\x35\x05\x7f\x8f\xf9\xda\xcf\x2a\xf1\xbe\x07\xc2\x83\xcf\x88\x98\xcf\x3f\x55\xf1\xf9\x57\xf9\x66\x4c\x8a\xa7\x62\x3e\xff\x57\x65\x9f\xbf\x84\xd3\x3a\xc9\x7e\x62\x74\x8c\x0a\x9d\x11\x58\x3e\x29\x1e\x80\xd1\x79\x49\x39\x3b\x18\x19\x0a\x96\xb7\x8c\x46\x8e\x42\x63\xc8\xf7\x3f\x93\xe4\x02\xa3\xf1\xae\x42\x63\xe8\xed\xe0\x3d\x81\xed\xa7\xa9\xca\x7e\x5a\xe5\x1b\x98\xd4\x1e\xd6\x27\xaf\x2a\xe7\x0f\x55\xbe\x0d\x97\xb7\x07\xbd\xcc\x7d\x84\x0f\x0a\x80\x05\xa0\x7a\x0e\x8a\xe3\xbe\xe0\xae\xa5\xcf\x84\x3e\x3f\xe3\xfb\x52\xf5\x26\x3f\x06\x56\x12\x25\xe9\x6a\x24\x8a\xd0\x1a\x7c\x34\x46\xa5\x97\xc6\xab\xdf\xc3\x74\xbc\x45\x41\x11\x2a\xf4\x5d\xb9\x6e\x20\x16\xd0\xd0\x84\x5e\x42\xfb\x2e\xe7\x47\x63\x29\x9a\x68\xbd\x93\xf7\xb1\x15\xa6\xc9\x38\x77\x4d\x8a\x85\x4d\x14\x77\x53\x59\xc6\xe2\xaf\x05\x38\x82\x78\x36\x37\xe5\xfd\x6a\x44\xdc\x4b\xd7\xbd\x3f\xf6\xfa\xc8\xaf\xc2\x19\x9c\x9d\xc1\xfa\x9a\x25\x39\x24\xcc\xf4\xc7\x17\xa0\xd7\xc6\xbb\xe0\x36\x86\x71\x9b\xff\x1b\xff\xcd\x3d\x23\x26\x13\xa7\x28\x32\xb1\xca\x57\x89\xea\x64\x9c\xba\xb1\xc0\x38\xd4\x7f\x7f\xf7\x81\xc9\xa1\x77\x64\x39\x24\xe1\x54\x83\x86\xb5\x59\xe3\xc7\xa9\x05\x20\x7f\xa1\xb2\xed\x17\xec\x59\x4c\x25\x7f\xa5\xeb\xf5\x15\xfa\x3c\x05\x80\xe7\x54\x2b\xb1\x15\xe9\x28\x8d\x87\x49\x17\xba\x56\x9e\x53\xd7\xca\xbc\x64\x02\x90\xb5\x42\x05\xb6\x22\xbd\x8c\xe3\x82\x36\x36\xab\xda\xfc\xdf\x69\x15\x39\xb2\x87\x9e\xc9\xbf\x4b\xfb\xe6\x0d\xdf\xfb\xbe\x41\x79\x64\x07\x65\x3a\xab\xc5\x70\x32\x97\xb4\x60\x2b\x9c\x53\x70\x56\xc9\x38\xfe\xfb\x43\xd3\xc4\xe8\x80\x7b\x5c\x12\xce\x69\xdf\x3a\x19\x67\x9d\x8c\xb3\x56\x8c\x0e\xb8\x37\x72\x65\x9c\xcb\x75\xcf\x74\x71\x1e\xf9\x05\x6d\xf7\x93\x57\xd2\x85\x7d\xdf\x03\x90\xe7\xe9\x5e\xf8\x8e\xbc\x4f\x5d\x98\xb4\x17\xa6\x02\x90\x23\x54\xee\x9f\x95\x7d\xbc\xc1\x72\xff\xf2\x7d\xfc\xff\x3a\xde\xff\xbf\xbc\x43\xf7\x9f\xee\xea\xd0\x73\x33\xca\xd7\x56\x50\xce\xc8\xc8\x34\x2c\xc0\x75\x01\x73\xf6\xff\x2e\xa6\xb9\xd5\x77\x96\xac\x11\xbe\xc7\x56\x54\x2d\xf3\xf9\x25\xb2\xca\x7c\x5a\x65\x1a\xfb\x7c\xe7\xc9\x08\xfd\xee\x5e\x50\x9e\xe9\x5e\xb1\x97\xf1\x3d\x1e\xb4\x57\xc8\x63\x62\x55\xc6\x64\xc8\xf7\x8f\x49\xfa\x23\x1b\x93\x4f\x94\x31\x19\xfa\x20\x58\xc7\x6d\xf5\x9d\x27\x7b\x54\xd9\xfe\x79\x49\x69\xf4\xc8\x34\xfc\xf2\x6e\xb5\xef\x3c\x99\xcb\x9f\x97\xe7\xa5\x00\x43\x1f\x07\x9f\xb7\xd0\xf5\x2a\xfc\x55\x59\xaf\xc3\xbe\x3f\xa2\x4c\xb9\x7f\x32\x65\x1a\x6c\x2d\x3e\xa4\xe8\x04\xc3\x6f\x7f\x2f\xcf\xc8\xef\x15\xfd\x9f\xad\xfb\x38\x85\xce\x90\xef\x25\xf4\xff\x30\xf7\xee\x71\x51\x95\xdb\xff\xf8\x7a\x2e\x33\xdc\x11\xbc\x27\x6a\x83\x23\x68\x30\x20\x77\xc1\xd0\x60\x2e\xa0\x42\x48\x08\x0a\x6a\xca\x00\x83\x60\xc0\xd0\x00\xde\x32\xb3\x8b\x66\x78\xbf\x23\x22\x22\xde\x10\x6f\x1b\xb2\x4e\x75\xcc\x63\x1d\x2b\xf3\xb4\xcd\xcc\x2e\xc7\x53\x1d\x33\x2b\x3f\xe6\xe9\x94\xa7\xac\x4c\x67\x7e\xaf\xbd\xf7\x9a\x61\x40\xed\x7c\xbe\xdf\xd7\xef\x8f\xaf\xbe\x36\xeb\xd9\x7b\xaf\xe7\xfd\x5e\x6b\x3d\xd7\xfd\xcc\xbe\xa4\xa3\x2d\xe9\xdd\x70\x2e\xbb\x70\xca\x4e\x77\xf7\xe7\x7f\xf3\xcc\xdb\x7f\x7b\x16\x47\x8a\xc9\x02\x69\x3e\x45\x94\xf7\x7a\x98\x1d\xdf\xf1\x99\xd2\x98\x4b\xfa\x2a\x6d\x59\x3a\xef\x11\x42\x43\xa5\xf3\x32\xc7\x15\xb9\x0f\x63\xb4\xab\x0f\x93\xf3\xa8\x7e\xa1\xa1\x52\x1e\x89\xe3\x5c\x08\x78\x76\x30\x2a\x84\x28\x1c\x1a\xc7\x35\x3e\x4e\x8e\xfb\x57\x88\x71\xf8\x8e\xb8\x4b\x73\xd8\x5c\xd9\xce\xdf\x15\x8c\xf3\x41\x8a\xaf\x68\xa7\x3c\x3f\x95\xef\xd7\x57\xe6\xa7\x55\x30\xe4\x8e\xfb\xf5\x95\xb1\xaa\xc9\x35\x7e\x57\x79\xdf\x79\xaf\x88\x32\xcf\x0d\x75\xe1\x94\x41\xef\x3b\xea\xd1\x7f\x7b\xee\x47\xc1\xd0\xbb\x30\x76\xc1\xe1\x7b\x60\xfc\xe4\x1a\x37\x77\xc1\xb6\xee\xf7\x78\x38\x1c\xf2\xbb\xd0\x67\xc9\xb6\x7c\x8e\x71\x39\x71\x07\xce\x22\xf9\xde\x32\xa9\x0e\xfc\xac\xd8\x12\xd4\xbd\x0e\x4c\x04\xe0\x4b\xe4\x3e\xe1\x4b\xc4\x38\x26\xf7\x09\xcc\xad\x4f\x28\x06\xe0\x8b\x64\x7f\x7e\x53\x30\xe4\xdf\xd2\x99\xcb\x9f\xa1\xf6\x0c\x55\xb6\x3c\x16\x8e\x91\x9f\x91\x38\x4b\xfd\xf1\xde\xaa\x0c\xee\xe0\x63\x68\x28\x28\x5f\xbb\x3d\x4b\x5e\x77\xcd\xeb\x12\xe5\xf1\x3d\x4d\xde\x1f\x61\xcf\x50\x15\xcb\xf9\x2f\x60\xfe\x60\xf9\xf8\x30\x7b\x86\xea\x11\x39\xff\xf7\x78\xbc\x17\x8e\xbd\x5b\xdd\xc6\x5e\x0f\x68\xe7\x27\xc1\xed\x17\x34\x65\xde\x6d\xdf\xe9\x36\xfe\x4a\x3a\x4f\x81\x9f\xa2\xe3\xe7\x1a\xc3\xe5\xfe\xf0\x1d\x17\x4e\x1b\xff\xf4\xee\xcf\x5f\xa9\x97\xe2\xf3\x57\x92\xce\x8b\xce\xbc\xaa\xc1\x1e\x5f\xb9\x9e\x23\x6e\x74\xfc\xa8\x3c\xb3\x4c\xbb\xee\xdf\x96\xf2\xfe\xa2\xde\xe9\x7a\x66\xb1\xf1\xbd\xee\x7d\xd2\x39\x99\xff\x9c\x0b\x63\xab\xe3\x33\x92\x8a\x18\xb8\x7e\xed\x38\x24\xf3\xaf\x73\x3e\xff\x45\xb6\xfe\xc9\xfd\xf9\xaf\x1f\x5c\x79\x1b\x1c\xd7\xc9\x58\xcc\x3b\xd6\x8d\x7f\x85\xfa\x88\x8b\xbf\x41\xbc\xa5\x68\xb8\xad\xc5\x2a\xcf\x43\xeb\x5c\x38\x5b\x1c\x57\xc8\x83\x88\xf3\x60\xb7\x18\x7c\xe7\xc2\xd9\xf2\xd7\x9b\x88\x73\xb3\x0b\x47\x2a\x13\xe7\x73\xde\x30\x42\x79\xce\xdb\x55\x36\x81\xae\xe7\xbd\x3b\x18\x16\x92\xb3\x8c\x9c\xcf\x95\x42\x28\x34\x99\x83\x5c\x25\x15\xe0\x9c\x9d\x48\x19\xfc\xdc\xc7\xaf\xd7\x5d\xb6\xbe\xe9\xf8\x99\x64\xa2\xad\x99\xdd\x6c\x7d\xc2\x65\xeb\x9b\x67\xbd\x95\x98\x7b\xbb\x61\x78\x3e\xe7\xc2\xd8\xe6\xb8\x45\x0e\x20\xc6\x01\x77\x0c\xb9\x7d\x2a\x18\xdb\x3e\x29\x57\x30\xca\xdd\x31\x62\x5d\x18\x2f\x3b\x2e\xde\x35\xf6\x19\xf2\x7d\xf9\x0a\xc6\xcb\x7f\xbe\x57\xec\xb5\x2e\x1c\xd1\xf1\x76\xcf\xf2\x47\x9c\x4b\xae\xf2\x17\x77\xba\xc7\x3b\xd5\x15\x6f\x79\x3e\xd0\x23\xde\x3b\xee\x16\x6f\xe7\xfc\x00\x42\xa5\xf9\x41\xf7\x78\x3f\xda\x3d\xde\x1b\xec\xcd\xf2\xf5\xb7\x73\x2c\x6f\xe7\x9f\x81\xdb\x6a\x97\xd2\x96\xed\x1b\xe5\xeb\x59\x79\x2c\x07\x49\xe7\x43\xb7\x79\xc0\x71\x57\xde\x36\xfe\xe5\xdd\x9f\x8f\x92\xd7\x7c\xd2\x51\xe7\x15\x70\x7b\x42\xca\x0d\x67\xba\x0b\xa7\x15\x36\x93\x3c\xc4\xc9\xeb\x86\xa3\x75\xcd\x27\x5a\x2b\x87\x28\x28\x43\x5c\x6b\x47\xaa\x10\x8f\x0b\x4e\x0c\xd2\xe8\xb8\xa9\x60\xd0\xee\x18\xb7\xd4\xad\x4e\x0c\xd2\xf8\xc1\x10\xa5\xcc\x15\x0c\xc7\x3f\x64\x3b\xde\x75\x61\x6c\x75\x7c\x4d\x12\x11\x23\x11\xdb\x6a\xa7\x6c\xc7\x3a\x8c\x85\x9a\x6c\x3d\xd6\xf5\x2c\xce\xab\x1e\xdf\xba\xf2\x36\x38\x7e\x27\x71\x98\x37\xce\x8d\x7f\xad\x5a\x70\xf1\x37\x9c\xbb\x8d\xf5\xe5\xb6\xab\xbe\xc8\xb1\x90\xeb\xcb\x08\x6c\xab\x3f\x92\x18\xc4\x89\xe9\x16\x8b\x6b\x2e\x9c\x2d\xa7\x7e\x47\x9c\xdf\xbb\x70\xa4\x72\x75\xbe\x77\x40\x6e\xab\x6b\x48\xae\xab\x7c\x03\x5d\xcf\xb2\x48\x21\xf4\x76\xe2\x4a\xe5\xec\x7c\xf6\x59\x6a\xab\xa5\x83\x09\x96\x76\xb7\x7b\x83\x94\xf5\xa6\x77\x5c\xeb\x4d\x6d\xfc\x4f\x77\x7f\x1e\x45\x5d\xe1\x7a\xae\xa5\x8d\xdf\x74\x74\x7b\x22\x45\xc2\xb1\x37\xcb\xf3\x5f\x27\x4e\x3b\x3f\x72\x47\xdd\xfb\xc4\xde\x2c\x5f\xcf\x87\x4a\x57\x6c\xb2\xce\xbf\x65\x1d\xea\xa6\x93\x6d\x5f\x21\xaf\xf7\x38\xe7\x38\xed\xfc\x4d\xc7\x2f\x78\xdf\xd4\x2f\xce\x39\x8e\x7d\x99\xbc\xc6\xe2\xbc\x8f\xbb\x9d\xbf\xee\xb8\x8e\x3a\xce\x7b\x37\x95\xb9\xd2\x67\x2e\x9c\x36\xfe\xf6\xdd\xef\x47\x97\xc7\x8a\x47\x70\xac\xf8\x9b\x73\xcd\x49\xe5\xed\xf1\xab\xeb\x5a\xaf\xd1\xf1\x4f\xe5\xfd\x03\xb4\xeb\xfd\x03\xb3\x1d\xdf\xa9\x7a\xc9\x63\xc5\x23\x4a\xfd\xbb\xdc\x7d\xac\x38\x21\xf3\x7f\xeb\xc2\xd8\xea\x38\x2d\xdf\x7f\x27\x61\xe0\xfd\x77\x8e\xb7\x64\xfe\x75\xce\xfb\xe1\xc9\xd6\xf7\xbb\xee\x87\x6f\xf6\x54\xb9\xf2\x36\x38\x2e\x92\x1c\xcc\x9b\xe3\x66\xfb\x2e\x79\xac\x50\xf8\x1b\xbe\xbe\xb3\xbf\x92\x63\xe0\x99\xea\xc2\xd9\xe2\xf8\x58\x5e\x5f\x95\x70\xb2\xbb\xc5\xe0\x3b\x17\xce\x96\x7f\xdc\x39\x56\xc8\x65\xe2\x7c\x67\x83\x5c\xff\x6a\x89\xcd\x55\x36\xbd\x5d\xef\x6e\xe8\x60\x5d\xdf\xa7\x94\xcb\xc8\xf9\x5c\xb9\x54\xff\x16\x04\xb9\x4a\x2a\xd0\x6d\xac\xc0\x12\x93\x79\x1e\x75\x5c\xe3\x17\x3d\x46\xd0\x50\xd8\x8c\xd7\xf1\x4f\x11\x33\x96\x99\x19\xed\x9d\xe5\xf8\x8e\xef\x95\xaf\xf5\xb7\x28\xeb\x24\xd6\xee\xcf\xb3\x2b\x18\x61\x2e\x0c\xbd\xc3\x22\x3f\x5f\x49\xdd\x9e\xaf\x54\x30\x2e\x22\x86\xa4\x93\x77\xc7\x73\xf3\x0a\xce\xfb\x2e\x9c\x36\xfe\x01\x99\x88\x38\x13\xdd\x71\xe4\xfa\xb3\x05\xeb\xcf\x1b\x6e\x79\x2b\x5c\x79\x5b\x61\x19\x29\xc5\xbc\xa5\xdd\xf2\x0e\x73\xf9\xd1\x3a\xb7\xfb\x3d\x7b\x8f\xda\x37\xf2\x8b\xf2\xf3\x3c\x9b\xb1\x9f\x3e\x2a\x63\xcf\xb2\xaf\xe0\x7b\xf9\x36\x97\xed\xed\xfc\xd5\x3b\xda\xc7\x62\xfb\x2a\x9e\x25\xb7\xc5\xd1\xa8\xf3\x67\xc7\x6f\xd8\x5e\x7f\x13\x9c\xcf\xde\x6c\xe4\x19\xf2\x5c\x6d\x2a\xe2\x3f\x8a\xbf\x65\x5c\xe3\x59\x1e\x27\x5d\x79\xdb\xf8\x99\xbb\xdf\xa3\xad\x7e\xdc\x75\x3f\x73\x1b\x17\x1d\xdd\x66\xde\x0e\x07\x2c\x75\x5c\x53\x29\x6b\x5e\x0d\x58\x96\x4b\xef\x58\xb7\x99\xeb\xf8\x4e\x35\x4b\x5e\xf3\xda\x8a\xbf\x19\x76\x5f\xf3\x52\x30\x86\xb9\x30\xf4\x8e\xc7\xee\x58\xaf\x52\x30\xfe\x86\x18\x92\x4e\xc1\x1d\xeb\x6f\x0a\xce\x3b\x2e\x9c\x36\xfe\xc9\x1d\x7d\x9c\x8c\x23\xfb\xb4\x15\x75\xde\xba\x87\x4f\x25\x2e\x9c\x56\x58\x79\xc7\x33\x80\x0a\x8e\x9f\xcb\xa7\xd6\x85\x6e\x77\xc1\x4b\x18\xf6\x15\xaa\x3f\xc9\xcf\xe4\x35\x60\xd9\xbc\xef\xe8\xf6\x8b\x92\x84\x61\xdf\xa8\x9a\xc5\x1b\x15\x0c\xb9\x6c\x94\xf5\xd5\x60\xfb\x9f\xe5\x75\x0d\xe7\xfa\x5d\x3b\x3f\x0d\x23\x14\xf4\x11\x82\xeb\x1d\x06\xc3\xe4\x35\x5a\xe7\x75\x48\xbb\xea\x6b\xc7\x6a\xc4\x5f\xdd\xed\x77\xb5\x77\x5c\x38\x6d\xfc\xdc\x1d\xf1\x90\xaf\x67\xe4\x78\x4c\x47\x9d\xaf\xef\x88\x87\x82\x53\xe2\xc2\x69\x85\xe7\xef\x88\x87\x82\xe3\xe7\xc2\x69\x85\xc6\xee\xcf\x05\x00\x95\xc7\xc0\x2f\xd5\x00\x43\x60\x14\x3c\x91\xd2\xab\x1f\xf1\x62\x23\x42\xa9\xa7\x17\x27\xc4\x93\x4d\xcc\x10\xee\xcb\xce\x4f\x09\xf1\x90\xbf\xba\xce\x54\xf2\xdb\xb5\xc6\x65\x80\x97\x97\xbc\x56\x9e\x9e\x01\x9e\x9e\x64\x3a\x7e\x03\x22\x28\xe5\x81\x7b\xeb\x11\x32\x56\x52\x76\xfe\x2a\x5f\x90\xe2\x1f\x2e\xbf\xa4\xa9\xcf\x03\x5a\xe5\xa1\x40\xa2\x0d\xd4\x3a\x6f\x28\x8f\xc7\xef\x89\xc6\xe3\x9b\xae\x88\xf3\xf6\x72\xe5\x5d\x7d\xfd\xf8\x97\xfb\x7f\xf7\x8f\xad\x9f\x5e\xbc\xbd\x72\x4c\x52\xd5\x76\x4b\xde\xd3\x31\x3f\xfd\x44\x06\xec\xbf\xb5\x67\x40\x5c\xce\x83\xe3\x67\x0d\x1e\x3c\x33\xfd\xc1\xc9\x71\x03\xf9\xc9\xdf\x93\x1f\x7f\x28\x6d\xf2\xfa\x77\xe7\xf6\x7b\xe2\xbd\xf5\xd9\x63\x13\xbf\x3b\xba\x7c\xf9\xad\x06\x63\xdd\xd4\x98\x71\x09\xe4\xe5\xd1\x63\x63\x0b\xe6\x19\x01\xe7\x66\xc7\xe5\x38\x28\xcf\xae\x8f\x20\xa7\x09\xd0\x64\xa2\x86\xd4\x98\x2d\x4a\x2f\x4b\x93\x9d\x9d\xe6\x16\x67\x79\x6f\xb1\x6f\x57\x05\xc8\xf7\x41\x5d\x50\xd6\xc3\x28\xdc\xf1\x9e\x91\xa5\xf6\x26\x55\x9a\x5c\x27\xfe\x25\x5f\x97\x9d\xa1\xca\x6f\x21\x4f\xd8\x9b\xf8\x2f\x72\x7d\x0a\x53\x8e\x93\x6f\x95\xb5\x45\xe9\xb8\xac\xff\x43\xb7\xe3\x41\xf6\xa6\xae\xe7\x54\xa4\xe3\xb0\x4c\xe9\xef\xec\x4d\xbc\x53\xd6\xbf\x8e\xc7\x95\xeb\xc6\xa1\xf6\x26\x7e\xc3\xed\x3a\xf3\x0c\xf9\x06\xaf\x33\x9b\xf8\x1e\xb7\xeb\xcc\x33\x64\x93\x72\x7d\x6c\x6f\x52\xdd\x27\xeb\x7f\x8e\x76\xca\xeb\xcb\xb0\xc8\xde\xa4\x1a\x22\xeb\xff\x8c\xc7\xfd\x9c\xfa\x7c\x96\xbb\x3e\xac\x74\xea\x73\xb3\xbb\x3e\xac\x51\x7e\xaf\xb2\x37\xc9\xbf\x57\xc9\xbf\x37\x4a\xc7\x1d\xca\x6f\x34\x6b\xec\x4d\x3c\x46\xd6\xbf\x82\xc7\x83\x94\x75\x41\x7b\x93\x6a\x9c\xac\xff\x09\xf2\x46\xe2\x75\x6e\x93\x2a\x41\xd6\xbf\x8a\xc7\x43\x65\xfd\x8f\xec\x01\x7c\xa5\xea\xaf\x34\x94\x8c\x55\xca\x02\x0a\x1d\xb5\xd8\x37\xd7\x62\x7b\xe8\x67\xef\xc3\xd7\x49\x73\x17\x32\x0e\x75\xca\x1c\xf3\x50\x67\x9e\xdb\xef\xa2\x53\xe4\xeb\xed\x89\x72\xfb\xe8\x07\xc0\x9f\xe4\x63\xa0\xbf\xf2\x9e\x39\x75\xd7\x17\xe2\x89\x17\x51\xde\x97\xa1\x52\x0d\xcc\x00\x0f\x0f\xf9\x9b\xf8\x03\x68\xe6\x80\x01\x03\xb4\x03\x86\x0d\x0b\x0c\x0c\x0c\x1c\x19\x1c\xe0\xad\x1e\x1c\x4e\x82\xfb\xb9\x5e\xbc\xea\x7c\x7d\x5b\x30\x09\x0c\x76\xbe\x82\x95\xbe\x6b\xff\x84\x04\x56\x1e\xac\x1b\x37\xae\xee\x60\xe5\xed\xbf\xd7\xd5\x91\xfe\xe4\x01\xe9\x58\xb4\x49\xd7\xb7\xaf\xce\x14\xcd\xb4\x79\xf1\xb3\x96\x66\x3f\xfc\xec\xac\x04\xa6\x3d\x5a\x5c\x6c\x1f\x68\xff\x77\xff\x90\xa8\xa0\xc1\xb1\xa1\xfd\x95\x6f\x1b\x7e\x08\xc0\x1f\x55\x09\x7f\x6c\x67\xff\xff\x62\xa7\xb6\x5f\x6c\x4f\x3b\x63\xf1\x0b\x70\xb2\x9d\xcf\x5f\xdd\xbd\xf8\xdd\x15\x13\x27\xae\x78\x77\xb1\x5d\x2f\x08\x64\xd0\xd5\xab\xbb\xf5\xe6\xd4\xfb\xef\x4f\x35\xeb\xb9\xfe\x60\xea\xdc\xb6\xd2\xb2\x03\x0b\x8d\x5c\x7f\xf4\xb5\xd7\x6e\x1f\xb7\x47\x86\xea\xf3\xa3\x47\xe5\x8c\xd5\xfe\x3f\x6f\x1f\x71\x7c\xab\xfc\x9e\x0a\x7e\x30\x22\x65\xb8\xda\xf5\x4e\x3c\x50\xa9\x78\x01\x70\xde\x5f\xea\xc2\x06\x38\x5f\x89\x17\xe0\xa1\x0e\x72\x7b\x23\x5e\xbf\xe0\xc0\x58\xba\xed\x67\xfb\xb7\x7b\xf7\xb2\xc3\xb7\x1f\xfb\x99\x6e\xb9\x5d\x4e\xb7\x1c\xa5\x96\xcb\xf6\xa7\x00\x88\xec\x7b\x0c\x1f\x73\x2f\xec\x81\x7f\x8c\xdd\x2f\x96\x3e\xff\x95\xfd\xbb\x63\xc7\xd8\xae\xdb\xb6\xaf\xc8\x3b\xf6\x24\xf2\xce\x51\xf2\x97\x4b\x52\xbb\x23\x8e\x7f\x01\xf0\xcf\x54\x02\xf4\x85\x84\x94\xd8\xde\x04\x3c\xc8\x44\x15\x61\x6a\x42\x3d\x18\x35\x83\x87\xdc\xef\x9b\x3d\x89\xe4\x81\x97\xf2\xa6\xd9\xbe\x7d\x02\x9d\x2f\xf6\xf3\x56\x0f\x71\x51\xc5\xcb\xaf\xc9\x73\xbe\x76\x36\xa9\xce\xfe\xed\xf1\xe3\xe4\xbe\xcf\x3f\xef\xf1\xea\x59\xfe\xf8\xd1\x15\x2b\x8e\xda\x8f\xbb\x5e\x3f\x0b\xc4\xf1\x39\x00\x3f\xa1\x06\xe8\x2b\x95\x6c\x6f\x7f\xc2\x40\x4d\x26\x72\x42\x55\x84\xa8\x29\x31\x03\x63\x50\xe0\x41\x00\x06\x64\x80\x5a\x3d\x30\x43\x4e\xca\xdf\x61\x93\xfe\xf5\xf6\x94\x4a\xd6\xa3\x9b\x11\xf8\x4d\xb6\xc4\xc5\xf6\xab\xef\xbc\x43\xfa\x7f\xf2\x49\x2e\x09\x27\x59\xf6\x32\xf2\x81\xfd\x00\xf9\x4b\x9d\xfd\x65\xfe\xca\xd1\x8d\x1b\x8f\xde\xbe\x50\x48\xc6\xdb\xc7\xde\x7e\xc1\xe1\x00\xab\x7d\xba\x4a\xe3\xfc\xbd\x5b\xba\xc6\x77\x7c\x4c\x5e\x20\x1e\xe0\x4f\x0b\x1c\x3f\x42\x6f\xd7\xef\xde\x72\x63\xff\x51\x99\x0f\x2c\xb0\x4f\x57\x0d\x75\xfe\x9e\x2c\x5d\xe3\x7f\x9a\x2b\xe7\x98\xea\xf8\x51\xbe\xb2\x13\x72\xdd\x33\x00\xf6\xdb\xd3\x55\x43\x9c\xfd\xb6\xac\x3d\xc5\xf1\x23\x8e\xcd\x3f\x3a\xd7\x92\x25\x1d\x67\x1f\x7e\x0f\x9d\xa7\xec\xd3\x55\x13\x64\x9c\x51\xa8\xf3\xcc\x1d\x3a\x8f\xdb\xa7\xab\x92\x64\x9c\x7f\xa3\x8e\xed\x0e\x9d\x11\xf6\xe9\xaa\x51\xce\xf5\x40\x59\xa7\xec\x0e\x9d\x61\x2e\x7b\xbe\xbf\xbb\x3d\xf8\xfd\xa8\x53\x2a\x01\x02\x20\x22\x25\xcc\x97\x30\x4e\x95\xfb\xea\x9c\xb5\xb5\x48\x45\xdc\x5a\x41\xef\xc0\xc0\xe0\xde\x58\x53\x3d\x58\x30\x1b\xa1\x8d\x57\x2a\x0e\x89\x65\x6f\xff\xc5\x8b\xd8\xaf\x10\x7e\x66\xbe\x7d\x0b\x89\x23\xf7\x93\xfb\x49\xbc\x7d\x53\x39\xf5\xe9\x63\xf7\xa4\xdc\xe3\x28\xfd\xf1\xb6\x99\xee\xb8\xdd\x4b\x79\x67\x30\xfe\x3e\x04\x01\x10\x9e\x32\xd2\x47\xfe\x06\xa8\xc4\x34\x30\x43\x4d\x18\x83\x69\x54\xa9\x36\x84\x0c\x22\x99\x81\x7d\x5d\xed\x23\x04\x2b\x2d\x09\x56\xbe\x8e\x15\xcb\xce\x7e\x62\xbf\xfa\xce\x33\xf6\x7a\xa2\x25\xf7\xf9\x07\x92\x40\x32\xcc\xfe\xc2\x3a\x0f\x7b\x3e\x69\x3b\xca\x9e\xba\xf5\x7b\x6a\x1a\x83\x5b\x4f\x03\x71\xde\x73\x00\x81\x30\x2a\x45\xe7\x47\xb8\x4a\xf9\x36\x94\x87\xb3\x3f\x2a\x52\x13\xa9\x1f\xa2\xc4\xe5\x68\x60\xef\xc0\x00\xb9\x8e\x6a\x15\x0f\x65\xda\x3e\x32\xe9\xb9\x67\xc9\x7c\xfb\x2b\xf6\x9f\xed\x37\xec\x47\xc9\xbc\x79\x73\xec\x3b\xc9\x78\x07\x61\x64\xa2\xbd\xa5\x8e\xae\xbd\x5d\x4d\x7b\xdf\xfe\x9e\xae\x3d\x4a\x2b\x6e\xdf\xa0\xde\xb7\x37\xca\xf7\xd4\x28\xbf\xdb\xff\x31\xff\xc0\x7b\xf1\x33\xe6\xe4\xef\x23\xf1\x9f\x99\x43\xc6\xd9\xcf\xff\xf6\x8b\xfd\x43\x32\x76\xd1\x3c\xfb\xc7\x24\xfc\xea\xf7\x24\xdc\xfe\x51\x09\xf9\xc0\x3e\x8a\x14\xd9\x9b\xc9\x07\x47\xc9\x4b\xf6\xc3\x24\xc7\x9e\xe1\xbc\x1f\x8b\x3f\x4c\xd5\x70\x4c\xae\xcb\x00\xc0\x2b\xe5\xba\x33\x12\x94\xe7\xa4\x3e\xb4\xe3\x73\x6a\x76\xe7\x73\x6a\x89\xb4\x80\x6f\x61\xc9\x90\x4e\x96\x3b\xe6\x01\x4c\x8e\x4d\x51\xbe\x45\x70\xdc\xf1\x23\xa3\x2a\x41\xfe\xa6\x82\xfc\x35\x47\xe5\x9b\x5a\xc9\x19\x40\xa9\xf3\xe3\x71\x23\x43\xf0\x7b\x6b\x5a\x86\x6f\x75\xe8\x7a\x95\x3d\xfd\xe7\xed\x00\x32\xc4\xfe\x7e\xff\xb0\xe4\xd0\x90\xe4\xb0\x01\x03\xc2\x92\x43\x42\x93\xc3\xfa\x93\xdb\xec\xc5\x9b\x9f\x06\x27\x4a\x47\x12\x83\x35\x89\x23\x07\x0c\x18\x99\x08\x44\x1e\x8b\x53\xe7\x6c\x4e\xcd\x9a\xd5\x2b\xf9\x67\xf0\xf1\x94\xdf\x5e\x7b\xf2\x87\xc0\x48\x49\x7e\xf0\xcc\x8b\xd3\x7f\x3b\x7d\xfb\x23\x8f\xf7\x3d\x9f\x03\x02\x5e\x40\xf1\xf5\xb6\x04\xc0\xb3\xe8\xf6\x47\x00\x5e\x8d\xbf\x9d\xbe\xfd\x8d\xc7\xfb\x32\x92\xdb\x3f\x0e\x5c\xc4\x94\xe8\xdc\xc8\x7d\x5c\x84\x07\xb8\x08\x4f\x71\x11\xb4\x5c\x84\x0c\x2e\x92\x77\xb9\x48\x0a\xb8\x48\x92\xb9\x08\x8d\x5c\x84\x62\x2e\x92\x32\x2e\x92\x41\x5c\x24\x7b\xb9\x08\x9f\x71\x11\x56\x71\x11\x0e\x71\x11\xd2\xb8\x08\x85\x5c\x84\x07\xb9\x08\x75\x5c\x84\x72\x2e\x82\x89\x8b\x50\xc9\x45\x30\x73\x91\x1c\x55\x36\x68\xe2\x22\x34\x73\x11\x76\x72\x11\x5a\xb8\x08\x21\x5c\x84\xc1\x5c\x84\xa7\xb9\x08\x93\xb8\x08\x4f\x72\x11\x36\x70\x11\x36\x71\x11\xa6\x72\x11\x9e\xe0\x22\xbc\xc1\x45\xb0\xa2\xce\x66\xb4\x51\x3a\x9e\x8d\x7a\x79\x5c\x84\x67\xb9\x08\x05\x5c\x84\x20\x2e\xc2\x62\x2e\xc2\xfd\x5c\x84\x41\x5c\x84\xa1\x5c\x84\x60\xe5\x1c\x59\xcb\x45\xf8\x01\xe5\x47\x5c\x84\x8d\x5c\x24\xdb\xb8\x08\x35\xc8\x29\xd9\x5d\x8d\x9b\x84\xf1\x38\xfa\xf7\x09\x17\xe1\x9f\x5c\x04\x29\xdf\x3b\x4a\x6c\xe4\xe3\xb3\xb9\x08\xeb\x14\x3d\x22\xf1\x2d\xc4\x7c\x92\x8d\xe3\xd1\x16\xc9\xa6\x38\x2e\xc2\x5c\x2e\x92\x78\x2e\xd2\x7e\x5c\x24\x99\x8a\x6d\xe4\x12\x17\x61\x35\xf2\x4f\xe6\x22\x48\xe7\xae\x70\x11\xa6\x70\x91\x78\xa1\xcd\x81\x5c\x84\x3f\x73\x11\x5e\xe5\x22\xe4\x2b\xfb\xc4\xa2\xd8\x4b\xc2\xb8\x48\x42\xb8\x48\x24\xce\x83\x5c\x84\x4f\xb9\x48\xbe\xe7\x22\x79\x99\x8b\xa4\x9e\x8b\xc4\x9b\x8b\xf0\x15\x17\x21\x95\x8b\x30\x10\xe3\x70\x9a\x8b\x10\xc5\x45\xd8\x8e\x72\x39\x17\xa1\x95\x8b\x10\xc9\x45\x08\xe5\x22\x54\xb8\xf9\x35\x00\xfd\x5d\x8c\x3e\xef\xe0\x22\xc4\x76\xc5\x4e\x8e\x7d\xba\x92\x8f\x34\xe1\xb1\x47\xb9\x08\xb3\xb8\x08\x4b\x15\x9f\xe1\x12\x96\xb9\x54\x76\xbf\xa1\xbd\x92\x9d\x92\xfd\x52\x59\x2f\xe1\x22\x9c\xe3\x22\x79\x95\x8b\xb7\x1a\xb8\x78\xbb\x9a\x8b\xb7\xac\x5c\xbc\x1d\xca\xc5\xdf\x7f\xe1\xe2\x6d\x3f\x2e\x52\x13\x17\x09\xe3\x22\x8d\xc0\xb8\x4b\xf5\x73\x3a\xda\xb7\x00\x37\x2b\xfa\x69\x52\xe2\x07\x73\xb0\x9e\x8d\x44\x9b\x9e\xc3\xfa\x22\xd9\x21\x70\x11\x5e\xe4\x22\x68\x30\x5d\x82\xf6\x4e\xc1\x3a\x98\x8a\x3e\x3f\x8c\x78\x91\xe8\x9b\x9e\x8b\x0e\x07\xd6\xad\x59\x18\x2f\xc9\x8e\x11\x58\xcf\xa5\x3a\x18\xc1\x45\xc7\xaf\x5c\x84\x2c\xb4\x49\x3a\x47\xf1\xbc\x14\xf3\x47\x70\x93\xe2\x38\x11\xf3\x48\x76\xe4\x72\xd1\xf1\x77\xac\x0b\xf5\x5c\x84\x35\x58\x5e\xc3\xb8\x08\x36\xf4\x71\x29\xee\x3f\xee\xe6\xb7\xe4\xdb\x68\x4c\x2f\xc2\x7a\x24\xf9\x90\xa8\xb4\x57\x19\x4b\xb2\x23\x41\xf1\xc7\x71\x86\x8b\xf0\x98\x52\xd7\x24\xdb\x1d\xbf\x61\xde\x74\xf4\x55\x8b\x79\x25\xdf\xfd\x50\xe6\xe0\x16\x89\xb1\x91\xb0\x92\xb1\x8e\xbc\x84\xbe\x9a\xb9\x08\xbe\x78\xce\x84\x75\x5e\x8a\x77\x19\x17\x61\x14\xfa\xea\x8c\xa7\x54\xee\x1d\x92\x1d\x00\xb7\x47\x00\xdc\xfa\x1d\xe0\xf6\x0d\x80\xdb\xe7\x01\x6e\x3e\x05\xf0\xdb\x69\xac\x5b\x12\x7e\x03\xa6\x57\xa1\x5c\x86\x65\xd9\x0b\xdb\xd7\x43\x58\x6e\x31\x4a\x0c\xa5\x36\x02\x06\x2e\x02\xc1\xf8\x49\x31\xab\xe5\x22\xcc\xe3\xa2\xe3\x23\xf4\x7b\x37\xe2\xae\xc2\x38\x67\x61\xec\x6c\x58\x5f\x26\xa0\xad\x33\xb0\x7c\x1f\xc2\xfa\xdf\xc6\x45\x38\x81\xdc\x23\xb1\x8d\x1b\x31\xce\x4b\x31\xad\xc7\x0d\xfe\x0f\xb7\x64\x8c\x7b\x33\x17\xc9\x77\x5c\x24\x52\x9b\x38\xcb\x45\xf2\x57\x2e\x92\x34\x2e\x12\x1d\x17\x49\x2a\xd6\xeb\x25\x5c\x24\x52\x7d\xfc\x37\x17\xc1\x82\x7d\xf5\x72\x2e\x92\xa7\xb9\x48\x06\x72\x91\xf8\x71\x91\x84\x63\xb9\x3f\x81\xe5\x1b\x8f\xfd\xed\x3c\xac\x63\x1b\xb1\xcc\x06\x63\x1c\xd3\x51\xbf\x09\xfb\xe4\x4d\x28\x25\x9b\xae\x60\x3f\x25\xc5\xac\x9d\x8b\x70\x80\x8b\xf0\x0c\x17\x49\x5f\xb4\x7d\x2a\xc6\xe4\x15\x2e\x92\x07\xb8\x48\x34\x5c\x24\x01\x5c\x74\xdc\x50\x24\x89\x56\xda\x3c\xf4\xc7\x7e\x3f\x17\xdb\x42\x0b\xc6\x74\x26\xe2\x9f\xc6\x63\x8d\xa8\x37\x1f\xfb\x9c\x32\xb4\x75\x03\xb6\x17\x67\xfe\x08\x2c\xe3\x14\x2e\xc2\x18\x2e\xc2\x56\x1c\xab\xbe\xe7\x22\x6c\x41\x9d\xad\x58\xde\x1d\xd8\xcf\xfd\x89\x8b\xf0\x1a\x17\x49\x02\x17\x49\x09\xc6\x55\xea\x47\x87\x63\x3a\x9c\x8b\x64\x04\x9e\x4f\xe2\x22\x89\xe0\x22\x79\x83\x8b\xe4\x27\x2e\x92\x19\x5c\x24\x37\xb9\x48\xaa\xb8\x48\xf4\x58\x6f\xda\x95\xf1\x41\xee\xff\x0e\xa1\x2d\x92\xed\xe1\x58\xa7\x24\x3b\xf6\xe0\xb9\xd7\x71\x8c\xc8\x42\x9f\x36\x28\xfd\xa1\x3c\xfe\x0e\xe2\xdf\x39\xbe\x56\x36\xf0\x71\x1b\xc7\x06\xff\xc1\x36\x09\x63\xe2\xbe\xbd\xd1\x63\x73\x8e\x93\x3d\xb7\xc5\x3d\xb6\x60\xac\x17\xf7\xda\xdc\xc7\x46\xe7\xf6\x4e\x8f\xcd\x39\x26\xf6\xdc\x36\xf7\xd8\xe2\x70\x1b\x8c\xd8\x3d\xe5\x24\xe4\xbb\x97\x7c\x52\x55\x2c\xf3\x6f\x40\x3b\xfe\x9b\x9c\x8a\x7d\xe6\xbd\xe4\x13\x68\xfb\x1b\xe8\xc7\xdd\xe4\x27\x6e\xf3\x90\x4b\x38\x8e\xac\x45\x7f\xde\x71\x97\xaa\x62\x94\xfb\x65\xe9\xc4\xee\x21\x1d\xa5\x58\x0e\xb3\xef\x22\x9f\xc5\xf9\x84\x24\x7d\xb0\xce\xbf\x85\x73\x89\x85\xff\x0b\xe9\xac\x3b\x41\xd8\x56\x94\xf4\xcf\xae\xb2\xde\xfc\x7f\x20\x07\x21\x4e\x30\x96\x19\xce\xa5\xe4\xb1\xbd\xa7\x8c\xc2\x31\x22\x4a\xf1\xc3\xd1\xae\x6c\xb2\x0d\xfd\xff\x60\xcb\xc5\x76\xef\xbe\x9d\xee\xb1\x39\xfb\x81\x9e\xdb\xf6\x1e\xdb\x98\xbb\x60\xbb\x6f\xd9\x77\xe1\x6a\xc1\x3e\xc8\x7d\x5b\x7d\x17\x1b\x7a\xf6\x4f\xee\xdb\x0e\xb7\xcd\xdd\x3e\xf7\xb6\xf9\x6c\x8f\x2d\xd7\xad\x2f\xbb\xdb\x16\x8c\xfe\x60\xdf\xe6\xda\x06\xab\xa2\x1d\x0b\x55\xd1\x8e\x8d\xaa\x68\xc7\x5f\xf9\x97\x8e\x65\xaa\x68\x47\x16\xff\xd2\xf1\x12\xce\x6b\x9c\xf3\xe9\x0d\x58\x36\xce\x39\xf4\xd3\x77\x99\x3b\x3b\xcb\x76\x28\xea\x04\xe3\x18\xf3\x1c\xea\xbf\x88\x75\x61\x07\xd6\xcd\x83\x38\xee\x15\xb8\x9d\x9b\x8d\x32\x12\x39\x57\xe1\xf9\x37\xdc\xda\xcc\x16\xc4\xa3\x6e\xf6\xad\x42\x7d\x6b\x0f\xbb\x16\xa0\x6d\x93\xd0\xbe\x54\xb4\xaf\x06\xdb\xf3\x02\xb7\x39\x6a\x1d\xd6\xcb\x02\x3c\xb7\x06\xdb\xc0\x27\xd8\x1e\xff\x89\x63\x73\x9c\x5b\x5d\xee\x29\xb1\x6e\xcb\xd7\x3b\xf7\x79\x35\x92\xe3\x4a\x1b\x97\xc6\x60\xd9\xae\x8c\xae\xbe\xc9\x91\xe9\x66\xb3\xd3\x16\x13\x6e\xd2\xfc\x47\x87\xfd\xbb\xcd\xad\xbf\x0a\xc6\xf9\xc2\x1b\x38\x37\x1c\x86\x71\xe9\xd9\xef\x45\xb9\xc5\xb0\x1a\x71\x9a\x94\xcd\x95\xcf\x89\x6d\x75\x9b\xf7\x2e\x70\xeb\x3b\x9c\x73\x31\xa7\xd4\xa0\x0e\xc5\x18\xf4\x94\xdb\x71\x9c\x9a\x88\xf3\x98\xa1\x6e\xb1\x1c\x81\x9c\xf7\xe8\xa7\x1d\xe7\xb8\xe8\x38\xf4\x07\xfd\xf8\xff\x56\xfe\x97\xfe\xdb\xf1\x0f\x2e\x3a\x3a\xff\x40\xaf\x67\x3f\x7d\x8f\x7e\xd5\x71\x82\x8b\x8e\xb7\xfe\xa0\xdf\x75\x5e\xbb\xfc\x37\xd9\xb3\x8f\x74\x5e\xeb\xfc\x37\xe9\xde\x87\x76\xc9\xef\xa0\x5a\xde\x94\x36\xb2\xd4\x6d\xce\x16\x84\x9c\xce\x32\x71\x96\x95\x53\xe2\xfc\xd5\x59\x37\x5c\xf3\xdb\x55\x8a\x74\x7c\x88\xdb\xb7\xb2\xfc\xd2\xf1\x2f\xfe\xa5\xe3\x73\xa9\x3e\xc0\x02\x78\x02\x16\xc0\x53\xf0\x38\x8c\x80\x61\x10\x0c\x23\x61\x28\x14\xc0\x73\x00\x90\x28\x2f\x21\x1c\xef\xb6\x60\x30\x1c\x36\x12\x7f\xd2\x4e\x73\x69\x15\x6d\xa6\x67\xa8\x9d\x85\xb1\x4c\x56\xca\xd6\xb2\x36\xee\xcd\x43\xb9\x8d\x5f\x51\x0d\x55\x2d\x52\x5d\x51\xfb\xaa\xeb\xd5\xbf\x7a\x78\x7b\x0c\xf6\x48\xf4\x98\xe9\x31\xdf\xe3\xaa\xe7\x61\xcf\x2f\xbc\xc6\x78\xed\xf5\xba\xe2\xdd\xdf\x7b\x9c\x77\x93\xf7\xdb\xde\x3f\xf8\x84\xfa\xe4\xfa\xd8\x7c\xda\x7d\xce\xf9\x6a\x7c\x8b\x7c\x8f\xfb\x51\x3f\x9b\xdf\x46\xbf\xf7\xfc\xae\xf9\x0f\xf2\xcf\xf4\xaf\xf5\x6f\xf1\x3f\xe9\xff\x59\x2f\xe8\x35\xbc\xd7\xb8\x5e\x25\xbd\xec\x01\xf3\x03\xbe\x0f\x9c\x11\x78\xa2\xb7\x67\xef\xd6\xde\x17\xfb\x0c\xeb\xb3\xb0\x4f\x7b\x9f\xb3\x7d\xc7\xf7\x6d\xed\x07\xfd\xaa\xfa\x5d\xe9\x3f\xae\xff\xb1\x01\x43\x07\xcc\x1d\xd0\x34\xe0\xf4\x80\x9b\x03\x93\x07\x96\x0e\x3c\x36\xf0\xfc\x7d\x91\xf7\x2d\xba\xef\xcd\x41\x91\x83\x56\x06\xf5\x0e\x9a\x12\xb4\x68\xf0\xe0\xc1\x45\x83\x7f\x18\xd2\x30\x44\x18\x72\x71\xe8\x92\xa1\x0d\x43\x2f\xdd\x3f\xf0\xfe\xf5\x9a\xfe\x9a\x64\xcd\x7a\xcd\x31\xcd\xd5\xe0\x98\xe0\xac\xe0\xc6\xe0\xb6\xe0\x93\xc1\x17\x83\x6f\x0d\x7b\x6e\xd8\xe9\x61\x3f\x68\x17\x6a\x4f\x0e\x9f\x16\x92\x1d\x72\x2e\x74\x50\x68\xf3\x08\xff\x11\x39\x23\xe6\x8f\x38\x35\xd2\x38\xd2\x36\xb2\x75\xe4\x67\x0f\x84\x3e\xb0\x3b\x2c\x37\xec\x42\xb8\x6f\x78\x59\xf8\x05\x5d\xa6\xae\x51\x77\x2b\x22\x31\xa2\x39\xe2\x44\xc4\xa5\xc8\xbe\x91\x71\x91\xeb\x23\x4f\x8d\xf2\x1d\x15\x39\x6a\xf1\xa8\x96\x51\x27\x47\x9d\x89\xf2\x8c\x0a\x8b\x9a\x12\x55\x1d\x1d\x19\x9d\x10\x9d\x1b\xbd\x30\xfa\x7c\xf4\x4f\x31\xc3\x63\xd2\x62\x16\xc6\x9c\x8e\xf5\x8e\x2d\x8a\xa3\x71\x1b\xe3\x8e\xc7\x27\xc6\x0b\x09\xde\x09\xa5\x09\x1f\x8f\x1e\x36\x7a\x6f\xe2\xc0\xc4\xc5\x89\x57\x93\x8c\x49\x6d\x49\xbf\x8e\x19\x3f\xe6\xf0\x98\x9b\x0f\x96\x3e\x78\x3e\xb9\x22\xf9\xc2\xd8\x94\xb1\x2d\x63\x6f\x8c\x4b\x1b\xb7\x78\x5c\xfb\xb8\xeb\x0f\x25\x3c\x34\xff\xa1\x6b\x29\x7d\x53\x32\x53\xd6\xa6\x1c\x4b\x85\x54\x5d\x6a\x51\x6a\x7b\xea\x0d\x7d\xa2\xbe\xd9\x10\x60\x98\x62\x78\xcf\x38\xdc\xa8\x37\x2e\x37\x9e\x36\x25\x9a\x0a\x4d\xeb\x4d\xa7\x4c\x3f\xa5\x0d\x4d\x4b\x49\x2b\x4a\x3b\x91\x76\x2d\x7d\x64\x7a\x6e\x7a\x7d\xfa\xd9\xf1\x83\xc7\xcf\x1c\x7f\x72\x42\xce\x84\xe6\x89\xde\x13\x6d\x13\x2f\x65\xc4\x65\x3c\x93\xd1\x99\x09\x99\x59\x99\xad\x0f\xcf\xc8\xf2\xcc\x4a\xc9\x5a\x98\x75\x7c\x12\x9f\x34\x6d\x92\x90\x1d\x90\x5d\x9d\x7d\xe3\x91\x45\x8f\x5c\xc8\x49\xcc\x59\x9c\x73\x7e\xf2\x94\xc9\x37\x72\x1b\xf3\xa6\x4c\xa1\x53\x3e\x9b\x3a\x6d\xea\x85\xfc\xe1\xf9\xcf\xe5\x9f\x2c\x18\x5a\x90\x5f\x60\x2b\x58\x39\xbd\xef\xf4\xd6\xe9\xd7\x67\x54\xcc\x58\x3f\xe3\x95\x19\xb7\x1e\x1d\xf7\x68\xe3\xa3\x5f\xcc\xec\x3b\x73\xe2\xcc\x85\x33\xdb\x67\xde\x9c\x65\x9c\xf5\x45\xe1\xb4\xc2\xd5\x85\x6f\x9a\x8d\xe6\xe3\x66\x7b\xd1\xfc\xa2\x1f\x8a\xe3\x8a\x17\x16\x9f\x2c\xf1\x2f\x99\x5b\x72\xca\x12\x67\x19\x6f\x29\xb2\xb4\x95\xfa\x97\x2e\x2f\xbd\x3e\x7b\xc6\xec\x33\x65\xe3\xca\xde\x2e\xcf\x2a\x7f\x6d\xce\xb0\x39\xcf\xcc\xb9\xf4\x58\xd8\x63\x73\x1f\xbb\x7a\xcf\xff\x37\x2a\x68\x45\xdf\x8a\xb8\x8a\x19\x15\x8b\x2a\x96\x57\x6c\xae\xd8\x5d\xf1\x71\x25\xad\x4c\xa9\xac\xae\x5c\x5c\xd9\x5c\xb5\xba\xaa\xb3\xea\x42\xd5\x35\x6b\x9c\x75\x7d\x35\xad\x3e\xf6\x78\xe8\xe3\xed\x8f\x5f\xb7\xe9\x6d\x55\x36\xc1\x76\xca\x76\xb9\x06\x6a\x06\xd6\xd4\xd6\xac\xac\x39\x5c\x73\xaa\xe6\x72\xed\x8c\xda\xf5\xb5\x37\xeb\x86\xd5\x25\xd7\x4d\xa9\x5b\x54\xb7\xb9\x6e\xf3\xdc\x45\x73\x3f\x9e\xe7\x3b\x2f\x7b\xde\xea\x79\x27\xe6\x7d\x3f\xdf\x77\xfe\x98\xf9\x53\xe6\x2f\x9b\x7f\x69\x41\xe2\x82\xf9\x0b\x76\x2f\x78\x6f\xa1\x6e\xe1\x94\x85\x4b\x16\x76\x2e\xbc\xb8\xd0\xfe\x44\xe4\x13\x53\x9e\xd8\xfd\x84\x7d\x91\x7e\x51\xe7\xa2\x73\x4f\x7a\x3e\x19\xf9\xe4\x8c\x27\x57\x3e\x79\xf4\xc9\x2f\x16\x6b\x16\x27\x2c\xae\x58\x7c\x72\xf1\x95\xa7\xc2\x9e\xb2\x3d\x55\xff\xd4\xb5\x25\x71\x4b\x2a\x96\x2c\x59\x72\x78\xc9\x8d\xa7\x47\x3e\x5d\xfa\xf4\xe1\xa7\xdf\x7e\xa6\xf4\x99\xf6\x67\x8e\x3d\xf3\xeb\xb3\x9a\x67\xeb\x9f\xdd\xfd\xec\xd9\xe7\xf8\x73\x8d\xcf\xbd\xf9\xdc\xb5\xa5\x7d\x97\x0e\x5e\x3a\x7c\x69\xe9\xd2\xce\xa5\x37\x97\xe9\x96\x55\x2f\x6b\x5e\xf6\xca\xf3\x91\xcf\x2f\x7b\xfe\xcc\xf2\x71\xcb\xd3\x96\x67\x2d\x9f\xb2\x7c\xef\xf2\x1b\x2f\x18\x5f\x98\xfb\xc2\xb5\x17\xec\xf5\x01\xf5\xc3\xea\xe3\xea\xd3\xea\xf3\xeb\xe7\xd4\x2f\xac\x5f\x59\xdf\x5c\x2f\xd4\xbf\x59\x7f\xbe\xfe\x9b\xfa\x5f\x57\x78\xaf\x18\xbc\x22\x72\x45\xca\x8a\x9c\x15\x25\x2b\xe6\xae\x58\xbe\xa2\x71\xc5\xc1\x15\xc7\x57\x9c\x5d\x71\x69\xc5\xf5\x95\x74\x65\xef\x95\xc3\x56\xc6\xad\x34\xae\xcc\x5d\x59\xba\x72\xee\xca\x65\x2b\x37\xaf\x6c\x5d\x79\x74\xe5\xdb\x2b\x3f\x5e\xf9\xcd\xca\x5f\x57\x79\xae\x1a\xb8\x2a\x6c\xd5\x98\x55\x99\xab\x66\xac\xaa\x58\xb5\x68\xd5\xea\x55\xcd\xab\x84\x55\xc7\x56\x9d\x59\xf5\xc5\xea\x31\xab\xcf\xad\xbe\xbc\xfa\xc6\x1a\xcf\x35\x83\xd6\xe8\xd6\x24\xaf\xc9\x5a\x33\x73\x4d\xf5\x9a\x45\x6b\x56\xaf\x69\x5e\x23\xac\x39\xb1\xe6\xdc\x9a\x4b\x6b\xc7\xac\x7d\x6f\xed\x17\x6b\xbf\x5f\x07\xeb\x02\xd6\x0d\x5b\x17\xb3\xce\xb8\x2e\x77\x5d\xe9\xba\xf9\xeb\xea\xd7\x35\xad\x3b\xbc\xee\xc4\xba\x73\xeb\x2e\xaf\xbb\xb1\x5e\xbd\x7e\xda\xfa\x53\xeb\x2f\xac\xbf\xb6\xde\xbe\x21\x60\xc3\xb0\x0d\x71\x1b\xd2\x36\xe4\x6f\x98\xb3\x61\xd1\x86\xd5\x1b\x5a\x36\x74\x6e\x38\xb9\xe1\xfc\x86\x6f\x36\xfc\xba\xd1\x7b\xe3\xa0\x8d\xba\x8d\xe3\x36\x4e\xdc\x38\x63\x63\xc5\xc6\xc5\x1b\xd7\x6e\x6c\xdd\xd8\xb9\xf1\xe4\xc6\x8f\x37\x5e\xd9\xf8\xeb\x26\xef\x4d\x83\x36\xe9\x36\x25\x6f\xca\xda\x54\xb8\xc9\xb6\xe9\xb9\x4d\x9b\x37\xed\xdd\xf4\xca\xa6\xd3\x9b\x2e\x6c\xba\xba\xe9\xc6\x66\xcf\xcd\x83\x36\xeb\x36\x8f\xdb\x9c\xbd\xb9\x68\x73\xed\xe6\xe7\x36\x6f\xde\xdc\xb6\xf9\xb5\xcd\xef\x6d\x09\xdd\xd2\xb4\xe5\xf0\x96\xe3\x5b\xce\x6e\xb9\xb4\xe5\xa7\x06\x75\xc3\xc0\x86\xb0\x86\x31\x0d\x99\x0d\x33\x1a\xaa\x1a\x96\x34\xac\x6f\x68\x6d\x38\xda\xf0\x76\xc3\xa7\x0d\x57\x1b\x6e\x6e\xf5\xde\x3a\x68\x6b\xd8\xd6\xe4\xad\x99\x5b\xf3\xb7\xce\xd9\xba\x70\x6b\xfd\xd6\xc6\xad\x07\xb7\x1e\xdf\x7a\x76\xeb\xc5\xad\xd7\x1b\x79\x63\xdf\xc6\xe1\x8d\x71\x8d\xc6\xc6\x29\x8d\x65\x8d\x0b\x1b\xeb\x1b\x1b\x1b\xdb\x1b\x5f\xdb\xd6\x7f\x5b\xe8\xb6\x84\x6d\x69\xdb\xa6\x6c\x2b\xdb\x36\x7f\xdb\xf2\x6d\x0d\xdb\xbe\xdf\x66\x6f\xf2\x6f\x1a\xda\x14\xd9\x94\xd2\x94\xd3\x54\xd2\x54\xdd\xb4\xa4\xe9\x7c\xd3\xe5\xa6\x1b\xdb\x3d\xb7\x0f\xda\xae\xdb\x3e\x6e\x7b\xf6\xf6\xc2\xed\xb6\xed\xcf\x6c\x5f\xbf\xbd\x75\x7b\xe7\xf6\x37\xb7\x9f\xdf\x7e\x79\xfb\x8d\x66\xcf\xe6\x41\xcd\x61\xcd\xc9\xcd\x99\xcd\x33\x9b\xab\x9a\x17\x37\xaf\x6d\x6e\x6d\xbe\xb9\xc3\x77\xc7\xe0\x1d\xba\x1d\xc9\x3b\x32\x77\xcc\xd8\x51\xb6\x63\xe1\x8e\x95\x3b\x9a\x77\xb4\xef\x78\x79\xc7\x9b\x3b\xce\xef\xf8\x6c\xc7\xe5\x1d\xd7\x76\xfc\xb4\xe3\x56\x0b\x6f\xf1\x6d\xe9\xdb\x32\xb8\x65\x78\x8b\xae\x25\xae\x25\xb9\xc5\xd8\x32\xa5\xa5\xac\x65\x7e\xcb\xf2\x96\x86\x96\xf6\x96\x63\x2d\x27\x5b\xde\x6b\x39\xdf\xf2\x59\xcb\xe5\x96\x9f\x76\xf2\x9d\x7d\x77\x0e\xdf\x19\xb7\x33\x6d\x67\xfe\xce\x53\x3b\xcf\xee\xbc\xb4\xf3\xea\xce\xeb\xad\xbc\xb5\x7f\xeb\xd0\xd6\xd0\xd6\xc8\xd6\x84\xd6\xf1\xad\xd9\xad\xf9\xad\x85\xad\x65\xad\xd5\xad\xf3\x5b\x97\xb4\x2e\x6f\x5d\xdb\xda\xd0\xda\xd2\x2a\xb4\xbe\xd2\x7a\x62\xd7\xd0\x5d\xa1\xbb\x22\x77\x8d\xdb\x95\xb5\x6b\xca\xae\x99\xbb\xaa\x76\xcd\xdd\xb5\x6c\xd7\xe6\x5d\x6d\xbb\x5e\xdb\xf5\xde\xae\xcf\x76\x7d\xbf\xcb\xbe\x3b\x60\xf7\xb0\xdd\x61\xbb\x63\x76\x8f\xdb\x9d\xbd\x3b\x7f\xf7\x9c\xdd\x8b\x76\xaf\xdc\xdd\xb4\xfb\xf0\xee\x13\xbb\xcf\xed\xbe\xbc\xfb\xc6\x6e\xfb\x1e\xf5\x9e\x81\x7b\xc2\xf6\x24\xef\xc9\xda\x53\xb8\xc7\xb6\x67\xe1\x9e\x67\xf6\xd4\xef\x69\xda\x73\x70\xcf\xd1\x3d\x6f\xef\xf9\x78\xcf\x95\x3d\xbf\xee\x85\xbd\x9e\x7b\x07\xed\x0d\xdb\x9b\xbc\xd7\xb8\x37\x77\x6f\xe9\xde\xb9\x7b\x97\xef\x6d\xd8\xdb\xbe\xf7\xd8\xde\x33\x7b\xbf\xd8\xfb\xc3\x3e\xd8\xe7\xb9\x2f\x60\xdf\xb0\x7d\x31\xfb\x8c\xfb\x72\xf7\x95\xee\x9b\xbf\xaf\x7e\x5f\xe3\xbe\x83\xfb\x8e\xef\x3b\xbb\xef\xe2\xbe\xeb\x6d\xb4\xcd\xbf\x6d\x50\xdb\xb0\xb6\xc8\xb6\x31\x6d\x99\x6d\x33\xdb\xaa\xdb\x16\xb5\xad\x6e\x6b\x6e\x13\xda\x8e\xb5\x9d\x69\xbb\xd8\x76\x7d\x3f\xdf\x3f\x74\x7f\xc2\xfe\xf1\xfb\xf3\xf7\xcf\xd9\xbf\x70\xff\xca\xfd\xcd\xfb\x85\xfd\xc7\xf6\x7f\xbc\xff\xfb\x76\x68\xf7\x6d\x1f\xda\x1e\xd5\xae\x6f\xcf\x69\x2f\x69\xaf\x6d\x5f\xd6\xbe\xbe\x7d\x77\xfb\xcb\xed\xa7\xda\x2f\xb4\xff\x74\xc0\xf3\xc0\xa0\x03\xba\x03\xe3\x0e\x64\x1f\x28\x3a\x50\x7b\x60\xd9\x81\xf5\x07\x76\x1f\x38\x7a\xe0\xed\x03\xe7\x0e\x5c\x3e\x70\xe3\xa0\xe7\xc1\x41\x07\xe3\x0e\x66\x1d\x2c\x3c\x58\x7d\xf0\x99\x83\x1b\x0f\xee\x3d\xd8\x79\xf0\xe4\xc1\xf3\x07\x2f\x1e\xbc\x7e\x88\x1f\x0a\x38\x34\xec\x50\xdc\xa1\xb4\x43\x53\x0e\x95\x1d\x5a\x78\x68\xe5\xa1\xe6\x43\xc2\xa1\x13\x87\xce\x1d\xfa\xe2\xd0\x0f\x87\xe9\xe1\xbe\x87\x43\x0f\x27\x1e\x9e\x78\xf8\xcc\xe1\x2b\x87\x6f\x1e\x51\x1f\xe9\x7d\x64\xe8\x91\xb0\x23\x09\x47\xf4\x47\xb2\x8e\x4c\x3b\x52\x7a\xc4\x76\x64\xf1\x91\xfa\x23\x9b\x8f\xb4\x1e\x39\x7c\xe4\xc4\x91\x73\x47\x2e\x08\x91\xc2\x62\xe1\x8c\x70\xab\x23\xac\xa3\xa2\xe3\x70\xc7\xa9\x8e\x4b\x1d\x3f\x75\xaa\x3b\x07\x76\x86\x75\x26\x77\x66\x75\xd6\x77\xbe\xf9\x22\x7d\x31\xe5\xc5\xf1\x2f\x4e\x7b\xb1\x54\xfe\xdf\x0c\x04\x80\x07\x82\x00\xfd\xc1\x0a\x2a\xa0\x90\x0d\x85\x30\x0f\x00\x3e\xf7\xd9\x02\x4c\xfe\xdd\xc1\x0f\x5a\xa5\x14\xf7\x02\x80\x99\x00\x98\x26\xd0\x1f\x66\x62\x9a\x82\x27\xd4\x62\x9a\x41\x24\x2c\xc2\x34\x07\x0d\xb4\x63\x5a\x05\xb9\x70\x1a\xd3\x6a\x18\x4a\x86\x62\xda\x03\x26\x92\x64\x4c\x7b\x81\x2f\x59\x86\x69\x1f\xe8\x4b\xd6\x63\xda\x17\x42\xc9\x5e\x4c\xfb\xc1\x0c\xf2\x1e\xa6\xfd\x21\x97\x8e\x04\x03\x58\xa1\x1a\x16\x80\x0d\xca\x61\x36\x94\x41\x2d\x68\x20\x06\xa2\x20\x1a\xe2\x41\x03\xe9\x60\x05\x2b\xcc\x86\x0a\xb0\x80\x06\x26\x40\x15\x14\x43\x24\x68\x20\x15\x2a\xa0\x02\x34\x90\xe3\xca\x55\x23\xef\x59\xa0\x06\x2c\x60\x83\xb9\x60\x81\x12\x88\x84\x1c\xb0\x42\x11\x58\xa1\x16\xac\xa0\x81\x87\xc1\x0a\x55\x60\x05\x3d\x58\xa1\x02\x4a\xba\xa1\x8f\xb9\x87\xee\x18\x97\x35\x77\x3f\xaf\x71\xa1\x4d\x91\x99\x6b\xa0\x5c\x3e\x23\x79\x11\x09\x51\xf2\xff\x24\x48\x84\x78\x78\xd0\xcd\x33\x29\x5d\x0b\xb5\x50\x0a\x66\xa8\x93\x11\xcb\xa0\x1c\xaa\x64\xef\x47\xc2\x5c\x88\x86\x48\x88\x85\x07\xba\x71\x3a\x19\x23\x5c\x8c\xf7\xb2\xa8\x5c\x8e\x86\x59\xe6\xb0\x81\x19\x4a\xc0\x02\x95\x60\x06\x1b\x3c\x06\x1a\xb0\x42\x69\x8f\xc8\x46\x76\xdb\xeb\x7e\xa6\x18\xac\x50\x09\x06\x28\x93\x4b\xa8\x06\x6a\xa1\x1c\xcc\xb2\x7f\x0a\xbb\xe4\xb3\x14\x7d\x89\x3b\x13\xca\xa1\x18\x2c\x50\x25\x97\x42\x09\x68\xa0\x0e\xaa\x64\x76\x9b\x6c\x4b\x99\x5c\x8a\xa9\x50\x0d\x66\x28\xc6\xbd\xee\x79\x74\xa0\xb9\x47\x1c\xcb\xe4\x78\x55\xc3\x18\x18\x05\xa3\x60\x9e\xfc\x3f\x12\xcc\x6e\x58\x91\x60\x05\x1b\xcc\x86\x51\x50\xd1\x0d\xb3\x06\x46\x41\x26\x4c\x00\x03\x98\x20\x0b\x26\x83\x09\x22\x10\x13\x9c\xbf\xd9\x39\xe6\x40\x09\xdc\xe5\x1f\x0f\x04\xf9\x1b\x9b\xc0\x40\x05\x6a\xf0\x00\x4f\xf0\x02\x6f\xf0\x01\x5f\xf0\x03\x7f\xe8\x05\x01\x10\x08\xbd\xa1\x0f\xf4\x85\x7e\xd0\x1f\x06\xc0\x40\xb8\x0f\x06\x41\x10\x0c\x86\x21\x30\x14\xee\x07\x0d\x04\xc3\x30\xd0\xc2\x70\x08\x81\x50\x18\x01\x23\xe1\x01\x08\x83\x70\xd0\x41\x04\x44\xc2\x28\xb9\x36\xc4\x40\x2c\xc4\x41\x3c\x24\xc0\x68\x48\x84\x24\x18\x03\x0f\x42\x32\x8c\x85\x71\xf0\x10\xa4\x40\x2a\xe8\xc1\x00\x46\x30\x41\x1a\xa4\xc3\x78\x98\x00\x13\x21\x03\x32\xe1\x61\xc8\x82\x49\x90\x0d\x8f\x40\x0e\x4c\x86\x5c\xc8\x83\x29\x30\x15\xf2\xa1\x00\xa6\xc1\x74\x98\x01\x8f\xc2\x4c\x98\x05\x85\x60\x86\x5d\xf0\x1c\x2c\x85\xd7\x61\x33\x5c\x81\x65\xb0\x1a\x56\xc0\x76\xd8\x0f\xbb\xa1\x9e\x30\x78\x16\x36\xc0\x75\xf8\x0f\xac\x82\x2d\xb0\x9c\x70\xf8\x02\x7e\x84\x66\x68\x87\x9f\xe1\x27\xb8\x01\xad\xb0\x16\x7e\x80\x75\xf0\x2f\x78\x01\x5a\xe0\x2a\xbc\x02\x3b\xe1\x7b\xa2\x82\x4f\x88\x9a\x78\x10\x4f\xb8\x04\x5f\x11\x2f\xe2\x0d\x02\x74\x10\x1f\xd8\x4b\x7c\x89\x1f\xf1\x27\xbd\x48\x00\x09\x84\x4f\xe1\x4b\xf8\x07\x7c\x06\x9f\xc3\x45\xf8\x3b\xfc\x93\xf4\x26\x7d\x48\x5f\xd2\x8f\xf4\x27\x03\xc8\x40\x72\x1f\x19\x44\x82\xc8\x60\x32\x84\x0c\x25\xf7\x13\x0d\x09\x26\xc3\x88\x96\x0c\x87\x1d\x24\x84\x84\x92\x11\x64\x24\x79\x80\x84\x91\x70\xa2\x23\x11\x24\x92\x8c\x82\x6d\x24\x8a\x44\x93\x18\x12\x4b\xe2\x48\x3c\x49\x20\xa3\x49\x22\x49\x22\x63\xc8\x83\x24\x99\x8c\x25\xe3\xc8\x43\x24\x85\xa4\x12\x3d\x31\x10\x23\x31\x91\x34\x92\x4e\xc6\x93\x09\x64\x22\xc9\x20\x99\xe4\x61\x92\x45\x26\x91\x6c\xf2\x08\xc9\x21\x93\x49\x2e\xc9\x23\x53\xc8\x54\x92\x4f\x0a\xc8\x34\x32\x9d\xcc\x20\x8f\x92\x99\x64\x16\x29\x24\x66\x52\x44\x8a\x49\x09\xb1\x90\x52\x32\x9b\x94\x91\x72\x32\x87\x3c\x46\x2a\x48\x25\xa9\x22\x56\x52\x4d\x1e\x27\x36\x52\x43\x6a\x49\x1d\x99\x4b\xe6\x91\xf9\x64\x01\x59\x48\x9e\x20\x8b\xc8\x93\x64\x31\x79\x8a\x2c\x21\x4f\x93\x67\xc8\xb3\xe4\x39\xb2\x94\x2c\x23\xcf\x93\xe5\xe4\x05\x52\x4f\x56\x90\x95\x64\x15\x59\x4d\xd6\x90\xb5\x64\x1d\x59\x4f\x36\x90\x8d\x64\x13\xd9\x4c\xb6\x90\x06\xb2\x95\x34\x92\x6d\xa4\x89\x6c\x27\xcd\x64\x07\x69\x21\x3b\x49\x2b\xd9\x45\x76\x93\x3d\x64\x2f\xd9\x47\xda\xc8\x7e\xd2\x4e\x0e\x90\x83\xe4\x10\x39\x4c\x8e\x10\x81\x74\x90\x4e\xf2\x22\x39\x4a\x5e\x22\x2f\x93\x3f\x91\x57\xc8\xab\xe4\x35\xf2\x67\x72\x8c\xbc\x4e\x8e\x93\xbf\x90\x13\xe4\x0d\xf2\x26\xf9\x2b\x39\x49\xde\x22\x6f\x93\x77\xc8\x29\xf2\x2e\x39\x4d\xfe\x46\xde\x23\x22\x39\x43\xde\x87\x4e\x78\x91\x9c\x85\x97\xe1\x4f\x70\x92\x7c\x00\x47\xe1\x25\x78\x0b\x9e\x81\x37\xe1\x79\x72\x0e\x0e\xc0\xdb\x70\x1c\xfe\x02\xc7\xc8\x87\xe4\x3c\xf9\x88\x7c\x4c\x3e\x21\x9f\x92\xbf\x93\x0b\xb0\x92\xfc\x83\x7c\x46\x3e\x27\x5f\x90\x7f\x42\x03\x34\xc2\x56\xf8\x37\xec\x81\xf5\xd0\x04\xfb\x60\x0d\x6c\x84\x4d\xf0\x2a\xb9\x48\xbe\x24\x97\xc8\x57\xe4\x32\xf9\x9a\x7c\x43\xbe\x25\x57\xc8\xff\x90\xab\xe4\x3b\x72\x8d\xfc\x8b\x7c\x4f\xfe\x4d\x7e\x20\x3f\x92\xeb\xe4\x3f\xe4\x27\xf2\x33\xb9\x41\x7e\x21\xbf\x92\xdf\xc8\x4d\xf2\x3b\xb9\x45\x6e\x13\x3b\x71\x50\xa0\x84\x52\xca\x28\xa7\x2a\xaa\xa6\x1e\xd4\x93\x7a\x51\x6f\xea\x43\x7d\xa9\x1f\xf5\xa7\xbd\x68\x00\x0d\xa4\xbd\x69\x1f\xda\x97\xf6\xa3\xfd\xe9\x00\x3a\x90\xde\x47\x07\xd1\x20\x3a\x98\x0e\xa1\x43\xe9\xfd\x54\x43\x83\xe9\x30\xaa\xa5\xc3\x69\x08\x0d\xa5\x23\xe8\x48\xfa\x00\x0d\xa3\xe1\x54\x47\x23\x68\x24\x1d\x45\xa3\x68\x34\x1c\xa4\x31\x34\x16\xfe\x87\xc6\xd1\x78\x9a\x00\x87\xe0\x5d\x78\x07\x0e\x43\x11\x14\xd3\xd1\x50\x02\x7f\x03\x0b\x9c\x82\xd3\xf0\x3e\xbc\x07\x22\x9c\x81\x52\xf8\x10\xce\xc2\x07\x70\x04\x66\xc3\xc7\x70\x1e\x3e\x82\x32\xf8\x0e\xe6\x40\x39\x3c\x06\x95\x50\x01\x55\x34\x11\xac\xf0\x38\x54\xcb\xfd\x94\xd4\x7f\xcf\x85\x79\x30\x1f\x16\xca\xd7\xf5\x4f\xc2\x22\x78\x0a\x16\xc3\x12\x78\x1a\xae\xc1\x6b\x34\x89\x8e\xa1\x0f\xd2\x64\x3a\x96\x8e\x83\xdb\x60\xa7\x0f\xd1\x14\x9a\x4a\xf5\xe0\x20\x40\x0d\xd4\x48\x4d\x34\x8d\xa6\xd3\xf1\x74\x02\x9d\x48\x33\x68\x26\x7d\x98\x66\xd1\x49\x34\x1b\x7e\x85\xdf\xe8\x23\x34\x87\x4e\xa6\xb9\x34\x8f\x4e\xa1\x53\x69\x3e\x2d\xa0\xd3\xe8\x74\x3a\x83\x3e\x4a\x67\xd2\x59\xb4\x90\x9a\x69\x11\x2d\xa6\x25\xd4\x42\x4b\xe9\x6c\x5a\x46\xcb\xe9\x1c\xfa\x18\xad\xa0\x95\xb4\x8a\x5a\x69\x35\x7d\x9c\xda\x68\x0d\xad\xa5\x75\x74\x2e\x9d\x47\xe7\xd3\x05\x74\x21\x7d\x82\x2e\xa2\x4f\xd2\xc5\xf4\x29\xba\x84\x3e\x4d\x9f\x81\xdf\xe1\x16\x7d\x96\x3e\x07\x97\xe1\x6b\xba\x94\x2e\xa3\xcf\xd3\xe5\xf4\x05\x5a\x4f\x57\xd0\x95\x74\x15\x5d\x4d\xd7\xd0\xb5\x74\x1d\x5d\x4f\x37\xd0\x8d\x74\x13\xdd\x4c\xb7\xd0\x06\xba\x95\x36\xd2\x6d\xf0\x67\xda\x44\xb7\xd3\x66\xba\x03\xbe\x81\x6f\x69\x0b\xdd\x49\x5b\xe9\x2e\xba\x9b\xee\xa1\x7b\xe9\x3e\xda\x46\xf7\xd3\x76\x7a\x80\x1e\xa4\x87\xe8\x61\x7a\x84\x0a\xb4\x83\x76\xd2\x17\xe9\x51\xfa\x12\x7d\x99\xfe\x89\xbe\x42\x5f\xa5\xaf\xd1\x3f\xd3\x63\xf4\x75\x7a\x9c\xfe\x85\x9e\xa0\x6f\xd0\x37\xe9\x5f\xe9\x49\xfa\x16\x7d\x9b\xbe\x43\x4f\xd1\x77\xe9\x69\xfa\x37\xfa\x1e\x15\xe9\x19\xfa\x3e\x3d\x4b\x3f\xa0\xe7\xe8\x87\xf4\x3c\xfd\x88\x7e\x4c\x3f\xa1\x9f\xd2\xbf\xd3\x0b\xf4\x1f\xf4\x33\xfa\x39\xfd\x82\xfe\x93\x5e\xa4\x5f\xd2\x4b\xf4\x2b\x7a\x99\x7e\x4d\xbf\xa1\xdf\xd2\x2b\xf4\x7f\xe8\x55\xfa\x1d\xbd\x46\xff\x45\xbf\xa7\xff\xa6\x3f\xd0\x1f\xe9\x75\xfa\x1f\xfa\x13\xfd\x99\xde\xa0\xbf\xd0\x5f\xe9\x6f\xf4\x26\xfd\x9d\xde\xa2\xb7\xa9\x9d\x3a\x18\x30\xc2\x28\x63\x8c\x33\x15\x53\x33\x0f\xe6\xc9\xbc\x98\x37\xf3\x61\xbe\xcc\x8f\xf9\xb3\x5e\x2c\x80\x05\xb2\xde\xac\x0f\xeb\xcb\xfa\xb1\xfe\x6c\x00\x1b\xc8\xee\x63\x83\x58\x10\x1b\xcc\x86\xb0\xa1\xec\x7e\xa6\x61\xc1\x6c\x18\xd3\xb2\xe1\x2c\x84\x85\xb2\x11\x6c\x24\x7b\x80\x85\xb1\x70\xa6\x63\x11\x2c\x92\x8d\x62\x51\x2c\x9a\xc5\xb0\x58\x16\xc7\xe2\x59\x02\x1b\xcd\x12\x59\x12\x1b\xc3\x1e\x64\xc9\x6c\x2c\x1b\xc7\x1e\x62\x29\x2c\x95\xe9\x99\x81\x19\x99\x89\xa5\xb1\x74\x36\x9e\x4d\x60\x13\x59\x06\xcb\x64\x0f\xb3\x2c\x36\x89\x65\xb3\x47\x58\x0e\x9b\xcc\x72\x59\x1e\x9b\xc2\xa6\xb2\x7c\x56\xc0\xa6\xb1\xe9\x6c\x06\x7b\x94\xcd\x64\xb3\x58\x21\x33\xb3\x22\x56\xcc\x4a\x98\x85\x95\xb2\xd9\xac\x8c\x95\xb3\x39\xec\x31\x56\xc1\x2a\x59\x15\xb3\xb2\x6a\xf6\x38\xb3\xb1\x1a\x56\xcb\xea\xd8\x5c\x36\x8f\xcd\x67\x0b\xd8\x42\xf6\x04\x5b\xc4\x9e\x64\x8b\xd9\x53\x6c\x09\x7b\x9a\x3d\xc3\x9e\x65\xcf\xb1\xa5\x6c\x19\x7b\x9e\x2d\x67\x2f\xb0\x7a\xb6\x82\xad\x64\xab\xd8\x6a\xb6\x86\xad\x65\xeb\xd8\x7a\xb6\x81\x6d\x64\x9b\xd8\x66\xb6\x85\x35\xb0\xad\xac\x91\x6d\x63\x4d\x6c\x3b\x6b\x66\x3b\x58\x0b\xdb\xc9\x5a\xd9\x2e\xb6\x9b\xed\x61\x7b\xd9\x3e\xd6\xc6\xf6\xb3\x76\x76\x80\x1d\x64\x87\xd8\x61\x76\x84\x09\xac\x83\x75\xb2\x17\xd9\x51\xf6\x12\x7b\x99\xfd\x89\xbd\xc2\x5e\x65\xaf\xb1\x3f\xb3\x63\xec\x75\x76\x9c\xfd\x85\x9d\x60\x6f\xb0\x37\xd9\x5f\xd9\x49\xf6\x16\x7b\x9b\xbd\xc3\x4e\xb1\x77\xd9\x69\xf6\x37\xf6\x1e\x13\xd9\x19\xf6\x3e\x3b\xcb\x3e\x60\xe7\xd8\x87\xec\x3c\xfb\x88\x7d\xcc\x3e\x61\x9f\xb2\xbf\xb3\x0b\xec\x1f\xec\x33\xf6\x39\xfb\x82\xfd\x93\x5d\x64\x5f\xb2\x4b\xec\x2b\x76\x99\x7d\xcd\xbe\x61\xdf\xb2\x2b\xec\x7f\xd8\x55\xf6\x1d\xbb\xc6\xfe\xc5\xbe\x67\xff\x66\x3f\xb0\x1f\xd9\x75\xf6\x1f\xf6\x13\xfb\x99\xdd\x60\xbf\xb0\x5f\xd9\x6f\xec\x26\xfb\x9d\xdd\x62\xb7\x99\x9d\x39\x38\x70\xc2\x29\x67\x9c\x73\x15\x57\x73\x0f\xee\xc9\xbd\xb8\x37\xf7\xe1\xbe\xdc\x8f\xfb\xf3\x5e\x3c\x80\x07\xf2\xde\xbc\x0f\xef\xcb\xfb\xf1\xfe\xf0\x0b\x1f\xc0\x07\xf2\xfb\x80\xf3\xac\xbc\xcc\x4c\x75\xa5\xb9\xd8\x66\xad\xf2\xaf\xb6\xd8\xca\xad\x25\xc5\x96\xaa\x5a\x8b\xcd\x52\xc2\xc7\x17\x99\x6d\x74\xc2\x44\x5a\x3e\xc7\xf7\xb1\xd9\x36\x8b\xa5\xaa\xc2\x5c\x55\x52\x5e\xcc\x4c\x55\xb3\x99\xa5\x6a\xb6\xaa\xc2\x5a\x35\xbb\x46\x35\xa9\xcc\x6a\xab\x52\x59\xe5\xbf\x79\xf2\xdf\x3a\xe9\xaf\x47\x5d\x55\x79\x54\x4c\xec\x68\x55\x4d\x71\xd9\x3c\xb3\xb2\x97\x16\xeb\x35\xdb\x66\x9e\x6b\x29\xb6\x56\x16\x79\x99\x8b\xeb\x6a\x95\x54\x6d\x79\x45\x89\x9c\xe2\x65\x56\xeb\x63\xb2\x6a\x6c\x54\x9a\x67\x89\xb5\xb6\xc8\x52\x61\x9d\xa7\xaa\xb5\x56\x59\x6b\xfc\x4a\xca\x2d\x36\x4b\x4d\x79\x8d\xbc\xe7\x65\xae\xb2\xd6\x5a\x2a\x2c\xe5\x66\x55\xba\xb9\xb2\xd2\xac\x32\x5a\x2a\x6a\xcd\xaa\xdc\x32\x4b\xad\x59\x9d\x69\xae\x2c\x2a\x31\xd3\xfc\x72\x9a\x5d\xae\x9a\x5c\x3e\xbb\xd2\xcc\xb2\xcb\xca\x59\x76\x4d\xb9\xca\x5c\x51\x5d\x66\xe6\x45\x96\x5a\xb3\x6a\xb6\x9c\xaf\x44\xca\xe7\x61\xa9\xae\x29\xaf\xb0\x56\xf1\x85\x96\x5a\x33\x93\x4e\xd6\x4a\x40\xbc\xdc\x5a\x6b\x56\x57\x28\x68\xf3\xcb\x99\xad\xcc\xaa\xae\x91\xe0\xa2\x55\xb2\x60\xb5\xe6\x3a\x8f\x3a\x25\x2b\xab\x2e\x2b\x67\xd5\x35\xe5\x2a\x6b\xa5\x65\xb6\xe2\x6e\xac\x31\x1a\x65\x0c\xca\x04\x59\xc6\x45\xc5\xa0\x8c\x43\x99\x84\x32\x15\xa5\x1e\x65\x9a\x22\xa3\xa3\x51\xa2\x7e\x34\xe2\x44\x8f\x46\x99\x88\x12\xf3\xc5\xc4\xa2\x44\xbd\x18\xd4\x8b\x41\xbd\x18\xe4\x8b\x41\xbe\x18\x67\x3e\x03\x4a\x23\x4a\x13\x4a\xb4\x23\x16\xed\x88\x45\xfb\x63\x91\x27\x16\xed\x8a\x45\xbe\x58\xe4\x8b\x45\xbe\x58\xe4\x89\x45\x9e\x58\xe4\x89\x45\x9e\x58\xc4\x8f\x43\xdc\x38\xc4\x8b\x43\xbc\x38\xc4\x8b\x43\xbc\x38\xb4\x3f\x0e\x71\xe3\x10\x37\x0e\x71\xe3\x10\x37\x0e\xed\x8f\x43\xfc\x78\xc4\x8f\x47\xfc\x78\xc4\x89\x47\x9c\x78\xc4\x89\x47\xfd\x84\x28\x94\xe8\x77\x02\xfa\x9b\x80\xf9\x13\xe2\x51\xa2\x9d\x09\x68\x67\x02\xda\x99\x80\xf8\x09\x88\x9f\x80\xf8\x09\x68\x67\x02\xda\x99\x80\x76\x26\x20\xef\x68\xb4\x73\x34\xf2\x8d\x46\xbe\xd1\xc8\x37\x1a\xf1\x47\x23\xfe\x68\xc4\x1f\x8d\xf8\xa3\x11\x7f\x34\xe2\x8f\x46\xfc\xd1\x88\x9f\x88\x7e\x25\xa2\x5f\x89\xc8\x97\x88\x7c\x89\xc8\x97\x88\x7c\x89\xe8\x5f\x22\xf2\x26\x22\x6f\x22\xe2\x26\x22\x6e\x12\xe2\x26\x21\x6e\x12\xe2\x24\x21\x4e\x12\xda\x95\x84\x76\xa5\xa2\x7e\x2a\xea\xa7\xa2\x7e\x2a\xea\xa7\x22\x6f\x2a\xc6\x35\x15\xf9\x53\x91\x5f\x8f\xfa\x7a\xd4\xd7\xe3\x79\xbd\xf3\x3c\xc6\x45\x8f\xbc\x7a\xe4\x35\xa0\x9f\x06\xcc\x6f\x40\x7c\x03\xe6\x37\xa2\x34\xa1\x7d\x26\xb4\x2f\x0d\xf1\xd2\x94\x38\xc7\x47\x45\xa1\x8c\x41\x19\x8b\x32\x0e\x65\x3c\xca\x04\x94\xa3\x51\x26\xa2\x4c\x42\x99\x8a\xd2\x89\x6b\x40\x69\x44\x69\x42\xa9\xc4\x39\x3e\x5a\xe6\x8d\x89\x8a\x72\xca\x68\x94\x31\x28\x63\x51\xc6\xa1\x8c\x47\x99\x80\x72\x34\xca\x44\x94\x49\x28\x53\x51\xea\xfd\xea\xaa\x4a\x2c\xb6\x9a\x62\xab\xcd\x52\x52\x54\xe1\xf7\x78\x9d\x55\x1a\x11\xe6\x5a\x6c\x35\x96\x12\x45\x27\x06\x31\x47\xc7\x79\x55\xd5\xd4\xc9\x03\x87\x8d\x57\x94\xdb\xcc\xea\x6a\x4b\x8d\xd4\x77\x9a\xea\x6c\x56\x59\x25\x1a\xe9\xa3\xa3\x63\x51\x26\x78\x59\x6a\x6a\xcb\x2b\xcd\xb5\x96\x12\x2f\x6b\x95\xc5\x52\x3e\xbb\xac\xb6\xcc\xb7\xb6\xcc\x66\xc1\x74\x8d\x4f\x69\xf9\x5c\x67\xda\xb7\xc6\x32\xd7\x52\xe5\x3c\x51\x6c\xad\xac\x34\x9b\x8b\xa5\x31\x4a\x42\x4b\x33\xa5\xc9\x41\x49\x4b\x4b\x33\xa0\x34\x7a\x2d\xb4\xd8\xac\x91\x35\x95\xc5\xd5\x1e\xb5\xf3\xac\x91\x35\x75\xd5\x7d\x8a\xcb\x6d\xc5\x75\x95\xa5\x15\x96\xf9\xae\xb1\xa6\x77\xd7\x31\x69\xd4\x91\x0e\xb9\xa9\xb9\x86\x29\xb7\x63\xae\x01\xcb\xbf\x48\x8a\x85\x4b\x25\xd0\xcd\x26\x9b\xb5\xd6\x5c\x6b\x51\xa7\xca\xf4\x6a\xbd\x22\x0c\x8a\x30\x2a\xc2\xa4\x88\x34\x45\xa4\x2b\x62\xbc\x22\x26\x28\x62\xa2\x22\x32\x14\x91\xa9\x88\x87\x15\x91\xa5\x88\x49\x8a\x78\x44\x11\x39\x8a\x98\xac\x88\x5c\x45\xe4\x29\x62\x8a\x22\xa6\x2a\x22\x5f\x11\x05\x8a\x98\x26\x0b\x3f\xd9\x1f\x67\x14\x3c\xad\x55\x16\xf9\xb0\xa7\x1c\xbd\xca\xe2\x6a\x6f\xb9\x68\xe4\xa4\x57\xa9\xb5\xce\x86\xa9\xf2\xb9\xa8\x57\x53\x3e\x5f\xd1\x93\x4b\x4a\x49\xca\xe5\xa5\x28\x56\x95\x3b\x01\x95\x82\xa9\xab\xf6\x90\x29\xea\xaa\x95\x40\xba\x4d\x04\x14\x9e\xba\x6a\x4f\x85\x46\x4a\xc8\x2c\x75\xd5\x1e\x32\x49\x5d\xb5\x17\x72\xd4\x55\x7b\x21\x45\x5d\xb5\xa7\xc2\x50\x57\xed\x59\x6c\xb3\xd6\xd4\x14\x99\x6d\x5e\xb6\xf2\xaa\xd9\x32\xae\x57\x89\xb9\xa6\xdc\x6c\x9d\x5f\x6e\x56\xc8\x5c\xe5\xef\x53\xbc\xc0\x56\x5e\x51\x51\x5e\x5c\x5b\x5e\x1c\xe0\x4c\x4b\x31\xa8\xb0\x94\xd6\xfa\xba\x1f\x50\xcd\x8e\x34\x57\xd4\xfa\x57\x98\x6d\xb3\x2d\x36\xb9\x1a\x4a\x07\xcb\xa5\x83\xaa\x0a\xe9\xaf\x1c\xb1\x8a\xaa\xba\x4a\x0c\x80\x94\x54\x67\x2b\x35\xb0\xb8\x4c\x51\xcc\x91\xff\x66\x48\x7f\x79\x79\x64\x79\x2d\xaf\x88\x2c\xaf\x95\xe3\x60\xae\xa8\x55\x9b\x6b\x25\xe1\x67\xae\xac\xb6\xd8\x6a\xcc\x55\x25\xd2\x9e\x77\xba\xc5\x56\x69\xae\x2a\x29\xaa\xa8\xe9\xd5\x95\x54\x0a\xcc\x69\x9e\xec\x92\xdc\x29\x44\xa5\x1a\xd5\xc6\x62\x9b\xd5\x5c\xcb\xcb\x8a\xcc\x36\x9e\x2b\xfd\xa9\x2d\x32\xdb\xbc\x53\x5d\xb1\xf0\x36\xbb\x92\x1e\xa9\xca\x94\xcf\xc3\xac\x48\x75\xaa\x0c\xa5\x36\x2b\x88\xa9\xd6\xd9\xd6\x2a\xcb\x63\x1e\x66\x45\xfa\x18\xba\x5a\x81\x4f\x71\x57\x5a\x66\x8e\xc6\xee\x2b\x3a\x4a\xaf\x36\x16\x9b\x25\xb0\x12\x59\x78\x98\x90\xc3\x82\x1c\x26\x85\xc3\x22\x0b\x6f\x53\x89\xb5\x56\x69\x34\xde\x16\x57\xd2\xc3\x84\xcc\x16\x45\xaa\x4d\x0a\xa2\x45\x16\x3e\xe9\x6e\x76\xcc\xee\x69\x47\x4c\x14\xca\x68\xdf\x74\xb7\x26\xe9\x3b\xdb\x6d\xc7\x67\xbc\x1b\x42\x59\x57\x5a\x3d\x41\xae\x18\xea\x72\x59\x78\x4c\x40\xcb\xcb\xd1\xf2\x09\x8a\xe5\xe5\x4a\x74\x26\xa0\x8d\xe5\x8a\xf4\x9e\xe0\x32\xdf\x67\xa2\x1b\xfc\x9c\xae\xb4\x6f\x86\xbb\x41\x8f\xb9\xed\xa8\x33\xe5\xf2\x50\x57\xc8\xc2\x37\xd3\x5d\xaf\xa2\x9b\x9e\x12\x88\x0a\x59\xf0\xcc\x12\x6b\x2d\xaf\x28\xb1\xd6\xaa\xb3\x94\xfc\x55\x4a\xfe\x2c\xf7\xfc\x55\xee\xf9\xb3\x94\xfc\x55\x4a\x20\xab\xcc\xd5\xd6\x9a\x5a\x9b\xb5\xba\xcc\xe2\x31\x09\x9d\xb5\xa2\xb3\x93\x14\x67\xad\xb2\xf0\x9b\x54\x56\x57\x35\xdb\x6c\xab\xab\xac\x30\xd7\xd5\xfa\x59\xdd\xf7\xd4\x39\x0a\xb7\x4d\xe1\xce\x71\xe7\xb6\xb9\x73\xe7\x28\xdc\x36\x45\x4c\x56\x72\xd5\xc8\xc2\x67\xb2\x5b\xc4\x6a\x7a\x14\x69\x0c\xce\x6c\x63\xa2\x93\x50\xa6\xa2\x54\x46\xca\xe8\x84\x18\x5f\x94\x4a\x6b\x53\x76\x62\xd5\xb9\x0a\x53\xad\x22\xf2\x94\xb2\xad\x53\xca\x36\x0f\xdd\xad\x43\x77\xf3\x14\x77\xeb\x64\xa1\xca\x93\x9a\x88\xaa\x4e\xfa\xeb\x97\xd7\xcd\xf5\x3a\xf7\x3d\x8f\x3c\xac\x03\x75\xd8\x42\xa6\xba\xb9\x31\xcf\x2d\x5d\xe0\x96\x5e\xe0\x56\xdf\xa6\x29\x41\x58\xa8\x34\xcc\x69\x5d\x6d\x61\x61\x57\x5b\x48\x35\x29\x6d\xd5\xac\x74\x91\x3e\x93\x6a\x2a\xcc\x35\x65\x4a\xda\xea\x96\x56\xda\xbd\xd2\xc5\x9a\x6a\xcb\x94\x5e\x57\xea\x00\xe4\x94\x4f\xaa\x3c\x52\x61\x5a\xce\x21\xa7\x03\x52\xbb\xcc\xc1\x93\x72\x80\xe4\xb4\x7f\xaa\xf3\x72\x4b\xe9\xce\xe5\x4e\x44\x4e\xf6\xea\xea\x4f\x94\xbe\xc8\x50\x6c\x29\x29\xaf\xa8\x30\x2b\x18\x26\x37\x32\x93\x1b\x99\xa9\x07\x99\xbf\xa9\x1b\x81\xcf\x04\xb7\x7c\x13\xdc\xf2\x4d\xe8\x99\x6f\x42\xf7\x7c\x59\x5d\x36\xfb\x4c\x72\xc3\x98\xe4\x86\x31\xa9\xa7\xa3\x93\xdc\x1c\x9d\xd4\x1d\x2f\xcf\x0d\x23\xcf\x0d\x23\xaf\xa7\x1d\x79\xdd\xf3\x15\x74\xe9\xfa\x62\xdf\x8a\x41\x95\xeb\x15\x9e\x50\x2a\x8b\x72\xc2\xe0\x86\x6e\xe8\x81\xee\x8b\x1d\x2b\x6a\xca\xd5\x58\x49\x1b\xbb\xd2\xbe\x26\x77\x1e\x53\x17\x4f\xaf\xae\xae\x15\x15\xdd\x79\x4d\x5d\x08\x01\xe9\x3d\x23\x93\xee\x66\x2d\x76\xaa\xf2\x4e\xa0\x7b\x8f\xaa\xe4\x1d\xdf\x33\xef\x84\xae\xa8\xfa\x4e\x70\x37\x6d\x82\x1b\xe8\x04\x37\x53\x7a\x4d\xe8\x6e\x67\xc0\xc4\x1e\x90\x81\x19\x3d\x59\x7d\x32\xbb\xa2\x16\x98\x79\xe7\xd9\x2e\xdf\xbc\xa4\x2e\x12\xeb\x88\x5b\x9e\xac\x3b\xf2\x64\xb9\x45\x74\x92\xbb\xd9\x93\xba\xcc\xee\xdd\xad\x17\x54\x4e\xe7\xb8\xa1\xe6\xdc\x81\x9a\xe3\x56\x66\x93\xdd\x4a\x7a\x72\x0f\x17\xfd\x26\x77\x6b\x3e\x93\xbb\xb2\x05\xe6\xde\x01\x9a\xeb\x06\x9a\xe7\x16\xed\x3c\x77\xb3\xf3\xba\xcc\xf6\xce\x73\x35\xdb\xde\x79\x77\x78\xe0\x9b\xe7\x56\x16\x01\x53\x7b\x18\x16\x50\xd0\xb3\xc6\x17\x74\xaf\xf1\xd3\xba\xbc\xea\x35\xad\x7b\x41\xfa\x4c\xeb\x32\xd4\x3b\xb5\xa2\xba\xcc\x2c\x2f\xda\xf8\x9a\x94\xb5\x12\x79\xc7\xd3\x54\xab\x1c\xf5\x9a\x60\xc5\x94\xef\xa4\xca\x72\xc9\x0f\x65\x27\xcf\x4d\xd9\x7b\x52\xa5\x65\xb6\xa2\x14\x58\x6e\xad\x35\x77\x5b\x0b\x52\xc9\x0c\x5c\x6f\xa9\x35\x7b\x20\x03\x9f\x66\xa9\x35\x33\x53\xad\x99\x4b\xe0\xaa\x0c\x73\x75\xb5\x99\x3e\x5c\x47\xb3\xea\x3c\x90\x83\xe5\x94\x59\x59\xae\xb9\xce\x03\x69\x98\xa1\xac\xdc\x77\x82\x1b\x74\x2f\x3c\xe1\xdc\xf7\x36\x77\xf9\x61\x71\xf7\xc3\xe2\xf4\xa3\xdc\xe9\x47\xdf\xba\xee\x59\x15\x2b\x1f\x93\x8c\xf0\xb0\x2a\xf4\xf2\x48\x15\xab\x37\xd0\xaa\x3a\x56\x5c\x56\xee\xeb\xee\x54\xaf\x1e\xd9\x7d\xad\xee\x61\xa9\x73\x0f\x8b\xd5\x15\x16\xe5\xca\x34\x0a\xaf\x54\xf1\x4a\x34\x0e\xaf\x40\xe3\xa2\x9c\x2b\x4f\x78\xa5\x1b\xe5\x5c\x31\x72\xae\x38\xe1\x15\x32\x5e\x69\xc6\x45\xe3\x95\x6f\x34\xae\x0c\x44\x23\x5e\x34\xe2\xe1\x78\x1c\x17\x8d\xf9\xa2\xf1\xca\x3a\xda\x99\x1f\x57\x04\x70\x4a\x16\x17\x83\x76\xc5\x20\x5e\x0c\x5e\x79\xc7\x20\x5e\x2c\xea\xc5\x3a\xf7\x11\x3f\xd6\xb9\x82\x83\xe7\xe3\x10\x27\x0e\xed\x89\x43\xfd\x78\x3c\x1e\x8f\xc7\xe3\x9d\xc7\xd1\xef\x78\xf4\x3b\x1e\xfd\x8e\x47\xbb\xe3\x4d\xea\xa9\x72\x87\xaf\x9e\xa7\x88\xa9\xca\xb0\x3c\x4f\xb9\x76\x98\xea\x2c\x02\xaf\x79\xce\x94\xba\x40\x51\x5c\xa0\x88\xca\xf2\x2a\x79\x2e\x63\x29\xb6\x56\x95\x78\x59\xe6\x17\x57\x98\x2b\x4b\x8a\x2a\x94\x89\x48\x9a\x62\x75\x8c\xb2\xfe\x10\x6d\x52\xbc\x89\x36\x29\xeb\x5d\xd1\x26\xe5\xfa\x3d\xda\xa4\x94\x5a\x74\x9a\x73\xdd\x0a\xd7\x15\xe2\xf0\xfa\x3f\x2e\x1e\xf7\xe3\x9d\xeb\x39\xb8\x3f\x1a\xbd\x1e\x8d\x5e\x8e\x46\x2f\x93\xd0\xcb\x24\x8c\x62\x2a\x96\x72\x2a\xae\x0f\xa5\x62\x54\x53\xb1\x94\x0c\x88\x67\x40\x3c\x03\x96\x92\x01\xcf\x1b\xf1\x3c\xae\x67\xc6\xe1\x7a\x66\x9c\x11\xa3\x6d\xc4\xd2\x34\x62\xd4\x9d\xeb\x9c\x46\xb4\xc7\x88\xfc\x46\xb4\xc7\x88\x76\x18\xb1\x14\x8c\xe8\x97\x11\xed\x32\x22\xaf\x09\x79\x4c\xc8\x63\x42\x1e\x13\xf2\x98\x90\xc7\x84\x3c\x26\xe7\xba\x0d\xf2\x98\x90\xd7\x84\x7c\x26\xe4\x33\x21\x9f\x09\xf9\x4c\xc8\x87\xe5\x15\x97\xe6\x5c\xef\x41\xfe\x34\xe4\x4f\x43\xfe\x34\xe4\x4f\x43\xbe\x34\xe4\x4b\x43\xfc\x34\xe7\xba\x8d\x82\x13\x8f\xad\x28\x5e\x69\x45\xd1\xa6\x54\x2c\x77\x65\xdd\x2b\xda\x94\x1a\x83\xd2\x79\x3e\x0e\x65\x3c\xca\x04\x94\xa3\x51\x26\xa2\x4c\x42\x99\x8a\x52\x8f\x12\xeb\x5b\xaa\x11\x25\xd6\xbb\x54\xac\x77\x7a\xe4\xd7\x23\xbf\x1e\xf9\xf5\xc8\xaf\x47\x7e\x3d\xf2\xeb\x91\x5f\x8f\xfc\x7a\xe4\xd7\x23\xbf\x1e\xf9\xf5\xc8\xef\xac\xef\x7a\xe4\xd7\x23\xbf\x1e\xf9\x0d\xc8\x6f\x40\x7e\x03\xf2\x1b\x90\xdf\x80\xfc\x06\xe4\x37\x20\xbf\x01\xf9\x0d\xc8\x6f\x40\x7e\x03\xf2\x1b\x90\xdf\x80\xfc\x06\xe4\x37\x20\xbf\x01\xf9\x8d\xc8\x6f\x44\x7e\x23\xf2\x1b\x91\xdf\x88\xfc\x46\xe4\x37\x22\xbf\x11\xf9\x8d\xc8\x6f\x44\x7e\x23\xf2\x1b\x91\xdf\x88\xfc\x46\xe4\x37\x22\xbf\x11\xf9\x4d\xc8\x6f\x42\x7e\x13\xf2\x9b\x90\xdf\x84\xfc\x26\xe4\x37\x21\xbf\x09\xf9\x4d\xc8\x6f\x42\x7e\x13\xf2\x9b\x90\xdf\x84\xfc\x26\xe4\x37\x21\xbf\x09\xf9\xd3\x90\x3f\x0d\xf9\xd3\x90\x2f\x0d\xf9\xd2\x90\x2f\x0d\xf9\xd2\x90\x2f\x2d\x49\x5d\x22\x5f\x6a\x78\xc8\x4b\x7f\xce\xee\x24\x09\x9b\x59\x92\xb3\x7b\xc1\x66\x93\x8a\xcd\x26\x15\x9b\x45\x2a\x36\x3b\x3d\x9e\xd7\xe3\x79\x3d\x36\x63\xbd\x73\x19\x16\x71\x0c\xce\xe6\x84\xe7\xd3\x9c\xdd\x1b\xee\x27\xe1\xbe\x1e\x9b\xb1\x1e\x9b\xb1\x1e\xf3\x27\x22\x5f\xa2\x73\xb9\x1d\x79\x93\x9c\x12\xf9\x93\x30\x7f\x92\x73\x79\x1c\xfd\x49\x74\xda\x81\xcd\xdb\x80\xc7\x0d\xce\x65\x64\xcc\x67\xc0\xee\xc0\xe0\xf4\x03\xbb\x11\xbd\xb3\x1b\x41\xbd\x34\xe7\xf2\x2d\x2e\xd7\xe2\x60\x8a\xcb\xb6\x51\x51\x51\x49\xca\xf3\xf7\xc4\xe1\x80\x5e\x77\xbb\x9f\xa7\xe7\x3f\xd2\x9f\xf4\x87\x8b\x70\x51\x25\x00\xf0\x31\x00\xf6\x42\xcf\xa2\xdb\x1f\xa9\xde\x72\x5c\xe3\x59\x8e\x6b\xf6\x0c\x69\xcf\x5d\x47\x25\xf0\x31\x8e\xef\x50\xeb\xa4\xe3\x9a\xea\x2d\x9e\xe5\xdc\xef\xa6\xf7\xa3\x1b\x9a\xa4\xf7\xa3\xac\x27\xe3\x41\x0c\xc4\x08\xa0\xd3\x08\x90\x97\x6f\x2a\xd0\x68\x32\x5e\x01\xff\x47\x32\x04\xf5\xe4\x69\xf9\x42\x5c\x90\x30\xb2\xa0\xb0\x54\x53\x9f\x97\x2f\xd0\x10\xf3\xab\x9e\xe0\x09\xc5\xc5\xda\xa2\xa0\xe0\x60\x01\x0a\x04\x30\x68\x8d\x9d\x40\xc0\x50\xa8\x8f\x10\x88\x4e\xd0\x14\x96\x46\x08\x54\xa7\x29\xd1\x08\x27\xb2\x05\x1e\x3a\xad\x73\x24\xf1\x36\x98\x8a\x4d\x39\xd3\xf3\x83\xb5\xc1\x41\xf5\xf9\x1a\x21\x3b\x3b\x3f\x58\x48\x29\x08\xd2\x08\x89\x52\x2a\xb1\xa0\x40\xd3\xa1\x28\x99\x4b\x84\x91\xd9\xf9\xc1\xb8\xa7\x11\xa2\xa4\xf3\x51\x92\xe6\x89\xec\x7c\x4d\xa9\xa6\xbe\xde\xac\x11\xbc\xb3\xf3\x0b\x83\x34\x82\x46\x3a\xe7\x2d\xa5\x12\xa4\x54\x42\x61\x50\x61\x41\x41\x41\x90\x40\xc2\x0b\x0a\xb4\x02\x64\xe7\x5b\x0a\x0a\x22\x04\xa6\xd3\x98\x34\x02\x0f\x31\x97\x68\x04\x95\x21\x3b\x5f\x50\x69\xf5\x82\x5a\xab\x0f\x0a\x0e\x2e\x10\x48\x61\x84\xc0\x75\xda\x60\x6d\xb0\xa6\xa4\x43\x55\xa4\xd7\x48\x67\x14\x72\xe9\xaf\xc0\x0b\x4d\xc5\x02\x0b\x0b\xd6\x08\x6a\x83\xa6\x5e\x53\x2f\x90\xf0\x8e\x28\x55\x88\xc0\x43\x1f\xc9\x2f\xcc\x0e\x32\xe7\x14\xe4\x6b\x0b\x82\x35\x42\xca\xe4\x7c\x81\x84\x07\x49\x4e\x21\x73\x84\xa0\xd2\x09\x1e\x86\xf0\x4e\xa0\x4a\x68\xd4\x3a\xc1\x43\xab\xd7\x6a\x04\xd0\xea\xcd\x02\x2d\x2a\x15\x48\xb1\x40\x0a\x05\x55\x58\x84\xe0\xa1\xd3\x48\x46\xfa\x18\x8a\x5f\xe1\x50\xa4\x91\x10\x84\x94\xc2\x02\x49\xa5\xd0\x28\x1b\xe9\xa9\xeb\xf4\xf0\x01\x83\x49\x1f\x16\xec\x0a\xb6\x97\xae\x7b\xf0\xbd\x15\x14\x12\xae\x15\xc0\x20\xf0\x90\x42\x8d\xa9\x5e\x6b\x96\x0a\x42\x8e\x14\x04\x49\xd1\x14\x34\x41\x42\x8a\x2b\x3e\x02\x0b\xd1\x9a\x8d\x0a\x85\xcf\x3d\xb2\x0b\xc3\xb3\xf3\xa5\xcc\x29\x77\xcb\xe4\xab\x93\x1d\xea\xf4\xf1\x66\xa6\xfc\xe0\x20\x6d\x70\x41\x58\x70\x84\xe0\xa7\xeb\xa0\xd4\x24\x94\x98\x8d\x11\x82\xbf\x4e\x20\x85\x1a\x8d\xe0\x6b\x98\x28\x65\xd7\x08\xbe\x5a\x7d\x81\xe0\x27\xed\xe5\xe4\x6b\x04\x3f\xad\xbe\x20\x42\xe8\xa5\xd3\x08\x01\x72\x48\x34\xaf\x70\x28\xae\xd7\x9a\x05\x7f\x43\xa1\xa6\xbe\x50\x23\xf8\x6b\xf5\xda\x08\x21\x40\x97\x91\x9b\xdf\xc1\x4b\x8c\x05\xc3\x05\x3f\x8b\x76\x7e\x84\x10\xa8\xcb\x78\x24\x3f\x63\xb2\x72\x30\x28\xb8\x60\xb8\xd0\x47\x3e\xde\x5b\xd7\x01\xbd\x0c\x79\xf9\x1d\xbd\x7a\x19\x04\x62\xd6\x0b\xbd\xc2\xa5\x4a\x2a\xd0\x10\x7d\x87\xaf\xf4\xc7\x8f\x86\xe8\x05\xd2\x5f\xab\x11\x58\x48\x76\x7e\x87\x14\x3c\x81\x87\xe8\xeb\xeb\x35\x32\x6d\x58\xb0\x56\x20\x66\x67\x3a\x48\x39\x2f\x65\xa1\x21\xf2\x91\x02\xc1\xd7\x90\x2e\xf8\x19\xd2\x0b\x05\xda\xbd\xa8\xee\x51\x80\x1d\x00\x7d\xb4\x46\x81\x18\x04\x18\xd7\x49\x08\x91\xcb\xaa\x8f\x0e\x3a\x80\x9a\x72\xf3\x85\x5e\x5a\xbd\xc6\x24\xf8\x68\xf5\x82\xb7\x56\xe0\x85\x7a\x4d\xa1\x40\xcc\x2f\x05\x04\x10\xf0\x07\xbd\xbe\xbe\xb0\xa3\xb7\x3a\x5c\xa8\x0b\x0f\x1a\x56\x10\x21\xf4\xd5\x75\x40\x9f\xf0\x08\xa1\x9f\xae\x83\x48\xb2\xbf\xae\x83\x4a\x72\x80\xae\x83\x49\x72\xa0\xae\x83\x4b\xf2\x3e\x5d\x87\x4a\x92\x83\x74\x1d\x6a\x49\x06\xe9\x3a\x3c\x24\x39\x58\xd7\xe1\x29\xc9\x21\xba\x0e\x2f\x49\x3e\xa0\xd3\x44\x0a\xe4\xd1\x08\x21\x4c\x4e\x3c\x1e\x21\x84\xcb\x09\x5b\x84\x30\x54\x07\x82\x5f\xf8\xff\x85\x8d\xf7\xeb\x3a\x60\x68\x78\x84\xa0\xd1\x75\x10\x49\x06\xeb\x3a\xa8\x24\x87\xe9\x3a\x98\x24\xb5\xba\x0e\x2e\xc9\xe1\xba\x0e\x95\x24\x43\x74\x1d\x6a\x49\x86\xea\x3a\x3c\x24\x39\x42\xd7\xe1\x29\xc9\x91\xba\x0e\x2f\x49\xea\x74\x9a\x64\xb9\xaa\x45\xe8\x34\x85\x42\x40\xa1\xc6\xa0\x15\x48\xa1\x41\x2e\x0e\x52\x28\xe8\xa4\xfa\x16\xa9\x13\x22\xc2\x85\x88\xb0\x08\x61\x94\x4e\xa3\x49\xd7\xdc\xa3\x24\xb4\xe6\x44\xad\xd4\x8d\xfd\xa1\x46\x50\x70\x41\x84\x10\xe5\x2a\x1e\xd2\x5f\x18\x15\xd6\xa1\x22\xfd\x4c\xf9\x51\x05\xb2\x83\xd1\xee\x91\xb9\xf3\x74\x8c\x4e\x13\x2f\xdb\x1b\xab\x03\x81\x98\xee\x24\x11\x48\xf8\x5d\xc9\xa5\xe3\xd0\xff\xa8\x3c\x06\x18\xc7\x69\x13\x3b\x62\x48\xbf\xb0\x08\x21\x4e\xa7\x49\xd6\xa4\xdf\xc3\x5e\x01\x0c\xe6\xc4\x08\x21\x5e\x17\x39\x20\x39\x42\x48\xf8\x6f\xaa\x02\x31\x14\x27\x46\x08\xa3\x75\x1d\x14\xfa\x87\x68\x22\x35\xe9\x52\xe3\x15\x68\xc8\x84\xfa\xfa\x74\x6d\xba\xd6\xac\xc9\x2f\x0a\x92\xba\x45\xad\xbe\x33\x81\x90\x7e\x7d\xc3\x22\x84\x44\x9d\x00\xfd\x05\x1e\x22\xf0\x10\x59\x45\xf0\x32\x84\x5b\xea\x23\xb5\x1a\x4d\x72\x7d\x62\x84\x90\xd4\x75\x5a\x13\xa9\x60\x08\x5c\xab\x97\xb4\x34\x42\xa1\xd4\xde\x53\x1e\xc9\x7f\x91\x6a\x98\x26\xe8\x45\x1a\xca\x06\x15\xe8\xa5\x3e\xd0\xd3\xa0\xa9\xd7\xca\xda\xda\xb4\x42\x81\x1b\x7a\x36\xa5\x42\xa9\x1f\x52\x3a\x7b\x6a\x28\x2c\xd1\x0a\xcc\x60\x2e\xc9\xce\x17\xa8\xc1\x1c\x24\x30\x43\xa1\xd4\x07\xf5\xcc\x63\xd6\x6a\x34\x02\x0f\xd5\xa6\x99\x13\x83\xb4\x82\xa7\x21\x4d\xa0\x21\x82\xa7\x41\x66\x29\xd4\xdc\x8d\x44\xab\xf4\x76\xdc\x50\x28\xc5\x5e\x15\x62\x16\x54\x77\xa0\x0a\x3c\x54\xf2\x28\x44\x36\x22\xa4\xb0\x24\x5b\xe9\xe5\xba\xb8\x0a\x22\x84\x31\x52\x0c\x34\x1a\x8d\xa0\x0a\xc5\x18\x68\x93\x13\x23\x84\x07\xe5\xc3\x82\xa7\x56\xaf\xd1\x68\xd2\xb4\xe9\x12\x99\x54\x5a\xc9\x72\xc8\x24\x07\x30\xa2\x90\x9b\x1f\xa9\x49\xd6\x06\x07\x49\x16\xe3\x41\x8d\x64\x8b\x33\xe4\xea\x10\x41\x15\x32\xc1\x7d\xf4\x55\x0a\xea\x6e\x35\x18\x4b\x46\x2b\x55\xe3\xb1\x68\x81\xc1\x59\x34\x85\xd2\xf0\xdc\xd3\x45\x67\x51\x8e\xd3\x69\x35\x91\x52\xd4\xd2\x72\xf2\x35\xc9\x05\x91\x1d\x91\xa4\x6f\x78\x84\xf0\x90\xeb\x70\xb6\xfb\xe1\x94\xee\xda\x77\xd5\x49\xd5\x09\x89\xe1\x77\x05\xd5\xeb\x84\xa4\xf0\x7a\x8d\x26\x59\xaa\x2c\xf5\x89\x77\xd1\x11\xb8\x21\x52\x88\x0c\x8f\x10\x0c\xae\x1a\xe6\x8c\xae\x54\xb9\xb4\x9a\x64\x4d\xa4\x36\x11\xe1\x8c\xba\x0e\x4f\x1e\xa2\xff\xbf\xa8\x8a\xe9\xff\x7f\xd5\x3e\xc9\x7c\xa9\x7f\x49\xd6\x26\x06\x05\xbb\x95\x77\x70\x01\xda\x68\x92\x82\xe1\xf4\x3f\x4d\xf2\x3f\x58\x8b\x01\x40\x3f\x5c\x2e\xa7\xeb\x04\xe8\xa7\x34\xce\x4e\x90\xda\x61\x9f\x48\x21\x2e\x2c\x42\x18\x7f\x8f\xe3\x13\x74\x1d\x40\xfa\xf6\x11\xe2\xc3\x22\x84\x89\x3a\x61\x74\x58\x84\x90\x21\x45\xcd\xa4\xd5\x44\x6a\xd2\xea\xb5\x66\x67\x9c\x32\x75\x52\x75\x14\x32\xc2\x23\x84\x87\x75\x9d\x00\xc6\xf0\x08\x21\x4b\xd7\x09\x44\x4a\x4c\xd2\x75\x12\xf9\x48\xb6\xae\x93\xc8\x47\x1e\x91\x74\x4c\xe1\x11\x42\x8e\xa4\x23\x25\x26\x4b\x3a\x52\x22\x57\xd2\x91\x12\x79\x92\x4e\x6a\x78\x84\x30\x45\xd2\x91\x12\x53\x25\x1d\x29\x91\x2f\xe9\x48\x89\x02\x49\xc7\x10\x1e\x21\x4c\x93\x74\xa4\xc4\x74\x49\x47\x4a\xcc\x90\x74\xa4\xc4\xa3\x92\x4e\x5a\x78\x84\x30\x53\xd2\x91\x12\xb3\x24\x1d\x29\x51\x28\xe9\x48\x09\xb3\xa4\xa3\x0f\x8f\x10\x8a\x24\x1d\x29\x51\x2c\xe9\x48\x89\x12\x49\x47\x4a\x58\x74\xc2\x18\x57\x98\x4b\xa5\x1d\x61\x5c\x78\x84\x30\x5b\x4e\x3d\x14\x1e\x21\x94\xc9\xf5\x69\x4c\xb8\x90\x12\x1e\x21\x94\xeb\x84\x07\x5d\xda\x73\xa4\x1d\x59\xfb\x31\x39\x25\x69\x57\xc8\x29\x49\xb5\x52\x27\x24\xbb\x54\xab\xa4\x1d\x59\xd5\x2a\xa7\x24\xd5\x6a\x39\x25\xa9\x3e\xae\x13\xc6\xba\x54\x6d\xd2\x8e\xac\x5a\x23\xa7\x24\xd5\x5a\x39\x25\xa9\xd6\xe9\x5e\xf4\xe2\xd4\x39\x79\xd2\x87\x0b\x9e\x16\x81\x0d\xcf\x9e\xef\x1c\x53\x22\x00\x32\x5e\x81\x53\x39\xf9\x1d\x84\xac\x2e\x10\x88\xd2\x01\x54\x77\x80\x5a\xff\x12\xa4\xc7\xde\xcf\x21\x4c\x4a\xa7\x78\x3f\x4c\xc6\x78\x86\x7a\xf6\xf5\xe0\x9e\x78\x20\x0b\x8c\xea\x28\xf5\x10\x95\x7c\xc0\x5b\xff\x7a\x9f\x25\xfe\x27\xbc\x4e\xa8\x52\x80\x83\x57\x58\x07\xf8\xeb\x5f\x07\x80\x14\xf9\xbf\x7c\x84\x81\xb1\x63\x38\x59\xfe\x48\xbe\x90\xb2\x3c\xbf\x83\x95\x18\x3b\x42\xa5\xbd\xd7\x3c\x97\x00\xe1\x29\xcb\x8b\x73\xf3\x25\x95\x82\x82\x82\x02\x09\x3b\xd9\x73\xa4\x67\x7f\x0f\xee\x1b\xf6\x0a\x71\x2c\x15\xf8\xaa\x0e\x0a\xc6\x0e\x55\x89\x11\xe0\xff\x0b\x00\x00\xff\xff\xed\x3e\xaf\x0a\x40\xc0\x01\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_ttf() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_ttf, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.ttf", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x97\x53\x70\xe0\x8f\xcf\xee\xbf\xb5\x6d\x6b\xcb\xad\x6d\x6c\x6d\x6c\x6d\xdb\xb6\x6d\x6d\x6d\x1b\x5b\xbb\xdd\xda\xb6\x6d\xdb\x67\x7e\x73\xfe\x57\x6f\x26\xcf\x4d\x26\xc9\x64\x72\xf3\x99\xc7\x4d\x5e\x4c\x0c\x00\x01\x00\x00\xf8\xd0\x07\x90\x01\x00\x00\xe9\x15\x04\x40\xfe\x7f\xe5\xff\x86\xb8\x88\xa8\x18\x00\x80\x58\x03\x00\xc0\x05\x00\x80\x20\x1c\x13\x1c\xb3\xf8\x6f\x95\x5f\x00\x00\x52\x06\x00\x20\xdc\x00\x00\x2a\x71\x84\xb2\x8d\x26\xff\x9b\x81\x19\x00\x40\x0f\x00\x00\x50\x02\x00\x40\xbf\x13\xe4\xcc\xcd\xc8\xc6\xc0\x1e\x00\xc0\x38\x01\x00\x62\x1f\x00\xa0\x2d\x7f\x1f\x17\x30\x18\xb9\x3a\x13\x03\x00\x0c\xfe\xff\xfa\xb2\x8c\x41\x30\x15\x4c\xed\xcd\x6c\x00\x00\xc6\x1e\x00\x20\xa2\x01\x00\x2e\x75\x17\x7d\xfd\xc6\xcc\xc0\xc9\x1e\x00\x10\x3f\x00\x00\x80\xfe\x9f\x90\xcd\xac\x3d\x4c\x01\x00\x09\x1c\x00\x66\xe8\x00\x10\x33\x5e\x4b\xbd\x06\x59\x73\x13\x03\x63\x00\xd8\x66\x05\x00\x80\xfd\x3f\x3d\xd3\x21\x93\x98\x9b\x9b\x18\x00\xc0\xf6\x7f\x37\x13\x03\x00\xf0\x03\xe6\x0b\x46\xd5\xdc\xc6\xd9\x1d\x00\xb6\xa3\x01\x00\x02\x06\x00\x90\x49\x89\x26\x3a\x9c\xac\xed\x8c\x0c\x00\xe0\x20\x0d\x00\xa0\x86\x01\x00\xfa\x87\x94\x53\x21\xb4\x8d\x81\xbb\x3d\x00\x5c\xe8\xff\x6f\x96\x18\x62\x01\x01\xc7\xd6\xc0\xc6\x04\x00\x2e\xfc\x01\x00\xc4\x0c\x00\xc0\x08\xc5\xea\x6d\xcc\xed\xed\x9c\x9c\x01\xe0\xf2\x04\x00\x10\x96\x01\x80\x6c\xf6\xf0\x57\xe9\xa9\xbd\xa3\x89\x3d\x00\xbc\xf7\x02\x00\x90\x0d\x00\x40\x0d\x87\x0b\x4f\x8f\x3b\x88\x91\xbe\xb1\xbe\xfe\x8e\x81\x3f\x40\x01\x89\x18\xca\x22\x38\x32\x52\x36\x52\x86\xf8\x83\x0c\x3b\x29\xc0\x18\xc2\x08\x22\xbe\xca\xa4\x0a\x2c\x11\x21\x1a\x41\xd0\x11\x75\x1f\x9d\xd8\x23\x14\xa5\x0c\x15\x18\x22\x83\x76\x04\x00\xc0\x1d\x24\x7b\x1c\x0c\x1e\x5d\x1f\x1f\xe2\xe6\x59\x77\xa9\xaa\x8a\x5a\x76\xd5\xd6\xd2\x76\x82\x8d\x01\xcf\x28\x2d\x93\x79\x8a\xbd\xc1\x66\x9d\xdd\x74\xdf\x73\x7d\x72\xcb\xa7\x47\xde\x2f\x00\xe0\x2e\x44\x0a\x0d\x64\x31\x9d\xcc\x09\x8a\x35\x87\xab\x15\x03\x7b\xe8\x6f\x1a\x4f\xad\x71\x44\x9c\x1c\x69\x3a\x5a\x47\xd9\xe3\xea\x34\xf0\x17\x0a\xc5\x36\x0d\x56\x1c\xc2\x36\x0b\x94\x2c\x49\x33\x0d\xd5\x38\x7a\xc9\xf2\xc0\x54\x37\x8e\x30\x51\x55\x37\x89\x71\x21\xb4\xb1\x38\x2a\x44\x3c\xcd\x9b\x36\xe0\x29\xf0\x0f\x84\xa5\xae\x0a\x2f\x88\xa4\xae\x09\x4e\x94\xa2\xae\x8e\xfe\x3b\x46\x5d\x1b\x18\x49\x53\x5e\x15\x59\x51\x51\x5e\x53\xc8\xbd\xb4\xb7\x60\x47\xd0\x82\xe6\x3a\x27\xb7\x6a\xc1\x63\x75\x7c\xd1\xa9\x53\x17\xe5\x3a\x4a\xbf\x8e\xd1\x61\xb9\x7c\x19\xba\xd9\xa8\xe5\xba\x7e\xb5\xa2\xb3\xd9\xf0\xfe\xd4\x4b\xb8\x46\xe6\x65\x2d\x7f\x51\xce\xd7\x70\xfc\xf4\x4f\x77\xed\xa7\x97\x8d\xdd\x45\x75\x57\xc3\xf3\x53\x5f\xf3\x0a\xe5\xbb\xb5\xde\x45\xa5\x4f\xc3\xf5\x53\xbf\xef\x1a\xc3\x7b\xb5\xc0\xd3\xf2\xd7\xaa\x10\xf4\x26\x23\x32\x1a\x20\x33\xcc\xfb\xd0\xeb\x8a\x17\x90\xcd\x9e\xa8\xf7\x8a\x50\xf8\x22\x1c\xc4\x24\xd6\xcf\x0a\xa3\xc5\xa6\x02\x57\x2f\x1d\xd5\x04\xe9\x51\xbd\x0c\x99\x35\x6f\x6a\x33\x04\x61\xb3\x48\xa8\x6d\x7d\xdf\x36\x69\xd6\xf9\x85\xb4\x99\xd5\xc5\xf8\xdf\xef\x8c\xf4\x4d\xb9\xa6\x1b\xc3\x02\xfe\x04\x04\xb8\x60\x56\x32\x81\x81\x15\xf2\x06\x9b\x76\x8f\xc4\x0f\x0d\xf8\xc3\x13\x32\x32\x7e\x62\xe9\x2b\x84\x43\x32\x63\x08\x7e\x04\x8e\x15\x18\x22\x9f\x7f\xeb\xc5\x16\xf5\xa8\xe1\x60\x73\x26\xa6\x35\x62\x60\x63\x1f\xbf\xb3\x30\x33\xd6\xa9\xd7\xdb\x02\x95\x46\xe0\xc0\x3a\x02\x32\xca\x7f\x3b\x93\x93\xc0\xea\xc8\xb4\xd0\x45\x9f\xb9\xde\x29\xa6\x9b\xdf\x5c\x98\x9b\x6d\xd6\x9f\x5a\x6c\xd6\x9b\xff\x4b\x4a\x9c\xe9\x86\xec\x87\x9e\xed\xa1\x8b\x0a\x8c\x42\xb5\x45\x1d\xe0\x85\x65\x10\x19\xb8\xb9\x06\x7e\xf9\x7a\xdb\x7e\x24\x81\x04\x3b\x80\x7e\xac\x80\xf8\x93\x82\x50\x43\xef\x70\x6e\xf8\x7b\xd9\x33\xe4\x0c\x5b\xb9\x13\x65\x2a\xc6\xa4\x15\x49\x86\x3a\x27\xd8\xce\xe9\x61\x8e\x72\xaf\xea\xc4\x26\xed\x1f\x92\xb6\x29\x12\xc6\xe3\xde\x36\x4a\x84\x9d\xc2\xfa\x88\xe9\x2d\x73\x3c\x6a\x55\x97\xc6\xcb\xe8\xe3\xf2\xdc\xd2\xe6\xf4\x47\xb9\x93\x11\xed\x24\x79\x27\x5d\xdf\x92\xf9\x9a\xb6\xa7\xf9\x9a\x46\xa6\x9b\xb9\x32\xbf\x67\xf6\x4f\x5a\x1c\xf1\xdd\xb7\x45\xa4\x89\xe5\xbe\xcc\xf9\x68\xc4\x72\xee\x67\xfd\xce\xd6\x2c\xdd\xb2\xa0\xcb\xde\xa7\x68\xe3\xaa\xd9\x87\xdc\xac\xb1\xf5\x73\x8b\xe7\x99\x23\xb8\x94\x73\x45\x72\x88\x73\xb3\x73\xb0\x73\xbb\x86\x79\x01\xd5\x08\xd8\x10\x64\x9c\x61\x9b\xe1\xa8\x63\x2f\x13\xf2\x63\xa4\x4b\xc3\xa1\x85\xe7\xee\xd3\xed\x3b\xed\x23\x08\xec\x70\xf5\xa8\x3c\x3d\x4c\x3b\x16\xe5\x43\x7a\x59\x9c\x11\x9d\xc1\xdd\x32\x47\xb8\xee\x87\x73\x27\x20\xd2\x87\xb3\xdc\x91\x6c\x37\x96\x52\x3b\xa5\x07\x33\xae\xbf\x20\xf6\xfa\x30\x77\x0f\xda\xb0\x43\x58\x67\xfd\x36\xeb\x5f\xae\xda\xc5\x5a\x42\xee\xc1\xcd\x31\x44\x98\xde\x1f\xec\x4c\x47\xba\xa3\xee\x1e\x44\xaa\x26\x91\x51\x9b\xdf\x96\x61\xbb\x9f\x9c\x3a\x02\x9c\x82\xb9\xfa\x3b\xed\xba\x19\xcf\x65\x93\xe4\x7d\x70\x10\xb3\xea\xa7\x60\xa6\x10\xe4\xb2\xe7\xf5\x11\x76\x4d\xdb\x3c\x6a\xce\x5d\xeb\x43\xc1\x36\x51\x7a\x70\xb7\xac\x11\xae\xbf\x82\x76\x2b\x72\x11\x58\x7c\xcd\x5a\xc7\xa7\x43\x09\x96\x14\x64\xfe\xde\x7a\xc5\xf8\xb7\xe8\x52\x78\x30\x8c\x30\x5e\x7b\x08\x7a\x6a\xb6\xab\x83\xa6\x28\x49\x47\x90\x8f\x27\x9e\x1f\xba\x47\xb3\x0d\x36\x8f\x3a\x02\xe1\x97\xf8\x99\xe1\x4e\x85\xb9\xa2\x76\x31\xdd\x98\x3e\x33\x5b\x5b\xa8\x5d\xfc\x9e\x2a\x0f\xce\xbd\xeb\x9b\xeb\x08\x40\x81\x83\x3f\x47\x75\x61\x57\x21\xc4\x89\xfb\x84\x63\xee\xa1\xe9\xf8\xa3\xe0\xc5\xaf\x71\x8f\xa7\x5b\x56\xfd\xf9\x0b\xd9\x51\xbc\xdc\x4d\xf5\x6e\x87\xbe\x21\x1b\x3c\xf2\xbf\xf8\xe1\x13\x51\x13\x31\x13\xb1\x32\x6b\xf1\x18\x38\x4d\x24\xd4\xcc\x8c\xff\xec\x7f\x22\x7f\xad\x38\xba\xbb\xd7\xde\x10\xee\xb2\xe5\xc3\xf5\xc3\xf5\xeb\x08\x53\xfa\xb9\x99\x9d\xdc\xcc\x18\xe4\x7f\x0a\xbf\x07\xbb\x42\xcb\x22\x3e\xc2\x3c\x7e\xbc\x35\x0d\x3c\x3f\x18\xb6\xe1\x07\xea\x3d\x41\xf8\xae\x43\x01\xdd\xa0\x03\xea\x59\xdb\xf5\x60\xbe\x1c\xab\x92\x4f\x7d\x02\x32\xaa\x5f\x1f\x11\xfb\x40\x1b\xbc\x80\x5c\x55\x3a\x2b\xc8\x99\xfa\x90\x96\xa9\x16\x7f\x83\x75\x73\xe3\xae\xfc\x3c\xcd\xc7\xe4\x43\x07\xd1\x6a\xce\x6c\x91\x74\x7a\xb2\x74\x88\xb2\xd4\x1f\xe5\x7d\xf7\x55\x5a\x9b\x39\x7a\x02\xd4\x3f\x69\xee\x9c\x20\x94\x34\xca\xca\x7f\x2c\xed\x51\xe5\x54\x73\xdf\xd8\xe4\xf6\xd9\x84\xd0\x1c\x60\xe5\x16\xf1\x27\x17\x79\xbd\x54\xe1\x1a\x91\x4b\x77\x9d\xd7\x4d\xea\x53\xca\x0a\x8b\x39\x85\xd9\x1d\xc0\xa6\x92\xe9\x38\xe1\xcc\xf6\xf1\xb3\x2b\xef\x9d\xbb\xe9\x7b\xdb\xda\x15\xb0\x4e\x0d\x75\x0a\xa4\x5d\xd2\xe9\x97\x31\x38\x91\x8e\xcf\xa5\x74\x8a\x2b\x5d\x62\x6a\x16\x5d\xda\xc1\xe8\x7b\x43\xda\x0b\xaf\x8a\x78\xce\xe9\xdb\x2b\xaf\x42\xa3\xec\xeb\x09\x2b\xc2\x4e\x13\x3c\x1b\x09\x0b\x87\xc7\x54\x57\x29\xd8\x32\x8a\x52\xcf\x4c\x3c\xdb\x74\xf3\xa1\xce\x49\x3c\x5b\x09\x03\x3a\x1c\xe2\x54\xf7\x75\xab\x67\x35\xab\xfb\x7d\x5a\xf5\xb4\x9a\x64\xd7\x6f\xfd\x5d\xcd\xd1\x91\x2c\x65\xf8\x78\x45\x76\x0c\x60\x09\xf3\x13\xdd\x93\x21\xe3\x76\x1d\xde\x4e\xcc\xf0\xf7\x6d\x0c\x22\x64\x0c\x99\x75\x8d\x69\xe6\x6f\x50\x7f\xdf\x30\xeb\xf6\x55\xba\x23\xd4\xee\x23\x74\x8e\x3a\x77\x86\xb4\x70\xc5\xb5\xb9\xe7\x7a\xbc\xf8\xbf\xd2\xea\x93\x44\xdd\x90\xf0\xff\x1b\xa6\xdd\xf5\xe6\x7e\x09\x2e\x7e\x49\xa6\x07\x7b\x89\x16\xf2\x8e\x65\xb8\x29\xae\x6e\xc6\xd6\xab\x67\xe9\xa8\xfb\xd9\x51\xcf\xe3\x55\x47\xd9\x6d\xca\xf0\x64\x4a\x64\x3d\x84\x69\x3d\xc8\xfe\x24\x8a\x33\xa6\xd8\xe7\x5b\x26\x82\x51\xa1\xd8\xff\x55\x76\x08\x20\x8a\x10\x40\xe5\xe7\x04\xb5\xf9\x0b\x23\xef\x2b\xb8\xe3\x0f\xed\xe2\xf7\x25\x80\xa2\x28\xc6\xee\xfd\x8a\xc5\x8c\x44\x21\x5a\x6f\x0d\x8f\x22\x97\xfe\x4b\x2e\xee\xd8\x16\x2c\x5d\x5c\xe9\x5c\x68\xd6\xab\xda\x2c\xe1\x76\x4a\xc2\x57\x8c\xb5\xbe\x4a\xd2\x55\x8c\x74\xbe\xda\x6b\xa2\x3d\x25\xbb\x41\xeb\x53\x4c\x54\x18\x2d\xe9\x87\xd3\x4b\xb7\x41\x03\x66\x12\x0f\x9f\x42\xc2\xac\x1c\xea\x00\xa1\xe6\x88\x37\xde\x1a\x59\x29\x9b\x15\x61\xc6\xf5\xd3\xb8\x35\x5a\x9f\xbc\xd2\xb8\x28\x3a\x71\xd6\x3a\x85\x89\x39\x25\xc6\x7a\x0f\xb7\xe6\x90\x1b\x87\x72\x3f\x66\xfa\xc5\x24\x50\x86\xd5\x30\x79\xb1\x8a\x89\x55\x8c\xc2\x81\xe1\x6a\xb4\xab\x0d\xe9\xf9\xd0\x77\x43\x8f\x62\x1c\x7d\xe9\x6f\x6c\xe9\x8d\x72\x3a\xcd\xbc\x3b\xae\x3c\x07\x0c\x85\x62\xc9\x3d\x7c\xd2\x00\x8b\x47\xca\x05\x69\x47\x06\x7a\x12\xad\xb8\x63\x21\x3e\x42\x0f\x05\xa8\x3f\x10\x28\x20\x97\xd7\x53\xe4\xef\x97\xfb\xe1\xf8\x66\xb0\x13\x44\xe4\x10\x2e\x0e\x8a\x9a\x10\x6c\x5c\x44\x8c\x61\x21\x21\x0e\xc9\x9c\x10\x62\x7d\x40\x8c\xe5\x31\x22\x0e\x02\xab\x18\x6c\x98\xdc\x2b\x44\xad\x0d\x8e\x2c\x42\xe9\x2c\x86\xe5\x2c\xca\xe1\x2c\x8e\xf4\x20\xc2\xf0\x20\x46\xf4\x20\x2a\xf0\x30\x0c\xc0\x0f\x10\xc3\x0f\x21\xc3\x0f\x32\xc2\x0f\x43\x47\x0f\x50\x45\x0f\x61\x47\x0f\x72\x46\x0f\x83\xcb\x0c\xfc\x90\x19\x42\x97\x19\x64\x95\x19\x86\x9f\x18\xa0\x9d\x18\xc2\x9f\x18\xe4\x9d\x18\x06\xa5\x1d\x20\xa5\x1d\x42\xa5\x1d\x64\xa6\x1d\x86\xad\x1a\xa0\xa9\x1a\xc2\xad\x1a\xe4\xbe\x00\xc2\xe9\x54\x2d\x8b\x75\xd7\x06\x7e\xaf\xd1\xfb\x34\x4f\x80\xaf\x9b\x16\x50\x58\x55\x94\x98\x67\x94\x58\x95\x98\x9a\xa7\x98\x5a\xc5\x56\xb3\x2e\xbb\x6a\x9a\x4b\xd3\x35\xff\x59\x13\xeb\xb9\xce\xa3\x85\xc5\x83\x05\xa8\x52\x3e\x70\xd2\x1b\x99\x58\x58\x58\xf6\x6d\x78\x41\xf8\x54\x05\x17\x93\xd3\xdb\x9a\x6e\x74\x51\xb1\xd4\x8d\x83\x15\x29\x74\x0c\xb3\x7f\x1f\xa5\x3f\xc5\xab\x94\x74\x1e\xc7\x1b\xd9\xa9\xdf\xf5\x89\x0f\x69\xdc\x6f\x48\x33\x84\xbb\x8f\xc3\xaf\x07\x73\xed\x27\x82\x85\xa6\xdf\x67\xb8\x5d\x43\x33\x8d\xc7\xfe\x84\xc7\x66\xb1\xa8\x34\xb3\xbe\xe6\x30\xcb\x76\x9a\xa3\xa6\xf7\x86\x85\x0c\x82\xe2\xd8\x70\x99\x74\x01\xb0\x56\xed\xd7\x3c\xd4\x64\xd5\x19\x6d\x67\xb3\x4c\x7e\xaa\xd2\x3d\xc2\x82\x2f\xbd\x5f\x06\xe0\xf1\xbf\x18\x05\x30\x74\xbf\x1a\x24\xf9\xf9\xbe\x5e\x00\xcc\xc9\x0b\xae\xff\x71\x83\x18\x94\x31\x92\x29\x92\x89\x57\xdf\xbd\xb7\x3d\x20\x20\x60\x30\x32\x60\x57\x0f\x54\x7c\x6e\xbb\xb2\x4a\xfc\xbb\xc7\xe0\xf6\xfd\xfb\x28\x97\x23\x3c\xac\x2a\xd4\x05\x2c\x6a\xf1\x7b\x59\x41\x45\xfc\xab\xc7\x80\x6f\x6c\x0f\x6a\xcf\xa8\xec\x1d\x9a\x1d\x21\xff\x8a\x4c\x82\x60\x80\x17\x92\x0c\x92\x0c\x30\x60\x67\xce\xff\x8f\x1b\x55\x2a\x87\x19\xfb\x23\x88\x74\x61\x19\x06\xd8\xde\x42\x39\x19\x0f\x97\x99\xc9\x7c\x13\xd6\xc3\xa3\x37\xac\xbe\xb9\x56\xb3\xb6\x6f\x5d\x9d\xef\xf0\xbe\xb8\x5c\xe3\xdf\x4f\xb3\x4f\x23\x92\x4e\xcf\x8e\xc2\xca\xc5\x4a\x92\xe2\xe2\x4a\x21\x7f\x48\x54\x2b\x25\xad\x23\x74\x3f\x8b\x4a\xb0\xf4\x1c\x8c\x5e\xbb\x82\xed\xda\x79\xed\xe6\xe9\xc6\xd4\xd0\x6a\x58\x1b\x72\xc5\x17\xcb\x34\xf5\x96\xad\x6a\x8e\xeb\xff\x56\x91\x6e\x9e\xfe\x14\x17\xb5\x38\x69\x30\x4a\x9b\xa3\xcb\xfd\x19\xca\x1e\xee\xa7\xb1\xb3\xb6\xe1\xf5\xe9\x61\xc6\x1b\xb9\xbc\x5f\xfc\x8c\x26\xef\x65\x9b\x83\xcc\x40\xfb\x83\x50\xa0\x89\xfe\x56\x47\x63\xb3\x29\x25\x32\x40\xb1\xb9\xef\x5e\x01\xc1\x6d\x40\xed\xf0\x83\x86\x76\x97\x96\xc4\x7f\x84\x65\xef\x36\xe4\x47\x48\xe8\x81\xb5\xb6\x6a\x8b\x89\x0b\x8f\xcb\x6f\xab\xea\x71\xb9\x75\xcd\x49\x4b\x92\xd5\xc6\xa5\xe3\x0a\x92\x97\x72\x36\x16\xa0\x42\x1c\x0e\x66\xd9\x65\x04\x81\x00\xb4\xdb\x84\xf2\xb1\xcd\x94\xd5\x7e\x56\x4c\x51\x0f\x4e\x52\x0e\xb2\xef\x30\xc9\xca\xa2\x73\x6a\x31\x05\xca\x47\x84\xeb\xf0\x46\x47\xbb\x9a\x23\x61\xc9\x30\x91\xbe\x75\x35\x51\xb6\x71\xf0\x74\xfe\x10\x5c\x9c\x3e\x71\x2d\xf6\xc2\x69\xf3\x46\x62\xe1\xaa\x72\xcc\x3f\x03\xb2\x99\x7b\x61\x40\x2a\x0c\x47\x6d\xa9\x79\x45\x43\xdc\xbb\xa6\xc5\x9b\x90\xe9\x07\x31\x65\xc1\x63\xae\xa5\x65\xcc\x00\x98\x80\x6c\x75\x5a\x51\x36\xea\x41\xd9\x69\x9c\x4c\x19\x15\xa2\xd6\x16\xe2\xaa\x91\xa9\xc0\xeb\x7e\x31\xd6\xce\xcc\x0c\xd9\x7e\xf2\x9e\xb6\x59\x23\x93\xb1\x54\xdb\x3f\x8a\x24\xb8\xf8\x75\xaa\xb6\xb5\x05\x0d\x33\x64\xc3\xbd\xb4\x73\x6f\x9c\x16\x74\x5b\x02\x17\x8b\xb9\x64\x98\x47\xca\xa1\x4a\x87\xbd\xb6\xb5\x06\xba\xe9\x63\xea\xdf\xca\x34\x4c\x76\xc6\x04\xb9\xa5\x08\xf0\x11\xee\xcc\x9e\xd4\xcb\xf5\x33\xf9\x87\xd4\xab\x74\x06\x1c\x21\xd9\xd3\x2c\xf6\x2c\x5a\x4a\xbf\xf4\xf5\x09\x1c\x3c\xb8\xa5\xa8\xe5\x23\x4a\x85\x32\xa6\x1b\x8e\x16\xa5\x94\x16\xd8\xb9\x9f\x98\xe5\x6d\xce\xec\xbc\xf9\x0d\x74\xe9\x28\x6a\x53\xa0\xa4\x96\x83\xbe\x94\xcb\x05\x2c\x60\xd9\xd0\xaa\x29\x06\x27\x64\x06\xe4\x30\xef\x64\xb4\x32\xd0\xab\xf1\x30\x93\xee\x98\x42\x90\x5c\xa7\x2c\x7f\x11\xc2\x49\x92\x1c\x90\xac\x33\x4e\x97\xc3\xaf\xdf\xb1\xd6\xd8\xd4\x6e\xf6\x71\xd5\xec\xf4\x2c\xa8\x1b\xcf\x81\x7d\x11\x36\xbe\x4b\xbb\xc8\x80\xc0\x15\xcb\x59\xd4\x61\xd4\x7b\x6e\xb8\xe1\x97\x56\x2d\x52\x17\xc2\xaa\x44\xa8\xa1\xe6\xcc\x92\x0c\xf2\xe6\x0b\x13\x2e\x9f\xb4\xc4\x2b\x05\x7f\xfb\xba\x2e\x29\xce\xd3\xc0\xdf\x37\x72\xae\x9a\xdf\xa7\xda\x3c\xa3\x9a\x73\xc7\x6c\xc8\x35\xf9\xf0\x1b\xc1\x8a\x1f\x68\xdc\xd0\xde\x65\x51\x57\x90\x4e\x67\x16\x50\xdc\x05\x52\x9f\x91\x32\x64\x14\x90\xcc\xb1\x0d\x86\x8f\xf8\xa5\x1b\x2a\x1f\xf4\xc8\x32\x51\xdc\x7d\x87\x82\xba\xf2\x3f\xb4\xa9\xd0\xf3\x3f\xb6\xe9\xd0\xf3\xdf\xbf\x0a\x88\xdd\x2a\xbf\x33\xe8\x7f\x30\x30\x7e\x41\x75\xc3\x60\x8b\x7a\xf6\x52\xdd\xa1\x32\x46\x2e\xf4\x52\xdd\x31\x33\x46\x5a\x83\x16\x8e\x70\xe9\xa3\xbf\x0a\xe8\xa3\x73\x21\x45\x93\xc6\xe4\x87\x99\x54\xbe\x42\x1a\x98\xfd\x8e\x64\x6d\x4e\x48\x06\x4b\x8c\x79\xd0\xd2\x5f\xb1\x6b\x88\x93\x6c\x37\x0c\xf7\x74\x96\x21\x77\x76\x55\x1b\x67\x79\xca\xc4\x34\x27\xcf\xad\xbd\x4a\x1e\xe6\x1a\x57\xd3\x14\xdd\xe4\x42\xa3\x54\xb3\x49\xdf\x69\x4a\x4c\x37\x8a\xab\xc5\x6b\x57\xd9\xeb\x02\xe1\xa1\xe4\xc7\x07\x47\x0b\xdd\x11\x3f\x5f\x5c\xbd\x4e\xfe\x70\x26\x3c\xef\x18\x74\x39\x86\x67\x6e\x8f\xf8\x28\x77\x83\xd7\x55\x55\x74\x5d\x3e\xd6\xa2\xe0\x7c\x9e\x39\x5e\xef\x31\x1b\x93\x6b\x44\xbc\xe7\xa1\x8a\xe0\x5e\x2f\xf2\xf7\xac\x6a\x74\x7e\x8a\xe2\xbd\x3e\xcd\x99\xa2\xd2\x10\xfe\xba\xd0\x2f\xb0\xe3\x99\x4a\x9f\x0f\xf7\x5b\x06\x30\x20\xc1\xfd\x8a\x61\xe2\x44\x2f\x27\x79\x67\x44\x90\x9c\x5e\xda\x5b\xbc\x64\xfa\x7a\xa1\x96\x9d\xa9\x54\x07\xca\x27\xde\xe7\x07\x0f\xd6\x61\x55\x46\x3f\x9b\x99\xd5\xba\xcc\x85\x3d\xc0\xc4\xc9\xc6\x5c\x2c\xaa\x3b\xd2\xf8\x95\xef\x01\x4d\x50\xbc\xa0\xe1\x6e\xd4\x62\xbc\x8c\x4a\xc5\xe6\xfa\x78\xfd\xa4\x36\xf5\xd2\x3b\x48\x82\xce\x24\x8b\x5f\x27\x5c\x9b\xa2\x08\x6c\xa4\xce\x09\x58\x22\x38\xe4\xc5\x85\x81\xe6\x11\x05\x0e\x89\xbf\x1c\x09\x10\x54\x04\x0e\x30\x08\xc9\x0b\x4d\x61\x40\x73\xe1\x82\xd4\x6c\x39\x30\xa5\x7c\xf5\x38\x89\xcd\xcf\x9c\x84\x11\x1f\x84\x15\xee\x05\x17\x46\x54\xc2\x38\xcf\xcf\x72\xc0\x93\x2c\xf9\xd0\x7d\xd2\x7b\xe3\x15\x9b\x12\xc1\x1f\x14\xbc\xe8\x59\xd7\xa5\x38\xd7\x8b\x3b\x67\x07\xae\x06\xb7\xec\xb6\x85\xf2\x63\xcf\x76\x0c\x4c\x1a\x1b\x6f\x0b\x49\x02\xcd\x3b\x58\xcb\xbd\xf9\x88\x64\x1c\x3a\x92\xe3\x62\x4a\x04\xd5\xcf\xf7\x0c\x7c\xcd\x83\x48\xed\xe5\x8c\x80\xdc\x8b\x32\xac\xa7\x8a\xdc\xab\x16\xfe\xb9\xa3\xf4\xdd\x8e\x4b\xb2\xec\xd0\xd0\xeb\x26\x27\xf0\x14\x53\x90\xb5\x7e\x76\x2a\xe9\x5e\x10\x99\xc2\x6c\x44\xb0\x0e\x1e\xba\xb2\xd9\xb3\x80\x6e\x1e\xe7\xe5\xbe\xc2\x00\x8e\x0f\x86\x46\xc3\xeb\xdc\x33\xfe\x80\xdc\x4d\x08\xda\x18\x4a\x63\xf9\x2e\x3e\x9e\x01\x6c\x38\x9c\xf5\x57\x37\x72\x3f\x79\x24\x98\x19\xb7\xe7\xd2\x0d\xe1\x31\x33\xc8\xfe\x55\x35\xe6\xb0\x52\xd0\xee\x08\x0d\x6f\xdf\xe8\xaf\x10\xea\x64\xa7\x37\xf4\xed\x7f\x6f\xc5\xbb\x3c\xc8\xb5\xc1\x4d\xd8\x9d\x4a\x1c\x50\x91\x7a\x5e\x55\x50\x07\xd0\xa0\xc4\xfe\x05\x4c\x57\x09\x86\xdc\x58\xe1\x97\x4d\x93\x1a\xeb\xc3\xb8\xda\xf6\xef\x71\x91\xb5\x95\x5f\x69\x5f\xa6\xdf\x21\xeb\xb3\x1f\xbf\xc5\x06\x96\x9e\xa3\x49\x2b\x38\xc1\x99\xea\x91\x90\x04\xb5\x1d\xa0\x51\x59\x89\x22\x7f\x20\x48\xcc\xfa\xb3\x22\x8c\xcc\x74\x52\xfd\x65\x25\x16\x07\xbb\x63\xcd\x13\xbc\x2f\xa1\x9a\xf3\x47\x45\xa0\x9a\xf7\x87\x9d\x2c\x2d\x90\x02\xb3\x64\xcd\x93\x03\xc3\x65\xad\x8d\xa4\x40\x30\x9f\xf5\x67\x47\x60\x1c\xe8\x44\x90\x77\x0a\xeb\xf3\x56\x76\xd1\xe1\x2b\xf7\xcc\xc2\x09\x35\x23\x78\x33\xdc\x0a\x79\xf4\xef\xab\x0e\x1b\xa9\x16\x1f\x91\x1d\x36\xdc\x0a\x3b\x0d\xee\x93\x2d\x1d\x91\x35\x1b\x91\x3d\x36\xe4\x0f\x3e\x0d\xec\x93\x4d\x1d\x91\x55\x1b\x91\x5d\xde\xd3\xce\xc1\x87\x10\x90\xaf\x5d\x3e\x0a\x31\x20\xd4\x1b\x74\xeb\xe3\x38\x34\x45\xf2\xf0\x97\xb5\xfe\xcf\xe7\x7e\x7f\x03\x48\xee\x20\xd1\x1a\x50\x82\x5a\xc3\x7f\xb3\x57\x37\xbd\x20\xe8\xb1\x49\x82\x4f\xec\x15\xc1\xc0\xb1\x91\x13\xa9\x40\xa3\x10\x7f\xe9\x6f\xd0\xd9\xe7\xaf\xb4\x1a\x6d\x74\xf3\x44\xec\x6f\xdd\x11\xbc\xf3\xf1\x74\xb9\x71\xe0\xf3\x74\x3d\x77\x7e\xe9\x66\xec\x3f\x6c\x79\xc5\x09\x68\x7f\x5d\x41\xa0\x50\xf6\xac\x95\x6d\x75\x35\x34\x98\x99\x4d\x65\x69\x80\xf4\x71\xbe\xb1\x75\x89\x40\xea\x23\x23\x52\xe8\xb1\x0a\x01\xf0\x4a\x22\xb4\x41\xfe\xfc\x52\xb5\x66\x06\xf5\x88\x45\xa6\x5d\xbf\x51\xe5\x5f\x14\xe7\xca\x7b\xf6\x55\x22\x4a\xbf\x28\x3e\x85\xb2\x45\x49\x53\x23\x29\x01\xe2\x78\x90\xde\x66\x69\x9f\x78\x80\xba\xae\x3d\x7f\x7a\x81\x77\xde\x2c\x0e\x5b\xf6\x04\xfb\x17\x40\xdd\x18\x96\x4f\xeb\x85\x37\x14\x43\x1a\x2d\xd9\x67\x4f\x90\x50\x04\x83\x60\x84\x52\x8f\x0e\x06\xc3\x5f\xf9\xf2\x4b\xbb\x10\xf5\xfc\x85\xc1\x2d\x64\x08\xc2\xe7\x96\x7a\x54\x32\x02\xe6\xd6\xa1\xbe\x04\xdb\xa8\x31\xc0\x8b\xe3\x81\x81\x99\x99\x76\x34\xc0\xd4\x92\x3d\x4d\x27\xf2\xc9\x5e\xa9\xd4\x1d\x7b\x72\x2d\x48\x00\x6f\xc2\xf8\x39\xf7\x4c\x7e\xb9\x27\xae\x68\x87\x05\xde\xae\x75\xfc\x9b\xf2\x3b\x3d\xd4\x49\x00\xa3\x93\x4d\xc1\xaf\x7d\x5f\x7e\x4a\x60\xf7\x8f\x25\x96\xae\x07\x54\x09\xc1\xe0\xf9\x22\xfb\x2d\x67\x45\xb7\x47\xd8\x9a\x28\x0d\x13\x02\xb0\x5b\x20\x04\xa5\x45\xa7\x87\x88\x96\xb7\xa6\x86\xc2\x16\x8b\x3c\x42\x24\x5f\x26\xf2\xe1\x1f\x8c\x62\xcc\xd7\xfb\xe3\x5f\x91\x2d\x08\x24\xe8\x29\x78\x84\x92\x05\xa4\x04\x2a\x02\xe8\x1f\x73\xa3\xf4\x96\x99\xa4\xd4\x4c\x6c\x22\xab\x39\xf1\x31\x83\x59\x44\xda\x11\x92\x27\xfc\x33\x1a\x2a\x32\xc2\xd4\xf9\x34\x99\x18\xa9\x80\xc9\x2c\x4c\xa1\xe8\xd9\xd1\x81\x01\x01\x31\x71\xe4\xec\xd9\x8b\x3d\x61\xf4\xaf\x18\x96\x6d\xd9\xe3\x21\x8f\x40\xb4\xa3\xed\xf6\x21\xb5\xce\x97\x9b\xaa\x73\x2d\xc4\x89\xe7\xb2\x5c\xd7\x69\x07\xf6\x83\x0c\x99\x9c\x94\xb1\x57\x8e\xda\x74\x85\xce\x87\x3b\xae\x65\xd9\x0e\xdf\x42\x22\xd9\xf4\x3f\xf3\x0d\xa9\xce\x46\x76\xa6\x6d\x3c\x3c\x43\x73\x9d\xee\x7e\xef\x8d\x9f\x70\x3e\xbb\x66\xd3\x31\xb7\xb5\x5d\x06\x5b\x6f\x93\x30\x1e\x18\xae\x5e\x16\x7d\x2f\xea\xeb\x45\xe4\xef\xeb\xa6\x57\xd7\x34\x08\x7e\x67\xe5\x75\x89\x39\x85\xe7\x67\x6b\x51\x86\xc7\x20\xfe\xe0\x47\x7d\xd3\xab\x04\x73\xf3\xfa\xe0\x50\xc9\xfd\xf0\xe6\x21\xcc\x7a\x92\x56\x70\x24\xac\xe1\x7f\x63\x19\xb2\x01\xe6\xc0\xec\x5e\x41\x4a\x16\x1d\x4a\x85\xb1\x61\x40\x99\xcd\x9f\x56\xba\x9a\x58\x72\x51\x89\xd8\xe8\x24\x97\x9c\x96\x76\xd6\x60\xa7\xd2\xe5\x88\x12\xad\x50\x3d\x9b\x8b\x2e\xac\x35\x6b\x6d\x6d\x2c\x7c\x7c\xf0\x76\x26\x25\xee\x3b\x8e\x29\x91\x40\xd6\xd4\xe9\x32\x71\xed\x8d\x9c\xcd\xd4\x69\x72\xaf\xbd\x9d\xbc\x29\x25\x4c\x2c\xdd\x1a\x06\x66\x29\x4d\xb1\x50\x66\x69\x00\x3c\xca\x02\x9d\xb0\x0e\x1e\x49\xb2\xf2\x50\x38\xe5\x8e\xc4\x68\xaf\xca\x81\xba\xd9\x3c\x1d\x49\x52\xa2\x6e\x30\x5a\x49\xed\x9a\xd4\xa3\x63\xa5\x7e\xaf\x46\xd0\xd5\x35\xaf\xb2\xb5\xde\xdc\xd7\x48\x55\x75\xff\x83\x34\x49\x98\x09\x1b\x3d\xac\x9c\xe9\xa1\xe4\x3b\xa5\x80\xde\xa1\xbc\xb2\xac\xbc\xec\x67\xfc\x1f\x8c\x13\x5c\xc2\x24\x9c\x75\xe3\xb1\x85\xad\xb4\xa7\x14\x16\x55\x44\x74\x5c\x48\x01\x23\x06\xc7\x0d\xe6\x7c\x68\xd0\xba\x35\x33\xaa\x98\x3f\x54\x52\xfb\x4e\x4a\xfb\xd8\xc2\x2c\xa8\x62\x9f\xc2\xd4\x89\x43\x4c\xb0\x42\xa1\x12\x9a\xd4\xa8\x4a\x6b\xc4\x64\x46\xfd\xd7\x30\xd3\xb1\x0b\xdb\x88\xb0\xbf\xcc\xe1\x6d\x20\xa4\xce\xa9\xe4\xa3\x1d\x34\x62\xdf\x34\xc5\x15\x55\x13\xb8\xb8\xb9\xa4\xb1\x30\x2b\x49\x2e\xeb\x57\xb5\x49\x18\x45\x59\x4f\xe1\x6d\x39\xa0\x7e\x2f\xa5\xa3\x77\xd0\xc2\x99\x17\x7b\xb7\x40\xb9\xa0\x28\x0f\xe0\xc7\xc4\x32\x79\x8c\x49\x08\x41\x1f\x40\x5a\x2d\x6e\x24\x26\x3a\xca\x2f\x07\xe8\xf7\x0f\xe1\xb4\x95\x87\x20\xc4\x1e\xe5\x2a\x4d\xea\x2d\x71\xf0\x15\xf1\x2b\x12\xb6\x5a\xf4\x7d\xe0\xa9\xb9\xdf\xd6\x07\x7a\x70\x9d\x31\x18\x8c\xb2\x17\xd2\xb3\x5b\x05\x8e\x66\x70\xf3\x90\xbb\x58\x8b\x74\x2e\x1a\xd3\x4b\xcc\xef\x57\x44\x5e\xb5\xfd\x66\x09\x5c\x96\xcd\xec\xae\xed\x3f\xcc\xe9\xca\x1f\x5b\x65\xae\xa7\x28\xd6\xf6\xf9\x6b\xae\x36\x7f\xc5\x70\xe4\xcd\x37\x78\x4a\xa3\xeb\xae\x2f\x65\xc8\x2b\x97\x9a\x04\x0b\x37\x84\x37\x5f\x79\x87\x7a\x4a\xbe\x5a\x3d\x75\x66\x1e\xc6\x47\xce\xcb\x3e\x8c\x8a\x96\x79\x0a\x22\xf8\x81\xe6\x13\xa6\x5d\x7a\x9b\xdc\x47\x89\x0d\x15\xc4\x38\xa0\xe8\x89\x8a\xc9\x32\xa0\x70\xd0\x3e\x00\xa5\x9b\xa2\x5a\x31\x2e\x09\x1b\x8e\x82\xad\xcc\xe7\x1c\xc5\x0b\x81\x2a\xc8\x4f\x50\xdd\xaf\x0d\x15\x47\x77\xc4\x24\x8a\x8c\xa2\xad\xc8\xc4\x44\xa1\x13\x7b\xf0\x2f\xaf\x7f\x7b\xb5\x6b\x68\x9f\xfe\x02\x06\x13\x13\xd2\x0b\x76\x33\x87\x6d\x33\xdb\x17\xca\x62\xeb\x7b\x1c\x8e\xd2\x75\x22\xb6\x63\xc3\x61\x55\xe3\x71\xf3\x7d\xef\x5a\x6d\x9b\xcf\x6b\xc6\x81\xd3\x76\xea\x09\x8d\xe1\xc3\xbb\xbc\xee\xfa\xf0\x49\xed\x63\xc8\xd7\x19\x7c\x7e\x75\x5c\x02\x1d\x49\xc5\xb0\x61\x95\x6f\x34\x31\xa1\x66\x04\x76\x42\xaf\xad\x66\xe4\xf0\xd4\x82\x9a\xd6\x56\xe3\xca\x15\xa3\x5a\x8b\x4b\x20\x5e\x34\xd2\xed\xfb\x66\x6f\x74\xd3\xc6\x21\x8c\x05\xa9\x3b\xba\xfc\x79\x78\x3b\xac\xbc\x16\x7f\xe2\xc3\x48\x7b\xfd\x2a\x89\xe1\xab\x0e\x0f\xd8\x95\x3a\x31\x52\xab\x9b\x47\x06\xb9\xe5\xff\x3d\xb0\xc2\x54\x28\x1e\x12\x76\x6a\x2c\x65\x0f\xbf\x00\xda\x5b\x60\x0e\xcf\xc2\x3d\x73\x96\x50\x96\xa4\x29\x8b\x7a\x46\xd5\x94\xc4\xea\xa2\x03\x51\xd3\xd4\x69\x3a\xbc\x88\x71\x26\x85\xef\xb4\x0c\xc7\x90\x45\x91\xb9\xfe\xe5\xfa\x33\x47\xf9\x93\xe3\xb3\x52\xc5\xc7\x1d\xae\x46\x35\xce\x1a\x3c\x58\x8e\x73\xe4\x6c\x95\x8f\x11\xd7\x9a\x9f\x45\x42\xb0\xc8\x02\x3e\x80\x14\xb5\xd7\x35\xfe\x07\x8a\x25\xaa\x05\xfe\x9e\x3a\x17\xed\x56\x40\xa4\xe2\xec\xfd\x37\xfd\x17\x71\xad\x41\x8b\xa7\xc2\xa7\x64\x17\x7c\xaa\x11\xe7\xa4\xd2\xa2\x87\x7b\x53\xa4\x17\xe0\x90\xdf\x9e\xc6\x0b\xb7\xdd\xa7\x1e\xfe\x10\xf3\x87\x9c\xf9\xc0\xa6\xe0\x66\x69\x0c\x2c\x81\x4c\x44\x87\x3e\x84\x37\x69\xcf\xd6\x1e\x9f\x99\xaa\x1e\x85\x6a\x10\xbd\xfa\x3c\xdd\x0c\x49\xfd\x23\xc9\xcc\x83\x1f\x63\x65\x28\x89\x6a\x49\xaa\x1b\x0c\xb6\x9e\x9f\x8c\x18\x90\x03\x13\x81\x86\xd5\xc6\x7d\x4c\x58\x2b\x71\x12\x50\xb7\xfa\x2e\x6c\xcc\x12\xe9\x22\xbb\x6a\x73\xb9\x71\xca\x88\x15\x62\x0c\x36\x2c\xc2\x40\xae\x64\x8a\xb7\x45\xe9\xaf\xee\x6f\x43\xde\xc3\xe8\x64\xe3\xef\xa1\xe7\xe9\xa0\x67\x20\x21\x91\xef\x3c\x1a\xde\xd6\xaf\x9d\x90\x96\x1a\xab\x6c\x5c\xa7\xb9\x43\x45\xbb\xa7\x19\xd0\xae\x45\xb2\x35\x21\x7e\x04\x21\xf8\x1b\x51\x27\x65\xcd\x0b\x19\xaa\x1d\x8f\xae\x7c\x43\xe7\xe2\x4f\x25\xc1\x31\xbe\x2a\x68\x20\x30\xfd\xe9\x18\xc3\x92\xd4\x0b\xfb\xd8\x7d\x93\x6c\xfc\x1b\xbe\x10\xdc\x63\x48\xfc\x2e\x9a\x03\x94\x24\x43\x4f\x05\x81\xa4\xbd\x2a\x54\xf0\x9f\xdf\xb3\x0f\x01\x78\xe0\xf3\xca\x1c\x0b\xad\x26\x02\x62\x7d\x3e\x7f\x23\x3c\x8c\x4d\xa7\xfe\xc8\x07\x1b\x45\x68\x2a\x14\xd6\x4f\x86\xed\x99\xe5\xae\x2a\x3b\x23\x93\xc1\xa1\xa4\xf1\xf6\x77\x76\x55\xf8\x89\x7e\x9b\xc6\xea\xea\x2e\x84\x96\xf2\xcc\xa2\x66\x2e\x02\x27\xc9\xa3\xaf\x86\xd4\xd7\xcf\xd4\xec\xcd\xb8\x86\x5f\xd7\x5b\xe2\x87\x33\xc5\x61\xb5\xfc\x25\xdd\x3e\xfa\xd7\x87\xcb\x00\x31\x3e\x54\x9e\x6d\xb7\x29\x4e\x81\x8f\x67\x04\xcf\x74\x2b\x03\x50\x8c\x1c\x8e\xee\x55\x46\xe5\x39\x6a\xe2\xa2\xd4\xf2\x96\xe0\xe9\x6f\x8d\x3d\x6c\x6a\xf7\xfe\x04\xe6\xa0\x87\x00\x54\xa6\xe4\x04\xb2\x8e\xdc\x72\x41\x83\x0a\x0b\x20\x1b\x4b\xa8\x23\x11\x5b\x5a\x0f\xaa\x0d\x63\x83\x87\x55\x0d\x6a\x15\xe0\x27\x28\xa9\xe3\xb7\x9c\xfc\x63\xe6\x1e\xe0\xfd\xab\xd8\x16\xdf\xa8\x60\xb0\xf8\x49\xed\xbe\x84\x86\x6d\x27\xe3\xbc\xc4\xad\x5a\xad\x20\x70\x7b\xed\xed\xfc\x78\x57\x58\xd9\xb9\xfa\x5b\x75\xb9\x42\x2f\x31\x8a\xb0\xef\x7e\x2b\x56\x92\x4d\x4a\xb7\xf7\x8f\xfb\x6d\xc5\xd3\x7e\x2a\x6b\xf2\xa3\x36\x4b\x8b\xed\xf9\xe0\xfa\xf9\x22\x07\x48\x7e\xcc\x72\x3d\xf7\x55\xaa\xda\xc2\x95\xf1\x42\xc0\x11\x16\x71\x00\x61\xbc\xf3\x5f\xb9\x44\x2f\x40\x90\x32\xa0\xe6\x1e\x54\xc0\x24\xbd\x09\xd4\x68\x91\x76\x87\x8e\x7e\x64\x7a\x74\xaa\x4e\xab\xc0\xa6\xdc\xc0\x90\x81\x73\x83\x24\xe3\xa3\xba\x65\x94\x15\x5d\x27\xbf\xa2\x3a\x86\x65\x9f\x4e\x5c\xd5\x75\xf8\x90\x83\x9b\xe5\x9c\xaf\xfc\xac\xf4\x11\x8b\x28\xb7\xe5\x61\x62\xb0\x29\xe2\xea\x28\x70\x4e\xdf\xc1\x70\xbe\x06\x2a\x75\x8a\xbf\xc9\x0c\x76\xa8\x28\x85\xf5\x98\x5e\x37\x55\x75\x4b\xd3\x39\x58\x4e\x97\x6d\x5d\xf1\x5c\x26\x7a\xf2\xa9\x18\x0a\x89\x9e\xc6\x95\xae\xbd\xc2\xca\xfb\xfc\xe0\xac\x35\xad\x02\x07\x2e\xaa\xa3\x46\x4f\xf5\x40\xdb\xfe\x71\x6f\x42\xd3\x4c\x49\x5e\x6b\x54\xd9\x8d\xd7\x9c\xbb\x0a\xdc\xdf\xe5\xa6\x0b\x0f\x02\x65\xe7\xa6\x38\x4e\x54\xdf\x20\x5c\xf0\x63\xae\x36\x7d\x32\xad\x05\xa4\x71\xaf\x20\x0e\x57\xd2\x86\x3e\x59\xc4\x72\x5d\x51\x48\xb4\xb6\xf0\x79\xdb\x21\xec\xed\xb4\x57\xb6\x70\x94\x37\x9a\x88\x33\x98\x05\x55\x62\x8e\xe7\xec\xf7\x09\x9f\x50\xee\xa9\x9e\x58\xa2\x23\x08\xf2\x92\xbd\xb6\xd5\x8b\x76\xfa\xce\x23\x86\x24\x55\x92\x8c\x31\xf3\x2d\x58\x12\x79\xba\x24\x9f\xa0\xa0\xa9\xc8\x15\xfe\x94\xd6\x4e\x92\x54\x62\xa8\x2d\x1b\x42\x51\xa9\x68\x69\xe6\xa3\xa7\x8e\x7a\x60\xd0\xb2\x5c\xe1\xaf\xcd\x2b\xb8\xa4\xf9\x9a\xf0\x3c\x7a\x32\x92\x34\x17\x35\xd9\xfc\x53\x30\xa4\xcc\xdf\xaa\x6f\x58\x9b\x7f\xff\x69\x75\x5e\xe5\xc8\x3a\xc9\x5d\x65\x88\x31\x59\x2e\x64\x2c\xfd\x8b\xf0\x28\xf9\x61\x27\x6d\x11\xca\x31\x8c\x2a\xf9\x25\xb6\xf5\xae\xed\x43\x3b\xa6\xba\xea\x35\x5d\x11\xdb\x4d\x20\x1b\x22\x5d\x9b\x2e\xe0\x66\x50\xd2\x53\x59\xd4\xda\x35\x84\x89\x92\x84\x4e\x6d\xaf\x39\xe0\xf3\x2c\x8d\x14\x00\x0a\xb1\x73\xff\xe7\x2c\x3e\x1f\x83\x9c\xe2\x01\xdf\x8f\x81\xe4\x1c\x1c\x58\xa3\x29\xc4\x84\x4b\x14\xd1\x0c\x88\xb7\x44\x65\x2c\x05\x31\x36\x29\xc1\x48\x83\x13\x0c\x58\x78\x70\x26\xa7\x9d\x38\x10\x2c\x3c\x32\xc2\xe9\xb2\x87\xe9\x84\x14\x69\xa3\x93\xcb\xa0\x38\x17\xf1\x41\xa8\x0e\xa5\x8f\xbb\xe8\x36\xb2\x71\x69\x1d\x5d\x67\x9c\x6f\xbb\xa9\x08\x99\xaa\xd8\x62\xe1\xb3\x22\x5c\xd3\xe4\x39\x06\x89\xee\x7e\xaf\x0c\x55\x91\x8c\x74\x73\xb4\xd5\x75\x32\x70\x74\xdc\xfd\x71\x9a\x1f\x17\x89\xf5\x9d\xcf\x46\x3f\x4d\xc8\xe3\x70\x7c\x3a\x35\xf8\x7c\x61\x9e\xe5\x70\x08\x97\x99\x8a\x2f\xfe\xbe\xfa\x08\xd6\x36\x89\x46\xc1\x51\x9b\x99\x96\xa3\xb8\xac\xa1\xc4\x5c\xcb\x0f\x06\xe4\xe3\xfa\xab\x58\xb4\x65\xee\x49\x83\x8b\x04\x7e\xc5\x9b\xef\xbc\x58\x59\x0c\xb7\x64\xc1\x96\x2a\xce\x62\x37\x5a\xee\xc8\x9f\x59\x15\xd9\xf7\x4a\x41\x91\xef\xbf\x4e\xaf\x6c\x6f\x81\xe5\xd5\x45\xef\xff\x1e\x72\x12\x03\xa1\x6c\x39\xbd\x3b\xc4\xa3\x26\x41\xe5\xa0\x08\x88\xef\xca\xee\x5d\xf1\x2b\xae\x87\xd5\x73\x30\xb0\x95\x6b\xa7\xe3\x62\xfa\x8d\x59\x1c\x61\x15\x93\x96\x86\xc2\xeb\xfb\x53\xd2\x9c\x2a\xa0\x60\x50\x0c\xc9\x2f\x59\x58\xa2\x3e\x99\xbc\x01\xcb\xce\x76\xc5\x73\x39\x30\xa4\xb4\x85\x8d\x6a\xcb\xa2\x66\x35\xaa\x72\x69\x7b\x69\xd5\xe3\x7d\xe8\x2c\x37\x89\x2f\xa6\xad\x2d\xe6\xea\xe0\xcf\x25\x17\x88\xbc\x94\xd2\xc7\xcb\xd8\x84\x45\x83\xe1\xab\x93\xa9\xa8\x1c\xfe\xb8\xae\xb7\xb4\xee\x57\xfa\x23\x5c\x8d\xee\x81\x2b\x43\xbb\x67\x80\x9b\x64\x1d\x3b\xfd\x73\xca\x60\xb6\x38\x66\xbb\x36\x5c\x1c\xfc\xc9\x7d\x66\x54\x62\x52\x54\xc6\xfd\x71\xb5\x0c\x4d\x96\x84\x9c\xc9\x22\x17\x1a\x56\xb3\xe9\x22\xd6\x0f\x72\x8c\x05\xa4\x43\x85\xf7\x9d\x67\x6b\x5e\x3d\x2f\x58\x74\xc1\xe2\x69\x33\x51\x0a\xc9\x70\x5e\x76\xe7\x11\x20\xc0\xc0\x8c\x8a\xb8\x02\xd7\x18\x1c\x7a\xb0\x31\x31\x92\x97\x5d\x09\x2e\x39\xf0\x40\x24\x88\x5f\x1b\x8a\x3a\x0d\x75\xa8\xa9\xfb\x0f\xc3\x08\xd9\x78\x3f\x71\xf0\x02\x5d\x42\xfa\xea\xc5\x2f\x07\x3a\xf4\x43\xc3\x47\xec\x93\x36\x0f\x0f\x0b\xf7\xa3\x66\x2e\xb8\x5a\x9d\xbd\xf2\x0b\xbe\xcd\x86\xbb\x9c\x28\x9a\xd2\x5c\x45\x01\x9f\x8d\x70\xc5\x66\xc7\x54\x9f\x68\xa5\x8d\xe4\xec\x65\xf5\x78\xec\x6b\x4b\x5f\xb2\x16\x97\xf3\x64\x19\x3b\xfd\xf5\x53\x88\x28\xa2\x0d\x0e\x8b\xa3\xa6\x5a\xdd\x39\xd7\x5f\x3e\x9f\xc5\x4d\xb9\x3b\xf7\x4c\xae\x6a\x52\x66\xf7\xed\x47\x0f\xb7\x68\x58\xe8\x98\x8e\x21\x70\x41\x41\xee\xa1\xcb\x12\x1c\x3c\x22\xd6\xc8\x38\x20\x65\x41\x12\xe1\x79\x83\xc8\xbe\xb0\xb7\xfc\x9a\x1b\xc7\xce\xe6\x46\x0b\x83\xce\xec\x44\x46\xc7\x6a\x3a\x8d\xd8\x26\xe1\xd0\x00\x11\x58\x3e\x93\xbf\x3d\x1b\xbe\xbe\x27\x3b\xca\xbf\xd6\xa7\x59\xa6\x7c\x1f\x67\x0a\xc9\x38\xfa\x85\x7d\x2c\x15\x95\x81\xb9\x9e\xd4\x1a\x12\x9e\x7d\xc3\x6b\x95\x9e\xbe\xc3\xeb\x1d\xc7\xc7\x75\x12\xeb\xda\x41\xe3\x25\x19\x79\x10\x08\x82\xa2\x57\x25\xc1\xde\xb0\x19\xc4\x64\x64\x6e\x04\x2a\x8c\x04\x29\xb6\x49\x94\xf2\x3f\x7c\xf9\x6c\x2f\x41\x6c\xcf\x1c\xb3\x1d\x03\x41\x1f\x97\x9f\x01\x26\xd7\x01\x37\xbb\x90\x2f\x6e\xa6\x04\x4f\x01\x24\xcf\x7d\x79\xe2\x64\x67\xd5\x84\xef\x08\xce\x5a\xdf\x14\x4a\x9a\x67\xc5\x18\x9c\xaa\x7c\x2f\x84\x58\xd4\x28\x71\xa2\xe2\x60\x01\xe7\xaf\x5b\xec\xb7\x6f\xd6\x61\xa8\x54\x0f\x6d\x40\x00\xe8\x1c\x21\x0e\x35\xd8\x98\xc8\x3b\x7b\x67\x7d\xaf\x7a\x59\x08\x08\x95\xf3\xb1\xf1\xad\x96\x3b\xc4\xc8\x5c\xc4\x02\x4a\x3e\x2d\x6c\x8a\xec\xb8\xd7\xe1\xf2\x00\x96\x21\xae\x1f\x03\x6b\xf7\xfc\x20\x56\xb4\x7c\xe5\x5d\x91\xcb\x44\xbd\x72\x1b\xba\xb2\x80\x90\xdf\x75\x76\xf6\xf8\xfb\xd2\xbb\x23\xd8\xa5\xc7\xa8\xc5\x7e\xda\x9b\x98\x4c\xc9\xb2\x29\xdd\x24\x6b\x3a\xb3\x74\x35\xbb\x9d\x29\x3c\xbf\xc2\xe6\x92\xba\xad\x6c\x79\x0d\xd2\x8a\x66\x29\xae\xbb\xb9\x1b\x41\x7a\x6a\xea\xb6\x47\x5d\xb5\xeb\xe4\x87\xaa\xb8\xa3\x9c\xad\x62\xfb\x1b\x43\xb1\xc4\x86\x62\x51\x11\x66\x49\xa6\xcc\x69\x88\x30\xb6\x16\x94\x9f\x69\x58\x31\x5e\x3e\x88\xa6\x7e\x18\x03\x3b\x66\xff\xe8\x83\x20\x7e\xf1\xae\x01\xf4\x42\x10\x2a\x7a\x01\xad\xa4\x76\xfc\x0f\x07\xa1\x44\x94\x50\x74\x94\x1f\xb0\xa4\xa5\x2e\xd5\x79\xf3\x0e\x05\xd0\x48\xcb\xfa\x65\x18\x0b\x94\x2d\x81\xb4\xa9\x63\xda\x45\x2b\x01\x82\x9c\xe4\xbb\xd9\xdf\x97\x7c\x3d\xb1\xf0\x6f\xa4\x81\x2c\x6d\x8e\x92\xf2\x2d\xa5\x5a\xb4\x85\x22\x6e\x84\x42\x93\x16\xcd\xbb\xcd\xfd\x64\x37\x91\x4c\x8a\x1e\x69\x18\x9b\xfd\xf8\x02\x1f\xe9\x3f\x9d\x2b\x10\x9c\xc4\x11\x30\x20\x92\x43\x7a\x6f\xd1\x5b\x75\x20\xf3\xdd\x57\x84\x2c\xcb\x2f\x6d\x9d\xe5\x22\x64\xb3\x53\xae\x6d\xa8\x59\x43\x63\xe8\x2d\x57\x91\xcd\xcf\x64\x1c\x90\x37\x5b\x4f\x14\x6f\x63\x95\xf9\x9c\x26\xd6\xe6\xe7\x5c\xe6\x2b\x60\x29\x62\xae\x79\xe7\x12\x94\x98\xf2\x47\x92\x71\xf5\x4e\x9f\x4b\x09\xbc\x1d\xa6\xc1\x25\x33\xbc\xc6\x3b\x3a\xbe\x2e\x13\xaa\x31\xc0\x6c\x1c\x75\x75\xad\xbb\x61\x6c\xf6\x49\xcd\x26\x8a\x73\xb8\x9e\x89\x2c\x5d\x8e\x4c\xb1\x5a\x8f\xf5\xb8\x0b\xa3\xdc\x16\xb8\x46\xc1\xb6\x7f\x14\x8b\x31\xbb\xad\x3f\x45\xe0\xc9\xd5\xd2\x5b\x77\xdd\x56\x5f\xf2\xe4\xac\xeb\xa2\xb0\xd3\x7b\x4e\xc8\x09\x17\x90\x74\x5e\xd6\xf4\x9d\xd7\x0c\xa6\xf9\x55\x21\x6c\x3d\x74\xbf\x5d\x56\x2c\x3a\x60\x56\x14\xbe\x50\xf1\xc1\x83\xa3\x82\xac\xe8\x71\x61\x9d\xeb\xa3\xab\xfb\x58\x14\xc6\xc3\xb0\x9b\x02\x23\x79\xc2\x64\xc6\xdc\xce\x7f\xf3\x61\xac\x49\x82\x15\xf2\x61\xb9\x21\x98\x7e\x73\x2b\xda\xa4\xd5\x74\x07\xda\xc1\xef\x45\x9d\xfd\xb4\x84\x39\xfa\x40\x71\x5a\xf4\x93\xf2\x39\xce\x94\x84\x8d\x80\xc8\xab\x83\xf0\xd7\x19\xbd\x14\x17\x46\x5d\x11\xb1\xe3\x87\xa5\x46\x63\x39\x89\x47\x15\xe3\x11\xf6\x29\x54\xbd\xac\x57\x21\xcc\x98\x30\x07\xaf\xd3\x50\x4a\x8a\x91\x1c\x1a\x58\xc1\xf6\x6d\x10\x82\xd9\x37\xbe\x5c\xf8\x49\x6a\x6a\xc2\xf5\xc3\xb0\x6c\x6b\xf4\x5d\xb4\x65\xd2\xf6\xb0\x36\x07\x34\x73\xb3\x13\x42\x40\xe3\xfd\x20\x07\x52\xfb\xaf\xfd\xbf\xaa\xb9\xa2\x76\x82\xb8\xea\xf7\xc3\x8f\x8a\xc7\x95\x2e\x29\xbe\xef\x5a\xb6\xae\x95\x8e\x14\xaf\xd4\x75\x87\xd6\xca\xf3\xa1\x09\x89\xed\x68\x88\x1c\xd1\x65\x06\x97\x24\xe9\x05\x57\xed\x2d\xe6\x5a\xa8\xef\x40\x9b\x86\x8e\x40\x68\x68\xb4\x36\x31\xdd\xca\x43\xfd\xe5\x78\xaa\xe6\xc8\x8c\x5f\x11\x03\xf3\x0a\x86\xca\x7b\x16\x12\x16\x65\xed\x8c\xec\xa4\x89\xdf\x02\xfb\x67\x82\x22\x44\xfe\x23\xaa\x39\x35\x38\x98\xd9\xfe\x2e\x54\x79\xda\x24\x4f\x6c\xd4\x5c\xca\xfb\x5a\x46\x8d\x98\x1a\x17\xdb\xce\x49\xae\x7c\x8d\x8e\xe3\x4e\x1d\x67\xa0\xef\x39\x9b\x8d\x57\x7d\x36\x01\x8a\x67\xc3\xb4\xc5\x3f\xd4\x55\xb7\xd8\x49\x3c\x3e\x97\xae\xa2\x5c\x5e\xb4\xdd\xb6\x4b\xc6\xda\xc4\x7b\xf8\x6f\x16\x4c\xf4\x88\x32\xb5\x16\xbd\xa6\xc7\xee\x62\x1d\x43\x2a\xa3\x3c\xa6\xb3\x3e\xdf\x33\xaa\x05\xf5\x59\x00\xad\xc9\x67\x23\xda\x1f\x82\x29\x0c\xc2\xbf\xa4\x18\x06\x72\x11\x76\x89\xfa\xba\xa2\x24\xc2\xc3\x97\xe3\xf6\xc1\x86\xa9\xee\x6a\x57\xc2\xf4\x89\xb8\xce\x57\xa2\xcf\x19\xde\x2f\x9a\x97\x96\x32\x05\x36\x3a\x9c\x4f\x07\x26\x59\x1c\xff\x06\x69\x95\x4a\xfb\x64\x97\xfa\xf2\x36\x5e\xcd\x20\x95\x72\xaf\xe8\xbd\x1b\x75\xfe\xb4\xd3\x6c\xcd\xdf\x0f\x5d\xe4\x9f\xe1\xbc\x45\x06\xb4\x46\x7c\xb0\x11\x70\xf8\xf1\x24\x00\xaa\x00\x05\xef\x3d\xec\x48\x4f\x3f\x3e\x41\xe2\x00\xb8\x75\xee\x2e\x43\x7c\x5f\x46\x6e\x7b\x4a\x8f\xba\x6d\xa1\x5c\xa2\x32\xb2\x79\xc9\x5a\xee\x6f\xbe\xf2\x6b\xb0\x47\x66\x83\xf7\x38\xc0\x1a\xa7\x85\x00\xd1\x54\xef\xcc\x1e\xbf\xc5\xa9\x81\xc4\xe5\xf6\x5d\x7d\x29\xcc\xba\x04\x1e\x5f\x41\xa0\xa8\x16\x5e\x39\x9e\x70\x8e\xdb\x3e\x8a\xb1\x15\x17\xd9\xd4\x3e\xa6\x3e\x79\x59\x23\x6c\x26\xce\xd5\x18\x95\x18\x1a\x42\xac\x4c\x26\x62\x03\x8c\x59\x42\x26\x65\xed\x7b\x5d\x7f\x06\xef\xd2\x62\xed\x8a\x82\xb3\xea\xdb\xc4\xcd\xa6\x39\x7f\xf3\x90\xae\x7b\x07\xcd\xe1\xc7\x48\x0a\xc5\xc4\xaa\xe3\x67\x95\xec\xb4\xce\x1a\xe7\xe9\x36\x91\x5e\xfd\xed\xd6\xd6\xda\xec\x59\x2a\x8a\xb4\xe7\x46\x43\xc5\x9c\xc3\x30\xe1\xa0\xda\x09\x76\xcc\x76\xfc\x0d\x0f\x86\xdc\x02\x8b\xdd\xe7\x51\xa4\x59\xcd\xcb\xd1\x53\xba\x89\x95\xad\xde\x42\xc3\xbf\x86\x97\x0c\x88\xe9\xcf\x47\xfc\xd8\x48\xe6\x98\xc1\xba\x63\x08\x4c\xbc\x30\x97\x25\x73\x05\xef\x51\xc6\x1f\x70\x6b\xe4\xe8\xd8\x68\xf0\xa3\x55\x06\xde\x1e\xfd\xac\x77\xb9\x2a\xe5\xb9\x15\xf7\xee\x10\x8c\xbb\x8b\xd8\xc2\x4b\x88\x17\x29\x6f\x90\xb1\x89\x16\xff\x8e\xf6\x01\xeb\xc6\x3a\xea\x9b\x3f\xf6\x22\xec\x2c\x3f\x44\xd6\x7b\x94\x3c\x03\x54\xfa\x6f\x72\x22\x40\x5f\x39\x1f\x2b\xaf\x8d\x0c\xbf\xf9\xcc\x95\x05\x92\xde\xb6\xce\x39\xba\xdf\xe9\x3f\x65\x56\xb4\xa7\x98\x10\xed\x33\xc5\xaa\xd7\x50\xf3\x04\xcd\xe3\x4c\xff\xac\xc3\xb1\x8d\x58\xcc\x2e\xed\x5a\x5a\x85\xe7\xf5\x24\x6c\xb3\x12\xed\x23\xe3\xb9\x6d\x74\xd5\xbd\x4f\xa4\x70\x0f\xb8\x5f\x68\x26\xae\x6b\xa7\x91\x3e\x3e\xc6\x69\xb9\x3b\xff\x56\xd9\xbd\x5b\x57\xab\xd2\x30\x7e\x84\xc8\xf6\xc7\x25\xba\x5d\x35\x88\x9e\xc9\x29\x34\x2e\xf2\x3f\xa1\x0c\xa7\x0a\x97\xeb\xff\x31\x96\x17\x37\x47\x31\x67\x61\xee\xae\x20\xa4\x1c\x7e\x2e\xf5\x28\x1c\xbd\x1d\x4a\xc0\xf9\x3b\xa6\xcf\xf7\x91\x9e\xf9\x13\xd1\x05\x76\xd8\xe4\x4b\xe7\x65\xb4\xb7\xe4\x0b\x0b\x64\x97\x11\xb0\xda\x6d\x26\x0f\xbf\x1f\x0c\x1e\xa0\x6d\x0e\x36\xa4\x57\xa2\xd2\xac\x0c\x85\x7e\x4a\xe0\x79\xef\xc2\xfe\x26\x44\xda\xc8\xcf\x6a\x85\xf6\x6f\xba\x45\x42\x29\x60\x20\x20\x1f\x51\x3c\x07\x40\x02\xf4\xe3\x06\xa0\x7b\xa1\xd1\xc0\x6e\x14\x51\x20\xaf\x4a\x68\x37\x58\xb1\x83\x33\x21\x2d\x4b\x20\xbf\x22\x6b\xaf\xdb\x20\xcd\x2a\xcf\xd2\xc4\x9f\x09\x09\x0a\x2b\x36\xfa\x38\xc2\x5f\xbd\x59\x72\x7e\xb8\xc1\x5f\x90\x36\x40\xa9\x56\x24\x15\x75\xef\xae\x94\x2d\xdc\xfd\x58\x4d\xcd\x23\x03\x87\x7e\xa3\x86\xcd\x75\xc0\x86\xf4\x49\x0e\x6d\x29\xc8\xeb\x05\x41\x80\xad\x54\x16\x50\x4d\x2d\x23\xd2\x07\x25\x3c\xa0\x9a\x2f\xfc\x9c\xe7\x1c\x10\xf2\xc4\x03\x02\x4c\xbb\xc3\xf0\x3c\x72\xb0\xfb\x48\xe2\x3f\xed\xe4\x91\x99\x99\x7d\xdd\xe4\x18\x0b\x58\xab\x49\x1c\xb8\xe6\x42\xea\x62\xbe\x7c\xfc\xce\x2e\x7d\x2c\xc5\x65\x27\x63\x29\xbd\x18\xde\xe6\xf9\x7b\xde\x74\x95\x34\xbc\x5c\x16\xab\xfe\xad\xac\xfc\xd3\x58\x54\xb9\x2c\x1e\x35\x5e\xed\x9e\xbe\xce\xe2\x79\x3e\x31\x7b\xd7\xdd\x78\x7e\x9d\x6d\x6e\x2e\xcc\xbd\x26\xeb\xeb\x97\x96\x96\x4e\x25\x44\xec\xe6\xbd\xb7\x77\xd3\x58\xfd\xdb\x2f\x44\x8c\x4b\xa9\x5d\x61\x90\x49\xfc\x26\x9b\x87\x8a\x9a\xd7\xf3\x04\x95\x5f\x02\x46\x4c\x12\xcb\xa2\x0b\x1e\xad\xf2\xf0\x97\xb3\x13\x05\x0e\x29\xe2\xc7\xbb\x44\xa5\xd9\x10\xda\x99\xf8\xcb\xe5\xda\xb0\xeb\xd2\xf2\xb5\xb7\xf5\x65\x9b\xd3\x56\x3a\xb9\xa4\x24\x39\x4b\xd7\xb1\xc4\x44\x6f\xa9\x92\xde\xe3\x90\x51\x14\xb7\xad\x8e\xde\x63\x77\xb1\xb5\x52\x8a\x93\x69\x88\xec\x0e\x8b\x2c\x81\x71\x9c\x93\xf7\x9e\x7e\xe7\x8d\x50\x09\x38\xd5\xdb\xe0\xd0\xd2\x97\xbc\x7a\xb1\x95\xfa\xad\xa1\xd9\xdc\xed\xf1\x37\x5a\x9d\xcd\x0a\xf7\x7d\x66\xc7\xe2\xf4\xc4\xe3\xd3\x56\xa9\xeb\xd2\xc2\x85\x77\xc5\x73\x81\xc0\xb5\x15\x72\x9d\xcb\x82\xf2\x34\x66\xdd\x64\x4d\xcd\x29\x95\x34\xe9\x21\x4f\x77\xda\xdb\x19\x02\xf4\x6e\xe1\x9a\x9d\x87\x89\xcd\xf7\x17\x43\x6c\x53\x0b\xd1\xbb\xa1\x80\x05\xd7\x9c\x8e\x66\xf3\x85\x44\x94\x66\x93\x4b\x80\xdd\xbf\x7f\xd5\x2a\x82\xfa\x3f\x81\xf3\xfd\x15\x51\x04\x03\x0e\x39\x1e\x26\x98\x5b\xcb\xb2\x41\x6c\x18\xd9\xa8\xc4\x72\xf8\xfb\xa6\x57\xd0\x1b\x67\x73\xe5\x50\xc4\x1f\xd6\xa6\x2c\x1a\xb7\xa8\x61\xd7\xfb\x8f\xf2\x97\x36\x75\xaa\x2d\x5e\xf5\x12\x3e\x42\x31\xef\xc7\x6b\x74\x5d\x78\xdf\x42\x4a\x50\x5b\x29\x6f\x91\xed\x76\xba\x6b\x8d\x6d\xf3\xb9\x8c\xf6\xeb\xea\x63\x4b\x0c\x9a\xcd\x84\xc8\x81\x41\x7a\x75\x3e\xf8\x3d\x30\x3b\x0f\x87\x5f\x5f\xcf\xf0\xbf\x7e\x99\x4d\xf7\xb0\x5f\x6f\x19\xb6\x58\x79\x37\x93\x73\x8b\x23\xb2\xc4\x7c\x24\xa2\x04\xc6\x2d\x2f\x6d\x7f\xc6\xf6\xed\x9a\xd0\x93\xa7\xc3\xd2\x9e\xae\x05\xdf\x89\xca\x3a\xc5\xd9\x65\xae\x34\x1e\xe7\x5f\xfd\x41\xba\x86\xbd\x41\xcb\x4a\x9e\x5b\x9a\xfb\x87\xb3\x95\x1c\x5d\x72\xc8\x76\x6f\xab\xa7\xb7\xda\x7a\x9e\x7f\xb8\xd8\xc1\xc1\x90\x9d\x16\x33\xfb\xa3\xc1\x60\x16\xdc\x97\x09\x83\x63\xb5\x52\xea\x2e\xfa\x56\x76\x13\xea\x78\x8a\xbb\xb3\xb5\xcc\xf0\x72\x92\xc0\x23\x49\x3a\x19\xdc\x57\x3f\x55\x71\x77\x8c\xf9\x87\xac\x8e\x4b\x59\xf1\x65\x1c\x9c\xb6\x03\x84\x2c\x5c\x0b\x9b\xda\xc4\x2d\xc5\xd0\x71\x32\x98\xa3\x73\x40\xf6\x9c\xb3\x7a\x20\x43\x0a\xb1\x60\x19\xb6\x65\x6b\x6c\x23\x6e\xbf\x78\xe6\x45\x32\xb7\xd0\xa7\x42\xb5\x69\xd8\xaa\xde\x57\xff\xe0\xd7\x5d\xc0\x10\x49\x17\x2f\x54\x26\x78\x1c\x6c\xb7\x59\x32\xb1\xa5\x0a\x1f\xba\x12\xf0\x11\x39\x6b\xdd\x28\x05\x8a\x22\x4c\x05\x83\x10\x49\x22\xf6\x1b\x1b\x72\x29\xfc\x0f\xd6\x66\x47\xc9\xbb\xb2\x1d\x1b\xac\x54\xf6\x76\xb7\x3e\x0e\xe9\xf4\x6d\x22\x42\x9c\x75\x75\x45\xfb\xc1\x2c\xc2\xc3\xe9\x57\xe2\x27\x14\xe2\x45\xa9\x7c\xd4\xab\x12\xb0\x02\x53\x1d\xc7\xf1\x56\x10\x3c\x4d\xe2\xc6\x70\xb1\xa5\x48\x72\x3f\xeb\x6f\xdb\xa4\xea\xa3\x56\x2d\xcc\x41\x68\xe0\x70\x9c\xc9\x86\x18\x09\xa5\xff\x6c\xa9\x9d\x75\x26\x8d\x4b\x8e\x02\xfe\xc0\x52\xa1\x48\x20\x34\xa9\x90\xcc\xf9\x31\x0b\xdb\x24\x94\x6f\x3a\xf6\x8d\x1e\xd4\x27\x89\x87\x49\xf6\xda\xd0\x6e\xd6\xf1\x86\xbf\xf7\x4f\xd6\x8f\xf4\x8f\xf3\xea\xab\x29\x77\xe5\xb7\xe9\xd5\x39\x86\x73\xc0\x0d\x1d\x8e\x3f\xdf\xcf\xb3\x64\xfd\x42\xfb\x74\x25\x83\xac\xbd\x90\xe6\xc2\x82\x07\xdc\x92\xb2\xe8\x8f\x04\xc2\xa2\x13\xb5\x8e\x1b\xd3\x47\xfe\x47\xa8\x47\xf1\x47\x78\xbf\x16\xe0\xfc\xa4\xda\x78\x41\x70\x4a\x10\x37\x02\xf7\x25\xb1\x53\x32\x87\x68\xcf\x1a\xc2\x9f\x6f\xf8\x18\x3a\x48\x44\x2f\x4b\x86\xed\x9b\x21\x38\x40\x1e\x39\x30\x80\x26\x59\x4b\x2f\x86\xfa\x44\x69\xb3\xcc\x37\xda\x92\x1a\x53\x81\xaf\xad\xa6\x47\x0e\x81\x2c\x9a\x10\x6c\x86\x86\x7a\x9d\x94\x53\xe3\xa4\xc0\xfe\x47\xb2\x45\xa9\x21\xa3\xb6\x46\xd8\x98\xa4\x3d\xf6\x1e\x15\x1d\x69\xa3\xe7\x1e\x2a\x41\x59\xc4\xef\x8f\xfb\xef\x5b\x58\x0f\xc3\xde\xe1\x82\xdb\xae\xe7\xd8\xfa\x64\x24\xdb\xf9\x8f\x01\xb0\x33\x6a\x6e\xc5\x6e\xc7\xd6\xcc\xe2\xbc\x4f\x6b\x18\x09\x68\x39\xbc\x25\x4d\x77\x21\x0e\xab\x25\x1e\xd1\x88\x02\xb4\xeb\xce\xdf\x74\xc3\xe2\xc5\x94\x7e\x1e\x6f\x55\x57\x68\xbb\xdb\xcb\x1f\x59\xab\x9c\x8e\x53\xd1\xfe\x95\x22\x09\xa1\xbb\x4e\xa6\x41\x81\x63\xcb\x23\xe1\x05\x4f\xd2\x3e\x3d\x9d\x8c\xbc\x76\xf7\x23\x9d\x40\xe0\xfd\x5a\x00\x71\xa2\x85\x60\xb8\x3a\x4c\xdf\x10\x9c\xf0\xfa\xe1\x42\xe6\x2d\xc0\x5f\xf2\x16\x4b\xf8\xa7\xf6\x63\xd5\x59\x95\x1e\xe5\xbe\x5b\x44\xee\x2f\x78\x40\xc3\x08\x02\x01\xa2\xca\x45\x82\xd1\x95\x82\x89\x28\x0b\xf7\xac\xcc\x25\x77\xe7\xbb\x4d\xd6\x0d\x25\xad\x57\xe5\xb4\xf9\x0f\x4a\xea\x27\xa4\x3d\x96\xdf\xa5\xa0\xff\x88\x20\x2f\x27\x40\x6f\x7a\xb2\x97\xa5\x49\xdb\x68\x3f\xf9\x1e\x7a\xdb\x9c\x70\x5d\xd5\xea\x93\x1a\xd5\x3c\x21\xa9\x8c\x39\x1e\x0e\x6f\xf8\xf5\x9d\xcd\xd1\x3a\x7f\x5d\x8a\x7f\x6d\xc9\xdc\x44\x9b\x4a\xb8\x17\xce\x6c\x2d\x2f\xe4\x32\xe5\x66\x8b\x24\x2d\xdd\xd7\xec\xbd\xae\xf6\x66\x10\x13\xf0\xda\x17\xe5\x33\x44\x6a\xe1\xfd\x09\xfa\x1b\x4b\x3a\x32\x90\x8b\xfc\x46\x7c\x8b\x24\x74\xf9\xb7\x4c\x05\x1c\xe6\x53\x5e\xaa\x1b\xb4\x2e\x86\x6c\xd3\xcf\xd4\x55\x55\x3f\xd2\x44\x23\xd1\x26\x7d\xc0\x18\x59\x43\x3f\xd1\x78\x3c\x85\x84\x89\xe5\x87\x83\x35\xa5\x45\xbf\x3e\xcf\xb2\x7e\xba\x13\x02\xeb\x60\x51\xda\x53\x13\xf5\x41\x9e\xfd\x8a\xee\x7d\x8d\xbb\x07\x7c\x48\xff\x43\xde\xcd\xd7\xf0\x8a\x7a\xe6\xf7\x44\xe0\xc5\x8a\xc5\x76\xd7\x2f\xd5\x0e\x9e\xc2\x8b\x0b\xef\xed\x89\xeb\x77\x9f\x1e\x79\x7b\x1e\x7f\x41\xfa\xa0\xe0\x77\xd1\x70\x33\x6f\xb4\x4b\x29\xaa\xa4\x00\x45\x88\xa8\x81\xd6\xc2\x8b\xfb\x4c\x1a\xe2\xf1\xa5\x5b\x82\xa2\x62\x7d\xce\x0a\x17\x6e\xe0\x46\x99\x3b\x70\x8a\xb8\x0e\x2c\x93\x6b\xd8\xb8\xa9\x58\x31\x23\xb3\x28\x58\xa4\xea\x0c\xe9\xc5\xdb\x79\x50\x57\xc6\xad\x52\x02\x52\xce\x68\xf7\x95\x38\x01\xdb\x88\xd7\x42\xa3\xaa\xa6\xd9\x65\x64\xd9\xeb\x5d\xf9\x44\xe9\x2e\xe0\xd1\xea\x9d\xa7\x55\xfe\xcc\x34\x67\xed\xef\x55\xb9\xcf\xa4\xa6\xec\x9d\xf8\x54\x8a\xa5\xd9\xd0\xee\x8a\xba\x8b\x81\x59\x4d\x0f\x55\xcf\x44\x9e\x2b\xd2\x04\x5b\xee\xab\x6a\xa3\x51\x63\x53\x8d\xc5\xf6\x59\x9e\xd7\x63\xaa\x9a\xd3\x55\x5f\x36\xe2\x62\xdb\x86\x52\xd8\x51\xe6\xeb\x21\x8a\x74\x59\x8c\x9f\xd9\xf0\x08\x0f\x5e\xd2\xec\x9f\x71\xc8\x1a\x0b\x81\x4c\x79\xdd\xb1\x48\x99\xf0\xf4\x44\xc3\x01\x43\x88\x98\xeb\xf5\x87\x54\x9d\x80\x83\xb1\xba\x19\x05\x24\xe4\x0a\x3b\x28\x43\xd4\xc4\x63\x98\x5e\xaa\xe0\x3d\xb8\x9f\x1a\x9e\x58\xff\xb8\xf3\x23\x1e\x62\x93\x31\xc3\x24\x8b\xd9\xe7\x2f\x65\xfc\x69\x55\x33\xb3\x6c\xad\x48\x11\xac\x91\x4f\x04\xdb\xa4\x06\xf2\xdd\xab\xce\xce\x7e\xab\x55\xb7\x6d\x66\xbe\xe2\x2c\xb4\xd7\x12\xb5\xbf\xe5\x57\x56\xb6\xca\x3b\xf2\xf9\x24\xfc\xb1\x82\x85\x5d\x72\x16\xf1\xe4\x6d\xa3\x3a\x96\xb6\x23\xba\x94\x13\x71\x1b\x15\xbc\xdb\x54\xf0\x99\x9e\x75\x7b\x62\x9d\x40\x7c\x2f\x24\xa9\xe1\x41\x7f\x84\x9f\x62\x83\xcb\x7a\x2c\x6d\x4d\x59\x89\x80\xb3\x4e\x34\x94\x9f\xf8\x85\x79\xef\x34\xfe\xab\x4e\x65\xed\x08\x95\xb7\x89\x72\xb6\xfb\xad\xa7\x54\x07\x8e\x14\xec\xb7\xb0\x3e\x2d\xdd\xc2\x39\x2b\x8e\x05\x33\x66\x6b\x9e\x34\x3d\xa3\x3f\xfa\x6f\x86\x00\x53\x47\x61\x7d\x94\x39\xc1\x4c\x02\x9b\x7c\x54\x70\x93\xb2\xc7\xde\xa4\x7d\xa8\x6e\x2f\x46\x4c\xbe\x87\xec\xcf\xdf\xf2\xd7\x31\x64\x57\x2c\xca\xd8\xea\x1a\x5b\x8c\x3b\xf3\x07\x6f\x90\xdb\x53\x3f\x2b\x5b\x9e\x36\x9b\xea\x4b\xbe\x5f\xf0\x78\xa2\xdc\xba\x1d\xbc\xf3\x5c\xc7\xc1\xac\x2e\xe9\xbe\x12\x7b\x47\xae\xde\xf6\x46\x26\xec\x05\x77\x02\x9a\x93\x5e\x11\x22\xee\x3b\xe8\xdb\x03\xd3\x68\x88\xd1\x22\x56\x65\xf8\xc1\xe8\x26\xc9\x82\x1f\xcb\xcb\x49\x58\x5c\x34\xce\xda\x8c\x4f\x75\x1c\xf9\xd8\xaa\x65\x27\x0e\xef\xa9\x8c\x9f\x9b\xb8\x99\xa3\x28\x12\x4e\x13\xfe\x12\x0b\xfd\xc1\x4e\xb4\x41\xb2\xe3\xe3\xda\xf4\xab\xc6\x3a\xa3\x37\x7d\xb5\xc5\xcb\xe6\x6d\x2b\xc6\xb5\x74\xf9\xca\xc9\x48\x61\x0b\x09\xa9\x44\x63\xeb\xfa\xe2\x35\x5e\x7d\x0f\x2a\xd4\x71\x21\x31\x7e\x87\xbf\x08\x67\x7d\x26\xf4\xb1\x62\xe7\x67\x39\xa9\x46\xea\xc5\x0a\x72\xe9\xde\x6d\x73\xb7\xb4\xc6\x1b\xe5\xc5\x15\xe4\x3a\x34\x87\x23\x09\x8a\x24\xd6\x8f\x17\x51\x90\x1f\xc9\x0f\x17\x44\x03\x7d\x48\x82\x69\xb6\x60\xfe\xa5\xdf\x82\x33\x2e\x7b\xe8\xb1\x86\xaf\x22\x86\x4b\xfc\xf3\xe7\xa1\xf9\xea\x38\x71\x9e\x98\xc8\xcf\xe4\x48\x43\xf7\xc8\x38\x68\xa6\x99\xcf\x77\x3f\xfb\xc6\x86\xfd\x58\x35\xb7\x89\x4e\xe7\x3a\x12\x0b\x65\x77\xd5\x9a\x4a\x57\xe7\x16\xd1\x7b\x5b\x86\x93\x4d\x87\xf5\xd8\xb1\x58\x5c\x2f\x5c\x6f\x34\x94\x2d\xfe\x96\xe3\x29\xb5\xe6\x95\xe7\x6c\x81\xad\x86\xb3\xd8\xeb\xe9\x49\x48\x71\xbc\x89\x55\x72\x0c\x72\x4a\xda\x88\xbc\x84\xb6\x25\x05\x01\x85\x62\xba\x73\x68\x3c\xaa\x1a\x00\xd0\xa3\xfc\x09\xe5\x89\x1c\xfd\xa6\x26\x08\x69\x22\x2c\x21\x2e\x44\x42\x6b\x48\xa1\xa1\x1b\x27\x9c\x1e\x24\xd1\x81\x7f\x77\x80\x0b\x14\xd5\xeb\x16\x37\x6b\x28\xd3\x40\x78\x5c\xf2\x9a\x4b\x0e\x76\x3b\x92\x50\x97\xe5\xe7\x23\x77\xe6\x42\x86\xfc\xe8\xa9\x9b\x44\xaf\x8c\xc3\x76\xaa\xb2\x32\x5a\x9e\xfc\x97\xd9\x6a\x95\x46\x77\x6c\xc5\xce\xd7\xcd\x37\x41\x33\x67\x7c\xfd\x93\xb9\xd9\xb6\x8c\x4b\xc0\x4f\xa6\x2e\x9d\x60\x03\x90\x8b\x7f\xb6\x04\x11\xb2\x6f\xd1\x27\xe5\x86\x48\x0e\x18\x83\x1d\x18\x8b\x24\x36\x6d\x8a\xef\xc3\x0d\xc7\x6e\x96\x9d\xde\x0e\x18\xbf\x96\xb0\x12\xa1\x8e\x1f\x0d\x16\x0d\xd0\x23\x0a\x76\xc6\xcd\x46\xd8\xd2\x32\x5c\xe8\x9d\xf0\x8f\x8d\xb6\x83\xe2\x6f\x59\xb5\x67\x9d\xdc\xab\x5b\xa1\xb5\xc4\xbd\x2a\x9d\xa0\x3d\xf9\x2d\x39\x5a\x90\x17\x0f\x52\xfd\x86\x5f\xb8\xae\xd8\x72\x3f\xfb\x68\x65\xeb\x50\x4a\xb9\x6e\xf7\x35\x25\x37\xfd\x54\x7d\x2e\xf3\x5e\x69\x7b\x96\xd6\xb6\xe5\xf4\xd9\xfb\x40\xc6\x73\x9e\x27\x47\x84\x5b\x66\x41\x8e\xd9\x4a\xa1\xc8\x82\x4c\x8f\x4e\xcb\xa8\xd9\xb0\xbb\x37\xac\x95\x9b\x5e\x3d\xee\x32\x34\x96\x5b\x11\x73\xb1\xad\x42\x54\xf6\xa7\x8a\xe9\x20\xc4\xee\x3d\xb0\x93\xed\x97\x3d\x25\xe0\x2e\x08\xe9\x1f\x1b\xe7\x4f\x0c\x6a\x09\x8d\x32\x19\xb4\xfb\x86\x2e\x26\x53\xd4\xca\xdf\x24\x6a\x74\x60\x90\xda\xba\x80\xe2\x96\x80\xc9\x83\x0b\xc7\x8f\xe9\xae\x6f\xf3\xbd\xfb\x68\x70\x95\x54\xd0\x2b\xe5\x76\x0f\x09\xf6\x0c\xb3\xc0\x5c\xca\x23\xee\x9d\x99\x9b\x21\x7d\x25\x28\x5e\xf1\xfe\xf1\xba\x75\xf7\x2a\x30\xf2\xf2\xfa\x66\x07\xd8\xff\x7c\x27\x51\x08\xf4\x56\x20\x74\x91\xfa\x97\xf9\xa6\x9c\xc3\xf6\xeb\x7b\x0f\xfd\xd4\xa8\xf9\xe6\x03\xe4\x9b\xf0\xf7\x05\x08\xfa\x56\x19\x45\xaa\x9f\xcf\x77\x8c\xaa\xd0\xf8\x87\xc1\xc9\xb1\x2f\x20\xed\x32\x85\xeb\xb4\xbe\xa3\x9f\xd9\x36\x54\xde\xbf\x78\xff\x6d\xbf\x0b\x9a\x11\xe0\x47\x87\xb0\xd6\xd8\x55\xaf\x5e\xbb\x84\x59\x34\x7d\x83\x56\x93\xbd\x2a\x94\x23\x04\x65\xcd\xfa\x3b\x19\x11\x25\x69\xa8\x07\xc4\x82\xfd\xfc\xd4\x3a\x52\x9e\x4c\xd4\xb8\x3a\x9e\x37\xba\x64\x94\x94\x49\x61\x8f\x02\x19\x1d\xbf\x56\xca\x44\x41\xef\x49\x79\x26\x2c\xeb\xb1\x41\xde\x8e\x9a\xc8\xc9\xd4\xa4\x75\x8c\xc0\xe2\x29\xb8\x36\xed\x1d\xa1\xd4\x49\x02\xe9\x84\x18\xc9\xfd\x76\x75\x12\x49\xa6\xe3\xd0\x02\x0b\x3b\x25\x80\x6b\x8a\x42\xa0\xc1\x67\x74\x1e\x14\xe8\xd3\x01\x76\xcc\x8c\x01\x63\x85\x9c\x90\x63\xea\x60\x5a\x1c\x01\xad\x04\x86\x23\x9a\x09\xa8\x13\xef\x07\x21\xac\x8b\x1d\xf6\x7f\x7e\x87\x53\xbd\x6a\xa6\xad\x58\x26\xfa\x5f\x27\x9a\x2b\xff\x16\xc9\xed\x20\x90\x3b\x85\xda\x60\x71\x00\x29\xdc\x9f\x12\xf7\x0a\x7e\xab\xbc\x12\xb4\xab\x05\x1a\xee\x60\x31\xfd\xbd\x1f\x98\xd8\xc7\xdd\x74\x60\xb9\x3a\xad\xf6\x20\xcb\x00\xf4\x1a\x48\xaf\x57\xb8\xc0\x5a\x6f\xd6\x8e\x32\x0e\x73\x38\xb6\xfe\x94\x78\x78\x7e\x6b\xa8\xc0\x1f\xb8\xd2\xc4\xed\xc3\x06\x67\x09\x7f\xa1\x75\x0c\xc7\x11\x85\xf5\x24\x83\x1f\x35\x27\xa2\x07\x39\xf8\xa3\xa3\x7c\x7d\x0c\x18\x0a\xf4\x71\x45\x57\x48\xe2\x0d\x10\x67\xca\x36\x24\xa6\x96\xcc\xd4\x11\xd9\x82\x04\x6c\xca\xd9\xc6\xd5\x14\xa3\x9a\x0c\xef\xe0\x95\x18\xe4\x5a\xdc\x35\x2d\xa9\x72\xec\x5e\x6f\x64\x25\xc6\x25\xcd\xe6\xa2\x09\x7c\x9f\xf2\x38\x19\xff\x2e\x94\xb4\x3c\x51\xd5\xf4\xb6\x37\xba\x7e\x2a\x98\x5d\x6d\x08\x30\x0b\x4c\xd7\x91\xbb\x66\x2b\xd5\x66\xfa\x65\x27\xfc\x59\x69\x92\x72\xba\xfd\xf0\xdb\xb5\x04\x44\xf4\xce\xc8\xf7\x17\x03\xa8\x0d\x18\x17\x12\x05\xe9\xed\xe4\x3c\xbf\xc0\xe7\x93\x16\xd4\x17\x3b\x83\xea\xb1\xe9\x1c\x99\xfe\x32\xd6\x23\xef\x8f\x38\x1e\xe3\xc5\x9a\x82\x9e\x95\x72\x73\x73\xe7\xec\xce\xea\x8c\xc2\xed\x56\x57\x9c\x51\x96\x78\xd9\xa6\xc3\xc3\xea\xa6\xa5\xd1\xec\xf2\x0f\x2d\x52\xb6\x87\x6d\xaa\x65\xe7\xc8\xd6\x88\x53\x16\x74\xd9\xba\xac\xf0\xf8\x45\xf0\xb2\x81\xe2\x41\x97\xa4\xfd\x23\xe0\x15\xf8\xcd\x30\xca\x8b\x6d\x6a\x30\x9d\xec\xce\xfe\xf9\xa7\xa6\x45\x90\xf4\x3e\xfe\x24\xf3\x10\x96\xab\x9f\xf9\x71\x3d\xf4\xe5\x71\xbb\x4d\x2c\x1c\xb7\xe7\xbd\xd8\x4a\xb7\x8d\x1f\xb1\x09\x22\x7f\x57\x62\x53\xa1\x2e\x8f\x98\x13\xbd\x9c\x08\x16\x83\x78\xfd\x42\x6b\xf8\xfd\x2d\xb6\x87\xad\x32\xdd\xeb\xdc\xdd\xee\xfa\xb6\xe5\x68\xcf\xa9\xdf\x57\x40\xa3\x96\x15\xa1\x81\xcc\xf7\x7b\xc4\x3a\xa8\x6e\x8b\x68\x77\x69\xcf\x60\x83\xc4\x20\x58\x26\x7c\x96\xf4\x85\xd2\x00\x1c\x06\x5d\x04\x53\x10\x7f\xd0\x99\x89\xca\xb0\x6b\x04\x74\x49\x6b\x6d\x6f\x4c\x3d\xae\x3d\xf9\xea\xbe\x6e\xcb\xde\x7e\xbe\xfc\x31\x88\xc3\x3d\xbc\xb4\x8f\xf5\x9a\xae\x10\x4f\xce\x86\x02\x2d\x41\x6f\x51\x6b\x9e\x5b\x57\x81\x71\x6b\xaa\x10\xfc\xf1\x62\x7d\xf8\xcd\x12\x0c\xdf\x70\xbb\xa7\xbd\x39\xff\x7e\x84\xc7\x6b\xdf\x29\x68\xab\x2e\xb7\xf2\x71\xf1\x55\xfc\x08\xf7\xb5\xcb\x9a\x0e\x71\x3f\x76\xf0\xc5\x95\x09\xda\x90\x71\xb0\xe5\x01\x56\x46\x47\x23\xd8\x8e\x5c\x30\x53\x1d\xe0\x75\x9e\x32\x44\xa5\x97\xea\x8a\x3a\xa4\xab\x89\x8e\x0a\xe4\x67\x3e\x9b\x5e\x2f\xf8\xa5\x45\xb8\xc6\xe8\x5a\xa9\xf6\x48\x79\x65\x34\xed\xf2\x79\x2e\x6f\x83\x28\x6c\x93\x93\x1b\xab\x5e\x4b\x44\xd9\x5a\x46\x43\xa4\xf1\xfc\xb5\x23\xa1\xd6\xe9\x7b\x6e\xa6\xca\x49\x54\x76\xc5\xf7\xb4\x64\x4d\x16\xd0\xb2\xc8\xff\x02\x66\x37\xc3\xc1\xba\x3c\x30\xac\x9c\xcc\x91\x46\x6c\xa4\x1a\x10\xb3\xe7\x59\x1f\x08\x39\x6d\x81\x4d\x22\xc1\x17\x2e\x60\x12\xfc\xdb\xa2\x8a\x0b\xf8\xc5\x38\x06\xcd\x0f\x3e\x10\xf2\x4b\x3a\x54\x38\x54\xe2\x5a\x3f\xad\x5d\xa8\x29\x14\x59\x81\x2e\xe3\x17\xa4\xb2\xc2\xa0\x12\xf5\xcf\xc9\xc3\xdb\x3a\x61\x7a\xb9\x9f\x4e\xa4\x7f\x47\x77\xa0\xaf\xee\xa6\x37\x2c\x48\x93\x46\x8c\xd9\x3b\xa3\x79\x94\x2d\x36\x4a\xd3\xd3\xc9\x7c\x46\x35\xb4\x3f\xff\xd4\x57\x02\xe0\xcb\xc8\x3d\xa7\x94\xd3\xb8\xe0\xe7\xe0\xb5\x4c\x7e\x88\xaf\xc9\xea\x32\xfc\xa7\xdf\xb1\xa6\x9d\x54\xcc\x64\x3b\x6e\x6a\xed\xf8\x43\xd3\xf9\xe5\x2f\x27\xe7\x8e\x29\xb0\x30\xb4\x2a\xfe\x92\x27\x96\x4b\x4d\xb5\x5c\x6d\x7c\xa8\x9b\xf7\x13\x47\x04\x7a\xdb\xdb\xbd\x3e\x7f\x7d\xf7\x07\x8c\x6b\xec\xa8\xba\xaf\x88\x6a\x2c\x2c\xb9\x5f\x1e\x6d\x96\xbd\xcf\x05\xe1\x69\x70\xcc\x84\xfd\x5e\x43\x27\x67\x12\xec\xd8\xd0\x4d\xcb\xfb\x37\xd5\x38\xd8\x74\x59\x30\xcb\x70\x05\x16\x08\x4f\xed\x9e\x0e\xb9\xe0\xdf\x1a\xad\xed\x8e\x63\x63\x53\x18\x10\x3c\x0a\xf0\x6a\xec\xa8\xa2\x56\x1c\x71\xa9\xae\xc8\x8c\xae\xf5\xf1\x84\x60\xd2\xa2\x4b\xaa\xfd\xa1\x4d\x85\x21\x49\x14\x7f\xa8\xfe\x08\x63\x26\x5e\x8f\x78\x45\x07\xe0\x06\x6d\x58\x1e\x41\xbb\x4f\xba\x89\xa1\x20\xfc\xbd\x1d\x22\xa4\xf6\x91\x99\x48\x0f\xd0\x98\xda\x52\x8f\xd5\x2a\x95\x29\x7e\xc1\xe6\xad\xef\x3a\xd8\x36\x6c\x65\x52\xfd\xb4\xa9\xaa\x54\x3a\x8f\xe2\x0e\x5d\x52\x86\x27\x5a\x45\x7e\x1b\xd7\x5b\x11\xbb\x62\x38\x6e\x1b\xcb\x98\x1a\xd3\x4e\x67\x8e\xf1\x11\xfd\x93\x5b\x5d\x95\xd5\x69\x87\xf6\x91\x7b\xaf\x20\xc9\xe5\xc1\x1c\xea\xaa\x8d\xe0\xac\x3f\x09\x67\x19\x9e\x57\xe4\x30\x9e\x5f\x59\xdd\xfa\x66\xc8\xf4\xa3\xc8\x73\xf9\xd0\x4d\x13\x68\x62\xbd\x25\x1d\x72\x79\x90\xa3\x89\xe1\xf8\x50\x82\xfd\xa9\x21\xd2\x42\xf2\x44\xce\x8d\x88\xc0\x9c\x26\x71\x13\x50\xdf\xcd\x53\x12\xa8\x50\xe9\x3a\xc4\xd7\x85\xf7\xa8\xc0\xe1\x67\xf7\x9c\xe6\x37\x7c\xef\x35\x9b\x7f\x10\x10\x9a\xa0\xaf\xfb\x23\xfc\xcb\xf1\xd6\xc5\x60\xdb\x2e\x1f\xd7\x45\x9b\xce\x9e\x00\x59\x2a\x59\xe9\xc7\x60\x55\xb9\x47\x8d\x30\x96\x32\xdc\xc6\x9a\xbd\xea\x52\x6d\x7e\x42\xe6\x11\xbd\x63\xd2\x0c\xb4\x11\xc1\xa5\xf9\xd7\xde\xf9\x01\x9c\x88\xdc\x2d\x7a\x8d\xee\x54\xad\x68\x4d\x6f\xed\x2b\xb8\xef\xa4\xf8\x6b\xd3\xca\x99\x74\xed\xe7\xed\x4d\xb5\x9f\x77\x8c\x96\xcf\x38\x87\x01\xc3\xdb\xe2\xe0\xf2\xec\xaa\x31\x56\x8d\x9c\xe5\x2c\x25\x20\xa1\xbd\x58\xd8\xea\xc9\xd5\x83\xa9\x31\x54\x9b\x40\x59\xdc\x66\x48\x98\x71\xf1\xce\xe6\xec\xe0\xd6\xcf\xb7\xe1\xf7\x71\xc9\xb0\xd1\x93\xb4\x0f\x73\xf2\x8b\xa8\x2f\xe7\xe0\x5b\xba\x1b\x6a\xd9\xa1\x34\x1e\xa1\xfc\xf5\xfa\xd9\xe9\xf2\x85\xf7\xf5\x0b\xb4\xe2\x7d\x22\x08\x3a\x80\xd6\x57\xda\xe4\x87\x74\xa0\x11\xa8\xe0\x3c\xbb\x06\x38\x74\x51\x10\x24\x95\x69\x68\xa0\xae\xef\x9f\x27\x14\xde\x60\x31\x29\x03\xea\x07\x72\x81\x11\x18\xa4\x8b\xcb\x71\xb6\x94\x94\x03\x6c\x15\x95\x55\xc8\x5c\x8d\x28\xbc\x36\xc0\xb9\x7f\xd9\xad\x30\x8e\x3e\x83\xc0\xca\xeb\x17\xfc\x4f\xb3\xef\xa0\xfa\x8e\x4b\x28\x7b\x48\x9f\x50\x0d\xe0\x86\x5d\xfb\xd3\xc3\x5b\xfb\x00\xee\x95\x13\xe1\x83\x6f\x4d\x80\x41\xbc\x32\xc9\x2c\xdd\xef\x7d\x54\x3e\x47\x68\x5a\xdb\x1d\x55\x50\x7d\x70\x73\xfc\x23\xa9\x0a\x91\x93\x3a\xce\x06\xb9\x51\x1e\xbe\x37\xbc\x2f\x09\x00\x19\x21\xa5\xd9\x00\xf1\x27\x40\xc7\xb2\xc5\x74\xe6\x26\xa8\xf0\x36\x5c\x62\xe6\x96\x4d\x2e\x2e\xc9\x92\xf9\xc3\x21\x48\x26\x74\x31\xaf\x61\x61\x4e\x1f\x9e\x76\xf2\x0b\xc5\x38\xc7\x62\x65\x43\xef\x58\xe1\x9a\xc7\xdd\x3e\x77\x4c\x73\xbe\xa7\x7a\x55\x7d\x59\x61\x62\xea\x62\xb3\x85\x67\x1e\xff\xd6\xf1\x79\x6d\xdf\x08\xaf\x45\x99\xcf\x75\xff\x8a\xc3\x6d\xfb\x23\xcd\xef\x7c\x68\xb6\xf5\xf3\x07\x2c\xea\xec\xb5\x91\x13\x43\xc7\x26\xc3\x14\x1f\xe6\x0a\x3b\xaa\x08\x20\x58\xb4\xbb\x54\xe8\x84\xba\x4d\x79\x28\x69\x88\xba\x0d\x55\x9e\xf5\xba\xe1\x34\xed\x70\x7e\x68\x03\x3a\xdd\x9a\x18\x7d\x89\x65\x6c\x6d\xc2\x2a\x27\x13\x96\x86\xc2\xac\x0e\x4f\x80\x06\xc6\x98\x67\x54\xd4\x8f\x0b\x0e\xcc\x40\x03\x75\xd9\x26\xf4\x85\xf9\x8d\xc1\xaa\x52\xc6\xf3\x3f\x58\x2a\x8b\x89\x7f\xa1\x1b\x28\x32\x92\x20\x79\x46\x31\xe5\x82\x2e\x63\x9b\xa0\xdb\xeb\xa3\x69\x9f\x46\xa4\x35\x3c\xe4\x7f\x65\xa4\x57\x5b\x3b\x08\x67\xd7\x7b\x68\xe9\x55\xab\x34\x3d\xcf\xe4\x77\xb5\x3d\xbd\x75\x4f\x22\xd8\xc1\x15\x96\x6f\x71\x26\x8e\x3c\xfb\x3a\xb5\x30\xe6\x24\x3d\xbd\x9c\x0c\x55\x7f\x0d\xdb\x52\xf4\x77\x27\x20\x66\x16\x29\x83\x1c\xe6\xed\xb2\xb9\x23\xa1\x81\x52\x64\xb8\xb1\x28\xea\xc4\x71\x43\x81\x84\x8f\x54\x09\xf6\xc2\x47\xe2\x70\x96\x5b\xfb\x83\x64\x9b\x86\x3d\xfe\xfd\x91\x22\xbb\x41\x60\xb3\x87\x48\x03\x12\xcc\x77\xb8\xc9\xb3\x6f\x52\xb9\xa6\x59\x95\x93\x20\xd5\xb5\x5c\xf2\xee\xa9\xf1\x1c\xfb\xb2\x53\xcf\x3e\x6d\xdf\xb6\x65\xb3\x54\xb0\xed\xba\xcd\x8e\x33\xc6\xee\x2e\xfb\xc4\xec\xe3\xe1\x12\xd1\xfc\x7e\x14\x21\xc8\x7b\xe4\x8c\xa9\xba\x70\xb3\x66\x0f\xce\x60\xcf\xc1\xc8\xbe\x01\x83\x9d\x07\xc6\x16\x88\x2a\x46\x56\x9d\x0f\x33\xfa\x02\xee\x9f\x24\x3c\x0d\xe0\xcb\x6f\x8a\x81\xd7\xad\xd2\x91\x36\x9d\xfd\xc6\x2b\x1a\xfe\xf3\x84\x19\x9c\xb8\xba\x01\x81\x3d\xd3\x66\xe9\x41\x8d\xc4\x70\x59\xee\x72\xaa\xb0\xe8\x4d\xa9\x45\x2d\xe5\x22\x15\xe1\x4c\xc9\x30\x8d\x03\x89\x8c\xdf\x9d\x1c\xfb\xae\xf1\xf3\xc6\xff\xc9\x5c\xda\x80\xdf\x10\x47\x09\x2c\xa8\x8c\x83\x36\x3f\x0b\x5b\xd0\x04\x29\x89\x59\x22\x75\x54\x28\xc7\xad\x80\x8b\xb3\x11\x16\xb4\x63\xd1\x7c\x06\xcb\xd8\x74\x44\x7d\x27\x20\x67\x30\x2b\x49\x59\xec\xaf\x82\xe5\xdf\x60\xb7\x76\xc5\xbd\xec\x5f\x49\x1c\xb5\x9e\x4e\x77\x03\xc9\xd3\x1c\x2e\x86\x77\x93\x57\x5a\x14\x15\x35\x03\xbc\x4d\x04\x19\xb6\x13\x1f\x27\xfb\x59\x4d\x61\x3d\xfc\x3a\xbc\x9f\x8f\xfd\x68\x5c\x02\xef\x92\xa6\xf3\x25\x3c\x6f\x29\x8c\x0a\xc9\xc2\x90\x2f\xb6\x19\xdb\xa5\x6b\xe8\xc4\x49\x46\x6d\xf0\x76\x6a\x82\x59\x25\x22\xf0\xbd\x13\xe0\xf1\xe3\xaf\xfa\x6c\x5b\xb1\x3b\x81\x2d\x60\x82\xdc\xad\xac\x47\xda\x51\x52\x95\x4a\x87\x25\xbf\x1f\xe3\x63\x39\x49\x5c\x7c\x89\x50\x74\x56\x47\x6a\x4c\xb4\x56\x06\x07\x13\x4e\xe0\x71\x0f\x52\x30\x70\x66\xcb\xa3\x04\xf0\xa6\x7e\x2a\xd5\x5f\x14\x22\x8d\xe0\x3d\xf1\x72\x35\x9d\x46\x10\xb0\x6d\x10\x45\x76\x32\x35\xb4\x75\x77\x0a\xc2\x80\x95\x3d\x7e\xbd\x3d\xc6\xc2\x61\x19\x37\x0b\x16\xbd\x8c\x12\xf9\xfc\xdd\xad\xb7\x61\x63\xcb\xbc\x26\x78\x26\x1f\x5b\xf0\xf4\x2b\xbd\x4e\x22\x52\xd4\xde\xf0\x3a\xc5\x72\x17\x70\x05\xd0\x44\x29\x67\xe7\x02\x79\x13\xeb\x4d\xf2\x84\x7a\x7e\x45\xa0\x18\x29\x8f\x98\x13\x76\xd1\xe9\x85\xe8\x47\x49\xc6\x42\xdf\x71\x56\x62\x28\x0a\x0c\x3e\xcc\x61\x52\x9e\xaa\x2e\x00\xa0\xb0\x1d\x14\x58\x35\x4a\x4a\xfd\xd7\x2e\x6b\x4d\x6d\x62\x32\x2e\xb7\xcc\x38\xf2\x01\x6b\xee\x21\xc6\xc4\xe6\x70\x4a\xce\x32\x42\x85\xb1\xa9\x0a\x77\x11\x52\xd4\xa8\xc8\xc3\x13\x1b\x4a\x6e\x9d\x1d\xef\xea\x9f\x0b\xd9\x99\xb2\xaa\xa9\x2e\xcf\xd9\x3c\x56\x76\x7a\x4d\x67\xb1\x6b\x9b\x61\xcf\xea\x04\x98\xfb\x4f\xfd\xa3\x69\x1d\x76\xe2\xb4\xed\x85\xd3\xb2\xb1\xb3\xd8\x5c\xae\xad\x5d\x5b\x91\x8f\x6e\x36\xd5\x7c\x1b\xb3\x5e\x9d\xbe\x57\x35\x38\x66\x1e\x21\x4e\x57\x23\x5b\x6f\x85\x9b\x04\x2d\xcb\x57\x9c\x81\xce\x74\xef\x62\x95\x15\x62\xcf\x4d\x8d\x17\xc5\x8a\xff\x74\xb7\x1e\xd8\x0c\xe9\xc5\xa4\x97\x55\xc8\x83\x61\xc7\x42\x0a\x5d\x1c\x47\x46\x88\x4d\x71\x78\x13\x20\x45\x5d\xec\x08\x3a\x12\x6b\x38\x68\x4e\x89\x7c\xef\xf2\x40\xde\xa8\x88\xc8\x17\x11\x67\xfc\xf2\x41\x6c\x82\x4c\xd5\x07\x75\xde\x71\x9e\x41\xad\x8f\x75\x89\x35\xef\x4a\x77\x88\x5f\x05\x92\x78\xc0\xc1\x64\xd0\xd6\x92\xe1\x79\xeb\xaf\x59\x9f\x59\xd4\x1d\x3d\xb7\xd1\x4e\x6c\xce\x1a\x88\x1c\x7a\xc4\x7b\x76\x96\x65\xb8\x18\xc5\x2d\x42\xa1\x95\x7a\x64\x0e\xed\x91\xeb\x09\xda\xa2\x07\x8b\x40\x0a\x0d\xcb\x01\x95\xc3\xdf\xe5\xe6\xab\x6b\xe2\xa3\xc6\x89\xef\x7c\x85\xb9\xdf\x10\xf7\x14\x6f\x2c\xd9\xdb\x20\xf4\xe1\x71\xc8\xeb\x32\xfe\x4c\x15\xfc\xa7\x76\x0d\xcc\xd8\x86\xad\x23\x87\xc8\x70\x8a\x91\x87\x31\xa5\x14\x8d\x18\x55\x55\x88\xaf\x3e\xac\x9f\xa7\x45\xad\x8e\x11\x23\x8b\xa4\x63\xdd\xe4\x8d\x38\x79\x68\xed\x0b\x9a\xa2\x0b\x16\xf9\x81\x9c\x5f\x2c\x28\x15\xe0\x2f\xfc\x2f\x12\x7a\xe2\xc2\x9d\x8f\x25\xd7\x13\x32\xb9\x1d\x76\xf8\x96\x3f\xd7\x96\x5b\xdd\x7c\xca\xeb\x2c\x96\x77\x9e\x1a\xbc\x8c\x3e\x09\x10\x64\xab\x39\x7a\x98\x1b\x8e\x17\xf1\xb4\x5a\xe3\xa2\xac\xc2\xac\xce\xc4\x2b\x1e\x5f\x11\x3a\xc4\x5c\x7d\x1f\x33\x24\xee\xbc\x08\x10\x4c\x5c\x3d\x4d\xad\x98\xda\x69\x22\x33\xdc\xfa\x91\x54\xb7\x2f\xee\xb6\xb8\xd9\x1c\xdf\x71\xe3\x8c\xf6\x12\xf8\xea\x4a\xba\x64\x16\x17\xcd\x6f\x52\x3b\xee\xa2\xd0\xce\x6d\xb1\x09\x3a\x9a\x26\xdc\xce\x17\x7a\xb3\x93\x02\x66\x52\xc2\x38\x5a\xd7\x02\x8b\x5f\xa7\x14\x22\xd8\x14\x6c\xa7\x0b\x9f\x29\x59\x3d\x32\x54\x08\xbd\x56\x2e\xe7\x4a\xad\x98\x9d\x7f\x6e\x1e\xc5\xb7\xfc\x52\x17\xf8\xf3\xd2\x93\xde\x53\xff\x0d\xb9\xd0\x2b\x76\x0e\x89\x23\x01\x06\x71\x36\xe4\xd0\x3a\x67\xdb\x72\x3f\xfe\xa2\x44\x72\xf0\x17\x16\xde\xa4\x66\x55\x4b\xfb\x82\xed\x58\x4a\xfc\x65\xbe\x58\x6d\xe5\x2b\x10\xb6\x50\xd3\xa6\x8a\x8a\xaa\x2c\x4f\x45\x15\x4e\xbc\xcb\x9e\x80\x51\x3f\xcd\xbe\x6f\x79\x17\x71\x4b\x6d\x5d\x48\xbc\x51\x27\x31\xa2\x58\x92\x99\x69\xf4\x93\x11\x60\x86\xa7\x08\xd0\xae\xc1\x86\x80\x15\x0d\x64\x8e\x1b\x53\xcc\x53\x66\xa7\x8e\xb8\x6c\x64\x5d\x5e\x56\xca\xfd\xa1\x67\xec\x88\xed\x84\x3f\xe4\x0c\x0b\xe7\x88\x35\x0e\xd6\x88\x9b\xa4\x87\x8e\x15\x81\x66\xa3\xb1\xf7\xe7\x8e\x3c\xc8\x58\x75\xbb\xb3\xc3\x95\xd4\x96\x7d\x98\xd2\xd2\xcc\x36\x27\x82\x23\x03\x2c\x25\x0b\x5f\xba\x77\x63\x25\xcd\xbb\xd4\x62\x9a\xcc\xa8\x10\xe9\xda\xc2\x72\xed\xfe\xe6\x64\x85\xcc\x2b\x43\xec\x3d\xb6\xb3\xd9\xe5\xdc\xca\xed\xf1\x71\x53\x34\x4e\xfc\x6d\x87\xe3\xd8\x95\x47\x4d\x97\x00\x2f\xc2\x56\xf3\x30\x23\xd3\x26\x02\xdd\x33\x13\xbf\x70\x8a\x42\xde\xc0\x66\x7d\xe1\x80\x05\x4a\x4b\x13\x91\x9f\x85\xeb\xf5\x21\x40\x24\x10\x5a\xca\x6c\x7a\x9b\x85\xd1\x7e\xfa\x75\xb5\xed\xfe\x19\x11\x7e\xc3\x2b\x27\x97\x12\xe3\x0d\xf7\x1e\xbf\xde\xe9\x67\x19\x28\x43\x63\x2e\xdb\x2c\x36\xa7\x7c\x18\x31\x4d\x61\x1b\x23\xf5\x70\xc3\x09\x6c\x09\x17\xa1\x01\xd7\x4f\x45\x41\xd5\x58\x14\xfd\x3e\x5c\xff\x99\x5f\x3a\xc1\x82\x95\x68\x42\x65\x37\x3e\xa2\x00\x28\x0e\x9c\x49\x92\x9a\xf9\x94\x53\xa7\xb2\x02\x92\x3a\x7c\x33\x83\x25\x74\x0a\x2b\x1e\x61\xac\xe5\x05\x3b\x40\x33\x6e\xa3\xf2\x44\xa3\x0f\x21\x62\x67\xde\x44\x53\x8e\xa1\x43\x6d\x61\xaa\x95\xc5\xda\x41\x6b\x16\x9a\xf8\xd3\x58\x23\x56\xbf\xa1\xc1\x95\xd7\xd0\xfd\xee\x56\xab\x9f\xad\x7e\xc9\x6c\xdc\xd3\x95\xc2\x30\x53\x95\x8b\xe5\x6f\x6b\x26\xdc\x2f\xc2\xa8\x3d\x4c\xad\x26\x3e\x8e\xe8\xee\xe3\x3b\x0b\xeb\x41\xae\xe2\x26\x9f\x2f\x1b\x2f\xef\x47\xa6\x5c\x9e\xf1\x65\x3d\x3b\x66\x36\x1b\xf3\x3d\xdd\x67\xf8\x3f\x3a\xa5\x73\x78\x2a\x78\x8e\x91\x97\x9a\x94\x4d\xef\xd2\xa9\xbd\x2d\xbd\x9c\xa6\xe9\x3e\x23\x90\x6e\x7a\x77\x3a\x6f\x28\xc9\xfd\x9b\x3b\x6d\xd2\x02\xa0\x5c\xca\x04\x3e\xa7\xe2\x22\x04\x9f\x18\x54\xbe\x3b\xcb\x53\x76\xbd\x1a\xa6\x39\xf5\x40\x0a\xb3\xb0\xc5\x81\x8d\x05\x75\x06\x18\x5e\x4a\x89\x25\x35\x9b\x48\xcb\x44\xf1\x72\x98\x9e\x44\xb1\xfe\xe9\xda\xe8\x44\x4f\x7a\x67\x82\x45\x70\x03\x72\x2e\x08\xa0\xcf\x28\x62\x58\x27\xdc\x1a\xf4\xdc\x4f\x83\x0c\xc1\xd1\xb3\x13\xe2\x18\x82\x1e\xa1\x32\x46\x9c\x42\xc6\x4c\xbd\x0e\x02\x97\x0c\xab\xca\x05\x83\x6e\xa1\x10\x8b\x71\x17\xf1\x13\x4d\xf9\xbb\x85\x30\xb9\x3d\xf2\x68\xed\x72\xf6\x4d\xa1\x57\xae\x44\xd6\x6a\x46\x61\x5b\xbe\xf4\xe2\x0e\x95\x03\x9a\xde\x01\x2d\x25\x39\x13\xfa\xa2\x46\xdb\xe6\x2f\x0c\x28\x71\x85\x3e\x4e\x41\x0a\x83\x07\xc0\x17\x8b\x4a\x84\x43\x40\xde\x4d\x42\xb0\x5b\x41\xf0\xdd\x7d\x39\x74\x14\x5a\xd8\x61\x76\xe4\x6a\x99\x5d\x7c\x76\xb6\xe4\x52\x66\x2e\x57\xf7\xc9\x35\xfb\x74\x4c\x31\x8d\x6f\x6e\xc1\x65\x6f\x9a\x88\x1f\x61\x97\xe5\x61\x9f\xb3\xd0\x2b\x1b\xcc\xed\xbc\x31\x7d\x54\xca\xd2\x58\x9c\x91\xf7\xbb\x77\x91\x86\x3d\xe8\x55\xf9\xdf\x6e\xd4\xdc\x34\x1c\xb9\xe9\x44\xa9\xe4\x4f\xcf\xdc\x49\xf7\xac\xe7\x52\x8b\x23\x26\x53\x81\x5b\xca\xb7\xee\x72\xcc\x28\x03\xcc\x65\x3b\x25\x1a\xeb\xdb\xb7\xe7\xc1\x6b\x40\xae\x63\x6d\x29\x04\x14\x8d\x4e\xce\x6c\x5c\x84\xb8\xb1\x66\xd2\xe5\xc7\xb2\xb2\x6e\xbc\x9e\x6e\x85\x6a\x6a\xca\x31\x56\x72\xa6\xe3\xad\x9a\x70\xd2\xa5\x89\xc9\x65\x52\xfe\x4d\x3b\x7b\x69\x83\x8d\x8e\xba\x9e\xad\xc2\x31\x36\xcd\xc3\x9b\x54\x92\xa6\x4d\x05\x38\x70\x9b\x21\x8f\x17\x25\xc4\xad\x2e\xc4\x82\x1c\x65\xf5\x02\x24\x36\x84\x83\xd2\xad\xd6\x11\x4f\xa6\x48\x95\x58\x70\xd1\xeb\x4d\x0d\x67\xfe\x19\x13\x17\x8f\xf4\x95\x70\xdb\x13\x70\x98\xee\xed\x16\x10\x5a\xfe\xd8\x9f\xc0\x76\x7a\x23\xbb\x62\xdc\x78\x45\xd1\xbe\x5f\xe5\xad\x6d\x0b\x93\x7b\x00\xee\xc1\xdf\xe9\x14\xa0\xe5\x3a\x89\x93\xdd\x61\x4c\x75\xe2\x2b\x1e\xfe\x2d\xd0\x0e\x17\xff\xaa\xd0\x94\x48\x8d\x88\x66\x30\x47\x39\xd6\x32\xfe\x64\xd8\xbe\x15\xdd\x0c\x83\x51\x89\x37\x9b\xaa\x8f\xf8\x3b\x4f\x83\x0d\x1d\x3e\x1e\x2c\xa9\xde\x18\x72\xa7\x06\x76\x2f\x72\x07\x4e\x0b\xe3\xc5\x7b\x65\x7f\x42\x67\xb6\xfc\x34\x50\x2f\xfe\x10\x50\xd3\x0b\x9f\x25\x82\xb4\x01\x8e\x63\xe7\x97\x33\xb9\xa9\x2e\xa7\xdb\x7a\xbe\xb6\xfa\x37\xe5\x08\x73\xb9\x55\x9f\x0c\xf3\xc1\x84\xf9\xc8\x0e\x94\x61\x05\x4f\xb6\x1f\x39\x0f\x94\x0a\x2a\xb9\x92\x9a\x04\x49\xa7\xb9\x2a\x59\x06\xb2\x0e\xbe\x56\x92\xcf\x9b\xc7\xe3\x3d\x70\x7b\x64\x94\x31\x2b\x57\xcd\xa3\xb9\x11\xcf\xa5\xda\x99\x85\xa4\x76\x82\xab\xf1\xac\xca\x3e\xff\x2c\x3a\x56\xfa\x6f\xd5\x78\x5f\x18\x83\x5a\xa6\x52\x20\x93\x70\x53\x7e\xb4\xb7\xb8\x83\xc6\xa5\x56\x4e\xce\x64\xd3\x64\x87\x17\x8d\x26\x69\x84\xdc\xf5\x4d\xce\xd1\x4c\xf3\xee\xcc\x7a\xbd\xbd\x0e\xb1\x2e\x47\x70\x8b\x07\xfe\x4f\x58\x17\x8d\xa1\x3d\x7d\xbd\xd6\x32\xaa\x0d\xa2\x2a\xbc\x99\x72\x28\xb5\x84\x60\x75\x49\xa1\x49\xf7\xc2\x59\x2c\x46\xb5\x88\x6e\x47\xff\x13\x36\x76\x9d\x9a\xe5\x78\xd6\x8a\xf8\x65\xab\x99\x79\xdf\xd9\x08\x40\x7b\xc6\x0a\x3b\x0f\x26\x24\x3f\xf5\xfd\x41\xe7\xc9\xe5\xca\x68\x0d\xe0\x15\x6e\x5d\x95\xd4\x46\x68\xd4\xe7\xcd\xa8\x09\x06\x2a\x1a\x5e\xe2\xc5\x77\x22\xee\x8c\x69\xf7\x14\x59\x01\x25\x45\xd6\x5e\xce\xd0\xd1\x6d\x25\xaa\xcd\x3d\x06\x50\xe2\x3a\xdd\x3d\x1b\xa1\xb7\x6a\x88\x35\xfc\x5f\xdd\x9a\xee\xa7\xcf\xa4\xff\x24\xa8\xbc\x4a\x36\x58\xbc\x65\xaf\x23\x78\xda\x4b\x1f\x15\x86\xc9\x4d\x6a\x08\xe8\x32\x35\xdb\xe4\xa1\x21\x9c\x3a\xad\x68\xb2\xf0\x9e\x98\x6e\xf6\xce\xe9\x0e\x6d\x39\x96\x07\xba\x91\x88\xdd\xb1\x80\x23\x8e\xce\xa1\x04\x4f\x5e\xa0\xa0\x4e\x71\x22\x11\x2e\x51\xb1\x03\x24\x29\x01\x57\xb9\x9c\x73\x26\xcf\xd0\xb9\xcb\x89\xe1\x3a\x4e\xec\xb9\x87\x17\x4a\x47\x62\xb6\xf3\x3b\xfd\xb4\xdc\xec\x89\x92\xff\xbc\xe0\xfa\x74\x79\x64\x8a\x33\x5d\x37\xaf\xc4\x13\xc7\x13\x04\x3e\x72\x1b\x5e\xbf\x54\xa1\xae\xbd\x2a\xf6\x60\x59\x33\xf1\x82\x34\x82\xbe\xda\x59\x64\x9b\x1a\x61\x4e\x9f\x59\x5d\x13\x37\x6f\xd8\x9f\x51\x9e\xc1\x11\xa4\x04\xb5\x4e\x10\x81\x5b\xd7\x1f\x99\x69\x41\x7c\xf3\xa0\xfa\xc8\x90\x7f\x51\x74\x31\x1d\x59\x4a\x5f\x95\x68\x52\xcf\x19\x07\xe0\xa4\xda\x0a\xce\x4b\xb2\x2f\x03\x66\x1c\xd7\xb4\x55\x40\xa4\x21\x9a\x95\x6c\xfc\x63\x5a\x98\xb5\x90\xf9\x72\x74\xb1\xed\x31\x93\x11\x08\xcf\x52\xdf\xf7\x64\x7f\x4a\xaf\x20\x57\x3a\x2d\xb4\x55\x40\x9e\x45\x23\x69\x8d\x67\x17\x5f\x64\x03\xff\xd6\x67\x98\x28\x32\xf9\x10\x8c\x89\x29\xdb\x0d\xf3\x73\x1e\x68\x34\x65\xa5\x9e\xd9\xb8\xaa\x29\x26\x7d\xf7\x31\x5a\xa5\x63\x62\x49\xc2\xce\xfb\xf8\x40\x87\x64\x84\xf5\x4c\x74\x51\x9c\x6b\x95\x21\x20\xa9\xdc\x80\xe5\xa2\x14\x6d\x53\xa1\x87\xb7\xe7\x8f\x1a\xc1\x0c\xaf\x03\x05\xb5\xe7\x7c\x94\x16\xaf\x17\x05\xb5\xe5\x26\xb2\x9c\x63\xb6\x1a\xf5\xf4\x9f\x67\x0b\xf1\x85\xe3\x18\x2e\x16\x37\x32\xe7\x5b\x06\xb5\x6e\xee\x76\x3f\x5f\x19\x0f\x1e\x11\x2f\x6d\x5c\x06\x7c\x42\x42\xba\x5b\x8d\x86\x08\x9f\x31\x31\x3c\xf6\x5d\x23\x41\xf8\xc1\xa1\x1c\x70\x84\x5f\x58\x39\x9d\x2c\x08\x1e\xf5\x38\xc1\xf8\x01\x50\xfe\x70\x10\xff\xb8\xbf\x7a\x60\x7f\x6e\xbc\x52\x89\xdf\x64\x5f\x7c\xf5\x43\x1a\x34\x60\x5b\x41\xbf\xc8\xac\x01\xff\xac\x4a\x2a\x25\xc1\x1e\x94\xf8\x7f\x1a\x10\x5c\x73\xbe\x1e\x9d\xba\xd7\xe7\xe1\x8d\xbe\xd2\x42\x5e\x4e\xd7\x05\xdb\xa1\xd7\x94\x9f\x72\xbd\x36\x4a\x02\x6b\xda\x00\xf6\x49\x8b\xa1\x00\x2e\x44\xd7\x50\xb7\xcc\x7b\x75\xe1\xe7\x17\xca\x15\xb8\xff\xb5\xdb\x55\x22\xa4\x8f\xb3\x86\x40\xe8\xc3\x7b\xf8\x13\x18\x74\xe7\xe4\xe4\xae\xea\xc5\xf1\x79\x5e\xc9\xfa\x74\x8a\x22\x79\x34\x3c\x33\xad\x71\x3a\xfa\x36\x71\xb1\x1d\x84\x00\x7e\x52\x22\xd1\x90\xc9\xe5\x09\x56\x41\x53\xf9\x11\xed\x24\x19\x3d\x43\x06\xea\x58\xe1\x80\x67\x4f\x9e\x10\xa8\x8b\x37\xb5\x4a\xbc\x06\x6c\xa6\x8b\x75\xce\xb4\x0e\xee\x3d\x1e\xe4\x9a\x2c\x8a\x1b\x4a\x30\xf7\x42\xe7\xf1\xed\xa2\x5a\xf6\x96\x86\xda\x6c\x77\xfb\xdf\xa2\x1f\x70\xbf\xb2\x34\x2e\x1a\x34\x3f\xc9\x35\x34\xc8\x7d\x2b\x17\xd5\xb2\x22\x10\x87\x28\xd7\x0a\x4d\x85\x0b\xba\xe6\x57\xd7\xab\x9b\xc5\xc7\x4b\xaf\x75\x8f\x9f\x64\x09\x75\xe6\x79\x3b\x0c\xaa\xaa\xca\xaa\x48\xcd\xc3\xfe\x84\x10\x36\x88\x19\x3d\xa1\x63\x26\xe3\x39\x39\xc5\x1c\x7e\xec\x77\x80\xf4\x3e\xa3\x10\xe9\x81\x38\x0a\xd2\x6a\xd6\x06\xd2\x1e\x45\x11\x98\xc0\xaa\xb2\xe7\x07\xc3\x0a\x2a\xfe\x51\x96\x20\xa1\x3f\xeb\x2f\x98\x13\xe0\xe1\xe1\xa1\xe4\x11\x5f\xd3\x98\x1f\xd1\xb4\xc9\xbb\x68\x04\xc1\xa5\x1a\xc9\x77\x69\x52\x18\xdc\x79\x4f\x24\xea\x6a\xc9\x80\xde\xf4\x0b\x34\xfd\x7a\xdb\xf2\x62\x64\x79\x9d\x85\x59\xe9\xf3\xf9\xc3\xf7\xee\xa4\x99\xd7\x0c\x12\x9b\xbf\x71\xf0\x7d\x63\xb5\x2f\x79\x33\xed\x8e\xd1\x8d\x56\x94\xd4\xce\x4e\x2e\x7c\xbe\x46\x0c\xff\xab\x2c\x48\x01\x71\x57\x52\x7d\xb0\xcb\x09\xf7\x2d\xef\x9a\xf5\x19\xb1\x8a\x7b\x32\xfb\x78\xaa\x5f\xa7\x0e\x72\x89\x77\xaa\x0b\xa4\x3f\xce\x69\xfb\xb8\xfb\x9b\x13\xde\xc9\x0e\xd0\x8d\x39\xee\x7e\x80\xe6\x1f\xf8\xc2\x45\x07\xa1\x84\x0e\x3c\x35\x97\x0b\x40\xac\x2f\x9b\x33\xd7\x67\xcc\xac\x11\xf4\x87\x0d\x78\xb9\xd4\x60\x08\x47\xd4\x50\x55\xb7\x4f\x55\xde\x4a\x86\x76\xc3\x29\xd1\xa5\x09\x95\x6d\x8a\x07\xd7\xa1\x4f\x5d\xab\x57\x9e\x29\x2e\x51\x36\xa2\xf9\x14\x6d\xa1\x81\x9b\xed\x15\x4a\x18\x66\x41\xbe\x40\x14\x8d\x44\x22\x2a\xc8\x78\x08\xe8\xb0\x14\xd3\xe3\xd6\xd0\x92\x76\x39\xdd\x74\x5b\x1a\xd0\xeb\xa6\xcf\xd9\xe1\xff\x51\x9b\xb3\xae\xbd\x80\x51\xd4\xee\x6c\x0b\x31\x74\x53\xb2\x87\xc8\x80\x51\x09\x47\xea\x92\x7a\x6f\x50\x76\xf9\x3d\x8b\xd0\xa9\xb0\x69\xbb\x79\x3f\x1e\xa0\xb7\x19\x3a\xf6\x5e\x35\x4a\xd3\x90\x5d\xb1\x20\x8b\x40\x7e\x62\x35\x08\x59\xa1\x8d\xe5\x98\xd3\x02\xf8\xcb\xc7\xb7\x4d\x41\x8a\xf6\x12\x3d\x2a\x40\x99\x32\xe9\x5b\xb8\x43\xa3\x84\x06\xeb\x15\xb2\xd0\x92\x9f\x81\x28\x60\x94\xc3\x3a\x39\x49\xdc\x5b\xff\x51\xbf\xae\x94\x4a\xa7\x59\xac\x12\x52\x81\x5d\xec\x0b\xe3\xef\x7c\x72\xa1\x41\xf6\xfb\x5c\x43\xb2\x48\x18\x0e\xbb\x6d\x72\x09\x09\x71\xb1\x92\x2c\x87\x7e\xee\x18\x5a\x9d\x47\x3b\x97\x9b\x66\x73\x14\x20\x31\xa3\xa1\xb7\x2c\xbf\x76\x6d\xf3\x3c\xab\x76\x9e\x22\x22\xe7\xfc\x2a\xaa\x02\x58\x03\x34\x0a\x5c\x03\xe0\xd9\x85\x7b\x25\xd6\xf3\x55\x95\xe6\x97\xe1\x34\x29\x66\xaf\x1e\x7e\xbd\xd5\xe8\xcf\xea\x38\xf2\x15\x67\x59\xe4\x4f\x65\x40\x11\xf7\xc2\x0f\x24\x49\xdb\x21\xa0\xb9\xa3\x44\xb5\xe2\x17\x0f\x62\x06\x66\x36\x2e\x18\x63\x69\x23\x27\x9d\x60\x4a\xd7\x50\x99\x33\x53\x3d\xf5\x26\x63\xea\xa9\x2b\xea\xed\xf1\xdb\xac\x79\x99\xfa\x1c\xeb\x68\x19\xae\xbe\x86\xbc\xae\x3e\x65\x94\xe0\x7a\x2d\xbe\x75\x2c\xaf\x78\xaa\x8a\xb1\x05\x5c\x44\xda\x07\x95\xd3\x4f\xe9\xa9\x1c\x62\xa1\xe5\x6c\x5e\x4d\x72\x88\xd2\x3c\xac\x08\xbc\xef\x6d\x49\xbc\xae\x54\x1b\x6d\xa5\xe8\xb7\xf1\x18\xb3\x89\x1a\x45\x6c\x9d\x8e\xdc\x5c\x56\xf2\x45\x62\x64\x54\x11\x51\x3b\x35\xcc\xab\x0d\xe2\xc7\x24\xa8\x0f\xb7\xab\x6b\x08\xe7\xcd\xa9\xd9\x34\xc4\x7f\xd6\xfc\x60\xdf\x84\xc7\x56\x10\xda\xfb\x2c\x75\xa0\x2c\x83\x94\xcd\x83\xa2\x59\x9f\x3e\x1b\xd5\x1a\xa1\x0f\x81\x5f\xd7\x0c\x41\xbf\x03\x82\xfc\x03\x83\x9b\xa4\xe9\x4d\x6e\x1c\xe8\x6c\x34\x11\x19\x83\xb0\xa3\x9b\x7f\x92\x48\x51\x0e\x85\x1c\x24\x59\xc4\x1b\xac\x28\xe2\x18\xaf\x8a\x78\xa9\x42\x2a\x51\xf5\x52\x4d\x88\x28\x9d\x8d\x49\x73\x87\x74\xb7\xa2\xa9\x9f\xcc\xe5\x40\xb0\x30\x63\x3e\xc6\x2d\x49\xea\x08\xb5\xe3\x17\x23\x25\x32\x00\x8d\xdf\x03\xdb\x8b\xb9\x72\xc9\xc5\x6d\x38\x81\x47\x39\x47\x39\x7f\x6c\xea\x25\x6c\x62\x4a\xe7\x4e\x19\xf1\xa4\xff\x1f\x00\x00\x40\xff\xbf\x8a\xf2\xf3\xb4\xb9\xd9\x2b\x94\x72\x50\x0d\xab\x57\xf0\x1a\xb6\x2b\x85\xca\x02\xeb\x42\xf8\x25\x9d\xa0\x6c\xd3\x2c\x4a\x03\x32\xb4\x91\x30\x99\xde\xc0\x82\xec\x74\x6a\xe4\xe6\xf2\x9c\xca\x9a\x26\xc7\xaa\xd9\x6e\xe7\xcf\x7f\xc2\x58\x1c\x95\xe5\xdc\xc5\xca\xa1\xfd\x9d\x47\x06\x9d\x3b\x5a\xda\xbe\xd4\x5f\xc9\xd5\xe5\x38\x1b\xdc\x46\xc2\x14\x69\x82\xb9\x75\xab\x46\x9e\x3f\xe7\x72\x1b\x1d\x5a\x39\xf7\x8e\xca\xb8\x02\xba\x62\xe5\xba\x60\x6e\x7d\x38\xaf\xac\x54\x5d\xde\x33\xdb\xf2\xd4\x8b\x73\x55\xe1\xca\x80\xb2\x65\xb6\xa7\xbc\xdd\x6c\x87\xa1\x8d\x27\xc6\xff\x34\x4a\x45\x45\xca\xcc\x1c\xe5\xab\xd9\x45\xda\x4c\x74\xcf\xf6\x70\xac\xa0\x22\x6a\x49\xfe\x2d\x2b\x23\x59\x58\x59\x6f\xf4\xd4\x00\x04\xac\xc4\x2f\x56\xb1\x9f\x02\x33\x99\xed\xfe\xa8\x56\x0b\x11\xac\xe6\x33\xa5\x66\x13\xc9\x37\xd1\x1f\x83\x52\xc2\x16\x21\xd8\xa5\x2c\x2b\x25\x26\x27\x17\xff\xb0\xc6\xf2\xab\x2d\xfc\x6a\x55\xe5\x73\x91\xf2\x54\x8a\xd9\xa0\x36\x27\x85\x1b\xa4\xb5\xca\x2a\x52\xb1\xb6\x20\x65\x60\x19\xa9\xa2\x41\xc2\x14\xcc\xf5\x6b\x36\xf5\x1e\x7d\x63\xd7\xee\x57\x6f\x6d\x6f\x3a\xf8\xe2\xce\xf6\x9b\x03\x9a\x78\xd9\xef\x3b\xfe\xdd\xd0\x6c\x1a\x7a\xf2\xba\x37\x3a\xb8\x6c\x5f\xd3\x50\x20\xd0\x57\x53\x62\x88\x8c\xd6\xd4\x4e\x34\x9a\xf1\x6f\x77\x71\x6f\xbf\x1a\xbf\xf9\xc7\x27\x07\x56\xde\xf8\xd5\xf5\xdb\x5f\xbe\xbe\xa5\xc2\xd9\x79\xc0\x73\xe3\xf6\x19\xad\x31\xf3\x3d\xe7\xe6\xad\x3b\x92\x8d\x6a\x63\xc1\x0a\x77\xe7\xc6\x50\x60\x6d\xab\xab\x6a\xfc\xda\x55\x6b\x84\x35\x7c\x33\xb8\x15\x6f\xc6\xff\x44\x3e\xad\x00\x45\xb4\xb2\x50\x52\x07\x02\x48\x39\x50\x5a\xdf\xc7\xb2\x78\x50\xac\x58\xc6\x6c\xa7\xd9\x6a\x36\x89\xa5\x22\x94\x6b\xf5\x07\x24\x1d\x95\x95\x6e\xb3\xa9\x13\xbc\x79\x1e\x60\x90\x9c\xee\x69\x4e\xf4\xf4\x24\x9a\x7b\x90\xc6\x1e\x32\x89\x1f\xeb\x3e\x84\x86\xba\xae\xae\x3a\xf2\x7f\x32\xa7\xd8\x6f\xd5\x76\xd3\x8f\xc2\xf3\x6c\xb8\xb4\x0b\x4f\xe1\x57\x80\x1e\xd8\x80\x0f\x5c\x1d\x55\xa7\xc9\x11\x06\x65\xae\xd2\x12\xcc\xe2\x3c\x0d\x42\x2c\x23\xf0\x0f\xc2\xb6\xb1\x13\x30\x88\xd9\x05\x30\x5e\x48\xd2\xa7\x64\xb5\x5f\xdc\x82\x17\xd4\x2a\x9d\xce\x1c\x47\xce\x22\x25\x85\xb8\x93\x08\x73\x46\x36\x19\x32\x4f\xe2\x56\x22\xfe\x20\x07\xdd\x61\xf8\x89\xe2\x95\x32\x1b\x07\x13\x27\x37\xae\x9d\xa2\x62\x99\xd5\xdd\x89\x93\xeb\x49\xb6\x5e\xab\x2b\x80\x2b\x6c\x1e\xaa\x94\x81\xff\xa2\xce\xe5\xfe\x6a\xb2\x52\xf5\x8c\xa0\x9a\x29\x3d\xf2\x9f\x6d\x1f\xdf\xc5\xeb\x66\x0a\x8e\xfe\x4b\xcb\xef\x4e\x34\xec\x2a\x43\x2e\x15\x95\xcc\x84\x37\x38\x93\x3f\x4f\xa7\x2a\x9a\x05\xed\x8c\x4c\xce\xeb\x4b\xd6\x2f\x93\x4e\xf3\x21\xd2\x72\x25\xf4\x72\xfd\xcc\x15\x6f\xf2\x04\xd0\x17\xeb\x67\x54\x5f\xa0\x9f\x39\xb9\x7e\x88\xd7\xcf\x68\x3d\xd7\x0f\x6e\x38\xb5\x89\xca\x67\xfc\x7d\xd5\xad\xab\x0b\x0a\x56\x53\xf9\x8c\x4e\x94\xcf\x04\x39\x28\x7f\x32\xf9\x1f\xc1\xda\x94\x7e\xa6\x8a\xab\xf7\x4b\xfa\x19\x1d\x00\xf8\x5d\xb2\x4f\xaa\xc9\xa7\x40\xd4\xa7\x90\x21\x90\xce\x22\x98\x46\x99\x85\x34\xc0\xa0\x34\x86\x20\x23\x5a\xfa\x8d\x85\x48\x68\xc9\xaf\xb2\x65\x50\xf2\x9f\x87\x3f\xf4\x5f\x2a\x36\xa8\xe2\xa5\x6e\xd4\x26\xb1\xea\x8d\x37\x84\x42\x48\x8f\x47\x28\x85\x4c\x76\xc0\x07\xb9\x29\xfc\xda\x99\x8b\x1f\xd3\xaa\x48\xac\x3b\xf3\xeb\x5f\xff\x3a\x79\xe6\xdb\x92\x9e\x0e\x57\x5f\xae\xa7\x8b\xfc\x1f\xf4\x74\x92\x72\x11\x20\x70\x80\xd4\x3a\x75\xf0\x7c\x4f\x3e\xe8\x14\xb6\x83\x02\x80\x21\x0b\x31\xbb\x5d\x28\x55\xe4\x27\x81\x11\x77\xd8\x68\xf1\x92\x9b\xe4\x32\x6d\xb1\x48\x00\x4d\x8a\x27\xa5\x3a\x4f\x82\xf6\x0c\x3e\xd5\xe2\x68\x9c\xce\x07\x6c\x7e\xf3\x4d\x14\x7d\xd3\xd1\x7f\xed\x60\xcb\x35\xc3\x9e\x37\x5b\x6a\x1d\x41\x43\x26\x7b\xf6\xe2\xd1\xae\x83\x43\x15\x8e\xbe\x43\x83\xab\x07\xf2\x2b\x1b\x9d\x3c\x9f\xd7\xce\x75\xe0\x41\xf6\x55\xa0\xe3\x95\xcd\x61\xd0\x19\x5d\x99\x0e\x91\x4c\xd0\x53\x66\xc0\xb4\x34\xe5\x68\x3a\x54\x2a\xe3\xed\x0a\x48\x25\x95\x98\x4f\xd9\xcb\x21\xcb\x0a\x04\xcf\x62\x79\x65\x28\xe0\x75\x97\x39\xad\x66\x7e\x36\x34\xf1\xaa\xec\x4c\x3a\x21\xcb\x95\x96\x26\x8b\x81\xa0\x54\xbe\x40\x44\xbd\x68\xa9\xb0\x2c\xfa\x8c\xce\xc2\x87\xc3\x5b\x4f\x4d\x87\xa7\x82\x59\x2a\x5f\xc0\x9d\xe5\x1d\x8a\x59\xde\x4d\x3e\x02\x9f\xfd\x59\x72\xf3\xa7\xbf\x78\xb7\x3a\x1c\xae\xa9\x09\x87\xab\x51\x42\xfa\x44\xb4\x98\xaf\x6e\x7c\x78\x73\x48\x9e\xf6\x24\xd5\x62\xe6\x11\x3d\x0d\x73\xe2\xe9\xf9\xed\x4f\x3f\x8d\x7e\x09\x5f\xad\x8c\x46\x2b\x2b\x22\x91\x4a\xf1\x08\x20\x78\x88\xc6\x3f\xb8\x7a\x79\xed\xe8\xff\xa2\xc7\x1c\x7b\x92\x5a\xf9\x26\x68\x83\xe3\xdc\x01\x78\x37\xf7\x20\x3c\x73\x27\x77\x01\x57\x73\xd6\x83\x70\x94\x8b\x26\x6f\x02\x10\xf8\x00\xc0\x73\xb4\x2e\x9b\xea\x1d\xe8\x8f\x68\x51\x45\x94\x82\x8a\x3e\x97\x16\x92\x12\x3a\x99\xe7\x5a\x83\x1a\x39\xaf\x98\x91\x57\x11\xde\x00\x9e\xff\xe8\x23\x5a\x52\x7a\xe8\x10\x2c\x60\x66\xe3\xe7\xe2\x9c\xfb\x43\x34\x61\x39\x67\x41\x77\x00\xc0\xd7\xd0\xd0\x9a\x6b\x19\x00\x2a\x9a\xe7\xa6\x3f\xd3\x25\x7c\x3f\x43\xe5\x07\x0c\x1e\xa6\x02\xd8\xcb\x32\x9c\x2a\x0d\xc9\x6b\xf2\x5c\x95\x45\xc3\x8a\xe6\xca\x56\x59\x28\x11\x47\xeb\x6d\xb9\x5f\x89\x76\xfb\x26\x0c\x71\xdf\x46\xe3\xcc\xc5\xfd\xe7\xf6\x27\x9f\xbe\x70\x01\xbe\x7f\xdb\xb9\xdb\xe0\xa9\x0f\x01\xad\xb7\xe1\xda\x71\x82\x8c\x29\x0f\xd4\x44\x43\xba\x1c\x24\x48\x6e\x29\x91\xc2\xb4\xa9\x20\x82\xad\x2c\x46\x12\x8a\x6d\x5f\x14\xee\x03\x40\xba\xe4\xa9\x34\x16\x0b\x2f\x7f\x94\x8c\x41\x52\x50\x0b\xf5\xa8\x2a\x9c\xf0\x4f\xdc\x3e\x64\x8d\x5a\xb3\xb4\xbe\x82\xea\x28\x77\x90\x3c\x53\x3e\x24\xf5\x53\x9f\x39\xd6\xde\x3d\xed\x97\xa7\xfd\x58\xc6\x0e\xf6\xda\x98\x1d\xf3\x5f\x26\x65\x61\x87\x99\x9d\x80\xaf\x0f\x27\xcf\x14\xe2\xb5\xe3\x37\x8b\xc2\x32\x08\x19\x60\x84\x98\x51\x43\x84\xc9\x09\xc2\x6d\x7a\xfe\x22\x7b\xd9\x45\x49\x87\x26\xb0\xa9\x32\x16\x89\x92\xba\xcb\xac\x59\x1f\x2d\xa5\x48\x29\x22\x15\x72\x2e\x6f\x22\xb2\x3f\x16\x60\x51\xdb\xc8\x8a\x49\xd9\x9f\x94\xbc\x73\xc9\x38\x17\x6b\x3d\xef\xc9\xac\x7a\x70\xaa\xf3\xda\x31\x1f\x19\xf2\xa0\x25\x66\xc9\xd2\xfa\x0b\xc2\x11\x1d\x21\x06\x9a\xa6\x4a\x29\x2b\x74\x6f\xf7\xa8\xfb\xaa\x27\xe7\x92\xb1\xb5\x77\x4f\x91\xa1\xff\x54\x26\xeb\xeb\x43\xdf\xad\xed\xf1\x6a\x3d\xae\xf9\xdf\xf2\xba\x55\x04\x12\x04\xa7\x3c\xc1\x7e\x9f\x56\xfe\x83\x77\x79\xd4\xfe\x42\x09\xff\x7b\x0f\x02\x48\xa7\x27\x0c\x39\xa1\x47\x25\x6c\x1b\x1e\x4e\xfd\xfe\x1f\x90\xc9\xf9\x08\x13\x63\x29\xf0\x4a\x53\x20\xca\x18\xc2\xcb\x40\x7e\xf0\xf2\x96\x80\x36\x54\x42\x29\x1c\x15\xfa\x08\xbf\xab\x25\x7c\x96\xf8\x79\x7d\xd4\x2b\xf5\x04\x4a\xa5\xd8\x71\x49\x18\x2b\xf4\x82\x0a\x85\xd8\x89\x42\x4e\x75\x71\xa1\xa9\xb4\xb0\xac\xb8\x8c\x2e\x1e\x24\x15\x96\x9d\xce\x87\xb5\x92\x0e\x4b\xc4\x49\xa9\x9f\x0d\x60\xbd\x29\x29\x23\x25\xdc\xf0\x13\xdc\x68\xe4\xa6\xc4\xf8\xa9\x5d\xd1\xe8\xce\x93\xe3\x89\x5b\x22\xa4\x16\xe1\x34\xb4\x73\xef\xc2\xf5\xc9\xce\x8a\x72\x5d\xa5\xae\xac\xc9\x5d\x50\xe0\x69\x56\x64\xd6\x1f\x3a\x77\x03\xfc\x97\x1b\xce\x1d\xaa\xcf\x54\xbc\xc7\xdd\xf6\x1e\xb7\x56\xc3\x60\x62\xd0\xfa\xf8\xae\x21\xae\xa2\x6f\x5b\xb4\x80\x62\x0e\x2b\xc1\xfc\x8f\xe0\x4e\xe0\x00\x35\xa0\x09\x24\xa2\x71\x05\x94\x03\x3d\x64\x90\xa1\x10\x61\x86\x69\x03\x4a\x80\x18\x25\x9a\x58\xf4\xf2\x68\x65\x0e\xc3\xe0\x51\x16\xf2\xbf\xe2\x55\x57\xdb\x10\xab\x6d\xaa\x6b\xb2\xd9\x4c\x36\x93\xc6\x6c\xa6\x03\x92\xa4\x99\x29\x70\x2c\xb1\x13\x3a\x3a\xd0\x85\x22\x16\xc1\x39\xa4\xc0\xc7\x42\xff\xa0\xc8\xf9\xff\x93\xf6\x1e\x80\x51\x55\xd9\xff\xf8\x3d\xaf\x4d\x7a\x32\xc9\xb4\x4c\xca\x64\x32\x3d\x93\x49\x32\x99\xcc\xa4\xf7\xde\x1b\xa4\x90\x46\x12\x48\x28\x01\x42\xe8\x20\x4d\x10\x90\x2a\x82\x2e\xa2\x22\x2a\x56\x2c\xb0\xf6\xde\x77\x6d\x6b\xd9\xaa\x6b\x57\x5c\x5d\x75\x8b\xbb\x76\x98\xc7\xff\xde\xfb\x66\x26\x81\x80\xeb\xef\xfb\x8f\x86\x4c\xb9\xef\xbd\x73\xcf\xbd\xf7\xdc\x73\x4f\xf9\x1c\x73\x46\xdf\x8e\xce\xea\x89\x54\xdb\x58\x79\xcb\x86\x4e\x87\xd8\xdb\xd2\xa5\xb5\x26\xeb\xe4\x05\xa6\x95\x2d\xc7\xe6\xa6\xae\xac\xef\xda\xd1\xe7\x04\xde\x5e\x54\x68\x0f\xd1\xd8\x74\x89\x16\x4d\x08\x63\x4c\x48\x92\x73\x37\x9b\x98\xcd\x63\xc7\x57\x15\x3b\x52\xec\x0e\x28\x1a\xbf\x61\xf0\xaf\xc9\xf3\xc7\x85\xd0\xc8\xe0\xfb\x0d\xce\x81\xf4\x8c\xa2\x95\xc7\x17\x2d\x5f\xb3\x7a\xc5\x4b\x39\x5d\x05\x49\x49\x05\x5d\x39\x5f\xe9\xf2\x3a\xb2\x67\x96\x37\x49\xf6\xbd\xeb\x10\xe2\x4c\x82\x03\xc9\x91\xa5\xc4\x18\x0c\x80\x42\x80\x44\x73\x92\xef\x18\x04\xc3\x01\xbb\x24\x6e\x20\x37\x99\x24\xbb\xa4\xd4\x51\x7f\x7a\x88\x1c\xae\xab\xc0\x7a\xab\xad\xd1\xaa\x51\xda\x93\xd6\x6d\xe6\x1a\x57\xdc\xb7\xa6\x38\x2c\xf8\x2f\xbc\xb0\x63\xd5\xe9\xfb\x7c\xf2\x65\x01\x7e\x86\x0d\x15\x97\x14\x24\x81\xc0\xeb\x81\x13\x42\x81\x41\x34\x04\x9b\x5a\x46\x38\x5e\xc0\xcf\xc2\xb4\x74\x93\x5c\x9b\x73\x22\xfb\x63\x4c\x26\x92\xa0\x22\x79\x19\x0c\xe7\xec\x38\x1e\x37\xd5\x04\xce\xa5\x47\xe9\x62\x4f\xbe\x96\x3d\x7a\x55\x7f\x46\x7f\x46\x64\x88\x25\xc5\x1a\xd6\x56\x73\xe3\x8d\xa5\x6b\xef\x5d\xe2\x1a\x70\x69\xe2\xcb\x53\x97\x2d\x7d\x8d\x5d\x74\x66\x1b\x89\x04\x8e\x52\xbe\x17\x14\x16\xc4\x8f\xce\x66\xd7\xfe\xae\x79\xe4\xfa\x05\xd9\x1a\xf9\x5b\x11\x51\xc3\xfd\xcd\x74\x1d\xf6\xe1\x79\xf2\x21\xff\x01\x8a\x47\x99\xa8\xb5\x24\x24\x06\x58\xd0\x02\x47\x4f\xd2\x0a\x7a\x92\x26\x11\x1a\x0c\x4c\x83\x16\xd1\x52\x3d\xed\x82\x50\x13\xdd\x0f\xd9\x52\x94\x36\x23\x15\xd8\xfe\xbd\xdd\x4f\xbf\x0f\x51\x53\x75\xa1\xa4\xf1\x1d\x53\xb3\xec\xd7\x3e\x5b\xa5\xd5\x3c\xdb\x54\x5f\xfa\x3f\x53\xed\xbb\x5a\xe2\x86\x2b\xd7\x1f\xb7\x5f\xf1\xd8\x05\x12\xee\x69\x1f\x07\x88\xac\xe1\xae\xa5\x7d\x9c\x59\x12\x12\x04\x1c\x8a\x00\x96\xf3\x47\x8f\x6a\xa9\x4a\x3d\x45\x9b\x66\xd9\x80\xbe\x7d\xd1\x2f\x6b\x18\xd2\x4f\x9b\x5d\x41\xfa\x19\x58\x17\xbe\xde\xa9\x7e\x2e\x1c\x7d\x80\x28\xd9\xa3\xb7\x16\x17\x3c\xd3\x54\x6d\x32\xff\xaf\x98\xf4\x7c\x4f\xde\xd6\xa5\x47\x1d\x65\xd7\x75\xfd\x5c\x64\x3a\xa0\xcb\xce\x7e\xc5\x3f\xc4\x7f\x8a\xf4\xc8\x59\x92\x46\x7a\xcd\x23\x66\x98\xda\x38\x64\x02\xc3\x71\xe7\x60\xc9\x21\x84\x9b\xe9\x71\xf2\xb5\x42\x21\x45\xbb\x2a\x71\x98\x90\x8b\x98\x1b\x2f\x94\x88\x3d\x23\xab\x28\x29\xf8\x45\xcb\xcc\xed\xb3\x2f\x9c\x91\xfd\x3c\x9b\x5c\xd8\x53\x30\x7c\xd5\x5c\x0f\xeb\xbd\xee\x02\xc9\xd9\x80\x56\x9e\xfd\x92\x1f\xe0\x0e\x23\x1d\xea\x2f\x09\x8b\x8f\x65\x31\x0b\x85\x29\xd6\x1a\x8d\x00\x3c\xc3\x4f\x10\xa5\xd8\xb7\x5b\x81\x5f\x9b\x8c\x9f\xf2\x55\xc0\x58\x33\xe9\x4a\x8d\x90\xe2\x76\x49\x72\x82\x42\x46\xa7\x1b\x49\xae\xb0\x5c\x20\xf8\x55\x89\x27\x1e\x3f\x70\xe8\xba\x33\x51\xd3\x43\x60\x0b\x32\xb9\xc3\x0f\xbf\xa8\xf5\xa2\x0b\x84\xc2\xee\xd7\xae\x1c\xa4\x7b\xf5\xc7\x62\x3d\x3b\x9b\xc4\xee\x92\xf8\xcb\xc9\x8c\x9d\x0b\xe6\xe9\x28\x2b\x29\x3c\xc8\x05\xb3\x74\xc0\x83\xf3\x72\x56\x90\xbc\x1c\x3b\xce\xcb\x49\xb3\x86\x5a\xab\xb2\x12\xc5\x7f\x5e\x30\x15\x87\xcc\xdd\xeb\xf0\xfa\x5c\xc6\x35\xfb\xf3\xf6\x12\x80\x45\xf1\xc0\x48\x19\x6f\x3c\xc7\xf0\x92\x97\x59\xa0\xe2\x3b\x90\xc2\x57\x09\x17\xcd\xdb\x03\xbf\xd9\xdf\x42\x97\xa5\x0f\x7c\x80\x40\x8c\xc6\x50\x2b\x33\x8d\x70\x9b\xbd\xee\x85\xcb\xeb\x6a\xb6\x3e\x3a\x81\xa5\x5c\x11\xf3\x84\xcc\x5a\x39\x58\x9c\xdb\xd3\x50\xa6\x6b\x4e\x9c\x31\x76\xe9\x48\x5a\x9d\xc7\x10\x2c\x76\x69\x32\x9b\xb8\xe6\xb6\x7d\xcf\x2e\xb5\xae\x7a\xf9\x40\x3b\x54\xe1\x20\xef\x23\x59\xbd\x95\x96\x70\x55\xa2\xfc\x7e\x8d\xc3\xa0\x3a\xb3\xde\x50\x38\x23\x33\xd6\x51\xef\xd1\x51\x1e\x6e\xe6\xde\x63\x17\xf0\x5f\xa1\x20\x94\x50\xa2\x15\x58\x44\xf3\x88\x00\x48\x36\x32\x91\x26\x4c\x20\x49\x5d\x69\xc0\xc7\x54\xe2\xe4\x58\xf0\xde\xe1\x6b\xde\x86\xe4\x1b\xb9\x1f\xe3\x37\x6e\x4c\xfc\x1a\x01\xfa\x11\xdf\xe3\x07\xfe\x1f\x52\x4c\xb2\x40\x63\x92\xa9\xa9\x95\xe8\x8b\x45\x28\x70\x87\x6c\x97\x92\x37\x98\xdc\x2e\x66\xf5\x81\x7f\x88\x6f\xdd\x2b\xbe\xf5\x0f\x7e\xc9\x86\x18\xef\x19\x05\xf5\x4f\x72\xeb\xd9\xd7\x30\xde\x97\x92\xe0\x8d\x20\x86\x8a\x08\x09\xa2\x00\x7c\xc0\x04\x46\xbc\xac\xc9\x6d\xa6\xb9\x47\xd8\xd7\xd2\xbb\x37\x34\x35\x6f\xe8\x4e\x7f\x31\x32\xd9\x6d\xc1\x07\xe9\x48\xfe\xa6\xd2\xb1\x46\xbb\xbd\x71\xac\x54\xeb\x34\xa9\x54\x26\xa7\x96\x3c\xe3\x2d\xee\x45\x96\xc3\x72\x35\xd4\x17\xaf\x4a\xc5\x47\x11\x34\x18\x93\x89\xab\x6a\xaa\x89\x01\xde\x6a\xa9\xaa\x6a\x21\xbf\x7c\x7b\x61\x73\x73\x61\x41\x73\x33\x62\xe0\x00\x17\xc9\xe6\xf0\x07\x50\x0c\x9e\xe0\xbd\xf5\x27\xf4\x53\x73\x64\x0a\x02\xce\xf3\x6a\xf0\x07\x95\x44\x9f\xe7\xed\x29\x60\x89\x31\xd3\x97\xe8\x3e\x4c\xa3\x24\x3a\x7d\x53\x94\x81\xe6\xee\xee\x07\x8d\xe6\x8b\x38\xdd\x03\x3e\xd1\x64\x01\x0e\x60\xe8\x3c\x8c\xdd\x9c\x93\x94\x94\x83\x31\x9c\x9b\xf2\xf4\x13\xb9\x29\x29\x6e\x77\x4a\x4a\x2e\xf7\x7a\x4a\x4d\x56\x62\x62\x16\xf6\xc5\x57\x13\x97\x4f\x75\x4a\xaa\xc7\x93\xea\xc8\xce\x46\x00\xeb\xc5\x2e\x56\x89\x0a\x90\x9a\xf0\x37\x8c\x8e\x91\x3a\x94\xa1\x3e\x2c\xe8\x91\x0e\xe9\x26\x0b\x61\x83\xde\xe7\xde\xf0\x10\xfd\xc1\x67\x87\xcb\x66\xbe\x72\x14\x18\x23\x13\x4d\x09\xd6\x88\xf4\xf8\xee\xca\xb4\xd6\x02\xc3\xd8\x82\x68\x6b\xaa\x33\x2e\xc1\x12\x21\x1c\x8e\x4c\x88\xcb\x6a\x74\x35\x5e\x9d\x29\x9d\x25\x36\x71\x9f\xb3\x5d\x82\x80\xe2\xa8\xdc\x03\x96\x89\x00\x44\x12\x37\x80\xa9\x09\x07\x54\xed\x67\x54\x51\xc0\xf5\x89\x63\x15\xb0\x3e\x73\x4e\xd8\xec\xd4\x00\x19\xd2\x77\xb6\x4b\x97\xdb\xec\xcc\xa8\x2e\x2e\xb2\x18\xdd\xbb\x75\x18\x2e\xd3\x5a\x55\x5e\x61\x36\x7a\xf8\xcf\x1c\x5d\x95\x29\x71\xfa\xb8\xac\xb4\xc4\xd4\xae\xaa\x54\xfc\xca\x25\xc5\x77\xa1\xdf\x73\x9f\x72\x09\xfc\x3f\x49\xac\x5d\x20\xbe\xab\x9b\x4e\xca\xa9\x88\x19\x60\x60\xc9\x6f\x18\xc8\xc5\xd7\xfe\xb8\x16\x78\x51\x7c\x8d\xff\xa7\xf8\x3d\x04\x8b\xdf\x23\x06\x1e\x11\xf7\xb2\xec\xd9\xc7\xe8\x98\x17\x4b\x21\x45\x31\x93\x23\xc8\xf8\x78\xf7\xb3\xe3\x1a\x18\x56\xfe\xe7\x86\xf5\x11\xad\xa3\xd0\x90\x5c\x90\x1a\x1b\x9b\x5a\x90\x6c\x28\x74\x68\x17\x27\xc5\xaa\x13\x13\xd5\xb1\x49\xef\xeb\x73\x6c\x6a\xb5\x2d\x47\xaf\xf7\x58\x54\x38\x01\x30\x49\xa3\xd3\x69\xb4\x7a\x3d\xe1\xf5\x99\x43\xdc\xa3\x62\x82\xa0\x21\xda\xa5\xa4\x64\x87\xfa\x01\x7e\x8b\x08\x55\xc1\x74\xab\x24\x8e\xca\x49\xe0\x01\xd6\x25\x26\xdc\xf9\xce\x47\xdc\xa3\xd0\x4f\xc7\xcb\x3b\xce\x61\x5c\x68\x21\x56\xf2\x89\xc7\x4e\xf5\x89\x17\xfd\xbc\x4f\xdc\xc5\x1a\x44\xe6\xc3\x57\x6f\x15\x62\xc5\xa3\x67\xcf\x9e\x59\xc2\x7d\x7e\xb6\x5a\x10\x18\x19\xba\xe9\xf4\xbf\x90\x74\x6f\x33\xf7\x2f\xf1\x06\xe1\x32\x14\x43\xce\x95\xd1\xc0\x4e\xa2\x16\x0d\x23\xb2\x2e\x3a\x09\xdb\xba\x89\xf7\x96\x6d\x94\xfc\xb4\x38\x62\x96\xae\x73\x8b\x14\x4d\x68\xc8\xf6\xc5\x3e\x28\xbd\x79\xe1\xb5\xa5\x2a\xb3\x47\x27\x7b\xf8\x51\x6d\x8a\x27\x9e\xfb\xd7\xe5\x7c\x42\x92\x22\x2e\x4a\x76\xd9\xfc\x59\x06\x97\x41\xc1\x49\xf9\x60\xa7\xbf\xe7\x4e\x9d\x6d\x92\xc6\x7d\x7a\x3d\x80\x00\x8c\x85\x34\xf2\x22\xf7\xb9\xf8\x0e\x68\x98\xe2\x0f\xbf\x05\x39\x77\x0a\x42\xc4\xef\x88\x71\xc8\x1b\x2e\x1e\x14\x5b\xcf\xde\xfd\x33\xbe\xed\x69\xc3\xe9\x0d\x97\x82\xa4\x09\x9a\xa1\x14\x34\xfd\x61\x62\x16\x91\x3e\x78\x4d\xba\xcc\x4a\xa5\xd9\x85\x80\xa9\xe4\xfe\xc3\xde\x29\x6c\x96\x30\x26\xce\x67\x2c\x66\xab\x8c\x84\x1a\xb0\x06\xe6\x2a\x50\xbe\xbd\x5b\xd8\x2c\x2e\x45\x2c\xb0\xdc\x8b\x5c\xb9\x2c\x98\xc6\x79\xdb\xd1\xb7\x52\xb0\x8a\x92\x5c\xc6\x22\x09\xb0\x8b\xe9\x21\xdb\x71\x06\x4b\xe3\x54\x2e\xfc\x65\x26\xfd\x32\xe2\xe7\xae\x8c\xfa\xb9\x2b\xa3\x7f\xee\xca\x84\x9f\xbb\x52\x77\xf1\x2b\x2f\x72\x51\xb7\xf4\x53\x12\x6c\xb5\x92\x18\x75\x41\xa6\xa5\x4c\xe1\xff\x47\x2c\x26\xb3\x0d\xa2\x6e\x3f\x20\xde\x8e\x15\xd9\x24\x5d\x96\x49\x89\xff\xea\x92\xf0\x5f\xc6\x74\xfe\x27\xb2\x60\xf1\xf1\x4b\xe2\x33\x0c\x0a\x85\x21\x23\x3e\x2e\x83\xb8\x50\x33\x12\xe2\xd3\xc9\xfb\xf4\x78\xdf\xe7\xd4\x17\xce\x38\x18\x2b\x3b\x9f\x6d\x67\x04\xb4\xb2\xd8\x9f\xdb\x99\x1f\xc0\xf0\x92\x82\xd7\x19\x2b\x11\xfe\x36\x09\x69\x44\xa6\xf6\xa1\xf0\x70\xf9\xde\x85\xe2\x67\xec\x3d\xdc\xab\xa7\xb3\xf0\x05\x88\x41\x06\x84\x78\x8a\xc3\x2d\x21\xdb\x0a\x40\x31\xbc\x10\xb2\x52\x45\x65\xd6\x79\xf7\x00\xbd\x49\x4f\xdc\x34\xf1\xf0\xf6\x69\x03\x8c\x31\xb2\xb3\x88\x00\x27\x7e\xcc\xe2\x09\x83\xf7\x13\xac\x83\x6c\xe3\x9f\xa7\x36\xc0\x74\x8a\x93\x07\x88\x38\xb2\x07\xfd\x96\xd8\x8c\x80\x05\xda\xc9\x90\x20\x83\x00\x1f\xdd\x7a\xfe\x17\xe0\x6b\xb1\x99\xe2\x25\xb0\x15\x66\xfc\x02\x94\xad\x91\x0f\xde\xfa\x25\x38\x5b\x40\x6d\xb1\xf7\xfb\xf1\x80\x10\x80\x95\x5a\x94\x6c\x12\x9a\xaf\x6c\x12\x0f\x68\x8e\xf8\x16\x5e\x93\x4f\xe3\x9e\x3f\x23\xfe\x95\xcb\x3e\xfd\x12\xe9\x37\xee\xe9\x1a\x7c\x7d\x8d\x2f\x76\x9a\x62\x03\xfa\xb0\xe0\x08\xce\x14\x35\x51\x59\x03\x49\x0f\x84\x91\xe4\x87\xf6\x19\x6b\x50\x7a\x8a\xcf\x8c\x7f\xd7\xb0\xaf\x9f\x71\x8e\x31\xdf\x78\xc3\xba\xd9\x43\x67\xe6\x61\x88\xb9\xd6\x77\xd8\xbc\x53\xe4\x3a\x7a\xff\x6a\x3f\xc6\x12\x02\xa0\xf6\x85\xa9\x44\x46\x71\x32\x4d\x00\x09\x8f\xab\xc6\xf1\xde\x73\xf0\x08\xbf\xe6\x1f\x61\x8a\x55\x87\x80\x5b\x4d\x30\x8b\x48\x26\xbb\x0c\x24\xad\x9a\x07\xfc\x4f\x9d\x1f\x65\xf0\x5c\x2a\x15\x72\x39\xb9\x2b\x00\x4d\x0c\x02\x62\x5e\x06\xb6\x4b\xbc\x82\xb9\xe2\xf4\xf7\x04\xe9\x86\xfd\xca\x7b\x25\x2c\x64\xfe\x28\x86\x7f\xf8\x2b\xa6\x92\xc9\x3f\x74\x4a\x24\x92\x9a\xc4\x68\xfc\x13\x3f\x27\x16\x25\x21\x0b\xc9\xdf\x32\x19\x13\x13\xd4\xe1\x21\x28\x88\x18\x1d\x29\x73\x11\x25\x3b\x3e\x8e\xca\x14\x7f\x35\x0e\xbd\xdb\x5f\xb0\x43\x0f\xd8\xdf\x20\x17\x04\x1e\xfb\x1a\xb0\x19\x9e\x35\x8e\x60\xd4\xaa\xf2\x35\xb7\x8f\x88\x9f\x8f\xdc\x41\x5e\xdd\x31\x02\x1a\xd1\x39\x34\x73\xe6\x10\xb3\x65\xf6\x8c\x19\xb3\xb9\xaf\x42\x3b\x76\x3f\x31\x31\xfe\xc8\xce\x99\xa1\x4f\x3c\x11\x3a\xe3\xf2\x47\xc6\x27\x9e\xdc\xd3\x11\xfa\xbc\x37\x71\xcd\x3e\x05\x53\xa9\xbc\xfa\x92\xf5\x57\x29\xbd\x8f\x2b\xae\xf0\x61\x38\xbf\x43\x6a\xa9\x10\xda\x62\x23\x42\x11\x47\x13\xc0\x18\x06\x21\xff\x6a\x51\xaa\xd5\x0a\xda\x75\x8f\x87\x9c\x0b\x08\x79\xf8\x4f\x1a\x4b\xdf\x10\x08\x0e\xd6\xd2\xd0\x04\xda\xa2\x89\x1b\x87\xc5\xcf\xe7\xdd\xb1\xba\x14\x62\xfb\x66\x10\x51\xad\xba\xea\x0a\xc6\xe3\x7d\x79\xc3\xd3\xdb\x5b\xc2\xc4\xdb\xa0\x2b\xa4\x71\xc7\x73\x9b\xc8\x27\x57\x5c\xa5\x62\x97\x4a\xe3\xd0\x41\x30\x29\xf0\xfa\x48\x47\x29\x25\x96\x68\xc4\xf8\x96\x9a\x6f\x69\x70\x40\x7c\x13\x3c\x48\x43\xa0\x4d\xc1\x6e\x5d\xba\x38\xf0\x99\xcb\xe7\x71\xa4\x21\xed\xc4\x9a\xe9\xcb\x3a\x09\x84\xe6\x90\x1c\x0e\xe6\x16\x53\x91\x43\xb3\x7a\xc1\xbc\x35\xb1\x69\x25\x56\xd1\x0e\x61\x05\xa3\x0d\xf6\xa6\xdd\xcf\xaf\x5a\xf5\xc2\x9e\x26\x7b\xfd\x68\x3e\xc8\xc5\x14\x88\x8a\x6a\xba\xf4\xd1\x75\xee\x67\x9f\x7d\xee\x19\xf7\x25\x8f\x5e\xda\x18\x25\xfe\xfb\x94\x7d\xed\x55\xc7\x7b\x5d\x3b\x4e\xdd\xd2\xd3\x73\xcb\xa9\x1d\xae\xde\xbb\x0e\xae\xb5\x9f\x42\x0c\x5a\x80\xcf\xc3\xfb\xb8\x26\x8a\xd7\x7c\x93\xb4\x0b\x47\x25\x82\xc0\xa6\x5a\x19\x24\x84\xcb\x18\x32\x81\xe2\xe8\x47\xdc\xd4\x8f\xba\x25\xa9\x1d\x8b\x04\x81\xed\x91\x11\x73\xa9\xab\x9e\xe2\x6d\xf4\x32\x00\xe0\x04\x6a\x7a\xbb\x78\x83\x54\x90\x32\x31\x39\xce\x5e\x4f\x5b\xa0\x69\xdf\x63\x31\x2c\x47\x28\x23\xcd\x6c\x24\xc7\x3a\x9b\xd1\x68\x08\x22\x63\x26\x27\xba\x0b\x55\x11\x03\x90\xb8\x93\x51\x12\xe0\x3b\xe3\x99\xb3\xdc\x7e\x8b\x1a\xc7\x59\xf4\xb1\xd1\x9a\xa4\x7c\x43\xf7\x66\x83\x73\x67\xff\xe0\x55\x23\x6e\xf7\xc8\xd5\x43\xb3\xb6\x65\xe4\x88\xf9\x8a\xb4\x5a\x4f\x51\x87\x16\xe2\x66\xe6\xbb\xeb\xd3\x94\x5c\x9e\x37\xb8\xd4\xc9\xbf\x19\x15\x52\x59\x53\x56\xd7\xb4\xe7\xb9\x15\xca\xf5\x6f\x1e\x9a\x51\x53\xba\xc2\xfb\x42\xd9\xd2\xb6\x74\x8b\x21\x54\x1d\x06\x1f\x19\xcc\xd9\xfd\xeb\xab\x7d\x98\xcc\xe2\x62\x6e\x0f\xb6\x5d\x6a\x51\x0e\xda\x58\x12\x11\x84\x59\x67\x03\x5e\x88\x01\x08\x38\xf2\x8c\x41\xc0\x22\x81\x67\x85\x61\x6a\x3a\x90\x01\x42\x54\x48\x52\x1d\xce\x49\x64\xb0\x83\x86\x7a\x4f\x6f\x96\x19\x68\x96\xea\x6b\xd6\x5d\x12\x1b\x1f\x07\x28\xdb\xed\xb0\x1b\x93\xe3\x72\xe2\x73\x94\x0a\x79\x24\xd2\x82\x36\x58\x46\xcf\x73\x81\xa8\xc6\x80\xab\x0b\xf3\x26\x66\x0a\xe4\xbe\x7c\x0a\x36\xbc\xc1\xcd\x6c\x98\x7f\xd7\x9a\xb2\x39\xb3\xd6\x6e\x29\x5e\x7e\xeb\x48\xcd\xc1\x62\xf1\xcb\x86\x2d\xf7\x0c\x8c\x74\xa9\xd3\xab\xd2\x52\xeb\x3c\x3a\xcb\xd2\x6a\x4f\x47\x9e\x2e\x3e\xbb\xcd\x3d\xc2\xbf\xe0\x99\x7b\xa0\x6f\xf8\x46\xa7\xfd\xe1\x2d\xf3\x6e\x5e\x92\x67\xb6\x89\x59\xfc\xd1\xa1\x9b\x96\x95\x78\xaf\x5e\x34\x60\xaa\xc8\x4a\x4a\xc4\xea\xf1\x99\x33\x89\xc9\xfa\xbc\xe6\x34\x77\x67\x61\xf2\x6b\xd2\x9a\xb0\x8a\x03\xdc\x83\x5c\x1e\x0a\x21\x67\xbd\x60\x9e\x61\xfd\xd9\xa3\x76\xb2\x22\x1d\x24\x25\xd3\xbf\xf7\x60\x82\xf1\xbf\xea\x6c\xf6\x20\x24\x8b\xe5\xd8\xcb\x55\x09\x06\x88\x8d\x90\xe3\x33\xf1\xdb\x62\x03\x3c\xcc\x19\xce\x9c\x2e\xad\xf2\xd9\xaa\x36\x09\xc9\xe4\x24\x4c\xe2\x50\x08\x4e\x7f\x8a\x3c\x98\xe5\x80\x64\x7e\x01\x0b\x1c\x45\xea\x04\x0e\xd1\x1c\x39\xff\x7e\x54\x5c\x94\x95\x99\x6e\x31\xf2\x32\x75\xc0\x4c\x23\x4b\x63\xfd\xb9\xcc\x53\x9d\xd9\x54\x56\x61\xef\x68\xcc\x54\x9b\x8d\x85\x70\xf0\x1f\xd9\xf3\x7f\x35\xbb\xf9\x40\x4b\xaa\xc2\x5d\x5c\x65\xac\xef\x0c\x33\x96\xb9\xff\xf5\x4d\xf5\xf6\xe7\xd7\x6f\xfc\xcd\x8e\x6a\xf7\xac\xd5\x15\x4c\xe7\xc8\x65\x89\x45\x83\x65\xa5\xfd\x45\x09\x86\xd2\xbe\xdc\x32\x8c\x83\xcb\x7d\x52\xbf\xb2\xdd\x9e\xaa\x7f\x58\x88\x89\x0a\xcb\x4d\x8f\x4c\x36\x9a\x63\x5a\xc5\x4f\x7f\xaf\x58\xfe\x9b\xfd\xed\xad\x7b\x9f\x5d\xaa\x98\x71\x60\x59\x53\x54\x78\xca\x36\xef\xbe\x8a\x35\xb3\xdc\xee\x59\x6b\x2a\x14\x59\x0b\x66\x95\x84\xba\xbb\x57\xf8\xf0\x69\xb7\xe2\x3e\x5f\xc7\x35\xa2\x3c\x92\xa7\x11\x07\x48\x46\xa2\xac\x04\x99\xc0\xcb\xc6\xfd\x88\x9c\x48\x16\x84\xff\xca\xd0\xb0\xbf\x04\x83\xab\xde\x1f\x15\xeb\x64\x1b\x00\xe5\x66\xa7\x3b\x6c\x56\x1c\x1a\x1b\x1d\x11\x2e\x05\x3f\xd0\x89\x33\x09\x1e\xef\xd6\xfb\x39\x70\xf1\xf4\x1b\x97\x4b\xc9\xec\xdb\xb0\x2a\x3e\xbf\xaf\x34\x1f\x27\x0a\x80\xb2\x7b\xff\x43\xfd\xab\x7e\xb3\xb7\x69\xd1\xd8\xc0\x68\xcd\xf6\xa7\x56\xcf\xbd\x7f\x3b\x86\xda\x32\x14\xb5\x3b\xcb\x3a\xb3\x94\x6a\x77\x47\xf1\xdf\xe0\xe5\xc2\x5a\x6d\x86\x49\xad\x34\xa6\x6b\xbb\x37\xb5\x5b\x53\x67\xac\x69\xec\xdd\x98\x64\x5c\x53\xd3\xb8\xb2\xd9\xe6\x98\xb9\xae\x31\x3e\x55\x17\xa5\x32\x38\xd4\x71\x18\x82\xfa\x71\xda\xdf\x16\xf1\x12\x2e\x15\xcb\xf2\x34\xe2\x7b\x02\x8a\xaf\x16\xa7\x51\xb3\xa8\x9a\xee\x63\x44\x4e\x58\xa9\x53\x26\x0d\xa5\x39\x52\x59\xd2\x0f\x25\x48\x05\x79\xd4\xfe\x2a\x50\x58\x99\xb7\x78\xf0\xc0\xf9\xcb\x45\x65\xeb\xdd\x5c\xaa\x38\xbb\x74\x4e\x85\x41\x65\x2f\x77\x3c\x56\xb2\xa0\xc1\x96\x52\xda\x6c\xd9\x9b\x91\xc6\x40\x68\xbc\x23\xf9\xe4\xec\x1d\x9d\x56\x47\xd7\x65\x5d\x9f\x79\xaf\xe3\x4f\x1c\x15\x67\xe4\x0f\x0f\x2f\xaa\x48\x2f\x4d\x4b\x08\x36\x45\x9a\xf2\x66\x14\xda\xfb\x67\xb5\xc4\x2d\x76\x75\xe8\xe4\x3a\x6d\x8c\xa0\x8b\x2e\xed\x5f\x5b\xdf\xb2\x7f\xef\x15\x2d\xdf\x7f\x48\xed\x1a\xe2\x20\xd7\x40\x71\x13\xc6\xa6\x60\x70\x44\x03\x3b\x89\xc1\x41\xdf\xf8\xfd\x36\xea\x49\x0c\x0e\x17\x31\x68\xd9\x7c\x4b\x22\xae\x24\x8e\xa7\xe2\x91\x7e\x8f\xce\xfd\x96\x62\x71\x50\xe3\x44\x8c\x41\x69\x10\x64\xe7\x61\x71\xf8\xe1\x04\x60\x4b\x78\xce\x6d\x0b\xda\x2f\x1f\xf4\x88\x9f\x0f\xf5\xd7\x2f\x32\x11\x8f\xcc\xf5\xed\xfd\x69\x73\x6f\x98\x38\xfd\x10\x57\x3b\x67\x20\xcd\x7a\x06\x63\x73\x10\xbd\xee\x04\xde\x07\xaa\x69\xed\x95\x64\x94\x8e\x5a\x7d\xb9\xf4\x88\x43\x24\xf8\x66\xd0\x2f\x86\x32\x02\x1e\x24\x27\x31\xc9\x4d\xfb\x3e\x33\xf0\x7d\xaa\x04\x54\xa6\x34\x61\xeb\x2f\xd9\xe2\xa6\xd7\x60\x01\x7d\x60\xce\x81\x3e\x20\x9f\xb8\xea\xd2\x55\x77\xcc\x9f\x7f\xe7\xea\xb2\xd2\xd5\xf4\x6f\xa9\xf8\xa5\x78\x95\xda\x51\xe9\x48\xad\x48\x53\x8b\x57\xc1\x42\x75\x5a\xa5\xc3\x51\xe1\x50\x31\xc1\x97\xbd\x7c\x79\x55\xd5\xe5\x2f\x5f\x06\x57\x5d\xf6\xda\xee\x9a\x9a\xdd\xaf\x5d\x26\xbe\x73\x43\xf3\xbc\x62\xad\xb6\x78\x5e\x33\xac\xdc\xd4\x34\xbf\x34\x3e\x1e\x23\x66\x92\x71\xb9\x0f\xf7\xaf\x98\xda\xec\xea\x4a\x42\x42\x00\xd8\x50\x6a\xf7\x9f\x82\x38\xd2\x8d\x7c\x02\xc9\x2f\x2c\xe2\x2e\xf4\x79\x2a\x49\x60\x55\x5a\x4c\x54\x25\x8b\x09\x58\x15\x03\xb0\x00\xfa\xfb\x98\x2c\x8d\xd5\x93\xe8\x68\x8e\x73\x24\x15\x15\x16\x25\xf5\xee\x1e\x70\x8a\x9f\xe2\x9d\x25\xcd\x53\x90\x28\x4b\x94\xbf\xa4\x49\x8c\x12\xac\xb3\xf6\x8d\xc2\x37\x84\xae\xa4\xb3\xff\xe4\x36\x08\x02\xe6\xd7\x25\x92\x47\x5d\x1e\x06\xc0\xd8\xf5\xa1\x0c\xc7\x62\xfa\x92\x01\x55\xc7\x9d\xf3\x59\x32\x70\x28\x10\x8d\x15\x87\x88\xfd\x0f\xd8\x71\xaa\x8f\xa2\xc5\x01\x70\x00\x1b\x0d\x3c\x9c\xfe\x2d\xed\x8d\x8d\x58\xe8\x9d\x1c\x36\x5a\x9b\x6a\xcd\x9e\x28\x5e\x46\xaa\xc8\x80\x85\x0a\x42\x62\xfd\xa3\x60\x58\x40\xcc\x94\x99\x18\xbd\x5c\x26\xed\xb2\x16\x56\x06\x8d\x38\x35\x7e\x73\x62\xb8\xc9\x99\x6f\x94\x5b\x15\x42\x94\xd5\x6e\x57\xd4\x2e\x6d\xcf\x96\x43\x4f\x48\xbc\xc9\xa1\x0d\x0a\x0e\x0a\x09\x16\x14\x0e\x45\xfd\xf2\x8e\x42\xc5\x91\x04\x2e\xa9\x4e\x5f\xee\xd1\x73\xcc\x1b\x5c\xb0\xc0\xe5\xb4\x0d\x5a\xcf\xec\xd6\x15\x67\xea\x00\xe0\xaf\x02\x9f\xd1\x3a\x3f\x07\x1e\xd9\x25\xc9\xb6\x13\x38\xa6\x76\x2d\xd6\x9b\x4a\x49\x8c\x4e\x29\x20\x36\x8b\x8e\x8f\xd9\xc4\x30\xd5\x54\xb4\x31\x03\x01\x35\x0a\x35\x14\xe6\xeb\xb1\x69\x83\x6c\x19\x84\xe8\x80\x54\xc2\xf4\x9f\xbf\xfa\xdd\x59\x96\x69\xb9\x84\x6a\x4e\x6b\xca\xcd\xca\x4c\x68\x5d\x52\x91\x90\x50\xb9\xbc\xe3\xaa\x7d\x2f\x3d\x96\xd6\xb6\xa4\x6c\xb8\x70\x7e\x53\x6a\x4a\x69\x8b\x65\x7b\x86\x79\x65\xd1\xfa\xa7\xb7\x94\xdf\x76\x64\xc5\x86\xda\x9d\x2f\x6d\x4a\x6f\xa9\x2a\xd5\x73\x8f\x06\x47\x04\xf3\x2a\x8b\x47\x97\x8c\xd3\x8f\xff\x76\xe9\x26\x4f\x4b\xae\x29\x54\x15\xa1\xc7\xde\x25\xfb\xc0\xac\xe6\xb8\x45\xae\x56\x73\x45\x62\x94\xae\x64\xf6\xfe\xf1\xbd\x4f\xa5\x99\xb7\x0d\x76\xef\x19\xca\x12\xc2\xa3\xc3\xa4\x3e\xce\xc1\xf1\x13\x3f\xe2\x39\x18\x87\x96\xd2\xe1\xa3\x13\x11\x49\x13\x31\xce\xff\x86\x03\x66\xca\xe8\x52\x4b\xde\x38\x4f\xc0\x11\x68\x90\x82\x9d\xaa\x90\x4e\x7f\xf4\x0f\x87\x80\x9b\xfa\x2d\x19\x58\x3c\xba\xa4\x05\x49\x92\x25\xb1\x0b\x26\x53\x94\x4c\x16\x67\x07\x43\x60\xaa\xfa\x4d\xe2\x06\x1a\x58\xa2\xe7\xee\x39\x1c\xaa\x36\x68\x74\x56\x85\xa3\x68\x34\xb3\x6e\x71\x8d\x51\x14\xbf\xd8\xc6\xd5\xb1\x73\xbc\xef\x5b\xd2\xd4\xb2\xf0\x90\x27\x2d\x0a\x7d\xe3\x25\x3d\x4c\xe6\x99\xeb\xd8\x39\x7f\x96\xf4\x9e\xcb\xc4\xd9\xdc\x80\x84\xdb\x43\xfc\x28\x06\xe0\xd8\x20\x40\x93\x7e\x14\xff\xa6\xeb\x0a\x78\x83\x9c\x01\xc9\x76\x81\x2f\x53\x7d\x5f\x12\x3f\x0a\xc6\x2a\x23\x53\x72\x4a\xb8\xce\xb4\x4d\x48\xe6\x52\xfa\x03\x76\x06\x3c\x0b\xae\x1b\x99\xbd\xcf\x25\x7e\x51\x73\xd9\x63\xcb\x57\xde\xb7\xba\x50\xfc\x42\xe5\x6a\xcd\xcb\x6b\x73\xc7\x02\x24\xce\x6b\xcd\x6f\x73\xa9\xe1\xec\x8a\xe7\xf6\x34\x97\x17\x79\xbf\x61\x3f\x5c\xf1\xec\xce\xc6\x19\x87\xde\x5c\x5f\xbd\xbe\x3f\x9b\xec\xad\xf0\x8d\x2b\x27\xbd\x7d\x69\x99\x4f\x7f\x17\x67\x52\x8c\xc3\x74\xb2\xe7\xe8\x12\x19\xc0\xb3\x8f\x01\x62\x93\x96\x02\x5b\x5c\x4c\x03\x20\x0a\x4f\x98\x0e\xe9\x9c\x5f\xe9\x0a\x10\x86\x4d\x98\x78\xf2\xa9\x7d\x95\xba\x2c\xf8\x88\x63\x94\x74\x09\xa6\x67\xc1\xc9\x4d\x55\xe2\x4f\x5a\x4f\x7b\x4e\x79\x4f\x8e\xe6\x92\x7d\xa3\x87\xe6\xba\x18\x77\xe7\x92\xfc\xb5\xaa\x9c\x0c\x3d\xf4\x75\x9d\x45\xdf\x94\x5f\xfa\x2c\xd7\x94\x3b\x76\xdd\x70\x20\x1f\x7c\xdb\x91\xa8\x28\x5b\x71\x5f\x79\xd9\x92\x9e\xea\xd8\x6b\x64\xc9\x69\x39\x89\x0e\x57\x50\x2a\xb0\xef\x50\xf4\x42\x32\x16\xb4\x26\xc0\x36\x3c\xaf\x34\x28\x0d\x95\x4a\xfc\x57\x71\x7e\x60\x45\x7b\xc0\x4d\x42\xb4\xf2\x0b\x7e\x91\x4a\xf9\x6e\xb2\xa5\x50\x51\x00\x86\x44\xf6\x5c\x3d\xc8\xa5\x87\x69\x9e\x2b\x6e\x9b\x68\x2e\x4d\xd7\x96\x6e\x78\x78\xe5\xda\x27\x2e\x2d\x2f\xdf\xfc\xc4\x1a\xa6\xf0\xcc\x87\x1a\x4f\x57\x71\x5e\x5b\x96\x5a\xed\x6a\x2b\x28\xea\xf4\xc4\x62\xf3\x69\x63\xd7\x50\x96\x72\xc1\xa3\x3b\x5b\x88\xbf\x4a\x39\xf1\xec\xde\x56\xef\x5b\x01\xb7\x55\xd1\x92\x76\xa7\xb3\x7d\x49\x11\xe5\x7d\x29\xee\x47\x08\xee\x47\x2c\x6a\x9c\xba\x34\x7c\x3d\x22\xdc\xa7\xa7\xed\x73\x85\xf4\x05\xbf\x48\x25\x1e\x39\x39\x11\xd3\xb4\x47\x17\x10\xd3\x78\xde\x87\x88\xc7\xd5\x38\x9a\xc8\x55\x6d\xc0\x7e\xe2\x82\xc2\xe4\xae\x9d\xb3\x33\xc5\x9b\xd8\x97\xd8\x76\xd1\x56\x50\x65\x08\x51\x47\xbe\x29\x57\x86\xf1\xf6\xd9\x87\x97\xc0\x1f\x3f\xf3\xe1\xce\xcc\xc0\xf4\xe9\xfc\x48\x55\xd1\xd4\x53\x60\x0f\x84\xf8\x13\x7a\xa6\x7d\x48\x68\x21\xb9\x20\xf4\x18\xa3\x36\x11\xdd\x13\xe4\x7e\x7e\x9a\x19\x8b\x7e\x0a\x84\x8e\x1c\x0e\xe2\xc2\x6e\x8e\x82\x19\x6e\x0d\x93\xe7\x80\x70\xb5\x2d\x29\x3a\x6b\xd9\x63\xdb\x27\x1e\xda\x54\x81\xb7\x90\x7d\x35\x83\x05\x5a\x82\x84\xb3\x0d\x60\x7d\xda\x92\xcd\x07\xdb\xd6\xfe\xf9\x86\xde\x9c\x15\x0f\xae\x67\x96\x20\x06\x35\x8a\xc9\x18\x9b\xa4\x8a\x64\x33\x12\x2b\x00\xf1\x38\x5b\x4d\x4a\xc4\x11\xe7\x54\x08\xa0\x9a\xc9\x99\x8c\xe8\x44\x76\x39\x2d\xe6\x78\x2d\x51\x9c\x78\x49\x3d\x22\xfc\x91\x11\x01\x1a\x58\x71\xd2\xe1\x98\x9c\x4f\x25\x35\x19\xc4\xd5\xb7\x8e\x38\xf4\x05\x33\x5c\x8f\x1b\x32\x93\xa3\x21\xca\x98\x9f\x9a\xd6\xba\xb8\x78\xd1\x91\x51\x67\xda\xbc\xdb\xd7\x92\xb8\x6d\x47\x91\x39\x0a\x22\xe3\xad\x5a\x1c\x5f\xaa\x5c\x7c\xdd\x53\x23\x33\xae\xd9\xb6\xc4\x76\xc8\x32\x6b\xf6\x70\x7a\xde\xfc\xae\x0a\x25\x93\x8f\xf3\x49\xed\xfd\x87\x9e\x19\x1e\x7e\xec\x9a\x31\x85\xe8\x60\x9e\x51\x94\x77\xce\xf5\x94\x2f\x9b\x91\x61\x8c\x97\xd6\x61\x25\xee\xcb\xbb\x98\xd7\x06\xb2\x0e\x93\x95\xd1\x40\xcf\xf1\xd4\x3e\x4c\x02\x82\x11\xb2\x53\xff\x8c\x01\x19\xd4\xb1\xb1\x12\x4f\x31\x91\x66\x33\x41\xdf\x57\x9e\x7b\xa4\x27\xfd\x61\xa3\x32\xab\xec\x31\x60\x4b\x00\xde\xe0\xce\x18\x3b\xb1\x49\xfc\x02\xd7\x60\x2c\x04\x8d\xda\x96\x67\xc0\x21\x6e\x77\x28\xab\x07\x26\x8a\x37\x7e\xb7\xb2\xfb\x9b\x23\x63\x2f\xde\x3c\x1e\x23\x3a\xe0\x4f\xd1\x5d\x07\xde\xd8\x09\x5f\x89\xf2\xc6\x95\x9d\x79\x72\x76\x06\xa1\x8b\xc4\x4f\x1f\xc7\x74\xe5\x90\x53\x87\x1d\x38\x4a\x14\x8b\x58\x40\xe3\x32\x81\x61\x59\x3b\x35\xdb\x70\xbd\x3c\xd0\x2d\x16\x21\xdc\x32\xc7\x88\xc7\x5d\x69\x09\x22\x6a\x90\xc0\x10\x06\xfb\x1c\x80\x17\x9c\x06\x81\x63\x2d\x19\x10\xb8\x35\xd5\xc5\x08\x11\xb1\xd1\xd1\x3a\x4d\x04\x18\x23\xd4\xba\xe8\x98\xd8\x48\x81\x71\xe3\xb3\xbf\xca\x92\x20\xd7\x37\x6d\xec\x6b\x5d\x67\xb5\xac\x6b\xe9\xdf\xd8\xa4\x8f\x4e\xb0\xe0\x33\xec\x7a\xf1\xec\xb6\xaa\x2d\x73\x0b\x13\x2b\x16\x35\x43\xb7\x78\x5b\xf3\xa2\x8a\xc4\xc2\x39\x5b\xaa\xa7\x4e\x9a\x9e\xfe\x1e\xfc\xff\x0d\x7f\x5e\xdb\x76\x70\xf3\x92\x34\xc4\xa0\x83\xb8\x5f\xaf\xe3\xfd\xd7\x81\x72\x48\xbc\xa2\xd3\x61\x67\x81\xd3\xe2\x8e\xd1\xe8\x08\xe0\x18\x0e\x98\xf1\x29\x36\x3e\x86\xf1\xab\x81\x69\x0e\x93\xd2\x4a\x97\x99\x20\xc8\x26\x67\xb2\xc9\xb7\xe6\xdc\xee\xa9\x96\x0c\xb9\x27\x9b\x9a\x7f\x24\x63\x07\xf7\xba\x36\x2f\x09\xfb\x0a\x17\x8d\xfd\x1a\x3b\x92\x43\x74\xb8\x14\x5b\xe7\xec\x39\xb7\xad\x29\xcf\x99\xbb\xab\x7d\xe6\xf6\x01\x57\x9e\xd3\x7b\xff\x60\x7f\xaa\xc3\x91\xcb\x54\x05\x45\x0a\x43\x8b\xee\xbd\xa4\xbc\x7a\xe3\x3d\xa3\x80\x40\x3c\xeb\xee\x2e\x35\xe2\x92\x75\x8a\x9e\xad\xb7\x0f\xaa\x7a\xaf\x1c\xf1\xe4\x2c\x38\x3c\x24\x7e\x13\x1c\x06\xa8\x67\x8f\x1e\xb4\x75\xe5\x25\x55\x74\x2e\x95\x11\x0b\x25\xff\x22\x32\xa2\xfb\x4b\xc2\x63\x49\xe6\xb6\x41\x1e\xc1\x4a\xa2\x25\xcc\x8f\xac\x24\xe9\x4d\xb4\x67\x36\x86\x5a\xa5\xcf\xfd\x26\x73\xf2\x1b\xc5\x45\xaf\x89\xbb\xe8\x35\x09\x17\xb9\xe6\x42\xcd\xa9\x11\xfa\x21\x63\x96\xc2\x94\x4c\xf9\xea\xf1\x4c\x86\x7b\xc8\xe8\x11\x59\x7a\x69\x91\x74\x7e\x75\x0c\x3e\x2f\x57\x64\x1f\x1d\x4d\x2e\x8b\x53\x73\xba\x70\x43\x76\x94\xf8\x57\xf1\xef\xe2\x07\xf2\x5c\x7d\x98\x8e\x55\x6b\x4b\x0d\xb8\x76\x68\x79\xfc\xa1\xf0\x08\xee\x9e\xab\x2e\x0b\x0b\x7b\x87\xc1\x6b\xd9\xdb\x26\xc6\xc2\x7f\x99\x9b\x0c\xc9\x2c\xf3\x6e\x58\x68\x42\xd9\xfc\x06\x71\x5e\x49\x31\x42\xcc\xd9\xb3\x78\x2e\x10\x74\x3e\xad\x34\x17\xc2\x00\x04\x3c\xcb\x65\x48\x40\x32\x81\x68\x1b\x01\x71\x1b\x04\x24\xa1\xdd\x67\xf1\xc1\x33\x5c\x21\x57\x1b\x2d\x51\xc1\x32\x52\x51\x78\xd2\x08\x31\xe9\xce\xc3\xda\x06\x90\x25\x8a\x27\x4a\x60\x43\x09\x9c\x02\xb8\xb3\x6b\x13\x4d\xc9\x4d\x9b\xfb\x67\x6e\xb1\xd9\x36\xcf\x1c\xd8\xdc\x94\x6c\x4a\x18\xe3\x91\x78\x3f\x6b\xd2\x89\xb1\x49\x26\x46\x88\x8a\x53\x28\x8d\x71\x51\x60\x8c\x8a\x33\x2a\xb0\x03\x46\x60\x97\x0e\x7d\xba\x69\xe8\xd8\xca\xb2\xa1\x81\x81\xa1\xb2\x95\xc7\x86\x36\x7d\x3a\xf4\x92\x77\x7c\xfc\x33\xf2\x7f\x6a\x4b\x91\x89\xac\x81\xd7\x5e\x23\x2b\xc0\x54\xd8\x4a\xb1\xe1\xcf\xfe\x9b\xd6\xfd\xd1\xa3\xa1\x07\x18\xe0\x00\x7c\xa9\xa8\x3a\x7f\xae\x07\x71\x9f\xcb\xba\x91\x4c\xa6\x92\xe2\x3b\x78\x60\x98\x44\x32\x50\x86\x0b\xb5\xe0\x79\xb5\xd4\x0c\x91\x56\x24\xed\x14\x23\x61\x99\xe5\x1a\x43\x54\x90\x10\x4f\x36\x9e\x29\xa5\xf9\x2c\xa4\xbf\x81\xc3\x19\xd9\x81\x6a\x44\x5d\x44\xb2\x7a\xc9\x03\x9b\xab\xd3\xc6\x4e\x5c\x0a\x25\x35\xc6\xa0\xa5\x4b\x14\xda\x30\x6c\xe0\x7d\x93\xb3\x71\xaf\x8a\x97\x31\xac\x67\xf1\xed\x4b\x5b\x0e\xad\xae\xfd\xa3\x25\xbf\x4a\xb7\x78\x15\xc3\x78\x0f\x72\xaf\x4a\x76\xe3\x01\x3c\x4e\x5b\x71\x4e\xa9\x9d\x64\x5d\x91\x83\x18\xcb\x10\x8c\x18\x19\x2f\xf0\x78\xa0\x10\x87\x78\x19\x37\x59\x02\x26\x21\x00\x15\x9b\x88\x7c\x40\x31\x38\xd0\x88\x94\xf9\x09\x16\xe2\x02\x65\x7e\xe4\x53\xcb\xfc\xf8\xc0\x70\x95\xbe\xdd\x93\xdb\x22\x6b\xd9\xf1\xf8\xf2\xf5\x2f\xec\xac\xad\xdf\xf1\xf4\xf2\x0d\xcf\xec\x68\xc4\xa5\x7e\x78\x7d\xf1\x40\xd9\xd2\x0d\xf0\x96\x68\xd5\x97\xf6\x17\x8e\x6f\x08\x82\x17\x17\xe1\x72\x3f\x33\xaf\xff\x70\x37\xc4\xed\xfa\xf8\x48\x07\xa9\x26\x58\x36\x5c\x9a\xf4\xc4\x93\x71\x9f\xe8\xe6\xee\xef\xb3\xaf\xdc\x46\xf5\x16\xb3\x2f\x6f\x4c\x2b\x61\x9f\x92\x6c\x40\x0e\x51\x80\x70\xbe\x9b\x60\x83\xab\x68\xa5\x5e\xe8\x21\x2b\x44\x4d\xc4\xbd\x05\x57\xc7\xc3\xad\xb5\x7a\x03\x4e\x26\x0a\x16\x62\xcf\x4d\x26\xc2\x61\xfb\xc4\xa6\x45\x64\xce\xd4\xb4\x22\x36\x34\xb2\x6b\xef\x1c\xb7\x7b\xce\xde\xae\xaf\x77\xdc\x73\x7f\xac\xa2\xd8\xc3\xf4\xaa\x4d\xd9\xc9\x78\xa0\x72\x4d\x38\x9b\x88\xab\xde\x70\xcf\xc8\xbc\x7b\x36\x54\x73\xaf\x7a\x57\x8a\x7f\x16\x3f\xff\xf8\xde\x93\xec\x62\x6f\xb2\x18\x95\x52\xd9\xe3\x4c\xef\xaa\x24\x39\x03\x3d\xbe\x1a\xdd\x2a\x64\xa0\xde\x65\x06\x05\x71\x4c\x10\xc9\x0c\xe2\x64\x88\x1b\x14\x00\x40\x45\x22\x02\xd9\x5e\xe2\x51\x52\xb3\x0d\x9a\x64\xb9\x1c\x53\x29\x8f\x0a\x16\x48\x28\xb7\xdc\x75\x0e\xa9\x64\x02\x4c\xa1\x11\x7a\xef\xfe\x5a\x36\x6b\xdf\x5c\x8f\x67\xee\xbe\x59\x3f\xdc\x2d\x9e\x05\x80\x23\x91\x96\x6c\x23\x8e\x04\xcb\xb3\xb0\x35\xcc\x3c\xef\x4f\x55\xeb\x8f\x8f\x8c\xdc\xbd\xbe\x8a\x19\xf1\xe2\x09\xec\xd5\x88\xf1\xd6\x8a\xae\x8c\xb4\xce\x72\x8a\x17\x65\x41\x88\xd6\xaa\x89\x21\x71\x6d\x7e\xcc\x0e\x1e\x7c\x07\x03\x15\x3d\x36\xa8\x69\xac\x77\x8c\x12\x63\xd8\x92\x11\xd7\xcb\x13\x59\xc9\x5e\x60\xf1\xcd\x47\x9b\x58\x32\xf6\xeb\x8d\x55\xe2\x67\x73\x46\xf0\x14\xfc\x0b\xc7\xe0\x29\x78\x13\xb8\xe7\xdf\x30\x26\x16\xc0\xf3\x8b\xba\x19\xef\x72\xff\xdc\x5b\x24\x1e\xe2\xf2\xfd\xf5\x76\x10\xc7\x72\x34\xea\x42\x45\xad\x4d\xb3\x24\x16\xf8\x3d\x21\x82\x96\x1c\x94\x03\xff\x2d\x02\x0d\x5c\x07\x5a\xf1\x84\xf8\xa9\x78\x3d\x8e\xe4\xce\xe4\x5e\xfb\xa9\x45\x3c\x04\xf3\x10\xf2\xd5\xf5\xe8\xf3\xe5\x97\xa5\x97\xa4\x22\x20\xe5\xaa\x80\x27\x8c\xa6\x6e\x11\x95\x84\xb2\x8d\x7c\xbd\x21\xe9\x65\xc9\x98\xcd\xb8\x47\x54\xcf\x0b\xf0\xf8\x5c\xfe\x72\x99\xde\x85\xc7\x36\xbc\xb4\xab\xae\x6e\xd7\x4b\x1b\xc4\x32\xf6\x5e\xfc\xb6\x6c\xb0\x54\xa7\x2b\x1d\x2c\xc3\x7d\x7c\xb9\x74\xe5\xed\x23\xf3\x8e\xaf\xad\xc0\x7c\xe5\xc4\x34\x73\x59\x97\x33\xbd\xad\xd0\x40\xe8\x71\x88\x87\xb9\xed\x94\x9e\x58\x82\x0f\x40\x8c\xdf\xa8\x15\x8f\x33\x95\x80\x78\x82\xf2\x0c\xcb\x42\x37\xa2\x13\x14\x7b\x90\x55\xa4\xc7\x74\xe9\xd3\xd3\x15\xeb\xc2\xe9\x99\xb8\xf3\x2e\xc0\x8a\x15\x7e\xcf\x0d\xfc\xc7\xfb\xf6\x3f\x52\x3d\x69\x15\x69\xf1\x82\x95\x79\x7d\xa1\xf7\x61\x3e\x26\xd1\xaa\x81\xfc\xbb\xc5\xc3\x30\x22\x1e\x66\x6a\x34\x1d\x07\xde\x39\xc2\xcc\x38\x9d\xc9\xac\x5d\xf1\xe4\xb5\xeb\x9c\x2c\x01\xb6\x83\xb3\x3f\x20\xc4\x11\xcc\x33\x25\x99\x7d\x31\x41\x0c\xe2\xa1\x4e\x06\x3c\x03\xb4\x48\x55\x90\xc0\x10\x6a\x82\x59\x86\x12\xa2\x54\xd0\xc8\x53\x9a\x51\x49\x66\x1f\x99\x70\xa4\x44\x05\xfe\x9f\x4e\xc4\x18\x3d\x8b\xff\x97\x67\x7d\x97\xb3\x4f\x7c\xeb\xbb\x0f\xc1\xbc\xcd\xf1\x5d\xca\x46\x30\xbf\xf3\x1f\xf1\xcf\x4c\xbd\xf7\x01\xf2\xcb\x0a\xcc\x9d\xde\x6b\x98\x51\xfa\xdb\x71\xe6\x27\x04\xa8\x09\xcb\x9b\x83\xa4\x16\x2c\x91\x37\xbc\x54\x2f\x4d\xe0\x39\x5e\x20\x35\x6a\x59\x86\xa5\x1a\x02\x62\x41\x2a\x9f\x46\x4b\xdb\x25\x90\x2d\xcd\x2f\x74\x8c\x0a\xab\xde\x8c\x33\x5a\x29\x7f\x88\x8e\xa6\x52\x4d\x8f\x8d\x23\x09\xf8\x6e\xf2\x6a\x5a\x95\x58\x6e\x83\x2e\x6f\x86\x7b\xcd\xc6\xf6\x03\xbf\x5b\x33\xf4\xf4\x35\x03\xa0\x35\x55\xf4\xe7\x96\x8d\x54\x19\xb7\x6c\x7c\xfe\xf9\xe2\xee\xdc\xb8\xc4\xa2\x81\xd2\xcc\x8e\x62\x93\xf8\x59\xfb\xde\xc7\xe6\xaf\xf9\xcd\xae\x06\xce\x94\xd9\xdb\x5a\xa6\x49\x39\xbe\x91\x14\x7d\x75\x8e\x1e\x1d\x4f\xa9\xf1\xe8\x74\x39\xf5\xa9\x2b\xe6\xbd\x9b\xe0\xa9\x4f\xb3\x54\x67\xe9\xb4\x19\x15\x29\xb3\x0f\x2d\xc8\xc5\x55\x62\x7d\xbe\x34\xc4\x15\xfb\x6b\x10\x05\x73\x8c\x1f\x42\x50\x45\x21\x04\xd5\x3e\x50\x3d\xc1\x57\xf6\x84\xfe\xc3\x9a\x40\x8b\x0b\x9f\x0c\x93\x58\x6f\xe2\x35\x64\x6f\x3c\x33\x80\xa3\xbb\xfb\x91\x7f\x6d\x36\x4f\xae\x4d\xe0\xba\x79\x20\xc3\x15\xc8\x47\x54\xa3\x06\x5f\x0c\x02\x4e\x87\x10\xc8\x8d\xc9\x42\xc1\x23\x20\x08\x84\x19\x64\x0e\x71\xcd\xf8\xf6\x7f\xe0\x59\xf7\x9c\xab\xe7\x54\x59\x9d\xf9\xfa\x30\x46\x20\x0f\xc2\x32\xeb\x8b\xa7\xc4\x1f\x6e\xa9\xfb\x98\x77\x2e\xbc\x77\x2b\x43\xc6\x89\xc1\xe7\x94\x3f\x11\xb9\x4a\x9e\xa7\x09\x07\x92\xc0\x17\x00\x29\x54\x05\x40\x0a\x13\xa1\x41\x65\x31\x45\xd3\x8e\xc4\xf8\x40\x0a\x03\xe1\x69\xd9\x04\xa3\x50\x31\x00\x19\x90\xe9\xfd\x49\x5b\x39\x78\x69\x57\xf5\xa2\xe4\xe8\x70\x93\x35\x25\x26\xa3\x26\xcb\x10\x1a\x2f\x72\x90\xc1\x3e\x2e\xfe\x97\x85\xd3\x73\xf2\xc7\xda\x32\xd4\xc1\xef\x72\x18\xf3\x44\x61\x74\x25\x15\x71\x5a\x9f\x8c\xb8\x91\xfb\xfb\xa4\x8c\x00\xae\x4d\x92\x11\x44\x9e\xf3\xb3\xc8\xde\xc9\x4f\x97\x11\x2e\xd6\x27\x23\xf6\x80\xf6\x09\x85\x78\xe6\xcc\x75\x92\x8c\x38\xed\xf4\x3e\x0d\x03\xbe\x1c\x5f\xc4\x0d\x10\x1f\x1f\x91\x10\x5a\x3a\xf3\x28\xee\x3b\x4b\xe4\x1e\x0c\xf3\x04\x90\x19\x77\xd3\xcf\xd7\x38\x14\xe7\x56\x9a\x02\x7c\x0d\x1c\x01\x03\x98\x9e\x72\x6e\x40\xfc\x9b\x36\x27\xdb\x15\x33\x76\xef\xba\x72\x88\x55\x67\xd4\x38\x15\x99\xd9\x39\x5a\xc2\x60\xc6\x2e\x0b\x95\x71\xd9\xcb\x1f\x58\x0f\x2f\x88\xf9\xb5\xb3\x73\xd5\xac\x2c\x44\xc6\xdc\x8c\x00\xb5\x62\x3a\x0e\x90\xfe\x91\x0a\x85\x02\xcf\xb2\x00\x2a\x49\xfd\x9f\x85\x38\x4e\x4d\xb5\xff\x50\x14\x4a\xbb\x28\x93\x76\x2b\xd2\x41\xda\x4d\x18\xde\x0d\xc1\x3b\x41\x7e\xfa\x49\xa9\x7b\xe4\x97\x96\x9f\x21\xf7\x15\x6f\xe2\x15\x34\x9f\x9a\xa0\x92\xf3\x88\x6f\x0b\x92\x49\x37\xe7\x18\x62\xea\x99\x85\x25\xba\x9a\x82\xd9\x47\xa2\x48\xb9\xf4\x43\xf7\xf0\xc0\xfd\x5d\xec\xd4\x67\x6c\x56\x88\x67\xcf\xb4\x4d\x3e\xe7\x74\xba\xf7\x39\xe8\xa7\xb1\x01\x34\xbf\x63\xc7\x85\xe4\xad\xcf\xf2\xf9\x73\xf2\x36\xe6\x1c\x79\x6b\x98\x22\x6f\x5d\x8c\xa2\x7b\xe5\x83\x97\x94\x94\x5c\xf2\xe0\x4a\x71\xef\x69\xfc\x8e\xd4\x19\x56\x3b\x9b\x73\xb0\x84\x7d\xb8\x78\xd9\xd1\xc1\xd9\xb8\xea\x1e\xf7\x17\xef\x09\xb1\x1b\x87\x95\xa5\x91\xb0\x32\x29\x3f\xae\x0e\xd3\xb3\x89\xe2\x45\x44\x23\x1d\xed\x3f\x92\x81\xc0\x23\x61\x98\xec\x60\x54\xe3\x82\x5e\x9f\x42\x10\x13\x13\xa3\x8b\x49\xa4\xfb\x6c\x52\x10\x9e\x41\x70\x8e\xf4\x3f\x6f\x87\x1d\x2e\xee\xc1\x96\x58\xf7\xbc\x43\xc3\xe2\x4b\x10\xcb\x26\x90\x95\x7a\xe6\x93\xb4\x44\x7b\x5c\x58\x58\x5c\x8a\x8e\x9d\x5d\x38\x7e\x3d\xa5\x8a\x0c\x3a\x5e\xba\x7f\x11\x5b\x0d\x85\xad\x94\xb2\xa9\xfb\x52\x04\x8a\xa3\x11\x00\x88\x07\x8e\x45\x1c\x51\x56\xe8\x42\x26\x2b\x8a\xd0\x14\x19\x19\x19\x17\xa9\x4d\xc6\x14\xd1\xf9\x36\x95\x22\xf9\x14\x6a\xae\x9f\xb2\x1b\x81\x36\xb0\x17\xb1\x57\x5f\x6c\x27\xa2\xb6\x62\x5a\x57\xf8\x37\x28\x9d\xc8\x5f\x5f\x5e\x2c\xd1\xf7\x80\x14\xa3\xa5\x2e\x20\x19\x03\x44\xdf\xa3\xc8\x80\x09\x64\x05\xd0\xaa\xa2\x89\x74\xae\xa4\xa3\x74\x1b\x01\x06\x54\x4a\xfa\x9e\x10\x50\xc0\xdd\x01\xeb\xbb\x7a\xb2\x9e\x8a\x3f\x54\x0c\x0a\x84\xa4\xe2\x4e\x57\xc1\x50\x85\x49\xdc\x0c\x1b\x89\x3b\xab\x70\xa0\x28\x9e\x17\x3f\xab\xdd\xf1\xcc\xea\x15\xcf\xed\x6e\x6a\xd8\xf3\xd2\xfa\x25\x4f\x5c\x8e\x85\xcb\xa9\xb2\x79\x35\x66\x6b\xf7\xee\xb9\x96\x4f\x2c\xb3\x77\xf7\xa4\x9a\x6b\x17\x94\xcf\x7f\x74\x77\x6b\xfb\xe1\x0f\x76\x89\x6f\xee\x7e\xef\x9a\xb6\x8a\x4b\x1f\x5b\x25\xd9\x0f\x67\x60\x19\xb5\x88\xfa\x1b\xec\x68\x40\x8a\xfd\xd5\x21\x0e\xf7\x80\x83\x41\xea\x11\x26\x3a\x04\xd5\xa8\x24\x11\x99\x88\x48\x0d\xd5\x40\x0b\xfa\x9d\x20\xf8\x3a\x4a\x66\x27\x69\xea\xdb\x68\x88\x1a\x6e\xb3\x18\x88\xae\x93\x4c\xf7\x9a\x28\xdc\x17\x46\xee\x26\xdb\x20\xde\xfd\xdc\x51\xd1\xae\xcc\x68\x79\x20\xf6\x24\x70\x0a\xe7\x16\x3d\x71\xf2\xf6\x93\xdd\x3f\xfe\xd8\x8d\xff\x3c\x21\x9e\x0d\x89\x4d\x49\x8a\x33\xa9\x43\x42\xd4\xa6\xb8\xa4\x94\xd8\x10\x38\x2d\xfe\x48\x02\xf4\x40\x36\xe8\x3d\x86\x07\xe8\xb2\x4d\x20\x23\xe1\x7a\xe2\x8f\xc9\xf5\xa3\x25\xf1\xf1\x25\xa3\xf5\x22\xdb\x30\x8f\xbc\x9a\xd7\x80\xa5\xf0\xdb\x08\x71\x31\x74\x1d\x6b\x08\xfa\x1f\x7f\xc1\x1a\x65\x58\x87\xf0\xed\xda\x08\xa9\x95\x8a\x68\xb2\xa6\xad\x44\x5e\xa8\xed\x64\x4d\x91\x03\x93\x0f\x13\x05\xb0\xeb\xdb\x25\xc7\x4a\x39\xf3\xe3\x47\xe2\x3f\xb1\x29\x3e\x7f\xf9\x9a\xba\x5d\xbf\x59\x07\x7f\xf6\x3a\x36\x6c\x7c\xfc\xf1\x4b\xd7\x31\x85\xde\xe7\x98\x2b\x73\x1f\xba\x14\x57\x0f\xcd\xc6\x9b\xd0\x7f\x27\x16\xc1\xc3\x13\xbe\x1a\x3f\x5f\x72\xf3\x05\x25\x4a\x41\x25\xa4\x76\xaf\xd5\x1f\x11\xc7\x4c\x60\xb2\xa4\x0a\xbe\x81\xba\x73\x78\x63\x48\xb5\x13\x27\xb3\xbd\x24\xb5\x24\x31\x01\x07\x0c\xa7\x40\x8a\x4c\x08\x04\x0c\x4b\x53\xa3\x90\x25\x35\x66\xb3\xfd\xe1\xe2\x58\xc1\xc1\x99\x20\xe7\xc4\xf2\x90\x69\xc5\xdc\xbc\xe8\x8e\xe5\x05\xc4\x3c\x48\xcc\x84\x34\x30\xd8\xd3\xe4\xd2\x7c\x64\xef\xbb\x62\xa4\x70\x6e\x93\x27\xa2\xe2\x26\x07\x36\x14\x6a\x88\xe1\x90\x18\x0c\x63\x3d\x5d\xac\xd8\xb8\xfd\xe1\x31\xe5\xf8\x93\x3b\x9b\x66\x1c\x7c\x65\xb5\x92\x31\x3f\x07\xc9\x2f\xae\xd4\x84\xaa\x12\x53\x12\xdb\x97\xb7\x7a\x14\xe1\xe9\x0d\x63\x75\xe5\x55\x1f\x39\x1a\xe7\xe6\x28\x0b\xc7\x5a\xd2\xd2\x5a\xc6\x0a\x95\x39\x73\x1b\x1d\x54\x86\xec\x24\xf1\x3a\x5c\xde\xff\xac\xed\xaa\x99\xac\xed\xaa\xbe\x70\x6d\x57\x21\x50\x5f\x54\x31\x59\xdb\x55\xe9\x0b\x9e\xb4\xb8\x3c\xf4\xaf\x61\x27\x3c\x33\xff\x8e\x55\xc5\x43\xfd\x45\xbd\x85\x89\xf9\xe3\x37\xcf\xff\xfa\xeb\x19\x8d\x75\x9d\x5f\x3f\x3a\xb3\xa9\xbb\x1b\x1b\x8b\x4c\xf5\x13\x0d\xf5\xab\x92\xc2\x32\x4a\x9a\xec\x8d\xcb\x1b\x2d\xf0\xdc\xdf\x30\x0c\x62\xc9\x13\x4c\x56\x66\xa1\x07\x01\xda\x87\xe9\xcd\xe4\xf2\xce\x8d\xed\xc2\xc4\x51\xb2\x48\x5c\x96\x10\x88\xed\xca\xf4\x4e\x88\x5f\x62\x18\xad\xae\x33\xb7\x73\x79\x64\x5c\xf5\x38\x43\xf3\x43\xfc\x32\x0a\xa9\xc9\x1c\xe3\x88\xc5\xb4\x95\x66\x26\xd1\x0e\x0a\x41\x3c\xeb\x0b\x28\x52\x93\x60\x7f\x92\x66\x4a\xc1\x18\xf0\x8f\x8a\x9c\xa0\xb2\x7d\x0a\x2a\x4b\xef\xcf\x82\x20\x10\x3d\x75\x7f\x6e\x61\xa2\x8c\x11\xd8\xe8\xc3\x0a\x51\xf4\x2e\x13\x7f\x54\x32\x86\x20\x83\x19\x0a\xbf\xf8\x30\xbc\x7b\xeb\xad\xbd\xb0\xf8\xcc\x2d\xde\xf7\x48\x7a\x28\x63\x84\xaf\x0e\xfd\xd0\xc7\x4c\x20\x40\xc9\xb8\x1f\xc7\xb8\xbc\x9f\xd3\x51\x35\xff\x8f\x3a\x6a\xb8\xfb\xeb\xac\xf5\xe2\x57\x1f\xbd\x0d\x9a\x4b\x6c\x5f\xdb\x2f\x81\xd8\xbf\x7c\x82\x25\xf7\x35\xe2\x28\xf9\x65\x8a\xe1\x34\x7d\x45\x7e\x43\xbd\x8f\x21\x40\x13\x58\x46\xf6\x73\x8d\x28\x87\xc8\x48\xf6\x17\xe9\xa8\xba\x73\x75\x54\x33\xd1\x51\x53\x24\x1d\x55\xf8\x39\x15\xd5\x33\x5d\x43\xad\x9f\x3b\x6b\x64\xac\x71\xc7\x63\x4b\x7a\x4e\xee\xea\x00\x25\xce\x3c\xf2\x64\xb7\x67\xc7\x4d\x2c\x78\xf5\xd5\x79\x83\x2a\x67\xa3\xc7\xd1\x98\x9b\x24\x7e\x59\xbf\xf9\x9e\xa1\xc5\x0f\x6e\xae\x66\xa3\x6b\xd6\x18\x93\x36\xf6\x36\xae\x99\x91\x6a\x6d\xdf\xd4\xad\x4d\x37\xe2\xfc\xf9\x0c\x6d\x6d\xf1\x23\xe5\x6e\x35\x8e\x9a\x8f\xd2\xa5\xc6\x37\xae\x9b\xe9\xb0\x35\xaf\xf4\xc5\x89\x15\x70\x79\xd3\xf4\x52\xcd\xcf\xe8\xa5\x66\x50\xe1\x28\x8a\xf9\x24\xd1\x93\xcb\xc3\x70\xd9\xbf\xf6\x36\x61\x43\x72\x13\xa2\x79\x22\xa4\xc6\x32\xc9\x1b\x25\x7a\x62\x08\x90\xa4\x4b\x7f\x15\x36\x0e\xc8\x0c\xe4\xa5\xdb\x46\x07\x74\x34\x30\x48\x3a\x9a\x94\x3f\x5a\x74\x33\xb9\xed\x15\x60\x80\x7e\x71\x19\xdc\x2d\x5e\x01\x57\x89\x0b\xb9\x3c\x71\x08\x8e\x78\xbf\xf7\xbe\x8e\x90\x6f\x4e\xe4\x73\x79\xe7\xe9\xbe\x9a\x0b\xe8\xbe\xfa\xa9\xba\x2f\x65\xba\x54\xdb\xd2\x22\xe7\xf2\xb1\x35\xeb\xaf\xf6\xe1\x9b\x57\x3b\x19\xbd\xbb\xd4\x10\x06\xa4\x2b\x6c\xd7\x97\xd7\x7e\x7e\x5d\xd3\xa7\x29\xfd\x57\x2d\x84\xdf\x91\x67\x2d\xc5\xcf\x9a\xe9\xc7\x15\x0f\xf2\xe1\x8a\x53\xfe\xb0\x0c\xe3\x63\x10\xc1\x15\x17\x68\xdd\x3e\x3c\xdf\x58\x03\x4b\x8e\xe2\xcc\xe0\x21\xe8\xfd\xee\xc6\xc7\xae\xfb\x0e\x66\x41\x3d\xf3\x2f\xcc\x26\x5c\x69\x97\x69\xf0\xde\x2f\xe1\x95\xaf\x91\xfa\x30\xbd\x5e\x2d\x61\x3c\xed\x41\x40\x8b\x3d\xb7\x5e\x2d\xa1\x7b\x8c\xd6\xab\x3d\x88\x7f\x8f\x89\xbd\x98\x39\x75\xf0\x20\x9a\x1c\xcb\xa9\x31\x7f\xe7\xde\x8f\x0e\x64\x20\xe6\xaf\x00\xdf\x69\xa1\xf8\x77\xf6\x39\xff\xca\x27\xf7\xe8\xc3\xf7\xf8\x35\x97\x77\x5e\x6d\xc6\x80\xe0\xf0\xdd\x23\x50\x9b\xf1\xd7\xe2\x00\xbe\xcb\x30\x37\x93\xed\x39\x73\x0b\xdb\xf3\x01\x95\x95\xd9\xe2\x6c\xee\x2a\x01\x49\x78\x04\x84\x6f\x69\x8e\x64\xbd\x2a\x26\x88\x0f\x22\xdc\xf3\x07\x0c\x6a\xa1\x21\x41\xc5\x08\x2a\x1a\x35\x93\x2d\xa7\x96\x83\x29\x56\x76\xb2\x95\x5a\x88\xfd\x5d\x4f\x8d\xed\x38\x06\x23\x3b\x7b\xe1\xb5\x73\x20\x76\xee\x75\x0b\x73\x72\x16\x5e\x3f\x07\x5b\x14\xae\x5d\x98\xcd\x76\x44\x5b\xf2\xad\xd6\x7c\x4b\xb4\xf7\x3e\xb9\x29\xcf\x6a\xcd\x35\x45\x33\x96\x39\xbf\xde\x33\xa8\x24\x11\x87\x8a\xc1\x3d\xbf\x9e\xab\x9c\x8b\xdf\x2a\xf0\x82\x3e\xac\x1c\xdc\x7d\x72\xae\x32\xa3\xbb\xa9\x50\xe1\x3d\x14\x53\xd4\xd4\xe3\xcc\x98\x85\x5f\x33\x73\x31\x64\x46\x77\x06\xe5\xa1\xf8\x14\x87\xf3\xd3\xcf\x3b\x5f\x68\x7e\xc1\xf9\x62\x0d\xa8\x61\x15\xa8\x8f\x10\xc5\xf8\xf7\x5c\x1e\x61\xc7\x99\x63\xde\x8f\xa0\x94\xf2\xf5\x12\x52\x07\xc2\x9f\xdf\xa3\x24\xd1\x1a\xe7\x9c\x2f\xe8\xda\xf0\x1d\x2f\x48\xba\x51\x14\x9e\x50\x64\xa4\x2e\x90\x6a\xc4\x0d\x8a\x7f\xcf\x5a\xe4\x5a\xf1\xf8\x96\x2a\x50\x91\x42\x49\x39\xf3\xb2\xf0\xa3\xfb\x42\x42\x9d\x73\xaf\x1b\x83\x19\xe2\x5d\x9e\xda\xd4\x98\xd0\x50\x38\x43\x9e\xdb\x8e\x9f\xbb\x91\xcb\x9b\x7a\x9e\xd0\xfc\xe2\xf3\xc4\xe0\x65\x20\x5c\x06\x11\xa7\xff\x28\x75\x87\xfc\xfa\xf1\xf6\x9b\x31\x9f\xbe\xe4\xf2\xa6\x9d\x27\x34\xff\x0f\xe7\x09\x8a\xd5\xd3\x27\x3d\x63\x5c\xf1\xd1\x99\xee\xc0\x63\x7c\x9c\xf3\xe5\xf2\xe6\x10\x9b\x1e\x97\x17\x38\x4f\x20\xc1\x87\x0f\xc4\x30\xfe\xd9\xe9\xd3\x32\xd4\x10\x38\x4f\x60\x6d\x99\xf6\x67\xaa\xb6\xec\x9e\xaa\x2f\x33\x5d\xbb\x16\x1c\x5b\x92\x9b\xbb\xe4\xd8\x02\xb1\x57\xfc\x91\x49\xda\x85\xe1\xc1\xa3\xa2\x30\x30\x38\x73\x32\xb3\x7b\x4d\x4d\xfd\xa5\xb3\x73\xd8\xc1\xb7\xbd\x47\x30\x18\x98\x39\x1d\xe7\x65\x1a\xd5\x88\x14\xd8\x47\xdc\x25\x5c\xde\x45\xce\x12\x9a\xff\xfb\x59\x62\xcc\x36\x74\xc5\x40\x5a\xda\xc0\x15\x43\xe2\x6b\x10\xcc\x46\xd1\xb3\xc4\xbf\x6d\x69\xee\x38\xec\x6a\x77\xa7\x31\x8f\x10\x14\x68\x42\x13\x91\x53\x58\xdc\x3e\x29\x7e\x48\xc8\xd2\x66\x3b\x12\x08\x8f\x88\x7e\xb2\x9e\xcb\xbb\xd0\x59\x42\xf3\x33\x67\x09\xfd\x39\x67\x09\x7d\x80\x9a\xa3\x20\x5f\x74\xd7\x8a\xa2\xa2\x15\x77\x2d\xc2\xc5\x0a\x54\x20\x77\x56\xa6\x2a\x14\xa9\x95\x4e\xe6\x35\xf7\xc0\x65\x2d\x8d\x5b\x06\x3c\x98\x86\x07\xc4\x7f\xa9\x4c\x19\x71\xf1\x2e\xb3\xca\x5f\xdb\x7a\x06\xd7\x84\x1c\xa8\xa6\xa4\x12\xbf\x97\x21\x90\xe1\x9d\x51\xe0\x05\x8e\x1f\x27\xb6\x7e\x4e\x26\x0c\x06\xf9\x7d\xc5\xba\x40\xca\x60\x22\x89\x22\xb3\x59\x2d\xe6\x29\x85\xfa\x1c\xe0\x08\x26\xda\x21\xdd\x0a\x2f\x5a\x84\x27\x9b\x06\xb5\x32\xf5\x69\xcd\xb9\x7a\xf1\x34\xd9\x02\xb7\x3e\xbf\xb9\xa4\x64\xf3\x73\x5b\x17\xdc\xbb\xa1\x0a\xf8\xc4\x9c\x96\xcc\xe2\xce\x6c\x7c\xb4\x78\x12\x4a\xf9\xf8\x9c\x0e\x76\x91\xc6\x5e\x64\x9a\xb1\x6f\x7e\x7e\x87\x54\xac\xef\xc0\xcc\xfc\x45\x87\x67\xdb\xb0\xc5\xc6\x56\xd5\x9b\x75\x8f\xab\xbb\xcc\x42\xe7\x9c\x07\xeb\xb6\x37\x73\x4d\x24\xef\x07\xed\xf2\x9f\x25\x10\x62\x05\x44\x71\xd2\xa1\x87\xec\x63\x3a\x72\x5e\x90\x22\xfd\x13\x19\x7f\x78\xaa\xe1\x02\xcd\xc8\x52\x93\xda\x22\x9f\xe5\xdf\x12\x68\xc5\xf3\x9a\x7a\xda\x14\x5d\xa8\x25\x81\x85\x22\x55\x43\xb0\x49\x5d\xb2\x01\x62\xcb\xcd\x39\xbc\xb0\x48\x76\xdf\xe9\xf8\x7a\x9d\xed\xac\xab\x7f\x57\xef\xec\x7d\xb3\xd3\xd3\x07\xf6\xce\x1e\xd8\x33\xe0\x84\x76\xf1\x03\xd0\x43\x4f\x28\x86\x32\x4d\x76\x68\x43\x42\x31\x96\x33\xf9\xcb\xac\x18\xb9\x7b\x43\x0d\xd6\x90\x17\xae\x5c\xf8\xf0\xf6\x86\xca\x35\xc7\x06\xc4\x19\x78\x7c\x6f\xcb\x19\x6d\x49\x4f\x6f\x19\xcd\x59\x99\x3d\xda\x92\x91\xd1\x32\x9a\x4d\x79\xd3\x88\x10\xd7\x4a\xd7\x7e\x3c\xd1\x0f\x65\x40\x80\xba\xfd\x7b\x18\x1d\x54\x61\xea\x46\x86\x50\xac\x5a\xa5\xc0\xad\x23\xa8\x8c\x51\x93\xdd\x98\xaa\x65\xbe\x53\x08\x4b\x68\xc7\x7d\xc0\x54\x73\xad\xe2\x17\x67\xfe\x2c\x9e\xfa\xf7\xd0\xfc\xe2\x95\x77\x2c\xbc\x4f\x99\x52\x92\x0a\x41\x67\x51\x5a\x79\x2a\x55\x35\x60\x9d\x78\x19\xdc\x99\x7a\x78\xb8\x69\xcb\x6c\x8f\xb8\x3f\x36\xd3\x1a\x0b\xf1\x5a\x9b\x0b\x51\x7b\xe6\x6b\x62\x3d\xd7\x28\x50\x07\x62\x49\x2d\x71\xc4\x58\x80\xe7\x54\xc0\xf2\xa4\x0a\x1e\x57\x17\x0c\x32\x81\x1c\x6b\x69\x5e\x81\x9f\xdd\x41\x41\x7c\xf7\x39\x1e\x17\x3d\xd3\xe0\xcc\x20\xc7\x3c\x9b\xc9\x6e\xf0\xab\x91\x3e\x8f\x8b\xd2\x75\x3e\x3e\x43\xa0\xe6\x56\x00\x50\xc5\xc5\x5c\xfa\x77\x5f\xc9\x38\x70\xcd\xde\xd5\x69\x96\x10\x0c\xf2\x8a\x21\x50\x3f\xee\x81\x07\x40\xf5\x77\x9c\x92\x7f\x56\x2a\x22\xf7\xa8\x08\xb3\x0f\x10\x24\x83\x77\x04\xa1\xab\x3d\x65\xb2\xa2\x1c\x77\xeb\xfd\xb7\xde\x8a\x00\x2d\xc4\x73\x31\x33\xb0\xae\x38\x5e\xe0\x39\x61\x9c\x74\x44\x06\x68\x1c\x09\x44\x00\xc9\x06\xfd\x8b\x49\x57\x1f\x58\x61\x89\xcc\x45\xd7\xd5\xcf\x17\xc0\xa4\x81\xe1\x89\x2c\x33\xf4\xbf\x2a\x60\xe6\xb6\x66\xc5\x73\x50\x2c\x3e\x27\xc4\xbb\x9b\x2e\x5e\x07\x33\xa5\xba\x3f\xeb\x44\x66\x67\xa9\x99\x9e\xd3\x29\x7e\xfd\x9f\x69\xcc\x92\x19\x2d\xf0\x97\x26\xa4\x48\xe0\xc2\xa4\xa3\x46\x53\x2f\x9b\xea\xa8\x21\x48\xad\xd3\x9b\xa0\x40\x0b\xb2\x84\x02\x8d\xbb\x49\x8d\x08\x03\xae\xb6\x41\xec\x74\x58\x07\xb4\xca\x25\xc7\x4e\x22\xeb\xb7\x2b\x05\x74\x41\xe2\xd7\xf1\x69\x1a\x6c\xde\xe0\xe1\xf9\x39\x39\x38\x52\x46\xfc\x61\x49\x4a\xef\xfe\x51\x0b\xa3\x2e\xaf\x64\xc3\x22\xf5\x99\x46\x63\xa6\x3e\x92\xcb\x13\x6f\x84\xec\xd9\x97\x35\xb7\x6c\x1f\xf2\xf8\x34\xc5\xaf\x1f\x7d\x16\x7e\xe7\xcd\x8e\x73\x9a\x35\x20\x7e\x04\x5a\xab\xdb\xe7\xd7\xb9\x81\xcb\xfb\x39\xbf\x8e\xe6\x67\xfd\x3a\x53\x6d\x60\xd3\xfd\x3a\x13\xeb\x40\x1d\x36\x70\x70\xc4\xe3\x19\x39\x38\x20\xbe\xb7\x8e\x2a\x83\x57\x86\xe9\xd3\x12\xc2\xc3\x13\xd2\xf4\xcc\x35\x70\xa3\x78\xa3\x67\xf6\xb6\x16\x42\x27\x3c\x2a\x56\xe1\x95\xfc\xac\xf8\x51\xac\xcd\x9d\x10\x9f\x69\x56\x4b\x6b\xe5\x47\x5f\x8d\x44\x1d\xca\x2d\xf1\x30\xc0\x82\x92\x66\xfd\x06\x81\xc0\x03\x02\x01\x05\x5c\x7c\x3a\x42\x29\xd3\x3d\xe9\xeb\x91\x53\xfd\x84\x52\xaa\x97\x4f\xaf\xd6\x16\x00\x16\x62\xee\x16\xbf\x9b\x5e\x3b\xf1\xe0\x41\x50\x41\x08\x77\x52\xfc\x66\x7a\x05\x45\xee\xe4\xfd\xd7\x5e\x4b\x75\xb0\xc3\x54\x8f\xa5\x79\x31\x14\x8a\x8a\x62\xcc\x52\xfd\x88\x99\x25\x51\x32\x5d\x6f\x99\x54\x92\x01\x1f\x1a\x40\x2d\xde\x89\x0f\x29\x77\x70\x79\x92\xd6\x42\x5c\x21\x7e\x1d\x97\x60\x83\xdc\x86\x6d\x28\x46\xb2\x7f\x07\xd3\x33\x8a\x4c\xe0\x58\x62\x37\xe1\x41\xca\x0f\xf7\x3b\x34\x8d\xc8\x68\xc0\xf1\xb0\x46\x13\xdd\xbf\xfd\xab\x7f\x8a\x56\x46\xc4\xc0\x94\x17\xdc\x6d\x99\xb3\xd6\xd6\xd4\x2c\x33\x9b\x16\x95\xd7\x6f\xea\xcb\x02\x36\x3d\xc5\x9c\x0a\x9c\xcb\x61\xb0\x60\x63\xe9\x33\xb3\xaf\x1c\xca\x2c\xc6\x3f\x99\x43\x57\xce\xe6\x8a\x4f\x3f\xd3\xd9\xd8\xd8\x39\xf9\x97\xc4\xa8\x60\xda\xf6\x70\x79\xd3\x69\xd3\xfc\x3f\xd2\xe6\x9a\x4e\xdb\x9e\xf4\x8e\x95\xd5\xb5\x13\x26\xe3\x92\x4a\x82\xa7\xea\x4d\xb1\x38\x52\x80\x4d\xcb\x30\x24\xe3\x19\xd2\x3c\x72\xed\x3c\x77\x05\xfe\x71\xcf\xbb\x76\x84\x39\xe9\x6d\x9e\xd3\xd3\x33\x67\xf2\xaf\x2f\xe7\x8b\x5b\x27\x68\xc9\xbc\x26\x55\x6f\x08\xb4\xd9\x84\x00\x1c\x0b\x92\xf1\x09\x82\x21\x48\x06\x41\xc3\x64\xbe\xf4\x4a\xc6\x5d\xb5\x5a\x6d\x50\x27\x93\xd9\x4d\xec\xbb\x21\x64\xff\x3a\x77\x6e\xbb\x5d\xe7\xcd\x6e\xe6\x53\xf1\xfb\x3f\x2d\x3a\xbe\xa2\xb0\x70\xc5\xf1\x45\xa2\xe2\xa6\x9b\x40\x0d\xc1\xf8\x23\x67\xa5\x5d\xa1\xb0\x57\x3a\xb9\x2c\x71\x4f\x16\x86\x62\x6b\xba\xb4\x3f\x8b\xcb\xba\x1f\x32\xc5\xd7\xce\xfc\x24\x9e\x51\x1a\x32\xe2\xb4\xe9\x06\x25\x1d\xdf\x1c\x1c\x13\x79\x37\xf6\x29\x15\xa2\x37\x4a\x42\xb3\x41\xc6\x43\x5d\x2e\xf0\x50\x2b\x89\x9a\x0c\x12\xb7\xca\x12\xc4\x67\x9f\x53\x9b\x1c\xe7\x78\x19\xf2\x79\xb5\x43\xc0\xe7\xd6\x0e\xea\xc1\xfd\x09\x4a\x0c\xf2\xc7\x60\x64\x5d\xfc\xba\x90\x10\x95\x2f\xf0\x6d\xda\xb5\x25\x39\xbf\xf8\xb2\xe0\x60\xb5\x74\x2d\x22\x97\x92\x9d\x3f\xaa\xb0\x20\x3f\xcf\xa8\xb0\xc8\x55\xd8\x84\x10\x15\x4a\x85\x43\x11\x4f\x25\xb5\x41\xda\xe7\x39\xa5\x4b\x89\x85\x99\xc2\xe7\x60\x71\xa9\x7c\xd5\xfd\xdd\x92\xd4\x28\x1c\x01\xb9\xa9\xa0\x73\x79\x43\xc3\xde\x85\xf9\x41\x3f\x06\xc7\x65\xda\xf4\xf6\xf8\x48\x01\xfe\xf4\x27\x3e\x22\x3e\xcd\x60\x49\xd3\x84\x70\x3f\x41\xe1\xe8\xe5\xb5\x4d\xab\x3a\xf3\x4d\x51\x23\xe2\x69\xe0\xd9\xbe\xfa\xab\x2e\x5f\xd9\xe9\x74\xad\x7c\x7a\x8f\xa7\xa7\xdc\x6c\xca\x6f\x6c\x69\xd6\x7d\x1d\x91\xd4\xda\xde\x5c\x64\xb2\x96\x77\xa6\x61\x8f\xbd\x2b\xb3\x73\xf5\xae\x43\x8d\x11\xde\x83\xb4\xbe\x7d\x23\xd6\xfd\x8e\x72\xad\xc8\x89\x5e\x94\xb4\x25\x27\x0a\x0e\x91\x85\x04\x4f\xa6\x11\x84\x82\x8c\xa3\x79\x04\xa4\xe3\x42\x0f\x89\xf3\xa0\xc7\x4a\xc9\x2c\x9b\xc8\xfa\xf5\x27\xf7\xcf\x5c\x48\x2e\xc1\x57\x53\x16\xe9\xce\xbd\xb8\x24\xf7\x97\x5f\x47\xf7\x7b\x00\x9f\xf2\x49\x38\x1d\xed\x24\xd0\x5c\x26\x82\xcd\xa5\x30\x46\x1b\xa3\xc2\xe8\xbe\xef\x3b\x73\xb9\x7c\xa5\xb6\x7c\x86\x0a\x5f\x30\xb3\xc1\x07\x6d\xe0\x62\xb7\x3c\x18\xa4\x4e\x35\x65\x38\x79\x2f\x5b\x38\xfb\x92\xf2\x39\x57\x0e\x66\x72\xbd\xe2\xb7\x10\xda\xcb\xbb\x66\xef\x1f\xae\xdf\x38\xe0\x01\x2f\x13\xa6\x36\xc7\x1b\xec\xea\x60\x78\x10\x5e\x30\xb6\x55\xa6\x95\x16\xf5\xed\xec\x71\x34\x5c\x7a\xd7\x80\x98\xcf\xe5\x8b\xe5\xfd\x77\x6e\xaa\x4f\xe9\xff\xd5\x22\x73\xae\x45\x69\xaf\x68\x36\x4a\x7b\x65\x38\x42\x3c\x47\xfd\x41\x11\x44\x1a\x46\x80\x40\xad\x4f\x0c\x15\xd2\x43\xd4\x5f\xcc\xb3\x3e\x43\x04\xfd\x21\x7e\xf8\x80\xe5\x0b\xe8\x7f\x2c\xdb\xdd\xff\xef\xf6\x6d\xe2\x3b\xf0\x4f\x48\xc0\xb1\x67\xef\x88\x1a\x30\xec\x87\x5b\xc5\x59\xe4\x97\x3a\xa4\x96\xc0\x2b\x28\xa0\xdb\x3d\x40\x65\x6f\x14\x79\x5e\xe4\xb4\xe7\x69\xfe\xe7\xf3\x5c\x16\x8b\x8c\xcd\xe9\x79\x7a\xe6\x80\x78\x0a\x6e\x83\x58\xb8\x5d\x3c\x25\x8e\xff\x63\x56\x7c\x02\x44\x8a\x5f\x93\x5f\xaa\xca\xfd\xd6\xbb\x64\x89\xf4\xcc\x36\xfc\xcc\x27\xa9\x2f\x93\x56\xb4\x51\x11\x3d\xad\x8e\x14\x39\x60\x18\xa2\xe5\x0c\x91\xa9\x82\x1d\xd1\x3c\xcb\xd2\xe7\x9e\x03\x6a\x17\x3a\x69\xe7\x33\xc4\xf8\x8c\xf1\x31\x2e\x52\x1f\x9f\x65\x77\xa6\xdc\x90\xda\x75\x6a\x64\xf7\x47\x1f\x3d\xfa\xd4\xbb\xe0\xf9\x54\xfc\xe4\xae\x56\x78\x58\xac\xf1\xff\x62\x8f\xcc\x2b\xac\x1b\xf7\x7e\x1d\xbc\x14\xa0\x83\xda\x95\x54\x24\x76\x44\xa2\x43\x3a\xce\x76\x4b\xd3\x15\x13\x25\x83\xee\xff\x77\x4a\x7e\x95\x7e\x47\x4e\xdd\xa9\xd6\x55\x1f\x7d\x74\xff\x0b\x94\x92\xbf\xdd\xda\x04\x9c\x78\xc6\xff\x8b\xe5\xef\x1e\x66\x19\x61\x0a\x64\x4a\x3c\x49\xc3\xb4\x3c\x41\x63\x8a\x8c\x28\xa3\xc4\x81\x25\x06\x91\x63\xe3\x2c\x00\xd1\xfa\x16\xfb\x2b\x08\xf8\xdc\x77\x6a\x84\x0d\x6a\x38\xae\x46\x6e\x52\xd1\x43\x42\x22\xeb\xdf\x92\xc9\x9c\xa5\xe7\x01\x29\xe4\x99\xa0\xb4\x61\x13\xe8\x60\xdb\xa5\xdd\xe9\xe2\x67\x51\x49\x4e\xbd\x52\xfc\xdc\xa1\x77\xea\xf0\x79\x33\xb3\xff\xf2\x4e\xf1\x51\x6c\x0e\xfe\x6e\xa3\xf8\x6f\x36\x5c\x70\xf6\xec\x1c\x10\x17\xc3\x95\xa9\xf9\x86\x48\xef\x9f\x18\x7b\xa4\x21\x3f\x95\xbc\x1f\xda\xd3\x93\xce\x31\x37\x7a\x9f\x87\x0e\x4a\x2b\xcd\xdf\x9c\xe0\xf2\x08\xad\x24\xb6\x2b\x58\x60\x18\xc2\x38\xc0\xff\x0a\x78\x1d\x62\x32\x7d\x96\x63\x99\x9f\x71\x08\x6f\x5d\x04\x23\x46\x1f\x8d\x13\x27\x83\xf0\xf6\xed\x72\xfb\x88\x23\x46\x20\xbd\xfb\x1c\xca\x95\x98\xe2\x52\x6b\xfd\xa2\x2a\xf1\x1f\x9c\x56\xfc\xb2\x6c\x7e\x8d\x59\xfc\x7b\xa8\xc6\x18\x1b\x2d\x7e\x11\xaf\x31\x6a\xc2\x20\x64\x8b\xf8\xd3\x3f\xbb\xb7\x76\xbb\x82\xe0\x1d\xd1\x10\x92\xd5\xbd\xb9\xf3\x9f\xff\x4c\x2b\x32\x45\x8a\x13\xb0\x37\xd2\x54\x94\xf6\x4f\x66\x29\x84\x4b\xe7\x3a\x62\x9f\xc4\x7c\x35\x21\x2b\xa9\x33\x14\xee\xb3\x50\x12\x2c\x45\x20\xa7\xfb\x90\x10\xa6\x5b\xf2\x0a\x86\x06\xcb\x78\xce\x47\xad\xd5\x42\x60\xcc\x08\xb5\x54\x01\x22\xd2\x41\xcf\x66\x65\x4b\xa3\xac\x67\xf5\x2c\x26\x9b\x35\xb0\x12\xd9\x06\x89\x6c\x16\x97\x83\x80\x45\x41\xaa\x91\x0f\x3e\x80\xd9\x1f\xb3\xaa\x4f\xca\x86\x4b\xf4\xdc\x5f\x82\xf8\x68\x5c\x99\xf2\x0f\xb1\x71\x18\x52\x86\xfd\xb0\xe3\x1e\xb8\xaf\xa7\xd2\x7b\x37\xf6\xfc\x8c\x31\x07\xbd\xf3\x82\x72\x7a\xd7\x37\x88\x8d\x70\x5f\x62\xb6\x5d\xeb\xbd\x8f\x69\xc4\x19\xbf\x89\x62\x23\xfb\x32\xa8\x25\x5e\x17\x60\xfa\xf1\xf1\xdf\x4f\x7f\xc4\xc5\xe8\xd7\x5c\x88\xfe\x18\xa5\x92\xd0\xaf\xf0\xd1\xef\x99\xd2\x01\x95\x2a\xd0\x01\xd9\x64\x0f\xb2\x0d\x70\xa9\x10\x1a\xba\xf2\xc3\x0f\xa1\xf5\x37\xcc\xd9\x17\x97\xad\x10\xfe\x28\x13\xa2\xf5\x5a\x60\xff\x18\xa2\x4d\x8a\x96\x09\x6f\xb4\xdd\x0c\x7c\x6a\xa3\x5e\xc4\xc6\x2d\x31\x19\xde\x17\xe3\x94\xc7\xaf\x20\x9b\x48\x82\x3b\x25\x56\x26\x2e\x82\xc3\xb1\x29\xee\x04\xf1\x34\x73\xcf\x47\x3e\x8c\xce\x12\x2e\x53\xb6\x9c\xd8\xd2\xd1\x8c\x92\xd6\x62\x90\x09\x31\xc0\x23\xa6\xce\x64\x64\xd8\x6a\xbc\xca\x64\xc2\x04\x92\x31\xb2\x89\x60\x40\x88\x5a\x79\xfc\xf1\xd7\xd4\x6b\x1c\xb0\x17\x10\x53\x7c\x61\x7e\x5e\xb6\x3b\x3d\x35\x41\x1b\x86\xc5\x3e\xca\x81\x9c\x10\x62\x31\xf0\x59\xd3\xb1\x65\xe0\xdc\xd4\x45\x5f\x22\x07\x89\x79\xa4\x60\x1c\x93\x66\xf7\x98\x00\x9a\x4b\x08\x01\x46\x9a\x58\x4b\x70\x13\x96\x3d\xb9\xa3\x6e\xed\xa2\xcb\x76\xd5\x6c\x7d\x78\x3c\xa7\x04\x27\xdf\xb8\x14\x6d\x87\x6e\x61\x32\x7b\xb7\xb6\x16\x10\x18\xb0\x7d\x3b\xf7\x1d\xf5\x63\xbf\xb0\xfd\xf1\xae\x4a\x5b\xd3\xe0\xdf\xd2\xfa\xaf\x18\x5c\x7d\x2c\x35\xe5\xf8\x86\x91\xa3\x8b\x73\x3d\x29\xb8\x38\x91\x36\xf8\xb8\xf1\xa9\xdd\x38\x05\xc2\x90\x90\x55\x9d\x32\x3e\xf1\x39\x7b\x48\x02\x8a\x61\xd0\x03\x62\x13\x67\xe1\xbf\xfb\x3f\xf0\x42\x73\x61\x5e\x38\xd3\xfe\x5f\x79\x91\xc6\xfa\x78\xe1\x39\x9f\x15\xd6\xac\xda\x34\xe5\xdc\x31\xc2\x8a\x45\xf7\x6f\xaa\x1a\x98\x39\xb6\xb4\x6c\xcd\x1d\xa3\xce\xea\xc2\x78\x5b\x7a\x74\x5b\xc1\x82\x96\x74\x48\xef\x58\x5b\xef\x5e\xb0\x7c\xdd\x8a\xeb\x9f\xf7\xb3\x82\x99\x50\x18\x9d\x09\x59\x65\xaf\x1a\xeb\x96\x36\x74\xac\x31\x24\xad\x9e\xd9\xb8\xa6\x3d\xd5\xc7\x8a\xeb\x15\x65\xb3\xc6\x4b\xcb\xe7\x94\x26\xd5\xe6\x96\x57\x9e\x64\x05\x1f\x66\x0e\x4b\xe3\x80\xd6\xf0\xcf\x4b\xb9\x62\x44\xe2\x09\x70\x5e\x1e\x58\x02\xd1\x95\x02\x2e\x15\x83\xdd\x66\x48\x37\xa6\x93\x54\x30\x19\x31\x64\x4d\x83\x01\xe0\x27\x53\xc1\x4c\x53\x52\xc1\xd6\x4c\x07\x01\x10\x23\xfd\xe9\xff\x62\x24\x7c\xed\x87\x04\x60\x16\x4d\x03\x02\x78\x54\xeb\x07\x00\x78\x2d\xc8\x8f\x09\x40\x68\x1f\xc4\x3a\x7b\x3f\xcd\x5b\x49\x42\x76\xa2\x19\xfb\x0a\x03\x0e\x0a\xe0\x73\x02\xe9\xc8\x61\x36\xe0\x08\x4d\xd6\xab\x55\x16\xb3\xde\x9e\x6c\x8f\x8f\x53\x25\xa9\x93\x6c\xc6\x20\x41\x75\x81\x52\xd3\x40\x4f\xe2\x69\x2c\x4b\x2d\x5d\x89\xec\xe0\xb4\x42\xd3\xa2\xbb\x25\x47\x2f\xc0\x6f\x05\x7d\x76\x8b\x2b\xab\x29\x5b\x2f\x13\xf3\x64\xfa\x9c\x96\x0b\xd4\x9b\x86\x1e\x4b\x79\xaf\xdb\xdd\x5b\x6e\xf1\xf6\x99\x4a\xbb\xdd\x38\xd2\xd9\x84\x00\x85\x21\xc4\xb3\xfc\xb3\x04\x65\xff\x01\xf0\xd5\x8c\x25\x71\xc5\x72\x04\x20\x65\xa7\x48\xae\x70\x7f\xea\x9a\xca\x0f\x5e\x19\xf8\xbc\xfb\x41\x79\x8c\xde\x42\xbc\x02\xa4\x52\x2b\x56\x8e\xd4\x32\x72\x10\xa4\xe8\x07\xcb\x94\x8a\x3f\x6a\xcb\x3a\x97\xd4\xd8\x98\xb8\xd4\x02\xb9\x78\xaf\xf8\xb6\xa8\x86\x4c\xd8\x35\xbb\x87\xf9\x78\xc6\xe6\x2e\x07\x7c\x53\xe2\x39\x7d\x07\x05\x1c\x00\x2a\x9b\x57\x60\x3e\x2a\xd0\x2c\x5f\x9e\x23\x01\xd3\x03\x5f\x2e\x53\xa8\x44\x5e\x30\xb0\x50\x4b\x13\x1d\xa7\x12\xa9\x3b\x87\x48\x4d\x80\x48\xdd\x14\x22\x4d\x26\x3f\x91\x81\xe0\xe7\x00\xa1\x7a\x85\x62\x75\xc6\x8d\xeb\x12\xb2\xd4\x1a\x2e\x29\xcc\x5c\x10\x26\xe2\x43\x85\xb8\x19\x0c\xb0\x7f\xc1\x02\x58\x73\xc3\x2d\xb2\xf0\x77\x19\x26\x3f\xc5\xcb\xd2\x43\x24\x8b\x2a\xc5\x56\xee\x29\x1a\x6b\x90\x89\xca\xc8\x02\x54\x83\x8c\xc9\x00\x24\x33\xd1\x5c\x3a\x24\x08\xbe\x49\xcb\x53\x61\x1c\x08\x24\xa0\x0b\xb7\x17\xd3\xa8\x67\x1b\x2c\x06\x55\xae\x52\x4d\x46\x3f\xfe\x42\xb9\x8c\xea\x18\x17\x1b\x28\xf2\xea\xb3\x77\x66\xb3\x2e\xde\x87\x10\xee\x3b\xd6\x31\x57\xd9\x9a\x97\xd5\x55\x2e\xa8\x31\x9a\xaa\x17\x54\xd6\x2e\x6b\xb1\x41\x88\x7c\xe0\xc4\x17\xc1\x49\x39\x6d\x79\x21\x71\x71\x1a\x19\x27\xc4\x28\x15\x7c\x82\x45\x1b\xc1\x2b\x0f\x9d\x10\x7b\x32\xf3\x13\xac\x9a\x10\x47\x5e\x7e\x26\xbc\xb7\xf4\xe1\x4b\xab\xab\x2f\x7d\x78\x29\x7c\xe7\x7f\x25\xbe\x79\x0f\x53\x71\x3a\xd1\xdc\xd3\xe2\x61\x79\x81\x39\xc4\x30\x90\x92\x57\x18\xdd\xc6\x95\x16\xee\xfc\x95\xa5\x6e\x61\xa5\xf7\xe1\x5d\x87\x0e\xed\x22\x3c\xc8\x22\x3c\xe0\x9a\x28\x0f\x6a\xd0\x92\x92\x08\x35\x08\xb2\x0c\x00\x01\xf3\x00\xfc\xc5\xca\xf5\xd4\x71\xcc\x33\x0c\x51\x00\xfc\x6c\x39\x87\x0d\x71\x25\xa6\x73\x99\xa4\xbb\x70\x3b\x6a\x09\x0d\x70\xec\x02\xeb\xc5\x74\x11\x8e\x4d\x37\x8e\x66\x99\x5b\xd7\x77\x76\x6d\x68\xb5\x58\xf0\xdf\x4e\xfc\x97\x5d\xf8\x73\x3c\xf3\xee\x0c\x8e\xcf\x4a\xb5\x67\xc5\x07\x07\x27\xb8\xed\x76\x57\x7c\x30\x63\x59\xf1\x32\x59\x60\x2f\xaf\x50\xfa\x5f\x5c\x79\x92\xa9\xbe\x20\xdf\xbc\x6f\x35\xef\x5d\x58\x5c\xbc\x70\x6f\xb3\xb2\x69\xef\x58\x71\xf1\xd8\x5e\x8a\x1b\xc9\xa1\x96\xb3\xab\xf1\x79\xda\x46\x31\x40\x12\x90\x0b\xdd\x2d\x61\x32\xa5\x21\xe0\x79\x18\x41\x48\x60\x05\x34\x0f\xb1\x32\x19\x3b\x82\x18\x8e\x63\x46\xa7\x44\xa7\xc8\x64\x5c\x2f\xe6\x4d\x22\xe7\x3f\x36\xa5\x4f\xbd\x8a\xa4\x67\xca\x04\x56\xb6\x18\x5f\xc7\x2c\xbb\xf0\x65\xf4\x39\x30\xf1\x8b\x2f\x20\x96\x68\x82\xbd\x32\x25\x1a\xd5\x15\x83\x7f\xe1\x17\x20\xb0\x30\xbf\x79\xfe\x79\xe6\xf9\xe7\xe1\xbe\xff\x0d\xc1\xc2\xcd\x81\x17\x7e\x6c\x86\x37\xc0\xf4\x4b\x80\x58\x28\x1f\xe7\x9d\x5d\xc4\xcd\xe5\x7e\x1b\xe0\xe3\xc7\x34\x9d\x82\xf4\x8f\xe3\x08\x47\x64\xac\x8c\xf0\x51\x10\x08\x1f\x79\x9e\x19\x25\xbd\x22\x89\xec\x74\xa2\xf1\xbd\xb8\xa7\x89\x3c\xe1\xa3\xea\x42\x57\xc9\x58\x01\x73\x85\x67\x96\x5d\xec\x2a\x35\x2d\x61\x00\x1c\x4c\xfc\xe2\x8b\xc8\x53\x02\xed\xd9\xf1\xff\x79\x41\xf7\x85\x98\xcf\xe2\xdf\x00\x6c\xd0\xcf\x00\x42\x32\x8f\xde\x79\x27\x77\xfc\xb8\xf7\xd7\x81\xed\xe3\xe2\x98\x90\x67\xe0\x95\x9f\x6e\x85\xf7\xde\x0b\x6c\x1f\x17\x07\x85\x64\x51\x3a\xc6\x5d\x64\x65\x29\x28\x0b\xd5\xa1\x0e\x8c\x3b\x3f\x5a\x0c\xe1\x21\x1d\x04\xfd\x92\x22\x55\x94\x42\x30\xd4\xa2\xf0\x90\xe0\x90\xf0\xe0\x71\x02\x4f\xca\x09\x3c\x2e\xb9\x80\x42\xc2\x43\x43\x86\x23\x20\x0c\x05\xa3\xb0\xe0\xe1\x20\xe0\x38\x49\x86\xab\x28\x6e\x36\xc9\xfd\xa0\xbb\xa4\xdb\xdd\xd2\xec\xae\x73\xd7\x56\x55\x14\xe6\xe7\x78\x94\x86\x18\x93\x3c\xd6\x68\x8b\x8a\x24\xc7\xac\xa9\x10\xc2\x53\x21\x70\x49\xe1\xe4\x69\x76\x2f\x2c\x2f\x63\x94\x7e\x1c\x36\xa5\x81\xd4\x62\x20\xc2\x81\x40\xb5\xb8\x5d\xd4\xe3\xcc\x36\xf5\x1f\x5d\x51\x56\xb0\x60\x7f\x47\xe5\x52\xab\x75\xbc\xa2\xe3\xca\x05\xf9\x65\xcb\x8f\x0e\xd4\xcc\x2c\xf6\xa4\x38\x20\xcc\x91\x92\x55\xd2\x51\xf5\xaa\xba\xee\x92\x79\x9d\xc6\xb4\xdc\xcb\x2e\x59\x94\x39\x7b\x64\x69\x85\x18\xa7\x37\x5c\xa5\x36\x3b\x71\x74\x6e\xf6\xc2\x1b\xe6\x7b\xe7\x0e\x5c\x31\xdb\x99\x83\x7f\x9c\xb3\xaf\x18\x60\xae\x9d\x7f\xc3\xc2\xec\x53\x03\xa3\xde\xb9\xed\xf5\x8d\x9d\xf0\x94\x58\xda\xd9\x58\xdf\xce\x5c\x3b\x3a\x00\x7f\xdb\x66\x72\x98\x33\x3c\xd1\xa6\xf1\xf9\x66\x87\x49\xdc\x95\x52\x6d\x1e\x18\x49\x28\xf0\x38\xc2\xa5\x78\x45\xac\x4f\x1c\xe6\xdf\x47\x05\x68\x06\x9a\x8d\xee\x2b\x89\xa9\x86\xe0\x90\xd9\x01\xbe\xd6\x42\x38\xb1\x65\x59\xf1\xb4\x2b\x40\xe1\xc1\x28\x38\x1c\x05\xd8\x4b\xd9\x1a\x1e\x16\x4c\x0e\x02\xa1\x3d\x28\x34\x34\xa1\x7e\x92\xc1\xba\x73\x19\x1c\x57\x92\x77\xfe\xe5\x64\x74\x82\xf1\xe8\x04\x6e\x73\xd1\x8b\xbb\x4b\xb4\x85\x85\xb3\xba\x0b\x67\x14\xb6\x37\x35\x54\x96\x97\x14\x91\x6c\xb4\x5f\x30\x40\x81\x9d\x8b\xcc\x50\x17\x11\x10\x01\xfc\xe7\xe9\x83\xc4\x9d\x33\x48\xe6\xda\xed\xa3\x85\xd9\x7d\xab\x4b\x6a\x26\x92\x93\x97\xd6\x94\xae\xee\xcb\x2e\x9c\xb7\xad\x2e\x31\x35\x21\xdc\x92\x1a\x6b\x52\x85\x7e\x11\xae\x35\x6b\xed\x49\xe1\x09\xf6\xc4\x57\x1c\xf5\x6b\x86\xdb\x4c\xe9\x79\x3b\x36\x2c\x49\x2e\x2e\x2e\xa9\x6e\x4e\x13\x4b\x7d\xa3\xc5\x35\x65\x0c\x1e\x18\x12\x37\x77\x6f\xe9\xb4\x37\xd5\xd6\x36\xd9\x3b\xb7\x74\xc3\xc6\xa1\x03\x83\x19\xcf\x44\xa7\x36\xe6\x89\xd7\xb4\x36\x86\x26\x7a\xec\xdf\x7c\x63\xf7\x24\x86\x36\xb6\xc2\x68\x5e\x63\x6a\x34\xbc\x3d\x39\x66\xd1\xda\x24\x6d\xb4\xb8\x75\xca\xa8\x31\xa8\x11\x8f\xd9\xdd\x78\xff\x92\xa1\x54\xb4\xfc\x01\x39\x70\x32\xf0\x41\xdc\x9a\x10\x03\x02\x30\xf3\x90\xbf\x0a\x60\x68\x48\x10\x4b\x0d\x1a\x40\x96\x3a\x0f\x3e\x71\x6c\x96\xda\x09\xe3\x3f\xdb\x90\x14\x78\x0c\x0a\x0a\x4a\x0d\x4a\xb5\x59\x88\xf1\xd7\x4c\x91\xfd\x09\xcb\x49\x52\x0d\x4e\x86\xe2\xff\xb7\x91\x1a\x64\xcc\xe7\xe2\xfb\xd8\x79\xcb\xde\x7a\x71\x6b\xb5\x4c\x36\xbe\x71\xe3\x67\xff\xd3\x62\x8d\x10\x23\xd9\xac\xf9\x93\xb4\xef\xab\xcf\xe9\xbb\xc5\xd7\x77\x16\x00\x7c\xa1\xbf\x52\xa7\x34\xe7\xf7\xde\xea\xef\xfd\x85\x9b\xfe\xf2\xfe\xff\x02\x43\x38\xb0\xfe\xfe\xef\xbc\xa8\x45\x9c\x3f\x89\xbb\x2f\xfe\xf8\xbf\xcd\xe2\x08\xd0\x7a\xf1\x00\x37\x13\xeb\x82\xc9\xbe\x6c\x0e\x0e\xea\xa4\xcc\xa9\x40\x71\xc4\x80\x95\x97\x6d\xb0\x25\x2b\xec\x34\xba\x03\x68\x98\xcb\x94\x3c\x74\xf3\x64\xe4\xa8\x8b\x1d\x12\x3f\x5b\x70\xe7\xea\x92\xea\x2d\x8f\x4c\x2c\xbb\xef\x92\x52\xf1\xb3\xfe\x31\x1c\xf5\x15\x6f\xac\x9e\x5f\x79\xbf\x78\x00\x66\x47\xcd\xbd\xee\x95\x55\x90\xbc\xf5\x83\xa3\xb3\xca\x36\x3d\xbe\x76\xf7\x8e\x9c\xb9\x97\xb7\x8a\xef\xb6\xee\x9c\x9b\x4b\x69\x3a\x29\xee\xe7\x66\x71\x4d\xc8\x88\xda\x03\x75\x21\xc9\xf6\x96\x10\xa0\x2c\xe0\xdf\xf1\x57\x70\xd0\x52\xdc\xe5\x8b\x50\xae\x63\x49\x3e\xb7\xf1\x1c\xda\xa7\x03\xb9\x28\x25\xe2\xdb\xc5\x2f\x86\x0e\x0e\xbb\x4a\xd6\x3f\xb2\x76\xf0\xe6\xe5\xa5\xe2\x4f\x9a\xb4\xf2\x94\xa2\x76\x97\x4a\xe9\x9a\x59\x7c\x42\xdc\x0f\xc3\x72\x5c\xad\x7c\x24\xe0\x23\x3c\xb7\x52\x39\xa5\x7f\x21\x7e\xfa\x7e\xbe\x48\x8a\xf1\xc2\x56\xb6\x28\x82\xe3\x1f\x1c\x24\x23\x81\xad\x91\x12\x2c\x18\x82\x09\x29\x60\x26\x56\x41\xc2\x88\x80\x97\x99\x58\xbc\x4b\x64\xf3\xf4\xd7\xc5\xe2\xf7\x4c\x37\xe8\x6b\xc4\xf7\x1e\xb8\xf7\x23\xf1\x83\x6a\x30\xbd\x2c\xbe\x5f\x0b\x86\x47\xee\x3a\x05\xa6\x06\xf1\x43\x78\xe6\xae\x4d\x77\x8a\xcf\xc0\xde\xe3\x9b\x8e\xc3\xbc\xe3\x97\x1e\x87\x2a\x71\xe1\xf1\x8d\x77\x52\xac\x47\x0b\x77\xd3\xd9\x9f\x78\x2f\x92\xa1\xdd\xd2\x54\xd6\x50\x2c\xcc\x11\x0a\xf4\x38\xca\x81\x2f\x43\x47\xc5\xfa\x35\x00\x75\xe0\x7b\xb4\xec\xbc\xaf\xf5\x14\xe8\x9a\x01\x66\x62\xfa\xb7\x25\x71\x93\x5f\x20\xf2\xc5\x4c\x9a\xed\x84\xdb\x00\x8b\x23\x3d\xa5\x2c\x6f\x2c\x56\xe4\x24\xc6\x8c\x40\xd7\x5a\xb2\xf5\x16\xb5\xd2\xfb\xf6\xaf\x81\x49\x86\x93\x7c\xd2\x06\xf8\xe7\x18\xbc\x4b\xf1\x33\x4f\xf3\xea\xb3\x3f\x09\x4a\x29\xc6\xc8\x9f\xaf\xc5\x01\x05\x83\x21\xfb\x2b\x71\x07\xab\x30\xb6\x53\x58\x68\x90\x80\xd4\xa0\x16\x24\x13\x01\x87\x0f\x43\x32\x99\x81\xa6\x11\x52\xaf\xa8\x37\x25\xa3\xb3\xa5\xa1\xae\xce\xba\x7a\x0d\x03\x3b\xf2\xd3\xed\x43\xcb\x77\xb4\xa4\x33\xfc\xf5\x54\xf0\xcd\x5b\x6a\x8a\xf6\x64\xe0\x7d\x6b\x1b\xe1\xd3\x77\x7c\x8c\xf8\x0f\x01\x2b\x8b\xbe\x5a\x82\x88\xa3\x50\x3a\xf3\xe5\x80\xe3\x5c\xc1\xa2\x96\xa9\x65\xde\xef\xe1\x49\xc8\x6b\xe3\x3f\x5a\xcb\xaf\x5d\xd6\x81\xaf\xf9\x23\xbe\xe6\x55\x7a\x8d\xbc\x24\x82\xc7\x44\x4a\x97\xc4\x48\x97\x90\x5a\xeb\xa2\xa9\x35\x1f\x9e\x00\x3e\xa6\x63\x19\xbe\x08\xa1\xa0\x9f\x36\x8a\xcf\x33\x5a\xfe\x5e\x1a\xdb\x5d\x8a\x3a\xd1\x22\xb4\x05\x5d\x83\xee\x85\x42\x29\xd5\x72\x24\x89\xe4\xde\x72\x0c\x70\xe3\x18\x0f\x48\x2f\xe3\x79\x21\x48\xe0\x83\xc6\xcd\x71\xb1\xc9\xa1\x7c\x70\x08\xb6\x8a\x84\x8d\x1b\x63\x18\x1c\xcd\xb8\x4c\x01\x9c\x0a\x88\x0f\x7d\x58\x03\x41\x5a\xc0\xb3\x2a\x64\x38\x1e\xc2\x12\x21\x22\x3c\x2c\x62\x18\x45\x21\x3c\xdb\xa2\x03\xa5\xe1\x55\xf5\x16\x5d\x82\x21\x92\x0f\x0f\x57\x87\xe3\xe1\x9a\xff\x4b\x1e\xe4\xbb\x22\x22\x2a\x22\x3c\xea\xff\xf8\x54\x92\xf7\x39\xfb\xf0\xe1\xad\x5b\x17\x2f\xee\xea\x2a\x2b\x4b\x4d\x55\xa9\x10\x3a\x7c\xef\xe1\x7b\x8f\xdf\x71\xcb\xb1\xa3\x47\xb6\x5e\xb3\xf5\x9a\xab\x0e\xec\xdb\xbb\x73\xc7\xe2\x2d\x8b\xb7\x6c\x5c\xbf\x66\xf5\xf2\x89\xae\x45\x5d\x8b\xe6\x8f\x0e\x0f\xf5\xf7\x96\x75\x96\x75\xb6\xb7\x36\x36\xd4\x54\xa5\x96\xa6\x96\x16\xe6\x67\xe3\xca\x23\x2a\xbb\xca\x6e\x31\xe9\x93\xe2\xb5\x3e\x00\x62\x2b\x99\x4e\xfe\x15\x6c\xf0\xaf\xe0\xe9\x9f\xc4\x4c\x6f\xf3\x7f\xff\xe4\x7f\xdc\xd9\x3b\x96\xe0\x69\x72\x3a\x9b\xb2\x13\xc6\x43\xd5\xe6\x38\x12\x28\x0f\xef\xe3\x8f\x32\x9c\xcd\xd9\x09\x4b\x43\x34\xe6\x38\x2d\xfe\xa8\x36\x21\x1b\x7f\x42\x1a\xf9\x3e\x09\x15\x5f\xa1\x8d\xa6\x7e\xe4\x6d\x39\xe7\x56\xf4\xa3\x46\x7c\xe1\xb9\x77\x17\xdf\x9f\x76\x2f\x37\xfd\x64\xea\xf3\xb8\xff\xda\x2a\x33\xe3\x49\xa5\x6f\x85\x31\x5e\x2e\x8f\x37\x2a\xc4\x2f\xa7\x7d\x12\x7c\xfe\x27\xde\x1f\xa7\xb5\x39\x75\xfe\x27\xbc\xf6\xff\x72\x1f\xbc\x1e\x7e\x7c\x59\x1c\x86\x60\x9c\xb7\xc1\xa1\x60\x14\x41\x90\x5d\x51\x02\x4a\x46\x16\xb4\xa8\x44\xa7\x4f\x52\xb1\x2c\x63\x49\x4e\xd0\xa8\xb1\xe0\x8c\xc4\xf3\x2b\x24\x1c\x58\xb3\x29\x3e\x8e\x43\xe0\x00\x06\x40\xf9\xbf\xaf\x83\xa4\xe6\xc1\x07\xe1\x48\xf2\x38\x01\x26\x77\x00\x25\x62\xf0\x77\xc0\xb0\x83\x53\x3f\xc7\x2e\x32\x9e\x14\x09\x0f\xe6\xb1\x10\xc6\x4f\xe5\xa2\x05\xbc\x5a\x79\x35\x96\xb8\xac\x05\x0b\x5b\xc8\xe6\x95\x26\x2c\x71\xdd\x3c\x64\x9b\xf0\xcd\x65\xbc\xc5\xc4\x5a\x70\x1c\x38\xa8\x63\x64\xac\xf7\x77\xa1\x6b\x67\x57\xe5\x85\xe1\x7f\x98\xc4\x70\x68\x10\x6f\x3b\xbd\x3c\x5c\xbc\x0f\x66\xb1\xd7\x31\x50\x52\x21\xbe\x73\xe6\xbf\x8c\xf8\x74\x25\x98\xed\xf2\x83\xa5\xbf\x61\x67\xcb\xaf\x2a\x7b\xa1\x20\x42\xbc\x1b\x06\xb9\x9b\x22\xa0\x4d\x3c\x2a\xca\xc3\x2e\x19\xaa\xce\x27\xff\xc0\x3d\x51\xd7\x54\xbc\x78\x66\xaf\xfc\x9a\xca\x17\x99\x53\x0c\x54\x55\x8a\x7f\x3a\xf3\x09\x23\x3e\x56\x0d\x76\x29\xdf\xe7\x2a\x84\xb8\xbd\x04\x5b\x93\xc4\xe8\x11\x8f\x04\xcb\x30\x2c\x07\x80\x28\xa0\x3a\x0f\x0c\x62\x99\x40\x62\x82\x3f\xa9\x8b\xe3\x74\x09\xca\x18\x2e\x9a\xc3\x81\xc2\x02\xd9\x4e\x64\x90\x4d\x83\x0a\x02\xa9\xd6\x93\x18\x77\x5c\xdf\x66\x71\xc6\x26\x51\xc4\x31\x7a\xff\x59\xf5\xf4\xf6\xda\xda\xed\x4f\xaf\x7a\xfb\xed\x82\xae\xfc\x84\x84\xfc\xae\x82\xb7\xe1\x40\x2e\x53\x84\x3d\x7a\xde\x2f\xf8\x13\x95\xeb\xee\x9a\x3f\x74\xeb\x9a\x8a\x53\xc6\xa2\xd6\x54\x57\x57\x99\x19\xb1\x52\x9d\x2a\xae\x89\xe2\x9d\xda\xd1\xbc\x12\xa5\x1c\x38\x86\xe4\xcc\x73\x3c\x17\x06\x88\x27\x6c\xe7\x7c\xe6\x93\x38\x9a\x2a\xc5\xfa\x63\x0b\xfd\x46\x24\x00\x2d\xad\x55\x75\x8e\x2d\x58\x37\xad\x85\xbf\x56\x95\x95\x04\xab\xf2\xb8\x47\xa6\x29\xf5\xaa\xd4\x17\xab\x57\x55\xb6\x58\x1c\x1e\x83\x07\xb3\x17\x1e\x19\xe9\xa4\x55\xab\x20\x24\x73\x47\x0f\xa9\xf5\x80\xcb\x56\xb9\xdb\xf3\x6b\xfb\xb4\xda\x3e\x52\xb6\x4a\x13\xd4\x0a\xcf\xb5\x76\xd1\xd2\x55\x1e\x91\xe1\xff\xba\xa0\xa0\x2c\x50\xb9\x2a\x4b\x2c\x70\xd1\xca\x55\x74\x3f\x3f\x84\x10\x37\x2a\xd3\xa1\x60\xa9\x4a\x37\x43\x4b\xd4\xf8\xe6\x5f\x20\x70\x33\x83\x1a\xe8\x0c\x4a\x7f\x84\xf2\xa8\x9e\xc0\xce\x32\x0f\x83\x9a\xfb\x1d\x10\x5c\x52\x58\x42\xeb\xda\xd0\x5c\xbd\x15\x17\xb8\x97\xe6\xe2\xf7\x1a\xb0\x90\x34\x07\xe6\x01\x50\xb2\xdd\x40\xe2\x9d\x21\x9f\x62\xe0\x8a\xbf\xe6\xee\xe1\x4f\xf8\xea\xb8\x01\xe2\x78\xe0\x86\x29\xb6\x15\x33\x80\x02\x99\xce\xfe\xb8\x5f\xab\x5c\xa3\xa7\x0e\xcf\xa9\x61\x0c\x6e\xbc\x85\xba\x3d\xd8\x7a\xee\x47\xca\xbd\xeb\xf2\x0f\x8e\x74\xe4\x6e\x7a\xf5\x40\x4e\x6b\xae\x51\x21\x83\xdb\x6e\xb8\x4b\x02\xcf\x15\x57\xd7\x1d\x78\xf7\xca\x25\x6f\x1e\x1b\xfe\x53\x92\xbb\xa6\xb9\xdd\xfc\xd8\x23\xde\xa3\xf8\xe1\xa4\x4f\xe2\xc7\xdc\x16\x12\x13\x45\x74\xc8\x88\x70\x86\xad\x0e\xd4\xc9\xf3\x41\x23\xe0\xbe\xd1\x60\x21\x5c\x62\x4f\x83\x77\x1e\xac\x87\xa9\x88\xd2\x4b\xc9\x50\xf9\x81\xa9\xd2\x18\x1f\x19\x39\xde\x89\xe3\x6b\x5f\x3d\xd8\x0e\x29\x3d\x7b\x87\xc7\x47\xe7\x59\x6a\x47\x4b\x8e\x4b\x69\x1e\xcf\x14\xae\x79\x68\x4d\xfe\x8e\x4d\x8b\x74\x4f\xa4\x6c\x9d\x53\x32\x54\xa2\x17\x1b\xf0\x93\x01\xe1\x0d\x9d\x57\x63\x72\x14\x68\x8c\x58\x5b\x09\x42\x43\x34\xfe\xa7\x56\xda\x62\xf5\x48\x60\x81\xf8\xf4\x06\x83\x83\x18\x9e\xa7\x39\x9f\x14\xb2\x00\x87\xfc\xd2\x40\x3f\x32\x1f\x03\x6d\x90\x0c\x31\x48\xc6\xf8\xda\xfa\x5b\x50\xfc\x4d\x7c\x7f\x85\x5c\xfa\x89\x26\x21\x21\xc1\x8c\x9e\x35\x60\xd5\xdd\xe7\x5e\xa7\x7e\x53\x8c\xb4\xfd\x5b\x18\x14\xaf\xf5\x26\xdc\xd6\x2a\xfe\x0d\xb4\xad\xb7\xc9\xff\x81\x7d\x64\x4b\xcf\x7c\xc0\xf4\x7c\xfa\xa9\xf7\x16\xfc\xfa\x0e\x00\xf1\x2c\xd3\x49\x30\x0c\x11\xe2\x9e\x22\xb9\x39\xa4\xf6\x92\x44\x77\x10\x9c\x4f\x48\x48\x30\x26\x24\x40\x6a\x80\x0a\x89\x0c\xe2\xbb\x3d\x8f\x0c\x7c\xea\xc4\x64\x1c\x17\xff\x0c\x45\xe2\x75\x27\x33\xaf\xa9\x24\x79\x09\x95\xd7\x38\x70\x44\x91\xd7\xeb\x7d\x09\xae\xba\xeb\x2e\x29\x31\xe1\xe9\xa7\xe1\x88\xa4\xb3\x46\x62\x3a\x5e\x27\xf9\x7c\x24\x76\x27\xec\xdc\xcc\x2c\x12\xaa\x2c\xa5\x9f\x09\x81\x04\x88\x29\xde\x73\x1a\x9c\x8c\xfb\x4d\x73\x20\x0e\xe5\x89\x9f\x8b\x2f\x31\xcd\xee\x3f\x40\x25\x4e\xc9\x6a\x15\x9f\x60\x9a\xbd\x27\xb9\xa7\xbe\xf6\x3e\xc1\x94\x7b\xab\xbc\x21\x08\x50\x1c\x7e\xd6\x4b\x5c\xde\xcf\x3e\x4b\xf3\x0b\x9e\x75\x6f\x05\x76\x80\xfc\x8e\x69\xa9\xba\x06\x86\xc4\x7f\x40\x86\xb8\x1b\x2e\x17\x57\xb1\x35\xff\x21\x9e\x5e\x11\x79\x7f\x83\x00\x15\xe3\x67\xdd\x45\xea\x75\xd1\x7c\x0b\x84\x88\x96\x47\x9e\x02\xdd\x12\x44\xc1\x64\x6a\x7e\xe0\x29\xbe\x32\x44\xd2\x7f\xd0\x00\x32\xa6\x5b\xbc\x5f\xfc\x2f\xce\x75\xfb\x2f\x84\xb3\xfd\x4c\xdb\xd7\xa7\x4b\x25\xd0\x01\x1f\xbe\x2d\x5e\x90\x17\xb9\xbf\xe6\x7f\xdf\x7f\x39\x84\x30\x29\xe2\x37\xe2\xc7\xe2\x77\xe2\xc7\x90\xc8\xec\x82\x7b\xbf\x3e\xf3\x10\xad\x5f\x47\xe6\x75\xa6\x78\x8c\xbb\x9b\xfa\x7c\xd3\x4a\xc8\x16\x41\x13\xd3\xfc\xf5\x0c\x78\xde\x87\xbb\x21\x00\x8d\x87\x27\xd3\x21\x5e\xae\x4d\x92\x82\x6d\x69\xc4\x20\x87\x71\xb7\x78\x52\x6e\x95\x46\x80\x50\x06\x32\xff\x52\xae\xb8\x69\x4e\x5a\x8c\xbd\x7c\xf6\x86\x16\xc6\xe4\xd4\xc9\x65\xc0\x04\xcb\x13\xd3\x92\x62\xc4\x6f\x6e\x11\xbf\x61\x9e\x60\xcb\x60\xde\x6d\x6f\x2e\x6c\x38\xb0\x65\x49\x6b\x3a\x9c\x02\x7d\x76\x55\x63\xb3\x21\xae\xbe\xa5\xa9\xc8\x02\xde\x13\xdc\x43\xa7\x6b\xfd\x38\xcb\x33\xc4\x2f\x29\xfe\x4f\x02\x89\x7e\x50\xd2\x7a\x06\xa1\x21\x04\x25\x8c\x1c\x0d\x10\x8c\x23\x86\xf1\x49\x00\x5f\x7c\x63\x42\x3c\x15\x02\x2a\x2c\x03\x94\xd4\xd9\xef\xc3\x06\xa3\x78\xa2\x01\x12\x7f\x1a\x39\xba\xa4\xc0\xda\xb2\xb2\x61\x45\x8a\x47\x17\x16\x9a\x94\x6d\x17\xbf\xd9\x27\x7e\xcb\xdc\xca\xdc\xc4\x36\x5c\x7a\xef\x68\xf9\x55\x5b\x86\xa3\x9f\x8f\xca\xad\x69\xb3\xd9\x67\x54\x3a\x38\xb1\x85\xad\x3d\xf3\x90\x2f\xe6\xbe\x0b\x9f\xe9\xef\xe1\x5f\xa0\xde\x8d\x95\xf5\x27\x52\x08\x92\xbe\x27\x83\x94\x76\xa2\x88\x6c\x71\x93\xef\x04\x8a\x2d\x47\x1a\xc4\xca\xc0\x8f\x6e\x92\x40\xd9\x19\x88\x56\xc3\x48\x27\x53\xbf\x43\x81\xaf\x24\xfc\x10\x00\x7f\x8a\x65\x6a\xac\x0d\xd7\xa5\x95\x42\x9d\xf9\x0b\xdb\x8e\xc8\x09\xd3\x6c\x9e\x3c\x38\xcb\x89\x5b\xd3\x45\x10\x80\x3c\x81\x42\x62\x4a\xee\x9e\x99\x87\x2a\x3c\xab\x2b\x36\xbc\x71\xb0\x35\x67\xf4\x8a\x4e\x0c\x46\x17\x6e\xac\x98\x53\x12\x56\xdb\x9c\x36\x73\x75\x6d\xf3\xe6\x3e\x57\x7e\x76\x76\x95\xd8\x6b\x35\x6b\xb4\x21\xd1\x5a\x79\x42\xbc\x5c\x97\xa0\xd3\xcf\xbe\xfd\xd4\x56\x28\xc3\x26\xfd\x99\xff\x48\x9f\xb1\xac\x5c\x7c\x7c\xe6\xbe\xd1\xbc\xae\x4f\x77\x40\xc9\xbc\x5f\x6f\xa9\x6f\xda\xf3\xec\x72\xf1\xcd\x4b\xfe\xd2\x11\x05\xaf\xcf\xbc\x32\x3f\x7b\x7b\x13\x34\xd4\x8f\x14\xc6\x2d\xdf\x41\x79\x56\x7e\xf6\x73\xee\x8f\x14\xe7\xad\x14\x95\x95\x14\xbb\x80\x15\x1c\xc0\x13\x1e\xf1\xac\x24\x49\x03\xe1\xe2\x3a\x22\xcc\x03\x3c\xe0\xf9\x00\x0f\x52\x63\xad\xb1\xb8\xff\x64\x92\xf3\xe7\xa1\x11\x2b\x05\x09\xca\x99\xf4\x7e\x12\xc6\x79\x6a\xef\x27\xdd\x9c\x7f\x9c\x7b\xbc\x26\xff\xb2\xba\xf5\xaf\x1d\x68\x2d\x5c\x7c\xb8\xbf\xa0\xdc\x54\x39\x5c\xe4\xc9\xca\xe8\x5e\xdf\xd8\xb2\xa5\x37\xb3\xaa\xa4\xa6\x43\x0c\xca\xcc\xc8\x74\x47\xc4\x9a\x34\x1a\x93\x36\x42\x13\xa7\xd5\x68\x67\x5e\xf5\xca\xca\xbe\x91\xbb\x37\xd5\x7c\x2e\xbb\x74\xde\x40\xe5\xca\x0e\x67\xc5\xcd\x7d\x07\xbb\xaf\x19\x2f\xae\x5e\x77\xfb\xe0\xbe\xb9\xf7\x54\x44\xc2\xc6\x9a\x75\x99\xb6\xd5\xb5\xfb\x53\x9b\x72\xf5\x89\x59\xd5\x64\xcf\x04\x9c\x93\xff\x6f\x92\x93\x4a\xf6\x2e\xe2\x4e\x68\x93\xca\x14\x70\x01\xe9\x20\x9b\x85\x64\xf8\x24\x48\x97\xb0\xdf\x84\x1d\x83\x8d\x35\x4a\xc3\x64\xfe\xcc\xdf\x3f\x67\xde\x79\x0f\xca\x40\x7d\x28\x0a\xdb\x5d\xa2\xb0\xb8\xfb\xfa\x4c\x2e\xf7\xf0\xe9\x2a\xef\x71\x5f\x8e\xbe\x5e\x7c\x8a\xc8\xf9\x0b\x3e\x47\xf3\x8b\x9f\xf3\xde\xe3\xcc\xb6\xbb\x40\x0e\xba\x83\x78\xa9\x7a\x0b\xd9\xda\xaf\xbf\xf6\xde\xc6\xd6\x9d\xb9\xdf\xfb\x26\x94\x4a\x38\x84\x3e\xec\x74\x16\xe9\xd0\xe1\x92\x90\x44\xe0\x41\x06\x2c\x4f\xa0\x9d\x42\xe8\x46\x48\x74\x0e\x34\x0f\xf1\xc4\xcf\xcb\xce\xa1\x05\x90\xa8\x16\xa3\xf1\x7b\x21\x25\xdd\x2d\x59\x6a\xc8\x8c\xff\x4c\x4b\x6c\x1e\x04\x8e\x64\xc7\x8f\x5f\xac\x31\x69\x47\x9c\x2f\x91\x1c\xc7\xe9\x38\x1d\x86\x1d\x88\x26\x1d\xd3\x52\x1f\xc0\x45\xc0\x07\x98\x6b\x6f\xb9\x05\xee\xba\x30\x00\x01\xe8\x98\x6f\xe0\xfa\x9f\x01\x21\xa0\x3c\x58\x4e\xb4\x0e\xcc\x6b\x16\xc5\xa1\xab\x4b\x42\x62\x81\x07\x61\x0a\x0f\x92\x09\xd5\x3c\xcc\x3b\x8f\x15\x64\xd1\x07\xba\x26\xc1\x5d\x19\x02\xfd\xfb\x99\xa6\x25\xc6\xe9\x5c\x98\xd6\x8c\x30\x21\x84\x04\x1f\xfb\x36\x01\x13\xe9\xff\x05\x53\xa4\x98\x47\x70\xf7\x8f\x5e\x28\x4d\xea\x16\x66\xd3\x99\x77\x2e\x96\x2b\xb5\x0a\xf7\x99\x40\x18\xa8\x49\x96\x11\x0b\x2c\xa8\x68\x4c\xb4\xdf\x92\x42\x8d\x01\x3c\xc7\xf8\xc3\x8f\xd5\x48\x4d\x88\x21\x79\x34\xae\x40\xf5\x57\x35\xab\x67\xfd\xfa\xf4\x2a\x30\xb8\x46\x73\x97\x3c\xb8\xa5\x06\x04\xf1\x5d\x8c\x61\x5a\xe7\xc9\x19\xc5\x5a\xac\xf7\xbd\xd0\xf0\xe2\x75\x18\xc5\xa0\x14\x9e\xca\xc3\xa1\x24\x51\xa1\xde\xc5\x04\x23\xeb\x4f\x67\xff\xce\xed\xe6\x9f\x23\x31\x04\xa8\xad\xa4\x39\x12\x04\xc2\x73\xc1\x0a\x1c\x6b\x03\xc4\x71\x75\x48\x40\x2c\x27\xb0\x83\x41\xe0\x4b\xf4\x4e\x90\xe6\x52\x00\xdc\x1b\x0b\x10\x47\x2a\xa0\x4c\x67\x6a\xb6\x23\xdb\x98\x9c\x10\xaf\x8c\x09\x0b\x45\x76\xb0\x93\x98\x7f\x9e\xf8\x45\xdd\x69\x6c\xb6\x4b\x50\xa9\x69\x10\x23\xa7\xc4\x81\xfe\x89\xac\xda\x57\x61\x8f\xa5\xf1\x06\x34\xc3\xfa\x8b\x4d\xcf\x6f\xaf\x86\xe2\x39\xe5\xf1\xc1\x2f\x83\x22\x81\xaf\xd9\x70\xf7\xc2\xee\x9d\xa3\xd5\xa9\x0a\xc6\xbb\x0e\xe2\x4b\x16\x34\x1b\x6b\xca\xf2\xd5\xce\xc2\x47\x0f\x67\x54\xda\x95\x80\x8d\xd5\xc6\x0a\xf5\xe0\xed\x1f\x6f\xc9\x8d\xaa\x58\x70\x45\x6f\x65\x9f\x76\xd9\x1f\x6e\xec\xcf\xea\x59\xbf\xff\xc6\xb6\xe7\x35\x15\x1b\x87\xf2\x21\x38\x52\x11\xfa\x43\x52\x2a\xf7\x4a\xc1\xc0\xaa\xbc\xf4\xf4\xb9\xed\x1e\x92\x0b\x80\xe3\x3e\xf6\x73\x4d\x34\x53\x70\x66\x49\x5b\x04\x08\x3c\x8f\xfb\x6c\xc4\x7d\x36\x49\x7d\x06\x86\x67\xf0\xc4\x98\xd6\x77\xdd\x39\xdd\xb6\x59\x01\xa5\x39\xac\x2e\x9b\x2b\x29\x51\x1b\xab\x88\x0e\x0d\x41\x16\xb0\x04\xba\x4d\x7a\xad\xf2\xf5\x9a\x51\xcb\xf4\x34\x5e\x76\x6a\xa7\xd3\x58\xe6\xeb\xa1\xdb\xd7\x37\xc8\x0a\x07\xcb\x92\x99\x47\x78\xb3\x39\xaa\x61\xe2\x57\x3d\x0b\x6e\x1a\xcb\x06\xf0\xde\x27\x4b\xca\xaa\x76\x38\xca\xb3\xd3\xd4\xab\x2b\x7f\xb3\xdb\xe8\x36\xaa\x04\xb0\x32\x38\x7e\x59\x51\xb3\xf9\xfe\x85\xf2\xaa\x91\x4b\x1b\x2b\x07\xb5\x3d\x47\x96\x95\xb5\xed\x7d\x72\x6c\x5b\x46\x7b\xa1\x21\x42\x6b\x50\x5c\x37\xb3\x8f\x5d\x6a\x2c\x68\xb2\x69\xad\x95\xae\x04\x32\xc7\x8e\x89\xf7\x70\xcf\xe3\x39\x96\x88\xac\x78\xe9\xf3\x88\x61\x79\x52\x47\x8d\x42\x6f\x09\x12\x82\x4b\x40\xd9\xc1\x55\xda\xa9\xb2\x93\xc8\x4e\x3f\x67\x90\xa9\xcf\x5a\x07\x0e\x2d\xcc\xc3\x07\x8d\x83\xf8\xa0\x81\xc3\xc9\xe0\xca\xcb\xff\x40\x94\xe5\x65\x10\x0e\xb3\xd8\x4c\x45\xcf\xbe\xe7\xd6\x2d\x7e\xf3\x96\x39\x7f\x49\xf2\xd4\x34\xb7\x99\x1f\x7b\x88\x22\x0c\xdc\xcb\xb4\x92\xf3\x98\xf8\x16\xb7\x06\xaf\xef\x78\x62\x2b\xa4\xda\x86\x2f\x4d\x97\x18\x0c\x03\xe7\x28\x9f\x9e\x81\x21\x04\x78\x41\x41\x08\xf1\x9f\x34\xb2\xb3\x02\xf1\xb0\x24\xab\xda\x5e\xb7\x7a\x66\x1a\xd8\x3a\xb6\xf7\x8d\xf7\xcc\x06\x43\x49\x5f\xee\x7d\x44\x5d\x5e\xf1\x03\xf4\x33\xb3\x54\x8d\x4b\xae\x98\x95\x7f\xd9\xfa\x05\xf8\xbc\xb1\x61\xb0\x60\x56\xa1\x9e\x95\x34\x67\xbf\xde\xbc\x87\xd4\x29\x25\xf5\x1f\x88\xfe\x1e\x01\x2c\x1f\x2e\xad\x3b\x84\x38\x1e\x71\x83\x58\x10\x92\x7d\xe4\xfc\x2c\x1d\x84\xf0\x05\xb1\x24\xac\x43\x2e\xa7\xe2\x90\x52\x73\x6e\x7e\x0e\xfd\x08\x6e\x85\xd5\xa0\xcd\x1a\xdc\x8d\x73\x71\xcc\x38\x17\x27\x36\xbf\x58\xdc\x21\x7e\x86\x59\xb1\x97\x99\x38\xa7\x80\x2a\xb3\x85\x70\x88\xd2\xb4\x0f\xd3\xe4\xe4\xf2\x7e\x96\x26\xcd\xff\x0f\x9a\x6e\x81\x95\xa0\xa2\xf9\x41\x38\xc8\x56\x49\x69\xda\x29\x7e\x21\xe5\xf2\x9e\x3e\x22\x55\x36\x7d\x4f\x90\x75\xcd\x80\x57\xc5\x5e\x9f\x4e\xd6\x74\xf6\x0b\x6e\x39\xf5\x33\xa4\x91\x5a\x6d\x89\xc0\xa2\x84\x0b\xd7\x6a\x4b\x38\x27\xde\xc8\x68\x20\x69\x40\x86\x34\x63\x5a\xac\x9a\xd6\x6a\x4b\x86\xe4\x20\x3f\xf4\x82\x3c\x50\xab\x8d\xae\xfc\x0b\x54\x6b\x73\xed\x7d\xeb\xca\xda\xf6\x2b\x5f\x98\xd8\xfc\xdc\x96\x72\x36\x3c\xb1\x72\xa2\x3d\x67\xa0\xb5\x54\xe3\x8c\x28\xea\xbb\x64\xa2\x78\xb0\x54\x0f\x62\xa8\x36\xb7\x8f\x7f\x61\xd6\x8d\xef\x6d\x15\xbf\xda\x71\xea\x58\x0f\x74\xde\xf4\xe9\xbe\x57\x2b\xeb\xb6\x0e\xe5\x86\xc7\x68\x42\x3e\x09\x8a\x8f\x8b\x39\xad\xce\x9b\xb3\xad\xb1\x27\x6f\xa4\xde\x8e\xa4\x9c\x58\xac\x63\x6e\xc1\xfc\x4e\x26\x3c\xe6\x00\x41\x32\xcf\x90\xf0\x37\x9f\xec\x1f\xa7\x8a\x3a\xb7\xd8\x9f\x30\x1c\x80\x8d\x21\x89\x4d\x38\x9f\xde\xe6\xcb\x1f\xc7\xa7\x19\x35\x5c\x34\xa7\x9e\x4d\xf4\x1e\x66\xef\x00\xf1\x8a\x67\xde\x68\xde\xf3\xcc\xb2\xbe\xfb\xf7\x76\x41\xac\x2e\xaf\xcd\x95\xd7\x5b\xa2\xbf\x72\xd7\xe5\x18\x7c\xec\x61\x71\x5e\xc2\x67\xcf\x93\x88\x3d\xe7\xe8\x8d\x01\x30\xa7\xfd\x1b\x1e\x26\xb9\xff\xe2\x0a\x6e\x15\xcd\xc7\x98\x5f\x12\x4a\x68\x34\x12\x1a\xc9\x36\x98\x41\xca\x30\x5c\x84\x54\x4d\x80\x54\x2d\xd9\xdd\xf4\xe7\x37\xe3\x48\x98\xc5\x40\xa0\x35\xc5\x35\xb7\xfe\x92\x1e\xd1\x0a\x0b\x6c\xb8\xf7\x5a\xf6\x2e\x10\xaf\x7e\xf2\xb5\xe6\xdd\xcf\x4c\xd0\x2e\x69\x74\x79\xed\xae\xbc\xbe\xe2\x64\x53\xcd\xc2\xaa\x9d\x6c\xd7\xc7\x0f\x89\xa3\x89\x7f\x7f\x76\xe4\x06\xda\xa9\x25\xb6\x5a\x8f\x2e\x29\xbb\x3e\xb5\x76\x5e\x99\xee\x7e\x5c\x0b\x08\x59\xf1\xfc\xbe\x92\x3f\xc1\x98\xd1\x3d\x9d\x08\x59\xe0\x65\xf1\x34\x52\x83\x00\x6f\x3c\x81\x50\xd0\x49\x80\x13\xea\x13\x2e\x3b\x6e\x57\x2b\x56\x91\xbc\x52\xdc\xee\xf3\x7a\xda\xee\x6c\xfc\xd9\x7c\x90\xc1\x1b\x67\x37\x9c\x3d\x8d\xa2\x71\xcb\x87\xcf\xe6\xe3\xa6\x27\x19\xfc\xe2\x34\x7e\xe1\x8b\x21\x6f\x92\x70\x6d\x48\x24\x1f\x35\xb8\x71\x8c\x6f\x03\x25\x42\x6e\x32\x19\x15\x21\x92\x8e\x1a\x1d\x85\xdb\x86\xeb\x71\x22\x8f\x4a\x5a\x32\xfe\xd2\xff\x31\xf2\x00\x12\x37\xeb\x86\x58\x31\x6e\xc3\x8b\xbb\xeb\xea\x76\xbf\xb8\xe1\xd5\x57\xcb\x06\x4b\x74\xba\x12\x0c\x6f\x73\x82\x41\x3f\xb5\x60\xb8\xbd\x79\x23\x77\x5f\x52\xe5\xcd\x84\x7f\x58\x2b\x3a\xd3\x9d\x3d\x95\x29\x74\xcd\xf4\x62\x5a\xbe\xa6\xb9\x3e\x4e\x94\x57\x92\x8d\x38\x62\xbd\x87\x71\x44\x74\x72\xa0\x29\xc4\x84\x24\x96\x45\xbd\x32\xc9\x32\x00\xc8\x99\x61\x35\x6b\x63\xa3\x88\xdd\x34\x18\x19\xc1\x40\x96\x4a\x80\x22\x97\x94\x01\x90\xed\x49\xa3\xf0\xaa\x32\xac\x7c\x99\x26\x89\x64\x62\x46\x6e\x9a\x28\x2c\x9c\xb8\x69\x84\xc5\x93\xcc\x92\x95\x14\x01\x10\x14\xa9\x8e\x04\x79\xb8\x36\x26\x04\x18\xcf\xbc\x6b\x47\xc5\x17\x59\x6b\x81\x45\xa1\xb0\x14\x58\xfd\x54\x33\xe8\x74\x26\xe4\xf6\x2e\xcf\x77\xac\x5a\xbf\xca\xe1\x58\xb1\x6e\x75\xc6\xba\x57\xf6\xb7\x7c\x7c\x5e\x5f\x7a\xb0\x7e\x70\xb3\xa0\x21\x35\x77\x49\xc4\x99\x0c\x58\x94\x9b\xc2\x30\x82\x1e\x30\x77\x7d\x0e\x31\x96\xec\x93\x02\x89\xb9\x0e\x04\x1e\x32\x0c\xd7\xeb\x73\x9e\xda\xcc\x46\x9b\x2a\x26\x7a\x4a\xfc\x94\x1a\xf7\x47\x50\xb9\xb0\x44\xf7\x98\xfd\x1d\x12\x02\xe7\x0e\x30\x4f\x89\xe3\xc9\x36\x5b\x7a\xac\x0d\x4b\x6b\xeb\x72\x40\xcd\xc4\xaa\xe2\x13\x58\x26\x29\x11\xa2\xc2\x63\x63\x42\x81\xc9\xe9\x5b\x53\xde\xb3\x3d\x25\xb9\xaf\xb0\x66\xbc\xc1\x0a\x27\x34\xc9\x71\x26\x55\x48\xb0\xd2\x14\x67\x4b\x08\x62\x98\x96\x25\x8f\x6f\x6f\xc8\x61\x98\xd3\x2e\x4f\x0d\x73\xf7\x55\x73\x5e\x99\xe3\x1c\x9e\x3b\xea\xda\xf5\xfa\x8e\x0a\xa6\xb0\xa2\xa0\xbc\x6a\xc3\xdd\xa3\xb0\x5f\xe3\x68\x9c\x97\xb7\xc7\x33\xab\xd4\xa4\xb3\xf9\xfc\x80\xc5\xb8\xcf\x37\xe2\xf1\xf3\x10\x84\x99\x58\xa0\x9e\x3f\x9e\x01\x86\xa7\x63\x88\x38\x40\x34\x0d\xbc\xc7\x0f\xe3\xe7\x07\x27\xb2\x28\xd3\xf5\x46\xbd\x91\xee\x9f\xd2\xaa\x09\xc4\xb8\xba\x26\xb1\x57\x94\x93\x5d\x57\xa9\x68\xd7\xf1\xb0\xc2\x53\xb8\xbc\x99\xee\xf8\xc4\xe8\x70\x57\xff\x6b\xaf\x2d\xba\x7b\x65\xf1\x9a\x45\x45\x1d\x1e\x0d\x68\x63\xf3\x8a\x78\xc0\x7d\x8e\xd6\xda\x19\xa6\x72\xd9\xd5\x6d\x35\xcb\x5a\xd3\x59\xd8\xe0\x6c\xcd\xd5\x7d\xba\x70\xc1\xcc\xe1\xbf\x79\xe6\x5f\x3b\xb2\xf2\x36\x67\x74\x51\xfb\x48\xee\x58\xbc\x8d\x39\x4e\xba\x3a\xf4\xf2\xe8\xee\xd7\x2e\x2f\x67\xf4\x35\x13\x2d\xa4\x4f\xf5\x67\x3f\xa6\xf9\x81\x59\x24\x82\x9b\xe0\x89\x24\x01\xa2\x7a\x26\x4f\xac\x8f\x14\x4b\x04\x49\x58\x22\xb4\x37\x9a\x00\xec\x33\x96\x7b\xb8\x53\x26\x9b\x2a\x8e\xf6\x2b\xd0\x87\x69\xc3\x47\x3b\x6a\xf1\xf7\xd8\x42\x7a\xcc\x7c\x35\xb3\xd5\x53\xeb\x50\x40\xa2\x4d\xab\x63\xc8\xc8\x45\x86\xc7\x2a\xf0\xc8\xb9\xbb\x97\x97\xde\x7b\x32\xa4\xb8\xe0\xf7\xcc\xbe\xee\xc6\xc6\xee\xf7\x85\x53\x0b\x6f\x5d\x9a\xcf\x7c\xdf\xba\xc4\x18\xee\xc8\xaf\xb1\x66\xd8\x3c\xcc\xe5\x6b\x9a\x6e\x6e\xb2\x34\xb7\xb4\x5a\x97\xde\xb6\x24\x9b\x5d\xba\xa5\xde\x95\xfd\xc7\x62\x4f\x6e\xfd\xc7\xa9\x6d\x6b\xc8\xdc\xbc\x5d\x5c\xcc\xbd\x80\xc7\xc9\x8e\x72\x51\x49\x49\xa1\x12\x38\x94\x44\xcf\x0b\x99\x4e\x62\xcb\x44\x02\x90\x7d\x73\x6a\x30\x37\xcf\x4f\x42\xc8\xe4\xe6\xe0\x0b\x53\x92\xf5\x7a\xb3\x9e\x24\x08\xc7\x58\xfc\x48\x28\x7a\xcb\x14\xa4\x1c\x1a\xb2\xac\x24\x55\x8c\x48\xb7\xc0\x6f\xf4\x70\xeb\xbf\x62\x3e\xdf\xba\x26\xb1\xa0\xaf\x58\xfc\x23\x0f\xce\x75\xcf\x6e\xaf\x59\xb9\xac\xbc\x37\x27\x56\x90\xc7\xab\xc4\x0f\xd5\xb1\x61\xec\xaa\x71\xe6\x4f\x18\x05\xdb\x7e\x20\x46\xaf\x89\x00\x9e\xa9\xfe\x70\xc1\xdc\x8c\xd6\xdc\xa4\x0f\xf3\x16\x1f\x1d\x99\x38\xea\x52\x94\x77\x2f\x2a\x1c\x53\x17\x95\xe4\x45\xab\x62\xaa\x1a\xca\xe5\xf3\x16\xad\xf1\xfe\x21\x77\xf5\xf8\x1c\x4b\x83\xb1\xae\xad\x37\xfb\x0b\xdc\xc7\xa7\x09\xae\x05\x97\x47\xfa\x48\x46\x8e\xf4\x11\x2e\xd2\x3f\xcd\x05\xfb\x97\xf4\x7f\xec\xdf\x0f\xf0\x5d\x7f\x8f\x3a\xad\x2a\x4d\x7c\x5b\x00\xc7\xc2\xbb\x56\x97\xb6\xb5\x3a\xcb\x6d\xd1\x6c\x70\x54\xb8\xf8\x61\x58\x98\x00\xfd\xbd\xcc\xb5\x53\xfa\x07\xdb\x9f\xaf\x2a\x48\xcc\xb2\xa8\xde\xcf\xe8\xde\xd4\xd2\xba\x2a\x45\xee\x2e\x6b\x49\x6d\x0c\xb6\xa4\xa6\x84\x44\x84\xa4\x39\x1d\xc1\xf5\x8d\x2d\xe2\x65\xe7\xf4\x0f\x50\x24\x5e\x6b\xa4\xa6\x99\x0d\x5d\xe1\xcf\x78\xe7\x89\x6a\xc1\x8c\x07\x90\x32\xa5\x6a\x53\xbd\x92\x5d\xd1\x7f\xce\xb5\x5d\xac\x19\x91\xf2\xf4\xa5\xd0\x4b\x57\x25\xc9\x7b\x9f\xd6\x36\x50\xd9\x56\x4d\xd6\xaf\xbf\x25\x39\xeb\x59\x94\xd8\x7c\x6f\xf2\x9b\x2d\x15\x3e\xe4\x42\xb2\x0f\x4e\x15\x5a\xae\xc9\x95\xcb\xa4\x8d\xa4\x0e\x5e\x3b\xae\x57\x9a\x3c\xfa\x28\xe6\x57\xd8\x2e\xae\x37\xf0\x8c\x5a\xf1\xdf\x68\x1d\x43\x24\x54\x59\xe5\x92\x26\x07\xcb\xbd\x2c\x7a\x9e\x15\x3f\x78\xaa\xff\x54\xe1\x96\x57\xaf\x60\x4e\x9c\x5e\x61\x72\x9e\xbb\x50\x0d\x0d\xab\x67\x92\x1a\x43\x98\x1f\x27\xb8\x3c\x89\x1f\x11\x12\x3f\x58\xc4\xf2\x28\x40\xbc\x66\x1a\x3f\xd4\x84\x1f\xd3\x9b\x05\x40\xa1\x68\x27\x03\x17\x10\x7e\x4c\x6f\xfb\x8b\xf8\x21\xc5\xf1\x67\x67\x07\xd8\x31\x5d\x90\x31\xd1\x03\xa6\xd6\xad\xfd\x2e\x4e\x19\x6b\x50\x05\x33\x7b\x40\xa1\xd0\x99\x19\x2a\xb4\xe3\x52\x18\x26\x6f\x60\x43\x65\xcd\x44\x5b\x1a\xc7\xce\xfc\xec\xf0\xdf\xaf\x6b\xfe\x1a\xec\x7d\xfb\xe6\xc2\xab\x67\xbc\x8e\x42\xe6\xea\x2d\x03\x4f\xf7\xf7\x3d\x35\xb8\xf9\xa9\x0d\xc5\x8c\xa9\x75\x23\xa9\x79\x57\x83\xf9\x71\x2f\xcd\x49\x9a\x27\x75\xd4\x80\x80\x17\x78\x10\xe8\xe1\x0c\x91\xc3\x99\x8c\x5a\xfb\xa9\xbc\xe2\x20\x00\x75\x70\x91\x56\x1c\xa7\x9e\x2a\xda\x70\xbe\xa3\x54\x39\x9a\x94\x98\xc0\x7d\xa5\x70\x21\x17\xec\x98\xdc\xef\x2a\x60\x9d\x10\x19\x96\x64\xa4\x42\x39\x86\x08\xe5\xfc\xc1\x4d\x55\x95\x8b\x9a\x1d\xdc\x03\xe4\x20\xf4\x00\x4e\xb9\x1d\xd3\xa7\x30\x77\xf8\x06\x97\x6e\x37\x96\x8e\x1d\x03\x10\xe9\x3d\x26\xe9\xff\x44\x1e\x57\xe0\x7e\xed\xa4\xf9\x4b\x83\x52\xbf\x92\x91\xc0\xb0\x8c\x40\x8b\x9c\x90\xf1\x19\x9c\x82\xed\x21\xf3\x8f\x9c\xf9\x22\x8d\xf0\xd7\xa4\xa5\xac\x17\xc9\x64\x89\x32\x62\xd4\xb4\xa8\x62\x02\xd6\x28\xf0\x93\x7e\xe1\x21\x83\xaf\xf6\x93\x74\xee\xfd\xa0\x82\xa4\x04\x75\x1c\x03\x4a\x05\x44\xc4\xe0\xd9\x9b\x3d\x6b\x65\x69\xc3\xda\x8e\x4c\x0e\xee\x16\xdb\xb9\x3c\x71\x26\x1c\xbf\xe8\x38\x0d\x13\xec\x0a\x7c\x4e\xb0\x4b\x19\x42\x0c\x44\x02\x47\x5c\x9f\x1c\x43\xa0\xca\x88\x39\x79\x6a\x42\x05\x2f\x1d\xa0\x01\x19\x0d\x89\xf1\x31\xe4\x78\x60\x07\xbb\xe0\x3b\x38\xbb\xa7\x16\xaa\x0f\xd8\x5f\xa7\x92\xcd\x1c\x5c\xff\xfa\xc1\xd6\xd6\x83\xaf\xaf\x5f\x7e\xa2\xbc\xb8\x74\x5f\x57\xd9\x68\x8d\xd9\x5c\x33\x5a\xb6\x72\x1d\xcb\x24\xa8\x21\x5a\x61\x61\x98\x8e\x2b\x9e\x50\xf6\xdf\xf2\x31\x81\x7a\xf9\xf8\x96\x7e\x47\xea\x9b\x7a\x43\xe1\xfc\x3d\xcd\xe2\x0f\xad\x7b\x17\x14\x32\x6b\x17\x76\x9c\xe8\xe8\xb8\xa7\x6b\xc5\xdd\x4b\x73\x28\x86\x14\xa6\xff\x72\x82\x77\x40\xe8\xd7\x01\xc7\x26\x01\x70\x14\x31\x9e\xec\xf7\xe3\x93\xee\x4e\xfe\x1c\xa4\x03\x6c\xef\x88\x8b\x8e\x0a\x0e\x22\x18\x07\x84\x7e\x13\x56\xd3\xb2\x24\xf0\x7e\x9f\x89\xcc\x7d\x5e\x67\xe8\xf1\xe6\x05\x67\x99\x55\x0e\x7c\x04\x44\x86\x46\x31\x55\x6b\x6e\x9e\xbd\xeb\xcf\x07\x1a\xea\xf6\xbc\x7e\xd9\x92\x1b\x5d\x69\x9e\x3d\x6d\xb5\xf3\xcb\x75\xfa\x9a\xf1\xdf\x01\x86\x21\xd5\xa7\x0d\xa5\xa7\x0f\xa5\x91\xc4\xcd\xae\xab\x9e\x1f\x4b\x19\x7b\xfe\x60\x97\x41\xf7\x6e\x7c\x62\x4e\xf7\x78\x76\x4a\xee\xf8\xac\x1c\xff\x7c\xba\x9d\xf8\x14\x49\xbd\x3e\xdf\x6e\x3e\xce\x40\xe0\x18\xe3\x43\x53\x24\x81\xbd\x78\x9a\xcb\x27\x95\x7e\xe5\x45\x26\xc5\xa5\xe2\xb3\xec\x31\xec\x2e\xcf\x71\x96\x55\xb2\x8c\x3e\x01\xa2\xe3\x52\x88\x02\xf2\xab\xb6\xce\x9d\xc3\xb9\x1c\xf7\xf2\xdf\xfe\x76\xe6\x78\x6d\x1f\x73\x7c\xea\x3c\x4f\x9d\x7d\xf5\x02\x24\x61\xd5\x63\x7a\xb6\x91\xf9\x7d\x41\x7a\xa8\x5f\xd1\x1f\x68\x6c\x53\x9a\xce\xa5\x67\xca\x70\x27\xb2\x01\x82\xfa\xc4\x4f\xd9\x5d\xe2\xad\x51\x89\x8e\xf8\xe2\x72\xaa\x06\x46\x48\xca\x44\xc5\xf8\xc1\xd6\xee\x7d\x23\x79\x3c\x3e\x81\x7c\x2c\xc6\x19\x0b\x53\x63\x99\x65\xa3\xd5\x57\x57\x1b\x6a\xeb\xea\x8c\x44\x77\x60\x52\x07\xae\x9e\xef\xa7\xeb\x4b\x6e\x04\xcf\xd3\x22\x09\x57\x8d\x63\xa1\xce\x57\x5d\x28\x10\x90\x4a\x68\x15\x58\x2e\x10\x17\x93\x40\x97\x56\x8f\xb4\xb4\xcc\x18\x57\xcd\xea\xc3\xfe\x8d\xc1\xd9\x6c\x69\xec\xc5\x4a\x8b\x19\xce\x2d\x46\xc6\x91\xd9\x50\xb6\x69\xb5\x7b\x46\x9e\xae\x61\xf7\x0b\x6b\x86\x4e\x6c\x6d\x12\xff\xa6\xf3\xd4\xd9\xcb\x06\x8a\x12\xb5\xb9\xb3\x8a\x5f\x78\x61\xc3\x56\x53\xd5\x48\x99\xb3\x3d\x4f\x0f\xb1\xb6\xea\xc1\xf1\xb5\x85\x6b\x88\x3b\xf5\xd0\xc6\xe3\x29\x9a\xb2\xd6\xde\xcc\x91\x6b\xe7\x7b\x72\x17\x1e\x9a\x9d\x52\x91\xa1\xd5\x65\x55\x5b\xd2\xea\x3d\x09\xef\xce\x5b\x91\x5a\x9f\xa3\xd3\x79\x6a\x52\xea\xd6\x0c\x54\xa6\xaa\x72\x17\xe3\x5a\xc2\xa8\x80\xe9\xe6\xae\x65\x0b\x50\x35\xec\x38\xbb\x0e\xa1\x76\x57\x09\xad\xc7\x8a\x72\xf0\xe7\xbf\xf2\x7d\xbe\x6a\xca\xe7\x47\xc4\x64\x2e\x0d\x21\xc6\x82\x4a\x51\x88\x78\x1a\x04\x54\x1a\x82\x50\xf0\x49\x04\x0f\x8b\xf4\x88\x85\x00\xbe\x64\xbf\x61\x93\x05\x3b\xc9\xd3\x2d\x09\x17\x78\xa9\xfa\xf5\x7c\x2d\x04\x29\xb1\xbe\x4b\x2d\x5b\x24\x8c\x16\xbe\x8c\xcf\x2c\xb3\x6c\x32\x67\x7e\xc0\x1d\x73\x2d\x9a\xd7\x6b\x68\x2e\xbd\x6a\xf0\x24\xb9\xfe\xf7\xec\x29\x36\x48\xd0\xe0\xeb\x75\xf7\x93\xcb\xab\xe9\x56\xfe\x00\xa2\x55\xce\xe3\xee\xa3\x55\x96\xef\x93\x6e\xe7\xaf\x7a\xe4\x76\xb1\x41\xe4\x76\x1b\xcd\xce\x0f\xf8\x85\xae\x45\xa3\x7d\xf8\x76\x57\x0f\xde\x8d\xc8\xfd\xde\x10\x1f\x63\xc3\x20\x7c\x92\x9e\xea\x00\x3d\xa6\x29\x37\x08\x8d\x77\x96\x9b\x2f\x33\x3b\xfe\x5e\xea\x1a\x23\xe4\x94\x1d\x18\xfc\x1d\xe9\x33\x3c\xc7\x9e\x62\x7e\xc2\xf4\x54\xc3\x3c\x0e\xa7\x22\x3f\x8d\x24\x5e\x40\x15\xee\xe7\xef\x05\x3b\x63\x81\xd1\xb3\x64\x02\xc8\x60\x14\x9d\x40\xd2\x77\xa9\xb8\x0f\x2f\x09\x1a\xfc\xdd\xbc\xb3\xb3\xe8\x77\xf3\xd0\x33\x88\xfc\x30\x50\x2a\x3e\xc2\xbe\x80\xbe\xc4\xf4\xa8\x91\xa2\x04\x07\x60\x09\x3c\x87\x6f\x0e\x98\xa8\x38\x2d\x13\xa4\x9a\x4a\x15\x3f\xf9\x92\xb9\x44\x9b\x5e\x62\xd9\x85\x09\x84\xea\x78\x67\x19\x7e\xe5\xfa\x7b\x31\x26\xb5\x2f\xb9\xb9\xf4\xe0\xe0\xdd\x77\x4d\xbe\x44\x80\x16\xd0\x1a\xae\x01\x2c\x62\xae\x80\x22\xde\x48\xbe\xd7\x62\xb2\x11\x14\x06\x2a\xb7\x06\x69\x03\x98\x69\xe4\x5f\xae\x46\x3c\x8c\x71\xd3\x6e\x80\x41\x50\xc3\x08\xdb\x76\xe6\x1e\xb6\xed\x73\x58\x29\xee\x94\x6a\x8e\x8b\xb3\x29\x2e\x6c\x0c\xa9\x07\x82\x04\xa1\x80\xc6\x70\xf3\xdd\x24\x00\xbb\xb8\x3e\x18\xdf\x5d\x2a\xfd\x5d\x58\x2f\x15\xec\x9e\x92\x84\x1c\x12\x84\x33\x3b\x03\x0f\x22\xbf\x92\xa3\x94\xeb\xa3\x0f\x3c\x0a\xb3\xc9\x2f\x79\x28\xc5\x06\x9f\x0d\x47\x3f\x60\xd6\x7c\x4c\x9e\xfc\xb1\x77\x3b\x19\xc7\x83\xf0\x03\x3b\x8f\xfd\x16\x29\x2f\x54\x2b\xda\x46\x6b\x45\xc3\xf4\x44\xb5\x83\xfa\x02\x8c\x4a\xd8\x59\x98\x94\x54\xd8\xe9\xf1\x74\x16\xe8\xd9\x68\xe7\x8c\x82\xe4\xe4\x82\x19\xce\x3c\x67\x5b\x81\x5e\x5f\xd0\xe6\x94\xe6\xf6\xbf\xb0\xbd\xb7\x0a\xba\xf1\xdc\x8e\x3a\x5b\x4b\x43\x1b\xa3\x20\x11\x49\xdf\xcd\xc5\xf9\x04\x00\x5d\xe4\x3b\xf1\x29\xfc\xde\x8c\xa2\x1a\xce\x02\x69\xf1\x36\x7e\x17\x47\xe6\xff\xd9\xb3\xc4\xd6\x00\xfe\x17\x8c\xef\x05\xb9\x81\x80\xea\xf1\xbd\x1f\xc0\x39\x84\x7a\x94\x8d\xf2\x51\x2b\x1a\x45\xeb\xd1\xb6\x92\xa8\xfc\x3c\x26\x24\x34\x37\x88\x91\xa1\x58\x60\x04\x7f\x5e\x92\x1d\x00\x11\x44\x20\x52\x1c\x20\x34\x94\xa6\x5c\x54\x10\xe1\x12\xd2\x83\x43\xe7\x8b\x69\x19\x0a\x29\xee\xa6\x92\xe8\x30\x36\x14\x82\x78\x14\xc2\x0f\x5f\xe8\xaa\xa9\x6d\x49\xa0\xd4\x9a\x55\x8b\xc7\x86\x07\x6d\x36\x87\xcd\x66\xc4\x45\x46\xc3\xf0\x98\x80\x6f\xe7\xf1\x03\x09\x9d\x1b\xa3\xcc\x4e\xe3\x68\x8c\x05\xd4\xec\xb4\x4c\x0e\x7e\xda\x27\x30\xfd\x93\x62\x43\xf9\x50\x49\x5e\x77\x52\xd2\xac\xdc\x92\xe1\xf2\xe4\xe4\x32\xfc\x6e\x56\x52\x52\x77\x6e\xe9\x70\xb9\xe1\x1b\x7d\x49\x5f\x61\xc9\x70\x45\x32\x6e\x54\x5c\xd8\x5f\xaa\xdf\x30\xc8\xba\x07\x8f\x84\xc4\x24\x2a\xb4\x89\x91\x5c\x50\x74\xa2\x52\x95\x18\x2d\x13\x0f\x93\x4f\x62\x13\xa3\x26\x3f\x39\x1b\x14\x93\xa8\x52\x26\x44\x07\xe1\xbf\xf4\x13\xb0\xe5\x8e\x34\xa6\x1a\x93\x92\x8c\xa9\x8d\x23\xb9\xe6\xdc\x91\x86\x54\x5c\xf4\xc8\x90\xda\x30\x92\xcb\xde\x9e\x37\xd2\xe0\x70\x34\x8c\xe4\x19\x73\xe7\x36\xa6\xa6\x36\xce\xcd\xf5\xce\xe8\x67\x3a\xfa\xcf\xfc\x1e\x23\xd0\xc6\xc4\xe8\x53\x34\x66\x75\x0a\x7d\xa1\x36\x4f\xfb\x84\xed\x97\x3e\xb2\xab\x8d\xf8\x85\x42\x81\x5f\xd0\xfd\x02\x76\xa0\x4d\x6c\x27\x7b\x03\x12\x08\x56\x25\x0b\xbe\x28\x60\x04\x33\x7d\x25\xde\x01\x35\xc6\xc8\xe9\x0c\x8d\x31\x80\x1b\x5c\xcc\xdc\xff\x48\x6a\x20\x13\x29\x2e\x85\x6d\x31\xb0\x4d\xba\xcf\x66\xb4\x91\x6d\x65\x8f\x20\x81\xd4\x01\xe2\x81\x21\x37\x62\x80\xde\x89\x81\xc0\xad\xe8\x94\x12\x62\x58\x22\x02\x41\x09\x86\x18\x96\xf1\x40\x9c\xf8\xe9\x03\x5f\x7f\xcd\x1e\x11\xd7\xc6\x88\x6b\x61\x1f\x5c\x81\xa8\xfd\xee\x13\xf6\x30\xf7\x06\x51\x6e\xef\x63\x10\x64\xd8\x4d\x78\xf4\xe0\xda\x2d\x70\x76\xcb\x27\xe5\xec\x9d\xe5\x44\x1e\x85\x33\x19\x9c\x16\xef\x75\x21\x28\x02\xfb\x76\x42\xc2\x01\x71\x41\x00\x01\x43\xa2\x92\x07\x7f\xd4\xbf\xdf\xdb\x5f\x40\xe6\x9d\x96\x9a\x0a\x67\x4e\xf9\x96\xe3\x48\xa4\x13\xc7\x34\x62\x93\xa1\x3c\x3a\x20\x5c\xf0\x1e\x47\xa2\xdf\x2d\x40\x5c\x62\x32\x76\xdb\xc1\x83\xf7\x8a\x79\x1c\xbc\x70\xbf\x58\x03\xc1\xd1\xec\xd8\x65\x0f\x3d\x34\xcc\xac\xf3\xde\x06\xeb\x8c\x94\x07\x76\x66\x0f\xfb\x07\xfe\x51\xa4\x46\x0b\xeb\x4f\x98\xfd\x35\x25\x15\x00\x93\x35\x25\xa5\x37\xdd\xd2\xd7\xda\xc9\x9a\x92\x05\x34\x0c\xc1\xff\x86\xa8\xc2\x6a\xff\xf6\x4c\xbe\xf2\xe3\x71\x16\xf8\x4b\x4a\xaa\x91\x9a\x78\xed\x84\xa0\xa9\x25\x25\x03\xc0\x59\xf8\x15\xbc\x9e\x64\x18\xaf\x2f\x1c\xac\x30\xbe\x21\xd7\x67\xe8\x5c\x65\xf2\x37\xf9\xbb\xd7\x16\xd7\x18\xea\x97\xb7\x8a\x02\x3c\x9e\x55\x9b\xaa\x48\x35\x7b\xdf\x66\x93\x50\x00\x4b\x7f\x1f\x5e\xe7\x2e\x54\x5f\x52\xe3\x47\xfd\x08\x05\x59\x18\x10\x80\x95\xc1\x70\xe0\x39\x09\x1e\xd6\x0f\xf9\x51\x41\xc9\xa2\x11\x62\x85\x4c\x83\x2b\xd3\x99\x91\x9e\x86\xc1\x9c\x93\xb1\xae\x43\xaa\x2b\x28\xa2\x22\xc8\x12\xd5\xab\x15\x02\x01\xbe\x22\xe0\xf8\x6e\x0b\x3e\x69\xd2\xdf\x69\x1a\x85\x1a\x37\x51\xe3\x74\x44\xf1\x63\x26\x21\x99\x39\x72\xfa\xa3\x6e\x4d\x82\x9c\x67\x6e\x3e\xc2\x5e\x7b\x35\x57\xb6\xfa\xb6\x39\xc4\x7a\x22\xfe\x37\x21\xb3\xcc\x68\x2c\x72\xc4\xf2\x90\x26\xbe\xc5\x83\x01\xfe\x64\x2e\x1a\xb1\x7d\xfc\xb1\x60\xf1\x14\x27\xba\xae\x99\xb8\xe6\x57\xa3\x37\x2f\xc9\xcf\x1f\x3b\xd4\xe7\xaa\x4e\x8d\x89\xcb\x6a\x76\xfd\xea\x9a\x09\xc9\xf7\xba\xee\xec\x97\xbe\x73\xb8\x07\xbd\x45\x4f\x24\x0f\x84\xd2\xdc\xd7\x38\xfc\x97\x07\xf0\x57\x4a\xce\x44\x41\x42\xa8\x10\x14\x3a\x8e\x67\x15\x07\x21\x1c\x11\x49\xd4\x62\x44\x86\x81\xd4\x93\x21\x89\x13\x74\x23\x62\x7a\x79\x9f\x24\x23\xb7\xfb\x7f\xbf\xb2\x86\xcc\x45\xcf\x2f\xbc\x88\xe7\x0b\xa5\x2b\x11\xbd\x90\xa0\xab\x78\xb2\x52\x53\x6c\x56\xb9\x42\x2f\x37\x92\xe2\x81\x44\x22\x5e\xa8\x78\x60\x04\x4b\xe1\x13\xa8\x8f\x8e\xc6\x81\xc1\x94\x98\xcb\xa3\xf7\x60\xdc\xc2\x18\x45\x4a\x68\x9c\xaa\xc3\x8e\x71\xfa\x4c\x33\x82\xdd\xdd\x6b\x1a\xb2\x5f\x3c\xdb\xb8\xb6\xcb\x1d\x34\xe3\xc5\x7b\xce\xdc\x9c\x6d\xcb\xc3\x10\x2e\xc6\x3c\x5b\x36\x7b\xcc\xbb\xdd\x91\x9f\x1c\x11\xc2\xed\x52\xa8\x0d\x8d\x6b\x3b\x99\xd5\x6d\x3b\x86\x3c\xde\xd7\x70\xae\xd6\xf0\xce\x36\x02\xba\x21\x1e\x72\x36\x8f\x7a\xb2\xe7\xb5\x3a\x09\xe6\x14\xde\x3b\x66\xd1\x5a\x55\x2d\x25\x8d\x7a\x08\x92\x25\x83\x10\x44\xd2\x8f\x43\x80\x01\x82\x1d\x27\x84\x00\xd1\x48\x07\x43\x27\x01\x8f\x82\x82\xa8\x26\x5a\x11\x28\x11\x87\x19\xec\x48\xb5\xe3\x9e\x4a\x40\x32\x26\xa3\xd4\x53\xea\x6d\x0c\xf4\x93\xcc\x2a\x37\xad\xc0\x30\x25\x09\x99\x24\xaf\xe8\xd9\x83\xe2\x1d\x6c\x7a\xeb\x78\xa5\x7b\xd8\x91\x94\xbf\xa9\x6c\xed\xef\x7e\xd5\x89\x13\xf7\x8e\xdf\x1d\xd4\x7b\xcd\xeb\xeb\x0a\x57\xe4\x27\xd9\xe7\x64\xee\x3c\x16\x06\x33\xc5\x3b\xa0\x93\x09\xea\x5c\x53\xa7\x8f\x94\x7f\x12\x11\x55\xb1\xfd\x95\x6d\x07\x37\x1c\xd8\xfa\xe2\xf6\x0a\x79\xc4\xa9\x88\xe8\x2b\x6f\x3a\xb0\x01\x71\xc8\x8d\xfb\x74\x84\x7f\xc1\x17\x31\xdf\x83\xc2\x4b\x42\x66\x75\xb5\x56\xe5\x67\x44\x72\x5c\xc6\x05\x52\xe6\x0d\xd3\xf2\x36\xa7\xe7\xd8\xba\xa6\x6f\x4a\x58\xd8\x31\xb3\x0c\x95\x23\xe5\xe5\xa3\x55\x46\x63\xe5\x68\x59\xc5\x68\xa5\xe1\xf1\x50\x25\x3e\xc1\x24\xa9\x42\x43\x55\x38\xdb\x3d\x49\x19\xf2\x2e\x69\x41\xbe\x31\x54\x8c\xe2\x96\x95\xc6\x47\xc3\x35\x49\x0a\x3c\xa2\x41\xa1\xaa\x64\xda\x52\xdc\x41\x24\x26\x67\x75\x0f\xd4\xda\x33\x5a\x17\x15\x36\x16\x2d\x6a\xcb\xb0\xd7\x0e\xba\x63\x4c\x89\xd1\x6a\xb3\x2b\xae\x11\xc3\xac\xa9\x63\x12\x8c\xd1\xde\xc2\xc2\xc5\xad\x19\x19\xad\x8b\x49\x1b\xf2\x62\x51\x51\x1c\x46\x36\x53\x9b\x33\x71\x1b\xdf\x8b\x4b\xa9\xe4\xa5\xeb\xe9\x28\x5e\x4f\x56\x7e\x3f\x32\xa2\x74\x14\xf4\x80\xdd\x14\x8d\x98\x0c\xe9\x74\xeb\xc6\x43\xe2\x26\x21\x03\xe7\x54\x45\xa7\xdd\x67\x3d\x1e\x7f\xfd\x74\x76\xe4\xb2\x17\x36\x97\x38\xfa\x9c\xae\x3e\xbb\x67\xce\xde\xee\x9a\xb5\xdd\xce\x9c\xb1\x1b\x46\xd5\x9e\xee\xb2\xcf\xbb\x67\xa4\x24\x66\xb8\x95\x25\xab\x6e\x1b\x09\x97\xc9\x1e\x13\x64\xd0\x37\xff\xd6\x65\x05\xe9\xdd\x1b\x5b\x52\xf2\x77\xee\xdc\x98\x91\x9e\xd7\x53\xac\x87\x7f\x16\x1c\xe9\x4a\x75\xe5\xb5\x77\x21\x8e\xc6\x19\xac\xe6\x9f\x26\xf1\xab\x78\xbe\x39\xc9\xb8\x64\xa4\xd9\x92\x63\x23\x78\x84\xc7\x45\x4f\x01\x84\xb1\xeb\xc3\xa5\x9e\xc6\xfd\x6c\x92\xc1\x14\xa0\x2b\x06\x2b\x78\xcc\x57\x4f\xfe\xf8\x24\xfe\xbf\x55\x65\xcd\x37\x9a\xf2\xad\x2a\x95\x35\xcf\x64\xca\xb3\xa9\x16\x28\x92\x92\x62\x14\x49\x3a\xc5\xeb\xe2\x9b\x90\xce\x2e\x39\xb3\x1f\xc3\xdd\x5c\xc5\x2e\xbc\xdd\x5a\xe1\x8c\x8b\x73\x56\x58\xff\x6c\x2d\x27\x2f\xca\xad\x21\x8e\x8c\x0c\xc7\xb3\xa9\x4e\x67\xaa\xf7\xc3\x21\x8a\xeb\xce\x5e\xc9\x8d\xd3\xba\xff\x0a\xcc\xaf\x98\x48\x01\x30\xbf\x80\xf5\xd1\x85\xa1\xb4\x0d\x12\xce\x8d\x5b\xcf\x7e\x33\x51\x35\x71\xc9\x35\xab\x37\xed\xbf\x44\x8c\xd9\xba\x63\x07\x1c\xe4\xbe\x17\xaf\xa5\x45\x67\x12\xc5\xdd\xb0\xdc\xfb\x31\x60\x90\x0b\xf8\x35\x39\xf0\xd1\x7a\x70\xbe\xba\xf0\x56\x7c\x5f\x63\x52\x14\x83\xef\x6b\xa2\xab\x82\xc3\x93\x90\x93\xfa\xaa\x97\x53\x3f\x69\x36\x48\x68\x72\x66\x33\x17\x3d\xf3\xd1\xe1\x9a\xed\xcb\x67\x57\x98\x6c\xb5\xc3\x2b\x36\x95\x8d\xde\xbf\xad\xc9\x8b\xb2\x77\x37\xf5\x3f\xd2\x2d\x5e\x51\xbf\x27\x97\x89\x77\x5f\xde\xef\x2e\xb4\xd6\x8d\xac\xdf\xd7\xd8\xb8\x6f\xfd\x48\x9d\xb5\xed\x8a\xdf\xac\x48\x17\x1f\x76\xe5\xe7\x17\xb3\x29\xa5\xb9\xe2\x97\x90\x98\x55\x88\xb5\xc8\xc1\xb3\xdf\x71\xa7\xf8\xbb\x50\x3a\x3c\x73\x56\xcf\x7c\x9e\x7b\x18\x99\x61\xa5\x19\x41\x24\xbc\x08\x37\x21\x84\xdf\xd3\x73\x16\xf3\x39\xd1\x2a\x71\xfb\x78\xdc\xfe\x23\xfe\x51\xdc\xfe\xb9\xb3\x51\xcc\x17\x52\x7b\xc3\xf7\xb4\xfd\x0d\xb4\x7d\x34\x6d\xff\x85\x5f\x2f\xfd\x5e\xf2\x9b\xc5\x9d\xfd\x2f\xc6\x07\x78\x18\x5f\xf7\xc2\xd9\x70\xe6\x6b\xe9\x3a\xa5\xf4\x9c\xf5\x67\xbd\x81\xeb\xbe\xa6\x6a\x2c\xfb\xf0\x59\xaf\x74\x5d\x35\x7e\xde\x9f\xf8\x5f\xe3\xeb\x7e\x7b\xb6\x88\xf9\x52\xba\xee\x27\xe9\xba\x03\x53\xe8\xfb\x92\x6a\xbd\x0c\x5a\x82\xe7\xf6\x1c\x5e\xc4\x1c\x2d\xc2\x3c\x75\xd9\x12\xa2\xc9\x58\x61\xc1\xe2\x43\xa7\xb2\x50\x31\x73\x7e\x15\xf2\xf3\x30\xf5\xd3\x58\xa6\xb6\x75\x5f\x41\x64\x61\xe7\x78\xa9\xa5\x28\x27\x27\xd9\x16\x57\x54\xdf\x93\xb3\xe3\x8f\x07\x1a\xcb\x37\xe3\x9c\xe1\xc7\x37\x97\x17\xad\x39\x79\xb0\xb8\x2b\x5b\x13\xeb\xe9\x2c\xc2\x88\xaa\x9a\x10\x63\x4e\x03\x17\x92\x5b\xd0\xbd\x7f\x24\x47\x08\x53\x84\xbf\x1c\x1e\xa7\x0c\x5f\xfc\x07\xf1\xd5\xdf\xe4\xef\xf9\xf6\xfe\xd1\x96\xbd\xcf\x2e\x53\x8e\x61\x2c\xd1\x0f\xd3\x5b\x17\xe4\x51\x3c\xfd\xdc\xc1\x4b\x6b\xc7\xd4\xae\x94\x38\xba\x87\x5f\x77\x36\x98\x33\xe1\x39\x26\xc3\x3a\x93\x40\x74\x26\xde\x1f\xa8\x6d\xc2\xe7\x94\x5b\xc5\xcf\xd9\xcb\xbf\xe7\x5f\xf9\xc9\x2d\xdc\x86\x68\x7b\x93\xf8\x5f\xee\x51\x32\x27\x71\xfb\x20\x16\xb7\x07\x20\x5b\x35\x00\xb1\x52\x00\x7b\xb9\xa8\x61\x63\x4f\x2f\x64\x8a\xbd\xcf\x70\x8b\xbc\x51\xf0\x19\x53\xe9\xdd\xf7\xd1\xaf\x98\x57\x99\x67\x0f\x7d\xe4\xfd\x95\x74\x8f\xab\x98\x6e\xf6\x6b\xb6\x00\xb1\xe4\x6c\x73\xbe\xe6\x28\x8f\xa2\x9a\x23\x5e\x52\xec\xd7\x67\x8e\xb1\xbd\x4c\xf7\x27\xf4\xb9\x08\x71\xc3\xf8\xb9\x21\xf8\xb9\x3c\x7d\xae\x3a\x1b\x5c\x60\x60\xf1\xec\x67\x2c\x91\x2a\xc8\xfa\x44\xac\xff\xe2\x99\xf7\x61\x3d\x78\xea\x3a\xb8\xc5\x38\xae\x4a\xfd\x09\x7e\x42\x0e\xfa\x8e\x7b\x99\xfd\x23\xb2\xa1\x62\x34\x13\x85\x3c\xd4\x5c\x91\x9b\x16\xcb\xb1\x93\x62\xd7\x12\xc1\x9e\x23\x7d\x7d\xb1\x29\x01\x21\x2c\x53\xd2\x18\x95\x29\x58\xb7\x6e\x5f\x5d\x62\xee\x65\x4b\xc3\xb2\x86\x8c\xb6\xea\x5c\x95\x3a\xb7\xaa\x2d\xbd\x61\xa2\xd1\x6c\x6e\x98\x68\x48\x6f\xaf\xca\x55\xab\x72\xab\xdb\x33\xf0\x1b\xcb\xab\xa1\xda\x54\xbd\x31\xdf\x1e\x0b\x10\x6b\xcf\x37\xe8\x1d\xda\x50\x2f\x87\x81\x5f\x93\x93\xa5\xcf\x52\xf2\x8d\xe4\x33\xa6\xad\x71\x53\xaf\x0b\x07\x88\x58\x2c\x35\x9e\x24\x57\xef\xa6\x46\x63\x23\x0e\x8e\xd4\x65\x55\x98\xcd\x15\x59\x3a\x17\x86\xda\x4b\xce\xb5\xa9\xec\xd9\xae\xa0\xa8\xe0\xec\x82\x34\xa5\x35\xc7\x68\xcc\xb1\x2a\xd3\x0a\xb2\x83\xa3\x82\x5c\xd9\x76\x95\x2d\x37\x19\x01\xfa\x5c\xac\x67\xbf\x15\x1c\x28\x09\xf3\x49\xc1\x91\xf1\x3c\x37\xea\x61\xaa\x1d\x91\x24\x69\x33\x9f\xd2\xe0\x87\x42\x53\xa8\xa2\x30\x36\x27\xcf\x33\x77\x7f\xaf\xad\xd1\xaa\x51\xa6\xea\xea\x9a\x92\x67\x5f\x3d\xea\xc1\xe1\x0f\x32\xa1\x7f\x06\xf7\xfb\xde\xbd\x83\x99\x61\xc1\x7f\xe6\xf9\xd6\xfa\xd3\x69\x54\x8e\xec\x45\x5f\x73\x2d\x5c\x10\xd2\xa3\x72\x3c\xe7\xcb\x33\xf5\x51\x78\xce\x13\x50\x0f\x0f\x66\xe3\xb9\x7b\x6d\x1a\x2b\xc3\x62\x44\xf6\x33\xdf\x1d\xca\x58\x5b\x66\x2d\xce\xf5\x24\x25\xba\xdc\xf9\xa6\xb2\xe5\x19\x21\x19\x8b\xca\x4c\xf9\x1e\x57\x62\x52\x76\x6e\xb1\xb5\x6c\x63\x86\x22\x63\x99\xbf\x85\x07\xb7\x58\x8b\x5b\x2c\xc7\x2d\xdc\xb8\x85\x07\xb7\xc0\x1f\xb0\x13\x95\x8d\x10\x8a\x8b\x07\x46\xc6\xc6\x84\x34\x56\xfe\xa1\xb2\x31\x04\x57\xd4\xc4\x95\x05\x43\xa1\xb1\xf2\x9d\x9f\xf9\x0e\xf9\x72\x23\x36\x73\x75\x5c\x2b\x8a\xc1\xbc\x0b\x63\xc8\x1c\xd3\xcb\x2c\xa4\xb0\x61\xb6\x1e\xff\xaa\x65\x2e\x9c\x67\xa6\xe7\xea\xbc\xaf\xb5\xaf\xcb\x3c\x05\x7d\x8b\x44\x0f\x53\xd1\xb1\x36\xeb\xf7\xe2\xfd\x8b\xe0\x11\x48\xbc\xbe\xb8\xff\x93\x57\x4f\x1d\x2d\x1e\x3c\xf5\xaa\x74\x8e\xbe\x13\x19\x38\x1d\xf7\x19\x1a\x45\x89\x28\x02\x84\x12\x2c\x35\x40\x06\x3b\x50\x92\xf7\x65\x49\xea\x80\xe0\x93\x56\xde\x97\xf1\x0b\x7a\xcd\x71\x94\xcc\xa5\x73\xff\xc2\xd7\x24\xa1\x10\x88\x08\x5c\xa3\xf5\xbe\xe4\xbb\x26\xc2\x7f\xcd\x4b\xf8\x05\x1d\x87\x4b\x09\x86\x28\x5e\x1b\x3c\x0a\xc7\xe3\x10\x16\xc4\x92\x7d\x15\x5c\x00\x06\xd0\xb3\x16\x19\x1b\x83\x97\xca\xb7\x5f\xc2\x4a\x71\xf7\x97\xe2\x2e\xe6\xc9\x27\xd4\xb1\x8f\x3f\xa3\x54\x61\xbb\xbb\xc5\x6b\x63\xfe\x02\x77\x57\x54\x88\xed\x62\x4b\x79\x09\x42\x00\x8a\xb3\x5d\x4c\x02\xfa\x09\x85\x62\x1e\x84\xf0\x90\x31\xd5\x3e\xc3\x24\xc4\x98\x72\x2d\x4b\xcd\xa6\x27\x1f\xb0\x0f\xf4\xcd\xd4\x37\x14\x6f\x69\xa8\x41\x2a\xd4\x89\x42\xb8\x4b\x39\x01\x3f\x3d\x1e\xa5\xa0\x3c\x54\x82\xaa\x50\x03\x6a\x43\x3d\x68\x00\x0d\xe3\x9e\x2c\x44\x4b\xd0\x32\xb4\x0e\x6d\x44\x5b\xd0\x76\xb4\x0b\xed\x43\x07\x08\x1e\xeb\x95\x57\xec\xdd\xbd\x73\xc7\xb6\xad\x97\x6e\xda\x70\xc9\x9a\xe5\x4b\xc7\x17\x8d\xcd\x9f\x37\x77\xce\xe0\xec\xbe\xde\xae\xf6\x96\xa6\x9a\xea\x8a\xd2\x82\xfc\xdc\x2c\xb3\x2e\x36\x22\x98\x51\xe1\x0e\x49\x9b\xad\x52\xda\x7a\xd5\xd4\xa7\x6a\xf1\x55\xe9\x90\x5b\x14\x78\x2e\x91\x70\x5c\x82\x28\xa3\xe4\xa5\x77\x06\xdf\x2e\x6d\x00\x92\x44\x40\x0e\x14\xf8\x2f\x79\x6d\x50\x9a\xc8\xbf\x6e\xc0\x6d\x15\xc4\x99\xc5\x92\x06\x6e\xda\x44\x19\x33\xf5\xb5\x8b\xb4\x30\x18\x78\x02\x90\xe9\xfb\x85\xa9\xaf\xbf\xac\xca\xcd\xad\xaa\xce\xcd\xad\xbc\xc1\x95\x1b\x1f\xaf\x56\x17\x65\x8f\x76\x59\x0d\x46\x9b\xcd\x60\xb0\x31\x11\x89\x6a\xad\xce\x55\x90\xe1\xc8\xcb\x3c\xb3\xbf\x68\x8c\xf9\xcb\xa2\xc2\xd3\x7f\xba\x73\x8c\x2d\xbf\xb3\x50\xac\x4c\x88\x8b\x4b\xa8\x32\x5e\x53\x7e\x8d\xf7\xc4\xa1\x72\xe9\xcf\xa8\x4b\x9f\x54\xea\x12\x5b\x8b\xe8\x0f\xfb\x8f\x42\xfa\xc3\x98\x3c\x65\x65\x9e\x22\xf2\xcf\x2a\xbb\x5d\x6d\x09\x0a\x4e\x56\xda\xad\xe2\x9b\xab\xcc\x76\xbb\xb9\x88\xfc\x33\x53\x93\xa8\xd1\xa6\x39\x32\x1d\x6f\x78\x17\xdc\xb3\xa4\xb8\x78\xc9\x3d\xec\xc0\xf5\x25\x7d\x7d\x25\xd7\xf7\x89\x4e\xad\x4a\xa9\xe9\x83\xd7\x4b\xe8\xcf\x99\x8a\x62\xfa\xc3\x8c\x44\xa9\x53\xdb\x76\x8a\xb7\x5d\x0e\xaa\xcb\xc5\xdb\x7c\x2f\x10\xe2\x11\x46\x98\xe3\xee\x0d\x5a\x86\x58\x64\xa3\x3a\x91\x1b\x45\x96\x84\x65\x65\x66\xa4\xa5\xa6\x44\x73\x0c\xe2\x33\xec\xc1\x2c\x4f\x0c\x9b\x45\x6c\x20\x4c\xc9\xe5\xa1\x5c\x97\x2a\xc5\x28\xd5\x06\xa5\x8b\xc5\xdc\x25\xbf\xcc\x10\xd3\xe8\xbd\xcf\x7b\x37\xf3\xa8\x10\x26\x0f\x55\x39\x8c\x6a\x53\xe5\x48\x49\xce\x60\xad\x1d\x5e\x61\x6c\x1a\x53\x92\x5c\x13\x17\x92\x60\x50\x06\xbd\xfc\xf2\xcb\x63\x1c\xc7\x70\x9c\xd0\x76\xc6\x79\xc6\xc9\xbe\x7e\x3a\x16\x27\x6f\x46\xe9\xb2\x73\x4b\x6c\x25\xa3\xb5\x96\xc4\xd2\xb9\x55\xd9\x19\x25\x59\x5a\x57\xba\x25\xdc\x68\x35\x67\x66\xf4\xdc\xe9\xed\xe0\x42\x8e\x70\x88\x41\x0f\xe3\xba\x9f\x39\xdc\xf5\x04\xf7\x09\xcf\xff\x04\x75\x24\x47\xe6\xff\x05\xe0\x50\xa8\xc4\x53\xb8\x32\xdd\x5c\x4e\xf1\xf2\x5b\x46\x47\x6f\x5d\x51\xec\xff\x2b\x7e\x71\xbc\xa3\xfd\xf8\x1d\xf0\xfb\x15\xf7\xaf\x2d\x2e\x5e\x7b\xff\x8a\x53\x2b\x68\x8d\xab\x07\x56\xca\xbf\x59\xb7\x46\xf4\x7e\xfb\xad\x64\xb3\xb0\x21\xc4\xde\xc2\x26\xa1\x78\x92\xa7\xe4\xcf\x31\x07\x0e\x68\x26\x37\xb1\x9a\xc3\xb0\x3f\x8f\xbb\x10\x35\x68\x8c\xd1\x96\x28\x3e\x88\x94\x10\x70\x03\x9d\xab\x84\x04\x03\xa1\xc8\xc7\x30\x99\x9e\xbd\xc5\x7b\x35\xe8\x72\x9d\xce\x8c\xdc\x9c\x97\x52\x5a\xc6\xab\x0f\xdc\x18\xe7\x69\xf1\xac\x80\xe1\x6d\xc0\x66\xce\xd4\x58\x32\xca\x1d\x39\xc3\xf5\xf6\xcd\x2b\x53\x6b\xaa\x6a\xec\x7d\x92\x5d\x35\x89\xfb\x82\x3d\x2b\x7c\x4d\x6c\x27\xb8\xcf\x66\x15\x4f\xd7\x3c\x86\x0b\x30\x98\x5c\xd9\xbe\xae\xd3\x5d\xca\x7f\x70\xa6\x7b\x18\x7b\xf6\x95\x63\xc7\x5e\x05\xcd\xbd\x77\x29\x4c\x2e\x5d\xb2\x27\x23\x3d\x3e\x4c\x19\x19\x3c\x84\x5d\x2a\xba\x78\x77\x96\x4b\x1b\xa6\x8a\x0c\xe6\xbe\xb8\xfa\xea\x1f\xbe\xd2\x97\x64\x26\x2a\x34\x8a\xc8\xd8\xa4\xe8\x78\xfc\x5a\x87\x5f\x47\xc5\x19\xa2\xc9\xb3\xa3\xb8\x2f\xb8\x27\x85\xfb\xf0\xb3\xb5\xf8\xd9\x72\xd9\xd4\x67\xf3\x16\x9f\x47\x3d\xdb\xd7\x41\x35\xfb\x2f\xfa\x4c\xf5\x49\x88\x86\x9c\x22\x4d\x4a\xbe\x81\xdb\xb0\x5e\xa9\xb7\x2b\x81\xfb\x62\xcf\x9e\x2f\x17\x6c\x8c\xd3\x46\xc7\x46\xca\xda\x1b\xcb\x12\x53\x13\xe5\x6c\x21\xed\x1f\xd6\xbe\xbe\xe7\x22\x85\xfd\xf8\x19\x21\x24\x32\x92\x91\xf0\xf5\x38\x86\x9b\x40\x2c\x43\xa0\x5c\xc7\x01\x10\x5a\x8a\x18\xa6\x88\xa1\xb9\x22\x84\xcd\x01\x22\xf0\xe4\xe3\x22\xff\x7c\xcd\x35\x7f\x01\xdd\x4d\xe2\xe5\xc7\x3e\x3c\xc5\x7d\x7f\xe9\xa5\x5f\x0e\x40\x04\xf2\xd1\xcf\xdb\x85\xcb\xc8\xbd\x31\xfd\xc1\x32\x46\x92\x97\x3c\xb9\x18\x5c\xac\x81\x49\xbf\x09\x74\x7f\xc1\x57\xb3\x9e\x4f\x3f\x3a\xc6\xff\xe9\xcb\x4b\x2f\x85\x6b\xc5\xaf\xe9\xb5\x4e\x6e\x27\xfb\x86\xf0\x36\x9e\x6b\xb1\xf8\x5a\x8d\x8a\xa3\xd7\x4e\x3b\x95\x59\x0c\x16\x3d\xfb\x46\x7a\xe7\x25\x8d\x8d\xeb\x3b\xd3\x7f\x1b\xa9\xcf\x32\x99\x5c\x49\x11\xb2\x77\x5e\x87\x08\xfe\x44\xe9\x58\x93\xdd\xde\x34\x56\xaa\x49\x25\x66\xb5\x54\x4d\xcb\xdb\x74\x6e\xbd\xc5\xb5\x60\xdb\xbb\x76\x52\xf6\x06\x3c\x08\x98\xae\xb7\x54\x16\xb7\x6e\x7f\x9c\x95\x79\x8f\x7b\x2b\x6b\x68\x46\xb9\xb2\xc9\xb9\xa9\xf9\x12\x2a\xff\x55\x08\x71\x0f\x73\x7b\x90\x0c\x85\x90\xea\x12\x21\xc0\x31\x64\x56\x72\xcc\x84\x2f\x15\x69\x88\x85\x80\x11\x9c\xf2\xc9\xa4\x97\x05\x30\x49\xeb\xc4\x9c\x16\xf1\x14\xfc\x16\x22\xe0\x77\xb8\x6c\x67\x3a\x64\x5e\xfb\xde\x7b\xdc\x9e\xd3\xcb\xe0\x0e\x38\x4a\xf3\x38\x6f\xc4\xf7\x5f\xc0\xed\xa1\x35\x97\x28\xda\xa1\xaf\xe6\x92\x0f\x0c\x2f\x50\x7b\x29\xe0\x5c\x2f\x94\x2a\x2e\x59\xcd\xe7\x56\x5c\x0a\xba\x50\xc5\x25\xb9\x4b\x92\xe4\x16\x97\x3f\x6f\xee\x46\x78\x7d\xe1\xc9\x0d\x95\x5d\x7d\xd9\xb8\x98\x54\xf1\xea\xbb\xc6\x3e\xf9\xa4\xa7\x6f\x66\xd7\x3f\x7f\xdf\xd6\x13\x8b\xf1\x0b\x5e\xe1\xf6\x98\x9b\xd7\xce\x68\xbf\x2c\x39\x3c\xab\xaa\x35\xa5\x6b\x63\xab\x19\xbe\x10\xbf\xad\xcd\xae\xa8\x82\x27\x98\x82\x52\x3c\xb1\x23\x7c\xf9\x3c\x58\x2e\x74\x60\xb9\x60\xa3\xf6\x7b\x86\xe5\x59\x86\x1f\x17\x80\x40\xc2\x71\x8b\x03\xd1\xe4\x1c\x47\x4d\x66\x95\x34\x19\xcd\x86\x6c\x18\x18\x02\x63\xd9\x91\xc9\x74\xbe\x66\xe8\x87\x86\x08\x28\xec\x5c\x3b\x3f\xf3\xf2\xfb\x86\x26\x9e\xdc\xd9\xd8\xb2\xf3\x91\x05\x4b\x1e\xda\xd6\x1a\x24\x7e\xbe\x71\x71\xc6\x8c\x22\xa3\xa9\xa4\x33\x2b\xb5\xad\xd8\x04\xfb\x16\x5e\x3f\xe2\xac\xdb\xf6\xf8\xd2\x93\x13\x8f\x6f\xaf\xf3\xe0\x77\xfd\xa3\x29\x0d\xf3\x4b\x7e\x5d\xb9\xb0\xce\xa2\x4c\xab\xf3\x90\x31\xa4\x75\x0f\x97\x60\x1e\x87\xa3\x38\xea\x1d\x44\x3c\xb0\x0c\xf2\xf1\x94\x93\x78\x1a\x81\xfb\x15\x11\x17\xa1\x95\x47\xe2\x66\x61\x7a\x61\x92\x9f\x01\x56\xfa\x0d\x02\xd7\xc3\xb3\x8b\x9e\xde\x37\x63\xc6\xde\xc7\xe6\x3d\xf4\x50\x56\x67\xb1\xd1\x50\xd2\x9b\xc7\xed\x69\xbc\xec\xa1\x85\xb7\x8f\x3d\xb8\xb5\x9e\xbd\xc7\x9b\x6e\xa9\x1e\x29\xb9\x23\x7f\x6e\x5d\x0a\xe1\x15\x1e\x69\x2e\x07\x3f\x3f\x94\xe6\x7e\xb1\x88\xe3\x59\x6e\x10\xf1\x48\xb2\xdf\x05\x8c\x76\xe7\xf9\x51\x94\xe4\x97\x58\x4c\xde\xf5\xbe\xc3\xac\x3b\xb3\x98\x3d\xe4\xdd\xc8\x98\xe0\x9f\xe2\xbf\xf0\x0c\xfa\xe0\x23\x04\xe8\x76\x7c\x5f\x27\xbe\x6f\x30\xad\xaf\x23\x05\x20\x0e\x06\x32\xe4\xce\x9d\x95\x10\x70\x93\xb0\x5f\x7b\x5f\x27\x47\x0f\xef\x3e\xc6\x89\x67\xa5\x0b\xdf\x4c\x14\xe9\x98\xf6\xe3\x31\x9d\x85\xc7\x34\x9d\x44\x11\xda\x49\xb0\x0f\xcd\x83\x42\x0c\x2b\xb0\x8c\x30\x1e\x18\x55\x01\x51\x2b\xd1\x94\xd1\x95\x63\x88\x42\x3a\xb2\x38\x63\x61\xda\xc8\xa6\xb1\xe7\x8c\x6c\x36\xd1\xfa\xb8\x59\x71\x03\x9b\x8f\xcc\x5a\xfd\xf4\xf6\xba\xb6\x5d\x8f\x2d\xbc\xe4\xd1\xf5\x25\x20\xfe\x07\xf4\xf9\xad\x4e\x67\x57\xb9\x55\x57\x84\x23\xd4\x4b\x3d\x29\x61\xf0\x0e\x7c\x7d\x40\x97\x97\x16\x8f\x21\x2a\x97\xbc\xb0\xe4\x91\xad\xb5\x79\xf3\xae\xec\xc2\xde\xec\x68\x6b\xed\x48\xe1\x6f\xf3\x71\x9c\xad\x10\x1a\x19\xfc\x18\xad\x63\xb4\x17\x21\x4e\xc3\xed\x99\x5e\x6f\xc8\xe7\x4a\x42\x01\x0e\x9f\x57\x6f\x48\x23\x7e\x29\x1e\xc5\xc7\x67\x25\xcc\x06\x25\xc9\x14\xe1\xf6\x88\x6a\xf8\x3b\xb9\xe7\xcb\xf8\x9e\xc1\xdc\x6e\xdf\x3d\x11\x2f\x59\xa8\x39\xf0\x95\x65\x29\x64\xa7\xdc\x33\xc6\x37\x66\xc4\x25\xf5\x32\x5b\x4c\x82\x1c\xce\x3c\x03\x51\xe2\xbf\xb9\xdd\x1f\x7b\x73\x3e\xfe\x98\x79\x11\x21\x3a\x1f\x30\x9f\x6d\x98\xce\x18\x9a\xdb\x8b\x18\x34\x41\x52\x71\x27\xfc\x30\x24\x95\xd0\x90\xac\x30\x61\xb7\x04\xad\x41\xe4\x3f\x4a\xe9\x15\xd4\x6b\xce\x46\x83\xba\x66\xed\x4d\x3d\xf3\x6e\x5f\x59\xc6\x80\xba\xa7\xab\xbe\x0f\xb8\x3d\xde\x94\xb1\x3b\x56\x14\xba\x16\xdc\xb8\x78\xc1\x08\xac\x59\x8a\x00\x1d\xc6\x74\xdf\x82\x9f\x11\x46\x9e\x11\x22\x00\xeb\x73\x00\x00\xea\x66\x25\x5e\x44\xc7\xc8\xa3\xe9\x33\x64\x94\x0b\xd9\x52\x6d\xaa\xcc\xcd\x84\xec\xb9\x60\x86\x1e\xb1\x13\x1e\x12\x1f\x80\xc7\x37\x88\xcf\x62\x7e\xc4\x6c\x85\xf9\xde\x6f\xbd\x1b\x10\x50\x99\x35\xca\xed\xf1\xd5\x5d\x23\xb5\xf0\x48\xb7\x66\xf9\x67\x5c\x14\x1b\xa4\xb6\x9b\x28\x2f\xe0\x51\xe6\xee\x33\x79\x10\x4b\x84\x9e\xd4\xf7\xd5\x24\xff\x84\xd0\x45\xd6\x42\x10\x81\xcc\x83\x3a\x3f\x98\x35\x47\xdd\xf5\x7e\x79\x4a\x4b\x4e\x05\x05\x4a\x4e\x59\xa4\x92\x53\x8b\x1f\x87\x2c\xf1\xea\x07\x8f\x88\x50\xc0\xd4\x62\x10\xbf\x65\xcc\xcb\x62\x0a\xc0\xdf\xbd\xc9\xe4\x09\x80\xb0\xbd\x82\x53\xe0\x97\xb4\xd6\x97\x8c\xc1\xc4\x91\x5a\x5f\xf8\x6f\x37\xf8\xba\x2d\x8f\xa6\xac\xd5\xeb\xc9\x8d\xf5\xc0\xea\x39\x85\xf8\x95\xf8\x6b\x10\xbf\x02\x05\x34\x02\x60\x2c\x31\x6f\x15\x66\x69\x25\xf3\x18\x26\x6c\x1e\x1e\xab\x61\xaa\xff\xd8\x51\x42\x89\x36\x90\xb0\xcc\xb2\xfe\xb9\x6f\xc3\x1e\x30\x72\xc3\x5f\x82\x11\xc7\x0d\xd7\x6d\x7b\x6c\xe9\xf2\xc7\xb7\xd5\xd6\x6c\x7b\x6c\xf9\xd2\xc7\xb6\xd7\x8b\x7f\x4f\xcc\xef\xc8\x29\xe8\xc8\x89\x8b\xcb\xed\x2c\xc8\xee\xc8\x4b\x84\x53\x0b\x1f\xda\xd6\xd0\xb0\xed\xa1\x85\xcf\x91\x42\x25\x0d\xb8\x62\x09\x14\x8c\x34\xd8\xed\x0d\xa3\xf9\xcf\xe7\x8f\x62\xeb\x6b\xe3\x68\x3e\x95\x6b\x83\x67\x4b\xb9\xf9\x98\x36\x0d\x4a\x23\xfb\xb8\xc0\x32\x64\x23\x27\x2e\x8b\xea\x0b\xd3\x69\xa1\x74\x0a\x02\x4e\x1f\xb3\x08\xff\x93\xd6\xf9\x30\xd8\xf9\xeb\x3b\x5e\x2f\xae\x5c\xfe\xd4\x8e\xba\xba\xed\x4f\x2e\x5f\xfa\xe4\xe5\x8d\xe2\xe7\x49\x05\x5d\xd8\x24\x92\x17\x1f\x9f\xdf\x5d\x98\xd3\x59\x90\x04\xa7\xd6\xbf\x54\x71\xd3\xaa\x27\x23\xeb\x2f\x7b\x78\xec\xb9\xb1\x87\x09\xed\x0f\x8f\x41\xe1\x68\x7d\x8a\xbd\x7e\xb4\xe0\xf9\x82\xd1\x46\xbb\xbd\x71\xb4\x00\x51\x9a\x0f\x20\xc4\x2d\xc3\xe3\x13\x2d\xd5\xf0\x89\x24\x6b\xd4\x1f\xdb\x3f\xec\x97\x5d\xbe\x29\x60\xd4\xa7\xe8\x7d\xf2\xd0\x30\x05\xa5\x40\x06\x4a\x3d\x90\xb5\x40\x4e\x27\xcc\xfc\xa7\xf0\x84\xfd\x60\xf4\xae\x4b\x2a\x92\xf2\xda\x9c\x10\x2a\xfe\x49\x1c\x7a\xb1\x6b\x2e\x8c\x74\xbd\x08\xbf\x12\xe7\x73\x7b\x52\xbb\xb6\x74\x55\xce\x6f\xce\x53\x89\x29\xa1\xcc\x4a\x68\xc4\x3f\x08\xd0\x16\x3c\xae\xbd\x98\x77\xc5\xb4\x7a\x85\x0f\xed\x04\x71\x3c\xc3\xf1\x8b\xa9\x32\x82\x98\x61\x7f\xb9\x91\x4a\xb6\xa1\x20\xcf\xe3\x4e\x77\x18\x15\x69\x42\x10\x41\x14\xa1\x27\xeb\x80\x84\x9b\x12\x88\x41\xce\xdf\x3e\x2b\x14\x67\xf1\x5b\x35\xd8\x36\x1d\xae\x70\x38\xef\xc6\xc5\x39\xd5\x97\xdc\x36\x7b\xce\x3d\x9b\xeb\x18\x3c\xec\x38\x80\x22\xbd\x26\x53\xab\xc9\xee\x2a\x19\xbd\x75\x79\x51\xed\xe6\x93\xf3\x0a\xd7\x2c\x99\x5d\x6d\x03\x50\x9b\x4a\x3a\x9c\xae\x06\x97\x16\x0a\x74\x69\xa6\xc4\x88\xb8\xec\x96\x15\x9d\x6d\x1b\x3b\x1d\xd6\xce\xdd\xc3\xc9\xf9\x29\x1a\x85\xc1\xa1\xd1\xd9\xf5\xf1\x91\x9a\xfc\x99\x6b\xbb\x3a\x36\xce\xb0\x45\x1a\xf2\x66\x2c\xad\xcb\x2c\xb7\x46\xab\x8c\x69\x64\x7f\x46\x88\x3b\x4c\xf5\x16\xb2\x46\x59\x06\x10\xb0\x53\x36\x05\xba\x04\x02\x15\xce\x0e\x8b\x73\x71\xdd\xf2\xc5\x5c\x15\x7b\xcf\x99\x36\xf6\x9e\x0f\x48\xad\x60\xcc\x9f\x72\x7c\xbd\x92\xc8\x3d\x0e\x5f\xcf\x00\x96\x52\xcc\x94\xed\x5c\x89\xc8\x59\x8f\x27\xfc\x90\x07\x80\x3d\x7d\x86\x4d\x77\x0c\x57\x5e\xb9\xee\xf8\x28\x1e\x96\x4a\x50\xc2\x70\x4f\xcf\x00\x91\x52\xc1\x23\xd7\x8f\x65\x67\x8f\x5d\x3f\xc2\x7c\xef\x0d\x9e\x37\x30\x30\x8f\xf9\x9e\xac\x59\x07\xa6\xf5\x31\xfc\xac\x20\x52\x8f\x0d\x68\x6e\x30\xa1\x17\x4d\xf8\xc9\x8d\x61\xc9\x53\xd4\xd9\x92\x5a\xc5\xcc\x8d\x08\x07\x15\x98\xc4\x46\x5c\x74\xbe\x19\x4c\x40\x22\x6b\x9a\x4e\x93\x59\x05\x48\x4f\xfc\x66\xf8\x15\xad\x65\x17\xe2\xab\x65\xc7\x32\x44\xb0\x30\x74\x56\x11\x01\x10\x10\x2c\xac\x81\xc5\xff\xeb\xb1\xbd\x97\xcd\x6d\x03\x0c\x5e\xb0\x64\xbe\xf8\x1a\xc8\x5a\xfa\xcf\x32\xd5\x4c\x15\x16\x2e\x6d\xde\x7b\x30\xdd\x2f\x31\xd9\x84\xce\x12\x7c\xef\x5d\x64\x7f\x21\x32\x35\x58\x60\x59\xa9\x90\xe0\xd4\x7b\x63\xa1\x45\x39\x4b\x13\xcf\x59\x96\x8a\xd4\xde\xbf\x40\xa9\xf8\x2b\xd8\x24\x3e\x72\xea\x7d\xf1\x49\x58\x8e\x5f\x17\xb1\x11\xb0\xd1\xfb\xa4\xf7\x01\xd8\x26\xae\x65\xea\x99\x32\x2a\x1b\xf3\xf0\xfd\xef\xa1\x7c\x88\x2f\x89\x15\x58\xe6\x7c\x46\xe0\x9b\x53\x46\x80\x1e\x68\x9d\x42\x66\x39\x84\x42\xba\xd8\x8c\x33\xe9\x67\x42\x06\xb3\x95\x09\xf6\x86\x88\xf3\xe1\x28\xf3\x0f\x49\xd6\x5e\x83\xef\x57\x4f\x64\x21\x91\xb5\xc1\xe0\xc3\x07\x21\xf5\xd8\x08\x3a\xc8\xa0\x3f\x35\x83\x0a\x5b\x3a\x23\xa8\xd4\x76\xd3\xa8\x28\x06\x31\xf5\x67\x9a\x70\x2a\xfe\x9b\xec\xc1\xf7\xde\xdb\xcb\x26\x7d\xb0\x8b\x2e\x8b\x02\xee\x15\xf6\x73\xe1\x3b\x3c\xfa\x36\xac\xa3\x27\x5d\x54\x47\xb7\x78\xce\x3f\xaa\x7c\x9e\xd1\xb5\xa1\xb9\x79\x63\x77\xc6\xe3\x72\x53\x7e\x8a\x2d\xcf\x24\xff\x8b\xac\xa6\x24\xc1\x55\x9d\x22\xdb\xb7\x3b\xd6\xea\x8e\x93\xf3\x27\x5c\x33\x49\x1c\xc5\x4c\x97\xca\x92\x28\x97\x27\x5a\x54\xf1\xab\x18\x75\x6c\x74\x6c\x84\x50\xd6\x50\x1a\x67\xd1\x46\xb1\x69\xa4\x5f\xff\x44\x88\xad\xe0\x76\x22\x81\xd8\x2b\x11\x64\x90\xcd\x9c\x77\x9b\x5c\x6c\x85\xf8\x85\xf8\x34\x93\x17\xcf\x56\x36\xfc\xf5\x21\x89\x07\xd8\x2c\xca\xe5\x71\xd7\x53\x9b\x5d\x0c\x6d\x4b\x4f\x8b\x16\x49\xdd\x94\x05\xca\x6e\x49\xe7\x45\x5c\x49\x65\x15\xdc\xd6\x3a\x13\xda\x6a\x53\xcb\x1d\x1a\x10\xbf\x28\x5d\x79\xcb\xdc\x91\x63\xcb\x8b\x6c\x4d\x13\x35\x2f\x31\x49\x8f\xc3\x96\xaa\x4d\xe9\xc5\xb5\xda\xb4\x12\xd3\x8c\x2b\x17\x16\x66\xf4\x6e\x9b\x59\xb2\x68\xde\x68\xde\x8d\xbe\x35\x53\x88\x9f\x55\x80\x9f\x65\x89\x21\x67\x0c\xbf\xde\x4d\x1f\x55\xc4\x06\x9e\x14\x10\x12\x34\xc1\xc2\x1f\x28\x6d\x80\xbf\x6e\xee\x1a\x50\xa4\x94\xd8\xf5\xf9\x0e\x2d\x7e\x38\xd4\xac\xbe\xae\x63\xe8\xb6\x35\x15\x09\x59\xb5\x8e\xcc\xb6\x5c\x5d\xfd\xe6\xbb\x87\x5a\x6f\xdc\xdc\x0a\xa0\x81\xb8\xcc\x8a\x94\xae\xfe\x44\x4f\xbd\x63\x33\x73\x02\x6a\xcb\xe3\xd2\x92\x15\xe1\x5a\x8b\xb6\x75\x5d\x9b\xdd\x3e\x63\x7d\x9b\xa3\xb1\xd8\x19\x15\x91\x56\xd6\x95\xdb\xbe\xa9\x33\xd5\x32\x73\xfb\xec\x84\x0c\x83\xa2\xb9\xd8\x96\x6b\x88\xa2\xb2\x98\xce\x8f\x2e\x6e\x0f\xf1\xd7\xe3\xb1\x0c\x0f\x0d\xe6\xe8\x59\x8d\x44\xe0\x12\x2f\xbb\x9e\x7a\xd9\x5f\xde\xbb\x57\xfc\xd2\xfb\x9f\x08\x26\x16\x34\xde\x0f\x20\x4c\x09\xbf\xff\xe8\xeb\xaf\xef\x67\x3e\xf7\x56\xc2\xb0\x9e\xf2\xf8\x18\xee\xb7\x05\xdf\x27\x85\xf0\x18\x70\xbf\x63\x88\x26\x24\x0b\xf4\xd7\xd7\x51\x1f\xf4\x8a\x8f\xf3\xcf\x34\x31\x6f\x89\x61\xba\xf0\x94\xac\xfc\xc4\x81\xab\x46\xdc\xb9\x38\x70\xae\xe3\x86\xf5\x4d\x2c\x28\x65\x7d\x75\xe9\xa5\xd6\xe8\x39\xfd\x46\x8f\x2d\x29\x9c\xf1\x30\x9d\x1f\xbe\x2d\x44\x84\x05\xbb\x06\xf7\x74\xb7\x5c\xb9\xa4\x2c\xad\x6b\x63\x4b\xa9\x1b\x3b\x9f\x4d\xed\x43\xa1\x72\x65\x30\xe9\xcb\x49\x4c\x43\x0d\x77\x03\xd2\xa1\x34\x72\x66\x4f\x8a\xa1\xf3\x52\x49\x1f\x85\xb7\x0a\x3f\x21\x81\x3d\x8f\xc5\x66\x51\xa5\xc2\x4f\x11\xbb\x31\xb2\x6d\xef\xe2\x9a\xb0\xf4\x2d\x33\xba\x77\x0e\x64\x96\xaf\x3a\x36\x34\x7a\xf7\xfa\xaa\x79\x0f\x7d\xb7\xef\x4f\x65\x03\xea\xbe\x1e\x6b\x69\xba\x76\x80\xbb\xe1\x13\x6d\xe9\x58\xbb\x23\x07\xf2\x46\xaf\x98\xd9\x79\x70\x61\x41\xfe\xca\x93\x2b\x1a\x8e\x7f\x77\x43\x83\x77\x57\xa6\xc1\x3d\x67\x31\x0e\xa7\x32\xb7\x76\x10\x9e\xdc\x44\x6b\xe9\xee\x91\xe6\x28\x48\xb6\x7c\x20\xb2\xb6\x46\x0c\x17\xff\x0a\xdf\x78\x37\xb2\xb7\x62\x23\x7c\x24\x7b\xfc\x63\x7a\x0e\x7c\x08\xd3\x9f\x8b\xe7\x8e\x1e\xb9\x49\x44\xdc\x43\x45\x39\x19\xe6\xf8\x30\x36\xc3\x97\x01\x11\x20\x1e\x87\x00\x9a\xcd\xfe\x9d\x87\x0d\x6c\x3c\xbe\x8d\x86\xda\x40\x24\x2b\x1e\x97\x30\xab\x29\xb5\xd6\x15\x8f\x0b\x9d\xf5\xf7\x1d\x5b\x5b\xbd\xb0\xbb\xa9\xa7\x74\xe9\xe1\xee\x59\x87\x27\x4a\x7e\xd2\xa6\x15\x9b\xb0\xe3\x5e\xab\xc5\x05\x04\x4c\xf8\x6f\x7c\x63\x79\x59\x7d\x43\x79\x79\x3d\xdb\xde\xb1\xd1\xa2\xf0\x54\xcf\x74\xce\xdc\x30\xc3\x66\x9b\xb1\x61\xe6\xf0\x1e\xab\x79\x63\x47\xdb\xba\xf6\x94\x94\xf6\x75\xde\x07\x92\x5d\xb8\xd2\x0d\xfe\x47\x9f\x65\xc0\xd8\xff\x59\x4c\x70\x41\x51\x71\x7e\x5e\x55\x15\x19\x83\x47\xcf\xfe\x87\xac\xb5\xc0\x18\xc4\xcb\x89\xef\x8b\xa8\xfc\x3e\xef\xf7\x54\x5f\x1f\x01\x62\xc7\x86\x6a\xdf\x74\xc0\x34\xc3\x0d\xad\x97\x0d\x17\x86\xa4\xad\x28\xed\xde\x37\xc7\x5d\xb6\xf2\x96\xa1\xc1\x63\xab\x2b\x06\xef\xfd\xe6\xa0\xf2\x9b\x82\x36\xe5\xac\x56\x6b\x71\xaa\x7a\xd6\x6b\xaa\x9c\xc1\x06\x8b\xc3\x35\xbc\xbf\xaf\xf3\x9a\x89\xb2\xfc\xd5\xf7\xaf\x6e\x38\xf1\xcd\xa1\x8a\x77\x61\x95\x23\x71\x64\x70\x2e\x8e\x4b\xb4\xb6\x0e\x4a\x76\x1c\xcf\xd9\x6f\xd9\x23\x6c\x12\x52\x22\x03\xa6\x47\xa7\xb9\x88\xed\xca\x72\x8e\xf1\x93\x3d\xe2\x68\x5d\x5a\x51\x31\xd1\xe6\xf0\xff\x7d\x31\x3f\x33\x33\x37\xcf\xe5\xcc\x83\x9c\xf6\xb5\x2d\x66\x73\xcb\xda\xf6\x1b\xdb\xd6\xb5\x59\xad\xf8\x9f\x90\x19\xd5\xd5\x33\xee\xef\xa8\xa8\xe8\x40\x00\x73\xf0\x43\xbf\x60\xa3\xa7\xc8\x25\x83\x5c\x86\xe5\x12\xf3\xc5\x6f\x9f\x82\x65\x31\x8c\xcd\x7e\xdd\x6a\x42\x57\x2a\xf7\x12\xfb\x17\x61\xe9\xff\xb4\x73\xb8\x64\x06\xf6\x2f\x19\x5d\x1b\x9b\x9a\x37\x60\xa9\x19\x85\xa5\x66\x0a\x76\xfd\x2f\xfa\xcd\xdd\x57\x12\x49\x59\x98\x9c\x5c\x88\x25\xa5\x4d\x17\x1d\xad\xb3\xa9\x9e\x79\x5c\xb2\xa1\xa5\xe0\x3e\x1f\xc7\x7d\xce\xc4\x34\xe8\xe5\x64\xde\xf9\xa5\x4b\xc0\x38\x16\x40\xc9\x0f\x3c\x51\xea\x39\x55\xa7\x82\xba\x0a\x72\xc2\x62\x6d\x89\xa9\x05\x2f\x39\xdb\xc6\x0a\xaa\x96\xb7\xa5\xd5\x14\x57\x37\x67\x76\xaf\xae\xca\x59\xd2\x9d\xf3\x72\x69\x6e\xa1\xa7\xa2\xb0\x0b\xfe\xe4\xb4\x45\xc6\xab\x23\x92\x13\xb3\x67\xe4\x26\x24\xe4\xce\xcc\x2e\xec\x50\xc7\x74\x36\xe2\x1c\x74\x9d\x36\xbf\xaf\x3c\xd9\xe5\x31\xba\x53\x10\x03\x46\x84\xd8\x7b\x58\x25\x0a\x45\x91\x64\x17\x8a\xa0\xfa\xde\xb4\x50\x1f\x7a\xfa\x4d\x9e\x1e\xe8\xe3\x76\x81\xcb\x2d\x63\xdb\x7b\x7a\x5e\x16\x6f\x0d\x85\xb9\x2f\x8b\xfb\x6f\x09\x83\xf2\x9b\x8f\x1e\xdd\x02\xff\x66\xc4\xb4\xbf\xc4\x90\x3e\xa7\xe2\x3e\x5f\x85\x9f\x61\xc6\x7d\x96\xd3\xb5\x16\x90\x3f\x81\x4e\x5a\x5c\x53\xc4\x8f\x20\x83\x22\x37\x7c\x2b\xde\xab\x94\xc5\x1b\x6c\xca\xad\xbb\x4c\x0d\xcb\x9b\xf2\x97\x74\xb8\xe1\x25\x26\xcf\xa9\xb3\xc5\x86\x14\x15\xba\x5c\x11\xb0\x1e\x0e\xdd\xb0\x93\x0d\x0e\x12\xb6\xae\x75\x0f\x37\xa4\x27\x15\x74\x62\x81\x14\x93\x94\xa2\x76\x17\xc5\x85\x4a\x73\xcc\x8e\x9f\x7d\x8c\x35\x5e\x44\xee\xb8\xfe\x97\xdc\x89\x0b\xf5\xf4\xd7\x3a\x83\x75\x5d\xb9\x85\xfd\x25\x49\x64\xc6\x55\xaf\xea\x74\xd6\x6d\xb8\x63\xf6\x01\x7b\x41\x44\x61\x1e\x1e\x89\xa8\x02\xd6\x78\x2c\xd2\x56\xe5\x49\x30\x59\xaa\x06\xf3\xf2\x87\xeb\x6c\xe6\xe6\x35\xed\xae\x95\xb7\x2f\xcc\x14\xeb\x74\x31\x96\xb2\xe2\xe8\x24\x9b\xc6\x9d\x49\xc7\xdf\x42\x6d\xa8\xca\xa9\x72\xc7\x40\x1d\x7e\xb7\x88\xf7\xfd\x01\x1a\xc5\x99\xcc\x06\xe6\x98\xb7\x97\x59\x76\x13\xa1\x9f\x0d\xac\x11\x1d\xcd\xc8\xbf\xfe\xc1\x18\x96\x61\x78\xf0\x21\x20\xc4\x05\xc0\xa2\xa4\x24\xee\xc0\x71\xa2\x10\x91\x28\x9b\xb0\x9f\x6b\x52\x49\x9b\x44\xfc\xaf\xbb\xfc\xec\x0d\x08\x36\x64\xb0\xd1\x68\x34\xa7\xa5\xd0\x79\x41\xa7\xed\x85\x45\xe1\x54\xd1\x77\xce\xeb\xdd\xf9\xee\x82\xaa\xb4\xb6\xa5\x65\x65\x13\x6d\xe9\xd5\x05\xee\x02\x7b\xe3\x82\xe2\x92\x85\x8d\xf6\x07\x0b\x33\x32\xf2\x0b\x9c\x19\xf9\x31\x0e\x47\x4a\x5a\x5a\x6a\x6a\x2a\x53\x9c\xdb\x11\x17\x37\x50\x96\xdb\x81\xfd\x0d\xf8\x9f\xb2\x81\x78\x6d\x47\xae\x34\xc1\x67\x88\xab\x52\xf0\x0f\x6e\x08\x4b\x8c\x38\xf8\xc5\x90\x9a\x4a\xc7\x3f\x17\xf3\xef\x28\x9b\x44\xb0\xb5\x88\xbf\x3f\x51\x1b\x39\x55\xe6\x99\xcf\x17\x79\xd9\xe7\x8a\xbc\xb7\x3c\x9d\x25\x56\x99\xae\x21\x65\xdd\x2e\x32\xf6\xa5\xe3\xed\x19\xe5\x6b\x6e\x1b\x8e\xbc\xc3\x94\x19\x9e\x97\x19\x6b\x8d\x8b\xc8\x3d\x10\x66\x28\x74\xc6\xc6\x5f\x76\x69\xde\xbc\xa6\x34\x6c\x9c\x9b\x99\xbd\xee\x96\xb9\xf6\x23\xde\x58\x79\x7d\x69\x8e\xc2\x90\xa6\xcd\xca\x27\xe3\xee\x60\x76\xb0\x1f\xb1\x05\x93\xf1\x79\x74\xd0\x3f\xf2\x36\x30\xf7\x33\x3b\xee\x97\xc6\xfa\x19\x6e\x06\xeb\x15\x1e\xc4\x6d\xd4\xc8\x80\xf7\x18\x0c\x74\x19\xc4\x20\x96\xb4\xe5\x0d\x32\x3f\xa5\x3e\xf6\xfa\xc2\x30\x28\x2b\x99\xef\x40\x26\xfe\xf8\xe0\x46\x9d\xa7\xd6\x66\xab\x76\x27\x26\xba\xab\x6d\x24\xdb\x76\x31\x86\x69\x49\x4f\x37\x9b\x5d\xc2\x83\xaf\x7e\x64\xa9\x70\xc6\xc7\x3b\x2b\x2c\xd6\xf2\x0c\x6d\x5c\x46\x19\xf6\x23\x64\x9a\xad\x99\x99\x88\x81\x6f\xb8\x2d\xec\x0b\x38\xee\x88\x47\x31\x98\x47\xd1\xa1\x1c\x30\x64\x8d\xba\x94\xac\x01\xbb\xee\x49\xe9\x29\x1c\xc6\xcd\xdc\xdf\xfb\xc0\x93\xed\x4f\x83\x42\x67\x88\x6a\x0a\x8d\x89\x90\x5d\xca\x1d\x05\xa3\x52\xfc\xf3\x12\x53\x49\x96\x2d\x22\x3a\x23\xbb\x48\xb7\x50\x5a\x73\xbd\xb8\x3a\x0c\x23\x7c\x4c\xea\xa5\x93\x6a\x91\xa4\x86\x91\x11\x38\xde\x00\xc0\xb1\x75\x4e\x10\x6a\x7c\x16\xaa\x61\x24\x43\x1c\xc8\x48\x64\x3d\xd9\x9e\x06\x82\x58\x06\xa0\x80\xd4\x8a\x49\x77\xa4\x58\xf5\xba\x00\x4c\x64\x70\x90\xfa\x02\xf2\x37\x26\x60\xea\x17\x02\x96\x7e\xc2\x12\x8e\x49\xef\xda\xd0\xd4\xb4\xbe\x3b\xfd\xb1\x28\x63\x1e\x91\xc9\x51\xbb\x34\xa9\x85\x46\x4b\xbe\x2b\x33\x29\xc1\xba\x5c\x63\x2f\x34\xea\x73\xb3\x73\x74\x09\x56\xfe\x44\x56\x47\x51\x72\x72\x51\x47\x16\xd6\x68\xa3\xa3\xb1\x46\x0b\x51\xc6\xb2\xcc\x04\xa5\x56\xe9\x34\x25\x19\xcb\x5c\x89\xf4\x15\x02\xf8\x49\xbc\x8e\x8d\x42\x2f\x5d\xd4\x6f\x2f\xa8\xe8\x71\x8d\x8d\x22\x98\x03\xe2\x75\x8c\x03\x01\x2c\x16\x07\x58\xe2\x7b\x8f\xc5\x63\x2e\xa3\x31\x99\x64\x75\x04\x5c\xd2\xfe\xb8\x32\x0b\xb3\x74\xa8\xc3\x52\xd1\x9b\x55\xdd\x9b\x60\x90\x3b\x0d\x3a\xb3\x42\x88\x8e\x37\xc7\x14\x7b\xf6\x54\xbb\x5b\x3c\x71\x09\x91\x87\x85\x88\x48\x65\x6c\xb0\xd6\x61\x33\xc7\x20\x80\x32\xb1\x9e\x2d\x43\xdf\x22\x39\x39\xa1\x93\x30\xc9\x60\x40\xc0\x10\x33\x0a\x30\x13\xfe\xaa\x13\x7a\x7a\x08\x94\x23\x39\x29\x39\x81\x43\xcd\xcf\x47\x00\x60\xcb\xa4\xca\xa0\xc6\x08\x9a\xf9\xff\xad\xf8\x89\x94\xf0\xff\xa1\x20\xcc\x98\x01\x09\xb4\x1e\x8a\x58\xc7\x2d\xe2\x9a\x50\x11\x9a\x81\x16\xe0\xf9\x38\xa7\xbb\xb6\x2c\x4f\x47\xe6\xa3\x41\xa5\x9a\x12\x3f\x4c\xd5\x9b\xa9\x73\x93\xac\x2a\xdf\xda\xcf\x0e\x00\x05\xa9\xf5\x10\x68\x1d\x08\xa9\x9b\x1e\x3b\xcc\x2d\xda\x94\xa0\x2b\x5b\x7b\xe7\x7c\x6b\xad\x21\x2c\x2a\xc6\x90\x16\xf7\x50\xdf\xfe\x39\xee\xba\x3d\xaf\x6d\x5d\xf3\xc8\x86\x12\x5d\x56\xa5\x45\xad\x21\x32\x7e\x70\x61\xf9\xda\xbb\xe6\x77\x35\xc1\x22\xef\x4e\x8d\x43\x99\x68\x8d\xcf\xeb\x2c\xa8\x9e\x57\xa1\x8f\x30\xe4\xa5\x8a\x1f\x6a\x9d\xd5\x0e\x7b\x55\x86\x56\x9b\x59\x65\x4f\xad\x72\x6a\xd9\xa3\x29\xb3\xb3\x55\x8d\x97\xcd\xc9\x0d\x0a\x0a\xd3\x2b\xd5\xf1\x72\xc1\xd2\x30\x5e\x53\xb4\x69\x5e\xb9\xa3\x61\x4e\xb6\xa3\xa1\x28\x23\x5a\x5d\x68\x4d\xce\x4b\x37\x47\x39\x6f\x1c\x56\xb5\x6e\x1f\xf4\x28\x4e\xff\x9e\xe5\xa2\xf2\xad\xda\x0c\xa3\x32\xd6\xea\x54\x2b\x4d\xf1\x51\xcc\x13\xba\x5c\xbb\x56\x6b\xcf\xd5\xa9\x92\x72\x53\x34\x9a\x94\xdc\x24\x32\x07\xee\x14\x4f\x72\x1a\xb6\x1c\xa9\x89\xff\x02\x11\x1d\x5b\x7f\x3e\x36\x9f\xfe\x4e\x88\x9e\x86\xca\x27\xfe\x93\x2d\x9f\x06\xc8\x87\x18\xf4\x17\x84\xd8\x1c\xfe\x13\xc4\x23\x25\x5e\x93\x51\x21\xc4\x4f\xe3\x2b\xf5\x0d\x7e\x17\x1a\x55\xda\xfe\xc2\x34\x62\xdb\xc0\xab\x90\xa4\xc6\xd1\x14\x75\x9d\x9d\x75\xc6\xfc\x14\x35\xad\x23\xdf\x09\x3f\x24\x65\x5b\x54\xed\xa5\xa5\xed\x2a\x4b\x36\x02\xb8\xee\xec\x57\xec\x69\x41\x83\x94\x98\xc6\x08\x2a\x83\x02\x68\x3d\x81\xf8\x47\x66\x8e\x22\xad\x3e\x3b\xde\xe3\xb4\xcb\x15\x55\xdb\xaa\x06\x36\x36\xe9\x05\xcd\xe9\xa1\xca\xee\x2c\x45\x48\x64\x94\xec\x70\x52\x62\xfa\xf0\xb5\x63\xdc\x01\xe2\xaf\xbf\x1b\xd3\xe8\xc1\xf9\xfb\x02\x8a\x41\xe4\x3d\x39\x7f\x17\xd3\xf7\xb1\xa7\xc9\x82\xbe\x51\x3a\xbf\x04\xea\x41\x03\xe2\x58\xb2\x91\x04\xe0\x2f\xe9\x16\x83\x50\x5c\xac\x3c\x52\x4a\xbe\x17\x48\xf8\xcb\x45\x00\x2f\xe1\x21\xbc\xb4\xfe\x36\xef\xf8\xba\xf2\xf2\x75\xc7\xe7\xbd\xf1\x86\xa3\x32\x3d\x36\x36\xbd\xd2\xf1\x06\xac\x11\xb7\x73\x7b\xf2\x17\x1e\xec\x9e\xb1\x67\x24\xef\xfd\x38\x47\x9e\xce\x84\xd7\xb0\x74\xbe\xb4\x8b\x4d\x78\x0e\xd7\x21\x3b\xee\xb3\x9a\x8e\x0b\x86\x9c\x51\xab\x63\xf4\x10\x83\xb1\x58\x54\x2a\x85\xc7\x85\xfb\x8e\xad\x45\x16\x0b\xab\x07\x96\x46\x86\x10\x97\xff\xb3\x39\xb3\xaa\x3d\xb6\x84\xd0\xb6\x0f\x40\x2b\xee\x79\x55\x91\x63\x17\x58\x46\xa6\xd6\x56\x25\x15\x0f\xd5\x65\xc9\x67\xfc\x84\x89\xd9\xf9\xb8\xba\xa7\x20\x34\x25\x9c\x37\xd6\x70\x75\xda\x94\xdc\x82\xa2\xb8\x13\xf0\x6b\xaf\x53\xac\x77\x56\x04\x01\xfe\x79\x5f\xc6\xb1\x7c\x69\xff\xa2\xcc\x93\x62\x1c\x73\x16\xf6\xe4\x95\xb0\xcc\x1f\x42\xc2\x08\x6f\x48\x2d\xf6\x43\x14\x77\xc2\x41\xe2\x01\x0d\x2c\x95\xb9\xb4\xeb\x1c\xe9\xf9\xf4\x5c\x5c\xcb\xe4\x31\xf4\x04\x1e\xef\x8f\x7e\x02\xde\x58\x3e\x58\x50\xd5\x9f\x4b\x72\x8c\xd5\xe2\xf3\x6a\x6d\x38\x3b\x7f\xd1\x55\x57\xac\x5c\x1a\xeb\x69\xcf\xbb\x96\x71\x7b\x5f\xe1\x4f\x7c\xf8\xbb\xe2\xb9\x2d\x85\x1a\x45\xf9\xac\xc5\xc5\x83\x31\x85\x25\x05\xd1\x09\xd1\x35\x4d\x95\x51\x7d\x0b\x96\xfe\x30\x84\x4b\xff\x79\x12\x27\xcf\xe1\x2f\x62\x7a\xa8\xdd\x37\xc4\x57\xd1\x0b\x51\xa3\x94\x54\x8a\x8c\x0f\xc0\xf8\xf9\x93\xb3\x02\x18\x30\xc4\x88\x62\x5a\x41\x8a\x85\x57\xc2\x7a\xa8\x14\x9b\xe0\x39\xf1\x51\xa6\xc3\x7b\x27\x0e\xb3\xd8\xc8\x6c\xf6\x96\x7b\xa5\xba\x67\xb7\xe0\x38\xb1\x4d\x78\x4e\xc7\x22\x1b\xdd\x8b\xe5\xbe\x39\x1d\x98\x84\x3e\xd7\xc4\xf9\x53\xfc\x16\xa6\x52\xeb\xc8\xd3\xc7\x17\xe7\xbb\xa2\xe2\x54\xa5\xcd\x1d\xf6\xb6\x7d\x0b\x0a\xc5\x3f\x42\xc6\xb9\x73\xde\xeb\x76\x16\x9b\x22\x65\xa1\xe1\xfc\x0b\x11\x9a\xa8\x60\x5b\xdf\xc1\x85\xf0\xd9\xb9\x8b\x80\xf6\xf5\x6e\x4c\xc7\x4e\x01\x51\xb9\x2c\x97\xd6\x2a\x7b\x3e\x0d\x31\xfa\xbb\x19\x77\xa2\xce\x53\x65\xd1\x95\x97\x78\xe4\x71\xea\xca\xb6\x5e\x47\xf7\xb5\x13\x65\x1a\xf1\x0b\x01\x9d\xde\xe8\xa9\xb4\x45\x05\x85\x86\x49\x4f\xb2\xcf\x3e\xbc\x84\x3d\x42\xef\xfd\x04\x42\x5c\x88\x2f\x56\x2b\x98\xf8\x31\xb3\x25\xdb\x87\x1c\x07\x55\xfc\x17\x04\xf1\x79\xa6\x2a\xf2\x87\x33\x7f\xff\x98\x5d\xb7\xf8\x3f\xaf\x9f\xce\xfc\x98\xf0\x65\xed\xd9\x43\xdc\x2a\xee\x4b\x54\x8c\x5a\x30\x5f\xaa\xf0\x76\x4a\xe6\x82\x39\x90\x9a\x41\x31\x1f\xa4\x74\x41\x35\xb6\x5f\x4e\xa5\xd3\x62\x31\x07\x20\xe8\x54\x58\x3e\xd1\x18\x2d\xff\x91\x93\xbd\x2d\x28\x98\xd3\xf5\xe4\x55\xce\xab\x34\xe4\xcc\xd9\xd9\x56\x17\xba\x61\xb4\x73\x73\x87\x8d\x01\x26\xab\x6f\x6b\x5b\x5c\x9e\x27\x3d\x3a\x2b\xb6\xb8\xb2\x2a\xe9\xc0\x9b\xdb\xca\x58\x60\xab\xf6\xbc\xb9\x7d\xd6\x91\x15\x15\x51\x72\x71\x57\x5c\x9a\x51\x23\x64\x38\xea\xdd\x89\xa1\x71\x29\x20\x44\xd8\xd4\x86\x4c\x47\xf3\x82\xa2\xfa\xd5\x33\x1d\x43\xf3\x4a\xd7\xde\xbb\xa4\x60\xc9\xf1\x65\x05\xc1\x51\xca\xf0\xbb\x62\xe2\x63\x82\xe7\x9c\xfc\xcf\x3e\xfb\xbe\xaf\x4f\x0c\xb9\xe6\x1f\x5d\x2c\xee\x49\x1b\x31\x47\xdc\x11\xa1\x49\x8c\x7c\x0d\x9f\x8b\xec\x09\x4e\xa3\x02\xf9\xf0\x63\x48\x3c\xf0\xf3\x28\x1d\x15\xe0\xbe\xba\x33\x62\x65\x92\x3e\xee\x47\x10\xfb\x99\x14\x3a\xa5\x4f\x67\x24\xe0\x62\xdc\x91\xc3\x71\x3d\x97\x5c\xd7\x3b\x74\xfb\x25\x55\xf3\x97\xa7\x96\x39\xd4\xe5\x6b\x6e\x1d\xee\x3d\xba\xa2\x5c\xfc\x42\xeb\x28\x48\xb6\x16\xdb\x55\xaa\xb4\xca\xf4\x05\x6b\x96\xcd\x89\xcb\xf7\xa4\x04\xb3\x4d\x7f\x14\x85\x58\xb7\x3d\x2e\x77\xd1\x0d\x23\xcb\xef\x77\x68\xaa\xda\x7a\xd2\x70\xfe\x9c\x3b\x6f\xfe\x95\xdd\xd6\x12\x87\x26\xde\x55\x6d\x4f\x6f\xcc\xd5\xfd\x71\xc1\xca\xd9\x8b\x83\xc2\x23\x65\xb0\x85\x8c\xe7\x3c\x4c\xef\xf5\x24\x26\x1b\x8f\xa7\x2d\x8e\xc8\xcc\x29\xf6\x20\x77\x8c\x2f\x92\x0c\x9b\xc1\xa3\xa9\xa9\x19\x26\x77\x78\x26\x23\x4c\x6f\x4b\x8f\xed\x18\x48\xc8\x6e\xf7\x6c\xfc\x28\xa9\xc7\x33\x77\x89\xf8\xe9\xa7\x5f\x36\x5c\xbe\x79\x5d\x91\xf8\xcd\x1d\x8f\x94\x2f\xbf\xae\xab\x77\x7b\x16\x84\xc8\xe4\x11\xc1\x0b\xfb\xca\x7b\x72\x62\x8f\x43\xbd\xce\xb1\xe5\xc0\x99\x32\xf6\x49\x00\xe0\x13\x8b\x06\x4a\xc5\xcb\xb5\x6f\x3d\xb6\xf8\x96\xc5\xd9\x49\x5a\x42\xcf\x01\x3c\x77\xe7\x73\xd7\x21\x1b\x1a\x2a\x09\x4f\x4c\x88\x08\xe7\x80\xb1\x01\x8b\x98\x3a\x29\xaa\x3e\x1e\x01\x83\x18\x9a\xa1\x8a\xff\x70\x54\xc8\x4a\x05\x4a\x0b\x09\xd2\x7b\xd2\xb4\xaf\xf1\x17\x24\x01\x9a\x26\x83\xd6\xf0\x04\x04\x26\xc5\x10\x63\x34\x27\x53\x85\x5e\xa5\x9a\xec\x6b\x76\xa0\xaf\x34\xd0\x48\xcd\x4e\xe9\x6a\x4d\x4c\x89\xb5\xb0\x59\x97\xdb\xe6\x6a\xbb\x5d\x5b\x96\x52\xd9\x29\xfe\xe3\xbd\x3f\x5f\xf1\x4e\xdf\xfb\x57\x1d\x2b\xc2\x39\xb6\xcd\x2b\xd3\x80\x89\xd0\x37\x94\x99\xdd\xfa\xc8\x87\xff\xa8\x4d\x1e\x19\xf5\xc6\x32\x9f\xbd\xfd\xee\x86\x15\xe2\x8f\xf1\x37\x6d\xe9\xdb\xd3\x97\xae\xd7\xd2\x7c\x3a\x13\xb7\x9e\x7d\x8d\xbf\x89\x11\xd0\x11\xba\xa7\xf8\x7e\xf0\x7b\x96\x7e\xaf\x65\xa2\xb9\x1e\xe6\xbf\xf8\x7d\x24\x8d\x95\xf8\x14\x21\x82\x21\x83\xe4\x52\x3d\x60\x5a\x07\x1e\xf1\x80\x06\xfd\xf5\xeb\x0b\xa4\x12\xff\x41\x12\x07\x68\x49\x6e\x9d\x0a\xd7\xcc\xc4\x57\x44\xe1\x2c\x6f\xa2\x5a\x92\x70\xa6\xa9\xce\xe4\x18\xc3\x14\x6f\x32\x7e\x7d\xed\x83\x0f\xc2\x9a\xfd\x5f\xde\xd6\xd3\x73\xec\x6f\xbb\x56\x7d\x32\xd6\xbc\xbe\x33\xcd\xd1\xbd\xa5\xa3\xff\x13\x66\xcb\xfd\xcc\x9a\xe1\x93\xdf\x1d\x58\x7d\xe0\xdb\x93\x43\xcc\x16\x71\xe0\xff\xab\xee\x3b\x00\xab\x28\xba\xb6\x67\xf6\xee\xee\x4d\x02\x01\xd2\x13\x12\x08\x49\x4c\x02\x24\xd4\x10\x08\xa4\x27\xf4\x60\xa4\x06\x42\x09\x52\xc4\xab\x42\x94\x44\x40\xec\xbd\xd7\x57\x24\x22\x29\x18\x7c\xfd\xb0\x7c\x4a\x09\xe2\xf7\xda\x7b\x05\x7b\x17\x3b\x16\x10\x54\x8a\xf8\x0a\x77\xf7\x9f\x3d\x73\xee\xc9\x4e\x6e\x10\xff\xfe\xff\x56\xf6\x9e\x67\x9e\x39\xd3\x67\xce\xcc\x9c\x29\xa8\xdb\xe8\xbb\x70\xe1\xbd\xe7\x97\x58\xe7\xfc\x7f\xa0\x1f\x67\x5d\x84\x7e\xe7\xff\xe5\x1b\xdc\x5e\x6f\x11\xbd\x10\x3c\x0e\x7c\x0d\x14\xba\xdf\xe0\x96\xd7\x28\x4e\xfc\x06\x77\x8e\xf6\x8c\x15\xfc\x04\xf7\x86\x0d\x3c\xd6\xd2\x9f\xb5\xf6\x74\xf2\x02\xf7\xb3\x6d\x37\xdf\xcc\x18\xfa\x97\xdd\x02\x3e\x1d\xc5\xec\xc1\xcb\x03\x9b\x24\x26\x5c\x44\x14\xb9\x56\x40\xf7\x1b\xd1\xd3\x62\x08\xde\x6d\x87\xec\x82\xab\xc3\x39\x9e\x7f\x8a\xeb\x57\x7b\xf6\x58\x63\xf4\xb5\x56\xf1\x76\xed\x88\xbf\x8b\x76\xa4\x8d\xa7\x8a\x5f\xbe\x80\x38\x2e\x15\xed\xa9\xd2\x28\x67\x99\xec\x62\xe1\xd8\x8f\xeb\x9e\x68\x6e\x88\x3d\x75\x79\xb9\x25\xb3\x0b\x0f\x63\x61\x75\x5e\xae\x99\x1c\x36\xef\x43\x60\x83\x36\x94\x33\x56\xec\xb8\x0e\x80\x46\x33\x46\xbc\xa5\x74\x72\x24\x35\x2f\xa7\x1f\xcc\x64\x99\x19\xe2\xde\x4f\x0c\xbc\xa5\x14\x01\xf7\x33\xe0\x2c\x81\x63\x57\xe9\x38\x10\xe5\xe2\x55\x8d\x08\xed\x26\xbe\xc6\x5a\xfa\xd9\x67\x89\x43\xc7\x65\xf7\x29\x2f\xcc\x8d\x4a\xec\x55\x39\x6b\xfe\xc0\xea\x3b\xce\xcc\x7b\xe1\x85\xa3\x47\x8d\x72\xeb\xe8\xce\xe6\xb6\xcb\xf2\x4f\x1b\x14\x6d\x86\x86\x19\xcf\x44\x24\xf4\x08\x1d\xb4\x68\xdd\x39\xf7\xb4\x35\xef\xe4\xa1\x70\x8e\xdc\x79\x77\xd4\x9b\xaa\x65\x88\xba\xc8\xb8\x97\x95\xd9\x4b\xf9\x5c\x16\xea\xdc\x60\xe4\x73\xf1\xac\xb9\xc4\x24\x13\xa6\x9e\x5d\xcb\xab\x11\x53\xad\x60\x26\x10\xa6\x51\x60\xe6\x21\x66\x9e\x82\x59\x4c\x98\x56\x76\x0b\xaf\x41\x4c\x8d\x82\x19\x44\x18\x9f\x7d\x48\xf2\x68\x1d\x79\xae\x27\xcc\x06\x16\xc9\x8f\x20\xe6\x88\x1b\x13\x52\x15\xc0\xf0\x37\xec\x83\x7c\x83\x83\xf1\x3c\xce\x37\x20\xe6\x34\x2b\x5f\x5f\x65\xbc\x24\x30\xe9\x02\x63\xb2\x55\x39\x86\xf4\x31\x65\xc0\x99\x77\xd8\xf7\xf4\x79\x13\x84\x3c\x13\xf3\x66\x05\x9f\x26\x38\xb8\xd0\x77\x1a\x72\x48\x4c\x2c\x61\xea\xd9\x6d\x7c\x32\x62\x26\x2b\x98\x12\xc2\x34\x0a\xcc\x74\xc4\x4c\x57\x30\x19\x84\xf1\xd9\xc7\x25\x46\x6b\xc7\x3c\x27\x30\x5d\xa0\xac\xb2\x50\x9f\x0a\x3e\x17\x79\xe6\x2a\x98\x64\xc2\xd4\xb3\x33\x78\x35\x62\xaa\x15\xcc\x04\xc2\x34\x0a\xcc\x3c\xc4\xcc\x53\x30\x83\x08\xe3\xb3\xdf\x95\x18\x57\x39\x5c\x24\x30\xe5\x50\x9e\x83\xb1\x3c\x57\x43\x79\x72\x57\x79\x4e\x16\x63\xe5\x45\xde\x11\x02\x33\x04\x75\x9e\xcd\x97\x63\x99\x2f\x57\x30\xc3\x08\x53\xcf\xce\xe7\xb5\x88\xa9\x55\x30\x35\x84\x69\x14\x98\x3a\xc4\xd4\x29\x98\xd5\x84\x69\x65\x17\xf1\x7a\xc4\xd4\x2b\x98\xd1\x84\xf1\xd9\x5f\x4b\x1e\xad\x9d\xe7\x52\x81\xa9\x84\x3c\x1c\x81\x3a\x2f\x54\xf3\x90\x30\x49\x84\xa9\x67\x17\xf3\x2a\xc4\x54\x29\x98\xb1\x84\x69\x14\x98\xd9\x88\x99\xad\x60\xb2\x09\xe3\xb3\x7f\x92\x18\x8d\x30\xb0\x3f\xfa\x2a\xe8\x93\x8f\x71\x5d\x1e\xa4\x4f\xbd\xe0\xa9\x30\xbe\x12\x98\x72\xd4\x79\x9c\x73\x1a\x51\xa4\x7d\x73\x4f\x07\xd2\x8e\xd9\x8d\x18\x93\xd5\x2f\x88\x93\x08\xf4\xa9\x06\x72\xd3\x4b\xf2\xc6\x05\x89\x52\x9e\xe8\x96\xa7\x92\xbc\xd5\x97\x24\xe5\x49\x2e\xb9\xb1\x9f\xe4\xbe\x5d\x10\x5e\x53\xc3\x8f\x25\x1d\x37\xd8\x07\xd8\x36\x89\xd8\xa6\xe8\xe8\x8d\x0e\x70\xf0\x37\x76\xd6\x38\x08\xcf\xe6\x1a\xc9\xb1\x42\xb4\xd9\x02\xbd\x52\xc8\xc7\x74\xda\x66\xcf\x13\xe1\x7d\xc6\xd7\x42\x3e\x0e\xf3\x61\x12\x73\xa5\x82\x31\xc2\x7c\x01\x18\xc8\x87\x25\xf1\x12\x11\xef\xe2\x30\x43\x48\xde\xb8\x44\x49\x27\x86\x3f\x40\x72\xdf\x7b\x20\xd7\x02\xf2\x57\x18\x13\x77\xf6\x5e\x16\xf2\x1b\xe1\xb2\x6e\xd9\xad\x8c\x31\xfa\xfd\x45\xf8\x5d\x96\xe3\x26\xdb\x92\xe5\x68\x5b\x8e\x72\x84\xd9\x4f\x98\x46\xb6\x89\x71\x99\x42\x0e\xfa\x13\xe6\x3d\xc0\x40\xfc\xd1\x80\xd0\x00\x21\xe4\xb7\x08\xf9\x34\x28\xa7\xc9\xb2\x9c\xea\x1d\xfd\x38\xe9\x7f\xa6\x73\x37\x07\xea\xca\x14\xcc\xa3\xf9\x6a\x5d\x21\xcc\x6e\xc0\x40\x1e\xad\x56\xeb\x0a\xc8\x4d\x2f\xc9\x1b\x57\x53\x2e\xbb\xe4\xa9\x14\x47\x2b\xbb\x9c\x51\x2e\x2a\x71\xec\x27\x0e\xdf\xf7\x6a\x7d\x59\x2b\xe4\x15\xc6\x1b\x42\x3e\x13\xf5\x5c\xc0\x5c\xa5\xcd\x18\x61\x5e\x05\x0c\xe8\x79\x91\x26\x11\x9a\x9b\xe3\x20\xc9\x1b\x2f\x32\xa5\xdc\x74\xcb\x3f\x26\xb9\xef\x47\x90\x6b\x01\xf9\x30\xab\x42\xdf\x09\xfc\x73\xb0\xcc\xee\x64\xae\x18\x18\x23\xcc\xc7\x80\x01\x0e\xa6\x72\xc0\x58\x64\x1e\xa4\xf1\xaa\xd6\xb6\x78\x19\xf6\x4b\x65\x4a\xfb\xdd\x2c\xeb\xbd\x08\x5f\xeb\x1c\x81\xa5\xb1\xae\x94\xc2\x36\x33\xc6\x5b\x30\x6c\x8b\x12\xd6\xa6\x76\xd7\xfc\xf9\x3c\x99\xd3\xd0\x51\x6b\x2c\xc9\x9a\x05\x6f\x8b\xf7\x66\x29\x6c\x74\x49\x69\x0a\x37\x8d\x04\xce\xcc\xb7\x55\x50\xdd\xc1\x12\xff\x79\x80\xe0\x0e\xc1\xdd\x43\x70\x77\x87\x00\xc1\x42\x70\x77\x87\xe0\xee\xee\xee\x76\x70\x77\x77\x3f\xb8\xbb\xbb\xbb\x1c\x5c\xb7\xee\xbd\xff\x7d\xd8\xda\xd7\x7d\xd8\xa7\xdf\xaf\xa7\xab\x7b\xba\xba\x6b\xbe\x9f\x19\xfe\xdd\xac\x86\x7f\x76\x91\xdf\x89\x48\x19\xee\x1d\xcc\x20\x8b\x60\xb5\xb9\x7b\xb5\x1b\x17\x6e\x89\xd7\x68\x34\xbe\x5d\x11\xa1\xe7\x00\xf1\xd0\xf7\xb2\xfa\x77\xf6\x7e\x57\x36\x2e\x06\x26\xc3\xe1\x58\x00\xbf\x0f\x6b\x27\xec\xcd\x7e\xee\x5c\xc7\xe2\xfd\xb1\xfb\xfd\xb4\x75\xda\xf5\xea\x42\x90\xa4\x2c\x60\xba\x93\x14\xd0\x38\x5b\x50\xa2\x8e\xa5\xb2\x34\xec\xe5\xaa\x20\x78\xc3\x78\xec\xfc\x35\xd2\xbd\x2a\x86\xe1\x69\xe2\xc2\x76\x7d\xba\x45\x67\xbf\x52\xc6\x13\x5c\x11\x7a\xa3\x7c\x6e\x63\x4f\x72\xa3\xcd\xb0\xd5\x76\x4d\x73\x5f\x3d\x43\xa7\xc1\x52\x61\xdc\x20\x63\x1a\xb3\xbb\x15\x27\x1b\x3b\xd4\x39\xd0\xda\xe7\x20\x41\x1e\xb4\x37\x45\x86\x83\xda\xba\x81\x78\x7b\x87\x76\xec\xf4\xe3\x59\x10\x17\xd6\xb6\x61\x94\x21\x3c\xc2\xaf\xa7\xfd\xaf\xe3\x5f\x8b\xd1\xe7\x3a\xaa\xe4\xa2\x64\x0a\x49\x24\x22\xaf\xdf\xc6\x9a\xbf\x4c\xd3\x1c\x9f\xd5\x2a\xcb\x2d\x8a\xd2\x13\x03\x43\xe7\x94\x42\xda\x70\x66\xb3\x8b\xb8\xe6\x9b\x6a\x63\x1e\x8c\x43\x9d\x58\xf6\x10\xa8\x27\xc6\xd2\x5d\xe6\xf7\xf8\xd7\x7b\x7c\x46\x4f\xd9\x7e\x56\x75\x05\xd3\x11\xab\x37\xdf\xf8\x47\x0e\x47\xe0\x0c\x05\xb0\x16\x5e\x04\x7f\xee\x4b\x3e\x5c\x7b\x58\x9d\x6e\x28\x4a\x97\x04\x4b\x20\x5f\xa4\xc7\x65\x63\x70\xb4\x5a\x2e\xae\x84\x02\x7f\x94\x65\xb1\xe5\xd9\x4d\x0c\x72\x50\xc0\x2c\x6f\xa8\x1a\x21\x03\x35\x96\x99\xf2\x8d\x4c\xb1\x2a\x5f\x69\xdb\x15\x7a\xd2\x7c\xa9\x90\x7e\xc8\x4f\x67\x8e\xe8\x0b\x52\x9c\xdd\xfd\xb4\xb5\xe5\xc9\xf1\x6f\x7f\xe5\xce\x09\xde\x07\xd1\x57\xd2\xd1\x7d\x2b\x06\xac\x3d\xe0\x82\xb4\xfb\xf6\xd6\x04\xac\xda\xdd\x86\x30\x15\x0a\x76\x14\x8f\xf1\x46\x8c\x3c\xc2\x4b\x14\x6f\x28\x7f\x03\xc5\x93\x4b\x02\xdc\x34\xd5\x05\xf5\x22\xf8\x65\xb0\x80\xcc\x67\xd3\x5a\xf7\xf4\xa3\x09\x54\x00\x10\x8b\x3f\x77\xc6\xca\x0c\xe6\x09\x86\x28\xa1\xdc\xb0\x34\xe6\x4e\x2b\x48\x63\x5a\x98\x60\x2c\x8e\xd0\x85\x6e\xa2\x8a\x3d\xc3\x57\x24\xe7\xdf\x23\xcb\x3e\xb4\x61\xe5\xfd\xca\x5e\xb8\x19\x3b\x13\x9b\x6f\xbe\xbb\x06\x03\xdb\x8b\x54\x94\x6f\x21\x52\xe4\x7e\x1f\x36\x3e\xaa\x65\xcf\x4e\xfd\x87\xfd\x13\x3f\x6b\x2c\x77\x86\xc6\x0f\xbd\x48\x42\xab\x4d\x42\x6a\x8a\x98\xa3\x1a\x2b\x4a\xc9\xe8\xcc\x82\x2c\x6e\x4d\x75\x4a\xbd\x28\xc2\x48\xac\x18\x46\xd0\x6c\x3d\x97\x96\x83\x31\x1f\x60\xea\xaa\xd1\x14\x5e\x80\xab\x81\x7d\xb8\x46\x11\xf5\x6a\x96\xbc\xf5\xea\xd9\x15\x09\xfd\x04\x4d\x7d\xb1\xaf\x81\x15\x7a\xe6\xb1\x02\xd9\x4c\xe5\xb8\xf2\x2e\x57\x22\xb9\x1f\xf1\xbb\x7d\x3e\x54\x98\xdf\x03\x51\x96\xcb\x55\x23\x0e\x9c\x9b\xcb\xed\x33\xc9\x02\xb0\x95\xb2\x74\xe9\x38\xf6\xae\xc5\x63\xeb\x21\x76\xb9\xbc\x51\xa6\x8a\xad\xfb\x52\xbd\x4a\x12\xc8\xb5\xb2\xd2\x39\xdc\x1e\xc8\x12\x9d\x6d\x96\x5d\xf1\x26\xfe\xc6\x64\x8c\x49\x48\xb2\xc1\x23\xba\xde\xff\x6e\x60\xdf\x9e\xe7\xba\x3b\x71\x82\x50\x83\xce\xc2\x04\x3e\xd1\x35\xb3\x09\xb6\x3a\xb6\xbf\x8c\xac\x45\x38\x25\x83\xf1\x9a\xfd\x8e\x13\xcd\xc8\x94\xf1\x87\xdf\x40\x79\x2b\x17\xa2\xff\xd8\xee\xb7\x87\x69\xe9\xbe\x75\x49\xc3\xb7\x56\x3d\xb4\x28\x69\xfb\xf5\x25\xd6\xd0\x58\xd2\x96\x0d\x20\x5d\x60\x42\x0a\xd0\x67\xcb\x48\x2d\xaa\xaa\xf3\x65\xf5\x90\xce\x45\x5b\xf5\x48\x01\x19\x8f\xd5\x62\xb7\xd4\x47\x89\x3a\x05\xb4\xbd\xe0\xb8\x76\x47\x40\x43\xf3\x44\xac\xeb\xbc\x95\x3b\xf6\xde\x6d\xf0\xae\x52\xe5\xba\x95\xd4\x1a\x13\x4e\xc2\xdc\xe1\xbb\x52\x99\xd9\xcc\x74\xea\x79\x3b\xc5\xa1\xa4\xd0\xf5\x52\xa4\x42\x27\x39\x41\xcb\x57\x24\x79\xd7\x7b\xd0\x74\xba\xff\xab\xd0\xe3\xd7\xc3\xd3\xbd\x2c\x6d\xf9\x58\xb4\x33\x31\x8f\xfe\xe5\x03\xe6\x99\x0b\x75\x73\xec\x1f\x67\x1b\x91\x07\xf2\xa4\x33\x89\xf9\xe5\x33\x2f\xd3\xe2\x38\xa6\xe0\xc7\x2d\xd4\xf5\xbb\xd7\x5c\xce\xe6\x8d\xf2\xb9\x61\x11\xcf\x1c\xd2\xe1\xd9\xc1\x31\xb7\x58\x42\x2a\xd0\xec\x84\xa1\x1b\x9b\x03\x7b\x07\x0f\x52\x26\x77\x46\x4f\xa1\xfd\xd8\xa0\xa2\x08\x21\x43\x65\xcb\x9a\x5e\x1c\xb1\x01\x68\xf6\xce\x28\xe5\x60\x44\x14\x85\x4e\x55\x0f\xc1\x91\x7e\x67\xc7\xb5\xb6\xa6\xb2\x84\x2a\xf4\xa1\xb1\xbf\x0e\x99\xa7\xb3\x33\xde\xd9\xe0\x9c\x72\x9c\x17\x16\x43\x7d\x3d\x2a\xe4\xfe\x7e\x98\x9f\x47\x72\x52\x2d\xcb\x4c\xc5\x9d\x0b\x7e\x42\x1c\xa4\x7c\x43\x83\x0e\x2e\xac\x8f\xd1\x94\x3d\x2f\x55\x6d\x56\xd6\xa0\x98\xf5\x42\x79\xad\x21\x40\x07\x97\xb2\x0e\x93\x12\x83\x49\x6f\x17\xd6\x3a\xdc\xf1\xee\x92\x68\x1d\x87\x61\x32\x70\x96\xa8\xbf\x48\xd1\x1f\x51\x85\xe7\xab\x15\x68\x6f\xd9\xd7\xf5\x6e\xb1\x0f\x2c\x14\xdd\x1e\xd1\x14\x1c\x2d\xdb\x16\x8a\xb5\x1f\x29\xa6\xc3\x7d\x0a\x11\xef\x29\xfa\x85\x5c\x0a\xcd\x93\x15\xf5\x49\xe2\x8f\x90\x6f\x9a\xf7\x82\x1b\x1e\x8b\x8d\x7a\xf2\x8f\xd4\x2d\x65\xfb\x51\xbe\x79\xa0\xf1\xba\x6f\x5b\x90\x24\xd0\x89\x4f\xbb\x53\x6b\x6e\xdf\x52\x8e\x9f\x15\xa2\xd6\x35\xdf\xe1\x5a\xe5\xd4\xbd\xac\xef\xb3\x6c\x3b\xcd\x05\x7b\xed\xaf\x1e\x5f\xa4\xc2\x0b\xd0\x84\x75\x05\x7f\xe7\x0c\x8a\x66\xa0\x75\x7d\x70\xcb\xcb\xdb\xf1\x2d\x1a\x71\x97\x24\x54\x66\xac\x66\x76\x2f\xc9\xde\xea\xbd\xb8\x17\x6e\xc1\x81\xf9\xfd\x55\x34\x26\xb2\x6e\xc7\xbf\xb9\xb6\x94\xfe\x4a\x72\x63\xd0\xf7\xe6\x38\xcc\xe5\x9c\x81\x6d\x13\x5c\xaf\xb7\xcb\x38\x2c\xad\x1c\xc3\x60\xb8\xd9\x8a\x34\x6e\x8f\x97\xb2\xdf\xf6\x38\xfd\x2b\xbc\xe5\x8f\x7e\xbd\xc9\xc7\x01\xc9\x1d\x6d\x58\x7a\x40\x9a\x2d\x68\xc3\x39\xe4\xb6\xa8\x77\x83\x82\xc5\x3a\xc7\x1b\xce\x6a\x92\x0c\xa4\x6d\xe0\xbc\xf8\xd4\xb7\xe1\x04\x68\x2e\x0b\xad\xe2\x0c\xaf\x5b\x43\x73\xec\xc0\xaa\x16\x42\xda\x5f\x2e\x0b\xd3\xb0\xb2\x91\x9c\x70\x01\x55\x3a\x9f\x25\xab\x61\xa6\xf9\x3b\x5c\x19\x1c\xdf\x41\x2e\x94\xf4\xea\x3c\x75\x9a\xc1\xc9\x16\x81\x6a\xdf\x78\x97\x14\xfa\xb2\xa8\xcf\x8e\x4d\x47\xa1\xec\x6d\xea\xb6\x7a\x5b\xb7\xe0\x6e\xd4\x4b\xc2\x38\x07\x29\x51\xf5\x1f\xd5\x6d\xc9\x8f\xe4\x5a\x04\x87\xb0\xf7\x6e\x59\xc6\x75\x43\x2d\xf4\x8e\xe7\x8e\xd3\x2c\x6a\x01\xb1\xb1\x24\xf5\x4f\x14\xa6\x3d\xfd\x50\xaf\xfa\x3d\xce\x15\xbe\x2d\xa0\x67\xd7\x0e\x37\xf1\x4f\x00\xaa\xfe\x33\xf5\x17\x4d\xd8\x8b\x78\x5d\x09\x65\xa2\x40\x11\x70\x11\xba\x0a\x6c\x60\x63\x76\x51\xdc\xa4\xf3\xf1\x77\xf9\x62\x72\xb7\x36\xe1\xde\x61\xc6\x84\xf9\x70\x32\x32\xed\x0a\x07\x8a\x90\xfc\xab\xf8\x34\x39\x01\x8a\x39\xb6\xf4\x45\xb2\x5d\x96\x52\x27\xe3\xe2\xa3\x3c\x3a\x6c\x29\x9d\xac\x50\x66\x1e\x75\xac\x73\x5c\x17\xf2\x0e\x37\x62\xf8\x58\xcf\xe8\x8d\xe5\xfa\x3d\x42\x60\x48\xe6\x31\x4d\xf3\xcd\x4c\x10\xf3\xd8\x94\x0d\x22\xf0\x5c\x5c\x6a\xfe\x7b\x1b\xa7\x43\x35\xf1\xdf\x95\x9f\x08\xeb\xd6\x5f\xfd\xeb\xcc\xd6\x99\x18\x4b\xc5\x1c\xa6\x60\x03\x93\x09\x88\x18\xe7\xad\xf9\x70\x23\x8a\x0e\xf5\x26\x58\x32\xc9\x06\xbc\x9f\x3c\x00\x47\x68\xc7\x2a\x65\x91\xd4\x0a\x71\x4d\x2e\xcf\x82\x6f\xa6\xb8\x29\x9b\x5e\x3e\x3f\xcf\x1c\xca\x0f\x76\x47\x21\x1b\x00\x63\xff\xda\xe9\x3b\x68\x2d\x57\x75\xa8\xc6\x24\x2a\xad\xa9\x60\x93\xc6\x3f\xfe\x30\x6a\x7a\xb6\xdd\x30\xfe\xcf\x09\x5a\x91\x5c\xac\xa7\xd0\x89\xa0\x44\x4d\xda\x2c\x99\xb9\xe2\x50\xeb\xf0\x1d\x9d\x1d\x44\x22\xd3\xc9\xd8\x52\x3e\x9e\x58\x7c\xf4\xf9\x30\xad\x1d\x3d\x84\x59\xea\xd2\x4f\xdc\x67\xcc\xdc\x08\x26\xd7\x33\x15\xf6\x30\x1d\xb9\x9f\x50\x99\x0b\x24\xe4\x00\xcd\xfe\xe0\x3e\x8b\x2b\x98\x9a\x34\xf0\x08\x2f\xb0\xff\x07\x2b\x50\x09\xf1\x3a\xc9\x0c\x3c\x0e\xf0\x52\x59\x54\xac\x14\x91\x24\x3b\xf7\x17\xd3\x37\x3d\x49\x06\xd5\xfd\xe4\x84\xa3\x70\x6b\xc7\x8c\x9d\x58\x8f\xad\x24\x4a\xb3\xe5\x83\x6c\x87\x43\xba\x05\x14\x8b\x0c\xfe\xc9\x38\x52\xca\xc8\x50\x7f\x86\x9f\xfb\x2e\xfa\xca\xee\x5d\x58\x4c\x3b\x3b\x36\xd3\x22\xcc\x83\x3a\xec\x46\x5c\xef\x62\xc0\xdf\x11\xb7\xff\x97\xae\x6f\x35\x10\x2d\xed\x27\xe8\xa2\x05\x28\x36\xe1\x88\x41\xe1\x36\x16\x0e\x3b\xb7\x29\xa4\x3d\x84\xc9\xb8\x9f\xfe\x2f\x99\xe7\x49\xba\x11\xe9\xb3\x34\x09\xf5\xf4\xe7\xa1\x8e\x08\xe3\x1e\xee\x16\x31\x2c\xe6\x5d\x11\x6b\x8d\x7e\xec\x20\x9f\xfc\x9d\xe8\x07\x0f\x9a\x75\xcb\x77\x8b\x0d\x13\xc1\x3e\xc8\xd7\x97\xe7\x71\xeb\x02\xe3\x6d\xb8\x74\xf9\xe6\x49\x68\xe3\x75\x6b\x13\xb5\x5b\x9e\x11\x36\x49\xbf\x11\x1f\xa3\x90\xc0\x0f\x09\xc3\x6a\x63\xdd\xd1\x7d\x15\xb7\x09\xbd\xb0\x92\x25\xc1\x89\xc8\xf8\x92\x95\x49\x23\xf6\x04\xa2\x92\xc7\x99\x69\x75\x58\x1f\x98\x0c\x17\xef\x88\xb0\x92\x55\xc1\x31\x82\xf8\x12\xc5\xdd\x55\x19\xfe\xc9\x9e\xd8\xd4\xb5\x28\x1c\xc0\x5e\x6b\x08\x37\x67\x2d\x9a\x0f\xda\x65\x13\x6c\x32\x3b\x72\x3c\xa1\x1f\xba\xbd\x74\xe4\x9f\x06\x3e\xb9\x27\x8f\x61\xcc\xe9\x5f\x2e\x4d\x96\x4f\x12\x40\xe4\x21\x83\x51\xa8\xb4\x8a\x8d\x14\xaa\x36\x35\x93\xaa\x40\x2e\x06\xd6\x6c\xbe\xae\xdd\x2c\x8b\xcd\x9d\x6e\xb8\x91\xe7\xd3\xe2\x3c\x77\x7e\xe8\x9b\x13\xd8\x57\x88\x44\x3e\x39\x0b\x96\xba\xd3\x8f\x4e\xbb\x9c\x21\xf6\xae\xe2\x55\x7b\xde\xfd\x4a\xff\xfc\xbf\xf9\x86\xbb\xcb\x3f\x3e\x94\xa7\x6c\xbb\x38\x0b\x5a\x58\xc3\x4f\x5d\x97\x02\x71\x92\xec\x81\xbd\x2f\x78\x88\x53\xda\x43\x6d\xb5\x6b\x07\xb6\x5f\x1c\x5c\x65\x94\x03\x1c\xde\x78\x3a\x67\x78\xae\x87\x98\x15\xfc\x4c\x44\xd3\x3d\x87\x8f\xeb\xb6\xb7\x9d\xdf\x3c\xaa\x9a\x4c\xc3\x05\xad\xbf\x13\x8c\x60\x27\x8b\x9b\xd9\x6f\xb2\x31\x0b\x4e\x15\xf0\x44\xf2\x22\x63\x3b\xb7\xce\xa7\xc0\x7d\xfe\x96\x76\x6f\xcb\xca\xa4\x4b\x75\x0c\x27\x2a\xda\xdf\xfc\x5b\x67\xc0\xc0\x49\xfe\x56\x62\xd6\x5f\x35\x3b\x65\x6a\x95\x9e\xdd\x39\x85\x95\x77\x0c\x2d\xb7\x38\x36\xde\x1e\xab\x2e\xe4\xfa\x3a\x19\x29\x79\xb3\x52\xfa\x59\x10\x2a\x0b\xa6\xba\xcb\x35\xd1\xea\x3b\xeb\xe3\x52\x48\xe7\xb3\x7e\x29\xc0\xb1\x48\x7d\x63\x62\xc8\x14\x20\xef\x76\x0b\x72\xb9\x5f\x19\x97\xc7\x7b\x34\x96\xdd\x86\x78\x8c\x8c\x5f\x81\x65\x54\x1a\x56\xb4\xb6\x9d\xd4\x2f\xa8\x4c\xf1\xce\x55\x68\x52\x0c\xf8\x20\xe1\xbe\x8b\xdf\x77\x08\x0e\xb4\x8e\xeb\x65\xa1\x99\x59\x66\xc5\x41\x34\x02\xb1\x85\xb9\x79\x3d\x7e\xe6\x0a\x64\x5b\xfa\xb7\x41\x3e\x72\x20\xd4\x6e\xf7\xb0\x9a\xeb\x19\x15\xf5\x66\x21\x72\xce\xb6\x85\x59\xa8\x2e\xd3\x81\xd8\xfc\xdd\x34\xd3\xfa\xa6\x7f\x01\x1b\xb0\x80\x14\xbd\x50\x56\x6d\x49\xea\xa3\x18\x74\x00\x10\x4b\x0c\x77\x86\x75\xcf\x1a\x2a\xfa\x30\xd9\x9e\x79\x84\x1a\xf8\x5f\x6d\x5c\x4d\x20\xcf\xa2\x49\xe9\xf9\x93\x88\x67\x2a\x94\x84\x96\x17\xda\x23\x54\xf5\x2f\x59\xcc\x48\x1c\x7a\xe2\x36\x8a\xde\xb4\x01\xa3\xed\x0a\xbd\xab\x6c\x1a\x66\xb5\x19\x62\x95\xc0\x9d\x5b\x38\x20\x4c\x06\xcd\x42\x64\xdb\x10\x0d\xa4\x63\x36\x21\xaa\x42\x64\x02\xbd\xa2\x83\xe0\x7d\x6e\x01\xdd\xfd\x30\x41\xee\xb4\xd7\x66\x3b\xe8\x51\x5a\xc7\x9a\xc4\xee\x9d\x01\x69\x0b\xb3\xd0\x27\xbb\xa7\x1b\xd1\x6c\xed\xd1\xe5\xec\xbc\x17\x36\xa0\x21\x64\x5f\xce\x9c\x2f\x67\x30\xe1\x70\x82\x06\x4f\x38\xe8\x05\x86\x39\xd7\x36\xdb\x12\x07\xd0\xb6\x9a\x7c\x10\xed\xec\x5d\xd8\x19\xab\x05\x94\xbe\x5b\x5a\xa4\xfd\x0b\xdc\x4b\x20\x80\x95\xbe\x7a\xc3\xe8\xb7\xb2\x7c\x46\x98\xb3\x0f\x7c\xbe\xb4\x0f\x77\xd3\x9e\x9d\xcd\x44\xdb\xd9\xb1\xf5\xaa\x93\xba\x82\x65\x40\x88\xb2\x1f\x20\xca\x81\x11\xdd\x22\x1f\xae\x35\x4f\xf7\x69\xed\x41\x3d\xed\x49\x7d\x1c\xc8\xba\x07\x0b\xbf\xc2\x83\xa3\x41\xbd\x3e\x69\xed\x0a\x90\x0e\x52\x3d\x49\x5c\x8c\x27\x50\x0e\x33\x39\xfd\x24\x94\x6d\xb6\x38\x23\xb4\xde\x76\xa8\x9b\x1a\x5a\xb7\xbe\xf9\x28\xe3\xea\x01\xc6\x52\x00\x22\x38\x30\x8f\xc1\x99\xc4\x66\x9e\xea\xce\x50\x1a\xb5\x01\x3e\x74\x71\x09\xe8\x5e\xd9\xdd\x07\x06\xe9\xc4\x01\x17\x0d\x9f\x34\x88\xf0\x4a\x5d\x4c\x43\x40\x6a\xdf\x3a\xe2\x40\x4a\x04\xc5\xdd\x76\xed\x59\x4e\x9f\x58\xd4\x9b\x86\xad\xbe\xfa\x47\x1a\x94\x9f\x3f\x3f\x5f\x47\x8d\xf8\x3d\x56\x98\xdf\x46\x14\x8d\xfb\xfe\x2a\x23\x01\xe5\xa8\xa3\xd4\x56\xbb\x97\x5f\x12\xaa\xdd\x28\x72\xe4\x41\x77\x2c\x69\x67\xc8\xee\x21\x91\x5a\x9c\xed\x2f\xa2\x73\x0d\xa0\xac\x24\xf1\x89\x54\x9a\x51\x50\x19\x0e\x5d\xb2\x76\xf8\xa8\x0a\xb3\x29\xaf\x01\x3e\xb4\x69\x21\x28\x4a\x99\x45\x07\x00\xd5\xfe\x0e\x0f\x87\x8c\x26\x8a\xe2\x2a\x94\xf7\xd9\x38\xda\x59\xaa\x72\x86\xba\xf4\x75\xa9\xfc\x65\xf5\x84\xcf\x5a\x15\xd2\xf1\x79\x4e\x69\xbb\xd5\xf3\x67\x0c\x67\xcc\x3b\x53\xdd\x0a\xfb\x99\x85\x67\xb7\x3b\x3a\x95\xa0\x58\x11\x67\xa5\xeb\x85\x64\xab\x65\x54\xf6\x76\xcc\x3b\xd3\xdb\xeb\x78\x44\xfe\xd1\xe6\xe7\x2c\xc5\xef\x20\xbb\xe0\x3d\x6e\xd1\x53\xe3\xed\x23\x86\x5d\xfa\xde\x1c\x10\x97\x70\xb7\x7f\x0e\x7a\x29\x05\x03\xab\xde\x11\x8f\x73\x90\x12\x11\x44\x1b\x9e\xc2\xdd\x90\xfb\xea\x5f\xe0\x65\x0a\x4d\x42\xe7\xe1\x39\x24\x2d\x93\xdd\x38\xa6\xd4\xd6\x7d\x1d\xbe\x4f\xfd\x7c\x68\xc6\xee\x4c\xe8\x98\xbd\x11\x75\x01\x50\xc6\xe2\x6d\xbd\xec\x72\xc9\x27\xff\x8a\x22\x70\x63\x41\x7a\xeb\xfd\x45\x94\x56\xef\x24\xc5\x95\xc6\x7d\x1c\xd8\xf7\x57\x50\x7d\x6d\x84\x53\xbd\xa1\xd7\x57\x0a\x9f\x8e\x91\xd6\x4e\x03\x28\x7b\x84\xcc\xd2\x85\x38\x72\xf4\x29\x64\x65\x41\x63\x46\xa1\xe6\x6c\x6a\xb1\x7d\xec\x20\x3c\x17\x6e\x31\x7a\x2b\x2d\x6a\x01\x5f\xd2\xc8\xee\x5d\xfd\xe8\xb8\x63\xf4\x6d\xcc\xaa\x80\xbe\x06\x31\xf9\xfd\x97\x3b\x6a\x02\x17\x49\x59\xf2\x9d\x66\x0b\x7f\xfc\x01\x43\x8a\x26\x90\x43\x35\x60\x7f\xe0\xdb\x81\x43\x15\x58\x74\x46\x13\xf6\x3d\x48\x58\xcf\x8b\xa4\x79\xd9\x97\x79\xee\xef\x29\x8d\x52\x69\x8e\x35\x56\x9e\xf9\x61\xd1\x7d\x62\x26\x04\x54\xf3\xb7\xcc\x36\x9f\x96\xd2\x2f\xeb\x23\x47\x93\x91\xb6\x7a\x7e\xbd\x16\x53\x7f\x85\x78\xf6\x63\x59\xed\x8e\xc9\xc4\x3a\x34\x77\xda\x2b\x5f\xff\xc1\x44\xc2\xb8\x95\x4a\xb6\xc4\x5d\xcc\x83\xe4\x42\x47\xba\xdd\x8a\x6a\x7e\xb8\x22\xa7\xc6\xa0\x87\xd4\xd3\x93\xd8\x87\xa5\xcf\x45\x38\x2e\x64\xb2\x1e\x12\x9b\x00\x82\xc0\xa1\x42\xcf\x4a\xc1\x18\x12\x0c\xff\x17\x54\xfa\xd8\xc5\xa5\x0a\x75\xe2\x1a\x43\x77\x3f\x21\x74\x33\x5b\xa0\xad\xa8\x96\x6e\x7c\x3d\x17\x2a\x2e\xdd\xe0\x2d\x0f\x39\x4b\xaf\x92\x65\x57\x08\x7f\x4d\x9b\xfb\xfd\x3a\xfc\xbe\x91\x63\x15\x22\x9a\xa3\x7f\x00\x19\xf1\x52\x7f\xc2\x47\x11\xc6\x3e\x13\x34\x52\x8c\xed\x0c\x8e\x50\xd8\x31\x60\xa1\xbb\x55\x62\xa1\xce\x7c\xc7\x0d\xcd\xd9\xfd\x77\x95\x11\xfb\xaf\x10\x4c\xc9\xf9\xeb\xdf\x7c\xbd\x75\xa7\x3c\xf8\x99\x96\x3d\xe1\x71\x5d\xbf\x83\x64\xfe\x3d\x92\xba\x83\x81\x9a\xb4\x35\x36\xa9\xdb\xa6\x8f\x94\x2f\x43\xbc\xce\xd6\x50\x42\x04\xcc\xff\x3e\x4a\x64\x07\xc2\xb4\xf1\x04\x71\x0e\x55\x23\xf6\x43\xc5\xc6\xc8\x90\xd5\x84\x7d\x2c\x93\x72\x46\x0c\x4c\xd1\x24\xe7\x97\xe2\x13\xa0\x86\xe9\x6f\xf2\x20\xbc\xc1\x14\xdc\x9c\xba\x83\xda\x5d\x6c\x46\x10\x51\x78\x0a\x69\xbf\xfc\xe1\x1b\xdd\xfa\xd5\xc5\x88\xf4\x08\xfd\x20\xd6\x45\xaf\xec\xb3\x02\x89\x61\xa5\xf8\x14\x20\x0d\x32\x2a\x51\x3e\x3a\x93\xe5\xc1\xea\xe9\xc0\xaa\x25\x79\xfa\xc4\xec\xab\xb6\x6a\x3c\x14\xdc\x1d\xee\xc2\x24\xf8\x98\x59\x2a\xf6\x98\x96\x7a\x0e\xeb\x24\xf1\xa8\xbf\xc7\x50\x1d\xe6\x84\x35\x8b\x9e\x32\xe2\xb6\x5c\x92\x4c\x09\x5c\x9e\x4c\x09\x77\x91\x1b\x77\x83\xdf\x87\x61\x66\x0d\xb7\xe2\xd9\xfc\x5d\x37\xec\xad\x39\xd8\xe0\x1b\xe2\x37\x07\xcd\x9b\xfd\xac\x1e\xa8\xcf\x7d\x6e\xa6\x67\x0d\xaa\xae\xe8\xe7\x9c\x15\x88\x18\x57\xbf\x0c\xab\x88\xed\xf3\x9b\xda\xf7\x06\x02\xb7\x5b\xcb\xd5\x3a\xe7\xdc\x0b\x19\xda\x6d\x4d\xd2\xd7\x8b\x86\x33\x70\x60\xee\x09\x93\xcf\xce\x84\x23\x10\x05\x28\xa6\x35\x7a\x46\x2e\xf7\xa0\x96\x23\x5b\x44\x72\x3a\xb0\xce\xfb\x92\x45\xbc\x19\x27\xfc\x01\xf3\xd4\xc3\x21\x9a\xa2\xad\x47\x52\xff\x11\x05\xd9\x6c\x8a\xc0\x1e\x44\xf3\x96\x75\x93\x6c\xb5\xa9\x9f\x79\x1b\x17\xf2\x77\x29\x05\xd5\xf6\x29\x07\xbb\x94\xb6\xbc\xb9\xa0\x58\x33\xdb\xea\xb8\x63\xb3\xb4\x54\x81\x83\xaf\xb5\xd9\xf5\x6e\x34\x9f\x9e\x08\x93\xda\x89\xc1\x28\xbe\x9e\x63\x17\xed\x81\x35\xab\x6f\xa6\x89\xee\xe9\xbd\xf7\x92\x13\x16\x44\xd3\x56\xab\x4c\xdc\x8e\xc8\x3b\xa3\xa2\x13\x45\x22\xfc\xcb\xbc\x9f\x45\x93\x74\xdf\x4c\xa5\x1a\x17\xf2\xbe\xfb\xd4\x18\x4f\x8c\x84\x6c\x83\x71\xc6\xb7\xc5\x76\x5d\xe3\x31\xbc\x19\xde\xbb\xa1\x6e\x8f\x45\x74\x6d\x31\x1f\x73\x0d\xc1\x1a\xf1\x29\x66\x64\x55\xa8\x3d\xa8\x4b\xd2\xbb\x85\xee\xb0\x4d\x3c\x52\x4c\x1b\x2d\xbf\x03\xaf\xe9\xb2\x1e\xa1\xb6\x4b\x1a\xaf\x71\x06\x5c\x4d\xdf\x78\x89\xba\x11\xd7\x9e\x04\x76\x3b\x7c\xdf\x04\x31\xbd\xcc\xd0\xb7\x05\x9f\x89\x01\xdb\xa9\xe1\xd7\xf3\xbb\x9e\x68\xc1\x4c\xa1\xd7\x7d\x97\x9c\x1e\xfb\x12\xb7\x02\xdf\xba\xaf\x31\xee\xb4\x44\x04\x1b\x37\x97\xe0\xb6\x07\xd6\x6d\xbe\xdf\x64\xa3\x6e\x77\x0d\x3e\xd1\xdd\x08\x44\x7c\x64\x3b\x96\xf9\x2e\x4f\xd9\x37\x77\x29\x24\x8d\x4e\x42\x82\xb9\x0f\x0e\xc5\xae\x5d\xe2\x3f\x8c\x71\x34\x6c\xab\xb1\x3d\xb8\x32\xb8\xe0\x5f\x12\xff\xfa\xfc\x90\x4d\xb1\x4c\x4b\xd2\x33\x60\x98\xa1\x11\x79\x2e\x29\x7a\xcf\x64\x24\x0d\xbd\x51\x56\xc5\xf9\xa3\x21\x70\x6f\x10\x27\x87\x6f\x5d\x3a\x3f\xc9\x05\x7d\xa4\xa2\x01\x54\xe8\xf2\x3b\x7c\x81\x34\x3c\x48\x6b\x14\x23\xa1\x9a\xf3\x95\x79\x4b\xe7\xe9\xfa\xeb\xa5\xe0\x7f\x1d\x5a\x35\xff\x20\x41\x2a\x44\xd2\x3d\x8c\xf8\xce\x71\x23\x10\x39\xd6\x82\xd5\x6d\xd6\xb2\x4c\xb6\x6f\x34\x37\xde\xa2\x26\x50\x01\xc3\x8b\xb7\x1d\x2f\xdf\xfd\x44\x5e\xc4\x3f\xe7\x5c\x8d\x3a\x27\x40\xc5\xbd\xfd\x43\x4e\x4d\xf1\x39\x14\x68\xdf\x04\xd3\xd8\xc4\x6f\xac\x4b\x77\x60\x2b\xf5\xe2\x39\xd6\xf9\x66\x7c\x9c\x6b\xb1\x4d\x4b\x32\xa5\x0d\x3b\x54\x9b\x7c\x96\x6e\x35\x54\x94\xbd\xe5\x16\x8f\xd5\x90\x95\xd0\x47\xe4\x25\x41\x1b\xeb\xe2\xdf\x52\xba\xf5\xcf\x56\xd1\x34\xae\xe5\xc7\x71\xb7\x0e\xcd\x54\xbe\xc3\xad\x5d\x98\x99\x8a\xe1\xa9\x46\x32\xf8\x0b\x7c\x36\xff\xd3\xd6\xab\xbe\xf9\xaa\xec\x9c\x46\x03\xb6\xf1\xa0\x9f\x27\xa6\xa2\xea\xc0\x27\xf9\x38\x46\xa7\xd3\xc2\xf9\xa5\x6c\x59\xc8\xfd\x2a\x8d\x80\x51\xc3\x63\x0d\x40\x5c\xf5\x50\xc3\x5d\x81\xfb\x6e\xa7\x93\xc5\xc3\xeb\x2b\x25\x3b\x3d\xb6\xe6\x3b\x91\xd3\xf1\x78\x11\x6f\xd2\x1f\x3e\x1a\x57\xf6\x42\xdb\xff\xe1\x6d\xda\x53\xbf\x71\x51\xaa\x3b\x7f\x7e\x9d\xe5\xfd\xaa\x63\x76\x44\x8d\x54\x71\xaf\x23\xd0\x56\x59\x4c\x5a\x76\xdc\xfb\xb7\x49\xe7\x73\xd2\x05\xe2\xad\xef\x95\x12\x2e\x11\xd9\x00\x1f\xd2\x26\xda\x77\x6d\xab\xd9\x00\xd5\xca\xaf\x3e\x74\x70\xfd\xa9\x36\x8d\x7a\xec\x09\x8a\x7b\xfc\x1e\x0f\x08\x3e\x29\xc8\x32\xe1\xd5\x20\x11\x3f\x84\xdd\x8e\x75\x5a\xa2\xe9\xe3\xfb\x39\xb8\x45\x8f\x3e\x4c\x63\x5e\xf2\x15\xb7\xed\x67\xbf\xe1\x67\xff\xed\x89\x6f\xc1\xd6\x79\xed\xba\x12\xfb\xce\x9e\x74\x1b\x7b\x01\x75\x56\x83\x63\x9f\xea\x36\x7b\xcb\xa2\x47\xf9\x67\x37\x6a\xef\xd3\x63\xae\x4f\xf8\x94\xbe\x68\x07\xbd\xad\x90\x11\xd2\xf6\xfe\x8f\x4f\xc8\x7d\xd7\xf8\xe2\x9c\x43\xc2\xfd\xfd\xd3\xfa\x2d\xbe\xe4\xf6\x44\x17\xef\x50\xf3\xe5\xc5\x1b\x01\x2c\x6a\x18\xbb\x21\xb9\x1a\x63\x8d\xa9\x74\xc4\x62\x82\x8d\xde\xe5\x7c\x9e\x0a\xe4\x85\xbd\x03\x04\x25\x77\x37\xe6\x26\x85\xbf\x86\xda\xb2\xcb\xcc\xf3\x76\x40\xf9\xfb\x8c\xd9\x9d\x03\x61\xee\x87\xd3\x1d\xb9\xc1\x4c\xd6\x8d\x43\x29\x79\xad\x35\x5b\x43\xdd\xfa\x21\x39\x9b\xfe\xa2\x2f\x96\xeb\xb9\x12\x26\x3a\x86\xb6\xf7\x32\x19\x6c\x21\xb7\x59\xf3\xc9\x57\x25\x19\x7c\x41\x0b\x61\x0d\x15\x79\x59\xa7\xa9\x89\xe5\xfd\x86\x48\xd6\xe2\xed\xab\xf1\x9c\xba\xa3\xe4\xf6\x2d\xe7\x9a\xca\xb2\x9f\xea\xcd\x9f\xf7\xdd\xfb\xa1\x54\xa8\x39\xde\x3e\x8a\xd7\x7b\x58\x8b\xe4\xe7\x23\x9c\xc8\xde\x33\x59\x3b\x82\xa7\xb6\x59\x25\xdd\x72\x3b\xa1\xf8\xd7\x88\x2f\xb1\xa4\x35\x7a\xb3\x72\x47\x3a\x5c\x71\xe3\x1f\x9c\x23\x15\x78\xbd\x4f\xe8\x46\x53\x6d\xa8\xb7\x3a\xb7\x2d\x53\x32\xbe\x16\x2a\x6e\x29\x50\x3e\x18\x3b\x35\xf6\x67\x4c\xa0\x16\xbd\x21\xb5\x3c\x50\x68\xf3\x63\x97\xd3\x56\x0b\x8f\xf6\x2a\x85\x68\xa6\xef\xcf\xd5\xf7\xf1\x0b\x8b\x33\xf7\x9f\xf5\x2f\x3d\x10\x9c\xbe\xe1\x65\xca\xcb\x0a\xa0\x44\x59\xfe\x07\xeb\x74\x0f\x62\x3f\x37\x5d\x68\xe2\x99\xc5\x92\xfb\x96\x11\x96\x30\x6e\xaf\xc7\x12\xcb\x1e\x61\x42\x12\xcc\xd0\x6b\x28\x67\x59\xbf\xdb\xef\x73\x89\xb1\xed\x8c\x8a\x73\x62\x26\x48\xa7\xe9\x81\x69\x8b\x44\xf3\x03\x7a\x60\xaf\xaa\xa6\x34\xd9\x03\xc7\x1f\x5e\x34\x6e\x3e\x0f\xda\xf0\xdb\xbc\x5e\x42\x36\x5f\x47\xde\xe3\x2b\x13\xac\xf7\xc4\x53\xda\x72\xd7\x79\xd7\xc6\xfe\x6c\x3f\xc1\x3b\x9d\xaf\x02\x0e\x31\xae\x21\x0e\xa2\xd0\xfd\x7b\x1d\xfe\x19\xa3\xde\x97\x60\x8c\x91\x0e\x11\x1a\x7e\x19\x45\x32\x66\x9c\xde\xcf\x07\x8b\x30\x0b\x38\x5e\xc4\x4c\xe3\x4d\x78\xef\x74\x7e\x5f\x9b\xfa\xb7\x56\xb2\x73\xea\x18\xb5\x87\x25\x8f\x92\xcd\xf9\xd5\xf3\x37\x20\x42\xea\x9d\x5d\xdc\x7a\x62\x96\xcf\x48\x16\x31\xb7\x5e\xef\xf6\xfd\xb4\x61\x8b\x0c\xe8\x12\x77\x78\xf4\x1a\x4f\x31\x67\x05\xeb\x55\x3c\x9c\xf6\xd0\x08\x9d\x0d\x9b\x85\xa6\xeb\x4d\xf8\x63\x46\x72\x06\x55\x5a\x96\x27\x32\xce\x22\x06\x4e\x7f\x08\x6e\xc2\x6c\xa6\x45\x80\xba\xa7\x4a\xf9\xc3\xd1\xbc\xa6\x66\xc0\x55\x6d\x08\x29\xf6\x89\x9f\x21\x70\x18\x30\x0c\xf5\x4a\xef\x43\xb5\x54\x46\xa7\x98\x6a\xdd\x57\xd7\x4f\x8f\x9d\xa6\x0e\x3a\xa8\xa7\xad\x57\x95\x83\x07\x29\x59\xb8\xdf\x73\xd4\xd2\x7c\xb1\x1c\x4c\x32\x7a\xb6\x78\x53\xa7\x5c\xa4\x8f\x28\x99\x05\x9f\x73\xbc\x96\x41\x36\xc4\x32\x8f\xa3\x37\x64\x5d\xd9\x4b\xcc\x09\x30\x86\xbf\x0c\xe9\x86\xa7\x25\x87\x69\x90\x31\x3b\xd9\x16\x3a\xca\xce\x6c\x34\xd4\x70\xe8\xf9\x22\xcd\x7d\xd4\x4c\x1d\xf5\x3f\x92\xec\xbd\x41\xe3\x22\x0a\xf5\xdb\x9f\x49\xcd\xa8\xa7\xfd\x64\x7e\x12\xe9\xe9\xc1\xb1\xe9\xfc\xdd\x53\x63\xf7\xc9\xc4\x73\xfd\xc5\x75\x3d\x93\x7d\x51\x8d\x72\x91\xe9\xaf\x9b\xca\xb2\x46\x31\xaf\x80\xb9\xad\xc6\xf6\xd8\x73\x22\xeb\x58\xd4\xa5\xb6\xc1\xf6\x21\xb6\x10\xef\xb0\x00\xe6\x02\xfa\x7b\x98\x92\x4a\x16\xec\x94\x86\xba\x2d\xb3\xbd\x86\xd4\x19\x76\x2d\xac\xd7\x44\x61\xa9\x53\xe3\xd5\xcb\xfa\x81\x61\x9d\x3f\xa5\x4c\xee\x88\x92\xc3\xaf\x65\x4c\x62\x10\x9f\x66\x97\xdd\x60\x0d\xbb\x92\x08\x1d\xa9\x60\x1f\x5c\x9d\x21\x95\x8c\xde\x91\x1e\x30\xb8\xbb\x55\x9e\xb4\x72\xbb\x32\x72\x94\x3c\xab\x9a\xb6\xf7\x57\xd3\x84\xf4\xc5\xf3\x9a\x5b\xc3\x8f\xbe\x35\x91\xbc\xfb\x73\xdc\xa1\xc2\xee\x66\x20\x52\xa1\xc5\x4e\xfb\x24\xc7\x8a\xe9\x0c\xd1\xf2\x6f\xa3\xc7\x5e\x3b\x73\x08\xd0\xf4\x80\x5d\xe6\x3a\xb8\xe3\x68\x2a\xb2\x5f\xbe\xa7\xfa\x08\x60\xc3\x79\x45\xb3\x1d\xdd\x99\x3f\xc3\xb4\x2d\xaf\x2a\x84\xf7\x73\xfb\x04\x09\x4e\x14\x8c\x0a\x46\xf5\xe3\x4a\x42\x53\x6b\x0e\xdd\xfe\xe3\x45\x44\x0f\x9b\x3c\x65\x8d\x11\x0c\x28\x80\xbb\xfb\xd0\x3a\x70\x13\x9f\x74\xcd\x1a\x90\x87\x15\x88\x95\x8e\x79\xea\xeb\x97\xf1\xe8\x7f\x5f\x78\x0f\x3f\x2a\x69\xaa\x4c\xf5\xd0\xcd\x19\x2a\xff\x85\xdf\x63\x35\x10\x30\x1d\x01\x88\xe5\x0a\x74\xf3\xa2\xff\x5b\x25\x49\xd3\xf1\x24\x46\x68\x02\xaa\x8b\x17\x70\x80\x8c\x19\xe8\x25\x63\x39\x0f\x0f\xb6\x96\x89\x3a\x05\x8b\xa4\x6e\xa6\x31\x4d\xc3\xdc\x6a\xd3\x33\x23\xe6\xa2\x10\xc6\xb7\x53\x96\x3b\xeb\xe7\xc7\xe9\xa1\x78\xf7\x2f\x8f\xdc\x52\xde\xc3\x13\xab\xe5\xd4\x4a\xe9\x33\x86\xdc\xbf\x6b\x39\xf4\xea\xb6\x87\xce\xcd\xaf\x97\x33\x53\x0f\xa8\x73\x23\x5c\x49\x75\x56\x39\x27\x82\x79\xe2\x61\xb4\x48\xa8\x7c\x72\x18\x7c\x8f\x15\x66\x3b\x19\x51\x87\x9e\xea\x6e\xb2\x69\xfb\x99\x02\x6e\x72\x0c\x9f\xbf\x3f\x0b\xa8\xbc\x0b\x42\xf7\x93\xf4\x6e\x77\xec\xaf\x74\x4c\x71\x3c\x7a\xac\x06\xbe\x46\x4e\x34\x05\xc2\xa4\x79\x9c\xeb\xe2\xfb\x52\x1d\xb1\x62\x33\xb2\xec\xfa\xe5\x7d\xde\x60\xed\xad\x16\xfa\x6e\xbc\x7c\xd0\x81\xf1\x47\x07\x08\x27\x9a\x85\xd5\x29\x46\xdf\x6c\x48\xe9\x7b\x24\xef\x15\x39\x56\x5c\x2c\xb5\x0d\x62\x33\x9e\xe6\xb2\x07\x3d\xb7\x94\xdf\x0a\x5d\xc9\x3e\x5d\xc3\x8d\xb2\x3f\x78\x98\x24\x50\x1a\xf5\xd6\xbf\xe0\x6f\xb7\xfd\x6f\x33\xbd\x36\x51\x8e\xe6\x3e\xd4\x10\x3c\x5b\xbc\xe3\x70\x0c\x57\x44\xd5\xde\xb9\xd2\x63\xff\xbe\xbb\x5e\xf3\x33\xa2\x1b\x47\x4a\x00\xe3\xac\xf7\x2c\xd0\x2e\xd9\x48\xdc\xef\x92\xf9\x57\x24\xf9\x91\x99\xde\xc3\xf9\x7d\x79\xe1\x7e\x62\xb6\x1f\x4f\xb2\x1e\x0a\xd8\xfe\xcc\x84\x6b\xbf\xee\x1a\x0c\x0c\x0e\x32\x11\x7f\xfa\xad\x11\xe2\x58\x93\xf4\xbb\x1c\x76\x42\x9e\x59\xb8\xd5\xf3\xdd\x23\xc2\xc9\x5b\x37\xaa\x22\xf1\xcf\xb2\x74\x44\x35\x4e\x7c\xf5\x74\x0f\x11\x35\x98\x7f\x62\x10\xdd\x81\xc3\xbe\xb2\x25\x16\x1c\x1a\xb7\x4f\xc6\x15\xda\x12\xc5\xbd\xe4\xeb\x94\x72\xc0\x3d\x3e\x19\x2f\x46\x18\xbb\xaa\x57\xe6\xae\xe0\x41\x48\x19\x33\x0c\xe4\x56\xdc\x2a\x41\x9f\x96\x7f\x33\x69\x7a\x0f\x3f\x26\xf8\xf9\x95\xfd\xd4\x0e\xee\x48\xba\x23\x38\x82\x22\xba\xeb\x28\x6a\x78\xe7\xb4\x1e\xb3\x65\x11\xfa\x03\xf6\x04\x66\x6c\xbb\x6a\x4e\xd6\x7e\x86\xd4\x11\xc6\xe5\xb0\xa5\x36\xc9\x34\x9b\x58\x21\x57\x9a\x19\xd0\x9b\xa1\x1c\x09\x2c\xf3\xef\x58\x20\x74\x48\x7f\xb5\x83\xdf\x14\xf5\xc1\x78\xa1\x69\xc3\xe9\xe7\x21\x49\x91\x66\x28\xb7\x8d\xf5\x4d\x5e\x30\x77\x13\x7f\xdc\xe6\xcc\x05\x67\xdb\x2b\x53\x8d\x4f\x25\x9a\x29\x28\x36\xdf\x68\xed\x46\x9a\x5f\x4b\x0e\x66\x94\x63\xf6\x4d\xe9\xec\x84\xb5\xbc\x61\xb9\xd9\x0f\x6a\x85\xa0\x04\x74\x29\x62\x9c\x1f\x89\x81\xa1\x84\xee\x2b\xaa\x2d\x01\xc4\xae\x00\xd8\xc6\x45\x1a\xbc\xa2\xdd\x9e\x4e\xa1\x3f\x2b\x1d\x97\x46\x5e\xb8\x21\x44\x47\x11\x5f\x2e\x8e\x6c\x83\xbe\x4f\x1d\x3e\x95\x4c\x3e\xb0\x22\xfc\xdd\x71\xec\x7b\x16\x68\xde\x53\x7f\x0e\xf0\xca\x0f\x06\xa7\x41\xf3\x37\x67\x2c\x07\x3c\x21\xfc\xf5\xda\xa3\xd7\x80\xf1\x24\x1f\xd8\x52\x2f\x8a\x13\xc6\xc8\x11\xd1\x1f\xe6\x3f\xcd\x3a\xdf\x90\x6c\x9c\xa5\x31\x86\xe7\x8a\x1b\x44\xd8\x6d\x83\x05\x39\x10\xc7\x9d\x24\x8f\x9f\x14\x27\x8a\x6a\xaf\x52\xd2\x84\x6c\x0e\x7f\x45\x0c\x18\x71\x0c\xbc\xe3\xb8\x91\x16\x4b\x06\x9e\x6d\x49\x42\x52\x2c\x81\x21\x95\xfc\xd3\xf4\x00\x05\x6d\xcc\x89\x55\x99\xbd\x5b\x50\x8e\x84\xbd\xfc\xb6\x24\x83\x8e\x4a\x92\x50\x8e\x84\xe7\x9a\xb5\x75\xbd\x84\xb0\xcc\x0a\xab\xb0\xe8\x8e\x7f\x78\x62\x3f\xdb\x0e\x20\xb2\xf5\xae\xde\xf9\x79\xa3\xb0\x94\xec\x2a\xdd\x02\x0d\xd4\x29\x26\xde\x42\x91\x10\x1f\xae\x65\x74\x63\x2f\x3b\xbb\x05\x2a\x67\x89\x86\x22\x68\xeb\x3f\xbd\x4b\x62\xb0\xa6\x45\xdf\x85\xd0\x86\x79\xdf\x9c\x75\x83\x09\x55\xd4\xbf\x74\x03\x9e\xaf\x01\x28\xa5\xbe\xb6\x2c\xf5\xee\x1c\xa1\xb8\xdf\x1f\xff\xcd\xea\xc9\x0d\xd6\x2a\xe9\xb4\xdb\xb2\x93\x14\x3d\x5f\x6f\x15\x3c\xaa\x25\xc1\x92\x15\x81\xe6\x49\x2f\x6c\x13\xe3\xcd\xea\x13\x60\xdf\xc2\x4a\x76\xd9\x4c\x2a\x73\x59\xc9\x72\x90\xe9\x95\x5e\xad\x73\xeb\xc3\x29\xb7\x91\xb5\xf8\xd5\xa5\xea\xa3\x4e\x74\x79\x16\x7a\x16\xc3\x95\xff\xa2\x57\xd7\x41\xfe\x46\xda\x4f\xa7\xb9\xff\x18\xcb\xa4\xed\xaf\x1c\x74\x7e\x37\xf1\x82\x48\x59\x85\x5c\x70\xed\x9e\x79\xf2\x51\x3f\xe7\x92\xe2\x1b\x6d\x1b\xf3\x76\x39\x38\x51\x20\x34\x79\xc4\xf3\x62\x71\xa0\x57\xe5\xee\x86\x44\x09\x4f\xcf\xdb\xca\xa4\x01\xb6\x84\x99\x25\x7e\xa2\xe4\x84\xf1\x63\x6e\xf2\xff\xf1\xc5\xaf\xfd\xe4\x3f\x46\xe8\x48\xea\x6f\x8e\xa8\x73\x86\x0f\xd1\xc9\x0f\x92\x2b\x72\x6a\xac\x56\x9e\xbe\x98\xc4\xbc\x7c\xa2\xdb\x97\xd9\x89\xfb\x70\x22\x08\xb4\xcb\xa7\xbf\x5a\x5e\x36\xe2\x3e\x7e\xfa\x42\xb0\x24\x49\xd5\x6c\x39\x49\x9e\xc1\x96\x24\x3d\x82\x7f\xdb\x5e\xd1\xfd\x8a\x4e\x6b\x0a\xe8\x81\x3c\xb2\x64\x8b\xf7\x05\x9e\x5b\x3f\x44\x7e\x77\x49\xec\xae\x00\xb3\xad\x1d\x39\xc0\xd1\xb1\xf0\xd9\x64\xb8\x53\x1c\xe1\xcf\x86\x14\x4e\x9e\xff\xa3\x1f\xb7\x0a\xb8\xe0\xa4\x93\x20\xc8\x40\xe5\xac\x71\x6e\x35\x2b\x5d\xe9\x8c\xa3\x48\xe6\x1e\xbb\x70\x54\xf6\xc4\xb2\xef\x84\x20\xc4\x50\xaa\x5a\xab\x08\x3b\xc6\x1a\x85\x7a\xf5\x29\xbc\xb7\x07\x41\x59\x68\x86\xa6\xa5\xca\xc7\x15\x0f\x82\xe6\xc7\xfe\xa9\x5e\x03\x30\x14\xb8\x8b\xca\x1e\x44\x79\xa1\x99\xe6\x8d\x37\x8d\x2f\x98\x1f\xd1\x86\x03\x5f\xb5\x9a\x3d\x25\xe1\xb9\x2b\x39\x86\xbc\x3e\x88\x47\x21\x4c\x28\x2e\x2b\x68\x97\x30\xf5\x97\x01\x6f\x44\x41\xde\xd9\x26\xbf\x1f\x27\x5c\x48\x60\xca\x62\xa2\x53\x96\xc8\x50\xf1\x3d\x2f\xb4\xe2\xbf\x54\x4d\xf4\x2e\xff\xa3\x08\x3d\x15\x07\xb0\x55\x66\xa4\x42\x47\xa4\xa6\xb1\x19\x24\xa0\x86\x34\x37\xcd\x55\x67\x4b\x1f\x34\x05\xee\x1b\xa9\x09\x81\xb3\x2e\x40\x71\x1f\xee\x73\xd3\xa8\x3a\x13\x67\x98\x8e\xf2\x9c\x40\x48\xa8\x07\x2b\x1b\xfb\xee\x76\x0c\x18\x2d\x96\x5b\x1c\x48\x8a\x12\x5f\xe2\xb9\xbb\xe8\x1c\x0b\xb1\xd5\x14\xf1\x13\xb4\x28\x54\x9b\x1c\x5b\xa1\x4f\x46\xe6\x85\xd2\x0d\x11\xaf\x3e\x77\x0d\xe2\xf6\xb7\xeb\xf5\xd7\x79\x39\x4b\xf8\xa7\xb1\x53\x48\x5b\xae\x97\xd1\xf9\xfd\xa4\x93\x97\x90\xfb\x0f\x30\xf2\x3a\xfc\x28\xbf\x84\x8e\x98\x5b\x17\x48\x46\x04\x77\xae\x27\x64\x57\xa9\x35\x15\xed\x88\xcd\xc1\x40\xc0\x51\xdf\x7c\x1a\x85\xa7\x86\x24\xe0\x95\x36\x2c\x60\xf7\x9e\x63\x3f\x50\x7c\x14\x9b\x93\x93\xa4\xcc\xc6\xe8\xbb\x56\xeb\xf6\x31\x68\x04\x3d\x1e\x39\x2c\xff\x36\x6c\x45\x67\xc4\xe8\x01\x26\x49\x44\x04\x3f\x36\xe9\xf8\x7e\xdc\x76\x48\xd6\xa4\xf1\x34\x9a\x73\xfb\x5a\x8b\x1b\xc8\x3f\x94\xcf\x22\x1d\x9b\x2a\x88\x09\x8e\x74\x9c\xa7\xbf\x3b\x4f\x35\x42\xfe\xab\x9f\xcb\x43\xae\x4f\x5d\x44\x80\xcc\x36\x15\xcb\xed\x24\xa8\xa4\x2e\x80\xcd\x0a\x7c\x55\x5e\x1b\x60\x2f\x7e\xc5\xf3\xe7\x5d\x36\x8f\x0a\xe6\xad\xd3\xbb\xe1\x4d\xdb\x75\xa8\x19\xb4\x5c\x88\x15\xf5\x3e\x63\xf2\x3d\x16\x92\x5a\xcf\x07\xf3\xed\xf8\xaa\xf8\x28\x34\xe2\x9f\x02\x11\xde\xa7\xaa\x93\x3f\xb2\x9f\xbd\xe9\x76\x50\xf7\xae\x1d\x36\x57\xb4\xde\x3f\xf9\x76\x24\xc9\xa6\x9f\x1c\xb2\x69\x7d\xbe\x4a\xb4\xcd\xf6\xae\x5d\x47\x1f\xea\x66\xd8\x20\x6e\x3a\x14\xa7\xff\x3c\x7f\x18\xde\x7a\x32\xf5\x92\xf4\x6d\x0f\x40\xb9\x79\x77\x13\x4c\xff\x43\xd9\x79\x80\xfe\xc7\xdf\x21\x77\xa5\x16\xbe\x0d\x86\xf8\x0a\x7b\xdf\x4c\xf1\x64\x6f\x09\xdf\x0e\x85\xfc\x94\x7c\x17\x50\x5c\x83\x96\xe8\x94\xf0\xfb\x82\xdb\x27\x82\x7b\x56\xbe\x7d\xb3\xeb\xbd\x1e\xdc\x66\x03\x7c\xf9\x2f\x8a\x5d\xa8\x74\x93\x8e\xe5\xff\x49\x81\xe6\xdb\x14\x24\x79\x3b\x02\xd7\x09\x80\xd4\x15\x5f\x89\xa6\x36\x82\x71\xc8\x86\xcc\x6a\x44\x27\x7e\x3e\x79\x1b\xab\xdb\x2a\x04\x3d\xa2\x53\x74\x33\xcd\x4a\xd6\xa9\x9f\x9a\x4d\x59\xfb\x92\x01\x43\x1d\x4e\x99\x06\x98\xf7\xb2\xf9\x6a\x6f\xa8\x7d\xb2\x38\x69\x19\x19\x19\x19\x18\x17\xed\xcf\x88\x67\xb9\x8a\x24\xd3\xd2\x93\x06\x95\x0c\x47\x6e\x2d\x7b\xbd\x33\xc1\x49\xd2\xbd\xd0\x15\x8f\x19\x0f\xe8\xb1\xea\x8f\x37\x11\xf9\xf9\x58\xa8\x4c\x60\xdf\x7a\x43\xe8\xd8\xc3\x8f\xac\xed\x90\xa8\xd1\x98\x98\x29\x62\x36\x50\x22\x27\x85\xeb\x27\x47\xa2\x42\x97\xe5\xa7\x9d\x82\xe6\x7a\xbe\x84\x6a\xe7\x83\x8c\xf5\xeb\x0e\xa8\x30\x2b\x4a\xfd\xa5\x79\xd7\x33\x0a\xfe\xed\xf3\xa8\x67\x89\xed\x91\xd2\x23\x42\x8d\x93\xef\x2c\x3d\x90\xa9\xd7\x1f\xb8\x7c\xd9\x75\x3d\xb7\xfc\x2f\x83\xfb\xb6\x78\x99\xb1\x69\x8c\xd3\xf6\x48\xe0\xe9\xaa\xab\xc6\x5a\xc4\xc2\xc1\xe1\x34\x80\xb5\xeb\x62\x77\x2e\x39\x33\xe5\x99\xb8\xdd\xae\x51\x77\xe9\xb1\xc6\xf7\x25\xa7\x19\xc6\x34\x69\x12\x9f\xd5\xdc\xd2\x60\xed\x0b\xfc\x6a\xff\x06\xdb\x96\x33\xd6\x4f\x24\x54\x45\xfd\x02\xc2\xfc\x7d\xba\x28\xbb\x1c\x6c\xba\x53\x8c\x25\xb0\xe7\x3e\x09\x72\x89\x75\xdb\x41\x55\xd0\xf2\x05\xbd\xee\x7e\xbe\x0d\x12\xb8\x1d\x13\xce\xe2\xbf\x9b\x59\x20\xdb\xac\xe1\x6d\x6b\x4c\x05\xc3\x4b\x75\x94\xee\xd3\xec\xc5\x7c\xc9\xfc\x8b\x17\xbf\x6c\xb7\xad\xf2\x56\x10\x3c\x5d\x3d\xa9\x79\x4b\xe9\x31\x8c\x3e\xa8\x69\xbc\x35\xeb\x5e\x9d\x24\xbc\xfa\x08\x78\x73\xcc\x73\x65\x27\xd0\x4d\xc0\x1c\x4d\x5f\x76\x37\xe9\x35\x72\x98\x3c\xef\x74\xda\x0f\xf6\xf1\x15\x81\x73\xfd\x8b\x36\x46\x96\x71\x52\x0a\xf7\x2e\x63\xfc\xd3\xa9\x33\x29\x95\xc5\x02\xa2\xa5\x81\x22\x78\x7d\xb5\x24\xc7\x85\x98\xf9\x7c\xc7\x43\x55\x6f\xcb\x65\x5e\xce\x66\x69\xfe\xc4\x07\xdb\x09\x2d\xe3\x64\x3a\x23\x4a\x82\x8f\x8a\x60\x55\xae\x70\xf2\x00\xd3\xb9\x1a\x2f\x2b\x13\x5f\xaf\x37\x2b\xf4\xa4\x33\xab\xae\x15\xc1\x34\xe3\x16\xeb\x46\x92\x93\xf6\xef\x19\x3a\xde\x5e\x52\xa5\x9a\x22\xe4\xb6\xf1\x78\xc7\xc2\xda\xdb\x18\x1d\xff\x63\x41\x6c\x31\x98\x5e\xd7\xe2\xe5\x99\x6f\x49\xec\x3d\x1d\x6b\xc9\xe8\x75\xdf\xc6\x6a\xa9\xf1\x45\x48\x20\x3b\xb6\x05\xe1\x83\x8b\x9b\x53\xce\x2a\x66\x96\xa6\x76\x7b\x92\xf5\xd0\xa7\x45\xca\x93\xab\x6a\xed\x33\x5a\x62\xae\x9b\x8b\xfd\x71\xfb\xc0\x4b\xbf\x09\x6e\x9e\xaf\x36\x67\x82\x35\xeb\xc3\x18\x8e\x45\x29\x28\xcc\xef\x03\xda\x15\x40\xfd\x66\x83\x5e\xac\x96\xbb\x0d\xe3\x94\x2c\x3c\xd0\x4a\xa7\x38\xb2\x8e\xf8\x76\x83\x69\xc0\x88\x99\x06\xdf\xcb\x06\xc7\xa2\x06\x63\x90\x82\x38\x21\xb5\xf3\x02\xcd\xe2\x2c\x92\x26\xeb\x8f\x17\xf4\x28\x1c\x7e\x0b\x6d\xf0\x57\x3a\x07\x2a\xfb\x7c\xc0\x4d\x7f\x3b\xe4\x41\x1f\xea\xf7\xab\xab\xb3\x17\x43\x7f\x1b\x6f\x79\x15\x22\xf2\x95\x25\x74\xbf\x96\xfd\x6f\xca\x25\xe5\x1a\x9a\xc1\x44\xda\x31\x94\xb1\xa8\x63\x37\x5d\x1f\xea\x24\x2d\x21\x07\xef\x65\x68\x55\x28\x92\xa1\xc4\xc1\xed\xb6\x25\x1d\x33\x0b\x9d\xfc\x4a\x34\xb9\xa7\x66\x8b\x9e\x17\x1c\x73\x86\xcf\xab\x3f\xae\x90\x6f\x62\xe4\x5b\x95\x09\xdd\x3a\xe2\x9d\xf2\x1f\xce\x6b\x41\x61\xab\x03\xa6\x56\xf5\x6b\x76\x5b\x4a\x20\x7c\xb9\x4b\x0a\xa2\x9f\x0c\x20\x3c\x2e\x48\x43\xef\x37\x0a\x45\xb5\xea\xc6\x7f\x07\x16\xfc\x79\x5a\xdf\x62\x77\xca\x96\x90\x5d\xdd\xaa\x34\xbc\x94\x32\x8f\xeb\xf7\x87\x7f\x0f\x7b\xac\xdc\xd2\xe1\xa2\x66\xf1\xe8\xa3\x5b\xff\x91\x76\xe1\x5e\x46\x26\x9a\x3b\x45\xbe\x97\x44\x94\xbb\xba\x17\xc3\x2f\x09\xe2\xb5\x15\x17\x21\x92\x4b\xa4\x0d\x32\x2f\x20\x9d\x73\xad\xd9\xc3\x51\x8f\xd5\x92\xac\xdc\xae\xe2\xec\xb6\x5c\x5c\x5d\xea\xf2\xea\x9c\x14\xf0\xca\x6f\x32\x08\x76\xe9\xf8\xe2\x67\x98\xf3\x15\xee\xe8\x92\xd3\x3a\xfb\xd2\x41\x04\xd7\xd8\xcf\x45\xbe\x3d\xfa\x12\xf9\xbe\x87\xef\x3d\xb9\x41\xde\x4a\xf2\xdc\x5e\xf3\x66\xe2\x68\x5c\x7f\xbd\x95\x3e\x10\x33\x75\xba\x25\x3f\x90\x4d\xaf\x79\xfa\x99\x69\x90\xd0\x63\x23\x9b\xa0\xe9\x99\x73\x80\x5d\xd7\x9e\x5d\xce\xd1\x05\x17\xcb\xe1\xb2\x86\x31\xde\xfc\xa8\x3d\x59\x77\xa0\x54\xf5\x60\x9c\x4b\x98\xb6\x12\x3d\xa6\xfb\x3d\x2d\x55\x77\x80\x9a\x40\xd5\x2a\x2e\x37\x84\x15\x6e\x9f\x2e\x5c\xba\xd5\xc6\x2c\x0c\x5c\xdb\x2c\x6f\xd3\x58\xea\xbb\xd9\x81\xbd\x1d\x0e\x49\x2f\xa5\x8a\xdc\x00\x0b\xcd\x9d\xdb\xd6\xee\xd3\xe7\x2d\xcd\x8c\x3f\x1d\x03\x6c\x88\x6b\xa9\x9f\xc4\x9d\xa9\x0f\xaa\xd6\x5f\x01\x51\xf7\x01\x9f\xf6\xf6\x1f\x88\x73\x6c\x08\xaf\xc3\x0e\x3d\x66\xeb\x39\x24\x25\x07\x3c\x3d\x07\x45\xf7\xa3\xe7\x04\x38\xcb\x5c\xd7\x3d\x10\x30\xba\x02\xcd\x00\x00\x00\x00\x01\x00\x00\x20\x01\x22\x96\x29\x22\xf2\x7a\xa8\xfc\x0f\x00\x44\xb8\xff\xac\x02\x40\x37\xe8\x8c\xff\xf9\xce\x06\x34\x68\xbd\x8c\x7d\x2c\xc2\x4e\xc3\x05\x01\x20\x00\xf0\x00\xc8\xff\xba\x01\x6e\x10\x46\xfa\xc6\xfa\x3b\x52\xaf\x9e\xc9\xfe\xfe\x8e\x4b\xd3\x4a\xbe\x39\x75\x39\xb0\x11\xb9\x00\x6c\x18\x40\xe3\x3b\xac\xa1\x1b\x44\xf2\x32\x54\x1c\xa5\x34\xc1\xd0\xed\x85\xc6\xba\xe9\x74\xa5\xcd\x7a\xb3\xcd\x75\x8c\xaa\xd1\xf4\x13\xd1\x10\xe7\x54\xf3\x7f\x4c\xbd\xcd\x1e\x26\x60\x6b\xe9\x48\x18\xb1\x35\x88\x09\x48\x6f\xd2\xa5\x91\x9c\xa9\x33\x7f\x43\x0b\xbe\x16\xfa\xcb\xbf\x39\xd2\x17\x26\x86\x96\x52\x7f\xcd\x62\x3d\xc4\xde\x1c\x59\x97\xfa\x48\xe6\x34\x3c\x68\xdd\x13\xce\xae\x1d\x0c\xbd\x12\x5c\xc6\x1d\x3c\x90\x16\xbb\xbf\x32\xf9\xc2\x05\x59\xfc\xfd\xb0\x54\x94\xea\xb5\x80\x06\xa3\x16\x83\x65\x44\x84\x98\x93\x1c\xe1\x89\x4c\xfd\xf8\x80\x42\xfe\x4d\xed\xb4\xf3\x41\xaa\xdf\xf4\x5e\x98\xfe\x35\x97\xcf\x63\x00\x31\xc6\x9d\x75\xd4\x36\x99\x89\x2c\xd5\x05\x1e\x2f\x86\x70\x91\x88\xbc\x0e\x4e\x02\x5f\xb7\x8f\x6f\x04\x44\xa1\x5e\xfe\x01\x1b\x0f\x3d\x05\xbe\x27\xa3\x70\xd6\x11\xc4\x2e\x4b\x99\xc4\x0d\x9d\xcf\x62\xeb\xde\x55\x82\xc8\x1e\x31\xe9\x5e\x1b\x79\x1a\x75\xda\xf4\x65\xf0\x1a\x16\xa4\xe2\x8a\x9b\x54\x76\xe4\xbb\x43\xd9\x08\x91\xeb\xb6\xb9\x28\xc9\x16\x43\x11\xf1\x7d\xbe\x72\xa7\xd2\x2d\xfa\xe0\xf8\x37\xd4\x66\x3e\xd5\x8d\xca\x4c\xa0\xb3\x3b\xb8\x8f\x1b\xcc\x7a\xf8\xa5\x18\x8d\x8e\xeb\x67\x54\x6d\xef\x3c\xeb\x66\xc4\x71\x84\x10\x15\x0c\xcc\x1e\x1d\x10\xb5\xcb\x2e\x51\x7e\x6b\x36\xa2\xf9\x6b\x87\x7f\x5d\xf0\x1d\xfe\x59\xee\xa1\x3b\x82\x10\x54\xcb\x44\x3c\x3d\x6f\xea\xe5\x8b\xcd\xe9\x75\x56\x83\xc6\x9a\x56\x38\x2d\xe4\x43\xa6\x75\x3b\x71\xe4\xd8\x09\xc1\xa3\x3d\x2d\x00\xa7\xa5\xa2\x17\xf4\xcd\x2a\x0b\x5c\x07\x21\xc9\x3e\x0d\x53\x56\x6c\x5c\xf9\x97\x68\x79\x0f\xe6\x5e\xc5\x93\xe4\xaf\xd3\xe6\xef\x07\xcc\xc8\xc3\x33\xdb\xa0\x21\xce\x92\x5d\xa5\x98\x82\xb6\x26\x4c\x28\xe5\x61\xe1\x49\x30\xe5\x9f\x02\x30\x5d\x1b\x64\x1f\x2f\x76\xee\xbe\x89\x3a\x83\x51\x9d\xf8\xf2\xfd\x20\x6f\xb5\xa7\x9c\xe3\xae\xb6\x71\x6f\xa4\x70\x10\x19\x24\xed\x1a\x8a\x44\x90\xf5\xb0\x78\x53\x01\x47\xac\xaa\x21\xc6\x63\x79\x8d\xbe\x2c\x60\xdf\x1e\x48\x1d\x9b\x8f\x59\xba\xf9\x22\xb7\xcc\xb8\xa0\x1e\xe8\x74\xe9\xd0\xf8\xb7\x3a\x1e\x3d\xad\xaa\xbb\x98\x0c\x91\xcb\xa2\xb2\x63\xf6\xef\xf0\x91\x51\x16\xf0\x89\x2c\x0a\x84\xb1\x0c\x8e\xea\x73\xe6\xb6\x9c\xd0\x83\x8a\x7e\x01\xa3\xde\x99\x75\x9a\x4f\x5c\xdb\x0f\xbd\x3f\xb6\x1e\xa9\x62\x23\x2c\xca\x2b\x15\x93\xe3\xd9\xcc\x40\xb1\xd5\x41\x18\xd5\xa2\x64\x32\xe3\x10\xbb\xc5\x07\x24\x72\x0f\xa8\xeb\xcd\xb5\x32\x29\xf7\x58\x8c\xfc\xf9\x98\x85\x1b\x20\xa5\x57\xad\x5a\xaf\x55\x79\x52\x8f\x90\xb1\x67\x5a\x3b\xe9\x94\x48\x0b\xed\x92\x52\xf4\x8c\x49\xf3\xc8\x08\x91\xd6\x9f\xf2\xe8\xee\x05\xbb\x61\xa3\xea\x43\x84\x18\x34\x1f\x39\xf3\x5f\x6a\xdf\x11\x5c\x2c\x6b\x7e\xf8\x52\xe6\xd2\x69\x1a\x94\x6e\x79\x7e\x27\x67\x26\x4e\xe6\x0e\xb4\x3b\x30\xe4\xf2\xc8\x87\xc5\x3e\x7b\xff\x7b\x2f\x09\x74\xc0\x10\x94\x68\x07\xae\x1e\xb6\x42\x86\x6f\x14\x14\x58\x6e\x97\x9a\x39\xd0\xbd\xc1\x14\x30\xad\xdd\x75\xfa\x3e\x52\xfd\xda\x57\x89\x71\x5d\x6a\xef\x41\x31\x29\x5d\x60\xdb\xcc\xfb\x24\x59\xee\x36\xcc\x76\xc5\xc6\xe2\x2e\xd4\x74\x8c\x3b\x68\xf7\xe1\xee\x4c\x0b\xa6\xfd\x31\x67\xbb\xb8\xfc\x63\x86\x47\xa2\xf5\x0f\xb8\x0a\xbf\x65\xc7\x65\x2a\xd3\xcf\xdb\xa3\x5a\x6c\x46\xe1\x32\x0f\xb7\x74\x3f\x91\x85\xf0\x69\x57\xd2\x7a\xe0\x9a\xdb\x9f\x27\x83\x2b\x75\x1f\xab\xca\x57\xcd\x20\xc5\x92\x24\xc2\x7c\xd1\x3e\x3e\x66\x33\x58\x4a\xc7\x55\xca\xca\xcd\x77\x2e\x6e\x93\xc0\x67\xd7\xeb\x5b\x1a\x76\xf5\x76\x1d\x90\x43\x3d\x9c\x70\xdc\x1b\xfb\x43\x3e\x82\x74\x69\x4f\xc2\x0d\x59\x9e\x0c\x74\x17\x26\xd1\x13\x4e\x3e\xd2\x12\x95\x08\x3c\x5b\x9f\x4a\xe6\x56\x11\x1b\x62\x5f\xb3\x12\x65\xdf\x6a\x3f\xf8\x15\xb4\x14\xa7\x58\xfe\x21\xc8\xbf\x47\xa3\xa7\x08\xb3\xef\x4d\x49\xaa\xb4\xef\x0e\xca\x8e\x7e\xfc\xc9\x44\xb1\xc8\x55\xe9\x84\x72\x22\x40\xd8\x88\x29\xdd\x7d\x0d\x6f\x82\xa8\xb7\x47\x66\xfd\x8b\xd2\x52\x7e\x92\xe8\xb0\xfd\x6b\x4d\x28\xfe\x55\xb0\x4c\xd2\x45\x4d\x48\x37\x4a\xe9\xdf\x90\x05\x1f\x0b\x02\x45\x52\xd4\x40\xdb\x86\x24\x87\x53\x75\x1f\xaf\xb2\x26\x71\x8b\x39\x11\x9a\x48\xba\x49\xc4\x66\x8b\x49\xf2\x6b\xcb\x65\xad\xb9\x00\xc6\xca\x79\x62\x91\xe8\x05\xaf\xa3\x76\x02\xfd\x79\xe1\x04\x2a\x53\xb1\x54\xbc\xcc\xf4\xaf\x82\x6c\xa9\x83\x3d\xff\x90\x6b\x9e\xb2\x03\x84\x3b\x6a\xef\xe5\x7b\xf1\x80\xab\xb6\xd5\x07\xe4\x6c\x7d\x5f\xbe\x8e\x2d\x1b\xdb\x8d\x92\x47\x74\x4a\x0a\x91\x8f\x41\x4b\x6d\x58\x7b\x2a\x6c\x83\x86\xf3\x15\x91\x43\xb8\x4d\x36\xb9\xe1\xeb\x44\xfd\xef\xa5\x3d\x00\x35\x6f\x0b\x5e\xa1\x95\x72\x3a\xd1\xa6\x2a\x65\xef\x06\x15\x3d\x6e\x51\xb4\xdd\xd7\x5f\x02\xc1\xf6\x2b\x95\x46\x78\x61\x20\x3a\xb7\x6f\xd7\xa4\x12\xc7\xe6\x8c\x74\x55\x6d\x55\x3d\xae\xed\x1c\x74\x8f\x1b\x93\x8f\x6f\x8d\x39\x6a\x3a\x32\x79\x4d\xa3\x1a\x47\xe5\x1a\x4d\x69\x2f\x73\x18\x03\xb5\x90\x06\xd5\x0f\x63\x91\x22\xad\x0a\xdb\x21\xfe\xb9\x36\x35\x9e\xaf\x5f\x05\xce\x32\x1f\x49\x90\xed\xf2\xde\x14\xb8\xe8\xd5\x0b\x6b\x79\xb6\x2c\x54\xaf\x67\x59\x80\xa8\x06\x4c\x93\xb0\x21\x8c\x0b\x09\xdb\xe5\x06\xc2\x30\xe1\xaf\xf3\x46\x30\x7f\x75\xfd\xd3\xb2\x90\x95\x56\x4f\x36\x97\x9d\x37\xf2\xf1\xea\x79\x63\x8e\xf3\x62\x1b\x0e\xea\x8b\x50\x75\x8f\x8e\xa5\x82\x67\xb4\x6c\xdf\xe9\x9a\x12\x78\x62\x8a\x09\x17\xea\xde\x97\x72\xf0\x61\x72\x49\xec\x69\x81\x6f\xb6\xe3\xaf\xe8\x76\x4d\x06\xc1\x6b\xf7\xa2\xcf\x9c\xbb\x88\xe0\x2d\xd5\xf9\x80\x9a\x5b\xa4\x51\x1f\x75\xbf\x38\xd9\x54\x50\x86\x3f\xf5\x8c\xdb\x24\xe9\xfc\xba\x35\xe7\xe8\x50\x9a\x34\x33\xb0\xe3\x0b\xe2\x30\x8a\x52\xf1\xbf\x5a\x29\xde\xc7\x96\xab\x0d\x0f\x00\xf4\x36\xd9\xac\x7b\x3c\x6b\xae\x3f\xea\x58\xaf\x37\xdb\xac\x9b\x12\xac\x37\xcf\x82\x9a\x95\x4c\x61\x6e\x63\x61\x58\x70\xa4\xc5\xfe\xfd\x4a\x56\xdc\x54\x1c\x57\x3c\x56\xec\x99\xa5\x76\xc2\xdf\x24\x16\xc0\xec\x42\x17\xeb\x3f\x61\xee\x62\x51\xa8\x63\xbd\xf8\x73\xa1\x44\x08\xcd\x85\xf7\x84\xa5\xd0\x2f\x73\xe3\xe2\xe5\xf8\x2e\xfc\xee\xd8\xef\xd2\xef\x9d\x9f\xd8\x0a\x7c\x4e\x02\x51\xb8\x4b\xcb\x48\x0f\x4b\xdb\x8e\xf2\x3a\xa4\x6f\x64\x76\xa6\x7b\xa5\xe7\xe7\x36\x16\x5f\x94\xe4\x97\x76\x95\x39\x96\x99\x95\x31\x59\x90\x6b\x66\x2c\xa5\x36\x27\xb8\x24\xb9\xa4\xc6\xe4\x5a\x9d\xe8\x7a\x68\xbd\xda\x0e\x09\x0f\x59\x99\x2a\x1d\x89\x60\xfb\x37\x65\x3c\xc4\x55\x19\xa2\x9a\xda\x9a\xea\x1d\x80\x78\x2a\xda\xe0\xfe\xb9\x5e\x29\x01\x53\x5b\x52\x99\xf6\x9f\x8e\x99\x0e\x73\x8e\x7c\x71\x5a\xa1\x2f\xa1\x3d\xa1\xd5\x82\x39\x77\xff\xec\x1a\xc4\xcb\xb1\xab\x4c\x60\xa8\x0d\x8a\x51\x61\x48\x5b\x8d\x6a\x9d\x8a\x9e\xca\x9f\x8a\xad\x4a\xad\x8a\xae\x1a\xb5\x09\x0b\x6a\xf5\x29\xb5\x62\x35\x60\x79\x62\x4d\x27\xd7\xb2\x56\x68\x57\x6e\x94\xf2\x97\x7b\x95\xbe\x97\xe1\x57\xf0\x56\x79\x54\x10\x57\x0a\x96\x5b\x54\x4e\x5a\x31\x9d\x8b\xb7\x1f\x7a\x64\x74\x97\x92\x94\x0a\x59\xc0\x11\x78\x10\xa8\x12\x5c\xe1\x3b\x0f\x35\x15\xd7\x9f\x36\xa7\x1b\x5e\x99\x77\xdb\x48\x6b\x61\x6b\xf9\x68\x5e\x2e\x1d\x2e\x05\x2e\x0d\x73\xc6\x54\x2d\x71\xae\xbb\x60\xe4\x02\x38\xf5\xb9\x6b\x31\xb8\x11\xb2\x60\xe1\x73\xe1\x2b\x03\x04\xc8\x08\x94\x51\x93\xf3\xfa\x66\x54\x4e\x28\x2a\xfd\x0b\x6e\xf4\x9f\x9d\x90\xcb\x8a\x9d\x19\xca\x5d\xfe\x5d\x7e\xf2\x7a\x6e\x4e\x79\xfc\xf5\x7e\x7b\x3d\x47\x2e\x0f\x79\x70\xf1\xf7\x6e\xfd\x68\xa3\xb8\x58\x39\x79\x3e\x8b\xe2\x6b\xe1\xeb\xe9\x58\xeb\xa8\x6e\xef\x68\xb7\xf5\x7c\x07\x26\x03\xa7\xb7\x4a\x5d\x5b\x5d\x1b\x9e\xba\x6a\xb6\xb8\x66\x9e\xe6\xa6\x6f\x4b\x3e\xd8\x3e\x3c\xa1\xc2\xfc\xa8\x66\x78\x6b\x79\x6e\x78\xcc\x51\x19\x51\x59\x44\x17\x67\x56\x6b\xa9\x09\x91\x14\x90\x72\x62\x56\x28\x18\x28\x1a\x28\x68\x28\x48\x0a\xea\x4b\x85\xd6\x78\x3d\x98\x5f\x59\x4d\xc3\x92\x8d\x12\x8d\x70\xf6\x13\xdc\xc0\xcf\xb3\xe2\x2c\x75\xfc\xd2\xbf\x1f\xe5\x05\xe5\x17\x8b\x7f\x95\xb8\x94\xa0\x9f\x5a\x7b\x38\x17\x5b\xa4\xc4\x3d\x98\xc1\x9a\x3d\x1d\x33\xb7\x0d\xb5\x65\xbb\xff\xea\x36\xfb\x74\x34\x30\xdf\x75\x99\xd5\x25\xd4\xed\xd4\x2c\x4f\x11\x4c\xc5\x51\x2b\x57\x59\xd0\x6b\xdf\x81\x50\xad\x26\x05\x00\xf4\x6d\xd6\x9b\xf3\xd7\x9a\x03\x1a\xaa\x04\xf6\x57\xb7\xd6\xfe\x8b\xcf\xf5\x5f\x17\x42\x05\x3d\x36\xcc\x04\xff\xf0\x09\xf0\x24\xf6\x0d\x94\x88\x12\x67\x93\x58\xa3\x9b\x95\xeb\xe9\x1b\xbd\x1a\x21\xcf\xc5\xcf\x5d\xce\x6d\xb5\x5c\xd7\x65\xd7\x75\x3c\xa9\xde\xf4\xf9\xfe\xe9\x59\x7c\x9d\x9e\x9c\xb7\x9e\xb3\xf3\x0d\xf3\xa2\xb6\xbf\xb6\x3f\xb6\x7f\xb6\x2b\x3e\x79\x2a\x68\xa1\x5e\xf1\x5c\x30\xec\x4f\xba\xc7\xbe\xad\xbd\xc2\xbc\x6e\x74\x1f\x7e\xb2\xfa\x2c\x7e\xb1\xe8\x23\x67\x21\xbb\xa0\x12\x23\x23\xa3\x5e\x22\x71\xc1\x81\x77\x43\xe3\xb1\xe3\xb5\x0f\x4c\x80\x3d\x01\x90\xb9\x18\xe6\x88\x95\x7e\xdf\x7e\xa6\x21\x60\x07\x56\xcc\x42\xce\x02\x67\xc5\x93\x62\xa6\xa2\xa3\xa3\x6d\xa2\x36\xa3\xba\x62\x5a\xa2\x15\x64\xbf\x4b\x5d\xc8\x73\x4a\x57\xcb\xfa\xc8\x3e\xc8\x0f\xfe\x3d\x57\x1a\x56\x8a\x9d\x7f\x99\x5b\x9c\x4b\xbf\x3f\xb9\x5f\xbb\xbf\xbd\xdf\x8f\xe2\x60\x63\x01\xb3\xad\x93\xae\x73\x54\x4c\x27\xac\x96\xad\x96\xf1\xb0\xba\x62\xd1\x06\x47\x89\x0f\x91\xbf\xc5\xb7\x98\xd3\x36\xb2\x95\x4b\x9a\xdc\x93\x2d\xa1\x8b\xd5\x0d\xae\x58\x74\x62\x55\x0f\x6b\x78\x51\xf8\x90\x7c\xc9\x34\x92\xdd\x83\x0c\xf7\x98\x56\x33\x37\xa4\x74\x0b\x23\x14\x6d\x7e\xd0\x71\x64\xac\xc9\x6e\x16\x9d\xcf\x5e\x5a\x08\x93\x14\xe7\xb0\x31\xa4\x7d\x87\x4a\x5f\xb6\xd6\xc2\xae\xa5\xef\x48\xf9\x18\xe3\xd8\x7f\xdf\xd0\xbc\xfa\x71\x7d\xac\x76\xd7\xf1\x72\x2d\x2a\x00\x81\x10\x19\x0c\x36\x24\xb3\x2f\x76\xfb\xe3\xc5\xa0\x92\x60\x29\x1d\x4d\xd9\xd3\xa8\xf8\x4a\xdb\x92\x80\x79\xa7\xed\xde\x31\xf7\x2b\x3e\xb9\xc1\xd2\xb5\xa9\x87\x57\x7b\xb1\x42\x66\xb1\x46\x53\x8f\xa1\xa4\x6b\xe9\xb3\xdf\xa1\x16\xc2\x1a\xf1\x4d\x8c\x02\x49\x8c\x30\x26\xc4\x71\xd7\xc3\x0d\x4d\x37\x44\x61\xd7\x37\x60\x07\x02\x90\x80\x06\x00\xec\xac\xff\x6f\x2a\xcd\x97\x96\x1d\xaa\x6d\x5b\xff\x35\x3c\x8f\xf8\xc2\x60\x59\xfd\x44\x73\x11\xcc\x61\x3c\xfc\x14\xf5\x51\xd0\xf4\x39\x56\x10\xa7\x02\x43\x77\x28\xa2\x60\x12\xfb\xac\x6b\xbf\x55\x42\x68\xf5\xea\xda\x7d\xcf\x82\x16\x6b\x45\xfb\x17\x22\xb9\xab\xf2\xfc\xdd\x47\xd2\xfe\x0f\x7e\x12\x6a\xb2\x18\xf2\x1f\x58\x76\x80\x9c\x30\x0a\xab\xb9\xc0\x5a\xf4\x54\x7e\x87\x3c\xcf\x71\x3e\x78\xe5\x25\x62\x7f\xc7\xa9\x15\x50\xed\x47\xb0\x2b\xef\x06\x07\xf4\x23\xb2\xbe\xf1\xe8\x24\xd1\x03\xa1\x52\x1c\x92\x97\x50\xb8\x52\xd8\x4a\x7f\x4f\x08\x32\xa6\x18\x94\x42\x9e\x0b\xb8\x27\x37\x1a\xe1\xcf\x1f\xd1\xac\xcf\xd1\xa6\x8c\x1d\x55\xe3\x4a\x59\x9f\x12\xb8\xda\x72\xd2\xeb\xf0\xed\xa2\xd4\xe5\xac\x09\x52\x1b\xb7\xda\x7f\x00\x53\xbb\xc5\x70\x6d\xaf\x9f\x10\x3d\x32\x7a\x2a\x74\x5d\xfb\xf0\x0b\x65\xeb\xf5\xd6\x1c\x2c\x83\xf9\x9e\xa1\xde\xa5\x7d\x40\x7a\x27\xb6\xf7\xa8\x6f\x6a\x1f\xc7\x9f\x4f\xa4\xba\x71\x8c\x3f\xd0\x94\xe1\xf0\xa1\x75\x02\x0c\xfa\xa2\x48\x91\x52\x60\xd6\x03\x13\xfb\x26\x77\x4c\x6e\x38\xa2\x30\x8b\x11\x11\x83\x92\xfb\xa9\x0d\x5a\xec\xc4\xb9\x29\x90\x06\x0e\x77\xa7\x6e\xd8\x27\x25\xb0\x74\x64\x9e\xe6\xc0\xf7\x64\x1f\x13\x86\x75\xec\xf4\x24\x74\xc3\xf8\xb5\x28\xd6\x68\x99\xfd\xda\xcd\x71\x36\xa6\x92\xab\xce\x8f\x09\x1f\x07\xb7\x6e\xbc\xc0\x58\xb5\x1d\x64\x37\x82\xad\xd8\xd8\x7d\x70\xeb\x4e\xc5\x8b\xae\x0f\x70\xfb\x98\x44\x02\x29\x5e\xf4\x00\x8d\x4a\x1c\x79\xf6\xf7\x3d\xfa\x3e\x88\x9f\x0c\xf4\xbb\x4e\xa9\x38\xa1\xcd\x98\x56\x43\xa6\x39\xc1\xfb\x00\x97\x47\x92\xf5\x45\xf5\x53\x25\x5c\x99\x5a\x45\x4a\x45\x71\x52\x19\x95\x43\x5c\x4e\x31\x75\xd1\xe8\x41\x65\x78\xf6\xd4\x09\x42\x47\x9a\x6b\x56\xe7\x9e\x59\x40\xae\xc3\x23\x6f\xab\x14\xf5\x6c\xfc\xb5\xee\xd3\x72\x2f\xcd\x89\x3a\xa7\x4c\x1f\x3f\x4d\xde\x34\x2e\xdd\x98\xdc\x34\xef\xc5\x02\x73\x05\xa9\xd9\xaf\x4a\x9f\x60\x05\xa5\x39\x96\xc8\x2c\x8f\xc3\xa5\x68\xd3\x12\x75\x6d\xfc\xb1\xd9\xdb\x5a\x6f\xfd\x8b\xa8\x0f\x2a\x77\x93\x19\x00\xe8\x5d\xfd\x3f\x23\xb6\x59\x97\x32\x2a\x41\x6d\xf8\xcf\xdf\x67\x47\x2c\x81\x6f\x80\x39\x29\xb1\x14\xcc\x9c\xbf\x35\x29\xc9\x0f\x98\x31\x7f\xcb\x5c\xe8\x13\xe8\x5f\xfe\x1a\xfa\x58\x71\xfa\x34\xdc\x70\xf2\x01\x91\x3b\xd4\x6e\x70\x82\x1e\xb3\x9d\xc6\xba\x9c\x35\x69\x6a\x03\x56\x87\x44\x0f\x53\x1e\x4f\x5d\xc7\x5b\x9e\xb8\xc8\xc5\x7e\x78\xfa\x28\xea\x80\x14\xbf\x26\x7d\x8a\x15\x04\x97\x80\xae\x1d\x52\x6e\x04\xf9\x80\x86\x1d\xf2\x56\x04\xc8\x93\x81\x2a\x3b\xa6\x31\x3f\x87\x5c\xc8\x52\x48\x4b\x3f\xcd\x5c\x14\x73\x00\xbe\xbf\x69\x2e\x56\x58\xc1\xe5\x09\x65\x7b\xb8\x6e\xc1\x36\x37\xfa\x54\x00\x78\x87\xbc\x15\xf2\x5f\x90\xd6\xae\xa0\x1b\x21\x30\x74\xd9\x20\xf2\x69\x0f\xfc\x4c\xf6\x19\xe5\x9b\x88\x4b\x89\x35\x2a\x36\x16\x0f\x53\x88\x89\x27\x3a\x14\x47\x6b\x8c\xa2\x21\xc9\x0e\x9f\x38\x70\xc0\xea\xfe\xbb\x7b\x4e\x8a\x1d\x5b\x4e\x0c\x3c\xe3\xd0\x88\x6f\xf3\xcb\x73\x06\xdd\x09\x5b\x47\x82\x6a\x53\x5a\x61\x7e\xfd\x9e\x21\x12\x64\x58\x27\x4e\x8f\x48\xd7\x5f\x5e\x67\x5a\x09\x4b\x30\x78\x54\xcb\x21\xdb\xb0\x79\x41\xdf\x31\xbe\x05\xfe\xc1\x0f\xa1\x30\xd0\x70\x03\xd9\x89\x54\x33\xcc\x77\x23\xe2\x45\xa8\xd7\xcb\x65\x97\x73\x7d\x50\xf2\xa2\xf3\xa9\x2b\x8e\x89\x27\x0e\xaf\x28\xd3\x88\xe1\x0d\xc2\x65\x51\xb0\x46\xeb\x5e\xa1\x65\x8c\x5c\x66\x4d\x88\xa2\x61\x1b\x11\xad\x8f\xb0\x26\xef\x18\x35\x70\x08\xd1\x26\xaf\xdb\xa0\x8f\x1d\x3b\xbf\x2b\x88\x28\x9a\x2b\xf5\x2a\x0f\xb0\x2c\x6c\x2f\x35\xb0\x0c\xd1\xcc\xaf\x45\xa8\x18\x38\xeb\xf4\x28\x15\x3c\x57\xe7\x8d\x66\x2c\x26\x38\x91\xf7\x88\x03\xe6\xa7\x5a\x94\x07\xbe\xe6\x76\x97\x5e\x9f\x3d\x51\x67\x48\x1b\xd7\xa7\x19\x16\x87\x58\x18\x78\xa4\xb3\x98\x02\x57\xf5\xbd\x1a\x96\xb3\xb8\x5a\x26\xb5\x08\x06\xa9\x1b\x78\xac\x69\xb5\x86\x81\xcd\x0a\x97\xae\x38\x03\x54\xf6\x78\xda\xc4\x6a\xfd\x2a\xf6\xc8\xda\x04\xcb\x03\xc8\xf6\x98\x1b\x84\x2d\xfd\x22\x66\x9b\xba\xae\x5b\x3a\x4f\x88\xcf\x98\xef\xf3\x9f\xd3\xc2\x40\xe1\x1e\x3f\x64\x42\xe4\x0d\x54\x2f\xa4\x21\xb8\x62\x84\x23\xf8\x14\x44\x4e\xb8\x29\xf8\x2b\x54\x09\x78\x15\x84\x45\x84\x26\xf8\x87\xb0\xd6\x5d\x26\xf3\xf5\xad\xa2\xff\xbe\x95\xbe\xa1\x03\x6a\x01\xd8\x00\x5b\x00\x34\x00\x12\xf0\x07\xa0\x0f\x70\x05\x00\x00\x9b\x88\xa9\x00\x28\x00\x84\x1b\x04\xfd\x50\x11\x84\xa8\x22\x20\x64\xf6\x7a\x94\xa3\x92\x14\x99\x56\xca\x10\x92\x9a\x74\x3b\x44\x56\x84\x92\x0d\x40\xb0\x53\x0f\x5f\x8f\xf9\x9a\xe3\xe4\xc7\xaa\xc5\x9a\xc0\x0f\x70\x9c\xc1\xc4\x9f\x78\xf8\x3e\x2d\x3a\x8d\x5b\xbf\xe0\xc8\xab\xed\x2c\x76\x50\xad\xa5\x29\x2d\xe3\x1a\x95\x18\x4f\xfc\x83\x8a\xae\x4b\x8a\x41\xe3\x9c\xca\x63\x54\x91\x89\x4d\x0e\xe8\x11\x9c\x86\xe2\xb6\x2c\x81\x5d\x5e\x07\xfa\x83\xfb\x49\x4c\x75\xd2\xd5\xb4\xe8\x11\xdf\xde\xb1\xcb\x2a\xd8\x90\x42\xc4\xe0\xfd\x46\x8c\x82\xa6\x1a\xbe\x6e\xdb\xd6\xcb\x7a\x98\x1a\x10\x15\x94\x84\x20\x16\x8b\xa2\xf3\xc8\xbc\xa1\x5f\x44\x19\x15\xc6\xbc\xc1\x42\x96\x1b\xbc\x1b\x15\xff\x7d\xa0\xc3\x53\xe5\xec\x67\x7e\x92\xea\x0c\x1a\xfa\xdc\x1e\x51\x24\x53\x55\x82\xa9\x5b\x3f\x6b\xbc\x0b\xa3\x8d\x38\x77\xa8\x4f\xe7\xd1\x55\x9d\x52\xc3\xeb\x06\x77\xa3\xad\x09\xe3\x68\x1c\xa6\xf3\x6c\x7e\xc1\x61\x98\xd8\x23\x77\x1f\xcf\xbc\x3b\x15\xd5\x50\x81\x2a\x28\x29\x2a\xbc\xfd\x4b\x41\x2c\x15\xdb\x9b\xd3\x94\x87\x68\x3f\xc6\x48\xbb\xe4\xc7\x3c\x3b\xff\xe1\x8f\x1b\xb8\x70\xdc\x7d\x45\x66\x90\x7e\xf8\x71\x62\x11\x47\x4b\x86\x10\x7c\x6d\x54\x1b\x69\xd1\x9f\x8d\x08\x24\x85\x0f\xda\x0e\x8f\xea\x1f\xc9\x6f\xf1\x51\x7e\x61\xf0\x45\x47\xb6\xa5\xe9\x3f\x3c\xf3\x34\xff\x92\x7f\x74\xd0\x12\x43\xb4\x67\xf8\x0e\x70\x9a\xca\xc5\xd0\x26\x27\xd1\x0e\x37\x16\xbd\x9b\x5b\xec\x4e\xea\x37\xd5\x7e\xa7\x6c\xc4\x9b\x34\x48\x69\x74\x3f\x88\x41\xac\x76\x3b\x12\x7b\x25\xfa\x0e\x46\xf5\xa3\x71\x53\x05\xb8\x41\x58\xf7\x05\x3a\x8b\x41\x00\x00\xbd\xe7\x35\x9b\x7a\xff\x39\x8e\x11\x2f\x49\x4d\xac\xe6\xf5\xc2\x57\xdf\x84\xcb\x48\x6b\x02\x32\xe2\xca\x85\x73\x35\xab\x78\x1f\xf0\xd9\x2d\xe7\x2a\x25\x2a\x38\x2f\x79\x83\x78\x9d\x4f\x97\x0a\xd4\x72\x7c\xa0\x60\x90\xf1\x38\x0d\x17\xd2\xec\x31\xa9\xe5\xd2\x39\x8d\x96\xb2\xdc\x11\xb1\x19\x34\x9a\x0d\x17\x33\x9c\x09\x38\x6d\x56\x9b\x8d\x96\x81\xde\xb0\x28\x44\x3c\x2e\x7b\x0b\xe9\x8e\x38\x8c\x3a\x6d\x2e\xfb\x4b\xd9\x9e\xa8\xc4\x02\xee\x8f\x7b\x8b\x99\xae\x24\x82\xde\x2f\x8f\xfb\xcb\x39\xbe\xe8\x8a\x2c\xf6\xf0\xd2\xb4\x16\x78\x12\x26\x01\x3b\x64\x0c\xb8\x00\x80\xdf\xc9\xc4\x13\xc5\x7a\xb3\xfb\x90\xf5\xfa\x52\xb9\xea\x0b\xfe\x6a\xb3\xd5\xa6\x27\xc7\x42\xbd\x1c\x89\xeb\xc2\xec\x2f\xb6\x02\x7a\x56\xb1\x44\xdf\xd2\xe2\x4c\x54\x41\x8b\xa2\x1c\x98\x2f\x87\x7e\x3e\x23\xfa\xdb\x49\x1c\x21\xd9\xd9\x3e\x82\x6c\xfe\xf9\x91\x6f\xa8\x95\x2c\xa3\x91\x5f\x2b\x0f\x3d\x10\x30\x0e\x7d\x45\x22\x30\x0d\x13\x11\x64\x13\x78\x96\x69\xbb\xbf\x70\x2d\xbe\x7b\x66\x39\x8e\xa0\x0f\x67\xd5\x4d\x97\xcd\x0e\xe1\x5a\x65\xdd\x52\xa7\x99\x27\x8c\x16\xa7\x59\x66\x9c\x9a\xa6\x59\xa4\xac\x1e\xa5\x8d\xb7\xba\x1f\x69\xe9\xe7\x49\x60\x6b\x19\x96\x99\xa4\x68\xf5\xd5\x26\xf7\x7c\xeb\x0b\x8c\x87\x02\x00\x00\xb5\xe3\x52\xb6\xeb\x9c\x96\xeb\xcd\x38\xb6\x86\x03\xc5\x0c\xeb\x2e\x17\x6b\x0d\xd7\xbd\x79\x14\xc3\xf2\x59\xbc\x8e\x57\xfd\x45\x74\xcb\xff\x36\xda\x1d\xaf\xfb\x0a\x68\xa6\x75\x3b\x3d\xc0\x57\x03\x25\x4c\xdb\x3e\xef\xaf\x60\x26\xd2\x1f\x94\xf4\xe4\x3f\xa9\x19\xc9\x68\xa9\x18\x28\xe8\x68\x6a\x72\x4b\x0b\x2b\xf3\xcb\x8b\xab\xf3\xca\x8a\xaa\x0a\x2a\x4a\x6c\xf5\xcd\x8d\xad\x0d\x2d\x4d\xff\x19\x58\x34\x51\xc3\x11\xa3\x51\x40\xf8\x01\xfc\xe4\x80\x3e\xcd\x36\x0b\xff\x91\xc9\xba\xa6\x64\xb7\x93\xf8\x61\xa0\xdb\x59\xfa\xb1\xae\xdb\x69\xf2\xf2\x96\xdb\x79\xf6\x93\xe0\xf3\x49\xe2\x74\xf7\xf3\x59\xe6\xb5\xcf\xf3\x69\xea\xf6\xe7\xf3\x79\xce\x57\x02\xa5\x4c\xfc\x4f\xb9\x76\xa4\xf4\x7a\xe3\xf1\x78\x3a\x85\x6e\xc8\xe0\x88\xef\x74\x8a\xe5\xb2\x6d\x08\xc9\xe5\xca\x15\x8a\x15\xf2\x5d\x30\xd1\x19\xec\x56\xb3\xe5\x72\x1d\x28\xd9\xed\x4e\xe7\xb3\x15\x4c\x08\x05\x52\xbe\x49\xbf\x34\xd8\x09\xc2\xf6\x7e\x84\xa7\xb4\x92\x44\xdf\x82\xf4\x8d\x25\xac\x16\x7e\xe9\x28\x13\xb0\x5a\x83\x4a\x59\xf6\xa9\x65\x87\x64\x94\x8a\x27\xd3\x38\x70\xf4\xf6\x3d\xbd\x22\xc5\x0b\x41\x6f\xcf\x78\x16\xb7\xd4\x82\x43\x25\xa5\xcc\xb6\x7d\xf9\x54\xe3\xaa\x95\x9a\x0d\xff\xfe\xd7\x90\xdf\x2b\xff\xaf\x8e\x6c\xa1\x7f\x53\x80\x5d\x05\x00\x00\x12\xd7\xae\xbe\xc6\xeb\xcd\x36\x31\x09\x36\x1d\xee\x73\x9e\x88\xc6\x46\x21\xec\xa2\xbc\x92\x48\xa5\xbe\xef\xe7\x42\x5f\x04\xc6\xb5\x64\x21\xf8\xa6\xad\xe8\xbf\xf0\x4d\x1a\x59\x86\xf0\xcd\x3a\xe1\xa9\x33\x8c\xeb\x69\x8b\x33\x4c\xdb\xf1\x4c\x33\x4c\x9a\x79\x8e\x32\xcc\xba\xa1\xb1\x35\x8d\xeb\xa8\x52\x34\x4d\xdb\xb0\x54\x35\x4d\x9a\x38\x2e\xb4\xac\x88\x6a\x96\xd6\xf5\x29\x60\xb3\xec\xfb\xc9\xbc\xef\xd7\x41\x00\x1c\x24\x87\x31\x1e\x2e\x6d\x87\x41\x0e\x31\x7e\xbb\x71\x22\x49\x24\xf0\x04\x85\x42\xd4\xcd\x14\x6e\x41\x14\xdb\xe8\x37\x25\x4e\xb6\x49\x7a\xb6\x09\x96\x69\x72\x44\xfa\xba\x09\x04\xab\xca\xfa\x29\x6a\x02\xeb\x86\x41\x94\x0e\x2f\x3b\xeb\xc8\xaa\xe6\xd5\x7f\xa1\xd9\x5e\xb7\x36\xa9\x9b\x8f\x2b\xe3\x0a\x7e\x7a\x01\x3b\x7d\x61\xfe\x00\x00\x60\x45\x4f\xb5\xc2\x66\xbd\xb9\xc9\xd5\xd3\x9a\xfc\xff\x31\x4b\x12\xaf\xc0\x9c\x80\xfc\x84\xfa\x88\xf2\x8c\xf6\x90\xe2\x94\xe6\x98\x6a\x60\xb7\x7f\x5e\x7c\x5d\x78\x59\x7a\x5b\x70\x51\x72\x53\x74\x55\x76\x57\x60\x41\x62\x43\x64\x45\x66\x47\x68\x49\x6a\xcb\x74\x0e\xa9\x5b\x6f\x0c\x3d\x00\x00\x78\xd4\x43\xe9\x6e\xee\x6a\xb2\xb1\xb2\x5c\x77\xe1\x2b\xb7\xa1\x01\xba\x5f\x05\xa7\xea\x42\xb7\xf4\x65\x2f\x6f\x7d\x8b\x27\x3d\xab\x72\xdd\x7a\xdb\x29\x50\x10\x7c\xdb\xab\xb0\xed\x7e\xdb\x2d\xd1\xf3\x79\xdb\xaf\xf1\xfd\x94\x89\xfb\x21\xed\x80\x96\x40\xae\x92\x71\x4f\x8a\x0d\x32\x19\x49\xa2\xd2\x8a\xd1\x76\xbf\xc3\xfa\xa1\x5c\xa8\x1e\xfe\xd7\x64\x4c\xa5\x54\xb9\x48\x33\x5a\xd3\xf9\x8c\xc3\x7c\x81\xb2\x50\x23\x52\xd5\x66\xcd\xf9\x64\xa1\x48\x2b\x56\xd7\xfb\x15\x19\x97\xdd\x78\x25\x4c\xd1\x68\x48\x2e\x8d\xdd\x64\x2d\x4a\xc3\xf1\x88\x41\xbd\xd1\x78\x35\x42\xc5\x6a\xc9\x66\xe5\x3b\x36\x3a\x16\x66\x8b\xc9\x7a\x8c\x8e\xe7\x23\x11\xb7\xd3\xc1\x4a\xb8\x92\xd9\x94\x4e\xab\xd3\xe1\x5a\xb4\x96\xeb\x95\x00\xfa\x37\x54\x38\x74\x00\x00\xd0\x7b\x96\xf2\x7f\xe8\xdd\x2d\x60\xdd\xe3\x2f\x24\x12\x00\x8d\x46\xae\x9c\x66\x87\x4e\x2e\x11\x8e\x4d\xa1\x9a\xe5\x06\x8f\x41\x25\x9d\x42\xae\x92\xe1\x84\xc7\x6a\x32\x9a\x42\xa1\x06\xf4\x82\x46\xc0\xa2\x55\xcd\x57\x4e\x77\xc0\xfa\xa9\x52\xa6\x5a\xa0\x9a\xed\x81\x8c\xcf\x61\xb1\x94\xaf\x92\xe9\x42\xf4\xff\xa1\x9e\x7c\xd2\xc0\x01\x31\x44\x21\x00\x00\x3f\xef\x8b\xb5\xe9\x91\xff\x73\xc9\xb0\x02\x4f\xba\x0a\xbd\xdf\x8f\xdb\xfa\xbe\x3f\x4c\xfb\x42\x40\x42\xc3\x63\xff\xff\xa1\xdc\x1e\xb8\x80\x48\x28\x80\x28\x00\x20\x8c\xa3\x5d\xd2\xf6\x95\xe2\x03\x1d\x38\x6b\x3c\x64\xd8\xb4\x4a\x24\x9f\xba\xbe\xff\xf0\x02\xad\x98\x80\xe5\x6c\xce\x3b\x2a\x96\xac\xc3\x07\xe7\x45\xd3\x3b\x59\xe1\xa3\xaa\xaa\x68\x8b\xf3\xc7\x35\x75\x5b\x3a\x0d\x6a\x1e\x51\x16\x25\x6e\xed\xa8\x26\xce\x3e\xd5\xb9\x8d\x8c\xeb\x4b\xda\xfd\xc9\xc3\x91\xed\x6e\xe6\x17\x4a\x05\xd1\x2f\xc3\x4d\xc3\x11\x5c\xc5\xf1\x48\x18\x43\x67\x77\x95\xd9\xe3\xbb\x15\x71\xd0\x0e\xa9\xb9\xe5\xa0\x05\x33\x64\xa0\x62\x4c\xa0\xf4\xd9\x96\x03\x52\x44\xa4\x17\x43\x7d\xce\x78\x3b\x6a\x63\x57\x87\x6b\xe1\x5f\xab\x1e\x83\x9b\xa9\x47\x6c\xd9\x20\x26\xeb\x55\x2e\xc4\x99\x47\xf7\x5a\x56\x1e\x1d\x7a\x8b\xf4\xe1\x22\x27\xdb\xb7\x8b\x9e\xa3\x8d\xdc\x7d\xdb\x64\x1e\x3b\xcd\xd9\x20\x74\xcc\xa2\x3d\x06\xe1\x9d\x28\x14\xf8\x05\x1e\x37\xd4\xb3\x6f\x3a\x30\x0f\x86\x2c\x03\x27\x30\x5e\x05\x79\xaf\xb9\x67\xfe\x0b\x6c\x78\xa8\x7b\x7d\x09\x6e\x52\x85\xbd\xce\xd8\xc6\x81\x78\x49\xb4\xde\x1e\x5b\x6a\x46\xa9\x23\xf6\x71\xbe\x69\x22\x13\x89\xee\x82\x52\x18\xd3\xc5\x6d\x06\x6b\xa8\xe1\xe6\xee\x49\x47\xfb\x2e\xca\x8a\xe4\x62\x7a\x4f\x62\x15\x27\xf4\xe1\xe9\x65\x2b\x05\x78\x5b\xd9\xf5\xdc\xcb\x30\xd8\xbd\x7f\x90\x7a\x55\x11\xc4\xf0\x5e\xdf\x6c\x9d\x4a\x7f\x8b\x08\x1d\x13\xa4\xaf\x7c\xd2\x93\xd5\xd9\x39\xd8\x83\xc1\xb6\x51\xf4\xd6\x17\x84\xf7\x4c\x26\x9c\x2e\x28\xf2\x8c\xff\x88\x75\x05\xcf\xe2\x29\x30\xd9\x10\x09\xf8\x60\x71\xb8\x50\x99\x0e\x53\x41\xfd\x43\x53\x7d\xa3\x83\x93\x03\xe3\x92\x2f\x1c\xff\x89\x99\x7f\xc3\xc6\x4d\xd7\x50\x5f\x5d\xe1\xe1\x6e\x6b\x75\x77\x7b\x31\xff\xa7\x30\x41\x5f\x49\x98\xa5\xbd\xc1\xdf\xe9\x95\x24\x04\xf9\x9f\x68\x3a\x02\x58\x1a\x92\xc3\xa9\xde\x91\xfe\x31\xb1\x2e\x55\x7d\x63\x03\x13\xa3\xe3\xdc\x97\x8e\x5a\x07\x3b\x87\xdb\x99\x8d\x44\x8d\x95\xd3\xaf\x43\xc4\x85\xeb\x86\xd6\xaf\x4a\x32\x66\x96\x86\xda\xfa\x3a\xc7\xff\x54\x73\x73\x77\x0b\xb6\x45\xea\x29\x46\xc3\x25\xff\x6f\x12\x3e\x58\x1a\x9c\x27\x2e\x19\x15\x67\x3f\xe6\xef\x20\x3b\x33\x9c\x2c\xf8\x95\x82\x94\x35\x30\xe6\x92\xe4\x9b\xa3\xcf\xa8\x5e\xbd\x9a\x9e\x7f\x2b\x52\x50\x79\xed\x5b\xa1\x88\xb0\x5b\x00\xee\xe2\xd7\x11\xbb\xfe\x16\x93\xd5\xf4\x2b\x1b\x4a\xc6\x6a\xcc\x9d\xc4\x37\xdf\x26\x70\xde\x77\x1f\x9a\x61\xff\x4f\x37\x7e\xd4\x97\x66\x18\x99\x63\x07\x91\x26\x14\xe2\x93\x0c\xd5\xb5\xec\xc6\x20\x2e\xbc\xa3\xbc\x2c\x4e\x4c\xd0\x6d\x3a\x2e\xa5\xe5\xab\xa3\xf1\x8f\xb2\x79\x13\xb4\x6f\x5c\x6d\xb4\x36\x67\x12\x29\xbb\x82\x88\xa0\xd2\x56\x81\x0f\x57\xd7\x2f\xac\x16\x72\xa5\xfb\x75\x2b\x2d\x67\x19\x32\x9e\xeb\xad\xb1\xb7\xdf\x57\x87\x63\x37\xc5\x9a\x61\x7f\x17\x9b\x24\x0a\x85\x0a\x1a\x9b\xd3\x85\x32\xf1\xa6\x4c\x31\xf7\x1a\x3f\x08\xcd\x4e\x43\xbd\x88\x6c\x36\xf7\x44\xe0\x0f\x1f\x75\x28\x1b\x4a\xb5\xb7\xa9\x6f\xf7\xaf\x1a\x8e\xaa\xb2\xe7\x73\x78\x3d\x22\x6c\x06\x86\x95\xbd\xff\x3d\xf9\x3f\xdc\xd5\x4c\x0d\xfe\x1b\x27\x38\x52\x4a\xc1\xfe\x49\x3f\xcc\x76\x94\x2d\xa6\x0f\x29\x0b\x41\x92\x06\xe1\xb8\xc3\x57\x0b\x88\xf1\x33\xda\xf9\xc6\x0d\x3d\xe5\x07\x68\x05\x30\xfa\xd3\xed\xe0\xc3\xf9\x93\xf4\x2a\xec\xe0\xdc\x10\x3c\x1b\xcd\x70\xdd\x2a\x6b\x98\x97\x25\xa4\x9d\xa6\x4c\x01\xb1\x79\x8b\xd9\x7f\x59\x6f\x17\x9b\xc0\x48\xa7\xc2\xbd\x39\xbc\x84\x79\x17\xff\x45\x93\xeb\xaa\xb5\xa7\xa0\x0b\xfe\x21\xdb\xe6\x9c\x0c\x2f\x47\x39\xe7\x83\xee\x47\xd4\x34\x13\x80\x47\xd5\x1b\xc1\x9b\x1f\x65\xde\x6c\x20\x26\xc3\x9c\xc7\xd5\x17\x80\x91\x4f\x3f\x09\xee\x21\xb7\x32\x73\x68\x60\xf7\x58\xe7\x22\x4f\x25\xf7\x4e\x82\x1c\x72\x79\xb8\xfe\xa5\x90\x2e\x8b\x81\x87\xc5\xea\xa1\x33\xca\x0b\x2b\xed\xa5\x75\xff\x2c\xee\xf8\x22\x42\x39\x38\x2e\x6e\x3c\xce\x3d\xcf\x39\x59\xb8\x90\x38\x29\x2e\x24\x37\x94\x20\xd7\xf6\x0b\x32\xea\x24\x6b\x1f\x39\x4a\x75\xc5\xcd\x02\x38\xfc\xba\x1a\x47\x62\x3c\x2b\xb5\x20\x76\x2c\x32\xcd\x9d\x3f\x73\x12\xd9\xd4\x2e\xd5\xb6\xb2\x71\xa2\x68\x46\x6c\x66\x45\xf5\x25\x77\xa7\xa6\x2a\xde\xf7\xf3\x49\x56\xaa\x98\x16\xa9\xb3\x8c\x4d\x65\x37\x32\xbf\xee\x2f\xbc\xb9\xf6\xb9\x64\x1e\x31\x91\x6d\x6a\x64\xcc\x4a\x78\x75\x68\x8d\x57\x35\x80\x68\xba\xd4\xe1\x1b\xbb\xc7\xe9\xdf\x36\x97\x63\x84\x5a\xbe\xba\x96\x5c\x02\x8d\x55\x75\x62\x14\xfe\xbd\xbc\x3b\x61\x73\x13\x2e\x98\x6a\x05\x4e\xc3\x99\x5b\x03\x0a\xce\x93\x67\x2e\x0b\x7f\x99\xf9\x70\xd7\xfc\xf3\xc4\x43\x5c\x27\x2f\xf3\x28\xe4\x76\xc7\xa3\x61\x87\xed\xd8\x59\x3f\xee\x8b\xc9\xd5\xe4\x0b\x86\xd5\xdc\xb7\x6c\x0b\x75\x8d\x55\x8d\x34\x9c\x81\x78\x98\xab\x00\xfe\xd4\xdc\x06\xbf\xe3\xbf\x62\x55\x09\xb1\x18\x17\xf4\x2e\x57\xae\xb1\x69\xaf\x5f\x95\x1b\x7c\x47\x28\x9b\x75\xfe\x8e\x86\x67\xbb\x94\x30\x5d\x98\xdd\x4c\x65\x97\x62\xe4\x18\x81\x43\xe1\xac\xab\x52\x0b\x03\x3c\x03\x2f\xc8\x53\x39\xb7\x60\x02\x9f\x4f\xa4\x63\x2e\xa9\x83\x5f\xd6\xf3\xda\xce\x15\x97\x3f\x5d\xa0\x10\x38\xa1\xb3\x01\x7d\xc5\x30\x1f\xfa\x2a\xe5\xae\xd4\x74\xcb\xe1\x3f\x22\x7d\xc6\x24\xa7\xa8\xac\xcd\x6a\xbd\x47\x6d\xcc\x36\x1e\xa9\xac\xcd\x7a\xb1\xe4\x0f\x61\x36\xe9\x52\xea\xbc\x6a\x0a\x0b\x76\xd5\xf6\xb8\xf2\x25\xf9\xc5\xcb\x84\x62\x3d\xc4\x37\x38\x91\x86\xa6\x38\xe8\xb1\x84\xc3\xd6\x52\x4a\x6d\xa4\x76\x53\x72\x31\xc9\x37\xe6\x72\xf1\xce\xe8\xe6\xe8\x1f\x1a\x48\x96\x44\x99\x5e\x46\x90\x4f\x89\x7e\xf4\x5d\x29\x60\x0f\x41\x25\xfa\xb2\xbd\x8c\x8e\x4d\x91\x50\xee\xae\xe6\x82\x87\xb7\x82\xcd\x3c\x71\xf8\x49\x5c\x55\x40\x52\x2a\x71\x34\xe4\x7a\x22\xf2\xe9\x51\x9e\xb1\xd8\xe7\x38\x74\x4e\x3a\x9b\x80\xa8\x85\x87\x09\x1a\xac\xd1\xd7\x6f\x07\xcb\x40\xe7\x50\x6c\xe7\x80\xda\xe7\xb9\x0a\x9f\x7f\xe9\x64\x19\x61\xe8\x7a\x78\xb3\xe5\xa7\x0a\xf9\xcf\xbf\xa8\xc3\xfd\x50\x72\xf0\xc0\xe9\x2c\xbe\xd3\x2b\x32\x3d\xa6\xb9\x1d\xfa\xc7\xd8\x17\x1b\x86\x5f\x1b\xf9\x3e\x57\x13\xaf\x1b\xc8\x69\x31\x7e\xa7\x70\x8f\x50\xc8\xea\xb9\x22\x3a\x7a\x23\x4e\x41\xb2\x92\xad\xd7\x92\xea\x42\x4f\xeb\x57\x97\x8a\xb6\x83\x90\xf8\x74\xd8\xa5\x55\x86\x06\xfd\x8d\x0d\x9f\x11\xd9\x0b\xea\x16\x66\x94\x2e\x67\xc5\xaa\x57\x2f\x1b\x31\xb6\x97\x9d\xf5\x55\xc9\x9c\x0e\x1d\x27\xa5\xb5\x7c\xdb\xd3\x13\x59\xee\x32\x72\x8b\x48\x5b\x37\x31\x11\x0d\xdb\x4f\xd3\xf9\xc1\x7b\xf4\x1c\x7f\x34\xf5\x7f\x97\xb9\xf6\x2b\xb0\xcb\x57\x24\x38\x2b\xa8\x1f\xda\x60\xb6\xcf\x30\xd6\x79\xdc\x5d\x97\x47\x57\x55\x69\x51\x76\x51\x5c\x20\xd9\xc6\x35\x8e\xb1\xe2\xdb\xb5\x40\x9d\x3f\x6a\x6d\x41\x9f\x6e\x50\xcd\x8f\x69\x91\x54\xd5\x67\xe8\xd4\xfd\xd6\xbb\x0c\x5e\xe9\x29\xd7\xc9\xa1\xf3\xbc\x98\x7c\x10\xfa\x5d\x93\x3e\x17\x67\x92\xa9\x89\xcf\xa0\xde\xc2\x57\x9c\x49\x16\xa0\xc9\x56\x60\x54\x89\x5d\xa3\x01\x35\x00\xba\xfe\xe0\xfa\x74\xfd\x88\x96\x84\x15\x23\xb3\xf9\xca\xe7\x38\x37\x1f\x9e\xf7\x6d\x4b\x13\xb2\xf1\x10\xfc\xa4\x63\x81\x5a\x2c\x63\x5e\xd7\x2d\xa4\x2c\xbb\x97\x21\x82\x85\x21\x5b\xdf\x80\x5f\xba\xc5\xc8\xdc\x92\x6a\xea\x7a\xd4\xfb\x33\xaf\x6e\x4e\x38\x14\x6c\x37\x2a\xba\x1f\x8b\x4f\xf8\x03\x11\xb9\xaa\xd3\x9d\xbe\x59\xeb\x76\xaf\xd1\xcb\x5e\xb5\xdd\x78\x7f\xc7\x21\x99\x58\x3b\x72\x8e\x8a\x0d\x36\x31\xf9\x82\x21\xed\x4c\xad\xf1\x4f\x34\x5f\xff\x10\x3a\x98\x7b\xef\x27\x4a\x7a\xc2\x7d\x37\xc8\x63\x73\x9c\xef\x32\x28\xb3\x9f\xff\x13\x8d\x37\xab\x73\x25\x09\x36\xbe\x9e\xbe\xed\xb0\x6b\xbf\x2b\xa9\xa4\xe8\xc0\x42\xda\xd5\x22\xcf\x37\x2a\x04\xc4\x72\x8b\x79\xcb\x76\x8b\x78\x4b\xc7\x7d\x6f\xce\x4f\xf6\xca\x2e\x44\x1a\x13\x66\xb4\x47\xb3\xc7\xb5\x17\xc4\x4d\xf5\x0a\xc2\xe3\xc6\x47\x0b\x05\xa1\xdf\x52\xc4\xdf\x47\xc3\x82\x2c\xdf\xa3\x4f\x02\x49\x60\x41\x64\xf6\xb2\x85\x1f\x39\x21\x20\x96\xba\x8c\x2f\xd9\x77\xd1\xf7\xdf\x59\x68\xde\xc7\x25\x16\xcf\x53\x50\x37\x98\x24\xe3\xa8\x30\x97\x39\x2a\xf0\x6b\xa8\xc9\x07\xef\x43\x43\x34\xfa\x0c\x5c\x1e\xbe\xc4\x92\xe5\xba\x97\xcf\x2c\xbf\x41\x9a\xde\x72\x5f\x3d\xd0\x1d\xcd\xd8\xf4\x21\x79\x80\x34\x1b\x81\x10\x49\x94\xe8\x64\xeb\x2f\x06\x7a\x2f\x39\xf6\xe3\xe2\x5f\xd2\x8a\x61\x59\xf7\x46\x78\xe0\x1e\xf7\xe5\x49\xcc\x62\xd0\xfb\x7e\x5b\x8a\x8e\x54\xd2\xb5\xf8\x8b\xdc\x84\xd7\x73\xc8\xa5\x11\xa2\xe7\xf1\xce\x11\xbc\x99\xa1\xe9\x2e\xbc\x9a\xa1\xa9\xc1\xe1\x60\x26\xaa\x9e\x0b\xe7\x7f\xe0\x01\xb4\xc3\x51\xd5\xed\x7c\xb9\x39\x1c\xfe\x1f\x32\x30\x81\xa0\x89\xfe\xb1\x48\x2e\x21\x4e\xf9\x8c\xf5\x42\xc2\xa3\x7e\xfc\xb7\xcd\xff\xe8\x3a\xd3\x96\xd7\xf3\x9d\x91\xd1\xf1\xce\xc1\xde\x11\xbc\xe4\xff\x9d\xc3\xc7\xfa\xe2\xbf\x10\xd9\x95\x9d\xa0\xaf\xec\x74\x03\xef\x8e\xc7\x46\x67\x07\x26\x46\x66\xd2\x68\x87\xa7\x07\x27\xe3\xd8\x0a\x7a\xbd\xd4\xfd\x8f\x13\x41\x7c\x2c\x0d\xb5\x77\x7b\x93\xa1\x4c\x42\xff\xc3\x16\xf0\x86\xd2\xf4\x7f\x3b\x3f\x9e\x3f\x29\x54\xa0\x17\xf4\x5c\x69\x36\xc9\xb7\xe1\xa8\xca\x57\xdb\x7d\x57\x15\xf4\x1a\xe0\xe1\x1e\x00\xdf\x20\xaf\x8b\xb9\x5b\x13\xc7\xdc\x68\x65\xed\x2a\xf5\x0f\xa9\xb6\xb9\xf7\xd7\x38\x06\x35\xd4\x39\xda\x83\x8f\x30\x63\x40\x84\xc0\xc9\x7d\x3c\xe6\xea\x87\xf4\x62\xe5\x95\x4f\x48\xf9\xf6\x4d\x10\xc0\x0d\xc2\xe8\x66\xab\xcf\x8e\xfc\x87\x21\x05\x85\x91\xde\x01\xcc\x50\x36\x21\x12\x21\xd2\x28\x34\x01\xde\x4a\x56\x33\x6b\x2b\xc1\x78\x03\xb3\xb9\xff\x0a\x8a\x76\x77\x94\x2a\xa1\x25\x21\xf9\x05\x3d\xe1\x1f\x08\x21\x18\x1c\x4e\x28\x4e\x0d\xd5\x5a\x40\xea\xbc\xee\x2e\x4c\x37\x54\x16\xac\x3a\x11\xae\x3a\x2e\xb7\x3f\xb9\x97\xbc\x27\x1e\x2e\x2e\xa1\x1f\xda\xcf\xfe\x89\x9d\x7a\xc5\xe0\x3a\x0a\x66\xc3\x40\x31\x49\xd0\xaf\xa3\xef\xa9\xd1\x96\xa4\x5b\x8c\x31\x30\x30\xbf\xb0\x43\x63\x0e\xe2\xe0\xe2\x12\xa4\x48\x01\xe9\x36\x03\x79\x7d\x64\x43\x53\xfd\x05\x4d\x81\xb7\xbe\xe7\x30\x29\x5b\xd1\xb2\xc2\x97\x95\xb4\x8c\x80\xe0\x2a\xda\x10\x00\x00\xf0\x7f\x05\x00\x00\xff\xff\xd1\x91\x8a\x14\x60\xfc\x00\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.woff", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff2 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x12\x40\xed\xbf\x77\x4f\x46\x32\x00\x01\x00\x00\x00\x00\xc8\x0c\x00\x10\x00\x00\x00\x01\xc0\x40\x00\x00\xc7\xac\x00\x02\x00\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\x40\x1c\x84\x48\x06\x60\x00\x90\x6a\x08\x81\x1c\x09\x97\x17\x11\x08\x0a\x85\xce\x3c\x85\x84\x09\x01\x36\x02\x24\x03\xa0\x22\x0b\x90\x24\x00\x04\x20\x05\x86\x1e\x07\xc7\x51\x0c\x81\x2e\x5b\xce\x91\x91\x01\xad\x0d\x3d\xc9\x0c\xe8\xa1\xed\xdb\xaa\x9e\x19\xc6\x7f\xb3\x1d\x60\x63\xd3\x68\xee\xf5\x66\x45\x4c\x46\xa2\x5f\xac\xc1\x9b\x2e\x2d\xb9\x6d\x04\xd6\xdd\x0d\xf6\x5e\x94\xfd\xff\xff\xff\xff\x9a\x64\x21\x63\xfb\x7b\xc6\xfd\x7e\x63\x03\x42\x50\x21\x49\x49\xab\x4a\x68\x4a\x8c\xe6\x14\xd2\x24\xe5\xd8\xb1\x78\x82\x9c\x6a\xef\x30\x8c\x06\x4e\x19\xbb\x5e\x62\x35\x8e\xf6\x46\x77\x33\x26\x82\x29\x93\x7e\x0a\x34\xab\x3d\x83\x26\xd3\xdc\xc9\x46\x8b\x7e\xd6\xa9\x2e\x6c\x7c\xe9\x70\x64\xe6\x85\x38\x8e\x67\xbf\x3a\x98\xc4\xe2\x5e\x56\x97\x94\xb7\xed\xfd\x96\xd3\x70\x3d\xa3\xf9\x50\x47\x99\x28\xe5\x12\x23\xe1\x2d\x4f\x13\x85\x3b\x50\x37\x24\x12\x49\xa8\xf2\x21\x55\xf7\x30\xa5\x62\x31\x34\xe5\x4e\x88\x54\x49\xa0\x44\x33\x31\x2b\x66\xea\x83\x68\x98\x99\xe2\x51\xba\xcf\x2c\x1b\x3c\x73\x7c\x95\x12\xaf\xf8\xa5\xc6\xaa\x1a\xd5\xad\x01\xf5\xbb\x7a\x93\x22\x43\x85\xda\xbb\xc4\x49\x6e\xf2\xd2\xbf\x55\x52\xa5\xfe\x63\x2a\x77\xf5\x54\x8f\x87\xf2\x7c\xc7\x15\xce\x01\xd7\x76\x2c\x60\x01\x2d\x7c\x29\xe8\x83\x3c\xdb\xe3\xea\xfd\x79\xc4\x1d\x2c\x0a\x65\xc5\x43\xfa\x8e\x48\xa1\x4c\xca\x6a\x47\xc0\x0c\xa7\x26\x26\x9d\xc6\xd6\xcd\x38\x33\xe8\x8e\x1f\xc8\xdf\x6f\x32\xd0\x92\x1f\xc3\x63\x93\x59\x2c\xbd\xe4\x77\x96\xbd\x35\xde\x60\x57\x39\x2c\xf6\x3a\x8d\x45\xba\x16\xff\xe9\x03\xb5\xff\x16\x5b\xdb\x1e\x20\x1e\xdb\x41\x09\xd5\x64\xc8\x9e\x2b\xf2\x98\xe6\x23\xcf\x3f\x6f\xf7\xd1\xaf\x7d\xbb\xba\xde\x40\x7c\x3d\x36\xb2\x09\xc1\x10\x0a\x32\x19\x1f\x60\xd5\xd9\x5a\x23\xf7\xf6\x19\xa9\x44\x32\x2a\x26\x0f\xb2\x68\x3b\xbe\xd3\x24\x7b\x93\x02\x80\x90\x9d\xfa\x3a\xfc\x79\x7e\x6e\x7f\xee\x5b\xb0\xd1\x16\x35\x1c\x73\x4a\xa6\x30\xf6\x95\x91\x22\x21\x7c\x06\x12\x35\x98\x32\xb2\x6c\xd2\x1c\x06\xca\x00\xb3\x71\x66\x13\xf5\xd0\x26\x07\x6d\x6d\xa4\x15\xfb\xc9\xbf\x72\x5e\xd2\xcd\x04\xe5\x41\xdc\x3d\x48\x83\x08\xa5\xbb\xc3\x74\x55\xca\x73\xe4\xbf\xc6\x20\xc2\x00\x6c\x53\x30\x30\x66\x93\x21\x21\x88\x81\xa0\x20\x16\xb4\x4a\x08\x22\x29\x02\x22\x60\xf7\x74\x6e\x3a\x17\xae\x74\xe1\x22\x5d\xba\x70\x9b\xcb\xfc\xa2\xbe\x7c\xed\x9b\xd3\x2f\xea\xcb\xef\xb1\x6f\xf4\x3c\x6e\xb0\x77\x63\x03\x2c\xcd\x18\x2d\x2d\x59\x54\xbf\xf9\xad\x81\x3f\xb9\x9d\x24\x05\x02\xb6\x28\x1c\xb3\xa5\x94\x4f\xb8\x2a\xf4\xf4\x7c\xab\x80\xff\xbf\xb5\xca\xd6\x66\x71\x79\x3b\x5b\x6a\x98\x7b\x99\x26\x48\xb5\xeb\x72\x54\x4e\xa0\x72\x88\x33\xe2\x98\x00\x58\x5c\xcb\xd6\xaa\x03\xa4\x27\x80\x48\xb1\x59\x01\x68\xc4\xa0\x90\xc1\x1d\x3b\xa6\x9a\xa2\x09\x42\xd4\x49\x51\xa8\x72\x15\x42\xb9\x57\x71\x2e\x9d\xda\xa5\x3d\x0b\x45\x40\x39\x10\x00\x30\x00\x73\xab\x61\xa2\x87\x45\xb4\xd4\x46\x2d\x58\x44\xb3\x35\xac\x18\x1b\x1b\xb1\x41\x8f\xde\x06\x8c\x88\x12\x5a\x4a\x05\x03\x05\xac\xc0\x8a\xbb\xd3\x8b\xd6\x3e\xff\xbc\xf0\xfe\xdf\x8b\x9c\xb8\xe6\x8d\x07\x68\x55\x40\x43\xfa\xca\x5c\xd5\xd0\xba\x9a\x0b\x39\x41\x5c\xc1\xa1\x7e\xfe\x2c\x57\x80\x40\x08\x14\x80\x00\xfc\x43\x87\xec\x5f\xf7\xde\xbf\xc6\xf2\x6d\x59\xa0\x9b\xe3\xc4\x12\x0d\x2c\xa2\x30\x0b\x24\xc3\xf6\xbc\x39\xad\x97\xec\x90\xed\x24\x96\x64\xcb\x84\x92\x4c\x01\x2c\xa0\x06\x70\x09\xbb\x1f\x88\xae\x7c\xbb\xb7\x2f\x9b\xe9\xfd\xf8\xe1\xff\x99\xad\xd7\xca\x94\x62\x44\x2e\xff\x45\x8c\x89\xd9\xc4\x58\x8b\x0a\x44\x61\xbf\x14\x75\x8a\x7a\xba\xea\x30\x71\xf8\x7f\x4d\xfb\xdd\xf3\x9a\x9d\xcc\xe4\x97\x56\x69\x7d\x87\xd8\x5a\x62\x0d\xfe\xff\xa7\xcd\xba\xf7\xbe\xf0\x25\x01\x76\xae\x92\x03\x85\x9d\x71\xea\x14\x09\x13\xcc\x14\x56\xa7\xc0\x11\x45\x07\x59\x1d\x66\xe5\xa3\x53\xac\x37\xb3\x9c\xff\xb3\xb3\xff\xdf\x75\x33\x65\x00\xf5\x57\xb5\xd7\xb9\x04\x3b\xa8\x29\x02\xee\x06\x5e\x4f\xc0\x03\xb8\x53\xdc\xa5\x20\xf8\x1d\x19\xf3\x4c\x33\xe0\x79\xd2\x59\xf5\x7e\xb1\x64\x94\x81\xd4\x6c\x6e\x44\x83\x06\x7b\x66\x75\x44\x75\x08\x21\x60\x90\x6e\x16\x1d\x04\xc9\x42\x81\x6b\x55\x57\xb2\x44\xd9\x23\x1c\xc0\x1c\x91\x7c\xdf\xc2\x99\x5f\xc6\x56\x35\x7b\x03\xe4\x70\x72\xc6\x69\x5f\xf9\x91\x71\x95\xae\xaa\x4a\x06\x50\x1a\xa9\x19\xce\x18\xfb\xda\xb8\xc7\xd7\x7f\xa5\x12\x2d\xd1\xd0\x1e\x1a\xc6\xc4\x1c\xb3\x0b\x52\x7e\xa4\xbb\x9f\xf4\x1d\x6b\x77\x7b\x9d\xf1\x34\xa0\xe2\xf6\x0e\x25\x0c\x92\xf0\xf7\x6b\x0d\x2a\x94\x26\x3e\x9d\xe9\x84\x84\xb7\x4c\x26\x8b\xed\x9e\xf9\xfa\xb9\xfe\x5d\x7f\x72\x92\xf0\x8b\x7b\xc9\xd7\x76\xf7\x97\x66\x7e\x74\x29\x1d\x25\x80\x19\x0f\x08\x55\x4f\x02\x04\x08\xe4\x40\x00\x41\x0c\xd8\xf7\xdb\x9a\x4e\x0e\x84\x04\xa1\x75\xf5\x7d\xf2\x05\xb1\x76\x77\xe8\x5c\x53\xdd\x36\xcb\x30\x45\xb8\x87\xa3\x45\xca\x81\xba\x85\x1e\x5a\xa4\xc4\xb6\x4e\xab\xa4\x84\xc0\x10\x98\xf7\xae\xa9\xff\xa2\x7c\xfe\xf6\xd4\x3b\xc4\x1b\x7c\x0b\x38\x32\x30\xb3\x7b\xff\x53\x95\xfa\x5b\x77\xef\xc9\x1a\x1d\x6b\xc0\x00\x96\xc0\x42\xe6\xd3\x3f\x2b\xf9\x91\x2e\x53\xca\x92\x95\xb1\xd5\xed\xa4\x6b\xa3\x94\x2d\x54\xc6\xaa\x8e\x31\x60\x11\x2d\x04\x6d\x25\x90\xc1\xfc\xeb\x34\xd7\xff\x15\x52\xae\x64\xa7\xe4\xbb\xa2\x37\xdf\x4d\x85\x61\xe1\xb7\xf7\x75\x58\xbb\x0c\x92\x6c\xf7\x59\x0a\xc9\x0e\xdb\x85\x20\x58\x87\x52\x09\x70\x98\x70\xec\x7b\x52\x50\xb2\xd3\x57\xc9\x49\xf3\x64\x97\xbe\x8a\x76\x51\x3a\x74\xae\x84\x34\xdd\xb0\x15\xb6\xae\x93\x7d\x53\x01\x87\x71\xa3\x99\xff\xbe\x54\xad\x6b\x37\x40\x50\xe4\x44\x7a\x42\x8a\x9a\xc3\x8d\x69\x73\x3e\x5d\xf8\xdf\x0f\x8d\xee\xdf\xc1\x8d\x06\xc0\x6d\x04\x4a\x24\x48\x8d\x00\x92\xb2\x01\x06\x0d\x29\x99\xee\x6e\x34\x35\xe8\x06\xe4\x02\x21\xd9\x45\x52\x1b\x28\x7b\x76\x4a\xf2\x26\x4e\x0c\x20\x28\xd9\x12\x65\x59\x61\x43\xca\xa7\x10\x1d\x36\x84\x74\xda\xd3\x69\x6f\x7b\xdd\xe3\x6d\x6b\xce\xc7\xbd\x5f\x17\x5e\x9f\x93\xf4\x37\xb3\x59\xc1\x34\x95\xe5\x95\x60\x3c\x97\x81\x4c\xce\xf8\xae\xa6\x29\xf5\xcd\x4a\x2e\x5d\x6e\x17\xea\x7a\xe9\x00\x1b\x1a\x9a\x41\xe9\x74\x6e\xbf\x5a\x17\xb9\xdc\xd8\x67\xfd\xa6\xf5\x73\xab\x29\x4a\x80\xc2\x7e\x82\x7e\x8c\x02\x70\x00\x0a\x6b\x3c\xfd\xda\xf3\xcb\xe2\x1e\x0d\xba\xd1\xd0\xc2\x93\x37\x17\x04\x37\x4e\xfc\x26\xa5\x0b\xcf\xd3\x5a\xaa\x5f\xc2\x46\xa6\x65\x79\xc2\x95\xa5\xcf\xdf\xde\x84\xe6\x15\x67\xcb\xc2\x1c\xb9\x12\xed\x94\x36\x61\x59\x67\x51\xc8\xfa\xe5\xde\x66\x19\xb2\xd7\x8c\x40\x48\x84\xdf\xc4\xba\x9f\x72\xa5\x14\xe1\x28\xcd\x95\xa6\xf6\x50\x2f\x4b\x35\x12\x63\x90\x68\x81\x8d\x29\x76\xa7\xf5\x97\xef\x00\x02\x81\x14\xb3\x64\x18\x9b\x8e\xf5\x7b\xa9\x8b\x54\x90\x4c\x1f\x85\x05\x6e\xd8\x20\xd4\x1f\x1b\xb2\xf0\x38\xdf\xb4\x4f\xfe\xed\xce\xc3\x04\x93\x99\x60\x8c\x7a\x5c\x5e\xf0\x82\x10\xfb\xaf\xef\xf6\xf5\xf5\x7d\xe2\xcc\x7e\xef\x6c\x45\x23\x4d\x21\x8d\x88\x48\x90\x10\x82\x04\x11\xf1\x6d\x1f\x7f\x6f\x10\x37\xfb\x5f\x2a\xf0\x86\x6c\x3b\x85\xbb\x1b\x45\x6a\x4e\x53\x4f\x1a\x6f\xe1\x8b\x6e\xe6\xca\xc9\x62\x19\x0e\xc2\xe4\x98\x24\x5b\x4a\x7a\xef\x5a\xc8\x66\x3d\x3d\x31\xfe\xdc\x03\xde\x16\xa8\x38\x96\xec\xce\x1c\x3d\x3f\xb7\x8d\xc1\xfb\x45\x63\x10\xbb\xd9\x3b\x57\x38\x0b\x58\x14\x4d\xaa\x9f\xcb\x57\xa1\x2c\x40\x0b\x25\x34\xf1\x50\x0a\xf0\x18\x28\xeb\xb3\x01\xca\x26\x3c\x06\xca\x9e\xec\x85\xd2\x8e\x1a\xf4\xb5\xce\x7c\xaa\x99\x41\xbb\xed\xa1\xcc\x03\x50\x24\x72\x94\xfc\xee\xb5\xb9\xf4\xfc\xa2\x1a\x00\x85\x3b\xa3\x17\xae\xff\xe5\xa7\xf2\x79\x00\x19\x36\x86\x21\x50\x18\x1c\x81\x44\xa1\x31\x58\x1c\x9e\x40\xf4\x40\x22\x53\xa8\x34\x3a\x83\xc9\x62\xa3\x17\x8f\x6f\xaf\x6b\x73\x5f\xfe\x9f\x80\xc2\x91\x68\x2c\x9e\x48\xa6\xd2\x99\x6c\x2e\x5f\x28\x96\xca\x95\x6a\xad\xde\x68\xb6\xda\x1d\x8c\xd1\xa7\x2e\x10\xc2\xc3\x00\x5f\x20\x14\x4b\xa4\x32\x00\x10\x04\x86\xc0\xe0\x08\x24\x0a\x9d\x61\x71\x78\x02\x91\x44\xa6\x50\x69\x74\x06\x93\xc5\xe6\x70\x79\x7c\x33\xa1\x48\x2c\x91\xca\xe4\x0a\x65\x7b\x7f\xd5\x5e\x7b\xe3\xad\x9c\x5a\x86\x61\xb2\x34\x60\x03\xbb\x8a\xa4\xa3\x64\x60\xb7\x53\x86\xca\x3e\x7f\xe4\x29\x87\x3c\x6f\x8c\x1c\x5b\xcc\x4a\x6f\x6d\xe3\xb4\x18\xc2\xc6\x6b\x59\x2e\xb4\xdc\x96\xe7\x41\x2b\x84\x88\x47\xad\xbd\xed\xf5\x78\x66\x12\xe3\xd2\x8b\xd0\x3d\x6b\xc7\x91\xb8\xd9\x3b\x66\x6d\x83\xac\x5c\x9f\xc3\xcc\x87\x56\x37\x58\xc4\xf4\x03\xac\x16\x89\x71\x2c\xb0\x0a\xe0\xa2\xab\xeb\xea\xf7\xbc\xfa\xfb\xc6\x0d\x6f\x40\x44\x69\xa6\x9f\x40\xf7\x1e\x18\xc0\x75\xdb\x9c\x31\x94\x1e\xc4\x99\x59\x17\xaf\x70\x66\xd7\x9f\x54\x1c\xcd\x42\xc4\xde\x9d\xa8\x29\x37\x21\xbb\x06\x34\x69\xb2\xd4\xd9\xe0\x88\x0b\x2e\x7a\xa8\xd1\x33\xef\x4c\xfa\x87\xd4\xd0\x2c\x14\x34\xf1\x74\x89\x49\x42\x36\x64\x63\xf6\xe4\x68\xc4\x99\x22\x6f\xcb\x2f\xee\x32\xb7\x7b\xad\xa9\x5d\x6e\x0f\xdb\xc7\xd0\x39\x30\x49\x66\xa9\x99\xea\xa7\xce\x69\x5b\xda\x91\xf6\xa4\xa3\x49\x9c\x6e\xa7\x96\xab\xe3\x7a\x79\xbd\xdd\xfa\xb4\xa4\x07\x2b\x88\x23\x9d\x7c\xca\xd9\xb1\x3b\xf7\xd0\xfe\x9a\x40\x6d\xa0\x73\xda\x41\xfa\xf8\xe4\x7f\x17\xef\x71\xdf\x70\x7f\xf0\x73\x69\xd4\xae\xb8\x57\x47\xb5\xa1\x93\xba\xa8\x2b\xba\xad\x5e\x53\x49\x73\x43\xd6\x95\x8d\x5c\x6d\xbd\xda\x79\xed\xbb\xa0\x71\xee\xe4\x45\x2e\xf2\x45\xfe\xfd\xc2\x8b\x69\xcc\xfa\xcc\x46\x45\x50\x24\x45\x57\xbc\x2e\x1c\x85\x9b\x5f\xb9\x9d\x1b\xbf\xef\xef\xed\xcd\x72\x4a\x3b\x3b\x03\x26\x3c\x7a\xe9\xea\x78\xe4\xa6\x0f\x7c\xeb\x2d\x40\x8e\x17\x91\xd9\x62\x20\x46\x62\x2d\xdc\x11\x3b\x04\x03\xfb\x11\xb9\xb4\xfa\xbf\x86\x80\x8d\xb0\xab\x00\x00\x4b\xa5\x2b\x52\x65\x3a\x9e\x2e\xa7\x3b\xa9\xf5\x7a\x31\x30\x0e\x88\x06\xb4\xa2\x27\x01\xc4\x93\x41\x01\x5b\xf8\x6c\x77\xed\xe1\xfd\x2d\xbd\xb4\x61\x3b\x40\x7f\x27\xff\xbc\x58\x7f\xf1\x01\xf7\x7d\x10\x06\x60\xdc\x32\x37\x9b\x34\x07\x6b\x6e\xb2\x73\xb8\x69\xd3\xa3\x79\xdf\xd9\x64\xc3\x3c\x17\xfc\xcb\x4a\x2d\x62\x1d\x5a\xb6\x8a\x7f\x04\x35\x4c\x5c\xa7\x71\xe7\x21\x82\xac\x13\x64\xcd\x20\xab\x06\x59\x39\xc8\x8a\x41\x16\x0f\xb2\xd4\xcc\x1b\xc2\xf8\x3d\xfe\x26\x26\xc0\x18\x9f\x2b\xc2\xe1\x93\xe1\xe4\x70\x63\xb8\xbc\x8d\x77\x6e\x98\x1a\x46\x87\x66\x50\x09\xe5\x01\x0c\x0a\xe0\xca\xeb\xff\xbf\xff\xff\x6f\xf0\xff\x1b\x6b\x58\x07\x8f\x3b\x0f\x83\x71\x37\x5d\x71\x34\xd6\x0b\xf8\xc5\x7e\x5f\x41\x53\xcf\xfe\x5c\x3a\x1a\xf8\xf9\x62\x14\x4d\x1c\x85\xe0\xc7\x03\xdf\xd4\x6f\xca\x37\xf1\x07\x78\x68\x62\x24\x63\x62\x93\xa1\x84\xa2\x1e\xff\x03\x30\xf8\x0a\x5c\x73\xf9\x8f\xcb\x1e\x97\x3c\x2e\x78\xb4\x78\x30\xf7\x31\xf5\xd1\xcc\xfe\xed\x03\xcd\x8f\x9a\x1e\x55\x3f\xaa\x78\xe4\x78\x24\x79\x14\xf3\x88\xf1\xeb\xc5\xc0\x1b\x2c\x7e\x9d\x88\x22\xd7\x0d\x8e\xf0\x5a\xdc\xfd\x1b\xd8\x0f\x20\x02\xd0\xc1\x11\x63\x07\xb6\x89\x38\xb3\x55\x09\x6f\xed\x79\x0c\xa8\xba\xd6\x5e\x37\xe0\xdb\xf6\xa2\x83\x5c\x06\xf2\x1d\xe8\x6d\xa0\x77\x83\xa3\xfa\xb5\xe1\xd6\x35\x51\x65\xfd\xeb\xfd\x0a\x20\x3b\xc4\xa7\x97\x2a\xb5\x46\xab\xab\x8d\xbf\xbd\xbc\x7d\x7c\xfd\xfc\x0b\xdd\x01\x43\xc2\xd2\x6f\x05\xc5\xfa\x93\xd4\x1a\x2d\x5a\xb5\xa1\xd4\xf0\x79\xc3\x86\x8f\x18\x39\x4a\xb9\xf1\xb4\x31\x63\xc7\x8d\xb7\xa5\xb1\x2b\x6a\xda\xfb\x66\xe6\x16\xfb\x17\x14\x16\x6d\xf9\xff\x25\xa5\x65\xe5\x15\x95\x2a\x6f\x65\x7d\x78\xd5\x6a\xd5\x6b\xd4\xac\xb5\x8d\xed\xbc\x3a\x75\xeb\xd5\x6f\xb0\x9d\x7d\x5f\x46\x4e\xff\x5f\xf6\xda\xad\xbb\x5f\x85\xbe\xa9\x7e\x56\x95\xa8\xea\xb2\xdb\x75\xec\x34\x91\xf4\x64\xf2\x53\x0d\x8d\x53\xa8\xff\xec\xd5\x7b\xda\x7f\xfa\x4e\xff\x5f\xff\x67\xc8\x25\x00\x06\xa1\x03\xb3\xd1\x45\x44\xaf\x3a\x92\xdb\xe3\xc5\xab\x37\xef\x3e\x70\x69\xa7\x6f\x5c\xd9\x81\xeb\xea\x6b\xa8\xb1\xa6\x9a\x6b\xb1\xbb\x2b\xb5\x91\x81\x75\x93\x5f\xb7\xf8\x43\x42\x41\xf7\x63\x2f\x7b\x65\x2f\x0d\x5c\x77\x85\x76\x4f\x18\x62\xf7\x45\xf4\xa0\xae\xba\x01\x61\xfa\x05\x08\x05\x15\x4d\x14\x3a\x46\xbf\x82\x60\x8a\xe9\x69\xef\xfb\xd0\x47\x71\xbd\x4c\x9a\x0c\xbc\x37\x4d\x34\xd9\x14\xa2\xf7\x48\x09\x7d\x40\xf7\x11\x43\x2b\xb1\x6f\xb8\xbe\x6f\x89\x27\x19\x7f\x00\x4e\x28\xbf\xc8\x95\xba\x37\xc3\xf2\x7f\x09\xf2\x02\x0f\x19\x3a\x8c\x9e\x21\xea\x34\xdf\x35\xf3\xf4\x5b\x31\xd3\x67\x1c\xed\x3f\x7f\x05\x3d\xc6\x47\xff\xa7\x61\xf2\x87\x57\xc7\x1d\xe7\x7f\xff\x84\x98\xe5\x99\xd7\xa3\x66\xcf\x39\xf1\xa4\xb9\xcc\x2c\x5e\xf8\x8e\x9e\x75\xbf\x2c\xfe\xe5\xfb\x09\x27\x7b\xe3\xc7\x49\xa7\x9c\xea\x4b\xd4\xd3\x7d\xf6\x0b\x03\x1b\x7b\x19\x0b\xf6\x4d\xf3\x35\xd1\xc0\xc8\xff\xbc\x7d\x63\xc2\xb7\xca\x94\x2a\x57\xa1\x52\x95\xea\x24\x49\xbd\xf7\x5f\x0d\xca\xf2\x4c\xae\xcf\xe6\xa9\xd9\xf8\x49\xff\x4a\xfe\x61\x5b\xfc\xdc\x07\xe7\xe0\x77\x53\x08\xc4\xd2\x6b\x02\x82\x92\xaa\xcc\xbb\xd7\xb1\xd8\xa2\xac\xc8\x5f\xae\xf7\x94\x36\x16\xab\xcd\xee\x70\xba\xdc\x1e\x4c\x2c\x9b\x3a\xae\xe7\x07\x61\x14\x27\x69\x96\x17\x25\xe3\xa2\xaa\x9b\xb6\x9b\xcd\x17\xcb\xd5\x7a\xb3\xdd\xed\x4f\x4e\xcf\xce\x2f\xe0\x60\x58\x8e\x17\x44\x49\x56\x54\x4d\x37\x4c\xcb\x76\x5c\xcf\x0f\xc2\x28\x4e\xd2\x2c\x2f\x4a\xe5\x4a\xb5\x56\x6f\x34\x5b\x28\x5b\xa7\xe2\x01\x9f\x8d\xfa\x03\x97\x5a\xa5\xd1\xaa\x45\x9b\x0e\x5d\x3a\x75\xeb\x21\xd8\xb2\xa9\xeb\xe4\x28\x1d\xcc\xe8\xe8\x99\x9c\xce\xd7\xb6\xae\x4a\xba\x38\xf1\x12\x92\x21\x57\x89\x54\x89\xd9\x28\x9b\x20\x42\x1b\x15\x65\x9b\x8c\x54\x64\xa7\x55\x72\x52\x96\xcd\x29\xf7\x34\xf3\x24\x29\x74\x53\xa9\xcd\x36\xe0\x49\xc9\x56\xfb\xb2\xc3\x25\xc9\xd6\x24\x0b\x21\x9f\xf2\x26\xdf\xb2\x95\xf2\x59\xcc\x49\x4e\x4a\x12\x22\x50\x9e\x5d\x8d\xb1\x16\x24\x2f\x6b\x93\x93\xdc\x41\x42\xb9\x50\x5e\x12\x93\x9a\xec\xc8\xf2\x89\x34\x9f\xcd\xf8\xee\x87\x9f\xbe\xf5\x3e\x4d\x41\xfe\xd7\xef\xbc\xe0\x82\xbb\xde\x01\xc7\xa4\x39\xe4\xb0\x23\xf2\x1d\x77\xd4\x41\x0b\x36\x4b\x29\xde\x60\x3f\xb3\x63\xa0\xdb\x26\x18\x63\xbf\xb6\x84\xcd\x5e\x28\xd9\x56\x5b\xe0\xdf\xe7\x6c\x4f\xed\x73\xcc\x3e\xd0\xb1\x46\x3a\x03\xe7\xfd\xe7\xc2\xcc\x7b\xbe\x67\x70\xc0\xbf\x50\xa2\x40\xce\x7b\xf7\x0b\x6b\x6f\x79\xa4\x08\x01\x82\xfb\x34\xcb\xd2\xd3\x7f\x6c\x5d\x3f\xc5\xdd\x7e\x4a\xdc\x26\x2c\x9e\xcb\x8e\x86\xef\x3f\xa1\xac\xfe\x0f\x82\xf9\xa8\xdb\xb4\xa5\xf3\x1e\x9e\x81\x36\x1d\x09\xc2\x12\x03\x02\x0e\xea\x9d\x80\x82\xb6\xc4\x57\x57\x98\xf2\xd3\xb8\x08\x6b\x9c\x6d\xce\xde\x7c\x4e\xde\xbc\x1b\x7e\x14\xf9\xd6\x55\xf2\x14\xcf\x4e\x3c\xee\xbb\x1f\x9f\xb3\x1a\x44\x43\xdd\x62\x71\xe9\x3d\xab\x13\x97\xe3\x00\x97\x48\xe0\x2b\x5a\x02\x08\xbe\x6c\x47\xd2\xab\x54\xae\x98\x83\xfb\x4c\xba\xc7\xee\xc1\x3d\x5b\xb2\x68\x71\x88\xe7\x6c\x70\x95\xb6\x73\x0e\x68\x88\x46\x9d\xb1\x2a\x8c\xa4\xe5\xab\x84\xd5\x88\xd3\x28\xba\x30\x23\x75\xc0\xc0\x64\x9a\x59\x5b\xcd\xb6\x51\x77\x3d\x8c\xa9\xad\x10\x53\xcf\x36\xd1\x33\x7f\xaf\x96\x1a\x34\xfc\x3f\xd8\xdb\xe5\xa2\x51\xb2\x7c\x9d\xca\x2b\x57\xdf\xe4\x64\xb9\xa5\xae\xb8\x4d\x73\xc6\x29\xe4\xe5\x3a\x58\xc0\x02\xcf\x73\x23\x73\x66\xa1\xdd\x69\x22\x1a\x4d\xa0\xb1\xa2\xda\x1d\xa4\x43\x6a\xec\x2c\xe0\x21\x01\x77\x52\xe1\xe6\x3f\x23\xad\xb0\x1b\x29\xea\xdc\x5c\x51\xa6\xc3\x91\x02\x46\xbf\x2e\x9c\xc5\xb3\xde\xd0\x47\x91\xc0\xf0\x25\x29\x85\x48\xe2\x06\xc4\x58\xd1\x6c\x18\x37\x4e\xd0\x8a\xad\x94\x20\xb1\xa4\xcd\x41\x22\x20\x9b\xcc\x43\x9b\xd5\x29\xf9\x46\x2a\x5d\x4d\x26\x18\x4d\x24\x6a\xb9\x1e\x85\x2a\x28\xf3\x63\x34\x56\xd6\xe6\xab\xe4\x9d\xf9\x7c\xd6\x07\x6a\x68\x6a\xae\xe2\xb7\xcd\x34\x50\x07\x52\x4b\x54\xf9\xa4\x2b\xda\x95\x34\x66\x6a\x67\xe2\x8d\x58\x9b\x1b\x68\x40\x34\xcd\x21\x4b\x7b\xb9\xe3\xf9\x13\x46\x9d\x45\xc3\x2f\x23\x75\x8d\x16\x68\xe2\xe9\xbb\xd4\xcc\xd7\x34\x1f\xa7\xf6\x6d\x3f\x02\x19\x9e\xbe\x4e\x4f\xdf\xde\x30\x9d\x7f\x88\xb6\x5f\xb3\x85\xc6\x36\xdf\xc7\x1b\x71\x79\xa4\x89\x34\x3c\x03\x51\x16\x5b\x75\x23\xd6\x76\x42\x7a\x26\xb4\xbd\x4a\xcd\x70\x45\x8c\xc5\xc1\xb5\xc0\x72\xd1\xcc\x1b\xd2\x1c\x55\xd7\x06\xf0\x96\xb2\x67\x39\x6b\x21\x2f\x64\x97\x17\x77\x3c\xdc\xe4\xc7\x79\x02\x7e\x34\x64\xb7\x4d\x11\xc2\xe9\x28\x32\x7e\xfa\x83\x36\x56\x9a\xe6\xaa\x77\x89\x86\x46\xcd\xa8\x68\x24\x55\x4c\x1d\x55\x90\xe6\x77\x73\x67\x55\xb6\xe4\x32\x0e\xbf\xfc\x6b\x2d\x39\x7f\x77\xb7\x91\x03\x1d\x34\xf6\xcf\x05\xba\x68\x52\xd3\x93\xa2\x2f\xcd\x40\x86\xa1\x2c\x23\x39\x72\x79\x76\x14\xd8\x55\xf2\xb1\x84\x3a\xe4\x3d\x70\x3c\xe1\xe7\x38\xe1\xf7\xd5\x7b\x58\x61\x71\x20\x7d\xb5\x5f\x79\x1d\x58\x72\x88\xc9\x11\x26\x63\x4c\x26\x98\x4c\x31\x99\x61\x32\xc7\x64\x81\xb9\x4e\x6d\xaf\x26\x61\xc6\xd9\xb3\xd0\xac\x35\xb1\xd3\x9d\xb8\x02\x92\x09\xa9\x39\x8d\xb5\x3f\x37\xe7\xe0\xcc\x39\x9b\x05\x2e\x20\x2d\xe4\x85\x09\xab\x37\xad\x84\xf9\x6f\x45\x61\x74\x20\x70\xe9\x9a\x76\xd2\xe3\x62\xd6\x6c\x38\x9c\xa5\x12\x04\xca\x05\xae\xac\x52\xa5\xa9\x70\x0d\x5d\x93\xf5\x3d\xb8\xc1\x0a\x54\x0c\xce\x8c\x38\x63\xb8\x37\x41\xef\x17\x8b\x3f\x3f\xd3\x7b\x76\xb3\x5d\x87\xc3\xb3\x81\x5b\xa8\xd7\x42\xd6\xbf\x48\xc0\x7a\x33\x70\x87\x6e\x7f\x1f\xb8\x87\x1b\x47\xb8\x09\x7b\x99\x07\x34\x25\xbd\x13\xea\xb4\x00\x8d\xea\xc3\x8f\x87\x2f\x0d\x55\xbb\x2a\x95\xf4\xeb\xcc\x88\xc6\xf1\x3e\x84\xc3\x3d\x67\x03\x8f\x80\x1e\xc6\x56\xb8\xb9\x2d\x09\xcf\x6d\x0f\xe7\x2a\xf5\x03\x9d\x9a\xa7\x26\x4b\xdd\xac\x24\x8c\x46\x84\x8c\xf8\x65\xae\xbf\x6d\x71\x9d\x7e\xaa\xb8\x1e\x5d\xec\x51\xae\x8f\x72\x8c\x26\x02\x35\x8c\x11\xdf\x4d\x9b\x17\x0c\xd3\x68\xa6\x08\xf1\x42\xdf\x46\xb1\x6c\x19\x9a\x75\xab\x69\x5c\xb1\xba\xa3\x52\xfa\x1f\x4f\xf4\xa5\xd5\x24\x4c\x69\x73\xff\xc9\x46\x7d\x7c\x8e\xb2\x0a\x73\x38\x65\xd1\x58\xb5\x9e\xce\x36\x2c\xf5\x38\xd6\xea\xda\x13\x02\x51\x03\x6d\xb8\x09\x80\xb6\xea\xab\x1e\xce\xc1\x67\x22\x07\x9e\xf5\x8f\x4b\xf2\xd8\x12\xcc\xb1\xfe\x66\xe0\xe5\xd6\x38\x41\xe3\xfd\xf8\x9c\xc0\x08\x3c\xc5\x57\xe6\x02\xe1\xa9\x35\x97\x72\x97\x3a\xf5\xe6\xdd\x15\x7b\x50\x24\x07\x33\xb7\xe9\xec\x2c\xf0\xf8\x83\x97\x38\xa9\x6a\xf4\x52\xaf\x20\xf9\xf2\x81\x35\x77\x9d\x6e\x51\xca\x7b\xb3\xa7\x7a\xcc\x8d\xa5\x0d\x4c\x9d\xc5\x1e\x6e\xfe\x26\xa9\xcf\x5d\x3b\x0f\x07\xe7\x02\xdb\x5b\x03\x5e\x85\x14\x88\xd5\xdb\xbf\xf9\x37\xe0\xd1\x09\x96\xbd\x05\x4f\x3e\x30\x85\x40\x41\x92\x56\x19\x3e\x00\x86\x1d\xe7\x1e\x78\x17\x5d\xcc\xb2\x10\x58\x45\x53\xaf\x2e\x41\x08\xa9\xf7\xef\xf7\x68\x61\xc1\x62\x18\xfe\xb7\x58\x44\x1e\x88\x0e\x7d\x8b\xd9\x5b\xf9\x70\xfa\x3a\xe5\xb3\x7c\xca\x07\x43\x30\xdd\x23\x1f\x53\xde\x26\x54\x07\x49\x5d\xf1\x55\x3d\x4c\xcc\xc4\x48\x0e\x7e\x54\x76\x77\xdc\xce\x02\x9f\xee\x1d\xfe\x8c\x46\x38\x4c\xee\xc6\xe3\x5f\x80\x87\x4a\x28\x97\xd2\x9b\x99\x3a\xcd\x07\x09\xe8\x34\xf1\x35\x84\xa2\x49\xf9\xac\xff\xf1\x75\x8c\xd2\x07\xd8\x6d\x57\x86\x10\xe6\x49\x50\xd6\x90\x35\xc0\x6e\xc0\xee\x71\x10\xc2\x5d\x22\x1e\x03\x7e\x03\x76\x4e\x80\x10\xe1\x12\x89\x18\x88\x1b\xb0\x6b\x12\x84\x48\x97\x48\xc6\x40\xde\x80\x3d\x52\x20\x44\xb9\x44\x2a\x06\xea\x06\xec\x92\x06\x21\xda\x25\xd2\x31\xdc\x3d\xc4\xe2\x2e\x86\x40\x19\xbe\x99\xa1\x7e\x44\x47\x51\xe3\xd3\xb9\x84\x44\xd4\x85\xd9\x90\x32\x95\x05\x0c\x5f\x3f\x00\xbe\x01\xb7\xc2\xbe\x4f\x56\x8e\x3b\x0c\x3f\x03\xc0\x2f\x00\xe1\xde\xa7\x28\xcf\x1d\x86\xbf\x01\xe0\x1f\xc0\xa2\x1f\x57\x05\x22\xf6\xc7\xe9\x22\xbb\x44\x8b\xf9\xaa\x07\x2c\xfa\xba\xaa\x9f\xb4\x59\x1f\x90\xa8\xca\x45\xf7\x89\x6e\xd1\x97\x1f\xca\x3c\xab\x05\xed\x0f\x60\xdb\xa7\x00\xc7\x6c\x09\xb0\xfc\xed\x80\x45\x5f\x71\x70\xe9\x2d\x21\xb7\x87\x62\x24\x49\x82\x78\xc2\x86\x9a\xa7\xe0\x3a\x3a\x81\xaf\xaa\x7a\x40\xd0\x12\x92\x2a\x88\xf9\xe1\x46\x86\x67\xa9\x8d\xde\x5c\xad\xbe\xdb\xc2\x22\x11\x79\x5f\xf5\x1f\x03\x55\x9b\x52\xbe\x7e\xd1\x82\x31\x60\x7b\x8d\x1a\x61\x09\x3a\x7b\xad\x09\x0c\x52\x65\x40\x59\xc9\x8e\x3c\x61\xb7\x61\xd6\xb9\xda\xc3\x64\xaa\xe3\xb3\x87\x16\x57\x47\x1f\x06\x68\x92\xbe\x8a\x01\xd4\xb7\x5a\x4f\xc6\xa0\x46\xe5\xfa\x6d\x98\xfc\x11\xa2\x3b\x4c\x72\x41\xac\xea\x9b\x7b\xea\x51\x85\x77\x57\x69\x1c\xbe\xb5\xfa\xf9\x45\x87\x89\x49\x1a\xac\x94\xb4\x2e\x9f\x70\x1f\x6f\x50\x4e\x70\x19\x65\x48\xca\xf6\x04\xe8\x29\x0d\x66\xd2\x57\xe5\x77\x1f\x2e\x75\xcf\x90\xd3\xed\x61\x74\x62\x23\x12\xe2\xed\x0a\xb7\x93\xa5\xf4\xbf\xd4\x2f\x97\x8d\xfe\xca\xe5\xdd\x92\xec\x67\x35\x9f\x33\x7c\xce\xad\xdb\x1b\x55\x7b\xdb\x6d\x7f\x11\xf0\xf9\x16\xfe\x35\x83\x9c\xaf\x78\xbf\xf6\xa3\x49\xd9\x8b\xa5\xb4\xd7\x85\x3d\xe7\x18\x33\x58\x4c\xaf\x22\x28\x9b\x02\x9e\xb9\x1e\xb6\x72\xd6\x08\x0a\x89\x02\x0c\xb0\xef\x7b\xdd\x43\x04\xdb\x76\xe6\xb5\x5a\xd7\x49\x00\x10\xac\xcc\xbf\x5c\xec\x7f\x88\x8a\x57\x08\x0c\x27\x44\x26\x57\x86\xcc\x92\x32\x9e\x05\xcf\xfe\xb9\x47\x18\x84\x3e\xf8\x90\xed\x6b\xc9\x7a\xda\x0a\x2d\x16\xa3\xb6\xa1\xb2\x8a\xc2\x95\xe5\xe0\xd3\xaa\x43\x5f\xd7\x36\x20\xcc\xc3\x2d\x1c\xf4\x60\x4e\xa7\xde\xa4\x00\xdf\x89\x31\x55\x6f\x96\xd2\x75\x9b\x88\x20\x1c\xa1\x3c\x83\x54\x52\xab\xc7\xbc\x32\x6a\x1f\x17\x44\x31\x7d\xde\x45\x34\x30\xa0\x28\x58\xab\xd6\x06\x42\x60\x1b\x22\x92\xd0\xf3\xb1\x88\x37\x3a\xd4\x9b\x92\x55\xa9\xad\x6d\x8b\x41\xc0\x68\xd0\x16\x00\x84\x48\x85\xdc\x2b\xbe\x71\x61\x1f\x98\x3d\x10\x44\x3e\x65\x9e\x57\x1c\xd7\x49\xbe\x88\x0e\xf9\xee\x88\x99\xc8\x1e\xbc\x16\xcc\xc7\x73\xce\xea\x95\xe8\x6f\x0e\xa3\xe1\x45\x7d\x3b\xe5\x94\x92\xc1\x98\xe2\x80\x1f\x42\x93\x63\x81\x2a\x26\x09\x43\x40\xc7\xcc\x2a\xd8\xb2\x41\x24\xdd\xd8\xe3\x9b\x90\x0c\xa1\xef\x0b\x56\x83\xb6\x1d\x3f\x2c\x58\x3a\x0d\xd7\x28\xa5\x1a\x87\x81\xf7\x78\x8a\xfb\xe8\x98\x7d\x85\x2d\x1c\xf1\x9b\x80\xe4\xcc\xe3\x28\x9a\x25\x5c\xaa\xed\x67\x10\x90\x5a\xf3\x2e\x18\x1f\x2c\xfa\x83\xee\xaa\x1b\x8c\x6f\x5d\x97\x17\x79\x4e\x32\x40\x12\xb0\x0e\xc3\x45\x91\x24\x52\x0a\x31\x2e\xce\xd4\xb1\x56\x0a\x0a\xb0\x76\xc2\x15\x56\x65\x96\x75\xd8\x0d\x92\x06\xda\xe8\xab\x8b\x49\x70\x80\xcd\xa6\x6d\xa7\xc3\x45\xfb\x84\xa0\xc1\x70\xcb\x7c\x24\xd9\xf3\x20\x02\x7b\xbe\xa1\xc3\x89\xb3\x86\x21\x0a\x59\x00\xf9\x75\xb0\x66\x9f\x20\xda\xf0\xff\xa9\x12\xad\x71\x7d\x14\x52\x28\x77\x44\x3a\x99\x02\x2b\xfa\x40\x8f\x6b\x3e\x47\xa5\x57\x7b\xc6\x03\x0d\x32\x60\xa8\x4c\x89\x36\xe0\x18\x18\x48\x25\xf3\x29\x16\x34\xb2\xf1\x9a\x10\xc3\x6b\xc9\x1a\x0c\x21\x0b\x8f\xe1\x0c\x61\x79\xd1\x59\x23\x2e\xa4\xdf\xe2\x75\x05\x17\x90\xe9\x27\x66\xeb\x2a\x96\x34\x75\x11\x65\x2a\x8b\x9e\xe3\x63\x3a\xdc\xe8\x85\x68\xad\x56\xd5\xfe\xb3\xac\x1f\xb1\x6f\x7f\xbe\xa3\xb5\xd3\xbe\x5f\x3d\x4f\x0b\x9d\xd2\x32\xa2\x10\x49\x12\xc7\x5a\x83\xe1\xba\x59\xba\xe0\xe2\xd6\x86\x9d\xc2\x6a\x4a\x41\xf3\xba\x08\xbb\xb8\x82\x02\x49\xe8\x63\x0a\x52\x52\xce\x2c\x2e\x17\x36\x28\xd9\x29\x34\xaa\xa3\x68\x88\x4a\xc2\x15\x78\x14\x2a\xf4\x4f\xcd\x2e\xd9\x02\xd8\x44\x15\x68\x48\x3f\x17\xc3\x46\x52\xb3\xc4\x08\x90\x7a\xee\x6e\x0c\xe0\x6a\xbe\x3e\x16\x92\x38\x7c\xd2\x6a\xcb\x1c\xea\x52\x96\x46\xa4\x6a\x08\x39\x38\xa3\x75\xb6\x8c\x44\x29\x6a\xe9\x9a\x54\x1e\x1c\x6a\xec\xec\x0f\xd7\x9f\xe5\x1e\xa0\x11\x19\x0a\x97\xf8\x76\xcd\x43\xfb\xdf\x39\x1c\x3c\xcd\x01\xa0\x37\xba\x57\x60\x57\xfc\xa8\xca\x9d\x52\x0b\x2d\x3e\x2a\xe6\x60\x26\x80\x90\x88\x4b\xd1\x67\xa4\xbe\x20\x55\x6c\xb4\x5e\x09\x3f\x91\x41\x00\x84\x2e\xc1\x88\xf3\xe6\x4b\xb5\xdf\x41\x97\x5b\x63\x56\xe3\x8f\x79\x90\x18\x9a\x6d\xc7\x5b\x09\x76\x77\xa2\xcd\xbd\x30\xe9\x1a\x61\x45\x16\xd9\xa4\xd9\xe6\x53\x5d\xea\x87\xcd\x93\xcc\xfe\x40\xb3\xac\xe9\xf6\x4e\xc9\x79\x51\xb1\x2c\x93\x91\x0d\xe4\xce\x40\xc2\xa2\xef\x01\x6c\x6d\x82\xc7\x87\x4b\x2b\x87\xd0\xd6\xae\x2d\xfb\x87\x36\x79\x9b\xfa\x14\x76\xd6\xf4\xf0\x5b\x7a\x94\x6f\xa8\xb6\x83\x20\x03\x34\xd2\xdd\x40\x60\xbd\x4d\x47\x99\x78\x3a\xab\x9e\xff\x78\xef\x61\xe7\xe7\x42\x18\x0f\x32\x21\x1c\x0c\x82\x0a\xc4\xa7\x7d\x3d\xee\xee\x9c\xdd\xbf\x0c\x06\x6d\xe5\x77\x1f\xc5\xf5\x3d\x82\x31\x32\x9c\x8f\xa6\x9a\x05\xcb\xab\xc9\xdb\x81\x5e\x14\x54\xcc\x37\x7d\x34\xb2\xb0\x17\x04\x5d\xee\xec\x7f\xd2\xab\xa0\x53\xc5\x06\xed\xf6\x48\xe5\x9c\xc4\xd7\x6d\x29\x80\x42\x83\xbc\x81\x25\xef\x6a\xd7\x94\x99\xc8\x28\x54\xe0\xf6\xe5\xed\x0d\xee\xd3\x1e\x39\x15\xae\x32\x7e\x7b\x97\x64\xb3\x78\xad\x3b\x0b\xa8\x0b\xae\xd5\x1f\x0c\x7a\x58\x73\xda\x5f\x22\x6e\x1c\x04\xcb\xb1\xfc\x5e\x18\x9d\xb0\x72\x2d\x96\x7b\x64\x67\xbd\x83\xd8\x99\x9a\xdb\xa7\xfe\xf3\xef\x21\x76\x72\xec\x55\x31\xc1\x8e\x5f\x55\x95\xd2\xea\x07\xb4\x7c\xd8\xc9\xf1\xd0\x2b\xcd\xf3\x67\x52\x2f\x3f\xa9\x00\xda\xe4\x01\x57\xab\xcf\xda\xfe\x42\x8d\x64\xfb\x63\x92\x3c\x49\xac\x2e\xde\xd4\xbb\xf8\x1d\xaf\xd2\x7a\x6c\x2d\xac\x64\x48\xd2\x85\x3d\x8e\x84\xe3\x0d\xd1\xa1\xfa\x79\xb1\xf2\x6c\xcc\xc7\x8b\x86\x72\xd1\x51\x7e\x62\x7a\x1e\x75\x0f\x49\x5d\x12\xcc\x68\xcc\x7d\x14\x96\x03\x75\x37\xde\x37\x76\xb6\x6f\x21\x61\x93\x6f\xd7\x3d\xa2\xd4\x41\x10\xec\x04\x26\xfc\x01\x46\x4b\x1b\x10\x73\xea\x82\x14\xa1\x91\xcc\x1b\x2e\xc2\x93\x25\x58\x7c\x2b\x50\x6b\x12\x09\x0b\xac\x40\x7c\x87\xf6\x8d\x3c\x46\x95\x4e\xd1\x49\xfb\x7a\x1e\xff\x60\x4a\x41\x07\x1d\x72\x09\xa7\xc8\x0e\xbb\x8c\xb9\x84\x1a\xac\xd6\x34\x37\xaf\x5a\x65\x8b\x98\x12\xf2\x99\x59\x68\xa1\x55\xc6\x43\x1e\x65\xb4\xc3\xb6\x3d\xcb\xc6\x80\x33\xb2\x07\x3d\xe8\x6f\x34\x4c\x74\x28\x6f\x74\x74\x27\x4f\x3f\xbd\x66\xbb\xd4\x8d\x05\x9c\x32\x61\xef\x88\x4c\xd5\x70\xa2\x71\xff\xfe\xb2\x20\x1a\x85\xdb\xcf\xd1\x59\x3b\x83\xc9\xcc\xfc\x81\xa2\x3c\x8b\xd0\x10\x90\x5b\xf0\x65\x10\x36\xd3\xed\x00\xae\xd5\xa5\x13\x33\x83\xc7\xae\xa3\xdf\x57\xda\x4a\x6a\x91\x47\xba\x23\xd9\x00\x29\x8a\x5b\x6c\x21\xd3\xcc\x1c\xa7\x9c\xa5\x32\x21\x5f\x21\x0b\xb4\x47\x99\xf0\xe8\x80\xc6\x23\x9a\x8c\xf9\x58\x36\xef\x52\x3f\x67\xab\xed\x78\x4c\x8b\xaf\x3b\x91\x40\x86\xaa\xa7\x41\xf6\x83\xf5\x65\x34\x0a\x4c\x40\x30\x83\xc4\x84\x59\xcc\x7f\x30\xd8\xe7\xf6\xe5\xa4\xf5\xd0\x4e\xc0\x24\xc1\x37\x57\x01\xd9\xd5\x2a\xb0\x4d\x9d\xac\x39\xee\xd8\x74\xef\x92\x06\xb4\xfe\x1b\x6f\x86\x20\xec\xbc\x1b\xa3\x7c\xa7\xf5\xb4\xb5\xe4\x53\x6a\xdd\xd7\x0b\x27\x1f\xf9\x2a\x47\xe9\x86\x61\x18\xd0\x6e\xde\xde\x6e\xc3\xe5\x0c\xcc\x57\xa5\x2a\xa2\xf3\x3d\xf6\x33\x90\xa1\x27\x1c\x95\x57\xfe\x2d\xf7\x64\xd2\x2d\x51\x70\x2a\x7b\xd6\x1e\xaf\x64\x7d\x9d\xf8\x91\xf3\x4d\xd2\x0c\x39\x1d\x0c\xba\xc2\x17\x74\x3b\xa2\x58\x51\x83\xdb\x5b\x27\x62\x6c\x59\x3c\x39\x1a\x97\xc6\x06\x35\xf7\x94\xac\x9e\xf2\x0e\xb9\x25\x4a\x19\x0e\xcb\xa4\x04\xf1\x9d\x73\x69\x58\x1e\x26\x11\x15\x50\x1a\xf4\x80\xf8\x41\x77\x7c\xae\x2a\xd8\xdd\xf7\x06\x4d\x4a\x51\xf8\x6e\x06\x88\x8d\x39\xbb\x07\x24\x41\x46\x6a\xc2\x23\x89\xb8\xa5\x9e\x9e\x65\xf9\x9a\x0d\x68\x96\x72\xab\x36\xda\x30\x1f\xc4\x8e\xea\xa1\x48\x52\x45\x52\x42\xe7\xa9\xbd\xc1\xbb\x6d\x0d\x47\xb5\xb3\x7f\x94\xdc\x0a\x52\x9c\x5e\xf4\x2d\x90\x5c\x65\xc6\x98\xa0\x3e\x41\x85\xd4\xe8\xea\x7e\x70\xf2\x98\x50\x87\x3c\x8e\x56\x2a\x4b\xe5\x2d\x4d\xc8\x2a\x80\xc8\x6d\x5a\x54\x5e\xb7\x48\x01\xf8\xda\xf0\x96\x90\x96\xa9\xcd\x14\x98\x7c\xd0\x1c\x0e\xeb\xcd\xc5\x60\x83\x46\x5b\xde\xe6\x5d\x76\xec\xc3\xf1\x3d\x2e\xb7\x60\x1a\xc5\x83\xad\xd3\x33\xc0\x9e\x7e\xef\x75\x70\x63\x80\xb3\xf4\x09\x49\xd7\x9c\x46\x26\x51\x6b\x7b\xd4\x6a\xb5\x60\x5c\x4f\x49\xed\x39\x32\x8d\x37\x53\xdf\x9a\x9e\xe5\xdb\x2a\x93\xd7\xf9\xba\x24\xac\x6b\x16\x3e\xb4\x4e\x46\x1f\xac\x5f\x6c\xcd\x1e\x42\x15\xa8\xb3\x73\xa7\x41\x70\xeb\x7d\xd8\x14\xea\x52\x81\x0a\x63\xa6\xe3\x1a\x3f\x41\x9a\x2c\x51\xd5\x09\x4e\x4d\x58\xd6\x1e\xcc\x18\x42\x51\x52\x90\xbf\x51\x58\x5f\xef\xdc\x3e\x67\x38\xc3\x8c\xc4\xd8\x18\x68\x80\x9c\xf2\x25\x21\x32\x37\x7e\xf3\x96\xb2\xd2\x76\x54\xc0\xb0\x92\x78\xa4\xf8\x90\xca\xca\x68\x40\xa3\x59\x04\xdc\xfc\x83\x7b\x14\x8a\x58\xc9\x67\x84\x2b\x5a\x0d\x4d\xfc\x8e\xca\x92\xa7\x4c\x1c\x7d\x99\xea\xd1\x59\x89\xa3\xf0\x6d\x46\x05\x8c\x47\xe1\x03\xf6\x1d\x37\x02\x9a\x89\xfc\x53\x0e\x45\x47\xb2\xfe\xf6\x28\x8f\x79\xaf\x89\x8d\x26\xb8\x68\xfc\xb5\x9d\xe2\xeb\xa0\x34\x74\x68\xa8\x58\x1f\x0c\xdf\xa4\x40\xd7\xa4\x33\x0f\x97\xf1\x4b\xf0\x70\xf2\x79\x74\xbd\x9a\x37\x27\x4b\x75\x5a\x26\x45\x80\xf2\x54\x9d\x4a\x5a\x79\xde\x6a\xbf\xd0\x48\x79\x04\xe5\xa0\x31\x72\x84\xb6\xd4\x3b\x39\xac\x10\x8a\xae\x70\xf1\x8a\xed\xeb\x47\x17\x3b\x0f\xef\x83\x39\x25\x3a\xd0\x4c\x96\x6d\xd7\xe2\xd2\xb7\x78\x2b\x8c\x3b\x12\x6c\xb8\xaa\x37\xa8\xaa\x9e\x68\x72\xf2\xb6\x02\x57\x51\xfc\x9d\xa6\xeb\x60\x0c\xd6\xf5\x76\x1b\x4b\x17\x83\xf8\x3a\x90\x12\xac\xca\x14\x4e\xc7\x65\x5c\x79\x63\x4d\x04\xbc\x1a\x05\x8e\x26\x40\xf1\xc1\x25\x94\x31\x55\x01\x82\x1b\xbe\x3d\xdc\x72\xc8\x82\x75\x04\xe5\x4f\xab\x47\x2a\x3b\x06\x57\x1e\x9c\x5f\x38\x01\x71\xa6\x3b\x12\x06\xe1\x5d\x10\x07\x60\x7e\xb2\x9e\x26\xb7\xc8\xbc\x06\xb8\x7a\x3e\xeb\xa5\xed\xa2\xb4\x33\x71\x36\xc1\x50\xd9\xcd\x5f\xdc\x7b\x8c\xed\xb4\x52\xbf\xfa\x68\xf1\x58\xc0\x0d\xf5\x0e\x7a\x17\x58\xca\x6d\xe1\xb7\x00\x83\x43\x98\xbb\xf9\x52\x80\xca\x0c\x3f\x86\xf7\x90\xcd\xf9\x0e\x73\xf1\x02\x68\xca\x63\x04\x41\x45\xd9\x95\x94\x29\xb9\xfe\x9e\xe3\xe2\x13\xfe\x84\x4b\x9c\x14\x74\xbe\x0d\x5d\x92\x40\x81\x85\xdf\xae\xca\xff\x75\x7b\xe9\x70\x3f\xde\x1b\x46\xbb\x7b\xe1\xfe\xee\x36\xdd\xba\x1a\x42\xba\x6e\x26\x56\x62\x0c\x41\xc3\xec\x75\x2a\x1f\x3d\x3e\x6b\x8b\xa8\xc0\xa2\xc9\x23\x3a\xb0\xd6\x9a\x19\x19\x4a\x22\xbd\x67\xe1\x10\x21\xb7\x81\xc9\x9b\xd8\x77\xfd\x54\x10\x78\x80\xa1\x12\x5c\x1c\xab\x8f\xcf\x35\x6f\x35\xd0\xc7\x43\x58\xfa\x42\x66\x0c\x4b\xe3\xec\x29\xcb\x82\x9a\xc9\x2a\x9a\x3c\x14\xc0\x6e\x23\x8c\x9e\xd1\x81\xce\xe4\xd3\x9b\xcc\x46\xef\x12\xa4\x0a\x7d\xfa\x4b\xea\xf9\x9b\x71\x28\xba\xeb\x4f\xbd\xb1\x5a\xe5\x46\x9c\x4b\x46\x75\xdd\xa4\xa1\x82\x0e\xe8\xdd\x82\x40\x1e\x59\x84\xd1\x61\xa0\xf6\x52\x26\xbb\x83\x47\xf2\x0a\xb9\xe3\xa3\x28\x8e\x7a\x97\x5d\x78\x4d\xed\xc9\x62\x39\xa6\x3b\xff\x2d\xd9\xb4\xad\xa1\x6b\x86\x4e\xa3\x15\xaf\x3e\x4d\x19\x2d\x7f\xf2\x39\x84\xd8\x82\xe4\xda\x26\xaf\x9c\xe6\x71\x49\xed\xa3\xe7\xcb\x73\xdb\xa5\x61\x3a\xd3\x82\x0a\x5a\xd0\xf3\x8f\xe1\x81\x46\xcd\x8a\x35\x9f\x61\x4d\xc6\xf9\x5c\x06\xc1\xc0\xe2\x13\xe1\x5d\x24\x9c\x7f\x10\x8e\x98\x9d\x8d\xef\x4d\x83\x8d\xfe\xf5\x37\xe1\x24\x37\x50\xf9\x1a\x5d\x48\xcb\x88\xd4\x01\x2a\x7c\x5c\x85\x8f\xfe\x82\xe1\x7e\xa6\xc7\x56\x26\x56\x21\x7a\xee\xe4\x86\x3a\x76\x59\x76\xd4\xa6\x53\xef\x0a\x7b\x53\xef\xd8\xa4\x03\x8c\x67\xce\xdc\x31\xa0\x55\x12\x34\xb2\xad\x6d\xda\x6f\x09\x2e\x90\xc4\xa5\x6e\x49\xbe\x18\xae\xa0\x75\x34\xdf\xac\x43\xef\xb9\x8f\xca\x8c\x4c\xe3\xaf\xf3\x8e\xd7\x37\xde\x83\xb5\x89\x53\xac\x4d\xc8\x74\x4b\x60\x64\xee\xd1\xaa\xaf\xde\xaf\xe3\x8d\x59\xf3\x9a\xe9\xc6\xdd\xc8\x94\xf4\x5c\x53\x94\x29\x3f\xe8\x54\x95\xff\x21\xe3\x99\x7e\x5e\x38\x2d\x57\x58\xf1\x2c\x6a\x09\x34\xda\xa7\x0f\x22\x9a\x23\xd0\x04\x8d\x02\x92\x5b\x08\x1f\x04\x5a\xf5\x10\xad\x27\xd9\xa3\x7e\xbb\x2f\xa0\x2d\x61\x0b\xf5\xdb\x34\xab\x86\x2d\x39\xf5\xa1\xc7\x06\xdc\xa7\x52\x74\x03\x43\x83\xc9\x39\x73\x03\x0c\x48\x78\x87\xd4\xa7\x0c\x18\xad\x46\x54\x4e\x94\x8f\xe9\xe0\x76\x9d\x95\x8d\xe6\x51\xb6\x76\x57\x8e\x95\x9a\x29\x5d\x96\xd5\x52\x81\x09\x41\x5d\xbd\xab\x18\xd5\x26\x6c\xeb\xa1\x17\xb1\x48\x4c\x1f\x77\x5b\x9d\x32\xca\xc6\xa8\x27\x89\x82\xac\x28\x02\x8d\x1a\x0f\xb5\xf1\x2f\xbe\x64\x7f\xe4\x01\x2a\xb4\x61\x8e\x46\x77\x6d\x8c\x2e\x2a\x35\x53\x31\x07\x4e\x4b\x03\xb9\x40\x0d\xcb\xc9\xb7\x7a\x5b\x4a\xf6\xfb\x3a\x57\x14\x68\x5d\xc2\x52\x21\x55\x79\x0f\x12\xcc\xb1\x0b\xb9\x59\x29\x94\xc5\xde\x1d\x8e\xdb\x84\x9c\x95\xd7\xaa\x1c\xf6\xf9\x74\x08\xf5\x8e\xdf\x26\xf6\xb9\x0b\x5f\xeb\x6d\xda\xd5\x7a\x9b\xcf\xcb\xf6\xfd\x16\x49\xbb\x22\x3e\xbe\x8e\xed\x04\xb9\x90\xe6\x2d\x27\x0e\x58\x83\xb6\x9c\x51\xdc\x56\x6b\x12\x28\x3f\x3f\x14\x3a\xe4\x51\x65\xca\x2e\x90\xb1\x27\x63\x4d\x9e\x36\xef\x09\x3f\xd5\x4c\x9a\xcc\xba\x09\x1e\x15\xc8\xdc\x05\x3d\x28\x89\x3b\x2b\x95\x2b\x5d\x7a\x48\xf5\x56\x8b\xec\xa5\x28\xcc\xb2\x26\x4f\x5f\x14\x2a\x2c\xb8\x8f\x62\x81\x5a\xbb\x2c\xd2\xfc\x85\xd3\x01\xe7\x36\xcb\xac\x48\x9c\x62\x48\xea\x4e\xf4\xfe\x27\xb8\x22\x2e\xe4\xa9\x78\xd4\x87\x6d\x3a\xce\xbf\xa2\xfd\x04\x28\xc6\xad\x74\x62\xa0\xec\xaa\x45\x16\x4e\xb9\x1e\x10\xa6\x63\xdb\x8c\x42\x8d\x97\xd1\x4a\x14\x41\x0b\xcf\x13\x8b\xc8\xbf\xb1\x28\x96\xf2\xb3\xe1\x83\x2b\x7c\xfd\x6e\xa0\x42\x9a\xfe\x2e\xe8\x6b\x7c\xbd\x3f\xf1\xfd\xa5\xb9\x2e\x31\xd1\x59\x6d\x0a\xb9\x41\xcc\x37\x38\xc8\x7a\xde\x13\x7b\x3d\xb1\xf7\x24\x1f\xb9\x15\x1e\x8b\xa8\x44\xed\xae\x90\x76\x1b\x7e\xfa\x75\x45\x74\xc4\xef\xa7\xdf\xbc\xab\xc5\x57\x7e\x5a\xa3\x59\x33\xf5\xeb\x62\x5f\xab\xb5\xa9\x16\x79\xa5\xcb\xd4\x80\x47\x85\x35\xed\x12\xc7\xb3\x01\xf6\x59\xc2\x4b\x81\x53\xe8\x43\x6d\xb8\xa0\x25\x3a\x5c\x04\x02\xf9\x8a\xc4\x24\x86\xd8\x7b\x9b\x14\xae\x2c\xbf\xb9\x50\x1f\x2e\x65\xaf\xb6\xec\x92\x7e\xf9\x8e\xd6\x6f\xc9\xa4\x29\xbc\x6b\xa5\xbc\x5d\x77\x12\xca\x0b\xb3\x07\xaa\x22\x38\x32\x47\x50\xb1\x4a\x9b\x68\xcd\x86\x70\x9f\x50\x3e\xff\x1d\x89\x5e\xc5\x25\xe0\x14\x52\xb3\x4b\xeb\x7a\x28\xfa\x4c\x97\x1c\x0d\x0d\x6a\x82\xee\xd8\xa8\x8d\x0e\x35\xb1\x2b\xeb\xfe\x81\xef\xa0\xb2\x53\x6e\x5c\x4b\xc4\x1d\xbf\xb1\x58\xc1\x40\xee\xf2\x90\xe7\x5c\x17\x97\xc4\x97\x6e\x16\x37\x93\xf0\x32\xfc\x21\x2d\x3a\x8d\x60\xae\x0f\x4b\x64\x15\xf8\x69\xa2\x06\xf6\x8d\xea\x36\x40\xfb\x30\xac\x85\xa5\xe3\xfc\xb8\xc7\x35\xea\x6e\x2d\x5b\xe5\x5a\xf4\x1a\x28\x55\x5a\x75\xab\x01\x97\x7a\xcc\x5a\x34\x61\xcb\x76\x5b\x8a\xf9\x4c\xaa\x32\x5c\x1b\x9f\x3e\x6c\xe2\x1c\x4f\x24\xab\xcf\x66\x6b\x89\xce\x0e\x34\x65\x61\xe8\xaf\x05\xcf\x68\x5d\xfa\xb7\x61\xf7\xb5\x4f\x6b\xb3\x15\x01\x0e\x3a\xce\xed\x90\xbb\x93\xda\xf6\x8d\xd9\x3b\x96\xc7\xe0\x74\x79\x28\xd0\x5e\xf2\x61\x78\xb2\x40\x66\x97\x7b\xcd\xf7\xd6\x97\xd6\x85\xe7\xb3\xa4\xb2\x4b\x47\xa9\x39\x7e\xfc\x84\x8b\xab\xb4\xde\x3c\x94\xf5\x3d\x66\xeb\xbf\xfc\xb5\x40\x93\xfb\x0b\xd0\x32\x5a\x0a\xa7\xc3\xb4\xc0\x27\x22\x94\xd9\x72\xd0\xac\x0a\xd4\x50\xf5\x41\xd5\xf2\xbf\x24\xeb\x42\x1d\xd9\x71\xb3\x62\xa1\xd1\x5c\x5a\xef\x30\x3a\xf5\x16\xe2\x2d\xb1\x71\x98\x89\x60\x6a\x2e\x44\x80\xc4\x25\x1e\x38\xff\x5b\x63\xd0\xaf\x36\x34\xef\xbf\xac\x7a\xde\xc0\xbb\x4a\x61\x41\x17\x9d\x74\x82\x7b\x36\x09\x1f\x24\x67\xc8\x3a\x3a\xa1\xcc\x82\xc6\x23\xdd\x28\xe7\x16\x7b\x9c\xd1\x66\x03\x89\x5f\xd3\xb9\x24\xed\x33\x96\xbf\xb1\x2c\x03\xdb\xb7\xa0\x8f\xb3\x5b\x2e\x06\x41\x0b\x1f\x58\x7c\x94\x77\x72\x13\x04\x9c\xa8\x84\x5e\xb6\xcf\x1b\x6d\xc8\x0c\xb8\xe7\x99\x82\xb0\x7a\x32\xcd\x0e\x17\x86\xf4\xa1\x26\x4f\x54\xf7\x57\xa0\xd8\x95\xa6\x7e\xb7\x1b\x92\xa5\xb1\xd4\x5b\x18\xa5\x52\x27\x3e\x44\xcd\xef\xa6\xac\x0b\xcf\x9f\x32\xcb\x33\xfe\x92\xfb\x72\x1e\x4a\x5f\x0b\x7b\xf2\x9a\xb7\x03\xee\xdd\x89\x80\x83\x50\x81\xfe\x88\xcf\x57\x6a\x70\xa5\x85\x69\x64\x6f\xe8\x31\xe4\x2f\xcd\x83\xfa\x13\xd7\x14\x6c\xf0\xe0\x7e\x60\x1e\x94\xe9\xc1\x5c\x9a\x3c\xb7\xcb\xf5\xd9\x3f\x48\xf2\x0a\x02\xce\xf4\x35\x0d\x17\x12\x89\x59\x28\x26\x95\x41\x46\xaf\x49\xde\x9a\x2c\x15\xfd\xd7\x51\x6d\xcf\x6a\x70\x40\xd0\x41\xfd\xff\x1d\xa9\x37\x67\xb6\xc1\xd8\x84\x55\xe0\x33\x7f\x0e\x45\x6c\x07\x2e\x30\xfe\x1c\xce\xd4\xa3\x98\x17\x48\xd0\x86\x0a\xa4\x87\x84\x3e\xee\xb8\xf2\xd6\x8a\x0f\x35\x7e\x8a\x8d\x94\xf7\xbe\x6d\xba\x52\x66\x63\x71\xe7\xc6\x88\xc7\x96\x49\x7d\x1f\x8e\xa0\x7d\x2a\x51\x44\x67\xca\xe0\x5c\x96\x89\xdf\x20\xaf\x1d\x62\x85\xb5\x22\x6d\x37\xa6\xf1\x72\xbe\x45\xfd\xe9\x82\x28\xbb\x20\x60\x81\x1b\xf5\xa7\x3c\x48\x78\x1d\x6d\xb4\x30\xe5\xee\x06\x79\xfd\x3a\x1b\x1e\xe3\x74\x7d\x28\xc0\x0e\xa1\xdd\x67\x8d\x1c\x75\x68\x91\x3b\x22\x8f\x9d\x29\x80\xec\x04\x0e\xd9\x9b\x59\x69\x51\x93\x84\x9f\x9b\xf6\xdf\x0c\xb7\xa7\x03\x6e\x81\xdb\x83\xbe\x03\x1e\x77\xc8\xa6\xac\x26\xdb\x7f\x12\x4d\x6a\xaf\x2c\x3f\x0a\x4d\xd2\x1d\x80\x99\x13\x36\x4b\x88\x87\xaa\x5a\x2a\x25\x99\xdc\xa0\xf3\x6a\xa4\x71\x5f\x69\x65\xdc\x97\xfc\xb7\xd3\xdc\xe0\x26\xf7\x14\x61\x1f\x86\x8d\xc1\x75\xa6\xa5\x2a\xe6\x6c\x96\x06\xc6\x8f\xfc\x0e\xb4\x8e\x79\x7f\x91\x73\x01\xd6\x78\x33\x41\x41\x09\x50\x82\xf7\x7d\xc2\xe1\x64\x99\x84\x0b\x4c\x12\x60\x8b\x72\x4f\xcc\x4c\x71\x6a\xd7\x9b\x94\xfa\xb1\xe9\x7b\x40\xe0\x84\x23\xfb\x7f\xef\xea\x0f\x4b\x05\x09\x0f\x6d\x5b\x6d\xcf\xe7\xb1\xb3\xb6\x86\x34\xdf\x26\x63\xee\xe1\x2a\x15\xe7\xd3\x7a\x87\x83\x02\xf5\x27\x5a\xf7\x45\x61\xe2\x33\xa9\x3a\x83\x4e\xb4\x68\x29\xf5\x54\xd8\xe4\x2e\xf9\x58\x7a\x24\x6c\x93\x9f\x78\x60\x1f\xac\x8a\x5a\xa1\xe5\xb6\x34\x6b\x20\x49\xa9\x3f\x76\x17\x20\x31\x5c\xac\x64\x45\xb7\xd6\xeb\xa5\x75\x34\x66\xb5\xb0\xd8\x6d\xc0\xce\xca\xe4\xd9\x93\xdb\x7a\x11\xa1\x3e\x7b\x15\x6d\xd6\x67\xaa\xdd\x1b\xc5\xa2\x40\x94\xf2\xf4\x8d\x38\xb3\x90\xc5\xde\x32\x47\x51\x91\xd9\xe5\x2d\xe5\x98\xf6\xc4\x19\x48\x4d\xbe\xd5\xc1\x9c\xc7\x2d\x0f\xc9\xf1\xab\xa5\x38\x26\x23\xe7\xa2\x13\x8d\xe1\x24\x3e\xa3\x18\x3d\xf4\x8b\xa2\xdb\x89\x17\x16\x2f\x5e\x44\xc1\xcb\x41\xef\x16\x05\xfd\x9d\xa8\x3a\x3a\xaf\x02\xa1\x02\x55\x58\x4c\xb2\x24\xeb\x2b\xf0\xe8\x08\x81\x6b\xb5\x9f\x14\x98\xb3\x7b\xe1\x1a\x5c\x2c\x65\x8d\xb5\xcc\x19\x06\xd7\x87\x0f\xb3\x99\x2e\xc5\xed\x09\x0a\x6d\xc3\x98\x93\x87\xb3\xfb\x68\x4c\x78\x37\x21\x3d\x3c\x12\xc1\x06\x0a\x66\x30\xc6\x24\x4c\xf1\x34\x3f\x02\xe2\xbe\x64\x67\x8a\x49\xe9\x0e\x43\xb9\xda\x50\x4d\xa8\x09\xf0\xac\x13\x5b\x2b\xc6\x9d\x33\x29\xa1\xfe\x9b\xdb\xef\xec\xca\x9b\x42\xcb\x61\xf7\x08\xbc\x23\xac\x0d\xb9\x3c\x0e\x4d\x52\xe2\xa4\x7c\xd1\x7e\x05\xee\xb7\x7b\xa9\xb2\x5d\x48\x66\x0e\x5b\x1d\xcc\x51\x8c\x97\x24\x05\xdd\xe2\x8a\x0e\x9c\x67\x71\x12\x74\xdf\x28\xdf\xe9\x5e\xa2\xca\x9f\xa7\x06\x31\x88\x2a\xbf\x57\x4c\x9a\x41\x37\xa0\x03\x58\xc7\x93\x75\xe1\x52\xbc\x27\x1d\x33\x8e\x82\xf6\xdf\xbe\x15\xb3\x9a\x1d\x56\x58\x18\x36\x7f\x22\x77\xaf\xc0\xc7\x91\x55\xf3\x26\x69\xde\xc0\x36\xca\xf5\x41\xd9\xab\x43\x89\x80\xed\xab\x5e\x93\x65\xd8\x1a\x40\x70\xe3\x93\xf9\xb7\x30\x21\x4a\x27\xd5\x8d\xac\x72\xba\x4a\xd6\x53\xcc\x23\xf8\x10\x52\x1d\x69\xcf\xd9\x8b\x06\x38\xbf\x1a\x19\xcf\xee\x39\xc6\xb8\xce\x80\x71\x3b\xae\x6c\x8b\x73\xdc\x2c\x49\xf6\xa9\x10\xfb\x68\x53\xc3\x92\x5f\x39\xa3\x3b\xf3\xa4\x8e\x74\x09\x38\xb3\x10\x8c\x83\x8d\xd9\xb7\xbb\x6a\xe8\x02\xca\x33\xb7\xf2\x5c\xbb\xcb\x4e\xee\x67\xb8\xa9\x14\x69\x13\x13\x18\x3b\xaa\xaa\x5e\x61\xf5\x4d\x59\x96\x2c\x4e\x55\x06\x20\x3d\x5f\xa0\x40\x97\x7f\x42\xb2\xfb\x26\x83\x46\x55\x68\x17\x89\x5a\xb1\xdb\x21\x7c\x4c\x65\x05\x9f\xd8\x50\x03\x43\xcb\xcb\xd9\x95\x84\xa7\x20\xb3\x9d\x4c\xb0\x59\xa5\xec\xf8\x72\x9e\xef\xed\x40\xd1\x8d\xbb\x4f\x99\xfe\x61\x29\x57\xad\x87\xf4\x0c\x8e\x7b\xee\xbe\x10\xba\xe8\x90\xd6\x04\xe3\x07\xea\xa0\x6f\x31\x96\xe0\x74\x2b\xdc\xee\x42\xaa\x10\x81\xbf\x9a\xd8\x3d\xbd\x48\xae\x4c\x1c\x98\x48\xe5\xb5\x1a\xcb\xd1\x9f\x00\xb7\x8c\xb5\xf5\xc1\xdc\x44\x61\x23\x5f\x3c\xd6\x14\xe5\x8c\xc7\x04\x94\x72\x0b\xde\xdc\x77\x23\x07\xfd\x88\xa1\xcb\x43\x8f\x86\x5e\xf9\x68\x68\xe8\xde\xd0\x75\x73\xf6\xdd\x9c\x9a\xf9\xf7\x32\xd9\xf6\xf4\xf7\xb7\xd4\xf6\xfc\x3b\xdb\x7a\x4b\xbe\x2f\x0b\xf2\xf7\xea\xfc\x07\x9b\x66\xa7\xff\xbb\x24\x5e\xcf\x7e\xbb\x1e\x26\x12\x8e\xe3\xdd\x43\xe7\x6f\x8b\x2c\xdc\x8f\x77\x76\xd9\x32\x02\x8a\x33\xc9\x04\x36\xff\x46\x23\x14\x04\x6e\xcc\xae\xe8\x4a\xd1\x9b\xbc\x02\x70\x48\x9f\x13\x5f\x25\x88\xb7\xc6\xa8\x59\x35\xa8\x58\xa8\x67\xfe\x28\xa3\x3e\x28\xb0\x16\xdc\xc1\x64\x89\x81\x1c\x82\xe1\x10\x62\x28\x4a\x1a\x15\xa6\x07\xdd\x8a\x07\x4d\x12\x38\xc0\x58\x00\xb8\x00\xa9\x00\x84\x03\x6e\x73\x01\xbb\x81\xa2\xd6\xf1\xfe\xf8\x84\xed\x60\x45\x51\xd6\xa8\xa0\x99\x86\xa6\xe5\x17\x29\x72\xb4\xf9\xcc\xf3\xb3\x60\x85\x0a\x0c\xc5\x98\xa5\x40\x2b\x35\xba\x99\x29\x77\x04\x0a\x0c\xef\xfe\xb2\x8a\xf8\x47\xd2\x54\xd3\x11\x4c\x0f\xb1\x55\x2c\x8c\x3a\x27\xd8\x2f\x70\xe2\x59\xd9\x2a\x3c\x6f\x91\x8a\x09\x97\xf2\x77\x69\xfd\x3d\xa1\xf5\x26\x71\x2c\x7a\x54\x54\xfd\x92\xf8\xec\x3a\x5b\x2c\xa0\x03\x05\x0d\xd7\x42\xf5\x1f\xeb\x0e\xf4\x7b\xaf\xfa\x53\x70\x71\xe8\x6e\xc8\xa7\xec\x1a\xc9\xe0\xa1\x8c\x25\xaf\x7d\x68\x8e\xe3\x5d\x74\x5b\x59\xd3\xce\xde\xb6\xcd\xf5\x07\x3f\x6e\x13\xb8\xe0\x26\xa3\x5d\xa1\x35\x0a\x7d\xf5\x73\x9c\xd5\x6c\xe5\x46\x72\x1f\xd1\x9e\x19\xc0\xe3\x4a\x8a\xf0\x4f\x2e\xcf\x3e\xe2\x81\x49\x16\xfa\xd7\x60\x5f\x31\xee\xc4\xa2\xc5\xdb\x73\x6c\x8f\x2a\xdd\x72\x9d\x7c\x31\x9e\xcc\x53\x7c\x66\xd8\xc1\x09\xc7\xb1\xb7\x82\xc8\xe7\xcc\xac\x70\x64\x52\x96\x97\x74\x84\x66\xf4\x34\x08\x82\x22\x28\x3b\xac\x45\x6d\x63\xa1\x70\x6a\x4b\x4a\xa1\xd6\xb4\x55\x34\xa2\xd8\x70\xc1\xa1\x3e\xcd\x5a\x91\xd0\xfa\x45\x42\xa7\x8e\x76\x5f\xb8\x24\x59\xe6\xd5\xc4\x73\x73\x47\x89\xac\xa1\xbd\x8b\xe6\x0d\x7b\x9f\xa2\x26\x88\x32\xd1\xbd\xc7\x20\x84\x3d\x35\x37\x96\x9a\x72\xbe\x86\x5a\x97\x2e\x3e\x4c\xbc\xed\xba\xcb\x4e\x25\x89\xe9\x93\xef\x5c\xb6\xbb\x89\xe4\x21\x16\x2b\xe1\x7c\x6b\x15\xad\x1c\x5b\x08\xd7\xd0\xc9\xe1\x23\x36\x53\x55\x90\xac\x70\x7d\xfd\x68\x48\xdf\x53\xff\x86\xd3\x2f\x8a\x22\x94\x8f\x7f\xce\xa8\x8b\x15\xfa\x61\x69\xf9\x23\xa6\xb7\xb8\xc1\x67\x3e\x98\xe0\x1d\x53\x57\xf5\xc6\x1c\x1d\x43\x00\xf8\x61\x82\x83\xa1\xc2\xa8\xd1\x6e\x3e\x3e\x37\x67\x30\x19\xb4\x82\xd6\x2b\x55\x91\x50\xd5\x88\xa2\x47\x8e\xb2\x83\xf7\xff\xe3\x9a\x9a\x16\x02\x77\xc2\x19\x74\x7d\x1c\x97\x16\x37\x78\xfe\x79\xb9\x54\x18\x78\x7a\x4a\xc0\x2a\x7c\x76\xb1\x1e\x07\x37\x68\xa5\x36\xfa\x62\x10\xfb\xa3\x0b\x7a\xb7\xe2\xdf\xbb\x18\xeb\xec\xa0\x31\x2c\x8f\x4c\x67\x6e\x5d\x95\x42\x35\x7b\x95\xa6\xdc\xe1\x8a\x3c\x2d\x9b\x8b\x07\x4f\x80\x9d\x8d\x2c\x5c\xda\xb9\xe0\x2a\xb3\xfd\xe8\x43\xe5\x15\xf2\x72\xf6\xeb\xa0\x17\x51\x6d\x58\x08\x3f\xb1\x7f\x19\x49\xfa\x65\x4d\xa1\x8b\x0a\x68\xb7\x71\xc2\x11\xab\x48\x88\xc3\x59\x75\x2d\x19\xda\xdf\x7f\x5a\xb2\xf8\x04\x5d\x91\x83\x30\x52\x0a\x43\x81\x2c\x5b\x92\xd4\x68\x8d\x25\x06\x20\x49\x8a\x34\xe6\x8d\x45\x0b\x42\x4a\x82\x60\x76\xd8\xac\x14\xd0\x4c\xfa\xa7\xff\xa9\xfe\x5b\x74\x02\xac\x30\x01\xa2\x75\x04\xf4\x9a\x7b\xba\x55\x91\xc3\xfc\x08\x87\x99\x82\x61\x22\x5b\x35\x3d\x8a\x7a\xa5\x9a\x0f\x4b\xa9\x7e\x8e\x96\x2d\xdb\x30\x12\xcd\x0b\x49\xe4\x39\xa8\x9c\x7c\xa7\xd2\x42\xcd\x11\xa8\x7e\x25\x76\x19\x28\x5f\xea\xb8\x0e\xfb\x7a\x88\xb2\xa7\x76\x21\x4d\x76\xc2\xbb\xba\xa0\x02\x05\x9a\xcc\x04\x47\x6c\xff\x45\x22\x45\xa4\x72\x0b\xec\x92\x3e\x8f\xd6\xef\xba\xd5\x81\xa6\xd0\x4f\x25\x1e\x22\xbf\xf2\x2d\xf5\x50\x46\x11\x0b\x38\x95\xc6\xbb\xfc\x16\x96\xb1\x8c\x0b\x8b\x1d\x9e\x98\x80\x0f\xce\x46\x4f\x75\x0e\xeb\x18\xad\x9d\x04\xa1\xa3\x6a\x4a\x0d\x45\xbd\x3e\x44\x22\xeb\x6f\xea\xea\x5d\x9d\x91\x40\x92\xa9\xd1\x88\x92\x64\xa3\xf8\x06\x10\x2e\x1c\xd5\x9c\xf7\x4a\x5d\x6a\x73\xb8\xc1\xff\x56\x12\xa5\x04\x53\x5b\x62\x62\x2f\x20\x35\xab\x66\x41\xf2\xe7\xba\xf6\x56\x7d\xb6\x4f\x95\xc2\x16\x4f\x10\x65\x79\xb4\xba\x1c\x0a\x20\x6f\x80\x60\xd6\xc4\xa8\x64\x3f\xef\x86\x7b\xdd\x29\x9e\xed\x84\xcf\x40\x2c\x7a\x7a\x89\x8a\xba\x34\x6c\x0d\xea\x7b\x59\xa6\x5a\x1d\x2c\x70\x71\x3d\x45\x07\xf6\xa7\x84\xe8\x82\x63\x52\xba\xae\x64\x1b\xa1\xb5\x66\x75\xca\x57\x12\x79\x05\xeb\x56\x60\x7f\x23\xb2\xc6\x8d\xa5\x34\xe9\xbc\x40\xa4\xd7\x3c\x24\x9c\x55\x11\x5c\x54\x61\x50\x2d\xb9\x3c\x4a\x99\x5d\x12\xfa\x86\xf0\x19\xb9\x5d\xa5\x95\xb3\x07\x74\x47\xf9\x07\x32\x9d\x88\xe8\x51\x44\xce\x07\xd2\x21\x85\x52\xb7\x5d\x6d\xb1\xb9\xed\xc9\xe2\xc6\xe5\x76\xbc\xed\x79\xaa\x57\xe7\xf4\xcb\x64\x69\xaa\x7e\xc9\x1f\xef\xf9\x5f\x98\xf4\x79\xe3\x2a\x35\xed\x0c\x9b\x8f\x6c\x55\xf8\xa2\xe8\xf3\xed\x5e\x9c\x46\xa3\x75\xf7\x0c\x6c\x2d\x11\xb9\x3d\x18\x8b\xd5\x3f\x38\xde\x67\xa1\xde\x0a\x68\xa8\xfd\x24\x88\x1f\x9a\x18\x34\xc7\xa4\x83\x38\x0a\x51\x51\xc8\x82\x07\x23\x18\x07\x89\x09\xbb\xeb\xd1\x7d\xad\x3a\xf2\xae\x31\x11\x54\x41\x62\x8e\x8d\x6a\x0f\x4a\x25\xf8\x90\xaa\x1a\x72\x09\xcb\x14\x1d\x52\xf5\x50\x97\x7d\x5a\x77\x53\x5e\x9e\x27\x55\x11\xa1\xc8\x5f\xfb\x08\x34\xcc\x35\x2a\x54\x81\xc6\x83\x9c\x7f\xcb\x80\x92\x1f\x45\xbd\x5b\x17\xc0\x59\x06\x74\x72\x13\xe9\xa2\x5f\x9b\xfd\x69\x3f\xc0\x3a\x03\x70\x00\x9b\xa0\xd1\x02\xa2\x5d\x9b\x81\x3f\xa6\x64\xf3\xfc\x44\x19\xcb\xb6\x4d\x8f\x8e\xfd\x2f\xa4\x67\x4c\xbc\x93\x08\x10\x22\x16\x05\x41\xff\x58\xa7\x30\x1f\x57\x19\x28\xec\xa1\x82\x1c\x15\xc8\x76\xa2\xbf\xde\xfb\xc8\x2a\x0e\xeb\xfd\xb6\xbc\x4a\x39\x98\x10\x76\x30\x26\x9e\xa0\xc6\xca\xef\xef\xe7\xdc\x74\x2a\x05\x79\x69\x42\xf3\x88\x2c\x20\x75\x2e\xcb\xa1\x93\xad\x5b\xa6\x16\xfc\xce\xd9\xf2\x60\xe0\xff\xe5\xe5\xca\x4d\x48\x50\x70\xeb\xd3\x06\xc1\x6e\x8a\x64\xe4\xb0\xa9\x8f\xec\xb8\x82\x01\xc3\xfd\x6f\x5f\x4b\xf4\x14\x72\x95\xa4\x90\x71\xb2\x96\x13\xf6\x69\xb7\xee\xb2\xba\x78\xc2\x18\xad\x7d\xc8\xea\x86\x95\x13\x5f\x21\xcd\x82\x23\xe1\x9c\x22\x77\xa4\x75\x45\x4f\x54\x80\xe6\x63\x30\xf4\xa1\x7a\x7b\x74\x71\x86\x9c\x09\xbf\x31\xd5\x33\x17\xa5\x14\x24\x76\xa3\x8e\xe8\x7e\x26\xa7\xe0\xc5\x48\xe7\x50\x75\xb0\x46\x07\xf2\xba\x59\x8f\x67\x54\xd7\x67\x74\x4d\x62\x8e\x37\x8c\x7b\xee\xa0\x2f\xad\x4b\x24\x72\xef\x09\xf3\x9e\x41\xd8\xc0\x0e\x20\xec\xa9\x63\x15\x68\x00\x5f\x8d\xf2\x66\x66\x6f\x63\x54\x1a\x6f\x02\xcc\x4d\x5f\xf5\x0c\x80\x9c\x51\x56\x34\x63\x10\x37\x89\xa3\x23\xf2\x19\x03\x1b\x06\x53\x61\x11\xd9\x27\x07\x2c\x53\x28\x72\x7f\x89\xcf\x88\xf9\x4c\x00\x22\x6b\x6b\xdb\xaa\x06\x3d\xa1\x32\xec\xf9\x20\x27\xcc\xaa\x06\x3e\xe5\xce\x2c\xba\xa9\xfd\x6b\x9b\x9a\xaa\xff\xd9\x95\x96\xeb\x9b\x7e\x54\xec\xbb\x6c\x18\x4c\xa0\x48\x51\xe4\x7f\xce\x9e\xbc\x15\xcc\xca\xea\x67\x67\x54\xef\xfb\x7a\x8e\xf3\x25\x4a\x3b\x87\x12\xc0\x5a\x9f\x22\x2d\xcf\x54\x63\x64\x1b\x7c\x14\x02\x45\xe1\x85\xfa\x7d\x78\x4d\x05\x5a\x07\x26\x6f\x1b\xda\xe6\x6f\xb2\x58\x41\xec\x08\xa8\xad\xfd\x10\xf6\xe0\x54\xf9\x6f\xf5\x32\xae\x43\x04\x20\x8a\x4c\x20\x79\xa4\xea\x52\x12\x79\x36\x5f\xea\x68\xe5\x73\x85\x87\xe4\x5b\x75\xca\x74\x8b\x56\xe0\x73\x48\x29\x7b\xc0\x51\xd0\xf4\x93\x5a\xa0\x5a\xe6\x6e\xdc\xd2\x7d\x79\x67\x63\x08\x53\x05\x38\x86\x91\xec\x30\xd4\xb8\x8b\xfa\x07\xc3\x94\x4b\x95\xe7\x04\xd2\x8e\x9d\x5d\x8d\xd7\xe2\x90\xdb\xc3\xba\x59\x86\xc9\x65\x25\x7a\xaa\xca\x47\x17\x53\x00\x78\x4e\xb7\x5a\x14\xea\x81\xf3\x72\x39\x82\x09\xe9\x00\xb4\x98\xff\x78\xf5\x99\x97\x3e\x51\x2e\xf5\x92\x09\x1b\x75\xf5\x19\xef\x4a\x49\xc9\x4f\x00\x30\x90\x95\x15\xfe\x59\xa2\xe6\x10\x54\x2b\xc5\x42\x5c\x8b\x92\x24\xc1\x1c\x1c\x0b\x02\xf5\xc2\xb3\x78\x13\x42\x29\x95\x48\xa2\x2b\xc5\xc7\x08\xc4\xdf\x4d\x5f\xa6\xa8\xba\x60\x6e\x98\xec\xdc\x84\x17\xcb\x3c\x0f\x08\x8a\x35\xcf\x61\x8a\x54\x8c\xc8\x2c\xae\x06\xc8\x60\x1b\x23\x84\x60\xd0\x84\xba\x89\x4f\x65\x9e\xd7\x8f\xb1\x99\x7a\x3b\xab\xc2\xb8\xe9\x59\x54\x44\x0b\x5b\x6c\x81\xc7\xf1\x21\xd3\x7d\x36\xb1\xf7\x5a\x18\x76\x69\x01\x42\xb2\x13\x43\x8f\xa8\xcd\xae\x93\xcf\x43\xf0\xb0\xe2\x89\xe7\x55\x2d\x78\x77\x20\x03\x21\xdb\x6c\xcc\x95\x47\x77\x78\x5c\xe8\xa7\x87\x1c\x86\xba\xc7\x58\xf3\x14\x28\x3a\x4e\x82\x39\x43\x12\x08\xa1\xbc\x95\xbe\xf5\x16\x2b\x60\xec\x4d\x28\x4a\xc3\x5a\x6f\xd8\x61\x61\xa2\x0d\xb3\x95\x8b\x3e\x83\x41\xcc\x62\xd6\xfb\xcc\x12\xf5\x22\x97\x58\x7f\x1a\x5d\xe7\xde\x4f\x92\x34\xba\x0b\xf5\x1f\xec\xcc\x6e\xd3\xab\xec\x92\x3c\x43\xb8\xb2\xf4\xe6\x45\x5e\xd8\xc0\xff\x57\x0d\xcc\x4f\xeb\x1c\x04\xe0\x28\xcc\x88\x7a\x10\x99\x81\x0c\x85\x38\x45\x4c\x0a\xb9\x20\x68\x96\xae\x3a\x76\xf2\x41\xae\x40\x92\xb8\x76\xb8\x2a\x08\xc5\xdc\x3f\x7d\xa8\x16\xaa\x35\x39\x2f\x5b\x1f\x6b\x91\x3a\x8a\x38\xd5\x5f\x62\xc2\xe3\xf3\xf0\x87\x90\xf2\x01\xd5\x36\xe1\x3f\x5b\xce\x2e\x78\x93\xed\xba\x3e\x6e\x9b\x10\xbe\x75\xde\xbe\x02\xeb\xb0\x87\x08\x7d\x85\x40\x22\xef\x9a\x67\x36\x90\xa6\x7a\x07\x54\xc8\x33\x26\x7b\x7a\xae\x29\x8b\x46\x32\x6d\xe9\x54\x01\x53\x46\x5d\x39\x88\x52\xe3\x28\x2e\x76\xc1\x96\xc5\xe9\x3d\xa7\x3b\x4c\xea\xd8\x1d\x08\x85\x20\x9a\x26\xd6\x75\xf5\xae\x06\xd1\x05\x8d\xee\x00\xbc\x61\x00\x96\x89\x4e\x56\x6d\xef\xe4\x94\x55\x15\x3e\x21\x3b\x74\x09\xfd\x29\xb3\x49\x77\x14\xb9\x05\x62\x8c\xf0\x7f\xaa\xca\xbe\x6b\x9a\xb4\x78\x47\x6c\xc9\x40\x45\x4c\x49\x16\x10\xbd\x1f\xcc\xb9\x2f\x97\xe5\xc5\x1e\x7e\x02\x09\xe3\xb3\x40\x00\xe3\xf0\xe3\x2c\xb5\xe6\xcf\x18\xf2\x71\xeb\x6e\x8d\x2d\x97\x70\x9c\x87\xab\xb3\x6f\xc5\x4c\x0e\x3a\x87\xa8\x11\x8a\x8b\xd3\xdc\xa2\x93\x08\x6c\xab\xcd\xcc\x78\xb7\xb3\x05\xd1\x97\x34\xa7\x2d\x5e\x96\x92\x83\x8d\x74\x8a\xd5\x87\x2c\x61\x83\xad\x6a\x50\x0c\x82\xf8\xf5\xe8\x71\x52\x70\x14\x8d\x23\x08\x98\xff\xcc\x98\xe2\x24\x7e\x88\xc3\x16\xb7\x4b\x6c\xe5\xed\xba\x3c\xe9\x84\x2d\xe4\x59\x27\xa1\x35\x83\x87\xb9\x49\x6d\xe8\xba\x5d\x67\x3e\x47\x64\x0d\x29\xa1\xb6\xda\x74\xb4\x96\x77\x45\xdb\x2d\x41\x09\x4f\x21\xa0\x40\x4f\xd5\x62\xd5\xf6\xda\xac\x65\x29\x2e\x6c\x5a\x38\xe5\x3b\xda\x1a\xed\x93\x84\xc2\xeb\xcc\x43\x4e\x81\xd5\x4f\x62\x2c\x57\xba\xa0\x39\xca\xbd\x65\xf0\x83\x2e\xf5\xbf\xb7\xb7\xc7\x7c\xe0\x04\x1a\x34\x0e\x04\x2b\xe5\xd9\x13\x9e\x5b\xc8\xd2\x2c\x7c\xbb\x6b\x43\xd9\xc3\x0b\xe5\xe1\x7b\xd9\x3e\xaf\xa7\xbc\x1b\xf3\x99\x72\x9e\xab\x55\x72\x15\x52\xfd\x79\x07\x00\x21\x8d\x43\xc1\x9b\xf6\xee\xbe\xb1\x32\x19\xfd\x93\x77\x1d\xde\x3f\x7c\x3b\x73\x78\x65\xcb\xbc\xd8\x8e\xb1\x89\xaf\x46\xa9\xd9\xeb\x4e\x08\xd7\xdd\x86\x6f\xb5\x04\x9f\x8f\x7e\x67\x13\x1f\x6d\xff\x6b\x97\xbe\x66\xd1\xed\x04\xe2\xe5\x86\xc4\x9f\xa7\x33\xfc\x05\x6e\x2d\xf4\xa5\x2b\x72\x3e\xa7\x21\x8b\xde\x51\xa8\x27\x76\x94\x16\x0f\xd2\xf3\xfd\x1f\xac\xef\x36\x4f\x5b\xe8\xed\x2a\xc3\x4d\xbb\x60\x8e\xca\x4a\x23\x3a\x1e\xf5\x16\x26\xa4\x45\x57\x14\xe9\xe2\x58\xf0\x74\xca\xac\xa6\x21\x9b\xd6\xe1\x30\x11\x3b\xca\xdd\xc3\x94\x02\xff\xf3\xeb\xea\xf3\xfc\xd6\xb1\xda\xaa\x85\x8b\x76\xb8\x80\x6e\x12\x11\x54\x70\x58\x79\x65\x1a\x77\x03\x67\x27\x9f\xe4\x96\x89\xb2\xa1\xfc\x2c\x63\xb9\x8a\x8e\x93\x2f\x49\x8e\x70\x49\xc5\x59\x10\x41\x66\x36\x84\xa7\x04\xa6\x27\x9f\x87\xaf\x74\xe4\x06\x05\x89\x34\xa3\x7e\x2a\x63\x7d\x51\x70\x50\x82\x43\x02\xe9\x9d\x9f\x0c\x74\xcb\xc4\xd9\x10\x5f\x36\x08\x57\xd9\x90\x2c\x4d\x0e\x0f\x86\x02\x20\xc7\xae\x00\x66\x88\x1e\xed\x66\x21\x43\x73\xe3\x75\x08\x29\x7c\x04\xe2\x41\x41\xb9\x9a\x11\xbf\x79\x73\x9b\x19\x91\xde\x3e\x9e\x99\xd2\xe3\xeb\x58\xa0\x3c\xb1\xd1\x98\x70\x90\x64\x12\x4c\xaa\x0c\xb8\x76\x77\x61\x37\xc6\xac\x70\x62\xd5\x56\xb8\x43\x82\x0e\x35\x73\xa5\xd9\xdc\xa3\x32\xc1\x2f\xa9\x7f\x93\x66\xab\xdf\xce\x59\xf6\x5a\x55\x70\xee\xa7\x74\x41\xae\x08\x35\xc3\x29\x76\xef\x27\xd6\x14\x93\xbb\x4f\x29\x39\x69\xe8\xcf\x41\xfa\xc6\xaf\x8c\xe2\x7c\x9f\x18\xb8\x78\xec\x0d\xb0\xbe\x07\x46\xb6\x7c\xb0\x4a\x9e\xff\xdb\x88\x0f\x40\x3c\x1c\xf4\x80\x03\xb9\x48\x50\x03\xfd\x5d\x1d\xba\xe7\x68\xe8\x7d\xb0\x29\xa7\x13\xfc\x77\xd6\x6d\xe7\xae\xbc\xde\x12\x6b\x26\x76\xb8\xad\xba\x47\x7b\x9f\x8b\x3d\x8c\x3a\x82\xa4\x98\xee\x57\x2f\x76\x26\x0e\x96\x34\x18\xf2\x1a\x52\x77\x09\x6f\x33\xbe\x2c\x00\x71\x23\xf8\x73\xa2\x3f\x29\xee\xb8\x76\x17\xf6\x97\xdb\x5b\x30\x4b\x4b\xab\x7b\x75\xf7\xb8\xf8\x23\xa8\xc3\xc9\x78\xf3\x83\xaa\xc3\xcf\x19\xb8\x48\xbc\x98\x3b\x7d\xb7\xe8\x4e\xf4\xa7\x39\x20\x62\xc7\xec\x14\xe1\xbd\xa6\xcd\xc0\xdd\xbf\x52\x0f\xd4\x6f\x64\xde\x1a\x08\x9f\x26\xda\x5b\xf3\xb0\xfe\x76\xc9\x3e\x27\x0a\xb6\x9f\x59\xf5\xad\x6a\xf5\xb6\xd5\xe9\xdf\xaa\xe7\x6e\xa3\x5e\x80\x26\xe3\x9a\x13\x0b\xb2\xd3\x16\xfa\x44\x91\x61\x59\x70\x45\x70\x3e\xf7\x3b\xdf\x30\xe9\x3e\x4f\xe1\x84\x10\x31\xbf\x3e\x1a\x29\x0a\xe3\x63\x60\x31\x26\x01\x40\x89\x68\x51\x28\x21\x40\x8e\x3e\x51\x8f\xde\x8d\x14\x82\xbf\xe9\xf0\x26\xc1\x62\xbc\xc1\x92\x08\xf0\x80\xe0\x7e\xeb\xa2\x63\xc2\xaa\x3c\xf2\xdb\x7a\x58\xf7\x07\x22\x07\x98\xf7\xab\xf1\xa8\xb0\x32\xdf\x02\x98\xa8\xf7\x3f\x9f\xc9\xf0\x5a\x12\x33\x60\x2a\x4c\x19\x1c\xaf\x5f\xaa\x0f\xf5\x59\x18\x33\xd7\xe8\x34\x0e\x4f\x08\x93\x02\x0a\xaa\xeb\xff\xdb\x3a\x15\x0a\x91\x4e\x9c\x7c\xfb\x4f\xb2\xc2\x1c\x27\xff\x99\x89\x88\x44\x2b\xc8\x3c\x34\xa4\xbe\xa6\xba\xd8\xcf\x9c\x75\xb8\xa9\xf6\x62\x7c\x43\xc1\x22\xb5\xae\x9a\x3c\x6e\xcf\x84\xd6\xe5\x76\x15\x37\xf0\x32\xf7\x84\x77\xc5\x06\xea\x72\x87\x8b\x2a\x8b\x0c\x10\x7f\x59\x84\x18\x8d\x66\x64\xc2\x73\xbf\xc7\xc0\xcc\x99\xbd\xd5\x25\x87\x89\xae\x8a\x15\x4c\x7e\xd3\xe4\x8d\x5a\xe2\x82\x2c\x89\x8a\x1c\x0e\xe1\xba\x49\x4c\x54\xa3\xad\x7c\x8b\x6a\xaa\x39\xf7\x28\xa1\xa2\x60\x19\x35\xc7\x93\x3b\x96\x0d\x03\xe3\x65\x1b\x65\x18\x44\x59\x73\x81\x89\x1c\xae\x13\x60\x93\x90\xc4\xe5\xd2\x94\x3e\xec\xf6\x89\xed\x6c\x58\x6a\x41\xe0\x2e\x03\xf1\x45\x14\xf5\xce\xe0\x4a\xec\xb1\xe8\x95\xd7\x72\x9f\x44\xbd\x16\x93\xe8\x13\xb5\x94\xf8\xd2\x39\x56\x4d\x15\x79\xad\xde\x49\x3c\xd6\xdc\xbb\x26\xe9\x30\x1e\xc5\xcf\x2e\xcf\x1b\xdf\xe0\x8a\xd8\x66\x6b\xb0\xea\x09\x52\x3a\x22\x0b\x96\x91\x42\xc2\x38\x52\xb8\xe6\x48\x2a\xfd\xc4\xbd\xd4\xef\xec\xa4\xcf\xc7\x9f\x85\x55\x6d\x23\x36\x95\x72\xfa\xdd\x2d\x25\xcb\xf1\x54\x0d\x1c\x5d\xb2\x52\x5a\xdc\x84\xda\x57\x54\xc6\x5e\xab\xea\x5d\x11\xd7\x94\x9e\x53\xf7\x8c\xf0\x6e\x77\x96\x1f\x31\x50\xcf\xdc\x07\xb7\x1c\xf8\xf1\xa6\xa2\x4e\xf6\x20\x57\x13\x56\x9e\x22\xd5\x46\x23\x58\x39\x51\x78\x39\x36\x35\x85\x8c\x2d\xe2\x0a\x34\x31\x0c\x09\xd7\x07\xd8\x08\x8d\x8c\x9c\x75\xfd\xd7\xc9\xef\x3f\x17\x7e\x8a\x29\x2b\x9b\x4b\x8e\xcf\x62\x55\xee\x77\x14\xc7\x8f\xd5\x65\xee\xc5\x16\x97\x9c\xc0\xce\x2c\xf9\x47\x65\x4d\x0d\x2b\x4b\xd1\xe6\xf1\x04\xc9\xf0\xac\x91\xec\x22\xf6\x90\xbd\x78\x01\x53\x54\x74\x00\xd3\x56\xcc\x19\xfa\xf5\x6d\x02\x36\xa7\x44\xbc\x17\x11\x6f\x3e\xed\x6d\xfd\x84\xf4\xda\x42\x73\x9c\x08\x63\xc5\x49\x31\xcb\x4c\xa4\xfc\x89\x08\x0d\xd6\xe7\x5b\xf5\x50\xbf\xcc\x49\x11\x06\xcc\x10\x62\x1e\x21\x32\x13\x45\xbf\xd5\x6c\x82\x57\x59\x28\x75\xfe\xb9\xc3\xf5\x64\x5b\xc9\x84\xa8\xac\x1e\xb7\xaf\xb8\x8c\x75\xb6\x6a\xde\x09\x79\x4d\xd1\x9a\x66\xfa\x04\xeb\xe7\x9e\xd8\xdd\xaa\xc8\x95\xbb\xd0\xa6\x33\xd0\x17\xe1\x3f\x52\x05\x50\x9e\xeb\x62\x5a\x56\x0c\x49\x96\xa9\xa2\x61\x2c\x65\x2c\x5a\x8d\xb6\xf0\x08\x48\x37\x47\x94\x03\x65\x07\x04\xc8\xfa\xdc\x10\x6c\x38\xf0\x60\x28\x57\x5b\xfd\x54\x53\xb7\x13\xe4\xe1\x75\x7d\xdf\xe8\xbe\xca\x13\xcf\xf7\x31\x03\xc1\xa2\x60\x9e\xb0\xea\x39\x7e\x1d\xaa\xde\x99\x7a\xea\xdc\x7e\xf2\x87\x23\x52\x90\x1d\x29\x66\x33\xa6\x70\x62\x09\x4e\x40\x14\x51\xf5\x85\x09\x46\x10\x3b\x42\x48\x60\x06\xc3\x01\xee\xac\xa1\xaa\xa2\x43\x88\xa2\xea\x63\xc8\x16\x27\xbd\xd7\x21\x87\x97\x28\xd2\x4d\x49\xdb\x1f\x62\xff\xe4\x45\x91\x62\x89\xa6\xe1\x93\x51\x94\x8b\xc3\x02\x62\x58\xf1\xf2\x1b\x14\xea\xc1\xe5\x1a\x9e\x30\x12\xef\x55\x10\x79\x5a\xb6\x24\xcf\x22\x41\x2b\x13\xaa\xbf\xe6\xb1\x51\xa9\xe6\x44\xbc\x0b\xd2\xe9\x67\x08\x74\xf3\x66\xcd\x0d\x0e\x9a\x58\x9d\x0a\xfb\x81\x11\x82\xa9\xfe\x93\x1d\x88\xda\x8c\xb7\x87\x35\xe4\x78\xb7\x32\x4e\xe4\xd7\xb7\xe2\x2d\x9e\x99\xa4\xba\xfd\xcc\xdf\xbd\x67\x11\x7b\x2d\x7e\x70\xce\x1a\x62\x3a\x43\x99\x7e\x6f\x67\x26\xe3\x9b\x96\xb0\xd0\xc2\x08\xa1\x3f\x69\xc9\x1d\xfb\x9c\xe3\xb4\x6f\x3e\x6b\x89\x6b\xa2\xa1\x73\x37\x26\x9a\xfa\xcb\x4e\x68\x7b\x66\x98\x93\xeb\x54\x7c\xb3\xe2\x8b\x59\xfe\x88\x22\x6f\x10\x41\xff\xe4\x93\x30\xa3\x6d\xb0\x09\xf3\x3e\xfe\x80\x3e\x2e\x06\x7b\x6f\x4c\x8e\x95\x8e\xc5\x9c\xc7\xc5\x0e\xc1\x29\x33\x00\xbe\xe2\x8f\xcd\x67\xe3\xe6\x14\x66\x0f\x5a\x00\xee\xb2\xfd\x56\xfa\x4f\xf9\x19\x14\x03\xc6\xc2\xcd\x92\x4f\x35\xe6\x9c\xc2\xb6\xfc\x3d\x63\xdd\x1f\x75\x80\x96\xaa\x24\x40\x51\x65\x41\x11\xc0\xb7\xf5\xc7\x06\x40\xa7\x1d\x60\xf5\x54\x69\xcb\x00\xb7\x96\xc8\x0b\x6f\x81\x2a\x35\xc7\x9a\x2b\x8e\xb1\xea\x6a\x6f\xda\x66\x2f\xf2\xff\x5c\x54\xbf\xd8\xe7\xcf\x79\xe7\x6f\xd8\x3a\xec\x67\xd9\x33\xab\x14\x6b\xdb\x6a\x11\x1b\x05\x38\x33\x9f\x61\x0a\xa3\x09\xed\x78\x5a\x39\x76\xdc\x75\xf1\x41\xcb\xf5\x99\x69\x5d\x25\x5b\x7a\x56\x77\x26\xc0\xf8\xc2\xc5\xdf\x39\xb7\x2c\x27\x7d\x1e\x6c\x19\x4c\xfa\xb4\x69\xec\x65\xe1\xbc\x2d\xe7\xaf\xbd\xac\xc8\xa9\x24\xab\x6b\x61\x33\x25\x6d\xa9\xd0\x69\x53\x7d\x1d\xdd\xc0\x64\x24\xb8\x0c\x63\xe7\x9e\xdf\x73\x2f\xf9\xf2\x8f\xc3\xe9\x86\x58\xe6\x87\xfc\x1a\x7d\xe0\x67\xeb\x75\xfd\x71\x72\x87\x2d\x92\x77\x7a\xc7\x11\x83\xb8\x06\xb7\x8e\x68\xed\xb8\x69\x1c\x98\x17\xbf\x1b\xbe\x38\x1c\xf0\x6e\xc1\xd6\xcb\xc6\xda\x8a\x93\xd4\xce\x06\xde\x81\xed\x25\x11\x3b\xaa\xcb\x6c\x36\x9c\x3e\x89\x5d\x1a\x3d\x5e\x7c\x09\x70\xb7\xac\x6b\x0e\x10\xff\xa9\xdd\x72\x18\xe0\x37\x7d\x3b\x20\x55\x02\x2b\x5f\x5d\x0e\x0f\xef\x86\xd7\xd4\xaf\x56\xc1\xc2\x83\xa0\x63\xd9\x93\x98\x57\x98\x27\xd9\x4f\xa0\xaf\xa0\x91\x6c\xca\x18\x12\x00\x7e\x0f\x48\x50\x2e\x36\x56\x8c\xb3\x4b\xf2\x57\xf0\xdd\x55\xf2\x03\x80\x1a\x14\xa0\xc1\x9d\x99\x83\x90\x91\xab\x71\x5a\x76\x04\x47\x3f\x7c\xf0\x48\xa2\x62\xd1\x59\x35\xf3\xb8\xf9\xb9\xe9\xc5\x4c\xbd\x73\x4c\x35\xfe\xd8\x93\x1d\x23\xe7\xaf\x08\x91\xd8\x0b\x63\x5b\x23\x56\x93\x0a\x3e\x49\x63\x7b\x94\xb6\x3d\x28\x9f\xb7\x98\x3c\x6d\xe0\xd2\x86\x57\x81\x85\x18\x11\xa0\x1b\x5d\x0a\xfa\xad\x9b\x86\x8c\xdc\x0a\x00\x6f\x45\xe1\xe4\xfb\xf2\xe6\x0b\x5f\xcd\x3b\x7b\xcb\x36\xdd\x75\xd5\xd6\xbb\xc8\x7d\x39\xff\xf5\x7c\x8f\x57\xa5\x77\xdd\x3e\xbd\xfa\x96\x7d\xde\xa2\xf0\xd5\x7c\x5d\xa0\x19\x33\x98\x56\xee\xa0\x70\x25\x7a\x0a\xbe\x1c\x3e\x68\xbe\x6f\x72\x0d\xdc\xca\x7c\x2a\x57\x62\xa2\x52\x2a\xb0\x83\x66\xfc\x11\x28\x0c\x19\xa6\x49\x66\x9a\x4f\x71\xfa\x9c\x99\x4b\x59\x4e\xc1\x7c\x93\xfd\x14\xbb\xf9\xb3\xc9\x9f\x53\x8d\x91\x47\x30\x1a\x26\x1a\x63\xe4\x33\x8d\x91\x94\x9f\xa3\x33\x45\x4c\x40\x6f\xd2\x6b\xa3\xee\xed\xcf\xe3\x47\xbc\xbf\x1b\x65\x06\xd0\xa6\x9f\x73\xf4\xcd\x71\x1f\x34\x7f\x1d\x90\xbe\xee\x3b\x7f\x5c\xf5\xd3\xab\x6f\x3b\xe6\x2d\xc5\xbf\x1e\xd0\x05\x5a\x30\x43\x69\x95\x85\x14\x9e\x34\x99\x8a\xaf\x80\x0f\x59\xbe\x49\xe0\x75\x5c\x8f\x95\xce\x95\x99\x69\xd4\x62\x4c\x9d\x24\xda\x86\xff\x98\x10\x71\xb6\xfd\xd0\x7a\x8e\x37\xb7\x32\x7b\x36\x57\x0d\xaa\x94\xa4\x9a\x84\x67\x09\xa6\xe0\x18\x5c\xbd\xcf\xad\xe6\x6e\x7b\x69\x5e\x95\xbd\xe2\xfd\x68\x6e\x6d\x47\x74\xa0\x58\x40\xca\x8c\x97\x40\x8c\xc8\xc3\xaa\x99\x79\xea\xde\x14\xab\x64\xb0\x35\xeb\x18\xa1\xaa\xee\x3c\x73\x76\x99\x62\x36\x35\x62\x37\x4e\x7b\xc5\x42\xa0\xf2\x0c\xa8\x65\x9c\x88\x16\x1b\x25\x54\x61\xf2\xa3\xb9\x11\x69\x98\x03\xba\x96\x22\x56\x5f\x92\x43\x3c\xd0\x6c\x39\x86\xa9\x96\xb6\xf8\x77\xb0\x73\x54\x52\x2b\xb4\x5e\x03\x71\x13\xd2\x0d\xd9\xe4\x4c\x34\x9d\x67\x40\x5e\xc0\x0b\xd8\x22\xc8\xdd\x33\x57\x51\x57\x8f\x8d\x2d\xa3\x49\xee\x8d\x01\xf8\x42\x9b\xe8\x82\xab\xe7\x24\xbb\x31\x7f\x99\xdd\x59\xcb\x39\xe9\xb4\xd2\xc8\x6f\x12\x80\x8e\xf4\x85\xe6\xe2\xdc\x6e\xc0\x7c\x3d\xc9\x44\xd7\xb2\x3d\x1c\x64\x12\x7a\xe9\x58\x08\xba\x77\x0c\x07\xe5\xec\x13\x83\x36\xa5\x7a\x05\x9d\x14\xff\xe3\xbf\x29\xd2\x5f\x67\xfd\x27\xa8\x57\xec\x06\x2a\x49\xf0\x3b\x57\x7c\x99\x40\xf3\xde\x82\x05\x2c\x1f\xfe\x70\x93\x24\x33\x30\x3c\x20\x5c\x99\xa9\x5b\xf1\x22\x13\x1f\x2d\x0e\x0f\x59\x9b\x88\xd9\x74\x18\xf0\xc5\x02\xbc\x75\xd9\x3b\x39\x98\xdd\x4f\x6e\x4f\x46\xed\x64\x92\xf1\xa7\xff\x80\x00\xb6\xc4\x72\x3e\x9f\xdb\x01\x20\xe7\x1d\x0f\x4e\x81\xdf\xc7\x53\xcc\x50\x5f\x31\x71\xd0\xe4\xf8\x80\x91\xa0\x95\x8f\xce\xea\x4e\x3f\x18\xb5\x91\x1f\x25\x8d\xef\x7e\x02\xfe\x08\xbc\x0c\x9e\x04\x3e\xda\xd3\x00\xd1\xe9\xfa\x68\x96\xe0\xf3\x45\x99\x42\x8b\x3b\xb5\xa7\xd7\x0f\x96\x10\xc3\x1a\xbc\xa3\x2c\x39\x27\x20\x68\x22\xd0\xba\xb9\xf0\x22\x3d\xbe\x4c\xb6\xf4\xcf\xd1\xff\x57\x09\xd4\x19\x49\x26\x95\x44\x40\xf5\x95\xa6\x56\x34\x18\x0e\xe2\x2a\x9d\x07\xe1\xed\x05\xdc\x2e\xe3\x2d\x23\xb4\x30\x73\x4f\xc4\x59\x86\x1c\x3c\xb5\x62\xf5\x6c\x17\x33\xdf\x7f\xfc\x64\x24\x4f\x9d\x35\xcc\x3d\x1b\xd1\xca\xb9\x5d\xba\x78\x42\x5e\x9a\xd2\xc6\xc3\x7b\xd4\xfd\x0b\x20\x03\x2c\xea\x4b\x4f\x9a\xa9\x6c\x52\x51\xda\x8b\xb9\xd2\x02\x63\x81\x4b\xe3\xb5\x3a\x34\x5d\x69\xa3\x0f\xef\x19\x76\xab\x4b\x33\x14\xf1\x08\x03\xb8\x4c\xe6\xcc\xb9\x4d\xcf\x82\x57\xbc\x81\x82\x80\x41\x99\xdd\x55\xc5\x0b\xa4\x82\xe9\x17\x12\xa7\xf7\x33\x2e\xd6\xe1\x8a\x32\x6e\x74\x0d\x9e\x57\x75\xa6\x1f\x22\xb7\x55\xb0\x47\xdd\xec\x20\x38\x5a\xae\x13\x85\xc0\x44\x7a\x2c\xca\x0c\x29\x4e\x0f\xc9\x00\x37\x24\x68\x0d\xd8\x9c\x6a\x50\x05\xef\x6e\xe5\xe2\x71\x99\x5b\x55\x43\x81\xd3\xe0\x91\x7f\x87\xfc\x8f\x6a\x62\x5b\xa5\xf9\x69\xe3\xca\x8a\x5e\xe2\xa5\x26\x18\x07\x56\xc2\x56\x6b\x91\xe4\x4c\x1b\x75\xed\xe0\x49\x43\x2a\x3f\x45\x99\x80\x36\xc1\xcb\x24\xa9\x23\x5e\x9d\x57\xb5\x8b\x3b\xa4\x27\xf3\xa2\x2a\x55\xf7\xe6\x55\x5e\x52\xd4\x96\x9e\x14\x4f\x6f\x67\x9e\x6f\x6e\xfa\xa6\x29\x3e\x49\xc1\x34\x03\x49\x74\x4d\x68\x16\xee\xef\xe9\x73\x07\x07\x94\x32\x1b\xae\x95\xe8\x07\x9e\x11\xa7\x22\x1c\xa1\xe9\x87\x6e\xc1\xd0\x58\x55\x8b\x3c\x8c\xbd\x32\x0f\x73\x1f\x93\x52\x2e\x9e\xad\xaa\x5e\x21\x54\x47\x32\x7c\x1e\xbc\x80\x86\xff\x6c\xb4\xbf\x27\xec\x29\xad\xb4\x92\x9b\xae\xf7\xa5\x72\x6d\xe4\x8a\xd4\xbb\xb5\x8b\xf7\xcb\x3c\x29\xcd\xf4\x7f\x03\x3d\xff\xc3\xab\xb2\x97\x9a\x4a\x8f\x53\xea\x58\x05\xe0\x3c\xba\x59\x00\xad\xdc\x26\xea\xa5\xa9\x1b\xeb\x2a\xeb\x69\x9b\x7b\x9c\x0d\xee\x69\x65\x6d\x2f\xe5\x52\x13\x9c\x83\x2a\xe1\xaa\xf5\x48\x72\x96\x0d\x7f\xfc\xca\xbe\xe8\x24\x7e\x8a\x2a\x81\x60\x42\x97\x49\x06\x03\xd9\x9b\x13\xd5\x2b\x75\x0e\x55\x27\xca\x5d\x4e\x38\xd8\xbc\xd0\x77\x31\x1f\xa3\xd3\x89\xfc\x11\x32\x0f\xd2\x23\x58\xa3\x22\xd4\x47\x07\x37\xf0\x25\xa6\xc8\x67\x75\x4f\x38\x8d\x9c\xd0\x2f\x04\xcf\xb2\x79\x50\xb6\x41\xc9\x64\x9a\x61\xf1\xa0\xf9\x65\x96\x18\x2f\x0e\x9f\xa1\xab\xa0\x8e\x36\xba\x0e\xc1\x2b\x63\xf4\xa0\x61\x95\x89\x7d\x27\xd6\xbb\x15\xa3\x64\xe1\xb1\x58\x09\xc7\x16\xfe\xb7\x87\x4d\xf5\xed\xac\xcf\x92\x08\x3c\xd9\xd9\x10\x1f\xb6\x52\x95\x2e\x05\xcc\x57\x0f\xaf\xdf\x6a\xd2\x03\x3d\x9a\x00\xfd\x57\x7a\xd1\x93\x9e\x0c\x0e\x4b\x52\x38\x44\xaf\x11\xbe\x5f\x0f\x5d\x5a\x21\x97\xd6\x47\xd7\x7d\x76\xa6\xf2\x58\x89\x91\x34\x35\xa9\xd2\xb2\xe9\x7f\x5f\xfc\x0f\x86\x4b\xa1\xd8\xb6\x2d\xa4\xcf\x20\xfc\x21\xe9\xe1\xdd\x84\xa2\x5d\xe0\xff\xf9\xcd\x88\x01\x7e\xd8\xd2\x64\xcd\x66\xad\x5b\xd9\x0c\x77\x96\xe0\xe6\x9a\x56\xfa\x2e\x13\x60\x94\x76\x91\x27\x42\x5e\x44\x78\x0a\x84\xf3\x5d\x9e\xa8\x32\xf1\xad\x9e\xca\xf3\x09\x6d\xce\x0b\x09\xd9\xce\xbe\xd4\x04\x2d\xf7\x9d\xcc\xa8\xbc\xa0\x6c\x75\x5e\x54\x5a\xd4\x37\xc3\x38\xc8\x32\xae\xd6\x84\xa6\xa7\x19\xd9\x38\x13\xb2\x4c\xe2\xc3\x42\x96\x26\xe9\x8c\x00\xe9\x2c\xde\xdc\x86\x8a\x68\xdc\x25\x5e\x4d\x49\xb7\xcb\x96\x4c\x24\x78\x34\xf5\x64\xdf\x6f\x30\x80\x6f\x0f\x30\x20\x11\xdd\x2c\xcc\xb7\x4e\x48\xcb\x7b\x70\x57\xda\x61\x1c\x44\x19\x47\x9d\x5b\xea\x06\x58\x09\xfd\xe7\x97\x44\xa6\x8a\x52\x94\x6c\xb4\x19\x5e\x26\x4e\xb5\x45\x56\x70\xef\x56\x2c\x9a\x94\x15\x27\xb7\xb0\xb1\xbb\x2b\x3f\xfb\x94\x84\x7f\xf5\x9d\xe1\xa4\xf7\x4c\x28\xcb\xfb\x08\x30\xc7\x65\xc3\x4b\xd9\xda\x5c\xf4\x66\x26\xe2\xcc\xb5\x0d\x91\x49\x20\x4b\x63\x8c\x88\x32\xa9\x93\x98\xae\xa6\x67\x87\x6d\x8b\x82\x54\xd4\x79\x70\x1a\xe7\xeb\x48\x09\x73\x7d\xf9\xde\x41\x62\x4e\xfe\xa9\xcc\x12\x4c\x21\x3d\xc0\xbd\xde\x8c\x8e\x0f\xb6\x45\x8c\xf3\xaa\x35\xb4\x2c\x29\x9b\xee\x68\xd6\x2f\x61\x2b\x6a\x57\x30\x1d\x56\x66\xb5\xc8\x97\xee\xce\xcb\x34\xa7\x72\xd1\xfe\x3c\x82\x11\xc5\x0e\x28\x0c\xdd\x6a\xdd\xaa\xe6\xd8\xa4\x02\x8e\xdd\xa5\x59\x41\x54\xb7\x9d\xa5\x77\x7a\x18\x75\xac\x80\xe8\xb5\x42\x6a\x62\x38\xac\xb8\x9c\x99\x1a\xb3\x26\x0e\x18\xc2\x87\x5e\xa4\xa0\xd4\x38\x1e\x18\x4a\x10\xf9\x5e\xca\x22\x07\x9e\x3c\xad\x42\x68\x42\x6d\xfe\xb1\xe6\x45\x71\x1e\x27\x7e\x5f\xf9\xeb\x2f\xf8\x17\x6a\x11\xfb\xed\x8a\x24\xcd\x4a\xbd\x35\xb1\x1d\x5d\x54\x83\x5b\xa0\x9e\x0a\xdf\x1e\x51\x84\x6e\x19\x1b\x8e\xd4\x15\xd3\x16\xbe\xc0\xf9\x5f\xed\x26\xc6\x0e\x55\x70\xf6\x9b\xff\x98\xc8\x71\xbe\x2f\xf2\x2e\x9f\x84\xe6\x84\xeb\x0a\x5e\x7d\xa7\x9a\xff\x69\x60\x4f\xcb\xb1\xff\x1f\x55\x7e\x2b\x78\x31\xfb\xe3\x51\x46\xfb\xb3\x37\xda\xe8\xec\x88\x72\x2a\xf4\xef\xc2\xbf\x0a\x63\x3e\x66\xcb\x8a\x80\xe0\xcd\x17\xf0\xf5\xf8\x6f\xd9\xa4\xbc\xdf\x10\x3c\xbb\x5e\xe1\xc4\x27\x42\x3c\x3f\x3d\x85\x10\xef\x84\x8b\xc2\xc2\x69\x19\x46\x1f\x51\x67\xf0\x5c\x50\x3c\xf5\xfd\xef\x9d\x8f\xfe\xb9\x50\x30\x2a\x7f\x72\x7b\xab\x31\xff\x4c\x89\x28\x27\x3a\x51\x4c\xd1\x47\x59\x23\x72\x13\x67\x7b\x2b\xea\xab\x6f\x75\x79\x2a\x9b\x67\x31\x61\x95\x14\x2b\x3f\x29\x8f\x9d\x1f\xcd\x23\x8e\x9f\x11\x26\xed\x35\xfb\x54\x25\xcd\x36\x37\x9c\x72\xc6\x55\xc4\x15\x1f\x28\xdf\x84\x0b\xaa\x8a\xd4\x3d\x0d\x67\x9f\x1d\xae\x03\xf8\x2d\xdf\xed\xa5\xb8\x0c\x7c\x1a\x69\x0e\x76\x80\x92\x8f\x2a\xe6\xea\xf2\x78\x07\x4b\x58\x79\x47\x4a\x36\xe1\x7c\xaa\xb0\x3a\x21\xee\x0a\x71\xb5\xac\x2a\x3a\x41\x4c\x4e\xa2\x58\xc3\xf2\x38\xb3\xb3\x9d\xf5\x35\xb7\xba\xb9\x00\x36\xce\x62\xc0\x95\x34\x6b\x9a\x5e\xc7\xce\x89\x66\x71\xf9\x3d\x6f\xb5\xcc\x56\x8d\xb3\x10\xcf\x61\x8a\x43\xb3\x08\x7c\x96\xd2\xcf\x1c\x0d\x47\xa3\x2a\x4a\x43\x57\xa0\xda\xe8\x26\x8d\xc3\x86\xe5\x18\xfb\xd8\x59\x8c\x6d\x26\x3a\x0c\xfd\x5f\x9a\x05\x1f\x07\xe4\xfc\x0f\xf4\xbe\x4c\x07\xbb\xe3\xc2\x8a\xb7\x9e\x44\x11\x69\x02\xda\x08\x4e\xf5\x1d\xda\x9e\x99\xd2\xd0\x27\xaa\xf5\xe6\x56\x3b\xd3\x9b\x58\x4a\x8f\xe7\x97\x5e\x38\xc3\x07\xed\x45\x9d\xa8\xfd\x6e\x5c\xc6\x24\xea\xf1\x35\x68\x72\xee\x79\x7a\xe9\x91\x26\x68\xb6\xbb\x23\x1b\xd3\x0e\xd4\xf5\x8e\xa6\x15\xc5\x09\x7c\x87\x97\x60\xdc\x88\xc9\x27\xf8\x27\xe6\xc6\x1b\xbe\x6a\xdc\xa6\x2d\xc7\xbe\x5e\x45\x7e\x51\x2c\x9c\x29\xaf\x5a\x20\xb9\xca\xe7\x49\x35\xe5\xa4\xe1\x82\x60\x36\x46\x86\x66\x44\x80\xc8\xbf\x9c\x43\xaa\xd9\xee\x2f\x92\x1e\xa6\xf3\xba\xd5\x37\x07\xad\xb5\xda\x3e\xe4\xc3\x22\x77\x47\x77\x4e\x25\x24\x72\x40\xad\x03\xf7\x17\xd4\x97\x3d\x44\x0a\x1b\xce\xb4\x41\x55\xaa\x76\xd8\x11\xc8\x74\xf6\x94\xb7\x19\x62\x7a\xb5\x6a\x50\x1b\xba\xba\x06\x62\x17\x7d\x33\xe3\x2a\x74\x49\x36\x0c\x53\x60\x6c\x82\xe5\x2b\x92\x29\x80\x3b\x75\x3a\x1b\x9a\x21\x24\x9b\x60\xe6\x64\x70\x46\xfd\x4f\x1a\x99\x9d\xe8\xba\xfc\xef\x29\x45\x87\x68\x5e\x84\x0f\xc0\x1b\x37\x6b\x3a\x34\x0b\x3b\xba\x2e\x27\xb1\x9f\x05\xa3\xff\x47\x5f\xfa\xff\xdb\xdf\x45\x59\xe1\x5f\xda\x74\x4d\x12\x06\x93\xc5\xee\x4f\xb7\x08\xda\x1a\x8d\xc7\x11\x8d\xee\xf5\xa8\x15\x0e\xeb\xb4\x1d\x0a\x48\x89\xc9\xce\x86\x18\xc3\x10\xf5\x2d\x32\x76\xf8\x8a\x84\x59\xc4\x50\x23\x0a\xb0\xc7\x64\x6d\x66\x46\x3d\xec\x2e\x2d\x2d\x92\x68\x66\x02\xa7\x3f\xdd\x20\xe8\x68\x4a\x3d\x89\x6d\x6c\xb9\x84\x9f\x55\x21\x9f\xb2\xc2\x21\xd8\xac\x83\x5a\x3c\x39\xdd\x8c\x18\xd9\x1a\x4a\xed\x15\x32\x8b\x68\x3a\x78\x21\xf6\xb8\xac\xd5\x4c\xab\x4f\x77\xa8\xbc\x99\xf0\x55\x9a\x92\x15\xd3\x2f\x8c\x2b\x62\xe8\x50\xd9\x72\xef\xa0\x2d\x31\x8a\x78\xd0\x0f\x52\x56\x71\x0c\x25\x6c\xa9\x1e\x45\x65\x45\xe0\x70\x11\xac\x34\x14\x2a\x2d\xfe\x57\x5b\x7c\xda\x23\xa4\x59\x8d\x42\xdf\x42\x08\x4f\x9c\x38\x9a\xdf\x57\xdc\x40\x31\xd1\xd9\x0a\x60\x96\x30\x89\x01\xcc\x16\x8b\x4d\x60\x4a\x63\x5f\x59\x53\xa9\x80\x4d\x63\x93\xf5\xc2\x3d\x1c\xba\x9e\xe1\x5c\x81\x1e\xc4\x16\x91\xe3\xc9\x27\x51\xce\x52\xf9\xf4\x69\xbe\x55\x3f\xc5\x6f\x76\x35\x79\x2a\x76\xa8\xbc\x73\x8a\x97\x9f\x3c\xcd\x6b\xae\xa2\x58\x92\xb3\x2c\xe1\xde\xa2\xaa\x2b\xfa\xaa\x7c\x63\x17\x0e\x91\x6d\x6a\x66\xe5\x42\xd1\x29\xbe\x68\x78\xbe\x54\x7f\x3d\xfd\x32\xf7\x6e\x5f\xaa\x74\x0f\x38\xd5\x8a\x7f\x43\xd0\x71\x0a\xb6\x94\x8f\xb4\xa2\xd3\x79\x82\x14\x66\x26\x0a\xb1\x33\x98\x1d\x9d\xa7\xa5\x16\x92\xf8\xc2\xec\x08\xb1\x24\xd6\x22\x25\x21\xa7\x19\x7f\x6d\x99\x11\x58\x13\x28\xac\xb1\xb6\x44\x2f\xee\xe4\xfa\x32\x06\x0e\x78\x66\x9c\x69\xba\xe4\xd3\x3e\xca\x4e\xd7\x60\x82\xdf\x63\x74\x9b\x6c\x86\x0b\xc5\x2c\x4d\x69\x9c\xc5\xf2\xce\x69\x7e\xbe\x7e\x92\x09\xac\x5c\x4c\x3b\x85\x3c\x8c\xf7\x2d\x4f\xbc\xea\xaf\xda\xce\x47\xd5\xb3\x52\x0a\x09\x5c\x15\xd3\xb7\x17\xd7\xd0\xf0\x67\x93\xab\xc8\x77\xec\x73\x1c\x94\x3b\x9c\xe5\x6c\xa6\x1d\x08\xfa\x65\xa4\x07\x0c\xcb\xdb\x47\x60\x38\xb3\xe2\xcd\x10\x42\x92\x23\x9a\x9f\x1d\x9b\xca\x23\xd2\x0b\xe5\x42\x53\x2c\x8e\x57\x48\x17\x66\x81\xcd\x8b\x08\xe8\x54\xc2\x59\x14\xf2\xcc\x3b\x73\x34\x3a\xf6\xc3\x59\x24\xea\x2c\x29\x1d\x1f\x73\x6e\xb3\xcf\x73\x45\xdd\xbb\xba\xbc\xd7\x79\xf6\x77\x11\x07\x7c\xac\x93\xd6\x68\x92\x73\x55\x76\x5f\x88\xd7\x0c\xab\x3c\x44\x74\x68\x7c\x32\x57\x14\x73\x9b\x47\x77\xe6\xc4\x17\x80\xf9\x83\xd3\x35\x65\xcc\x40\x79\x22\x37\x87\x9f\x54\x92\x9c\x36\x14\xc6\xa9\x36\x51\x6c\xf4\x5d\xc7\xca\x3b\x43\x98\x7b\x71\x97\xb9\xf1\x3a\x2d\x21\x07\x43\x91\xd5\x07\x2b\x78\xb0\x3c\x2e\x55\xae\x7f\x25\x8b\x90\x1a\x24\x04\xa4\xde\x44\x2a\xc7\xf1\x78\xf9\x48\x2d\x1f\x6f\x15\xdf\x21\x09\x12\x88\x69\x7a\x32\x56\x4c\xa7\x9a\xda\x81\x83\x17\x13\x20\xb0\x9f\x62\x30\x64\x7e\x85\x26\x30\xcd\x5f\x0c\x8e\xd5\xba\x08\x33\x63\x56\x7f\xde\xbe\x5e\x3b\x6d\x71\x82\x72\x01\xfc\xdc\x38\x23\x5e\x00\x77\xd7\x35\x9f\xe2\x76\x54\xd2\x97\xdc\x2e\x23\xb2\xe1\x14\xaf\x19\x82\x0c\x8f\xa6\xf7\xe6\x38\xc3\x30\x7b\x01\x44\xde\x32\x5b\x4d\x08\xd3\xff\x4a\x9a\x0a\x31\xeb\xb3\xf5\x9a\x7a\xc5\x38\x24\x31\x5a\x6f\xa0\x54\x13\x55\xa0\x75\xb6\x62\x0a\x8c\x21\xc1\x8b\x7c\x70\xf3\xd5\xac\x0d\x83\x4d\xf4\x93\x8c\xd5\x75\xcd\x5e\x9e\x61\x23\x8d\x59\x70\xa7\x59\x5b\x8d\x94\x6b\x67\xa7\xce\x04\x77\x66\x59\x0a\x4d\x1a\x5c\x53\x83\x1b\x11\xb2\xc7\x62\x21\xe2\x8d\x0c\x34\x34\xfa\xbf\x25\x10\x31\xbd\x34\xca\x45\x37\x30\x30\x90\xe8\xaf\x1b\x20\xe2\xa8\xe0\x70\x49\x2f\x56\x5d\x17\x67\x93\x03\x1e\x1f\xf7\xbf\x77\x2e\x32\x74\x3c\x41\xca\x48\xd0\xcb\x45\xc0\x67\x5f\x9e\x05\xc1\x81\x2e\xe9\x40\x79\xe1\x2c\xdc\x56\x3a\x87\xaa\x75\x52\x7a\xed\x32\x58\x00\x00\x40\xff\xbf\x69\xb6\xc5\xa0\x7f\xf3\xfa\xd5\x43\x90\x1f\xc1\x02\x73\xfa\x0e\x99\x4a\xe5\x4c\xde\xc2\xa0\x7e\x9b\x60\x53\xa9\x91\x3f\x5e\x73\x0f\xfb\xab\x7f\x2e\x50\x05\xee\xfd\x3c\xd6\x38\xf5\x77\xda\xcf\x93\x3f\x0f\xab\xc0\xf3\x21\x83\x60\xe1\xea\x22\x0e\x49\x1d\x23\x9b\x50\x3c\x22\xf6\xf0\x67\x47\x50\xa6\x17\x79\x73\x31\xea\x6e\xf0\x76\xcb\xba\x53\xe3\x3e\x29\x79\x29\x5f\xcd\x22\x72\xae\x80\xa2\x23\x7a\xb3\xb8\xf9\x74\xed\x4b\xb1\x9e\xf7\x6a\xae\x2e\x30\x88\x1c\xd4\xd8\x7f\xe7\x5c\x0e\x0d\xff\x36\xdc\xfb\x48\x6f\x61\x7a\xe3\xbe\xaf\x55\x04\xd4\x04\x48\xda\x1d\xf0\x6e\x2c\x74\x72\x46\x83\xa8\xaf\x54\x3a\x37\x7c\xd6\xce\x35\x95\x75\x70\xc6\x73\xe2\xf4\xee\x97\x07\x8d\xb7\xa7\x27\x25\x76\xd0\x7d\xb4\x26\x1a\x82\xd6\x5e\xb7\x53\x38\x9c\x53\x50\x4e\x93\x64\xcd\xd9\xb6\x48\xf3\xe4\x74\x43\x2b\xf2\x19\x2d\xc9\x09\xbb\xe4\x7d\xe7\xbb\x7f\xa5\x46\x76\xf1\x19\x12\x1e\x49\x49\x4b\xcf\xd0\x71\xda\xdc\x05\x03\x08\x3b\x4d\xe1\xa7\x08\xf9\xa4\x4a\xfc\xea\xef\x57\x0b\x39\x81\x91\x69\x62\x25\x33\x36\x5a\xb4\x9b\x23\x20\x49\x68\x66\x21\x74\xb7\xb0\xf7\x9b\x1e\x2a\x8d\x32\xb7\x05\x1a\x10\xf9\x36\x46\x80\x4a\x97\x95\xe1\x18\x90\xa4\x3e\xea\x25\xf8\xab\x3d\xee\x11\xb1\xaa\x46\xa8\x5c\x1b\x5b\x9a\x79\xe8\xf9\x81\x01\xef\xe6\x44\x01\x1d\x7e\x23\xc9\xc7\x7f\x59\x6c\xa9\x51\x51\x09\x95\x2d\x56\x67\xf7\xdb\x68\x7c\x40\x76\x0b\x3e\xb1\x38\x6e\xb0\xe0\xf3\xb9\x7c\x72\xe0\xb0\x10\x86\x20\x99\xae\xd5\x66\xe2\x2e\x65\x5c\x53\x42\x75\x41\xbb\xab\xae\xd6\x24\x83\x05\xf1\x11\x73\x0a\xaa\x23\x31\xa0\x70\xec\xab\xff\x51\xb4\x00\xfd\xa0\x92\x84\x2c\xfb\xee\xf1\xc7\x79\x67\xab\xcb\xc6\x5e\x96\xcc\x56\x3e\x5c\x7c\xe0\x86\xbe\xbe\xe4\x92\xa8\xbf\x21\x7e\xaf\xa5\x86\x73\xca\xd5\xb3\xc6\xaf\x13\x35\xc1\xcc\x10\xa9\xb8\x6a\xf9\xe7\x59\xaa\xea\x87\x0d\xbe\x52\x22\xd4\xf8\xd3\x16\xe3\x19\xe5\x17\x2b\x55\xb6\xbf\x8f\x7f\x20\x4a\x90\x9a\x90\xa4\x24\x5d\x1c\x49\x8d\xb3\xf2\x70\x04\x7b\xba\xc0\x02\x26\xa7\x3a\x38\x2c\x2b\xb0\x46\x65\x57\xf1\xd6\xd3\x00\x93\x30\x1a\x96\xa6\xcd\xe1\xf1\x8d\xa6\x1e\x70\x3e\x6f\x18\xb7\x37\x38\x71\x63\x29\x90\xaf\x95\x9f\x1d\x00\x8a\xc1\x8d\x9c\xa9\x0e\xe5\x2d\x9a\xb0\xde\xb5\x67\xa5\xbd\x5e\x84\xc6\x4d\xd0\x28\x0f\xe0\x2d\x9e\xc8\xb8\xe9\x91\xe7\xbc\x5d\x06\x13\xc1\x8a\x56\xed\x64\x38\x58\xa8\xdb\x6e\x3f\x48\x8e\xf0\x24\x6f\x45\x33\xa8\xc8\x5d\x59\x36\x2e\x07\xc6\x81\x16\x07\x7d\x17\xf8\x9d\xd6\x60\x82\x7a\x9c\x8d\x46\x7e\xd9\x90\x6c\xb5\x0e\x49\xca\x2a\x20\x0c\x9c\x1d\x8c\x7a\x01\xb0\x9d\x59\x98\xde\xeb\x3f\x8c\x36\xc1\x27\xfa\x63\xf3\x63\x8d\xb2\xde\xc2\xdf\xae\x9e\x80\xed\xcd\x5b\x7d\x7e\x1c\x17\xd4\xc0\x37\x98\xd0\x59\xd0\xe8\xe7\x5d\x82\x12\xb3\x36\x0b\x2e\x55\x69\x62\x5c\x79\x9a\x1a\x98\x31\xd3\x11\xa3\xd5\x21\xaa\x8d\xb7\x6c\x72\x15\x25\xb6\x24\x24\xc8\x95\x21\x8b\xde\xc4\x5f\x2f\x28\x21\x4c\x55\x96\x4f\xe0\xdd\xc9\x69\xa0\xd2\xe0\x2d\x18\x39\xf7\x5d\x48\x82\x11\xce\xe0\x83\x0a\x15\x43\x9f\xd9\xb6\x1f\xe9\x79\xba\x63\xef\xe2\x9b\xa7\x7f\x3c\x38\x65\xb9\x2e\x39\x79\x4f\x5c\xec\xee\x38\xe1\x5a\x59\xec\x27\x3d\x39\xf9\x8b\x0b\x1d\x21\x30\x3e\xec\x97\xb2\xe9\x51\x49\x05\xb5\x97\x06\x1c\xae\xd0\xe0\x3b\x4d\xcf\xc4\xe7\x36\x7d\x8b\x6d\x50\x5f\xd8\x05\xba\xca\x0d\x76\xa0\xa8\xec\xc8\xff\x10\x1d\xe7\x8a\x0d\x49\xac\xff\x85\x3b\xe7\x1c\xaf\x92\xb5\x9c\xc9\x82\x58\x4e\xe3\x32\xc0\xb7\xd3\xc1\x1e\x70\xb8\xda\xd0\x26\xea\x2f\xe6\xe0\x87\x7a\x72\x20\x3f\xc3\xa0\x8b\xf6\x07\xd7\xd6\x4e\xbe\x7d\xda\x15\x63\x5d\x1d\x39\xa0\x81\xef\xb1\xdc\x4e\xb3\x2a\xc9\x25\xab\x81\xe7\x97\xa0\x16\x9a\x4f\xf9\x00\x45\x68\x8d\x14\x06\x28\x2b\xf8\x91\x3e\x31\x30\x39\x5d\x97\x77\x91\x02\xd3\x6e\x78\xc7\x90\x16\x21\xfe\x08\x83\xf1\x67\x6f\x99\xff\xb6\x57\x59\x5e\x30\x41\xad\xeb\xa2\xaf\xcf\x7a\x3e\xcb\xd3\xb7\xb6\x6b\x9c\x5a\x20\x6f\xf6\x78\xb6\xb2\x3b\xbf\x29\xe6\xf3\xa8\xf5\x9e\x31\xef\xd8\xb3\x11\x85\x13\x70\xa6\x04\x05\x17\x23\x8b\x4c\x0f\xf3\x90\xf9\xa1\x52\xe4\x67\x94\xee\x8a\xb8\x45\x6b\x53\x33\xcd\x28\x2f\x84\x9e\x99\x9b\xc3\x64\x01\x34\x9d\x54\x75\x35\x74\xb2\xf0\x97\x11\x66\x69\x4e\x81\x36\xb0\x14\xf5\xa3\x7f\xca\x7e\x51\x23\x42\x3e\x92\x6e\xbb\x58\x1a\x27\x32\x35\x53\xad\x8d\x88\xc5\x4a\xdf\x06\x86\x3d\x9d\xca\x68\x6e\xbc\xcd\x0b\x30\xb6\x77\x87\xe2\xaa\xdb\xd3\x2a\x3c\xe0\x2b\xec\xb7\x00\xef\x60\xee\xac\x5e\x0c\x92\xc8\xc7\x25\x8d\xec\x13\xae\x96\x35\x5a\x1d\x5d\x3c\xad\x05\xfe\x89\x64\x73\x58\x7b\x77\x73\xb9\x2a\x9a\x0c\xae\xbc\xd1\x56\x8c\x9b\xf0\x94\x0f\xe0\x6c\xf1\x86\xd0\x4f\x21\xbf\x2d\x4f\x5e\x5e\x12\x94\x2b\xb7\x98\x9c\xfb\xef\x13\x67\xaf\x83\x8c\x71\x47\xe9\x51\x5c\x35\xdb\x08\x0f\x83\x3f\x38\xe1\x1a\xca\xac\xaf\x49\x35\xca\x1e\x64\x64\xf6\x50\x5d\x5e\x40\x9d\x57\x8c\x52\xd9\xa8\x9f\x53\xba\xde\xa9\x5a\x8c\x67\x30\x16\x9e\xa3\xbf\xd4\x68\x8d\x2d\xe0\xc9\xdb\x3a\x4f\xfa\xe3\x48\xe9\x95\x5a\xd5\x14\x8f\x09\x12\x52\xc6\x4c\x13\x9a\x17\x6a\x15\x97\xbb\x7c\x2d\xe1\xc7\xaf\x14\x4b\xea\xad\x22\xea\x40\x9e\xab\x09\x6b\xf7\x02\x14\x51\x30\xee\xff\x2c\xfd\xa7\x95\x87\x87\x6f\xae\xd2\x06\x7c\x95\xcb\xf1\xfe\x5d\x2c\x3e\x82\x6c\x2c\x34\x7a\xa5\x13\x8c\x79\x0d\xd8\xf6\x19\x1f\xd6\x4c\x8b\x92\x86\x13\xd3\x35\x22\x96\xea\x93\xd3\x7e\x4d\xdb\xdf\x25\x3c\x53\x1b\x55\x2e\xbf\x3d\x73\xcf\x19\x65\x2d\xa0\x71\x1f\xb7\xc5\x45\x5d\xa9\x5e\x7b\x21\x8d\xa6\x97\x70\x4c\x51\xf4\x64\x4b\x90\x02\xca\xc4\x3e\x51\xef\xff\x54\xc7\xcc\x21\xd5\x42\x41\x45\x33\xe3\xb2\x48\xc9\xa4\x84\x19\x07\x03\x62\xe0\xd9\x50\x09\x8e\x9d\x34\xf7\x0f\xe6\xe1\xf0\x86\x15\xae\x9f\x71\xc4\x77\x1b\xb0\xb4\xde\xea\x25\x55\x6f\xc0\xb4\xaf\x7b\x68\xff\x41\xde\xa0\x53\xff\xd8\xc8\x89\xcd\x31\x89\xab\xc0\xd2\x1c\x23\x92\x68\x75\xc2\x5b\xa8\xc7\x10\x29\x2d\x4a\xea\xf3\x18\x85\xc3\xf6\xea\xd2\x64\x6a\x1e\x6f\x54\x52\x29\x1a\x3a\xaf\x00\xce\x4d\x06\x41\x3e\x28\xc1\x42\x99\x0a\x6c\x31\x9e\xcf\x00\xe3\x65\x75\xa2\x20\x28\x53\x85\xee\x23\xc8\x6a\x63\xa1\xbd\x0c\x86\x94\x09\x93\xc5\x0f\xb2\x3e\xeb\xeb\x33\x87\x9c\x1f\xa3\xb1\xf7\x29\xd8\xce\x7b\xb1\xc3\x27\xb5\x18\x6e\xac\x1c\xb5\x42\x52\xb2\x25\xe5\x83\x59\xac\x90\xc4\xde\x67\x31\x38\x23\x8f\xa3\x8e\x45\xc6\xcb\x50\x4f\x7e\xa1\x91\xc5\xb1\xed\x58\x26\xce\xc8\xe5\xaa\x21\xc8\x28\x29\x8a\x45\x60\xa3\xa2\xc8\xb9\xb1\xc8\xf8\x0b\x6f\xc3\x59\xfe\x77\x5b\xfd\x7d\x11\xa5\x03\x7e\xf8\x21\x71\xf9\xa5\x8b\x91\xa4\x83\x87\x9b\xc3\x89\xbd\x07\xd7\x22\x22\x2f\x5c\x5c\x96\x8a\xf7\xff\x86\x84\xff\x8e\x40\xdd\x82\x23\xdf\x65\xe0\x38\x47\x77\x7c\x51\x30\x41\xc5\x3f\x45\x3e\xbe\x6a\xdf\x02\x63\xba\xfe\x0c\xea\x5f\xe6\x23\xc0\x84\x41\x2c\x76\x75\xe8\x96\x59\xb7\xce\x64\x5a\x80\x7d\x4b\x12\xf6\xb3\x62\x43\xcf\x4f\x3d\x27\x07\x20\xd2\x03\x1e\x7f\xa2\x86\xc3\x3f\x3c\xc2\xe9\x86\xd6\xa2\x28\x07\x86\xd2\x70\x21\xce\xa5\xab\x91\xd4\xf1\xa5\x4a\x44\xac\x61\x86\xcf\x4f\x0b\x76\xf8\x47\x15\x07\x84\x6d\x15\x0f\x6a\xda\x83\x65\x22\x74\x18\x9e\x2d\xca\x09\x0e\xca\x11\xa2\x43\x09\x6c\x61\x0e\x28\x18\xa3\xbe\x10\x50\x07\xdf\x22\x01\xc1\x99\xde\x89\xc7\xef\x2d\x6d\xef\x28\x5e\xba\xd7\x05\x10\x0e\x8c\x05\x63\x97\x8e\x7d\x5d\x3e\xe1\x17\xe6\xad\xc7\xa3\x49\x9e\x59\x8f\x67\x05\x3d\x60\x45\x5e\x5d\xf4\x28\x09\xd7\x73\x16\x97\x82\xf1\x1d\xd3\xc5\x40\xc7\xa8\xd0\x96\x89\x9b\x4f\x6e\x82\xce\x69\x3f\xfd\xfa\x89\x34\xc8\x5a\x31\xb5\xc2\x58\x8e\xbc\xb7\x3a\x11\x88\x3b\xd0\x89\x3d\x77\xab\x3f\x2c\x7a\x1c\xb0\xfc\x21\xe7\x14\x69\xc5\xeb\xa9\xaa\xb2\x57\x31\x09\x92\xd7\xee\xc0\xad\xc1\x2d\xed\xac\xe3\x45\x35\xac\xd3\xf6\x39\x07\x12\xdd\xdb\x4f\x68\x9d\xf0\x8c\xb2\x2d\xa8\xa5\x85\x75\xd8\x56\xc7\xba\x60\x9f\x7f\x50\xe5\xde\x7e\x1e\x71\x63\xa2\xb5\xb0\x2b\x11\xcc\xcd\xf3\x36\x2f\xad\xab\xe8\x4c\x19\x48\x80\x70\x74\x5e\x29\x0b\xc3\x12\xea\x32\x44\x50\xc9\x50\x0f\x0e\x95\x34\x3d\xed\x52\x6d\xdf\xb4\xcc\xf9\x9e\x19\xa1\x2d\xde\xb6\xcd\xb7\xb9\x99\x71\xb6\xdb\x01\x99\xb4\xc8\x3a\x94\x00\x2d\x44\x84\x8d\x84\xe6\xa4\x49\x98\xb5\xf0\x23\xed\x89\xeb\xcd\x67\xca\x4a\xec\xeb\x67\x12\x3b\x10\x67\x62\x66\x64\x28\xbb\x76\x7f\x3c\x15\x74\x74\x75\xab\x68\x00\xbc\xc3\xca\x6e\x51\x4d\xce\x3b\x71\xd5\xd2\x5c\x7e\xcd\x32\x7f\xae\x33\x65\xbf\xad\x95\xb1\x94\x3d\x68\x69\x5d\xdc\x33\x75\x9f\x21\x90\x90\x7e\x15\x3a\xc2\x03\x20\xf0\x5b\xdf\x1f\x36\x73\x37\x87\xc4\x8f\x67\xce\x11\xda\xcc\x03\x12\x77\x07\xe6\x6c\x23\xb4\x8a\xf3\x81\x7b\xf9\x60\x82\x33\xa9\x91\x1f\xc7\xe0\x96\x9c\xe7\x8b\xc0\xb6\x18\x45\x66\x1c\x2e\x5d\x4f\xed\x0b\x84\x07\x4d\x6c\xe4\x52\xc8\x89\xd9\x49\xb0\x02\x48\xa5\x7c\x26\xfa\x8f\x0b\xa5\xa3\xd8\x16\x17\xb3\xcf\x50\x94\x36\xad\x8b\x77\x30\xea\x0e\xd5\x67\xa6\xcf\xd4\x57\xcd\x13\x3d\x99\xfd\x91\xcf\xaf\x41\x01\xbe\x47\xe2\x14\xfb\xeb\x8a\x76\xd1\x6d\xa5\x16\x4d\x6e\x4a\xa4\xaf\x78\x52\x8a\x8f\x63\x66\x61\x35\x38\x29\x6b\x53\x65\x4d\x38\x3f\x49\x45\x18\x81\x74\x2c\x16\x6d\xa8\x50\x84\x63\x3d\x37\xba\x92\x39\xd3\xfb\x6c\x73\x97\x36\x0e\x3b\x8c\x1e\x8f\x8c\x0c\x1f\xf4\x0d\x76\x09\xe3\x62\x77\xde\x9d\x54\x24\x95\x96\x28\x87\xc0\x8e\x9c\x3e\x48\x0e\x01\x72\x28\x51\xf4\xa7\x74\x1a\x59\x61\x20\xc0\x43\xf7\xda\x0a\x29\xac\xb7\x9a\x8f\xa8\xdb\x90\x06\xd9\xf5\xbe\x5d\x57\x73\x3b\xab\xaf\x6b\x66\x77\xf2\xce\xd4\x42\x12\x39\x7d\xe6\xba\x72\x09\x7b\x17\xc6\x40\xcf\xe8\x6d\xb0\x49\xf6\xda\xd3\x74\x0e\x0c\x4b\x68\xc0\x50\xcd\x18\xbb\xc4\x1b\x43\x2a\x15\xe8\x92\xe9\x6d\x22\x3b\x86\x66\xc2\x96\x08\x30\x5d\x97\xa7\x37\x51\x84\xa8\x4b\x23\xc9\x30\x66\x4a\x32\xe4\x79\x08\x0a\x8a\xe0\x7e\x3b\xe8\x51\x1e\x8c\xb6\x35\x5f\x8f\x1e\xd0\xa9\xec\x92\xe4\x5c\x57\x4e\xa8\x31\xd2\xd2\x22\x90\xf0\x4b\x9b\xa4\x27\x63\x5a\xdc\x2b\xd0\xbe\x3c\x95\x53\xe2\x1b\x1c\xfd\x7b\x6e\x28\x4b\x64\xf0\x41\x29\xe1\x41\x65\x39\xaa\xdd\xf4\xa7\xc7\xfd\x45\xd7\xc7\x8e\x4c\x2d\x31\xf8\x69\x4e\x76\x6a\x44\xae\x04\xee\x23\xd8\xc5\xc2\xdc\x3a\xba\xe8\x5b\x29\x59\x94\x1c\xa3\x4b\x83\xd0\x0b\x04\x3a\xa9\x2c\xbb\x33\xef\x43\x8c\x1e\x07\xd8\x7d\x66\x1d\x3a\x86\xb3\x87\x37\x0b\x0c\x86\x68\x87\x42\x0e\xed\x31\x0e\x34\x74\x6b\x72\x5e\xfd\xc5\x7f\x4c\x45\x70\xf8\x41\xab\x17\xe7\x6e\x31\x94\x25\xb4\xc0\x1c\x2e\xec\x64\x5d\x96\xbf\xd0\x65\x36\x1a\x45\xb9\x30\x3e\xdc\x97\x5f\x21\x29\xda\xd6\xeb\x72\xb9\xa9\xff\x20\xb7\x34\xeb\x10\xb7\xb9\x85\x79\xb9\x77\x5f\x23\xe3\x7a\xf3\xbc\x83\x7c\x8b\x8f\x9f\x44\x1b\xd7\x3b\x97\x5c\xbe\x4e\x06\xb3\xde\x90\x20\x61\x4c\x31\xf2\x1b\x58\x71\x4e\x76\x69\x4e\x8d\x14\x96\x19\xc3\x90\x04\xc1\x62\xc4\x68\xa8\x00\x9a\xa9\x56\xbc\x87\x24\x7f\xeb\xbf\x9d\xd4\xde\xa9\x0e\x81\xa9\xb1\xd3\xcc\x4b\x5f\x24\x37\xef\x11\xac\xf3\xa2\x6d\x66\x44\x57\xf1\x27\x74\xb6\x0a\xe6\x0f\x21\x60\xb3\x4e\x93\x45\xbe\xeb\x17\x85\xd7\xb3\x36\xdf\xfc\x58\xb0\x79\xd6\x3b\xab\x06\xaf\xd4\xe2\x4c\x7e\xd0\xfd\x0d\x6b\x2f\x32\x6f\xa0\xfc\x03\x32\x16\xd5\x6c\xfe\x39\xf1\x3c\x44\x51\x0f\x57\x69\x28\x99\xdc\x89\xc3\xc1\x73\x3b\x84\x73\x67\x05\x03\x04\x08\x56\x5b\xe5\xc3\xa6\x5e\xc7\x93\x2e\x49\xe8\xc5\x70\xf5\xd2\x57\x0b\x5b\x8e\x16\xd5\xe0\x62\x72\xb4\x84\x7c\x32\x33\xd0\x09\xbd\x5f\x42\x90\x24\x41\xf2\xc4\x90\x58\x9b\x40\x27\x93\x66\x37\xe5\x7e\xa0\x68\xa8\x9c\xc6\xbd\x8f\x3b\x70\x97\x32\x7a\xec\xa2\x1e\xdb\x82\x85\x8b\x13\xb0\x06\x4a\x55\xaf\xd9\x2c\xe8\x68\x35\x5f\x62\x77\xc7\xe5\xf8\x4a\x83\x04\xe1\xef\x31\xb3\x27\x5d\x2b\x23\x68\xbb\x3c\x54\x7f\x7c\x47\x32\xf4\xc4\x7d\x0f\x18\x95\x5d\x19\xc6\x57\x02\x2b\xf2\x51\xff\xb8\x60\xe9\x7d\x9f\x64\xd7\x72\x7f\xfe\xbe\xc7\xae\x97\xce\x1f\x93\x7a\x4c\x5d\xac\x18\x0f\xd8\xe3\x46\xf9\x95\x59\x5b\xcf\x8a\x1b\xca\x4e\x24\x34\x0f\x53\x6e\x75\xc2\xf8\xd0\xca\x04\x83\x06\x47\xe2\x6b\x39\x18\x13\xa2\x44\x00\x00\x7e\xb9\x5d\xcc\x55\xa4\x28\x62\x51\xb9\x30\x9b\x48\x15\xb9\xaa\x2e\x5b\x26\x74\x95\x73\xc7\xd2\x40\x51\x48\xb9\x4e\x19\x42\x10\x5b\xb0\x78\x33\x9c\x39\x62\xf9\xbe\xf6\x35\x5d\xbb\x3c\xa1\xcb\x8d\x5c\xe9\x28\x2b\x50\x24\xc2\xe4\x1b\x92\xf2\x79\x07\x1d\x2b\xd4\xb5\x7f\xfb\x05\x9b\x5b\x13\x34\x7e\xdf\xfd\xa3\xd7\xaf\xb8\x3a\xd1\x8d\x19\x95\x57\xf4\x54\x41\x91\xf6\x1f\x9b\x40\x1c\xa7\x41\x9a\x39\x3e\x65\x82\x33\x55\x73\x4e\xc9\x9a\x9c\xe7\x95\x33\xfa\x59\x97\x9a\xa1\x45\xa2\x2b\xdd\xc2\xf3\xf2\x56\x2a\xca\x2b\x4a\x02\x2f\x4b\xd4\x8e\xca\x1c\xbe\x96\x8d\x36\xc1\x86\xe9\xc9\x40\x83\x55\x25\x28\xb5\x08\x4a\xba\x21\x1e\x9b\x8b\xc8\x4f\x67\x0a\x66\x13\xf4\x9f\xa6\xc2\xa4\x3d\x59\x44\xb4\x0c\x16\x87\xbf\xf5\xee\xda\xb1\x6b\x24\xd3\x1c\xb0\xdd\x8e\x1c\xa9\xbe\x6b\x7b\x76\x59\x85\xe4\xf0\x0b\x33\x43\x4c\xf9\xf1\x01\xb0\x54\x5d\x06\xc6\x03\xaf\x13\x01\x7b\x9d\x00\xcc\x8e\xe0\xca\xa8\x7c\x7c\x4d\xf8\x60\x6e\x1b\xfa\xe3\xba\xb5\x67\xf5\xb3\x8b\x0e\xe2\xbb\x1a\xb8\xbd\x99\xb5\x9a\xf6\xb7\x7f\x33\x64\xbe\xd2\x3d\x06\x3d\xe9\xc9\x0b\xdb\x97\xd2\xab\xab\x8a\x39\xb7\x3c\x8a\x65\x26\xa6\x84\xa7\x86\xf0\x43\x4b\x22\x35\x7c\xf6\x38\x59\x18\x93\xad\x11\xe7\x81\xe9\x95\x6b\x0c\x9e\x61\xc4\xe9\xa2\x22\xd8\xd9\xe2\x15\x07\x72\x5a\xbd\x1e\xc1\x61\xa7\xcf\xa5\x89\x28\xea\x50\x57\x12\x40\x14\x52\x87\x4e\xe8\x0a\x0c\x9c\x89\x89\x61\xf9\xf0\x8d\x10\xae\x0c\x6c\x8c\x28\xcc\x00\x4c\x8f\x7a\x87\x69\xf4\x25\x99\x38\xff\x5b\x5b\x11\x77\xb3\x7c\xe3\xb1\x82\x2e\xcf\x47\xb0\x7b\xae\xf0\xfd\xc6\x9a\x3e\xca\xcd\xb9\x32\xc4\x9f\x2a\x58\x69\x94\x7a\x38\x2c\x8f\x1a\xe8\xe2\x43\x3a\x12\x00\xc0\x32\x4f\xdf\x1e\x15\xd7\x7c\xcf\x88\x37\x70\x71\x70\x45\x8e\x0e\xa4\xcb\xb9\x34\xc3\xd8\x6f\x22\xc0\xf3\x43\x8a\x7c\x7b\xbc\x80\xbd\x76\x00\x46\x47\x50\x01\x35\x1f\x53\x13\x96\x29\x99\xb0\x8f\x55\x6b\x5d\x16\x83\xc2\x69\x88\x4e\xa2\x26\x05\x2b\x37\x3e\x32\xac\x64\x32\xec\x5e\x5b\xee\x9e\x7e\x4c\x37\xb5\x4a\x85\x11\x7f\x90\x2d\x9f\x7c\xe7\xac\xe4\x1e\x75\xb5\xaf\xb0\x2a\x73\x8f\xf3\x3a\x5d\x9c\x23\x56\x40\x00\x00\xed\x71\x26\x3e\x43\x07\xc4\x19\xed\xd5\xc5\xe6\x34\xaf\x05\x4b\x4b\x3d\x6b\xab\x19\x96\xcc\xed\x75\xb9\xdb\xb0\x3a\x7d\x13\xde\x56\x8a\x1a\x71\x06\xad\x50\x52\x7c\xd7\x9b\x3a\x0c\x84\xc0\xec\x68\x56\x0c\x6c\xa1\x2c\x09\x23\xd9\x8d\x1b\x5a\xd7\x60\x25\x31\xa7\x8d\x6a\xfc\xc2\x7a\x12\x1c\xe9\x7c\x4f\xd9\xf5\x0c\xfe\x91\xb0\xc1\x6b\xc6\x82\xa0\x27\x44\xd8\xaf\xab\x5c\x02\x23\xd9\x66\x8c\x54\xc8\xca\x0c\x12\x2d\x1f\x7e\xff\xf7\xf1\x15\x1f\x6b\xdb\xf6\x9a\xc9\x2f\xba\xe3\x88\xb3\xaa\xc6\x1a\xa6\x4d\x55\x67\x8e\x32\x6a\x7d\xb7\x59\x9f\x42\xed\xaa\xd2\xf0\x59\x67\x37\x68\x0a\x53\x58\x71\x5b\x03\x00\xf8\x2c\xdc\x50\x4d\x7e\x85\xab\x7e\x86\xff\xa9\x06\x58\xcd\xdc\x9c\xf3\xff\x08\x04\x9a\x86\x12\x87\x56\xe4\x3c\x20\xdf\xc8\xc1\x8d\x8d\x62\xa7\x79\x43\x46\xbe\xfa\x6a\x92\x38\xb3\xee\x4d\xb4\xff\x18\x01\xaf\x1e\xc7\x76\x57\xca\x0e\x14\x6a\x60\xc3\xe5\xcd\xc7\x04\x3d\x80\x3b\x2e\xf2\x28\x92\x9f\x14\x9f\x5f\x53\x56\xe0\xdd\xbb\x37\x17\x79\x2f\x6e\x8a\xee\xcc\x44\xde\x02\x55\xe4\x08\x5f\x55\x37\x54\x5d\xcb\x9b\x33\x2e\x78\x34\x9f\x36\x2f\x7b\x62\xf6\xc1\x4b\xaa\x06\xd7\x65\xd1\xec\x2a\x25\x90\xd7\x21\x36\x09\x09\xa9\xe9\x0c\x5b\x28\xab\xb6\xea\xfc\xc5\xa0\x9f\x26\x7f\xc2\xbb\x09\x3d\x02\xab\x01\x4c\xad\xe9\x2c\xdd\xda\xcb\x89\x5f\x1b\xfb\x2b\xd4\x34\xc0\x2b\xaa\xc2\x1c\xf1\x94\x18\x91\x44\x27\xcb\xf4\xf3\xb5\xfe\x6d\xe0\x5d\xf0\x71\xe4\x13\x48\x46\xe2\xee\xbd\xf9\xf9\x5f\xbf\xd3\xa4\x94\x12\x39\x61\x49\x2c\x78\x84\x91\xc2\xe9\x8f\x4c\x84\x9e\xcb\xdc\x95\xf9\x1e\xe4\x17\xbe\x80\xeb\xaa\xc4\x2e\x7a\x3c\xd8\xc3\x24\xc8\xb1\xfc\xe6\xd9\x65\x01\x8e\xd7\x37\x18\x5a\xf3\x7e\x2a\x94\x56\x1c\xc9\x0e\xd3\xc4\xc7\x45\x18\xa8\xac\xe5\xd1\x2c\xd1\xd0\xbd\xd3\xb6\x72\xc0\x5e\xcc\xf4\x12\xee\x64\xee\x79\xe4\xf9\xca\x22\x6d\x86\xdb\x7c\xed\x6b\xf4\x29\x2f\x1a\xe8\xde\x98\xd6\x8d\xd5\x1d\x42\xd3\xf8\x02\x4a\x82\x32\x8b\x80\x6c\xf2\xbd\xa5\x0e\x23\xd3\x2f\x09\xe6\x96\x66\x1d\xb0\x94\x08\x17\xdb\x1c\x97\xc4\xd3\x2f\xfe\x95\xdd\x2f\x0d\xfc\x79\x7b\xc4\xd5\x11\xc9\x10\x86\x68\x58\x70\x9c\x56\x40\x31\x91\x58\x71\xdc\xf7\x9e\x0f\x1e\x9a\xe5\x4d\xb4\x3c\xe9\x53\xb1\x1e\xd6\x87\xfe\xc5\x77\x8d\xa1\xee\xe6\x8d\x72\xb9\x63\x53\x43\xc4\x05\xec\x4a\x5a\x5b\x0d\xf9\xbb\x5d\xa6\xac\x08\x05\x47\xf4\x97\x82\xd7\x95\x1d\xb5\xab\x08\xf4\x68\xbb\x41\xaf\x27\xc6\xfa\x57\x31\xc3\xe5\x89\xfa\x62\xbb\x5a\x24\x88\xc1\x92\x4f\x51\x12\x70\xf9\xc9\x72\x1d\x93\x6f\x8f\x75\xed\xa8\xf6\x28\xa7\xfa\x72\xaf\xf1\x5a\x9d\x97\x10\x2b\x3c\xb6\x29\x1b\x0a\x4c\x96\x8b\xb1\x06\x1c\x51\xe4\x0e\xe1\x72\x81\xd9\xcc\xd2\x1e\x6b\xd7\xb5\xdf\xce\x67\x98\x30\x8d\xa8\xec\xd8\x68\xac\xec\x8e\x0d\xc7\x4c\x50\x21\x7f\x22\x8b\x19\x01\x8e\xdc\xe1\xce\xac\xa3\x84\xd2\xd6\xeb\x9c\xb9\x25\x8a\xd1\x6b\xcc\x58\x06\xbb\x74\x36\x20\xef\x6c\x20\xc7\x3a\x37\xe2\x24\x9f\xc7\xce\x16\x8e\x6b\x31\x3e\x50\xaf\x93\x76\x7e\x45\x23\x83\x42\x17\xef\x59\x94\xcf\x7a\x46\xd9\xb4\xdd\x68\x26\xe9\x1f\x1a\x51\x7c\xdc\x18\x04\xf6\x06\xda\x10\x5c\xab\x47\x39\xe5\x26\x45\x2d\xdc\x24\xcf\xf5\xf5\x0f\xff\xf5\x5c\x66\xf3\x80\x57\xbc\x1c\x8c\x26\xed\x39\x11\x7a\x1e\x15\x5f\x88\x60\x60\x97\x37\x4f\xcc\xc9\xf0\xb1\xbb\x80\xdc\x80\x0d\x8c\x5e\xd6\xe6\x01\x7a\x55\xec\xc6\xb5\xd5\xb3\x56\xab\x2e\x20\x2f\x64\xc1\x52\xfe\x96\xc3\x90\x90\x08\x4f\xeb\xd0\x2c\x1c\x96\x38\x76\x63\x7e\x47\xc0\x8d\xb9\x1d\xe1\x2e\x69\xd7\x6f\x07\xd4\xb7\x72\x7f\x9c\x31\x27\x15\x68\xdb\xfd\x8a\x9b\x7b\xdf\xc0\x90\x4c\x73\xd9\x1a\xad\xbd\x8e\x3e\x55\xe8\xa0\x4f\xb7\xd7\xaf\xd1\x9b\xea\x3e\xfd\x6f\x4e\xce\x56\x1d\x4f\x4a\xd8\x06\x53\xc5\x42\x61\x0a\x3f\x35\x9e\x10\x07\x63\x3b\x32\xf4\xf3\x28\xb6\x6a\xc4\x78\xa1\x03\x33\x5d\x5c\x3f\x4c\x2f\xe2\x66\xb7\x89\x75\x6f\x4c\xfb\xf0\x9c\xbe\x43\xdf\x13\x8b\xdb\xb8\xf3\x3d\x4d\x2c\x74\x9a\x62\xeb\x54\x68\x0c\xf2\xce\xb2\xea\x3e\x1a\x9d\xaf\x86\xb5\xe9\xe4\x49\x5f\x21\xde\x9a\xce\x37\x44\xa2\x53\x0b\x69\x6c\x13\xa8\xdd\x4d\xab\x9e\xec\xa2\x99\x48\xed\x02\x4b\x32\x84\x98\x66\xa3\x50\x33\xd1\x59\x3e\x22\x64\x56\xe6\x99\xe6\xf6\xcb\x9a\x96\xd2\xf5\xdc\x79\x23\x92\xdf\xe7\x59\xce\x57\xfc\x36\xbf\xfa\x96\xb6\xb3\xe0\x3c\xbb\xbf\x56\x78\x74\x43\x93\x90\xf7\xe1\x7f\x0a\xc7\x29\x7b\xcf\x2c\xbb\xfb\xf1\xcc\xc9\xbf\xc7\xd7\xfe\xb3\xdd\x5c\xb3\xf5\xd4\xb7\xed\xf2\x79\x77\x3f\x20\x2a\x02\x3c\x0b\xc7\xc2\xd0\x8a\xea\x6d\x1e\xc5\xdf\xca\x80\xe2\x6a\x51\x50\xd8\xaa\x85\x19\xb3\x32\xe5\xf7\xb4\x89\xf0\xd4\x18\xfe\xe2\x7a\x9e\xfd\x60\x5d\x56\xd6\x54\x5b\xce\x85\xa4\xf6\xfb\x05\x65\x08\xfb\x63\x5d\x67\x6e\xf5\xf9\xd3\xe7\xeb\x9c\xb5\x68\x30\xfb\x5b\xe5\x36\x71\x7d\x13\xf9\x50\x05\xd4\x26\xba\x50\xd3\x7a\x5e\xd2\xea\x3c\x9f\x30\x96\x7c\x8b\xb8\xd2\x02\xdd\x40\x05\x9c\xf5\x20\xba\x7e\xd8\x9f\x5b\xe5\x97\xa4\xf2\x81\xb5\xe2\x9e\xea\x18\xc5\x56\x79\x37\xd6\x0d\xbe\xe7\x8a\x95\x28\xb0\x39\xc1\x59\x62\xd6\x7e\x2e\xf3\x49\xba\x81\x89\x55\xc2\xd3\x79\x3e\x69\xf0\xf2\x44\x99\x11\x46\x4f\x37\xc4\x60\x73\x10\x39\x69\x3e\x3c\x84\x2b\x51\x6c\x84\x12\xe6\xf2\xcf\x94\x6e\x03\x35\x65\xd3\x0a\x95\x22\x73\x99\x21\xf4\xcb\xfc\xb8\xf7\xb1\xaa\x68\x09\xbf\xb8\x5a\x3c\x13\x55\xfa\xee\xec\xd3\xf7\x5c\x25\x91\xc0\xc9\xca\xd0\xbc\x3b\x7e\x34\x11\xa8\x62\xa3\xd2\x4c\x89\xba\x51\x9a\x38\x52\xbb\x40\x0b\x25\x6d\x42\x2e\x7a\x34\x9f\x6d\xc2\xd6\x83\x36\xa3\x7c\xdf\xca\x08\xfd\x4a\x2f\x92\x97\x64\x80\xe3\x07\x89\x24\xbd\xf2\x5b\xce\xfc\x42\xb1\xa6\x15\xbd\x64\xc7\xff\x38\x6c\x3f\xfc\x7e\x98\xd3\xb1\xc2\xfb\x71\xfa\x4f\xff\x6a\xb5\xaf\x88\xd5\x7d\xd1\x97\xb9\x03\xee\x7f\x1a\x96\x20\x91\x92\xfd\x9e\x99\x2e\xbb\x0e\x98\x81\xcf\x99\x9e\x2c\x11\xdb\x9b\x13\x8e\x42\xaa\xf3\x97\xa3\xe7\xe6\xea\xab\x75\x3e\x81\x6f\x07\x83\xa1\x38\x6e\x2e\x2c\x63\x4f\x60\x56\x2d\x2d\xfb\xda\x91\xf6\x12\x07\x0b\xeb\x67\xf5\x52\x42\x71\x31\xca\xd0\x05\xbf\x31\x50\x55\xb6\xb3\x26\x71\x17\xd4\x59\xb5\x16\xd3\xad\x96\x95\x32\x51\xe9\x7c\x5f\x0d\xee\x5b\x76\xfc\x47\x07\x2e\x6d\x68\xd3\xa0\x9e\x6e\x6b\x17\x45\xac\xb1\xcd\x77\xdf\x69\x55\x43\x63\x8f\x93\xf8\x70\x13\xf5\xcd\x2a\x93\x67\xce\x55\x33\x92\x16\xa4\xdb\x14\x31\x51\x40\x8f\x28\x98\x36\x04\x65\xd7\x69\x8e\xec\xe1\x1f\xad\xfc\x5f\xf2\xd7\x27\x1d\x1b\x13\x29\x7f\xe1\x5b\x08\x64\xf8\xc8\xd0\x9c\x1f\x1f\x7e\x70\xe8\xa4\x1f\x31\x15\x6e\x5a\xaa\x85\x93\xce\xa1\x15\x91\xfa\x0d\x7a\xb8\x7e\xcd\x63\x3d\x1a\x47\x75\x25\x1d\x2f\x9b\x3f\x6a\x2a\xf2\xbe\x8c\x3c\xed\x02\x8f\x39\xfe\x38\xf8\xbd\x6e\x68\x06\xf7\x0a\x18\x77\xf5\x1a\x41\xae\x2c\x82\x8c\xca\xb7\xe3\xc6\xdc\x89\x26\x28\x22\xdc\x44\x95\xec\x2c\x2e\x29\x3a\x72\x59\x29\x3c\x89\x25\x89\xdf\x6d\x26\x4b\x56\x17\xbb\x8b\x3b\x40\xca\x70\x6d\x7c\x98\xdf\x10\x0b\x9e\xdf\xac\xf7\x4b\x5e\xeb\x85\x03\x0a\x63\x81\x85\x70\x43\x72\x6e\x20\xbb\xf1\x18\xa2\xc7\x25\x1d\xcb\xcd\xf3\x4d\x4c\x0a\xcc\x6c\x57\x79\x92\x79\xc5\x81\xfc\xaf\x70\x3a\x0c\xc2\xcf\xef\xd5\x83\xbe\xcd\x1b\xc2\x67\xf2\x29\xd0\xbb\x9f\xad\x61\xad\xf1\x0a\x99\x10\x6e\x25\xc5\x18\xc7\xda\xb3\x37\x21\xab\x4c\x04\x7b\xa6\x88\x50\x5b\x65\x9f\xc5\x97\x8d\x98\xfd\x7e\x26\x38\x01\xf3\x20\x87\xa4\xdf\x10\xd0\x7f\xc5\x07\x21\x71\xe5\x87\x63\x9d\x0b\x31\x36\x0b\xac\x22\x53\x04\xab\xb5\xd9\xbb\xf1\xce\x04\x52\xc0\x30\xef\x43\xaa\x4e\x96\x97\x88\x10\x1b\x2b\xdf\x9c\x8f\x08\xf4\xec\x14\xc7\xc2\xd6\x5d\x0f\xaf\x1c\xc5\x34\xd8\xa8\x0d\x1a\x15\xb5\x2e\xb9\x4b\xd8\x4a\x1a\x09\xa6\xa0\x13\xf3\x24\xd0\xd5\x0c\x34\x26\xe1\x00\x2f\x03\x92\x4e\xde\x5f\x19\x2b\x85\xb7\x05\x53\x7c\xf3\xb2\xbb\x6a\x32\x77\x91\x9c\xb3\xae\xea\xbb\xfb\xe9\xfc\x7c\x63\xba\xf7\xac\xe7\xcd\xca\xde\x4d\xea\xac\xe0\x8e\x98\x7c\xe9\x58\x59\xbd\x2c\x04\x95\x61\x88\xc2\x49\xd1\x7a\x31\xeb\x28\x53\x14\xa4\xe5\x32\x31\x2c\x95\x86\x92\x84\x0d\xee\x84\xc3\x05\x9d\x6d\x7c\xab\xa9\x4b\x6c\x6f\x8a\x3b\x54\xde\x94\xe3\x3a\x6d\x7d\x9d\x22\x47\x4a\x07\xc7\x66\x47\xcc\x02\x6c\xba\xc3\xe1\x7c\xa2\xc5\x44\xd8\xee\x41\xca\x6e\x44\x92\x6e\xac\xce\x00\x0f\xaf\x8c\xfb\x79\xda\x23\x12\xe9\xe6\x3b\x9e\xdb\x2e\x85\x90\xf8\xb0\xf6\xaf\xf7\xda\x30\x3f\x6d\xe7\x45\x67\x0e\xa7\xa9\x69\x75\x8d\xf6\x83\xd8\xf2\x7d\xf9\x48\xe6\xf2\xdf\x98\xfe\x18\x40\xac\x08\x79\x3a\x97\x1d\x43\xde\xf2\x02\xc8\x49\x9f\xf9\xa8\xdb\xf7\x1a\xd5\x67\xa7\x7f\x61\x54\xf8\xcb\xb9\xe0\xa7\x1b\x75\x60\x37\x0e\x7b\xfb\x96\x03\xab\x6b\x0b\x71\x5a\xbf\x50\x16\xaa\x32\x4c\x92\x64\x0d\x1d\x2d\x43\x1b\xd8\xf4\xb1\x34\x2d\x5a\xcd\x61\xa8\x22\x05\xec\x39\xbe\xdd\x01\x18\xc6\x95\xd8\xf1\x0d\x39\x1a\x7c\x53\x79\xe1\x18\xb6\xc8\xdf\x54\xfd\x66\x95\xf1\xb3\xfc\x55\x3d\x92\xe2\x68\xb7\x77\x70\xb1\xe4\xcc\xfa\xf5\xf8\xb3\x97\xd1\x8f\x7d\xe1\xf1\xf8\x78\xa4\xdf\x54\x59\xed\xbe\x8a\x0d\x7e\xf6\x20\xfb\x20\xd6\x6d\xc7\x36\x6a\x34\xd8\x26\x77\x61\x3f\xd6\x1e\x79\xb6\xfd\x68\x4d\x7e\x5e\x5f\x9c\x86\x0f\x22\xfe\x74\xe9\x3c\x16\x73\xe6\xc2\x7d\x22\x8b\x71\x77\xaf\x62\x90\xda\x80\x65\xf6\x0e\xad\x0e\x8c\xf9\xae\x0a\x4c\x46\xfa\xf0\xf3\x97\xea\xe1\x24\x83\xc7\xd7\x62\x24\xc5\x66\x37\x2e\xd3\x1d\xac\x5e\x73\xa1\x03\x29\xc8\x2c\xa2\x19\xd5\xb9\x34\xb6\xa2\x1a\x99\x5c\x88\xee\x75\x64\x6c\xcc\x30\xc6\x8a\x19\x51\xd1\x4a\x23\x7d\x53\x86\x31\x41\x1c\x03\xa4\xfe\x46\x05\xcb\xbc\xcb\xdf\xeb\x89\x1d\xd5\x17\x97\x62\xf8\x59\x85\x6c\x10\x3b\x92\x5d\xc5\xe6\x0a\x9d\x18\x4d\x31\x72\xd4\xb3\xf7\xef\xbd\x2e\x7a\x12\x0d\x66\xb5\xae\xe3\x1b\xe9\x8c\x49\x8a\x07\x12\x55\xc1\x62\xf3\x38\xdb\xea\xef\x55\xee\x40\x37\x58\x29\x35\x2a\x35\xa5\xb6\xa1\x60\x4d\xd2\xca\xd7\x9c\x8d\xe3\x33\x28\x78\x42\x40\xd8\x20\xc8\xe7\x0d\x4b\x02\x99\xc9\x40\xa3\xd2\x37\x4a\x20\x48\x2e\xf8\x4e\x81\x07\x90\x1d\x36\x40\xee\x4f\x69\x34\xa8\x8b\x11\x62\x65\x27\xaa\xac\x91\x74\xc9\x6f\xfe\xcf\x24\x7f\x0b\x8a\x05\x8d\x25\x8e\x1c\xdd\xa9\xf4\xcd\x01\xa8\xf1\x1f\xbf\x7f\x13\x42\xd0\xfa\xe4\x06\xab\x4f\x7c\x14\x49\x7b\x00\x17\x05\x18\xd2\xfe\x00\x6c\xa6\x1c\xf3\xd4\xb7\xa0\xb2\xd4\x65\x48\xb5\x81\x54\x4e\x6e\x0b\x5d\xee\x17\xe2\xa9\xd8\xdc\x69\x67\x21\xd2\x2d\x1e\xeb\xc2\xc1\x45\x7e\x5a\x18\xe7\x44\x64\x7c\xbc\x40\xf5\xb7\x97\x35\xb5\xd5\x6e\xa9\x80\xb2\x5d\xbd\x22\x47\x2d\x72\xd4\xdb\x66\xbd\x3e\x2d\x65\xda\x89\x48\x9f\x82\x84\x43\xf6\xae\x9e\xf8\x22\x91\x2b\xd6\x58\x80\x1d\x02\x54\xfc\x0f\x3d\xec\xc9\x0b\x06\xee\x80\x89\xfd\xd5\xde\x07\x9b\x13\x17\x6f\x31\x6e\x79\xbb\x45\xd7\x3b\x1f\x89\xfb\x63\x6c\x3e\xee\xc2\x98\xfe\xb3\xaa\xc8\x9e\x2b\x74\xf6\x8c\xd0\xfc\xd0\xd3\xa1\x7a\xdb\x4e\x0c\xaa\x81\x1f\x80\x9a\xc5\xc7\x2c\xbc\xf8\xc6\xfc\x15\x5d\x85\xc9\xa7\x13\x36\x1c\x06\x1f\x5e\x77\x1a\x6a\x3c\xf4\xc2\x7d\xa8\xe3\xf4\xd3\x04\x59\x6e\x28\xf1\xe8\xb4\x8f\x89\xbf\x81\xdd\x63\x2f\x31\x6d\x3b\xe5\x97\xd8\xc9\xb5\x3e\x71\x3e\xdb\x89\xbc\x2c\xef\x29\x8d\x77\xb3\xcf\x04\x7f\xa2\x7e\xfc\x5a\xdd\x6f\x60\x17\xff\x25\xf2\xe2\x16\x3f\x16\x36\x09\x1c\xac\xf5\x9d\x61\x65\xb2\xc4\xb5\xda\x97\x04\x2c\x61\xfe\xfb\x41\x95\x08\x8d\x46\x44\xc7\x10\x43\x9e\xfc\x6b\x76\x66\xa4\x93\xd5\x51\x60\x69\x89\x33\x78\x4b\xd7\xa3\x02\x52\xa6\xeb\x77\x23\x84\x6f\xcd\xb4\xfa\x6c\x53\x2e\x8a\xeb\x17\xf1\x0b\x0a\xf2\x9b\x30\xa0\x84\xcd\x37\x45\xd6\x18\x19\xe4\xf1\xc6\xee\x6a\x48\x0f\x88\x58\x00\x5b\x80\x41\xa4\x37\x9c\x88\x7b\x1b\x50\xd3\xe3\x01\x72\xa8\xf4\xdb\x17\x01\xe5\x78\x12\x1e\x27\xef\x37\xfb\xc0\x50\xec\xc4\xa0\xc6\x93\xe5\x1c\x3f\x27\x97\x9e\x4f\xa8\x54\x6e\xdc\xd7\xe9\xb7\x8f\x2e\x43\x6d\xc3\x84\xa8\xee\xa8\x90\x41\x74\xbe\x07\xb7\x61\x9f\xaa\x77\xab\x1e\x76\x34\xb5\xc7\xd7\xc7\x2c\x50\xb9\xbe\x6c\xdd\x13\xfe\xe3\xdf\xb5\x17\x1e\x7e\xff\x70\xaa\x0e\x52\xb2\xa3\x67\xb3\xcf\x6b\x90\xcf\xfc\x3c\xa4\x3b\x0a\x48\x1d\xbc\xbb\x52\x11\xf5\x37\xd2\x85\xdd\xec\xf3\x6c\x57\xe0\xe3\x4d\x6c\xc2\x26\x5b\xba\x06\x5d\x84\xe4\xd0\xa5\xb5\x26\xe7\xf6\xa7\x81\xf5\x27\x60\xb3\x0b\xb2\xba\xcd\x2d\x8e\xd9\xdc\xe8\x06\xfa\xdc\x1d\x2e\x0f\x7f\xaa\x3e\xef\x10\xa1\x86\xc7\xd0\x83\x81\x77\x2e\xd0\x79\xda\x1d\xc3\xc0\x91\x93\x6e\xf3\x96\xb3\xf2\xf2\xf9\xf5\x11\xda\x54\x82\x11\xb3\x82\x97\x31\x6c\x0b\x0a\xe7\x76\xbf\x0e\xf4\xae\x66\x2e\x2e\x93\xf2\x68\x85\x1c\x01\xf8\x91\x00\x8b\x71\x09\x73\xb7\x5f\x0b\xac\xdc\x0f\xec\xca\xe2\xda\xc4\x6a\xa3\x3d\x31\x22\x07\x6f\x6b\x56\x49\x98\x76\xbb\xf2\x20\xa4\x98\xc5\xbf\xc0\x88\xdc\xdf\xfb\x1f\x84\x76\xf5\x4a\x96\x50\xa6\x8b\x2b\x00\x08\xc4\x71\x69\x7a\x86\x23\x54\x94\x98\x5d\x2f\x20\xb2\xdb\x38\xa5\x13\xc7\x3d\xc4\xa0\xa0\x8f\xad\xbc\x4f\x95\xef\x24\x8f\xbc\x47\x51\xcb\xce\xf2\xdd\xf5\xf7\x14\x86\xda\xb1\x8c\x37\x29\xc6\x88\xfe\x6f\x49\x94\x51\xf1\x22\x82\x3e\xef\x66\x9e\x37\x24\xb1\x72\xa2\x64\xd1\xf9\x2a\x32\x4e\x40\xd0\xba\x6e\xb8\x88\x90\xcb\xc8\x01\xe1\xeb\xe6\x7a\xdb\xc1\x49\x77\x26\x90\x3a\x61\x8d\xda\x98\x0f\x15\x74\xbb\x7d\x44\x33\x4f\xf9\x42\x21\x46\x5a\xc8\xd2\x31\x94\x90\xd0\x03\x2e\xd5\x24\x34\xdb\xe1\x93\xeb\xe7\x2a\xb0\xb8\x0a\xf8\x97\xac\xf7\x41\xd4\xa3\x47\x36\x7f\xf5\x81\x7f\xe2\x47\x5a\x86\xbe\xaa\x8d\x3a\xa5\x9e\x51\x24\x8b\xe7\x66\xf1\xf8\xb5\xc0\x43\xb5\x7f\xd5\x92\x4f\xc9\x66\x1c\x61\x5c\x61\x11\x4f\x56\xfb\xb2\x90\xd6\x06\xc4\x86\xed\xb2\x89\x97\x77\x8e\x0c\xf7\xea\x59\xb8\x32\x2d\x96\x14\xb8\xf1\x44\x69\xe1\xc6\xe5\x64\xa2\x30\x7e\x33\xb6\x74\xf8\x2b\x21\x44\x11\x30\x8b\x33\x36\x47\x99\xcb\x5a\x96\x82\x6d\x82\x0b\x03\xca\xa4\x82\x76\xe8\x72\x7e\x0a\x6b\xf9\x3c\x26\x3b\xaa\x91\x72\x5b\x33\x58\xa9\xd3\x68\xab\x12\xe4\xfd\x51\x97\x1b\xa1\xa5\x54\x4b\x9e\xe6\x82\x4d\x5a\x5e\xb2\x7b\xcc\x26\x0b\x5f\xac\x94\x26\xf3\x1f\xa0\x95\xa5\x43\xa3\xd3\x83\xb8\x6b\x57\x40\xa5\xce\xd3\x2d\x57\x43\x20\xb1\xe8\x72\x3e\xa5\xfb\x57\x43\xd3\x5d\xd7\x2e\x9c\x07\x44\xed\x3d\x7f\xeb\xfc\xbe\x45\xd4\xce\xa7\xe8\x5d\x67\xfe\xdc\x71\x75\x07\x48\x2d\x4b\x5f\x8f\xfa\xfd\x26\xd1\x94\xf4\x67\x9c\x3f\xc6\xa2\xd7\xe1\x1a\xca\x98\x93\x59\xab\x52\x52\xba\x4b\xed\x3d\x08\x83\xd4\x86\x2f\x6f\x2e\xc0\x73\x0c\xbd\x88\x52\x3b\xa9\xdb\xbe\x2a\x4b\x38\x59\x5c\x36\x85\xb3\x4f\x65\xe6\x19\xad\x63\x09\xe9\xf1\x49\x60\xa6\xd2\x78\xc9\xe3\xd4\xca\xcb\x74\x0c\x4c\x46\xb6\x6e\xcc\xaa\x37\xf2\xee\xfe\xd1\xa7\x99\xdd\x0e\xb2\x32\xd5\x14\x50\xec\xc2\xa4\x88\x5e\x4a\x4d\x7b\x66\x1e\x2a\x85\x92\xc1\xb4\x91\x39\x53\x0d\x01\x24\x19\x35\x65\xa9\x05\x9b\xa3\xf7\x98\x9f\x94\x90\xae\x16\x36\xc1\x3d\x0e\x4a\x9f\xb3\x4b\x87\xab\xb3\x1a\xca\xc1\x8c\xcc\x42\x49\xb8\x40\xeb\x6b\x24\x02\xe6\x63\x59\x94\x6c\xc0\xd5\x99\xbb\x52\x29\x7d\xc5\x8e\x46\x78\xf6\x19\xdc\xde\xab\x41\x4a\xbe\x55\x1b\x25\x66\x06\x64\x17\xcc\x43\x3e\xbd\xfc\x64\x7a\x61\x4d\x38\x0a\x82\x57\x6a\xad\x24\x0f\xe5\xd5\x0d\xf4\x2b\x3f\xf5\x99\x2b\x5a\x40\xa9\x4c\x05\x25\x32\x6e\x5d\x52\x44\x3f\xa5\xa6\x33\xb3\x20\xe2\xe9\x8b\xef\x7f\x0f\x90\x86\xc7\x9d\x6c\x8f\xfc\x49\xf4\xea\xee\x66\xbf\xe7\x35\xa4\xea\x03\xd5\xe1\x24\xc7\xb3\xb1\xa9\xa5\x24\x0c\xbb\xd7\xe7\x69\x4c\xd8\xe0\x37\x4a\x59\xc0\x9e\x14\x5e\x89\x34\x95\xee\xda\xce\x6f\x1e\xa3\x5f\x69\x26\x35\xc8\x7e\xef\x39\x7c\x5a\x57\x57\x7c\x82\xd9\x5e\xcd\x38\xe7\x44\x76\x14\xcc\xce\xe5\x2a\xb9\x38\x17\xba\x45\x4b\x56\x44\xb6\xca\x5c\x99\x04\xee\x38\x24\x91\x55\x0d\x4b\x2b\xdc\xdd\x6f\x77\xaa\xf4\x30\x1e\x04\x21\x91\x8e\xc1\xd3\xaa\x36\xf3\x0c\xb9\xbe\x82\x31\x6a\x02\x45\xc1\xe5\x77\x44\x38\x70\x7a\x6e\x22\xca\x0c\x55\xe6\x81\x10\x34\x79\x58\xfa\x98\xce\x74\x99\x30\x2a\xef\x8a\x38\x34\x4e\xdb\xf3\x78\x80\xb1\x43\xd6\x05\x5a\xbc\x5c\x4c\x5c\xcc\x9c\x11\xb1\xe3\x30\x77\xe7\xf3\xa1\x33\xf9\x8a\xe9\xa1\x87\x68\xa4\x46\x82\x6b\x2f\x00\x30\xce\x04\x94\x8f\x01\x7e\xdb\x61\xee\x5e\x83\x30\x84\xcb\x90\x22\xbc\x10\x29\x0c\x8f\x69\x69\xb1\xba\xd5\xf8\xf4\xcf\x4e\xda\x13\x17\x5d\x48\x29\x66\x36\x93\x35\x71\x6e\xbd\xc6\x84\xa5\x13\x00\xc7\x89\x4d\xa6\x94\x5c\xa4\x55\x79\xee\x3d\x00\xd6\xe8\x49\x45\x80\xd6\xe3\xef\xa2\xe1\xb1\x92\x8f\x74\x8c\x44\x2b\x09\x42\xb2\x38\xba\x19\xc3\xa1\xdb\x20\xb3\xe5\x9a\xa0\x20\x41\x79\xbf\xf7\x43\xc8\xe5\x55\x11\x2c\xb5\xa3\x10\xd2\xdf\x8e\x05\x16\x66\xfe\x85\x15\x6e\xeb\xc3\x0b\x5a\x67\xbd\x39\x20\xb0\xd7\xe0\x68\xf7\xa0\xe3\x71\x83\xed\xa2\x13\x51\xa1\xed\x5d\x1a\x0e\x0d\x31\xa2\x83\x2f\x4c\x9e\xee\xef\x2e\x28\xf2\xae\xd6\x5c\x13\xd7\xb4\x71\xe4\xd8\x05\x87\xd6\xc4\x4d\xd9\xfb\xe3\x55\x45\x7b\xaa\x96\x27\xb8\x9c\x72\x55\x59\xb2\x3a\x1e\xf1\xca\x6e\xbd\x8c\x15\x62\x31\xe8\x66\xfc\x9d\xba\xb0\xf5\x61\x8c\x44\x12\x79\x93\x31\x09\x1c\xf4\x10\x70\xae\x33\x92\xbc\xb1\xc0\x21\x77\x21\xef\x1a\xa3\x52\xfa\xe1\xe0\x26\xc2\x68\x5a\x17\xdf\xed\xb8\x74\xf5\x43\x52\x92\x84\xe0\x5e\xa9\x19\x5f\x2f\xd7\xac\x69\x54\x12\x67\xcb\xe4\x95\xdc\x27\x02\xc5\x34\x3b\xbd\x55\x00\x0f\x95\x7e\x34\xd3\xdc\xa6\x6e\x8d\x07\x52\xa0\x78\x01\xce\x55\xb3\xe5\x70\xeb\x37\x59\x6b\xfa\x54\xbf\x2e\x49\xe7\x7d\xd0\xb5\xe9\xae\x73\xf0\x63\x9e\x06\xdf\x10\x29\x07\x4b\x41\xb9\x54\xc0\xd1\x85\xd3\x53\x87\x4d\x3e\x0d\xac\x83\x8a\x67\x6a\x17\x5c\x19\x5d\x73\x35\x75\xb0\x25\xf7\xa4\x23\x90\x3e\xdb\xd2\xd5\x99\xeb\x0c\x29\x38\x6e\xa1\x5b\x67\xa6\x0b\xa2\xcc\x99\x74\x0b\x81\x31\xba\x4a\x16\x46\x8f\x56\x7f\x1e\xe3\x2d\x80\x81\x89\xee\xaf\x16\xec\xcb\xad\x63\x5a\x19\xfc\xb1\xeb\x18\xb5\x6e\x5b\x51\xf8\x6b\x43\x45\xfc\x2a\x89\xee\x95\x96\xe4\x1a\x1b\x40\xed\x1c\x3e\xcc\x25\xce\x52\x2c\x3d\x3d\xfc\x28\x66\xdb\x1a\xf2\x72\x35\x5f\x86\xb8\xc4\x7d\x9f\x23\xc6\x3e\x14\x49\xa1\x67\x34\x9f\xc5\x31\x47\xfb\x39\x73\xf6\x66\xb2\xff\xab\x59\xc2\x5b\xd1\x9b\x1a\xf1\xaf\x65\x72\x43\x8c\xf7\x39\x9b\x5f\xae\xf9\x67\xe5\xa9\x1d\x1e\x3f\x4f\x70\xd0\xd6\x51\xa1\xd5\xcf\xdd\xbe\xc7\xe4\x7d\x50\x16\x6e\x3c\x70\x35\x9d\x8f\xa3\xc5\x7e\x14\x41\x4b\x00\x1b\xac\x45\x0b\xb0\x5b\xe5\x4a\xcf\x3e\x46\x8f\xa8\x2a\x45\x5e\x15\x27\x03\x00\x47\x04\x80\xa7\xea\x52\x90\x12\xa0\x8e\x0c\x02\x66\xfb\xe7\x84\x49\x1e\xde\x7f\x37\x47\x13\x74\xe8\xe4\x29\x8f\x70\xfe\x0a\xf3\x7e\xdc\x3f\x1b\xdc\x5e\xeb\x7c\xaa\x6a\xc9\xbb\x8b\xc5\xd1\x03\x39\x3d\xa5\x4e\xd1\x9e\x92\x73\xeb\x42\x71\xfc\x69\x5a\x3a\x24\x50\x87\xe7\x54\xcc\x2e\x7b\x64\x2d\x14\x4e\xe3\x6f\x61\x67\x3f\x0e\xd7\x2f\x0f\x11\x63\x8c\xcd\x61\x9c\xe9\xef\xdb\x07\x0f\xc8\x27\x67\xb9\x36\xe2\x6f\x7b\x06\xbb\x13\x8d\x3f\xc0\x63\xe1\xba\xa0\x3a\x31\x47\x05\xec\x12\x7b\xd2\x88\x8c\xa0\x4c\xa3\xf4\x45\xbf\x4b\x09\xec\x78\x5e\x4f\x79\xb6\x50\x56\x23\xb1\x76\xa0\xce\x34\xc4\x55\xf2\x3f\x49\xd2\x57\xf3\x66\x1f\xe8\x69\xbd\x96\xa6\x80\x26\xb5\x52\xb4\xcd\x8d\x19\x0d\xc7\xa2\xeb\xfb\xcb\x54\x0c\xff\x8c\x1d\x81\x72\xe4\x81\x59\x01\xd9\x9d\xf7\xf3\x96\x0c\xc8\xaf\x34\x15\x58\x28\x87\x2b\xbb\x46\xf8\xb6\xd7\x07\x5d\x67\x64\xda\xb9\xa0\x52\x89\x2a\x15\x41\x4b\x14\xb3\x67\x0a\x86\x74\x71\xfb\x4c\xd5\x95\x34\x89\xa6\x8e\x97\xef\x44\x1e\x28\x5c\x98\x21\x3d\x42\x17\xcb\x77\x1a\xbe\x4c\xcf\x44\x3a\xdf\x23\x38\xcd\x59\xbd\xd0\x60\x55\x3f\x03\xe1\xaf\x1a\xdc\x21\xa3\xb3\x42\x86\x1e\xbe\x7e\xdf\xfb\x5e\xf2\x83\xe8\xb0\xdf\xd1\x15\xbb\xf2\xfc\xec\xef\xa2\x83\xef\x64\x1d\xff\xb9\xef\xfd\x4e\x73\x78\x3c\x5e\x3c\xe4\x19\x1b\x24\x3c\x17\xbd\x12\xb7\xf9\xd3\xe6\xd1\x71\x6a\xd1\x85\x31\x7a\x7a\x6e\xbe\x66\x3e\xd0\x9b\x42\xba\xfa\x97\x35\xbf\xab\x58\x18\xc9\xf0\x04\x25\x57\x1f\xa0\xf5\xb4\xc9\xd7\x00\x8d\xbe\x27\x17\x6d\x45\x16\xd8\x78\x35\x0b\x8f\xe3\x79\x42\xf9\x4b\xe2\x5e\xc0\xba\xe7\x16\x64\xef\x03\xbc\x09\x40\x1d\xf1\xcf\x22\x31\x2b\x2b\xa8\xdb\x3f\xff\x0a\x80\x03\x4e\xbe\xec\x53\x27\x7f\xd8\xb9\xfe\xb0\xa1\x5c\xd7\x8a\xf6\x58\x78\x95\x90\x1e\xf0\xfa\x5c\xe0\xb9\x5e\x2d\x80\x18\xed\xca\x30\x97\x92\xa4\x00\xb2\xdc\x5f\x18\xb2\x29\x29\xfe\xd7\x9b\x47\x4c\x03\x46\xda\xe2\x25\x29\x60\x1b\xa4\x2c\xa0\x30\x0e\x1e\xe8\x8a\x54\x8a\xb1\xca\x77\x60\xe7\x56\x7e\x47\x8d\x68\xff\x96\xb2\xd3\x0e\x29\x33\x23\xbc\x16\xa8\x3c\xb2\x49\x42\x31\x99\x77\x59\x14\x13\x85\x75\x43\xcc\xfc\xec\xfd\x8a\xf2\x4e\xdc\x09\x40\x39\xa0\x57\x52\x1d\xaa\x4c\xe5\x91\x60\x31\xa2\xe0\xd2\xdb\x45\xcd\x63\x9c\xbc\xeb\x56\xff\x73\xb5\x64\x76\x8a\x8f\xca\x14\x13\x08\x0f\x93\x90\xc4\x7a\x54\x7d\x82\x0d\x3c\x6c\x29\xeb\x22\x9e\x6d\xaf\x6a\x58\xce\x91\xbb\x45\x43\x9f\x4e\x69\x24\x41\x6d\x57\xef\xc9\xd6\x47\xd6\x56\x11\x87\xb6\xde\x43\x63\x89\x41\xed\xb3\x64\xf9\x94\x2b\x13\xf3\x61\xdd\x96\xc0\xa8\x59\xfa\x8e\xa6\x2c\xeb\x7b\x94\x24\x7a\x4a\x27\xc0\x91\x1a\x61\xfe\x6a\x25\xd4\xed\x6f\x28\xc3\x36\x7e\x59\x63\xa3\x07\xba\xc7\x8a\x5a\x8a\x02\xa5\x39\x8a\xdb\x49\x52\x6a\xeb\xe0\x04\xa4\xa4\x07\xeb\xed\xd6\xd5\xa0\xce\xa8\x3c\xfe\xc9\xa6\x83\xbe\x4e\x07\x6a\x60\xe2\xca\xf9\xc5\x1c\xf2\x9b\x34\xc9\x3e\xcb\x19\xf3\xee\x35\x8d\xf8\xf2\x53\x22\x13\x2f\x2c\xe8\x34\x2f\x9e\x16\xfc\x36\x6b\x6e\x7f\xee\xe4\xe2\xe3\xd7\x2c\xb5\x80\x19\xeb\x86\x9e\xfd\xac\xa9\x85\xed\xc1\xd2\xec\xbd\xf5\x92\xc2\x42\x42\x02\xcf\x18\xa4\x89\x60\xc0\x1d\xf1\xcf\x1e\xfc\x6a\x45\x55\x44\x6c\x25\xbf\xc8\x70\x24\x33\x8a\xc2\x1a\x01\xca\xcf\xf9\xfc\x00\x37\x2f\xde\x0a\x66\xb3\x5e\x5c\xf3\x4c\x6d\x87\x43\x05\xcb\x2f\x63\x6e\x3e\x3d\xef\x51\x4f\x75\xe4\x9d\xe6\xd5\x17\xac\x20\x06\x3c\xc6\x69\x1b\x12\x8c\x93\x2f\x55\xe0\xd0\xfc\x7c\xdc\xaf\x84\x6c\x66\xef\xe2\xaa\x79\xad\xa7\xc9\xf1\x77\x4c\xee\x67\x3b\xe1\x60\xd6\x8a\x0b\x7b\xaf\x3f\x3f\xeb\x51\x4f\xb6\x7b\xc8\xab\x9b\xbe\x00\x11\x8b\xcb\x5c\xaa\x74\x58\xf1\xaf\x88\x91\x85\x64\xab\x9c\x99\x1d\xc2\x9b\xbb\x9a\xe5\x1f\xc1\xd6\x8d\x01\x32\x69\xec\xd8\xf4\x1f\x64\xf3\xaa\xb2\x8e\x64\x7a\x84\x87\xdb\x2b\x7e\x90\x4e\xbf\x7b\xfd\xcd\x35\x91\x23\x9a\x2e\xc6\xa9\xe3\x90\x38\x4b\x06\xc7\x11\xcb\x8a\xf7\xf2\x6c\xe0\xd5\x56\x51\x5c\x68\xa0\x1c\xae\x6d\xdf\xcf\xf5\x6c\x04\x20\x6f\xe0\x1d\xbc\xd0\xfc\xe0\xfa\x07\x38\xc7\x9f\x17\xd2\x01\x2b\x7b\x1d\x7e\x0d\xd9\x10\xe1\x0c\x68\x0e\x05\xae\x49\xbc\x53\xbc\x68\x54\x56\x8c\x7f\xfa\xc6\x3b\xea\x10\x55\x0c\x0e\xc6\x72\x60\x0b\x95\x73\x24\x86\x6f\xc9\x29\x88\x3e\xa7\xe8\xb3\x29\x84\xf1\xe5\x1b\xe0\xd7\xa1\x08\x39\xec\x38\x66\xa7\xd7\x10\x2a\xc2\xdf\xc1\x16\x85\x5d\x46\x38\x23\xd2\x03\x3d\x5e\xc0\x6d\x8b\x6f\x58\x67\xdb\xc5\xec\x24\xb7\x3e\x36\x5d\x8c\x4e\x16\x51\x05\xd5\x5c\x51\x55\xf4\xe1\xe2\x3d\x3d\xe5\xa4\x20\x25\x94\x4a\xb8\x20\xf0\x3b\x93\xfc\xcd\x10\x86\x24\x28\xf6\x46\x0b\x94\x79\xb2\x8a\xe5\xad\x31\xc5\x85\x8e\xfe\x51\x57\x9c\x9a\x9d\xad\xd2\xa4\x1a\x1f\x3c\xbd\x51\xb9\x13\xdb\x58\x42\x1b\xf5\x34\xd9\x17\x72\xe3\x3f\xd4\xa7\x61\x73\xe1\x19\xc9\xb9\xd3\x56\x68\x2f\x4e\xdb\xe1\x33\x04\x31\xfe\xb9\x1a\x11\x50\xc8\xb8\x0d\xf4\x00\xe7\xb9\x5f\xaf\xeb\x1f\x64\xe5\xf2\xdd\xea\x08\x72\x79\x5c\xa1\x57\x0e\xef\xcd\x5f\x81\x79\xf9\x72\x60\x72\x26\xf4\x0e\x58\x1e\x85\xf0\xbf\x47\x5f\x8c\xeb\x07\xb6\x00\x55\xf8\x19\xac\x2a\xf4\x22\x42\x0d\x96\x05\x6a\xfc\x80\x19\x9c\x05\x53\x55\x31\x8e\xb9\x7b\xc3\x58\x46\x40\x8f\x0f\xfb\x55\xea\x6d\xe0\x9d\x85\x61\x4a\x1a\x2e\x59\x99\xad\xfb\xc6\x77\x62\xaa\x7c\x33\xa4\x46\x4b\xb2\xa7\xbe\x91\x01\x1f\x3d\x9f\x55\x50\x9a\x81\xd8\xab\x39\x9c\x8c\xa7\x33\x7d\x1e\xb1\xda\xcf\x24\xf7\x55\xca\xa7\x2c\x75\xa5\x53\x45\x09\x2c\xb0\x5e\x84\xd7\x22\x72\xd3\x72\xe1\x86\xd0\x23\x81\xb0\x30\x27\x82\x3b\x4d\xe1\x25\x0a\xcf\xac\x2c\xb3\xdb\x3e\x62\xce\x10\xfd\x6c\x15\x7c\xe9\x03\x9c\xfb\x16\x6d\xe1\x52\x42\x8a\xee\x4b\xa1\x71\x34\xdf\x87\x31\xe5\xa3\xf0\x66\x13\xa3\x5a\xae\x50\x94\xc9\x63\x01\x22\x4e\x8c\x30\x5c\xc6\x94\x04\x50\xe7\xfd\x73\x39\x84\x70\xe4\x84\x3c\x28\xc0\x47\x65\x90\x25\x8f\x3a\x03\xd3\x90\x4a\x9a\xba\xe2\xb9\x72\x36\x9a\xe0\x38\x39\x6a\xa8\x09\x7f\x01\xa5\x34\x20\xa9\xd0\xab\x8b\xc4\xc3\xed\xde\x02\x98\x1b\xa9\xd8\x06\x40\x45\xb0\x3b\xe0\xa2\x8f\xe1\x85\xb8\x97\xc5\x7e\xf1\x75\x6b\xbf\x5d\xc4\xe2\xb8\x55\x91\x24\x0a\x68\xb9\x57\xde\xa2\xf0\x48\xbd\xfd\xdb\x95\x8b\x9e\x6b\x56\xd5\x4b\x6d\xe8\x8d\xef\x04\x48\x30\xd4\xea\xbf\x60\xd5\xb5\x01\x42\x10\x1b\x32\x41\x59\x0a\xec\x41\x36\xfc\x25\x6c\x41\x58\xa0\x95\x7e\x11\xe8\x00\x76\x3b\x9d\xb4\x75\x56\xd1\xb8\x72\xb7\x5a\xb2\x42\x03\x73\x79\x9b\x16\xa1\xa1\x63\x43\x80\x17\xca\xef\x23\xb7\x55\x53\x1e\x78\x5c\x73\x59\x37\x1c\xb3\xab\xc5\x3c\x8e\x5b\x05\x55\xaa\x87\x36\x7b\xdb\x42\x0f\xf4\x08\xda\xea\x0e\x14\x95\xbc\xd9\xb9\xfb\x88\x1f\x1f\x3e\xba\x78\xc9\xd7\x3b\xe8\x0f\xb6\x10\x15\xd1\x00\x60\x83\x5c\x02\x17\x84\x44\x58\x71\x2f\x0a\x0e\x27\xcd\x9d\xa5\x34\xa6\xc2\xad\x95\xac\xd2\x20\x5f\xc4\x0b\xfb\xbd\x3b\x6f\x14\x0c\xce\xc9\x27\x7a\xc9\xbd\x4e\x14\x71\xe8\xe9\x2c\x39\x06\x15\x45\xd3\x6e\x09\x08\x5d\x24\x93\xc8\x42\xe1\x97\x44\x76\xe4\xf8\x6b\x29\x9d\xf2\x52\x98\x9e\xd5\xe8\xd6\xd6\xba\xa1\x0c\xa8\xc7\x1c\x83\xe9\x23\xbc\xf4\xd4\x23\x40\x23\xb0\x41\x7f\xb8\xdb\x76\x1c\x9f\x7a\xfe\x1a\x80\x09\x2e\xf6\x02\xc4\xfa\x14\xfe\x1e\xba\x5b\xad\x30\xd6\xcd\x2a\x6d\xb5\x5b\x66\xa0\x8e\x79\x1f\x1b\x97\x0c\x88\xce\x55\x30\x72\xb3\xae\xce\xaf\x7c\x60\xec\x2d\x58\x1f\x11\x1b\xf3\x6b\xfe\xfc\xbd\xb9\x59\x99\x78\x96\x29\xa4\x80\x0b\x4e\x26\x54\xcb\x75\x19\x0b\x05\x41\xbe\x92\xfe\x74\xe4\x9d\x4a\x0f\xc8\xe4\x26\xb3\x98\x40\xc9\x8e\x46\xb2\x33\xc2\x1d\x4c\x51\x44\x60\x21\xbd\x08\x96\xff\xee\x37\xea\x66\x0f\xb1\x73\xd5\x6e\x73\x4c\x9d\x76\xc2\xa0\x77\x29\xc3\xe7\x8e\x09\xfd\x6c\xde\xb0\xe5\x0f\xf2\xd7\x5f\x2f\x61\x26\x44\x75\x1b\x3c\x40\x19\x7e\x10\x2b\x0b\x39\x8b\xc8\x04\x0b\x03\xb3\xbc\x81\x19\xe2\x85\x82\xaa\x7e\x9c\xd6\xe4\xb6\xc0\xd4\x6d\x23\x0e\xfa\x94\x30\x98\xcb\xab\xbb\x16\xcb\xe9\x7c\x1d\x93\x28\xc7\xe9\x13\x2c\x8a\xd1\xf6\xcc\xf3\x89\xad\xce\x63\x84\x99\x65\xaa\x61\x13\x0a\x8c\x13\xdb\x85\x01\x10\x91\x2d\xe4\x11\x56\x46\x8b\x43\x66\xf7\xea\x30\xf4\x0b\xbf\x5d\x98\x3e\xd3\xda\x08\x05\x65\x4b\xf1\x19\x38\x16\x4b\x89\x1b\x24\xc8\x19\x01\xd9\x51\x76\x99\xd1\xc4\x29\x80\x38\xa0\xd4\xd6\xab\xbc\xc1\xca\xdc\x29\x66\x00\x6e\x7c\x04\x8d\xae\x60\x59\x85\xfa\xd4\x6a\x69\x24\x83\x35\x50\xb8\xf7\x71\x58\x7c\x6f\xf9\x05\xa7\x45\x98\x9c\xea\xda\x60\xfc\x60\xe1\xae\xc7\xf8\xf8\x31\xa1\x6b\x79\xbc\x55\xa4\x57\x36\x68\x60\x32\xfb\x0a\xaf\xbf\x08\x6b\x4f\x47\x23\xcb\x63\xad\x19\xc9\x85\x6d\x8e\x70\x66\x7f\xe8\x3f\xb2\xd1\x55\x89\xd0\x8a\x25\x24\x04\x91\xcc\x54\x7a\x94\x7e\xca\xc2\xd7\x85\x4d\x7e\x65\x1e\xa0\xc1\x33\xed\xb7\xde\xf1\xc8\xd1\x6a\x7a\xe6\x58\xe9\x7d\xe6\x69\xb5\x60\x02\xc4\x11\x48\x82\xee\x98\x8a\x88\xe3\x1a\x88\x77\xf1\x3a\x16\x89\x85\xd7\x5e\x35\x10\x70\x49\x86\xe0\x1c\x41\xcb\xf2\x47\xa7\x47\x25\x93\xdc\x22\xb1\x19\xc2\xe0\x6b\x23\xff\x95\x67\x20\x51\xe0\x84\xb0\x94\xe1\x19\xc9\x51\xc9\x1e\x10\x8a\x2e\xe2\x3a\xd2\xd4\x14\x41\x14\xe2\x8a\x88\x58\x77\x89\xb7\x91\x08\xee\x0c\x91\x15\x4a\x15\x38\xa1\x6c\x45\x78\x06\x1f\x94\x4c\x72\x05\x20\x4b\x4f\x2b\x88\x66\x28\xc3\xd2\x93\xab\x46\x4d\x05\x68\xa5\x61\x5c\x8a\x6d\x93\xb1\xf0\x95\x84\xdb\x10\xd4\xed\xc7\xc9\x08\x2a\xbc\x35\xec\x21\x14\x76\x3b\xac\x14\x9e\x41\xb9\xb4\x55\xe4\xed\x77\x0a\xbb\xc1\x36\xb8\x93\xf0\x10\x06\x3d\x1b\xd6\x06\x07\xfd\x96\x7d\x04\x85\xdd\x09\x2b\x83\x37\xb9\x42\xde\x2f\x38\x10\xd0\x0b\xde\x61\x07\x42\x22\x8b\xd6\x06\xde\x00\x25\xfa\x76\xc1\xbb\x85\xd4\x95\x4f\x7a\x5c\xf1\xff\xdb\xe1\x9f\x2e\x20\x5e\x51\xc5\x40\xe3\xc0\xa9\x63\xa7\x6e\x78\x3b\xcf\xb7\x8d\x9f\xd2\x06\xb4\x83\x95\x98\x77\xbb\xf0\xad\xb1\x05\x72\x11\xd5\x44\x62\x67\x03\x8b\xb5\x7f\xdc\x3a\x6e\x17\x96\x39\xed\x23\x9e\x2d\x8c\xde\x4c\xfb\x91\x50\xce\xb9\x72\x0f\x07\x9d\xed\x70\x5f\x7b\x6e\x1a\x9e\xdc\x50\xbb\x6a\x64\x68\xe3\xb2\x19\x0f\x39\x4c\x80\xb8\xea\x37\x2d\xb3\x18\x8e\xf2\xa9\x8d\x14\x65\x6f\x1c\xa9\x73\xc4\x7c\xb7\x78\x3e\x18\x32\xbc\x29\x70\xae\x4e\xef\x0b\x61\x9b\x48\x4c\x25\xc8\x61\xb4\x27\xba\x6b\x39\xcd\xa6\x42\x3b\x56\xcc\x45\xc9\x82\xa6\xb7\x5c\xe5\xc0\x69\x9c\x98\x56\x3f\x6d\xde\xa6\x4b\x3e\xbb\xed\x7f\x2c\xe1\xc6\x2e\x8a\x54\x87\x59\x92\xf0\x61\xc5\x91\xf2\x45\xb1\xdc\x9f\x92\x45\xfe\x46\x2f\x43\xac\x5d\x23\x2c\x08\xe3\x26\xa6\x86\x9c\xc6\x3f\xd9\xb5\x31\x54\xd4\x76\x4f\xbc\xac\x49\x7d\xc5\xbb\xf7\xfc\xc0\x92\x6b\xb4\xff\xc8\xd6\x99\x11\x3f\xac\x28\x7f\x20\x6e\xa7\x96\x84\x1d\xc1\x4f\xee\x8a\x0f\x47\xcd\xdd\xd4\xfb\xde\x86\xe0\x41\xcd\x74\x8d\x3c\x72\x2e\x2a\x91\x64\x93\x08\x32\xc0\x6c\xb1\x05\xce\xd5\x00\x73\xd3\x24\xe9\x33\x09\x12\x85\x05\xce\x92\x58\xc0\x9c\xcc\x08\x53\xe2\x79\xf0\x88\x0a\x08\x83\xfd\xa5\xdf\x18\xa4\x42\x4f\xeb\x41\x70\xd8\x07\xe5\xa0\xe7\xaf\x67\xd3\x48\x95\x12\x79\x06\x9c\x2d\xb1\xc0\x39\x9a\x26\x3d\x39\x22\x2a\xc4\x72\x2a\x14\xc8\x91\x4a\x3f\x8b\x3e\xd3\xf8\x17\x04\x05\xa3\xd4\x82\xe0\x7e\x3d\xcc\x7f\xcb\x86\xa0\xe6\x19\x77\x62\x7e\x0b\x4e\x72\x40\x1b\xcf\x67\x74\x37\x65\x2c\x78\x82\x2f\x5a\x41\xac\x63\x6c\xab\xef\x96\xa8\x52\xec\x7c\x51\x5d\x27\xd9\x9c\xe9\x88\xd3\x9a\x10\x2e\x0d\x98\xcc\x9d\x53\x3e\x67\xd2\xe5\x81\xc3\xf9\x30\x8b\x4d\x1b\xc6\x7a\xf6\xc6\x94\x92\xb0\x46\xcb\x44\x0f\xe3\xe2\x39\xb9\x26\xf7\xd7\x27\xd5\x06\xd3\xab\x79\x77\xe4\xd1\x4c\xc9\xe5\x17\xe5\x5b\x63\xa0\xe2\x9a\x45\x10\x65\x47\x0d\x94\x1d\xf5\x49\x14\x54\x54\x33\x1a\x49\x59\xd9\xed\x23\x8a\xca\x0a\x88\xc9\x20\x10\xe2\x62\xce\x32\xe3\x09\xf8\x78\xe6\x0d\x7c\x9c\x33\x6e\x47\x86\xe4\x4b\xad\x8b\x57\x98\x61\xa9\x0c\x19\x69\xae\xaf\x2e\xee\x0d\xe9\x78\x3d\x5e\x7a\xa2\x45\xb3\x53\xd6\x90\xbb\x90\x60\xcc\xc3\x9c\x49\x2d\xca\x6c\x8a\xae\xcf\x4a\xc9\x60\x57\x82\xba\x54\xaa\x98\xae\xcc\x8e\xd4\x8c\x12\x61\x75\x34\xab\x78\x45\xd1\xdb\x2d\xb9\xd0\x18\x07\xc8\x74\xb6\x93\xd4\xb6\xd3\x24\x53\xba\x9f\x37\x43\x31\x9f\xd1\xef\x83\xc1\x89\xfb\x29\xfe\x01\xb3\x23\x02\xc8\x43\x81\xda\x05\x84\x63\x21\xa6\xd4\x1e\x83\xbb\x00\xcf\xa4\x7d\xdc\x5e\x1f\x1c\x73\x79\x67\x4f\x36\x24\x29\x88\xd7\x7f\xa7\x72\xc9\x43\x25\xfb\x46\xca\x80\xe8\x53\xf7\xfe\xf3\x96\x36\xe7\x39\x59\x77\x27\xeb\x4c\x3d\x34\x37\xed\x54\x4b\xdf\xb2\x68\xf0\x71\x86\x31\x16\xa7\x81\x67\xf1\x7d\xd2\x10\x82\xb8\x38\x0c\x30\x5a\x86\x81\x87\x73\xc0\x6b\xb3\x2a\x86\x50\xad\x8a\x40\x77\x91\xe6\x57\x38\xc0\xb7\xcd\xf2\xcd\x3c\x08\x00\xe8\xf4\xd6\x2d\xbc\x25\xd2\x67\x35\xc8\xa7\x4b\x45\xb4\xab\xe9\x67\x56\xa4\x4e\xbc\x7b\x57\x02\xca\x88\x30\x5b\x9f\x5b\x11\x51\x89\x21\x59\x50\x15\x98\x53\xf5\x1c\xad\x1f\xfb\xee\x34\xec\xf7\xc9\x4e\x90\x72\xa3\x52\x15\x55\xad\xd0\x17\xa1\xc4\xf1\x0a\x3c\x2f\x91\x20\x37\x58\xa0\x45\x8a\x55\xe0\xe1\xca\x5a\x94\x38\x3f\xb2\x5a\x05\x92\x50\x6a\x14\xd6\x4f\xfc\x38\x25\x8e\xcb\x26\x88\xdd\x2a\x76\xc8\xd0\x4a\x1c\xe2\xe6\x82\x27\xb2\x46\xd5\xa8\xae\x91\xb6\xad\x58\x0b\x27\xef\xd8\x52\xb7\x35\xcc\xbf\xef\xfc\x11\x20\xf1\xfc\xf2\xd3\xa0\xaf\xe4\xad\xcb\xaf\x91\x48\xbb\x46\x9b\xdc\xc3\xfc\x7a\xaa\x16\x41\xc4\x0b\x2b\xce\x44\x04\x4e\x11\x1d\x09\x83\x76\x4f\x1b\xd6\x48\xbd\x91\x15\xf8\x5b\xd2\x05\x24\x2f\xb9\x20\xef\xa1\x35\xb1\xd3\xe5\xe8\x41\x5a\x55\x6b\x51\x7c\x2c\x19\x0f\xcd\x56\xc9\x45\x0f\x41\x01\x25\x59\x71\x9c\x56\x31\xcb\xf6\xdd\xcc\xf0\xef\xdf\x44\x89\xb6\x47\x8a\xea\xc5\x70\x4e\xc0\xed\xa1\x54\x21\x66\x45\x1e\xca\x8d\xfa\xe6\xfb\xb8\xfe\xbb\x1a\x91\xeb\x0a\x0e\xfe\xa2\xbc\xce\x1d\xcc\xcd\x6b\xc5\xea\xa1\x08\x4b\x28\xa0\xcb\x5f\xb2\x21\x24\x21\x77\xb5\x33\x1d\x59\x30\x35\x59\x50\x71\xf7\xca\x94\x44\x3f\xe5\x48\x47\x3b\x6e\x4f\x29\x1f\x49\x3b\x42\x8e\x88\xc0\xeb\xc7\xde\x34\xfe\x54\x7f\xff\x55\xc3\xfd\x93\xf7\x0e\xfb\x8a\x11\xec\x63\x87\x2f\xef\x99\x2b\xb2\xbb\x63\xc6\xa3\x23\x6c\xe4\x64\x5e\xa2\xc3\x26\x32\x82\xea\x94\x99\x17\xb7\xbc\x24\x27\x49\x85\x44\xa2\x35\xe0\x68\x49\xb2\x23\x90\xe8\x9b\x6c\x62\xb7\x45\xc3\x0f\x1e\xca\x2c\xf4\x81\x3c\xe0\x16\xc7\x69\x9a\xa2\x9c\x91\xa0\xb9\xd4\x74\xea\xdc\xc8\xc8\x2b\xd5\xc1\x79\x88\xaf\xe1\xa8\x67\x28\x76\xec\xf1\xf8\x98\xc5\x31\xb7\x12\x92\x3e\x2c\xdb\x4d\xab\xae\xa0\x7f\x9a\x51\x59\x4d\x3d\x2a\xda\x9f\xb2\x66\x91\x51\x61\xc0\x20\x0a\x04\x8b\x13\xd4\x82\xa3\x0f\xb0\xdb\x61\xd0\xad\x58\x59\x01\xf0\x81\x60\x98\x21\xd6\xa4\x34\x8c\x7d\x0c\x1f\xf6\xf1\x8c\xe1\x0c\xf1\x8b\x56\x4d\xc6\xbe\x0c\x8f\x1b\x1d\xfe\x5d\x93\x29\x64\x1f\xd5\xa6\xb7\xa5\x9b\xd3\x5b\xd3\x61\x2f\x2e\xe9\x3f\x9a\xd3\xda\xd2\xec\xad\x69\x30\x2e\x8b\x4a\xcd\x25\x3f\xba\xf9\x55\x03\x85\x7d\xf3\xc8\x2f\xa4\xe1\xa4\xc7\x9e\xe8\x8b\xbc\x6a\x3a\x83\x6c\xe9\x0b\x90\x44\x31\x78\x26\xac\x40\x00\x4e\x07\x48\xaf\xc2\x16\x22\x28\xdf\xed\x50\x5e\xd3\xb7\x8c\x5f\xa5\x49\x6b\x11\xb7\x2d\x57\x76\xb4\x96\x6f\xdf\x24\x75\xc0\x58\xfb\x43\x5e\xcd\x6d\xc6\xc3\xc6\xf4\x95\xfa\xd6\x39\x5a\x71\xf1\x3c\xad\xa1\xb5\x85\x8d\x53\x8d\xe9\x6b\xf5\xed\x73\x74\xcb\x8b\x0b\x7a\x43\x3b\x6d\xb5\x09\xba\xfb\xd3\xa8\x21\xd7\xe9\xd8\xf8\x79\x74\xfb\x3b\xff\xcd\xf3\x67\xc2\xa1\xf4\x4f\x2f\xaf\x6e\xda\xa7\x57\xd9\x3d\xf8\x97\x3d\xa3\x6f\x88\x19\xc2\x98\x50\x92\xee\xcb\x24\x26\x48\xfd\x7c\xe1\xec\x42\x74\x78\x06\x2b\x16\x8f\x11\x73\x81\xa8\x20\xfb\xcb\x9e\xd9\xfe\xe9\x4e\x7d\x3b\x88\xe2\x1e\xec\xe5\xde\x59\xa5\x80\xe9\xbc\x2f\x50\x11\x2d\x6b\x17\x80\xde\xb9\xd3\x2b\xc5\xac\x10\x51\xf0\x7a\xd7\x20\x7f\x97\x4f\x5f\xde\xae\x28\x82\xdc\xa7\xb8\x97\x1b\xf3\x6c\x73\x8f\x83\xa7\xe8\xa4\xcf\xf7\x36\x3e\x8a\x1f\x5c\x51\xcd\x2e\x5c\xf5\xf2\x71\xc8\x08\x25\xcd\x77\x8c\x13\x9b\x63\x90\x54\x80\x25\xaa\x4a\xb0\x5a\xf5\xfd\x66\x2f\xbc\x89\x78\x05\x40\x53\x28\x91\xef\x7e\x45\x80\x72\x7e\xbd\xf1\x53\x88\xff\xfc\x59\x3f\x71\xa0\x85\xd4\x04\x0e\x6b\x6a\x91\xdf\xfa\xe8\xae\x1c\xb7\xf6\x87\x20\xce\xfa\x87\x97\x72\x7e\xc3\x60\x1a\x06\x76\x62\xee\x0e\xd0\x6e\x6d\xb3\x59\xb9\x2e\x72\xc3\xc0\xfb\xe5\x63\x91\x9d\x6a\x8e\x23\x31\x41\xd3\x90\x4c\xcc\x55\xa1\x51\x52\xb8\x9c\xa1\x4d\x77\x35\xcb\x97\x22\x2b\x9e\xbc\x98\x36\x99\x6f\x15\xe0\x39\x79\x5c\x0d\xe0\xcd\xbd\x97\x5a\xa0\x25\x85\x49\xa9\xfb\x5d\x14\xcc\xb8\x9a\x2a\x65\x75\xfb\x94\xe5\x8d\xb7\x64\xec\x43\x38\xeb\x2e\x08\xe7\x34\x8a\x8f\x15\xee\x2d\xca\x39\xd7\xda\x74\x5a\x58\x56\x70\x12\xdb\x5b\xa6\x19\xdf\xea\x46\x18\xa7\x5b\xf2\x11\x09\x74\xaa\x22\x32\x53\x70\x82\x4b\xce\xce\x10\x1a\xa2\x30\x4c\x2d\xe4\x07\x72\x56\x12\x66\xcd\xc0\x7a\xe5\x29\xf1\x82\x86\x84\x83\x39\xdb\x72\x75\x6b\x9d\xf5\x67\xe3\x4b\xde\xab\xdf\xfd\xe1\x21\x3b\x03\x95\x26\x8b\xcc\x10\x1c\x22\x93\x5c\x19\xc2\xfc\x58\x12\x23\xed\xcc\x5b\x4a\x78\xfb\xc3\x25\xc2\x7d\x8f\x67\x0c\x51\x68\x19\xe1\xd7\x59\xd7\x11\x03\x73\x1e\xd7\x7a\xb1\x88\xd2\xf5\xfd\x47\x8d\xc9\x35\x31\x6b\xd0\x96\x96\x4b\xfc\xbe\x7a\xe1\xa1\x82\x0b\xd5\xda\xd3\x6d\xf5\x67\x05\xe5\x95\x67\x88\x1d\xc5\xf4\x5e\x80\x31\x04\x40\x10\x6e\x95\x87\x23\x59\x46\x1a\x2b\x33\x3a\x23\xed\x66\x0a\xce\x11\xc5\x3b\xc0\x2c\x12\xc3\xd7\xb2\xf6\x34\xe0\xe8\x97\xd7\xdf\xb3\x10\xd0\x0b\x8e\x0b\xd0\x01\xe8\x0b\xc7\x0b\x28\x31\x68\x64\x07\xfd\x09\xfc\x12\xfc\xc9\x4a\xc3\xb0\x4b\x61\x44\x16\x79\x00\x7e\xbf\x42\x7e\xd0\xd1\xb0\x9f\x92\x5f\x72\x00\xd5\x58\xca\x9c\x76\xab\x84\x67\x5b\x32\xb4\xf1\x00\x6b\x0b\xa0\x06\x8f\x3c\xd6\x5d\x95\xee\x37\x00\x7f\xe3\x9a\x19\x59\x92\x7f\x70\xfb\xc1\x22\x11\xfe\xcc\x6f\xbb\x24\x17\x07\xb4\x91\x95\x99\xe7\xd8\x9c\xce\x6f\x57\x96\xbe\x39\x00\x6b\x5e\xff\xfe\x4d\x98\x4a\x83\x40\x54\x47\x00\x47\xbc\x07\x20\xca\xa3\x80\xa3\x3e\x38\x19\xeb\x45\x79\xd6\xc9\xc6\xc6\xb3\xa2\xda\x92\x73\xa2\x14\x17\x1c\xcc\x39\x57\x2e\x3f\xd5\xd8\x74\x56\xd4\x50\x68\xb2\x7d\x4d\xf1\x87\x72\x60\x80\x54\xac\x9b\x2f\xd2\x83\x09\xa9\x08\xc7\x2b\x50\x96\x94\x6b\x29\x13\x1d\x4f\x64\x80\x52\xb8\xfa\x68\xa2\x12\x6b\x49\xd9\x2b\x5b\xfc\x02\x50\xe9\xb8\x65\x10\x1f\xdf\x7f\xb0\xec\xc6\x89\x09\x69\xc3\xc5\xf8\xd9\x0d\xc2\x43\xb9\xe7\x2a\x50\xd7\xd4\x78\x21\x24\x62\xa8\xef\x6f\x14\x1f\xca\x85\x03\xd2\xf0\x9e\x94\x78\x63\x2c\x31\xd5\xc4\x20\x66\xa3\x2d\xa9\xd7\x52\x47\x86\xe6\x8b\x4d\x60\x2a\xcf\xc0\x20\x2b\xf1\x96\xd4\xd8\x92\x65\x97\x86\xfd\x06\x1e\x15\x8f\x42\xda\x8d\xec\x3a\xad\x34\x34\x33\x59\xaa\x25\x6e\x0e\x7c\x33\x2d\x7a\x4d\xe3\x25\x23\xc0\xa5\x04\x28\x55\x19\x62\xed\x2d\x7a\x22\x31\x15\xff\xe6\x6e\x3e\xf6\x7e\x31\x6a\x3a\xa9\x32\x07\x5f\x62\x54\xf2\x5c\x15\xea\x05\xa8\xc3\x75\x24\xba\xdb\x90\xd5\xee\xe6\x84\x47\xfc\x62\x96\xfb\x81\xe3\xe4\x60\xcf\xd5\x08\x7c\x9b\x43\x13\xf4\x8f\x07\x3e\xcf\xaf\xcf\xa3\x3a\x4c\x6a\x81\xab\x26\x61\x2c\xa6\x24\xcd\x1e\x52\x45\x4a\x49\xe6\xe9\x62\x6c\x80\x2c\x38\x8a\x2c\xfa\xa2\x0f\x47\xb2\x15\x50\xe0\x1a\x56\xd6\xa6\xa3\x63\x47\x03\x76\x2f\x79\x2c\x43\x72\x38\x9d\x5f\x3c\x92\x71\x67\xf9\x22\xae\xb8\x78\x09\xd7\x5e\xde\xa6\xb2\x7c\x81\x7e\x01\x24\x38\x8d\x7a\xbd\xd1\x98\x09\xf8\xab\x71\x09\x1e\x5f\x0f\x2f\x52\x47\x06\x71\x06\x18\x68\xc8\x00\x05\xcd\x5e\x22\xd7\x72\x37\x05\xd5\x0f\xfc\xab\xd2\x66\x2a\xfe\x09\x9a\x1a\x50\xc8\x49\x32\x24\xfd\xcb\xa0\x9c\x0b\xb9\x3f\x5d\x98\xc9\xac\x8e\xe7\x3f\xef\x95\xf4\xba\xd6\xc7\x03\x31\x2d\xb4\x7e\xe6\x76\x7f\xcb\xb1\xcf\xcb\x11\xeb\x77\x7c\x1f\x8f\xf9\xde\xa7\x78\xb8\xaf\x02\xc4\x26\xc4\x3d\x1a\xda\x1e\x9d\xde\x3b\x86\x8e\xcb\x33\x92\xab\x08\xb2\x1c\x57\x98\x36\x05\xbf\xf0\xb0\xcf\xc3\x40\xaa\xf5\x60\xfa\x22\x15\x08\x76\x1f\x0d\x6a\x92\xbb\xfd\x85\x8c\xb8\x14\x23\xf3\x65\x80\x84\x0b\xdb\x45\xc2\xa0\xa6\xd6\x9c\x99\x1d\xfe\xee\x30\x6e\x86\xe8\x97\xe4\x83\x18\x10\x7f\xce\xf1\x85\x3a\xb9\x34\xb1\x7a\x67\x86\x36\x53\x08\x65\x21\xef\x77\xf9\xc0\xf2\x04\xbd\xa5\x65\x73\x14\xb7\x67\x16\x5e\x9f\x4f\x6d\xd4\x0b\x62\x72\x55\xd6\x42\x0b\x9f\x78\x6b\x3d\x03\xf4\xf3\x9e\x22\x0d\xc0\x96\xc9\x0e\xa2\x2e\xfe\x18\x4d\xdc\x79\x79\x19\x15\x06\xd0\xc8\x9d\xe5\x8a\x31\xb0\xc1\xb9\x00\x6e\xd1\xb1\x2b\x95\xb0\x60\x65\xba\x20\xfe\x7d\xac\x36\x86\x20\xc4\x69\x92\x13\xb2\xab\x6b\xd4\x3b\x21\x4e\xed\x74\x54\x77\x9e\xa6\x09\x60\x47\x78\xec\x99\x2d\x06\x83\x4d\x05\x52\x7a\xec\x4f\xb9\xd9\xbb\x62\x66\x80\x52\x37\xdc\x5e\x30\xb4\x60\x1a\xfa\x3e\x24\xf8\xaa\xd6\x33\x04\xe1\x68\x50\x91\xc0\xfd\x74\xa2\xca\xf0\xd9\xe3\x4f\xf4\x9f\x2e\xac\x71\xde\x86\xb3\x0f\xa1\xdc\x0e\x4c\x87\x59\x43\xe8\xad\xa9\x5a\x60\x56\xab\x27\x61\x1d\x46\x89\x6b\x43\x0e\x74\x8b\xc0\x8a\x89\x8f\x63\x60\x0a\xc3\x99\x94\x84\x22\xb3\x11\x94\xd4\xfd\xff\x4b\x20\xee\xa7\x75\x93\xa1\xb9\x03\x01\x95\x02\x7e\xce\x7b\xb9\xaf\x7b\x16\xeb\x00\xe6\x39\x44\x9b\x07\xd9\xad\x37\xb2\xfa\xcb\xca\x66\xc9\xce\xe2\xc3\xa4\x8e\x46\xee\x72\xa9\x72\xc9\xfa\xf9\xe0\xda\x77\x8a\x85\x1f\x35\x88\x8c\xc8\xd4\xc4\x74\x6b\x9e\x3e\x86\x81\x7e\x82\x14\x52\x15\x36\x95\xbb\x64\xe6\xcf\x78\xf6\x7b\x2a\x5e\x3c\x5a\xfb\x6c\x0b\x59\x78\x47\x67\xd0\xb9\x24\x51\x2b\x99\x89\x28\x19\x3a\x91\xa5\x92\x54\xd9\x13\x66\x63\x6c\x05\x43\x75\xab\x8e\x57\xa5\x4a\xcb\xee\xd0\xd2\x24\x94\xa4\xe9\x6a\x25\xc3\x69\x53\x8e\xc4\x9a\x2d\xc8\x00\xb5\xb9\x74\xe7\x3f\xd9\xa4\xbe\x1f\x1f\x53\xc8\xb7\xce\x2c\x61\x12\x07\x6f\xdf\xa6\x50\x6e\x9f\x1d\xa4\xf9\xa7\x2a\xd3\xd8\xa2\x78\x1a\x99\xaf\x90\xb2\xd9\xf1\xdc\xed\x6b\x71\xed\x2c\x1f\x27\x97\xe2\x08\x50\xdc\x6f\x60\x32\xcd\x5d\xa8\x22\x27\xa6\xa7\xc0\xc8\xdc\x57\x5a\x3b\xc7\x74\x9a\x67\x49\xcd\xcd\xec\x15\xbb\x72\xd9\xf4\x71\xf7\xf2\xff\x89\x87\x7c\x7e\xfb\x98\x97\xaa\x60\x4a\x3c\x66\x5d\xba\x22\xe6\xc7\x03\x1a\xf2\x28\x85\xd9\xe4\x9e\x3c\xc1\xd3\x31\x1d\x1a\x99\x2d\x92\x23\x29\x8c\x54\xe4\x50\xa8\xdb\xaf\x64\x3a\x35\x0a\x5b\xb4\xa5\x36\x5a\xa1\xa5\x7c\xee\xcd\x80\x3c\x3e\x2f\x01\xc5\x93\xe5\xad\xaa\x93\xd9\x6c\xe4\xdc\xc1\xe0\xfe\x72\x61\x63\x68\x4b\x5a\x63\xdd\xda\x38\xc5\x45\x94\xe6\x54\x85\x6b\x53\x5f\x42\xff\xad\xde\x00\x66\x2c\x4e\xf7\x87\x55\x9c\xbe\xb8\xf3\x6e\x9f\xbb\xdf\xeb\x79\x9c\xdf\x8c\x41\x89\x2c\x71\xfe\xac\x7e\xfd\x9d\xf5\xe1\x81\x3d\xfc\x3f\xbd\xae\x54\xfd\xb8\xb9\x73\x9f\x61\x5a\x07\x67\xf8\xf3\x3a\x2d\xa4\xd5\x79\x38\xba\x17\x3a\x6b\x6e\xbd\x33\x11\xe4\x54\x88\x8a\xe3\xa4\x29\xf9\x78\x55\x0a\xc6\xe0\x7b\x19\xb1\x8e\x85\xef\x59\x38\xe2\x97\xf8\x30\x8d\xcd\xf8\x05\xc4\xda\x4f\x1e\x99\x96\x54\x10\x92\x19\x85\x90\xf6\x7e\x6f\x24\x13\xd3\x0a\xa8\x74\x29\xde\xc4\x27\x33\x9d\x1a\xa1\x2d\x86\x23\x2f\x8b\x54\xab\x11\x76\x1d\xba\x2c\xeb\x40\x55\xd9\x41\xa4\x63\xc9\x1a\xe4\xe4\x6d\x9a\xe8\x06\x1f\x39\xe3\xd1\xdf\x5a\x89\x7b\xfd\xf9\xb9\x23\xe2\x4d\x8f\x94\x75\x4b\x33\x2e\x10\xef\x6c\x46\x32\x5f\x9f\x7d\x96\x6b\x63\x11\x61\x7a\x2d\xc1\x86\x66\x89\x0a\x83\x14\xbc\x38\x7d\x32\x4b\x66\x3c\x27\x4c\x51\x25\xe3\x19\x3a\x25\x21\x0b\x43\x17\x94\x05\x8b\x79\x60\xdd\x81\x16\xf0\xe5\xf8\xf8\xed\x0c\xc6\x09\x56\xfc\xae\x88\x2a\xf2\xad\x18\xc6\x03\x4a\xe4\xaf\x4c\xe6\xb1\x35\x9f\x2e\x71\x30\x4c\xfb\xd0\xe1\x78\xad\x40\x83\xdb\xe7\x36\xd4\x91\x98\xc5\x1a\x89\x0d\xc6\x11\x16\x44\x2a\xd5\x70\x87\x1e\x5f\x21\x9a\xb3\xbb\x16\xc0\x45\xa1\x6b\xcf\xfc\x45\x41\x9c\x56\x08\x87\x51\xc8\xfa\x8d\x5f\xa3\x38\x73\xfd\xd3\x23\xfa\xc7\x05\xf1\x96\x38\xcf\xc1\xad\xa0\xb6\x83\x1b\x1e\xd3\x70\x62\x8d\x20\x28\x96\x2e\x43\x33\xb0\x6c\x5a\x0c\x56\x94\xc3\x0b\x88\xa5\x67\xa2\x52\x70\xcc\xca\xe8\x28\x22\x95\x3a\x41\x8d\xda\x44\xa5\x22\x30\x5a\xb2\x5e\x1f\xb9\x06\x3d\x41\xd7\x9d\xca\xf7\xc9\x98\x8c\xfa\x5f\xbd\x01\x7e\xbf\x12\x9f\xd3\xe3\x2e\xa0\x2c\x73\x62\xf5\x46\x6a\x15\x51\xaa\xae\x0c\xd7\xa6\xc5\xe9\x39\xe7\x60\x7f\xa5\x2d\xae\x58\xd3\xae\x2f\xed\x2f\xd8\xdc\x50\x32\x5c\xb8\xf7\x1e\x99\x36\x42\x87\x10\xb0\x35\x94\x62\xfc\xe9\x5b\x6c\xbc\x4f\x26\xce\x2a\x6d\x08\xbd\xb4\x80\xe5\xe6\x82\xc1\x60\x88\x9a\x74\x73\xa2\x6a\x3e\x3f\x31\x4a\x9c\xf0\xc3\xd1\xa3\x30\xf2\xfc\xe0\x07\xa4\x61\xdf\xe0\x85\x78\x1b\x47\x1b\x80\xc2\x1c\xd6\x93\xb6\x70\x08\x9f\xb1\xd4\xd1\x72\x06\x28\x39\xf8\x91\x34\xd1\xfc\x5f\x45\x97\xb7\x37\x56\x76\x67\xfd\xa6\xdb\x38\x3b\xd7\x57\x25\x6c\x70\x14\x1d\x22\x94\x46\x09\xfc\x68\xc7\xde\x41\xe1\xd1\x84\x7b\xe8\x43\x05\x8b\xa2\x8a\x14\x98\x82\x4c\x9a\xb0\xab\xc3\x7a\x5d\x34\xcb\x71\x18\xda\xa9\xa0\xa7\x71\x61\x38\x45\x1a\x27\xce\xec\xa9\x8c\x89\xa0\x7f\x5b\x5a\xed\x40\x64\xaf\x4f\x83\x29\x44\x4d\x0e\xc7\x12\xb6\xd4\x24\xf1\xca\xa3\xa5\xc7\xfa\x9f\x15\x3f\x6a\x8b\x0a\x3c\x35\xa8\x86\x50\xe4\xc5\xfe\x6c\x1a\x00\x0e\xbd\x1b\xbd\x8e\x89\x3f\x8e\x5f\x11\x28\x43\xc2\xa2\xa5\xc8\x3f\x56\xe0\x61\x84\x15\x48\x29\x1c\xc2\xb4\x8f\xd9\xb6\x15\x8c\xc0\xc0\xe3\x6e\x11\xfc\x9a\x84\x27\x88\xf3\x80\x8f\x33\xf2\x03\x8c\x70\x8f\x4f\x39\xfe\x54\x19\x62\x52\x0a\xd6\xde\xc9\x06\xe3\x31\xe6\x90\x3d\x64\xf0\xb0\x14\xdf\x88\x95\xd9\x5d\x71\x12\x67\xd8\x68\xc5\xe0\x96\x83\x05\xad\xbe\x9d\x4f\x4b\x76\x90\xda\xca\x58\xfd\xba\x3c\x56\x87\xd3\xbd\x48\x2c\xb9\xf9\xf0\x56\x8c\x04\xf5\xfd\x1c\x3d\x0a\x42\x38\x21\xc1\xc0\x6e\xd1\x83\xc8\xd9\x3c\x1d\x92\x47\xd7\xce\xbb\xbf\x23\x70\xcf\x37\x7b\x75\xea\x6e\x5c\x1d\xb7\xe2\x8a\xb7\xca\x09\x6e\x61\x7e\xb0\x87\xcb\x3c\xbc\x3f\x4c\x15\x0a\x84\x06\x74\x2e\x50\x37\xf6\xfb\x14\x6c\xce\xb7\x63\xf3\xb3\x2c\x74\xca\xb4\x25\x8f\x7d\x6e\x27\xcb\xa7\x81\x2e\xd9\x25\x72\x6c\x56\x7e\x9e\xff\x25\x3e\xba\x9e\x11\xe9\x12\xc9\x4c\x94\x53\x52\xb0\x41\x44\xd0\x21\xf2\x32\xcc\xe0\xe4\xd0\x63\x3c\x2c\xa5\x10\xc9\x0f\x52\x79\x49\xc2\x0c\x65\x99\xb6\xbc\x81\x5f\x17\x35\xd5\x98\xf5\x30\x7f\x85\x5e\xb9\x97\xb4\xca\x9f\xac\x6f\x54\xbb\x88\xfe\x67\x37\x43\xda\x51\xc3\xdd\x7b\x7e\xfd\x83\x27\x6d\x7b\x1e\x9f\x7b\x95\xb5\xf6\xfc\xda\x05\x98\xa7\x3b\xcc\x3e\xa1\xce\x17\x08\xfc\xa4\xa1\x7a\xff\xe8\xdc\x05\x31\xa5\x56\x4a\x7f\xf9\x33\x66\x5c\x91\xfc\xba\x08\x7c\x0b\xc0\x02\xa7\x66\x38\xe0\x24\x26\xee\x2e\x1a\x5e\xe4\xf7\x6f\xbe\x0f\xea\x7c\xa5\xc4\x4f\x11\x9a\xef\x1f\x63\x5e\x09\xae\xb5\x33\x47\x0a\x80\x33\x0f\xf9\x82\x3e\x4c\x80\xda\x53\xf2\x3e\x48\x6f\x84\xde\xf8\x7b\x18\x0e\xe2\xd7\x82\x3a\xfb\x71\x4f\x2c\x2c\x92\xb4\x18\xca\x51\x47\x64\xa5\x8b\xb8\xe5\x45\x89\xad\xd0\xdc\xec\xed\x85\x9d\x56\xab\xa6\x86\xa1\x77\xc4\x1c\x05\x56\x4d\xdb\xdf\x53\xf6\xa2\xb5\xae\x9e\x9c\x8b\xde\x67\x9f\xc2\xb0\x47\x7b\xde\x48\x22\xb8\xfe\x84\xc1\x5b\x45\xbd\xcb\xcc\xf7\x5e\x0b\x14\xf1\xff\x40\x3c\xde\xcd\xdf\xf3\x41\xe1\xec\xa4\x35\xa8\x86\x12\xf6\x54\x7e\x7d\xdc\x2e\xb7\x6f\x48\xce\xb6\xa0\x87\xdc\x4e\xdb\x83\xf8\x98\xec\x50\xc9\x2f\xd1\xd8\xf5\x9b\xfa\xdd\xb3\x26\xd5\x77\x57\xfe\xda\x66\xe1\x54\x30\xc6\x50\x56\xe7\x01\x42\x7b\x05\x77\xd2\xd2\x90\xb9\x52\xcc\x3c\x25\x94\x42\x15\xb0\xa4\x58\x8b\x68\xd4\x5e\x32\x8f\x29\xb2\x4e\x11\x1b\x4a\x58\xbd\x3a\x58\xcc\xba\x6b\x87\x98\x51\xaf\x36\xce\x93\x45\xc3\xa1\xca\x9f\x24\x38\xf8\xdd\xb2\x96\xac\x32\x53\x51\x5e\x7a\xd0\x01\xeb\xda\xa6\x7a\xf7\xb8\x80\x83\x30\xf0\x1a\x69\xb0\x65\x1b\xd8\xc1\x49\xc5\x4a\x7f\x5c\xd7\xe8\x93\xec\x6f\x16\x26\xce\x5d\x55\xd7\x7f\x31\xe8\x24\x70\xca\xe7\x95\xb2\x7f\x6f\x77\x5a\x9b\x8d\xca\x98\xd6\xb4\x2d\xe0\xf0\x83\x63\x69\xa2\xb9\xe2\xca\x31\x9c\xc9\xda\x14\x9a\x0c\x92\x03\x63\xde\x45\xa5\xa9\x15\xac\xa8\x17\xdd\x81\x21\xec\xdc\xc3\x07\x1e\x0d\x73\x88\x60\xa9\x21\xc3\xfa\x2d\xf8\xd9\xcf\xbf\xfd\x7a\x7f\x51\x4f\xa7\xb5\xe4\x6b\xd0\x10\x6d\xd3\x86\x7a\x43\x5a\x47\x89\xb5\x23\x2e\x27\xa7\x34\xec\x73\xe7\xaa\xfa\x93\xab\x27\x1d\xb8\xaf\xaf\xa1\xac\xe7\xf9\x86\x77\xb2\x6d\xf0\x39\xd7\xf8\x5b\x1e\xfd\xe9\xf4\x37\x9a\x9d\xdb\x75\x9d\x5e\x7f\x6d\xba\xc3\x77\xfe\xb7\x64\x7e\xee\xe7\x03\x9f\x51\x9f\xff\x18\x1f\x23\xe1\x9f\x66\xc7\xce\x90\x0e\xd0\x91\x29\xdf\x9a\x43\x5f\x8e\xf7\x76\x61\x53\x4a\x2b\xaf\x8e\x3f\x5d\x8b\x4e\x49\x76\x04\x5c\x7e\x0e\x14\x6a\x7f\x8a\xfb\x15\x3a\xfa\x68\x51\x29\x96\xbd\x63\x7b\xa5\x63\x5c\xb9\xe1\x42\xaa\xb8\x85\x8d\x90\x13\xc9\x6d\x7f\xb8\xa3\x4d\xbb\xe3\x86\xe0\x92\x84\xcb\x81\x75\xbb\x84\x38\xa7\x86\xd0\x69\xdc\x3f\x45\xd8\xb4\xfe\x1c\xf5\x94\x4f\xda\xe6\x7f\x45\xee\x29\x7c\xad\xa1\xce\x18\x8e\x10\xf9\xd5\xeb\x8c\x64\xb6\x77\x88\x49\x08\x83\xff\xea\x0f\x2f\x18\xd9\x9c\x55\xb0\xed\xc0\xca\xee\x36\xee\xb8\x85\xc2\xf4\xe1\x69\xf0\x0f\xcd\xfa\xd8\xad\xde\x3a\x2c\x26\x43\x95\x49\x8d\x52\x01\x06\x05\xda\xd6\xb0\x57\x4e\x15\x29\xd1\x4d\x4b\x81\x25\x35\xac\x32\x6a\x04\x42\x52\x0a\x93\x55\xb4\x74\x13\xa4\x3c\xe0\x2f\x06\x52\x08\x6b\xec\x23\x03\xac\x76\xfe\xd4\x6b\x97\xff\x88\x9a\xe6\x63\xca\x89\x62\x94\x6c\xd8\xee\xd9\x5c\xcb\x3c\x5a\x2e\xdf\x3d\x3d\x0e\xaf\x2a\xdf\x07\xa2\x16\x26\x7c\xe7\x3c\x9c\x4f\x6d\x51\xb9\xb2\x4c\xf9\xbd\xb4\x2d\xc6\x07\xea\xca\x8d\x3b\x4d\xa6\x29\xc9\x8d\xdd\x6a\x73\xf7\x64\x8d\x5a\xe7\x04\xa3\xb5\xd5\x86\x67\x8e\x5d\xd5\x67\x57\x56\xcf\x98\x47\xa4\xdd\xcd\x86\x01\x21\x14\x6e\x5d\x74\x34\xd9\x7f\x9c\xb2\x90\xec\x45\xa1\xd4\x8c\x3e\x32\x40\x65\xeb\x7a\x13\xf3\x76\x2b\x29\x82\x47\x83\xce\x74\x7a\x6d\x72\x6c\x2c\x63\x8e\xa6\xed\x30\x19\xe7\xf3\x2b\x29\x12\x3a\x66\xfe\xa7\x50\xa9\x64\x3a\x3c\xcd\xbc\xdd\x89\x69\x3a\x79\x38\xd8\xac\x4c\x87\x46\x9a\x2e\x5d\x57\x75\xa8\x4f\xd8\x10\x1f\xa7\x66\x85\x7d\x39\x52\x0e\x03\xf4\x86\x44\x25\x2d\xff\xd2\xb3\xc3\x27\x2c\x16\x37\xbb\x7b\xf7\xa8\x14\x7f\xc8\xb5\xed\xf5\xbc\x36\xc0\x07\x82\x02\xdd\xee\x6f\xaf\x3e\x5d\xfb\xd4\x0f\xef\xdf\x8e\xdd\x5f\x82\x71\xbb\x0f\x2a\x3c\xdd\x03\xa8\x66\x83\x91\x74\xbd\x8d\xfa\xbd\x00\x6c\x1c\x2f\x2d\xf2\x4d\xa3\xc7\x3c\x73\x54\x3f\x0f\xdc\xa8\x06\xd1\x77\x3b\x65\x25\xf7\x01\x6b\x6c\x75\xf9\x6c\xe0\xd1\x97\x2f\x84\xda\x92\xfd\xde\x3c\xf1\xd1\x65\xef\x96\x23\x97\x6f\x59\x5d\xc8\xd8\xfd\x62\x69\xd1\x3b\x5a\xdf\xc5\xc9\x1f\xa0\x3f\x1c\xbf\x76\xfe\xd2\xec\xb3\x05\x92\x49\x1a\x6f\x7b\x66\xa4\xc2\x93\xab\x17\xdb\x03\xe6\x3d\x1c\x97\x88\xb6\x6a\x2a\x92\xf0\x88\xb5\xbb\x73\xfa\x87\xf1\xa6\x21\x8d\xa1\x07\xe3\x9d\x54\xd0\x1a\x8d\x2f\x4e\xf7\x65\x17\xdb\x39\xed\x54\x31\x32\x90\xef\x70\x63\xbc\xa0\xe4\x2d\x07\xb7\x56\x27\x90\x58\xf6\xae\x34\x86\x0a\xf0\xeb\xdc\xa6\xb1\xed\x87\xf1\x62\xbf\xa2\x2e\xb9\xee\x28\x61\xff\x32\xe1\xf5\x5d\xbd\x90\x34\xd2\xa2\x99\xe5\x0b\xf9\x83\xe3\x6d\xea\x2e\x1f\xcf\xb6\xe5\x08\xfe\x09\xf0\xa2\x2e\xb7\xe7\x94\xc2\x29\x13\x3f\x96\xa5\x7d\x80\xea\x92\xa0\xdc\xea\x18\x2f\xa7\xaf\x46\xbf\xd0\x12\xbc\x22\x83\xc7\x5d\x71\xdb\x7e\xff\xfa\x17\x79\x5f\x9d\x0f\x86\x46\x11\x8d\xac\xd3\xa2\x83\xc3\xd6\x9c\x93\xca\x78\x9f\x10\x31\x6a\xea\x0b\x01\xa2\x09\xe4\x52\x9d\x61\x2d\x5a\xe6\x8a\xc0\x5e\x16\x08\xb2\xf7\x83\xcd\x69\x28\xf6\x48\xf8\x1d\x5c\x1d\x99\x86\x37\x96\x13\x98\x28\xd4\xab\x76\xc3\x9c\x29\xd4\x26\xb7\xae\x85\x41\x9a\x16\xa2\x20\x35\x54\x1f\x11\x00\x59\xe0\x4d\xff\x92\x63\xec\x6a\xef\xc8\xec\x1a\x55\x49\xc7\x4e\x09\x9e\x4f\x1d\x91\x70\x3e\xad\x79\xeb\x79\xc2\x0a\x60\xff\xfb\x09\xb4\x1e\x8e\x77\x04\x6c\x5a\xdd\x91\x02\x73\xb9\x32\xfe\xa6\x19\x10\x7a\xfe\xec\xfb\x15\x3e\xec\xeb\x52\xba\xe3\xcc\x2f\x6a\x6d\xa8\xff\xf2\xca\x96\x5a\x0b\x0e\xdd\xd4\xc5\x9d\x9b\xdf\x3f\x36\x17\x87\xe2\xf8\x13\x32\xcc\xcd\x47\x33\x0a\xba\x36\xf0\x82\x26\xc5\x95\xaf\xa1\x31\x81\x58\xba\x6a\x49\x59\x8a\x04\x1e\x4f\x4b\xbd\xbc\xd7\x96\x1b\x9c\xcb\xe8\x94\x5c\x7d\x70\xbf\x02\x66\xe8\x9f\x1f\x94\x72\x66\x81\x68\x0a\x85\x53\x28\x6a\xce\x46\x32\x7b\xaf\x7b\xe2\x5c\xa9\xaf\x97\x5d\xab\x7f\x0f\xd7\x4d\x5c\x28\x95\x36\xdd\xb5\x24\x0c\x76\xd6\xff\x13\x3f\xd4\x92\xf5\x2a\xf8\x2f\x0e\xd6\x9f\x4b\x40\xa7\x1a\xb2\xcb\x7d\x8e\x14\xd0\x16\x8c\x21\xf6\x5e\x31\x28\x46\xf5\xb0\xce\x10\x6d\x20\x28\x30\x2e\x2f\xfb\xdf\x2b\x6a\xc0\x04\x88\x9c\x3f\x4f\x5b\x08\x32\x81\xf9\xaa\x48\xe4\x53\x91\xf2\x84\x09\x6e\x8b\x52\x46\x98\xe8\x66\xa8\x8f\xf9\xa9\xd8\xec\x7c\xbe\x03\xb5\xd5\x8c\x23\x42\xff\x75\x0f\x27\x9b\x92\x02\x19\x76\xe2\xc6\x04\x85\x18\xef\x4c\x00\x04\xb7\x71\x07\xa1\xbe\x92\x69\x0b\x2a\x04\x1a\x8a\xc1\x2a\x03\xc1\x6d\x51\x83\x50\xb7\xc9\x4a\x2e\x14\x92\x35\x03\x5b\x92\x49\x31\xce\x49\x1a\x04\xb7\x65\x29\xb3\x36\xd9\x0e\x6a\x22\x4f\x8b\x09\x9d\x9d\x4d\x50\x64\x5d\x42\x04\xb7\x85\x0f\x42\xbd\x20\xe7\x2a\xdc\xd4\x42\x6e\x0c\x85\x9c\x4e\x58\xec\xd9\x93\xe1\x0f\xc9\x27\x27\xd2\xce\x4a\xb7\xe0\xbd\xdc\xc9\x09\xc4\x35\xd1\xd5\xcf\x3b\xa8\xed\x5d\x7d\x55\x0f\xa3\x43\xaf\x42\x89\x96\x2c\xf6\xec\x19\x88\x87\xe4\x33\xd2\x4e\xf8\xf8\xd6\x36\x60\x68\xfe\xe6\x52\xa9\x7c\xa6\xfe\x85\x16\xee\x81\x92\xfa\xda\x12\x01\x02\x72\xbb\xb4\x95\x02\xbb\xa1\x5d\x51\x10\x68\xaf\x86\x07\xe6\xab\x93\x0a\x65\x36\xd1\xcd\xe1\x97\x59\x5a\xd9\x5a\x14\x22\x25\x09\xec\xb5\x5e\x0f\xc9\xd7\x2e\x75\xc2\xaf\x29\x42\x60\x51\x09\x0b\x49\xd6\x22\xfb\xf1\x1d\xd6\x37\xae\xf6\x9c\xd2\xc3\x2f\x01\xe4\x15\xe4\x5e\x4b\x0b\xfd\x26\xca\xa7\x9a\xa9\xb8\x95\x50\x1b\x75\xc2\x45\x34\xf3\x82\xdb\x22\x05\xb7\xd1\x7c\xe0\x9c\x0a\xfb\x39\x74\xa6\x0f\x16\x36\x0d\x4f\x7a\x90\xff\x7f\xca\x0c\xe8\x4a\x1d\xc3\x5c\x06\x3c\x97\x4c\xc7\x8c\xd6\xbc\xf3\x3d\x22\xc7\x69\x38\x8c\xdf\x01\x83\x52\xd4\x54\x49\xfd\x31\x5a\x05\xb3\xe3\x92\xe1\xb7\x66\x4e\x50\xe7\xc8\x20\x97\x1f\x6d\x27\x63\x05\xb8\x5f\x18\x78\x33\x9f\x96\x04\xa5\xe6\x65\xad\xd4\xef\xa3\x5c\x40\xd7\x69\x30\x12\x7e\x6d\xfa\x00\xda\x6d\x70\x7c\xb0\x7f\x82\x0e\x50\x72\x2f\x90\x49\x17\x4c\xee\x4f\xcb\x13\xf6\xc9\xbd\x79\x75\x26\x65\x42\x69\x1b\xf0\xd2\x30\x4d\xde\x61\x3d\x1c\xa0\xf1\x1c\xe3\xca\xef\xb3\x4e\x6b\x90\x0c\xa4\xae\xc6\xa5\x30\x73\xa2\x12\xcc\x46\x39\x6f\xa3\xa5\x5a\x8a\xa4\xf5\x99\xcc\xc5\x46\x17\xc6\x55\xf2\x4b\xa2\xaa\x71\x0d\x2d\x30\x4a\x95\x28\x35\xf3\xc7\xba\x13\x9d\xd2\xfc\x43\x68\xb7\xcb\xe3\xdd\x84\x78\x6c\x6c\xc7\x43\x02\xff\xe4\x35\x68\x4a\x90\xcf\x33\xfe\x10\x04\x15\xc3\xd7\xb1\x97\x39\x33\x7c\xbe\xa6\x1c\xc9\x5a\x0d\x66\xa2\xea\x74\x1e\x3c\x9b\x76\xa2\x6b\xd0\xc0\xba\xbe\xa6\xc1\x49\x8d\xaf\x3a\x03\x96\x5f\xd1\x6a\xbc\x60\xd8\x5b\x7f\xd7\xd7\x3b\xac\xd7\x8c\xf3\xd6\x82\xf1\x2f\x90\xf5\x5a\x93\xc6\x27\x91\xf5\xef\x06\xb8\x07\xd6\xad\x3c\x0a\x4c\x8c\xdb\xc9\x8e\xa2\x98\xf8\x21\x17\x75\x3a\x18\x9e\x7d\x8a\x76\x3b\x25\x2d\xe3\x26\x5d\xf5\xdd\x34\x38\xa9\x9e\x31\x18\xe4\xf2\x0e\x57\x68\x8f\x95\x8b\x38\x0b\x86\x3d\x0e\x9e\x15\xdc\x96\xb5\xc5\xc7\xd5\xfb\x1e\x4e\x8e\xf8\xf2\x69\xe4\x64\xa9\xef\x0f\xa0\xdd\x3a\xc7\x9b\x3a\x01\x91\x61\x9a\x2d\x54\x3a\xe5\x73\x72\xa8\x89\xce\x8f\x0f\x28\x84\x8a\xf1\xf1\x71\xfe\x6a\x0f\x27\xeb\xa8\x78\x19\xd8\xf3\xd8\xd8\x58\xb9\x62\x09\x36\xcf\x03\x3c\xb4\xae\x17\x13\x2c\x5a\xbd\x20\x8d\x8e\x6f\x01\x6f\x4a\x12\xb1\xe0\xbc\x29\xa6\x90\xf7\x58\x9f\x2c\x7d\x32\xfe\x4d\xf6\x50\x5a\xdf\x1d\x90\xfa\x4f\x81\x8f\x51\x32\xc3\xa5\x62\x0a\xd4\x3d\x50\xba\x71\x4c\x7e\xf4\x81\x12\x64\x72\xb2\x11\x53\x9d\x92\x85\xc1\x9e\xb5\xb4\x99\x04\xaf\x44\x2d\xd4\xc4\xee\x8a\x3c\x81\xbf\x88\x3d\x24\x2c\xde\x76\x14\x99\xf0\x21\x58\x7e\x32\x20\x25\x69\xb1\x67\x57\xed\x3d\x9c\xd4\x5f\x41\x06\xb9\x2c\xf3\xa0\x8d\xcd\xf8\xce\xf3\x54\x9a\x44\x07\x69\x85\x45\x51\x4e\x44\xd9\x66\x47\xb4\x1f\x08\xee\xb4\xfe\x97\x51\xeb\xb8\x7e\x25\x48\x87\x13\x5b\x7b\xef\xfa\x27\x5a\xb3\x4d\x0a\x13\x3d\x4a\x60\x2f\xc1\x04\xc9\x97\x44\x69\x57\x1f\x6d\xc1\xf7\x39\xbd\x63\xeb\x72\x6f\x9f\xb1\xb5\xef\xe2\x91\xad\x1b\xba\x58\xc2\xda\xb0\xc7\x49\x2f\xd1\x58\xc1\x3c\x62\x2b\x11\x9d\xf0\x1e\x6d\xae\xe6\x4a\xda\x4f\x45\x36\xd3\x10\x1c\xea\x3c\xe9\x01\xfe\x4e\x2b\x3b\x3c\xa3\x25\xd2\x68\x7b\xa1\x61\x9a\x2c\xf6\xec\x39\x51\x0f\xc9\xe7\x40\xda\xc5\x27\x39\x7c\x9e\xa3\xb1\x46\xae\xe7\x98\x28\x22\x64\x2f\x38\x74\x7a\xd2\x03\xfc\x37\xc0\x78\x03\x5d\x60\x9d\xc4\xdf\xfa\xee\xea\x1f\xe2\x4c\xd1\x65\x7b\x7c\x54\x90\x7c\x3c\x64\xf8\x91\x5d\x97\x2f\xcc\xc6\x16\x6b\xaa\x95\x0c\x62\xfc\xd2\x17\x52\xbf\x89\x93\xe1\x17\x56\xb9\x7c\x53\x0b\x9b\x98\xaf\x01\xa4\xfe\x23\x7f\x38\x8c\x94\x37\x13\xb4\xdb\xd3\x39\xde\x34\xa2\xac\x61\x8f\x21\x4c\x98\x0a\xb4\x53\x7a\x58\x00\xd3\x59\x13\x79\x47\x61\x3e\x13\xda\xb2\x4b\xf0\xf8\xd8\x68\x2b\x6f\x54\x38\x36\xc3\xb6\x0f\x54\xe9\x91\x92\x24\x30\x67\x6c\xc1\x94\x40\xe4\x58\x70\x0c\x02\xbd\x61\x62\xa8\xfa\xc8\x21\xcc\xad\x1b\xf0\xbe\x50\x93\x65\xf9\x67\xd8\xe8\x18\x7f\x0a\xbf\xa5\xfe\x22\x2d\x7f\x70\x89\x7e\xd8\x55\xd0\x96\xf6\xd0\x2c\x58\xd4\xdb\x64\x73\x79\x68\x84\xb4\x7b\xd4\x5c\xc2\x28\x11\x1c\x9a\xf9\x1e\x4e\x36\xff\xf3\x29\x97\x31\x47\x7b\x98\xf8\xca\x78\x7f\x01\xb2\xfc\x2d\xcc\x2b\xca\xec\xc5\x62\xec\xe8\x37\xeb\x64\x6d\x85\x8f\x69\x7b\xf1\x74\x0f\xec\xf3\x17\xed\xeb\x8e\xc5\xe3\x30\x0e\x6b\xe0\x0b\xee\x4e\xf8\x1a\x0e\xd4\xe8\xc8\x9c\x83\x0c\xff\x42\xac\xc9\x1f\xcb\xff\x6f\x21\x30\xf1\x62\x78\x0a\x4c\x19\x9e\x46\xf1\xf5\x20\x16\xd3\xcc\xe4\x41\xd9\xbe\x65\xc0\x14\x5d\xf9\x0d\xeb\x25\x5a\x80\xd9\xe2\x9c\x12\x6c\xa3\x9b\x74\xd8\x06\xb4\x69\x8f\x3a\x8d\xbd\xfc\xe4\x66\x23\x3f\x6d\x3d\x34\xbe\x42\x0b\x4c\x42\x3b\x74\x40\x17\xf4\x40\x2f\xf4\x41\x3f\x0c\xc3\x04\x8e\x73\x97\xfc\xed\xa5\x64\xed\xe2\xad\xbe\xdb\x2f\x3e\x52\x7a\x64\xf7\xee\x8e\xbf\x6d\x0f\x1e\xd8\x9f\x94\xa4\x6d\xbf\xf8\xec\x3b\xa0\x79\xfb\xe5\xb3\x2f\x03\xee\xc2\x1e\x1c\xc2\xb9\xea\x05\x45\x0c\xbf\x05\x35\x30\x7c\x1c\x71\x0a\x98\x6e\x41\x73\xc7\xf3\x2d\x68\xfb\xf1\xc7\xa4\xbf\xa7\xcd\xfb\xaa\xc8\x4b\x80\xfe\x12\x3d\x3b\x64\xe8\x7c\xae\xa3\x9e\xec\xf7\xe6\x27\x04\xf5\x1e\x9c\x37\x31\xb2\xcc\xd8\x95\xd7\xf6\xee\x4e\xeb\xae\x78\x59\x6f\xcd\x31\x75\x7a\x7b\xf5\x83\xb5\xd5\x26\x83\xdb\x3e\xb9\x1e\x16\x5e\x71\x85\x2b\x93\x39\xd4\x7e\xc1\xb5\x06\xf6\xa7\x5f\xfc\x62\x98\x1a\x24\xfc\xc0\x61\xba\x3c\x04\x23\xc3\xe9\x71\xd8\xf8\xcc\x10\x39\x32\x6c\x0e\x60\x9c\x69\xdf\x10\x5b\xc2\xba\xe0\xb2\x1e\xec\xe6\x4b\xb7\xe4\xa6\xb0\x08\xd5\x86\xc7\xa4\x1d\x49\xed\x85\xa6\x3f\x33\x9d\xe5\x95\x6c\x86\xfa\xa5\x73\xcf\x80\x4f\xdd\x7c\x79\x4a\x85\x11\xa2\xd5\x91\x21\x4d\xdd\xef\x12\x39\xd3\x2e\x2c\x30\xf9\x9e\xef\xeb\x60\x19\x7c\xb9\x07\x39\xfd\x1f\x23\x23\xc1\x00\x0a\x40\xf5\xbf\xe0\x7b\xcb\xe5\x27\xad\x88\x72\x91\x1b\x5c\x98\xc9\x0f\x43\xb2\x4b\xf5\x87\xcf\x2e\xb8\x40\xfc\x65\xd4\x3e\x84\xb2\xcb\xdc\x53\x77\x74\xb3\x30\x9e\x56\x94\x64\x1c\x16\x9b\xd5\x40\xf0\x59\xe1\xe1\x1f\xa0\x4d\x41\x93\xaf\x9f\x75\xa1\x29\x96\x10\xd6\x6f\x5f\x60\x67\x5d\x77\xa0\x8e\x92\x4c\x42\x9b\x74\x39\xd3\x66\x25\x14\xc3\x93\xc7\x3c\xf3\xcd\xb5\xf2\xbd\x25\x8b\x69\x9d\x67\x10\x7e\x35\x51\xc1\x27\xfb\x07\xee\xd8\x37\x1a\xc4\x12\xdf\xe3\x33\x4b\xee\x40\x70\xbd\x74\xf5\x8e\x7d\xfb\x9a\x49\xdb\x24\x9e\x7a\xf8\x3d\x83\x05\x82\xfb\x99\xc9\x8b\x2e\x60\x07\x5d\x55\x0e\xea\x59\x2b\x19\xea\xf0\x7d\xc4\x96\xa7\x49\xb2\x92\x60\x7f\x86\xda\xcb\x1e\xeb\x0e\xe6\xd9\xcc\xf8\xe9\xdf\xa2\xa0\x2e\x91\xdf\x0c\x6f\x45\x78\x1a\x9f\x59\xf0\x75\x10\xf2\x8b\x0e\xa0\xb9\x41\x9b\x7e\xa5\x19\xb5\xe7\x47\x53\x0f\xb5\x1c\xfb\x88\x82\x51\x1b\x49\xe2\x6e\x25\xc1\x6f\xfb\x09\xba\x85\x1d\x9a\x6f\x5d\x83\x08\x3b\x9f\x2c\x38\x30\x7b\xbb\xbe\xb0\xea\x46\xe4\x03\x75\x3a\xc2\xfd\x37\x24\xa9\x82\xa7\xc9\xbe\x52\x5b\x5e\x7f\x38\x84\xc7\x8f\x43\xf0\x33\x5d\x52\x5e\x66\x01\x93\x3c\x6f\x21\x37\x59\x78\x74\x29\x27\x40\xeb\x61\x79\x18\xf4\xac\x37\x22\xe1\xc4\x17\x9e\xd8\x8b\xe7\x5d\xbd\x73\x5d\x0b\x6f\xa4\x22\xfc\xb4\xeb\x72\x15\xb4\xd8\xab\x6e\x9e\xa2\xda\x9a\xb6\xb1\x29\x2f\x51\xed\x3b\xba\xc9\x89\x9a\xea\x23\x6c\x21\x6b\x1e\xe7\xab\x6b\xc6\x7f\xf9\xb2\xfa\xdd\x3f\x4b\xa2\xfd\xbe\x92\x22\x43\xa2\x97\x7f\x6d\x98\xf3\xe5\x4a\x34\xe6\xa6\xbe\x51\xa9\xd2\x53\xe8\x49\x7d\xe5\x3b\x9d\x9f\x7c\xa0\xb8\x56\xfb\xeb\x8f\xf3\x72\xff\xe7\x89\xcd\x37\x6a\x50\xcd\x8c\x1b\x4f\x37\xe3\xd5\xb8\x05\x8c\xdf\x8f\xb4\x55\xca\x49\x5a\xe6\x73\xc8\x70\x4f\xe6\x7d\x14\x3c\xf1\x02\xa2\xea\xab\x86\xe1\xa7\xdd\x90\xeb\xa1\xa5\xe1\x96\x1b\x65\xaa\x12\x3c\x62\xe7\x67\x3f\xa1\xda\xfa\x95\x9c\x85\x6a\x3f\x9c\xa8\xa9\x31\x3c\xbd\xc7\xed\x33\x88\xf1\x6f\x76\xf9\xb2\xfa\xa3\xbf\x31\x9e\x66\x13\x86\x44\x6f\xfc\x4e\x49\xfc\xc9\x32\xf5\xb5\xa9\x93\x56\x41\xdb\x10\x9a\xae\xdc\xf4\x2c\x34\x0d\xbf\xe6\xc6\x3d\xef\x2e\x4d\x24\x9f\x08\x26\x43\x6b\x7e\x52\xdf\xed\x76\x8c\xef\xd7\x4c\x9a\x9f\x76\x8d\xf6\x5d\x8b\x6d\x73\xf3\x14\xd5\xd6\x80\x5b\x99\xf2\x12\xd5\xfe\x5c\x37\xe9\x6a\xaa\xd5\xaa\x25\xe8\xad\xb7\xef\x03\x31\x1e\x94\x9b\x2f\xab\x7f\xf1\x27\x86\x6f\x5d\xd9\x2c\x90\x8d\xaf\x7f\x85\x94\xc4\x23\x2d\xd1\xa8\xa5\xf1\xea\x44\x29\x54\x8d\x92\x8d\xe1\x65\xa2\x1e\x66\x2f\x84\x27\xdd\x7c\xb9\x5d\x2a\x12\x45\xa8\xf7\x0b\x4d\x7a\xe2\x69\xf7\x22\xd9\x35\x82\x8f\xb7\xcf\x88\x37\xe5\x59\x5d\x6c\xc8\xae\x48\xd3\xf3\x07\xae\x19\xdc\xf3\xee\xb6\x2e\x5a\x1c\xed\xde\xad\x9f\x56\xb8\x06\x8c\xca\x32\x69\x7e\xda\x75\xd8\x6e\x1d\x72\xbc\x6e\xa8\x5a\x3b\x96\xf5\xc1\xac\x06\x7b\xa9\x57\x32\x86\xe5\x73\x1e\xd5\x80\xe6\x73\x9d\xaa\xc1\xce\x63\x1e\xd6\x54\x1b\x8a\x39\xb3\x63\x5e\x30\x48\xbb\x66\xd9\x3d\xef\x9e\xa9\x4d\xa8\xc1\x2c\x3a\xc8\x39\xcd\xad\x0c\xe7\x44\xff\x7c\x76\xac\x2a\x70\x4f\xbb\x97\x95\x52\x04\x23\xac\x31\xa6\xce\xda\xcc\x9c\x32\xb5\x14\x9c\xc6\x77\xcf\xe5\x4a\x00\x7e\x3b\x20\x98\xdb\x44\xc4\x0c\xfc\xd2\x2b\x07\x1b\xa0\xcd\xa6\xc7\x81\x28\x4a\xaa\x1f\x9b\xe0\xe6\x59\xc7\x29\x70\x70\x95\xe3\x8c\x75\x1f\x58\xf7\xe6\xe9\xfc\x5b\x67\x2d\x05\x89\xdb\x02\xf0\xeb\x5d\xc1\xe9\x63\xec\x70\xed\x84\x3a\xb7\x02\xe5\x03\x3d\xb4\x7e\x1e\xe0\xb6\x58\xfc\x54\xa5\x26\xd2\xb6\x6d\x4a\x6c\x35\x80\xe9\x17\x0a\xaa\xb9\x91\x61\x7d\x49\x19\xcc\x5e\x01\xc4\xc9\xec\x16\x56\xef\xbb\x65\xc0\xe0\x17\xdc\xa1\xb5\x92\x9d\xcc\x2c\xbb\x85\x44\x1d\xa7\xd0\xd2\x2a\xc6\x49\x2b\x0b\x7b\x2c\xc1\xca\x1c\x97\x26\xa6\x64\x20\xdc\xab\x2f\x46\x2e\xc6\x23\x77\x46\xc3\x7f\x56\x2b\xe0\xea\xa1\xfe\x7a\x72\x08\x1b\x48\x06\x11\xf7\x57\x4e\x80\xec\x3b\x6e\x00\x05\xef\x9a\xfd\x05\xc7\xcf\xff\xcf\xf9\x3d\x77\xfc\xff\xfd\x5d\xfc\xef\x70\xf4\xd2\xa7\x3b\x56\x35\xbd\x3c\xf4\xf1\xff\x7d\xd7\x4f\x3e\xd9\x6d\x3c\x03\x8c\x6b\x59\x36\x1d\x58\x29\xd7\xaa\xa4\x19\x45\x25\xee\x72\xfe\x34\x29\x1d\xc9\x88\x6a\xcd\xd2\x21\x70\x00\xf6\xe8\x55\x68\x01\xdc\xd4\x6b\x58\x00\xf0\xe4\xdc\xfa\x2f\x9d\x0f\xe3\x55\x72\xd1\xb7\x30\xba\xf6\x97\x22\x28\x46\x29\x72\x3e\x47\x0c\xef\x64\xac\x87\x05\xf6\x31\x8c\xfd\x89\x0d\xc7\x37\x25\x7a\xfd\xa1\x98\xb4\x00\x8c\xa7\xd7\xe8\xfa\x55\x08\xf1\xbc\x4a\x99\xc5\xdb\xb7\xa9\x98\xdd\xf6\xd5\xf2\x1b\x98\x2c\x19\x9e\x23\x2c\xab\x26\x15\xc9\x8a\xf0\xf6\x8d\x53\xe7\x02\x74\xa5\x7c\xe2\xdc\x01\x6d\x1f\x79\x4a\x6f\xc1\x8b\x5f\xbf\x77\xae\xe0\x1c\x0b\xd5\xe3\xfb\x96\x60\x6a\xc9\xc9\x8e\x00\xd3\x41\xc5\x70\x01\x58\xea\x7a\xd1\xe7\xfa\xd9\x71\x8e\xe1\xfe\xbd\x43\xa7\x98\xcd\x88\x8d\xcf\xd2\x05\x68\x7f\x98\xa0\x1e\x7a\x23\x1f\x2d\x61\xcb\x77\xbc\x21\x59\x51\x0a\xf3\x6d\xa8\x1f\x40\xb0\xb4\x57\xa8\x81\x2e\x6b\x0d\xf0\xd8\x28\x95\x66\xb0\x3d\xce\x5c\xdb\x1f\x6b\x9f\xe7\xb6\xf8\x09\x98\x8c\xb5\x6b\xf1\x0a\xed\x30\x1a\x0b\xd7\xba\x67\x83\xf1\x2f\xc1\xa0\x2e\x7a\x46\x66\xc7\xc2\x34\x8f\xa9\xec\xdc\xc7\x41\x01\x89\x5f\x05\x61\x22\xe3\x31\x78\x4e\xad\xb9\xc8\xdd\xa6\x82\x4d\xff\x64\x90\x0b\x1c\x7a\x83\xfe\xb4\x14\xae\x9f\xe8\x26\x00\xe1\x36\x82\xf5\x38\xbe\xf6\x55\x9d\x26\xa8\x46\x91\x30\x29\x7c\x0d\x2c\x20\x21\x98\x70\x6c\xed\x78\x43\xb9\x8f\x6d\x60\x33\xce\xb4\x76\x85\x49\x01\x9e\x62\xe2\x2e\xe8\x8f\x20\xbd\x67\x34\x88\x78\x34\xc2\x49\xbb\xe4\xa8\xa5\xc8\x5f\x74\xe4\x46\xc3\xee\xc9\x29\x2c\x9b\xb4\x4d\x81\x0f\x45\xde\xff\x29\x58\x0f\x90\xc3\x75\x69\xfd\x2d\xc3\xb4\x46\xd9\x7e\xd4\x7e\x2e\x8f\xf6\x38\x5a\x72\x20\xe5\x46\x09\x87\x35\x8f\x52\xb1\x92\x4c\x4a\xef\xbd\x99\x19\xf0\x62\x02\x17\x5f\x39\xf8\x90\x94\x91\x95\xc1\xf8\xd6\x47\x57\x3d\x62\xdc\x6b\xcf\x17\x02\x84\xac\x33\xde\x89\xb7\x58\x9d\x94\x92\x7a\xf6\xd5\x53\xe4\xfb\x44\x1c\xfb\xf5\x39\x49\x9f\x4c\x97\xf5\x1f\x86\x47\x05\xc1\x0e\x54\x9b\xb2\xcf\xe7\x23\xc6\xae\x54\x7c\xee\x19\x08\x6a\x93\x85\xb5\xb4\xac\x55\xa9\x6a\x61\x6b\x21\x46\xd3\x48\xee\xd1\x28\xb9\x5e\xce\x7f\x97\x6f\x4a\x18\x04\x68\x65\x2f\xc7\x7a\xa3\xbf\x4c\x49\x15\x61\xe8\x46\x46\xc8\x91\x07\xe1\x5f\x82\xe5\x33\xa5\xe4\xd5\x51\xe6\x79\xbb\xe1\x89\x54\x71\x8a\x21\x96\x7c\x7d\x8d\xc7\xbe\xfe\x90\x51\x51\x02\x20\xf6\x39\xa2\x07\x80\x47\xa6\x9e\xbb\x10\xab\x58\x94\x62\xce\xc3\xbf\xb4\x6e\x09\x1a\x4a\x4b\x41\xd8\xc6\xd9\xe1\x76\x58\x43\x26\xb8\x96\x53\x88\xb6\xab\x60\x17\x63\x6b\x3d\xc5\xd1\x60\xfc\x81\xa1\x10\xaa\x03\xc6\xbc\x9e\x02\x5a\x54\x5e\x56\x31\x36\x84\xa4\xbf\x6e\xb0\xc4\xad\xdc\x44\xd4\x52\x98\x83\x24\x1b\xe8\x73\x2f\xe7\x4d\x4a\xc7\x7d\x77\x46\x63\x9e\xa7\x93\xaa\x90\xd7\x49\xcf\x03\x24\x99\x81\x9f\xa0\xcc\xad\xf5\xfa\xa3\xbe\xec\x69\x47\xf4\x8b\x74\x00\x6e\xba\x77\x8f\xfc\x90\xce\xcc\xbe\x78\xcf\x48\x18\xde\x6f\x89\x30\x80\x22\xd7\x45\x1e\x40\xba\xcd\x2f\xe8\x8d\x5f\xd1\xab\xec\xb3\xac\x00\x6a\x5c\x0f\x16\xa4\xce\xbd\x19\xb1\x0d\xdc\xe4\x51\x49\x58\x36\x7c\xbb\xe7\x5c\xcd\x10\xc2\x38\x03\x2e\xa0\xf9\x7c\x0d\x80\x5b\x3a\x06\x18\xf6\x4d\x59\x0c\x73\x38\x03\x3e\x53\xae\x0d\xae\x55\x97\x87\x70\x10\x47\x00\x1c\x5b\x39\xc0\x30\x81\xd3\xeb\x67\xd4\x0a\x00\x55\x3f\x11\xbc\x4f\xcd\xd0\xfa\xa5\x29\x80\xb9\x3d\xce\x17\x6c\x8a\x45\x4e\x13\x4c\xf8\xd5\x12\xdb\xdc\xda\x7f\x3a\xd8\x2b\x06\xfc\xf6\xab\x7f\xa1\x12\x58\x00\x75\x1a\x7c\xbd\x3e\x4a\x04\xb7\x64\x0c\x9c\x3a\x10\x18\x48\xbb\x5e\x1b\x01\x00\xe9\x55\x91\x1c\x5f\x87\x6f\x44\x54\x1b\x55\x41\x74\xad\xb1\xb4\x32\xa1\x7a\x85\x66\x87\x7c\x0e\x07\x51\x01\xa0\x65\xca\x1a\xb1\xa3\x04\xa4\xca\x7d\x4e\x4d\x1c\xd9\x94\x06\x9b\xa2\x36\x06\x4f\x52\x88\xa3\x2f\x23\x09\xb6\xb1\x5b\x10\xa6\x29\xbb\x10\x0b\x2d\xea\xd3\x61\xd4\xa3\x67\x6e\x9a\x98\x4a\xf0\x7d\x6c\xa9\x97\x2f\x34\x1d\x54\x02\x64\xfb\x5b\x95\x5c\x2a\x5b\xd3\x54\x0d\x50\x42\x4d\xab\x13\xd1\xae\x96\x9d\x4d\xca\x41\x0a\x46\x1a\x51\x3c\xa1\xbd\x41\xdc\x6c\x69\xec\x12\x53\x3b\x52\x99\x0f\x8b\x9f\xed\x33\x43\xcf\x36\x77\x9a\xb2\xf5\x21\x6d\xd5\x19\xd5\x6c\xf0\x71\xd8\xaf\x9a\xa8\xec\x82\xac\x28\xaf\xc1\xda\x92\xbc\xf7\xc4\x19\xdb\xf8\xff\x74\x04\x45\x49\x2e\xcf\x32\xae\xd6\xa2\xec\x1f\xd0\x8c\xf6\x5c\x07\x50\x75\x0d\xae\x4e\xca\x52\x7b\xd4\xba\xf5\x88\x51\x64\x6a\xa1\x57\x37\x41\xcf\x04\x41\xaf\x5e\x82\x5e\xa1\x8d\x1a\x25\x55\x1b\x25\xb6\xd4\xe3\xb6\xb2\x2e\xb3\xbe\x41\x80\x0a\xe8\xd9\x27\xe8\x19\x24\x9c\xa6\x03\x34\x71\x0c\x7b\xff\xd9\x1c\x4d\x9a\x54\xda\xeb\x76\xa0\x74\x32\x0e\xd8\x76\x14\xc5\xc3\x37\x65\x44\x05\xab\x23\xe3\xb6\x7d\x44\xcd\x9b\x64\xad\xc4\xb3\xf0\xcf\x85\x62\x5d\x06\x0b\xcb\x00\xca\xa2\x0a\x53\xc7\x74\x8b\xa7\x5d\x89\xa3\xb5\xc4\xc5\x1c\x51\xc9\x4c\x4f\x9c\xb7\xf2\x13\x45\x09\x27\x9c\x5d\x43\x5b\x28\xad\x48\x9f\x0c\x5f\x88\x48\xba\xd6\xfc\x97\x9f\x39\xc0\xe4\x52\xde\x3c\x8e\x96\x69\x8e\x5b\xad\x53\xe9\x8f\x2e\x75\x53\x8b\xda\xbb\x2b\x87\xf2\x0a\xad\xd2\x3b\x78\xd8\x06\xcb\x14\xa7\xfd\x84\xde\xed\xe1\x69\x42\x31\x68\x9d\x60\xeb\x37\x2b\xd4\x6e\x13\x46\x7a\xf5\xdd\x4a\xe1\xc9\xa2\xba\x9b\x36\xfa\x7a\x85\xbf\x04\xff\x74\x02\xe0\xed\x08\x8a\xc7\xa3\x62\x66\xa6\x51\xa3\x26\x79\xbd\x42\xe5\xd3\x8a\x45\xa6\xb4\x05\xd4\xc3\x66\xb4\x94\xae\x91\x0a\xb3\xf5\x75\x6d\x5a\xae\xa1\x75\xd8\x00\x69\xa7\x29\xef\x89\xcb\x1f\xe4\x69\xbf\x79\xc4\x3b\xb8\x88\x72\xd0\xcb\x93\x57\x51\xb4\x45\xc4\xa9\x7c\x96\x17\x28\x29\xb8\x41\x6b\xc7\xb2\x5b\xa5\xb9\xf6\xef\x3b\xb1\xb6\xdc\x93\x93\xa9\x57\xf9\x54\x63\x2b\x7e\xa7\x33\x2e\x40\xef\x11\xc3\x23\x12\xfb\x36\x0b\xca\x00\x12\xfc\x40\xcc\x5e\xbe\x36\xb7\x4b\xe1\x9f\xb7\xcf\x39\xad\xaf\xa8\x60\x9f\x75\xf8\x65\x45\x11\x96\x9b\xd2\x38\xc1\xa6\xbf\x57\x2f\x34\xca\xce\x0d\xb2\x3c\x51\xcb\x3f\x2e\x7f\xfa\x38\x82\x09\x70\x22\x34\x72\x77\x3e\xbd\xc2\x93\x39\x3c\x31\xf5\x2e\xf1\x54\xfc\x60\xae\x38\x9d\xda\x3e\xec\x13\x39\xfd\xa1\x03\x26\xbb\xa4\x63\xea\x44\x2f\x34\x30\xa3\x35\x47\xcb\xd8\xeb\x16\xc8\x6a\x46\x2b\xd3\x9e\x5a\x9f\x66\x39\x63\x85\x68\xa7\xbd\xa3\x27\x73\x78\x62\x06\xad\x45\xa1\xf5\x99\xd1\x8c\xc6\x3f\xf5\x96\xfe\x56\xbf\x8b\x61\x96\x70\x07\x9e\x37\xdc\x5a\xed\xf1\xf4\xfe\x38\x42\x39\x10\x7a\x0d\x4e\x50\x4e\xd1\xb5\xf5\x8b\x0e\x02\xc4\x94\xa2\x75\x27\xc9\xeb\x46\x8b\x07\xd8\xe4\x96\x88\x07\x58\x57\xdb\x36\x24\x85\x01\x8a\x11\x26\x72\x4f\x16\x8e\x06\x70\x91\x53\xf1\x15\x66\xcd\xc0\x5c\xb7\xe1\x91\x57\x37\x34\xac\x84\xa6\x81\x96\xa5\xdb\xd5\xf5\x91\x13\xdf\x6b\x43\x7e\x59\x5a\xff\x72\x2e\xca\xee\x5a\x6b\xaa\xb9\xdd\x2e\x51\xfa\x9a\xb5\xc6\x52\x6e\xef\xf1\xf6\xab\x80\xf7\x65\x6d\x80\x52\xd2\xc6\x01\x6d\x65\x26\xc5\x85\x32\xcc\x05\x9c\x65\xca\x61\xdf\xa1\xd9\xcf\x32\x1a\x9a\x51\x1e\x35\x3e\x08\x57\x8e\x44\xa4\xd5\x85\xdb\xd5\xf7\x9e\x13\x7f\x6a\x63\xee\x2d\xad\x6f\x99\x2b\xd5\xdd\xdb\xb9\xed\xef\xd3\x5d\xb6\x5a\xa8\x37\xb7\xc6\xb2\x5e\xde\x72\x09\x4f\x61\xcf\x5f\xda\x4d\xa1\x52\xe0\x51\xd3\x19\x83\x59\xcf\xe4\xcd\x5b\x3d\x99\xb5\xbe\x95\xc1\x1e\x81\xbe\x81\x96\xa5\xdb\x54\xf4\xdf\xfd\xaa\x59\x1b\x3d\x2a\xad\x7f\x3f\x0d\xd5\xdd\xdb\x38\x54\x83\xd4\xcf\x71\x04\x21\x5f\xbb\xc9\x69\x8d\xa5\xdc\xde\x8a\xa6\x60\xa2\xb0\x77\xf0\x31\x44\x4c\x7e\x4a\x25\x29\x9a\xe0\x20\x3c\xf3\xad\x0c\x53\x2a\x4c\xd2\x34\x32\x78\x06\x10\x67\xf9\x29\xee\xc7\x86\x06\xf0\x57\x8c\xaa\x5c\xee\x03\xeb\x44\xc4\xfa\x35\x99\x29\xeb\x76\x35\x75\xe5\xe9\x37\x06\x9c\x22\x13\xdb\xa0\xa9\xb3\x56\xf8\xa8\xa8\xd8\x6d\xb7\x75\xcc\x6e\x68\x19\xb5\x58\xd0\xb1\x55\x90\xd9\x45\x5a\xa9\xbc\xda\xa0\x89\x5a\x39\x45\x7e\xdd\xeb\x32\x3a\xc9\xd0\x0d\xf0\xd2\x41\xd5\x55\xcc\x55\x76\x40\x4f\x58\x58\xdb\x6a\xbe\x53\x77\x61\x24\x28\x5a\xb0\xe2\x4d\x94\x60\xd4\x15\x45\x8f\xbe\xb5\x46\x9d\x3a\x59\x39\x58\x53\xbb\xb2\xce\x73\xbe\x47\x4c\x0d\x9e\x12\x06\xbd\xc6\xec\xa4\x62\x63\xe7\xbf\x07\x5d\xd2\x42\xa3\xab\x75\xa0\xfc\xde\x5f\x18\x77\xe8\xd3\x7c\x02\x73\x37\xda\x3a\x95\x14\xe0\xa9\x7c\x19\x6e\xaa\xa1\xc8\x97\xae\xdf\x34\xad\xcf\x77\x3e\xbd\x11\x66\x23\xc6\x1b\x93\x89\x71\xc2\x18\x12\x59\x96\xe4\x31\xdd\xa3\x2f\xa3\x5f\x20\x21\x35\xd5\xf0\x34\xa6\xe6\xc1\xd3\x3f\x5b\xe1\xde\xd3\x91\x5e\x23\x4d\x49\xca\x81\x46\xd6\xc2\xb8\xd7\xdb\xfc\xde\x7d\xfa\xf1\xd7\xb2\xaa\xaf\x64\x9b\x12\x68\x18\x02\x99\x7b\x36\x67\xb9\x47\x9f\x34\x45\x1c\x7a\x02\x66\xda\x67\xe4\x05\xbf\xa0\xee\x9f\x8d\x85\xbf\xc6\xf0\xa2\x28\x46\x19\xec\x27\x71\x14\x06\xbe\xe7\x3a\xd4\xb6\x18\x79\x16\x42\x84\x46\xe7\x59\x3e\x25\x8d\xd1\xed\xef\xbd\x57\xc5\x43\x1d\x94\x8b\x3e\x91\x90\xc7\x1b\x80\x22\x34\x52\x66\x71\x42\x85\xf5\x38\xec\xab\xcd\xea\xec\x74\xbd\x8a\x02\xcf\xc5\x68\xd0\xaf\x65\x79\xf9\x93\x6f\x14\xb3\x5e\xaa\xa8\x43\xa0\x8b\x23\x41\x49\x2f\x23\x36\xac\x00\xef\x4b\xd0\x19\x2b\x2a\x8e\xec\x58\x82\xcb\xc0\x46\xfd\x76\x96\xd6\xda\xeb\x3b\xe3\xed\x97\xcc\xef\x05\xef\x63\x6e\x9d\x1d\x5a\x0b\x32\x3a\x5e\x04\xa9\x95\x46\xda\xf7\x00\xf7\x23\x1d\x4c\x70\x10\x19\x44\x75\xcf\x98\x6b\x2b\x6c\xc7\x5a\x7b\x05\xf3\x4d\x7e\xf3\xaa\x7b\x9a\x9d\x97\x76\x32\x1b\x9a\x79\x17\x12\x21\xa4\xc7\xf6\x43\x64\x4a\x9f\xe5\x83\x3d\xe4\x9d\x6d\x34\xe9\xd6\x97\xcd\x8d\xa6\xae\x4a\x9a\xb8\xf9\x97\x7e\x22\x7f\xea\x48\xbf\x9e\x65\x49\x42\xf1\x93\x01\x46\x0a\x1c\xa8\xe0\xb7\x5d\xe8\x2b\x8b\xda\x06\xfd\x66\xf3\xa4\x42\x18\x39\x3b\xb1\x50\x00\xe4\x27\x48\xf4\x40\xf0\x55\xd6\x1c\x7a\x44\x80\xab\xde\x23\x19\x8b\xc9\xa5\x5d\x70\x0e\xf6\xbc\x08\x42\xed\xf2\xde\x75\x7a\x2e\x9a\x04\xaa\x26\x8a\x09\x83\x04\x5e\xcb\xfa\x3f\x60\x85\xbd\xbb\x07\x3e\xcd\x1c\xdf\x8d\x75\xc3\x7a\x1a\x73\xb0\x0d\x93\xbf\xce\x02\xd6\x1a\x4d\xb1\xc6\xd0\x29\xe0\xec\x10\x9d\xf2\x09\xd2\x66\x64\xf7\xe6\x38\x7a\x24\xc1\x68\x42\x3a\xd4\xef\x37\x42\xa5\x29\x91\x06\x44\xf2\xd5\x07\x3e\xdc\x2a\x59\x22\x27\x80\x0f\x94\x11\x33\xd6\x4e\x5f\x11\x3f\x32\x63\xf5\xbc\xdb\x2c\xe6\x4d\xc5\x6c\x91\x8d\x44\xb8\x5b\x75\x0d\x78\x45\x42\x9d\xb5\x61\x57\x7c\xcf\xc0\x9f\x54\x32\x78\x8d\x78\x79\xce\x2d\xa9\xa7\x44\xaa\x23\x19\xe9\x31\x21\xa4\x2b\x47\x43\xd2\x60\x54\x54\x70\xd4\x7c\xa4\xc7\xe2\xc8\xae\x4b\x8c\x87\xfd\x56\x96\xd7\x1e\xe7\x43\xd2\xf1\x68\x1e\x07\x0a\xfa\x08\xd0\x2b\x87\x74\xb6\x0a\x5d\x07\xd2\x91\x1a\xe3\x23\xa0\xd3\xb1\xd8\x95\x3b\x70\xad\xab\xbe\xce\x47\x7d\x9e\x65\x04\x14\xbb\x80\xaa\xdc\xb3\x21\x48\xb9\x18\xb5\x89\xb3\xe9\xaa\xa6\x98\xdc\x07\x05\x59\x68\x24\xee\x90\x7e\xdf\xca\x8b\xc7\xd5\xa2\x16\x49\xd4\x0e\x2c\x3d\x21\xc9\x25\x22\x48\x57\xe7\x71\x10\xce\x51\x88\xb9\x5e\x96\x03\x00\x2d\xea\x0e\x0f\xa0\x3c\x4a\xd9\x2e\xdf\x25\x91\x85\xb5\x86\x1d\x2e\x17\x89\xc6\x7b\x80\xe8\xff\x33\xac\xff\xdb\xca\x03\xc1\xc3\x90\x18\xaf\x22\x29\x00\x9a\x18\xc0\x4c\xb2\x9f\xb0\x89\x5c\x6c\x31\xc9\x20\xd7\x07\x0f\x3d\x84\x02\xf7\x03\x1a\x68\x93\xc3\x1c\xe6\x29\xee\xe1\xbd\x03\x88\x67\xa7\x10\x3c\xfe\x2c\x66\xe0\x51\x2e\x23\xd3\x85\xd4\x55\xb3\x37\x80\x93\x7e\xfe\x9a\xaf\xbd\xae\x08\xfb\x98\xc4\x27\x54\x44\x40\xc2\xb2\x9f\x26\x60\x24\xc2\x60\x05\x50\x6c\x53\xf6\x2a\xd6\x9a\x2c\x58\xda\x2a\xb2\xa1\x73\x7f\x16\xa4\xa0\xf2\x0b\xe6\x3d\x46\x6d\xaa\x47\x74\x07\x52\x31\xca\xe9\xbf\x1f\x45\x6e\x65\x5d\x57\x35\x63\x7a\x5f\xb5\x57\x91\xe2\x62\x47\x00\x71\xbc\xf6\x89\xaa\xf6\x72\x38\xf5\x70\x84\xbe\xf4\x32\xc5\x7c\x45\x0a\x4d\x6e\x63\xef\x80\x83\x2b\xc7\x95\x43\xbd\x8e\x6e\x17\x68\x56\x67\x09\x8d\x69\xe4\x39\x60\x4f\xbb\x3e\x4f\x5e\xcf\xf9\x25\xf0\xab\x5b\x98\x62\x72\x84\x5b\xf8\x1b\x6c\xae\x6d\x8a\xe7\xdb\x6a\x51\x20\xff\x26\xe4\x54\x30\x24\x9a\x64\x1a\x36\x94\xaf\xa7\xb1\x01\x93\xa8\xcb\xec\x55\xdf\x00\xea\xb7\x76\x27\xc9\xd4\x16\x36\xef\x46\xcc\x32\x41\x02\x12\x48\x90\x6d\xac\xc7\xb6\x57\xe6\x9a\xc3\xe8\x73\xb4\xcc\x26\xda\xe0\x79\x2e\x28\xb7\x5d\x5e\xf3\x7c\x0e\x23\xc0\xbf\xc3\xea\x90\xa5\x29\x27\x1a\xe1\x19\x83\x7a\x85\xac\x5b\x15\xf2\x0a\xb7\x92\x09\xe1\x9a\x19\x2c\xfc\xd3\x0a\xc9\x20\xf1\x1e\xb5\x64\x64\xa1\x87\x24\xe8\x9a\xfd\xd8\x7c\x6c\x8a\xc1\x20\x9b\x66\x8c\xdd\x9c\x23\x19\x47\x1d\x1e\xa2\x97\x91\x51\x5a\x34\x90\x9d\x82\xf4\x2c\xe6\x50\x68\xb5\x31\x69\xd2\x9d\x3c\x4c\xcb\xa9\x5e\x1c\x25\x63\x79\x97\x36\x9a\x30\xd9\x41\x20\xc4\xc9\x86\xe8\xd3\xd0\x38\x08\xa8\xab\x7c\x95\x44\x64\xd0\x13\xfa\x0a\x88\x9d\x86\x94\x06\x19\xa4\x32\xc2\xbf\xfa\x7e\x34\xf5\x0a\xe6\x0a\x9f\x3e\x48\x8d\x07\x05\x93\x78\xa6\x19\x76\x06\xf9\x15\x36\x75\x01\x5b\x77\xd3\x40\x71\x3f\xbe\x6a\xe7\x82\xb1\xb3\x21\x2c\x2b\xec\xaa\xd5\x86\x1a\x66\xcb\x47\x75\x82\xd4\xf9\xa9\xc9\x61\x9b\x4f\x60\xe8\xca\x4c\xa7\x25\xfb\xe7\x50\x84\x1d\x56\xcf\x27\xfb\xe5\x9c\xd9\x8b\x81\xec\x6e\x51\x00\x82\x43\x56\x04\x19\x68\x5f\x62\x1c\xda\x4f\x2b\xd8\xf9\x03\xdf\x00\x5d\xed\x57\x94\xf7\x8b\x45\x88\x33\x0f\x9e\xea\x62\x9c\xa6\x68\x58\xc6\xc7\xb8\x4b\x41\xc5\x67\x61\x2c\x64\xa5\x28\x29\xb3\xd8\x35\x9a\x8b\xd0\xc2\x35\xf6\xfa\x0e\xed\x5c\xe5\xa2\x1d\x0e\x2e\x28\x12\x64\x4e\x42\x1d\x02\x44\xe6\x3b\xd6\x6b\xad\x4e\x77\x4e\x71\x40\x0c\x03\x94\x8c\xab\xa0\x26\x51\xe1\xa1\xfd\x4a\xc0\x73\xc0\x4a\xb6\xf4\x72\x29\x42\x0b\x36\x20\x52\x3f\xdd\xce\xe9\xa1\x98\xa3\xd7\xf3\xb8\x5d\x0e\x3b\x4c\x05\xcc\x8f\x19\x5f\xfc\xde\xfd\xe1\xc7\x5f\x4b\xa3\x7b\x28\x22\x9e\xd7\xeb\x4e\x97\x8e\xdf\xde\x45\x7d\x51\xfd\x1d\x55\x8c\x48\x75\xf9\x03\x31\xd4\x18\x77\x53\x35\x2e\xca\x38\x41\x94\x64\x19\x91\xcc\xe9\x85\x96\xa5\x46\x26\x56\x21\xa5\x80\x1a\x9c\xa5\x9b\x1d\x11\xb1\x9f\x9a\x73\xbb\xde\x28\x9d\xe3\x06\xe8\xea\xb5\x39\x6d\x4f\xc1\x93\x1e\x6b\x52\x8a\x4a\xaf\x2c\xfb\xbd\xfb\x79\x9c\x97\x32\x17\xba\xed\xdc\x2b\xe9\x15\x11\x96\x2e\xd7\x33\x91\x6a\x4c\xb5\x30\xc4\x74\x60\x00\xb2\xb0\x7a\x9f\xc2\x4a\xe8\x4e\x68\x9a\x90\x23\xf7\xe3\x59\x1b\x2a\xb5\xfb\xa1\xc4\x16\x13\x65\xa6\x6f\xa7\x23\x18\xde\x87\x43\x41\xbc\x59\xc7\x7c\x69\x14\x99\xa1\x3e\xe9\x3c\x8b\x70\x7c\x43\x51\x5a\xa2\x7b\x8f\x51\xe8\xd2\xf1\x9c\x81\x67\xbc\xce\x81\x6a\xd1\xec\x0c\xe4\x24\x1f\xb1\x05\x33\xc9\x9b\x03\xf0\xa0\x6b\x08\xb8\xf1\x65\x68\x9a\x00\x81\x06\x2e\x2d\x8e\x74\x4f\x2e\x26\x65\x24\xae\x6d\x64\x02\x06\xf9\xc1\x73\xed\x5a\x5a\x8e\xeb\x8d\x8d\x8f\xa0\x76\xbb\x62\x5e\xce\x3d\x87\xe0\xf1\x8c\xbb\x5c\x2f\x5a\x58\xbe\x6b\x60\xba\xc4\xf7\x9b\xed\x10\x8c\xb2\xd1\x02\x48\x6f\x20\x0f\x3d\xc4\x36\x76\x06\xe4\x3a\x4d\x56\xc5\x31\x1e\x8d\x21\xf4\xe3\x7a\xdd\x40\xe2\xed\x17\x25\x73\x9b\x88\x19\xee\xd7\x31\x8b\xbb\x08\x91\x43\x91\xce\x66\x22\x43\x40\x2c\x61\x70\xc9\x0a\xec\x26\x97\x00\x8f\xa7\xf2\xcf\x51\x48\x30\xea\xc6\x59\x1a\xe3\x72\x7c\x94\xfa\xfd\xc0\x2b\x6e\x59\x8c\x76\x35\x08\x57\x41\xea\xde\x8d\x03\x0d\x63\xbc\x1a\xed\xe7\xb7\x39\x2d\xf4\xd6\x3f\x30\x0e\xa0\x27\xdf\x66\x60\x76\xce\x9a\x4c\xaf\xb8\xca\x9e\x4d\xe5\x49\xd6\xd0\x36\x20\x2f\x23\x68\xc0\xf4\xac\xf9\x4a\x36\x79\xfa\x82\x5b\x27\x6c\x58\x08\xa4\xc3\xed\x08\x3f\x34\x2e\x7a\x52\xef\xc0\x8d\x64\x3e\xc9\x48\xed\x34\x2e\xca\xf0\xe0\x4a\x31\x93\x5d\xfc\x30\x56\xe8\x54\x5e\xc6\xb7\x18\x04\xd3\x14\x1a\xad\xb7\xf9\x41\x48\x98\xca\x63\x8b\x15\x95\xeb\x64\xaa\x6f\x1b\x51\xca\x61\x12\x8f\x5e\x41\x7c\x5e\xcf\x09\x1f\xa7\x65\xa9\xe5\x95\x54\x07\x81\x85\x6b\x3d\xe6\xf9\x83\x2e\xa7\xf5\x71\x6b\x64\xb1\xd1\x93\xde\xa3\x2a\xff\x66\x2c\xee\x87\xa3\x7e\xfb\x28\x27\x02\xfd\xa0\x06\x3e\x70\x3f\x89\x6f\x41\x0d\x93\xf1\x3a\x82\xd6\x91\x9c\xbc\xa3\xcc\x63\x01\x92\x49\x04\x25\x51\x2b\xb5\xc1\xde\x30\x39\xaa\x39\xdc\xfc\x0b\x4a\x40\xfe\x53\x4e\xa1\x87\x1a\xc4\x99\xe8\x75\xc2\xda\xc9\x29\xbd\x96\x79\x80\xce\xfa\x53\x0a\x98\x3a\xaa\x79\x95\x54\xbd\x14\xe3\xae\xd4\xb5\xdd\xdd\x89\xd5\x1a\xed\x34\xde\x34\x11\x8d\x4b\x9c\x71\x78\x18\x33\x1a\xcc\x27\x40\xac\xf4\xe4\x6b\x60\xa1\xc7\x1d\xdc\x76\x10\xd9\x64\xb8\x94\xa2\x34\x81\x9b\x59\x5e\x25\x2e\xb3\x3d\x6d\xf5\x64\xf2\x1b\x61\xa6\x7d\xc0\xeb\xc9\xe6\x69\xb0\xeb\x7b\x87\xf1\xb7\xaf\xd5\xb2\x6b\x0a\x10\x70\x01\x7d\x93\xe2\x25\x5c\xf2\x25\x1f\x2a\xf6\x24\x72\x6d\x20\xd1\x5b\x36\x8e\xa3\x0e\xbf\x49\xb8\xea\xc3\xa6\xc0\x7e\xf9\x44\x1b\x1d\xb4\xe0\x68\x41\x23\x2b\xb6\x88\x56\x57\xb8\x5b\x9a\xb1\x0c\xc4\xb5\xf7\x8c\x14\x3f\xa5\x0a\x27\xe4\x40\x7c\x7f\xb5\xa2\x8b\xeb\xe2\xdd\xa3\x8a\x18\xf3\x04\xd4\x10\xdb\x9e\x21\xcb\x2c\x40\xf2\x69\xd9\x0e\xbe\x9d\x5b\x0e\xa0\x09\x17\xb6\x93\xae\x07\x99\xe4\x99\x0a\xc9\xf5\x3e\x70\xed\x50\x0d\x9a\x0c\x7d\x98\x5c\x1d\xba\x8f\x37\x63\xb8\xcc\x47\x04\x86\x38\x52\x00\x99\xf2\xc9\xb0\x02\x16\xdf\x1c\x2f\xb1\x5f\x02\x0d\x5a\xa7\x23\x20\x69\xbc\xc1\x2a\x33\xbb\x0a\x6e\x90\x56\xb1\x82\x13\x86\xa3\x22\xf8\x68\x9e\x60\xca\xab\xd7\x65\xf1\xcd\xe9\x49\x91\x67\x29\xbf\xc3\x91\xc7\xf0\x9d\xe9\xc6\xc0\x4c\x57\x8f\x8a\xa8\x0e\x13\x76\x82\x8a\x19\x21\x33\x47\xe3\x9b\xc9\x52\xc8\x2d\x71\xe0\x74\xba\xa4\xc6\xb2\x2f\x78\x83\xde\x89\x20\x04\xfc\x25\x4e\x56\x4d\x3e\xb5\xe2\x03\x7c\x74\x5f\x47\x43\x25\xed\xc2\x86\x04\x75\x76\xb9\xdc\x08\xb7\x18\x57\xe3\x12\x4e\x7e\x5e\x07\x54\x8f\xa0\xaf\x44\xbb\x6d\x91\x87\xc1\x64\xfd\xfe\xf4\x77\xf9\x78\xb3\x97\x54\xf1\x92\x3e\x05\xbc\xa9\x65\x70\x1b\x98\x62\x0f\x92\x2f\x4b\xca\x8c\x4c\xef\x65\x01\x27\x7a\x3d\x63\x36\xc7\x0e\xc6\xb6\xe1\x18\xfe\xa4\x64\x23\x8f\xa0\x9e\xf3\xee\x8d\x39\xb9\xec\xde\xa2\x0c\xb2\x6e\x98\x29\x1c\x8f\xbd\x61\x59\xde\xb3\x6e\x13\x28\x89\x1d\xf3\xe3\x3e\xb8\x05\x30\xd1\xc6\x88\x9d\xa2\xd4\xbf\x7c\xb4\xb5\x63\x17\xbd\xe9\xfc\xce\xae\x12\x58\x51\x46\xbd\xf6\x58\xd2\xc3\x7c\x48\x61\x20\x32\xfb\xd3\x31\xf6\x3a\xfe\x84\x5b\x74\x24\x47\x86\x23\x87\x51\xec\x88\x1d\x81\xcf\x70\x18\xec\xf2\xb4\xcc\xb9\xe7\xdf\x7f\x2b\x74\x10\xf8\xb3\xb1\x13\x64\x08\xd6\x18\x2f\x3b\x29\x7c\x9e\x78\x7e\xdc\x6d\x31\x7d\xb4\x7d\x30\x5b\x43\x62\xa5\x00\xde\xcb\x58\x8c\xe8\x61\xfd\x3d\xa7\xb4\x3b\x65\x3d\xfb\x31\x08\xe0\x1c\x23\x53\xaa\x15\x4b\xb5\x2c\x41\x67\xbd\x62\xad\x8f\x92\x01\x3e\x7d\xbc\x59\x0d\xf6\x56\x70\xdb\xd7\x0e\x05\x79\xb9\x61\xee\xc4\xee\x62\xe6\xd1\x85\x82\x9e\x93\x29\x54\xe8\x7c\xa6\x7a\x00\xa3\x7b\xb1\x34\x10\xc5\x85\xc0\x6f\xc2\x82\xd9\x20\x82\x7e\x14\x27\xfb\x50\xd5\x47\x16\x03\x32\x98\x63\x5a\x0c\x34\x3e\xb8\xc7\x03\xe1\x98\x52\x85\xe1\xf6\xa0\xf1\x4e\xd2\x45\x05\x74\xf1\x5c\xed\xeb\x3d\x78\xa8\xd8\x95\x42\x68\xd9\x07\x72\xa4\xb7\x24\x40\x97\xe0\x5f\xca\x7b\xff\xe5\xee\x87\x29\x1d\x24\xc4\xdf\xc0\x1f\x6c\x1b\x86\xfa\x5e\x51\xa9\x78\x84\xfd\x47\x8e\x1b\xd8\x2a\x8d\xf6\xef\xc9\xd2\xe1\x45\xc5\x35\x51\xa8\xab\xa8\x47\x96\x86\xc5\xab\x32\x58\xce\x13\x97\x19\x6c\xea\x52\x69\x2f\x6a\x79\xf3\x78\x52\xe7\x29\xe3\xe4\x74\x51\x15\x03\xf3\xd4\x22\x07\x83\x6a\x87\xda\x88\x61\xed\x23\xb5\x5e\x3a\x14\x83\x40\x4d\x55\x96\xa0\x12\xda\x50\xc9\xec\x19\x16\xc6\x05\x03\x11\xab\x1e\x99\x40\x32\x4a\x46\x40\x08\x9a\xc1\x57\xfd\x17\x66\x2f\xb1\xc7\xe2\x35\x8a\x89\xd1\x97\x27\x23\x8a\xfb\xce\x1b\x8f\x9b\x79\xb4\x8c\x54\x84\xc5\xfe\x7a\x10\xba\x49\x83\x5d\xde\x57\x41\x86\xcf\xd8\xc7\x45\x0d\x4f\xff\xed\x22\xec\x25\xa7\x4c\xa7\xec\x23\x69\xac\x25\x2b\xbd\xf2\xc0\x98\x9b\xc6\xdd\x28\x99\x60\x84\xa8\x34\x6e\xfb\x74\x8c\xd2\xe0\x04\xcf\x91\x10\x64\x0e\x46\xc1\xa0\x83\x34\x26\x82\x57\x77\xa6\x56\x8a\x69\xc1\x73\x29\x25\x93\x06\xdc\x75\x11\xc4\xff\x69\x82\xd0\xa3\x70\x1c\x42\x59\x3f\xed\x38\x8e\xb0\x45\xc5\x9e\x0e\x8e\xe5\x98\x87\x03\x3d\x22\x8a\x53\x7b\x76\x4a\x08\x9d\x91\xd9\x2d\x7a\xcd\x72\xda\x21\xed\x24\x45\x0e\xfc\x86\x4c\x2e\x1d\x21\x92\x2d\xa6\x78\x3c\x6e\x1b\xec\x75\x91\x69\x84\x54\x25\xeb\xf3\xc2\x0f\x9b\x02\xe4\x24\x66\x2f\xc1\x37\x51\x8e\x05\xda\xda\x3d\xc5\x01\x0b\x50\x63\xd2\xc7\xea\x9f\x6e\x77\xf2\x31\x50\xfc\x6d\xfd\x19\x9a\x23\x01\xe9\x7b\x52\x9b\x4c\xfe\x6f\x1e\xbe\x92\xfc\x94\xe1\xc5\xc0\xd4\x13\x51\x15\x3f\x64\xde\xbb\x9f\xbc\x40\xdb\x61\xe6\x00\xc3\xe0\x9e\x8c\xa2\x7e\x06\xdf\xc2\x8b\x2c\x47\x01\x05\xfd\x9e\x56\x9d\xc2\x68\x4f\x1e\x73\xfa\x26\x83\xe9\xb4\xed\x23\xcb\x2a\x72\x48\xa8\xc0\x52\x91\x5b\x9b\x9a\x82\x9e\xdc\x8a\x37\x37\x46\x10\xd9\x22\xa2\x9e\x39\x68\x04\x1a\x75\x4f\x32\x72\x95\xd4\xdb\x65\xae\x46\x6c\x54\x82\x27\xd9\x85\xb7\x80\xe7\x64\xb9\xbd\xf8\x42\xa4\x41\xc2\x16\xdb\x81\x79\x5f\x67\x22\xd2\x5f\xf8\x9a\xad\xe6\xa6\xd6\xc8\x33\x1c\x31\x12\x50\xce\xd1\xd1\x39\xea\x91\x5c\x18\x28\xbb\xc3\x91\x4d\xc0\x96\xb6\x12\x6d\xbd\x52\xbf\xc7\xfd\x01\xb2\x35\xa8\x3b\x1c\x15\xf1\x8e\xb4\xd5\xa0\xd4\x1c\xaf\xd6\x06\x09\x07\xc0\xda\x8f\x53\x8e\xa7\x77\x9e\x07\x70\xe3\xcd\xdd\xe1\x72\x6c\x26\xc7\xfe\xde\x9e\x34\x59\xc2\x51\x9f\xd1\x10\xf3\xcb\xa1\x03\xe8\xf1\xea\x4e\xf5\xf2\x51\x34\x54\x16\xc2\xe3\x29\xdf\x7c\x0b\xe9\xae\x71\x4e\x98\xcc\x35\x25\x68\x83\xa5\x52\x19\x53\xec\x5c\x7d\xe5\x88\x58\x96\xd3\xb5\xaa\x0a\x2b\x59\x04\x18\xc5\xd3\x93\x38\xcb\x51\x03\x6e\xe7\x96\x53\x36\x37\x8b\xa6\x8b\xeb\x7c\x65\xec\x45\x1b\x27\x5b\x05\xa7\x4f\x87\x01\x65\xf5\xf6\xfc\xe3\x4b\xa8\xff\x7c\xa7\xef\xcb\xfb\x6f\x9f\xdc\xae\x2e\xd7\xcb\xb6\x61\x45\x1a\xfb\x9e\x63\x23\x73\x2a\xf8\x8c\x5f\x7b\x04\x73\x59\xa7\x07\x8d\x9f\xe1\x52\x37\x19\x17\x59\x7a\xf0\x96\xd3\x38\xb6\x1a\x1f\xda\x02\xc8\xa8\xf1\xd8\xc6\x3b\x02\xde\x15\xa5\xf6\xf5\xb3\x63\x7c\x63\xd9\xd6\x1b\x12\x40\xe4\x02\x86\x18\x48\x84\x9f\xf0\xf5\x0b\x3d\xbe\x99\xcc\x58\x49\x0d\xf6\x59\x69\x7b\x09\x9e\xe7\x2c\x9d\xf6\xf6\x4c\x31\x47\x0c\x1a\xc6\x62\x27\xac\xc7\x64\xe7\xc2\x16\x78\xdd\x07\x39\x89\x3c\x11\x73\x2a\xf3\xb4\x97\x91\x34\x44\x30\x3d\x99\x22\xa2\x2b\xeb\xa6\xb4\x90\x97\xcb\x57\x35\x86\x18\x5c\xef\xd3\x0d\xcb\x6d\x28\x61\x23\xc4\x06\x1c\xd8\x60\x6a\x6c\x48\xd8\x2b\x50\x7b\x6a\xd0\xeb\x58\x33\x32\x6e\x20\xe1\x0f\x9c\x4e\xbc\x9a\xaf\xfc\x79\x0c\x7a\x4c\x54\x33\xee\x88\xa6\xb7\x06\xe4\x77\xc7\xe0\xf5\xef\x70\xbf\x50\x0a\x11\xcd\x9a\xd1\xda\x33\xef\x1b\x28\xc9\x88\xcb\x54\x69\x9a\x7a\x55\xa1\xae\x5f\x96\x23\x5e\x27\x0c\xd7\xc9\x21\x11\x36\xd7\xc5\x4d\x2c\x7f\xbc\xdf\xac\x66\xad\x60\xf8\x53\x89\x3e\xdf\x37\x27\x6d\x77\x73\xe0\x83\x1f\x2a\xe5\xee\x24\x5a\xbd\x9b\xa8\x20\x76\x84\xf8\x33\xba\x99\x0d\xbb\x98\x24\x83\x68\x05\x9b\xf7\x1c\x89\x0b\x46\x4f\x67\x5d\x8c\x6d\x1b\x3b\x79\xd6\x27\x0a\x9f\xd2\xb6\x26\x68\x5d\x26\xc6\x57\x56\xa3\xba\xa6\xd6\x26\x63\x17\xc0\x40\x47\x89\x72\xce\x1a\x60\xc7\xb7\xad\x60\xb8\x47\xd8\x55\xcc\x3f\x15\xe4\x5d\x1e\x32\x48\x50\x3f\x99\x40\x96\xa4\xcb\x80\x7a\x7b\x6c\x44\x32\x79\x91\x6d\xc7\xe6\x43\x23\x23\xaf\x78\x62\x20\xed\xa9\xee\x99\x5f\x89\xa6\x0c\xb0\xa6\x9b\x7f\xac\x60\x88\x9d\x62\x83\x07\xa2\xc1\x4f\xa1\x1e\x8d\x77\xfb\xca\x0a\x50\xc0\xe8\x90\x1c\x24\xcf\x7f\x59\xea\x5d\xa5\x90\x05\x0e\xc5\x18\x72\x9a\x49\xe1\x02\x7f\xa8\x91\x20\xd9\xcd\x1e\x83\xfc\x65\xd8\x6d\x2c\x2f\x36\x85\xd8\x1e\x18\xd6\xf0\x2e\xe3\x42\x0a\x8c\x51\x55\x97\xf6\xf1\x4e\x5a\x7b\x51\x99\x45\xb3\x64\x86\x3f\x10\xee\x9d\x40\xc6\x0e\xf9\x5f\xfb\xf3\x11\x05\xb7\x70\xdd\xbd\x55\xc2\xac\x63\x85\xac\xd6\xd0\xde\x0e\xaf\xe5\x00\x33\x5f\x59\xf6\x5c\x3f\xd9\x7a\xf5\xf4\xc9\xd5\x87\xeb\x0f\xd5\xbc\x2c\x4b\x19\x2b\xe3\xaf\x83\x25\x10\x0d\x45\x75\x00\x11\x38\xe2\x88\x97\x67\xda\x6e\x78\xd9\xd5\x01\xac\xb8\xab\x4f\x6f\x50\x68\xe6\xcb\xa4\x80\x10\x8b\x35\x80\xe9\x3d\x99\xc4\xe6\x21\xd3\x9e\x72\x0e\x12\x03\xc8\x63\xa5\xbe\x8b\xf3\x26\x61\x7a\xa2\xa6\xc7\xad\xb5\x62\xef\x4c\x0d\x94\x44\xd5\x5d\xa7\x97\xc4\xc7\x75\x4b\x09\xf6\x5b\xd1\xe9\xb8\x40\x73\xba\x42\x0d\x14\x94\x43\x37\x51\x93\x84\xb5\x97\xaf\x18\x50\x5c\x33\x8f\xeb\xa6\xb3\x4b\x9c\xbb\x40\xa8\x00\x0e\x9a\x3e\xf0\xb0\x74\xf8\xec\xd8\xd8\x07\x01\x87\x21\xfe\x87\x65\xdb\x8c\xc6\x61\x39\x3e\xbb\x52\xd7\xac\xb4\xa9\xc7\x79\x8e\x50\xac\x0d\xb1\x05\xef\x63\xb2\xb6\x88\xc2\xe9\x07\x07\xb0\x57\xa7\x84\x09\xb0\x6e\xdc\x86\x76\xb5\x82\xca\xac\x4a\x60\xc2\x0d\x6f\x7a\x53\xc6\x9b\xdc\x6d\x8c\x17\xbe\x2d\x5c\x31\xf0\xc9\xa3\xaf\x25\xcb\x7c\x9a\x47\x42\x2d\xb7\x0b\x9c\xc3\x20\x76\xc2\x8b\x72\x3e\x03\x46\xd8\x79\x41\xf9\x79\x38\x82\x1d\x04\xcf\x15\xc0\x46\xe1\xc7\x85\x18\xa0\xf0\xdb\x51\x91\xc6\x01\x91\x52\x8f\x26\x02\x3a\xd2\x0c\x33\x1b\xc6\xe4\x68\x97\x23\xd0\x70\x89\xc6\xca\x33\x49\x2f\xc5\x01\x0c\x23\xd0\xd1\x5a\x45\xbc\x41\xaa\x57\xc2\x99\x11\x00\xb4\x93\x12\xb8\x83\xf8\x4d\xbc\x7b\xd7\x0b\x82\xc6\x0a\xab\x69\xcc\xf6\x2b\x86\x8a\xe2\x0c\x0b\xff\x4c\x4c\xe7\xb1\x7e\x97\xe4\x02\x4c\x17\x08\xaa\xcb\xc5\x8e\x6b\x60\xf9\x6a\x1c\x60\xda\xf6\x9e\x46\xc3\x20\x41\x11\x12\x3a\xd2\xd7\x6c\xc4\x62\x64\x32\x5b\x63\xa5\x45\x57\x1c\xbe\x53\x28\x19\xa4\xfb\xd0\x0d\x75\x0e\xe5\xc0\x8b\xaa\xc1\xe6\x3a\xf0\x27\x51\x50\x60\x3e\xc1\xf8\x34\x6c\xb6\x74\x2d\xe8\x02\xce\xe9\x11\x68\x43\xf9\x8f\xd3\xbd\xc1\x60\x5f\x21\xeb\x4f\x4f\x0e\xf6\x52\x33\xa2\x59\xf2\x45\x28\xd0\x6b\xce\x28\xd1\x2a\xd5\x66\x44\xf3\x7c\x8a\x10\x83\xe8\x77\x85\x56\x06\xe9\x9d\x48\x06\x56\xbb\x91\x7e\x2f\x4e\x01\xfd\xf9\x1a\xb6\x1a\xb6\x1e\x76\x39\xcc\xca\x8f\x07\x35\x7e\xf4\x49\xed\x69\x17\x8e\xd1\xa0\xdd\xcc\xd2\x81\x51\x35\x5f\xbb\x06\xe4\x13\x0e\xa0\xd8\xda\x44\x0e\x81\x1d\xe0\xaa\x25\x0d\xb8\xce\x5b\xf3\x05\x00\x96\xa2\x7a\x71\x65\xbc\x83\x3c\x25\xde\x0d\x84\x11\x0b\xbc\x13\x01\xee\x5a\x01\x58\x56\x0b\xf5\x49\x84\xe3\x23\xac\x8a\x91\xda\xd8\xa5\xc4\xe1\xf0\xd1\x07\xf1\x29\x7a\x78\x24\x71\x79\xb7\x51\xaf\xdd\xdb\x5c\xeb\xe9\xa4\x16\x05\x09\xeb\x64\x01\x3c\x42\x11\x3a\xd8\xe1\x1e\xf1\x94\x25\xb1\x3b\x99\x51\x81\xec\x92\xc3\x81\x91\xd8\xc9\xab\x7d\x0f\x19\x0f\xa7\x2b\x38\xc1\x4e\x9b\xb2\x8b\xfd\x3e\xbf\xdb\x77\xed\xa9\xaa\x05\xac\x28\x68\x4e\x8f\xeb\x21\xb1\xb7\xc4\x51\x1a\xb5\xd8\xaf\xf7\xa4\x8e\xef\x85\xf6\x60\xd9\xf3\x5e\x51\x6e\x15\x11\xc4\x01\xb2\x0e\x70\x35\xd6\x8a\xef\xba\x4f\xa5\xad\x7c\xc8\xec\x7d\xf7\x01\xe4\x4c\x41\xbe\xcb\xc0\xec\xe7\x66\xf2\x39\x34\xeb\x82\xfb\x33\x6f\xc3\x59\xed\x10\xef\x24\x46\x97\x2f\x82\x75\xc1\xa5\x81\xb1\x72\x94\x8f\x07\x9c\x76\xa6\x3d\x21\xf3\x2a\x20\xcc\x1d\x58\xc0\x90\x61\x39\x1a\x05\x0f\x50\x99\x02\x8f\x21\xdf\x35\x90\x5e\xb0\xaa\xaa\x38\xd9\x77\x1d\x7b\xfe\x7d\x89\xd2\xdf\x09\xa1\x3e\xfe\x9e\x77\xac\x08\xcf\xa2\x33\x6a\x63\x53\x37\x39\x59\xb6\x4e\xf9\x50\x92\x32\xb6\x76\xe4\xc4\x7c\x01\x20\x30\xf5\xfd\x59\x07\x88\xa7\x49\x73\xa7\x3a\x42\xa3\xdb\x04\x10\x07\x3d\x97\x41\xd7\xb2\xed\x66\xb7\x59\x56\xac\xef\xfe\x6a\xef\x85\xa2\xc2\x8e\xca\x92\x51\x26\xb9\x88\x95\x4c\x45\xa8\x60\x54\xd1\x4a\xbf\x6f\xf6\x47\xbb\x77\xe3\x10\x7d\xfa\xbb\x9c\x37\x35\x15\x24\x47\xa6\xcb\xa4\x06\x27\xed\x7b\x56\x0a\x20\xbb\x7c\xe0\xaa\x5a\x02\xa4\x57\x90\xbb\x1a\x80\xf3\xec\xe7\x99\xea\xc2\xc9\xa5\xfa\x42\x57\x70\xf2\x89\x82\x7e\x2e\x8a\x36\x6f\x7b\x92\xcf\xc9\xbc\x08\xed\x3d\xa3\xac\x4e\xb7\x0d\xe1\x56\xbd\xb4\xab\xfd\x93\xb2\xbb\xad\x8c\x09\xc8\x5c\x43\x41\x1b\xef\x20\x8c\x89\x2b\xd5\x02\x4f\xbb\x7d\xef\xa9\xa7\x42\xe8\xf8\x59\x56\xc3\x1a\x54\xaf\x3e\x6f\xbb\x41\x51\x9d\x20\x2c\xd5\x73\x2f\x58\xf9\xd6\xcd\xaf\x99\xcf\x83\x2e\x27\x18\x10\xef\x25\x4b\xcc\xff\x26\x71\x15\xea\x59\x61\x98\x1b\xd5\x1d\x89\x96\xf9\xf9\x5b\xef\x11\x98\x0c\x5f\x29\x04\x99\x68\x13\x86\x0c\xa2\x1c\xd5\x34\x6b\x3c\x29\xf3\xb6\x31\x7b\x8c\x32\x83\xf8\xbb\x13\xbc\xe6\xb5\x87\x37\xe2\x1e\xf5\xdb\x9c\xe6\x0d\x94\x7d\x90\x83\x07\x9c\x4d\x15\x5b\x42\x88\xfa\xad\x75\x5e\x40\x63\xfd\x92\xd7\xac\xd7\xe6\x69\x84\x2c\x77\x41\xcf\x3f\xa9\x2e\xd0\xa2\xa9\xea\x04\x81\x9a\xac\x0b\x20\x5e\xf8\xb3\x16\x9e\x7c\x37\x68\xe7\xc3\x41\xb7\xb1\x41\x1c\x60\xdb\x4c\x94\xfa\xa4\xe6\x35\x38\x47\xc3\x76\xeb\x83\xea\xb7\x84\x55\x04\x26\x47\x21\xd7\x78\x1f\xf9\x33\xae\xea\x42\xb5\x1b\xfa\xe9\x06\x61\x72\x48\xc0\x8c\x73\x5b\x5e\xee\x27\x0a\x4b\x4c\x7e\x5e\x64\xa2\x9e\xbe\x09\x43\xc4\xf9\x3f\xf2\x36\xef\x27\x4d\xb0\x96\x76\x8c\x8c\x80\xf1\x0c\x1f\x83\xee\xa4\xfa\x45\xfe\x3c\x8a\xe7\xf3\xa6\x45\xce\x32\xa2\x01\x11\x64\x98\x53\x5f\x5d\x75\xa3\xea\x45\xd8\x26\x1e\x63\x13\x02\x22\x9e\x8f\x26\xc6\x45\x3e\xa3\x6a\x61\x8f\x9e\x17\xc0\x13\xa6\xc3\x41\x3f\x65\xb9\xbc\x59\xff\x35\xb4\x15\x84\xdd\x86\x82\xa0\xd4\xa5\xe0\x38\xe7\x1c\x63\xee\xcd\x55\x25\xa2\x40\x6d\xb5\x33\x47\x94\xc0\xc0\xe9\x76\x22\x7a\xe3\x32\xe0\x84\x4d\x7c\x5c\xf6\xc2\xf7\x83\x2b\xac\x4f\x60\xdc\xee\x68\x30\x62\xf2\x25\xb3\x67\x03\x4b\xc1\x9c\x59\x6a\xd8\x41\xc0\x63\x72\x9d\x80\x0c\xad\x46\x8d\xa5\xd3\xf6\x6a\xde\xa9\xf8\xcd\x28\x9b\x52\x6c\x4f\x97\x53\xd3\xb0\x47\x13\x73\xcc\x95\xc6\xf9\x19\xa7\x75\x19\xee\x32\x39\x9e\x19\x71\x3f\x4d\xfd\x55\x47\x51\x20\x81\x76\xec\x23\xfd\x24\x60\x07\xce\xab\xfd\xae\x1b\x33\xee\x87\x97\x0f\xa7\xac\xea\x54\x89\x1f\x73\x1e\xfb\x9d\xcd\x8b\xf4\x5e\x61\x5b\x85\xc9\x8e\x41\xa2\x24\xa4\xd3\xbb\x3b\x39\x22\x73\x72\x63\xbf\xcb\x28\x95\xe5\x36\x76\x59\x85\xb4\xb6\xcd\x4c\xcf\x3b\x49\xb3\xd6\x53\x36\xda\x2e\x0e\xc0\xf7\x4c\x99\x11\x26\x25\x8b\xb4\x48\x42\xdd\xd2\xf6\x40\xc5\x7c\x02\x23\x2e\xbe\x97\xd2\xd8\x4e\x96\xc0\x5e\x89\x46\x75\x3b\xcb\x1b\xcc\xdc\xe4\x53\xa0\x44\x46\xb2\xb6\x21\x88\xe2\xca\x7c\xc6\xb6\xbc\x46\x7c\x0f\x11\x9a\x65\x1a\x6c\xa9\x21\xf6\x69\x75\x6b\xee\x06\xe1\x1d\x2a\x43\xd7\x1d\x7d\x20\x62\xe6\x01\xee\x5c\x69\xc8\x39\x03\xcc\xe5\x57\x3b\x81\x13\x9d\x14\x25\xae\x73\xad\xa6\x4e\xaf\x61\xa8\x5c\xd5\xf7\x0e\x98\x02\x1f\x1c\xe4\xcc\x60\x8a\x9d\x59\xcc\xe6\x71\x0c\x8e\x30\x76\x7a\x18\x23\xad\xb6\xe9\x4c\xf8\x94\xb2\x74\x10\x7c\xd6\x7d\x08\x73\xe4\xa4\xc7\xa2\xca\x30\x21\xd3\x19\x61\x3e\xe9\x58\xd8\x33\x20\xed\x34\x20\x8a\xf4\x88\xb5\x7c\x06\xc9\x70\x46\xbc\x18\xfb\x41\xce\xe8\xc4\x9c\x84\x34\x1e\xe3\xa8\x88\x15\x85\x86\x52\xd9\xa1\x56\xc0\xf0\x1d\x53\x2a\x0a\xe5\xeb\xf5\x53\x66\xec\x31\xb3\xde\x97\x91\x91\x62\xbc\xb1\x45\x7b\x64\x08\x76\x9e\x10\xc1\xc0\x10\x4a\xce\xb3\x9a\xcb\xa5\xd9\xed\xac\x88\x74\xb2\xa2\x67\x28\x7e\x03\xcb\x99\xda\x1d\xfe\x36\x67\x82\x26\xab\xf9\x39\x18\x95\x4e\xb1\x4c\xab\xb1\xdd\x02\x84\xbd\xc3\x93\x4e\x9d\x8b\x3f\x9f\xc5\x76\x28\x4c\x42\xa2\xe8\x68\x4f\x9b\x73\x8f\xc5\x5a\xc6\x80\xde\x5b\xa2\x97\xa8\xb6\x42\x9f\xe2\xf7\x05\x8e\xf1\xc0\xc9\xd1\x83\x09\x26\x6c\x8a\xac\xf7\xf5\xc4\x85\x38\x07\x30\x2f\x23\xe8\xdf\x17\xeb\x23\x55\x21\xe3\x94\x8a\xf9\xf4\x85\x8f\x52\x8f\xbe\x5f\xbd\xc3\x20\x8c\xa3\x0d\x49\x33\x83\x48\xdf\x20\xd7\xe9\x37\xe5\xa5\xc2\xa5\xd9\x3d\xef\xa0\x00\x98\x53\xe2\xf3\xee\x21\x5e\x09\x07\x88\xcb\xfe\xb8\x96\x44\x7c\x1f\x9a\xab\x1d\x7b\x26\xc0\x9d\xd2\x39\x9f\x99\xf1\x46\xea\xe5\x0f\x5c\x0f\x9d\xd5\x4a\xc7\x56\xff\xa0\x63\x8b\x3c\x33\x90\xa3\x21\x85\x53\x15\x3c\xab\xb1\xf1\xf6\xb2\xa9\x95\xd4\xbf\x44\x36\xca\x58\x27\x81\x2c\xdd\xe0\x23\xee\x2c\x5b\xf1\xa0\x4d\xbc\xb1\xf1\x5b\xfb\x93\x72\x87\xb3\xa4\xdf\x30\x89\x8f\x09\x14\x82\x05\x48\x93\x50\x12\x03\xdb\x3d\xa8\xd8\x36\x00\x6e\x45\xe7\x22\x07\xf1\x8b\x94\x41\x0c\x9d\xa0\x4c\x23\x94\x81\x63\x53\x02\x2c\xce\x01\xfd\xb4\x2c\x30\x9a\x9c\x72\x07\xad\x3d\x49\x41\x33\x5b\x7c\x9d\x4a\x3e\x61\x48\x31\xe6\xc2\x2b\xe4\x0a\xb5\xf6\xcc\x73\x57\xb6\x10\x5e\x80\x53\xaf\xac\x92\x68\x7e\xe6\x01\x8c\x56\x80\xfe\x99\x4d\xca\x55\xd8\x5d\x3c\xac\x79\x96\xfb\x05\xc1\x38\xa3\xb5\x05\x92\xdf\x92\xec\x6a\x69\xc1\x38\x3d\xc1\x48\x51\xe1\x3f\x2e\x8b\x64\x77\x3c\xe3\x29\x2f\xf3\xba\xa6\x46\xdd\x6f\x30\x8c\x79\x73\x5d\x27\x9e\x90\x53\x52\xab\x91\x06\x49\x59\xbc\x32\x88\xfa\x8e\x01\xb6\x60\xe0\x41\x0f\x9b\xca\x24\xe6\x31\xed\xd9\x73\x6a\xf3\x33\x90\xae\x3a\x9d\x8d\x8f\x76\x39\xcc\xf6\xd3\xae\x07\xd9\x89\x88\xc1\xdb\x21\x06\xc9\x14\x76\x2a\x51\x3e\x15\x4d\xae\x75\xdf\x41\x4d\xab\x35\x39\x9a\xef\x50\x6d\x77\x91\x8a\x83\xd4\x0a\x8e\x27\xaf\x9a\x4c\xd0\x5a\xd5\x0d\xb5\xeb\x68\xbb\xa6\xaf\x56\x2b\x11\x82\xae\x1b\x24\x95\x0e\xb9\x5f\xc7\x3d\xa0\x97\x77\x88\xcf\xe7\x45\xee\x58\xa3\xac\x22\x66\x84\xa1\x70\xf3\xbc\xdd\x9e\x52\xb3\xee\x62\x58\x83\x5e\xd1\x1d\x28\x52\x0e\x64\x03\xcc\x2d\x8e\x92\x4f\x3b\x8a\x4f\x9f\xf6\xd3\xd8\x46\x24\x82\x4a\x56\xa4\x5b\xc3\x33\xc9\x21\xd6\x51\x93\xae\x06\x3e\xbd\xda\xe1\xb6\x77\x7e\x01\x88\x02\x96\x69\x71\x8a\x38\x87\x4a\x0e\x01\x93\x34\x76\xb6\xc2\x62\x5b\xd1\x93\xbe\x12\x52\xa9\x47\xbd\xe0\xed\xb2\xae\xf5\x17\xaf\x21\x74\xc2\x6e\x99\x42\x93\xf4\x98\xec\xa4\x51\xa4\x17\x81\xe4\xad\x5b\x3a\xc9\xc5\xe7\xee\x54\x8c\xd1\xa2\x72\x51\xa8\x68\x0d\xea\x62\x28\xb1\x6f\xb1\x1b\x8c\x71\x01\x15\x81\x67\x78\x88\xe1\x0d\xa7\x3c\xe0\xea\x5c\x19\x18\x5e\x38\xb6\xfe\xe4\x0b\x97\xbf\x3f\x6f\x14\x9c\x8f\x49\x9f\xe1\x71\x1d\x33\xef\x12\x4a\x12\x2c\x2c\x10\x16\xed\xd9\x4b\x15\x3d\x32\x23\xdc\xbd\xe5\xea\x12\x4f\x36\xbc\x2b\x1b\xed\x27\x79\x01\x12\x19\x9e\x13\xca\x51\x88\x89\xfe\x39\x96\x65\x28\xc2\xd1\x1d\x97\x2b\x4a\xba\xcf\xd2\x24\x0a\xad\xdb\x08\xe7\x48\xc4\x46\x6b\x29\xa4\x14\x28\x79\x9d\xf0\xbe\x6d\x00\x83\x14\x1a\x75\x58\x16\x25\x41\x63\x29\xab\x71\x70\xaa\xd3\x86\x7b\x9a\x35\x46\x84\x86\xdb\x96\x4e\x14\xc6\x22\x7a\x2d\x75\x81\x8c\xd1\x04\xaa\x86\xc0\x96\x29\xea\x11\x23\x8e\x1b\x10\xf6\x74\xac\xc0\x65\xe7\x2e\x15\xf6\x14\x50\xa7\x4e\xbc\x1b\xd1\x0e\x09\x30\x76\xbe\xdc\x46\x05\x32\xd7\x24\x2d\xa0\x7f\xe3\x13\xdd\x55\x04\xb4\xc5\x38\xa4\xbb\x1d\x7e\x5a\xda\xdd\x76\xa4\xc7\xda\xe1\xc6\xa1\xa7\x8c\x35\xab\xc2\x8c\x5b\x53\x08\x15\x61\x1e\xef\x2f\x53\xba\x45\x76\x91\x89\x2a\x54\xb8\xbd\xab\xf1\x9d\x16\xec\x9e\x24\xf9\xea\xbe\x5c\x60\x85\x19\x4c\x98\xc0\x59\x6d\x03\xcc\x18\x52\x29\xa6\x59\xad\x02\x1f\xab\x16\x0b\xb4\xbe\xc1\x9d\x9f\xb3\xb7\x66\x66\x8c\xd7\xe1\xef\x9e\x29\xce\xbc\xe4\xd6\x7a\x0e\x38\x06\x6a\x1b\x6d\xd0\xfa\xea\xf2\x82\xd9\x15\x76\x46\x87\x29\x64\xd4\x76\x5b\xdd\x6e\xcd\xd4\x94\xa6\x66\xaa\x14\x2a\x14\x37\x21\xc0\xf9\xb9\x0a\x64\xb6\x5b\xcb\xd2\xf6\x69\xeb\x6d\x74\xef\x09\x3b\xb7\xb6\x26\xea\x90\x1d\x8f\xf7\x50\x71\xee\x07\xb7\x30\xca\xd0\x41\xfe\x50\x0e\x12\xe4\x4a\xc4\xa8\x70\x73\x8e\xcd\x08\x43\xe3\xda\x94\xad\x93\x43\x24\x57\x0d\xe4\xaf\xd1\x63\xad\x3f\x9e\xf2\xec\x83\x60\xe5\xad\x45\xc3\xd1\xd0\xed\x4b\x56\x3d\xd8\xf2\x26\x52\x8a\x4b\x60\xc1\xeb\x40\xe6\xcc\x5a\xdf\x8f\x47\x69\xa7\x98\x56\x31\xf6\xea\xc6\x39\xe9\xeb\xd5\xbe\xc4\xde\xab\x3a\xa5\xb0\xf7\x70\x70\x4e\x16\x17\x0b\x4e\x1a\xa2\x10\x6f\x14\x9a\x28\x86\xd9\xa9\xaf\xd1\xca\x28\xcd\x31\x77\xba\xb4\xd2\x36\x29\x29\x06\x99\x1f\x0b\x53\x9c\xe8\x44\x3d\xf4\xa1\x76\x3b\x30\xa9\xc0\x75\x15\x05\xa1\xae\x3b\x6a\x44\x4f\x3c\xaf\xed\x8e\xab\x14\x68\x18\xd9\x9a\x86\xb9\x70\x66\x63\x2a\xe1\x7e\x5e\x67\xd1\x81\x7b\xdd\xe3\xd6\x8a\xcb\xf5\xb4\xce\xeb\xfe\x86\x6c\x9f\x66\x51\x1a\xb5\x7f\xa0\x9f\xdc\x4a\xcb\xab\x24\xd4\x4d\x27\x8a\x2f\x03\x59\x72\xcd\xa8\xac\x13\x80\x21\x8f\x52\x15\x8c\x19\xa7\x1d\x8f\x2e\xd7\xf7\xcf\xe2\x66\x7d\x79\x71\xba\x5f\xce\xe2\x60\x3c\xd7\x05\x9f\xf0\x63\xb5\x3e\x71\xe1\x0d\xa3\xfd\xec\xd6\x8b\xcd\xe6\x0e\xda\xda\xbe\x6d\xc0\xa6\x2a\xc7\x5d\x53\x2e\xd9\xf2\x5d\x19\x8e\x95\xda\x4e\x1d\x54\x18\x28\xce\x55\xb3\x2f\xb0\x12\x16\xdf\xa1\xa3\x43\xd7\xa9\x44\xde\x15\x5d\x14\x3a\x99\x9b\x35\x6c\x54\x2a\x4c\x29\x72\xa6\xa1\x89\x59\xcd\xac\x34\x00\x9e\xcc\x58\x71\xc6\x8c\x3b\xcd\xae\xad\x88\xef\x62\x2b\xaf\x7a\xb5\x5d\xa0\x4f\x24\xc8\xe2\x52\x8d\xf0\x66\x13\x8c\xaf\x58\x92\x8e\x50\x07\xee\xef\x6b\xfb\xef\x3f\x81\xf3\xab\xca\x9b\x3e\x6c\x7a\x07\x95\x87\x04\xac\x53\x72\xcc\x6d\xbb\x8f\x62\x30\x24\x1e\x17\xa6\x78\x26\xdc\xad\x98\x8f\x9d\x73\xea\xe6\x0b\x41\xe5\xc5\xa7\x87\x54\x79\x07\xf2\x21\x41\x95\x79\x25\xf7\x53\xe8\xad\x09\xd1\xa6\xe1\xb9\xfd\x6f\x92\x17\x3c\xf4\x06\xf6\xdd\xe0\xa1\xdd\x11\x15\x11\x67\xfd\x33\x2e\x20\x82\x7f\x01\x67\x89\xff\xe2\x52\xec\x2f\xe4\xae\xbf\x49\x90\x95\x53\xfc\x8c\xf8\x62\xd2\x65\x05\x96\x3e\x4c\x9b\xcc\xf1\xb4\xf2\xc6\x3c\x0d\x9d\x03\x1c\xc7\x3d\xc3\xb5\x63\x8c\x87\x28\xc3\x9a\x63\x40\x68\x3c\xa5\x05\xb8\x47\x99\xf1\x56\x12\xfa\x84\xcc\xde\x08\xe4\x6d\xc4\x08\x9c\xed\xca\x38\xa3\x62\x31\xd5\xea\xb2\x0f\xbb\x58\x6e\xc4\xf0\x03\xa0\x3b\x97\xe7\x00\x12\x7b\x22\x36\x38\x06\xe6\x16\x32\xb7\x1a\x2d\x34\x6e\xe7\xca\x5f\xdc\xca\xd2\xfc\x2c\xdc\xfe\x31\x65\x58\xf7\x06\x4e\x7c\xc5\xd9\xd4\xcd\x56\x3d\xd1\x1e\x9e\x31\xb1\xa3\xd9\xda\x68\xc6\x3a\x9b\xa8\xb1\x59\x8f\x81\x15\x21\xf3\x13\x43\x1a\x9d\xa5\xd8\xdf\xf0\xdd\xdd\xc7\x1f\xed\xbf\xd8\x7f\x7e\xf9\xfc\xfa\xe5\xec\x84\x96\x16\xc7\x3e\x6b\x90\xd9\x9d\x1c\x65\xbd\xc2\xa9\xf9\x3d\x96\xbe\xcf\x70\x51\xca\xff\x38\x34\x77\x96\x57\x2c\x35\xea\x2d\x44\x86\x23\x11\xb7\x7e\x1f\x6c\xcd\xc6\x8a\x7d\x63\xdb\xfb\x41\xf6\x37\xcd\x8b\x0b\xaf\x90\xd6\xee\x7a\xe0\x96\xd7\xee\x52\x51\x06\xeb\xeb\x6f\xee\xae\xbf\x77\xfd\xdd\x0f\xdf\x7f\xf1\xac\x21\x21\xd6\x99\x94\xdc\x05\x47\x0c\xa3\x50\x86\x60\x25\xc7\x98\xd4\x7f\x51\x64\x2d\x54\xe6\xca\x06\x15\x85\x52\x4e\x59\xe0\x4d\x15\x6e\xee\x46\x4e\xe6\xc1\x28\xed\xb0\xf8\xf3\x12\x43\x85\xd8\x28\xe2\x6e\x84\x8e\xe3\x8b\x55\xba\x5e\xd4\x9a\xec\x79\x3f\x68\xdb\x5d\xaf\xca\x99\xaf\x3d\xa6\x52\x8d\x39\x3b\x5a\x1e\x53\x88\x65\x38\x89\x19\xc7\xf2\x0d\xde\x91\x51\x92\x8a\xae\xc8\x46\xec\xd8\x81\x3b\x52\xa5\x27\x6d\x24\x61\x51\x3d\xb0\xc4\x4e\x04\x1a\xdb\x9b\x92\x0d\xad\xb5\xe8\x99\x07\xea\x45\x41\x20\x11\x53\xc7\xfb\x66\x87\x1d\xa5\x66\x6d\xf1\xb5\x3c\x8c\xd4\x02\x6d\xf8\xdb\xc0\x48\x4b\xcf\x62\xfb\x31\x5c\xbb\x56\x38\x37\xc4\x46\x74\x4e\xa1\xb5\xd1\x54\x84\x17\x23\x88\x3f\x2d\xb3\x53\x83\xd1\xbe\x6e\x34\xe5\x63\x01\x8f\xb2\x4e\xf5\x8b\xcb\x5a\x30\xd1\x48\xb9\xbd\xb0\xb2\x00\xbd\x30\x44\xb3\x53\x6c\x2e\xa8\x99\x98\x73\x38\x1b\x9f\xe6\x99\xe9\x06\x7f\x1c\xc3\x2d\x99\xd4\xcc\x34\x45\xb3\x44\xda\x84\x3a\x3b\xf5\xf3\x4c\xdb\x72\x9a\xeb\x9b\xf6\x69\x3e\xcc\xc8\x2a\xa3\x9a\x66\xb9\x5f\x18\x59\x37\x83\xde\x75\x6f\x4e\x93\xb6\xb2\x7d\xc4\x7f\xb1\x25\x66\x54\x78\x8e\x03\xe9\x37\x29\xb2\x4b\x35\xe3\x8e\xac\x17\x6c\x6c\x6d\x5e\x18\x79\x54\x94\x06\x59\x46\xd0\xb6\xe7\x6a\x3f\x2e\xcd\xdc\xda\x9a\x6f\x33\x79\xd2\xbf\x8a\x84\xba\xfe\xf6\xb8\x70\x69\xb7\x5c\x8a\xf1\x5a\xc3\x88\xb2\x04\xa6\xd1\xd1\x86\x86\xfc\x2a\xad\x96\xc5\x82\x42\x61\x30\x00\xa0\xf6\x58\xfb\x2d\x1d\x9a\x9f\x9b\x9e\x6c\x18\xd9\x6f\xb0\xbf\xbb\xab\xad\x25\x7f\xe6\x7e\xd5\x9d\x0e\x7b\x49\x91\x36\x6f\xbf\x2c\x6b\x5a\xaa\x31\x99\xa5\xd9\x2f\x41\x21\x11\x0b\x78\x50\xa6\x9d\x46\xe6\xaa\xa8\xdd\x0a\x8b\xb6\x80\xa6\xbd\x96\xe7\x59\x14\xc8\x7d\xf4\xd6\x83\xb6\xe9\x61\xe6\xa8\xae\xc7\x65\xec\xb9\x30\x24\x9b\x09\xb9\x58\xb3\x45\x7b\xd4\x44\x61\x4f\x94\x09\xcc\xbb\x16\x2e\xf4\xd8\xcc\xbd\x06\x82\xe1\x53\xa0\xef\x2a\x68\x94\x0d\xd7\xde\x36\x4a\x62\x13\xb0\x75\xcf\xa9\x0a\x3c\x71\x65\x76\xdf\xf2\x5b\x6d\x73\x6f\x90\xe9\x39\x0b\x9b\x51\x29\x2f\x61\x62\xe7\x8e\x5a\xbd\x9d\xc9\x76\x41\x07\x05\xfe\x76\xd3\x0c\x86\xee\x97\xaa\x79\xf8\x26\x11\x24\xe1\xf3\xd3\xf6\xb5\x91\xbd\xee\x9b\xfb\xda\xf0\x1d\x5b\x06\x78\x4d\x0b\x59\x14\xe1\xb2\x35\xcb\x6b\xdf\xcc\xc2\x2b\x3c\xc1\xe3\xd6\xa0\xed\x64\x03\x78\x4a\x45\xc1\x90\x09\xeb\x28\x36\xcb\x58\x2e\x93\x35\xf6\x72\x14\xfb\xa8\xba\xbe\xc8\x96\x52\xa3\x94\x13\x81\x74\x4c\x6a\xe2\xa7\xbd\x4c\xd0\x1c\xf5\x33\xbe\xc4\x80\x4c\x76\xad\xef\xea\xab\x5a\xbe\x57\x4e\x19\xa9\xe4\x90\x74\x45\x50\x8b\xb1\xa8\x21\xd7\xba\x47\xde\x43\xa6\x99\xfd\x62\x06\x42\x91\x3b\xba\xc3\xfc\xf3\x19\x3a\xda\x4b\x1f\x9c\x90\x78\xea\x59\x3c\x2d\x03\x1e\x7b\xd3\x49\x0a\xda\xfd\x66\x61\x82\xcc\xb7\x68\xab\x2c\xcd\x49\xc9\x7a\x96\x69\xed\x80\xa5\x46\x09\x0c\x5f\x0e\x87\x6c\xfb\x18\xca\x18\xdc\x49\x92\x3d\x9f\xc2\xc5\x55\xf0\xa7\x0d\xd9\x8a\x1d\x61\x9d\x52\xc9\xa5\x54\x85\x98\xc6\x1a\xc0\xd0\x82\xdc\x4c\x46\x38\xc8\x18\x29\x42\x57\xc0\x43\x56\x66\x71\x09\x14\x05\x4e\x48\x15\x45\xa9\x0a\xec\xf1\x3c\x16\xea\x77\x44\xe2\xa6\x83\xf1\xed\x4d\x09\x33\xc2\x11\x55\x76\x42\xe6\x87\xc3\xcd\x31\xdf\xc3\x39\xe2\xdb\xb1\x4a\xe4\xfa\x86\xbc\x28\xaf\x1b\xc0\x30\xbc\xbc\x97\xd0\x94\x17\xbc\xb9\x6a\x7c\xec\xd3\x7c\xae\x70\x7b\x03\x3d\x5f\x90\x66\x44\x58\x4d\x91\x28\x4f\x35\x3b\xaa\x6d\x35\x7b\xcb\xbc\x51\x08\xe3\xa7\xc3\xda\xf7\x4d\xe0\xf1\x56\x0a\xa6\x15\x92\x79\xca\xa4\x80\xb7\x2b\xa7\x4c\x99\xcf\x17\x99\x40\x44\x9e\xce\x86\xd9\x5e\x40\xbf\x20\x59\x68\xa1\x45\x29\x57\xce\x91\x96\xe1\xbf\x14\x0c\x61\x7f\x78\x0e\x8d\x02\x42\xa0\x18\x3b\x69\xd4\x6a\xe1\xe8\x74\x35\x99\x8f\xa3\x82\x83\x87\x33\xa6\x57\xbc\x3b\x1c\xef\xa4\x19\x8b\xef\x84\x04\x1f\x0a\x49\x95\x78\x53\x3c\xee\x9f\x1f\x56\x01\x1e\xc1\xff\x26\x4e\x75\xb4\x5f\x96\x2c\x51\x85\x94\x31\xfa\x70\x76\x5a\x05\x4b\x97\xcb\x09\xda\x28\x3a\x73\x88\xc1\xe6\xbc\x99\xc6\x38\x53\x0e\x64\x0b\xbe\x16\x83\x9e\xfb\x21\x3a\x51\xa6\xaf\x43\xc7\x98\x7a\x39\xfe\x91\x49\x7e\xb9\x1e\xcb\x5d\xc2\x9e\x20\xf7\x8e\x86\x79\xda\x9e\xf2\x15\xb4\xed\xe2\x62\x52\x2d\x37\xbe\xa7\x71\x76\x0a\xf5\xde\xfb\xec\x74\x7e\xca\x8a\x38\xa2\xd6\x78\x85\x67\xbc\x52\xdd\xae\x24\x3f\x9d\x92\x11\xb4\x7c\x40\xd8\xc3\xd0\x26\xa8\x50\x1e\x3c\x43\x0d\xee\x04\x78\x93\xcb\x05\xd4\x5b\xcf\xf5\xb6\xd9\x66\x49\xe0\xdb\xc4\x98\xf1\x98\xc7\x17\x83\x3f\x65\x67\x31\x01\xc1\x6f\x4e\x20\x46\x1b\xe6\xd3\x6b\xec\xab\xa2\x91\x11\x9a\x3c\x63\xf2\xe2\x8d\xf4\x04\xac\x04\xe9\x07\x36\xef\xac\x8e\xc5\x56\x11\x75\x00\x26\xe0\x83\x2f\x0d\x1f\x5e\xd4\xc9\x0a\xc0\x50\xc7\xa4\x9e\x85\x71\x95\xfb\xf2\xf6\x69\x6c\x7b\x64\x72\x1a\xd8\x96\xdd\x0c\xee\x4e\x82\x3b\x4e\xc6\x50\x4f\xfa\x72\xc1\x16\xbe\x0b\x0a\xf7\xb8\x59\x24\x7a\xa9\x01\xbc\x37\xb5\x80\x49\xea\xc2\xe8\xc4\x83\x7c\x08\x26\x25\x71\xcc\x84\x05\xe2\x66\x68\x0d\xa5\xde\x34\x02\xa8\x0f\xbc\x91\xe5\x40\x8d\x30\xdf\xfb\x5a\xe1\xe6\xa6\x79\x91\x3b\x29\x04\xf2\xb1\x89\xb8\xc4\x2a\x34\xc6\x53\x24\x47\x1e\x20\xfa\xdf\xd2\xcb\xee\x14\xe7\xa3\xa8\x88\xbf\x8b\x72\x6e\x91\xa6\x09\x22\xb7\x0c\x70\x67\xaa\x27\x80\x75\xf2\x88\x9e\x9e\xd2\x3b\xac\x05\xa7\x84\xa8\xf9\xa4\x39\x63\x70\xee\xcc\x01\x5a\xf2\xcc\x8f\x23\xcb\x45\xef\xbe\xd5\x22\xf0\x11\xce\x31\x5d\xe3\x01\xb7\x65\xf4\x50\x37\x1e\xc3\xa7\xa3\x62\x79\x97\x90\x21\xb2\x8b\x8d\x84\xe5\x24\x0c\x87\xa9\x48\x52\x52\x6d\x10\x16\xf3\x97\x33\xd6\x38\x16\x21\xc9\xb3\xfb\x21\x44\x80\xa7\x4b\x54\x44\xfe\x3c\x18\x02\xa3\x01\xb8\x80\x19\x07\xf0\xf0\xbc\xbb\xcc\x59\x18\xfe\xe6\x9d\x6b\xcc\xef\x3c\xfd\x61\x9a\xe1\x41\xbc\x3b\x69\x10\x38\x61\xd7\x46\xab\xd6\x21\x2c\x90\xa7\x02\x6f\x9c\xf0\xf5\x25\xd7\x5d\x18\xe8\xf1\x78\x64\xd7\x57\x8a\x2f\x81\xa3\x07\x9c\xcd\x43\x1e\xc3\x46\xb8\x64\x9d\x9e\xfe\xc0\xab\x5e\xca\x3c\x17\x39\x15\x5e\x39\xf7\xdb\x08\xfd\x0d\xdd\xc6\x32\xc6\x7f\xd8\x2e\x21\x84\x26\xce\xfa\x82\x1e\x12\xcf\x86\x54\xaa\x35\xd4\x38\x91\x31\xf0\xef\x64\x9e\x95\x0a\x70\x21\xbc\xdd\x31\x25\x5a\xa4\xa5\xe3\xae\x10\x98\xab\x3f\x9e\x95\x34\xe7\x9d\x18\x51\x1b\xbd\x53\x4a\x1a\x2c\xe0\x31\xbc\x4d\x4b\x57\xea\xe9\xc4\x21\x9c\x84\x08\x1c\x8e\x21\x2d\xd5\xdd\xad\x0e\x40\x24\xfb\x95\x10\x19\x4c\xa1\x15\x74\x63\x6a\x43\x9e\x0e\x01\x75\xc6\xa3\x41\xc1\xfb\x71\x81\xc5\x2e\x8e\xfb\x4e\x1e\xf3\x90\x39\xd4\xb5\x72\x14\x8a\xc7\xc1\x3b\x9e\x5b\x50\x32\xa5\xaa\xd7\x28\xac\x70\x71\x11\xa8\xe0\x99\xcf\x45\x23\xc2\x01\xde\xf4\x55\x94\xe7\x4c\x59\xcc\xcf\x91\xc6\xe3\xb9\x35\x9a\xee\x7f\x5e\x47\xbc\x48\xd7\x0a\x22\x93\xdb\x94\x79\x4a\xb9\xb3\x2c\xe6\x84\xe8\x41\xf5\xf0\xb1\x39\xe3\x19\xcf\x78\x25\xa3\xfe\x3a\xce\xf7\x61\xd8\x1d\x70\x75\xd0\xe1\xc4\x84\x17\x07\xfb\x22\x19\x34\x28\x94\x42\x82\xb4\x2e\x8c\xc1\xfe\xb4\xaa\x09\x18\xd3\xd2\x13\xdc\x7b\x63\x1a\x50\x61\x31\x1d\xf3\xf1\x0b\x77\x52\x55\x8e\xa3\x51\xb4\xed\x3a\x7b\xd6\xb2\xcb\x93\x37\x5a\x1a\xcf\x1c\xe3\x58\xeb\x43\xc1\xf0\x14\xdc\xeb\x6a\x0d\xa4\x9d\xbd\xa8\x28\xe4\x59\x17\xaf\x56\xdb\x5f\x4c\x3f\x00\xff\x1f\x97\x4a\x18\xd9\x17\x39\x8e\x8c\x94\x6f\x5f\xab\x4b\x05\xc9\xb2\x9d\xd8\x68\xe4\xff\xff\xc6\x8a\x87\x23\x27\xe1\x8f\xbc\x5d\x82\x5b\x78\x90\x8e\xa5\x57\xc0\x9f\xf2\x91\x2b\x35\xcf\x98\x76\xa4\xef\x35\x65\x21\x40\xac\xd9\x87\x86\x35\xbd\xa6\x72\xaf\x61\x25\x1b\xbd\x57\xbb\x98\x1a\x07\x44\x79\x48\xc5\x52\xce\x56\x6f\x8c\x40\xf3\xb6\xdd\x8e\x2e\x61\x38\xd2\x25\x5f\xe4\x76\xcb\xe1\xf1\xaa\x12\xbd\x5c\x28\xf3\xc6\xa7\x0b\x2b\xb8\x81\x65\x0b\xe3\x1e\x9d\x80\x9a\x25\x51\x46\xf6\x8d\xa6\x2a\x0c\x90\x12\x9a\xec\xd6\x1c\x5a\x35\x91\x5a\x11\x96\x55\x7c\xa4\x0d\x33\x02\x4d\x8c\x21\xdc\x66\x9f\x34\x4a\xf2\xef\x7f\xfc\xfe\xb7\x3f\xf9\x51\xb3\x9c\xef\x38\x53\xce\xf4\x58\xc9\x50\x2f\x4d\xbd\xa8\x48\x89\x76\x76\x38\x2b\x4b\x8b\xd4\x4e\xf0\xd3\xa8\xe2\x60\x09\xc0\x21\xaf\xc6\x22\x96\x0f\xff\xb7\xbc\x93\xa5\x4e\x10\x24\x2b\xb1\x5a\x0a\x12\xa4\x5b\xd6\xea\x9e\x14\xe4\xdc\x80\xfc\xa7\x1f\xfa\xe2\xda\x4e\xae\xaf\xa2\xd4\x40\x83\x5f\x8f\xf7\xee\x47\xb8\x0a\x7c\x57\x13\x78\xd1\x15\x7b\x05\x33\xa2\xee\x4e\x67\xe4\x73\xd2\xe3\x5f\x6f\x8f\xb1\x92\x96\xaf\x7b\x70\xda\x57\x28\x9b\xcc\x28\x39\xd4\x88\xa3\x5e\x06\x3d\x0f\xbe\x94\xac\x95\xdd\x5c\xaf\x57\xcb\x85\x0d\x88\x59\xf0\x23\xe0\x1d\xe4\xd1\xb4\x77\x41\x95\x8e\x11\x12\x05\x4e\x47\x0c\x14\xa4\xe3\xf4\x65\x37\xf4\xdc\xc8\x6a\x63\x62\x83\xb3\xf1\x72\xc2\xeb\x1d\x02\x54\xcb\xfa\x3e\x01\xce\x2c\x00\xa4\xce\x6c\xe5\x92\xc5\xce\x09\x0d\x85\x45\xa2\x77\xc5\x49\x80\x5c\xc5\xfe\x40\x92\x90\xee\x48\xee\x77\xb3\xb6\xa9\xb1\x9d\x63\xe6\x20\x8a\xa7\x92\x95\x1f\xe4\xd2\xcb\x3d\xaa\x92\x2b\x55\x7a\x97\x90\x0d\x67\xec\xa6\xa1\xd2\xf1\x68\x2d\xd5\x0c\xed\x50\xbd\xa3\x61\xb0\xcf\x4e\xbb\xb8\x48\x1f\x57\x92\x33\xef\x06\xf4\xff\xe1\x7b\xd4\xca\x52\xe2\x4d\x22\x07\xf4\x3e\xbe\x52\x08\xc0\x26\xa0\x65\x56\xfd\x9a\xc2\x9f\x92\xf0\xc9\x73\x77\x43\xc9\x52\x3c\xde\x11\x90\xf2\x80\x95\xcb\x91\x0f\xf0\xa8\x7f\x9a\xa3\xf4\xef\x1f\x22\xd3\x3d\x46\xe8\xfe\x2b\x4a\x8b\xc7\xcf\xf4\x98\x84\x1c\x3f\x14\xa0\xbb\xde\x4e\xf0\x05\x0c\x4b\x1c\xf2\x87\x25\x8f\x7f\x39\xc9\xb1\x7e\x8f\x60\xd8\xbb\xe7\x53\x3a\xfe\x41\x11\x51\xe8\xdc\x1a\x93\x1c\xa4\x84\x9c\xf0\x93\xff\x6f\x4d\x8b\xea\x07\xb1\xa5\x74\x5c\x53\x12\x8c\x7b\x67\xd2\x8f\xb6\x5c\x14\xd6\xb7\xa8\xab\xa3\xad\xa5\xa9\xa1\xae\xc6\xd5\xe1\x28\x29\xb4\xe5\xe5\x66\x65\x66\xa4\x9b\x4d\x86\x64\x6d\x82\x5c\x2a\xe0\x73\x98\x14\xf2\xc4\x7e\xbe\x13\xa9\x3f\x9d\x34\xdb\x6f\x3b\xfe\xf2\xb1\x5a\xcc\x5a\xd2\x33\x44\xda\xcf\x8d\x5d\x33\x5a\xc9\x06\x0b\xba\xbd\x41\x19\xc7\x43\x49\x9d\x5f\x3a\x0a\xa7\xaf\x62\xb3\xf0\xf0\x21\x27\x85\xea\xf4\xba\x72\xe4\x6b\x2c\xc8\x30\x09\xc0\x9f\x75\x46\x50\x37\x26\x81\x9e\xae\x29\x68\xbd\xe7\xf4\xb2\xcf\x10\x8f\x87\xe4\x5a\x73\x1e\xbd\xbd\xd8\x39\xeb\xb3\x92\xec\x93\xbc\x00\x8f\x9f\xfd\xa2\x6d\x2d\xd7\xcc\x46\x09\x8d\x21\xa9\xcf\x56\x00\x96\x7a\x1e\x0a\x5c\xa3\x5d\xa1\x23\x49\x02\xe4\x17\xd6\xb8\x1f\xc3\xe1\x61\xce\xa0\x8d\xd5\xfd\x64\xc2\x46\xf0\x08\x59\xfb\x85\x97\xff\x39\x9c\x9e\xb0\x3c\x32\x60\xa3\x0b\xd3\xf8\x39\x37\x4c\x52\xb1\xbb\xd3\x4d\xca\x2e\x0a\xfd\x40\x1a\xcd\x88\x03\x71\x7d\xf7\xb4\x3e\xff\x9c\xd0\xcb\x08\x54\xc5\x3b\x8b\x85\xd4\xbe\x61\xa4\x49\xfa\xbe\xad\x13\x8c\xb4\x0b\xcd\xf8\xd9\xa2\xaf\x17\xe8\xa7\x25\x3f\x28\x68\x8b\xd5\x7f\xd5\x55\x51\x9f\xd4\xc0\xf4\xb1\x04\xaa\x90\x16\x1b\x5b\x40\x91\xfd\xf8\xb6\x83\x0f\x08\x93\xb0\x0a\x65\xf1\x4b\x27\xae\x1d\x58\xa3\x2f\x2d\xb1\x26\xaa\x0b\x9f\x9e\xe3\xa7\x6a\xac\x45\x29\x5a\xe6\xf5\x67\x04\x57\x56\x6f\xf0\x53\xc7\x6c\xfe\xb4\xfb\xc0\xbb\xa8\xd5\x5b\x59\x15\xc7\x89\x52\xed\xfa\xa8\xc0\x37\x39\x91\x59\x26\xe0\x1d\xf3\x78\x73\xb6\x12\xd1\xd8\xbf\xea\x8d\xf0\x6d\xc7\xd4\x33\x23\x0e\x69\xae\x7f\x42\x8e\x2d\x56\x2f\x11\xef\x35\x35\x9e\x6d\xba\x8f\x4e\x71\xc0\x89\x24\xdf\x59\x30\x5e\xd2\x08\x63\x84\x8d\xa8\xac\xc5\x80\x56\x3e\x51\xf5\x36\x8c\xdf\xa7\x3f\xa0\x59\xf3\x1f\x83\xff\xc0\x58\x47\x16\xbf\x93\x8c\x58\xb4\x99\x2d\x1d\x59\x12\x98\xd9\xc4\x1b\x2e\x95\x8f\x59\x40\x46\x86\xe2\x78\x2e\x31\x82\xdf\x29\xf9\xc2\x91\x96\x0f\x88\xb8\x0f\x6e\xdd\x95\xd4\xf1\xec\x6d\x8f\x8c\x2f\x97\x14\x88\xf0\x72\x5f\x38\xea\xe2\xb9\xad\xf3\xb4\x15\xbe\x21\x8d\x4d\x29\x54\xe2\x30\x4c\x33\x2d\x85\xae\xfb\x16\x75\x3a\xad\x75\x8f\x76\xd3\xa1\xd4\xbf\xe8\xb7\xcb\x1e\x7f\xfa\xfc\xe6\xe9\xc5\xbe\xba\x30\xc6\x25\xf4\x74\xa4\x9b\x3a\x8d\x42\xe2\x41\x48\x4d\xef\xd5\xc9\xa7\xd6\xc1\x0d\x98\xed\x4a\x75\xf4\xaa\x39\x4b\x0e\x31\x43\xe3\xe9\x09\x18\x44\x70\xe6\xa0\x91\x82\x3f\xf7\xe5\xf9\x6e\x59\x3a\xee\x57\xfe\xf0\xeb\xde\x26\x7c\x40\x39\xb9\xb8\x9b\x2e\x4e\x3d\xc1\x69\x2b\x73\x22\x10\xb4\x43\x52\x80\xe8\xd9\x22\xae\x33\x91\xfd\xf0\xec\x3b\xf4\xa9\x66\x82\x56\x36\x8e\x2d\xdb\xe0\xe5\x95\xc5\x44\x31\x6f\xe7\xa1\x53\xc8\x47\xad\xe5\xa8\x40\x58\x0d\xb1\x61\x47\x30\x33\x75\xdc\x52\x5e\x02\xb6\xb5\x55\xe0\x0a\x78\x7b\x04\xf1\xe1\x10\xd6\x34\x45\x1e\xad\x2f\x61\x07\x8e\x41\xa4\xa7\x3d\x4b\x1b\xee\x76\x22\x36\x50\xc1\xfd\x65\x6c\x1f\x90\x65\xdf\x16\x76\x8d\xd4\xdd\x74\xac\x2a\x34\x68\xd6\x1e\x25\xd7\x43\xf3\x03\x24\xfa\x04\x7c\xe6\x80\x41\xdf\x05\xb9\x11\x1e\x7b\xaa\x0d\x2e\xcc\xb5\xa9\x1d\x8e\x79\x70\x23\x02\x5b\x5f\x0b\x1e\x0c\x95\x12\x59\x1f\x49\x4b\x98\xdd\xbb\xee\xa8\x68\xb4\x8e\x5d\x21\x10\xfd\x2a\x10\x22\x47\x26\x41\xa1\xe3\xb1\x52\x82\x40\x77\x40\x94\xdb\x8d\x31\x36\xdd\x74\x93\x06\x03\x12\x3f\x04\xba\x33\xbb\xd3\xba\xb3\xf4\x6c\x51\xc2\xb3\x88\xe9\x21\x43\x3d\x9c\x6a\x30\xbc\x7d\xca\x50\xb4\xaa\x63\xcd\x63\xad\xa3\x6d\x34\xec\xfc\xe9\x58\x3c\xd9\x40\x88\x75\x6a\x3a\x51\xc3\x5a\xe0\xe0\x7a\x16\x54\xe6\x7f\xd0\x5c\x40\x0c\x63\x50\x27\x82\xb9\xc3\xae\xa9\x28\x80\x66\xb4\x82\x76\x8f\x9e\x1f\x31\x54\x8a\xeb\xae\xeb\xb0\x12\x16\xfd\x0e\xc8\x27\x44\x20\x59\x5b\x0a\x10\x54\x44\xa0\x8a\x0a\xe9\x30\x94\x64\x01\x32\x9b\x16\x82\x48\xbd\x37\xa5\x65\x8f\x0a\xbd\x5d\xe0\xfc\x01\xe8\x55\x5c\x3d\x5e\xe1\xd1\x28\x76\x1d\x5f\x49\x81\x0a\x35\xba\x27\x0c\x0a\x76\x42\x82\xfd\x81\xac\x01\x38\x1e\x6f\x4b\xd4\x0c\x25\x00\x53\x0a\xf6\xf0\x10\x4a\x59\x7b\xb8\x89\xf5\xbd\x11\x64\xca\x04\x6a\xa1\x3a\x99\xbb\x59\x3d\xdd\x16\x57\x8a\x16\x9a\x99\xb0\xe6\x50\xc2\x4a\x21\x5f\x4a\x8a\x59\xbf\xb7\x6d\xb3\x21\x08\xd3\x9c\xf2\xad\xcb\x46\xab\xb2\x74\xaf\x8b\xf1\xc5\x3e\xdf\x1d\x79\x13\x06\x09\x45\x43\x21\xa6\x62\x56\x28\x00\x83\x82\xa7\x70\xd1\xe7\x79\xab\x3e\x1f\xca\x22\x10\x72\xc6\x27\xf2\x91\x64\xb7\x50\x54\xdc\xc8\xbf\x4f\x9f\xb2\x81\xc4\x34\x76\xf4\xce\xed\x91\x58\x5b\x40\x52\x16\x01\x71\x79\x14\x80\x40\xf4\xd6\x48\x3b\x1a\x63\xfa\x06\x15\x88\x63\x59\xfc\x0e\x57\xe9\xcf\x9f\xa5\x67\xdd\x66\x5d\xf0\xe6\x76\x96\xca\x9c\x57\x1a\xc3\x40\x6a\x3b\x0c\x26\xa4\x4d\xad\x95\x48\xed\xa1\x7b\xec\x28\xa2\x7e\x96\xaa\x1e\x58\x42\x2e\x37\x48\xa4\x05\xef\x35\x36\x47\x0d\xa3\x35\x48\x20\x9d\xdf\x9f\x75\x1d\x36\x63\xb2\x91\x95\x67\x11\x0f\x0d\x81\xbe\xaa\x66\xf3\xb9\xe2\xd1\x21\xda\x42\xb7\x4d\x33\x19\x9f\x88\x96\x12\x35\x6b\x9f\x95\xb3\x45\xa5\x12\xd3\xc6\xb8\x47\x6e\xf0\x2b\x0e\x61\xb5\xa2\x1e\xbb\x64\xf2\xb5\xa8\xe3\xd4\xe8\xa9\xc9\xd2\x03\x13\x1a\xfb\x9c\xae\xae\x1d\x63\xd7\x5b\x09\x3b\x0f\x63\x65\xd5\x06\x62\xed\x4f\xc9\x35\xb1\xf1\xa7\xfc\x2f\x09\xeb\xee\x60\x24\x18\x6d\x59\xd5\x87\xc5\xba\x30\xe9\xfe\x10\x22\x54\xb0\xb4\xac\x3c\x06\xae\xdd\x31\xa9\x03\x93\xfa\x1c\xb4\x09\xf8\xc5\x11\xb0\xa4\x62\x50\x63\x59\x96\x00\xe9\x20\x5d\xcd\x67\xb0\x2c\x42\x20\xbb\x8e\x9f\x6d\x75\xd3\xdb\x43\xba\xea\x00\xda\xe3\xab\x5a\xdd\x43\x48\x9d\x3e\x76\x0c\xc5\x5d\x43\x8b\xb0\x74\xbb\xbe\x34\x52\x5d\xb6\xed\x3a\x90\x8e\x19\xfd\xb3\x3a\x73\x6c\x11\x37\x3a\x6c\xd2\xad\xcd\x97\xeb\x60\x04\x4c\x15\x0f\x1e\x59\x61\x00\x8a\x9d\x2b\x66\x8c\xe1\x85\x08\x53\xc9\xd8\x36\xfd\xa4\x0e\x6f\x88\xc2\x1d\xec\x68\x48\x4c\xfd\x5a\xb8\x2a\xd6\x20\xbb\x30\x32\xb6\x6a\x68\x86\x1f\xf3\x88\x9b\x62\x57\x64\xe8\x91\xcd\x80\x19\x08\x09\x41\x83\x7b\xa6\xe5\x15\x70\x57\x75\xa8\xdd\xfd\x70\x1b\xd4\x42\x43\xda\x98\x96\x64\x09\x6d\x56\x8c\x41\x1b\x8d\x35\x1f\x65\x64\xd7\x34\x91\x45\x6b\x6c\xbb\x36\x0b\x8e\x22\xb8\xc6\x9f\x6d\x28\xda\x0f\x28\x79\x14\x1d\x0e\x5a\xc7\x9a\x46\x4e\x9f\x8e\x45\x99\x27\xc4\x66\x3d\xd0\x7e\xa0\xd2\xf0\xa3\xe1\xf6\x5e\x40\xd1\x32\xc5\x64\x20\x4b\x81\x1d\x58\xd8\xb4\xfb\x41\x5a\x6d\x8f\x8e\x16\x80\xd6\x37\x4e\x7c\x3a\x05\x8a\x11\x20\x36\x54\x1b\x19\x56\xd8\xc8\x01\x33\xa6\x8d\x6c\x1a\xce\x16\x2d\xa4\xa6\x87\x06\xb5\x55\x82\xd4\x03\xe9\x8a\x71\x16\x28\xc6\x9c\xb2\xf2\x72\x0e\xc2\xb1\x4d\xe2\x80\x66\x79\xd5\x91\x4d\x90\x41\x81\x32\x13\x82\x0d\x1e\xab\x1c\x32\x1c\xc5\xea\x88\x3a\x64\x5f\x12\x1c\x0d\x2e\xa4\x43\x93\x34\x63\x8d\xd1\x24\x4f\xfa\x60\x33\xb0\xfe\x26\x17\x40\xbc\xdd\xfd\x3c\x80\xa2\xd7\x9d\xdc\xac\xac\x9a\x51\xb9\x74\xd5\x72\x8c\x15\xb4\xf8\x9f\x03\x15\x5e\x29\x9b\x32\x14\x0d\x0f\x81\x7d\x95\xab\x59\xa5\xea\x16\xde\xa8\xa1\xad\x57\xd1\x6f\x56\xe6\x3f\x96\x56\x15\x9e\xf9\xd8\x28\xad\xdd\x46\x3b\x0c\x29\xb5\xef\x20\xc6\xd5\x55\x40\x1f\xc1\xa9\xd6\x03\x3d\x86\x4f\xdd\x15\xbe\x27\xb4\xd7\xb6\xb9\xe3\x2e\x37\xa1\x05\xaa\x47\x2c\x02\x21\xe4\x66\xbb\x67\xc7\x29\x43\x51\xdb\x99\x56\xeb\x10\x52\xbb\x3f\x46\xfe\x82\x4f\xf1\xbb\xcd\xb0\x68\xb4\x0b\x16\x77\xc9\x85\x58\x8b\x01\xfe\xfe\x0e\x14\x81\x93\xa5\x4e\x0e\xd0\x8a\xdc\xbc\x83\x0a\xfa\x21\x4c\xb0\x8d\x6d\xe5\x4b\xc6\x7d\x3f\xcf\xf8\xef\xd7\x1e\x0b\x98\xbc\xde\xd0\xde\x89\x1c\xb7\x8a\x7a\x38\x71\xb0\xde\x50\xe0\x44\xec\x42\x75\xd4\x0d\x2b\x4a\xd5\xd1\xe7\x7a\x3a\x97\x70\x01\x8f\x11\x3b\x69\x98\x6d\xd2\xb0\x51\xec\x45\x86\xc5\x29\x89\x78\x09\xf1\xc4\xb1\x08\x54\xcf\x82\x95\x52\x1c\xa3\x84\x70\xe8\x09\xc7\xee\xcc\x41\xf3\x58\x29\x9e\x32\x96\x20\xe6\x2e\xc2\xca\x31\x90\xbb\xb1\x55\xb0\x5d\x63\x10\xd3\x0b\xa9\xc2\x29\x6c\x80\x25\x24\xb2\x0b\x1e\x2d\xa5\x41\xe9\x3f\x6e\x07\xbd\xe0\xc9\x13\xe9\x48\x39\x96\xfb\x7b\x75\x2c\xba\x86\x18\x6c\x8d\x58\x3b\xc6\x71\x67\x2a\x4e\xce\x2c\x7a\xa3\x28\x62\x51\x61\xd6\xad\x93\xca\x90\x48\x18\x03\x9b\x7c\x32\xa2\x68\xac\x14\xce\x31\xf6\x1f\xe9\x2f\x10\x48\x8b\xf3\x99\xfe\x2b\x08\x12\x87\xd7\xa4\x4d\x77\x20\x60\x9a\xef\x56\xaf\x65\x89\x9d\x6f\x70\x67\x14\x41\xce\x3d\x74\x86\x3c\x60\xad\xa3\x7d\x57\x9b\x8c\xc4\x82\xf5\xb6\xa5\x43\x2c\xfd\x30\xdd\xf1\xa8\xdb\xc5\xad\xff\x3d\xeb\xb6\xd1\x7f\x07\x15\xe3\x06\x6a\x8d\xf6\x55\x91\x78\xc9\x96\x1e\x68\x97\x03\xc7\xd8\x0c\x45\x51\x0d\x8c\xbc\x76\x14\x7b\x77\xc8\xe0\xff\x0f\x1e\xd0\x95\x25\x85\xce\xb6\xce\x58\x34\xde\x55\xbd\xb9\x85\x4d\xc9\xf4\x56\x40\x5f\xae\x87\xac\xc6\x63\x9c\x78\x6c\x83\x3f\x11\x4c\x8f\xfe\xa2\x6a\x8f\x12\xee\xea\x3e\x16\x1d\xe2\x7d\xf2\x18\x8a\xee\x96\xbb\xa0\xc2\xe3\xd5\x24\x45\x9a\xfb\x4c\xf6\xb8\x55\x7a\xed\x64\xc5\xd7\x3d\x96\x7b\xc2\x09\x0b\x0a\x94\x72\x70\x1b\x24\x6d\x0c\xb7\x39\x42\xe2\x7a\x8f\xff\x1a\xa2\xc1\xc6\x04\xff\x61\x4b\x7a\xa9\x56\x62\x23\xb4\xa6\xaf\x8d\x39\xb2\xe5\xea\x4a\xea\x46\x82\x92\x6e\xec\x71\xad\x8a\x3c\x32\xe1\xc1\x78\xd3\x73\x1e\xc5\xfc\x53\xca\x9d\x5e\x90\xca\x52\xfd\x8a\x06\xfd\x04\xf9\x6f\x38\xfb\x37\xca\x5c\x33\x1a\x83\x6f\x39\x2d\x78\x1d\x4e\xa2\x55\x7e\x33\x54\xfb\x7d\xd9\xb6\xa0\x0a\x3b\x8b\x25\x55\x4c\x03\x03\x48\xc1\x10\x88\xd3\xd2\x38\x70\xf0\xe2\x89\xf8\xd5\xde\xb5\xa6\x03\xa2\x52\x4b\x04\x0f\xb0\x7b\x58\x6f\xef\xb1\x2a\x11\xe4\xab\x44\xdb\x46\x42\x29\xc4\x73\xac\x3d\xa1\xb0\xc3\xa6\xd7\x02\xec\xdd\x89\x7e\x04\x3b\xdb\x9c\xb9\x36\x70\xd8\x30\x6b\xaf\x89\x14\x4c\x10\x9f\xc3\x39\x19\xde\x97\xd5\x15\xcc\xa1\x30\xb0\x8d\x56\xf2\x54\xe5\x19\x3b\x4a\x37\x65\x9d\x82\x99\x33\xab\xe1\xe1\x71\xea\xbe\xa4\x32\xaf\x1d\x25\xe4\x50\xda\xe7\x31\x26\x0e\x2b\xfe\x7e\x3b\x64\x8b\xb7\xe7\x60\x19\x42\xa8\xd9\xd1\xde\x89\xf9\x37\xb5\x60\x7f\xef\x82\x1b\x02\x00\x28\x55\x39\x70\xee\x3b\xc4\xfa\x9a\xec\x1f\xfe\xd3\x6a\xe0\xe3\xa5\xef\x7f\x0e\xef\x07\x1e\xf2\xe3\x3a\xb6\xfa\xfd\xca\x70\x6f\xf2\xec\x2d\x05\x02\xea\x7f\x55\xd0\xdc\x00\xf8\xef\xdf\x6a\x6e\xd5\xda\x08\x4f\x3d\xff\xd3\xfb\x4d\x01\x44\x3c\xcf\xf6\xa6\xe3\xd7\xdb\xdd\x45\xb4\x89\x17\x4b\x35\xc0\x35\x91\xb8\x16\xc2\xd6\xd8\xc4\x1b\xdd\x4a\x7b\x6e\x09\x80\xce\xda\x29\xe2\x7d\x45\x27\x47\xe0\x61\x82\x4c\x29\x59\x70\xc9\x3b\x63\x16\x77\x6d\xb5\x71\x26\xd9\xcf\x34\x91\x04\x53\x8b\x8c\x2a\xfa\x19\x44\x43\x05\x57\x2c\x28\x3b\x24\x2f\x72\xca\x6b\x50\x51\x8f\x8e\x20\x5c\x84\x12\x48\x48\x0e\xcf\xaf\xda\xe5\xdb\x38\xf8\x71\x87\x37\x20\x6e\xbf\xc5\xfd\x42\xb2\xb6\x2b\xda\x2d\xd4\xc6\xa7\x3c\x8e\x96\x7c\xd3\x96\x26\x87\x35\xf7\xd6\x6c\xeb\xa5\xb3\x25\xe4\x29\x90\x11\x72\xc0\xfc\xbd\x4c\x9c\x3d\xf1\x35\x8f\x38\x5f\x59\xab\x86\xed\xea\x4d\x42\xe4\xf9\x80\x5a\xaa\x5c\x66\xad\x9d\x13\xef\x4c\xd6\xa6\xc5\x2a\xa9\x77\x99\x00\xfd\xe8\xc7\xe1\xad\xcf\xc0\xc4\xff\xdd\x20\x6e\x1b\x71\x8a\x7c\xd5\xf3\x0e\x8f\x29\x9e\xbf\x05\x6b\x77\x3a\x3c\x84\x13\x91\x16\x66\x88\x23\xaa\x9f\xab\x49\x3f\xad\xba\xf4\x32\xd5\x43\xdb\xd6\xd8\x9e\xf9\x2d\xad\x03\xef\x31\x90\x92\x1b\xf5\xb6\x3d\x1b\x37\xb5\xfe\x2e\x35\x24\x86\xf4\x37\xd7\x83\x57\x23\xde\x43\x7a\xf3\x36\xf1\xdf\x15\xe0\x7f\x35\x91\xea\x35\x2a\xf1\x9f\x2f\x83\xc1\x3e\xaf\x96\x07\x38\x82\xe6\x96\x03\x54\x2f\x4d\xc7\x65\x81\xc6\xcc\xb5\xae\x2d\xdb\x63\xc6\xc8\xb1\xc1\x2b\x41\x2c\xb3\x62\xd8\x6d\xba\xd4\x68\x51\xc6\x81\x4b\x09\x97\x71\xba\x66\x2c\xf1\x91\xfb\xca\x14\xab\xd0\x1b\xed\xf1\xc1\x7a\xf1\x60\xe2\xf3\x43\xa9\x9c\xc8\xbb\xa1\xc4\x84\x8a\x0b\xb4\xf1\xf5\x21\x61\x96\x28\x3e\xdd\x3e\xa0\xcd\xee\x51\x11\x61\x91\x3e\x1b\xd3\x7e\xa1\xe6\xd0\x25\x9e\xac\xf4\xd0\x54\x26\x1e\x61\x56\x1b\x9e\x69\x81\x78\x38\x2d\xcf\x4d\x07\x78\x39\x3e\xbb\x9b\x1e\xfe\x0c\xf2\x75\x0a\x6c\x5b\xaf\x6b\xdb\x11\x55\x5e\xc6\xd9\x12\x3c\x52\xfc\xe1\x9a\xce\x99\x59\x3c\x8f\xbc\x5c\xbf\x7f\x28\x17\x2f\x53\x3c\x38\x25\x2b\xc7\x55\xe2\x1d\x97\xf0\x06\xf0\x1b\x0d\xf8\xf9\x33\x6e\xfd\x72\x7d\xf8\x11\xc0\x57\x75\xe0\xf3\x8e\xaf\x82\xdb\x7d\xb7\x9d\xd1\xa6\x31\xba\x6b\xb6\xa4\x8f\x2c\xa3\xec\xfb\x47\x5a\xf1\xd8\xe2\xb9\x59\xf7\xef\x46\xf1\x4a\xc4\x2b\x17\x9f\x37\x9a\x9d\xe3\xb4\xd3\x62\xa5\xb6\x05\x66\x31\xe2\x09\x65\x9a\x3c\xda\xe0\xff\x50\x24\xde\x41\xf1\x2e\xf7\x8d\x9a\x99\x40\x3c\x8e\xc5\x36\xde\xb2\xae\x1b\x09\x90\x62\xf9\x68\x52\x9c\x14\x31\x0f\x5b\xcf\xc1\x53\x3c\x31\x93\xe3\xe9\xbf\xd7\x88\xdb\x4b\xbc\x9f\x3a\xbc\x0c\x59\x77\x6d\x21\x8a\xd0\x42\x45\xd3\x91\x5b\x31\xda\x82\x75\xd5\x5a\xee\x2f\x07\xc6\x65\xb0\x85\xf2\x6b\xcb\xb8\xeb\xd8\xc1\x18\x72\x7c\xbd\xa2\x7e\xbd\x4f\xbc\x45\xf1\x96\xc4\xab\x83\x73\x65\xab\xb1\x63\xeb\x34\x30\x86\x31\x55\x27\x3e\xdf\x62\x61\x3d\xef\xcf\xf2\x75\xe5\x9b\x38\x07\x4e\xdb\xa9\x91\xdb\x3b\xef\x1d\xad\xd1\xbe\x6e\xcc\x94\x69\xff\xac\xa4\x56\x61\xe3\xfd\x90\x21\x1e\x49\xbc\x91\x3d\x35\xfb\xb1\xc3\x1b\x2e\x3b\x32\xea\x72\xdc\x15\xf7\xef\x53\xe2\x9d\x15\xe7\x40\x1c\xdf\xd2\x58\xa1\x2e\xba\x31\xd5\xb0\x84\x13\xe6\x3c\xe6\x0b\x91\xfc\x22\x4d\x57\xcf\xdc\x5f\x74\x37\x34\xab\xcf\x23\x32\x66\xfb\xc5\x83\xf8\x29\x24\x38\x9f\x2f\x17\xdc\x0f\x4a\xf5\xe4\xfe\x55\x78\x3f\xc0\x3e\x7d\x26\x9d\xb1\xeb\xa7\xde\x23\xee\xb0\x83\x06\x43\x99\x1d\x1d\x5c\xe9\x4a\xda\x91\x55\x5c\xc9\x65\xb8\x27\xbe\x0a\x9d\xbd\x98\x70\xa5\x9b\x69\x1f\x56\x71\xa5\xa1\x45\x8c\xc1\xbc\xd5\xa8\xac\xd7\x57\xe1\x69\xd5\x29\xbe\xb7\xfd\x12\xbe\x89\x8a\xc6\x75\xf9\x55\xb0\x42\xb6\x57\x34\x7c\x91\x16\x3f\x2d\x05\xee\xb3\x52\xeb\x29\xe0\x50\x79\x23\xac\xcb\xba\x89\xf9\xb3\x89\xb7\x86\x76\x56\x8f\x60\x3f\x2b\xac\x3f\x25\x02\x0b\x4a\xcf\xba\xde\x9d\x11\x87\x75\x22\xf9\x26\x70\x3b\xf1\xbe\xfd\x75\xcc\x47\x35\x44\x06\x72\x18\x3e\xae\xe1\x19\xd5\xec\xf5\x6a\x2c\x08\xf7\x43\x60\x6a\x15\x9f\x73\x57\xd3\xff\xa0\xbe\x88\xd2\x5e\xd3\xb8\xd2\x9d\xb4\x02\xaa\xb8\xd2\xc4\x7e\x24\xde\x0e\xf6\x93\xf7\x09\x5c\xc9\xb8\x5f\x57\xff\xea\x6a\xea\xd0\xa5\x53\x1d\x69\x9d\xb9\xdc\xab\x9e\x92\x9c\x83\x4c\xc0\x70\x2d\xc3\xb5\xb6\x41\x6b\xc1\x27\xeb\xdc\xc6\xd0\xe8\x1c\x43\x53\x1e\x51\x97\xeb\x3c\x69\xd2\x29\x6d\xff\x58\xd2\xf9\x1c\xef\xab\x67\x73\x1a\xab\x21\xe5\xb8\x4b\xb6\xfb\xd5\x5a\x2e\x5d\x9a\x8a\xd5\x13\x53\x01\x67\xca\x6b\x8d\xc6\xf5\xb3\xb3\xd4\xbf\x32\x2f\x8b\xc3\xfd\x0d\xd2\xec\xac\xdd\xab\x40\x92\x0e\x59\xca\xc2\x22\xd3\xe2\x59\x3e\xe1\xf0\x3c\xb5\xd4\x93\xea\xf2\x76\xfb\xdf\x4f\x67\xb1\x3c\xee\xf6\x72\x1f\xe3\xe3\x6a\x1c\xfa\xba\xf9\xbb\xce\x54\xbb\x66\xad\x3c\x98\xef\xd8\xbf\x8d\xa4\x87\x22\xd7\xd2\xc9\xf1\x95\x9b\x64\xc8\xbd\x9e\xf3\x20\xbe\x0a\xea\x6a\x3f\x51\xe4\xaa\x2a\xe1\x9e\x0a\x5e\x39\x0b\x73\xc4\x5d\x5f\x79\x7d\x84\x7d\xda\x38\xf2\xf8\xb5\xd1\x92\x78\x4f\x14\x78\xf2\xf6\x1d\x6b\x23\x9d\x61\x29\x1a\x56\x76\x83\xfe\x2a\x31\x41\x25\xf1\xa6\x59\x9c\x6c\x34\xba\x1f\x23\xf8\x59\xd1\xe6\xbc\xbc\x1a\xbc\x58\x3a\x31\x71\x35\xab\xdb\x9c\xde\xd0\xe8\x95\x1a\xcf\x15\xed\x67\xa5\x9a\xf3\x28\x34\xd8\x50\x92\xfe\xde\xb2\xaa\xe8\xb9\x1e\xd9\xdf\x73\x56\x45\xae\xf5\xe9\x40\x56\x9a\xed\x22\xf3\x01\x75\xec\x5c\xd3\x82\xfa\xb1\x71\xb0\x31\xb1\x48\x4f\x57\xe6\x0b\xe9\xb4\x55\x3b\x43\x6a\x5e\x5d\xfc\x3d\xec\xa1\x19\xc7\x5b\x4a\xc0\x9d\x7c\xe9\x0a\xad\xfd\xc5\xda\x28\x93\x21\xa6\x05\x8c\xd0\x85\x29\x05\xb6\x02\xe4\x39\x88\xeb\x16\x4d\x4c\x43\x3a\x12\x6f\x57\xac\x7c\xe0\xdb\xf9\x97\xff\x6f\x39\x67\x16\x64\x6f\x77\xe8\xa8\xe0\x9c\x00\x3e\xdb\x91\xe2\xcf\x04\xaf\xf4\x52\x1d\xbe\x32\x41\xb7\x75\xaf\x4c\x54\xeb\xdc\x2b\x93\x9c\xd2\xfa\xca\x64\xd5\xc1\xbd\x32\xc5\x7a\xd8\x23\xf2\x99\x29\xc7\x2b\x33\x14\x66\xc9\x2b\x33\x35\x67\xcb\x2b\xb3\x5c\x4a\xfb\xf7\x3e\xdb\xa9\x66\x94\x9b\x74\x19\x0a\x65\x49\x94\x40\x20\x07\x83\x0d\x2b\xd6\xec\xdf\x6c\x2f\xe9\xbf\x8b\x09\x52\xac\x0a\xe5\xde\xd2\xc4\xb3\x20\x9b\x23\x85\x0e\x30\xfc\xdf\xc0\xb3\x83\xbd\x4a\xf6\x65\x67\xc9\x7b\x5d\xca\x67\xe1\x7f\xe9\xe2\x20\xe6\xd8\x0c\x7e\x90\xd3\x20\xba\x6e\x4c\xc1\x67\x6e\x84\x55\x67\xb0\x84\xf8\x28\x19\x0c\x26\x1e\xd2\x35\x9b\x2d\x31\x0b\x0a\x64\x8b\xcf\xf0\x7b\x7b\x27\x8e\xec\x39\xab\x82\x5b\xce\xa1\xe9\xd5\x78\x72\xd9\x6c\x81\xc4\x4f\xa0\xfc\x16\x23\x79\xe7\x5b\xb0\x65\xdc\x8f\x7d\xda\x67\xee\x4b\x0c\x4f\x34\x82\xf3\xf8\xe5\xac\x4f\x32\x9f\xe4\xd4\x58\xcc\x92\x8c\x81\xb0\xd5\xa6\x06\x2d\x12\x8f\xac\x18\x3f\x9d\xca\x8d\x60\x38\x72\xf6\xa7\x6c\x22\x9e\x36\xd2\x19\xf4\x82\xf1\x80\xa2\xaf\x44\xf1\x4f\x9e\x36\x80\x11\x36\x43\xee\x0d\x9d\x79\x96\x0c\x2e\x18\xa0\xcd\x91\x01\x2d\x3e\xf1\xa8\x17\xcd\x7c\x58\x08\xe3\x2d\xcf\x91\x81\xc5\xf2\x77\x34\x7f\xbd\x05\x1e\x8f\x6c\x41\x76\x96\x84\x42\x30\x85\x4f\xce\x7e\xd7\xce\x97\x37\x37\x1e\xfc\x05\xbd\x6a\xe6\x44\xbf\xd0\x7b\xfc\x35\x56\x12\xfe\xff\x31\x77\x8b\x06\x69\xe0\x25\xf4\x5b\x89\xe7\xb8\x52\x65\xee\xab\xf2\x41\xb9\x0a\xdb\x1d\x74\xd6\x09\xdb\x42\x80\xdb\x2a\xcd\xc0\x67\x10\x12\xd9\x12\x22\xfc\x36\x0d\x87\x9c\xf3\x15\xbe\xc0\x37\x38\x66\x97\x29\xd8\x6d\xdc\x56\x47\x7c\x72\xcb\x51\x13\xf1\x85\x5f\x01\x21\x05\x44\x81\xff\x46\x12\x80\x14\xe1\xad\xcb\x51\x82\xc7\xbf\x49\xf6\x5d\x57\x45\x6a\x48\x5d\x78\x5d\x86\xf4\xea\x23\x31\xa8\xdb\x40\x22\x90\xcc\x3f\x25\xe0\x10\x90\x50\xd0\x30\xb0\x70\xf0\x08\x88\x48\x22\x91\x3b\x1c\x7d\x54\x34\x2e\xf3\x0e\x98\x62\xc4\x8a\xeb\x84\xb7\xff\x76\x19\x99\x27\xe3\x95\xec\x62\x86\x40\xc4\xfc\x6b\x84\x44\xa6\x50\x69\x74\x06\x93\xc5\xe6\x70\x79\x7c\x81\x50\x24\x96\x48\x65\x72\x85\x92\xb2\x8a\xaa\x9a\xba\x86\xa6\x96\xb6\x8e\xee\xea\x60\x60\x68\x64\x6c\x42\x47\xde\x79\x6e\x61\x69\x65\x6d\x63\xdb\x9e\x0e\x8e\x4e\xce\x2e\xae\x6e\xee\x50\xec\xef\x0b\x28\x52\xac\x44\xa9\x32\xe5\x36\xdb\x62\xab\x6d\xb6\xdb\x41\xa8\x4f\xfe\x0f\xc4\x2e\xbb\xed\x51\x69\xaf\x7d\xaa\x88\x54\xab\x51\x6b\xbf\x03\x1c\xef\xaa\x7d\xaa\xba\xe1\xa6\x5b\x6e\xbb\xe3\xae\x7b\xee\x7b\xe0\xa1\x47\x00\x20\x08\x0c\x81\xc2\xe0\x08\x24\x0a\x8d\xc1\xe2\x32\x98\x3d\xcf\xe1\xaa\x08\x59\x6c\x75\x3d\x45\xe3\x5e\x26\x6a\x4a\xa4\xa2\x5e\x91\x29\x54\x1a\x9d\xc1\x6c\x51\x2f\x9b\xc3\xe5\x75\x71\x73\xf5\x16\x6d\x07\xc2\x5a\x3b\x38\xf2\x1b\x14\x08\x45\x62\x23\x77\x8f\x6c\x8d\x42\x41\xfd\x10\x7a\x83\xd1\xd9\xc5\xd5\xc5\xde\x2c\xcb\x4e\x0d\xb5\xc3\x42\xed\x92\x50\x1f\xa3\x5d\x87\x4e\x5d\x7a\x66\x19\x0f\xd9\x92\x88\xda\xe1\xa1\xfe\x2d\x9d\xe5\x45\xc9\xb8\xa8\xea\xa6\xed\x66\xf3\xc5\x72\xb5\x7e\x96\xbd\xa4\x68\x7f\x25\x36\xce\xab\x16\x37\x1d\x15\xa7\x28\xa1\xe7\xaa\x0c\x97\xdc\xf1\xbe\x7b\xee\x7b\xc0\xe2\x8e\x0f\x7c\xe8\x98\x04\xf7\x7d\xe4\x63\x99\x5e\xc9\x56\xaa\x5c\xa5\x0a\x55\x49\x4b\xb5\x6a\x1e\xa8\x4e\x8d\x1a\x34\x69\xd6\xa2\xed\xad\xb6\x3b\x75\xcc\x2f\xe4\x74\xdd\x8a\xc8\x9c\x9d\x49\xc9\x29\xa9\x69\xfe\xfd\x6a\x19\xa5\xb2\xef\x58\xac\xd6\xea\x8d\x66\xab\xdd\xe9\xf6\xc0\xd5\xef\xa6\xbf\x3d\xdb\xe3\x71\xb9\xb4\xd5\x37\x7d\x78\x74\x7c\x72\x7a\x76\x7e\x71\x79\x75\x7d\x23\xad\xde\x6d\xff\xf0\xf8\xf4\xfc\x82\xaf\xfe\xe4\x8b\x71\xb5\xde\xec\xee\xf9\xbd\x7f\xba\xfa\x07\x46\x7d\x3d\x1e\x1d\x9f\x9c\x9e\x9d\x5f\x5c\x5e\x5d\xdf\xdc\xde\xdd\x3f\x98\xac\x31\x66\xfc\x29\xee\xbe\x33\xbd\xf3\x63\x16\xe7\x2e\x58\x1c\xb8\xe2\x3c\x8a\xa7\x54\x71\x0e\x3a\xc5\x6d\x04\x8d\xe3\x46\x71\x8d\x02\x8a\x73\x4e\x27\xce\x45\x9a\x38\x57\x5c\xe2\x5c\x47\x89\x73\x4b\x24\xce\x5d\x8e\x38\x0f\x2c\xe2\x3c\x86\x88\xf3\x4c\x21\x4e\x0c\xe2\x20\x10\x57\x3b\xe5\xf5\xae\x5f\xdf\x3f\xbf\x7f\xff\xd2\x6b\x08\x7a\x14\xbf\x3c\x60\xcb\x76\x84\xd7\x4f\xf0\x79\x55\x3f\xb1\x9e\x99\x84\x53\xd8\xf5\x9f\x4a\x51\x2e\xaa\xba\x69\x3b\xcd\x35\xe9\xbb\x70\x78\x74\x7c\x72\x7a\x76\x7e\x71\x69\xb7\xfe\x79\xbb\xbb\x7f\x78\x7c\x7a\x96\x64\x45\xd5\x74\xc3\xb4\x6c\xc7\xf5\xfc\x20\x8c\xe2\x24\xcd\x72\xb5\x35\x28\xad\x73\xd5\x9a\xc9\xfa\xaf\xa9\xd5\xee\x74\x7b\xfd\xc1\x70\x34\x9e\x78\xac\x7f\xcc\x56\xeb\x00\xf0\x07\x0f\xf8\xcd\x76\xb7\x3f\x1c\x4f\xe7\xcb\xf5\x76\x7f\x3c\xa1\xdb\xeb\xfb\xac\x41\x67\x9d\x98\xc8\xac\x3f\x25\xcf\x17\xcb\xd5\x7a\xb3\xdd\xed\x0f\xc7\xd3\xf9\x72\xbd\xdd\x21\x18\x41\x31\x9c\x20\x29\x9a\x61\x39\x5e\x10\x25\x59\x51\x35\xdd\x30\x2d\xdb\x71\x3d\x3f\x08\xa3\x38\x49\xb3\x24\xcd\xf2\xa2\xac\xea\xa6\xed\xfa\x61\x9c\xe6\x65\x05\xb1\xa8\xb1\xce\x6f\xfb\x71\x5e\xf7\xf3\x7e\x82\x6c\xb0\x63\x63\x33\x76\xe6\xf7\xd7\x62\x03\x0d\x1b\x73\xb0\xc1\x94\x0d\xa7\xf2\xfe\x78\xbe\x7c\xd9\xa0\xca\xde\x31\xe8\xef\x44\x44\xc4\x82\x89\xfc\xfa\x0d\x9a\x6c\xe0\x61\xff\x56\x62\x6d\xd6\x61\x5d\xd6\x63\x7d\x36\xe0\x2c\xce\xe6\x1c\xce\xe5\x3c\x6a\xe0\xfb\x26\x38\xb5\xa8\x0d\x22\x71\xde\xef\xf6\xdf\xdf\xbf\x7a\x84\x20\x5c\x4e\x77\x14\xe2\x35\x60\x69\x28\xb8\x2a\x7b\x01\x19\xf0\xf7\x20\xff\xfb\x7e\x13\xc4\x92\xa0\xac\x14\x46\x28\xdb\x58\x95\x6d\x1a\xb8\x6c\x75\xe2\x91\xa5\x4c\xca\xe8\x36\x4a\x11\x7d\x05\xa3\x0b\x7d\x38\xb0\x7f\xd6\x10\x1f\x70\x76\xe5\xfb\xfc\xd7\x08\xdc\x31\x70\x5e\xac\x08\xbd\xed\x9f\xbf\x51\x5a\xa7\x55\xcb\xfc\x0c\x77\x7d\x47\xb8\x43\xc9\x6d\xc1\xc4\x8f\x69\xe3\xc2\xf5\x58\x92\x40\xd9\x4a\x75\xf4\x60\x56\x14\x6e\x98\x90\x60\xb2\x20\xe7\x78\x8e\x89\xa9\xf5\x25\x11\xaf\x55\x7b\x90\x97\x15\x86\x0b\x0d\x67\x9a\x62\xda\x32\x8c\xe7\x48\xd6\xae\xd2\x24\xd2\x1e\x41\xe5\x88\xc6\x1b\x9c\x48\x59\x34\xd5\x5e\x49\x13\x53\x7d\x6e\x2a\x63\x83\xb2\x11\xb1\x95\x64\x4a\x5d\xc3\xb2\x17\x8d\x4b\x64\xbd\x4e\xac\x8f\x5f\xd5\xbc\x71\x83\x6e\x74\x37\x73\xbc\x53\x5f\xa1\xa7\xfb\xaf\xca\xb8\xa9\xfa\x40\x19\x0f\xd6\xe8\xd9\x3e\x04\x88\x48\xe5\xad\xdb\x88\x84\x71\x11\x9c\x12\x13\x82\x71\x21\xd5\xa0\x8d\x8d\x06\x5c\x26\xc1\x84\x71\xa1\x3c\x6d\x52\xba\x42\x10\xc6\x85\x54\x9e\x36\x36\x50\x5a\x4d\x94\x97\xdc\x1a\x00\x31\xa1\x8c\x8b\x04\xc6\xb6\xb5\xb1\xa9\x59\x27\xc1\x84\x46\x38\xe7\x9c\x73\xde\x00\x20\xc2\x84\xb2\x04\xd1\x58\x52\x52\xca\xa6\x40\x75\x34\xb5\x00\x48\x28\xe3\x22\xb5\xfb\x04\x2a\x66\x4c\xe9\xd4\x6c\xb3\x10\x9e\xa9\x67\xd8\x0b\xd1\xd6\x2b\xee\x7d\xfc\x50\x00\x10\x26\x94\x71\x21\xd5\x94\xd4\xc6\xde\xf2\xa6\xf8\x43\x00\x02\x11\x26\x94\x71\x21\x55\xa0\xf6\x53\x35\x1f\x3f\x6b\x45\xa9\x81\x05\xd7\x25\x1d\xe7\xce\x0d\x05\xef\xe2\x74\x99\xe0\xda\x2e\x44\x6f\x99\xcb\x6f\xaa\xfd\x5d\xe3\x09\xa2\x06\x12\xd0\x77\xac\xfd\xe6\x0c\x74\xe1\x66\xd9\xb3\xce\xf7\xc8\xf5\x27\xda\xaf\xaa\x8d\x32\x34\x5c\xad\x2a\x88\xb4\xc5\x16\xfd\x4e\x05\x8f\x87\xaa\xab\xe9\xbe\xc6\xaf\xd8\x53\x6e\x3e\xa9\xe0\x9c\x01\x42\xc0\xd2\x28\xcd\x7c\xff\xf6\xfd\x7b\x5d\x17\xf9\x02\x5e\xf3\xd5\x7e\x50\xf8\xdd\x9a\xc3\x6e\xb6\xc7\xe4\xe5\x7d\x7f\x53\x90\x84\x9e\x9f\x12\xbe\x7c\xcc\xac\xb8\x5d\x07\x1f\x38\xc1\xe3\xad\x30\x9d\xef\x51\xb7\x5e\x77\xbe\x5b\x0d\x9c\x72\x3b\x74\x36\xaf\xbc\xca\x73\x95\x70\x83\x86\x9a\xb1\x4e\xf4\xa9\x02\x03\x4c\x00\xf8\x07\x0b\x6c\x40\x70\xc0\x05\x0f\x7c\x08\x80\x43\x08\x11\xc4\x90\x00\x41\x0a\x19\x5c\xe0\x6a\xdd\xa2\xa3\x2e\xa1\x05\x66\x0e\xaa\xe0\xad\xe8\x60\xb9\x13\x80\x76\x7c\x76\x0b\x3e\xcc\xda\x9a\xbb\x8c\x53\x74\x47\x79\xc6\x4a\x2f\xd8\x4b\x64\x84\x7d\x45\xa0\x9e\x39\x51\x21\x4e\xc9\xf6\xdd\x90\x4f\xf6\xdd\x88\xce\x4f\x01\x84\x47\xae\xef\x87\x31\xec\xf0\xe3\x08\xb9\x79\xcc\xf7\xdd\x8e\xd1\x9e\x3e\x22\x08\xf2\x88\x76\x9d\x0b\xe1\x5a\x17\x10\xbb\x50\xd9\x68\xee\x62\x4b\xa8\x04\xfc\x42\xc0\x48\xf2\xfd\xc5\x5d\xf1\x2a\x94\x12\x85\x46\xe1\x72\x04\xfd\xcf\x4b\xf8\xd4\xfc\x45\xe7\xa9\x79\x27\x52\x3b\x0d\x20\x1b\x4a\x08\xc2\x8d\x88\x4c\x4c\xc3\x16\x5b\x6b\x6a\x28\x3d\x2b\x0f\x87\xa4\x3e\x47\x5f\xb2\x88\x50\x3c\xda\x46\xdc\x83\x4a\xbe\x93\x2e\x0e\xd8\x06\xe8\x2a\xa3\x45\xab\x76\x38\x8a\xbc\xa3\x54\x28\xeb\x5b\x71\xb6\x50\xf2\x71\xcb\x92\xea\x79\x4c\x9c\xc5\x44\xc3\xea\xe0\x82\x70\xf9\x5d\x7d\xd5\x66\x10\x86\xa6\xda\x05\x44\x25\x1b\x71\x1b\x9d\x99\x1d\x46\x67\x71\x48\x1a\xf6\x79\x2f\x69\x44\x6d\x69\x46\xc6\xd2\xa2\xda\xc5\x30\xde\xb8\xe0\xb3\x11\xc3\x3f\x02\x38\x23\x03\xc0\x15\xc7\xc0\xb5\xb7\x2f\x5d\x07\xfb\x82\x7b\x1b\x08\x75\xca\x6a\x66\x80\x7e\xa9\x22\x30\xd5\xc9\x0c\x2b\xb7\x84\x59\xcc\xd5\x61\x66\x80\x2b\x55\x53\x0d\xd4\x4c\x05\xce\x7a\x51\x5d\x23\xc3\x8c\xa0\xfe\x8e\x7f\x2b\x1d\xd1\x37\x27\xe8\x6c\x6c\xd6\x4e\x34\x06\xc5\x44\xcb\x6a\x66\x50\xea\x92\x24\x34\x72\x66\x50\x3e\x92\x8b\x19\x45\x47\xe7\xbc\xb2\x2e\xf3\xae\x30\xbc\x9f\x68\xcf\x17\x13\x3d\x54\x99\xf7\x50\xec\x21\x1a\xc1\x0c\x23\xe5\xb1\x1b\xa9\x61\x33\xd5\x01\x2e\x4d\x56\x60\x4d\x14\x98\xe9\x0f\x37\xc1\xce\xb5\x09\xef\x11\x0d\x57\xb4\xa4\x88\x1b\xf5\xaf\x23\x8f\xbd\x6c\x20\x3d\x27\xe8\xed\xa8\xce\xa6\x3a\xe2\x4b\x8b\x15\x59\x0b\x45\xdd\xa5\xea\xc6\x18\x66\x45\x17\x5b\xeb\xb5\xd5\x9d\xbd\xc3\x97\xda\xdd\x01\xb3\x2e\x95\x79\x47\x7b\xa3\x7f\xcc\xb4\x78\xb2\xe5\x6f\xc2\xa5\xbb\x55\x5d\xf2\x2b\xe9\x12\x95\x34\x91\xd1\xe3\x89\xd2\x63\x3c\xe9\x6d\x7e\x24\xb5\x2d\x3d\x33\xe4\x7f\xd2\xe8\x32\x15\xe4\xf3\x49\x5e\x8f\xec\x3d\xd5\x37\x03\x98\x0f\xcc\xb7\x3c\x60\x9f\x09\xfb\xd6\xb2\x31\x02\xeb\x9b\x8e\xd7\x04\x35\x1e\xb9\x8a\x39\x1f\xcb\xeb\x06\x5a\xdc\xb5\x6d\xf2\x87\xfd\xc4\xb1\x0f\xa9\xf4\x12\x90\x03\x80\x0b\x13\x25\x35\x04\xe3\x04\x30\x3f\xb1\xef\x5a\xe1\x39\x16\x90\xf0\xb8\x38\x33\x10\x46\xb7\x8f\x46\xc0\x95\x52\x82\x07\x74\xc0\x88\x83\x0b\xf2\x13\x10\x47\x87\x38\x1c\x9d\xe8\x40\x11\xc8\x8b\x8e\xe3\x73\xee\xe2\xe8\xb8\x92\x36\x47\x47\x80\x93\x8b\x94\x13\xe1\x88\x2b\x5a\xcf\xf7\xab\xc9\xa0\xe1\x35\xdd\x8c\xcf\x11\x48\x83\xb2\xcb\xe8\xf9\xa2\x9a\x90\xc2\x6b\x3c\x32\x33\xf3\xc0\x83\x81\x38\x97\xd5\x04\xf5\x8c\xa7\x00\x6c\xed\x62\x01\x74\x96\xa4\xa9\xa0\x06\xb0\x77\x7d\x8d\x78\x4e\x5b\xa0\x45\x33\x8f\x62\x31\x44\x8f\x62\x28\x67\x94\x51\xbb\x38\xe4\xd4\xab\xcb\x11\x9c\x67\xb1\x37\xae\x5e\xcb\x13\xbd\xda\xb6\x3c\xc6\x3b\x32\x40\x77\x07\x2c\xc8\x3c\x17\x99\xf1\xfd\x5b\x0f\x18\x9b\x64\x44\xd1\x1d\xb1\x08\x5d\xec\x65\x57\x9c\x1f\xe3\xd4\x11\xf1\x93\x7e\x4d\x08\xf2\x44\x92\xa5\x2d\x62\xb4\x98\x29\x65\xf5\x1b\x49\x8f\x9e\xfc\xa0\x5d\x32\xa1\xb4\xcb\xf5\x49\x39\x5d\xa3\x9d\xdd\x94\xf3\xcd\x89\xe0\x6e\x42\x8e\x67\xf6\x7b\x4b\xf8\xc5\x66\xea\xe1\x6f\x92\x70\x52\xf4\x52\xf1\xce\xce\x22\xef\x0b\xd3\x1f\x52\x7c\x93\x04\x79\x32\xf3\x8c\xdb\xac\x76\x95\xcf\xff\x06\xea\x4c\xd4\x8f\xa9\x13\x36\x30\x23\x75\x3b\x69\x8d\xa0\xad\x08\xff\x3e\xb9\xb0\xef\x30\xf8\x7d\x08\xba\x79\xb9\x3f\x46\x91\xc7\x04\xba\x79\xf8\x71\x34\x22\x79\x24\xdb\x3b\xdf\xac\x9f\xc3\x2c\x74\xb0\xaa\x72\x55\x96\xca\x5b\xdd\x2d\x4a\xd8\xee\x05\x98\x1a\xc5\x3a\xfe\x1a\x74\xf9\x7d\x19\xa6\x3e\x16\x5c\x2d\xf9\x52\xd7\xcc\x2b\x93\x58\x7a\xf6\x57\x15\x92\xdd\xa2\x03\x0c\xdf\x30\x0d\xe0\x05\x4e\xc5\xa7\xe5\x6c\xea\x00\x08\x53\xa9\xcd\x4c\x5d\x57\x02\x20\x22\x29\x55\x06\x26\x96\x91\x0a\x08\xc4\xc9\xad\x22\x78\x52\x8c\x0b\x1d\x75\xb6\xea\xd3\xd9\xaf\x7d\xa2\x9f\xaf\x51\x76\x53\xbf\xb4\x0c\xd9\x6c\xf7\x0f\xd9\xe7\x47\xa2\xaf\x3f\x8a\xdf\x61\x6c\xa4\x92\x5b\xbe\x62\xe0\xb2\xda\xea\x25\x24\xc8\x7f\xd1\x75\xe1\x04\x6b\x78\x8a\x63\xf2\x1e\x12\xdc\x2d\xa1\x37\x38\xb6\xee\x84\x66\x08\xcf\xb3\xe2\x14\x05\x3a\x9e\x11\x90\x98\x6f\x47\x96\x2d\x94\xef\x99\xad\x0a\x9e\x5d\xb7\x1b\x20\xca\x98\x31\x66\x0f\x13\xca\xb8\x92\x9e\x36\x36\x35\xbb\x24\x98\x50\xc6\x85\x0c\xdd\x87\x36\x36\xb5\x72\xac\x1e\x72\x28\x08\x13\x1a\x71\xbd\x66\x3c\x9b\x85\x69\xa0\xa5\x7f\xb8\x05\x02\xd1\x8c\x11\xca\xb8\x90\xca\xd3\xc6\xae\xeb\x03\x20\xc2\x84\x32\x2e\xa4\xf2\xb4\xb1\xa9\xad\xb5\xd6\x5a\x6b\xad\xb5\xd6\x5a\x6b\x6d\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\xad\xb5\xd6\x5a\x6b\xad\xb5\xd6\x5a\xeb\x5c\x4f\xa0\x8c\x8b\xaf\x34\xf5\x9f\x5d\x9f\x66\xdc\x74\xbf\xe9\x4a\x9a\x75\xc8\xe9\x0d\xcb\x97\x86\xf5\x9a\xfd\x08\xb3\xa1\xc1\x9e\x07\xa6\x29\x1d\x03\xb1\x6b\x1a\xc8\xe9\x0d\x5b\x97\xe6\xe2\xb7\x31\x20\x61\xd4\x48\x1b\x0d\xdb\x80\x1d\x15\xfd\x86\xb1\x4b\x57\xc6\xd2\xc9\xc3\x01\x30\x5d\x88\x1d\xda\xed\xc2\x6f\x04\xa1\xd9\x56\x0b\xc0\x9f\x99\x06\xfe\x1f\x29\xd4\x35\x1f\x92\x16\xed\x35\x9f\x58\xb9\x1c\xfe\xbb\xec\x8b\xfc\xf6\x0a\xd9\xf5\x55\xbc\x5e\xf8\xc3\x98\xfc\x19\xf2\x3a\xd0\x6f\xb0\x6a\x18\xd4\x98\xeb\xc4\x1a\x16\x8e\x7f\xdc\xcf\x56\xf6\x1f\x10\x81\x02\x4a\x8a\xae\x6f\xfb\xdd\x1b\x8f\x3e\x1e\x1d\x97\x10\x81\x6a\x02\x55\x9f\xac\xf8\xfa\x8b\x5b\x13\x77\x70\xff\x1f\x03\xb7\x2c\xd4\x8e\x9d\xb7\x3c\x5d\x80\x8f\x95\x12\x47\x57\x36\x01\x11\x27\x3c\x77\x89\xef\x15\xe0\xfe\xcf\x82\x41\x86\xab\x81\x7d\x31\xaa\xa1\xe1\xc4\x3a\xbd\x4a\xe4\x65\xe1\xc2\x47\xf2\x1a\x5c\xe4\xdf\x03\x00\x01\x00\x00\xff\xff\x3b\x5e\x60\x39\x0c\xc8\x00\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff2() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff2, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.woff2", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_eot = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8e\x63\x70\x24\x0e\xd0\xa7\x27\x13\x7b\x62\x27\x33\xb1\x6d\x4e\x6c\xdb\xb6\x6d\xdb\x36\x36\x4e\x36\xd8\x68\xc3\x8d\xed\x8d\x37\xb6\x9d\x6c\xb8\xc8\x5e\xdd\xbf\xde\x0f\x57\x77\x55\xf7\xf4\x87\xee\xea\xee\xfa\xd5\x13\xbb\x0f\x00\x84\xef\x01\x00\x40\x00\x10\x00\x07\xf8\x3f\x81\x01\xa4\xc1\xfc\xef\xae\xa4\xf6\x0f\x08\xd8\x37\x04\x03\x40\xe0\xff\xb9\x7c\x82\x01\x80\x01\x00\x18\x55\xda\x98\x9d\x1c\xc0\xff\x03\x3e\x40\x03\xe0\x0a\xb0\x00\xb8\x02\xbc\x00\xae\x00\x30\x40\x19\xe0\x0a\x70\x01\xb8\x02\x00\x00\x0c\x80\x06\xc0\x1a\x60\x0b\xf0\x06\x38\x01\xcc\x01\x1e\x00\x00\x40\x0b\xa0\x03\xb0\x06\x78\x00\x3c\x01\xf6\xff\x7d\x81\x01\x9c\x00\x56\x00\xfb\x7f\x25\x00\xe0\x07\xf0\x00\x84\xfe\xdb\xb1\x03\x38\xfe\x67\xf6\x02\x78\x01\x6c\x00\xe6\x00\xef\xff\xd2\xed\x00\xf6\x00\x17\x80\x17\x00\x0c\xa0\x07\xf8\x00\x38\x00\xac\x00\x2e\x00\xc3\xff\xd7\x01\x00\x90\xd0\x94\x55\xfb\xbf\x9d\x61\x61\xa4\xe4\x00\xcd\xee\x80\xef\x7c\x80\x2c\x6a\xdc\xb9\x8b\xa4\xef\xab\x71\x44\xad\x05\x11\x4f\xb7\xf7\x8f\x4a\xa4\x05\xa4\x76\xdc\xdc\xb7\x76\x69\x8b\x18\x95\x40\xd8\xdf\xfc\xe3\xaf\x70\x79\x01\xbc\x35\x69\x49\x79\x37\x59\x45\xed\x70\x55\x24\xea\x12\xbe\xc8\xbb\xde\x2e\xd5\x45\x2a\xbd\x63\x0c\xf6\xb6\xb1\x9c\x43\xdc\xdd\x84\xea\x24\xfa\x5c\x0c\xed\x3e\x05\x60\xfb\x92\x5b\xe7\x04\xf9\xdd\x96\x96\x13\xfd\xcd\x70\x59\x4d\xff\x56\x8d\xb9\xc3\xb9\x49\x2e\x6d\xb6\x91\x09\x97\x88\x35\xfa\x57\x13\x4b\xc6\xf9\x73\xd5\x51\x1b\x89\x6f\x6c\x75\xc6\xfb\xfb\x5d\x0b\x54\x53\xb8\xf2\x5c\xc9\x23\x1b\x15\xbf\x9d\xfe\x79\x91\xff\xbe\xdc\xf0\x56\xe4\xdf\xfd\x6a\x24\xf2\xfe\x03\x2c\x7f\xd7\x73\x3d\x39\xc3\xf7\x5b\x42\x6e\x47\xd7\x6a\x10\x98\xfc\xdb\xb8\x69\xc2\x85\x50\x17\xf2\xf9\xc3\x30\x46\xf7\x35\x68\xe0\x0c\x64\x14\x68\x57\xd4\x57\x4d\xaf\xfd\xf4\xc5\xe3\x90\x07\xd3\x22\x3f\x74\xa6\x91\x0b\x88\x8e\x47\x06\x95\x40\x46\x5f\x48\xa8\x89\xc8\xf4\x82\xdc\x37\xff\x76\x87\x4d\x47\x28\x9f\x8d\x49\x7e\x22\xea\x2c\x7b\x47\x3b\xe0\x1a\x4d\xc0\x66\xa6\xdf\xa7\x1a\x2c\x85\x5b\x47\x1b\xe4\x0a\x87\x39\xc7\x31\x24\xde\x5e\x46\x78\xb3\xcf\x74\x21\xd3\x2f\x4d\x46\x70\x1d\x09\x29\x5a\xaf\x3e\x39\xf7\xe7\x92\xc8\x02\x48\x29\x40\xc2\x5b\xf2\x94\x33\x80\x20\x5c\xe8\x30\x22\x08\x1a\x21\x85\x4b\x4b\x89\x0a\x32\x8b\x94\x22\x05\x3f\x20\x21\xc9\xc0\xe5\x29\x17\x36\x57\xa0\x34\xb7\xa1\x36\x8f\xa0\x35\x2f\xbf\xc5\xec\x26\x51\xfb\xc8\xc9\x5a\x47\x86\xd4\xf2\x5d\x85\x79\xc6\x21\x66\x99\x0c\x2a\xee\xe8\x07\xd6\x17\x86\x8c\xb8\x6e\x3a\x4f\x24\xf6\x48\x5c\x9b\x30\x5f\xc3\x17\x47\xb5\xe5\x6b\x5d\x7a\x72\xb4\xda\x22\x73\xce\x32\xcf\x4e\x22\xe5\xc3\x70\x41\xa4\x26\x51\xb3\x61\x32\x4a\x79\xa5\x10\xe5\xc2\xde\x71\x85\xe3\xb0\xd2\x81\x1a\x60\xe5\x51\x14\xf6\x30\x27\xb0\x7e\x14\x6a\x73\x78\x0c\x88\x73\x98\x38\x0f\xba\x85\x44\x6a\x0e\xdb\x00\xf6\x8f\xc2\x6c\x8e\x40\x00\x49\x0c\x23\xe5\x89\x93\x13\x56\xbb\x29\x46\xe1\x98\x53\xbf\x21\x1f\xf6\x0b\xe1\x43\xab\x28\x96\x42\xb6\xda\xd7\x33\xa5\x26\x02\xf1\xaf\x03\x56\x49\x11\x5a\x8e\xa2\xf8\x8b\x74\xc8\xe6\x15\xc7\x22\xd7\x9b\x07\x46\xf1\x98\x06\xc8\x3e\xd8\xd3\xfb\xcb\xdc\xf6\xb0\x85\x1b\xcb\x64\x61\xaf\x70\x8b\x04\x83\x52\x54\xa2\x7f\x51\x97\xe3\x4c\xeb\xfe\x99\x73\xe3\x26\x60\xdc\x55\xd0\xeb\x77\xfe\xe9\x45\x2c\x06\x97\x27\xd9\xdb\xa6\x82\x23\xe2\xce\x45\x97\x8c\x3a\xc4\xbd\x24\x80\x85\xf6\x7d\x3a\x42\xb2\x9c\xd9\x72\x90\x44\xa1\xe5\xb8\x3b\xbd\x63\xea\x46\x04\xde\x72\x79\x91\x2c\x77\x4d\x2a\xf9\xf7\x4b\xbf\x52\x83\x81\x6d\xc4\xae\xcf\xf1\x84\xf0\x94\x3b\x45\x40\x34\xc2\x4d\x84\xd2\x47\xc4\xc9\xbb\xe4\x5e\x94\x61\x8c\x46\xb3\x8a\x8b\x24\x2a\x51\x84\xae\xd9\x67\x41\x7a\xf9\x2e\x76\x3a\x40\x85\xa2\x8f\x76\xcc\x4a\x3b\x7c\xe7\xe3\xe5\x56\xb3\xc1\xb2\x9b\xfe\x90\x0d\xc5\x21\xa1\x4f\xcc\xb6\xec\x8e\xcf\xe7\xc5\x14\xde\xde\x7e\xa9\x06\x63\x77\xdb\xf7\xf9\x4f\x0c\x72\x28\xad\xfa\x62\x61\x29\x57\x29\x2e\x32\xcd\x3a\x40\x3d\x51\xd9\x66\x36\xb4\xf4\x5f\x5c\xc3\x5d\x2c\x02\x2b\x91\xa2\x1b\x6c\x7f\x0f\x38\x49\xcc\x2b\xd1\xbb\x7a\x50\x21\x5d\xc4\x57\x56\x1d\xcf\x92\x33\x4f\xe5\x34\x93\x22\xf0\x5f\x99\x21\x1a\x49\xa3\xef\x54\xe1\xcd\xd8\x6e\x16\x89\x46\x5a\xa3\x66\x2a\xf0\x4a\xea\x48\x58\x46\xf8\x91\xfb\x64\xe3\xb6\x60\xe0\x46\x52\x55\x78\xef\xef\x29\x68\x64\x57\x4d\xab\x93\xcf\xed\xe0\xbc\x6d\xd3\x57\xe3\xa7\x44\x97\xe0\x13\x30\xda\x07\x06\x0b\xa7\x31\x12\x1e\x36\x98\xf9\xb8\x3a\xb5\xab\x89\xae\xfd\x84\x55\xb7\xd7\x97\x42\x7f\xad\x33\x37\x8e\x75\xd7\x08\xcc\x53\xf4\xf9\x8b\x8d\x11\x40\x38\x5d\x45\x39\xe6\x8a\x14\x23\x7a\x44\xd3\x1d\x5c\x4d\x8f\x73\x5c\x63\xf5\xee\xbd\x4a\xeb\x8f\x04\xb3\xab\xa2\x30\xd6\xcd\xd5\x68\x13\xc2\x4d\x8d\xd1\x1f\xbd\x60\xcd\x4d\xf9\xa8\x9d\x63\x1d\xe3\x2e\x42\x40\x6c\x5b\xa2\x1d\x19\xfd\x35\x58\xf8\x78\xb2\xb8\x8d\xe0\x8c\x6c\x62\x62\x37\x3c\xf5\xf1\x4c\xc9\xf5\xde\x92\x9d\xbb\xe9\x6b\xaa\x16\x12\x63\x1e\x9a\x48\xc3\xfd\x19\x3b\x11\x00\x19\x77\x81\x42\x49\x0a\x0a\x8f\x7f\xdf\x75\xcc\x4c\x8a\xa2\xdf\x9f\xa0\x9a\x6e\x19\xa1\x07\x04\xe9\x6a\x8b\xa1\x68\x57\xde\x2b\x27\x4a\x57\x95\x7b\x34\xa2\x95\x83\x69\xe0\x32\x07\xfb\x82\x05\x20\x51\x54\x0c\x69\x28\x9c\xa3\x8e\xe9\xcd\x30\x30\x95\xb3\x27\x25\xec\x2d\x90\xb6\x82\x39\x42\x61\x85\xb2\x91\x12\xae\x88\xfe\xa8\x09\xc6\x02\x3c\xa8\x6c\xf0\x90\x7e\x43\x46\x27\x76\x47\xda\x40\xc7\x70\x07\x04\x85\xa8\xf6\x45\xe0\x84\x63\x3e\x22\x7b\xb7\x3b\x9a\xcc\x3a\x49\x28\x17\xea\x70\x47\xde\x4d\xa7\x55\x78\x68\x80\x58\x43\x9e\xa4\x74\x8f\x59\xaa\xb4\x22\xd8\xa5\x18\x78\xbb\x35\x8e\x0b\x6c\xf9\x33\x68\x5c\x95\x93\x60\xd6\x03\x37\xc1\x1b\x79\xc7\xfb\xe2\x3a\x73\xe0\x52\xaf\x95\x22\x21\xbf\x62\xae\x4c\x09\x16\xfc\xab\x66\x8f\x01\x24\xd8\xa2\x99\x72\x59\x58\x71\xb7\x76\xe2\xb8\x70\x67\x0e\x86\xa5\xfb\xac\x9b\x3d\x47\xe9\x81\xec\xf9\xa5\x70\x10\x95\x0f\x58\xb2\xc8\x2b\x54\xfe\x76\x36\xf3\x2a\x5e\xcf\xc5\x2b\xf3\x22\xfd\x22\xc1\x6e\x7c\x1a\x04\x05\x98\x74\xe7\x46\xfe\xec\xed\x83\x67\xa7\x2a\x22\x40\xbb\xa4\xed\xd8\x55\xb0\xfa\x01\x3b\xf3\xc0\x67\xfe\x23\x08\x91\xc2\x87\x7c\x28\xf9\x2b\xf1\x67\x39\x73\xa3\x7e\xd1\xad\x48\x7c\xf4\x4d\x53\x95\xfb\xf4\x70\xae\xf0\xf0\xe1\xee\x34\x24\xb5\x09\xcf\xfc\x1f\x2c\xb5\x1d\x49\xe1\x18\xd5\x56\x30\x94\x76\xf7\x4d\x6c\xf9\x2c\x84\x6c\x98\xaa\x76\x1c\xed\x26\x20\x69\x27\xab\x04\x4a\x13\xb2\x61\xdc\xf8\x4e\x03\x03\x76\x8b\xf1\xae\x26\xdb\x8d\x1a\x4c\x57\xed\x69\x6c\xca\x32\xf4\x5e\xee\x93\xa4\xb4\xed\xe8\x66\x16\xac\x7c\xef\x39\xb2\x9b\x1c\x42\xb6\x96\xe9\x2e\x08\x38\xd3\x4e\x15\x51\x6a\x30\xa1\x3a\xc9\xea\x17\xdc\x5c\x48\xb5\x87\xcd\x2d\x6e\x06\xb3\x66\x48\x6d\x1e\x29\x3d\x09\x3f\xf1\x1f\x12\xf0\x46\xf9\x2c\x93\x9f\xf4\xe1\x34\x2b\x25\x61\x9c\xb3\x51\x81\x88\x5c\x1b\x11\x92\xb9\x5f\xe9\x68\x1e\xa4\xfd\x0e\xb4\xdb\xad\xc5\x2a\xe7\xde\xf0\x3c\x89\x16\x89\xcf\x7a\x5e\xf7\xb3\xaa\xe1\x81\x41\x90\x5a\x8b\x8d\xdc\x5d\x05\x13\xce\x03\x7d\xfa\xab\x46\x54\x22\x61\x2a\x5f\x6d\x44\xc5\xe0\x9e\x74\x9f\x25\x31\x62\x2d\x1d\xee\x13\x01\x93\x8c\xbd\xa7\xe5\xf5\xdb\xe1\x3a\x7f\x47\x44\x05\x27\x5c\xd8\xec\x43\x59\xf3\x32\xb6\x73\xb3\xd2\x8f\x21\x5d\x4d\x12\x84\xb9\x5c\x09\x07\x8d\xc3\xdf\xd6\x0e\xdb\x66\x2c\x99\x31\xe3\x24\x32\x26\xec\x61\xb5\xf3\x07\x4b\x37\xbe\xdc\x45\xf6\x49\x10\x16\x79\x30\xe5\x43\xac\x92\x4b\x62\x70\x06\x16\x2e\x68\x0b\xb7\xd2\x70\x8a\x93\x4c\x06\x86\x00\xa9\xb5\x2f\xca\x02\x6c\x50\xb4\x60\x1b\x87\x03\x8f\xd3\xd5\x9c\x01\x18\xb9\x66\x45\x72\x1d\xc5\x96\x27\x05\x03\x60\x68\x9e\xfe\xce\x1d\x03\x60\x8f\xfe\x84\x09\xff\xa3\xd9\x39\x2a\x54\x36\x99\x1b\x8d\xf8\xa0\xc4\x04\x79\x97\xe9\xfe\xec\xea\x98\x54\x32\x5d\x85\xd7\x88\x8b\xbd\x40\x97\x69\x79\x48\x4c\xd0\x40\xfe\xbd\xff\xc8\xfa\xef\x45\x67\x5b\x3c\x5b\xd1\xba\xb1\x2b\xac\x8d\x56\x46\xf3\x65\xaf\x8d\xb9\xac\xf3\x86\x55\x9c\xeb\x02\x61\xed\x37\xf0\xc6\x9e\xd8\x76\x11\xd6\x8b\x35\xc6\x32\x4e\x05\x24\xc5\xc8\xff\x9c\x98\xfe\x91\x89\x1a\x58\x2d\x96\x37\xeb\xe7\x31\x4b\x73\x32\x33\x58\xb5\x7e\x31\x9d\x32\x55\xab\x1b\x23\xb8\x44\xb2\xf8\x32\x68\x4b\x53\xd8\x93\x22\x15\x16\x1b\x9a\xe9\xfa\x39\xd1\xb3\x68\x8f\xcd\x6a\xf7\x85\x7b\x31\x2a\x25\xe8\x87\xcb\xf7\x0c\x55\x1f\x6f\x65\xd0\xa3\x44\xaf\xda\x3d\xd4\x72\x88\x9d\x3c\x34\x02\x60\x1a\x71\xc9\x3a\x3f\xb8\x59\xbc\xaf\xa8\xe2\xe3\x81\xb4\x81\xed\xa3\x16\x69\x1e\xbe\x91\x2a\x75\xb6\xa7\x17\x71\x98\xa9\xd7\x7e\x63\x78\x9b\x67\x6c\x4e\xed\xe4\x46\xd2\x50\xdb\xb5\x9f\x8c\xb0\xdb\x47\x85\xb5\x53\x6e\xb5\x2d\x14\xc6\x99\x7f\x53\x5e\x90\xdf\x59\x59\x03\x90\x5d\x99\xe9\x4e\x1a\x4a\x8b\x56\x30\xc9\xc2\xfa\xbc\x37\x48\x32\x83\xcc\xa3\x55\xb3\x90\xf5\xa2\x99\x3f\xb6\xd9\xe9\x33\x5a\xe2\xcc\x79\xa0\xa4\x11\xa2\xae\x4e\xba\x28\x52\xba\x3f\xb7\x3d\x4f\x1e\x59\xcc\xa0\xcd\x92\x45\xe1\x28\xdc\x13\x04\x9c\x52\x5d\xb4\x3d\xf9\x5b\x77\xd7\xad\x0a\x8f\x7a\x2f\x22\x81\x80\xb8\x37\x0f\x07\xbb\x76\x6f\xf6\x03\x61\xf8\xcb\x6b\xc1\xc4\x4e\x8f\x94\x9d\x68\x2e\xc3\x62\x98\x8e\x9d\xf0\x12\x1f\xbd\xe9\x64\x03\xeb\x11\xc1\x35\x5b\x65\x2b\x60\x81\x46\x27\xd2\xdb\xfc\xa8\x67\x30\x5b\x5c\xdb\x44\x74\x23\x47\x47\x9c\x5e\x52\x0b\x05\xcc\x79\x4d\x78\xb1\x66\x45\x65\x54\x3c\x42\xb3\x6a\x46\x92\xae\x3f\x0b\xdf\x42\x71\x4c\x7e\x85\xdd\x89\x64\x35\x9a\xce\x4d\x51\xc6\xdf\x60\x46\xb1\xa5\xdd\x19\x4f\xb3\xb1\x1f\x15\xe5\x3a\x11\xa5\x82\xb7\xdd\x81\x82\x2e\xb7\x8a\xa4\x3e\x87\xa0\x6e\x60\x3e\x9a\xd5\x87\xb7\x78\x09\x66\x87\xc9\x02\x70\x24\xdc\x27\x2a\x94\x85\x38\x79\x51\xd9\xb2\x7b\x65\x78\x73\x4f\x39\xd3\xa2\x33\x11\x6b\x4f\x2d\x37\x25\xd0\x94\x2e\xe8\x20\x6d\x60\xc0\xfb\xd5\xbd\xcd\x7f\xc5\x68\x68\x5b\xd0\x8b\xc6\x9b\x39\xaf\x8c\x57\xca\x74\x0a\x80\xad\xc0\x39\x5a\xd4\x68\xa2\xc7\xed\xd1\xfe\x85\xc7\xa4\xbd\x31\x3a\x5d\x9c\xf9\xb5\x43\xa8\x13\x4b\x73\x67\xa6\x43\x83\x63\x0a\x74\x0f\x1e\xd4\xb1\x35\x2e\xae\x52\x22\xe5\x32\x94\x9b\xa1\x21\x6d\x38\xf1\xb8\x54\x61\xbe\x6a\xe1\x72\x80\xaa\xb9\x8b\xa7\x96\xce\xd2\x18\xb4\xee\xc6\xb8\xf8\x0a\x15\x3e\x9f\x28\x19\xf1\x3e\xd0\xfb\x20\x94\x79\x78\x1e\x62\x3c\xfd\x34\x5f\x8f\x6f\x98\x54\x64\x47\x33\xfb\xd9\xc4\xf4\xc6\xe9\xe9\xaa\xe2\xc3\xf0\x46\xc8\xeb\x9f\xdb\xce\x4b\x36\xfa\x03\x69\x6f\x0c\x23\x25\x02\x56\xbb\x35\xa5\xff\x9c\x4a\xb2\xe5\xb9\x13\x6b\xa4\xf1\x8a\x28\xb5\x25\xd2\x8b\x68\xd9\xef\x47\x8f\xb1\x2e\x8a\xca\x4a\xc4\x1a\x70\xf7\xbb\x22\xfc\x1e\x89\x93\x12\xd0\x19\xfd\xda\x77\xcc\x92\x46\xd4\xc5\xf3\x74\xb7\xc5\x2f\x20\xa3\x84\xa5\xd7\x7e\x88\xb7\xcd\xd5\xab\xce\x4a\x0b\x20\xc3\x9c\xb2\xdd\xae\x1d\xac\xf5\x26\x44\x9e\x96\x65\x99\x71\x7c\x7b\x2a\xc1\xd9\x44\xd4\x53\xb8\x9e\xb2\x58\x19\xc0\x74\xef\xfb\xcd\x4a\x60\x3a\x4d\xa1\x90\x09\x77\x2f\x6b\x6a\x86\xca\x4b\xd6\xd1\x97\x8a\xfd\x4f\x35\xd6\xd8\xfe\xf9\xfe\x2c\xd6\x87\x54\x96\xca\x93\xa0\xe9\x7e\x15\x64\x6a\xf8\x30\xb2\xe6\x4c\xb5\x0b\x29\xc5\xc3\xdf\xa7\xe3\xc3\x47\xc9\x41\x32\xc2\x58\x06\x64\x9f\x53\x44\xb9\xcb\xb0\x3b\xe3\x58\x7f\xcb\x2d\xad\x22\xfb\x13\x39\xbd\x51\xc6\x68\x84\xa3\x09\x75\xd8\xc1\xc3\xde\x77\xbb\xf5\x7b\xb9\x71\xa0\x6d\x96\xf5\x6a\xdd\xdf\xcd\xc7\x2c\x23\xe5\xfc\x63\x53\xa9\x34\x88\xee\x01\xde\x7d\x04\xf0\xe8\xe7\x9a\x66\x5d\x50\x9f\xeb\x58\xba\x2e\x73\xca\x05\x03\x85\x06\xae\x97\xdd\xbc\x64\x39\xcc\x56\xfe\x66\xf1\x3b\xae\x18\xc1\x1c\xd1\x3b\xc1\x15\x81\xfc\x47\x14\x29\xd6\xa3\x20\x7d\x2e\xb2\x16\x4f\x67\x3d\x3f\xd5\xd4\x73\x07\xdd\xf2\x49\xec\x7a\xb8\x0a\x58\xc3\x5c\xbf\xe5\x59\x68\x6e\x62\x19\x2f\x28\xe4\x52\x76\xee\xe4\x94\xd8\xa6\x4a\xe5\x14\x25\x9c\x7c\xdc\x66\x48\x83\xed\xc1\x1c\xea\xd3\x43\xbb\x6e\x70\x2e\x62\x0e\xf4\xc3\x4f\xe2\x31\xd0\xeb\x60\x31\x80\x33\xd4\x2c\x1e\x3b\x88\xe6\x2f\x9b\x94\x18\x9b\xd0\x31\xa3\xf8\xc1\xce\x62\x0d\xa7\xd2\x40\x34\xcc\x59\xa6\x62\x50\x81\xb1\x9e\xdc\x01\xe7\xa2\x81\xf4\x5a\xdd\x9e\xc3\xaf\x87\x31\xc0\xf8\x7e\xa3\x66\xae\xdd\xb7\x6a\x5c\x49\xe7\x9c\xf8\xbb\xc5\x65\x63\xc0\xc9\x93\x7b\x2e\x82\x8d\x61\xfb\x79\x88\xfc\xae\x2d\x02\x8e\x43\x8a\xb7\x14\xfb\xca\xac\x8a\xc4\x8c\x5d\xcf\xba\x60\xed\xa6\xb2\xe0\x8a\xd0\x25\x07\x7d\x7b\x9c\x68\x61\x07\xcf\x6f\x29\x66\x9f\x64\xcc\x9c\x64\xdf\x91\x0c\xcd\x51\x2a\x45\x18\xc2\xa2\xb7\x10\x81\x6c\x07\x18\x69\xc5\xae\x86\xca\x76\x60\x57\xbf\xcb\x26\x1d\x01\x6b\x86\x4f\x5d\xc0\x23\xdb\x88\xfc\x48\x4c\xc5\x8b\xba\x70\xc4\x6f\xd7\xa1\x59\xba\x55\x53\xf6\x41\x79\x23\x7e\xbf\x60\x31\x78\x21\xf2\x81\xc4\x6f\x7f\xfb\x92\xdd\x5c\xbb\x93\xe9\x03\xe6\x2d\xa5\xf0\xf1\x1f\x8a\x93\x45\x84\x6d\xa9\xd4\x54\x89\xa0\xb3\x99\xe3\x0a\x7c\x4d\x76\x40\xee\x35\x79\x24\x08\x39\x6a\x1f\xb7\x31\x19\x46\xec\x71\x73\xa5\x47\xec\x85\x14\x9e\x04\x0a\x1f\x68\x76\x7a\x24\xa4\xc1\x64\x82\x6b\x5d\x8b\xf3\xde\xcd\x1a\xf3\x24\x5d\x13\xbb\x5e\x33\x36\x32\xc2\x43\x19\xec\x20\x16\xdf\xf1\x8e\x09\xa0\xd2\xa8\x6c\x6a\xc1\xae\xe8\x0a\x39\x26\xc4\x16\xc0\xb8\xa4\x4d\xaa\x1f\xaf\x49\xe1\xd7\x41\xce\xfb\xc2\x1c\xa3\x9d\x70\xd5\xee\xe4\x04\x7d\x85\xc9\xb8\x70\x03\x25\xc6\x6c\xc4\x87\x62\xe8\x87\x21\xe7\x88\x2b\x0a\x85\xbd\x78\x52\x55\x23\xe5\xa8\x0f\xbd\x75\xc9\x34\x3e\x31\xce\x70\xff\xc5\x61\xf9\x0b\x4f\xdf\x0d\xcf\x7a\x8e\x43\x66\x4f\x2c\x05\x43\xd1\x9a\x11\xc4\x2e\xcc\x4f\x05\xa7\x12\x62\x45\x7b\x10\xdf\x75\x68\x04\xc2\x5e\xe7\x65\x47\x41\xfc\x89\x6d\x9e\x7a\xec\x92\xf4\xe5\x56\x07\xac\x0a\xd1\x3e\x57\x6f\xf8\xf0\x1f\x9f\xa5\x2c\xe5\xf1\xfe\x3a\xe9\x67\x03\xff\x5d\xca\x88\x50\x2e\x7c\x5d\x09\x89\xd6\x67\x30\xb8\xf4\x26\xb4\x14\x06\xb5\xb6\x50\x6e\xff\x95\xd9\x90\x22\xbd\x52\x95\x42\xe7\x93\x05\x35\x6c\x7e\x13\x04\xa8\x8a\x69\x01\xb3\x0f\xf6\xf9\xa6\x38\x32\xfa\xa4\x14\x81\xcc\xeb\x66\x3f\x2b\xcd\xbe\x7c\xf3\xd6\x25\x23\x2e\x3a\xf5\x43\x5d\xaa\x25\x7c\x42\x26\xce\x7e\x54\x50\x81\x6e\x61\xb7\xd2\x7e\x66\xc6\x92\x33\x6d\x96\x50\x21\x5d\x24\x55\x63\x99\xb5\xba\xa4\x14\x91\x48\x19\xa5\xe3\x84\xb2\x8f\x57\xfa\x90\x3e\x14\xd8\xc9\x94\x65\x58\x7f\x4e\xa4\x7c\x2d\x81\x94\xdc\x6f\x14\x6d\x77\xb7\xa0\x27\x0c\x49\xa9\xdc\x78\x5a\xc9\x68\xd4\x9a\x91\xb8\xa0\x9e\x47\x1a\x95\xdb\x48\x47\xdf\xab\x1f\xb5\xa0\xfd\x05\x4b\xac\xaa\xcb\x9d\xce\x70\x58\x72\x44\x2a\x30\x24\xbd\xae\x40\x6d\xee\x21\xc4\xc9\x1a\x9c\xf4\x78\xe0\x40\x08\xe6\x9a\x3e\x99\xba\x81\x97\xcf\xb2\xcc\xe0\x27\x1a\x6f\x6f\x17\xd1\x71\x37\x09\xbb\xfa\xd2\xec\x9d\x33\xba\xed\x81\xa9\x97\x4e\x5b\x75\x9a\x6a\x17\x63\xd5\xa5\x2f\x5a\x8a\x92\x6c\x84\x93\x19\x75\xe9\x24\x52\x9f\xa1\xce\x4f\x50\x65\x98\xa9\xb8\x89\x6d\xf2\xc1\xca\xf5\xd5\xe8\x93\x68\xf9\x8a\x99\x3e\x4f\xb7\x0c\x29\xbd\xc7\x25\x2e\xd5\x3f\xad\x4b\x84\x1f\xb0\x04\x20\xf2\xf2\x77\xa3\x94\xd1\x55\x7d\x77\x1e\xbf\xe4\xfc\x30\x81\x0e\x7e\x60\x12\x8c\x18\x91\x9c\x24\xc7\x97\xe6\x40\xc2\xd1\x38\x62\xa2\x6d\xaa\x5b\x02\xa7\x84\x60\x52\xc6\xf9\x8c\x7c\x77\x40\xbc\x68\x76\xb5\x73\xb2\xa5\xe8\x6d\xf4\x21\x13\xee\xc8\x0e\xbe\x4f\x96\xd1\x0c\xa0\xbc\x60\x6e\xc8\x21\xfc\xc7\x7c\x5f\xf7\x83\x47\xa2\x69\x77\x5b\x58\x27\x50\xf8\xe5\x48\xee\x93\x4d\x41\x6e\xcd\x1d\xca\x42\x86\x11\x52\x9d\xf7\x2a\xa1\xb6\xc4\x4c\x57\x0f\x69\x95\x38\x05\xac\x92\x31\x7d\x0d\x74\xb9\xc0\xea\x9c\x18\x36\x27\x36\x52\x58\xd2\x8c\x5f\xd0\xde\x93\xd6\xb5\xf4\x3b\xe8\xd2\x0f\xc1\x2b\xd2\x3d\x92\x10\x9a\x2b\x3e\x67\x34\x3f\x03\x1e\x05\x9d\xa9\x11\x6a\x50\xcb\x99\x0d\x67\x43\x00\x84\x1c\x9e\x0c\x09\xe2\x61\xf4\x73\x72\xec\x70\xd1\x20\xb1\x04\x09\x90\x79\x5d\x49\x78\x73\x50\x9a\x7b\x69\x00\xde\x60\xb3\x3f\xde\x54\x7b\x1c\x69\x3a\x15\x4a\x7c\x59\x4d\x42\x42\x50\x1c\xc3\x0d\x84\x72\xa8\x16\x76\x81\x10\x3e\xd5\xed\x84\x1d\x15\x6a\x84\x71\x6d\xa4\x54\x39\x3a\x54\x45\xcc\xc6\x0e\x25\x3f\x66\xfb\x84\x1d\x79\xe4\xeb\xaf\x93\xec\x4b\x4e\x48\xe1\x3c\x2e\xe0\xf6\x27\xfa\x78\x45\x01\xdd\x88\x3c\x9a\xf5\xb6\x79\xc8\x85\x45\x2f\xd4\xe5\xa2\xb0\xed\x0e\x40\x84\xcd\x39\xd0\xc5\x61\x13\xd5\x9e\x98\x78\x63\x47\x2f\x30\x5c\x1a\x13\xc5\xc6\xd7\x6e\x15\x3f\x2e\xcd\x8e\xac\x61\xe2\x47\xa6\xbf\x14\x5b\xc0\x67\x52\x39\x4b\x3d\xc4\x67\xfa\xdd\x40\xa6\x7c\x46\xa1\x85\x18\x6e\x23\xad\xdd\xf8\xeb\xc1\xb0\xbe\x85\xf1\x22\xbf\x94\x2e\x5c\x8d\x6d\xe4\xe4\x6e\x7a\xab\x50\xcf\xef\x60\xfd\xa5\x1f\x8d\x5a\xaf\x45\xe9\x2a\xbd\x6b\xd9\xf4\x53\x4c\x57\xa4\xfd\x2d\x72\x58\x2e\x5b\x87\x19\x69\xab\x59\xee\xf6\x3e\x86\x4e\x71\x5d\x84\xc6\xb4\x9f\x0b\xc7\x52\x48\x7a\xd0\xe5\x1b\x8a\x30\x40\x84\x97\x1f\x9d\x61\xa3\x18\xc8\x04\x7c\x05\xe2\x77\x3e\x74\x90\x06\x47\x48\x07\x0e\x7d\xee\x94\x2d\x0d\x83\xdf\x49\x2f\x10\x21\x13\x02\x31\xd8\xe7\x6b\x21\x14\x0c\x75\xa7\xc2\x8b\x59\x6f\xba\x5b\x27\xad\xc8\x2e\x69\xf7\xc1\x24\xae\x72\xd2\x53\x5b\x8d\x8c\xf9\x21\x1c\x41\x37\x28\x15\xba\xd9\xc9\x0c\xb0\x20\xa2\xdc\xbc\xab\x2e\x1c\xcc\xf9\xdc\x51\xf7\x92\xb0\x3d\xea\x67\x96\x21\x5b\xa5\x72\x96\x49\xfa\xcd\x50\x20\x04\x1b\x93\x5d\xca\x2d\x37\xab\x90\x7f\x00\xd3\x09\xd0\x45\x6e\x24\x29\xac\x9d\x8e\x08\x74\x73\xb7\x50\x81\x60\xbc\x7c\xc0\x0b\x61\xd1\x8a\x0d\x3e\x06\xc0\x2a\xde\xbc\x8d\xa3\x48\x8f\xf7\x07\x50\x94\xff\x72\x04\x31\xea\xc9\x8d\x29\xfe\x09\xa2\x22\x24\xc3\xde\x47\x7d\xd3\x10\x0b\xee\xcb\x04\xfc\x74\xb3\x86\x19\x28\x48\xc2\xba\xbb\x0a\x8f\x5e\x88\x1d\x99\xa4\x66\x8b\x7e\x3a\x11\xd7\x7a\xef\xd3\xc5\x81\x34\x0b\x45\x1a\xf9\x95\x40\x27\x01\xc4\x7c\x69\xa8\x1c\x39\x84\x7e\x4b\x49\x8d\xef\x3c\xc2\x7b\xa1\x54\x1d\x29\xe5\x3a\xc4\xd5\x12\xbe\x16\x2f\xaa\x40\xd5\xd1\x9c\x11\xcb\xda\xc0\x89\x5a\x0b\x50\x26\x99\xde\x06\x36\x07\x39\x38\x81\xa0\x99\x4c\x88\x8a\xc6\x56\x08\x3a\xdc\xb2\x18\xd7\xf2\x6d\x36\x36\xaa\x44\xc9\x88\xfe\x90\x05\x33\xce\x8d\x24\xad\x42\xab\x15\x38\xb6\x96\xfe\x4f\x1c\x11\x1d\x7e\x14\xd1\xe0\x85\x99\x69\x5a\xfe\x3e\x08\xcb\xea\x5c\x24\xda\x68\x81\x55\x4e\x90\x82\x77\x30\x25\x27\x9b\x36\xf1\x8b\xa8\xfb\xcf\x73\x65\xc1\x72\x20\xcc\xdb\x0e\x13\xd8\x8c\x5e\x07\xaa\x7e\x6e\xab\xe5\x41\x4a\x8d\xc2\x55\xb7\x00\xeb\x48\x79\xd4\x08\x91\xb7\x33\xf8\x5b\x33\x8c\xd2\xc6\x22\x0e\xc3\xb3\xc7\xbb\xb5\xc9\xd0\x88\xa7\x41\x8b\x1d\xfe\xc5\x99\xdb\xf0\x0b\x3a\xcb\xee\x09\xdc\xd7\xda\x4d\x7c\x9e\x03\x7e\xa1\xfc\xe5\xc1\x8c\x3f\x03\xa9\x09\x13\xb8\xf9\x01\x11\xd7\x7a\xb2\x44\x19\xe8\xa8\xa8\x74\x53\x15\xe5\xdd\x84\xe3\x22\x00\x08\x4b\xe3\x04\xcc\xf8\x4e\xa5\x6d\x6c\x1a\xd9\xd7\x83\x09\xaf\x9f\xb4\xe5\x5e\x10\x0a\x26\xfb\x6d\x4d\x76\xa9\x71\xbb\x0e\x53\x7a\x7c\x9d\x71\x59\xf4\x5c\xfd\x07\x0c\x8b\x98\x8a\xc4\x99\xd0\x02\x0b\x81\x24\xb7\xa3\x8c\xcf\x61\xb2\x93\x96\xa6\x88\x6e\x6b\x53\x86\x5a\xd6\x0a\xdb\x99\xf8\xcc\xe2\x08\x11\xc3\x9a\xbe\x09\xce\x1c\x6b\xa3\x88\x80\xd5\xca\x71\x49\x18\x22\x44\xde\xa2\x39\x0b\x0a\x05\x49\xea\x24\x1f\x96\x60\xed\x17\x31\x41\xc1\x75\x5a\x65\x1a\xc9\x48\xf4\xcf\x6f\x43\xa7\xcf\x65\xa7\xa3\xad\x64\x3c\xf9\xf3\x9d\x8b\xf3\x35\xd4\x82\x77\x9f\x8a\x55\xfc\x2d\x27\x05\x7a\xbe\x3d\xa1\x20\xd0\x61\x00\xd0\xe0\xe7\x99\x5b\x70\xcd\xd2\xc5\x2d\x52\x44\x91\x39\x2c\x86\x75\x30\x25\x92\x42\x70\x39\xe2\x67\x57\xf6\x65\xda\x48\xd0\x72\xb3\x0a\xff\x2a\xb0\x5b\x87\x53\xc2\x03\xc0\x70\x40\xe4\x5f\x3e\x4b\xb0\xcc\x06\x60\x2c\xb4\x93\x51\xcb\x62\x7d\x50\x0f\xbf\x80\xec\x84\xd9\xc2\xf7\x5f\xa5\xb4\x4a\x5f\x92\x02\x59\x35\x90\x30\x68\x6b\x71\x62\x02\x23\xbe\x4d\x61\x73\x50\xdc\x05\x50\x70\x20\xb2\x5b\x5f\xa5\x8a\x21\xc4\x7d\xd7\x5a\xd7\x2d\x31\x3d\xfe\x93\x5b\x42\x87\xbc\x2d\x9b\x00\xba\x09\x56\xca\x80\x96\xad\xc7\x90\x55\x97\xb1\xd2\xbf\xb9\x78\xf1\x53\x0b\x65\x65\xe1\xf9\xaa\x39\x2b\x9c\xd5\xd6\x46\x98\xec\x20\x59\x2d\x2a\xd9\x0c\xf8\x88\x45\xa5\x8f\xdc\x69\x26\xea\x79\x41\x30\x56\xa9\x48\xb0\x0c\xa2\xd4\x52\x6c\x23\x97\xd7\xa9\x89\xf5\xfa\x71\x49\xea\x1e\xe5\xe0\xe0\x2f\x85\xec\xe8\x80\xa9\xdf\x17\xd4\x62\x59\xfd\x06\xc2\x4a\x85\x15\x90\xc9\x12\x7b\x8d\xff\x8e\xcb\x1c\xcd\x9a\x8c\x8c\x49\x84\xcd\x2c\xe6\x1d\xd3\x4b\x90\x7a\x86\xd1\x2b\xec\xcc\xdd\x77\x00\x68\xb1\x88\xf2\x11\xf4\x36\x1b\x4f\xc2\x39\x6c\x86\xe3\x30\x2b\x6d\x93\xdc\xef\xb9\x60\x86\xd3\x6c\xdb\x2e\x25\xde\xde\x86\xe4\xcc\x63\x2c\x35\xdf\xb1\x50\xae\x31\xd2\x35\x42\xd0\xf0\xdf\x5d\xdf\x68\x1d\x93\xda\x57\x9c\x98\x49\xe9\xf5\xef\x1d\xb1\xac\x38\xc8\x92\xbe\x1e\x91\x7c\xed\xfd\xea\x2e\xc7\x86\x31\x9e\xe4\xb5\x53\x94\x9f\x3e\x09\x0c\x13\x8f\x80\x09\xb2\x05\x1f\x12\x92\x5f\xb7\xf2\xd9\xdc\xc7\x4d\x50\x62\xb7\x25\x99\xd7\x3c\x7a\xd5\x20\xdc\xe3\x1e\xa6\x25\xc7\x11\x85\x3f\x3e\x29\x30\xdc\x9c\xfa\x3f\x88\x45\xa8\xab\x4b\x64\x0c\x58\x50\x7b\xa6\x83\xe7\xf4\xb2\x7e\x99\x6e\x12\x86\x7f\xce\x5b\x7b\x5e\x0f\x58\xc2\xba\xf6\x4a\xc9\xad\x0d\x74\x54\x4a\xd3\x94\x48\xd7\x2b\xd5\x88\x02\x87\x76\x25\x24\x1f\x78\xfc\xc1\x5f\xa4\x95\xbb\x3f\x85\xe4\x3a\x52\xd4\x81\xa2\x85\x86\xac\xe4\x91\x6a\x45\x38\xd2\xba\x68\xcc\xa3\x29\x3b\xd8\x10\xa4\x47\x87\x40\x26\x74\xf7\xa3\x93\x12\x3c\xc6\x3e\x98\xbd\xa7\xf6\xbd\xcb\x7c\x85\x48\xee\x29\x9a\xe2\x91\x7a\x24\x91\x17\x21\x4a\x79\x3a\xec\xb1\x39\x8f\xee\x39\x74\x0e\xda\xe0\x46\x6f\x9a\xc5\x49\x82\xee\x15\xe1\x32\xc9\xa4\xdd\xec\x64\x77\xf4\xb8\xd1\x02\x9b\xaf\xc1\xf2\xd4\xe5\xb6\xd5\x65\x3d\xd4\xe5\xe0\xbd\xb1\x47\x88\x99\x47\xb9\x27\x4c\x3e\xda\x6c\x1b\x5b\xe9\x05\x87\x1a\xd8\xba\x94\x49\xa0\xa8\xf6\x36\xf5\x57\xda\x64\xf6\x2f\xdc\x14\xd8\x29\x6a\xb2\x33\x1f\x72\x82\x0a\x0a\xee\x14\xf2\x8a\x7f\xd3\x58\x7b\xc9\x73\x00\xbb\x39\x06\xe1\x9c\x9f\x62\x64\xce\x47\x7f\x17\xce\x93\x38\x31\xaa\x01\xa3\xec\x56\x58\xb1\x0a\x0d\x72\x42\xd0\x22\x76\xf1\x9c\x18\x3f\x7e\x4a\x6b\x05\xb5\x9f\x6e\x74\xaf\x75\xdd\x70\x32\xcc\x7f\xc6\x60\x8f\x69\x96\xf4\x2c\x66\x07\xd5\xa4\x12\x38\x79\xa6\x17\xa4\xba\xa3\x14\xf1\xb7\xa2\xdc\x95\xfc\x15\xcb\xeb\x02\x92\x29\x12\x88\xac\x59\x64\xca\x4d\x33\x68\xc7\x1d\xf1\xe7\x76\xa2\xfe\x8a\x4a\x0f\x12\x25\x1e\x58\x7e\x5a\x22\x11\xca\x3a\x21\xbd\x8b\x25\x45\x3c\xe6\xe7\xcc\xa3\x7f\x9c\x5f\x5d\xc2\x6c\xa3\xf7\xcc\xd9\x9d\xa8\x96\xdf\x14\x86\xb2\x69\xfa\x19\xf9\xf2\x2d\x69\x1e\x86\x64\x47\xb0\xfd\x06\x89\x7a\xaf\x44\x41\xad\x8c\xa8\x0e\x4a\x33\x2b\x60\x30\xb5\xc2\x04\x95\x9f\x1b\xbe\xa6\x13\x86\x5d\xc9\xd4\x57\xb9\x70\x9f\x08\x13\x1c\x56\xc5\x5e\xf2\xdc\x7b\xfd\xe9\x93\xe0\x21\xb8\x92\x7b\x1a\x36\x0c\xbb\x9c\x31\xe5\x59\x5e\xa6\x5a\xa3\x8a\x50\xd1\x57\xbf\x0c\x65\xcc\xa9\xaa\xcf\xab\xa2\xfa\xdc\x4d\x7c\xa0\x89\xb2\x96\x89\x03\x4a\x7b\x5f\xea\x71\x07\x17\xbb\xae\x77\x83\x76\xb7\x63\xb3\xa8\x1b\x1b\xb0\x0e\x34\x3e\x05\xba\x61\xcd\x9a\xc0\xb8\x97\xe3\x72\x7a\xb6\xdd\x6d\xee\x6b\x11\xfc\x0d\x40\x30\x8c\xe1\x87\xf2\x10\x3f\x3e\x81\xdf\xde\xc3\x60\xe7\xc2\xd9\x08\xaa\xde\xb5\x4c\xbf\x6f\x65\x0b\x0c\x0a\x24\x10\xa8\x07\xfa\x69\x96\xc9\x9a\xe6\xea\xc8\x75\x77\x26\x4b\xda\x45\x6a\x51\x73\x58\xce\xe7\xf7\xb6\x36\x03\x9c\x5a\xd6\x4e\x3c\xdc\x60\xe6\x60\xa8\x22\x34\x6c\x99\xbf\x71\x1e\xe2\x66\x11\xfd\xf0\xaf\x2b\xba\xad\xd1\xc6\xf6\x46\x56\x26\xc5\x56\xd3\x3f\xb5\x40\x58\x66\x30\x95\x3e\x2e\x64\x26\xf0\xe0\x2a\xed\x3e\xc5\xb1\x53\x8e\x45\x1b\xf3\xeb\x8d\x6c\x45\x68\xa4\xc5\x2d\xd5\x26\x36\x53\x2f\xcf\xb4\x57\xeb\xe2\xd9\x3a\x47\x2f\x88\x88\x84\x93\xa3\xf2\xe6\x5b\x61\x71\x9a\xec\x04\xc6\x7a\x60\xf0\x46\x1b\x13\x4e\x8a\x8f\x91\xc3\x2c\x07\xb7\xcb\x64\xb2\xe0\x06\xd4\x2b\xc1\x37\x83\x1e\x19\xd6\x95\x59\x59\x06\xa1\x0c\x38\x6a\x83\xdf\x20\x8e\x44\xa1\x1e\xd9\xc3\x7a\xb8\x26\xba\xf1\x1c\x9c\xc8\x42\x4e\xd1\x26\xab\x4a\x30\x79\x4f\x28\xc6\x75\xfd\x93\x49\x82\x36\x32\xaa\xed\x97\x4a\x47\x0d\x3c\x6c\x4b\x6f\x2b\x99\xe1\xb7\x27\x42\xdc\x4d\x59\x6b\x7e\x50\xbb\x94\x18\x5e\xde\x45\x17\x97\x25\xb8\x13\xb4\xaa\x78\x8a\xce\xb5\xea\xce\x7f\x5d\xb2\x67\xf6\x24\x38\x98\x96\xec\x3f\xce\x85\xf4\x5e\x03\xb4\x5d\xdb\x5e\x67\x89\x3e\x7f\x88\xbc\xac\xfa\x21\xd1\xaf\x10\x5d\x1e\x5f\xa7\xa3\xe3\xe4\x61\x75\xe5\x9e\x98\x32\x19\x48\xa1\xaa\x55\x8f\x09\x88\xea\x36\xc4\x48\xcb\x9d\x55\x3b\xac\xaf\x18\x4c\x63\xe1\xde\x7c\x68\xbc\xfe\x32\x23\xa9\x37\x52\x17\x1c\xbb\x80\xf3\xe4\x09\xf9\x63\xe1\x75\x54\xb0\xb0\xb7\x2a\x5b\xa9\x7c\xa1\x37\x27\xb8\x18\x58\x90\xec\x55\x9c\x8b\xf2\x74\x14\x63\x1a\xd9\xf6\x71\xda\x91\x5c\xc5\xfd\x6a\x92\xab\xbd\x20\x11\x62\x04\x4e\x7c\xfb\x52\x33\x99\x02\x77\xcf\x1c\xbe\xcd\xa7\x89\x4b\xff\xf0\xb9\xae\x64\xda\xc0\x1a\x35\x97\xbf\xf7\x68\x2b\xdd\x23\x32\xf5\x50\xeb\xdc\xe3\x22\x2e\xab\x35\xae\x9e\x7c\x2c\xaa\xf0\x24\x84\x77\x57\x70\xbb\x12\xc1\x81\x01\x62\x66\xa8\x9b\x29\x9f\xc7\xf5\xe5\x08\x22\x18\x1d\x1b\x25\x64\xb3\xca\x44\x9f\xdd\x7d\xc3\x8a\x5a\xbe\xb7\x8b\x05\x2f\x97\x2a\x46\x30\xab\x67\x4c\x9f\xb5\x5c\xec\x27\x8f\xb7\xd1\x27\xea\x60\x5b\xd7\x04\xf8\x48\x92\x26\x73\x50\x22\x01\xbe\xae\x7f\xef\x16\xf1\x66\x67\x83\x8f\x60\x6c\x23\x9a\xb7\xfc\xcb\x77\x7e\xaf\x73\x5c\xa7\x34\x6f\xc8\x40\x06\x5d\x93\x85\xb0\x1b\x57\xd5\xc0\xa5\xe7\x2b\x96\x50\xc6\x05\x0d\x04\x0c\x18\x6d\xdd\x4f\x81\xaa\x8a\x47\x24\x70\x1d\xa6\x66\x65\x54\xf7\x5f\xe3\x39\x11\x66\x89\xf6\xda\xfe\x91\xc4\xdd\x5d\x49\xa1\x44\x41\xa4\x78\x6a\x39\xc9\x7f\xd2\x88\xdb\xcc\x8d\x76\xf5\xbb\xdf\xd7\xab\xd6\x5d\x67\xc4\xf6\x2a\xac\xfe\xec\x78\x2d\xd9\x79\x50\xe7\x09\x6c\x61\x84\xc5\x0d\x28\x50\xb7\xa0\x60\xee\x33\xbe\x62\x1e\x60\x35\xba\x56\x52\xef\xd4\x34\x35\x13\xb9\xb8\x26\xea\xb4\xf7\xb6\x8f\x25\x3d\xcd\x43\x73\x43\xc2\xa5\xa9\xd9\x2c\x34\x6e\xb6\xf1\xb4\x0f\xf7\x6e\xf9\xc0\x30\xdf\xc6\xb7\xc5\x49\x57\x62\xe5\x2c\xcc\x6a\x88\x1a\xc4\xa7\x4e\x90\xbe\x61\xcd\x7f\xe9\x16\xfa\x16\x2e\xd3\xf0\x81\x25\xcc\x72\xe4\x20\x3b\xe9\xaa\x3f\x6d\xc0\xcd\xc2\x3e\x1c\x14\x1e\x68\x1a\xc5\x9a\x8d\xeb\x81\xd9\x23\x7f\xa0\x4e\x53\xbf\x20\xae\xa7\x56\x48\x5b\x5b\xdf\xf5\x8f\x92\x84\x84\x82\xb8\xd6\xbc\xf5\xc3\x6d\xd1\x6c\xcd\x5f\x46\x45\xd5\x82\x48\x88\x5a\x64\x47\x74\x88\x8b\x1a\x58\xe0\x52\x72\x5e\x7a\x80\x24\xfd\xb7\x96\x4a\x9b\x4e\x59\xd2\x59\x15\xaa\x5c\x9e\x39\x67\x5c\x9b\x96\x71\xb9\xbf\x36\x3b\xe2\x0d\x24\xe1\x95\x1a\x47\xd1\x37\xba\xe9\xa7\x92\xb0\xc3\xa4\x8d\x5c\x47\x5c\x0b\x58\x9a\xf7\x2a\x4f\x26\x6c\x01\x66\xcf\x7e\x73\xe7\x11\x8d\x0e\xe7\x32\xd2\x2d\x41\x3f\x7e\xc6\xb7\xbb\x99\x84\xff\x1a\x63\x69\x87\x13\x9c\xd0\x0c\x87\x7d\xe9\x5f\x1e\xf1\xcf\x5c\x5a\xc7\x00\x5c\x24\x8c\xa2\xb1\x96\x06\x21\xa5\xda\xe2\xfe\x7b\x02\x03\xcc\x3d\xc8\x44\x81\x0d\x8d\xff\xcd\xf5\x3b\x48\x83\x4f\x54\x25\x85\xb6\xd2\xc4\xca\xa7\xe2\x9c\x86\x08\x9e\xf2\x8b\xf0\xfd\xa6\x4f\xac\x18\xc8\x2a\xe2\x4b\xf6\x8c\x60\x1a\x3b\x9a\x47\x7b\xa0\xf0\x3a\x57\x42\x94\x2b\x3f\x49\x36\xbf\x0f\xb1\xc4\x9b\xe2\x0f\xd6\x0c\xad\x31\x13\x4a\xd5\x22\x06\x05\x77\x64\xa6\x17\xf1\x76\xe4\xf3\x63\xb5\x0c\x54\x1d\x76\x2f\xa8\x08\xe0\x98\x38\xe7\x6f\x86\xad\xe7\xe7\x6e\xb3\x67\xde\xf1\x1b\x17\x37\xcd\x21\xbc\xab\x49\xc1\xd2\x6d\x99\x67\x21\xc8\xa9\x76\x05\xcb\x75\xde\xf6\x9f\x83\xd6\x34\x26\xf2\xcb\xf0\x74\xfd\x2e\xcb\xc7\xe0\xb6\xf3\xa0\x1a\x3a\x00\x0c\x7b\x1f\xe5\x41\x02\x75\xd8\x74\x1d\x97\xb2\x33\x1c\x6d\x26\x95\xaa\x96\xe6\xc5\xd0\xfb\x75\x24\x4f\xd2\xbc\xd1\x45\xdd\x5e\x72\x4a\x83\x0d\x17\xcf\xd5\xa7\xe7\x15\xd7\x2e\xcc\x16\x3f\x95\x07\x81\x4b\xf8\x91\x3a\x7e\xfb\x46\x8d\x70\xfc\x4f\x8e\x56\x8b\x05\x24\xea\x2e\x85\x6a\x32\xde\x50\x7e\x35\x4a\x7c\xb6\x13\xd9\x62\xb8\x5f\x38\xd1\xc8\x5a\x14\xcd\xa8\x37\x64\xfc\x36\x0e\x78\xbe\xf0\x6c\x99\x08\xcd\xf4\xc9\x61\xea\x68\xdb\xd9\xe9\x69\xa3\x29\x8a\xab\x0f\xde\xc1\x6a\xd8\xf9\xa8\xcb\x6f\x1d\x13\x55\x01\x54\x2d\xc5\x31\x49\xa3\x42\x70\xd1\x01\x83\xfc\x54\x2e\xb6\x9d\xd4\x3d\x98\x7a\x73\xb7\xd1\xc8\xd9\x1b\xad\xfb\xe6\x76\x7b\x92\x43\x5a\x4c\x56\x6c\x29\xa1\x67\xd8\x78\x08\x50\xd4\x65\x05\x44\xdd\x48\xb3\xe8\x42\x16\x11\x07\x44\x00\x8b\xcc\x32\x0d\xe5\x00\x8d\x1b\x37\xeb\x5d\xfe\xfd\xd5\xcf\x61\x67\x19\x47\x4b\x4e\x7a\xb1\xa1\xf4\xb0\x4e\x0b\xa2\xdb\x7d\xc5\x6f\x71\x13\xb3\x0c\x3f\xf1\x1b\x6f\x3b\x1f\xed\x3d\xe8\x3d\x42\xd6\x54\x59\x09\x81\x88\x4c\xa9\x8d\x76\xa8\xba\xc9\xc7\xb0\x13\x19\x31\x18\x26\xbd\xa8\xae\x90\x0a\xa6\x11\xa2\xce\xac\x2d\x5b\x03\xc6\x86\xdb\xe9\xfa\x38\x9f\xe5\x18\x7f\xe0\xc6\xc8\xd0\x3f\xbf\x96\xfb\x8e\x4a\x9a\x0b\x24\x79\x07\xa6\x03\xfc\xf3\x63\x2a\x93\x54\x0f\x0c\x8b\xf0\xc3\x52\xc7\x48\x2f\xf6\xa2\x1b\x20\x61\x2e\xda\xbf\x74\x08\x2d\xa2\xef\xee\x30\xc9\xbd\x39\xff\x84\xce\x37\x5a\x8f\x7b\xaf\x98\x25\xa6\x8d\x9c\x49\xb1\x98\xaf\x24\x9b\xad\xfd\x6d\x40\x16\x2d\x29\x73\x81\xc1\x73\xaa\x3d\x75\x71\xa9\xea\x00\x58\x4b\xec\xf5\x6d\x24\xc2\xe5\x2e\xbf\xe0\x39\x9d\x5e\xc9\xd1\x74\x42\xaa\x66\x8e\x95\x97\x52\x58\x10\x9e\x9b\x6b\x14\xef\x40\xe8\xf9\x5f\xff\x81\x83\x41\xa4\x74\xfa\x3f\x88\x8a\x95\x8c\x30\xe8\x30\x7a\x4a\xa4\x83\x26\x27\x31\x4f\xdd\xb2\xc2\x32\x78\x08\x89\x4a\x5e\x78\xc0\xed\x53\x14\x71\xf1\x75\xd5\x8a\xc9\xca\x08\xa4\xa5\xeb\xb7\xcf\x16\x32\x39\x66\xac\xc8\x9b\xbf\x32\xe7\xa2\xdc\x80\x80\xc7\x90\xbd\xb5\x55\x87\x29\x84\x68\x86\xaf\x14\x33\xb1\xfa\xf2\x5d\x4c\xb7\x5d\xa7\x22\x73\x2c\x8d\xa4\x58\x25\x2b\x26\xb6\xee\x7f\x38\xc8\xae\x0a\x8b\x9d\xf4\xca\x5d\x52\x04\x50\x8b\xe3\x4b\x43\x85\xdf\xa9\xca\x93\xdd\x92\x41\xd9\xa6\x27\xe3\xf6\xa9\x4f\xf3\x29\x4e\x56\xcb\xa0\xbd\xaf\x1f\x03\xda\xbc\x19\x1e\x35\xc3\xde\xc3\x35\x4b\xcb\x68\x5d\xbf\xe2\x0a\x66\x64\xbd\xd4\xf2\x5b\x8d\x4c\x1e\x4c\x8b\x48\xee\x13\x7a\x2e\xe0\xc2\xca\x3d\x33\x7e\x0b\x71\xac\xab\x95\xbe\xab\x78\xa0\xd5\xb3\xda\x09\xe6\x26\xc6\xb1\x54\xca\x77\x99\xc5\x98\xa7\x42\xf8\xf8\x11\x95\xf8\x2f\xec\x69\x96\x1b\xa1\x11\x5f\x3e\xba\x7f\x86\x31\x85\x95\x39\x1d\x77\xf6\x7c\x3f\x12\x62\x81\xa3\x50\x2e\x91\x67\x01\x35\x6c\xa0\xca\x30\x35\xb6\x22\xc6\x32\x43\x1b\x16\x1b\x48\x28\xf1\xda\x9f\x87\x9b\xfc\x5d\x2b\xb3\xae\x63\xc8\xce\x35\x7b\x97\x82\x25\x0f\x63\x64\xa7\x8e\xee\x0d\xde\xd4\x56\x1b\xe6\x3c\xab\x1f\x15\xaf\x65\x3a\x10\x57\x82\x5c\x08\xb1\x37\x83\x3c\x8b\x8e\x83\xb6\xa8\x36\xe3\xda\xd9\x39\xd8\xa3\x1d\x7f\xf4\x85\x5a\x3b\xb8\x6b\xc2\x43\xdc\xd4\xe6\x74\xf9\x2d\x70\x5f\xee\xfb\x93\x4b\x31\x72\x68\x63\xc0\xa3\x89\x43\xc6\x76\xf3\x48\xc3\xf9\x7c\x46\x7e\x72\xac\x18\x8f\x1b\xcc\x11\x50\x84\x09\x1f\x8e\x34\x96\xab\xdf\xca\xce\x91\x56\x4f\x68\x62\x6e\x56\xc7\xd1\xe9\xaa\x1f\xf8\xb5\xd0\x00\x09\x3e\xe8\xdc\x43\x5b\x49\x96\x04\xe3\xfa\x26\x9e\xb6\xb5\xbe\x2b\x1f\x19\xb7\x95\xe9\x07\x33\x2b\xa6\x47\xda\x05\x49\x5d\x5c\x90\x1a\x83\xa5\x9d\xad\x9a\x8c\x4b\xd8\x08\xc8\x20\x44\x09\x2f\x2e\x92\xd1\xd3\xf8\xb4\x82\x57\xd6\x04\x7b\x5d\xad\x77\x1f\xc0\xbe\x33\x0a\x35\x92\x4a\x5c\xee\x8d\x5c\xb1\xbb\x49\x05\x96\x02\x80\x89\xf2\x82\x61\x45\x5b\x2b\x93\x9d\xc1\xcf\xa6\xcf\x06\xd1\x51\x71\x78\x28\x08\xdc\x8c\x62\x31\xf1\x0d\x7d\x9b\x7a\x05\x5d\x7a\xac\x2f\x21\x6a\x11\xee\x68\x29\x19\xd4\xea\x67\xe2\xc2\x61\x6e\x48\xe1\x42\x3f\xf8\x7a\xf9\x68\xfa\xc1\x12\xaa\xbb\x51\x95\xca\x9d\x85\x9a\xc6\xd9\x70\xa8\x7d\x07\x99\xd2\x1f\xb4\xb7\xe2\x24\xeb\xd3\xbd\x28\xee\x1c\x18\xa4\x32\x3f\x17\xa8\xdb\x2c\xe5\x48\x3f\x84\x6c\xb4\x98\x94\x3f\x88\xfa\x1d\xc6\x30\xd7\xae\x6d\x0c\x9b\x3b\xf7\xe5\xc8\x03\x42\x64\x04\xd7\x66\xde\x68\x22\xcf\xb3\xe3\xfd\x1a\x8e\x42\x57\xae\x61\xc4\x0e\xa3\xb1\x19\x70\xc3\x24\x5a\x6c\x80\x1a\x89\x33\x25\xa8\x4f\x22\x2b\x05\xf9\x89\x2f\x0f\x81\xdf\xe0\x72\x01\xc1\xa7\xf0\x83\xaf\x7b\x03\x8c\x94\x50\x95\xc5\x37\x16\x6f\x6f\x1f\x35\xf5\xde\x0c\x7a\x34\x87\x5f\x45\x25\x80\xd2\x42\x36\xfb\x33\x5d\x05\x1b\x5a\xc4\x0f\x32\x0b\xbd\xa0\xc6\x38\xe7\xf8\x25\x2d\xe9\x66\xef\xd8\x21\x39\xea\x11\x82\xd1\x17\xe7\xec\xa3\xa0\xa3\x53\xe8\x48\x26\xfe\x4a\x44\x24\x16\xb9\x99\x9b\x5a\xb9\x45\xe0\xaf\xdc\xa7\xa1\xbf\xdf\xcc\x74\xeb\xf1\xef\xfc\x48\x9b\xd3\x66\xc2\x5e\x80\xff\x5a\x41\x74\x77\x61\xe3\xef\xca\x67\x3f\x76\xc2\xd3\xe6\x0f\xab\xe5\xcf\x15\xc8\x00\x42\x2e\x58\xf1\x48\x55\xc6\x4c\x50\x26\xc0\xa7\x80\x50\x16\xd8\x50\x6a\xf7\x07\xf3\xa1\xc5\xcd\xee\x41\xd4\x5b\x46\x3f\x7b\x34\x39\x8f\xd8\xf6\x6f\xe3\x12\xc6\x37\x4e\x85\x6f\x82\x9f\x7b\xb8\xfa\x67\x75\xab\x4c\x10\x7f\xc8\x0a\x96\x04\x3f\x71\x9d\xd4\x22\xa3\x9e\xd4\x0f\xe6\x50\x4b\x4f\xa1\xbb\x7a\xd1\x30\xd7\xd4\x00\xa5\xa2\x11\xa3\x79\x3d\x92\x6e\xdc\xd5\x38\x0d\x38\x71\x86\x7b\xcf\x5d\x8c\x16\xcc\x1d\xff\x2e\xf0\x3c\xbc\xab\x9e\x83\xb3\xe2\x4d\xdb\x40\x45\x85\xea\xe3\x4b\xeb\xf7\xc0\x5f\x0b\x61\x83\x38\x00\xb4\xb0\x2a\xe2\x19\xa8\x5c\x26\x8c\x50\x85\x6e\x92\xd4\xb0\xa5\x2f\xd1\xa7\x55\xaf\x53\xf0\x11\xae\x57\x5b\xf3\x3a\x26\xad\x2d\xd6\x05\xc0\x56\x20\xcc\xf1\x72\x00\xc9\xad\xf4\x9f\x73\xd0\x72\xf8\x50\xfe\xcc\x84\x19\xbb\x24\x18\x11\xe0\x53\x11\x46\x94\xfc\xed\x48\x4d\xc9\x18\x73\x62\x0f\x1a\xf8\x69\x2c\xff\x93\xa6\x15\x1a\x1e\x3d\x9b\x01\x9a\x5f\x76\xf9\xea\x36\x89\x98\x16\x07\xd9\x90\x36\xae\x25\x06\x8e\x5c\xe6\x88\x25\x53\x12\x35\x1a\x9d\x3e\xe1\xd0\x8d\x16\xef\x1e\xee\x27\xd6\x15\xd2\x96\xce\x2f\x8a\x29\x99\x6d\xf7\x02\x2b\x9d\x35\xee\x1f\xbe\xb1\xbe\x0b\x55\xcd\x7d\xb5\x68\xcf\xb6\x09\xba\x5a\xea\x56\x13\xd6\xb9\xdc\x9d\x9f\x73\x98\x1c\xf4\xda\xf6\x26\xfe\xb9\xab\x64\x4c\xfc\x9a\x9a\x4d\xef\x45\x23\xbd\x83\xa7\x5f\x95\x1e\xd7\x52\xbe\x39\xa1\xfd\x13\x4d\xcf\xeb\xcd\xe1\x7a\x4b\xc5\x96\xe7\x68\xc0\x10\xcf\xf0\xa9\x97\x84\x91\xe0\xb6\xf7\xf0\xaa\xec\x6d\xf1\xf6\x1c\x70\x83\xe2\x41\x28\x59\x2d\x41\x46\x1d\xf8\xf3\x7b\xe2\x9c\x96\x1b\x95\xec\xd0\x73\x14\xc3\xdc\xb8\xda\xac\xf6\xfc\x91\xb5\x86\xae\x1e\x7b\xd7\x01\x57\x0f\xef\x3b\xef\xb7\x43\x4f\xb6\xb1\x39\x3a\xed\x29\xc9\x06\xfe\xe2\x00\xa3\xd7\xe2\x67\xb4\x1b\xce\xc9\x36\x99\xe4\xd8\x7c\x76\xd8\xd3\x9b\x9d\x76\x45\xa1\x6e\x23\x4d\x7e\x15\x1e\x50\x29\x07\x37\x08\x6d\x50\xa6\xeb\xfa\xc1\x77\xc1\xa2\xfc\x25\xed\x74\xc7\xcb\x3d\xf7\xdc\xf4\xca\x47\x10\x9e\xb9\xe1\x5a\xe2\x27\xf3\xba\x34\x72\x86\x2c\x8a\x3a\x36\x48\xb9\xea\x0b\xd7\x27\x14\x8b\x73\xb1\x5e\x6b\x38\xda\xe4\x9b\xfe\x29\x90\x28\x09\xa1\x8c\x94\x59\x11\xee\xea\x54\x56\x95\x99\xfc\x68\xa2\xe6\x71\x46\x57\x55\x8e\xdf\xcb\x3a\x86\x8d\xbe\x2c\x7f\xae\x0c\x2e\xcc\x68\x0a\x64\x5e\x16\x66\x79\x62\x3a\x99\xfe\x2d\xbd\xa3\xbd\x40\x93\xf1\xea\x1a\xec\x1c\x2a\xb4\xb8\x93\x5b\xfd\xfb\xc0\x87\x53\x8d\x92\xff\x58\x02\x41\x2d\xb1\x7a\x23\x45\xb5\x81\xa2\x81\x73\x58\x20\x22\x9e\xfa\x18\xdd\x81\x8f\xb5\xd3\x6e\x22\x5e\x75\x7a\x30\xb6\xef\xac\x84\xda\xa8\xea\xcc\xc2\xae\x6b\x88\xbb\xad\x35\x57\xe9\x4c\x85\xc4\x48\x32\xd1\x45\xf9\x01\x87\x66\x18\x81\x09\xec\xe2\x4e\x92\xf4\x6e\xd6\xa6\xee\x9c\xf0\xf3\xd8\xfa\x6e\x83\x6e\x90\x55\x78\x75\xbf\x45\xa8\x3b\xe9\xba\x98\xfe\x90\xb9\xdf\xc4\xc1\x3a\x1f\xda\x43\x2d\x61\xc3\x6b\x38\x71\xd1\x3d\x95\x9c\xba\x49\x75\xc4\xee\x63\x39\x29\xcf\xd1\xfd\x7d\xf3\xd0\x85\x81\xff\xfc\x8c\xff\x16\x95\x9f\x70\x15\x23\x8c\x8a\xe8\xbc\x6a\x6d\x06\x19\xb1\xa5\x63\x72\x5a\x79\xf7\x96\xf8\x9b\xb4\xc3\xbb\xf8\xed\x6c\x88\x2c\x5f\x5f\x67\x13\x07\x30\x57\x00\xa9\x7c\xdf\x09\xe0\xf7\x07\x95\x76\x10\x9d\x28\xb7\x5c\x26\x72\x49\xa4\xa1\x73\x1b\x5f\xc0\x3b\x92\x5a\x1a\x16\x72\x16\x2d\x0a\x0e\x0b\x37\xc6\x2b\x75\x95\xf4\x0a\xdb\x8a\x53\xdd\x90\x83\x35\x87\xc2\xe0\x1f\x09\x1e\x62\x18\x18\x25\x9f\x69\x0a\x4d\xc8\x9e\x4e\xfa\x65\x26\x78\x5b\x4c\xd3\x98\x9b\x9d\x18\x56\x92\xd2\x2d\xa7\x9b\x2d\x28\x17\x93\xa8\x52\x1b\x69\x8f\x2c\x4f\x1a\xa6\xb1\xb2\x47\x13\xd3\x1f\x55\x88\xa7\x33\x23\x5e\xf3\xde\x60\x6b\x6e\xec\xcd\xf0\x02\xaa\xfa\x0a\xe8\x9f\xe8\x5e\x51\xaf\x5c\xf6\xe1\x2b\xef\x36\x4e\x93\xc0\x3e\x0f\x7e\x8b\x78\x79\x70\xd9\x65\xbe\xd6\x3a\x4d\x66\xf3\xb9\xb3\x5e\x6e\x7f\xbe\x0c\x44\x4e\xa4\x3b\xad\xf1\x65\xe0\x13\xb2\xff\x14\xde\xe6\x51\xc5\x9b\x20\x97\x83\x4d\x8e\x9b\xc2\xc4\x21\x86\xc1\x05\x64\x13\x0d\xc2\xe1\x3e\xc2\x96\xb9\xd0\xc8\xfc\x76\x4f\x33\xed\x3b\xff\xa0\xd7\x58\x11\xd1\xfc\xdb\xc2\x33\xe5\x5a\xfb\xc3\x0a\x93\xf5\x82\xa1\xdd\x0d\x81\x1b\x6c\x9d\x0a\x91\xb5\xa7\xb0\x22\x8c\x4f\x7b\x63\xa0\x20\x3c\x96\xd9\xf2\xab\x8a\x13\xe3\xff\x5b\x85\x0c\xd3\x23\x44\x35\xc7\x15\x46\x97\x4b\x7d\xf7\xbc\xef\xd1\xac\x14\xd6\x9a\xe2\x91\x3d\x6e\x7b\x00\xc2\x52\x15\x38\x66\x67\xe5\xcf\xb7\x22\x00\x50\xbc\x62\xba\xe1\x76\xbb\x00\xc2\x17\x91\x95\x24\xb0\x62\x91\x26\x22\x9b\x98\x91\xa5\xc2\xff\xc0\x09\xf6\x29\xb7\xa4\x76\x7e\xcd\xda\x53\xa4\xec\xa6\x8f\x4a\xbb\x3f\xe2\xb8\x6c\x97\x82\x2f\x5f\x32\x46\x7c\x9f\x85\x3e\x84\xff\xd8\xd8\x96\x19\x92\x6d\x25\x33\xbe\x8f\xfa\xd8\x45\x21\xf6\x06\xb8\x9e\xcf\xc6\x25\x96\x6f\x97\x41\x94\xe2\x87\xe1\x04\x1f\x9a\x61\xf8\x2d\x3c\xe1\xb4\x0e\x3e\x05\x6b\x34\xf2\x63\xe1\xa8\xf1\xd7\x78\x8e\x2a\x06\xe9\xd6\x53\xd6\xf0\x6f\x8a\x7d\x7a\x76\xa1\xde\x7a\x8c\x16\x40\x25\xc1\x26\x08\xde\xa0\x06\x12\x50\x9f\xdc\x7f\xaf\x4a\x74\x19\x54\x42\xc7\xca\xaf\x22\x72\xd7\xa7\x07\xd7\x94\x40\xb6\xe5\x72\xd7\x31\xe0\x85\x09\xf1\x58\xe3\x0c\x72\xf9\xb8\xfb\x6a\xd1\x02\x7e\x5f\x8a\xec\xee\x1b\x35\xe0\xfd\x1b\xf4\xf6\x74\xb8\xce\x9c\xb0\x0d\x82\xb9\x34\x8c\xc8\x2e\xa6\x53\x9a\xc6\xf0\xad\x67\x0d\xd4\x6b\xcb\x87\x3d\x1c\x4a\xa1\x1e\xec\x02\xd3\xf4\xbd\x3e\xb4\x47\x2c\x30\x8b\x37\xb7\x20\xe1\x43\x7e\x98\xf8\x93\x1e\x40\x40\xa1\xe8\x6c\x89\x58\x36\x60\x9a\x6f\xe5\x37\x52\x0c\x51\x0a\x51\x87\x4b\xa5\x59\x34\xd4\xbb\xb3\x5f\x04\x20\x36\xc1\xa7\xc2\x2e\x18\xa4\xf6\xab\x82\x51\x55\xc2\x26\x98\x16\xc4\xd6\x95\xe6\xf3\x64\x7f\x0e\x46\xf7\x0a\x46\x1b\xe9\xc6\x03\x2f\x72\x92\xfd\x00\xd2\x51\xef\x57\xf6\xab\x30\x63\xe7\x13\x7b\x3f\x2f\x6f\x0a\x62\x11\x6c\x54\xdb\x9a\x6a\x3b\x1e\x0f\x71\x2a\xdb\x0c\x41\x9d\x79\xfd\xbf\x65\x67\x54\xb5\xeb\xc4\xd1\xe9\x77\x39\xcb\x75\x4b\x7f\x7d\xdb\x2f\x90\x75\xb1\xa1\xaf\xad\xf3\xda\x7a\x1e\x8d\x67\x77\xe9\x31\xd2\x51\x5c\x57\xfa\x3d\x60\xa6\xcf\xbc\x81\x35\x41\x35\xa1\x13\xa5\x86\xd8\xcf\xf8\x77\x23\x39\xd7\x7a\xb1\x97\xd9\x53\x92\xde\x24\xbb\x85\x8e\x60\x23\xc8\xa7\x9f\x08\x5c\x05\xa0\x9c\xa4\xdf\x9e\x5c\xfc\x3d\x6d\x6e\xef\xdc\x6d\x1a\x06\xe7\x61\x50\x43\xeb\xf4\x69\x4b\x62\x37\xe9\xcb\x4b\x27\x1f\x26\xd0\xe6\xd9\x6c\x04\x73\xc1\x62\xc8\xeb\xd9\xef\xc7\x68\xdb\x65\x73\x81\xb3\xb8\x16\xf1\xe4\xfe\xcc\xf9\x98\x0e\x9a\xd1\xf6\x5e\x53\xc9\x13\xb1\x94\x92\x0f\xff\x98\xb3\x66\xbd\xf3\xbd\x95\x75\x52\xbc\x7e\xc7\x23\xf3\x9b\x9a\xb6\xe4\xa8\xc4\x67\xdd\xd7\xb2\x9c\x39\x7a\xe8\x9f\x74\x09\x6e\xe1\xcf\x26\x99\x75\x82\xdf\x35\x9c\x9f\x73\x8d\x93\xd5\x26\x73\x42\x1f\x9b\xe7\x96\xc8\x52\x64\x5a\x45\x08\x43\xbe\x50\x2d\x69\x1f\x2b\x95\x2b\xe0\x90\x37\xc7\xc0\xbb\x92\x4a\xe4\x9e\x14\x22\x80\x4f\x74\xbf\x71\xe4\x9b\x34\x06\xae\xba\x39\xaa\x7e\xd7\x98\xd5\x8e\xb0\xd9\x9a\x3f\x35\x41\x17\x30\x90\xb6\xa0\x1a\xf4\x8c\x9b\x4e\xa7\xe6\x97\xa0\x5b\x53\xcd\xf8\x96\xc2\xbb\x0c\xa7\xb2\xfd\x75\xaa\xc4\x85\x2e\x76\x7f\x0d\xb6\x2f\x9c\xa1\x25\x6b\xb1\x14\x2d\xdc\x62\xf2\xbc\x1d\x1b\xf2\xf8\x5a\x4a\xd3\x86\x8c\x4c\x94\x28\xee\x6b\x2d\xdd\x90\x83\x54\x4f\x05\xab\x42\x4e\x98\xc0\xa8\xa6\x46\xfe\x44\x42\xcf\xfe\x6e\x69\xe7\x3b\x5b\xa8\x2d\x3d\xc4\x19\x00\x9e\xbb\xd4\xa6\x49\xe8\xe8\x6c\x42\x2e\xfd\x4a\x86\x3c\x7d\xc2\x8b\x33\x33\x39\xf9\xf8\x78\x3a\x0f\xc1\x58\x92\x88\x36\x83\x33\x63\x55\xfe\xd6\x2d\x12\x21\xe8\x0a\x1c\x1c\xf8\x1b\xf0\x91\x7c\x4d\xf8\xa2\x35\x07\x99\x3e\x8b\xeb\x04\xec\x3e\xec\xf2\xb4\xba\x19\xae\xa3\xa7\x48\x15\x42\x9e\xde\x46\xd4\x07\xda\x9c\xbb\x4a\x3e\x3d\xcb\xf2\x4e\x12\x5b\xd0\xb6\xe8\x6b\xe6\x55\x53\x59\x80\xd9\xd6\x15\x30\xbe\x6b\x94\x73\x1b\xd4\x4d\x17\x90\x21\x79\x4b\x4a\x36\xa5\xda\xd7\xa7\x03\x74\xca\x61\x98\x37\x2c\x8d\x62\x48\xd2\x66\xea\x99\x6b\xec\xcc\xf3\xe0\x69\xa3\xeb\x3f\x9a\xe1\x51\x0d\x86\x85\x39\x6b\x0d\x64\x80\x26\x5f\x44\x74\x47\x47\x82\x41\xa0\xeb\x18\x69\xb4\x09\xbb\x53\x95\xc9\x2a\xa7\xf9\x9b\xf8\x63\xec\x86\x12\xbb\xa7\x7b\x7d\x3d\x00\x0d\x43\xce\xa3\x0a\x96\xf6\x77\x04\x8d\x8f\x14\x4c\x59\x56\x40\xc6\x26\x28\xa2\xda\xba\x2d\x79\xc0\x6a\xae\xd5\x2e\x94\xcf\x5c\x97\x54\xb4\x6f\xa0\x08\xbb\x71\xe3\x3b\x11\x93\xf3\x0a\xa7\x62\xac\x44\x0c\x38\x59\x86\x4c\x11\xf8\xf8\x13\x16\x86\x8f\xff\x02\x31\xad\x0c\x67\xbd\x10\xeb\x2e\x32\x9a\x59\xa4\x39\x4b\x09\xbe\xb4\x34\x7b\x29\xd8\xae\xd9\x22\x5b\xc6\xcb\x26\x0c\xbf\x6e\x3b\x59\x79\xc4\x40\x89\x84\xb1\xe6\xcc\xd1\xae\xb8\x11\x0a\x15\x68\x5d\x7c\xca\xb3\xc0\x47\x3e\xa6\x28\x61\xa2\xbb\x31\x29\x9a\x5d\x33\x35\x3b\xe7\x5d\x40\xf3\x5f\xf8\x32\xd8\x2d\x26\x65\x56\x18\x1d\x9f\xcc\x6e\xa3\x6e\xa3\xe8\x07\xb6\xd3\x4d\xe0\x44\x10\xbf\xbd\x77\xce\x40\xcc\x6e\xe8\x2d\x5e\x70\x5a\xa8\x41\xc0\xc0\x55\x92\x79\xe3\x32\x8f\xf9\xfc\x27\x64\x43\x83\xf2\x4b\x8e\x93\x8a\xe6\x1a\xbe\x0d\x7b\xbc\x2c\xe8\x96\x64\xd8\x47\x8d\xe2\x2d\x83\xeb\x55\x83\x72\x33\x7a\xc5\x4e\xcb\xc1\x27\x3b\x35\x55\x39\xf7\x3c\x9a\x99\x4f\x85\x79\x6c\x05\x97\x78\xbe\x95\xde\x42\x01\xb7\x10\x35\x2b\x51\x0d\x74\x50\x59\x79\x67\x5b\xec\x22\x11\xd1\xd0\x39\xe3\xc4\xca\x83\x51\x48\xab\xac\x12\x6a\x9d\x90\x00\x45\x43\xb4\x9d\x4f\x26\xf6\x1f\x51\x38\x5a\x7a\x5c\x5e\xfc\xa6\xcc\x40\xf5\x4c\xa5\x1d\xe6\x36\x0b\x0a\x00\xbc\x05\x1a\x2f\xd2\x77\x76\xe5\x08\xf5\xdf\xf8\x84\x22\xda\xdc\x6a\x91\xf8\xc7\x24\x5a\xe0\x66\x21\x64\xb6\x6f\xce\x64\x12\x69\xde\xd0\x8c\x1c\x26\xd8\x76\x98\x3c\x9a\xd8\x3f\x5b\x12\x8f\x0b\x61\xc5\x1b\xc2\x92\xab\xa2\x96\xc8\x8c\xca\x3f\x3b\xf8\x87\x54\x6a\x20\x8b\xaa\xe3\x95\x66\x9d\xf3\x5b\x14\x7e\xbf\xee\xa1\x84\x23\x4a\xa1\x47\x0e\x97\x39\x94\x60\xba\x29\xa5\x5f\x70\xbf\xdf\x80\x46\xa1\x07\x6a\xe8\x2a\xed\x52\xab\x9f\x57\xea\xf6\xa1\x22\xc9\xc6\x47\x89\xdc\xeb\x49\x19\xa0\xc2\xe8\x0d\xe2\xbe\x1f\xc2\xdd\x9e\xb7\xf5\xb6\xd2\x96\x75\x1e\x71\x0c\x38\xbb\xa1\xd0\xdb\xb8\xa6\xc5\x8c\x14\x78\xc0\x7c\x72\xc7\x9d\xe9\x4b\x10\xb3\xf9\x89\x30\x73\x3f\xe1\xaa\x8c\xf9\xa9\x4c\x9b\x60\x51\x63\x46\x33\x7c\x23\xa8\xbd\x76\x3b\xac\xe5\xba\x2c\xcc\x7f\x6c\xfe\x0d\xef\x35\xa8\xb4\x99\x78\xf3\xb4\x5e\xd0\x2e\xd2\x6c\x48\xbe\x7d\x6d\xd1\xc6\x25\x2b\xe5\xc2\x6e\xb4\x23\x09\x95\xc9\xa5\xc2\x82\x9b\xbb\xf4\x6b\xcd\x0d\x08\x7b\x11\x91\x1f\x1d\xd5\xdc\x98\xe1\x86\xfe\xea\x95\x98\x8e\x76\x8e\xea\x89\x14\x4d\xdc\xf2\xdc\xc8\x59\xcb\x02\x7b\x2e\xfd\x4f\x6c\x34\x9b\x3c\xfa\x3c\x18\x18\x95\x49\x1a\x69\x36\x98\x31\x58\xaa\xaa\xb7\x80\x95\xdf\xfb\xef\x4a\xc9\x7f\x15\x25\xf2\x0e\x99\xf0\xfe\xcd\x7c\x5a\x4c\x64\xa2\x76\xa2\x6c\xf0\x53\x32\x1a\x54\x39\x5c\x1a\xb1\x1f\x02\x73\x05\xef\xd3\x04\x09\x47\x11\x97\x61\x94\x71\x4e\xf5\x5c\xcf\x0b\x8f\x4c\x41\x9c\x6e\x42\x0e\x09\x5a\x46\x83\xb0\x0b\x0e\x85\x71\x70\xa0\x24\x20\x76\xd5\x49\xc4\x19\x7f\x39\x0f\x31\xc2\xe6\xdc\x4b\xbd\x00\xed\x24\x4f\x5c\xda\x99\xf6\xaa\x85\xf3\x16\x92\x37\x66\x10\x6b\xb1\xed\x72\xfd\x41\x6f\xb6\xce\x17\x0d\x2c\x9c\x22\xd6\xd6\xfe\xf5\x0b\x5f\x30\x57\x51\x81\x3b\xb4\xb5\x2d\x28\xb0\x76\x92\x58\xd8\x1d\xc7\xe6\x3e\x03\x4f\x85\x70\xe7\x2b\x15\x17\x07\x1a\x53\xef\x8b\x82\xac\x42\xc6\x6c\x0b\x24\x4a\xa9\x0d\x5d\x3e\x28\x7e\x2a\x5a\x4e\xd8\x52\x5d\xd4\x2d\x68\x8c\x71\xec\xdb\xe6\x21\xe0\xf9\x53\x48\xce\xd0\x3d\xe8\x68\x5d\xb1\xb9\x21\x3a\x49\x83\x6a\x09\xa2\xb6\x5f\xca\x31\x7d\xc6\xc4\xcf\xbd\x9b\xdd\xfd\xfe\xef\xd7\xe6\x8f\x20\xfa\x7a\x66\x5a\x71\x4f\x56\xa3\xec\x12\x2d\xd5\x40\xc0\x8c\xa5\x79\xc1\x12\x7d\xbf\xf6\xa1\xfc\x66\xe4\x28\xae\x3f\x76\x00\xf2\x24\x7e\xfe\x42\x38\x58\x6d\x8b\x97\x94\x8e\x29\x6d\x63\xf9\xd8\x20\x44\x02\xfb\xb9\x51\x5a\x69\x41\x50\xeb\xc9\x5d\xcf\xda\x8b\xad\xe7\x51\xcf\xaf\x28\x6a\x2b\x04\xaa\xa4\x80\x25\x07\x6f\xe2\x4c\x57\xf7\x9b\xb6\x3f\x16\x1a\x3f\x08\x8a\x50\xaa\x55\x70\x58\xa3\x46\xe1\xd7\xb6\x76\xb9\xa1\x29\xa2\xb9\x30\x23\x5e\x7d\x46\xef\xf9\x8a\x96\x3f\xc6\xcd\x56\xba\x8f\xd9\x9e\xa8\x22\xc0\x16\x83\x2b\x26\xcd\xd0\x61\x86\x6b\x21\x93\xe3\x31\x04\xf7\x57\x59\xe1\x2d\xf0\x47\xba\xa1\x59\x26\xc0\xcc\x8c\x61\x14\xb5\x75\x33\xda\x76\xa2\xd1\xa8\xdb\x6a\x4a\x13\xcb\xe6\x10\x76\xfb\x2d\x05\x55\x16\x14\x35\x7f\xd0\x2c\x82\xcf\x32\xf9\x99\x05\x18\x51\x5a\x1d\x7c\xab\xba\x34\x5a\x26\xf6\xed\x2b\xa6\xca\x99\x95\x65\x79\xb3\x62\xe5\x03\x71\xda\xb1\xd5\x6d\x73\xe4\x17\x1a\xb8\x41\x1b\x91\x16\x09\xfe\x2a\x2b\x42\x0e\xf4\xf8\x35\x43\xf5\x51\x48\x36\xee\xcb\x07\x07\x28\x02\x0a\x35\xc2\xf1\xa5\x25\x29\xc9\xf3\xa3\x14\xc6\xdb\xba\x47\xbc\xc3\xad\xf9\x9b\x6c\x4b\x56\x74\xdd\x6c\x14\xb9\xdd\x92\x98\x60\xa4\xcf\x2d\xfc\xd4\x80\x2d\x05\xfb\x99\xbd\x3c\xd3\x14\x7f\xc1\xd0\x8b\xfd\x2e\x6c\x13\x0e\xd4\x24\xd9\x96\xb8\x65\xf2\x02\xf7\x31\xea\x8a\x57\xa3\x68\x33\x75\x6b\x16\x78\xd8\x4d\x04\x0f\x8f\x2c\x4f\x8a\xd3\xbc\xb7\xc2\x64\x1d\x14\x55\x32\x0a\x90\x95\x80\xa4\x31\x51\xec\xc9\x46\xd1\x7e\x08\xb5\x31\xd2\x74\x41\x59\x9b\x1c\x37\xc6\x20\xd1\xcc\xfc\x56\x16\x17\x66\x55\x96\x76\x12\xa1\x0e\x51\x12\x3a\x24\x21\xba\x81\x67\x30\xd4\xc9\xc7\xfd\xab\xbf\xdd\x23\xc3\x64\xb0\x0f\x29\xb3\x9c\xdd\x14\x73\xc6\x86\x2c\xce\x26\x61\xf3\x4c\xf7\xcd\x11\x82\xb1\xb2\x9b\x0c\x26\xf8\x54\xc6\x2e\xe4\x12\xbf\x5c\x62\xf9\xdc\xec\x01\xa7\x11\x4d\x6c\x4d\x86\x33\xe5\x20\xf2\x91\x6f\xbc\x84\xb3\x38\x44\x6d\x64\xd5\x03\xad\x55\xf4\x51\xc1\xc5\x06\xb8\x04\xb4\x09\x46\x51\x1e\x68\x93\x9e\xdf\xa8\xb0\xf9\xcb\xce\x1a\x1b\xad\x14\x6d\x3c\xe9\x72\xc2\x55\x07\x30\x93\xb6\x94\xa6\xa8\xf9\x02\x37\x11\x20\x59\xd4\xf6\x09\x68\x16\x26\x79\x47\x09\x86\x7a\x86\xc9\x87\x6e\x1e\xf6\x27\xe6\xaf\x91\x30\x36\x48\x56\x2f\xfc\xf1\x91\x79\x1b\x1f\x5f\x29\x92\x63\x27\x9c\x9c\x0e\x49\x28\x1c\x6e\x76\x9c\x31\x3a\x3f\xfb\xc2\xd2\x5a\xfd\x56\xfe\xfb\x33\x2e\x9c\xdd\xf1\x72\x66\x98\xfd\x72\xbb\xca\xcd\xe9\xd6\xe0\xe4\x44\x02\x29\x4a\x3a\xe6\x8c\xee\x37\xd2\x5a\xdd\xda\x3b\x25\x1d\x95\xe2\xf5\xb0\x71\x81\xa8\x68\xdb\x39\xe1\xde\x42\xe2\xf0\x76\x50\xe4\x07\xc5\xdb\x87\x3e\xca\xa3\x13\x9c\x26\xf4\xf5\x6a\x04\xec\xf7\xb0\xcc\x6d\x9d\x20\x37\x11\x9d\x04\x46\x5a\xc0\x61\x09\x93\x45\x46\xca\xfd\xb3\xcf\xfb\x6d\xb0\xc7\x31\xa5\xeb\xe4\x4b\x77\x92\xec\x94\xa5\x6f\x12\xc6\x45\x24\xb2\x8a\xa0\x43\x57\x80\x64\xc6\x7b\x18\xfb\xdc\x3d\xe9\xec\x5b\xa5\x7c\x7f\xe9\xef\x46\x55\x4b\x75\x22\x67\xa4\x36\xa3\x55\xca\x7f\x9f\xe4\xfb\x1e\x95\x16\x0f\x58\xa6\xa9\xec\xa3\x20\xcf\xb8\x2a\xb6\xa8\x42\xb1\xfb\x84\x2b\xb2\x27\x88\xc1\x4d\x14\xf7\x14\xea\xb8\xa7\x5d\x2f\xb6\xec\xc2\x61\x19\x53\x76\x02\xd1\x0e\x74\x00\xf1\x08\xca\x6d\xfb\x37\x14\x33\xfa\x84\x74\x1e\xd8\xe2\x76\x3a\x38\x99\xfc\x49\x2a\x6d\x4e\x38\xbe\xb0\xa1\x18\xe7\xb4\x8c\x0b\x36\xde\x4a\xe5\x01\x9d\x30\x96\x52\xce\x0e\xff\xb4\x74\xd9\xf0\x32\x8d\xaf\x08\xf4\x30\x02\x4d\x3b\xd3\x9b\x03\xda\x70\xeb\x63\xf0\xc7\xf7\xdb\x57\x47\xd8\x9f\x62\x1b\x65\x92\xbd\x2f\x70\xc2\xf8\x66\x5b\xcf\xf4\xec\xbe\x79\x84\x5a\x90\x97\xd6\x66\x5c\xdd\xda\xef\x41\xf1\xd5\xe8\xa4\xcc\xee\xf6\x17\x10\x79\xca\x60\x45\xed\x63\xbd\xbe\x9a\x29\x7d\x9e\xa5\xf4\xde\x02\x3a\xce\x2b\x53\xa6\x17\x1e\x47\x38\xc7\x3a\xc9\xab\x87\xc1\xda\x1e\xae\x7b\xb7\x24\xb8\x33\x2e\x66\xc2\x4a\xac\x70\xca\xa2\xc0\xe7\x02\x1d\xe6\x9d\xcc\xe1\x1e\xf6\x41\x36\x46\x4c\x75\x71\xb3\x9f\xa5\x92\xdf\x4b\x45\x7b\x61\x6b\xa7\x6e\xa7\xb7\xa6\xc3\xe9\xcc\xb9\xb8\xdb\xf8\xd9\xd1\x39\x27\xe7\x90\x12\xc1\xa2\x64\x5c\x89\x9e\x02\x94\xb4\x8b\xb2\x86\x98\x7a\x04\x9e\xde\x49\x65\xea\x92\x0d\x54\x88\x59\x48\xff\xd2\x5a\x25\x09\xae\x61\xfd\xc8\x21\x94\x76\xc1\xa8\xb8\xb8\x88\x2c\x11\x73\x58\x57\x98\x89\xe6\x34\xf3\x44\xd3\x73\xb7\x43\x2d\x4f\x6a\xf4\xf9\x85\xee\x3f\x94\x17\xb1\x63\xad\x79\xe3\x82\x1f\x4d\xa0\x8e\x88\xd6\xf8\x2c\x55\xa1\x7d\x7c\x7b\x23\x96\xcd\x2e\xdc\x44\x97\x68\x6e\x81\x4b\x45\x5d\xc6\x4d\x60\xe7\x3a\x30\xf3\x33\x61\x38\xee\x10\xbf\x00\x29\xdc\x3f\xbe\xce\x08\x10\x8b\x18\xa4\xe7\x2e\x8f\x50\x10\x16\x5d\x99\x36\x3c\x8e\x00\xdd\x8a\x6e\x3f\x02\x44\x0f\x67\x15\x86\x75\x9a\x26\x0c\x44\x0d\x33\xe1\x02\x65\x1d\x7c\xa9\xdd\x14\x76\x97\x43\xf4\x21\x42\xea\x1b\x4e\x42\x91\x9b\x46\xe3\x34\x68\xf3\xed\x33\x47\xd9\x92\x44\xaa\xf7\xd8\x29\x93\xda\xa2\xda\x96\x9c\x45\x80\x26\x4d\xa4\x59\x7b\xb0\x40\x1a\x1a\x6d\x42\x4c\x3b\xde\xd4\x62\x03\x63\xa9\x79\xc9\x71\xdd\x09\x86\xc3\x9e\x92\x38\x58\x47\xea\xeb\x0d\xae\xa2\xa1\x76\xda\x55\xe9\x32\x79\x4b\x8a\x2a\xd2\x78\xbc\x32\xef\x9c\xe4\x1d\xb9\xed\xcc\x85\x4a\x8a\x66\x67\x42\x8d\xda\x60\x6d\xf5\x6a\x76\x57\x40\xe0\x1b\x52\x21\xb4\x3d\x26\x43\x37\xb7\xd7\xe2\xe6\xb7\xfe\x97\xa6\xd1\x28\xfc\xde\xa0\x61\xc4\xa3\xb3\xc5\x71\xb0\x05\x41\x0a\xe3\xef\xd7\x05\x64\xc0\x8c\x86\xef\x18\xcc\xfe\xce\xdd\xf9\xe1\x12\xd7\xfd\x77\x34\xa0\x9b\xd4\xab\x9a\x9f\x92\xa1\xb6\x0a\xdb\xeb\x74\x0b\x6d\x51\xe0\x53\xc8\x1d\xc0\x67\x54\x36\x82\x6d\x81\x32\x0b\x1c\xfe\x87\xd3\x0e\xf8\x7b\xe8\x6b\xb4\xeb\x5c\x04\x67\x25\xa1\xb8\xb3\x62\xb3\x94\xeb\x04\x80\xd6\xbe\x7d\x4a\xf7\x3e\x7a\xac\x7a\x6b\xee\xbc\xa8\x25\xad\x4b\x91\x55\xc8\xe4\x21\xf5\x61\xf6\xc4\x7f\x7e\x7c\x3d\x61\xe7\x5f\x2c\x08\x9d\x96\x17\x37\x7e\x8f\x41\x97\x9d\xd6\x5c\x13\x26\xd3\x6c\x39\xb2\xba\xe2\x37\x3f\x7b\xae\xf3\xf0\x2a\xe5\x64\x53\x92\xf1\xc2\x0b\xb3\x0b\x02\x11\x5a\x1d\xc0\x73\x1c\x9d\x9d\xe4\x32\xec\x1b\x88\x1a\xc8\x81\x63\xfe\x34\x84\x5f\x8a\x77\x23\xb3\x55\x31\xda\x91\x2e\x67\xf7\xb8\xc8\x6e\x61\x16\x38\x91\x8e\x3d\xf3\xfb\xb0\xfd\xd2\x5e\x89\xe4\x8f\x23\x39\x5c\x1b\x2b\x6a\x97\x4e\x6d\x20\xd2\x70\x97\x30\x61\x8a\x19\x1a\xda\x0e\xd7\xdd\xe9\xb5\xe6\xad\x12\xf9\x22\xef\xcf\x74\x2c\x55\xaa\x31\x34\xce\x2f\x3f\x54\x75\xd5\xd8\x19\x0c\x96\x5e\x0f\x2f\x39\xff\xce\xc2\x40\x16\x61\x8a\x61\xb7\x69\x30\x3b\x05\x85\x30\x65\xc9\x23\x75\x82\xff\x58\xff\x6d\x07\xf1\x28\xfa\x11\xad\xa2\xf2\xe4\x61\xc3\xb1\xd6\x99\x28\x51\xf7\x70\xf5\xd1\xe2\xbb\xc9\x52\x0c\x44\x37\x68\x46\x66\xa2\x72\xcf\xc2\x2e\xfe\x30\xb7\x72\x14\xcd\xee\x1c\x6a\xbe\xc0\xfa\x6c\x38\x81\xc2\x26\x2d\x5b\x70\xe3\x3d\xd1\xde\x4a\xaf\x15\x4a\x83\x2b\x03\xdd\x72\xf6\x65\xcb\x68\x83\x85\x01\x60\x28\xd4\x56\x0c\xec\x35\xb9\x0a\x5d\x58\xb0\x57\xd4\x2c\xb0\x09\x9d\x0e\x19\xaa\x54\xb4\xbd\x61\xc7\x8b\x1d\x3d\x53\x92\x51\x5c\xa9\x20\xc0\x41\xc5\xe2\xbf\x7c\x54\xca\x05\xf8\xd7\x61\xed\x25\xf7\xde\x39\xe7\xea\x4d\x39\xbc\x10\xd1\x41\x72\xe8\xe9\x75\x22\x5c\xc4\xd1\x56\xd4\x3e\xc4\x88\xe7\xc2\x67\x9f\x4d\x58\x4d\xec\xd9\x7a\x2e\x03\x53\x2a\xce\x4d\x87\x2c\xd8\xa2\xff\x22\x75\x87\x28\xba\x15\xe0\x7d\xd7\x43\x5d\x77\xab\x20\xaa\xcc\x4a\xd5\x2d\x5d\xa9\x8e\x43\x2f\x37\xf4\xd2\x0d\x1e\xb3\x26\x44\x5f\x7b\x33\x63\x18\xa6\x0c\x9b\x4e\x13\xd3\x94\xff\x8d\x6d\x97\xb7\x1b\xa8\x02\x29\x5d\x53\x37\x46\x26\xf9\x5a\xa2\x2c\x70\x4e\xe0\xa6\xed\xeb\x5f\xc2\x52\x4a\xc0\x83\x25\xa8\xd5\x16\x32\x95\x20\x6d\xa3\x7b\xd3\x10\x26\x21\x2f\xb7\x67\x9e\x89\x36\xe5\xa1\xe1\x84\x79\xf6\x4e\x5c\x07\x02\x8f\xcc\xd8\x58\xc0\x77\x75\x63\x8b\xfc\x08\xe4\x9e\x31\x74\x93\xe1\x7e\x15\x0a\xdb\xc7\x1a\x21\xee\x91\xaa\x15\xed\xc9\xad\x42\xd1\x4a\xfb\x9a\x9e\xef\x76\xc8\x7f\xfc\x78\x9f\xa6\xd0\xf8\xdd\x42\xc6\xba\x43\x36\x77\x01\x47\x35\xfa\xc4\xb7\xaf\xee\x7b\x1f\x56\x23\xc8\xcc\x77\x0a\x7b\x59\x26\xac\xb8\x8e\x93\x51\xbf\x63\x7c\x05\x69\xec\xf5\xcc\x33\xca\x99\x2f\x6f\x46\x9e\x6a\xee\xc6\x8e\x8e\x11\xd8\x58\x39\xaf\x60\x5a\xb8\x61\x87\x48\x31\x3e\x77\x7e\x5c\x66\x63\xeb\x62\x09\x30\xfc\x75\x7a\xb4\xb1\x24\xee\x4a\xa3\x68\xd4\x88\xe4\xd8\xd4\xcf\xa7\x89\x35\x96\x35\x45\x4b\xc0\xc4\x98\x65\xee\x07\x0b\x6c\x1c\x4d\xff\xe9\xf8\xa9\xfb\x06\xbd\xc8\xa2\x54\x23\x72\xb8\xa5\x21\x2e\x42\x6d\xf0\xd3\x3d\x4b\xe1\x5b\xe9\xea\xcf\x13\x00\xc2\x4f\x04\xba\x44\x18\x34\x58\x0c\xe3\x0b\x91\x42\x92\x87\xa8\xed\x19\x38\x1c\x64\x2c\xd1\x83\xa3\x53\x62\x52\x60\x00\xa7\x90\x5c\x2c\xe2\x31\xa3\x2c\x22\x8e\xf1\x34\x82\x1d\x61\x0a\xa3\x65\x96\x52\xe8\x3c\x35\x97\x27\x38\x34\x92\x56\xed\xfc\x82\x1f\xaa\x26\x95\x1c\xb1\x8d\x30\x33\x12\x8d\x7a\x47\xaa\xa0\x73\xb1\x20\x33\x2a\x71\x4c\xd4\xd1\x33\x53\xb1\xf0\xa1\xcc\x85\xd0\x70\xb8\x32\xb4\x2d\x90\xf3\xed\x14\x8f\xd4\x7e\x4e\x20\x00\xbb\x9e\xa4\x7e\xb2\xa1\x9e\x63\xb9\x50\x12\x87\xad\x24\x33\xa2\x8e\x9a\x83\xe9\xd1\x90\x98\xd6\xc9\x3a\x5a\x39\xc3\x55\xe5\x1c\x37\x1f\xcc\xbe\x07\x47\xad\xa9\x28\x4a\xba\x42\xf1\x6b\x00\xfa\xe2\xa4\xd0\xf7\xfc\x8c\x18\x42\xa0\x33\xd8\x07\x4d\xdf\x52\x28\x64\x5e\x92\xd3\x9c\x0a\x0f\x2c\x65\x78\x5b\x51\x98\x1e\xac\x3f\x45\x0e\x4b\xf6\xc2\xb5\x85\x66\xac\x02\xc2\xff\xda\xdd\x63\xd8\xcc\xb0\xb4\x6c\x55\x14\x64\x14\xad\x32\x5e\x68\xd5\x0d\x7d\xae\x88\xd3\x35\xe7\xff\x53\x0a\x16\x46\x50\x60\xfb\x5b\xab\x9b\xd0\x99\x82\xd2\xcb\x81\x1a\x00\xc4\xaa\x54\x35\x57\x43\xa2\x95\x89\x31\x28\xe5\x0c\xad\xbe\x14\xb9\x29\xe4\xe7\x46\x8d\x28\xf2\x32\xf8\xf4\x7d\x1e\x6d\xf4\xab\x51\x9c\xbd\x68\x5d\x00\x96\xe6\xd4\x71\x1d\xbc\x5a\x25\x76\x22\x6d\xdc\xa1\xa4\x09\x10\x56\x73\x71\x5f\xd2\xb1\x1d\xf8\x3e\xc8\x68\x8b\x07\x53\x71\x7a\xf4\x5d\xe0\x4b\x80\x4d\x9d\xf8\x21\xf5\x48\x10\x30\x85\x7c\x4f\x6a\x3c\x17\x17\xfe\x18\x2a\xc7\x2e\x40\x4f\xe1\x68\x8e\x53\x00\x14\x11\x86\x0d\xef\x56\xb0\x37\x8e\x83\x4d\x95\x70\x5b\xf6\xa2\xba\x81\x19\x48\x1c\xed\x4e\xc5\xd4\xb8\x58\xb7\xf0\x81\xe9\x9f\xa4\xf4\x91\x86\x4e\x2a\x52\xce\x4a\x58\x3c\x5e\xd4\x67\x99\xd7\x7c\x2f\xfb\x8c\x59\x21\x48\x38\x64\x35\xe2\x0c\x63\x33\x64\x5b\x1b\x92\x2d\xc6\xda\x86\xdd\xf5\x30\x5f\x33\xd4\xb5\x4f\x8f\xbd\x3d\xbd\x98\xb4\x42\x67\x40\xf5\x1d\x2d\xea\x4e\xe4\x72\x10\x38\x75\xf4\x07\xcd\x05\x89\x53\xfe\x17\x26\x1d\x98\x72\x1e\x0d\x33\x77\xe6\xf4\xa6\x9e\xa7\xbb\xf2\xbd\x59\x5f\x94\x6a\x2b\xba\x0c\x6b\xbb\xe8\xf8\xd8\x35\x9c\xf8\x83\x11\x4e\xa7\x8b\x9e\xe9\x73\x9b\xa6\x39\x3c\x12\xe1\xf4\x6e\x67\xed\x3b\x57\xd9\x06\x1c\xba\x92\x24\x6a\x22\x08\x7f\x7d\x2c\xe0\x04\x25\x3d\xc1\x7c\xce\xb9\x20\x39\xc6\xa1\x22\x9f\x23\xd3\x19\x46\x53\x70\x2f\x1c\x0b\x45\x9a\xe9\x27\xb5\x65\x03\x87\xe8\x31\xfe\xdf\x49\x24\x39\x57\xd0\x4c\x6d\x5b\x6e\x38\x55\xdc\x66\x7b\xb8\x37\x2e\xa1\x19\xf7\xf7\x40\x05\x8d\x03\x7e\xed\x9d\x91\x5b\xa2\x5f\x73\x05\xf1\xd9\x6e\x6a\x03\x44\x28\x55\x9e\xf1\xce\x0a\xdf\x4c\x89\x2e\x70\xed\xe4\x46\x17\x19\x80\xb8\xc8\xee\x40\x19\xa2\xec\xef\xa0\x5d\xc0\xea\xf4\x7a\xb9\xc4\x75\x46\xb0\x8d\x6b\x02\xb0\x8b\x20\x59\xa2\xe8\x0e\xad\x79\xad\x5a\xff\x85\xef\x9f\xe8\x1f\x5a\x32\x29\x67\x5d\x9d\xb1\x9a\x64\x32\xa4\x9c\x4c\xe5\x4d\xae\xea\xba\xe9\x1e\x8b\x13\xbb\x4b\x6a\xea\x98\x59\xb4\x0c\x5d\xf7\x45\xad\x81\xc7\xa6\xf0\x65\xdf\xb2\x2e\x7a\x0c\xfa\xe4\x13\xf8\xee\x8d\x32\x0f\xa4\x1a\xd8\xa8\xa3\xb2\x85\x9a\xda\xc4\x52\x64\x52\xef\x27\x22\xed\x19\x7b\x13\x68\xfb\xf7\x7d\x2b\xaf\x64\x2b\x3a\x06\x07\x77\xe6\xb5\x38\x1a\x36\x57\xa9\x57\xdb\x1e\x9e\x4a\x17\x2b\xee\x00\x33\xca\x2a\xf6\x50\xc5\xae\x43\x67\xc9\x69\xc9\xc6\x33\x5d\xe1\x80\xc1\xe3\x74\x8d\x98\xa8\xf0\xb0\x69\xd5\x6a\xb3\x1c\xcb\x11\xdd\x9d\x00\x0f\x8f\xaa\x35\x18\x94\xab\x4a\x4e\xd9\x3c\xf3\xe7\x33\x71\x66\x63\x7c\x18\x29\xb1\x67\xd8\x4c\x33\xd9\x8a\x5f\x29\xb2\x8c\x04\x49\xb2\x89\xc8\xc9\xe9\x07\xd5\x71\x4e\xc3\x61\xbd\x21\x7e\x88\x38\x31\xe2\xab\xb6\x51\x0e\xa5\x6f\xbc\xad\x41\x6c\xd7\x3e\x76\x0a\x27\xcb\x14\xf3\x1a\x3e\x0a\x72\xa5\x8c\x7b\xed\x4f\x33\x75\xff\x5c\x4b\x76\xe0\x8e\x45\x6e\xd7\xa8\x61\x69\xbf\xa9\x3f\xee\xa3\x40\x6c\xa4\x5a\xe0\x24\xec\x31\x36\xcc\x91\xdb\x38\xbd\x14\x5c\xf1\xdb\x9f\xcc\x1c\xe7\xe9\x38\x44\x63\xf1\x9e\xd2\xce\xc6\x66\x3e\x9b\x9b\x1c\xed\xd7\xab\x22\xc0\x61\xfa\x44\x4d\xc9\xe3\xa5\x21\x39\x1b\x39\x54\xb2\xf6\xd8\xa3\xf8\xff\x94\x36\x5c\x52\xef\x49\x33\xb4\x59\x80\xb2\x60\x3d\x9c\xf6\xc6\x3c\x98\x88\x79\xa3\x29\x59\xd0\xec\xa4\xfc\x43\xf2\x22\x97\xf6\xf4\xb0\x37\xfe\x84\x31\x4f\x08\x13\x42\xf8\x31\x26\x67\x97\xe1\x07\xdd\xec\x1d\xb5\xe3\x8f\x88\xad\xdf\x5c\xd1\x57\x30\xcb\xb4\xfa\xfd\x64\x40\xc3\xa5\x11\xec\xb4\xbe\x84\xcc\x9b\x56\xc6\x82\x59\x58\x12\x3f\xb7\x2a\x98\x43\x6a\x07\xbb\x8e\x2e\xfb\xac\xc8\xfc\x35\xc1\x41\x57\x50\xef\x0e\x61\xfc\xd8\xf2\xd5\xae\x0d\xa6\x19\x5f\x90\x5b\x33\x5d\x8d\x9a\x6a\x7c\xe7\xae\xcd\x31\xcc\xc1\x90\xbb\x52\x88\x47\x6f\xc9\xbf\xf0\x80\x34\xb2\xda\x56\x5d\x7f\xe5\x4d\x9e\x51\xa6\x75\xa7\x00\x91\xad\x52\xfb\x75\x09\xa9\x6a\x77\x2f\xe2\xc0\xb9\x89\x92\x44\x27\x92\xa0\x04\x95\x0b\x9f\xbb\xb6\x9c\x99\x86\x8b\x85\xff\xef\xb4\xee\x1b\xf4\x14\x33\xe8\xcd\x87\x37\xff\x60\xed\x01\x03\x41\x01\xec\x94\xa5\x3a\xe1\x32\xd2\x13\x2d\xbd\x85\x4f\x88\x88\x4d\x8b\xbe\x20\x3f\x00\xbf\xf8\x76\xc9\x34\xca\x3a\x22\xc7\x56\xa2\x5f\x9b\x03\x77\x49\xbd\x3b\x02\x58\x0b\xb8\x2d\x5d\xdd\x4c\x09\xef\x25\xc6\x27\xc4\x59\xaf\xf0\x90\x98\xf4\x09\x6a\x01\x76\x14\x51\x6c\x62\x1e\x72\x8a\x17\xed\x94\x74\xe0\xdf\x35\xd1\xa1\x49\xbd\x01\x23\x6d\x2b\x59\x4c\x71\xc6\xe5\xac\xb7\x4d\xf5\x9d\x63\x27\xaf\x12\xeb\x1d\xa2\x23\x3b\xcb\x7c\x25\x57\x04\x26\xaa\x5a\xc7\xa6\x4b\x68\x4e\x7c\x52\x12\x1c\xa3\x91\xb3\x97\x74\x5b\x9d\xeb\x0a\x13\xcc\x02\x35\x62\x7c\xb5\xc6\xb6\x49\x4a\xb7\x0d\x50\x4c\x86\xcd\x2d\xf2\x03\x59\x88\xfd\x7b\xd4\xa9\xa5\xd8\xc1\x1c\xbf\x6b\xdd\x42\xe0\xfd\x94\xd8\x53\x84\x3a\x91\x0e\xac\x05\x65\xb9\x28\xc7\x44\x53\x58\x7b\x04\x53\x38\xc5\x99\x4e\x18\xab\xe5\xbb\xfc\x73\xe8\xf5\xea\xd7\xe5\xa9\x12\x60\x1d\x87\x87\x7a\xcf\x49\xe6\x19\xd6\x8a\x30\x79\xf3\xe9\xbf\xde\x1b\xfb\x92\xab\xd0\x8e\x62\xca\x14\x7e\xa8\xe8\xa9\x2f\x5d\x52\xe5\x9f\x11\xeb\x5a\x07\xa1\xea\xe8\x0e\xd2\xa6\x50\x68\xaa\x2f\x24\xf9\x56\xe0\x38\xe5\xc4\xe1\xf7\x13\x68\xdc\x67\x92\xde\xea\xf8\x61\xc8\x97\xf8\x46\xfd\xb0\xca\x61\xf6\xb8\x6f\xf7\xd3\xfa\xa6\x78\x31\xbe\xbc\x37\x84\xa0\x59\x18\x9d\x1a\xa7\x4b\x0b\xea\x38\xdd\xe5\x30\x42\xd8\x83\xcb\xd8\xc8\x0b\x80\x18\x86\xf3\x5d\x44\x46\xe8\xdd\x35\x07\x36\xc8\xd1\x63\x33\x7e\xcb\x3f\xda\x07\xb5\x51\x8d\xd4\xb2\x3e\xba\xb4\x92\x95\x84\x43\x5d\x61\xe1\x0b\x2e\xb2\x82\x99\x13\x23\x93\xdb\x2c\xea\x25\xc3\x5b\x33\x02\xaa\x2a\xf5\x61\x2d\xe3\xdd\xb2\xd8\xbf\x2c\x64\x58\xda\xa5\x56\x99\x9b\x26\x4f\x27\x9b\x3f\x21\x20\xe1\x93\xc1\xf4\xa6\x02\x91\x7e\xd4\x6a\xb5\xd6\x41\xc3\x78\xe6\x86\x30\xa3\xd4\xc2\x0e\x17\x89\x0d\x55\xdd\x0a\x08\x47\x00\xce\xea\xad\xfa\x54\x65\xc8\x48\x02\x3f\x27\x92\x88\x5e\xdc\x82\x17\xd6\x89\x93\x4d\x87\x67\x50\xc4\xd0\x1c\x05\x39\xca\xfc\xc6\xe0\x42\xc5\x5d\xf9\xd2\xe3\xfc\xaf\x80\x5e\x68\xad\x64\x9c\x5c\x1b\x69\x9f\x11\x55\x52\x71\xf9\xd9\xc6\x66\xfc\x02\x72\xe5\xcb\x69\x7f\x19\xed\xee\x42\x7e\xfd\xb2\x63\x69\x44\xe0\xd0\xb1\x55\xf7\x67\xb7\x41\x41\x59\xca\x47\xe1\x8e\x59\x8d\x0c\x94\x9c\x9e\x7e\xfe\xf6\x2b\x53\x5b\xf2\x5e\xfc\x7b\xb7\x0a\x0d\x34\xa7\x3c\x5b\x3c\xc5\xa8\x6a\xf5\x05\x6e\x49\xd4\x1a\x54\x7e\x6f\xc5\x41\x73\x1a\x0d\x5d\x5b\xc2\x08\x59\x0d\x17\x6b\xf5\xf6\x70\xc4\x1f\x38\x43\x35\x59\xd5\xae\x9f\x51\xac\xc5\xe0\x8d\x1d\x9e\xd6\x23\xf0\xff\xc3\x8b\xe3\x5e\x48\x4c\x16\xf2\x0e\xc7\x54\x92\xf1\xd0\xc0\x64\xa8\x19\x1f\x91\x90\x1f\x95\x8e\x4c\xa7\xc4\x61\x37\x6f\x84\xfb\xd6\xbb\x23\x20\x1c\x93\xc1\xc6\xbd\x5b\x1d\x5d\x4d\xaf\x0c\x66\x25\xba\x36\xd2\xad\x7e\x0c\xba\x3f\x81\xfb\xe4\xf0\xb3\xd8\x5f\x0c\xec\x4e\x40\x9d\x27\x93\xb1\xc9\x8a\xe2\x17\x30\xcc\x30\x83\x75\xd7\x02\xb1\x94\xf5\x0b\x01\x69\x12\xc6\x16\x02\x91\xcd\x93\x4d\x56\xc5\x9e\x55\x7b\x53\x55\x18\xe5\x21\x9c\xc3\xc8\x0b\x11\x9e\xbb\x3c\x5a\x76\x29\xf2\x6d\xea\xcf\xb6\x38\xd5\x9f\x63\x14\x2d\x16\xd7\xaf\x1b\x8a\x5e\xf9\xd1\xd4\xc3\xa9\x6b\x5f\xd1\xfa\xe8\x23\x28\x5f\x69\x33\x3f\xf3\xbb\x52\x82\xc4\xec\x2c\xb4\x3f\xcc\x25\x75\x1e\xd5\xe4\xed\x6e\x3a\xd3\x67\x6e\xcc\x79\xeb\x48\x24\x50\xc2\x55\x3d\x32\x84\x1c\x3b\x92\x30\x91\x19\x3d\xd8\x1d\x96\xf3\xd0\xe8\xfe\x6c\x68\x24\x78\x94\x27\xb6\x80\xf8\xa5\xa0\x6e\x87\x2b\x3e\xe4\x48\x33\x63\x19\xb2\xa3\x67\x48\x8f\x32\x95\xb8\x52\x2a\xf0\xf8\x45\x56\x01\xf9\x3e\x90\xe3\x23\xbe\x20\x57\xf2\x78\x6a\xfe\xd2\x0d\x23\x87\x38\xde\x3f\x6e\x8c\x37\x83\x49\xd3\xcb\x6d\x3f\x2a\x31\x05\x7f\xe1\x52\x3a\xd7\x7a\xe7\xb3\x9e\xda\x20\xde\x61\x80\x85\x6e\xca\x16\x91\x6e\x19\x89\x8c\x70\x94\x7d\x63\xfe\xa5\x12\x8e\xe2\xed\xc8\xc6\x52\x8d\x0d\xae\xe8\xa7\xd1\x3e\x4d\x4a\x7a\xc8\xd0\x3e\xcb\xf5\xb7\x1b\xd8\x49\x0a\x29\x45\x2f\x2c\xa6\xd5\x6a\x69\xc7\x4a\xf3\xd8\x1f\xd7\x81\x62\x97\xbe\x02\x55\xa5\x8d\xb2\xe5\x28\x81\x86\xec\x2f\x19\xe8\x08\x92\xb7\xd5\xec\xb0\xfd\xee\xa9\x9f\x2b\x27\x44\xf2\x66\x6d\x04\x2b\xd5\xf7\x37\x63\x42\x11\x91\xb3\xe4\xe3\x79\xff\xed\x5e\x6f\xcb\x0b\xe4\xa5\x53\x29\x65\xd7\x1d\x03\xa4\xa4\x64\xeb\x6a\xd4\xbc\x1f\x9c\x72\x17\xe0\xe1\x6d\x26\x0d\x4c\x79\x97\x7c\x5d\x14\x63\xc4\x19\x70\x42\x5f\xa5\x51\xed\x79\x39\x35\x32\x50\x7e\x11\xa3\xc4\x4f\x7e\x18\x24\x4c\xf3\x44\x96\xad\xff\xf0\x17\xfd\x44\x16\x46\xe8\x0c\x51\x84\x63\xf0\x34\x8f\x24\x9a\x95\xff\x59\xdf\x11\x20\x85\x36\xba\xe9\xf8\xb4\xe9\x67\x9b\x54\xc2\x4e\x1d\xcb\x25\xd9\xa6\x92\xaa\x41\x55\xe3\xdf\x3e\x34\x15\x55\xe2\x50\x87\xf1\xca\x0b\xad\x43\x3b\xab\x4a\x90\x1b\xb2\xb2\xdc\xe5\x8e\x22\x8b\x54\xe6\x09\x7b\x0c\xbe\x4c\xb5\x3b\x4f\xef\xa7\x92\x0b\xf3\xc1\x59\x82\xa7\xe8\x93\xdd\x89\x9c\x22\x14\x5a\x41\x41\xeb\x88\xbf\x84\xef\xe9\x80\x90\x60\x34\x14\xfe\x7c\x94\xe0\x5a\x1d\x45\x06\x57\x6a\xee\x48\xa9\xf3\x40\xe5\xc1\x62\xa9\x85\x66\xc1\x4e\xef\xca\xbf\xd7\xab\x54\x7e\xd9\x7b\xf2\xf7\x66\x73\xc9\xb2\x7f\xe6\x41\x4c\xc8\x05\x62\x46\xef\x75\x2e\xd2\xee\x58\x34\xd8\xe9\x62\x90\xc9\x62\x7d\x17\x30\xb8\x0a\x9f\xf2\x24\x2d\x6f\x2c\x6c\xb5\x55\x48\x63\x48\x5f\x17\xe9\xc8\x50\xe0\xa4\x69\x4a\xfb\x3d\x36\xa3\xb6\x05\xbd\x8b\x1c\x76\xc3\x10\x8d\x71\xda\x48\xaa\xa1\xc0\x2f\x8d\x5f\x25\xbd\x6f\x67\xda\xce\xb7\x8a\xa8\x6b\xe4\x55\x5b\xe3\x84\x53\xa7\xd1\xb6\x0d\xc7\xc2\x7a\x9c\x1c\x5c\x54\x65\x14\xd0\x4d\x8f\x0b\x73\x26\x7f\x5e\x4b\x9c\x80\x73\x51\x45\x5c\x6f\xd8\x1d\x50\x53\xd2\x9a\x80\xa6\x14\x41\x3e\xb7\xae\xda\xe5\x55\x94\xfa\xbf\x90\x97\xf6\xec\x68\xa4\x32\xc3\xc1\x68\x1b\xd9\xb1\x1c\x3b\x51\xc7\xf4\x49\x3b\x1c\xb2\xc5\x36\x9d\x11\x5c\x7e\x6b\x48\x60\xd6\x6c\xc8\xb6\xdf\x67\x11\xed\x92\x92\xad\x70\xc4\xf6\xaa\xc4\xa4\x23\x68\xe6\xf2\x42\xe5\x4e\x79\x39\x24\xa5\x25\x28\x41\xaa\x1e\x77\x3e\x86\x67\x50\x43\x1a\xf0\xea\xd3\xf9\xbb\x77\xc3\xfb\x6f\x85\x6a\xe7\x21\xb2\xc6\x41\x00\x91\x8b\xc1\xb2\x6e\xfc\x92\xd1\x87\xf7\x1e\x89\x43\xff\x9f\x99\x08\x30\xd5\xa7\x93\x6c\x38\xdd\x8d\xab\xee\x6c\xf7\x24\x6b\x0a\x86\x96\xdc\xe6\x6f\x3b\x7e\xe2\x18\x93\x43\x4c\xc2\x99\x96\x82\x22\x23\xf3\x65\x99\xbf\x7a\x85\x06\x48\x83\xc5\x18\x96\xa4\x65\x1a\xa0\x61\xe5\x94\xeb\xbe\xf3\x0a\xd8\xa7\x86\xec\xd0\xa9\x5a\x03\xb0\x8b\xd7\xf4\x93\x2b\x7a\x0e\x65\xb8\x7b\x42\xe9\xbb\xac\xdf\xe3\xf1\x57\xf8\xe9\xbf\x58\x6d\xb5\x3b\x7c\x5f\xc7\x95\xc6\xa4\xf8\x05\xeb\x3f\xcc\x47\x36\xb1\xb1\xc9\xc9\x87\x6a\xde\xab\x71\x56\x9b\x02\xc0\x62\xa5\x9d\xc8\x37\xf3\x8a\x5c\x9b\x4a\x13\xec\xee\xfd\xf1\x8f\xca\x67\x0d\xbf\xe7\x84\xc1\xb6\x23\xe1\x54\x82\x8b\x04\x39\x89\x60\xb6\xcb\xe9\xc7\xe8\x24\x26\x9b\x44\xc3\x03\xfc\x42\xc6\xfb\x47\x8c\xca\x8e\xfc\x6f\x46\x4b\x33\xc4\xa8\x6f\xd9\x1e\x8e\xcd\x7c\x81\x2c\x24\x46\x2a\xef\xf3\xdc\xb0\x98\xcb\xeb\xca\xbb\x5d\x69\xd9\x97\xe3\x8c\x3c\x5a\x9a\xfd\xa9\xdc\xfc\xa5\xb2\x4b\xc1\x01\x4a\xc1\x94\x3f\xcd\xb3\x1f\x8a\xfc\x4a\xd7\xa7\x0a\x48\x4f\x7b\xfa\xe7\x69\x59\x60\xb2\xaa\x17\x29\x2d\x52\x53\x54\xa5\x39\x94\xb6\x08\x7a\x0f\x1e\xe9\x4e\xf3\x06\x43\x6e\x02\xa8\x3f\xc6\x14\x69\xcc\x53\xba\x79\x16\x71\x1d\x92\xd9\x02\xe6\x17\xf5\xd2\xd0\x41\x4a\x86\xcc\xdb\xa4\x96\x3f\x12\xa6\xdd\xac\x50\xc1\xb7\x0a\x18\x7c\xd8\x27\xf7\x1e\xae\x33\xf4\x56\x38\xb9\xf6\x56\x9a\x0c\x56\x96\x8c\xeb\x9d\x62\x11\x6a\x38\xb1\x4a\x73\x17\x16\x87\x9b\xf6\x7e\xdd\x53\xba\xc4\x57\xa8\x5a\x07\xcf\x37\x89\x4f\x2e\xb0\x1b\xef\x13\xb7\x27\xfa\x6b\x2c\xb1\x3b\x2b\x0b\x91\xc6\xe2\xc9\x48\xc1\xe3\x3b\xc5\x5e\x94\xbb\x16\xb3\x96\x96\x4b\xdc\xfd\x07\xf6\xa3\xf0\xc1\x4c\x7d\xa0\x1a\x2d\x4f\xb6\x14\xe7\x64\xd6\xaa\xe0\xbf\xfc\x55\xb5\x2d\x0f\x8d\xf7\x2d\xb7\x3a\x53\xe6\x0f\x7b\x1c\x06\x7d\x62\xc4\x9d\x14\x57\x32\x68\x31\x23\x8f\x7d\x5a\x6e\xd7\x12\xd7\x6d\x4d\xa8\x0e\xfa\x01\xa5\x8a\xc9\x53\x01\xdc\xe5\x97\x22\x4e\xb8\x04\xa8\x71\x14\x26\x29\x38\x73\xf8\x0c\x97\xa2\x9b\xb6\x3a\x88\x1c\xc7\x67\xdb\xb8\x71\x3b\xc3\x2d\xd4\xaf\xe4\x9a\x8c\x30\x1c\x5a\x44\x7e\x21\x99\xe0\x02\x6b\x29\x33\x1d\xea\xb1\xac\x03\x82\x6f\xc4\x36\xcd\x42\x73\x33\x32\x81\x35\x00\x43\x58\x5e\x6e\x13\x0d\xd6\x7a\x3c\xf9\x96\x8e\xba\x46\xc3\xbd\x98\xc7\x93\x34\x20\xcf\xad\xa7\xf6\xef\x99\x5b\x84\x2c\xb6\x55\x8b\x87\xa9\x88\xfd\xaa\x93\x46\xc6\xef\x7d\xeb\xe9\x1c\xe0\x1e\x55\x05\x4c\x46\x98\x72\x1c\x0d\x78\xcc\x02\xca\x33\x95\x05\xfb\x32\x09\x81\x41\x78\xcf\x81\x33\x12\x61\x81\x8e\xc6\x6a\xc6\xaf\xe6\x7b\x2d\xe5\xee\xd1\x1e\x8f\x03\x2d\x63\x71\xe3\x48\x70\x10\x2f\x27\x7c\x01\x4e\xa6\x18\x99\x77\x26\x0b\xb5\xf8\xab\x0b\x71\x07\x0d\x48\xc3\x0b\x6e\x1f\xda\x69\x43\x64\x7c\x54\xc5\xb0\x96\x79\xda\xb0\x68\xf5\xa4\xe9\xad\xf0\xba\x1f\x0f\x16\x85\x93\xea\xa6\x24\xf3\x92\xb4\x12\xe3\x65\x4e\x2e\x5e\x9c\x70\x57\xe4\xc1\x0b\xfe\x7a\x9f\x1e\x15\x86\x8f\xc9\x9d\xc3\x52\x0c\x99\xc4\x13\x65\xb8\x26\xa3\x4c\x86\x7c\xa7\xc8\xaa\xcc\xbe\xd0\x5f\xe4\xe5\xaf\x43\x6d\x9a\xb0\xf0\x12\x20\xc2\xac\x94\xb7\x7d\x37\x23\x36\x6c\x7b\x05\xa4\x5d\x0f\x8e\x0c\xb5\x2a\x05\x81\xa6\x8c\x13\x92\x25\xde\x93\xb3\x07\x84\x7a\xbc\xb6\xb6\x5f\x2f\x30\x23\xe1\x40\x06\x2e\xa8\xd9\xd2\xb0\x3e\xa6\x74\xdc\x74\xf0\xb6\x40\x21\x18\x33\x72\x88\xc6\xe8\x11\x01\xec\x5b\xfc\xf4\xce\xee\x9f\x54\xd5\x56\x21\xe4\x94\x93\xdf\xad\x3c\x9d\x14\x28\x1f\x18\xb7\xf7\x92\xe6\xb7\x37\xad\xd5\x8a\x16\xaa\x40\x5a\x70\xa4\xbf\x3c\xb8\x3f\xf2\x07\xc7\xdb\xef\x27\x7d\x24\x86\xab\xd5\x54\xa8\xe6\x63\xe0\x03\x4e\x00\xbd\xf3\x7c\xf1\x9f\x83\xb1\xba\x36\x29\xe2\x9d\x88\xb0\x7d\xd6\x62\x24\x37\x12\x09\x32\x9d\x76\xbd\x9d\x6c\xce\x3c\xa9\x7b\x04\xa2\xbc\x18\x1c\x8e\xf5\xcc\xba\x69\x49\x4b\x6d\xc7\xd6\xf9\x8c\xc6\x20\x00\x6c\x64\x05\xcc\x40\x03\x0a\x2c\x39\x93\x61\x36\x17\x72\x39\x86\xd3\x0c\x97\x70\xc7\xd4\x13\x30\x95\x50\x3d\x21\xa9\x2e\xf4\xd1\x9d\x12\x27\xfe\x81\xbc\xcf\x1d\x1b\x88\x7e\x35\x8d\x9d\xf4\x7d\x51\xf9\xdf\x57\xde\xa5\xb8\x8d\x56\x1b\x2f\x53\x83\x74\x5c\x9a\x28\x2d\x53\x7b\x75\x45\x5b\xaf\x5c\x40\x77\xa2\x91\x3d\x90\x3f\x24\x06\xb6\x14\xff\x5f\xa6\x87\x0a\x7f\xac\x6f\x78\x91\x54\xc6\xe0\x9f\x3e\x4f\xd6\x80\x42\xce\x86\xe2\xb5\xd9\x6e\x76\x91\x3d\x5b\x53\xf0\x59\x7a\x0b\x67\x8d\x22\xef\x16\x4d\x0a\xf6\xf3\x29\x57\x88\xce\x9a\x45\x91\xb5\x5b\xbc\xec\x40\xc4\xd1\x96\x6e\x9d\x65\xe3\xcc\xd9\x09\x86\x62\x0e\x28\xea\xa1\xea\x07\x65\x00\xc1\x69\xe6\x83\xcd\x5f\xdd\x33\x4c\x29\xfa\xd4\x7b\xb7\xcc\xbf\xb9\x3f\x3d\xaa\x36\x60\xcc\x97\x51\x11\x03\x6a\x83\xee\xa7\xe4\x44\xc8\x04\x2a\x8a\xc2\x9e\x63\x78\x6e\x6d\x30\xb7\x6d\x04\xba\xd3\x8b\x74\xf7\x58\xa9\xd6\x87\xca\x56\x7f\x59\xfd\x0c\xa0\x83\x6f\xc9\xa7\x9a\x32\x7a\x5e\xbe\xd3\xad\x53\xed\x3a\x19\x18\xbf\xef\xe2\x6b\xbd\xa6\x6e\x8c\xd6\x7d\x27\xe7\x52\xd2\x51\x42\x94\x38\x42\x93\x96\x1b\x49\x78\xab\x62\x4c\xf7\xce\xa8\xe7\xb2\x79\x65\x2f\x3b\x92\x5f\x11\x0c\xda\xa6\x37\xfc\xe3\xcf\xd3\x90\x72\xbd\x80\xcf\xb4\x16\xde\x85\xaa\x90\xe1\xc5\x58\x3d\x03\xe9\x19\xc6\xa8\x2d\x45\x83\x42\x42\x96\xe8\xf6\x3e\x55\x7d\x00\xee\xb2\x97\xd1\x3d\xc2\x6f\x26\x1c\x4b\xe1\x87\x99\x0e\xaf\x7b\xc4\xa9\x3b\x42\xdc\xa4\x03\xc4\x22\x80\xb5\x6c\xc4\x1b\xeb\xfa\xbf\x68\x13\xbe\x6d\x2b\xf9\xbe\x58\xdc\x8a\xa6\x56\xb5\x7f\x8b\x1f\x0b\xb1\xc5\xe5\xf7\xe6\x21\x34\xba\x13\x8f\xf9\x34\x8a\x84\x0e\x67\x25\xc9\xb8\x10\xfa\x86\x25\xe8\xc3\x39\xed\xda\xaf\x89\xbd\x65\x5f\x04\x87\x04\x61\xa8\x82\xe1\x67\x26\xd2\x89\xbb\x53\x69\xd8\x75\x1b\x72\xcf\xf6\x2a\xae\xf2\x82\xa0\xfa\xd3\xc5\xda\x05\xc5\x49\xc4\xc7\xa1\x2e\x4d\xa7\x53\x8f\x53\xea\xb2\x34\x22\x6d\x25\x24\xaf\x66\x04\xe0\x1b\x2d\x12\xfa\x62\xc7\x73\x78\xbc\x2d\x48\x58\xbf\x51\xd8\x5d\xff\x66\xaf\x9e\xbb\xd4\x58\x4f\x55\x02\xc8\x44\xd2\xe5\x28\x61\x65\xea\x9d\xa7\x77\xb8\xc2\xa2\x2a\x3c\xed\xa8\xa1\x63\x72\xc9\x0f\x50\x6a\x76\x1b\xd8\xba\xe7\x56\x7e\x60\x21\xbe\x48\x42\x58\x72\x70\x6f\xab\x0d\x06\x3b\x50\x04\x03\x13\x08\x79\xb9\x10\xdd\xb3\x0a\x79\x5e\x51\x35\xd4\xc7\xdd\xa8\x88\xf3\xd4\x0e\x4b\xc5\xc3\xcf\x3a\x99\xd9\xbb\x2b\xbe\xeb\xe4\xf1\xe1\x3f\xbb\x42\x17\x9a\x26\xbc\xbb\xfa\x03\x98\x8a\x79\xbe\xd9\xd1\x9e\xce\x5d\x4f\xac\x0c\xa2\x16\x93\xcb\x61\xf8\xa9\x19\xf3\xd7\x39\xfe\xd2\xa2\xcd\x5a\xeb\xfa\x29\x2f\x29\x56\x1c\x20\xb6\x04\x1c\x4a\xa6\x74\xe9\x00\xcc\xe9\xd9\xc9\xff\x95\x0e\x3d\xb8\x14\x3b\x93\xdf\xa3\xb3\xe4\xf0\xa8\xca\xd5\x2d\x13\xce\x94\x72\x44\x96\xbf\x31\x9c\xe1\x97\x6f\xea\x26\xb4\x3f\xf5\xbe\xd4\xf4\x59\x80\xf7\x4f\x3d\x56\x04\x22\xe6\xba\xe5\xb0\x0b\xf5\x88\x25\x71\x90\xd2\xf6\x90\x6f\xc6\xd8\xfc\xaa\x9c\x4a\x49\x2f\x93\x76\xba\xf8\xa9\x9f\x31\xab\x11\xf8\x34\xef\xee\x67\x1c\x5f\xa6\xea\x6a\xa9\x66\xa7\xa1\x99\x45\xe3\x9b\x05\x7b\xf9\xfb\x83\xcd\x44\x26\xcd\x4d\x81\xb7\xb4\x2c\x20\x38\xba\xd8\x6b\x8e\xdc\x88\x6a\x16\x64\x21\xe7\x2c\xda\x22\x3e\x47\x76\x8f\xa8\x6a\xbb\x66\xd8\xb7\x33\x67\xae\x68\xe5\xad\xc1\x11\x2c\x0a\x06\xbb\x1e\x99\x6b\x1b\x9f\xfe\xc5\x68\x8f\xf3\x5c\x05\x51\xd9\x65\xe9\x00\x4e\x86\x2d\xca\x10\x89\xa7\x43\x01\x7e\x29\x3d\xc3\xae\x0c\x5b\x2b\xb0\xdf\x9f\x35\xb2\xaf\x26\xb2\xa3\x2a\x94\xd4\x42\xd8\xb1\xd1\x24\x19\x32\x47\x13\x36\xb1\x1a\x12\xe5\xde\xba\x87\x8d\x28\x37\xaa\x71\x59\x6b\xcc\x5e\x8f\xf0\xb0\x5e\xdd\xb4\x3f\x3f\x77\xc2\x5c\x88\xe2\x7c\x1f\x1a\x81\xe9\x77\xda\x0c\x34\xef\xf8\x51\x64\x48\x57\x8f\x9c\xf2\xbf\x00\x00\x40\xff\xbf\x2e\xc9\x8e\xeb\x6e\x72\x82\x56\x29\x56\x44\x59\x4f\x1e\xf6\x12\xcf\x30\x89\xe8\x85\x69\x55\x8e\x15\xd0\xb5\x76\xc3\xe5\x58\x88\x1f\x07\x2a\x31\x0d\x4c\xf3\x3a\x8c\xea\x12\x6b\x74\xe0\x9f\x11\xb1\x76\x27\x6b\xfc\xce\x8f\xd5\xe5\xe3\x50\xc1\x17\x2f\xbe\xcb\x32\xfa\xac\xfa\x83\x29\x2a\x04\x4b\xc3\x99\xd3\xad\x96\x43\xb3\xab\x39\x74\x4a\x24\x99\x80\x9d\x65\x67\x76\x94\xe4\x45\x00\x2a\xcd\x39\x1d\xa8\xd7\xe2\x04\x94\x9c\x69\xa5\x21\x7a\x03\x3c\xc2\xbd\x4f\xa0\x34\xcf\x63\x13\xdd\x85\xd9\x00\xe6\xa8\x73\x31\xb2\x86\x3a\x57\x99\x05\x0b\x1c\x84\xc7\xd0\x48\x7d\x4c\xab\xf3\x8f\xb6\x3b\xff\x58\x6f\x8b\x2e\x0e\xc2\x4e\xd8\x50\x95\x47\xa8\xd9\xab\x87\x02\xa9\x01\x1c\x01\x4d\x36\x55\x95\xb3\x40\xf8\x67\x59\xe2\x15\xd5\xe5\x08\x81\xed\x39\x4e\xf3\xc7\x1b\xcc\xa9\x81\xb7\x40\x17\x27\x2f\xf7\x00\xc1\x3a\x6a\x8d\xfb\x15\xab\xf6\xa6\x14\xbe\x18\x90\x8e\x49\x4b\x86\x62\xc8\x35\xf1\x2b\x76\x35\x2e\x34\x73\xca\x98\x83\x51\x7d\xeb\x5c\xd2\x75\xe3\x01\x4b\xe2\xeb\xb4\x2e\x80\x39\x66\x6e\xfc\x1c\x71\xe4\x50\x16\x7f\xd2\xc6\x5b\x81\xf4\xdc\xd5\x16\xf5\x1f\xd2\x82\xb9\x59\xa8\x58\x7e\x21\x8a\xad\x55\xf5\x9e\x98\x69\xb4\xd0\x69\x55\x39\xf7\x9d\x91\x3c\x9b\xba\xe5\xc3\x57\x61\xfb\x08\xe0\xb1\x2d\x4d\x1e\x95\xd8\x1f\x57\x0e\x3d\xf8\xb9\x90\x6e\x95\x5a\x4f\x26\x01\x96\xc9\xc7\x9d\xd8\x16\x45\x0e\x93\x60\xfe\xc7\xf2\x7f\xd5\xa5\x0b\x03\xc5\x87\x9f\xb4\x6b\x69\xbf\x6a\x1b\x55\xdd\x48\x11\x8c\x6f\xb9\xce\x6d\xd6\x94\xe8\xfe\xa8\x6d\x5e\xa2\x3e\xe1\x75\x76\x92\x18\x03\x67\x4a\x18\x90\x16\x0e\x61\x43\x85\x3b\xb2\x12\x69\x60\x8a\x6a\xbf\xea\x27\x91\x58\xd6\xb9\x19\xaa\xc2\x7c\xf8\x2c\xb2\x2c\x4d\x9d\x6f\xec\xd1\x9e\x25\x12\xcc\xe6\x9b\x91\xc9\x18\x73\x66\x54\x80\x3c\xce\x00\xaa\x01\x59\x4d\x44\xe6\xa3\xc8\xe4\x76\x49\xe2\x6d\x7c\x5b\xfc\xb5\xdd\x07\x69\xfb\x35\x12\x39\xc8\xe5\xbd\x16\xf8\x8a\x88\x2a\x58\x84\x89\x4d\xc0\x49\xe9\xa6\xc6\xc9\x2a\x17\x6b\xc5\xe9\x64\x07\xc4\x53\xd3\xa6\x5a\xdb\x26\x8c\xd6\x9d\xa2\x06\x33\xce\x24\x65\x94\xc2\x54\xa3\x14\x06\xcf\x72\xde\xf7\xa5\xe5\x1d\xd5\x56\x12\xdd\x14\x93\x56\xf7\x68\x47\xd8\x66\x37\x83\x67\xb5\xe2\xaa\x8c\xad\xca\xf1\xe2\x17\x63\x01\xf7\x58\x2d\x58\x5c\x69\x36\x01\x6b\x5d\xcb\x4b\x12\x51\x50\xb5\xb2\x3f\x50\x76\x72\x83\x53\x12\x4b\x9e\xa2\xd9\x58\x58\x11\x29\x05\xae\x7a\x02\x26\xed\x7b\x0b\x96\x2b\xf8\x92\xec\x9c\xdb\x41\x91\x7a\x4c\x78\xe5\x99\x6f\x75\x2d\x80\x95\x07\x90\x94\x89\x3a\x14\xd3\xba\x95\x38\x1f\x54\x72\x30\xb7\x34\x34\x29\xa0\x6e\xaa\x61\x68\xd9\xf2\x50\xa6\xd3\xb6\x1a\x4f\x93\x0f\x29\xc9\xb8\xb6\x7c\x26\xf9\x2e\xd8\xb8\xa1\x7a\x1b\x9e\x71\x2b\xe0\x7c\xca\x19\xe2\x8c\x11\x52\xf7\x83\x47\xc2\x5d\xd7\xc4\x7e\x68\x04\x91\xb3\xb0\xff\x7f\xba\x2c\xae\x83\x49\x34\xf9\xcc\x9c\x49\x20\x85\xa2\x54\xd9\x7c\x61\x61\xce\x74\x15\x93\x05\x3f\xaa\x72\xc7\x77\xf9\x86\xef\x6c\x20\x7f\x71\x93\x38\xfa\x64\xef\xe9\xb9\x1b\x8e\x94\xbc\x60\x84\xd4\x87\x62\x40\x73\x29\x6e\x24\x47\x56\x42\x0e\x17\x18\x8a\x0a\x1b\x84\xb1\x8c\xb9\xf3\x45\x70\x8b\x0b\x94\x08\xa4\xb2\xe8\xb0\xf0\xfe\x5d\x06\x34\x7f\x00\x7c\x29\x38\xb1\x0a\x85\x63\x5b\xcb\x08\x36\x42\xb1\xf9\xd4\x3a\x6e\x00\x90\x78\x0b\x3d\x4a\x8f\x9c\xc4\xdf\x5b\x4b\xc0\x54\xcd\x55\xba\x5d\x2e\x01\x65\xd0\xc9\x5d\x87\xd6\xd5\x91\xc8\xcc\xcd\x9d\x81\x8b\x16\x46\x61\xb1\x1c\xf5\x5b\x09\x95\x16\xc3\x4b\xd4\x57\x7f\x7b\x05\x87\x79\xab\xa7\x33\x1e\xc1\x5b\x2f\x8e\x23\x79\x89\xa4\x05\xeb\xf4\x18\x79\x95\xd4\x98\xa4\x2a\xf8\x20\x2d\xa0\x3e\xae\x29\xb2\xc4\xeb\x0b\xe6\xaa\xe0\x2f\x8b\x28\xc1\x54\x25\xcb\xed\x05\x80\xf6\xf7\x28\xf8\xd7\x22\xaa\x60\x95\x44\x06\x45\xea\x36\x88\x6a\xaf\xc8\x86\xce\x44\x7e\x18\x96\x84\xf9\x77\x01\x31\x72\x37\x25\x36\x4d\xa0\x43\x41\xb4\x3b\x39\x66\xe3\xa7\x6d\x06\x54\x0d\xc5\x51\xbf\xce\x05\x73\xa9\xe9\x6b\x89\x8a\x18\x2e\x68\x60\xff\xc2\x22\x22\xc2\xb4\x08\xf4\x19\xb1\x7a\x23\x62\x1c\x9a\xa0\x30\x00\xa2\x5b\x32\x39\x72\x52\x7d\x47\xb4\xbc\xf8\xfa\xbe\xb4\x4a\x45\xc6\x99\x0a\xd8\x72\xe8\xa0\xb9\x8d\x8b\xfb\xb7\x7e\xa6\xcc\xcc\x3f\x56\xca\x44\x11\x7a\x06\x1b\x85\x14\x54\x20\xae\x5d\xca\xd9\x25\xa0\x5f\xe7\x79\xf2\x29\x96\x56\x2b\x38\x92\x11\x54\x54\xdc\x58\x25\x31\x52\xfd\xba\x4f\x02\x7f\xa1\x03\xf9\xd6\xa4\xa7\x5b\x86\xaf\x84\x8a\xef\x33\xcd\xa2\x48\x86\x2c\x5b\x35\x8e\x9b\x32\x27\xfb\x11\x18\x16\xc3\x46\x56\x30\x93\xdd\x4f\x95\x36\xaf\x96\xc8\xd1\x8c\xeb\x3b\x8e\x6b\xc7\x72\x99\x36\x75\xaf\x6b\x26\x27\x37\x25\x6f\x11\x5a\x99\x66\x34\xf0\x75\x55\x59\x16\x67\xbb\x3b\x44\xa6\x48\x96\xe9\x55\x14\xda\x86\x9b\x3c\xa8\x01\x6b\xc1\x42\x27\xfb\xa0\xad\x61\xa3\x25\x93\x1b\x12\x63\x7f\x93\xb9\xad\x30\xb4\x40\x47\x92\x53\x72\x2a\x33\x4f\x63\x6d\xf4\x17\x04\xd4\x53\x95\x6e\x5d\x5a\x40\xbc\x50\x9a\x66\x1e\x87\xe2\x76\x6d\x82\xb8\x8b\x49\x7f\xfd\x67\xb1\xcc\x54\xd0\x2c\x08\xc2\xf4\x06\x2f\xa9\x26\x27\xdd\x6b\xf7\x14\x02\xff\xa9\xb0\x0a\xe0\x7e\xf0\x88\x58\x48\x5f\x5f\x7f\xcb\x60\xad\x4d\x26\x58\x78\x8c\xa7\xcb\x67\xb6\x48\x3c\x86\x68\xd9\xd0\xb6\x3d\xee\x81\x1d\x81\xb5\xa1\x7c\xe3\x40\x51\x67\x68\x54\x30\x6e\xce\x09\x70\x36\x6e\xd1\x55\xa7\x31\x99\x9c\x06\x59\x38\x53\x8b\x81\x12\x39\x80\xaa\x33\x9a\x0e\x52\xe5\x3f\x3c\x12\x45\xef\xc9\x68\xcc\x82\x81\xee\xf5\xf8\x72\x51\xa5\x3d\x0c\xec\x44\x4c\x68\x3a\x96\x50\x7a\xa0\x47\x3e\xbf\x6d\x3f\x29\xcd\x35\xc5\x25\x07\x94\xe8\xa3\xe8\x4c\x91\x10\x2b\xe1\xc4\xc2\x06\x90\xa6\xf9\xb3\x53\x77\x74\x92\xa6\x22\x8a\xa9\x83\x87\x07\xb8\xbf\x97\xd9\x50\xea\x22\x61\x51\x25\x05\x40\xe4\xb5\xdb\x44\x17\x12\xa8\xae\xe3\x29\xb3\x14\x1c\x5e\x2c\x77\x16\xd6\x7a\x30\x0b\x14\x27\x18\xa3\xd4\x44\x55\x72\x02\x3c\x2d\x17\x15\x33\x55\xee\x3b\x54\xb8\x5d\xc4\xb0\x43\x50\x2d\xae\x56\xe6\xc2\xbb\x05\xdb\x83\xec\x2c\xb5\x05\x8f\x67\x63\xb4\x21\x26\x72\xa2\xc3\xa1\xf0\xac\x96\xac\x54\x2a\x4d\x7e\x19\x57\x2b\xe1\x90\xb1\xe1\xf2\xa0\xf6\x6e\x30\x16\x67\x1a\xe8\x53\xff\x96\x11\x84\x62\xa7\x28\xa2\x00\x42\x0e\x53\x51\xf0\xde\x31\x23\x2a\x95\x36\x9c\x68\xa9\x64\x20\x41\x8a\x90\x46\x9e\x88\x57\xf4\x8b\x08\x10\xcb\x60\x53\x37\x12\x29\x5b\x2c\x8c\x16\xf2\x87\x1e\x3a\xa8\xb2\xb4\xc9\xa7\x89\x3d\x0f\x2e\x92\x6f\x11\xdc\x29\xdf\x26\xf2\xde\x24\xe1\xdd\xf1\xd9\x22\xc3\x9e\x8d\x1b\xd2\x9f\x83\xe0\xce\xcd\x4e\x2d\xbe\x9a\x4c\x98\xc4\x43\xad\x87\x26\x61\xd1\x35\x6c\xde\x1d\x24\x68\xe2\x8b\xa6\x60\x11\xdf\x66\x50\x68\xd3\x25\xd4\xed\x76\xd2\x9a\x0f\xad\xb6\x8a\x27\x1c\xbf\x1f\x1d\x21\x7a\x76\x3d\x10\x21\x7d\x1a\x50\x1d\x88\x22\xb4\x4c\xce\x56\x51\xc2\xec\x34\xc3\x52\x1a\xa3\x2f\xbd\xfc\xd8\x7c\x2a\xc5\xb6\xb0\xce\x99\x26\xf3\x38\xb8\x72\x6c\x24\x73\x97\xb9\xde\xa8\x8b\x84\x91\x15\xe6\xa8\xb0\x7c\x60\x2e\xc9\x28\xa1\xa9\x28\x70\x94\xc9\x41\x84\xd8\xa4\x91\x6f\x0b\x52\xb0\x11\xa6\xad\x58\xde\x0d\x3d\xaf\xd0\xe8\x00\xc7\x9f\x68\xc9\xa4\x41\x49\xe6\x53\xfa\x1a\x15\xf8\x4f\xe4\xce\x98\x19\x92\xf3\x39\xa4\x08\x91\xbf\x64\x39\x08\x34\x72\xa4\xa3\x01\x32\x59\x1e\x78\x05\x23\x15\xc8\x28\xf8\xc9\x88\x9d\xa5\x8f\xa9\x2b\xd0\xb5\x4a\x9b\x5f\xd7\xf0\x34\x60\x89\x0e\x95\x30\xb9\x98\x25\xca\xa9\xf4\x98\xc3\xf3\x83\xba\x13\x4c\xef\x49\x27\xdb\x77\x3c\x99\xcd\x80\xb5\x4f\xee\x24\xad\xe7\xa0\x4a\x1b\x64\x3e\x56\x5c\x14\xca\xd6\x3e\x5f\x9e\x28\x85\x99\xb3\xd3\xe2\xb7\x18\x21\xb1\xdc\x12\xe8\xcd\xe9\x0c\xac\x50\x22\x5d\x2f\xbf\x1c\xd0\x7f\x15\x9a\xcc\xe0\x50\x6e\xb8\xab\x60\x6e\xd8\x14\x8e\x4f\xbc\xab\xb6\x54\x4b\x77\x55\xa4\x1d\xde\x62\xba\x25\x5d\xec\xb3\xab\x11\x2b\xd6\xcb\x2a\x7f\x4f\x10\xcf\xef\xc9\x1b\x6a\x9e\x2f\x46\x9c\xed\xe3\xb5\x48\x29\xc8\x35\x2e\x4c\xff\x6a\x65\x80\xbb\x53\x2c\x1b\x09\x14\x17\xd2\xce\xfd\xe5\x69\xb1\x3d\xe3\xd6\x64\x6e\xac\xac\xaf\xff\xcb\x25\x65\x29\x5b\x41\x76\x45\x4c\x05\x40\x8f\xbd\x9a\x46\x85\xac\xc7\x57\x71\x42\x22\xae\x41\x8e\x6a\x98\x18\x6d\x54\x22\x20\x4b\x7f\x2d\xdb\x27\xe6\x4c\x7e\xea\x0f\xf0\x8d\x36\xad\xb8\x1a\x88\x47\x96\x68\x07\x10\x2a\xd3\xd9\x76\x30\x65\x49\x52\x53\x66\xd9\xf3\x70\xe1\x7e\x24\x9c\x84\xe3\x60\x1c\x33\x06\x68\x94\x2f\xac\x87\x72\xa5\x1e\x4d\xd8\x77\x44\x59\x19\x44\x65\x92\x9a\x28\xee\xfb\xc1\x39\x85\xdc\xfd\x18\xf5\xcf\x2b\x65\x02\x26\xf1\xe6\xec\x2e\x62\x34\xc0\xd3\x1a\x18\x29\x20\x6e\xca\x93\x92\x75\x8e\x88\x55\x9d\x3f\x86\x98\xb6\x48\x33\x66\x70\xb8\x37\x8f\x82\x9a\xaa\xc6\xef\xbb\x32\xb9\xfe\x8f\x3c\x88\x35\x10\x88\xd9\xa0\x54\x4a\x68\x51\x30\x48\x21\x4d\x3d\x20\x7a\x11\xa2\xba\x0e\xa6\x89\x37\x19\x70\xa3\x71\xb1\x75\x8b\x96\x1a\xaa\x40\x19\x07\x03\x75\x9f\x87\x9d\x48\x36\x29\x32\xbd\x99\x93\x89\xc2\x50\x00\xdc\x59\xa1\x53\xfc\x28\x25\x99\x17\x09\xde\xf8\xc0\xc4\x81\xda\x08\x40\xe2\x0d\x1c\x98\x44\x18\xce\x34\x03\x0d\x01\x97\x54\x8e\xee\xe0\xfc\x97\xf4\x12\xa6\x4a\x06\x03\xe4\x6c\xce\xa5\x83\x5c\x90\x14\x74\x1c\xe1\x59\x08\xfb\x0d\x04\x7f\xe6\x34\xe9\x77\x0e\x3a\x35\x48\x52\xd1\x6d\x90\xa8\x74\xe7\x3c\x94\x50\x56\x45\x05\xf3\x27\xbd\xbf\x33\x7b\x14\x95\x88\x4f\x58\xe5\x04\x94\x49\x42\xa3\x44\xaf\xe9\xdb\x08\x42\xab\x22\x0f\x1a\x56\x37\x61\xd5\x1f\x98\x4c\x50\xfb\x19\x82\x41\x8c\xad\xee\x08\xcb\xbc\x76\x1a\x58\x52\x00\x82\x17\xc2\xb2\xba\x5a\x7e\x2a\x10\x68\x96\x68\x3d\x28\x1a\x25\x03\x12\x4a\x89\x40\x9c\x92\xbb\x65\x5c\xa0\x22\x13\x3b\xcc\x99\x28\x98\x04\x94\xc6\x91\xd2\x2c\xf2\x23\x95\x9d\x00\x5a\x2a\x33\xdd\xf7\x85\x63\x5e\x9c\xe9\x6d\x00\x14\x08\x72\x38\x89\x54\x94\xe1\xcc\xb9\x30\xab\xcf\x90\xbd\x6c\x00\x6a\x5f\x66\xd4\xe3\x03\xf3\xfe\x85\x26\x70\x70\xbd\x54\x9a\x12\x19\x0c\x47\x2a\xe9\x18\x70\xc2\x91\x6e\x4d\x03\xcf\xeb\x21\x2b\xf8\xf0\x0b\x8c\x99\x78\x45\x4a\xf7\xb8\xef\xe5\xe6\xbb\xa8\x89\x2d\x92\x2e\x07\x09\x42\x0e\x92\xf4\x32\x14\xf1\x14\x1c\x2e\xe2\x1c\xa4\xcd\x72\x25\x0a\xdb\x40\x03\xb5\xc0\x71\xbc\x5d\x70\x37\x1b\x94\xba\x73\x20\x22\x5d\x9d\x00\xdb\x9d\x35\x94\xa2\xf2\xa6\xcc\x52\x2f\x36\x35\x3e\x7f\xa0\xec\x5e\x1e\xc9\x2e\xe0\xbe\x4c\x35\xdc\x91\xd8\x94\x24\xcd\x9c\x05\x63\xe7\xbb\xe7\x88\xe7\xa3\xb2\x62\x1a\x98\xcc\xae\x12\x82\x41\x47\xeb\x3e\x1f\x8b\x48\x58\x2a\x56\xb8\x46\x8a\x8a\xab\xdb\x58\x2d\x12\x6e\xd7\x34\xda\xed\x9d\x0a\xd2\xec\x48\xaa\xbf\x75\xf3\x54\x62\x87\x84\x8d\x35\x0c\x27\x25\x26\xd8\x5a\x6a\x2f\xe0\x61\x44\x83\x31\x60\x50\x06\xb2\x94\x1d\x45\x37\x19\x41\xf5\x0b\x5c\x91\xba\x21\x26\x40\x01\x58\xbb\x68\x0b\xe6\x15\x99\x23\x38\x9c\xdb\x96\xb7\x72\x33\x0d\x71\x44\xa5\x0e\x16\x86\xf2\x6d\x78\xe6\xac\xc1\x27\xcd\x02\x42\xff\xe4\x91\x2d\x49\x2c\x12\x01\x16\xd1\xca\x15\xdc\x62\x3f\x14\xbf\x2e\x93\x96\x17\x54\xc6\x0d\x2d\x4a\xb3\x32\xf4\x32\x3b\x26\xbe\x56\x0f\xb0\x61\x99\xed\x98\xc0\x33\x01\x9c\x29\x0b\xce\x68\xa4\x77\xc7\x00\xa6\x50\xc9\xb2\xf7\xf8\x2b\x99\x22\x11\xc4\xa1\x12\xd9\xc4\x16\xf8\x45\x39\x19\x48\x24\xe2\x16\xd9\x22\x8b\x7e\xa3\x78\x73\xe4\xdd\xe5\x5c\x58\x10\x2f\xe8\xa7\xe4\x17\xdb\xd8\xeb\x76\x27\xf4\x65\x80\xba\xf3\xb2\x71\x11\xcf\xfc\x52\x3b\xfb\xbf\x40\xbb\xcb\x91\x33\x3a\xcb\x26\x27\x3e\x50\xb1\x31\xa0\x01\x75\xcc\x8f\x40\x6a\xcf\xdf\x4e\x3a\xd5\xc9\xb3\x2e\x89\x4e\xdc\xa7\x2c\x4d\xb2\x44\xa2\xf6\x7b\x7f\x41\xc8\x92\x50\x9f\x87\xa8\x5e\x68\x49\xf0\xc0\xff\xba\xe5\x71\x8e\x4a\x56\x5a\x1b\x1a\x22\x64\x4b\x88\xb2\x3d\x2b\x87\x98\x54\xb9\xf3\x0b\xe9\x0c\x9d\x6f\xfc\x97\x19\xb3\x20\x3b\xce\x9a\x72\x2c\x89\x77\xd1\xc6\x35\xd6\x62\xd3\xeb\x2c\xe7\x17\x9d\x45\xdf\x4a\xd7\xa9\xa2\xf4\xbe\x0a\x4a\x26\x51\xb6\xb6\xae\x27\xbd\x10\x66\x9d\x0b\xc3\x40\x06\xbb\xc8\x29\xb9\x61\x7f\x83\x1d\x2a\x09\x2f\x68\xb3\x32\x4a\xb7\x38\xc0\x6e\x03\x8c\x59\x3c\xcb\x38\x62\x79\x8b\xa4\x95\x5b\xed\x22\x05\x4b\xdc\xb3\x1d\x32\x1f\x4b\x11\xc9\xc6\x44\xe7\x2a\xda\x44\x43\x9a\xaf\xff\xa9\x3b\xbf\x8e\xb4\xf5\x44\x2b\xd6\xa3\x1a\xda\x29\x61\x43\x85\x42\x01\xac\x3f\x03\xd8\x87\x14\x75\x1b\x2c\x79\xfd\x25\xaa\x8c\x79\x74\x8d\x4b\x99\xbe\xc3\x6f\x66\x72\x97\x3c\xf3\xc2\x61\x77\xf9\x38\xf5\xd5\x88\xf4\x2b\xa0\xd1\x74\x68\xac\xf7\xa6\xd6\x9c\x99\xff\xc9\x8c\x46\xe4\xa1\xd4\x4d\xd1\xcf\x03\x96\x5f\x2d\x6f\x15\x4f\x61\x4f\x0c\x2d\x12\xdc\x29\xc8\x14\x2b\x5a\x82\x21\xa1\x48\xcb\xcc\x86\xb0\x54\x1a\xa6\xa4\x34\xc8\x1b\x32\xe9\x73\xb2\x0e\xe1\x9b\x6a\xe9\xcb\xc8\x84\x94\x4a\xbb\x4f\x62\xa6\x13\x08\x81\x68\x20\x39\x3f\x35\x68\x4d\x75\xd6\x63\xd8\x35\xd4\x23\x93\xb0\x48\xbd\xa4\xb6\x1d\xc2\x46\x32\x84\x80\x4a\x52\xa0\xb6\x08\xbd\x20\xa7\x4b\x01\x04\xed\x7c\x72\xb1\x2a\x9a\xba\xf4\x84\x17\xc1\x6c\x44\xd6\xab\x29\x28\xe3\xa9\xdf\xdf\x3b\xca\xa5\xae\x7f\x5b\x1a\xfd\x45\xeb\x8b\xa1\xf0\x42\x69\x4e\x9f\x11\x2b\x36\xdf\x9a\x4f\xa2\xea\xc7\x67\x43\x76\x11\x09\x39\x67\xd6\x0d\xcc\xf7\xd3\xf1\xa8\x93\x4c\x52\x1a\xf7\x9c\x25\x62\x59\x59\xe8\x46\x28\x27\x36\x98\xa1\x1b\xf1\x51\xab\x85\x83\x65\xfc\x03\xf5\xf2\x70\x50\xa6\xaf\x46\xe0\xf4\x95\x41\xaa\x17\x24\x61\x5b\xe9\x31\x13\x05\x9b\x70\x9b\x38\xc3\x62\x05\x0e\x08\x8e\xc3\xe8\x63\x80\x1d\x73\x06\x19\x7b\x93\x5a\xfa\x19\x22\xc3\xb2\x8d\xdc\xc3\xb2\x25\x4f\x20\x59\x91\xa1\x31\x7e\x16\xf6\x11\xc1\x10\x9a\x48\x95\xea\x4d\x06\x1c\x03\x32\x1a\xd6\x1a\x8e\xf9\x20\x22\x63\x45\xea\x24\x90\xaf\x3b\x93\x63\xeb\xcc\xcd\x2a\x75\x03\x8d\x08\xa8\x4b\x11\xbb\x44\x49\x7d\x3f\x78\x0d\x45\x54\xb7\xc2\x70\x05\xc2\xac\x9a\x75\xaf\xde\x4d\x85\xdc\xa0\x69\xba\x21\x44\xea\xc6\x17\x21\x86\x92\xfd\xb5\x34\x5b\xf4\xe0\x7b\xab\x85\x2a\xab\x13\x51\x13\x41\xda\x39\xf5\x7e\x24\x49\x9d\x8a\x80\x7c\x08\x79\x88\x11\x1f\x51\x1e\xf7\xbd\xa3\x73\x6a\x37\x88\x79\x87\x2f\xde\x07\x57\x02\x5f\xb0\xc7\x08\x19\x7b\x20\x22\x41\x08\x87\x92\xf9\xd9\xc8\x3d\x07\x0e\x85\x76\x9b\x37\x51\x6c\x0d\x39\xb8\xc0\x90\x47\x38\x77\x09\x67\xed\x64\xf1\x48\x62\xb6\x35\x32\x60\x4d\x2f\x5a\x78\x3e\x11\x40\x5a\xca\x8e\x8f\x34\x91\x98\x32\xc3\xab\xc0\x60\xae\xdd\x21\x1a\xab\xf2\x6e\x9d\xf9\x2c\x51\x22\x43\x1e\x87\x6e\xd4\xf7\xe4\x8a\x8e\x49\x31\xf5\xec\x66\xc6\x23\xc7\x98\x08\xef\x17\xdd\x1a\x95\xb2\x4c\x2e\x57\x04\x6e\x61\xc8\x36\x7b\x35\x52\xa0\x51\x1a\xa5\xd7\xd8\x10\xea\x11\x47\x08\xbf\x69\x30\x68\xd5\x02\xda\xdb\x4f\x6c\xb5\xdb\xdb\xe5\xc9\x92\x23\xcc\x7f\xa0\x24\x26\x12\x72\xfa\x7b\x8d\x65\x18\xed\xbf\xb6\x9c\xb1\x1f\xa1\x4d\xae\x80\x05\x29\x5c\x59\x38\xb5\x17\x82\xf0\x34\xc2\x06\x18\x84\xc5\xe3\x04\x9b\x21\xe8\x7e\x12\x6e\x6c\x40\x01\x06\x79\x05\x6d\x66\x55\xd1\x00\x1c\xdb\x62\x03\xb3\x2e\xc3\x08\x2f\x8b\x0d\x24\xb1\xf0\x6c\x76\x54\x8f\x10\x3e\xc3\xc4\x2b\xba\x3a\x4d\x88\x64\x81\xd6\x85\x11\x0e\x5a\x16\x08\xf3\xfd\x47\x91\x14\x4d\x39\x53\x4d\x49\x81\x21\x48\xc7\x08\x4b\xf9\xd9\xa2\x65\x8c\x3a\x1f\xe0\xc0\x97\xe6\xda\x20\x1c\xc8\x20\x46\xa1\xd1\xd0\x93\x27\x8d\x26\x8e\x81\x5b\xb0\x95\x50\x9a\xb3\x12\x40\x31\x89\xea\xc1\x92\x5e\x05\xf6\x76\x6c\x26\x15\xa2\x5b\x46\x15\x59\xa3\x17\xbe\x63\xed\xe0\xa4\x72\x38\xd3\x52\x0b\x9d\x8a\x60\x14\x2c\x21\x6c\x59\x03\x08\x1f\x55\x0d\x6f\x1e\xf5\xe2\x20\x05\xb5\x5e\x46\x80\x00\x2c\x82\x0d\xae\x65\x7b\x98\x5a\x4a\x02\x4f\x4f\x57\xd0\x83\x74\xde\x76\x94\x62\x26\x72\xce\x17\xbc\xbb\x38\x29\xc8\x5e\xd9\xa4\x6d\x95\x48\x48\xfb\xdb\xd6\xb2\x50\x69\x66\x34\x3d\xda\xf8\x45\x37\xe0\x22\x2c\x53\xd1\x10\xe4\xcf\xde\x4a\x62\xee\xc5\x12\x14\x13\xa9\x52\x7e\x1b\x37\xde\x91\x3b\x97\x8a\xbb\x57\xf1\x07\x6f\x19\xa8\x0d\x40\xd1\x04\x67\x1d\x39\x37\xcd\x09\xcb\xce\xd2\x01\xe4\xa2\x11\x65\xaf\x55\xc9\x3d\xe8\xc9\x0d\x5c\x89\x56\xa7\x3a\x11\x1b\xd4\x41\xbe\x82\x20\x8f\x57\x96\x44\x68\xcf\x2d\xba\x9c\x9a\xc0\xb5\xe4\x30\xa8\xa6\x23\x55\x4d\x1d\xc9\x89\x75\xf0\x88\x73\x07\xea\x66\x99\xac\x06\x0c\x79\xf0\xae\x66\xf6\x5c\x9c\x36\xf0\xb4\xc4\x43\x12\x31\x2d\xb3\x41\x22\x08\x9c\x08\xe9\x11\xd8\x79\x3a\x7d\x44\x6a\x00\x92\xe5\xd9\x96\xb2\x15\x1e\x15\x30\x4b\x9b\xef\x50\xc8\xd4\xe1\x44\x56\xe0\x0d\xed\x00\xc7\x7e\xd3\x80\x9b\x22\x7a\xbf\x29\xee\x9b\x82\xae\x4c\x99\x22\xad\x5d\x3c\xc5\x61\xff\xe3\xa4\x22\xd8\x8c\x22\xaf\x76\x0e\xa9\x87\x33\xa4\x72\x62\x10\xfd\x26\x13\x05\x65\xfc\x30\xc9\x03\x61\x46\xb1\x43\x62\xeb\x6a\x3b\xcd\x88\x97\xdf\xfa\x51\x44\xc8\xa0\xd7\x12\xea\xc4\x35\x44\x3c\x88\xc2\x63\xcc\x69\x98\x74\xbe\x32\x90\xf4\x20\x43\x3d\xd0\x39\x2e\xb3\x30\x0c\x99\x94\x27\x80\x15\x08\xb7\x47\xf9\xc5\x50\x2c\x8d\x82\x27\x40\x4c\xd6\x9b\xf8\xc2\xfa\x1a\x0b\xab\x08\x41\xc1\x01\x39\x21\x4a\xf7\xed\x65\x2d\x80\x48\x88\x4b\x68\x9a\xf0\x13\xb9\x87\x90\x68\x08\xbf\x0a\x96\xe0\x8b\xf4\x75\x04\xa0\x6e\xbf\x14\x92\x02\xb3\xec\x40\x34\xe4\x2b\x99\x4b\x18\xee\x05\x29\xe9\x1b\x35\x0c\x8f\x88\x48\xb2\x6b\x8b\x80\xb3\x89\x5c\x9c\xcf\x75\x00\x6e\x83\x83\x57\x34\xa0\x1e\x59\x6e\x40\x3c\xf6\x1e\x2b\xf4\xf2\xc1\x8a\xc2\xee\xde\xad\x03\x27\x48\x52\xa4\xf0\xe6\xdd\xdf\xf4\x16\x6b\xe4\x16\x68\x24\x66\x5c\x23\x2c\xc4\xdc\x2d\xb6\x22\x64\x36\x80\x47\x8f\x68\x16\xbe\x55\x44\x90\xa5\x1b\xbd\xa4\x38\x19\x75\xb0\x6b\x33\x25\xdc\x3b\x8f\xc1\x15\xbf\xf7\xa4\xd5\xa0\x88\x0e\x85\x93\x05\x71\x2b\x80\x5b\xbf\xd5\x72\x5a\x2b\x19\x69\x1d\x64\x9f\x9b\x3c\xf8\x03\x17\xb3\x01\x04\xe0\xf9\x68\x98\xa6\x69\xec\x06\x02\x16\x90\xcf\x2e\xa3\x18\x91\xc4\x15\xc0\x24\x85\x04\xef\x44\xca\x6c\x6b\xbe\x22\xcb\x2e\x8a\xba\xc3\x45\x6e\xc1\x7e\xad\x83\xf7\xa5\x9e\xe0\x26\x1b\x06\x17\x2a\x20\x52\xc4\xd0\xcf\x41\x15\xbe\x0c\xbd\xe0\xf5\x03\xf9\xb2\xc9\x0a\x4a\x4d\x7b\x0e\x5c\x4f\xe7\x53\x94\x18\xd0\x81\x9d\x83\x91\x0d\x01\x24\x0d\x22\xe3\x79\x18\x03\x74\x92\xb3\xbc\x90\x19\x9d\x0d\x17\xf0\x5d\x4b\x0c\x61\xc1\xa9\x33\xeb\x32\x4d\xef\x50\x44\x48\x79\x0c\xe1\x9b\xfe\x1b\x68\x02\x80\x12\x90\x34\x5b\xc2\x3a\xce\x45\xa4\x1d\x3a\xa0\x5d\xc3\x85\xd4\xae\xfc\x66\xda\x3a\x2b\x52\xa2\x86\x80\xc3\x70\xfe\xc1\x05\x10\xc3\xc8\xe2\x1c\x21\x91\x91\x2a\xd8\x39\x3b\x09\xe4\x96\xf4\x47\x38\x0b\x20\x39\x70\xd4\x47\xdf\x50\x63\x08\x2f\x65\xd4\xa2\x97\x7d\xaf\x07\x43\x65\x79\x03\xbd\x08\xba\xad\xee\xcf\xdc\x07\x38\xb3\xf9\x98\x4c\x61\x9b\x8a\xd4\x5a\xb8\xd0\xe6\x8c\xb4\xde\x0b\x12\x44\x27\x40\xc9\xd1\x51\x1e\xdd\xe7\x34\x5a\xef\xc2\xd2\x21\x1b\x18\x45\x23\x7b\x17\x2b\x80\xe9\x01\x25\x71\x69\x1d\x0d\x3c\x07\x05\x56\x35\x2f\x55\xcb\xf5\xcc\x09\xd3\xd5\x62\x10\x83\xdd\x48\xe2\x31\x6d\xf9\x93\xb4\x70\x24\x04\xc6\xb5\xd9\x81\x8f\x62\xf3\x40\x57\xcf\xfc\x1f\x77\x23\x0a\xf1\x00\x2d\x08\xe3\x77\xc7\x54\xc2\x6f\x9a\x2e\x96\xeb\x9b\x06\xa1\x06\xeb\xf3\x2c\xd2\x1d\x0c\x69\x33\xc2\xf4\x5a\x2c\xaf\x31\x5c\xc1\xeb\x6c\x6c\xe3\x7a\xd4\x60\xcd\x6a\x24\x06\xb0\x24\x98\x35\x08\xcf\x1a\x2d\x24\x8a\xa4\x89\x81\x5c\x9c\xb5\x54\x60\x88\x42\x98\x14\xcb\x30\x43\x8f\x22\x17\xcc\x57\xad\x99\xb8\xea\x75\x97\x45\x8b\xaf\xae\xc8\x4c\xa8\xa6\xee\xa5\x68\x27\x08\x2a\x41\x73\x06\x8a\x6d\xda\xda\x11\xa2\xa9\xa7\x0f\x6b\x6c\x12\x8a\x98\xb8\xd6\x1f\xed\xc4\x95\x12\xb6\xb3\xda\x5e\x7a\xe6\x18\xdb\xae\xeb\xac\x01\xac\x39\x9f\x08\x60\x5a\x53\x04\x30\xe6\x66\xc8\x2c\x7c\x8b\x05\xc0\x67\xd9\x21\x3f\x62\xff\xd5\x88\x16\xc6\xba\x3b\x1e\x0e\x82\x6b\xec\x01\x9b\xd9\x20\xa6\x27\x56\x2f\x56\x25\x15\x03\x28\xe6\xec\x40\xd2\xd2\x9a\x0a\x7e\xb1\xaa\xd3\x5c\xa3\x75\x02\x9c\x92\x73\x0a\xdd\x4d\x57\x1e\x96\x88\x1d\x6b\xd2\x01\xaa\x24\x19\xe2\xa8\x56\x06\x2d\xe5\x3b\xef\x56\x37\xec\x3b\x7d\x85\x10\xa7\x87\x16\x4f\xc0\x23\x72\xc7\x83\x9f\xc9\xc2\xba\x55\xf1\x0a\xb3\x26\xbe\xfc\x27\xc7\x76\x32\x35\xcd\xed\x64\x7c\xb3\x8c\x9c\x73\xb7\xf8\x1a\x6e\x13\xa0\x15\x3d\x46\xca\x9f\x9c\x2b\x4e\xfb\x4d\x09\x3c\x24\x0e\xbb\xf6\x30\x19\xa1\x27\x30\xdf\xa4\x3e\xc4\x33\xc3\xd9\x8c\x4b\x98\xc1\x83\x30\x7f\x93\x70\xfc\x1f\xa2\x86\x29\x25\x62\x76\xe0\xb5\x82\x68\x54\x0e\x54\xca\x30\x09\xd4\x29\x8f\xbc\xaa\x16\xde\x1c\x8b\x78\x49\x10\xa6\xcc\x0c\x4c\x33\x0d\xc6\x80\xa5\x94\x00\x7c\xc7\x42\x7a\xeb\x54\xf0\x11\x4a\xc0\x3f\x5a\xf9\x99\xee\xf8\x3e\x24\xf0\x5c\x9a\x93\x60\x10\x0c\xc5\x3c\x58\x71\xf9\x68\x57\x09\x25\xa1\x5f\x29\x30\xeb\x2c\x41\x4c\xa5\x96\x9a\x8f\x32\x90\x0f\x9b\x5e\xd6\x32\xf7\x09\x77\x4c\x79\xfe\x25\x1c\x98\xc6\x3a\x66\xab\x03\x88\x78\x97\x26\x0a\x13\x11\x07\xc5\xb0\x00\xb3\xca\xe6\x1a\x07\x54\x7c\x58\xba\x54\x2c\x53\xdb\x60\xf3\x5d\xb4\xb0\x70\x6f\xcc\x03\xec\x51\x48\x37\x48\xb5\x1c\xe9\x1b\xbc\xc2\x02\xfb\x0d\x72\xd3\x5a\x45\xa6\x38\x91\x7e\x01\x75\x90\x27\x22\xeb\x0d\xb7\xe8\xa6\x03\x08\xb4\xe8\xcc\x35\xf8\x62\x35\x1a\xe1\x12\xe2\x4d\xa3\x27\xa6\x32\xe6\x0e\x55\x81\xfe\xb4\x4c\x88\x08\x0e\xf1\xa0\x9b\x4d\x1f\x46\x81\x75\x78\x9c\xe9\xb8\xde\xc7\x69\xa3\x71\xa1\xb2\xcd\x80\x2f\x2a\x85\x65\x06\x6c\x13\x54\xfb\x9c\x9a\xcd\x80\xd3\x33\xb0\x7e\x31\xc5\xe8\xca\xbb\x18\x6c\x51\x2d\x72\x31\x97\x95\x1c\x55\x84\xd1\x0b\x51\xbb\xe3\x79\x56\x52\xe9\xab\xc3\x56\x88\x4b\x60\x39\x7a\x04\x31\x46\x2c\xae\x52\xc7\xe8\xe8\x07\x80\x34\xc3\x45\xd8\x7e\x0a\x62\x10\xa1\x27\x57\x31\x49\x59\x6d\x4f\x26\x7a\xa7\x05\x89\x40\xef\xb4\x10\x78\x97\xb2\x80\xa5\x3f\xee\xf3\xc9\x58\x71\xd3\xb7\x88\xa7\x8c\x3f\xd9\x99\x74\x1a\x32\xc6\x98\xbf\xc6\xeb\xbb\x3b\x25\x41\x8d\x5e\x7c\x39\x9e\x95\x68\xbe\xe9\x57\x56\xd1\x76\x04\xeb\x22\xbe\x36\xd4\xf1\xe7\xe4\x5f\x83\x8a\xc6\x77\xbe\x99\x55\x03\x78\x90\x1d\x86\x5f\xbb\xec\x01\x5f\x85\x80\x34\xea\xe5\x24\xe8\x64\xe8\x25\x20\xb1\xe4\x81\x18\xdc\x3f\x11\x2b\x4e\x43\xb2\x8e\x79\x67\xba\xb4\x40\x1e\xa1\x66\x6f\xcd\x81\x9e\xba\x75\xa5\x2e\x57\xf9\x80\x5d\x05\xda\xb8\x4c\x20\x84\x7c\xa0\x91\x05\xca\x70\x19\xd2\xed\xb9\x89\xd8\xe6\x96\xe1\x1b\xb0\x30\x0c\x13\x19\x84\xb8\xc1\xa8\xa8\x02\x9b\x1b\x72\x00\x17\x09\x09\x80\x2e\x8b\xed\xe7\xca\x51\xf7\x9f\xa7\x3e\xbc\x68\x4c\x46\x27\x32\xe6\x42\x85\x19\x80\x8d\xc6\xa5\x9a\x53\xe3\xcd\xf8\xee\x3d\x1a\x79\xb5\x71\x62\x13\x9d\x0a\x1f\xd7\x67\x8a\x25\xd7\x14\x15\x92\xc2\x2e\x34\x9d\x2b\x87\xda\xa9\x4e\x98\x9a\x71\x18\xc0\x44\x4c\x3f\xcf\x00\x8c\xa8\x64\xe2\x18\x1e\x3e\xd3\x3c\x67\x30\x3a\xc4\x3a\x52\x46\x27\xe5\x3c\xb2\xcb\x74\xe2\x3f\xe4\x82\x99\x36\x2c\x11\x33\xe9\x58\x64\xef\xd7\x08\x17\x8e\x79\x69\xea\xfa\x8d\x94\x4f\x80\xc9\x1c\x90\x1d\x8a\x13\x32\x14\xf9\xd6\x0a\xeb\x82\x61\x8b\x08\x32\x6a\x6e\xd5\x03\xec\x3a\x44\xfb\xb2\x50\x0e\x91\x10\x3a\x3b\xf7\x1c\x1f\xb4\x98\x46\xa7\x35\xbc\x52\xaa\xad\xd5\x52\x80\x35\xd1\x60\x4e\x49\x04\xb7\x7d\x07\xf6\x5e\x28\x5a\xf7\x6b\xa0\x4c\x6a\x43\x75\x6d\xc5\x6d\x72\x0d\x15\xfa\x0e\xd6\x86\x40\x32\x3f\x29\x02\x5b\x21\xbd\x43\x80\xbb\x4d\x02\x15\x73\x77\x7a\xb2\xb6\x7f\x81\x05\xda\x1d\xd6\x41\xba\xdf\xb3\x40\x80\x18\xb2\xb9\x05\x12\xe7\xeb\x7e\xf3\x5e\xbf\x2e\x81\x33\x87\x4a\xc3\x50\x32\x38\x07\x65\x33\x39\x89\x76\x3a\x9d\xfb\xd2\x95\xfb\x36\xc5\xcd\xbf\x06\xa7\x02\xfd\x1e\x41\x93\x53\x70\x2a\xc3\x49\xd2\x0d\x90\xe3\xb2\x75\xfb\x63\x67\x11\x49\x79\x17\x32\xd9\x5a\x89\x46\xd8\x4a\x0c\xc0\x2b\x41\x96\x68\x5c\x6c\xa9\x80\xb0\xf3\xef\xe9\xb9\x7a\x7f\x75\x78\xf0\x67\x6c\x70\x75\xb8\x96\xe1\x6f\xa0\x60\xd6\x83\x2c\x91\xc0\xb3\x53\x89\xe3\xe5\x03\xc4\xd8\xdb\x93\x25\xfc\x83\x49\xac\xd2\xcc\x39\x3f\xd7\x74\x11\xb3\xc1\x56\x1a\x36\xdb\xff\x5b\x16\x62\x21\x17\x2a\x6f\xc6\x48\x03\x82\xb2\x18\x56\xf0\x4d\xc4\x3c\x9b\x4a\x01\x85\xbc\xc2\x2e\xe8\xd4\x68\xcf\xdf\x1f\x7e\x67\xb6\xa9\xae\xbb\x1e\x54\x90\x05\x49\xee\x19\x8d\x00\x0b\x66\xd7\x21\x4a\xb4\x8d\x53\x2a\xa2\x6c\x7c\x80\xb3\xf1\x8c\x41\x52\x2d\x68\x41\x43\x42\x80\xaf\xb3\x9b\xbe\x69\x21\xce\x67\x2f\x8f\x83\xeb\xfa\x2c\x89\x60\x34\x0f\xf4\xa7\x6a\x24\x72\x80\xd3\xac\x43\xb5\x56\x1c\x16\x23\x80\x82\x7f\x46\xac\x22\x00\x65\x3c\x3d\x05\x8d\xd8\x07\xfb\x0f\x97\x03\x2c\x35\x80\xd7\x19\xff\x36\x3f\x51\x34\x74\x29\x1b\x41\x8b\x3a\x34\x50\x9d\x3b\x06\x35\x98\x88\xc8\x85\x18\xbb\xbb\x42\x7f\x4c\xb9\x39\x2e\xba\x87\x79\x6d\x88\x1e\x1b\x8c\x30\x7f\xc1\x07\x00\x6a\xc0\x33\xa4\x0f\x11\x6d\x3a\xa7\x0b\xe4\x3f\xd5\x7a\x8e\x10\x49\x33\xd8\xd6\x31\x8e\x28\x2e\x67\x90\x6a\x18\x52\x0d\xd3\x50\x04\x30\xfc\x6e\xfe\x2f\x48\xb7\x83\xcb\x33\x35\x5e\xe3\x84\x29\x46\xd3\x6d\x61\xe5\x1a\x2f\x01\xcd\x27\x58\x74\x75\x0d\xeb\xbf\xe1\x20\x47\xf4\xe4\x24\x32\xe0\x58\x4d\xcd\x63\x4a\x19\x27\xbc\xec\xdf\x55\x76\x66\x90\xed\x4b\x96\x10\x9e\x9c\xac\xee\xe3\x22\x24\x5d\xc0\x16\xbb\x8e\xc9\x0c\xd5\xfc\x50\x4d\x46\x44\xf5\xcc\x2f\x60\x22\x45\xfc\xa6\x0c\xbc\xe8\x7c\xad\x52\xf9\x82\x8c\xb0\x51\x5e\x49\x75\xea\x2b\x57\x2a\x61\x9e\x94\x01\xe2\x83\xa2\x2a\x0e\x10\x56\x38\x08\x52\x31\x31\x64\x12\x5c\xd7\xc6\xcb\xe3\xff\xe6\xff\x82\x2d\xca\xab\x7a\x42\x9c\x13\x58\x8e\x00\xc5\x2a\x69\x73\x48\x1b\x0e\x39\xa5\x5b\xf6\x00\xd2\x44\xef\x5e\x44\x63\xfc\x8e\x80\x7c\xfe\x9d\x45\xbe\x3d\x83\x43\x98\xb7\xce\x35\x54\x19\x34\xdc\xdd\x6b\x0d\xd4\x15\x50\x8d\xef\x69\x22\xa3\xe6\x33\xd5\x18\xf2\x61\x50\x90\x72\x01\x51\x38\xe4\x45\xa1\x9b\x2b\x79\x23\x4c\xa2\xc1\x68\x1c\x5f\x30\xd5\x0a\x03\x23\x20\xf4\x88\xff\x01\xfc\x29\x42\x85\xd1\x16\xc6\x12\xeb\x3b\x1c\xe5\x8d\x24\xcb\x82\x92\x05\xd4\x12\xfd\x04\xd5\x08\xe2\x44\x9f\xe3\xc6\xfe\x8c\x96\xe2\x09\xc6\xa0\x63\x47\x00\xa9\xf5\xf1\x56\xd5\x8e\xfc\x7c\x64\x58\x8f\x66\x10\xc9\xc0\x0a\x14\x27\x00\xf3\x7f\xb1\x59\x60\xb8\x40\x59\xa6\xfa\x86\x32\x5f\x74\xbf\xab\x34\x9f\x03\x8e\xa0\x96\x69\x16\x59\xc7\x31\x81\x19\xf1\x70\xbe\x90\x15\x28\xc4\x5b\x7c\x03\xb1\x70\xfa\x49\x81\xbb\xf2\xa0\xa0\x99\x01\x14\x64\x53\xe1\x43\x40\x93\xd9\x98\x45\xdd\x14\xb5\xa9\x4b\xf3\xb4\x6b\xd8\x01\xc8\x4e\x7a\x02\x0a\xbe\x65\x81\x67\xf9\x6b\x5a\x6d\x6a\xe4\x80\x84\x31\x24\x1e\x1a\xcc\x75\xf5\x50\x45\x78\xeb\x68\x2c\x2d\x37\x62\x46\x96\xaf\x16\x2d\x6b\x2c\x34\xf8\xad\x83\x2d\x18\x58\x2b\x3e\x3b\x81\x6e\xbd\xcb\x8c\x56\xef\x74\x76\xcc\x0d\x61\x60\xf3\x13\xd8\xc1\x10\x89\x15\xa1\x92\xb7\xc3\x09\xd0\x6f\x8d\xa6\x63\xd5\x03\x2a\xed\x58\x3e\x39\xf4\xd7\xd1\x95\x4c\x8f\x9b\x10\x6e\x41\x15\x10\x3b\x48\xc0\xb4\x6d\xcd\x60\x39\x42\x63\x9d\xc6\x5e\x0d\xe2\xdd\x74\x79\x9e\x44\x72\x4f\x39\x38\x02\x80\xbc\x16\x8e\x4a\x62\x40\x3e\x23\x0f\xce\x26\x31\x31\x69\x59\x44\xb9\x76\x99\x52\x06\x71\xc8\x11\x40\x03\x02\x26\x57\x4a\xe2\xc1\xa3\x29\x16\x0f\x23\x28\xd2\xe0\x3f\xd4\xdf\x72\x9c\x92\xaf\x58\xc1\x8c\xc4\x9f\x62\xf4\x97\x94\xc7\x42\x3e\x4a\x49\x68\x46\x81\xd8\xd3\xb3\x27\x01\x1d\xa7\x70\x56\xb9\x04\x8c\x04\xc5\x8a\x4e\x78\xea\x64\xf1\x91\x0e\x6c\x06\xa1\xfe\x14\x20\x27\x22\x00\xa0\x13\xa5\x02\x21\x87\xfc\x80\x4b\xa2\x31\xb6\x90\x09\x1a\xdb\x36\x71\x36\xb2\xe3\x30\xfb\x47\x61\x61\x5c\x9e\x87\x30\x40\x3e\x9c\x99\xb5\xd2\x02\x88\x86\x95\xa1\x6a\x26\xa4\xbd\x23\xaa\xb4\xf2\x1b\x0b\x17\x56\x89\x3a\x61\xa8\xb1\x1c\x6f\x25\xc4\x23\x3f\x42\xee\xfd\x96\x07\x0e\x56\x91\x85\x28\x39\x8b\xed\xb6\xe6\x4d\x42\xb1\x5b\x61\x73\x63\xa0\xfc\xc8\xcc\xd5\x4c\xef\xa2\x64\xdc\x41\xc0\xc2\xea\x38\x0e\x66\x5a\x92\x08\x3f\xbe\x26\x03\x53\x05\x4e\x5e\xc2\xf3\x82\xc4\xd2\x94\x4f\xcd\xf2\x63\x99\x26\x4d\x33\xc2\x8e\x26\x1d\xab\x27\xd4\xa0\x29\x11\x2c\x90\x63\x12\x12\x54\x66\x3b\xc3\x14\x2b\x65\x7e\xd1\xb7\xd7\x42\xc1\x80\x87\x78\x96\xd8\xa4\x56\x05\x0a\x10\xe1\x0e\x00\x05\xdc\x4c\xd5\x48\x0e\x76\xdf\x1e\xb9\x5e\xc1\xdf\x47\x4a\x61\x29\x1a\x5f\x44\x66\x73\x98\x71\x18\xff\x5f\x18\xa3\xda\x9a\xcd\xea\xdc\x88\xa2\x14\xcf\x0b\x42\x45\x03\x5e\x33\x5a\x75\x4f\xe1\xd8\x88\x63\x10\xc8\x2b\x55\xeb\x81\x81\xb1\x24\xf0\x4a\xad\x7e\xfc\x01\x81\x3f\xbb\x79\x8a\x32\xaf\xf9\x0b\x65\x7d\x4d\xd9\xa7\x21\x49\xfe\x0b\xc0\x74\xfa\xd3\x42\x5f\xf1\x46\x3e\x78\x64\x82\xf0\x56\xde\x6e\x18\x6a\x60\x9e\x99\x95\xf3\x58\x2d\x5e\x58\x0f\x2f\x8a\x67\x4d\x36\xa6\x35\xe5\x40\x17\x35\xcd\x8f\xbd\xda\xcf\x8e\x06\x08\x05\x65\x71\xdf\x3b\xce\x48\x7f\x7f\x1e\x58\xcc\xc3\x15\xbd\x0c\x97\x7e\x18\xad\xf1\x1c\xe8\x2e\xc0\xe0\xcc\xe8\x03\x54\x20\xe3\xda\x6d\xee\xe1\x95\x93\xbe\x4d\xe4\x77\x02\x24\x55\x11\xfb\x20\x1f\xeb\xd6\x62\x20\xf1\x4a\xeb\x97\x97\xac\x94\x70\x2e\xd2\x9c\x82\x74\x8f\xbd\xe1\x5e\xee\xac\x5c\xa9\x87\x78\x0b\x67\xb0\x2a\xb4\xa5\xd1\xec\x8a\x9f\x98\x40\x27\x44\x22\xf4\x7c\xe4\xcf\xd4\x58\x43\x04\x63\x79\xb4\xda\x99\x7f\x56\x2f\x17\xd7\x00\x22\x59\x2e\xca\x22\x8f\x75\xfb\x1a\x13\x89\x3d\x5b\x22\x7f\xeb\x4c\xd1\x68\xe2\x8c\x4f\x53\xb7\xb6\x44\x78\x70\x64\xbc\x68\xc4\xed\x5b\xdb\xe7\x0c\x96\x21\x30\x84\xb9\x5a\xd2\xb6\x5f\xc4\x44\x79\x56\x77\x8e\x7b\xb2\x0e\x6e\xba\xa4\x39\xb7\x0d\x5e\x6c\xee\xe6\x65\xab\xb0\x8b\x9c\x7b\x74\xe3\x51\x87\x76\x22\x06\xe6\xfc\xd1\x10\xfa\x43\x03\x91\xc7\x59\x98\xb8\xf6\x5f\x17\x95\xe5\xe2\xf6\x60\x62\xc2\x43\x1c\x37\xe0\x1c\x7e\xb2\x58\xcd\xa5\x81\x8f\x0b\x9a\xd8\x08\xa5\x82\xe2\xdd\xd4\x10\xa3\x88\x1c\x9f\xd9\x0d\xc2\x3f\xb1\x27\xf2\x66\xad\x17\x09\x3e\xac\x81\x38\x9b\x30\x01\x0a\x4e\x9e\x1b\x06\x52\x4e\x55\x4f\x67\x3d\x6c\x81\xf7\x5a\x15\xb0\xfa\x86\x0a\xfa\x34\x6d\x51\xf4\x55\xd2\x67\x53\x1a\x41\x0d\x40\xba\x75\x65\xba\x5e\x2a\x5b\x51\x59\xad\xa3\x8f\xce\xfb\x1a\x62\x16\x46\x66\x1a\x2a\x0e\x66\x6c\xd4\xe5\xae\x40\x39\x00\x99\xd4\xec\xa3\x64\x56\x49\x23\x6c\x3e\x40\x0f\x40\xd0\xaa\x04\x35\xf1\x54\x08\xfc\x04\xc6\xcd\xc0\xc9\x33\x72\xca\xb8\x1e\xdf\xbb\x82\xe3\x67\xe0\x06\xd7\xa6\x7a\x3c\xcb\xc1\xab\x18\x11\x11\x7d\xf7\x6e\x36\x68\x93\xc8\x47\x12\xf6\x6e\x7b\xf6\x0e\x4e\x2c\x23\x8a\x91\x80\x14\x68\x96\x39\x61\x5b\x81\x67\xd6\x7b\x86\x54\x64\x91\x61\xb6\x06\x48\xda\x41\x66\x88\xbd\x4a\x81\xb6\xd6\xbc\x9a\x18\xa0\x86\x22\x47\x4e\xbb\x0e\x4d\x2a\x37\x05\xc8\x06\xf1\xaa\x73\xd3\xda\xe2\xeb\x14\x7b\xcf\x1f\xaa\x63\x25\xff\xb1\xd0\x09\xf4\x3d\x42\xcd\x7e\x8e\x29\x30\x48\x20\xa1\xcf\xa3\xf7\x18\xcc\x39\x5b\x3f\xf8\x75\x96\x80\xf8\x44\xfa\xe3\xd2\x20\x65\x0e\x67\xe2\xba\x34\x5c\x43\xd2\x67\x77\x0f\x68\xc0\x33\x83\xcc\x11\xff\x95\x80\x4a\xc3\x91\xb0\x01\xeb\x3a\x60\x28\x79\x91\xbd\x63\xe2\x3b\x2c\xd6\x9e\x8a\xaa\xe4\xec\x68\xe3\xa1\x1b\x61\x2f\x8b\xdb\xec\xd2\x4d\xce\x0b\x36\xf4\x8e\xce\xa8\x36\xb7\xb8\x61\xf0\xcb\xe8\xcc\x6c\x44\x14\x78\x4f\x6f\xb9\x86\x34\x87\x14\xeb\x0d\xdf\xfc\x0f\xb0\xd9\x1e\x85\xb1\x21\x89\x9b\xfa\x16\x2e\xb4\xc6\x38\x8e\xbb\xd0\xa3\x82\x12\x58\xa0\x74\x3c\x8d\x03\xdc\x0a\x23\x90\x56\x3b\xad\xc6\x51\xf2\x16\x0d\x96\x68\x5c\x4e\x6b\xc2\x0e\x0c\x11\x8f\x84\x1d\xb0\x5d\x66\x38\x3a\x44\x34\x79\x02\x5f\xcb\x4c\x05\xa8\x4f\x33\xce\xd5\x60\x40\x98\xae\x8e\xa2\x84\xa7\xec\x8e\x25\x8d\xaf\x2a\x73\x34\xbd\x77\xc8\x98\xde\x3c\xbd\x44\x8e\xc8\x12\xc9\x17\x32\x1f\xae\x84\xb5\x49\x41\xf4\x8d\x62\xf6\xf1\x75\x71\x1e\xc8\xb2\xb4\x73\xd3\x6a\x38\xc5\x1e\x20\x07\xb5\x2d\x57\xa0\xe1\xdc\x58\xfa\x51\x2d\xfd\x0e\x20\xe6\x0c\xda\x94\xd0\x99\xfd\x91\x04\x85\xe1\x05\xbb\x13\x44\xbf\x5e\x07\xde\x70\xba\x5d\x42\x76\x5d\x5a\xd0\x16\x4b\x82\x0d\x75\x63\xeb\x2b\x96\x08\x50\x3f\x21\x42\x99\x49\x48\x5f\x0a\x59\x76\x2a\x44\x6d\xe9\x5e\xd4\x04\xe9\x42\x49\xdf\xe6\x24\x77\x6c\x77\x17\x69\x3e\xa2\x6d\x9b\xfa\x5d\xb9\xe6\x84\x8c\xa1\x13\x2a\x54\x24\xf8\x57\x48\xf0\x06\xd0\x1f\xa2\x44\x83\x1a\xb7\x47\x7e\x4b\x14\x0c\x56\x91\xa4\xdf\x23\x6a\xd4\x50\x2a\x39\xd9\x16\xe8\xf8\x6e\x2d\xaa\x18\x21\x10\x68\xb7\x93\xf2\x31\xb3\x70\x3a\xf5\x2e\x42\x33\xf7\x03\x1f\x76\x8c\xd7\x36\x0c\x98\xba\x73\x61\xe3\xfb\x58\x6b\x9d\xdc\x5a\xd5\x26\x20\x54\x50\xd4\xb0\x26\x32\x68\x32\x07\x65\xf6\x57\x2a\x2e\xd9\xc9\x06\xf0\x47\xdf\xad\x07\x67\x1d\x1b\xaa\x22\xdc\xb6\xb1\xf7\x69\x46\x65\x36\xce\x5a\xc9\x21\x58\x25\xc0\x65\xde\x65\x2a\x4a\x34\xd2\x2c\x0e\x19\x16\x08\xb7\xdc\x8c\x4e\x50\x34\xf9\x57\x9c\x5b\xa6\xce\x62\x2e\xbd\x4d\x47\x1d\x92\x10\x11\xdc\xc0\x60\xa6\xca\xce\xb3\xfc\xc8\x53\x3a\xf4\x6c\x10\x9e\x56\xc0\x1e\x91\xb4\x89\x35\xd2\xe4\x33\x48\x3b\x71\xff\xfe\xa2\xe7\xed\xec\x93\x78\xd5\x8b\x78\x6e\xbc\xdd\x3c\x1e\xd0\xd1\x13\x9e\xb8\x0d\x77\x68\xa4\x5d\x53\xea\x21\x37\xc6\x00\x58\x86\xe2\x31\x63\x28\x32\x08\x71\x26\x35\x63\x63\x9b\x82\xb0\x5e\x59\xa4\xd5\xe8\x3d\xa9\x11\x18\x05\x8a\xcc\x51\x83\x9d\x22\x62\xa7\x25\x11\xc8\x3d\x91\xb7\x3a\x76\xcc\x0d\xc1\x17\xf0\x69\x92\x8c\x54\xe9\xe0\xa9\xc5\xf4\x76\xa0\xa9\xaa\xb0\xf9\x6b\x4f\x63\x42\x68\x61\x8d\x15\x38\x72\xf9\x93\x1a\xcd\xcc\xcf\xba\x59\xb0\xda\x34\xcf\xba\xd8\x18\xb9\xc8\xb1\xec\x18\x4d\x53\x64\xc6\xa3\xa2\x8a\x5f\xbc\xc9\x06\x60\x0c\xec\x2f\x67\xe4\x20\xf0\x10\x61\x29\x0b\xbc\xa4\x25\xb5\xe6\x92\x87\x01\x95\x24\xc9\xbe\x2c\xd0\x71\x47\x2e\x42\x17\x4f\xb3\x5e\xf3\x04\xdd\x3b\x80\x55\xed\x6a\x5e\x9c\x33\xb4\xc6\x33\xd9\xb0\x6d\x57\xe1\x63\x9b\xfc\x93\xb9\x2a\x7a\x02\x37\xb6\x8a\x2c\x45\x6d\x3c\xb5\x88\x52\x1e\x89\x86\x29\xfd\x30\x85\x3a\xd4\x4c\xbe\x7c\xc4\x3c\xf4\x55\x30\x14\x84\x39\x9d\x15\x8c\x55\x88\xa0\x0c\x24\x6d\xa0\x4d\xdd\xcc\x38\x78\x8f\xad\xe7\xca\x96\xb6\x44\x7e\x28\x4a\x06\xed\x82\x73\xba\x81\x5a\x78\xb7\x21\x03\x43\x08\xbb\xc8\x9c\x0d\x1b\x0d\xe6\x90\xb8\xd7\xb7\x0f\x9a\xa1\x12\x88\xcf\xb2\x0e\xf3\x93\xa1\x24\x48\x7f\x21\x44\x85\x93\x96\x8b\xe3\x23\x08\xd6\x61\xf4\x21\xf1\xd1\x01\x58\x30\xd5\x9c\xdf\x0f\xe2\x61\x51\xd5\xcc\xc5\xc1\x4e\x6a\x95\x7b\xb0\x68\xd8\x19\x5a\x71\xd9\x50\x62\xc0\x78\x19\xfb\x03\x19\xfb\xbc\x6c\x50\xc7\x58\x30\x0a\xf9\x65\x50\x88\x4a\x9d\x70\xdc\xdc\xac\x08\x06\xc5\xbc\x0a\x98\x5e\xfb\x21\x03\x47\x06\x22\x2e\x71\x61\xb2\x68\x30\xb9\x11\xc8\x84\x32\x2c\x19\x82\x1c\xd9\xc8\x0f\xe7\x77\x6a\x58\x06\x9c\xe1\x65\x5c\x0a\x06\xd8\x5a\xbb\x4e\x17\xd3\x26\x04\xc9\x0c\x2c\x7d\x7c\xce\x21\x56\xe1\xd3\x18\x74\xe9\xa0\x65\xbe\x40\xf7\xf9\xc1\xc5\x8c\x41\x65\xcc\x41\xe6\x90\xdb\x06\x20\x1d\xe2\x6a\x44\xab\x07\x87\xdc\x0b\xba\x53\xb3\xee\x0d\x23\x9b\x80\x23\x2d\x4f\x15\x40\x1e\x05\xc2\x7f\xd8\x2f\x22\x76\x3b\x9f\x35\x7c\x98\x91\x0b\xc7\x7d\x05\x99\x01\x3c\xc0\x00\xf8\x94\x9e\x4f\x59\xb5\xe7\x77\x64\xbe\x40\x48\x11\x95\x69\xa5\x84\x3b\xdf\xf3\x10\x7c\x45\x00\x35\x8f\x54\x4b\xfd\xae\x20\xd5\xfa\x97\xea\xc6\xde\x85\xc9\xc3\xe4\xb1\x33\x13\xe0\xd6\x42\x0a\xab\xac\xdb\x48\xd5\x3b\xa8\x68\xd7\xcd\xdf\x71\xee\x47\x0e\x39\x64\x44\xa0\x3d\x7f\x15\xe3\x48\x6b\xed\x13\x84\xc5\x2a\xc1\x00\x68\x07\xc5\xc2\xde\xca\x3e\xf5\xe2\xb1\x12\x6d\x09\x5c\xba\xaa\x03\x6c\x38\x51\xc4\xab\x5d\x03\x1d\x63\x09\xc0\x7c\x65\xd7\x13\x7e\xe5\xe2\x7d\x63\xc6\xbd\xe1\x0a\x93\x4b\x27\x0a\x18\x58\xac\x40\xb0\xca\x34\xda\x40\x4a\x1b\x81\x28\xa3\x8e\x6d\xaa\x4c\xc8\x22\x65\x02\xd6\x7c\x84\x6d\xde\xaa\xf0\x51\x6b\x44\x36\xed\x2b\x41\x74\x59\x48\xa7\x11\x98\xcd\x3d\x92\x45\x02\x63\xc2\x86\xe2\xa2\x26\x31\x87\x81\x55\x2e\x3f\x4a\xcb\x59\x08\x2c\x66\x64\x71\x41\x9d\x7b\xb4\xa0\x02\x7c\x8d\x72\x52\x6f\x2e\x29\xf6\xac\xfd\x25\x22\xd6\xd7\x52\xc8\x40\x2c\xad\x33\xad\x4e\xdb\x00\xcd\x49\xdc\x16\x54\xcb\xaa\x20\x30\x20\x6b\x78\xfa\x79\x2a\x1c\xf6\xe2\x17\xf0\x4e\xc5\x36\x0f\x00\xc3\xee\xbe\x96\xf1\xb4\x42\x31\x26\x00\xb9\x07\x58\x78\x9d\xe9\xe6\x2f\x2d\xff\x8a\x2a\x83\x51\xad\x72\xae\x51\xcc\x7f\x14\x1b\xd2\xb0\x67\x2c\x53\x51\xa3\x48\x6f\xc3\x5f\xe6\x49\xec\x1d\x7b\x1b\x20\x2b\x88\x18\x08\xd8\x43\x4c\x8d\x25\x2e\xb3\xd6\xb4\x8a\xb3\xff\x88\x96\x02\xc4\x51\xf3\xc6\x8d\x67\xc9\x36\xd1\xdb\x20\xbc\xf6\x47\xcb\x9c\x90\x22\xc6\x64\xbb\x97\x15\xf6\x87\x84\x3c\x74\x9b\x19\x48\xcf\x74\xa9\x34\x3c\x7c\x5e\xf7\xc2\x59\xd7\xf9\xe3\x1a\xb4\xf6\xe7\x23\x3f\xd7\x01\x08\x9f\xfb\x84\xa7\x9e\xb6\xa3\x73\x75\x29\x42\x7b\x54\x83\xa5\x8f\x4f\xc9\xa9\x18\x10\xbb\xbc\x00\x29\xed\x67\xb3\x73\xb0\xde\x38\x02\xe1\xf9\xa4\xa6\xb4\xbf\xe2\x33\x51\x39\x05\x25\x69\x66\x04\x9e\xf7\x7a\x78\xeb\x2a\x70\x92\x8c\x3b\xe7\x8f\x0a\x59\x7c\x68\x36\x4a\xd9\x59\xf4\x6e\xe4\x12\x94\xa3\xdd\x37\x00\x28\xb3\x46\xde\x8c\x2f\x0e\x20\x39\xf6\x87\xbd\x1b\x16\x15\x69\x21\x80\x3d\xdf\x41\xff\x75\x1c\x4c\xb6\x66\x19\x61\x2c\xa0\x80\x30\xf0\x32\xa2\x30\x54\x03\xd9\x30\x86\x40\xc8\x00\x2d\xc7\x29\x39\x64\x4d\xaa\xa1\x9e\xe5\x61\xfe\x44\xa8\x1d\xce\x21\x32\xfb\x42\xe7\x15\x37\xed\x8d\x93\x94\x8a\x80\xc6\x65\x29\xa6\x01\x39\x70\xa3\x59\x4e\x6b\x96\xe1\x67\xd2\x06\x31\xe7\x4d\xd8\x9a\x8f\x1d\xd6\x25\x6c\x26\xc5\x89\x6f\xda\x7a\x70\xc8\xfe\xbd\x4c\x03\x47\x5c\x83\x89\x78\x24\xb3\x3a\x2d\xa0\xc7\xa1\x3f\xb3\xfc\x2f\xeb\x40\x02\xdb\x22\x94\x43\xd9\x40\x40\x3f\xa4\x88\xcc\x45\xfe\x4f\x09\x80\xb4\x73\xe2\x95\x3f\x70\x7d\x03\x0d\x24\xbe\x93\x38\x1f\x60\x60\xdd\x49\xe4\x26\xf2\xe3\xa0\xa5\x42\x63\x41\xd1\xc3\x99\xec\xbc\xf3\x05\x29\x9c\x38\x35\x5f\x63\x79\x18\x1a\xad\xe8\x58\xc2\x4b\x00\x54\x98\x47\x53\xe6\xda\x6d\x43\x94\x7c\x47\x84\x8e\x06\x21\xb5\x9c\x8a\x02\xef\x4b\x3b\x7a\xe0\x8c\x7f\x50\x8d\x12\xb6\xb8\x2c\x1b\xd3\xe2\x7b\x95\xef\x16\x0d\x49\x7a\x1d\x64\x1f\xf5\x83\xab\x9d\x41\x1c\xf8\x95\xb9\xfe\x36\xe0\xd1\xe4\x99\x9d\xfa\x39\xe0\x69\x34\x8a\x32\x5d\x86\x69\x15\x3e\xae\xc1\x56\x94\x95\x6d\x91\xb8\x6e\x07\xa1\x4b\xd5\x36\xde\xb1\x42\xe5\x62\xbd\xeb\x23\x06\x6e\x29\x9d\xa5\xe3\x4d\x75\x02\x73\xa8\x6d\x28\x96\x21\xc8\x9f\xfd\x51\x01\x7a\x97\xfc\xd1\xc7\xcb\x59\x14\x66\x88\x99\xde\xe1\xb4\xb2\x08\x17\x6d\x34\x53\x8f\xbc\x97\x73\xb3\x11\x41\x8b\x4a\x20\x9c\x4d\x40\x0a\xb4\x5f\xd8\xa0\xac\x80\xc5\x38\x4a\xb8\x85\x72\x83\x60\xda\x29\xc8\xff\xa2\x30\xf6\xa0\x20\xf9\x3a\x9d\x9b\xa1\xdd\xa7\x50\xf8\x3d\x00\xa2\x49\xa9\xcc\xde\x34\xb5\x1b\x30\x8e\xda\xe5\xe4\x79\xdc\x68\xd5\x66\x90\x29\x22\x8a\xa8\x85\x7a\x79\x61\x4e\x29\x08\x99\x93\x91\x4a\x48\xdf\x97\x25\x2c\x0a\xb1\x34\x1b\x8b\x6a\x74\xe2\x36\x50\x6f\x43\xc0\x38\x6a\xb7\x65\xb0\x84\xe0\x58\x39\x7e\x58\x99\xb9\xce\x6e\x68\xc7\x85\x32\xe4\x13\x27\x44\xb7\x5f\x74\x9f\xf3\xf9\xd1\xf7\xa8\xd9\x0b\xb0\x9b\xf7\x88\x1f\x2e\x83\x79\x88\x62\x42\x8a\x02\xbd\x47\x59\x60\x70\x0f\xd9\xb9\xad\x38\x13\xdf\x70\x5f\xbe\xea\x41\x71\x1a\xac\x28\x2b\x2e\x1d\x3b\xa9\x17\x13\xe4\x6a\x82\x38\x08\x68\xd5\x60\xe4\x09\x26\xdd\xed\x0d\x9d\x89\xc2\xb8\x10\x0e\x71\x91\x79\x6b\x6d\x8f\x66\x28\x9d\xe4\xd4\x0b\x83\x23\x50\x71\x0b\x71\x27\xaa\x18\xe0\x16\x08\x00\x4b\x6d\xc8\xd6\x25\xa7\xa8\x47\x61\x76\x86\x5e\x8e\x35\x7f\xbc\xa8\x30\xd9\x4b\x03\xda\xc3\x75\xc0\x1d\x23\x90\x1c\xaa\x18\xe9\x0d\x9e\xf0\x4c\x1e\x44\x98\xd5\xca\x6b\xde\x70\x69\x0a\x08\xff\x82\xb0\x57\x74\xef\x10\x72\x02\x65\xce\x5e\x9f\x47\x6e\xbf\x9c\x07\x9a\x07\x50\x41\x15\xcc\x4b\x1e\x08\x10\xfa\x1b\x72\x1a\x8f\x91\xf5\x48\x9c\x98\x36\x62\x55\x87\x30\xb7\xd0\x42\x37\x12\x27\xed\x7d\xc3\xa7\x35\x90\xd6\x01\x7a\x06\xfe\xa1\x16\x42\x20\xca\x79\xc4\xd9\x50\x95\x53\x84\x6a\xd4\x08\xc5\xe2\xf4\xf0\xa9\x1f\x2c\x42\x00\x28\x63\x2f\x52\x6f\x70\x00\xb7\x57\xd2\xd5\x0b\x06\x52\xc4\x3a\x1a\x02\x82\x04\x6d\x31\x7d\x1a\x70\x98\xa9\xde\xb2\xc0\x3c\x40\x96\xe3\x53\x22\x50\xf5\x31\x34\x1d\x45\xad\xb9\xd2\x2f\x8b\xa7\x87\xd2\xd1\xdc\xe0\xc2\xa6\x67\xe3\xb5\x35\x3d\x0d\xf6\x5b\x4c\x35\xf1\x0f\xec\xcb\xd4\x1a\x35\xbf\x30\xca\x4c\x03\x1f\x3c\x4c\x3b\x69\xc3\x17\x1b\x0f\xd1\x6d\x41\x04\x2e\x25\x9d\x5e\xfc\x48\x07\x9f\x8a\xb0\xf6\xc1\x97\x51\x3c\x8f\x64\x09\xb4\x80\xfa\x45\x18\x9f\x6e\x05\x42\xac\x86\x29\x12\x6e\x3e\x0b\x61\x6b\xc3\x5c\x32\x51\xb1\x1c\x8e\x2e\xd2\x76\x48\x4e\xcf\x68\x01\x20\x10\x5b\x39\xc2\x93\xe3\x6a\x48\x9d\x28\x76\x94\xa1\xd9\xed\x4c\x04\xd6\x34\x31\x75\xb0\x88\x02\xd5\x10\x14\xf8\x34\xdf\x48\x8e\x40\x32\x82\x35\x41\x3c\xc7\x4c\x0f\x36\x30\x21\xc0\x6a\x61\x47\x18\x2c\xa7\x62\x0f\x37\xd4\x30\x31\x66\xd0\xf1\xb8\x69\x9a\xfe\x5c\xed\x70\xd8\x13\x4a\x0f\xc6\x12\x67\xf8\xc2\x7d\x72\xaa\xf7\x4e\xcc\x5f\xb9\x64\x0e\x85\xb7\x3f\xa1\x73\x44\xdb\x88\x10\x26\x73\x9d\x60\xab\xfc\x21\xa9\xea\xfc\x31\x6c\x9c\x52\xf6\x4c\x50\xd4\x62\x00\x4b\x10\x78\xac\xd0\xc7\xf3\x28\xb0\xc1\x38\xcc\xcb\x70\x1c\x3c\x8d\xe0\xed\xfe\x0d\xc3\x08\xc4\x1b\xa5\x14\xb2\xe3\x94\x49\xb4\x43\x23\x19\x59\xf4\xe0\x39\x16\x64\x5c\x00\x7c\xb3\x0b\x5d\x63\xd7\x96\xb0\xd2\x9c\x50\x27\xd8\x67\xf7\xec\x58\xce\x71\x09\x05\xe5\xde\x5a\x40\x53\xb5\x01\x88\x2a\xa8\x70\x96\xa8\xa3\x4e\xc9\x0e\x8e\xb4\x31\x8b\x35\xbd\x47\x72\x60\xfd\x51\x46\xd1\x26\x88\xae\xce\xc5\x45\xee\x55\xb9\x01\x18\x48\xd1\xfe\x69\x80\x71\xa5\x6f\x77\xc4\xec\x96\x8f\xb2\x86\x37\x6b\xdd\xc4\x45\xa5\x5d\x87\x3b\xe0\x7f\xdb\xc7\x38\xc9\xf1\xe7\xb2\x54\x3b\x19\xa1\x65\x89\xa5\xa8\x7a\x41\xe3\xde\x3b\x0e\x32\x2c\x6b\xb1\x0c\x75\xfa\xde\x90\x67\xe5\x5e\x73\xc4\x05\xe3\x2c\x7c\xe5\x89\x33\x54\xcc\x10\x81\xa8\x60\xf3\x2f\x00\x12\x9e\x71\xe4\x0c\xa4\x42\xf9\x88\xd6\x61\xf2\x41\xd1\x46\x2e\x85\x47\x19\x42\xe4\xc1\x94\x25\x59\x59\x3b\xb5\x6a\xa3\x9b\x78\x34\x56\xab\x6d\x2a\x52\xd7\x1a\x1e\x54\x67\xc2\x3b\x94\x8b\x14\xfd\xd6\xa2\xbc\x12\x20\xa9\xe6\xd9\x52\xe7\xa6\x95\x63\x9d\x51\xe6\x33\x99\x8d\x3b\x6b\x80\x78\xc7\x19\x3a\x1d\xcf\xac\x76\x8f\x6e\x91\x8f\x72\xa4\xd9\x24\xfe\x68\x22\x36\x5f\xa2\x74\x6c\x64\xc4\xf8\x68\x8c\x7a\x33\x29\x9b\x7f\x75\xd4\xbf\x94\x33\xdd\x32\x19\x07\x6e\xc4\x6c\x96\xf5\xac\xed\x18\x78\x59\xc0\xdb\x9f\x78\x68\x96\x87\x8b\x98\x63\x01\xfe\xf0\x36\x9c\xfa\xab\x74\x8c\x51\xed\x99\xcb\x6e\x93\x60\xd0\xef\x72\x37\x74\x9c\x53\x22\xc2\x1a\xeb\x11\x41\x51\x76\x8a\x64\xaa\xf3\xb0\x0e\x92\xac\xd5\x7b\x14\xc6\x80\x4f\x76\xd5\xeb\xd3\x3f\x8f\xd4\x74\xed\xd4\x87\x82\x8a\x97\x17\x66\x6e\x01\xb4\x37\x42\x03\x55\x31\x04\x52\x06\xdf\xa1\x1e\x7f\x10\x71\x35\x5b\x33\x16\x1e\xf5\x40\xff\x50\x8a\x34\xfc\x04\x74\xcc\xd0\xb0\x61\x1d\x68\x0c\xd6\xf2\x7d\x78\x6d\xf5\x48\x4a\x72\x01\x8b\x2f\x33\x7b\xb2\xad\x46\x6f\x25\x6c\xae\x17\xa0\xbf\xb1\xeb\x23\x62\x35\x3a\xf8\xb7\x92\xfb\x90\xaf\x10\x7e\xf5\xea\x5a\x4b\x57\xcc\xdf\x84\x3b\x3e\xc8\x66\x6e\x0c\x5c\x03\x25\x10\x72\xec\x6f\xbe\x23\x64\xd3\xb3\xa0\x98\xab\x09\xaf\x07\x2f\xc2\x65\xd7\x9b\xaf\x45\xca\x95\x6c\x28\x68\x95\x78\xc4\xb7\xdb\xc5\x72\x91\x80\x2f\xea\x83\x47\xe8\x90\x14\x87\xda\xef\x1d\x9a\x65\x5d\x91\x8f\xbe\x88\x3e\xe0\x99\x04\x88\xf8\xc1\x2a\x43\x94\x23\xdd\x4e\x86\xba\xa6\x08\xf5\xe2\x62\x66\x86\xa1\x0b\xa6\xb9\xbf\xe6\xcc\x41\x7d\x52\xd1\x31\xa4\xdb\x1c\x8c\xd6\x42\x18\x0a\xd2\x00\xbd\x74\xe6\x57\x69\x2e\xdc\x33\x26\x23\x3f\x89\xf2\x5b\x9b\xa9\xbd\xca\x12\xe2\x2d\x83\x3a\xd4\x27\x45\x18\x26\x15\x1f\x13\x86\x69\x64\x4d\x52\xf1\x2e\xd3\x9c\x0b\xef\x84\xec\x53\xb6\x1e\xd0\xef\xc4\x06\x86\x0f\x71\xb4\x0c\x0e\xf0\x8a\x28\xb9\x43\xd5\x32\xb6\x7a\x96\xa3\xdd\x5b\x90\x22\x01\xd1\x72\xd9\x41\xf0\x0b\x50\x6d\x58\x66\xdc\x96\x26\xd6\x00\x91\xb2\x14\xea\xe1\x61\xfd\xad\x9a\x88\x95\xb2\xe0\xf2\xd6\xe3\x68\x83\x75\xc0\xb0\x8b\x84\x48\x0a\x1c\x13\x92\xc9\xc6\x16\x8c\xa1\x2c\xb3\x30\xbc\x1d\x44\xf0\x3b\x0c\x1c\xe9\xe8\x12\x18\x4b\xf1\x22\x5b\x4f\x37\xb8\xb4\x29\xe2\x45\xa9\x89\x89\x99\xe1\xc7\x1b\x41\xa0\x32\x40\xfc\x7d\x49\x84\xe4\xf5\x28\xea\x1a\x5f\xa9\xc3\xbd\x5b\x4c\xf8\x68\xc2\x5c\x9e\xe0\xd8\x57\x33\xb2\xfb\x32\x9e\xbd\x28\xd9\x08\xd9\xe6\xc8\x26\x71\x7c\xc3\xed\xcc\xf8\xd2\xd0\xce\x0e\xe2\x0c\xf7\x94\xc2\x86\x4f\x60\x00\xe1\x0f\x2f\x3e\x08\x63\x3f\x81\xc2\xbb\x31\x86\x20\x73\x18\x48\xed\xba\x80\x46\x86\xba\x00\x37\xc7\x79\x89\xc4\x8f\xc1\x04\x31\x68\xee\x31\x36\x5a\x90\x61\x38\x04\x29\x29\x3b\x98\xc2\x4b\x41\xc0\x63\x7a\x82\x40\x70\x7d\xce\x94\x1a\x32\xfe\xb4\xe5\x5b\xd2\xc0\x51\xad\xa9\x08\x5a\x88\xdb\x9c\xe0\xfa\xa7\x93\x66\xfe\x20\xce\xb3\xa0\xcb\xf4\x8b\xf9\xdf\x37\x25\x7c\xc1\x72\x6d\xa0\xfd\xcd\xec\x31\x54\x22\x03\xce\x60\x97\x71\x74\xfb\x9a\x06\xa4\xe4\x48\x45\xe6\x2b\xe1\x7e\x03\xe5\x4d\x14\x77\xbb\x12\x45\x22\x0d\x92\x63\xf2\x4a\x6c\x55\xba\x29\x0d\xca\x01\xc5\x4b\x93\xea\x3a\xad\xc1\x58\x45\xc0\x74\x5e\x21\x2c\x0a\xf0\x4c\xeb\x8f\x3a\x0f\x03\x40\xa2\x6c\x30\x28\x9b\x75\xd0\xaf\x95\x66\xd1\xe7\x35\x62\x8d\x99\xb7\x32\x36\x6e\x09\x95\xe1\x2a\xee\x26\xcd\xf0\x8b\xe4\x18\x24\x73\xc8\x7d\x86\xc4\xbb\xe7\x9f\xdf\xae\x55\x23\xe3\x0d\xa0\x3d\x5c\x74\xa1\x7d\x82\x62\x1c\x0b\x38\xb6\x8e\xa5\xdd\x0c\x01\xf5\x7a\x3b\x39\xb0\x19\xc2\x82\xff\xa4\xde\x2a\xb7\x41\xa8\x64\x19\xa3\xd0\x8e\x7f\xb0\x29\x87\xb8\x48\x6a\x00\x5d\x79\x79\x7c\x0b\xf6\x05\x13\x5c\x6e\x76\x80\xfb\xc3\xbb\xaf\x70\xe9\xa3\x9a\xd4\x90\x1b\x2e\x3d\x9e\x95\x50\xc4\x41\x1c\xa2\x21\x31\x80\xce\x25\x4c\x49\x65\x1a\x13\xc0\xda\xd0\x26\x54\xb9\xa5\x33\x41\x08\x8b\x4d\xc3\x12\xa1\x5e\xd2\x02\xd9\xa2\x2c\xcc\xd1\x04\xf3\x62\xf3\xb9\xd8\x0f\x62\xd1\xa1\x34\x09\x17\x47\xfb\x65\x96\x1c\x0b\x82\xe2\x91\xc0\x71\x01\x69\x73\x9e\x9d\x2e\x91\x09\x3f\xb0\x2d\xae\x1a\x6c\x90\x5b\x6b\x59\x30\x46\xa4\xa8\x44\x96\xaf\x85\x57\xfe\xa8\xa1\x8d\x61\xcd\x02\x61\x44\x67\xe4\xb4\x48\x53\x10\x4e\x69\x85\x49\x22\x20\x80\x11\xa2\x4e\xc8\x60\xf1\x2b\x17\xc3\x08\xc1\x45\x36\xaa\x78\x10\x8b\x34\x05\x1e\xd3\x50\xb4\x26\xa9\xe2\x1b\x2b\x10\x13\xf8\xa2\xdd\xd5\xcb\x47\x4e\xe1\x1a\x62\x08\x84\x08\x85\xde\x98\x19\x34\x7d\xbc\x48\x27\x88\xf8\xbc\x49\x81\xde\x24\x13\x47\x0d\x2d\x4d\xb9\xf6\xbe\x44\x24\x82\x4d\xaf\xda\x98\xd7\xfe\x58\x71\x31\xa5\x5d\xd8\x14\x05\x77\x0b\xe6\x70\x02\x64\x4c\x72\xbe\x79\x24\x06\x21\xa4\x1a\xf4\xce\x2c\x73\x52\x5b\x5f\xea\xc2\x3d\xc2\x40\x4d\x95\xf7\xb7\xe8\xc1\x66\x94\x69\xf1\x21\xcb\x90\xba\xa7\xe2\x63\x84\xda\x81\xe2\xa2\x82\x58\x28\x99\xbf\x5f\xa2\x68\x00\x0c\xad\xa8\x41\xe3\x9d\x7a\x01\xea\xc1\x08\xdd\xf9\x08\x8a\xfb\xe2\xc5\x6d\x42\x81\x3f\x21\x44\x23\x6c\x52\xb2\x10\xbe\xb6\x86\x68\x4e\xc6\xf0\xe7\x14\x58\xd9\xa0\x53\xe5\xfc\x64\x14\xe6\x6f\x07\xaf\x73\x37\x04\xac\xda\x01\xc0\x3c\x97\xac\x37\xc9\x19\xc7\x5b\x2a\xe5\xdd\xc9\x34\x32\xcd\x5f\x51\x96\x40\x72\x61\xfc\xaa\x95\xbb\xb6\x94\x65\x49\xa3\x75\xa8\xc3\xd3\x40\x8d\x51\x88\x48\xe8\x11\x62\x74\xa1\x4d\x4d\x80\x3c\x99\x57\x90\x93\x29\x32\x65\xd3\x22\xb3\xa7\x10\x9e\x1b\x9e\x3e\xa2\xdb\xba\xc5\x3a\x6c\xe5\x90\x0a\xc1\x11\x99\xf7\x0b\x12\x56\xe0\xc3\xce\x63\x88\xdc\x2b\x11\xde\xed\x0f\x6a\x0d\x9c\xe6\x1a\xcf\x4e\x49\xc9\x80\x57\xb5\xbd\x10\xaf\xd7\xf8\x31\x38\x44\x6f\xb8\x94\x55\xf4\x93\xa3\x5b\x64\x70\xcd\x81\x4b\x74\x30\x21\x35\xac\xb6\xde\x49\x9e\x69\xb0\x40\x13\xff\xd1\xb5\xac\x05\x79\x07\xe5\xb9\xb8\xa9\xb5\x69\x86\x50\x08\xcd\x32\xa9\x85\xa7\xaa\x45\xdb\x19\x74\x5e\x81\x32\xbf\xa1\x47\xf6\x2b\x17\xcc\x47\xe4\x02\xc3\xe7\x1f\x5f\x97\xac\x85\x02\x82\x01\xee\xf6\xa1\x59\x28\x86\x01\xd7\x61\x08\xd7\x23\xc5\x60\xbc\x56\x22\x01\xa5\x8d\x4c\x4b\x2d\x69\x8d\x34\xa9\x54\x90\x0a\xc2\x06\x4a\xb2\x46\xb1\x25\x21\x60\x48\x18\x50\x64\x3f\x5e\x91\x04\x5c\xa6\x34\x6d\xec\x9d\x1c\x61\x90\xd8\x32\xb4\x50\x8b\x1c\xbc\x3b\x15\x83\x94\x1e\xd9\x5b\x0c\xc6\x40\xc7\x7c\x64\xa0\x85\x92\x80\xdc\x13\x4c\xb8\x64\x4f\x24\x81\xa0\xed\xcb\x88\x77\x18\x8e\x7f\x34\xaa\x29\x82\x88\xd5\x1d\x43\x35\x03\xcb\x1e\x90\x7c\xb9\xc9\x6b\x86\x9c\xaf\x3b\x26\xb7\x55\xa8\x96\x26\xf2\x81\xe0\x30\x2e\x41\xc1\x86\x2a\x47\x40\x45\x15\x38\x73\xe0\xd6\x22\x5b\xce\x2e\x06\x3d\x83\x26\x0a\x16\x2c\x14\x79\xcc\x8d\x6a\xa5\xd1\xd1\x2c\x8a\x38\xbc\x47\xcd\x76\x64\x74\xca\x41\xef\x3c\xe7\xda\x9e\xbd\x38\x26\x20\xb7\xbf\x8e\x81\x79\x17\xd5\x0c\x96\x9a\xa9\xd2\x26\x51\xeb\x39\x64\xc8\xe3\x23\xbd\x1c\xfa\xe5\x70\x78\xfc\x1a\x85\x57\xd8\xd5\x0c\xda\x17\x37\x9f\x1c\x1b\xe2\x50\xcf\x11\x46\xff\x7a\x1e\xff\x04\x38\xf6\x32\x3f\x5d\x07\x94\x6c\x58\x6d\xad\x12\x5a\xe8\xf9\x3a\x51\x37\x05\xd1\xc0\xd5\xa0\xb4\x49\x1a\x20\x1e\x7c\xaf\x63\x59\x0d\xc2\x3b\xb4\x34\xa0\x58\x31\x05\x0c\x10\xe3\xa6\x1a\x99\x34\xcc\xb0\x43\xd9\x1e\x37\x0c\x91\x82\x32\x04\x6f\xa0\x99\x41\xbf\x72\xa0\x82\xc4\x9d\x78\x2c\x12\x5a\x1f\x92\xf4\x08\xc6\xa8\x59\xa3\xd2\xf7\xd9\x7b\xef\x8e\x4e\x65\x43\x2f\x6d\xd5\x2b\x20\x9f\x7c\x25\x25\x11\x2f\xd0\x3f\xbb\xdc\x55\x6c\x5e\x23\xf5\x41\x5e\xb0\x24\x08\x8a\x08\x3b\x74\xd7\xa3\x92\x00\x37\xc6\x6b\x1b\xe8\x11\x62\x5a\x11\x42\x4e\x6a\x14\xf1\xbb\x62\x5a\xc6\xd9\xe7\x1f\xa0\xe5\xf4\x2b\x91\xd3\xb8\xb2\x17\x6f\xa0\xc5\xf0\xdd\xe3\xb2\xb6\xf2\x5f\xa2\x06\xf9\x88\xe2\x18\x9f\xc4\x02\xae\x19\x2a\x91\x37\xc7\xdf\x46\xdd\x5b\x0d\x9f\x49\x91\xba\x26\x70\x95\x92\xcf\xb1\xe8\x84\xe0\x25\x90\x97\x25\x32\x1a\xe7\xed\xd8\x0e\x03\xc1\x02\x07\xad\xfc\x2d\x66\x47\x82\x41\x89\x46\xc5\x24\x72\x6e\x73\x46\x13\xe2\xa4\x02\x99\xb1\xcc\x93\xc0\x00\x0f\x84\x0a\xa6\xe2\x3f\xbd\x97\xd2\xd4\x94\xd6\x0a\x3c\x56\x15\xed\xcc\x10\x72\x6f\xb9\xef\x58\x0c\xf4\xa6\xb9\xc4\x8a\x6c\xd1\xb2\xca\x80\x7e\xc0\x81\x6c\xe6\x0a\x53\x13\x90\x92\x60\x3b\xab\xe5\xf8\x24\x28\x7b\x0f\xdb\xf0\x4a\x75\x4a\x3d\x7a\x2b\x09\xbb\x86\xa1\x57\xed\xba\x5f\x7e\xb3\xc1\x89\xa6\x14\xba\x21\xc4\x34\xbb\x25\x66\x6c\x61\x2e\x7a\x00\x9c\x7c\x75\xf9\x1e\xc2\x9a\xc6\x8a\x46\xa1\x89\x95\x4d\xf5\x93\xef\x10\x45\x5e\xce\xe4\x3d\x2e\x76\xa0\x18\x58\x72\x0e\x54\x22\x16\x87\x01\xec\x57\xbb\xcb\x49\xed\xaf\xd5\x34\x66\x04\x2b\x6c\x3d\x7d\x2f\xb5\x45\xb9\xc2\x1f\x46\x00\x26\xf8\xb6\x58\xbc\x6a\xbd\x87\xa4\xe1\x6c\x14\x0b\x50\x69\x46\xd3\xc0\xc0\xf5\x24\xae\xde\xcc\xeb\x34\x0a\x44\x1a\xf6\x6f\x20\x30\x42\x8e\x37\xef\xa2\xb9\xc0\x1c\xa0\xf3\xea\xee\x4e\xb2\x86\xa3\x9d\x91\x82\xe1\x24\x27\xa2\xdc\x7c\x5c\x91\xce\x0b\xd1\x4e\xb2\xd1\x31\x67\xe2\xcf\x44\x50\xf9\x26\xfa\x09\x12\x2e\x7e\x03\xe0\xe3\x05\x6d\xa7\xd8\x15\xbe\x4d\x32\x79\x86\xba\xbd\xdb\x69\xf2\x04\x6f\x93\x08\xc1\x5d\xa4\xe5\xd9\x1f\x7c\x1d\x7a\x9a\xcc\xcf\x30\xd5\x93\xd6\x24\xbb\xd2\xbf\xc3\x38\x89\xa6\x6b\xcd\xd8\x8c\xed\x1b\x0d\xa6\x44\x70\xb8\x61\x4a\x32\x84\x1a\xaa\x34\xd4\x17\x9e\x2e\xc5\x62\x75\x34\x43\x99\x82\x35\xec\x76\x8c\x63\x55\x62\xe5\x53\xa9\xe4\x32\x15\x1c\x8a\x1c\xb4\xeb\xdb\x18\xdb\x51\x71\x8b\x4a\x66\x80\x92\x30\x85\xb8\xc7\xdd\x4e\x06\x27\x25\xdd\x82\x0a\xe1\x46\x20\x66\x29\x57\x76\xe3\xfc\x47\x5b\x90\x29\x27\x12\x6e\x90\x9c\xb7\x94\x9f\xd3\x78\x22\x45\x08\x79\x0f\x4a\x4d\xc0\xa0\x05\x0b\x53\xd5\x1c\xf1\x6e\xc4\xae\xa4\x97\x8e\x6c\x31\x4c\x6c\x32\x01\xa4\x9f\xad\xb5\x2c\x05\x08\x6e\x9f\xb3\xcd\xbd\xca\x1a\x59\x31\x3f\x64\xfd\x51\x15\x13\xb1\xcb\x2d\xe3\xa6\xfa\x04\x0d\x2b\xc7\xad\x8e\xae\xca\x4a\x5a\xe0\xab\xe5\xea\xe5\xd0\x3b\xb5\xb5\x23\xa9\x4a\x2d\xfe\xee\xd3\x03\x92\x15\x40\xcc\x55\x23\x5f\x8c\x94\x6a\x78\x59\x4f\x6a\xce\x79\x84\x3e\x0c\x15\x7a\xfe\xcb\x6b\xa1\x09\x4b\x87\x81\x02\x0e\x61\x2d\xa9\x15\xd1\xe8\x46\x46\xfa\x70\xd8\x1c\x51\xe2\x64\x62\x07\x23\x74\x18\xa6\xb8\x13\x22\xa9\x18\xa6\x6f\xab\x13\x5f\x16\x31\x99\xbc\x53\xe8\x7e\x79\x6b\xdf\xeb\x7c\x99\x8e\x18\x17\x9a\x7b\x0a\xdf\x43\xa5\x65\xa6\xc8\xed\x4c\x94\x7d\x62\xb7\xfc\x78\xe8\x2c\x37\x4a\xa9\xcb\xa8\xa5\x21\xeb\x45\x48\x3f\x1d\x8d\x53\xd8\x21\x37\x82\x1b\x52\x9e\x5b\xbf\x39\xd4\x23\xac\x37\x0e\xe2\x13\x1b\xb8\xa9\xf3\x5a\xc6\x43\x68\x5e\x64\x6c\xb4\x1d\x07\x81\x21\xb3\x17\x12\x9b\x11\x98\x73\xc9\xf6\x3b\xe0\x26\x1f\x88\xa8\x8a\xba\xa1\x59\x9a\x66\xc6\x3d\xf7\xba\xc8\xa0\x35\x3f\xc1\x3f\xb5\xc3\xa7\x2c\xe1\x45\xa5\xc8\x13\xe8\x3e\x92\x72\x86\x1a\x18\xd2\xe9\x19\x98\xe4\x75\xf4\x41\x25\x07\x52\xaa\x47\xcb\x18\x9c\xf3\x39\xe4\x84\x47\x7a\xfe\x28\x8e\x18\x01\x82\x75\x3d\x20\x2d\xae\xcc\x8b\x90\x4d\xc3\xed\xfd\x94\x21\xf8\x47\x18\x0d\x0a\xda\xd1\x24\x30\x7b\xf2\x00\x53\x6c\x67\x5a\x63\x34\x32\xa1\x55\xac\x0b\xdf\xb4\x03\xa6\x45\x09\x9c\xb5\x04\x47\xcc\x4b\x3f\x20\x00\x09\xa4\x1d\x48\x1a\x4f\x2b\xf0\x03\x18\xb2\x54\x67\x15\x38\xb3\xb3\xe9\x15\x43\x25\xc7\xb2\x22\xf3\x1c\xf5\xb1\x64\xf5\x48\x0b\x57\xbd\x96\x8b\x96\x0c\x4a\x3c\xbf\xed\x4b\x13\x7e\xd4\xc2\x42\x85\x48\xc9\x8f\x10\xe4\x8a\x97\x92\x38\x52\x82\x6a\x4a\xb8\x3e\x0a\xca\x4a\x2b\xd6\x17\x6e\x4f\x3f\x20\x6c\x86\x19\x5b\x96\x12\x13\x95\x1a\xa2\x47\xaf\xd4\xd4\xa9\xb2\x26\xb7\x30\x00\xec\xb0\xba\x61\x44\xd3\xca\xd5\xaf\xfd\x23\x97\x2d\xc6\xf5\x12\x9d\x50\xa8\xe4\x4f\x41\xa7\xac\x40\x2f\x38\x43\xa3\x02\xc1\xe9\x5a\x98\x17\x00\x3d\x81\x28\x8c\x0f\x3d\x17\x22\x6d\x6a\x88\x46\x73\xb0\x00\x90\xbe\xfd\x12\xa3\x3e\x25\x28\xde\xa3\x11\x0c\xbc\x65\xa6\xba\x42\xc8\x1e\x2d\xab\x44\x23\xf6\x1b\x8b\x87\xb9\xee\x33\xd0\x84\x2d\xed\xa1\x9b\x7a\xe9\xb5\xff\x92\x22\x12\xd1\x5a\x0e\x91\x01\xe3\x1a\x33\x20\xb0\xa9\x59\x9b\xc3\xd8\x76\x3e\x97\x86\x2d\xd4\x25\xbe\x43\x21\xae\x82\x29\xe3\x4e\x36\x93\x32\x84\x14\xba\xf1\x29\x3b\xcc\x27\x31\x5f\x7c\xe5\x4e\x40\x34\xae\x5d\x0c\xec\x05\x13\x7d\xb5\x51\x26\x22\xf8\x90\x12\x33\x8e\x33\xc0\xab\x54\x98\x60\x21\x75\x92\xab\x2a\x0b\x8a\x62\x6e\x93\xd2\xba\x79\x45\x8d\xc1\xd4\x5f\xab\xf9\x04\x52\xfa\x83\x42\x53\x88\x18\x3e\x85\x48\x31\x09\x08\xdb\x96\x8b\x10\xd5\xe6\x51\x62\x41\xbe\x1b\xae\x3f\x8e\x05\x8b\x4a\xc6\x2f\x14\x9a\x15\x9e\x28\x54\x61\x9f\xf8\xa6\xc0\xb2\x35\x6a\x33\x42\xc4\x67\x08\x44\xea\x12\x85\x65\x67\x84\xa5\x1a\x0c\x3b\x51\x78\xa0\x99\x05\x04\x25\xa0\x43\x9d\xdd\xc4\x15\x45\xf9\x88\xf6\x20\xa7\x40\xb1\x0e\x36\x83\x75\x2f\x36\xba\x70\xd3\x23\xff\xc0\x4b\x75\x4d\x46\x20\xa8\x89\xe6\x13\x58\xca\xf6\x0b\xdf\x1b\x54\x16\xed\x78\x9d\xe0\x5e\xe9\xa2\x96\x7d\x1e\xa1\x54\x05\x21\xa7\x00\x0a\x30\x90\xb4\xeb\xdc\x1d\xac\x0a\x1d\x97\x86\xe3\xcc\xb8\xa9\xdb\xf6\xfa\x18\x79\x4d\x27\x5e\xef\xa5\xd7\x38\xa0\x2b\x0a\xf6\x2a\x17\x3f\xcc\xd4\x52\xc2\x2a\x10\x50\xf7\x9e\x39\xef\x04\xb5\xab\xcf\x57\x4e\x6f\x02\xc8\x33\xa0\xeb\x9c\x85\xde\x49\x1e\xa2\x93\xad\x72\x0e\xd1\x9e\x65\xee\x76\xc5\x3e\xdb\x5c\x3e\x02\x89\x64\x56\xab\xe5\xd9\x80\x1d\x38\x21\xb6\x85\x6d\xf6\xaa\x35\x21\x4b\x47\x90\x35\x29\x64\x58\xc2\xcb\x13\x44\xf9\x16\x0f\x49\x2e\x55\xf0\x25\xd3\xe6\x92\x10\x36\x84\xfb\x5a\x52\xca\x00\xd8\x4e\xbf\x99\x4a\x50\x53\x97\x33\xe6\xb0\xf8\x4e\x19\xce\x79\x04\x7c\x05\xd8\xc2\xb9\x51\xbb\x48\x22\xe6\x99\x7a\x9f\x2f\x11\x7f\x01\xf8\x61\x26\xe8\x63\x6d\x7e\xe7\x8c\x22\xc9\x78\x5b\xbd\x30\xc7\xae\x9f\x0e\x4b\x0b\x72\x89\x10\x6d\xaf\x71\xcd\x16\x09\xa1\xa4\xf0\xb0\xcb\x08\x29\x90\xa1\xb4\xf8\x47\x42\xeb\x12\xdf\x39\x58\xb1\x9e\x0d\x11\x48\x95\x4d\x1a\x40\xbc\xd1\x05\xa4\x15\x32\x7d\x24\x14\xf8\x72\x3f\x2a\x44\x14\xfd\x6e\x9c\x24\xa6\x41\xc0\x96\xfd\x12\xad\x51\x92\xa9\x92\xc1\x00\xe2\xc1\xc0\x82\x65\x90\x1c\x07\x63\x87\x02\xed\x36\x2a\x15\xf2\x7d\x62\x5f\xdb\xc3\x51\x4b\x9c\x3d\x24\x12\x65\xd4\x67\x60\xa4\xbb\x4c\xa9\xe9\x03\x6d\x9a\xca\x9f\x79\xd1\x5c\x40\x67\xaf\x11\x58\xe9\x2a\x3d\x74\xd7\xd4\xa8\x09\x3b\xbd\xad\x27\xae\xca\x69\x54\x98\xf7\x42\xf0\xbf\xc3\x27\x93\x87\xa3\x07\x03\xa3\xd2\x1a\x8e\x83\xdc\x80\x52\x0f\xef\xde\xec\xe0\x61\x1e\x38\x5d\x35\xcb\x78\x74\x48\xac\x63\xbf\x08\xbb\x67\x50\x4a\xb2\x3c\x3b\xef\x07\x7d\x81\xf7\xa5\xb2\x85\x08\xe5\xea\x53\x2e\xa7\x09\x90\x8b\xc7\xfb\x4c\x1f\x95\x50\xbc\xa8\x74\x09\x6a\xe6\x53\x9a\x5c\x40\x7e\xc1\x47\x72\xa0\x30\x58\x99\x78\x0b\x78\x26\x4e\xb7\xa5\x67\x96\x98\x4c\xd4\x91\x54\xbe\x10\x58\x11\x66\x5e\xc9\x8f\x48\x8c\x64\x8a\x5d\x76\x65\xaa\x5f\x6a\x55\x72\xc4\xd2\xa2\x1c\xc7\x95\xa6\x10\xd0\x81\xd7\x4c\x15\xad\x16\xc4\xce\xe3\xd0\xc9\x11\x98\xde\x5b\x67\x61\xa9\x13\xa9\xa1\x6d\x18\x24\xd9\x7b\xf4\xba\x9c\xcc\x45\xb2\x79\x9f\xf4\x03\x41\x5e\xca\x38\x59\x89\x8e\xa4\xdc\x86\xde\x8a\x4f\x3f\x73\x8c\xf5\x98\x58\x41\x2a\xb8\xfc\x33\xb6\x6a\x61\x12\x89\x8e\x2a\x5a\x08\x62\x66\x5e\x48\x24\x15\x08\x6b\x7b\x7b\x37\xd2\x85\x6e\xac\xc8\x52\xaf\xe2\x05\x89\xa2\x96\x10\xc3\x02\x9d\x19\x16\xf1\xa4\x27\x1b\x9b\x63\xc6\x76\x70\x4e\x66\xa6\xca\xa4\x61\x36\x5c\x8e\x88\xc8\xc4\x73\x76\x3a\xab\x07\xe3\xab\x5e\xf8\x65\xd7\x1b\xc6\xcf\x6b\xa7\x27\xe0\xf0\x2b\x63\x28\xa4\x28\xbd\x6c\xaf\xaf\x48\xea\x28\xa8\x1f\xca\x30\xbf\x1c\x7e\x6e\x48\x71\x04\xa3\x5f\x7e\xbc\x5c\xb6\x6e\x4a\xff\xb9\xaa\x5f\x1a\xd6\xec\xad\x37\x68\xa7\x7d\x5b\x37\x8a\xc4\xf7\x53\x37\x7c\x94\xee\x9b\xf6\xea\x95\x94\x88\xc5\x41\x9c\xbe\xea\x50\xbf\xd5\xca\x89\xaa\xb1\x89\xcf\x0c\x15\x88\xcc\x97\xf6\x77\x47\x57\xb7\x8e\x04\xbc\x8b\x9e\xa8\x14\x02\x8c\x4c\xbf\x0a\x8c\x5a\xec\x6c\x2d\x98\xb4\x78\x3c\x60\xc5\xbd\x31\x68\x98\xc9\xd2\x8e\xf6\x99\x97\x12\x17\xcc\x48\x67\x11\x1f\xc6\x4a\x3b\x5a\x7d\xff\xea\x10\xe6\x4d\x89\xfb\xd7\xab\x27\x96\xb6\x67\x97\xc8\x1a\x7a\x2d\x3d\x03\x1b\xc9\x0f\x72\x62\x6a\x5e\x26\x64\x45\x86\x53\xba\xf8\x16\x6c\x8c\x65\x12\xa3\xa7\x9e\xce\xd9\xd7\xbd\x2c\x1b\x30\xb4\xe9\xf4\x5b\x44\xaf\x47\x07\xfe\xb5\xda\x87\x44\x42\xf1\x7f\x69\x3f\x4e\x2c\xaf\xce\x38\xe8\x88\x5d\xe3\x0f\x94\x17\x6d\x3a\x48\xf8\x91\x79\x13\x34\x9e\xaf\xeb\xc5\x3c\xe7\x68\xf2\x47\x32\xe4\x59\xc5\x83\x4d\xe4\x0b\xc6\x35\x7e\x63\x79\x68\xb6\xce\x00\x08\xbc\xb1\x67\xfa\xe0\x9f\x6d\xf5\xa4\x17\x08\x70\x5f\xd5\x5e\x47\x70\x6e\x9e\x00\x22\x45\x93\xb4\x82\xff\xd8\xa1\x11\x57\x08\xee\xa1\xb6\x1a\x1c\xee\x60\x62\xe0\x3b\x49\x95\xc9\xec\x80\x66\xa8\x8d\x6b\xd2\x41\x93\x16\x89\x1c\xc3\xba\x06\x95\x04\x08\xbe\xfc\x64\x5a\xac\xc1\x0f\x9b\x2e\x98\x82\xa6\x36\xbe\xe3\x59\x0e\xca\x20\x57\x51\x25\x9f\x7d\xe4\x5c\xaa\xc4\x41\xd5\xf1\x16\x97\xd6\x20\x80\x29\x64\xdd\xc7\xe4\x65\x5e\x11\x24\x72\x32\x7d\x1a\x53\x9a\x4a\xb7\x0f\x07\xb3\xcb\x3a\x63\x05\x85\x59\xac\x47\x1b\xf6\x97\xe4\xea\x27\xf4\x2f\xdd\xa4\x7e\x30\x20\x4e\x8c\xe1\x63\x3a\x5c\x50\x59\x29\xa6\x01\x83\x18\xe9\x34\x35\x5b\xc0\x73\xba\x71\x8d\xa8\x53\xdf\x4a\x26\x4b\x15\x37\x9a\x06\xbb\x24\xb8\xcc\x38\x0c\x87\xf3\xe1\x64\x8c\xd9\xa2\x80\x32\x61\x1a\xb6\x73\x8e\xfa\xee\x40\xf4\x60\xe3\xd4\x26\x51\xd4\x1c\x09\x5a\x60\x8d\x81\x3b\x90\xe0\x24\xe7\x64\x4c\x1e\xf6\x06\x36\x4f\x11\x17\xbf\x8d\x45\xb7\xa0\xf6\xc0\xa6\xcb\x71\x1e\xe7\x9f\x2e\x88\xee\x5e\xf7\x4a\x98\x52\x3e\xaa\x13\x89\x40\xa4\x0c\x0e\xbb\xd1\xdf\x15\xce\x90\x95\xd1\xab\xe1\x3e\xe8\xbd\xff\x44\x23\x20\x06\xe7\x30\x98\x24\x17\x67\x28\x0f\x20\x0f\xdd\x82\xd6\x1c\xeb\xbc\x08\x2b\x42\xf3\x45\xe0\xd4\x4d\x00\xda\xfc\x2a\x12\x50\xda\x28\xfd\x66\x80\xd5\x5b\x12\x12\x1c\x8f\xa6\x82\x89\x4b\x1f\xec\x17\x28\xf1\x8f\xa9\xac\x3a\xf7\xf4\x3e\xd5\xf7\x52\x5b\x12\xbc\x32\x3b\xc8\x73\x46\x9d\xb4\x55\x4a\x4f\x78\xb2\x20\x3c\xde\xbd\x06\x18\xee\x2b\xa9\x85\xf6\x6a\x05\xcd\x72\xb6\x87\x08\x04\x8f\xc4\xdf\x71\x34\x32\x80\x23\x38\xc3\x5b\x85\x4a\x96\x43\x04\x46\x96\x3d\x62\xd6\x89\x8d\x2a\xb5\xc3\xc3\x22\x51\x07\xb6\x98\x6e\x88\xa3\x13\xb9\xc6\x82\x07\x76\x3b\xa8\xf5\x33\x16\x2c\x3f\xd0\x85\x48\x94\x1e\x52\x60\x13\xf2\x30\x1f\x10\xea\x6b\x59\x82\x2c\x52\xf9\x04\x54\xed\xa1\xd2\xea\x43\x9d\x49\x2d\xf9\xad\xd0\xf6\x8c\x94\x95\xf1\x53\x91\xd7\x07\x2f\xe9\x99\x02\x57\x0a\xf8\x43\xd7\xcb\x9c\x41\x72\x1e\x73\x35\xe5\xb1\x3a\x0b\x31\xdb\xd6\x56\x74\xab\x89\x1b\xad\xd8\xf2\xd2\xe1\x30\x26\x40\xa4\xc4\x57\xd2\x9c\xd4\x83\xe4\x51\xd2\xc5\x7d\xae\x33\x6a\x28\x9f\x14\x77\xb8\x44\x39\x6f\x23\xe9\x2c\x81\x11\xe1\x04\x63\x45\x64\xc4\xba\x24\xdc\xa4\xd4\x8c\x9d\xa3\x9c\xe2\xf7\xa6\x47\xee\x1b\xb7\x9e\x66\xcf\xe7\x68\x68\x0d\x5c\xcd\x46\xae\xa0\x23\xb8\x75\xfe\xfa\x08\xcc\x23\x8a\x70\xef\x33\x6e\x06\xb2\xd8\xd9\xaf\x1b\xbb\x90\xce\xd5\x5d\x76\xf8\x81\x4a\xae\x23\x37\xa0\x87\x7b\x08\x74\x97\xd4\xf1\x2b\x18\x50\x49\x8f\x32\xdb\x35\x24\x64\x62\x17\x1f\xf5\x8c\xef\x41\x16\x5c\xd7\x8d\x63\xe2\x36\xcc\xb8\xd6\x1b\x52\x37\xb7\x66\x24\xb7\x66\x0e\x3b\x70\xf1\xc1\x6c\x31\x6d\xae\xda\xe8\x3d\x83\xc5\x8d\x31\x14\xe0\x07\x93\xf3\x92\x8d\x1a\x0c\xc6\x43\xc1\xe1\xda\xf3\xc0\x24\x88\x7c\x89\xb9\xfd\x15\x30\xf6\x70\x74\x22\xe1\x63\xee\xcb\x90\xf2\xc7\xfc\x2d\x10\x45\x2d\x56\x30\xf0\xd4\x32\x4d\xc4\xd6\xd9\xb9\xdf\xc8\xdb\x82\xb0\xa5\x87\xb3\xff\xfe\x49\x77\x23\xcf\x0c\x9b\x55\x0e\xc0\x71\xc8\xfe\x34\x48\xea\x19\x5d\xc4\x31\x18\x05\xfa\x39\x6e\x23\x0b\x6f\x44\x5a\x60\xfd\xcc\x8c\x9e\xd1\x63\x90\xe2\x2a\x28\xeb\xb1\xd5\x7a\xe0\x40\x10\x80\x9b\xf1\x37\xcd\x28\xcd\x8d\x61\x32\x4d\x31\x03\xbf\x1a\xc4\xc0\xd9\x2c\x31\x58\xfe\x26\x65\x70\x7b\xe8\x97\x29\xaa\x23\x88\x75\x37\x39\x18\xc2\x12\x80\x33\x08\xab\xb9\x7c\x31\x80\x51\xbc\xda\x28\x56\xb2\xbc\x2c\x68\x22\x3e\x5d\x16\xd9\x5c\xa5\x8b\x67\xf5\x4a\x71\x1b\xee\x74\xd3\xc4\x67\xa3\xb8\xb2\xed\xf7\xdd\x49\x45\xc0\x9b\x89\x1a\xba\x9f\x83\x1c\xb1\x3d\x9a\x74\x1a\xb8\x68\x2f\xc2\x9d\x0f\x58\x1c\xd6\xda\xca\x10\x7f\xb5\xc6\xf5\xbd\xa2\x42\x74\x13\x4b\xb2\x2f\x18\xec\x8f\x66\x3e\xfa\x58\x59\xce\xe5\xad\xcb\xc9\x97\x2a\xc1\x22\x1c\xd6\x40\x72\xbd\x5d\xc5\x98\xfb\xa0\xc0\xaf\xdb\xb5\xa7\xa0\x65\x7c\x0a\x13\x21\x34\x9b\x72\x9e\x78\x4c\x3c\x4c\x41\xb2\xae\x17\xa2\x26\xe2\x28\x95\x97\xc0\x44\x2b\xf3\x35\x02\x21\x33\xa5\x78\x6f\x38\xe7\x86\x3f\x18\x74\xbf\x6b\xd9\x6b\xe1\xa7\xb4\x58\x3b\x01\x90\x68\x62\x43\x6c\x25\x4a\x4b\x08\xe6\x19\x5b\x07\x7f\x7f\xc0\x65\x42\x49\x48\x85\x95\x66\xbb\xa9\x7f\x0f\xd0\x9c\x8a\xde\xbc\xcd\xae\x28\x6c\x01\x02\x02\xdc\x4a\x00\x40\x12\x62\x59\x9f\x92\x5b\xc6\xd2\x1a\x3d\x26\x2b\x82\x47\x83\x08\x69\x68\xbf\xec\x51\x5f\xb3\xfd\x3f\x25\xcb\x55\x99\xef\x44\xe1\x59\xd4\x4b\x7b\xe0\xbb\x43\x0c\x16\x21\x8c\xab\xd4\xe8\x73\x8e\x29\xc4\x7d\x3b\x5a\xef\x12\x40\xb4\xeb\x61\xfa\x45\x71\x21\x78\x26\xd5\x22\x09\x29\x56\x8d\xfd\x74\xd6\x54\x20\x00\x8e\xc1\x2d\xa4\x04\x26\x07\x10\x60\x3d\x1d\xda\x85\xf8\x4e\x21\x2b\x50\xda\xf8\xe7\x82\x3c\x14\x01\x21\x2f\x6f\x89\x6d\xf8\xdb\xb0\x15\xe5\x66\xa6\x0e\x1f\x5f\x6e\x32\x49\xc6\xc3\x8a\x26\x03\x55\x9c\x23\xf0\x45\xbc\x37\x3c\x14\x54\xcd\xa2\x28\xd4\xb1\xf3\x56\x17\x5d\xd4\x94\xa0\x17\xb1\xba\xb3\x9e\xc6\x08\x41\x26\x98\x4b\x40\xf6\x88\x35\x6d\x7e\xca\x2d\x65\x21\x40\x23\xcc\x3d\x17\x0d\x4a\x9c\xeb\x18\x69\xa8\x46\xc3\x93\x4d\xa0\xab\xf2\x7b\xac\xcd\x47\x17\x84\xa8\x30\xb9\x5b\x34\x8b\x90\x59\x0b\x4e\x02\x18\x0d\xa9\x34\x16\x4e\x92\x57\xe6\x0f\x84\x77\x63\xb2\x16\x60\x3c\xb5\x3e\x02\x18\x0c\x06\x89\xc6\x0d\xf7\x39\x30\xe3\x81\xc4\xbb\x21\x95\x24\x86\x2a\x80\x01\x0a\x80\x91\xc7\x94\x1e\x9c\x29\x90\xdb\x36\x9d\xf5\xa8\xba\xda\x86\xce\xb6\xfb\x76\xbe\x01\x2f\xba\xf1\xc8\x3b\x82\x89\xd5\xe9\xa3\x22\x60\x91\x24\x26\xca\xe3\x6b\x0f\xfb\xd9\x2d\x32\x5c\x1a\x11\xd1\xb8\x1a\xc2\x55\x8b\x04\x17\xf4\x75\x05\xe3\x7b\x38\xaf\xd4\x60\x8c\xfa\x3a\x10\xa0\x94\xc1\x03\x5d\xfa\x3a\x2d\x53\x95\x93\x5a\xce\xec\xa4\x7a\x89\x61\x2a\xcf\x7d\x0a\x16\x77\x58\x8e\xa8\x6c\x50\x9b\xba\xc2\x4d\x61\x0c\x4f\x12\x64\x5a\xd6\x5e\xde\x4b\x28\x72\x03\x7b\xc6\xd8\x38\x90\x08\xd5\xa8\x92\xb3\x7a\xfb\xd2\x77\x7d\x5e\x00\x2b\x6e\xf6\x4b\xba\xb3\x9f\xa7\x58\xa3\x9f\xe4\x21\xaa\x3f\xab\x08\x3c\x94\x0f\xb3\xaf\x49\x22\xc5\xe1\xa6\xd0\x7d\x8c\xd2\xc1\x2e\x6a\x69\x18\x7a\xe3\x22\xf9\x99\x3c\x11\x06\xc6\x38\x24\x74\x7f\xb2\xb1\x2b\x9f\x6b\x0f\x09\xe4\xdc\x95\x45\x66\xec\xe8\x0a\xbc\x86\xea\x98\x67\x03\x92\x38\x4a\x04\x84\x28\xa3\xd9\xcb\x34\x6b\x98\x24\x0f\xc8\xf0\x85\x38\x48\x8e\xb5\x03\xf3\x53\x6b\x1a\xe5\x84\x90\x80\x0a\xa2\x5f\x63\xc5\x8b\x7e\x32\xcd\xdd\x54\x7f\xdb\x70\x9b\xa6\xef\xa1\x16\xf7\x68\x47\x60\xa3\x85\xfe\x5d\xdb\xcd\xe3\x28\xaf\xb9\x8a\x7b\x27\x18\xce\xf0\x69\x1b\x7d\xea\xe2\xa5\x0e\xa8\xdc\x69\xa3\x09\x2a\xbc\x60\xe8\x08\x84\x8a\xca\xdf\x50\x3f\x0c\x03\xb5\x74\x02\xff\x22\x97\x36\x17\x33\xd9\x8b\x58\x9a\xc7\xa1\xae\x45\x72\xca\x52\xe9\x08\x04\xc1\x1d\x55\x6c\x5a\xd1\x18\xa4\x0f\x2d\xd1\xf0\xb2\xf0\xc3\xf9\x51\x68\x28\x35\x51\xe1\xf8\x1c\x28\x90\xd4\x32\xb5\x31\x1c\xf6\x6a\x93\x8d\x19\xb7\x67\xe8\x14\xfd\xdc\x62\x6d\x08\xec\xdb\x9a\x6c\xb8\x24\x07\x1f\x84\x2c\x4b\x2d\x35\xa7\x47\x70\x28\x5e\x2e\xe2\x1d\xfc\xe8\x15\x3f\x7a\x1a\x73\x42\x18\xb9\xa2\x34\x80\xe7\x62\x05\xa1\x4f\x31\x87\x2d\x45\x5a\xe1\x54\x93\x62\x69\xa3\x4b\xcf\xfa\x57\x13\x06\xc0\x21\xb0\xee\xfd\xc3\xb6\x90\x53\xc1\xe9\xf1\x82\x01\xd3\x77\x4f\x55\x1e\x67\x75\x34\x1b\x8a\xf2\xec\xdc\x66\x21\x38\x6e\xa0\xc4\x2e\xe0\x51\x92\xe4\x16\xf2\x90\x12\x17\x99\x0b\xd0\x26\x71\xf5\x2d\xb4\xc5\x78\x9a\x6b\x1e\x6b\xed\xb9\x30\xd8\xf2\x06\x4b\xc7\x5f\xe9\x1d\xa7\x63\xe2\x96\x43\xeb\x61\xf8\xb8\xe2\x50\x10\xe1\x69\xb5\xd9\xeb\x1d\x51\xaa\x94\x9a\x81\x8c\xc3\x8c\x5d\x67\xf4\x01\x7d\x1d\xae\xc4\xe7\x47\x1c\x91\x34\x35\x44\x89\xbc\x9c\x2c\x68\x31\x52\xb0\xd4\xbc\x50\x9c\x34\x71\xe6\x2f\x89\x44\x26\x1b\xa2\x90\x3f\x54\xb4\x87\x2f\x15\x1a\xdc\xea\x51\x8f\xd2\x63\x17\xa7\xbf\x2d\x34\xd6\x9f\x5e\x09\xb6\xe1\xc4\x6b\x41\x2b\x64\x0b\x82\x8f\x41\x4b\xfc\xb6\xe1\xb1\x32\xe6\x6c\x13\x22\x87\x69\x5d\xc6\x6b\xdb\x68\xf4\x7f\x90\x0d\x06\x1f\x72\xd1\x79\x38\x10\xe9\xde\x52\x92\x20\x5b\x62\x25\xa5\x21\x54\x5a\xd4\x04\x1c\xe8\x13\x86\xc4\xd2\xb5\x47\xfb\x44\x8f\x9e\xdb\xe9\x8d\x1d\xf3\x58\x01\xa9\x70\x37\x2c\x79\xb4\x9b\xee\x41\xca\xfd\xb3\xdb\x11\xac\xcb\xd0\x4e\xd2\x31\xb4\xa3\x62\xad\x71\x99\x9d\x18\x9f\x93\x79\x1e\xda\xa6\x36\x07\x36\x24\x43\xb6\x74\x4b\xa2\x18\x81\xba\x48\x14\x64\xc3\x4f\x9e\xaa\x24\x8f\x23\x2c\x1b\x12\xbb\x27\xea\xa2\x2f\x1c\x71\xb8\x8a\x15\x54\x0b\x32\x80\x7b\x62\x2f\x11\x63\xb5\x39\xcc\x74\x13\x22\x6c\x0b\xbf\xd9\xb6\x2c\x5f\x61\x69\xaf\xb1\x61\x3f\x17\x1f\x2a\x1d\x15\xe8\x15\x12\x17\xfb\x78\x06\x1f\xb5\x10\x69\x38\xfc\x3a\xa1\x05\x90\x99\x09\xb0\x1a\x5d\xec\xda\x0e\xb0\x77\x52\x14\x0e\xb3\xba\xd8\x1e\x8d\x0d\x00\x81\x37\x5b\xb5\x69\x00\x1f\x79\x20\x57\xbc\xa9\xd3\x1e\x13\x91\x71\x04\x5c\x5e\xa6\x29\x01\xc0\x12\xee\x3e\x7a\x16\x29\xd3\xa9\x4b\x66\xe0\xd6\xfd\x14\x14\x64\xcd\x5b\x4a\xaa\xd9\x41\x6b\x8b\xc4\x8a\x79\xd5\x77\x65\x50\x55\x23\x44\x49\xeb\x95\xa7\xd2\xcf\xc3\x28\x11\x32\x2f\xe4\xc5\xd1\x04\x81\x08\x91\x22\xcc\xfc\x22\x43\x60\xab\xc8\x24\x48\x11\xb4\x6e\x39\x68\x71\xb9\x66\x84\x24\x44\x4d\x0a\x5d\x50\x60\xb8\xd2\x81\xe2\x67\x63\xa1\xba\xb8\x3b\xf5\x3b\xb5\x5f\x41\xd4\x75\x30\x04\xfa\xe4\xb8\x71\x7a\x00\x65\x8a\x58\x25\x04\xa6\xe3\x44\xa0\xea\x89\xc9\xd7\xdd\x98\x40\xca\xd6\x73\x88\x9f\x1f\x42\x44\x9b\x8e\xdf\xd9\xe6\xde\x8e\x84\x76\xe1\xce\x65\xa0\x7e\x0c\x11\xb4\x1d\x3f\x79\x46\x85\x71\xd2\x8c\xe8\xe1\xe8\x98\x9a\xe9\x8e\x71\xd1\x26\xb4\xac\x39\x75\xc5\x45\xa2\xcb\xf0\xae\x5c\x73\x5a\xa8\xfe\x66\x79\x13\x45\x5d\x11\x16\x92\xab\xf7\x5c\xcf\x72\x67\x9a\x65\xcb\xfc\x1f\x5f\x9d\x11\x38\x86\x5f\x95\xdb\x1f\x94\xa8\xa1\x8b\x2e\x16\x13\x83\x47\xc9\x84\x55\x38\xcb\x47\x9f\x39\xe9\xc7\xb1\x0c\x10\x43\x01\xcc\x72\x51\x8e\x04\x74\x52\xce\x26\x32\x60\xd0\xb9\xec\xa3\xe8\xfa\x70\x4f\xf3\xa5\x93\xeb\x57\x31\xdf\xdf\x28\x0c\x84\xee\x64\x5b\x4a\xd2\x6d\x08\x81\x88\x06\xab\x40\x48\x7a\x46\x9e\x0f\x23\xb6\xa7\x37\x35\xd0\x4a\xa2\x22\xc7\x07\xe2\x77\x78\x99\xe8\x22\x2c\x2f\xc6\xc4\x01\xdd\xe2\x4d\xee\x91\x50\xa1\xd8\xac\x23\xf5\x2d\x0a\xfb\x37\x72\xea\x96\xbd\x89\xf2\xb6\xfe\x21\x9b\x97\x20\x1d\x3a\xa6\x3c\x93\xdc\xa8\xd9\x62\xec\xc8\xcb\x19\xd8\x6f\x9f\xfc\xfc\x08\xe3\x15\x83\xd9\xb1\x2b\x87\x62\x5d\x66\x56\x73\xe5\x8e\xf2\x5a\x99\xf3\x11\x50\xd1\x70\x28\x4d\xf7\xb0\x94\x25\xe2\xfa\x6c\x8b\x1c\x52\xd1\x08\x7d\x9d\xe6\xe6\xc8\x8a\x1c\x8b\x59\x8e\xd8\xc6\xdc\x76\xc0\xa3\x0b\x51\xa3\xc8\x45\x2d\xce\x09\xb0\x9b\xc3\xc8\x50\x65\x8a\x28\x2b\x9b\xbd\x58\xb3\x31\xf3\x96\x60\x2c\x7e\x69\x97\xb7\xb4\xa9\x63\x5b\x3d\x83\x25\x7e\x1a\xb8\xc3\x08\x80\x43\x87\x4c\x13\x68\x3c\x1d\x82\x43\x9d\xdb\x06\xa6\x13\x00\x6c\xa5\xbf\x34\x16\x58\x22\x10\x4d\x3f\x34\x9a\x35\x52\x7a\x2e\xe9\xa8\x8f\x1b\x04\xb7\xcc\xfd\xfa\xda\x40\x6b\xfd\x38\x70\x8e\x19\xae\xfb\x04\x12\xaf\x02\x22\x72\x17\xd7\x32\x8b\xb0\x38\xd9\xa8\x47\x72\xb6\xfb\xad\xd0\xde\xe8\x8c\xb2\x0a\xf5\x40\x9b\x8c\xd6\x15\x53\xa7\x03\xa3\x7c\xda\x2e\xd7\xeb\x2e\xf3\x6d\xd6\xa2\x79\x34\x96\x5b\x05\x27\x84\xd0\x3c\x49\x10\x5c\x05\x3a\xc0\x77\x88\x03\xd9\x76\x2c\x48\x8b\x87\x89\xa4\x1f\x67\xb1\xd4\x52\x1c\x04\x76\xba\xe3\x5f\xf3\x5d\x2f\x86\xaf\xfa\xce\xd8\xed\x49\x54\xe4\xaa\x9a\x05\x68\x3d\x3f\x43\xcf\xcf\x1b\x0d\x3d\xe6\x44\x34\x3d\x7d\x59\x88\xf0\x2d\x0f\x49\x03\xe4\xeb\x05\xef\x89\xd7\x77\xd7\xdf\x04\x76\x80\xf8\x70\x24\xa7\x5e\x9a\x8f\x4c\x87\x52\x73\xe8\xce\x30\xd8\xc4\x42\xe6\x8a\xef\x6c\xc6\x8d\x4c\x0c\x47\xd1\xf0\x00\x13\x21\x72\x3d\x09\xa4\x20\xe1\x8c\x0d\xef\xf9\x37\xb7\xf1\xb2\x19\x0f\x21\x2a\x8b\x71\x3e\xc5\xd7\x54\xfc\x3e\x7f\xd2\x18\x60\x05\x8b\xdf\x0f\x83\x71\x39\x1d\xae\x3d\x30\x9d\x32\xc3\xef\x02\x05\x25\xf9\x1c\xf2\x48\x8e\x27\x8d\xef\xbe\xf8\x26\x86\x04\x88\xf9\x62\x2d\x67\xed\x45\xc9\xb0\x63\xfc\x6d\xa9\x17\x94\x09\x00\xd3\xea\x89\xd4\xde\x51\x87\xe9\xa6\x0d\xe5\x78\x18\x9e\x60\x77\xa4\x65\x24\xe3\xdb\xe0\x8e\xb5\x81\x9a\x43\x18\x97\x6d\x0e\xc7\x21\x3b\x00\xf1\x04\x33\x40\x5b\x17\x92\x39\xea\x2b\x05\x36\xf6\x0a\xf1\x4f\x42\x5b\x77\x5f\xd6\x6d\x1d\xda\x65\x3b\x4b\x77\x69\x3d\x84\xb6\x18\x13\x2b\x82\xff\xe6\x14\x80\x8e\x06\x96\xbe\x1b\x1c\x3a\x8c\x18\xff\xb0\x8b\x2e\x2b\xb9\x90\x0d\x8a\xcd\xa2\x90\x43\xf7\x48\xdc\x53\x8d\xaf\x47\x35\x3a\x43\x41\xad\x58\x40\x2b\x80\x81\x19\xa9\x50\xcc\x03\x86\x9d\xc2\x8a\xfb\x89\xde\xd1\xc8\xcd\x97\xe0\x98\xcd\xed\x4f\x57\xde\x7d\x27\x64\xc8\x18\xe3\x8d\xe0\xe0\xb6\x6a\x38\xa4\xe8\xe8\x4e\xaa\xa7\x10\xdf\xf2\x4e\x28\x23\x38\xdd\xbd\x27\x1d\x38\x95\xe1\xf5\x59\xc3\x99\xf5\xe7\x41\xa5\x02\xda\x40\x8f\x89\x32\x05\xb4\x87\x10\x1e\x50\xe4\x6a\xa7\x81\x10\x89\x82\x0b\x8c\x56\xc2\x51\x98\x08\xc6\x56\x97\x18\xad\x87\x87\x25\xce\xed\xdf\x23\x47\x15\x42\x1f\x64\x75\x20\x39\xf0\x3f\xc1\x18\xb2\x38\x07\x35\xb5\xde\xc6\xb2\x3b\xbd\x65\x3e\x8b\x36\x3e\x24\x24\xc3\x23\xad\x1e\xdb\x28\x48\x07\x27\x89\x4a\x3d\xb9\x17\xa4\x68\x1b\xa8\xcc\xa9\xf1\x10\x45\x25\x94\xe8\xa7\x74\xb8\x7f\xd5\xec\xd5\x58\x91\x6f\x56\x06\x3a\x30\x6f\x06\x62\x24\x42\xe6\xc7\x58\x89\xae\x6b\x58\x98\x20\xaa\x13\x8e\x8c\x8b\x14\x89\x65\x11\x33\x79\x71\xd3\x55\xa4\xae\x47\x00\x00\x40\xff\xbf\x01\xd4\x2c\x85\xd7\xe7\xf0\xa4\xe9\x45\xc5\x4d\x25\x86\x8e\x81\x58\x48\x89\x90\x2c\xc0\x4c\x3f\x3b\xc7\xd5\x5d\xea\xf4\xc3\xd4\xab\xf2\x66\x35\xf5\x48\xab\x35\x81\xcc\x95\xf3\x26\x26\x05\x40\x83\xd0\xc2\x7b\x8a\xc2\x6c\xd8\x09\xc7\x7f\x1a\x23\x40\xa0\xb6\x44\x6c\xf3\x36\x87\x07\xe3\xc6\xa2\x0a\xa4\xb2\x2f\xb5\x2f\x37\x85\x88\x28\x2f\x94\x5a\x98\x0d\xd5\xd6\x07\x19\x53\x29\x54\x38\x88\x7a\x71\x83\xea\x30\x58\xec\xa3\x21\x27\x65\x19\x7f\x32\x7d\x82\x15\xdb\x77\x8c\xde\xca\x32\x14\xdb\xea\x27\xf9\x0b\x13\xf7\x4b\xfa\xc5\xda\x7b\x8b\xe0\x91\xd4\x2e\xa6\x10\x2f\x13\x43\xfc\x99\xc8\x7c\x99\xdf\x6c\x9d\x26\x82\xf6\xdc\xdc\x6f\x4e\xf0\xa3\x60\xea\x12\xf8\xdf\x10\x3a\x37\x1c\x28\x22\xde\x64\xa4\x40\x29\xd0\x92\x96\x0f\xad\x65\x43\x3c\x52\x30\x7d\xe0\x91\x87\x52\x52\x41\xd8\x27\x60\xf5\x2c\x19\x78\x30\x22\xa2\x85\x2f\xf9\x80\x98\x15\xf3\x64\x61\x89\xdf\x3e\x66\x03\xef\xff\x8d\x11\x14\xa7\x74\xe7\x98\x0e\xbf\x3e\x60\xc6\xb5\x3f\xef\xd0\x61\x3a\xc5\xa7\xd9\x22\x14\xcf\xc3\x0f\x35\xdc\xec\x11\xf6\xb0\x2c\xf2\x71\x0d\x90\x82\x7b\xd3\xe6\x78\xbe\x93\x91\xdf\x24\x0a\x9e\x5f\x17\xa2\x7f\x4c\x5b\xda\x9a\x06\xe8\x28\x75\x1a\x78\x3c\x1c\xa9\xc6\xf1\x33\x07\xcd\xa2\xac\xf4\xda\x99\xaa\x27\x4c\x18\xc9\xea\xcf\x97\x85\xb9\x78\x33\x25\x84\x2f\xc1\x60\x11\x4b\x3c\xc7\x47\x90\xd4\xc2\xd6\x7e\xb3\x64\x60\xde\xf8\x83\x02\xf4\x10\xb2\x81\x06\x46\xef\xcb\xe3\xc4\x13\xc6\x92\x00\x96\xd2\x69\xc8\xfb\xb6\x20\x59\xfc\x05\xfc\x46\x6d\x49\x13\x73\x31\xe7\x0e\x60\xa1\x47\xdb\x01\x88\x7b\x20\x69\x80\x64\x9c\xab\xb7\x2c\x99\x1c\xbd\xb7\x59\x92\x4a\xbb\xd4\xff\x27\x41\xbb\x2c\x04\x75\xaa\xef\x1e\xfe\x7b\x17\x81\x88\xaa\x6a\xb7\x50\xad\x6f\x5f\xf0\x0f\xcd\x3f\x97\xc9\xa4\xca\xb3\x73\x7e\x9c\x3d\x2b\x0b\x8f\x7a\x46\x57\x5a\x29\x7e\xe1\x64\xfc\x89\xc5\x6b\x7c\x06\x4b\xd5\x52\xcb\xab\x13\xa2\x8b\x00\xa9\x56\xfb\xe6\xd0\x4c\x26\xe6\x39\x11\x7d\x45\xf2\xac\x36\x06\x36\x24\x09\xdf\xd2\xda\x6e\x89\x8e\xea\x7b\x81\xe1\x78\x54\x79\x9e\x5b\xba\xdc\x3e\xc8\xa2\xfa\x0e\x06\x1f\xdb\x43\x72\x85\x70\x70\x9c\xbc\x70\xf4\x7c\x1c\xc8\xb1\x26\x4e\x93\xd0\x93\x20\xe1\x2e\x98\x93\x16\x70\x0c\x9c\x72\x32\x6d\x6c\x08\x24\x65\x7b\x2d\x0b\x8b\x1e\x0b\xe4\x57\xf9\x5e\x05\xf6\x13\x22\xc9\x15\xf9\x29\xc0\x2d\x99\x6a\x90\x4d\x20\xf0\x01\x74\xf5\x3d\xd2\xdb\xbc\xf7\xfa\x40\x78\x22\x5c\x0c\x9a\xa8\x04\x72\x06\xb6\x47\x7f\x73\x54\x7d\xdb\xde\x94\xda\x1a\x23\x43\x43\x8a\xb5\x67\x6c\x75\x93\x6a\xb6\x78\xda\xdd\x0c\x45\x65\x73\x06\xd9\x2f\x61\x95\x59\x66\x3f\xe5\x72\x64\xd5\x57\x2a\xa2\x06\x2a\x88\xaf\xd3\x47\x46\x20\x2d\xbc\xd4\x01\x87\x63\x41\x71\x41\x61\x4e\x15\x21\xcc\x6a\x3a\xc1\x01\x20\xab\x35\x87\x8d\x4f\xae\xb8\x28\xe8\x47\x4e\x1e\x90\x80\x23\x78\xe6\x90\x88\x79\x39\x23\xb8\xad\x3d\x1a\xa3\xfb\x93\x45\x4a\x30\x05\x65\x4e\x1f\x52\x14\x9d\x19\xc8\xc5\x0a\xa0\x97\x08\x83\x92\x48\xad\x18\x02\x62\xd9\x56\xf1\xe6\x92\xc9\xe4\x36\xe7\x8e\x4a\x8c\xdb\xc3\x9c\x8c\x40\x2e\xb8\xef\x37\x50\x0e\x63\x04\x25\x1b\x2d\xb4\x84\x51\xf0\x6d\xc9\xa8\xab\x3f\x9a\x2b\x36\xb3\x16\xfe\x11\x45\xf3\x24\x12\x79\x32\x5b\x3b\x7c\x41\x2b\xb3\x79\x08\xb6\x46\x0c\x65\xd9\xf8\xc9\xc8\xee\x39\x27\x74\x4b\xc4\x96\x46\xc5\x6a\xc4\x4e\x52\xd9\x1c\x90\x84\xd8\xb8\x60\xfe\x27\xc0\xa1\x36\xa5\x00\x92\xde\x6e\xca\x26\x44\x2e\x60\x5f\x80\x25\x60\xf3\xaf\x2b\xcf\x83\x4c\x4e\x5c\xcb\xa6\xd4\x5f\x32\xb6\x09\x99\x4a\xca\x3e\x41\x92\x78\xc1\x88\x61\x47\x6d\xae\xe9\x43\x87\x74\xae\x4b\xda\x61\xfa\xb1\x59\x82\xa3\xe3\x11\x55\x7d\x93\x3e\x5f\xd1\x54\x9a\x86\x19\xb2\xb9\x20\xbc\x95\xb8\xd4\xef\xaf\x96\x4c\xad\xc4\xb1\x40\x8a\xcc\x2b\xf9\x4d\xf5\x21\x31\x78\x09\x10\xd2\xb5\x94\xd4\x95\xec\x68\xa3\x14\xe7\xce\x95\x54\x13\x8d\xbc\x13\x84\x37\x74\xf1\x2e\x77\x96\xc1\x12\x65\xa6\xb0\xe2\xa6\x1e\x84\x53\x48\xe8\x90\xbb\x68\x6d\x75\x02\x8b\x9e\x6b\xc8\xe3\x8a\xc2\xa1\xa8\xde\xec\xe8\xd6\x5c\x24\x11\xa8\xd4\x17\x1c\xab\xbc\x1c\x24\xa3\x15\x26\x54\x16\x57\x94\x18\xb1\x26\xc7\xfe\xc6\x56\x4c\xb6\xea\xf7\x58\x73\x6a\xba\x34\x88\xe8\xbb\x9c\x2e\x8d\x3c\x35\x17\x73\xc0\x6e\xe4\xa2\x04\x12\xee\x80\x75\xb8\x93\xc8\xb5\x92\x87\x7a\xd7\x5a\xcd\x28\x27\x39\x1b\x69\x61\x5c\x4c\xc8\x75\xc9\xe8\x79\x5c\x9b\xca\xbe\xa3\x59\x2c\x0b\x88\x01\x11\xab\x73\x29\x83\x23\x04\x55\x6c\xad\x78\x11\x52\x78\x00\x41\x86\x42\xb6\x56\xb5\xdf\xaa\x88\x4a\x50\x53\xca\x60\xc6\x20\x9a\x12\xa5\x58\x0a\x88\x49\x6d\x67\xda\x24\x4b\x60\xe6\xc2\x77\x8c\x74\xbf\xf4\x1c\xa9\x15\x07\x38\x0b\x30\x25\x14\x94\x59\x70\x1a\x69\x93\x67\x75\xfa\x12\x94\xbf\x70\xde\x89\x2d\x08\xed\x31\x24\xdc\x40\xfa\x2a\xf1\x70\x16\x4b\x35\x4e\x90\x52\x1e\x9b\x60\xee\x70\xdb\x29\x4d\x0c\x46\xd3\x7c\x72\x4b\xc2\xf1\xb0\xb0\x38\xb8\x52\x82\x05\x9a\x2e\x4a\x4c\x87\x3e\x08\x98\xe5\x8e\x53\x74\x84\xce\x82\x23\x09\x73\x4b\x97\x87\xd6\xc8\x99\x24\x2c\x71\x95\xa0\x11\x8e\x5e\x80\x00\xc0\x3f\x35\xca\xd0\x2a\xef\x6d\x60\x0d\x36\xa2\x85\x26\x5a\x8e\xc6\x6b\xd0\x27\x45\x9a\xa6\x2b\x51\xd9\x56\xc3\xa6\xa2\xcb\x1f\x37\x44\x12\x27\xda\x02\xfc\xc1\x78\x4a\x69\x1d\x18\x30\x81\x72\x98\x04\xbf\xfb\x3a\x8e\xae\xc4\xa2\xb2\x1d\x8d\xe0\xa9\x27\x65\x01\x1d\x04\xfd\x63\x79\x6f\x11\x70\x09\xb1\x09\xe9\x85\xc4\xb3\x06\x85\x0c\xf2\x61\x7d\xd9\x6f\xc7\x8b\x82\x12\xa0\x29\x5a\xa4\x5f\xe6\x33\x2b\x91\x7c\xfc\x64\x5e\xed\x43\x32\x56\x22\xa3\x38\x34\x1d\x7c\x02\xc0\x8b\x81\x8e\xfa\x5d\x71\x30\x32\x29\x34\x72\x31\xda\xeb\x95\x7f\xcf\x16\x82\xf2\x65\x72\x4a\x2e\xe5\xf1\x53\x14\x8a\x0f\x68\x27\x8a\xa3\x13\x00\xf2\x1b\x1e\x52\xa4\x1d\x13\xc4\x22\xc8\xf6\xc3\xad\xcd\x25\x53\x27\x6b\x84\xa9\x8c\x8e\x21\x0c\x21\x36\x1d\x62\x68\x3c\x88\xd0\xc6\x04\x78\x2f\x0a\x43\xee\x0a\x62\x41\x6b\x3d\xcf\xd4\xf9\x05\xac\x8e\x60\x80\x81\x93\x5f\x00\xdb\x72\xa0\xfa\x0e\x87\xa9\xcb\xca\xba\x1a\x5f\xa2\x74\x35\x07\x59\x3d\x91\xa9\xad\x08\x89\x40\xc4\x42\x28\x0c\x81\x90\x89\x32\x45\xc0\x31\x09\x9c\xcb\x56\xa6\x8b\x4d\x90\xb2\x39\x94\x0b\x58\x64\xf2\x93\xf2\xb4\xe1\xaa\x03\xc8\x8d\x38\x46\x13\x08\x18\x32\xd5\x11\x84\x14\x36\x68\xb4\x36\x69\x52\x74\x3c\xc4\x67\x12\x01\xc3\xa6\x7a\x20\xb3\x14\x43\x63\xbc\x29\xbc\x88\x71\xd1\x7d\xc9\x6e\x22\xab\xde\x90\x06\x6f\x89\xe4\xd3\xf9\xe3\x71\xde\x6c\x72\x34\x2b\x03\xcc\x69\x2d\xc7\x14\xfa\x20\x16\x62\x54\xec\x75\xb2\x72\xc9\x76\x28\x0a\x19\xc8\x83\x19\x59\x00\xda\xcb\xb2\x02\x98\x92\xc4\x17\xca\xd9\x1e\xb1\x6c\xa5\x9f\x08\xc1\xed\x14\x48\xed\xd2\x90\x21\xd3\x14\xca\x85\xc6\x4e\x37\x30\xaf\x09\xd1\xd3\x4d\x38\xd2\x2e\x9a\x11\xcf\x43\x51\xac\xf8\x14\x0c\x1c\xd5\x08\xd7\x49\xb1\x1e\x49\x36\x23\xf9\xc7\x59\x26\x75\x31\x28\xae\x60\xd8\x0c\x26\x44\x79\xbc\x97\xf8\x38\xa5\x91\xae\x42\x76\xdc\x13\x54\xc0\x4e\x99\x4c\xe0\x25\x72\x11\x5c\x46\xcf\x02\xa2\xce\xa6\x1f\x9e\x86\x26\xa4\xd3\x31\x4b\x38\x35\x11\xc8\x04\x75\x56\x04\xfb\x8d\x27\x24\xf8\x56\x33\x38\xe3\x38\xcb\x28\x2c\x82\x06\x88\xc2\xf7\x1e\x20\x08\xa2\x87\x62\x85\xdb\x23\x86\x20\x8c\xc3\x01\x7b\x0d\x04\x45\x90\xf4\x41\xfa\x02\x50\xd8\xb9\x38\xe6\x7d\x34\x0c\x10\xc8\x62\xc0\x32\x17\xeb\xb1\xb1\x18\xfa\x8c\xf2\x73\xec\x68\x0b\x10\x80\x6a\x3e\x68\xc4\x79\x07\xc5\xef\x8b\x00\xa0\xa1\xfe\x30\xc2\x0f\x25\x40\xbd\x96\x10\xaf\xdb\xa1\x7c\x02\x28\xa5\x0a\xdc\x4e\x11\xf5\xf4\x1e\x42\x1d\x57\x81\x20\x31\x3e\x7a\x29\x51\x08\xd8\x50\x18\xc0\x24\x0e\xee\x18\xbb\x6f\xc5\x68\xfb\x06\x15\xbe\x2f\x30\xd6\x07\x6e\x2b\x60\x66\xb6\x2c\xdb\x73\x0f\x20\x08\xb6\x19\x14\x4d\x13\x74\x5a\x55\x81\x1f\xdd\xb6\x68\xb2\xfe\x4b\x1c\x01\x7a\x47\x19\xe9\xa0\x20\x65\xba\x72\x22\x29\xeb\x68\x4f\xa6\x4c\x40\x32\x26\x25\xef\x3d\xa0\x40\x28\x59\xdc\x63\x3a\x1a\x12\xb7\x4e\x2d\x72\x22\x1a\xc3\x5f\xb0\x74\x22\x2c\x83\x92\x82\x2a\x83\xf9\x3e\xe2\x39\x04\xd1\x48\x8e\x08\x4c\x8d\x91\xd1\x95\x87\x41\x90\x00\xb1\x4b\x11\x6d\x3f\x01\x86\x06\x47\x8a\x22\x94\xae\x37\x96\x36\x49\x27\xd0\x0c\x6c\x88\xac\x1f\x6c\xdc\x06\x09\x17\xfc\x6d\x91\xe6\xb5\x0c\x05\xdf\xf1\x8d\x91\x0b\x14\x29\x13\x9b\xf3\xd3\x2f\xf8\xc6\x66\x78\x96\x03\xb9\x0b\x40\x94\xdf\x8a\x10\x4c\x0d\xb3\x1f\x92\x9c\xf2\x50\x59\x7b\xc3\x2c\x4b\x5a\x45\x68\x79\xa2\xed\xdf\x10\x69\x8d\xaf\x37\xd8\xde\x64\xa7\xdf\xa2\x19\xd6\x06\x3b\x51\xb0\xc0\x44\x79\xdc\xa9\x08\x1f\x79\x0e\x69\x79\x2c\x32\x1c\x1a\xa5\x9b\x50\x99\x3e\x17\xef\x13\xab\x53\x98\xe0\x00\x64\xb4\x20\xd6\x6c\x29\xd0\x31\x9a\xc4\xa5\xa6\x01\x55\xfc\x88\x52\xc5\x8f\x9b\x61\x60\xc8\xc3\xec\x5e\x8e\x95\x2b\x4e\x4e\x1e\x73\x87\x9a\xf2\x27\x1d\x8c\x90\x34\xed\x0a\x82\xee\xdc\x3c\x56\xfd\x50\x39\xfd\xee\x06\x80\x90\x30\x05\xa9\x7a\x39\xc1\xf2\x9c\x73\x5a\x91\xb0\x4a\xa3\x0e\x09\x10\x6e\x71\x04\x08\x05\xbd\xc0\x5f\x15\x99\x48\xe3\xe4\xb8\xfe\xb7\x7e\x84\x99\x9d\xe0\x9d\x37\xe4\x98\x40\xef\x28\x25\x2a\x8d\x9c\x4f\x75\x84\x0c\xd8\x58\xe9\x7d\x34\x7d\x05\x01\x83\xf8\x08\xa4\x7a\xc5\x2a\x62\xc8\xe0\x0c\x3c\xc2\x4b\x6f\x20\x88\x52\x32\xa8\xd5\xe9\x03\x08\x1f\x18\xc0\xb8\x9f\x81\x67\x1f\x80\x50\xa9\xdb\x18\x10\x3e\xa5\x5f\x41\x0e\x71\x27\x4c\xaf\x42\x37\x07\xd4\xa0\x19\x7c\x50\x16\x94\x75\xe7\x8e\x38\x81\xd8\xd7\xc4\x56\xf1\xc5\x86\xa8\xd2\x25\x68\xcb\xe6\x95\xa4\x97\x4c\x80\x36\x03\x64\x53\x20\x44\x6a\x47\x6e\x70\xa4\x80\x00\x2c\x1a\x92\x59\x4e\x04\xc7\xa6\x9d\x65\x20\xe2\x4c\x3f\x9d\x99\xd3\xb4\x97\xcf\x26\x9a\x91\x98\xce\x42\x6f\x87\xc5\x00\x06\xa5\x8a\x03\x2a\x03\x70\xb9\x11\x2a\xc1\x55\x7c\xd7\x10\x0f\xf0\x04\xc5\x26\x13\xc2\x10\x73\xdb\x81\x7a\x75\xc6\x73\x44\x75\x3f\xdb\x80\x42\xc8\x97\x31\x21\x43\xe6\x75\x3b\xd7\xf3\x17\xce\x49\x90\xae\x29\x2b\x6c\x92\xb9\x63\x1e\x55\x1d\xa8\x69\x02\x0d\xbd\xfb\xfb\xd4\xf3\xd7\xf6\x3a\x35\x7d\x20\xd8\x4c\x5a\xff\x6b\x82\x7f\xdf\x56\x56\xd2\xd2\xf5\xbb\x3b\x50\x01\x7a\x38\x47\x26\xbf\x07\x55\x0c\x20\x84\x00\x4b\x79\xa3\xa2\x71\x9b\x6b\xb6\x88\xa9\x1a\xdf\x78\x75\x2d\x27\x7a\x69\x2d\xaf\x5b\xaf\x9c\x5a\xe3\x98\xa9\xc3\xb4\xc5\x1a\xde\x6f\xd3\x7e\xb8\x08\x46\x06\xe3\x87\x83\x66\xa8\xe2\x34\xac\xe1\x14\xbd\xc6\x83\x51\x2c\x46\xe7\x62\x0e\x37\x3a\xbb\x65\xf6\xb6\x78\xa4\x94\x30\x05\xcb\x71\x80\xd7\xad\xc6\x02\x2e\x50\xd2\x22\x1a\x27\x49\x13\x1b\x50\x1f\x34\xad\x84\x43\xdd\xe7\x3a\x15\x7a\x3a\x2d\xcb\xeb\x32\x34\x96\x7b\x60\xd0\x80\xa1\x45\x55\x90\x21\xe6\xf9\x1d\x19\xcb\x4b\x94\xd4\x8c\x07\x3d\x80\x66\x85\xef\x19\xe2\x54\x45\x04\x34\xd6\x80\xce\x25\x29\x92\x1e\xa3\x19\xc3\x90\x61\xa6\x94\x07\x8a\xd9\x0c\x16\x2b\x60\x58\xda\x45\x17\x02\x0e\x37\x39\xf3\x05\xe5\xa6\xdf\x59\x50\x74\xed\x69\x13\xcf\x3d\x6a\x62\x9a\xd7\x02\x77\x82\xba\x68\xef\x9d\x1a\x87\x6e\xf0\x62\xa9\x37\xcf\xd8\x00\xe5\x49\x09\xc6\x58\xe4\x33\xa7\x83\x12\xd0\x4d\x32\x2a\x18\xff\xbf\xc1\xb6\x00\x04\xb0\x17\xa0\xd0\x98\xa1\x99\x2b\xe0\x48\xb0\x19\x01\x24\x87\xd8\x0d\xfa\x83\xa2\x13\x6d\x45\x04\x3a\x5e\x54\x4d\x7d\x68\x7f\x4a\xed\xe3\xc9\x8d\xbb\xc0\xbc\x28\x48\xda\x24\x8b\x8e\xdf\x02\x00\x64\xfa\x42\x72\x43\x6f\x83\xf0\xf8\x23\x9e\x6b\x47\x0a\x0c\xe7\x1a\x21\xda\xbf\x11\x66\xff\x2b\xb6\xa8\x13\xb4\x0a\xdd\x40\xef\x95\x64\x23\xb6\x38\x30\x96\xc9\xb3\x80\xc6\xe0\xab\xc0\x98\x85\x60\xe0\xc0\x00\x01\x00\x96\xc0\x05\x4c\x3c\x11\xd4\x00\x15\x19\x37\x3e\x2d\xb0\x4c\x99\x59\x70\x63\xb8\x83\x23\xdf\xd3\x78\xc2\xc4\x4c\xe1\x2f\xfd\x0f\x38\x9a\x8c\x27\x0c\xd1\xe9\x80\x84\x6e\xa7\x05\xea\xc3\x32\x55\xa2\x1e\xc4\xa9\xde\x94\x4f\x69\x03\x63\x8a\x76\xca\x04\x03\x3f\xee\x08\xa7\xfb\x5f\x71\xd2\x08\xcb\x43\xdd\x40\xec\x84\xe1\xfa\xa4\x77\x31\xf0\xa2\x4c\xe7\x97\xe3\x84\x5a\x30\x27\x6e\x53\xa6\x84\x71\x6f\xc7\x08\xb4\xe0\xad\x24\x91\x86\x9a\x3c\x17\x15\x85\x7e\xd8\x42\x7e\xd4\x00\xcd\x4c\x58\x34\x49\x4c\x14\xde\x52\x35\x30\x13\x44\xab\xba\x09\x02\xfe\x79\xfb\xcd\x01\x44\x23\x4f\x29\xe1\xa5\x79\xd5\xf2\xa5\x0c\x57\x0a\x36\xdd\xbc\xcc\x93\x5d\xfb\x09\x4d\x56\x88\x1b\x9d\x5e\x48\x86\xea\x74\x2b\xc5\xc9\x3d\xe6\x20\x95\x57\x8a\x02\x5f\x1a\x39\x2e\xc8\xdf\x48\xe8\x5b\x66\x52\xcc\xfb\xfb\xa1\x6d\x99\x44\x47\x12\xca\x02\x9c\xde\x78\xf8\x46\x55\x23\xed\x68\x20\x50\x3f\x35\xf1\x79\xae\xef\x89\x82\x21\x7a\xd2\x75\xc6\x67\x8f\xb2\x31\xca\xe8\x5b\x35\xaa\x49\x92\xd5\xa3\xf8\x77\x38\xf6\xf3\x90\x39\x51\x89\x2f\x45\xd8\xb1\x3b\x3e\xc1\x39\xa4\x67\x8e\xf7\x0c\x50\xe0\xaf\x00\x97\xa1\xc0\x1c\x9f\xc1\x01\x94\xcd\xab\x47\xc4\xf3\x5e\x83\x45\xfe\xe6\xf7\x27\xb9\x75\x77\x11\x34\xd2\x08\x30\x57\x83\x86\xa8\xe1\xb6\xaa\x44\x53\xe1\x62\x7c\x13\xa1\x7d\xeb\xb5\x17\x16\x19\x7f\xa6\x84\x92\x53\x64\xd4\x6f\x79\xb0\x7f\x44\x1e\x50\x4e\xbc\x0a\xc0\x9a\x77\x7e\xf6\x70\xd3\x4f\xef\x9d\x36\xf8\x45\xb8\x03\xd3\xb6\x24\x13\xb6\x3d\xe9\x1a\x56\x46\x8b\x20\x21\xeb\xa1\x16\x1f\xc8\x99\x02\x6b\x7a\xe8\x8c\x83\x79\x74\x89\x6f\xb7\x51\x4a\xf7\xc9\xb2\x68\x9d\x66\xca\x3f\x96\x44\x9f\xb9\xf8\xb6\x1a\xc2\xe2\xd9\x34\xdf\xe3\x03\xe1\x80\xb4\xee\x0a\xe7\x79\x41\x91\x0a\x82\x3e\x38\x89\x19\x5e\x4a\x15\x38\xe5\x5a\x6e\x30\xd8\xed\x21\x17\x0c\xdc\xe1\x59\x90\x89\xca\xf0\x72\x18\x77\xf0\x42\x4b\xf2\xaf\xd0\xa5\xcf\x36\xd2\xdc\x60\x91\x49\x38\xd5\x22\x46\x3f\x9e\x2f\x09\x26\x9a\xc1\x99\xaa\x8a\x5b\x53\x80\x3e\xfb\xe0\x48\x92\x6b\x71\xa6\x62\xc0\xaf\x22\x8f\x09\xce\x3c\x48\xd3\x02\xac\xf0\x8d\x1b\x6a\xdd\xac\xc7\xc6\xd9\xe3\xa2\x69\xad\x4f\x06\xc9\x11\x37\x6c\x9c\xc7\x6d\xfc\x2d\xbf\x20\x7b\x71\x78\xb8\x60\x10\x50\x4b\x7f\xb0\x9c\x96\x65\x9c\xa9\x25\x8c\xe4\x51\xbb\x89\x35\xcb\x8c\x6e\x00\xe5\xe6\x78\xfc\xed\x90\x32\x7c\xd0\xa7\x0d\xd1\xbb\x40\xb7\xee\x26\x0b\x2c\x58\x67\x06\x16\x38\x97\xa9\xbd\x7d\xed\x93\xf1\xe9\x35\x32\x4a\x84\x63\x80\xc9\xf7\x89\x3c\xb3\x4c\x09\x2e\xcf\x01\x41\x97\xce\x20\xf1\x83\xc5\x22\x36\x32\xfd\x00\xe3\x06\x69\x6a\x92\xbb\xcb\x50\xa8\xc9\x0c\xdc\x0e\x20\x4b\x63\x8e\xcb\x8f\x59\xf9\x20\xd4\x3b\x63\x54\x62\xb1\x88\x00\x1e\xc3\x02\x06\xeb\x02\x8b\xdd\x18\x2e\x1f\x4f\xbc\xbe\xb2\x5a\xbd\x31\x84\x1d\x7b\x2a\x35\x84\xba\x65\x73\x5c\xe9\xca\xfd\xe0\x8a\xd3\x72\x6a\x4b\x4b\x96\xe3\x03\xbc\x8a\x4d\xb2\xe4\xa5\x01\x8a\x44\xe8\xf8\xc0\xda\xd3\x3a\x75\xfb\x18\x49\x8c\x21\x18\x29\xc9\xb5\x96\x6b\x08\x84\x72\x84\x88\x64\xf1\xb8\xdf\xda\x91\xc5\x28\xf1\xd8\x43\xcf\x7a\x46\x99\x19\x2c\x7d\xf8\x66\x6c\xb3\x7a\x27\x72\x48\xb6\xc8\x32\x83\x20\x4b\x2a\xf8\x45\x43\x39\x00\x20\xf3\x08\x71\xc4\x1b\xdb\x3c\x8c\x5d\x93\xeb\x23\xaf\x0d\xd2\xeb\x70\xa2\x34\x7c\x88\xeb\x84\x9a\xe8\x2a\x06\x32\x58\xad\xc6\x65\x21\xfa\x61\xe1\x96\x8c\x6e\x21\x30\x71\x29\x8c\x58\x07\x21\xfa\x88\x68\xe7\xd1\x12\xe9\x3f\x88\xa2\x3d\x41\x82\x23\xd5\x4a\xdc\x5b\x06\x8a\x37\x63\x78\xd1\x47\x75\x3c\x91\x95\x2a\x37\xb9\x47\xf1\x55\x40\x30\x35\x87\x14\x21\x27\xd5\x00\x19\x0d\x13\xd5\x43\x28\x6b\x82\x12\x67\x07\x52\x95\x0a\xc9\x04\xab\xa1\x30\x8c\x8c\x81\x52\x4c\x85\x90\x1b\xb0\x10\x1e\x94\x50\x91\xd2\x09\x51\x28\xe3\xf8\x1c\x09\x87\x67\x08\x25\x49\xca\x0b\xea\x28\x8e\xd2\x30\xed\x42\x88\x80\x11\x08\xc4\x09\x1a\x80\x8e\x3d\xa1\x4e\x28\xf3\xb7\x40\xf6\x0a\xd7\x2d\xfb\xf8\x05\x1c\x39\x58\x09\x85\x1a\xb6\x42\x0a\xc6\x75\xa9\x1f\xb4\xdd\x13\x36\x7e\x85\x64\x94\xb2\xf1\xd1\x0c\xb2\xcf\x3e\xa0\xa3\x61\x49\x4b\xac\xa8\xd8\x52\x98\x4d\xaa\x58\x0a\x8a\xf3\x46\xcf\xe6\xe6\xab\x9a\x88\x45\x91\x45\x5f\xa1\x0f\xd9\xca\x81\xe5\x3d\x12\x69\x77\x64\xee\x74\x82\xc6\xb2\x8f\x80\xc5\xcf\x1c\xa4\x58\x00\x8b\x6a\xb3\x16\xf7\x8e\x18\x89\x9e\x54\x42\x53\x46\x35\x03\xa7\x05\xb9\x21\x6f\x20\x80\xc6\xc8\xf2\x02\x2e\xc8\x08\x3a\xb8\x22\xe0\x08\xc4\x0a\x92\x17\x0c\x58\x93\xd1\x84\x53\x01\x0a\x24\xc1\x16\x21\x76\x54\x43\x48\xf5\x96\x83\x04\x58\x85\xe7\x67\x64\xcf\x33\x3c\x7e\xb2\xc9\x80\xaf\xd2\x41\xfd\xb2\x48\xa7\x11\x6b\xc6\x99\xee\x78\xdd\x49\xc6\x0f\xcb\xfc\x8d\x72\x33\x2f\x84\x0e\x61\xb6\x75\x4a\x26\x49\xd9\x0f\x59\x60\xb1\x07\x3d\xb1\xa8\x59\xe2\x40\xaf\x7a\x2c\x48\x1d\xcc\xcc\xc0\xb2\xa0\x02\xf7\x30\x47\xac\x32\x39\x26\x46\x33\xee\xcb\xc3\xfa\xb3\xd3\xf2\xa4\xf4\xc7\xd7\xe9\xa1\x3e\x0a\xa0\x44\x7f\x33\x23\xae\xbc\x9c\x68\xbb\xa1\xa1\x8e\x56\x8b\x09\x58\x85\x38\xda\xe6\x4d\x32\x36\x83\xc6\xae\xdd\x0a\x4b\x76\xc0\x38\xd4\xc2\xea\xdf\x0b\x06\x30\x75\x0f\xc1\xba\x63\x04\x1a\x99\xef\xbd\x7d\x93\x74\xc6\x08\x05\x46\xf6\x30\x43\xa8\x96\x46\x20\x18\x07\x3f\xc6\x5e\x92\x9d\xbb\xeb\x9f\x22\xf2\xaf\xb1\x97\x4c\x28\x9e\x46\x85\x42\x4b\x4c\x14\x60\x41\xe1\x82\x81\x74\xc1\x47\x6c\x2d\xed\x47\x68\x65\x00\xcf\x19\x36\xf3\x35\xf9\xf8\xd2\x8f\xcd\xd5\xe7\xe4\x4f\x61\xe8\xe0\x80\x26\xf0\x95\x2a\xff\x73\x3e\x42\x8b\xbc\x43\xab\xbb\xd2\x22\xd7\x94\xee\xb5\x51\x70\x9f\x7d\x45\x90\xb1\x0e\x5b\x84\x09\xfa\xe4\x17\xf9\x1e\xa1\x32\x33\x04\x69\x20\x89\x07\x31\x02\x70\xc3\xc1\x77\x8e\xf4\x82\x87\xac\x9a\x7e\x13\xd9\x03\x45\xc8\x53\x6f\x69\x3f\xba\x29\xbe\xdb\x07\xb9\x19\x10\x83\x86\x0f\x76\xbf\x9f\x47\xcf\x4d\x01\x5a\xbc\xc6\x4b\x66\x4e\xd8\xa0\xde\xb3\xa2\x2d\x91\x60\x91\x86\x66\x69\x34\x7e\x94\x5e\x37\xae\x75\x43\x87\x4e\x6d\x43\xe5\x94\xf2\x6a\x48\x3e\x5e\x02\x54\x95\x72\x13\x89\xc4\x81\xac\x1e\x47\xe8\xc0\x4b\x46\xd9\x01\x49\x30\x15\xb4\x61\xb4\xce\x6f\x33\xad\xb0\xaf\xad\x69\x85\x6a\x22\x4a\x55\xb3\x12\x2c\x4f\xba\x39\xb7\x70\x7b\xd9\xe8\x49\x92\xa0\x0c\xbd\x36\x5c\xf1\x7a\x32\x03\xa3\x43\x7d\x5b\x67\x06\x5d\x60\x76\xce\x35\x0f\x98\x1c\xf3\xd6\x80\xe5\xb3\x9e\x4c\x07\x45\x82\x63\xb3\x44\x4b\x07\x68\x62\x60\xbf\x6f\x1e\x8a\xbc\xd4\xe1\xf8\x57\x3e\x41\xe4\xf4\x48\x32\xe8\xde\x43\x28\x86\x47\xa8\x71\x8b\xdd\x3f\x98\x3f\xc9\xd3\xf2\x0c\x59\x9a\xe2\xc3\xd2\xf9\xd3\xe2\x64\x18\xb3\x38\x09\xe0\xea\x15\xcb\xf3\xe0\xcd\x98\x80\x3c\xf6\x46\xeb\x88\x0c\xec\x45\x78\xaa\x44\x10\xcc\xed\xf8\xfa\xa9\x59\xc4\x1a\xad\x67\x10\x78\x87\xb0\xb3\x2f\x71\x3a\x2b\x88\xe1\x14\x58\xca\x8c\x95\xe3\x19\xce\x33\x28\x34\x4d\xb1\x99\xec\xfa\xeb\x92\xe8\xb8\x3f\xd1\x75\x6d\xdc\xd7\x3d\xd0\xbb\xeb\x54\x55\x17\x21\x99\xbc\xe0\x1b\x67\x69\x26\xa1\x0b\x10\x58\xeb\x29\x47\xdb\x9c\x67\xbd\xc5\x90\x5a\x52\xc4\x8f\x8a\xca\xfd\x73\xb0\xbc\x93\x4f\x12\x3b\x0f\x3e\x04\xfc\x8f\x17\xc9\x90\xf1\x47\x19\x59\x34\x92\x8c\x81\x59\x6e\x31\x08\xc1\x8d\x94\x8e\x59\x62\xbf\xcb\x8a\x45\x45\x4f\xe3\x7f\x00\x20\xc2\x65\x38\x83\x06\x83\x66\x79\x4a\x14\x22\x60\x02\x02\x93\xb8\x78\x55\xe4\x6e\xb2\x66\x2a\xfa\x51\xa8\x29\xc8\xf6\x2c\xcc\x6b\x94\x7c\x4e\xa7\x51\xc4\xa0\x09\xc9\xee\x26\x44\x35\x4e\x31\x90\xc1\xa4\x44\x7a\x13\x18\x46\x1b\xe3\x17\xbc\x4c\x27\xe8\x48\x98\x4c\xf4\x44\x68\x77\x13\x66\x89\xa0\x45\x05\xb4\xa9\x3c\xe4\x27\xa2\xa5\x73\xe1\x5b\x6f\x51\xd7\x64\x94\x15\x3f\x97\x29\x54\x30\x74\x2a\xb0\x62\x91\x19\x9b\xc2\x94\xbb\x4f\xc6\x79\x5f\xa7\x53\x58\xbe\xd7\x17\x94\xd5\xd9\x15\x1e\xa3\xd6\x0f\x68\x2e\x5a\x30\x67\xb6\x00\xe9\x69\xa4\x90\x1c\x69\xec\xca\x9f\xd0\x95\x35\x99\x34\xd9\x12\x2c\x7a\x14\xb5\xba\xa8\x98\x98\xd8\xee\x34\x9c\xda\x17\x69\x73\xc3\x1b\x63\x21\x03\x70\xeb\x01\x11\x80\x71\xf8\xfc\xc0\x3e\x06\xc4\xa8\x21\x0d\x8d\x31\x19\x6a\x59\x27\xe4\xd5\x12\x1b\xb4\xeb\xd9\x38\xa7\xd2\x6b\x90\xed\x41\x10\x21\x5c\x48\x26\x32\xac\xcf\x20\x72\x8d\x02\x51\xfe\xbf\x54\x9b\x50\x55\x0e\x54\xf8\xd6\x14\x51\x47\x5d\x25\x5f\xf1\xb5\x45\xe9\x58\x1f\xa4\x25\xac\xec\x00\x05\x9e\x44\xd1\x78\x82\x59\x61\x39\xf2\x37\x9d\x8e\x24\x2a\x04\x45\x89\xb3\x47\xe4\x82\xad\xd3\x11\x0d\xd7\xaa\xe0\x48\x6e\xa6\x4e\x06\x58\xf1\x95\x20\x9b\x66\x63\xbb\xf5\x1a\x4d\x33\x8b\xdb\x48\x09\xe0\x64\x77\x1e\xc2\x04\xd5\x0a\x9d\x67\x21\xab\xa4\xd4\x1a\xdf\x2c\x1e\x42\x63\x1a\x3e\x42\xd4\xb6\xd8\xd6\x73\x30\x0e\x68\xdc\xeb\x86\xfb\x07\xa3\x33\x5c\xcc\x08\x55\x70\x2e\x93\x1c\x22\xfa\xd4\x6e\x72\x03\x95\x6c\xdb\x2a\x2e\x4a\x85\x1c\x69\x45\x4b\x05\x02\x37\x80\xa2\xc5\x40\xce\x7c\x23\x85\x29\xe5\x35\x2c\xc3\x54\xe2\x74\xc7\x19\x31\xbb\x26\x3f\x52\x62\x09\xf5\x4e\xf8\xaf\xc6\x46\xe6\x0c\x15\xe4\xae\x99\x42\xeb\xb1\x80\x9e\xa6\x0d\xca\x72\x55\x12\x86\x6a\xdc\x6f\xf4\xc9\x05\x43\xf6\x79\x4d\xea\xf0\xb0\x93\x61\x12\xe5\x99\x2e\xb9\x83\x57\x85\x81\x30\x55\x53\x3d\x2d\x8a\xd3\x24\x66\x0f\xe5\x4b\x92\x35\x22\x63\x00\xa2\x20\xd0\xca\x5a\x60\x61\xcd\xa0\x38\xbb\xe6\x71\x31\x90\xe3\x3b\xc1\xc5\x27\xae\xba\x63\xaf\x2b\x52\x04\x78\x8e\xba\xcb\x80\xf6\xaa\xcd\x04\xb2\xbc\x2f\x89\xd1\xf5\xe6\x81\x43\x1c\xcd\x5e\x16\xe8\xf0\x51\x1e\xc5\x1a\x55\x84\x0b\xa2\xc6\x15\xc3\x95\x0c\xba\xbe\x0a\x70\x81\x72\x92\xa8\x8c\x74\x20\x92\x0b\xb2\xba\x99\x18\xe8\x41\x2e\xe3\x4a\x51\x67\xce\x11\xf9\x57\x4a\xa8\xf0\x21\x0a\x1e\x70\x8d\x71\xf5\x83\x46\x84\xff\xa1\x00\x15\x14\xe2\x55\x01\xf9\xce\x3c\x63\x12\x91\x63\xc0\x41\x4d\x2b\x2a\xe3\x3a\x13\x67\x8e\xd4\xae\x1c\xca\xf5\xc4\x44\x30\x51\x85\xbb\x60\x95\x4d\x11\x2c\x75\x70\x1e\xa1\x08\xf3\x38\x77\x17\xca\xba\x5c\x6a\x49\x46\x09\x13\x19\x5a\xc7\x19\x24\xc8\x16\x42\x6c\x16\xe8\xf1\xa2\x16\x93\x05\x79\xa5\xd8\x2c\xf3\x40\xec\x02\x06\xa7\xb0\xf3\x4d\x71\x84\xbc\x49\xa2\x83\xd9\x1c\xd1\xde\x95\x7d\x37\x66\x9c\x22\x51\xe1\x1f\x4e\x13\x74\xc6\xc2\x05\xb2\xce\x02\xa2\xc2\x3d\x65\x95\x04\x39\x26\xdb\x2b\x06\x88\x05\xf2\x64\xf8\x69\x6c\x3c\x9e\x91\xa4\x96\xb4\x38\x5e\x75\xb3\x8d\x33\x6e\x26\x36\x0d\x00\x0a\xf4\xb5\xe0\x51\xd8\x64\x04\x6a\x07\x3f\x85\x79\x19\xde\xe3\xf0\x52\xbb\x8e\xd2\x2d\xd2\xce\x7a\xc3\xc6\x0c\x3e\xc7\x00\xd2\xbb\x91\xe3\x2f\x9b\xbc\x8d\x04\xca\x56\x4c\xec\xae\x3a\x27\xe1\x24\x7a\x27\x9e\xc0\xf1\x87\x00\x09\x0c\x09\x44\x70\x71\x10\x2c\x53\xb2\xcb\x4a\x76\x4a\xa7\xa2\x06\xa3\x07\x9e\x7f\x04\xce\x16\xae\x1c\x0f\x74\x8c\x63\xba\x9e\x2e\x13\x93\xae\xd2\xc8\x8e\x9a\xec\x42\x11\x10\x08\xb7\x11\x5b\x98\x51\xe4\xb4\x1e\x7a\x39\xc3\xca\x64\xf4\x99\x92\xa7\x01\xa2\xf8\xfb\x09\x01\x3e\xcd\x4b\xa7\x73\x78\x25\x98\xaf\x1c\xfb\x2c\x5b\xd1\xa2\x11\xbc\x16\xc8\xc8\xe6\xfc\xdc\x68\x0e\x3b\x8c\x44\x6a\x83\x2a\x38\xd4\x8b\xa6\x99\xc1\x2c\x6b\x7c\xca\x61\x3b\xd9\x1c\xeb\x9f\x17\xac\x31\x4e\x82\x4c\x61\x16\xc7\xa4\x3a\xea\xf8\x87\x0a\xff\x04\xef\x01\x8c\x22\xd8\x4a\x5c\x6f\x25\xd6\xc1\x3c\x97\xc2\xf1\x77\xb5\x44\xa3\x79\x2d\xe2\xdf\x32\x2e\x02\xf1\x01\x44\x53\x8a\x8c\xf0\x2f\x17\xc2\xb5\x17\x84\xb5\x0e\x28\x50\xc5\x1b\x56\x8b\x61\x5a\x2b\x4e\x10\xcd\xb1\x4e\x62\x5b\x8c\xe7\xbb\xc4\x94\x33\x60\x3c\x05\x8c\xa4\xe6\x4d\x1d\xf1\xc2\x64\xd6\x2b\x64\x0a\x09\xad\x42\xd8\x1a\x6e\xbc\x09\x10\xd0\x15\x0f\xa1\xa0\x2a\xac\x31\x8c\xee\x9b\xba\xb0\x80\x92\x87\x21\xfd\x67\xdf\xb5\xa0\x5b\x2c\x02\xd2\x30\xf1\x85\x02\xf2\xc0\x29\xf0\xb6\x16\x92\xef\x78\x28\x63\x22\x98\x4a\xc1\x40\x92\x06\x20\xc9\xa0\xee\x92\x0a\xd7\xf6\x26\x3a\x40\xa0\x28\x82\x78\x24\x2c\x92\x8f\xb1\x06\x4c\x00\xcf\x27\x82\x59\x10\x38\xb1\x2c\xf0\x7f\x5e\xd0\x6e\x21\xb9\x34\x6c\xb6\x37\x23\x31\xe5\x58\x55\x9d\x35\x93\x38\x9e\x16\xd9\x72\x1f\xb1\x90\x0f\x8c\x00\xe8\xa4\xee\x94\x89\x00\xba\xd0\x80\x0f\xc3\x18\x44\x99\x26\xed\x64\x8e\x89\xbe\xa8\x10\x68\xa8\x1e\x91\x43\xb7\x82\x8a\x4f\x8f\x46\xb9\x80\x07\x51\x04\x1c\x16\x15\x00\xf8\xfe\x98\xa0\x0d\x34\xf3\x6c\x10\x76\x89\x01\x29\xf1\x20\x24\x60\xa4\xa7\xc4\x24\x45\xc7\x91\x76\x12\x3e\x43\x62\x08\x43\x63\xa0\x39\xc7\x10\x02\x87\xa1\xee\x47\x21\xd0\x62\xf1\x24\x37\x16\x3d\xf1\xd8\x49\xf1\x4d\x28\x80\x15\x00\x00\xb2\x25\xa7\x01\x3a\x48\x5b\xd6\x2c\x5f\x80\x6d\x82\x43\x50\x24\x0b\x9f\xcd\x0b\x99\xce\x5b\x98\xcc\x15\x1c\x59\x13\x8e\x56\x39\x37\x10\xf6\x2e\x8e\x88\x98\x82\x72\xca\x3c\xbe\x25\x0d\x30\x7b\x16\x24\x84\x0e\x23\x49\x39\x17\x6c\xb0\x51\x80\xf1\x53\xcd\x80\x4a\x60\x60\x09\x9c\x1c\x8c\x2e\x9a\x39\xd1\x8e\x33\x7b\x58\x60\xc0\x45\x9e\x85\x90\x62\xdb\x55\xc8\x19\x82\x46\x88\xbc\x5b\xd4\x24\xdc\xca\x75\xc1\x0b\xe0\x0a\xa8\x59\x06\x01\x00\xb4\x09\x54\x56\x08\xe5\x21\x09\xd0\x9b\x75\x90\xaa\x98\x56\x08\xd2\x0e\xd5\xce\x84\x41\x75\x95\x97\xf8\x5c\x4a\xa4\xad\x31\x4d\x54\x89\x00\xb2\xe9\x4c\x93\x68\x64\x4f\x32\x4a\xc2\x5b\x91\x2a\x35\x24\x4c\xc3\x22\x8d\x09\x13\x04\x44\x11\xad\xf8\xc9\xa5\xa9\xa6\xb5\x1e\x0f\x69\x2c\x89\xc2\x03\xae\x17\x53\xb9\xd9\x93\x55\x17\x10\x2a\xcb\x4a\xb3\x92\x6f\x0a\x16\xa0\x04\xf6\x52\x38\x2f\x8b\x24\x08\x3d\xdd\x8e\xa2\xd4\xe6\x81\xc9\xbd\xc1\x60\x50\x76\x2d\x68\x9c\x5f\x30\x94\x03\xc7\x45\xd6\xba\x78\xad\x8a\x30\xb2\x5a\x8d\x70\x0f\xfc\xce\x08\x5a\xe0\x19\xe8\x93\xba\x67\x7d\x28\x0c\xe0\x5e\xe8\x08\x76\x12\x73\xa6\xe1\xa2\x23\x18\x26\xfc\x21\x31\x82\xef\xb7\x0d\x24\x98\xc2\xf3\x60\x27\xd0\x49\xc2\x06\xbd\x6b\x2f\x80\x59\xb3\x43\xb0\x5c\x29\x69\xea\x1c\x5b\x64\x10\xb1\x43\xb0\x52\x59\x96\x8d\x12\x46\x62\x75\xf9\x7e\x86\x4e\x05\xfe\x1e\xf1\xa5\x06\xd0\x14\x81\x1c\x1b\xa0\x02\xb6\xbb\x4e\x27\x62\xe5\xfb\x5b\x44\x4c\xb6\x1a\x92\xb8\x16\xd7\xe5\x15\x10\xf8\x44\x0d\x97\x59\x22\xb8\x1d\x1c\x49\x74\x20\xee\x6c\x5a\xab\x29\x86\x6d\x5b\x95\x9c\x39\x8c\xf6\xc3\xac\x82\x98\x39\xf5\xb9\x44\xe2\x0e\x2c\x60\xd1\x11\x6e\x38\x46\x62\x95\x6c\x14\xc6\x06\x40\x59\xee\x48\x44\xcc\x92\xb4\xb7\x80\x05\x1a\xe4\xa2\x74\x39\xae\xd0\x73\x54\x59\x43\x95\x81\x1b\x2c\x31\x50\x59\xa3\x34\x00\x7a\x39\x08\xf0\x07\x50\xd5\x4b\x65\x67\x12\x72\x3c\x0b\x5a\x00\x01\x63\x0d\xb1\xc9\xc7\x80\x08\x2a\x10\xec\xb8\xca\x25\x10\x52\x5c\xfe\x84\x78\x09\xa9\x27\xab\x65\xc0\xbd\x68\x66\x93\xa9\xd2\x97\x20\x4a\x14\x67\xb3\x2a\xc1\x61\x74\x11\x84\xaf\x19\x42\x02\xdd\xaa\xf9\x45\x49\x64\x2e\x39\x76\x9c\xaf\xa3\x3f\x49\xa7\x26\x66\x25\xc8\x25\x53\xd1\xf3\xe9\x81\x74\x18\xd2\x63\x76\x23\x73\xb2\x8d\xa5\x47\xae\x94\xc5\xee\xc7\x48\x5a\x56\x88\x68\xa8\x30\x13\xd1\x44\x62\xba\xb2\x0a\xf6\x6e\xa2\xc2\x15\xc6\x6d\x59\x1b\x7b\x41\x50\x90\xf2\x90\xfd\x15\x64\xf4\x44\x48\x3b\xc2\xf2\x72\x5b\xcd\x48\x88\x61\x19\xe8\x88\x56\xe3\x9a\xa6\x25\xa7\x23\x96\x72\x2e\xe9\xea\x22\x17\x02\x7a\x02\xd4\xd6\xd8\x90\x71\x1c\x0f\x5c\x12\xa2\xd8\x18\x23\x30\x6c\x86\x28\x76\xf7\xd3\x44\xee\x6e\x2e\x51\xb8\xcb\x84\xbe\x43\x16\xa3\x3f\x50\x45\x5c\x31\x0b\x09\x29\x29\x0a\x20\x48\xa7\x4a\x68\x1f\x3a\xdc\x28\x2c\x22\xc1\x95\xc4\xda\x68\xaa\x1c\xdd\x21\x64\x42\x88\x12\x21\x30\x15\x55\x25\x90\xe2\xbf\x8a\xa0\x1e\xde\x91\x42\xa5\x87\x12\x98\xa8\x0f\x4b\x7a\x45\xc1\xb0\x47\x59\x19\xb6\x2d\x18\x29\x3c\x05\xbc\x31\xa1\x28\x63\x52\xd2\x65\x26\xc9\x40\x2d\x40\x63\x43\x41\x8d\x37\x1c\x64\xf0\x21\x07\xed\xc0\xac\x4f\x1a\x65\xe0\x42\x05\x5a\xae\x43\x6c\xb6\xab\x6b\xbc\x37\xa7\x03\x30\x1e\x74\x31\xd5\x97\xe7\x39\x1a\x96\xa7\x88\x14\x0a\xc8\xb2\xff\x1f\x74\xaa\x6e\xe1\xfa\x4b\x29\x62\xc0\x8d\x11\xfb\xba\x42\x8d\xa7\x35\x05\xd9\x4f\x1c\x03\xa5\x0a\x4a\xd1\x08\x85\xd2\x40\xe5\x72\xb9\xb6\x62\x41\x3c\x56\x1a\x2b\xb8\x4b\x43\xff\xed\x28\x84\x4a\xaa\xc3\x88\x05\x03\x61\x1f\xb3\x05\x79\xd7\x70\x6f\xf2\xcc\xf4\x11\x22\x5d\xe3\x12\x14\xc8\x82\xcc\x16\xcb\x8c\x0f\x13\x57\xcf\x40\x03\x6f\x16\x55\x12\x25\xa2\x82\xad\x47\x04\xa7\x89\xf9\xf9\x78\x0b\x06\x40\x07\x66\xb0\x12\x06\x83\x1e\x9c\x22\x3a\x60\x9d\xb1\x54\x73\x00\x02\x4f\x17\x33\xa4\x88\xda\xfc\xb4\x93\xd4\x89\xa1\x91\xcf\x5c\x61\x12\x8d\x37\xf9\x39\x05\x92\xd8\x14\x0e\xa8\x31\x2a\x97\x02\xf4\xad\x2e\x87\xac\xc6\x57\x2b\x89\x78\x12\x8d\x95\x11\x1d\x66\x32\x4a\x4a\xef\xe7\x98\x61\x43\xd3\xcc\xdb\xe8\x79\x79\x62\xc8\x81\x35\xdc\xe2\x6a\x4a\x33\xda\x44\xff\x20\x4c\x89\xa9\xf2\x41\x28\x34\x05\x10\x32\x8f\x97\x5a\x22\x69\x6c\x7b\x5d\xf2\xe3\x74\x94\x21\x6d\x0a\xb0\x57\xdc\xef\xcc\x4c\x51\x33\x53\x68\x03\x9e\xaa\x80\x9f\x70\xc8\x42\x60\x2f\x3c\x8b\x22\x66\x84\xf0\xce\x22\x9e\x01\x5c\x6c\x8b\xcd\x7d\xd9\x16\x42\x72\x50\x40\x27\xf1\xfe\x8f\x11\x66\x06\x65\x8d\x3a\xb1\x8b\xd2\x8f\xc2\x8c\x77\x90\xa5\xcd\x1c\x43\x94\xab\x88\x6e\xce\xfa\x43\x89\x96\x55\x82\x43\x5f\x3c\x8d\x61\xfc\x15\x0f\xea\x16\xc6\x90\x58\xde\x2a\xeb\x95\x65\x49\x51\x24\x52\xd7\xca\x5b\xf2\x8e\x9e\xa1\x9a\xb3\x70\x73\xec\x1d\xc0\x71\x4f\x48\xea\x58\xc8\xda\xb8\x69\x75\x01\x73\x5f\x6f\x6f\x92\xbb\xd5\x64\x10\xc0\x4c\x74\x1d\xa0\x50\x31\x83\x48\x82\x39\xde\xe5\x2d\x86\x10\x79\x9c\x23\x33\x6c\x3e\x6b\xbb\xc3\x2f\xab\x12\xc7\x35\x41\x86\x78\x8d\x92\x19\xaf\x43\x2b\x90\xaa\xd5\xbc\x40\xb9\xf4\xc2\xa1\x98\x4f\xce\x57\x01\x05\x7b\x2a\xb3\x14\xea\x41\xb4\x01\x53\x94\xa1\xca\x03\x41\x3b\x21\x84\xee\xe1\xb4\xfd\x0e\x44\x1c\xe5\x1a\xbc\x9b\x16\x9a\xe0\x2e\x05\x3a\x7c\x38\x8c\x06\xb0\x4e\x2a\x14\x10\x6e\x22\xce\x30\xe6\x11\x5a\x1c\xb0\x7b\x61\x0e\xb1\xd3\xe8\xfb\x07\xbc\x35\x1c\xcd\x1a\x76\xb0\xe8\x0f\xc7\x17\x69\xb4\xd4\x6d\x52\x8b\xe0\x58\x77\x02\x4b\x26\x2f\x93\x4d\x40\x58\x06\x5d\x13\x4b\x38\x14\xe4\x66\x76\xa0\x77\x02\x44\xf6\x19\xa2\x61\x64\x2d\x50\xb0\xce\x89\x17\x4e\x5f\x44\xb2\x21\x14\x58\x02\xb9\xd4\x0c\x67\x5c\x14\x46\xa4\x96\xe8\x8a\x13\x08\xb0\xea\xb4\x26\xe2\x09\x14\x3d\x1e\x04\x18\x4b\xe6\x71\x41\xdc\x10\x41\x73\x0e\x43\x83\x10\x88\x62\x02\x0a\xc5\x55\x31\xaa\x0b\x4a\x22\xd3\x21\x8e\xba\x4f\x58\xd0\x27\xb6\xc6\xfa\x60\x69\xc6\x11\x60\x43\x62\x22\x23\x8b\x71\x58\xa5\x29\x4d\x12\xa7\x80\xb0\x34\xc0\xf0\x04\xac\x10\x5d\x67\xd8\x98\x7f\xee\xff\x63\xaa\x88\x88\x71\xc4\x01\x0c\x3c\x11\x03\xc1\xd4\xc3\x2a\x44\x50\x50\xa1\xa0\x52\x0c\xca\x64\x06\x09\x01\xd3\xd6\x86\x33\x3c\x69\x86\x20\xa8\x78\x26\x20\x08\xb1\x81\xa4\x8a\x9a\x43\x42\x0c\xea\x14\x16\x34\x81\xc4\xa0\xcc\x82\xa4\x10\x8e\x3f\x01\x8f\xa1\x87\x4d\xbb\x6d\x56\xc0\x82\x20\x1f\x02\x24\x1d\x60\x58\x3a\x71\x09\xf8\x12\x55\x78\x0c\x76\x00\xb4\x01\x61\x2a\x59\xa2\x8f\xf5\x88\x12\x80\xce\x6e\x00\x00\xc3\x9d\xfa\x21\x7d\x99\x1e\xa7\x11\xf0\xfa\x8c\xa0\x00\x19\xf4\x00\xc0\x01\xc0\x37\xd1\xd0\xdc\xbf\x20\xb0\x13\x5c\xff\x35\x19\xed\x6b\xd5\x20\x0c\x53\x80\xd4\x7f\x08\x25\x43\x64\xd9\x51\xf4\x1a\xf9\x59\x4f\x92\x3e\x85\x20\xec\xf9\x47\x83\xf4\x77\x6c\x9c\x49\xea\x20\x79\xae\x82\x88\x21\x3c\x4d\x41\x5b\x9f\xa5\xcb\xf1\x3b\x36\x4c\x72\xf1\x39\x60\x97\x3e\xf6\xa3\xa6\x33\x05\x6e\xf5\xdf\xb4\xa2\xfc\x08\x02\xdf\x68\x1e\x15\xf9\x64\x69\x67\xe4\x91\x49\xf1\x57\x6b\x92\xe4\x46\x86\x66\x74\x2e\x98\x54\x1a\x4b\xa3\x5d\x67\xeb\xf9\x03\x33\xfd\x1b\x6f\x28\xfc\x42\xb8\xb0\x22\xb8\x64\x68\x10\x65\xce\xfd\xc8\x10\xb8\xe6\xdc\xe9\x3b\xf4\x91\x7d\x59\x14\x22\x6a\x57\xa5\x55\xe8\xeb\x5f\xd1\x0c\xa7\xe8\x00\x0a\x8e\x55\x45\xea\x80\xa0\x22\x5d\x66\x5b\xca\x05\xa4\xda\xfc\x0f\x47\xd9\xbf\x0d\x69\xf5\x8f\x7e\x24\x95\xdc\xb5\x4a\xde\xa8\x09\x1d\x8f\x73\x8d\x59\xe0\x3d\x08\xe5\xa8\x1b\x8e\x19\x10\x12\x38\x66\x21\x5f\xba\xb3\x70\xee\xe7\x0c\xb4\xb9\x23\x12\x7e\x89\x72\x3f\xd0\xd1\x8d\xd8\x84\x21\x7b\xa2\x07\x5c\x29\x4c\x3b\xeb\x9c\x5b\xb1\xb9\xe9\xbb\x31\xb7\x74\xc0\x45\xcb\xf4\x30\x0d\x13\x4c\xcf\x33\xce\x59\xe4\x7f\x02\x60\x25\x66\x9f\x87\xdf\x12\x11\x0a\xdf\x32\x28\xf8\x28\x38\x5b\xb9\xe0\x01\x9a\x5c\x66\xa9\x78\xa9\x05\x8c\xe2\x7c\xc4\x52\x71\x5c\xa2\xbd\x64\x77\x0d\xdb\x0d\x77\xf1\x40\x48\x17\xbc\x55\xbe\x00\x4e\x5e\x24\xb3\xe0\xf8\x2c\x21\x54\xe5\xde\xb0\x85\x57\x46\xcc\x25\x54\x6a\x72\xb7\x8c\x52\xda\x84\x96\xf0\x8d\x6d\xb7\xa5\x13\x46\x82\x82\xaf\x45\x0f\x02\xc3\xe0\x11\x89\xe4\xc5\x1d\xb7\x4a\xd1\x95\x61\x34\x69\x82\x3f\x17\xef\xc0\x8e\x11\xec\x26\x04\xe6\x3e\x94\xbd\x5e\xf6\x0e\x18\xfe\xc1\x80\x5e\x8e\x0f\xbb\x40\xbb\x6f\x45\xa3\x67\xa0\x6e\xcd\x76\xad\x76\xa4\x5b\x50\x55\x98\x02\xcd\x2b\xd9\x85\x50\x10\xa4\x9b\x30\x92\x99\x68\xec\xd5\x5f\xe1\x85\xb6\x03\x46\xc4\x23\xd8\x8e\x5c\xd8\xb9\x42\x78\x87\xd8\xb0\x03\xaf\x6b\x98\xb0\x53\x73\xb4\x0f\x76\x00\x25\x49\x80\x2c\xec\xdd\x81\xa4\xe6\x2c\x02\x04\x07\x6c\x19\x80\x39\x0a\x0c\xe0\xe0\x4f\x92\xb5\x5a\x2f\x80\xd1\x23\x06\xb9\x61\x83\x04\x0c\xf6\x18\x61\x1b\x75\x21\x01\xad\x59\xaa\xa8\x20\x5e\xd7\x66\x58\x43\x5f\x13\x42\xc8\xc7\x0c\x21\x47\xf7\x36\x46\x02\xaa\x05\xc9\xa1\x02\xae\x8c\x37\x86\x6c\x57\x75\x1a\xb4\x2a\x4c\x2e\x87\xd2\x8b\x4c\x98\x27\x0d\x7c\x4e\x4c\xfd\xe1\xfd\x9d\xc8\xc9\x9f\x49\x55\x02\xb4\xe4\xc7\x4a\xb7\x36\x3e\x12\xf0\x63\x0d\xd1\x05\xb5\x86\x4f\xd8\x7e\x04\x64\xe7\x39\x2f\x9f\x27\x5a\x68\x64\x3a\x2c\x7e\x2d\xf5\x67\xb6\x0a\x19\x00\x21\xa5\x4b\x2e\x76\xc7\x91\x1d\xbe\x8c\x6b\x44\x8a\x50\xe8\xca\xa5\x68\xc1\x17\xa4\x21\x85\x9e\x1f\x98\xc6\xab\x2b\xa1\x0a\xa6\xe3\x05\xb8\x47\x6f\x0a\x34\x93\x04\x08\xf7\x4a\xdc\x34\xac\x25\x59\xc7\x06\xc2\x53\xae\x98\x14\x22\x11\x42\x3a\xea\x60\x7b\x1d\xa9\x2a\x30\xc6\x1c\xb6\x8c\x6b\xc8\xc9\xd1\x03\xb9\x6e\x62\x03\x30\x75\x0a\xe1\x16\x71\x18\x62\x86\x41\x7d\x89\xcf\xd9\x5a\x3c\x6b\x70\x44\x90\x58\x19\x1f\x4a\xe1\x05\x04\xc4\xe3\xb6\x83\x46\x1f\xdd\x56\x06\xd0\xcd\xa7\xb1\x08\x20\xae\x61\x19\xe8\x58\x8b\x4b\x2b\x5c\xcc\x18\x75\x43\x5a\xe6\x60\xc3\x9a\x1d\xab\x08\x83\x0d\x68\x6c\xb2\xbe\xec\xb5\xb2\x08\xeb\x33\xf4\x32\x81\xb4\x92\xe0\x95\x9c\x47\x89\xf2\x14\xc1\xb0\xd3\xa5\x6a\xf9\x85\xb3\xc4\x2a\x9f\x51\x1d\x62\x73\xb6\xc2\x59\xdb\x69\x31\xb5\x1e\x05\xf3\x41\x9f\xcb\x00\xbc\x67\x68\x7a\x8f\x98\xd6\x9c\xb3\x5e\x9d\x35\x55\xaa\x35\xb9\xb1\x9d\xd6\x11\xa3\xd8\x72\xff\x01\x0c\x73\x28\xe0\x59\xfa\xcc\x09\x30\x17\x33\x01\x10\x4a\xab\x2a\x18\x2a\xc1\xab\xa2\x6a\x58\xa8\x64\xa3\xa8\x69\x10\x18\x32\x3d\x41\x83\xa0\x31\x00\x9a\x22\x6b\x13\x91\xcc\xd7\xa1\x55\xd4\x58\x46\x9d\xbc\x1f\x86\xf2\x12\x17\x09\x83\xf5\x38\x5b\x25\x3d\x07\xc9\x80\x23\x70\x4b\x46\x61\x1e\x74\x21\x8f\x4c\xe7\x85\xe4\x18\x11\x97\x47\xf1\x7d\xb6\xbe\x8b\xb9\x1e\x10\x79\x1a\xb4\x64\x6a\x02\xa6\x61\xa3\xd6\x44\x01\x9d\xc8\x46\x18\xf2\x7b\x3a\xc6\xec\x95\x9c\x09\x0f\x9d\x83\x21\x1d\x8e\xcd\x91\xc5\x32\xa4\x09\x4c\x84\x90\x26\x60\x0a\xe8\x78\xb6\x8c\xc4\xd4\xb2\x7f\x68\x4d\x23\x7f\x00\x04\x50\xb8\xe1\xe5\xe6\x91\x01\x03\x07\x44\x92\xe1\xc9\x00\x8c\x10\xbe\x13\x49\x21\xdc\x47\x56\x90\xec\x12\x40\x0f\xbb\xa0\x90\x49\x90\x9f\x75\x43\x6f\xd3\x98\xa4\x60\x54\x0b\x1e\xd1\x53\x11\x9c\x3f\x23\xf3\x8d\x1e\x19\x1b\x1d\x13\x31\x15\x93\x83\x7b\x36\xd0\xd0\x85\xb8\x92\x30\x00\xa3\xc5\xa7\xc7\x00\x70\x1a\x9e\x68\x65\xcc\x29\xf2\xc3\x66\x9a\xd8\x56\xa4\x29\xbe\x20\xaf\xa1\xf5\xf8\x9c\xb5\xc9\xdf\x4d\x64\x28\x0e\x05\x61\x03\xae\xe4\xa3\x77\x9b\x11\xd0\xcd\x55\x18\x86\xc0\x0d\x85\x93\x10\x43\xf1\x84\xe7\x42\x52\xb1\xb4\xda\x76\x0e\xc6\x0e\x11\x25\xbe\xa2\x50\x42\x8e\x66\x88\xf5\x81\xb3\x29\x1f\x8d\xb1\x60\xa2\x55\x4a\xf0\x84\xdd\xf9\x02\xb6\x9b\x64\x11\xa2\xa6\x69\x04\xa6\x4e\x40\x0f\xf1\x0e\xa8\x34\x08\x64\x7f\x62\xa7\x73\x6f\xfd\x90\x1a\x25\x40\xfd\x90\x19\xfc\x6f\x94\x3a\x4e\x92\x59\x94\xc4\x87\x20\x6e\xa5\xb9\x0c\xe5\x89\xe3\x50\xe7\xb4\x2f\xc9\x06\xfe\x17\xe6\x23\x19\x35\x46\x8a\x28\x91\x0c\x88\xfc\x45\x23\x6c\x25\x7e\x37\x6a\x0f\x15\x84\xbe\x6e\x33\x18\xbe\x11\x70\x08\x9a\xa7\x7d\x05\x12\x60\x48\x0d\x28\x23\xa8\x88\x86\x75\x80\x8e\xfd\xb3\xc4\x7a\x08\xe1\x51\x2e\x2f\x04\x72\x04\x41\xa3\xd7\x04\x74\x0d\x97\x21\x07\x02\x3a\x9a\x26\xe8\x6a\x80\x9d\xf9\xd2\xa0\xe9\x01\x3b\xb4\x6c\x10\x1b\x40\x9d\x3f\x1a\x08\xc8\x60\x2f\xb7\x47\x71\xfc\xac\x40\x3f\x77\x10\x60\xc4\x96\x36\xc6\x1c\xc6\x34\x0c\x60\xa3\xab\x16\xf7\xfd\xdd\x64\x46\x23\xd0\x15\xd0\xa9\x02\x5b\xd1\x1b\x10\x97\xe7\xce\x56\x71\x22\x0f\x21\xe3\x08\x41\x3c\xc6\x87\x98\xc2\x83\xc3\x17\x81\x30\x03\x00\x6b\x3c\xa2\x17\x61\xff\x04\x24\xb2\x5f\xb7\x10\xec\x65\x43\x8a\x68\x77\x55\x3b\xb9\x44\xba\xed\x2d\xbb\x83\xb0\x2f\x74\x91\x6b\x44\x41\x82\x25\xc9\x18\x40\x0b\x89\x04\x5f\xf2\x01\x76\xff\x2f\x8a\x6b\x2b\xc8\x34\x0b\xf1\x06\x70\xc0\x11\x75\x58\x45\x2c\x31\x29\x92\x38\xa4\x16\x82\x8a\xf8\xdf\xc9\xc2\xa4\x57\xcd\x28\x85\x20\x55\x5e\x88\x19\xc9\xe4\x33\x21\x46\x92\x8c\xc1\x0b\x90\x5f\x32\xde\x6d\x43\x00\xbe\xea\xb1\x82\x74\x02\xee\x64\x4b\xa6\x10\x4e\x81\xc0\x21\x29\x93\x90\x08\x50\x9d\x0e\x4e\x1a\xaf\x42\x26\x59\x37\xc1\x76\xcd\x38\x25\x72\x3e\xc2\x5b\x50\x0b\x2d\x53\xb9\x44\x4a\xd3\x95\x68\x14\xa2\x02\x40\x20\xa3\x40\x4c\x11\x49\x81\x21\x54\x50\x46\x9b\x81\xba\x40\x1d\x36\x1c\x21\x16\xe3\x51\x4e\x26\x83\x04\xd8\x21\xe0\x6c\x0e\x28\x17\xc6\x04\x40\xe1\xbe\xb6\x32\x71\x77\xc7\x38\x48\xa9\xdb\xe3\x11\x26\xa2\xe2\x64\x24\xba\xee\x34\x0e\x50\xc4\xba\x6f\x04\x95\x90\xdb\x85\x7d\xb9\x91\x9a\x1d\x20\x8e\xcc\x22\x63\x52\x38\x4f\x37\x14\x0b\x1a\x2a\xfe\xfb\x61\xaa\x9f\xa0\x2c\x26\xc2\x20\x53\x07\xc3\x81\x34\x57\x6f\x2d\xbc\x85\xfc\x38\xfb\xf0\xcb\x31\x12\x47\x3f\x12\xc4\x75\xe8\xd9\x62\xea\x88\xce\x3f\xd1\x3d\xc0\xd3\x0c\x33\xe5\x2f\xbb\x8d\x39\x06\x5a\x00\xf0\x8e\x63\x3b\x0e\x49\xf1\x57\xb3\x07\x3b\xf0\xbc\x82\xd9\xec\xca\x85\xc8\x5b\xc2\x3c\xe3\x13\xc9\x77\x26\x79\x05\x8c\x79\xe2\xaf\x93\xa1\x56\x81\x8e\x0a\x31\xf4\x06\x30\x1a\xfd\xe6\x61\xe9\x27\x42\xac\x4a\x04\x87\x61\x19\xb4\xdd\x4b\xd5\x8e\x4d\xaa\x3c\xcc\x0b\x42\x3d\xdf\xa4\xea\xf8\x58\xee\xfd\xef\x17\x77\xa5\x75\x7d\x68\xaf\xcc\xdb\xd1\x6d\xbf\xd7\xe6\x64\x5a\x6f\x76\x5b\xda\x70\x88\x14\x05\x20\x35\x06\x88\x24\x81\x64\x2c\x74\xe8\x72\xf8\x27\xc3\x52\x1e\xe0\x41\x0b\x14\x13\x30\x52\x84\x64\x26\xe1\xe7\x07\xc8\x35\x42\x8d\xf2\x0f\x0c\x3e\xd9\xf4\xef\x8a\x7d\x13\xf2\x3d\x33\x8f\xf9\xeb\x37\x8b\xdf\xe0\xfc\xc7\x8d\xde\x83\x79\x41\xe2\x27\xd8\x9f\x6a\x7e\xc1\xf1\x37\xe1\x3c\x66\xea\x66\x98\x3a\xe7\xe1\x09\xb7\x96\x9f\x22\x7a\xe5\xe9\x07\x99\x1e\x29\x79\x45\xf3\x8e\xb9\xe4\x55\x7a\xe1\xfb\x37\x83\xf1\xeb\x5c\xf8\x16\x31\x46\x7c\x4f\xd4\xfb\x7b\xa9\x8e\x2b\x70\x8d\xd8\x07\x43\x1d\x9b\x70\x88\xee\xbb\xb6\x6d\xde\x19\xe1\xdc\xf8\x76\x1d\xd9\x77\x72\x1c\x28\x3b\xbc\xea\x0b\x68\xa3\x5b\x07\x6c\xdc\x06\xb6\x80\x38\x8a\xd1\x72\xee\x07\xef\xb6\xe9\x9d\xbd\xdc\x33\xf5\xb1\x03\x6c\xec\x3c\x98\x8c\x58\xdd\x5a\xfe\x0c\x8a\x60\x96\x23\x15\x08\x0e\xe6\x3a\x14\x76\xc4\xee\xf3\x79\x8d\x89\x36\xea\xd1\xe5\xb1\x6b\x88\xa0\xa1\xac\x4d\x4d\xac\x5b\xb2\x35\x43\x6c\xd7\xa7\xab\x55\xce\x21\xd6\xf7\x07\x5f\x2b\x59\xe7\x2e\xa2\xc9\xfa\xcc\x8d\x13\xb4\xac\xed\xd4\xd8\x61\xb1\xd3\x65\x56\xa0\xb4\x27\x9c\x44\x6d\xc9\xee\x54\x23\x8a\x7f\x2c\x22\x00\x0d\x0a\x5a\xfe\x35\x55\x68\x18\xd1\x71\xaa\x8b\x2c\xe7\x56\x84\x10\x93\x78\x21\x10\x17\x65\xd9\x47\x98\x37\xa5\x95\xae\x56\xca\xa4\xd8\x59\x8b\xcc\x4c\xb3\xd8\x36\x76\xc0\xd9\xb3\xd2\xdc\x58\x8a\x20\xb6\x1f\xd2\xd7\x07\xfd\x6f\x59\x88\x60\xd2\xcd\x7b\x00\xd6\x00\x61\xf6\x95\x69\x9d\xd5\xf9\xd6\xae\x0f\xd5\x0b\x5f\x39\x7b\x60\xdc\x94\x28\xbf\x50\xdd\xd2\x0b\x94\x0d\xca\x51\x10\x4a\x0b\xbe\xf3\x0b\xf4\x7f\xde\x7b\x13\x30\xf0\x5f\xaa\x75\xcf\xae\x29\x79\x96\xed\x5a\x35\x62\xd5\xb7\x57\xde\xbc\x85\xc7\x4b\x13\x21\x43\xe3\x0f\x41\x51\x66\x4a\xdc\xf8\xcb\xd3\xda\x93\x27\x85\x4d\x7f\xe3\x6f\x4c\x99\x75\x3c\x87\x67\xf1\xb6\xb1\x53\x90\x66\x66\x2d\x4f\x2a\x4d\x56\xb2\xbd\x55\x1e\xab\x35\x4a\x29\x3d\x51\x8a\x9b\x57\x9a\xa1\x64\x2f\x33\x31\x76\x9b\x33\x92\xb6\x55\x12\xa1\xd5\x3c\x5d\x59\x9c\xcd\x4c\xb5\x0a\x55\xda\xac\x74\x8f\x33\xbb\x92\xe4\xa8\x41\xa4\x98\x8c\xb5\x4c\x30\x8c\x3c\x9a\xd2\x6b\xe9\xd8\x26\x0e\x9c\x14\x8c\x13\x0d\x48\x0d\x2f\xc4\x94\x52\x54\x4c\x6d\x2b\x54\x25\x10\x58\x8d\x26\x67\xca\xd0\x66\x99\xd9\xdd\xe1\x23\x34\xa3\x27\x38\x44\x5e\x2f\x6c\xf3\x5b\x28\x8d\x9a\x52\x2b\x80\x59\xa4\x61\x09\x12\xdc\xd2\x36\xf4\x33\x58\x89\x38\xe2\x33\x58\xc1\xbb\x9a\xc8\xb6\x8a\xbb\x35\x92\x96\x7b\xbc\xd6\x04\xec\xb9\xad\x88\xb5\xe3\x73\x5b\x69\x1b\x35\xa1\xe2\x03\x7c\xd6\xab\x88\x32\xcd\x7a\x48\xb7\xbc\xd7\x06\x51\xb4\xe6\xb3\x1b\x45\x0f\xe6\x97\x9a\x84\x49\xdd\x29\x9a\x87\xc6\xb3\x51\x06\x36\x0c\x99\xa8\x0a\xdb\xcd\x40\x9c\xe0\x10\xcc\xd9\x68\xf7\xa0\x4b\x42\x8e\x8b\x01\x00\x25\x17\xb6\x49\xcc\xd8\xf4\x67\x33\x63\xca\x5c\xcd\x89\x99\xeb\x6d\x3e\x59\xa0\x55\x03\x68\x70\x42\x72\x1d\x90\x4a\x88\xa4\x3c\xa1\x4d\x1a\x68\xf4\x66\x7c\xcf\x3d\x12\xe8\xf1\x44\x2a\x1d\x91\x42\x88\xf3\x86\x4f\x6a\x7a\x03\xc3\x9e\x60\xfa\x0e\x96\x3b\x98\xec\x33\x8a\x4f\xd0\x7c\x53\x8e\x0e\x8f\x33\x39\x9e\x06\x39\xf3\x3d\xb3\xe9\x07\x3e\x67\xa6\x71\x69\xe1\x07\x01\x9d\xde\x72\x79\xca\x07\x8d\x9d\x54\x64\x81\x8a\x26\x13\x98\xa2\x69\xc3\x7a\x98\xb0\x65\xc1\xb6\x06\x06\x9b\xe8\xd7\x66\x61\x18\xb4\x62\xd9\x8a\x26\x7a\x98\xee\x64\x81\xb7\xa6\xa3\x99\x54\x64\x39\x98\x66\x23\x1a\xb8\x6d\x21\xa2\xa6\x59\x98\xe0\xcf\x23\x2f\xcc\xcc\x34\x20\xd7\x53\x7b\x0b\x6d\x2c\xf8\xa6\x45\x11\x96\xe8\x57\xf9\x74\xa5\x01\x4b\xbc\x2e\xd0\xa2\xc9\x6e\xa5\x79\x16\xf6\x5b\xf9\x75\xc5\x0d\x8b\xb7\x2c\xa0\xb7\x92\xe9\x0b\x97\x2f\xd8\xbf\x62\x8a\x05\xee\x17\xa6\x51\xcc\xb5\x52\x6a\xc9\xb4\x24\x24\x96\xd2\x0e\x64\x88\xc8\x6e\x92\x42\x24\xa6\x4c\x70\x8a\xb9\x24\x42\x58\x24\x72\xc9\x0f\x92\x44\x21\xb0\x30\x73\x31\x06\x2e\x73\x31\x67\x61\x66\x63\x0b\xde\x48\x7c\x48\xe6\x62\x6c\x25\xe6\x64\x8a\x8f\xcc\xc8\xc0\x14\x67\x1e\x7e\x7e\x66\x26\xc1\x41\x2d\xc2\x4c\x6d\x88\x8f\x2b\x70\x8b\x9f\x91\x9c\x7b\xdd\xb3\xa3\x32\x02\x9b\x1f\xf6\x19\xfc\x56\xeb\xf5\x3c\xf9\x06\x79\xe8\xcc\xcd\x02\x4c\x6d\x32\x16\x31\x52\xfe\x58\xb1\x3e\x9c\x63\xa2\x62\x75\x2a\x1f\xc4\x8e\x63\x02\xce\x03\x70\x62\x03\xa8\x21\xfa\x5e\x74\xd2\x0f\x3c\xc3\xce\x16\x63\x4a\x0e\x39\x49\x46\xbb\x53\xbc\xb6\x51\xfe\x99\x65\x15\xfa\x75\x4e\xc6\xa5\x11\x04\x9e\x99\xb9\x1a\xbd\x45\xe5\x20\x5a\xeb\x13\x27\x63\x1c\xf4\x4c\x31\x26\xba\x23\x28\xdb\x0c\x81\x63\x3a\x97\x01\x3b\xbe\x0c\x82\xc7\x91\x21\xe4\x99\xc0\x02\xe9\x64\x27\x02\x6b\x99\xc4\xb0\x6a\x3e\x84\x63\x82\x14\x91\xe7\xcc\xa4\xc8\x75\xa4\xcb\x0b\x30\xc8\x3b\x5b\x07\x6c\x99\x28\xda\x61\x1c\xa0\xd8\xaf\x8a\xfe\xdb\x78\x43\xca\xe0\x5f\xeb\x81\x75\xa4\xbb\x17\x45\x28\x16\x92\x91\xfd\xeb\xe2\x52\x9f\xb0\xc5\x01\xdf\xd9\xe9\x8f\x19\xb1\xaf\xb4\x1c\xcf\x72\x1c\x63\x70\x83\x5a\x8d\xd7\x74\x06\xa6\x29\xf6\xff\x6c\xdb\xcc\x52\x96\x59\x25\xa1\x86\x00\x6d\x1f\xb9\x9d\x92\x5b\x3c\x27\x58\x39\x2b\xba\xca\xa9\x0c\x4c\x83\xc8\xd0\xf1\x52\x49\x30\x10\xbd\xa3\xe9\x5a\x54\xb8\x34\x73\x9b\x88\xbd\xa2\x3e\x1e\xb2\x0d\x52\x9f\x3e\x84\x4c\xcb\x77\x46\xd3\x90\x0a\x40\x65\x2a\x56\x42\x0e\x33\xe7\xb8\xf1\xb7\x0c\x14\x14\xae\xb9\xe0\x99\x72\x04\x09\x4c\xe2\x4e\xa4\x02\xdf\xc4\x40\x59\x5b\x82\x08\x40\x02\x5c\xc0\x04\x6f\xfa\xf3\x73\x5e\xe4\x04\x0a\x5b\x02\x3a\x59\x93\xd8\x95\x3d\x88\x08\x57\x0c\xa7\x51\x01\x1d\xc0\x04\x76\xc8\x11\xdb\x18\x10\x5a\x38\x10\x59\x80\x21\x1f\x1e\x92\xd7\xca\x5b\x78\x8b\x03\x3a\x47\x03\x3a\x3b\x03\x1a\x26\xf2\x74\x45\xe7\xd0\xd7\x9f\x42\x5e\x7c\xff\x79\xf3\xed\xe4\xe7\xcb\xc9\xcf\x57\x93\x9d\xaf\x27\x3a\xde\x4a\x74\xbc\xb9\xca\xe2\xa6\x9b\x8a\x99\x6e\x2a\x63\xb8\xa9\x76\xe3\x19\x62\xe2\xe5\x5b\x8b\x94\xae\x2e\x51\xb8\xb9\x42\xe3\x19\x3a\xe2\x52\xcd\xa4\xa5\x9b\x49\x4a\xd6\x91\xca\x76\x9a\x94\xac\x35\x28\xd8\x74\xac\x79\xc2\x56\x08\xa5\x4b\x00\xe5\x30\x00\xca\x49\x7c\x05\x61\xb9\x42\xc3\x72\x75\x66\xe4\x3a\xc9\x48\x35\x92\x8f\xeb\x25\x1f\xd6\x6e\x3c\xa8\xdc\x71\x51\xb8\xda\xa3\x73\x15\x46\xe6\x0a\x88\x25\xaa\x87\x4a\xf4\x90\x4a\xb4\x12\x95\x28\x25\x29\xd0\x4a\x4d\x9c\x94\x9b\x39\x29\x1a\x72\x52\x14\xe4\xa4\x09\xc9\x4a\xd3\x8b\x95\xa7\x17\x2a\xce\x3e\x54\x98\x82\x52\x98\x82\x50\x98\x82\x45\x98\x4a\x43\x98\x5c\x83\x30\xb9\x06\x62\xe3\xd9\x8b\xae\x66\x2e\xb6\x94\xba\xca\x52\x3a\xca\x52\x3a\xba\x53\xea\xb9\x4f\x84\x00\x01\x07\x80\x02\x0f\x00\x04\x1c\x00\x08\x2a\x52\x28\x26\x40\x38\x22\x42\x18\x22\x42\x1b\x98\x00\x2e\x7f\x81\x73\xfc\x57\x2f\xa2\x39\x07\xdb\xe4\x1d\x6f\x8c\x75\xce\x31\x3b\x9f\xc0\xdc\xa3\x25\x72\xf8\x1b\x56\xc9\x6d\x8c\xd5\xb6\x23\x51\xbc\x45\x46\xf1\x20\xf4\xb2\x7c\xad\x21\x1b\x0d\x7e\x51\x37\xa2\x23\x61\xef\xca\x27\xff\xc8\xd7\x58\x90\x33\x48\xe7\x20\xa8\xf1\x4a\x26\xf4\x22\x45\x2c\xf9\x61\x96\x7c\x12\xdb\x80\x4a\x37\xe8\x53\x2b\xfd\x63\xa5\x3b\xbe\x87\x2d\x7a\x58\xd7\x84\xe5\x74\x49\x36\xe4\x7f\x66\x46\x76\x64\x7d\x5a\x47\x15\x85\x41\x48\x41\x14\x25\xc9\xfb\xf2\x5a\x1b\x7c\x61\x48\x79\x0c\x8c\xda\xe5\x23\xf7\x5c\x83\xba\x94\x71\x04\x81\xe7\xc4\x5f\x28\x89\x11\x40\x78\x92\x03\x4d\x61\x8e\x32\x46\x4d\xec\x56\x8a\xd5\xb1\x34\x1e\x2d\x71\x4e\xc4\xf6\x46\xbc\x3b\x2f\xae\x4e\x22\x13\x8f\x8e\x89\xfb\xf2\x33\x01\x70\xe9\x4b\x49\x11\x26\xc6\x96\x00\x0d\x69\x83\x29\x6d\x1a\x11\x25\x09\x51\xfc\xee\x33\x40\x02\xcf\x69\x6b\x00\x94\xdc\x74\xa4\x29\x11\x23\xfd\x38\x32\x36\xf8\x21\x12\x4a\xa1\x6c\xc6\xeb\x36\xd4\x45\xef\x3f\xd9\x37\xcd\x96\x7f\x59\xd1\x87\x46\xb7\x6c\x87\x8c\x0a\xaa\x91\xba\x80\x51\x72\xf5\x08\xb5\xae\x08\xb1\x32\x12\xb4\x22\xd4\x49\x22\x9a\x08\x84\xdb\x4e\xa2\xcf\x61\x07\x89\xa4\x8b\x44\x0f\x29\x1c\x58\x1e\x29\x06\xdc\x7f\x6b\xca\x1c\x9d\x34\x06\x46\x03\xc3\x48\x00\xcb\xa1\xcf\xb9\x4d\x36\xe9\x86\xcf\x2c\xda\x24\xd8\xd2\x45\x8a\xa3\x58\x5e\x19\x8a\xa0\xd9\x31\xfd\x9a\x1f\x98\xc1\xf1\x9d\xde\x59\x25\xe1\x9c\x1d\x59\xe1\xc5\xa9\x1a\x9a\xc1\x99\x83\x98\x9b\xda\xfb\x01\xae\x37\x75\x96\x6b\x56\x66\x25\x56\x70\x3c\xa7\xd5\xaa\x51\x44\x25\x9e\x50\xb3\x3b\xfc\xc5\xac\x68\x05\xe9\x69\x64\xb6\xaf\x39\x26\x78\x26\x45\x41\x14\x26\x7f\x2f\x5a\xa8\xa2\xf9\x7a\xc2\x60\xa2\x82\xc1\xcf\xe5\xa4\x4a\x58\xa5\x50\xa5\xa8\x29\x7a\x65\x72\x2f\xca\x14\x0d\x23\xd0\x88\xc2\x4e\xe3\x1c\x78\x59\xc5\x50\x57\x38\x21\x1a\xb9\x9f\xe5\xe1\x09\x20\x80\x30\x92\x61\x1f\x0b\x27\x00\x82\xb4\x69\x65\x60\x2b\xc9\x75\x13\x8c\xda\x95\x5a\xe8\x5a\x11\xe0\x4c\x41\x9e\x7b\xfe\x16\x63\x0e\x24\x3d\x90\xe4\xf7\x6a\x76\x76\x8d\x06\x3f\xfb\x69\x36\x31\xa6\x67\x36\x2b\x25\x1d\x4a\xf7\xe0\x20\xb4\x3a\x88\x4c\xc5\xe2\xcc\x07\xb1\xb2\x85\x93\x61\x6f\x8e\x33\x9f\x3d\xe4\xd2\x85\x4d\x4b\x00\x94\x71\xfe\x52\x01\x0e\x50\x13\xa2\xb5\x6a\x16\x7e\x8b\xf2\xd5\x2b\xcc\x4d\x03\x7c\x53\x7c\xc9\xfa\x90\x85\xa9\x66\x82\x42\x72\xe4\x40\xdd\x3e\xb7\x23\x2e\x16\x06\x61\x58\x3c\xf2\xff\x15\x6f\x71\xa1\x29\x76\x31\x56\x51\xa6\xb4\x09\x02\x82\x78\xa8\x51\x16\xf4\x67\xc1\x19\x4d\x88\x51\x0b\x0e\x87\x14\x45\x28\x84\x84\xc3\x46\x34\x34\x2f\xc8\x24\x1b\x35\xdd\x32\x6f\xd3\x01\xaa\x31\x00\xa6\x4a\x92\xe6\xa0\x69\xda\x8c\x03\x20\x69\x81\x32\x31\x0f\x5d\x33\xba\x69\x0f\xdf\x82\x3e\x79\xf7\x3d\x5e\x2e\x59\xf7\x20\xa5\xe3\x42\x0e\x23\xe1\x10\xc1\xaa\x96\x96\x03\xa0\xd1\x01\x20\x14\x80\x90\x67\x81\x91\x10\x02\x7e\xd9\x96\x42\xcc\x22\xb9\x91\xf6\x6d\x0f\xf6\x2d\xf2\x24\x28\x82\xfb\x16\xfb\x4c\x4f\x93\x7d\x8a\x47\xa4\x20\xbf\x5b\xc8\x4f\x10\xf8\xfc\x89\x48\x3b\x76\xc5\x1d\x0a\xe2\xc1\x3e\xc2\xe0\xb0\x85\x09\x44\xb9\x69\x59\x54\x7b\x2c\x9e\xb5\x3c\xf9\x5b\xe6\x4a\x71\xf3\x24\x52\xfb\x93\x9a\x7d\x68\xca\x1e\x34\x13\x47\xaf\xd4\x75\xed\x1d\xd1\x30\x74\x5b\xf1\x37\x4f\x40\xcc\x3a\x99\x84\xc9\x88\x30\xa1\x86\xa7\xb4\x14\x26\x85\x6a\x78\xbc\x15\x13\x8a\x03\xe9\x3c\xb3\x51\x14\x5f\x12\x2e\x1e\xc7\x12\x87\x85\x96\x24\xfa\x8e\x89\xea\x3a\x48\x0e\x13\x44\x01\x42\x68\xbe\xa3\x91\xe4\x0d\x11\x2e\x0b\xc9\xf6\xb1\xa5\x42\x12\x9d\x6a\x78\x4c\x98\xdd\x13\x26\xa7\x52\x73\x04\xfc\xdf\x99\xd0\x20\x82\xc6\x53\x0b\xfc\x4c\x30\x63\x70\xaf\xcb\xa3\x9a\x65\x54\xae\xb1\x13\x0b\xac\x45\x46\x32\x91\x1a\xf0\xba\x44\x74\x2e\xb1\x13\x67\x0d\x5d\xea\x46\xab\x30\x3e\x95\x57\x6d\x66\xa8\xfd\xb5\x3c\x34\xe0\x5b\x82\x14\xa6\xc4\x04\x64\x49\xa9\xb7\x1c\x65\x85\x36\x5e\x49\x98\x86\x5c\x8b\xa9\x48\x6b\x8c\xdc\x09\x6b\x7f\x71\x1c\x9f\xdc\x47\x2f\xee\x03\x83\xeb\x80\xe1\xf1\xb5\x04\xef\x16\x34\x2f\x6a\x66\x1a\x57\x61\x4e\xf7\xe0\x55\xa0\x26\xb1\x9d\x39\xce\xe9\x5b\x73\x41\x5b\xf4\xf8\x27\x31\x77\x1f\x59\x31\xf8\xa5\x27\x72\xd3\x07\x46\xd2\x2a\x8d\x1a\x2d\x3a\x25\xe6\x7d\x11\x57\xce\x01\x64\x38\x54\xca\x44\x5d\xa0\xe6\xca\x9f\x02\x18\x9c\x7c\x3e\x92\xe7\x44\x48\x50\x96\x7f\x82\x0c\x90\x07\x27\x59\x29\x4c\x22\x06\xf1\x73\x02\x2b\x5b\x01\xe0\x0c\xc6\x31\xd6\x98\x08\x81\xfb\xd1\xea\x5a\x65\xed\xe1\x80\xa3\x08\x18\x9c\xe3\x45\x7c\x66\x5c\xe9\x24\x7f\x19\x1a\x79\x97\x07\x04\x96\x42\xfd\x84\xfa\x89\x64\x0f\x13\xf1\x87\x09\xf8\xa8\xe2\x45\x87\x88\x31\xdb\xe6\x3c\x09\x35\x8f\x02\x0d\x63\x83\x3d\x00\xc6\xc5\x79\x0d\x10\x0c\xe1\xf3\x63\x01\x03\x2f\x80\x81\x97\xa7\x58\x94\xb6\x05\x12\x25\xa9\x0d\x8f\xef\xf6\x0d\xdb\xc8\x1b\xac\x43\x21\x3e\xb9\x5d\x0d\x8b\xbd\x7c\xda\x37\x0c\x1b\x02\x22\x8a\xd7\xa7\x99\x61\x5e\xba\xe0\x01\x2d\x6e\x79\xcf\x46\x12\xcc\x80\x3e\x0d\x0f\xca\x87\x52\xcd\x95\x3c\xd6\x20\x0c\x93\xc4\x00\x64\x51\xe8\xbc\x3b\xc1\xfe\xf2\x07\x87\xb1\x13\xd2\x29\x67\xe3\xb2\x9f\x43\x69\x13\x84\x45\x9b\xcb\xb7\x30\x32\xf1\x22\x16\xc1\x90\x18\xd7\x6a\x13\x96\x18\xec\x9c\x22\xfc\xe5\x62\xdc\x66\x67\x1a\x2c\xbe\xba\xf3\xd3\x95\x12\x37\x96\xc8\x95\xc9\x97\x23\x04\x1d\x5e\x49\x87\x94\xcf\x6d\x5f\xda\xa3\x68\x7c\x73\x45\xe9\x02\x43\xba\xdb\x47\x7a\x60\x18\xab\xe8\x4c\x12\xae\x6a\xcf\x06\x5a\xcd\x0d\xe2\xaa\x0c\xa2\x94\xf2\x15\xc3\x4e\xe4\x04\x15\x3d\x7b\x67\x53\x97\x62\xdb\xc5\x2d\x7c\x99\x74\x7d\x08\x06\x38\x69\x2d\xeb\x0d\xc6\x2b\xed\x88\x03\x5d\xaf\xa6\x0b\xad\xf3\x80\x77\xea\x82\x44\x04\x0c\xe8\x3d\x79\x52\x9c\xef\x02\x3b\x33\xe0\xc4\x77\x96\xc0\xee\x92\x7b\x05\x5f\x26\xda\x6e\xd5\x38\xa6\x8a\x8e\x9a\xd5\x77\x08\x5f\x70\x1b\x11\x80\x0d\xdc\x64\x47\x23\x85\x87\x18\x38\x92\x30\xbe\xc7\xc7\x3e\xd1\x47\x07\x44\x48\x05\xcd\x28\x7d\x0e\x23\xc7\xa8\x7f\x75\x5b\x11\x87\x91\x6b\x1e\xc4\x65\xd6\x92\x31\x11\x45\x53\x20\x12\xe8\x10\xa2\x52\xad\x92\x42\x4c\xa1\x6c\xd0\x94\x84\x40\x72\x52\x23\x20\x3c\xcc\xc2\x41\x27\xd6\x61\x13\xa6\x69\x56\xc9\x01\x9c\xd9\xc2\xdb\x81\xa0\xfa\xc4\xd9\x33\x31\xd8\x6d\x2f\x1c\x29\x6c\x59\xc4\xf8\x7f\x92\x3e\xe0\xb6\x6e\x24\x25\x65\x31\x62\x4d\xc4\x67\x2e\xd4\x46\x77\xcc\x9c\x98\x13\x46\x86\x68\x73\x38\x22\x07\xa9\x87\x64\xd1\xcb\xa6\xc1\x04\x66\x13\x14\x32\x31\x0d\x64\x55\x0e\xdc\x42\x38\xb5\xba\x98\xe5\xe1\x93\x4b\xe5\x86\xb7\x13\xe6\xa9\x46\x0d\x93\xa8\xd1\x23\x8c\x91\x90\xb9\x22\x8b\x93\xe2\x8c\x3f\xfe\x15\xa4\x58\xb0\x78\x72\x20\xa9\x5f\x8a\x13\x45\x51\x8d\x15\x18\xa2\xb8\x21\xe0\x54\x5e\x71\x32\xee\x09\x9c\x89\x3d\xfb\x44\x75\xfb\x47\xd7\xcd\x15\x5e\x14\x3c\x99\x2a\x75\xec\x73\x7f\x72\x36\x49\x4d\xac\x95\x2a\xf6\x29\x51\x92\x39\x3d\x93\xa4\xbe\xc0\x91\xfb\x39\x1b\xb3\x8f\xfa\x99\xb0\x22\x8e\xd8\x11\x47\x0c\x08\xa3\x56\x0c\xa3\x3c\x04\x9f\x07\xd3\x51\x25\xc0\x73\x7c\x30\x45\xd6\xed\x63\xef\xf6\xc4\x29\x77\xda\x07\x4c\x81\x83\xa5\xa9\x70\xe6\x8c\x93\x47\x1f\x68\xc4\x21\x59\xa3\xac\x6f\xa5\xa3\x3d\x7f\x66\x08\x18\x13\x64\xc1\xc8\xdd\x75\x67\x75\xcd\x4c\x14\x46\x05\x0a\x85\x4c\xd8\x31\xc9\x44\x87\x82\x0a\x17\x6c\x00\xf4\xac\x8f\xa7\xe0\x87\x45\x19\x70\x51\x8e\xe5\x22\xee\x52\x0c\x30\x61\x19\x84\x12\xe2\x43\x48\x8a\x10\x4b\x8c\x47\xff\xe0\x52\xe4\x08\x58\x00\xc9\x70\x90\xe8\x5c\xab\x42\xe5\x5a\x2e\x00\xcb\x71\x59\xf7\x15\x9f\x51\x59\xb5\x15\x95\xb0\x0c\x8a\x04\x44\xe0\x44\xb9\xd6\x55\x8e\xb2\x2c\x43\x64\x58\xeb\x1a\xc6\x76\x3c\xe0\x44\xb0\xbb\x0a\xc7\xd8\x56\x3e\xc0\xb1\x3a\xfa\xc4\xeb\xea\x93\xaf\x2a\x4e\xbc\xa9\x3a\xea\xa4\xeb\xaa\x88\xab\x8a\x93\xad\xaa\x45\x5b\x50\x82\xb4\xa1\x05\x69\x42\x0a\xba\x64\x15\x64\xc8\x24\xc2\x08\x01\x26\x27\x1a\x26\x43\x1a\x26\x43\x19\x26\x43\x18\x24\x43\x13\xa4\x41\x13\x24\x2e\x21\x48\x94\x42\xf4\x8c\x88\xd2\x63\xc9\xd0\xb3\x11\x25\x23\x80\xcd\x3d\x5f\xa7\xc0\x45\x08\x04\x56\xff\xcb\x58\x8d\x3f\xf1\x11\x7e\x23\x3f\x84\x7b\xec\x91\x3d\x15\x27\xa2\xfb\xe8\xb8\x7a\x2c\xfe\x0b\x0f\x82\x2f\x82\x42\xd1\x5c\x12\x21\xb6\x24\x43\x69\x48\x86\xd2\x91\xab\x4a\x24\x36\x84\x48\x6d\x08\x90\xd9\xd1\x21\xb3\x20\x43\x65\x40\x86\xcb\xf7\xc1\x64\xec\x59\xf9\x96\x1e\x24\x5e\x24\x81\x0d\x9c\xf2\x1b\x31\xe4\x36\x63\x88\x6c\xa7\x10\xd9\x4e\x21\xb1\x1c\x43\x62\x38\x86\xc4\x71\x0d\x88\xe2\x1b\x11\xa4\x36\x0f\x9b\x4b\x26\xc2\xc1\xb0\xb0\xea\x22\xe9\x23\x48\x62\x39\x5c\x10\x34\x86\x23\x95\xc1\x03\x48\x61\xf9\x5b\xf0\x34\x86\x1d\x95\xbe\x03\x48\x6c\x26\x90\xc3\x72\xb7\xc1\xef\x49\x63\xd0\x57\xf4\x16\x1c\xe4\x5c\xe4\x69\x0d\x54\xd2\x1a\xa9\xa4\x35\x53\x48\x6a\x66\x90\xd4\xcc\x21\xa9\x98\x43\x53\x30\x86\xa4\x61\x0d\x48\xc2\x1a\x81\x84\x34\xff\x79\x8b\x1e\x62\xbf\x90\xb0\x64\x22\xe4\x23\x30\xc3\x5f\xef\x40\xcc\x30\xc4\xbd\xd8\x19\x82\x1e\x33\x04\x3c\x4e\x08\x70\x9c\x10\xdd\x30\x31\x1c\x55\x94\xc5\x87\x72\xa2\xe9\x8d\x0f\xbc\x77\x6a\x8c\x31\x5d\x83\x4e\x3b\x7b\x15\xc1\x89\xf2\x6d\x8e\x4d\x71\x17\x58\xb8\x07\x97\x01\x12\x6e\xde\xd6\x49\x2e\xae\x01\x17\x98\xeb\x5a\x0d\x6a\x2c\xb1\x6e\x03\x38\x6e\xb1\x50\xef\xe1\xa4\xd3\x4d\xc9\xfb\x39\x80\x0c\x9f\x19\xbd\x62\xcc\x6b\x15\x00\x9c\x53\xbc\x84\xf5\x95\xc1\x75\xed\xd2\x2e\xdc\xd6\x48\xab\xd5\xb8\x11\xf4\x51\x08\xb7\x03\xfc\xc4\x74\xd5\x84\xfd\xa0\xf3\x6c\x09\x0d\x1d\xff\x44\xb5\x9b\x91\x22\x1b\x21\x63\x45\x59\xeb\x8e\xfa\x66\x5e\xa1\xab\xd7\xc3\xd8\x14\xdd\xc4\xda\xd6\x4b\x42\xdd\x24\xc7\x9a\x70\xc5\x9a\xec\x4b\xa7\x54\xa4\xc5\x3d\x3f\x2f\x18\xd6\x55\x2e\x2c\x14\x06\xdd\x2e\x78\x9a\xf9\x22\x11\x73\x91\xcc\x5b\xeb\x1e\xde\xbb\xf3\x33\x9b\xc6\x54\x61\x4e\xb8\x27\x70\x2a\x39\x7c\x66\x65\x8e\xed\x29\x74\xb0\xdf\xab\xee\x70\xae\xe8\x41\xbd\x28\x09\x6d\xdc\xdd\xab\x7b\xb5\x45\x25\xc6\x9a\xdf\x70\x39\x59\xbe\xa3\x06\x85\xfd\xeb\x89\x78\x62\x43\x8c\x3a\xad\x48\x82\xc8\x49\x08\xc5\x3a\x56\x17\x02\x45\xaa\x02\x21\x98\x40\x90\x51\xa8\x5b\x94\x4d\xc8\x00\x1f\x45\x9a\xcd\x05\x34\x51\x5a\xca\xb1\xe5\x43\x62\x57\x53\xa1\x61\xe5\xb4\xad\x1e\x6d\x41\x55\x10\xaf\xab\x99\x48\xba\x90\xa3\x2c\x31\xc9\x69\x90\x5d\x39\x04\x9e\x3d\x61\x18\x6c\x28\xf0\x69\x4d\x97\xcb\xc5\xa4\x7a\x5c\xc9\x0a\x53\x2d\xa6\xcc\xc6\x58\xa2\x5a\xba\xf5\xa0\x56\x34\x15\xd5\x36\x94\x09\x65\xf3\xfa\x6f\x87\x28\xf0\x04\xf3\x40\xd6\x26\x74\xdf\x2f\x5a\xf2\xa9\x25\x4b\xcb\x5a\xeb\xda\xd5\x42\x77\xd3\x2b\x4e\x21\x5a\x08\xe7\x2c\xd6\xca\x73\x3b\x41\x1c\x9d\xf1\x59\x5f\x1c\xae\x64\x56\x67\xb4\x5d\x8b\x44\xaa\x70\x6d\x16\x15\x1a\xd2\x38\xb3\xde\xa2\xa2\x03\xa4\x28\x75\x0b\xe0\xfd\x1c\xb4\x2e\xf0\x48\x8b\xc1\xb0\x2f\x7b\xc1\x71\x18\x10\x5f\xef\x0f\x68\x38\xbd\x0b\xe1\xec\x13\x7e\x3a\x55\xdf\xcc\x29\xa2\xe8\x52\xc1\xe0\x45\x56\xa2\x91\x1d\xb2\xca\x10\x19\x9c\xf1\x9b\x5b\xb1\x49\x44\xf0\xdc\x60\x63\x51\xc2\xb9\x3c\x12\xea\xf0\x2d\x54\x00\x2e\x38\xcd\x46\xce\xd5\xae\x47\xc7\xc6\x7e\x74\x71\x89\xf8\x22\x5f\xb4\x98\xf4\x05\xb8\x39\xb6\xc5\xb7\x73\x9c\xe0\x06\x13\x4f\xd5\x02\x2f\x49\x99\x1a\xeb\x31\x25\x2b\x3b\x61\xa4\x89\x10\x57\x10\x82\x70\xe7\xc9\x42\x31\x19\x65\xac\xda\x33\x24\x28\x2b\xb8\x7e\x0d\x89\xf2\xf0\x09\x29\x13\x41\xe8\x3b\x48\x74\x43\xbf\x10\xc0\x75\x43\x74\x68\x2d\x7c\x99\x56\x50\x53\x00\x8a\xec\x32\x97\x8d\xfc\x19\x7a\x26\x1f\xce\xd9\xa5\xfd\xf3\xca\xaa\x68\x63\x05\x90\x72\x9a\x9d\xd0\x2b\x62\x28\x5f\x5f\xea\x2f\xba\xdc\xd3\x82\x16\x45\xcc\x0c\x10\x56\x50\x41\x9f\xa5\x0e\xe0\xf5\x6e\xe4\x44\x45\x4d\x6c\x23\xa2\x0e\xee\x41\x25\x1b\xd4\x1f\x76\x10\xf9\x16\x5e\x90\x6a\xae\x69\x61\x61\x10\xa6\x71\xeb\x78\xb2\xe4\x3b\x85\xa8\x23\xfa\x48\xcb\xa4\x20\x44\x94\xab\x58\x29\x63\xd8\xb2\x71\xf7\x37\x74\xc9\x8e\x02\xa8\xc3\x27\xd9\x1e\xb0\xaa\x00\x17\x68\x5a\x27\x86\x7d\x96\x72\x8a\x42\xe4\xd1\xeb\x4a\x28\x76\xda\xd9\x65\xbd\x25\x4e\x73\xdc\x05\x56\xd6\x12\xd9\x67\xe3\x04\x71\x76\x22\x08\xb3\x62\x72\xc4\xd4\xf9\x28\x5b\x95\x4a\x8c\x91\x0d\x2d\x68\x6c\x98\x86\x3c\x8f\x66\x9c\xb8\xe5\xc8\x03\x64\x93\x61\x4a\xbf\x18\x9b\x67\x1e\xb2\xad\x5b\xd1\x19\x12\x47\x3d\x27\x45\xc3\x2d\x15\xd7\x17\x5d\xfd\x7a\x16\x36\x34\xae\x1a\x5f\x1d\x2d\x21\xeb\x53\xa3\x8a\x10\x20\x1c\xe6\x6a\x61\xc2\x1d\x0b\xda\x40\x56\x1c\xd9\x6f\x6f\xb4\xa3\x74\xda\x17\x43\x1c\x14\xd0\x3d\x88\x62\x5a\x47\x89\x18\xe6\xa3\x90\xe4\xb2\xd7\x2b\x1f\xd3\x8b\x99\x3e\xba\x7e\xc2\x47\xc0\x14\x39\x09\x2c\x4c\x94\x63\xb6\xaa\x08\x31\x6e\x95\xab\x4e\x16\xc7\x58\xa7\x7c\x07\xad\x61\x46\x06\x18\xe5\xaa\xba\x3a\xa5\x8d\x01\x4f\xa5\x10\x20\xf4\x1b\x00\xdb\x39\xd3\x46\x29\x52\xe6\xc3\xc1\x06\x25\x19\x7e\xfa\xa7\x64\x87\xf2\x90\x45\x3f\xa0\x9a\xcf\xe4\x21\x6c\xc1\x2d\x04\x39\x5e\xc0\x21\xd1\xb9\xe2\xb2\x21\x46\x03\x95\x32\xfa\x69\xcd\x15\x6e\x9a\x4c\xc9\x77\xbd\x6e\xd8\x61\x4a\x46\x40\x49\x54\x78\x27\x7a\x73\xe5\xed\xd9\xcc\xf0\x05\x21\x23\x40\x1f\x85\xe2\x08\x16\x00\xf6\xc8\x25\xa9\x31\x04\x9d\x3e\x44\x49\x08\x91\xa5\xd4\xa0\x10\xe0\xc8\xd2\x71\x08\x11\x3f\x6a\x8b\x3f\xd1\x97\xbc\x5b\x1a\xa2\x7c\x8c\xe6\x52\xbf\x20\x3b\x33\xdc\xc0\x6a\x55\xf9\x19\xb9\xa3\x42\x6a\x6b\xf4\xaf\xe8\x51\xaa\xe2\x18\x31\xc2\x62\x17\x97\xed\xfa\x0a\xa5\x84\xa3\x4f\x02\xf4\x82\x8c\x08\xed\x58\x86\xff\xd2\x46\x18\xc2\x8f\xbe\x0d\x1e\xcf\x06\x36\xa1\xd1\xa6\xc8\x7d\xf9\x74\x1d\xbc\x1b\x13\x62\x10\x98\xa1\x6a\xc4\xb7\x50\x83\x63\xe8\xa5\x01\xaa\xbe\x15\x93\x29\x56\x18\x00\xbd\x57\x7e\x61\x5c\xc0\xd5\x79\x90\x57\xb3\x97\x21\x56\x58\x1e\x08\xa1\xcb\x3e\x4f\x07\x81\xcb\x8d\x62\x02\xba\x35\x46\x2c\x41\xc5\x5a\xf6\xd6\x47\x3d\x04\xbb\x42\xc4\x8e\x6c\x47\xdf\xe8\xb4\x10\x10\x4a\x6c\x68\xcd\xa8\x4f\xc1\x1b\x6c\xd0\x9a\xe5\x13\x69\x00\xab\x31\xdf\x50\x54\xe5\x9b\x21\xd3\x0f\x5f\xbf\x71\x12\x33\xa8\x9c\x00\x1d\xda\x10\x05\x08\x0c\x10\x17\x82\x9c\xff\x0e\xd4\x03\x72\x27\xaf\xd6\xa6\x8a\x3a\x17\xd8\x67\x50\x59\x60\xa9\xaa\x48\x39\x7d\x70\x9b\x10\x7a\xce\x5d\xc8\x66\x5d\x07\x01\x8a\x5b\x07\xd6\x74\xd4\x40\xe9\xd1\x3c\x5d\x03\xe2\xdd\x94\x7e\x94\xb4\x18\xc4\xa3\x1f\x1e\x16\x73\x99\x06\x72\x48\xc8\xce\xed\xc9\x64\x70\x44\xe4\xdd\xd3\x44\x03\xe8\xb0\x5a\xd1\x1a\xca\x58\xa5\x13\x78\xd3\xca\x74\x38\x30\x71\xef\x92\x47\x2c\xcc\x7d\x5e\xa4\xfa\x45\xe1\xc2\xb1\x31\x26\x85\x02\xe2\xf8\xb8\x94\x06\x78\x64\x36\x30\x54\x08\x91\x0b\x62\xe9\x72\xdd\x95\xd8\xd1\x05\x45\xff\x4a\x52\x34\xb0\x36\xb4\xbf\x84\x78\x11\x67\xc1\xdc\x7b\x4f\x60\x02\x82\x78\xf0\x61\xfd\x54\x58\x93\xf2\x2f\x44\xcf\xff\x6d\x3a\x82\x34\xec\x60\x65\x98\x4a\x67\x40\x74\xd8\xe1\x57\x4c\x95\x22\x44\x7e\xc9\x09\xd0\x6c\xcd\x0c\xb1\x18\x3a\x8c\xe3\xd2\x48\x98\x80\x60\x54\xa8\xaa\x73\xdc\x51\xd0\x22\x14\x93\x94\xe6\x00\x4d\x94\xb1\x4f\x2e\xc3\xcc\x8b\x33\x1e\xf3\x88\x2b\xed\xc8\xaf\x7d\xa4\xff\xa2\x8d\x99\xae\xb1\x49\x76\xa2\x84\x43\x2b\x1e\x4a\x70\x75\x95\xcf\xcb\x28\xf3\xd6\x84\x8d\xc4\x19\x38\x00\x6b\xb0\x68\x61\xbb\x3f\x20\x2b\x8a\x2c\x04\x6d\xea\x4e\x1b\x83\xaa\x77\x37\x74\x80\xe3\x0e\xb2\x96\x75\x6e\xc7\x92\x6a\xc2\x01\xee\x60\x01\x56\x08\xe6\xb3\xb6\x02\x62\x0f\xbe\x86\x71\x10\x4c\x5a\x92\x88\x9e\xb7\x55\x64\xa9\x94\x90\x79\x6a\x70\x63\x06\x30\x89\xc7\x17\x28\x1d\x3e\x93\x0f\xf6\x58\x50\x3e\xf3\x55\xbf\x5a\x91\xb6\xd1\xd5\x54\x44\xaa\x18\x0b\x80\x4d\x4b\xfe\xa1\x0d\x2e\xce\x50\x37\xac\x50\x1e\x02\x45\x3f\xc0\x6a\x61\xd2\x88\x68\x6c\x4e\xa6\x71\xdd\x02\x5c\x04\x3a\x3e\xaa\x68\xd3\x25\x6b\xd0\x27\x0a\x7a\x8a\xdb\x61\x74\x27\xe1\xec\x3f\x8c\x81\x9e\x57\x95\x4b\x91\xea\xa0\x27\xab\xba\xd7\x99\x68\x4b\x45\x4d\x8a\xc8\x9b\x24\x67\xea\x4e\xb7\x21\xba\x68\xb9\x0f\xc6\xcb\x8f\x53\x95\x88\xd5\x20\x77\xab\x27\xd0\x31\xd5\x8f\x18\x57\x63\xa7\xa2\x4c\x20\xd3\x22\xc8\x4b\x41\xa8\x48\x28\x03\x32\x8c\xc3\xc9\xf8\xe0\x7a\xb8\x6d\xcc\xc7\x4d\xd9\xd0\x07\x4c\x36\x48\x50\x26\xb2\x66\x81\xf1\xd5\x60\x22\xd0\x39\xc7\x1d\x92\x0b\x4e\x4e\x23\xb0\xc7\x86\x63\x9d\x57\x0a\x01\x01\xd4\x2b\xb5\x11\x23\x63\xc4\x59\xe0\x9e\x82\xb0\x27\x34\xc8\xce\x8e\x4c\x2c\x52\xd3\x0a\x50\x76\xcd\xc1\xdf\x0e\xda\xb1\xd1\x5a\xfb\xb1\xa5\x6b\x2a\x58\x3e\x97\xa1\x94\xae\x10\xc4\xf4\x25\x15\x0a\x98\x06\x37\x3d\x23\x6c\x65\xde\x57\x22\x3e\x58\x8e\x59\x75\x45\xc3\x03\x83\xf0\x6a\x3b\x17\x49\xc8\x7f\xe3\xd3\x6f\xa3\xc1\x11\x80\x6f\x2a\xcb\xb3\x1b\xb4\x8b\x02\xea\xef\x13\x97\xc7\x42\xd5\xdb\xbd\x05\x19\xc3\x9f\x8c\x7d\x5d\xe6\x38\xe8\x95\x8c\x17\x12\x1d\xd7\x74\xfa\xe2\xee\xd3\x4a\xdd\x0e\x13\xda\xb4\xca\x05\x4d\xab\x5d\x13\x48\xfe\xb3\xb9\xaf\xb7\xc6\xa6\xf1\x16\x90\x99\xb7\x0e\x9e\x13\x07\xcc\x57\x77\xa1\xba\xe4\xb4\x1f\xd2\xc5\x61\x9c\x9b\xb0\x59\x50\xf3\x02\x01\x03\xee\xb5\x50\xb0\x77\x82\x45\x0d\xe3\xf4\x75\xe2\x59\x94\x82\x75\xe6\x08\x0b\x24\xb1\xc7\x9b\x84\x7c\x9f\x25\x28\x6f\x3a\x7f\x6b\x92\xd9\x89\x83\xcf\xe9\x4b\xd7\x68\xd1\x11\x26\x9f\xc0\x85\xca\xc8\x1c\x27\x8b\x04\xe8\x66\xd3\x3e\xd2\x5a\xdc\x2a\x58\xa5\xd6\x71\x70\xa6\x41\xd6\x23\xd9\x5e\xb9\xd7\xff\x43\x22\x63\x8c\xed\x67\xda\xbc\xb0\xd3\x70\x79\x42\x93\x63\xee\x1c\x95\xbd\x78\x5b\x35\x7a\xd4\xd7\x3c\xe2\x7c\x28\x8f\x1f\xb6\x51\x22\xb8\x15\xd9\xe3\xfa\x4a\xfa\x20\xa5\x93\x1d\x8f\xb0\x5f\xf6\x98\xa1\x1a\x53\x7b\xe0\x69\x43\xfb\xc6\x23\x9e\x0c\xa0\x06\x0f\xbf\x48\x4d\xaf\x31\x19\x63\xa7\x00\x3c\x6b\x3f\xc0\xea\x18\x68\x04\x00\x34\x0f\x91\x34\xa3\x2f\x5f\x1c\x85\x9b\xe9\x5a\x0c\x6b\x25\x23\xd6\x3e\x15\x1f\x72\xe3\xfd\xd2\x38\x38\x44\xb8\xc9\x31\xa1\x09\xe2\xb3\xc6\x46\xe6\x89\x68\xf2\x70\x0e\x69\xdd\x81\xc4\x6c\x40\xc2\x53\xcb\x54\x40\x43\x07\x5e\xf5\x74\x90\x08\x21\x21\xe0\x71\x10\xfa\x4b\x61\xf2\x0c\x65\x89\x00\x58\xdc\x4e\x1e\x44\xb1\x07\xb8\x24\x3c\x00\xb0\xa0\xd1\xf1\x92\x93\x05\x7c\x30\x7a\x1c\x41\x08\x3b\x27\x25\xb4\x63\x84\xc5\x99\xbf\x88\x63\x25\x50\x8f\x7f\x93\x42\xb0\x80\x18\x48\x2b\x34\x80\x17\x3e\x65\x3e\xb6\xed\x49\xaf\xab\xaf\xa6\x13\x8d\x1f\xca\x83\xda\x9d\x66\x25\x82\xea\x91\x01\xc0\xe3\x00\xf1\xfd\x16\xb6\x0a\xc1\xc8\x4b\x0a\x9a\xb2\xb4\x41\x4b\x3f\xc9\x7e\xb5\x0b\xcf\x70\xfa\x9c\xc3\x34\x39\x4f\x63\xc0\xd2\xa7\xd0\x29\x3d\xea\x29\x13\x21\x43\x6f\x7d\xe4\x8a\x31\x3c\x0e\xe7\x37\x22\xab\xd2\xba\xba\x86\x2d\xb2\xd8\x1d\x33\xf6\xbd\x41\x2c\x10\xa1\x61\xce\x07\x20\xf0\x06\x2f\xf0\x31\x96\x09\xf1\xfa\x52\x73\x18\x28\x70\x61\x87\x59\xd9\x88\x1b\xcc\x51\xac\x54\xab\x63\x97\xac\x6e\x6a\x32\x98\x1b\x64\x17\x67\x60\xe8\xa7\xe6\xd9\x39\x05\x72\x05\x26\xd0\x9d\xf3\x6b\xe7\xb5\xad\xbf\xa1\x5d\x8d\xc0\x06\xc7\xf3\xe7\x25\xd2\x1e\x27\x1e\x44\xd9\x80\x80\xc0\xc8\x4a\x4e\x01\x70\x00\xae\x7e\x1e\xbf\x81\x19\x30\x87\xc1\xf4\xf3\x19\x63\x65\xfa\xf3\x7a\xf5\x7c\x4b\x80\x3e\xea\x25\x83\x21\xf1\xbc\xa1\x6b\x1e\xa0\xa6\x97\x0d\x47\xdb\x60\xed\x42\x0d\xd6\x02\x83\x28\x7d\xbe\x5f\x12\x73\x3c\x95\xe7\x21\xf3\x76\x8a\xc6\x71\x26\x1d\x6a\x9a\x5b\x36\x11\xf5\xb5\xa9\xb4\xb8\xd6\x17\xd5\x91\x22\x1c\xc0\x52\x17\x2e\x59\xf2\x4b\x3f\x10\x8c\x46\x6f\x6b\xe2\x9a\x8e\x77\xf8\x18\x90\x5b\x9f\xc4\x81\x60\x55\x40\x54\x5a\x19\x88\xa4\x4f\xa6\x0a\x7b\x85\x5d\xd6\x18\x5d\x21\xab\x61\xda\x6d\xaa\x10\x34\x20\x34\xb0\x01\x44\x66\x34\x9c\xd9\xee\xd2\xc1\x49\x31\x00\x7f\xb4\xe6\x53\x93\x43\xb9\x8d\x20\x61\xb9\xdb\x70\x17\x81\x4d\x30\x61\x86\x30\x4a\xb7\x42\xa3\x46\x57\xcb\xd7\x2d\x59\x0e\xb9\x28\x8f\x01\x71\x30\x27\x10\x89\x30\x57\x7b\xb3\x0b\xbc\xa4\x3d\x6b\x85\xb7\x2e\xba\xa1\x30\x08\xaa\x89\x55\x29\x0f\xcb\x12\x44\x48\x2a\xe5\xe1\x75\x7c\x3b\x16\xbe\xb9\x4e\xf0\x12\x26\xcc\xfa\x7c\x02\x40\x82\xf6\x8e\x80\x41\x11\xaa\xe5\xc8\x0b\x3e\x2e\xe2\xf5\x70\x54\xc7\xd1\x29\x45\x09\x43\x49\xbb\xa1\x0e\x05\xde\xe4\xa6\x5c\x12\x42\xe4\xe0\x86\x6e\xe5\x13\x93\x78\xc1\xe7\x08\xf6\xc8\xe1\x82\x40\x79\x40\xb9\x9a\x8b\xa0\x34\xb1\xa7\xda\x2b\x11\x1a\xac\x68\xcb\x5c\x4d\x16\xcd\xa1\xd8\x81\xd6\x52\x8a\xa1\x06\xa8\x3c\x9a\x69\xd2\x14\x62\x5a\x82\x0f\xa3\x68\xa9\x58\xa7\x01\xdd\x01\x46\xf6\xcc\x53\x16\xe0\x7e\x79\x72\xcb\x7e\x15\xbc\x62\xd1\x2a\xed\x2f\x56\x48\x03\x6f\x00\x7d\x1b\xc7\x7a\x89\xbd\x11\x2a\x2f\x34\xa5\x56\xb2\xc0\x8d\x4b\x0c\x88\xdf\x54\x30\xa0\x1e\x3f\xe0\x13\x6c\x12\xd1\x26\xa8\x72\x0d\x94\x31\x3b\x13\x52\x8e\xc6\x1f\x58\x1a\x18\xf8\x0a\x8b\x49\x20\xc3\x1c\x83\xda\x3d\x57\x30\xee\xdf\x98\xc4\x57\x88\x72\x89\x5d\xca\xfa\x4c\x8a\xce\x80\x84\x25\x71\x50\x1d\x0e\x51\x0b\xca\xa9\x13\x79\xea\x12\x52\x02\xf2\xc2\x20\x5a\x50\x66\x62\xd5\xeb\x82\x0c\x7c\xb2\x41\xdb\x56\x8e\xb3\x40\x4a\x97\x32\x18\x64\x02\x8e\xc9\x49\xd1\x78\x52\x2b\x9f\xb1\xf6\x14\x08\x00\xf8\x93\x89\x8b\x64\x70\x12\x30\xa8\x08\x23\xa6\x68\x89\x66\x53\x6c\xce\xbc\xa8\xbe\x03\x10\x01\x2e\x88\x82\x1a\xc4\x7c\xb4\xe0\xe7\xcb\xb8\xf8\x04\xcf\x20\x11\xf7\x13\x1b\x71\x04\xc0\x2c\xb3\xdc\x9a\x58\x8a\x74\x11\xfc\x44\xd5\x79\x68\xbd\x95\x89\xad\xe0\xd4\x3b\xf7\xfa\x7d\xda\x9f\xe9\xa0\xaf\x03\x95\x11\xa9\x84\x1c\x30\x54\x81\x47\x47\xa6\xf4\x81\xf2\x71\xab\xfc\xa3\x00\xa2\x19\x48\x2e\x09\x1f\x78\x6a\xc5\x92\x82\x00\x11\x1a\x2d\x90\xd7\xc1\x0a\x85\xe6\x46\x01\x40\xfa\x29\x27\x93\x37\xe3\x8e\x51\x35\x31\x11\x9d\xda\xb2\x30\xb0\x09\x89\x1e\x32\x73\x96\x53\xab\xfb\xf5\x15\xc8\xbf\x5c\x66\xae\xb9\x3c\xc0\x08\x3b\x06\xac\x45\xec\xfb\x46\xb3\xd5\x03\x92\xd5\x42\x4f\xc5\xf1\x8e\xc9\xd1\xf8\xad\xd9\x15\xb0\x6d\x02\xe2\xa9\x61\xf6\x4a\xda\xc4\xdc\x89\x65\x9b\xaa\xb1\xa2\x05\xa7\xa2\xef\xac\x5f\x02\x66\x27\x9a\xc1\x39\x83\xb9\x74\x3c\x9c\xd2\x21\x1a\xd4\xf0\x60\xae\x10\x33\x20\x5b\x57\xee\x4c\xca\x39\x97\x63\xc9\xc2\x2d\xf9\x9b\x9a\x82\x50\xe5\xe2\x10\x52\x89\x2a\x23\xbb\xc8\xda\x2e\x60\xd1\xa9\x6f\x50\x47\xce\x81\xfa\x20\xed\xd3\xa0\x60\x76\x68\xc6\x16\xba\x7e\xba\xc1\x42\xf1\x8e\x56\xa1\x04\xde\xb8\xb1\x56\x85\x4f\x7e\x1c\xe9\x74\x10\x42\x76\x08\x40\xc4\xee\x04\x38\xa9\x84\xfc\xb8\xce\x12\x8a\x32\x16\x8c\xac\x68\x02\x47\xd5\xc3\x9a\xc6\xef\x2e\x87\x39\x64\x52\x51\x4f\x44\x1a\x0f\xeb\xa8\xc6\xeb\x89\x81\xd6\x8a\x44\x39\xb6\x8c\x20\xbe\x5b\x70\xda\xa1\xc8\x74\x42\x28\x06\x68\x89\xe3\xa8\xc4\xbc\x49\xa2\xb1\x08\x84\x7a\x7b\xb0\x0c\xa8\x00\x03\xfe\xf1\xf8\xf9\xd9\x28\x35\xbd\x4a\x47\x22\x97\xbb\x51\x07\xc1\x25\x68\xed\x94\x0b\x52\xda\x22\x50\xb2\xa9\x03\x53\xe9\x01\x54\x2e\x6d\x51\x2c\x21\x3a\x1a\x81\x31\xd2\x75\xf4\x64\xbd\x42\x56\x5b\x3a\x66\xbc\xf4\xac\x8c\x50\x8d\x87\x43\x65\x9b\xc4\xf2\x7e\xf0\x1c\x5b\xa9\x0a\xa5\x58\x6c\x45\xe5\xb6\x93\x45\x24\xe5\xc3\x95\xcc\xbe\x1a\xe0\x4d\x92\xdf\x8b\xe5\x45\xdd\x12\x45\x24\xde\x13\x12\x84\x0c\x0d\x82\x54\x21\xe5\xb0\x5b\x9b\xad\x2d\xb7\x24\x50\x06\x29\x51\xe1\x4b\x70\xd7\x02\x2e\x07\xcd\x68\x84\xb6\xff\x47\xe9\x6b\x9b\x4f\xd9\x13\x87\x39\x36\x2c\x92\x25\x0c\x59\xcd\x67\x73\x92\x8c\x79\x2a\x6c\x8f\xb0\x5e\xfd\xa7\xc8\xfa\x16\x4a\xbe\x54\x94\x7e\x46\xe8\x70\x78\xe8\x82\x3a\x6d\x74\xe6\x23\xd6\xc5\x3f\x98\x2e\x29\x02\x04\xe8\xe1\xd5\xdb\x78\x50\x27\x2f\x46\x8c\xb5\x01\x6e\x82\xd9\x39\x51\x64\x8b\xa0\xce\x56\x87\x10\x35\x58\x1a\x01\x8f\x38\x03\x07\xd6\xc7\x56\xe8\x5e\x64\xa0\x6c\xd1\x6f\xd6\x67\x75\xc5\x89\x73\x1e\xb3\xbb\xe6\xce\xcc\x00\x5c\xb8\x10\xc1\xd9\x97\xd2\xc6\x70\x7a\x95\x6b\x04\x09\x56\x5f\xbd\x1b\x25\x5e\xb6\x26\x37\x27\xdd\xf2\x41\x41\x57\x62\x8f\x2d\x70\x81\x23\xda\xa6\x8e\xbd\x55\x7d\xa0\x50\x43\x8b\x8a\x67\xa2\xfc\x94\x99\x5b\x3f\x4b\x6f\xfc\xe3\x47\xe5\xd6\xc4\x7c\x28\x63\x6e\x91\x40\x80\x46\x23\x37\x04\x7a\x71\x49\x75\xc4\x52\x51\x50\x02\xf9\x88\xae\x4e\x55\xd7\x8e\x3f\xe7\xab\x88\xbe\xb2\x1f\x10\x47\xbb\xf6\x39\x60\x8d\xcf\x96\x52\xe3\x58\xde\xd9\xaf\x3b\x02\x04\xe6\x95\x50\xd4\x12\xeb\x7f\xf9\x0d\x30\x2c\x25\x36\x2e\x86\x55\x59\x57\xd7\xb7\xb5\x1a\x61\xac\x6e\x26\x42\x94\xbf\xcd\xa0\x06\xca\xbc\x71\x5b\x5e\xac\x19\x64\x02\xf2\x0b\x22\x2f\x0b\x95\xce\x0d\x09\x4a\xa1\x84\xf9\x6b\x89\x36\x15\x1d\xd6\x6d\x81\xf6\x41\x82\xcf\x8a\xe5\xd2\x4e\x9e\x20\x13\x95\x9c\x78\xb6\x8c\x9e\xe0\x47\x32\x34\x28\x9c\xe8\x3d\x7b\x9a\x2f\x06\xb1\x0b\xaa\x78\xdb\xba\x8a\x3e\xc5\x14\x1a\x87\x87\x40\x41\xcc\x9f\x50\x71\x5a\x77\x65\xf8\x4b\xae\x08\xf3\x39\x8e\xf1\x4b\x13\xa6\x8c\x05\xd9\x17\x1a\x26\xe2\x20\x90\xa4\xcd\x35\xc4\xf0\x94\x08\x94\x45\xce\xc6\xd6\x3d\x80\xd2\xec\xae\xba\x05\xf8\x6d\x4d\x46\x3d\x61\x31\x95\x43\x95\xec\x3d\x02\xd4\xa0\x4b\xe2\xc1\x99\x21\x11\x82\x39\xda\xd9\xe7\x80\x71\x72\x66\xdf\x91\x1f\x5e\x54\x46\x47\x12\x65\x59\x60\xe1\x9c\x4b\x3d\x2f\x8d\xa8\x07\xd6\x0e\x2d\x0c\x73\x00\x26\x2f\x88\x30\x14\xab\xab\x38\xd4\xfd\xae\x54\xe2\xbc\xae\x10\x00\x94\xff\x87\x3d\xf8\x8f\x99\xf6\xee\xf6\x98\x2b\x18\xab\x5f\x54\x10\xc3\x05\x80\x00\x2d\xb5\xce\x2c\x4b\x9b\x66\x3c\x1e\xc6\x9e\x8b\xe9\x24\x67\x65\x26\x5e\xcc\xf8\x46\x29\x60\x11\x8a\xb3\xf9\x17\x9c\xcc\x1c\x89\xc2\xd0\x8a\xd9\x28\x72\x5a\xd5\x90\x0e\xfa\xa4\x34\x01\x5f\xc5\x58\xc1\x07\x8b\x4f\x31\xd5\x8a\x3d\x92\x7a\xf1\xf9\x45\x88\xa3\x26\x5b\xf4\x80\x8c\xa6\xa2\x8d\x69\x01\x61\x60\xef\x21\x04\x17\xd5\x41\xb0\xe8\xa9\x30\xda\xbd\x42\x1d\xb5\xd3\x51\x21\x23\x44\xf9\x5e\xeb\x3d\xf8\xc3\x74\x80\xef\x43\x3b\xac\x21\x4f\x07\x20\x78\x0f\xb6\xdc\x77\xa1\x26\x30\x03\x32\xff\x40\x32\x32\x5b\x67\xbc\x68\x29\xa5\x84\xba\xe6\xc7\x1f\x76\x88\x6e\xb3\xac\x78\xdb\x6e\x69\x0a\xa8\x31\xf7\x2d\x4b\x9c\x2f\x24\x3c\x1d\x8f\x70\x46\xf4\x02\x89\x28\xa1\x37\x91\x64\xec\xf7\x65\xa6\xe9\x39\x6b\x8f\x9e\x76\x96\x9e\x06\x88\x0d\xcd\x04\x47\x52\x79\xae\xcb\x0c\x7b\xab\xfb\x4d\xfe\x28\x23\x14\x2a\x54\xd0\xf2\x2c\x07\x66\x42\x8b\xaf\xb1\x84\x8b\x00\xad\x78\xbd\x88\x51\xe0\x63\x64\xc7\x39\xe9\x77\xf1\x37\xf7\xe7\x20\x80\xf0\x89\x7f\x16\x51\x35\xed\x20\x6a\x84\x45\x71\x1d\xd9\xb3\x79\x44\xed\x7a\x3c\xa7\x09\x1f\x87\x05\x28\x9a\x5e\x37\x3d\x00\x78\x50\x1b\x72\x1c\xc8\xbf\x77\xe6\xdf\x01\x10\xab\x46\x97\xcc\x8d\xec\x0a\x3b\x21\x57\x22\x5a\x4b\x6e\x3a\x24\xe2\xb5\xcc\xc6\xc2\xd4\x76\xeb\xfa\x09\x88\x75\x16\x21\x27\xe0\x3c\xa6\x7a\x91\xf4\x79\x6e\xd4\x99\x4b\x56\x6d\x6d\xbc\x83\xa4\xed\xff\xcc\xda\x77\x36\x7c\x80\x4b\xa5\x79\x07\x69\xb4\xa1\x66\x59\xb5\xc4\x4d\xa1\x27\x1f\x20\x25\x81\x31\x07\x05\x7b\x7f\x1b\x52\x14\xa2\xdf\x7c\x7d\xa0\x9f\x6a\xf1\x81\xf6\x00\x22\x20\xdd\xdf\x76\x61\x95\x17\x4f\xcb\x7d\x02\x42\xdc\xd7\xe4\x8f\x96\x5f\x48\xe8\xa1\x71\x79\x2f\xb9\x0d\xcc\x5f\x81\xb4\xb0\x37\xa9\x4e\x08\x1b\x9d\x12\x52\xce\x8e\x77\x8d\xaf\x98\x11\x07\x5e\x1c\x27\x48\x90\x0c\xc5\x76\xe0\xfa\xc2\x42\x3b\x7a\xc6\x00\x75\x88\xc2\x4f\xab\x08\xee\x0b\x95\xbe\x75\xe5\xb1\xea\x13\x17\xf4\x03\x36\x11\xc1\x82\x6b\x05\x20\x3c\x38\x61\xd7\xa7\x8c\xb0\x4d\x71\x4b\x2c\x13\x3f\xc7\x3c\x1e\x22\x45\x86\x76\xbb\xad\x60\x76\x58\xaa\x0c\xdc\x17\x79\x18\x5e\x85\x8f\x96\x1c\x5b\x5a\xec\x63\xf9\x91\x4b\xa6\xea\x63\x12\x11\x4f\x8b\x85\x0c\x15\x76\x72\xf0\x20\x08\x2d\xa7\xec\x08\x48\xd7\x2c\x2f\xa1\xea\x58\x57\x69\xce\xc5\xcd\x06\x78\xd4\xc7\x4c\x65\xb3\x5e\x2d\xfe\x28\x52\x41\x85\x42\x7a\xff\x07\xbd\xc6\xa2\x20\xce\x71\x49\xe4\x46\x54\x4c\x88\x50\xc9\x4f\x37\x30\x1d\xd9\x6d\x38\xbe\xc4\xc8\xcb\xe2\x12\x89\x43\x40\x12\xdd\x5d\x72\xfd\xe7\xc9\x56\xa5\x78\x31\x5a\xe6\x98\xb1\xc1\x69\x1b\x26\xcb\x56\xda\x89\x29\x51\x98\x4b\x81\x81\xd2\xf3\x51\xe0\x2c\xa4\x3d\xeb\x70\x57\xc1\x4d\x08\x8a\x85\x05\x15\x31\xeb\x89\x32\x12\x50\xe0\x50\x62\xc1\x43\xc3\xb9\x98\x3b\x2d\x68\x66\x24\xfd\x16\xaf\xf2\xd6\x91\xc8\xc9\x90\x5e\x51\x4d\xd3\xbc\x86\xfe\x48\xbb\xf6\xf7\xe5\x57\x5a\x13\x37\x59\x6d\x4f\x11\xe2\xd3\x11\x01\xfb\xf1\x60\x96\x15\xd6\xe0\x67\x22\xe9\x1d\x19\xea\xd2\x6c\x67\xad\xf5\x44\x07\xdf\xbe\xb5\xdc\xf1\x88\xe5\x9b\x89\x32\xc0\xf7\xc0\x75\xb9\x6a\x6a\x4e\x80\x44\x4b\x03\xd2\x69\xf1\x21\x31\xe7\xc9\xf4\x2c\x05\x6d\xd0\xaf\x15\x74\x84\xa2\x2c\xf2\xdb\x22\xb6\x16\x26\xfb\x52\xd0\xe9\xa5\x2d\x89\xbc\xae\x10\x26\x6a\x00\x94\x60\x8d\x6c\x4f\x6e\xad\x7b\x3d\x59\xdc\x95\xb7\xa8\xcd\x40\xac\x13\x91\x13\xcb\x78\xf6\x97\xe4\x60\x0e\xe6\x3b\xa7\x82\x30\xc4\x7d\x4a\xa9\xa9\x1f\xba\xf3\xb4\xf6\x77\xa9\x3d\x3f\x65\x92\x98\x5f\x56\x90\x88\x68\x90\x5e\x35\x11\xb2\x9f\xeb\x87\x6f\x16\xb4\xe6\x1a\x8c\x74\xd2\xfa\xa2\xef\xda\x8d\xb3\x79\xfe\x67\x3a\x63\x16\x67\x62\x8f\xa2\x98\xea\x50\xd1\xed\x54\xc0\x87\xba\x29\x09\x7d\x83\xa4\x4d\x9a\x41\x09\x6f\xe8\x17\xc1\xbe\xd0\xed\x33\xc0\x5e\x56\x43\x3f\x70\x4c\xc0\x56\xa0\x19\x7c\x19\xa3\x56\x1f\x2a\x99\x24\x9c\x31\xed\x22\x63\xd7\xe9\x60\xb7\x11\x4a\x40\xb2\x00\x3b\xf6\x9c\x49\xd4\x3e\x94\x7d\xb8\xc7\x8a\xac\xa1\xa9\x9c\x12\x95\x59\xed\x9b\x45\x1c\xf1\x0a\x68\xe7\x9b\xe8\x6e\xfd\x3e\x9e\xc2\xb8\x71\x95\xf8\x72\x49\x97\x99\x3d\x97\x40\x04\x00\xde\x80\x1f\x99\x69\x57\xe9\x49\x11\xcd\x28\x10\xc5\x23\x07\xca\x0d\xfc\x9e\x63\xdd\xb7\x06\x46\xf1\x15\x77\xee\x27\x84\xbe\x78\x4b\x90\xc5\x94\x71\x3a\x5c\x03\xe6\x27\x83\x22\x6b\x5f\x02\x4b\x45\x1e\xf2\xdd\x91\x20\x55\x95\x7e\xb0\x3d\x79\x03\x18\xa3\x77\x58\x06\xe6\x89\x0a\xe3\x53\x42\x33\xc0\x65\x89\xf6\x20\xa3\x21\xab\x55\x59\x7e\xe5\x06\x20\x3a\xf5\xc6\xb1\xdb\xd8\xce\x01\xfc\x2e\xf9\x78\xd7\xe2\xf0\x00\x57\xe5\x5d\x83\x17\x0c\xf7\x6b\x41\xd2\xed\x74\xc5\x54\x43\x5d\x54\x82\x2c\x2b\x6d\xa3\x76\x80\x08\x18\xc1\x66\x74\xc8\x8a\x20\xbe\x8a\x0c\x29\xdf\x34\x73\xc4\x2f\x4c\x05\xc3\xff\x08\x89\xa5\xaa\xe4\xe9\x3a\xe8\x9a\xa5\xa9\x0d\x8f\x9b\x10\x70\xf8\xda\x42\x57\xc2\xac\x78\xcb\x20\x99\x1c\xfa\x4d\xdf\x2f\x0a\x14\xc1\x62\x95\x90\xa3\x35\x80\x81\x76\x68\x86\x9c\x65\x89\x16\x95\x01\x41\xde\x3e\x2c\x40\xce\xe9\xa2\x0f\x8b\xcc\x14\x44\xa1\x79\xaa\x57\x7e\x3f\x8a\x28\xea\xa2\x39\x5b\x36\x5e\x2b\x8a\xe8\x1f\x2a\xd4\x05\xa5\x95\x12\x8c\xad\xff\xcf\xd0\x46\x96\x23\x4c\x10\xe8\x10\x91\x07\x5f\xe6\xb7\xcb\x1a\x0b\xda\x8c\x56\x23\x24\x63\xb4\xb3\xc2\x2e\x53\x8e\x09\xe5\x3f\x12\x57\x6d\x8d\xdb\xa2\x4a\xd0\xe7\xdd\x41\x13\x50\x2e\xe2\x5d\xf2\x46\x9e\x6b\x19\xd8\x2a\xbe\xf6\x72\x47\xef\xe6\x4a\x67\x10\x99\x81\x2a\x82\x5c\x2e\x4a\x97\xd0\x46\x95\xe2\xed\x1e\xad\xf2\x4f\x33\x1c\x91\xb1\x61\xe4\xea\x79\xd2\x4b\x9c\x4e\xee\xfe\x69\x21\x62\x01\xb1\xf3\xdc\xe6\x4b\x4d\xdf\xda\xa8\x22\xe2\x80\x22\xd3\x5d\x2b\xe3\x17\x68\xa0\x1f\x9a\x40\x90\xac\x20\x03\x37\x1d\x32\x75\x58\x31\x49\x6c\x8b\x1b\x50\xb6\xae\xbc\x1f\x53\x53\xd0\x29\x0b\x02\x61\xc9\x07\x0c\xce\x20\xf6\xb0\x87\xf4\x06\xcf\x47\x51\xbf\x83\xc2\xcf\xa4\x5f\xc8\x56\x37\x00\x35\xdd\x8e\x26\xb4\xe2\x0d\x56\xd5\xda\x44\x52\xa3\x83\xb6\x20\x99\xe4\x1b\x6a\xdb\x86\x3c\xf2\xfb\xa7\xb0\xc6\x71\x82\x4f\x1f\xcd\x89\xc5\x8c\x69\xc2\x84\xdd\x90\xdc\xf2\x4b\xc3\x40\x36\x2e\x75\x76\xb8\xd9\x1e\x80\xbf\x4d\x4a\x3b\x05\x74\xd0\xb1\xca\xf6\x74\x25\xae\x52\xd9\xa9\x85\xc2\xe3\xe5\x85\x7f\xd4\x76\x90\x95\xc0\x88\xd1\xfd\x88\x08\xf0\x0f\x93\x2f\x73\x46\x71\x4a\x0d\xe6\xb7\x99\xc3\x44\x48\x36\x00\xf9\x0d\xba\x39\xf2\xd2\x14\xd0\x02\x58\x41\x91\x9d\xa5\x4e\xb4\x0c\xc0\x97\x90\x58\x32\x01\x3a\xd3\xd3\x6c\x33\x22\x9c\x15\x14\xb6\x11\x87\x5f\x92\xbc\x3b\xe0\xce\x87\xa9\xc4\x44\xf0\xea\xf6\xab\x85\xbc\xaa\x4e\x44\x72\xaf\x3d\x05\x38\x81\xd5\x66\x7e\x1c\x38\x00\x60\xd9\xaa\x09\x6c\x28\xa5\x3c\x00\x58\xa6\x31\xa8\x99\x52\x0d\x15\xe9\xbd\x60\x00\x72\x60\xe1\x91\x1f\xbd\xba\xf4\x78\x78\x5c\x1a\x0e\x68\x73\x48\x77\x7b\xa0\xba\x08\x62\x9f\xfc\x6e\xa4\x44\x85\xf1\x8a\xa3\xa5\x65\x67\xd1\x1c\xe3\x3d\x20\xdf\x97\x92\xa9\x95\x50\xe9\xe3\xdc\x36\x5c\x4d\x2f\x1f\x5a\x5a\x7f\xb9\x5a\xba\xce\x6d\xa7\x81\xda\x98\x96\xdf\x2f\x3c\xef\xab\xb6\x33\xb1\x04\x91\xd7\xfd\xf4\x73\xf1\xa6\x4c\x28\x90\x7a\x41\x03\xa4\xce\x26\x9a\xba\xf3\xf0\xcf\xe9\x1f\x19\x12\x3e\x96\x3b\x9f\x11\x28\x25\x3d\xbf\x4c\x11\x36\xec\x64\x35\xab\xca\xf3\x41\x63\x63\x0c\x5b\x06\xf0\x08\xe0\xdb\x1f\x61\x19\x43\xaf\x8a\x1a\xeb\x13\x0d\xa1\x51\xb3\xea\xe1\x93\xb5\x84\x9c\x19\xfa\xb6\x0f\x2b\x79\x61\xfa\x84\xfe\xc0\x3d\x50\xbf\x25\x74\xb9\xed\xb5\xb2\xd1\xbc\xb2\x18\x15\x04\x9f\x18\x1e\x5a\xfc\x00\xd8\x7a\xfa\x06\x11\x30\x27\x4c\x98\x58\x3a\x23\x39\xa8\x02\x0e\x3e\xef\x64\xc7\xfd\xcd\xc4\x48\xb2\xbf\x71\xe0\x9d\x59\x37\x1a\x9c\x88\xa4\xd5\x3c\x2f\x4b\x70\xbf\x24\xa8\x41\x9c\x3f\xc3\xb0\x8f\xb2\x84\x1b\xaa\xe0\xac\x34\xea\xab\x38\xc1\x92\x75\x20\x79\x3b\xad\x35\x62\x70\x2e\x92\xb7\x4b\x08\x4d\x47\xea\x08\x01\x61\x77\xac\x9f\x29\x52\x42\x2d\x2a\xc9\x58\x60\x25\x11\x2f\x88\xd9\xb6\x46\xe9\x9e\xef\x41\xad\x43\x68\x7e\x89\x8e\x74\x95\xa1\x43\xd9\x58\x25\x43\x3a\x3e\xef\x7c\xba\x16\x08\x24\x36\xc2\xda\xb8\x28\x76\xa8\xa1\xa3\x29\x51\xca\xe7\x62\xe3\x6c\x5c\x74\x27\x1d\xf4\x08\xba\x31\xd6\x7c\x1a\x8a\x9a\x8f\xbb\x86\x0a\x25\xf9\x58\xb3\x99\x5d\x45\x6e\x86\x53\x33\xfd\x52\x3f\x7c\x80\x97\x01\x99\xd0\xa2\x48\x15\x03\xd4\x04\xa4\x77\x2c\x6b\x2d\x34\x68\x58\x29\x89\xc7\x76\x8f\x40\x40\x01\xde\x4d\x58\x1f\xa2\x9c\x32\xcc\xc6\xf7\xd1\x75\xe1\x7a\xcd\x03\x36\x73\xd8\xee\xaa\x93\x69\x4c\xbe\xca\x65\xfe\xcd\x84\x05\x4f\x46\x2b\xac\x06\xe2\xa0\xe8\x2e\x43\x27\x77\xc2\x8f\x61\xb1\xa3\xf2\x8e\xed\x0c\xbe\xab\xaf\x61\xa3\xb1\xa3\x55\x63\xb1\x57\xfe\x8d\x6d\x55\xd3\xf9\x8f\x22\x58\x61\xdf\x86\xd6\x12\xee\x57\x13\x90\xe2\x0d\x88\x50\xaa\xc6\x48\xfd\xb6\xb9\x86\x39\x58\xda\x3d\xab\x96\x7f\x61\x09\xfc\x7b\xdf\x4c\x13\x2b\x55\x34\xc5\xe4\xc8\x5f\xd1\xed\x4a\x7b\xbb\xec\x87\xa6\xb8\x75\xa1\x61\x9c\x21\x7d\xc1\x94\x25\x8c\xb5\x0f\x56\x1c\x94\x30\xc9\xba\xc4\xc1\xfc\xfa\x53\x57\x30\x1a\xf1\x1e\x83\x86\x35\xc2\x71\xdd\xd6\xfe\xa0\x09\x1e\x54\xae\xb9\x86\x79\x5e\x80\xca\x5d\xfd\x05\x2a\xb2\x4a\xed\x80\xd3\x4f\x6b\xe0\x10\x2d\x52\x23\x20\x26\xd1\x4d\x81\x57\x3a\x29\x95\xd4\x0b\x7d\x56\xce\x59\xe0\x7f\xe2\x8d\x03\xe4\x93\x6a\x61\xae\x22\x24\x2b\x6e\x35\xf9\x08\xdf\x11\x3c\xfc\xe1\x96\x9e\xa7\xa0\x8e\xa6\xd1\x49\xf7\xe8\x5d\x38\xa4\xaf\x55\x52\x26\x02\x1e\x86\xdd\xd0\xfd\x19\x30\x18\x0c\x8a\x39\x38\xa9\xad\x76\xc2\x57\xec\x0a\x8c\xc5\x9d\xae\xdc\xb2\x4a\x3f\x8c\xd7\xe9\xfb\x73\x31\x73\x1c\x4c\x15\xcb\x2b\xa9\x58\x0d\x64\x4a\xcb\xc5\xfa\x27\x11\x01\xd4\x42\x08\x18\x0a\xe8\xb4\x29\x00\xe5\x72\xfd\x46\x37\xe7\xbd\x18\xd4\x1d\x6f\x5b\x7a\x83\x95\x26\x6b\x39\xfc\x89\xe6\x70\xa7\x54\xbf\x1e\x06\x1e\xd7\x60\xca\x21\x8d\xa6\x70\xe4\xf3\x08\x63\x01\xee\x4f\x70\x44\xc9\xaf\x55\x72\x32\xa8\x13\xd8\x8b\x63\x9d\x22\x60\x35\x04\x8a\x58\xcb\x00\x93\x1a\x60\x85\xab\x93\x10\xc8\x2c\x58\xfd\x95\x4c\x25\xc4\x23\x58\x01\xe4\x56\x30\x9f\xe9\xac\x83\xc9\x37\x69\x66\xe3\xaf\xe6\x0b\x8a\x09\x70\xc5\x02\x01\x67\x08\x7d\x62\xd8\x4d\x92\x93\x82\x33\x05\x37\x09\x54\x47\x35\x54\x19\x76\x00\x0b\xac\x04\xd5\x33\x50\xe4\x2f\x1e\xfe\xe1\x58\x20\x90\x92\xd2\x15\x29\x76\x3e\xe6\x8b\xe8\x06\x62\x7c\x6a\xe1\x80\xe5\xc1\x14\xf9\x60\x36\x34\x67\xc6\xf6\x2e\x3a\x87\x42\xc4\x57\x7a\xa9\x3c\x01\x2d\x78\x6b\xf0\x33\x58\x16\x70\xdd\x9e\x47\x77\xa1\x5e\x1e\xa0\xb3\xd7\xe5\xb4\xba\x7b\x8c\x74\xa6\x0a\xd6\x79\x9f\xb8\x0e\xa8\xd6\x4e\x1a\x1e\x80\xbc\xd6\x97\x35\x83\x69\x98\x9b\x76\x49\xd2\x61\xe2\x25\x3b\x5d\xaa\xff\x3a\x9b\xb1\x91\xf7\x95\x40\x5b\x86\xb4\x50\x53\x5d\x35\xa5\xd7\xbb\xf8\xf1\x02\x92\x41\xb5\xf8\x96\x60\xaa\xe3\x1e\xd8\xe6\x0e\x94\xe3\x3e\xed\xef\x1e\xa8\xf3\x4e\x70\xe6\x8e\x6f\xe3\xfd\xbb\xd3\x4e\x9d\x88\x87\x65\xee\x58\xe6\xde\xfe\x5a\xea\xae\xf7\xc8\xf4\x3d\x0b\x9a\xba\xbb\x34\xde\x78\x43\xbc\x83\xc0\x8e\x0e\x4c\x83\x38\xe9\x9b\xd9\x90\xc0\x50\x22\xb9\x92\x96\xc0\x9d\xbd\xf8\x07\xa2\x08\xdd\xa8\x22\x14\x20\x75\x58\x7a\x05\x17\xb0\x7c\x20\x75\x82\x98\xa1\x89\xab\x8a\x31\xc5\xf0\x84\x88\x80\x53\x0e\x6e\x08\x8a\x87\xc3\xaf\xdf\xe2\x13\x1e\x4e\xed\x3a\x73\xc8\x92\x75\x61\x82\x4e\x8c\x35\x99\x2a\xc0\x27\x78\x2b\xdb\x30\x51\x77\xce\x99\x6b\xcb\xa2\x30\xa2\xf2\x91\x86\x86\xb1\x3f\xe8\xe7\x40\x6c\xb9\x60\x12\x8e\xb5\x45\xd1\xac\xdb\x0e\x64\x13\x81\xd2\xee\x0d\x92\xa3\xc4\xfc\xce\xc5\xc8\xb9\x25\x86\x52\x73\x62\x9c\xbb\xd4\x2c\x17\x2a\x99\x0e\x91\x00\xdc\x47\x2f\x97\x2d\x94\x2d\x85\xca\x1d\x47\x67\xa2\xee\xe7\xe1\x72\xde\xa2\x4c\x26\x2e\x58\x71\x11\x78\xf1\xed\xdc\xc2\xde\xa8\x9c\x6c\xb9\x1b\x9e\x72\x10\x4d\xd8\x14\xb3\xd9\x70\x37\x7e\x06\xa2\xe4\x83\x8a\x0e\x76\x2e\x48\x3c\x3d\xa2\x17\x29\xe1\x6b\x99\xd5\x8c\x8a\x78\x16\x14\x94\x40\x5c\x80\xee\xd9\x00\xb9\x39\x60\x44\xca\x52\x2b\x7e\x0c\x43\x2e\x72\xf9\x70\x9c\x93\x80\x5c\xf9\x95\x7f\x4d\xb0\xd0\x97\xc2\xc2\x27\x09\x8d\x55\x08\xca\x26\xa2\xdd\xce\x7f\xcb\xed\xf7\x5b\x55\x20\x05\xb8\x69\x72\xeb\xe0\x81\x68\xc6\x1c\x5c\x13\xa1\x61\x05\x60\xb0\xb4\x24\x51\x38\x3f\xd4\xc2\x65\x1e\x88\x82\xe6\xb5\x10\xc0\xdc\x8b\x0a\xc5\xe8\x05\xc1\x61\x6e\xfe\x34\xeb\x97\x05\xd4\xe5\xa4\x67\xe5\x54\x57\x45\x44\x01\x7b\x83\x86\x7b\x69\x66\x0f\x1a\x36\x89\x10\x13\x46\x79\x89\x43\x19\x2b\x04\x52\x9a\x90\x9e\x6c\x9c\xe3\x2f\x2c\xd8\x5f\x58\xbb\x48\x73\xc5\x3d\x12\xae\x06\xd1\x05\x6a\x04\x8a\x42\xe0\x81\x70\x58\x0f\x38\x0f\xa1\xfe\x17\x45\x8c\xae\xd4\x82\x77\xb2\x32\x01\xa9\xa2\x87\x42\x24\x86\xc6\x7b\x4d\xbc\x06\x7b\x78\x0f\x72\xa2\x03\x29\xf8\x67\x8b\x09\x92\xda\x5f\x78\x91\x37\x4a\x99\x44\x85\xb6\xd1\x40\x3d\x41\x42\x39\x23\x47\x25\x41\xa1\xa3\x47\x3a\xf2\xe9\x27\xbc\xcc\x2b\x4e\x0d\x85\x58\x2d\xac\x40\x87\xeb\x98\x4d\xb5\xc0\x53\x3c\xb2\xa5\xd7\xfb\x89\x11\xb2\x17\x08\xd1\x30\x46\xe9\x5c\x80\xc2\x07\xa1\x00\x42\x04\xb4\x21\x72\x9f\x8b\xaa\xe7\x78\x19\x69\x71\xa3\x3e\x1f\xe8\xa8\x90\x1b\x3a\x49\x18\xd3\x43\xc3\x2f\x2d\x31\xd0\xf8\xa3\x6f\x8a\xb5\xcd\xd3\x71\x74\xee\x1f\xc2\x38\x00\x36\x0a\x10\xd0\x60\xdb\xdd\xb6\xe5\x23\xd4\x08\x63\xf6\x70\xa2\x04\xce\x58\x74\x62\x16\x04\xc3\xe2\x00\xfa\x2d\x45\x15\x36\x4f\x98\x14\x66\x28\xfd\xc8\x5b\x3c\x89\xa3\x23\x9b\x96\x40\xbc\xf2\x12\xbd\x8c\xd5\xc4\x1e\x14\xab\xa4\xf1\xc0\x88\xdf\x46\x22\x00\x3b\xe7\x81\xed\xbb\x54\x32\xe2\xb8\xe0\xe8\xd8\xcb\x29\x64\x00\xb0\x73\x42\xca\xed\x81\x81\x74\x19\xaf\x0e\x85\x98\xb3\x3a\x29\xc7\x82\x2f\x48\x61\x66\x69\x03\x8b\x4a\xcf\x5c\x20\xd7\x26\x7d\x88\xb4\xbe\xc5\x68\xca\xaa\x1f\x6d\x05\xb6\x31\x12\xe9\x04\x42\xf3\x8b\xe4\x78\x2a\xe3\x18\x4e\xd7\xc0\x37\x5d\xb8\x3c\x94\x3c\x40\x5f\xe2\x07\x42\x94\x31\x83\x8f\xa1\xd6\x23\xff\x38\xfd\xbc\x8b\x7c\xf7\x46\x15\xc0\x97\x2a\xdd\xc1\xd4\x12\xc1\x14\xd7\xf1\xd3\xe8\x98\xd7\x96\xf8\xd5\x51\x7a\x10\x0f\xf4\x83\x73\x4b\x0a\x27\xce\x0c\x12\x0b\x29\x41\xd8\xe2\x1a\x0d\x84\x40\x50\x06\x21\x44\x86\xc2\xa6\x2b\x4f\xf7\x5f\x6a\xa9\x81\xd1\x6b\xa7\x92\x9f\xa2\x70\xc9\xe1\xce\x35\x84\xb3\xdd\x35\x27\x3f\xb9\x02\x81\xbf\x5d\x6e\xf8\xb5\x6b\xe9\x00\x0d\x4e\x36\x14\xd5\xe0\xf1\x83\x03\x69\xfd\x44\xeb\x3c\x04\x46\x12\x3d\xf2\xb9\xeb\x30\x93\x66\x1e\x8f\xbc\x96\x68\x00\x03\xca\x42\x58\x39\x1c\xa9\xca\x2a\x15\x11\x89\x45\xb7\x69\x85\xb6\xc3\x20\xd5\xf8\x76\xa6\x71\xea\xc9\x6c\xc3\x90\x1c\xfe\xdd\x61\xd8\xa0\x77\x3a\x64\xab\x20\x61\x82\xe2\x5b\x65\x8a\x3e\xb0\x71\x7d\x27\xd2\x18\xd3\x6c\xa1\x37\x83\x02\x78\xba\x78\x29\x1e\x6c\x1f\x32\xc4\x7e\xc4\x38\x79\xc1\x85\x51\x97\xba\xa2\x9f\xcd\xdb\x22\x39\x54\x6e\xc2\x80\x8d\x61\xb3\xc0\xf4\xbe\x03\xd1\x51\x16\xa1\xc4\xe6\x53\xcd\x19\x54\x7a\x64\xd6\x35\x35\x9d\x6e\x82\xc4\x2a\xc0\x43\xee\xc4\x1b\xeb\xfa\xb9\x5c\x29\x1b\x46\x70\x18\xb9\xa8\xc4\xd6\x6f\x42\xd9\xef\x81\xb6\x1e\x06\xd0\xd9\x2a\x09\x8c\x35\x7c\x4c\xaf\xf8\x7d\x71\x40\x0f\x3e\x90\x4b\xd1\x8d\x9a\x4c\x7b\x12\x4d\x2a\xa7\xd8\x93\xae\xd2\x81\xaa\x89\x1a\xee\x80\xd1\xa5\x9e\xac\x64\xe7\x52\x73\x6b\xc3\x40\x7a\x63\x88\x25\x2e\x25\x94\xcb\x06\xfe\x62\x08\x10\x00\x3a\xaf\x26\x0f\x04\x23\x92\x3f\x84\x6a\x83\x85\x11\x60\x4a\x67\xd5\x82\xab\x6c\x9a\xbc\xd7\x16\xe9\x11\x88\x2a\x2b\xd1\x5c\x5f\xe1\xe3\x85\x05\x9b\x4c\x93\x9f\xce\xd9\x18\x15\xa7\xea\x77\x59\xd2\x23\x9f\x4c\x0b\x6e\xc6\xc2\x8f\xfb\xf5\x6e\x63\x52\x01\xe8\x05\x93\x50\xb6\xe8\xdc\xdd\xdf\xbb\xb9\xb3\x4d\x58\x60\x8e\x12\xd0\x63\xe1\x40\x25\x8b\x04\xe0\xfc\x9e\x22\xf3\x9e\xdc\x20\x64\x0b\x1b\x13\xf3\xeb\xbc\xe4\x0c\x10\xa3\x6b\x18\x30\x58\x80\x89\x2c\x20\xad\x20\x38\x42\x6a\xc4\x02\x04\x46\x44\x36\x75\x4a\xc1\x4f\x11\x10\x0e\x42\xfd\x29\xd5\x34\x28\x33\x68\xa9\x35\x32\xbb\x79\x09\xb4\x89\xb9\xa6\xb8\x3e\x03\xa2\x61\x7c\x89\xae\x51\x8b\x98\xdf\x22\xbe\xc2\x5d\xa6\xae\x37\x8a\xa9\xf3\xf1\x8c\xe7\x4b\x2d\x6f\x6c\xe7\x47\x40\x39\x4d\x77\x7f\x2b\x61\x3b\xc9\x49\x66\xee\x91\xc3\x46\x0e\x13\xc9\x01\x4c\xbb\xe4\x3d\x91\x8a\xeb\x64\x23\x76\x8c\x17\xd0\x04\x6d\xf2\x1b\x5a\x30\x07\x05\x0d\x1e\x4d\xc6\x89\xbf\xe2\xff\x32\x4f\xbd\x07\x7e\xaf\x90\x56\x4b\xf3\xfd\xb4\x27\x30\xed\xb9\x0f\xe8\xe7\xfa\x07\x16\xde\x41\x8b\x1a\x65\x1d\xa7\x9a\x32\x98\xdc\x12\xaf\x2a\x6d\xc1\xc0\xd4\xeb\x85\x0a\x45\x28\x6f\xc2\x8c\x7e\x01\x81\x83\x57\xbd\x10\xb4\xdd\xa6\xf8\xdf\xc4\x5e\x47\x91\x77\xd4\x0c\x39\x98\x5f\xab\x82\x9d\xed\x73\xad\x02\x8e\xdb\xec\xaa\x37\x57\x0c\xc9\xc2\x9a\x1b\xf3\x0e\xa0\x1e\x9c\x09\xfe\x04\xaf\x86\x0e\x7b\x8c\x63\x7e\x7b\x7f\x1d\x58\x00\xc1\x97\xed\x4c\xc3\xb1\x88\x73\x2b\x5a\x1c\x1b\x91\x67\x06\xdf\xde\xcb\x46\x86\xe5\x14\x79\x63\x45\x63\x41\x47\x5d\xde\xe0\xbb\x62\x8a\xa4\x60\xd6\x85\x50\x47\xb8\x01\x3a\x83\x9f\x55\xcd\x90\xde\x5b\xf2\xae\x51\x91\x88\xd6\x8b\xa8\x4a\x4e\x78\x39\xeb\x05\x3b\x3f\xad\x95\x8d\x76\xdf\x81\xc5\x19\x3a\x25\xb1\xe5\x25\x84\x25\x00\x21\xba\x44\x40\x6d\xba\x16\x17\xfb\x13\x49\xc9\x52\xc0\x52\xc4\x4c\xc9\xc7\xb8\xd7\x77\xb7\xfc\xf1\xff\xe1\x74\xce\x19\xbb\xcf\xa8\x00\x98\x33\x6e\xea\x42\x7b\x90\xbe\x09\xaf\x5a\xfb\x33\x71\x3d\xf9\xd7\xd3\xc6\x0d\x4a\x72\xa4\xe8\x88\x03\xb5\x7c\x02\x71\xcb\x36\x88\x2f\xb4\x12\xcc\xda\x3d\xdd\x0b\x53\x2a\x13\x50\x0d\x47\x8c\x50\x01\x0b\x70\x4d\x0f\x56\x99\x5c\x15\x00\x04\xbc\x7b\x90\xa6\x6d\xb1\x03\xe9\x07\x3e\xa6\xa7\x96\x23\x27\x7a\xad\xec\xf5\x32\x29\xf2\x9d\x3f\xa1\x1a\x79\x60\x4f\xd9\x19\xa8\xf9\x22\xc7\xfe\xa4\xd0\xc6\xed\xc2\x81\xeb\xb2\x85\xa9\x6d\x47\x82\xc6\xb1\x69\xdb\x96\xa1\xe8\x3f\x92\xe5\x60\xc0\x30\xa2\x28\xb0\x30\x93\xc8\x32\xff\x18\x59\xa4\xc9\x10\x4f\x59\x27\x82\x61\x9f\x7c\x6b\xc6\xfa\x82\x82\xe0\x37\x96\xb1\x6b\xfe\xa8\x03\x48\x0c\x24\x27\xbb\x93\x78\x07\x02\x25\xc1\x3c\x1c\x16\x5a\x67\xf6\xc7\x5e\x57\x1a\xbb\x01\xfc\x5a\xc9\x22\x67\xeb\x85\x41\x27\x21\x83\x3d\x94\x90\xc1\xa0\x65\x88\xc1\xc4\xdc\x41\x74\x2a\xdf\x60\xb7\x4e\x75\x8e\xd3\x32\xb8\x97\x3f\x70\x46\x9f\xcd\x84\x01\xec\xd8\x16\xf2\x6d\x6a\xa7\x75\x36\x8e\x4e\xe6\xc8\xd3\xa7\x4b\x89\xcd\x04\x06\xeb\xc9\x90\x2b\x10\x70\x2f\x2d\x41\xa6\x77\x7b\x7a\x0a\x73\x43\x8b\x9e\xf9\x35\x36\x61\xde\x74\x09\xc6\x85\x45\xc3\x58\xda\x6f\x16\x24\x16\xa3\x58\x32\xa6\x28\xbe\x2c\xea\x88\x63\x7d\x4a\x0f\x16\x62\x30\xe1\x22\xfa\xfe\x81\xcb\x43\xb9\x25\x8c\xcf\x54\x72\x55\xab\x55\xce\xae\x39\x28\xd2\xb0\x81\xc1\x08\x51\xd2\xbd\x2f\x3c\xbd\xd4\x20\x2e\xeb\x70\x10\x99\x1b\x5f\x46\x03\x93\x9b\xe5\x01\xe7\xfb\x8f\x85\xcf\x45\x8a\x0d\x90\x51\xa7\xbc\xe8\x8d\x33\xd9\x75\xa7\xeb\xec\xdc\xfb\x67\xbc\x00\xc6\xeb\xef\x78\x51\x28\xf8\x55\x6d\x84\x27\x36\x41\x66\xa5\x52\x2f\xc7\x77\x20\xa0\x8e\x2d\x41\x2a\xef\x14\x3d\xae\xeb\x22\x95\x66\x84\x44\x02\xc3\xde\x7b\xe8\xbc\x24\x4c\x09\x85\xbb\x82\x87\x4c\x8b\x7f\x59\x56\x81\x50\x98\x8e\x07\x79\xdd\xdf\xdc\x96\x12\x6b\xeb\xad\xaf\x9c\xb1\x18\x48\x1e\x9a\xe8\x4d\x67\x03\x84\xfb\x4d\x43\x96\xe5\x73\x7b\xfb\x08\xa9\x5c\xe9\x67\x27\x3a\xd6\xd7\xe4\x96\x90\x40\x00\x14\xc8\xbb\x6d\xa6\x3d\xc1\xb5\x96\x8a\x62\xc2\x1a\x46\x42\x15\x11\x08\x19\xa4\x56\xee\x5e\x3c\x3c\x16\x71\xa0\xb8\x01\xad\x14\x44\x14\xc1\x25\x61\xe1\x87\x0a\xd7\x28\x15\xbb\x41\xbc\x1b\x06\x6c\x8d\x5b\x36\x90\x84\x29\x9f\x21\x0b\x1c\xb4\xac\x89\x55\xc4\x62\x99\xfa\x41\xf9\x5a\x6e\x54\x21\xaf\x4e\xb8\x69\x94\xe6\xb8\xb6\xd9\x94\xd0\x4f\x56\x44\x82\x70\xf1\xb2\x2a\xa5\x33\x97\x78\x71\xd4\x8d\x23\xa6\x42\x38\x58\x53\x28\x56\x33\x53\x9e\x12\xa8\xcf\x38\x55\x15\xd0\x03\x43\x62\x39\xb4\x88\x8a\xa2\xd0\x6d\xc0\xad\x07\x81\xae\xb8\x38\x85\x73\x2e\xa9\x19\x37\x6a\xd0\xb5\x2d\x25\x97\xad\xc9\x3f\x44\xd3\xba\xea\x87\x2d\x32\xe7\x9a\xc0\xc1\x79\x61\x39\x8d\x5f\x18\x97\x62\xfa\x6f\xdf\x55\xfb\xb0\x30\xfa\x67\x16\xa6\x6a\xa9\x58\x61\xcd\x2b\x78\x0a\x71\x10\x56\x2d\xa3\xea\x50\xf7\xac\xb9\xfb\x3d\x32\x08\x80\xba\x5d\x6b\xbc\xe5\x7c\xb5\xb8\x73\x60\xe0\x2b\x38\x95\x19\xe3\x43\x45\x24\x2c\x58\xa8\x24\x1d\x0c\xfa\x35\x80\x39\x7a\xd6\x1e\xd4\x16\xaa\x7a\x22\x50\x83\x02\x84\x7f\x0b\x66\x55\xdd\x60\xe2\xf2\xa2\x43\x42\x14\x02\x84\x45\x07\xcf\x62\xec\xe6\xb5\xb0\x9f\x26\xb7\xb9\xcd\xe8\x88\x09\x9c\x69\x04\x22\x32\xe4\xbb\xc1\x0a\xda\x0b\x5d\xe9\xc0\x0f\xcc\x09\x3f\x75\xe3\xf7\x46\x0a\x5f\x6c\x36\x47\xe2\x81\x34\x87\xe5\xa8\xa6\x19\xf2\x29\x1a\x80\xca\x8e\x2f\xfe\x8b\x92\x8e\x20\x92\x0b\x1a\x10\x19\x92\x92\x71\x25\x61\xe3\xa4\x98\x90\x03\x4a\x5d\x5c\xd2\xcf\x56\x8f\x0a\x38\x65\xb3\x04\x64\xc5\x07\x1b\xc5\x76\x26\x0b\x8e\x08\x78\xdc\x12\xc1\x17\xa4\xaa\xc0\xb9\x54\xe7\x46\xed\x7c\x09\x45\x58\x08\x29\x35\xe1\x7e\xbf\x3a\xfd\x92\x08\x00\x2a\x7f\xa1\x13\x00\x95\x93\x91\x02\x25\xbe\xa4\x5a\xc3\x48\x79\xe3\x8c\x62\x94\x4c\xb6\x74\x65\x99\x5a\xed\xc7\x4b\xc3\xac\x03\xf1\x0d\x60\x62\x5c\x6c\x0c\x56\x85\x31\x1e\x35\x70\xd1\x18\x98\x70\x11\x7e\xd5\xc7\x9f\x14\xa7\x70\xe7\xd5\xb6\x43\x9c\x6c\x6b\x1a\x5c\xf2\x55\x22\x0a\xc9\x8c\x72\x1a\x61\x5b\x16\xa0\xb0\x7d\x4a\x4a\x10\x7e\xf5\xc6\xd9\x97\x22\x93\x3c\x2a\x68\x4c\x99\xae\xcd\xb5\x76\x60\x50\x27\x2c\xdd\xcf\xc2\x0c\xb6\x4a\xac\x48\x56\xf7\x41\x5d\xc1\x8a\x32\x9a\x29\x67\x53\x41\xb4\x0f\x15\x70\x72\x51\x47\xa3\x00\x21\x3c\x59\x66\x0b\x84\xb3\xd7\x64\xb0\xa2\x61\xe2\xc0\x92\x3b\x58\x18\xd3\xdf\x51\x65\x80\x63\x0a\xd4\x70\x56\xc4\xf1\x9b\xb6\xdc\x8d\x8a\x95\x81\x12\x01\xf0\xc0\x82\x63\x10\xd5\x30\x95\x34\xd4\x21\x90\x9a\xa4\x9f\xc5\xb0\x46\x00\x1c\x5d\xa7\x58\x0b\x68\x40\x6f\xde\x72\xf5\x8d\xc7\xbd\x62\x52\x25\x5b\x71\xea\xd1\xea\x75\xf4\x75\xd2\xd7\x45\x87\x99\x54\xb0\xf3\x30\xde\x13\xb3\xf0\x2d\xfa\xd9\x06\x97\x09\x4e\x71\xea\xfd\x3d\x08\xa2\x30\x14\xb6\x4d\x23\xd2\xb5\x12\x45\x53\x80\xb7\x1b\x3f\xd2\x79\xce\x07\x95\x56\x33\xeb\x12\x51\x36\x72\xa2\x54\x03\x4c\x61\xeb\x36\x78\xd9\xb4\x3d\xd0\x10\xe7\xe1\x5a\x22\x58\x85\x24\xeb\x15\x41\x27\xe7\x23\xca\x75\x62\xfd\x53\x44\x4f\xa0\x5b\xe6\x56\xcc\x46\x7d\x5c\x3b\x8a\x30\x4e\x83\x49\xc6\x60\xf8\x37\x08\x44\xc9\x60\x73\x3f\x0c\xe5\x10\x0d\xee\xb1\x82\x0a\xf3\x19\x97\xa0\x85\x70\x8f\xcc\x8b\x97\x23\xea\x6e\x26\x40\x22\x04\xfd\x92\x2a\x9c\x03\x89\xc7\x1b\xec\xe1\x1c\x5d\x7b\x2c\xed\xcf\x7c\x38\xab\xf1\x08\x1b\x59\x47\x04\x82\xae\x77\xbf\xea\x1c\xe7\xc1\x1d\xb8\x36\x4c\x8d\x3e\xb9\x15\x73\x8a\x2b\xc8\xeb\x80\xa5\x53\x50\xce\xb5\x19\x11\x62\x9f\x69\xf5\xce\x30\x6d\x53\x41\x96\x87\xf8\x53\x28\xf2\x1a\xdc\x85\x3b\x1e\x70\x00\x01\xbf\x3e\xe2\xdb\x6a\x09\x0c\xbb\x89\xab\x50\x13\xf7\x48\xc8\x82\x42\x1c\xff\x16\x80\x48\x5a\x68\x00\x34\x28\x33\x51\x23\x67\x06\x7a\xb1\x29\x82\xb9\x47\x56\x01\x9b\x00\x11\xb9\xb2\x1e\x01\x9c\x0b\x07\x97\x1f\xd8\x48\x65\xb4\x39\x3e\xf3\xc0\x1d\x73\x6b\x04\x2c\xbd\xec\x04\xce\x06\x55\x44\xf9\xd9\x5c\x85\xa4\x64\x99\x18\x1a\x0b\xf6\x26\x03\x28\x64\x9c\x1b\x08\x11\x6a\x36\x18\x20\x14\x02\xe5\x6f\x02\x18\xd3\xac\x73\x95\xe0\x05\xeb\x7a\xea\x90\xf4\x40\xae\xd1\x64\xf4\x15\x97\x3f\x4c\x40\xac\x3b\x0e\x30\x69\xe4\xc2\x0c\x91\x9f\xdb\x44\xdb\xf6\x7c\x48\x19\xe6\xe5\x7e\x62\xe0\x6b\x51\xb1\x59\x21\xcc\xc1\x40\x1a\x76\x92\x04\x2d\x41\x31\xe2\x57\xb0\x17\x83\xa1\x31\xdf\x40\xd0\x08\xb7\x59\x35\xb6\x1f\x3b\x58\x19\x88\x61\xa2\x1b\x61\x1c\xd9\xed\x9a\x39\xe2\x12\x01\x30\x3f\xc3\x3e\xc8\x50\x83\x51\xb6\xd4\x21\x17\x6a\x3c\x75\x44\x42\xf2\xb9\xb2\xcc\x57\x98\x22\x0b\x25\x16\x81\xe8\xb6\x51\x52\x24\x31\xd9\x04\x5e\x64\x58\x88\x54\x74\x89\xe6\x55\x58\x05\xc1\xe7\x9a\xbe\xdd\x00\x23\xa5\xd3\x3a\x4c\xc8\x00\x19\x26\x53\xab\xba\xde\x38\x22\x82\x1f\x0c\xcc\x10\x57\x14\xe7\x2a\x46\x1c\xf6\x8d\xdd\xea\x31\xdf\x06\x5d\x42\x8c\x85\xfc\x66\xf9\x57\x06\x65\xdd\xe7\x8f\x3f\x7b\x17\xc1\x8f\x3a\x3f\xcc\xb2\xc4\xaa\xd0\xeb\x4e\x1f\x07\x9b\x15\x82\x3b\x7b\xe9\x78\xda\x33\xd2\x6b\x1b\xe1\xbd\x05\xd4\x92\x20\x1f\x35\x38\x92\x01\xb7\x99\x73\x0e\xcc\x4b\x04\x81\x88\x78\x92\xe4\x4f\x43\x3f\xdc\x0f\x0c\x52\xf1\x27\x2f\xc1\x0e\x2b\xf8\xfe\x57\x04\x0c\xff\xc0\xd6\x4f\x47\x4e\x1c\xd8\xdd\xe8\x27\x72\x38\x02\x41\x3a\x01\xe2\x47\xc6\xb2\xca\xae\x97\x55\xe8\x71\xe9\x1c\xf4\xee\x46\x20\x5f\x44\xf9\x6c\xe0\x54\x40\x41\xcf\x86\xcb\xd1\x44\x27\x00\x82\x2b\x22\x98\x32\x32\x5a\x77\xd8\x16\x6a\xb2\x91\x5f\x24\x9b\x60\xa6\x5b\x80\x4b\x5a\x06\xb5\xd0\x15\x89\xf0\x21\x9c\x8c\x0d\x8b\x51\xbb\xb8\x42\x9c\xdf\xd9\x47\xee\xe9\x5a\x0e\x6d\x0c\xa3\xa3\x75\xca\x63\x99\xc3\x28\xe3\xd5\x49\x6e\xe1\xf8\x92\xfc\xed\x43\x7a\xa4\x94\x4c\x83\xc0\x2a\x77\x9e\xe0\x90\xf8\xbb\x20\x60\xe6\xa3\x5f\x57\x48\x9b\xe4\x13\xa0\xda\x14\xe9\xc6\x01\xc0\x81\x6b\x51\xb2\x2b\x74\x5b\x76\x1a\x1a\xf1\x70\xf7\x84\x34\x78\x12\x22\x38\x58\x10\xf1\x0f\xad\x7c\xbb\xf2\x32\x94\x0b\x5d\x84\x31\x50\x69\x89\x3e\xb9\x4f\xac\x75\xcd\x76\x16\x4d\x14\xb2\xb6\x53\xe3\xa9\x7e\xdc\x5a\xae\xba\x9a\xd1\xca\xc9\x33\x72\x80\x4b\x8f\xac\xaa\x29\x85\xd0\xf4\xdb\xbb\x43\x30\x65\xcc\x5c\x2f\x1c\x90\xde\x8a\x4a\x4e\x64\x88\x25\x26\xa9\xa8\x39\xb3\xc8\x52\x05\x36\x93\x54\xe5\x0a\xdd\x31\x67\xd2\x38\x00\xf9\xc4\xb9\x12\x09\xda\xa9\xb7\xde\x58\x79\xe6\x82\x72\x56\x52\x86\x55\x6e\x22\x0c\x1a\x6d\x49\x19\x71\x04\xd1\xa5\x62\x54\xb7\x4c\x01\xc6\x4c\x99\x23\x91\x38\x84\x55\xd8\x8d\x9a\x51\xd7\x85\x52\x20\xe2\xb3\xed\x74\xd2\x08\x8d\xa0\x2e\x7a\x28\x73\xde\x44\xf2\x2a\xe1\x2b\x05\x8e\xbf\x6e\xbc\x73\xb2\xdc\x30\x23\x50\x2f\x5d\x12\x2c\x23\x39\x05\x88\x4a\x88\xa6\xc8\x9a\x17\x59\x6a\xd2\x3d\x4a\x94\x43\x58\xa2\x05\x19\x81\xb6\xd7\x1b\x2b\xb2\xa8\x80\xb7\xa0\x6e\xe3\xd2\x6e\xd5\x95\x43\x58\x04\xb4\x5c\xeb\x81\xdc\xc2\xca\x0c\x69\xbb\x46\x21\x4c\x88\xe0\xcc\xab\x5b\x02\x6d\x47\x97\xe1\xcd\x3a\xe0\xd4\xf1\x6e\xa9\x84\x45\xcc\xe4\xfd\xca\xc3\xd2\xeb\x56\x12\xb7\x77\x6f\x19\xa0\x99\x0b\x4c\xe3\xe7\x38\xc1\x65\x9c\xc9\x49\xe6\xc2\x66\x06\xc3\x67\x01\x03\x12\x29\x96\x30\xb3\xa5\x84\xfa\x44\x9a\xb4\x84\x3e\x0a\xdd\x0a\xdb\x87\x7d\x1b\x67\xe9\xd2\xa2\xe4\x03\x71\x3c\x0d\x2d\x43\xcd\x70\x60\x59\x25\x81\x18\x21\xd0\xe1\x73\xb6\xe1\x4a\x0e\x04\x99\xe1\xce\x20\x44\x74\x56\xcf\xb1\xd0\x0b\x2b\x74\x82\x66\x02\x64\x0d\x2b\x4e\x0c\xad\x53\xcc\x20\x7d\x88\x67\x2c\x1a\x3e\xe2\xce\xf8\xff\x61\x56\xd2\xb0\x67\xca\xd5\xae\x75\xb9\xa0\xcf\x30\xc0\xe2\x00\xb3\x17\xb2\x64\x4e\x01\xb7\xa6\xbd\xa7\x74\xee\xdd\x55\x20\xe8\x56\xaa\xfd\xce\xa7\xc3\xd1\x01\xfa\xfe\x6d\x21\x0d\xe4\xd9\x4f\xe7\xaf\x17\x42\x11\x27\x4a\x77\x50\xc9\x5a\xb8\xd7\x95\xbb\x23\x80\xab\x6a\x1d\xc2\x72\xe3\x35\x20\x6c\x03\x40\x21\xd9\xb2\xe9\x8d\x6b\xe3\x76\xd5\x51\xc5\x5d\x4c\x4e\x06\x2c\xf5\xc8\xbb\x3f\x4c\xae\xb4\x0d\x94\x2f\x95\xb3\x4f\x5b\x70\x0a\xe0\x80\x0f\xb5\xcd\xde\xcd\x21\x68\xdb\x1b\x4d\xf8\x4d\xbb\x9e\xd5\x70\xe2\x8a\x16\x01\x1d\xa7\xee\x08\x46\xa8\x0e\x3c\x58\x74\x08\x7b\x5a\xc8\xac\x29\x4f\xd2\x85\xac\x44\xf5\x41\x1e\x15\x3d\x08\x25\xd8\x55\xd9\x0f\x97\xc4\xdb\x63\x96\x06\x40\xed\x97\x20\x02\x9e\x17\x60\x0b\xc0\x5a\x13\x15\xe4\xf3\xf4\xde\xdf\x1a\x6d\xfe\x3e\x46\x2e\x27\x28\xf8\x20\xd2\x01\x22\x7a\x7a\xb0\x95\x83\x0a\x17\x47\xcd\xfb\xf8\xea\xef\x67\x63\x1b\x73\x3a\x16\xae\x89\xde\xab\x31\x3d\x4e\x5d\x9e\x46\x38\xa6\xc9\xda\x65\x54\x60\x8f\xda\x6b\xdf\x66\x7d\xb7\x73\xc0\x82\x53\xfc\x17\x93\x80\x49\x82\x16\xb7\x82\x11\x0c\x01\xe7\x60\xf0\x16\x61\xd7\xf9\x39\x69\x97\xb0\x2f\x9b\x39\xa7\x5c\x30\x34\x23\x54\xc4\xbe\x00\x89\xf0\x60\xd1\x04\xc0\x2c\xac\xd0\x8c\x52\xb0\x73\x94\x53\xb0\x89\xb2\xf2\x33\x09\xcb\x08\x13\xc9\x43\x20\x1e\x0b\x2b\x1b\x96\xe5\x57\x5a\xe4\x95\x4f\xa2\x84\xac\x45\x6b\xec\x49\x54\x1d\x39\x52\x2b\x91\xa1\x25\x61\x3f\x1f\x5f\x88\x6e\x24\x1a\xa9\x0b\xbb\x60\xd5\x00\x9f\x12\x8c\x45\xbc\xae\x5c\x4b\x43\x87\x29\x09\xa5\x26\xdc\x01\x3f\x6d\xde\xc7\x36\x29\x63\x60\xfb\xc0\x40\x74\x8a\x38\xf5\x9c\x61\x18\x1c\xda\xa3\x9c\xf5\x6a\xf5\xee\x83\xe9\x49\xc1\xf7\xef\xf5\x8b\xa6\xa6\x00\x30\x08\x10\x35\xa5\x3e\x60\x4f\xd1\xb6\xb3\xae\x68\x81\x02\xc8\x00\x19\x0c\x01\x24\x68\x04\x20\x2e\x73\x3b\xda\x05\xe0\x7e\xd9\x68\xbc\x3c\x78\x59\x46\x34\xda\x0c\x1d\x91\x7a\x9c\x11\x7b\x2a\xd7\x68\x94\x61\xb2\xa9\x41\xbf\xf9\x39\x58\x3d\x94\x37\xc2\x3b\x10\x44\xc0\xe0\x4c\x11\xa0\x13\xdd\xc9\x15\xb3\x91\x26\xea\x3e\x28\x46\x49\xd0\x76\x7b\xa4\x1a\xd6\x3d\x94\x90\x00\xa7\x38\x2c\x0e\x3e\x8d\x91\x45\x49\x37\xe0\xe6\x01\x14\x4c\x0e\xa0\x9b\xb8\x22\x47\xbb\x76\x44\xfb\xf2\x22\x68\x89\x24\x0e\x35\x79\x4f\x42\xc7\x95\xaa\xa8\x51\xd5\x94\xe0\x16\x7d\xf0\x74\x1b\x3c\xf9\x33\x3f\x4f\x7f\xc2\xd8\xf9\xbb\x09\x2a\xbb\xeb\x97\xe0\x7d\x89\x2c\x04\xb0\x86\x3c\x9c\xaa\x82\xed\x5b\x0e\x87\xcb\xf0\x89\xda\xd6\x76\x9f\xb8\x92\x06\x1a\x1a\xa0\xc9\x24\x3e\x5c\xa0\x06\x43\x44\x35\xda\x7b\x35\xf8\x1b\x02\xc4\xde\x3f\x83\x5e\x46\xc8\xa4\x7d\x1b\x24\xdc\xff\xe5\xc4\x30\x1b\x93\x4d\x36\xe3\xd5\xc5\x9a\x67\x8c\x89\xcf\x05\x12\x98\x8f\xe5\xa5\xc8\x78\x3f\x39\x46\x86\xa5\x34\x0e\xd4\x7f\x61\x91\x40\xae\x21\x14\x23\x14\x7b\x26\x1c\x32\x1c\x26\x0e\x87\x0f\x0c\x22\x8a\xb2\x30\x95\xd7\x8a\x01\x87\x47\x3a\x85\x27\x74\x88\xd2\x26\x65\xb9\xa6\xe1\xca\x07\x49\x76\xdf\xaa\xf7\xd6\xb5\x2e\x50\xf4\x9a\xc6\x2a\xd7\x9a\xf7\xa3\x11\xa2\xaa\x0e\xb0\xc4\x6f\xfe\x94\x5d\x0b\xaf\x13\xb7\xb5\x02\x46\xc3\x2e\x9a\x29\x75\xe4\xdc\xf8\xb1\x32\x55\x09\xdb\x9c\xc3\xf6\xe4\x90\x9c\x38\x51\x7d\x0a\xb6\x61\x68\x1f\x75\xc5\x64\xe0\x6f\xfb\xfc\xd7\x31\x93\x0a\xe9\xd6\xdb\x1a\x56\x71\x27\x47\xec\xd4\xed\xed\x06\x46\x8e\x17\x7f\x1a\xc4\x43\x72\x76\x41\x5e\xe1\x16\xf5\x0a\x6b\x2f\x84\x22\x16\x52\x4a\xd9\x2e\xe9\x5a\x16\x36\xbb\x1e\x49\xf4\xcc\x5e\x8a\xd0\x85\xa0\xd0\xdd\x35\x14\xc3\x20\xae\x95\x8e\xca\x9d\x39\x21\xbb\x22\x92\x08\xd1\x06\xab\x7d\x81\x57\x0a\xb6\x90\xf9\x41\x05\x1a\x6b\x91\x21\x40\x8f\xe7\xa1\x51\x57\x13\x44\xfa\x13\x8b\x6f\x2c\x21\x16\xe2\xa8\x73\x0e\x34\xc3\x61\xb8\xf1\x04\x7a\xba\xf7\x83\xfc\x21\x4d\xeb\xb4\x48\x62\xfc\xa0\x01\x0a\x4b\x03\xe1\x75\x01\xde\x4d\x9a\x2e\x32\x2f\x48\xfd\x12\x30\x09\x4e\xf6\x6c\x89\x9a\x28\x88\x2c\xf3\x06\x41\x0a\x37\xec\x2e\x9d\x4d\x18\x2f\xf6\x64\x72\x4b\x79\x57\x9e\x03\xa9\xac\x11\xe5\xb0\x78\x62\x0e\x45\xf8\x2c\xc1\xd3\x8d\x52\x7d\x72\x7f\x20\xf6\x00\x9f\xba\x9f\xe4\xeb\x74\x51\x7b\x50\x33\x20\xb1\x44\xa1\x64\x92\x2c\x08\x21\xb7\xd2\xbf\x79\x52\xa4\xbc\x3c\xa5\x93\x61\x02\x33\x9e\x98\xfa\x10\x66\x6d\x14\x62\xbb\xc0\xe5\x2e\x03\xa6\x79\x1b\x1d\x63\xa5\xe0\x64\x0b\x7a\x45\xc1\x05\x51\x04\x1f\x1a\xa2\x05\x96\x44\x40\xba\xe9\xce\x86\x56\x57\x90\x6d\xc4\xab\xc1\x3c\xfe\x88\xdb\x33\x8b\x0e\x09\x55\x39\xd7\x05\xb8\x9a\xf6\x00\xa6\x7e\x6b\xf0\xa0\x8f\x50\x98\xaa\x35\x15\x05\x1c\x0d\xed\xb1\xba\x3a\x62\xeb\x43\xfc\x1e\x6c\xa3\x44\x87\xad\x1a\xae\xa1\x68\x7c\x85\xae\x59\xfd\x3f\x4a\x23\x52\x12\x4d\x50\x54\x11\x8a\x0c\x73\x06\x3c\x99\x31\x14\x1e\x5b\x41\x75\x61\xce\x84\x46\xf2\xea\x94\x2a\x13\x80\x56\x05\xd3\x9e\xc6\xd8\x61\x7d\x7d\x8c\x65\x34\xd1\x3e\xd3\x1d\x9b\xf3\x49\x46\x84\x52\xe3\x65\xed\x86\xa9\x70\x55\xa3\x9a\xc4\x4f\x5d\xf8\xba\x8c\x42\x47\x91\x53\xf5\x24\x1b\x66\xca\x3d\x8a\x6b\x4c\x12\x86\x19\x35\x92\xe9\x0a\x08\x6e\x42\x52\xf6\x96\x83\x02\xbe\x8e\x2d\xa5\x32\x85\x96\x86\x6c\xb6\xb4\x58\x42\x2b\x60\x16\xab\x50\x05\xa1\xa1\xf3\x9d\x6d\x33\x88\xdd\xea\xe5\x9d\x8f\x0c\x7e\xe9\x48\x51\x98\xfd\x18\x85\x04\x78\x1d\x39\xcb\xc3\x25\x4b\x1c\x9c\x8b\x7e\x60\xe0\xc9\x88\xe8\x22\x68\x78\x45\x83\x1c\x08\xd4\x27\xdf\x06\x20\x83\xe2\x83\xa8\x47\xdb\x0c\x13\xa3\x0f\x24\x6d\xa5\xc9\x80\x1c\x69\x92\xdf\xb7\x3b\x21\xab\x75\xa0\xa6\x9c\x43\x42\xa2\xa7\xf8\x0a\x94\x3f\x24\x45\x6a\xce\xc6\x33\xed\x84\x73\xde\x04\xcd\x08\x82\x0e\xf2\x41\xd3\xdd\x4e\x34\x60\xb4\xe4\x28\x8d\xdf\x64\x16\x78\xa5\x10\x32\xb8\x83\xb8\x2f\x10\x42\xa1\x9e\x44\x7d\xb5\x85\x46\x41\xfb\xa8\xc2\xad\xc1\x8a\xce\x48\xf5\x53\xd2\x08\xd3\x4a\x39\xd0\x5e\x31\xc1\x61\x2f\x13\x51\xf1\x53\x3f\x86\x60\xdc\x33\xea\x8a\xcb\x28\xf9\x93\x11\x93\xa8\xf8\xb4\x27\x93\x32\xf6\x72\xfc\x61\xd4\x1c\x7d\xe8\x34\x6b\x4b\x3b\x30\xd3\xaa\xa5\x4f\x93\xd8\x1b\x98\x7b\xd6\xd2\x95\x51\x21\xc7\x19\x40\x83\x9b\x05\x50\x73\xc2\xc7\xd3\x4a\x31\xb8\x10\x55\x17\x47\x7d\x03\x6f\xd1\x3c\x8e\x92\x11\x52\x0b\xb0\x9b\x77\xe0\x44\x93\x23\x2f\x25\x1a\x87\x22\x51\x1e\xb3\x07\xb1\x5e\xcb\x90\x75\x49\x43\xeb\x84\x1c\xb7\x28\x66\x81\x37\x8f\x21\xba\xe5\x13\x1b\x53\x25\x38\x68\xe1\x6e\xec\x00\xc2\x9b\x73\x95\x8f\x84\x0b\xec\x05\x91\x43\x0a\x1e\xe9\xbf\xd9\xf7\x51\x4c\x33\x97\xea\xfc\x34\xec\x6c\xc0\xb2\x8a\x44\x75\x28\xfc\x09\x23\xb7\x82\x77\x0e\xf9\xb2\x77\x0e\xb3\x78\x77\x0b\x77\x7f\x6c\x6e\x19\xb4\x79\x26\xd3\x26\xf0\x46\xae\xd5\xdb\x1a\xd3\xae\x6c\x45\x15\x67\xba\x2b\x59\xde\x29\x36\xbf\xdd\x9a\x0d\xaf\x29\x3b\xc8\x77\xf3\x69\x59\xdd\x6d\xe1\x1b\x65\x2b\x59\xb8\xd7\x78\x99\x4d\x40\xd9\x88\xd7\x6c\x6b\x2b\x4a\x22\xe2\x8d\xab\xc8\xeb\x4c\xac\x06\xd9\x62\x6e\x24\xbd\xbe\x09\x66\x0a\x00\x8c\xc2\x54\xf0\x22\x9f\x7d\x69\x65\x58\x60\x44\x82\x82\xbc\x45\x0f\x3a\xb5\x08\xa2\x16\x4a\xa8\x21\xf6\xda\x08\x4c\xd4\x44\x20\x63\x3a\xa6\x08\x77\x44\x32\x75\xd8\xbf\x84\x1c\xce\x2e\x82\xbd\x99\x8d\xfa\x50\x41\xe9\x27\x98\x97\x6a\x24\x39\x73\x17\xd2\xcd\x20\x46\xbf\xde\x5d\x62\xb7\xa4\x30\xe6\x76\x07\x25\xa8\xcb\xcd\x0f\x99\x47\x1a\xac\x58\x03\xc1\x00\x9e\x05\xcf\xda\x20\x84\x57\x36\xa6\x8a\x3c\x0f\x31\xc4\x15\x70\xc9\x2e\xb1\x32\x82\x05\xeb\x98\xe1\x77\xf7\xe1\x52\x0d\x16\x60\xa6\x64\xc4\x82\xf1\x59\xc7\x7d\x11\xef\xea\xfe\x6e\xed\xad\x3b\x44\x62\x5f\x02\x4e\x53\x0c\x66\xd7\xf4\xeb\x3b\x8a\x09\x9d\xba\x1c\xbe\x09\x24\x88\x94\x4e\x61\xa3\x14\xc6\x95\x0a\x4a\xe3\x64\x62\xb0\x5c\xf8\x40\xa3\x40\x8d\x2b\xdb\x75\xfa\x5e\x25\x9b\x83\x1e\x88\x61\x64\xaa\x31\x04\x53\x43\xa3\x57\x53\x8f\x15\xba\xa2\x02\x72\xf9\x6a\x45\x38\xe6\xdf\xd1\xd9\xda\x01\x42\x07\x91\xda\x51\xc8\x9a\xf1\xd8\xa3\x46\x90\xb0\xd5\x71\x60\xdd\xee\x7a\x95\x44\x48\x3c\x70\x8a\x24\x42\xe3\xb3\x54\x53\x76\x2b\xae\x3f\xa3\x91\x86\xcf\x69\x8d\x59\x99\x41\xc9\x29\xc6\x98\xc6\xf6\x08\x74\xf9\x0c\xb3\x60\xb0\x24\xee\x82\x2a\x55\x72\x1b\xaa\x84\x98\x9e\x54\x69\x24\x3a\x9f\xb7\xd4\xc6\xe2\x9a\x99\x5b\xce\x38\xec\x76\x57\x03\x8c\xe4\x8e\xc3\xa5\x5d\x19\x94\x4e\x80\x9c\x8b\x56\xed\x60\xa8\xec\xe5\xb9\xa9\x07\x76\x6d\x3e\x40\x10\xc1\x2f\x62\xa4\xb5\x14\x8b\x3b\xd0\x13\x9e\x3a\x44\xc8\xd7\x00\x89\x9e\x61\x4e\x33\x7d\x50\x84\x8e\x26\x48\xde\x28\x44\x60\xcb\xb9\x18\x32\x70\x7e\x8d\xa3\xab\x1b\x60\x24\x71\x02\xc4\x2f\xa3\x20\x23\x71\x62\xd1\x99\x11\xf2\x20\x76\xe0\xda\x1d\x71\x33\xf5\x05\xb3\xc5\x89\x32\x99\x04\x4b\x9b\x49\x39\xa0\xac\x41\x85\x86\x34\x36\x54\xe3\x40\xce\x35\x64\x3a\xc5\x38\xe2\xc4\x47\xcd\x22\xda\x63\x1b\x16\x97\x0f\x60\x0d\x55\x21\xeb\x1a\x3b\xec\xa2\xee\x49\x2f\xa4\x8e\x80\x3c\xaf\xb8\x0f\x09\x34\x5f\x4a\x18\xc0\xa6\xc9\xe1\x33\xe4\x0e\xa3\xd5\xed\x2b\x50\x77\x0c\x0d\x33\x08\x41\x7f\xa7\x49\xcd\xde\x5e\x6e\xc5\x46\x25\xf8\x7c\xfa\x3d\x66\xec\xc5\x22\xc7\x98\x5b\xd2\x73\x3d\xfc\xc0\xa3\xcc\x2d\xb6\x3a\xa6\x8b\x4d\xe8\xb1\x00\x02\xe7\xc4\x28\x3a\x9c\x95\xde\xec\x24\xf1\x79\x96\xc9\xde\x87\x26\x79\x11\xe6\x45\x10\xdc\xac\x69\x94\x73\x80\x7a\xa6\x80\xcf\x0a\xb8\x38\x6c\xff\xb1\xcc\x7e\x9e\x91\x81\x69\x74\xc2\x17\x60\x64\x61\x8b\xd6\x8b\x2b\xed\x04\x54\xc0\x9b\x70\xd5\x22\x96\xd9\x7c\x36\x48\x2b\x87\xc2\x05\x76\x61\xad\xce\xe5\x82\x21\xbc\x30\x78\x5e\xbd\x60\x3c\x72\x8f\x11\x49\x17\x23\x2c\x7e\x58\x66\xe5\x9e\xfd\x34\x2b\x43\x43\x13\xe9\x55\x50\x71\x8e\x44\x7a\x61\xa4\x7c\x58\x5d\xb9\xa1\x24\x72\x08\xa9\xd7\x2b\x89\x11\x3e\x14\x16\x54\xec\x19\x4d\x03\x82\xc1\x54\x99\x74\xaf\xb9\x30\x35\x8f\x8e\xa0\xa4\x2c\xae\x12\x76\x0c\x91\x28\x44\x36\x46\xcb\x1b\xab\x38\xfb\x57\xdd\xdf\x1d\x26\x79\x5d\x3f\x6a\xa8\x48\x08\x6d\x00\x02\xdc\x88\x76\x33\x85\xb5\x38\x33\x2d\xe1\x0d\xe0\x01\xa9\x48\x07\x94\x80\x85\x4d\x3b\xca\xa3\x82\xa9\x6d\x88\x6b\x11\xd8\x46\x8d\xd1\xe3\x70\xac\x60\x97\x2e\x88\xd4\xf1\x9b\x25\xc0\x24\xdc\x38\xda\x60\x02\x32\x64\x9b\xa2\x04\xad\xd4\xc0\xf9\x3d\xc8\xdb\x95\x24\x77\x21\xf3\x2a\x58\x91\x4b\x10\x50\x1b\xc7\xfa\x73\x20\x73\x92\xd7\x07\x11\xaf\x11\x2d\x88\xcd\x30\x55\x62\x50\x7e\x82\x90\x91\x4c\xbf\xf9\xe6\x6b\x10\xa0\x8f\x63\x07\xdd\x14\x13\xa0\xe2\x08\x05\x57\xdb\x7a\x24\xf6\x1b\xda\x14\x21\x0a\xa9\xbc\x56\xf4\x3c\x35\x1c\x6e\xff\x03\x9e\xaa\xf9\xb4\x81\xe7\xbf\xe9\xf1\x2f\xc6\x1b\x50\xd7\x20\x65\xc0\xb9\xa3\xa9\xcd\xde\xe9\x8a\xb2\xd2\xb4\xfa\xf4\xc6\x57\x07\xc7\xe6\xc0\x76\xba\x81\x75\x81\xf7\x82\xed\x06\x26\x3f\x2d\x76\xba\xa6\x67\x78\x2a\xf0\xe3\x06\x99\xbe\x26\xf0\x69\xbc\x1b\x93\x95\x61\xde\xab\x40\x01\x00\x00\xff\xff\x97\xe3\x57\xcc\x87\xe0\x00\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_eot() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_eot, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.eot", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_svg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x79\x97\x65\xc7\x71\x1f\xf8\x7f\x7d\x8a\x34\x3c\xe3\x33\xdb\x13\x32\xf6\x0c\x4b\x90\x87\x26\x69\x3d\xda\xb7\x44\x5d\x2b\xf5\x6c\xd7\xac\x8d\x46\x13\x6c\xab\xd1\x0d\x75\x03\x5c\x3c\xcb\x67\x9f\x13\xbf\xbc\x0f\x60\x17\xeb\x15\x74\x4c\xe9\x0f\x8d\x74\xfa\x9c\xbe\xb7\xde\xdd\x72\x8b\x88\x5f\x44\xc6\xf2\x27\xff\xea\x37\x5f\xbd\x69\xbf\x7a\xf5\xfe\xc3\xeb\x77\x6f\x3f\xfb\x84\xfe\xa8\x7f\xd2\x3e\x7c\xf3\xe2\xed\x17\x2f\xde\xbc\x7b\xfb\xea\xb3\x4f\xde\xbe\xfb\xe4\x5f\xfd\xe9\xdd\x9f\xfc\xb3\x9f\xfc\xfc\xc7\xf3\x3f\xfd\xc5\x4f\xdb\x87\x5f\x7d\xd9\xfe\xe2\xaf\xfe\xf5\xf6\xb3\x1f\xb7\x4f\x4e\x9f\x7e\xfa\x1f\xe4\xc7\x9f\x7e\xfa\x93\xf9\x93\xf6\x97\x97\x3f\x6b\xf4\x47\xf4\xe9\xa7\x3f\xfd\xf3\x4f\xda\x27\xbf\xfc\xe6\x9b\xaf\xff\xe5\xa7\x9f\xfe\xfa\xd7\xbf\xfe\xa3\x5f\xcb\x1f\xbd\x7b\xff\xe5\xa7\x7f\xf6\xfe\xc5\xd7\xbf\x7c\xfd\xf2\xc3\xa7\x7f\x79\xf9\xb3\x4f\xeb\xc6\x9f\xcc\x9f\x7c\xfa\xe1\x57\x5f\x12\xfd\xd1\x17\xdf\x7c\xf1\xc9\x9f\xde\xfd\x49\xbd\xf9\x37\x5f\xbd\x79\xfb\xe1\xb3\x27\x1e\xe7\xde\x7b\xdd\x5e\x37\x7e\xf1\xea\x17\x1f\xda\x9f\xde\xfd\xc9\x2f\xde\xbd\xfd\xa6\xbd\xfe\xe2\xb3\x4f\xfe\xfd\xbb\xcf\xdf\x7d\xf3\xee\xfe\xdd\xdb\x77\x9f\xb4\x5f\xbe\x7b\xff\xfa\xbf\x9c\x5e\x7c\xf1\xab\xd3\x6f\x3e\xfb\x84\x58\xfa\x27\xed\x4f\x71\xe7\xe9\x17\x2f\x5e\xbe\xba\x6b\xad\xb5\xe3\xaf\xaf\x5e\xbf\xf9\xed\xf5\xd9\x86\x87\x71\xf5\xdb\xb7\xaf\xbf\xf9\x70\xfa\xfa\xd5\xfb\xd3\xab\xaf\x3e\xfb\x84\xbb\x8e\xf5\xfb\xd7\x2f\xde\xbe\xfb\xf0\xea\x44\x9f\x7d\xd2\xdb\xef\xfd\x5b\xb7\xbc\xf8\xf0\xf2\xd5\xdb\x6f\x3e\xfb\x84\x49\x7d\xfd\xf2\xc5\xab\xe3\xa7\x93\x99\x1d\x37\xbd\xf9\xfa\x97\x2f\x3e\x7f\xf5\xcd\xeb\x97\x9f\x7d\xd2\x3f\x69\x9f\xfe\xe9\xdd\x9f\x7c\xf9\xe6\xb7\x5f\xff\xb2\x3e\xfc\xf2\xdd\x17\xaf\x3e\xfb\xa4\x7d\xd2\xf0\xcb\xe9\xed\x8b\xaf\x5e\x7d\xf6\xc9\x87\xaf\x5f\xbc\x7c\xf5\x7b\x1d\xe3\x7c\xf2\xd9\x7f\xf6\xf1\xb3\xaf\x7e\xf3\xf2\xcd\x8b\xaf\x9e\x7c\xf8\x8b\xcf\x3e\xb9\xf7\xec\x4d\x83\xce\xd6\xf5\x42\x6a\x7e\xf6\xec\x17\x0d\x7a\xb8\xd7\xe1\x2d\x63\xaf\x03\xa9\x35\x23\x6d\x14\x31\xbd\xf7\xc6\x3d\x77\xb7\xa8\x63\xf3\xba\x1e\x31\x83\x70\x7b\x1d\x8c\x9a\x8f\xba\x8a\x9b\x4f\x44\xbb\xa9\xd4\xb1\x19\x59\xfd\xbc\x5e\xfd\xf0\x64\xf3\xff\xc5\xdf\x7c\xfb\xee\x9b\x3f\xfe\xb8\x0f\xf5\xd3\xab\x2f\x3e\x7f\x73\xb3\x17\xd6\xad\x91\x72\x6c\x3a\xb4\x51\xb7\x38\x8b\xe9\x26\x56\xbf\x12\x5d\xc8\xc4\xcf\xd6\xed\x52\xf7\x3c\xdc\x0f\xe7\x75\xf7\x50\x5a\x77\x07\xf1\x16\x24\xbf\x73\xf7\x70\xd9\xae\xf7\x3d\xdd\xd0\x7f\xfe\x71\x1b\xdf\x7e\xfb\xd5\xe7\x45\x42\x5f\xbe\xbd\xd9\xca\xe8\xd1\x94\xfa\x59\x55\x36\x71\x69\xfd\xcc\xdc\x37\xe9\x1d\xbf\x3a\x5d\x4c\xe3\x2c\xec\x9b\xa4\xb5\xec\x74\x26\x89\x0b\x75\xed\x67\x65\xde\xac\x6b\x5b\x33\xa4\xb1\x99\x5b\xc3\x95\xc1\xb9\x25\xd1\xba\x42\xdd\x74\xcb\xe0\x75\x89\x28\xe2\x52\xaf\x49\xb5\x6d\x84\xb7\x7a\x3d\x51\xe7\x4b\x7d\x6e\x58\xdf\x22\x7a\xeb\x67\xe7\xd8\x8e\xa6\x3d\xdc\xab\x27\xee\x0b\x91\x6d\x74\xbe\xab\xe7\x4d\xc6\x76\xfc\xfe\xf4\x50\xfc\x37\x1f\x0f\xc5\x17\xef\xde\xbc\x79\xf1\xfe\xe6\x30\x64\x8f\x26\x61\x7b\xf6\xd1\xd4\xbd\xd5\x2c\x98\xd0\x74\xf6\xe6\xaa\xbb\x89\x34\x0f\x69\x6a\xa3\x05\xd1\x14\xe9\x6d\x74\x9a\xac\xd1\x92\x79\x32\x8d\x46\x3d\x72\xc7\x09\xb9\x34\x56\x69\xc4\x42\x53\xc8\x1a\x89\xe6\x54\x1e\x8d\x54\x68\x5a\xd4\xf2\x0d\xbe\x90\x27\x9f\x83\x6b\x0d\x04\xef\x23\x6b\xb2\x35\x5b\xd6\xf2\x15\xa1\x49\x7d\xf4\x46\xbd\x8f\xf3\x48\xdf\x47\x7a\x7d\xc3\xda\xa8\x5f\x49\x68\x0e\xe1\x3b\x62\x1e\x33\x4c\x1b\x71\xf2\x74\xcd\x46\x42\xb6\x5b\x7d\xac\x3e\x5d\xbd\x21\x36\x9e\xda\xa5\x51\x1f\xbc\xaf\x13\xe1\xa6\x94\x2d\x53\x66\x8d\x63\x75\xc2\x6c\xb4\xe1\x32\x8b\xfe\x46\xcf\x3d\x86\xb6\x88\xd1\x86\x65\x0b\xed\xb3\xda\xe5\x56\xcd\x72\x6b\x26\x32\xa9\xa7\x34\x89\xd8\x71\xc2\x59\x8d\x75\x6f\xcc\x34\x73\xd4\x80\xc8\x1c\x1e\x8d\x65\x46\x1f\xed\x44\x7e\x39\x71\x1f\x67\xb3\xbc\x9c\xa8\xc8\x98\xda\x29\x6b\x8e\x1b\xe5\xe4\x51\xcd\xea\x93\xd2\x1a\x8b\x4d\x72\x6e\xca\x79\x16\x8d\x5d\x34\x9a\xa8\x35\x09\xbe\xe3\xec\x53\xc5\x1b\x77\x9a\xc6\xde\xc8\x74\x3a\x47\x23\xed\xbb\x67\x51\x47\x6f\xa1\xda\xc8\xbc\x06\xa8\x71\xe7\x39\x8a\xf4\xc3\xe7\x31\xcd\x4f\xaf\x98\xff\xf6\xe3\x15\xf3\xf5\xab\xf7\xc5\x24\x6f\x2e\x99\xfa\x04\xa5\xee\x75\xe4\x62\x2f\xd4\x48\x3a\x4f\x22\x6e\x24\x29\x93\x12\x5c\x4a\xa7\x80\x16\x22\x76\x89\xc0\x49\x53\xb4\xd7\x6c\x5a\x5d\xaa\x9b\xad\xe8\x5a\xba\x4c\xc3\xe4\xa6\x5e\x88\x28\x76\xfc\xd5\xbd\x37\x73\x8c\x4e\x4e\x23\x6e\x59\xfc\x8a\x31\x31\x53\x48\xda\x10\xdf\x59\x47\x1d\x1b\x65\xfd\x3e\x26\x91\xb4\xa4\x9c\xf5\xde\x7a\x4e\xf5\xae\xde\x78\xa9\x77\x3f\xdc\xd3\xe0\x86\x0f\xe0\xa4\xd7\x82\x1b\x59\x7c\x67\x4c\x26\x3c\x11\x93\x8d\x5b\x06\xe1\x0b\x69\x35\x09\xa3\x8e\x35\x09\x2d\xa3\x4f\x5d\x37\xfa\x54\x59\x0c\x6e\xaa\xae\xb7\x5e\x8e\x81\xe1\x46\xcc\xd6\x54\xac\x86\x48\xd7\x13\xd2\x7d\xd6\x2b\x48\x94\xd7\xd0\x88\xf9\xce\x45\x13\x62\xde\xea\xab\x24\x2a\xab\x1d\xd2\x63\xa2\x65\x6c\x36\x57\xa3\x8f\xa1\x79\xb8\xf7\x5a\x10\x32\x76\x1c\xd3\x9a\xd7\x82\x51\x9f\x41\xda\x4c\x7c\x46\x8e\x3b\xcb\x98\x49\xd2\x9c\xfb\x9e\x91\x75\x6c\xd4\x39\x9b\x65\x0d\x11\x09\xee\x24\x72\xc5\xa3\x54\x9f\x10\x19\x17\xf6\xbe\xe3\x0f\x2e\x62\xa1\xe2\x6c\xc6\xeb\x01\xaf\x75\x2f\xbd\xf1\x4c\xb2\x76\x62\xda\x87\x66\x1d\x5b\x64\x36\xc2\xe7\x9d\xa7\xd7\x84\x59\x51\xa4\x35\xf6\x7e\x11\x19\x0f\xf7\x31\xa4\xfe\xd8\x71\xe4\x6c\x91\x25\xb8\xfa\x1c\xe0\xf3\x39\x47\xd1\x31\x09\xde\x9c\xb9\xa7\xf5\x96\xd9\x32\xea\x57\x9e\xd4\x4b\xde\xe9\xa8\xef\x3b\x9e\xa3\xae\x72\x7d\xfb\x5e\x7f\xdc\x89\xd7\x34\x8a\x37\xa9\x0e\xd6\x03\xaa\x39\xb3\x58\xd7\x30\x0c\x85\x66\xee\xa3\xd6\x60\x66\x1b\x56\xbf\x3b\xbe\xaf\xd6\x67\xb5\xa7\x1e\xac\xf6\x1d\xc3\xf0\x70\x2f\x39\x1a\x8d\xb1\x71\x11\x91\xf5\x0d\x8d\xe4\x11\x5b\xd6\xb0\x30\xdb\x76\xdc\x71\x43\x78\xbe\xf8\xea\xeb\x47\xb2\xf3\xc5\x57\x5f\xbf\x7a\xff\xe1\xc5\xdb\x2f\x6e\x12\x17\x81\x50\x65\xaf\xa3\x6a\x6f\xc4\xd5\xe0\x5a\x0b\xd2\xbc\xcb\x64\xcf\xe6\x19\x53\x46\x6f\x31\x6c\x07\x15\x84\x37\x0e\xad\x35\x3a\x59\x30\x64\xbe\xe3\x84\x89\x1a\x5b\xad\xa2\xf0\x29\x52\xeb\x6a\xf8\x54\xb5\x45\x9f\x06\xc6\x1b\xb1\xbb\xeb\xa2\xcf\xe0\xe2\x23\xc6\x73\xd4\x7a\x91\x61\x73\x14\x77\xe2\x51\x2c\xc4\x6a\x41\x8c\x7d\x9d\x90\xdd\x0d\xf0\xbd\xe0\x39\x4a\x18\x64\x9f\x31\xa8\x25\x8d\xe9\x18\x61\xda\xbc\x5b\x8b\xa0\x2d\x89\x9b\xd4\x93\x1a\x4d\x85\x5b\x7a\x34\xeb\x03\xbc\xd2\x83\xcf\x44\x66\x7b\xfd\xd7\x0c\xcc\x85\xb2\x48\xa7\x66\x91\x1b\x4b\x6c\x44\x59\x02\x3a\x83\xb7\x51\x34\x41\x7d\x1f\xc5\xe1\xab\xbd\xc5\x6a\xa6\x49\x2d\xc4\xbe\xd7\x88\x9d\xb8\x37\xf1\xde\x72\x32\x6b\xcb\x3e\x49\x46\x63\xd2\x79\x0c\xed\xc3\x7d\xdd\x4d\xd2\x77\x2f\xfe\x2b\xbd\x79\x91\xa0\x15\xdd\x64\x63\xe9\x9b\x86\x37\x77\xda\x54\x47\x73\x89\xbd\x66\xd9\xd2\x9b\x78\xdc\x99\xc5\x14\xee\x4d\x87\x4e\xce\xd1\x94\x69\x72\x32\xe6\x0c\x47\xe6\x26\x7d\x34\x8e\x31\x0b\xf2\x14\xb3\xae\x2e\xd7\x22\x3f\xbe\xfb\x70\xaf\x35\xb8\xc4\x63\xc7\x49\x8f\x22\xdf\x82\x10\xd5\x13\xb2\x36\xb2\x6f\x5e\xc3\x34\x64\xf7\xc5\xfe\xb4\x39\xa4\x04\x07\xc8\x8c\x7a\xc8\x0c\xae\xa1\x60\x9a\x81\x39\xf7\xb1\xaf\x93\x1c\x2d\x18\x0b\xd4\xa7\x67\xac\xc9\x77\x70\x17\xa2\x35\xe7\xc2\xb6\x9b\x75\x9c\x34\x2b\xc9\x2d\xc5\x29\x6b\x15\xb0\x17\x5f\xa3\x46\xdc\x75\x2a\xf7\xbb\x6a\xe8\xad\x05\xfe\xf5\xbb\x0f\x4f\xa1\xc3\x0f\xaf\xdf\x7e\xf9\xe6\x69\x8c\x0c\x98\x6b\xb5\xec\xd8\xd0\x49\x40\x3e\x4d\xdd\x34\x6b\x55\xf6\x5c\x90\xcf\x4d\x0a\x20\xde\x90\x58\xff\xdd\x23\x89\xf5\xe2\xfd\xab\xb7\x6f\x5e\xfd\xe2\xb6\xcc\x12\x8b\x66\x49\x7b\x1d\x6b\x94\x24\xb2\x0d\xef\x13\x24\xd6\x4b\x0c\x95\x60\x2a\x09\xeb\xd5\x77\xd5\x31\xa3\xf0\xa8\xb9\xcf\xa1\xde\xc8\x55\xb6\x31\xc0\x0d\x69\x1f\x0c\xba\xd1\x16\x7e\x88\x3c\x0c\x2f\x65\x4c\x0b\x69\x59\x50\x47\xb9\x59\xca\xc5\x22\xf7\x3a\x97\xe4\x66\xc1\x8d\x95\xa6\x1b\xb5\x13\xfb\x0c\xaf\x23\xeb\xac\x17\x9f\xc4\x0a\x03\x7b\x3b\x69\xf4\x3d\xd2\xef\x4e\x25\x47\xaa\x15\x27\x49\x45\xbb\x4e\x35\x93\xd5\xd2\x13\xd1\x40\xdb\x6b\x95\x8d\xde\x84\x78\xa2\x8b\x83\x2e\x96\xf4\xf4\xa0\xfd\xf7\x4f\x0c\xda\xfb\xd7\x5f\xfe\xf2\xf6\xa8\x15\x7f\xb7\xb1\xf8\xbc\xca\x68\x83\x03\x9f\x0a\xf7\x16\x39\x3d\xb2\x5a\x52\x9d\x2e\x79\x10\x36\xd5\xab\x23\x29\x53\x2c\xd1\x91\xad\x68\xa5\xba\xb6\xcb\xe0\x76\x2a\xa9\xa7\xa5\x7e\x30\xe7\x34\xab\x93\x9c\xb5\x0a\x58\x3b\x04\x87\x45\x5e\x2c\xd7\xb2\x8f\xd1\x5b\xf5\x3a\x85\xa7\x15\xbc\x2b\x40\x53\xcd\x20\xed\x0c\x22\x24\x93\xbe\xd5\xa7\x6a\x7a\x76\xed\x79\x47\x0e\xe4\xa7\x6b\xe6\xac\xe4\x47\xcd\xa5\xc7\x58\xb3\x5b\x2d\xa7\x9e\x3a\x07\x3b\x16\x00\xba\x98\x74\xb1\x71\x63\xd4\xfe\x87\x47\x1c\xfc\xc3\x37\xaf\xde\xbf\xfe\xf0\xd7\xb7\xb5\x1f\x89\xa2\xd5\x8d\xbc\xb7\x88\xdc\x98\x8a\x31\xeb\x66\xb5\xe2\xba\x6c\x06\x21\xc2\x7a\x0e\xe1\x2d\xba\xb4\xc8\xd8\x80\x1e\x53\x8b\xd3\x71\x6f\xe1\xb9\x85\x14\x6b\xb4\x2d\x53\x9b\x18\x6d\x43\x47\xad\x9d\xcd\x45\x9b\x77\xdd\x94\x19\x32\xa9\xe0\x83\x98\x6f\xc7\x67\x9f\xee\xc3\xff\xf8\x68\xe6\xdf\x7c\xfb\xe1\xb6\x5e\x44\xb5\xaa\xe8\x0c\x38\x63\x59\xea\x58\xbf\x90\xfa\xd9\xd8\xf0\x37\x51\x5e\xea\x86\xfa\x9b\xb8\x3b\x6e\x88\x5b\xc3\xf7\x3f\x7d\xfc\xe9\x97\xef\xbe\xfa\xea\xc5\x6d\xc6\xa0\xd2\x54\xf6\x3a\x9c\xb4\xd5\xba\x38\x15\x54\xcc\x82\xd0\x16\x13\x8a\x2b\xe0\x94\x67\x3b\x89\xf8\x26\xa6\xb5\xf0\x6a\xee\xb9\x18\xbf\xb4\x1a\x97\x13\xb1\x02\x92\x69\xbf\x30\xe5\xd9\x55\x2e\x7a\x63\x68\x4e\x1f\xb7\xef\x97\xbf\xfd\xfa\x97\xaf\xde\x1e\xaa\xd1\x90\x66\x4e\x67\xa6\x71\x09\x92\x73\x0e\xb9\x98\xdf\xe8\xe7\x1f\xfd\x1e\x86\x7e\xfd\xee\xb6\x94\xd7\x42\xc8\x25\xaf\xea\x68\xbd\x41\x65\x2e\xda\x16\x81\x12\x61\x31\x0a\x0f\x4e\x57\x6a\xec\xb2\x7b\x44\x1d\x5b\x74\xc5\xef\x61\xbd\x31\xf3\x2c\x25\xa5\x9e\x8b\x52\x3a\xb8\xe0\xd5\x68\x49\xb5\xee\x9a\xfb\x0c\xa3\x56\xe2\xa1\x5b\x3b\x0d\xbc\xeb\x44\xb9\x97\x50\x3e\x51\xb6\xfa\xc6\x29\xd7\x27\x69\x5a\x2f\x15\x67\x1e\x0d\x7b\xba\x8f\x9f\x3e\x32\x84\xbc\x79\xf1\xe1\x97\xb7\xbb\x48\x35\x6b\x6c\x67\x36\xde\x86\xf7\xab\x52\xcc\xb6\x5d\x2f\x3d\xfd\x95\xfe\xf1\x57\xfe\xcb\xab\xf7\xbf\x6f\x46\xfa\x1e\x2d\x8d\xd1\xcc\x4a\x0f\x1b\xa3\x29\x74\x51\xf3\x56\x72\x2e\x8b\x09\x48\x21\xcc\x68\x05\x49\xea\x9b\xdc\x77\xeb\x01\x84\x00\xc9\x3b\x26\x47\x49\xba\x9c\x14\xa3\x09\xf5\x09\xe3\x8a\xc5\x65\xe4\xd8\x09\x32\x59\xa2\x51\x69\x2f\xa4\x0a\xf0\x45\xc2\x3e\xb5\x5e\xaa\x52\xaf\xf5\x85\xa0\x02\x3a\x6e\x44\x2b\x60\x42\x2a\x39\xd3\x65\xdd\x8c\x26\x11\x69\x01\x9a\x31\xda\xc8\x71\x31\x8b\x87\x7b\x11\xba\xb3\xd4\x6d\x14\x88\xec\x9c\xfb\x00\xcc\x0f\x6d\xa3\x44\x3c\x6b\xae\xd7\x97\xb0\xd6\x38\x84\xb5\xf6\x6a\x30\xc7\x14\x70\xc6\xe2\x96\xfa\x70\x9f\x9d\xdb\x30\xde\x44\xbc\x94\xdb\x5d\x4c\x0a\x81\x34\x65\x69\x25\xc7\x7d\x89\xf8\x3d\x0a\xb8\x96\x06\x5f\x93\x2e\x7d\xd6\x73\x46\xe3\x32\x8c\x9f\x9e\x0c\xfa\x78\x32\xde\xbd\xbd\x2d\xd5\x23\xb4\xf5\xb3\x8d\xbc\x10\x73\xdf\xb8\xc3\x30\x50\x3c\x42\x75\x8b\x62\xd2\xb5\x00\x22\xf4\x72\x63\x79\xf1\xc7\xdf\xfa\xe6\xd7\xcf\xcd\xbb\x47\xeb\x67\x22\xb9\x90\xc8\x66\xd9\x9b\x17\x99\x98\x42\xba\x17\xea\x89\x91\xe0\xf6\x23\xfb\x1c\x5d\x5a\xc6\x98\x18\xd7\xee\xba\xe3\x84\x68\x14\xf3\x85\x96\x33\xa3\x84\x3c\x97\xa8\x58\x43\x24\xd3\x2c\x6a\xc8\x75\x87\x19\x4b\x58\x1b\x60\x51\x5d\x12\x28\x78\xb5\x20\x80\x46\xad\xaf\x75\xd4\x39\xce\xc3\xf6\x61\x0b\xc2\x52\x2d\x92\x52\x56\xb8\xe7\xd2\xec\xc4\xe2\x8e\x54\xfb\x7a\xb7\x86\xef\x0e\xc2\x08\x6f\x51\xaf\x2c\x4d\x0c\x8b\x40\xbc\x16\x70\x89\x3c\x18\x1b\xfa\x42\x89\xfb\x71\xd6\xa3\x7a\xd3\x52\x75\x26\x65\x1b\x34\xa0\xef\x7b\xfa\x0c\x8e\x66\x61\x58\x08\x64\x74\xae\x81\xba\x35\xde\xf2\x68\xbc\x7f\xf9\xfe\xd5\xed\xd9\x95\xec\x6d\x50\x9c\x8d\x79\xb7\xe4\x3a\x6f\xa5\xe1\x8d\xd2\x37\xc5\xda\x18\x63\x46\x52\x41\xfb\x39\x08\xba\xfb\xd8\x71\x42\x69\x2d\x14\x8a\x70\xc9\x7c\x3b\x06\x35\xfd\x18\x54\x1d\x4b\xdb\x15\x28\x55\xe6\x4b\x35\xa6\x08\xe0\x6a\xea\xa1\xd5\x8b\x9d\x7a\x11\x11\xe6\xa4\x78\x9d\xf4\xc9\x52\x34\x61\x63\x4a\x00\xb2\xe9\x7a\x3b\x86\x15\x08\x33\xfc\x0e\x88\xb8\x14\xbc\x11\x45\x8d\x41\x8b\x2c\x59\x79\x66\xe1\xcd\x5a\x0c\xeb\x84\x0b\x6f\x97\x7e\x1f\x33\x95\xd7\xb2\x09\x69\x83\xfa\x8c\xa0\x16\x1a\xfb\x28\x3c\xc6\xda\x4a\x07\xf1\x11\xb3\xd4\x40\xef\xa5\x58\x74\x6b\x56\x0a\x7b\xa7\x68\x8a\xc6\x52\x34\xe9\x8a\x57\x32\x1b\x10\x5e\xf2\x0c\xc9\x56\x83\xe0\x4b\x5b\xf1\x43\x5b\xa9\xf9\x9f\xa5\x16\x0f\x9f\x24\xc5\xb4\x65\x96\xdc\x1f\x7a\xe6\xc8\x9d\x23\x9b\x70\xb4\xd2\x37\x78\xf4\x59\x52\xaf\xd6\x95\x16\x42\xd5\xf5\x3e\x12\xda\x9d\xf2\xae\x1e\xf7\xc0\xa2\x9a\x51\xa3\x95\xb5\xec\xb9\xf1\x60\x2c\x12\xed\xbc\xe3\x18\x35\x9f\xbd\x19\xe5\x0c\x8d\xe6\x7d\xd9\xd0\xdc\x68\x1a\x73\x73\x8f\xb3\x64\xbf\x0c\xba\x61\x66\xd4\x8f\x57\xcf\x2f\xde\x7d\xfb\x8c\x91\xb1\xe6\x79\xe4\x99\x88\xa3\x34\xf6\x73\xb2\x5e\xfa\x39\x24\xf1\x57\xd8\x45\x35\xb6\x58\xb6\x21\xc7\x55\x1d\xf9\x70\xcf\xa3\xe3\xb9\xba\x91\x98\xfa\x16\x1d\xf4\xa6\xdb\x71\xe5\xe9\xa6\xd9\xa3\xa6\xbd\xfe\xd5\xed\x75\xcd\x05\xa2\x0b\x45\xc2\x10\x01\x09\xe5\xfd\x52\x2a\xd3\x59\x3d\x37\x18\x9b\xc6\xd8\x35\x4a\xb3\x95\x66\x07\x1e\xad\x21\x4e\xa3\xbd\x96\x46\x1a\x95\xb6\xdb\x92\x7c\xe6\x08\xd0\x63\x29\x68\xcd\x5d\x27\x51\x81\x12\xd7\x1d\x27\xa5\x97\xc2\x92\xc9\xb5\x12\xb3\xd6\xf9\x98\x05\xed\x28\xa6\xeb\x5a\x15\xc5\x1b\x20\xa1\x62\x34\x9b\x52\xb0\xbb\xd6\x7a\x34\xee\x3e\x69\x44\x93\x21\x67\x71\xd9\x65\xf4\xbb\x52\xee\xb5\x10\x65\x1a\x5e\x50\xcb\x20\x60\x3f\xa2\x16\x30\xc4\x28\xde\x0f\xcb\x64\xef\xad\xe4\x51\xd2\x68\xea\xbc\xd7\xd1\x4a\x18\x64\xa1\xfc\x9c\xb5\xbc\x3d\x09\xb0\x21\xbc\xc3\xb6\x18\xc3\x76\x1b\x54\xc7\x66\x3a\x0a\x59\x4c\x1d\x81\xeb\x2a\xa5\x4b\xd1\x94\xd2\xe2\x93\xb7\x63\x28\x9f\x9e\x13\x7f\x84\x1d\x5e\xff\xe6\xb6\xd6\x61\x30\x1f\xc6\x85\x38\xe9\x3c\xb4\xef\xa1\x80\xef\xb4\x34\x75\x8e\xd2\x07\xea\x17\xee\x13\x9d\x27\x65\xb4\x82\x7a\x9d\xe8\x68\xc9\x79\x58\xaa\x4b\x16\x7a\x1b\xda\x1b\x38\x58\x29\xb7\x2e\x2d\x69\xbd\x22\x55\xa6\x6b\x01\x74\xdb\xc3\xa4\x8e\xad\xa8\x23\x49\x67\x3a\xb7\x01\xea\x2e\x68\x6d\x7d\x52\x77\x6a\x1a\xb6\xe3\x44\x02\xc6\x64\x69\x3c\x8a\x58\xe3\x8e\xd8\xe7\x28\x26\x55\x62\xbb\xaf\xa9\x84\xce\xd6\x61\x8a\x16\x34\xcc\x6d\x72\x51\xa5\xe5\xa4\x2c\x19\x6d\x93\x4c\x9b\xd6\x77\x60\x79\x1f\x17\x67\xdb\xeb\x1c\x3a\xbc\x49\x1b\x6c\xcb\xa2\xda\x81\x57\x4a\x5e\x65\x9f\x5a\x88\x51\xa4\xcf\x92\x7d\xa4\x2c\xb3\xfa\x58\xc3\x76\x1e\xe6\x0f\xf7\x4e\xda\x46\xa7\xdd\x3c\xea\xd8\x8c\x4b\xa1\x72\xf0\x8c\x50\x9d\x12\xda\x3c\x72\x0a\x8f\x66\x69\x17\x13\xd9\xeb\xbc\x26\x55\x8c\x9a\xb8\x4c\xa5\x42\x09\x31\xad\x4b\xa3\x5a\x10\xb0\x97\x14\x1a\xc5\xb7\xef\x56\x0b\xc7\x1c\x3d\x5b\x41\x92\x51\xc3\x22\x3c\x47\x64\x75\x79\xaf\x23\x16\x58\x29\x76\xc5\x4f\xa9\x44\xf3\x98\x51\x8b\x33\x64\x1e\x6d\x7c\x7a\xc1\xc4\xa3\x05\xf3\xea\x57\xaf\x6e\x6f\xe6\x50\x87\x38\x31\xde\x14\x96\x22\xce\xdc\x6a\xb9\x13\xa7\x16\xd7\xb9\x1c\xa4\x9d\x7e\xa9\xbb\x9e\xfe\xe2\x78\xb4\x57\xf7\xac\x6a\x4c\x3d\x40\xca\x10\x4c\x09\x8b\x16\x75\xa2\x36\x8a\xcf\x5a\xc9\xf3\xdc\x93\x18\xb3\x98\x16\xcd\xb3\x16\x90\x94\xc0\x28\xee\x50\xe4\x54\x27\x60\x0a\x29\x8b\x3b\x70\x02\x9e\x44\x63\x2a\xe1\x52\x9c\x67\x0e\xa6\x76\x60\xf7\x5a\x50\xd0\x80\x7a\x53\xcb\x16\x53\x88\x4b\x62\x70\x4d\x13\xf9\x2c\x98\x8a\x77\x45\x1c\x3c\x41\xf1\x11\x56\xc1\x57\x85\xfb\x5d\x35\x43\x99\x5a\x58\xdf\x6b\x05\x17\x68\x13\xa9\x69\x88\xc9\xf8\x22\x4f\x66\x6f\x19\x32\xb9\xe4\x70\xf5\x90\x97\x40\xa6\x63\x6b\x47\x0d\xe0\x13\xd2\x14\x9b\x2c\x5a\x48\x15\x7a\x79\xf8\x1e\x72\x20\x9a\x5a\x15\xb8\x94\xe0\x4b\x41\x8b\x92\x88\xb5\x20\xf1\x31\x7a\x0f\xf7\xc5\x85\x24\x03\xdc\x48\x0d\xf0\xb8\x59\x4f\x2c\x67\x2b\x44\x63\xdc\xdc\x64\xba\x64\xf3\x90\xdd\xc2\xb1\x21\x65\x6c\xf8\x5d\xa5\x16\x70\x4c\x29\x6d\xad\xe7\x14\x17\xbc\x0f\x47\xd1\x3b\x29\x09\x3c\x0c\xf7\xad\x9d\x13\x83\xd0\xac\x21\x05\xb7\xec\x07\xb7\xb4\xc3\x12\xad\x1d\xf7\x8d\x8c\xc6\x43\xe7\xd1\xbe\x87\xfb\x31\x96\xdd\x6d\xc7\x09\x95\x60\xa8\xce\x53\xe8\x04\xe6\x67\x93\x19\xd5\x41\xe9\xb6\x86\xa3\x70\x8e\x5d\xc1\xa3\x69\x5f\x38\x67\x59\xd9\xac\x94\x08\x5b\x38\x47\x0a\x84\xd6\x9b\xd7\x09\x15\x86\x57\xec\x40\xd4\xbd\x23\x65\x9a\x52\x1b\xe0\x55\xbd\xf8\xc1\xee\x09\xbe\xd0\xa2\xa4\x83\x32\x1a\x30\x92\xe7\x70\xbf\xab\xe7\xae\x6d\x7d\x7a\xa1\xe7\xa3\xcd\xd2\xd7\xcf\xa0\x7a\xb0\x39\xd7\x5d\x83\xeb\xd8\x4c\x4b\x9d\xa2\x09\x8d\x54\x68\x46\xf4\x26\xdd\xe7\x90\x5e\xd8\x62\x0e\xb7\x66\x24\xe0\x01\x2e\xb2\x0f\xab\x25\x5f\xad\xd5\x66\x11\xd8\xb0\x33\xe9\xd3\x7d\x34\xcd\x9c\xe6\x05\x0d\x62\x57\xf3\x3a\x36\x29\xa9\xc7\x39\xb9\x98\xa5\xd2\xa4\x80\x85\x64\x92\x66\xcb\x82\xc0\x9a\x4b\x82\x2e\xa5\xcc\x7d\x32\x6c\x70\xa5\x94\x15\x9b\x52\xb1\xe9\xbd\xdf\x2d\x18\x38\xf4\x40\xd7\x86\x4d\xd9\x6a\x16\xcc\xda\x63\x26\xac\xe2\x20\x4a\x40\x75\x2f\xaa\x2c\xa2\xe9\x72\xec\xf3\x8d\x11\x97\xc1\x7d\xc7\x1f\xc0\x26\xa5\xc7\xb9\xd4\x23\x4c\x4d\x95\xb0\xb2\x39\x3a\x88\x94\x60\xc9\xd2\x26\xc5\x5b\xa5\x9d\xe8\x2c\xa6\x17\x72\x3d\x2f\x9b\x73\x6a\x73\xed\x7b\x2d\xbb\x9a\x45\x1f\xb5\x7c\x6d\x86\x17\x6f\xc8\x39\x44\x5b\x78\xc1\xff\x02\x13\x7c\x49\xe2\xbd\xce\xa9\xf7\xc4\x3e\x64\xf1\x8c\x19\xa5\x2a\x16\x3a\x04\x10\xe2\xd4\xe9\xa5\x0f\x4a\x81\x72\xf1\xbb\x3a\x69\xf0\x11\xe0\xac\xf1\x58\xdb\x50\x53\x6a\xcc\x88\x0e\x9d\x71\xf0\x8e\x63\xad\x6b\x8d\x36\xac\x16\x60\x41\xf4\x98\xa5\xbf\x7a\x94\x4c\x41\x63\x9f\x5e\x3d\xff\xf2\xb1\x45\xe7\xcd\xbb\xdb\x8c\xd9\x74\x19\x3a\x70\xb4\xde\x80\xd0\xc3\xa7\x8d\x65\xe8\x70\x3e\x0c\x1d\xb9\x0c\x1d\x35\xce\x30\x74\xd8\x32\x74\x8c\xbe\x0c\x1d\x83\x97\xa1\x63\xc8\x32\x74\xd4\x31\xa9\x0d\x86\xa1\xa3\x04\x1c\x17\x70\x59\x86\x8e\x3c\x0c\x1d\xb6\x0c\x1d\xf5\x8d\x53\xae\x4f\x12\xc0\xb2\xdb\x3c\x1a\xf6\x80\x16\x66\xfa\x6a\x61\x67\xaf\x26\xde\x51\x37\xc6\x03\xd4\x33\xd0\xc8\x22\x78\xbc\x99\x48\x12\xcd\xac\x13\xb4\x13\x97\x06\x34\xb3\x02\xdb\x0c\x23\x04\xa3\xa9\xf5\x62\x1c\x4b\x0a\x73\xb6\x2c\x5a\xed\xd4\x46\x06\x5a\x3b\x7c\xbd\x74\x58\xa0\xb9\xa3\x24\x05\x38\x4b\xe0\xf3\x75\x5f\x35\x38\x95\xe6\xd1\xd0\xa7\x27\xe5\x8f\x1f\x4b\xcb\xaf\x5e\xff\xc0\xc4\x48\xac\x6e\x17\xc7\x42\xb7\xd1\xff\xea\x76\xe8\xd1\x6d\x10\x46\x75\x1b\x76\x89\xea\x36\xf6\xf8\xab\xdb\xa5\xcf\xd5\xa5\x52\xf9\x56\xb7\x29\x8f\x6e\x57\x37\xab\xdb\x9c\x47\xb7\x3b\xba\x1d\xa5\x34\x56\xb7\xd5\x57\xb7\x07\xaf\x6e\xd7\xdf\xd5\xed\xd2\x64\xab\xdb\xa1\xab\xdb\x1a\xab\xdb\xab\xa1\x0f\xf7\x11\x76\xa7\xb2\x47\x58\x3b\x15\xad\x28\x8c\x83\x25\x6e\x60\x1c\x74\xd8\xa0\x6d\x51\x04\x8c\x83\x45\x08\x30\x0e\x9a\xe8\x32\x0e\x9a\xe9\x32\x0e\xd6\x47\x0e\xe3\x60\x94\xf6\x71\x83\x51\xfe\x8b\x37\x8f\x9d\x5f\xde\xbc\xfa\x70\xdb\x74\xaa\xdd\x9b\xbb\x6c\x62\xd2\x5c\x7d\xc3\xdf\x3c\xb6\x42\x6e\x4d\x92\x2f\x94\xbe\x51\xf4\xd2\xd0\x2f\xc1\xb4\x2e\x50\xcf\xbc\x64\x97\xed\x78\xfc\xe9\xa6\x7c\xf6\x08\x9c\xfc\xcd\xb7\x2f\x6e\x7b\xe0\xc0\x9c\x1c\xa3\x9f\x29\xe4\x92\x0a\x33\x80\x5f\x62\xf4\x87\x75\x49\xdc\x70\xc9\xd8\xd6\x25\xf1\x1b\xc6\xb8\x7f\xf1\xe5\xe3\x11\xf8\xf2\xfd\xab\x17\xdf\xbc\xba\xad\xeb\x51\x8c\x96\x3d\x2f\x44\xbd\x6f\x40\xca\xc1\x7c\xb1\xa8\x9e\x8f\x46\x19\x17\x19\xb9\x95\xf0\x72\x59\x5b\x2a\x6e\x7d\xfd\xed\xb9\x1d\x4f\x3f\xdd\x98\x7f\xf5\x78\xab\xe9\xd5\x87\x6f\x5e\x3f\xb7\xc6\x89\x9a\x52\xdf\x8d\x8a\x2b\x72\x33\x8a\x66\x3c\xa6\xc9\x68\x4e\x34\x4b\x36\x7b\xc9\x32\xaf\xf5\x44\xbb\xe7\x68\x91\xde\x42\xa4\x0d\x11\x70\xdb\xa4\x7e\x6c\x6f\xfa\x1c\x6b\xf3\x80\x76\x9c\x70\x2f\xfd\xa2\x00\x51\xad\x3e\x96\xc3\xfd\x04\xdb\xf9\x64\xcd\xb0\xdb\xda\x75\x6a\x01\x0b\xf6\xb1\xc4\x3c\xc3\x09\xa0\x70\x03\xf9\x99\x92\x76\x4a\x5e\xef\x62\xf6\xd2\x21\x0a\xd6\xc1\xc8\xd1\xd7\x93\x6a\xb4\xde\x0e\x70\xc5\x7a\x05\x57\xc7\xa5\x04\xd0\x88\x82\x54\xcc\xab\x2d\xd4\x0d\x44\x19\xfb\x71\xc6\xb6\x48\x3c\x9d\x97\x56\x53\x5c\x28\x0a\x3d\xf8\x84\xa9\x58\x6d\x8f\xd2\xfd\x69\xf5\xbd\xb0\x7a\xf4\x52\x0e\x63\xd6\x98\xe8\xe8\xd3\xd3\xe1\x18\x65\x44\x0f\xf7\x9a\x1d\xde\x68\x50\x3d\x8e\x0d\x44\x78\xa3\xe9\xf2\x46\x73\x5a\xde\x68\x75\xbd\x64\x3e\xe3\xf6\x3a\x18\x35\xb0\xfa\x8e\x9b\x97\x37\x5a\xdc\x2d\x6f\xb4\x84\x37\x1a\x5e\xfd\xf4\xfc\xff\xcf\x8f\xb6\x62\x9e\x41\xe7\x54\x00\x79\xe4\x4e\x54\x58\x1c\x56\x83\x12\xba\xb0\xc6\x26\x37\x0d\x58\x6d\x06\xd4\x9c\x31\xa4\x49\xc9\x14\xe6\x3a\xb6\x18\xdc\xc4\x78\x06\xac\x53\xb4\xfb\xc8\x26\xb5\x4e\x65\x34\x31\x99\xc6\x8a\xfb\x35\x0c\xf7\xab\x64\x13\xf5\x29\xa3\x96\x5b\x4e\x29\x39\x57\x7a\xb1\x96\x34\x55\x28\xa0\xa5\x3f\xcb\xd0\x36\xa2\x16\xc4\x92\x34\xd3\x1c\xdb\xc0\x0c\xbf\xa3\x6a\xe9\x1e\x16\x77\x68\x72\x09\x09\x82\xf9\x1a\x86\x45\x8f\x6d\x70\x34\x73\xd9\x01\xa4\x98\x21\x4e\x34\x63\x0e\x95\xa6\x16\xf0\x37\x52\x09\xe0\x56\x15\xde\x53\xf4\xd8\x6b\xe7\xa6\x0e\x9c\xd3\x31\xa3\xd4\x25\x0f\x6f\x26\xeb\x6b\x90\x0a\xf8\x24\xf9\x72\x10\xa1\x5e\xda\x47\x2d\x3d\x82\xfe\x01\x34\x61\xd3\x61\xb9\x13\xde\xb1\x81\x25\x30\x21\x15\xea\x19\x36\x85\x61\x9a\x63\x58\xe4\x52\x4b\xb5\xc5\x34\xef\x34\x20\x4e\x1b\x53\x87\x37\x06\x1c\x29\xa2\x34\x10\x86\xe2\xe8\x04\x6d\x76\xf7\x52\x9f\x4b\x52\x63\x9b\x4e\x60\x26\x23\x38\xb2\x14\x6a\xa8\x3e\x5a\xa3\xa1\xdb\x00\x3e\xd9\x87\x15\x3d\x43\xb2\x88\x4e\x00\x77\x82\x3c\x39\x2d\x9d\xf2\x34\x76\xf5\x68\xa7\x9a\x5e\x6e\x2a\x93\x6a\x7c\x0b\xf4\x15\xd7\xcf\x09\x17\x0a\xda\x81\x2c\xb5\x65\xc9\x1b\x9a\x04\x52\x09\x9d\x5c\x1f\x67\x4e\x6c\xdf\x93\x18\xcd\xb5\x33\x5d\xa0\xd5\x4a\xc9\xb1\xb1\xc7\xc0\xca\x1f\xad\xc8\x88\x94\xa0\xdb\x14\xac\x2f\x7d\xbe\xb4\x09\xea\xb0\xfd\xac\x55\xf8\x70\xaf\xd1\xb1\x14\xb4\xd0\x71\x54\xeb\xe3\xce\xc8\x60\x07\xae\xf7\x79\x77\x28\x3f\x25\x0c\xb5\x70\x1e\x39\xcc\xb8\x85\x11\xa8\x73\x5f\x80\xa3\x8b\xc0\xb4\x5d\x27\xbb\xab\x1e\xbf\x74\x83\xab\x1c\xd8\x5a\x8a\xa3\xb9\x83\x65\x1e\x1f\x7d\x9a\x96\x7e\xf4\x31\x2d\xfd\xe8\xb6\x35\xc6\xb3\x49\xc4\x59\x86\x6c\xec\xde\xfa\x79\xd0\x66\x76\x38\x39\x46\xf7\xad\xc0\x73\xeb\xe7\xac\x09\x5a\x37\x3f\xdc\x6b\xb1\x11\x19\xe7\xc1\x7d\x5b\xf0\x29\xfa\x76\xfc\xf8\x74\x83\xfe\xf5\xc7\x0d\xfa\xd7\xcf\x08\x18\x6e\xfd\x70\x8f\xed\xa5\x0a\xc1\x99\xc5\x5a\x14\x5a\x56\x91\x59\x2b\x9f\x04\xde\x4a\xa5\xe3\x71\x2d\x80\xe5\x4f\xe8\x63\xa7\x1e\xb9\x34\x75\xea\x5e\xd4\xa1\xcb\x59\x68\x8c\xbe\xec\xbe\xa4\xb3\x74\x96\x70\xdf\x93\xa4\xf4\xf8\x96\x25\xc4\x60\xd4\x53\x6b\xae\x5c\x3c\x24\x9b\x95\x76\x02\x57\x95\x52\x12\xa8\x16\x23\xa4\xf9\xe8\xd8\xcd\xce\x52\x9c\x4a\x78\x14\x5f\x83\x7e\x7c\x57\xf2\x98\x1f\xee\xa5\x26\x7a\xd0\x85\x2c\xce\x5e\x88\xa6\x68\xdd\xc6\xd2\x40\x0b\xe3\xaa\x35\xe6\x31\xb3\xf8\x53\xcf\x99\xf0\x58\x1c\x7b\x8a\x14\x2b\x6e\x49\x0c\x31\x56\x64\xe0\x3d\x67\xb8\x34\x77\x9a\x5e\xb0\x63\x94\xde\x31\xd6\x47\x86\xd8\xd9\xc9\xf7\xd2\xb5\x86\x78\xf5\xa1\x0d\xa3\x39\x7a\xb4\x51\xf2\x2c\x7a\x4b\xcf\x39\x96\xdd\x21\x77\x9c\x60\x7f\x28\xa0\xf1\xcb\x1c\x7d\xac\x11\x0c\x6c\x66\x0c\x9d\x4e\xd0\x75\x46\x7d\xe6\x32\xe4\x06\x6e\xf8\xf1\xc7\xb3\xf9\xe3\x67\x38\x35\x15\xbf\x1a\x3b\x51\xd7\x26\x40\xa3\x6e\xad\x94\x69\xec\xe0\xf5\x82\x96\xf0\xf1\x71\xb6\xc3\xa8\x66\x87\x51\x8d\xdb\xb2\x44\x84\x4f\x2e\x69\x3b\x78\x52\x69\xfd\x64\x93\x4a\x11\x72\x18\x1a\x8a\xeb\x5f\x06\x17\x9b\x83\x38\x2f\x05\xaa\xe5\x48\xf8\x59\x96\x58\x98\x0c\x77\x97\x10\x98\x0c\x97\xe4\x75\x5a\xdb\x06\xce\x76\x35\x6b\x5c\x25\x2f\x17\xe9\x6b\x35\x6f\xdc\x91\xc0\x29\xcd\x8f\x8d\x1e\x74\xa6\x18\xed\x39\x8b\x03\x97\xd4\xee\xe1\x2d\x17\x33\x17\x58\x58\xb1\xa5\x13\xf0\xc6\xe9\xc7\xfb\x97\x37\x4e\x1e\xde\x38\xd8\x2c\x82\xef\x0d\x1f\xc6\x96\x6a\x0c\x59\x4e\x61\x78\x48\xdb\x94\xde\x61\xba\xe4\x2c\xa0\x42\x17\x67\xdf\xeb\x1c\x0e\x26\xb5\x34\xc9\x70\x33\xfc\x24\xbc\x37\xce\x80\xd5\x87\x0b\xf4\xd4\x8c\x96\xc6\x85\x2f\x77\x80\x9e\x9a\x72\xa8\xc8\xb6\xda\x08\xfb\x53\x27\x8c\x24\x56\x9f\x0c\xf8\x03\x3c\x7c\x72\xf7\xc4\x5c\xff\xe4\xe3\xb9\xfe\xc9\xed\xb9\x36\xbb\x52\xae\x26\x2f\x0e\xa6\xa6\xcb\x50\xad\xdd\xe6\xf2\xab\xf3\x92\x51\x79\x74\x95\xa8\x16\xee\xa0\x4b\xb1\x4f\x22\xb1\x56\xe2\x77\x09\xf1\x4e\x33\x1d\x0e\x9c\xb3\xd4\x01\x70\x6a\x6e\xfd\x4c\x66\x0f\xf7\xa2\x82\x71\xbc\x90\xd1\xfa\x5c\x4d\xbd\x61\x9b\xac\x51\x2e\xfd\x4c\xba\xcc\xc4\x52\x19\x33\x0b\x9b\x84\x5e\x62\x08\xfc\x0f\x8b\x18\x12\xbb\x42\xa3\xee\xbd\x83\x84\xc3\xc3\xec\x8c\x2f\xd5\xeb\xcf\x72\x4b\x79\xf8\xe9\xc7\xc3\xf2\xd3\xdb\xbb\x23\x61\xcd\x43\xce\xe2\x01\x9e\x50\x6b\xe6\xd2\xcf\x34\xbe\x33\x5b\x3a\x6c\xe1\x03\x77\x0c\xe9\xe7\x0c\xbb\xf8\x2d\xeb\xce\xbf\xf9\xf8\xbb\xff\xe6\xf6\x77\x0b\xfe\xaa\x9c\x25\x46\x7d\x2e\xe9\xfa\xb9\x61\xc7\xe7\x62\x5c\x46\x07\x67\xbf\xf8\xad\x6e\xfe\xd9\xc7\x9f\xfb\xb3\xe7\x28\xbd\x06\x9e\x76\xea\xac\x6d\x48\xcb\x6e\x4d\x08\xf6\xf7\xb5\xef\xa1\x50\xd7\x35\x60\xdb\x54\x59\xfb\x1e\xa5\x33\xf4\x45\xd7\x85\xde\x8a\x5b\x8c\x42\x33\xbd\xda\x7e\x19\xc4\x3b\x41\xa1\x2e\x6e\xab\xb0\x5b\x12\xb6\xdb\x79\xc0\x90\x49\xec\x07\x40\x91\xb0\xa9\x76\xd8\x24\xbf\xa7\x6b\x8e\x83\xae\xb1\x01\xa4\x76\xec\xdb\xd7\xd2\xeb\x80\xf9\x54\x82\x9c\xf4\xae\xc0\xd1\x39\x85\xf6\x84\xd3\xde\x52\x67\xd7\xbe\xfe\x80\x5d\x53\x02\x3b\x69\xb0\xbd\x38\xbe\x48\x63\x07\xc6\x2b\xc1\x60\xcb\x62\xe3\x13\x9e\x07\x2c\x06\x87\x2d\x22\x2d\xc0\xef\x08\x12\x00\x3d\x27\xfb\xe4\x51\xed\xc1\xa0\xef\x85\x99\x6c\x8c\xc6\x69\x30\x9c\xc1\xc4\x53\xf4\xed\x4b\x3a\xa8\xd8\x72\x19\xa9\x8e\x94\x14\x28\xac\x24\xb1\xc3\x5f\xb0\x68\x07\x2a\x43\x9f\xa3\x60\x82\x15\xd3\x1f\x0b\x0b\xd5\x73\xca\x5b\x4a\xe1\xca\x3c\xbb\xd2\x25\x4a\x1f\x24\x92\xad\xe6\xea\x8e\x6e\x39\x92\x9d\x3f\x9e\xf2\xf3\x73\xee\x19\x51\xc8\x80\xf8\x82\x05\x4e\x56\x0b\x4d\x8f\x85\x56\x7f\x62\x35\x7f\x6f\x9f\x1f\x37\x37\xab\x7f\xf6\xf1\x37\x7f\xf6\x0c\x3c\xd0\xef\xe3\x2f\x6a\x1d\xdb\x39\xba\x5d\xc8\xfb\xfa\xa5\x84\xb0\xe2\x4f\x23\x5b\xd7\xf1\x83\xda\x0d\xd3\xca\xbf\xfd\xf8\xcb\xff\xf6\x99\x7d\xab\xb8\x7e\x59\xfd\xa2\x2a\x3b\x75\xd5\x06\x67\x81\xd2\x35\x4a\x37\x2b\x99\x4e\x44\x33\x6a\x59\x18\xbc\x05\xb1\x13\x1c\x6b\xa3\x08\x9b\x58\x04\x8b\x7d\xe6\x24\xd5\xc6\x32\xe6\x72\x33\x3d\xf3\xf0\x9d\x4b\x17\xf1\x82\x1a\xbd\x49\x1f\x53\x3c\x1b\xd3\x98\x8a\x4d\xa5\x81\x17\x62\xf6\x81\xa0\x03\xca\x56\xad\x8a\x52\xf3\x0a\x53\x0c\x29\x9d\xc5\x66\xb5\x55\x55\x9e\xe9\xf6\xbf\xfb\xb8\xdb\xff\xee\xb6\x96\xcd\xd2\x3c\x7c\x2b\x31\xa5\xc9\x18\xe0\x63\x42\xc5\xe9\x12\x6a\x9b\x75\x6e\xc9\xb4\x25\x1f\x5e\x20\xd8\xc3\x85\xfb\x00\xe5\x56\x7a\x46\xad\x12\x97\xed\x78\xd7\xd3\x2d\xda\x3e\x6e\xd1\x76\xdb\x66\x5d\x4b\x1f\x8c\x34\xb1\xe0\x72\x1c\xcd\x19\x52\x0c\xf6\xe9\xb7\xdf\x7f\xfc\xf6\xfb\x67\x2c\xe2\x6b\x9a\xb7\x52\x35\x82\xc7\x06\x9b\xf2\xea\x55\xef\x97\x7e\x4e\xee\x17\x1b\xb4\x15\x85\x11\x8d\xdc\xdc\xbd\x69\xb7\xb3\xf9\xb1\xcf\x4c\x3e\x36\x6c\xbc\x0d\x02\x41\x5c\xdb\x17\x37\xda\xf6\xe7\x1f\xb7\xed\xcf\x9f\x23\x38\x20\xf4\x1c\x9b\x08\xa2\x5e\xea\xa4\x97\x4c\x3c\x26\xfb\x2c\x42\xdb\x48\x6f\x12\x7d\x1b\x79\x9d\x8f\x3e\xfc\x16\xe5\xfd\xfc\xe3\x8f\xff\xfc\x19\x06\xcf\x84\x98\x21\x80\x61\xc3\xe6\x48\x1f\xa5\xeb\x4c\xec\x91\xc9\xf2\x65\x11\x6c\x56\x67\xf7\x36\x04\x0e\x6c\xa5\x07\x1e\xd0\x8e\x0f\x68\x67\x52\x22\x00\x62\x62\x72\x31\xb6\xb4\x49\xb5\xec\x45\x27\xc1\xfb\x1a\xef\xac\xaf\x5d\x06\x75\x78\xcb\x0f\xd0\x0e\x8c\x8e\xb3\xe0\x34\x5c\xa3\x99\x0f\xc7\x93\x62\x9b\x24\xc1\x53\xad\x1f\x3e\xa1\x74\x35\xaa\x74\xb9\x5b\xbb\x04\x71\x6c\x66\xc1\xc3\x5d\x02\xcd\x2d\x68\xe8\xd8\x12\x18\x4b\x59\xa7\xfa\x58\xfa\x98\xe8\xef\xa0\x7e\x71\xd5\x87\xfb\x94\xd1\x4a\x1a\x15\x3f\x1d\xae\x2d\x85\x10\xae\x82\x78\xb0\x8e\x5d\x51\x58\x51\x97\x3b\x06\x5c\xb8\x20\x7b\x78\x1c\x4d\x11\x18\x43\x10\xc5\x44\xcd\xb0\x79\x39\xc6\xda\x24\x82\xbf\x57\xa9\x82\xf5\x38\xcc\x43\xf5\x42\x4e\xc7\x17\x78\xe0\xcb\xd5\x0c\xf0\x07\x43\x48\x92\x21\xc0\xa3\x6e\x56\xd6\x29\xf0\x8a\x8b\xa9\xe4\xe0\x03\xd6\xe9\x8e\xdc\x31\xf2\xa4\xb2\x3b\x14\x5a\x69\xf0\x29\x77\xc7\x56\x2d\xb6\x74\xa3\xf0\xb4\xa3\x17\xca\x3c\xab\x57\x26\x06\xb3\xd3\x1a\xfc\x1b\x9b\xa9\x7f\xf1\xf1\xaa\xf9\x8b\x67\xc8\xc9\x9b\x0d\xfd\x5d\x04\xe2\x2e\x7b\x2c\x04\xae\x0d\xde\x11\xca\x25\x8e\xb1\x53\x07\xad\xab\xc3\xfe\x56\xe8\x70\xf9\xcd\xe7\x8e\xb3\x84\x5b\x57\xad\x05\xd1\x75\xbf\xe7\x80\x8b\xaf\x97\x02\xe1\x52\x5f\x3a\x4b\xf8\x03\x3e\x1b\x72\x7c\x8b\xa3\x85\x04\x34\xc8\x80\x88\x2c\xc6\x54\x9d\x2d\x3d\x29\x67\xc2\x6b\x83\x62\x5f\x27\x05\x5d\x80\x07\xa5\x6e\xf5\xe5\x68\x1f\xa3\x26\x75\xc8\x0a\x7f\x01\x30\x0c\xbf\x84\xdc\xe0\x65\xfb\xc7\xc3\xb3\x3f\x43\x54\xa2\xf0\x6d\x2b\x05\xa2\x19\x2c\xf1\x45\x5d\x88\x81\x19\x54\xd2\xa5\x14\x58\x81\x43\x50\x29\xac\x43\x37\x44\xf5\x9c\x88\x6d\xc3\x8e\xeb\x89\xd5\xb7\x40\xa8\xce\xee\x63\x39\x97\x7c\x4f\x71\xbc\x28\x4e\x8b\x0e\x6b\xb5\x60\x43\x39\xb0\x05\x4a\x3a\x9a\x68\x8d\x64\xc1\x17\x9a\x89\x96\x5c\x22\x69\x4f\x5b\x3a\x62\xa9\x54\x26\xb8\x93\x4a\xae\x31\xf9\xda\x09\x95\x42\x4c\xe2\x39\x55\x41\x54\x01\xcb\xcc\x41\x6f\x07\xe4\x5a\x1a\xbb\x0e\xb4\x9b\x24\xfa\x8a\xf8\x58\x21\x4f\xd0\xd8\x11\xfc\x53\xfd\x4d\x2b\x14\x26\xda\x22\xe9\xe2\x2e\x0f\xf7\x05\xd1\x23\x65\x4f\x4d\xac\x91\x54\x6d\xd9\x63\x26\xd4\x83\xc3\xa9\xbe\x1e\x99\xf0\xd6\x67\x36\xf8\xa9\x1d\xf4\xa6\x57\x7a\xf3\x45\x6f\x30\xf1\x80\xde\xaa\x71\x6b\xd3\xcc\x97\xd2\x26\xdd\xd7\x0b\x79\x18\xbe\xc0\x31\xea\xcb\xd5\x8c\xbd\xce\xbd\x67\xe3\xa1\xcd\xac\xd7\xcd\x77\x2a\x3c\x11\xb3\xc7\x8c\xd7\xb1\xf4\x65\x42\xf2\xf8\x1d\x7a\xd3\x45\x6f\xd5\xa4\xa2\x37\x2e\x7a\x4b\x34\x5a\x98\x66\xe9\x8e\x2a\x35\xe4\xd2\xac\x46\xc8\xfa\x31\xf6\x37\x60\xf8\xbf\xff\x78\x41\xfd\xfb\x67\x82\x2f\xbc\x59\xea\x59\x1c\xb2\x71\x5c\x69\xae\x8f\x3d\xa8\x1f\x34\xd7\xe1\x53\x12\x33\xe1\x6f\x87\x0d\x7b\xb8\xcd\x11\x88\x8f\xaf\x24\x57\x62\x5d\x61\xf3\xe0\x36\x4a\xa3\xee\x6c\x2d\x46\x51\xce\x8a\x52\xc2\xfe\x9c\xd4\x8a\xc4\xbe\x5d\x1d\x01\x08\x95\xb7\xa3\x1d\x0f\xf7\xe2\xd6\x42\xfd\xec\xb4\x3c\x4b\x0a\x43\x47\x29\xa4\x6e\xcb\x4b\x9f\x72\x8e\xe4\xbb\xec\x3a\x0f\x23\x25\xed\xeb\x24\xbf\x03\xfe\x82\x4f\x21\xec\x34\x84\x97\x59\xd2\xfb\x38\x28\xd1\xed\x12\x7a\x83\x12\xff\xf2\xe3\x81\xfb\xcb\xdb\xea\x92\xf8\x0a\x62\x12\x47\x60\x5f\x49\x30\x1d\x34\x61\x98\xb5\x31\x83\x19\xbb\x0a\x4e\x25\x05\x13\xbb\x4e\x1e\xda\x60\x9b\xea\x39\x0b\xb2\x45\xda\xe4\x2e\x2d\xa9\xe4\x19\xad\xc8\x59\x9c\x50\x14\x09\x43\xe3\x8f\x23\x38\xb0\x84\x95\xcb\xd5\xbd\xe2\x4a\x3c\x80\x50\xd0\x57\xe2\xd0\x57\x00\xf9\xac\xe6\x08\x3c\x88\x20\x99\x96\xeb\xf2\x39\xc5\xf6\xe4\xb8\x2b\x68\xd2\xb2\x17\x7b\x34\x82\xcd\x98\x58\xfb\xb2\x9d\x72\xc6\x7a\x3f\xf4\x95\x41\x87\xbe\x72\x75\x76\x85\x97\x21\xc3\xcd\xb2\x88\x7c\x28\xfc\x0f\x11\x50\x0b\x99\xd4\x29\x9b\x20\x86\xdc\xe1\xaf\x90\x9d\x27\xbc\x8e\x4a\x5d\x0e\x78\x8a\xee\x51\xf3\xd8\xfb\xe2\xb0\x91\x08\x4b\x0d\xce\x99\x83\x9b\xc3\x4c\x63\xd9\xac\x84\x3a\x11\x1c\xfb\xaa\x0b\x59\x18\x65\xc7\x09\xc7\x35\x58\x33\x57\x4c\x1f\x9c\x79\xa3\xd9\xf4\xe5\x11\x03\x4a\xbe\x42\x07\x2a\x99\x18\x77\xe9\x93\x10\x84\x5b\xac\xa3\x20\x74\x3f\x4b\x8f\xbd\xb4\x2d\x31\x2e\xce\xd6\xa4\xf7\x25\x12\x89\xa6\xd5\x80\x9a\xe3\x8d\x80\xd0\xa5\xdd\x95\x54\x28\x99\x6c\x7d\x0d\x5a\xf2\x4c\xea\x8d\x5d\xe7\xb1\x1e\x9e\x5e\x55\xf3\xe3\x55\x35\x9f\xdb\xa9\xf0\x65\x4f\x8b\x5e\x5a\xbf\xb1\x2f\xe5\x3b\xfc\x72\x85\xca\xeb\x97\xa7\x3f\xf4\x57\x1f\x7f\xe8\xaf\x9e\x77\x95\x07\x6e\xa5\x8e\x34\x03\x7d\x39\xcd\x97\x1e\x49\x1d\xfe\xe2\x39\xb3\x26\xb4\x78\x67\x01\xa0\x5c\xc6\x74\x38\xcd\x8f\xc3\x69\x9e\x96\xd3\x3c\x00\xcc\x24\x38\x32\x8e\x49\x52\x5a\x7b\xdf\x48\x0f\xab\xb0\x50\x6c\xb0\x3f\x45\xdf\xa1\xaf\x96\xa6\xaf\x25\xac\x0c\xbb\x60\x2c\x39\xb5\x9a\xe3\x76\xf0\xe2\xd2\x57\x6d\x0d\xb7\x20\x9c\x07\xf4\x5c\xca\xcf\x18\x76\x57\xcf\x81\xdc\xa2\x6f\xd9\xbf\xc7\xac\x37\xc6\xe4\xf2\xf1\x98\x5c\x6e\xf3\xc2\x9a\xca\x1c\x5b\x9a\x7e\xa7\x97\xd0\xe6\x30\x22\x99\xd0\x16\x47\x7f\xd8\x73\x3b\xee\x7d\xfa\x8b\xff\xe1\xe3\x2f\xfe\x87\xdb\x3a\x62\x21\xef\xd4\x0d\x4e\xdc\xc7\x27\x07\x6f\xf0\x20\xee\xe7\x41\xbe\x39\xb6\x60\x32\x36\xd5\xc2\xed\x6c\x7d\x8b\xc3\x35\x95\x35\x37\x28\x7f\xa9\x1b\xfc\x70\x96\x05\x7e\x6c\xc7\x5b\x9f\x6e\xdb\x7f\xfc\xb8\x6d\xff\xf1\xf6\x68\xb0\xb5\x31\x6c\x2b\xe6\x7d\x1d\x8d\xd8\x42\xe0\x53\x5f\xa0\x02\xac\xbb\x06\x88\x8b\x58\x79\x2b\xc9\xd8\xcf\x23\x36\x63\xc2\x3d\x39\xae\xf3\x6f\xdb\xf1\xb6\xa7\xdb\xf4\x9f\x3e\x6e\xd3\x7f\xba\xdd\xa6\x5e\x98\xd4\x96\x2e\xb5\xda\xa4\x86\x19\x32\x95\xcd\x47\xd6\x4c\x51\x6c\x46\xba\x7e\xb9\xce\x58\xf0\x76\x3c\xfb\x74\x0b\x1e\x3e\x6e\xc1\xc3\x6d\x7c\x0a\x27\x47\x58\xe5\xb2\x04\x26\xf9\x46\x40\x32\xba\x0d\xec\x14\xe5\x38\x13\xc7\xd5\x82\x61\x7d\xa3\xbe\x62\x2d\x6d\x3b\x9e\x7d\xba\x05\xff\xcb\xc7\x2d\xf8\xfc\xfd\x8b\x97\x7f\xfd\xea\x9b\x67\xa3\x18\x07\xf6\xcd\x88\xcf\xde\xe9\x72\x22\xef\xe7\xc1\x7c\x39\x09\xf1\x59\x8b\x6f\xb8\x2b\x7e\xa9\x7b\x9e\xfe\xe8\xff\xfa\xe8\xa3\x2f\x5e\xfe\xf5\xf3\x61\x3c\xb0\x8d\x63\x4e\x73\xd4\x32\xf5\x15\xd4\x33\x24\xb7\xeb\xa5\xa7\xbf\xf4\xbf\x3d\xd9\xbd\xe7\xe3\x0d\xe1\xd4\x8a\x4e\xf4\x6b\xb7\xba\xad\x8e\x7a\x0d\xb1\x1d\xbf\xd4\x3d\x4f\x7f\xf5\x7f\x7f\x1c\xad\xf7\xf2\xf5\xeb\x97\xaf\xdf\xbf\xfc\xf6\x76\xd2\x15\xed\xd2\x3c\xe2\xcc\xf2\x3b\xfb\x5a\x1e\x63\xcb\x0c\x5c\x18\xec\xc7\x1e\x96\xd7\x02\x5b\xd9\x2d\x36\xcb\xe3\x97\xe3\xf9\xa7\xdb\xf3\x7f\x7c\xdc\x9e\x6f\xdf\x7e\xf1\xea\xfd\x87\x97\xef\xde\xdf\x76\xb8\x43\x38\xf0\x09\xb1\x1b\x06\x84\xd6\x83\x2f\xf5\xf7\xd3\x1f\xf8\x3f\x1f\x7b\x67\xbc\x78\xc6\xd9\x1d\x36\x4e\x26\x2b\xad\x67\x83\x66\xa9\x83\xce\x2e\x63\xbb\x5e\x79\xfa\x23\x2f\x1e\x8d\xea\xed\x0f\x0c\x6b\x7d\x1f\xa1\xad\x54\x63\x1f\xcd\x78\x0e\xe8\xe2\x63\x1f\x52\x08\x04\x0e\x16\x6e\xf0\x09\x60\x5a\x51\xad\x39\x0f\x47\xe9\x5d\xd5\xbe\x8b\x88\xb0\xc9\x36\x5a\x30\x42\xdf\xe9\xb0\xeb\x4a\xef\x3b\x8e\x23\x1b\x25\x35\x35\x47\x98\x88\x79\xcc\x15\xae\xad\x6b\x1f\xcc\xfc\x3c\xac\x60\x1f\xc1\x05\x31\xb2\xb7\x21\x70\xc2\x9a\x31\xbc\x8d\xb4\x19\xdd\x4b\x91\x9b\x96\x79\x97\x26\xbb\xc1\x11\x5c\x4a\xd5\x69\x59\x12\x8a\x03\x60\x46\x06\x95\x86\x31\xc5\xb5\xc0\xed\x99\x62\xec\x14\x89\x54\x29\xdc\xe1\xb1\x0a\xcb\x2d\xf5\xbe\xb2\x53\x60\x1b\xd9\xe1\x74\xd0\x79\x6d\xef\x15\x54\xc6\xa6\x71\x1f\xfd\x40\xb1\xc8\x6b\x80\x9d\x38\xec\x2c\xf6\x92\x7c\x17\x16\xdf\xf1\xc7\x4a\x4f\x61\x7d\x09\xda\x5e\xd0\xab\xe0\x41\x71\xd4\x7b\xc3\x36\x34\xed\x5e\xca\x92\x52\x73\x2b\x84\x62\x13\xc9\x3f\x92\xe7\x20\x6a\xac\x6b\x1f\x53\xba\xc3\xcd\xc7\x87\xec\xc5\xa6\x0d\x69\x29\xe8\x4e\x23\x26\x44\x32\xfb\x5e\x47\x1e\x85\x8a\x96\xd3\x9d\x94\xb2\x92\xba\xd0\xa7\xd9\x3c\xbe\xf7\xf4\xda\xf8\xfc\x11\x9d\x3f\xe7\xa3\x5d\x9f\xcf\x1d\x27\x5a\x0b\xae\x63\xb7\x4e\x66\x02\x74\x8e\x23\x52\x01\x21\x58\x80\x1d\x7e\xb8\xcf\x17\x34\x88\x05\x3b\x59\xb6\xd2\xad\xfa\x99\xc2\x56\xa4\xb8\x78\xbf\xa4\xfb\xbe\xde\x28\xdc\x80\x2c\x7a\x29\x5b\x2e\xc7\x14\x78\xac\x29\x18\x8a\xfd\x45\xc2\x17\x53\x63\xe9\x35\x01\x4b\x4f\xb5\xce\xfa\xc5\x38\x1f\xee\x0b\x6c\x98\xf5\x3d\xbb\xdf\x95\xb4\x1b\x49\x2d\x7a\x61\x40\x6a\x83\x97\x53\x72\x92\xc0\x81\x21\xd5\x76\xf3\xac\x63\x75\xaf\xa5\xc8\x3c\x1c\x99\xe1\x82\x39\xb0\x85\xd7\x5b\xc4\xb8\x48\xb7\xbd\x60\x34\x7b\xb6\xba\x06\x20\x54\xb3\x37\x0c\x34\x50\x38\x13\x6e\x77\xc0\x9f\xf6\x3d\xfe\x74\xec\x41\x35\xb6\xd2\x6b\x0b\x18\x27\x00\x91\x71\x5e\xcc\x6e\x18\xee\x5e\x3e\x72\xd4\xbc\x2d\x64\xe5\xd8\x0a\x1c\x2b\x3a\x10\x1a\x94\xfa\x0a\x9d\x44\x1c\x94\x1f\xc6\xeb\x5e\x30\xae\x58\x92\xed\xb5\xc8\xd1\x0f\xea\xf0\xac\xd6\x99\xda\xdb\xc8\xc3\x13\x72\xba\x1c\x93\x48\xfc\x5d\xc0\x65\x29\xd1\x35\x15\x5a\xd8\x51\x9b\x90\xce\x52\x82\x8d\xfb\xc5\x9c\xf7\x3a\xf7\x7a\x23\x22\xeb\x63\xb2\xfb\x41\x88\x7d\x65\x68\x41\x43\x31\xa1\xb2\x68\xea\x6e\x2c\x1f\x75\x86\x82\x8c\x4d\xdd\xae\xdc\x06\x76\xf5\x4b\x97\xa4\x7e\xce\xde\xf7\x91\xd9\xc2\xb2\x0d\x04\x61\x33\x4c\x02\x23\x72\x86\x76\x44\xeb\xd7\x8b\xd3\x3a\xec\x6f\xf5\x26\xcd\x15\xce\x23\xe9\x98\xef\x5a\x72\xd1\x69\x4a\x21\x1f\xe7\x8b\x71\x01\xdb\x6c\xaa\xb9\xf4\x88\xd1\x41\x35\x6c\x36\xb5\x58\x53\x01\xdb\x35\xaa\x4f\xcf\xcd\x17\x8f\x92\x34\xdd\xa6\x1a\x49\xac\x44\x82\xfb\x3b\x35\xf2\x6c\x11\x3c\x19\x5e\xa1\x31\x05\x8c\xc7\x69\x1a\xcc\x8b\x9d\x77\x8c\x20\xf8\x0d\x12\x6a\x45\x87\x6b\x50\x5e\xc9\xa5\xd0\x09\x18\x09\x6f\x03\xe9\x55\x74\x1f\xa0\xb1\xe5\xd4\xa9\xd3\xa2\x1f\x7b\x12\x6b\xe2\xea\x0b\xcc\x2b\x6c\x45\xc6\xa4\x58\xe9\x06\xd0\xb0\x63\xf9\xdd\xc3\xc1\x9d\x73\x47\x40\x9f\x61\x95\xdc\xd5\x1a\xc5\xb3\xa6\x13\x21\x94\x7e\x8d\x67\x8d\x95\xd5\xa2\xd6\x76\xf1\x46\x1d\xf0\x22\xa7\xd2\x0b\x79\xb9\x3e\x20\x79\x52\xf2\x25\x52\xf7\x21\x25\x4a\x8a\x7e\x3a\xd8\xb1\xd3\x58\x34\x57\x73\xa7\x06\xee\x50\xb4\x28\xa9\x6d\xf0\xe2\x6a\x6b\xae\xf4\x3b\x82\x7e\x72\x0e\x5e\x3d\x72\xa9\x7c\xc6\x64\xc2\x87\xe7\xc1\xa1\x06\x41\x13\x9c\x1c\x05\xff\x06\x5c\xd4\x39\x75\x62\x73\xba\xcb\xc5\xd4\xf6\x3a\x47\xb0\x52\x04\x14\x5e\x1e\x03\x36\x2c\x58\xc3\xba\xeb\xe1\x53\x5c\x4b\x59\xed\xe0\x4d\x48\x86\xe1\x3c\x11\xdb\xb9\xe2\x8d\x4a\xe0\xd0\xca\x36\x65\x41\x17\x1d\xe3\x2c\x58\x7a\x82\x10\x01\x81\x81\x2e\xa7\xd2\x68\x2c\xbe\x62\x1b\x2c\xa7\xc3\x25\x9e\xf6\x70\x42\x40\x20\xbc\xa6\x63\xed\x96\x73\xc4\xb6\x9c\x60\x96\xe7\x57\x91\xfa\x68\xcb\xf0\x46\xb4\x82\xc3\x14\xae\x8f\x27\x9e\x47\xcf\x1f\xee\xab\xb9\x20\x90\x60\x10\x88\x31\xb7\x94\x8e\xd4\x26\x23\x3a\x82\x37\x8b\x8d\x0a\xd2\x86\x15\xd1\x8d\x8b\x9b\x22\x57\x4c\x74\xc4\xd0\xb5\x70\x9a\x43\xbc\x0d\x5b\xa1\xe9\xc9\x6b\x18\xf2\x16\x03\xfb\xc5\xa3\x38\xbe\x03\xaf\x59\x6f\xfd\x92\x92\x67\x32\xbe\x50\x1f\x7c\x56\xeb\x17\x22\x1b\x3b\x8c\xfb\xec\x0c\x3f\x19\x12\xed\x13\xdb\x10\x1a\x3c\xa3\xd8\x92\x15\x1e\xa9\x55\x6f\x91\x7b\xf1\xab\x3a\x69\xcb\xb2\x6c\x30\xe9\x83\x09\x6b\xdf\x88\xe0\x87\x31\x62\x5f\x96\x7f\xc4\x5d\xaf\x34\x44\xb4\x82\x43\x48\xf9\x90\x2c\x08\xa8\x81\x71\xda\x7c\xba\xc0\x19\x6e\xac\x96\x95\x66\x8d\xb6\xba\x94\xf8\xd6\x5b\x5d\xfd\xf2\x11\x8c\xbb\xcd\x0f\xb4\x2f\x7e\xa0\xfd\x11\x3f\xb0\x83\x1f\xd0\x63\x7e\x70\x9c\xc0\xb0\x06\xb9\x58\xfc\x3c\x5d\x57\x3e\x93\xef\x5a\xc9\xb2\xc3\x0e\x70\x42\xec\x08\xf7\x76\x22\x8f\x99\xec\xed\x24\x7d\x20\xb7\xcf\x49\xd2\xa7\xa5\xb5\x93\xb2\xef\xc8\xdf\xa1\xec\x48\xa8\x74\xd2\x92\xd0\xd9\xdb\x49\x86\x23\xa5\xd9\x49\x8a\x36\x52\xdb\x89\x4b\x59\xc8\x7e\x77\x22\x1e\x60\x11\xa7\x6a\x75\xc9\xc4\x13\x65\x4c\x15\x69\x27\x56\x99\x2b\x36\x1f\xae\xef\xc8\x75\x62\xbb\x6b\xe0\xa4\x84\x6f\x3b\x31\x72\xf4\x80\x3b\x11\xb0\xc2\x09\x0e\x56\x98\x9e\x0b\xf5\x40\x58\x77\x71\x6a\x84\xf6\xfc\x0e\x23\x3b\x36\x57\x93\x16\x23\xf3\x8f\x19\x59\x8d\xe8\xf7\x8c\xcc\x0e\x46\x66\x57\x46\xd6\x9e\x67\x64\x7a\x30\x32\x3e\x18\x19\x21\x3c\x66\xb0\x23\x3c\x66\xf8\xb8\xe3\x34\xd8\xcc\x87\x21\x78\xa7\xc1\xa8\x69\x82\x7b\xb3\xd3\xac\x67\x0b\x34\xfc\x30\x63\xe3\x83\xb1\xd9\xf3\x8c\xed\x97\x8f\x72\x5a\x3c\x93\x15\x27\x5b\x32\xed\x48\x67\x50\xba\x9d\xc1\xb6\x6b\x32\x3d\xaf\xd0\x29\xc6\xef\x42\xa7\x18\xcb\xe5\xa6\x77\x5a\xee\x75\x03\x56\x7b\x5f\x1e\x6d\x25\x56\xe4\x52\x50\x73\x0c\x69\x83\x96\xb7\xd4\x18\x84\x78\xa8\xd5\xb7\x05\x94\x34\x0e\x6c\x0d\x0f\x49\xbf\xee\xca\x03\xcf\x59\x5e\x92\x6f\xa0\xcd\xd7\x1f\x77\xed\xf5\x6d\xbd\xf5\x48\xfa\x77\x0e\xf3\xb5\xf9\x4f\xbd\xf4\x77\xee\xb2\x36\xff\x83\xea\x2b\xeb\xef\x3e\xf8\xe1\x1e\x16\x15\x71\xdf\x97\x69\x85\xb8\x1d\xe9\x63\xe4\xf0\xfb\x0c\xdb\x57\x5a\xca\x38\x96\x98\x16\xa3\x44\x4a\x08\xf7\x7d\x9d\x14\x27\x80\xbd\x34\x69\x3d\xc5\x4e\xbb\xc3\xae\xeb\xd4\x2c\x6c\x5d\xba\x7e\xeb\xe9\x4e\xfe\xe7\x8f\x3b\xf9\x9f\x6f\x77\x32\x73\x75\x72\xa8\x5d\x4e\xb1\x8f\x52\x9f\x88\x08\xc6\xe1\x13\xe5\x4a\x0d\x75\x12\xb6\x15\x15\xa1\x7d\xc0\xad\xec\xa4\x12\x7b\xb1\xec\x13\xc2\x3d\xc9\xeb\x44\x11\xf0\x77\x52\xee\x1b\x17\x8d\xb2\x8f\x9d\x11\x77\x18\xd4\x0a\xb6\x9d\xe0\x22\x47\x59\x27\x31\x05\xd4\x15\x39\xb5\xd7\x2f\xa3\xef\x0a\xb8\x3e\x7a\xfb\x1d\x3a\xae\x93\x52\xf3\xb4\x68\x5d\x0a\x92\xf7\x76\x8a\x35\xf2\x99\xc7\xc8\xbb\x60\xaf\x28\xf6\x65\xe5\x26\x6e\x0e\x3b\x8e\xca\x52\x69\x6a\xe4\xd7\x96\x44\x14\xf5\x8c\x35\xf2\x08\x13\x16\xb8\x03\x23\x95\x00\xaf\x4b\x9c\xbc\x9e\xc2\xc8\x8f\x35\x05\xeb\x85\x98\x94\xe5\x1c\x7a\x43\x5d\xff\xeb\x8f\x47\xfe\x76\x96\x1f\x45\x94\xa2\x6d\xe2\xdc\x24\x96\x57\x89\x5f\xf5\x11\xbe\x58\xfa\xa6\x43\x5a\xb0\x6f\x10\xbe\x8b\xcb\xba\xc0\x2c\xe6\x42\x1b\xdc\x2c\xfb\x79\xa4\x6d\xc7\xbb\x9e\x6e\xd1\x9b\x47\xf1\x27\xcf\x2f\xf8\xfa\xfe\x33\x0b\x9e\x24\x6c\xfd\x60\xb7\x36\x26\xbf\xfa\xf8\x7b\xb7\xcd\x26\xbc\x62\xd2\x78\x63\xd7\x96\xa3\xef\xbc\x3c\x93\xa3\x89\xc1\xd7\x36\x27\x84\x30\x44\x10\x1f\x90\xd4\x03\x49\x3e\xf7\x58\x9b\xe2\x63\xb9\xfe\x75\xf8\xa0\x2e\x44\xbf\xc3\x4f\xfd\xd8\x64\x42\x24\x12\xe7\xc4\xf6\xd1\xe8\xe3\xd2\xcf\xe9\x8c\x1d\xff\x74\x6e\xa9\x0e\xa5\xbe\x18\xcb\xe8\x0a\xc6\x52\x4a\x76\x8a\x2f\x64\x4f\x3c\x83\xac\x8d\xf0\x19\x1d\x31\x1d\xb0\xb0\xc7\x65\x10\xed\xc6\x71\x57\x92\x50\x11\xe5\x41\x53\xbb\xe3\x4d\x88\x1f\x57\x03\x59\x20\xc3\xa9\x67\x1b\x5e\xcc\x2d\x17\xab\x38\xb3\xdd\x60\xbc\x6f\x1f\x05\x56\xde\x66\xbc\x48\x3b\x36\x18\xa1\x42\xc9\xbc\x5f\x53\x4a\xa2\x35\x07\x07\xee\x57\x0e\x7c\x05\x88\xf0\xf8\x06\x07\x86\xb1\x01\xe9\x18\x07\x42\x0a\xe0\x33\xeb\x23\xc0\x81\xfb\xc1\x81\x7b\x5b\x21\x66\xda\x46\x37\x28\x73\x63\xf8\xc7\x2a\x0f\x38\x32\x1f\x1c\x99\xb1\xd9\x0d\x8e\x1c\xdf\x71\xe4\xea\xaf\xdc\x0a\x05\x7c\xf7\x28\x3b\xcc\x6d\xd4\xc2\xdc\xcc\x68\x27\x64\x96\x18\x0d\x51\x19\x3e\x26\x57\xf7\x55\xa6\x22\x59\x4c\x21\x57\xba\xca\x1d\xbe\xca\x1d\x04\x96\x79\x9f\x19\x8a\x7b\x61\x20\x0b\xcf\xe5\x06\x60\x46\x17\x18\x15\xea\x8f\x35\x8a\xc1\x90\xeb\x89\x28\xf5\x81\x4c\x86\xcc\xdf\xfb\x98\xf4\x95\x74\x43\x11\xb4\x3e\x19\xd1\x0c\x63\x19\x97\x0a\x0d\x54\x4b\x81\x06\xe8\xe1\x5e\x7a\xdc\x01\x0d\x20\x19\x63\xb6\x42\xb7\x12\x2b\xd6\x98\xf5\x58\xe0\xbe\xde\xbd\x7c\x69\x69\x29\xd0\x85\xa8\x9d\x67\xcd\x18\xc3\x9f\xa4\xb8\x84\xcf\x84\x01\x06\x2f\xdf\xeb\xdc\x61\x12\x2b\xa9\xbe\xee\x1d\xd2\x67\x3d\x9b\x14\x18\x09\x20\x6e\xf1\xa5\x92\x16\xe9\xd0\x98\x88\x22\x81\x1f\xa0\xb7\xe8\x32\xab\x6d\xc7\x20\x3c\x3d\x49\x5f\x3f\xca\x4c\xf5\xbc\xb7\xde\x32\xd0\x8c\x38\x0c\x34\x96\xcb\x40\x13\x71\x18\x68\x74\x19\x68\x0e\x85\xc8\x8f\x70\x74\xb0\xd9\x29\x86\x14\x0c\x97\x93\x92\x23\xbe\xec\x58\x3d\xb5\xcc\xa9\x10\xe7\x0e\x03\x6f\x17\x6a\x8a\xd0\x56\xf7\x09\xdb\xd5\xb2\xd1\xc8\x75\x99\x1f\x1a\x6d\x7d\x74\xd9\x68\xb0\x24\xe1\xc5\x1f\xbf\x6b\xa3\xe1\xc3\x46\xc3\xcb\x46\x33\x6c\xd9\x68\xe4\xb0\xd1\x20\x44\x54\x10\x68\x84\x85\x4e\xb6\x16\x7a\x21\xe5\xae\x68\x6d\x64\x5c\x38\x7c\x2f\x88\xc5\xc4\x2b\x6c\x3e\x78\x7a\x3f\x32\xaa\xc0\x89\x92\x8e\x4d\x29\xc1\xbb\xd9\x56\x7c\xb5\x14\x25\x76\x7e\xde\x06\xf3\x37\x8f\x42\xd6\xfe\x2b\x70\xbd\x3e\xc6\xf5\x71\xc5\xf5\x72\xc5\xf5\x7e\xe8\xf9\x45\x21\x61\xdb\x58\xa9\x6d\x79\xe9\xfa\x98\x8d\xe1\x71\xc9\xb1\x23\xdd\xe9\x01\x51\xe8\x48\xdb\xf7\xbb\x9a\x3e\x2f\x92\xb0\xbf\x35\x40\xbe\x2b\x50\x5a\x23\x21\xe9\x18\x19\x1d\x81\xed\x3b\xe4\x9b\x45\x78\x7d\x1e\xc9\x48\x12\x2a\x28\x34\xfb\xb0\xcb\xe8\xb9\x17\x84\x1f\x88\x68\xd7\x36\xdc\x80\xa5\x92\xfa\x01\x88\x73\x3a\xf3\x61\x95\xb1\x45\x02\x23\x41\x1a\x92\xcb\x90\x2b\x2a\x7f\x3b\x40\xfc\xfe\xe3\x59\xb8\x1d\xbc\x88\x64\xa7\x35\xb8\x79\x58\x6f\x5b\x0a\x86\x9b\x66\x22\xd9\x69\xfa\x91\xc5\xa0\xc3\x03\x2d\x96\x87\xff\x46\xbd\xba\x92\xb6\x67\xc2\x0b\x05\xa2\xa9\xc4\x4f\x11\x4c\xd2\xd8\x83\x70\x6c\x05\x3f\x86\x25\xd2\x7c\x7a\x16\x6e\x10\x5e\x30\xe8\x5c\x70\xc2\x70\x5b\x47\xf6\xe3\xcc\x6c\xd0\xdd\xba\xf5\x79\x6d\xd8\xd3\xfd\xfb\xf0\x28\xfa\xf7\x99\xed\x47\x69\x3c\x02\x19\xb7\x05\xd0\xbc\x23\x74\x6d\x20\x6f\xae\x21\x3a\x1f\x11\xf4\x1c\x4d\x7d\xf9\x30\x14\x71\xab\x8d\x23\xa8\x20\x9a\x45\x4e\x56\x64\x08\x42\xaa\xe2\x18\xb6\xd7\x71\xd8\x4a\x10\x91\x7d\xac\x40\x0a\x24\x5f\x86\xa8\x8a\xc3\xc1\x60\x99\xee\xf4\xca\xd8\x21\xce\x1c\xa6\x3b\xea\x2b\xd3\x8a\x23\xf6\x17\x11\x15\xe1\x7a\x1e\x83\xf7\x31\xf8\x2e\x32\x97\x20\x13\x86\x6b\xda\x40\x2e\xa5\x68\x29\x8a\x37\x2f\xd3\xc4\x5a\x25\x2b\x45\x4f\xc0\x25\xb6\x54\x0c\x5d\x6d\xc3\xaa\x29\x35\x0c\x47\x4b\x08\x80\x10\x85\x43\xa0\x8f\x9c\xc6\xb9\x12\x4d\x98\x35\x2f\xd5\x1e\x99\x0b\xa8\x0d\xd1\xd2\x04\xe6\x35\x69\x2d\x75\xcd\xa6\x2b\xc7\xcf\x58\x1b\x12\x75\xc2\x30\xfc\x23\x55\xe8\xda\x47\xf7\x15\xb9\xb2\x32\x57\x2c\x5f\xab\xfc\xce\x7c\x94\x48\x1e\x3b\x62\x72\x8f\x95\xd0\x38\xac\x89\xc8\x59\xbc\xef\xe2\x7a\x87\xbc\x8e\xd9\x91\x7f\x05\x01\x83\xa1\x13\xc9\x71\xb5\x4f\x3f\xf2\xd7\x06\x80\xef\xa2\x1f\x04\xeb\xac\xd9\x7d\x7a\x8d\x7c\xf3\x28\xdb\xd7\x33\x9b\xe2\x70\xb3\xd3\xab\x01\x83\x75\x19\x30\x88\x2f\x62\x6b\xd3\x81\xc7\x40\x98\x3a\x6b\xc0\xc5\x83\x46\x4d\x07\x0c\x2d\x2b\xc7\x9a\x94\x2e\xb2\x34\x63\x78\xc8\x69\x5f\x81\xaa\x25\x0b\x73\xd9\xa8\x10\x86\x48\x9e\x1b\xb0\xcb\xca\xe2\xcc\x0d\xce\x5b\xd8\xe1\x87\xf7\xdd\x69\x6d\x62\x9c\xc8\x67\xf8\x4a\xe0\xe7\xb9\x1c\x3d\x6a\xda\xfb\x5c\x59\x40\xa6\x9a\xdc\xd1\xe8\x53\x4b\x40\x1b\x2d\xeb\x90\x5e\xad\x43\xec\x97\xea\x50\x75\xe1\xe9\xb1\xf9\xf6\xd1\x2e\xdd\x6d\xfa\x41\x67\x12\xa1\xa2\xc5\xa0\xb5\xc4\xc1\x44\xe4\x02\xf2\x79\x1d\x13\xdc\x7b\xf3\xc9\xa3\x00\xd5\x9a\x60\xa1\x49\x03\x91\xa2\x87\x4c\x74\xbb\x5c\x75\x30\x51\xd8\xf3\x5b\x69\x27\x70\xb0\xc8\x5c\x36\x64\xeb\x2b\x05\x81\x38\x3a\x0d\x67\x7e\x37\x0c\x36\xe2\xec\xba\x7f\x67\x63\x32\x00\xbf\xd8\x8e\xf6\x3d\xdd\xcb\x5f\x7d\xdc\xcb\x5f\xdd\xf6\xe8\xce\xd1\xd8\x7d\x03\xac\xc9\xdc\x5c\x04\x7f\x67\x4d\x31\xbe\x48\x6c\x9b\x0f\xe4\xfb\x53\xc1\xb6\x3f\x70\xf1\x18\xdb\xf1\xec\xd3\x2d\xf8\xf5\xc7\x2d\xf8\xf5\x6d\x7c\x2c\x08\x98\x87\xb7\x03\x4b\x6c\x32\x02\x7f\xdb\x72\xc0\xe4\xb3\x47\x6e\xc5\x70\xea\xc7\x62\x62\xcc\xbc\x21\xc7\x7d\xf2\x46\x1d\xc1\x92\x68\x67\xd2\x96\x4e\x70\xad\xb0\xcd\x75\xc5\xe7\x3b\x8d\x36\xb0\x85\x4b\xf8\x5b\xb9\x7a\xc2\x31\x36\xbd\xf6\x84\x78\x3b\xda\xf0\x74\x4f\x7e\xf3\x71\x4f\x6e\x27\xb3\xf2\x82\x79\x83\x36\x04\x9e\x1d\x63\x17\x5b\x20\x21\x4c\x2c\xbf\xb8\x7e\x4e\x56\x28\x86\x5a\x9f\x65\x47\x66\xc3\xbe\xd9\xf5\x26\x84\x7d\xd5\xaa\x11\xdb\x8e\xf7\x3d\xdd\xaa\xdf\x7e\xdc\xaa\xdf\xde\x9e\xe1\xc2\xc8\xa3\x3e\xda\x1b\x9b\x6c\x8b\x05\xa3\x75\x16\x9b\xaf\x9a\x05\xb1\xdb\xc0\x82\xce\x66\x7e\x98\xdf\x4a\x18\x9c\x90\xca\x30\x7b\x3b\x29\xf5\x59\xda\x35\xec\x09\xac\x63\xd9\x13\x58\x60\x61\xf0\xc9\x05\xb5\x55\x18\x48\xe2\xa4\xec\x93\xb4\x68\x9a\x69\xa3\x80\x3d\xa1\xef\x34\x90\xc1\xb5\x37\x02\x5d\x07\x4d\x66\x5a\xa6\x06\x86\x4b\x57\xe8\x64\x5f\xe9\x85\x77\xe9\x72\x07\x73\xa0\x20\xa3\x83\xe9\x6a\x06\x32\x55\xd7\x47\x49\x75\x22\xa9\x5e\xca\x56\xa2\xcb\x68\xf3\xeb\x8c\x86\x6d\x47\xaf\x9f\x1e\xbb\xff\xf2\x28\xed\xe8\x33\x99\x10\xaf\xa9\x15\x07\xf6\xe7\xbd\x5f\x48\x7c\x1b\xa5\x3e\x72\x9e\xc9\xf3\x4a\x96\x9a\x97\x34\xda\x8e\x07\x9e\xfe\xec\xff\xf5\xfb\x6e\x12\xaf\x9e\xf5\x01\xc9\xa8\x19\x38\xa2\x53\x4f\x52\x42\xb1\x7a\x2c\xb0\x45\xd5\x38\x65\x87\xf5\xee\xc4\x44\xd3\xb5\x46\x85\x0c\x4e\x89\xa7\x84\x15\x28\xf3\xc2\x3e\xf6\x3a\x85\x91\x4b\xa4\x61\x33\x98\xa5\x99\xca\xc5\xc7\xd8\xd5\xb5\xf9\x18\xc8\x61\x10\xc6\xeb\x31\xe7\x0b\x91\x30\x1e\x24\x1a\xd6\x10\x50\xc7\x72\xe4\x7e\x12\xb5\x89\xf2\x33\xaa\x3c\xc3\x10\x64\x48\x73\x98\xde\x91\x85\x61\x53\x83\x2c\x63\x4b\xc4\x1c\x0c\xde\x13\x91\x57\xa3\x03\xb8\xc3\x0d\x18\x69\x74\xc4\x63\x46\xca\xf2\x02\x8e\x81\x3c\x2b\x7c\x49\xe7\x1d\xfb\xf6\xca\x0d\xe9\xc3\x8c\x11\x3e\xef\xa4\xbb\x87\x37\xf3\x81\xdf\x35\x06\x1e\x62\x1f\x97\xcc\x3d\x90\x51\x08\x59\x3e\x4f\xac\x80\xef\x27\x12\x9b\x03\x8b\x8d\x62\x56\x6b\x4e\x6c\xb4\x5d\x87\xf5\xe9\x59\xfa\xbf\x1f\xbb\xcd\xdc\x86\x90\x5e\x34\x23\x39\xce\xa6\xd7\x28\xe5\x91\x97\xfa\xe5\xe9\x57\xff\x3f\x4f\x2c\x80\xe7\xbd\x64\x6a\xa6\xaa\xcd\xbb\x80\x76\x0a\x8d\x20\x6e\x82\x02\xd9\x13\x4e\x74\xec\x04\x9d\x4a\x34\x95\xf6\xb8\x26\xbc\x4e\x8b\x8f\x16\xd7\xab\x09\x0f\xe7\x35\x7c\xe0\x8a\x84\xdf\xc3\x68\x3d\x72\x9d\x6c\xc3\x6e\x46\x0a\xf2\xb8\x61\x4a\x60\x22\x16\x24\x89\x1f\x6b\xda\x04\x11\x66\x83\x37\x41\xf1\x91\x8c\xb5\x15\x6f\x69\x4d\x3d\xd6\xf4\x1b\x52\x72\xf3\x32\x3b\x60\x89\xc0\x03\x5a\x50\xb5\x82\x0f\x67\x54\xa6\xdf\x99\x6c\x5e\x56\xcc\xc8\xde\xc2\x04\x13\xe5\x63\x5c\x4c\x65\x1f\x96\xcd\x6a\x21\xc0\x8f\x31\xf0\xe0\x75\xc2\x21\x40\x9b\xd7\xb4\x96\x62\x0e\xbf\x12\x38\x77\x62\x43\x82\x66\xb5\xb1\xe6\x79\xbb\x8e\xe2\xd3\xb3\xf2\xff\x3e\xe1\x47\xf4\xcd\xeb\x37\x5f\x3c\xe3\xb7\x53\x02\x3e\x14\xd5\x33\x10\x77\x8f\x5d\xa0\xe6\x04\xdf\x02\x6f\xd6\x6d\x85\x93\x28\xb2\x3a\xe4\xf7\x99\x38\x4b\x85\x4b\x6e\x4a\x34\xa3\xf4\x33\x19\xd3\x25\x9a\x0e\x9e\xb6\x7a\xba\x5b\xd7\x66\x63\xa5\x75\xab\x37\x22\x95\xa0\x24\xaa\x3f\x14\x1a\xe4\x21\xcd\xd9\x90\x80\xc1\x86\xa3\x94\x8c\xf1\x40\xe1\x10\x35\x2f\xb9\xa6\x21\xbb\x16\x49\x67\x8b\xde\x2c\x73\x92\xd0\x5d\x74\x45\x98\x64\x84\xe1\xa5\xa3\x33\x94\xe1\xd1\x19\x4e\xce\x91\x32\x8d\x00\x3c\xa6\x25\xb7\xa8\x29\xf4\x6c\x2b\x6c\xc2\x11\x47\x10\xa1\x2b\xbd\x5f\x94\xa0\xb0\x3d\x49\xeb\x08\x8f\x7c\x1b\xa5\x39\x45\x73\x86\xb5\x4a\x9a\x8f\x1a\x06\xf5\x16\x36\xb6\xeb\x98\xdd\xc8\x3d\xf3\xcf\x7f\xf3\x82\xfe\xf8\xa9\x02\x5a\x5f\xbc\xfb\xf5\x33\x59\x5f\x96\x1f\xf6\x39\x7a\x5c\x4e\x12\x7c\x36\xe6\x8b\x13\x3d\xdc\x07\x8f\x96\xd9\x61\x5b\xaa\xc6\xd5\x2a\x59\x5e\x1c\xd2\xc6\xa0\xdd\xcc\xeb\xd8\x8c\x03\xca\x1b\x2c\x83\xd9\xf7\x65\x93\x93\x81\x0b\xd0\xb4\x0f\x33\x95\x5c\x37\xdb\xa5\x21\x8c\xba\x07\xcd\xe3\x23\xb7\xbb\xc4\x8f\xba\xf4\x6c\xad\x9d\x2b\xd4\x2f\xae\xb2\x5c\x33\x7c\xb9\x66\x60\x9d\x97\x5e\xd8\x0f\xd7\x0c\xbd\xba\x66\xe4\xa1\x8f\x44\xb5\x55\xb3\x31\xe5\x4c\xc4\xf3\x0b\xc2\xfe\x84\x67\x20\x01\xb7\x5c\x4e\xac\x76\x36\x91\xcb\x89\xfa\x5e\xa2\x7b\x34\x41\x86\x8a\xc9\x45\xca\x31\x26\x95\xc8\x94\x80\xe0\xfe\xde\x4d\x23\x9a\x5b\x94\x3a\x8f\x54\x92\x8c\xc8\x0b\x99\xa5\xb6\x20\x50\xc2\x10\x7a\x96\x7c\x21\xa1\x71\x0e\x1a\x97\xa2\x80\x3d\x16\x4e\x54\x68\x72\xd0\x6a\xb1\xd3\x0d\x5f\x0d\x63\xb8\x58\x61\x63\x7a\x39\x6d\xe8\x9e\x5d\x96\xd3\xc6\x90\xc3\x69\x23\x0e\xa7\x0d\x3d\x2c\x98\xb9\x14\x3f\x24\xee\xec\x88\xe1\x48\xf2\x59\xf0\x7b\x39\x6d\xe4\x32\x0f\x88\x7c\xef\xb4\x51\xd2\x0e\x4e\x1b\xe3\x70\xda\xc8\xe5\xb4\x51\x12\x07\x4e\x1b\x79\xdb\x69\xa3\x66\x4f\x1e\x67\xda\xfa\xe6\xd5\xfb\x37\xaf\xdf\xde\xde\xb0\x2d\x0d\xd8\xd9\x37\x0d\x2a\xc5\x00\xbb\x91\x52\x92\xca\x4a\x4a\xd9\x44\x11\xa8\x82\x13\xa4\x45\x10\xba\xf2\x5a\xc3\xd9\xf1\x4c\xc9\x3b\x53\x22\x3b\x04\x4b\x34\x1a\x0e\x07\x1a\xb6\x0e\xf5\x42\x38\x10\x2b\xac\xbd\x6f\x88\x44\x61\x47\x4e\xec\x88\x71\xe6\x10\x98\xe6\x4b\xcf\xda\x71\x42\xa5\xad\x20\x07\x11\x33\x80\x13\x89\x2d\xd7\x3b\x24\x9e\x8e\x9e\x2b\x6b\x1e\x9c\xbf\x11\x62\x70\x8d\xcf\x59\x2a\x99\x78\x69\x6d\xf5\x5c\xe9\x7d\x48\x9f\x4d\x7d\xe4\xca\x75\x20\x8c\x14\x30\x48\x92\x4b\x84\x64\x49\xd8\x8a\x4f\x94\xd4\x41\xe5\x91\x65\x1d\x65\xdb\x5d\xaf\x95\x47\xa0\xd6\x74\x9f\x46\xa8\x74\xd4\x91\xd9\x9f\xc8\xfb\x0a\xd3\xeb\x92\x1b\x0a\x8f\xc5\x38\x47\x8c\x4b\xf5\x4f\x6f\x65\xc8\xaa\xd9\xd1\xc7\xb4\xf5\xed\xfb\xf7\xaf\xde\xbe\xbc\x0d\x84\x53\xa8\x0d\xdd\xa1\x4f\x29\xd2\xc1\x2c\x53\xc5\x0a\x29\x38\xd4\xb9\xb0\x16\x2b\x11\x2f\x6f\x8c\x8b\xbe\x11\xf6\x17\x73\x63\xb2\xc6\xac\x48\xba\xc9\x85\x56\x8a\xc2\xbc\xcf\x52\x7d\x8d\x6c\x47\x10\x2e\x12\x7c\x20\xbd\xcd\x64\x96\x36\xb8\xe3\xf9\x54\xc5\xfb\x6a\xd5\x2f\x13\xa9\x95\xec\x44\xd2\x3f\x42\xc6\x2a\xea\x6c\xcb\x74\xd2\x35\xf7\x40\x14\xba\x62\xc7\x74\x5d\x4a\x1a\x2d\x0d\x71\x5e\x2b\xf5\xc8\x46\x85\xb5\xeb\xc5\x60\xb2\x83\x7c\x47\xdc\x04\x12\x4e\x50\x1f\xcd\xc3\x27\xf6\x9e\xd0\xb8\x3a\x41\x91\x2a\xa2\xde\x56\xca\x14\xd3\xc6\x3c\xd6\x7b\xaa\x83\x78\xf5\x89\x63\x5b\x43\xf5\x70\x2f\x1d\x09\x26\xf6\x3a\xaa\x12\xb0\x38\x62\xeb\x3b\x37\xf6\x3e\x51\xcb\x60\x1c\x3b\x6d\x46\x7b\x60\x63\x8a\x56\xad\x94\xd1\x67\x51\x3f\xdb\x4a\x6b\x52\xcf\xa5\xad\x91\xc2\x71\xc0\x7f\x0e\x99\x11\x07\x5c\x4a\x7a\xe1\x94\xbb\x71\x84\xc0\x8c\x18\x7b\x89\x96\x11\xa3\x59\x2f\x38\x98\x48\xfb\x18\x51\x64\xae\x78\xee\x68\xdf\xed\x45\x62\x8f\x16\xc9\x6f\x9f\x49\x2c\x8b\x18\xdf\xc8\x2d\xc7\x35\x3d\x34\xa5\x6d\x25\xf1\x02\xbe\x54\x59\xa2\xc5\xce\xd1\x15\xb5\x3c\x9c\xe4\xa2\x7a\x5c\x10\xf6\x73\x74\x6c\x39\xd1\xc0\x5f\x24\x03\x97\xeb\xef\x7a\xac\xfe\xae\xf7\xa8\xe9\x26\xdf\x39\xf9\xdb\x76\x7c\xf5\x76\x17\xfc\x8f\x1f\xa3\xc6\x77\x7f\xfd\xea\xed\x73\xb0\xd4\x08\x5a\x55\xbf\x18\xd3\xd9\xd3\x2f\xf5\xc7\xca\xe6\xe5\xe9\x25\xbe\xea\x8f\x6b\xd5\x49\xbf\xf8\x2d\xbc\x5a\x9f\x8f\xdf\x4b\x37\xf8\xf2\xd9\x44\x6c\x48\xbe\xa5\x42\x3b\x4e\x04\xeb\x19\x09\x1f\x6b\xf6\x51\xab\x65\xa7\x8e\x6c\x29\x6b\x1b\xa8\x69\x5f\xa0\x09\x1e\x23\xeb\x0c\x91\x85\x7d\x6d\x31\xeb\x2c\xa5\xfe\x24\x99\xc8\x65\x73\xd2\x12\xc9\xa5\xb4\x6a\xda\x6e\xd4\x71\xd2\x94\x70\x49\x26\x5b\xfd\xd2\x8b\x28\x79\x6d\x4c\x8f\x68\x27\xd7\x8d\x83\x0b\x26\xee\x38\xa2\x69\x9d\xef\x4e\x94\x82\xa2\x3a\x27\x1e\xfd\x50\x78\x79\xac\xf7\x8b\xca\xee\xb1\x4e\xda\xb1\xb7\xbe\xa2\xdc\x4e\x3c\x64\x0e\x68\xa3\x47\xb8\xec\xa9\xe4\x36\x4e\x60\x08\x2a\x9d\x38\xa0\x81\x90\xcf\x60\x69\x41\x2b\x01\x18\xfb\x8e\x6d\x07\xb3\x15\x8b\x33\x72\x72\xa9\xe5\x21\x93\x18\x9e\xce\xb3\xf0\xb7\xd1\x9e\x82\x94\xfb\x48\x0e\x4d\x3a\x19\xbb\xe1\xb6\x97\x82\x0e\xa7\x26\x6c\x90\x31\xea\x5d\x15\x41\xef\xeb\x24\x61\x1c\x5c\x51\xcc\xbc\xd2\x03\xc4\x3c\xea\xf0\xf5\xe9\xec\x8b\xeb\x87\x5e\xf3\xf6\x5e\x0b\x20\x25\xdc\x41\x1d\xb1\x98\xb2\x52\xee\x1f\x4c\x5f\xed\x9c\x22\x48\x48\x04\xf0\xb3\x98\xbe\xe9\x1c\x88\x27\x53\x59\xa9\xe7\xa5\xcb\x91\x08\x03\x09\x6e\xe8\xa8\x60\x01\xbf\xd6\x9e\x90\xd3\xc4\xae\xab\x9c\x42\xc9\x8c\xc2\xe4\x44\xc4\x70\x70\x43\xf5\xbf\xb5\x51\xca\x0a\xeb\x6d\x1e\xdc\x25\xfb\x32\x3b\x0e\x53\x64\xe2\x5a\xfb\x07\x8e\x92\x0f\xf0\xd1\x8a\xee\x2b\x4c\xdb\x92\xe7\x75\xf1\x3d\xc0\xae\xe5\x59\x38\x4f\xee\x8a\x5a\x4b\x29\x08\x32\xa4\xd0\x08\xe5\x55\x1c\x8a\x15\x79\x9c\x3c\x14\x81\x9e\x66\x2b\xc8\xd3\x7a\x6f\x9c\xde\xd4\x05\xa1\xd8\x92\x2b\x93\xaf\x94\x2a\x23\xdc\x78\x24\x14\x51\x0e\x6f\x41\x8e\x08\xb1\x52\x63\x59\x06\xa4\x0b\xdb\x40\xe2\x26\xe9\x31\xd3\xbc\x29\x8f\x1d\xc7\xf0\x96\xe2\xcd\x88\x11\x6c\x6d\x05\x70\x4a\x33\x93\x55\xf8\xc6\x6f\x25\xe1\x28\x3a\x1c\x8f\xe8\xf0\x8b\xd7\xaf\xde\xbf\xfa\xf0\xfa\xb6\xfd\x1f\x12\x4a\x82\x90\x55\x84\x94\xbc\xc9\x8a\x65\x59\xae\xae\xa8\x64\xb2\x02\xe4\x23\x90\x80\x1e\x91\xbb\xd6\x57\x02\xe7\x7d\x9d\xb0\xaf\x4b\x9c\xc7\x53\xec\xbe\xaf\x92\x18\x5e\x2f\xb4\x75\xe9\xfa\xad\x87\x7b\xe4\x8e\x12\x2f\x01\x86\xaf\xea\x2a\x53\xa9\xba\x02\x3c\x17\xe8\x18\xc7\xf2\x43\x86\x0c\xc4\x35\x22\xa1\xad\x27\x02\x2e\xb1\x72\x70\x89\xf3\x78\x8a\x5d\xf7\x40\x24\x9a\xeb\x51\x60\x22\x75\x5e\xbf\x75\x7b\xd0\xf2\x31\x46\x78\xf7\xf5\x6f\x7f\xa0\x0c\x16\xea\x2b\xca\x5e\x47\xe1\x65\x4e\x60\x5f\x61\xfb\xdc\x07\x96\x36\x23\x46\x7a\x55\x55\x41\x6d\xa6\xec\xa8\x4b\x21\x83\xa7\x98\x34\xcd\x71\xb1\x61\xfb\xca\x0d\x1a\xad\xae\x45\x5f\xf7\x42\xc9\xea\x52\xeb\x79\xe9\x22\xc8\x37\x45\x30\x9d\xd7\xb7\x06\x15\x9c\xaa\xe7\xe8\x1c\x26\x7b\x09\xf3\xd2\x9a\x83\x90\x89\x15\xcf\x44\x49\xc6\xb0\xbb\xa8\xb5\xaa\xd1\xc2\x65\x6a\x66\x0b\x24\x82\xa3\xe6\xce\x13\x19\xb3\x86\x5f\x34\xc7\x5e\xe7\x05\x41\x01\x4b\x99\x71\xaf\xf8\xca\x32\x2b\xbc\x34\x1c\xe9\x06\x9f\x70\xe9\x86\xdc\x61\x22\x03\x9e\xef\xaa\x72\x1e\xce\x0f\xf7\x05\x7a\x4a\x3d\x45\xc6\x71\xd5\xc6\x44\x0d\x05\x39\xba\x35\xee\x71\x78\xbb\x1a\xf2\x57\xfa\xc0\xf4\xfb\x68\x4b\x0f\x30\xf8\x8b\x33\xaa\x66\x14\x82\xb0\xb1\xfc\xc8\xf0\x3e\x38\x94\x09\x7c\xcb\xb5\x48\x72\xf9\x96\x87\xa2\x44\x5f\x86\xae\x8c\x98\x1d\x5e\x1c\xe3\x0e\xe9\xdc\x54\xe1\xe4\x8c\x6f\xd7\x9d\xd5\x96\x60\x9b\x47\x1b\x1f\xee\xb3\xe3\xdd\xd9\x8f\x5a\x98\xa0\x2d\x44\xe1\x8e\xd2\x9c\x55\xb0\xe7\x28\x2b\x63\xa6\x4f\x8d\xe5\xdf\xb2\x3e\xb5\x76\xae\xfc\xea\xa9\x2b\xcb\x1f\x1d\x38\xad\x9e\x22\x22\xa4\x10\x9d\x47\x11\x43\x5e\xd5\x0c\x95\x01\xad\xb4\x09\xd4\x5f\xf8\x08\xea\x5c\xc5\x77\xf0\xde\x13\xd3\x92\x57\xbc\x22\x22\x58\x96\xe6\xa5\x82\x3a\x20\xc2\x3c\x57\xb3\x6f\x2f\xe7\x17\x8f\x96\xf3\xbb\xf7\x5f\xfc\xe2\xd5\x57\xaf\x9f\x4d\xea\x5d\x4c\x33\xba\xa1\x1c\x50\xe8\xe1\x1a\x0f\xa7\x8b\x75\xee\x01\xd7\x25\x28\x72\xc5\x30\x15\xbb\x95\x04\xcf\x9e\x30\x9e\x3c\xd6\xae\x26\xc3\x55\x54\x7a\x13\x80\xc5\x91\xcb\x13\x82\x34\x97\x17\x12\x77\xc2\x36\x1a\x18\x03\x12\x11\x49\x2f\x60\x88\x32\x02\x0e\xf7\x81\x3a\x41\x71\x02\x12\x2a\x69\x4b\x2b\xba\x0a\xd5\xdd\x58\x65\x17\xa6\xbb\x22\xec\xb6\xf2\x79\x49\xc0\x4f\x07\x4e\xb8\x47\x0d\xe6\x5c\x2f\x44\xbe\xef\xb4\x6b\x35\x9d\xb1\x2e\x21\x44\x4f\x7b\x4c\x14\x59\x12\xe4\xe3\x40\x25\xb9\x7e\x19\xc3\x77\x94\xcf\x91\xd1\x92\xad\xc0\xff\x84\x07\x51\xb7\x33\x52\xe5\x5a\xc0\xa5\x6c\xb7\x4c\xb8\x96\x21\x31\xb3\xf8\xf4\xd2\x47\x2d\xa1\xe9\x63\x23\xd2\xbc\x25\x97\x92\x2b\x81\x7c\x7b\x2b\xa7\xb2\x44\x43\x92\xb0\xde\x97\xdb\x37\xdc\x7c\x0a\x93\x1f\xac\x75\x98\xcc\xe3\x13\xb7\x67\xf7\xf3\xc7\xd9\x77\xbf\x7d\xfd\xe6\xcd\xab\xaf\xde\x3d\x1f\x27\x58\xca\x9d\x61\xc3\x03\xa1\x57\x67\xeb\xb1\x31\x71\x41\xe6\x8b\xb1\x6d\xd6\xa3\x25\xe9\xd9\x75\x6c\xc7\xbd\x0f\xf7\x81\x52\x90\xb6\xa0\x2e\x8d\xf3\x50\x46\x94\xe9\xf5\xa1\xa1\xa8\x8b\x71\xce\x21\xdb\x71\xef\xed\x76\xbf\x7c\x9c\x37\xf9\xdd\x97\xaf\x5f\xbe\x78\xf3\xf6\xdd\x73\x15\x15\x28\x4b\x21\x38\x0f\xd1\x8b\x4b\x9e\x69\x24\xd2\x8f\xd5\x85\xcb\xcd\xe2\xc5\xf5\xb5\x2f\xfe\xf8\x71\x98\xdd\xeb\xde\x7f\xf4\x93\xff\x8a\x32\x6e\xf5\xb6\x57\x8f\xde\xf6\xfe\xd5\x97\xaf\x4b\xcd\x7f\x75\x3b\x4a\x63\x14\x8f\xe9\xfb\x38\x0c\x23\x3c\x8a\x8c\x26\xc3\xd5\x6a\xc0\x43\x12\x65\x82\xc1\x78\xa8\x88\x62\x21\x27\x6a\x43\x8e\xd0\x96\xcc\x81\x7b\x89\x68\x55\x5f\x81\x36\x6d\xb0\x27\x16\xcb\x5d\xc8\x88\x56\x72\x08\x98\xd0\x05\x39\xf7\xc1\x48\xfa\x62\x24\x70\xbb\x44\xca\xe3\xc5\x48\x68\x45\xda\xf0\x00\x47\x5f\x6d\x2c\xa6\xad\x77\x78\x6f\x68\x53\x65\x48\x2e\xb1\x98\x52\xfa\x1b\x98\x36\xb0\x17\x5e\x0b\x99\xad\xd8\xea\x5c\xd5\x92\xb0\x2b\x7b\x30\xed\xe2\x07\x7e\xd4\xc4\xd6\x23\x4f\x3e\xb6\x02\xea\x12\x98\x36\xb6\x7f\x05\x69\x5c\x33\x56\x43\xa9\xd3\xca\xf3\x03\x3f\xbf\x12\x1a\xc5\xce\xeb\xdb\x60\xda\x7d\xe0\xc9\x6a\x1b\x1a\x6b\x48\x20\x64\x17\x16\x3e\x6b\xa7\xcb\xf0\x22\x31\xde\xdd\xa3\x0d\x8f\x16\x44\x6d\x60\xa3\xe0\x48\x14\x51\x50\xae\xe8\xde\xb8\x79\x18\x52\xc5\x3a\xe5\x1d\x92\x05\x8c\xbe\x12\xab\x52\x6e\x25\x4e\xeb\x9d\x61\x82\xed\x4d\x1d\x76\xb6\x3e\xd6\x07\x6d\xf0\xd9\x39\x90\x8d\xc2\x46\x61\xc4\xde\xbc\xfb\x2c\x90\xe1\x41\x08\xd9\x08\x2e\x9c\x57\xec\xb3\x70\x00\x97\xa6\x5a\x2f\xb8\xd8\x78\x86\x57\xff\xe2\xd1\xca\xfa\xea\xc5\xcb\xf7\xcf\xa8\x4d\xb0\xda\x09\xc9\x99\xed\x88\x2f\x4e\x38\x71\xd2\x6d\x0b\xc8\xe7\xfd\x31\x24\x7c\xf5\xe5\xb3\x65\xbd\xe0\x17\x4b\xbe\xaf\x13\xcf\x26\x2b\x01\x84\xa3\xd4\x38\x95\x8a\x85\xc4\x08\x6a\x76\x2d\x76\xe7\x18\xfd\xc5\x67\x11\x81\x08\xb7\x7c\xd4\x1f\xef\xab\x58\xaa\x50\xac\x64\xd9\xf5\xe6\x55\x25\xc3\xa5\xe1\x12\xd1\x71\x73\x17\x83\xb9\x3b\x47\xc7\x8b\xd3\xfb\x6e\xae\x75\x44\x42\xe9\xfa\x5d\x17\x23\xd5\x29\xab\x6a\x37\x72\x61\xde\xd5\x5b\x1f\xee\x11\x14\x58\xef\xc7\x09\x8d\x5c\x8a\x05\xb9\x4f\x88\x13\x62\x9b\xab\x30\x7f\x1e\x65\xfa\xfa\x18\x28\x2d\x89\xb4\x07\xbe\x72\x79\x07\xa2\x40\x89\x58\xe7\xa2\x49\x94\x82\x93\xf5\xe6\x75\xa2\xab\xa6\x1c\x52\x78\x23\x75\x0d\x6c\x59\x8e\x4a\xf5\xd7\x40\x00\x4d\xec\x95\xd6\x09\x4c\xdf\xb8\x84\x44\x95\x75\xf3\x2a\xaa\x08\x87\xd8\xd5\xe6\xdb\xd3\xf7\xd8\xde\xfd\xf5\x9b\x6f\x3f\x7c\xf5\xfa\xed\x73\xf5\x3a\x51\x1f\xc2\x56\x9c\x70\x74\x39\x47\xcf\x0b\x8f\x3c\x9b\x12\xfe\x26\xf3\x4b\xdd\x50\x7f\x13\x7b\xe0\x86\x61\xf6\x70\x0f\xd1\x4d\x67\x4a\xbb\x90\xf1\xb9\xfe\xbc\xdc\xe6\x8b\x9f\x3f\x36\x5c\x7f\xf3\xeb\x77\x1f\xbe\x45\xa1\xcb\x67\x2a\x7f\x21\x7b\x51\x9c\x45\xec\x12\x61\xdb\xc2\x6d\xea\xcb\x33\x9b\xfa\x52\x96\x0a\x31\x1c\x4e\xdb\x3c\xf6\x75\x12\x8b\xb8\x51\x32\x65\x39\x93\xc9\x38\xf2\xf5\xc8\x68\xab\x7c\x7c\xa7\xa9\xa5\xf8\x72\xb7\xb3\xd4\x22\x5e\xd9\x87\x72\xe5\x91\x45\x51\x39\x24\xf1\xc8\x3e\x35\x0f\x33\xe7\x5a\xc4\x1e\x3b\xaa\x1a\x68\xf1\x90\x95\x5b\x80\xe6\x60\xbb\x23\xed\x72\xd4\xe0\xe3\xe5\xb8\x59\x8a\xef\x8e\x13\xca\xde\x56\xfd\x69\xb3\x39\xd6\x96\x79\xb1\x1e\x24\x14\xae\xd5\xdc\x5b\x6a\xdf\x0c\xfb\x26\xa5\x22\xeb\xc5\x6f\x79\x9a\xd7\x80\x3e\xb6\x25\xa3\x02\xdf\x0f\x0e\x29\x4a\xff\x13\xdb\xd9\xa9\xaf\xbc\x5d\xc4\x0b\x9f\x43\x05\x87\x53\x10\x8b\x2e\xef\x20\x0e\xa8\x00\x35\x18\xe3\x48\x52\x2f\xb1\xdb\x5a\xbd\xf0\xf6\x04\x87\x59\xc3\xc3\x6a\x67\x11\xdd\x61\xa0\x29\x65\x57\xcc\x0f\xcc\x05\x16\xd0\x7d\x65\x8f\x5d\x76\x83\xc2\x5c\x7e\xad\xb1\x52\xf8\x0e\xfb\x81\x28\x7c\x41\x28\xe4\x3c\x47\xd2\x5d\xcd\xd6\xca\xef\xc4\x4a\xfb\x32\x14\x8c\x65\xc0\x43\xee\xdd\x88\xb5\xa5\xb2\xb6\x83\x3b\x17\x16\x83\xa3\x32\x7e\x58\x31\xe3\xda\x62\x04\xa0\x5c\x69\xeb\xa1\x54\x5c\x78\xc2\x13\xc2\x0c\x4c\xc3\x0b\x75\x53\x69\x39\x03\xf9\x5c\x82\xfa\x32\xff\x0f\x81\x51\x61\x8c\x71\xd6\x41\xbb\x0e\x64\xbf\x6f\x86\xdd\xc5\x65\x9d\x88\x21\xbb\x67\x7d\x43\x10\xf9\x5a\xbf\x87\x67\x1b\xa9\x08\xea\x48\x5b\x65\xc6\x73\xc8\xaa\x80\xd5\x7b\xae\x34\x2d\x37\x4b\x98\xd6\xe4\x3e\x36\x45\xbf\x78\xf9\xed\x37\xb7\xf9\xb0\xa5\xae\x60\xfc\x41\x63\x43\x65\x6e\x26\x3b\x2b\xf5\xed\x7a\xe5\xf6\x97\x1e\xdb\x33\xbf\xba\xed\xbf\xb4\x8a\x96\x0d\xbe\xa8\xaf\xfa\x4f\x48\x27\x32\xb2\x21\x31\xa9\xac\x3a\x72\x0b\x57\x1f\xd5\xe1\xa5\xef\x88\x9c\x43\x42\x26\x5e\x2e\x9c\xa6\x8d\x87\x7c\xe7\xe5\xd0\x2f\xfd\x3c\x42\x36\x6c\xeb\x14\xc3\x5f\x79\xfe\xb1\xfe\x7c\x05\x9e\x70\xdf\xd5\xae\xa1\xfd\xd2\x4c\x0e\x1f\xe1\x71\x84\xc9\xc9\xad\x64\xb6\xd5\xbf\xc7\xc6\xce\xaf\x5f\xbc\x7f\xf1\xe5\xfb\x17\x5f\xdf\x8e\x6b\x8a\xec\xad\x5f\x8c\xfb\x39\xba\xec\x36\xac\x19\xf7\xa6\xa9\xcd\xcc\xa6\x20\xff\x3d\x43\xd3\x1a\xbd\x43\x53\xcc\x31\x56\x99\xab\x5e\x83\x51\x7c\x9f\x0a\x96\x60\x37\x08\xda\x31\x2a\x96\x77\x84\x11\x1c\x92\xd8\x2f\xfd\x1c\xcf\x6c\xf4\x7d\xfe\xd8\x4a\xba\x6a\x02\xbf\x7c\xf5\xf6\x79\x2c\x59\xc3\x1f\x9c\xd8\xf3\x2d\xea\x28\x25\x6c\xf4\x44\x5c\xf8\x50\x02\x2a\x19\x88\x71\x55\xfc\x8e\x04\x2d\x9c\x70\xac\x2c\x9e\x16\xdd\x90\xde\xbf\xee\x77\xca\xdd\xb0\xcf\x9f\x78\x8f\x5b\x9f\xc7\xfb\x6f\xb7\xfb\xb1\x55\xe9\xe5\xab\x2f\x5e\xbf\x79\xf3\x4c\xd5\x66\xe9\xad\xc3\xa9\xea\x64\xbc\x42\xf6\x0c\x95\x0f\xda\xc9\x13\xa6\xce\x13\x75\x82\x4f\xc8\x89\x8c\x10\xf7\x76\x62\x36\x14\x4f\x3c\x09\x5c\xe9\xb8\x9d\x24\xc6\x54\x87\x0f\x91\x6d\x88\x25\x12\x1e\x7b\x09\xf5\x13\x72\x65\x32\x4e\x04\x0e\xd0\x27\xd4\xd8\x22\x59\x55\xc7\x9d\x11\x66\x94\xfb\x3a\xe9\xda\x1c\xf1\x4f\xe3\x88\x40\x22\xef\xf0\x6a\x38\x15\x68\x56\xf7\xbb\x13\x89\x6e\x9a\xd1\xfa\xd9\x9f\xd9\xec\xfb\xfc\xb1\xa9\xe8\xdd\xdb\x1f\x66\xcf\xd5\x4d\x77\x43\x8a\x96\xd2\x7b\x37\x41\x3d\xa6\x9e\x97\xe2\xa4\xdb\x32\xb3\x9a\x9e\xc3\xc6\xc5\x6f\x96\x5d\xf9\xe7\xbf\xf9\xfc\x09\xc5\xfe\xab\x17\x1f\x5e\x7e\xfb\xe6\x39\xcd\x1e\xa9\x99\x48\x69\x5f\x39\x9a\x48\x61\xb4\x44\x5d\x02\x41\xa8\xe2\x28\x91\xc9\x47\x59\x91\x6b\x46\x3e\x44\xfb\xad\x3a\x59\x7e\x88\xc2\x75\x33\x63\x97\x86\x18\x5e\xba\x90\xd3\x74\xa1\xce\x0a\xd3\x65\x1a\xe2\x16\x51\x3d\x01\x9b\x35\x25\x0c\x6d\x80\x49\x97\x94\xf5\x5c\xd1\x0b\x0e\x37\x8d\x65\x6a\x45\x9c\xf0\xd0\xc9\xe9\x77\x23\xfb\x4a\x25\xd5\x59\x2f\xf5\xea\x87\x7b\xec\x45\xd5\xfb\x91\x60\x6d\x70\x83\xe2\x8c\xca\x54\x70\xf0\xc7\x34\x0e\x55\xbc\x7f\xd4\x8c\x7b\x5f\x45\xa0\x52\xf0\x7b\xe8\xba\x2f\x06\xc2\x83\x66\xa4\x7e\xff\xfe\x1d\x7f\x51\xd1\x08\x0c\xda\x14\xb8\xbf\x84\xe4\x0a\x78\x2c\xe5\x6a\xe5\xa3\x82\x75\x22\x0f\xeb\xc4\xb2\x3f\xd2\x0a\xf7\xc0\xa6\x00\x8a\x47\xd1\x98\x6b\xef\xec\x18\x94\xdb\x53\x79\x53\x8b\xff\x01\x47\x9f\x21\x2d\x35\x37\x2f\x2e\xe0\xfd\x62\x4a\xdb\xca\x6d\xcb\x67\x56\xda\x34\x91\x1b\x60\x2b\x4d\x2f\x35\xcf\x32\xe4\x70\x72\xd0\xdc\x50\x0f\xe6\xfa\x14\xa2\x69\x8c\xcf\x36\x7c\x1b\x8a\xb8\xf8\xcd\x86\xe3\xa9\x78\xc6\xfe\xf0\xf9\x63\x3d\xfe\xdd\xdb\x57\x7f\xf3\xed\x8b\xf7\xcf\x15\x00\xaa\x16\x86\xd1\x99\x95\x2f\xc4\xc9\x70\xaa\xe4\x1a\x23\x31\xdf\x04\xaa\x83\x13\x92\xf1\x86\xd1\xc3\xbd\x1b\xca\x93\x6e\xa6\xd6\x78\xc4\x56\xea\x30\x1e\xd8\x88\xb0\x9a\x0b\x36\xae\x7b\x50\xbe\x08\xd9\x33\xce\x44\xae\x07\x6a\x75\xc4\x85\x21\x3f\x50\xf5\x30\x37\x1b\xda\x58\x75\x4b\xec\xb2\xf4\x75\x0b\x7b\xd6\xe0\x38\x9e\xae\xbb\x8d\x73\x4b\xe2\x3b\xeb\xba\x1d\xbf\xdf\x1e\x87\xc7\x16\x86\x77\x6f\x5f\xfd\xf2\xc5\x9b\x5f\x3c\xef\x42\xcb\xb4\x15\xe2\xaf\x4e\x65\x7e\xd7\x27\x3a\xfa\x74\xdc\xf2\x70\x2f\xab\xbc\xf0\x99\x0b\x7e\xf3\x18\x9b\x00\xc1\x05\x4a\x55\x6e\xc8\xb1\xa7\x16\x67\x09\xba\x84\xc6\xc3\x3d\x4a\x84\x17\xe7\xb2\x4b\xc6\x36\x60\x1b\xa3\xbd\xa8\x51\xd2\x5a\x46\x34\x5d\xe9\x4f\xa5\x59\xb7\x7d\x9d\xa0\x7c\x9e\x34\x0b\x47\xa8\x9d\x77\xdd\x51\x73\xa9\x84\x41\xca\x9d\x61\xa3\xb5\x37\x1d\x7a\x76\x1a\xbb\x23\x03\xa0\x34\xaf\xf5\x1f\x8e\x68\x34\x07\xef\x76\xf8\x54\x20\x9e\x9f\xfb\x9e\x5a\xe0\xa8\xb7\x2c\x00\x05\x0f\xa7\xb0\xe6\x2e\x93\x88\x03\xf5\x1b\x91\x98\xd5\x7a\xac\x0c\xad\xba\x1c\x51\xa4\xa9\xc0\x99\x60\xb4\x55\xbb\x48\x8f\x44\x30\xc1\x8d\xd5\x37\x14\x54\x24\x3b\x57\x57\x6f\xe5\x25\xae\x69\x79\x6c\xaa\x01\x82\x3e\x16\xe8\x33\x75\xba\x3c\x1b\x73\xdf\x0a\xde\x72\x51\x04\x2a\x6d\x6b\x3f\x4c\x5f\xa1\xdb\x71\x47\x8d\x75\xa7\x63\xbd\xe5\x5a\x60\xf5\x0b\xe2\x10\x3b\xfe\x74\xe6\xad\xa4\x0d\xd6\x9b\xf9\x5a\x6f\x75\xcb\x5a\x6f\x96\x6b\xbd\x79\x5f\xeb\x0d\x63\xb1\xca\xa1\xe3\x06\x86\xcf\x9b\xc5\x99\xd3\x77\x41\x2c\x94\xa1\x8a\x67\xf1\x29\x99\xca\xe3\x8e\xd8\x6c\xd7\x15\xda\xea\x4d\x96\x1d\x93\xa7\x20\xbb\xa5\x8e\x7d\x25\xe6\x40\xe6\x1c\x94\x9a\x8c\x59\xca\x30\xb1\xdb\x59\xc7\x8e\xea\xda\x85\x8c\xd7\xdd\x93\x50\x4a\x8a\xfa\xe4\x7e\x54\xc6\x16\xb8\x7b\xb8\xa2\x62\x66\x9d\x34\xb8\x20\xe8\x77\x85\x6f\x48\xe6\xca\x4b\xac\x39\xc1\x14\xd9\x79\x71\xc7\x42\x4c\x30\x76\x16\x2c\x04\x53\xa4\x7e\xa4\x90\xec\xd1\x9b\x21\xc9\x0e\xe3\x87\x81\x24\x4d\x7d\x59\x3d\x91\x0c\xa9\x90\xba\xc2\x7e\x22\xa5\x06\x8a\xee\x6c\x56\xc7\x3b\xee\xd1\x42\x7d\x12\x13\x84\x85\x13\x36\xfa\x11\x42\xae\x67\x1a\x7d\xa7\x7a\x73\xe7\xc6\x25\x06\x62\x95\x0c\x1f\x9a\xbb\x44\xe1\xfb\x6c\xda\xd7\xef\x2a\x59\x3c\x6e\x57\xec\x25\x74\x78\xca\xac\x90\x52\x88\xc5\x6e\x72\x66\xa6\x0b\xdd\x4c\xd2\x56\x8b\xec\xb1\xd5\xe6\x5a\x77\xec\x59\x2f\xb4\x60\x45\xb9\xd2\x82\x3f\xde\xd7\x5e\x8d\x59\x11\x52\xa2\xfa\x54\x69\x2c\xda\x6d\x5a\x38\x72\x30\x81\xfb\x25\x35\x23\x5e\x89\x06\xac\xc0\xb6\x21\x81\xec\xa8\xbe\x67\x3b\xc5\x8e\x03\x91\x63\xb7\xe3\x44\x47\x0d\xdd\x13\x0b\xed\x8e\xb2\xd1\x42\xa8\x10\x74\xe2\xc2\xaa\x5e\x37\x0f\x45\x04\xe4\x89\x98\xa1\x42\x9d\x64\x05\x75\xac\x1d\xf7\x7a\xd9\x5d\x16\xfc\xaa\xe5\x96\x1d\x0e\xc4\x0e\x32\x3f\x89\xaf\xa4\xbd\x27\x49\xde\xad\x10\x95\x24\xc3\xe5\x03\x97\x04\x89\x7d\x92\x51\x7b\x05\x6d\x61\x94\xf4\x92\xbd\x8e\x86\x92\xc0\xa8\xe6\x84\xaa\x4f\x2a\xc8\x55\x8f\x6c\x25\xc5\x67\x94\x77\x1d\x09\x7e\x60\xdd\x9a\xa6\x4f\x63\x6c\x5d\xa1\xe2\x9f\x77\x9d\xb6\x2a\xbe\x9e\x83\xf5\xe1\xde\x7a\x02\xa4\xa3\x8c\x42\x87\x54\x46\x96\xa7\xd2\x6a\x75\x19\x55\x7d\xd0\x32\xaa\x06\x1d\x01\xc8\x28\xb7\x3e\xc6\x8e\xa3\x32\x2e\x24\x95\xea\xa8\x77\x23\x72\x15\x47\x46\x91\xe2\x55\xe8\xed\xf8\xc8\xcd\xa5\xf0\xf2\xb1\x75\xed\x47\x3f\x90\x6f\xed\xef\xbe\x76\xd2\x3d\x3a\x67\x4e\x47\x36\x79\x04\xdf\xc4\xd9\xc4\xb6\xeb\x95\xdb\xcd\x7f\x6c\x5d\xfa\xd1\xf3\x4a\xe9\xdf\x4b\xf3\x6b\x51\x0c\xd6\x95\x48\x12\x60\xc6\x06\xa2\x48\xae\x57\x6e\x37\xff\xb1\x01\xea\x47\x2b\xb3\xdf\x2f\xde\xbc\x7a\xa6\x98\xf8\xdf\x43\x1f\xe0\xf7\xe0\x05\x2a\x2d\xf3\x1c\x91\x2b\x69\x67\x58\xdf\x00\x11\xeb\x57\xe1\x71\x21\x67\xdb\x50\x91\x61\xb8\x9e\x1d\xa9\x35\xd7\x93\xb7\xfb\xf8\xd8\x26\xf4\xa3\xe7\xbd\x8e\xff\x5e\xba\x87\x16\xab\xee\x38\xc1\x8e\x6b\x21\xb2\xb0\x31\xb3\xe4\xb2\x8f\x58\xd6\x2f\x97\x81\xfa\xb5\xe4\xdc\x57\x5c\x9f\x73\x47\xba\x1f\x72\x8e\x89\x9c\x0b\xae\x47\x2c\xa8\x23\x1f\x04\xdf\x91\x67\x9f\x28\x86\x1c\x7d\x2c\xbb\x53\x90\xed\xc5\xd0\xea\xa4\x29\x21\xdd\x99\x80\xe5\x91\x77\xdd\x78\xd4\x47\x79\xec\xeb\x24\xa4\x49\x71\xf1\x20\x45\x04\x28\xc5\x88\x95\xb6\x7b\xc8\xf1\xc2\x61\xb1\xc3\x09\x75\x58\xac\x42\x04\x43\x97\x33\x38\x0d\xea\x13\xdb\x84\x01\x17\xf8\xfa\x28\x42\x0b\x50\x5e\x96\xdb\xa8\xf7\x44\xd0\xda\x38\x8c\x34\x14\x35\xa7\x01\x9f\xed\xde\x68\x84\x6e\xd7\xf1\xb9\x3d\x89\x8f\x6d\x3f\x3f\xfa\x41\xc7\x8c\xbf\x8f\x79\x94\x0e\x7b\xcd\xd8\xd7\x09\x2a\xe8\xa0\x53\x32\x21\xe1\x07\xaf\x82\x74\x75\xd2\x60\xe1\x88\xd4\x69\x4c\xeb\x29\x9c\xd4\x68\x2f\xdf\x58\x3d\x9e\x72\x92\x5d\x2c\xee\x08\x1e\x02\xd2\xd7\xa5\xeb\xb7\x1e\xee\x91\x3c\x2e\xc8\xf7\x75\xe2\x84\x1d\x65\x8a\x64\x64\xcf\xa3\xc1\xb2\x8f\xc4\x57\xa5\xa1\x44\x56\x5d\x4a\xa3\xf5\x14\x4e\x3c\x78\x5d\x72\x3d\x9e\x72\x22\x04\x73\xd4\x49\x43\xf1\x14\xd7\x23\xd5\x77\x3c\x63\x4f\x7f\xf9\xd8\x36\xf6\xa3\xf7\xcf\xf9\xea\xfe\x7d\xcc\x82\xae\xe0\x4c\xde\xd7\x49\x58\x53\xa4\x77\x24\x5a\xc9\x84\x06\x02\x3b\x91\xcd\xd2\x27\xf8\x48\x96\x34\x2f\x9c\x9c\x42\x0d\x3b\x0e\x75\x69\x65\x16\x0a\x5b\xc5\xc6\x07\xc1\xce\x7a\x87\x37\x2f\xa7\xb2\x91\x0d\x97\x1c\xa9\x85\xb8\xd8\x10\xa3\x8c\x27\xb2\x5e\xe1\xcd\x26\x85\xce\x02\x27\x0d\x56\xc6\xba\x84\x5d\x09\x4b\x5a\x99\xbe\x51\x53\xfd\x68\xf3\x03\x8a\xbb\xe0\x1b\xeb\x84\x56\x78\x2d\x79\x12\xa2\x1e\xc9\x6d\x4c\x43\x26\x67\x44\x0d\x27\x28\x7f\x77\x4c\x22\xc7\xca\xe6\x57\x97\x90\x1f\xc9\x2d\x50\x54\x13\x2c\x60\xcd\x9d\xf0\xb1\x4e\xe0\x91\x20\x07\x7d\xd6\x7b\x86\x12\x2c\x77\x75\x82\xc2\xbd\x18\x32\x63\x41\x9f\x6f\xcf\xf8\x63\x6b\xe1\x8f\x6e\x17\xde\x22\x4a\x2b\x45\xca\x75\xf3\xa2\x0e\x93\xb3\x98\x6c\x8c\xcc\x2c\xc2\x9b\x25\x5f\x9d\x3e\x83\x2f\x48\x25\x3f\xc4\x36\xe4\x11\x15\x39\x13\x49\x5e\x7c\xf0\x79\x48\xac\x2c\x2f\x70\xe3\x4e\xbb\xf4\x87\xfb\xc2\xb6\xc6\x81\x4c\xab\x2b\xf9\x8c\xc8\x76\xfc\x78\xbb\xf1\x8f\x4d\x86\x3f\xfe\x21\xdb\xdb\x3f\xa0\xf2\x79\x77\xbf\x57\x3e\xaf\xfd\xff\xbb\x7c\xde\xdd\xef\x95\xcf\xbb\x47\xcc\xec\x56\xec\xed\x64\x2b\x33\xec\x09\xbb\x0b\x63\x99\x4a\x23\x96\xa9\x74\xd0\x4a\x01\x8c\x7c\x88\x30\x95\x8e\x65\xfd\x5c\xc9\x1e\x60\x2a\xb5\x95\xc7\xc9\x36\xa3\x65\x21\x5d\xfe\xea\x30\x95\x46\x2e\x53\x29\xc2\x9f\x60\x2a\x5d\xe9\x9b\x6c\x3a\x32\xab\x71\xee\xeb\xa4\x2b\x92\x4d\xc0\x54\xea\x05\xec\x61\x2a\x45\x10\x99\xca\x34\xe8\x0d\xa2\x60\x81\xfd\xec\xb7\x42\x27\x6b\xe5\x3e\x36\x1a\xff\xf4\x79\x64\xfc\x5f\x5f\xf3\xee\x7e\x25\xf2\x2b\x00\x6c\x7d\x83\xdc\x01\x00\x66\xdb\xae\x57\x6e\xb7\xf2\xb1\x41\xf7\xa7\xcf\x03\xe0\x3f\xa4\x95\x74\xc5\xb9\x4a\x1b\x52\x75\x00\xe7\x8a\x6c\xd7\x2b\xb7\x5b\xf9\xd8\xf2\xfb\xd3\xbf\x05\xce\xfd\x03\x9a\xba\x24\xed\x77\x70\x16\xb9\xee\xaf\x70\x36\xae\x70\x96\xae\x70\xd6\xaf\x70\x36\x6c\xbb\x3e\x79\xbb\x2b\x8f\x2d\x9f\x3f\xfd\x41\x24\xf4\x07\x74\x84\xf3\x00\x3c\xeb\x04\xbc\xec\x0a\x78\xfa\x15\xf0\xd8\x15\xf0\x8c\x2b\xe0\xa1\x2b\xe0\xa1\x2b\xe0\x19\x57\xc0\xd3\xaf\x80\x47\x01\x3d\x56\xd2\x0c\x5c\xe2\xe4\xbb\x03\xf0\xf0\x15\xf0\xf0\x15\xf0\xe8\x15\xf0\xc8\x15\xf0\x8c\x2b\xe0\xa1\x2b\xe0\xd1\x2b\xe0\xd1\x2b\xe0\xa1\x2b\xe0\x91\x2b\xe0\x89\x2b\xe0\xb1\x2b\xe0\xe1\x1f\x02\x3c\x8f\x0d\xb6\x3f\x7b\x9e\x0e\xff\x90\x6a\x79\xf7\x70\x2f\x2b\x4a\xd4\x1c\x1b\x5b\x5f\x94\xa8\x21\xdb\xf5\xca\xed\x76\x3e\x36\xa8\xfe\xec\x79\x4a\xfc\xc3\xda\x79\x80\xdc\xf3\x18\x89\x00\x7a\xd0\xa2\x0e\xda\xae\x57\x6e\xb7\xf3\xb1\x85\xf1\x67\x7f\x0b\x5a\xfc\x83\x1a\x8b\xb2\x4a\xdf\x53\x23\xc5\x66\xd0\x52\x8a\x1a\x69\x2c\x6a\x64\xf7\x83\x1a\x81\xe3\x8b\x1a\x59\xb6\xeb\x93\xb7\x3b\xf3\xd8\x92\xf5\xb3\x1f\xa4\xc6\x3f\xa8\x2b\xac\x07\x65\xad\x13\x97\xc6\x25\xf4\x8b\x1e\x65\xad\x16\xdd\xb5\xeb\x41\x8f\x80\x81\xb9\x02\xf8\xf1\x14\x4e\x40\x8f\x75\x09\x5a\x06\xe8\x80\x64\x87\xf5\x0e\xee\xd7\x00\x98\x0a\x6f\xb7\x83\x1e\x01\x9d\x8b\xb2\xd6\x89\xd3\x8a\xcd\x2c\xa2\x43\x06\x76\xd0\xa3\xe8\xa2\xc7\x81\x3d\xed\x22\x55\xd4\xaa\x27\xdf\x71\x82\xe8\x02\xe7\x45\x8f\x78\x0a\xf4\xc8\xbe\xe8\xd1\x33\x17\x3d\x5e\xbf\x75\x73\xc8\xbf\x78\x6c\x31\xfa\xe9\x37\xbf\xbf\x6d\x6d\xd7\xc1\x1e\xd6\xfa\xc5\xdd\xcf\x27\x94\x56\x8b\x33\x0d\x5b\x5c\xcf\x98\x77\x8f\x6b\xbd\xdc\xbc\xd6\xcb\xcd\x6b\xbd\x5c\xe2\xef\xea\xe5\xfa\xef\xd6\xcb\xf5\xa3\x5e\x2e\x00\x1d\xb2\x18\x1d\xf5\x72\x13\xf5\x72\x0b\x44\x14\x6f\xb5\x87\x7b\x4b\x69\xf5\x69\x09\x41\xec\x21\xbe\xa8\xab\x64\x2e\x3a\x5e\x83\xe4\x47\xc9\x5c\x3b\x4a\xe6\x0e\xba\xfb\xae\x64\xee\x38\x4a\xe6\xda\x51\x32\x17\xf5\xf2\x50\x46\xff\x28\x99\x6b\x7c\x2d\x99\x1b\x82\xde\x19\x8a\x68\x3d\x33\x78\x8f\xed\x55\x7f\xfe\x03\x21\xd8\x7f\x58\xf5\x43\x38\x2b\x2d\xc3\x47\x9d\xc0\xf0\xb1\x04\xe1\x58\x75\xde\x60\xf8\x80\x90\x90\x01\xef\x5f\x18\x3e\x60\x4d\x80\xb3\xa4\xe7\x61\xf8\x60\x5e\x86\x0f\x58\xc2\x61\xf8\x50\x59\x5a\x8f\x95\x44\x81\xe1\xc3\x20\x3f\x6c\x47\xea\xbb\x20\x6b\x82\x65\x36\xae\xab\xbc\xeb\xc6\xc8\x26\xc4\x45\x3f\xbe\x28\x81\x9d\x0e\xc3\x47\xd7\x65\xf8\x58\x21\x43\x32\x96\xc1\x78\x58\xec\x9a\x7a\x18\x3e\x60\x50\x53\x46\xe0\xf6\x52\xac\x90\x48\x08\x11\xf3\xe3\x30\x7c\x40\x54\x39\xb7\x00\x65\x06\xad\xf4\xed\x30\x7c\x54\x2f\x60\xf8\x80\x14\x0b\xdd\xae\xe3\x73\x7b\xc2\x1e\x5b\xe8\x7e\xfe\x03\xd2\xe7\x1f\x5c\xc5\xc8\xbb\x6b\xc5\xc8\xf6\x8f\xa8\x62\xe4\xdd\x51\x31\xb2\xfd\x5d\x55\x8c\xbc\x0f\xd2\x46\x36\xf8\x6c\xae\x1b\xbc\xf6\x86\x16\x3a\xce\xed\x7a\xe5\xf6\x1a\x7b\x6c\x21\xfd\xf9\x0f\x20\x87\x7f\x5a\x63\xff\x48\xd7\x18\xd8\x96\xda\x39\xcd\x36\x5f\xa1\xd9\x79\x36\x8d\xed\x7a\xe5\xf6\x1a\x7b\x6c\xc0\xfd\xf9\xdf\x06\xf5\xfd\x43\x59\x68\x77\xbf\x57\xfe\xf6\x1f\xc3\x42\xbb\x7b\x54\xfe\xf6\xef\x6e\xa1\x21\x45\xa4\x6b\xa1\x62\xee\xe7\x18\x2b\xa2\xa0\x84\xe9\xb6\xd2\xc5\x73\x3f\x8b\xf0\x85\x5c\x7d\x43\xfa\xce\x31\xec\xec\x23\xb7\xeb\x93\xb7\x17\xe2\x63\xfb\xf5\xcf\x7f\x28\x09\xcd\x3f\x90\x35\xf8\x4f\xcc\xee\xef\x78\x0d\x62\x59\xb9\xed\xeb\x84\x7b\x4b\x68\x36\x91\x2b\xe0\xad\x20\xe7\x58\x06\xfb\x5c\x5b\x09\xae\xb4\xc3\x65\xdb\x11\x4e\x0e\xc4\x3a\x50\x7a\x89\xdc\x6d\xed\xaa\xfb\x18\xd3\x46\x61\x46\xa2\x95\x7d\x32\x38\x97\x57\x48\x88\xef\x8a\x4d\x1b\xf1\x15\x9d\x14\x5d\x57\x35\x9a\x52\x4c\x19\x9b\x77\x9a\xfb\x3a\x49\xbd\x5b\x88\x55\x6c\xc2\x96\x32\x0a\x02\x43\x79\xb5\xe3\x85\x48\xed\x80\x1c\x27\x31\x9a\x61\xaf\xcd\x65\xa5\x8b\x1a\x42\xf0\x9b\xa0\xc8\xa3\xc2\x42\x29\x1c\x88\x22\x09\xd4\x19\xa0\xeb\xfe\x12\x36\x10\x1c\xde\x88\x34\x8c\x56\xad\x8f\x91\xb6\x5d\xc7\xe7\x36\xa5\x3d\xde\x37\xf8\xf9\x0f\xeb\xc6\xff\x44\x6c\xff\x38\x89\x0d\x15\xa1\x43\x72\x5f\x27\x43\x1b\xd4\xcd\x41\xba\x9a\x3f\xd4\x90\x0b\xb4\x4e\x9a\x66\xad\x3c\xb2\x55\x9c\xa7\x9e\xc2\x89\xa7\xae\x4b\xee\xc7\x53\x2e\xba\xa2\xb0\x5c\x74\xe5\xc8\xa8\x4b\xd7\x6f\x15\x9e\xc1\x59\xac\x38\xe4\x18\xbc\x92\xe7\x0f\x92\x59\xdf\x81\xe2\x0a\x95\x76\xa8\xde\x21\x9a\xa2\x2e\xa1\xa2\x6b\x3d\x85\x13\x4f\x41\x7c\x05\xb9\x1f\x4f\xb9\xf0\x1e\x89\xaf\xd6\x0b\xf1\xd5\x23\x99\x6b\xc8\xed\x9d\xaa\x2f\x1e\xef\x54\x7d\xf5\xed\x9b\x6f\x5e\x7f\xfd\xe6\x76\xa6\x1d\x1a\xd4\x84\x73\x5b\x61\x1a\xbe\x11\x62\x87\x7b\xdf\xa4\x23\x5a\xab\xa4\x26\xb5\x18\x63\x43\x95\xf5\xfa\x61\x95\x29\xaa\x7b\xc2\x8e\x87\x3a\xb2\x1e\xe5\x96\x2e\x8d\xbb\xe3\x19\x53\xd9\xa4\x77\xfc\x7d\x7c\xe5\x76\xbb\x1f\xef\x53\xfc\xfc\xf9\xf2\x97\x44\x24\x07\x8d\x13\x5f\x69\xfc\x3b\x7a\x24\xd0\x38\xac\x30\xa5\x30\xe7\x58\x24\xde\x8b\xc4\x11\x8c\xd9\x77\xa3\xa3\x2e\xb1\x22\x89\x10\x45\x1b\xb2\x31\x49\x3b\xa5\x9c\x83\x56\x11\xcd\x88\x9d\x32\x1a\x73\x8d\x3a\x37\x1e\xbc\xc2\xbf\x51\x19\xd0\x9b\x15\x59\x8d\xef\x88\x3f\xf3\xa0\x7d\x3a\x68\xbf\x1f\xb4\x4f\x71\xb7\x68\x7f\xa5\xe0\xe5\xa9\xca\x07\xed\x77\xfb\xbd\xda\xeb\x47\x1e\x3e\xd8\xf0\x45\xc7\x72\x18\x26\x23\x87\x6f\xed\xb6\x38\x17\x57\xd7\x3b\xaa\xad\xa1\xbc\x43\x71\x7c\x52\xa4\x04\x59\x15\xa6\x8b\x3d\x18\x4a\x39\x61\xa8\xbe\x63\x0f\x3c\x7a\x5b\x04\xba\xca\x9e\x70\x72\xd3\x1c\x48\xc6\x25\xd6\xb7\xb1\xde\x29\xcb\x27\x9b\xd5\x57\x8e\x75\x8e\xa3\xb1\x8b\x3b\xd0\xb5\x3a\x3b\x7f\x54\x9d\x3d\x96\x10\x01\x77\xe8\x79\xb7\xb8\xc3\x18\x07\x77\xe8\x57\xee\x50\x4c\xaa\x2f\x26\xc5\xd9\x46\xf4\x96\x28\x5b\xa5\x73\xac\x68\x56\xda\xb4\x6b\x63\xa1\x1d\x5b\xdf\xb9\x0a\xbf\xa1\x4e\x3b\xc6\x49\x56\xf1\x24\xf0\x89\xc5\x3f\x46\xf7\xc5\x27\xdc\x16\x9f\xe8\xb2\xf8\x04\xcb\xc1\x27\xfa\x77\x7c\xe2\xe6\x1a\x7c\xbc\x0b\xf5\x57\x3f\x60\x25\xf9\x87\x57\xb9\xf9\xee\xa8\xdc\xdc\x6e\x57\x6e\xbe\x47\x24\x84\x69\x9e\x2d\xfb\x86\xf4\x21\x83\xec\xff\x63\xef\x7b\x7a\x24\xc9\x6d\xec\xef\xf9\x29\x84\xdf\x3d\xf1\x13\x49\x51\xa4\x2e\x7b\x8e\x43\xd4\x21\x80\x70\x02\x5b\xb7\x9e\x9d\xea\xd9\x06\xc6\xd3\x58\x8f\xdb\x80\xbf\xfd\x82\x8f\x8a\x5e\x6f\xd8\x99\xd9\x33\x58\x0f\xd0\xe3\x3e\xa5\xaa\x94\x11\x8a\x54\x50\x14\xc5\x3f\xef\x2d\xda\x75\x3d\x7a\xee\xcf\xe0\x39\x42\xf6\x87\x27\x3e\x80\xdf\xe9\x0c\x2a\x94\x3c\x2f\xc3\x69\x05\x35\x91\xb6\xbe\xa8\xc9\x7a\xf4\xdc\x9f\xc1\x73\x60\xee\x0f\x5f\x72\xc2\xfd\x7a\xa6\xf1\x72\xa2\x10\x7f\x34\x8d\xa0\x53\xe9\xc4\x37\x52\xb7\xc5\xeb\x58\x41\x4a\x61\xe2\xab\x22\xa5\xd2\x6d\x11\xf5\x1b\x75\x12\x90\x4a\x93\x2b\x2f\x46\xba\x1e\x57\xde\x9f\xe6\x73\x38\xee\x0f\xcf\xad\xca\xdf\xe7\x24\x0b\xc2\x3b\xb5\x6f\xd9\x50\x2a\xc8\x76\x37\x9f\x69\x47\xa1\xa5\xf3\x1c\x10\xfb\x2c\xce\x13\xc0\x3f\xa5\xbc\x0a\x0d\xa0\xd4\x22\xe4\x2c\x47\xb2\x52\xa5\x4d\x90\x16\x56\x09\xb5\x8c\xe8\x3a\xc6\x7a\x7d\xc9\x92\xc5\xda\xb6\x6c\xa0\x22\x14\xa3\xd6\xdd\x93\xa9\x8d\xb6\xc1\x18\x95\xc0\xfd\x8b\x2e\xd0\xd1\xc6\x55\x23\xfd\xf7\x35\xbb\x3a\x92\x00\xe9\x42\x3a\xc6\x06\x6e\x54\x1d\x03\x20\xb4\xd4\x39\x51\x9b\xe2\xaa\xfb\xc2\x70\x8e\x79\xfe\xfb\x63\xad\xf5\x7f\xc1\x7d\xfe\x82\x0d\xdf\x59\x96\x21\x84\x2c\x27\x52\xb5\x45\x59\xd6\xa3\xe7\xfe\xf3\x9e\x63\x9f\xfb\x7f\x7e\xfc\xd3\x03\x4e\x23\xcd\xd2\xc8\x1b\x51\x97\xa5\x4b\xdd\x40\x38\x88\xca\x7f\x49\x18\xe7\x49\xa2\xd1\x5a\xda\x0f\xa3\x8e\x44\x14\x33\x24\x30\x91\x27\xbc\x59\xf5\x0e\x3e\xe7\x31\xa8\x34\x11\x10\xdf\x02\x5d\x5a\x6a\x11\x42\x8e\x16\x70\xb7\x7d\x86\x74\x54\x5e\x73\xf0\x4a\x74\x6b\x5d\x73\xec\x38\x89\x75\x05\x62\x7e\x43\xc2\xea\x40\x72\xf9\x20\x05\x49\xf4\x10\xb9\xc4\x19\x76\x88\xe0\x15\xc6\xff\x5d\x06\x60\x2b\x47\x9c\x55\x7a\x47\x18\x0b\xd8\x32\x95\x08\xc3\xdc\x9d\xa9\x73\x60\xf5\x87\xb7\x3f\xfd\xf1\xdd\x4f\xdf\x7f\xf7\xe3\xfd\x75\x1e\x4f\x5c\x0f\xb4\x70\xdb\x08\xc0\x97\x61\xbe\xa3\x52\xc8\x0d\x86\x0c\x35\xd1\x1d\xa4\x39\xca\x7d\xd7\x90\x30\x55\xdf\x7a\xcc\xa7\xaa\x27\xed\xa0\xca\x91\xe4\x65\x0a\x0e\x08\x12\xab\xe0\x1a\x22\xe6\x0a\xa2\x21\x60\x7f\x22\x8f\xaa\xba\x03\x05\x76\x8c\x64\xd2\x00\x47\x16\x08\x06\xd3\x14\x33\x03\xde\x54\xb1\x56\x71\x18\xea\xdd\xf7\xd1\xec\xa2\xb0\x45\xc1\x5f\x04\x3e\x6a\x2b\x4d\x68\x87\x31\x2c\xd4\x37\x34\x60\xcb\x56\x43\x8a\x70\x9e\x7c\xe3\x94\x31\x5a\xa9\x20\x16\xb9\x32\x81\x40\xef\x1a\xc7\x66\xd4\x26\xf4\x5d\x5d\xcb\x95\xf6\xd0\xb3\xcc\x20\xba\x50\x02\x21\x1a\xc7\xa2\x8f\x1f\x35\x80\xa7\x84\xec\xb4\x8e\xfc\x1e\x9b\xe0\x0b\xbe\xdb\xe4\x2d\x36\x94\xeb\xd7\x92\x93\x20\x79\xf2\x74\x02\x28\x2e\x4b\xbe\x73\xa9\xb6\xe1\x53\x5b\x01\xfb\x09\xd2\x33\x7a\xc8\x08\x56\x6e\x18\x6f\xdd\xbd\x74\xca\x44\x61\xab\xba\xf7\xea\x17\x67\xdd\x7a\x75\x1c\x71\xc1\x1b\x30\x6c\xef\x4d\xca\xd0\xb1\x77\xd4\xae\x53\xdf\xb3\xe0\xc0\x24\xcf\x4d\x24\x6d\x07\x27\x0f\x87\xe2\x41\x43\x1b\xd0\xc9\x93\x81\x6e\x80\x29\xb4\x25\x53\xa8\x8c\x44\x01\xa2\x56\xfb\xd6\x0c\x81\xdd\x0e\x72\x57\x12\x9c\x63\x11\xc7\xb4\x07\x45\x50\x6f\xe7\x10\xf3\xbb\x27\x45\x09\x5f\x19\x47\xfb\x65\x72\xb4\x97\x7f\x15\x8e\xf6\xcb\xe4\x68\x2f\xbf\x86\xa3\xfd\x05\x7e\x3f\x96\xb1\x38\xf1\x9a\xb0\xeb\x00\xb4\xb2\xf5\xe8\xb9\x2f\x49\xe7\x78\xfb\xbb\x27\xf5\x21\xdf\x24\xe9\xf7\x2c\x49\xc0\x0d\xd1\xca\xcb\x68\xb6\x76\x90\x5d\x4b\xcf\x20\xed\xec\xb9\x2f\x49\xe7\x44\x80\x77\x5f\x52\xaa\xf3\x95\x88\xd3\x65\x8a\x53\xf9\x26\x4e\xbf\x48\x31\x01\x6b\xa6\xf2\x8d\xd8\x6c\x49\x30\xa0\x30\x6c\xd9\xd7\x66\xc0\x28\xb0\x45\xb8\xdd\x48\xaa\xac\x28\x2f\xd5\xc6\x0b\xb8\x73\xe6\x95\xf7\xc5\xed\x9c\x13\xf0\xee\x49\xd5\xd4\x57\x22\x69\xdf\x14\xd7\xaf\xdc\x02\x63\x20\xe6\x0d\x0d\x50\x4d\x2b\x40\x35\xd3\xaf\x0f\x4c\xe3\x89\x53\xd6\x77\x38\xd1\x79\xf8\x66\x60\x38\x19\x0e\x60\x15\x42\xd6\x3c\x2a\xab\xc1\x1d\xda\x93\xe0\x46\xe3\x07\x4a\xf7\x3d\x31\x21\xbc\x27\xdf\xa1\x0c\xd9\x00\x9b\x27\x43\x0a\x9c\xf9\xd2\x69\x17\xa0\x7d\x39\xaf\x0c\x48\xb5\xda\xb7\x6c\x28\x25\x28\x47\x98\xa0\x40\x98\x09\x1b\xb4\x55\xb9\x90\xd2\xbc\xa1\x8a\x82\x2e\x2e\x1a\x25\xcd\x7e\xae\xc0\x39\xa1\x16\x87\x12\x80\x59\xc5\x54\xa2\x64\xbb\x85\x09\x0c\xcc\x9e\x5a\x1c\xc1\x9d\x96\x48\x78\xd4\x2c\x39\x1f\x48\xab\x27\x22\x9b\x2a\xaf\xc7\xfc\xdc\x5f\x4f\x7f\x07\x5e\xf4\xbc\x80\xed\xdb\x92\xfa\x3d\x2f\x29\x46\x99\xcb\xe8\x1b\x1a\x80\xfd\xcf\xd2\x1e\x4a\x9f\xbc\x56\x06\xff\x77\x34\xc0\xd3\x49\xcd\x38\x91\x03\xe3\xaa\x6c\x28\x65\x17\xb0\x54\xe0\xc9\x1f\x04\x40\xe4\x68\x80\x5c\x17\x5d\xc7\x58\x89\x65\x42\x32\x5a\xb2\x01\x37\x19\x60\x34\xa6\x66\x75\x87\x4b\x41\x2b\x6d\x20\x8e\xc6\x8b\xa3\x91\x5d\x03\xe4\xea\xa3\x6d\x71\x6e\x25\xd1\x9a\x5d\xc0\xc0\x14\x44\x20\xc7\x96\x00\x30\x3e\x12\xf1\x46\x28\xd1\x5c\xe3\xaa\xfb\x8b\xe2\x9c\x8b\xf1\xee\x71\x2d\xe1\xb7\x05\xf1\x7b\x5e\x10\x0d\x75\x6c\x54\xb7\x6c\xa8\x14\xe0\x65\x36\x9f\xac\xd0\xaa\xbc\x6b\x43\x61\x65\xd6\xde\x51\xaf\x23\x81\x33\x63\x3a\x92\x14\x63\xb4\x2c\x41\x56\x95\x4c\x2c\x6e\xa3\x82\xe6\x06\x77\x46\x43\xba\x65\x82\x83\x08\x81\x03\x93\xd8\xea\x8e\x2d\x8a\x65\x16\xc0\x31\xf5\x4d\x13\xd1\xa8\x17\x40\x24\x02\x85\xdc\x69\xa2\x4e\x02\x0c\x51\x68\x6f\x5c\x2f\x71\xe7\xd7\x17\xf0\xad\xc4\x18\x68\x88\x4f\x6a\x23\xe9\x63\x47\x59\xa8\x48\xdf\x15\x04\x5d\x00\xc9\x83\x9b\x45\x01\xed\x15\x8d\x82\x2c\x11\x74\x61\xa9\x4a\xca\x30\x36\xc6\x5c\xa9\x54\xe7\x92\x55\xcf\x64\x79\xec\x5a\x71\x1f\xa5\x91\x00\x21\x0a\x40\x8c\x9a\x53\x76\x3c\xcf\xfd\xc5\x77\x4e\xcf\x78\xf7\xc0\xba\x4b\x86\xd0\xcd\x46\xb2\x53\x1b\x12\x60\x20\xdb\xc4\x3d\xb9\x75\xad\x68\x2c\x85\xc4\xe6\xe4\xb6\x37\x96\x72\xf5\x5d\xb2\x38\x12\x7c\x39\x57\x2c\xcb\x5a\x78\x27\x1a\x05\xb9\x28\x20\x2e\x6d\x52\xd8\x75\x6b\x52\x90\xff\xd2\xac\x68\x93\xb9\xe2\x14\x24\x1a\x16\x02\x06\x60\xda\x51\x42\x18\xc0\x36\xed\x04\xb2\x22\x01\x63\x4b\x2d\x6c\x03\xfe\x4f\x0e\x69\x1f\xbc\x76\xba\x78\xad\x5b\x0f\x5d\x31\x8a\x4b\x86\x54\x1b\x1c\x4c\xf1\xad\xa4\x77\xd9\xc5\xe6\x52\x6a\xa8\xbe\x04\xfd\x34\x08\x64\x14\x58\x86\x63\x68\x52\x52\x81\x61\xeb\x58\x7f\x3e\xbf\xbb\x8d\x26\x07\xb5\x7e\x9d\xe4\xbb\x94\x9c\x1b\x95\x76\x22\xa3\xe2\xde\x76\xf0\xbd\x99\xd0\xad\x0d\x5b\xba\xfb\xad\x11\x01\xaf\x53\x80\x8e\x1d\xd6\x8b\x60\x81\x71\x55\x60\x8b\x90\xd6\xc4\x09\x93\xba\x0d\x4b\xb0\x40\x60\x14\x8b\x25\xb5\x13\x69\xdb\xa9\x66\xd5\x7d\xb2\xcf\x70\x05\x55\x4d\xbf\x74\x54\x29\x48\x51\x10\x14\xd5\x64\xfe\x80\x2c\x27\x60\xfa\x95\xea\x64\xeb\xab\xaf\x00\xe2\x8f\x49\x74\x32\x4c\xa2\xb9\x82\x09\x2a\xc1\xf2\x7d\xb7\x1a\x06\x10\xc1\x91\x67\x75\xdc\x7a\x03\x7a\xb4\xdd\xac\xfb\x16\x8d\x34\x8f\xa0\x6a\x44\x41\x30\xee\x43\xf6\xc1\x9e\x51\xe1\xbc\x7d\x22\x32\xc5\x8f\x41\x6e\xbe\x54\xa0\x90\x91\xd2\x0e\x70\x96\xca\xc8\x61\x68\x43\x97\x16\x2f\x74\x18\x90\x67\x45\x15\xec\x83\xec\x0d\xae\xd1\x78\xb1\xd2\x65\x67\x6e\x85\x9d\x36\x7c\x6a\xbd\xb0\x48\x61\x96\x3d\x53\xf9\x15\xfc\xed\xd4\x78\x9f\x63\xde\x5f\x01\xe7\x8c\x8b\xff\x78\x8e\xcb\x37\x4b\x54\x11\xb1\xa9\x00\xb7\x04\x77\x58\x6c\xc6\xe0\x6b\xeb\x93\x3b\xac\x1e\xdc\x61\xba\x85\xc0\x64\x55\x4d\x15\x2f\x5c\x27\xf4\xfe\xc8\xba\x80\x8a\x84\xac\xcc\x6b\xe0\x19\x6a\xaa\xb1\x7e\xb8\xe7\xaf\x20\x6b\x45\x28\x24\x57\xfe\x86\x2f\x4c\xb2\x36\xc2\x5a\xb1\x6e\x3b\xf7\x3e\x37\x95\x89\x7d\xdd\x45\x2f\x13\x61\x9f\x0e\x6e\x68\x78\x92\x19\xdc\xd0\x28\x36\xae\x8d\x8b\x83\x2a\xcc\x74\x32\x84\x55\xa4\xbb\x00\xbb\xde\xc6\x64\x08\x93\xc9\x10\x56\x27\x43\x98\x4e\x02\xf1\x31\x19\xc2\x08\x0c\x61\x32\xfa\x64\x08\xd3\x49\x20\x3e\xfe\x87\x21\x8c\xc7\x64\x08\x6b\x93\x21\x4c\x93\x21\x0c\x89\x6c\xba\xcf\x59\x7d\x7d\xb1\xaa\xa5\xae\xa0\xda\x54\x46\xf1\x1f\x6a\x79\xdb\xc8\x5a\xde\xe1\xb3\x96\x57\x64\xd6\xf2\x82\xce\x94\x75\x43\x43\x98\x2f\xa1\xfb\xb3\x96\xb7\xc9\xac\xe5\x95\x3e\x6b\x79\xad\x66\x2d\x6f\xaf\x75\xd6\xf2\x2a\xcf\x5a\x5e\xf7\xac\xe5\xb5\x58\x1e\xcc\x63\xcb\x46\x6d\x89\xa3\x88\x5a\xde\xce\x59\xcb\x0b\xde\x4f\xd4\xf2\xa2\xba\x57\x1a\x48\x50\xeb\x62\xf5\x7e\x2a\xdc\xdb\x39\x47\xe6\xed\xb1\x43\x19\x4f\x86\xca\x72\xff\xcc\x6f\x1d\x3a\x0b\x1e\x23\xdf\xc9\xa4\xf0\x68\x3b\xc5\x51\xa6\xca\x4d\x9b\x6e\xd1\xee\x86\x62\x94\x62\x36\x32\x79\x43\xdb\x24\x8c\x00\x7d\xbc\x4f\x93\x21\xf6\xd0\x24\x5d\x08\xb5\xd5\x39\x49\xe3\x34\xd4\x04\x8c\x10\x0a\xcd\x22\x45\x8d\x6e\xcd\x7d\x11\xbc\x42\x81\x07\x1d\x24\x6f\x6d\xec\x8d\xbc\xf0\x24\xc5\x0c\x0d\xde\x3b\x5f\xc0\x4d\xdf\x91\x5f\x02\x06\x00\x32\xda\x47\xef\x85\xcd\x66\xde\x91\x8f\x2d\x95\x17\x74\x2f\x50\xdb\x08\x84\x5b\xad\xe5\xdb\xe5\x7d\xfe\xf2\xd7\x97\x78\xdc\xe4\x20\xe7\xe4\x20\x47\x9e\x49\x05\x2b\xad\x5b\x4d\xd8\x43\x93\x3d\x6c\xdc\x50\x4a\xa3\xfa\xad\x6b\xdb\x46\x55\xe0\xa5\x00\x4e\xad\x13\x22\x12\xae\x7d\x37\x25\x6c\x00\xf3\xbe\xaf\x2f\x03\xb0\xf2\xad\x2e\x5e\x6d\x45\xb1\xbb\xd6\xbe\x98\xf3\x7a\xf4\xdc\x7f\x9d\xe7\x74\x93\xb7\x27\x61\xc7\x6f\xaf\xf3\x9f\xfe\x3a\x81\xd6\xac\x55\x96\xd1\x78\x45\x5d\x1f\x8b\x2d\x2a\x6d\x3d\x7a\xee\xbf\xce\x73\xee\xcb\xdb\x17\xb8\x56\xbf\xa6\x77\x7a\x99\xef\xb4\x7c\x65\xef\x74\x24\xbf\x89\xdc\x88\x41\x57\x58\xd7\xc4\xc8\xe6\x01\xee\x47\xfc\x57\x68\x00\x47\x64\x06\x66\x9a\x2c\xdd\xfa\x3a\xb8\x5d\xe2\xca\xfb\xef\xfc\x9c\xad\xf3\xf6\xd4\x1f\xf3\xed\x8d\xff\xf3\xdf\x38\x4e\xba\x32\x0c\xe0\x21\xd4\x1a\x27\x3c\x40\x33\x06\x19\x62\x2c\xe3\xad\x69\x47\xa3\xa0\x14\xa4\x99\x84\x11\x79\xc1\x55\x61\x42\x91\x28\x67\x17\x60\xa6\x01\x37\x3f\x78\x13\x60\xa6\x8e\xb8\x21\x65\xd7\x31\xd6\x0c\xcb\xc8\x50\x40\x0b\xc2\xe7\x67\xc9\xd8\x15\x4f\xca\xe9\x8a\x71\xef\xe9\x8a\x19\x09\xf1\x4b\xfb\x68\x9c\x57\x65\x23\x7e\x4a\xc6\x98\xe7\x55\x3c\xea\x66\xc9\xea\x35\xc1\x4c\x84\xeb\x7e\x8c\x75\x5f\x32\xcf\x09\x4e\x1f\x1e\xdb\x0a\x5c\x13\x80\x3c\xf9\x81\x3a\xb0\x32\xc7\xad\x2e\x1c\xeb\xa6\xd7\x25\x24\x66\x30\xe5\xdf\xd5\xf9\xf5\x65\xe6\xa1\x92\x2f\xae\xb2\x66\x22\xab\xb7\xc5\xd9\xd7\xcf\x5d\xf7\x1f\xef\x9c\x72\xf3\xe1\xf1\xde\xf7\xcb\x1f\x0f\x29\xd3\xcd\x69\x19\xee\x2b\x4e\xc1\x4c\xba\xa8\xd7\xf5\xe8\xb9\xff\x70\xe7\xfc\x9a\x0f\x5f\xa0\xc9\x7f\xf9\x13\xe2\x44\xc6\x4e\x37\x62\xed\x8b\x53\x5f\x91\x3f\xd1\xc2\x90\x88\x93\x40\xfc\x57\xba\xde\xe0\xaa\x06\xc0\xbd\x32\x2d\xc6\xbc\x1e\x57\xde\xff\x05\xe7\xbc\x97\x0f\xcf\x19\xe8\x7e\xf1\xf3\x27\x08\xbb\xe9\x96\xbe\x72\x8e\x63\x55\x4f\x78\xa1\x06\x9a\x27\xa7\x0d\xa4\xe4\xcd\x29\x69\xca\x5b\x1c\xd5\xd4\xf3\xaa\x6c\x48\xcd\x2e\xa9\xf3\x2a\xb6\x0a\xa2\xeb\x68\x14\x80\x12\x47\xd7\x31\x56\xbc\xd7\x71\x21\x31\x01\x05\x00\x85\xb2\xb2\x31\xab\x25\xc0\x5d\xd0\xbc\x26\xe9\x2d\x0e\xf8\xbd\xce\x42\x0a\xc7\xa8\xb2\x65\x83\x47\x76\xf1\x98\x57\x71\xf7\xcd\x39\xc9\x44\x40\xed\x46\x3c\x1c\x40\x9d\xf4\x08\x02\xff\xfd\x39\xc5\xe3\xed\x1f\xa0\x08\x7c\x76\x7f\x80\x0a\xcf\xfb\x36\x1a\xb8\x74\x3d\x0f\xbc\xe0\xa1\xa2\xda\x7b\xe9\x22\x37\x35\xda\xf0\x47\x43\xa1\x3c\x8f\x22\xdc\xf6\xdc\xc2\x1c\xc9\x4f\x4c\xa0\x4f\x49\xe8\x7e\x4b\x57\x24\x80\x28\x80\x97\x4f\x0c\x15\x5f\xd8\xfa\x6e\x52\x5a\xb7\xcd\xa4\x28\x3c\x75\x03\x24\xb3\xf1\x2d\x17\xdb\xe3\x65\x8d\x56\x77\xed\x54\x86\xd9\xd6\x81\x44\x6c\xc5\x58\x01\xc2\xe4\x3a\x2e\xae\xb2\x39\x68\xe7\xa5\xa0\x18\xa1\x36\x4b\x82\x78\x1a\x2d\x61\x2f\x6a\xe3\x55\x5a\xa2\x6d\x03\xe0\x39\xf6\xd3\x0d\x75\xf5\x52\x35\xeb\x47\x84\x27\x9d\xb2\x74\x5e\x1b\x1c\x6b\x4c\x9b\xb6\x38\x9a\x8e\x81\xf4\x1d\x6a\x5d\x76\x53\xe4\x48\x4d\xaa\x2b\xad\xc0\x9c\x9e\x4b\xe2\x98\xbd\xd7\x17\x77\x2a\x5d\x74\xc3\x67\x73\xb0\x21\xf7\x9e\x94\xdb\xdd\x75\xf3\x78\x58\x8a\x3d\x50\x8b\x49\x66\x8c\x99\xf3\x0e\x7c\x7e\x12\xfc\x60\x67\xdd\xda\xe0\xf8\x84\x7f\xd0\x06\x5c\x8d\x17\x8b\xad\x38\xee\x53\x75\x67\x1d\x98\x3f\x7c\x56\x2d\xf1\x7f\x24\x60\xb6\x8a\xec\x25\xb8\xef\x7a\x4d\xe8\xdd\x38\xce\x23\x2b\xbe\x26\xaa\x45\x67\xb0\x2b\x71\x9c\x2f\x75\x14\x01\x25\x38\x61\xe3\xed\x72\x5f\x6d\xbf\x3f\x67\x7a\xfc\xf4\x38\x60\x9a\x34\x9c\xce\xab\xa8\x24\x91\x19\xf1\x04\xd4\x4d\x32\x3f\x01\x42\x74\x1a\x07\x76\x18\x07\x0d\x3e\x26\xdf\x91\x26\x5b\x2b\x18\xe0\x1d\x3c\x4f\xc9\x15\xe5\x06\x37\x6e\xbd\x75\x17\x10\x40\x9a\x2a\x12\xad\xbc\x2a\xbc\x14\xee\xfd\x7f\x9f\xe5\x9b\x6e\xda\x38\x3e\x4b\x33\x2e\x3e\xc6\x2e\x3a\x8a\x25\x44\x90\xb5\xc9\x26\xd1\xc2\x1c\x6b\xe3\x92\x41\xc0\x76\x04\x01\x65\x06\x01\x11\x32\x40\x10\x90\x8f\x20\x60\x3b\x82\x80\x34\x83\x80\x90\x3e\x1c\xb7\x65\x06\x01\x93\xac\xba\x4d\x1f\x30\x82\x80\x74\x04\x01\xfb\x11\x04\xe4\x19\x04\x84\xdf\x18\x41\xc0\x7e\x04\x01\xfb\x11\x04\xec\x47\x10\xd0\x8e\x20\x20\xcd\x20\x60\x82\xbb\xd3\xbc\x21\x82\x80\xf5\x08\x02\xb6\x23\x08\x58\x8f\x20\xa0\x1d\x41\xc0\x76\x04\x01\x7b\xbb\xa4\x41\xe0\x47\x10\x90\x8e\x20\xa0\x1c\x41\xc0\x76\x04\x01\xdb\x93\x20\xe0\xfb\x73\x0e\xc7\xc7\x27\x65\x0a\xcc\x60\xa9\x8d\xcf\xde\x81\xff\x53\xac\xfb\xce\x21\x32\x00\x53\x4a\x72\xdf\x83\x3c\x9f\xd3\x45\x9c\xee\x9e\x01\xba\xd7\x7d\x80\xc2\x36\x04\xc5\xb8\x58\x1f\x3b\x28\x82\x54\xe9\xa6\x3c\x36\xfc\x91\x92\x67\x5c\x84\xc2\xec\x54\x28\x2c\x67\xe4\x0f\x7e\xae\xab\xab\x35\x8d\xde\xd0\x50\xbc\xb3\xa6\x5a\x43\xb4\x84\x78\x27\xe6\x8b\xf2\xb8\xa9\xd2\xeb\x8b\x54\xd0\xe0\x6c\xf1\x09\xbf\x0f\xf7\x22\x66\x78\x17\xdc\xa6\x37\xbf\xe7\xbd\x13\xf0\x2d\x97\x1f\x28\x06\x3b\xef\x21\xe5\xdc\x92\x2a\x48\xac\x23\xef\x72\xde\x1c\xa9\x97\x1d\xb1\x1e\x2e\x56\xf3\xbb\x2e\x75\x8f\x6b\x07\x19\x66\x02\x16\x6a\xe8\x3e\xad\xa5\xd9\x28\x83\x7c\x17\xcf\xef\xc5\xb3\x58\x15\xf8\x08\xe7\x24\xbc\xbe\x00\x21\x13\x09\x5e\x95\x56\x55\x99\x09\x5e\x71\x8e\x98\x3d\xf7\x5f\xe9\x39\x4f\xe2\xe3\x93\xba\x89\x6f\xaf\xf4\x37\x79\xa5\x28\xbf\x45\xa6\x95\x84\x75\xe6\x33\xd3\x8a\x7d\x3d\x7a\xee\xbf\xd2\x73\xa8\xfe\xe3\x97\x14\x72\x7c\x7b\xaf\xbf\xcd\x52\x25\xff\xdb\x94\xa7\xde\xd6\xa4\x5c\x61\x5f\x01\xbc\x8b\x94\x27\x92\x99\xf2\x14\xdb\x0a\x52\x9e\xac\xae\x83\xfc\xf2\x30\xe5\xe9\xfd\x39\x1a\xfd\xf1\x09\x32\xc0\xb7\x57\xfe\x1b\x69\x67\x9f\xb9\x47\x88\x14\x87\xd9\x81\xed\x59\x3a\xe2\x2c\x69\x76\x20\x84\x10\x66\x87\xf2\x61\x76\x8c\x4b\x9a\x1d\xc9\xb9\xa5\x7b\x47\x7e\x52\xcc\x1a\xaa\x21\xc3\xec\x80\x91\x11\x66\x07\xe2\xb1\x61\x76\xa4\x01\x21\x1b\x00\xd2\x90\x7b\x84\xd4\xa5\x30\x3b\xe0\x53\x0c\xb3\x23\xe3\x71\x7d\xcb\x46\x98\x1d\x08\x07\x85\xd9\x81\x08\x6d\x98\x1d\x83\xa7\xd9\x11\x37\x84\xd9\x01\x2f\x64\x98\x1d\x80\x35\xe5\x3a\x69\xf3\xc2\xec\x40\x59\x42\x98\x1d\x70\xc3\x84\xd9\x61\x87\x1f\x02\x78\xb9\x61\x76\xf0\xf4\x75\xa4\xb5\x01\xec\x01\x9d\x66\xc7\x9c\x9f\xd7\xff\x77\xb9\x23\xd8\xe7\x48\xef\xc7\xe7\x25\x53\xdf\x64\xfb\x37\x91\xed\x64\x74\x1f\x7d\xb2\xc7\x37\x9a\xec\xf1\x46\xc9\x03\x8f\x24\x20\xa0\x4a\x57\x9e\xec\xf1\xc6\xbb\xd6\x7e\xc9\x24\x20\xb0\xc7\x2b\x65\x97\xf0\xbc\x0a\x49\x40\x40\xf6\x1d\x94\xec\xf1\x48\x02\x9a\x63\x1d\xec\xf1\xa3\x4d\xf6\x78\x19\x93\x3d\xde\x6a\xda\xef\x48\x02\x42\xca\x45\xa5\xc9\x1e\x6f\x75\x4f\xd2\xf8\xd1\x26\x7b\xbc\xd6\xec\x42\x12\x10\x00\xe9\x7c\x4c\xf6\x78\x1f\xc9\x1e\x8f\x24\xa0\x39\xd6\x7d\xb5\x7b\x8e\xc2\x7e\xff\xe1\x2f\x1f\x1e\x02\xb2\x90\x94\x5e\xeb\x42\xa4\x37\xf3\xb6\xc4\x3f\x6e\xbd\x82\xda\xd6\xc0\x40\x0a\xde\x5e\xa2\xc6\x45\xe3\x80\x92\xa4\x1e\xb3\x7a\xa4\xc3\x03\x83\xc8\x9e\x67\x17\xd0\xf4\xe2\xaa\x6c\x28\x67\x57\x9d\x59\x8a\x63\x30\x08\xdf\xc6\x40\x49\x4b\x76\x1c\x23\xc5\x98\x71\xbe\xe4\x2d\x3e\x85\xad\xa8\x30\x98\xd7\x63\x5b\x12\x1f\x5b\xef\x7e\x11\x1f\xa5\x83\xfc\xd1\x81\xd6\x1d\xdf\xc7\xa7\x38\xfe\xcf\x35\xbf\x4f\x66\x9b\x02\xab\x31\x39\xea\xb8\xda\x3e\xef\x7f\x7f\xfa\xce\xa1\xc5\x8f\x4f\xca\xef\x7f\xf1\xca\xc6\x8c\x21\xc5\x08\xd1\x65\xa4\x00\xf5\xac\xf5\x06\x75\x27\xd7\xb1\x50\x25\x5e\x13\xa7\xa2\xb6\x8d\x2a\x0a\xd8\x41\xd1\x1c\x27\x77\xfe\xb5\x4b\xbf\xd3\xe5\x0a\xea\xc3\x56\xae\x44\x48\x29\xa1\xbe\x4a\x1b\xe5\x4a\xa2\x0b\x73\x5f\x63\xce\xad\x6e\x9c\xe9\x6c\x05\x85\x99\x1d\x6a\xa1\xfc\x63\xb5\x20\x5e\x44\x50\xda\xb8\xb7\x2a\x85\xb9\xad\x21\xac\x83\x62\xcf\xe8\xa0\x5f\x8b\x93\xea\x68\xf4\x2b\xb7\xab\xd0\x19\x9f\xf5\x45\x2f\x88\xa8\x03\x5b\x3e\xce\xef\xba\xa2\xf2\x5e\x7b\x3a\x51\xa4\x96\x93\x2e\xba\x7c\x81\x2e\xba\x2f\x0c\xe7\xc0\xe4\xa7\x27\x85\x4b\x80\x2b\x19\x9b\x83\x31\xb0\x58\xa3\xc2\x0a\x18\x7a\x38\xa9\xfa\x98\x9a\xb7\x96\xbe\xb3\x73\xf1\xb1\x73\xb5\xc2\x42\x3b\x79\x2d\x4d\xc6\x74\x0f\x74\xbd\x35\xb1\x2d\x8e\xe6\xf1\x76\xc4\x46\xe1\x41\x80\xf8\xa6\x31\x32\xd2\xaf\x75\x47\x4a\x95\xf4\xad\xe3\xe0\xdf\x51\x4a\x48\xce\x3b\x80\xff\x6b\x3f\xf8\x2f\x55\xe1\xc5\xb0\x75\x3e\x5f\xd8\x00\x70\x03\xc7\x09\xad\xae\xaa\x7c\xa1\xe6\x8a\x8c\xf7\xa3\xe7\xfe\x9c\x9c\xa3\x7b\x9f\x9e\x94\xe0\x7c\x2d\x73\x02\x2e\xdf\xe6\x71\xc4\xd1\xb5\x77\x03\x8b\xf3\xa2\x6c\xeb\xd1\x73\x7f\x4e\xce\xd1\xaf\x4f\x5f\x52\x4c\xf2\xb5\x4c\xcc\x00\x6a\x87\xc7\x19\x41\xe3\x8c\x20\x6b\x22\xb3\xd5\x38\x23\x84\x11\xa7\x71\x46\x88\x6e\x8f\x33\x02\x9c\x9a\xbc\xf4\x3e\xd6\x01\xef\xfd\xa3\x89\x3b\x07\x67\x3e\x3d\x4f\xe3\xfe\x5a\xa6\x8d\xdd\x2e\x24\x76\xd8\x22\x7c\xd8\x22\x3a\xad\x8a\xe6\xd3\x16\x69\x7e\xd8\x22\x0a\x5b\xa4\xe0\xaa\x6c\xc8\x61\x8b\xd4\xc3\x16\xb1\xc3\x16\xb1\xc3\x16\xa9\x87\x2d\x62\x9f\x6d\x11\x3b\x6c\x11\x3a\x6c\x11\x9d\x56\x45\xf3\x69\x8b\x34\x3f\x6c\x11\x3d\x6c\x11\x3b\x6c\x11\x39\x6c\x91\x7a\xd8\x22\xfd\xb0\x45\xfa\xb4\x45\x78\x1c\xb6\x88\x3d\xb0\x45\xce\xc1\xad\xbf\x3e\xe1\x18\x8e\xfd\xcb\x1b\xc2\xd2\xac\x92\xca\x08\xf3\x4b\x6a\x6b\xaf\x5e\xae\xd4\x0d\x44\xe6\x57\xae\x03\x74\x6d\x57\xd6\x0e\x08\x80\xab\x34\xd9\x65\xd4\x72\x05\x79\x5c\xa7\x72\x8d\xf7\xcb\x0d\x84\xad\x21\x01\xa0\x23\xe8\x3b\x87\x05\xdc\x84\x77\xb2\x68\x70\x47\x16\xe3\xb5\x31\xad\x61\x29\x5c\xd9\xea\x46\xde\xd0\x28\x84\xcc\x3e\xa3\x9d\x99\xa2\x21\x3b\x23\x4b\xca\xda\xce\x5d\x2f\x57\x36\xdd\xa4\x26\xcd\x2b\x30\x91\xae\xac\x2d\x1f\x83\x6b\x43\x24\xf7\x4a\x2d\x31\xa3\xaf\x43\xd6\xb0\xa0\xc0\x2b\x95\x3f\x8c\x4d\xd7\xf9\xab\x27\x1e\x24\x34\xd0\x81\x07\x09\x0d\x74\xe0\x41\x3e\xd4\x40\x7f\xcf\x33\xf8\xa8\x12\x9e\xaa\xe7\x16\x8e\x46\x8b\xe5\x5c\x7b\x4d\x82\x43\xaf\x69\x3b\x80\xaf\x6f\x0f\x9b\x26\x6d\x87\x19\xa5\x07\x0d\xf7\x2e\x8a\xcc\xcd\x49\x92\x0c\x40\x66\x75\x60\x50\x0c\xab\x5b\xde\x50\x5a\x26\xd3\x83\x02\xad\xeb\x3c\xd7\xf4\x71\xf8\xde\xc1\x8e\x46\x18\x70\x34\xa0\x15\x55\x44\xbb\xf3\xe1\xb4\xce\xfd\xbf\xf2\x45\x35\xf9\xcd\x3b\x83\x3b\xb5\x58\xc8\xa5\x08\x32\xe4\xac\x01\x98\x1e\xc4\xd7\xf0\xbe\xd3\x48\xef\xbb\x5a\xa6\xb5\x2a\x02\x63\x37\x36\xdf\x62\x05\x31\x09\xfa\xc8\xc2\x30\xca\x88\x3e\xa8\xde\x85\x0a\xfc\xd4\x5d\x70\x6f\x04\x2c\x5c\x8b\x98\xc3\x66\x48\x5b\xe1\x7e\x12\xd3\xfb\x73\xa4\xf1\xaf\x4f\x55\xd9\xbf\xb8\xb8\xcb\xa1\xea\xd0\x80\x82\x14\x99\xb4\x8e\x88\x0a\x84\x82\x44\x6c\x33\x14\xe4\xb0\xa9\x20\xe1\x5b\x08\x05\x89\x46\x28\x48\x30\xe8\xd7\x79\x15\x14\x24\xe8\x6c\x42\x41\x4a\x9b\xba\x73\x8e\x35\x41\xca\xa0\x20\x91\x0d\x1f\x0a\x12\x25\x4a\xa1\x20\x9b\x4e\x05\x99\x09\xe1\x54\x06\xdb\x25\x15\xa4\xea\x54\x90\x68\x48\x4d\x90\x32\x28\x48\xa8\xc3\x50\x90\x83\xa6\x82\xc4\xae\x18\x0a\x72\x8e\x75\x57\x68\xb8\xd2\xd9\xe1\xfd\xf6\xd3\xf7\x8f\xe1\xbe\x74\x94\xae\xb4\x58\xbb\x79\x85\xa8\x8c\x5b\x7f\x60\xc3\x72\xa5\xb3\x03\xf6\xed\x8f\x4f\x86\x00\x5f\x3d\x2d\x36\xe6\x10\xbd\x3d\x1b\xe2\x7c\x6a\xfa\xaf\x4f\x1f\xff\xfc\xf6\xe3\xdb\xfb\xfb\xd4\xc1\xb0\xdb\xc9\x33\xfa\x48\x21\xad\x8a\x5c\x09\x6f\xa0\x57\x84\xfb\x28\xe9\x8d\x5c\x12\x4f\x01\xc0\x4b\xc8\xe2\x1d\xb2\x59\x66\x2e\x31\xc8\x24\xc1\xd2\x03\x0a\x93\xe4\x6b\x97\xb1\xb4\xc1\xb7\xb8\xfd\xa3\x87\x3e\x5b\xf7\x78\xe8\xc7\x84\xc7\x53\x68\x28\xa5\x07\x45\x26\x10\x43\xe2\x2c\x79\x63\x24\x20\xf7\x12\x87\xe8\x44\xc3\xa8\x42\xe0\x0a\x27\xaa\x02\xf8\x1b\x90\xe3\x82\xa3\x8a\x9b\xef\x8a\x72\xa1\xea\xa9\x40\x4d\xfa\x2d\x6e\xff\xe8\xa9\xcf\xf6\x37\x9e\xfa\xe7\x0f\x3f\xfd\xf0\xe3\x77\xef\x7e\xbe\xbf\xb7\x1a\x4b\xb1\x8e\x94\x1c\xc6\x09\xaa\x5c\x43\xbd\x5b\x28\x19\xa4\x0c\x49\x72\x72\x26\x47\x4f\x95\xb5\x35\xf0\x76\xd6\x2d\x54\xfe\x95\xfa\x3c\x37\xc6\x6b\x11\x2f\xd6\x6e\xcc\xba\x18\xcb\xcd\xee\xe3\xe3\x73\xa5\xb3\x85\x87\xc7\xfd\xfe\xbb\x1f\x1f\x0a\x07\x68\xe0\x42\x38\xd0\x08\xe1\x40\x7c\x37\x84\x03\x7e\x43\xf8\x16\x79\xa4\x70\x40\x6e\x42\x38\x3a\x08\x63\x87\x6c\x30\x42\x43\x38\xe0\xaf\x08\xe1\x00\x4c\xd2\x67\xe1\x10\x1e\x29\x1c\x2f\x1d\x59\xfd\xae\x1b\x1a\x31\x50\xcf\x70\x68\x4b\x3c\xcf\x18\xc8\x50\x9a\xe9\xb2\x3b\x38\xaa\xbb\x66\xb9\x6f\x0c\xe4\x1e\x47\x27\x66\x14\x52\x60\x20\x78\x4e\x3f\x0f\xd4\xb5\x3d\x95\xc2\xb3\x8d\x74\x4c\xd0\x63\x41\x54\x9b\x82\x88\x46\x08\xa2\xf6\x29\x88\x29\x5b\x54\xd3\x59\x1a\x82\x88\xac\xad\x10\x44\xa9\x53\x10\x91\xbe\x85\x54\x78\x9b\x82\x88\x78\xf0\x67\x41\x54\x9b\x82\xf8\x92\x36\x22\xd1\x96\x16\x61\x6f\xc5\xb1\xe2\xe2\x08\x8e\xc2\x54\xaa\xbb\x43\xac\x49\xc0\xf4\x8f\x81\x80\x2f\x1c\x03\x75\xaf\x17\x0c\x64\x09\xd6\xe7\x89\xb1\xf9\x79\xa0\x11\x8d\x27\x12\x7f\xb6\x6d\x8e\x19\x7a\x28\xef\xea\x5c\x4c\xb7\xf8\x00\xe1\x54\x6c\x67\xa9\x5a\xae\xc4\xb1\x85\x62\x01\x30\x1c\x34\x57\xa9\xba\xe6\xb6\x26\xbc\x89\xd6\x90\x77\x2e\x62\x52\xae\xee\x00\x9a\x32\xbe\x31\xcb\xa2\xce\x37\xd3\xd7\x17\x37\xdc\xdd\x81\x85\x58\xbc\xe7\xdd\x9d\xe7\xdd\xc3\x56\xc6\xdd\xfb\x98\x77\xd7\x31\xef\xde\xdb\xbc\x7b\xef\x79\xf7\xee\x76\x99\x77\x77\xc3\xdd\xef\x4f\x05\x9f\x23\xde\xdf\x7d\xfa\xf1\xc7\xb7\x07\x4a\x96\x6a\xb1\x11\x06\x59\x2d\x61\xd4\x34\x6e\xc5\xfb\xd8\x5b\xd7\x32\x84\x41\x68\x3b\xe0\xce\x13\xd0\xd0\x02\x49\xca\x1d\x1e\xbb\xf8\xbf\x75\xc6\xf7\xbc\x0a\x12\x12\x9d\x2c\xee\x77\x03\xa7\x1f\x59\x01\xa5\x5f\x95\x02\x46\xbf\x2e\x45\x47\xe2\xe0\xaa\x56\x78\xe0\xe0\xa9\xef\x06\x47\x9f\x4a\x2d\x0a\x72\xdd\x5e\x74\xd4\xbd\xb1\xe2\x3a\x3c\xa3\xf0\xcd\xc6\x7d\xe3\x8a\xab\x9c\x95\xf5\x0f\x9f\x3e\xfc\x08\xad\xf7\x50\x91\xa8\x25\x95\x7c\xe6\x1d\xca\xd2\x07\xad\x61\x05\x6a\xa3\x9b\xf6\xba\x86\xd2\x1e\x6d\x2c\x2e\xbc\xce\xef\x3e\x7a\x88\xb3\xee\xfd\xfc\x10\x4f\x16\xab\x24\xe3\x7d\x3c\xc5\x41\x78\x0f\x76\x60\xe5\x45\x46\x5f\x43\xf9\x80\x2b\x6c\x24\xe1\xbd\xca\x91\x30\xf8\xff\xdf\x7f\xfc\xe9\xcf\xf1\xf9\xfd\xdb\xfb\x9f\xe3\xf3\xe7\xbf\xfc\xf0\x6f\x97\xff\x0e\x00\x00\xff\xff\x35\xfe\xc0\x29\x83\x0d\x01\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_svg() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_svg, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.svg", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_ttf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\xbc\x07\x7c\x5b\xd5\xf9\x3f\xfc\x3c\xe7\x9c\x2b\xc9\x76\x3c\x64\x59\x52\xbc\x64\xc9\xb2\x25\xdb\xb2\xbc\x64\x49\x96\x87\x7c\xbd\xf7\xca\xb2\x1d\x67\x78\xdb\x19\x76\x9c\x38\xce\x0e\x09\x59\x84\x0c\x32\xc8\x22\x40\xc8\x20\x40\x48\x48\x1c\x20\x10\x87\x32\x0a\x81\x32\x4a\x17\x14\x28\x94\x32\xda\x02\x85\x30\x4a\x5b\x0a\xc4\x92\xdf\xcf\xbd\x92\x1c\x27\xa1\xfd\xf7\xfd\x09\x14\x4b\xf7\x9e\x7b\x74\xcf\x73\x9e\xf1\x7d\xd6\x05\x04\x80\x10\x04\x60\x00\x65\xc5\x25\xa5\x01\xe9\x01\x19\x00\x38\x09\x00\xf8\xb2\xa9\xd3\x0b\x3f\x91\x7f\xa0\x00\xc0\x6a\x00\x52\x5e\x37\x35\x35\xe3\xd2\xef\x3f\x3f\x00\x40\xf7\x01\x40\x6b\x47\x5f\xdb\xc0\xd4\x4f\x8f\xa7\x02\xd0\x7f\x02\xc8\xe6\x77\x2c\x5b\xaa\x6d\xfb\x36\x6c\x36\xe0\xa3\x7f\x04\x80\x7b\xba\x07\x7a\xfa\x3e\x0a\x7b\xef\x1b\xc0\xc7\x56\x00\x04\x1c\xec\x69\x1b\x1c\x10\x7e\x0d\xf0\xd1\x37\x01\x40\xd6\xb3\x70\x65\x77\x7e\x26\x17\x04\x30\xa9\x15\xb0\xfb\x67\xbd\x5d\x6d\x9d\x3f\xa4\x87\x84\x00\x0e\x46\x01\x80\xad\xb7\xb7\xab\x6d\x12\xa5\x1f\x03\x0e\x4e\x03\x80\xb8\xde\xbe\xa5\x2b\xa2\x5f\xcd\x6a\x01\x1c\x5c\x01\x10\x12\xbb\x70\x51\x47\xdb\x47\xff\x72\x7c\x0b\xb8\xf1\x1e\x00\x59\x5c\x5f\xdb\x8a\x01\xee\xcd\xc0\x08\xc0\xed\xcf\x01\x80\xb6\xbf\xad\xaf\xab\x64\xe1\xa2\xe7\x00\xb7\x7f\x08\x40\xb5\x03\x8b\x06\x97\xfe\xb5\xf0\xc1\xbf\x01\xee\x02\x00\xfd\x6f\x07\x96\x74\x0d\xd8\x87\x72\x9e\x05\x7c\x36\x04\x00\xce\x8a\xb4\x10\x56\x2e\xbc\x08\xc8\xe0\x97\xf0\x4b\x40\xd4\xa1\x11\x10\x9b\xb0\x03\x10\x57\xe0\x0a\x40\x5c\x8b\xb7\x00\xe2\x7a\x5c\x0f\x88\x7b\x71\x1f\x20\xfe\x12\x7f\x09\x28\x5e\xef\x0f\x1a\x48\x06\x2c\x2e\xad\x9e\x06\x32\x81\xaa\x00\x63\x63\xe2\x19\x1c\xec\xeb\x18\x00\x99\xf0\x49\x7c\x33\xef\x5f\x19\x10\x7c\x06\xfe\x88\xf7\xe2\x11\xbc\x0f\x8f\xe2\x31\x3c\x8e\x27\xf0\x7e\x3c\x89\x0f\xe0\x83\xf8\x10\x9e\xc2\x87\xf1\x34\xbe\x8d\x67\xf0\x11\x3c\x8b\xe7\x70\x18\xcf\xe3\xa3\xf8\x18\x3e\x8e\x17\xfe\x4f\xd7\x7c\x44\x0e\x93\xbb\xc8\x61\x72\x37\xb9\x9b\xdc\x43\xee\x25\x47\xc8\x7d\xe4\x28\x39\x46\x8e\x93\x13\xe4\x7e\x72\x92\x3c\x40\x1e\x24\x0f\x91\x53\xe4\x61\x72\x9a\x9c\x21\x8f\x90\xb3\xe4\x1c\x19\x26\xe7\xc9\xa3\xe4\x31\xf2\x38\xb9\x40\x9e\xf8\x3f\x5e\xf5\x05\x79\x92\x3c\x49\x2e\x92\x8b\x64\x84\x8c\x90\x4b\xe4\x12\x79\x8a\x3c\x45\x9e\x26\x4f\x93\x67\xc8\x33\xe4\x59\xf2\x2c\x79\x8e\x3c\x47\x7e\x4e\x7e\x4e\x9e\x27\xcf\x93\x17\xc8\x0b\xe4\x32\xb9\x4c\x5e\x24\x2f\x92\x5f\x90\x5f\x90\x97\xc9\xcb\xe4\x15\xf2\x0a\x79\x95\xbc\x4a\x5e\x23\xaf\x91\x5f\x92\x5f\x92\xd7\xc9\xaf\xc8\xaf\xc8\xaf\xc9\xaf\xc9\x6f\xc8\x6f\xc8\x6f\xc9\x6f\xc9\xef\xc8\xef\xc8\x1b\xe4\x0d\xf2\x26\x79\x93\xfc\x9e\xfc\x9e\xbc\x45\xde\x22\x6f\x93\xb7\xc9\x3b\xe4\x1d\xf2\x07\xf2\x07\xf2\x2e\x79\x97\xbc\x47\xde\x23\x7f\x24\x7f\x24\xef\x93\xf7\xc9\x9f\xc8\x9f\xc8\x07\xe4\x03\xf2\x21\xf9\x90\xac\x22\xab\xc8\xc7\xe4\x63\xf2\x67\xf2\x67\xf2\x17\xf2\x17\xf2\x57\xf2\x57\xf2\x09\xf9\x84\x7c\x4a\x3e\x25\x9f\x91\xcf\xc8\xdf\xc8\xdf\xc8\xe7\xe4\x73\xf2\x05\xb9\x42\xae\x90\x2f\xc9\x97\xe4\x2b\xf2\x15\xb9\x0b\x08\x04\x82\x1e\x72\x01\xa0\x08\x66\x41\x04\x6c\x84\x8d\x90\x09\x9b\x61\x33\x58\xf1\xaf\xf8\x09\xd8\xf0\x33\x92\x04\x59\xc4\x4c\x9c\xb0\x9a\x14\x90\xb9\xb0\x93\xb4\x91\x25\x70\x86\x0c\x91\x65\xf0\x0c\x59\x49\x56\xc2\x73\x64\x35\xd9\x07\x3f\xa7\x7f\xa6\x7f\x86\xf7\x80\xb2\x5f\xe1\x6e\xe0\x00\xb8\xc3\x9c\x05\x00\x63\x3c\x7f\xe9\x6f\xa1\x9b\xc0\xc4\xd7\x87\x40\xc6\x42\x40\xdb\x22\x70\xbb\xf0\x7d\x60\xe5\x92\x41\xe0\x01\xc6\x5c\xb2\x76\xd7\xef\x01\x64\xed\xc4\xa4\x05\xbc\xaf\x4e\x10\xf0\x6c\x6e\x58\x1c\x27\x70\x1d\xf5\xbe\xa3\xc4\x6f\x20\x69\x05\x2a\x7e\x8a\x02\x26\x29\x16\x27\x5e\x0f\x12\x68\x15\xe5\xc0\x0f\x02\x41\x07\xb7\xc0\x51\x38\x03\x8f\xc0\xb3\xf0\x12\xfc\x1a\x3e\x81\xaf\xc1\x8d\xc1\x28\xc7\x78\x34\x62\x1a\x4e\xc5\xb9\xd8\x83\xb7\xe0\x3a\xdc\x8b\xc7\x70\x18\xbf\xc1\x31\x12\x49\xec\xa4\x99\xfc\x8c\xfc\x82\xbc\x42\xde\x27\xff\xa0\x48\x29\xf5\xa3\xc1\x54\x4f\xb7\xd1\x1d\x74\x2f\x3d\x46\x87\xe9\x08\x7d\x85\xfe\x8a\xfe\x8e\xbe\xc5\xe2\x59\x2a\x2b\x61\x75\xac\x9d\x2d\x62\xcb\xd9\x16\xf6\x2b\xf6\x36\xfb\x88\xfd\x8b\x43\x2e\x84\x53\x68\x50\x93\xaf\xd9\xac\xf9\xbb\xe6\x1f\x9a\x1f\x62\x6a\xb4\x01\x5a\xa5\x56\xa3\x8d\xd5\x1a\xb4\x69\x5a\x8b\x36\x5b\x9b\xab\x2d\xd6\x2e\xd5\xae\xd3\xde\xaf\x7d\x50\x7b\x46\xc7\xe9\x14\x3a\x95\x2e\x56\x67\xd0\xa5\xe8\xe6\xc4\x92\x58\x49\x6c\x70\x6c\x68\x6c\x44\xac\x26\xd6\x14\x5b\x1e\xdb\x1a\xdb\x15\xff\xea\x77\x2f\xb8\xc7\xc6\x5c\x63\x63\x5e\x49\x17\x56\xa8\x85\x58\x38\x0a\xc7\xe0\x11\x38\x0b\xcf\xc1\x2f\xe0\x37\xf0\x29\x7c\x03\x63\x18\x82\xa1\x68\xc0\x04\x4c\xc7\x69\xd8\x8a\xbd\xe2\x0a\x8f\xe2\x39\xfc\x06\x7f\x24\x93\xbd\x2b\x7c\x89\xbc\x42\xde\x21\xff\xa0\x30\xbe\xc2\x4d\x74\x07\xbd\x83\xde\x49\x4f\xd0\xf3\xf4\x12\x7d\x95\xfe\x96\xbe\xc5\x80\x19\x58\x1a\x2b\x65\xf5\xac\x83\x0d\xb0\x15\x6c\x2b\xfb\x35\x7b\x87\x7d\xcc\xbe\xe3\x08\x27\xd7\x80\xc6\xa9\x59\xaf\x39\xaa\xf9\x56\xf3\xcf\x98\x1a\x2d\x68\x15\x5a\xb5\x56\xab\x8d\xd7\xa6\x69\x33\xb4\x8e\xf1\x15\x9e\xd0\x3e\xa8\x3d\x7d\xdd\x0a\x5b\xbc\x2b\x94\x4f\x58\x61\xa7\x77\x85\xa3\x82\xe6\x61\x93\x98\x64\xec\x5f\x00\x63\x1f\x63\xd1\xd8\x73\x68\x1f\x7b\x16\x00\x93\x00\x30\x1e\x00\x75\x02\x77\x01\x60\x34\x00\x0a\x7a\x5e\x35\xa6\x1c\xa3\xee\xef\xdc\x7f\xc3\x26\x81\x34\xee\x0e\x77\x21\xec\x74\xbd\xe5\x3a\xe9\x7a\xc9\x75\xde\x75\xd2\x75\xbf\xeb\x3e\xd7\x61\xd7\x6d\x00\x63\x3d\x63\xdd\xc2\x08\x97\x14\x60\xac\x6c\xf4\xea\xe8\xf7\x00\xa3\x4f\x00\x8c\x9e\x05\x18\x3d\x01\x30\x7a\x1f\x80\x7b\x0f\x80\xfb\x0e\x80\xd1\x32\x80\xbf\x56\xff\x75\xd2\x5f\x9e\xfe\xcb\x17\x7f\x69\xf8\xcb\xdf\xfe\x82\x1f\x35\x01\x7c\x54\xf7\x51\xed\x47\xd5\x1f\x15\xfd\x59\xf1\x51\xce\x9f\x03\x3e\xca\xf8\x88\x7e\xf8\x03\xc0\x87\x6f\x00\x7c\xb8\xfc\xc3\xf9\x1f\xf6\x7e\x38\xfb\x83\x3d\x1f\x4e\xf9\xd0\xf0\xc1\xc6\x3f\x9d\xfa\x60\xf9\x07\xcb\x3e\x58\xf4\xc1\xc2\x0f\x5a\x3f\x28\xfe\xc0\xfc\x41\xd2\x7b\x2f\xf9\xff\x8a\xdc\x89\x07\x3d\xdc\x2b\xbe\xde\x99\x20\x16\xbf\x01\x80\x77\x01\x90\x01\xa0\x66\xc2\xbb\x75\xa2\xec\x60\x3b\x2e\x84\xff\xf0\xc2\x99\xde\x11\xb7\x00\xe0\x01\xef\xb1\xb3\x00\xf8\x1d\x00\xd1\x00\x10\x1e\x80\x08\x36\xf1\x2d\x00\xf2\x09\x00\xf9\xf1\xc6\x19\xc8\x57\x3f\x35\x2f\xf9\x93\xe7\xfd\xff\xe3\x45\x59\x08\x7e\x8e\x5f\xe0\x15\xfc\x12\xbf\xc2\xaf\x61\x1d\x7e\x82\x3f\xe2\x55\x1c\x45\x17\xba\x71\x0c\xd6\xc3\xad\x04\x08\x12\x42\x28\x61\xb0\x01\x36\x12\x8e\x48\x88\x94\xc8\x88\x1f\xf1\x87\x4d\xb0\x99\x28\x89\x8a\xa8\xc9\x64\x12\x4e\x22\x60\x0b\xdc\x46\x22\x49\x14\x89\x26\x1a\x12\x03\x5b\xf1\xaf\xf4\xcf\x70\x3b\x7e\x0a\xdb\x60\x3b\xec\x20\xb5\xa4\x8e\xd4\x93\x06\xd8\x49\xa6\x90\xa9\x64\x1a\x99\x4e\x66\x90\x46\xd2\x44\x9a\xe1\x0e\xd8\x45\x66\x92\x16\x32\x8b\xcc\x26\x73\xc8\x5c\xd2\x0a\xbb\x61\x0f\x69\x23\xed\xa4\x83\x74\x92\x2e\xd2\x0d\x7b\xe1\x4e\x41\x9f\x91\x95\x64\x35\x59\x43\xd6\xe2\x67\xf8\x37\xfc\x86\x04\x90\xfd\xe4\x00\x39\x48\x0e\x91\x41\xb2\x94\x2c\x27\x2b\xe0\x34\x9c\x21\x5f\xc3\x23\xe4\x1b\xf2\x77\xf2\x2d\x9c\x85\x73\xe4\x07\xf2\x23\xb9\x0a\xc3\x64\x94\xb8\xe0\x3c\x71\x93\x31\x78\x94\x02\x3c\x46\x11\x1e\xa7\x84\x52\xb8\x40\x19\x3c\x01\x4f\x52\x8e\x4a\xa8\x94\xca\xa8\x1f\xf5\xa7\x01\x74\x12\xfc\x9c\x06\xd1\x60\x78\x9e\x06\xc2\x0b\x70\x19\x5e\x84\x97\xe0\x17\xf0\x32\xbc\x42\x43\xe0\x55\x78\x8d\xd6\x51\x15\xfc\x9a\xaa\xe1\x37\x74\x32\x0d\xa7\x11\x34\x12\x7e\x0b\xbf\x83\x37\x68\x34\xad\xa7\x1a\x78\x93\xc6\xc0\xef\xa9\x96\xea\xe0\x2d\x1a\x0b\x6f\xc3\x3b\xf0\x07\xaa\xa7\x51\xf0\x2e\x8d\xa3\xf1\xd4\x40\x8d\x34\x81\x26\xd2\x24\x78\x8f\x9a\x68\x32\x35\xc3\x27\xf0\x29\x7c\x06\x7f\xa3\x29\xf0\x39\x7c\x01\x57\x68\x2a\x7c\x09\x5f\xc1\xd7\xf0\x0d\x4d\x83\xbf\xd3\x74\x9a\x01\xdf\x52\x0b\xfc\x83\x66\xd2\x06\x6a\x05\x37\xb5\xc1\x18\xb5\xd3\x2c\xea\xa0\xd9\x08\x88\x48\x68\x0e\x9d\x42\x73\x91\x22\x43\x8e\xfe\x48\xa7\xd2\x69\xa8\xc0\x30\x54\xa2\x8a\x4e\xa7\x33\xd0\x80\x46\x3a\xc6\x80\xfe\x40\xbf\xc7\x04\x4c\xc4\x24\x34\xd1\xab\x74\x14\x93\xd1\x4c\xff\x41\xff\x49\x1b\x69\x13\xfd\x2b\xfd\x04\x53\x30\x95\xba\xa8\x1b\xd3\x30\x9d\x7e\x4a\x3f\xc3\x0c\xb4\x60\x26\x5a\xd1\x86\x76\xda\x4c\x67\xd2\xbf\xd1\xcf\x69\x0b\x9d\xc5\xa4\x4c\x46\xbf\xa0\x57\x30\x0b\x1d\xf4\x4b\xfa\x15\x66\x63\x0e\xe6\xd2\x7f\x63\x1e\x3a\xe9\xbf\xe8\x77\x74\x36\x9d\x43\xe7\x62\x3e\xf2\x8c\x63\x12\x2c\xc0\x42\x86\x8c\xd0\xaf\xe9\x37\x8c\x32\x86\x45\x74\x3e\x9d\x47\x17\xd0\x85\xb4\x8f\xf6\xd3\x45\x58\x8c\x25\xf4\xef\xf4\x5b\xba\x89\x6e\xc6\x52\x2c\xa3\x5b\xe8\x6d\xcc\x8f\xf9\x63\x39\xdd\xca\x02\xe8\xed\x74\x1b\x76\x62\x17\x0b\x64\x93\x70\x25\xfd\x0b\xae\x06\x09\xf1\x07\x0f\xcc\xc1\x1b\x05\x0b\x7c\x06\x8c\xfc\x3f\xf8\x1e\x7d\xdc\x0f\x0c\x38\x90\x80\x14\x64\xe0\x07\xfe\x10\x00\x93\x20\x10\x82\x20\x18\x42\x40\x0e\xa1\xa0\x80\x30\x50\x82\x0a\xd4\x30\x19\xc2\x21\x02\x22\x21\x0a\xa2\x41\x03\x31\xa0\x05\x1d\xc4\x82\x1e\xe2\x20\x1e\x0c\x60\x84\x04\x48\x84\x24\x30\x41\x32\x98\x21\x05\x52\x21\x0d\xd2\x21\x03\x2c\x90\x09\x56\xb0\x81\x1d\xb2\xc0\x01\xd9\x90\x03\xb9\x90\x07\x4e\xc8\x07\x1e\x0a\xa0\x10\x8a\xa0\x18\x4a\xa0\x14\xca\xa0\x1c\x2a\xa0\x12\xaa\xa0\x1a\x6a\xa0\x16\xea\xa0\x1e\x1a\x60\x0a\x4c\x85\x69\x30\x1d\x66\x40\x23\x34\x41\x33\xcc\x84\x16\x98\x05\xb3\x61\x0e\xcc\x15\xac\xa7\x20\xb1\xf8\x77\xfc\x07\xfe\x88\x63\x84\x12\x09\xe1\x88\x94\xf8\x11\x19\xf1\x27\x93\x48\x10\x09\x24\xc1\x24\x84\x84\x12\x39\x51\x90\x30\xa2\x24\x6a\xa2\x22\x93\x49\x04\x09\x27\x51\x24\x52\x90\x51\xec\x87\x45\xd0\x0e\x1d\xd0\x83\x03\x30\x04\x1b\xa1\x0f\xe6\xe1\x3a\x18\x84\x5e\xdc\x09\xeb\xe0\x56\xdc\x06\x03\x78\x07\xee\x82\x2e\x58\x8a\x9b\xf1\x36\xdc\x02\x2f\xe0\x76\x98\x0f\x2b\xe1\x49\xd8\x04\xb7\xc1\x2d\xd0\x06\x0b\xf1\x76\xd8\x8f\x3b\xe0\x1c\x2c\x80\x55\xb8\x04\x28\x7e\x8e\x5f\xa2\x5b\x90\x58\x61\xdf\x70\x01\x2e\xc4\x1e\xec\x85\x2d\xb8\x9b\x68\xc9\x1d\xb8\x0c\x57\xe3\x52\x1c\x12\x37\x61\x11\x2c\xc3\x79\xd8\x87\x83\x78\x05\xff\x89\x5f\xe0\xbf\xf0\x5b\xfc\x37\x7e\x8f\x3f\xe0\x77\x82\x06\x02\xc0\xab\xa2\xee\x01\xd8\x06\xf7\xc0\x71\xe8\x87\x23\x70\x1f\x1c\x85\xe5\x70\x02\x8e\xc1\xbd\xc2\x3e\x63\x3b\xd3\xd1\xb9\x12\x00\x0e\x02\x20\xb3\x6a\x58\x57\xdf\xc4\x07\x12\x81\x37\x9a\x29\x22\x3a\xa1\x3a\x92\x57\x50\x14\x0e\x4c\x17\x0e\x40\x33\x11\x90\x74\x4d\xf3\x13\xa1\xa1\xa1\x72\x26\x9b\x6c\x42\xaa\x57\x58\x2d\x9c\xf8\x2f\xfe\xa0\xdc\x80\x07\xb0\x4b\x79\x2b\x1e\xe0\xee\x74\xdf\x81\xed\x6b\xfb\xc4\x7f\x3d\x3c\x95\x07\xc0\xee\xe2\x86\x21\x12\x62\x60\x69\xd5\xb0\xba\xbe\x89\x37\x06\x05\x10\x3a\x89\x10\x40\x0a\x6d\x32\x94\x48\x72\xab\x82\xfd\x09\x63\x5c\xb3\x9f\x94\x70\x5c\x7e\x55\x20\x22\xe6\x61\x75\x24\x1f\x2f\x1c\x10\xce\x51\x8e\xb5\xdf\x7c\x95\x77\x5c\x33\x1f\x11\xa3\x89\x8e\x8a\x8c\x08\x9f\xac\x56\x29\xc3\x14\xa1\x72\xef\x2b\x24\x44\x16\x6d\x42\x1d\xd5\x2b\xf4\x56\x9d\x42\x67\xd5\x29\x2c\x54\x78\x5b\x94\x7a\xf1\xad\xa7\x3a\x85\x8e\xbc\xe0\xfe\xbe\x7e\x57\xfd\xd7\xe8\x57\xe2\x76\x63\xf4\x94\x5d\x53\x50\x36\x65\xd7\x94\xd7\x3f\x2b\xf9\x78\xb4\x7e\xd7\x11\x94\x95\xb8\xbf\xc7\xc3\xee\x6e\x3c\x7c\x3b\xb6\x6f\xc7\xa3\xee\x56\xe1\xbd\xdd\x7d\xe4\x76\x77\x37\xd1\x63\x3b\x20\x1c\x1f\x4b\x63\x25\x92\x7b\x20\x0f\x0a\xf9\xfc\x90\x40\x42\x20\xc5\x44\x28\x47\x2a\x01\x09\x23\xc8\x06\x80\x71\x84\x71\xfd\x22\xf1\x81\x74\x00\x47\x29\xd7\x08\x1c\x47\x9b\x81\x72\xb4\x26\x3b\x2b\xd3\x62\x4e\x8e\x0b\xd3\x48\x64\x6a\x13\xda\x0c\xc6\x14\x6a\xcd\x74\x12\xbb\xd5\xa2\x54\xa9\xd4\xfa\xcc\x14\xa2\x8f\x95\x48\xc3\x34\x44\xad\xa1\xca\xb0\x20\x22\x55\xea\xad\x29\xd4\x6a\x09\xd3\x10\x4b\x86\x93\xd0\xed\x78\xdb\x9d\xb3\x0f\x2c\xc8\xb6\xcc\xde\xdc\xb0\xff\xa1\x4b\x78\x51\x97\x3f\x2b\x67\xe5\x1a\xd4\x96\xf4\xd5\xcc\x39\xd0\x6b\xb7\x77\xee\x6a\xdc\x5f\xbb\xab\xbf\x70\x24\xa3\xae\xd3\x52\xd0\x5b\x6e\xc4\xe5\x2d\x1b\xd2\xa2\xab\xe7\x6d\x6d\x9e\xb6\xb5\xcb\xe9\xff\xc7\x3f\xaa\xbf\xfc\x65\xd1\xe2\x86\x94\x5b\x16\x64\xd4\xf2\xf6\x88\x98\xea\xee\x2d\xcd\x8d\xdb\x3a\x72\xfd\x9e\x7b\x56\x96\xb5\xe0\xf8\xe2\x69\x8b\x0a\xa3\xb4\x79\x8d\xc0\x41\xf2\xd8\x17\xec\x08\xf7\x22\x28\xc1\x04\x05\xd0\x08\x2d\xe0\xe4\x73\x5a\x66\x12\x42\x9b\x51\x22\x25\x95\x40\x00\x19\xc1\x0e\x60\x20\x95\x30\x69\x07\x50\x0a\x02\x1a\x2e\xae\x02\x89\x84\x6b\x01\x8e\x2b\xe1\xaa\x13\x3d\xaf\x38\x99\x2c\xca\xa4\xc8\x74\x12\x4b\x86\x86\x28\x85\x95\xe9\x63\x53\xc8\xf8\xba\xac\x56\x71\xe5\x41\x44\x89\xff\xc3\x18\xce\x88\xea\x64\x7d\x51\x67\x41\x61\x57\x91\x5e\xf8\x5b\xd0\x55\xac\xdf\x16\xa4\x4d\x8f\xd3\xa7\x6b\x82\x83\x63\x84\xbf\x31\x41\xf8\x6b\x7d\x71\x67\x41\x61\x67\xb1\x5e\x5f\xdc\x51\x50\x28\x0c\x09\x8e\xc9\x10\x86\x04\x05\xc5\x64\xe8\xe3\xd2\x63\x82\xdc\xeb\x16\x11\xfb\x22\xf6\xb0\xa3\xa7\xd6\x6c\xae\xed\x71\xd4\x38\xba\x6b\xcc\xe6\x9a\x6e\x47\x8c\xc3\x1c\x19\x69\x76\xc4\xd4\xc4\xe4\x08\x1f\x72\x62\x46\x1f\x72\x74\x0b\x63\xba\x1d\xb5\xe3\x63\xb2\x85\x53\xd9\x31\xb5\xbe\x0f\x07\x9c\x2c\xd0\x09\x14\x16\x8c\x5d\x61\xa7\xb8\x17\x21\x09\x1c\x50\x0d\x4b\x79\x45\xde\x64\x8e\x22\x97\x9a\xa2\x0d\x67\x0c\xf5\x48\x18\xad\xac\x1a\x0e\xaf\x6f\xe2\x63\x81\xe3\x7c\x24\x43\x24\x2d\x14\x09\xc9\xab\x92\x20\x63\xde\xcf\xa4\x3a\x92\xd7\x5e\x3f\xa8\x19\x7c\x63\x68\x0b\x50\x5a\x42\xab\x9b\xf9\xe0\x64\x53\x45\x99\xc9\x91\xec\xd0\x87\x69\x92\xa5\xb2\xc9\x22\xa5\xed\x06\x83\xd5\x47\x4c\x81\x93\xa4\x68\xb3\xd9\x2d\x61\x12\xa9\x5a\x6f\x94\x48\x04\xd2\x72\x19\x36\x3b\x4a\x83\xa8\x32\x4c\x43\x68\x98\x4a\x6d\x77\x52\x1f\x8d\x17\x24\x94\x77\xe6\x15\xd5\x59\xe6\x6c\x9a\x52\xb6\xb4\x21\x39\xc6\x5e\x9d\x3c\x07\x2d\xfa\x04\x7c\xb0\xa2\xf4\xc2\xfb\x53\x2b\x1f\x6d\xef\x38\x3a\x90\x87\xc3\x65\x9b\x1c\xee\xa7\xa3\x32\x9c\xba\x00\xad\x73\x56\x76\x86\x79\x28\x26\x41\xe5\xa7\x88\xcf\xd4\x99\x0a\x4c\x2a\x1c\x2a\x5a\xd2\xd1\x6c\x6a\x39\xde\x34\x7d\x63\x73\x4a\xc6\xf4\x01\xa7\xb5\xb1\xba\x58\x57\xef\xee\xe3\x0f\x35\xad\x7f\xaf\xe9\xcb\xfe\xfc\xa2\xec\xde\x3d\xf7\x66\xa6\xe1\xb9\xc9\x89\xb5\x25\x0e\x85\xa5\xa9\xd0\x40\x3f\xc9\x1a\x2a\x98\xad\x4c\x49\x4d\x53\x6b\x1c\xa6\x48\xad\xad\x0c\x10\xbf\x62\x3a\xb2\x53\xd4\x63\x66\x8f\x16\x0b\x10\x34\x64\x33\x78\x75\x58\x88\x68\xef\xa6\x83\xa0\xc1\x40\x54\x60\x8f\x87\xca\x89\x4c\xe5\x55\x5f\x64\xa7\x72\x1b\x1e\xe1\xf6\xb8\x77\x63\xeb\x3a\xe1\x42\xec\x72\x27\xd1\x21\xc9\x02\x88\x04\xc9\x63\x61\x52\x4c\x33\x61\xa6\x93\xd9\xd5\x41\x44\x60\xbc\x50\x95\x4a\x2d\x4d\xe1\xac\xd8\x65\xae\xee\xe8\xeb\xcf\x30\x3a\x57\xb7\xe5\xe5\xb5\xad\x76\x1a\x33\x16\xf5\x75\x54\x99\x49\xdd\xae\xd1\xb7\x1f\xdd\xd6\x1e\xb5\x2a\xf5\xf8\xa7\xee\x37\x9e\x0a\x7a\xca\xfd\xbb\xcf\x4e\x66\x2c\x8e\x6a\xdb\x7e\xfe\xed\xd1\x5d\xc2\xfc\xbc\x3b\x89\x36\x5c\x37\x7f\x58\x10\x93\x1a\x9d\x24\xd4\x6a\xcd\x24\x06\x83\xd1\xae\xe1\x94\xb4\x41\x98\x7f\x91\x67\x7e\xbe\x6b\xa5\x43\x9c\xbf\xda\x4c\x4a\x76\x8d\xbe\x7d\x7e\x7b\x5b\xd4\xe2\x94\x93\x9f\x63\xda\x53\x41\x4f\x61\xfa\x17\xf7\xa7\x2c\x8e\x6a\xdf\xf6\xa8\x67\x7e\x38\x0a\x7f\x67\xad\xec\x65\x08\x82\x08\x5e\x1d\x14\x38\x29\xc0\xdf\x4f\x26\x95\x50\x82\x93\xa0\x0c\x00\xe6\x85\xa1\x4c\x69\xc2\x78\x3b\x47\x2d\x34\x5e\xcd\xa1\x94\x52\x23\x09\x77\xdf\x66\xc3\xbe\xf0\x47\xa3\x71\x81\xcd\xbd\x01\x61\xef\x5b\x6f\xee\x25\xa7\x5b\xcf\x1d\xc4\x93\xee\xe9\x07\x1e\x9d\xe3\xfe\x59\x3f\x2e\x70\x1f\x99\x0f\x08\xcb\x61\x2f\x9b\xcd\x9e\x80\x00\x30\xf0\x7a\xe0\x80\x70\xd3\x19\x02\x45\x24\x80\x6d\xc0\x71\x02\x1b\x72\xa4\xc6\xa3\x7b\x25\xb2\x08\x13\xea\x94\x3a\xb9\x5e\xae\xb3\xea\xe4\x16\xf2\x12\x1e\x74\xcf\x1b\x71\xcf\xc7\x03\x23\x34\xf0\xa2\x3b\x0f\x5f\xb8\x88\xa7\x44\xba\xb7\xbb\x87\xc9\x46\x78\x0f\x02\x20\x84\x0f\x94\x70\xc4\x73\xb7\x11\xc2\xdd\xc6\x0b\x4c\x6a\xb4\xd9\xac\x56\x0b\xd9\xa8\x36\xf3\x49\x83\x69\x09\xaf\x98\x52\x7b\xba\x66\xc5\xe5\x97\x1e\x99\xfe\x98\x88\x4b\xde\x25\xe9\xf4\x6d\xf2\x0a\x50\x98\xcc\x2b\x6f\xdc\x74\x79\x88\xb8\xe5\x3a\xab\x8e\xbe\xed\xa2\xc4\x45\xd2\x0f\x09\xbf\xf9\xcd\xd8\x97\x34\x0c\xa5\xa0\x00\x05\x1f\x22\xcc\xd2\x02\x88\x25\x58\x9d\x10\x27\x0c\x8f\x9f\x20\x23\x82\x50\xe0\x37\x8a\x38\x5b\x5c\x9c\x3d\x5e\xa1\x88\xb7\xc7\xc5\xd9\xe2\x14\x2b\x34\x99\x46\x95\xca\x98\xa9\x89\xb6\x18\x94\x4a\x83\x45\xf8\xad\xd1\xb1\x8d\x0c\xb9\x61\xa0\x9e\x39\x11\x06\x01\x31\x17\xab\x3d\xb7\xc0\xe9\xd1\x82\xc7\x1f\x20\xad\x27\xd7\x4a\xcc\xa2\xb7\xbf\x67\xec\x0a\xe3\x45\x5d\x1a\x0d\xf1\x90\xc0\xc7\xc7\x68\xd4\x2a\x46\x09\x56\x02\x21\xe2\x0d\x15\x57\xf9\xf4\x67\x09\x54\x1b\x12\x12\xe3\x44\xeb\xeb\x53\x82\x72\xdf\x5d\x22\x1a\x0c\xfa\x58\x89\x92\x43\x95\xca\x92\x61\xb3\x32\x9e\x5f\x71\x76\x60\xd1\xb9\x55\x05\xfc\xca\x73\x8b\x06\xce\xad\xe4\x5d\x01\xc4\x1e\x72\xfb\xad\x7b\xb7\x93\x1c\xd7\xab\xf2\x1d\x6b\xef\xbc\x9d\x98\xb7\xbf\x7d\x67\x75\xf5\x9d\x6f\x6f\xc7\xe9\xdb\xdf\xde\x57\x53\xb3\xef\xed\xed\xee\xdf\xe0\x63\x7b\x0e\xbe\xf8\x74\xa3\xbb\x6e\xe7\xbe\x97\x7f\x26\x2c\xe1\x37\x00\x54\xc2\x0d\x83\x04\xc2\x78\x39\xc7\x04\x97\xa6\x1c\x00\xf2\xa0\x3a\x44\xd8\x1f\x9d\x5e\xce\x59\xe3\x2d\x54\x32\xe2\xde\x48\x8c\xc1\xec\xf2\x9e\x53\x6f\x8a\x7b\x32\x1d\x80\x99\xb8\xcb\x10\x07\x29\xbc\x89\x20\x30\x61\x51\xc8\x90\xb0\x01\x40\x14\xb5\x54\x71\x15\x30\x26\xec\x92\x30\x5b\x44\x5c\x98\x29\x84\x93\x85\x9b\x74\x3a\x2b\x5e\x53\x39\x4a\xfd\x44\x6d\x85\x3a\x66\x1a\x2d\xc5\xf7\xf9\x19\x99\x2a\x7d\xd1\xdc\xdc\x8a\x05\x65\xfa\x4b\xfc\xca\x73\x03\x3d\x27\x97\xe4\x25\x57\x75\xd8\xdd\x2b\xc9\x7b\x9b\x49\x68\x59\xff\xec\xa9\xc9\xb6\xb9\xa5\x89\x49\x35\xfd\xc5\xb3\x4e\xac\x2a\xcf\x5b\xb8\xaf\xb1\x60\xdd\x9a\x95\xb9\xee\x26\x40\x98\x33\x76\x85\xfe\xc0\x5d\x06\x27\x94\xf0\x85\x1a\x94\x82\x78\x6f\x80\x04\x06\x80\x93\x4a\xa4\x9c\x64\x00\x00\xa4\x1c\x48\x3b\x26\xdc\xab\x44\xc2\x5a\x80\xb1\x12\x56\xed\xcc\xcd\xcc\x48\x31\x27\x1a\xe3\xc2\x0c\x5a\x99\xb0\x21\xa2\x25\xca\x34\xdc\x7c\xc3\x1e\x7b\x7d\xbd\xc5\x12\x56\xa6\xc7\x2d\x9b\x4a\x17\x54\x18\x36\xac\xcd\x69\x2b\x31\x5c\x2a\x58\x76\xb2\xab\xfd\xf8\x52\x3e\xc2\x36\x3d\xa7\x6c\xae\x43\x5d\xba\xe6\x54\x7b\xeb\xa9\x35\x15\x23\xc6\xf2\x9e\xfc\xfc\xee\x72\xa3\xb9\x61\xb0\x64\x13\x4d\x37\x14\xce\xb2\xaf\xbb\x55\x5f\x38\xcb\x31\xf5\xce\xbe\x7c\x6b\xef\xe1\xae\xa4\x99\xd3\xab\xc2\xd5\x95\xb3\xba\x33\xba\x8f\xf4\x39\x6c\xbd\x07\x5a\x1d\x73\x0a\xe3\x74\xc5\x5d\x25\xc5\x1d\x85\x5a\x20\x50\x05\xc0\x7a\xb8\x61\xf0\x87\x20\x30\xf1\x09\x81\x08\x4c\x86\x08\xa4\x92\xf3\x49\x6e\x3b\x30\x96\x5b\x05\xa2\x61\x91\x87\x8e\x8b\xae\x45\xa9\x17\x45\x17\x2d\xa8\x93\x4b\xe9\x3d\xaf\xbd\x36\xe2\xea\x25\x3b\x5e\x74\xad\xc1\xd7\x34\xf8\xb7\x83\xee\xb3\x38\xa5\x8f\xfe\x7d\xd4\x41\x7e\x9b\x05\x08\x4f\x8d\x5d\x61\x75\xdc\x30\x24\x41\x2e\xef\xe0\x50\x42\x92\x90\x49\x48\x25\x30\x09\x27\x61\xdc\x00\x10\x90\x30\x22\xe9\xf0\xca\x25\xe4\x56\x09\xf0\xc7\x6b\xab\x12\x62\xc3\x12\xf4\x72\xb9\x54\x16\x69\x52\x28\x74\x4a\x1d\xb5\xd9\x26\x0a\x9f\xd1\x22\x70\xb5\x97\x72\xb1\x41\x44\xfa\x4d\x05\xf9\xc2\x75\x3e\xd1\xb4\xa2\xae\xeb\xe8\x40\x6e\xd6\xe2\x33\x4b\x9b\x8f\xac\xae\xf3\x1f\x96\xef\x1f\x2a\xec\x2e\xd1\x1b\x2b\x17\x96\xa6\x14\xd9\x52\xc3\xc9\xbb\xe4\xad\xc7\xdd\x6b\xc2\x0d\xa5\xeb\x1e\xef\xef\x7d\xf4\xd6\x8a\x8c\xce\x43\x5d\x6b\xd6\xa7\x36\xae\xaa\x2a\x5e\xd6\x98\x11\x38\x39\x56\x25\x62\xd4\x9d\x63\x57\x58\x3c\x77\x1e\x8c\x90\x0b\xd9\xbc\xdd\x0f\x19\x9a\x91\x63\x02\x7e\x93\x20\xe3\x90\x75\x08\xe2\x2a\xdc\xac\x78\xdb\xa4\x05\x08\x29\x21\xd5\x89\x09\x99\x19\x09\xb9\x89\xb9\xd1\x09\x49\x3a\xc1\xbe\xa2\x52\x1f\x1b\xc4\xa4\x4e\x3a\xe1\xe6\x99\xd5\x9a\xe9\x64\x16\x2a\xdc\xb6\x72\x02\x07\xd0\xa6\x90\x59\x7b\xfa\xeb\x32\xa3\x58\x44\x71\x5d\x4b\x46\xdf\x91\xee\x34\xc7\x92\x53\x8b\xea\x36\xf6\xd6\x5a\x22\xc2\x73\xbb\xef\x7e\x6b\xd7\xc7\xa9\x4d\xd5\xd9\xf2\x94\xda\xee\xac\x82\xce\x12\xbd\xb6\xb0\x93\x3b\xff\x80\xa1\xb0\x65\xe1\xb2\xbc\x18\xab\x51\x3d\x75\xeb\x99\xe6\xee\xc7\x6f\xab\x4d\xa9\x5b\xb8\x66\x4b\x51\x63\xe7\x2b\x17\x8f\x2d\x2b\x76\x0d\x68\x6c\xd5\x29\xce\xd6\xfd\xdd\xd6\x8c\xa6\xd5\xe5\xfc\xca\x39\x59\x82\x2c\x0e\x00\xb0\x72\x51\x86\x63\xf8\x28\x01\x2e\x60\xa5\x0f\x34\xe4\x56\x79\xc4\x4f\x2e\x97\x53\x01\x7c\xa2\x5e\xd0\x94\xac\xdc\x75\xf2\x79\xd2\x3c\x7a\x85\xbe\xc3\x95\xff\x78\x91\x0b\x3a\x2e\xea\xab\xf3\xe2\x1e\x5f\x86\x78\x70\x40\x0d\x58\xf9\x0c\x35\x25\x84\xc3\x4a\xc1\x14\x50\x8e\x74\x00\x63\x37\x6b\xad\xca\x72\xde\x69\xcb\x4c\x4e\x8a\xd5\x26\x4b\x04\xf3\x23\x91\x4c\x94\x0a\x01\x92\x78\xd0\xae\x40\x34\xea\x93\x7a\x1f\xb2\xbd\xe1\x3b\x4b\xc1\xa5\x6d\x59\x2d\x05\xfa\x8a\xb5\x0f\xb5\xb6\x9f\x5a\x5b\x1e\xcb\xcf\xcc\x4a\xab\xb5\x69\xf8\xc5\xf7\xce\x9e\x75\x64\x69\xe1\xa1\xc4\xca\x9e\x3c\x41\x60\x8c\xe5\x3d\x7c\x5e\x77\x45\x62\x6c\x7c\xc1\x4c\x9b\xad\x89\xd7\xeb\x0b\x9a\x6d\xd6\x99\x05\x71\x2c\xb3\xef\xe1\xb4\xc9\x65\xb3\x16\xe6\x75\x1c\x9e\x67\xb7\xcd\x3b\xdc\x99\xd7\xd7\x52\x3e\x79\x72\xd1\xd4\x76\xdb\xdc\xfd\xdd\x36\x5b\xf7\xfe\xd1\x1f\xf3\xba\x2b\x12\x12\x2a\xba\xf3\xf2\x3b\x8a\xe3\xe2\x8a\x3b\xc8\x9f\xed\xb3\x8a\xe2\xf5\x85\xb3\x1d\x8e\x96\x02\xbd\xbe\x60\x16\x10\xd8\x3f\x36\xc6\x12\xb9\xcb\x22\xcf\x14\xf1\xbc\x19\x19\x27\x45\x64\xa4\x52\x8a\x0c\x04\x75\xd7\xe1\xe3\x94\xe2\x2a\x09\x7a\xd9\x27\x8f\x56\x27\x26\x20\x78\xd8\x26\x3e\x4e\xad\x0c\x0c\x00\x23\x1a\x65\xb2\x30\x53\x7c\x86\x93\xd9\x83\xa8\x8f\x28\x96\x0c\x0d\x13\xd0\x2e\xd3\xeb\xad\x8a\x0c\xc1\x17\x98\x40\x0a\x1c\xea\x38\xb0\xa8\x32\x55\x45\x27\x3b\x6b\xe7\x66\x2d\xbc\xb7\x3b\xcd\xb1\xf8\xd4\xc0\xb4\xdb\x7a\x2a\x53\x55\xa1\xd6\xd6\xc3\x7f\x3c\xa8\xf8\x26\xb5\xb9\x2a\x47\x6e\xae\xe9\x72\x14\x74\x96\xc4\x69\x0b\x3a\xee\xd7\xf3\x8d\xf3\x86\xf2\x34\xd6\x04\xf5\xf4\x6d\x67\x9b\x7a\x9e\xbc\xbd\x21\x75\xea\xe2\x8d\xbb\xca\x8b\x66\xbf\xf0\xc4\xb1\x15\xa5\x27\xf1\x8f\x31\x8e\x9a\xd4\xdc\xb6\x43\xf3\xb2\x32\x5b\xd6\x96\xf3\xab\x5b\x73\x60\x6c\x8c\xc4\x8e\x7d\x49\x4b\xd9\x20\x31\x40\x48\x06\xa0\x14\x42\x20\x83\x2e\x04\xbf\xf3\x88\x17\xe9\xc2\x61\x8b\x09\xc6\xc6\xf0\x13\xf7\x30\xcd\x63\x83\xc4\x08\x21\x90\x48\x17\xa2\x14\x82\x60\x13\x00\xf8\x9d\x07\xdf\x28\xd1\x26\x3c\x0c\x97\xe9\x8f\xac\x0a\x64\x20\x79\x4c\xca\x04\xfc\x23\x55\x73\x4a\xb4\xa2\x12\x0f\x58\xad\xa4\x73\x74\x98\xd6\x93\x83\xf2\xd0\x2b\x97\x71\xf5\x5e\x5c\x75\x59\x90\xcd\x47\xb0\x8f\x25\xd1\x47\x80\x82\x14\x62\xf9\x18\xc1\xba\x53\x84\x36\xa0\x84\xd0\xe9\x40\xa9\xc0\xc5\x54\xc4\x1c\x21\xa2\x6d\x14\xb0\x86\xc0\xc1\x49\xa3\x1b\xe9\x5a\xe1\x4d\x27\x1d\x73\x3d\x77\x54\xfc\xfd\x47\xe1\x45\x16\xcf\xaa\xc5\xdf\x67\x88\x69\x26\x85\xf0\xd3\xd6\x78\xbb\xf1\x51\x3a\x38\xba\x93\xdc\x96\x9b\x4b\x77\x3e\xeb\xde\xb2\xd7\xbd\xf9\xb9\x7f\xca\x15\xa2\x6e\x78\x76\xec\x5f\x2c\x52\xdc\x67\x0b\x5c\xae\x1a\xf6\xaf\x6f\xe2\xe3\x01\x81\x02\xd2\x01\x09\x52\x06\x94\x89\x7e\x9d\x67\xa7\x81\x31\xd1\xc7\xc9\xe3\xaa\x23\xab\x86\x27\xfd\x6f\x83\x4b\xc4\xc1\x41\xff\xfb\xcc\xff\xe3\xa4\xcd\xcd\xcd\x02\x0c\xc9\x48\x4b\x4e\x02\x23\x18\xe3\xc2\x92\xa5\x82\x88\x3b\xa9\x08\xe9\xbd\xd6\xea\x9a\xb6\x12\x30\x3f\xcd\xb4\x59\x32\x54\xca\x30\x89\x3e\xd6\x80\x63\xe8\xaf\xcd\xcd\x88\x2d\xcb\x31\xdc\x32\x94\xda\x5c\x92\x34\x82\xc5\x83\xf7\xb6\x74\xdd\xd7\x9f\x9d\x51\xdb\x96\xaa\xd1\x85\xb0\x5f\x39\x1c\x8e\x9c\x1c\x87\xc3\x81\x87\xcb\x67\x57\x14\xa5\xe8\x2b\x1b\x66\x66\xf4\x0d\xaa\xd3\xab\x32\xa7\x6d\x99\x9d\x6e\x69\xdf\x31\xb3\x7c\xdd\xe2\xf6\xa4\xe8\x4c\x5b\x9e\xd1\xfd\x8b\x34\x9e\x4f\x4b\x71\x3a\x45\xba\xf2\x63\xdf\xb3\xed\xdc\xa3\x50\x03\x2d\x70\xb2\x6a\x38\xac\xbe\x89\x0f\x9b\x8c\x7e\x64\x7a\xad\x8c\x52\x3f\x3b\x72\x90\x85\x12\x8e\x55\x46\xf2\x6a\xcf\x61\x22\xf3\x93\x21\x95\xf9\xce\x70\x95\xcd\x9e\xab\x8c\x40\xc0\x8f\x12\xbf\x0e\x19\x52\x44\xe0\x28\x08\x7a\x48\xda\x02\x52\xa9\xa8\xad\x25\x2d\x20\x91\xe4\x49\xaa\x23\xf9\x64\x61\xa4\x8c\xf8\x75\x80\x8c\x82\xac\x11\xfe\xeb\xf0\x66\x3e\xa8\x69\x86\x21\x29\x31\x21\xc1\x98\x10\x17\xe7\x2f\x8b\x36\xa1\x20\x9d\x06\xaf\x97\x64\x17\xe8\xa6\x52\x53\x89\x47\x31\xd9\x6d\x5e\xd3\xe4\xfb\xae\x16\x07\x1b\x88\xdd\xc9\x09\xf4\x45\x89\x80\xcb\xec\x0a\x91\xe8\xec\x36\xaa\x2d\xe8\xae\xcc\x6b\x90\xeb\x7b\x9c\xe9\xe5\x66\xb9\xc4\x2f\xab\x79\x59\x59\x51\x53\x44\x32\xf5\x57\x44\x85\xc4\x3b\x0c\x61\xc8\x32\x7a\x0e\xb4\x76\x3d\xb8\xaa\x94\x71\x69\xf3\x4f\x0e\x68\x9c\xb9\x36\x95\x36\x9c\x2f\x2d\xd7\xde\xf9\xc6\xe6\x1c\x8e\x25\x55\xf4\xac\xbf\x6b\xc6\xaa\x67\x6e\xe5\x5d\x55\x5c\x72\x5a\x7a\xbd\xc6\x18\xa5\xb1\xd6\xd9\x74\x54\x59\xff\xe0\xd6\x19\xbc\x23\xab\x20\x73\xce\x86\xda\x45\x8f\xad\x2d\xb2\xc6\xb9\x65\x89\x96\x68\x7f\x47\xdb\x86\x8a\x75\xaf\xee\xa8\x9c\xfb\xf0\x95\x1d\x5b\xdf\xbc\xb3\xc6\x4f\x3e\x39\x78\x48\x11\xa5\xf0\xeb\xb9\x84\x78\x57\xcf\x0b\x0f\xef\xec\xce\x9a\x3b\xfc\x6f\xf7\x77\xdd\x4b\x6c\xf9\xf8\x74\xa0\x65\xf6\x66\x4f\x0c\xa7\x01\x80\xed\xe6\x86\x41\x0a\xfe\x10\xcf\xc7\xfa\x0b\x0e\x7e\x25\x30\x31\x9e\xdf\x2e\x1a\x11\xea\x89\xc4\x88\xc0\x5f\x00\x71\xa8\xa3\x02\xda\xd5\xa3\x8e\xd2\x2e\x77\xc4\xd0\x08\xbe\x75\x37\xfe\xea\xa2\xeb\x0f\xb8\xf1\x39\x5c\xe9\xbe\x8d\x1b\xfe\xb1\x9e\x44\x90\x15\x62\x44\x11\xce\x00\xb0\x56\x6e\x18\x54\xa0\x87\x34\x70\xf2\x39\x93\x90\x0a\x78\x91\x49\x91\x12\x46\x3b\x7c\xbe\xae\x88\x52\xb0\x45\xe2\xf9\x31\xb5\x1a\x20\x2d\xc5\x10\xa7\xd6\xab\x63\x23\x26\x83\x0a\x94\x3a\x99\x4c\x69\xb2\xc8\x75\x1a\x2a\x0d\xa2\x82\x95\x51\x09\x98\x51\xae\x73\x52\xab\x2d\x85\x18\xe3\x75\x1e\x5c\x69\xd4\x9f\xc1\xf3\x33\xcf\x6c\xa9\x47\xd4\xe7\x4d\x49\xc9\x6e\x2b\x35\x62\xfd\x96\x73\xb3\xdd\x9f\x61\x74\x76\x6f\x7d\x2a\x9a\xaa\xbb\x73\xdc\x7f\x40\x92\xd9\x59\x9b\x96\x5a\xd7\x63\x73\x71\xc3\x68\x9e\xb3\xb7\xdb\x31\xa7\x2a\x2b\x4c\x9e\xdf\x3c\x50\xd0\x7d\xcf\xbc\x2c\x24\xa7\x5c\xff\xc4\xf8\xc2\xd6\x3c\x67\x6b\x51\x1c\x39\x8c\x31\x39\x33\x1c\x79\x33\xec\x11\x62\x94\x55\xf0\xf7\x67\x73\x97\xc1\x02\x36\xde\x22\x98\x47\x4a\xb8\x01\x09\x72\x8c\x72\xac\x1f\x28\xf5\x19\x4a\xc6\x7c\x86\x12\x00\x2c\x60\x31\xc7\x85\x99\xe3\xa4\x02\x09\x45\x63\xc0\x8c\x56\x0f\x07\xa9\xf5\x29\x54\x80\x17\x4a\x65\x98\x86\x89\x2c\xc6\x66\x07\xd6\xae\x3d\x3d\x6f\xe6\x9d\x83\x53\xed\x91\x88\x91\xf6\xa9\x83\x7b\x5b\xfa\xce\xac\xa9\x9a\x34\xe2\x97\x5c\xb9\xa0\xa2\xb0\xab\x22\x5d\x13\x18\xa8\x49\xab\xec\x2c\xaa\x58\x50\x99\xec\x87\x4f\x74\x9d\x5a\x59\x64\x99\xb9\x6a\xf7\x91\x86\xd7\x1a\x8e\xec\x5e\x3d\xd3\x52\xb4\xfa\x4c\x6f\xe1\x92\x19\xe9\xa6\xca\xf6\xfe\x41\xdb\xeb\xb6\xc1\x45\xed\x55\xa6\x94\xa9\x8b\x0b\xc5\x7d\xbf\x1b\x80\x0d\x70\xc3\x10\x08\x91\x90\xcc\x27\x72\xe8\xb5\xea\xde\x7d\x60\x9e\x7d\x08\x0a\x02\x08\x8a\x0c\x8a\x90\x07\x43\x20\x4c\xd2\x49\x7c\x7b\xa0\x56\x06\x51\x29\x95\x5b\x9c\xd4\x6e\x4d\xa1\xc6\xbb\xb1\xe1\xd0\xd7\x27\x1b\x11\x1b\x4f\x7e\x7d\x68\xff\xfe\x65\x67\x16\xdb\x11\xb3\x06\xce\x2c\xe3\x86\x49\xc7\xf9\x7f\x1f\x58\x70\xe0\xdf\xe7\x3b\x90\x9b\x7c\x75\x1d\x36\xec\x78\x66\x51\xdf\xa2\xa7\xb7\xd7\x13\x8f\xdd\x78\x02\x80\x65\x72\xc3\x10\x00\x89\xbc\x01\x38\x00\xe4\xa0\x0d\x18\xa3\xcd\x1e\x48\xe6\x0b\x80\x90\xea\x89\xae\xa7\x5c\x70\x3e\xc5\x37\xfd\xb5\xeb\x28\x79\x71\x74\x03\x1d\x72\x15\x93\x56\x72\xcc\x35\x7a\x2f\x37\x7c\xc4\x9d\x2c\xcc\xfd\x2c\x00\xcb\xe3\x86\xc1\x0f\xf4\xbc\xd6\xcb\xd3\x6d\x5e\xbb\x42\xc4\xb9\xaf\xe7\x6b\x01\x13\x8b\x73\xbe\xe3\x3a\xfe\x14\xbd\xc5\x95\x47\xe6\x90\x8d\xae\xb5\xc2\x7c\x41\xc2\x7c\x9d\x63\x5f\xb0\x59\xdc\x65\xb0\x82\x83\xb7\xa5\x03\x61\x02\x3e\x22\x54\x42\x89\x64\x00\x24\xc0\x31\x09\xd7\xf6\x93\xdb\x2f\x57\x0a\x5b\x1f\x2b\x80\xe0\x78\x89\xc4\x98\xc2\xdd\xbc\xf3\x1a\x4e\xad\x72\x12\xbb\x42\xb0\x6f\xb3\x66\x7d\x75\xc7\xcc\x83\x2b\x66\xe6\xc5\x20\x46\x66\x4d\x1b\xda\x37\xab\xfb\xcc\xfa\x5a\xbf\x27\x03\x52\xaa\x7a\x4b\x0a\xbb\xab\x33\xb4\x41\x28\x8f\xcb\xaa\xeb\x2d\x34\x4c\xad\x2d\x56\x13\xf7\x3b\xf8\xce\xb3\x0b\x7b\x11\xad\xb3\x6f\xb9\xf3\xd8\x94\x53\x0d\xc7\xf6\xad\x9b\x6d\xcb\x1f\x3a\xd9\x9d\xbf\xa0\xda\x64\xae\xee\x1a\x58\x6a\x3b\x6d\x1f\x1a\xe8\xac\x36\x23\xca\x26\x27\xea\xb0\xec\x1e\x61\x3d\x3b\x01\x58\xbe\x48\x7b\x1d\xaf\x01\x0f\xb4\x69\x13\x38\x21\xb7\x8a\xa0\x0f\x3a\x7a\x69\xae\xd3\xcb\x05\xfa\x58\xe4\x3a\xb9\x85\xe5\x9f\x73\x9d\x3e\x7b\x96\x4c\x3f\x47\x8e\xb9\xe6\x72\xc3\xae\x3b\xc8\x12\x61\xbe\xb3\x00\x4c\x23\xce\xa7\xe7\xb5\x1c\x8e\xbb\x03\x0c\x09\x11\xf7\x33\x8f\x4e\x98\x51\xe1\xdd\x43\xc1\xa8\x9f\xa5\x03\xee\x13\x38\x7b\x74\x37\x4e\x77\x9f\xe6\x86\x8f\x5d\xdd\x73\xf4\x28\x5b\x24\xcc\xd9\x3e\x76\x85\xa9\xb8\x61\x50\x8b\x08\x81\x00\x05\x42\x07\x3c\x7c\xea\xa5\x74\x09\x56\xc7\x85\xc5\x7b\x10\x82\x45\xee\x81\x59\x46\x8b\x86\x8a\x82\x44\x9b\x9f\x26\x15\xb7\x9c\xee\xea\x7e\x70\x75\xa5\xdf\xcf\xa8\xa9\xb2\x87\x2f\xec\xad\x30\x12\x6e\x78\x34\xa0\xeb\xe1\xd5\x25\xce\xc1\x13\x5d\x79\xbd\x35\x49\xe9\xd3\x16\x39\x45\x7e\x14\xf4\xd5\xfd\xdc\x30\x4c\x12\xf0\xb4\xbf\x04\x29\x20\x56\x12\x44\x14\x14\xa1\x48\x93\x50\x85\x3c\x54\xfc\x31\xa9\x48\x0f\x3b\x5a\x10\xf5\x24\xe0\xf8\xd3\x4f\xef\xc4\xd3\x1f\xb9\x29\x89\xf9\x88\xdc\x7f\xd1\x1d\xc6\x0d\xbb\x1c\xc3\x44\xed\xda\x38\xfa\x3a\x20\xbc\x04\xc0\xca\xb8\x61\xe0\x20\x9c\x57\xf9\xc0\x39\xce\xf4\xf1\x60\x88\x80\xd0\xe3\x05\x8a\x58\x70\x1d\x79\x79\x74\xdd\xc8\xbd\xf7\x72\xc3\x80\xb0\x0f\x80\x55\x73\xc3\x10\x24\xf8\xda\xfe\x82\xd2\x14\x3d\x5a\x40\x20\x38\xc0\x31\x22\x50\xc2\xab\xa1\x01\x20\x08\x82\x14\x0a\x79\xa8\x44\xb8\x3d\x05\x5a\xe4\x7a\xb9\x02\xf5\x54\x21\xd7\xcb\x71\xe5\x97\x08\x9f\x3c\x1e\xec\xfe\xc7\xfc\x7f\x07\x3f\xce\x0d\xbb\x12\xc8\x3b\x3f\xd6\x93\x12\xd2\x3a\xfa\x0d\xb9\xea\xba\xe0\x7a\x8a\x1b\x16\xd6\xbf\x0b\x80\x39\x45\x99\xd1\xf0\x91\x52\x42\x80\x60\x25\x45\xe1\x7e\xd1\xbb\x7c\x79\xa8\x48\x6b\x9d\x1e\xa9\x5e\x6e\x41\x85\x85\x39\x7f\xe6\x7a\x8d\x3e\xf5\x33\x62\xa5\x4f\x31\xfe\xea\x73\xdc\xf0\xd5\xe7\x99\x13\x08\xcc\x1f\xbb\xc2\xda\xb8\xcb\x10\x0d\x39\xa2\x77\xf2\x53\x81\x0f\xb3\xd9\x6c\x10\xa9\x19\xc4\x4d\x50\x89\x4c\x6d\x4c\xe1\x44\x8f\x4b\xa9\xe1\x2c\x02\x7c\x66\x6d\x18\x9e\xd9\x30\xb0\x67\xe6\xcc\x3d\x03\x53\xac\x11\x88\xe1\x56\xf1\xdb\xde\x81\x06\x6b\x38\x3e\x89\x93\xa2\xd3\xca\xdb\x0b\xf8\xf6\xf2\xb4\xe8\x40\xc4\x40\x8d\xf0\xad\xa0\xa3\x2c\x35\x3a\x00\xc9\xa6\xda\xfb\xf6\xad\x6f\xb5\xdb\x5b\x6f\xdd\x77\xa4\xf6\x81\xda\xfb\xf6\xdd\xda\x26\x7e\x39\x5a\x4b\x32\x17\x2f\xea\xaa\x31\xa7\xd4\x74\x2d\x5a\x6c\x79\xc8\xb2\x64\x51\x77\x4d\x8a\xf0\x65\x49\xa6\x88\x0f\x01\xd8\x4a\x91\xf6\x91\x82\x7f\x0d\x94\x43\x02\xf4\x9a\x2f\xe4\x73\xb0\x00\x22\xc3\xe5\xc1\x10\x04\x81\x3a\xb9\x44\xa6\x32\xa1\xa0\x48\xbc\xe1\xfc\x71\xc3\xa4\xc3\x15\x23\xf8\x4e\xfb\xb9\x4d\x35\x35\x9b\xce\xb5\xbb\x3f\xc2\x18\x7e\x61\xbd\xd9\x5c\xd7\xc7\xbb\x3f\x22\xe5\xae\x8b\xdc\x30\xc9\xee\x3f\x3e\x6f\xde\xb1\xfe\x6c\x3c\x84\xc6\xf2\x9e\xc2\xc2\xf9\x95\x09\x28\xdc\xc7\x9c\x31\x7f\xb6\x83\xbb\x0c\x5a\x70\x0a\xf7\x21\xe3\x08\x50\xac\x94\x4a\x08\x94\xfd\x27\x9a\x26\x7a\x68\x4a\xa5\x6a\x69\xbc\xe4\xa7\x08\xeb\xb3\x35\xcc\xce\xfa\x31\xc2\x3a\x35\xfb\xea\x3a\xf7\x87\xce\xf2\xd9\xfb\x06\xa7\xd9\x22\x10\x23\x6c\x53\x06\xf7\xcf\x9e\xbd\x7f\x70\xaa\x35\x02\x2f\x62\x40\x74\x7a\x65\x4f\x49\x71\x77\xa5\x68\x75\xd2\x2b\x7b\x8a\x4b\x7a\x2a\xd3\x04\xda\x1e\x6c\xb8\xff\xd0\xe6\xf4\xdf\xae\xfc\x67\xa8\xa3\x7d\xf3\xa1\x13\xf5\xeb\xeb\xef\x3f\xb4\xb9\xc3\x21\x7c\x39\x59\x4f\xec\xcb\x07\x7b\xeb\x52\x52\xeb\x7a\x07\x97\xdb\x36\xd8\x96\x2f\xed\xad\x4f\x4d\xad\xeb\x5d\xba\xdc\x2e\xda\xa0\x0b\x00\x6c\x09\x37\x0c\xa1\x10\x23\xac\x2b\xd8\x13\x49\xf2\xe9\x69\xaf\x8b\x35\xce\xde\x09\xba\x24\xdd\xb8\xfe\xbf\x46\x60\x94\xea\xd1\xe2\x33\xfe\x64\xb7\xfb\xfd\x8b\x78\xba\xfb\xf1\xdb\x6a\x12\xcb\x3b\x73\xd1\x8a\x2f\xb8\x9e\xfd\xde\xd9\x3f\x35\x2d\x65\xca\xe2\xa2\x7f\x90\x29\xae\xb3\xdc\x30\xb1\x2d\x3c\xd1\x5f\xb6\xac\xb5\x32\xc2\xb5\x77\x12\xf9\x1c\xe3\x4b\xbb\x0a\x4b\xe7\x95\xc5\x89\xb6\x7d\xd9\xd8\x15\x36\x8f\xbb\x0c\xf9\x60\xe1\xd3\x6e\xcc\xf1\x10\xe2\x8b\xcb\x5f\x0b\x70\xe4\x66\xdb\xac\xe9\xa9\x71\x61\x29\x62\x82\x47\xb8\x8b\x6b\x3e\xaf\x57\xbd\x13\xa5\x86\xaa\x35\xdc\xb5\x98\x87\x47\x39\xd1\x87\xf2\x5a\x07\xad\x35\xf7\x6d\x9c\x3a\x75\xcb\xc3\x33\xe6\x0e\x6f\x9d\x42\x9e\x91\xa5\x54\xcf\x2b\xb4\x76\xd5\xa5\xa2\x73\xee\xa2\x74\x5b\x7f\x77\x53\x61\x7c\xe3\xb6\xb3\x8d\x6d\x97\xee\x9c\x45\x9f\xf6\xcb\x6a\x1a\x2c\xb6\xcd\x9b\x92\x89\x03\x45\xb3\xf2\x93\xe4\xe1\xa5\xdd\xdb\xe7\xcc\xd9\xd7\x6d\xcd\x5f\x72\xbc\x33\xbf\xa7\x32\x51\x93\xdb\x94\x9d\xdf\x98\x9b\x10\x2c\x37\x65\x95\x36\x2f\x28\x68\xdf\xdb\x96\x9e\xbb\xf8\x44\x6f\xf1\xbc\x8a\xf8\x48\x47\x23\xa0\xc0\xac\x6c\x93\x88\xf7\x22\xf9\xc9\x82\x96\xbf\x66\x68\x3d\xc6\xd0\xeb\x6a\x79\x42\xbb\x6c\x93\xdb\xf9\xb8\xdb\xc9\xb2\xb8\xd0\x1f\xbf\xe2\x42\x8f\x78\x6c\xf6\xf6\xb1\x2b\xac\x90\x1b\x86\x70\xc1\x6e\x30\x4a\x44\x49\xf0\xd2\xc6\x03\x76\xc2\x21\x3c\x5e\x19\xcf\x09\x14\x51\x78\x35\xb2\xc2\xa2\xf0\xea\x64\x05\xe3\x09\x29\xbd\xe5\x6c\xef\xfc\xb3\x6b\x4a\x91\x0c\x33\x34\x56\xf4\x95\x95\x2d\xac\x30\x10\xca\x0d\x8f\x1a\xba\x1f\xdd\x5c\x53\xbd\xf9\xb1\x6e\xfa\xee\xa8\xa1\x60\xc5\xac\x2c\xfb\xec\x15\x05\xf4\x5d\x40\x28\x03\x60\xeb\xc4\x58\x87\x92\x0f\x15\xee\x7d\xc2\x6d\x7b\x22\x1c\x02\x2c\xb5\x90\x76\x6c\x7a\xd1\x6d\x3d\xe6\xce\x7c\x09\x93\xd8\x96\x1f\xeb\xc5\x52\x2c\x40\xa8\x00\x60\x47\x44\xdd\xae\xe5\xa3\xfd\x39\x82\x80\x95\x8c\x8a\x2a\x94\x78\x78\x2c\x54\x1e\x2a\x97\x8b\x60\x40\x61\xa1\x7a\x4a\xf5\xd4\xa2\x50\x58\xe8\xfa\x45\xe7\xce\x3f\xfd\xd4\xd3\xcf\x9c\x1f\x5e\xf4\xd4\x31\xdc\xc6\x0c\x3f\xd6\xb3\x8a\xab\x4f\x72\xc3\x57\xdf\x65\x06\xcf\xdc\x8d\x00\x6c\x97\x68\xfb\x62\xf8\x28\x3f\x09\xa5\xc2\xe4\x14\x27\xce\xed\x4b\xb0\x8a\x06\x43\xfc\xdf\x42\x16\x63\xf6\xbb\xee\x66\x3c\xff\x8e\xfb\x19\xf7\xd3\xef\xe1\xa3\xee\xe6\x3f\xd0\x21\x92\xe3\x4a\x71\xc5\x92\x52\xd7\x25\xf2\x27\xf2\x3b\xcf\xfc\x79\x5e\x5d\x24\x83\x28\x3e\x5c\x42\xc5\x7b\x9f\x48\x82\xd0\xd0\x71\x12\x50\x3d\x45\x0b\x69\xc1\xea\xdf\xb9\x73\xe8\x19\xea\xce\x79\x83\xfc\x9e\xbc\x37\xba\xc8\xf5\x11\x89\xa1\x7b\x00\x61\x09\x00\xb3\x8b\x3a\x3e\x91\x37\xf8\x21\xa1\x4c\x8c\x1a\x82\xd7\x4a\x7b\x4c\x53\xb3\x97\xb4\xa1\x1e\x8e\x10\x6c\x93\x51\xf0\xc0\xd5\x58\x42\xbe\x1d\xcd\x23\xe4\xf7\xae\x2c\x7a\x37\xb9\xf7\xde\xdd\x6c\xc3\x91\x9d\x62\xac\xff\x61\xf7\xcb\xd4\x26\x59\xef\xf5\xe6\x29\x88\xe9\x5c\x40\x42\xc4\x98\xbd\x80\xba\x70\x82\x37\xaf\x97\x5b\x44\xb0\x65\x7b\xff\x7d\xf7\x52\xdc\xc1\x7d\xf6\xc3\x8a\x43\xd2\x8b\xc2\x5a\x3f\x1d\xdb\x48\xbf\x1a\x8f\xb5\x23\xe0\xa0\x60\xf0\xc1\x1b\x6b\x57\x58\x50\xff\xe9\x83\xa4\xf5\x41\x6e\xf8\x87\x37\xc4\xdf\xdd\xef\x7e\x99\xc6\x8e\xff\x2e\x00\x25\x40\xdb\x80\x20\x92\xe9\x82\x7e\x6c\x06\x24\x38\x21\x8a\x20\xd7\x59\x2d\x72\x3d\xee\xc7\x9d\xee\xc1\x3f\xfd\x49\xb2\xfe\xfb\xf2\x43\x92\xad\xe2\xef\x92\x93\xf4\xaf\x22\x8d\x23\xf9\xc9\x52\xf4\x58\xfe\x09\xa1\x7e\x8f\x95\x46\xd1\xfb\xa1\x46\x29\xde\x79\x06\xf9\x75\x98\x7f\xfa\xa5\xe0\x60\x72\x92\x06\x8c\xfe\x0b\x3f\x29\x2e\x06\x84\xbb\xc7\xe6\xb1\x34\xd1\xfb\xf9\x8f\x39\x0b\x4e\x10\xae\xb4\xd1\x05\x74\xff\xc1\x83\xe2\x1a\xee\x63\xcf\x52\x33\xf7\x0a\x50\x78\xd7\x13\x89\x08\x98\x90\x64\xf0\xc6\x1b\xc6\x0f\x39\xd1\x17\x55\xb8\x61\x54\xc8\xcd\xa3\x42\x6f\x1e\xa5\xba\x79\x94\xfa\xe6\x51\xe1\x37\x8f\x8a\xbc\x79\x54\xd2\x8d\xa3\x78\x3f\x61\xc7\x96\x00\xc0\xbc\xe6\xf1\xd7\xe3\xde\x4c\x8d\x9e\x5a\xa8\xf9\xc0\xf7\x1f\xb0\x67\xd1\xdf\xe3\x7f\xde\x33\x76\x85\xd9\x58\x2d\xa4\x40\x1e\x14\xf3\x05\x99\xc8\x49\xcc\x94\x00\x47\x2a\x81\x12\x24\x14\x07\x00\x41\xc2\xa1\xa4\x03\x08\x11\x83\xf4\x65\x55\x52\xf4\x3a\x8d\x25\x50\x9d\x96\x6a\xb7\xa6\xe6\xa5\xe5\xc5\x85\xc5\x27\x18\x65\xb2\x70\x93\xce\x60\x30\x4e\x88\xb5\x59\xae\x65\x1b\xbc\xe1\x10\x79\x98\x4a\xad\x8c\x17\xe3\x6e\xfa\x58\x89\x98\x0a\x1d\x0a\x08\xa4\x51\x25\x53\xe7\x58\x67\x6c\x6f\xb3\x96\x6d\x78\x72\xf1\xab\x71\x85\x73\x73\xec\x8d\xb9\xba\x4b\x98\xb3\xe8\xbe\xae\x59\x47\x06\x0b\xc3\x42\x5d\xdf\xdb\xe6\xd4\x64\x85\x9c\x39\xfe\x78\xa4\x6d\x8a\x32\x3f\x36\x2a\xc3\xa0\xca\x98\x3e\x54\xdc\xbc\xa5\x39\x79\x7a\x7a\xad\x5d\x13\x95\x92\x1f\x9b\xb3\xa4\x25\xcb\xdc\xb2\xb5\xc5\xed\x67\x5b\x69\x0e\xd9\x19\x95\x92\xa3\x7d\xaf\xb5\x27\xa1\x38\x3d\xca\xb3\xde\x73\x63\x57\x58\x91\x04\xc4\x1c\xfb\x71\x0f\x91\x83\x03\x91\x51\x9d\x96\x70\x4c\x86\xc0\xd1\xca\xc8\xeb\x8e\x20\x47\x2b\x9b\x3d\x03\x23\x81\x10\xa7\xe0\x57\x88\xb6\xa7\xac\x4a\xf4\x9d\x05\x58\x56\x02\xc2\x56\xe8\xea\x9b\x04\x88\x7c\xfd\x10\xc4\xbc\x2a\xb8\x46\xae\x48\x3e\x66\xc2\x49\x8f\x70\x5c\x3f\xa2\xb9\x99\xf7\x4b\x4c\xd4\xcb\x15\x71\xa2\xa9\x15\x6d\x96\xc1\x28\x15\xa0\xae\x37\x74\xaf\xf7\xc5\xea\xe5\x1e\x85\x6e\x65\x45\x59\x0b\xef\xeb\xe9\xbd\xcb\xe6\xf7\xf0\x88\xf5\x40\x67\xef\xd1\x85\x59\x23\x31\xc5\xfd\xf5\x69\xf5\xf9\xe9\xf2\xd0\x74\xbe\x3e\xad\xba\xaf\x44\x47\xe4\x4b\x5f\xd9\x37\xad\xb2\x64\xb5\x04\x5c\x2f\x15\x96\x4e\xd9\xfb\xda\xca\xba\x5d\x7d\x7c\xb8\x39\x2f\xce\x6d\x8c\xcb\x4b\x09\xcf\x5f\x78\x47\x9d\xa8\xeb\x76\x8d\x5d\x61\x16\x56\x0b\x26\xc8\xe1\xb3\x80\x71\xc8\x31\x91\x0d\x38\x84\x7e\x9f\xe5\x2d\x13\x23\xaf\xbe\x70\x3d\x42\xac\x36\x2a\x52\xad\x9c\xe4\x2f\xe1\xc0\x84\x26\xa9\x27\xea\x4a\xec\x16\x2f\x2b\x8c\x27\xc6\x7d\x16\x59\xd8\x77\xb2\x3a\x63\x6e\xa5\x19\xcf\x61\xc5\xaa\x23\x33\x56\x5f\x5c\xed\x74\xae\xbe\xb8\xba\xf5\xd8\x50\xe1\x39\x4c\x2c\x6d\xcb\x9a\x31\x54\x1e\x13\x53\x36\xb4\x41\xeb\xa8\x31\x97\x6f\xec\xc8\x69\xda\xff\xc2\xc2\xa4\x05\x97\xf7\x37\xe5\xcd\xdb\x3d\x25\xbd\xb1\xd0\x50\xb2\x68\x5b\x69\x52\xd9\xf6\x45\x25\x40\x44\x9b\x18\x25\xee\x6b\x22\x6c\xe3\x83\x65\xc8\x81\x4e\x4b\x18\x17\x38\x21\xfb\x1f\x29\x88\xc8\x38\xad\xcb\x84\x6d\xba\x96\xf6\xf7\xed\xdf\x0d\x43\x08\xc9\x1b\xdf\xce\x12\x2a\xee\xdf\xb5\x93\xe3\xd5\x01\x13\x46\x08\xfb\x67\x1c\xdf\x3f\x4f\x05\x86\x4a\x2d\xb7\xc8\x7d\x45\x00\xe3\xd9\x2a\xbb\xdc\xe0\x09\x14\x6e\xcf\x5b\x7c\xb4\xa3\x6d\x8f\x75\xe4\x61\x99\xed\x40\x67\xfb\x7d\x03\xce\x91\xd8\xb2\xfe\x9a\xd4\x6a\x67\x5a\x68\xdc\xaa\x96\xda\x45\x65\xb1\xc4\xb0\xf2\xb5\xbd\x53\x0a\x9c\x24\xfd\x47\x58\x52\x58\x3c\x6d\xdf\x2b\x4b\xeb\xee\x58\x98\xaf\x4a\x74\xe8\xf1\xbb\xc2\xe9\x7c\xdf\xae\x3a\x0f\x7f\xdf\x36\x76\x85\x95\xb0\x5a\x01\xd1\x01\xcf\xe7\x45\x46\x10\x31\xe7\xe9\xc9\x22\xb4\x49\xd1\x0b\x9d\xcb\x3c\x78\x55\xe2\x61\x5e\x9d\x16\xc1\x10\xaf\x35\xe9\x4c\x93\x55\xa1\xf2\x49\xfe\x10\x83\x31\x32\x59\x98\x89\xbb\x6e\xeb\x94\x3a\x81\xdf\x6c\x76\x75\x10\x15\x73\x2e\x3a\x6b\x0a\x25\x3b\x96\x3c\xbb\xb5\x7a\xda\xf6\xf3\xb3\x87\xce\x2d\x75\x8c\x5e\xa5\x96\xe6\x35\x55\x1d\x87\x2d\x8b\x23\x1b\xe6\x6f\xe9\xc9\xea\xac\xb7\x07\x90\x52\xaa\x2f\xee\x09\xab\xdd\xf1\xdc\xe2\xa4\x8d\xbf\xde\x55\xdd\xb0\xeb\xf9\xc5\x53\x2b\x37\xb4\x65\xd5\x17\x36\x25\x56\x65\xeb\xe9\xab\x89\x75\x83\x55\x41\xb6\xf9\xd3\x32\x01\xe1\x10\x00\x5b\x20\x31\x41\x38\xd8\xf9\xcc\x40\xa4\x24\x08\x91\x8a\xa5\x2f\x14\x09\xed\xe0\xc4\x52\x2a\x86\x88\xf9\x55\x52\x14\xa3\x89\x1e\xb8\x23\x57\xc4\xc7\xcb\xe5\x32\xc1\x53\x16\x80\x93\xd5\x4b\x77\xa9\xc1\xa0\x97\x48\x94\x4a\xc1\xb3\xc3\xe7\xdd\x6f\x61\x52\xde\xa2\x7b\x5a\x0b\xd7\x16\xaa\x12\xfb\x9c\x1b\x36\xe2\x31\xf7\x5c\x7a\x7a\x57\x75\xef\xbd\xf3\x6d\x2a\xf9\x5d\x41\x4a\xdc\xb0\xb9\x7a\xd7\xe8\x74\x0f\x2d\x77\xb8\x67\xb0\x68\x56\x0b\x89\x90\x0f\xbb\x3c\x2c\x14\x26\x43\x09\x58\x33\x09\x27\xd1\x21\xe3\x54\x4a\x42\x19\xab\x8c\x14\x0f\xe3\x8d\x87\xbd\x5a\x43\x0b\x12\x89\x47\x4d\x88\x1a\xc3\x93\xe8\x14\xc8\x2f\x0a\x4f\x01\xa9\x8e\xe4\xe3\x40\x58\x8f\x38\x0e\xfe\xe3\xb0\x66\xde\x3f\x31\xd1\x98\x18\xaf\x88\x13\x93\x79\xde\x05\xda\x2d\x72\x1f\xac\xb5\x7b\xd5\x81\xf5\x26\x3e\xf3\xca\xdc\x8e\x9c\x81\xa3\x5d\x9d\x07\xad\x7e\x0f\x15\xad\x7c\xa8\x3b\x69\xe1\xa2\x9e\xf8\xd6\xd8\xf2\xca\xca\xf8\xc2\xf9\x55\x09\xb6\x3b\xdb\x3a\x8e\x2e\xca\x1d\xd1\x95\xf5\xd7\xa4\xd5\xe4\xa5\x85\x86\xa6\x39\xab\x53\x6a\x17\x95\xe9\x3c\xbc\x57\x56\xb4\xec\xea\xfb\x0b\x1e\x58\x9a\xab\x30\x95\x5b\x17\x25\x3a\x62\x83\x0d\x15\x0b\x4b\x67\x3b\x0b\x7c\xbc\xa8\x4e\xca\xd6\xe3\x37\xb1\x59\x89\x6a\x0f\x37\x7a\xe2\x11\xc9\xa2\x4c\x56\x3c\x21\x17\xc0\x07\x56\x7a\xa4\x4c\x05\x8c\x39\xc7\x21\x6b\x99\xcf\xc3\x88\x14\x3d\xf3\x6b\xc2\xe9\xa9\x99\xcb\xc3\xea\xe6\x27\xe5\x0a\xbd\x32\x56\x04\x86\x36\x9b\x5d\xb4\x22\x7a\x79\xa6\x41\x1a\x2b\x11\x83\x00\xd8\x93\xfd\xf0\xfc\xe9\xdb\xdb\xad\x23\xeb\x96\x35\xef\x31\x8f\x8c\xd0\xbb\xa6\xcf\xc5\xf4\xde\xfb\xfa\x5c\x8d\xe4\xf4\xe6\x0d\xd8\x58\x3e\xfa\x95\x44\xdc\xd3\xd7\x00\xd8\x74\xee\x05\xf0\x03\x25\x98\xf9\x24\x5f\xe1\xd4\xb5\x7c\x79\xbe\x78\x37\xbe\xa0\x57\x9c\x5e\x8c\x97\x88\x14\x1f\x8f\x96\xe0\x84\x48\xfe\x6b\x24\x11\xdb\x46\x97\xe1\x80\x7b\x37\x36\xd9\xb3\xec\x59\x59\xf6\x2c\x3b\xcb\x1e\xed\x3e\x7a\x94\xfc\x80\x4f\xa7\xe4\xe7\xa7\x98\x73\x73\x3d\xfc\xf4\x86\xbb\x8a\x36\x71\x2f\x80\x1a\xf4\x60\xe5\x33\x02\x90\x50\x7f\x44\x42\x2a\x7d\xfb\xed\xf1\x22\x3d\x77\xe1\xf3\x2c\x2b\xb0\x3a\x4e\xaf\x2c\xb6\xfa\x3c\x2f\xaf\x41\xf0\x6d\xf6\xf5\x77\x83\x26\x12\xeb\xe8\xbb\xb7\xd3\xd1\x61\x0f\x94\x67\x5a\xd3\x83\x32\x67\x15\x1b\xdd\x07\xb1\xce\x96\x25\xbe\x6c\x2c\xfb\xea\xb3\xbd\x47\xfb\x1c\x52\xff\x43\x94\xa3\x18\xc9\xcf\xab\xa1\x47\xf1\x19\x73\x7e\xbe\xd9\x9c\x97\x07\x08\xc3\x00\x6c\xbe\x04\x60\x12\x94\x3c\x29\x86\x5f\xc6\x37\x4d\xee\x51\x8d\x84\xe4\xfb\x22\x31\x91\xbc\x5a\xc4\x55\xe2\xd7\xeb\xce\x34\x3f\xf1\x93\x51\x1a\xfc\x76\xeb\xa5\x4b\x2b\xb1\xe3\x23\x77\x25\xfe\xf0\x05\xfe\xb0\xd1\xbd\x4d\x02\xa3\xd3\x36\x60\xa7\x3b\xcf\x75\xbb\x68\x7b\xc4\xfd\x91\x00\xf8\x41\xfe\x35\x5e\x11\x49\xe2\xbc\x6e\x63\x22\xf9\x30\x00\x60\x08\xac\x6d\xe2\xe1\xe6\x27\xc7\xe3\x89\xd7\xf6\x6b\xc2\x1e\x49\xe0\xc7\xa3\x47\x8f\xb2\x67\xc5\xdf\x9a\x2d\xf8\xbf\xac\x16\x62\x61\xb1\x07\x5b\x4d\x92\x20\xa1\x10\xa3\x22\x84\x92\xca\x48\xcf\x57\xa9\xf7\x6b\xb3\x67\x88\xca\x13\xa9\x95\x49\x91\x0a\x5c\x2a\x61\xc4\x7b\x3b\x11\x32\x94\x4a\xf3\xab\x3c\xa7\x3d\xd2\xee\x3b\x29\xa6\x8a\x20\x16\x62\x05\x26\x56\xe8\xf5\x7e\xb2\x48\x13\xaa\x05\x46\x16\xff\x51\x89\xcc\x2c\x15\x2d\xfa\x04\xae\x46\xca\xe9\x16\x54\xef\xcf\xd0\xce\xab\x5a\xbe\x7e\x78\xad\x2e\x4d\x1b\x4a\x87\xb3\xf3\xb3\xf9\xe0\x61\x96\xdd\xed\xe0\x71\x69\x66\x3e\xee\xdd\x37\xfa\x0e\x4d\xda\x8a\xa1\x31\x89\xaa\xd1\x67\xa9\xa9\xa0\x14\x53\x0c\xa3\x27\x58\xb6\x4f\xfe\x12\x59\x2d\xa8\xa1\xe6\x89\x30\xf4\xca\x9f\xb0\x08\x85\x28\x66\x62\xf4\x6a\x82\xf0\xa9\x39\x64\x2c\xff\x66\xb1\x6c\xe6\x03\x01\x40\x0d\x6a\x45\xbc\x52\x2f\x86\xb6\xd4\x13\x84\xd0\x53\x40\x29\xdc\xef\xb4\xc0\x9c\x33\x1e\x29\xd4\xe6\xb7\xe4\xcc\xde\x99\x34\xc2\xb2\x8f\x4e\x9b\x8b\x69\xdd\xf7\x2e\x74\x35\x90\xd3\xe5\x9d\xce\xa8\xd9\xd5\xa3\xdf\xb3\x6c\x20\xb0\x6a\xec\x0a\x9b\xc2\x6a\x45\x1c\x16\xc3\x47\xf9\xa2\x27\x65\xe3\x7c\x5f\x82\xd5\x89\x89\x9e\xa2\x9c\xff\xa5\x8c\x71\x55\xf1\xba\x27\x96\x0c\x3e\xb9\xae\xd8\xf7\x77\xc4\x50\xb3\xb4\xa6\x7a\xb0\xc6\x60\xac\x19\xac\xa9\x59\x52\x63\x20\xc6\xa1\x57\xf6\x4d\x9f\xbe\xef\x95\x21\xd5\xd0\xcb\xfb\xa6\x4d\xdb\xf7\xf2\x50\xfd\x9e\x7e\x9e\xef\xdf\x53\xaf\xaa\xdb\xd3\x5f\x50\xd0\xbf\xc7\x6b\x43\x1f\x71\xb7\xb2\x7c\xf1\xde\x8c\xd0\x2e\x82\x41\x12\xa3\x19\x87\x87\x3e\x2c\xe1\x03\x0f\xf9\xd7\xd0\x9b\x80\x08\x0a\x50\x04\x09\xe2\xf1\xeb\x91\xe2\x84\x11\xcd\xbc\x5f\xfc\x4d\x18\x4f\x10\x14\xf5\x75\x18\x4f\x22\x95\x7b\xcb\x33\x58\x7e\xd6\xc2\xfb\xba\x3b\x0e\xda\x46\x4e\xf9\xd9\xee\xea\x12\x21\x9e\xbe\x62\xa0\xb6\x79\x65\x5c\xdc\x8a\x59\x35\x03\xe5\x7a\x0f\xbc\xe3\x73\x5d\xdf\x73\xef\x2e\x2b\x2a\xf3\xc1\xbb\xa9\x05\xae\x7f\xf3\x0d\x05\xfd\xbb\xeb\x7c\x36\xad\x95\x45\x89\x6b\x4b\x84\x55\x5e\xfc\x2b\x80\xa5\x18\x8d\x08\x96\x28\x13\xf1\xaf\x0c\x39\x9c\x70\x64\x1c\xff\xfa\x00\x6f\xd9\x35\xc4\x53\xe5\x33\x62\x31\x1e\x23\x36\x11\x5d\x5d\x37\xe2\x27\x71\x91\xdd\x22\xd7\xcb\xaf\xb3\x57\xb6\x6b\xe6\x2a\x7b\xe0\x44\x6f\xeb\x9d\x36\xd9\xc3\x23\xb6\xdd\x73\x7a\x8e\x0d\xe4\x8c\xe8\xcb\x17\xd5\x34\xaf\x30\x28\xd2\xf3\x2a\x4c\x35\x03\x15\x7a\x1f\x2c\x5a\xf0\xa3\x81\x10\x47\x9e\x68\x8a\x76\xf7\x17\xd4\xf3\x44\x15\x63\x31\x28\x0b\x17\xed\xae\x13\x54\x28\x00\x4b\x67\xb5\xa0\x80\x5e\xaf\x9c\x73\x88\x20\x9f\x24\xb8\xf1\xa2\x9c\x73\x88\xd4\xf7\xd5\x2b\xe7\xa1\x82\x66\x6b\xa1\x1e\x11\xf1\xa9\x1c\x15\x50\x9a\x5f\x25\x9e\x61\x78\xed\x44\x33\x1f\x4c\x20\x24\x38\x28\xd0\x5f\x06\x0a\xa2\xe0\x64\x61\x26\xcc\xd0\x10\x11\x7c\x78\x2d\x94\xda\x66\xa3\x83\x11\x59\x16\x53\x50\xb8\xad\xcd\xba\xe1\x98\xe1\xd2\xb0\x5f\xe1\x08\xab\xa5\x52\x7f\xc9\x85\x49\x01\xcb\xe6\xbb\x2a\x59\xf6\x99\xe6\x1e\x51\x2f\x9d\xf3\xfa\x64\x39\xff\x25\x06\x56\x36\x31\x06\x96\x9d\x95\x69\x49\x35\xff\x74\x0c\x6c\xdc\x5d\x50\x5e\x2b\x72\xf6\x90\x5b\x44\x73\x74\x6d\x84\xb3\xbb\x7a\xf6\x5d\x7d\xb9\xce\x81\xbb\x67\x77\x1e\x1d\xc8\x1b\x89\xe3\x5b\x1c\x39\xcd\x39\x9a\xc9\x39\x1d\xd5\x9d\x47\x16\x3a\x0a\x96\x1e\x6f\xed\x3f\xb3\x3c\x7f\x84\x59\xeb\x5a\x53\x87\xb6\x62\x8c\xce\x9a\x1c\x1f\xac\xb0\x55\x75\x15\x15\x0e\xce\xc8\xc8\x9c\xb5\xba\x4c\x5f\x94\xa9\x8d\x48\xce\x8e\xd1\x66\x24\x68\x83\x95\xf6\x9a\xee\xa2\xf2\x65\xd3\x52\x72\xda\xd6\x97\x38\x6a\xd3\xc2\x66\x78\x62\x28\x77\x8c\x5d\x61\x89\x1c\x0f\x31\xe0\xe0\x6d\xc1\x48\x30\x04\x29\x21\x95\x52\x94\x80\x64\x09\x13\xf3\x15\x02\xbe\x13\x55\x90\x6f\x69\x00\x10\x03\x31\x72\x65\xa2\x17\xdd\xa1\x98\x22\x0a\x9b\x98\x0a\x4e\x11\xac\xa0\x55\x27\x27\x9d\x78\x8f\xbb\x53\x9b\x55\x91\xa8\xe1\xf3\xac\xf2\x08\x75\x61\x6d\xa3\xa9\x7c\xed\x2c\xab\xfb\x2f\x18\xc5\xf1\xee\x1f\x77\xb9\x1e\xcf\x9f\x92\x1e\x26\xf5\x0f\x60\x1b\x83\x94\xc1\xb2\xc4\xe6\x9d\x9d\xa4\x7a\x17\x4a\x00\xe1\xf1\xb1\x2b\x2c\x86\x65\x83\x1a\x8a\x2f\x28\x90\x20\x7a\xe5\x3c\x94\x8a\x58\x53\x24\x3b\xf3\xba\x7a\xbc\xca\x7b\x90\xb1\xbc\x89\x81\x37\x01\xa6\xc4\x7b\x60\x4a\xbc\x97\xa7\xe5\x16\xb9\x8f\xab\x2d\x72\x3d\x5d\x68\x3b\x3e\x7f\xfa\xb6\x76\xeb\x48\x54\x56\x83\x75\xf1\xf6\xd8\x4b\x0f\xed\xaf\x6f\xb6\x0e\x3c\xb2\x92\x6c\x74\xad\x6e\x5a\x5a\x12\x35\xab\x96\xca\xae\xbe\x04\x08\xed\x00\xac\x8b\x65\x7b\x62\x21\x02\x69\x3c\xe1\xa6\xfc\xf1\x88\x9b\x42\x8c\x85\xa8\xed\xde\x98\xdb\x0c\x79\x28\xa6\x3e\xed\x2e\xdb\xe9\x2e\x7a\x06\xfd\x8b\x8a\x68\xda\xd5\x97\x04\x2b\x20\xd0\x3d\x0d\x80\x3d\xc8\xb2\x21\x14\x74\xbc\x26\x50\xe2\xc9\x61\x30\x24\x1e\xb0\xe3\x49\xee\x85\xc9\xc3\x14\x22\xbe\x52\xdb\x15\x16\x85\xf0\x0f\xd5\x53\xa3\x94\xea\xa9\x05\xa7\xa8\x22\x1f\x59\x7e\x26\x3a\x72\xc5\xfd\x9f\xec\x3d\x15\x15\xf9\xe0\xde\x4f\xee\xc7\xad\x77\xdf\x4d\x1e\x75\xd5\x3e\xfc\x30\x79\xf4\xea\x4b\xe4\xe0\x43\x0f\xb9\xe6\xb1\x6c\x10\x1c\x44\xc1\xa6\x66\xdf\x1c\x87\xcb\xff\xaf\x71\xb8\x3e\xd4\xfd\xc1\xdd\x87\x47\xde\x72\xff\xde\xfd\xfb\x77\xf0\x88\xbb\xef\x2d\x72\x0a\xf7\xb8\xfe\xe6\x7a\x5f\xd8\x54\xa2\x27\x6a\xcf\x5a\x8a\xdd\x55\x6c\x33\xcb\x86\x28\x88\xe3\x75\x11\x48\x3c\x4b\xf1\xad\x04\x67\x79\x10\x93\x2a\x3d\xce\x1a\xea\x59\x0e\x5a\xd0\x1b\x01\x15\x4c\x96\xc8\x35\x76\xb4\x90\xdc\x34\xac\xfc\xb5\xeb\x3d\x45\xce\xb4\x81\x8a\x40\xad\x36\xca\x4f\x23\x9d\x1c\x31\x59\x6a\xc8\x4f\xd7\xfb\x57\xba\x53\x7e\x8d\xeb\x37\xd2\xbc\xab\x31\x49\x73\xea\x6d\x94\x93\x90\x83\x84\x60\x52\xb6\x33\x6c\x37\x93\x7a\xee\xe3\x28\x00\xcb\x63\xd9\xff\x29\x86\x97\xff\x9f\x62\x78\x56\xd4\x59\x75\x4a\xdc\x41\xce\x8f\x76\x90\x2d\xae\x8d\x74\xe0\xe0\xc1\xad\x34\xfc\xae\x8d\x80\x58\xe4\xde\x4b\x3f\x95\xe4\x41\x92\x20\xf7\x3a\x4f\x2d\x19\x05\x46\x28\xeb\x00\x02\xc8\x11\xec\x10\xfb\x64\x1b\xbd\x4a\x96\x83\xba\xa4\x44\x79\xb8\x3c\x3c\x44\x22\x2c\x35\x85\xb3\x5a\x33\x0d\x46\x6b\x86\x4d\x2c\x8c\x13\x84\x43\xa9\x94\x48\xa4\x2a\x95\x5a\x94\x7d\xfa\xbb\x82\xf9\xd3\xf2\x12\xc3\x6e\xdf\xb9\xf3\xf6\x50\x43\xce\xb4\xbe\x12\x65\xf9\x74\xd3\x24\xec\x5f\xba\xb4\x1f\xc3\xd2\x1b\x9c\xee\xbd\x24\xa1\x78\x66\x4f\x9f\xf5\xd4\xee\x0d\xb8\xe7\xd6\x3d\x0f\x5b\xfb\x7a\x66\x16\x27\x90\x41\xc2\x77\xac\xc9\x7b\x78\xc5\x85\xd4\x94\x0b\xcb\x4f\x39\x57\x77\xf0\x44\x58\x1d\x89\x72\x2f\x21\xe7\xaf\xc5\x09\x3d\xf9\x98\x02\x5f\x9c\x10\xf5\x72\x0b\x39\xbf\x7f\xbf\x7b\x89\xd4\x29\xd2\x6c\x7c\x7d\x09\x82\x6f\xe7\x87\x8c\x7a\x32\x69\x54\x58\x17\x05\x06\xc2\x3a\x85\xa5\x35\x02\x80\x80\xca\x81\xab\x4b\x30\x6a\x63\x34\xd1\x61\x8a\x50\x79\x88\x44\xa6\x34\x71\x4e\x6a\xb5\x66\xda\xec\x06\x83\x68\xf9\xc5\xa2\x6e\x65\x98\xca\xa2\x14\x7c\x3c\x31\x1b\x51\x94\x37\x25\x5d\x29\xac\x28\xd0\x34\xad\x3c\xac\xa4\x6f\x5a\x8e\x21\x74\xdb\x8e\x1d\xdb\x92\x67\xdf\xd1\x7e\x95\xf0\x1d\xab\x9d\xa7\x96\x5f\x48\x49\xbd\xb0\xe2\xe1\xbc\x35\x1d\x3c\x19\xf4\xae\xf8\xe1\x3d\xb7\xee\xc1\x0d\xbb\x4f\xd5\x9f\xd8\x32\x83\x88\x32\x83\x7b\xd9\x3d\x34\x16\xe2\x21\x85\x37\xc5\x0b\xce\x8b\x22\x94\x80\xc7\x13\xf5\xdd\x31\xd0\x46\x2f\x6e\xa1\x50\x67\x48\x34\x5c\x57\x41\x6c\x34\x18\x04\x48\xa7\x34\xfa\x72\x11\x2a\x95\x5d\xb4\xe4\xf7\x24\xd7\xf7\x17\xa5\x36\xd4\x54\x25\xd8\x3b\xb3\xf4\x79\xc9\x11\x5b\x92\xeb\xfa\x8b\x52\xa6\xd6\x56\x19\x1d\x6d\x59\xfa\x3c\x73\x04\xf9\x4b\xe1\xaa\x39\x59\xa1\x71\x99\xb1\x66\x2b\x46\xa7\x17\x19\xe4\x85\x2b\x66\x5a\x15\x71\x99\xda\x34\x0b\x6a\xad\xa5\x06\x20\xf8\xad\x7b\x07\x79\x87\xd5\x01\x85\x60\xc8\xf1\xc4\x0f\x95\x3e\xb5\x59\x36\xce\x7c\x22\x18\x09\x15\x19\x16\x67\x8f\x9f\x26\xd5\xcd\x4f\xc4\xe9\xe5\xbe\x94\xad\x5e\x21\xfa\x0e\x56\xd1\x8f\x20\xfe\x23\x23\xbf\xca\xc9\x72\x64\x67\x3b\xb2\x72\x48\xc7\x68\x22\x37\x45\xf0\x61\xd2\x0a\x0a\x3c\x7c\x7f\xe7\x58\x00\xb3\x73\x06\x48\x87\x2a\xbe\x3c\x2a\x9c\x70\x34\x28\x80\x10\x81\xf3\x6f\x88\x13\x51\xe0\x18\xe5\x3a\x24\x28\x28\xc8\x46\x31\x58\xd4\x0c\x04\x48\x0d\x42\x82\x21\x56\x17\x19\x11\x38\x49\xc2\x41\x3a\xa6\x4f\x8c\x15\x79\xbb\x6f\x7c\x1d\x3a\x1a\x7a\x7d\xbc\x68\x9d\x37\x5e\x94\xdd\xbe\xb1\x62\xa4\x75\x4f\x6b\x7a\x7a\xeb\x9e\xd6\x91\xfa\x4d\xad\xd6\x9b\x23\x46\xfc\xd0\xdc\xc2\x49\x9f\x7d\x11\xda\x71\xc7\xf0\xdc\xa4\xb9\xe7\x76\x75\x84\x7e\xfc\xa7\x49\x25\xdd\x1b\x2a\xae\x8f\x1c\x09\x6b\x5a\x0c\xc0\xd6\x70\x97\xc1\x04\x4e\x3e\x07\x24\x52\x26\x95\xb0\x01\x19\x32\x7f\x3f\x42\x81\xd1\x36\x90\x4a\xbd\x4e\xa2\xa7\x93\x0b\x7c\xe9\x5e\x13\x98\x94\x71\x61\xf1\x72\x95\x5c\x1e\x16\x20\x8b\x36\xa1\x3a\x4c\x22\xd5\x49\x75\x56\x8b\x93\x5a\x8d\x7a\xab\x85\xde\x64\x84\x15\x3a\x25\xfe\x5a\x16\xad\x25\x1f\xe3\xd5\x1f\xab\x22\xe3\x55\x32\xd9\xc9\xa3\x7e\x45\xcb\xee\x6f\x6d\x3d\x34\x2f\xeb\x92\xb1\xa8\x31\xcd\xd2\xcc\xc7\xcb\x90\x27\x4b\x3e\x2e\xd9\x94\x76\xf0\xa0\x34\xab\xa2\x41\xfb\xf1\x21\xe4\xba\x8f\x2f\xce\xcd\xea\xbe\xa3\x31\xbf\xd9\x11\x69\xac\x58\x50\xe4\xbe\x7a\xc8\x83\xe9\x7a\xc6\xfe\xca\xf6\xb2\x2c\xd0\x83\x1d\xda\x79\x6d\xc4\xe4\xd0\x10\x46\x51\x17\x19\xec\xc7\x08\x8d\x95\x49\x28\x10\x5a\x19\x2e\x27\x58\xae\x97\x12\x28\xab\x1a\x8e\x11\xb9\xc5\x9b\xbf\xcf\x9f\x68\xc2\x22\x79\x05\x20\x50\x82\xb4\x63\xa2\x61\xe3\xfd\x33\x33\x92\x12\x54\x61\xb1\x4c\xa6\xf4\xd8\x36\x83\x51\x6a\x14\x1b\x5e\x6c\x76\xa3\x5d\x44\xad\x2a\xb5\x5d\x2d\x55\x09\x8e\xa8\x54\x2d\xc5\x89\x15\xd9\xb1\x41\x84\x9e\x70\x1e\x98\x3e\x7d\xbf\xb3\x77\xe3\x80\x21\x21\x39\x69\xc5\xc6\xa1\xdc\x5d\xf5\xf5\xbb\x73\x57\x6c\x5a\x93\x90\x9c\x10\xb7\x74\x93\xcb\x98\xd1\xb8\xbc\xa4\x64\x59\x63\x7a\x7a\xe3\xb2\x92\x92\xe5\x8d\x19\xd3\x32\x6c\xb6\xb4\x85\xb7\x0d\xe6\xdf\xd9\x30\xe3\x70\xc1\x9a\xdb\x56\x25\xa7\xa5\x9b\xd7\x6e\x5d\xcf\x1f\x9a\x5e\xbf\xc7\xb9\x7c\x2b\xd1\x54\x6e\xea\xc8\xc9\xe9\xd8\x54\x59\xb9\xa9\x23\x3b\xbb\x63\x93\xb8\x97\x3a\x00\x76\x5a\xac\x57\xb0\xf0\x69\x7e\x88\x32\x24\x14\x49\xbb\x14\xa9\x04\x19\x47\x59\x9b\x3f\x7a\x2b\xa4\xf3\xb8\x6a\xb5\x4a\x19\x26\x16\x44\x84\xca\xe5\x72\x71\x03\xd1\x82\x3a\xa5\x4e\xaa\x1c\x6f\xae\x10\xfe\x43\x0b\xe9\xc6\xc5\x6f\xba\x5b\xd0\xe9\x5e\x83\xb8\xd9\xbd\x7a\xc4\xbd\x09\xd7\xb8\x37\x61\xae\xbb\xe5\x4d\x1a\x40\x4e\xba\xd2\x56\x92\x07\x57\xb8\x2f\x61\xe9\x8a\x53\x2b\xc9\x6f\x80\xe0\x98\xfb\x5b\x72\x51\xd4\x8d\x52\xc1\x52\x09\xae\xaa\x4f\x06\xc5\x1c\x0f\xa9\x06\x90\x4a\x38\x06\x14\xa8\x9c\x93\x29\x4d\x28\xb7\xc8\xc5\x58\xc6\xd8\xc8\xc8\x88\xfb\x5b\xaa\x1e\xfd\x1b\x7d\x99\x7c\x27\xec\x6f\xa3\x5b\xce\x96\x72\x97\xa1\x02\xe6\x0a\xc8\xa9\xa9\x26\x81\x32\x14\x53\xb5\x3e\x91\x23\x1c\x92\x7e\x20\xc2\xe0\xb9\x3e\x5c\x58\xcc\x8d\xe7\x46\x93\x44\x5c\x18\x26\x11\xb7\xc7\x0b\xff\xec\x13\x76\x48\x84\x8b\xb6\x89\xfd\x4b\x37\x80\xc6\x78\x83\xc1\x28\x11\x63\xf5\x6a\x95\x4a\xf0\xfe\x32\x53\x08\x5b\xda\xde\x54\x52\x51\x76\xeb\x63\x7d\xed\x4f\xed\x9d\x39\x92\xdb\xba\x22\xb7\x74\xa0\x2e\xc9\x30\x6d\x73\xeb\xfc\x47\x56\x15\xb6\xce\x28\x2c\x2b\x5b\xff\x78\xdf\x92\x27\xd6\x95\x8c\x24\xd6\x0e\x56\x54\x2d\xae\x31\xc4\x36\x6c\xe9\x5c\xf8\xc8\xaa\x02\xd7\xc7\xe6\x86\xf8\xda\xba\xb8\x29\x5b\x3b\x93\xeb\xe3\xab\x67\x60\xc2\x8c\xad\x78\xae\x6d\x5b\x42\xda\xd6\xce\xa6\xad\x73\xd2\xcd\x5d\x27\x57\x90\xda\x05\x45\xd1\xda\xac\xda\xd4\xb4\x52\x47\x66\x74\x74\x49\xfb\x96\xb9\x73\xb6\x27\xa6\x6f\xed\x9c\x76\x5b\xab\xc5\xd1\x77\xac\x37\xbb\xa7\x2a\x59\xe7\xa8\x35\x67\x96\x3b\xd2\xa3\x34\xa5\xad\x9b\x1f\x98\x14\x1e\x14\xda\x59\x66\xad\xcc\xc9\x88\x0a\x9c\x1c\x14\xd6\x51\x96\x56\x91\x6b\x15\x65\x04\x63\xd8\x37\xf4\x21\xee\x45\x08\x10\x1c\x59\x3e\x4c\xec\xbd\x6c\x11\xc4\xb9\x18\xab\xe3\xe2\xe2\x62\x45\x5d\x38\x21\x92\x12\x3f\x31\xaa\x12\x63\xb7\xd9\xb2\xb2\x6c\x36\x3b\x9e\xf5\x7d\xe2\x5a\xcc\x79\x79\x66\x73\x6e\xae\xc9\xec\x74\x9a\x93\xf3\xf2\x80\xc2\xcc\xb1\x2f\xd8\x46\x56\x2b\xca\x61\x0d\xd4\xf2\x55\xbe\xda\x34\x7f\x5f\x6d\x9a\x4f\xb4\x18\x80\x84\x41\x07\x48\xa5\xb2\x16\x90\xc9\xca\xaa\x40\x22\xf1\x6b\x01\x3f\xbf\x12\xbf\x6a\x80\xca\x72\xde\x29\xc8\x1b\xe8\x41\x9f\x18\x1b\x9a\x18\x1b\x20\x98\xf7\x30\xc9\x84\x48\xba\x4a\xa9\xf7\x06\x8f\x95\x5e\x7c\x19\x7f\x83\xc4\x49\x33\x9d\x6c\x62\xa5\x3f\x9d\xb3\x71\x99\xb3\xb5\x30\x2e\xae\xb0\xd5\xb9\x6c\x53\x3f\x16\x95\x1b\x1c\x86\xd0\x50\x83\xc3\x50\x5e\x88\xae\x9f\x17\xaf\x38\x31\x77\xce\x89\x15\xc5\xc5\x2b\x4e\xcc\x99\x7b\x62\x45\x71\x63\x7c\x71\xdb\xb2\x6d\x55\x8b\x9f\xdf\x35\x65\xca\xae\xe7\x17\x2f\x7e\x61\xd7\x14\x7c\x6a\xe9\xf2\xe4\x9a\xf9\xf9\x8d\xce\x05\xb5\xc9\x2b\x06\xcb\x0a\x35\x96\xb2\x84\xa6\xc4\xd2\x4c\x4d\x61\x79\x47\xfb\x23\xb7\x56\x56\xdd\x7a\xa6\xbd\xed\xf4\xfa\x8a\x8a\xf5\xa7\xdb\x6a\x77\xad\xed\x2e\x4f\x68\x3a\xf8\xcb\xa1\xa1\xd7\xef\x6a\x6a\xba\xeb\x75\x20\x18\x45\x1e\xa3\xe7\xb9\xcb\x10\x0b\xa9\x70\xa1\x6a\x58\x2f\xf8\x9e\x61\x0a\x82\x24\x01\x39\x09\xf1\xe5\x5e\x26\x1c\x61\x9e\xdc\x8b\xaa\xbe\x89\x8f\x91\x21\x27\x65\x04\x38\x98\xeb\xb3\x63\x62\xdf\x88\x27\x9a\x2d\xa9\x8e\xf4\xcc\x17\xed\xcb\x56\xfd\xc4\x70\x31\xd2\x2a\x45\xc6\x01\xc7\x60\x60\xc2\x40\xb8\x61\x58\x73\x33\xaf\x8c\xd3\x03\x98\x12\xf5\xa9\x71\xa9\x10\x0b\xb1\x46\x7d\x5c\x9c\x9f\xc0\x21\x82\x18\x48\x3d\xb6\xd2\x62\xf5\xb8\x77\xc6\x09\x79\xad\x09\x69\x2d\x15\x9d\x14\x2c\xd1\x0c\x4c\x5b\xb6\xf1\x91\x23\x3b\xd1\x99\x5f\xd4\x80\xc7\xd0\xdc\xb0\xa4\xa4\x60\x41\x55\xd2\xa4\x20\xf7\xf6\xc8\x1c\x8b\x51\xb6\xa3\xae\x85\x27\x3f\x4f\xb6\x9a\x8a\x70\xd5\xbc\x81\xe5\x99\x05\xa5\xd6\xcc\x49\x96\x19\xce\x58\x7d\x49\x6f\xb1\xfb\xa5\xb4\x26\xf3\x6a\x79\x74\x5c\x68\x5f\x61\xba\x39\x5d\x7c\xb6\xce\x9b\xb0\x8c\xbe\x4d\xf7\x12\x23\x2e\x1d\x2b\x1f\x7b\x1f\xa5\xb8\x14\x0e\x8e\xbd\x0f\xa1\xe7\x01\x2f\x8e\xbd\x3f\x6c\x31\x9d\x47\xef\x07\x51\x1f\x3e\x8d\xcb\xe9\x55\xaa\x05\x0e\x9c\x9e\xbc\xa6\x4a\x40\x62\xd0\x73\x63\x7a\x36\x92\x57\x7a\xb2\x88\x37\x1c\x6f\xbe\x30\x9e\x76\x15\xd4\x21\xbd\x3a\xe2\x5a\x4d\x9d\xb8\x1c\x65\xc7\x00\x80\x41\xe3\xd8\x17\x6c\x3d\xab\x01\x05\x18\xc1\x0e\x3c\x54\xf3\x15\x99\x28\x95\x61\xa5\x04\x99\x94\x48\x19\x19\x00\x0e\xfc\x64\x9c\x5f\x07\xc8\xfc\x51\xca\x64\xd2\xb6\x9f\x8c\xf5\x24\x24\xf0\xce\xec\xac\x04\x7b\x82\x7d\xb2\x4e\x99\x90\x90\x10\x17\x30\x1e\xe4\xbe\xc6\xc3\xf6\x1b\x78\x9c\x53\xea\xe5\x9e\xf3\x12\xa9\x42\x6f\x34\x5a\x6c\x36\x6b\xa6\x41\xaf\x6f\x9c\xb2\xeb\x85\xc5\x13\x59\xb7\xf1\x46\xf6\xc6\xda\x05\x6f\xd8\x9b\xf2\x63\x4b\x0b\xef\xec\x5f\xb1\x76\x79\x5a\x69\x6e\x45\x2f\x89\x1a\x7a\xfd\x50\x63\xe3\xa1\xd7\x87\x86\x5e\x3f\xd8\xd4\x74\xf0\xf5\xa1\xf6\xd3\xeb\x2b\x2b\xd7\x9f\x6e\x6f\x3f\xb3\xae\xa2\x62\xdd\x99\xbb\x5c\x64\xf5\xe4\xb4\xf2\xb4\xac\x5a\x95\xfb\x23\x57\x1b\xa6\x24\xd9\x93\x05\x6a\x22\xa7\xa3\xaf\x5d\xeb\x4d\xf3\x20\x84\xf1\x7c\xb9\xd8\x1e\xf7\x9a\xcb\x46\x5e\xe5\x74\xbb\x44\x5d\x34\x8f\x3e\x47\xdb\xb9\xcb\x22\xcd\x26\xc4\xbe\xbc\x3d\xa9\x40\x48\xbe\x40\x8f\x04\x0f\x9c\xfc\x7f\x90\x00\xe7\x25\x96\xcc\xce\xb4\xb4\x14\x27\x24\x14\xb7\x58\x32\x67\x97\x24\xae\x51\xea\xd3\x22\x23\x53\xf4\x0a\x85\x3e\x25\x32\x32\x4d\xaf\x64\xcf\x59\xe7\x96\x25\x26\x96\xcd\xb5\x5a\xe7\x94\x24\x24\x94\xcc\xb6\x45\xa6\x0a\x67\x53\x23\xa3\xd2\xe3\xc2\xc2\xe2\xd2\xc5\x3c\x30\x20\x4b\x63\xff\x80\x00\x08\x06\x13\x9f\x30\xb1\xf7\x10\x88\x94\x23\x02\x08\x92\x34\x7b\xea\xb7\x7d\x2d\xe0\x32\x59\xd4\x75\x6d\x88\xc2\x4a\xc9\x8b\xb8\xc0\xbd\xff\x21\xf7\x3a\xbc\xf5\x21\x2c\x18\x7d\x9a\x16\xd1\xc6\x43\xee\x76\x3c\x72\x08\xef\xb9\x1a\xe4\xc9\xb5\xe7\x92\xbb\xe9\x03\xdc\x53\xa0\x81\x03\x17\x3c\xed\x6b\x1e\xd6\x8c\x18\xef\x62\x63\x02\x6b\xcd\xf6\x35\x88\x5d\xcb\xc0\xff\xa7\x11\xc5\xe3\x09\xf9\xff\x36\xc7\x7f\xbb\xbc\xb9\xb9\xf9\xc9\x88\xb8\x50\xa3\xb7\x14\xd5\x8a\x1e\x56\x8a\x95\x48\xaf\x6b\x3a\x93\xea\xe8\x03\xae\x53\xa8\x2d\xc8\x2a\xcc\xae\x2c\xc3\x23\x49\xb5\x8b\x4a\x0a\xe7\x57\x26\x44\x5a\xca\x4c\xe7\x70\x17\xb9\x7b\x21\x06\xe7\x36\xea\xd3\xf3\xaa\xb2\x6d\xad\x65\x89\x3a\x67\xa3\x3d\xa1\xac\xa4\xcc\xb8\x47\xf4\x7f\xc8\x2e\x7a\x1f\x77\x09\x52\x61\xd9\x85\xc9\x62\x6b\x5c\xd5\x70\x72\x7d\x13\x9f\x7c\x53\x87\x9c\x04\x98\x84\xcd\x1d\xbf\xf7\x2a\x90\x4a\x3d\x22\x23\xad\x8e\xe4\x93\xfe\x63\x43\xdd\x0d\x97\x61\x75\x33\x1f\x10\x17\x1b\x66\x8e\x0b\x8d\xd3\x8a\x9b\x65\xc9\xb8\x79\x55\x12\xe9\x35\x50\x20\x76\x83\xd9\x8c\x82\x0c\x91\xa0\x69\xa5\xd5\x85\x45\x8e\x4a\xbc\xd7\x5c\xd3\x9b\xcb\x2f\xac\x35\x95\x15\x1c\x48\x9d\x3a\xc0\x3b\x16\x4c\xb5\x1c\xc1\xba\x82\xe2\x6a\x6c\x2c\x9f\xc6\xba\xb2\x2d\xe6\xec\xb4\x64\xcb\x14\x47\x4c\xb4\x63\x9a\x3d\x6b\x66\x78\xd2\x1d\x59\x33\xb2\x63\x22\x1d\x4d\x79\x29\x39\xb9\x96\xfc\x4c\x61\xed\x87\xd9\xb3\x34\xe3\xfa\xfa\x8a\x6b\x85\x25\xe3\xf5\x15\xde\x43\x4e\xb8\x56\x5f\x71\xdd\xa8\x90\x9b\x47\x85\xde\x3c\x4a\x75\xf3\x28\xf5\xcd\xa3\xc2\x6f\x1e\x15\x79\xf3\xa8\xa4\x1b\x47\xf1\x7e\x20\x96\xf0\x20\xfe\x44\x7d\x85\x05\xf5\x64\xca\x87\xee\x7f\xee\xe0\x5e\x71\x7f\x27\xea\xdf\x9f\xb9\x5b\x59\x08\xcb\x06\x15\xcc\xe6\x03\xfc\x10\x50\x11\x24\xba\x4b\x9e\xdf\x9f\x2c\xe1\x88\x88\xc0\x01\x7c\xcd\xe8\xc0\x58\x01\xab\x8e\xe4\xa3\x7c\xa7\xc4\x83\xde\x26\xa7\x12\xef\xe9\x66\x3e\x08\x00\x54\xa0\x0a\xd5\xcb\x15\xf1\x62\x49\xfb\xc4\x38\x93\x98\x69\x36\xca\xf5\x72\x1c\xd2\xe6\x34\xa4\x2d\x58\x1b\x7d\xe9\x41\xbf\xe4\x5b\x67\xee\x9d\x32\xc2\xb2\x5d\x7b\x3b\xd7\x57\x46\x4d\x29\xa3\x31\x57\x5f\x5a\x5a\x50\x56\xe1\x36\x71\xef\x7a\x7c\xbb\x37\x00\xe8\x6f\xc4\x7a\x4b\x41\x2b\x79\xfb\x76\x73\x7d\x21\x22\x4f\x79\x6b\x82\x8e\xc9\x54\x26\x9d\x7c\xbc\xc0\x43\x27\xa7\xaa\xc6\x65\x4f\xde\x52\x50\x70\xcb\x93\xcb\x50\x4e\x64\xa5\x6b\xce\x74\x77\x9d\x5e\x5b\xf6\x63\xbd\xb0\xef\xdf\x93\x05\xe4\x4f\xb4\x02\x02\xc4\x5a\x1c\xc1\xf4\x34\x7a\x67\x06\xac\x8b\x8b\x15\xa9\x36\x11\x6a\x7d\x2f\xf8\x9d\x82\xff\x49\xfe\x90\xc6\xf3\x69\xa9\xf9\xf9\x9e\xd8\xc1\xeb\xee\x1a\x4a\x01\x40\x09\x06\x5e\xef\x4d\x66\x50\xe1\x8f\xb0\x13\x30\x0b\x00\x2a\xc4\xca\x37\x25\x28\xe5\x93\xc5\x5b\x14\x5b\xe1\x24\x52\xa3\x0f\xe3\xda\xc9\xb2\x49\xd1\x76\x53\xc4\x91\x3d\xd2\xd8\x5c\x73\x64\x58\x62\x6e\x42\x4c\x26\x37\x39\x21\xcf\xd4\x36\x80\x0b\x02\x26\xc7\x47\x86\xc7\x2a\x27\xd1\x2d\x9e\xdf\xdb\x40\xee\x22\xdf\x71\x67\x41\x02\xa1\x7c\xf0\xb5\xde\xdc\x79\x62\x67\x2e\xea\xe5\x52\x6b\xbc\x85\x7c\x77\xef\xdb\xd8\x1e\x4a\xee\x22\xcd\x8e\xf5\x43\x1e\x9c\x19\x42\x1e\xa5\x3f\xe3\x2e\x8b\x79\x8d\x28\x3e\x1c\x88\x60\x45\xe7\x8e\xab\x78\x3a\x9e\xd4\xf8\x5f\x9e\xbb\x80\x21\x69\xcd\xb7\xd4\xd5\xad\x6b\x4e\x4d\x6d\xba\xa5\xae\x7e\x5d\x73\xda\x09\x95\xb9\x38\x25\xb9\x28\x59\xad\x36\x17\x99\xcd\x45\x66\x15\x1b\xaa\x58\xdd\x9c\x91\xd1\xbc\xba\x62\xa8\xdc\xf3\xa1\x3c\xa9\x2c\x53\xa3\xc9\x2c\x4b\x1a\x4a\x2c\xb3\x6a\x34\xd6\xb2\x44\x01\x37\xfc\x1d\x0e\x51\x37\xbd\x40\x8c\x38\x34\xd6\x25\x28\x0c\x1c\x82\x67\xc0\xf3\xbc\xbe\x34\x00\xb6\x93\x7b\x02\x52\xf1\xe7\xee\xef\xc9\xd7\x8e\xc3\x60\xc0\x65\xdf\xc9\x30\x18\x2f\x63\x21\x80\xe3\x30\xc8\x05\x74\x41\xbe\xf6\xa0\x8b\x61\x99\xa7\x37\x0d\xe2\x00\xd8\x01\xee\x51\x62\xc0\x65\x97\x64\xe2\xd5\x57\xc8\x17\x8e\xc3\x18\x8c\x07\xb0\x6e\xfc\x3a\x71\xb8\x00\x4a\xc8\x17\xde\xeb\xe2\x01\xd8\x59\xee\xa2\x70\x9d\x43\x0a\xa9\x78\x19\x3b\x84\xd1\x18\x8c\x2f\x8c\x05\x92\xcf\x7c\xd7\x49\x85\xeb\x28\x5e\x24\x9f\x89\x60\x86\xc0\x2f\xdd\x2b\x18\xb0\x1a\xb1\x5f\xac\xcb\x23\x9a\xf1\x12\xa4\x1c\x72\x74\x62\x7d\x8a\xb7\x4a\x49\xd8\x8e\x59\xbe\xe4\x44\xec\x4d\xe3\x84\x09\x49\xeb\xf8\x70\xae\xfa\x27\x1b\xba\x82\xa8\xf8\xb8\x06\x4f\x12\xc6\x72\xad\xae\xc9\xee\xa4\xd6\x89\x0d\x5d\xe4\x4d\xf4\xd3\xe4\xa4\xc7\x14\xda\xf5\x4b\xfb\x4c\x0d\xf9\x86\x11\xcc\xef\xdf\xdf\xd8\x76\xd7\x3c\x7b\x6a\x45\x8b\x39\x5a\x1b\x4c\x35\xd9\x0e\x47\xb6\xf0\x26\xc7\xca\x66\x95\x17\x99\xf5\x55\x53\x66\x5a\x6e\x68\xe8\x5a\xbf\xb8\xc3\x14\x9d\x61\xcd\x35\x62\x4e\x5a\x41\x41\x5a\x8a\xc0\xfd\x04\xb4\x5e\x9f\x36\x18\x42\x21\x87\xcf\x0a\x15\x9c\xbe\x4a\xe0\x40\x22\xe3\x24\x6d\x20\x03\x01\x6f\x4d\xec\xd9\x90\x4a\xc5\xc7\xca\x8c\x37\x10\x08\xb6\xda\x4f\x16\x6d\xd2\xe9\xa8\x8e\xea\x05\x8b\xad\x10\xdf\x68\xa1\xec\xb4\xeb\x4b\x74\xbf\xba\xfa\x25\x92\x46\x8a\xdd\xe7\x08\xa6\xb8\x7f\x87\xd8\x35\xfa\x8f\x1f\x08\xb6\xb9\xef\xe3\x86\x0f\xb9\x13\x0f\xba\xbe\xc4\x15\xe4\x79\x8f\x8e\xb8\x00\xbf\x62\xd9\xac\x03\x02\x40\xf2\x98\x1f\xc5\x34\x93\x02\xd1\x8e\xa8\x46\x94\x22\x5e\xc0\x4a\xf7\xc8\x72\x2c\xc7\x8a\xe5\xee\x8b\x58\xb5\xdc\xfd\xb8\xfb\x02\x56\x60\x03\xd6\xae\x76\x9f\xc7\xba\xd5\xee\x47\xdd\xe7\x56\x63\x83\xfb\x9c\xa7\x37\xa9\x6c\xec\x04\xdb\xc1\x5d\x81\x78\xc8\x84\x22\x70\xf2\x39\xd1\xc8\x88\x23\x2b\x29\x51\x1b\x28\xe1\x98\xbf\xe8\x10\x78\x54\x2f\xa5\x4e\x4f\xb5\x8e\xa7\x0f\xef\x5a\xb5\x94\xd9\xac\x30\x2b\x0c\x62\x16\x2d\x88\xf3\x14\x4a\x29\x52\xa8\x55\x2c\xb6\x56\xa9\xed\x16\xaa\xa1\x6a\x4e\xa5\x52\x8b\x4d\xfc\x41\x4c\xaa\x33\x18\x8c\x62\x23\xbf\x93\xd9\x59\xb3\xb7\xa4\xbd\xe5\x0e\x47\xef\x1d\x47\x63\x33\x74\x21\xde\xaa\xf6\xee\x7b\x73\x3a\xee\x38\x16\x95\x18\x19\x88\xa3\xcf\xa2\x3a\x1a\xbf\x8d\x5f\x54\xeb\xad\x6d\x27\xdb\x30\x58\xe1\x56\xc6\x77\x16\xde\x58\xde\x9e\x36\x8c\x41\xe9\x03\x2b\xd6\xe6\x79\x4b\xdc\x4b\x72\x1e\x72\x7f\x93\x3a\x6f\xd1\x60\xd6\x03\x25\x77\x97\xd2\x2a\x6b\x81\xa7\xce\x3d\xfb\x56\xe7\xe8\xf3\x89\xa9\xd7\xea\xdc\x1f\x02\x60\x73\xb8\x61\x08\x81\x68\xc8\xe4\xd3\x05\xe1\xe4\x18\x70\x82\x9b\x88\x84\x61\x87\x44\x6c\x09\xf1\x75\xe1\x00\xc8\xa3\xe5\x51\x61\xa1\x10\x02\x21\xf2\x04\x9d\x4c\x60\x53\xb9\xce\x07\x11\x05\x30\xa6\x90\xeb\x7c\x08\x11\xdb\x50\x39\x74\x61\x6d\x41\xc1\xda\x0b\x43\xee\x2f\x46\x46\x50\x59\xbb\xa4\x2a\x2e\xae\x72\xb0\x96\x1b\x76\xbf\x97\xbf\xf8\x9e\xd9\xb3\xef\x59\x9c\xef\xfe\x05\x37\xec\x2e\x72\xfd\xc9\x5c\xd5\x6e\xb5\x75\xd4\x98\x01\xe1\xd4\xd8\x17\xac\x5a\xa2\x82\x22\x68\xe0\xfd\xf5\x48\x59\xac\xe0\xbb\x56\x7a\x2c\x69\x18\x20\x30\x8a\xcc\xf3\x04\x1a\xe2\xab\x06\x98\x3c\x7e\x58\xac\x07\xf0\x96\xae\x94\x10\x01\x86\x14\xe4\x27\x1a\x35\x51\xf1\x21\x9c\xa0\x9a\xf5\xf2\x09\x98\x4a\x19\xa6\x61\xca\x1b\x6b\x58\x32\x53\x98\x35\xd3\xc9\xac\xde\x34\x28\xb6\x5d\xcc\x99\xb7\x7b\x7a\xd5\x86\xf6\xac\x84\x34\xa3\xb9\xb8\xbe\xd8\x6c\x99\xb5\xae\x3a\xb1\xa9\xa1\x38\x2c\x29\xd4\x9a\x5f\x12\x9b\x5a\x9c\xac\x14\x8e\xa7\x84\xc5\xc4\xc5\x84\x69\xd2\xf3\xb5\x1d\xcb\x91\xe5\x0f\x0c\xaf\xc8\x4f\x9c\xb6\x6e\x46\xdd\x82\x69\x35\x19\x29\x95\xa5\xa5\x53\x3a\x0b\xa6\xdf\x32\x2d\x29\x40\x11\x11\x72\x77\x40\xa4\x3a\x38\x32\x8d\x37\xa4\xd6\x94\x94\x4d\xed\x29\x36\x16\xe6\xd8\x73\xf2\x0d\x19\x55\x96\x88\xfb\xef\x16\xf8\xd3\x34\x76\x85\x9d\x12\xf3\x70\xe5\xd0\x08\xf3\xf9\x1e\x1d\x52\xae\xda\x46\x64\x52\x3b\x25\x20\xa3\x95\xc0\x28\xa1\x8c\x0c\xf8\x23\x99\x84\x52\x19\x91\x76\x04\xf9\x11\x4a\xb9\x16\x09\x72\x5c\x59\x55\x70\x00\x91\xc9\xa0\x05\x03\x89\xa7\x5b\xbb\x22\x2f\x17\xa1\xae\xa6\xa2\xb1\xb2\xb1\xa8\x30\xb7\x3c\xaf\x3c\x23\xcd\x94\x14\xaf\x8f\x89\x0e\x9f\xac\x0a\x93\x07\xfb\x49\x21\x07\x73\x42\xc4\xba\xab\x6b\x35\x94\x82\xa3\x29\x42\x36\x6f\x24\x59\xe5\x4b\x11\x2b\x75\xca\x09\x69\x30\x4f\x17\xbc\x4e\x20\x18\x66\xd8\xec\xd4\x17\xbc\xa1\xeb\x7b\xf6\xa5\x28\x2c\x85\xf5\x69\x65\x0b\x2b\x8d\xbf\x79\x31\xdf\x59\x9c\x5f\xfb\x98\x79\xea\xb2\xf2\xa9\x6b\x8d\xa6\xe5\x95\x0d\xab\xa7\x99\xdc\xd2\xc8\x9c\x59\x85\x86\x9c\x54\x43\x48\x4a\x60\x4a\xc9\xec\xd9\xe6\x82\x24\x25\x62\x45\x58\x42\xb6\xeb\x9b\xf8\xea\x28\xcc\xb3\x4e\xcb\x8e\x51\xc4\xdb\xc3\xaa\xca\xa2\xad\x09\x93\x93\xeb\x16\x97\x3c\x70\x71\x5f\x75\xcb\xd4\x2a\x59\xc9\xa2\x3a\x93\xcd\x6a\xc9\xb2\xb6\xdd\x3e\xed\xf3\x19\x85\xbd\xe5\xc6\x20\xe5\xe4\x80\xad\xfe\xd1\x11\x0a\xfa\xaa\xb1\xb0\x29\xad\x64\xbd\xbe\xc0\x12\x33\xfa\x4b\x53\x34\xc6\xeb\x73\x6a\x4c\x31\xf6\xc4\xc9\x40\xa0\x62\xec\x0a\x4b\xe2\xfe\x0e\xf1\x90\x07\xe9\x7c\x8a\x4a\x4c\xb9\xc5\xc7\xe9\xb5\x31\x51\x91\x11\xe1\x7e\x58\x0e\x08\x84\x22\xe9\x98\xd0\x57\xe1\xb0\xa7\x9a\x13\x12\x04\xe3\x8e\xaa\x50\xe5\xc4\x3e\x77\x81\x2c\x06\x83\x91\x33\xda\x0d\x06\xa3\x5d\xa5\x52\xdb\xd5\x34\xd3\x60\x4d\xa1\x13\x3b\xdc\xad\xb4\xa6\x77\xa8\x6a\xcb\x93\x7d\x0b\x2f\x6c\x2c\xaf\xd8\xf8\xd8\xbc\xa6\xbb\x1c\xea\x99\x4e\xf7\x77\x15\x5f\x27\x36\xa6\x38\xea\x77\xe5\x7f\x52\x71\x0e\xe5\x8e\xfa\x1e\x67\xc9\x40\x5d\x52\x52\xdd\x60\x65\xf9\x60\x43\x32\x27\x59\xe6\x7e\xf2\x57\xce\x6d\xef\xdd\xd5\x50\xb5\xe9\xd1\xee\xc1\x9f\x6d\xa9\x28\xce\xea\x7f\x28\xff\x50\xc7\xed\x91\x89\x21\xf7\xa9\x2a\x2c\x9b\x3a\x47\x47\x03\x27\x07\x46\x5a\x8c\x6a\x47\xfb\x86\x0a\xe7\xca\xb9\x39\xfc\xe0\x09\xf1\xc1\x06\x30\x08\xe7\x59\x33\x7b\x5c\x8c\xd3\x8b\x9d\x7e\xbe\x4a\x36\x40\xb1\x7c\xa5\x0d\x18\xc7\xb1\x46\x6f\x6b\x31\xe3\xea\xe2\xe2\xe2\xf4\xbe\x36\x0b\xeb\x75\xc5\x3d\x13\xed\x0d\x6b\x1e\x8d\xa0\x9f\xb8\x8e\xfb\xc2\x51\x64\xfc\x43\xd3\x45\x74\x98\x9d\x4e\xb3\x39\x37\x77\xd4\x7d\x2d\x36\xb5\x6a\x6c\x25\x9b\xc2\x46\x20\x1a\x92\xc0\x26\xe8\xda\x00\x19\x61\x90\x9a\x12\xab\x63\x1c\x8b\x50\x13\xe2\xd5\xb5\x4b\x80\x12\x3a\xe8\xeb\x9d\x2b\x9b\xf8\x4c\x86\x24\x93\x22\xf1\xc6\xec\xbd\x54\xa5\xf2\x6e\x84\xa0\x7a\xed\x06\x83\xd5\x12\xe6\xd3\xb6\x44\xa9\xcb\x14\xb4\xad\x48\x7b\xb1\x3e\xc3\xd1\x65\xae\x58\xdd\x35\xa7\x4b\xf8\x6c\x9b\x6b\xaa\x5c\xdd\xd5\x31\x7f\x24\x2d\x0d\x67\x44\x17\x18\xc4\x12\x8d\xee\x64\xb3\xfb\x8c\xbd\xb8\x7a\xd0\x57\xae\xa1\x0c\xdb\xf7\x7a\xd5\xe7\xbb\xc5\x8a\x0d\x85\xfc\xe0\xeb\x15\x5f\xed\x6b\xb9\xd7\x41\x9e\x08\x96\x17\xf4\xef\xa9\x9b\x7e\xc8\xe1\xaa\x8b\xe0\xfb\xf7\xd4\x5f\xab\xdb\x90\xa8\xc4\xba\x8d\x6c\xde\x1e\x88\x8c\x4e\xa8\xdb\x00\x42\xc9\x92\xff\x5c\x92\xf1\xd3\xf5\x18\xf2\xff\x58\x8f\x61\x5b\x70\x4f\x77\xe7\xe1\xac\x91\x11\xfb\xa1\xce\xde\x23\xf3\x6d\x62\xc9\x66\xcb\x9a\x78\xc3\xaa\x39\xd5\xfd\xa5\xb1\x9e\x72\x8c\x02\xa7\xeb\x5f\xd2\x27\x5c\x8f\xf3\xc5\xe3\xf5\x18\x85\xae\x1f\x0b\xa6\x5c\xab\xc7\x98\x0c\xc0\x7e\xc6\x0d\x83\x02\xd4\x60\xe3\x2d\x32\x09\x81\x00\x8e\xa0\xbf\xe0\x79\xfb\x03\x25\xfe\xb4\xcd\x0f\xa5\x52\x4f\x13\x5f\x1e\xa9\xbe\xe1\x29\x6c\x93\x64\xd1\xe3\x8f\x13\x91\xeb\xe5\x7a\xab\xc5\xd3\x22\x28\x3e\x69\x22\x77\xfd\xfa\x73\xae\xd3\x67\x97\x2c\x39\x4b\xa6\x9f\x1b\x1d\x25\xd3\x5d\xa7\xd9\xae\x5d\xa3\x40\x8e\xb9\xe6\x32\xd8\x85\x3a\xf7\x07\xa8\x73\xdd\xf1\xfc\x78\xdd\x95\x98\xcf\x14\x7b\x11\x7f\xaa\x16\xee\xbf\x57\x56\xf9\x6a\xde\x80\xc0\xfa\xb1\x2f\xc5\x9e\x39\x0a\xe1\x50\xe7\xf1\xaa\x22\x80\x21\x87\x8c\x1b\xf0\xb4\xf2\x89\xc4\x1f\xaf\x22\xd3\xdc\x70\x52\xb4\x1e\xd7\xaa\x1b\x9a\x79\xbf\xd8\xb0\xf8\x6b\x7d\x90\x16\xdd\x78\xcd\xa3\xc0\x6d\xe2\x7e\xa0\x63\x64\x84\xcc\x1c\x49\x9c\x7e\x6b\x63\xc5\xea\xa6\x8c\x4b\xf5\xc5\x29\xb9\x71\xc1\xdc\xf0\xd5\x3b\x1b\xd6\x35\xa5\x24\x4e\x5b\xdf\xd8\x31\x33\x32\xbd\x2c\x59\x8c\x59\xd5\xbb\x6b\x59\x1d\xf7\x2c\xa8\x41\x07\x66\x70\x40\x1d\x5f\x1d\x80\x44\xe2\xa9\xc5\x9b\x84\xfe\xfe\x7e\x2d\x01\xe8\xe7\x57\x5c\x25\x43\x4a\xa1\xd9\x93\x5e\x96\x22\xc7\x79\x02\x20\x13\x4b\xf3\xb2\x6c\x02\x62\x34\xc4\x89\xbb\xa1\x2c\xb6\x86\x04\x8a\x8f\xc5\xbb\xa9\x4a\x4f\x1f\xaf\x93\x5b\x94\x9e\xc6\x87\xff\x10\x65\x26\x67\xf1\xe0\xb5\xda\x3d\x5b\x9a\x58\xbb\xf7\x27\xd7\x83\x78\xff\x07\xae\x15\x5f\x7f\x4e\xa3\x7c\x35\x7c\xae\x67\xae\xd5\x19\x5e\xfd\x79\xef\x7d\xfd\x59\x52\xff\x23\x94\xa3\x18\x9e\xd7\x53\x43\x8f\x1c\xf3\xd6\x1e\x5e\xf2\x16\xf5\x25\xfb\x8a\xfb\x44\xfc\x76\xc9\x9b\x9f\xbf\xa9\xbf\x32\xff\xbf\xf7\x57\xfa\x1d\x18\x19\xe9\xc7\x3b\x3e\x70\x67\xe1\x95\xcf\xf1\xfd\xcd\xee\x87\x58\xb6\xeb\xcb\x15\x78\xb7\x5b\xe7\x3a\x09\x08\xd9\x00\xac\x4a\xec\x67\x36\xf0\xfa\x00\x7f\x3f\x19\x25\x9e\x87\x7d\x57\xde\xd8\x6c\xa9\x94\x87\x89\xf1\xc4\x78\x25\x27\xd6\x72\x48\xad\x76\xb9\x05\x37\xa2\xc4\xfd\x23\x79\x79\x74\xdd\xee\xdd\x23\xb4\x66\xea\xf1\xa9\xae\x6f\xef\x25\x03\xe6\xe3\x66\x72\xe4\xba\xba\x40\x39\xd4\xf2\x81\x81\x93\x02\xfc\x3d\xf3\xd3\x6b\x25\xa5\x94\xb2\x66\xb1\xae\x74\x62\x92\x2e\x92\x0f\x03\x06\x62\x16\x6f\xe2\xe1\xe6\x27\xe5\x4a\xb9\x3c\x4c\x8c\xf5\xc4\x4b\x39\x2f\x3b\x73\xd6\x78\xb9\xce\xaa\x23\xff\xc4\x58\x74\x7f\xe0\x65\xec\x47\x70\xaa\x7b\x37\x49\xa4\xaf\x6f\x3a\xbe\xc9\x35\x74\xf4\x28\xb1\x1d\x3e\x7e\x18\x3f\x3d\x06\x08\xe7\xdc\x55\x2c\x9a\x1b\x86\x08\xb0\xf3\x99\xe1\x61\x0a\xea\xa9\xe7\x14\xbc\x7c\x5a\xc9\x31\xe2\x43\x6d\x9e\x8a\xa1\x71\x17\x35\x02\x22\xe4\x4a\x63\xbc\xa7\x49\x74\x22\xa3\xd8\xac\x56\x14\x53\x40\x72\x16\x85\xa6\x86\x65\xd5\x1a\x4b\x74\x90\x2c\x32\x3a\x42\x52\x50\xe4\xe6\x46\x46\xf0\x2a\x37\xfc\xc3\xbf\xa7\xdc\x3a\x33\x55\xe6\x7f\x27\xe5\x28\xe9\x6b\x6c\x61\xa6\xab\x6f\x70\xc3\x57\x7f\xcf\xbc\xcf\x01\xb9\xe8\xae\x62\x6a\x31\x07\x31\x8f\x0f\xd6\x22\x61\x54\x8e\x84\x85\x20\x12\x5f\xe5\x9a\x27\xde\x28\xe1\x88\xb7\x48\xeb\x3a\x7e\x8e\xe4\xb5\x02\x76\xc9\xaf\x9a\x10\xa4\xbd\x61\x88\x27\xf6\xa0\x07\xbd\x22\xde\x68\xd4\x8b\xb1\x07\x1f\x24\x91\x87\x49\xa4\xd7\x16\x23\xcf\xf4\x95\x3f\xe1\x9c\x49\xb6\xfb\xe6\xcf\xd8\x3a\x27\xe3\xd4\x61\x8d\x4d\x13\xe4\x17\xa5\x89\x90\x16\x95\x2d\x5b\x36\xe7\x96\xf8\x11\x96\x7d\xb8\x61\x76\x46\xcf\x7d\x0b\x47\x5d\x0f\x3e\x8e\x32\xff\x7b\x85\x95\xb5\xce\x24\x63\xbb\xd6\x54\x38\x47\xdf\x12\x8b\x58\x08\xd4\x8d\x5d\x61\x0f\x70\x97\x05\x1b\x0a\xef\x88\x0b\xb9\x10\x23\x3e\x2b\xc1\x13\xb6\x11\xbe\x50\xac\x8c\x14\xfe\xfa\x61\x65\x73\xf3\xf8\xf3\xfe\x40\x22\xe5\x24\x6d\x7e\xe3\x8f\xf8\x2b\xae\xf2\x97\x11\xa9\xd4\x53\xc7\x96\x37\x1e\xf6\xb1\x5f\x3f\x52\xf4\x33\x84\x8f\x5e\x9f\xca\x73\x8d\xf8\x3c\x2d\xcf\x67\x5f\xdc\x3a\x92\xcf\xf0\x5d\x09\x7e\x7e\xd7\x1e\x14\x32\xd1\x17\xf3\x5c\x85\x32\x99\xef\xa2\xe6\x66\x5e\xa1\x89\xd2\x6b\xa3\x92\x35\xc9\x62\xfa\x31\x31\x36\x24\x40\xf6\xff\x91\xf6\x1e\x70\x6d\x9d\xe7\xfe\xf8\xfb\xbc\xe7\x3d\x47\x62\x23\x84\x06\x4b\x20\xb4\x10\x62\x0b\x49\x20\x96\xd8\x43\x6c\x0f\x10\xd8\xc6\x18\x8c\xc1\x36\x18\x83\xf1\xc0\x7b\xc7\x76\xe2\x38\xf1\x76\x9c\x38\x4e\x62\x37\x89\xd3\x98\xac\xc6\x72\x56\xdb\x8c\xa6\xe9\x4d\x93\xde\x36\x4d\x6f\xfb\xbf\x6d\xd3\x95\xb6\x49\xdb\xdb\x75\xdb\xc6\xe8\xf0\xff\x9c\xf7\x48\x02\x6c\xc7\xc9\xed\xaf\xfd\x10\xc3\x99\xef\xfb\x9c\x77\x3c\xeb\xfb\x7d\x12\x2d\x5a\x6d\x20\x6d\xc8\xbf\xc1\x06\x61\xf6\x6c\x5e\x10\x2d\x20\x8b\xd5\x60\x72\x99\x5f\x58\xba\xaf\xba\xf7\x81\xe1\x22\xe7\xda\x07\x7a\xab\x0f\x94\xc2\x23\xfc\x38\x74\xf2\x8f\xc3\x69\x5f\x53\x6e\x5e\x5c\x5e\x7c\x61\xa7\x53\xa3\x29\xee\x94\x44\x54\xee\x7b\x7d\x17\xbc\xbe\xeb\xf5\x7d\x55\xe1\xd2\x33\xbc\xfe\x8c\xef\xaf\xb1\x0c\x79\x04\x63\xc3\xe2\x7b\x86\xf8\xa2\xa1\x7b\x17\x1b\x04\x3d\x25\x6b\xe6\x53\x32\x45\x9a\x51\x06\xaa\x40\x2d\xa8\xd6\x55\x25\x05\x09\x4a\x00\x06\xeb\x13\x31\x61\x98\x86\x50\x90\x22\xcc\x48\x31\xdd\x8d\x82\x09\xae\xc0\x30\xa4\x9b\x05\xca\xdc\x55\x55\xe9\xae\xaf\x6c\xa9\x6a\x31\x9b\xf5\x26\x83\x42\xaf\x0f\x0b\x12\x50\xde\xa2\xb2\xda\xfd\x1c\x1e\x37\x23\x22\x66\x3d\x1f\x06\x6d\xf0\xd7\xac\xcc\x8e\x5d\xed\x0b\x77\x65\x64\x6e\xae\x59\xb0\xa5\xc5\xc8\xdb\x63\xd3\x4a\x2d\x55\xdd\x29\x0e\x59\x66\x71\x63\x4e\xc7\xde\xcc\x8c\x9d\x0b\x16\xec\xea\xcc\xbc\x2e\x33\x16\x5b\xd2\x8b\x8c\x31\x31\xc6\x92\xf4\xf4\x22\x43\x0c\xf0\x20\x8b\xd2\x5a\x0d\x29\x56\x9d\x1c\xef\x1c\x7a\x72\xb2\xa2\xb2\xb4\xac\xc2\x35\x76\xbe\xfb\x05\x57\xd5\xba\x56\x4b\x7a\xe2\x8e\x98\xd4\xf8\xe8\xf2\xd2\x92\x8a\x8a\xcd\x4f\x0e\x55\x8d\xb7\x67\x65\xb5\x8f\x57\xbd\x55\x35\xb6\x20\x2b\xbb\x7d\xbc\x52\xba\x28\xbd\xb9\xc4\x60\x69\x5e\x57\x89\x00\xde\x46\x88\x84\x71\x16\x24\x47\x26\x97\x3e\x04\x00\x85\x02\x06\xdc\x40\xf3\x60\x10\xf4\xcd\xfa\xc8\xe4\x48\x6e\x30\x88\x3e\xb2\x39\x18\x04\xfa\xe1\xe0\xed\x92\xf5\x0f\xf7\x1b\x6a\x0d\xaa\x98\xac\xa4\xaa\x55\x35\x7a\x32\x30\xfc\xc4\x78\x71\x78\xc8\x51\x96\x4b\x6f\x1e\xad\xbe\x71\xce\x9f\x5b\xc4\xbb\x49\x03\x67\x41\x66\x54\xe6\x2a\x4e\x01\x8e\xd5\x02\xe1\xc2\x00\x23\x61\x75\x21\xd4\xf2\x27\x2c\xd7\x27\xac\xd7\xc4\x23\x09\x24\xed\x06\xe6\xa7\xdc\x60\x90\xc9\x4d\x06\xd1\x3b\xaf\x9b\xb7\x13\xd9\x1d\x82\x86\x30\x1f\x1b\x21\x51\x58\x99\x9d\x3f\xc8\x5b\x7a\x70\x91\xb9\xd5\x14\x19\x66\xce\x30\x85\x2d\x5a\x02\xcf\x3c\xe3\x1c\x3e\xb7\x3c\xdb\x93\xad\x8a\xaf\x4d\xdb\xb3\x0d\x7e\xc0\x5c\x99\xd6\x2e\x3d\xd6\x6b\x8d\x8e\x3d\x21\x0d\x0b\x21\xdb\x86\x99\x9f\xdd\xdb\xb7\xfc\xe4\xca\x7c\xa5\xec\x78\x44\x34\x6c\x9d\xe8\x13\xf5\x99\xbe\x99\x4f\xc9\x5b\xec\x67\x48\x87\xca\xd1\x22\x57\x68\x1c\x30\x90\x02\x84\x5a\x8e\x69\xa2\x7b\x1e\x97\xba\x6f\x4b\xd2\x20\xba\xe7\xf1\xd8\x6d\x4f\x7a\x5e\xcc\xcc\x54\x64\x1a\xe9\x82\x3d\x17\xa9\x4e\x83\xd1\x56\x25\x4d\x72\xba\x05\xb2\xde\x75\x5b\xc8\xfa\xfa\x27\x4a\xec\x79\xf0\x15\xe8\x5f\x96\x91\x86\xff\xef\xc0\xf5\x85\xb5\x31\x6b\x17\xec\x7c\x5c\xd7\xf9\x4e\xff\x9d\xd0\xeb\x82\x2c\x36\xcd\x7c\x4a\x9e\x26\x4f\xa2\x24\x64\x45\xd9\xae\x0c\x29\x10\x14\x05\x0c\xe5\x3e\x13\x14\xed\x59\x1d\x7b\xd6\x52\x36\x9b\x2d\x0a\x3d\xd5\xb1\x82\x33\xc7\x66\xa5\x39\x5c\x77\xf2\x13\x6e\x12\x14\xea\xe5\x0f\x95\xd8\xad\x8f\x43\xf7\x62\x73\xfa\x17\xe4\x40\x17\xd9\x64\x83\x0b\xb6\x3c\xa2\xaf\x7a\x6c\xc9\x1d\x52\xa1\x29\xce\x98\xdd\xcb\xfe\x16\xe9\x90\xd5\x95\x03\x00\x0c\x34\x70\x2c\xf6\xa3\x95\xfd\x39\xf9\x01\xaf\x4c\x35\x1d\xfc\x3a\xa4\x33\x28\x0c\x31\x4a\xba\x2b\x28\x4a\x19\x9b\x35\x96\x93\xdc\x16\x81\x9c\x59\xac\x8f\xfa\xca\xf9\xcb\xf0\xf9\x40\xe4\x6b\x5c\x6a\xd1\xa2\x82\xe7\xbd\x61\xbe\x81\xcf\x41\x24\x23\x31\x6f\x93\x2d\x23\xc7\x51\x32\xea\x76\x85\x24\xc6\x71\x0c\xe5\x78\x0c\x78\xd7\x81\xc5\xec\x18\x11\x93\xb4\x03\x79\xf9\x54\xe5\x4c\x9c\x77\xca\xef\xae\x08\x2e\xcf\x74\x87\x4b\x46\xc9\x72\x83\x42\x17\x4b\xfb\xc2\x09\xfb\x98\xe9\x36\x49\x9d\x0a\xbb\xdd\xc6\x96\xc1\xdd\xc7\x1f\x0f\xbb\x39\xb7\xb3\x2a\x9f\x1c\x7f\xf2\x79\xf9\xf4\x4f\x6f\x93\xe3\x79\x4f\xcc\xba\x95\xb4\xfd\x53\xbc\x9b\x49\xa7\x79\xa7\x66\x97\x71\x0e\x22\xe4\x76\x38\x10\x41\xbf\xf4\x43\x68\x6f\x45\x81\x10\x6c\x0c\x6a\x8f\x56\x7b\x6e\x64\x7e\x77\x95\x89\x3f\x71\x5b\xbc\x87\x30\x36\x9f\x99\xf9\x94\xf4\x90\x16\x8a\x13\xab\x74\xb9\x12\x80\x41\xf1\x80\xc5\xfc\x36\x96\x60\xb6\x37\x88\x0f\xab\x75\x07\x51\x63\xd5\xf0\xb9\x50\x31\x08\xb8\xb2\x4d\x34\x49\x41\x2b\x98\xde\x34\x36\x4e\x19\xd6\xe8\xba\x8f\x7b\x37\xbe\xb2\xaf\xb6\x79\xff\xd5\xe5\x13\x5f\x1d\x2b\xc0\x7f\x63\x32\xda\x36\x36\xaf\xbf\x68\xaf\x4f\x70\xf7\x6d\x5f\x55\xd8\xeb\xce\x0b\xf3\x7d\x47\x5b\x39\x48\x5a\xda\xee\x7b\x6b\x22\x63\xe2\xad\x7b\x5b\xa1\x6e\xd7\x33\x43\x5b\x1a\x0f\xf4\x3b\x4b\xb3\xb6\xc7\xe5\x18\x55\xd3\xb6\xac\xb6\x11\x57\xbc\xbd\xbf\x31\x53\x5c\x2b\xbf\x41\x7e\xc5\x68\xd8\x3f\x20\x29\x4a\x72\xc5\x73\x0c\xa2\x80\x15\x00\x84\xd1\xb8\xb0\xd4\xe0\x20\x30\x5b\xa1\x33\x49\x74\x36\x87\x95\xd1\x9c\x3b\x75\xf2\xcc\xdf\x47\x89\x2f\xee\xf4\xe9\xf8\x3f\x21\x04\x90\x43\x7e\xc9\x3c\x40\x9f\x91\x20\x8c\x19\x40\x20\xba\x1d\x05\x8d\xb1\x14\x05\x9f\xe0\xb0\x2a\x24\x3a\x93\xcd\x8a\xfb\x4f\x3f\xcc\x8f\xdd\x78\x90\x5d\x74\x26\xe6\x9f\x7f\x57\x88\xf1\x82\x22\xf2\x15\xe6\x3e\xf6\x59\xa4\x40\x1a\x57\x82\x3f\x13\x47\x84\xe6\x83\x3f\x2c\xa1\x8f\xd5\x53\x40\xfe\x2d\xd3\x98\xb9\x2f\xbd\x79\xa4\xaa\x7a\xa4\xd9\x72\x2a\x46\x5f\x90\x66\x72\xe8\x63\xd8\x67\x8b\xfa\x6a\x4c\xa6\x9a\xbe\x22\x8d\x23\x4d\xad\x4e\x73\x68\x84\x77\xfc\x85\x7c\x84\x7f\xc4\xbe\x8a\xc2\xfc\xf9\x96\x62\x48\x01\x1a\x6f\x13\x46\xf9\x4b\xc0\xd9\xcc\x36\x53\x66\xb0\xb2\x32\x84\xe1\x1c\x59\xc6\xe4\xb2\x1f\x23\x39\xd2\xdd\x26\x36\x51\xca\x34\x1a\xbf\x30\xe8\x2c\x68\x74\x70\x4e\xeb\x70\xa7\xa7\xd7\x3b\x52\x52\x1c\xf5\xe9\xe9\x6e\x87\xb6\x4f\x96\x64\x54\x2a\x0d\x89\xd1\x45\x19\x19\xa5\x6c\x8a\xa5\xde\xa6\xd1\xd8\xea\x2d\x96\x3a\x6b\x62\xa2\xb5\xce\xa2\x34\x26\x45\x47\x27\x1a\x55\x39\xd4\x08\x01\x38\xca\xb7\x30\x80\x0a\x90\x4a\x90\x55\x28\x95\xb7\x2a\x04\xd3\xf8\x4a\x60\xa8\x1b\x0c\x42\x97\xb4\x1c\xa7\x88\x55\x5a\x95\x76\x87\xca\x3f\xf5\xf2\x4b\xb1\x03\xff\xa4\x79\x99\x3e\x3d\xc5\x16\x9d\x9c\xb8\xa8\xdc\x5c\x93\xaf\xd1\xb9\xba\x0b\xd2\xd7\x55\xa4\x9a\x41\x2e\xdd\x12\x9d\xa8\xce\xa9\xcd\x36\x2f\x68\xae\x49\x10\xc6\xc7\x61\xf2\x4b\xc6\xc9\xfe\x19\x25\xa3\x16\x57\x0c\x02\x06\x47\x03\x02\xdc\x90\x0c\xb8\x2e\x0a\x50\xad\x18\x2c\x54\x04\x02\xef\xa5\xc1\x48\x5b\x31\xa2\x99\x93\x8c\xa0\x1b\xf5\x04\x4f\x43\xa3\xe7\x6b\x3a\x93\x61\x6e\xa2\x27\xa1\xe3\xdc\x2f\x30\xf1\x7b\x3a\x93\xed\x8d\x99\xda\x7c\x8b\xd1\x94\x91\x90\x51\x08\x83\xc9\x76\x77\x56\x7a\x65\x59\xb9\x49\x61\x4c\x90\xb1\xdf\xcf\x6c\x2f\xd1\x47\x2a\xe2\x14\x91\xe5\x59\xea\xcc\x05\x65\x46\x8d\x4e\x13\xa3\x31\xab\xc4\x3d\xe3\x7f\xc9\x2f\x98\x1f\xb2\x7f\xa2\x79\x63\x81\x3c\x25\xea\xcc\x2f\x9d\xc3\x0e\x61\xa5\x40\x6e\x1d\xfe\xfb\x47\xfc\x7b\x4f\x34\xbc\xf7\xf7\x53\xec\x9f\xf8\xbf\x42\x04\xff\x57\x31\x06\xf5\x55\xfe\x00\xfe\xef\x99\x2b\x48\x8e\x92\x51\x59\x00\xf1\x23\xc2\xf2\xfb\x02\xcb\x09\xcd\x0c\x55\xcf\x1e\x05\xc0\x1d\xfe\x73\x18\x5a\x3c\x5f\xd3\x1b\xc5\xa1\xc0\xde\x3c\x14\x44\x16\x5c\x71\x20\x7c\x55\x9d\x5e\x90\x92\x6c\x37\xab\xd5\x66\x7b\x72\x4a\x41\xba\x7a\x31\x98\x12\xe3\x8d\xc6\xf8\x44\xd3\xef\x52\x1c\x26\xa5\xd2\xe4\x48\x49\xb1\x1b\x15\x0a\xa3\x3d\x25\xc1\x68\x48\x4c\x32\x99\x10\x82\xe9\x77\xc8\xcb\xbe\x1b\x9c\x12\x31\x48\xe6\x8a\x0c\xa2\xd5\x67\x21\xea\xbe\x1b\x3b\x9e\x7b\x96\xbc\x2c\x18\x8c\xbe\x41\xf2\x32\x7f\x8a\x53\xf9\xaf\x0d\x44\x5e\x03\xe1\x56\x46\xe7\xfb\xfd\x53\xd7\x37\x70\x2a\xfe\xd2\xcc\xcc\xf4\x5d\xe4\x97\x33\x05\xec\x9f\x91\x04\x3d\x72\x83\x17\xeb\x2a\xf8\x3c\xe4\xbf\xf8\x7b\xb9\x0d\x48\x8e\xb2\x5c\x96\x18\xc1\xdc\x0d\xb0\xf7\xf4\x21\x61\xe4\x77\x08\x22\xf0\x10\x60\x10\xd3\x24\x6a\x6f\x32\xa5\x8c\xce\x53\x93\xdd\x4e\x37\x58\x47\x9e\x52\x0c\xfd\xfb\xd6\x41\x6d\x43\x42\x56\xb1\x56\x72\xec\x42\x42\x46\x41\x22\x90\xff\x3a\xcb\x26\x9a\x95\x9a\x18\xe9\xea\xfe\x4e\xa3\x5d\x1f\x4b\x6a\x05\xf9\x4f\xb3\xe4\x57\xfc\xaf\xd9\x3f\x06\xbe\xe1\x3c\xfa\xff\x59\xfa\x05\xf1\x2b\xfa\x7e\xfe\x04\xff\xdd\x8f\x60\xe6\xd4\xff\xbe\x47\x7e\x05\xa1\xfc\xff\x52\x60\x3e\xf8\x4c\xfc\xe3\x7c\xc4\xcc\xfe\x3b\xc5\x4d\xd9\x39\x13\xde\x67\x0a\x4c\xf8\x4f\x02\xf3\x1d\xb0\x99\xfc\x83\xc9\xe4\x26\xfd\x3c\x08\xc2\x33\x16\xf9\xb3\x53\x10\x34\xc9\xa2\xb1\x44\x14\x21\x5e\xfd\xfa\x93\x5d\xdc\x24\xbf\x1d\x21\x06\xe4\xe4\x17\xcc\x5f\xb9\xd7\xfc\xfe\x4a\xad\x4b\x83\x28\x8d\x84\xc8\x4b\x85\xbb\x85\x0d\x33\x87\x69\xf4\x3b\x29\x25\xf1\xf4\x01\xec\xe7\x79\x34\x36\xbc\xbb\xf1\x20\xff\x5e\xa1\xd8\xb2\x42\xb8\x11\xf8\x8d\x7b\x8d\xff\xe7\x2a\xda\x4e\x97\x2b\xcb\xff\xef\xcc\x0c\xce\xc1\x6b\x18\x25\x53\x8f\x39\xb4\xb1\x40\x8c\x35\x21\x92\x13\xe4\x6c\x12\x13\x88\x71\x9a\xa0\x7c\x98\x45\x36\x08\x89\xca\xcf\x94\x42\x72\x7c\x65\xd7\x99\xad\xac\xfa\xb3\xdf\x52\xb2\x11\x8c\xb2\x10\x22\xcf\x53\x1f\x14\x65\x66\xe5\x80\xf2\x36\x21\x94\x46\x37\xd4\xae\xf9\xcf\xb0\x82\xd6\xa1\x05\x9c\xff\x30\xfc\xfc\xc6\xe4\xff\xe0\x27\xf8\xeb\xec\xd4\x67\xad\xa7\x49\xa2\x18\xa7\x0a\xf0\x28\x31\x48\x8b\xca\x28\x4f\x1a\x20\xc4\x82\xc8\x93\x26\x2c\x16\x39\x41\x37\x69\x2e\x6e\xcc\xcc\xcc\x34\xf9\x65\xa3\xb5\x69\xd9\x2f\xe0\x55\x62\x9a\xf8\x1c\x78\x1f\x62\xff\x7d\x76\xa5\x13\xa7\xbf\xf2\x6f\xf1\x2b\x01\xb2\x23\x44\x1e\x0e\xf0\xb9\x20\x80\x34\xea\x3a\x31\x8b\x8c\xb5\x12\x91\xb1\xd6\x0a\x3a\xbc\x9a\x3f\xf4\x0a\xfc\xea\x22\xfc\xfa\x15\x72\xfe\x46\xbf\x20\x1a\x51\x2e\xf7\xf9\x79\x4c\x84\x71\x2e\xf2\xc7\x89\xfc\x60\xbd\x88\x65\xa9\x2f\x26\x2d\x98\x88\x6e\x86\x00\xf3\x98\x24\xde\xe2\xf0\x47\x20\x19\xad\x42\x7b\x1f\x73\x79\xba\x6b\x11\xfe\x8b\x2f\x72\x01\x73\x6a\x7a\xf5\xe9\xd3\x4c\xe9\x19\x26\xf4\x0c\xdd\xdb\x1f\x41\x88\xa4\x07\xb8\x72\x10\x00\xb5\xa9\xe7\x36\x32\x9a\x48\xd4\x01\x66\x34\x2d\x49\xf7\xfa\x7e\xef\x65\xee\x0a\x0c\x02\x91\x9b\x77\x1d\xe5\x9b\xc9\x76\x65\x48\x80\xc1\xe1\x1c\x62\x10\xc3\x02\x20\xa6\x21\xc0\x43\x37\xbf\x8d\xb1\x32\x99\xf0\x4c\x00\x0a\xd5\x00\x9b\x56\xa1\x05\x26\x8e\x2f\x66\xe2\xa7\x01\x7e\xcd\x27\x30\xef\xfa\xe2\xe0\x75\xfc\xae\xef\x3b\x67\x8e\xe1\x7a\x5c\x7b\xec\x8c\xef\xbb\x54\x16\xd5\x08\x91\x83\x94\x93\x47\x8f\xb2\x51\x8a\x2b\xc9\x92\x9e\x92\xac\x8a\x08\x45\x52\x04\x94\x12\x98\xbe\xc7\x8c\x1a\x13\x13\xe8\xbc\x9b\x57\x6d\x42\x4c\x77\x87\x58\x0d\x56\xc9\x22\x19\x36\x3f\x0b\x9b\x64\xa5\x0c\x7e\xbd\xf7\xd2\x96\xea\xea\x2d\x97\x7a\xbd\x2b\x2e\x4d\x56\x55\x4d\x5e\x5a\xe1\xe5\x0b\xf5\xd5\xfd\xe5\xe5\xfd\xd5\x7a\xfc\x7d\x7d\x75\x9f\xcb\xd5\x57\xad\x27\xbf\x90\xb6\x1f\xbe\xbe\x6e\xf4\xa5\x23\x0b\x25\x6f\xbc\x21\x69\x3f\xfc\xf2\xe8\xba\x97\x0f\x2f\x90\x7c\xd7\xa7\x6b\xdd\xdf\x5b\xc4\xe1\x3f\x4a\x8a\x56\xec\x6b\x6a\xd9\xdb\x5b\x24\xf1\xc5\x48\x8a\x56\xec\x47\x80\x56\xfa\xb9\x9f\x92\x85\xb6\x26\x45\x47\x20\x42\x81\x3a\x18\xd3\x29\x42\x85\xa1\x52\xa9\x94\x54\x18\xa5\x0c\x55\x79\x45\x7c\x6a\x16\xe3\xd7\x7f\x55\x32\x2b\xfe\x96\xc3\x53\xa6\xf3\x96\x8d\x3e\xb4\xcc\xdb\x73\x7e\xb4\xd4\x9b\x5a\xe6\xb1\x7b\xe1\x67\xe1\x05\x5d\xdb\x5b\xf1\x80\xef\xdc\xc6\x17\xf7\x34\x86\xf1\x2f\x43\x55\x58\xe3\x9e\x17\x37\x0a\x47\x5a\xb7\x75\x15\x84\x33\xef\xd3\xef\xdb\x8b\x10\x59\xcb\xbe\x81\xb2\x51\xba\xcb\x14\x83\xb0\x7f\x8a\xfa\xa7\x94\xb0\xd4\x80\x87\x05\xf1\xc3\xc4\xa7\xcb\xe2\xd2\x84\xc1\x63\xb0\xc7\xcc\x1a\x3e\x0a\x65\x8c\x4a\xa1\x15\xb4\xcd\x39\x34\x05\x42\x43\xb5\x0a\x2d\x7e\x7c\xd7\x5d\x99\x8b\xb6\x35\x37\x4d\x2e\xca\x82\x7b\x76\xf3\xc5\xc0\x95\xf6\x55\xeb\xeb\x0f\xbe\x3a\x31\xf1\xda\xc1\x06\x7d\xe5\x8a\x52\x08\xe5\x8b\xbf\x91\x04\x29\xff\x6a\x9b\x78\x61\xab\xcb\xb5\xf5\x85\x89\xb6\x1b\xfc\x2f\x92\xbe\x71\x3a\xfb\xe0\xc5\x29\x4f\xcb\x91\x4f\x9e\xe8\xe9\x79\xe2\x93\x23\x2d\x9e\x67\x1e\x3e\x98\x7d\x9a\xae\x2b\xbb\x67\x3e\x21\x87\x29\x66\xd8\x8e\xde\x12\xcd\x8c\x68\x2d\x70\x4c\x86\x05\x23\x2e\x3a\x14\x0b\x43\xcb\xcf\x25\x21\x1c\x27\xf3\x8e\xdf\x74\x88\x65\x82\x8e\xaa\x38\xc4\x71\x4c\xb7\x84\x60\x86\xb1\xba\x29\xc9\x41\x37\x06\x80\x5c\x08\x10\x53\x24\x09\x4a\xb8\xc5\x4d\x2f\x43\xb7\x5e\xe4\xd2\x23\xc4\xb1\x1c\x62\x47\x6f\xbe\x0e\xb1\x6c\xf0\x32\x8f\xc7\x25\x43\x28\x2f\xc7\x6c\x42\xa9\x28\xd5\xac\x37\x18\xa4\xc2\xf7\x0d\x58\x33\x2a\x31\xb1\x9f\x9b\x97\x68\xac\x72\xc0\x4d\xb8\x4c\xe6\x4f\xe1\x8a\xa4\x98\xa8\x84\x50\x55\x72\x51\x8a\xbb\x4f\x6d\x3f\xb7\x6a\xc5\xa9\x81\xfc\xfc\x81\xd3\x7d\x83\x0f\xd8\x73\x7d\x2f\x25\x96\xf5\xd7\x7a\x36\x19\xe5\x39\x25\xf5\x96\xba\x95\x65\x89\xc4\x39\xfd\x13\xa3\x55\x13\x41\xf0\x61\x45\x44\x65\x43\x75\x5d\xcb\x91\xd7\x46\x15\xdb\x3f\x78\xa0\xb3\xb1\x76\xa7\xef\xba\xfb\xc0\xca\xe2\xf6\x72\x2c\x4f\xce\x37\x2a\x6a\x36\x3d\xb0\x88\xca\xf9\x69\x7e\x17\xe9\x66\xdf\x40\xf1\xc8\x89\x76\xba\x22\xa5\xc0\x31\x16\x60\x39\x39\xe5\x63\x11\x11\x0c\x7a\x29\x30\x88\x63\x19\xae\x8f\x9a\xd2\x12\x40\x28\x47\xec\x2e\x02\xc8\x15\xd6\xf9\x4c\x91\x5c\x01\x03\x1e\xbf\xe3\xb5\x82\xc9\x17\x97\x98\x00\xa8\xd0\x91\x9d\x69\xd4\x27\x38\x13\x9d\x8a\x58\x59\x14\x8a\x87\xf8\x10\x89\xdf\xb6\x99\x93\x3d\x4f\x43\x43\xf9\xa5\x58\x3e\x27\x0f\x53\x21\x9b\x43\xa4\xae\xb3\xe1\x35\xbd\x0f\x8d\x96\xac\xe8\xdc\xb2\xbf\x6a\xf2\xf2\x8a\xb6\x87\x4a\xaf\xd7\x6e\xb9\xd8\xe9\x5a\x56\x9c\x94\x52\xda\xed\x74\xf4\x54\xa7\x65\x1e\x5b\x5a\xb9\xa6\x21\x2d\xb5\xa2\xa7\xe4\x5e\xf6\x8d\xc2\xa1\x63\x1d\x4b\x4e\x67\x67\x7c\x73\xef\x9a\x4b\x63\x45\x59\x79\xbc\x8d\x7d\xa6\xfd\xf8\x88\xcb\x77\x2a\xb5\x78\xa1\x35\x6b\x71\x45\x9a\xa9\x6a\x89\x6d\xfa\x4d\x5b\x99\xa5\x69\x4d\x99\x6d\xa0\x2d\xef\x8c\x68\xff\xd4\xf2\xcb\xc9\x29\xe2\x44\xa1\x82\xfd\x13\xc2\x62\x26\x80\x14\xb4\x08\xb3\x38\x13\x1a\x63\x62\x02\x7b\x9c\x4c\x27\x03\x2b\xa8\x1c\xcc\x8f\x5e\xe5\xed\xd7\x79\xdb\xab\xb0\x50\x1d\x4f\x9c\x37\xfe\xce\xe7\xc2\x0f\x09\x99\xfe\x9f\xde\x5e\x51\x07\xdd\x3c\xf3\x29\x19\xe0\x12\x51\x2e\xaa\x45\xf9\xae\x5c\x29\x00\xca\x08\xc1\x04\x70\x03\x22\xc0\x00\xa1\x04\x90\x40\x10\xf4\x05\x3c\x17\xb9\xb8\xb1\xb2\xa2\xc0\x9e\x9a\x62\xd2\xb3\xc2\xea\x16\xf0\x30\xcd\x06\x60\x55\x73\x23\xb6\x74\xc1\x73\x64\x31\xf2\xb9\x9e\x0c\x93\x31\x12\x2b\x40\x62\xef\xbb\x7b\x71\xeb\x05\xb7\x59\x55\x56\xd7\x9c\x96\x5e\x9d\x97\xa8\xb2\x7b\x2a\xff\xbf\x9f\x55\xed\xbe\xbe\x71\xf3\x4b\x7b\xaa\xec\x4b\x77\xd6\x91\xec\x46\xbb\xc6\x62\x6c\xd9\xdc\xde\xb6\xb1\xd9\x98\xd9\x3e\x5e\xdb\xb6\xb9\x35\x8d\xfc\xbd\x7a\xa4\x31\x2d\xdb\xb8\x27\x44\x29\x8f\x88\xd5\x5b\x93\x95\xd9\x39\x39\xaa\x7a\xfe\xd3\xf7\x14\xeb\xbf\x71\xb4\xad\xed\xe8\x37\xd6\x2b\x3a\xce\x6c\x6e\x97\x85\xc9\xed\xd5\x6d\x3e\x47\xd3\xe1\x55\x25\x25\xab\x0e\x37\x29\xca\xb6\x0f\xb9\xc3\xa1\x64\xe8\x48\xa3\x9f\x5b\x6d\x39\x69\x42\xc5\xa8\xd9\xe5\x4e\x02\x24\x81\x06\xc4\x72\x12\x8e\x95\x8c\x06\x58\x1f\x91\x44\x0a\x08\x4b\x50\x5f\xa0\x6c\x81\xd5\x1d\x48\xb9\xcc\x65\x1a\x01\x15\x15\xe6\x66\x5b\xd2\x8d\x7a\x65\x6c\x64\x44\x88\x04\x15\x43\x31\x1d\x44\x22\xd7\x91\x3f\x91\x88\xf5\x07\xf7\xe7\x60\x2e\x54\x73\x31\x17\x56\xab\x02\xaf\xbe\xef\x44\x5a\xd3\x58\x43\xc5\x68\x5b\x96\x17\x4c\xd5\xcb\xd6\x6e\x2a\x5e\xfb\xfc\xde\xba\xf5\xab\x7b\x86\x2a\xb6\x5e\x5d\xdb\x73\x65\x77\x23\x78\xb3\x9b\x07\x9d\xee\xb5\x35\x5a\x4d\xc5\x60\xc3\x5f\xe1\xa7\x6d\x4b\x0d\xae\xec\x04\x8d\xad\xda\x54\xd4\xeb\x76\x18\x64\x96\x05\x9b\x9b\x7b\x76\x24\xeb\xb6\xb8\x9b\x27\x5a\xd2\x32\x16\x6c\x72\x1b\xca\x32\xe3\xe3\x33\x8b\x53\x0d\x45\xe9\xca\x13\xe2\x18\x9a\xe0\x77\x93\x6c\x5a\x5f\xc0\xe0\x4a\x05\xca\xbb\xa5\x54\x88\x95\x42\xc0\x23\x2c\x1d\x69\x34\x6e\x91\x8e\xd2\xcd\x69\x8c\xd0\x15\x05\xd0\xa4\x28\x95\x4a\xc3\x28\x22\x19\x5a\x43\x24\xdf\x68\x0a\x94\x56\x02\xad\x8d\x64\xf3\xab\xaa\x47\x9a\xcc\x4b\xba\xfe\xdb\xbe\xbc\xc6\x0c\xba\xfc\xb2\xc4\x15\xb9\x79\xee\xd6\x17\x3c\x3b\xdb\x8c\xe9\x1d\x07\x96\x40\x9e\x2f\x83\x9d\xda\xcc\x2f\xaa\x98\xd8\xbc\xa7\xb9\x6f\x45\x4c\x5e\x78\x7c\x96\xbb\xd4\xb4\xb8\xa5\x5a\xb9\xd0\xbe\x28\x43\x57\x10\xad\x8b\x2e\xf2\x4c\xb6\x15\x1e\x3c\xf3\x58\x07\x14\x9f\x41\x80\x1e\xe3\x7b\x89\x85\x62\xd7\x17\x7d\x2d\x06\x30\x13\xe4\x33\x50\xcd\xf2\x19\x58\xdd\x88\x61\xcc\xfe\xb1\x9f\xe0\x4a\x60\xc5\xe5\xd0\x8f\x65\x9a\x77\x56\xe4\x35\x50\x20\x85\x5c\xa7\xd0\x71\x92\x9b\x78\x0d\x82\xb1\x0b\x77\x84\xe3\xc9\xd1\xae\xa3\xfd\xf6\xeb\xbb\x76\xae\xbc\xcb\x74\x5d\x24\x35\xc8\xe8\xbb\x30\x7e\xe3\x79\x52\x77\x6c\x7b\x53\xf9\xf4\x8f\x88\x53\xd0\x01\xbc\x33\x9f\x12\x35\xad\x39\xa2\x41\x26\xd4\x26\xa6\xab\x26\x21\x82\x30\x43\x70\x6f\x60\xb5\xc9\x09\xc6\x56\x72\x05\x1b\xf3\x96\xf3\x79\x73\xcf\x7b\x5c\x21\x3a\xb9\x4e\x61\xd6\x53\x7d\xf2\x96\xe2\x24\x12\x2d\xcd\x4d\xb3\xdb\x40\xeb\x4f\x12\x21\xea\xc2\x91\x87\x57\x0d\x5c\x5c\x57\xe4\x1c\xb9\x38\xb0\xea\xe2\x88\xd3\xcb\xcb\xb7\xec\xdc\xb9\x91\x97\xc3\x1f\x36\xed\xda\xb9\x09\x67\x1e\xfe\xf0\x78\x53\xd3\xf1\x0f\x0f\xc3\xa2\xc3\x1f\x9e\x6c\x6a\x3a\xf9\xe1\xe1\x3f\xdd\x73\xfd\x9d\x77\xae\x83\x7e\xf7\xf5\xb7\xdf\xbe\xee\x8f\x23\xcd\x7c\x4a\x9c\xc4\x89\x14\x82\x5e\x17\x0a\xc0\x84\x89\xfe\x6e\xbf\x5f\xca\x12\xcc\x55\xcf\xc5\x8d\x0a\x83\x81\x6a\x62\x72\xad\x7c\xee\x4e\x42\x71\xd9\xd7\x70\x1c\x24\x64\x17\x6b\x33\x9b\x93\xcc\xa5\x1b\x4a\xeb\xd6\xb7\xa4\xf3\x0f\x13\xa7\x4f\x5a\xee\x36\x84\x26\xca\xf6\x64\xc4\xa7\xb6\x1f\x5c\x89\x9b\x84\x77\x16\xce\xfc\x89\x2c\x61\xff\x88\xd2\xe1\x11\xf7\x54\x92\xb0\x83\x86\x03\x60\x73\x32\x66\x18\xc0\x0d\x29\x80\x6a\x13\xe6\x1e\x4a\x01\x82\x28\x3e\x44\x84\x35\xf8\xdb\xe3\x17\x2f\x11\x95\x44\x7f\x66\x71\xf0\x6c\xde\xcd\x67\x23\xef\x78\x6f\xd4\x1d\xef\x8d\xbe\xe3\xbd\x31\x77\xbc\x37\xf6\x8e\xf7\x2a\xef\x78\xaf\xea\x8e\xf7\xc6\xdd\xf1\xde\x24\x9a\xbe\x15\xc4\xb0\xce\x39\xe7\x52\x07\x0f\x23\x64\x16\xee\xa3\x8b\x5b\x2e\x69\x9c\xcd\x73\xf6\xbc\x98\x16\x67\x54\x46\xb3\x92\x38\x8b\x56\x07\x26\xbf\x93\x4f\x8c\xee\xa8\x40\xc3\x58\xf3\xf2\xec\x76\x87\x44\xfc\xfa\x26\x46\x02\x92\xef\xc2\x11\x47\x64\x6a\x86\x23\x35\x22\x2d\x02\x62\x8a\xe3\xea\x56\xbb\x73\xa3\x60\x75\x68\x52\x6a\xba\x5a\x1a\x1a\x12\x1a\x82\xc3\xf4\xe1\x45\x4b\xea\x0b\xd5\x3f\x48\x22\xd2\x7b\x75\xd5\x76\x2d\x81\xa3\x6c\xa8\xbd\xad\x27\x6d\xba\x41\x5b\x60\x56\x63\xc0\xa7\xb9\x90\xd4\xca\xfe\x0a\x6c\xd9\x24\xf2\x23\xf0\x9b\x48\x16\xfb\x06\xaa\x42\x19\x2e\x73\x15\x20\xc6\x41\xc7\xa6\x5e\x87\x71\x2d\x5d\xa2\x71\x4f\x50\x8d\x44\x8d\x15\x2e\x6d\x5a\x2a\x11\xb6\x40\x7f\x1c\x46\x5c\x5e\xfd\xdc\x73\xc1\x35\xac\x94\xb1\x19\x67\xd7\xb0\x00\x7f\x82\x52\xc5\xfc\xa3\x70\x7d\x49\xcf\xc1\x0e\x73\xfa\xd2\xfb\x06\x8e\x1e\xfd\xef\x5f\x3a\x96\x6e\xad\x5c\x67\xef\xa9\x35\x83\xce\x56\x9a\xd0\xab\xd6\xc7\x45\x40\x73\x93\x73\xec\xfa\xbe\xba\x6c\xcf\x8e\x96\xf2\x81\x5a\xa3\xfb\x9e\xb7\x77\xd4\xde\x9d\xc3\x4a\xa3\x14\x1a\x6b\x95\xc9\xda\x56\xa8\x39\x73\xfe\x52\xd5\x40\x43\x56\x78\x5c\x44\x5c\x66\x43\x89\x69\x61\x4b\x95\x72\x61\x42\xba\x39\x33\x29\xc3\x22\x8b\x50\x96\xaf\x3a\x37\xda\xb8\x63\x45\x9d\x52\x51\xd4\xd0\x91\xbb\x60\x57\x67\xa6\x52\x26\xce\x43\xcf\xcc\x1f\xc8\x13\xc4\x89\x12\xd0\x1a\x71\xad\x0b\x0d\x05\x40\xe2\x64\x4c\x08\xfc\x41\x66\x79\x2b\xd4\x2c\x83\x11\xa2\x89\x0a\xfe\x39\x2a\xe8\xd1\xb9\x82\x22\x94\x38\xef\x14\x21\xe6\xb9\x73\xd8\xe3\x0a\x95\xc9\x64\xc2\x4c\x96\x48\x12\x68\xdc\xe8\xe6\x99\x4c\xd3\x4b\xb4\xa4\xf1\xde\xe8\x44\x83\x32\x3e\x57\x66\xce\xee\xc8\x2e\xec\x2a\x49\xe1\xef\xf7\xee\x63\xfe\xca\x5c\xf4\xad\xc9\xb0\x26\x4a\xa3\x43\xf6\xa4\xc8\x35\xd5\x63\x0b\xf1\x91\xe9\x1e\xe6\xe2\x59\x41\x9f\xb8\xc4\x2f\x27\x35\xa4\x19\x29\x51\x96\x60\x89\xe9\x81\x30\x52\x40\x84\xae\x26\xf4\xfd\xd6\x60\xa8\x27\xd7\xbf\x36\x5b\xcc\x46\xb9\x5e\x18\x66\x73\x92\x71\x6e\x06\x27\x12\x45\x90\x00\xaf\xc6\x3e\xf4\xc0\xc0\xea\x47\x8b\xbc\xf5\x3b\x9f\x58\x3e\x71\x75\xbc\xd0\xab\xa9\x58\xdd\x94\xdb\x5a\x9a\x99\x14\x25\xcf\xaf\x5c\x68\x6d\x1c\xae\x4e\x81\xbf\x8d\xbe\x76\xa4\xb9\xca\xe5\xfb\x1f\xe6\x23\xd8\xf9\xc6\xfe\xaa\xce\x07\x7e\xb0\x63\xd1\xf9\x8d\x35\x29\x05\x0d\x0b\x3a\xcc\xfc\x4f\xb4\x85\x66\x55\xd1\xc0\x01\xb7\x20\xf7\xcd\xbc\x87\xe4\x90\x66\x64\x45\x46\x97\x4e\x9b\x82\xa1\x16\x01\x86\x71\xba\x91\x30\x80\x90\x15\x37\x02\xa2\x74\x77\x56\xb0\x92\x80\x92\x18\xdc\xc2\x03\x64\x1b\xfe\x91\x25\xd6\x1d\x14\x3a\x80\x07\xfa\x1f\xdf\x52\x7d\x55\x5f\xb3\xba\xb6\x6d\xc2\xad\xb3\x78\xee\x5a\xb2\xf8\xf0\x8a\x7c\xc8\xaa\xef\xca\x6c\x52\xda\xb3\x53\x60\x74\xed\x9e\x37\xf6\x56\x56\xec\x78\x91\x34\xdb\x56\xde\xbf\x34\xaf\xb3\x5c\x84\x2b\x57\x6d\x5d\x51\x1d\x11\xae\x2d\xe8\xa8\x28\xea\x6b\x2d\x8e\xdd\x1a\x9a\x9c\x59\x9c\x66\xcd\x8d\x94\x77\xee\xbf\x3a\x94\xbe\xf6\xf5\x93\x9d\x82\xac\x87\x67\x3e\x25\x07\x28\xde\x20\x83\xb2\xc3\x06\x48\xfa\x2c\xc1\x00\x47\x2e\x34\x9a\x0d\xe6\x34\x3a\x89\x41\x3b\x37\xb0\x24\xe6\xf3\xc3\x2d\xe1\x25\x72\x80\xff\x75\xef\xaa\xf2\xad\xcf\x8f\x8d\x3f\xbf\xad\xbc\x7c\xdb\x73\x63\xd8\x31\xfd\xb0\xbe\x7e\x7d\x53\xe3\x68\x83\x4e\xfc\xb7\x5e\xcf\x5c\xac\xfb\xfe\x3e\x55\xdf\xb5\xa3\x8b\x17\x9e\x78\x7b\x42\x39\xfa\xfa\xd1\x76\xdf\x87\xc1\xb0\x52\xe3\xa1\xc1\x92\x92\xc1\x43\x8d\x82\x6c\xbf\x3a\xf3\x09\xc9\x23\x4e\x14\x87\x2c\xae\xb4\xd9\xe1\x2c\xc6\x33\x11\xdd\xaf\x67\x07\xa6\x4c\x61\x32\xf8\xdb\xca\xcc\x0d\x1e\xfb\x59\x3f\x48\x1e\xff\x20\x24\x64\x38\xb5\x19\x4d\x09\x66\x4d\x91\xb3\x48\x53\xb7\xae\x29\x8d\x3f\xc3\xec\x67\xce\xfb\x1e\x77\xb9\x8d\x61\x09\xb2\xbd\xca\x84\x28\x4e\xbf\xe0\xe0\x4a\xdc\xfc\x90\xf0\xfe\x87\x66\x3e\x25\x65\xc4\x89\x92\x83\xfc\xb9\x16\x77\xa0\xca\x47\x2e\xf6\x53\x8e\x98\x55\x06\x56\x58\x34\x02\x5c\x23\x36\x23\x25\x0e\x0e\x0a\x4b\x06\x1d\xc6\x9a\xbe\xe2\xa6\x91\xda\x54\xa6\x3a\xff\x75\x95\x39\x25\x26\x7f\xf4\xd9\x1d\x23\x57\x36\x96\x12\xa7\xef\xa4\x67\x47\x9b\xa1\x69\xeb\xb9\xe6\x03\xc0\x6e\xcf\x59\xbf\xe7\x78\xfb\xd8\xf7\x2f\x2e\x77\x6e\x7a\x71\x3b\x1e\xa2\x3a\xf6\x08\x9f\x4a\x36\x11\x27\x32\x20\x2b\xca\x74\xa5\x87\x00\x46\x46\x9d\x1c\x09\x93\xb5\x41\x0a\xa8\x6e\x76\xb4\x09\xbb\x2d\x6e\xcc\xcd\x36\xe8\xe3\xd5\x82\xf6\xc5\x0a\x6b\x53\x8c\x20\x04\x5a\xb6\x72\x6e\x2a\xad\x44\xa6\x93\x97\x32\x36\x71\x59\xc6\x11\xeb\x1f\xec\xcf\xdc\xba\x6b\x65\x66\xa9\x49\x8e\xe3\xec\x9d\x65\x9a\x92\x65\xae\xe6\x03\xfd\x85\x39\x83\x8f\x4d\x78\xbd\x95\xcb\x8a\x13\xb0\x2a\xb3\x2a\x4b\xab\x81\xc8\xa8\x55\xa7\x5f\x19\x78\x12\xe4\xdd\xfb\xcd\x2b\x86\xd6\xe6\xbb\x76\x0d\x2f\x88\xc1\xcf\xe7\x78\xaa\xcd\x0b\xef\x7b\x73\x74\xe5\xcb\x67\x56\x45\xf1\xb9\x78\x4d\x4c\xfb\xba\xdd\x65\x35\x87\x87\xab\x72\x4c\x82\xfd\xce\xa7\x91\x5d\xc4\x89\x74\xc2\x1c\x49\x55\xc4\x00\x11\x43\x27\x80\x3c\x84\xc1\x0c\x42\x16\xf0\x07\x05\x55\x71\x71\xa2\x30\x85\x55\x16\x9b\xac\xca\x18\xc5\xad\xee\x04\xfc\x72\xfd\x40\x59\x12\xce\x35\xbe\x9e\x92\x9d\xb3\xe6\xa9\xed\xde\xbe\x07\xd6\x16\x78\xb5\x25\x8b\x6d\xc4\x39\xdd\x1e\xb3\x78\xe2\x70\xd5\x01\x40\xdb\x7b\x66\xd0\x63\x6b\xde\x7a\x68\x28\x92\x77\xc0\x77\x22\x3b\xcf\x7c\x78\x37\xfc\x86\x57\xaf\x3a\xbf\xae\x32\x8a\x79\x8a\xae\x99\x2d\x33\x9f\x92\x43\xc4\x89\x72\x04\xeb\xc5\x00\xa2\x03\x86\x41\x0c\xa0\x51\x09\x87\x19\xc6\x42\x5d\x48\x64\x89\xa0\x1b\xe6\x12\xa1\x89\x39\x28\x47\x6f\x52\xe9\xe4\x26\xa9\xa0\x66\x71\x58\x22\x8e\x34\xda\x34\x65\xf0\xeb\x8b\xad\x9e\x63\x22\xe7\xc7\x38\x60\x7d\xa6\x13\x87\x27\x65\xa5\x56\xba\xaf\xbb\x2b\x52\xb3\x93\xc2\xb1\x33\xf3\x9b\x69\x05\x9a\x9a\xb1\x05\x5d\x93\x29\xda\x2d\x5d\x0b\xc6\x6a\x34\x05\x69\xc4\xb9\x83\xbf\x71\x70\xe1\x03\x9b\x6b\x2f\x5f\x05\x0b\xff\xc1\xd5\xcb\xb5\x1b\xcf\x2f\x3a\x08\xec\x8e\x5e\x7e\xfa\xd2\xba\xef\x3d\xb2\x62\x78\x60\x60\x78\xc5\x23\xdf\x5b\x77\x09\x88\xdf\x0e\x3b\x33\xf3\x29\x39\xcb\xbe\x85\x32\x91\x13\x1d\x74\x45\x66\x02\x10\x6b\x7a\x1c\x46\xac\x30\x5b\x02\xda\x25\x10\xc1\x32\x1b\x0d\xb8\x22\xf3\x82\xba\x6e\x6e\x50\x57\xb8\xe5\xa2\x9c\x79\x17\x7d\xc1\x43\x3c\x1e\x57\x48\x81\x3d\xd3\xa0\x30\xb1\x82\x8e\xcc\x49\x66\xa7\x80\x83\x4e\x0e\xa5\xdd\x66\x9b\xeb\x80\x91\xd9\xed\x0e\xd1\x97\xe5\x57\x49\xcf\x56\x36\x95\x8e\x5e\x58\x31\x70\x79\xa2\xfc\xba\xbe\x6a\x45\xe9\xc6\x5d\x23\xcf\xed\xac\xc9\xeb\x9c\x6c\x68\xd9\xb1\x38\x4b\x57\x95\xe2\x3b\x91\xd6\x34\x5a\xdb\xd0\x5c\xd9\x86\xc7\xd5\xd2\x87\x87\x9f\xdc\x50\x5c\xbe\xe9\xf1\x55\xd0\x8c\xf9\xa9\xea\x75\x4d\x66\x38\x79\xea\x72\x74\xd7\xc1\xa7\xfb\xa3\xda\x76\x77\x65\x5b\x97\x1f\xee\xe4\x2f\x30\x11\x52\x68\x2f\x1b\x5b\x52\x11\x0d\x8b\x87\x57\x7b\xfa\xfd\xfe\xcc\xc7\xd8\x97\x90\x1e\xed\x72\x45\xc5\x49\x31\x20\x9d\x3a\x26\x2a\xc4\x2f\xae\xd0\x00\x9b\x8f\xa8\xf2\x50\x47\xb0\x19\x07\x34\xc4\x39\x67\x72\x66\xcf\x44\x7e\xce\x3d\xb7\xbb\x5c\xd0\x8e\xf4\xfa\x58\xbd\xb8\x6d\x89\x35\x6c\x24\xd4\x8a\xa0\x96\xb7\xa0\x7c\x04\x55\x25\xb9\xca\xc1\x14\xc6\x17\x94\xd5\xa4\x25\xda\x12\x94\x91\x1a\x5d\x51\x0c\xff\xa3\x6b\xfc\x0f\x63\x8a\x74\x49\x91\xaa\x04\x5b\x92\xa9\xa6\xac\x30\xfe\x39\xb5\x9a\x7c\x58\xd6\x69\x57\x49\x64\x27\x43\x8c\x69\xbe\xad\xbe\x97\xb1\x0b\x1f\x32\x99\x42\x4e\xca\x24\x2a\x7b\x67\x19\x3f\xd4\xd9\x89\x30\xcd\xdd\x39\x45\x9c\x28\x1e\xe5\x23\xbb\xcb\x1a\x0e\x9c\x60\xb5\x4a\x10\x87\x24\xdc\x28\xdd\xf4\xfd\xcb\xaa\x14\x38\x2e\xe8\x0c\xd2\xc9\x4d\xb1\x32\x95\xde\x14\x1d\x22\x49\xb2\x80\x6e\xd6\xb9\x11\x18\xdc\x76\x87\xce\xa6\x65\x8c\x46\x93\x96\xe3\x02\x13\xc2\x66\xf5\x83\x61\xc8\xa9\x1d\x29\xe9\x49\xe5\x6b\x9a\xbb\x26\x53\x52\xb6\x74\x35\xaf\x29\x4f\x32\x6b\x87\xc8\xe0\x1f\x71\xb6\x91\x8f\x30\x66\xe3\x50\xb5\x49\x53\xd9\x70\xbd\xa1\x32\xc9\xa4\x0e\x65\x2e\xae\xbe\x71\xb7\xe7\xd1\xed\xee\xe1\x55\x03\x23\xee\xed\x8f\x7a\xee\xbe\xb1\xfa\xac\x6f\x62\x9b\x6f\xcb\x16\xdf\xb6\xa2\xe1\x05\x79\x97\xaf\xde\xb8\x71\xf5\x72\x6e\xfb\x88\x30\x7f\xd3\x67\xfe\x4e\xb6\x51\xdf\xe4\xf7\xc5\xcf\x96\x1c\x00\x16\x70\x80\x90\xc4\x83\x24\x12\xa5\x98\x34\xc1\x02\xc6\xaa\xe0\x37\xbc\xe3\x65\x9a\xe0\x07\xfd\x12\x4f\xcb\xf8\x32\x4f\x73\xe9\x6e\x77\x05\xcb\xaa\x82\x09\x1d\x1a\x3a\x2a\x3c\xae\x30\x99\x4c\x56\x23\x53\x96\x47\x4b\xb9\x44\x0b\x68\x03\x49\xc5\xb1\x9c\x8e\xa2\xd3\x82\x34\x61\xc2\x7e\x56\xc2\x23\x4d\x49\xf2\xda\x27\x36\x14\xbf\xf3\x75\xec\x6c\xcb\x55\xc2\xee\x43\x29\xc5\x9a\x6b\xfc\x25\x22\x67\xd5\x7c\x21\x26\xae\x8d\x57\x56\xbf\xf5\xbd\xfb\x0c\x55\xbd\xc5\x47\x1e\x22\xd8\xd7\xc6\xaa\x45\x7f\xf9\xee\x99\x4f\xc9\x1a\xf6\x4d\x94\x8d\xca\x5d\xa5\x82\x51\xc9\x60\x32\x2a\x05\x09\xcb\xb1\x12\x6e\x14\x11\xc4\x4a\xc8\x6c\x85\x94\xa4\x20\xe1\xa8\x86\x9a\xf7\xd9\x28\xdb\x20\x53\xe8\x63\xcd\xfa\x10\x2e\xc1\x5f\x22\x67\xd6\xd4\x0c\x52\xe9\x2b\xb4\x73\x80\x07\x64\x4d\x68\xdd\xf6\xa9\xb1\x89\x97\xf6\xd6\xd4\xec\x7d\x69\x62\x6c\x6a\x7b\x5d\xa8\x37\x34\xa3\x61\xd8\xdd\xb2\xa9\xcd\x8c\x8b\x7c\x6f\x9a\xdb\x36\xb5\xb8\x87\xdd\x96\x50\x78\x71\xe5\x13\x93\x95\x1d\x0f\xfe\xd7\x5e\x28\xdc\xfb\xe3\xf3\x1d\x65\x9b\xbf\x3a\xe2\xde\xd8\x9a\x5e\x39\x71\x71\x99\xfb\x4c\x67\xcf\xc5\x8d\x95\xa6\xa6\xf1\x26\x61\xdd\xd3\x20\x44\x1e\x64\xa7\x50\x22\x32\x23\xa7\xcb\x81\x50\x08\x48\x08\x92\xf4\x21\x8c\x59\x8f\x14\x58\x56\x49\xcb\xf1\x42\xb7\x30\x09\x55\xd0\x98\x94\x84\x50\x92\x39\x29\x2d\x45\x83\x12\x51\xa2\xd6\x20\x4b\xd3\x86\x72\x71\x16\x90\x59\xe7\xa0\x62\x98\x58\xcc\x71\x3a\x9d\xcd\x9a\x17\x23\x97\x0b\xa7\xfc\xbe\x3a\xfc\x49\xf7\xc2\xdd\x8b\x33\x32\x16\xef\x5e\xc8\x7f\xfa\x26\x24\xd7\x6c\x58\x94\xa2\xac\x73\x00\x83\xf3\xbb\x33\x4a\x0c\x32\x99\xb1\xc4\xc2\x4e\xf9\xbe\x55\xbd\xe9\x91\x65\xcb\x1e\xd9\x54\xc5\xaa\x7d\x9f\x5e\xe3\x3f\x7a\x6b\xd5\x69\x28\x82\x3c\xfc\x94\x2f\xdb\x77\xcd\xba\x60\xc8\x61\x1f\x6c\xcf\x43\x18\xed\x45\x88\x1c\xf1\xd7\x5b\xea\xf1\x73\x12\x60\x40\x21\x52\x4c\x24\x48\x18\x29\x00\x4a\x37\x92\x48\x98\x25\x2c\x30\x8c\x8a\xa1\xc3\x08\x87\x80\x94\x60\xa9\x60\x78\x09\x57\xf5\xde\x7a\x95\xc7\x25\x53\xa9\x54\x3a\x55\x6a\xaa\x4c\x26\x4b\xd3\xca\xa2\x43\x85\x91\x64\x95\x59\x67\xfb\xa8\x13\x14\x74\x99\x75\x4e\xd7\xa0\xe8\xb3\x6b\xb9\xdd\x87\xba\xb3\xb2\xba\x0f\x75\xff\xee\xb3\x6b\xd7\xe0\xd9\x5c\x6b\xb5\x25\x46\x9e\x5e\x6d\x65\x0a\xf1\x26\xdf\xe9\xd2\x75\x67\xba\xba\x1e\x18\x2b\x17\xeb\xc8\x4c\xcf\xf8\xfe\x92\xd9\xd0\x63\xb5\x2e\xab\xa3\xf5\x7b\x2a\x11\x22\x83\x34\xbf\x35\xd7\x95\x85\x81\x81\x58\x31\x43\xc4\xcf\x62\xc1\x82\xdf\x9a\x50\x52\x5f\xbd\x0a\x37\xca\x64\x31\x06\x85\x2e\x5a\x22\x8c\x1f\x61\x94\xab\xe6\x92\x44\x06\x06\xb8\x8b\x57\x26\xda\xe3\xfb\x1e\x5c\xeb\xf4\x26\x16\x79\x4a\x0a\xf2\xbd\xfc\x65\xc6\xc7\xaa\xf9\x62\x42\x20\x6b\xc5\x99\xd5\xbc\x03\xbe\x5d\xd5\x53\x9c\xc0\xf9\x2a\x85\x91\x0d\xe8\x11\xfe\x2c\x8d\x03\x85\x89\x75\x84\x18\x42\x33\x33\x94\xd4\xeb\xd6\xe5\x17\x90\x3f\xba\xc4\xc5\x5b\xe4\x34\x01\x5e\x8c\x09\x3d\xe2\xc5\x4a\x2f\xff\xa0\x97\x3f\xc1\x4e\x7d\xf6\x31\x1b\xf7\x59\x2b\x7f\x16\x56\x09\x63\xec\x11\x7f\x5d\x97\x68\x94\x24\xd8\x24\x08\x38\x60\x09\xb0\x14\xb4\xe1\x41\x0c\xa3\x0c\x66\x36\xd1\x7e\xc9\x92\x64\x89\xa9\xb2\x34\x6d\xb4\x84\xa3\x95\x8a\xe6\xe0\xad\xb4\x30\x0b\xb7\x22\x49\xbe\x32\x08\xdd\xf0\x82\xa0\x25\xbf\xb0\x81\x2f\x66\xb6\x0a\x7f\x37\xaf\x6f\xd0\xe9\x1a\xd6\x37\xb3\x6a\xbe\xbc\x78\xdd\xf9\xde\xe5\x0f\x8f\x95\xb1\x53\xbe\x18\xdf\x07\x59\xcd\xab\x0a\x0b\xfa\xea\x2d\xe2\x7e\x5f\xc3\x9f\x25\x9b\x69\x9b\x54\x82\x66\x8c\x01\x31\xa8\x0d\x49\x24\x74\xf5\x56\xba\x69\xee\x15\x8d\x54\xa9\x68\xa4\x4a\x49\x31\xf8\x1c\xcd\xf2\x13\x06\xb8\xb5\x94\x71\xc8\xb5\x32\xab\xa0\xbf\x68\x65\x5a\x32\xf0\x15\x5f\xd9\x83\x09\xe5\x59\x35\x79\x1a\x36\x05\x1f\xda\xe9\x3b\x1e\x52\xe1\x82\xaf\xf3\x1f\xf1\x0f\xc0\x4a\xfe\x2c\xf0\x9a\xf5\x57\xff\xf2\x30\xae\xff\xec\x63\xfc\xfe\x5f\xf8\xe3\xeb\xc9\x6e\x04\x28\x89\x62\x33\xa7\x90\x42\xf8\xe6\x72\x29\x46\x2c\x34\x48\x80\xd6\x6a\x60\x51\xaf\x94\xc3\x42\x4b\x42\x04\x9d\x59\x05\x8d\x22\x7b\x0e\xad\x6b\x1a\xca\x09\x9b\x88\x30\x04\x19\x1d\x30\x56\x39\x1d\x9a\x72\x2b\x03\x3a\x7c\xc3\xfe\x62\xe9\xbb\xbf\x81\x88\xdf\x7c\xf8\x74\xf5\x8b\xa5\x5f\xfd\xd1\x6f\x21\xf2\xd7\xf8\x88\x6f\x82\xfe\x7c\x88\xff\xcb\x37\x8e\xef\xa1\x3f\x66\x9f\xc9\x6f\xf3\x7e\x42\x46\xd9\x37\x90\x13\x35\xbb\xdc\x09\xb7\xad\x21\x2b\x85\x9b\x8a\xc8\x26\x05\x8b\xc8\x6a\x48\xa3\xe8\xc8\x37\xa7\xe9\x53\x63\x63\xa8\x0f\xd6\x09\xce\x10\x2e\xd6\x02\xfe\x90\xfe\xbc\x5a\xb2\xdc\x3c\x5a\x9c\xf9\xa5\x64\x6d\x78\xd5\x85\x73\xe6\xf6\xc9\xf6\xb2\xd1\xf6\x5c\x6f\xcb\xc1\x67\xfb\xc6\x5f\x39\xd8\x00\x3b\x47\xb6\x1f\x6c\xbb\xf7\x8d\xf1\x9e\x17\x8f\x75\x5d\xcf\x59\xbc\xb9\xae\x6d\x77\x77\x4e\xe6\xe2\xed\x2d\x2f\x32\x79\x70\x70\xd4\xb1\xac\x26\xcd\x50\xb9\xc4\xbe\xf4\xe4\xaa\x82\xfc\xc1\xf3\x03\xab\x1e\xcb\x49\x7f\x72\xf7\xaa\x0b\xc3\x05\xb9\x83\x17\xd7\x15\xf6\x37\x58\xd2\xea\xfa\x8b\xab\xfb\xca\x93\xe7\xc7\x39\x69\xcd\x9f\x10\x82\x03\x94\x79\x4a\x4a\x99\xa7\xf2\x13\xc8\x71\x7e\xb2\x2e\xd0\xc9\xac\x0c\xb3\xde\xeb\x05\xdf\xef\xbc\x5e\x60\xa7\x3e\x6b\x25\xb9\x37\xde\x63\xa7\x6e\xbc\x8f\x00\x65\xd3\xda\xc0\x53\x48\x86\x4c\x94\x56\x9a\x78\x04\x2d\x57\xe9\x0e\x22\xf5\x54\x74\xb1\x97\x21\x99\xd6\x20\x93\x71\xc2\x43\x85\x89\xc2\xd0\x15\x44\x58\x1c\x65\x72\x62\xf1\xf2\xdd\xd8\xb8\xe8\x70\xbf\x35\x6d\x60\x11\x11\x5e\xc0\xaa\x7d\xc7\x1e\xf1\x3d\xdd\x7d\x1a\x22\x04\xe3\x1d\x01\xb2\xcc\x7c\x42\x5e\xa0\x6b\x83\xc9\xa5\x57\x47\x00\x83\x51\x38\xcd\x5c\x13\x1b\x8e\xfc\x5c\x7c\x1a\x68\x54\x9a\x0c\x31\xb4\xf1\x01\x2a\xbe\x60\xda\x1a\x25\xe2\xcb\xae\x85\xc1\x0f\x7d\xbf\x53\x15\x2d\xdc\xb4\xa0\x6a\x28\x5e\x1d\x61\xb0\x58\xe4\x59\x35\xf9\xfa\x88\x74\x3e\xf2\x7d\xfc\x8f\xd7\x98\xcd\x37\x5c\xf9\x3d\x75\xe9\xea\xb0\x7b\x98\x10\x29\x9b\x90\x51\x90\xb8\x88\x94\x0a\x72\xbb\xcc\x5f\xa4\x31\x7e\xff\xba\x00\xa4\x5d\x5c\x17\x84\x6d\x81\xed\x12\x76\x62\xf6\xd6\x75\xc1\xca\xe8\x64\xda\xcb\x5e\x1c\xe2\x3d\x1e\x73\x79\xfa\x49\xff\xba\xf0\x29\xcf\x42\x8f\xf0\xcc\x2b\x08\x11\x13\x8d\xe3\x66\xbb\x32\xd4\xc0\x60\x46\xe4\x1f\x67\x84\x55\x0f\xfa\x58\x82\x31\x56\xba\x51\x40\x8e\x62\xa1\x95\xa0\x1c\x03\x9b\xe6\x6c\x82\x20\x31\x79\xb5\x15\xb5\x6d\x39\xbd\x67\x06\x1d\xde\x04\xc7\xc2\xc2\x05\xc7\xea\x68\x85\xbe\xee\xf0\x98\x48\x49\xee\xda\x27\xb7\xc0\xdb\x7c\xc1\xa2\xf5\xd5\x49\x49\x6a\xfc\x92\xe8\xf3\xd9\x8e\x10\x69\xa5\xfd\x32\xb8\x52\x39\x96\x61\x84\xdd\x80\x9a\x2c\x5d\x88\x10\x15\xb5\x58\xc2\x50\x18\xed\x9a\x44\xdc\xe8\xfc\xff\xd7\xca\xc0\xfe\xc1\xb5\x0f\xae\x4d\x67\xfa\xfb\x45\xd7\xbc\x40\xfd\x95\xed\xfc\x45\xf2\x24\x1d\x1b\x99\xae\x74\xc4\x22\xb6\x5d\x2a\x11\x1f\x4e\x30\x46\x88\xeb\x42\x1c\xa7\xe2\xfc\xc3\x43\xf8\x5f\xae\x4c\x46\x75\x01\xf1\xe9\x14\x5b\x44\xc5\x47\xdf\x72\xd2\x75\xad\x2b\xe6\xd2\xf4\xe1\xc0\x9b\x80\x55\x7f\xf6\x5b\x3e\x04\x7a\xd8\x29\x84\x51\x9e\xbf\x5e\xca\x2d\xeb\xab\xdf\x81\x7c\xa7\xf5\x55\x58\xc4\xe6\xad\xaf\xc1\x09\x99\x07\xbf\x3f\xb6\xee\xa9\x89\x92\x92\x89\xa7\xd6\xf1\x2f\xf2\xef\xc1\xef\x8f\xd5\x0f\x56\x26\x27\x57\x0e\xd6\xb3\x53\xbe\x27\x4a\xd6\x9d\x5f\xde\x73\x61\xdc\xc5\xaa\x7d\x4f\xfa\x3e\xc8\x6e\x5e\x55\xe0\xe8\x6b\xb0\xd0\xf8\xfc\x31\x3f\x3e\x25\x92\x56\x3b\x12\xfa\x8f\x24\xc0\xb1\x88\xeb\x13\xf6\x2e\xaa\xb7\xc1\x12\xbf\x3e\x21\x97\xcb\x93\xe5\x1a\xba\xd3\xa6\x48\xb9\x78\x0b\xcc\x69\x8d\x15\x6e\xda\x63\xeb\x97\xf4\xdc\xd7\x97\x97\xd7\x77\x5f\x0f\xff\x89\x97\xc1\x5e\xef\x34\xbf\xc4\xd1\x9c\xa3\x54\xe6\x36\x39\x18\x4f\xc9\xba\x07\x7b\x68\x8b\x84\x49\x44\x97\xfc\xec\x96\x81\x02\xc7\x8a\x86\x0c\x3f\xee\xb7\xcd\x5f\xdf\xca\xec\x32\x22\xc4\x02\x61\x10\x11\xf4\x1c\x3a\x61\xe9\x0c\x52\x41\x63\x54\x54\x54\x42\x54\x7c\xaa\x2c\x2d\x85\x8e\xb3\x39\x7b\x8f\x55\x36\x0f\xea\x3b\xbb\xf3\x94\x78\x67\xb7\x1d\xc6\xf3\xb9\x9b\x0e\xa0\xb1\x99\x4f\xc9\x82\xa0\xce\xe8\xc7\xb3\x4a\x41\x02\x08\x24\x88\x86\xbc\x24\x18\x04\x9d\x91\x32\xe0\x25\x09\x23\x9f\x96\xf1\xd4\x70\x7e\x9d\xd1\xac\x8f\x15\xd4\x46\x3a\x4e\x02\x04\xf4\x94\x80\xdf\x4f\x43\x35\x5b\xf6\xc3\x0f\xf1\x05\x0b\x98\x1a\x86\x6b\x9b\x27\x17\x66\xf2\x89\xf0\xab\x8c\x85\x93\x2d\xb5\xc3\x0d\x26\xf0\x42\xe5\xf6\xa9\x91\x89\x57\x0f\xd4\xd7\x1f\x78\x75\x62\x64\x6a\x7b\x25\xc0\xf7\x1a\xb7\x76\xe4\xb8\xc6\x1e\x5a\xd6\x75\x7a\xe9\xb2\x0b\x63\xae\x9c\x8e\xed\x8d\x2b\x9f\xdd\xd7\xb8\xf0\xec\x87\x7b\xf9\xe7\xf7\xfe\xf0\xec\xc2\xea\x9d\xcf\x8d\x04\x72\xad\x57\xd3\x5a\x67\xb9\x82\xde\x15\x47\x15\x78\x82\x40\x42\xa0\x97\x06\xc3\x05\x3d\x41\x29\x12\xa9\x08\x53\x49\x23\x18\xbe\xa6\xe0\x15\xf4\x9c\x9f\x0b\x3e\x49\x58\xbd\x54\x41\xce\x15\x0d\x6a\xf4\xb8\xc2\xcc\x26\x83\x4c\x26\x53\xe8\xe9\x7e\x1b\x74\x98\x51\x8d\x4b\x66\x0d\x9a\xbe\xa6\xfc\x59\x8c\x86\xe8\x99\x5c\x9d\xb5\xe4\x50\xd7\xe2\x3d\x1d\x19\x63\x5e\xef\x98\xa5\x63\xcf\xe2\xee\x43\x4b\xb2\xbc\x6d\xfd\x99\xa5\xc6\xe8\x68\x63\x69\x56\x5e\x75\xba\x1c\x33\x3b\xbf\x75\xa8\xae\xee\xd0\xb7\x76\x4e\xfa\xf6\xb2\x53\xbe\xfe\x33\x3b\xbf\x75\xb8\xae\xee\xf0\xb7\x76\xe2\x97\x5f\xce\x5e\x76\xcf\x32\x7e\x51\xcf\xd1\x65\xd9\xd9\xcb\x8e\xf6\x50\x3d\xa1\x1c\x21\x62\xa4\x7c\x00\x89\xc8\xea\xca\x61\x6f\x5b\xb7\x4b\xe9\xe6\xfc\xbb\x34\x42\x71\x2a\x65\x2c\x8a\x42\x51\x69\xc2\x7a\xa1\xb2\x08\x73\x4a\x07\xfe\xc8\xa3\x56\x46\x1d\x7e\x56\x19\xa5\xe9\x1b\xe6\xdf\xe1\xdf\x7b\x13\x16\xdd\x7d\xa2\x76\xff\x2b\x13\xf0\xac\x2f\xc4\xdc\xba\xb9\x79\xe6\x5f\xad\x5b\xda\xd3\x71\x8f\xef\x22\xbe\xdf\xfa\xf2\x91\xfe\x07\xd7\x14\x7c\xd6\x4a\x22\x8b\x06\xdc\xe9\x38\xc5\x50\xdd\x47\xf3\x22\x3e\x25\xb5\x9c\x0c\x65\xa1\x2a\x54\xe0\xb2\xa5\x07\xd8\x3d\xf1\x18\x0b\x48\x2c\xa5\x1b\xac\xdb\xa6\x81\xc6\x9c\x6c\x40\x45\x85\xd9\x55\x39\x55\x9a\xa4\xf0\x50\x94\x05\x59\x12\x6e\x4e\x12\xb1\x20\xdd\x12\x26\x3f\xc6\x6e\x77\xd0\x24\xf2\x48\x22\x89\x64\x24\xa5\x8c\x6a\x96\xf1\xcc\xef\xa0\xc4\x07\x56\x5f\xde\x50\x52\xbe\xed\xb9\xb1\xb1\xe7\xb7\x55\x54\xef\x7c\x61\x9d\xad\xbb\xd2\x78\x26\xc9\x5a\xdd\xda\x99\x51\x33\xb9\xbc\x22\x2a\xa5\xb9\x6b\x40\xd1\x38\x5a\xaf\xa7\x8e\xca\x75\x0d\x7a\x7d\xc3\x7a\x66\xda\xbd\xf7\xb9\x21\xd5\xfa\xaf\x1f\x6d\x6d\x3d\xfa\xf5\xf5\x2a\x49\xf5\x0b\x20\xff\xc6\xb8\x22\x54\xa5\xb3\x99\x2b\x96\x95\x9b\x13\x63\x42\xa3\x6c\x5d\x7b\x97\x18\xca\x32\xe3\xce\x38\x96\x4e\x56\xa9\x1a\x0f\xad\x2a\x29\x59\x75\xa8\x51\x55\x35\xb9\xd4\x21\xe6\x3f\x3d\x86\x10\xc9\x21\x4e\x14\x8b\x92\x90\x11\x95\xba\x8a\x42\x6f\x5f\x5b\x55\x3d\x5b\x5b\x55\x50\x9a\x14\x08\x19\xf5\x29\x1a\x45\x92\x22\x51\xad\x44\xb1\x48\xae\x95\x72\xb4\xae\xa7\x3f\xcd\xc0\xef\x64\x14\xd4\x4a\x9a\x68\x69\xf0\x27\x5c\xea\x1e\x83\x27\xfa\x1f\x9b\x28\xeb\x5a\x9c\xdf\xea\x48\x74\xae\x3d\xdb\xc3\xff\x07\xe4\x8f\x6e\x98\x58\xc7\xff\xc7\x9f\xb7\xed\x3f\xb8\xed\x4f\xc4\xa9\xaf\x1b\x6d\x6a\xda\x98\x12\x9e\x5b\xd1\x9a\xd1\x34\xde\x64\x84\x9f\xf0\xd7\x17\xb6\x36\x2f\x3c\xd1\xd0\xdc\x46\x7d\xaf\x2f\x0a\xba\x06\x71\xce\xcf\xa9\x53\xbb\xfd\x4a\xa5\x2c\x9a\xe1\x82\x39\x75\xe9\xbe\xda\xeb\xcc\x38\x73\x71\xba\xc7\x8f\xc1\xb2\xf3\xdf\x24\xe7\x88\x13\x45\xa3\x38\x61\xdc\x11\xc0\x80\xdb\x02\x08\x27\xb5\x9b\x93\xb2\x8c\x3f\x49\x4b\xc5\x08\xa3\x4e\xad\x52\x52\x92\x02\x99\x4c\xa6\x0c\xe1\xe2\x2c\x0e\xbf\x82\xca\x88\xfa\x2a\x44\x32\x82\x9e\x7a\xde\x52\x64\x54\x49\xa2\xb1\xf7\x48\xcc\x57\x7c\x11\x97\x63\xe0\xdb\x6c\x94\x52\xab\x86\xeb\xfc\xb3\xa7\xb9\x96\xbb\x5e\xde\x00\xa7\xa6\x97\xf2\x16\x28\xe5\xbf\x09\x1f\xe0\x88\x85\x67\xf6\x8f\x66\xe0\x7f\x0a\x7d\x91\x21\x44\x9e\xa2\x31\xca\xcf\xd5\x55\xd5\x5f\xa8\xab\x42\x50\x57\x05\xd0\xe1\xbf\x3b\xbd\x45\x1f\xfe\x0c\xcc\xfc\x67\x3f\x7c\xa5\xc8\x5b\xf4\xea\x0f\xf9\x7f\x42\xfa\xcf\xe1\x87\x7c\xba\xf0\x83\xad\x58\xc2\x0b\x2a\xb4\x0b\xbe\xee\xfb\x97\xef\x5d\x04\xe8\xe0\xcc\x1f\x48\x43\x20\x5f\xe0\x4b\xea\xaa\xc9\xf3\x75\x55\x31\x5f\x20\xa8\xab\x16\x43\x31\xd5\x55\xf3\xec\xb7\x94\x4e\x9a\xcb\xe0\x48\x6e\x51\x55\xb7\xed\xda\xa5\xab\xec\x2f\x77\x0e\xb6\x64\x7b\xa1\x69\xf7\x95\x9e\xfe\xcb\x9b\x2b\x56\x77\xaf\x1a\xaf\xdf\xf5\x54\x7f\xf1\xa6\xb5\xcb\xaa\xd3\xbc\x59\xed\xa3\xe5\xae\xd5\x6e\xb3\xb1\x6e\xa0\xec\xcf\x78\x63\x9b\x3b\xb5\x38\x33\x3e\x3e\xb3\xcc\xe0\xde\xb4\x20\x23\xad\x65\xa2\xd9\xbd\x45\x97\xbc\xa3\xa7\x79\xf3\x82\x74\x99\xde\xe1\xee\x2d\x32\x55\xdb\x92\x13\x72\x5c\x86\xac\x72\x73\xcc\x79\x04\xe8\x92\xa0\x1f\x51\x9c\xf0\x7c\x5d\x55\x7d\x3b\x5d\x55\x26\x6c\x96\x32\x66\xc4\xeb\xf5\xfd\xe9\xda\x35\xe2\xbc\xf1\x16\xa3\x99\xfe\x05\x71\x4e\x7f\x44\xf7\x1e\x61\xfe\x9c\xa4\x58\x54\x93\x4b\x1f\x2a\xe8\x57\x0d\x81\xaa\x65\xc2\xa6\xac\x76\xb3\xe2\x23\x63\x82\x3a\x1c\xf8\x17\x5c\x11\x93\x1a\x31\xe5\xf5\x3e\x0c\xc7\x3f\xe2\x73\xe0\x6f\x9f\xc0\xbb\xbc\x95\x38\x79\x3b\xbc\xe3\xfb\x87\xef\x3d\xfa\x7c\x87\xb0\x4e\x12\xa7\x88\xd9\x0a\xea\xc2\xea\x9b\x75\x61\x39\x92\xdf\x46\x17\x76\x50\xb6\x5e\x39\x31\x5e\xe7\xc7\x40\xbf\xf0\xe8\x6a\x3b\x63\x2e\x74\x5b\x64\x98\x76\xe3\x22\xff\xce\x89\xdf\x3c\xb4\xe0\x12\x14\xae\x7f\x72\x3d\xbc\x27\xea\x57\x87\x68\xbd\x05\xa7\x58\xdf\x4e\xea\xaf\x6f\x47\x65\xc3\x60\xec\x17\x4e\x8c\x4c\xc6\x72\x71\x16\x83\x5c\x10\x0f\xa3\x63\x84\xfe\xe0\x25\xbf\xf9\xd8\xfb\x83\x5d\x3f\xf6\xfe\xe9\xef\x4c\xf5\x8d\xb7\xf0\x03\xbe\x95\xf8\x39\x5f\x13\xe5\xd3\x0e\xc8\xfb\x96\x1a\xb1\x6a\xb7\xbf\x07\xb3\x1a\xee\xbc\x1a\xb1\x26\xaf\xef\x7f\xbc\x5e\x1c\xed\x85\xef\xf2\x79\xc4\xc9\x5b\xe0\x03\x34\xe7\x79\xf3\x72\x2a\xe7\x3e\x8b\x7e\xbc\x60\x4e\x25\x7d\x0a\xb3\x27\xb0\x08\x00\x1a\x44\x88\x6c\x0d\xdc\x1f\xac\x5f\x38\xbb\x80\xf8\x3f\x7e\xa0\x7e\xe1\x56\xbe\xf5\x3a\xdf\x41\xe4\xcc\x63\xd3\x4b\x98\xc7\x4e\x89\xeb\xe6\x24\xbf\x9c\xb4\x73\x08\x25\x50\x26\x9f\x14\x57\x52\x56\x66\xaa\x56\x29\x97\xb2\x52\x1a\x3f\xf0\x27\x79\xc7\x43\x63\x92\x12\x73\x4a\x0a\x85\x72\xc8\xac\x32\x0d\xa3\x98\x13\x35\x30\xf8\xb3\x24\x6d\x5a\x7f\xda\xa4\x62\xd2\xbe\xea\xc4\x52\xef\xb2\x93\x83\x76\xc7\xaa\x93\xcb\xbc\x4b\x4f\xac\xb2\x33\xc9\x09\xf6\x36\xbb\xbd\xcd\x9e\xe0\x3b\x17\x6f\x6b\xb5\xdb\x5a\x6d\x09\xd8\x34\x78\xed\xde\x1e\x19\x5c\xe7\x6b\xa2\x97\xdf\x7b\x6d\x50\x39\xf4\xe2\xbd\x3d\x51\xfc\x5a\x38\x19\xdd\x73\xf4\xc5\x41\x65\xc5\xb6\x81\x86\x98\xe9\xdf\xc6\x34\x0c\x6c\xab\xaa\xdc\x3a\xd0\x10\xc3\x28\x63\xdc\x03\x5b\x2b\xfc\x75\xf6\xf9\xd7\xc8\x31\xfa\x3d\xe6\xda\x1c\xea\x2f\x61\x73\x3c\xe9\x85\xbf\x5c\xdf\x1d\x73\x79\xfa\x3f\x89\x73\x7a\x29\xf3\xe8\xf4\x52\x3e\x0d\xca\x03\x75\x80\x4d\x81\x5c\x0b\x39\xd0\xc1\x32\xc7\xe6\x10\xe7\x82\x68\x72\xc8\x75\x0a\x5d\xb4\x30\x80\xb4\xc1\xb2\x09\x32\x2b\x4d\x3d\xb3\x3b\xe8\x47\xaf\xba\x6f\x51\xff\x23\xe3\xa5\x5e\xd8\x3b\xd9\x76\xa2\xda\x0b\x47\x64\x31\x79\x2b\xcf\xae\x82\x22\xfe\xcd\xfd\x93\x31\x32\xac\x42\x80\x76\x23\x44\x1a\x69\x1f\x82\xf6\x85\xfa\x4b\xdb\x17\xce\xf7\xbd\xef\x7b\xa7\x6d\x81\x3e\x30\x8f\xce\xf2\xcc\x6f\xe4\x5f\x23\x67\x88\xf3\x16\xfb\x42\xfd\x7f\xb7\x2f\xb2\xdf\xf7\x9e\xb3\x7b\x3b\x62\x2e\x4d\x9f\x0c\xbc\x09\x98\x47\xa6\x97\xf1\x26\x28\xa7\xf5\x43\x0a\x11\xa2\xf1\xb3\xcf\xb3\x2f\xd4\xff\x96\x7d\x51\x08\xbf\x7e\x7b\xf9\xa9\x01\x9b\x6d\xe0\xd4\x72\x7e\x27\xff\x03\xf8\xf5\xdb\xce\xb6\x7c\xb5\x3a\xbf\xbd\x90\x38\xf9\x81\xbc\xce\xc9\xba\xba\x6d\xdd\x36\xe6\x11\x7e\x15\x7f\x54\x63\xad\xd0\xa5\x56\xda\x52\x83\xf6\x45\x19\x71\x7e\x8e\x7d\xa1\xfe\x7f\xb0\x2f\xfa\x3a\x0e\x76\x67\x67\x77\x1f\xe8\xe4\x7f\xe5\xc5\xff\xeb\xf5\xfa\x42\xfb\xb2\x2b\xcc\x72\xb9\xb9\x22\x1b\x3f\x9c\xe7\x99\xac\xad\xdd\xb6\xc4\x26\x2c\x4a\xc4\xe9\x7b\x8f\x3f\x9a\x6c\x2d\xd7\x69\x2b\xed\xa9\x08\xd3\xb9\xee\xa2\x6d\xba\xc5\xbe\x50\xff\x1b\xf6\xc5\x32\x70\xf7\x9e\x1e\x74\xd8\x07\xcf\xf4\xfa\xa6\xbd\xe0\x76\x2e\xb4\xc7\xc5\xdb\x17\x38\xf1\xc3\xb9\x9d\x93\xf5\x75\xdb\xbb\xf3\xc5\x16\x68\xf2\x2a\xf4\xba\x4a\x9b\x36\xe8\x93\x76\x92\x66\x94\x89\xea\x5c\xd5\x08\x90\x04\x81\x64\x14\x11\x8e\xe5\x08\x3b\x8a\x24\x88\x23\x12\xae\x57\x1a\x88\x52\x27\x07\x79\x1f\x34\x4c\x23\x20\x73\x9a\xc9\x38\xa7\xb0\x5c\x26\x64\xd2\x9d\x71\x9e\xfb\xe6\x16\xcf\x8d\x83\xe6\x03\xe3\xe2\xbc\xe5\xee\xac\xa9\x86\xad\x0f\x2f\xde\xf9\xf5\x9d\x2e\xd7\xae\xd7\x76\x2e\x7f\x64\x63\xe5\x54\x7a\x5d\x6f\xc1\xc2\x8d\x4d\x26\x96\x5f\x00\x57\xb8\xf4\xc6\x0d\xcc\xd7\x52\x0a\x9b\xb2\xea\xf7\xf5\x17\x75\x9e\x78\x63\x6d\xfa\xda\x37\x4e\x76\x14\x0f\xdd\xbb\x20\xaf\xb3\xdc\x58\xd4\xbb\xad\xfc\x4c\xd9\x86\x2e\x3b\xc2\x68\xfd\xcc\xa7\x64\x37\x69\x46\x09\x73\xed\x0b\x84\x18\x0e\x51\x7e\x70\xe8\x16\xf6\x2a\xba\xb1\x8b\x19\x17\x34\x40\x60\x0a\x5e\xc1\xb2\x6a\x37\xf2\xa3\xc6\x93\x85\xa1\xa9\x12\x2f\xf5\x07\x09\x5c\x61\x66\x83\x4c\x16\x6b\xd6\x8b\xfe\x3c\xab\x7f\xbf\x0f\xd2\x22\x89\x9e\xdd\x5b\xf9\xe1\xd2\xf7\x48\xf2\xba\x76\x2d\x5a\x7a\xb8\x2b\x23\xc3\x73\x68\x69\xc7\xde\xae\x5c\x6e\xb7\xd7\x0b\xce\x68\x73\x95\x2d\xbf\x3a\x4d\x26\x33\x57\xdb\xf2\xab\xd2\xa2\xf1\xba\x81\xab\xbb\xeb\x17\x9f\xfa\xf6\x98\x72\xec\xdb\x27\x16\xbb\xf7\x3d\x3f\xc8\x9b\x89\xd3\xf7\x61\xf3\x7d\x23\x15\x15\x23\xf7\x35\x2b\x9b\x8f\xad\xab\xa8\x58\x77\xac\x19\x61\xd4\x82\x10\xd1\x12\x67\xc0\xbe\x90\x80\x48\x36\x2d\xee\x3d\xf4\x03\x71\x73\x37\xa0\xa0\x7d\x11\x29\x13\xed\x0b\xba\x8b\xce\x5a\x18\x34\x6c\xaf\x95\x69\x53\x23\x31\xd1\x7a\xf9\x29\x7e\xe6\x6d\x90\x0d\x8e\x16\xae\x3e\xb7\xfc\x97\x6a\x6b\xa3\x0d\xba\xf8\x57\x0a\x17\x17\x24\x0a\x63\x18\x2e\xf1\xdd\xf0\x0d\xe3\x85\xd5\x75\x5b\x3a\xf2\xf8\xe7\x53\x5d\xb9\x1a\x58\x95\x6c\x2d\x17\xc6\xd2\xcc\xef\x78\x37\x31\x70\x82\xd5\x59\xef\xaa\x31\x60\xcc\x92\x58\x60\x58\x39\x60\x86\x69\x08\x01\x09\x47\x6d\xd6\xde\x80\x95\x91\xec\x46\x52\x29\xeb\x99\x17\x90\xd1\xe2\xc6\xec\x2c\x99\x4c\x26\x37\x99\xcc\x3a\x51\x0f\xd4\xca\xfc\x49\x7f\x0a\xab\x8c\xa2\x56\x82\x5c\x0c\x73\x6a\x31\xe9\x6c\x56\x9b\x55\xa1\xc5\x03\xfc\xbf\xfc\x95\xc6\xe0\x89\x73\x29\x76\x4d\x94\x34\x51\x93\x20\xad\xa8\x03\xb1\xee\xd8\x2b\xaf\x78\x41\x42\xbc\xfc\xcf\xfd\xd5\xc7\x7e\xe9\xfb\xe8\xf1\xe7\x25\xa1\x27\x18\x96\xc1\x43\xdd\x9e\x60\x29\x32\xe2\x3d\x3d\xe5\xf7\xc9\x04\x6a\x2d\x8a\xf3\x83\xb0\x1c\x4b\xb8\x51\xa1\x1f\x12\x40\xa3\x88\x13\x16\x11\x49\x6f\x60\x52\x24\xbb\x83\x33\x45\x83\x3f\x77\x7e\xdc\xb1\xf0\xa2\x44\xab\xd0\x6a\x98\x2f\xa8\xbc\xd8\x3c\x52\x6f\x64\xe1\x1c\x3f\xc0\x1a\xeb\xd6\x7d\x7e\xfd\xc5\xc2\xa5\x5b\xca\xce\xb8\xb6\x2c\x2d\x40\x18\x19\x11\x22\x53\xc4\x89\x34\xc8\x72\xfb\x98\x8d\x7a\x7e\xcc\x26\x39\x19\xa1\x64\x4b\x72\x7a\x6a\x0a\xd2\x20\xcd\xed\x62\x36\xc2\x98\x9f\xa3\x89\xc9\xe6\x2c\x8a\x8c\xb4\xa2\xe3\x40\x57\x76\x76\xd7\x81\x8e\x1b\xdf\x4c\xae\xdf\xdc\x95\x49\x34\x66\x7b\x4a\x04\xce\xaf\xc8\x2e\x37\xc7\xc4\x98\xcb\xb3\x89\x93\xef\xcf\xf3\x6c\xa9\xab\xdd\xda\x6d\x13\xb4\xb5\xfb\x7f\x73\x61\xe1\x03\x50\xb2\xf1\xa9\x51\x78\xcf\xf7\x1f\xfc\xbd\x3a\x7b\x55\xaa\xd6\x95\x97\x2c\xd8\x35\x7b\x10\x22\xf7\xd3\x9c\x19\x9d\x18\xe9\x98\x17\xae\x51\xcf\x0b\xc4\x7c\x51\x14\x46\x7b\x9b\x28\xcc\xbf\xbc\x0b\xda\x77\x2e\xca\xc8\x58\xb4\xb3\x9d\xff\xdb\xbf\xbc\x5e\x78\x76\x41\xba\x53\x1f\x1d\xad\x77\xa6\xe3\x8b\x70\x96\xef\xcb\xf3\x6c\xa9\x15\x1a\x8a\x43\x7d\xff\x4b\x9c\xf3\x9b\x87\x00\x25\x22\x44\x2c\x1c\x42\x49\xc8\xee\xb2\xca\x31\xc6\x0c\x34\x48\x81\x63\x01\x01\x87\x82\xf1\xbc\x64\xa1\x9d\xd8\x13\x0c\xc5\xc8\x64\x54\x59\x08\x99\x37\xc8\x65\xb7\x19\xd4\x67\xf9\x77\xe7\x97\xcf\xbb\xef\x3e\x2f\x58\xc9\xab\xfc\x4f\x6e\x2d\xa2\x47\x5e\x3d\x7d\xe5\x0a\xd5\x23\xf9\xf3\x7e\xbd\x54\xd8\x59\x18\xcc\x8c\x53\xbe\x52\xaa\xa7\xe0\x2e\x7f\x23\x6e\xd1\x23\x82\x81\x19\x19\x2c\xc3\xd1\x5e\xfe\x21\x2f\x7f\x56\xdc\xdf\x6f\xbc\xc5\x9f\x87\x7e\x51\xc7\x5c\x33\xf3\x29\xad\x33\xad\x17\x33\x63\xc4\x62\xeb\x84\xc1\x58\x39\xa7\xbc\x9a\x18\xb4\xd4\x23\xbd\x4e\xae\x53\xe8\x0d\x74\x1f\x95\xcf\x8f\x60\xcb\xad\x72\x31\x3b\x56\x2e\xa6\x71\xd8\x6d\x72\xb2\x03\x2c\xcd\xc3\x15\xcd\x1b\x52\x52\x36\x34\x55\x0e\x37\x5b\xe0\x1a\x14\xe5\x17\x57\xc3\x6b\xd5\x25\xf9\x4e\x60\xa7\x6e\x1c\x6d\xdf\xb1\x38\xa3\xa1\xbe\xce\x9d\xb1\x78\x47\x3b\x19\xbb\x71\xb4\xb3\xbf\xbf\x73\xf6\x5f\xa1\x7d\x3d\x33\x9f\x90\x49\x52\x74\x6b\xfb\xd4\x5f\xd0\x3e\xd9\xcd\xed\xf3\x37\x4b\x16\x68\xa8\x8c\x4c\x5a\x5a\x46\x2a\x9a\x27\xb4\x29\x1b\x9a\x2b\x47\x9a\x33\xc0\x5b\x6c\x2b\xae\x7d\x0d\x6a\x4a\xf2\x4b\x48\x91\x0f\xda\x77\x2c\x12\x1b\xb7\x68\x47\x3b\x9e\xf1\x41\xe7\x8a\x15\x9d\xb3\xff\x22\x4c\xc7\x4a\x31\xa7\xa6\x63\xd9\xe1\xca\x47\x2c\x61\xc7\x38\x20\x0c\x88\xce\x21\x08\x01\xa9\x04\xa4\x7d\xc2\x50\x59\x22\x2a\x47\xb3\x23\x5a\xd0\x8f\x42\xc5\x08\xf5\x5c\x3e\x41\x91\x53\x6a\x4e\x94\x0b\x7f\xc8\xbf\x0a\xf2\xde\x53\xab\xec\xf6\x55\xa7\x7a\xf9\xfc\xaf\x7f\xdd\x0b\x15\xc2\x21\x67\xbb\x2d\x2e\xce\xd6\xee\x24\xf9\xfc\xda\x5c\x8f\xa0\x2b\x2d\xc9\x27\xf9\x67\xa0\x91\x7f\xde\x57\x22\x28\x4c\xe5\xfa\xd4\x2a\x41\x31\x00\xb4\x7d\xe6\x0f\xe4\x04\xfb\x26\x72\xa0\xb7\xc5\x24\x95\x5c\x84\x19\xc4\x08\x66\xb3\x3f\x5e\x4d\x00\x85\x00\x2b\x41\xfe\x88\x75\x18\xf8\x43\xd6\xd2\xee\x50\x90\x4a\x35\xd2\x00\x73\x8b\xed\x0e\x37\x86\x85\x29\xdd\xf3\xe2\xdd\xb3\x37\xbb\x0a\xbf\xfc\x7d\xa1\xa1\x2a\xf1\x66\x44\xef\xf5\x78\x5c\x31\x0e\xbb\x2d\xdf\x9a\x27\xfa\x3e\x63\x0d\xd1\xe1\xc2\x2c\xb3\xde\x52\x77\x7e\x5e\xb0\x3c\xb8\x24\x8b\x2b\x84\xed\x54\x5e\xcf\xa1\x8e\xb6\xc9\x45\xb9\x92\xaf\xb0\xea\xf4\xd2\x8c\xec\xea\x4c\x15\xc4\xf3\xbf\x51\x65\x56\x67\x67\x94\xa6\xab\xb8\xaf\x48\x72\x17\x4d\xb6\x75\x1c\xea\xc9\x3b\x75\xed\x1a\xe3\xea\xdb\xfd\x9d\xbb\x1b\x8a\x86\xcf\x2f\x2f\xe9\xab\x35\xda\x57\xde\xbf\x64\xe5\xe9\x07\x96\x1e\x5f\x69\xd7\x57\xf6\x96\x76\x9e\x5e\x57\xda\x70\xe4\x3b\xbb\x1f\xf0\x75\x88\xd8\xb7\x07\x68\x0e\x54\x33\xb2\xa2\xc3\xa2\xb6\x92\x8b\x42\x42\x25\xa1\x21\xb3\x30\x86\x30\x90\x10\x8a\x63\xe8\x45\xa1\xa1\x5c\xb7\x14\x38\x4e\x2d\x02\x19\x84\x41\xac\x61\xa8\x88\x3e\xff\x1e\x7a\x75\x68\x28\x95\x49\xb2\x3f\xed\xc1\xef\xdf\xd0\x30\x8d\x1e\x57\x8c\x35\x2f\x2b\x23\xcd\xa4\x97\xc9\x64\xb1\xfa\x58\xbd\x28\x21\xad\x3f\xf0\x63\x9d\xa7\xd8\xc8\x02\xfa\x4e\xb0\xb2\xb1\x96\xf9\x16\xff\x01\x56\xa4\x57\x66\x6b\xf2\x0c\x0a\xb8\x9a\xb7\x68\xdc\xe5\xd9\xdf\x9d\xc3\xdc\xeb\xf5\xde\x8b\x73\xba\x0f\x78\x6a\x37\xb4\x67\x5e\x95\xeb\xad\xda\xec\x4a\x8b\x02\xc0\x02\xef\x57\x6c\x5e\xea\x48\xc8\x29\xd3\xbb\x26\xba\x6c\xee\xbd\x53\x03\x7c\x0e\x71\xf2\x99\x03\xcf\xec\x6b\x2c\x58\xbe\xbb\x21\xad\xa1\x40\x5b\xb0\x6c\x8b\x4b\x58\xef\x4d\x08\x91\x67\x69\x7c\x25\x52\x58\xbd\x22\x81\x13\xf4\x1b\x0e\xfb\xd7\x53\x42\x94\x6e\xd6\xef\x35\xf2\xd3\xac\xd1\x88\x76\xc0\x63\x64\x05\x1d\x68\x19\x66\xe5\x45\xef\x89\xe3\xaf\xc0\x67\x0f\xc3\x9f\x5f\xf1\xbd\x08\xfb\xbe\x0e\xd7\xf8\x3a\xe1\x87\x86\x77\x3c\x98\xae\x84\xb4\x2e\xfd\x6e\xba\x4e\x46\x0b\xef\x8a\xba\xe5\x5d\xea\x2f\xf1\x2e\x93\x84\x69\xd8\xe5\x3d\xb8\xf1\x15\x78\xe3\x02\x7c\xeb\x55\x9e\x40\xf5\x11\x75\x1c\x98\xf9\x0f\x85\x1f\xaa\x37\x7d\x03\x3a\xda\xdb\x05\x3d\x35\xc8\x27\xa7\x14\x74\x37\xa5\xa0\x16\x35\x84\x82\x44\xb0\xc0\x40\x82\x56\x08\x9f\x59\xe9\x0e\xa1\x46\x1f\xf5\x8a\xcd\x21\x93\x0b\x9b\xe3\x17\x93\xfb\xbf\x8c\x9c\x96\x17\x63\x98\x8b\x35\x27\xaa\x07\x5f\x99\x78\xdc\xeb\xfd\xde\xfb\x17\xa0\xfd\x65\xfe\xd2\x4f\x06\xe1\x07\x7c\x46\xe0\x87\x9d\x9a\x7e\x93\x29\xfa\xac\x15\x4f\x60\x22\xf4\x7b\x14\x21\xf2\x0a\xf5\xbd\xdc\xb6\x1d\xbd\xe2\x70\xfb\xbf\xb7\xe3\x4a\xdd\x83\x2d\x4b\x5f\xe9\x3b\xed\xf5\xbe\xfb\xc1\x05\x58\xf0\x0a\xff\xe4\xf7\x57\x82\x81\xff\x49\xe0\x87\x38\x7d\x77\xe3\x0d\x37\xde\x82\xb7\x60\x89\xd0\x8e\x45\x08\x91\xfd\x74\x2f\x31\xa1\x02\x97\x2d\x8e\x7a\x68\x31\x20\xce\x6f\x0a\x49\xa5\x34\xa2\xae\x74\x87\x48\x58\xc6\xef\xb8\x34\x19\x85\x75\x3b\x37\xc6\xa0\x90\xc5\x28\x42\xb9\x04\x8b\x58\xc7\xc7\x0a\x5a\xd0\x30\x81\x7c\x06\x9d\xb0\x85\x9a\xfc\xc4\x3e\x72\xed\x62\xc8\x5d\x7a\x70\x31\xc3\x5f\x65\x7e\xc6\x7f\x67\xf1\x81\xa5\x39\x5e\x65\x46\x65\x56\x55\x88\x97\x69\xcd\x12\x46\x68\xef\x7f\xf0\xed\x70\x65\xc5\x11\x8f\x19\x9f\xf2\xad\x06\xb3\xe7\xf0\x0a\x7e\x11\x5c\x29\x69\xcf\x53\xc6\xfa\xee\xc7\xdb\x59\x65\x5e\x7b\x09\xbf\x88\x29\x85\x1f\xd3\x71\x33\x84\x10\xf1\xd0\xdc\x4a\x13\x2a\x74\xd9\x13\xd4\xf8\xf6\x0d\x57\xdf\xd4\x70\x1d\xd2\xc9\x85\x86\xcb\xc4\x86\xfb\x01\x39\x42\xbb\x15\x3a\xd3\x4d\xed\x56\x80\x55\xae\x1d\xb2\x2c\xd8\xe4\xe6\x7f\xc3\x4c\xf1\xbf\xae\x1f\x6b\x4d\xf7\x42\x6c\x5a\x49\x7a\x6e\xe8\x75\xb6\x24\xbd\x24\x2d\x16\x2a\xd8\x67\xf9\x53\x3f\xe9\xbb\x77\x49\x36\x03\x3f\xe3\x53\xd8\x9c\xa5\x77\xf7\xfe\xe4\x27\x95\x1e\xbb\x4a\xc6\x37\xc1\x4b\x21\x2a\xbb\xa7\xf2\x27\x78\x09\xd4\x20\x8c\x5a\xfd\x18\x58\x1d\x32\xa2\x22\x57\x41\x64\x18\x65\xe9\x0e\x01\xc4\x11\x8c\x01\xe1\x3e\x14\x16\x26\xf5\x08\x0b\xb0\xd2\x2d\x09\x7c\x79\xa3\x41\x97\xaa\x4d\x91\xc9\xe4\xf2\x8a\x18\x9d\x5c\x5c\x26\x94\x4a\x85\x4c\xc7\xe4\x1b\xfd\x8d\xb5\x60\x8e\xa3\x07\x1c\xe2\x60\xd0\x32\x5a\x90\x6b\x99\x7b\x37\xef\x3a\x0b\xd6\x12\x9d\xe4\xac\xd4\x88\x49\x61\xee\x59\x88\x7d\xe0\xca\x15\xd8\xfd\x09\xfe\x1d\x7f\xf7\x6e\x9e\x67\xd4\xec\x3d\xf7\xf3\xe1\xf0\x37\x77\x79\xac\xef\x04\x1e\x52\xe1\xf2\x7a\xe1\xcf\xd6\x62\xdf\x2e\x76\xca\x37\x88\xcf\xf8\xde\x85\x07\x10\x46\x6d\x08\xd1\x9c\x69\xff\x18\x89\x0a\xc3\x34\x65\x54\xca\x52\x8e\x39\xe8\x43\xa1\xa1\x12\x4f\x08\x48\x24\x6a\x37\x47\x30\x43\x8d\x1e\x93\x91\x96\x06\x96\xcb\x2b\x62\xe5\xb1\x61\x37\x35\x5a\xf7\xb9\xad\xd6\x31\x5f\x19\x1e\x3b\x0b\xb6\xb2\x98\x70\xee\x5c\x68\x0a\xc1\x85\xf9\x67\x41\x71\xfe\xca\x15\x18\xfb\x4f\xfc\x53\xfe\xbe\x6d\xff\xc4\xad\x61\x87\xef\xe6\xbf\x07\xd9\x8d\xae\x24\x7e\x05\x5c\x52\x62\x57\x83\xf0\x67\x5b\x11\x5f\x4d\x9c\x7c\x1c\x7c\xcc\xe7\x41\x19\x1d\x23\xef\xf0\x35\x44\x2f\xd9\x80\x4a\x51\x2d\x5a\xe8\x6a\xab\x06\x09\xa7\x00\x16\xe1\x06\x93\x11\x33\xb5\x52\xe0\x24\xdc\x18\x92\x60\xc9\x58\x08\x20\x24\x32\x0a\xfb\xf3\xaa\x95\xc1\xea\x9c\xd4\xce\xae\xad\xa9\xaa\x2c\x77\x95\x14\x59\x73\x92\x13\xc3\x43\x43\x24\xa8\x14\x4a\x43\xe7\xe4\x4b\x68\x6d\x01\x7d\x20\xe0\x7f\x0e\xa0\x27\x24\x59\x0c\xe5\xbe\x98\xe3\x87\x96\x07\x79\x52\x12\x2f\x9c\x35\x34\x0c\xd7\xf1\xdf\x85\xbc\x81\xab\xbb\xea\x75\xae\x25\x85\xbb\x8e\x36\xec\x9e\x5a\x69\x6b\xae\xd5\xe6\x39\x54\x0d\xd9\x4b\xdd\xd9\x90\xd3\x31\xe9\xce\xaa\x18\x6e\x4a\xcf\x5c\xbc\xad\xe5\x9e\xaf\x8a\xdc\x2a\x8c\x03\xf6\xac\xcf\xeb\x70\xe9\xcf\xd8\x56\xde\xbf\xd4\xb6\xac\xd5\xa5\x4c\x7b\x6a\xdf\xc0\x85\xb5\x05\xa5\xd6\xb4\x92\x8c\xe4\xd0\x6d\xb1\x45\xad\xfd\xc5\x95\xcb\x4b\x35\x69\xb5\x7d\xc5\xd5\x03\x15\xda\xd3\xcc\xa5\x20\x1f\x0b\x46\x3f\xe5\x6b\x48\x08\xa7\x41\xc5\xa8\x5a\x90\x4d\x25\x48\x38\x39\x95\x8d\x41\xff\x05\xb2\x51\xcf\x97\x4d\x75\x55\x45\x79\x59\x69\x51\x61\x6e\x56\x52\x3c\x95\x4d\x31\x14\x87\x8a\xfe\x79\xd3\x5c\xd9\x70\x73\x44\xa3\xfa\x42\xd1\x64\x1c\xda\x0f\x5a\xd7\x92\x62\xfe\x07\x90\xd1\x7d\x61\xa2\x6a\xb0\x7b\xd5\x58\xd5\xc6\x87\xbb\x73\x9a\xeb\x40\x10\x8d\x3b\x6b\xa9\x3b\x07\x72\x3a\xb6\xba\xcd\x8e\xa5\x15\x46\x73\xe3\xda\xca\x7b\x2e\x89\xa2\xc1\x43\x8b\xdc\xda\x82\x34\xd5\x59\x73\xeb\x78\xbd\x7b\xa3\x2e\x79\x8b\xa7\x79\x73\xbb\xe5\x16\xb9\xa8\x33\x4a\x8d\x96\xb2\xb4\xd8\xd3\x4c\x52\x50\x2e\x0c\xe5\xe7\xea\xa2\x71\xd2\x2c\x54\x26\x68\x88\x1c\x60\x09\x10\x16\x93\xb9\x89\x81\xfe\xc0\x95\x06\x35\xe6\x64\x27\x6b\x0a\x1d\xd9\x65\x39\x65\x69\x46\x4d\x56\x72\x56\xa6\x51\xca\x29\xe7\x73\x70\x69\x88\x8a\xd5\xda\xfc\xbc\x06\xac\xf6\x0b\xe8\xb7\xfc\x9c\x06\xd3\xaf\xe1\xc3\xf3\x69\x0d\xf0\x61\xdf\xc6\x2f\xc1\xbf\x25\x12\x1b\x84\x84\xcd\x65\x36\x78\x94\xbd\x89\x7c\x8b\x41\x4b\x67\x3e\x25\x36\x8a\x15\x4c\x41\x16\x51\x13\x46\x0c\x66\x19\x5a\x02\x9f\x76\x2e\xd9\xcd\x81\x9f\x0c\x45\x03\x8d\xa9\x5a\x95\xd2\x64\xd4\x5a\x52\x2d\x89\x09\xca\x14\x55\x8a\x59\x2f\xf5\xbb\x9e\xe7\x7b\x99\x80\x7a\x98\x34\x8c\x9c\xaa\x29\x59\xcc\xd2\x9b\xeb\x0e\xc3\x1f\xaa\xd7\x34\x66\x48\x7c\x0f\x4b\x32\x9a\xd6\x54\x55\xad\x6e\xcc\x92\xe0\x1e\x69\x66\xe3\x9a\xdb\xd4\x1f\xe6\xd7\xdb\x96\x6c\xad\xa9\xd9\xba\xc4\xc6\xe4\xe7\x77\x6d\xa9\xaa\xda\xd2\x95\x8f\x00\xc5\x23\x44\x3e\x62\x5f\x47\xb1\xa8\xfc\x05\xf0\xd7\x22\x4d\xf0\x57\xe0\x16\xd1\x27\x62\x88\x1a\x37\x26\xd0\x32\x6e\xca\x20\xc1\x64\xe0\xb8\xe7\x6b\x32\x85\xd6\x24\x66\xdd\x38\xa0\x94\xb1\xaa\x24\x54\xaf\xa2\xa5\x42\x6b\x53\x53\x01\xab\x0b\x6a\x3a\x0b\xb2\x20\x22\x21\x5d\x97\x18\xc9\x6f\x7f\x92\xe7\xbe\x07\x1b\xf7\xec\x66\xcc\x4d\x23\x75\xa9\x70\x25\x5a\xe7\x30\xde\xd8\x42\x13\x47\x80\xae\x8f\xcb\x49\x33\x8a\x45\xdd\xfe\x1a\x19\x7e\x02\x3c\x11\x84\x24\xfc\xc5\xf8\xff\xf2\xdc\xdc\xd2\xe4\x79\x2d\x55\x07\x5b\x9a\x3c\xdb\x52\xb9\xc1\xe0\x6f\xa9\xdc\x6e\x57\x05\x08\xf3\x38\xb1\xb1\x09\xea\xb8\xa9\xf4\xbd\x4d\x89\xf9\xf1\x0a\x4e\x15\xa9\x2d\x8e\xe4\x5f\xbf\x87\x1f\x78\x15\x8a\x57\xae\xc4\xc9\xbb\xc7\x40\x22\x3b\xc1\xb0\xf9\xe6\xe9\xe7\xa9\x13\x9a\x41\xd5\x7c\x1b\xb9\x4e\xeb\x2f\xe4\xa1\x3a\x54\xee\x2a\x55\x81\x04\xe7\x00\x92\x18\x28\x5a\x30\x50\x31\x2a\xc9\xcd\x8a\x6e\xd9\x40\x90\x9f\x4e\xfa\x25\x88\x61\xb4\x4c\xa3\xd9\xa0\x2c\x54\xa8\xcc\xf3\x63\xfd\x41\x9c\x05\xa8\xe4\x56\x26\x50\x52\x34\x90\xc8\xc4\x58\xd9\x20\x10\x3c\xe0\xa6\xc3\x87\x4d\x8d\xeb\xeb\xab\x87\x6a\x75\xba\xda\xa1\xea\xfa\xd1\x26\x13\xc4\x46\x0d\x3d\xf6\xe7\x90\x54\x47\x6b\x61\x68\x5c\xbc\x5a\x42\x38\x79\xac\x9c\x4b\x32\x27\xc8\x58\xf5\x85\xc7\xf8\xf5\xe1\x09\x99\x29\x29\x96\xf8\xf0\xf0\x78\x4b\x8a\x36\x23\x21\x1c\x3e\x1e\x7f\x69\x7f\x5d\xdd\xfe\x97\xc6\xe1\xa3\xf1\x97\x85\xdf\x5e\x1e\xe7\xaf\x3c\x8a\x57\xdf\xd0\x98\x96\xb4\xd8\x18\x96\xc3\xc7\x04\xb9\x9b\x9d\xa5\x8a\x65\xa4\xc8\x5d\x37\xde\x66\xb1\xb4\x8d\xd7\xf9\xbe\x5f\xb7\xa1\x2d\x23\xa3\x6d\x43\x1d\x95\x89\x83\x6f\x23\x2f\xd1\xb9\x20\xc8\x64\x9d\x2b\x52\x05\x9c\x24\x07\x80\x33\x00\x81\x00\x2d\xa8\x96\x06\x72\x59\x8c\xa9\xef\xdc\x2f\xa6\x79\x62\x49\x70\x19\xe6\x0b\x2d\xf9\xf6\xd7\x51\x6f\xe6\xac\x04\x6f\x9d\x43\x86\xdb\x4b\xf0\x56\xff\xa6\x43\xd7\xb4\x79\xd1\xe2\xc9\x26\xbd\xbe\x69\xcb\xa2\xc5\x5b\x1a\xf5\xcc\xaa\x88\xb5\xb7\x15\x60\x34\xa7\xbe\xf0\x98\xef\x5e\x69\xa2\x2d\x33\xd3\x96\x20\x95\x26\xda\x33\x33\x6c\x09\x52\x9c\x36\xf1\x6d\x61\xaa\x7d\x7b\x42\x35\xf1\xed\xe3\x0b\x17\x1e\xff\xf6\xc4\x8a\xe7\xf0\xe4\xed\xc5\xe7\xfb\xb0\xf5\xd8\x48\x79\xf9\xc8\xb1\x56\x55\xf3\xb1\x91\x8a\x8a\x91\x63\xcd\x88\xf2\x05\xaf\x9e\x19\x27\xbd\x9c\x8d\xf2\x9c\x18\x50\x25\xba\x22\x02\x34\xb3\x10\xb0\x2c\x0c\x20\xc4\x31\x1c\x1a\x44\x8c\x44\xc2\x0c\x20\x4c\x08\x5e\x35\x27\x93\x44\x22\x21\x4b\xc4\x40\xaf\x1f\x8c\x91\x79\xfb\xbb\xf0\xf8\xed\x6f\xa2\x6f\x81\x31\xf1\x72\x66\x14\x31\x12\x8e\x91\x8c\x7c\xfe\x0d\x1e\x8f\x2b\x8c\x32\xd0\xcc\xe6\x86\x5a\xa9\xb9\xf9\x05\x3c\x34\xf8\x9b\x5e\xaf\xd7\x0b\x17\xfe\x6d\x1e\x1a\xf2\x1c\xec\xf9\x57\x29\x1c\x81\x03\xff\x16\x1b\x8d\x20\xe7\xc9\x99\x5e\xd2\x4e\xbe\x43\xe5\x9c\x84\xac\xa0\x14\x41\xb4\x59\x08\x08\x11\x24\x26\x61\x24\x82\xc4\x38\x4e\x90\x18\xcb\xe2\x55\x42\xbf\xbb\x11\x21\x74\x20\xb2\x4b\x10\xcb\x6a\xd8\x00\xb8\x36\xf3\xf6\x77\xe1\xf1\xcf\xbb\x49\x49\x2b\x31\x01\x11\x84\xfd\x65\xef\xf1\x7f\xd0\x79\xf7\x48\x18\x6e\xe4\x0e\x37\xd1\xee\x04\xae\x17\x3e\xe8\x17\xdc\x20\x02\x08\xcc\x66\xb3\xe1\x96\x4f\xfa\x25\x2a\xc8\xe0\x37\xae\x5f\xbf\x7e\xdd\xf7\xb5\x2f\xac\x8e\xcf\xd4\xc0\xfe\xcf\x4e\xc1\x69\xc8\xfe\x32\x55\xf2\x19\xd4\x34\xf3\x09\xd9\x2b\x69\x43\xf9\xa8\x11\x75\xa2\x21\xd7\x40\x19\x44\x84\x96\x03\x0a\xe9\x04\x82\x22\x01\x58\xd2\x80\x22\x42\x43\x42\x23\x42\x46\x11\x47\x58\xc2\xb1\xa3\x28\x0c\x85\x46\x84\x85\xf6\x45\x42\x38\x0a\x41\xe1\x21\x7d\x52\xba\x15\x8b\x09\xa3\x12\x08\xf0\x94\x68\xa0\xd1\x66\x6b\x6f\xb3\x35\xda\xdc\x35\x55\x25\x45\x05\x76\x85\x4e\x6e\x90\xc5\xe9\xcd\xd1\x51\x82\x9a\x3d\x9b\x4b\x16\xf4\xa3\xd1\xa5\x59\x21\x68\xdb\x01\x77\x9a\xf8\x8b\x43\x66\x34\x9a\xe4\x0a\xe1\x1a\x41\x5f\x95\xe8\x68\x89\x5b\x0d\xb1\x0a\x7a\xad\xcd\x4a\xf5\x59\x26\xb5\x79\xcf\xd2\xfc\xac\x05\x13\x35\x8d\xe3\x29\xda\x71\x77\xed\x86\x05\x59\xd6\xa5\x7b\x5a\x9a\x3d\xd5\x25\xc5\x35\xd7\x6b\x8a\x8b\x6b\x00\xba\x9a\x5e\x4a\xaf\xdf\xb0\xbc\xcd\x98\x57\x08\x3b\x27\x87\x53\xcb\x4a\x4a\xab\x9a\x32\xf9\x3a\x6d\xea\x11\xa5\x3e\x3b\x8e\xbd\x6a\xed\x3f\xbe\xdc\x67\xe9\xd8\xdf\x95\x5d\x57\x53\x53\x97\xdd\xb5\xbf\x03\x7f\xb0\xfc\x78\xbf\xf5\x34\xec\xd8\xe0\xb3\xf4\x0e\xf7\x77\xc2\x34\x4f\x3a\xfb\x87\x7b\xf1\x07\x1b\x76\x00\xbc\xb4\x33\x2d\xdb\x64\x77\xc4\xe8\x47\xd6\xca\x13\xb4\x89\x72\xfe\x58\x5a\xad\x71\xf9\x40\x52\x91\x2d\x33\x42\xd4\xd3\x56\xcd\x7c\x42\xb6\xb1\x3f\x45\xf9\xa8\x01\x2d\x46\xcf\xba\x62\x02\xf2\x5d\x1c\x94\xaf\x7b\xca\xd8\xda\xe9\x2a\xbe\x59\xcc\x41\xf1\xa2\xd0\xd0\xb0\x6e\x14\x16\x96\xe4\x9e\x15\x74\xf2\x7c\x41\x27\xb8\x9c\xff\x87\xaf\x74\xd3\xcd\x1e\x57\xbc\xcd\xd6\xda\x62\x6b\xb0\xd5\xff\x7b\x1f\xca\x21\x0b\x3a\x40\xf3\x6f\xf7\xa1\xf0\xbc\x0f\x95\xd9\xb0\xd5\x93\x6b\x69\x19\xa9\x6c\x1c\xd3\x6a\xc7\x1b\x2b\x47\x5a\x2c\xb9\x9d\x5b\xdd\xd5\xad\x45\xf6\xe2\x1a\xb8\x5e\x53\x6c\x2b\x69\xab\xfe\xa6\xa5\x61\x43\x6f\x9b\x29\xcf\x09\x3b\xb7\x0e\xe7\x77\xf7\xac\xad\xe2\x2b\xfd\x5f\x89\x34\xe5\xf5\xdd\xbf\x9c\x3f\xd0\xb1\xcf\x93\x59\x53\x53\x53\x93\xe9\xd9\xd7\x01\x93\xcb\xef\xef\xcb\x3b\x0d\x5b\x36\xf2\x07\x7a\x87\x96\x77\x42\x04\xff\xd7\xce\xe5\x43\xbd\x30\xb9\x71\x0b\xc0\x93\xfe\xaf\x64\x18\x59\x63\xca\x4e\xe3\xef\x9d\xff\x8d\xc4\x98\xe0\x7e\x09\x41\x12\x94\x81\x36\xbc\x20\x03\x22\x11\x34\x35\x61\xf1\x31\x20\x0c\x1c\xe0\x41\x14\xa8\xa2\x17\x16\x2a\x65\xa8\xe3\x05\x84\x39\xce\x82\x7f\x71\x37\x8a\xd7\x71\xa3\x77\xbe\xd0\xe3\x8a\x95\x4a\xa5\x19\xd2\x0c\xb3\x49\xae\x53\xe8\x8d\x94\xf9\x9f\xfa\xd3\x54\x5a\x85\xce\xa6\x65\xbf\xd8\xf1\x0d\x09\xf8\x7d\xe0\x7f\xf9\x38\xff\x37\x66\xe8\x8e\x2e\x70\x09\x59\xbb\x7d\xfb\x6f\xbf\xd8\x0d\x8e\xb0\xe8\x07\xa7\xfc\x5c\x19\x68\xf3\xbc\xfe\x9b\xfc\xfd\x17\xe9\x0b\x69\xba\xaf\xd8\x31\xf5\xcd\x12\x48\x0b\x48\xe0\x8b\x2e\xfd\x22\x19\x7c\x09\xe7\x3a\x10\xfc\x43\xe0\x7f\xfe\x38\xff\x67\x66\xe3\xe7\xbb\xd9\xd9\xa9\xb5\x3b\x77\xf2\xff\xf8\x42\x5f\x3b\xa0\xd3\xfc\x1e\xb2\x92\x7d\x13\xe9\xd1\x82\x60\x1d\xc3\x24\x8a\xb7\xf4\x63\xaf\xe6\x58\x54\xfe\x8a\x0a\xf1\x7e\x9e\x63\xff\x79\x7f\x19\xc2\xc0\x65\x4c\xa3\xe7\x45\xb3\x3e\xd6\x42\x33\x3c\x80\xa6\xb9\xdc\x1c\xbf\x13\xb3\x1f\xad\x4c\xba\x77\xe4\xea\xd6\x8a\x9a\x3d\xd7\xc6\x46\xa6\xb6\x56\x7a\xc1\x58\xbf\xb6\xd6\x3d\xd1\x6a\xce\x59\x7a\x57\xe7\x30\xbf\x07\xd6\x45\xae\xb9\xf4\xc1\x96\x7f\xec\xfd\xd5\x13\xbd\xd5\xbb\x9e\x1b\x71\x6f\xeb\xc8\x69\xda\x7d\x65\xd9\xbf\x7a\x9e\xda\x4b\xb9\x36\x5e\xe3\xf7\x90\x22\xd2\xfc\xc5\x6d\x4f\xfe\x72\x6d\x4f\xbe\x63\xdb\xe7\xc2\xe2\xad\x56\xec\xf3\xf6\xdc\xb7\xc2\x5a\xba\x79\x6a\xac\xfb\xdc\x68\xd9\x55\x63\x79\x57\x7e\xe3\xda\x1a\x6d\x4a\xcd\xda\xa6\x01\x7e\x0f\x8c\x46\xf7\x1e\x7b\x6e\x85\x18\x6a\x5c\x7d\xef\x82\xdc\xce\x0a\x63\xf5\xba\x23\xd5\xfe\x82\xdd\x80\x36\x22\x44\xee\x67\x4b\xc5\xbc\x2e\x79\x8c\x2c\x3a\x22\x3c\x2c\x34\x44\x2a\xe1\x18\x0c\x51\x22\xda\x57\xe4\x94\x54\xa1\xc6\xb8\x58\x2c\xd8\xab\xac\xc4\xc0\xe8\xe4\x06\x07\x4b\x7f\xac\x0c\x2b\x31\xe0\x2e\xd0\x56\xf1\xff\xfd\xb5\xc7\x3f\xe2\x7f\x56\x05\x86\x77\xf9\x9f\xd6\x80\xee\xe5\x4b\x1f\x83\xa1\x8e\xff\x39\xbc\xfa\xd4\xd6\x27\xf9\xd7\xe0\xe8\x95\xad\x57\x60\xf8\xca\xf6\x2b\xe0\xe6\x07\xaf\x4c\x3e\x49\xed\xa1\xef\x91\xcb\xcc\x7d\xec\x34\x92\xa0\xbb\xc5\xe1\xae\xa6\xfc\x99\x03\x94\x50\x72\x15\x01\x3f\x4a\x47\xc9\x04\x54\x04\x55\xf0\x3c\x1a\xbf\xe9\x74\x32\x65\xeb\xa0\xbc\xd7\xb7\x9c\x75\x25\xcc\x9e\x40\xc2\x89\x45\x14\xf1\x44\x80\x01\xa6\x59\x50\x0b\xc2\x11\x42\x12\x24\x91\xc9\x64\x2c\xa7\xb2\x80\xc2\xe4\xd0\x9a\x54\x0a\xd8\x74\x19\x70\x02\x5c\x62\x75\xdb\xe1\x77\x6b\xe1\x47\xb4\xcd\xd3\xac\x8a\xf9\x1f\x4e\x81\x54\xa8\x45\xdc\x37\x14\x01\x18\x17\x01\x4a\x9e\x23\xec\xc2\x58\x64\xcc\x41\x0c\x46\x1d\x73\x51\x5e\x34\xa5\x01\xe1\x16\x8f\x4b\x06\x48\x19\x2b\x8b\x0a\x0f\x93\x72\x48\x05\x2a\x8e\x3a\x42\x4a\x89\x35\x4f\xa9\x50\xe8\x6c\x62\xf6\xb3\x4e\x67\x03\x63\x7e\x57\x4b\x5d\x6d\x5d\xda\xc8\xae\x5d\x65\xd6\xcc\x65\xeb\x0e\x2e\xca\x60\x4f\xc9\x13\xb5\x89\xf2\xb5\x23\xfa\x98\x82\x7c\x53\xb6\x69\x07\xe5\x82\x7d\x9d\x55\xe2\x67\xb9\x0e\xc4\xfa\xeb\xec\x21\x42\x79\x87\x86\x64\xc0\x29\x2c\x60\xb3\x4a\x54\x12\x78\xfd\x79\x28\x6e\x66\xff\xbf\xad\x77\x6f\xa0\x79\x00\xb8\x98\x55\x32\xe9\xf4\x1e\x99\x2b\x92\xc5\xc0\x88\xb7\xc8\xe9\x2d\x26\x87\xcd\xaa\xc0\x77\x35\x3a\x9f\x67\x95\xe5\x1b\xee\xde\x8a\xa4\xfc\xc7\xfc\x1b\xdc\x5e\xf6\x2a\xad\xc9\x57\x8e\x3a\xd0\x30\xda\x8b\xce\xa2\xab\x50\x22\x8a\x7f\x20\x85\xc1\x80\x09\x06\x32\x6a\x50\x29\xb4\x12\x96\xe5\xa4\x1c\x2b\x1d\x35\x26\xc4\xa5\x86\xb1\x21\xa1\xe1\xa1\x21\xe1\xa3\x7a\x39\x96\xc5\xc8\xc6\x63\x81\x28\x81\x63\x09\xd7\xa7\x06\x69\x3c\x84\x86\x48\x43\xfb\x12\x21\x5c\x03\x91\x11\xe1\x91\x7d\x28\x1a\xc5\xc8\xa2\x63\x82\xa5\xd3\x95\x6e\x53\x72\x92\x2e\x8a\x8d\x88\x50\x45\x34\x26\xb8\x86\xbe\xcc\x8b\xfc\x77\x44\x46\x47\x46\x44\xff\x9b\x6f\xc5\x8d\x1e\xd7\xf2\x73\xe7\xf6\xed\x1b\x19\xe9\xec\xac\xa8\xc8\xc8\x50\x2a\x11\x3a\x77\xf5\xdc\xd5\x2b\x4f\x5c\x7a\xec\xe1\x87\xf6\x9d\xdd\x77\xf6\xe4\xf1\x7b\x8f\x1e\xbe\x6b\x64\xef\xc8\xde\x9d\xdb\xb7\x6c\xde\x30\xd6\x39\xdc\x39\x3c\xb4\xaa\x6f\xc5\xb2\x25\x15\x1d\x15\x1d\x0b\xda\x9a\x1a\xeb\x6a\x32\xca\x33\xca\x4b\x8a\x1c\xf6\xbc\x1c\xa5\x45\x69\x31\x19\xb4\x29\x89\xf1\x7e\x22\xe3\x34\x61\xb8\xdd\x32\xbb\x6f\x3d\x22\xff\x12\xd7\xfc\x7b\x47\x6e\xf3\xe4\x1f\x24\x39\x9a\x73\x72\x9a\x1d\x9a\xd1\x30\xb5\x21\x21\xc1\xa0\x0a\x85\x9f\x6a\xec\xc2\xa1\x02\xcd\x7a\xe1\x50\xbc\x41\x15\x5a\x2f\x1e\xf1\x5f\x14\x6f\x50\x85\xf1\xef\xdc\x72\xc8\xd7\x32\xef\x51\xf4\x50\x93\xe6\xe6\xa7\xf3\x3f\xd5\x38\x9a\xe6\x5c\xa5\x57\x87\xd9\xc4\x23\xc1\xf7\x29\xc3\xc8\x5f\xcd\xd5\x79\x89\x89\x79\xd5\xe6\x58\x7d\xa2\x4c\x96\xa8\x8f\xe5\x3f\xb9\xe5\x48\xc8\xcd\x47\x7c\xff\xba\xe5\x9a\x5f\xa5\x57\xe7\x26\x26\xe6\x56\xa7\xc7\x1a\x12\xa3\xa3\x13\x0d\xb1\x6c\xfc\xbf\xf3\x1c\x84\xa4\xa8\x99\xef\x93\x1c\x65\xdf\x42\x04\x85\xa0\x48\x24\x47\x6a\x94\x84\x52\x91\x09\x0d\xbb\x92\xb5\x29\x4a\x86\xc1\xa6\xd4\x24\xb5\x4a\x1e\x23\x8b\x8a\x8c\x08\x0f\x8d\x00\xc6\x68\x48\x4c\x20\x88\xba\x0a\xb2\x84\xe5\x8c\x72\xc1\x7a\xa8\x1f\x99\x04\xb6\x6d\xba\x3b\x28\x10\x66\x81\x01\xcc\xf4\xce\x3d\xee\x71\xc5\xb0\x2c\x42\x6c\x08\x1b\x22\x95\x20\x82\x48\x0c\xc7\x29\x2c\xac\x8a\xd1\xc9\x19\x93\xdc\xca\x80\x83\x55\x18\x58\x89\xc1\xc6\x82\xc3\xa0\x62\x41\xc2\x9a\x0c\x8c\x89\x71\xc8\x41\x25\x97\x30\xa4\x2d\x6c\x72\x79\x8d\x33\x7c\x72\x79\x0d\xd6\x44\x40\x13\x7f\xf9\xc6\x86\x08\xfe\x39\xe8\x62\xce\x63\x28\xaf\xe2\x7f\x3c\xfd\x57\xcc\x7f\xbd\x1a\x8c\x16\xd9\x89\xf2\xb7\x98\xe5\xb2\x93\x15\x6f\x16\x47\xf2\x5f\x85\x5e\xf2\x48\x24\xb4\xf3\x0f\xf3\xb2\xf0\x6d\x2b\x6a\x8b\x84\xff\xc0\xd3\xd1\x67\xab\xde\x9e\x3e\x2a\x3b\x5b\xfd\x36\xfe\x15\x86\x9a\x6a\xfe\x83\xe9\x5f\x62\xfe\xa5\x5a\xb0\x88\x7a\xf7\x6b\x7e\xdc\x12\x43\xf3\xf8\xec\x2e\x2b\x83\x31\x43\x00\x10\x25\x65\x67\x01\x23\x06\x07\x81\x0c\x01\x20\x18\x21\xc9\x49\x0a\x39\x89\x21\x32\xad\x82\x13\xb6\x1b\x09\x38\x68\x12\x94\x9f\xe5\xd3\xa0\x2d\x65\x28\xc5\x9d\x96\xe4\xee\xe3\x4f\xee\xe5\x9f\xf3\xc2\x8f\x56\x5c\xdd\xd7\xd4\xb4\xef\xea\x0a\xfe\x23\x48\x76\xad\x6d\xcd\xcc\x6c\x19\x76\xf1\x1f\xc1\xf7\x6b\xe0\xd3\x1a\xfe\x90\xef\x1a\x3b\x85\x9d\x23\x8f\x0c\x0d\x5d\x1c\x71\xc2\x19\x30\xd5\xad\xaa\xa8\x58\xdd\x90\x06\x88\x11\xeb\x5c\x91\x66\x5a\x5f\xc9\x82\x06\x5d\x0a\x41\xb3\xd1\xa5\x32\x98\xb0\x24\x1c\x10\x2b\x88\x9e\xf8\xdd\x3a\x09\x28\x50\xf8\x44\x3d\xeb\xd6\x75\x8b\xe9\xb5\x09\xae\xe4\x79\xfe\xee\xe4\x5b\xae\xf0\xb8\x42\x68\x5d\xac\x34\x8e\x8b\xb7\x18\x24\xe0\x30\xcc\xa9\x8d\xa5\xfa\xbc\xda\x58\xf6\x51\xfe\xe4\x7a\x18\x2f\x58\x7b\x61\xa0\xef\xb4\xdd\xfb\x44\x88\xfd\xec\xca\xc1\x87\xd7\x16\x78\x75\xf5\xa3\xcd\x9e\x2d\x7a\xfd\xe6\x25\x4d\xa3\x75\x3a\xbc\x14\x26\x96\x9d\xdd\xf0\xed\x13\x0b\x5d\xc5\xbe\x7f\xb2\x3f\xde\x58\x59\x1b\xac\x92\x55\xee\xfb\x87\xab\x4d\xac\x92\x05\xe8\x6b\x08\x91\x5a\x6e\x06\x49\xc4\x6a\xd9\x98\x19\x0b\x00\x17\x94\xb7\xcd\x3b\x96\x59\x49\xad\xcf\x7c\x1d\xff\xc8\x2b\x72\xc1\x42\x8b\x98\x6b\x25\x3c\x27\x97\xdd\x74\x9b\xe7\xdc\x3e\x7f\x59\x66\x25\xb9\xbe\xb2\xeb\xf8\x1b\xd7\xc5\xfc\x67\xf0\xd7\x50\xf2\xf2\x3f\xa7\xf9\x29\x62\x3d\x37\x40\x84\xa5\xa5\x10\x11\x66\x28\xf1\x94\x1f\x13\x1d\xc8\x05\x36\xca\xd4\xda\x00\x24\x3a\x98\x26\x14\xc0\xfd\xd3\xc2\x5d\x24\xdf\x57\x76\xed\xe8\x7f\x9f\x6d\x2d\xd9\xfc\xcc\x38\x6e\x5b\x57\xa5\xc1\xdf\xf9\xee\x35\xca\x67\xcc\xa7\xb7\x9e\xfc\xe1\x81\xbd\xdf\x39\x5c\x7f\xbc\x70\xf0\x78\xd7\xb7\x7e\xe4\x5b\x2e\xc6\xf7\xaf\xf1\xbf\x22\xed\xc4\x89\x92\x90\xc5\x95\x16\x19\x81\x99\xda\x60\xc1\x3c\x3f\xdd\x03\x4d\xf1\x54\x31\x8d\x49\x89\x09\xf1\x71\x2a\x6d\x34\x2b\x0c\xcc\xd9\x26\x50\x5e\x22\x1a\x96\xa0\x4d\xb0\xf8\x6a\x7f\xbc\xee\x95\x23\x2d\x19\xcb\x4e\xac\xca\xa9\x5a\x5e\x9c\x68\xed\xda\x52\xfb\x63\x8a\xff\xe0\x7f\x5d\xbe\xe5\x99\xf5\xce\xa3\xfb\x56\xc9\xef\x8f\x29\x6a\x59\x5e\xd0\xb8\xb1\xc5\xcc\x27\x8a\xb9\x3a\x4f\x23\x44\xde\x60\xa7\x50\x2c\x2a\x71\x39\x01\x80\xa3\xa9\x49\x82\x31\xc3\x41\x6f\x68\x08\x66\x59\x0a\x06\xa5\xec\x08\x6a\x37\x09\x26\xdd\xc7\xa2\xd8\x40\xbc\x37\x26\x8c\x4b\xb2\x84\x60\x1d\xe8\x14\xba\x00\xa2\x8a\x26\xf9\x93\x33\xfc\x33\xb0\xf5\x63\xfe\xba\xfd\xe4\x4a\xaf\x77\xe5\x49\x3b\x98\xd9\x29\x5f\xdb\xf4\x0c\x3e\xf1\xf7\xbf\xfb\xd6\xb2\x53\xbe\xad\x00\xfc\x0c\xde\x8f\x00\x3d\x8a\x10\xd9\x41\xb1\x38\x45\xae\x82\x9b\xdb\x81\x24\x08\x23\x09\x16\xdb\xf3\x7f\x68\x85\xcd\xaa\xb0\x02\xf1\xf0\x4f\xc3\xa6\xdf\xf3\xbf\xb7\x9e\xe8\xba\x7e\xbd\xeb\x44\x06\x30\xc4\xe9\xe3\x7d\x6f\xc3\xbb\xdf\xfc\xa6\x88\x39\xf8\xe0\x03\x78\x07\x01\xca\x44\x88\x5c\xa6\x78\xbe\x4c\x57\x7a\xf8\x7c\x54\x16\xc6\x8c\x47\x84\xa0\x71\x73\x40\x0d\x73\xa2\xfd\x62\x05\x75\x8a\x6b\x38\xb9\xfa\x1a\x7f\x1d\xf8\x15\xa0\xf9\x3e\xff\x12\x0c\xff\x02\x1f\xf7\x0d\xb3\xea\x33\xbe\x49\x7c\xc0\x57\xe6\x93\xd1\x31\x58\x80\x10\x79\x86\xe6\xf6\x7e\xfe\xbb\xd4\x77\x7c\x97\x08\x78\x79\xf9\x80\x97\x7f\x09\xf8\x9d\xff\xfa\x39\xff\x22\xac\xfd\x3d\xbc\xcb\x5b\x99\x8b\x67\x29\x8c\x82\xf7\xbd\x2d\x8e\xf7\x31\x84\xc8\x39\x5a\xdb\xcb\xe4\xd2\x0b\xc3\x8b\x41\x44\x78\x0b\x78\x44\xa2\x82\xb9\x10\x7c\x59\x60\xa8\xfb\xeb\xc2\x53\x47\x95\x05\xc6\x61\x9a\x7f\xf9\x1a\x7f\x8f\xd7\xcb\x24\xe3\xfb\xce\x7c\xf6\x5b\x7c\xd0\xb7\x25\x80\x4b\x1d\x41\x88\x9c\x27\xce\xcf\x79\xbe\xfa\x8b\x9f\x6f\x82\x6d\xf0\x2f\xfe\xeb\x5e\x7e\x9f\xd7\x8b\x57\xc2\x07\x67\xa7\x7b\x44\xd4\x83\xf8\xfc\x61\xfe\x67\xb4\xfd\x49\x28\xcb\x45\xd1\xa0\x14\x8c\xe6\xaf\x7e\xc0\xb2\x7e\xe6\x0e\x0e\x68\xee\xbb\xf0\x0e\xb5\x4c\x2d\x7a\xda\xfc\x50\x2c\x3a\x5b\xb3\x18\x93\xff\x85\x5a\xfc\xd1\x9a\x4b\xa3\x85\x39\xbd\xc7\x96\x63\x67\x73\xb6\x1c\x34\xa5\xcb\x2b\xbd\xbc\xef\x1a\xde\xc0\x94\xe3\x05\x67\xbe\xbf\x7b\xf7\x3b\x77\x37\x1c\x2f\x1a\x3a\xde\xb1\xec\xcc\x9a\x22\xec\x5b\x31\xcb\x49\xbd\x81\xff\x35\xd9\x46\x9c\x48\x8b\xb2\x5d\x19\x91\x11\x18\xd7\x06\x4a\x08\x21\x86\xa1\xd9\xaa\xea\x00\x9b\x82\x36\x25\x59\x23\x4c\x5e\xb5\x2a\x45\xd8\x2f\xc5\x2c\xf1\x48\x96\x4e\xdc\x2c\xc6\xcf\xf7\x20\xb4\xe6\x5d\xe9\xd2\xf3\xa3\xa5\x10\x9d\x6a\x73\xaf\x28\xc9\x29\x6c\xca\x8e\x85\xd4\xd2\x0e\xbb\xd4\xfb\xb1\x17\x7b\xf0\xfe\x8a\x6d\x53\xc3\x46\xcf\x12\x4f\x63\x41\xc4\xfd\x31\xc5\x2d\xcb\xed\xf5\x13\xad\x16\x3e\x29\x80\xe9\xc0\x68\x70\xe6\x17\xa4\x95\x7d\x13\xd9\x50\x2d\xb2\xba\x72\x0a\xf3\x52\x18\xc2\x30\x94\xa1\x4d\x02\x01\xc6\x93\x24\x2a\xa0\x60\x6e\x5b\x46\xbc\x25\x4e\x16\x27\xe6\x2b\xb3\xc6\xf9\x1e\x1e\xd5\x6c\x18\x84\x12\x9c\x06\x43\x27\x32\x8a\xb5\xb7\x42\x2c\xad\x6b\x23\x0b\xf2\x8b\xb5\xb6\xdf\x5f\x96\x33\x5c\xbc\xfe\x6b\xbb\xaa\xb3\x3b\xb6\x35\x83\xb1\xc0\x24\x4f\x6b\x1e\x6f\x90\xa5\x44\x77\xf7\x5a\x5a\xc7\xeb\xea\xc6\x5b\x2d\xe0\xae\xd1\x35\x67\xf0\x15\xf5\xd5\x36\x7b\x54\x72\x76\x72\x4a\x56\x4a\x94\x06\xb4\xc9\x09\x49\x03\x4f\xff\x6e\x3f\xa8\x36\xff\xe7\xf9\xee\x87\x2a\xd6\x9f\xee\xe0\x3f\x5e\x39\xb5\xb7\x89\x90\xee\xe9\x07\x60\xc1\xca\xe7\x0f\x34\x37\xee\x7f\x7e\x90\x3f\x73\xf7\x9f\x3b\xc3\x23\x30\xec\xfa\x4e\x55\xe5\x9b\x1b\x60\x4d\xf5\x64\x97\xd5\xde\xbd\xb9\x12\x61\xb4\x64\xe6\x13\x72\x84\xb4\x20\x2b\xaa\x16\xfa\xef\xc8\x4d\xbe\x4d\xff\x93\x6f\xea\x7f\x9c\xd9\x7c\x9b\xfe\x53\x93\x57\x31\x8b\x52\x14\xba\x3f\x87\x99\x9a\x93\x04\x7a\xef\x98\x65\x57\x3b\xd2\xf5\x50\x75\xe1\xde\x86\x75\x2f\xec\xae\xcd\x5b\xb2\xa7\x35\xad\x34\x5d\x99\xde\x3c\x56\x97\x9d\xb1\x6c\xa5\xa5\x6d\xa3\xdb\xbd\xa9\xcd\x52\x51\xda\xd2\xcb\x47\xb5\x35\x59\xed\x10\xad\xcd\x4b\x4d\xcd\x4d\x89\x0e\x87\xa4\xc4\x14\x5d\xf7\x85\x1f\x6d\x73\xf6\x7d\x75\x77\xc3\x43\xb9\x8b\xc6\x2b\x8a\xbb\x1f\x9a\xa8\x0c\x6f\xf9\xaf\x5d\x83\xdd\xe7\xc7\xcb\x6b\x27\x1f\x5d\x32\xb4\xfe\x0d\xb7\x02\x9e\x18\xfa\x4a\x61\xe1\x43\xcb\xd6\x3a\x07\x5b\xb2\xcd\x75\x2b\x0a\x11\xa0\x42\xfe\x22\xf9\x1a\xcd\x13\xb2\xb8\xd2\x10\xc7\x70\xed\x62\x99\x02\x12\x9c\xd1\x92\x2e\x24\x91\xa8\x24\xfe\x69\xd7\xe6\xe7\xae\xb1\x69\x85\x45\x51\xa1\x9b\xc5\xb5\x40\x0d\xff\x57\x88\xf0\xfe\xf1\x8f\x30\xec\xbd\x2f\xe6\x92\xaf\x96\x55\x9f\x06\x38\x7d\x63\xe7\x2c\xac\x1e\x01\xca\xe7\x5f\x23\x47\x68\x4e\xf9\xad\xef\x53\xdf\xe6\x7d\x01\x57\xb7\x4d\x3b\xef\x5d\x89\xbf\xc5\xfb\x7f\x05\xdb\xbd\xbb\x62\x2e\xfb\xea\x99\x47\x4f\x9f\x9e\xfe\xdb\x2c\x92\x46\x18\xcb\x01\xfc\x3e\x83\x92\xd0\x98\x2b\x34\x11\x58\x90\x00\xc3\x06\x08\xa0\xf4\x08\x08\x4b\x80\x1d\x45\xc2\xfe\x8f\x06\x11\x8b\x18\xc4\x32\xfd\x12\x91\xd8\x22\x10\xab\x34\xcc\xbf\x0c\x8f\xde\xf6\x3a\x8f\x2b\x8a\x10\x92\x44\x92\x0c\x0a\x43\x8c\xd0\x60\x0a\x50\xb3\xde\x9e\x08\x00\x5f\x3e\x79\x12\x76\xdf\x4a\x06\x00\x36\xfc\x32\xbc\x76\x07\x42\x00\x8c\xee\x47\x88\x64\x10\x27\xd5\xf7\x4e\xb9\x42\x55\xc0\x02\x37\xa7\x4f\xa9\x42\x63\x59\x18\xbc\xa9\x4b\x9c\x88\x75\x0b\x50\x1a\xc5\xb4\x76\xba\x74\x9f\xd3\xfb\x79\x97\xde\x2c\xa3\xd9\xce\xcf\xbd\xcc\xe3\x71\x85\xca\x75\x0a\x9d\x7f\x41\x36\xe8\x28\x72\xe5\x56\x48\x12\xbe\x7a\xea\x14\x6c\xbf\x19\x96\xf4\x7d\x6c\x9f\xfe\xc7\x6d\xb1\x49\xbf\x44\x88\xf4\x04\xf8\x17\x18\x60\x40\x3d\x8f\x73\x86\x1a\xd5\x94\x84\x41\x4c\x2f\x9e\xc3\xbf\x20\xe8\x0c\xfe\x3c\x42\xc6\x4f\x39\xc3\x49\x64\xbf\xf4\x6a\xcb\xa9\xc4\x87\x1c\xe0\x17\x79\x2d\x3b\xe5\x7b\x34\x5c\x2e\x0a\x9b\x2f\x84\x6f\x89\xc2\xf6\xd5\x08\xb2\x36\xce\xfc\x9e\x1c\x62\x5f\x47\x66\x94\x8f\xda\x5d\x2d\x51\x7e\x59\xeb\x81\x30\x06\x40\x84\x34\x48\x81\x45\x0c\x61\x99\xde\x00\x7e\x23\xc9\x4d\xd3\xb0\x82\xbc\xe2\x1a\xd4\x68\x49\x07\x94\x97\x93\x9e\x6f\xc9\x4f\xd1\xc4\xa9\x15\xf2\xf0\x30\x64\x06\x73\x08\x17\x6b\x61\xe9\x22\x91\xc5\xd8\xac\x4a\xa5\x8a\xae\x0b\x31\xb2\xf9\x85\x9c\xc1\x0f\x9d\xe7\x14\x4c\xfa\xb6\xd7\xf6\x54\x96\xf7\x96\x6b\x4f\x42\xbe\xb3\x66\xf2\x52\xcf\x07\x6f\xf9\xba\xf4\x2d\xdb\x3a\xb3\x9b\xca\x6d\xca\xec\x28\x5b\xe3\x00\xbf\x19\xfe\xa0\xb0\x76\x54\xee\xbc\x5b\xd9\xf9\xe0\x87\xbb\x8e\x85\x97\xf5\xec\x70\x2f\xdc\x1c\x77\xec\x37\x8f\x74\xf0\x1f\xf0\xbf\x78\xf9\xae\xae\x0b\x9b\x6a\xa2\xe3\x35\x91\x77\x85\xeb\x92\x95\x4c\xe7\x68\xf3\xa1\x81\xe2\xbf\xfe\x06\x89\x7d\xfd\x94\xec\x27\xcd\xc8\x88\xf2\xd0\x22\x57\x7b\x04\x70\xc0\x02\xc3\x69\x81\x30\xa9\xb4\xaf\x08\x58\x8e\x05\x6e\x14\x71\x88\x21\x1c\xd3\x2b\x05\x3f\xb8\x3c\x79\x5e\x77\xd3\x4c\x80\x32\x33\x4c\x79\x69\x79\xc9\x49\x71\x6a\xb9\x2c\x34\x04\x19\xc1\x38\xdb\x5d\xa3\x91\x76\x37\x00\x6a\xd1\x8a\xa5\xe8\x02\x45\xab\x69\x7f\x31\x3f\x72\x75\xb2\x62\xd7\xce\x13\x60\x2f\x8a\x6a\xdd\x70\x5f\xeb\x9a\x0b\x83\x56\x5f\x17\x63\xac\x1b\xaa\xee\x3f\x92\xd3\xa0\xae\xf4\x8c\xf6\xe5\x2d\x74\x65\x84\xc0\xc7\x89\x4e\x4f\x6c\xdb\x7d\x6f\x4d\x80\xea\xb9\xa3\x4d\x6b\x14\xbd\x8f\x4e\xb8\xea\x77\x3f\x3b\xb4\xb9\x71\x7f\xbf\xb3\x2c\x6b\x5b\x5c\x8e\x51\xcd\xbc\x93\xd5\x36\xe2\x52\xdb\xfb\x9b\xb2\x10\xa0\xb7\xf9\x1f\x93\xbb\xd9\x29\xa4\x41\x69\x2e\x03\x62\x11\x66\x58\x4c\xeb\x2f\x03\xea\xe1\x02\xec\x28\x7e\x05\x23\x4d\x16\x27\x11\xa9\x0c\xe6\xee\xfc\xba\x20\xee\x14\xbf\xb3\xf6\xf1\xb1\xe2\x92\x8d\x57\xc7\x71\xeb\x70\x55\x12\x64\x75\x1f\x59\xfa\x73\xaf\xf7\x28\x3c\xf0\x21\x63\x8b\x5a\x7a\xff\x9b\x9b\xf6\xbe\x73\xa4\xfe\x7e\xe7\xd0\xfd\x5d\x7d\xe7\x56\x17\xf8\x06\xd8\x29\xdf\xdd\x78\x83\x58\xab\x8c\xe7\x49\x31\xc5\x48\x98\x5d\xc6\xb0\x50\x0c\xb5\x7e\xb8\x6b\x00\x23\x46\x95\x35\xba\xe7\xc7\xa9\x55\xca\x58\x96\x8b\x0d\x16\x8a\x98\xab\xad\x8b\x0d\xb9\xba\xf8\xde\x81\xc2\xf4\xce\x23\xbd\xb9\x65\x1d\x05\x71\x79\x1d\x9b\x6a\xbf\xe5\xf5\x6e\x82\xcd\x3f\xc7\xfd\x91\x55\xc3\xa7\x96\x17\xdc\xb5\x7d\x45\xcc\xfd\xd1\x05\xf5\xdd\x94\xfd\x34\x80\x8e\x15\xec\x20\xde\x4d\xe2\xa8\xfd\x52\xe4\x2a\x88\x04\x86\x8d\x10\xe7\x18\x42\x84\x45\xa4\x57\xc2\x61\x6a\xda\xde\x04\x9c\x41\x08\x25\xa0\x04\x99\xdc\x64\x90\xc9\xc4\x6c\x76\xad\xcc\x3a\xbf\xbc\xa0\xc8\x12\x0b\xeb\xe0\xcf\xde\xf4\xb6\x8d\x8d\x49\xf9\xb3\xe5\x4b\xa3\xbc\xec\x94\x6f\x2d\x3e\x71\x53\xfd\x52\xfc\x53\xdf\x56\x76\x0a\x01\x7a\x8e\x77\x13\x25\xe5\xb9\xfd\xfc\x36\xa9\xff\x1f\xda\xb4\x16\xfe\xec\xcd\x68\xdf\xdc\xa8\xb1\x25\x45\x4a\x13\x93\xe2\x25\x15\xb5\x7c\x94\x57\xc4\xc5\xde\x18\x5e\xb0\xdb\x13\x68\xd3\xea\x2e\x6c\xa2\xaa\x23\x46\x5d\x33\x9f\x90\x0e\xf6\x0d\x94\x8a\xb2\x50\xa5\xcb\xa5\x01\x06\x25\xdd\xbe\x46\x5a\xd2\x6c\x8d\x34\x0d\x34\xea\x75\x80\xcc\x69\xba\x2c\x7d\x56\x9c\x8a\xd6\x48\x4b\x85\x54\x29\x77\x6b\x8d\xb4\x20\x47\xc6\xfc\x32\x69\xa5\x7b\xde\x3e\x54\xd3\x72\xe4\x95\x75\x3b\x5e\xde\x51\xc6\x54\x99\x16\x1d\x58\x66\xf3\x34\x94\xc4\x65\xcb\x8a\x3a\xc6\xba\xdb\xb6\x2e\xcc\x00\xdf\x84\xd6\xbd\x85\x7d\xa3\xe7\xf1\x8f\xef\xfa\xf1\xdd\x7f\x7c\xba\x17\x16\x5f\xf8\xf9\xe1\xcb\x4b\x57\x3c\xbd\xb7\x31\x3a\x2e\x59\x98\xeb\x29\xca\xcf\x5e\x6d\x39\xf0\x5c\x5f\xd7\x82\xfb\x87\xcb\x10\xa0\x13\x33\x9f\x90\x76\x9a\x07\x5b\xec\x2a\x24\x80\x40\x0f\x18\xe1\x86\x20\x12\x0f\x23\x8e\x60\xae\x2f\x50\x0b\x45\x39\x17\x88\x67\xd4\xc7\xa6\xc5\x04\x14\x6f\x9b\x56\x05\x73\x68\x50\xad\x73\x4a\x83\xe9\x6c\x4c\x83\x6f\x03\xb3\x12\xf8\x95\x6b\x9f\x9c\x28\xad\xdf\xfb\xdc\xea\x8e\x27\xf6\xb5\x79\xd3\x1b\x86\xca\x6a\xd7\x37\xa7\x7f\xe5\xc2\xbd\xac\xfa\xcc\x46\x3e\x96\x73\xad\xbb\xd0\x3f\xf0\xd0\x48\x61\xde\xe0\xc3\xeb\x0a\xfb\xdc\x16\x73\x5d\x7f\xd1\xf9\xa3\xa7\x11\xa0\x43\xfc\x04\xa9\xa3\xb9\x98\x43\xae\x30\xda\x4e\x16\xb3\x48\xd8\xea\x72\xe8\xf6\x2d\x6e\x45\xa3\x54\x87\x27\x23\x81\xe6\xce\xa2\x3d\xe3\x85\x1d\x4c\x7b\xf3\x65\x04\x61\x42\x6d\x73\xf1\x6a\xca\xab\x6e\xd4\xc7\x5a\xfc\xa8\xf2\x2f\xe8\x54\x86\xef\x2e\xa1\x53\x63\x43\x97\xc6\x8a\xeb\xf7\x3e\xbf\xba\xe3\xf1\x7d\xed\xd7\xcd\xee\xc1\xb2\xba\xf5\xcd\xe9\x57\x2e\xdc\xc3\x5c\x3c\xbb\x91\x97\x49\xcb\xd7\x9d\x5f\xb1\x52\xec\xd4\x48\x41\x5f\x83\x25\xad\xae\xaf\xe8\xc1\x7b\x4e\x23\x84\x66\x66\x50\x05\xef\x26\x5b\xd9\x29\x6c\x44\x4f\xbb\x11\x32\xc1\x3b\x33\x11\xa8\x0c\x24\xf0\xfe\x4c\x0b\x42\x48\xfa\x0c\xc0\x54\xd9\x94\xd5\x42\xaf\xdd\xc0\xbb\x05\x1b\x01\x1b\xd1\x6f\xdb\xc5\x6b\xcb\x66\xfa\xe9\xb5\x55\x08\xa1\x90\x67\x00\xae\xcd\xf4\xd3\x8b\x31\xad\xa1\x92\xe3\xe7\x90\xc9\x71\x65\x52\x07\x15\xc1\xfe\x8d\x92\x22\xae\x82\x20\x4f\x84\xa2\x12\xa2\xe2\x63\xa2\x51\x24\x8a\xd0\xca\x24\x9c\x92\x02\x6f\xb5\x81\x12\xfa\x40\x11\x7a\x74\x2b\x62\x36\x79\x79\xf5\x84\xc8\x25\x33\x01\xd9\xfc\xf7\x9a\xc7\x1a\x74\xba\x86\xb1\x66\x66\xf8\xff\xa7\xee\xcd\xc3\xdb\xaa\x8e\x87\xe1\x39\xe7\x1e\x5d\x29\x76\x62\x5b\xb6\x65\x79\x95\x2d\x6b\xb3\x2c\xef\xb2\x16\xef\xf2\xbe\x3b\x8e\xe3\x35\x4e\x62\x3b\xab\xb3\x3a\x89\xb3\x27\x04\x48\x02\x01\x12\x93\x00\xd9\x13\x3b\x81\xb0\x86\xcd\x10\x5c\xe2\x40\x0b\x2d\xa5\x2d\x14\x4a\xdb\x5f\x81\x96\xd2\x96\xb6\xf4\xd7\x96\xa4\x2d\x6d\xa1\x2d\xc4\xbe\xfa\x9e\x7b\xce\xd5\xb5\x64\x9b\xb6\xdf\xf3\xbe\xff\xbc\x3c\xa5\xf8\x6a\xe6\xce\x9d\xb3\xcd\x99\x99\x33\x67\x06\x97\x7f\xd9\x5c\xb6\xfd\x52\x6f\xdf\xc5\x2d\x25\x93\xa9\xb8\x24\xa3\x71\x95\x3b\x6f\x6d\x4b\xb6\xc8\x4b\x23\x00\x19\x52\x8c\x42\x12\xa4\xc3\x2a\x76\xf2\x11\x4f\x10\x02\x05\x87\x14\x2c\xa9\x8d\x8a\xc7\x1c\x07\x8b\x95\xcc\x00\x8f\xf3\x18\x7c\x95\xbf\xe1\xab\xb1\xba\x3c\x31\x7a\x3d\x02\x7d\xba\x3e\xcd\x98\x1c\xad\x0d\x0b\x99\x37\x37\x78\x0e\x24\xa1\x44\x71\x83\x91\xb9\x17\x77\x7f\x57\x31\xe7\x72\x9a\x2d\xf6\xa8\x28\x65\x08\x67\xb0\xa8\xe5\x6c\xdf\xe8\x9d\xa5\xc7\x96\xe5\xe4\x2c\x3b\xb6\x74\xcb\x78\xb6\xb5\x28\x35\x0a\xe1\xa4\x84\x2b\x71\x29\x18\xe7\xf5\xdc\x5a\xfd\xc9\x16\x67\x63\x56\x54\x54\x56\xa3\xb3\x7c\xc7\x43\x3d\x3d\x17\x07\x3d\xb8\xfc\xcb\xff\x45\x28\xb3\x7d\x47\x4d\xf7\xeb\xdd\xdd\xaf\xf6\x6e\x7f\x7e\x67\xe1\x29\x5c\x92\xd1\xb4\xca\xe5\x5e\xdb\x92\x23\xb6\x75\xa5\xf7\x0f\xe4\x38\x1f\x0d\x36\xf0\x40\xa9\xa7\x58\x85\x78\x28\x4a\xc3\x98\x33\x20\x82\xe5\x4a\xfa\x3c\xe6\x39\xbc\xc9\x97\x66\x31\xb1\x5e\x89\x30\x66\x69\x67\x75\xa4\xc1\x6a\x31\x58\xb4\xa6\x08\xbf\x18\xa9\x28\xad\xda\xae\xe6\x75\xd8\xce\xda\xe1\x62\xed\xe0\x7d\xb6\x85\x2f\x7f\xb9\x86\x25\x5d\x75\x99\xcd\x96\x95\xe6\xfa\x2d\xf5\xb9\xad\xfa\x71\x14\x1c\x6d\xd0\x26\xe7\xe8\xd5\x08\x27\x26\x3c\x1f\x9f\x82\x71\x4e\xfb\xd6\xf2\xc7\xcb\x4d\x6b\xaa\xeb\x36\x35\x98\xd1\xfb\x51\x85\xd6\x8c\x12\x9a\x72\x26\x3d\xc3\xa3\xe5\x08\xc2\x9e\x81\x57\xef\x5d\x60\x36\xe0\x88\x9b\xf1\xc6\xd2\xac\x04\x54\xb8\xf6\xbe\x8e\x15\x6f\xae\x40\xcb\xde\x5c\x7d\xe7\x5b\x47\x6a\xb8\x3b\x4b\x2a\x6a\xf6\x5d\x5e\x86\x9e\xd4\xa7\x14\xad\xbe\xa3\xe6\x40\xf1\x40\x7b\x0e\xca\x4a\x89\x4c\xd5\xd2\xdc\x0a\xde\x3f\x92\x7b\x14\xa3\x90\x2f\xca\xeb\x38\x96\x63\x57\x81\x11\x56\x20\x71\x2c\x81\x20\x10\xc7\x92\x4a\x10\x1a\x6c\xec\x4b\x1a\xe4\x76\x66\x66\x58\x4c\x7a\xb3\xde\xa8\xe4\xa3\x6d\x88\xc5\xc5\xda\xa5\x5c\x17\xe2\x5f\x72\x0e\x14\xda\xcc\x80\x11\xe5\xcd\x16\xf4\xcf\xb8\xec\xca\xd4\x3b\x5a\x6e\xdf\x91\x90\xdf\x51\xf0\xeb\x5f\x2f\x3b\xb7\x3e\x6f\x45\x77\x76\x65\x5a\x44\x48\xbc\x35\xce\x56\x9a\xa6\xc5\x28\x29\xe1\x4a\x6c\x2a\xc6\xf9\x7d\x07\xea\xee\x3e\xcd\xa3\x2d\xf9\xcb\xaa\x2c\xa7\xef\xb8\xb5\xa0\xa7\xdc\x78\xda\xb9\xfa\xec\x8a\x2d\x97\xb3\x34\xe5\x9d\x6b\x0b\xd6\xc4\xe7\x98\xa2\x50\xc1\xda\xfb\x3b\x56\xbc\xb9\x72\xd9\x9b\xab\x0f\xbd\x7d\xb8\x1a\x1f\x3e\xc5\x7c\x06\xcd\xde\xdf\x92\x5b\x48\x3e\xd8\xc1\xed\x71\x64\xb2\xbc\x2e\x48\x41\x14\x88\x9e\x7c\x72\xc0\xd2\xbb\xd0\x56\x45\xcb\xc9\xa3\x75\xb8\x41\x6f\xd4\x9b\x2c\xda\x64\xaa\x13\xb3\x4c\xa9\x81\x0d\x70\x98\xcd\x16\x83\xc5\x97\xd1\xc5\xe2\x97\xd6\x43\x83\x7f\x6e\x76\x24\xdb\x0d\xe1\x08\xeb\x75\x2f\xc4\xda\x30\x76\x74\x6c\x2b\xbb\xf3\x2e\x1e\xad\x5b\xfe\x34\x3e\xb1\x7b\xd3\xd6\xdd\xbf\xe2\x7f\xb7\x62\x64\x43\x5e\x5f\xf7\xaa\xd6\x77\x2d\xd9\xb6\xc6\xf5\x65\x4d\x97\x9a\x9a\x2e\x2e\xd8\xf8\xe8\xa6\x3c\x6e\xcb\xed\xf5\x75\x4d\xe8\x64\x47\xfd\xfc\xe5\x27\xc5\x9d\xae\x75\xc0\x18\xbf\xaf\xad\x11\x30\x5c\x11\x1e\xa1\xb2\xdf\x06\x2e\xf0\x78\x8a\x34\x88\x80\x8e\xda\x0f\x39\xd9\x98\xab\x06\xe0\x91\xb8\xc7\xfa\x07\x87\x2b\x14\x53\x69\x5c\x5c\x4e\xb0\x41\x6a\x52\xa2\xde\xac\xa7\x97\x7b\xe5\xd1\x9a\x8a\x7c\xa6\xa3\x15\xa5\xd5\x18\xe8\xa1\x6f\x06\x36\x20\xaa\xb2\xd0\xe0\x0d\x14\x76\xe9\x89\x73\xc6\xfa\xc1\x26\xe1\x06\x8a\xdc\xfa\xb5\x5b\xca\x76\x6c\x2a\x6e\x77\xc6\xe8\x2c\xaf\x68\x63\xe6\x72\xe6\xca\xbe\x42\xbc\x5a\x9b\xee\x49\x1d\xcc\x4a\x79\x03\xef\x3a\x7d\xfb\xfe\xc2\xbe\x72\xe3\x69\x47\xff\xb9\x55\x83\x0f\x67\x47\x96\x75\xae\x2f\xba\xab\x64\x83\x39\x46\x53\x5a\x59\x12\x71\xb0\x70\x59\xa5\x69\xf2\xb1\xcc\xd5\x2b\x17\x1b\x4b\xaa\x46\xda\xae\x30\x9b\xef\x87\xc2\xfd\x34\x0f\x8f\x15\x1c\xe2\x68\x45\xd0\x2a\x7f\x59\x99\x49\xba\x18\x05\xa9\xa6\xf9\x22\x01\x14\x52\x0a\x22\x5f\x90\x37\x6a\x00\x70\xe4\x82\x15\x52\xf4\x46\x3d\x3f\xd5\x2e\xb3\x41\xef\xd2\x07\x4e\x42\x5f\xbb\xcc\x16\xff\x66\xc5\xfc\x64\xef\xd6\x6d\x7b\x84\xdf\x22\x14\xbf\x62\x64\x63\xfe\xb2\xa5\xb9\xb5\x19\x1a\xc5\x3c\x6d\xf8\x2b\x91\x51\x41\x78\xe3\x4a\x6c\xf6\xb5\x0a\x8d\x9f\x6c\x6f\x6a\xee\x3b\x69\x6b\xd9\xd1\xd8\x3a\x68\x08\xcd\x29\x5b\x90\xd1\x17\x9e\x9a\x6a\x9e\x17\x11\x92\x65\xcf\x9c\xd7\xd3\xb2\x08\x09\xad\x01\x8d\x42\x10\xe9\xfd\x23\x79\x84\x8e\xd9\x52\x26\x49\x13\x45\xc5\x15\x14\x78\xd3\x54\x86\x4a\x5a\x21\xcb\x97\x56\x28\xce\x63\x99\x89\xe1\xab\xf6\xa8\xf5\x5f\x82\x5d\x9e\x20\x8b\xd6\xa4\xd1\x9b\x24\x87\x60\x84\x9c\x19\xb5\x18\x3b\xa4\x1a\x1e\x81\x12\xc8\x6c\xc1\xcb\xdf\x44\x86\x85\x77\xaf\x4c\xd6\xe6\x56\xa5\x86\x23\x9c\x87\x54\xea\xf8\x88\xe4\x6c\x7d\x18\x42\x9a\xc8\x2b\x91\x09\xa2\xc0\x19\x2c\xdb\x7d\x40\xa1\x88\x9e\xfc\xc3\x55\xe1\x37\xdf\x5e\x75\xaa\xe9\xdc\xef\xcf\xe0\xd1\x9b\x3d\x71\x76\x4b\x34\x2a\x5c\x7b\x7f\xbb\x9f\x74\xc1\xc7\x4e\xb2\x75\x96\xe9\xfd\x23\xb9\x83\xe4\x83\x0d\x06\x58\x3b\x53\x01\x71\xe2\x56\xb0\x09\x38\x8e\xef\x52\xb2\x5b\x69\xa2\xd9\x41\x6f\xd5\xb3\xa5\x26\x5f\xb0\x4f\x99\x1d\x99\x46\xd1\x69\xfd\x97\x65\x97\x27\x14\x00\x6c\x60\xd3\x9b\x22\x2c\x5a\xdf\x6d\xcc\x59\x04\xcc\xb4\x4b\xc7\xf8\xcb\x39\xe1\x71\x11\xfa\x9c\x64\xb5\xbc\x65\xe4\xb4\x0f\x96\xef\x3a\xa8\x78\x3d\xa1\x62\x4b\xab\x99\xd3\x1a\xb3\xe2\x82\x49\xfe\xc4\xef\x93\xf2\xd2\x62\x51\xee\xd2\xdb\x9b\x7a\x5e\x5d\xba\xe4\x95\xbe\xbd\x2f\xdf\x56\x8a\x4f\x5f\xc4\xb7\x09\x6f\xdf\xff\xfb\x8b\x6d\x8f\xa0\x82\xc1\xcb\x9b\xd0\x5b\xb4\xcd\x03\xde\x3f\x92\x13\xf4\x9e\x4c\x3f\x6b\xb3\xc1\xdf\xd0\x02\xd1\xd0\x52\x32\xc7\x39\x00\x5e\xec\x97\x4d\xe0\x2b\xb0\x7c\x6d\x5d\xec\x6b\x6b\x18\xcb\xba\x4e\x2f\xba\x6b\x4d\x2c\xc5\xc6\x6c\xa3\x2a\xa7\x8b\xe1\xe6\xaa\xc2\xe3\x22\x92\xb3\x93\xc4\x66\xc6\x3f\x2f\x8a\xcf\x9c\xb6\xc1\xf2\x5d\x07\x14\xc2\xbb\xe3\xe3\xc8\xa6\x18\xbd\x79\xd0\xe8\xc9\x4e\x40\x85\xeb\xee\xf3\x0d\xe3\x1d\x6f\x1f\xa9\xc1\x0f\x5e\x46\x0b\x44\x0d\x5e\x54\xed\x59\x2d\x21\xef\x1f\xa9\x1f\xde\x00\x7d\xac\x6d\xc9\xc0\x63\x0e\xf3\xa2\x2e\x06\xa0\x90\x53\xfb\xd0\x7c\x18\x4a\xdf\xd4\x35\x7f\x05\x12\x9d\xb9\x0a\x85\x72\x31\x28\x95\x3a\x65\x43\x97\x27\xd8\xa2\x35\x4d\x79\x87\xe4\x6c\x37\xb3\x0e\x25\x2e\x10\xfe\x3e\x3e\x8e\xe6\x8d\x07\x69\x93\xb5\x09\x69\xf1\xa1\x08\x45\x45\x3e\x2f\x6a\xd8\x99\x0b\x36\x94\xdc\x3e\xa4\x90\x52\x06\xa5\xa2\xf7\xbe\x6a\xf8\xd8\x1c\xbd\xd7\x7b\x9d\x6c\x53\xbc\x0e\xe9\xa2\xee\x1c\x82\x30\x0a\x45\x04\x8b\xba\x33\xe6\x30\xe1\x36\xf9\x16\x59\x02\x4b\x2c\xa4\x60\x46\x31\x02\xa3\x41\x17\x1f\x21\xaa\xff\xe9\x28\x9d\xf7\x19\xc3\x33\x8a\xc2\x8b\x9c\x3b\x9d\x94\x73\x1d\xa7\x0c\xe1\xf0\xf1\x6d\xaf\xdc\x55\x57\x77\xd7\x2b\xdb\x36\x3d\x53\x5e\x50\x7a\xb4\x7d\xfe\xde\xb6\xf4\xf4\xb6\xbd\xf3\x87\x4e\x71\x38\x41\x7b\x25\x28\x52\x1d\x84\x70\xd3\x81\xa7\x35\x3d\x8f\xfe\xe6\x00\xe2\x0f\xfc\xfa\xb1\x9e\xb4\xb4\x83\x7a\x43\xdd\xad\x4f\x2c\x15\xfe\xd5\x73\xf9\xb6\x3a\x3c\x7c\xd7\xa2\xb1\x45\x69\x8b\xba\xbb\xd3\x37\x3d\x3e\xe0\x62\x35\xe5\xbd\xd7\x49\x33\x69\x02\x9b\xd8\x86\x04\x44\x38\x1d\x42\xb4\x12\x39\x11\xf7\xea\x4d\x53\x47\x80\x8a\x80\x0c\x03\xc9\x49\x71\x31\x61\x21\x4a\x1e\x6c\xc8\x26\xb6\xc1\xe4\x74\xba\x72\x69\x27\x6b\x02\x12\x0c\x4c\x35\x88\x9a\x30\x2f\xec\xea\xc7\x7c\xc8\xf3\xc1\x61\xd8\xb3\xf1\x44\xc7\x6d\xdf\x39\x54\x5d\xb1\xff\x1b\x7b\xd6\x5d\x70\xa4\x39\x8f\x2c\x68\xdf\xdd\x6c\x4a\x69\x3d\xb0\x1f\x2d\x5b\xe4\x18\x70\x3a\x37\x3a\x3b\x6e\x6b\xb5\x76\xd1\xe4\x1b\xaf\x1d\xef\x4a\x4e\x3a\x16\xaf\xa3\x05\x2f\x58\xb8\x0f\x20\x68\xf0\x7e\x42\xd7\x8b\x1e\x52\x69\xca\x3e\x71\xf7\xdd\xc4\xdc\x87\xcc\x54\x91\xb2\x13\xea\x14\x0d\x74\x7a\xc8\x4a\xbd\x46\x3f\xcb\xb4\xcf\xc0\x16\x34\x26\x9c\xe2\x1e\x17\x76\x47\x98\xdd\x46\xc7\x7c\x47\x1c\xc6\xfa\x84\x2b\x71\xa9\x1c\x2e\x59\x7f\xac\xa5\x71\x57\x5b\x26\x51\x44\x9f\x3e\x3d\x51\x9a\x3e\x3f\x5f\x8f\x0a\xd6\xdc\xdf\x29\x4d\x79\x51\x43\x40\xb6\x45\x87\x7b\xd8\xbc\xa8\xf5\xfe\x91\xac\xa5\xbe\xfc\xd9\xf8\x8a\xf6\xe7\xcb\xfa\xd5\x7c\xb1\x61\xa7\xca\xcd\x59\xe1\x59\xee\x0e\xe1\xce\x08\x8b\xdb\x94\x55\x93\x13\x23\xb2\xf5\xfc\xbc\x98\x88\x60\x84\x8b\xfa\xef\x6e\x3a\xf7\x8c\x8a\x7b\xf8\xe4\xc9\xc9\xb1\x8c\xa6\x7c\x3d\xb2\x35\xad\x2f\x9b\xff\x78\x93\x65\x41\x4b\x8b\x75\xe3\x63\x9b\xf3\xf0\x73\xaf\x88\x3c\xad\xf7\xde\x20\x03\x8a\xd7\xa1\xf8\xff\x47\xfd\xb2\x04\xff\x9b\xbb\x08\x8a\x0a\xec\xd9\xe9\x69\x29\xe6\xa8\xc8\xb0\xd0\xe0\x39\x50\x8c\x8a\xe5\xac\x2b\xf2\x55\x66\x9f\xa5\x64\x76\xca\xa5\x72\xfc\x62\xd4\xa4\x02\x66\xdb\xe6\xdf\xd2\x9e\x9e\xbd\xe8\xf6\x05\x15\x9b\x16\xa4\xa3\xf1\xf6\xc3\xa3\xdd\x83\xaf\x1d\x5d\x80\x0e\xed\x75\x75\x16\xe9\xeb\x0e\x7d\x7d\xb0\xe7\xa9\xdb\x1b\xc6\x51\x7a\x63\x7f\x61\xcb\x9e\x05\x56\x73\xe3\xf6\xe6\xaf\xe1\xb3\x89\xa5\xcb\x2b\x0b\x57\xd4\xa4\xd8\xea\x56\xe4\x0d\x5c\xec\xcf\x76\xaf\xbf\xb0\xfa\xb6\x27\x53\xb5\x65\x0b\x96\xda\x57\x9d\x5b\xe3\x70\xf7\x9f\x58\xe2\x5c\x5c\x66\x4e\xa9\x5a\xea\x72\x77\x97\x1a\x4f\x8b\x36\x53\x2d\x3e\x4c\xee\xe2\x92\xa1\x1a\xdd\xe5\xdd\x08\xb0\xd0\xee\x61\x76\x57\x13\x3e\x4c\x86\xa4\xdf\x07\xfd\x7e\x7f\x54\x58\x4b\x0a\x00\xb0\x05\x4a\x21\xd8\x8b\x10\x0f\xa5\xc1\xa2\x6d\x05\xe8\xaa\x17\x51\xdb\x0a\xa1\x1b\x24\x14\x7b\xf9\x04\x08\x86\x30\xcf\x3c\x5e\xc1\x2a\x54\xaf\x89\x45\x2a\x0d\x0d\x7e\x71\x69\x79\x5e\xa3\x31\xa0\x1b\xe2\x46\xbf\x32\x33\x73\x8c\x3c\x98\xd9\xbf\x72\xb1\xb1\xa6\xfa\x78\xfb\x09\xf1\xfd\xb7\x89\x12\x7f\xc4\x47\x4d\xbd\x5f\x3d\xf5\xfe\x94\x26\x81\x3f\xf2\xbd\xaf\x38\x20\xbf\x7f\x52\x7c\xff\x65\xe1\x47\xf8\x7f\xe0\xd7\xb3\xbd\x6f\xf2\x7b\xff\x7f\xc4\xf7\xd7\x64\x66\x8e\x37\x64\xae\x5e\xb1\xc4\x58\x5b\x75\xbc\xfd\x94\xd8\x46\xf4\x0e\x51\xe2\xdf\xf2\x51\x50\x8d\xfa\xc9\xb3\x00\xaf\x02\x6b\x3b\xaa\x25\xa1\xdc\x83\x7c\x02\xb6\xa0\xd5\xde\x25\x00\xa0\x44\xab\xe1\x21\x60\xb0\x74\xa2\xe4\x8e\xf0\x51\xd8\x82\xfa\xbd\xbd\x14\xd6\x0f\x4f\x01\xab\x2b\x9d\x29\xbc\xc3\xf5\xc3\xaf\x20\x18\xb4\x10\xe9\x51\x87\xab\x79\x05\x81\x6a\x84\x00\xd6\xc4\xc5\x62\x55\x94\x3f\x57\x0a\x3f\x06\xab\x7c\x0c\xa2\x64\xdf\x5f\xf5\x99\xfd\x3e\x56\x8f\x4f\xfd\x09\x08\x76\x00\x90\xb6\xa9\x9c\xbe\xa4\xb0\x9e\x25\x19\x53\x20\x8e\x2b\x11\xe7\x69\x91\x5c\x49\x56\x15\x2b\xe7\x19\x13\x77\x01\xd2\x26\xac\x1b\x17\x36\xa1\x63\xe3\xe8\x04\xf7\x20\x2d\x3e\x84\xb6\x0b\xf7\x00\x82\x5d\x42\x2f\x69\xa7\x67\x1d\xb9\x9e\x6c\xe0\xf9\x42\x1a\x10\xad\xe8\x52\x22\x85\xa2\xa4\x7e\x0e\xe2\x38\x56\x62\xbb\xa8\x9e\x15\xc6\xf6\xbb\x8a\x1c\xa4\x4a\xb0\xe9\x7d\x1f\x91\x3e\xa4\xd1\xab\xf5\xa4\x5d\x58\x33\x2e\x0c\xa2\x21\xf1\xdf\x71\x74\x4a\x58\x83\x4e\x09\xbd\xe8\xe2\x29\x2e\x88\x7e\xf5\xcc\xc4\x3f\x58\x5d\xf8\xb3\x58\xcb\x65\x73\x1f\x82\x66\xb6\x3a\xce\x56\x23\x2b\xdc\x3e\xe3\x92\xd9\xd9\x84\xdc\xfa\xcc\xcc\x06\x47\x7c\xbc\xa3\x3e\x33\xb3\xde\x91\xc0\x45\xd9\x6a\x73\x75\xba\xdc\x5a\x5b\xbe\xad\xc6\x91\x90\xe0\xa8\xb1\xb1\xf1\x5a\xec\xfd\x13\xc9\x47\x4a\x6c\x81\x30\xef\x7a\x1a\x0e\x18\x86\xcc\xd2\x58\xce\xf1\xfe\x49\x61\x96\x60\x31\x00\x60\x81\x30\x38\xcf\x70\x70\x38\x1d\x53\x1e\x9c\xde\xeb\xe4\xa2\xe2\x75\xd0\x83\x0b\x0a\x60\x01\xac\x86\x5b\x44\xc9\x51\x90\x8f\x83\x82\xf3\x54\x58\x09\x31\x08\xf3\x5c\x1d\x04\x81\x02\x82\x14\xcb\x11\x82\x39\x48\xc9\x83\x72\x39\x04\x07\x53\xe1\x51\x41\xab\x4a\xb0\x10\x93\x4a\xdc\xb0\x6b\xc7\xc6\xf5\xcb\xfb\xac\xd6\x74\xab\xd5\x68\x35\x1a\xe7\xaa\x12\xe4\x6a\x90\x52\xb8\xc8\xb4\x32\x13\x33\x5b\x1f\x61\x41\x5a\x6e\xc6\x4d\x06\xc5\xcc\xec\x47\x33\x7f\x69\x4f\x2c\xee\x2e\xcc\xef\x4c\x4c\xec\xc8\x2f\xea\x2e\x4e\x4c\x2c\xea\x2e\xcc\xef\x4a\x4c\xec\xc8\x2b\x5a\x5c\x9c\x28\x7c\x24\x42\xc5\xdf\x93\x8a\x16\x15\x16\x2e\x2e\x4e\xda\x55\xc1\x85\x55\xec\x0b\x8e\xb5\xea\x12\x52\xa2\x83\x83\x63\xac\x09\xba\x94\x98\x60\xe1\x62\x70\x8c\xef\x97\x14\x5d\x82\xf8\xcb\x47\xc1\xb1\x29\xba\xf8\x94\x18\xf9\x17\x94\xe9\x5e\xd9\x98\x91\x6a\x30\xa4\x66\x34\xae\x74\xa7\xb9\x57\x35\xa6\x5b\x0d\x06\x6b\x7a\xe3\x2a\x37\xf7\x84\x9b\xde\x6b\x59\xe5\x4e\x73\xaf\x6c\xc8\xc8\x68\x58\xe9\x9e\x2c\x69\xc5\xb7\xb7\x4e\xbc\xa6\xcb\x4f\x8f\x8b\x4b\xcf\xd7\xa5\xe9\xf2\xd2\xe3\xe3\xd3\xf3\x74\x69\x33\x7e\xe1\x16\xe8\xf2\xc4\x9f\xf2\xa6\x7e\xa2\xf3\xe8\x08\x9c\xe1\x3c\xdc\x18\xf0\xa0\xf3\xc4\x71\x52\x4d\x1b\x00\x1a\x12\x0a\x5d\xa2\xe4\x6f\x8c\x50\xd3\xd9\x84\x0c\xc8\x81\xec\xb8\x18\xe1\x21\xe1\x67\xc8\x32\x84\xcd\xc2\x20\x3a\x18\x81\xee\x90\xe8\x9c\x96\xe8\x98\x3d\x06\x05\xa2\x37\x9d\x31\xa2\x94\x30\x92\x49\xd1\xa9\xc1\x47\x70\xa2\xa4\x42\x1a\x64\x40\x08\xc7\x22\xb3\xf0\xc1\xbd\x08\x0b\x02\x37\x26\xec\x89\x10\xf6\xa0\x7b\xd1\x51\x36\xc7\x6d\xf0\x2e\x37\x42\x7e\x24\x2a\xa5\x57\x30\xa0\x2c\x9b\xc9\x82\xb4\xe8\xfc\x66\x8c\xb6\xbc\x5b\xc6\x5d\x2b\x13\x65\x47\x28\x76\x93\x68\xc5\x6b\x10\x04\x21\x60\xf3\xa4\xcc\x43\x40\x54\x08\x01\xae\x53\x20\x5f\xe8\x3b\x60\x4c\x03\x57\x0a\x71\x03\xcb\xd3\x49\x57\xb8\x5d\x63\xd0\x18\x1c\x7a\x0b\xb2\x23\xbd\x5a\xc9\xdd\x7e\xea\xd4\x25\x21\x97\x43\x6f\x3c\x21\x94\xa3\xd8\x28\x6e\x60\xdf\xf8\xf8\x52\xbc\x75\xf2\x29\x74\x57\x9a\xc8\x4b\x3d\x3e\xcc\xbd\xa1\xb8\x06\x1a\x58\xc7\xaa\x2f\x04\x89\xc4\xc3\x69\x6a\xf2\x38\xfa\x40\xd8\x43\x17\x03\xc7\x4e\x95\x8e\x2c\xac\x67\x45\x5d\xd8\x83\xa8\x96\x6a\x7d\x21\x95\x0c\xc4\xf2\x47\x16\x4e\xaf\x1c\xa9\xfa\xaa\xca\x91\x6f\x25\x18\x07\xea\x0a\x7b\x2a\x8c\x97\x1b\xcb\x0b\xea\x23\x2f\x2b\x9e\xdc\xe3\xa9\x45\xc6\xfa\xad\xcd\x02\x41\x1f\xae\xed\x2a\xcc\x9e\xfc\x01\x97\xc4\x74\x89\x35\x00\x64\xbb\xe2\xdb\x60\x87\x7a\x4f\x8d\x2f\xed\x46\x30\x52\xce\x45\xbc\x42\xc9\xf7\xcd\x43\x0a\xc2\xd2\x9a\xfa\x72\x6e\x54\x50\x96\x68\xf4\x52\x11\x6e\xb0\xe7\x64\x67\x65\x66\x58\x2d\x86\x64\x51\x3d\x8e\x52\xab\x23\xc3\x42\x54\x34\x38\x3e\x92\x57\xea\x95\x7a\x87\xbd\x98\x73\x58\x0c\x0e\x3b\xfd\x77\x46\xec\xa4\x56\xaf\xd1\x6b\xf5\x5c\xb2\xf0\x24\x97\x90\x88\x7f\x83\x6e\x7e\x59\x1f\x67\x8c\x9a\xc3\x3d\xf5\xb8\xe2\xd2\x05\xbe\x6c\xc7\xa5\xde\xde\xd3\x6b\xdc\xe3\x29\xe5\x1d\x59\xf6\x2e\x8f\x89\x47\x7d\xc2\x25\x82\xba\xd0\xfb\xd5\x95\x07\xb3\x4e\x9d\x52\xba\x6b\x17\x24\x55\xef\xbe\x67\xcf\xf8\xaa\x87\x36\x17\xba\x57\xdd\xdb\x51\xd2\x95\x17\x67\xa9\x5d\x57\x3e\xbe\xe7\x1e\x66\xa3\xdf\xea\xbd\x41\xae\x28\x46\xc1\x0a\x4e\x18\xa6\xa1\x69\x63\xc1\xf4\x6a\x6b\xdc\x58\x30\x52\x20\x54\x27\x15\x42\xce\x01\x15\x1f\xcc\xab\x82\x37\x41\x10\x10\x14\x44\x44\x39\x43\x0d\x57\x71\x08\x00\xd8\x3d\xfc\x12\x56\x20\x4c\xc1\x44\x4e\x9c\xc7\xf9\x5f\xbe\xa4\x50\x14\xc9\xa5\xc5\x2a\x45\x43\x29\xdc\x99\x9b\x96\x6a\x4d\x51\x47\xea\xd5\x46\x8d\xc9\x14\x46\xc5\xd5\xcc\xda\x77\x86\x10\xe9\x04\x28\x47\x87\xb5\x2c\x36\x69\xea\x56\x37\x19\x19\x0d\x8d\x31\x6a\x22\x6d\x73\x63\xb4\x0b\x52\x73\xdb\x4b\x0c\x5d\x2a\x47\xd7\x9e\xa6\xca\x71\xa1\x69\x4f\xa7\x53\xd5\x35\x3e\x3a\x71\xb6\x32\xdd\x63\x8d\x88\x48\x29\x4d\xaf\xe4\x9e\x9c\xdc\x9b\x56\x68\x52\x07\x91\x83\xea\x28\x63\xe3\xce\x85\xf8\x40\xcb\x3d\xcb\x5d\x93\xdf\x57\x8c\xba\x97\xdf\xdd\x82\x78\xe1\x4b\xe1\xfe\x9c\x96\x7e\xb7\x7b\xdd\xc2\x1c\x36\x37\x6e\xf5\x5e\x27\x79\xb4\x4e\x76\xb3\xa7\x51\x8f\x54\xca\x64\xc4\xab\xa4\x2b\xb8\x88\xd4\xcd\x41\x7c\x10\x52\x10\x5e\xd1\x17\x3c\x95\xe8\x47\xa5\x52\x76\x83\x52\x59\xe1\xdf\xde\xcc\x8c\xf4\x34\x5b\xaa\x89\xa6\x64\x31\x19\x59\x63\x7d\x87\x71\x52\xc9\x46\x83\xc3\xee\x30\x38\xec\xbe\xea\x45\x66\x5f\xca\x30\x8d\x9e\xdb\x28\xec\xc3\xf6\x45\xb7\xcd\x2f\xd8\x98\x1b\xee\xde\x59\xb2\xed\xb5\xa1\x66\xee\xca\x95\x2b\x57\x14\x0b\x8e\xbc\xba\xb5\x64\x5b\x51\x78\xee\x40\x61\xd3\xbe\x45\x76\x0e\xed\x17\xf6\xa1\xfd\x38\x71\xf5\xb9\xd5\xb9\x6a\xf5\xd9\xd0\xb0\x9a\x7b\xff\xe7\xf0\xee\x7b\xf6\xdc\xf5\x83\x7b\xaa\xd4\x21\xe7\xc2\x22\x72\x96\x9f\x5c\xc1\xe6\x05\x81\x5a\xef\x75\x9a\x07\x88\x45\x66\x77\xc3\x3c\x4f\xd0\xa2\xce\x05\x55\x05\x59\xa1\x84\x64\xf9\x65\xda\x9e\xfd\x2a\x01\xf5\x58\xfc\x17\xd7\xe0\x14\x16\xa4\xc5\x0d\x86\xb2\x9e\x82\xa2\xbe\x72\x83\xa1\xac\xb7\xa8\xb0\xa7\xcc\x78\x4f\xa8\x2e\x4d\xa7\x4b\x4f\x08\x0d\xd5\xa5\x27\xea\x6c\x09\xa1\x6f\x19\xca\x7b\x8b\x8a\x7a\x19\x86\x88\x79\x38\x44\x97\x91\xa8\x4b\xd7\x85\x84\xe8\xd2\x13\x13\xd3\x75\x21\x02\x95\x6a\x44\x97\xbb\xa4\x32\x25\xab\x65\x43\x61\x63\xd1\x86\x85\x59\xd6\xaa\x25\x8e\xb8\x1c\x73\x54\x62\x4e\x59\x72\x63\xb2\x27\x27\x31\xda\x9c\x15\x3d\x59\x5d\xb4\xa1\x25\x2b\xab\x65\x43\x51\x93\xef\x0f\x83\xc7\xae\xd3\xd9\x3d\x86\xa6\xe4\x52\xf1\x8f\xd2\xe4\x63\x4c\x3a\x8a\xeb\xe3\x17\xde\xeb\xdc\xdf\x15\x6f\x80\x11\xb2\x41\x35\x96\x6e\x0a\x07\x9c\x25\x1d\x9f\xf2\xbc\xc1\x91\xe3\x74\xa9\x03\x0a\x9c\x33\x3f\x7d\x31\xf5\x4b\xd1\xc3\xe2\xd6\xf5\x23\x6b\xec\xd9\xfd\xee\xfc\xfe\x4c\x6b\xf3\x60\x5d\xe1\x8a\x1a\x4b\xee\xca\x07\x7a\xb5\xee\x45\x15\x7f\x72\xce\xcf\x8d\x4d\xb7\x96\x15\x68\xca\x76\x3c\xba\x32\x64\xee\xbc\xd1\x90\x79\xe8\x57\xed\x47\x96\x3b\xd3\x17\x6e\xad\xb1\x36\x3e\x71\xe9\xbe\xdc\x8e\x8a\x0d\x8d\x56\x5c\x62\xe9\x5d\xb7\xd9\x6d\x6b\x6a\x1e\x5c\x0b\x04\x76\x51\x99\xf4\x2a\xcc\x81\x44\x70\x40\x9e\x38\x36\x6e\x67\xa6\x31\x26\x44\x01\x24\xcb\xa6\x37\xa0\x08\x83\xda\x8e\x38\xbb\x76\xc6\x08\xb8\x66\x8c\x40\x84\xde\xa1\xc7\xbf\x1d\x15\x3e\x47\xa3\xcf\xa2\xb9\x68\x74\xa1\x26\xa5\xd0\x6c\x29\x4a\xd1\x68\x52\x0a\x2d\x96\x02\xab\x66\x25\x99\xa7\x8d\x88\xd0\xce\x23\x8a\x79\xda\x88\x70\xed\x5c\xc5\xcf\x84\xb7\x91\x9d\x7b\x60\x62\x83\x62\x74\x62\x33\x77\x74\x2c\xa5\xc6\x99\x98\xe8\xac\x49\xf9\x41\x4a\xb5\x23\x31\xd1\x51\x9d\x32\x47\x6b\x49\x50\xab\x13\x2c\xda\x97\xa3\x52\xc4\x3f\x52\xa2\x26\xdf\xed\x11\xfb\x72\x35\x77\x8a\xb8\x68\xdd\xff\x48\x50\x8d\x45\x84\xf2\x08\x67\xd9\x90\x94\x6c\x37\x22\xc2\xae\x36\xb0\xec\x32\x0e\x3d\xf7\x8b\x23\xb9\x87\x17\x6d\x3a\x7a\x6c\xd3\x22\x61\xee\xf1\xee\x07\xd0\x7e\x85\x5e\xd8\x8e\xee\x16\x76\xe0\x18\x61\x33\x3a\x3a\xf9\x7b\xf4\x3d\xc1\x8d\xbe\xb7\x80\x8e\xd1\x19\xef\x0d\x72\x9c\x34\xd1\x6c\xdf\xaa\xb1\x64\x5d\x08\xc6\x59\x36\x93\xaf\x5c\x56\x31\x91\x8e\xb7\xd5\x51\x51\xf6\x28\xa7\x0b\x89\xbb\x80\x5e\x6d\x36\x13\x6d\xdb\xb5\xe5\x1b\x5f\x19\x6a\xb1\xd6\x2c\xdf\x76\x7b\xd9\xea\xb1\x3b\x9a\x26\xc1\x75\xa4\x69\xe9\x78\x97\x70\xac\xe1\x48\x1e\x8e\x77\xde\xb5\xd4\x51\xd4\x75\xe6\xad\xc1\x86\xa3\x7b\x57\xd7\x59\x5b\xee\xff\xce\x60\xa6\x70\xd5\x5e\x80\x0a\x4b\xb8\xd4\x32\xb7\x70\x1d\xe9\xec\xc5\xcc\x6e\x69\xf6\xfe\x83\x8c\x2b\x9e\x85\x4c\xf4\x4d\x6f\x34\xfe\x43\xde\x59\x30\xa3\xed\xff\x02\x14\x8a\xbe\x87\xee\x04\xc8\x3b\xcb\x6c\x18\xfc\x07\xd1\x86\xf1\x7a\x21\xc7\xfb\x0f\xf2\x4d\xc5\x35\xc8\x44\xaf\x79\x63\xf1\x27\x0c\x3f\xf1\x9f\x14\xff\x5e\x8a\x1f\x4e\xf1\x3f\x19\xb5\xdb\xe8\xc1\xd2\x3f\x47\xed\x36\xaf\x17\x8c\xde\x2f\xc9\xd3\x8a\xe7\x21\x13\xbd\xee\x25\xf8\x3a\x7b\x4f\xc5\xbe\xb3\x1b\x48\xde\x59\x50\xd3\xf7\xae\x8b\xef\x61\x6e\x94\x48\xdf\xf3\x78\xff\x41\x1e\xa3\xef\x7d\xd7\x9b\xe9\x7b\xef\x7f\xd8\x7b\x5b\xfd\xf8\xbb\x2e\x9d\x5f\xed\xf3\x5e\x27\x55\x8a\x1b\x60\x86\x42\x50\x8d\x65\x5b\xe2\xc2\xc4\xb1\xca\x89\xd2\x4a\xb5\x65\xa9\x24\x9a\x5e\x3b\x7c\x5a\x1a\xf8\x0c\x0e\x37\x77\x3f\x5a\x18\x5c\xb6\x62\x7f\x5d\xd3\xa1\xea\xb0\x84\x92\xfa\xee\xfc\xa3\xef\x1c\xa2\xa5\x10\xb6\x5c\xd9\x5b\x5a\xb2\xf3\xe9\xdb\x1a\x37\xd5\x19\x8d\xb5\x9b\x1a\xe6\x6f\xae\x33\xf0\x29\x35\xeb\x38\xa1\xa1\x72\xcd\xe8\xbe\xea\xa4\xb8\x53\xf3\x62\x22\x83\xf7\x7e\x28\xfc\xe8\x85\x82\xbb\xfe\x3c\xba\x72\xc1\xd0\x37\x37\x6b\xd7\xbc\x70\xb0\xfe\xb4\x6b\xe9\x1e\x96\xf7\xbd\x76\xdf\xe3\xbd\x65\xf1\xb5\xa5\xe9\x4c\x1e\x3f\xe6\xb5\x11\x13\xbd\xf7\xc6\x5f\xe1\x45\x7d\x47\xe1\x4b\x97\x6c\x1a\x9f\xfc\x6c\x9c\xdb\xf7\xae\xe2\x4f\x5f\x46\xf0\x77\x88\xb8\x76\xe1\xef\xe4\x34\x9d\x8b\xfc\x15\x15\x87\xb2\x6c\x08\xe9\x35\x7a\x07\x42\x0e\xbd\x46\x8f\xb8\xce\xc9\x97\xb9\x83\x37\xcf\xe1\xde\xc9\x8b\x24\x66\xe2\xbb\xb8\x12\x97\x4e\xd6\x9d\x3e\x8a\xdf\xc2\x3f\x3e\x76\x7a\x52\xca\x39\xfc\x04\x3e\xcc\xdd\xe0\x92\x81\xa3\x36\xc4\x34\xad\x4f\x1d\x46\xb5\x3e\xbd\x43\xcf\xdd\x98\xf8\x3a\x57\x4e\x4f\x30\x10\xcd\x8f\x7b\xbf\x62\x14\x82\x80\xbf\xa2\xa0\xdf\xd5\xba\x90\x1d\x19\x38\x83\x43\x8f\xa3\xa3\x62\xd0\xbd\x5f\x9f\xfc\xcd\xd0\xe7\xe3\xa8\x00\x2d\x58\xb3\x86\xf4\x7c\xd9\x8c\xb7\x9e\x05\x0e\x1c\xf0\x11\x39\xcb\xfd\x02\xac\x50\x0e\x4b\x20\xe8\xc5\x8e\x9a\xa2\x8c\x18\xc2\x4d\x89\x62\xcb\xb4\xc4\x92\xda\xc0\xdc\x5d\xbe\x1b\xe5\x98\xe6\x65\xa6\x57\xcb\x59\x6a\x10\xac\x21\x67\x8d\xd5\xeb\xaa\x72\xdb\x2b\x1d\x11\x11\xb9\x95\xed\xb9\xd5\x6b\xab\x8d\xc6\xaa\xb5\xd5\xb9\x1d\x95\xb9\x11\x11\x8e\xca\x76\x47\xd5\xda\x6a\xe3\xde\x30\x53\x51\xba\xce\x99\x6e\x8a\x57\x73\x9c\x3a\xde\x98\xe1\xd0\x65\x14\x99\xc2\x26\x1e\x08\x33\x15\x65\xe8\x1c\xe9\xa6\x38\xf1\xf7\x38\x53\xba\x53\x97\x5e\x64\x0a\xc3\x75\xd5\x07\x56\x14\xa6\x55\xb5\xa7\xa6\xb6\x57\xa5\x15\xae\x38\x50\x9d\x5a\x15\xf8\x43\x55\x56\x47\x79\x4a\x7c\x86\xdb\x95\x1d\x9a\x10\x9a\xed\x72\xa7\x27\x58\xca\x3b\xb3\xb3\x3b\xcb\x2d\x09\xe9\x6e\x57\x56\x18\xfd\x31\x23\x5e\xd4\x6d\x00\xc1\xbf\x84\x7a\xee\x7f\x78\x1b\x24\x01\x7f\x25\x12\x8b\x63\x1b\x90\x14\x34\xc0\x7d\xc7\x6b\xd4\xf8\xf2\xe3\x67\xfd\x42\x0a\x32\x3a\xf6\xcd\x37\x55\x99\xa2\xd5\xe9\x09\x8b\x16\x77\x3d\x36\x26\xc7\x14\x28\xe2\xda\xef\x5c\x9c\x3d\x77\xce\xbd\x0a\x7e\x73\xef\x97\xbf\x63\x32\x7f\x08\x45\x92\x62\xce\x0b\x7a\x28\x07\xd5\x58\x79\x8e\x5e\x9c\xfb\x11\x4e\xa7\xdd\x49\x8b\xc7\xfa\xef\xcb\x19\x9c\x92\xe7\x95\x4a\xa7\xd3\x35\x2b\x2c\x99\x57\x9e\xca\xda\x5d\x6e\x29\x70\xd8\x93\x12\xb2\xb2\xdd\xc6\xf2\xdd\x99\x41\x59\xbb\xcb\x4c\xae\xec\x2c\x5d\x62\x6e\x6e\xa1\xa5\x7c\x77\x66\xe4\x7f\xc4\xe0\xd6\x54\x34\xa1\xe0\xc8\xb8\xb0\xd0\x98\xf0\xe0\xa6\x8a\x27\xcb\xe7\x07\x87\xc7\x84\x86\xc5\x47\x06\x23\xd4\x54\xe1\x2d\x6f\x42\x28\x38\x32\x3e\x34\x34\x36\x3c\x78\x7e\xc5\x93\x15\x4d\x41\x11\x31\xa1\x61\x71\x91\xc1\xa8\xa9\x82\xce\x53\x18\x23\x66\x52\x0a\x11\xc0\x5f\x99\x2b\xf6\x1d\xd2\x2b\x2d\x2e\xbd\x43\x4f\xff\xd5\x2a\xed\x1a\xbd\x52\x4f\xcc\x93\x13\x8b\x9b\xca\x84\xbf\xa0\x65\xb7\x09\x3a\x6c\xaf\x6b\xcc\xfe\x58\x78\xeb\x36\xf4\x02\xda\x70\xd5\x7e\xc7\x45\xef\x83\xc7\xed\x7d\x0f\x7a\xa9\xac\x7b\x09\xe6\x90\x79\xe4\x2c\xac\x06\x1d\x44\xc0\xcb\x1e\xc8\x3b\x8b\x94\xe8\x2e\x08\x9f\xdc\x47\xa5\xcf\xe8\xcb\x92\xd0\x9a\xdc\x47\xa5\x89\xf8\xce\xb7\x40\x49\x1c\xe4\x69\x58\x0d\x49\x10\x06\xef\xc8\xef\xc4\x4e\xee\x65\xef\xbc\xe3\x7b\x67\x2f\x7b\x07\x30\xdc\x0b\x40\x4a\x14\xa3\xa0\x80\x79\xa0\x1a\x9b\xab\xe2\xc4\xbd\x97\x86\x62\x23\x3d\xb2\x28\x11\xd2\xba\xb0\x6e\x08\x1d\x17\x06\x86\x84\x0d\xf8\x6f\xc2\x67\x6a\xb5\xf0\x25\x9a\x1b\x16\xae\x18\x9d\xb4\x4c\x5a\xf1\xfb\x38\xc8\x6e\x9f\xfc\xc7\xe4\x3f\xed\x76\x6a\x0f\x65\x78\xdb\x71\x0a\xfc\x05\x82\x81\xbf\x12\xa4\x10\xed\x21\x3f\x67\x48\x8a\xda\xe8\x32\xad\x31\x99\x46\x9f\x48\x5d\xbc\x68\x61\x52\x4d\xf1\xad\xf5\xb5\x10\x05\x8b\x21\x88\x1c\x22\x3c\xcc\x83\x78\x48\x85\x7c\xf0\x40\x15\x34\x40\x0b\x74\x43\x0f\x2c\x87\xd5\xb0\x0e\x06\x60\x10\xf6\xc0\xad\x70\x00\x0e\xc1\x61\x38\x0a\x0f\x40\xb6\x27\xe3\xfe\x63\xf7\x1e\xb9\xe7\xae\x3b\x0f\xee\xbf\x6d\xdf\xde\x5d\x5b\x37\x6f\xda\xb0\x7e\x4d\xff\xca\x15\x7d\xbd\x4b\x16\x77\x2e\x6c\x6e\xaa\xa9\xae\x28\x2d\x2c\xc8\xcb\x35\x27\xc6\x84\xcc\xc1\x51\x59\x36\xc4\x94\x05\xa9\x68\xbc\x96\x1e\x78\xb1\xea\xfd\x06\x83\xda\x42\x67\xba\x83\xde\xbd\x8e\xd2\xb0\x79\xef\x30\x30\x54\x87\x01\xd1\xb8\x4f\x3d\xcd\x19\x2a\xfe\x6d\xd0\x98\xc4\xff\x77\xa0\x9c\x28\x4d\x24\x6f\x30\x38\x38\x11\xc1\x41\x51\x34\x11\xfe\x7f\x8b\xd4\x22\x0d\x06\x85\xc1\x61\x57\x4b\xff\x22\xff\xbf\x3f\xad\xca\xcb\xab\xaa\xce\xcb\xab\xbc\x60\xcf\x8b\x8f\xd7\x6a\x8b\x5d\xab\x3b\x53\x0c\x46\xab\x68\x50\xe3\x10\x9d\x36\x36\xd1\x5e\x98\x95\x9e\x9f\x33\x71\x5f\xf1\x7a\xfc\xfe\x86\xa2\x9b\xef\x5e\x5e\xcf\x95\x5f\x2e\x12\x2a\x13\xe2\xe2\x12\xaa\x8c\x67\xca\xcf\x4c\x8e\x9e\x2e\x67\xff\x59\x6d\xd7\x27\x95\xda\x85\x05\xc5\xf4\x1f\xee\x4f\x45\xf4\x1f\x6c\x72\x96\x95\x39\x8b\xc5\xff\xdb\x61\xb3\x69\x2d\xaa\x39\xc9\x1a\x5b\x8a\xf0\xa3\x1d\x66\x9b\xcd\x5c\x2c\xfe\x5f\x5b\xb4\x2e\x3a\x36\x23\x3d\x27\xfd\x87\x93\x6b\x9f\x19\x28\x29\x19\x78\x86\xeb\x19\xf6\x2c\x59\xe2\x19\x5e\x22\x64\xc7\x46\x69\xa2\x97\xa0\x77\x3c\xf4\x9f\x89\x8a\x12\xfa\x0f\x5e\x15\xa6\x4d\x6b\xb9\x47\x78\xec\x6e\x14\x75\xb7\xf0\x98\xf4\x07\x80\x02\x42\x27\xdf\x25\xcf\xaa\x06\x81\x03\x2b\xa4\x43\x36\x38\x20\xd4\x33\x37\x37\x27\x2b\x23\x2d\x35\x9c\x60\x50\x64\xd9\xe6\x70\x8a\xdc\x62\xec\x92\x62\xba\x44\x1d\xdb\xee\xa4\xbd\x2e\x4e\x94\x10\x4e\xa3\x35\x68\xec\x9c\x5d\x63\x10\xff\xc5\xcb\x70\xe3\xe4\x95\xc9\xa7\xf1\x35\x7e\xae\x3a\x38\x2a\xdd\xa8\x35\x55\xae\xf2\xb8\xfb\x6a\x6d\xe8\xfb\xd8\x1a\x6d\x4a\x52\x47\xc7\x05\x25\x18\x34\xaa\x37\xdf\x7c\x73\x3d\x21\x98\x10\xbe\x65\x22\x7b\x22\x9b\x7b\xe7\x66\x8c\x25\x31\x21\x2c\xd1\x95\xe7\xb1\x7a\x56\xd7\x5a\x74\xa5\x2b\xab\x5c\x59\x9e\xdc\x58\x7b\xa6\x65\x9e\x31\xc5\x9c\x93\xd5\x7d\x79\xb2\x9d\x04\x8d\x10\xc0\x70\xd5\xfb\x29\x01\x32\x4c\xef\x48\xaa\xc6\x4c\xb1\xa1\x44\x5c\x03\x52\x92\x16\x07\x93\xf1\x5a\x8b\x94\x43\x58\x23\x25\x6d\x21\x80\x32\x57\x5e\x18\x18\xb8\xb0\x2a\x0b\xa1\xac\x95\x23\x03\x03\x23\xab\xb2\xd1\x4b\x48\xe3\x58\x54\x59\xb9\xc8\xa1\x41\x28\xca\xd1\x5d\x59\xb9\x28\x37\x12\xa1\xbf\xae\x18\x3f\xda\xd6\x76\x74\x7c\xc5\x33\x2b\xc6\x87\x5a\x5b\x87\xc6\x57\xc4\xe7\x6d\x5f\x5a\x58\xd8\xb3\x2d\xef\x77\x79\xdb\x97\x15\x17\x2f\xdb\x9e\x07\x08\xe5\x03\x70\x0f\x73\x49\xa0\x83\x34\x8f\x95\x5d\x4c\x06\x8c\x08\xa2\x37\x92\x01\x61\x0e\x2d\xf7\xdd\x47\x2e\x82\x86\x58\x63\xb8\x25\x4c\xa1\x8a\xb1\xe9\xf5\x0e\xc4\xe6\x71\x32\xaf\x34\xf8\x97\x44\x56\xea\xb9\x87\x27\x9f\x40\x49\xa5\xee\xb2\xfc\xba\x6a\x34\x92\xda\x34\x50\x59\xb6\xb6\x2e\x25\xce\x5e\x6d\x7b\x16\x1d\x5d\x8f\x42\x0b\x3b\x0c\xd9\x45\xf5\xf9\xce\xde\x6a\xab\xbe\xb8\xc3\x95\x52\x5d\x59\x6d\xb9\x0f\x00\x23\x35\xf9\x98\xfb\x0b\xff\x05\xf0\x54\xdf\x33\x47\x29\xa8\x5c\x30\x58\x94\x06\x64\x77\x49\xdb\x21\xdd\xd9\x7c\x06\x35\xdd\xf7\xb8\xbf\x3c\xf9\xfa\xb7\x2f\x23\xe3\x89\x6b\x31\xb6\xfc\x64\x53\x8e\x2d\x4d\x17\x96\xa0\x0d\x6d\x14\x9f\x12\x73\x32\xb2\x12\xc2\x74\xda\x10\xf2\xf1\xe8\x28\xe2\xff\xa5\x2f\xc9\xd6\x45\xc5\x69\xd5\x71\x7a\x75\x84\xbe\x34\x27\x31\x2a\x36\x2a\x2c\x56\xaf\x06\x0c\x13\xe4\x63\x72\x8d\x7f\x07\x78\x88\x05\xd5\x98\x5a\xe9\xff\x6d\xad\x45\xca\xcb\xe6\x92\x66\x8c\x92\xfb\xc5\x93\xdf\xf9\xce\x65\x14\xfe\xf2\x3f\x50\x91\x27\xda\x92\x1b\xcf\xef\x39\xa2\x35\x67\xc7\x20\xf2\xf1\xb5\x6b\x88\xdf\x7b\x40\xa1\x35\x44\xc4\x84\x29\x17\xb7\xd7\xeb\x33\x13\xc3\xb9\x42\x2a\xf7\xc2\xc8\xc7\xdc\x17\xfc\x09\xe0\x21\x08\x54\x63\x73\x02\xbe\xa1\x30\x70\x76\xee\x8b\xd7\x2f\x5f\xfe\x36\x4a\x3e\x2d\x1c\x3d\xf2\xc6\xf7\xc8\xc7\x23\x23\x88\xef\x44\x1c\xf5\x05\x07\x93\x8f\xc9\x67\x7e\xef\x62\x49\x66\xb2\xb7\x39\x03\xce\x3c\x85\x0c\xaf\x3f\x71\xf9\x3b\x5c\xf2\x77\xbf\x37\xa4\xf8\x44\xf8\x72\x64\x04\x3d\x27\x4c\x8a\xef\x66\x91\x47\xb9\xa7\xf8\xc7\x40\x03\x31\xa0\x1a\x8b\x8e\x22\xf4\xdd\x19\xd6\x9b\xc5\x60\xb1\x73\x4f\x65\x2c\xdc\x56\x53\xbb\x6d\x61\xfa\x89\x48\xab\x27\xcd\x56\x62\x8d\x5c\x78\xea\xc7\x3f\x55\x8c\x16\x2c\xab\xb2\x58\xaa\x96\x15\xe8\x9c\x56\xad\xd6\xea\xd4\x59\x7f\xc0\x7c\x51\x5f\x90\x7b\xf1\xa7\x7c\xc1\x94\xec\xf5\xf7\xd4\x7f\x11\x6b\xcd\x8e\x5e\x67\x88\x1b\x57\x84\xa6\x75\x35\x97\x69\x16\x16\xac\x2d\xda\xc9\xf6\x00\x27\x00\xb9\x97\x0c\x81\x12\x82\xc0\xe4\x49\x0e\x42\x04\x8b\x33\x8f\xe0\x2d\xd2\xb5\x9a\x65\x1c\x92\x9d\xcf\x74\xca\x21\xfd\x54\x2e\xd0\x55\x93\x5f\x6e\x7c\x19\xfd\xe2\x11\xf4\xde\x4b\x93\x6f\xa0\xa3\xdf\x45\x5a\xe1\x8f\x64\xe8\xe6\x20\x7a\x06\xdd\x64\xf7\x0a\x7f\x08\x40\xaa\xc8\x10\xc4\x82\x05\x72\xd9\x39\x22\x8d\x29\xf1\x25\x9f\x93\x6b\x06\xf9\x8e\xf4\x8b\x50\x43\x5c\x1c\x40\x6e\x4e\x6a\x4a\x9c\x25\xce\xac\x8b\x87\x58\x88\xd1\xab\x54\x52\xa5\x20\x42\x07\x9e\xc6\xac\x11\x03\x52\xfb\x2e\x18\x9a\xec\xd2\x1f\x86\x1f\xa2\x61\xfb\x9a\x65\xed\x25\xc6\x24\x47\x75\x4a\x76\x6b\x91\x31\xb9\x70\x61\xef\x1a\x87\xf0\x19\x9a\x9b\xd6\x59\x65\x33\x97\xb6\x67\x0a\xd7\xbf\x48\x69\x29\xb3\x65\xd4\x2d\xb2\xfd\x96\x0c\x85\xe8\xb2\xaa\x97\x16\x65\x35\x16\xd8\x42\xe6\x66\x54\x76\xbb\x8a\x7a\xeb\x72\x93\xc3\x70\xb8\x70\x07\x8a\xb0\x55\xda\x73\x6b\x33\xb5\x68\x08\xa9\x2d\x9e\xcc\xdc\x72\x73\x28\x02\x04\x1b\xbd\x9f\x12\x27\x19\x16\x5b\x44\xd3\xf7\x2a\x38\xac\xd8\xc4\x23\x05\xe1\x14\x64\xa3\x1c\xb1\x2d\xa5\x5b\xab\xa4\x17\xae\x2c\x60\xb1\x26\x47\x5a\x8d\x4a\xb1\x03\xa7\x49\x17\x83\xe4\x6e\x10\xa5\x4b\x94\xd3\x45\x9c\x73\x5b\xf6\x5d\x5a\xba\xed\x6b\xb7\x94\x21\x54\x71\xfb\xf8\x8e\xa5\x0f\xee\x6a\x9a\x3b\xae\x39\x74\x4b\xdb\xce\x06\x03\x42\x49\x35\xdb\x5a\x6f\x1b\xd2\xa2\x5d\xbd\xf7\xaf\xb0\x77\x9e\xfc\xce\xc0\xca\xcd\xdf\x3d\xd9\xe1\x5c\x75\x7c\xe9\xf6\xdb\xca\x07\x8e\xd6\xaf\xaa\xbd\x77\x53\x25\xda\xb5\x9b\x8d\xef\x8b\x00\x64\x21\x19\x82\x79\x10\x47\x4f\xeb\x40\x81\x38\x0c\x52\x7f\x13\xd6\xdf\x21\x21\x00\x21\x71\x21\xb1\xea\x50\x98\x07\x73\xf5\x3c\xeb\x6b\x1d\xa7\xd5\x84\x70\x4a\x4e\x6d\x2f\xe6\x5c\x8e\x0c\xce\xf2\x22\x5a\xb7\xeb\xed\x13\x6d\x08\x75\x9e\xf9\xe1\x9e\x47\x1e\x59\x7c\x74\xb9\x03\xa1\xec\x9e\x23\xdd\x64\x08\x37\xdf\xf7\xe6\x9e\x92\x7d\x6f\x1e\x6d\x42\xdc\x67\x13\x97\x50\x5e\xff\x03\x8b\x4a\x3b\xef\x5b\x93\x4f\x83\x8d\xbf\x07\x40\x0c\x64\x08\x82\xe9\x3d\x27\x0e\x88\x82\x23\x7d\xa0\x00\xe6\xd7\x9b\x72\xe6\x05\x9c\x6f\xd0\xe3\x06\xf1\x5f\xee\xf5\xc9\x57\xf1\xc8\xc4\x23\x5c\xdb\x64\x3f\xf6\xe0\x10\xe1\xee\x53\x64\xe8\x8c\xf0\x3c\xb3\x11\x7e\x0f\x40\x8a\xc8\x10\xcc\xa1\x75\x62\x58\x10\x60\x9f\x7c\x23\x6c\xfa\xcc\x15\x8d\x15\x4a\xf3\xe3\xc9\xd7\x5e\xe5\xda\x27\xd7\xe2\x22\xf4\x77\x61\x9e\x48\xef\x34\xa3\xb7\xd7\xfb\x29\x29\x25\xc3\x90\x0e\x2e\x4f\xae\x15\x30\x51\x88\xcb\x81\xe3\x39\xcc\x6f\x92\x87\x96\x07\xea\x76\xf2\x1b\x62\xb5\x46\x1a\xde\x38\x9b\xe9\xdf\x0c\x2f\xcd\xf8\xa5\x77\xe8\x49\xa9\x75\xf5\xd6\xbd\x85\xbb\x5e\xbd\xb3\x16\xa1\xb2\x7d\x2f\xed\xee\x1a\xde\xbd\x20\xe4\xc5\x98\xa1\x4d\x1d\xbb\xea\xf5\x08\xa5\x2c\xdc\xd7\xa1\xaf\x2a\x2f\x8e\x41\xc2\x75\xf4\xd6\xc9\x6c\x8f\x39\xb4\xe3\xd4\x9b\x5b\x5b\xb7\x7e\xff\x54\x47\xe6\xe2\xc3\xdd\xeb\x36\x56\x6c\xb9\xaf\xa1\xbd\xe9\xfe\x4d\x95\x8a\xb0\x84\xe8\x3f\x1f\xa3\xbc\x9f\x03\xe0\xbe\xa0\xfd\x3c\xad\x66\x8e\x74\xcc\x03\x7e\x3d\xec\x5f\x33\x87\xfb\xe2\x79\x81\x7f\xfe\x79\xf4\xe5\xf3\xe8\x6f\x42\x08\x19\x9a\x9c\xc4\x9c\x48\xef\x67\x00\x24\x8c\x1c\x91\xe8\x81\x82\xb9\xab\x09\xc2\x98\x86\xd9\x14\x71\x7e\xf4\x22\xa4\xf1\x72\xe8\xd5\xfa\x9f\x71\x2e\xe1\xeb\xa8\x7c\xe2\x0d\x54\x20\xbc\x4e\x8e\x3c\x38\x31\x76\xf1\x22\x57\xcf\xfa\xf7\xa4\xf7\x53\xee\x7f\xc9\x10\x68\xe9\x5d\x54\xc0\xb0\x05\x30\x87\xb7\xf8\xd2\x69\x54\xa2\x06\x63\xa4\x29\x8c\xa8\xa2\x6d\x48\xce\x95\x26\x57\xb8\xe0\x52\xbe\x81\x71\xc5\xe6\xe3\xcd\x1d\xa7\x07\x6b\x55\xdf\x48\xa9\xe8\xcc\xce\x6c\x2e\x34\x60\x32\x34\xf1\x49\xcf\xfd\xcb\xed\x69\x4b\xee\x5b\x59\xdc\xe5\x8e\xd1\x17\x75\xe5\x01\x82\x17\x00\xc8\x6d\x64\x08\xe6\x8a\xdf\x0a\xe2\x11\x27\x39\xfd\x11\x74\x71\xac\x3f\xc2\x23\xd4\xe1\xf4\x5b\x4a\xda\x17\x2e\x76\x0f\x11\x1e\x18\x1f\xdf\x8f\x8e\xfc\x56\x48\xc6\xf0\x6b\xac\xbc\x57\x38\x44\x86\x26\xdf\x3b\x8a\xce\x4d\x7e\x31\xb9\x1b\x10\xfc\x08\x80\xb4\x90\x21\xa9\x96\x18\x06\xbc\x45\x6c\xda\x22\xdf\x6c\x0b\xe3\x54\x5a\x9b\x49\xec\x0f\x3b\x3a\x81\xbf\x3e\x71\xeb\xb7\x4f\x9d\x22\x43\x6c\x7c\x48\x3e\xe5\xc7\xe2\x31\xaa\x14\x18\xd3\xa2\x59\xec\x70\x9a\xd0\xe3\x73\x9f\xac\xa5\xe5\x92\xc4\x19\x1b\x50\x2e\x69\xc3\x87\x7f\x1d\xfd\xe0\xc0\x6f\x46\xff\x85\x3b\xb1\xe3\xe6\x20\xf7\xca\xe4\xad\x78\x70\x62\x3e\xa5\xfd\x2d\x00\x12\x4a\xd7\x81\xce\x13\xa7\xc4\x18\x30\xaa\xe3\x10\xc6\xd0\x85\xa4\xa6\xaa\xc3\x69\xb7\x4e\xb9\xaf\x48\xe8\x53\x42\xb0\xe2\xb9\x67\xd0\xe7\xfc\x28\xb7\x7e\xe2\x38\x19\x9a\x78\x80\xdb\x00\x18\xf6\x7b\x3f\x25\x75\x92\x4e\x94\xe0\x89\x95\x2f\xd8\x72\x9c\x6f\xba\x5b\xad\x56\x23\xed\xb7\xff\xa4\x28\xd5\xa1\xa2\x5d\x2f\xec\xdc\xf1\xc2\xee\x12\x84\x8a\x77\xbf\xb0\x63\xe7\xd8\xae\x22\xf4\x22\x4a\xac\x1a\x6c\x6d\xdd\x52\x9d\x88\x50\x52\xf5\x96\xd6\xb6\xc1\x4a\x1d\xc2\xc6\x8d\x6f\x9d\x5f\xba\x74\xf8\xad\x0d\xe5\x1b\xde\x1a\xe9\x59\x3a\xfc\xf6\x46\x5c\x7d\xff\xb6\xba\xfa\xed\xf7\x55\x55\x56\xdf\xb7\xa3\xbe\x7e\xfb\xfd\xd5\x4c\xa6\x2d\xf5\x3a\xc9\x6a\x32\x0c\xb1\x90\x05\x29\x1e\x93\x42\xca\x44\x8f\xa1\x7a\x76\x56\xad\x12\xab\x4a\xad\xd2\xc4\xff\x7b\x7e\x57\xa2\x04\x77\x8b\xe3\x57\xb7\x08\xff\x28\xf2\xec\x7e\xe5\x60\x35\x42\x55\x07\xbf\xb1\x7b\xf7\x2b\x07\xab\xd0\x55\x64\x6e\xbe\xa5\xb3\x63\x6f\xb3\x05\x21\xcb\x82\x5b\x3a\x3a\xf7\x36\x9b\x10\x36\xd6\x1d\xde\xb3\xca\x7c\x69\xe0\x7b\x21\x8b\xce\xbe\x3d\x58\x3e\xf8\xf6\xb9\xee\x45\x67\x7f\xb0\x15\x37\x3d\xb0\xa5\xb2\x6a\xf0\x81\x86\xca\xc6\x07\xb6\x56\x55\x6d\x39\xde\x04\x98\xd6\xca\x49\x23\x43\xf4\x86\x3d\xcd\x89\xcd\xb4\x3c\x1a\x53\xbf\xdc\x27\xb3\xa4\x29\x90\xa2\x4f\xd5\xfb\x9f\xf5\x4a\xd7\x21\x90\xc6\x80\xe4\xad\x0e\xf7\x09\x7f\x18\x47\x97\x5b\x1f\xbc\xa5\xde\xe8\xe9\xc8\x41\xc9\xdf\x9d\xfc\xf8\x1f\x99\xdd\xd5\xe9\xb6\x9a\xa5\x39\x7f\x45\xdf\x14\x4a\xc8\x10\x4a\x69\xbf\xb3\xa7\xa4\xb7\x3e\x2f\x4a\x88\x0d\xc2\x9d\x28\x3a\xbb\xde\xe1\x9e\x9f\x13\x2d\xee\x63\xf7\x78\x3f\x25\x79\x64\x18\x2a\xe9\x3e\x26\x65\xe8\x00\xa2\xc0\x44\xb1\x91\x2a\x3b\x80\x97\xfb\xc2\xe1\x2b\xb9\x86\x32\x4f\x61\x81\xcb\x91\x98\x10\x13\x1d\x19\xce\xab\x22\x6d\xc8\x99\x41\x2c\x34\x0a\x82\x04\x24\x7f\x8f\xd4\x11\xad\xb4\x41\xd3\xd5\xcb\xfa\x96\xbb\x15\xc5\xa6\xe7\x97\x94\xc4\x55\x9e\xb9\x7d\xa1\xa5\xac\x73\xf9\xea\xac\xd6\x0b\xfb\x16\xf0\x2f\xe1\xcc\x86\xde\x9c\x94\x45\x0d\x39\x89\xb9\xa5\xe5\x9e\x98\xaa\xfb\x77\x36\xa4\x54\x2c\x5a\xb1\x26\xbb\xfd\xc9\x7b\x16\xf1\x2f\x63\x57\xfb\x5a\x67\xca\x92\xf9\x0e\x94\x6a\x74\xa6\x26\x44\x85\x29\xd5\xf6\x96\x9d\xed\x79\x4b\xaa\xed\xfa\x30\x5b\xd7\x9d\x8b\x5c\x4d\x39\x51\x61\x96\xd2\xec\xe4\xdc\x94\x04\x4d\x28\x1f\xee\x6a\xdb\xd5\x56\xb0\xa4\x2a\x3b\x31\x24\xb5\xeb\x9e\xde\xa2\x85\x76\x4d\x88\xc9\x43\x65\xcf\x12\x00\xb2\x86\xea\x3a\xe2\xba\xe5\x30\xa2\x25\xd7\xe4\x4d\x82\x49\x1d\x5f\x05\xaf\x35\x42\xc7\xcb\x42\x17\x99\xcb\x7d\x36\x31\x97\xfb\xec\x8c\xf8\xfe\x98\xf7\x53\x62\x23\x43\x10\x23\xca\x43\xc2\x61\x84\xd1\x16\xdf\x49\x59\xa5\x5f\x59\x5c\x85\x4a\x6b\x43\x11\xd2\xd2\x88\xb0\x47\x48\x93\x2b\x82\xa4\x22\x5c\xbd\xf3\x62\xf7\xe2\x8b\x3b\xaa\x10\x1a\x43\xc8\x54\xde\x53\x50\xd0\x53\x6e\x42\x88\x0c\x4d\x7c\xd6\x73\xbc\xdf\xe9\x5c\x75\xa2\x97\x9b\x3b\xf1\x59\xc1\x12\x4f\x72\xb2\x67\x49\x01\x37\x17\x10\xb4\x03\x90\x03\x64\x08\x54\x10\xe7\x89\x16\xc5\x17\x4d\x88\xcd\xaa\x85\x51\xd6\x23\x44\x89\x23\x39\xba\x90\x1d\x37\xc7\x27\xa0\xec\x37\x04\xcf\x33\x42\xe9\xf7\x90\x73\xdd\x5a\xae\xf3\xe6\x20\x19\x92\xe2\x0e\x01\xc8\x4b\x54\x06\x25\x79\x12\x82\xa4\x5a\x6d\x9c\x28\x84\xb6\x60\x36\xf3\xc2\xd5\x53\xc2\x87\x33\x70\x9c\x81\xb3\x47\x44\xd8\xb9\x9d\xa7\x9e\xfa\xe3\x85\x97\xbf\x79\xe1\x0f\x4f\x9e\xbe\x7a\x16\x2d\xe4\xf2\x6f\x0e\x72\xc5\x13\xdf\x22\x43\x13\xdf\xe1\xa4\xfb\xc6\xbd\x00\x64\x15\xdd\x7f\x12\x3d\xf1\x73\x78\x8e\xf3\x15\xc9\x43\x5d\x3e\xda\xe1\xe1\x6a\xda\xcb\xcc\xcb\x20\xfe\xcf\x8e\x7b\x50\xc2\xcf\x85\x9d\xe8\xd4\x87\xc2\x4f\x85\x0f\x3e\x44\xc7\x85\x6d\x3f\xc7\x1f\xa0\x2b\x93\xdf\x98\x1c\x43\x2f\x09\x95\xb8\x1e\x4b\xfe\xc0\x46\x9a\x53\x5e\xec\x87\x78\x4f\x0c\x4f\xc7\x2f\xa0\x23\xc2\xc3\xd5\xb4\x23\x10\xbd\x8a\x88\xec\x78\x15\xaa\xfe\x89\xe0\x79\x49\xa8\xfe\x09\xae\xc0\xb5\x93\x2a\x61\x1d\x7a\x10\xdf\x60\xb9\x0c\x00\x48\x19\x95\x97\x16\x8f\x71\x0e\x92\x72\x5d\xd4\x01\x27\xea\x10\xb8\xcf\x77\x65\xa2\x48\x2a\xec\xa7\x8a\xa6\x12\xdd\xc1\xae\x4c\x5c\xc0\x97\x26\x76\xe0\xc3\x93\xfb\xb8\xd5\xe8\xd4\xa9\xbd\xdc\xce\x33\xbb\xc4\xe5\xd2\x42\x3e\xe2\xce\x2a\x39\x50\x83\x09\x54\x63\xf1\xe1\xd3\xf4\x7b\x76\x35\xd0\x32\xdd\x88\xd1\x72\x67\x53\xeb\xd7\x97\x95\xad\x6f\x4c\xbd\x0f\x55\x37\xd4\x55\xa1\x1f\xf3\x95\xd5\x71\x69\xf9\x49\xca\x23\x67\x62\x53\x9d\x71\x9c\x62\x34\xb3\xc1\xa5\xd3\xb9\x1a\x32\xb3\xca\xcb\xb3\xd4\x7b\x49\x54\xa2\x5a\x3b\x8f\x6f\x69\xa8\x48\xb0\xc6\x85\x71\xc5\xa2\xfe\x1f\x02\xc0\xb5\x90\x63\xc0\x03\x7f\x45\x01\x28\x4b\xdc\xe0\x15\x0e\x93\x9d\x6b\xb9\x26\x6c\xc7\xa9\xb1\xdc\xb3\xdb\x46\xae\x4a\xb9\x20\x72\xc8\x30\x18\x81\xbf\xa2\xa5\x78\x7a\x07\x2a\xe6\x44\x41\x68\xf6\xab\x5a\x4b\x65\x8d\x9e\xe4\x4c\x5c\x40\x4f\xea\xaa\xf2\x2d\x08\x25\xe7\x37\xa4\x3a\xbb\xcb\x2c\xdc\x35\xae\x6e\xd7\xf9\xb6\x86\xa3\x03\xe5\xd9\x75\x5d\xa9\xc2\x55\xbc\xef\x00\x1a\x4e\x28\xad\x5b\x98\x99\x56\x99\x15\x8b\xe2\xdc\x2d\xae\x45\x87\x97\x66\xd9\x5a\x6f\x59\x58\x34\xb8\xb6\xc7\x22\xfc\x51\xec\xef\xd7\xbd\x9f\x92\x28\x32\x0c\x1e\xe0\xaf\x58\x35\xa2\x7d\x62\xf7\xf3\x02\xf8\x7f\x76\xea\x3e\x8a\x4f\x74\x30\x69\x87\xde\xdf\x6d\xeb\xaa\x4a\x37\x15\xcd\xb7\x59\x9b\x8a\x53\xc8\x35\x52\x3b\x78\xac\xae\xe1\x81\x2d\x95\x7a\x77\x6d\x6a\x66\x4b\x91\xa1\x7e\xd7\xe9\xa6\xa6\x13\xdb\xeb\xc8\x38\x49\x2d\x5b\x98\x96\xde\x56\x61\xcd\x6c\xec\xc9\xda\x8d\xcf\x51\x4d\x3e\xa3\x22\x4d\x13\x61\xf5\xa4\x2d\xd8\x39\x3f\xc5\xb2\xe0\x96\xf6\x9c\xe6\xe2\x8c\xd0\x90\xf4\xb2\xae\x82\x8e\xdb\x5a\xad\x96\x05\x7b\xdb\x32\xcb\xd3\x22\xa3\x32\xaa\x73\xdc\xf5\x69\x11\x88\xed\x35\x77\x03\x90\x62\x32\x44\xcf\xef\x55\x63\xf3\x82\xe7\x50\xff\x80\x5d\x43\x6f\xa0\xfb\x0e\xe7\xef\x1d\x1d\x1d\x9d\x7c\x86\xc3\xe5\xdf\x9a\x7c\x13\xdd\x69\x46\xc3\xa7\x84\x2f\x11\x3f\xc8\x45\x4e\x86\x61\x6d\x29\xcb\x9d\xe5\xfd\x94\x68\xc8\x10\xa4\x00\x7f\x45\x8d\x50\x96\x2d\x42\xd4\x98\x38\x29\x36\x44\x6e\x70\x54\x94\xcb\x77\xc0\x6a\xe6\x95\x9f\x57\xe0\xc7\x27\x3f\x37\xdb\xd7\xe5\xb5\xdf\xbf\xb6\xd0\xb3\xf9\x4c\x67\xd3\xbd\x9b\x1a\x82\x9e\x8f\xd8\xdf\xed\xec\x28\x4c\xb2\x56\x2d\xc9\x2d\x5e\x9e\x83\xcb\x71\xdd\x43\xc2\xaf\xb4\x31\xee\x55\xc7\x3a\xbb\x8f\xad\x70\xa4\x2e\xdc\xbd\xa0\xbb\x03\x99\x4a\x3b\x1d\xce\xf6\x42\x3d\x32\x26\xb3\xb6\xfc\xda\xfb\x29\x49\x25\x0f\x40\x22\xe4\x82\x6a\x2c\x35\x29\x82\xce\x4f\x8d\x21\x84\x53\x4a\xc7\xf8\x3e\x3e\x1c\xc5\x9c\x8b\xf3\xdb\x18\x45\x86\xb8\x81\xd0\x25\x23\x3b\x6a\xe7\x38\x4e\x34\xb5\xdd\xb3\xcc\x51\x32\x70\xaa\x63\xd9\xc8\x40\x11\x42\xad\x0f\xdd\x38\xfd\x8e\xa5\xce\x63\x0f\x45\xba\x82\x45\xc5\xb9\xed\x45\x7a\x7d\x61\x1b\x79\xe0\x3c\xca\x58\x74\xd7\xa2\xbc\x22\x54\xb0\xe6\xde\x85\x5d\x0f\xf4\xe7\x57\xef\x79\xa4\xa7\xf5\xc4\xa7\x8f\x77\xa3\xc9\x9f\x46\x9a\x9d\xc9\x06\xc7\xfa\x0e\xa7\xa9\xb4\xd3\x6e\xef\x2c\x35\x03\x82\x97\x25\xfd\x88\xce\x61\x44\xcf\x0c\x0c\xe2\x82\x23\xf9\x93\x7f\x78\x0d\x6b\x27\xab\xb8\x7d\xc4\x78\xf3\x43\x2a\x8d\x45\xdb\x52\xec\x53\x1d\xb5\xc3\x0a\x60\x3e\x04\xbd\x58\xe7\x71\xa6\x25\x87\x48\x3e\x7b\xbf\x79\x44\x8b\x01\x4c\x85\xeb\x71\xbe\xb3\x39\x49\xad\x9c\xfe\x4c\x40\x67\xaf\xb4\xa4\x37\x17\x26\xd7\xef\x3a\xd5\xd0\x70\x6a\x67\x7d\x72\xfe\xfc\x74\x4b\x45\x4e\x42\xf9\x86\xa1\xda\xda\xa3\x03\x15\xe7\x53\xcb\xdb\xd3\xd2\xda\xca\x52\xac\xe5\x6d\x69\x69\x6d\xe5\xd6\x04\x63\x41\x83\xc5\x5a\x9b\xa7\x4f\xce\xab\x4f\x49\xa9\xcf\x37\x70\x8b\xb2\x9a\x4b\xb3\xd5\xe1\xb9\x55\x5d\xce\xf6\x5b\x5a\x2c\x96\x05\xfb\xda\x9d\x5d\x55\xb9\xe1\xe1\xd9\xa5\xf3\xb3\x5a\x76\x35\xa7\xa4\x34\xef\x9a\x3c\x9b\x55\x97\x1d\x13\x93\x5d\x97\x95\x5d\x93\xa9\xd5\x66\xd6\xe0\xe2\xd4\xf2\xf4\xe8\xe8\xf4\x32\x9b\xad\x8c\xfe\x97\x8d\xdb\x35\xef\x97\x9c\x97\x0c\xcb\xe3\x96\xa0\xc6\x59\x36\x53\x31\xe7\x92\x8f\xe0\xd8\x89\x84\x68\xae\x19\x1c\xf4\x46\x9d\x63\x2a\x22\x11\xdd\xd5\x7d\x7e\x5b\x8d\xca\x7e\xb4\xa9\xed\xc8\x72\x67\xc9\xa6\x53\x5d\xab\x87\xd7\xba\x10\x5a\x78\xf1\xfa\xe9\xf0\x5f\x59\xea\x4a\x72\x42\x51\x42\x7e\x57\xa1\xa3\xbd\x50\x9f\x54\xd0\x7a\x3f\x4a\x6d\xdb\xbf\xc8\x99\x5f\xb0\xe6\xd8\xc2\x45\x27\xd6\x17\x35\xdc\xfe\x54\x5f\xe5\xc9\x3f\x3d\xd6\x85\x4e\xa3\x5b\x35\x16\x67\x72\x51\x6e\xff\x42\xbb\xb5\xb2\x3b\x27\x67\x51\x45\x0a\x55\x13\x4a\xbc\x9f\x73\x43\x5c\x12\x68\xc0\x00\xaa\xb1\xc4\x68\xe6\x43\x9b\x71\x84\x6d\x09\x70\xc2\x72\x43\xa9\x0d\xeb\xcb\x2b\x36\x34\xda\x52\x1b\x37\x94\x97\x6f\x68\x4c\x1d\xa9\x2a\x2f\xaf\xaa\xae\x28\xab\x44\x95\x6d\xfb\x5a\xad\xd6\xd6\x7d\x6d\xf7\xb4\xde\xda\x9a\x9a\xda\x7a\x6b\x6b\x68\x5f\x4f\x4f\xdf\x63\xcb\x7b\x7a\x96\x03\x42\xdd\x00\xf8\x1d\x4e\x13\x20\xeb\x94\x0e\x93\x1d\xbf\x33\xfc\x3e\x5a\x16\x8e\xbb\xf2\x6e\xdb\x26\xf2\x55\x46\x7e\xc5\x5d\xe4\xef\x81\x08\xd0\x82\x6a\x2c\x2a\x72\x36\x7f\x8b\xd3\x65\xb1\x2b\x0d\xdc\xc5\xb4\xf9\x03\x15\x95\x9b\xe6\xa7\x9d\x0e\x37\xe5\xa5\x34\x56\xa3\x9e\x33\x0f\xaf\x52\x8c\x66\x36\x8a\x72\xb7\x31\x33\xda\x96\x18\x5e\x91\xf5\xc1\x77\x98\xaf\xc5\xed\xfd\x9c\x3b\xce\x25\x41\x26\xf0\x57\x74\xa1\x54\x96\xe5\xcc\xf4\xc1\xf1\xca\x28\x4d\xa0\xec\x17\x3b\xc0\x80\xb9\xd6\xaa\x86\xb2\xf2\xbc\x3a\x34\x9c\xde\xd8\x5f\xe8\x59\xdf\x64\xab\x2e\x3d\x99\xb9\x70\x93\x27\x6f\xdd\x42\xfb\x08\x9a\x5f\x5a\xd1\x80\x3a\x6a\x5a\xd1\xf7\xf3\xed\xe9\xf9\x59\x69\xf6\x96\xbc\xc4\x84\xbc\x56\x97\x7b\x51\x4c\xea\xbd\xee\xf6\xfc\xc4\xb8\xbc\xce\xa2\x8c\x82\x42\x7b\x49\xae\xd8\x46\x03\x00\xf7\x38\xa7\xf9\xb7\xf1\x45\x84\xc8\x16\xf6\xac\xf1\x45\x76\xb5\x92\x2b\x5a\xb7\x6e\x58\xb8\x9b\x47\xbb\x1e\x14\x0e\xfe\x4a\x8d\x6c\xfb\x9f\x78\x62\x15\xe6\x85\x28\xa4\x8f\xa7\x6d\xf6\x78\x3f\xe7\x8e\x70\x9a\x29\xf9\x85\x44\xf9\xa5\x9c\x29\xbf\x7c\xf7\x07\x69\xda\xf5\xb6\x1c\xf4\x4b\xe1\x52\x54\x64\x5d\x7a\xc9\xca\x2a\x93\xb1\x76\xa0\xce\xdd\xbf\x20\x87\x3b\xc7\xd7\x15\x18\xed\xc9\x61\xcd\x35\xb1\x29\x89\xd1\x73\xd1\x01\x74\xff\xc1\xcb\x2a\x8d\xa1\xbc\xb7\xd0\xb9\xac\xce\xa6\x2b\x68\x75\xda\xb3\x34\x96\xdc\xc4\x92\x06\xd5\xdc\x50\x95\xd8\xce\x02\xef\xe7\xdc\x31\x4e\x07\xf1\xd4\x4f\x6b\x48\x08\x93\x64\x57\xd2\x34\x16\xd8\x74\xe3\x92\x79\xa5\xc6\x27\x4b\xcd\xdc\xbc\x60\xe1\xd3\x98\xa4\xa5\x85\x25\x3d\x25\x49\xd6\xfa\xf5\xe5\xd5\x9b\xe7\xdb\xf2\x36\x3d\xba\xf1\xa8\xbd\x49\x8d\x5a\x4a\x92\xec\xc6\xc8\x1a\x4e\x77\xe0\x17\xfa\x34\x6b\x75\xaf\x3b\x6f\x79\x4d\x6a\xda\x82\xad\x35\xae\xd5\x0f\x6f\x29\x14\x36\xa6\x27\xe9\x5b\xdb\x51\x94\x29\x57\x57\xc2\x6c\x58\x94\x05\xc0\x9d\xf3\xcd\x3f\x3f\x39\xc5\x9d\x13\x1e\x7a\x14\x2d\x15\x0a\xf0\x3a\xfc\xd2\x64\x25\x7e\x60\x3f\x95\x53\xa8\xd8\xfb\x39\x77\x2f\x97\x04\x89\x90\x09\x05\x30\xfc\xb5\x08\x0e\x63\x05\x92\xb2\x18\xc4\xc9\x89\x94\x7c\x17\xb4\x25\xdb\xa5\x08\x1a\xe2\xea\x47\xe7\xfe\x3b\x94\x4a\x8a\x12\xf2\x9f\xa8\xfc\x5b\x02\x5d\x5d\x5d\x9e\x39\x46\xb3\x31\x25\x23\x95\xce\x0b\xde\xaf\xd6\x32\x76\xe4\xd2\x44\x26\x01\x82\x93\xd7\xb0\xfb\x5d\x1c\x5b\xce\x74\x35\x73\x7b\x90\xc7\x55\xd2\x90\x31\x7f\x7d\x71\xf1\x86\xe6\x8c\x7a\x8f\xcb\x63\xad\x5b\x59\x58\xb0\xaa\x2e\xf5\xee\x28\x93\x5d\x57\xd4\xd4\x54\xac\xcb\x31\x6b\x34\xa5\x4e\x67\x69\x99\xd3\xe9\xc1\xe5\x05\x9d\xb1\xb1\x7d\xe5\x79\x6d\x79\xf1\xf1\x79\x6d\x79\xe5\x7d\xb1\xb1\x9d\x05\xce\x16\x77\x42\x82\xbb\x45\x58\x17\x6b\x8d\x0f\xcd\x73\x38\xf3\x42\xe3\xad\x68\x73\xa6\xd3\x91\x95\xe9\x72\xb1\x58\x5c\x8f\xf7\x0b\xee\x08\x97\x04\x71\x90\x06\xaa\xb1\xe4\xf8\x98\x50\x51\x16\xe6\x38\xa7\xc9\x42\x9a\x73\x44\x94\x85\x4e\x97\x34\x19\xa9\x28\x7c\xf7\xd0\x9d\xc1\x89\xed\x8e\x92\xbe\xd2\x64\x6b\xc3\xfa\x8a\xaa\x0d\x0d\x29\xef\x7d\x14\x72\x21\xab\x5a\xdd\x54\x98\x94\x63\x88\x08\x4f\xce\xdd\xd9\xb7\x3a\xc1\x68\xa9\xec\x2b\xc8\x5b\xd5\x98\x9e\xd6\xba\xb3\xde\xfe\xa3\x5f\xa1\x5b\x11\xa4\x26\x14\x2e\x68\x89\xb6\xba\x12\x75\x0e\x73\x14\x9b\x07\x0e\x7c\x98\x7b\x9e\x9e\x4f\x4b\xf1\x7f\x74\x12\x3c\x3f\x79\x00\xdf\x22\xdd\xa7\xe3\xd0\x8f\x88\x87\x7b\x9c\xdf\x02\x1c\x68\xc1\x00\x41\x2f\x26\xc5\x86\xab\x30\x88\x7b\x94\x5d\x69\x50\xfa\x39\xec\x45\xee\x5d\x4c\x45\xa4\x1d\x8b\x7f\xf3\x9d\x0f\xf7\xde\x1a\x9f\x59\x6c\x48\x2e\x4e\x8f\x8b\x4b\x2f\x4e\x36\x14\x67\xc6\xb7\xa1\x1c\xa3\x21\x0b\x65\x1b\x8c\x39\xfc\x96\xab\xef\x1b\x8b\xd3\x62\x62\xd2\x8a\x8d\xc6\x42\x5b\x74\xb4\xad\xd0\x68\xc8\xc9\x31\x98\x73\x72\x00\xa3\xcf\xc9\x7e\xee\x45\xc5\xb7\x41\xc1\xf4\x96\x39\x84\xc6\x82\x44\xd8\x35\x9c\xc1\xe2\x74\xba\xb4\xbc\x52\x63\xc0\xcf\xf6\x3e\x7e\xb5\xf9\xda\x1c\x7b\x7a\x8d\x9d\xdb\x43\x46\x90\x59\x23\xbc\x7b\x4f\xc1\x12\x1d\xb7\x70\xd5\x9d\x80\xd1\x56\xf2\x33\xee\x5b\xfc\x0f\x21\x02\x32\x41\x35\x96\xa9\x9f\x45\x9f\x2d\xc6\x8e\x08\xf9\x44\x80\x57\x4e\x1d\x08\x38\x1d\xdc\xb7\x7c\x82\xfd\x04\xaa\x68\x34\xbb\x8c\xea\x23\xd1\x69\x45\xc6\x14\x67\x66\xa6\xde\x90\x81\x5a\x63\x6c\x45\x26\xbd\xc3\x9e\x9b\x94\x9c\xa5\x78\x26\x73\xbe\x3b\x31\xd1\x3d\x3f\x33\xbb\x32\x22\xc9\x16\x8d\x82\x8c\xa5\xd9\x09\xda\x04\xad\xdd\xac\x31\x96\xe5\xe8\xe8\x5f\xb4\xcf\x31\x2f\x9c\xc1\xaf\xc0\xd9\xaf\x8c\x09\xe0\xa3\x68\x2e\x12\xfc\xca\xf8\xb8\x70\x06\x23\x3a\x4e\x6b\x84\x15\x9c\x1a\xca\x20\x06\xf8\x2b\x73\x68\x9c\xa6\x4f\x37\xa0\xb7\x23\xa4\x7b\x7d\x16\x5c\x9d\xdb\x98\x1d\x6d\x2c\x5a\x98\x59\xb3\x34\x31\x29\xa2\xc8\x5c\x6c\x8f\x32\x65\x44\x97\xc5\x95\x56\xd5\x1a\xec\x8d\x8e\xb8\x84\xd0\xdd\xaa\x88\xac\xd4\xb8\x9c\xf4\xd4\x08\x91\x6e\xaf\x50\xcf\x85\xc3\x29\x50\x8b\xd6\xbc\x0a\x21\xac\x44\x80\x70\x1d\x87\x68\xf6\x52\x84\x60\x31\x00\xe8\x41\x2a\xfc\x6b\x31\x10\x3e\xca\x66\xd2\x04\x16\xdb\xe4\xc2\xa5\x83\xf4\x38\x5d\xac\xb2\xac\xfa\xd4\xa7\x8f\x8d\xa9\x82\x86\x39\x05\x87\x7b\x17\x7d\x0a\x1c\x6c\x14\xea\x68\x0d\x8a\x22\x68\x81\x7e\x08\x7a\x71\x59\x47\xb5\x27\x4f\x27\xce\x1f\x43\x54\x94\x14\x1d\x62\xe1\x79\x76\xf5\xc0\x5f\x0e\x8a\x3a\x0f\x5b\xba\x53\xb9\x78\xb4\x7a\x24\x23\xcb\x65\x1a\x67\x84\x2c\x91\xde\x93\x09\xba\x92\xcd\xc3\x4b\x5b\xaa\x22\x13\x23\x0c\x19\x71\x4f\xf5\x9e\x59\x9b\x57\x7f\xe4\xbb\x7b\x36\x3e\xb5\xbd\x24\x21\xbb\xd4\x18\xa7\x8b\x4c\x4a\xd5\x2c\x58\xea\xd9\x3c\xbc\xb4\xb9\x06\x6d\x9c\x3c\x62\x35\x65\x57\x18\xab\xfa\x2b\x9a\xf7\x77\xe7\x44\x3b\xdb\x8b\x85\xa7\x8c\xa5\x5d\x4e\x47\x97\xc7\xe8\xfb\x2f\xf7\x58\x6a\xaf\x33\xaa\x6e\xff\x32\xb7\x46\x6d\x37\x6b\x13\x23\x55\x86\x9a\x8d\x0d\x85\xbb\xfb\x8a\xd3\xea\x57\xe6\x65\x35\x97\xd9\xc3\xa3\x0a\x52\xcc\xc5\x76\x4b\x58\xf6\xe9\xee\xa8\xa6\x83\xbd\x8e\xc8\x9b\x7f\xe3\xa3\x16\x15\x1b\x0a\x6d\x31\xc9\xce\x8a\x64\x83\xc3\x10\x8e\x1f\x49\xa9\xcb\x33\x18\xf2\xea\x52\xa2\x6c\xf5\x6e\xbd\xde\x5d\x6f\x63\xb6\xe1\xf3\xc2\xaf\xb8\x0f\xb9\x52\xd0\x00\x7f\x25\x48\x1c\xe3\x88\x99\x39\xe7\x9e\x7f\x6f\x7a\xb2\xb9\xf7\xb8\xd2\x69\x79\xe6\x44\x7d\xeb\xfb\xe2\xc2\x55\xbc\x06\x0a\x50\x83\x6a\x2c\x44\x45\xcf\x78\x22\xa8\x63\x00\xb1\x43\x62\x3a\x86\xdf\xc7\xd6\x71\xe1\x18\xea\x74\xb9\x5d\x6e\xb7\xcb\xed\xa2\x05\xd2\xcf\xa0\xaf\x67\x94\x94\x64\xa4\x17\x16\x32\x19\x71\xd1\x7b\x83\xbb\xc9\x47\x53\xbe\x42\xa8\x8c\x50\xcb\x49\x4f\x7c\x61\x96\xb8\x4b\x93\xd9\xe8\xd6\xb9\x72\xd2\xc2\x23\xab\xee\xac\x5a\x72\x6b\x83\x9e\x8f\xbe\xb9\xac\x66\x89\x53\x13\x14\xaa\x56\xde\x97\xa4\xcb\x5c\x7e\x6e\x3d\x79\x00\xbc\x5e\xf8\x21\x00\xc7\x2b\x46\x31\x0f\x11\xf4\xdc\xbf\x15\x80\xa4\xd1\xe7\x98\x8f\x45\xde\xdf\x02\x20\xf5\x64\x48\xae\x7d\x8c\x80\x70\x34\x4b\x9f\x2f\x85\x23\xdd\x12\x00\xe2\x62\xd4\xa1\xec\x42\x3c\xaf\x8a\xb2\xcd\x9e\xb4\x11\x1d\xbc\x8a\xde\x6c\x1d\xde\x5d\x57\xb7\x6b\xa4\x55\xf8\x33\x0a\xcf\x5e\x5c\x99\x9a\x5a\xb9\x38\x5b\xf8\x33\xfa\x9a\x50\x47\x86\x50\x46\xf7\xdd\x8b\x7b\x0e\x75\xa4\xa2\xd3\x48\x9b\xd3\xe8\x72\x36\x3b\xe2\x11\x1b\x8f\x75\x42\x03\xd9\x43\x6a\xc1\x06\xfc\x15\x0d\x1d\x0f\x51\x43\x8d\x40\x76\x14\xc1\xa2\x38\x94\x52\x14\x07\x87\x0c\x88\x93\x82\x9e\x9c\xce\x9f\x54\xaf\xa9\xcf\x09\xdd\x8e\x82\x5e\x16\x8e\x7f\x14\x92\xa0\x4f\x89\x0e\x0b\x51\xe3\x60\xe3\xbc\x82\xee\x6a\x77\xf4\x59\xe1\xa7\xaf\xa3\xfb\x5f\x0c\x49\xb6\xb9\x92\xe7\x59\x43\x50\x78\x11\xa9\x75\x36\x2f\x4d\x11\x26\x30\x9a\xcc\x17\xb4\x49\xae\x94\x68\xcc\x8d\x28\x55\x86\xca\x95\x65\xa8\x6e\xf2\x65\x6e\x0e\xba\x27\xb9\x2c\x37\x91\xa0\xe3\x8a\x20\xaa\x4b\x5f\x02\x20\xbd\x8a\x67\x21\x19\xd2\x41\x35\x66\x33\x70\x54\x2e\x8a\xcd\x17\xa7\x0b\x3f\xcb\x9d\x5e\x93\x5d\x32\xd8\x0d\x68\xf1\x38\x3a\xb3\x6d\x6c\xaf\x07\x6d\xdb\x54\xdc\xee\x88\x4e\x30\x7f\x43\x1b\x33\x17\x9b\x2a\x7b\x0b\x05\xe1\xed\x27\x4e\x1a\x6a\xb7\x34\x7d\x84\x77\x4d\x1e\x52\x3c\xeb\x58\x73\x76\xd5\xe6\x47\xb2\x23\xcb\x3b\xd7\x15\xdd\x5d\xbc\xd1\x1c\xad\x29\xad\x2c\x8e\xb8\xa3\xb0\xaf\xd2\x7c\x0a\xed\xbf\xad\xb0\xaf\xdc\x24\xc5\x38\x01\xd0\x7c\x54\xd4\x27\x1c\x44\x3d\x99\x52\x72\x14\xea\x68\x8f\xaa\x57\xf8\xa5\xb2\x63\x17\xa9\xe4\x54\x28\x08\x19\xf0\xbc\x27\xc7\xc7\xcf\xa3\x97\x7e\x22\xa8\x71\xf4\x6f\x69\xc2\xbc\x51\xbf\x7c\x79\x18\x76\x79\x6f\x90\x1e\xc5\xb7\x20\x86\xfa\x24\x92\xe3\xd5\xd2\x5c\xf6\xcb\xbc\xc3\x26\x61\xc0\xd4\xde\x85\x93\x93\x5c\x75\x56\x9d\xa7\x28\x37\x3c\x46\x5b\xd6\xd4\x6e\xab\xb9\x65\xb1\x43\x38\x8d\x5a\x5c\x4e\xa7\xdb\xed\x74\xba\x48\xfe\xa4\xa9\x64\x61\x56\xa4\x32\x38\x58\x71\x47\x88\x26\x54\x65\xed\x1a\x5a\x81\xf3\xd1\x37\xd2\x8b\x8b\xd3\xd3\x8a\x8a\xd8\xdd\xbb\x1b\xa4\x9f\x07\x88\x05\xfe\x4a\x38\x16\xe7\x80\xde\xc5\x4d\xff\x70\x84\xfe\x22\xea\xbf\xa6\x93\x3e\xe7\x50\x4f\x7d\x2e\x56\x38\xaf\xf0\xa2\x9b\x3d\x33\x3e\x43\x80\xf5\xdd\x0f\x00\xb8\xbf\x4a\xb1\x5e\x73\x14\x28\xcb\xe6\xd2\x53\x9f\x87\x5a\xaf\xd1\x7f\x80\x5c\xc2\xd7\xd1\x9f\x42\x91\x65\xe2\x8f\x17\x89\x71\xf3\xe3\x63\x5f\x7e\x7a\x11\x30\x0c\x79\x4f\x93\xe5\xe4\x3a\x94\x42\x0b\xa8\xc6\x6a\xca\x9c\x36\x71\xfc\xa7\x12\x99\xd1\x9c\x0a\xcc\x78\xd2\x6a\x25\xc7\x9d\xc4\xaa\xc5\x62\xf6\xe5\x73\x13\x27\x08\x2d\x37\xec\xf0\xa9\x16\xdc\xab\xaa\x60\xce\xb0\xba\xac\x74\x45\x85\xc1\xbd\xfc\x50\x73\x9f\xc2\x5a\xb9\x34\x6f\xc9\xe1\xc5\xe9\x18\xe1\xbc\x95\x43\xed\xf1\xf9\xae\xac\xf0\xec\x98\x92\xca\xaa\xa4\x23\x6f\x1c\x28\xe5\x10\x57\x7e\xd7\x9b\x07\xda\x4f\x6e\x2a\x0d\x53\x0b\xe7\xf4\xae\xb4\x04\x65\x8d\xbd\xb3\xd4\xa8\x36\x38\x11\x1f\x9a\x11\x63\x76\xa5\x37\xad\x2d\x6a\xd8\xb1\x30\xad\x60\x71\x89\xbe\xfa\x8e\x6f\xec\x28\xdc\x7d\x6d\x9f\x67\x4e\x58\xd4\xbc\x83\x11\xf1\x11\x73\x96\x3d\xfb\xf7\x63\xe9\x47\xff\x3a\xba\xcc\xbe\xe6\xe2\x46\x61\x28\x63\x95\x39\xe4\xf6\x70\x9d\x29\xfc\xb3\x70\x6b\x45\xb6\xb1\x24\x23\x96\xd9\x8e\x8b\xbc\xd7\xc9\x59\x1a\x43\xed\x01\xd5\x58\x41\x56\x8c\x82\xe9\xcd\x6a\x9e\xb7\xcc\x34\x8d\xa7\xc2\x8c\xc5\x61\x52\xfa\xfe\x88\x2a\xc6\x2e\x35\x39\xfb\x7a\xe7\xcf\xef\x5c\xfa\xf0\xee\x2a\xad\x7b\x49\xb5\xa3\x21\x5b\x5b\xb9\xed\x6c\x5b\xef\xb9\x0d\x05\xe3\xfa\xc2\x0e\x67\x56\x47\x99\x25\xa9\xa4\xbb\x90\x2b\x5d\x53\x67\x4d\x9b\x3f\x50\xa6\x2b\x29\xcc\x8d\xe0\xb2\x4f\x4d\x7e\xde\xd4\x8e\xdc\xeb\x86\x57\xda\xfb\x97\xd4\x6b\x63\xea\xdb\xbb\x53\x57\x9e\xe9\xcf\x2d\xd9\xf0\xc0\xc2\xbc\xc5\x65\x86\x24\x4f\x4f\x89\x7b\x71\x85\xe9\x94\xbe\x7c\x65\x45\xc5\x32\x8f\x0e\x05\x47\xc6\x86\xd2\x7c\x3d\x47\x69\x3d\xdc\x6f\x43\x36\xf0\x57\x22\x09\xb3\xf3\x72\xc3\xa9\xa9\x8b\xa6\xed\xe0\xbe\x9c\x25\x48\xb2\x7b\x51\xf5\xd5\x9f\xff\xb6\xfe\xd6\x81\xbe\x34\xe1\x67\xbd\x27\x57\x3b\xcb\x77\x3e\xba\xbc\x68\x77\xb1\xd3\xd0\x53\x54\xb2\xac\xd2\x78\xff\xb1\x01\x34\x57\x93\x55\x58\x6d\x5b\xb0\x2a\x5f\xc3\x7d\xd3\x8b\x88\xa1\xb8\x2d\x47\xd8\x34\xa7\x74\xe0\x6c\xdf\xaa\x8b\x1b\xf2\xb4\xb1\xa7\x23\x13\xad\x35\x2b\x0b\xcf\xde\x7b\x0a\x6d\x8b\x30\xc6\xab\x0b\x56\x1c\xac\x63\xf3\xee\xc7\xde\x1b\xf4\x8c\x30\x13\x96\x79\xe6\x25\xeb\x43\xe6\x11\x84\x33\x11\x47\xb3\xb5\xc4\x34\x77\x7a\xe2\x01\x61\xc0\xf4\x76\x29\x60\x44\xa8\xd0\x65\xd5\x45\x8b\xb8\x86\x38\x4f\xd2\x0c\x30\xc7\x15\x89\xa6\x05\xbd\x34\x59\xa9\x68\xe8\xf2\xcc\xc9\x30\x68\x8c\xe6\x64\x51\x21\x37\xf9\x37\x2f\xc2\x77\x7b\xd6\xa0\x66\x95\x22\xfc\x3b\x02\x07\x27\xb5\x3a\x73\x9a\x9c\x09\x77\x1d\x6a\xfd\x53\x42\x6b\x49\xc9\xc2\x6c\xcd\xd5\x6f\xbf\x55\xba\x69\x79\x87\x45\xf8\xf3\x82\xfd\xdd\xd9\x05\x6b\xee\xeb\xc8\x1b\x70\x8d\x45\x26\xea\x0b\x16\x64\x2f\x6b\xbb\x1b\x59\xb4\x96\xb4\xfa\x95\xee\xc9\x50\xfc\xd7\x77\xdf\x4f\xc8\x2e\x37\x0b\x5f\x53\x66\xce\xdf\x50\xb5\xe8\x48\x6f\x8e\x36\xd6\xeb\x45\x05\xe4\x31\xee\x3e\xc5\xf3\x98\x87\x11\xba\xdf\x48\xff\x60\x5e\x94\x52\x5e\x2f\x7c\x80\xb3\xb9\xf7\xf1\x1b\x98\x87\x50\xf1\x67\xef\x4f\x00\xc8\xbd\x8a\x51\x50\xb3\x3a\xbc\xb4\x86\x3a\x28\x10\xc8\x69\xc3\x0a\x59\x86\x1d\x15\xeb\x0d\x00\x43\xb2\x3e\x31\x2a\x32\x22\x1c\xd4\x10\xa6\x57\xab\xe7\xa8\xb4\x36\x16\x22\xe5\x3b\x80\x8e\x30\xc8\x27\xd0\x06\xb5\x7d\xfc\x77\xbf\x43\x0b\x4e\xff\xe5\x91\x0e\x84\x3a\x1e\xf9\xcb\xe9\xea\x0f\x4f\x6c\x7f\x6a\xb3\x0b\x21\xf7\xa6\xa7\xb6\x9f\xf8\x10\x9f\x3d\x85\x6f\xc5\xcb\x9f\xfb\xe7\xc9\x75\x27\xff\xf9\xdc\x72\x84\xcf\x4e\x4e\xa2\x05\x47\xbe\x31\xb0\x61\xe0\xeb\x87\x9b\xb1\x10\xf3\xff\x08\x8f\xac\x16\x5a\x1d\xad\x7d\xbd\xec\x6b\x52\xe9\xeb\xfa\x51\x7d\x73\xa7\x27\xc9\xaf\x02\xb6\x52\x59\x2c\x97\xeb\xad\xa6\x69\x11\x8a\xb0\x38\xc1\x66\x16\xc9\xae\x9e\x2a\x92\x5d\x84\x1b\xba\x3c\x73\xa7\xea\x64\xab\xfe\x53\x9d\xec\x53\xc2\x9f\x03\xeb\x64\x3f\xff\xfc\x38\x0a\x27\x3f\x16\xbe\x3b\x4b\x9d\xec\x1f\x9f\x3a\x45\xe3\x70\x1b\x00\xc8\x41\xc5\x28\x84\x8a\x5a\x88\x12\xf9\x0e\x5b\x78\x7a\x01\x11\x14\x8a\x42\xff\x3b\x8d\x6a\x75\x98\x4a\x15\x2f\xd5\x3e\x15\xbb\x95\x5e\x15\xb6\x73\x4f\x5f\x7f\xe1\x97\xbf\x14\x8a\x89\x5b\x28\xbe\xce\xb9\x26\xde\xe0\x5c\xa7\x50\xc5\xc8\x88\xf0\xb2\xef\x7e\xfa\x0d\x62\x55\x78\xc0\x02\x35\x9e\xca\x08\x44\xb8\x48\xa4\x20\xb8\x2e\x18\x05\x41\xd0\x16\x25\xc2\x3c\xa2\xd1\x00\x2a\x7a\xe2\x3b\x07\x01\x94\xd4\x03\x21\xbe\x55\xc6\xa2\x32\xcc\x26\xb5\x5a\x43\x6b\x0c\xa9\xe9\xbd\x10\x71\xef\xd0\xd8\x35\x06\xcd\xf4\x7d\xca\x21\x76\x87\xde\xa1\x57\xe3\x15\xe8\xbc\xb0\xe2\x93\x4f\x92\xdc\xb5\x6c\xc7\x8a\xd5\x96\x35\x75\xd0\x1d\xeb\x67\x3f\x13\x3e\x46\xf1\x0a\x8f\xf0\xe5\xd1\x6b\xa7\x6e\x96\xb4\x64\x47\x2a\x83\x82\xc9\x01\xdf\xbe\x75\xf3\xd4\xb5\xa3\x88\x67\xf1\x9a\x0b\x00\xc8\x31\xa5\x01\x9b\xc1\x00\x80\x94\x50\xe6\x3d\x83\x16\xc1\x9c\xe7\x30\xba\x8a\x16\x49\x31\xe5\x0c\x27\x49\xc6\x19\x84\x3b\x50\x87\x84\xd3\x11\x80\x53\x23\xe3\x9c\x87\x43\xa8\x5b\xc2\xe9\x0e\xc0\x69\x91\x71\x1e\x82\x07\x50\x9f\x84\xd3\xf7\x15\xdf\xea\x87\x50\x46\x07\x4f\xa7\x73\x58\xc6\xb9\x08\x21\xe8\x61\x09\xe7\x61\x7f\x1c\x55\xb4\x0f\x07\x7d\xdf\x3b\x81\x1e\x15\x71\xb8\xab\xe8\x51\x09\x67\x9d\xd0\x48\x96\x28\xbe\x8d\xcd\x60\xa2\x17\xee\x76\x38\x59\x9f\x7c\x0d\x80\xe4\xd2\x3e\xb1\x48\x7d\x72\x94\xf6\x09\xf2\xeb\x13\x86\x93\x24\xe3\x0c\xc2\x1e\xda\x27\xc8\xaf\x4f\x18\x4e\x8d\x8c\x73\x1e\x6e\xa1\x6d\x41\x7e\x7d\x32\x9d\x4e\x3f\x28\x18\x8e\x5f\x7b\x9f\x01\x20\x3a\xca\x8f\x4d\xe2\xa7\x7b\x06\x3f\x0c\x27\x49\xc6\x19\x84\xea\x19\xfc\x30\x9c\x1a\x19\xe7\x3c\xd4\xce\xe0\x67\x3a\x9d\x7e\xef\x8f\x67\xf0\x73\x14\x80\x14\xd3\x71\xcc\x92\xc6\x71\x3d\x1d\x47\xe4\x37\x8e\x6b\xbd\x37\x48\x9f\xd2\x8d\xcd\x90\x2d\xf1\x3c\x8c\x06\xa4\xb1\x1e\x08\xc0\x71\xc8\x38\x83\x70\x37\x5a\x2f\xe1\xac\x0f\xc0\x59\x22\xe3\x9c\x87\xc3\x68\x93\x84\xb3\x29\x00\x67\xb5\x8c\xf3\x10\x9c\x42\xdb\x25\x9c\xed\x5f\xf1\xad\x7e\x88\x60\x74\xf0\x14\x9d\xc3\xde\x1b\xa4\x4c\xa9\xc5\x66\x70\x49\x3c\xbf\x88\x9a\xa4\x76\x35\x05\xe0\x44\xca\x38\x83\x70\x09\xd5\x4b\x38\xf5\x01\x38\x85\x32\xce\x79\x78\x04\xcd\x97\x70\xe6\x7f\x05\x9d\x7e\x48\x67\x38\x78\x0a\xa7\x08\x80\xec\x52\x26\x62\x33\x14\x48\xdf\xda\x8c\xda\x25\x3a\xed\x12\xce\x79\xef\x0d\xe2\x54\xfc\x1a\x9b\xa1\x1c\x44\x49\x5b\x76\x22\x1a\x54\xcf\x61\x34\x1a\xcd\xee\x91\x30\xf8\x2f\x25\xb8\x48\xe3\x76\xd0\x30\x0c\x8d\x2f\xdf\x19\xc5\xe1\x79\x19\xe7\x3c\x1c\x80\x18\x86\x13\x13\x88\x13\x26\xe3\x3c\x04\x47\x21\x91\xe1\x24\x06\xe0\xc8\xdf\xe2\xa1\x3f\x98\x52\xc1\x94\x8a\x4c\xa3\x56\x86\x5f\x0c\x5a\xc6\xe0\xcb\xfc\xe1\xef\xf9\xe0\xe8\xfb\xff\x5a\x21\xc2\xb9\xd1\x15\x0c\x7e\x54\x68\x24\x76\xd2\x84\xcd\x50\xc9\xd6\x6b\x3d\x5b\xaf\x87\xbc\x37\x48\xa5\xe2\x37\xd8\x0c\xd5\xac\x0f\x8e\xf9\x71\x2f\xc3\x7f\x25\xc3\x07\xf7\x46\x31\x78\x94\x1f\x9c\x57\xca\xf0\xf3\xfb\x62\x19\x3c\x76\xf6\xf7\xfb\xf9\x58\xc6\xb7\x04\xff\x3e\xbd\x33\xff\x16\x36\xc3\x3d\xec\xfb\xdf\xe0\x58\x46\x39\xce\x1f\xfe\x06\x83\x83\x38\x06\x97\x29\xdf\xec\xf7\xbf\x4a\xef\x89\xfd\xfe\x14\x10\xf6\x26\xf1\xf5\x69\xc0\xbb\xe2\xb7\x73\x29\x06\xa6\x18\xd2\x7a\xb5\xd2\x71\x69\xa6\xf0\x87\xf6\x24\x32\x0a\x89\x0c\xbe\xdb\x7b\x83\xb4\xd0\xf9\xb1\x80\xf1\x76\x4f\xe0\xfc\x60\xf0\x5f\xca\xf0\xc1\xed\x7e\xb3\xc3\x07\xa7\x73\x83\xc1\xcf\xef\x0c\xec\x5b\x06\x0f\x93\xe0\xe2\xbc\x38\x38\x63\x5e\x4c\xff\x46\x3f\x04\xce\x8b\x17\xbc\x37\x48\xa2\xe2\x6d\x6c\x86\x0e\xc6\xe3\xdd\x7e\xbd\x20\xc3\xdf\x94\xe1\x83\xdb\x10\x83\x23\x7f\xf8\xdf\x64\xf8\xf9\x1d\x0a\x06\x57\xcc\xfe\x7e\x3f\x28\x58\x1f\x4a\xf0\x0a\xa1\x9e\xdc\x41\xe1\xdd\x3e\x39\x04\x7e\x5f\xa0\x6d\x08\xc4\xe1\xa1\x3f\x22\x90\x06\xdd\x6f\xf8\x2f\xe5\x3d\x69\x23\x44\xa0\x3a\x49\x06\xd5\x05\xac\xd5\xab\xf2\xfc\xdf\x18\xaa\x62\x3d\xa5\xf2\xa3\xa1\xac\x93\x69\x8c\x40\x28\x3a\x2d\xd1\x38\xed\x4f\x83\x57\xc9\x34\x46\x82\xdb\x19\x0d\x2a\x10\x30\x2c\x10\xe6\x93\x63\x34\xd7\xaa\x1e\x8a\x3c\xf9\x7a\xc4\x43\x2c\x42\x64\x2e\xc2\x68\x1e\xe2\x30\xa9\x03\x1e\x08\xe2\xc9\x32\x7a\xab\x5a\x34\xea\x8b\xea\x7d\x89\xe2\x6a\xb9\x06\xb5\x3a\xd6\x64\x52\x87\x29\x55\x71\x34\x98\x98\xa7\x7e\xf5\xa8\xa9\xab\xb8\xa2\x99\xc6\xe9\x39\x03\xd2\x73\xd8\x72\x0e\xfd\x20\xab\x69\xa9\x31\x35\xc9\x11\x96\x18\xdf\x56\x6a\xad\xca\xd5\xc5\x66\x57\xa5\xad\x13\x62\xb7\x8d\xa3\x5e\x74\xe0\x55\xc5\xe8\x97\xcd\xa9\x03\x65\xc9\x56\x14\xa1\xda\x15\x16\x1f\x9d\x55\x9d\x69\xac\xa9\xf4\xc4\xa1\x5e\xe1\x10\x8e\xc5\x3b\x01\xc3\x79\x61\x3e\x71\x92\x26\x28\x87\x16\xe8\xf4\xb4\xd5\x22\xa5\x2a\x9d\xc3\xa0\x74\x23\x05\xe4\x21\x5e\x41\xea\x80\xc3\x08\x73\x34\xad\x9d\x4a\x89\x54\xcb\x01\x63\x9a\xf8\xa0\x9a\xd6\x27\x63\xc7\x07\xf5\xbe\x5c\x70\xb5\x7c\x43\x65\x45\x43\x5d\x45\x4b\x65\x8b\x29\xd3\x18\x69\x4a\xb1\x04\xa9\xe2\x6c\x26\xb3\xd9\x77\x6d\x8a\xda\xd5\xb2\x8b\xd1\x77\xde\x4f\x0d\xe9\x59\x5a\xeb\xb4\x48\xc6\x35\xf5\x55\x72\x03\xaa\x20\x2e\xbe\x72\xe1\x52\x47\xfb\xe1\x3e\x47\xf5\xfe\x17\x37\xbf\x69\x2c\xeb\x29\x70\x75\x14\xea\xaf\xa1\x82\x81\x0b\x2b\x17\x8f\x0c\x96\x45\x86\x9b\xa7\xf5\x49\xf7\xa7\xce\xa5\x8d\xee\xb0\xa7\x1e\x7a\x21\xce\xd9\x12\xa2\x71\x26\xc4\xe7\x98\xa3\x72\xda\xb6\x55\x74\xdd\xd9\x95\xd6\x96\xdd\xe4\xd2\xc5\x67\x94\x24\x17\x6c\xe9\x76\xa7\x77\xdf\xd5\x2d\xcc\x71\xee\x4a\x0f\x9b\xd6\x6b\x15\x87\xc6\xe2\x33\x0a\x92\x7e\xde\xbb\x3a\xa5\x22\x3b\x9e\xea\x2e\xde\x1b\x64\x09\xdd\xcf\x4c\xd2\x9c\xbd\x4c\xf7\x4e\xe4\xb7\x77\x8a\x76\xab\x9d\xae\xbb\x4a\x09\xe7\x01\x2a\xfb\x91\x9f\xec\x67\x74\x96\xc8\x74\xce\xc3\x53\x74\x5f\x44\x7e\xfb\x2b\xa5\x43\x65\x40\xa5\x84\x73\x82\xae\x60\xe4\xb7\x3f\x30\x3a\x19\x32\x9d\x0b\x90\x3b\x3b\x1d\xc5\xfb\x12\x1d\x1e\x2e\x24\xf8\x51\x91\x69\x2c\x95\x69\x0c\x83\x03\x6d\x96\x68\x6c\x0e\xe0\x45\x29\xd3\x18\xd6\xc5\x32\x1a\x92\x2c\x3e\x07\x40\x36\x29\xc5\x3d\xc6\xcc\x68\x78\x3f\x40\x8b\xa5\x35\xb4\x78\x6a\xef\x55\xfc\x2f\xaf\x01\x33\x54\x51\xdd\xb0\x9f\xe3\xbd\x5e\x86\xe3\xf5\xfa\xeb\x65\x74\x3d\x5b\xa4\xf5\x3c\x87\xae\x67\xe4\xb7\x9e\xd9\xbe\x30\x2e\xef\x0b\x1b\x83\xe6\xb0\xb5\x38\x87\xf1\xc2\x74\xbb\x3a\x99\xc6\x08\x28\xe8\x7a\x46\x7e\xeb\x99\xed\x3d\x73\x64\x1a\x23\x7c\x07\xa3\xd1\xe1\x4f\x23\x46\xa6\x71\xc1\xa7\x1f\xfa\xe9\x6c\x8c\x8f\x9f\xca\x34\x2e\xf0\x7e\xfb\x17\xcd\x37\x3c\x9f\xe4\xd2\xfc\x4d\xa5\x9e\xe2\x10\xc4\xe1\x50\x44\x38\x5c\x07\x2a\x00\xa4\xa2\xe6\x1b\x2d\x99\x42\x4d\x21\xdc\xa5\x10\x6d\x33\xd1\x9c\xa3\xab\xac\x96\x56\x64\xd0\x9a\x4c\x6a\xb5\xcf\x44\xd3\xcf\xba\x52\x5c\xbe\x30\xe9\x77\x26\x2f\xe2\xd7\x5b\xa7\xad\x81\xe6\x9a\xc9\xc3\xdc\xb6\xc9\x0a\xdc\x8b\x1f\x9c\x9c\x18\x9e\x36\xbd\x4b\x6e\x75\x28\x46\x47\x84\x34\xc0\x70\x48\xe8\x23\x95\xa4\x09\xec\x50\x02\x75\x9e\x6a\x3b\x52\x90\x79\x08\x70\x08\x42\xc0\xd5\x81\x12\x88\x42\x49\xfa\x54\x88\xe7\xa9\xc4\xaa\x66\xa9\xe9\x00\xe3\xca\x7a\x29\xad\x0b\x2a\x45\x0d\x8e\xdc\xfc\xbc\xdc\x12\x47\x89\x51\x63\xd5\x9a\xac\x73\x54\xb1\x36\x13\xcf\x2b\xed\xb3\x71\xed\x5f\x26\xcf\x97\x19\x1b\xb1\xb4\xd8\x19\x1c\x71\x25\xaf\xab\x47\xd3\x9a\xe2\xb2\x0f\x8c\xdf\x51\xdb\x7a\xf8\xb9\x25\xdb\x9e\xdd\x9a\x37\x71\x93\xb3\x77\xed\xad\x5f\x7e\xd6\x2e\x3c\xe3\x5e\xd1\xec\x0a\xc6\x55\x9c\xa1\x62\xf5\xd7\xed\xdd\x09\xd3\x1a\xe9\x58\x93\xc5\x35\x1f\xfe\xfa\x40\xea\x81\x77\x8e\x36\x2c\x38\xfa\xad\xcd\x0b\xeb\xf6\xf7\xb9\x9b\xcb\xf0\x83\xd6\xf9\x83\xf5\x21\xce\xb5\xad\xb9\xf2\x78\xd7\xca\xe3\x3d\x0c\x3c\x9d\xbf\xc8\x6f\xfe\xb2\x39\xa3\x92\xc7\x7b\x58\x19\xc7\xc6\x3b\x8e\xcd\x99\x15\xde\xeb\x64\x31\x5d\xd3\x56\x69\xbd\xde\x37\x63\x2d\x1e\x11\xda\x49\x02\x5d\xd3\xb5\x6c\xcf\xdc\x10\xb8\xaf\x33\x1a\x3d\x32\x8d\x11\x88\x41\x4f\x4b\x34\x9e\x0e\xa0\xa1\x92\x69\x8c\xfc\xc3\x6f\x2f\x92\x69\x64\xc8\x34\x2e\x40\xcc\xec\x7c\x50\x99\xc0\x68\x5c\xf8\xc7\x34\x3e\x04\x13\x59\x4c\x6d\x34\x4a\x03\xdd\x07\xcf\x09\xef\x30\x1a\xc2\x3b\x01\x7c\x3c\xe0\xa3\x81\xce\x2b\x3b\x19\x8d\x4e\x46\x63\x08\x80\x94\x50\xbb\x27\x55\xea\x8f\xcd\xb3\xda\x3d\x69\xca\x01\x6c\x86\x3a\x09\xc7\x88\xf6\x4b\x38\xfb\x03\x6c\xa3\x16\xd9\x36\x7a\x08\xda\x66\xd8\x3d\x4c\x5f\xbb\x29\xeb\x74\x0f\xc1\x55\x08\x62\x12\x2a\xc8\x27\x2b\x29\x1d\x2a\x5b\x18\x9d\x8d\xde\xf7\x66\xc8\x16\x46\xe7\x61\x59\xef\xdb\xe8\xfe\x4c\xca\x3c\xfc\x99\x7c\xd7\x92\xf1\x53\x27\xd3\x19\xf1\xfe\x78\x86\x7c\x61\x74\xfe\x2e\xd3\x19\xc9\x2d\x65\xdc\x94\x32\xd9\xf0\x8c\x30\x9f\xe8\xa8\x6c\x28\xf0\xb8\xc3\x10\xe1\xd4\xd4\x77\xa1\xf2\x95\x0f\x2b\xa4\x49\x73\xb9\x2e\x1e\x51\xe7\xa0\xe4\xb6\xa8\x55\x34\x48\x42\x81\x49\x05\x5f\xd4\xfd\xac\x72\xc1\xa1\x57\xeb\x9f\xe1\x36\x09\x97\xd0\x12\xe1\xc3\x19\x72\x41\x58\x83\xda\x84\x27\x15\xa3\x0f\xde\xbc\xef\xe2\x4c\xb1\x70\x91\x0c\x30\xff\xf1\xf7\x85\xf9\xa4\x4d\xf1\x1a\x24\x82\x0d\xaa\x3c\xe5\x7e\x52\x6c\xce\x1c\x29\x1f\x0b\x2d\xa0\x0e\x00\x25\xb4\xec\xce\x2c\x82\x2c\x35\xc5\xe0\x13\x65\x41\x94\xe9\x7f\xcb\xf2\xb4\x23\x36\xd4\x27\x5c\x98\xc9\xfc\x11\xb4\x29\xf0\xe8\x6d\x62\xd5\x6c\xad\xc0\x5f\xc8\xc7\x71\xf2\xb8\xc5\xc8\xe3\x76\xc1\x67\x63\xfb\xcd\xc7\x65\xde\x1b\xe4\x57\xca\x02\x6c\x86\x34\x36\x1f\xd1\x37\x67\xd8\xa2\xa3\x42\x3d\xf7\xb9\xe2\x0f\xd8\x0c\x67\xa5\x39\xfb\xbe\xf7\xa6\x34\x4b\x6e\x4a\x38\x4f\x09\xc5\xe4\x61\x9a\xf7\x3a\x5d\x5a\x3f\x5f\x13\xfe\x20\xad\x9f\x3f\xc8\x74\x3c\x64\x2d\x0f\xd8\x0c\x8d\x12\xce\x32\xe1\x13\x09\xe7\x13\x09\xe7\x3b\x00\xa4\x5a\x29\xe2\x64\x30\x5d\xc2\xeb\x44\x2e\x89\x1f\x97\xff\x5c\x53\xae\xc2\x66\x68\x92\xf4\x8d\x87\xd0\xb0\x84\x33\xec\xa3\x23\xb8\x49\x35\xe5\x27\x43\xfa\xd6\x8b\xc2\x6f\xa4\x6f\xfd\xc6\x47\x47\xc8\x23\x6d\x94\x9f\x26\x09\xe7\xc7\xc2\x6f\x25\x9c\xdf\xfa\xf3\xe3\x47\xa7\x1f\xfe\xe6\x3d\x2b\xb5\xfd\xac\x1f\x3f\xbf\xe6\x09\xf8\xe8\xf4\x63\xe4\xfd\xb3\x84\xf3\xe7\xd9\xe9\xc0\x05\xd8\x3a\xf9\x3a\xc3\x99\x7c\xdd\x8f\x4e\x27\x0f\x3e\x3a\x70\x01\xdd\x36\xf9\x7b\x09\xe7\xf7\x01\x3e\x91\x24\xd9\x27\x32\x08\x4b\x67\xf5\xbf\x58\xa9\x3e\xc6\x6c\xb5\xc1\x0d\x7e\xda\x18\xb5\x6f\xdd\xa4\x98\xf2\x92\x25\xb5\xfb\xe0\x8c\xbe\x79\x46\x70\x13\x2b\xb5\x81\x9b\x25\x9c\x07\x66\xe0\x30\x5e\x6a\x65\x5e\x86\xbd\x9f\xcc\xd8\x43\x98\xdd\xa8\x94\x79\x19\xfe\x22\x40\x8f\xf2\x5e\xa3\xf0\x28\x06\x07\x25\xea\x9f\xfc\x13\x4c\xf9\x51\x42\x65\x3f\xca\x46\xd0\xa2\x1e\x49\xbf\xea\x91\x68\x33\x7b\xef\xaa\x6c\xef\x6d\x24\x81\x76\x0e\xa3\xd1\x23\xd3\x18\x81\x08\xba\xb7\x60\xbf\xbd\x85\xd9\x95\x2a\x99\xc6\x08\x04\xee\x2d\x22\x8d\x01\x3f\x1a\x97\xe0\xcc\x0c\x7f\x8e\x48\x63\xb1\x4c\x43\xc4\xb9\xd3\xdf\xf2\xa4\xed\x19\x03\x20\x5b\xa8\x1f\x26\x57\x1a\xb7\x9d\xd4\x9f\x83\xa7\xfc\x39\xa8\x96\xd6\xad\x13\xc7\xad\x95\x8d\x5b\x67\xe0\xb8\x8d\x09\x6e\xb2\x85\x8e\x5b\xae\x34\x26\xe7\xe9\x98\xe0\xa9\x31\x41\x61\x82\x9b\x64\xd3\x71\x6b\x65\x38\xde\xdf\xcc\x18\x37\xc6\x4b\x91\xcc\xcb\x30\x70\xa8\x59\xe2\xa5\x59\xa2\x13\x29\xf2\x42\xc7\x8d\xf1\x32\xfc\x71\xa0\xfe\xbb\xdd\x7b\x83\xac\xa1\x76\x81\x43\x6a\xcf\xfe\x19\x76\xc1\xb3\xb2\x9f\xa6\x4d\xc2\x39\x38\xc3\x2e\x60\x74\x96\xc8\x74\xce\xc3\xc1\x19\x7b\xf7\xb3\xb2\xdf\xa8\x4d\xc2\xb9\x73\x86\x5d\xb0\x5d\xa8\x20\x6b\xe8\xfe\xed\xa0\xfc\xee\x58\xf0\x4f\x69\x05\xfe\x53\xde\xc7\x9e\x15\x2a\x45\x1b\x50\xa2\xc3\xc3\x8e\x8a\x7f\x49\x38\xff\x92\x71\xb6\x0b\x46\x3f\x3a\x62\x1f\x8f\x09\x3f\x90\xfa\xef\x07\x3e\x7e\x04\x93\x1f\x1d\x11\xe7\xf1\x19\xba\x02\x6b\xd7\x52\xb9\x5d\xc3\x30\x6f\x86\x8d\xc1\xda\xa5\x94\xf9\x19\x0e\x0d\xec\xe3\x06\x21\x83\x1c\xa4\xe3\xed\x94\xbe\x73\x49\xf8\xa9\xf4\x9d\x9f\x4a\x34\xee\x15\x32\x88\x55\xe1\xc1\x66\x68\x67\x38\x48\x31\x03\xa7\x41\x68\x9c\xa2\x03\x3c\xec\x28\x61\x6d\x5d\x22\xcc\x27\x6b\xc8\x10\x36\xa3\x67\x59\x7f\x64\x61\xf6\x7d\xcc\xbe\x7f\xaf\xd0\x38\x45\x1b\x94\xb0\x03\x1e\xa4\xef\xd1\xb3\x0e\x3a\x7f\x9c\x72\xdb\x9a\xa5\xb6\x35\xfb\xf8\xf2\xde\x20\x7b\xf9\x2b\xe0\xe3\xab\x1f\x9d\x87\x61\x46\x7d\xd8\x37\x66\xcc\x37\x59\x25\xfb\x26\x1f\x82\xe7\x50\x9b\x44\xa7\x4d\xa2\xc3\x7c\x2a\x13\x92\x4f\x45\xc4\x39\x00\xc1\x8c\x4e\x70\x00\x1d\xfe\xcf\x32\x9d\x8d\x90\x8d\x8a\x25\x3a\xc5\x01\x74\x1e\x91\x7d\x33\x1b\xb9\xcf\xa5\xb1\xff\x5c\x1e\x7b\xc6\x4f\xb1\x4c\x67\x04\xd2\xd1\x11\x89\xce\x91\x00\x3a\x9f\xc9\x74\x46\xa0\x8c\x71\x53\xc6\xfa\x8c\xd1\xb8\x55\xa6\x71\x11\xd2\x98\xae\x84\xa7\x74\x25\x4a\x83\x77\xc8\x34\x2e\x7a\x9b\x98\x8f\xa7\x69\x8a\xc6\xdd\x7e\x7c\x5c\x82\x2b\x33\x7c\xb6\x22\x8d\x6e\x99\x0f\x11\xe7\x0e\x7f\x6f\x13\x3d\x2f\x3a\x2c\xec\x23\x65\x8a\x51\xc8\x80\x25\x9e\xa0\x50\x04\x38\x8c\x46\xca\xb2\x84\x78\xf1\xbc\x02\x73\x5c\xa1\x5c\x50\x23\xc0\xb0\x89\xf3\xb0\x53\x39\xd4\x33\x1d\x0b\x37\x74\x79\x42\x00\x20\x03\x32\x4c\x1a\xad\xc9\x46\x2f\xf8\x46\x84\x70\xca\xd9\x8d\x9e\x80\xeb\x40\x1e\x8c\x2c\x55\x2b\x8a\x8a\x6b\x02\xb4\x9b\x14\x73\xff\x13\xbb\x2a\x10\x1e\x25\xc8\x52\xbb\xa1\xba\x7a\x7d\xad\x19\x73\x8a\xd1\x09\x73\xdd\x5d\x5b\x17\x25\xa4\x2c\xcf\xf7\x57\x72\xd2\x17\xa5\xe2\xa6\x83\xa3\x2b\xb9\x0f\x26\xcc\xa5\x3b\x17\xbb\x5d\x4b\x76\x96\x72\x1f\xd0\x9a\x3b\xf3\x49\x05\xc9\x87\x34\xc8\xf7\xb8\xac\x51\x98\x70\x69\x08\x93\x39\x08\x70\x10\xad\x92\x2a\xe5\x15\x0d\x68\xec\x62\x40\xa8\x16\x35\x44\x98\x34\xa9\x26\x13\xbd\x24\x3a\x5b\x23\x2c\x53\xc5\xae\x7c\x35\xbe\xec\x6a\xa2\x9b\xa6\xa3\x75\x34\x05\x39\x1f\x5a\xdb\x76\xcf\x32\xc7\x78\xbc\x7b\x81\x63\xf3\xe1\xe4\x6b\xd3\xf4\xb3\xb2\x83\xce\x23\xcd\x5d\x8e\x4d\x4f\xef\xc2\x07\x26\xf7\x74\x6e\xad\x8c\x5f\xdc\xc4\xa9\x6e\x7e\x87\xcd\x3d\x51\xf6\x8f\x50\xdb\x21\x4f\x92\x71\xb7\xce\xd0\xd5\xb2\x00\xc8\x63\xd4\xff\xd8\x25\xf9\x8f\x03\xfd\x8f\xcc\x8f\x5f\x2d\xfb\xf1\xcf\xc3\xe0\x8c\xf3\x1b\xe6\x5f\xfc\x9b\xec\x83\x3c\x0f\x87\xc1\x8f\x0a\xcc\x76\x1e\xd0\xef\x9d\x60\x74\xf0\x14\x9d\x2d\x00\xc4\x45\xf7\xb3\x42\x49\xb6\x0f\xcf\x38\x9f\xb8\x08\x40\x8a\xa8\x2f\x73\xb1\x84\x73\x76\x86\xbf\x93\xd1\x99\x27\xd3\xb9\x00\x96\x19\x67\x18\x8c\xce\x6b\x12\x1d\x1e\x2e\x18\x03\xdb\xcd\x68\x14\xc9\x34\x86\x21\x65\x86\x3c\x62\x34\xfe\x2e\xd3\x18\x36\xf1\x8c\x06\xcf\x68\x24\x01\x90\x27\xa9\x5e\x75\xab\xc4\xeb\xfb\x33\xce\x1e\x6d\xde\x1b\xe4\x09\xea\x9f\x3f\x28\xe1\x9c\x86\x28\x50\x3d\xc7\x31\x0f\x3f\x6d\x4f\xb5\xf7\x12\x39\x42\xe5\xfe\xed\xf2\x79\xdd\x09\x98\xf3\x1c\x87\xae\xa2\x13\xb2\xbe\xb0\x8b\xb4\x28\x7e\x81\xcd\x70\x88\xed\xf3\xcd\x91\x8c\x4a\x24\xd3\x89\x7e\xcf\xee\xb0\x63\x33\xba\x48\x65\xe7\x9b\xc2\xf3\xde\x9d\x92\xdf\x68\x27\xa3\xf1\xdf\xe0\xf8\xee\xff\xf9\xe4\x3b\x7a\xf3\xef\x1f\x49\x32\xef\x23\x59\xe6\xd1\x7c\x08\x0a\x2f\x36\xa3\x61\xe6\x13\x3f\xec\x64\xfa\x8f\x93\xf5\x0b\x83\x4f\xc8\xf0\xc1\x1d\x76\x06\xb7\xfb\xc1\x79\xa3\x0c\x3f\xbf\xcb\xc5\xe0\x2e\x7f\x78\x86\x04\x17\xe5\xf7\x1d\x50\xc4\x30\x8a\x7c\x7d\x36\xfd\x1b\xfd\xc8\xc5\xb4\xa7\x00\x1a\xab\x65\x1a\x17\x01\xe0\x36\x86\x71\x5b\x00\x0d\xfe\x33\x1f\x0e\xfa\xbe\xf7\xcf\xb0\x9f\x9d\xea\xec\xf7\xe1\x6c\x14\xea\x88\x93\x0c\x63\x33\xba\xc0\xf6\xbb\xd4\x49\xa9\x3f\x26\xe5\xfe\xa0\x77\xf7\x69\x7f\x3c\x28\x9d\xcd\x6d\x00\x27\x9b\x29\x4e\x1f\x1d\x86\x33\x21\xe1\xf0\x30\xd8\x65\x67\x18\x52\x9f\x50\x38\xed\x13\x06\x3f\xdf\xed\x62\x70\x97\x1f\xdc\xef\xfd\xfe\x8f\x5d\x4c\x72\x4b\x70\x7a\x0f\x5d\xf1\x5b\x6c\x46\x8f\xb0\x31\x79\x34\x50\x2f\x60\xf0\x8f\x24\xb8\x38\xc7\xee\x07\x2d\xc3\xd0\xfa\x78\xa4\x38\xa2\x4e\x2a\xe1\x9c\x87\xe3\x10\xc7\x70\xe2\x02\x70\x64\x3a\x3c\xf4\xc7\xc7\x31\x3e\x24\xff\xce\xb7\x00\x48\x14\x1d\xbb\xcb\xd2\xd8\x7d\x48\xc7\x0e\xf9\x8d\x1d\xbd\x3b\x4d\xfb\xeb\x49\xc6\xeb\xd3\x81\xf3\x87\xc1\x27\x24\xb8\xc8\xeb\x19\xf0\x9b\x41\x53\x34\x68\x7f\x3d\x29\xf1\x7a\x0e\xfc\x66\x91\x1f\x4e\x86\x8c\xf3\x10\x3c\x36\x63\x1e\x05\x7e\x8b\x87\x7e\x43\xe0\x3c\xa2\xf7\x59\x29\xaf\xa3\x8c\xd7\x27\xfc\x46\x56\x86\x4f\x48\x70\x91\xd7\x13\xe0\x37\xb2\x4c\x8f\x17\x71\x28\xaf\xa3\x12\xaf\xa7\xc0\x6f\x74\xa7\x70\x64\x3a\x3c\xf4\x27\x06\x8e\x2f\xbd\xd7\x49\xe1\x2f\xb0\xf9\xb3\x2c\x70\xfe\xb0\xf5\xf0\x9e\xbc\x1e\x36\x2a\xcc\xac\xa5\x66\xff\xf5\x60\x96\xe1\x23\x68\x2b\x83\x6f\x65\x67\x33\x4e\x61\x3e\xb9\x8f\x0c\x41\x3c\x24\x42\x85\xa7\x34\x11\xf1\x0a\x2d\x02\x2e\x18\x21\x98\x4b\x33\x89\x2a\x91\x82\x57\x6c\x91\xca\x4b\x2c\x23\xbe\x94\xd8\x74\x6b\xac\xc5\x0d\x00\xba\x04\x88\x87\x78\x75\xb4\xc9\xa4\x56\x89\x1b\xfc\x6c\x27\x34\x4e\x76\x40\xc3\xe9\x39\x7c\x15\xbd\x67\x98\xb6\x1f\x2e\x69\x59\xcd\x72\xa5\xec\x40\x47\xbf\x4b\x86\x6e\x0e\x4e\xdb\x0d\x2b\x0f\x39\x91\x4a\xf8\x23\x19\x9a\xd4\xa3\x9b\xe2\xda\xf4\x7e\x4a\x9c\xb4\x4f\xd8\xda\x1c\xec\x0f\xec\x13\x0a\xa7\xfd\xce\xe0\xe7\xd7\x06\xae\x29\xf6\xfe\xe7\x32\xfc\xc2\xdf\x67\x81\xf3\x26\x19\x3e\xfc\x99\x9b\xc1\xdd\x0c\x4e\xf3\x86\x50\xf8\x45\x06\x7f\xc9\xcd\xfa\xd4\xed\xbf\x66\xdf\x93\xd7\xec\xc6\x3f\x98\xd9\xfb\x66\xff\x35\x6f\x96\xe1\x23\x1f\x6f\x65\xf0\xad\xfe\xef\x7f\x2e\xc3\x2f\x7c\xec\x3f\x6b\x10\x7c\x4f\x98\x4f\x73\x86\xe8\xa1\xc4\x53\xe8\xe7\x75\xe2\x41\xa9\xe2\x95\x7d\xb2\x0f\xfd\xff\x86\xe7\x9c\x26\x18\x39\x34\xd3\x73\xfe\x6b\xbf\x94\x23\x33\x9d\x4b\x52\x12\x12\xb9\xad\x26\xb9\x2d\xc3\xbf\x0b\xec\x4b\x9a\x53\x84\x8e\xd5\x25\x36\x56\x5b\x03\xc7\x82\xc1\xcd\x32\x7c\x64\x32\xb0\xaf\x28\x9c\xf6\x15\x83\x5f\x98\x9c\xf6\xbe\x60\x23\xa5\x54\x8e\x5f\x92\xec\xa2\x61\xe1\x5d\xc9\xe6\x79\x57\xda\xfb\x68\x6e\x10\xca\xc3\xc3\xd2\x3a\x1d\x99\xb1\x4e\x99\x8c\x0c\x97\x65\xe4\x43\x70\x11\xf4\x0c\x47\x1f\x28\x23\xaf\xc9\x32\x72\x63\x92\x9f\x97\x55\xa6\x11\x24\xc3\x47\xe2\x3b\x19\xbc\x93\x8d\xeb\xcf\x84\xf9\x34\xa7\x88\x1e\xf2\x3c\xce\x29\xbf\x27\x80\x8a\x5d\x56\xfb\xbf\xe2\xf5\x94\x12\x90\x08\x9f\xcc\x74\x1c\x1e\x9f\xca\x49\x32\x8b\xbf\x90\xab\x9f\x6a\xe3\xcf\xe4\x36\x5c\x88\xf7\xdb\x29\xbc\x5e\x38\xe9\xfd\x94\xec\xa0\x7d\xf9\xa8\xe4\x23\xec\x9a\xd1\x97\x2f\x08\xb9\xe4\x36\xaa\x6b\x3c\x26\x8d\xc9\x3a\xe1\x97\xd2\x98\xfc\xd2\xef\xac\xab\x85\xae\xf1\xc7\x25\xdf\x5e\xfc\x0c\xf9\xfa\x23\xc1\x49\x5a\x28\x9d\xc7\x25\x3a\xfd\x82\xa4\xb5\x08\x1f\x49\x74\xa4\x7c\x24\x32\x4e\x3f\x1c\x17\x76\x48\x38\x3b\x66\xc7\x81\x0b\x10\x33\x29\xf9\x11\x27\x7d\x7e\x44\x9a\x43\x84\xf2\x73\x59\x92\xf7\x3f\x98\xc1\xcf\xb7\x84\x1c\x12\x4a\xe9\x5c\x96\xf8\xf9\x8b\xf0\xa1\xf4\xad\x0f\xfd\xe9\xd0\xf5\x70\x99\xad\x87\xae\xc0\xf5\xc0\xf6\xa5\xf7\xe4\x7d\x69\xa3\x25\x50\x9e\xb3\xbd\xcd\x2c\xc3\x47\x0c\x7e\xf2\x5c\x82\xdf\x2a\xc3\x45\x5b\xef\x09\xf0\xdb\xd9\x28\x9f\x34\xd7\x06\x6d\xcb\xd3\x4c\x7e\xea\x02\xf5\xb4\x63\x82\x93\xa4\xd1\x76\x3c\x2d\xb5\xa3\x92\xf6\x2b\xf6\xeb\x57\x4a\x83\xb6\x83\xd1\x18\xbe\x1c\x28\x03\x69\xfe\x0c\xfa\x8d\x67\xd8\x37\x36\x07\xca\x68\x0a\xa7\xf3\x84\xc1\xcf\x0f\x06\xae\xdb\x7b\x84\x46\x92\x47\xd7\xed\x33\xcc\x0f\x51\xc4\x74\x2e\xf6\x9e\x49\x7e\x6f\x78\x32\xb0\xff\x96\x08\x59\x7e\x7a\xac\xc8\xfb\x71\xe1\x03\x69\x0c\x3e\xf0\xd7\x75\x29\x8d\x67\x25\x3f\x63\x20\x0d\xb6\x6f\x67\xc8\xfb\xf6\x43\x70\x69\x86\x2e\xc3\xf6\xed\xf7\xe4\x7d\x7b\xa3\x21\x50\xc6\x33\x1a\x66\x19\x3e\x92\x18\x28\xb7\x18\x7c\xb5\xfc\x8d\x8b\xa0\xa3\x7a\x2a\xf2\xd3\x53\x45\x9c\x3d\x32\x0d\x71\x2c\x1f\x01\x3f\xed\x80\x5a\xdd\x63\xc2\x11\x9a\x77\x23\x73\xba\xdd\xae\xf5\xd9\xed\x84\xdb\xf2\x55\x76\xbb\x0f\xcc\xcc\xf7\x19\x76\x7b\x26\x64\x9a\x34\x96\xff\x60\xb7\xcf\x92\xc8\x03\x25\x17\xb6\xe6\xb8\x4b\x02\xc4\x8b\x51\x4f\xbe\x22\xb5\x87\x67\xe3\xa2\x2a\xad\x79\xa9\xd3\x5f\xde\xa4\xb6\xa6\xcc\x92\xed\x43\xec\x13\x9a\xa3\x83\xce\x9b\xe7\x25\xf9\x92\x3e\x43\xbe\x50\x9d\x89\xe2\x30\x9d\xe9\xfc\x8a\xc0\xb9\x35\x5d\xa7\xea\xff\x53\xa0\xce\x45\xf3\x5f\x50\xf8\x98\xb4\xd6\x2f\xce\x58\xeb\x0c\xe7\x73\x09\x87\x87\x0b\xa9\x81\xdf\xa0\x70\x3a\xc7\x18\x7c\xd8\x16\x38\xc7\x58\x6c\xce\x6e\x16\x57\x03\x4a\x78\x52\x78\x95\xd2\x0d\x05\x20\xa7\xf9\xdd\x60\x06\xcb\x0a\xfa\xfb\xe4\xff\x8a\xbf\x7b\x27\x01\xc8\x25\x7e\x2f\x98\x21\x75\x85\xc8\xd3\x93\x93\x3f\x01\x3f\x0f\x1c\xc5\xb9\x01\x40\xf6\x53\x1c\x9b\x84\xf3\xda\x74\x1c\x98\xe3\xbd\x41\xb6\x51\xfa\xd9\x91\x8c\xfe\x47\xf4\xdd\xe7\x01\xc8\x2f\xe8\xef\x05\xd2\x77\xef\xa6\xf8\x0a\x00\x72\x1b\xfd\xfd\x45\x09\xff\x43\xfa\xfb\x55\xef\x0d\x92\x4f\xf9\x7f\x95\xb6\xef\xa9\x8f\x5f\x12\x57\x19\x77\xd5\xfb\x92\x6c\x1f\xd1\x36\xd2\xfb\x57\x06\xfa\xfc\x14\xbd\x5f\x24\x3e\x1b\xa7\x62\x5a\xe9\xb3\x65\xca\xbe\xa7\xcf\x85\xf4\x79\x88\xe5\x60\xc5\x3c\xa4\x4e\x9d\x2d\xd2\x67\x9b\x4c\xef\x61\xfa\x9c\x4e\x9f\x8f\x03\x90\x06\xfa\x9c\x09\xf2\x99\x03\x7d\xce\x9a\x3a\x27\x50\x7c\x1b\xf3\x90\x4d\x9f\x5f\x01\x20\xbb\x28\x3c\x67\xca\x57\x49\x9f\x9d\x53\xbe\x0d\xfa\x5c\x40\x9f\x3b\x00\xc8\x51\xfa\x9c\xef\x77\xd6\xf9\xef\xe3\x52\xff\x1b\xff\xc8\xed\xde\xeb\xe4\x1e\x7e\x1f\x36\xc3\x55\xda\x97\x4f\x86\x12\x26\x4b\xc9\x94\x8f\xaf\x97\xbf\x05\x9b\xe1\x65\x06\x8f\x0c\x8c\xe5\x7b\x58\xe8\x23\x36\xfa\xfe\x37\x18\x3c\x3e\x30\x56\x8d\x8d\xd5\x5a\x79\xac\x9e\x0c\xf9\x54\xb2\x65\x3f\x95\xc7\x6a\xc4\x7b\x83\x94\xd0\xf1\xfc\x1e\x1b\xcf\x57\x67\x8e\xe7\x35\x00\xb2\x85\xe4\x63\x5e\x1c\x19\xdf\x79\x08\x69\xc2\xbc\x38\xd2\x5e\x2f\xbc\x2c\xf4\x92\x30\x0a\xdf\x4a\x9f\x97\x01\x90\x95\xf4\xb9\x93\xd9\xd4\xf2\xfb\x8b\xa6\xe6\x10\x8d\x23\x64\x7c\xf5\x2b\x02\xe3\x08\x29\x4f\x14\xce\x78\xea\xff\x4d\x20\x9c\x9d\xc7\xec\x93\xcf\x63\x9e\x9c\x13\xd8\x6f\xac\x4d\x6b\xe5\xf7\x9f\xbc\x3e\xb3\xdd\xf3\xbd\x37\xc8\xdd\x14\xe7\xfb\x0c\x47\x33\x13\xe7\xbf\x89\x87\x1e\x03\x20\x59\x14\xe7\x19\x49\x66\xdc\x16\x78\xd6\x06\x88\xf9\xf9\x15\xdf\x86\x12\xb0\x7b\xb2\xa6\xe7\x94\x92\x72\x25\x25\xf8\x17\x59\x2e\xcc\x77\x3a\xb2\x33\x8d\x91\x19\xb4\x18\x65\x2e\xcd\xeb\x2c\x67\xb4\xf0\xa5\x94\xd2\x71\x5a\x9d\x62\x7a\x5a\x18\xee\xf1\xa2\xde\x41\x47\xe3\x85\x03\x0b\x17\xde\x79\xb9\xbd\x67\xf4\xae\x16\xfc\x0d\x55\x46\xc3\x9a\x32\xc7\xca\xf9\x99\xa8\xb8\x67\x20\xdb\xb9\x71\x55\x67\x99\xa9\xe3\x9e\x67\x3a\xfa\xae\x3d\xb0\x98\xfb\xfa\x1c\x77\xe7\x60\x85\x73\x4d\x4b\x2e\xda\x54\xbe\xb8\x24\x55\x1d\x53\xb5\xea\xf0\xd2\xa5\xc7\x57\x39\x4a\xb6\x3c\xb4\xa2\x64\x75\x9d\x55\x57\xd8\x99\x5f\xd2\x51\x98\x12\xaa\xb6\xb9\xab\xba\xd6\x95\x2e\xbb\xbf\x2f\xbb\x70\xf3\xa5\xfe\x8a\x35\xb5\xa6\xb8\xbc\x8e\x59\xd6\xe7\x7f\xb3\x3e\x96\x79\x6f\x90\x28\xfa\x4e\x1a\x7d\x47\xba\xf3\x87\x79\xf4\xc1\xd4\x1a\x57\x86\xf8\xce\x8a\x61\x10\xf6\xa1\x4a\xa9\x5f\x2b\x65\x5f\xdb\x75\x32\x46\x63\x0e\x7e\x2e\xf9\xe2\xf5\x33\x62\x0e\xfe\x93\x2c\x1a\x63\x35\x93\x31\x2f\x72\x3d\x8b\x6c\x7a\x08\x80\xa4\x52\x3f\xfb\xcf\xa4\xb8\x86\x2f\x66\xf8\xfb\xa7\xcb\x9f\xe9\xf2\x6b\xba\xfc\xa1\x34\x29\xfc\xca\xac\xf2\x88\xc6\x9e\x51\x7c\xd3\xac\xf2\xa9\x12\x80\x1c\xa2\xcf\x63\xb3\xca\x27\x1a\x97\x49\xd7\x67\xf9\x54\x4c\x32\x7d\xae\xa6\xcf\x8f\x00\x10\x0b\xf5\x73\xde\x60\x3a\xca\x67\x7e\x71\x18\xb3\xac\xef\xa7\x85\x5e\x52\x42\x9f\x5b\xa8\xca\x40\xe3\xde\x68\xfd\xc0\x02\x8f\x1b\x88\x02\x29\x08\x0d\x89\x54\x20\xd8\xe8\x9b\xc5\x89\xf5\xfc\xb4\xe2\x81\xf1\x71\x5a\xcd\xdc\x20\x5e\x01\x36\x64\x53\xf2\x91\x36\x7a\x57\xd0\x3e\x2d\x83\xbc\x5c\x36\x8e\x96\x0e\xdc\x93\xd3\x53\x97\x8e\x9e\x45\xb5\xbb\x47\xda\xf7\x5c\xdd\x53\x5c\xbc\xe7\xea\x9e\xde\x07\xb7\x95\x3d\x8b\xac\x55\x7d\xee\xf6\x6d\x35\x89\x89\xd5\xdb\xf6\x27\xe5\x35\xa6\xd7\x1c\x58\x5e\xd0\x79\xe2\xb5\xf5\xa9\xeb\xbe\x7d\xa2\xb3\x68\xcd\xb1\x96\xec\x8e\x32\xb3\x5c\x39\xd0\xe7\xd3\xa6\x32\xa8\x7b\x56\x99\xf4\x9f\xe2\xaa\x5f\xa4\x63\x26\xca\xa4\x3f\x50\xbd\x74\x70\x50\x3a\x2f\x94\xfb\xba\xcd\x2f\x46\xfa\x35\xcc\x43\xfd\x7f\x15\x33\xfd\x3f\x42\x3d\xd7\x49\xf1\x1b\x28\xfe\xc3\x00\xe4\x04\xc5\xff\x13\xfb\x8e\x05\xfc\x62\x7e\x3f\x93\x63\x7e\x47\x22\x02\xcf\x94\xd8\xd9\x80\x41\x3e\x1b\x28\xf3\xde\x37\xc3\xaf\xcf\xce\x06\xde\x96\xcf\x06\xca\x8e\x05\xee\x17\x8c\x46\x92\x4c\x63\x10\x6e\x99\x11\x37\xc0\x68\xbc\x29\xd3\x18\xdc\x1b\x18\xff\x3c\x9d\x46\x3f\x28\x67\xac\xfd\xe9\x34\xfa\xf9\xc0\xf8\x65\xb6\x77\x26\xcb\x7b\x67\x99\xf7\x0e\xd4\x25\xf1\xd1\x15\x70\x46\xf1\xb6\xdc\x1f\x65\xc3\x01\x6d\x41\x7f\x26\x7a\x3c\xc4\x03\xe6\x61\x0e\xad\x7f\xb6\x8c\xe8\xb9\x1e\xfa\x4c\xe8\xf3\xff\x7a\x3f\x57\x9e\x51\x8c\x82\x99\x84\x89\x7a\x18\x09\x23\x6f\xd3\x7e\x1e\x15\xea\xb9\x9b\x8a\x3f\x4a\x71\x2c\x3c\x0c\xf7\x4e\x48\xfb\xc2\x84\x6f\x5f\xf0\xd5\xf2\xc3\x3c\xea\x9f\xd2\x3f\x68\x9b\x33\xa5\x7e\xdb\x36\xa3\xdf\x44\xdb\x63\x0b\x3d\xe7\x9e\x2f\xe1\x9c\x9f\x71\xce\xbd\x40\xb8\x93\xca\x2a\xa6\x1b\xf2\xf0\xb0\x89\x8d\xfd\x79\xe1\x4e\xe9\x2c\xb9\x9c\xfd\xfe\x09\xfd\xdd\x7b\xb7\x28\x57\xf8\x76\x5f\xdc\x01\x7a\x6b\xf2\x38\xdc\xcf\x66\xed\xfd\x3e\x9a\xff\xcd\xfd\x21\x26\xe3\xb4\xb2\x8c\x2b\xf3\xee\x9f\x11\xdf\xf3\x9f\xee\x35\x30\x99\xf2\x96\x24\x53\x44\x1a\xb7\x80\x9f\xb6\x42\x79\x59\x49\xfb\x40\x94\x53\x5f\xa3\xcf\x7d\x42\x0a\xb9\x8d\xae\xc1\x37\xe9\x73\x2c\x00\xf9\xb5\xb2\x0c\x9b\x91\x86\xd2\x78\x82\x74\xa1\x56\x69\xee\xb4\x4a\x7c\x38\x44\xf9\xcd\xc7\x62\x33\x8a\x92\x70\xb2\x20\x8d\xcd\x9e\x34\xdf\x77\xba\x84\x4c\xb2\x89\x9e\xcf\xff\x94\x9e\x69\xfc\xe0\xaf\x27\xa5\x31\x3c\x29\xef\xed\x87\x84\x3c\x52\x47\x1a\xb1\x19\xae\x33\x1c\xd5\x45\x09\xe7\xa2\x8c\xb3\x4e\xc8\x9b\xba\x93\x25\xe2\x78\x67\xe2\x1c\x15\xf2\xa6\xee\x81\x88\x38\x11\x33\x71\xa6\xeb\x93\xd5\x42\x2f\x39\x49\xdb\x7d\x6d\x56\xfd\x36\x01\x80\x3c\x43\xf7\xb5\xf7\xa5\x7d\x6d\xde\x8c\x7d\x4d\x0d\x40\x9e\xa2\x32\xfc\x93\x59\x65\xf8\x74\x9a\xff\xc7\xf1\xfc\xff\xe5\x7d\xb8\xff\x74\xef\x86\x9e\xa1\x51\xbe\x6e\x05\xf0\x9d\x97\x51\xf9\x79\xd0\x6f\xbe\xfe\x9f\xc5\x29\x2f\xf2\x5e\x27\x1d\xfc\xdf\xb0\x19\x95\x4b\xfa\xc7\x4d\x94\x2e\xf1\x99\x2e\xd1\x78\xce\x7b\x83\xf4\x90\xf9\x98\x87\x73\x20\x3f\x53\xf9\x7f\x8e\xf1\x9d\x12\x28\xff\xd9\x98\x24\xc9\x63\xd2\x0f\xf3\x66\xc8\x35\x36\x26\x6f\xc8\x63\xd2\xff\x59\xa0\xac\xef\xf2\x5e\x27\x9b\x68\x3c\xcc\x4f\x65\x9b\x60\x93\x44\xe3\xff\xa3\xee\xdd\xe3\xaa\xaa\xd2\x3f\xe0\x67\x5d\xce\xe1\x2a\x82\xf7\xd4\xec\xe0\xf1\x16\x1c\x90\xfb\xc5\xd4\xe0\x5c\x40\x94\x10\xf1\x06\x66\xc6\x01\x8e\x82\x02\x07\xe1\xa0\x66\x66\x66\x56\x8a\x78\xbf\x00\x5e\x11\x51\x11\x51\x37\x64\x66\x8e\xd3\x38\x4d\x39\x4e\xb9\x9d\x6a\xaa\x29\xbb\x5a\x8d\x35\x66\x8d\x63\xd6\x58\xe9\xe1\xfd\xec\xb5\x9f\x73\x38\x40\x4e\xf3\xfe\x3e\xef\x3f\xaf\x7e\x36\xcf\xda\x7b\x3f\xeb\xfb\x7d\xd6\xb3\xd6\x7a\xd6\xda\x6b\x5f\x4e\x99\xbb\x6c\xdf\xf2\x89\xe2\xbe\xdf\x37\x2a\x86\xef\x00\x15\x03\xdf\x91\x11\x7d\x55\x3c\xc7\xf0\x01\x3e\xaf\x79\xa7\xdb\x73\x0c\x6a\x5f\x6c\x74\x8f\xef\xa5\xb7\xba\x3f\xaf\xa9\xf6\xf9\x3e\x6e\x9c\xc2\xf6\x9f\xba\x3d\x3f\xa0\xe2\xfc\xc5\x8d\xd3\xb5\x3c\xff\xcb\x7b\x6c\xbf\xf5\xbe\x4d\x7e\xfb\x35\x3e\x4b\x99\xeb\x10\xf5\xdb\x1d\x8f\xb4\x5f\xe3\xb1\x4a\x7b\x20\x7d\xc4\xbe\x38\xef\x35\x88\x8e\x50\xce\x0b\x8e\x3e\xe2\xbd\x33\x46\x3b\xde\x3b\x13\x79\x34\x3f\xd3\x11\x4a\x1e\x85\xe3\xcd\x58\xf0\x6e\x65\x54\x8a\xc5\x7b\xbf\xed\xd7\xf8\x54\xaf\x38\x3a\x02\xbe\xc0\xb2\xfe\x5b\x7d\xce\x86\x76\x3c\x67\xf3\x94\xb8\x26\x51\xec\xfc\x05\xd7\x06\xee\x51\xcb\x8a\x76\x8a\xb9\xa6\x78\x4e\xf6\x43\x7c\x7e\x64\x78\xb7\xe7\x64\xd5\x31\xe9\x80\x7b\x4c\x2a\xed\xdf\xfd\xf9\x11\x75\xce\xaa\x73\xe3\x14\x42\x70\xb7\x76\xf4\x5b\xef\xf7\x74\x9d\xf7\xee\x87\x43\x77\xc1\xb8\xe9\xbe\x87\xbf\x1f\xea\x3a\x3f\xfb\xd1\xde\x0e\x47\x94\xfa\x15\xb6\x7c\x8c\x7e\x79\xbe\x1b\xce\x3a\x77\x1b\xf8\x41\xb5\x65\x50\xe7\x36\xb0\x11\x80\x4f\x12\x18\x97\x11\xe3\xb2\xc0\x60\x1e\x18\x1b\xc5\x7c\x58\xc1\xf8\x49\xc5\x30\x71\xb5\x7e\x10\x63\xa6\x73\x92\xa6\x9f\x18\xf7\xc6\x88\xe7\xfb\xde\xa4\x1c\xef\xc5\x4e\xe2\x07\xf8\x18\x3a\x42\x99\xa3\x29\xc7\xc9\x16\xf7\x33\x38\x83\xc5\x58\x9e\xa2\xae\x0d\x39\x27\xf1\x2f\x44\xfe\x4b\xa8\xf7\x96\x38\x1e\xef\x9c\xc4\x3f\x11\xf9\xbf\xc3\xe3\x17\x70\x9c\x6d\xf2\x18\x67\xbd\xa0\x99\x7f\x8a\xe3\x6c\x93\xc7\x38\xab\x1c\xdf\xef\x11\x3b\xcf\xb9\xe3\x5e\x13\x3f\x4f\xb2\x30\x76\x66\x75\x8a\x9d\xab\xdc\xef\x24\x36\xf1\x57\x21\x50\x8d\x4a\x81\xee\xf1\x1d\x80\xff\xd3\xeb\x3b\xf7\x7b\xc0\x3b\xda\x7f\x10\xf3\x1a\xa5\xbf\xe4\x78\xe0\xfc\x43\xdb\xe2\x7e\xef\x70\xc7\xbf\xfb\xab\xfd\xa5\xbf\x7a\xdf\xff\xb6\xb0\xe5\x63\x37\x46\x5d\xfb\x35\x32\x01\x31\x26\xe0\x7d\xff\x5b\xc2\x96\x9d\x6e\x8c\xba\xaf\xb5\x2a\x86\xb6\x23\x8e\xff\xce\x9b\xbb\x31\x6a\x81\x90\x58\xc4\x88\xf5\xb0\xe3\x94\xf6\x4f\x6e\x8c\x5a\xe7\x4d\x55\xc3\x23\x86\xa8\xef\x35\x8f\x76\xe3\xd4\xb4\x7f\x4f\xe2\x10\x27\xae\x93\x5f\xbe\x73\xe3\xd4\xfc\xeb\x07\xc4\xe9\xe8\x13\xa2\x3e\x5c\xef\x6b\xc3\x48\xf5\x7d\x6d\x82\xf5\xd2\xe5\xbd\x6d\x51\x47\xae\xf7\x43\x85\xee\xd3\x70\x0f\xc1\xba\xea\xf2\x9e\xa8\x5a\x6f\x9f\xb8\xed\x7b\x05\x40\xcc\x27\xa8\xc7\x7c\x42\xb5\x6f\x97\xdb\xbe\x57\x6e\xf7\x52\x7d\xd5\xcb\x63\xcc\xf3\x0e\x76\x63\xec\x04\x46\x96\x22\xc6\xd2\x4e\x18\x9f\xba\x31\x76\x42\x82\x8a\xe1\xb9\xe6\xe7\x9d\xee\xc6\x38\xd9\x7e\x93\xa4\x21\x46\x9a\x27\x86\x97\xaf\x1b\xe3\xe4\x75\x2f\x15\xc3\xeb\xd7\xed\x90\xdb\xdf\x21\x53\x10\x63\xca\x5d\xec\x90\xdf\xec\xa9\x62\xf4\x44\x0c\xe1\xe7\x89\x6e\x3f\x8b\x39\x40\x17\x3f\xd7\x76\xf2\x33\xce\x05\x60\x84\x32\x17\xe8\xec\x65\x9c\x13\x9c\x74\xb6\x89\xeb\x65\xd7\x78\xdd\xcc\xdf\xee\xf6\x8e\xc1\x73\xce\x26\x71\xfd\x29\xc6\x6b\xd1\xaf\xbe\xf0\x18\xeb\xcf\xb9\xf3\x36\xf1\x97\x45\xbf\x22\x1e\xfd\x4a\x1d\xeb\x9f\xc1\xb1\x5e\xd1\xf9\x03\x04\xa9\x16\x04\x75\x9e\xe3\x66\xb9\x71\x1a\x60\x4d\xb7\x77\x21\x54\x9c\x20\x37\x4e\x03\x54\x81\x4e\xc5\xd1\x79\xe2\x7c\x2a\xfa\xe7\x48\xec\x9f\xdf\xa8\xd7\x1d\x1e\xfd\x53\xc1\xf9\x4c\x7b\xd4\x35\xf7\x20\x3b\xae\x0d\x50\x7d\xac\x8e\xcf\xed\x37\x84\x2d\x1f\xbb\x31\xea\xda\x3f\x17\xfd\x93\x78\xf4\xcf\xef\x85\x2d\xbb\xdc\x18\x75\x5f\x74\xae\x6b\xc5\x8e\x36\xd1\x3f\x55\x8c\xda\xf6\x5b\xa2\x7f\x12\x8f\xfe\xa9\xd8\xf1\xbc\xf6\x55\x37\x46\xed\x4f\xdd\xfb\x95\xf0\x8b\xe8\x9f\x23\xb1\x7f\xfe\x53\xf4\x4f\xe2\xd1\x3f\x55\xbf\xfc\xcb\x8d\x53\x73\xf5\x47\xc4\xf9\xb1\x03\x47\xa9\x63\xd7\xb7\x03\x44\x9f\x7b\x02\xfb\xa7\x52\xd7\x41\xee\xe7\xcf\x14\x67\xfa\xba\x70\x95\x3a\x77\xbd\xc7\x0c\x23\x60\xd7\xf2\x81\x04\x6b\xbe\xd3\xfb\xcc\xea\x5a\xd1\x39\xf7\x5a\x51\x13\xaf\xea\xd6\x06\xc4\x35\xb4\xb6\xcc\xfd\x1e\x4b\x13\xff\xb6\xbd\xd3\x55\x99\x78\x16\xbd\x4d\xcc\x77\x5d\x38\xcd\x7c\x4f\xb7\x76\xf8\x86\xb3\x4d\x5c\x9b\x8f\x50\xae\xcd\x15\x1d\x8d\xf8\xc5\x1a\xb7\xd9\x62\xad\xc6\x59\x2f\xd6\x6a\x5c\x73\x9a\x66\xfe\x69\xfb\x2d\x7c\x66\xea\x96\x6b\x4e\xe3\xdc\x2b\xd6\x47\x5c\xcf\x72\x37\x73\xb9\xfd\x3f\xa8\xf3\x1f\xd4\x51\xe7\x46\x1f\xba\x71\x9a\xf8\x05\x32\x0f\xfb\xd8\x3c\xcf\xb9\x91\x18\x33\xa6\xa0\xce\x4b\xdd\xc6\x0c\x05\xe7\x5b\x6f\xe6\xbe\xc6\xdb\xd1\xfe\x13\x29\xc5\x7e\x5f\xea\x81\x73\x49\x8c\x19\x53\xd4\x36\x79\xa5\xd3\x98\x01\x20\x6c\xb9\xe1\xc6\xa8\x6b\xbf\x4e\x1e\x41\x8c\x47\xb0\x4d\x7e\x2b\x6c\xd9\xe9\xc6\xa8\xfb\xb8\xf3\x98\xa1\xd8\xf1\x07\xef\x7b\xdc\x18\xb5\xa0\x51\xdf\x29\xa6\x1d\xf3\x1f\xc5\x8e\xa3\x62\xcc\x50\x31\x6a\xbf\xef\x3e\x66\x08\xbf\x78\x9b\xdd\x38\x35\xed\xff\x51\x9f\x71\xa7\x1d\xcf\x04\xaa\x7e\xf9\xce\x8d\x53\xf3\x65\xf7\xb6\x2d\xea\xc9\xf5\x2d\x06\xd1\x26\xd7\x92\x32\x77\x7d\xf5\x72\x7f\x93\xa1\x95\x61\xc5\xb9\xea\xcd\xf5\xfe\xb8\xd2\x26\x97\xdc\xe3\xae\xbd\x20\xd7\xc8\x21\x32\x74\x3c\x0f\xae\xcc\x3f\xcf\x89\xf9\xcd\x76\xbc\x6e\x5f\xd5\xed\x99\xbf\xc5\xed\xd7\xf8\x31\x31\x77\xac\xc1\x35\x91\xce\xef\xad\xab\x18\x7a\x37\x86\xb1\xbd\xb6\xdb\x77\x4d\x54\x8c\xcb\x6e\x0c\xe3\xc6\xce\xef\xc6\xab\x18\xe7\xdc\x18\x4d\xfc\xcf\xdd\xe6\x20\x02\x43\xb4\xa7\x1a\x77\xac\xec\xda\x9e\x54\x9c\x2c\x37\x4e\x03\x6c\xee\xf6\xdd\x13\x15\x27\xd0\x8d\xa3\xc4\xca\xae\xef\xd1\xe7\x3b\x9b\xf8\x39\x65\xce\xad\xe0\x88\x98\xfe\x37\x71\x7c\xb1\x73\x2f\x3f\xc6\x9b\xdd\x79\x9b\xf9\x1b\xdd\xfa\xc6\x5a\x67\x13\x37\x8a\xbe\x1a\x8f\x79\xcf\xe3\xf3\x01\x4d\xfc\x3e\x31\x5f\x9b\x89\xc7\x37\xb9\xe7\x7b\x46\xaf\xd3\xee\x67\x9d\x9b\xf8\x15\x92\x82\x31\x22\x45\xf2\x7c\x5e\x7a\xa1\xfb\x59\xe7\x26\x7e\xaa\xbd\xd3\x93\x7b\xf8\xae\xed\xd3\xa2\x2e\x6b\xb1\x2e\x1d\xdd\xd6\x69\x4e\xb4\x5f\xd3\xa8\x73\xd5\x3a\x75\xfd\x6d\x91\xfb\xb9\x6f\xcd\xd3\xa2\x0e\x6b\xb1\x0e\x57\x77\x5b\x47\x51\xf3\x5e\x50\xf3\x8a\xef\x1b\x74\xbe\x5f\xa3\x62\x9c\x73\x63\x34\xf1\x17\xbb\xc5\x3a\x81\x21\x62\x5d\x9d\x2b\x26\x74\x8b\x75\x2a\x4e\x96\x1b\xa7\x01\x56\x76\x1b\xef\x54\x5b\x7e\x71\xe3\x34\xc0\xaa\x6e\xf1\x70\xad\xb3\x5e\xf3\xb4\x78\x67\xab\xd6\x1d\xc7\x3a\xbd\xed\xa0\xd6\x89\xe6\x41\xbe\x05\xfd\xa1\xe8\x6c\x54\xd7\x34\x9c\x6d\x62\x4d\xc3\xb5\x46\xd7\xcc\xff\xd4\x0d\xdf\xec\xf4\x13\x6b\xae\xae\x6b\x90\x66\xcd\xa1\xf6\x7c\xc4\xcf\xef\x74\x9f\xec\x35\x37\x4e\x13\x3f\x21\xe6\x35\x4a\x59\xa6\x78\x5e\xcb\x88\xba\x7d\xd8\x15\x4b\xbb\xd5\xad\x8a\x33\xc5\x8d\xd3\x00\x4f\x92\x5c\xc4\xc9\xed\x74\x4d\x74\xdb\x8d\xd3\x00\x35\x9d\xdf\x13\x00\x2a\xda\xda\x65\xf1\x8d\xa9\x48\x38\x9a\xd4\xb3\x2f\xf1\x61\xf7\x8f\xa2\xde\x3e\x9c\x10\x6f\x86\xdf\x32\x1b\xee\x25\x7e\x81\x9d\x69\xc4\xd7\xb1\xc6\x4f\x02\x1f\x1f\xd7\x1b\xc0\xde\xde\xe4\x61\xfc\x5d\x87\x41\xea\xb7\xa9\xee\xbf\xbb\xb2\xf8\xde\x81\xb7\xb7\xeb\xe6\xfb\xa0\x4e\xba\x1d\x6a\x5a\xad\xfa\xb3\x0b\x9e\xba\x39\x39\x49\x01\x61\xa1\xc3\x83\x82\x82\x7a\xdf\xaf\x57\x5f\x21\x24\xfa\x20\xbd\xeb\x39\xf4\x58\xfc\x69\x52\xfc\x5e\x55\xb4\xeb\x83\xa6\xf1\x41\xf8\xb1\x34\x7e\xf9\xb5\x66\xef\xb8\xed\x05\x79\x7b\xcb\xc6\x8f\x5b\x58\x9f\x6f\xdd\x14\xdb\xde\xfe\xd2\x6b\xb7\xf3\x87\xa6\x96\x3e\x34\x3a\x7d\x7c\x44\xaf\x61\x4b\x1f\xce\xb0\xa7\x0e\xe5\x6f\xff\x12\x5e\x6e\x34\x4f\xdb\xfa\x17\x47\xdf\xc7\xde\xd8\x9c\x95\x3c\x9e\xb0\x9a\x9a\x9a\xdb\x4d\x93\xd7\x17\x3f\xd8\xef\xfe\x44\x3d\xf9\xd1\x38\x3d\xa9\x64\xc3\x64\xd1\x9e\xbe\x15\xbe\x13\xef\xb2\xc3\x48\xf2\x3a\x19\x4d\x53\x89\x16\x92\x23\x56\xa9\x11\x99\xa6\xba\x02\xec\x2a\x57\x1b\x39\xec\xac\xe7\x9f\x2a\xed\x88\x5c\x12\xe3\xc1\x45\xaa\x03\x2f\xb5\x4e\xbc\x5c\x3a\x8d\xce\x3a\x7e\x5a\xb4\xa3\x6f\xc5\x75\xdc\x45\xf2\x8b\x7a\x9f\xc5\x59\xc7\x9b\x44\x1b\x0c\xc1\xe3\xff\x54\xef\x6f\x38\xeb\xb8\x24\xf4\xaf\xe3\xf1\x7f\xab\xf7\x51\x9c\x75\x1e\xef\xb8\x78\x91\x8b\x50\x2d\x8e\x17\x3a\xeb\xf8\xe3\x42\xff\x06\x1e\xdf\xa6\xde\x57\x71\xd6\xf1\xaf\x3c\xae\x4b\x2f\xd2\x51\x78\x5d\x5a\xc7\x17\x79\x5c\x97\x5e\x24\x2f\xaa\xd7\xd3\x0a\xaf\xd0\xff\xb8\x13\xef\x3a\xb7\x3d\x3f\x74\x3a\xae\xe8\x8f\xf4\xd4\x87\x4f\xdc\xfa\x23\x3d\xf5\x95\xf3\xe2\xdd\xae\x3a\x71\xaf\x4a\xdc\x6b\x54\x8e\xb7\xab\xf7\x7b\x5e\x74\xd6\xf1\x10\xa1\xff\x35\x1e\xf7\x53\xd7\x11\x9d\x75\xfc\x17\xa1\xff\x77\xb4\x5f\xbd\xbf\x1e\xe4\xac\xe3\xff\x12\xfa\x57\xf1\xb8\x7a\x9f\x7c\x84\xf3\x01\xbe\x46\x99\x1f\x91\x71\x6a\x5d\xc0\x1f\xda\x1b\x30\x76\x37\x60\x1f\x52\x74\x9e\x51\xe6\x3e\x64\x3c\xea\xec\xec\xa6\x23\xde\x5f\x16\xd7\xe7\x13\x45\x9f\xea\x05\xc0\x93\xf8\x18\xe8\xa7\x7e\x5b\x4e\xdb\xf1\xcb\xf4\xc4\x87\xa8\xdf\xd1\xd0\x68\x06\x88\xaf\xb1\xcd\x06\x4a\xfb\xd3\xf4\xfe\xfd\xfb\xeb\xfb\x0f\x1d\x1a\x14\x14\x14\x34\x2a\x38\xd0\x57\x3b\x38\x94\x04\xf7\x0d\x76\x7d\xbc\x36\xd8\xf5\x19\x36\x12\x14\xec\xfa\x64\x2f\xdd\xe0\xfc\x2b\x99\x64\xad\x29\x8c\x8f\x2b\xac\xb5\xde\xb9\xbd\x65\xcb\x4b\x24\x52\x39\x34\x66\x5a\xdc\x3d\x03\xe3\xa6\x8e\x61\xfa\xa7\x23\xb3\x97\xa6\x4d\x78\xe2\xe1\x18\xa6\xaf\x59\xb1\xc2\x39\xd9\xb9\x7e\x48\x94\x71\x98\xde\x14\x1b\x8c\xdf\xbf\x9b\xa2\x91\xfe\xbb\x8d\xfd\x7e\xc3\x46\x7d\x77\x1b\xa3\x99\x87\x8d\x53\xae\x13\x5f\xc7\x0b\xcb\xc4\x6f\x51\x3b\xc7\xbd\xf3\xce\x4b\xd7\xaf\x13\xdf\x8c\x85\x13\xf5\xfa\x89\x0b\x33\x78\xe6\x7f\xc6\xda\x77\x59\x73\xeb\xcb\x1f\xe4\x99\x35\x7f\xf9\xcb\x9d\x0f\xef\xbc\x1b\x9e\x31\x2f\x31\x21\x3f\x4d\xfd\x6d\xda\xff\x1f\xd8\x48\xc4\xf3\x2a\x11\x1a\x09\x7a\xc0\xc8\xa4\x61\x5a\xf7\x37\xee\x40\xa3\xe1\x39\xc0\x79\x3f\x25\xea\xf5\x77\x7d\xe2\x2e\xd0\x4b\x3b\x48\xfd\x75\x21\xf1\x85\xbb\xbe\xc1\x41\xc1\x74\xa9\xf3\x87\xd3\xa7\x4e\xb1\xc7\xef\x3c\x48\xfc\x68\xcb\x9d\x69\xb4\xa5\x86\x96\xd4\x3a\x43\x81\xb4\xff\x02\xa0\xb4\xf3\xbb\x61\x0f\xf8\x4d\xec\x25\xce\x9f\x4e\x9f\x39\xc3\x2a\xee\xa4\x12\x2f\xf2\xa9\x33\x98\x7c\x5a\x43\x5e\xad\x73\xbe\x0b\x04\x7c\x00\xf8\xeb\x1a\x09\xfa\x40\x5c\x52\x74\x2f\x02\x5e\x64\xa2\x86\x30\x2d\xa1\x5e\x8c\x5a\xc1\x4b\x8c\x17\x56\x6f\xa2\x94\xc0\x47\xfd\xfa\x6c\x9f\xde\x41\xae\x0f\xf5\xf9\x6a\xef\x75\x7f\xa8\x4f\x69\x97\xe2\x67\xce\xc4\xa7\x68\x83\x8f\xbc\x74\xe2\xc4\x4b\x24\xd0\x79\xbd\xd3\x07\x69\x79\x51\x8d\x24\xd5\x38\xff\xe8\xfa\x28\x2d\x69\xff\x1e\x80\x2f\xd7\x02\xf4\x51\x6a\xb6\x57\x00\x61\xa0\x25\x13\x39\xa1\x1a\x42\xb4\x94\x58\x81\x31\xc8\xf1\x22\x00\xfd\x95\xf1\x60\xc0\x24\x91\x14\xbf\xd5\xa6\xfc\xeb\xe5\xad\xd4\x6c\xc7\xf7\x09\xa3\xfb\xea\x5d\xbf\xdb\xa6\x5d\x7d\xfa\xad\xb7\x4e\xdf\xb8\xf1\x18\xc9\xbf\xec\x9c\x48\x7e\xfa\x86\xfc\xf4\xb4\xb3\x8a\xff\xb1\xa6\xa9\xa9\xe6\xce\x96\x95\xa4\xc0\x39\xee\xce\x9a\xf6\x76\x68\x70\x56\xf1\x2f\x5c\xf7\xb9\x61\xa4\x7a\x9f\x9b\x78\x41\x00\xcd\x6d\xbf\x04\xbd\xdc\xf7\xbb\x45\x47\xbf\x84\xf7\x7c\x9c\x55\xfc\x33\xd7\x7d\x64\x18\x01\x7b\x6e\x26\x8b\x1c\x8f\xb4\x5f\x12\x57\x85\xe2\x5e\x84\x3b\x03\x60\x6c\xab\xe2\xef\xbb\x62\xb6\xd0\x9e\xde\x8e\xcf\xe9\xb5\xbb\x9e\xd3\x13\xb8\xae\xf8\xed\x46\xec\xac\xb3\xd5\x59\xa5\xa1\x02\x67\x34\xea\x3c\xd9\x4d\x67\x8d\xb3\x8a\x7f\x29\x70\xfe\x85\x3a\xd6\x6e\x3a\xa3\x15\x1d\xd7\xda\xe1\x5d\x74\xe2\x9d\x55\xfc\x53\xd7\x3a\xa2\xd0\x99\xdd\x59\x07\x88\xeb\x1e\x0f\x04\xc0\xfd\x49\x23\x7c\xc5\xef\x79\x76\xb4\x50\x0d\xf1\x68\xf9\xbd\x3a\x5a\xa7\x9e\xe9\x99\x3e\x56\x34\x95\x68\x12\xcd\x76\x7e\xc5\x5a\xd8\x97\x7b\x9d\x2b\xfe\x46\x26\x91\xf4\xb7\x9d\x4f\xee\xa7\xbd\xee\x7c\x47\x7b\xd5\x30\xaf\x3b\xc3\xe9\x87\xb7\x7f\x02\xe2\xba\x77\x04\x81\x10\x9a\x34\xca\x4f\xf0\x28\xe8\x03\x26\x69\xdd\xbf\x69\xd8\x5f\x61\x1a\x48\xd2\x83\xfa\xb8\x99\x34\xd8\x38\x49\xb4\xfa\x8b\x58\xd1\xac\xf5\x1f\xa7\x3f\x79\xd1\x39\xfb\x65\x32\x6d\xc0\x40\xf2\xd0\xcb\xce\x47\xcf\xf8\x39\x17\x90\x6d\x35\xec\xd8\xed\xeb\x56\x2b\x0b\xbc\x9d\xa5\x7e\x4f\x12\x9f\x2d\x80\x20\x18\x9d\x64\xe8\x41\xb8\x46\xfd\x4d\x28\x2f\x57\xec\xc9\xd3\x12\x25\xe6\x50\xd2\x51\xb8\x5e\x41\x81\xa2\x3d\xea\xd5\x5f\xb3\xf2\x28\xe0\xb1\x66\xb2\xf6\x7d\xe7\xcb\xce\xdf\x7f\x48\xaa\xdb\x0e\x38\xab\x3f\x20\x71\x64\xcc\x25\x67\xf5\x6e\xba\xe7\x4e\x1e\x4d\xb9\x73\x9a\xee\xa9\xa1\x8f\xdf\x79\x8d\x3e\x70\xe7\x19\x20\xae\x7b\xf4\xff\x9d\x7b\xc0\xff\xc8\xdd\xb0\x8b\x14\xbf\xe7\x7c\xd7\xf9\xee\xfb\xa4\xf8\x85\x43\xce\xa3\xef\x91\x21\x24\xf8\x03\xe7\xd1\xf5\xe4\xb2\xf3\x3e\xb2\xcb\x59\x40\x2e\xd7\x90\x57\x9c\x76\xb2\xc9\x39\xde\xf5\xec\x15\x7f\x88\x6a\xe1\x0c\xb8\xee\xed\x8c\x13\xed\x64\x14\xa8\xef\x52\x7d\xe4\x7c\x12\x9f\x2f\x7d\x12\xdb\x49\x06\x5d\xcb\xd7\xb1\xa1\x90\x4a\x56\xb7\x57\x00\x4c\x8d\x4e\x52\x7f\x9f\xe1\x4a\xfb\x0f\xf4\x82\x46\x02\x06\x3d\x61\xa9\xfa\x0b\x17\x7d\x5d\x3f\xa6\x35\xd6\xfd\xc5\xab\x71\xcc\xf5\xdb\x16\xbf\x72\xd2\xc2\x5c\xbf\x6a\x71\x97\x9c\x77\xc9\x94\x93\x93\x73\x72\x98\x1e\x7f\xc6\x4d\x1f\x14\xcd\x3c\x3e\x24\x41\xdb\x4e\x9f\xbe\x90\x98\x98\xf8\xc0\x03\x89\x89\x89\xe4\xef\xec\x83\x9f\x5b\x23\x92\x92\x22\xc2\xc7\x8f\x07\x22\xc6\xed\xe4\xed\x1f\x3f\x3b\xe2\xd1\x9e\x63\x7f\x00\x3f\x6f\xf1\x85\xdb\x57\xaf\x07\x85\x2b\xf2\xad\x95\xcf\x3f\x7c\x5b\x73\xe7\x5d\xaf\x3a\xef\x0a\x00\xf0\x01\x8a\x9f\xc0\x25\x00\xde\x79\x77\xde\x05\xf0\xd9\x71\x5b\x73\xab\xdc\xab\x4e\x20\x79\xfc\xe3\xc0\x65\x4c\xc9\xae\x8d\xe4\x71\x19\xc6\x71\x19\x1a\xb8\x0c\x06\x2e\xc3\x02\x2e\x93\xef\xb8\x4c\x6c\x5c\x26\x49\x5c\x86\x7a\x2e\xc3\x62\xa1\x77\x11\x2e\x71\x99\x5c\xe7\x32\xdc\xe6\x32\x6c\xe2\x32\xbc\xc9\x65\x98\xce\x65\x98\xc3\x65\x98\xc4\x65\xf8\x1d\x97\x61\x1d\x97\xa1\x8c\xcb\xd0\xca\x65\xd8\xc6\x65\x3a\x94\xcb\xe4\x0a\x97\x95\xeb\x1b\x38\xca\x65\x68\xe3\x32\xfc\x81\xcb\xa0\x60\x4f\xe1\x32\xb4\xa8\x9c\xb0\x93\xcb\x70\x12\xcf\x15\x20\xce\x31\x2e\x43\x1e\xea\x9c\xe3\x32\x6c\xe5\x32\x6c\xe0\x32\xcc\x47\x3d\x85\xf7\x05\x2e\xc3\x22\x2e\x43\x3a\x97\x61\x2d\x97\x21\x95\xcb\x90\xc6\x65\x98\x89\xe5\x2a\xe7\x32\x51\xb8\xbf\xe2\x32\xd9\xa6\x4a\x85\x8b\xec\xe5\x32\xec\xe2\x32\x1c\x47\x4c\x25\xef\x73\xfc\x22\xd4\x72\x19\xaa\x91\xfb\x0d\x2e\xc3\xdf\xb8\x0c\x12\xa6\x1f\xc1\xe3\x4b\xb1\x2c\xd5\x5c\x26\x69\x88\xb1\x9e\xcb\x70\x02\xed\x8d\xe0\x32\x94\x72\x19\xcc\xaa\xff\x88\x89\xcb\x74\xb0\x2a\x95\x73\xe4\x06\x97\x61\x0b\x97\x61\x21\x97\x61\x1e\x97\x21\x98\xcb\xa4\x5d\xb5\x99\xdc\xc7\x65\x98\xc5\x65\x32\x98\xcb\xf0\x0e\x97\xe1\xf7\x78\x9c\x70\x99\x14\xa9\x36\x93\xb1\x2a\x16\xd9\xc1\x65\x38\xa3\xda\x48\x6e\x71\x99\xc8\x5c\x26\x2b\xb9\x4c\x02\xb9\x0c\xff\x46\x3b\x86\x71\x19\x86\x73\x19\x2e\x70\x19\x74\xe8\x2f\xc5\x47\x4d\x5c\x86\xc3\x5c\x86\x50\xf4\x57\x85\x47\xb9\x06\x60\x79\x57\x70\x19\x32\xb9\x0c\xa7\xb9\x0c\x63\xf0\x98\x52\xd6\x53\x5c\x86\xc9\x5c\x86\x70\x2e\x93\xf3\xd8\x46\xf2\xd5\x76\x22\xfc\x78\x02\x7d\xa6\xb4\x81\x3f\x72\x99\x28\x65\x7e\x40\x2d\xb7\x62\x33\x51\x7c\x55\xc5\x65\xf8\x91\xcb\xe4\x28\xcf\xba\xfd\x3a\xcf\xba\x53\xc8\xb3\x6e\xaf\xe6\x59\x77\x72\x78\xd6\x6d\x0d\xcf\xba\x33\x92\xcb\xf4\x7e\x2e\x93\xde\x5c\xa6\x11\x68\x77\x38\xd6\x7d\x1c\xb6\xbf\x06\x6c\x6b\x16\x2e\x83\x8d\xcb\x60\xe5\x32\x3c\x85\x75\xa4\x94\x71\x09\xda\x53\xc9\x65\x68\xe4\x32\xbc\x84\xb6\x27\x62\x39\x72\xb8\x0c\x07\x50\xaf\x04\xcb\xbe\x07\xeb\xce\x8a\x65\xac\x45\x3e\x85\x3b\x04\xf1\x87\x70\x19\x9e\xe6\x32\x98\xd0\x06\x65\x4b\xe1\x32\xdc\x8b\x98\xca\xfe\x68\xf4\xed\x41\x2e\xc3\x11\x2e\xc3\x13\xb8\x45\x71\x19\x36\xa2\xff\xcb\xd1\x67\xc9\x88\xab\xd8\xf8\x22\xf2\x05\x89\xf6\xa8\xda\xa7\x1c\x8f\xe7\x32\xac\xc1\x7d\x65\x2b\xc4\xfa\x6a\xc6\xbe\xf2\x14\xf6\x83\x44\xc4\x3f\x80\xc7\x16\xaa\xe5\x68\xff\x27\xb6\xf3\x11\x5c\x86\x95\x5c\x86\xc1\xa8\xa3\xf4\xbd\x47\x71\xff\x09\xec\x87\x23\xb1\xff\x2c\x44\xff\x2a\x7d\xbc\x08\xdb\x82\xd2\x67\x5f\xe7\x32\x7c\x82\x75\xae\xf4\x89\x81\x78\xdc\x82\x76\xce\x47\xdb\x1e\xc2\xf6\xbd\x10\x39\x6a\xb0\xdf\x2e\x52\xc2\x18\x00\xdc\x06\x20\x7f\x02\x50\xae\x8c\x9c\x5f\x01\x40\x06\x9e\x3f\x8a\xb1\xe0\xa4\x47\x9d\x29\x75\xba\x9f\xcb\x10\xc6\x65\x48\x40\xdf\x95\x62\xbd\x39\xd0\x1f\xb3\xb1\xfc\x31\xe8\xf3\xcd\x5c\x86\x2f\xb0\xcc\xca\x76\x1e\xdb\xa6\x82\xfb\xbc\xda\xcf\x44\x4c\x51\xfc\x6a\x44\x1c\x2b\xda\x6d\xc3\xb2\x64\xa2\xae\x12\xeb\xfa\x60\xbd\xda\xb1\x4d\xad\xc7\xb6\x9f\x8e\x7d\xa8\xb8\x23\xae\xfe\xcf\x9b\x92\x2f\x43\x6d\x27\xe4\x1a\xf6\xe1\x33\x5c\x26\x7f\x55\x63\x0b\x09\xe3\x32\x19\x8d\xed\xe4\x31\xec\x3f\xb3\xb9\x4c\x7c\xd4\x76\x42\xaa\x71\x0b\xe5\x32\xe9\xc9\x65\x32\x09\xeb\xea\x49\xdc\x14\xfc\x8f\xd5\xbc\xa2\x2e\xea\xb0\x4c\x51\x18\x1b\x94\x38\xbc\x9c\xcb\x70\x88\xcb\x10\x8d\x31\x41\xf1\x61\x2c\x97\xe1\x16\xb6\xad\xc3\x18\xdb\x5f\x51\xcb\x4c\xc2\xd1\x76\xc5\xdf\x3d\xd5\xfa\x21\x63\xb8\x4c\x82\x70\x6c\x08\xe4\x32\xf1\xc3\x7e\xff\x13\xb6\xe7\x37\xb1\xbe\x5e\xc4\x7a\x50\xe2\xf0\x32\x6c\x6f\x1f\x70\x19\xb6\x63\xdd\xbc\x85\xc7\x5e\xc1\x76\x3a\x07\xdb\x73\x15\xb6\x35\x25\x0e\xcc\xc0\x7a\xc8\xc5\xba\x7a\x89\xcb\x24\x8b\xcb\x24\x00\xeb\xf6\x35\xac\x53\x05\xeb\x32\xc6\xc8\xb7\xd4\x38\x46\x1e\xe4\x32\x79\x98\xcb\xc4\xc8\x65\x92\xc0\x65\xa2\x57\xc7\x39\x11\x9f\x14\x7b\xc7\xe3\x7e\x2c\x97\xc9\x5b\x5c\x26\x3f\x70\x99\x38\xb8\x4c\xb5\x6a\xfc\x25\xb9\x58\x8e\x36\x35\x1e\x92\x7a\x2c\xdb\x34\x8c\xb1\x0b\xb0\x9d\x1e\x46\x9f\x2b\xe7\x2f\xf2\x37\x84\x1f\x67\x61\x1f\x7c\x5b\xe5\x03\x10\x63\xea\x37\xed\xef\xa8\x9b\xe8\x47\xe9\xd8\xae\xa6\xfc\x97\x6d\x81\x47\xff\x70\x6d\xc7\xba\x6c\xae\x71\xb2\xeb\xb6\xb6\xcb\x36\x0e\xc7\xc1\xbb\x6d\x1b\x30\x0e\x79\x6e\x6f\x74\xd9\x5c\x63\x62\xd7\xed\x44\x97\xcd\x8c\xdb\x14\xc4\xee\x2a\x17\x20\xdf\xdd\xe4\x4e\x4d\xbe\xb0\xf9\x24\xda\xf1\x5b\xb2\x00\xc7\xf2\xbb\xc9\x75\x1e\xfe\x7a\xe3\x37\x64\x1e\x8e\x69\x2d\x28\xcf\xe1\x39\xb7\xd4\xe4\xa3\x3c\x2c\xe4\x06\x8f\x7a\xf0\x90\xed\xa7\x3d\xe2\x63\x57\xf9\x02\xce\x27\x5e\xc0\x31\x5c\x91\x7d\x30\xae\x1f\xff\x1f\xa4\xab\xed\xa4\x63\x5f\x51\xd3\x3f\x08\xe9\x1a\x97\xff\x57\x99\x86\xf3\x87\x71\x58\x67\x38\x97\x12\xed\xb9\xab\xd4\xe1\x58\x97\xaa\x96\xa3\xfd\x2b\x75\x13\x36\xc4\xfd\x97\xad\x14\x63\x81\xe7\xf6\x41\x97\xcd\x15\x07\xba\x6e\x2f\x74\xd9\x1e\xfa\x15\x6c\xcf\xed\xc5\x5f\xe1\x3a\x8f\x31\xc8\x73\xdb\xf9\x2b\x36\x78\xc6\xa7\x93\x18\x4b\x5c\xdb\x2b\x1e\x9b\xa7\x7d\x1b\x3d\xb6\xaa\x2e\xdb\x23\x1e\xb1\xec\xd7\xb6\xd1\x58\x1e\x8c\x6d\xee\x6d\x8a\x26\x12\x7a\x6a\x22\xdb\xef\x68\x22\xdb\xaf\xf1\xcb\xe0\xa3\x89\x6c\x6f\xe3\x97\x41\x83\x63\xa4\x6b\x3e\x7d\x12\xeb\xc6\xd5\xbe\x5b\x7e\x65\xee\x9c\x8e\x75\x3a\x13\x75\xc6\xe1\x7c\x61\x2d\xce\x37\x4e\xe1\x5c\xe8\x34\xb6\xcd\x33\xd8\x07\x4a\x3d\xce\x2d\x45\x39\x19\x39\x5d\x73\xf1\x63\x1e\x7d\xe6\x30\xf2\x87\x7a\xd8\xf7\x02\xea\x37\xa0\x5d\xeb\xd0\xae\x06\xb4\x6d\x01\xda\x67\x41\xfb\x76\x79\xcc\x85\x5c\x73\xd4\x0d\xd8\x2e\x4b\xf1\xdc\x8b\xd8\x07\xde\xf0\x98\xb7\x37\xa2\x8e\xab\x2d\x77\x95\xd8\xb6\xc5\xf5\x4e\x9e\xcf\x0e\x71\x9d\x22\xa9\x63\xb0\xb0\xeb\x91\x8e\xd8\xd4\xbe\xc6\xc3\x66\x97\x2d\xae\x39\xe7\x40\x1c\x2f\x73\xf0\x9c\x2b\x5e\x8d\xc3\x3e\x71\x0c\xe7\x86\x41\x98\xee\x1a\xf7\x5c\xfd\xc7\x15\xb7\x66\xe1\xdc\xb9\xd5\x23\x9f\x0b\xbb\x01\xb9\x5d\xd2\x15\x3b\x5c\x73\x31\x97\x2c\xc7\xfa\x0c\x45\x1f\x74\x95\x47\xd0\xef\xae\x36\x3a\x13\x7d\xb9\x16\xdb\x5f\xfc\xdd\xe3\x74\xfb\x6d\x2e\xb7\xdf\xfa\x2f\x71\xfc\x7f\x95\xbf\x11\xbf\xdb\x6f\x70\xb9\xfd\xfb\xff\xa2\xd7\x35\x4e\xdf\x2d\xae\x02\x97\xdb\xbf\xfd\x2f\xe7\x5d\xd7\x2e\xbf\x25\xff\xdf\xc6\x50\x97\xf4\x8c\xa1\x1d\xf2\x1b\x58\x2b\x36\xb5\x8f\x34\x62\x7d\x1c\xc0\xb6\x5f\xe8\x51\x27\xae\xba\x72\xc9\x17\xb0\xbd\xbb\xda\x86\x6b\x7e\xab\xf8\xa1\x17\x97\xdb\xdf\xc1\xed\x0e\x97\xdb\x7f\x51\xe2\x04\xbf\x2c\xfc\xd8\x00\x07\x60\x1d\x1c\x80\xad\xb0\x06\x46\x43\x3c\x8c\x83\x54\x98\x09\xa5\xb0\x16\x82\x20\x43\x2c\x21\x5c\xe9\xb4\x60\x10\x07\x4d\x64\x08\x39\x4d\x0b\x68\x35\x3d\x43\xaf\xb1\xc1\x6c\x02\x2b\x64\x2b\x59\x0b\x7b\x95\xf7\xe3\x51\x7c\x05\xff\x51\x13\xa2\x59\xad\xb9\xa5\x1d\xac\x6d\xf0\xea\xe7\x35\xca\x6b\xac\xd7\x0c\xaf\x65\x5e\xdb\xbd\x8d\x3e\x03\x7c\x26\xf8\xb4\xf9\xf6\xf1\xcd\xf6\x7d\xd6\xf7\x98\x5f\x3f\xbf\xf1\x7e\x85\x7e\xf5\x7e\x17\xfc\xbe\xf6\xd7\xf9\xa7\xf8\x1f\xf4\xbf\xda\x63\x46\x8f\xfa\x80\xc0\x80\xa8\x80\xd2\x80\xf5\x01\x67\x02\xae\xf5\xec\xd5\x73\x7c\xcf\xbc\x9e\x4b\x7b\xee\xe9\xf9\x4a\xcf\x8f\x02\xb3\x03\xdf\x0c\xca\x0b\x3a\xd3\x2b\xa9\x57\x7d\xaf\x2b\xbd\x9f\xed\xfd\x66\x9f\x80\x3e\xb9\x7d\xea\xfb\xbc\xd7\x37\xa5\xef\xd6\xbe\x9f\xf7\xcb\xec\xf7\x7a\xff\xa1\xfd\xd7\xf7\xff\x68\xc0\xb0\x01\x13\x07\xac\x18\x20\x0d\xb8\x79\xcf\x90\x7b\x16\xdd\xb3\xfe\x9e\x2f\x07\xc6\x0c\x2c\x1b\x78\x69\xd0\x98\x41\x67\x07\xf3\xc1\x21\x83\x2f\x0c\x76\xde\xbb\x7e\x48\xc4\x90\x09\x43\x96\x0c\xf9\xf9\xbe\x5e\xf7\xcd\xbe\x6f\xb3\x2e\x40\x57\x1d\xec\x1d\x3c\x27\x78\x75\x70\x4b\xf0\x97\x43\x61\x68\xfa\xd0\x59\x43\x17\x0d\xdd\x3c\xf4\x98\x3e\x44\x5f\xa6\xdf\x3e\x6c\xe0\xb0\x82\x61\x57\x86\x6f\x1d\xe1\x3d\x22\x7d\xc4\xcb\x23\x07\x8c\x9c\x3d\x72\xe5\xc8\xb7\x47\x65\x8e\x5a\x36\xaa\x65\xd4\x8f\xf7\x27\xdd\xdf\x12\x32\x3b\xe4\x5a\xe8\xd0\xd0\x15\x06\xad\x61\xae\xe1\x54\xd8\x80\xb0\x69\x61\xa7\xc2\x2e\x85\xdd\x0e\x0f\x0f\xcf\x08\xdf\x1c\x7e\x7e\xb4\x6e\xb4\x71\xf4\xe6\xd1\x4d\xa3\x5f\x1e\x7d\x3e\x82\x46\x0c\x8b\x48\x89\xc8\x8d\xd8\x13\x71\x30\xe2\xd5\x88\xab\x91\x33\x22\x17\x45\x1e\x8c\x3c\x17\x79\x3b\x6a\x5a\xd4\xf6\xa8\xeb\xd1\x8d\x31\x09\x31\x79\x31\x9f\xc5\xce\x8a\x3d\x16\xeb\x8c\x2b\x88\xdb\x13\xdf\x96\x30\x2a\xa1\x2a\xe1\xcb\xc4\xa4\xc4\xcd\x89\x6f\x8f\xe9\x33\x66\xd1\x98\x57\x1e\x18\xf1\xc0\xcb\x63\xc7\x8c\x6d\x18\x37\x7e\x5c\xc3\x78\x18\x3f\x77\x7c\xf3\xf8\x77\x1e\x1c\xf2\x60\xee\x83\x0d\x49\x03\x93\x92\x92\x1c\x49\x27\x93\x3e\x4b\x1e\x9a\x9c\x91\xbc\x2a\xf9\x82\xb1\x9f\x31\xdb\x78\xc6\x14\x65\x5a\x66\xfa\xd1\x9c\x69\x2e\x35\x9f\x34\xdf\xb2\x94\x59\xb6\x5b\xce\x59\x9c\x29\xa3\x52\x32\x53\xca\x52\x36\xa7\x5c\x4f\x1d\x98\x9a\x95\xba\x3c\xf5\x44\xea\xed\x09\x29\x13\x56\x4f\xb8\x96\x96\x97\x76\x6c\xe2\x80\x89\xcb\x26\x5e\x9a\x14\x32\xc9\x31\xa9\x61\xd2\x8d\xf4\xa4\xf4\xad\x0f\x99\x1f\x7a\x3b\xc3\x3b\x23\x29\x63\x55\xc6\xf9\xc9\xc3\x26\x2f\x9f\x7c\x29\x33\x2e\xf3\xd5\x29\x99\x53\x5e\xcd\x1a\x9a\x35\x3f\xeb\xec\xd4\x89\x53\xaf\x4e\xdb\x33\xdd\x31\x63\xd8\x8c\x1f\x67\x2e\x9a\xf9\x63\xf6\xb4\xec\xb6\xec\x1b\x39\xe9\x39\xb5\x39\x6d\x39\xaf\x3f\x9c\xf5\xf0\x67\xb3\xa3\x66\x37\xcf\xbe\x38\xfb\xc6\x23\x31\x8f\x2c\x79\xe4\xcc\x23\xce\x39\x31\x73\xe6\xcf\xd9\x31\xe7\xf5\x47\x03\x1f\x9d\xf5\xe8\xa5\xdc\x69\xb9\xd5\xb9\x67\xad\x21\xd6\x7a\xeb\x67\x79\x33\xf2\x5e\xcf\x0f\xc8\xcf\xca\xdf\x95\x7f\xa5\x20\xbd\xa0\xde\xe6\x6f\x1b\x6a\x4b\xb0\x2d\xb7\xdd\x9c\xeb\x98\xfb\xe5\xbc\x89\xf3\x4e\x17\x0e\x2b\xac\x2d\xea\x55\xb4\xa2\xe8\xea\xfc\xf4\xf9\xcd\xf3\x7f\x5c\x90\xb4\xe0\xcc\x5d\xff\x9f\x5f\xf0\xce\x82\x2b\xc5\xda\xe2\x11\xc5\x29\xc5\x59\xc5\xb9\xc5\xa5\xc5\xf5\xc5\xaf\x97\x78\x97\x24\x94\xa4\x94\x64\x97\x1a\x4a\x33\x4b\x97\x96\x56\x97\x9e\xb5\x0f\xb6\x57\x97\x85\x94\xd5\x2e\x1c\xbc\x70\xee\xc2\x57\x16\x7e\x57\x1e\x51\x3e\xa1\xbc\xa0\x7c\x45\x79\x6d\xf9\x8d\x0a\xef\x8a\x90\x0a\x73\x45\x6e\xc5\x67\x8e\x7e\x8e\xe5\x8e\x83\x8e\xb3\x8e\x4b\x95\xb4\x72\x70\xe5\xe0\x45\x74\xd1\xec\x45\xf5\x8b\xae\x2c\x1e\xb6\x78\xc6\x62\xc7\xe2\xcd\x8b\xcf\x2e\xfe\x68\x89\xff\x92\x45\x4b\x2e\x3c\x16\xf0\xd8\xd8\xc7\x0a\x1e\x7b\xe5\xb1\xab\x4b\xfb\x2c\x9d\xb8\x74\xd1\xd2\xcd\x4b\xcf\x2e\xbd\xf2\x78\xdc\xe3\x9b\x1f\xbf\xb4\x2c\x6b\x59\xf9\xb2\x63\xcb\xde\x79\x82\x3e\x11\xf5\x44\xf6\x13\x2b\x9f\x38\xfb\xc4\x3b\xcb\x03\x97\x17\x2f\xdf\xb8\xfc\xed\x27\x87\x3e\x39\xe6\xc9\x63\x4f\x3a\x57\xc4\xad\x98\xb8\x62\xd1\x8a\x33\x2b\xae\x3f\x15\xf1\xd4\xa2\xa7\xd6\xaf\x8c\x59\xb9\x74\x65\xf5\xca\xf3\x2b\xaf\x3e\x1d\xf3\x74\xc6\xd3\x4b\x9f\x6e\x59\x95\xb4\x6a\xee\xaa\xea\x55\x27\x56\x9d\x59\xf5\xea\x33\xde\xcf\x4c\x7b\x66\xd7\x33\x17\x9e\xf5\x7d\x76\xcc\xb3\xd3\x9e\xbd\xf0\x5c\xc8\x73\x8b\x9e\xbb\xf6\xdc\xcd\xe7\x6e\xaf\xe6\xab\x67\xac\x6e\x5a\xe3\xbd\x66\xcc\x9a\xda\x35\xcd\x6b\xce\xac\xb9\xb8\xe6\xb3\x35\x37\xaa\x78\x55\xbf\xaa\xa1\x55\x31\x55\x29\x55\xd9\x55\xf3\xab\x96\x55\xad\xaf\xaa\xaf\x6a\xab\x7a\xb5\xea\xbd\xaa\xaf\xab\x7e\x5e\xeb\xbf\x76\xc8\xda\x88\xb5\xc6\xb5\xd3\xd6\xce\x5d\xbb\x64\xed\xea\xb5\x3b\xd6\xb6\xac\x7d\x79\xed\xc5\xb5\x9f\xac\xfd\x6e\xed\xcf\xd5\xbe\xd5\x03\xab\x43\xaa\xc7\x54\x4f\xac\x9e\x51\x5d\x58\xbd\xa4\x7a\x75\x75\x6d\x75\x53\xf5\xa9\xea\xd7\xab\x2f\x55\x5f\xad\xfe\x79\x9d\xef\xba\x81\xeb\x0c\xeb\xc6\xae\xcb\x58\x37\x67\x5d\xd9\xba\x15\xeb\xde\x5f\xef\x58\xff\xec\xfa\xda\xf5\xcd\xeb\xcf\xac\xbf\xb8\xfe\x93\xf5\xd7\x37\xc0\x86\x5e\x1b\x86\x6d\x88\xdb\x90\xb2\x21\x7b\x43\xe1\x86\xa5\x1b\xaa\x36\x7c\xb6\x31\x77\x63\xf9\xc6\x95\x1b\xb7\x6e\x6c\xdc\x78\x72\xe3\xb9\x8d\xef\x6f\xfc\x7a\xe3\xcf\x9b\x7c\x37\x0d\xde\x14\xbe\x29\x69\x53\xd6\xa6\x82\x4d\x8b\x36\xad\xde\x54\xbb\xe9\xda\xe6\xac\xcd\x05\x9b\x17\x6d\x5e\xbd\x79\xc7\xe6\x96\xcd\x2f\x6f\x7e\x73\xf3\xe7\x9b\x6f\x6e\xd1\x6e\x19\xb0\x25\x64\xcb\xd8\x2d\x19\x5b\xe6\x6c\x29\xdb\xb2\x72\xcb\xd6\x2d\x8d\x5b\xa4\x2d\xaf\x6c\x79\x7b\xcb\x97\x5b\x6e\x6e\xd5\x6e\x1d\xb0\x35\x64\xeb\x98\xad\xe9\x5b\xe7\x6c\x2d\xdb\xba\x62\xeb\xe6\xad\x8d\x5b\x4f\x6e\x3d\xbf\xf5\xd2\xd6\x6b\x5b\x9d\xdb\x02\xb7\x0d\xdd\x16\xb5\xcd\xbc\x6d\xc6\xb6\xbc\x6d\xe5\xdb\x96\x6f\xdb\xb8\xad\x61\xdb\x89\x6d\xe7\xb6\xbd\xbf\xed\xea\xb6\xdb\xdb\xfd\xb7\x0f\xd9\x1e\xbe\x3d\x69\x7b\xd6\xf6\xf3\x35\xa3\x6a\xc6\xd4\x4c\xac\x99\x5d\x53\x5a\xb3\xa2\x66\x73\x4d\x63\xcd\xc9\x9a\x73\x35\xef\xd7\x7c\x5d\xf3\x73\xad\x7f\xed\x90\xda\xf0\xda\xa4\xda\xac\xda\x82\x5a\x47\xed\xaa\xda\xad\xb5\x07\x6b\x4f\xd6\x9e\xaf\xbd\x54\x7b\xad\xd6\x59\x17\x50\x37\xa4\x2e\xbc\x6e\x7c\x5d\x66\x5d\x5e\x5d\x79\xdd\xaa\xba\xad\x75\x07\xeb\x4e\xd5\xbd\x5e\x77\xa9\xee\x6a\xdd\xed\x1d\x01\x3b\x86\xec\x08\xdf\x31\x7e\x47\xc6\x8e\xa6\x1d\xa7\x76\x9c\xdf\xf1\xfe\x8e\xaf\x77\xdc\xda\xe9\xbd\x73\xc0\xce\x51\x3b\x97\xef\x5c\xbf\x73\xcf\xce\x63\x3b\x5f\xde\xf9\xe6\xce\xcf\x77\xde\xdc\xc5\x77\xf5\xd9\x35\x77\xd7\xa2\x5d\xab\x77\xed\xd8\xd5\xb2\xeb\xe5\x5d\x6f\xee\xfa\x7c\xd7\xcd\xdd\xda\xdd\xfd\x76\x8f\xd8\x1d\xb7\x7b\xc2\xee\xec\xdd\xf3\x77\x2f\xdd\x5d\xb5\x7b\xc7\xee\x83\xbb\x4f\xee\x3e\xbf\xfb\xfd\xdd\x57\x77\xff\xbc\xc7\x77\xcf\xe0\x3d\xe1\x7b\x0e\xee\x39\xb5\xe7\xfc\x9e\xf7\xf7\x5c\xdd\xf3\xf3\x5e\xdf\xbd\xfd\xf6\x0e\xdd\x1b\xb3\x37\x65\x6f\xd6\xde\x39\x7b\xe7\xef\x5d\xb6\x77\xd5\xde\xea\xbd\x5b\xf7\xee\xda\xdb\xb8\xb7\x65\xef\x89\xbd\x67\xf6\xbe\xba\xf7\xc2\xde\x77\xf6\x7e\xb4\xf7\xcb\xbd\xd7\xf6\x3a\xeb\x03\xeb\x75\xf5\x11\xf5\x49\xf5\x59\xf5\x05\xf5\xc5\xf5\x8e\xfa\x65\xf5\xab\xea\xab\xeb\x77\xd5\xb7\xd4\x9f\xa9\xbf\x58\xff\x59\xfd\x8d\x7d\x7c\x9f\x63\xdf\xb2\x7d\xeb\xf7\x6d\xdf\xb7\x67\x9f\xb4\xef\x95\x7d\xaf\xef\x7b\x7b\xdf\xa5\x7d\x9f\xef\xbb\xb9\xef\x76\x03\x6f\xf0\x6f\xe8\xd3\x30\xb8\x61\x58\x83\xa1\x21\xa6\x61\x6c\x83\xb9\x21\xbd\x61\x76\x43\x41\x43\x71\xc3\xb9\x86\x8b\x0d\xef\x35\x5c\x69\xb8\xd1\xf0\xf3\x7e\xba\xbf\xd7\xfe\x81\xfb\x47\xec\x8f\xdb\x3f\x61\x7f\xf6\xfe\xf9\xfb\x97\xee\xaf\xde\xbf\x6b\xff\xb1\xfd\x2f\xef\x3f\xb7\xff\xe2\xfe\x4b\xfb\xaf\xed\xbf\xd9\xa8\x6d\x1c\xd0\x38\xac\x31\xa2\xd1\xd8\x38\xad\x71\x6e\xe3\xa2\xc6\xd5\x8d\x1b\x1b\x6b\x1b\x9b\x1b\xcf\x34\x5e\x6c\xfc\xac\xf1\xc6\x01\x7e\xc0\xff\x40\x9f\x03\x83\x0f\x84\x1f\x18\x7f\x20\xe5\x40\xf6\x81\xc2\x03\x4b\x0f\x54\x1d\xd8\x7c\x60\xc7\x81\x96\x03\x67\x0e\x5c\x3c\xf0\xde\x81\x2b\x07\x6e\x1d\xf4\x3e\x38\xf0\x60\xc8\xc1\xb1\x07\x33\x0e\xe6\x1e\x2c\x3b\xb8\xf2\xe0\xe6\x83\x3b\x0e\x36\x1c\x3c\x71\xf0\xd5\x83\xef\x1d\xbc\x72\xf0\xd6\x21\xdf\x43\x83\x0f\x19\x0e\x8d\x3f\x94\x79\x28\xef\x50\xf9\xa1\x55\x87\xb6\x1e\xaa\x3f\xd4\x72\xe8\xc4\xa1\xb3\x87\x2e\x1c\x7a\xff\xd0\x97\x87\x7e\x6c\xf2\x6e\x1a\xd8\x14\xd2\x34\xb6\x29\xbd\x69\x4e\x53\x59\xd3\xca\xa6\xad\x4d\xcd\x4d\x67\x9b\xde\x6e\xfa\xbc\xe9\xe6\x61\x7e\xb8\xdf\xe1\x11\x87\x13\x0e\x4f\x38\x3c\xe7\x70\xf9\xe1\x55\x87\x37\x1e\x6e\x38\x7c\xe2\xf0\xb9\xc3\xef\x1f\xbe\x7a\xf8\xe7\x66\xff\xe6\xc1\xcd\xe1\xcd\x49\xcd\x59\xcd\x05\xcd\xcb\x9b\x37\x37\x37\x36\x9f\x6c\x3e\xdf\x7c\xa9\xf9\x5a\xb3\xf3\x48\xe0\x91\xa1\x47\x62\x8e\x98\x8f\xcc\x38\x32\xf7\xc8\x92\x23\x55\x47\x76\x1d\x39\x76\xe4\xfc\x91\xcf\x8f\xdc\x6c\xe1\x2d\xfd\x5a\x46\xb4\x24\xb4\x4c\x6c\x99\xdd\x52\xda\xb2\xb4\xa5\xba\xa5\xb6\xa5\xb1\xe5\x64\xcb\xf9\x96\x4b\x2d\x57\x5a\x6e\x1d\xf5\x3e\x3a\xf0\xa8\xe1\xe8\xf8\xa3\x99\x47\xf3\x8e\x96\x1e\x5d\x71\x74\xf3\xd1\xc6\xa3\x27\x8f\x9e\x3f\x7a\xe9\xd8\x92\x63\x9b\x8f\x35\x1e\x93\x8e\x9d\x39\x76\xfe\xd8\x3b\xc7\x3e\x3b\x76\xed\xd8\xad\xe3\xfc\x78\xe0\xf1\xc1\xc7\x47\x1d\x8f\x39\x9e\x74\x3c\xfd\x78\xf6\xf1\xf9\xc7\x97\x1d\x5f\x75\xfc\x3d\x69\x94\xb4\x54\x6a\x92\xde\x6b\xed\xd7\x3a\xa3\xb5\xac\xb5\xaa\x75\x57\xeb\xb1\xd6\xb3\xad\x6f\xb7\x7e\xd9\xfa\x63\x5b\x48\x5b\x5e\x5b\x7d\xdb\x27\x6d\x57\xda\x6e\x3d\xcf\xc5\xff\x39\x40\x00\x78\x10\x48\xd0\x0f\xca\x40\x03\x14\x32\x21\x17\x16\x03\xc0\xc7\x7e\x35\xc0\xc4\x7d\x87\x1e\xd0\xa0\xa4\xb8\x0f\x00\xcc\x01\xc0\x34\x81\x7e\x30\x07\xd3\x14\x02\xc0\x81\x69\x06\xe1\xb0\x12\xd3\x1c\xfa\x81\x84\x69\x0d\x4c\x83\x73\x98\xd6\xc2\x30\x32\x10\xd3\x5e\x30\x91\x8c\xc7\xb4\x0f\xf8\x93\xd5\x98\xf6\x83\x3e\x64\x2b\xa6\xfd\x61\x04\x69\xc2\x74\x0f\x98\x4d\x2e\x62\x3a\x00\xa6\xd1\x10\x30\x81\x1d\xca\xe0\x31\x28\x87\x22\x98\x07\x85\xe0\x00\x1d\x44\x41\x04\x44\x42\x2c\xe8\x20\x15\xec\x60\x87\x79\x50\x0c\x36\xd0\x41\x1a\x94\x42\x3e\x84\x83\x0e\x92\xa1\x18\x8a\x41\x07\x59\xee\x5c\x15\x62\xcf\x06\x15\x60\x83\x72\x58\x04\x36\x28\x80\x70\xc8\x02\x3b\xe4\x81\x1d\x1c\x60\x07\x1d\x3c\x04\x76\x28\x05\xbb\xd0\x9b\x07\x95\x50\x0c\x56\x28\xef\xc4\x31\xe6\x2e\x39\xc6\xb8\x6d\xfa\xf5\xf3\x33\x04\x6b\x05\x14\x89\x7d\xa5\x04\xe1\x10\x21\xfe\x27\x42\x02\xc4\xc2\x03\x1e\xa5\x52\xd2\x0e\x70\xc0\x5c\xb0\x42\xa5\xc0\x29\x84\x22\x28\x15\x25\x1f\x05\x8b\x20\x12\xc2\x21\x1a\xee\xef\xc4\xe4\xe2\x09\xeb\x62\xfb\xaf\x5b\xa3\x83\x22\xe1\x0f\xab\x60\x2a\x07\x2b\x14\x80\x0d\x4a\x44\x8e\x05\xa0\x03\x3b\xcc\xed\xe2\xdb\xf0\x4e\x7b\x9d\xcf\xe4\x83\x1d\x4a\xc0\x04\x85\xa2\x8e\x2a\xc0\x01\x45\x60\x15\xa5\x54\xd9\x95\x92\x2b\xfe\x57\xb8\xd3\xa1\x08\xf2\xc1\x06\xa5\xa2\x1e\x0a\x40\x07\x95\x50\x2a\xd8\xcb\x85\x2d\x85\xa2\x1e\x93\xa1\x0c\xac\x90\x8f\x7b\x9d\xf3\x18\x40\x77\x17\x6f\x16\x0a\xaf\x95\xc1\x18\x18\x0d\xa3\x61\xb1\xf8\x1f\x0e\x56\x0f\xac\x70\xb0\x43\x39\xcc\x83\xd1\x50\xdc\x09\xb3\x02\x46\x43\x3a\xa4\x81\x09\x2c\x90\x01\x53\xc1\x02\x61\x88\x89\xf7\xec\xda\xe7\x43\x01\xfc\xca\x3f\x1e\x04\xe2\x37\x39\x81\x81\x06\xb4\xe0\x05\xde\xe0\x03\xbe\xe0\x07\xfe\xd0\x03\x02\xa0\x27\x04\x42\x10\xf4\x82\xde\xd0\x07\xfa\x42\x3f\xe8\x0f\x03\xe0\x1e\x18\x08\x83\x60\x30\xdc\x0b\x43\xe0\x3e\xd0\x41\x30\x0c\x05\x3d\x0c\x83\xe1\x30\x02\x46\xc2\x28\xb8\x1f\x42\x20\x14\x0c\x10\x06\xe1\x30\x5a\xb4\x88\x28\x88\x86\x18\x88\x85\x38\x88\x87\x04\x48\x84\x31\xf0\x00\x8c\x85\x71\x30\x1e\x1e\x84\x24\x48\x06\x23\x98\xc0\x0c\x16\x48\x81\x54\x98\x00\x69\x30\x11\x26\x41\x3a\x3c\x04\x19\x30\x19\x32\x61\x0a\x64\xc1\x54\x98\x06\xd3\x61\x06\xcc\x84\x6c\xc8\x81\x59\xf0\x30\xcc\x86\x47\x60\x0e\x3c\x0a\xb9\x60\x85\xfd\xb0\x0a\x9e\x81\xdf\xc3\x76\xf8\x1a\x9e\x85\xf5\xb0\x16\x76\xc3\x61\x68\x84\x2a\xc2\xe0\x69\xd8\x02\x37\xe0\x7b\x58\x07\x35\xb0\x9a\x70\xf8\x04\xfe\x0d\x7b\xa0\x19\x7e\x80\x9b\xf0\x23\x34\xc0\x46\xb8\x0e\x9b\xe0\x5b\x58\x03\xf5\x70\x15\x4e\xc1\x3e\xf8\x8e\x68\xe0\xef\x44\x4b\xbc\x88\x37\x7c\x0e\x5f\x10\x1f\xe2\x0b\x12\xb4\x12\x3f\x38\x48\xfc\x49\x0f\x12\x40\x7a\x92\x40\x12\x04\xef\xc3\x65\xf8\x10\x3e\x82\x8f\xe1\x33\xf8\x00\x3e\x25\xbd\x48\x6f\xd2\x87\xf4\x25\xfd\x48\x7f\x32\x80\xdc\x43\x06\x92\x41\x64\x30\xb9\x97\x0c\x21\xf7\x11\x1d\x09\x26\x43\x89\x9e\x0c\x83\xbd\x64\x38\x19\x41\x46\x92\x51\xe4\x7e\x12\x42\x42\x89\x81\x84\x91\x70\x32\x1a\x76\x92\x08\x12\x49\xa2\x48\x34\x89\x21\xb1\x24\x8e\xc4\x93\x04\x92\x48\xc6\x90\x07\xc8\x58\x32\x8e\x8c\x27\x0f\x92\x24\x92\x4c\x8c\xc4\x44\xcc\xc4\x42\x52\x48\x2a\x99\x40\xd2\xc8\x44\x32\x89\xa4\x93\x87\x48\x06\x99\x4c\x32\xc9\x14\x92\x45\xa6\x92\x69\x64\x3a\x99\x41\x66\x92\x6c\x92\x43\x66\x91\x87\xc9\x6c\xf2\x08\x99\x43\x1e\x25\xb9\xc4\x4a\xf2\x48\x3e\x29\x20\x36\x32\x97\xcc\x23\x85\xa4\x88\xcc\x27\x0b\x48\x31\x29\x21\xa5\xc4\x4e\xca\xc8\x42\x52\x4e\x2a\x88\x83\x54\x92\x45\x64\x31\x59\x42\x1e\x23\x4b\xc9\xe3\x64\x19\x79\x82\x2c\x27\x4f\x92\x15\xe4\x29\xb2\x92\x3c\x4d\x56\x91\x67\xc8\xb3\xe4\x39\xb2\x9a\xac\x21\x55\x64\x2d\xa9\x26\xeb\xc8\x7a\xb2\x81\x6c\x24\x9b\xc8\x66\xb2\x85\x6c\x25\xdb\xc8\x76\x52\x43\x6a\x49\x1d\xd9\x41\x76\x92\x5d\x64\x37\xd9\x43\xf6\x92\x7a\xb2\x8f\x34\x90\xfd\xa4\x91\x1c\x20\x07\xc9\x21\xd2\x44\x0e\x93\x66\x72\x84\xb4\x90\xa3\xe4\x18\x39\x4e\x24\xd2\x4a\xda\xc8\xf3\xe4\x04\x79\x81\x9c\x24\x2f\x92\x53\xe4\x25\x72\x9a\xfc\x8e\x9c\x21\xbf\x27\x2f\x93\x3f\x90\xb3\xe4\x8f\xe4\x15\xf2\x27\xf2\x2a\x79\x8d\x9c\x23\x7f\x26\xe7\xc9\x5f\xc8\xeb\xe4\x0d\x72\x81\xc8\xe4\x22\xf9\x2b\xb4\xc1\xf3\xe4\x4d\x38\x09\x2f\xc2\xab\xe4\x2d\x38\x01\x2f\xc0\x6b\xb0\x12\x5e\x81\xe7\xc8\xdb\x70\x04\xce\xc1\xcb\xf0\x07\x38\x43\xfe\x46\xde\x21\xef\x92\xf7\xc8\xdf\xc9\xfb\xe4\x03\x72\x09\xaa\xc9\x87\xe4\x23\xf2\x31\xf9\x84\x7c\x0a\xb5\xb0\x03\xea\xe0\x5f\x70\x00\x36\xc3\x2e\x38\x04\x1b\x60\x2b\x6c\x83\x97\xc8\x67\xe4\x32\xf9\x9c\x7c\x41\xbe\x24\xff\x20\x57\xc8\x57\xe4\x6b\xf2\x4f\x72\x95\x7c\x43\xae\x91\x6f\xc9\x77\xe4\x5f\xe4\x3a\xf9\x37\xb9\x41\xbe\x27\x37\xc9\x0f\xe4\x47\xf2\x1f\x72\x8b\xfc\x44\x7e\x26\xbf\x90\xdb\xe4\x0e\x71\x92\x76\x0a\x94\x50\x4a\x19\xe5\x54\x43\xb5\xd4\x8b\x7a\x53\x1f\xea\x4b\xfd\xa8\x3f\xed\x41\x03\x68\x4f\x1a\x48\x83\x68\x2f\xda\x9b\xf6\xa1\x7d\x69\x3f\xda\x9f\x0e\xa0\xf7\xd0\x81\x74\x10\x1d\x4c\xef\xa5\x43\xe8\x7d\x54\x47\x83\xe9\x50\xaa\xa7\xc3\xe8\x70\x3a\x82\x8e\xa4\xa3\xe8\xfd\x34\x84\x86\x52\x03\x0d\xa3\xe1\x74\x34\x8d\xa0\x91\xd0\x42\xa3\x68\x34\xfc\x93\xc6\xd0\x58\x1a\x07\x47\xe1\x2f\xf0\x67\x38\x06\x79\x90\x4f\xe3\xa1\x00\xde\x00\x1b\x9c\x87\xd7\xe1\xaf\x70\x01\x64\xb8\x08\x73\xe1\x6f\xf0\x26\xbc\x05\xc7\x61\x1e\xbc\x07\xef\xc0\xbb\x50\x08\xdf\xc0\x7c\x28\x82\x05\x50\x02\xc5\x50\x4a\x13\xc0\x0e\x0b\xa1\x4c\x44\x29\x25\x86\x2f\x82\xc5\xb0\x04\x96\xc2\x63\xf0\x38\x3c\x01\xcb\xe0\x49\x58\x0e\x2b\xe0\x29\xb8\x06\xa7\x69\x22\x1d\x43\x1f\xa0\x63\xe9\x38\x3a\x1e\xee\x80\x93\x3e\x48\x93\x68\x32\x35\x42\x3b\x01\x6a\xa2\x66\x6a\xa1\x29\x34\x95\x4e\xa0\x69\x74\x22\x9d\x44\xd3\xe9\x43\x34\x83\x4e\xa6\x99\x70\x0b\x7e\xa2\x53\x68\x16\x9d\x4a\xa7\xd1\xe9\x74\x06\x9d\x49\xb3\x69\x0e\x9d\x45\x1f\xa6\xb3\xe9\x23\x74\x0e\x7d\x94\xe6\x52\x2b\xcd\xa3\xf9\xb4\x80\xda\xe8\x5c\x3a\x8f\x16\xd2\x22\x3a\x9f\x2e\xa0\xc5\xb4\x84\x96\x52\x3b\x2d\xa3\x0b\x69\x39\xad\xa0\x0e\x5a\x49\x17\xd1\xc5\x74\x09\x7d\x8c\x2e\xa5\x8f\xd3\x65\xf4\x09\xba\x9c\x3e\x49\x57\xd0\xa7\xe8\x4a\xf8\x05\x6e\xd3\xa7\xe9\x2a\xf8\x12\xfe\x41\x9f\xa1\xcf\xd2\xe7\xe8\x6a\xba\x86\x56\xd1\xb5\xb4\x9a\xae\xa3\xeb\xe9\x06\xba\x91\x6e\xa2\x9b\xe9\x16\xba\x95\x6e\xa3\xdb\x69\x0d\xad\xa5\x75\x74\x07\xdd\x09\xbf\xa3\xbb\xe8\x6e\xba\x87\xee\x85\x2b\xf0\x15\xad\xa7\xfb\x68\x03\xdd\x4f\x1b\xe9\x01\x7a\x90\x1e\xa2\x4d\xf4\x30\x6d\xa6\x47\x68\x0b\x3d\x4a\x8f\xd1\xe3\x54\xa2\xad\xb4\x8d\x3e\x4f\x4f\xd0\x17\xe8\x49\xfa\x22\x3d\x45\x5f\xa2\xa7\xe9\xef\xe8\x19\xfa\x7b\xfa\x32\xfd\x03\x3d\x4b\xff\x48\x5f\xa1\x7f\xa2\xaf\xd2\xd7\xe8\x39\xfa\x67\x7a\x9e\xfe\x85\xbe\x4e\xdf\xa0\x17\xa8\x4c\x2f\xd2\xbf\xd2\x37\xe9\x5b\xf4\x6d\xfa\x37\xfa\x0e\x7d\x97\xbe\x47\xff\x4e\xdf\xa7\x1f\xd0\x4b\xf4\x43\xfa\x11\xfd\x98\x7e\x42\x3f\xa5\x9f\xd1\xcb\xf4\x73\xfa\x05\xfd\x92\xfe\x83\x5e\xa1\x5f\xd1\xaf\xe9\x3f\xe9\x55\xfa\x0d\xbd\x46\xbf\xa5\xdf\xd1\x7f\xd1\xeb\xf4\xdf\xf4\x06\xfd\x9e\xde\xa4\x3f\xd0\x1f\xe9\x7f\xe8\x2d\xfa\x13\xfd\x99\xfe\x42\x6f\xd3\x3b\xd4\x49\xdb\x19\x30\xc2\x28\x63\x8c\x33\x0d\xd3\x32\x2f\xe6\xcd\x7c\x98\x2f\xf3\x63\xfe\xac\x07\x0b\x60\x3d\x59\x20\x0b\x62\xbd\x58\x6f\xd6\x87\xf5\x65\xfd\x58\x7f\x36\x80\xdd\xc3\x06\xb2\x41\x6c\x30\xbb\x97\x0d\x61\xf7\x31\x1d\x0b\x66\x43\x99\x9e\x0d\x63\xc3\xd9\x08\x36\x92\x8d\x62\xf7\xb3\x10\x16\xca\x0c\x2c\x8c\x85\xb3\xd1\x2c\x82\x45\xb2\x28\x16\xcd\x62\x58\x2c\x8b\x63\xf1\x2c\x81\x25\xb2\x31\xec\x01\x36\x96\x8d\x63\xe3\xd9\x83\x2c\x89\x25\x33\x23\x33\x31\x33\xb3\xb0\x14\x96\xca\x26\xb0\x34\x36\x91\x4d\x62\xe9\xec\x21\x96\xc1\x26\xb3\x4c\x36\x85\x65\xb1\xa9\x6c\x1a\x9b\xce\x66\xb0\x99\x2c\x9b\xe5\xb0\x59\xec\x61\x36\x9b\x3d\xc2\xe6\xb0\x47\x59\x2e\xb3\xb2\x3c\x96\xcf\x0a\x98\x8d\xcd\x65\xf3\x58\x21\x2b\x62\xf3\xd9\x02\x56\xcc\x4a\x58\x29\xb3\xb3\x32\xb6\x90\x95\xb3\x0a\xe6\x60\x95\x6c\x11\x5b\xcc\x96\xb0\xc7\xd8\x52\xf6\x38\x5b\xc6\x9e\x60\xcb\xd9\x93\x6c\x05\x7b\x8a\xad\x64\x4f\xb3\x55\xec\x19\xf6\x2c\x7b\x8e\xad\x66\x6b\x58\x15\x5b\xcb\xaa\xd9\x3a\xb6\x9e\x6d\x60\x1b\xd9\x26\xb6\x99\x6d\x61\x5b\xd9\x36\xb6\x9d\xd5\xb0\x5a\x56\xc7\x76\xb0\x9d\x6c\x17\xdb\xcd\xf6\xb0\xbd\xac\x9e\xed\x63\x0d\x6c\x3f\x6b\x64\x07\xd8\x41\x76\x88\x35\xb1\xc3\xac\x99\x1d\x61\x2d\xec\x28\x3b\xc6\x8e\x33\x89\xb5\xb2\x36\xf6\x3c\x3b\xc1\x5e\x60\x27\xd9\x8b\xec\x14\x7b\x89\x9d\x66\xbf\x63\x67\xd8\xef\xd9\xcb\xec\x0f\xec\x2c\xfb\x23\x7b\x85\xfd\x89\xbd\xca\x5e\x63\xe7\xd8\x9f\xd9\x79\xf6\x17\xf6\x3a\x7b\x83\x5d\x60\x32\xbb\xc8\xfe\xca\xde\x64\x6f\xb1\xb7\xd9\xdf\xd8\x3b\xec\x5d\xf6\x1e\xfb\x3b\x7b\x9f\x7d\xc0\x2e\xb1\x0f\xd9\x47\xec\x63\xf6\x09\xfb\x94\x7d\xc6\x2e\xb3\xcf\xd9\x17\xec\x4b\xf6\x0f\x76\x85\x7d\xc5\xbe\x66\xff\x64\x57\xd9\x37\xec\x1a\xfb\x96\x7d\xc7\xfe\xc5\xae\xb3\x7f\xb3\x1b\xec\x7b\x76\x93\xfd\xc0\x7e\x64\xff\x61\xb7\xd8\x4f\xec\x67\xf6\x0b\xbb\xcd\xee\x30\x27\x6b\xe7\xc0\x09\xa7\x9c\x71\xce\x35\x5c\xcb\xbd\xb8\x37\xf7\xe1\xbe\xdc\x8f\xfb\xf3\x1e\x3c\x80\xf7\xe4\x81\x3c\x88\xf7\xe2\xbd\x79\x1f\xde\x97\xf7\x83\xff\xf0\xfe\x7c\x00\xbf\x07\x38\xcf\x98\x9e\x9e\xae\x2d\xb1\xe6\x97\xdb\x4b\x03\xca\x6c\xe5\x45\xf6\x82\x7c\x5b\xa9\xc3\x56\x6e\x2b\xe0\x13\xf2\xac\xe5\x34\x6d\x22\x2d\x9a\xef\xbf\x60\x5e\xb9\xcd\x56\x5a\x6c\x2d\x2d\x28\xca\x67\x96\xd2\x79\xcc\x56\x3a\x4f\x53\x6c\x2f\x9d\x57\xa1\x99\x5c\x68\x2f\x2f\xd5\xd8\xc5\xdf\xe9\xe2\x6f\xa5\xf2\xd7\xab\xb2\xb4\x28\x22\x2a\x3a\x5e\x53\x91\x5f\xb8\xd8\xaa\xee\xa5\x44\xfb\xcc\x2b\xb7\x2e\xb2\xe5\xdb\x4b\xf2\x7c\xac\xf9\x95\x0e\x35\xe5\x28\x2a\x2e\x10\x29\x5e\x68\xb7\x2f\x10\xaa\xd1\x11\x29\xde\x05\x76\x47\x9e\xad\xd8\xbe\x58\xe3\xb0\x97\xda\x2b\x7a\x14\x14\xd9\xca\x6d\x15\x45\x15\x62\xcf\xc7\x5a\x6a\x77\xd8\x8a\x6d\x45\x56\x4d\xaa\xb5\xa4\xc4\xaa\x31\xdb\x8a\x1d\x56\xcd\xb4\x42\x9b\xc3\xaa\x4d\xb7\x96\xe4\x15\x58\x69\x76\x11\xcd\x2c\xd2\x4c\x2d\x9a\x57\x62\x65\x99\x85\x45\x2c\xb3\xa2\x48\x63\x2d\x2e\x2b\xb4\xf2\x3c\x9b\xc3\xaa\x99\x27\xf2\x15\x28\xf9\xbc\x6c\x65\x15\x45\xc5\xf6\x52\xbe\xd4\xe6\xb0\x32\xe5\xa4\x43\x01\xe2\x45\x76\x87\x55\x5b\xac\xa2\x2d\x29\x62\xe5\x85\x76\x6d\x85\x02\x17\xa9\x11\x82\x39\xac\x95\x5e\x95\x6a\x56\x56\x56\x58\xc4\xca\x2a\x8a\x34\xf6\x12\xdb\x3c\xb5\xb8\xd1\xe6\x48\x94\x51\x28\xe3\x84\x8c\x89\x88\x42\x19\x83\x32\x11\x65\x32\x4a\x23\xca\x14\x55\x46\x46\xa2\x44\xfd\x48\xc4\x89\x8c\x47\x99\x80\x12\xf3\x45\x45\xa3\x44\xbd\x28\xd4\x8b\x42\xbd\x28\xe4\x8b\x42\xbe\x28\x57\x3e\x13\x4a\x33\x4a\x0b\x4a\xb4\x23\x1a\xed\x88\x46\xfb\xa3\x91\x27\x1a\xed\x8a\x46\xbe\x68\xe4\x8b\x46\xbe\x68\xe4\x89\x46\x9e\x68\xe4\x89\x46\x9e\x68\xc4\x8f\x41\xdc\x18\xc4\x8b\x41\xbc\x18\xc4\x8b\x41\xbc\x18\xb4\x3f\x06\x71\x63\x10\x37\x06\x71\x63\x10\x37\x06\xed\x8f\x41\xfc\x58\xc4\x8f\x45\xfc\x58\xc4\x89\x45\x9c\x58\xc4\x89\x45\xfd\xb8\x08\x94\x58\xee\x38\x2c\x6f\x1c\xe6\x8f\x8b\x45\x89\x76\xc6\xa1\x9d\x71\x68\x67\x1c\xe2\xc7\x21\x7e\x1c\xe2\xc7\xa1\x9d\x71\x68\x67\x1c\xda\x19\x87\xbc\xf1\x68\x67\x3c\xf2\xc5\x23\x5f\x3c\xf2\xc5\x23\x7e\x3c\xe2\xc7\x23\x7e\x3c\xe2\xc7\x23\x7e\x3c\xe2\xc7\x23\x7e\x3c\xe2\x27\x60\xb9\x12\xb0\x5c\x09\xc8\x97\x80\x7c\x09\xc8\x97\x80\x7c\x09\x58\xbe\x04\xe4\x4d\x40\xde\x04\xc4\x4d\x40\xdc\x44\xc4\x4d\x44\xdc\x44\xc4\x49\x44\x9c\x44\xb4\x2b\x11\xed\x4a\x46\xfd\x64\xd4\x4f\x46\xfd\x64\xd4\x4f\x46\xde\x64\xf4\x6b\x32\xf2\x27\x23\xbf\x11\xf5\x8d\xa8\x6f\xc4\xf3\x46\xd7\x79\xf4\x8b\x11\x79\x8d\xc8\x6b\xc2\x72\x9a\x30\xbf\x09\xf1\x4d\x98\xdf\x8c\xd2\x82\xf6\x59\xd0\xbe\x14\xc4\x4b\x51\xfd\x1c\x1b\x11\x81\x32\x0a\x65\x34\xca\x18\x94\xb1\x28\xe3\x50\xc6\xa3\x4c\x40\x99\x88\x32\x19\xa5\x0b\xd7\x84\xd2\x8c\xd2\x82\x52\xf5\x73\x6c\xa4\xe0\x8d\x8a\x88\x70\xc9\x48\x94\x51\x28\xa3\x51\xc6\xa0\x8c\x45\x19\x87\x32\x1e\x65\x02\xca\x44\x94\xc9\x28\x8d\x3d\x2a\x4b\x0b\x6c\xe5\x15\xf9\xf6\x72\x5b\x41\x5e\x71\x8f\x85\x95\x76\x65\x44\x58\x64\x2b\xaf\xb0\x15\xa8\x3a\x51\x88\x19\x1f\xe3\x53\x5a\x51\x29\x06\x8e\x72\x5e\x5c\x54\x6e\xd5\x96\xd9\x2a\x94\xd8\x69\xa9\x2c\xb7\x0b\x95\x48\xa4\x8f\x8c\x8c\x46\x19\xe7\x63\xab\x70\x14\x95\x58\x1d\xb6\x02\x1f\x7b\xa9\xcd\x56\x34\xaf\xd0\x51\xe8\xef\x28\x2c\xb7\x61\xba\xc2\x6f\x6e\xd1\x22\x57\xda\xbf\xc2\xb6\xc8\x56\xea\x3a\x91\x6f\x2f\x29\xb1\x5a\xf3\x95\x31\x4a\x41\x4b\xb1\xa4\x08\xa7\xa4\xa4\xa4\x98\x50\x9a\x7d\x96\xda\xca\xed\xe1\x15\x25\xf9\x65\x5e\x8e\xc5\xf6\xf0\x8a\xca\xb2\xde\xf9\x45\xe5\xf9\x95\x25\x73\x8b\x6d\x4b\xdc\x63\x4d\xaf\x8e\x63\xca\xa8\xa3\x1c\xf2\x50\x73\x0f\x53\x1e\xc7\xdc\x03\x56\x40\x9e\xe2\x0b\xb7\x4a\x90\x87\x4d\xe5\x76\x87\xd5\x61\xd3\x26\x0b\x7a\xad\x51\x15\x26\x55\x98\x55\x61\x51\x45\x8a\x2a\x52\x55\x31\x41\x15\x69\xaa\x98\xa8\x8a\x49\xaa\x48\x57\xc5\x43\xaa\xc8\x50\xc5\x64\x55\x4c\x51\x45\x96\x2a\xa6\xaa\x62\x9a\x2a\xa6\xab\x62\x86\x2a\x66\xaa\x22\x5b\x15\x39\xaa\x98\x25\x44\x0f\x51\x1e\x97\x17\xbc\xed\xa5\x36\x71\xd8\x5b\x78\xaf\x24\xbf\xcc\x57\x54\x8d\x48\xfa\xcc\xb5\x57\x96\x63\xaa\x68\x11\xea\x55\x14\x2d\x51\xf5\x44\x4d\xa9\x49\x51\x5f\xaa\x62\x69\x91\x0b\x50\xad\x98\xca\x32\x2f\x41\x51\x59\xa6\x3a\xd2\x63\x22\xa0\xf2\x54\x96\x79\xab\x34\x4a\x42\xb0\x54\x96\x79\x09\x92\xca\x32\x1f\xe4\xa8\x2c\xf3\x41\x8a\xca\x32\x6f\x95\xa1\xb2\xcc\x3b\xbf\xdc\x5e\x51\x91\x67\x2d\xf7\x29\x2f\x2a\x9d\x27\x70\x7d\x0a\xac\x15\x45\x56\xfb\x92\x22\xab\x4a\xe6\xae\x7f\xbf\xfc\xc7\xca\x8b\x8a\x8b\x8b\xf2\x1d\x45\xf9\x81\xae\xb4\xe2\x83\x62\xdb\x5c\x87\xbf\xe7\x01\xcd\xbc\x70\x6b\xb1\x23\xa0\xd8\x5a\x3e\xcf\x56\x2e\x9a\xa1\x72\xb0\x48\x39\xa8\x29\x56\xfe\x0a\x8f\x15\x97\x56\x96\xa0\x03\x94\xa4\x36\x53\x6d\x81\xf9\x85\xaa\x62\x96\xf8\x3b\x49\xf9\xcb\x8b\xc2\x8b\x1c\xbc\x38\xbc\xc8\x21\xfc\x60\x2d\x76\x68\xad\x0e\x45\xf4\xb0\x96\x94\xd9\xca\x2b\xac\xa5\x05\xca\x9e\x6f\xaa\xad\xbc\xc4\x5a\x5a\x90\x57\x5c\xd1\xb3\x23\xa9\x56\x98\xcb\x3c\x51\x24\x11\x14\x22\x92\xcd\x5a\x73\x7e\xb9\xdd\xea\xe0\x85\x79\xd6\x72\x3e\x4d\xf9\xe3\xc8\xb3\x96\xfb\x26\xbb\x7d\xe1\x6b\x75\x27\xbd\x92\xd5\x29\x9f\x97\x55\x95\xda\x64\x01\xa5\xb5\xaa\x88\xc9\xf6\x79\xf6\x52\xdb\x02\x2f\xab\x2a\xfd\x4c\x1d\xbd\xc0\x2f\xbf\x23\x2d\x98\x23\x31\x7c\x45\x46\x18\xb5\xe6\x7c\xab\x02\x56\x20\x84\x97\x05\x39\x6c\xc8\x61\x51\x39\x6c\x42\xf8\x5a\x0a\xec\x0e\xb5\xd3\xf8\xda\xdc\x49\x2f\x0b\x32\xdb\x54\xa9\xb5\xa8\x88\x36\x21\xfc\x52\x3d\xec\x98\xd7\xd5\x8e\xa8\x08\x94\x91\xfe\xa9\x1e\x5d\xd2\x7f\x9e\xc7\x8e\xdf\x04\x0f\x84\xc2\x8e\xb4\x36\x4d\x34\x0c\x6d\x91\x10\x5e\x69\x68\x79\x11\x5a\x9e\xa6\x5a\x5e\xa4\x7a\x27\x0d\x6d\x2c\x52\xa5\x6f\x9a\xdb\x7c\xbf\x89\x1e\xf0\xf3\x3b\xd2\xfe\x93\x3c\x0d\x5a\xe0\xb1\xa3\x4d\x17\xf5\xa1\x2d\x16\xc2\x3f\xdd\x53\xaf\xb8\x93\x9e\xea\x88\x62\x21\x78\x7a\x81\xdd\xc1\x8b\x0b\xec\x0e\x6d\x86\x9a\xbf\x54\xcd\x9f\xe1\x99\xbf\xd4\x33\x7f\x86\x9a\xbf\x54\x75\x64\xa9\xb5\xcc\x5e\xe1\x28\xb7\x97\x15\xda\xbc\x26\x63\x61\xed\x58\xd8\xc9\x6a\x61\xed\x42\xf4\x98\x5c\x58\x59\x3a\xcf\x5a\x5e\x59\x52\x6c\xad\x74\xf4\xb0\x7b\xee\x69\xb3\x54\xee\x72\x95\x3b\xcb\x93\xbb\xdc\x93\x3b\x4b\xe5\x2e\x57\xc5\x54\x35\x57\x85\x10\x7e\x53\x3d\x3c\x56\xd1\xa5\x4a\xa3\x70\x66\x1b\x15\x99\x88\x32\x19\xa5\x3a\x52\x46\xc6\x45\xf9\xa3\x54\x7b\x9b\xba\x13\xad\x9d\xa6\x32\x39\x54\x31\x5d\xad\xdb\x4a\xb5\x6e\xa7\x63\x71\x2b\xb1\xb8\xd3\xd5\xe2\x56\x0a\xa1\x99\xae\x74\x11\x4d\xa5\xf2\xb7\xc7\xf4\x4e\x45\xaf\xf4\xdc\xf3\x9a\x8e\x6d\xa0\x12\x7b\xc8\x4c\x8f\x62\x2c\xf6\x48\xe7\x78\xa4\x1f\xf3\x68\x6f\xb3\x54\x27\x2c\x55\x3b\xe6\xac\x8e\xbe\xb0\xb4\xa3\x2f\x24\x5b\xd4\xbe\x6a\x55\x43\xa4\xdf\xe4\x8a\x62\x6b\x45\xa1\x9a\xb6\x7b\xa4\xd5\x7e\xaf\x86\x58\x8b\xa3\x50\x8d\xba\x4a\x00\x10\x29\xbf\x64\x31\x52\x61\x5a\xe4\x10\xe9\xc0\xe4\x0e\x73\xf0\xa4\x70\x90\x48\x07\x24\xbb\x2e\xb7\xd4\x70\x2e\x82\x88\x48\xf6\xec\x88\x27\x6a\x2c\x32\xe5\xdb\x0a\x8a\x8a\x8b\xad\x2a\x86\xc5\x83\xcc\xe2\x41\x66\xe9\x42\x16\x60\xe9\x44\xe0\x97\xe6\x91\x2f\xcd\x23\x5f\x5a\xd7\x7c\x69\x9d\xf3\x65\x74\xd8\xec\x37\xd9\x03\x63\xb2\x07\xc6\xe4\xae\x05\x9d\xec\x51\xd0\xc9\x9d\xf1\xa6\x7b\x60\x4c\xf7\xc0\x98\xde\xd5\x8e\xe9\x9d\xf3\xe5\x74\xe8\xfa\x63\x6c\x45\xa7\x8a\x76\x85\x27\xd4\xc6\xa2\x9e\x30\x79\xa0\x9b\xba\xa0\xfb\x63\x60\x45\x4d\xd1\x8c\xd5\xb4\xb9\x23\xed\x6f\xf1\xe4\xb1\x74\xf0\xf4\xec\x08\xad\xa8\xe8\xc9\x6b\xe9\x40\x08\x4c\xed\xea\x99\x54\x0f\x6b\x31\xa8\x8a\x9d\x20\xcf\x88\xaa\xe6\x9d\xd0\x35\x6f\x5a\x87\x57\xfd\xd3\x3c\x4d\x4b\xf3\x00\x4d\xf3\x30\xa5\x67\x5a\x67\x3b\x03\x27\x76\x81\x0c\x9a\xd4\x95\xd5\x2f\xbd\xc3\x6b\x41\xe9\xdd\xcf\x76\x94\xcd\x47\x09\x91\xd8\x46\x3c\xf2\x64\x74\xcb\x93\xe1\xe1\xd1\xc9\x9e\x66\x4f\xee\x30\xbb\x57\xa7\x28\xa8\x9e\xce\xf2\x40\xcd\xea\x86\x9a\xe5\x51\x67\x53\x3d\x6a\x7a\x6a\x97\x22\xf6\x98\xda\xa9\xfb\x4c\xed\xc8\x16\x34\xad\x1b\xe8\x34\x0f\xd0\xe9\x1e\xde\x9e\xee\x69\xf6\xf4\x0e\xb3\x7d\xa7\xbb\xbb\x6d\xaf\xe9\xdd\x4a\xe0\x3f\xdd\xa3\x2e\x02\x67\x76\x31\x2c\x30\xa7\x6b\x8b\xcf\xe9\xdc\xe2\x67\x75\x94\xaa\xe7\xac\xce\x15\xe9\x37\xab\xc3\x50\xdf\xe4\xe2\xb2\x42\xab\x58\xb4\xf1\xb7\xa8\x6b\x25\x62\xc7\xdb\xe2\x50\x8f\xfa\xa4\xd9\x31\xe5\x3f\xb9\xa4\x48\x29\x87\xba\x33\xdd\x43\xd9\x77\x72\x89\x6d\x9e\xaa\x14\x54\x64\x77\x58\x3b\xad\x05\x69\x04\x03\x37\xda\x1c\x56\x2f\x64\xe0\xb3\x6c\x0e\x2b\xb3\x38\xac\x5c\x01\xd7\x4c\xb2\x96\x95\x59\xe9\x43\x95\x34\xa3\xd2\x0b\x39\x58\x56\xa1\x9d\x4d\xb3\x56\x7a\x21\x0d\x33\x15\x16\xf9\xa7\x79\x40\xf7\xc4\x13\xae\x7d\x5f\x6b\x47\x39\x6c\x9e\xe5\xb0\xb9\xca\x51\xe4\x2a\x47\x9f\xca\xce\x59\x55\x2b\x17\x28\x46\x78\xd9\x55\x7a\x31\x52\x45\x1b\x4d\xb4\xb4\x92\xe5\x17\x16\xf9\x7b\x16\xaa\x67\x97\xec\xfe\x76\x4f\xb7\x54\x7a\xba\xc5\xee\x76\x8b\x7a\x65\x1a\x81\x57\xaa\x78\x25\x1a\x83\x57\xa0\x31\x11\xae\x95\x27\xbc\xd2\x8d\x70\xad\x18\xb9\x56\x9c\xf0\x0a\x19\xaf\x34\x63\x22\xf1\xca\x37\x12\x57\x06\x22\x11\x2f\x12\xf1\x70\x3c\x8e\x89\xc4\x7c\x91\x78\x65\x1d\xe9\xca\x8f\x2b\x02\x38\x25\x8b\x89\x42\xbb\xa2\x10\x2f\x0a\xaf\xbc\xa3\x10\x2f\x1a\xf5\xa2\x5d\xfb\x88\x1f\xed\x5a\xc1\xc1\xf3\x31\x88\x13\x83\xf6\xc4\xa0\x7e\x2c\x1e\x8f\xc5\xe3\xb1\xae\xe3\x58\xee\x58\x2c\x77\x2c\x96\x3b\x16\xed\x8e\xb5\x68\x67\x8a\x80\xaf\x5d\xac\x8a\x99\xea\xb0\xbc\x58\xbd\x76\x98\xe9\xaa\x02\x9f\xc5\xae\x94\x36\x47\x55\x7c\x4c\x15\x25\x45\xa5\x62\x2e\x63\xcb\xb7\x97\x16\xf8\xd8\x96\xe4\x17\x5b\x4b\x0a\xf2\x8a\xd5\x89\x48\x8a\x6a\x75\x94\xba\xfe\x10\x69\x51\x4b\x13\x69\x51\xd7\xbb\x22\x2d\xea\xf5\x7b\xa4\x45\xad\xb5\xc8\x14\xd7\xba\x15\xae\x2b\xc4\xe0\xf5\x7f\x4c\x2c\xee\xc7\xba\xd6\x73\x70\x3f\x1e\x4b\x1d\x8f\xa5\x8c\xc7\x52\x26\x62\x29\x13\xd1\x8b\xc9\x58\xcb\xc9\xb8\x3e\x94\x8c\x5e\x4d\xc6\x5a\x32\x21\x9e\x09\xf1\x4c\x58\x4b\x26\x3c\x6f\xc6\xf3\xb8\x9e\x19\x83\xeb\x99\x31\x66\xf4\xb6\x19\x6b\xd3\x8c\x5e\x77\xad\x73\x9a\xd1\x1e\x33\xf2\x9b\xd1\x1e\x33\xda\x61\xc6\x5a\x30\x63\xb9\xcc\x68\x97\x19\x79\x2d\xc8\x63\x41\x1e\x0b\xf2\x58\x90\xc7\x82\x3c\x16\xe4\xb1\xb8\xd6\x6d\x90\xc7\x82\xbc\x16\xe4\xb3\x20\x9f\x05\xf9\x2c\xc8\x67\x41\x3e\xac\xaf\x98\x14\xd7\x7a\x0f\xf2\xa7\x20\x7f\x0a\xf2\xa7\x20\x7f\x0a\xf2\xa5\x20\x5f\x0a\xe2\xa7\xb8\xd6\x6d\x54\x9c\x58\xec\x45\xb1\x6a\x2f\x8a\xb4\x24\x63\xbd\xab\xeb\x5e\x91\x96\xe4\x28\x94\xae\xf3\x31\x28\x63\x51\xc6\xa1\x8c\x47\x99\x80\x32\x11\x65\x32\x4a\x23\x4a\x6c\x6f\xc9\x66\x94\xd8\xee\x92\xb1\xdd\x19\x91\xdf\x88\xfc\x46\xe4\x37\x22\xbf\x11\xf9\x8d\xc8\x6f\x44\x7e\x23\xf2\x1b\x91\xdf\x88\xfc\x46\xe4\x37\x22\xbf\xab\xbd\x1b\x91\xdf\x88\xfc\x46\xe4\x37\x21\xbf\x09\xf9\x4d\xc8\x6f\x42\x7e\x13\xf2\x9b\x90\xdf\x84\xfc\x26\xe4\x37\x21\xbf\x09\xf9\x4d\xc8\x6f\x42\x7e\x13\xf2\x9b\x90\xdf\x84\xfc\x26\xe4\x37\x23\xbf\x19\xf9\xcd\xc8\x6f\x46\x7e\x33\xf2\x9b\x91\xdf\x8c\xfc\x66\xe4\x37\x23\xbf\x19\xf9\xcd\xc8\x6f\x46\x7e\x33\xf2\x9b\x91\xdf\x8c\xfc\x66\xe4\xb7\x20\xbf\x05\xf9\x2d\xc8\x6f\x41\x7e\x0b\xf2\x5b\x90\xdf\x82\xfc\x16\xe4\xb7\x20\xbf\x05\xf9\x2d\xc8\x6f\x41\x7e\x0b\xf2\x5b\x90\xdf\x82\xfc\x16\xe4\x4f\x41\xfe\x14\xe4\x4f\x41\xbe\x14\xe4\x4b\x41\xbe\x14\xe4\x4b\x41\xbe\x94\x44\x6d\x81\xb8\xd4\xf0\x12\x4b\x7f\xae\x70\x92\x88\xdd\x2c\xd1\x15\x5e\xb0\xdb\x24\x63\xb7\x49\xc6\x6e\x91\x8c\xdd\xce\x88\xe7\x8d\x78\xde\x88\xdd\xd8\xe8\x5a\x86\x45\x1c\x93\xab\x3b\xe1\xf9\x14\x57\x78\xc3\xfd\x44\xdc\x37\x62\x37\x36\x62\x37\x36\x62\xfe\x04\xe4\x4b\x70\x2d\xb7\x23\x6f\xa2\x4b\x22\x7f\x22\xe6\x4f\x74\x2d\x8f\x63\x79\x12\x5c\x76\x60\xf7\x36\xe1\x71\x93\x6b\x19\x19\xf3\x99\x30\x1c\x98\x5c\xe5\xc0\x30\x62\x74\x85\x11\xd4\x4b\x71\x2d\xdf\xe2\x72\x2d\x0e\xa6\xb8\x6c\x1b\x11\x11\x91\xa8\xbe\x7f\x4f\xd4\xdf\x12\xfa\x1f\xfe\xbd\x04\x2f\x41\x0d\xd4\x68\x24\x00\x3e\x06\xc0\x99\xeb\x9d\x77\xe7\x5d\xcd\xab\xed\xd7\x78\x46\xfb\x35\xe7\x24\xf1\x1e\xbf\x87\x8e\x46\xe2\x63\xda\xaf\x75\x68\x69\x5e\x13\x7a\xb9\xdd\xf4\x2e\x77\x46\xd3\x5c\xf6\xc0\x8b\x82\x28\x09\x0c\x3a\x09\xa6\x67\x5b\x72\x74\xba\x49\xa7\x20\x60\xca\x24\x49\x3b\x75\x56\xb6\x14\x33\x48\x1a\x95\x93\x3b\x57\x57\x35\x3d\x5b\xa2\xc3\xad\x2f\x79\x83\x37\xe4\xe7\xeb\xf3\x06\x05\x07\x4b\x90\x23\x81\x49\x6f\x6e\x03\x02\xa6\x5c\x63\x98\x44\x0c\x92\x2e\x77\x6e\x98\x44\x0d\xba\x02\x9d\x74\x36\x53\xe2\x23\x66\xb5\x8d\x22\xbe\x26\x4b\xbe\x25\xeb\xe1\xec\x60\x7d\xf0\xa0\xaa\x6c\x9d\x94\x99\x99\x1d\x2c\x25\xe5\x0c\xd2\x49\x09\x4a\x2a\x21\x27\x47\xd7\xaa\x2a\x59\x0b\xa4\x51\x99\xd9\xc1\xb8\xa7\x93\x22\x94\xf3\x11\x8a\xe6\xd9\xcc\x6c\xdd\x5c\x5d\x55\x95\x55\x27\xf9\x66\x66\xe7\x0e\xd2\x49\x3a\xe5\x9c\xaf\x92\x8a\x53\x52\x71\xb9\x83\x72\x73\x72\x72\x06\x49\x24\x34\x27\x47\x2f\x41\x66\xb6\x2d\x27\x27\x4c\x62\x06\x9d\x45\x27\xf1\xe1\xd6\x02\x9d\xa4\x31\x65\x66\x4b\x1a\xbd\x51\xd2\xea\x8d\x83\x82\x83\x73\x24\x92\x1b\x26\x71\x83\x3e\x58\x1f\xac\x2b\x68\xd5\xe4\x19\x75\xca\x19\x95\x5c\xf9\x2b\xf1\x5c\x4b\xbe\xc4\x42\x82\x75\x92\xd6\xa4\xab\xd2\x55\x49\x24\xb4\x35\x42\x33\x5c\xe2\x23\xa6\x64\xe7\x66\x0e\xb2\x66\xe5\x64\xeb\x73\x82\x75\x52\xd2\xd4\x6c\x89\x84\x0e\x52\x0a\x85\xcc\x61\x92\xc6\x20\x79\x99\x42\xdb\x80\xaa\xae\xd1\x1a\x24\x2f\xbd\x51\xaf\x93\x40\x6f\xb4\x4a\x34\x6f\xae\x44\xf2\x25\x92\x2b\x69\x42\xc2\x24\x2f\x83\x4e\x31\xd2\xcf\x94\x7f\x8a\x43\x9e\x4e\x41\x90\x92\x72\x73\x14\x95\x5c\xb3\x30\xd2\xdb\xd0\xe6\xe5\x07\x26\x8b\x31\x24\xd8\xed\x6c\x1f\x43\x67\xe7\xfb\xaa\x28\x24\x54\x2f\x81\x49\xe2\xc3\x73\x75\x96\x2a\xbd\x55\xa9\x08\xe1\x29\x18\xa4\x78\x53\xd2\x0d\x92\x92\xdc\xfe\x91\xd8\x70\xbd\xd5\xac\x52\xf8\xdd\x25\xbb\x34\x2c\x33\x5b\xc9\x9c\xf4\x6b\x99\xfc\x0d\xa2\x40\x6d\x7e\xbe\xcc\x92\x1d\x3c\x48\x1f\x9c\x13\x12\x1c\x26\xf5\x30\xb4\x52\x6a\x91\x0a\xac\xe6\x30\x29\xc0\x20\x91\x5c\x9d\x4e\xf2\x37\x4d\x54\xb2\xeb\x24\x7f\xbd\x31\x47\xea\xa1\xec\x65\x65\xeb\xa4\x1e\x7a\x63\x4e\x98\xd4\xd3\xa0\x93\x02\x85\x4b\x74\xa7\x38\xe4\x57\xe9\xad\x52\x80\x29\x57\x57\x95\xab\x93\x02\xf4\x46\x7d\x98\x14\x68\x98\x34\x2d\xbb\x95\x17\x98\x73\x86\x49\x3d\x6c\xfa\x25\x61\x52\x90\x61\xd2\x94\xec\x49\x53\xd5\x83\x83\x82\x73\x86\x49\xbd\xc5\xf1\x5e\x86\x56\xe8\x69\x9a\x9e\xdd\xda\xb3\xa7\x49\x22\x56\xa3\xd4\x33\x54\x69\xa4\x12\x1d\x6e\x6c\xf5\x57\xfe\xf4\xa0\xc3\x8d\x12\xe9\xa7\xd7\x49\x6c\x78\x66\x76\xab\xe2\x3c\x89\x0f\x37\x56\x55\xe9\x04\x6d\x48\xb0\x5e\x22\x56\x57\x7a\x90\x7a\x5e\xc9\x42\x87\x8b\x23\x39\x92\xbf\x29\x55\xea\x61\x4a\xcd\x95\x68\xe7\xaa\xba\x4b\x05\xb6\x02\xf4\xd6\x9b\x25\x62\x92\x60\x7c\x1b\x21\x44\xd4\x55\x6f\x03\xb4\x02\xb5\x4c\xcb\x96\x7a\xea\x8d\x3a\x8b\xe4\xa7\x37\x4a\xbe\x7a\x89\xe7\x1a\x75\xb9\x12\xb1\xbe\x10\x18\x48\x20\x00\x8c\xc6\xaa\xdc\xd6\x5e\xda\x50\xa9\x32\x74\xd0\xd0\x9c\x30\xa9\x8f\xa1\x15\x7a\x87\x86\x49\x7d\x0d\xad\x44\x91\xfd\x0c\xad\x54\x91\xfd\x0d\xad\x4c\x91\x03\x0c\xad\x5c\x91\xf7\x18\x5a\x35\x8a\x1c\x68\x68\xd5\x2a\x72\x90\xa1\xd5\x4b\x91\x83\x0d\xad\xde\x8a\xbc\xd7\xd0\xea\xa3\xc8\xfb\x0d\xba\x70\x89\x3c\x12\x26\x85\x88\xc4\xc2\x30\x29\x54\x24\xca\xc3\xa4\x21\x06\x90\x7a\x84\xfe\x1f\x6c\xbc\xcf\xd0\x0a\x43\x42\xc3\x24\x9d\xa1\x95\x28\x32\xd8\xd0\x4a\x15\x39\xd4\xd0\xca\x14\xa9\x37\xb4\x72\x45\x0e\x33\xb4\x6a\x14\x39\xdc\xd0\xaa\x55\xe4\x08\x43\xab\x97\x22\x47\x1a\x5a\xbd\x15\x39\xca\xd0\xea\xa3\x48\x83\x41\x37\x56\x34\xb5\x30\x83\x2e\x57\x0a\xcc\xd5\x99\xf4\x12\xc9\x35\x89\xea\x20\xb9\x92\x41\x69\x6f\xe1\x06\x29\x2c\x54\x0a\x0b\x09\x93\x46\x1b\x74\xba\x54\xdd\x5d\x6a\x42\x6f\x4d\xd0\x2b\x61\xec\xbf\x6a\x0c\x0a\xce\x09\x93\x22\xdc\xd5\x43\xfa\x49\xa3\x43\x5a\x35\xa4\xaf\x25\x3b\x22\x47\x14\x30\xd2\xd3\x33\xdd\x4f\x47\x19\x74\xb1\xc2\xde\x68\x03\x48\xc4\xd2\x9d\x44\x22\xa1\xbf\x4a\xae\x1c\x87\x7e\x27\xc4\x10\x60\x1e\xaf\x4f\x68\x8d\x22\x7d\x43\xc2\xa4\x18\x83\x6e\xac\x2e\xf5\x2e\xf6\x4a\x60\xb2\x26\x84\x49\xb1\x86\xf0\xfe\x63\xc3\xa4\xb8\xdf\x52\x95\x88\x29\x3f\x21\x4c\x8a\x37\xb4\x52\xe8\x37\x5c\x17\xae\x4b\x55\x3a\xaf\x44\x87\xa7\x55\x55\xa5\xea\x53\xf5\x56\x5d\x76\xde\x20\x25\x2c\xea\x8d\x6d\x71\x84\xf4\xed\x13\x12\x26\x25\x18\x24\xe8\x27\xf1\xe1\x12\x1f\x2e\x54\x24\x1f\x53\xa8\xad\x2a\x5c\xaf\xd3\x8d\xad\x4a\x08\x93\x12\x3b\x4e\xeb\xc2\x55\x0c\x89\xeb\x8d\x8a\x96\x4e\xca\x55\xfa\x7b\xd2\x94\xec\xe7\xa9\x8e\xe9\x06\x3d\x4f\x47\xb0\x81\x39\x46\x25\x06\x7a\x9b\x74\x55\x7a\xa1\xad\x4f\xc9\x95\xb8\xa9\x6b\x57\xca\x55\xe2\x90\x1a\xec\xa9\x29\xb7\x40\x2f\x31\x93\xb5\x20\x33\x5b\xa2\x26\xeb\x20\x89\x99\x72\x95\x18\xd4\x35\x8f\x55\xaf\xd3\x49\x7c\x84\x3e\xc5\x9a\x30\x48\x2f\x79\x9b\x52\x24\x3a\x5c\xf2\x36\x09\x96\x5c\xdd\xaf\x91\xe8\xd5\x68\xc7\x4d\xb9\x8a\xef\x35\xc3\xad\x92\xa6\x1b\xaa\xc4\x47\x28\x25\x1a\x2e\x8c\x18\x9e\x5b\x90\xa9\x46\xb9\x0e\xae\x9c\x30\x69\x8c\xe2\x03\x9d\x4e\x27\x69\x46\xa0\x0f\xf4\x63\x13\xc2\xa4\x07\xc4\x61\xc9\x5b\x6f\xd4\xe9\x74\x29\xfa\x54\x85\x4c\xa9\xad\xb1\xc2\x65\x4a\x01\xd0\xa3\x30\x2d\x3b\x5c\x37\x56\x1f\x3c\x48\xb1\x18\x0f\xea\x14\x5b\x5c\x2e\xd7\x0e\x97\x34\xc3\xd3\x3c\x47\x5f\xb5\xa2\x7e\xad\x05\x63\xcd\xe8\x95\x66\x3c\x0e\x2d\x30\xb9\xaa\x26\x57\x19\x9e\xbb\x16\xd1\x55\x95\xe3\x0d\x7a\x5d\xb8\xe2\xb5\x94\xac\x6c\xdd\xd8\x9c\xf0\xd6\x70\xd2\x27\x34\x4c\x7a\xd0\x7d\x38\xd3\xf3\x70\x52\x67\xed\x5f\xd5\x49\x36\x48\x09\xa1\xbf\x0a\x6a\x34\x48\x89\xa1\x55\x3a\xdd\x58\xa5\xb1\x54\x25\xfc\x8a\x8e\xc4\x4d\xe1\x52\x78\x68\x98\x64\x72\xb7\x30\x97\x77\x95\xc6\xa5\xd7\x8d\xd5\x85\xeb\x13\x10\xce\x6c\x68\xf5\xe6\xc3\x8d\xff\x87\xa6\x98\xfa\xff\x55\xeb\x53\xcc\x57\xe2\xcb\x58\x7d\xc2\xa0\x60\x8f\xfa\x0e\xce\x41\x1b\x2d\x8a\x33\x5c\xe5\x4f\x51\xca\x1f\xac\x47\x07\x60\x39\xdc\x45\x4e\x35\x48\xd0\x57\xed\x9c\x6d\xa0\xf4\xc3\xde\xe1\x52\x4c\x48\x98\x34\xe1\x2e\xc7\xd3\x0c\xad\x40\xfa\xf4\x96\x62\x43\xc2\xa4\x89\x06\x29\x3e\x24\x4c\x9a\xa4\x78\xcd\xa2\xd7\x85\xeb\x52\xaa\xf4\x56\x97\x9f\xd2\x0d\x4a\x73\x94\x26\x85\x86\x49\x0f\x19\xda\x00\xcc\xa1\x61\x52\x86\xa1\x0d\x88\x92\x98\x6c\x68\x23\xe2\x48\xa6\xa1\x8d\x88\x23\x53\x14\x1d\x4b\x68\x98\x94\xa5\xe8\x28\x89\xa9\x8a\x8e\x92\x98\xa6\xe8\x28\x89\xe9\x8a\x4e\x72\x68\x98\x34\x43\xd1\x51\x12\x33\x15\x1d\x25\x91\xad\xe8\x28\x89\x1c\x45\xc7\x14\x1a\x26\xcd\x52\x74\x94\xc4\xc3\x8a\x8e\x92\x98\xad\xe8\x28\x89\x47\x14\x9d\x94\xd0\x30\x69\x8e\xa2\xa3\x24\x1e\x55\x74\x94\x44\xae\xa2\xa3\x24\xac\x8a\x8e\x31\x34\x4c\xca\x53\x74\x94\x44\xbe\xa2\xa3\x24\x0a\x14\x1d\x25\x61\x33\x48\x63\xdc\x6e\x9e\xab\xec\x48\xe3\x43\xc3\xa4\x79\x22\xf5\x60\x68\x98\x54\x28\xda\xd3\x98\x50\x29\x29\x34\x4c\x2a\x32\x48\x0f\xb8\xb5\xe7\x2b\x3b\x42\x7b\x81\x48\x29\xda\xc5\x22\xa5\xa8\x96\x18\xa4\xb1\x6e\xd5\x52\x65\x47\xa8\xda\x45\x4a\x51\x2d\x13\x29\x45\x75\xa1\x41\x1a\xe7\x56\x2d\x57\x76\x84\x6a\x85\x48\x29\xaa\x0e\x91\x52\x54\x2b\x0d\xcf\xfb\x70\xea\x9a\x3c\x19\x43\x25\x6f\x9b\xc4\x86\x65\x2e\x71\x8d\x29\x61\x00\x93\x4e\xc1\xf9\xac\xec\x56\x42\xd6\xe7\x48\x44\x0d\x00\x65\xad\xa0\x35\xbe\x00\xa9\xd1\xf7\x71\x08\x51\xd2\x49\xbe\x0f\x91\x31\xde\x23\xbc\xfb\x78\x71\x6f\x3c\x90\x01\x66\x6d\x84\xf6\x5e\x8d\x38\xe0\x6b\xfc\x7d\xef\x15\x01\x67\x7d\xce\x6a\x92\x80\x83\x4f\x48\x2b\x04\x18\x7f\x0f\x00\x49\xe2\xbf\x38\xc2\xc0\xdc\x3a\x8c\xac\x9e\x92\x2d\x25\xad\xce\x6e\x65\x05\xe6\xd6\x11\xca\xde\x69\xef\x15\x40\x78\xd2\xea\xfc\x69\xd9\x8a\x4a\x4e\x4e\x4e\x8e\x82\x3d\xd6\x7b\x94\x77\x3f\x2f\xee\x1f\x72\x8a\xb4\x3f\x23\xf1\x75\xad\x14\xcc\xad\x9a\x02\x33\xc0\xff\x13\x00\x00\xff\xff\x7f\x2e\xd7\xe4\xc0\xbf\x01\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_ttf() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_ttf, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.ttf", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x97\x53\x6c\x2f\x0c\xd3\xed\xff\x75\x77\x6d\xdb\xed\xae\x6d\xdb\xb6\x6d\xdb\xda\xb5\x6d\xdb\xb6\x6d\xdb\xb6\xed\x9e\x3c\x39\xef\xd5\x37\x99\xdf\xcd\x24\x33\x99\xac\x9b\x95\xe5\x26\x27\x2a\x0a\x00\x02\x00\x00\x80\x2f\x02\x00\x02\x00\x00\x00\xea\xed\x03\x00\xfd\xff\xc9\xff\x2d\x31\x61\x11\x51\x00\x00\xc8\x1a\x00\x00\x70\x00\x00\x00\x7e\x68\x06\x68\x46\x31\x25\x15\x41\x00\x00\xa8\x0c\x00\x00\xe2\x04\x00\x80\xc5\x4f\x10\x77\x91\xe5\x94\xe8\x18\x01\x00\xe0\x23\x00\x00\xa0\x0c\x00\x00\xf4\x3b\x96\x2f\x52\x8c\x6c\x0c\xec\x01\x00\x10\x76\x00\x00\xec\x10\x00\x80\xb4\x54\x3a\x2d\xa0\x33\x72\x75\x26\x00\x00\xfe\xe0\xfc\x77\x1a\x00\x00\x64\x19\x3c\xa0\xe8\x98\xda\x9b\xd9\x00\x00\x7f\x8c\x01\x00\xb0\x28\x00\x00\x3a\x75\x1f\x65\xf3\xce\xcc\xc0\xc9\x1e\x00\x80\xbb\x03\x00\x00\x90\xff\x03\xc1\xcc\xda\xc3\x14\x00\x80\x7b\x03\x00\x66\x4f\x00\x40\xa6\x5d\x7c\xcc\x60\x70\xe6\x26\x06\xc6\x00\xc0\xce\x1e\x00\x00\x60\xfd\x8f\x77\x06\x04\x04\x73\x73\x13\x03\x00\x60\x17\x03\x00\x00\x10\x00\x00\x00\x12\x18\x10\x90\x03\x73\x1b\x67\x77\x00\x60\xf7\xbf\x5f\x70\x00\x00\x04\x22\xdc\x09\x76\x2d\x6b\x3b\x23\x03\x00\xe0\x48\x19\x00\x80\x98\x02\x00\x20\x49\xf6\x9f\x39\x1e\x6c\x0c\xdc\xed\x01\x80\x2b\x82\xff\xed\x12\x80\x2d\xc1\x62\xd9\x1a\xd8\x98\x00\x00\x57\xfc\x00\x00\x90\x19\x00\x00\x42\x20\x62\x6d\xd7\x67\x6f\xe7\xe4\x0c\x00\x5c\x97\x01\x00\xb0\xab\x00\x00\xf1\xfc\xb1\x60\xe9\xb9\xbd\xa3\x89\x3d\x00\xf0\xe9\x0f\x00\x00\xb2\x01\x00\x40\x0d\x9b\x0b\x57\xaf\x3b\x90\x91\xbe\xb1\xbe\xfe\x9e\x81\x3f\x80\x0c\x1c\x2e\x84\x89\x7f\x6c\xac\x6c\xac\x0c\x8e\x84\x18\x23\x31\xc0\x18\xcc\x08\x2c\xae\xca\xa4\x0a\x24\x01\x36\x0a\x96\xdf\x11\xe9\x10\x85\xc0\x23\x04\xb1\x0c\x09\x30\x42\x0c\xe9\x08\x00\x00\xdc\x81\xb2\x27\x41\x60\x50\xf4\x71\xc0\xee\x5e\x75\x57\xaa\xaa\x28\x65\xd6\x6d\x2d\x6d\xa7\x58\xe8\xb0\x8d\xd2\x32\x19\x67\x58\x1b\x6d\x36\x59\x4d\x0f\x3d\x37\xa7\x77\x7c\x7a\xe5\xfc\x02\x00\x9c\x85\xf0\x21\x81\x4c\xa6\xd3\x39\x41\x31\xe6\xd0\xb5\xa2\x20\x4f\x83\xcd\x93\xa9\x35\x8e\x70\xd3\x63\xcd\x27\x9b\x88\x07\x1c\x5d\x06\xfe\x02\x21\x18\xa6\xc1\x0a\x23\x18\x66\x81\x12\x25\x69\xa6\x21\x1a\x27\x6f\x59\x1e\x68\xea\xc6\xe1\x26\xaa\xea\x26\xd1\x2e\x78\x36\x16\x27\x85\x70\xe7\x79\xb3\x06\x5c\x05\xfe\x81\x50\x94\x55\x61\x05\x11\x94\x35\xc1\x09\x92\x94\xd5\x51\x0d\x13\x94\xb5\x81\x11\x54\xe5\x55\x11\x15\x15\xe5\x35\x85\x9c\x2b\x07\x4b\x76\xb8\xad\xc8\xae\x0b\xb2\xeb\x16\x5c\x56\xa7\x57\x5d\x3a\x75\x91\xae\xe3\xb4\x9b\xa8\x9d\x96\xab\xd7\x21\xdb\x4d\x5a\xae\x9b\x37\x6b\x3a\xdb\x8d\x9f\x2f\x7d\x78\x1b\xc4\x5e\xd6\x72\x57\xe5\x3c\x8d\xa7\x2f\x03\xba\x1b\x7f\xbd\x6c\xec\xae\xaa\xbb\x1b\x5f\x5f\xfa\x5b\xd6\xc8\x3f\xad\xf5\xae\x2a\x7d\x1a\x6f\x5f\x06\x7d\x37\xe8\x3e\xab\xf9\x5e\x56\x7f\xd6\x05\x20\xb7\xe9\x11\x90\x01\xd2\xa3\xdc\x4f\x7d\xae\xd8\x01\xd9\xac\x09\x7a\xef\xb0\x85\x6f\x42\x41\x0c\xa2\x83\xcc\x7f\xb4\x58\x54\xa0\xeb\xa5\x22\x9b\xc1\x3d\xaa\x57\xc1\xb3\x16\x4d\x6d\x46\xc0\x6c\x96\xf1\xb4\xad\x1f\xdb\xa7\xcd\xba\x7e\xe0\xb7\xb3\xba\xe9\xff\xd3\xce\x48\xdf\x94\x63\x94\x3d\x20\x20\x39\x20\xc0\x05\xad\x92\x01\x04\xa4\x90\x3b\xd8\xb4\x67\x2c\x6e\x64\xc8\x1f\x06\x8f\x9e\xfe\x1b\x5d\x5f\x3e\x0c\x9c\x11\x95\xff\x2b\x70\xa2\xc0\x10\x1c\x02\x3c\xe4\xd7\x8f\x23\xe1\x47\xd7\x44\x7f\x4f\xdc\x70\x41\x55\x5f\x3f\xeb\x76\x76\xac\xaf\xcf\x70\xb8\x03\xa8\x2a\x06\x11\x30\x33\x87\x00\xe2\x0e\x94\x94\x08\x52\x47\xac\x85\x22\xf2\xca\xf1\x49\x36\xdb\xf2\xe1\xc2\xd8\x62\xb3\xf9\xd2\x6a\xb3\xd9\xf2\x5f\x93\x63\xce\x36\x66\x3f\xf5\xee\x8e\x5c\x55\xa0\x16\xaa\x2d\xeb\x00\xde\x98\x86\x11\x00\x77\xb7\x00\x41\x5f\x6f\xdb\xaf\x44\xa0\x60\x07\xe0\xaf\x35\x20\x7f\x22\x20\x4a\xc8\x3d\xf6\x2d\x7f\x2f\x7b\xba\x9c\x51\x2b\x77\xfc\x4c\x85\xe8\xb4\x22\x89\x10\xe7\x78\xdb\x05\x3d\xb4\x71\xce\x75\x9d\x98\xc4\xc3\x63\xa2\x76\x05\xbc\x38\xac\xfb\x26\xf1\xd0\x73\x28\x1f\x51\xbd\x55\xb6\x67\xad\xea\xd2\x38\x69\x7d\x2c\xae\x7b\xea\x9c\xc1\x48\x77\x62\xfc\xbd\x44\xef\xc4\xdb\x7b\x62\x5f\xd3\x8e\x34\x5f\xd3\x88\x74\x33\x57\xc6\xcf\xcc\xc1\x69\x8b\x13\x9e\xc7\xf6\xf0\x34\xd1\xdc\xb7\x05\x1f\x8d\x18\xf6\xc3\x2c\xa5\x6c\xcd\xd2\x1d\x0b\x9a\xec\x43\xb2\x76\x8e\x9a\x43\xf0\xed\x1a\x5b\x3f\xb7\x38\xae\x05\xdc\x6b\x59\x57\x78\x87\x58\x37\x3b\x07\x3b\xb7\xdb\x3f\x6f\xc0\x1a\x01\x5b\xfc\xf4\x73\x2c\x73\x6c\x75\xac\x65\x02\x7e\xf4\x34\x69\x98\xd4\x30\x9c\xfd\xba\xfd\xe7\xfd\xb8\x81\x9d\xae\x1e\x95\xe7\xc7\x69\xa7\x22\x3c\xf0\x6f\xcb\x73\x22\x73\x58\x3b\xe6\xb0\xb7\x83\xd0\xee\xb8\xf8\xfa\xd0\x96\x7b\x12\x1d\xc6\x92\x6a\xe7\xb4\x20\xc6\xf5\x57\x04\x5e\x5f\xe6\xee\x41\x5b\x76\xb0\x9b\xcc\xbf\x66\x83\xab\x55\xfb\xe8\x2b\x08\xbd\x58\x39\x86\xb0\xb3\x87\xc3\x5d\xe9\xf0\x0f\x94\x3d\xc3\xf0\xd5\x84\xd2\x6a\x8b\xbb\xd2\x2c\x8f\xd3\x33\x27\x00\xa7\x60\x8e\xc1\x2e\xbb\x1e\xfa\x4b\x99\x44\x39\x1f\x4c\xb8\xac\xfa\x99\x3f\x33\xb0\xb2\xd9\x8b\xfa\xb0\xfb\xa6\xed\x1e\x35\x97\xae\xf5\x21\x20\xdb\x88\xbd\x58\x3b\xd6\xb0\xb7\x3f\x41\xfb\x15\xb9\xb0\x4c\xbe\x66\x6d\x93\xb3\x21\xb8\x2b\xf2\xd2\x0d\xf7\x5e\xd1\xfe\xad\xba\x64\x1e\x74\x63\xf4\xb7\x1e\xfc\x9e\x9a\x1d\xea\xc0\x29\x8a\x52\xe1\xa4\x93\x09\x97\xc7\xee\x51\x2c\xc3\x2d\xe3\x8e\x80\xb0\x6b\x9c\xcc\x30\xa7\xc2\x5c\x11\xbb\xe8\x1e\x34\x9f\xb9\x9d\x1d\xa4\x6e\x5e\x4f\x95\x27\xe7\xbe\xcd\xed\x4d\x58\x40\x81\x83\x3f\x5b\x75\x61\x77\x21\xd8\x99\xfb\x94\x63\xee\xb1\xe9\xe4\x33\xff\x95\xe0\xa4\xc7\xcb\x3d\xb3\xfe\xe2\x95\xcc\x38\x76\xee\xb6\x7a\x8f\x43\xff\x88\x0d\x36\x69\x03\x4e\xd8\x54\xe4\x54\xf4\x54\x8c\xf4\x46\x1c\x2a\x66\x33\x21\x25\x23\xfd\x80\xfd\x5f\x84\x9f\x35\x47\x77\xf7\xda\x3b\xbc\x7d\x96\x7c\xe8\x41\xe8\x41\x1d\x21\x72\x3f\x37\xb3\xb3\xbb\x39\x83\xfc\x6f\xa1\xcf\x60\x57\x48\x19\xb8\xe7\x3f\xcf\x5f\x1f\xcd\x43\xaf\x4f\x86\xed\x38\x81\x7a\x2f\x60\xbe\x9b\x10\x80\x1e\xe0\x21\xf5\xac\xdd\x7a\x10\x5f\xb6\x75\x89\x97\x7e\x3e\x69\xd5\x9f\xaf\xf0\x43\x40\x3b\x0c\x9f\x6c\x55\x3a\x33\xd0\x85\xfa\x88\x96\xa9\x16\x6f\xa3\x75\x4b\xd3\xbe\xdc\x22\xd5\xd7\xf4\x53\x27\xfe\x7a\xce\x7c\x91\x54\x7a\x92\xd4\x3f\x65\xc9\x64\xe5\x43\xf7\x75\x6a\x9b\x05\x5a\x5c\xa4\xe4\x34\x77\x76\x20\x72\x2a\x65\xe5\x64\x4b\x7b\x24\x59\xd5\xdc\x0f\x16\xd9\x43\x16\x01\x64\x07\x28\xd9\x65\x9c\xe9\x65\x6e\x2f\x55\xe8\x26\x84\xd2\x7d\xe7\x4d\x93\xfa\x94\xb2\xc2\x62\x76\x21\x56\x07\x90\x99\x24\x1a\x76\x68\xb3\x43\x9c\xec\xca\x47\xe7\x1e\xda\xbe\xf6\x0e\x79\xf4\x73\x43\x9d\x02\x29\x97\x74\xda\x55\x54\x76\xf8\xd3\x4b\x49\x9d\xe2\x4a\x97\xe8\x9a\x65\x97\x0e\x10\xda\xbe\x7f\x1d\x85\x37\x45\x5c\x97\xb4\x1d\x95\x37\x21\x91\xf6\xf5\x78\x15\xa1\xe7\xf1\x9e\x4d\x78\x85\xa3\x13\xaa\xeb\x64\x2c\x19\x45\xa9\x17\x26\x9e\xed\xba\xf9\x10\x97\x84\x9e\x6d\x78\x01\x9d\x0e\xb1\xaa\x87\xba\xd5\xf3\x9a\xd5\x83\x3e\x6d\x7a\x5a\xcd\x32\x9b\xf7\xfe\xae\xe6\x28\xf0\x96\xd2\x3c\xdc\xc2\x7b\x06\x50\x78\xf9\x09\xee\x49\xe0\xb1\xfb\x0e\x1f\x67\x66\x38\x87\x36\x06\xe1\xd2\x86\x8c\xba\xc6\x54\x8b\x77\x48\x4a\x77\x8c\xba\xfd\x95\xee\xb0\xb5\x87\xb0\x5d\xe3\xce\x5d\xff\x5a\x39\x62\xdb\xdd\x73\x3d\xde\xfc\xdf\xa9\xf5\x09\x23\xef\x08\x79\x07\x46\xa9\xf7\xbd\x39\xdf\x82\x8b\xdf\x92\x68\x41\xde\xa2\x04\xbc\x63\xe8\xee\x8a\xab\x5b\x30\xf4\xea\x99\x3a\xeb\xfe\x76\xd6\x73\x79\xd5\x91\xf7\x98\xd2\xbd\x98\xe2\x5b\x8f\xa0\x59\x0f\xb3\xbe\x88\x60\x4e\x28\xf4\xfb\x96\x09\xa3\x56\x28\x0c\xfe\x94\x1d\x03\xe0\x84\x71\x21\xf2\x73\x82\xda\xfd\x85\x10\x0e\xe5\xdd\x71\x46\xf6\x71\xfa\xe3\x81\x11\x15\x62\x0e\x04\x63\xd0\x22\x10\xf1\x37\xdb\xc2\x22\x49\xa5\x1a\x48\xc5\x1c\xdb\x83\xa5\x8a\x2b\x9d\x0b\xcd\xfa\x54\x5b\xc4\xdd\xce\x09\x79\x8a\xd1\x37\xd7\x09\xbb\x8b\xe1\x2f\xd7\xfb\x4c\xb4\x67\x64\xb6\xa8\x7d\x8a\xf1\x0b\xa3\x24\xfc\x30\xfb\x68\xb6\xa8\x40\x4c\xe2\x60\x52\x08\x19\x95\x43\x1c\xc0\xd4\x1c\xb1\x27\xdb\x22\x2a\x65\xb2\xc2\xcd\x38\xfe\x1a\xb7\x45\xe9\x93\x56\x1a\x17\x45\x25\xcc\x5b\xa7\x30\x30\xa6\x44\x5b\x1f\x60\xd5\x1c\x73\x62\x92\x1f\x46\xcf\xbe\x99\x04\x4a\x33\x1b\x26\x2d\x57\x31\x30\x8b\x92\x39\xd0\xdd\x8c\x77\xb7\xc3\xbf\x1e\xfb\x6e\xe9\x91\x4d\xa2\xac\x34\xc4\x94\xde\x29\xa7\x53\x2d\xba\x63\xc9\xb1\xfd\x21\x53\x28\x79\x84\x49\x1c\x62\xf2\x48\xb9\x22\xea\xcc\x40\x49\xa4\x16\x73\x2c\xc4\x81\xed\x25\x03\xf6\x07\x04\xf2\xc9\xe6\xf5\x16\xf9\xfb\xe5\x7e\x39\x7e\x18\xec\x05\xe1\x3b\x84\x89\x01\x23\xc5\x07\x1b\x17\x11\xa0\x5a\x88\x8b\x81\x33\xc6\xff\xb3\x3e\x22\x40\xf7\x18\x13\x03\x82\x52\x08\x36\x4c\xea\x13\xa0\xd4\x06\x45\x10\x26\x77\x16\x45\x77\x16\x61\x73\x16\x83\x7f\x12\xa6\x7b\x12\xc5\x7f\x12\xe1\x7b\x1a\x05\xc0\x0c\x11\xc0\x8c\x20\xc0\x0c\xd3\xc3\x8c\x42\x46\x0d\x51\x44\x8d\x60\x44\x0d\xb3\x47\x8d\x82\x4a\x0f\x91\x48\x8f\xa0\x48\x0f\x33\x4b\x8f\xc2\x4c\x0d\x51\x4f\x8d\xe0\x4c\x0d\x73\x4f\x8d\x02\x53\x0f\x11\x51\x8f\x20\x51\x0f\x33\x52\x8f\x42\x55\x0d\x51\x55\x8d\x60\x55\x0d\x73\x5e\x01\xc2\x68\x54\x2d\x8b\x75\x37\x86\x94\x36\x68\x7d\x5a\xa6\x40\x37\x4d\x0b\xc8\xac\x2a\x4a\xcc\x33\x4a\xac\x4a\x4c\xcd\x53\x4c\xad\x62\xaa\x99\x57\x5d\x35\xcd\xa5\x68\x5a\x92\x37\x44\x7b\x6f\xf3\xa8\xa1\xb0\xa1\x00\x14\x29\x5f\x98\xe9\x4d\x0c\x4c\x4c\x4c\x87\x36\xdc\x40\x3c\xaa\xfc\xcb\x49\xe9\xed\xcd\x77\xba\x48\xe8\xea\xc6\xc1\x0a\x64\x3a\x86\xd9\x4a\x27\xe9\x2f\x71\x2a\x25\x5d\xa7\x71\x46\x76\xea\x0f\xfd\x62\x23\x1a\x8f\x5b\x52\x74\x61\xee\x93\x30\x9b\xc1\x1c\x87\x09\x20\x21\xe9\x8f\x19\x6e\xb7\x90\x0c\x93\x31\x7f\x61\x30\x98\x2c\x2a\xcd\xac\x6f\xd9\xcc\xb2\x9d\x16\x28\x69\xbd\xa1\xc0\x83\x20\xd8\xb6\x5c\xa6\x5d\x00\xe8\xeb\xf6\x1b\x1e\x6a\x32\xea\xf4\xb6\xf3\x59\x26\x7f\x55\x69\x9e\xa1\x40\x57\x3e\xaf\x03\xb0\x79\xdf\x8c\x02\xe8\x7a\xde\x0d\x12\xfd\x7c\xdf\xaf\x00\x8c\x49\x4b\xae\xff\xf9\x06\x01\xf8\x15\xe8\xc0\x39\xcc\xa2\x06\x1b\x3d\x7d\x9d\x3a\x03\xfd\x97\xd4\x9e\xf8\x87\x57\xf2\xf3\xd8\x2f\x1b\xb5\xef\xef\xee\xd7\x23\xf8\x7d\xdc\x72\x9d\xad\x7e\x3d\x70\xc4\xa0\x4a\x3d\x1e\x58\xa5\x54\x9f\xfc\x2b\xc2\x32\x33\x01\xbe\x41\x0e\x62\x10\x22\x00\x36\x93\x39\x1d\xe0\x0e\x54\xa5\x72\x9c\x71\x38\x06\x47\x13\x9a\x61\x80\xe1\x2d\x90\x93\xf1\x74\x9d\x99\xc4\x33\x65\x3d\x3a\x7e\xc7\xec\x9b\x6b\x35\x6f\xfb\xd1\xdd\xf5\x09\xe3\x8b\xc5\x31\xf9\xfb\x32\xff\x32\x26\xe1\xf4\xea\x28\xa4\x5c\xac\x28\x21\x26\xa6\xf8\x2f\x99\x50\xb5\x52\xc2\x3a\x5c\xf7\xbb\xa8\x04\x5d\xcf\xc1\xe8\xbd\x3b\xd8\xae\x83\xdb\x6e\x91\x66\x42\x0d\xb9\x86\xb9\x31\x57\x6c\xb9\x4c\x53\x6f\xd5\xaa\xe6\xb4\xbe\xa1\x8a\x68\xfb\xfc\xaf\x98\x88\xc5\x59\xa3\x51\xda\x02\x4d\xee\xdf\x10\xd6\x30\x3f\x8d\xbd\x8d\x2d\xaf\x6f\x0f\x33\xee\x88\xd5\xc3\xe2\x57\x64\x39\x2f\xdb\x1c\x04\x3a\x6a\x12\x3c\xbe\x66\xda\x7b\x1d\x8d\xed\xe6\x94\x88\x00\x85\x96\xfe\x47\x79\x58\xb7\x21\xb5\xe3\x2f\x2a\xea\x7d\x6a\x42\xff\x31\xa6\x83\xfb\x7f\x24\xff\x42\x8e\xac\xb5\x55\x5b\x4d\x5c\xb8\x5c\x94\xac\xaa\x27\x65\x37\x35\xa7\x2d\x09\xd7\x9b\x56\x4e\x2b\x08\xdf\xca\x59\x98\x00\x15\x62\xd0\x7f\x56\x5d\xc6\x60\x71\x81\x7b\x4c\xc8\x9f\xdb\x4d\x99\xed\xe7\x45\x15\xf4\xa0\x25\x64\xc1\xfb\x8f\x13\xad\x2c\xba\x66\x96\x53\x20\x7c\x84\x39\x8e\xef\x74\xb4\xab\xd9\xe2\x57\x0c\x13\x68\xdb\xd6\x13\x64\x9a\x86\xcf\x17\x8f\x41\xc5\x68\x13\x36\x62\xae\x9c\xb6\xef\xc4\x97\x6e\x2a\x27\xfc\x33\xc0\x5b\x38\x97\x86\x24\x43\x31\xd5\x56\x5a\xd6\x34\xc4\xbc\x6b\x5a\xbd\xf1\x18\x48\x08\xc8\x0b\x9e\x73\x2d\x2d\xa3\x87\x40\xf8\x64\xaa\xd3\x8a\xb2\x91\x8e\xca\xce\x63\xa5\xcb\x28\xe0\xb4\x76\xe0\xd6\x8d\x4c\xf9\xde\x0f\x8b\xd1\xf7\xe6\xe6\x88\x0f\x93\x0e\xb4\xcd\x9a\x18\x8c\x25\xdb\x07\xc8\x12\xa1\xe3\x36\x29\xda\x37\x96\x34\xcc\x10\x0c\x0f\xd2\x2e\xbd\x31\x5b\x51\x6c\x71\x5d\x2c\x16\x92\xfe\x3c\x93\x8f\x54\x3a\x1c\xb4\x6f\x34\xd2\xcc\x9e\x52\x2a\x29\x53\x31\xd8\x19\xe3\xe6\x96\xc2\xc2\x84\xbb\x33\x7a\x52\xae\xd6\xcf\xe5\x1f\x53\xae\xd3\x18\xb0\xfd\xcb\x9e\x65\xb2\x67\xd2\x52\x14\xd4\xd7\xc7\x75\xf0\xe0\x94\xa4\x94\x0b\x2f\x15\xc8\x98\x6d\x3c\x59\x96\x54\x5c\x62\xe5\x7c\x61\x94\xb3\xb9\xb0\xf3\xe6\x35\xd0\xa5\x21\xab\x4d\x81\x90\x5c\x0d\xfa\x51\x2e\xe7\xb3\x80\x62\x41\xae\x26\x1b\x9e\x92\x1e\x92\x45\x7b\x90\xd6\xca\x40\xa9\xc6\x46\x4b\x7c\x60\xf8\x07\xef\x3a\x63\x29\x88\x07\x2d\x41\x78\x44\xb8\x49\x3f\x5b\x0e\xb3\xf9\xc0\x5c\x63\x53\xbb\xdd\xcf\x51\xb3\xd7\xbb\xa4\x6e\xbc\x00\xf2\x83\xd7\xf4\x29\xe5\x22\x0d\x04\x5d\x2c\x6b\x51\x87\x5a\xef\xb9\xe5\x86\x53\x5a\xb5\x4c\x59\x08\xa5\x12\xae\x86\x94\x33\x4f\x38\xcc\x9d\x2f\x84\xb7\x7a\xd6\x1a\xa7\x18\xfc\xeb\xeb\xba\xa2\xb0\x48\x05\xf3\xd8\xc4\xbe\x6e\xfe\x98\x6a\xf3\x8a\x64\xce\x19\xbd\x25\xdb\xec\xc3\x6b\x04\x25\x76\xa4\x71\x47\xfd\x90\x45\x59\x41\x34\x9b\x59\x40\xf6\x10\x48\x79\x41\x44\x97\x51\x40\xb8\xc0\x32\x1c\x36\xe6\x97\x6e\xa8\x7c\xd4\x2b\xc3\x40\xf6\xf0\x1b\x02\xec\xca\xfb\xd4\xae\x42\xcb\xfb\xdc\xae\x43\xcb\xfb\xf8\xce\x27\x7a\xaf\xfc\x49\xa7\xff\x45\x47\xff\x03\xd1\xf3\x07\x43\xc4\xb3\x8f\xe2\x01\x89\x3e\x62\xa9\x8f\xe2\x81\x91\x3e\xc2\x1a\xb8\x70\x8c\x43\x1f\xe5\x9d\x4f\x1f\x85\x03\x3e\x8a\x28\x3a\x3f\xd4\xa4\xf2\x1d\xdc\xc0\x4c\x29\x82\xb9\x25\x3e\x09\x24\x21\xfa\x49\x4b\x7f\xcd\xae\x31\x56\xa2\xc3\x30\xcc\xd3\x59\x9a\xd4\xd9\x55\x6d\x92\xe9\x25\x13\xcd\x9c\x34\xb7\xf6\x26\x69\x94\x63\x52\x4d\x53\x64\x9b\x03\x99\x5c\xcd\x26\x7d\xaf\x39\x21\xdd\x28\xb6\x16\xbb\x43\xe5\xa0\x1b\x88\x8b\x9c\x17\x07\x14\x39\x64\x4f\xec\x72\x79\xfd\x36\xe9\xcb\x19\xef\xb2\x73\xd8\xe5\x14\x86\xb1\x23\xfc\xab\xdc\x0d\x46\x57\x55\xc1\x75\xf5\x54\x8b\x8c\xfd\x75\xee\x74\xb3\xd7\x6c\x42\xb6\x09\xee\x91\x8b\x22\x9c\x73\xb3\xc8\xdf\xb3\xaa\xc9\xf9\x25\x92\xfb\xf6\x3c\x67\x86\x42\x43\xe8\xe7\x4a\xbf\xc0\x8e\x6b\x26\x7d\x31\xcc\x6f\x15\x80\x0a\x0e\xea\x57\xfc\x27\x56\xe4\x7a\x9a\x7b\x4e\x18\xde\xe9\xad\xa3\xd5\x4b\xba\xbf\x0f\x62\xd5\x99\x42\x75\xa8\x7c\xea\x73\x71\xf8\x68\x13\x4a\x65\xfc\xbb\x85\x51\xad\xdb\x5c\xc8\x03\x44\x8c\x78\xc2\xc5\xa2\xba\x33\x8d\x57\xf9\x11\xa0\x09\x8c\x1d\x34\xda\x83\x54\x8c\x9d\x51\xa9\xd0\x52\x1f\xa7\x9f\xd8\xae\x5e\xfa\x00\x8e\xdb\x95\x68\x21\x78\xc6\xb1\x2d\x02\xcb\x42\xe4\x1c\x8f\x2e\x8c\x49\x5a\x5c\x18\x68\x1e\x5e\xe0\x90\x20\xe8\x88\x0b\xab\xc2\x77\x84\x8a\x47\x5a\x68\xfa\x07\x38\x17\x3a\x48\xcd\x96\x0d\x4d\xd2\x57\x8f\x9d\xc0\xfc\xc2\x49\x08\xee\x49\x48\xfe\x91\x7f\x69\x4c\x25\x94\xfd\xf2\x22\x07\x34\xd1\x92\x07\xc5\x27\xbd\x2f\x4e\xa1\x39\x01\xf4\x49\xde\x8b\x96\x79\x53\x92\x7d\xb3\xb8\x6b\x7e\xe8\x66\x78\xc7\x6e\x57\x20\x3f\xe6\x62\xcf\xc0\xa4\xa9\xe9\xbe\x90\x30\xd0\xbc\x93\xb9\xdc\x9b\x07\x5f\xda\xa1\x33\x29\x36\xba\x84\x5f\xfd\xf2\xc0\xc0\xd7\x3c\x88\xc8\x5e\xd6\x08\x90\x7b\x55\x86\xfe\x52\x91\x7b\xd3\xca\xbb\x70\x92\xbe\xdf\x79\x4d\x9c\x1d\x12\x72\xdb\xec\x04\x9a\x62\x0a\xb4\x31\xc8\x4a\x21\xd5\x07\x24\x5d\x98\x0d\x07\xd2\xc9\x45\x53\x36\x7f\x11\xd0\xc3\xe5\xbc\xda\x5f\x18\xc0\xf6\x45\xd7\x64\x78\x9b\x7b\xc1\x1b\x90\xbb\x0d\x46\x1d\x4d\x6e\x2c\xd7\xcd\xc3\x35\x84\x01\x8d\xb9\xf9\xee\x46\xea\x27\x07\xff\x67\xce\xed\xb5\x74\x4b\x68\xc2\x0c\x7c\x70\x5d\x8d\x31\xb4\x14\xb8\x27\x5c\xc3\xdb\x37\xea\xe7\x1f\x65\x92\xd3\x07\xca\xee\xc0\x47\xf1\x3e\x17\x42\x6d\x70\x33\x46\x97\x22\x1b\x44\x84\x9e\x57\x15\xc4\x11\x24\x30\x81\x7f\x01\xc3\x4d\xbc\x21\x27\x7a\xd8\x75\xf3\xb4\xc6\xe6\x28\x96\xb6\xfd\x67\x6c\x44\x6d\xe5\x4f\xda\x8f\xe9\xef\xbf\xcd\xf9\x2f\x25\xd1\xa1\x95\xd7\x28\xa2\x0a\x76\x50\x86\x7a\x78\x78\x7e\x6d\x07\x48\x24\x66\xfc\x08\x12\x58\xf1\x79\x7f\x66\xd8\xb1\xb9\x2e\x8a\x06\x66\x02\x31\x90\x07\xe6\x3c\xfe\xc7\x12\x8a\x05\x7f\x24\x58\x8a\x45\x7f\xa8\xe9\xd2\x02\x49\x10\x4b\xe6\x3c\x59\x10\x2c\xe6\xda\x08\x32\x58\xf3\x79\x7f\x56\x58\xfa\xa1\x2e\x58\x39\xa7\xd0\x7e\x6f\x65\x17\x1d\x9e\x72\xcf\x2c\xcc\x10\x33\xdc\x0f\xc3\x9d\x7f\xcf\xfe\xfd\xd5\xa1\x63\xd5\x62\x63\x32\xa3\x86\x3b\xa1\xe7\xc1\xfd\x32\xa5\x63\x32\x66\x63\x32\xa7\x86\xbc\xc1\xe7\x81\xfd\x32\xa9\x63\x32\x6a\x63\x32\xab\x07\xda\x39\x38\x60\x7c\x72\xb5\xab\x27\xff\x0c\xf0\xf4\x86\xdd\xfa\xd9\x8e\x4d\xe1\x3d\xfc\x65\xac\xff\xcb\xb6\xbf\xbf\x00\x78\x77\xa0\x28\x4d\x08\x6d\x25\xb5\x4d\xbf\x1c\xa7\x99\x6e\x20\x14\xfa\x60\x04\x4c\x60\xc2\xb8\x3a\x35\x71\x41\x7f\x92\xd4\xee\x50\x10\x06\xe0\x09\x70\x08\xa9\x21\xce\xca\x65\xb8\xcb\x32\x2f\x67\x8d\xe6\x67\x1b\x5c\x3b\x91\xce\x22\x9f\xea\xed\xdb\x9d\xc2\xcf\x4d\x2f\xbf\xdd\xce\x0d\xc9\x03\xb7\x1b\x19\x41\x0b\x1f\x74\x3e\x24\xc7\x5b\x1f\xf6\x53\xee\x4f\xbf\x1f\x72\xfe\xba\xd0\xf3\x73\x4b\x44\x7e\x7f\x0f\x79\x79\xbe\x62\x3b\x0d\xc2\x7f\x48\xa0\xfc\x6c\x22\xc2\xe4\xcc\x43\x92\x58\x11\x0f\xd1\xaa\xef\xe0\x6d\x7f\x80\x05\x0b\x3f\x8f\xc3\xc2\x20\x59\xa0\x35\xd3\x02\x96\xf2\xea\xd3\xc0\x8e\x71\xf9\x56\x6f\x46\x12\xd7\x6a\xbb\xe1\xe5\xa0\x46\xbb\x62\xf5\x67\x63\x0c\x8e\x71\xdf\xe0\x81\x20\x00\x5e\xca\x69\x81\xea\xe2\xfe\xd1\xcf\x4a\x9c\xbc\xa9\x94\xd6\x78\xf9\x8f\x7f\x80\x8a\xe6\x70\x83\x0b\xd4\x15\xf1\xf1\x04\x31\x90\xb7\xfa\xa9\x88\x20\x6b\x3e\xe4\x85\x9d\x09\xf4\x44\x22\xbc\x85\x7c\x45\xc1\x56\x9c\x56\xfd\xc0\x8e\xb6\x14\xa5\x05\xbf\x0a\xda\xd6\xd2\xce\xfe\x75\x50\xd8\x14\x91\x09\x5e\xff\x6a\xd4\x11\x98\x2b\x80\x5f\xbc\x33\xc2\xa2\x75\x8b\xce\xea\x99\x52\xf5\x4e\x69\x06\x3d\x30\xca\xfb\xa6\x76\x5d\x7f\x57\x1d\xcb\x4f\xfa\x19\xd9\x17\xaf\x46\x46\xa6\xe0\x68\x06\x0a\x7c\x5d\x87\xfe\x2a\xbe\xbb\x31\xd1\x84\xce\xe8\xcb\x17\xbf\x32\x79\x4f\x71\xf9\xc7\xf2\x44\xf1\x7c\xde\x57\xb5\x4a\xf9\x5e\xbf\xe6\x78\xac\x71\xf1\xc3\xac\x81\x40\x9e\xde\x1e\x35\x48\xde\xff\xa9\xb1\x4a\x3f\xd2\x44\x90\x84\x34\x36\x43\xa0\x8a\xe3\xe4\x1f\x80\x6c\x60\xd0\x07\x36\x18\x08\xb3\x46\x00\x5d\x80\x06\x2e\x16\xc4\x86\x04\x76\x01\x41\x35\x37\x52\x30\x08\xe0\xf8\xcb\xc4\xc1\xa8\x0b\xb3\x60\x92\xb7\x6c\x3e\x51\x92\x02\x4c\x5e\xaf\x31\xb5\x51\x46\x91\x9d\x4f\x90\x89\x91\x20\xac\x62\xcc\x3d\x3f\xac\x64\x63\x8c\xa1\x60\x01\x8b\x46\x6b\x78\xe2\x36\xf5\x2e\x2b\xf8\x7a\x28\x34\xca\x29\x57\xf3\x97\xd1\x8d\xb7\xee\x6d\xc8\xa9\xf6\x00\xb6\xbb\xb2\xd0\x7d\xd2\x55\xba\x0a\xc7\x56\xdb\xc5\x71\xcc\xf4\x92\x6b\xc9\xb5\xe0\x7c\x4e\x7c\xdd\xd9\xd7\x29\xb7\xdd\xb9\x6c\x24\xf8\xb5\xe9\x76\x46\x67\xa9\xce\xb4\xd6\x6b\x7d\xc7\xd7\x6c\x8c\x3c\xf7\xec\xe7\x11\xe2\xf8\x30\xb2\xf1\x56\x27\x75\x97\x64\xdd\x10\x09\x0b\x1c\xcf\xb9\xf5\xfa\x92\xe6\x8f\xef\xa1\xaa\xfc\x7e\xc7\xe3\xe1\xa4\xe8\xe4\x01\x12\xae\xf7\x78\x9c\xc7\xe9\xee\x3a\xe6\xbe\xce\x9c\x20\x78\x92\x20\x76\x53\x90\x12\x95\xad\x9e\x04\xa4\x4b\x61\xd9\x01\x15\x32\xbf\x68\x1d\x3a\x46\x99\x70\xc9\x05\x98\x64\x3b\x0c\xbf\x08\x4f\x58\xc1\xdc\x4c\x72\x0d\x0a\xd6\x82\x37\xdf\xb8\x80\x80\x03\x26\x56\x4d\x39\x07\x5f\x8e\x79\xbb\xa9\xf6\xac\x35\x63\x65\xea\x70\x81\x39\x9e\x68\xd3\x1b\xfa\x18\x24\xd9\x92\x09\xd6\xc4\xa7\xe4\xe4\xc7\x24\xec\xc3\xee\xc2\x0f\xd4\x60\x4f\xdd\x50\x97\xb1\x90\xae\xb7\xbb\x7b\xe0\x17\x1b\x21\x8c\x9f\x75\xd9\x1e\x91\x0f\x2a\xb8\x90\x08\x1d\xfa\x31\xd1\xfe\x9f\xf7\x06\x71\x75\x75\xc1\x1e\xc2\xf4\x48\x77\xb7\x18\xa4\x4d\x8a\x4e\x63\x7c\xeb\x89\x09\x4b\xac\x26\xb6\x0d\x08\xac\xc6\x06\x2c\x88\xab\x3f\x2f\x55\x6b\x6b\xd4\x5e\x82\x46\x82\xf5\x5f\xf9\xec\x06\x27\x1c\x9f\xfe\xd4\x4c\xfa\x76\x19\xc9\x94\x09\xf8\xa8\xa4\xcc\x60\xbc\x59\xce\x0d\xf2\xe4\xf2\xea\x6e\xa7\x7c\x6b\x22\xb6\xad\xce\x75\x42\x20\xd6\x49\xcc\x31\xff\x80\x45\x08\xc9\xb9\x18\x32\x18\x98\x09\x0c\x9a\x6a\x7c\xa9\x32\x4a\xc5\x90\x5a\x15\xfa\x8c\xc3\x8a\xb2\x89\x08\x63\x3c\x11\x31\x1f\xfd\xc8\xb8\x99\x90\x7a\xa9\x8e\x42\xfc\x61\x6c\x20\x24\xff\x52\xca\x45\xdc\x4d\x45\x6d\x5c\xc0\x78\x95\x6c\x23\x60\xe6\x96\x43\x69\x96\xa9\x6f\x98\x32\x6b\x02\x8f\x24\x11\x4b\xfc\x53\xad\x9c\xc6\xa1\xac\x70\x06\x4f\xa4\x98\x28\x41\x7d\xa8\x66\x55\xfe\xa7\x40\xd3\x4a\x1f\x1d\xb5\xb0\x9e\xc5\xac\x7f\xe8\x52\xce\xe2\x13\xf3\x60\xfa\x58\xf1\x99\xaa\x6c\xa7\x9d\x95\xae\x6f\x35\xa6\xfd\xcf\x54\x88\x8a\x57\x4b\xeb\x79\xa1\x54\xea\xb2\xe6\xf5\x29\x07\xd7\x69\x4f\xf9\xf9\xdb\xf5\x76\xba\xcd\xbb\xd4\x57\xb7\xa0\xb1\x90\x82\xcf\x8a\x91\x90\x85\x4a\x3d\x51\x31\x6f\x96\x62\x3a\x6c\x60\xfc\x01\xb6\xfb\x26\xea\xe5\xf1\xaf\xe6\x6b\x5b\xe3\xa3\xd6\x68\x56\x4a\x4b\x08\x94\x4f\xa4\x9b\x3a\x67\xb7\xe1\xea\xe8\xdf\x1f\xa7\x21\x15\x5d\x66\xe7\xa3\xf1\x40\xed\xae\x0e\xfa\xea\xf2\x85\x1a\x86\x5a\x0a\xa6\x05\x3f\xaa\x2c\xea\xeb\x25\xd3\xd3\xa3\x8b\x83\x6b\xcc\xfa\xf0\x15\x4b\xfe\x2f\xba\x12\x72\x88\x64\xce\x94\xe3\x4a\xc3\x47\x7e\x5a\xc3\xbd\x5a\x03\x68\x7e\x4a\x03\x02\x35\x7a\x79\xa8\xb5\x48\x44\x4b\x24\x94\x63\x3a\xbd\xa3\x3c\x57\xfc\x1c\xc4\x18\x77\x78\xa3\x55\x59\x00\xff\xd5\x6b\xc9\xa2\x84\x03\xee\x50\xe0\x9b\x60\x11\x94\x13\x93\xfb\x16\x43\x26\x6d\xd4\x58\x00\x7a\xbf\x92\x42\x32\x8d\x7a\x1d\x5f\x65\xbe\x9b\x3b\xc9\xee\xd1\xd6\xca\xb5\xbd\xb3\x9d\x53\xc6\x83\x58\xa8\xd7\x65\xa3\xf8\x63\x7e\xfa\x6b\xed\xed\x65\xf8\x66\x86\xd3\x4f\x6e\x37\x9f\x1f\xcd\x15\xcb\xed\xec\xcf\xb1\xe0\x8f\xbb\xf6\xeb\x8f\xd5\xed\x2c\x4e\xc2\x68\xea\xdb\x5b\x64\x2f\xa3\xaf\x31\x86\x52\x7a\x16\x49\x60\x28\x03\x03\x96\x4c\x8b\xbb\x80\x14\xfa\xe4\x61\xec\xc7\x48\xea\x47\xeb\x5a\xf2\x3d\x76\x83\x38\x29\xfe\xef\xc6\xcf\x4d\xdb\xfd\x15\xf4\x6f\x48\xbb\xb7\xf7\xd4\xe7\xab\x59\xc3\xe8\xa1\xe7\x8b\xce\x6b\x34\xbc\xd9\xbe\x9f\x06\xfa\x27\x5c\xb0\x40\x54\x11\x34\x74\x36\x1f\x1d\x09\xbb\x38\xa9\x62\xe0\x63\x3e\x16\x60\x45\xd8\x30\x8e\x15\x44\xc9\x1a\x98\x65\x11\x25\xdb\x9f\x4a\x52\x86\x64\xe3\x33\x0e\x35\xb4\xb0\x96\x6e\xc0\x45\xf5\xd6\x36\xb8\xb0\xf7\x63\x58\xc1\xb1\xfd\xf2\x82\xb2\x6b\xcf\x86\xc7\xc3\x27\xf9\x55\x8b\xb8\x6d\xc6\xcb\x94\x86\x60\x0b\x44\x4c\x83\xdc\x0b\xf3\x24\x40\x81\xd1\x1f\x20\x6c\x6e\x02\x89\x12\x0f\x70\x0d\x22\x18\x33\xa0\x88\x13\xd5\xbb\x46\x0d\x32\x74\xbf\x5e\xbe\x58\x06\x67\xa9\xed\xb2\x64\xf2\x80\x97\xf3\x58\x95\xf6\x5a\x3d\x18\xb7\xc0\xf2\x1c\xbc\xec\x6b\xb5\xdb\x13\x19\xbe\xe1\xd9\xa1\x6c\x80\xe0\x3d\x39\xa4\x8d\x13\x14\x09\x78\x53\xc5\x26\xae\x65\x15\x81\x53\x4c\x5c\xb6\xdc\xff\xd9\x28\x9c\x4c\x58\x20\x77\x54\xea\xcd\x8c\x67\x5a\xdb\x8d\xbf\xaa\xe0\x5c\xfc\x00\x1e\xf3\xf4\x13\x7e\x38\xfb\x3c\xea\xe4\x37\xc8\x2f\xfa\xee\x58\x5c\x86\x46\x49\x7d\x64\x99\x7b\xe5\x49\x72\x17\xdf\xb1\xf0\x98\xf9\x6d\x7f\xcc\x65\x46\x52\xc9\x03\x82\x85\x47\x01\x58\x43\x0c\x49\x5a\x8b\xcb\xa4\x0c\x2b\x9d\x1c\x85\x65\xa1\xbc\xf1\x65\x18\x5b\x39\x36\xd0\x88\x14\x4a\xd4\x93\x3e\xc6\x66\x4c\xdf\x83\x95\x94\x51\x28\x09\x7c\x11\x35\x2a\x54\xb2\x64\x1c\xb7\x9b\xde\x5c\x19\x8c\x79\xe1\x3e\x47\x87\xd3\x03\x85\x91\xae\xed\x69\x05\xea\xf3\x33\xe5\xfc\x82\x9f\x77\xd4\x09\x4d\x01\xef\x29\x8a\xb9\xcb\xc4\x25\x69\x76\x40\x2a\x12\xa8\x48\x4a\x84\xad\x8a\x30\x48\xd6\xc1\x41\x2a\xa0\x29\x2b\xe0\x97\xe5\x26\xcf\xe9\x4b\xcb\x48\xa9\x76\xd8\xe5\x41\x56\x80\x54\x0a\x33\x63\x79\x44\xce\x41\x61\xa0\x9a\xcc\xb4\x6a\xa6\x91\xd8\xf8\xfa\x5a\x3f\x5d\xac\x28\x5a\x4c\x2e\xcf\xd7\x57\x6a\x91\xcc\x72\x1b\x6a\xdd\xdd\xf9\x88\xbd\x26\x1a\xce\xbe\x2e\x41\xb8\xe2\x78\xa5\x19\x5f\xfb\xfd\xaa\x0b\x0d\xd6\xbf\xbe\x1a\x5d\xfe\xbc\xc6\xb2\xb1\xe2\xf9\xf9\xf5\xbe\x92\xbf\x0d\xc4\x2b\xdd\xee\x58\x3f\xb2\xe2\x73\xff\x64\xdb\x8d\x53\x7d\x81\xfa\x47\x68\x93\x23\x12\x91\x36\xf7\xa1\x8f\xe6\x81\x03\x70\xe6\xea\xf8\x5f\x62\x77\xf2\xd0\xa8\x29\x4d\xa9\x64\xbd\x5e\x11\x94\xd8\xbd\x4e\xc7\x86\xf5\x28\x78\x2d\xc0\xf4\x31\x07\xb8\xe2\x60\xd6\x15\xc1\x05\xf4\x1b\x14\xc7\xe2\xea\x18\xf8\x95\x2b\x50\xd4\x62\x18\xec\x3f\x45\x23\x25\x62\xa6\xd4\x09\x40\x45\xcc\xce\x9e\xd1\xbe\x1a\x8e\xcc\x61\x9d\x2a\x51\x2f\x34\x46\xa4\x51\x7d\xa9\x68\xe8\xc2\x18\x93\x6a\x69\xcb\x75\xd4\x6c\xdc\x93\x2b\xd9\x59\xdd\x0d\x82\x88\x1b\x7b\x56\x4f\xb6\x05\x79\x7d\xfd\x85\x95\x63\x9d\x69\xa7\x9b\x6a\x6a\x24\xa5\xec\x70\xca\xcf\xdc\x3d\xad\xa2\x8d\xbe\xef\x5b\x16\xb2\x37\x5b\x93\xdc\xd5\x00\x03\x15\x5c\xbf\x02\x7c\xa7\x56\x4e\x82\xc5\xca\x68\xb1\x54\xf2\x2b\xe0\xe2\xfa\x30\xa0\xc9\x65\x48\x43\x0c\x00\xf9\x3f\x79\x17\xd9\x8d\xaa\x0a\xc6\xd7\x7d\xea\xa4\x56\xf6\x29\x28\x47\x66\x66\xc5\xe9\x09\xc4\xd1\xe1\x02\x0d\x42\x49\xb2\xca\xfa\x5d\x5e\xfd\xf7\x4f\x37\x31\xa4\x56\xa6\x7d\x10\xb7\xb5\x9a\x6a\x56\x5b\xdd\x85\x6d\x9d\x0b\x6f\x96\xe7\x25\xd0\xdf\x3c\xa7\x6c\x92\x0c\x2b\x2b\x07\x17\xcb\xae\x3a\xcb\x2f\x91\x3c\x3a\xe8\xad\xab\xb2\x99\x96\xe0\x3a\x35\x01\x58\x4a\x2b\x07\xe1\x13\x9f\x16\x39\xf5\x55\x83\x2d\x8f\xbc\x42\x1a\xa1\x3e\xe7\xf5\x06\xa9\x26\x67\xf5\x3f\x4f\xc9\xd5\xcf\xf3\x1d\x1d\x31\x01\x5f\x01\x4c\x83\xae\x97\x73\xe3\xb4\x9f\x15\x0d\xc6\x3e\x22\x7e\x26\x22\x76\x1a\x44\x08\x65\x10\xfa\x41\x5b\x7e\x84\x08\xe0\x98\x8a\x96\x14\xc0\xd0\x82\xa0\x8a\xe4\xa0\x8c\xad\x10\x18\x7f\xcb\x21\x8a\xeb\xcb\x88\x4d\x95\x52\x41\x48\x48\x5d\xe6\xa3\x3c\x9b\x23\x78\xef\xbf\x6f\xe5\xbc\x42\xc6\x02\xdc\x78\x36\xef\x3f\xef\xdf\x6a\x4b\xbb\x66\x0f\x13\x0c\x3e\x7a\x99\x5c\x1f\x16\x05\xf9\xdd\xa3\x47\x1d\x99\x72\xc9\x71\x25\x49\x3a\xfd\x89\x24\xc4\xc8\x12\x38\xf5\x0b\x08\x18\x0d\x60\x20\xc3\xa2\xc2\xba\x7f\xba\x40\x79\xf3\x09\x40\x3d\x55\x2c\x15\x8d\x2b\x04\xaa\x55\xc1\x86\x4d\xcd\x99\xbb\x8c\xe5\x2b\x5d\x6c\x1f\xd2\xa7\x1c\x95\xb9\x24\x08\xc8\x94\x7f\x95\xa4\x7e\xb6\x9d\x68\x68\x8c\x9c\x9c\x7e\xd7\xeb\x13\x06\xee\xff\x62\x6f\x9b\xb5\xb0\x84\x4a\x97\xcb\x49\xa7\xc0\x2a\x63\x49\xbb\x5c\x56\x36\x4c\x56\x73\xcc\x1f\x11\x3f\x54\xa2\x77\x6f\x16\x46\xab\x70\xe9\xe1\x60\x76\xf8\xea\xd9\xf8\xee\x9e\xff\x5c\x77\x3a\x6e\xb4\xac\xa8\x59\x5b\x4e\xc2\xeb\xa4\xa1\x14\xeb\x2f\x05\x79\x5f\x53\x0e\xb0\xd0\x0b\xfc\x41\x91\x68\xd1\x37\x4e\xfb\x07\x9c\x78\x9f\x19\x26\xcd\xbf\x02\x0d\x98\x30\x4c\x36\x49\x74\x25\x28\x4a\x60\x2e\x2a\x46\x3b\x2a\x4d\x29\x4a\xa6\x96\x94\x59\x9d\xfc\x46\x6d\xf6\x76\x91\x3e\x2e\x72\x42\x9b\xa5\xee\xda\x66\x64\x4a\x4e\xad\xce\x46\x06\x72\x1e\x0e\x8c\x21\x26\x9e\x06\x73\xa0\x2e\x29\x68\xe7\xf1\x7b\x9b\xe2\xaf\xf1\x19\x1c\x9e\x3f\xe1\x11\x92\x39\x49\x3b\x4b\x08\x18\xf5\x73\x39\xbb\x75\x54\x65\x46\x29\x6f\xcc\x04\x87\x92\xfa\xa4\x82\x0d\x37\xf1\x19\x68\xb6\xc3\x98\xdc\x58\xb5\x73\x24\x51\x97\xee\x28\xf6\xaa\x6d\x83\xd0\xf5\x2e\xa3\xec\xf4\xf8\x7e\x81\x98\xdc\xfc\xe8\xf1\x3a\xdc\x2a\x81\x9a\x55\xef\x6a\x26\xdc\x5c\x77\x31\xec\x4b\xe8\x35\xd4\x8a\x6e\x32\x51\x21\x04\x0c\x60\x00\x2a\x15\x1c\xd9\x05\x22\x40\x84\x03\x5d\x80\xe6\xfa\x50\x15\x17\x62\x3b\xb3\x27\xf6\x90\x61\x1d\x8b\x8d\x59\x72\xa0\xed\x10\x5f\xa7\xfc\xe6\xe0\x83\x33\xe8\x6c\x21\x0d\x4e\x93\x3d\x5d\x64\xee\xef\xb9\xe2\x80\x5d\xcd\x41\x23\x93\x6a\x0b\x83\x21\xbd\xe9\x81\x8c\xdb\x36\xa1\xa3\xb6\x75\x9a\x2f\x2c\x49\x4a\x9b\x09\x98\x78\x28\x19\x94\x92\x36\x63\x29\x66\xa6\xa1\x30\x13\x8c\x17\x01\x24\xf9\x01\x55\xaf\x1a\x17\x35\x56\x29\xd1\xd8\x9d\xd0\x9b\x52\xb0\xcd\x5c\x39\x97\x17\xed\x6d\x85\x64\x12\x9a\x1a\x69\x9b\xc6\xd1\xa9\x23\xb9\x57\x57\xec\x8d\xf5\x57\xce\x9a\xdb\x79\x42\xb2\x18\x39\xec\x09\x46\x79\xac\x34\x94\xc5\xce\xc5\xcb\x1d\x82\x8c\x18\x92\xdb\xaa\x93\x13\x0b\xc6\xaa\xf4\xde\x94\x6e\x06\x2e\xa3\x9e\x62\xb7\x46\x56\xd6\x2b\x2c\xb1\xcf\x1c\x21\x9b\x56\x68\xb4\xd4\x7a\x1b\x46\x3a\x3e\x86\x7d\x96\xb8\xec\x0c\x8f\x60\xbf\xb3\x4b\x4b\x1b\x40\xa1\x95\xad\x44\x1c\xed\x05\xa9\x5f\xdd\xd5\x85\xdc\xc3\xf2\x2b\x16\xad\x8f\xed\xb0\xc5\xb8\xfc\x7b\x43\xd9\x5c\xd4\xd1\x9b\x82\x31\xe9\x8e\x12\x13\x82\x64\x65\x08\x1e\x53\x65\x71\x40\xc0\x83\x3b\xfc\x45\xca\x4b\x91\x67\xf0\xf8\x10\xc7\x02\x41\x7b\xd0\x99\x49\xc6\xd9\xac\xce\x78\x69\x73\x28\x28\x28\xe9\xf1\x09\xb3\xf9\xa2\x18\xb0\x18\xff\xb4\x82\xc6\xcd\x53\x31\x61\xd0\x64\x7a\xba\xd0\xd3\x8c\xa0\xb2\xae\x78\x38\x34\x53\x91\x45\xd0\x39\x33\x55\xd1\x6b\xfc\x12\x46\x67\xde\x86\xeb\x4d\xe0\x61\x1f\xbc\x10\x53\x6a\x46\x79\x39\x8a\xdf\x73\x71\xdc\x7c\xea\x39\x2b\xeb\x77\x67\x82\xc8\x39\xea\x9b\x5e\x31\x83\x96\x5a\x4c\x17\x10\xed\x24\x96\x9b\x6f\xbc\x7c\x87\xf7\xfe\xc2\xd3\xcd\x68\x70\xf6\x9c\xca\xcb\x78\x9c\x6e\xd2\xe5\x6e\x6a\xbb\x00\xf1\x49\xd4\xb1\x9d\x24\x39\xe7\xea\x2a\xa9\xcf\xf5\x14\x8a\x6e\xac\xa8\xc0\xb8\xdd\xc4\x91\xec\x90\x57\xae\x81\x32\x0c\x04\x7a\xf3\xa3\x52\xfb\x7b\x77\xe0\x05\xd6\x12\xee\xe4\x5d\x96\x4e\x61\x6a\x83\xff\x8e\x73\x89\xe0\x6a\x8f\x0c\xe5\x96\xcc\x3f\x6b\x53\xc1\xdc\x40\xec\x29\x22\xc4\x29\x7a\x0e\x90\xba\x87\xfa\xf6\x5f\x10\x86\x1d\xe2\xa3\x26\xde\xc7\x4a\x92\x9b\xcf\x07\x6a\x72\x5b\xd4\xc7\xf5\xa4\x53\x6e\x08\xca\x96\x13\xff\x1c\xe2\x6e\xb9\xa2\xb4\xf6\x80\xf0\xef\x65\xb2\x4f\x2d\x9c\xb3\x05\x04\x42\x25\x14\x81\xc6\xc9\x84\xcf\xc1\x26\x21\x6c\x40\x25\x4d\x28\x48\xa3\x4e\xd5\xf3\x9f\x47\x33\xae\xec\xd1\xa5\xf0\x36\x86\xde\xc4\xe9\x39\xff\x70\xcc\x62\x9b\x25\xbf\xd7\x0e\x76\x52\xff\x63\xa1\x78\x64\x3a\x7a\xb4\x3a\x2a\xa7\xa1\x64\x5d\x74\xe1\x64\x70\x8a\xe3\x56\x56\x14\x84\xdf\x79\xe0\x75\x5f\xfa\xec\xc3\xee\x55\xb0\x4a\xda\xb0\xbf\x9c\xb1\xd3\xa8\x3a\x30\x63\xea\x52\xe2\x43\x1d\x50\x30\x85\x22\x90\xe7\xe7\x24\x23\x32\xe1\x4f\x6f\xa8\x7d\xf4\xc0\xc2\x50\x7a\x61\x87\xcb\x27\x6c\xf1\xb5\xfc\xd1\x23\xd3\x2e\x87\x0c\xfd\x3e\x26\xfe\xfd\x17\xd4\xb1\x6d\x8b\x19\x72\x74\x6a\x5a\xf2\x78\xfc\x68\x9b\x5c\x9e\xa0\xb4\x25\x61\x22\x8e\x7f\xa6\xaa\xa7\xfa\x17\xf3\x71\x11\x58\xd7\xe3\x1d\x2f\xe3\x16\x34\xca\x1d\x42\x08\x49\xea\x21\xb1\x22\x32\xfa\x55\xf6\xa4\xed\xef\x62\x69\xbd\xe1\xc1\xf8\xcb\x4f\xa9\x68\xc4\x43\x66\x87\xd3\xc1\x33\xf4\x5a\xec\x95\xab\x97\x03\x83\xdf\xe0\xa8\x25\xa7\xd5\x64\x23\xac\x4b\xa4\xda\x09\xbc\xdc\xd9\xc3\x05\x74\x0a\xcf\x5a\xba\xd9\x0d\x47\x5d\x83\xe9\xa9\xbb\xdc\x47\x01\x70\xe5\xe0\xd1\xb7\x6b\x0d\xc9\xb1\x29\x57\x76\x84\x4e\x31\x57\x6e\xfd\xf7\x80\x8b\x79\xb0\x6b\x9b\x3c\x1f\xea\x78\x73\xac\x76\x58\x7f\x51\x33\x65\xd8\x82\x3e\x36\x94\x7c\x58\x41\xdf\x85\x21\x69\xf6\x2d\xeb\x1f\x28\x38\x41\x2c\x14\x77\xa2\xa5\x76\x9f\x5f\x13\x60\xe0\xfe\x24\xd0\xd7\x87\xd2\x30\x02\xf9\xb8\xcb\xb8\x0a\x5c\x65\xaa\x62\xcd\xc8\x6b\x82\x08\xb8\x78\x2d\x1a\xa5\x14\x98\x83\x04\x04\x61\xc2\x32\xd8\x9f\xa2\x36\x2d\x28\xad\xfa\xad\xb4\x9c\x94\x0c\x4b\x49\x19\x59\xb8\xf8\x70\x50\x0e\xae\xe8\x1f\x9d\x04\x99\x16\xad\xa4\x98\x88\x9e\x01\xe3\xc6\x0f\x2d\xa5\x3d\xcd\x52\x48\xec\xf6\x2c\x82\x4d\x74\x11\xcc\xd4\x75\xe6\x88\xf9\x75\x21\xe6\x7a\xe7\xbc\x99\x7a\x75\x1b\x0c\xe7\x93\x65\xe3\xf2\xe1\x3d\xc1\xd7\x92\x8b\x07\x54\x86\x74\x66\x61\xe4\x56\x82\x61\xdb\x28\xe1\x14\x3e\xf7\x86\xca\xdf\xf5\x6a\x15\xe9\x31\x1d\x2f\x03\xea\x1d\x0d\xc3\x68\xc9\xa8\x94\x0a\x4b\xa4\xd8\xef\xaf\x00\xc3\x80\xe2\x55\xb8\x1b\x4f\xe7\xf7\x95\xd5\xdb\x44\xee\x67\x41\x53\x5b\x5d\xa9\x2e\x4a\xda\x9d\x05\xeb\x65\x25\x9b\xc9\x46\xaf\x54\xa9\x97\x81\x85\x40\x95\xce\x4c\x51\xbd\x35\x05\x5b\x89\x17\xf0\xe2\x74\xf4\x7f\x6b\x9d\x6e\xab\x37\x5f\x3b\x01\x1d\xcb\xa9\x3f\x87\x7d\x3b\x7a\x38\x56\x30\xaa\x74\x30\xb9\x4b\x43\x16\x81\x10\x7a\x22\xde\xce\x77\xd7\x52\x10\x10\x50\x6a\x72\xdf\x3b\x9f\x9d\x01\xb0\xaa\xe8\x3b\x30\xc7\xce\x81\xb1\x83\x1a\x30\x7d\x70\x8f\x3f\xf9\x81\x08\xe2\xf1\x09\x82\x71\xe3\xb8\xc1\x40\x04\x41\x78\xc5\xe1\xf2\xf8\xc8\x85\x00\x3f\xb8\x03\x94\x05\xb0\x69\x47\xa6\xfc\xa6\x5d\x6c\x26\x8e\xe8\x5e\x4f\x1c\x3f\xe7\xc1\x47\xc2\x1b\x0f\x90\x56\x77\x7c\xa4\x92\x1e\x73\x42\x06\x63\x26\x0a\x9f\x63\x28\xc0\xe5\xc1\xa1\x58\x00\x90\xa3\x09\xaf\x01\xaf\x22\xd9\x6c\x9e\xa0\x24\xc6\x35\xec\x95\x0b\x6a\x52\xe0\x75\x81\x1d\x63\x36\x1c\x01\xdb\x66\x5a\x15\xd3\x59\x82\x21\x9a\x20\x8a\xf9\xb3\x40\x57\x7f\xda\xf2\x87\xfb\x84\x91\xc6\x0d\xa3\x02\xa3\xa9\xf2\xa5\x47\x9b\xd3\x6f\x9a\xe2\x13\xaf\xb6\x05\xa3\x76\xbf\xd5\xdf\x5a\xee\xb5\x40\x73\x7b\xea\x71\xda\x8b\x1a\x46\x83\xc9\x20\x35\xae\xee\xdf\xc0\xc8\x88\x10\x4d\x47\xfa\x42\x83\xbc\xb5\x4f\xc2\x84\xc0\x9e\x92\xad\xac\x13\x81\x4a\xb1\xb4\x81\x2a\x15\x31\x88\xab\xca\x0b\x68\xe2\x65\xda\x57\xf5\xf3\x3e\x64\x2b\xa8\x78\xed\xa7\x2f\x70\xa5\x89\x0e\x9c\x99\x9a\x07\xe3\x07\x0c\x32\x14\xba\x56\xae\x94\x4d\x43\x04\x40\xf2\xb7\x2f\x79\x2d\xb6\x69\x9d\xa4\x69\x3b\x8f\x22\xd1\x9d\x33\xaa\x31\x95\x15\x28\x05\x2c\xb3\xe4\x08\x70\x34\x92\x3f\x74\x66\x63\x02\x71\x63\x82\x4a\xc3\x9f\x64\xd3\x3e\x69\x34\x3d\xd0\x73\x98\xf5\x2f\x4e\x69\x5b\xa8\x7b\xe9\x3f\x0c\x2b\x98\x1b\x4d\x87\x0f\x19\xc9\xa3\x64\x29\x1b\x86\x88\x46\x36\x52\xe4\x31\x2d\xf0\x7a\xeb\xba\x7c\x7e\x9c\xec\x8d\xb6\x3a\x36\x1a\x7e\x36\xba\xde\xe6\xe6\xde\xb6\x3a\x7a\x1e\xd7\x1d\x1d\x53\xfa\xde\xed\xbf\x07\x29\x8e\x8f\x13\xd5\xa1\xb3\xd4\x3f\x3f\x07\x4c\xa1\xad\xd5\xcc\xa9\x76\x9d\x8c\xca\x2d\x06\x1e\xba\xa2\x3a\xb3\x63\xc1\xcf\xa1\x2b\xe1\xf3\x39\x1f\x51\x57\xc5\x87\x26\x11\xbb\xf8\x10\xfa\x46\x5b\x74\xf9\x08\xd0\xe9\x8a\x19\xfe\x49\x33\xcf\x20\x8f\xef\x84\xd4\x30\x04\xd4\xac\xd4\xa2\xb8\x33\x60\xa7\x97\xc3\xfe\xf0\xce\x9a\x37\xa0\x15\xac\x8f\x9e\x83\xeb\x54\x8b\x87\x6d\x6f\x4f\x7e\x7a\xe6\x42\xd6\x9d\x77\xbb\xa5\x72\x59\x6b\xce\x26\x5b\x21\xea\xec\xae\x26\x89\xf4\x22\x9e\xb5\xdf\x3f\x47\x1d\x89\xbd\xbd\x2b\x91\x03\x03\x9b\x5c\x0e\xf7\x01\xab\x62\xa1\x62\x76\x37\x76\x84\x3d\x3d\xf7\x8c\x80\xbf\x7b\x97\x69\x10\x16\x09\x88\xa0\x00\x94\x3c\x6c\x8c\x42\x5b\x7c\x12\x68\x04\x82\x22\x83\x9b\x15\xa5\xea\xd5\x0f\xbd\xa7\xd1\x9c\xc6\xa3\xed\xf4\x6d\xe7\x05\x25\x81\x8e\x31\x8e\xd9\xa9\xc4\x81\x25\x4c\xbb\x12\xee\x17\x1a\xc0\xc9\x9e\x11\x44\x90\x80\xe4\xd3\x70\xd3\x96\x8e\x39\x00\xd7\x87\xa7\x66\x19\xfc\x37\x0d\xdf\x7d\xa6\x57\xf4\xf6\x99\x7d\x8c\xaa\x61\xb4\x51\x08\x8f\x4e\x1a\xaf\x36\xf6\xd1\x08\x77\xeb\x16\xad\x4e\x6a\x85\x9b\x40\x7a\x44\x2c\x38\x22\x29\xcc\x88\x20\xb0\x4f\x38\xff\x13\xbe\x43\xaf\x3a\x59\x27\x97\x24\x68\x0f\x45\x81\xd9\x04\xda\xcd\x8b\x57\x77\x4e\xc4\x61\x74\x52\x9a\xec\xf2\xec\xad\x56\x4c\x35\x67\xa3\x6b\x21\xde\x1f\x43\xab\xcd\xfa\xc1\x7d\xb4\x2f\x59\x47\xa6\xbf\x76\x6a\xb2\x06\xbf\x82\x1a\xdb\x7c\x4c\x0e\x46\xc8\xc5\xd1\xe0\x51\x3e\xdd\xc1\x42\xe9\x5f\x8c\x3b\x5f\x1f\xbc\x6d\x35\xbe\x60\x93\xf3\x8e\xd7\xd5\x56\x42\x64\xe4\x2c\xee\xee\xba\x85\x8b\x8c\x2e\x86\x7d\xb5\xd5\xd8\x98\xe5\x19\xfe\xa6\x79\xb7\x75\x26\xce\xa5\xd5\x98\x20\x8c\x66\x5a\xc9\xe8\x05\xb9\xb1\x0f\x1c\x30\x7d\xaa\xa1\x57\x37\x0a\x3c\xaf\xf9\x22\x4d\x9e\xb5\x5b\x20\xef\x19\x46\x5d\x7b\x17\x66\xd2\xb5\xd1\xc9\xad\xe9\x49\xc7\x45\xfb\xd7\xd7\x63\xd1\x33\x55\xeb\xab\xa5\xc1\xc4\x23\xe4\x3a\x41\xec\x2b\x37\x20\x52\x6d\xe4\xf0\x05\xcd\xde\x95\xab\x4f\xbe\x04\x01\x35\x8a\xd9\x4c\x38\x7a\x36\x54\x52\xc9\x2f\x27\xc6\x23\x77\x64\x26\x7d\x70\xed\xa2\x9b\x5a\x3a\xbb\xd3\xe7\xe8\x4a\x83\x95\x2a\x76\x7d\xd0\x89\x26\x22\xb6\x5c\x09\x01\x18\x08\x2a\x38\xe6\xfd\x20\x69\xa1\x6f\x84\x97\x83\x71\x38\x14\x61\xea\x82\xfe\x62\x53\x75\x48\x89\x34\xbe\xec\x93\xac\xbc\xfb\xd5\xf1\xb7\xaf\x71\xf3\x22\xb0\x57\x84\xe9\x02\xbc\xb8\x21\x5f\x13\x19\xb1\xc4\xf4\xe4\x59\x6f\x43\xf5\x3c\xcb\xbd\x63\x97\x61\x29\x2d\xa7\xd5\x5a\xf9\x46\xa7\x6c\xa9\xd2\xec\xcd\xfb\xd1\x84\x1b\x97\x88\x08\x6c\x88\x33\x30\xcc\x91\x50\xd9\x1a\x29\x5f\x41\x8c\x22\xb1\x1c\xc5\x6b\x6d\x2e\xca\x9c\xe0\x71\x66\xb7\xcb\x03\x81\xee\xb7\x3a\x35\x21\xb8\x97\x74\x76\xeb\x4e\xd4\xb1\x73\xad\x34\x6c\xa6\xd1\xec\x24\xd4\xff\x0e\x0f\x50\x79\x72\x08\x85\x40\x23\x02\xd6\xc7\x51\x03\x33\xb4\x07\x8c\x99\x5f\x3a\x86\xc6\x70\x28\xfb\x90\x9d\x9e\xbd\x28\xf7\xc0\x0e\x1e\x7c\x08\xa8\x0a\xf0\x83\x4a\x7c\xdd\x20\x74\x9c\x07\x55\x0e\x53\x27\x60\x27\xa3\x07\xa6\xd7\xca\x07\x6a\x53\x4e\x0b\xa1\x93\x4b\x4a\x2d\x15\x60\xd2\xcb\x03\x87\x55\x1e\xfc\x3d\x48\xf9\x15\x7e\x2b\x45\x1f\xec\xee\xd5\xfd\xfc\xbc\x43\x7f\xdf\x50\x1c\x87\xe8\x92\x55\x4b\xa8\x49\xff\x25\x6c\xe5\xa1\xf3\xd0\x3d\x4c\x04\x0c\x10\x02\x4e\x94\x1d\xc9\x74\x23\x54\x10\x81\x41\x2f\x29\x26\x2e\x45\x7a\x3f\x2e\x20\x87\x57\x3c\x41\x14\x6b\xf8\x2c\xa7\xa6\xde\x69\x66\x5f\xcf\xad\x76\x89\xd0\x3e\xb0\x12\x6d\x7b\x09\xa5\xb7\x7d\x23\x39\x02\xfa\x34\x6f\x3a\x6d\x73\xe8\x22\xf3\xd4\x5b\x4e\xf0\x49\x78\x1b\x1a\x1a\xa2\x22\x58\x06\x83\x39\x48\xe3\xcf\xdd\x13\x28\xb8\x68\x73\x30\x4c\x31\x79\x1b\x6d\xa3\x68\xd5\xb9\x5d\x8d\x8f\x27\x88\x8d\xa4\xa8\x19\xc2\xe6\xd1\x8e\x2f\xce\xd6\x0c\xa5\x98\x7b\x02\x1f\xd1\x8f\x57\x9e\x92\x24\x79\x58\xda\x23\x05\x11\x85\x0e\x8f\x2b\x17\x76\x2e\xb2\x44\x1e\xe3\xb6\x76\x9f\x96\xee\x75\x74\x58\xb5\x56\x7d\x46\x67\x99\x7d\x82\xf4\xb6\x56\xab\xb5\xb3\x6c\x88\xc0\x0e\x0b\xbf\xa3\x35\xd6\xa3\xbf\x0b\x0f\x4f\x4e\xa7\xb0\x45\x21\xb0\x1a\x8f\x23\x61\xc1\x00\xc2\xe5\xf8\x5a\x28\x9b\xa3\x13\x9f\x56\x79\xc0\x48\x79\x7a\x37\xff\x80\xb1\xa9\xfd\xd7\xcc\x5d\xd8\xd1\xa1\x97\x2b\x45\xd2\xe3\x12\xa0\xc3\x73\x67\x72\x6d\xa4\x3d\xb7\xb8\xa3\xf1\x9f\xb4\xbb\x7b\xeb\xef\x7f\x2a\x79\x76\x7a\x87\x41\x2d\x7c\xa4\x54\x55\x1f\xeb\x8e\xbe\xb5\x14\x0f\xdb\xfb\xa5\x4c\xe6\xc7\xde\x59\xac\x66\xa2\x51\xf6\x2d\x8e\xbc\xb2\x1a\x1a\x9a\x5d\xca\x21\xf9\xd9\x4b\x11\x07\xe0\xec\xb9\xc8\x02\x95\x74\xc5\xe2\xf8\xfd\x0d\xb3\x25\x49\xe4\xbf\x47\xad\x33\x4e\x1a\x29\x55\xce\x95\x29\x0f\xb6\x43\x60\x9f\xb0\x86\x1b\x88\x31\x8c\x34\x34\x9d\xbd\x4a\x5f\xed\xb2\x58\xb2\x47\xc9\x53\x34\xda\x5d\x8c\xaa\xa4\xc8\x64\x9d\x5d\x73\xd2\xd4\x27\x6c\x7c\x40\x4e\x69\x26\x2a\xb1\xab\xaa\x30\xca\x94\x3a\xe0\x7e\xb5\x15\x38\xd4\x53\xff\x6e\xbe\x2c\x1d\x98\xc9\xf2\xc5\xbd\x2e\xd2\xf4\x86\xd7\xbd\x72\xdb\x7f\x9c\xa7\xe8\xd0\x7c\x75\xac\xd2\xea\x69\x9b\x13\xb6\x78\x91\x85\x64\x34\x3a\x65\x84\x92\xdd\xd4\xdf\xb4\xec\x34\xc6\xbb\xe9\xfb\xd6\xdf\xe3\x65\x2e\x04\xe9\x02\xeb\x63\xb7\xf9\x10\x13\x08\xac\xfc\xd5\x36\x48\x00\x76\xe1\xac\x1b\xce\x80\xbd\x55\xf6\xe9\xe0\x95\xff\x3d\xc5\xc0\x50\x01\x67\x86\xc8\xe0\xe3\xb8\xfa\x7e\x02\xd7\x3d\xc9\x3c\x1d\x69\xca\xe8\x41\x6a\xda\xdb\xcc\xd1\xca\xe5\x10\x4b\x39\x31\xa5\xc3\xa4\xfb\x65\xd1\x38\xf0\xc8\xd9\x5c\xef\xf8\x39\x8f\xbf\x90\xd1\x71\x61\xc8\x29\x7c\x1c\xef\x35\x90\x54\xf1\xd3\x58\xce\xb8\x30\x2e\x6e\xb5\x3b\x60\xe8\x0c\xd9\xdc\x00\x33\xa5\x7c\xbd\x34\xe3\x0e\x7e\x73\x7f\x6f\x07\x15\x93\x88\x5f\x4e\x48\x4d\xc4\x49\xaf\xc6\xb9\x1b\xab\x84\xbc\xf2\x30\x9b\xe4\x9a\x7f\x88\xc1\xa4\x1b\x9b\xcc\xd6\xca\x3a\x73\x8a\xa9\xf9\x23\x75\xa8\xe4\x95\x42\xeb\x73\xb7\xf0\xb0\xac\xe4\x95\x1a\xb7\x1a\xd4\x80\xbd\x92\xa4\xf1\x91\xe9\x34\xd7\xee\xc9\x3c\xcb\xc9\x58\x57\x40\x5d\x6c\xb3\xfb\x68\xb3\x5d\x8b\x77\x99\xc7\x16\x04\xad\x26\xad\xac\xbe\x4a\x4d\xd9\x57\xff\x00\xa7\xd6\xc1\xd9\x61\xa9\xff\x5b\xa1\x32\x0a\x41\x5d\x03\x7b\xfa\xa9\x1d\xe4\x62\x71\x4f\xfa\x37\x42\xdb\x86\xb4\x7c\xff\x22\x6a\x80\xea\xb5\x63\x21\xa7\x70\xdb\x83\xf4\x50\x0e\x5e\xa5\xaa\x5c\x26\xbc\xb9\x15\x68\xa2\x7f\xe2\x46\xed\x4e\xb7\xaa\x29\x8e\x80\x3f\x6f\x1e\x3c\x23\xbf\x36\xee\xa3\x5c\xc7\xb5\x77\xf5\xbd\x60\x75\x1c\xea\x5f\x18\xdd\x8f\x54\x18\xfb\xe1\xe5\xfa\x67\x7b\xf4\xc4\x1b\xc6\xbc\xe3\xae\x7e\x12\x01\x55\x99\x01\xdc\x5a\x78\xc8\x19\x8a\x4d\x04\x81\x96\xf0\x61\xed\x18\x56\xe3\x88\x5e\x22\x8b\x34\x51\xd1\xc5\xce\x69\xe8\x0a\x6f\x6f\x37\xd4\x38\x8a\x90\xd2\xb5\xbd\xcb\xf3\x87\x26\x71\x7e\x17\x2d\x36\x44\x0d\xdf\xdc\xda\x5d\x1f\x34\xc8\x53\x21\xa6\xd1\xf9\x49\x8c\xa0\xd6\xe9\x89\xe2\x07\x62\x9e\x34\x6e\x63\x36\xd4\x6a\x7e\x32\xd1\x51\x33\x44\x0a\xae\x3e\x3b\x8a\xba\x25\x19\x4f\xdb\x81\x4e\xed\x71\x56\xeb\x1e\x8f\xb4\x19\xbc\xef\x3c\x91\xf4\xfb\x8a\x0e\x74\xdf\x0c\x45\x33\x8f\x82\x26\x0a\x11\x02\x68\x95\x91\x32\x65\xfe\x10\xba\x11\x22\xa3\x44\x89\x3f\x50\x74\x3a\x16\xc5\x2f\x8b\xd5\x5b\xa9\x4e\xa1\x5a\xed\xb6\xf7\xf5\xc9\xe5\x6a\x89\xa8\x1e\x57\xe8\x67\xda\x7d\x24\x9a\xaa\xd7\x27\xaa\xee\x19\xaf\xa1\xe8\xee\x9a\x0d\xe0\x2a\x6e\xe1\xd3\xbd\x18\x1a\x8d\x32\x19\xa2\x94\xdd\xed\xaa\x0f\xa8\x72\x81\x3e\x49\x8f\x09\x73\xb4\x20\xb6\xcb\xb6\xeb\x25\xe0\xd5\xe5\x76\x3a\xf6\xbe\x63\xf5\x9b\x30\xfb\x88\xdb\xb6\x85\x3c\x5c\xd9\x43\x97\xd4\x4f\xc4\xf7\x04\x7b\x77\xbf\x56\x44\x00\x81\x5c\x24\x52\x59\xe3\x53\x1b\xf9\xae\x1f\x84\x6c\xaf\xf2\x84\xb8\xd5\x68\x70\xb6\x6b\xf8\x09\xea\x19\xed\x37\xeb\x2b\xc1\x9b\x9b\xe9\xe2\x5d\x2b\x81\x3f\x16\x30\x00\x0e\x30\x55\xb2\xe4\x1e\xd5\xee\x17\xa7\x50\x52\x17\xba\x73\xb3\xd0\xb3\x72\xfc\x94\xc1\xce\x17\x0e\x5e\xc8\x94\x7e\x80\xd3\x0e\x4d\x3e\xfa\x35\xc5\x09\xfe\x5a\x50\x12\xc7\x27\x97\xe3\xf5\x48\xbb\xe6\x75\x92\xdf\xff\xa0\xf3\xe8\x15\xaa\x3e\xa0\xfd\xb5\xcd\x09\x74\xcc\x82\x16\x87\x6c\xf9\x70\xc0\x99\x59\x9f\x7e\x3c\xc9\xf7\xa7\xb9\x2c\xcd\xf5\x64\x3b\x00\xda\xd7\xe3\xdd\xf5\xd6\x74\x11\x5a\x79\xce\xbd\xbd\xca\xff\x65\x99\x6c\x26\xde\x0b\xde\xba\xeb\x9f\x6d\xb6\x6a\x4b\xfc\x7d\xd7\x58\x78\xae\xa2\x7f\x7e\x9f\x4d\xf6\x90\xbb\xf3\x48\x34\x3d\x05\xcb\x03\x35\x67\x43\x10\x5e\x80\x0a\x1e\xcb\x40\xf8\x72\xd4\x4d\x17\xda\xcb\x46\x94\xdb\x13\xb8\x1d\xd2\xfb\x4e\x6e\xbb\x6c\xcc\x58\x3c\xd0\x35\xd1\x75\x0c\xf8\x29\x34\x34\xca\xc1\xa6\x7a\x72\xf9\x01\x2c\xf3\x6d\x16\x2b\xac\x7f\xcb\x27\x42\xc5\xea\x08\x58\x90\x77\xd0\xf6\xa2\xe3\xcd\xfc\x3a\xed\x4c\xd9\xdd\xe7\x52\x51\x01\xf6\xef\xb9\xac\xd4\x69\xfb\x72\x39\x1b\x11\x8e\x8e\x26\xb2\x35\xc4\xe4\xb2\x38\x8b\xcf\xee\x50\x3a\x45\x1a\x41\xdf\xb3\x0e\x89\xf1\x91\x19\xe0\x4d\xcd\x54\xdf\x42\xda\x5b\xb3\x26\xaa\xeb\x3a\x8b\xd1\xb6\x68\x50\x1d\x5a\x95\x97\xb6\x15\x3b\x3a\x8b\x0b\x6e\x53\x22\xba\xb5\xa8\xbe\x2f\x15\x15\xe9\x09\x08\xe0\x19\xd4\x0f\x73\xbe\x3d\xe6\x4b\x59\x1e\xbc\x0b\x34\xc8\xf9\x3e\xad\x5c\xa1\x85\xbc\x3f\x67\xc9\xdd\x69\xea\x1b\xc8\xc6\xc0\x21\x94\xc5\x8b\xc1\x28\xc2\x34\x92\xfc\xbd\xfb\x64\xff\x20\x45\x18\xf9\x13\x40\x51\xbc\x00\x13\x42\x49\xe8\xe9\xd4\x0a\x0a\x40\xa2\x64\x6e\xe1\x64\x92\x8e\xc6\x5f\xee\x21\xd0\x2f\xa3\x90\xe4\x32\xdc\x35\xb6\x70\x68\x67\x6a\xd8\xc2\xe8\xe5\x0b\x2d\x7d\xed\x29\x65\x16\xdc\xd9\x7e\x69\x8b\x70\x40\x65\x67\xa1\x4b\x1e\x52\xa5\xd6\x34\x50\xef\xee\xda\x94\xef\x7c\x4f\xbc\xbd\x26\x4c\xaa\xa2\x6f\x6e\x48\x3e\xd5\x1a\xde\x9f\x29\x7d\xe3\x9a\x91\x4d\x10\x11\x73\xe7\x6a\xa8\xb1\xa0\xd1\xb6\x39\xfe\x0c\xab\x5f\x22\x55\xff\xa5\xa4\xdd\xc5\x48\xde\xe5\xd4\xd8\xf7\x9d\xcb\x5e\xcf\x58\x35\x8e\x8c\x9d\x74\x25\x45\xb5\x33\xa7\x9b\xb2\xdc\xdd\xbc\x81\x6d\xb1\x1d\xd7\xb4\xa7\xa7\xed\x64\xbf\x3f\xac\xe9\x5f\x8a\xe8\x62\xcf\xed\x51\x6b\xef\x39\x26\xa2\x30\xbb\x3a\xf5\x11\x85\x83\x17\x11\x7d\x0e\x17\xd6\x17\x80\x04\xae\x8e\xfc\x9e\xc0\x3d\x72\xdb\xe2\xed\x57\x27\x18\xd2\x80\xff\x09\xda\xbb\xf0\x34\xb9\x8d\x2a\x5b\x23\x5c\x71\x93\xcc\xb8\x73\x41\x14\x0e\x95\x83\xf3\x36\xd4\x36\x7c\xc9\x4f\xc0\xd1\x4b\xdd\x1b\x52\xb4\xd7\xc4\x82\x88\x19\x97\xac\x54\xf1\x4c\x99\x2f\x4a\xc8\xaf\xc9\xed\x60\x03\x6d\xf3\x6c\xae\xcd\xd3\x52\xf7\xd8\xff\x28\x05\x0f\xc5\x6b\x06\xd7\xcb\x68\xc9\xba\xc2\xe6\xec\xec\xb1\xe7\xcc\x37\x2c\x22\x6d\x1d\x4e\x2e\x8d\x19\x4b\xd4\x74\xc4\x0e\xf9\xfb\x2c\xdc\x7d\xdf\x39\x9a\xba\xac\x62\x8b\xdc\xff\xa8\xab\xb1\x9c\x50\xb8\xbb\xbb\xe0\x6d\xae\x1e\x31\xe3\x48\xe2\x25\x33\x1e\x73\x65\xbe\xfa\x21\x96\x21\xd0\x9f\xb7\x25\x6a\x8a\x87\x8c\x29\x4f\x8d\x0a\x8c\x2c\xaf\x2f\x89\x01\x09\x49\x1c\x30\xa3\x55\x4d\x5f\x0b\xd4\x81\x47\x48\xc9\x40\xab\x5a\x9a\x8d\x4f\x04\x15\x17\x80\x49\x85\x7f\x29\x69\x6d\xea\x47\x31\x85\x17\x05\xc1\xd9\x70\xe5\xd6\x40\xe3\xe7\xa2\x83\xa6\x3b\xbc\x51\x6d\x96\x62\xd7\x59\x3f\x7d\x7e\x64\xa7\x73\x4a\x36\x59\x63\xa8\xa9\xe2\xb6\xff\x30\x9e\x11\x1c\x7c\x31\xbe\x1d\xfe\x32\x52\x95\xc1\xd3\x3d\xfc\x57\xb6\xab\x9b\xd7\x67\x9b\x8b\x5c\x95\x7d\x05\x47\x37\x61\x55\xd5\xb4\x0a\x67\x5b\x2d\x59\xb7\xdb\xaf\x09\x29\x6c\x01\xf9\x10\xa5\xb7\xa4\x9f\x97\x92\x1b\x12\x6c\x0f\xce\x58\xf0\x2c\x6b\xf1\x57\x9d\x43\xc4\xd4\x66\xfa\x9a\xef\x74\x8d\x6f\xaf\xb7\x36\xf2\x2e\xb4\xf1\xa6\xaa\x28\xe2\xd7\x14\x9f\x4a\xe4\xf9\x12\xa9\xe1\x57\xba\xf1\x67\x91\xc2\x53\xec\xbc\xed\x35\x89\x0e\x68\x8a\xa7\xba\xa1\x3c\x9a\xb7\xc0\xbe\xd7\xe8\xcb\xda\xee\x15\x71\xf2\xa9\x98\xe0\x72\xbc\x27\xa7\x74\x24\x6b\x51\x62\x99\x38\x9a\x03\x76\x66\x2b\xec\xa8\xfa\x5a\xa6\x70\x59\x62\xa8\xed\xf8\x53\x2c\x35\x89\x53\x62\x07\xbd\x2e\xbf\xca\x70\xfd\xfe\xd6\xd6\xda\xd7\xb8\xfb\x2f\xd5\xb4\x6d\xdf\x6e\x72\xb3\xe4\x60\x68\x86\xcf\xfd\x37\x42\xab\x10\xa9\x55\x02\x22\xae\x78\x02\x31\x6b\x88\x3c\xa3\x57\xc4\x5c\xb5\x20\x9f\x73\xcd\xcb\xbe\xca\x3c\x7a\xd7\x87\x30\xa8\x91\xa4\x61\x08\xaf\x91\x81\x72\xb0\xa7\x2f\x24\x89\x7e\xa0\x74\x16\xb4\x9e\x43\xb6\x2a\xdd\x68\xa6\xca\xc9\x6e\x12\x13\x3a\x4f\x29\xde\x58\x00\x6c\xeb\x0b\x2b\xf5\xa6\x5f\xb5\xd3\xc3\x85\xe8\xe7\x94\x8d\xa5\xab\x5d\xed\xad\xcf\x14\x37\x5e\xa7\xfb\x75\x50\xd0\x3f\x1f\x9a\x16\x8f\xa2\x08\x2c\x2a\x70\xe2\x4c\xb8\x2e\x86\x9c\x9e\xd3\xd1\x50\x2c\x34\x7c\x4f\x2b\x6f\x8b\xed\x9b\x9b\x81\x94\x06\x54\x8b\x67\x11\xf0\x8f\xee\xa6\x93\xf0\x0f\xfa\xcb\x0d\x13\x30\x7f\x7b\x2c\xff\x6a\x64\x26\x02\x2c\x6b\x45\x01\x0a\x45\xa4\x10\xf1\xe3\x1d\x48\x94\x3f\xd7\xa8\xf2\xb6\xd1\x30\x88\x3a\x5d\x30\x94\xd6\x05\xf0\x37\x65\x2c\x94\x94\x96\x2e\x08\x6c\xed\x03\x0a\x5a\x5f\xae\x6a\x0e\xc8\x91\x44\x7a\x9c\x76\x2e\x6f\x29\xaf\x6a\x69\x37\x18\x3e\x05\x95\xd6\x62\x1a\xca\x1b\x75\x4e\xaf\x78\xdc\xa7\x3a\x32\x74\xf8\x96\x18\x9e\x8e\xd5\x2c\x92\xdf\xe6\x69\x68\x6e\x7c\x73\xf6\xe6\x25\xcb\x66\x93\x20\x3b\xc7\xd6\x88\xad\x26\x58\x6d\x7b\x71\x74\xc1\x44\x41\xf2\xa0\x52\x40\x88\xc2\x3c\x8c\x84\x92\x52\x14\x87\xdc\x15\x8e\xd8\xbd\xae\x5c\xf2\x2c\x48\x02\x28\x3e\x26\x82\xe5\x18\x3d\x41\xb2\xeb\x5f\x92\x0f\x49\x48\x78\x4a\xe3\x04\x97\x85\x63\xfd\xf8\xa8\x4e\x52\x84\x16\x16\x25\x4d\x28\x32\x0d\x53\x46\xa0\xc0\x93\xa6\xaa\x10\xfa\xd5\xd3\x7a\x70\xd4\x6e\xc3\xe9\x7c\xa7\x70\x28\xb1\xd9\xd7\xb7\x5c\x26\x7f\x7c\x6b\xbc\x27\x9d\x40\xce\x2f\xc5\x20\x94\x3a\x12\x2c\x2f\x2e\x14\x27\x56\x56\x4a\x35\x63\x5d\x5e\x73\x70\x69\xd2\x57\x1e\xc7\x26\x6d\x9c\x8f\x44\x85\x8f\x38\xb1\x1b\x3c\xae\xce\x7d\xea\xd5\x74\x7a\xce\x5f\x4a\x2f\x7b\xea\xeb\x85\x13\x15\x8c\x30\x65\x1a\xc9\xff\x61\x5b\xad\xaa\xb9\x70\x4a\x81\xd4\x97\x49\xd1\x31\xee\xfd\x92\xa0\x96\x9c\x1f\x99\xc3\xdc\x21\xa6\x4b\xca\xae\xf4\x54\x81\x07\x82\x5e\x7a\x6b\xa0\x81\x45\x71\x98\x11\x5a\xb9\xe8\x87\x22\x56\x5e\x4d\xf5\x4a\xcb\x3a\x7f\xe2\xb7\xe9\x29\x58\xc1\x6c\x90\x80\x61\x68\x56\xb3\x16\x47\x62\x2c\x81\x89\xaa\x24\x94\xc5\x01\xd8\xd5\x9d\x2d\x6c\x2e\x7f\xf0\x26\x9f\x66\x64\x6e\x88\x35\x16\x17\x9f\xe6\x57\x96\xd3\xd8\x9e\x96\xea\x4a\xa3\xb5\x7d\xf5\xd9\x5a\x96\xa7\xbe\x52\xcb\xde\x9e\x3e\x01\x55\x2a\xee\xd8\x81\xef\x15\x0d\x45\x4f\x7d\xe8\xa5\x3d\xdc\x74\x6e\x94\x95\x7f\xe2\x74\xc7\xc1\xff\xd1\x29\x50\xf3\x4e\xa6\xec\xe1\x90\xfd\x7e\x92\xc0\x76\x9a\xb1\xee\xa7\xbd\xd2\xd7\xd4\xa1\x6e\x40\x41\xbf\x63\xff\xcd\xc0\x64\xf7\x4a\xf1\x8e\x61\x6b\xd4\xa9\xb9\xaa\x4a\x40\xd2\xe3\xfe\xde\xd2\x92\x53\xbb\x6b\x77\xd1\x8f\x93\x7b\x3b\x21\xcc\x27\x0c\x0b\x5e\x02\xfb\xaa\xbe\x22\xfa\xae\x84\xbc\xa2\xb6\x8a\xa7\x13\xd4\x32\xf8\x73\xd5\xf5\x05\x4b\xb8\x77\x55\x5b\x03\xce\x24\x9e\xe0\xf3\x36\xce\xeb\x55\x4b\xa3\xac\xa3\x3f\x0e\xfd\xf7\xac\x8c\xde\x43\xce\xa0\xb1\x59\xfe\xbd\xbe\xa1\x60\xb3\x35\x64\x06\x6e\x53\x85\xb0\xb4\x9c\x9f\x41\x55\x73\x51\x7c\xf6\xe0\x52\x83\x56\x4d\x35\x65\x10\x08\x52\x09\x60\x5d\x0d\x49\x8f\x4f\xa5\xa7\x70\x96\xaa\x51\x5a\xee\x53\x1c\x8f\xa0\xe6\x1f\xbe\x7f\x0a\x01\x55\xa3\x48\xdb\xfb\x30\xf4\xfd\x80\x6f\x6c\x71\xf7\xfb\xd2\xf3\x71\x81\x76\xf5\xad\x65\x87\xeb\xfb\x73\xfb\xf6\x8e\x77\xcb\x8b\x68\x9a\x72\x3d\xc2\x5b\x3b\xf8\x48\x0f\xc8\x9b\xe5\x23\xb2\xff\x6d\x03\xae\x3f\x70\x8b\x7a\xfc\x1b\xb3\xcf\x01\xa1\x8d\x12\xe0\x32\xdb\x3e\x4d\x4c\xda\x47\x3e\x73\xbf\x8a\x83\x1f\x7e\x37\xac\x21\x6b\xb3\xad\x78\x72\x91\xf4\xda\xcb\xdd\x9b\xa8\xbf\x15\x5a\x7d\x12\x29\x4e\x41\x22\x8c\x28\x28\xa1\x53\x75\xab\x78\xdc\xeb\xfc\x29\x5c\xe0\x2d\x6d\x13\x07\x55\x8e\x53\x4c\x44\xfc\x73\x3c\x04\x9a\x2f\x79\x5c\xf1\xca\x23\x9a\xf5\x29\xcf\x41\x75\xd0\x48\x72\x4f\x70\x42\x27\x44\x1f\x4b\xb6\x34\x1e\x50\xd5\x25\x42\xd9\x5f\xa5\xc8\xf9\x91\x55\x26\x4a\x75\xb6\xca\x92\x35\x26\xa7\xad\xe4\x37\x5b\x53\x8e\xfb\xb1\x35\x04\xc9\xa9\x72\x44\x95\x30\x50\xaa\x3e\xef\xaf\x33\x10\x0d\x46\xcb\xed\xe9\x7d\x02\x92\xd1\x83\x4e\x8c\xb4\x50\x60\x6a\x3b\x1f\xb5\x40\x35\xc5\x3a\xc3\x3d\x1d\x01\xfc\x9e\x3a\xf2\xbc\x28\x70\x38\x19\x7f\x36\xc9\x27\xf2\x27\x3a\xc1\x14\x98\x58\x4f\x82\x37\xdb\x3f\xaa\xfd\x46\x56\xaa\x15\x05\xaa\x0f\x62\xde\x42\xb1\x09\xfc\xdf\xc6\xc2\xb4\x84\x20\x66\xe4\xdb\x4a\x27\x75\xd3\x5b\x04\x1d\x34\xb2\xce\xf5\x70\x36\xc4\x62\xa9\xc6\xfc\xba\x49\x25\x83\xdb\xde\xf8\x73\xce\xf0\x91\xa3\x4c\x2e\x53\x4d\xa3\xc1\x09\x53\x0f\x3b\xb0\x96\x47\xae\xe6\x40\x06\x0a\x0e\x99\x93\x52\x92\xef\xba\x03\x48\x93\xa1\x66\xc6\x43\x71\x56\xef\x99\x55\x94\xd6\x5f\xd7\x9e\x2e\x83\x83\xe4\x6c\xd4\x80\xde\xc5\x91\x91\xe8\x68\x58\xe4\x68\x51\xa5\x43\x61\xa3\xc3\x10\x51\x62\x06\x19\xdf\x57\x77\xab\xcb\xfb\x5b\x59\x51\x19\xdf\xd3\xb7\x06\x93\xd1\x5e\xa6\x75\x47\x63\xe1\x04\xd1\x98\x26\x61\x16\x7c\x4c\x4a\x1a\x5c\x8e\x83\xdb\xfc\xdd\x27\x57\x86\xd4\x06\x56\xe4\x27\x0a\xfd\x38\x92\x21\x88\x3d\x03\x80\xd4\x54\x20\xc4\x6a\xea\x99\x8c\x28\x68\x71\x99\x3f\xe8\xb1\x2f\xe0\x7c\x9b\xb4\x9f\x41\x70\x42\x07\x43\x4e\x16\x45\x07\x70\x08\x76\x75\xf1\xeb\x09\xee\xe4\x10\xc6\x36\xe7\x35\xc1\xe9\xc3\xb0\xf6\x61\xde\x0b\x7c\x0f\xd3\x6c\x24\x73\x43\x33\x3e\x9e\xc9\x85\x35\x6a\x09\xc3\xeb\x4e\x9e\xec\xce\x8b\xcc\xbb\xa1\xac\x8b\xeb\xef\x26\x25\xc5\xd3\x9b\x8a\x96\x1a\x83\x63\x0b\xf7\xd4\x44\x8b\x56\x7a\x96\x02\xae\xe5\x53\x41\xa1\x1f\xfe\x97\x22\x88\x74\x82\xfd\x47\xe5\x66\x2f\x8b\x0b\xe8\x8b\x0b\xda\xbd\xb2\x57\x98\xfb\x39\x80\x8c\x4c\xa8\x94\xce\xc6\xa1\x75\x08\x7f\x48\x84\x35\x9d\xf8\x5b\xb2\xb7\xc1\x77\xbd\x26\x62\x24\x07\xef\x82\xd3\x14\xb6\x83\xd9\x86\xa7\xcb\xf2\x6e\x4b\xfd\xbe\x29\xdf\xb4\x69\xbe\x7b\xbd\x6c\xdc\x69\xc9\x94\x39\x66\x19\x0b\xb8\xce\x7c\x1b\x5d\x54\xf0\x0a\xae\x18\x15\x17\x8f\xd2\x26\x5e\x5c\x39\x70\xbd\x8c\x06\xfb\xd8\x92\x78\xa2\x4b\x08\x6f\x55\x03\x44\xe8\x87\x1b\x1d\x41\x80\x47\x6f\x67\xe4\xaf\xc7\x0c\x5d\xf9\x2f\x63\xdc\x29\xa2\x3f\xe4\xf5\x52\x2a\x51\x40\x02\x32\x58\x52\xc7\x45\x32\x39\x0c\x08\xbc\xf1\xf4\xc0\x1f\x6a\x48\x78\x68\xd8\x3f\xc0\xb0\xf3\x90\x38\x1c\x84\x6e\x05\xc0\xbc\x49\x5b\xf2\x5f\x92\xe4\x86\x50\xd3\x98\x06\xf3\x2b\xb6\x93\x37\x4e\x23\x6a\xa5\x81\x93\x25\x1a\xc8\x2a\xff\xc2\xe8\xa6\x73\x5b\x2d\xaa\x4b\x63\x50\x75\x1c\xe0\xa9\x5c\xce\x2b\xfc\xe4\x54\xbf\xc8\xd9\xeb\x2e\xda\x71\xd2\xbe\x48\x4f\xb3\xaa\x3a\x39\xea\x6a\xad\xd1\x9b\x02\xe8\x38\x20\x1c\xc5\x05\x9c\x9c\xc5\xa2\x9c\xf2\xf2\x1f\xe7\xf7\x91\x4e\xd7\x0e\xb3\x7d\xcc\x46\x71\x16\xc7\x15\x3b\xbb\xd7\x74\x70\x7a\xeb\xda\x5a\xf3\x6f\xa7\x3c\xbd\xce\x47\x1e\x75\x88\xd5\x6e\x1c\x64\x98\xa4\x9c\xd4\x66\x8e\x74\xa5\xe7\xb4\x18\x95\x06\x58\x56\x3e\x7e\x1e\x1a\xc2\x8f\xdf\xc1\x70\x37\x2b\x60\x8f\xc1\xc2\x19\xd2\x45\xfe\x84\xbf\x97\x87\xef\x6b\x6a\x1d\xf2\x7b\x4c\x97\x98\xac\x0f\x6f\x77\x52\x5d\xcb\xb4\xc7\x4f\x0a\xcc\x5f\x22\xd6\xa8\x65\x10\x08\x04\x7a\xfb\x22\xc7\x80\xa2\x13\x90\x16\xc9\xfe\x23\x0a\xc3\x4e\x73\xd4\x25\xcc\xeb\x7d\x05\x53\x06\xd9\x3b\xf8\x63\x69\x93\x81\xbf\x9d\xef\x28\x8c\xc2\xf1\x4a\x91\x76\x59\xe0\x0d\x9b\xf0\xb4\x8f\xbc\xd3\x33\x34\xb0\xd1\xe4\x3e\x6e\xa0\x30\x7a\x36\x91\xb1\xc1\x68\xe9\xea\xac\xde\xf5\xeb\xef\x10\x78\xf4\x7d\x10\x77\x2a\xb2\x9a\xd0\x25\xae\x32\xc6\xdd\x42\x2e\x8d\x8d\x97\x74\xc2\xbb\x26\x86\x05\x97\x0f\x09\x49\xf7\xd0\x4c\x5a\x47\x34\x27\x30\x2c\x85\x45\x12\xf6\xc3\x1d\x9b\x17\x76\x46\x17\x01\xf3\xed\xd5\x46\xf1\x2b\x33\x82\xe3\x14\xce\x86\x59\x52\xf4\xa6\x2f\x19\xc1\x57\xe2\x71\x09\x2d\xcc\x12\xeb\xdc\xb1\xe3\xe9\x6b\x73\xc9\xab\x4b\x78\x08\x85\xae\x35\xf2\x4a\xde\xfd\xb1\x15\x8e\xd6\x6a\x72\x95\xa9\xf5\xc6\xb1\xda\x82\x8a\xfd\xf7\x90\x33\xc3\x7c\xee\xfa\x15\x90\x0f\xe1\xff\xdc\x48\x84\x8f\x1e\x88\x91\x97\xa9\xdd\x18\x95\x29\xba\x2f\xe8\xcc\xca\x77\xda\xa2\x8d\x1b\xc0\xc1\xd6\xbd\x0c\xd1\x7d\x5c\x6b\x24\xee\xc1\x31\xdd\xfd\x8d\xf7\xf7\x61\x9d\x07\xdd\x9f\x67\x92\x8e\xc8\xb8\x87\x5e\xf9\x29\xdb\x80\x9e\x84\xb7\xee\x90\x6b\x2b\x52\x59\xcc\xf2\x6d\xe0\x18\x91\x43\x89\xa2\x57\x21\xdd\x68\xdf\xce\x54\x1b\x09\xf5\x73\xda\xab\x86\x3a\x62\xfb\x6b\x8a\x0f\xb7\x1b\x03\xfd\xf3\x6a\xde\xcf\x13\xfc\x95\xf7\x87\xbd\xfd\xc6\xa2\xc3\x39\x5c\xbb\xf7\x1b\x8f\xe3\x79\xcb\x29\x87\xc5\x1b\x3c\x18\xb1\xb8\x14\x6d\x7b\x7a\xb0\xfd\x87\x04\x9e\x2d\xea\x03\xbe\x7b\xd0\xfd\x44\x6d\x47\xcf\xd3\xef\x1d\x28\xe7\x1e\xee\x37\x42\x7b\x88\x38\xc7\xef\xd9\x9b\x8a\x2b\x19\x23\x6c\xa6\x54\xea\x5f\x6b\x0e\x4f\xdf\x68\x6c\x90\xb1\x04\x7e\xd0\x50\xa9\x24\x3f\xf2\xd5\x1d\x61\x49\x59\x97\xb1\x54\xb0\x1c\x2e\x6f\x64\x2e\x50\xf3\xf1\x67\x61\xc8\x66\x54\xd2\x91\xe1\x76\x2c\x0f\xbe\x55\x44\x6a\xf4\x72\x08\x19\xd9\x08\xd8\x68\x25\xda\x08\xb5\x32\xa6\x8e\x47\x48\x1c\xa7\xdd\x4b\xac\xc3\x2a\xde\x45\x5b\x76\x5c\x4f\xc5\xb0\x24\x58\x7c\x16\x11\xe8\x62\x64\x56\x7c\x68\xfa\x44\x6b\x4c\x23\x60\xaa\x3f\xe2\x07\x23\xf4\xf4\xc3\x08\x27\x47\xe4\xe4\xae\xc9\xdd\x5f\x3b\xf3\x9c\x14\xde\xf3\x65\xae\x5e\xa9\xf4\x65\xe1\x4c\xec\x15\x60\xd8\xfe\x4a\xf1\x6d\x36\x0f\x74\xee\xb8\x73\xe9\xb3\x4b\x5a\xd8\xf7\xb6\xd6\xcd\x0f\x00\x0b\xec\x26\x00\x40\xda\xfc\x10\xfd\xe5\x77\xf2\xcc\xe0\xd4\xc4\xed\xe6\x4f\x52\x99\x46\x73\xe7\x62\xce\xa0\x7e\x57\x3d\x8e\x74\x70\x74\x34\x6f\x2e\x28\x8b\x88\x58\xa0\x6c\x97\xf3\x53\xed\x70\x4d\x27\xa6\x79\xd8\x0f\x82\xc0\x8f\xa1\x47\xa3\xc3\xae\x59\x5a\x69\x32\x9d\x1a\x8d\x8f\xc6\x16\xa3\x67\xb4\xab\x5f\xf4\x4a\x2a\x52\xad\xc2\xc1\x69\xd1\xe6\xee\xc2\x8e\xdd\x72\x3b\x4a\x30\x71\xb7\x37\x11\xa1\x4a\x27\x50\xbc\x75\x1d\x2d\x9e\xa6\x3b\x36\xee\x75\x9e\x15\x39\x6d\xd1\x0d\x1f\xdb\x88\x67\xbf\x05\x77\xa4\xe9\x43\x06\x9f\x31\x92\x04\xe1\xce\x97\xa6\x4f\xb0\x22\x97\x75\x67\x2b\xcb\x02\xd0\x8b\xf5\x2a\x7b\xd8\xa1\x47\x45\x7d\xc8\x2e\x94\x55\xa1\x83\x81\x37\xe4\x34\x58\xda\x00\x08\x0a\x1d\xdf\xfc\x16\x76\x40\xf2\xa2\x89\x3f\xf1\x73\xd9\x3a\xff\xfe\xa1\x17\x81\x94\x50\x0e\x88\x8b\x43\x28\x80\x0e\x87\x2b\x40\x9f\x97\x19\x65\xd5\xb7\xde\xb2\xd1\xb6\xbf\x65\x71\x88\xf5\x92\xb0\x2e\x65\x9f\x6e\x5f\x4b\x1d\x42\x9f\x3c\xe7\x49\xed\xd4\xbe\xe9\x71\x6b\xd7\xbe\xed\x7e\xed\x1c\x32\xff\xce\x4d\x5f\x06\x06\x27\x6f\xdf\xfd\x96\xa0\xa7\x6a\xec\x54\xda\xed\xf2\xb8\x7d\xe4\x95\x33\x97\x6d\x21\x8b\x7b\x43\xc6\x72\x43\x12\xcd\xde\x15\xfc\x23\xb6\x71\x52\x20\xee\xd5\xf1\xc8\x24\xdf\xca\x2a\x78\x4a\x30\xbd\x24\xb9\x13\x16\x71\xd0\x42\x4d\x63\xa3\x50\xd7\xdd\xcd\x5a\x60\xa9\xe1\x95\x4f\xea\xfd\xdb\x1f\xf4\xa9\x64\x86\x9f\xe3\x15\xd9\x64\xa4\x34\x8e\x7c\x59\x53\x6a\xa6\xad\xf7\x6b\x7c\x6f\xba\x10\xb3\xfc\x83\xc6\x27\x91\x01\xcd\x15\xcb\x3b\xff\x70\xb7\x23\x3b\xb5\x02\x83\x73\x78\x7b\x8a\xa4\x80\xf4\xfc\x49\x3a\x3f\x18\x49\x96\xc5\x99\x4b\xb6\x8a\xe1\xa0\xe3\xdb\xfd\x4f\x68\x1a\x2d\xf3\x18\x0e\xb4\x7e\xd9\x50\x41\xb1\xdc\x2a\xd9\x07\x91\x53\x87\x76\x73\xfc\x56\xce\x46\x43\x37\x7e\x7e\xe3\x4c\x62\x26\x3b\xd5\x8c\x4a\x36\x7a\x27\x73\xa3\xab\x8b\xc8\xc7\x34\x71\x34\x83\x4f\x9c\x57\x3c\x72\xa4\x97\x62\x97\x9d\x9c\x6e\x2b\x2b\x31\xed\x24\xb8\xad\x0a\x2a\xb2\xc3\xdb\xa7\x56\xc9\x68\x46\x62\xcc\x99\x3f\xb0\x71\x23\x90\xfe\x4b\x86\x3b\xac\x77\x90\x2d\x91\x3c\xb4\x40\x70\xdc\xb7\x2c\x79\xd8\x34\x9a\xf9\xdd\xd8\x84\x24\x4b\x46\x3d\x8d\xe7\x87\x85\xec\x83\x83\x63\x6d\x8c\x56\x2b\x31\x24\x1b\x37\xeb\x0a\x27\x00\xa4\x7b\xa7\x16\xf5\xe4\x18\x1d\xe5\xe8\x14\xf5\x20\x9f\x21\x73\x4e\x74\x96\x3e\xdd\xc4\x64\xa1\x8b\xcf\x97\x2b\x6c\xad\x86\x86\x02\xda\x63\xab\xb9\x5e\x41\x7d\x4f\xfc\x0a\x81\x8c\xc9\xaf\x22\x3b\x4c\x08\x25\x96\xa1\x08\x40\x45\xd0\x99\x56\x5f\x06\x11\x1f\x18\xed\x9f\x40\x13\x3e\x92\x76\xb6\x87\x09\x05\x64\x22\xb0\x62\xac\x15\xcf\xf7\x21\x1a\x33\xc7\x60\xef\xb6\x11\xd9\xf2\x7e\x2d\x02\xe6\xe4\xb6\xec\x01\x71\x83\x3d\x36\x41\xf4\xeb\xae\xe5\x0a\xcf\x5e\xaa\x15\xb5\x55\xf8\x7d\xcc\xe4\xfb\xf8\x79\x97\x3f\xb8\xfa\xa1\xf4\x51\x8b\x87\x09\xf5\xbb\x1e\x6b\xaa\x0c\x7b\x5b\xd5\xb9\xe8\x28\xbc\xd9\x84\x44\xe8\xcb\x74\xcf\xb1\x4e\xc9\x0b\x4e\x99\xd4\xa5\xd8\x1f\x5b\xe6\x0f\x0f\xd3\x87\x73\xd0\x2e\x50\xa4\xfc\x01\x1f\x8e\x41\xa6\xca\x22\x78\x04\xdc\x99\x82\xc1\xbb\xcc\xd9\xcc\x49\x14\x36\x90\xf6\x44\xb2\x31\x28\x0e\x43\xbc\x44\x68\xca\xc2\x81\xbb\xd5\x24\x93\xe6\xbe\xbd\x0f\xa2\xa2\x0d\xfc\x83\xb9\xf5\x31\x84\x9c\x58\xa4\x54\x4e\xab\x07\x55\xa6\xfe\x39\xd6\x07\x10\x80\xd8\x69\x52\x75\x36\xe1\xf4\xdc\x92\xa0\xb2\x3f\x54\xe1\xab\xdc\xc8\xf6\xf8\x68\x62\xac\xad\x61\xd9\x37\x33\xe3\xc7\xf0\x35\x37\x51\xd8\xb9\xdb\xaf\x59\xc8\xf9\xc2\xb0\xda\x4e\x80\xba\x5f\xc1\x94\x28\xd5\xb2\xff\x4c\xfd\x62\xe0\x85\x4f\x97\xa7\x9d\x57\x43\x2e\x20\x0e\x0f\x4d\x03\x31\x92\x36\x07\xc4\xb6\x0b\x27\x07\x7e\x5c\x5d\x16\x2e\x61\x58\xca\x48\x4a\x33\x87\x5a\xdd\x3b\xb7\x8c\xfd\x78\x69\x1c\xbe\xde\xda\x60\x81\x2e\x3d\x4c\xc2\xca\x78\x4b\xca\xc0\x73\xac\x53\x8e\x77\x84\x09\xeb\x16\x17\x7b\x61\x33\x49\x68\x6a\xf4\x45\xfe\x5d\xcd\x90\x6a\x56\xad\x98\x3a\x0f\xaf\x9a\x5f\xf0\x47\x27\x1d\x83\xea\xe8\xdd\xde\x1a\x24\x2d\xe5\xe4\x94\x4d\xa1\xde\x62\x31\x94\x90\x95\xd1\xe8\xb5\x6a\x3a\x13\x97\x9a\x9c\x2f\x78\xee\x64\x23\x2f\x25\xcb\x5c\xbd\x7a\xd1\x68\xec\x5c\x51\x51\xa9\xbe\x9e\x98\xb8\xd0\xd4\x52\x69\xae\xf9\xdb\xc9\xb3\x79\x3c\xa1\xdd\x61\xe7\x72\x7e\xbf\x32\xe3\x64\x92\xf9\x6a\x43\x22\x5e\xd5\x44\xf3\x6a\xed\x96\x7b\x6e\xde\x5e\x6b\xbc\xcd\xb3\x26\xdf\xeb\x55\x56\x67\x6f\xee\xc6\xf3\xae\x25\x4f\xdf\x94\x19\x5d\x8c\x48\xf8\x03\x35\xfc\x57\x1e\x13\x0b\x90\x57\xc0\x6a\xcd\xad\xf6\x07\xe7\x1f\xb6\xd3\x97\x7e\xde\x51\x93\x81\x39\x1f\xd6\x82\xe8\x6c\x24\x4c\xc6\x34\x38\x02\x0e\x73\x8d\x60\x79\x72\xd0\xdf\x35\xbf\xbd\xbe\xc1\xba\x07\x2d\x43\xfc\xa4\xb0\x4c\xa0\x97\xb0\xcc\xae\x03\xdb\x35\x69\xdf\xc8\xa1\x1e\x3b\x07\x81\xb7\x06\x3a\x27\x10\x5f\xeb\x6e\x77\xe4\x8a\x55\xbe\x7a\x20\x3f\x5c\x83\x36\x9a\x1f\xd8\x5d\xfd\x06\x05\x09\x37\x2a\x4f\xe5\xe4\x55\x82\xc7\x7b\x7d\x46\xbf\x24\xa8\x00\x72\x30\xf6\x66\xfe\xfe\x4e\x61\x01\xfd\x96\xa8\x4d\xdd\x5a\xb5\x2f\xec\x52\xfc\x4f\x9a\x57\xda\x1f\x74\xdc\x5d\x5a\x85\xe9\x5a\xc2\xc7\x46\xb8\x67\xa5\xe9\xf2\x4e\x86\xf4\xc3\x80\x50\x09\x29\x38\x68\xff\x70\x4b\x71\xe8\xd7\x49\x4f\x83\x62\xfa\x1b\x6c\x19\x03\x4f\x03\xd0\x6d\xa8\x91\xe5\x5e\x6d\x8f\x60\x63\x97\x78\xc9\x65\x39\x25\xac\x44\x6a\x94\xac\xd1\x9d\x33\xe7\xa7\x27\xb1\x9e\x93\xd5\xa9\xeb\x9a\x8a\xca\xf5\xfb\xab\x86\x76\x3a\x9c\xcb\x67\x34\xd8\x2a\xba\x0a\x3c\x0b\xd9\xfa\xa6\x5b\x4c\xf5\xaf\x7f\xd1\xc7\x20\xd9\xc7\x2c\x2c\x9b\xb9\x5a\x2d\x17\x52\x9b\x15\x5d\x2d\x25\xcb\x2e\x39\xc9\xd1\x29\x43\x2b\xdd\x8f\x29\xbe\x06\x46\xe9\xb7\x66\x16\xd5\x12\x32\xd3\x27\x2d\x5e\x27\xc5\x2d\x24\x2c\xce\x82\x8e\xa7\x3c\xf6\x2e\xf6\x7e\x8e\x27\x3c\x8f\x1d\xb7\xe9\x89\xc9\xac\xbf\x0f\x9e\x5b\x4d\x45\x44\xb4\x84\xb5\x94\xc4\x8d\x9c\x7c\xe4\xb4\x35\x96\x37\x3b\x3f\x1c\x10\xd6\x1a\xaf\x53\x56\xbb\x6c\x7b\x63\x7a\x2f\x7b\x03\x81\x60\x39\xca\x46\xbe\x4a\x9a\xb2\x36\xbe\xaa\x55\xf9\x9e\xfa\xb3\x85\x4c\x05\x82\x03\xa7\xcb\xec\x97\xd0\x8d\x46\x41\xc4\x42\x44\x21\x96\x8c\x97\x11\x59\xd6\xd1\xfc\xdc\xbf\xe8\x37\x0e\x48\xf0\x48\xc2\xf0\x0d\x37\x90\x68\x5e\xeb\x62\xa9\x4e\xa4\xf5\xb5\x69\xd3\xe1\xca\x68\xb2\x2d\x45\x24\x32\x9e\xb0\xf7\xed\xb4\x86\xfc\x84\xd3\x21\xa5\xc7\x6a\x82\xf8\xf5\xa9\x45\x88\x8b\x31\x3c\xd5\x45\x24\x34\xc9\x6b\xb2\xec\x4b\x52\x77\x12\x9d\x6f\x64\x2d\x70\xd8\x0a\x89\x9b\xc4\x46\x8b\xc0\x26\xd6\x19\x5d\x4d\xee\xc1\x28\xdc\x58\x44\x81\x22\xcb\xa1\xca\x15\x58\x96\x9f\xd0\x67\x42\x40\x40\x2a\x40\xc6\xba\xf2\xea\x6c\x3a\x76\x47\xa2\x64\x5a\x86\x6d\x34\x0c\xe2\xa8\x22\xa1\x76\x5b\x09\xb2\x56\xa6\x0f\xd8\xb1\xcd\xbe\xdf\x8c\x16\x13\x11\x4a\x48\xa8\xfa\x8c\x0b\xb9\x99\x8d\x56\x36\xe3\xfc\xed\xeb\xda\xbc\xf2\x0d\xae\xaf\x8e\x65\x65\xcd\x47\x5a\x03\x83\xe3\x7c\xcd\xc7\x7b\x5e\xd5\x8e\xdf\x83\xdf\x4e\x78\xba\x7a\x12\x3f\x33\xe7\xe4\x7e\x9d\x09\x54\x10\xab\x37\xaf\x55\xde\xdf\xe2\x5a\xd8\x0c\x6b\x35\xde\x41\x43\xb6\x3d\x75\xa6\x3a\x96\x87\x07\x0b\x35\x09\xa4\x32\xe5\x97\x6a\xab\x49\xd8\x38\x2c\xe3\xdb\x2d\x17\x38\x42\x1e\xd7\x73\x5b\x74\x57\x65\xaf\x57\xee\x96\x37\x7b\xc9\xd7\x2e\x2e\x9b\xb5\x30\xac\xb8\xeb\x8c\xda\x99\x5b\x3e\x1f\x95\x85\x85\xb7\xb9\xd7\x37\xbc\x9f\xbc\x03\x08\x91\xb9\xc7\x3d\xe2\x27\x0e\x44\x13\xfc\xab\x3c\xab\xd2\x4f\x57\x98\xf9\xfd\xfe\x89\x02\xf2\xfa\xeb\xaf\x8c\xe7\xc8\xba\x0f\xdd\x67\x65\x06\xba\x60\x81\x09\xa3\xe2\x04\xc8\x38\x87\xe1\x6d\x88\xe3\x19\x32\x04\x65\x0b\xdf\x07\xc6\x76\xcb\x3a\x11\x4c\x52\x95\x09\x5b\x28\x7f\xb8\xb1\xd2\x95\x11\x64\x28\x45\xa5\xdf\x34\x1b\xff\x10\x76\x4e\x27\x19\xcc\xe4\x85\x60\x57\x8e\x5b\xc3\xe5\x31\x05\xd3\x82\x14\x37\xa9\x71\x66\x2d\xdc\xcf\x70\x8e\xd7\xb2\x8c\x57\x17\x1f\x9a\x06\x53\xc1\x10\x5f\x5b\xb9\xf9\xec\x0f\x10\x52\x50\x56\x9b\xff\x83\x20\xac\x76\x51\x51\x59\x47\x92\x9b\x88\x42\xb8\xe7\x97\xce\x1f\xac\xe0\x5c\xdb\x3a\x1d\xa9\x2d\xe6\xbc\x46\xad\x73\x98\x1f\xeb\xc8\x6a\xb0\x34\x9b\x81\x11\x33\x93\x28\x28\xb7\x34\x28\x7e\x73\x35\x75\xdb\x20\x73\xc9\xe2\xf0\xd6\xf0\x50\xd5\x44\x23\x72\xb7\x7f\xa2\x69\x4a\xf9\x0c\xe3\x0a\xa9\xae\x3b\x71\xbd\xbe\xc6\x0f\x44\x5a\xc9\x5b\x6c\xf5\x0b\x1b\xa0\xc4\xfb\x7a\x81\xff\x83\xf7\x15\xb9\xe7\xd7\x7f\xb4\x2f\x55\x17\xd3\x39\x4c\x1a\x87\x96\x22\xee\x2b\x83\xfb\x8e\x32\x17\x58\x7e\xb3\x8e\xd1\x9a\xe2\x81\x58\xea\xbb\xe3\xa4\xe3\xda\xc9\xe8\x30\xb6\xfd\xf0\xc1\xea\x40\x5a\x07\xa7\x0c\xaf\xf8\x89\x7d\x41\xe4\xe4\xcb\xb5\x1b\xc6\x3c\x26\x69\xda\x8d\xcd\xd2\x76\xe9\xc8\x5f\x1e\xe8\x09\x76\x27\x29\x1d\xa2\x1f\xcc\xcd\xc9\x4f\x2a\x6f\x6c\x4f\x40\xe1\x91\xec\x78\x57\xd3\x92\x73\x64\xec\x26\x21\xa0\xeb\x68\xeb\x68\x5b\xa4\x90\x99\x95\x65\x0d\x97\x10\xbd\x95\x78\x62\x7f\x93\xc4\x41\x1b\xc7\x8e\x75\xee\xf5\x4f\xd1\xa8\x41\x13\x97\x16\x1d\x4c\x2f\xb3\x63\x23\xa6\xab\xde\xf1\x61\xe9\x3a\x83\xb3\x3b\xdf\x62\x9c\xcd\xa9\x53\x0a\xb9\x72\x32\x96\x4e\xaf\xd7\x44\xc7\xd4\x45\x61\x5b\x10\x87\xeb\xe3\x27\xbd\xa6\x86\xe9\x36\x91\xd2\xab\xa3\xf3\xf3\xe9\xb3\xd0\xa9\xd6\xba\xb6\x76\xd7\xd7\xe4\x66\xab\xb4\x65\x79\xd9\xc6\xeb\xa2\x0a\xde\x2e\x62\xaa\x6a\x7a\xca\x6a\x21\x9c\xef\x19\x56\xd0\x53\xd2\x96\xea\x5a\x06\x21\x6a\x4b\xcd\x98\x47\x5d\xb5\xdb\xd8\xaf\x1d\x05\xef\x15\x35\x17\xba\x97\x1c\x23\x96\x5e\xa3\x29\xcc\x2b\x39\xf3\x6f\x97\xc4\xa7\x74\x8b\x8f\x4c\x84\x44\x71\x09\xf1\x06\xfe\x78\x02\xe7\x3b\x87\x0e\x20\xd2\x5a\xa5\xd1\x09\xc7\x27\x79\x7c\x3c\xd9\x27\x26\x6b\x5d\xa5\x65\x5a\x53\xc9\x54\x5a\xba\x43\xa2\x90\xa1\x78\x74\xc8\x38\xa3\xe9\xab\x72\xe6\x07\x2b\xb3\xba\x64\xf7\x3c\x4b\x29\x39\x4b\x9b\x65\x13\x35\x51\xa0\x77\x3a\x2c\x7c\x9a\x51\x4c\x38\xad\x31\x0d\x1f\x03\x28\x77\xfc\x37\x7b\x6c\x54\x3e\x02\x2c\x03\xc7\x2b\xac\x4e\xb1\x4f\xf9\x8f\xe2\x93\xf8\x9b\x0d\x07\x68\x56\x08\x86\x1c\x9c\x50\x11\xcd\xb0\x5d\x3f\xd2\xfd\xd1\xe1\x01\xeb\xda\x3d\x7b\x52\x74\xf7\x90\x8a\xbd\x8e\xd9\x50\xbb\xfd\x3e\xcc\x96\xdf\x5f\xe1\x87\x66\xf4\xfd\xc7\xad\xc2\x01\xe8\x31\x7f\x59\x9d\xd4\x81\xd5\xa2\x72\x4c\x1e\xbc\xe1\x91\xc5\x72\x16\x2d\x38\x84\x44\x9e\xbb\x5c\xdd\x02\x45\xd7\x31\xbf\x13\x1e\xde\x4b\xc7\x03\x12\x3f\xde\x0d\x1c\xdb\x67\x21\x85\x6c\xfe\x52\x24\xad\x5d\x37\xd0\x6c\xca\xe8\xad\xc2\x1e\x72\x82\x7c\xea\xda\xae\xbc\x1e\x70\xda\x22\xe6\xea\xb2\x02\xf6\x7a\x0c\xb1\xe8\x6f\x2a\x9c\xfe\xd3\x54\x41\x73\x85\x54\xca\xca\x35\xa5\x3d\xac\xb2\x7a\x4c\xa9\x0e\xc7\x44\xab\x0a\xcb\xaa\xd7\xfa\x47\x78\xde\x01\x1d\x14\xdb\x02\x98\xa6\x17\x4f\x12\x0a\x44\x1b\x37\xaa\x72\xa7\x8b\x26\x48\x0e\xb0\x03\x54\xef\x5f\xf7\x6d\x9e\xa2\xc7\x62\xd2\x42\x92\x6a\xf1\xf7\x26\xff\x8e\xf2\x54\x05\x2e\xa3\x38\x8e\x78\xff\x9c\xc1\xe9\x3f\xd6\x75\x38\xeb\x8b\x5a\x22\x4d\x81\x7f\x32\x11\x22\x1d\x9a\x16\x58\x82\x85\x36\x2a\xb1\x27\xfe\x3e\x5c\xee\x07\x34\x8d\xfc\x13\xb9\x29\x96\x79\xc9\x68\x50\xc2\x64\x12\xdb\x7a\x97\x32\xe5\xa4\xe5\x77\xd2\x30\x01\xb9\xaf\x6c\x7a\x7c\x84\xc6\xb1\x00\x4b\x2f\x8f\x69\xf9\x7a\x6b\xfb\x7a\xd9\xea\xda\x29\x4b\x1a\xf4\xc8\x06\xbb\x67\x78\xdf\x1e\x3e\xff\x27\x12\xb3\x80\xb3\xf1\xe2\x04\xaa\x17\xef\x43\xde\x63\x88\xa3\x4e\x14\x7b\xf3\x26\x46\x7a\x55\x18\x77\x5e\x3c\x50\x92\x0a\x95\xab\x2b\xc9\xd6\x9d\xe4\xeb\x59\x5e\x76\x5e\x6c\x58\x92\x2a\x99\xae\x19\xb1\xf7\x17\x23\x18\x42\x9f\xb3\x27\x70\xc3\xd0\x7e\x53\x6e\xc8\x0f\x07\xa5\x87\xfa\x27\x72\x7c\x17\x3d\xbc\x9b\x25\x8a\x8e\x9f\x93\x79\x13\x17\x05\x00\xc9\x4c\x78\xd5\x46\xc2\xc3\xa7\x48\xa8\x0f\x30\xa5\x8e\x0b\x9a\x47\x9c\x4d\xbd\x3f\x62\xa8\x7f\x50\x7b\x12\xe2\x10\xad\x91\xfc\xc8\x10\x95\x27\x10\xbe\x29\x87\x66\x43\x4c\x44\x0e\x6a\x8a\xdd\x4c\x37\x96\x63\x6a\x26\x1f\x34\x17\x34\xb0\x3a\x49\xa0\x71\x60\xc3\x87\x16\xdf\x9e\xf7\xaa\x8a\x4e\x3b\xf2\x19\x3d\xb1\xa9\x8d\xb5\xa9\xdc\x3f\xb0\xeb\xee\x2e\xa9\x2a\x91\x6d\x82\xde\x4d\x9c\x71\x05\x9d\x1e\xf4\xc9\x3e\xa0\x29\x57\x4e\x38\x74\x8d\x34\x46\x8e\x07\xb5\x93\x61\x7d\x28\xca\x17\x7d\x66\xef\x1b\x2c\x3b\x71\xd6\xb1\xca\xdd\xd5\x54\x6d\x79\x7e\x6f\xce\x1b\xa9\xb8\x98\x96\x83\x9d\xed\x6d\x28\x3e\x49\x44\xe3\xbc\xf9\xed\x97\xba\x8b\x6d\xe3\x44\x11\xae\x67\x7f\x02\x59\x3a\xee\x65\x0a\x34\x75\x22\xba\x6c\x1e\xaf\x58\xf1\x3b\x6b\x4f\xcc\xe1\xbb\x77\xb3\x10\x97\x12\xb5\xa0\xac\xc4\xee\xa2\x63\x75\xc4\xf1\x28\x2e\xbe\x9f\xf7\x35\x03\x17\xfb\x9d\x8b\xe7\x6f\x1c\x63\x73\x29\x0b\xf0\xa9\x55\x11\x6b\xa0\x6a\x90\x67\x6f\xe0\x99\xe4\xb4\xa5\xd5\xe5\x22\xa6\x5d\xc5\xf3\xd9\xe7\x35\x31\x54\xd0\x94\x0e\xae\xa6\xe0\xe0\x15\x0b\x93\xa6\x6d\x81\x8f\xe9\x4b\xc8\x1b\x2b\x4a\x2b\x13\xbe\x86\xb1\xad\x7d\xea\xca\x7e\xa3\xfe\x49\xbd\x63\x56\xcc\xb3\x77\x3b\x13\xb6\xbe\x21\xc2\x4a\x97\x7a\x15\x24\x0d\x9f\x1a\xfe\xf5\xdc\x23\x4e\xc3\x96\x95\x7c\x39\xb2\xc3\x4f\x7e\x9a\xa2\xff\x82\x79\x2d\xb8\x23\x7b\xb6\x92\x2f\xc2\x18\x70\x46\xbf\xc6\x47\xbf\xdf\x6a\x53\x3a\xec\xdd\xd7\xf1\xaf\x9b\xca\xa9\x9e\x9e\xde\xf4\x64\x64\xec\x68\x65\x6d\xb5\xbe\x1c\xf7\x56\x4f\x55\x4d\xcf\xd1\x8c\xaf\x58\x2d\x55\x29\x8a\xff\x75\xf9\x32\xdf\x2e\xc9\xb9\xba\xca\x91\x71\x29\x6c\x5e\x88\xdc\x48\xca\xc0\x09\x22\x2c\x25\x33\x59\x52\x3d\x64\xc6\xc8\x62\x61\xad\x60\xfb\x42\xcd\xde\x17\xbe\xe1\x6c\x19\x38\xbb\x7e\x57\xd6\xef\xa3\xf0\x4c\xff\x2a\xde\x55\xf8\xdc\x23\xdc\x97\xa2\x00\xd1\x45\xfe\x0d\xfa\xcd\xf2\x83\xd3\xd0\xbf\xee\x55\x46\x80\xb2\x13\xe4\x10\x3c\xea\xce\xb0\x44\x7f\x9b\x4d\x70\x75\x90\x21\x1d\x2e\x21\x64\x6a\xbf\x49\xba\x83\x21\x2b\xb6\xab\x58\x5b\xf6\xeb\xeb\x9d\xe5\x13\xab\xe1\x02\x9b\x7e\x70\xa9\x62\x57\x92\xbc\xbb\xfd\x5e\x25\x8d\xbf\xcc\x41\xb3\x9d\xbb\x7c\x48\xa6\x08\xe2\x36\x81\x24\x74\xdd\xc6\x6e\x0d\xba\xb7\x3b\xba\x4c\x7a\xe2\x8c\xd1\x7e\xc5\x2e\x99\xd2\x7f\x52\x71\xe0\x89\x7d\x13\x45\xa3\x63\xd5\xd3\xcc\x90\x80\xda\x03\x45\x68\x1b\x7f\x43\xe1\x93\x0c\x87\x1b\xa5\x5e\xe7\x88\x67\xaf\xc6\xe9\x26\xc4\xc3\xa0\xa3\x65\xde\x62\xc9\xfb\x1b\x6c\xe4\x0c\x9b\x80\x3c\xc2\x10\x60\x55\x60\xa0\x9b\x08\xd2\x71\xd7\x4a\xd0\x27\x9f\x86\xaa\x97\x63\xa5\xd9\x38\xb5\xa3\x69\x79\x2f\x78\xfe\x90\xa8\x13\x64\x86\x7e\x6c\xba\xf4\x5c\x3c\x4c\x1a\xec\x18\x12\xf8\xf5\x05\xfc\x11\x89\x5f\x95\xae\xa2\x15\x6f\xfa\xd0\xf4\xcc\x59\x02\xea\x6c\xa3\xc7\x61\x1c\x3b\xe9\x8a\xa6\x91\x1f\xa7\xae\xcd\x18\x7e\xfc\x4f\x95\xa9\xdf\xaf\x04\x56\x64\x1f\x25\x1e\x19\x0e\x78\x96\x00\x17\x2a\x39\x0f\x43\x98\x4a\xf8\x99\xc6\x6f\x2a\xa4\x4b\xe3\x69\x0c\x08\xf4\x41\x17\x97\x5f\xb6\x55\x94\xd8\xec\x48\xda\x79\x74\xa5\x4e\xcf\xde\xfe\x0b\x75\x17\x5f\xc0\xdb\x6e\x71\x93\x1d\x59\x2d\x42\x8d\xa1\x28\xf2\x17\x82\xde\xef\xea\x16\xdf\x08\x03\x85\x0e\x6a\x75\x26\xac\x65\xb1\x68\xcc\xf3\xab\x83\x84\xb8\xa6\xb0\xf6\x1e\xec\x0b\x01\x8a\xc8\xc1\x17\x08\x27\xfa\x11\x64\x0c\x6c\x0e\x84\x02\xa8\x46\xa8\xfb\x4c\x07\xa2\x59\xbe\x55\xb6\x0b\x28\xc7\xe5\xc0\xe9\xc0\xa5\x2c\x48\xd5\x7c\x83\xc4\x17\x31\x83\x2d\x7c\x36\x4c\x8d\x4d\xa0\xd2\x5d\x25\x42\xa6\xa2\xfd\x9b\xbe\x5f\xe5\x37\x60\x2a\x14\x47\x59\xc0\x86\xce\xa1\xef\xf0\xab\x0b\x45\x0b\xd8\x80\x6a\x0f\x64\x3d\x80\x1f\xa9\x1b\x67\x94\x5f\xc5\x11\x27\x87\x40\x9a\xbf\x9a\xc5\x02\x0b\xfa\xb1\xe0\x1f\x24\x92\xbc\xa4\x10\xac\x38\x69\xe0\x91\xce\x01\xe4\x83\x1a\x81\x98\xaa\x7e\x29\xa9\xae\xc4\xbc\x45\xde\xa2\x44\xdf\x25\x1e\x5f\x51\xf7\xad\xfd\xcf\xc0\x60\x2a\x52\x63\xb4\x81\xaf\xf2\xe7\x1d\xc8\x3f\xa1\x50\xfc\xa8\xe6\x61\xd0\xc1\xb5\xbf\x79\xb1\x41\xbd\xa4\xd5\xe6\x0f\x46\x9b\xf7\xbe\x90\xcb\x61\x1b\x45\x1e\xc7\x4a\xfb\xd7\xe9\xab\x04\x24\x56\xc6\xdf\x29\x86\x7c\x43\xdd\x15\x77\x0e\xf7\x74\x98\x91\xaa\x55\x33\x5e\x4d\x17\xde\x2c\xa7\x0e\x29\x12\xec\xaf\x81\xb8\xa4\x46\xb5\x9b\x8c\x64\xf6\x37\xb1\xc4\x43\xb3\x84\x87\xd8\x21\x07\xf2\x31\x5c\x91\xb4\xb2\x01\x62\xc0\x3c\x64\xc0\x27\x06\xe2\xfd\x82\x82\x47\x14\x38\xc1\x4b\x0e\x17\x6b\x61\xf6\x8a\xdc\xd2\xd9\xd6\xca\xf3\x16\x15\xac\x13\x54\x44\x2a\x23\xcc\x47\xd5\x7a\x42\xc1\x02\x73\x31\xba\xbb\x8a\xaa\x2d\xc7\x1f\x65\x6f\x5e\xb5\xe8\x4d\x32\x95\xdc\xa6\x4e\xdf\x17\x64\xfb\x19\x6f\xdf\x0b\xc9\xaf\xb3\x39\x3e\xbf\x13\x8a\xf7\xb8\x0f\x35\x03\xaf\x85\xcc\xb3\xda\xa5\x56\x65\x0c\xb0\x40\x9e\x81\x67\xcf\xb0\x50\xb8\x98\xa9\xaa\x6e\x79\x7f\xd8\x79\x11\xcb\x9e\x95\x36\x24\x88\xc5\x81\x72\x40\x74\x0d\xf3\xfa\x19\xb1\x08\x1c\xbf\x8c\x1e\xfa\xd9\x9d\x8b\xa1\x94\x58\x8a\xfe\x1f\x00\x00\x40\xff\xbf\xac\xd4\x66\x35\xc4\x26\x11\xf5\x4a\x47\x63\x59\x26\xe9\x54\x14\x08\xaf\x9d\x82\x61\x21\x75\xe7\xa9\x0d\xdb\xe9\x77\x83\xc2\xe0\x8d\xc2\x45\x47\x3b\x3c\x3b\xe7\xe6\x25\x67\x5a\xd3\x2a\x5b\x2a\xd3\x1c\xb3\xb6\x35\xd8\xba\x5b\x2b\x23\x52\xc2\x9d\xa5\x55\x89\x19\x95\xa9\x5a\xfa\x79\x7a\x44\xbc\x39\x3e\xc2\x90\x55\x9a\x30\xb4\x0e\xf8\xd2\x91\x6b\xeb\x4b\x6d\xed\xdb\x3a\x9b\x97\xb4\x37\x66\xa7\xd7\x57\x57\xb7\xcd\x2b\xeb\xd8\xda\x9e\x12\xa4\x89\x0e\x3b\x1f\x14\xa3\x0f\x8d\xc9\x74\x5b\x32\x1a\xab\x6a\x66\x2e\xa8\xb4\x96\x17\xe6\x16\x96\x5a\xb2\x3d\x8e\xe8\x47\xce\xd3\xf9\x69\xa7\xbc\x32\xcc\x0f\x57\x8b\xba\xd0\x62\xf7\x02\x23\x70\x42\x83\x0b\xab\x94\xb9\x1c\x46\x2a\xae\x9e\xb4\x16\x73\x3c\x26\xe7\x7b\x3c\x83\x2c\x42\xac\x1c\x0a\x09\xc0\x1c\x27\xf4\x29\x40\x10\x6a\x3c\xa1\x41\x58\xa5\x42\x7d\x10\x8c\xa5\x68\xed\xba\xe2\x22\x40\xcd\x8d\x75\x5d\xf5\x5d\x15\xe5\x45\xb5\xc5\xb5\xd9\x99\xf6\x94\x24\x53\x7c\x5c\x54\xa4\x2e\x42\x1d\x1a\xa0\x44\x85\x50\x18\xc6\x70\x57\x32\x86\x92\x1d\x34\x25\x95\xcd\x6f\x49\xd6\xc9\x2e\x62\x62\xa3\x9a\xe4\x06\x93\xa2\xe0\x8d\xb4\xc3\x80\x68\x01\x9c\x6c\xbc\xe1\xb6\x2f\x38\x91\xae\x71\x94\xb7\x64\xd6\x2c\xad\xb7\x7e\xfd\xad\xd2\x92\xca\xd2\xa6\x67\xd3\x66\xae\xad\x9d\xb9\xc5\x6a\x5f\x57\xdf\xba\xa9\xdd\x2e\x2a\x63\x0a\x67\x95\x5b\x0a\x33\x2c\x61\xe9\xc1\xe9\x55\xb3\x67\xa7\x95\xa5\x68\x01\xea\x22\x92\x0b\x7c\x7f\x49\x6a\x88\x85\x62\x67\x7b\x41\x3c\x61\xe7\x88\xf0\xd4\xc4\x39\x93\x23\x53\x9b\x57\x56\x3d\x7a\xe3\x44\x43\xdf\x4c\x8f\xaa\x6a\x45\xb3\xdd\xe5\x74\xe4\x39\x07\xef\x6d\xff\x5d\x67\x39\xe1\x3f\x0a\xd1\x46\x06\xdd\x13\x18\x17\xad\xe1\xde\xb3\x96\x77\x67\x56\x6d\x37\x95\x39\xe2\xc7\xbe\x6a\x8f\x83\x24\x53\x61\xa3\x3d\x3e\xd7\x16\x89\x30\xaa\x23\x7d\x9b\x22\xfc\x15\x25\x91\xa9\x93\xe5\x4e\xd7\x31\x97\x5b\x92\xd9\x94\x10\x4f\xc9\xa6\x02\xa0\x16\x01\xa2\x96\xbb\xa1\x49\x71\x15\xf9\xb9\x19\x69\xc9\xc9\x74\x73\x07\x5d\xf8\xc4\xbe\xe9\xef\x16\xb2\xb2\x05\x6a\x92\xb4\xe6\xea\xa8\x29\x92\xcb\xb1\x38\xfd\xb6\x63\x79\x5f\xe5\x1a\x17\x8e\x7a\xf6\x3e\xbf\x6c\xe9\xf5\x5d\xb5\x75\xbb\x9e\x5d\xd4\x7d\x36\x5f\xdf\x5b\x22\xfe\xab\xee\xcf\xb6\xae\xf4\xfc\x96\x23\xa5\xbf\xaa\xbb\x0a\xea\xfc\x96\x05\x25\x55\xc4\x90\x95\xd2\xbc\xba\xbe\x76\x75\x6b\xaa\xa0\x58\x2b\x3e\xff\xb5\x92\xfd\xdf\x3f\xdb\xea\xd9\xfd\xcc\xf0\xea\x17\xf7\xd6\x55\xe6\x2d\x7f\xbc\xf4\xcc\xd0\xbd\x31\xb6\xb0\x8b\xba\x3a\xc7\xee\x79\x63\x63\xc1\x91\xc1\x31\x0e\xab\x3e\x7f\xee\xce\xba\x92\x0d\xfd\x85\xee\xd5\x0f\x0f\x31\x19\xb7\x1a\x7d\x91\xef\xe1\x9f\x63\x76\x7a\x16\xe9\x27\x23\xd9\x10\x30\xf8\x0a\x91\xdb\x82\xc0\x77\xf9\x43\x8b\x79\xa1\x99\x18\xa3\x4c\x72\x98\x85\xf3\x0e\x70\xcf\xe4\xfd\x86\xef\x19\x8b\xe6\x7e\xe5\x7b\x48\x36\x47\xe1\xf1\x17\xdd\x37\x20\x9f\x98\xa4\xa8\x69\x6a\x4c\x9c\xb0\x4d\x6d\xbc\xbd\x81\x6f\xe3\xbd\x28\x0e\xa5\x20\x17\x95\xb5\x41\x2a\xcc\xa3\x8c\xf4\x44\x23\x2f\xf0\xd1\x7a\x8c\xfd\xb2\x76\x15\xe2\x30\xb7\x5a\x8e\x9d\xab\x99\xcc\xc9\x90\x62\xd7\xd8\xa6\x7a\xef\xa9\x45\x51\x3b\x8e\x51\xa5\x16\x44\x47\x84\x2c\x6d\xb1\xd6\x98\x43\xa5\x2d\xeb\x7b\x86\xcf\xc8\x9f\x9f\x56\xb7\x69\xfe\x9c\xf9\xf4\xb5\xab\xdf\x5e\xbf\x69\xfe\xd0\x62\x6f\x66\x26\x74\xc6\x95\x59\x18\x44\x63\x38\x35\x4d\x7c\x2a\xb7\xb2\x61\xb5\x0c\xd7\xd0\x46\x9c\x78\xdf\xf3\xbb\xa3\x0c\xb1\xa1\x51\x9f\x7e\xbf\xee\x4f\x27\xfa\x1e\xc8\xc7\x5f\x0a\x55\x53\xb8\x46\xc7\x99\x7c\x5f\x73\x34\x45\x70\x4c\xe0\x36\x14\x3a\x8a\xdb\xa0\x5c\x13\x14\xc4\x3b\x09\xb7\x41\x63\xd9\x57\x7d\x3a\x24\xe3\xee\x78\x0c\xf5\xa7\xe2\x31\x5c\x4b\xee\x1f\x9e\x77\x2e\xcf\xeb\xcd\x3d\x33\x6f\xe1\x85\xc5\x2e\x06\xd9\xec\xdb\x9c\x64\xd9\x38\xa7\x61\x79\x75\xa2\x04\xc7\x28\x2b\xf1\xfd\x53\xf9\x25\xdf\x73\xee\xca\x71\x3c\x46\xb9\xef\x93\xb2\xb6\x09\x3c\x46\x24\x42\xfc\x8b\x44\xf6\x6b\x90\x9e\x46\xb3\xaa\x14\x18\x05\x09\x18\x02\xe9\xc9\x3b\x10\x71\x38\x90\x1b\x0c\x00\x1a\x3f\xcd\x4b\x5a\xf8\x14\x16\xb6\x19\xaa\xb8\x71\x3a\x11\xf2\x4b\x5c\x0e\xa4\xce\xfe\xa3\x38\x5f\xb4\x7d\x3b\x0d\x14\x5c\xb5\x8a\x86\x0a\x8e\x8d\xe1\x0e\xdf\x15\xfe\xc8\x91\x31\x44\xa3\x06\x79\x74\x04\x8c\xe2\x8f\xc1\xe8\x3b\xfc\xfa\x38\xee\x8a\xfa\x33\xa9\x8f\xf8\xee\x58\xb8\xcf\x46\x56\xc9\x98\x37\xd2\xa6\xed\xb7\xff\xc8\x62\xe6\x38\x14\x85\x9a\xa5\x53\x55\x34\xe2\x41\x00\x5e\x18\x91\x42\xf9\x58\xe7\x8f\xa3\xc8\x0c\x53\xbe\x24\x1f\x4f\x46\x37\x10\xe0\x48\x62\x44\xd2\x44\x1c\xa4\xc3\xe8\x50\x4f\xe8\xcc\xd2\x78\x40\xbe\xd7\x8b\x7b\xbd\xb6\x8e\x1d\x5d\x75\x9b\xba\xb3\x6f\x92\x8d\xa0\xc8\x1c\x4a\x02\x44\x8e\xb7\x6e\xeb\x4e\xb7\xb5\x6f\xef\x1a\xea\x8d\xc9\xaa\x49\x65\x36\xab\x16\xb1\x89\x6f\x16\x5e\x21\x3d\x6e\x44\x69\x28\x1f\x35\xbb\x1b\x82\x00\x2b\x24\x2c\xde\x0c\x08\x0c\x0c\xe8\x0b\x82\x80\x80\x4a\x8f\x0a\x28\x1c\x8f\xb9\x97\x19\xe8\x5d\x32\x80\x4c\x86\xe6\xe5\xb9\xa8\xc6\x68\x31\xb3\xd1\xa0\x28\xbd\x60\x55\xdc\xdd\x50\x7a\xa6\x24\x32\x28\x5a\x16\xf8\xf0\x69\x56\x66\xfc\x34\x9c\x9e\xc0\xee\xb9\x32\x19\x76\xef\x47\xbe\xc7\xe0\x91\x1f\xfb\xd6\xff\xf9\x77\x5c\xac\x8c\xe1\xf3\xbd\x3c\x81\x33\xbc\xf5\xda\xc2\x8b\xcb\xf3\x94\x81\x17\x28\x9a\x2f\xaa\x78\x41\x23\x77\xe1\x41\x3f\xf6\xf0\xa6\x1f\xd4\x97\xea\xff\x2b\xe9\x6f\x37\x25\xff\xfc\xf4\xf8\xca\xd2\xcf\x8e\xaf\x0c\x38\xe5\xf5\x2e\x87\xc3\x3f\x16\xf3\xe0\x0f\xbf\x83\x1f\xee\x11\x1f\x27\x27\xc9\x3f\xae\x87\xf3\xa2\xd1\x77\x19\x01\x2a\x20\xf7\xf5\xd0\x78\x66\x7a\x3e\xa3\xe4\x58\x34\x44\x46\x45\xd1\x83\x53\x83\x2d\x89\xa1\x94\xd9\x13\x93\xb4\x02\xc3\x72\x28\x9d\xe4\xcc\x0a\xbb\x40\x21\x7e\x42\x03\x2f\x8f\x1e\xf5\x72\x8d\x33\x1f\x9a\xe9\xfb\xdb\x03\x78\x24\xed\xa1\x34\x7c\xe1\x0e\x5c\xa0\x9a\xd8\xd5\x83\x29\xfd\x96\x74\x7f\x6e\x02\x52\xca\x71\x7c\x0f\xc5\x95\x4e\x76\xd2\x31\x98\x20\x8f\x98\x17\x4f\xfe\xd8\x0f\x28\xd5\x12\x9f\x1d\xb3\xf5\x24\x29\x05\x69\x3a\x53\xb6\x25\x6a\xc8\xc2\xff\x80\x44\x10\x7f\xec\x9f\xd8\x5f\x80\x99\xe2\x51\x6c\xe3\xde\xdf\xfd\xd0\x6e\xdf\x28\xe9\x59\xd7\xb9\x87\xce\xc1\xaf\x1f\xa4\x38\x1d\xd1\xc3\xc7\x91\x36\x47\x53\x7f\x76\x54\x84\x86\x93\xf0\x9c\xf4\x94\xcf\xd5\x0b\x3c\x96\xb5\x36\x09\x31\x24\x1f\x51\x49\xf1\x68\xb5\xd6\x9a\x24\x05\x89\x4e\x9e\x28\xc4\x6f\x0f\xcc\x05\xa4\xe6\x63\xc1\xde\xba\xb6\xc1\xe0\x88\x0b\x51\xc5\xc4\x45\x2b\xca\x2a\x44\x81\x28\x6f\xb7\x48\xc8\xcd\xbf\xdb\x76\xf4\x66\xa8\x02\x8f\x53\xcf\xc2\xb2\xae\x3e\xde\x7e\xeb\x9b\x64\x9a\x7f\xc8\xfb\x79\x40\x6e\x90\x3a\xe9\x99\x0f\x62\x91\x3b\x34\x81\x82\xdf\xd5\xe4\x9f\x30\x00\x2c\x23\xd7\x24\x7b\xa3\x42\xc0\x7e\x90\xd6\xe4\xf9\x4c\xd9\xef\xa8\xee\x52\x2a\x87\x33\x4e\x2f\x22\xd9\x1e\xa8\x6b\x42\x93\x64\xb5\x9a\x98\xed\x41\x56\x49\xd4\xe4\xbc\x3d\xd1\x18\x75\x8e\x0c\x7f\x82\x39\x33\x5c\x17\x17\x77\xde\x33\x27\xfb\x89\x73\x06\x97\x21\x24\x20\xd6\x10\xad\xac\xa8\x59\xbb\x76\xce\xd6\x24\x62\x91\x38\xd7\x3a\x3b\x7b\xc1\xc5\xa5\x63\xbe\xc7\x9e\x03\x55\xe0\x03\xb4\x65\x03\xbd\xf8\xf6\x91\xcd\x75\x25\x63\xdf\x66\x20\x16\x8c\x9a\x89\xbe\xf0\xa8\xf0\x26\xdd\x43\xd1\x77\x58\x43\xae\xc7\x33\xae\x04\x66\xb6\x61\x6f\x38\xf2\x86\xfe\x0d\x80\xfa\x9e\x9e\x71\xbe\x3f\x44\x4d\x64\x44\x86\xca\x70\xbd\x4a\x4f\xa0\x0a\x53\x73\x9a\x14\x4f\x2b\x9b\x7d\x72\xef\x2c\x89\x68\xc1\x00\x90\xcf\x54\xfe\x6b\x18\x9f\x96\xf4\x5a\xb6\x5b\xc7\xb8\xb3\xe5\x2b\x89\xfb\xc6\x7f\xe1\x94\xb3\x98\x74\x15\xa8\x54\xf2\x45\xc4\xc1\xa0\x31\xc4\x9a\x12\x62\x53\x0d\xa9\xcc\xfd\x68\x4b\x0c\x0b\x22\xf6\x39\xa3\x51\x86\x0d\xf9\x37\xd8\xf1\x30\x7b\x21\x7b\x3c\x5a\x80\x1a\x7a\xf8\x47\xc5\xf6\x92\xdd\x55\x83\xe7\x97\x15\x16\x2c\x3d\x3f\x58\xb5\xb7\x04\x1e\x12\x57\x43\xb7\xf8\x38\x9c\xf6\x35\x66\x65\x47\x65\x47\xe7\x77\x17\x18\x48\x38\xa2\x32\xb8\x62\xf7\x1b\xdb\xe1\x8d\xed\x6f\xec\xae\x9c\xa1\x3a\x23\x9a\xcf\xf8\xfe\x1e\xc1\xf1\x0f\x61\x9c\xd4\x79\x68\x91\x58\xb8\xe8\x48\x67\x12\xd5\x53\xd2\x49\xff\x5e\xe3\x9b\x48\xef\x96\xa3\x66\x54\xe3\xae\x54\x81\x12\xc5\x00\x87\xcd\xb1\x98\xe7\xb8\x7a\x52\x7d\x84\x39\x15\x66\xbb\xd1\x38\xc0\x15\x38\x8e\xef\x13\x80\x31\x77\x55\x56\x78\xea\x2a\x9a\x2b\x9b\x89\x7d\xc3\x9a\xa4\x35\x9b\x69\x83\x34\x77\x57\x59\x69\x0c\x81\x4c\xf8\x71\x77\xcb\x47\x92\x71\xfc\x65\x7a\x5a\xd7\xf6\xb6\xf6\xed\xa9\x69\xeb\xab\x67\x6e\x68\xb6\x88\xae\x88\xe4\x12\x7b\x65\x5f\x42\xae\x3a\xad\xa8\x21\xb3\x6b\x57\x5a\xea\xb6\x99\x33\xb7\x77\xa7\xdd\x54\x5b\x8a\xec\x29\x85\xd4\xa7\x55\x9c\x92\x52\x98\x14\x0e\x22\xa8\x43\x8d\x8e\xa4\x04\x87\x49\x83\xb7\x2d\x7a\x72\x63\x79\x45\x49\x69\xb9\x7b\xd5\xfd\x7d\xd7\xdd\x95\x2b\x5a\xec\x29\xb1\x5b\xc3\x13\xa3\xc3\xca\x4a\x8a\xcb\xcb\xd7\x3f\xb9\xa8\x72\x75\x5b\x7a\x7a\xdb\xea\xca\xb7\x2b\x57\xcd\x4c\xcf\x68\x5b\x5d\xa1\xea\x48\x69\x2a\x4e\xb2\x37\xad\xa8\x40\x00\xef\x22\xc4\x07\x29\xec\xd4\x66\xef\x36\x07\x00\xa0\x40\xa0\x68\x41\x86\x83\x41\x30\x34\x61\x23\xd3\x20\x12\x89\x20\xd9\xc8\xe4\x18\x04\x79\xe0\xe0\x5d\x12\xe8\x31\x2f\xa9\x26\x49\x1f\x9e\x1e\x57\xb9\xa0\xda\xcc\x0f\x2f\x7b\x62\x75\xd1\x8c\x80\xc3\x82\x22\xa5\x69\xa4\xea\xd6\x39\x3f\xb6\x88\xac\xe1\x7a\x85\x9d\xc6\x1d\xb8\x8b\x12\x40\x21\x18\x81\x57\x04\x01\x46\x54\xba\xf0\xec\xe4\xcf\x0b\x0a\xf2\x4c\x52\xa7\x1e\x1a\xd2\x71\x07\x5a\x9c\x06\x42\x68\xac\x49\x92\x75\xde\xa4\xbe\x43\xc0\xe4\x52\x0d\xe1\xce\xd8\x08\xa5\xd6\xc1\x6d\xfb\x56\xf6\xec\x7d\x1d\xb6\x16\xc2\x1e\x6b\x4b\xb5\x06\x75\xcc\x82\x2f\x7e\xb1\x60\xd9\xb9\x81\x8c\x9e\x0c\x7d\x74\x4d\xf2\xce\xcd\xf0\x2d\xee\xca\x98\x71\xf6\xd1\x41\x47\x58\xc4\x09\x55\x50\x00\xbf\x79\x19\xf7\xe3\x23\x43\x03\x27\xe7\xe7\xe8\xd4\xc7\x83\xc3\x60\xd3\xe8\x90\xa4\xcf\x0c\x91\x79\xf4\xb6\xf0\x09\x32\xa1\x32\xd4\xe1\x0e\x8c\x02\x0e\x12\x80\x67\x27\xc7\x64\xa6\x07\xd0\xf8\xa8\xbb\x92\x34\x48\xe6\x79\xbc\xea\xae\x5f\xf6\x3c\x9f\x96\xa6\x4d\xb3\x30\x81\x3d\x39\x52\x9d\x39\xa3\x1d\x3a\xea\xd9\x9e\x1e\xb2\xde\x7b\xd7\x90\xf5\x95\x4f\x14\xbb\xb2\xe1\x31\x98\x37\x27\x35\x19\xff\xbf\x07\xae\xb7\xd7\x84\x2f\x9d\xb9\xed\x71\x53\xf7\x7b\xf3\x3e\x2b\x7a\x9d\xf6\xc5\x3a\xd2\x17\x4f\xf3\x4f\xa2\x38\xe4\x40\x19\xee\x54\x15\xf0\x28\x14\x38\x1e\xfb\x15\x6d\x59\xc7\x9e\x7c\x52\xb6\xd9\x08\xa2\x84\xb6\x72\x62\xe5\x38\x1d\x0c\xc3\xf5\x59\x76\xc2\x75\x54\xa1\x1e\xb8\x50\xec\x72\x3c\x0e\x7d\x9d\xb6\x94\xcf\xc1\x40\x17\x3a\xd5\x0b\x67\x6e\x78\xc8\x5c\xf9\xc8\xac\xcf\x80\x42\xb3\x38\x63\x61\x97\xf0\x1b\x64\xa2\x58\x0a\x00\xe0\xa0\x5e\x21\xb0\x5d\x4d\xa6\x9a\x93\xad\x32\xac\xee\xd2\xae\x40\xe2\x8e\xc3\x75\x6c\x57\xd0\x12\x1b\x19\xa5\x3f\xbd\x6b\x04\x72\x1a\x51\xcf\x1e\xbb\xff\x51\xf8\xf4\x40\xe4\x1b\x8a\xc4\xc2\x8e\xbc\xe7\xbc\x41\xbe\xe1\x4f\x89\x48\x46\x12\x6e\x53\x28\xe5\x8f\xa3\x78\xd4\xe7\x0e\x88\x25\x91\xb9\x8c\xe3\x51\xb6\xae\x83\x80\x85\x55\x54\x73\xf6\x6f\x68\x20\xab\x9c\xb1\x93\xbf\x92\xcd\x15\xe3\xe2\xd9\x1d\x22\xc1\x4e\x29\xe0\x3d\x82\xb5\x45\x41\xf7\x31\xeb\x5d\x40\x9d\x5a\x32\x40\x42\x29\x1c\x3c\xfe\x78\xd0\x54\x6c\x67\x65\x0e\x7f\xfc\xc9\xe7\x34\x63\x3f\xba\x0b\xc6\xf3\x50\xf8\x8a\xf9\xac\xfe\xd7\x44\x0f\x97\x42\x71\xa7\x14\x47\x38\x11\x11\x72\xd7\x38\x10\xaa\x5f\x12\xcd\xec\xee\x51\x20\x3c\xb6\x8c\x6b\x8f\x0e\x17\x89\xfc\xe8\x23\x91\x1f\x27\xee\x1a\xef\x81\x10\x66\x7c\x73\xfd\x7c\x33\x8d\x13\xa3\x1c\x6b\x31\xc0\xa1\x68\xc0\x12\xbe\x4d\xe0\xb1\x30\x38\x1e\x1f\x46\xe3\x3d\x79\x5e\xee\x9b\x4f\x0b\x15\x03\xd9\x94\x6d\x65\x20\x05\x63\x3a\xe7\xf7\x8d\x33\x86\x35\x26\xf7\xf1\xe0\xda\x97\x76\xd7\x34\xed\xb9\x3a\x30\xfa\x85\x55\x79\xf8\x1f\x5c\x6a\xeb\xda\xa6\x95\x0f\xba\xea\x62\x3c\x43\x5b\x16\xe4\x0f\x7a\xb2\x83\x7c\x5f\x31\x56\x2c\xe4\x9b\x5b\xef\x7b\x7b\x34\x75\xf4\xed\x23\x2d\x50\xbb\xfd\x8b\x8b\x36\x34\xec\x9d\x57\x50\x92\xbe\x25\x2a\xd3\xa2\x1f\x73\xa6\xb7\x2e\x27\x5c\x8e\x84\x4a\x45\x92\x95\xaf\xf1\xbf\xe0\x0c\xc2\x1f\x91\x0a\xc5\xb9\xa3\x15\x1c\x62\x01\x2b\x00\xa4\x15\xab\xa9\xa8\xc1\xe3\x81\xd9\x5a\x13\x39\xa0\x3a\xa9\x45\xf0\xdc\xa9\x93\x67\xfe\x39\xc2\xfb\xa2\x4e\x9f\x8e\xfe\x33\x42\x00\x99\xfc\xcf\xb9\xf3\xec\x1e\x31\x74\xce\x00\x02\xc9\xec\x88\x81\xb9\x7c\xe4\x3b\xe4\x3a\xb4\x4a\x93\xd5\xe9\xc0\xf3\x4e\x5f\x12\x57\xdd\x7a\x40\xe8\x38\x13\xfe\x9f\x7f\x6a\x59\x3d\xa0\x90\x7f\x8c\xbb\x8f\x70\x6e\x69\x29\x6f\x87\x1f\x89\x23\x85\xe6\x83\xdf\x2d\x61\x8e\x30\xb3\x80\xfc\x69\xcb\x98\xbb\x2f\xa5\x69\x79\x65\xd5\xf2\x26\xfb\xa9\x70\x73\x5e\xb2\x35\xd7\x1c\x2e\x3c\x53\x38\x54\x6d\xb5\x56\x0f\x15\x1a\x72\x93\x23\x23\x93\x73\x0d\xf4\x19\x7f\xe3\x7f\x8a\xbf\x23\xbc\x8c\x82\xfc\x78\x4b\xc9\xa5\x00\x0d\x77\x71\xa3\xfc\x4d\x36\x36\x0b\x4d\xd4\x8d\x42\x0d\xc9\x18\xce\xf1\x73\xb8\x2c\xe1\xd7\x48\x83\x4c\x77\xf1\x4d\x94\x70\x0d\x96\xcf\x75\x3a\x53\x8d\x0e\xce\x19\x73\x3d\x29\x29\x75\xb9\x09\x09\xb9\x75\x29\x29\x9e\x5c\xe3\x90\x3a\xce\xa2\xd3\x25\xc5\x86\x15\xa6\xa6\x96\x08\x09\xf6\x3a\xea\x77\xa8\xb3\xdb\x6b\x1d\xb1\xb1\x8e\x5a\xbb\xce\x12\x17\x16\x16\x6b\xd1\x67\xb2\x43\x08\xc0\x61\xb1\x99\x03\x94\x87\xf4\xb4\xaf\x02\x59\x7f\xeb\x03\x30\xf3\xaf\xc8\x53\x3d\x29\x89\x36\x89\xa8\x43\xd4\xf6\xae\x23\xfa\x82\x42\x31\x6e\x7a\xc7\xdf\x6f\x9a\x63\x4e\x49\x70\x86\xc5\xc7\x76\x94\x51\xf8\x89\xc9\xdd\x97\x97\xb2\xa2\x3c\xd1\x06\x1a\xd5\x86\xb0\xd8\xc8\xcc\x9a\x0c\xdb\xcc\xa6\xea\x18\x3a\x3f\xf6\x93\xb1\x2d\x20\x76\xa6\x78\xd4\x4c\x31\xfd\x1c\x0e\x03\x04\xb8\x3e\x1e\x70\x6d\x28\xa0\x1a\xc9\x59\xa8\x95\x1d\xef\x25\xe3\x9e\xb6\x22\xc4\x90\x93\x1c\x79\x8b\xfa\xc7\xbf\x06\x82\x9c\x34\x59\x93\x26\x03\x3d\x79\x36\xcf\x59\x87\xc9\xe3\x59\x10\xef\x6a\x48\x33\xe6\xd8\x2d\xd6\xd4\x98\xd4\x7c\x58\x18\xef\xf2\xa4\xa7\x54\x94\x96\x59\xb5\x96\x18\xb5\xf0\xcd\xb4\xb6\x62\x73\x88\x36\x4a\x1b\x52\x96\x1e\x99\x36\xb3\xd4\x62\x30\x19\xc2\x0d\x36\xbd\xb4\x67\xfc\x8b\xff\x19\xf7\x6d\xe1\xcf\x0c\x37\x26\xe3\x94\x7a\xd8\x44\x9c\xc4\x0e\xe1\x60\x81\xdc\x26\xfc\xcf\x9f\x8a\x1f\x3c\x51\xff\xc1\x3f\x4f\x09\x7f\x16\xff\x0e\xc1\xe2\xdf\xd9\x3d\xe0\x0b\xe2\x5e\xfc\xc3\xdb\x57\x90\x86\xb4\xba\x54\x8e\xf8\x91\xc2\xf2\x87\x98\x38\x91\x91\xa1\x91\x13\x9f\x02\xe0\x2e\xff\x77\x18\x9a\x09\x3e\xd4\x22\x4d\x05\x61\xea\x54\x60\x1e\x62\xff\x44\xf8\x42\x64\x4a\x5e\x42\xbc\xcb\x16\x19\x69\x73\xc5\x27\xe4\xa5\x44\x76\x82\x35\x36\xda\x62\x89\x8e\xb5\xfe\x36\x21\x97\x72\xf8\x92\x39\xe2\xa2\x1c\xbe\xae\x84\x18\x4b\x52\x6c\x9c\xd5\x8a\x10\x8c\xbd\xc7\xbf\xe8\xbb\xa5\xd0\x91\x36\xaa\xdd\x21\xe3\xd1\xea\x13\x21\xea\xbe\x5b\x5b\x9f\x7d\x86\x7f\x91\x1e\x18\x7d\x0b\xf9\x17\xc5\x53\x0a\xbd\x54\x56\xf6\xbc\xca\x65\x49\x1f\xf8\x7e\xf7\xd4\xcd\x35\x0a\xbd\x78\xf9\xf6\xed\xb1\x7b\xf8\x9f\xdf\xce\x23\x63\xad\x44\x0f\xdd\x12\x11\xfd\x01\x5f\x0f\xff\x5d\xf1\x88\x62\x0d\xd2\x50\x1c\x6f\x38\x70\x13\xec\x3d\x43\x88\xce\xfc\x2e\xda\x05\x3d\x3c\xf9\x82\x6b\x94\xb4\x37\x82\xe6\x64\xeb\x94\x32\x23\xd3\x0d\x96\x06\x68\x31\xd7\xbf\x6f\x05\xd4\xd4\xc7\xa4\x17\x19\x95\x47\x2f\xc6\xa4\xe6\xc5\x02\xff\xdd\xb3\x42\xac\x4d\x67\x08\x57\x2d\x9e\xd7\x6d\x71\x99\x23\xf8\x1a\xda\xff\x63\x02\xff\x0b\xf1\x97\xc2\x9f\xe4\x31\xbc\x83\xfe\x7f\x82\x7e\x41\x1a\x45\xdf\x4f\x9e\x10\xbf\xf6\x53\xb8\x7d\xea\x5f\x1f\xf0\xbf\x80\x40\xf1\x5f\x10\xc8\xea\x6d\x15\x1f\x17\x83\x6f\xef\xf9\x2c\xbf\xa9\x30\x69\xc1\xfb\xac\xf2\x82\xff\xbd\xbc\xde\x01\xdb\xf8\x7f\x73\x69\x8a\x8d\x88\x1b\xbf\x47\x87\x1f\x9d\x82\x80\xf2\x20\x28\xa5\x2e\xc4\x8b\xdf\x78\xb2\x57\xb1\x51\xdc\x82\x10\x07\x1a\x32\xff\xfe\xae\x78\xc5\x6f\xaf\xa4\xb6\x20\x46\x23\x21\xf1\x52\xe1\x3e\xba\x61\x66\x72\x0d\x7e\x23\xa5\x32\x9a\xdd\x40\xf8\x34\x8b\xc6\x9a\xf7\xd7\xee\x13\x3f\xc8\x97\x6a\x96\x0f\xb7\xe4\x57\x8a\x57\xc4\xff\x2c\x60\xf5\x74\xbb\xd3\xfd\x7f\x09\x1f\x66\x26\x5e\xc2\xe9\xb8\x3a\xac\x40\x6b\xf3\x24\x5f\x13\xe2\x33\xc7\x39\x9b\x24\x00\x31\x4e\xa6\xca\x87\x4d\x62\x83\x50\xea\xfd\x4c\x29\x7c\xa6\xaf\xf4\x26\xb7\x49\x88\xfc\xe4\x37\xa4\x3c\x5d\x47\xe9\xe4\xda\xe7\xc8\x6b\x4e\x62\x66\x55\x00\xe3\x6d\x42\x28\x99\x6d\xa8\xbd\x77\xde\xc3\x01\xc6\x5c\x23\xe0\x9c\x4b\xf0\x93\x5b\x1b\xff\x82\x9f\x10\x6f\x52\x12\xbd\xd3\x3c\xe3\x0c\xe0\xc6\x79\x94\x38\x64\x44\xa5\x8c\x27\x0d\x10\x75\x22\x0e\xca\xd6\xc4\xcc\x71\x33\x69\x16\xa6\xec\x3f\x56\xd6\x37\xcc\x80\x2b\x7c\x0e\xaf\x12\xd7\x28\x66\xc2\xd7\x21\xe2\x7f\x67\x57\x3a\x71\xfa\xb1\xff\x89\x5f\x09\x90\x0b\x21\xfe\x92\xcc\xe7\x82\x00\x92\x99\xe9\xc4\xc6\x26\x29\xeb\x17\x69\x92\xe2\xc5\xe2\xbd\x2f\xc1\x2f\x1e\x84\x5f\xbe\xc4\xdf\x7f\x6b\x1e\xed\x1a\xa9\x5f\xee\xf3\xf3\x98\xd0\x79\xce\xf8\xe3\xfc\xfc\x60\x94\x3b\x88\xd9\x62\x92\x65\x20\x3a\xeb\x6c\xfa\xc3\xfa\x25\xd7\xef\x81\xe4\xc8\xef\x7d\xdc\xa3\x63\xbd\x1d\xf8\x6f\xbe\x90\x99\xdc\xa9\xb1\xc5\xa7\x4f\x73\x25\x67\xb8\xc0\x33\x6c\x6f\x7f\x88\xdc\x3f\x45\xe6\xca\x41\x00\xec\x4c\x3d\xb9\x92\x61\xbc\x32\x52\x66\x46\x33\xf2\x29\x5e\xdf\xef\xbc\xdc\x3d\xf2\x24\x90\xb8\x79\x57\x50\xbe\x19\xaa\x7d\x53\xea\xae\x19\x0a\x0a\xb7\x15\x00\x10\x57\x2f\xf3\xd0\xdd\x59\x47\x02\x07\xa6\xf7\x04\x60\xa1\x1a\xe0\x24\x7f\x80\x8b\x12\x8b\xb8\xe8\x31\x80\x5f\x8a\x31\xdc\xfb\xbe\x28\x78\x03\xbf\xef\xfb\xca\x99\xa3\xb8\x0e\xd7\x1c\x3d\xe3\xfb\x1a\xeb\x8b\x2a\xf2\xac\x7d\x8c\x93\xc7\x8c\x32\x28\xbf\x8d\x3d\x25\x21\x5e\x1f\x1c\x48\xdd\xb3\x50\xcf\x3a\x17\xb1\x6a\xc7\xc6\xb0\x75\x37\x39\xdb\x84\x1f\xee\x0e\x14\x5e\x4b\x08\xd4\x04\x8a\x56\x50\x97\x70\xf8\x8d\xc1\xcb\x1b\xaa\xaa\x36\x5c\x1e\xf4\xce\xbd\xbc\xb1\xb2\x72\xe3\xe5\xb9\x5e\x31\xdf\x5c\x35\xaf\x8c\xf2\xce\xe2\x6f\x9a\xab\x86\xdc\xee\xa1\x2a\x33\xff\x33\x55\xdb\xfe\x9b\x2b\x46\x5e\x38\xd0\xae\x7c\xf3\x4d\x65\xdb\xfe\x17\x47\x56\xbc\xb8\x7f\xa6\xf2\x6b\x3e\x53\xcb\x9e\xc1\x42\x05\xfe\x93\xb2\x70\xee\xee\xc6\xe6\x5d\x83\x85\x4a\x5f\x38\x79\xbd\x07\x01\x9a\xef\xe7\x7e\x8a\xa7\x75\x8d\x0b\x0b\x46\x3c\x0b\xd4\xc1\x18\x21\x79\x85\xe9\xf5\x7a\x1d\xeb\x8c\x12\x8e\xa9\xbc\x52\x7c\x6a\x3a\x7b\xc3\xaa\xea\xc0\xef\xe4\xf6\x94\x9a\xbc\xa5\x23\x17\xe6\x78\xfb\xef\xa7\xb4\x05\xa5\x3d\x2e\x2f\xfc\x78\x46\x5e\xef\x96\x16\x3c\xec\x3b\xb7\xf6\xf9\x9d\x0d\x41\xe2\x8b\x50\x19\xd4\xb0\xf3\xf9\xb5\xf4\x93\x96\xcd\xbd\x79\x33\xb8\xaf\xb3\xf1\x1d\x24\x75\x58\x4a\xd6\x55\x06\x4a\x71\x5b\xc3\x11\xf6\x2f\x51\xff\x92\xe2\x81\x82\x10\x05\x90\x06\x26\x9a\xb0\x2d\x25\xd3\xc9\x93\xe4\x0a\x9f\x38\xf8\x68\x75\xe1\x7a\x6a\xba\xa3\x2e\xdf\xc9\x78\x0a\x25\x19\x37\xfc\xf8\xf6\x7b\xd2\x3a\x36\x37\x35\x6e\xec\x48\x87\x43\x3b\xc4\x22\x50\x94\x90\xde\xaa\xdb\xf7\xf2\xe8\xe8\x2b\xfb\xea\xcd\x15\x73\x4b\x88\xbc\x2d\x7a\x2d\x0e\x12\x3e\x6e\x1d\xbd\xbe\xc9\xed\xde\x74\x7d\xb4\xf5\x96\xf8\xb3\xb8\xd7\x4e\x67\xec\x7b\xf0\x5a\x4f\xf3\x81\xdf\x3f\xd1\xdf\xff\xc4\xef\x0f\x34\xf7\x7c\xf1\xd2\xbe\x8c\xd3\x4c\xae\xec\x20\x7e\xd1\xfd\x2c\x66\xd8\x85\xde\x96\x8e\x19\x61\x46\x50\x70\xa9\x76\x8c\x14\x61\x81\x98\x4e\x2d\xca\x25\xe1\xff\x9c\xbf\xe3\xf3\x29\x1f\x09\xdc\xb8\xa1\x2a\x0a\x29\x14\x5c\x9f\x92\xda\x0c\x1d\x1e\x01\xa8\xa4\xc7\x00\x90\x05\x32\x31\x45\x1c\x55\xc2\xed\x1e\x56\x0c\x4d\x2f\xe4\x36\x23\xa4\x10\x14\x48\x18\x99\x5a\x8e\xac\x45\xb9\x18\xb5\x3b\xa9\x29\xc6\xc1\x66\xa5\xa0\x56\x9b\x39\x29\x49\xa5\x8c\x94\xa1\x43\x4c\xc9\x9a\x64\x94\x71\xca\x4e\x1e\x98\x12\x97\xc9\xfd\x79\x86\x36\x2e\x3c\x34\x26\x50\x1f\x5f\x98\xe0\x19\x8a\x74\x9d\x5b\x30\xf7\xd4\x70\x4e\xce\xf0\xe9\xa1\x85\xe7\x5d\x59\xbe\x17\x62\x4b\xe7\xd5\xf4\xac\xb3\x68\x32\x49\x94\x66\xed\xfc\xd2\x58\xe2\x1a\xf8\xbe\xc5\x61\x08\xe6\xf1\x7e\x6d\x70\x45\x7d\x55\x6d\xf3\x81\x57\x46\xb4\x5b\x3e\x3c\xdf\xdd\x50\xb3\xcd\x77\xd3\xb3\x77\x7e\x51\x5b\x19\xd6\xc4\xe7\x58\xb4\xd5\xeb\xce\x77\xb0\x7e\x7e\x5a\xdc\xce\xf7\x91\xb9\x11\x8d\x0a\xd0\x36\x77\x88\x8a\x74\xb1\x1d\x04\x85\x06\x68\xaf\x49\x11\x0c\x66\x15\x70\xa4\xd1\x9c\x62\x88\x1d\xa5\x95\x80\x50\xa6\xd4\x5c\x44\x5a\x4b\xe5\x7c\x1a\x66\x3d\x83\x01\xaf\xfe\xcc\xb2\xf4\xc8\x17\x15\x1b\x03\x88\x7a\x18\x2d\xe6\x98\x82\xd8\x02\x2d\x71\xc8\xa2\x68\x88\x0e\x50\xfa\xcf\x36\x32\x7a\x5e\x76\x0d\x91\xde\xd1\x4c\xc2\x61\x6a\xd5\x93\x88\xd4\x4d\x4e\xbc\x64\xf0\xc2\x48\xf1\xdc\xee\x0d\x7b\x2a\x37\x3e\x3a\xb7\xf5\x42\xc9\xcd\x9a\x0d\x0f\x76\xbb\xe7\x14\xc5\x25\x94\xf4\x15\xe4\xf6\x57\x25\xa7\x1d\x9d\x5d\xb1\xa4\x3e\x39\xb1\xbc\xbf\xf8\x88\xf0\x66\xfe\xa2\xa3\x5d\xb3\x4e\x67\xa4\xbe\xbe\x6b\xc9\xe5\x55\x85\xe9\xd9\xa2\x53\xf8\x62\xdb\xf1\xe5\x6e\xdf\xa9\xc4\xa2\x76\x47\x7a\x67\x79\xb2\xb5\x72\x96\x73\xec\x2d\x67\xa9\xbd\x71\x49\xa9\x73\xb8\x35\xfb\x8c\x74\xfe\xa9\x21\x3e\xaf\x53\x7c\x01\x0a\xa4\xe7\x9f\x00\x01\x73\x72\xa4\xa0\x9d\xae\xe2\x34\x1a\x6e\x27\xef\x71\xa4\xd2\xe4\x5f\x7d\x2e\xf7\x9d\x97\x45\xd7\x4d\xd1\xf9\x32\xb4\x47\x46\x93\x03\xe2\x3f\xc5\x2c\xf8\x36\xcf\x8f\xfd\x65\x70\x50\xd2\x41\xd7\x93\xfd\x6e\x58\x11\x8b\xb2\x50\x0d\xc5\x23\x50\x4e\xfb\xd4\x00\xcc\x03\x0d\xf2\x01\x0e\x78\x46\x00\x09\x3c\x02\xea\x9c\x95\xb7\xbd\x8a\xf2\x3c\x57\x62\x82\xd5\x2c\x50\xe9\x26\x5b\x98\x26\x1c\xb0\xfa\xc9\x1e\x5b\x26\xf0\x72\xd3\x39\xcd\x64\x4b\x86\xd5\x42\x4a\x82\xd2\x35\x74\xb0\xb3\xe5\xa2\xc7\xa6\x2f\xad\x6d\x4a\x4e\xa9\xca\x8e\xd5\xbb\x7a\x2a\x7e\xf0\xe3\xca\x1d\x37\xd7\xae\x7f\x61\x67\xa5\x6b\xf6\xb6\x5a\x3e\xa3\xc1\x65\xb0\x5b\x9a\xd7\xb7\x91\x03\xa4\x25\xad\x6d\x75\x4d\xeb\xfa\x96\x64\xfe\x9f\x55\xcb\x1b\x92\x33\x2c\x3b\x03\x74\x9a\xe0\x08\xb3\x23\x5e\x97\x91\x99\xa9\xaf\x13\xff\xf0\x81\x76\xe5\x6b\x87\x5b\x5b\x0f\xbf\xb6\x52\xdb\x75\x66\x7d\x9b\x3a\x48\xe3\xaa\x6a\xf5\xe5\x36\xee\x5f\x50\x5c\xbc\x60\x7f\xa3\xb6\x74\xcb\x22\xcf\x0c\x28\x5e\x74\xa0\xc1\xcf\xad\x36\xc0\x37\xa2\x22\x8a\xdf\x8f\x03\xa4\xa4\x48\x1b\x85\x52\x21\x28\x47\x64\xd6\x47\xa4\x54\x91\xbf\x4a\x34\x24\xa7\x2d\x70\x78\x64\xc8\x65\x16\xd7\x00\xa8\x30\x3f\x2b\xc3\x4e\x7c\x42\xba\x88\x90\x60\xe2\xd3\x2f\x82\x22\x36\x89\x24\xae\x23\x3f\x90\x48\xa0\xfd\x70\x67\xcc\x85\x7e\x72\xcc\x85\xc3\xa1\xc5\x8b\xef\x3b\x91\xdc\xb8\xaa\xbe\x7c\xa4\x35\xdd\x0b\xd6\xaa\x39\x4b\xd7\x15\x2d\x7d\x6e\x57\xed\xca\xc5\xfd\x8b\xca\x37\x5d\x5d\xda\x7f\x65\x47\x03\x78\x33\x9a\x16\x16\x78\x96\x56\x1b\x0d\xe5\x0b\xeb\xff\x0e\x3f\x6a\x9d\x9d\xe4\xce\x88\x31\x38\xab\xac\x85\x83\x9e\xdc\x24\xb5\x7d\xe6\xfa\xa6\xfe\xad\xf1\xa6\x0d\x9e\xa6\xd1\xe6\xe4\xd4\x99\xeb\x3c\x49\xa5\x69\xd1\xd1\x69\x45\x89\x49\x85\x29\xba\x13\xd2\x1c\x1a\x15\x77\xf0\x19\x34\xbf\x00\x65\x20\x06\xc6\xbb\xa5\xd3\x4a\x99\x42\xa0\x87\x8a\x8e\x64\xe6\xb7\x48\x41\x84\xb2\x99\xa3\x4d\xd1\x02\x03\x45\xe9\x69\x38\x31\x41\x48\x31\x4d\xd9\x62\x95\x53\x2b\x81\xd1\xc9\x67\x88\x0b\xaa\x96\x37\xda\x66\xf5\xfe\xd0\x35\x50\x6d\x03\x53\x4e\x69\xec\xdc\xac\x6c\x4f\xcb\xf5\x9e\x6d\xad\x96\x94\xae\xbd\xb3\x20\xdb\x97\x2a\x5c\x5b\x2f\x76\x94\x8f\xae\xdf\xd9\x34\x34\x37\x3c\x7b\x46\x74\xba\xa7\xc4\xda\xd9\x5c\xa5\x6b\x77\x75\xa4\x9a\xf2\xc2\x4c\x61\x85\x3d\x1b\x5b\xf3\xf7\x9d\x79\xa4\x0b\x8a\xce\x20\x40\x8f\x88\x83\xbc\x9d\xc5\xae\x77\x7c\x29\x1c\x30\x37\xce\x67\xa0\x9f\xe0\x33\x70\x50\x43\x8e\xcd\x3f\xf7\x63\xdc\x31\x02\x13\x87\xec\x7b\x34\xe5\x5b\xca\x6b\xc0\x4e\xe6\x84\x96\xc1\xa4\x50\x4e\xe1\x35\x18\xf7\x5d\x78\x82\x73\x9f\x1c\xe9\x3d\x3c\xcf\x75\x73\xfb\xb6\xf9\xf7\x58\x6f\x4a\xa4\x06\xa9\x43\x17\x57\xdf\x7a\x8e\xaf\x3d\xba\xa5\xb1\x6c\xec\x3b\xd4\x49\xc1\x21\x2f\x99\x3b\x91\x2c\xe7\x88\x01\x59\x51\xab\x04\x57\x8d\x43\x3c\xa2\x20\x91\x41\x59\xda\x64\x8e\xfb\x56\xb2\xc8\x19\x73\xfa\xf7\xd9\x93\xbf\x27\xbe\x4f\x13\xa9\x9e\xcd\x4c\xb7\xbe\xe9\xc9\x49\x94\xc4\xb0\xc2\xce\x63\x60\xf4\x83\x44\xf8\xc8\xfc\xe5\x97\x16\x0c\x3f\xb8\xa2\xb0\x60\xf9\x83\xc3\x0b\x08\x9b\xa5\x57\xd4\x6c\xd8\xb6\x6d\xad\xa8\x81\x3f\xae\xdb\xbe\x6d\x1d\x4e\xdb\xff\xd1\xf1\xc6\xc6\xe3\x1f\xed\x87\x8e\xfd\x1f\x9d\x6c\x6c\x3c\xf9\xd1\xfe\x3f\x1f\xba\xf9\xde\x7b\x37\xc1\xbc\xe3\xe6\xbb\xef\xde\xf4\xfb\x91\x48\x5b\x0a\x48\xb3\xb4\x54\xaf\x0b\x04\xe0\x82\x00\x83\x6c\x97\xf2\x4b\x17\x79\xe9\x6b\x93\x92\x98\x26\xa6\x31\x6a\x26\xef\x24\x2c\x2e\xfb\x06\x8e\x82\x98\x8c\x22\x63\x5a\x53\x9c\xad\x64\x4d\x49\xed\xca\xe6\x14\xf1\x12\x71\x1d\xaa\xca\x3c\x49\x81\xb1\xea\x9d\xa9\xd1\x89\x6d\xfb\xe6\xe3\x46\xfa\xcc\xfc\xdb\x7f\xe6\x67\x91\x73\x53\x0a\x10\x66\xae\x38\xba\x83\xce\x00\xc0\xb6\x78\xcc\x71\xe4\xd1\x09\x80\x6a\x62\x26\x7f\x94\x00\x3c\x22\x3b\xa8\x3f\xac\x41\xae\x8f\xbf\x7b\x79\xaa\x24\xca\xc8\xe2\x89\x6f\xb3\xa7\x7e\x1b\xf2\x99\xd7\x86\x7e\xe6\xb5\x61\x9f\x79\x6d\xf8\x67\x5e\x1b\xf1\x99\xd7\xea\x3e\xf3\x5a\xfd\x67\x5e\x1b\xf5\x99\xd7\xd2\x6e\x8d\x90\x63\x58\xef\xf8\xce\x1d\x39\xfe\x31\xf9\x80\x5e\xc7\x84\x5b\x16\x41\x1b\x4f\xfc\x3c\x9f\x1c\x65\xd1\x85\x09\xca\x28\xca\x3f\x6b\xf5\x1b\xf9\x24\xef\x8e\x1e\xa8\x31\x32\x9b\x2c\x21\xa5\x34\xfa\x56\x4e\x09\xca\xaf\xc1\x81\xdc\x90\xc4\xd4\xdc\xc4\xe0\xe4\x60\x08\x2f\x8a\xaa\x5d\xec\xc9\x0a\x85\xc5\x81\x71\x89\x29\x91\xaa\xc0\x00\x12\x62\x19\x64\x9e\x51\x38\xab\x2e\x3f\xf2\x5b\x71\xbc\xea\x88\xa9\xca\x65\xe4\xe1\xb0\x10\xe8\x6a\xed\x4f\x1e\xab\x37\xe6\xd9\x22\x31\xe0\xd3\x8a\x80\xc4\x8a\x79\xe5\xd8\xbe\x4e\xe2\x47\x10\xd7\xf1\xe9\x44\x37\xa8\xa4\x78\x9a\x4a\x40\x5c\x2e\x9b\x9b\x66\x13\xc6\x35\x4c\x44\xe3\xfe\x71\x35\x12\x35\x94\xbb\x8d\xc9\x89\x3c\xdd\x02\x2d\x96\x49\xe2\xd5\xcf\x3d\x37\x2e\xc3\x88\x92\x6b\x99\x90\x61\xd2\x1f\x46\x43\xff\xef\xfc\x95\xc5\xfd\xfb\xba\x6c\x29\xb3\xef\x1b\x3e\x7c\xf8\x87\x3f\xcf\x9d\xbd\xa9\x62\x85\x8b\x44\x54\x80\xc9\x59\x12\x33\x18\x69\x8e\x0a\x86\xa6\xc6\x82\x55\x37\x77\xd7\x66\x10\xb4\x6e\xd9\x70\x8d\xc5\x73\xe8\xdd\xad\x35\x07\x33\x05\x55\xa8\xd6\xe0\xa8\xb4\x3a\x5a\xf3\x0d\x67\xee\xbf\x4c\xe8\x5b\xd3\x67\x44\x05\x47\xa5\xd5\x17\x5b\xdb\x9b\x2b\x75\xed\x31\x29\xb6\xb4\xb8\x54\xbb\x3a\x58\x57\xb6\xe0\xdc\x48\xc3\xd6\xb9\xb5\x3a\x6d\x61\x7d\x57\x16\xf5\x66\xe9\xd4\xd2\x3a\xec\x21\x58\x8a\x27\xc8\x3a\x8c\x41\x4b\x24\x59\x17\x48\x0d\x66\xd2\x62\x8c\x91\xdf\xf0\x13\xbc\x15\x91\x02\x25\xd4\x64\x40\x05\xff\x1a\xe5\x81\x2e\x52\x6a\xf3\xbe\xe3\x2b\x9e\xb7\x4d\x5e\xc3\x24\xc4\x93\x1c\xa8\xe8\x4a\x56\x2a\x63\xa8\xdf\x68\xda\x4a\x66\xf0\x12\x23\xdf\x70\x24\x2c\x36\x49\x17\x9d\xa5\xb6\x65\x74\x65\xe4\xf7\x16\x27\x88\xc7\xbc\xbb\xb9\xbf\x73\x0f\xfa\x96\xa4\x3a\x62\x55\x61\x01\x3b\x13\x34\x86\xaa\x55\xed\xf8\xc0\x58\x3f\xf7\xe0\x59\xaa\x4f\x5c\x26\x3a\x4a\x35\x91\xdb\x3a\x94\x4e\x4f\x62\x66\xe0\x39\x15\x20\x1e\xd7\xcb\xea\x83\x63\xdc\xd5\x93\xe5\x97\xcd\x76\x9b\x45\x63\x26\xd3\x6c\x32\x18\x67\x6a\x70\x22\xaf\x1d\x27\xc0\xab\x76\x2d\x3a\x3f\xbc\xf8\xe1\x42\x6f\xdd\xb6\x27\x06\x46\xaf\xae\xce\xf7\x1a\xca\x17\x37\x66\xb5\x94\xa4\xc5\x85\x6a\x72\x2a\xda\x1d\x84\x00\x2f\x01\xfe\x31\xf2\xca\x81\xa6\x4a\xb7\xef\x2f\xdc\x4f\x61\xdb\x9b\x7b\x2a\xbb\xcf\x7f\x6b\x6b\xc7\xfd\x6b\xab\x13\xf2\xea\x67\x76\xd9\xc4\xef\x1b\xf3\x6d\xfa\xc2\xe1\xbd\x1e\xda\xef\xeb\xc5\x1e\x3e\x93\xd4\xd9\x41\xf1\x0c\xc6\x04\x0c\x35\x08\x30\x50\x9b\xb2\x04\x5c\x71\x50\xd2\x3b\x46\x77\xe7\x00\x07\x2f\x2b\x89\xac\x66\x72\x54\xde\xa4\x99\x25\xe5\x1d\xa4\x0d\xc0\xc3\xf3\x1e\xdf\x50\x75\xd5\x5c\xbd\xb8\xa6\x75\xd4\x63\xb2\xf7\xdc\x33\xab\x73\xff\xdc\x1c\x48\xaf\xeb\x4d\x6b\xd4\xb9\x32\x12\x60\x64\xe9\xce\x37\x77\x55\x94\x6f\x7d\x9e\x6f\x72\xce\x3f\x36\x3b\xbb\xbb\x4c\x0a\x57\xae\xdc\x34\xb7\x2a\x78\x86\x31\xaf\xab\xbc\x70\xa8\xa5\x28\x62\x53\x60\x7c\x5a\x51\xb2\x23\x2b\x44\xd3\xbd\xe7\xea\xa2\x94\xa5\x6f\x9c\xec\xa6\x7d\xbd\x8c\xc8\xed\xbd\x2c\xde\x20\x95\xb1\xc3\xca\x24\x7d\x76\xba\xa0\x65\x6d\xd7\x96\x64\x4b\x66\x8b\x18\x8c\x93\x1d\x4b\x12\x9e\x1f\xa6\xb9\x97\xf8\xbd\xe2\x2f\x07\x17\x94\x6d\x7a\x6e\xd5\xea\xe7\x36\x97\x95\x6d\x7e\x76\x15\xce\x1d\xbb\x64\xae\x5b\xd9\xd8\x30\x52\x6f\x92\xfe\xd6\x99\xb9\x07\x6b\xbf\xb9\x5b\x3f\x74\xe3\x70\x27\xf5\x27\xe9\x46\xde\x38\xdc\xe6\xfb\x68\xdc\xad\xd4\x70\xef\xc2\xe2\xe2\x85\xf7\x36\xd0\xbe\xfd\x02\x39\x43\x65\x93\x3a\x46\xd1\x48\xa3\x89\xe9\x4c\xbb\x95\x99\x0d\xee\xd8\x5c\x28\x54\xc2\x5f\x57\x4e\x9e\x93\x93\x58\x3f\xf8\x6c\xf1\x01\x88\x49\x2d\x30\xa6\x36\xc6\xd8\x0c\x85\x05\x85\x06\x42\x11\x93\x2c\x9e\xe1\xf6\x70\xf7\xfb\x1e\x77\x7b\x2c\x41\x31\xea\x5d\xba\x98\x50\x85\x79\x26\xd9\x66\x9a\x2e\xd0\xe7\x5f\x20\x7d\x54\x4a\x9e\x1f\x3f\xce\x9f\x4b\x9e\x88\x90\xfc\x44\xc9\xf7\x63\xd3\x27\x09\x54\x68\xa8\xe5\xee\xb0\x30\xe2\xe0\xf1\xce\x52\x43\x97\xa5\x7a\xa8\xa8\x71\x79\x4d\x22\x57\x95\xf3\x86\xde\x96\x10\x9e\x33\xf2\xcc\xd6\xe5\x57\xd6\x96\x90\xed\xed\x64\xcf\xd6\xd6\xa4\xc6\x4d\xe7\x9a\xf6\x82\xb0\x25\x73\xe5\xce\xe3\x6d\xab\xbe\xf9\xe0\x40\xc1\xba\xe7\xb7\xe0\x45\x4c\xc7\x5e\x2e\x26\xf2\xeb\x48\x1d\x92\x90\x83\xf2\x90\x05\x00\x46\x16\x93\x06\xd1\xc5\x5a\xaf\x02\x54\x3b\x31\xdb\xe8\x6e\x8b\x1b\xb2\x32\x92\xcc\xd1\x91\x54\xfb\x12\xa8\x6c\x0a\xa7\x9d\xa0\x64\xa7\xf0\xc9\xe1\x49\x24\x96\x9f\xcc\x36\x49\x2c\xe3\xe0\x95\x0f\xcc\x4b\xdb\xb4\x7d\x7e\x5a\x89\x55\x83\xa3\x5c\xdd\xa5\x86\xe2\x39\xee\xa6\xbd\xf3\xf2\x33\x17\x3e\x32\xea\xf5\x56\xcc\x29\x8a\xc1\x7a\x12\x4e\x60\x34\x40\x48\xe8\x82\xd3\x2f\x0d\x3f\x09\x9a\xbe\x3d\xb6\xb9\x8b\x96\xe6\xb8\xb7\x2f\x9b\x19\x8e\x9f\xcb\xec\xa9\xb2\xb5\xdf\xf7\xd6\xc8\xfc\x17\xcf\x2c\x08\x15\xb3\xf0\x92\xf0\xb6\x15\x3b\x4a\xab\xf7\x2f\xab\xcc\xb4\xd2\xf3\xbb\x98\xcc\x6f\x27\x6d\x30\xd1\x35\x92\xa8\x0d\x07\x66\x43\x60\xbe\x41\x0a\x8c\x25\xf5\x06\xbf\x53\x50\x1f\x15\x25\x75\x66\x09\xc7\xfa\x91\x1c\x06\xa6\x9b\x13\xf0\x8b\x75\xc3\xa5\x71\x38\xcb\xf2\x46\x42\x46\xe6\x92\xa7\xb6\x78\x87\xce\x13\x96\x23\x63\x71\xa7\x93\x1c\x20\xdb\xc2\x3b\x47\xf7\x57\xee\x05\xb4\xa5\xff\x36\x7a\x64\xc9\xdb\x17\x16\x85\x88\xb9\xf0\x95\x90\xee\x33\x1f\x1d\x84\x5f\x89\x91\x0b\xee\x5f\x51\x11\xca\x3d\xc5\x64\x26\xc5\x8a\xdc\x4b\xea\x95\x49\x4f\x2f\x49\x20\x19\x60\x38\xc4\x01\x1a\x51\x2a\x30\xc7\xd9\x99\x09\x89\xa8\x1a\xc0\xb6\x37\x84\x48\xc9\x4c\xb3\x55\x6f\xd2\x58\x55\x54\xcd\x52\x60\xa5\x34\xd3\x58\xd5\xd8\xb1\x6e\x52\xad\x27\x8e\xc8\x74\x18\x60\x65\x5a\x01\x9e\x11\x97\x9e\x58\xe1\xb9\xe9\x29\x4f\xcc\x88\x9b\x81\x0b\xd2\x5e\x4f\xce\x33\x54\xaf\x9a\xd9\xbb\x31\xc1\xb8\xa1\x77\xe6\xaa\x6a\x43\x5e\x32\x5f\xb0\x55\xbc\xb5\xaf\xfd\xfc\xfa\x9a\x47\xaf\x82\x5d\xfc\xf0\xea\xa3\x35\x6b\xef\xef\xd8\x07\xc2\xd6\x41\x71\xec\xf2\x8a\x6f\x3c\x34\x77\xd9\xf0\xf0\xb2\xb9\x0f\x7d\x63\xc5\x65\xe0\xfd\xe7\xb0\x33\xa4\x1d\x67\x85\xb7\x51\x1a\x2a\x40\xfb\xdc\x21\x69\x00\xbc\x23\x25\x0a\x23\x81\xae\x16\x59\xbb\x04\x9e\x9e\xcc\x46\x64\x53\x64\xf6\xb8\xae\x9b\x25\xeb\x0a\xd3\x0b\x65\xde\x51\xe8\xb3\x6f\xc2\x08\x2d\xf3\x5c\x69\x49\x5a\xab\x40\x75\x64\x85\x72\x62\x09\xe4\xb2\xc5\xa1\x23\xb8\xa5\xc9\x06\x18\x35\x0d\x94\x66\x23\xea\x57\x49\xcf\x56\x34\x96\x8c\x5c\x9c\x3b\xfc\xe8\x68\xd9\x4d\x73\xe5\xdc\x92\xb5\xdb\x97\x3f\xbb\xad\x3a\xbb\x7b\x63\x7d\xf3\xd6\xce\x74\x53\x65\x82\x8f\x1c\x74\x46\x6a\xea\x9b\x2a\x5a\xf1\xea\x48\xd5\xa5\x65\x4f\xae\x29\x2a\x5b\xf7\xf8\x02\x68\xc2\xe2\xb5\xaa\x15\x8d\x36\x38\x79\xea\xd1\xb0\xde\x7d\x4f\xcf\x0b\x6d\x25\xe0\x27\xc7\xc0\xfe\x6e\xf1\x22\x17\xac\x82\xb6\xd2\x55\xb3\xca\xc3\xa0\x73\xd9\xe2\x9e\x79\x7e\x7b\xe6\x23\x24\xae\xd0\x8c\xb6\xbb\x43\xa3\x54\x18\x90\x29\x32\x3c\x34\xc0\xdf\x5d\x81\x32\x9b\x0f\x55\x79\xfc\x86\x60\x1b\x96\x35\xc4\x49\xdf\x64\x4e\x7c\x13\xf2\x29\xd7\xdc\xad\x38\xd5\x8e\xcc\xc4\xc9\x27\x6d\x5b\x52\x0e\x1b\x25\x3b\x45\xb0\x93\x37\x55\x3e\xc6\x55\x25\x0d\x39\x85\xe7\x47\xe7\x95\x56\x27\xc7\x3a\x63\x74\x21\x06\x53\x61\xb8\xf8\x9d\x1b\xe2\xb7\xc3\x0b\x4d\x71\x21\xfa\x18\x67\x9c\xb5\xba\x34\x3f\xfa\xd9\xc8\x48\xfe\xa3\xd2\x6e\x97\x5e\xa9\x3e\x19\x60\x49\xf6\x6d\xf2\xbd\x88\xdd\xf8\x5e\xab\x35\xe0\xa4\x5a\xa9\x27\x0b\x5a\x5c\xd4\xdd\x8d\x30\xc5\xee\x30\x1b\x40\x34\xca\xa1\x18\xd2\x19\xa0\xa0\xa7\x56\x25\x52\x20\xa5\x62\x44\xe0\xf0\xb8\x58\xa5\xa9\x7d\xc7\x8d\x41\x64\xb6\x47\xa8\xf5\x66\x6b\x58\x80\x32\x8e\x6c\xf8\x3a\xdd\xd4\xc9\xed\xca\x25\xfb\x3d\x47\x94\x22\xe2\x86\x93\x17\x84\xd3\xe1\x0f\x86\xe1\x4f\x6d\x4d\x48\x89\x2b\x5b\xd2\x44\x26\x79\xc2\x86\xde\xa6\x25\x65\x71\x36\xe3\x22\x7e\xe1\x9f\x70\x86\x45\x0c\xb6\x64\xe0\xc0\x48\xab\xa1\xa2\xfe\x66\x7d\x45\x9c\x35\x32\x90\x7b\x70\xf1\xad\x83\x3d\x0f\x6f\xf1\x2c\x5b\x30\xbc\xdc\xb3\xe5\xe1\x9e\x83\xb7\x16\x9f\xf5\x8d\x6e\xf6\x6d\xd8\xe0\xdb\x5c\xb8\x6c\x66\xf6\xa3\x57\x6f\xdd\xba\xfa\x68\x56\xdb\x72\xba\x7e\x53\x48\x5e\xa8\xcd\xcc\x36\xf9\x4d\x69\xd8\xe2\xe5\xc0\x02\xea\x8f\x56\xf6\x20\xa5\x52\x27\x81\x26\x04\xc0\x58\x2f\x8f\xe1\x67\x17\x33\xc8\x03\xfa\xdf\xdc\x2d\xf5\xbf\xb9\x9b\xdb\x74\xb7\x12\x82\xa0\x1f\x07\x74\x18\xd8\xac\x20\xd1\x0f\x44\xb5\xaa\x56\xeb\xca\xc2\x54\x0a\x1a\x31\x2b\x83\x8a\x89\x93\x84\x45\xa7\xc9\x34\x61\x6c\x3f\x2b\x16\x91\xa1\x38\x7e\xe9\x13\x6b\x8a\xde\x7b\x15\x17\xb4\x66\xe9\x60\xc7\xbd\x09\x45\x86\x1b\xe2\x65\x5e\x23\x44\x8a\xf9\x98\x77\xaf\xbd\xb2\xf8\xed\x6f\xdc\x47\x02\xf4\x8b\x0e\x5c\xe0\xb1\xaf\x55\x88\x94\xec\xe5\x3b\xc8\x3c\x58\x42\xce\x9f\x19\xa8\xcc\x5d\x42\x0f\x95\x1c\xa6\x3c\x26\x04\x9b\x26\x90\x89\x80\x78\x24\x28\xf9\x89\x0c\x29\x71\xe3\x84\xa3\x06\x76\xbc\xcf\x40\x19\x49\x6a\xe2\xa5\xb6\x99\x03\x14\x44\x03\x94\xf7\xd8\xa9\x54\xfa\x5a\xe3\xa4\xc0\x03\x7e\x49\x60\xed\x96\x6b\xab\x46\x5f\xd8\x55\x5d\xbd\xeb\x85\xd1\x55\xd7\xb6\xd4\x06\x7a\x03\x53\xeb\x97\x79\x9a\xd7\xb5\xda\x70\xa1\xef\x2d\x5b\xeb\xba\x66\xcf\x32\x8f\x3d\x10\x9e\x9f\xff\xc4\xc6\x8a\xae\x07\xbe\xbb\x0b\xf2\x77\x7d\xef\xfe\xae\xd2\xf5\x5f\x58\xee\x59\xdb\x92\x52\x31\xfa\xe0\x1c\xcf\x99\xee\xfe\x07\xd7\x56\x50\x94\x0a\x95\x7b\x06\x84\x78\x9a\x7d\x23\x16\xd9\x28\x8e\x1b\xa1\x00\x50\xf2\x34\xbe\x15\x63\xa1\x47\x05\x82\xa0\x63\xe9\x78\xa1\x8f\x2e\x42\x3d\x34\xc4\xc5\x21\x14\x67\x8b\x4b\x4e\x30\x90\x4b\x62\x8d\x49\x24\x2a\x26\x50\x41\x43\x22\x1d\x93\xa2\x62\xb8\x08\x4c\x26\x36\x81\x3f\x65\x87\x6b\x34\xa0\x1e\xb7\xd5\xe1\xdf\xf7\xb5\xef\xe8\x4c\x4d\xed\xdc\xd1\x2e\xfe\xe1\x2d\x88\xaf\x5e\xd3\x91\xa0\xab\xcd\x05\x0e\xe7\xf4\xa5\x16\x13\xd8\xb1\xa5\xd8\x4e\xd2\x75\xbc\x53\xb5\xee\xa1\x39\x73\x1e\x5a\x57\x29\x44\xfa\xfe\x70\x43\xfc\xe9\xdb\x0b\x4e\x43\x21\x64\xe3\xa7\x7c\x19\xbe\x1b\x8e\x99\x24\xdd\xdd\xc2\xb6\x6c\x52\xf7\x5d\xa4\xee\x07\xfc\xf9\x96\xfa\xfd\x9c\x04\x18\x68\x6e\x2c\x5e\x89\xe8\x4c\x01\xd0\x51\x54\x20\x37\x8b\x3a\xd4\xf4\x1c\x9b\x46\x38\x00\x54\x3c\x56\xd1\x83\x17\x2d\x35\x38\xbd\x14\x31\xdc\xea\xf5\x34\x1b\x53\xa2\x5a\x4d\x9a\xa7\x0e\x0b\xa4\x33\x89\x82\xbd\xc7\xdb\x68\x52\xd3\xff\x1c\x93\x9a\x06\x85\x9f\xdc\xc8\xea\xbb\xb7\x2f\x3d\x9d\xfc\xf3\xdb\x4f\x6e\xdc\x80\x67\xb2\x1c\x55\xf6\x70\x4d\x4a\x95\x83\xcb\xc7\xeb\x7c\xa7\x4b\x56\x9c\xe9\xed\x3d\xbf\xaa\x4c\xca\x23\x33\x76\xdb\xf7\xb7\xb4\xfa\x7e\x87\x63\x4e\x2d\xcb\xdf\x53\x41\xaa\xb3\x90\xe2\x5b\x69\x84\x06\x06\x0e\x22\x18\x42\x44\x66\xb1\x10\xc0\x7f\x9a\xd0\x79\x78\x69\xe5\x10\x24\x23\x41\xcc\x84\x29\x15\x31\xd2\x2c\xd7\x4f\x26\x89\x94\x27\xb8\x5b\xd4\xc5\xba\xa2\x87\x1e\x58\x5a\xe0\x8d\x2d\xec\x29\xce\xcb\xf1\x8a\x8f\x72\x3e\x32\xb5\x8b\x78\x1e\xd2\xe7\x9e\x59\x2c\xe6\xc2\x97\x2b\xfb\x8b\x62\x14\xbe\x0a\x3a\xb3\x01\x3d\x24\x9e\xe5\x53\xe4\xbc\x36\x88\xe7\x78\x86\xcc\xd0\x31\xab\x5b\xaf\xd4\x41\xb2\x77\x49\x41\x82\x13\x18\x00\x5e\xf2\x09\x3d\xe4\xc5\x3a\xaf\xf8\x80\x57\x3c\x41\xbc\x56\xbf\x16\xa2\x3e\x69\x11\xcf\xc2\x02\x84\x30\xf3\x2d\x35\x48\x31\x57\xf4\x4c\x82\x80\xe6\x8f\x02\x61\x08\xf9\x33\x32\xe8\x64\x64\x93\xd4\x2e\x1a\x72\x95\x48\x3a\x9e\xb4\x8d\x6a\xa2\x93\xe3\xad\x8c\x30\x11\x6e\xc5\xc7\xf9\x4a\x21\x70\xcd\x75\xaa\x25\x5f\x5f\x23\x16\x71\x9b\xe8\xfb\xa6\x95\xf5\x26\x53\xfd\xca\x26\xd2\xc6\xb2\xa2\x15\xf7\x0f\x0e\x5c\x5a\x55\x4a\xa6\x54\xb8\xef\xc3\x74\x92\x03\x3b\x6f\xa8\xce\x2e\xed\xf7\xd5\xa4\x9d\xeb\x59\x9d\xf4\x54\x33\xa6\x3e\x03\xd4\x4a\x66\x01\x93\xde\x3a\x0f\xc3\x5e\x31\x4f\x95\x9e\x79\xaa\x74\xb4\xc5\x4c\xa2\x30\x0f\x18\x47\xb3\x41\x69\x48\xd3\xa9\xfe\x42\xaa\xc5\x0f\x3f\xe6\x2b\x7d\x20\xa6\x2c\xbd\x3a\xdb\x20\x24\xe0\x7b\xb7\xf9\x8e\x07\x94\xbb\xe1\x55\xf1\xa7\xe2\x79\x98\x4f\xfa\x41\x34\xac\xbc\xfa\xb7\x4b\xb8\xee\x93\x5f\xe3\xaf\xff\x4d\x3c\xbe\x92\xdf\x81\x00\xc5\xb1\xd8\xcc\x6b\x48\x4b\xc7\x5c\xa3\xc2\x48\x80\x7a\x25\x08\x18\x58\x62\x28\x95\x02\xd3\x9a\x04\x70\x98\x55\x42\x1b\x21\x93\xe7\x90\xf9\x48\x37\x11\x3a\x05\x39\x13\x70\x0e\x0d\x9d\x9a\xe4\x5f\x0e\x4c\xf8\x96\xeb\xf9\x92\xf7\x7f\x05\xc1\xbf\xfa\xe8\xe9\xaa\xe7\x4b\xbe\xf0\x9d\xdf\x40\xc8\x2f\xf1\x01\xdf\x28\xfb\xfd\x08\x7f\xd7\xb7\x1a\x1f\x62\xbf\x36\x9f\xd5\x7f\xe6\xfd\x3d\x3f\x42\xce\xf7\x05\xd4\x06\x1b\x73\xd7\x1c\xb2\x2a\x98\x92\x44\x36\x6e\x3c\x89\xac\x81\x6f\x90\x0c\xf9\xb6\x64\x12\xfb\x1e\xce\x6c\xb0\x05\x50\x10\xa0\x88\xa0\xe4\xc1\xd3\x93\xdf\x32\x74\xdd\xa7\xa4\x92\x75\xe2\x05\x17\xcf\xd9\xda\x36\xb6\x95\x8e\xb4\x65\x79\x9b\xf7\x3d\x33\xb4\xfa\xa5\x7d\xf5\xb0\x6d\xf9\x96\x7d\xad\x47\xde\x5c\xdd\xff\xfc\xd1\xde\x9b\x99\x9d\xeb\x6b\x5b\x77\xf4\x65\xa6\x75\x6e\x69\x7e\x9e\xcb\x86\x7d\x23\xb9\x73\xaa\x93\x93\x2a\x66\xb9\x66\x9f\x5c\x90\x97\xb3\xf0\xfe\xe1\x05\x8f\x64\xa6\x3c\xb9\x63\xc1\xc5\x65\x79\x59\x0b\x1f\x5c\x91\x3f\xaf\xde\x9e\x4c\x92\xa3\x54\x0d\x95\xc5\x4f\xf2\x73\xca\x39\x7f\x02\x78\x2c\x53\xe6\xe9\x18\x65\x9e\xde\x4f\x20\xa7\xf0\x93\x75\x51\x5e\x35\x8e\x5b\xe9\xf5\x82\xef\xb7\xe4\x1f\xea\x8e\xe5\xb3\x6e\x7d\x40\x40\xe0\x5f\x47\x80\x32\x58\x6e\xe0\x6b\x48\x8d\xac\x8c\x56\x9a\xef\x11\x80\x0e\xd9\x78\xa4\x9e\x9e\x09\x7b\x35\x52\x1b\x89\x6c\x53\xd0\x9b\xd2\x85\xc2\xd1\xf6\x33\xe1\xa8\xd6\xf0\x76\xaf\xd8\x87\x2d\x1d\xfb\xe7\x39\x92\x87\x3b\x78\xfa\x00\x22\xf4\x8e\x3e\xe4\x7b\xba\xef\x34\x04\xd3\xc3\x3b\x02\x64\x27\x63\x74\x9d\xca\x06\xfa\x9c\x48\x4a\xd4\x8d\xa8\x65\x0e\xfb\x2b\x8e\xfc\x5c\x7c\x06\x68\xd0\x59\x93\xc2\x49\xe5\x65\x2a\x3e\x19\xb6\x26\x13\xf1\x65\xd4\xc0\xc2\x8f\x7c\xbf\xd5\x17\xb6\xaf\x9b\x59\xb9\x28\x3a\x32\x38\xc9\x6e\xd7\xa4\x57\xe7\x98\x83\x53\xc4\x90\xaf\xe3\x7f\xbf\xc2\xad\xbf\xe5\xce\xe9\xaf\x4d\x89\x0c\x3a\xc4\x11\x22\x11\x8a\xbc\xe8\xe0\x4b\x68\xbf\x3d\x2a\x3e\xc8\x3f\x37\x21\x17\x80\x6f\x93\xe4\x02\xdd\x16\x84\x5e\xba\x13\x0b\xd3\xe5\x82\x83\x23\xcd\x7d\xd4\x8b\x03\xbc\xc7\xc3\x1f\x1d\x7b\xd2\x2f\x17\xfe\x20\x0a\xd0\x4f\xef\x79\x05\x21\xde\x4a\xfd\xb8\x54\x2a\x44\x92\x66\x71\x12\xff\x38\x47\xa5\x1e\x0c\x09\x94\xd2\x97\x34\x4f\xee\x47\x29\xd1\xca\x78\x3f\x86\x70\x53\x01\x82\xbc\xd5\x6b\x2c\xaf\x69\xcd\x1c\x3c\xb3\x30\xd7\x1b\x93\xdb\x9e\x3f\xf3\x68\x2d\xed\x51\xdc\x37\x23\x3c\x44\x99\xb5\xf4\xc9\x0d\xf0\xae\x98\xd7\xb1\xb2\x2a\x2e\x2e\x12\xbf\x20\xd9\x7c\xb6\x90\x3a\xb4\xd0\x76\x51\x7b\xbc\x42\xe0\x38\x00\x9d\x74\x64\xe9\x45\x3c\xaf\x67\x27\x96\x20\x14\xc4\x9a\xa6\x94\x36\x3a\xf6\x1f\x6d\x20\xb8\x3e\xbc\xf1\xe1\x8d\xb1\x34\x7f\xbb\xe8\x2f\xbd\x95\x74\x5f\xd2\x5f\x4f\xd2\xb9\xc1\x98\xaf\x05\x24\xb4\xa9\x94\xd2\xcd\x79\x4c\x2d\x43\xbd\x64\x09\xe9\x15\xfe\xe9\x41\x7f\xb2\xd4\x6a\xa2\x0b\xc8\xf7\x77\x3a\xe4\xee\x63\x4f\x39\xe9\xbe\xd1\x1b\x7e\x79\x6c\xbf\xfc\x24\xa0\x8e\x77\x31\x00\xfa\xc9\x13\x30\xca\x66\xf9\x52\xa6\xcb\x57\xd9\x80\xfc\x59\xf2\x95\x0a\xb1\x3b\xe4\xeb\xf8\x82\xcc\x86\xdf\x1d\x5d\xf1\xd4\x68\x71\xf1\xe8\x53\x2b\xc4\xe7\xc5\x0f\xc8\xdb\xba\x85\x15\xf1\xf1\x15\x0b\xeb\x88\x40\x7d\x82\x72\xbb\xf7\x5f\x5c\xed\x26\xd3\xf5\x49\xdf\x87\x19\x4d\x0b\xf2\x72\x87\xea\xed\xcc\x3f\x7f\xd4\x1f\x9f\x12\xc2\xb2\x1d\xd1\xf6\x23\x25\x28\x04\xa4\x18\xa2\x7b\x17\xd3\xdb\x60\x96\x5f\x9f\xd0\x68\x34\xf1\x1a\x03\xdb\x69\x13\x54\x64\xe6\xc0\xa4\xda\x38\x60\xca\x1e\x5b\x37\xab\xff\xbe\xa1\xec\xec\xa1\xfb\xfa\x49\x7c\x2d\x87\xbd\xde\x31\x71\x56\x6e\x53\xa6\x4e\x97\xd5\x98\xcb\xf5\x14\xaf\x78\xa0\x9f\xd6\x88\x0e\xb9\x24\xf2\x33\x9a\x87\xf3\x72\xe7\xd6\xa7\xfa\xe3\x7e\x5b\xfd\xf9\xad\x28\x7a\x02\x09\xc0\x73\x88\xa7\x7a\x0e\x5b\xb0\x30\x4b\x92\xf5\xa1\xa1\xa1\x31\xa1\xd1\x89\xa4\x36\x6c\x9e\x19\x27\xd5\x46\x3d\x39\xd4\x77\xd2\xce\x53\xec\x9d\xd8\x76\xb8\x9e\x4f\xdd\x74\x00\xad\x22\x3a\xe3\x4c\x59\x67\x94\xe3\x59\x89\xce\x08\x08\x94\x88\xb9\xbc\x94\x18\xa8\xce\xc8\x18\xf0\xe2\xe8\xcc\x67\x69\x3c\x0d\x0a\xbf\xce\x68\xa3\x04\x78\x5a\x49\x67\x94\x09\xe8\xc9\x36\x3f\x4e\x43\x35\x9e\xf6\x43\x0e\xf1\x05\x3b\x58\xeb\x97\xd5\x34\x6d\x6c\x4f\x13\x63\xe1\x17\xa9\xed\x1b\x9b\x6b\x96\xd5\x5b\xc1\x0b\x15\x5b\xae\x2d\x1f\x7d\x79\x6f\x5d\xdd\xde\x97\x47\x97\x5f\xdb\x52\x01\xf0\x8d\x86\x4d\x5d\x99\xee\x55\x17\xe6\xf4\x9e\x9e\x3d\xe7\xe2\x2a\x77\x66\xd7\x96\x86\xf9\xcf\xec\x6e\x68\x3f\xfb\xd1\x2e\xf1\xb9\x5d\xdf\x3e\xdb\x5e\xb5\xed\xd9\xe5\x32\xd6\x7a\x31\xcb\x75\x96\x45\xf5\xae\x28\xa6\xc0\xf3\xa4\xf6\x3c\x0c\x32\x67\x38\xd5\x13\x98\x4e\x25\x89\x41\x03\x3d\xf8\x5a\xc7\x4b\xd0\xef\x48\x31\xb9\x91\x64\x56\xd2\xa2\xb2\x76\x4c\x34\x78\x9b\x95\x88\x4b\xd2\x4e\xb6\xdf\x8e\x1b\xcc\x98\xc6\xa5\x76\x8c\x1f\x7d\xad\xfe\xd4\xaf\xe3\x46\x23\x7e\x71\xfa\xac\x7b\x7b\x3b\x77\x76\xa5\xae\xf2\x7a\x57\xd9\xbb\x76\x76\xf6\xdd\x3b\x2b\xdd\xdb\x3a\x2f\xad\xc4\x12\x16\x66\x29\x49\xcf\xae\x4a\xd1\x60\x6e\xdb\x3b\xf7\xd6\xd6\xde\xfb\xce\xb6\x8d\xbe\x5d\x64\x8c\xe6\x9d\xd9\xf6\xce\xfe\xda\xda\xfd\xef\x6c\xc3\x2f\xbe\x98\x31\xe7\xd0\x1c\xb1\xa3\xff\xf0\x9c\x8c\x8c\x39\x87\xfb\x99\x9e\x50\x86\x10\x6f\x61\x7c\x00\xb1\x14\x99\x2d\xdc\x35\x6f\x17\xd1\x17\xfc\xbb\x34\x91\x52\x7a\x5d\x04\x29\x1d\x9a\x4c\xe5\x85\xde\x4e\xd7\x94\x09\xfc\x9e\x47\xb2\x98\x99\x41\x5c\x4d\x2b\xce\x2d\x13\xdf\x13\x3f\x78\x0b\x3a\x0e\x9e\xa8\xd9\xf3\xd2\x28\x3c\xe3\x0b\xb0\xb5\xac\x6f\xba\xfd\x71\xcb\x86\xb6\x14\xdc\xef\x7b\x10\x1f\x73\xbc\x78\x60\xde\x03\x4b\xf2\xc8\xa6\x13\x52\x38\xec\x49\xc1\x09\x49\x55\x64\xc2\xb2\xb3\x47\x8d\x42\x8d\xd2\x51\x25\xca\x73\x3b\x53\x64\x76\x4f\xbc\x8a\x54\x4f\x4a\xa5\x2b\xe7\x6d\xa3\x9b\x42\x66\x06\xf5\x93\x66\x54\x66\x56\x1a\xe2\x08\x88\x38\x1d\xd2\x95\x74\x7f\x9e\xcc\x87\x51\xcc\xe5\x84\x13\x4b\x02\x03\x91\x87\xf0\x34\xeb\x68\x09\xa7\x67\x27\x90\xc9\x06\x4a\xbc\x77\xf1\xa3\x6b\x8a\xa9\x4d\x72\xd5\x73\x9b\xcb\xab\xb6\x5d\x5f\xe1\xec\xab\xb0\x9c\x89\x73\x54\xb5\x74\xa7\x56\x6f\x1c\x28\x0f\x4d\x68\xea\x1d\xd6\x52\x03\x25\x33\x54\xae\xa8\x27\xd1\xef\x2b\xb9\x31\x0f\x89\xff\xd5\xaf\x7c\xf5\x70\x4b\xcb\xe1\x57\x57\xea\x95\x55\xd7\x41\xf3\xda\x6a\x6d\xa0\xde\xe4\xb4\x95\xcf\x29\xb3\xc5\x86\x07\x86\x3a\x7b\x77\xcd\x22\xde\xd2\xa8\x33\xb9\xb3\x37\x56\xea\x1b\xee\xa5\xee\xe2\x7b\x1b\xf4\x95\x1b\x67\xe7\x4a\xf8\xa7\x47\x28\x3e\x8d\x2f\x40\x11\x64\xd6\x59\x68\x4c\x6d\xe0\xdd\x73\xab\x46\xca\xb9\x55\x25\xa5\x49\x8b\x90\xc5\x9c\x60\xd0\xc6\x69\x63\x23\x75\xe4\x62\x8d\x51\xa5\x60\x79\x3d\xd9\xba\x1e\x4f\xe1\x0d\xe4\x03\x06\xb4\x4c\x72\x48\x7f\x4d\x8f\xc0\x13\xf3\x1e\x19\x2d\xed\xed\xcc\x69\xc9\x8d\x2d\x58\x7a\xb6\x5f\xfc\x2a\xe4\x8c\xac\x19\x5d\x21\x7e\xf5\xaf\x9b\xf7\xec\xdb\xfc\x67\xbe\xc0\x5c\x3b\xd2\xd8\xb8\x36\x61\x46\x56\x79\x4b\x2a\x39\x4d\x59\xe0\xfb\xe2\xcd\xf6\x96\xa6\xf6\x13\xf5\x4d\xad\xcc\xf6\xfa\x3c\xd5\x35\xf8\x82\x3b\x31\x75\xa4\x82\xac\x6a\x14\x0f\xa7\x18\xc7\xd4\xa5\xf8\x6a\x6e\x72\xab\xb9\x07\xc7\xfa\xfd\x31\x58\x2e\xf1\x75\xfe\x1c\x79\x1d\x86\xa2\xe8\xbc\xe3\x01\x03\x6e\x95\x23\x9c\x22\x3d\x0a\x95\xc0\xf9\x41\x5a\x7a\x8e\xce\xba\x48\xbd\x8e\x91\x14\x90\x1f\x5d\x00\x91\xeb\xb9\x7e\x05\x95\x93\xf4\x55\x08\xe1\xa8\x9e\x7a\xbf\xbd\xd0\xa2\x57\x86\x61\xef\x81\xf0\xc7\x7c\xc1\x8f\x86\xc3\x97\x85\x50\x9d\x31\x12\x6e\x8a\xcf\x9c\x56\x34\xdf\xf3\xe2\x1a\x38\x35\x36\x5b\xb4\x43\x89\xf8\x3a\x7c\x88\x83\xdb\xcf\xec\x19\x49\xc5\xff\xa1\x6d\x51\x93\xb6\x3c\xc5\x17\x7c\x96\xae\x1a\xf9\xb9\xba\x2a\x8c\xeb\xaa\x00\x04\x51\x5b\xe0\x2d\xfc\xe8\xc7\x60\x13\x3f\xf9\xf6\x4b\x85\xde\xc2\x97\xbf\x2d\xfe\x07\x52\x7e\x02\xdf\x16\x53\xe8\x2f\x76\x60\xa5\x48\x54\x68\xfa\xeb\xfb\xd8\x47\xf3\x4a\xee\x23\xfe\x99\x7a\x86\x17\xf8\xef\x75\xd5\xf8\xc9\xba\xaa\x8c\x17\x90\x75\x55\x86\x17\x60\x6b\xc1\x35\x2d\x75\xd2\x64\x06\x47\x7e\x9a\xaa\xba\x79\xfb\x76\x53\xc5\xbc\xb2\x82\x85\xcd\x19\x5e\x68\xdc\x71\xa5\x7f\xde\xa3\xeb\xcb\x17\xf7\x2d\x58\x5d\xb7\xfd\xa9\x79\x45\xeb\x96\x12\xf2\x2f\x6f\x7a\xdb\x48\x99\x7b\xb1\xc7\x66\xa9\x1d\x2e\xfd\x2b\x5e\xdb\xea\x49\x2c\xa2\x70\x80\xd2\x24\xcf\xba\x99\xa9\xc9\xcd\xa3\x4d\x9e\x0d\xa6\xf8\xad\xfd\x4d\xeb\x67\xa6\xa8\xcd\xb9\x9e\xc1\x42\x6b\x95\x33\x9e\x70\x24\x24\xa5\x97\xd9\xc2\xef\x47\x80\x2e\x53\xfd\x88\x2f\x98\xa6\xab\x46\xde\x4d\x57\x55\x03\x15\x8f\xdc\x72\xaf\xd7\xf7\xe7\x1b\x37\x08\xd4\xe4\x6d\xce\x30\xf6\x33\x62\xcd\xfd\x29\xdb\x7b\xe8\xfa\x39\x49\x63\x51\xa9\x0e\x19\x08\x34\x98\x53\xce\x5a\xc6\x03\x9d\x95\x82\x74\xcb\xf0\x71\x1d\x0e\xfc\x02\x57\x8a\x49\x0d\xbe\xe6\xf5\x5e\x82\xe3\x3f\x15\x33\xe1\x1f\xbf\x87\xf7\x45\x07\x5f\x20\xba\xe0\x3d\xdf\xbf\x7d\x1f\xb0\xfb\xe7\x52\x39\x49\xee\xaf\xb9\x43\x17\x8e\x9c\xaa\x0b\x6b\x90\xe6\x2e\xba\x70\x2e\x63\xeb\xd5\xf0\x96\x9b\xe2\x2a\x30\xb7\x1f\x5e\xec\xe2\x6c\xf9\x1e\xbb\x1a\xb3\x66\x3c\x28\xbe\x77\xe2\x57\x17\x66\x5e\x86\xfc\x95\x4f\xae\x04\xfa\x38\x04\xe8\x5e\x96\x6f\xa1\x40\xca\x6f\xa7\xf2\xe7\xb7\x63\x7d\xc3\x61\xec\xef\x1c\xd2\x16\x81\x2c\x85\x24\x0d\xed\x1e\xce\xc4\xd1\xf6\xe0\x59\xbf\xfa\xb5\xf7\x5b\xdb\xbf\xe7\xfd\xf3\x3f\xb9\x2a\xc2\xa6\x7d\xde\x37\x1f\x3f\xeb\x6b\xe4\x0b\x26\xfa\x7b\x7a\x8e\x58\xda\xe1\xac\x05\xb2\x86\x3b\x25\x47\xac\xd5\xeb\xfb\x8b\xd7\x8b\xc3\xbc\xf0\x35\x31\x9b\x74\x8c\x1d\x3e\x44\x13\xf7\xbb\x13\x53\x39\xf9\x5e\x6c\xf0\x64\x4c\xa5\x74\x17\x6e\xa7\x2c\x04\x00\x2d\x24\xd7\x6f\xe2\x0b\xa6\xe4\x2f\x94\x05\x88\x7c\xfd\x78\xfe\xc2\x4d\x62\xcb\x4d\xb1\x8b\xd7\x70\x8f\x8c\xcd\xe2\x1e\x39\x25\xc9\xcd\x8d\xc4\x1f\xd8\xa6\x40\x28\x86\x32\xf9\xd0\xbe\x4a\x4f\x4b\x34\xea\x34\x2a\x41\x45\x7b\x4c\x06\x79\x47\x13\xc3\x8e\x0e\x2b\x74\x2c\x14\x8a\xd2\x5a\x11\xb9\x38\xc9\x6b\x90\xe4\x47\x49\x3a\x8d\x7e\xd8\xa4\x76\xa3\x6b\xc1\x89\xd9\xde\x39\x27\x17\xba\x72\x17\x9c\x9c\xe3\x9d\x7d\x62\x81\x8b\x8b\x8f\x71\xb5\xba\xc8\xff\x31\xbe\x73\xd1\xce\x16\x97\xb3\xc5\x19\x83\xad\x0b\x6f\x1c\xe9\x57\x13\xf9\x52\x1d\x36\x70\xe4\xc6\x42\xdd\xa2\xe7\x8f\xf4\x87\x8a\x4b\xe1\x64\x58\xff\xe1\xe7\x17\xea\xca\x37\x0f\xd7\x87\x8f\xfd\x26\xbc\x7e\x78\x73\x65\xc5\x26\xf2\x9a\xd3\x85\x7b\x86\x37\x95\xfb\xf3\xec\x8b\xaf\xf0\x24\xd6\x7d\xca\x99\x23\xf2\xbf\x38\x73\x3c\xe9\x85\xbf\xdd\xdc\x41\xce\x1c\xff\x47\x16\xc0\x6c\xee\x61\x22\xd4\x92\xa1\x4c\xce\x03\x6c\x95\xb1\x16\x1a\xe0\x30\xbe\xe3\xcc\xc1\xd6\x82\xff\xc8\x41\xa1\x2a\x61\x74\x02\x91\x11\x9a\x88\x46\x62\x98\xfc\x5c\x36\xe8\x95\xf7\x75\xcc\x7b\x68\x75\x89\x17\x76\x6d\x6c\x3d\x51\xe5\x85\x03\xea\xf0\xec\xf9\x67\x17\x40\xa1\xf8\xd6\x9e\x8d\xe1\x6a\xac\xa7\x76\x42\x6a\xfb\xe0\x0b\x26\x9f\x2f\x22\xff\xeb\xf3\x45\xc1\xd7\xbd\x5f\xf7\x8e\x39\xa5\x36\xd0\xdf\x09\x9e\xf9\xb5\xa4\x6f\xce\xf0\x05\xd3\xce\x17\x91\xff\xef\xe7\x8b\x8c\xaf\x7b\xcf\xb9\xbc\x5d\xe4\x7c\x71\x52\x7e\x12\x70\x0f\x8d\xcd\x11\xad\x50\xc6\xf2\x87\xe4\x23\x44\xfd\x67\x9f\x7a\xbe\x88\xfc\x9f\xce\x17\xf9\xf0\xcb\x77\x07\x4e\x0d\x3b\x9d\xc3\xa7\x06\xc4\x6d\xe2\xb7\xc8\xdb\x82\xd6\x9c\xc8\xc8\x9c\xb6\x7c\xb2\x84\x86\x89\xcb\xa2\xb6\x76\x73\x9f\x93\x7b\x48\x5c\x20\x1e\x36\x38\xca\x4d\x89\x15\xce\x44\xf9\x7c\xc1\x7c\x8a\x77\x3f\x5f\x44\xfe\xff\x38\x5f\x0c\x75\xed\xeb\xcb\xc8\xe8\xdb\xdb\x2d\xfe\xc2\x8b\xff\x45\x44\x69\xe0\x50\x46\xb9\x4d\xa3\xb1\x95\x67\xe0\x4b\xd9\x3d\x1b\x6b\x6a\x36\xcf\x22\xc3\x41\x87\xc1\xf7\x81\x78\x38\xde\x51\x66\x32\x56\xb8\x12\x11\x66\x6b\xdd\xcd\x17\xdc\xed\x7c\x11\xf9\x3f\x9c\x2f\xe6\x80\x67\xf0\xf4\x42\x62\xe8\x3c\x33\xe8\x1b\xf3\x82\xa7\xa0\xdd\x15\x15\xed\x9a\x59\x80\x2f\x65\x75\x6f\xac\xab\xdd\xd2\x97\x23\xd5\xc0\x90\x5d\x6e\x36\x55\x38\x8d\xe3\x36\xe9\x02\xbe\x09\xa5\xa1\x5a\x77\x15\x79\xaf\x44\x40\x90\x74\xbc\x42\x50\xf0\xc2\x08\xf5\x51\xf0\x4a\xc5\xa0\x4a\xf6\x52\xc7\x8f\xf3\x3e\x18\x28\x92\xce\x96\x6c\xb5\x4c\x4a\x2c\x97\x06\x69\x6c\x67\x64\x5b\xe2\xa7\xd2\xa7\xe5\x32\x3c\x30\x2e\xca\x1e\xf0\xa4\x5f\xab\xdf\x74\xa9\x73\xdb\xab\xdb\xdc\xee\xed\xaf\x6c\x1b\x78\x68\x6d\xc5\xb5\x94\xda\xc1\xbc\xf6\xb5\x8d\x56\x41\x9c\x09\x57\x14\x29\x0d\x6b\xb8\x2f\x11\xb6\xf0\xf4\xba\xdd\xf3\x0a\xbb\x4f\xbc\xb9\x34\x65\xe9\x9b\x27\xbb\x8a\x16\x1d\x99\x49\xdd\xee\x85\x83\x9b\xcb\xce\x94\xae\xe9\x75\x21\x8c\x56\x92\x76\xec\x20\xed\x88\x99\x7c\xbe\x40\x88\x53\x20\xc6\x0f\x0e\x7d\x74\xaf\x62\x1b\x3b\xee\xe3\x65\x07\x81\x75\xbc\x84\x20\x44\x7a\x58\x31\x44\x4b\xd1\x55\xc6\x8a\xca\x4e\x02\x77\x10\xcd\x6f\x41\x4c\xef\x92\x3d\x8f\x58\xf2\xee\x68\x9b\x55\xb2\xec\x4e\xe7\x87\x4b\xd9\xa9\xcc\xee\xdd\xde\x31\x7b\x7f\x6f\x6a\x6a\xcf\xbd\xb3\xbb\x76\xf5\x66\x29\x76\x78\xbd\x50\x10\x66\xab\x74\xe6\x54\x11\x7d\xdf\x56\xe5\xcc\xa9\x4c\x0e\xc3\x2b\x86\xaf\xee\xa8\xeb\x3c\xf5\xe5\x55\xba\x55\x5f\x3e\xd1\xe9\xd9\xfd\xdc\x42\xd1\x46\x86\xeb\xa3\xa6\xfb\x96\x97\x97\x2f\xbf\xaf\x49\xd7\x74\x74\x45\x39\xc9\x97\xd2\x44\x63\xed\x11\xe2\x8d\x7c\x81\x7c\xbe\x50\x02\x25\x9b\x96\xf7\x1e\x36\x40\x8a\xc9\x1b\xd0\xf8\xf9\x22\x84\xc9\x0b\x3d\xdd\x45\x27\x9f\x30\x98\xdb\x9e\xac\x33\x52\x63\xde\xe8\x15\xaf\x89\xb7\xdf\x05\xf5\xc2\x91\xfc\xc5\xe7\x06\x7e\x1e\xe9\x68\x70\x42\xaf\xf8\x52\x7e\x67\x5e\x2c\x9d\xc3\x70\x59\xec\x83\xd7\x2c\x17\x17\xd7\x6e\xe8\xca\x16\x9f\x4b\x74\x67\x19\x60\x01\x99\xd2\x74\x2e\xdd\xfe\xad\xe8\xe1\x93\x14\xf4\xd4\x59\xe7\xae\x4e\xc2\x58\xe0\x23\x80\x13\x34\x80\x39\xae\x3e\x00\x94\x0a\x7a\x66\x65\x41\x19\x72\x37\xab\x54\x42\xcf\x1d\x0e\x19\x23\x6e\xc8\x48\x27\xb5\xd4\x58\xad\x36\x13\xd3\x03\x99\x9d\x3a\x97\x75\x36\x31\xda\x28\x26\x73\x31\x4c\xca\xc5\x44\xa3\xa6\x09\x7d\x07\x1e\x16\x3f\xf6\x67\x1a\x83\x27\xce\x25\xb8\x0c\xa1\xaa\x58\x43\x8c\xaa\xbc\x16\xa4\xbc\x63\x2f\xbd\xe4\x05\x25\xef\x15\x7f\xe2\xcf\x3e\xf6\x73\xdf\x4f\x1f\x7f\x4e\x19\x78\x82\x32\x1a\x2c\xea\xeb\x19\x4f\x45\xc6\x7b\x4f\x5f\xbb\x86\x26\xe5\x5a\x94\xd7\x07\x2f\x28\x04\x5e\x31\x42\xdb\xa1\xa4\xf1\x0b\x0a\x2a\x44\x94\xb4\xcf\xfd\x8a\xe3\xf8\x4a\x31\xe0\x4f\x5b\x1f\x9f\x9d\x78\x91\x22\xe3\x0d\xdc\xe7\x64\x5e\x6c\x5a\x5e\x67\x11\xe0\x9c\x38\x2c\x58\x6a\x57\x7c\x7a\xfe\xc5\xfc\xd9\x1b\x4a\xcf\xb8\x37\xcc\xce\x43\x18\x59\x10\xe2\xaf\x91\x39\x63\x40\xf6\xbb\xfb\x6c\x22\xef\xf4\xd9\xc4\x93\xd5\x13\x6f\x8f\x4f\x49\x4c\x20\x97\x18\xee\xe6\xb3\xa1\x73\x7e\x92\x26\xa6\x9e\x24\x14\x39\x55\x79\xd7\xde\xde\x8c\x8c\xde\xbd\x5d\xb7\x5e\x8f\xaf\x5b\xdf\x9b\xc6\x1b\x6c\xae\x84\x60\x9c\x53\x9e\x41\xf4\xd4\x70\x5b\x59\x06\x11\xd7\xf3\xb2\x7b\x36\xd4\xd6\x6c\xea\x73\x52\x6d\xed\xd8\xaf\x2e\xb6\x9f\x87\xe2\xb5\x4f\x8d\xc0\x07\xbe\xaf\x8a\x47\x4c\xae\xca\x44\xa3\x3b\x9b\xd4\x02\xa3\x9d\xa4\xee\xc7\x18\x66\xc6\x44\x4f\x12\x53\xdc\x35\x91\x77\x38\x62\x3e\xcf\x0b\x63\xbc\x8b\x17\xe6\x63\xef\xcc\xb6\x6d\x1d\xa9\xa9\x1d\xdb\xda\xc4\x7f\x7c\x4c\x96\xe7\x33\x33\x53\x0a\xcc\x61\x61\xe6\x82\x14\xfc\x20\x9c\x15\x87\x48\x45\x6b\x68\x45\x71\xa0\xef\x5f\x7c\xc1\x9d\xd5\x43\x80\x62\xa9\x4d\x57\x81\x50\x1c\xf5\xee\x6a\x30\xc6\x1c\xd4\xab\x40\x21\x00\x02\x05\x1a\xf7\xe7\xc5\xd3\x7a\xe2\x1e\xd9\x15\x43\x7e\x98\xb2\x10\x70\xc7\x24\x57\xdf\x65\x52\x9f\x15\xdf\xbf\x33\x7d\xde\x7d\xf7\x79\xc1\xc1\xbf\x2c\x7e\x7f\x7a\x12\x3d\xfe\xe5\xd3\x57\xae\x30\x3d\x52\xbc\xdf\xaf\x97\xd2\x9d\x85\x72\x46\x31\xbe\x52\xa6\xa7\xe0\x5e\xa9\x12\xd3\xf5\x88\x71\xc7\x8c\x1a\xe6\x10\xd5\x54\xbc\xe0\x25\x2e\x8f\x02\x49\x8b\x10\xef\x87\x79\x92\x8e\xb9\x84\xac\x09\x9a\x67\xda\x2c\x21\x63\xa4\x64\xeb\x3c\x87\xb1\x6e\x3c\xbd\x9a\xec\xb4\x34\x23\x33\xc5\xc7\x9a\x93\xd8\x3e\xaa\xb9\xd3\x83\x4d\x02\xce\x25\x74\x2c\x51\xc3\xfc\x2f\xf8\xad\x60\x6f\x5a\x56\xde\xb4\x26\x21\x61\x4d\x63\xc5\xb2\x26\x3b\xdc\x80\xc2\x9c\xa2\x2a\x78\xa5\xaa\x38\xa7\x00\x88\x11\xfd\x70\xdb\xd6\xce\xd4\xfa\xba\x5a\x4f\x6a\xe7\xd6\x36\x7e\xd5\xad\xc3\xdd\xf3\xe6\x75\x4f\xfc\xa5\xf5\xeb\x27\xb6\xef\x8d\x7c\xe1\xf4\xfa\x45\x7e\x4e\xfd\xd4\x53\xea\x27\x57\x4b\x2d\x57\x54\xcd\x6f\xb4\x37\x2f\x2f\x6f\x1a\x35\x26\xac\x69\xaa\x58\xde\x94\x0a\xde\x22\x67\x51\xcd\x2b\x50\x5d\x9c\x53\xcc\x17\xfa\xa0\x6d\x6b\x87\x54\xb9\x8e\xad\x6d\xf8\xb6\x0f\xba\xe7\xce\xed\x9e\xf8\x8b\x30\x9b\x2b\x45\x8a\x48\x3a\x97\x29\x2b\x0d\xa5\x14\x5b\xa5\xa0\xc6\x18\xc9\x38\x04\xc4\xd3\xa8\x04\xd5\x10\x9d\x2a\xb3\x24\xe5\x48\x9e\xd1\x6c\x4a\xd3\x19\x3d\xc5\xbf\xc5\x38\xa5\xee\xf0\x72\xe1\x8f\xc4\x97\x41\x33\x78\x6a\x81\xcb\xb5\xe0\xd4\xa0\x98\xf3\xea\xab\x5e\x28\xa7\x1f\x15\xb4\x39\xa3\xa2\x9c\x6d\x05\x7c\x8e\xb8\x34\xab\x87\xea\x4a\xb3\x72\xf8\x9c\x33\xd0\x20\x3e\xe7\x2b\xa6\x0a\x53\x99\x39\xb1\xd2\x69\x64\xb6\x68\x72\x6e\x3e\x41\xec\x8e\xb9\xe8\x5d\x09\xa4\x92\x85\x30\x87\x38\x7a\x6c\xf6\xfb\xab\x79\x40\x01\x20\x28\x91\xdf\x63\x1d\x04\x7e\x97\xb5\xaa\x8f\x52\xa9\x18\x54\x32\x73\x8b\xf3\x33\x2e\x0c\x0a\xd2\xc9\xb8\xb7\xa9\x17\xbb\xf3\xff\xfb\xeb\x02\x03\xf5\xd2\xc5\x88\x5e\x4b\x11\x31\xe1\xb9\xe4\x74\xee\xc8\x66\xb6\x4f\xf2\x4f\xd8\x0c\xba\xca\x1c\xce\xcf\x74\x96\x8f\x8b\x64\x49\x42\x38\x4f\x65\xf7\xdf\xdb\xd5\xba\xb1\x23\x4b\xf9\x98\x10\x99\x52\x92\x9a\x51\x95\xa6\x87\x68\xf1\x57\xfa\xb4\xaa\x8c\xd4\x92\x14\xbd\xe2\x31\x65\x56\xc7\xc6\xd6\xae\x7b\xfb\xb3\x4f\xdd\xb8\xc1\xb9\x87\x76\x7c\xe5\x60\x7d\xe1\xb2\xfb\x07\x8a\x87\x6a\x2c\xae\xf9\xc7\x66\xcd\x3f\x7d\x7e\xf6\xf1\xf9\x2e\x73\xc5\x60\x49\xf7\xe9\x15\x25\xf5\x07\xbe\xb2\xe3\xbc\xaf\x4b\x8a\x7d\x3b\xcf\x30\x50\x14\xbf\xb8\x5f\xd2\x56\xb2\x50\x40\xa0\x32\x30\x60\x22\x8c\x21\x08\x94\x3c\x8b\x63\x18\x24\xed\x53\xf4\x51\x6c\x08\x3b\xc6\x49\xa6\x52\x03\x47\xbb\xe8\x33\xae\xa1\xa5\xc9\x85\xac\x4f\xe2\xfd\xb0\x07\x00\x59\x77\x23\x3d\xe4\xc8\x4e\x4f\x4d\xb6\x52\x66\xac\x08\x82\x8a\x91\x7a\xc8\xe8\x77\xfc\x38\xee\x50\x6c\xd4\xb2\xbe\x33\x9e\xd9\xd8\xc8\xbd\x23\x7e\x88\xb5\x29\x15\x19\x86\xec\x24\x2d\x5c\xcd\xee\x58\xed\xee\xd9\xd3\x97\xc9\x1d\xf1\x7a\x8f\xe0\xcc\xbe\xbd\x3d\x35\x6b\xda\xd2\xae\x6a\xcc\x0e\x63\x46\x85\x5d\x0b\x60\x87\xaf\x97\xaf\x9f\x9d\x1b\x93\x59\x6a\x76\x8f\xf6\x3a\x3d\xbb\xae\x0d\x8b\xc4\x34\x27\xa6\x0d\x7f\x71\x77\x43\xde\xc0\x8e\xfa\xe4\xfa\x3c\x63\xde\x9c\x0d\x6e\x2a\xef\xad\x08\xf1\xcf\x30\xff\x4a\x08\x95\x5e\x21\xa0\xa0\xfa\x8d\x02\xfb\xe5\x29\x75\x97\x09\x9c\xff\xc0\xce\x7e\x98\x47\x5b\xb6\x18\xb1\x84\x5b\x46\x8e\x9b\xff\xa0\xf7\xc4\xf1\x97\xe0\x93\x4b\xf0\xd7\x97\x7c\xcf\xc3\xee\x57\xe1\x86\x58\x4b\x7f\x99\x7b\xa7\x07\x33\x49\xc8\xf2\xd2\xef\x60\x72\x32\x8c\x3e\x2b\x74\xda\xb3\x22\xff\x8b\x67\x59\x95\x5c\xfd\x76\xef\xbe\xb5\x2f\xc1\x9b\x17\xe1\x9d\x97\x45\x1e\xaa\x0e\x44\x46\x81\x4d\xfc\x88\xfe\x32\xbd\xe9\x35\xe8\x6a\x6b\xa3\x7a\xea\x38\x9f\x9c\x8e\xea\x6e\x3a\xaa\x16\xd5\x53\xe2\x7d\x8c\xa9\x56\x31\x97\x0e\x33\x71\xe0\x0a\x1c\xc7\x9e\x79\x07\x99\x5c\xd0\x24\xbb\x98\xc6\x3f\x32\x1a\x96\x5e\x8c\xe3\x1e\xac\x3e\x51\xb5\xf0\xa5\xd1\xc7\xbd\xde\x6f\x7c\xfd\x22\xb4\xbd\x28\x5e\xfe\xfe\x42\xf8\x96\x98\x2a\xff\x12\xf4\xc0\x5b\x5c\x21\x69\xf8\x28\xe6\x69\xbb\x69\xec\xe5\x4b\x7c\xc1\xa7\xd5\x63\x90\x4d\xb7\xff\xa1\x1e\x57\x6a\x1f\x68\x9e\xfd\xd2\xd0\x69\xaf\xf7\xfd\x0f\x2f\xc2\xcc\x97\xc4\x27\xbf\x39\x1f\x92\xc4\xef\xcb\xbf\x64\xfb\x3c\x88\xd7\x90\x0e\x79\x1b\x66\xd1\x7a\x74\x90\x7a\xec\x61\x7b\x89\x95\xda\xa5\xa3\x98\x85\x16\x03\x52\xf8\x8f\x42\x2a\x15\xf3\xa8\x93\x2e\x51\x0a\x9c\xdf\x70\x69\xb5\x50\xb9\x9d\x45\xb0\x0c\xea\x70\x6d\x20\x19\x0e\x29\x8f\x8f\x03\x8c\x60\xe0\x64\x3c\x83\x89\x6e\xa1\x56\x3f\xb1\x8f\xc6\xd8\x09\x59\xb3\xf7\x75\x72\xe2\x55\xee\xc7\xe2\x57\x3a\xf7\xce\xce\xf4\xea\x52\x2b\xd2\x2b\x03\xbc\x5c\x4b\x3a\x9d\xa1\x83\x5f\x15\xdb\xe0\xca\xdc\x03\x3d\x36\x7c\xca\xb7\x18\x6c\x3d\xfb\xe7\x8a\x1d\x70\xa5\xb8\x2d\x5b\x17\xe1\x3b\x86\xb7\x08\xba\xec\xb6\x62\xb1\x83\x2b\x81\xef\xb1\x79\xb3\x88\x82\xb6\x18\xb6\xd2\x4a\x73\xbe\xc4\x44\xe2\xbb\x57\x3c\x72\x4a\xc5\x29\x2f\x17\xad\xb8\x5a\xaa\x38\x03\xb3\x4b\xf5\x26\x04\x18\x53\xea\xad\x05\x87\xc6\xb8\xc8\x4e\x82\x82\xc4\x5f\x71\xd7\xc4\x5f\xd6\xad\x6a\x49\xf1\x42\x44\x72\x71\x4a\x56\xe0\x4d\xa1\x38\xa5\x38\x39\x02\xca\x85\x67\xc4\x53\xdf\x1f\x3a\x32\x2b\x83\x83\x1f\x8b\x09\x42\xe6\xec\x83\x83\xdf\xff\x7e\x45\x8f\x4b\xaf\x16\x1b\xe1\x85\x00\x1a\x9d\xf5\x7d\x3c\x0b\xaa\x49\x9d\x5b\xfc\x31\xb0\x26\x64\xa1\x3c\xc5\x21\x41\x8c\xa5\x3b\x00\x10\x4d\x84\x0a\x08\x0f\x11\xb9\xaa\xea\xa1\x02\x58\xe7\x51\xca\x23\x6f\x49\x32\x25\x1a\x13\x88\xb2\xa2\x29\x0f\x37\x69\x24\x31\xa1\xa3\x29\x51\xb9\x1c\x8b\xbf\xb2\x76\xac\x50\xb0\x0f\x72\xa5\xc9\x60\xe4\x8c\xa4\xc7\xb9\x23\xeb\xb7\x9f\x05\x47\xb1\x49\x79\x56\x65\xc1\x7c\x7e\xd6\x59\x88\x38\x7f\xe5\x0a\xec\xf8\x3d\xfe\xad\x78\x70\x87\x28\x72\x91\xc2\xa1\x63\xe2\x0c\xf8\x87\xa7\x2c\xc2\x77\x02\x2f\xd2\xe3\xb2\x3a\xfa\xb6\xa5\xc8\xb7\x9d\x78\x59\x16\xe2\x33\xbe\xf7\xe1\x3c\xa9\x77\x2b\x42\x14\x33\x2d\xcf\x11\x42\xdb\xca\x20\xa3\x2a\x81\x71\xcc\xc1\x10\x11\x73\xca\x1e\xca\x7b\x15\x49\x53\xba\x72\xec\xd0\x63\xb5\x90\x08\x78\x56\xeb\x08\x4d\x44\xd0\x94\x4a\x9b\x3e\xb5\xd6\x26\xee\xb1\x65\xab\xce\x82\xb3\x34\x7c\x86\xe2\x5c\x60\x02\x8f\xf3\x73\xce\x82\xf6\x7e\x52\xed\x55\xff\x87\x7f\x24\xde\xb7\xf9\x3f\xb8\x25\x68\xff\x41\xf1\x1b\x90\xd1\xe0\x8e\x13\xe7\xc2\x65\x1d\x76\xd7\xd3\xb7\xad\x85\x62\x15\x11\x68\x51\xf0\x6b\x31\x1b\x4a\xd9\x1c\x79\x4f\xac\xe6\xcd\xca\x35\xa8\x04\xd5\xa0\x76\x77\x6b\x15\x59\x63\x5a\x10\x10\xae\xb7\x5a\x30\x57\x43\x56\x98\x52\xb1\x0a\x29\xb1\x72\x15\x19\x02\xc4\x18\x85\x65\x5c\x35\xf3\xbe\x4e\x9c\xb3\x6b\xaa\x2b\x2b\xca\xdc\xc5\x85\x8e\xcc\xf8\xd8\x19\x44\xde\xa3\x12\x28\x09\x9c\x84\x97\x30\x3a\x65\x7d\x40\xb6\x3f\xcb\xd1\x13\x24\xc2\x8f\x71\x5f\x4c\xb2\x43\x6b\xc6\x79\x52\x62\x2f\x9e\x4d\xaa\x5f\x56\x2b\x7e\x0d\xb2\x87\xaf\x6e\xaf\x33\xb9\x67\xe5\x6f\x3f\x5c\xbf\xe3\xda\x7c\x67\x53\x8d\x31\x3b\x57\x5f\x9f\x31\xdb\x93\x01\x99\x5d\x1b\x3d\xe9\xe5\xcb\x1a\x53\xd2\x3a\x37\x37\x1f\xfa\x82\xc4\xad\xc2\xe5\xc2\xce\x95\xd9\x5d\x6e\xf3\x19\x8a\x81\x77\xce\x69\x71\xeb\x92\x9f\xda\x3d\x7c\x71\x69\x5e\x89\x23\xb9\x38\x35\x3e\x70\x73\x44\x61\xcb\xbc\xa2\x8a\x81\x12\x43\x72\xcd\x50\x51\xd5\x70\xb9\xf1\x34\x77\x79\x9c\x8f\x05\xa3\x1f\x91\xbe\x09\x50\x18\x50\x11\xaa\xa2\x7d\x53\x41\xfa\x46\xc3\xfa\x26\xc9\xfc\x39\x7d\x13\x79\x67\xdf\x54\x55\x96\x97\x95\x96\x10\x1b\x7d\x7a\x5c\x34\xed\x1b\x6a\x9f\x0f\x94\xec\xf3\xd6\xc9\x7d\xa3\x98\xd4\x35\xfa\xcf\xed\x9a\xd4\x7b\xf7\x80\xd1\x3d\xab\x88\x98\x98\x52\xfb\x2e\x8e\x56\x2e\xec\x5b\xb0\xaa\x72\xed\xa5\xbe\xcc\xa6\x5a\xa0\x5d\xe3\x49\x9f\xed\xc9\x24\x5d\xb3\xc9\x63\xcb\x9d\x5d\x6e\xb1\x35\x2c\xad\x38\x74\x59\xea\x1a\xbc\xa8\xc3\x63\xcc\x4b\xd6\x9f\xb5\xb5\x90\xa4\x4a\x6b\x4d\xf1\x1b\x7a\x9a\xd6\xb7\xd9\xa7\xf5\x4b\x64\x6a\x89\xc5\x5e\x9a\x1c\x71\x9a\x8b\x1b\xef\x17\x8e\xf1\x73\xf5\x32\x3f\x69\x3a\x2a\xa5\x1a\xa2\x02\x30\xcd\x89\x83\xf9\xc9\xc0\x40\x41\x90\x5d\x9f\x99\x19\xf1\x06\x02\xa6\x29\xcd\x2c\x4d\xb6\x18\xd2\xe3\xd3\xd3\x2c\x2a\x62\x92\x85\x29\xac\x06\x82\xd1\xe9\xe7\x35\x10\x8c\x9f\x4d\xbf\x25\x73\x1a\x8c\xbd\x82\xf7\xdf\x49\x6b\x80\xf7\xfb\xd6\x7e\x2e\xff\x96\x4c\x6c\x10\x10\x34\x99\xd9\xe0\x61\x61\x0a\xf9\x16\x87\x66\x93\x76\x3a\x59\xac\x60\x02\xb2\x4b\x9a\x30\xe2\xb0\xc0\xb1\x14\xf8\xac\x71\xf1\x1e\xd2\x74\x2c\x3b\x24\x13\x8d\x7a\x9d\xd5\x62\xb4\x27\xda\x63\x63\x74\x09\xfa\x04\x9b\x99\xb6\x73\x7a\xe6\x61\x60\x16\x26\x03\xa7\x61\x6a\x4a\x3a\x37\x7b\x6a\xde\x61\xf8\x63\xd5\x92\x86\x54\xa5\xef\x92\x32\xb5\x71\x49\x65\xe5\xe2\x86\x74\x25\xee\x57\xa5\x35\x2c\xb9\x4b\xfe\x61\x71\xa5\x73\xd6\xa6\xea\xea\x4d\xb3\x9c\x5c\x4e\x4e\xef\x86\xca\xca\x0d\xbd\x34\x07\x7e\x34\x42\xfc\x4f\x85\x37\x50\x04\x2a\xbb\x0e\xfe\x5c\xa4\x31\xfe\x0c\xdc\x52\xf4\x89\xe4\xa2\xa6\x26\x26\x2d\x73\x5d\xb3\x2f\xd0\xc4\xe7\x3d\x5f\x52\x6b\x8d\x56\x09\x75\x93\x4b\xb1\xc8\x7a\x25\xd3\xab\x58\xaa\xd0\x9a\xc4\x44\xc0\x91\x79\xd5\xdd\x79\xe9\x10\x1c\x93\x62\x8a\x0d\x11\xb7\x3c\x29\x2a\xbe\x01\x6b\x77\xee\xe0\x6c\x8d\xcb\x6b\x13\xe1\x4a\x18\xe1\xf2\xbd\xb5\x81\x01\x47\x80\xc9\xc7\x01\xbe\x89\xd4\xa7\xcf\x9f\x23\xc3\x4f\x80\xc7\x82\x90\xd8\x3b\xce\xff\xae\x67\x6a\x4d\xe3\xef\xa8\x69\xe4\x78\x4d\xe3\x27\x6a\x4a\xf9\xf2\xa4\x9a\x6a\x08\x64\x50\x26\xcc\x53\x48\x95\x8d\x89\x8c\xba\x96\xb2\xab\x31\x36\x27\x5a\xab\xd0\x87\x18\x8b\x42\xc4\x37\x0e\x89\xc3\x2f\x43\xd1\xfc\xf9\x38\x7e\xc7\x2a\x50\xaa\x89\x75\x25\xc7\x36\xf6\x1c\x5f\x20\xf1\x30\x88\xad\xfc\x4d\x96\x7f\x21\x1b\xd5\x52\x4c\x83\x1e\x94\x38\x13\x90\x32\x89\x45\x0b\x22\x85\xc2\x3f\xc7\x05\xc9\x2c\x2b\x3b\xf9\xd9\xa2\x9f\x45\xaa\x68\xe4\x48\x78\x8c\x2e\x5f\xab\xa7\x33\x20\xf6\x2e\x31\x97\xa0\x27\xb0\x36\x49\x95\x9f\x00\x32\x71\x0e\xca\xda\x70\xa7\xef\x1f\xef\xb7\x36\xac\xac\xab\x5a\x54\x63\x32\xd5\x2c\xaa\xaa\x1b\x69\xb4\x42\x44\xe8\xa2\x47\xfe\x1a\x90\x98\xdb\x92\x1f\x18\x45\xb2\x8d\xf2\x0a\x4d\x84\x46\x11\x67\x23\xac\x40\x91\x17\x1f\x11\x57\xce\x88\x49\x4b\x48\xb0\x47\xcf\x98\x11\x6d\x4f\x30\xa6\xc6\xcc\x80\x5f\xaf\x7e\x61\x4f\x6d\xed\x9e\x17\x56\xc3\x4f\x57\xbf\x48\x5f\xbd\xb8\x5a\xbc\xf2\x30\x5e\x7c\xcb\x60\x9d\xd5\xec\xa4\x89\x49\x8f\xd2\x7e\xb7\x15\x94\x68\xe7\xf0\x85\x1e\x42\x57\x6d\xb7\xb7\xae\xae\xf5\x7d\xb3\x76\x4d\x6b\x6a\x6a\xeb\x9a\x5a\xd6\x27\xb9\xa4\x4f\x5e\xe0\x9b\xfc\x7d\xb2\xc2\x1d\xa2\x27\xe2\x2f\x13\x40\x41\xfa\x04\x64\x5a\x50\x23\x73\xe4\x0a\x18\x53\xdb\xb9\xdc\x4d\x77\x74\x4b\x8c\x3b\xe9\xce\x4e\x8b\xbf\x7b\x39\x62\xcd\x9c\xdc\x83\xd3\xd7\x50\xd2\xdd\x7b\x70\xba\x7d\x33\xd7\xd4\xb8\xbe\xa3\x73\x63\xa3\xd9\xdc\xb8\xa1\xa3\x73\x43\x83\x99\x5b\x10\xbc\xf4\xae\x1d\x18\xa6\x20\x1d\xe8\x3b\xa2\x8a\x75\xa6\xa5\x39\x63\x08\xf5\xa1\x2b\x2d\x95\xfc\xc5\xc9\x64\xcd\xb5\xb7\x93\x35\xa7\x1f\xfd\xf2\xf1\xf6\xf6\xe3\x5f\x1e\x9d\xfb\x2c\xde\x78\xf7\xee\x23\xd1\x4a\x47\x29\xf7\xdd\xd1\x16\x7d\xd3\x51\x6a\x15\x25\xc6\x50\xc6\x17\xbc\xf8\xf6\x6a\x82\xc9\x75\x32\x9e\x93\x24\x54\x81\xae\x48\x01\x9a\xe9\x08\x04\x01\x86\x11\x52\x70\x0a\xb4\x10\x71\xc4\x4a\x34\x8c\x30\xcf\xe3\x05\x13\x48\x12\x8a\xde\x9c\xc5\x1c\xbd\x72\x30\x46\xda\xdd\xaf\xc2\xab\xef\x7e\x11\x7b\x0a\xac\x92\x8a\x73\x23\xa4\xbc\x82\x53\x2e\xff\xf4\x0b\x28\xda\x9c\x32\xd0\x4c\xc2\x86\x3a\xd8\x71\xf3\x73\x78\x68\xf0\xeb\x5e\xf2\x03\x17\xff\x67\x1e\x1a\xfe\x59\xd8\xf9\x71\x09\x1c\x80\xbd\xff\x13\x1b\x0d\xed\xe7\x8d\xb7\x07\xf9\x36\xfe\x2b\xac\x9f\xe3\x90\x03\x74\x34\x88\x96\xf5\x33\xcf\xd3\x1e\x53\x72\x4a\xda\x63\x0a\x05\xed\x31\x41\xc0\x0b\x68\xbb\xa9\x1b\x9d\x4d\x44\x61\x16\xe9\x0b\x83\x20\x07\xd7\xa6\xdd\xfd\x2a\xbc\xfa\xd3\x2e\xa2\x43\x9a\x4a\x2e\x82\x55\xff\xfd\x35\x6c\x40\xa7\x5c\xa3\xe4\x14\xcb\x3f\xe3\x22\xd6\x1c\xb9\x3c\x37\xf2\xb9\x17\x48\x01\x04\x36\x9b\x2d\x69\xda\x90\xfe\x17\x19\x64\xf0\x9b\x37\xc9\x8f\xef\x4b\x9f\x9b\x1d\x9f\xab\x86\x3d\x9f\x9c\x82\xd3\x90\xf1\xdf\x64\xc9\xe7\x50\x23\xcd\x75\xa8\x6c\x45\x39\xa8\x01\x75\xa3\x45\xee\xe1\x52\x08\x0e\x2c\x03\x14\xd0\x0d\x3c\x0a\x01\x10\xf8\x7a\x14\x4c\xe2\x7b\x83\x03\x46\x28\x5b\x29\xaf\x20\xde\x9e\x20\x14\x18\x1c\x14\x38\x14\x02\x33\x50\x00\x9a\x11\x30\xa4\x62\x5b\xb1\x04\x18\x55\x82\xcc\x53\x42\x36\x63\xa7\xb3\xad\xd5\xd9\xe0\xf4\x54\x57\x16\x17\xe6\xb9\xb4\x84\x69\x58\x1d\x65\xb6\x85\x85\x52\x35\x9b\x36\x78\x8a\x1d\x8d\x89\x66\x9a\x02\x78\xdc\x9c\x26\xbd\xa0\x94\xb9\x56\x8d\x96\x96\xa1\xfa\xaa\xd2\xc4\x52\xdc\x1a\x78\x07\xb8\x58\x24\x0b\xd5\x67\xb9\xc4\xa6\x9d\xb3\x73\xd2\x67\x8e\x56\x37\xac\x4e\x30\xae\xf6\xd4\xac\x99\x99\xee\x98\xbd\xb3\xb9\xa9\xa7\xaa\xb8\xa8\xfa\x66\x75\x51\x51\x35\x40\x6f\xe3\x0b\x29\x75\x6b\x06\x5a\x2d\xd9\xf9\xb0\x6d\xe3\xb2\xc4\xd2\xe2\x92\xca\xc6\x34\xb1\xd6\x98\x78\x40\x67\xce\x88\x12\xae\x3a\xe6\x1d\x1f\xf0\xd9\xbb\xf6\xf4\x66\xd4\x56\x57\xd7\x66\xf4\xee\xe9\xc2\x1f\x0e\x1c\x9f\xe7\x38\x0d\x5b\xd7\xf8\xec\x83\xcb\xe6\x75\xc3\x98\xc8\x77\xcf\x5b\x36\x88\x3f\x5c\xb3\x15\xe0\x85\x6d\xc9\x19\x56\x57\x6e\xb8\x79\xf9\x52\x4d\x8c\x31\x56\x23\x1e\x4d\xae\xb1\x0c\x0c\xc7\x15\x3a\xd3\x82\x25\x3d\x6d\x01\xe9\xdf\xcd\xc2\x8f\x48\xff\xd6\xa3\x4e\xf4\x8c\x3b\x5c\xee\xdf\xce\xf1\xfe\xf5\x5c\xb3\x90\xe9\x57\x34\xb5\x9b\xe5\xee\xa5\xc7\x96\xa0\x3e\x72\xe4\x8a\xf3\x4c\x74\x74\xfc\x9d\x1d\x1d\xe3\x2e\xf8\xaf\x47\x69\xda\xc5\x3d\xee\x68\xa7\xb3\xa5\xd9\x59\xef\xac\xfb\xdf\x06\x2a\x57\x1e\x28\xf2\xc5\xdd\x06\x0a\xdf\x31\x50\x69\xf5\x9b\x7a\xb2\x88\x75\xb4\xa2\x61\x95\xd1\xb8\xba\xa1\x62\x79\xb3\x3d\xab\x7b\x93\xa7\xaa\xa5\xd0\x45\xc6\x88\x8c\x94\xb3\xb8\xb5\xea\x75\x7b\xfd\x9a\xc1\x56\x6b\x76\x01\x6c\xdb\xb4\x2c\xa7\xaf\x7f\x69\xa5\x58\xe1\x1f\x25\xbe\x31\x7b\xe8\xd8\x80\xb8\xb7\x6b\x77\x4f\x5a\x35\xf9\x49\xeb\xd9\xdd\x05\x1b\x07\x8e\x0d\x65\x9f\x86\x0d\x6b\xc5\xbd\x83\x8b\x06\xba\x29\x87\x5e\xf7\xc0\xa2\x41\xd8\xb8\x76\x03\xc0\x93\xfe\x51\x4a\x5a\xbe\xc4\x9a\x91\x2c\x1e\xb9\x73\x8c\x24\x9f\xe0\x1e\xea\xe5\x40\xa9\x68\xcd\x75\x35\xf0\x4a\xa8\x97\x84\x0f\x4d\x18\xad\x00\xbc\x10\xc9\x59\xf4\x82\x02\x55\x1c\x33\xbc\x00\x5d\xe3\x02\xf8\x85\xbb\x45\x2a\xa7\x18\xf9\xec\x82\x3d\xee\x08\x95\x4a\x95\xaa\x4a\xb5\x59\xa9\x31\xd9\x42\x25\x81\x64\x4f\x23\x0c\xd1\x24\x48\x4b\xf8\x7c\xc3\x37\xc4\xe0\xaf\x83\xf8\xf3\xc7\xc5\x7f\x70\x8b\x3e\xd3\x04\xae\xe4\x97\x6e\xd9\xf2\x9b\xcf\x37\x83\x23\x2c\xd9\xc1\x85\x6b\xac\xfd\xeb\xef\x68\xbf\xd5\xdf\x7e\x0e\x00\xfc\x70\x5f\xa9\x61\x91\x53\x7b\x20\x59\xee\x81\xcf\x2e\xfa\xf9\x7d\xf0\x5f\x18\xd7\x81\xc7\xdf\x06\xf1\x27\x8f\x8b\x7f\xe5\xd6\x7e\xba\x99\x5d\xb8\xb6\x74\xdb\x36\xf1\xdf\x9f\x6b\x6b\x07\x74\x5a\xdc\xc9\xcf\x27\x36\x6c\x33\x9a\x29\xe7\x31\x64\xfc\x0a\x71\x72\xec\xd5\xc4\x89\x4a\xce\xa8\x10\xcd\x78\x8e\xe5\xef\xe5\x34\x84\x72\x31\x8e\xf0\x1c\x13\x3c\xad\x9d\x21\x3c\x80\xc2\x5c\xa6\xf9\xef\x24\xf4\xa3\x83\x4b\xf1\x2e\xbf\xba\xa9\xbc\x7a\xe7\x8d\x55\xcb\xaf\x6d\xaa\xf0\x82\xa5\x6e\x69\x8d\x67\xb4\xc5\x96\x39\xfb\x9e\xee\x65\xe2\x4e\x58\x11\xb2\xe4\xf2\x87\x1b\xfe\xbd\xeb\x17\x4f\x0c\x56\x6d\x7f\x76\xb9\x67\x73\x57\x26\x81\x84\xcd\xf9\xb8\xff\xa9\x5d\x8c\x6b\xe3\x15\x52\xf7\x42\xbe\xe9\xf3\xeb\x1e\xff\xdf\xd5\x3d\xfe\x33\xeb\x2e\x6d\x47\x72\xe5\xb1\xcf\xdb\x7f\xdf\x5c\x47\xc9\xfa\x6b\xab\xfa\xce\x8d\x94\x5e\xb5\x94\xf5\xe6\x34\x10\x0e\x9b\x84\xea\xa5\x8d\xc3\xa4\xee\x23\x61\x83\x47\x9f\x9d\x2b\xb9\x1a\x17\x1f\x99\x99\xd5\x4d\x13\x76\x1f\xa8\xf2\x27\xec\x06\xb4\x96\xfa\xeb\x84\x12\x09\xd7\x45\x53\xc3\xd3\x7c\x00\x01\x2a\x25\x05\xbc\x86\x22\x00\x3f\xbf\x32\xb3\xd3\x44\x45\x50\x08\x11\x08\xca\x24\x8e\x48\xa7\x5c\x81\xfd\x3a\x38\xf2\x1e\xf7\x82\xb1\x52\xfc\xe1\x97\x1e\xff\xa9\xf8\xe3\x4a\x48\x7a\x5f\xfc\x51\x35\x98\x5e\xbc\xfc\x6b\x48\xaa\x15\x7f\x02\x2f\x3f\xb5\x89\x40\x7d\xe0\xf0\x95\x4d\x57\x60\xd9\x95\x2d\x57\xc0\x23\x2e\xbc\xb2\xf1\x49\x76\x1e\xfa\x06\xff\x28\xe1\x7a\x1d\x23\xf3\xfe\xa0\x34\xdd\x23\x19\x7f\xe6\x30\x23\x94\x5c\xc0\x83\x3f\x4a\x47\xc7\xc9\x2a\x82\x7e\xfc\x7b\xb4\x7a\xca\xd7\x94\xc8\x4a\xc7\x78\xaf\xa7\x7f\xeb\x8e\x99\xf8\x02\xd1\x2f\x3a\x58\xc4\x13\x29\x03\x5c\x13\x55\x0b\x66\x20\x44\x2a\xa1\x54\x53\x4c\x19\xa5\xb8\xb5\xe6\x1a\xad\x7a\x2d\xac\x7b\x14\x70\x0c\x5c\x16\x4c\x5b\xe0\xb7\x4b\xe1\x3b\xac\xce\x63\x82\x9e\xfb\x8b\x42\x4b\xba\xa4\x59\xda\x37\xb4\x72\x18\x17\x0f\x8c\x3c\x87\xee\xc2\x98\x31\xe6\xd0\xcf\x51\xd7\xe4\x28\x2f\x06\x69\x40\xb8\x99\x44\xa1\x01\xa2\xa9\x8a\x66\x04\xa9\x14\x48\x0f\x7a\x05\x33\x84\xd0\x44\xc3\x3a\x62\x5f\x64\x14\x34\x2c\x8e\x04\x2c\x39\xbd\xcd\xb5\x35\xb5\xc9\xcb\xb7\x6f\x2f\x75\xa4\xcd\x59\xb1\xaf\x23\x55\x38\xa5\x89\x25\x5b\xdd\xd2\xe5\xe6\xf0\xbc\x1c\x6b\x86\x75\x2b\xad\x17\xbc\x21\xe8\xf0\x33\x8a\x2e\x24\xf8\xf3\xec\x21\x1e\xd5\x30\x36\x50\x20\x98\x58\x70\x3a\x68\x2e\xf1\x37\x9e\x83\xa2\x26\xe1\x07\x9b\x0e\xae\x61\x38\x00\x5c\x24\xe8\xb8\x14\x7a\x0d\xe5\x04\x15\x48\x25\xa5\x4b\x34\xec\x12\x2b\x4d\x1c\x8f\xef\x69\x28\x78\x4e\xd0\x95\xad\x39\xb8\x09\xa9\xc4\x5f\x8b\x6f\x2a\x76\x09\x57\x59\x4e\xbe\x32\xd2\xb2\x65\x68\x17\x3a\x8b\xae\x42\xb1\xd4\xfd\xc3\x09\xa4\xa1\x98\xc7\xc0\x8f\x24\x11\x36\x39\xa5\x20\x28\x54\x0a\x41\x35\x62\x21\x09\x01\x83\x84\x80\x40\x62\xf5\x99\x31\x62\xd6\x60\x82\x6c\x5c\x1d\x01\xbc\x0e\xa8\x8f\x7e\x28\x12\x54\xd1\x40\x66\x5d\xe0\x50\x2c\xcc\x30\x40\x48\xf0\x8c\x90\x21\x14\x86\xc8\x6c\x0c\x1f\x4f\x9d\xae\xf3\x58\xe3\xe3\x4c\xa1\x42\x70\xb0\x3e\x98\x74\xed\xa2\xff\xe6\x41\xfe\x2b\x42\xc2\x42\x82\xc3\xfe\xc7\xa7\x52\x40\xc9\xc0\xb9\x73\xbb\x77\x2f\x5f\xde\xdd\x5d\x5e\x9e\x9a\xaa\xd3\x21\x74\xee\xea\xb9\xab\x57\x9e\xb8\xfc\xc8\xa5\x0b\xbb\xcf\xee\x3e\x7b\xf2\xf8\x91\xc3\xfb\xef\x59\xbe\x6b\xf9\xae\x6d\x5b\x36\xac\x5f\xb3\xaa\x7b\x59\xf7\xb2\x45\x0b\x86\xe6\xce\x99\x55\xde\x55\xde\x35\xb3\xb5\xb1\xa1\xb6\x3a\xb5\x2c\xb5\xac\xb8\x30\x97\x64\x38\xd1\xd9\x75\x76\x6b\x92\x31\x21\x36\xda\x4f\x64\x9c\x4c\xa7\xdb\xb4\xd5\x3d\xfd\x13\xcd\xf4\x32\xff\xfb\x27\x9f\x77\xe7\x6f\xc5\x91\xb8\x8b\xcc\xa6\x5c\xc3\x08\x4d\xe6\x18\x93\xa4\x0f\x84\x1f\x19\x5c\xf4\xa3\x3c\x00\x10\x40\xef\xbf\xc3\x4a\xfa\x51\x34\xf9\xa8\x8e\x7e\x22\x17\xa2\x9f\x04\x89\xef\x4d\xfb\xc8\xd7\x1c\x97\x3b\xf5\xa3\x46\xc3\xd4\xbb\x8b\x3f\x32\xe4\x36\x4e\x2a\x65\x8e\x0c\x72\x92\x4f\x26\x3f\x4f\x17\xc4\xff\xdd\x46\x38\xcc\x62\xb3\xab\x6c\x11\xe6\x58\xb5\x3a\xd6\x1c\x21\xfe\x7e\xda\x27\x01\x53\x3f\xf1\x7d\x3c\xad\xcc\x2f\x52\xaa\xb2\x62\x63\xb3\xaa\x52\x22\x08\xcf\x32\xa1\x60\x89\x10\xa2\xff\x97\xfb\x20\xa4\x42\x4d\xe2\x90\xf2\x30\xe1\x15\xe0\x51\x00\x0a\x41\x1a\x14\x89\xe2\x50\x22\xb2\xa2\x65\xee\x78\x63\x82\x8e\xe3\xb0\x35\x31\x2e\x52\x4f\x04\x6b\x28\x99\x5f\x81\xc1\xc0\x11\xea\xde\x18\x1e\x31\x53\x41\x3a\x15\x67\x02\xf8\xc9\x33\x69\xe4\x27\xc0\xc4\xee\xa0\x45\x98\x7c\x07\x98\x1b\x9c\xfc\x39\x71\x06\x0a\x34\xc9\x76\x80\x40\x84\x34\x79\x2a\x1f\xae\x20\x2b\x55\xd0\x13\x89\xcc\x59\x69\x8c\x60\xae\xa0\x4d\x22\x12\xd9\x29\x40\x6e\x12\xb9\xb9\x52\xb0\x26\x71\x56\x82\x15\x07\xbd\x46\xc9\xf1\xad\x41\x1b\x07\xaa\x0b\x66\x90\x7f\xb0\x21\x18\x1a\xc5\x47\x6f\xad\x09\x16\x9f\x85\x5e\xee\x7e\x0c\x65\x95\xe2\xf7\xc6\xfe\x8e\xc5\x57\xab\xc0\x62\x57\x9f\x28\x7b\x9b\x1b\x50\x9f\x2c\x7f\x8b\x98\x89\xbe\x00\x83\xfc\x43\x21\xd0\x26\x5e\x12\xd5\x33\x36\xcf\xad\x29\xa4\xff\xc0\xd3\x61\x67\x2b\xdf\x1d\x3b\xac\x3e\x5b\xf5\x2e\xfe\x05\x86\xea\x2a\xf1\xc3\xb1\x9f\x63\xf1\x85\x1a\xb0\x4b\x7a\xf7\x2b\xfe\xb8\x25\x8e\xe2\xf8\x28\xde\x82\xc3\xd4\xf3\x02\x88\x91\xb2\x0b\x80\x11\x87\xc7\x03\x19\xe4\x40\x30\x72\x64\x8b\xd3\x6a\xf8\x70\x9e\x24\xeb\x50\xd0\xed\x46\x09\xb9\x0c\x04\xe5\x67\xf9\x4c\x32\x96\x70\x8c\xe2\xce\xc8\x67\xed\x16\x4f\xee\x12\x9f\xf5\xc2\x77\xe6\x5e\xdd\xdd\xd8\xb8\xfb\xea\x5c\xf1\xa7\x10\xef\x5e\xda\x92\x96\xd6\xbc\xcc\x4d\x5e\x7f\xb3\x1a\xfe\x50\x2d\xde\xeb\xbb\x21\x5c\xc3\x05\xcb\x1f\x5a\xb4\x88\x50\x78\xc1\x19\xb0\xd6\x2e\x28\xa7\x89\x86\x01\x71\x52\x9e\x2b\xbe\x89\xe5\x57\xb2\xa3\x85\x6e\x2d\xd5\x6c\x4c\x89\x1c\xe6\x05\x7e\x06\x20\x81\x76\x3d\xef\x37\xeb\xc4\x20\x39\xf1\x49\xe4\x84\x59\xd7\x23\xc1\x6b\x63\xdc\xf1\x77\xd8\xbb\xe3\xa7\x95\x20\xd4\x0f\x2c\x2f\x56\x32\x05\xb3\x26\x91\x56\x25\x4d\xca\x8d\xa5\xff\xb4\xdc\x58\xae\x11\xf1\xe4\x4a\x58\x9d\xb7\xf4\xe2\xf0\xd0\x69\x97\xf7\x89\x00\xd7\xd9\xf9\x0b\x2f\x11\x2e\x0f\x53\xdd\x48\x53\xcf\x06\xb3\x79\xfd\xac\xc6\x91\x5a\x13\x9e\x0d\xa3\x73\xce\xd2\x34\x59\xee\x22\xdf\x7f\x84\xef\xad\xad\xa8\x19\xcf\x92\x55\xe6\xfb\xb7\xbb\x55\xca\x92\x05\xe8\x4b\x08\xf1\x35\x8a\xdb\x48\x29\x65\xcb\xc6\x1c\xdd\xdb\xfd\xf3\x6f\x3a\xee\x98\xa1\x9f\x6b\x7c\xb6\x9b\xf8\x3b\x5e\x89\x0b\x16\xc8\x5d\xe4\xfb\x64\x09\xeb\xee\x72\x9f\xc8\x4f\xbb\x4f\x16\xe1\x15\xc6\xaf\xdd\x94\xf0\xcf\xe0\xcf\xa1\x44\x00\x5e\x14\x9f\xe2\xcf\xe7\x06\x88\x17\x58\x2a\x44\x84\x39\xdc\x8f\xc6\x63\xa2\x65\x2c\xb0\x45\x1d\x69\x94\x43\xa2\x65\x98\xd0\x78\xdc\xbf\x89\xa1\xac\x73\x7c\xa5\x37\x0e\xff\xf0\x6c\x4b\xf1\xfa\x2f\xae\xc6\xad\x2b\x2a\x0d\xf8\x2b\x5f\xbb\xc1\xf8\x8c\xc5\x94\x96\x93\xdf\xde\xbb\xeb\x2b\xfb\xeb\x8e\xe7\x2f\x3c\xde\xfb\xce\x77\x7c\x03\x92\x7f\xff\x86\xf8\x0b\x62\x2b\x29\x40\x71\x34\x52\x38\x24\x18\x73\x35\xe3\x09\xf3\xfc\x74\x0f\xa4\x4d\xcc\x2d\x18\x47\x13\xea\xe9\x8d\x44\x2f\xd3\x4d\xae\x82\xd2\x2a\xcd\x49\x7f\x15\xec\xbe\x9a\xef\xad\x78\xe9\x40\x73\xea\x9c\x13\x0b\x32\x2b\x07\x8a\x62\x1d\xbd\x1b\x6a\xbe\xc7\xe2\x3f\xc4\x5f\x96\x6d\xf8\xe2\xca\x82\xc3\xbb\x17\x68\x8e\x85\x17\x36\x0f\xe4\x35\xac\x6d\xb6\x89\xb1\x12\x56\xe7\x69\xf2\xb4\x37\x49\x95\x22\x50\xb1\xbb\x00\x00\x14\x0c\x9a\x44\x0f\x33\x0a\x18\x24\xec\x5e\x82\xc0\x82\x41\x19\x3b\x02\xc1\x01\xcb\x88\x41\x52\x3e\x42\xf6\xf7\x86\x53\xf7\x59\x00\x36\x01\x81\x2b\xc9\x11\x55\xf4\x3f\xe0\xcf\x88\x5f\x84\x4d\xbf\x16\x6f\xba\x4e\xce\xf7\x7a\xe7\x9f\x74\x81\x8d\xf8\xed\x5a\xc7\x6e\xe3\x13\xff\xfc\xa7\x6f\x29\x79\xbd\x09\x40\xbc\x8d\x29\x9f\xed\xc3\xa4\x1e\x5b\x69\x2c\x0e\xf5\x3c\x4e\xad\x07\x19\x71\x8c\x94\x58\xaa\xcf\x7f\x5f\x0b\x0a\x8f\x22\xb5\xe8\x11\x9f\x86\x75\xbf\x13\x7f\xe7\x38\xd1\x7b\xf3\x66\xef\x89\x54\xe0\x88\x93\x59\xf4\xbd\x0b\xef\xbf\xfe\xba\x14\x73\xf0\xe1\x87\xf0\x1e\x02\x94\x46\xea\xf0\x28\x8d\xe7\xa3\xb8\xa0\x19\x77\x46\x65\x61\xcc\xf5\x48\x21\x68\x0a\x39\xa8\xe1\x4e\x6f\x3f\xf1\x23\xc9\x71\x0d\x27\x17\xdf\x10\x6f\x82\x38\x17\x0c\xdf\x14\x5f\x80\x65\x3f\xc3\xc7\x7d\xcb\x48\x24\xbc\x6f\x23\xde\xeb\x2b\xf5\xa9\xd9\x1c\xcc\x23\xcf\xfa\x22\x5f\xf0\x99\xcf\x8a\xfc\x8c\x67\xc9\x01\x2f\x2f\xee\xf5\x92\x67\x88\xdb\x3e\xfe\x89\xf8\x3c\x2c\xfd\x1d\x8d\xa2\x20\xac\x5d\x34\x8c\x82\x36\x51\x9a\xef\x64\x99\xf0\xe7\x58\x6e\x2f\x1a\x47\x81\x10\xd5\xd2\xe8\x53\xa0\x47\x22\x2a\x98\x14\x82\x2f\x3f\x45\x4a\x5b\xe4\x8f\x47\x00\x3b\xac\x86\x31\xf1\xc5\x1b\xe2\x21\xaf\x97\x8b\xc7\xf7\x9d\xf9\xe4\x37\x78\x9f\x4f\x72\x2f\x20\x96\x8c\x97\xbf\x9f\x2f\xf8\x94\xfb\x47\x7e\xfe\xfd\xad\xb0\x19\x3e\x16\x5f\xf5\x8a\xbb\xbd\x5e\x3c\x1f\x3e\x3c\x3b\xd6\x2f\x45\x3d\x48\xf7\x5f\x26\xfe\x98\xd5\x3f\x8e\x72\xc0\x93\x4f\x58\x30\x9a\x9c\xfd\x40\x10\xd8\xdc\x94\x28\x25\xf4\x3c\x7b\x4a\xa4\x3a\x52\xb2\xb4\x19\xb8\x89\xd5\x4a\xdc\x79\xfe\x07\x1a\xf1\x4f\x97\x5c\x1e\xc9\xcf\x1c\x3c\x3a\x80\x0b\x9a\x32\x34\x60\x28\x19\xa8\xf0\x8a\xbe\x1b\x78\x0d\x57\x86\x67\x9e\xf9\xe6\x8e\x1d\xef\x1d\xac\x3f\x5e\xb8\xe8\x78\xd7\x9c\x33\x4b\x0a\xb1\x6f\xee\x04\x27\xf5\x1a\xf1\x97\xfc\x66\x52\x31\x23\x45\xad\x93\x75\x8b\x6b\xe4\x14\x42\x88\xe3\x18\x5a\x35\x52\x66\x53\x30\x26\xc4\x1b\xe8\xe2\x8d\xd4\x27\xd0\xfd\x52\x42\x89\x87\x08\x6c\xe1\xa6\x73\x7e\xbe\x07\x5a\x9b\xf7\x55\xb3\x09\xf9\x32\x84\x25\x3a\x3d\x73\x8b\x33\xf3\x1b\x33\x22\x20\xb1\xa4\xcb\xa5\xf2\xfe\xda\x8b\x7b\xf0\x9e\xf2\xcd\xd7\x96\x59\x7a\x66\xf5\x34\xe4\x05\x1f\x0b\x2f\x6a\x1e\x70\xd5\x8d\xb6\xd8\xc5\x38\x39\xa6\x03\xa3\x85\xb7\x7f\xc6\xb7\x90\x73\xac\x13\xd5\x50\xac\x46\x7e\x76\x02\xc7\x73\x1c\x63\x68\x53\x82\xcc\x78\x12\xc7\x3a\x68\x1c\xdb\x96\x1a\x6d\x8f\x22\xb6\x1e\xd6\x4d\x82\xe5\x4e\x0b\x8f\x7e\xc2\x0d\x42\x09\x4e\x27\x5c\x27\x6a\x16\x6b\x4f\x0c\xfd\x2c\xaf\x8d\x7a\x9c\x5f\xac\xa5\xed\x58\x69\xe6\xb2\xa2\x95\x5f\xda\x5e\x95\xd1\xb5\xb9\x09\x2c\x79\x56\x4d\x72\xd3\xea\x7a\x75\x42\x58\xdf\xa0\xbd\x65\x75\x6d\xed\xea\x16\x3b\x78\xaa\x4d\x4d\xa9\x62\x79\x5d\x95\xd3\x15\x1a\x9f\x11\x9f\x90\x9e\x10\x6a\x00\x63\x7c\x4c\xdc\xf0\xd3\xbf\xdd\x03\xfa\xf5\xff\x77\x7f\xdf\x85\xf2\x95\xa7\xbb\xc4\x5f\xcf\xbf\xb6\xab\x91\xe7\xfb\xc6\xce\xc3\xcc\xf9\xcf\xed\x6d\x6a\xd8\x43\xd0\xce\x67\x0e\xfe\xb5\x7b\x46\x30\x86\xed\x5f\xa9\xac\x78\x6b\x0d\x2c\xa9\xda\xd8\xeb\x70\xf5\xad\xaf\x20\xed\x9f\x45\xec\x18\x07\xf8\x66\xe4\x40\x55\xb4\xfd\xb9\x59\xf1\x77\x69\x7f\xfc\x94\xf6\x47\xd9\x6c\xd3\xdb\x2f\x1d\x79\xb5\x13\x51\x8a\xa4\xf9\x93\x99\xa9\x15\x4a\xb9\xf5\xb9\x13\xec\x6a\x07\x7a\x2f\x54\xe5\xef\xaa\x5f\x71\x7d\x47\x4d\xf6\xac\x9d\x2d\xc9\x25\x29\xba\x94\xa6\x55\xb5\x19\xa9\x73\xe6\x93\x24\x70\x1e\xcf\xba\x56\x7b\x79\x49\xf3\xa0\x18\xda\xda\xe8\x70\x41\x98\x31\x3b\x31\x31\x2b\x21\x6c\x06\xc4\xc5\x26\x98\xfa\x2e\x7e\x67\x73\xc1\xd0\x17\x76\xd4\x5f\xc8\xea\x58\x5d\x5e\xd4\x77\x61\xb4\x62\x46\xf3\x77\xb7\x2f\xec\xbb\x7f\x75\x59\xcd\xc6\x87\x67\x2d\x5a\xf9\xa6\x47\x0b\x4f\x2c\x7a\x2c\x3f\xff\xc2\x9c\xa5\x34\x34\xcc\x56\x3b\x37\x9f\x72\x6d\x92\x58\xf0\x2f\x51\x9c\x10\xdd\x3f\xa8\x73\xa1\x4d\x4a\x53\xc0\x8f\xaf\x68\x65\x2f\x52\x92\xd3\x97\x7f\xd9\xb5\xb2\x96\x52\x46\x7b\x2a\x14\xb5\xa6\x89\xb8\x16\xa8\xa6\xb9\x27\xbc\x7f\xfa\x13\x2c\xf3\xde\x17\x7e\xd9\x57\x23\x44\x9e\x06\x38\x7d\x6b\xdb\x44\x58\x3d\x02\x94\x43\x62\x43\x0e\x30\x4c\xf9\xf4\xe7\x45\x4e\x7f\xde\xb8\xa9\xdb\x69\xbc\xe3\x59\xb1\xbf\xc1\x7b\x7e\x01\x5b\xbc\xdb\xc3\x1f\xf5\xd5\x71\x0f\x9f\x3e\x3d\xf6\x8f\x89\x48\x1a\x84\xf0\x78\xfc\x3e\x87\xe2\xd0\x2a\x77\x60\x2c\x08\x40\xc6\x50\x90\x09\xa0\xcc\x08\x78\x1a\x27\x42\x0d\x6e\x98\x43\x0b\xa9\x57\x18\x09\xdc\x3c\xa5\x44\x6c\x21\xfb\x2a\x93\xee\x2c\x86\x47\xee\x5a\xae\xc7\x1d\xca\xf3\x7c\x1c\x1f\x47\x73\x1e\xd1\x0a\xb3\x00\x35\xc7\xdd\x89\x00\xf0\xa3\x27\x4f\xc2\x8e\xe9\x64\x00\xe0\xc4\x2f\xc2\x2b\x9f\x41\x08\x80\xd1\x31\xd2\xa6\x54\xbe\x80\xe9\x7b\xa7\xdc\x81\x7a\x10\x40\x31\xa9\x4d\x89\xb4\xb2\x02\x2c\x9c\xd2\x24\x3a\x5d\x23\xe5\x16\x49\x9e\x14\x93\xdc\xac\xcf\x2a\xea\x36\x4f\x6f\xfc\xf4\x62\xc4\xfa\x10\x48\xf1\xc5\x7e\x81\x9c\x44\xdb\x7d\xb7\x90\x24\x7c\xf5\xd4\x29\xd8\x32\x35\x2c\xe9\x9b\xd8\x35\xf6\xef\xbb\xc6\x26\xfd\x9c\xb4\xb5\x5f\xe6\x5f\xe0\x80\x83\xc8\x3b\x38\x67\xd8\xa1\x5a\xe0\x31\xad\xc3\x14\xfe\x05\xaa\x33\xf8\x71\x84\x64\xaa\xc8\x3a\xe9\xcf\xbd\xc6\x32\xd6\xe3\x8b\x72\xc1\xdf\xe5\x35\x44\x71\x78\x78\x86\x46\xea\x6c\x31\x1f\xde\x91\x3a\xdb\x57\x4d\xfb\xda\x72\xfb\x77\xfc\xbd\xc4\xf7\x6e\x43\x39\xa8\xcd\xdd\x1c\xea\xef\x6b\xca\x59\x99\x04\x88\xe7\x89\x56\x41\x7a\x83\x27\x40\x02\x39\x7e\x23\xce\xc3\x60\x58\x32\xaf\x38\x15\x0e\xf6\x14\x40\xd9\x99\x29\x39\xf6\x9c\x04\x43\x54\xa4\x56\x33\x83\xa0\xa4\xc1\x46\xb1\xf9\x02\xed\x1e\xca\x96\xe6\x20\x09\xcb\x98\x5c\x08\x57\xdf\x99\xc8\x19\xfc\xa1\xf3\x0a\x2d\x97\xb2\xf9\x95\x9d\x15\x65\x83\x65\xc6\x93\x90\x53\x50\xbd\xf1\x72\xff\x87\x6f\xfb\x7a\xcd\xcd\x9b\xbb\x33\x1a\xcb\x9c\xba\x8c\x50\x67\xc3\xb0\xb8\x1e\xfe\xa8\x75\x74\x55\x6c\x3b\xa8\xeb\x7e\xe0\xa3\xed\x47\x67\x94\xf6\x6f\xf5\xb4\xaf\x8f\x3a\xfa\xab\x87\xba\xc4\x0f\xc5\x9f\xbd\x78\x4f\xef\xc5\x75\xd5\x61\xd1\x86\x90\x7b\x66\x98\xe2\x75\x5c\xf7\x48\xd3\xbd\xc3\x45\x7f\xff\x15\x62\x6d\xa5\xf6\x6b\xbe\x09\x59\x50\x36\xea\x70\xb7\x05\xd3\x18\x2a\xe0\x14\x46\xd2\xd6\x44\xd6\x56\x04\x82\x82\xb4\x9f\xc6\x21\x70\xbc\x82\x1b\xa4\x38\x7e\x39\x4e\x67\x52\x73\x93\xad\x80\xd2\x52\xad\xd9\xc9\xd9\x34\x95\xb5\x46\x1d\x18\x80\x2c\x60\x99\x68\xae\xc5\xc2\x9a\x2b\x07\xb5\x30\x10\xa8\x6b\x3c\x69\x35\x6b\x2f\x16\x97\x5f\xdd\x58\xbe\x7d\xdb\x09\x70\x15\x86\xb6\xac\xb9\xaf\x65\xc9\xc5\x85\x0e\x5f\x2f\x67\xa9\x5d\x54\x35\xef\x40\x66\x7d\x64\x45\xcf\xc8\x50\x76\xbb\x3b\x35\x00\x7e\x1d\x5b\xd0\x13\x41\x33\x44\x81\xfe\xd9\xc3\x8d\x4b\xb4\x83\x0f\x8f\xba\xeb\x76\x3c\xb3\x68\x7d\xc3\x9e\x79\x05\xa5\xe9\x9b\x49\x9a\xa8\x48\xee\x3d\x9a\x26\x2a\xd2\x35\xaf\x31\x1d\x01\x7a\x57\xfc\x1e\x7f\x90\xcc\x29\x03\x4a\x26\x2b\x5b\x40\x98\x13\xf0\x10\x02\x06\xe5\x56\xf8\xd9\x51\x64\x05\x23\x59\x1d\x45\xe6\xf3\xd4\x9d\xdf\x34\x1e\x77\x8a\xdf\x5b\xfa\xf8\xaa\xa2\xe2\xb5\x57\x57\xe3\x96\x65\x95\x71\x90\xde\x77\x60\xf6\x4f\xbc\xde\xc3\x70\xfe\x23\xce\x19\x3a\xfb\xd8\x5b\xeb\x76\xbd\x77\xa0\xee\x58\xc1\xa2\x63\xbd\x43\xe7\x16\xe7\xf9\x86\x85\x6b\x14\x90\x28\xe5\x2a\x13\x45\xbe\x88\xc5\x48\xd0\x5c\x5f\x81\x18\x6a\xfc\xe1\xae\x43\x3c\x4c\x9c\x41\xd8\x9e\x4f\x63\xa7\x23\x04\x45\x04\xad\xc8\x34\x6d\x5d\xaa\xc8\xd5\xce\x23\xc3\xf9\x29\xdd\x07\x06\xb3\x4a\xbb\xf2\xa2\xb2\xbb\xd6\xd5\xbc\xe3\xf5\xae\x83\xf5\x3f\xc1\xf3\x42\x2a\x97\x9d\x1a\xc8\xbb\x67\xcb\xdc\xf0\x63\x61\x79\x75\x7d\x8c\xfd\x54\x8e\x8e\xa5\xe7\x20\xd1\xc3\x47\xb1\xf3\x0b\x45\xe9\x01\x27\x04\x4b\x6b\x0c\x21\x5e\x20\x9a\x17\x91\x71\x74\x0f\x98\x1a\x38\x83\x10\xb9\x20\x46\xad\xa1\x44\x08\x4c\xd4\x31\xb1\x7c\x67\xfe\x52\xa6\x1e\xc1\x0a\xf8\xab\x37\x85\xa4\x2f\x8d\xcb\x99\x48\x5f\x1a\xea\x25\x1d\xb1\x14\x9f\x98\x92\xbf\x14\xff\xc8\xb7\x89\xd4\x04\xd0\xb3\xa4\x4e\x3a\xbe\xe0\x33\xeb\x14\xf9\xff\xa3\x4e\x4b\x49\x9d\x52\xdb\xd6\x37\x18\x9c\xa4\x4e\xb1\x71\xd1\xca\xf2\x1a\x52\x27\x29\x2e\xf6\xd6\xb2\x99\x3b\x7a\xe4\x3a\x2d\xee\xc5\x56\xa6\x3a\x62\xd4\x4b\xf4\x82\x2e\x82\x25\x49\x44\xe9\x34\x47\x9a\x01\x38\x14\x77\xf7\x1c\x69\x71\x1e\x25\x4c\x90\x1b\x98\x4d\x34\x34\xc7\x94\x6e\x4e\x8f\xd2\xb3\x1c\x69\x89\x90\xa8\x52\x4c\xcf\x91\x26\xab\x00\x53\xd2\xa4\x95\xec\x7c\xf7\xde\xea\xe6\x03\x2f\xad\xd8\xfa\xe2\xd6\x52\xae\xd2\xda\xb1\x77\x8e\xb3\xa7\xbe\x38\x2a\x43\x5d\xd8\xb5\xaa\x8f\x24\x6c\x4f\x05\xdf\xa8\xd1\xb3\x41\x78\xb3\xff\xf1\x5f\xdf\xf3\xbd\x83\x7f\x7a\x7a\x10\x3a\x2f\xfe\x64\xff\xa3\xb3\xe7\x3e\xbd\xab\x21\x2c\x2a\x9e\xae\xf5\x04\xdd\x27\x2f\x37\xef\x7d\x76\xa8\x77\xe6\xb1\x65\xa5\x08\xd0\x09\xd2\x96\x36\x86\x83\x2d\x72\xe7\xf3\x80\xc0\x4c\x2d\xba\xf5\xe3\x91\x78\x98\x82\x34\x15\x43\x72\x2e\x14\xdd\xe4\x40\x3c\x8b\x39\x22\x39\x5c\x56\xbc\x9d\x46\x4a\xf4\x3c\xdd\xe5\x4c\x81\x8f\x4e\xae\xde\xb7\x86\x9b\x0f\xe2\xfc\xa5\x4f\x8e\x96\x90\x14\xeb\x8b\xbb\x9e\xd8\xdd\xea\x4d\xa9\x5f\x54\x5a\xb3\xb2\x29\xe5\xb1\x8b\x47\xc8\x31\x66\xad\x18\xa1\x70\xaf\xb8\x38\x6f\xf8\xc2\xf2\xfc\xec\x85\x97\x56\xe4\x0f\x79\xec\xb6\xda\x79\x85\xf7\x1f\x3e\x4d\x63\xa8\xc5\x51\xbe\x96\x61\x31\x17\xb9\x83\x58\x3d\x05\x2c\x20\xba\xd5\x65\xd2\xed\xdb\xbf\x15\x8d\x30\x1d\x9e\x5f\x2e\x57\x77\x22\xda\x33\x9a\xee\x60\xc6\xa9\xc5\x78\x0a\x98\xe8\x1f\x2f\xcd\x78\xd5\x49\xab\xec\x2c\x4a\xf7\x73\x1b\x95\xea\xbb\x87\x36\x6a\xd5\xa2\xcb\xab\x8a\xea\x76\x3d\xb7\xb8\xeb\xf1\xdd\x6d\x37\x6d\x9e\x85\xa5\xb5\xa4\x51\x57\x2e\x1e\x22\x07\xa6\xb5\xa2\x5a\x55\xb6\xe2\xfe\xb9\xf3\xa5\x46\x2d\xcf\x1b\xa2\x24\x4f\x43\x85\x0f\x1c\xa2\x69\x43\x6e\xdf\x46\xe5\x64\x7e\x93\x99\x8e\x2d\xe8\x69\x0f\x42\x56\x78\xef\x76\x30\x2a\x05\x25\x7c\xfd\x36\x35\x4e\xa8\xbe\x08\x70\xad\xf4\x9a\xc3\xce\xca\xae\x11\x3d\xf4\x8c\x40\xca\xfe\xa6\x4d\x2a\x5b\x7a\x7b\x1e\x2b\x5b\x49\xca\x06\x90\xb2\x37\x6e\xcf\x63\x85\x31\xcb\xa1\x92\xe9\xe7\x90\xc9\x74\xa7\x31\x03\x15\x8f\xfd\x1b\x25\x15\x6e\x13\x41\x9e\x08\xd1\x30\xcf\xf0\x30\x52\x36\xd8\xa8\x56\x52\x73\x00\x85\xa5\xca\x29\xf4\xc9\xda\x91\xd9\xb1\xb9\x75\x5e\x31\x72\x54\xe2\x92\x19\x85\x0c\xf1\x1b\x4d\xab\x28\x95\xcc\xaa\x26\x6e\x19\xae\xf8\xa4\xa5\x7c\xed\xc3\x03\x83\x84\x4e\xc6\x97\x82\x4b\xd3\x1b\x87\xf3\xf2\x17\xb7\x65\xd1\xba\x34\x92\xba\x1c\x22\x75\x49\x40\x69\x68\x58\xf2\x7c\xc4\xf2\x00\x64\x20\x40\x90\x48\x6d\x54\x94\x7e\x15\xcd\x52\xb2\x03\x38\xa5\xbe\x93\x33\x7f\xa3\x4f\x2f\x45\x52\x73\x18\x8d\x80\x8c\x69\xc6\x54\x73\x62\xa4\x3e\x2c\x84\x78\x7b\x02\x50\x02\xc4\xd3\x0d\x66\xbc\xf6\x74\xf7\xa7\xfc\x12\x84\x69\x99\xec\x35\x4a\xa2\x7f\x91\xd3\x9a\xdc\x1e\xf8\x60\xce\xd1\xb9\xd9\xd9\x73\x8f\xce\x59\xe5\xcd\xb2\x15\xa7\xe8\x00\x27\xc4\x3d\x1b\x93\x8c\x71\x7e\xff\xb6\x9a\xdf\xad\x72\x35\x12\xbe\x9e\xcc\x46\x57\xc5\xba\x87\xfa\xfb\x2f\xad\x76\x93\x46\xfe\x0a\x20\xa3\x73\x5d\x6d\xdf\x5b\x7d\x7d\xaf\x0e\xac\x7d\x66\x7d\xd1\x69\xd2\xd6\xa6\xe1\xdc\xbc\xc5\x6d\xd9\xb4\xad\xf3\x6f\xff\x86\x3f\xa1\x88\x44\x76\xe4\xa6\x28\x33\x15\x28\x50\x71\x2a\xc6\x9c\x09\x78\x3c\x9e\x49\x5f\x81\x15\x1c\x1e\x91\x69\x16\xa9\xfb\x1c\x63\x7e\x96\xdf\xa1\x69\xb3\x9a\xac\xfa\x24\xcd\x24\x8c\x94\x4e\x4f\x1a\xa1\x20\xf5\x95\xda\x91\x2b\xb5\x43\x21\x9f\x2d\x64\xfe\x72\xd6\x24\x1d\x3d\x59\x59\xe7\x5b\x3c\xab\x3c\x39\xed\x46\x2f\x04\x45\x92\x20\x9e\x6c\xa3\x1a\x70\x7c\xdc\x33\xb1\xa4\x65\xd9\x9d\x6b\x2a\x1e\xaf\x48\x5a\x54\x53\x3f\xd2\x60\x81\x8f\x74\x45\xb6\xf4\x52\x46\x39\x93\x96\xee\xd6\x73\x3c\x60\xf7\x8a\x57\x0f\xb7\x5a\x4c\x58\x73\x2b\xd6\x5c\x96\x19\x07\x45\x8b\xef\xeb\x9a\xf7\xde\x3c\x98\xfb\xde\x82\xbd\x5f\x3d\x58\xcb\xed\x2d\xad\xac\xdd\xfa\xe4\x5c\xb8\x62\x4c\x2e\x5e\xb0\xa7\x76\x57\xc9\x8a\xce\x6c\xc8\x4c\x8e\x48\xd1\x33\x6e\x85\xdb\xbf\xe5\xf7\x93\xb1\x2e\xa0\xf2\x3a\x86\x71\xec\x32\x5e\x5a\x01\xe8\x58\x22\x1e\x10\x1d\x4b\xae\x4f\xa6\xd2\x93\x49\x83\xf2\x5c\x19\xe9\xc4\x95\x60\x31\x9a\x95\xd4\xce\x26\xe1\x62\xa9\x98\x96\x5f\xc9\x1c\x28\x52\x33\xef\x18\x51\x85\xc5\x0a\xff\x8e\x21\x26\xf0\x3d\x6d\x3b\xd6\xc5\x15\x74\x15\xfe\xf4\xa7\x73\xcf\x2f\xcd\x9f\xd7\x97\x55\x95\xaa\x09\x89\xb5\xc5\xd8\xcb\x52\xf5\x18\xc8\xd0\x46\xa7\x60\x5c\x30\xb8\xab\xfe\xde\x33\x0a\x58\x55\x30\xb7\xda\x7a\x66\xcf\xb6\xc2\xfe\x0a\xf3\x19\xd7\x82\x73\xf3\x56\x3d\x99\xa9\xad\xe8\x5e\x5c\xb8\x28\x36\x3b\x49\x07\x85\x8b\x8f\x91\x66\xcf\x27\xad\xde\xf7\xfe\x81\x1a\x7c\xe0\xb4\x64\x33\x68\xb9\xfd\x73\x7e\x0b\x91\x43\x0e\x8a\x08\xcf\x90\x78\x5d\x40\xe0\x05\x60\x9e\x4f\x0e\x49\xf4\x2e\xac\x55\x44\xf8\x4c\x04\x65\x1a\xcd\xc6\x24\xab\x3e\x91\xe9\xc4\x12\x53\xea\x9d\x0d\xa0\x24\xf3\x26\xab\xcc\xe8\x62\x9d\x44\xeb\xa1\xc5\xdf\xb7\x38\x13\x1d\xa6\x70\xc0\x46\xc3\x73\xd1\x76\x8c\x9d\x5d\xa3\xe5\x7b\xef\x51\xc0\x92\xa1\x2f\xe0\x93\x1b\x47\xd6\x6c\xfc\xb1\xe2\x97\xf3\x2e\x2c\xcb\x1f\xec\x1b\x6e\xff\xd0\x9a\x65\x6f\x5c\x5a\xde\xf4\x70\x53\xd3\xa5\xd6\xe5\x8f\x8e\xe4\x73\xab\x76\x78\xea\x9b\xe0\x54\x97\xa7\x79\xe8\x14\xdd\xe9\xda\x57\x98\x63\xb7\x76\x34\x22\x4c\xf6\xd6\xcb\x54\xf6\x53\x1c\x2c\x72\xbb\x8b\xb5\xc0\x23\x03\x3b\x3f\x64\x67\x51\xbb\x21\x52\x00\xdd\x63\x27\x83\xc3\x05\x61\x82\xc6\x25\xd7\x45\x2e\x24\xc9\xac\xc8\x98\xb1\xe0\x5e\x79\xb4\x64\xe4\xb3\x3c\x5a\x3a\x3d\xf5\x51\x4b\xd0\x23\x60\x2a\x0b\x03\x6f\x40\xd8\xc3\x4f\x9c\x37\x7b\x56\x37\x89\x7f\x80\x88\x35\x5f\xda\x52\xbe\x6e\xa4\xa4\xd3\x15\x65\xb0\xbe\xa2\x8f\x9a\xc1\x59\xaa\x06\x8b\xf0\x02\x3d\xb1\x61\xad\xce\x4c\xfe\x32\xde\x70\x66\xc7\xce\xa2\x41\x32\x4e\xce\x85\xe7\x87\x57\x3f\x92\x15\x51\xde\xbd\xb4\xf8\x9e\xd2\x65\x96\x28\x6d\x59\x55\xa9\x66\x77\xd1\xdc\xaa\x24\xdf\x63\x19\x0b\xe6\xcf\x32\x97\x56\x5f\xe8\x78\x56\x3a\xf3\x7d\x5d\x3c\xc6\x78\x78\x6c\xc8\x49\x47\x4b\xc3\xb2\xfc\x65\x66\x10\xdd\x5b\xe0\x6b\x18\x5f\x24\x42\x82\x9f\x82\x48\x06\x79\x03\x69\x99\x33\x87\x5c\x92\x4c\x46\x4c\x31\xd1\x2e\x8b\x89\xa4\x82\xbb\x73\x12\xca\xed\xb2\x58\x27\x37\x2b\xea\x5b\x9b\xd7\x8c\x6e\x12\x7f\x0e\x10\x3b\xef\xc2\xf2\x82\xb9\x73\x72\xea\xd2\xb5\x42\xb0\x3e\xfc\x95\x08\x5d\x20\x5e\x3e\x1f\x5b\xe4\x56\x81\xf7\x54\x67\x53\xcb\xe0\x29\x7b\xdb\xba\xc6\xf6\xd5\xa6\xd0\xec\xf2\xd6\xf4\xc1\xf0\x94\x14\x4b\xb0\x26\x24\xd3\x91\x11\xdc\xdf\xd6\x0b\x62\xfb\x1d\x8d\x02\x14\x41\xd6\xd7\x65\x36\x66\x73\x24\x49\x1a\x4f\x15\x57\x24\xe0\x91\x09\x86\x4a\x1e\x26\x68\x85\x68\xb4\xf9\xf4\x12\x72\xb6\x47\xfd\xe4\x25\x48\x4e\x6e\x44\xf0\x68\x8d\x49\x7e\x83\xa0\x46\x66\x46\xa5\x3b\x1e\xcd\xe1\x31\x4d\x02\x59\xac\x78\xe8\x3d\x30\xcd\xbc\x77\x7e\xa2\x3e\xa7\x3a\x85\xcc\xd0\x7c\x50\xa9\x63\x35\x89\x59\xc6\x30\x00\x6d\xc4\xb3\x11\x71\x54\xe0\xac\x2e\xdf\xb8\x8b\xd8\xaf\x7c\xbf\xb9\x21\xfe\xec\xcd\xe1\xd3\x4d\xe7\x7f\x7d\x16\x5f\xbb\xd5\x1f\xe3\xb0\x46\x12\xe9\x72\xac\x73\x92\x74\xc1\x47\x4f\x49\xeb\x2c\x83\xb4\x73\x0f\x5f\x40\xda\xb9\x42\x6a\x67\x0a\x02\x8e\x6e\x05\x14\x80\xa0\xe8\x51\x4a\x51\x69\x82\xe0\x8f\xaa\xa7\x4b\x6d\x52\x80\x7d\xf2\xdd\x0b\x33\x14\x9d\x7e\xf2\xb2\x24\x47\x75\x84\xc8\x43\xec\xc6\x24\x0d\x69\xbc\xa4\x2b\xde\x4d\xc0\x4c\x09\x3a\xc6\x9f\x04\x84\xc7\x68\x88\xc9\x45\x2d\x6f\x19\xb4\x9d\x15\x1b\x76\x0b\x6f\xc5\x55\xae\x6a\xb7\x70\x7a\x73\x66\x4c\x10\x09\x61\xfd\x75\x42\x7e\x6a\x34\xe4\xcc\xd9\xd1\xd4\xff\xea\x9c\xd9\xaf\x0c\x6e\x7e\x71\x7b\x19\x3e\x73\x09\x6f\x17\xdf\x3f\xf6\xeb\x4b\x1d\x97\xa1\x70\xf5\x93\x23\xf0\x55\xd6\xe6\x15\xa4\xcd\x27\x59\x9c\xcc\x42\xa9\xcd\xa6\xc9\x07\x2d\x44\x0f\x5a\x4a\x66\x38\xa7\x0d\x98\x35\xc1\x26\xf0\x69\xa5\xe4\xb6\xce\x92\xdb\x1a\x26\xb1\xae\x93\xe3\x0c\x6d\xac\x44\xb1\x71\xb7\x51\x1d\xa7\x8b\xe1\x66\xa8\x48\x33\x89\x59\x89\x36\x33\xf6\x19\x2a\x3e\xb3\x3b\x48\x33\x77\x09\xe2\x87\x5e\x2f\xd8\x49\x5c\xec\x6e\xb3\x3b\x8b\x6c\x12\x4b\xee\x93\x87\x71\xcf\xfb\x64\x18\x1f\x7c\x12\x5a\x7d\x9b\x24\xd5\x5e\xca\x25\x44\xda\xb6\x95\xc5\x2d\x0d\x4a\x6d\x4b\x44\x0a\xcc\x61\x05\xd5\xc5\x10\x12\x38\x34\x38\x89\x0f\x43\x29\x4f\x5d\xcb\xa7\x14\x22\x5f\xd3\x92\xca\x59\x48\xa9\x34\x28\x29\xb2\x98\xb4\x67\xc2\x3a\x24\x57\xdf\x71\xd7\xa1\xc4\x85\xe2\xdf\x49\xe5\x83\xbd\x81\xfa\x44\x7d\x5c\x6a\x6c\x28\x80\x2e\xe2\x19\xaa\x61\x67\xb4\x2e\x2b\xdd\x71\x48\x90\x28\x83\x28\xb5\xd3\xa7\x0d\x9f\x34\x47\x0f\x13\xdd\x79\x94\xd8\x47\xd3\xa8\xee\x1c\x02\x18\x42\x81\xc7\x54\x77\xc6\x94\xe6\x6b\x44\x5e\x64\x71\x12\xb1\x90\x20\x1d\x8a\x01\x99\x4d\x86\x58\x0d\x55\xff\xd3\x20\x4d\x21\x1f\x86\xa7\x25\x85\xa7\x35\x77\xb9\x58\xcd\x0d\x1c\xa9\x39\x3e\x31\xfa\xca\x3d\xf5\xf5\xf7\xbc\x32\x3a\xf2\x74\x45\x61\xd9\x91\xce\xe6\xcd\x1d\x69\x69\x1d\x24\x34\xe6\x34\x87\xe3\xf4\xcf\x06\x46\xa8\x03\x01\x37\xed\xfa\x82\xb6\xff\xd1\x9f\xed\x02\xc5\xae\x9f\x3e\xd6\x9f\x9a\xba\xdb\x68\xaa\xdf\xf6\xc4\x1c\xf1\x3f\xfd\x4f\x6e\xaf\xc7\x0f\xdc\xd3\x7b\xbd\x37\xb5\xb7\xaf\x2f\x6d\xe4\xf1\x15\xb9\x52\x4e\x79\xd2\x86\x16\xbe\x09\xd9\x69\x1b\xe2\x80\xe7\x0c\x00\x2c\x13\x39\x4f\xf7\xea\x91\x09\x17\xa0\x70\x07\xc3\x40\x62\x42\x4c\x54\x58\x88\x52\x81\xec\x60\xa7\x6d\x48\x22\x55\xcd\x61\x9d\xac\x95\xa3\x59\xa7\x34\x88\x1d\x61\x9e\xdb\xb0\x10\x2b\x42\x9e\x09\x0a\xc3\xee\xe5\x27\xbb\xb6\xbf\xbd\xaf\xa6\x72\xe7\xcb\x9b\x96\x5c\x74\xa6\xba\x0e\xb6\x76\x6e\x6c\x49\x4a\x6e\xdf\xb5\x13\xe6\xf6\x3a\x57\xb8\x5c\xcb\x5d\x5d\xdb\xdb\x6d\x3d\x8c\x7c\xe3\x8d\x13\x3d\x89\x09\x47\x63\x0d\x2c\xe1\x05\x85\xfb\xb0\xba\x37\x10\x9b\x0c\x5d\x2f\x46\x9a\x27\xd0\xbf\xfb\x8e\x60\x18\x3f\xaa\xc8\xec\x84\x04\x2d\x4b\xa7\xc7\x84\x52\xaf\x35\xde\x65\xda\x53\x0a\xc2\xeb\xe2\x69\xee\x71\x71\xa3\xc6\x92\x67\x76\x36\x3b\x63\x30\x36\x92\xb5\x9d\xc2\xe1\xd2\xa5\x47\xdb\x08\xd4\x3c\x83\x27\xe7\x94\x33\x63\x65\x69\xcd\x05\x46\x28\x5c\x74\xac\x9b\x4e\x79\xbf\x86\x00\xf6\xde\x03\xfd\xd2\xbc\xa8\x23\x73\x7d\x31\x5f\xf0\x29\xf5\x8a\x9c\x5c\x2f\xdb\xa7\xd7\x8b\x0c\xbb\xac\xdc\x9c\x23\xe1\x83\x7b\xc4\xbd\x1a\x6b\x5e\x52\x66\x6d\x76\x14\xad\xd6\x33\xc1\x51\x9a\x20\xc0\x24\x75\x46\xd3\xf9\xa7\x55\x84\x42\xe9\x94\xef\x7a\x7a\x13\xa9\x96\xbd\x69\x69\x79\xf3\xe3\x4d\xd6\xd6\xb6\x36\xdb\xf2\xc7\x56\xe6\xe3\x2f\xbe\x42\xeb\xb4\x94\xd8\x74\x56\x90\xb9\x5a\xf2\xff\x90\xbf\x2c\x6e\x72\xe4\x2e\x20\x12\x07\x96\x95\x96\x9a\x6c\xd1\x45\x84\x85\x06\x05\xd0\x58\x30\x99\x75\x65\x22\x94\x59\x3e\x29\x59\x5c\xb9\xe9\xdc\x54\x8c\x9a\x9c\xc0\x6c\xb4\x79\x4b\x67\x5a\x56\xef\x8e\xd6\xca\x91\xd6\x34\xf0\x76\x1e\xb8\xd6\xb7\xfa\x8d\x23\xad\xb0\x6f\x73\x6e\x77\xb1\xb1\x7e\xdf\x4b\xab\xfb\x9f\xda\xd1\xe0\x85\xb4\xc6\x85\x45\x6d\x9b\x5a\x6d\x96\xc6\xb5\x2d\x5f\xc2\xe7\xe2\xcb\x86\xaa\x8a\xe6\xd5\x26\xdb\xeb\xe7\xe5\xaf\xb8\xb4\x30\x8b\xf8\x91\x17\x6c\xbf\x92\xa2\x2f\x6f\x9d\xe3\x18\x3e\xbf\xc8\x99\xb7\xf0\xe4\x6c\xd7\xac\x72\x4b\x72\xf5\x9c\xdc\xbc\xbe\x32\xf3\x19\x7a\x66\xaa\xc3\x07\xf8\x7b\xb8\x44\x54\x03\xf7\xdc\x5e\x8e\xd0\x4c\x87\x5b\x3a\x77\x35\x91\xcf\x0f\xf9\x3f\x5f\x3d\xe9\xf3\x47\xc5\xc5\x7c\x21\x42\xd8\x8a\xca\x50\xd0\x6d\x00\x05\x2a\x0b\xa2\x67\x2b\x44\xce\x56\xc0\xce\x56\x00\x7f\xe0\x43\xf1\x6d\x45\x1c\x8d\xdd\x75\x07\x2b\x04\x29\x43\xf5\xa2\x68\x50\x69\x19\xf8\x85\xe6\xc6\x21\xa8\x27\xf8\x03\xdd\xe8\xe7\x67\x64\x5c\xe7\x1f\xcc\x58\x48\x36\xf1\xda\x9a\x13\x9d\x27\xe9\xf5\xef\xf3\x4a\xfc\x13\x85\x6e\xe2\xfa\x9a\xf1\xeb\x27\x69\x12\xf8\x27\xf2\xf5\xc2\xae\xf1\xeb\x4f\xd1\xeb\x5f\x14\xbf\x81\xbf\x89\x7e\x7a\xb7\xeb\x93\x26\x5d\xff\x4d\x7a\xfd\xa2\x8c\x0c\x6f\x43\xc6\x82\x79\xb3\xcd\x75\xd5\x27\x3a\x4f\xd3\x36\xc2\x07\xe4\xf9\x3f\x27\xcf\xaf\x81\x85\xfc\x55\x84\x5e\x45\x52\xdb\xa1\x8e\x0f\xe5\x1e\x54\xc4\x61\x2b\x2c\xb8\x3d\x9b\x42\xc8\x60\x01\x7a\x08\x49\xdf\xa5\xf1\x4a\xee\xa0\x42\x47\xbe\x5b\x78\x7b\x80\x7d\xb7\x10\x3d\x85\xe8\x0f\x86\x0c\xf1\x03\x6e\x21\xfa\x31\xa9\x8f\x1e\x45\xb8\x09\x30\x49\x21\xf0\xe4\xe6\x40\x2a\x15\x13\x8d\x55\xba\xc9\xb5\x12\x26\x55\xb0\x5a\xae\x20\x24\xca\xaf\x3c\x19\x0b\xe5\xaa\x9e\x98\x78\x89\x00\xad\x43\x88\xef\x98\xe0\xf4\xe5\x8b\x18\xcb\x8c\xe4\xcf\x2c\xa5\xf3\xb4\x78\x3c\x93\xac\x2a\x7a\x9c\x67\x8c\xee\x02\x7c\x87\xb8\xc4\x2b\x8e\xc0\x51\x2f\x9c\xe4\x1e\x64\xc9\x87\x60\xad\xb8\x1f\x01\xda\x40\xf0\x12\x9d\xd4\xd7\x41\xf3\x81\x90\x49\x5f\xc4\x00\xd1\x42\x0f\x45\x33\x97\x7a\x02\xc8\x9d\xa5\x14\xdb\xc5\x1e\x29\x31\xf6\xa4\x50\xe4\x40\x55\x9c\xdd\x28\x3f\xc4\xff\x20\x2d\x79\xc5\x77\x8a\x8b\xbc\xe2\x6a\x38\x44\x7f\xbd\x70\x5a\x5c\x44\x7e\x07\xe0\xd2\x69\x2e\x90\x3d\xf5\xec\xd8\xbf\x98\x8c\x80\x73\x58\xcf\x65\x71\x3f\x40\xda\xbb\xe5\x71\xb6\x99\x69\xaf\x4d\xc7\xf1\xc3\xb9\xb8\x1c\x4f\x46\x46\x83\x33\x36\xd6\x49\xfe\x7a\x9c\x71\x9c\xce\x5e\x97\x63\x30\xe4\xd4\xd9\x0b\xec\xb5\xce\xb8\x38\x67\xad\x5d\x1a\xaf\x59\x84\x47\xa1\x00\x94\x64\x1e\x87\xdd\x5e\xca\xe0\x80\x61\x60\xf1\x8f\x65\xc0\xed\x3f\x0a\x16\xff\x77\x51\xe4\x23\xf2\x17\xdd\x2f\x95\xc1\xe1\x6c\x4c\x15\xc8\x45\xf6\x85\x4b\x44\x5e\x18\x51\x2e\x2a\x44\xad\x68\x01\xda\x42\x25\x47\x61\x01\x0e\x0c\xca\x57\x61\x25\x8a\x02\xac\xe0\xea\x51\x20\x12\x50\xa0\x30\x04\x80\x28\xd3\x0e\x52\xd2\x58\x5e\x26\x3c\x2a\x59\x56\x09\x09\x62\x52\x85\x1b\x36\xac\x5b\xbe\x74\x68\xd0\x66\x4b\xb3\xd9\xcc\x36\xb3\x79\x86\x2a\x4e\xce\x06\x29\xc3\x45\xa6\xa4\x99\x98\xde\x7a\x8d\x15\xf4\xdc\xb4\x48\x06\x61\xda\x27\x30\xfd\x93\xce\xf8\x92\xbe\xa2\x82\xee\xf8\xf8\xae\x82\xe2\xbe\x92\xf8\xf8\x62\xf2\xae\x87\xbc\xcb\x2f\x9e\x55\x12\x2f\xfe\x84\x7e\x4b\x3f\x4f\x28\xee\x2d\x2a\x9a\x55\x92\xb0\xa1\x92\x0b\xab\xdc\x1a\x14\x6d\x33\xc4\x25\x47\x06\x05\x45\xd9\xe2\x0c\xc9\x51\x41\xe2\x25\xf2\xca\xff\x49\x32\xf9\x4b\x3e\xf9\x49\x50\x74\xb2\x21\x96\xbc\x92\x3f\x81\x8c\xbc\xf9\x8d\xe9\x29\x26\x53\x0a\x09\x60\xc9\x4b\xcd\x1b\x6e\x4c\xb3\x99\x4c\xb6\x34\x62\x0d\xe1\x9e\xc8\x63\x71\x2d\xc3\xe4\xe3\xf9\x0d\xe9\xe9\x0d\xf3\xf3\x7c\xa5\xed\x78\x47\xfb\xd8\x1b\x86\x82\xb4\x98\x98\xb4\x02\x43\xaa\x21\x3f\x2d\x36\x36\x2d\x9f\xbc\x98\xfa\x09\xd7\x4a\x5e\x91\x8f\xf2\x27\x3e\x62\xf3\xe8\x20\x3a\xcb\xb9\xb9\xeb\x48\x41\x79\x17\x39\xf0\xa3\x5c\x11\x74\x20\x09\x67\x05\xa8\x51\xa3\x66\xb3\x09\x4c\xe0\x04\x07\x2e\x01\x7c\x48\xfc\x2e\x58\x0f\x61\x0b\x99\xa3\xbb\x35\xb0\xc7\x7f\x9f\x33\xd2\x7d\x68\xce\x1e\x01\x58\xa4\x33\x06\x76\x27\x0c\xe3\xb7\x62\x53\x43\xa1\xe1\xa8\xa4\x02\x2d\xb9\x23\xe0\x68\xb0\x88\xdf\x3b\x0c\x58\x14\xb9\xeb\xe2\x26\x8d\xb8\x09\x0e\xc3\x11\x69\x8e\xdb\xd1\x87\xdc\x05\xfe\x1b\x54\x29\x7d\x16\x23\xc8\xb4\x27\x91\x11\x84\xfb\x57\x62\x58\xf5\x61\x39\x77\xb3\x9c\xca\x8e\x50\x9c\xc7\x47\x12\xbf\x4a\x20\x0a\xa1\x1e\xc0\x60\x40\xbc\x0a\x00\xe1\x7a\x01\x64\xe8\x3b\xc2\x98\x01\x57\x8a\x30\x25\x91\x94\x57\x38\xf1\x35\x52\x78\xb7\x15\x1c\x40\x8c\x56\xdc\x8e\xd3\xa7\x1f\x16\x73\x38\xf8\xf2\x13\x62\x05\x44\xeb\xb8\x15\x5b\xbd\xde\x39\x78\x8d\xef\x29\xb8\x27\x95\xd6\xc5\x83\x0f\x70\x5f\x16\x6e\x22\x2d\x5a\x22\x65\x5f\x08\xa4\x37\x0f\x67\xd4\xe4\x31\xec\x0d\x2f\xbd\xe9\x91\xbe\x8e\x9e\x48\x1d\x59\xc4\x48\xfc\xe4\x37\x54\x2d\xd5\xb3\x2f\x91\xfc\x95\xc4\x1f\x59\x34\x35\x73\xa4\xea\xd3\x32\x47\x7e\x35\xce\xbc\xa2\xbe\xa8\xbf\xd2\xfc\x64\x63\x45\xa1\x27\xe2\x49\xe1\xca\x26\x77\x1d\x98\x3d\x6b\x5a\x44\x1e\x7e\xb0\xb8\xa7\x28\xcb\xf7\x35\x2e\x81\xf5\x21\x8b\xf7\x5f\x4b\x6c\xcd\x0e\xe4\x71\xd7\xca\xb4\x1b\x41\xa0\x9c\x01\x94\x9b\x64\x30\x18\x04\x5e\xa2\x35\x95\x39\x37\x2a\x59\x95\x18\x7a\xa9\x18\x37\x38\xb2\xb3\x32\x33\xd2\x89\x49\x29\x91\xaa\xc7\x3a\xc2\xb9\x11\x16\xa2\x62\xe0\x78\x72\x8e\x35\x12\x1f\x0b\x51\x36\x9c\x56\x72\xc6\x63\xbf\xd3\xb0\x93\x7a\x22\xd4\xf4\x46\x2e\x51\xbc\xc2\xc5\xc5\xe3\x9f\xc1\xad\x4f\x3c\x31\x66\x5d\x00\xf7\xd4\xe3\xc2\xc3\x17\x15\xe5\xeb\x1e\x1e\x18\x38\xb3\x28\xcf\x9b\x5c\xd1\x95\xe9\xe8\x71\x27\x29\x60\x50\x7c\x98\x87\x1e\xf8\xa8\xa6\x6a\x77\xe6\xe9\xd3\xca\xbc\xba\xd6\x84\x9a\x8d\xfb\x37\x79\x87\x1f\x5a\x59\x94\x37\x7c\xb8\xab\xb4\x27\x3f\xc6\x5a\xb7\xa4\xc2\xbb\x69\xbf\x74\x46\xdf\x46\xf4\x92\x67\x89\x0c\xb6\x21\x17\x7a\x80\x41\xd3\xae\x07\xb1\xd0\xd6\x18\xf2\x57\x20\x7f\xfd\x89\x90\xb3\x91\x4a\x11\xa4\x50\x05\x8d\x90\x99\xc2\x43\x20\x4f\xe5\x0c\x3b\xb8\xd2\x21\x40\x48\x8a\xc3\x67\x1b\x81\xe4\x96\xaf\xa2\x27\x23\xd7\x7f\x79\x91\x20\x14\x4b\x57\x22\x7a\x21\xc5\x25\xba\x72\x52\x49\x52\x53\x75\x84\x51\x6d\xa6\xb9\xef\x98\xb8\x9a\x9e\xfb\xce\x14\xe2\xf7\x00\x51\x6e\x17\x09\x9b\x34\x11\xd5\xcd\x5f\xb8\x16\x1a\x65\xd6\x46\xd8\x67\x44\xe9\x5b\x53\x72\x3a\x4b\x4d\x3d\x2a\x67\xcf\xa6\xa6\x2a\xaf\xd8\xb4\xa9\xdb\xa5\xea\xf1\x5e\x1b\x3b\x57\x95\xe6\x26\x94\x7d\xc9\x65\x69\x55\xdc\x15\xdf\xe6\xd4\xa2\x24\x75\x20\xbf\x5b\xad\x33\x37\xae\x9f\x89\x77\xb5\xed\x1f\xca\xf5\x7d\x45\xb8\x96\x37\x74\x6f\x1b\x28\xc4\x4f\xc4\x63\xd9\x6d\x0b\xf3\xf2\x96\xcc\xcc\x96\xe6\xc6\x36\x22\xa3\xf3\x59\x9e\xec\x16\x77\xa3\x11\x54\xca\x44\x50\xa8\xfc\x21\xb8\xc0\xd7\x07\x80\x22\x10\x68\xec\xce\x60\xd0\x04\xd1\x8f\x4a\xa5\xec\x23\x87\xa6\xca\xc9\xed\xcd\x48\x4f\x4b\xb5\xa7\x24\x31\x4a\x96\x24\xb3\xd4\x58\xd9\x19\x27\x35\x95\xce\x0e\x27\xf9\x95\xb3\x17\x59\x64\xca\x30\xad\x91\x5b\x2e\x6e\xc5\x8e\xde\xed\xcd\x85\xcb\x73\xc2\xf3\xd6\x97\x8e\xbe\x71\xa8\x85\x7b\x96\xfc\x08\xad\x07\x5f\x5d\x53\x3a\x5a\x1c\x9e\xb3\xa2\xa8\x69\x6b\xaf\x83\x83\x9d\xe2\x56\xd8\x89\xe3\x17\x9c\x5f\x90\xa3\x56\x9f\x0b\x0d\xab\x3d\xfc\xcd\x03\x64\x72\xdc\xf3\xb5\xfd\xd5\xea\x90\xf3\x61\x9a\xec\xa1\x53\xf3\xa4\x79\xc1\xa3\x3a\xd2\x36\xca\x03\x24\x21\xb3\xfb\x50\xb0\x3b\xb0\xb7\xbb\xb5\xba\x30\x33\x94\xe7\x33\xc7\xa3\x6f\x3f\x2d\x94\x80\x59\x2c\xfe\x8b\x30\x38\xc1\x0a\xc4\x5f\x6c\x2a\xef\x2f\x2c\x1e\xac\x30\x99\xca\x07\x8a\x8b\xfa\xcb\xcd\xfb\x43\x89\x90\x35\x90\x14\x81\xa1\x86\xb4\x78\x83\x3d\x2e\xf4\xab\xa6\x8a\x81\xe2\xe2\x01\xa9\x04\x2d\x79\x20\x84\xc4\xbc\x1b\xd2\x0c\x21\x21\xa4\x44\x3c\xf9\x2b\x32\xa9\xc6\x1b\x72\x66\x57\x25\x67\xb6\x2d\x2b\x6a\x2c\x5e\x36\x33\xd3\x56\x3d\xdb\x19\x93\x6d\xd1\xc5\x67\x97\x27\x36\x26\x12\xd6\xae\x48\x4b\x66\xa4\xaf\xa6\x78\x59\x5b\x26\x29\x53\xdc\x24\xbf\x30\xb9\x1d\x06\x83\xc3\x6d\x6a\x4a\x2c\xa3\x2f\xca\x12\x8f\x32\xe9\xc8\xd6\xc7\x0f\x6f\xff\x9e\xfb\xbb\xf0\x65\x64\x46\x59\x48\x75\x3d\x2d\x29\x1c\xe1\x4c\xbf\xfb\x94\x0c\x8d\x93\xfa\xd2\x27\xb7\x53\x29\xd9\xe9\xc9\xa2\xf6\xe7\x7d\xe5\xda\x97\x5e\x58\xe4\xc8\x5a\x98\x57\xb0\x30\x83\x10\x03\xd4\x13\x05\xda\x9a\x33\xff\xf8\x80\x3e\xaf\xb7\xf2\x8f\xae\xe6\x9c\xe8\x34\x5b\x79\xa1\xb6\x7c\xdd\xa3\xf3\x43\x66\x04\x5f\x0b\x09\x86\x1f\x77\x1e\x1c\x72\xa5\xcd\x5c\x53\x6b\x6b\x7c\xe2\xe1\xfb\x72\xba\x2a\x97\x35\xda\x70\xa9\x75\x60\xc9\xca\x3c\x7b\x53\xcb\xea\xc5\x88\x47\x1b\x98\x4c\x7a\x15\x05\xa0\x78\xe4\x44\xf9\x74\x6c\x88\xf9\xd6\x1c\x15\x22\x20\x3e\x93\x26\x00\xd5\x50\xaf\x3f\xe7\xd0\x4f\x1b\x81\xdc\x69\x23\xa0\x21\xca\x13\xfe\xf9\x35\xf1\x9f\x70\xed\x2a\xcc\x80\x6b\x33\xb5\xc9\x45\x16\x6b\x71\xb2\x96\xfc\xb5\x5a\x0b\x6d\xda\xf9\x7c\xb0\x5e\xa3\xd1\x07\xf3\x02\xf9\x1b\xae\x9f\x21\x7c\x57\x7c\x1f\x1c\xdc\xf1\xb1\x65\x84\x5a\x66\x25\x77\xe4\x7a\x72\xad\x2b\x3e\xde\x55\x9b\xfc\xb5\xe4\x1a\x67\x7c\xbc\xb3\x26\x39\x40\x6f\x8d\x23\xc4\x9e\x56\xfd\x8b\xba\x64\xfa\x22\x59\xe7\xfb\xb0\x9f\xf6\xe5\x02\xee\x34\x9f\xcb\xf2\xfe\x47\x90\xbe\xd4\x84\x2a\x80\xf4\x25\xf8\xc9\x76\x35\x94\x79\x17\x4c\x52\x36\x4b\xee\x87\x07\x73\x0e\xf4\x8e\x1c\x39\x3a\xd2\x2b\xce\x38\xd1\x77\x1c\x76\x0a\x46\x71\x2d\xdc\x2b\xae\xc3\x51\xe2\x4a\x38\xe2\xfb\x35\x05\x63\xc0\xbb\xad\x6c\x8c\xce\x12\x19\x76\x82\x6f\xa2\x6c\xdf\xe4\xbe\x89\x86\x10\x4c\xee\x9b\x24\xa7\xcb\x2a\xe1\xfd\xee\x6d\x82\x7d\xa0\xe6\x79\xa0\xbb\x80\x91\x84\x20\xf2\xfa\x8e\x9b\x43\xcb\x5f\x39\xd4\x66\xab\x1d\x1a\xdd\x51\xbe\xe0\xfa\x9e\x26\x1f\xca\x3d\xd8\x34\xc7\xdb\x23\x1e\x6d\x38\x98\x8f\x63\x5d\xf7\xcc\x71\x16\xf7\x9c\xfd\xea\xea\x86\x23\x9b\x17\xd4\xdb\xda\x8e\xbd\xbd\x3a\x43\xbc\xe1\x28\x84\xa2\x52\x2e\xa5\x3c\x4f\xfc\x3d\x18\x1c\x25\xd2\xb9\xa5\xe5\xf6\xbf\x78\x2f\x89\x65\xc8\x80\xd7\x6e\x47\xe2\xdf\xe4\x9f\x43\x16\x58\xfb\x1f\x04\xa1\xf0\x2e\xec\x45\x88\xbc\x67\x67\x18\xfc\x1b\x7a\x86\x21\xe5\xb3\x49\xf9\xd7\x84\x9b\xa4\xfc\x1b\xb7\xa3\xf1\xef\xa4\xf2\xf1\xff\x66\xe5\x0f\xb3\xf2\xe1\xac\xfc\xef\x48\x79\xe6\x58\xfa\x37\x79\x41\xae\x33\xdf\xfe\x84\xff\x82\xf0\x0c\xb9\xee\xad\xdb\x3c\xfe\xbd\x74\x9d\x4a\x7a\xce\x46\xc4\x93\xf7\x6a\x76\xdd\xef\xe9\x75\x98\xbb\xc6\xfb\x9f\xe7\x26\xcf\x7b\x8c\x5d\xf7\xce\xed\x0c\xf9\xba\x6f\x4a\xd7\xad\x91\xeb\xe7\xbf\x8e\xf6\xe9\x56\xb2\xfe\xab\x85\x3f\x90\x1e\x2d\x22\x7d\x9a\x65\x8d\x09\xa3\x63\x45\x84\x8f\x3f\xb7\x2c\x93\x44\x53\x73\x87\x4f\xa1\x81\x4f\xe7\x70\x4b\xdf\xa3\x45\x41\xe5\xf3\x76\xd6\x37\xed\xab\x09\x8b\x2b\xf5\xf4\x15\x1c\xf9\x60\x1f\x4b\x85\xb0\xea\xd9\xcd\x65\x24\xd7\xd4\xf6\xc6\x91\x7a\xc2\x00\x3f\xd2\xd0\x4c\xb2\x22\x28\x92\x6b\x97\x70\x62\x43\xd5\xa2\x6b\x5b\x6b\x12\x62\x4e\x07\x47\x45\x04\x6d\xfe\x81\xf8\x8d\xe7\x0a\xef\xf9\xd3\xb5\xf9\xad\x87\x5e\x5b\xa9\x5f\xf4\xdc\x6e\xcf\x99\xdc\x39\x9b\x24\xde\xf7\xba\xad\x8f\x0f\x94\xc7\xd6\x95\xa5\x49\xf2\xf8\xb1\xdb\x76\x3e\x89\xc5\xbd\x29\x9e\x55\x50\x7d\x47\x90\xe9\x92\x93\xbc\xbe\x7f\x78\xb9\xad\x1f\x0a\x7f\xfc\x44\xa3\xd8\x43\xcb\x3a\xc4\xbf\xf3\x67\xe8\x5c\x24\x65\x55\x1c\x29\x0b\x40\x84\xa9\x13\x80\x5a\x01\x80\xeb\xf6\xbd\xc8\xed\xbe\x75\x1e\x0f\xf8\x2e\xf1\x51\x63\xef\x10\x29\x5d\xe6\xab\x3f\x73\x04\x7f\x15\xff\xdf\xd1\x33\x3e\x3f\xe7\xf0\x13\x44\xa7\xf9\x03\x97\x88\x38\x7a\x86\x98\xaa\xf5\xa9\xc3\x98\xd6\x47\x96\x17\xf7\x87\xb1\x97\xb8\x0a\xe6\xc1\x00\xc6\x8f\x7b\x8c\x3c\x37\x90\x3c\x57\x60\xcf\xd5\xe7\x52\x36\x29\x8e\xcc\x7a\x1c\xa9\x8b\x82\xc3\x2f\xf9\x7e\x76\xe8\x9f\x5e\x28\x84\xd6\x45\x8b\xf8\x7e\x02\x40\x5a\x73\x8e\x3c\xc1\x89\x7e\xc2\x9f\xe3\x7e\x88\x6c\xa8\x02\xcd\x46\x81\xcf\x77\xd5\x16\xa7\x47\xf1\xdc\x84\x28\xb6\x4e\x21\x96\xd4\xdf\xc9\xdd\x25\x47\x94\x63\xc6\xcb\xcc\x42\xcb\x25\x6a\x10\xac\xe5\xcf\x99\x6b\x96\x54\xe7\x74\x56\x39\x35\x9a\x9c\xaa\xce\x9c\x9a\xc5\x35\x66\x9a\x07\x35\xa7\xab\x2a\x47\xa3\x71\x56\x75\x3a\xc9\x1b\xf3\xe6\xb0\xa4\xe2\x34\x03\xc9\x37\x18\xab\xe6\x38\x12\xb1\x90\xee\x34\xa4\x17\x27\x85\x8d\x1d\x27\x9f\xa7\x1b\x9c\x69\x49\x31\xf4\xf3\x98\xa4\x34\x97\x21\x8d\x7c\x8e\xeb\x6b\x76\xcd\x2b\x4a\xad\xee\x4c\x49\xe9\xac\x4e\x2d\x9a\xb7\xab\x26\xa5\xfa\xce\x0f\xaa\x33\xbb\x2a\x92\x63\xd3\xf3\x72\xb3\x42\xe3\x42\xb3\x72\xf3\xd2\xe2\xac\x15\xdd\x59\x59\xdd\x15\xd6\xb8\xb4\xbc\xdc\xcc\x30\xf6\x61\x7a\x2c\xd5\x6d\x10\xa0\xff\x88\x1e\xee\x9b\x0a\x3b\x4a\x20\xfd\x16\x81\xe9\xd8\x4e\x26\x05\xbd\xd3\x7c\x47\xe2\x58\xf1\x93\x8f\x9f\x9b\x04\x29\x48\xef\xda\xda\x9c\x54\x9d\x14\xa9\x4e\x8b\xeb\x9d\xd5\xf3\xd8\xf5\x71\x4c\x81\x10\xd3\xb9\x77\x56\xd6\x8c\x80\xc3\x82\x62\xe5\xc0\x27\xbf\x94\x64\xfe\x21\x88\xe0\x4b\xb8\xdb\xc8\x88\x2a\xc8\xdc\xaf\xc8\x36\xd2\xb9\xaf\x21\xc7\x24\x17\xe9\xd6\x3b\xf7\xe5\x74\x4e\x49\xb0\x93\x4a\xa2\x65\xde\xf5\x3b\xb2\x52\x4e\x67\x6e\xac\xb0\x16\x3a\x1d\x09\x71\x99\x59\x79\xe6\x8a\x8d\x19\x81\x99\x1b\xcb\x93\x72\xb3\x32\x0d\xf1\x39\x39\x45\x56\xf2\x41\xc4\xe7\x96\xe0\x16\x55\x36\x41\x50\x44\x4c\x58\x68\x54\x78\x50\x53\xe5\x95\x8a\xe6\xa0\xf0\xa8\xd0\xb0\xd8\x88\x20\x80\xa6\xca\xdb\x15\x4d\x40\xbe\x8d\x0d\x25\x4e\xe4\xa0\xe6\xca\x2b\x95\x4d\x81\x1a\xf2\x6d\x0c\xf9\xb6\xa9\x92\xcd\x53\x74\x9d\xb7\xf0\x65\x48\x43\xfa\x6e\x06\xed\x3b\x30\x2a\xad\x94\x8e\x97\xfd\xea\x95\x0e\x2d\xd1\x44\x79\x8b\x6f\x6c\x56\x53\xb9\xf8\x67\x98\xbb\x5d\x24\x33\xa4\xbe\x31\xeb\x17\xe2\x57\xb7\xc3\x73\xb0\xec\x86\x63\xcf\xa5\xdb\x0f\x9e\x70\x0c\x3e\x78\x9b\xc9\xba\x17\x50\x00\x1f\xcc\x9f\x43\x0b\x90\x81\xdc\xf3\x45\x37\x91\x1e\xa0\x84\x7b\x50\xb8\x6f\x2b\x93\x3e\xd7\x5e\xf4\x0b\x2d\xdf\x56\x2a\x4d\xd8\x35\xaf\x23\x25\xef\xe4\xbf\x40\xae\x49\x40\x61\xe8\x83\xf1\x6b\xa2\x7d\x9b\xa5\x6b\x3e\x90\xaf\xd9\x2c\x5d\x83\x30\x3a\x4c\xb9\x9b\xc9\x5a\x11\x50\x30\x19\x87\x19\x2a\x8e\xee\xbd\x0c\x8a\x0d\x46\xb0\x2a\x81\x2c\x1d\x6c\x38\x04\x27\xc4\x15\x87\xc4\x65\xf8\x6f\xe2\x3f\xd4\x6a\xf1\x13\x98\x11\x16\x4e\xec\xde\x56\x9f\x0d\x7f\x84\x03\x1d\x0e\xdf\xbf\x7c\xff\x76\x38\xd8\x79\x28\xfd\x76\x27\x4e\x46\x7f\x46\x41\xa4\x1f\x02\x05\xc8\xbc\xc3\x5a\x93\x4c\x78\xf5\x93\x16\x25\x25\x5d\x7b\x22\x65\x56\xef\xcc\x84\xda\x92\x6d\x9e\x3a\xa4\x43\xb3\x50\x20\xbf\x8f\x57\x90\x1a\xc4\xa2\x14\x54\x80\xdc\xa8\x1a\x35\xa0\x36\xd4\x87\xfa\xd1\x10\x69\xcd\x12\xb4\x02\xad\x46\x9b\xd0\x36\xb4\x0b\xed\x43\x07\xd0\x11\x74\x9c\x72\x95\x1e\x3b\x7a\xf8\xe0\xfe\x7b\xf6\xee\xde\xb9\x7d\xeb\xe6\x0d\x6b\x56\x8e\x2c\x5b\xba\x68\xe1\xfc\x79\x83\x03\xb3\x67\x75\xcf\x6c\x69\xaa\xad\xa9\x2c\x2b\x2a\xcc\xcf\xb1\xc4\x47\x85\x04\x60\x1d\x69\x94\xa4\x2c\xf8\x93\xc6\xeb\x99\xc3\x4b\xca\xde\x4f\xf4\x5b\x2b\x9b\xe9\x4e\x16\x7b\xad\xd3\x0a\xd2\x3b\x93\x54\xd4\x69\x02\x86\xfb\x34\x32\xce\x50\xfa\xda\xa4\x4d\xa2\xff\x3a\x81\x94\x8d\xa0\xee\x23\x8e\x16\x70\xb2\x22\x5a\xcd\xe4\xd7\x0e\x5a\xc2\x64\x12\x28\x91\xa4\xff\x17\x26\xbf\xfe\x4b\x75\x7e\x7e\x75\x4d\x7e\x7e\xd5\x45\x47\x7e\x6c\xac\x5e\x5f\x92\xbb\xa0\x3b\xd9\x64\xb6\xd1\x03\x35\x0e\x31\xe8\xa3\xe3\x1d\x45\x99\x69\x05\xd9\x63\xf7\x95\x2c\xc5\x1f\x2d\x2b\xbe\xf5\xe1\x93\x4b\xb9\x8a\x27\x8b\xc5\xaa\xb8\x98\x98\xb8\x6a\xf3\xd9\x8a\xb3\xbe\x6b\x67\x2a\xa4\x3f\x0b\x1c\xc6\x84\x32\x87\xd8\x5a\xc2\x7e\xb8\x3f\x16\xb3\x1f\x9c\xe4\x2a\x2f\x77\x95\xd0\x7f\xd6\xd9\xed\x7a\xab\x2a\x20\x51\x6b\x4f\x16\xbf\xb1\xce\x62\xb7\x5b\x4a\xe8\x3f\x1d\x91\x86\xc8\xe8\xf4\xb4\xec\xb4\xaf\xfb\x16\x3f\xbd\xa2\xb4\x74\xc5\xd3\x5c\xff\x03\xee\xd9\xb3\xdd\x0f\xcc\x16\xb3\xa2\x75\xda\xc8\xd9\xf0\x81\x9b\xfd\x8c\x55\x96\xb2\x1f\x3c\x1c\xa6\x4f\x6d\xdb\x2f\x3e\x76\x2f\xe8\xee\x15\x1f\xf3\xbf\x40\x48\x40\xa1\xbe\x0f\xf9\xab\xaa\xd5\x88\x43\x36\x94\x86\xb2\x90\x13\x85\xba\x67\xe4\x64\x67\xa6\xa7\xa6\x84\xf3\x18\x09\x99\xf6\x00\x4e\xa0\x06\xc4\x12\x6e\x1c\x02\xe4\x70\xb1\x5e\xa7\x13\x85\x50\xd9\xeb\x4d\x5a\x07\x47\x7a\x97\xfe\xe2\xb9\xb8\xd1\xf7\xac\xef\x0b\xf8\xa6\x62\x86\x3a\x48\x97\x66\xd6\x27\x55\x0d\xbb\xf3\x06\xeb\xec\xf0\x15\x6c\x8b\x4c\x4a\x50\x47\xc6\x04\xc6\x99\xb4\xaa\xf7\xde\x7b\x6f\x29\xcf\x63\x9e\x57\xb4\x8d\x65\x8d\x65\x71\x1f\xdc\x8a\x22\xc1\x84\x61\xf1\xb9\xf9\x6e\x9b\x7b\x41\x9d\xd5\x50\x36\xbf\x3a\x37\xd3\x9d\x13\xed\xc8\xb0\x06\x9b\x93\x2d\xd9\x99\x7d\x4f\xfa\x3a\xf9\xc0\x0b\x3c\xc2\x24\xdf\xff\x5f\x78\xc4\x3f\xc0\x62\x24\x55\xd7\x93\xa2\x43\x79\xba\x06\xfc\x24\x2d\x4e\x49\xc6\xeb\xad\x7e\x0e\x61\xad\x9f\xb4\x85\x47\x90\x31\xff\xe2\x8a\x15\x17\x87\x33\x01\x32\xe7\x5f\x58\xb1\xe2\xc2\x70\x16\xbc\x00\x5a\x67\x6f\x55\x55\xaf\x53\x0b\xa0\x73\xf6\x91\x57\x39\x11\x00\x7f\x9d\xe7\x3d\xd2\xd1\x71\xc4\x3b\xef\xe9\x79\xde\x43\xed\xed\x87\xbc\xf3\x62\xf3\xd7\xce\x29\x2a\xea\x1f\xcd\xff\x65\xfe\xda\xb9\x25\x25\x73\xd7\xe6\x23\x80\x02\x84\xb8\x47\xb8\x04\x64\xa0\xb1\x35\x52\x60\x32\xc2\xc0\x03\x8b\x48\x46\x80\x39\x18\x92\xe3\x91\x8b\x51\x43\xb4\x39\xdc\x1a\x26\xa8\xa2\x88\x8d\xce\x09\xd2\x3c\x26\xa2\xd0\x34\x39\x25\xb2\xd2\xc8\x3d\xe2\x7b\x02\x12\xca\xf2\xca\x0b\xea\x6b\xe0\x42\x4a\xd3\x8a\x2a\x1a\x48\x15\xe3\xa8\xb1\x5f\x85\x23\x4b\x21\xb4\xa8\xcb\x94\x55\xec\x29\x70\x0d\xd4\xd8\x8c\x25\x5d\xb9\xc9\x35\x55\x35\xd6\xfb\xa8\xcd\x42\xcd\xff\x82\xfb\xb3\xe2\x63\xa4\x60\xfa\x9e\x45\x27\x30\xb9\x60\xb2\x2a\x4d\xe0\xc8\xf5\x6f\x87\x6c\x67\x93\x0f\xd4\x6c\xdf\xe3\xfe\x7c\xe5\xad\x37\x9f\x04\xf3\xc9\x9b\x51\xf6\x82\xc4\xa4\x6c\x7b\xaa\x21\x2c\x4e\x1f\xda\x48\xdf\xc5\x67\xa7\x67\xc6\x85\x19\xf4\x21\xfc\x2f\xae\x5d\x03\xc5\x7f\x8c\xa5\x59\x06\x5d\x8c\x5e\x1d\x63\x54\x6b\x8c\x65\xd9\xf1\xba\x68\x5d\x58\xb4\x51\x8d\x30\x1a\xe3\x7f\xc1\xdf\x54\x7c\x40\x9e\x1d\x4d\x9e\xad\x56\x4e\x7e\xb6\xde\xea\xe7\x65\xcb\xf5\xcf\x18\x25\xf7\xc3\x2b\x6f\xbf\xfd\x24\x84\xbf\xf8\x2f\x28\x76\x47\x5a\x73\x62\x15\x9b\x0e\xea\x2d\x59\x51\xc0\xff\xe2\xe6\x4d\x50\x6c\xde\x25\xe8\x4d\x9a\xa8\x30\xe5\xac\x4e\x8f\x31\x23\x3e\x9c\x2b\x62\x72\x2f\x8c\xb4\xef\x63\xc5\x49\xf2\x8c\x40\xf2\x8c\x80\x3b\x9e\x21\x90\xb9\xc7\x7d\xfc\xd6\x93\x4f\xbe\x09\x89\x67\xc4\x23\x07\xbf\xfc\x2e\xff\x8b\x0b\x17\x40\xd1\x0d\x1c\xbd\x16\x82\x48\xfd\xfe\x31\xe9\x5a\x2c\xc9\x4c\xff\xd5\x9c\x09\x67\x9c\x06\xd3\x5b\x4f\x3c\xf9\x36\x97\xf8\xce\xbb\x87\x84\xdf\x89\x9f\x90\xab\xbf\x28\xfa\xe8\xb5\x99\x24\x7e\xfa\x29\xc5\x63\x64\xae\x45\x91\x6b\x23\x75\x3c\xbb\x76\xda\xe9\x8d\xe2\x24\xb8\xa7\x08\x35\x47\x6d\xdd\xe8\xcc\xb4\x93\x11\x36\x77\xaa\xbd\xd4\x16\x31\xf3\xf4\xff\x7d\x47\xb8\x56\x48\x40\x1d\xd6\xea\xb9\x85\x06\x97\x4d\xaf\xb7\xb9\x0c\xb6\xaf\x49\xb6\xa8\x8f\xf9\xc3\xf8\x2f\x8a\xc2\x09\xd9\x3b\xd9\x52\xff\x71\xb4\x2d\x2b\x72\x89\x29\xc6\x2b\x84\xa6\xf6\xb4\x94\x6b\x67\x16\x2e\x2e\x5e\xcf\xf6\x00\x96\x3b\xf8\x30\x7f\x08\x29\x51\x20\xcd\x8a\x10\x08\x3c\xa6\x33\x8f\xc7\xab\xfc\x61\x35\x73\x39\x18\x37\x3e\xb3\x29\x07\xc6\x09\x2e\xd0\x61\xdf\x27\xcb\x5f\x84\x1f\x5e\x86\x6f\xbf\xe0\xfb\x32\x1c\x79\x07\xf4\xe2\x6f\xf9\x43\xb7\x56\xc3\xd3\x70\x4b\x8a\x2b\xfc\x3a\xb9\x7f\x35\xb9\x7f\x34\xb2\xa2\x1c\xc9\x8f\xc8\x30\x25\x32\xf9\xdc\x78\xce\x20\xd9\xa5\x4f\x1e\x15\x13\x83\x50\x4e\x76\x4a\x72\x8c\x35\xc6\x62\x88\x25\x97\x46\x19\x55\x2a\x7f\xa6\x20\x9e\x0d\x3c\xc3\xac\xf1\x26\x50\xcb\x01\x86\x49\x0e\xff\x0b\xd3\xd7\xe1\x01\xc7\xa2\xb9\x9d\xa5\xe6\x04\x72\x54\xca\x6a\x2f\x36\x27\x16\xcd\x1c\x58\xe4\x14\xff\x01\x33\x52\xbb\xab\xed\x96\xb2\xce\x0c\xf1\xf7\x1f\x27\xb7\x95\xdb\xd3\xeb\x7b\xed\x3f\xe7\x0f\x85\x18\x32\x6b\xe6\x14\x67\x36\x16\xda\x43\x66\xa4\x57\xf5\xe5\x16\x0f\xd4\xe7\x24\x12\x43\xb1\xb8\x07\x34\xf6\x2a\x47\x4e\x5d\x86\x1e\x0e\x81\xda\xea\xce\xc8\xa9\xb0\x84\x02\x8d\xdb\x21\x32\xc3\x45\x64\x86\x95\xd9\xd5\x31\xd5\x74\x84\x11\x9a\x87\x81\x13\xf8\xe5\x32\x62\x5b\xce\xec\x5f\xc5\x02\xae\xac\xc8\x6a\x4b\x24\x3c\xf7\x4a\x55\xd4\x34\xe9\x62\xb2\x58\x64\xe9\x42\xcf\x4f\xbc\x6b\x46\xdb\xd6\x87\xe7\x8c\x12\xc8\x08\x40\xe5\x0e\xef\xba\x39\x0f\x6e\x68\x9a\xe1\xd5\xee\xdb\xd2\xb1\xbe\xc1\x04\x90\x50\x3b\xda\xbe\xfd\x90\x1e\x36\x0c\x1c\x9b\xe7\xe8\x3e\xf5\xf6\x8a\xf9\x2b\xdf\x39\xd5\xe5\x1a\x3e\x31\x67\xed\xf6\x8a\x15\x47\x3c\xc3\x75\x87\x47\xaa\x60\xc3\x46\x36\xbe\x2c\xef\xd1\x4c\xd2\xff\xc1\x28\x86\x79\xeb\x28\x20\x04\x23\x7f\x7f\xf3\x52\x7f\x87\x84\x20\x14\x12\x13\x12\xad\x0e\x25\xc5\x66\x18\x15\x52\x5f\x1b\x38\x3d\x4d\xe3\xcf\xa9\xa9\xbf\x8e\x46\x01\x3d\x0f\x4b\x36\xbc\x7f\xb2\x03\xa0\xfb\xec\xd7\x37\x5d\xbe\x3c\xeb\xc8\x90\x13\x20\xab\xff\x60\x1f\x7f\x08\xb7\xdc\xf7\xde\xa6\xd2\xad\xef\x1d\x69\x02\xee\x1f\x63\x0f\x03\x8d\xd9\x2b\xeb\xbe\x6f\x51\x01\x20\x8a\x43\x26\x75\x30\x91\x3a\x04\xb1\x38\x27\x0e\xf1\x02\xc7\x0f\x22\x01\x49\x76\xbd\x71\x63\xde\x9d\xfe\x0d\xa3\xd6\xff\xcb\xbd\xe5\x7b\x15\x5f\x18\xbb\xcc\x75\xf8\x16\x62\x37\x0e\x11\xef\x3d\xcd\x1f\x3a\x2b\x3e\x23\x9d\x11\x7e\x4d\xee\x5d\x4c\xee\x1d\xc0\xf2\xc4\x48\x20\xc0\xc1\xf1\x88\xb0\xa9\x33\x57\x6d\xf2\xdf\xf3\x17\xbe\x37\x5e\xe5\x3a\x7d\x8b\x71\x31\xfc\x5d\x0c\xa6\xf7\x3b\x23\xdd\x6f\x33\x19\xdb\x32\x32\xb6\x69\x94\x3b\xcf\x86\x30\x2f\xd0\xe5\xc0\x29\x38\x4a\x56\x22\x0f\xad\x02\x31\xb3\xd3\xa4\x21\x56\x6b\xfd\xc3\x4b\xe0\x4f\x9f\x31\xbc\x74\xf3\xa0\x4a\x21\x5f\x66\x5b\xb0\x66\x73\xd1\x86\x57\xf7\xd6\x01\x94\x6f\x7d\x61\x63\xcf\x03\x1b\x5b\x43\x9e\x8f\x3a\x34\xd2\xb5\xc1\x63\x04\x48\x9e\xb9\xb5\xcb\x58\x5d\x51\x12\x05\xe4\x0c\xfc\xd5\x53\x59\x84\x40\xb7\xeb\xf4\x7b\x6b\xda\xd7\x7c\xe5\x74\x57\xc6\xac\x03\x7d\x4b\x96\x57\xae\xba\xaf\xa1\xb3\xe9\xd8\x48\x95\x10\x16\x17\xf9\xa7\xa3\xac\xee\xe7\x11\xe2\x3e\xe6\x0f\x4d\xcb\x99\x23\xbb\x79\xd0\x78\x0f\xdf\x99\x33\x87\xfb\xf8\x19\x51\xf1\xcc\x33\xf0\xc9\x33\xf0\x37\x31\x84\x3f\xe4\xf3\x61\x8e\xde\xef\xbb\x08\xf1\x61\xfc\x41\xff\xfd\x90\xc0\xcc\xd5\x0c\xa2\xc0\x60\x36\xc5\xdc\xa4\xfb\x69\xfc\xe3\x45\xdd\x45\xdf\xe5\x72\xc5\x97\xa0\x62\xec\xcb\x34\xc2\x81\x3f\xf8\xe0\xd8\xf5\x4b\x97\x38\x8f\xd4\xbf\xa7\x6e\xff\x85\xfb\x15\xa9\xa3\x9e\xc5\xa2\x22\x8c\x56\xd1\xf0\xd1\x55\x32\x9d\x46\x15\x34\x50\x5a\x69\x9e\xda\x96\xc7\xb9\xd2\xc6\x33\x5c\x70\xc9\x2f\x63\x5c\xb9\xf2\x44\x4b\xd7\x99\xd5\x75\xaa\x97\x93\x2b\xbb\xb3\x32\x5a\x8a\x4c\x98\x3f\x34\xf6\xbb\xfe\x63\x43\x8e\xd4\xd9\xf7\xcd\x2f\xe9\xc9\x8b\x32\x16\xf7\xe4\x53\xdc\x39\xa9\xff\x76\xf2\xac\x19\xf4\x59\x81\x0a\xe0\xfc\x46\x7f\x40\x3d\x9c\xd4\x1f\xe1\x1a\x75\x38\x7b\x96\x92\xf5\x45\xae\x14\x87\x88\x8e\x7b\xbd\x3b\xe1\xe0\xcf\xc5\x44\x8c\x7e\x8a\x95\x87\xc5\x7d\xa4\x4f\xbe\x7d\x04\xce\x93\xdc\x57\x1b\x29\x0f\x06\xb9\x6f\x1b\xb9\x2f\xcb\x25\xc6\x72\xbd\xd1\xa6\xf5\xca\xb3\x2d\x8c\x53\xe9\xed\x49\xb4\x3f\x1c\x70\x12\xbf\x34\xb6\xed\xcd\xd3\x64\xc6\x4a\xe3\xc3\x17\xd0\xfa\xd0\x75\xa0\xa2\x94\x73\x50\x2f\x3b\xa7\x79\xe6\x3e\x67\xb2\x56\x4e\x97\x44\x67\xec\x1d\xe9\x92\x96\xfd\xe0\xaf\xd7\xbe\xb7\xeb\x67\xd7\xfe\x83\xbb\xb1\xf3\xd6\x6a\xee\x15\xdf\x36\xbc\x7a\xac\x99\xdd\xfb\x75\x72\xef\x50\xf2\x8a\xe5\xa7\x52\x62\x52\x29\x9a\x9f\x8a\xfc\xed\x01\x7f\x53\xd5\xe1\xb4\x5b\x27\x99\xaf\xf8\xd0\xa7\xc4\x20\xe1\x8b\x4f\xc3\x3f\x15\xd7\xb8\xa5\x63\x27\x48\x2f\x1e\xe7\x96\xd1\xbc\x00\x64\x0d\xd4\xfb\x75\xa2\x38\x77\xf4\x78\x80\x2d\xc7\xc9\xd3\xdd\x46\xbc\x5c\xe4\x66\x9f\xaf\x28\xd5\x43\xf1\x86\xe7\xd6\xaf\x7b\x6e\x63\x29\x40\xc9\xc6\xe7\xd6\xad\xbf\xbe\xa1\x18\x9e\x87\xf8\xea\xd5\xed\xed\xab\x6a\xe2\x01\x12\x6a\x56\xb5\x77\xac\xae\x32\x00\x36\x2f\xff\xea\xfd\x73\xe6\x3c\xf0\xd5\x65\x15\xcb\xbe\x7a\xa1\x7f\xce\x03\xef\x2f\xc7\x35\xc7\x46\xeb\x3d\x6b\xef\xab\xae\xaa\xb9\x6f\x9d\xc7\xb3\xf6\x58\x8d\x24\xd3\xe6\xdc\x76\xf1\x0b\x48\xfd\xa2\x51\x26\x8d\x6c\x10\xfc\x4c\xf4\x18\xd5\xdc\xbd\xaa\x36\x7f\x55\x49\x94\x55\x92\xe2\xb3\xeb\x3b\x1f\xe2\xf2\xda\x9c\x3f\xde\x22\xfe\xab\xd8\xbd\xf1\x95\xdd\x35\x00\xd5\xbb\x5f\xde\x48\x5e\x55\xc3\x0d\xb0\xb4\x6c\xe9\xee\xda\xdc\x62\x05\xb0\xb6\x6e\xe9\xea\xde\xdc\x92\x44\x6a\x5d\x7f\x60\xd3\xb0\xe5\xe1\x15\xef\x86\xf4\x9e\x7b\x7f\x75\xc5\xea\xf7\xcf\xf7\xf5\x9e\xfb\xda\x1a\xdc\x74\x7c\x55\x55\xf5\xea\xe3\x0d\x55\x8d\xc7\xd7\x54\x57\xaf\x3a\x41\xf3\x8b\x1c\x65\xf1\x4c\x87\x58\x84\x3d\xe3\xc4\x46\x3c\xc8\x98\xfa\x21\x59\x66\xf9\xa7\x40\xb2\x31\xc5\x28\xcb\xc2\x49\x11\xf5\x40\x76\xf3\xf1\xad\x0e\x0f\x8a\xbf\xf1\xc2\x93\xed\x0f\x6e\xf1\x98\xdd\x5d\xd9\x90\xf8\x8e\xef\x17\xff\xca\xe8\xab\x49\xb3\xd7\xce\xc9\xfe\x2b\xbc\x26\x96\xf2\x87\x20\xb9\x73\x6f\x7f\xe9\x80\x27\x5f\x27\x46\x07\xe2\x6e\x88\xcc\xf2\x38\xf3\x9a\xb3\x23\xe9\x3e\xb6\x9f\x8c\x73\x3e\xe9\xc7\x2a\xb6\x8f\xf9\x19\x3a\x10\xe5\x44\x15\x28\xc2\x9c\x51\x17\xcb\x70\xf8\x2a\xae\xa1\xdc\x5d\x54\x98\xeb\xa4\xa1\x2e\x11\xe1\x0a\x15\x65\xc9\x4d\xe7\x49\x07\xca\x16\x40\xfd\x04\x0a\x82\xd7\xfb\x37\x68\xb6\x7a\xa5\xbe\xe5\xb6\x41\x74\x5a\x41\x69\x69\x4c\xd5\xd9\x1d\x33\xad\xe5\xdd\x43\x0b\x32\xdb\x2f\x6e\x6d\x55\xbc\x80\x33\x1a\x06\xb2\x93\x7b\x1b\xb2\xe3\x73\xca\x2a\xdc\x51\xd5\xc7\xd6\x37\x24\x57\xf6\xce\x5b\x94\xd5\x79\x65\x7f\xaf\xe2\x45\x9c\xdb\xb9\xd8\x95\x3c\xbb\xd9\x09\x29\x66\x57\x4a\x9c\x2e\x4c\xa9\x76\xb4\xad\xef\xcc\x9f\x5d\xe3\x30\x86\xd9\x7b\xf6\xf6\xe6\x36\x65\xeb\xc2\xac\x65\x59\x89\x39\xc9\x71\xda\x50\x45\x78\x6e\xc7\x86\x8e\xc2\xd9\xd5\x59\xf1\x21\x29\x3d\xfb\x07\x8a\x67\x3a\xb4\x21\x49\x6e\x26\x7b\x66\x23\xc4\x2f\xa2\xba\x0e\x5b\xb7\x1c\x06\x04\xdc\xa4\x4d\x42\x92\x3a\x72\x06\xaf\x45\x62\xd7\x8b\x62\x0f\x3f\x83\xec\x67\xe4\xf7\x2c\xbd\xfe\x3a\xe9\x2f\x3b\xb9\x3e\x8a\xca\x43\x9e\x5c\x8f\x61\x95\xec\x29\xab\x9a\x94\x16\x57\x20\xeb\x1f\x34\xfe\xa5\x41\x38\xa9\xfc\x93\x4b\xc3\xa7\x00\xae\x59\x7f\xa9\x6f\xd6\xa5\x75\xd5\x00\xd7\x01\x92\x2a\xfa\x0b\x09\x3c\x37\x09\x80\xac\xbd\x7f\xf4\x9f\x58\xe8\x72\x0d\x9f\x1c\xe0\x66\x8c\xfd\xa3\x70\xb6\x3b\x31\xd1\x3d\xbb\x90\x9b\x81\x00\x75\x92\x7a\xef\x22\xcf\x55\xd1\xdc\x63\x54\x7c\x51\x29\x46\xe3\x93\xe5\xaa\x6b\x88\xc4\x91\x0d\x5d\xe0\xc0\x2d\xb1\x71\x90\xf5\x65\xd1\xfd\xb4\x58\xf6\x2e\xb8\x96\x2c\xe6\xba\x6f\xad\x26\x97\x23\xe4\xcf\x93\xfc\x02\x79\xc3\x72\xb5\x05\xfa\x73\xb5\x71\x98\xde\x0d\x4b\x33\x2f\x5c\x3d\x21\x7c\x88\xe4\x21\xff\x53\xdb\x31\xb7\xfe\xf4\x53\xbf\xbd\xf8\xe2\x6b\x17\x7f\x73\xe5\xcc\x8d\x73\x30\x93\x2b\x20\x02\xa8\x64\xec\x75\x52\xf1\xb7\x39\x7f\xbc\xf1\x00\xb9\xf7\x30\xdd\x7f\xa8\xbc\x0d\x50\x70\x9c\x9c\x24\x0f\x7a\xe4\x7b\x13\xc1\xc6\x7a\x99\x09\x5a\xf6\xbf\x03\xf7\x43\xdc\xf7\xc5\xf5\x70\xfa\x07\xe2\x77\xc4\xef\xfd\x80\x98\x1b\x46\xbf\x8f\xbf\x07\xcf\xfa\x5e\xf6\x5d\x87\x17\xc4\x2a\xec\xc1\x7e\x7b\x60\x23\xe5\x94\x67\xfd\x10\xeb\x8e\x52\x70\x78\x6a\x47\x90\x9b\xb3\x8e\x00\x16\x8a\x48\xee\x3c\x0c\x35\xdf\x12\xdd\x2f\x88\x35\xdf\xc2\x95\xb8\xce\xa7\x12\x97\xc0\x83\xf8\x0f\x12\x97\x01\xb9\x57\x39\x95\x97\x54\x16\x07\x80\x9f\xeb\xa2\x1e\x71\x54\x87\xc0\x83\x72\xc8\x04\x13\xc6\x6c\x66\x30\x89\xee\x94\x42\x26\x2e\xe2\x87\xc7\xd6\x91\x34\xde\x5b\xb9\x05\x70\xfa\xf4\x66\x6e\xfd\xd9\x0d\x74\xb9\xb4\xf1\x3f\xe1\xce\x29\x39\xa4\x46\x49\x44\xbf\x8f\x0d\x9f\xa2\xdf\x4b\xa1\x81\xd6\xa9\x87\x18\x3d\x77\x2e\xc5\xb3\xb4\xbc\x7c\x69\x63\xca\x7d\x50\xd3\x50\x5f\x0d\xff\xa7\xa8\xaa\x89\x49\x2d\x48\x50\x1e\x3c\x1b\x9d\xe2\x8a\xe1\x84\x6b\x19\x0d\xb9\x06\x43\x6e\x43\x46\x66\x45\x45\xa6\x7a\x33\xaf\x8b\x57\xeb\x83\x15\x6d\x0d\x95\x94\x01\x94\xa3\x39\xa1\x21\x04\x21\xae\x8d\x3f\x8a\x14\xd4\xee\x89\x20\x93\x6e\xf0\x82\x33\xc9\xc1\xb5\xdd\x14\xd7\xe2\x94\x68\xee\xea\xe8\x85\x1b\x7e\x2e\x88\x6c\xb2\xe6\xcd\xa4\x9c\x9e\x95\x23\x8d\x2a\xe1\xa8\x20\xb4\x4c\xca\x5a\xcb\x64\x8d\x91\xcf\x1e\xbb\x08\x57\x0c\xd5\x05\x56\x80\xc4\x82\x86\x14\x57\x5f\xb9\x95\xbb\xc9\xd5\x6f\xb8\xbf\xa3\xe1\xc8\x8a\x8a\xac\xfa\x9e\x14\xf1\x06\xde\xba\x0b\x1e\x88\x2b\xab\x9f\x99\x91\x5a\x95\x19\x0d\x31\x79\x6d\xb9\xbd\x07\xe6\x64\xda\xdb\xb7\xcc\x2c\x5e\xbd\xb8\xdf\x2a\xfe\x96\xf6\xf7\x5b\x64\xed\xe8\xc8\x73\xdd\xe4\xb9\x36\x2d\xd0\x33\x93\x6c\x05\x98\xf2\x58\x49\xd2\x4d\x16\x1d\x92\xb4\x83\x8f\x36\xda\x7b\xaa\xd3\x92\x8a\x9b\xed\xb6\xa6\x92\x64\xfe\x26\x5f\xb7\xfa\x68\x7d\x03\x91\xb3\xc6\xbc\xba\x94\x8c\xb6\x62\x93\x67\xc3\x99\xa6\xa6\x93\x6b\xeb\x79\x2f\x9f\x52\x3e\x33\x35\xad\xa3\xd2\x96\xd1\xd8\x9f\xb9\x11\x9f\x67\x9a\x7c\x7a\x65\xaa\x56\x43\x0e\x53\xad\xeb\x9b\x93\x89\x00\xef\xcc\x6e\x29\x49\x0f\x0d\x49\x2b\xef\x29\xa4\x40\x3c\x6b\xeb\xe6\x8e\x8c\x8a\xd4\x08\x5d\x7a\x4d\x76\x9e\x27\x55\x03\x6c\xaf\x61\xb9\x0d\x4b\xf8\x43\xd4\x7f\x4f\xc6\x34\x38\x28\x80\x67\xe7\x3d\x2d\x8b\x40\x97\x9d\xf3\x87\xaf\x5d\xbb\xe6\x7b\x9a\xc3\x15\xaf\xfb\xde\x83\xbd\x16\x78\xe0\x34\xb1\x93\x29\x56\x73\x11\xbe\x30\xac\x2f\x93\xb8\xb3\x48\xfb\xb5\xe4\x3e\xc9\xa4\xfd\x6a\x20\xed\xd7\x50\x8d\x89\x93\xb0\x21\x13\x0d\xd6\xe9\x72\x65\x07\xab\x45\xa1\xfc\x67\x25\x7e\xdc\xf7\x4f\x8b\x63\x49\x7e\xe7\xb1\xc5\x45\xee\x95\x67\xbb\x9b\x0e\x8f\x34\x04\x3e\xa3\xd9\xd9\xe7\xea\x2a\x4a\x20\xfe\xb7\x9c\x92\xa1\x6c\x5c\x81\xeb\x1f\x12\x7f\xac\x8f\xca\x1b\x3e\xda\xdd\x77\x74\x9e\x33\x65\xe6\xc6\xd6\xbe\x2e\x48\x2a\xeb\x76\xba\x3a\x8b\x8c\x60\x4e\x94\xda\xf2\x53\x52\x87\x14\xfe\x38\x8a\x47\x39\xa4\x2d\x29\x09\x1a\x36\x3f\xb5\xc4\xcb\x4b\x0d\xac\x72\x3d\xfc\xfb\x63\x2e\x27\x6f\x8c\xfe\x0a\x71\x2b\x42\x67\x5f\x58\x57\x17\xe0\x3c\xd9\xd4\xb1\x7f\xae\xb3\x74\xc5\xe9\xae\xb9\x17\x56\x14\x03\xb4\x3f\xf4\x87\x33\x1f\x58\xeb\xdd\x8e\x50\x30\x14\xf6\x96\xe4\x74\x16\x1b\x8d\x45\x1d\xfc\xf1\xfb\x21\xbd\xf7\x9e\xde\xfc\x62\x82\x24\x3c\x3c\xb3\xe7\xf8\xc2\x82\x9a\x4d\x97\xfb\xdb\x4f\xfe\xe5\xf1\x3e\xf0\x7d\x27\xc2\xe2\x4a\x34\x39\x97\x76\xb9\x48\x2d\x1d\x0e\x92\x74\x0c\x01\x7a\xd1\xaf\x1f\xb1\x39\x4c\xfb\x88\x0a\x08\x2a\x8b\x0b\x7c\xbf\x79\x03\xeb\x7d\xd5\xdc\x56\xde\x7c\xeb\x07\x4c\x1a\x23\xc4\xb1\x3e\x35\xb0\x73\x58\x21\x6a\x26\x36\xfb\x7a\xb7\x2b\x35\x31\x84\xda\xec\xef\x9c\x47\xd4\x64\x3f\x09\xae\xc7\xd1\xde\x9d\x40\xf5\x4d\x7b\xcf\x23\x83\xa3\xca\x9a\xd6\x52\x94\xe8\xd9\x70\xba\xa1\xe1\xf4\x7a\x4f\x62\x41\x73\x9a\xb5\x32\x3b\xae\x62\xd9\xa1\xba\xba\x23\x2b\x2a\xef\x4f\xa9\xe8\x24\x69\x8d\xca\x93\x6d\x15\x1d\xe4\x6f\x85\x2d\xce\x5c\xd8\x60\xb5\xd5\xe5\x1b\x13\xf3\x3d\xc9\xc9\x9e\x02\x13\xd7\x9b\xd9\x52\x96\xa5\x0e\xcf\xa9\xee\x71\x75\x6e\x69\xb3\x5a\x5b\xb7\x76\xba\x7a\xaa\x73\xc2\xc3\xb3\xca\x9a\x33\xdb\x36\xb4\x24\x27\xb7\x6c\xf0\x9d\xcb\xac\xcf\x8a\x8a\xca\xaa\xcf\xcc\xaa\xcd\xd0\xeb\x33\x6a\x71\x49\x4a\x45\x5a\x64\x64\x5a\xb9\xdd\x5e\xce\xfe\x4a\xe3\x76\xf3\xf6\x27\xdc\x6d\xd2\x4e\x79\xdc\xe2\xd4\xd4\xff\x46\x86\x48\x32\x84\xcb\xed\x62\xc7\x35\x93\x93\x45\xd4\x39\x27\x10\x89\x70\x4f\xdf\xfd\xa3\xb5\x2a\xc7\x91\xa6\x0e\xe2\xf9\x2c\x1d\x39\xdd\xb3\xe0\x81\xc5\xb9\x00\x33\x2f\xfd\xfe\x4c\xf8\x8f\xad\xf5\xa5\xd9\xa1\x10\x57\xd0\x53\xe4\x24\x53\x25\xa1\xb0\xfd\x18\xa4\x74\xec\xec\x75\x15\x14\x2e\x3a\x3a\xb3\xf7\xe4\xd2\xe2\x86\x1d\x4f\x0d\x56\x9d\xfa\xe3\x63\x3d\x70\x06\xb6\x69\xad\xae\xc4\xe2\x9c\x85\x33\x1d\xb6\xaa\xbe\xec\xec\xde\xca\x64\xa6\x26\x94\xde\xfe\x27\x77\x88\x4b\x40\x5a\x64\x22\xf5\x8b\x8f\x64\x36\xb4\xe9\x2e\x6c\xeb\x1d\x46\x58\xee\x50\x0a\x21\x77\x27\xde\x57\x7b\x4a\xe3\xb2\x8a\x0a\xc2\x83\x7f\xa1\xba\xa2\xa2\xba\xa6\xb2\xbc\x0a\xaa\x3a\xb6\xb6\xdb\x6c\xed\x5b\x3b\xf6\xb7\x6f\x6b\x4f\x49\x21\xff\x84\x0e\xf6\xf7\x0f\x3e\x36\xd4\xdf\x4f\x23\x19\xfa\xc8\x43\x3f\xe0\xb4\x77\xc8\x3a\x25\x91\x75\xf8\x83\x07\x3e\x82\xb9\xe1\xb8\x27\x7f\xfb\x28\xad\x57\x39\xff\x63\xee\x92\x62\x3f\xd2\x20\x3d\xa9\x97\x2e\x62\xba\xbd\x85\x09\x64\x87\xd2\xc4\x5d\x4a\x6d\x5e\x51\x59\x35\xd2\x9c\x7a\x26\x3c\x29\x3f\xb9\xb1\x06\xfa\xcf\x3e\x32\x4c\xe4\x6e\x23\x95\xbb\x8d\x19\x91\xf6\xf8\xf0\xca\xcc\xef\xbd\x2d\xd9\x5a\xf2\x48\x7b\x4f\x90\xf6\x66\x90\xe7\x1b\x42\x99\x2c\xcb\x9e\x6e\x83\x23\xc1\x2d\xda\x3b\x65\x3f\xed\x00\x13\xe6\xda\xab\x1b\xca\x2b\xf2\xeb\xe1\x01\x8a\xff\x74\x2f\x6d\xb2\xd7\x94\x9d\xca\x98\x39\xe2\xce\x5f\x32\xd3\x71\x01\x9a\xcb\x2a\x1b\xa0\xab\xb6\x1d\xbe\x52\xe0\x48\x2b\xc8\x4c\x75\xb4\xe5\xc7\xc7\xe5\xb7\xe7\xe6\xf5\x46\xa5\x1c\xce\xeb\x2c\x88\x8f\xc9\xef\x2e\x4e\x2f\x2c\x72\x94\xe6\xd0\x36\x9a\x10\xe2\x1e\xe7\xb4\x9f\x89\x2f\xe2\x79\xf9\x84\x7d\x77\x7c\x91\x83\x88\xb0\xe2\x25\x4b\x1e\x10\xef\x55\xc0\x86\x07\xc5\xdd\x3f\x56\x83\x7d\xe7\x13\x4f\x0c\x63\x85\xa8\x03\x63\x2c\x6b\xb3\x9b\xb4\xf9\x20\xa7\x9d\x90\x5f\x40\xe5\x97\x72\xba\xfc\x92\xe3\x07\x19\xed\x7a\x47\x36\xfc\x48\x7c\x58\x17\x51\x9f\x56\x3a\xbf\x3a\xc9\x5c\xb7\xa2\x3e\x6f\x61\x6b\x36\x77\x5e\x51\x5f\x68\x76\x24\x86\xb5\xd4\x46\x27\xc7\x47\xce\x80\x5d\x70\x6c\xf7\x93\x2a\x2d\x41\x21\x14\xb9\xe6\xd6\xdb\x0d\x85\xed\x2e\x47\x26\x99\x2f\xf1\xa5\x0d\xaa\x19\xa1\x2a\xda\xce\x42\xf2\xfc\xa3\x9c\x01\xc5\x32\x3b\xad\x29\x2e\xcc\x2f\xbb\x12\xa6\x54\x41\x9a\x6e\x1c\x19\x09\xad\x2c\x4b\x2d\x5c\x70\x90\xf8\x97\xa8\x84\x39\x45\xa5\xfd\xa5\x09\x36\xcf\xd2\x8a\x9a\x95\xcd\xf6\xfc\x91\x47\x97\x1f\x71\x34\xa9\xa1\xad\x34\xc1\x61\x8e\xa8\xe5\x0c\xbb\x7e\x68\x4c\xb5\xd5\x0c\xe4\xe5\x0f\xd5\xa6\x50\x0e\xf1\xdc\x05\x8f\xac\x2a\x12\x97\xa7\x25\x18\xdb\x3b\x41\x97\x94\x63\x28\x95\xce\xb0\x90\x89\x10\x77\x9e\xd3\x4e\x93\x53\xdc\x79\xf1\xa1\x47\x61\x8e\x58\x88\x97\xe0\x17\x7c\x55\xf8\xf8\x4e\x26\xa7\xa0\x84\xd4\xfd\x30\x99\x2f\xf1\x64\xc6\x14\xa2\x07\xbe\xa4\xe1\x30\x16\xc0\xcf\x62\x10\x23\x13\x29\xc9\x01\xda\xf2\xd9\xa5\x18\x51\xfa\x82\x19\x9f\x55\xa4\x8a\x15\x09\xf9\xbc\xbb\x7c\xe6\x0d\x28\x9f\x62\x80\xd9\x62\x4e\x4e\x4f\x61\xf3\x82\x51\x95\x4c\x48\x4e\x1a\x6e\x77\xa7\xe0\x54\xb0\x05\x4c\xc5\xa6\x45\x7e\xe3\xe2\x36\x81\x3b\xb7\xb4\x21\xbd\x79\x69\x49\xc9\xb2\x96\x74\x8f\x3b\xd7\x6d\xab\x9f\x5f\x54\x38\x5c\x9f\x72\xaf\x2e\xc9\x61\x28\x6e\x6a\x2a\x31\x64\x5b\xb4\xda\x32\x97\xab\xac\xdc\xe5\x22\x91\x86\x85\xdd\xd1\xd1\x83\x15\xf9\x1d\xc4\xf5\x41\xfe\xa9\x18\x8c\x8e\xee\x2e\x74\xb5\xe5\xc5\x91\xf3\x97\xb8\x24\xda\x16\x1b\x9a\xef\x74\xe5\x87\xc6\xda\x60\x65\x86\xcb\x99\x99\x91\x9b\xcb\x64\x21\x99\x87\x1f\x93\x79\x98\x40\x39\xa8\x28\x16\x21\x36\x2a\x94\xca\xc2\x6c\xd7\x14\x59\xc8\x38\x47\xa8\x2c\xa4\x84\x23\x96\x71\x51\xf8\xe1\xbe\xbd\x41\xf1\x9d\xce\xd2\xc1\xb2\x44\x92\x5a\xa2\xb2\x7a\x59\x43\xf2\xb7\x7f\x12\x72\x31\xb3\x46\xdd\x54\x94\x90\x4d\x32\xc8\x24\xe6\xac\x1f\x5c\x10\x67\xb6\x56\x0d\x16\xe6\x13\x6c\x63\x6a\xfb\x7a\x8f\xe3\x1b\x3f\x86\x6d\x80\x52\xe2\x8a\x5a\xdb\x22\x6d\xb9\xf1\x06\xa7\x45\x27\xcd\x03\x27\xf1\x4f\x3f\xc3\x25\x4e\xe0\xff\xd8\x24\x78\xc6\xb7\x0b\x6f\xf1\xc7\xd3\x71\xf0\x0d\xde\xcd\x3d\xae\x58\x45\xca\xe8\x91\x89\xec\x51\x09\xd1\xe1\x2a\x8c\xe8\x1e\x45\xc4\x8e\xd2\x5f\x5b\xb9\xbb\x73\x25\x15\x91\x75\x2c\xfe\xd9\xdb\x3f\xd8\xbc\x2d\x36\xa3\xc4\x94\x58\x42\x81\x91\x25\x89\xa6\x92\x8c\xd8\x0e\xc8\x36\x9b\x32\x21\xcb\x64\xce\x56\xac\xba\xf1\x91\xb9\x24\x35\x2a\x2a\xb5\xc4\x6c\x2e\xb2\x47\x46\xda\x8b\xcc\xa6\xec\x6c\x93\x25\x3b\x1b\x61\xf8\x27\xbf\x93\x7b\x9e\x60\xa7\x04\x49\x6f\x09\xe0\x01\xd3\x35\xeb\xd0\x72\x26\xab\x8b\xfa\x50\x95\xc4\xc3\x72\x75\xe0\xf1\x1b\x2d\x37\x03\x1c\x69\xb5\x0e\x6e\x13\x7f\x01\x2c\x5a\xf1\xc3\xfd\x85\xb3\x0d\xdc\xcc\xe1\xbd\x08\xc3\x1a\xfe\xbb\xdc\xeb\x8a\xaf\x23\x0d\xca\x20\xf7\xc8\x30\x4e\xd7\x67\x19\x0e\xc9\xff\x01\x83\x2d\xf8\x1b\xc4\x04\xfc\xeb\xb2\x60\x3f\x09\x95\x8d\x96\x5c\xb3\xfa\x60\x64\x6a\xb1\x39\xd9\x95\x91\x61\x34\xa5\x43\x7b\x94\xbd\x38\x89\xf8\xc9\x72\x12\x12\x33\x85\xa7\x33\x9a\xf3\xe2\xe3\xf3\x9a\x33\xb2\xaa\x34\x09\xf6\x48\x08\x34\x97\x65\xc5\xe9\xe3\xf4\x0e\x8b\xd6\x5c\x9e\x6d\x60\xaf\x58\x9f\x13\x91\x74\x16\xbf\x82\xce\x7d\x2a\x26\x80\x46\xf7\x52\x5b\xc9\x2b\x5e\x2f\x29\x09\x6c\x9c\x16\x89\xf3\x38\x35\x2a\x47\x51\x64\x9c\x02\x18\x4e\x53\xd6\x0d\x58\x74\x84\x3f\xae\xcf\x8a\x6b\x72\x1a\xb3\x22\xcd\xc5\x33\x33\x6a\xe7\xc4\x27\x68\x8a\x2d\x25\x0e\x5d\x52\x7a\x64\x79\x4c\x59\x75\x9d\xc9\xd1\xe8\x8c\x89\x0b\xdd\xa8\xd2\x64\xa6\xc4\x64\xa7\xa5\x68\xe8\x7d\x07\x44\x0f\x17\x8e\x4e\x23\x35\x3d\xcd\xab\x00\xb0\x12\x10\x60\x6a\x76\x01\xbc\x8a\xd6\x6a\x16\x42\xc8\x88\xfc\x89\x7f\xad\x26\x9e\x54\x2e\x49\x7b\x67\xb2\x4d\x2e\xdc\xef\x48\x8f\x31\x50\x47\xfa\xe9\xbf\x50\xe7\xf9\x03\xd4\xa4\x3c\xd0\xfb\x17\xd2\xca\xe5\x62\x3d\xcb\x41\x51\x8c\xda\xd0\x42\x32\x7f\xe6\x76\xd5\xb8\xf3\x0d\x74\xfe\x98\xc8\x32\x95\x5a\x41\x20\xc5\x4c\x77\x91\xa7\x92\xbc\x10\xfc\x4b\x77\x82\x8b\x47\x6f\x84\xf1\xc2\xb2\x9a\x39\x1d\x4d\xcc\x0f\x9c\x8a\x33\x94\xae\x7c\x60\x4e\x5b\x75\x44\xbc\xc6\x94\x1e\xf3\xd4\xc0\xd9\xc5\xf9\x9e\x83\xef\x6c\x5a\xfe\xd4\xda\xd2\xb8\xac\x32\x73\x8c\x21\x22\x21\x45\xdb\x3a\xc7\x4d\x0a\xb5\xd4\xc2\x72\xdf\x41\x5b\x52\x56\xa5\xb9\x7a\x61\x65\xcb\xce\xbe\xec\x48\x57\x67\x89\xf8\x94\xb9\xac\xc7\xe5\xec\x71\x9b\xe5\xbf\xdc\x63\x29\x03\x2e\x5d\xfd\xce\xb9\x79\x5a\xb5\xc3\xa2\x8f\x8f\x50\x99\x6a\x97\x37\x14\x6d\x1c\x2c\x49\xf5\xcc\xcf\xcf\x6c\x29\x77\x84\xeb\x0a\x93\x49\x9f\x5b\xc3\xb2\xce\xf4\xe9\x9a\x76\x0f\x38\x23\x6e\xfd\x4d\xa1\xeb\x2d\x31\x15\xd9\xa3\x12\x5d\x95\x44\x5d\x34\x85\xe3\xcb\xc9\xf5\xf9\x26\x53\x7e\x7d\xb2\xce\xee\xc9\x33\x1a\xf3\x3c\x76\xe9\x6c\xf8\x8c\xf8\x63\xee\x07\x5c\x19\xd2\x52\xff\x07\xa2\xfa\xf5\x74\xce\xb9\x67\xbe\x3d\x95\x6c\xee\xdb\x5c\xd9\x14\x9e\x39\xaa\x6f\x7d\x85\x2e\x5c\xe1\x0d\xca\xb3\x4a\xe6\x7d\x88\x8a\xf9\x78\x34\xcc\x30\x00\x92\x93\x98\x8d\x21\xf1\x42\x7a\xc5\xa3\xd0\x9d\x9b\x97\x9b\x97\x47\xfe\x61\x09\xd2\xcf\xc2\x4b\xe9\xa5\xa5\xe9\x69\x45\x45\x92\x8c\xb8\x74\xfb\x0f\xdc\x2d\x45\x24\xab\x57\x08\x93\x11\x72\x9e\x8c\x09\x98\x25\xee\xd1\x66\x34\xe6\x19\x72\xb3\x53\xc3\x23\xaa\xf7\x56\xcf\xde\xd6\x60\x54\x44\xde\x9a\x5b\x3b\xdb\xa5\x0d\x0c\x55\x2b\xef\x4b\x30\x64\x0c\x9d\x5f\xca\x1f\xa7\x7e\x7e\xe2\x4f\xe1\x14\x24\x9e\x5e\x81\x34\x88\xbe\x6f\xa7\x36\x25\xf6\x3e\xea\x17\xb4\xee\x5f\x25\xef\x3d\xfc\xa1\xf1\xdc\xc7\x80\x78\x8e\x0a\x7e\x99\xc2\x51\xda\x12\x10\x8a\x89\x52\x87\x4a\x01\xf1\x0a\x02\xa3\xb9\x3b\x69\x23\xec\xbe\x01\xef\xb5\x3f\xb0\xb1\xbe\x7e\xc3\x85\x76\xf1\x4f\x10\x9e\x35\xab\x2a\x25\xa5\x6a\x56\x16\x79\xfd\x25\x32\x2f\x0f\x41\x7a\xdf\xbd\xb3\xfa\xf7\x75\xa5\xc0\x19\xd0\x67\x37\xe6\xba\x5a\x9c\xb1\x20\x8d\xc7\x12\xb1\x81\xdf\xc4\xd7\x21\x3b\x69\xb7\x96\x8d\x07\xd5\x50\x35\xe0\x00\x8d\x84\xe2\x50\xfa\x51\x1c\x1c\x98\x80\xf3\x83\x9e\x5c\xae\x6f\xd5\x2c\xf2\x64\x87\xae\x85\xc0\x17\xc5\x13\x3f\x09\x89\x33\x26\x47\x86\x85\xa8\x71\x90\x39\xb8\xb0\xaf\x26\x2f\xf2\x9c\xf8\x9d\xb7\xe0\xd8\xf3\x21\x89\xf6\xdc\xc4\x60\x5b\x08\x84\x17\xf3\x75\xae\x96\x39\xc9\xe2\x18\x06\x5f\x81\xa8\x4f\xc8\x4d\x8e\xc4\xdc\x05\xa5\xca\x54\x35\xbf\x1c\xea\x09\xc6\x28\x00\xf6\x27\x96\xe7\xc4\xf3\x70\x42\x08\xa4\xfb\x07\xe3\xcb\x1b\x20\x38\xb2\x44\x94\x46\xc6\xd6\x6e\xe2\x98\x5c\xa4\xcd\xa7\xd3\x45\x71\x97\x98\xde\x24\x87\xff\xc0\x6e\x82\x59\x5e\x38\x4b\xe8\x01\xdc\x30\x4a\x62\x79\x9d\x91\x71\x96\x97\x49\x2c\x2f\x4e\xaa\x1a\x28\x12\xc5\xf7\x9f\x38\x65\xaa\x5b\xd5\xf4\x13\xbc\xc1\xb7\x4f\xb8\xea\x5c\x74\x6e\x78\xe5\xe5\xac\x88\x8a\xee\x25\xc5\xf7\x96\x2c\xb7\x44\x92\x38\xde\x12\xcd\x9e\xa2\xc1\x2a\xcb\x69\xd8\xb9\x9d\xc4\xfa\x26\xf9\x31\x4e\x08\x31\x3e\x2a\x66\x13\x0e\x64\x96\x4c\x3f\x39\x0a\x33\xb4\x53\x4a\x2a\x99\xca\x4e\x0e\xa4\x92\xa9\x50\x98\xad\x3a\xf8\x8a\xd7\x7b\x3f\xbc\xf0\x2d\x51\x8d\x23\x7f\xce\x08\xf3\xae\x4d\xe2\xcb\xc3\x68\x03\xc1\xee\xf5\x0b\xaf\x13\xd9\x97\xc4\xf6\x4b\xb5\x7f\x2e\x8f\x4f\x42\x3f\xac\xe9\xce\xa9\xbd\x01\x27\x26\xe4\xd6\xdb\x0c\xee\xe2\x9c\xf0\x28\x7d\x79\x53\xa7\xbd\x76\xcb\x2c\xa7\x78\x06\xda\x72\x5d\xae\xbc\x3c\xb2\x81\x90\x33\x59\x52\xe9\xcc\xcc\x08\x65\x50\x90\xb0\x27\x44\x1b\xaa\xb2\xf5\x1c\x9a\x87\x0b\xe0\xe5\xb4\x92\x92\xb4\xd4\xe2\x62\x16\x7b\x47\x9e\xbd\x50\x81\x50\x34\x99\x03\xe1\x18\xe8\x73\x73\xb9\xa9\x0f\xd6\x18\x2f\xc1\xc2\x9b\x06\xff\xe3\x9c\xea\x89\xc7\x45\x8b\xf7\x0b\xb7\xe1\x56\xff\xb4\xc7\xf0\x48\xea\x3b\xe2\xfa\xe4\xfe\xea\xc7\x7a\x05\x50\x9f\x67\xae\x91\xd9\x3c\xa8\x1f\xe2\x7b\x40\x7d\x10\x7f\x0c\x05\xeb\xd8\x6f\x2f\xf1\xe6\x95\x8f\x5f\xff\xe4\x2f\x97\x28\xf6\xe8\xf6\x19\x7e\x88\xff\x3d\x2a\x43\x6d\xa4\x3f\x6a\xcb\x5d\x76\x3a\xfe\x7e\x22\x33\x99\x53\x41\x3a\x3c\xe9\x89\x15\x73\x72\x55\xad\x56\x8b\xcc\xe7\x46\x27\x48\x12\x3b\x67\xc9\xaa\x05\xf7\xaa\x2a\x88\x33\x2d\x28\x2f\x9b\x57\x69\xca\x1b\xda\xd7\x32\x28\xd8\xaa\xe6\xe4\xcf\x3e\x30\x2b\x0d\x03\xce\x9f\x7f\xa8\x33\xb6\x20\x37\x33\x3c\x2b\xaa\xb4\xaa\x3a\xe1\xe0\x97\x77\x95\x71\xc0\x55\xdc\xf3\xde\xae\xce\x53\x23\x65\x61\x6a\xf1\xbc\x31\x37\x35\x4e\x59\x4b\xce\xc1\x66\xb5\xc9\x05\x8a\xd0\xf4\x28\x4b\x6e\x5a\xd3\xe2\xe2\x86\x75\x33\x53\x0b\x67\x95\x1a\x6b\xf6\xbc\xbc\xae\x68\xe3\xcd\xad\xee\x80\x30\x5d\xf0\x6e\x4d\xac\x26\x60\xee\xd5\xbf\x1f\x4d\x3b\xf2\xd7\x6b\x73\x1d\x8b\x2e\x2d\x17\x0f\xa5\x0f\x5b\x42\x76\x84\x1b\x92\xc2\xff\x11\x6e\xab\xcc\x32\x97\xa6\x47\x23\x84\xfc\x5c\x2e\xe7\x18\x86\xda\x4d\xda\x5b\x98\x19\x25\x30\xbd\x99\x52\x56\x59\xa7\x1f\x8d\xb5\xa6\xc9\x67\x61\xa5\xfc\x42\x47\x0a\xa9\xf9\x73\x6f\x75\x7f\x7f\xef\x9c\x47\x36\x56\xeb\xf3\x66\xd7\x38\x1b\xb2\xf4\x55\xa3\xe7\x3a\x06\xce\x2f\x2b\xf4\x1a\x8b\xba\x5c\x99\x5d\xe5\xd6\x84\xd2\xbe\x22\xae\x6c\x51\xbd\x8d\x9c\xa6\xca\x0d\xa5\x45\x39\x1a\x2e\xeb\xb4\xef\x9f\x4d\x9d\x90\xb7\xe4\x81\xf9\x8e\x85\xb3\x3d\xfa\x28\x4f\x67\x5f\xca\xfc\xb3\x0b\x73\x4a\x97\x1d\x9f\x99\x3f\xab\xdc\x94\xe0\xee\x2f\xcd\x9b\x55\x99\x74\xda\x58\x31\xbf\xb2\x72\xae\xdb\x40\xa0\x56\xd1\xa1\xf0\x9e\x3f\x47\xf4\x36\x52\xf7\x2c\x8a\x49\xe3\xa5\x73\x5e\x4e\x38\x3b\xea\xc2\x94\x1d\x5c\xe6\x2c\x01\xff\xb9\x17\x6a\x6e\x7c\xff\xe7\x9e\x6d\x2b\x06\x53\xc5\xef\x0e\x90\x84\xad\x15\xeb\x1f\x1d\x2a\xde\x58\xe2\x32\xf5\x17\x97\xce\xad\x32\x1f\x3b\xba\x02\x66\x68\x33\x8b\x6a\xec\xad\xc3\x05\x5a\xee\xb5\xdb\xc0\x9b\x4a\x3a\xb2\xc5\x91\x80\xb2\x15\xe7\x06\x87\x2f\x2d\xcb\xd7\x47\x9f\x89\x88\xb7\xd5\xce\x2f\x3a\x77\xf8\x34\x8c\x6a\x08\x8b\x70\xe1\xbc\xdd\xf5\xd2\xbc\xfb\x3f\x52\x2f\xea\x23\xcc\x40\x73\xdd\xc1\x89\xc6\x90\x60\x1e\x70\x06\x70\x08\xfb\xb9\x67\x63\x11\x60\x84\x59\x74\x29\xf9\xc3\x33\xa1\x2b\x65\x17\x2d\xa6\xec\xe6\x09\xd3\xbe\x26\x5f\xd0\xa3\x05\x0b\x9a\xac\x12\x28\x49\x4b\x3a\xa5\xfa\x4f\xa4\x0a\x79\xd2\xe4\xe6\x69\xe4\xe8\x59\xd2\x11\xae\xa9\x1d\x81\x83\x12\xda\x5d\xd9\x4d\xae\xb8\x7b\xf6\xb5\xff\x31\xae\xbd\xb4\x74\x66\x96\xf6\xc6\x9b\x5f\x2d\x1b\x19\xea\xb2\x8a\x7f\x6a\xdd\xd9\x97\x55\xb8\xe8\xbe\xae\xfc\x15\xb9\xd7\x23\xe2\x8d\x85\xad\x59\x73\x3b\xee\x05\xab\xde\x4a\xb6\xdf\x3c\x5f\x28\xfe\xeb\x87\x1f\xc5\x65\x55\x58\xc4\x2f\x29\x33\x9a\x97\x55\xf7\x1e\x1c\xc8\xd6\x47\x93\x58\xaa\x42\xfe\x31\xc2\xf9\xfe\x0c\x56\xa0\x0b\x6c\xbf\xf1\xff\x90\xf7\x1c\x7b\xff\x3d\x9c\xc5\x7d\x84\xbf\x4c\xde\x87\xd2\x8f\x6f\x7f\x8b\xe2\x09\xc8\x9a\x54\x4b\x79\x78\x59\x0e\x75\x24\x00\x1a\xa7\x0d\x2b\x92\x18\x76\x54\x52\x6f\x20\x44\xb2\x20\xc6\xeb\x48\x16\x4c\x72\x45\x98\x51\xad\x0e\x20\x06\x5c\x09\x22\x25\x3b\xa0\x35\xa6\x71\x0f\x34\x79\xe5\xfd\xe5\x2f\xa1\xf5\xcc\x9f\x2f\x77\x01\x74\x5d\xfe\xf3\x99\x9a\x1f\x9c\x5c\xfb\xd4\xca\x5c\x80\xbc\x91\xa7\xd6\x9e\xfc\x01\x3e\x77\x1a\x6f\xc3\x43\x5f\xfc\xf7\xa9\x25\xa7\xfe\xfd\xc5\x21\xc0\xe7\x7c\x3e\x68\xfd\xff\xaa\xfb\x0e\x80\xa8\x8e\xed\xef\x99\xdb\x76\xc1\x17\x29\x76\x25\x0a\xd2\xec\x25\xc8\x82\x0d\x90\x80\x08\x58\xb1\x20\x76\x34\x85\x34\x8a\x68\x7a\x7b\x96\x34\x4d\x2f\x60\xa4\x05\xcd\x8b\x3d\xc4\x34\x25\xbd\xf7\xde\x7b\x2c\x69\xe6\xa5\xf7\xc8\xde\xfd\xe6\x9e\x33\x7b\xb8\xc3\x92\x67\xbe\xfe\xff\xa7\xba\x73\x7e\xf3\xbb\x67\xda\x99\x7e\x66\xe3\xc3\x15\x67\x09\x1f\xaf\x33\x35\xbb\xcf\x7f\x13\x1d\xf1\x2d\xb4\x02\x78\xfb\x7a\xf9\x7d\xf2\xe9\xeb\xc2\x96\x38\x51\xb9\x62\x5d\x2f\x60\x7b\x3c\x19\xf4\x5c\x6f\x5e\xa1\xc1\x61\x8e\xdf\x4f\x81\x90\x14\x1f\xc9\x46\x88\xf0\xa0\xdf\xfe\x4e\xb6\xf7\x58\xef\x64\xd7\xd8\xdf\xaa\xef\x64\xef\xdd\xbb\x9f\x47\x1b\xaf\xdb\xcf\x74\xf2\x4e\xf6\xeb\x35\x35\x70\x0e\x57\xe4\x9a\xb1\x4e\xe4\x71\x84\x33\x0a\xf1\xf0\xe0\x66\x8b\x05\x17\x10\x45\xee\x4e\x90\x77\x1a\xc9\xeb\xa1\x37\x06\x7a\x36\xcc\xd6\x54\xd8\x3d\xd5\x77\x7f\x7d\xcf\xc7\x1f\xdb\x19\x46\xba\x9d\xf1\xb5\x9e\xd6\xf6\x9c\x9e\x56\xc3\x73\x1a\x1a\xec\x07\xe5\xfd\x74\xd1\x0e\x07\x9b\x59\x2c\xd9\x79\x43\xbe\x1b\x37\xf4\xee\xdc\x34\xb4\x82\x2e\x3c\x9c\x85\xaf\xf4\x70\xcd\xe2\x70\x1a\xc0\x0b\x3b\xbe\x61\x9c\xb1\x4c\xc7\x67\x80\x6c\x65\xf2\x54\x46\x52\x62\x94\xd8\xbb\x87\xbb\xf5\x70\x2f\xc4\xe9\x3b\x7a\x38\x6b\x23\x1d\xfb\xa9\x54\x27\x3b\x9c\xed\x6d\xed\x24\x5e\x67\x9f\x74\xe4\x48\x6c\x7a\x3e\xf6\x58\x7d\x45\x8f\x55\x0c\x3d\xd6\x7b\xef\xd9\x87\x79\x8c\x99\x65\xff\x79\x6d\x6b\xcd\xd1\xcc\xa2\xd1\xdd\x3d\xe1\x5d\x8c\xb5\xc1\x7e\xeb\x68\x4d\xeb\xb5\xdc\x82\xf3\x9a\xf0\xb6\xdc\x75\x9e\x78\xcd\x79\xb9\x94\x71\x0f\xcb\x0e\x6c\xe2\x0b\xc4\x19\x71\x8d\xef\xe3\x0b\xe4\x99\x72\xc4\xc4\x12\xa6\x9a\xad\xe7\xc5\x12\x53\xac\x60\xa6\x10\xa6\x8e\x5d\xce\x17\x4a\xcc\x42\x05\x53\x44\x98\x66\x76\x23\x2f\x95\x98\xd2\xbf\xf8\x56\x19\x8b\x40\x1e\xad\x23\xcf\x06\xc2\x34\xb1\xae\x7c\xab\xc4\x6c\x75\x63\xbc\xbd\x83\x18\xfe\x42\xa0\x8d\xff\xcb\xc1\xe8\xfb\xf8\xbf\x24\xe6\x0c\x7b\x9a\xb1\xd8\x7c\x52\x60\x12\xe1\xc2\xdd\x39\x3e\xc8\x13\xd8\x9b\x18\x03\x79\x92\x2c\xf3\xe4\x5a\xc8\x13\x1e\xcc\x13\xc2\xc4\x12\x46\x9c\x0d\xe5\xc5\x12\x53\xac\x60\xa6\x10\xa6\x8e\x5d\x04\x69\xe1\x94\x27\xa1\x3c\x65\xcc\x44\x8c\x46\x18\xf0\xf1\xdc\x1f\xf4\x19\x2a\xf5\x59\xa8\xea\x43\x98\x58\xc2\x54\xb3\x3c\x55\x1f\xc2\x4c\x21\x4c\x1d\xcb\x57\xf5\xe9\x84\xa7\x2c\xf0\x7a\x88\x3e\xd7\x0a\x4c\x06\x94\xe3\x28\x59\x8e\x67\x42\x39\x72\x57\x39\x9e\x2e\xda\x44\xa9\x27\x5d\x60\x46\x4b\x9d\xeb\x79\x85\x2c\xeb\x0a\x05\x93\x4a\x98\x6a\x76\x25\x3f\x53\x62\xce\x54\x30\x8b\x09\x53\xc7\x36\xf0\x4a\x89\xa9\x54\x30\xa7\x12\xa6\x99\xd5\xf0\xb3\x25\xe6\xec\xd0\x6f\xc9\x7c\xee\x86\x3c\x5a\x3b\xcf\x06\x81\xc9\xf6\xf4\x12\x98\x34\xa9\xf3\xfd\x7c\xba\x4c\xd7\x74\x05\xd3\x9d\x30\xd5\x6c\x0b\x2f\x94\x98\x42\x05\x33\x81\x30\x75\xec\x76\x3e\x43\x62\x66\x84\xf2\x48\x7d\x86\x23\x46\x6b\xc7\x4c\x74\x7c\xe1\x7b\x06\x08\xcc\x78\xf9\xad\x2a\x3e\x4f\xf2\xcc\x93\x98\x3a\xc1\xe3\x33\x0f\x08\xcc\x89\x02\x63\xb1\xec\x9b\x7b\x33\xaf\x48\x79\x4b\x6f\x01\x20\xf9\xc7\x28\x07\x8e\x7f\xb2\x1e\x88\xe8\xe1\x50\x10\x87\x65\x11\xa6\x8e\xad\x65\x7d\x10\xd3\x47\xc5\x44\x12\xa6\x59\xd4\x82\x01\x88\x19\x40\x18\xe5\x5b\x16\x2b\xeb\x02\x2c\x1a\xb0\x10\x47\x3e\xc9\x9b\xc2\x97\xa3\x7c\xb9\x5b\xfe\x76\x50\xce\x5f\xf8\xfd\x24\x47\xae\xb7\x9c\x84\xf2\x6b\x45\x7b\x4d\x31\xa6\x0b\x79\x2e\xb6\xd7\x42\x6c\xaf\x97\x8b\x78\xb9\xe6\x41\x11\x9e\x87\x79\x70\x9d\x4b\x7b\x92\x7f\x42\xf2\xea\x0b\x7b\xa2\xbc\xa7\x4b\x6e\x79\x48\x5e\x77\x71\x5f\x94\xf7\xed\x3c\x7e\x99\x05\x72\x2d\x28\x7f\x01\xee\xcc\xbf\x28\xe4\x57\xe1\xf7\x1f\xd6\xd1\xa3\x9c\xee\x96\x3f\x87\x72\xe6\x94\xc1\x0e\xc6\x28\xfc\x07\x08\xc7\x7c\xdf\xc5\x0c\x8c\x69\x40\x9e\xaa\x71\xf1\xdb\x63\x00\xa1\x01\x42\xb6\xd7\xc1\x50\x2e\x33\x41\xde\x7c\xc1\x00\x64\x18\x80\xf2\xf3\x85\xee\x45\x50\x3f\x66\xa1\x6e\x57\xa9\xf5\x03\xe5\x1f\x93\xbc\xfa\x6c\xaa\x1d\xed\x72\xcb\x22\x79\xdd\xb9\x6a\xde\xa2\x3c\x12\xe4\x58\x2f\xd6\xa9\xf5\xa2\x93\x6f\x94\x31\xb5\x5e\xdc\x23\xe4\x03\xcc\x97\x84\xbc\x18\x75\xbc\x92\x72\xc1\x25\x7f\x9e\xe4\xd5\xab\x39\xca\xb9\x5b\xfe\x23\xc9\xeb\xce\x31\x51\x6e\x76\x1e\xbf\x8c\x81\x5c\x0b\xca\x73\xec\x42\x63\x3d\xc8\x17\x06\xed\x10\x73\x7d\x81\x31\x15\x83\x1c\xdd\x54\x0e\xe8\x6f\xac\x3f\xa9\x4f\x2a\x17\xf6\xa5\x40\xda\xa0\x02\xa5\xad\xee\xa3\xfa\x5f\x1e\xe1\xcc\xb7\x53\x70\xa5\x5f\xd4\xff\x79\xe2\x0e\x3a\xe8\xd8\xb6\x6d\xdb\x9d\x8e\x6d\xdb\xb6\x3b\xc9\x89\x6d\xdb\xb6\x4e\xec\x8e\x6d\xdb\x4e\xa6\x7e\xef\xfb\x9f\x8b\xa9\xb9\x9d\x8b\x79\x6e\x9e\xda\xb5\x6b\xad\xbd\x6a\xe1\xfb\xd9\x7b\x28\xeb\xae\x83\x8b\x0f\x0a\x34\xd7\x47\xe2\x51\x7d\x50\xe6\xea\xac\xa1\xb7\x67\x71\xc2\x82\xc4\xdd\x47\x64\x61\x93\xc2\x3f\xd8\x86\xe8\x53\x3d\xcc\xcd\x08\x0e\x82\x95\xd2\x9f\x8e\xf1\x77\x88\x21\x3c\xce\x72\xa0\x37\xc0\x60\x6d\x33\xa5\x0b\xd7\x5e\x2c\x71\xc6\x2b\x60\x3a\xa1\x62\xd8\xe6\x96\x5a\xe6\x64\x66\xa6\xf9\x93\x45\x18\x32\x08\xc2\xa8\xaa\x7c\x2e\xea\x64\x60\x92\x9f\xcf\x0e\x6e\x75\xec\x48\xe9\x4a\xef\xe5\xb3\x7a\x4b\x08\x21\xae\x2f\x8f\x87\x30\x3a\x52\xc0\xe1\xf3\x94\xfb\xee\x29\xa4\x44\xe2\x1d\xbc\xea\xf4\x12\xd4\x1f\x5e\x16\x38\xeb\x02\x09\x16\x91\x78\xef\x18\x6c\x4d\x79\xeb\x99\xc8\x5d\x2b\x79\x92\xa2\x96\x1c\x98\x3d\xee\x4f\x5c\x4c\x34\xf7\xac\xb5\x8b\x6c\xf3\xe4\xd7\xce\xa4\x31\xfc\x51\x06\x1d\x99\x4f\x4d\x1d\x13\x5c\x3b\xe8\x1a\xe7\xb8\xd8\x35\xd4\x6f\xb0\x84\x0e\x4c\x83\x61\xe2\x6f\xac\x79\xf2\x6f\x9c\x67\x61\x41\x8d\xc0\x78\xde\x08\x60\xdb\x11\xa2\x41\xfb\xf6\x1f\x6a\x2b\x3b\x3b\x97\x60\x1c\xa0\x1d\x62\x90\x03\xd1\x28\x5f\xa0\xc9\xc3\x79\x25\x89\x13\x13\x6e\xd6\x92\xb2\xd4\xe7\x7f\x91\x5e\x3d\x4f\x44\xba\x50\x96\x3f\x92\x4f\x8c\x35\x43\x39\x9f\xc3\xd9\xb7\x11\x24\xf2\x7a\x4b\x9f\x75\xfd\x2c\x2e\xf7\xb4\xbe\xaa\xf5\x12\x10\xd6\xb1\x94\xa7\xcd\x41\x5e\x1e\x1f\x51\x67\xcb\xe9\x2a\xcb\xe7\xe9\xf4\x76\xf9\x13\xce\xa7\xf9\xd2\x6d\x3f\xd6\xf4\x30\xaa\x3b\xf5\xfc\x70\x8f\xee\x7a\xb9\xcb\x2b\x20\xb1\xa1\xca\x6f\x78\x75\x96\x95\x30\x21\x13\x36\x85\x4f\xbf\x55\x1b\x89\x1d\xcf\xed\xf0\x31\x1e\x7a\x3a\x88\xa9\x57\x3f\x8b\x78\x9f\xcd\xc9\xd7\x20\x5a\x73\xa8\xe3\x67\x3f\x19\x71\x5b\x4f\x48\xc7\xeb\xfa\x7b\xfa\x04\x0b\xab\x33\xc2\xab\x0e\xeb\xad\x51\x4c\xd3\xdc\x5d\x68\x7b\x6c\xfd\x5d\x21\xad\xb5\x44\xa8\x73\x22\x39\x0d\xb7\xff\xe9\x3e\xef\x92\x32\x67\x68\x34\x98\x23\x42\x5d\x26\x47\x86\x33\xd6\x94\x18\xc9\xc0\xce\xcc\x37\xae\x34\x76\x9c\x35\xc8\x03\x67\x35\x6d\xda\x73\xd2\x9d\x2c\x76\x08\x27\xd6\xbd\x1e\x79\xe4\xd7\x5e\x99\x79\x79\x97\x8c\x93\x0a\x75\x87\x47\x44\x61\x8f\xbf\xfe\x81\x90\x36\x82\x39\x2e\x2d\xbf\x02\x61\x62\x08\x5e\xe0\xf3\x2b\xc9\x6a\x18\x46\xf3\x73\xf7\xd1\xb1\x1a\x52\x60\xda\x85\x81\x47\xba\x5d\xe4\xef\x3e\x48\xf0\x2b\x47\xec\xa6\x63\x93\xd5\x9c\xc1\x3c\xfe\x7b\x03\xef\x12\x3f\x43\xc1\x47\xf8\xc3\x5d\xc3\x15\x8c\x41\xc8\x80\x61\xb7\xff\x9a\x43\x4e\x8f\x96\xdb\x6a\x13\x4f\x0d\xcb\x91\x4d\x63\x68\x54\xe9\xe2\xe8\x44\x14\x2f\x66\x52\x65\xc4\xa6\x68\xa4\x13\x34\x67\xd1\xfe\xc6\x78\xc3\xc9\x37\x88\x05\xf1\x95\x19\x52\x3a\x59\xa3\xb3\x4c\xd2\xb6\xeb\x31\xf7\x08\xd7\x84\x59\x62\x7f\x63\x02\x27\x17\xda\xf4\x6b\x3e\x3d\x93\x7b\x9e\xdb\xc2\xf4\xf5\x86\x44\x94\xd1\x10\xad\x20\x48\xb9\xa9\x4d\x41\x5b\x46\xeb\x26\xed\x81\xf6\x8b\xe2\xb2\x9c\x1b\x7f\xad\x6f\x92\xfa\xeb\xe7\x9b\x95\x3f\xb0\x45\xae\x73\x6a\x5b\x6d\x3b\xdf\xcb\x5c\x2f\xc1\xaa\x85\x6d\x65\x30\x6d\x98\xa1\x55\x36\x46\xc7\x10\xe9\x8f\x06\x05\xed\xe8\xb8\xec\x6e\x89\x23\x9e\xb9\x96\xfa\x74\xf6\x72\x21\xff\x24\x13\xbf\x44\xf9\xfe\x2d\x24\x9d\x5a\xce\xfc\xcd\xad\x97\x2f\x71\x9b\xab\x30\x0c\x4b\xb9\xf1\x70\x0c\x7e\x62\x7a\x46\xfa\xac\xe8\x8b\x2f\x0e\xde\x51\x95\x9e\x46\x0a\x65\x31\x6b\xf5\x21\xab\xe7\x5f\x73\x1b\xa0\x5d\xbd\xe4\x89\xc4\x5a\x1f\x2b\x9c\x67\x78\x51\x51\xb1\xca\x85\x7e\xae\xa0\xf9\xa0\x6e\x94\xfa\x76\xbb\x95\xcd\xba\x12\x7f\xf1\xc1\xc0\x00\x7a\x6b\xc9\x8a\xf7\x3f\xc5\x8c\xf4\x25\xf1\xcc\xaa\x91\xe3\xac\xb7\xdf\xe3\x03\xfb\xbc\x64\x2c\x8f\x4d\x4a\x6f\x72\xbb\xaa\x1e\xa3\x6b\xea\x35\xd9\x3c\xe7\x6b\x23\x95\x66\x98\x55\xd4\xf2\xb9\xe9\xd5\x9b\x1c\x1e\x12\xae\x86\xea\xdb\xa7\xce\xc3\xbf\x3d\x8f\x95\x3d\x97\x59\xa3\x18\x13\x0e\xbb\xa5\xca\x59\xf5\x68\xae\xbd\x14\x05\xe9\xae\xfd\x34\xcc\x15\x7e\x59\xdb\x46\xe5\xc9\x23\xa5\x5c\x3e\xbe\xc5\xb5\xb4\xcd\xe5\x98\xe3\x21\xd9\xf2\x10\xbe\x4f\x36\x2e\xf8\xe1\x73\xa7\xfc\x92\x84\x38\x1f\x74\x97\x05\x6e\xc2\x85\xa7\x72\xe1\xf8\x15\xf7\x8c\x0e\x31\x07\x71\xe1\x40\x49\x96\x7a\xa5\x5d\x23\x4b\xee\xd7\xe2\x3f\xd4\xa1\xc6\x88\x1f\x25\x0a\x23\xfa\xf1\x77\x4e\xf8\x41\x71\x5f\xa8\xa3\xf1\xdb\x21\x38\xdd\xf0\xcc\xf8\x1c\xa4\xc5\xe2\xa9\xf3\x3e\xc3\x1b\x6e\xb1\x8a\x1d\x49\xaa\x96\xde\xe7\x18\xe6\xc0\x05\x52\xc7\xa5\x41\xf6\x48\x18\x2d\x51\x39\x17\x92\x64\xe0\xb2\x37\xb6\x9f\x75\x85\x0f\x5b\x4b\x3a\x76\x41\xa7\xf9\xd2\xe1\xd1\xab\xb4\x41\x10\x13\x9c\x2b\xee\x51\x23\x75\x55\xaf\x61\xec\xad\xca\xec\xf7\xdc\x3d\xe4\xa2\xa0\xbc\x60\x5b\xac\x3d\x52\x13\xe5\x84\xf5\x9d\x57\xf8\x12\xe7\xe4\x46\x94\x1a\x4e\x92\x2d\x98\xfd\x5a\x0b\xe3\x1f\xe0\x78\x80\x59\x27\xfa\x18\x95\x70\x12\x8d\x0d\x6a\x86\xd7\xa9\x0c\x60\x0e\x82\x99\x5e\xd5\x9e\xc6\x41\xa3\xd7\x3e\xc8\x54\x9e\xa3\xca\x53\xcd\x53\x7e\xce\x5e\x0b\x55\x21\x5e\x2b\x54\x5f\xd3\x7e\x31\x7a\x1f\x44\xee\x34\xc8\x1d\x3e\x5e\xe3\x9d\x4a\x59\x07\xea\x6d\xa3\x59\x61\x64\x44\xc3\x0d\x1b\x30\xca\x9d\x70\xab\x5f\x84\xfe\x44\xb6\xcc\xce\x72\x2d\x98\xf8\x1b\x1a\x2a\xed\x4f\x77\x13\xc0\xe3\xac\xa6\x4e\xb7\x55\x4e\x8c\xcb\x42\x25\x60\x31\x3e\x20\x7c\xfa\x9d\xe7\x34\x8a\x81\xcb\xd8\x8c\x2b\x9a\xbc\x3d\x4a\xbb\x58\xdd\xda\xa2\xcc\x23\x1b\xfa\x04\x63\x3b\xa2\xd4\xfe\x98\xef\x64\x8d\xd0\x45\xf0\x87\x30\x35\x8a\xe3\x2b\xd2\xbc\xab\x0f\x61\xf0\x6d\x94\x10\x3e\x3d\xaa\x65\x25\xf4\x8d\xf1\x28\x15\xdc\x99\xd6\x68\x85\x37\xb0\xb0\x21\x05\x2f\x39\x4d\xd7\x2d\xac\x1e\xfd\x43\x0f\x29\xf5\xf2\x58\xe0\x5d\x16\xb4\xa2\xff\x4b\x31\xc5\xb1\x63\x08\xd2\x2c\x03\x44\xd7\x1a\x2b\x35\x89\x12\xe9\xa9\x75\x92\x75\xec\xc8\x44\xea\x40\x87\x72\x73\xcb\x56\xae\x98\xd1\x59\xe3\xa9\x80\x92\x76\x1a\x61\x38\xd5\xa5\x67\x74\x16\xcc\xe7\xd6\x11\x0f\xf3\x16\x1d\xb7\xdd\xb1\x2d\x40\xd5\xeb\xca\x34\x6a\x1c\xcb\x7e\xa4\x85\xe0\x09\xb8\xef\xf0\x95\x32\x42\x6c\x3e\x2f\xbc\x49\xaa\x27\x84\x68\x1d\x6f\xda\x3e\xfb\x77\x1c\x60\x5a\x47\xa4\x98\x3e\x0c\xb1\x2d\x33\xd9\x9a\xcf\xf7\x4f\xa2\xfa\x4e\x30\x14\xeb\x5b\x99\x21\xe7\x15\x03\x82\xa0\xef\x46\xf6\x53\x5f\x6a\x12\x73\x3c\x43\x8a\xae\x3a\x52\xa5\x91\x3c\xbb\xa6\x17\x81\x43\xb0\xa4\x5d\xeb\x51\xb3\x66\x2e\x6d\x90\xf8\x8e\x02\xc2\x05\x9b\x7c\xbe\x9b\x81\xcc\xfe\xe9\xc7\xa4\x81\x31\x8f\x13\xe0\x48\x02\x5d\xb4\xe3\x20\x91\xe1\x31\x90\xd4\x8a\x50\xe4\x5e\x02\xe9\xf4\xcf\x77\x38\x0b\x10\xae\x29\xa8\x8b\x72\xb4\x1f\x3e\xfb\x1b\x77\xa9\x07\xf8\x4b\xf8\x9c\xea\xb0\x0a\x53\x9f\x66\x44\x5d\x36\x5e\x7b\xfa\xf9\x69\xce\xa7\x76\xe3\xf7\x31\xf7\x68\x7d\x12\x17\x8e\x06\x67\x8f\xb6\xd3\x85\xdb\xff\x48\xbd\xc1\x42\x2b\xb2\x64\x68\x94\x31\xfc\x7a\x51\xcd\xb1\x14\x50\x7c\x94\x98\x39\xb5\xdd\x3c\x27\x2e\xc7\x1b\x9b\x55\x6d\x80\x67\x12\x4b\xd3\xee\xf8\x4e\x64\x36\x74\xc9\xd9\xa3\xa7\x2f\x3a\xcc\x29\x33\xf8\x90\x43\x9f\xbe\xd5\x5b\x3c\xbd\x2a\xc4\x09\x97\x74\xa2\x08\x71\x5c\xcc\x9a\x11\x95\x80\x9a\xa9\x30\x7f\xe3\x88\x88\xc2\xe1\x37\x3d\xe7\x3f\x53\x92\xd3\x3f\x33\x2e\x02\xca\x67\x2c\xca\x77\x2e\xee\x2e\xf5\x7c\x45\xb2\x9f\x86\xae\x1f\xde\x2d\x52\xf7\x96\x4c\x8c\x52\xc9\xa7\x9a\xa8\x2c\x8c\x6d\x89\x4b\x96\x47\x32\x93\x3c\xae\x7a\x42\x7c\x51\x91\xa5\xc0\x6a\xe5\x37\xbb\xbd\x7a\xba\x03\xb0\x49\x53\x36\x46\x22\x02\xde\x11\xae\x29\x9f\x3f\x77\x1a\x17\x59\x9a\xbd\x63\x18\x2f\xb8\x42\x01\x23\xd3\xae\x47\x01\x7d\x10\x69\x59\xdb\xe4\x47\xee\x20\x80\x22\xf8\xad\x01\xc1\xb6\x75\x2f\xdd\xfd\xf5\x61\x9e\x80\x1b\xc9\x2d\x91\x59\x26\x8f\x5a\x9e\x0b\xbd\x30\xc1\xe8\xfe\xfe\x02\x37\x74\xf1\x84\xe8\xdb\x82\x64\x99\x27\xdf\x22\x81\x61\x55\xf0\xdd\xd3\xd8\xb5\x4d\xfd\x76\xf2\xb6\xa7\xba\x93\x0e\x29\x93\x91\xa2\x90\xc1\x11\x71\x58\x26\x0d\xb4\x47\x09\x0a\x52\x95\xb9\xa9\x91\x16\xe6\x3a\x6b\xd6\x3b\xb1\xd6\xaf\x5e\xd4\x7b\xe3\xa4\xb0\xed\x65\x31\xb1\x9d\x9c\xa5\xe9\x29\xbe\x0b\x3c\x37\x5c\x50\x70\x37\x62\x99\xa0\x80\xcc\xba\xdc\x0b\xc5\x22\xe1\x4a\x65\xdb\x6c\x47\x26\xd4\x23\xcd\xbe\x2b\x38\xcc\x85\x41\xc1\xfa\x32\x05\xe5\xfc\x9a\x09\x6b\x67\xd4\x4c\x32\x9f\x73\xbc\x64\x4d\x79\xd3\x6e\x06\x9c\xc1\x52\x03\xc3\xe8\xbc\xf8\x6e\x7d\x0f\x79\x8e\x13\x47\x86\xb9\x54\x0e\x42\xe8\xb1\x9b\x56\x26\xf5\xb2\x7f\xbc\xe9\x37\xfc\x6c\xd3\x79\xa2\x30\xdf\x4f\x1b\xae\x6d\x2a\x4f\x0e\x1a\x3e\x41\x54\x45\x88\x09\x09\xdb\x06\xa8\x00\x2e\x06\x62\x20\x05\x07\xc2\x88\x0c\x0e\x30\x39\x62\x50\x86\x1c\x58\xd2\xe7\xa2\xb3\x9f\xbe\x35\xed\x58\x2c\x1b\x4b\x7f\x61\xe7\x3a\xa5\xe6\x44\x97\xe4\x45\x64\xd6\xed\xdd\x0c\xfb\x14\xc5\xb1\x82\x89\xbb\x6a\x34\xc9\x1e\x44\x3f\x0d\x17\xbb\x23\x17\x15\x92\xd8\x70\x82\xcc\x38\xcc\xc2\xae\x9b\xbb\x83\xd0\x2c\x42\xc9\xf1\xd9\xe0\xa0\x0e\x64\x54\x55\x3a\x91\xaf\xa6\x35\x0e\x72\x16\x33\x8a\xd5\x8b\x14\xe5\x77\x70\x94\xb0\x81\x75\x13\x38\x55\xaa\x81\x30\xb5\xe4\xf3\xbc\x93\x46\x65\x2d\xa1\x2a\xcc\x14\x96\x36\x5d\x9f\x99\x40\xf1\xc2\xe5\xe3\xfe\xae\xea\xea\x62\xbd\x4f\x64\xd3\x7d\x09\x92\xa1\x69\x33\x5a\x0c\xda\x87\xa9\xc6\x3a\x26\x38\x40\xd0\x67\x12\xcb\xec\xa9\x39\x34\xf9\xfc\x6c\x29\x92\x3e\x66\x90\x51\xd4\xf6\xb9\x22\xfb\xf4\xf5\x70\x36\x0f\x8b\x37\x8e\x36\x1e\x5c\x69\xab\x6a\xea\xe7\x67\x17\x25\x1c\x66\x27\x8d\x66\xa5\xc7\xd3\x93\x86\xea\x2d\xb0\x32\xda\x1d\x8a\xf6\xd9\x85\x66\xab\x1f\x89\x03\x89\xb5\x91\xad\x69\x92\xec\x14\x85\xbc\x0d\xab\xcb\x24\xcd\xf5\x0e\x62\x55\x7b\x78\xb5\xd5\xbe\xba\x1c\x17\xf4\x7d\xa5\x3d\x68\x96\xab\xe2\x42\xb7\xb8\x61\xe5\x9a\xd6\xde\xdb\x66\x69\x26\x68\xb5\xbf\xf3\xd9\x56\x7f\x07\xbd\x56\x3a\x19\x63\xc8\x2f\x77\x4b\xe6\x0e\x77\x1c\xaf\x7c\x41\xa7\xf1\x46\x27\x73\x5c\x25\xc4\xd5\xaf\x51\x05\xb6\x43\x2c\x11\xca\x1e\xbc\xd5\x77\x7c\x45\x9c\xbf\x78\xb6\x01\x91\xf0\x16\xc7\xbf\x7e\x56\x33\x82\x8f\x88\x44\xae\xf6\xe9\xd0\x55\x35\x7e\x06\x34\x08\xe1\xde\x59\x80\x20\xec\xc5\x4b\x84\xfd\x39\x84\xd7\x9e\xde\xe2\x3e\x23\x29\x02\xd3\x7f\x58\xa7\x47\x91\x1d\xa9\xb9\x76\x27\x7a\x00\x49\x73\x24\x52\xaa\xae\x0c\x91\x67\x50\xfb\x20\x9c\x5b\x21\x53\x87\x41\xcc\xf1\x5c\x67\xab\x44\x8b\x04\x28\x23\x8a\x20\xa5\x5c\x0b\xe2\xf0\x50\xbc\x7a\x91\x1e\xd4\x61\xd5\x54\x29\xdd\x6d\xd8\x55\x6f\x3c\x9a\xb5\x0d\x37\x8d\x5c\x7d\x4a\xe6\xe6\x49\xcd\xdd\x65\xc7\x50\xc2\x7f\x89\x98\x2b\x46\x36\x90\x9d\xdf\x8a\x6b\xb5\x9d\x9a\x37\x27\x41\xc7\x66\x38\x8c\x59\x94\xc3\xf4\x84\xb0\x93\x87\x2b\x33\x33\x17\x40\xba\x4d\x47\xb9\x07\xa8\x2d\x43\x4c\xb7\x76\x58\x9b\xe3\xfb\xa7\xad\xbe\x76\xa7\xcd\x13\x9d\x9d\x17\x6d\x2c\xcf\xef\xd8\x0b\x5e\xff\xaf\x52\xc5\xe2\xa9\xf7\x24\x1b\x82\x17\x51\x26\x08\x70\xe5\x58\xeb\x3d\x5c\x1f\xae\xaf\x5b\xd8\x1f\x63\xeb\x52\x7a\xbe\x0a\x70\xe3\xca\x3a\x4e\xb4\x81\x07\xae\xc7\xc5\xf9\x7c\x53\xf4\x84\x60\x4e\x4d\xdb\xe7\xab\x62\x62\x72\x20\x3e\xf8\x4f\x09\x6c\x18\x44\xf9\x43\xae\x64\x2e\xb1\xbf\xab\xc5\x11\x6d\x2a\xbb\x75\x7e\x12\x08\x17\x83\x7e\x13\x4b\x3b\x35\xd3\x38\x91\x81\x8d\xc5\x02\x85\x7a\x06\x38\xf5\xbd\xb8\x7b\xa9\xaf\xbb\xa5\x1f\x01\x9d\xef\x71\x84\xad\x63\xdd\xed\x8d\x69\x89\xa4\x78\xce\xa0\x50\x4b\x08\x84\x03\x69\x69\x38\x12\x26\xc5\xdf\x76\xe4\x71\x5d\x76\x86\x38\xa3\xcc\xfc\xf9\xb7\x13\x88\xc1\x59\xff\xe0\x9f\x67\xa7\x44\x45\xfc\x78\x53\xc6\x7a\x17\x1c\xc1\xc6\x05\xa1\xb8\x97\xea\x71\x35\x18\xc5\x1e\x12\x78\x48\x86\xef\x7e\x95\x00\x37\x41\x6f\xc4\x25\x84\x46\x2a\x04\xb3\xa4\xd0\xc8\x19\x3a\xdb\x81\xbc\x4b\xfc\xf9\x17\x6e\xa3\x0d\xef\xc8\xe3\xc0\xce\x71\xc4\x2b\x05\x51\xbf\x4b\x31\x5d\xf7\xca\x47\x98\x43\x5b\x22\x49\x5d\x4e\xe6\x0a\x61\x3b\x44\xda\x40\x26\x57\x1b\xd6\x42\xad\x22\x03\x09\xe4\x92\xf4\xcd\xfc\x25\xd2\x47\xed\xb4\x1c\x8f\x66\x82\x7e\x5f\xb5\xd9\x66\x28\xd7\x4d\x05\xf2\xf3\x84\xd6\x40\x3c\xd7\x6e\x6c\x97\xc3\xa2\x4a\x50\x40\x0d\xfd\x9f\x65\x1c\x89\x62\x59\xac\x3d\x61\x7e\xe8\xb2\x43\xf8\x67\x1e\x61\x3f\xa4\xa5\xdc\xc3\x07\x74\xf5\x4c\xef\xcc\x35\xd1\xf6\xf4\x10\x6a\x79\xa7\xd6\x70\xb2\x04\xce\x1b\x55\x2a\xfd\x50\x6f\x56\x81\x39\x4c\x3d\x7b\x9d\x29\xa3\x15\x40\x4a\x22\xbb\x25\xa0\x75\x52\x2f\xeb\x54\x97\xcb\xfc\x1b\xa0\x58\x40\x70\x1c\x18\x99\x7c\xe7\x19\x79\x08\x6d\x5e\xb5\xa9\x6f\xd5\x73\xbf\xa6\xf5\xbd\x2f\x7e\x90\x56\xb6\x65\xf4\x73\xf0\xdc\xe5\xa6\x6b\x3e\x59\x63\x25\x0f\xe5\x1b\x65\x73\x60\xfd\x16\xff\x6d\x70\x48\xbc\xb4\xa0\x36\xc9\x39\x24\x13\x6d\x44\x5c\x26\x7c\x8b\xe9\xd9\x89\xf0\x99\x67\x5a\xf9\xc3\xf1\xc3\x82\x28\x40\x40\x62\x92\xc3\x2a\x73\xd1\xd4\x2a\x27\x60\x43\x86\xc8\x73\xf3\xd4\x2a\x73\xe0\xa5\x37\xae\xeb\xb6\x54\xe1\x40\x8d\x64\xec\xdc\x5f\x41\xd2\x93\x67\x74\xce\xfe\xc7\x68\xe6\xef\xaf\x00\xd2\x65\x29\xa0\xed\x93\xad\x55\xe3\xa1\x3e\x85\xe1\x07\x99\x7b\xa6\x22\x89\xe7\xe0\xae\x2a\x95\xfe\x21\xf0\x1b\x7e\x0c\x17\xa9\xf3\x21\xb8\x15\xde\x3c\x60\x26\x8e\x2b\x25\x9d\xbd\xbf\xf9\xcc\x84\x39\x76\xf9\x2e\xe9\x1f\xce\xdb\xf7\xd5\x38\x37\x37\x56\x3b\x9f\xcb\xe1\x47\xc0\xc4\xa1\xd4\xc9\x5e\x82\x8b\x88\x88\xa5\x7c\x51\xd3\x82\x7f\xc9\x11\xf9\x0b\x5a\x60\xc3\x5a\x90\x69\xb3\x0c\x3d\x7c\x12\x65\x7c\x57\x7f\xed\x11\xfa\xe8\x94\xbe\xd4\xd6\xc9\x35\xf2\x36\xc1\x59\x96\x24\x24\xf7\x74\xd4\xd9\x65\xeb\x41\xd6\x31\xfd\xc5\xfb\x2c\xe7\x8f\x93\x3a\xd5\x96\x79\x68\x09\xba\xbf\x31\xd1\x14\xb8\xab\x93\x19\x1a\x78\x46\x7b\x2a\xb8\xab\x32\x1c\x0d\x7c\x4b\xcd\xe3\x32\x78\xbb\x64\xf6\x11\xe9\xb1\x77\xaf\x1a\x35\xd7\xab\xac\x7d\xa5\x52\x78\xb8\x99\x87\xd6\xfa\xcf\x26\x93\x51\xa9\x8b\x5f\x48\x55\x5e\x09\x10\xbf\xde\xa5\x4e\x06\x76\xe5\x0f\x12\x8b\x1a\x1f\x45\xba\xeb\xf8\x63\xae\x95\x70\x70\xea\x09\xf3\x5c\xbf\xb4\xc5\x3c\xb3\x20\x3c\x5f\x19\xdb\x25\x34\x7e\x25\xa4\x3e\xaf\x18\x47\xcb\x1a\x56\x39\x86\xd3\x25\xb2\x5e\xc4\x9a\xa6\xfb\x5c\xac\x9d\xd3\x04\x71\xf4\xc8\xd7\x5c\x0e\x85\xac\x2c\x2f\xdb\xe4\xee\x5b\x43\x32\x8d\x2a\x9b\xf9\xd3\x78\x1a\x2c\xec\x19\x60\x29\x33\x99\x5e\x50\xbc\xe3\x45\x72\x97\x2a\x23\x5c\xc0\xbe\xcc\x23\xef\x2b\x8a\x22\xbc\x21\x83\xf9\xba\x49\x79\x7f\x37\x14\x20\x19\x5c\xa0\xe2\x09\x92\x06\x08\xfb\xf6\x34\x0a\x26\x6d\xbf\xcd\x4e\x19\x93\x83\x43\xaf\x89\x46\xae\x11\xd4\xe9\x7b\x65\xbe\x15\xdf\x99\x2c\xe6\x04\x6f\xc8\x90\x78\x8a\xf2\xad\x3a\x27\xe8\x07\x39\x71\x2f\xaf\x4f\x97\x99\x8b\xf2\xcf\x2d\x43\x17\x99\x72\xae\xcd\x7c\x9d\x71\x5d\xf2\xac\x1f\xbf\xec\x01\xb8\x4b\x48\x31\xef\x54\x0b\x7d\x92\xf1\xd4\x48\x1c\x17\xae\x7f\xdb\x12\xbd\xcc\x04\xd8\x5f\xf4\xdb\xab\x94\x73\xe0\x1c\xa8\x81\x8f\x9d\x57\x94\xa7\xe4\x6d\xe4\x1c\xbd\x6c\x03\xb8\xab\x44\xe5\x4c\xa2\x95\xba\xc4\xfe\xaa\x5f\xab\xdf\xdb\xd7\xf3\xff\x1d\xae\x2f\x7b\x97\x7f\x7a\x6f\x40\xd8\x72\x8f\x75\x0d\xdc\x57\x68\x9f\x2e\x73\x32\xe8\xe5\x0f\x7a\xbb\x34\x6b\x21\x37\xa1\x83\xc0\xa2\x2a\xc5\xa0\x2b\xf5\x58\x1c\x26\x95\xfc\x35\x86\x0b\x5d\xe6\x06\x7f\x58\xfa\x8f\x33\x43\xc3\x1f\xab\xd4\x09\xa7\x94\xe4\x08\xfc\x20\xce\xd4\x93\xb7\x70\x2e\x30\xab\x75\xdb\xda\x1e\xb2\x17\x97\x94\x77\x7a\xdd\x1b\xea\xf8\x32\xac\xe7\xae\xf6\xe8\xf2\x0f\x5d\xe9\x35\xf1\xfd\x53\xbc\x8d\x89\x51\xec\x81\xf1\xe4\x3a\xaf\xe3\x41\x3f\x8c\x42\x9a\xb3\x88\x57\x89\x91\xde\xaf\xbd\xe8\x5e\x87\xcb\x78\xd5\x1e\x03\xa7\xda\x22\x72\x81\xd6\x6e\x6c\x16\xf3\xdf\x65\xad\x48\xa3\xa8\x37\x73\x60\x8f\x66\xb5\x4d\x8c\x83\xa2\x17\xf0\xd1\xe9\x80\x60\xe3\x92\x8e\xc4\x1f\x73\xa7\x69\x15\x17\xb8\xae\x93\x50\x5f\x8c\x42\x7e\xb5\x36\xe7\xf2\x56\xda\x94\x93\x8c\x01\x60\xbc\x5c\x62\x9f\xd0\xa3\xd5\x62\x09\xcb\x48\xaa\xe7\x58\x39\x53\xdc\x84\x33\x8b\x4c\x48\xeb\x96\x82\x70\x5d\x28\x24\x5d\x4b\x3c\xb9\x91\xdd\x4b\x89\x44\x1b\xdf\xed\xa8\x04\x37\x51\x37\xf4\x4b\xa1\x24\x3e\xa3\xd2\xd1\xbc\xbb\xf6\x2c\xcb\x70\x78\x06\x5f\xf4\x4c\xd6\x00\x56\x15\xa3\x9c\x93\x08\x43\x43\x23\xbd\x0e\x9c\x17\x49\x77\xc9\x2f\x45\xe2\x9a\x51\xf9\x7d\xd2\x1f\x84\x8c\xbd\xde\xe4\x3b\xf2\x23\x8a\x68\x21\xdb\x8c\xb7\x84\x22\x2f\x02\xfd\xac\x88\x0f\xfe\x68\xff\x5a\xcf\x6f\x20\x14\x68\xe7\x9f\xa1\x08\xf2\x5e\x51\x8a\x50\xae\xf4\x87\x06\xaf\x75\xf7\x9e\x59\x5e\xb2\x67\xfd\x4a\xd0\xfd\x28\x5b\x67\xae\x77\x9f\x21\x5f\x7e\x7a\x17\xdd\x78\x4b\xbd\x6f\x91\x7c\x10\xc8\xf8\x68\xef\x3e\x3b\xbc\xf8\x26\xbe\xf0\xa3\xfb\xc5\x9a\x34\x1d\x03\x7a\x25\x9b\xaf\x51\xd3\x14\xff\x6e\x17\xee\x3e\x93\x4e\xaf\x41\x8d\x2a\x5a\xe8\x57\x86\x6c\x0b\x68\xad\x0b\xbd\x7a\xbc\xe8\xd2\xf9\xe9\xc3\xf7\x8e\xd4\xf7\x7a\x33\x3c\x5e\x57\xc5\x7e\x28\x5f\x48\xeb\x9b\xea\xd2\x31\xbd\x13\x31\xba\x4b\x60\x59\xc8\xc6\x3c\xb1\xf7\x98\x2e\x89\x8b\x7c\x11\x8d\x77\x56\x9a\xbf\xb6\xac\x15\x0f\xff\x8e\xf8\x66\x1a\x37\x5e\x68\xb4\xd2\x50\x2b\x55\xd6\xbc\xbc\x78\xeb\xce\x9a\xf0\x53\x34\x5d\x24\x62\x4a\xff\x9d\x33\x63\xe4\x29\x80\xa3\x95\x53\x3d\xad\x17\xc0\xac\xd0\x28\x36\x36\xeb\x17\xc1\xac\xfb\x91\x03\xd5\x4b\xd8\x94\x8a\x1d\x4f\xa4\x0f\xd5\x9b\x0a\xff\x31\x76\xe3\x2d\x30\x5d\x4e\xfd\x15\xf4\xc4\x63\x22\x20\xe9\x95\x9c\x7e\xc6\x2d\x32\x0b\x7b\x50\xa6\xbc\x2a\xac\x8a\xb8\x1d\xee\x32\x33\xe0\x12\x5a\xfe\x1a\x66\xc9\x93\xbd\x77\xfd\xc1\xc3\xb6\xc9\x9a\xf5\xa8\xdc\xd7\x15\x90\x46\x90\x9f\x66\x9c\x1b\x3e\xec\x9b\xa0\x14\xb0\x4a\x6a\x3b\x5c\x7c\xa6\x87\xbb\xdf\x36\x6d\x2f\x30\xc6\xa2\x29\xb3\x54\x06\x14\x28\x2e\xaa\x2d\xda\xdf\x8c\xa5\x53\xc4\x3a\x96\xc5\xa7\x07\x46\xc7\x04\x8c\x50\x65\x7b\x87\x7b\xe0\x4b\x3b\x52\x93\xd7\x68\x3e\x70\xf2\x76\x84\xce\xb5\xca\xeb\xa8\x65\xf3\x54\x3b\x5e\x5e\xac\xa6\x5e\xa6\xb5\x36\x1d\xfe\x25\xb9\x34\xbc\x8e\x28\x2f\x35\x2d\xcd\xe1\x33\x26\x9b\xd1\xd0\x62\x5e\x53\xf7\x1b\xff\xb8\x00\xed\x55\x3e\xa1\xa5\xb6\x6c\xb5\x49\xf9\x53\xd1\xf9\xfa\xb9\x02\xaf\x9b\x48\x1c\xc5\xce\x40\xe2\xe9\xa2\x05\x6f\x72\x02\xa6\x83\x09\xe4\x9c\xd9\x09\x19\xed\x0d\xaf\x45\x93\xca\x43\x3f\x9b\x60\xef\x47\x4c\x31\x14\xb1\xd0\x50\xd8\xd9\x7c\x9d\xc6\xb0\x13\x53\xb6\x7f\xf3\x78\x89\x2c\xa6\x34\x64\xcd\xdf\xa1\xbe\xc7\xd0\x23\x5a\xe6\x8e\xd8\x10\x36\x95\x6e\xa0\xee\x21\x04\x73\xdd\x4d\xe7\x9a\xdd\x3e\xaf\xaf\xb7\x95\xd2\x5e\xa0\x1b\xf7\xe8\x4d\x3a\x9b\xf6\x1c\xfd\xd3\x5a\x5f\x1e\xee\x76\x38\xda\x81\x68\xc7\x20\x2c\xcd\xe1\xe6\x6a\xa1\x1f\xb8\x0b\xde\xf6\xe6\x69\x96\x9f\xda\x7b\x46\xd6\x30\xf7\x57\xcc\xb1\x7e\x11\xd5\xbd\x56\xbf\x54\x2c\xfb\x84\x6b\x16\x1c\x85\xbd\xeb\x14\xbd\x40\xc9\xd6\x87\xf0\x31\x2a\x7d\xa2\x56\xff\xe8\xc1\xf3\xdb\xc6\x35\xca\x3d\xd1\xa1\x68\x9a\x41\x5d\x9f\x21\x1b\xbc\xe6\x7b\xf1\xed\xec\xa3\x1c\xe4\x39\xee\x75\x8c\xbe\x6b\x3c\xc7\x93\xa0\xbc\xf4\x6e\xb5\xd8\x4e\xbf\xe9\x8c\x60\xf6\x84\xa1\x87\xda\x42\x42\x3b\x66\x4b\x33\x74\x9a\xdf\xb9\xb1\x62\x35\x3f\xec\xd7\xe2\xcb\x9b\x3d\xbb\xf1\x30\x90\xeb\xd5\xe3\xff\x42\xb1\x4b\x9f\xbe\x0f\x24\x38\x7e\x15\xf2\xe0\x53\x20\x08\x55\xc9\x89\x29\x2c\x85\x60\xe4\x32\xb4\xec\x77\xf0\xa3\x9c\x11\xec\x35\xdc\x82\x7a\x67\x18\x1d\x45\xfe\xd6\x74\x5b\x3f\xbb\xe0\x7d\xdd\x19\x2b\x3e\xbd\x57\x53\xc4\x66\x22\xb2\x7f\xcc\x58\xa9\x9f\x0f\x53\xd4\xec\x34\xfa\xf8\xc8\xcc\xe5\x72\x1e\xc5\x56\xdc\xe2\xf3\xdf\xb3\x5c\x46\x8f\x61\x98\x56\x28\x48\x85\x08\xb6\x5e\x33\x08\xc6\x08\x5b\x2b\x32\xce\xad\x0c\x6b\xff\x46\xae\x93\xd6\x1f\x68\x6b\xea\xd0\xba\xc2\xfc\xa3\x37\xe3\x9a\x1d\xef\x27\xf2\xc1\xf0\xa1\x6d\x5e\xb2\x5d\x07\xff\xf8\x1a\x90\x0b\xf7\x52\x0d\xee\xcf\xba\xd3\xdb\x7f\x4d\xc6\xba\x9c\xbe\x9d\x7b\x3a\x69\x2f\xca\xe9\xaa\x08\xfb\x0c\xbd\x67\x69\x4f\xc4\xeb\xd0\xdd\x51\xa3\xe8\x0d\xc1\x38\xb7\x25\xf4\xe4\x6a\xe5\x1f\x88\x57\x0f\x52\x9a\x62\xf8\x63\x8b\xed\xc8\xa7\x88\xb7\x88\xf9\xcf\xca\xb7\x14\xcf\x74\xb2\xb0\xc5\x37\x59\xf4\xa8\xd9\xcb\x0f\xfb\x7d\x3a\x70\xc1\xdd\x0c\x66\xe9\xfe\x57\xb9\x64\x64\x83\xe4\xed\xaf\x43\x49\xb7\xee\x04\x8c\xaf\x6a\x94\x52\x5d\x5b\xe6\xf8\x5a\x43\xb9\x9d\x57\x27\x52\x05\x7d\xb8\xde\x9f\x2f\x9f\x9e\x3b\x98\x33\x14\x8d\xa1\xe4\xd8\xf1\xd3\x5c\x72\x0f\xfa\x8c\xf5\x3b\xdc\x29\x85\x47\xea\x0e\x40\xa8\x61\xfb\x89\x35\x93\xde\x59\x8c\x0b\xcc\x20\xfb\x57\x4b\x0c\x46\xe3\x85\x2f\xe2\x29\x52\xd3\x9e\x6a\xc4\xb1\xd6\x21\x05\xdf\x60\xdf\x2b\xec\x5f\xca\x98\x0d\x33\xfc\x13\x3d\x08\x36\xe8\xc0\x9f\xf4\x2d\xec\xf1\x86\xde\x18\xbb\x6d\xa9\x3e\x24\x61\x84\x81\x37\x7d\xc9\x40\xdd\xfa\x23\xa8\x19\xfc\x1b\xcc\x4f\xce\x7a\xdc\xba\xa5\x2d\x22\xee\x58\x5f\xff\x08\x1b\x1d\xc6\x26\xc7\x00\xcd\xc2\x9c\x6b\xee\xa5\x6e\xe8\x06\x6a\xc6\x02\x79\x30\x60\x14\x56\x8c\x5a\x11\x03\xa5\x28\x01\x97\xdb\x99\xc0\x8b\xae\x15\x12\x0b\x43\x28\xc7\x0b\xdf\xc7\x15\xed\x01\x0c\xdf\xaa\xd6\xaf\x6b\x30\xbc\xf5\x98\x5f\x02\x92\x4b\xd9\xdc\x7f\x62\x55\x46\xfc\xb4\x7d\xa1\x4a\x4a\x41\xd1\x46\x83\x75\x4f\x08\xf0\x7e\xa5\x20\x02\x4b\x95\x81\xaf\x8f\xce\xba\xd2\xdb\x3b\xa4\xd6\x51\x96\x2e\x28\xa2\x38\x02\xef\x2a\x25\x03\x39\xd4\xb4\x5a\x94\x7d\xdb\x84\x34\x8a\x81\x2c\x62\xa6\x3b\x05\x0c\x23\xf0\xfc\x34\x6b\x28\x89\x2d\x08\x61\xb9\x56\x64\xb9\x51\x0f\x16\xc5\x95\x79\x6d\xa2\xcd\xea\x6c\xa0\x7d\x2c\x66\xef\xb3\x50\xef\x13\xf0\x62\x19\x08\x7f\xba\x5c\x00\x69\x86\xb9\x72\x43\x9a\xcf\xc1\x97\x74\xef\xff\xcd\xf7\xbd\xdd\x85\xe4\x5e\xe5\xcd\x59\x17\x0e\xed\xa5\x3b\x60\xd1\x8b\x70\x71\xcc\x33\xfc\x35\x93\xa5\x1c\xf6\xbe\x39\x94\xb2\xd2\x7b\x40\x39\x7e\x3b\xa2\x24\xa0\x73\xc6\xad\xe3\xb4\x41\xce\x95\x82\xc3\x0a\x72\xe7\x64\x7d\xfb\xf9\xe4\xcf\x7a\xc6\x2f\xd5\xfc\xad\x41\x51\xaf\x42\x61\x7a\xc1\xb5\x58\xa3\x94\xce\x27\x69\xfa\xe7\xa9\xd1\xea\x5c\x36\x44\x2f\xd9\x81\xe0\x48\x37\x03\x55\x45\x06\x28\x23\xb3\xce\x29\x01\x76\xf1\xee\x1b\x83\xb7\xdb\x1d\x0f\x71\x3d\x6a\xa0\xdd\xdc\x53\xdc\xa2\x45\x70\x53\x79\x8c\x55\x46\x6f\x57\xfc\xd5\xfd\xf1\x3c\x7b\x9f\xb1\x72\xd4\x49\x8a\x74\x72\x17\xee\xe5\x17\xe0\x91\x93\xc8\x97\x7f\xca\xfd\xc4\xdf\x62\xbc\xdd\xaa\x49\x7c\x00\x9f\x55\x8f\x28\xb9\x8d\x1f\x35\x74\xad\x52\x2a\xc0\x55\x1a\x15\xe4\xa4\x28\x48\x2f\x3d\x7a\x8b\xbb\xb9\xbb\x95\x5e\xb3\xdb\xcd\xfa\xd7\xf8\x8b\x9a\x69\xf3\x16\xb7\xb6\x84\xa5\x56\xa8\xa9\x68\xbc\x5b\x9f\x38\xf7\xf2\x16\x16\x1f\x71\xac\xe9\xab\xaf\xd2\x44\xab\xd2\x82\x81\xe2\x88\x2c\xef\x58\xa9\x9d\x63\xe7\x64\x4c\x5a\x11\xcb\x5a\xcb\xff\x9f\x46\x63\x16\x79\xc5\xb1\x49\xb9\x62\x47\xf6\x5b\xd1\x9d\x5e\xfe\xb1\x64\xc0\x08\xaa\x2c\x9f\x29\x9d\x42\xb5\xe4\x48\xcf\x36\x2a\xcb\xd5\xe6\xc0\xd5\x6f\xee\x85\xdb\x20\x90\x8d\x11\x03\xc6\xac\x69\xa9\x72\x4f\xde\x84\x24\x8b\xfe\x15\xe2\x6e\x7b\xc6\x59\x1f\x63\x99\xac\x60\x31\x62\x9f\x97\x01\xb1\x03\x5e\x1c\x1e\x4c\x80\x28\x25\x22\x68\xc7\xe7\x0a\xe9\x80\x6b\x6e\x77\x36\xb2\x70\x85\x81\xcd\x5b\xa4\x97\x13\x71\xfa\xb9\xbb\x02\xdb\x89\xb1\x65\xb6\x6d\x13\x8b\x72\x00\xd3\x80\xab\x37\x7e\x7a\x07\x24\xa4\x2f\x80\xbd\x1c\x06\x79\x85\x0c\xf2\xd7\xdf\xd3\x0b\xbe\x61\x43\xf9\x62\x06\x7d\xab\x85\xf5\x52\xbd\xaf\xda\xd6\xf8\x2d\x0d\xba\x61\xe5\x8e\xfa\xb9\xe1\x3e\x36\x62\xf5\x0c\x99\xf2\xe6\x52\x74\xb6\x4e\x79\xa4\x60\x4a\xaf\x6b\x16\xad\x4c\xbb\x62\x61\x32\x29\x36\x48\x35\xc9\xc4\x83\x8b\xf0\xe9\x7b\xf6\xfc\xbc\xbb\xd1\x86\xe8\xbd\xf9\xb5\xaa\x27\xa3\xc3\x97\xab\xd9\x79\xb2\xb5\x5b\x2d\xf8\x30\xf0\xf4\x0f\xfe\xf9\x73\x5d\x28\x35\x36\x42\xb4\x4b\x74\xb8\x54\x0a\x48\x3d\x8a\xf2\x82\xef\xb2\x2a\x87\x97\xd9\xd3\x14\x37\x68\xd5\xba\x8f\xe4\xf1\x73\xaf\xcc\x34\xab\x54\x06\xa8\x92\x4a\xf0\x5e\x45\x19\x51\xb8\xf4\x85\x8d\x6c\x22\x7a\xa2\x77\x2f\xb5\x57\x0e\xfb\x01\xf2\x4d\x18\x29\x3d\x98\x68\x05\x29\xdf\x6f\x32\x46\xf4\x71\x08\x1f\x0a\x3f\x37\x6b\xb2\x6c\x2d\x1f\x35\xe8\x2c\x78\xaf\x6b\x48\x78\x08\xa2\xd5\x39\x08\x26\x4d\x34\xfc\xb9\x8e\x1c\x77\x7a\x4f\x7b\xf0\xce\x62\x16\x90\x3c\xe3\x94\x9c\xab\x05\x3e\x78\x77\xd1\xe3\xdc\xd3\x68\x01\xa8\x62\x1c\x41\xf5\xe9\xa7\x1f\x3e\x63\x8e\x3d\x03\xb7\xb0\x8e\x36\x66\xa7\xa3\xf1\x57\x47\x69\x32\x78\xcf\x50\x7e\x47\xaf\x09\xa4\xdb\x53\xbb\xb0\x94\xc0\xf7\x9e\x67\xa2\xf0\x52\x67\x7e\x3d\xb8\xae\x31\x73\x69\xa0\xa6\x7f\xfe\x88\x6c\xad\x04\x91\x24\xa4\x93\x81\x00\xe6\x6f\x81\x41\xac\x3c\x51\x81\x65\x9a\xd7\x8b\xe4\xd7\xac\x83\x68\xa8\x05\x9d\x14\xe3\xa0\xf7\x8b\x6e\x26\xfd\xb0\x2f\x1c\xe4\xda\xf0\x0d\xe6\x36\x1d\x87\x43\x91\xce\xf1\xc4\xcb\xb3\xb8\xca\x5a\xff\x8c\x3d\x3b\x56\x82\x23\xf1\x7f\x25\x18\xd4\xbe\x9f\x5e\xd1\xf0\x69\x92\x1a\x68\x56\xc8\xc5\x40\xc7\xa8\x88\xd2\x74\xdd\xf2\xad\x50\xa2\x1c\xaa\x03\xb0\x49\x55\x3a\x0c\x4f\xa3\x4d\xbe\x5c\xa1\x77\xb9\x94\xcb\x7b\xeb\x2c\x77\x83\x77\xb2\x1c\xc5\xea\xcd\x3e\x88\xcb\xfb\x6d\x87\x70\xf6\x15\x41\x18\x3f\x48\x5d\x01\x12\xa0\x7c\x60\xf0\xac\x40\x7b\xa5\xef\x17\x64\xc7\x02\xca\x48\x89\xa8\x8c\x66\x30\x81\x77\x37\xb4\xe3\x02\xb4\xdf\x71\x79\x02\xe9\x62\xf1\xc8\xe6\x52\x22\x48\xe9\x3d\x7c\xad\x86\x4a\xbf\x8b\x34\xb2\x94\xe2\x06\xfd\x59\x9a\x20\x37\x81\x71\x1b\x45\x71\x2a\x5e\x9f\x7c\xa6\x76\x94\x74\x22\xcd\x07\xa6\xce\xe4\x01\x5f\xc8\x14\x5f\xfc\x78\xe6\xea\x9f\x49\xfe\x04\x4b\xa9\xf7\x24\xdd\x58\xfb\xc8\xa4\xe9\xd8\xbc\x2f\x13\x4e\xa9\x08\x3e\x16\xcd\xc4\x33\x4d\x31\xe2\x2c\xde\x5a\x45\x08\x37\x9b\x51\x0f\xec\x6c\x55\xf4\x74\xc1\x75\xe8\x2d\xc3\x4d\x5f\x2a\x8e\xc8\xd9\x2e\x3c\x38\x2b\xe6\x74\x04\x3a\xc9\x70\x13\xa0\xb0\x9d\xa9\x74\x5d\xbe\x4e\x0d\xc2\x18\xc7\x06\x37\x70\xfb\x30\xbd\x7c\x3b\xd8\x18\xa7\x13\x65\x49\xd2\x40\x0e\x22\x2d\x15\xbc\x57\x7a\xd2\x7e\x1c\xff\x1b\x29\x0e\xc6\xc5\x2f\x3e\xf7\x2f\x96\x5f\x85\x53\x8d\x0f\xfe\x1d\xc0\xac\x77\xcd\x5c\x2a\xc7\xbe\x8b\xe7\x4e\x28\xfb\x23\x38\x75\xc2\x4d\xff\x6a\xcf\x93\xf0\x2d\x5a\x53\x83\x52\x50\xfd\x0d\x61\x58\x28\x95\x30\xd2\x58\x79\xc7\xbb\x47\xc3\x89\x2e\xc5\xf5\x0e\x77\xd6\x94\xd5\xd1\xe6\x4d\xea\x94\x55\x28\x56\xb2\xcb\x37\xa2\x30\x25\xbd\x4b\xc8\x09\xad\xed\x61\xc5\x96\x5f\x18\xaf\x59\xb0\xdc\x17\xfa\x30\x8a\x33\xdc\xc3\x0a\xbc\xf7\x56\x64\x4c\xb9\xec\x7f\x5a\xc6\x59\xa3\x7c\x5d\x45\xe1\x20\x2a\x90\xbc\x90\x11\x9a\xa6\xd6\xe2\x6e\xcc\x21\x95\x01\x5e\x21\x05\x77\x93\xd0\x5c\x7a\xfa\xd3\x91\xa6\x9b\xea\x82\x9b\x09\x3c\x85\x24\x46\x30\x37\xec\x76\x8a\xbe\xff\xfe\x94\xd8\xfc\x6b\x1a\x25\x8d\x9f\xc9\xad\x2a\xde\x9a\xe4\xac\xdb\xf5\x20\x82\x12\x78\x21\x54\x7d\xb6\x1c\xc2\x85\x88\x2c\xf9\xe4\x7a\xb6\xe9\x71\xe0\x91\xc1\xd5\x82\x3d\x43\x65\x8c\xbc\x17\xf0\xa6\x22\xda\xf2\xa7\x5c\x11\xa4\x2c\xc6\x37\x75\x01\xbd\x78\x0d\x7b\x2b\x46\x82\xb4\x26\xd3\x21\xa9\xc8\x57\xe0\x2b\x68\xfb\x15\xc9\x67\x30\xbf\x6d\x80\xac\x7e\x70\x4b\x60\x1c\x1e\x7d\x1e\xd2\x8b\xfc\x8f\x83\x23\xa2\x6d\x75\x56\x6d\xde\x64\xc3\xfc\xd6\x27\xe0\x07\x21\x60\xbf\xd9\x08\xdb\xaf\xfb\x7c\xd2\x95\x76\x87\x59\x37\xf7\x7e\xec\x9f\x84\x9c\xda\xb4\xac\xba\xa1\x4e\xdf\x05\x3c\x15\xe5\x73\xdc\x88\x0e\xbc\xa9\x26\xed\x84\x53\x72\x87\x42\x30\x1f\x05\x50\x95\x73\xf7\x6d\x7d\x35\xba\x79\x24\xa6\xb4\x6d\x35\x90\x76\xc1\x15\xed\xef\x3b\xc9\x30\xd4\x37\xf4\x99\xdf\x4f\x27\xbe\x18\xbc\xbc\xfd\xcf\xbf\xd5\xa4\x88\x95\xbf\xb8\x67\x29\xca\x5a\x80\x1e\x7f\x23\x4a\xd3\xab\x95\xde\x79\xff\x1d\x52\xdd\x01\xcc\xb2\xad\x90\xf2\xf1\x32\x26\x9b\x8f\x52\x47\x49\xb5\x83\x9c\xd6\xc1\x26\x40\x93\x6c\x76\x62\x04\x54\x89\xe7\x0e\xf2\xa2\x2b\xff\xee\xf3\x10\x46\x26\xda\x14\x43\x6e\x8e\x57\x74\x0d\xa6\xd0\x8f\x88\x0c\xec\xaf\x7f\x54\xc5\x7d\xd0\x26\xf9\x36\x94\x46\x98\x67\x3a\x22\xe5\x86\x62\x09\x4c\xf0\xa7\xd6\x57\xc4\xc1\xd8\x96\x6b\xb5\x80\x58\xa3\x3c\x32\x56\xc9\x7d\xd2\x0f\x34\x4b\x26\x23\xd7\xe2\x60\x98\xd8\xcf\xf8\xc1\x4a\x84\x75\x79\x01\x02\x25\x12\x8d\x9b\x9a\x28\xfc\x1e\x69\x02\x1e\x71\x47\x3f\x59\xb9\x9e\xcf\xfe\xa5\x6a\x16\xc0\xe8\x19\x2c\xcb\xdf\x00\x93\x89\x27\xd5\x35\x6e\xa0\xeb\x96\x27\x30\xad\xee\x86\x18\x1e\xe4\xd9\x5f\x6a\xfb\xc1\x8f\x40\x3f\xec\x7a\x9e\x95\xeb\x20\x51\xeb\x3d\xa4\x25\x6d\x22\x57\xca\x09\x05\xd8\xe6\x1c\x35\xd8\xb9\x08\x6a\x90\x83\x4a\xcb\x76\xb8\x1f\x54\x5e\xd9\xca\x1f\xd4\x93\x07\x82\x73\x32\x0b\x8a\x1a\xd9\xf6\xfb\x94\x79\xbb\x7a\xb4\x15\xb4\xb6\x34\xd2\x99\xeb\x2b\x2c\xc5\x4f\x1f\xcb\x03\xfb\xbe\x4a\xd7\xd4\x10\x26\x69\x73\x39\x9c\xac\x86\xcb\x4e\x42\xee\x31\x15\x6a\x47\x71\x2d\xba\xfc\x5c\x40\xe3\x17\x59\xdc\x9c\xfc\xad\x15\x23\x9e\x8c\x1b\xbf\xd9\xa8\x83\xcf\x07\xb2\x55\xd7\x5b\xb0\x97\xb3\xd2\x57\x9d\x6f\x56\x3c\xbe\xac\x9f\x36\xaa\x1a\x6b\xb2\xc1\x1e\x4f\x71\x47\x79\xdb\x26\xa6\x13\x5e\xef\x7d\x8a\x52\x46\xe8\x39\x2c\x17\x78\x9a\x46\xb5\xf4\x66\xfb\x6a\xe0\x97\xe2\x2f\x07\x80\xfe\x7b\x0b\xa4\x5f\x02\x0f\x30\x8c\xd6\xf5\x93\xc1\xa6\x7b\xb0\x46\x2d\x6b\x99\xd1\x6a\xc6\x59\x3a\xa8\x98\x58\x7e\x68\xcf\x9a\x62\x2f\x1c\x65\xc1\xa2\x26\x2f\xea\x6d\xbd\xc4\x03\xda\x80\xef\x6e\x84\x6f\xb0\x67\x25\xb1\xb6\xae\xfd\xa0\x5d\x1b\xd2\x90\xd4\xc8\x1b\x78\xc0\x77\x21\x42\x2f\xf6\xb3\xaa\xd8\x0b\x26\x1b\xa3\xab\x0b\x6e\xc8\xfd\x1f\x14\xbf\x96\xac\x54\x92\xef\x4f\xae\x5c\xb7\x1e\xf8\x97\xd8\xa4\x6b\x3d\xf9\xb7\x0f\x91\x5d\x61\x9f\x06\xdc\x19\x01\x0a\x9f\x06\x5c\xc6\x83\x3a\x75\xf2\x01\x49\x30\x3f\xa4\x30\x18\x87\xde\x63\x3f\x14\x01\xc8\x1b\xfd\xf1\x1b\x86\x36\x20\xd5\x40\x2c\xf8\x17\x7e\xb9\xe0\x55\xad\x64\xe4\xcd\x35\xc0\x5f\x2c\x6c\x5f\xc0\x33\x81\x7f\xab\xed\x1f\x36\xe1\x6d\xa4\x06\xc6\x45\xbc\x50\x63\xd3\xe6\xd4\x4a\x18\xa0\x71\x0b\xfb\xfd\x06\x21\x72\xb5\xca\xe0\xe4\x8b\x65\x72\x06\x3e\x4f\x5e\x3c\x6a\x5b\x73\x98\x6b\x09\xd5\x77\x42\xf3\x92\x71\xfe\x9e\x09\xe8\xc7\x26\xd7\xc8\xe9\x61\xac\x0d\x62\x93\xef\x9a\xde\xaa\x54\xaf\x7d\xd1\x83\x80\x91\x88\xec\x85\x1e\x12\x0f\xd3\x66\x16\xcd\x4e\x4d\x08\x9e\xb6\xde\x0f\xb2\x5b\xf1\x50\xd1\x99\x35\xad\x75\xab\xfe\x84\x63\xa4\xab\xa6\x96\xbd\x4f\x5e\x4c\x79\x5b\xb7\xeb\x72\x14\x24\xbc\x84\x8c\xc9\xdc\x3f\x9f\x5f\xe6\xf4\xce\x22\xe8\x75\x7b\xf8\xb8\xbf\x2f\xd5\x69\x72\x88\x26\xd0\x77\x3e\x2d\x7e\x42\x78\xcf\xf8\xa2\x34\xa1\x04\xe5\xa6\xe1\x50\x7e\x6e\x4f\xb1\x68\x7f\x35\x02\xf9\x63\xf3\x8d\x7d\xca\x80\xd4\x1d\xb2\x23\x9a\xdb\xf7\x37\xaa\xcf\x7a\x3f\xec\x95\xd6\x51\xb7\x7d\x9c\xbf\x9f\x49\x0c\x3a\x3c\x42\x78\x7a\xf2\xac\x3a\x98\xef\x5b\x61\xd1\x5d\x8b\x27\x32\xd4\xcc\x70\x58\xad\x73\xbc\xa7\xbf\x03\xbf\xab\x51\xe6\x15\xf1\x33\x7b\x48\xb6\x99\xe5\xbf\xe9\x5d\x0e\xc0\x04\xaf\x4a\x1b\xf6\xf1\xb6\xab\x31\x5e\xdb\x50\xff\x62\x93\x4f\x32\x85\xb8\xed\x74\xa8\x7a\xb5\xdd\x6b\x7c\xde\xb8\x12\xe7\xff\x20\xe0\x5b\x9c\x6e\xf5\xb7\xdc\x6c\x55\xec\xed\xcb\x1d\xeb\xb4\xe8\xfc\x70\x6e\xd2\x65\x5f\xd3\x6c\x7e\xfa\xdd\x4f\xaf\xd5\xad\x3c\xf3\xfd\xb7\xf3\x99\xb9\x7d\xa6\xf9\xdb\xc2\xf7\x46\xb8\x7b\x2d\x77\x84\xff\x03\x95\x17\xe8\xff\x67\x30\x77\xc3\xa4\x77\x88\x0b\x1e\x75\x63\x06\xbe\xbb\x93\x55\x5f\x4d\x86\xcd\x9c\xe0\x4a\x07\xa6\xa1\xed\xc8\x51\xaf\xe7\x56\xc8\x5f\xe9\xec\x50\x01\x6e\x80\xcb\xa7\xc4\xbb\x95\xea\x35\x75\x54\x83\xad\x97\x45\x30\x3b\x56\x5a\xbd\xc9\x91\xf7\x79\xdb\x79\xc6\x8f\xc0\xd2\xbf\x96\xab\x88\x5d\xa1\xd2\xd2\xb2\xbc\x9e\x10\x9e\xa7\xf8\x30\x30\x17\x8b\x95\xa1\x05\xeb\xfc\x2a\xc9\xc6\x45\xbd\x86\x35\x0a\x13\x4b\x87\x95\xbb\x95\xed\xea\x85\xce\x84\x9c\x60\x5a\x83\xb1\x54\xf0\x44\xf7\x87\xbf\x89\x72\xa1\x52\xb8\x45\xad\x72\x03\xc1\x9f\x3e\xcf\xbf\xe4\x3f\xd1\xeb\x6a\x2c\x7c\x2f\x9b\x97\x08\xfd\xf9\x62\x6b\xb9\x0c\x30\x6f\x04\x7b\x8e\xfc\xab\x9a\x6b\x59\x08\x2a\x57\x5b\xaa\x87\xfd\xf7\x71\xfc\x12\xf8\xe7\xfc\x8b\x1b\x09\xe8\xc0\x91\xa0\x9e\xdb\x35\x59\xae\x9c\x9d\x91\xce\x2b\xe8\xe1\xbb\x66\x0a\x2c\x7b\x71\x71\xde\xde\x9d\x66\x24\x41\xaf\x6c\x6d\xb1\x93\x09\x59\xfc\x3f\x22\xea\x35\x40\x11\x70\x57\xe2\xbf\x21\xc3\x5a\xe4\x41\x9e\x9c\x16\x8d\x60\xfc\x9c\x44\x33\xa7\xc4\x34\xa3\xb8\x4d\xdb\xa0\x32\x23\xbb\x86\x5a\x16\xf6\x1d\x6c\x6a\xe6\xd4\x10\x83\x1a\x34\xbe\xf0\xc0\x63\xde\x48\xea\x9f\xfd\xd1\x2e\x4c\x6d\x6e\x2f\xa9\x69\x6c\x81\xaf\x62\x35\xa4\x24\x66\xf1\x7f\x0d\xf9\xda\x46\x06\x3b\x78\x7a\xf0\x07\x77\xf9\x67\x9e\x70\xac\x9c\xd4\xa7\x62\xed\x6a\xb3\x6f\x3b\xee\xa1\x79\x55\xd0\x6f\x09\x7d\xef\x31\xdf\x18\x3e\x1d\x0a\x7d\x4f\x71\xbb\xe2\x14\x7d\x37\x7b\x4c\xa2\x30\x2e\xbf\xd5\xa2\x6a\xe6\xf8\xbf\xc4\x2e\x83\x5b\x04\xb1\x90\xae\xf0\xeb\xa5\x8e\x4d\xa3\x18\x6e\xf0\x13\x79\x5d\xb7\x0b\x38\x7f\x7a\x73\xeb\x9f\xd1\xf6\x2c\x64\xf7\x98\x88\x1c\x86\x30\x3e\xca\x04\xdb\x6f\x3e\x6a\x9e\x8f\x3c\xaf\x47\x11\x1c\x39\x7b\x3d\x1f\xce\x13\xb4\xa4\x0a\xac\x0c\x09\x04\x6f\xeb\x14\x5e\x5b\xbe\xf7\x34\xa9\xc4\xda\xd0\x06\x3d\xe1\xf1\x69\xf7\x15\xac\x8c\x56\x19\x8e\x38\x0e\x82\x38\xf3\xf9\x84\xd7\x1b\x37\xf6\x80\x53\x73\x5c\xe4\xd3\x9e\xb8\xe3\xf0\x29\xd0\xfa\x8d\x4e\xe4\x0e\x33\x88\x3d\xbb\xba\xef\x86\xef\xf9\x48\x2f\xc3\xdd\xad\xeb\xb8\xdb\xfb\x02\x02\x57\xbe\xde\xc6\xdd\x4b\x3b\xfa\x35\xf2\x4f\xad\x56\x3f\xd9\xd7\xa0\xbe\x4a\x9b\x6e\xbf\x1e\xa3\x61\x9e\x4f\xbe\xef\x5b\xbd\xbf\xa7\xec\x39\x97\x6f\x59\xb7\x5b\xb6\x1b\xb6\xbd\x52\x73\x3d\xaf\xf1\x9f\xae\x5a\x3d\xfd\x09\x9e\x73\xba\xdf\x71\xfc\xfa\x08\x76\x3c\x6a\x0f\x60\xac\x5e\xf6\xdd\xa0\x7a\xb7\xa6\x7f\xe4\x74\xff\x7a\x0f\xc6\xf0\x8e\x83\x7a\x76\xa3\x10\xe1\xc7\x26\xbb\xfe\xe3\x6b\xa1\x4f\x32\x93\xaa\x47\x72\x3e\xe6\x62\x1b\xec\xd8\x2c\x10\x77\x78\x4b\x0b\xbe\x18\x3d\xa5\x30\x06\xde\x79\x79\xc1\x6e\xcd\xf8\x97\x6f\x41\x13\x92\x97\x50\xbf\xed\x04\xc5\x47\xce\x1a\xdc\xb3\x2b\xa3\x6c\x70\x1d\x23\x1b\xde\x59\x78\xe5\xb1\xd6\xd8\x8d\x60\xcc\x73\x6c\xaf\x27\xc4\xc3\xa3\x0a\x7e\x0b\x30\xab\x0b\x24\x6b\xea\xae\xae\x66\x04\xe2\xf3\xba\x7d\x78\xdc\x12\x7e\x01\xbf\xb6\x72\xdd\x63\xc6\xc7\x71\xd8\x49\x48\xf7\xfd\x01\x67\xcb\x10\x8e\x00\x00\x00\x0c\x00\x00\x80\x03\x84\x53\x36\xc3\x28\xf4\x91\xf8\x1e\x01\xf0\x3f\x00\xff\x7d\xa0\x1b\x14\x86\xff\xfe\x73\x41\x8d\xda\x1f\x50\x9f\x8b\x30\xe9\x3f\x9c\x01\x00\x00\x2c\x00\xfc\x7f\xb6\x01\x1e\x60\xc6\x06\x26\x06\x3b\x52\x6f\xde\xc9\x81\x81\xce\x4b\x84\x4b\x84\xe2\x17\xac\x81\x24\x54\x01\xa1\x60\x80\xe4\x6c\xa8\x5b\x0f\xb0\xe4\x25\x08\x07\x93\x53\x1c\xe8\x9d\x79\xe5\xb1\x66\x5b\x6f\xe4\x68\xdb\x07\x8f\xf4\xc5\x95\xc4\x4e\x63\x7d\x06\x98\x74\x83\xcb\xcd\xe8\x4d\xec\x50\x6b\xd2\xb6\x16\xdb\xcc\x76\xc5\xe2\x9e\x8e\x45\xd7\x0a\x8a\xf2\xd3\x8a\xd2\x2d\x42\xdf\x8f\x67\xf7\x8e\x3c\xfe\xd3\xb7\xd1\x38\x4d\x2a\xc9\x86\x54\x81\x24\xdc\x77\x7a\x59\xac\x42\xfd\x89\xa3\x9a\x6b\x57\xb2\xed\xa4\xde\xe5\x6f\x4e\xce\x5b\x4f\x06\x43\x86\x79\x8f\x38\x99\x25\x87\xbf\xeb\x70\x6b\xde\xdd\x33\x1c\x82\x8b\x02\xe3\xb0\x0a\xf7\x54\xc6\x6d\x01\xfb\x49\xce\x48\x3f\x99\x5b\xd3\x64\x9c\xe8\x0e\xb8\x66\x1c\x68\x17\xab\x0e\x94\x8e\xfe\xcc\x50\x94\x28\xf7\x9b\x34\x24\x31\x27\xb8\x02\xfd\x55\xbe\xe4\x78\x08\x4f\x35\xd6\x90\x46\xbd\xcb\x0b\x33\xe0\x5a\x3a\x87\x79\x0f\xed\x9c\x9a\xee\xc8\x15\x24\xbc\x11\xb9\x5b\x1c\xc1\xb7\x27\x4c\x8c\x09\x55\xb3\x4c\x89\x87\xaa\x8c\xc0\x9b\x7b\x58\xb7\x7c\x3d\x24\xd5\x33\x12\xfd\x93\x5a\xeb\x52\x4c\xbb\x96\x35\x4a\xe9\x12\xaf\x53\xd4\x47\xdd\x47\x19\xef\x1d\xa2\xcd\x35\xf2\x7d\x6b\xf1\xfa\x3d\xae\x96\xfc\x23\x18\x2d\xbf\xb3\xdd\x6a\x0e\xd9\x87\xbf\x84\x98\x09\x77\x82\x9b\x6e\x09\xce\xd2\x27\x0d\x81\xb3\x99\x74\xe7\xf7\x35\xe7\xf4\x4d\x77\x9a\x66\xf3\x03\x4c\x5a\xe5\x85\x91\x9a\x0f\xce\x55\xc7\x26\xf4\x51\x2b\x72\x50\xe6\xdc\x63\xd4\x04\xcf\xd9\x46\x61\xf7\x92\x57\x25\xe3\x2f\x0c\x5f\x15\xbe\x05\x3b\x03\xfe\xbd\xbf\x1d\x76\xfd\x53\x26\xf0\xef\x9c\x34\xa9\x04\x2f\x72\x7c\x17\x3e\xce\x4d\x1d\xb3\xdc\x05\xd5\x58\x22\x32\x57\x26\x70\x28\x1a\x42\xa0\x74\x44\x81\x63\x36\xf9\x41\x31\x17\xa5\xe9\x14\x61\x7f\x46\x0e\xf1\x22\xae\x75\xa7\x60\xaf\xcc\xd1\xe1\xd3\x86\xb2\x11\x0a\x08\x09\xf7\x71\xb6\x86\x5c\xa3\xcd\xed\xd3\x40\xbc\xed\x7c\x6f\xe2\x0f\x47\x44\x23\x2f\x2a\x54\xc5\x61\x83\x55\xc6\xac\xc6\xed\x61\x9f\x6c\x2c\x11\xcb\x0d\xd9\x10\xcc\x02\x69\xd9\x78\x3f\x26\x56\x87\x95\x68\xda\xc3\xe4\x11\x8a\xc3\x20\x98\x5b\x30\x96\xe7\x5e\xe1\x35\xa7\xc2\xdb\x52\xdc\x1d\x02\x9c\x8e\xc4\xbf\x95\x37\x06\xc3\xa9\x8d\xe9\xad\xdb\x42\xd0\x27\x8f\xc0\xf5\x76\x3a\xe9\x8c\x10\xed\xf7\xc1\x29\x58\xd2\x92\x6d\x8c\xa1\x27\x34\x26\xf8\xae\x76\x94\x38\xc8\xa5\xef\xa0\xbe\xb2\xc9\xd2\x29\x13\x8b\x96\x23\xc8\x5e\xaf\x67\x1e\xcc\x87\x3f\x60\x71\x44\x58\xe5\x0f\x56\x24\xf5\xc3\xea\x80\xaa\x3a\x53\xd0\x29\xce\xe8\xa2\xd8\x7d\xcc\x76\x47\x92\x3e\x54\x7c\x23\x9a\x38\x5c\x83\xe8\x1b\xe3\x0a\xc3\xf5\x81\x50\x93\x06\xb0\xc1\xe9\xf8\xdb\x9f\x7c\xf6\x79\x11\x8b\x36\x45\x7f\xb5\x4a\x12\x0f\xf7\xc9\x8e\xa9\x27\xe4\xaa\x12\x27\x6b\x2d\x8f\x89\x05\x24\x53\x7a\xd0\x86\x78\x56\x71\x7a\x73\x2b\x3d\xca\xbf\x88\xda\x79\x1f\x8e\x16\xe5\xa2\xcc\x1f\xd3\xe3\x0e\x79\x6d\x4c\xb1\xdd\x99\x33\xff\x08\xf4\x61\x09\x4c\x11\xbf\x39\x87\xe4\x23\x1c\x5c\xab\x0c\xaf\x04\xf3\x05\x5a\x4f\x3f\x24\xc2\xaa\xdf\x5a\x65\x44\xff\xdc\x6f\xbe\xb5\xf3\x88\x79\x9a\xa0\x3e\x22\xac\xcf\x11\x9c\xa1\xc1\xf1\x04\xe6\xde\x4a\x5f\xed\xe2\x6e\x4c\x6b\xf6\x20\x1b\x2b\x3a\xd0\x3b\x97\x1b\x62\x3a\x97\x1d\xff\xf9\x9b\x36\x83\x50\x15\x3f\x19\xda\x45\x93\x73\x39\x7f\x71\x00\xff\x11\x10\x5e\xb0\xb9\xc7\x5b\xd8\x9e\xe0\x88\xb0\xfb\x19\x6d\xc8\x35\x14\xfd\xf7\x4b\xa8\xa7\x4f\xbf\x8e\xc1\xab\x5b\xaa\xc6\xc0\x4f\x67\xc4\x52\xeb\xd1\x7a\x7f\x8d\xa1\x24\xc6\xe9\xc9\x31\xa4\x7a\xe1\x9f\xd2\x6c\x86\xca\x38\x6d\xd9\x51\x14\x14\x90\x32\xb1\xc6\xfd\xac\x96\xa7\x17\x61\x6c\xdd\x88\x5e\xd5\x51\x98\x73\xdc\x52\x6a\xac\x58\xa5\x31\xa1\xe9\x6f\x52\xfc\xc6\x7a\x8c\x55\x4b\x69\x53\xc9\xc1\x8a\xc4\xda\x6a\x12\xec\x2e\xf8\x15\x79\xf6\xa1\x8a\x7b\xe2\x33\x1a\x83\x0c\xcd\x9e\x57\xeb\xbc\x32\x83\x99\x3b\xa7\xa6\x34\x43\xd3\x53\x1c\x3c\xf7\xd8\xed\xa8\xb9\xc5\xd4\xcc\x80\x78\xbc\x64\xd1\x3d\xb9\x24\x0d\xaf\xf6\xdd\x99\x31\x4f\xf5\xa5\x1c\xc7\x1d\x7b\xbc\x7d\x5c\x66\xd9\x39\xb7\xf1\xa5\xd4\xd1\x47\xef\x27\x26\xf6\xf5\xe1\xfd\x28\xdd\x50\xb4\x89\xc8\x01\x8f\x95\xf4\xb1\xf7\xc9\x94\x89\x8e\xe4\xf1\x0c\x51\xfa\x60\x9e\x5d\xd5\x5e\x7b\x92\xbd\x50\x04\x8f\x90\x96\xef\x38\xc2\x9f\xf7\x30\x95\x4d\xe9\x77\x13\x99\x85\xc2\xa4\x32\x45\xb6\x9b\x50\x3e\xc5\x90\x07\xcf\xa5\x83\xd5\x64\x16\xca\x85\xd2\x50\x12\xb3\x90\x23\x3e\x4c\xb4\x14\xb2\x5a\x06\xba\xd3\x0f\xa4\x5e\x86\x17\xe1\xbb\x3f\x9e\x5a\x18\xc3\xbc\x77\xe0\xc0\xf9\x3e\x1e\x9a\xb1\x21\x8d\xb7\xde\x7b\x17\x89\x3f\x12\x0c\x6b\xcb\xbf\xfb\xfd\x32\xda\x72\x31\x5a\x6e\x91\xe1\x35\xc5\x27\xb1\x53\x27\x0b\x02\xbd\x38\xe2\xe1\xe1\xb9\x07\x1c\xbd\x8e\xb3\xf5\xf9\x7f\x5e\x1c\xaa\xd1\x68\x62\x7f\x4a\x52\x9b\xf3\xa0\x52\xef\xeb\xb5\x38\x07\xd8\x66\xe5\x65\xc0\x56\x19\xf1\xc6\x2c\xcc\xe1\xf4\x80\xfc\x28\xe2\x8a\xd3\x5c\x86\xd7\xa6\x3f\x52\x42\x19\xbb\x79\xef\x95\x3f\x13\xd7\x2e\x1d\xf5\x9c\x23\xd6\x16\xda\x95\x87\xb9\x47\xda\x41\xfe\x0a\x5b\xc3\x42\x0c\xe6\xbc\x87\x2a\xac\x09\x63\x07\x1e\x94\xb5\xe4\x92\x15\x57\x43\xd7\x94\x67\x18\xea\x0e\x70\x46\x9d\x2b\x9c\xde\xdc\x42\x26\x0b\xc0\x17\xc6\x94\xd4\xf3\xb6\xb0\x2d\x39\xa2\xec\x91\xb2\x22\x8a\xa4\xfa\xbf\x70\x7f\xb1\x7c\xae\x78\x36\x5f\xed\xbf\x72\x08\x04\xbf\x2f\xca\xfd\xdc\xbf\xe2\x05\xb3\xad\x05\x74\x4b\x3b\xcb\x2b\x23\x3f\x3f\x4a\x32\x5f\xc5\x6d\xae\x98\x0b\x39\x72\xfc\x87\x79\x64\x8f\x6b\x27\x51\x7b\xe3\x3f\x55\x9c\x02\x4e\xe9\x28\x73\xa4\xf9\x2a\xa5\xce\x2c\x27\xb5\x71\x09\xe1\xb8\xf5\x8e\xb5\x7a\xf1\xbe\x06\x7b\xe1\x16\x22\x83\x08\x5d\x36\x47\xba\xc7\x02\x8b\x12\xb4\x13\xb3\xa5\x95\x58\xb8\xb0\xd3\xe5\x14\xc6\x13\x54\xa5\xc5\xef\xd6\x4c\xcc\xf6\x12\x5f\x4f\xbf\x01\x87\x3c\x3a\x9e\x1e\x60\x62\xfd\x10\x75\xeb\x00\x00\x60\x76\xad\x25\x7e\xcd\xd2\xaa\xf5\xd6\x66\x9d\x77\xb2\xe5\xb2\x76\xdf\x66\xbd\xc5\x76\xbd\xc5\x71\xcb\x3b\xe9\x7b\x2f\xc9\x54\x05\xd5\x15\xa6\x9a\xd4\x96\xc6\x16\xf3\x12\x7d\x53\x88\xf2\x54\xf7\xb4\xf0\xb4\xf2\x24\x1c\x8b\x06\x1a\x84\x35\xf6\x32\xf0\xc0\x42\xc9\xd2\x5b\x8f\x50\x05\x65\x83\xbe\x3e\x35\xdd\x80\xdb\x18\xde\x50\xc9\xc5\xa4\x3e\x48\xde\x8e\xeb\x01\xa7\xa7\xbc\xe5\xb1\x85\xd3\xf3\x37\xf7\xd8\xfd\x70\x66\x3f\x77\x4f\x10\x55\x03\xb2\xcd\x20\x72\x27\xb4\xae\xde\x21\x47\x8a\x24\x48\x6c\x53\x7c\x5e\xbc\x53\xac\x16\xc4\xe2\xa8\xb7\xa1\xc7\xa7\xc1\x27\xe9\x23\xe4\x23\xfb\x4f\xc5\x49\x61\x4d\xaf\x43\x56\x2d\x69\x2a\x91\x3f\x3e\x36\x35\x57\x39\x02\xcd\x16\xfd\x1e\x4d\x3d\xa9\xad\x41\xe4\x55\x48\x55\xdd\x55\xe4\x67\x59\x69\xa5\xbd\xe5\x45\xc6\x59\x46\x7c\x86\x6b\x86\xa2\x56\x62\x4b\xaf\x5b\xc7\x53\x3c\x43\xc5\x79\x79\x67\xbe\xe2\xf9\x33\x36\x16\x74\xed\x6e\xd2\x6e\xac\x63\x07\x2c\x5b\x7c\x49\x60\x09\xa1\x59\x7a\x7b\x71\xfb\x24\x49\x83\x5c\xb3\x53\x55\x75\x35\x6a\x75\x65\x55\x2c\x00\xee\x37\xaa\x05\xe2\x03\xcc\x78\x00\x3b\x47\x6d\x75\x69\xf5\x78\x4d\xa3\x7b\x93\xa0\xa3\x0a\x17\xf7\x74\xc6\x34\x3f\x43\x4c\x65\xb1\x75\xd3\x79\x50\x67\x8d\x77\x99\x77\xf2\x7b\x54\xe9\x89\xe6\xa1\xed\xa9\xef\x21\x84\x0f\xe9\x27\x9d\xbf\xf9\x77\x4b\x00\xc5\x2c\x53\x1d\xbd\x03\xe9\x0d\x2d\x16\xc2\x12\x62\x0a\x54\x6c\x28\x1d\x31\x97\x0a\x86\x16\xc6\x1a\x2a\x0f\xf4\x3f\x21\xde\x88\x60\xdb\x7e\xee\x9d\x5f\x37\xc8\x2f\x24\x1b\x5c\x1b\x82\x5d\x64\x3e\x64\x1f\xf0\x56\x3f\x54\x85\xaf\x49\xa2\x0a\xc6\x2c\xde\x4f\xba\x35\xee\x57\x32\x56\x72\x3d\x46\x5e\xb2\x40\x61\x45\xbc\xdc\xdc\xaf\x54\xaa\x72\xc9\xc5\x0c\x45\xe8\xa7\x5f\xa7\x10\xd8\xe6\x66\x8a\x1c\xd9\xba\x71\x13\xc7\x18\x07\xd4\xaf\xd3\xaf\xe8\xaf\xb2\x50\xca\xf9\xb6\x86\xc2\x4a\xea\x74\x18\xef\x18\xad\x68\xd7\xc9\x01\x7f\x2e\xff\xad\xfc\xa3\xd6\x80\xe2\x0c\x75\x27\x46\x66\x41\x7b\x0d\x5a\x12\xef\x2c\xd4\x9e\xb5\xd7\x50\xac\x82\xe3\x0d\xfa\xec\xdf\xf4\xd0\xed\xa2\xd4\x0b\xeb\x25\x75\x11\xf3\x35\xe2\xaa\x8f\x7c\x11\xdf\x3b\x10\xbb\x53\x6d\x7e\x5a\x5c\x52\x59\xfe\x28\x84\x27\x30\x58\xf9\x0f\xb4\xd3\x2d\x05\xd0\x8d\xb6\xda\xcd\xb6\x9d\xb5\x3d\x53\x06\x2d\xb6\xb4\x69\xb6\xa4\x69\xb6\xac\x78\x46\xd7\x0a\x8a\xe7\xd7\xd8\x5e\x58\xc8\x83\x3c\x83\x9c\xfb\x5c\xfb\xe0\xf3\x64\xf3\xf4\xce\x10\xf7\x5c\x8d\x36\x3d\x06\xa7\x26\x86\xf4\xcf\x55\xa2\x55\xe6\x36\x6a\xeb\xd8\xde\x30\xde\x5b\x7e\x03\xf9\xee\x5d\xce\x35\x4e\xc4\x57\x0a\x57\xfa\x04\x0b\xf7\x13\xe7\x0f\x57\xf7\x7e\xf7\xd8\xbe\xb2\x3e\xef\x3e\xa9\xe0\x4f\x7d\x89\x3b\x01\x3b\x2d\x3b\xcd\x3b\xad\xb3\x79\xc8\x04\x3c\xbf\xde\x50\x09\xd0\xa6\xc3\x53\x43\x19\xc5\xb5\xc4\x3e\xe2\xbd\x95\xcc\x5d\x24\x1e\xc4\xaa\x24\x6d\xe4\x2f\xa4\x37\xf0\x7b\x93\x2c\x52\xea\x28\xd5\xc8\xf4\xc8\x63\xc6\xd8\xcb\x29\xca\x11\xcb\x0d\xa9\x39\x1e\x49\x63\x8a\xf4\x4d\x1e\xd2\x45\x57\x15\x56\xc9\xdb\xd5\xb8\x05\x9e\x19\xec\x27\xed\x27\xbe\x69\xa2\x69\xf1\x5e\xaf\xe1\x43\x79\x43\xd5\x87\xbc\x86\x18\x86\xa8\xc5\xbd\x99\xb5\xe8\x30\x97\xd1\x18\x93\x71\x92\xc2\x92\x4b\x92\xba\x0e\xf5\x4c\xad\xd3\xe9\x66\xa8\x72\xcb\x4e\x68\x58\x03\x08\xfa\x7e\xfd\x86\x29\xe9\x57\xde\xa1\x2c\x23\x64\xfb\x29\x23\xc2\xd7\x04\xf9\x06\xcd\x19\xe0\xdd\x97\xb8\x43\xf5\x01\x69\x19\x5e\x37\x4a\x71\x00\xe9\x54\xab\x55\x59\x51\x79\x36\xab\x65\x81\xac\x1b\xdc\x33\xc0\x63\x68\x87\xd0\x7f\x64\x48\x59\x07\xe3\x81\x8a\x37\x54\x8b\x3c\x15\xa1\x24\x96\xc0\x25\xde\x45\xba\x1e\xe7\xf5\x8b\xfc\x38\x9e\x72\x54\x7d\x01\xd9\x8a\xc0\x35\xb6\x65\x1e\xb9\x3b\xaa\x67\x70\xc1\x08\x9a\x49\x4f\xc2\x44\x81\xc9\x7d\x05\xc3\x26\x3e\x7b\x70\x6b\x8f\xc7\x81\xb4\x4d\x77\x83\xd0\xef\x47\xed\xb1\xd2\xd7\x8f\x6f\xf1\x13\xca\xbc\x01\x3a\xc7\x38\xa9\xbf\xac\x20\xf8\x3d\x5e\xcb\x38\x93\x14\x29\xcb\x70\x3e\x05\x85\x09\xd6\x03\x88\x3b\x94\xd7\xe8\x7f\x42\x8e\x34\xb4\x49\xb4\x56\xa4\xae\x21\x67\x2a\xb5\x16\xfc\x6c\x2a\xef\x79\x9f\xa4\x3f\x08\x00\x80\x45\x30\x40\x80\x5f\x96\xed\xff\x8c\xa9\x6d\xe6\x4f\x47\x6d\xd1\xea\xc6\xff\x59\xf5\x3c\x0b\x4c\x7f\x59\x82\x98\xb4\xb0\x65\x85\xf1\x7e\x23\xfe\xa8\xc3\xbb\x80\x2c\xed\xd7\xbd\x21\x18\x0e\x28\x37\xe0\xd0\x00\x5f\x0a\xb2\x35\x10\xe4\x02\xd3\x72\x60\xd0\x41\x42\x1a\x98\xb8\xa1\xfe\x00\xfe\xca\x93\x2b\xfb\x51\x11\xa6\x95\xa7\x67\x81\xc0\x12\x27\x42\x3b\x67\xe7\x82\xb3\x29\x51\x3b\xe7\x8e\x87\x54\x3a\xf8\xea\xc0\xad\x83\xd4\x3a\xe0\x7b\x83\x65\x63\x10\x98\xba\x57\xfd\xc2\xd5\x03\xcc\xdd\xbf\x36\xe3\x63\xcd\xd6\xec\xab\x32\xe0\x60\xe1\x4d\x17\x9d\xa4\x3e\x52\xb5\x0e\x61\x9f\xf8\xb5\xe4\x64\x5d\xea\xba\xd6\x61\xdb\xdd\xfc\x5d\x9f\xb8\xca\x7d\xf1\xc7\x8d\xbe\x33\x66\x73\x84\xc0\x5c\xf4\xbd\x66\x7e\x08\xfb\x48\xce\xb9\xac\x71\x76\xf5\x02\xcf\xad\x86\x47\x31\xfb\xda\x8e\x8f\x33\x58\x7b\xb4\x7a\x8f\xc3\xd9\xbb\xad\x50\x67\x10\xfd\x4a\xb6\x36\x7d\x79\x10\xf7\x10\x3b\xe7\x4e\xcd\xab\xb3\xbb\x71\xcb\xf7\x9a\x34\x52\xfc\x5f\x9c\x4f\x11\xb8\xa5\x18\x4f\x3c\xb1\x09\x4e\xbe\x09\xb1\xa6\xec\x53\xe2\xfd\x01\xf1\xab\x94\xf1\x1c\x1b\x1b\x21\xbd\x24\xee\xac\x82\xcb\x8f\x6c\x11\xfe\x8e\x38\xbb\x12\xc9\x53\xd7\xb7\x84\x2f\x33\x69\x0d\x0e\xb5\xe8\x45\x83\x6a\x0d\x4e\x8e\x68\x79\x23\xc4\xcc\x19\x8e\x86\xc1\x0b\x1a\xef\x69\xbf\x37\xd8\x0f\x39\x3f\xe2\xde\xbf\xdb\x93\x82\xe3\xf7\x37\x4e\x5d\x04\xd7\x7d\x30\xb7\xd4\x1b\xfb\xf0\xaf\x66\x7e\x69\xfa\x87\x8a\xaf\xee\xf1\x42\x26\xbf\x42\xc5\xd0\xe7\xe4\x1e\x90\x49\x41\x08\xc2\x43\x46\xf5\x9a\x78\xe8\xcb\x43\xb2\xb7\xda\x14\x09\xe9\x26\xc4\x9a\xd2\x1c\xf1\x9b\x07\x4c\xdc\xa2\x7f\xda\x35\xec\x92\x47\x0e\x5d\x5f\x75\xbe\x54\x22\x55\x28\x54\xa5\x54\xff\xc4\x2c\xfc\x69\x56\xc5\x57\x55\x5f\x54\x7e\x64\x8f\x40\x2d\x82\xbd\x83\x4c\x04\xa7\x8d\x08\x5a\xec\xbf\xda\xb1\x71\x10\x7c\xc1\x1a\xfe\xa1\x1c\xd2\x3d\xa0\x94\x8f\x52\xe1\x60\xda\xc6\xcb\x87\xbb\x85\x24\x78\xa6\xc1\x93\x3c\x5d\x2c\x7b\xca\xd3\x11\x73\x55\x3a\x62\x59\x96\xac\x57\xc5\x79\x5e\xf8\x56\xe1\x57\xd3\x2b\x79\x5b\x80\xa0\x94\x6f\xe1\xd8\xc4\xce\x83\xa3\x1b\x93\x23\xe9\xcf\x1b\x04\x63\xd1\xee\x04\x00\xe4\x9d\x57\xff\x9f\xaa\xaf\xb7\xec\x1f\x0c\xdd\x1f\xed\xe7\xb5\xd8\xae\xf3\x97\x5d\x7a\x0b\x06\x8a\x11\xe1\x8f\x42\x8d\x07\x78\xe5\xa1\x9f\x40\x43\x07\x52\x1b\x20\x6a\x80\x2f\x05\xd0\x07\x80\x43\x18\xf5\x23\x3a\x00\xb2\x00\x98\x7d\x3f\x6f\x00\x5d\x80\x6d\x03\xb8\x34\x88\x94\x00\x76\x03\xda\x15\x18\xc4\x40\xe3\x1d\x34\x2e\x18\x86\x40\xed\xbc\x40\xde\x1d\x6a\x0f\x98\x1e\x91\xef\x3c\x66\x0b\x38\xad\xb0\xa5\x7c\x5b\xaa\xa0\xa7\x7c\xe3\x13\xbc\x8e\xb0\xab\x7c\xce\x13\xf8\x2f\x18\xca\x7e\x4b\x07\x8c\x2c\x18\xcc\x7e\x53\x07\x74\x1d\x18\xce\x7e\x5d\x07\x42\x3e\x48\xc2\x81\xd2\x1b\xf2\x8f\x1f\xbd\x03\xb9\xa3\xfa\x64\xe8\x63\x62\x77\xf1\x4e\x45\x60\xa7\x42\xd0\xf1\xd2\x26\xb0\xab\x22\x78\xab\xe2\x88\xf1\xca\x07\x38\x9e\xc2\x5b\xb3\xdf\x16\xd0\x19\xe1\x29\x79\xcd\x16\xb8\x6b\xb1\xc0\x42\xf8\x13\xb8\x8e\x40\x9a\x8e\xe0\x9c\x02\xf7\x13\xda\x27\x24\xd9\x81\x7f\x75\x74\x55\x58\x95\xc3\x67\xf5\x88\x36\x80\x4c\x10\x46\xbd\xaa\x0d\x2a\xab\x0d\x0c\xef\x10\x43\xbd\xe4\x05\x84\x62\x1f\xeb\xad\x48\x17\x9c\xfd\xb0\xf7\x0d\x8a\x0f\x86\xfe\x10\xa7\xe3\xa4\xf1\x2b\x98\x5f\xa4\xe0\x1e\xa1\x18\x49\xbc\x38\x1a\xca\xa2\x18\xfc\x9c\x6c\xf4\x2f\x67\x10\x0e\x58\x28\x4a\xbd\x51\x2c\x17\x71\x4d\x04\xcc\x9e\x6e\x1c\xd1\x28\x1a\x1a\x5c\x05\xa4\x7c\x90\x5d\x7f\x84\x81\x5a\x1d\xc5\xef\xfe\x9c\x1d\x1d\x07\x46\x0f\xd2\xef\xf8\x53\x13\x01\x4d\x61\x8e\xb8\xcd\x03\x2a\x6e\xc9\x9a\x38\x8d\xe1\x71\xd1\xbb\xbf\x3e\x14\x82\xe5\x64\x34\x51\x34\x25\x56\x65\x6a\x15\xb1\x19\x25\x6a\xd4\x15\x7b\x8b\x28\xae\xf2\xdd\xbf\xb7\x5d\xe0\xb2\x65\x53\xe7\x5c\x5d\x78\x37\x15\x15\x67\xa3\x1e\x30\x2e\x1f\x50\x7c\x15\x7b\x99\xbf\xd3\x5c\x28\x72\xcb\x0d\x70\xd2\x19\xcc\xd2\xd2\x4d\x52\xd2\x7e\x86\x65\x78\x38\x83\x74\x58\x63\x27\x61\x32\xfb\xcc\x1a\xc4\x6d\xd8\xd7\x07\x9e\x1a\x06\x2f\x10\x3a\xc7\xff\xe0\xda\xc7\xae\x58\xdb\x05\x69\x1f\x96\x45\xb5\xe1\x5f\x45\x74\xee\x5c\xb5\x61\x5e\x05\x7f\x8f\x94\xde\x68\xfa\x80\xe9\x0f\x2f\xdf\xc8\xfb\xc0\x08\x8e\x2a\xde\x3a\x7f\x14\x4b\x05\x8e\x16\x49\x21\xb7\xa3\x95\xc0\xaf\x87\x92\x0e\x88\xef\xa6\xcc\x86\x7a\x0f\x38\xef\x06\xdf\xe8\x36\xfd\x6e\x52\x47\x93\xb0\x17\x27\x14\x17\x04\x7d\xdc\x7b\xb7\x12\x56\x9e\x1d\x73\xfc\xf7\x7e\x82\x44\x01\xd4\x01\x30\x00\x0e\x00\x28\x00\x38\xe0\x37\xc0\x00\xe0\x0e\x00\x00\x36\xe1\x53\x01\x10\x00\x30\x0f\x30\xba\xe1\x56\x30\x30\x21\x40\xd8\xdc\x75\xc3\xc6\xa8\x16\x37\xd0\x00\xf0\xe8\x3a\x80\x46\xf1\x1b\xbb\x0f\x92\xa6\x98\x3a\x49\xed\xd7\xb7\x3a\x7f\xde\x38\x7a\xf8\xad\xf8\x0e\xa0\x23\x7f\x48\xb8\x75\x81\xeb\x0c\x88\x4e\xb9\x39\xbf\x57\x03\xc3\x82\xc4\xcf\xc2\xc4\xcf\x5f\xcf\x6c\xdd\x2d\x35\x94\xf5\xc8\xf2\xd3\x79\x8e\x36\x7a\x52\xbe\xb6\x81\x55\xb1\x5b\xa2\x85\x75\xcb\x35\x9e\xdd\x0d\x52\x18\x59\xd4\x35\x69\x6a\x72\xd2\xcd\xc8\xac\xc4\x23\x3d\xfd\xf8\xe9\x4b\xb1\x04\xdf\x2b\x46\x3c\xa1\xe2\x5d\x0e\xdf\x15\xbd\xac\x36\x83\xa6\xa2\x80\xac\x50\xbe\xda\x5a\x94\x77\xa3\x26\xc2\xed\x86\x53\x75\xa0\x43\x49\x1b\xaa\xda\x89\xb7\x7f\xfe\xc0\xe7\xb3\x12\x67\x85\xc6\x31\xa5\x0f\xa7\x11\x73\xcc\xa7\x98\x67\x06\xa7\x81\xc5\xcb\xc0\xbe\x71\xb4\xd0\x0a\x52\x44\xe1\x13\x79\xc4\x50\x66\x68\x37\xb7\xe4\xe0\xa5\x54\x13\xa6\x62\xb5\x04\xa2\x6d\x99\x1f\xb1\x49\x71\x71\xce\x5f\xbd\x07\x09\xdb\x74\x45\x72\xb8\xfc\xcf\xb2\xdb\xf1\x3d\xd5\x76\x9e\x9b\x2c\x7c\xa3\x9c\x3f\x1f\xad\xe1\xe5\x98\x55\xdb\xe2\x07\x01\x37\xeb\x23\x77\x94\x4a\xb3\xce\x5c\xdf\x72\x20\xef\x47\x4b\x25\x31\x2d\x1e\xb5\x83\xfd\x29\x42\xb2\xef\x3e\xe2\xaa\xf3\xd5\xbf\x8b\xab\xac\x67\xce\x67\xfe\x7a\xf0\x1c\x0e\x0e\x41\xa1\xe9\x08\xef\x39\x6e\x0b\xb0\xc2\x83\xed\xf3\xa0\xdf\x2f\xf5\x03\xec\x13\x1e\x09\xfa\x8d\x32\x9f\x71\xe3\xa2\xd5\xcc\x14\x04\x95\x3b\x1f\x86\x86\xae\x65\x95\xc8\xb6\x61\x4c\x30\x1e\x57\xae\xa2\x48\x98\x5e\x0b\xb8\xef\x7f\xa3\x5f\xa1\x6a\x0a\x3c\x2d\x01\x1e\x60\x36\xfd\xc1\xae\xa2\x60\x00\x40\xdf\x79\xed\xa6\xfe\x7f\x63\xfa\xf7\x35\xa9\x99\xc5\xa2\x41\xe8\x0a\x52\xa8\x9c\xa8\x36\x28\x23\xae\x42\x28\x4f\xab\x9a\xe7\x11\x87\xcd\xea\x5f\x95\x78\x25\xc7\x25\x4f\x08\x8f\xeb\xe9\x52\xa1\x7a\xae\x1f\x04\xf4\x4f\x6c\x0e\xa3\x85\x34\x47\x54\x0a\xf9\x74\x0e\xe3\xa5\x2c\x4f\x78\x0c\x7a\xcd\x16\xa3\xc5\x0c\x57\x5c\x0e\xdb\xd5\x16\xe3\xe5\x1c\x5f\x18\x44\x7c\x6e\xb7\xbd\x85\x74\x67\x4c\x06\xdd\x76\xb7\xfd\xa5\x6c\x6f\x24\x02\x7e\xcf\xa7\xbd\xc5\x4c\x77\x42\x01\xdf\xd7\xa7\xfd\xe5\x5c\x7f\x14\x25\x66\x47\x58\x69\x6a\x4b\x6c\x71\xd3\xa0\x1d\x62\x7a\x2c\x00\x20\xe0\x64\xf2\x99\x74\xbd\xc5\x73\xd8\x66\x7d\xa9\x42\xed\x15\x67\xb5\xc5\x7a\xd3\x9b\x7d\xa1\x41\x9e\xd0\x7d\x61\x4e\x82\xb5\x90\x8e\x45\x34\xd1\xbf\xac\x24\x13\x49\xc0\xb2\x38\x17\xfa\xdb\x69\x80\xd7\x98\xee\x76\x0a\x53\x50\x6e\xae\x1f\x37\x9b\x6f\x7e\x14\x12\xa9\x8a\x79\x2c\xea\x7b\xe5\xb1\x17\x0c\xda\xa9\xbf\x58\x18\xba\x71\xf2\x2f\xf1\x24\xb6\x55\xda\xae\x04\x96\x25\x9a\x77\x96\xf3\x28\xca\x48\x56\xfd\x4c\xf9\xdc\x30\x96\x75\xd6\x2d\x45\x9a\x45\xc2\x58\x49\x9a\x55\xc6\xa9\x59\x9a\x65\xca\xea\x51\xda\x44\x9b\xe7\x91\xb6\x41\xbe\x38\x86\xb6\x51\xb9\x69\x8a\x76\x7f\x5d\x72\x2f\x64\x7f\x70\x3c\x04\x00\x00\xa8\x9b\x90\xb2\x5f\xe7\xb0\x5a\x6f\xc1\xb4\x37\x1a\x2c\xa1\x5f\x77\xbb\x58\x6b\xbc\xee\xcb\x27\x1d\x51\xc8\xe2\x71\xbe\x1a\x28\xa6\x5d\xb6\xdb\xe8\x70\xbe\xee\x2f\xa4\x9c\xd1\xeb\xf2\xba\xbf\x1a\x2c\x65\xdc\xf6\xfb\x78\xbb\x67\x24\xa2\x22\xa3\x23\xa1\xa1\x60\x20\xa6\x26\xa7\x27\xa5\xa5\xac\xcd\x2b\x2b\xaa\x2a\xa8\x28\xa9\xc9\x2f\x2f\xae\x2e\xac\x2c\xb5\x37\xb0\x30\xb1\x31\xb2\x32\xb3\x33\xb4\x6c\xa6\xf8\x41\x80\x4c\x0a\x16\x00\x08\x90\xcf\xf1\x6b\xb1\x5d\xf8\x4f\x3b\xeb\x9b\x93\x3d\x4e\xe2\x47\x72\x3c\xce\xd2\x8f\xf5\x3c\x4e\x93\x97\xb7\x3c\xce\xb3\x9f\x05\x5e\x4e\x12\x67\x7a\x5e\xce\x32\xaf\xfd\x5e\x4e\x53\xb7\xbf\x5e\xce\x73\xbf\x13\xc8\x64\xe3\x69\xe4\x3b\x10\xd2\x1b\x4c\x26\xe2\x69\x15\x7b\xc0\x43\xff\xa2\xd1\x2a\x55\xc8\xb5\xc3\x25\x57\xa8\x54\x2a\x55\x2a\x74\x43\xc7\x64\xb0\x59\xcf\x55\xc8\x77\x22\x66\x77\xb8\x9c\xcf\x55\x32\xc2\x15\x4a\xf9\x27\x49\x68\xb2\xe1\x46\xec\x51\x45\xa6\xb4\x11\xc6\xdc\x82\x0c\x4c\xc4\xad\x17\x24\x74\x55\x70\x59\x6c\x40\x65\xcc\xfb\x14\x72\xc3\xb2\xca\x25\x53\x69\xec\x98\xfa\xfb\xde\x3e\x51\x62\x45\xa0\xf7\x17\x6c\xcb\x5b\x0a\x81\xe1\xd2\x32\x26\xfb\xfe\x02\xf2\x09\xb5\x2a\xad\x46\xbb\xff\x4d\x88\xcc\xca\xff\x2b\x23\x5b\x28\x90\x8a\x30\xab\x00\x00\x40\xfc\xda\xdd\xdf\x64\xbd\xc5\x16\x98\x60\xdb\xe9\xf9\xcf\x1b\xde\xc4\x38\x8c\x4d\x84\x47\x12\xa1\xcc\xff\xe3\x5c\xf0\x1b\xd7\xa4\x8e\x38\x0c\xc7\xac\x0d\x45\x02\xc7\xb4\x89\x79\x18\xc7\xbc\x0b\x96\x22\xc3\xa4\x81\xba\x24\xc3\xac\x03\xdb\x2c\xc3\xb4\x85\xfb\x28\xc3\xbc\x07\x0a\x43\xcb\xa4\x9e\x3c\x45\xcb\xac\x1d\x5d\x4d\xcb\xb4\x99\xfd\x42\xdb\x1a\xbf\x76\x69\xdd\x80\x14\x26\xcb\x71\x80\xd8\xf7\x61\x1d\x04\xc0\x44\x70\x1a\xe7\xe6\xd4\x71\x1a\x62\x17\xe5\x73\x98\xc0\x97\x44\xb8\x9f\x24\x55\x8c\xbe\x99\xc6\x2a\x8c\x66\x1d\x83\x54\xe6\x60\x9d\xa2\x63\x9d\x64\x9e\x21\x81\xa7\xab\x9f\x84\xb3\xae\x6a\x98\xa6\xc0\xb5\x69\x1c\x42\xec\xf4\x71\xb0\x89\xaa\x6e\x59\xb5\x0b\xcf\xf6\xb9\xb5\x4d\xdd\x7c\x5a\x99\x50\x0c\xd0\x0f\xda\xe9\x8f\x08\x04\x00\x00\x2b\xfa\x6a\x95\xb6\xeb\x2d\xcd\xee\xde\x36\x24\xff\x8f\x5a\x12\xfa\x04\xe7\x06\x15\x24\x34\xfc\xad\xc8\xe8\x08\x2b\x49\x69\x01\xd6\xe4\xf4\x04\xe6\xc7\xd7\x47\x96\xa7\xb7\x87\x16\x27\x37\xc7\x54\x67\x77\x07\x17\x26\x36\x46\x55\x66\x76\x86\x97\xa6\xb6\xce\xe4\x12\x79\xf4\x01\xe9\x00\x00\xc0\x93\x3e\x62\x4f\x4b\x77\xb3\xad\xb5\xd5\xba\x1b\x6f\x85\x2d\x65\x8e\xe7\x55\x68\xaa\x1e\x54\x6b\x7f\xf6\xf2\x16\x64\x3c\xd1\x59\xb5\xfb\xd6\xfb\x4e\xa1\xa2\xc0\xfb\x5e\xa5\x7d\xcf\xfb\x6e\xa9\xbe\xdf\xfb\x7e\xad\xff\x97\x6c\x1c\x95\xb4\x13\x72\x02\x89\x6a\xc6\x03\x11\x06\xc8\x74\x34\x89\x5c\x1b\xa8\xe3\x79\x87\x4e\xa5\x52\xa4\x11\xf9\xc7\x74\x5c\xb5\x4c\xa5\x58\x2b\x46\xcb\xf5\x8c\xdd\x62\x81\xac\x48\x33\x4a\xcd\x76\xcd\xf5\x64\xa1\x58\x3b\x56\xcf\xf7\xed\x27\x16\x9b\xc9\x4a\x84\x92\xf1\xb0\x7c\x1a\x9b\xe9\x5a\xb4\xa6\xf3\x11\xbd\x46\x93\xc9\xea\x5f\x55\xeb\x25\xdb\x15\x34\x0c\x14\x74\xd4\x56\xd3\x75\xa0\xae\xf7\x13\x3e\x97\xcb\xc1\x4a\xa4\xb2\xf9\xb4\x6e\x9b\xcb\xe1\x5a\x8c\xb6\xfb\x15\x3f\x0a\x24\xd2\x0f\x14\x00\x00\xd0\x77\x96\xf2\x7f\xa8\xde\xc3\x6f\xd3\x1b\x28\x28\x1c\x04\x85\x4c\xa2\x92\xe6\x80\x42\x22\x1e\x89\x41\xaa\x96\xe5\x01\xfb\x8b\x5c\x3a\x85\x44\x35\xc3\x05\x9b\xc5\x74\x2c\x85\x54\x3d\xc7\x07\x0a\x0e\x9d\x5a\xad\x40\x25\xdd\x09\x9d\x46\xb5\x5c\xad\x50\x2d\xdb\xeb\x27\x0e\xbb\xe5\x52\x81\x6a\xa6\x1b\xfe\xff\x87\x7a\xf2\x45\xf9\x23\xe7\x97\x08\x18\x00\x10\xe0\x7b\xb1\x36\x33\xfa\x7f\x6e\x1e\xd6\xf7\x53\xee\x82\x1f\x0f\x13\xf6\xfe\x1f\x8f\x33\xfe\x60\xe0\x50\xb0\x18\xff\x7f\x08\xb7\xf7\x47\x50\x14\x04\x40\x04\x00\x10\xc2\xd4\x29\x6d\xff\x4e\xf1\x83\x0a\x9e\x33\x19\x36\x6a\x5e\xc5\x57\x48\x5d\xdf\x7f\x7c\x85\x52\x4a\x40\x77\xb5\xe0\x19\x13\x4d\xd6\xe5\xfd\xe1\x43\xd9\x37\x55\xe9\xa7\xa6\xa6\x64\x8f\xf9\xdb\x3d\x75\x5b\x3a\x0d\x62\x1e\x5e\x0e\x31\x6e\xed\xa8\x36\xce\x31\xd5\xb5\x9d\x98\xf3\x5b\xda\xf3\xd9\xcb\x99\xf5\x6e\x56\x02\xb1\x12\x5f\xc2\x68\xd3\x68\x14\x4b\x69\x22\x0a\xda\xc8\xd5\x53\x75\xee\xf8\x6e\x45\x0c\xb4\x43\x64\x61\x35\x64\xc9\x04\x1e\xac\x04\x0c\x96\x3e\xdb\x72\x42\xf8\x1b\xe5\x43\xdf\x90\x3b\xd1\x81\xd4\xd4\xdd\xe9\x5e\xf4\xc7\xba\xd7\xf0\x66\xfa\x09\x43\x2e\x84\xd1\x66\x95\x13\x7e\xf6\xc9\xb3\x8e\x85\x5b\x97\xce\x32\x7d\xa4\xd8\xc5\xfe\xfd\xa2\xf7\x68\x23\x6f\xdf\x3e\x99\xdb\x41\x6b\x2e\x04\x05\xb5\x78\x8f\x5e\x68\x27\x1a\x11\x76\x81\xdb\x03\xe9\x0c\x52\x17\xfa\xd1\x88\x79\xf0\x04\xda\xa7\x30\xff\x2d\xef\x2c\x70\x81\x15\x1b\x69\xaf\x3f\xc1\x43\xaa\xa8\xcf\x15\xc3\x24\x18\x3b\x89\xda\xd7\x6b\x4b\xdd\x38\x75\xd4\x31\xce\x3f\x4d\x78\x32\xd1\x53\x40\xea\xd7\x4c\x49\xbb\xe1\x1a\x52\xa4\x85\x67\xd2\xd1\xbe\x9b\x8a\x12\x89\xa8\xfe\xb3\x68\xe5\x09\x5d\x64\x7a\xf9\x4a\x21\xf6\x56\x76\x03\xd7\x32\x34\x46\xdf\x6f\x84\x3e\x35\x38\x51\xec\xb7\x77\x7b\x97\x32\x19\x61\xc1\x63\xdc\xf4\x95\x2f\x3a\xe2\x7a\x07\x27\xc7\xfb\x7b\xfb\x68\x3a\x9b\x0b\xbc\x07\x46\x53\x0e\x37\x44\x05\x06\x3b\x02\x3d\x81\xb3\x78\x52\x54\x56\x78\x5c\x5e\x18\x4c\x4e\x24\xc6\xc3\x54\xd0\xc0\xf0\x74\xff\xd8\xd0\xd4\xe0\x84\xe4\x2b\xfb\x7f\x36\xf3\xef\x18\x58\xe9\x9a\x1a\xab\x2b\xdc\x5c\xed\x6d\x9e\x1e\xaf\x16\x76\x8a\x93\x74\x55\x78\x59\x3a\x1b\x7c\x5d\x3e\x49\x82\xe0\xff\x59\xd3\xe2\xc2\x50\x12\x1e\x4e\xf7\x8d\x0e\x8c\x8b\x76\xab\x19\x98\x18\x9a\x1a\x1f\xe7\xbd\x76\xd6\x39\x39\x38\xdd\xce\x6e\x24\x6a\xae\x9c\x7e\x1f\xc2\x2f\x5c\x37\xb6\x7d\x57\x11\x33\x31\x37\xd6\x35\xd4\x3b\xff\x17\xcd\xcd\xdd\xed\xbd\x3d\x42\x6f\x09\x32\x16\xc9\xff\x38\xe1\x85\xa1\xc4\x7c\xe6\x94\x55\x75\x0d\x60\x42\x03\x39\x98\x63\x66\xc1\xae\x14\xa6\xac\xdd\xa3\x2e\x49\xbe\x3b\xfb\x8d\xe9\x37\xa8\xeb\x07\xb6\x21\x84\x54\xd4\xbd\x17\x09\x0b\x79\x04\x61\x2d\x7e\x1f\xb1\x19\x6c\x31\x5a\xcf\xbc\xb1\x22\x66\xac\x02\xef\xc4\x21\xfd\x9b\xef\xf3\xd1\xfc\x28\x47\x02\xbf\x3c\xf8\x90\x5e\x5b\xa0\x65\x8f\x9d\x84\x9b\x11\x09\x4e\x32\xd4\xd6\xb2\x9b\x42\x38\xb1\x8f\xf2\xb3\x38\x50\x41\xb7\xe9\x58\x64\x56\x6f\xce\x26\x54\xe5\xf3\xa6\xc8\x90\x9c\xed\xd4\xb6\x67\xe2\x29\xbb\x02\xf0\xa0\xb2\x36\xfe\x4f\x77\xf7\x6f\xf4\x56\x12\xe5\x87\x75\x6b\x6d\x57\x59\x62\xee\xeb\xad\xf1\x77\x99\xab\xc3\xf1\x9b\x12\xad\x88\x3f\x8b\xcd\xe2\x45\x82\x85\x4d\x2d\xe9\x82\x99\xd8\xd3\x66\xa8\x7b\x4d\x9f\x78\xe6\xa7\xe1\x3e\xf8\xb6\x9b\x7b\xc2\xb0\x87\x4f\xba\x64\x8d\x65\x3a\xdb\x14\xb7\xfb\x57\x8d\x47\xd5\xd9\xf3\xb9\x3c\x5e\x7f\x6d\x07\x47\x54\x7c\xed\x9e\x03\x1f\xef\x6a\xa7\x87\xec\x26\x70\x8f\x94\x53\x30\x68\xe8\x46\x58\x8f\xb2\x45\x0d\xc0\xe5\xc0\x08\xd3\xc0\x9c\x77\x78\xeb\x00\xc0\x00\xe3\x1d\x48\x2e\xa8\xe9\x00\x40\x1b\x80\x21\x90\x76\x07\xe7\x47\x20\x61\x9f\xe2\x0e\xe6\x0d\xee\x8b\xf1\x2c\xe7\xad\x8a\xa6\x45\x79\x42\xda\x69\xca\x74\x0e\x06\x4f\x09\x9b\x84\xcd\x76\x89\x29\xb4\x74\xea\x8f\x77\xa7\xd7\x08\xdf\x92\x3f\xc8\xf2\xdd\x75\x8e\xa4\xb4\xa1\x54\x72\xed\xae\xc9\xb0\xf2\x64\xff\xfc\x50\x02\xf0\x9b\x67\x83\xb0\xc9\xfb\xfe\xf2\x14\x44\x5b\xb4\x18\x8a\xca\x32\xe5\x73\xf6\x07\xfd\x2a\xa0\x9b\xba\xef\x25\xb1\x36\x77\x6a\x64\xf3\x5a\xe7\x24\x49\x25\xf1\x4d\x02\x1f\x76\x7b\xbc\x96\x50\x4c\x97\xfb\x85\x8d\xce\xe2\xa5\x3b\xc6\x03\x23\xed\xa3\xfd\xf0\x22\xe6\xfc\x2a\x4c\x36\x34\x21\x66\x32\xc1\x35\xcf\x31\x55\xb4\x90\x38\x25\x26\x28\x3f\x9c\x20\xdf\x2e\x01\x1e\x7d\x92\xb5\xff\x33\x5a\x6d\xc5\xc3\x32\x67\xe4\x6d\x35\x8e\xd0\x64\x4e\x6a\x41\xf4\x58\x78\x86\xab\x60\xf6\x24\xaa\xb9\x43\xaa\x7d\x65\xe3\x44\xc9\x9c\xc0\xdc\x9a\xfc\x5b\xfe\x4e\x5d\x4d\xac\x9f\xe6\x59\x4e\xaa\x84\x1a\xa1\xab\x9c\x55\x75\x37\xaa\xa0\xfe\x0f\xac\x85\xce\xb9\x64\x3e\x01\xbe\x7d\x6a\x14\x70\x25\xb2\x26\xbc\xd6\xa7\x06\x80\x3f\x53\xe6\x04\xc9\xe6\x75\xfa\xa7\xdd\xed\x18\xae\x8e\xb7\xbe\x35\x0f\x57\x73\x55\x83\x00\x91\x6f\x2f\xff\x4e\xc8\xc2\x94\x13\xba\x46\x91\xc3\x68\xf6\xd6\x90\x94\xe3\xe4\x85\xd3\x32\x50\x76\x3e\xd2\xbd\xe0\x3c\xf1\x10\xcb\xc5\xc7\x22\xfa\x67\x87\xf3\xd1\x88\xd3\x76\xec\x5c\x00\xd7\xc5\xd4\x6a\xf2\x05\xfd\x6a\xde\x7b\xb6\xa5\x86\xe6\xaa\x66\x1a\xe6\x60\x3c\xf4\x55\x10\x5f\x6a\x5e\x63\xc0\xf1\x1f\xd1\xea\x84\xd8\x5f\x17\x74\x6e\x57\xee\xb1\x69\x6f\xdf\x55\x1b\xbc\x47\x88\x9b\xf5\x81\xce\x46\x67\xbb\x64\xd0\xdd\xa8\x3d\x8c\xe5\x97\xa2\x24\xbf\x82\x87\x23\x59\x56\xa5\x16\x06\xb9\x07\x5f\x7f\x4e\xe7\xde\xde\xe3\xfa\x7d\x21\x1c\x73\x4a\x1d\x48\xd8\xcc\xeb\xb8\x56\x5e\xd2\xb8\x41\xc0\x71\x40\x65\x03\xfa\x4b\xa0\x3f\x0d\x54\x2b\xdc\x29\x68\x97\x23\xa9\xa2\xfc\xc6\x25\xa7\xc9\x6d\xcc\xeb\x7c\xc7\x6c\xcd\x37\x9e\xc8\x6d\xcc\xfb\xd0\x15\x0e\xa1\x37\x69\x53\xea\x7d\x6a\x8b\x0a\x77\xd5\xf7\x38\x0b\x24\xf9\xc4\xca\x05\x63\xbd\xc4\x36\x38\x10\x86\xa7\xd9\xe9\xd0\x85\x22\xd6\x52\xca\x6c\xa5\x76\x53\xf2\x50\x49\x36\xfe\xe5\x61\x9f\xd1\xfe\xa3\x7b\x6c\x24\x5c\x12\x61\x7c\x1d\xfd\x79\x8a\x4f\xd5\x7f\xa5\x88\x31\x0c\x91\xe8\xcf\xfa\x3a\x36\x3e\x4d\x48\xb6\xbb\x9a\x77\x3f\xb2\x15\x6a\xee\x8d\xc9\x47\xe8\xae\x0a\x92\x52\x8d\xa3\x24\xd1\x17\x56\x48\x8f\xf6\x8e\xc5\x38\xc7\xa4\x75\xd1\xdd\x04\x44\x2f\x3c\x4e\x52\xa2\x8f\xbd\x41\x1e\x2c\xe7\xb8\x86\x63\xb8\x06\xd5\xbd\xfc\xab\xf4\xb3\x4b\x27\xce\x88\x40\xd1\xc7\x9e\xab\x38\x55\x2c\x78\x91\xa0\x88\x0c\x40\xcc\xc5\xbe\x4f\x67\xf6\x9f\x59\x91\xed\x35\xcb\xeb\x34\x38\xc6\xb8\xd8\x30\xfa\xde\x28\xf0\xbb\x9a\x7c\xdb\xf8\x99\x06\x0c\x38\xfd\xf1\x04\xf1\x53\x23\x4f\x58\x57\x7f\xd4\x25\x44\x4e\xb2\xed\x5a\x52\x43\xf0\x79\xfd\xea\x52\xc9\x7e\x08\x1c\x87\x16\xa3\xac\xda\xc8\x70\xa0\xa9\xf1\xeb\x6f\xf6\x82\x86\xa5\x39\x99\xdb\x59\x89\xda\xd5\xeb\x06\xd0\xfe\xb2\xab\xa1\x3a\x99\xc3\xa9\xf3\xa4\xac\x8e\x77\x7b\x66\x32\xcb\x53\x56\x7e\x11\x61\xeb\x06\xf8\xb7\x71\xfb\x79\xa6\x20\x74\x8f\x8e\xfd\xb7\x96\x81\x4c\xb9\xfb\x80\x22\x9b\x42\x65\x82\xab\xa2\xc6\xa1\x2d\x6a\xc7\x2c\x43\xbd\xd7\xdd\x75\x45\x4c\x75\xb5\x36\x59\x37\xe9\x05\x82\x7d\x5c\xd3\x38\x0b\x8e\x43\x2b\xc4\xf9\x93\xf6\x16\xd4\xe9\x06\xf9\xfc\xb8\x36\x61\x75\x43\x86\x6e\xbd\x8c\xfe\x65\xe8\x4a\x6f\x85\x6e\x2e\xad\xf7\xc5\xd4\xa3\xa0\x4c\x6d\xfa\xbf\x38\xd3\x4c\x2d\x1c\x7a\x8d\x56\xde\x92\x4c\xe2\x20\x2d\xd6\x42\xe3\x2a\x8c\x5a\x4d\x88\x41\xd0\xf5\x27\xe7\x97\xfb\x67\x8c\x24\x8c\x28\xb1\xed\x77\x01\xfb\xb9\xc5\xc8\xbc\x7f\x7b\x9a\xa0\xad\x97\xc0\x17\x2d\x33\xc4\x62\x39\xd3\xba\x5e\x11\x59\xf9\x83\x2c\x3e\x0c\x34\xf1\xfa\x06\xec\xd2\xed\xaf\xcc\x2d\xa9\xe6\xee\x27\xfd\xdf\xf3\x1a\x16\x78\xc3\xa1\x0e\x63\x22\xfb\xb1\x38\x78\x54\xf0\x3f\xab\xbb\x3c\xe9\x5a\xb4\x6f\xf7\x9a\x7c\x1c\xd5\x3a\x4c\xf6\x77\x9c\x92\x09\x74\xa2\xfe\x91\xb3\xc2\x24\x26\x5f\xd0\xa7\x9d\xa9\x37\xfd\x8e\xe1\x1d\x18\x46\xb9\xe7\xda\xa3\x41\x4c\x4f\x78\xe8\x01\x79\x6d\x4e\xf0\x5e\x86\x64\x0e\xf0\x7d\x21\xf3\x64\x75\xad\x24\xc1\xc4\x37\xd0\xb5\x1f\x76\xef\x77\x27\x95\x16\x1f\x58\x4a\xbb\x5b\xe6\xfb\x47\x87\x81\x98\x6f\x51\x6f\x59\x6f\xe1\x6f\x69\xb9\x1e\x2c\xf8\x88\xdf\xd8\x04\x89\x80\x11\xc6\x7b\x94\x7b\x9c\x7b\x21\x5c\xe4\x6f\x20\x6c\x2e\x1c\xe4\x70\x10\xca\x2d\x69\xfc\x43\x0c\x0c\xc8\xea\x23\xe6\x24\x98\x10\x06\x44\xec\x28\x57\xf4\x99\x1b\x06\x62\xae\xcf\xf8\x96\xfb\x10\xf9\x90\xc9\x42\xf6\x3d\x2e\xb5\x7c\x99\x86\xb8\x41\x25\x9c\x40\x82\xbe\xcc\x55\x85\x5d\x43\x4a\x3e\xf8\x18\x1e\xa6\x34\xa0\xe7\xf4\xf2\x27\x90\xac\xd0\xbb\x7c\x61\x96\x01\x69\xf9\xca\x7f\xf7\x42\x75\xb6\x60\xd0\x85\xe5\x03\xd2\x6c\xf9\xc3\x24\x11\x63\x92\x6d\xbe\xe9\xe9\x7c\xe4\xd9\x8e\x4b\x24\xa4\x95\x22\xb2\x1e\x8c\xb1\xef\x7b\x3d\x97\xa7\x50\x4b\x40\x1f\xfb\xed\x29\xba\x52\x49\xd7\x62\xaf\xf2\x93\x3e\x2f\x61\x97\xc6\xf0\xde\xc7\x3b\x47\xb0\xe6\x46\x66\xbb\xb0\xea\x46\x66\x86\x87\x43\x99\x48\xfa\x6e\x1c\xff\xc1\x23\xc7\x01\x53\x4d\xaf\xeb\xf5\xe6\x70\xe4\x7f\x91\x81\x9a\x03\x9a\x1c\x18\x8f\xe2\x14\xe4\x50\xc8\x58\x2f\xc2\x3b\x1a\xc0\x79\xdf\xfc\x4f\xd7\x19\xb7\x7c\x5e\xee\x8c\x8d\x8f\x77\x0e\xf6\x8e\x60\x25\xff\x6f\x1f\x7e\x36\x17\xff\x03\x91\x5d\xb9\x49\xba\xaa\x2e\x8f\xfb\xdd\x89\xd8\x98\xec\xe0\xc4\xa8\x4c\x4a\x9d\xc8\xf4\xd0\x64\x4c\x7b\x01\x9f\xd7\xfa\xff\xe5\x44\x08\x2f\x73\x63\xdd\xdd\xde\x54\x38\xa3\xe0\xff\x62\x2b\xe7\x86\xcc\xec\x7f\x4f\x7e\x3a\x7f\x56\xac\x44\x29\xec\xbd\xd2\x6a\x56\x68\xc7\x54\x53\xa8\x71\x40\x53\x13\xf0\x19\xe4\xe6\x1a\xbc\xbf\xf9\xb9\x2e\xea\x69\x43\x00\xbc\xd1\xce\xda\x55\x1e\x18\x56\x6b\xf7\x1c\xa8\x75\x0e\x69\xac\x77\x76\xbc\x3f\x42\x05\x82\xf0\x72\xa6\xf6\xb1\x99\x6a\x1e\xd3\x4b\x54\x56\xbe\xc0\x15\x3a\x36\x41\x00\x0f\x30\xe3\x9b\xad\x7e\x07\x12\x2a\x23\x52\x52\x63\xfd\x03\xe8\xe1\x6c\x3c\x04\x3c\x84\x31\x28\x5c\xec\x95\xac\x16\x96\x36\xdc\x89\x46\x26\x8b\xc0\x15\x44\x9d\x9e\x68\x35\x3c\x2b\x3c\x92\x0b\x3a\xbc\xdf\x60\x82\xd0\x98\x1c\x10\x1c\x9a\x6a\x75\x80\xd4\x79\xbd\x5d\xe8\x1e\x88\x2c\x18\x0d\x7c\x2c\x0d\x2c\xae\x40\x12\x1f\x05\x6f\x6c\x2c\x2c\xbc\x00\x64\x9a\x81\xc9\x9d\x06\xa5\xd0\x7a\x52\x26\xa3\x60\x51\x49\x90\xc4\x11\x5a\x6a\x8c\x15\xd1\x16\x03\x10\x1a\x5a\x02\x23\x1c\x78\x10\xf7\x23\x2e\x41\x8a\x08\x90\x6e\x3b\x98\xdf\x4f\x3c\x3c\x3d\x50\xd8\x1c\x7c\xeb\x7f\x0e\x9d\xb2\x15\x23\x27\x74\x59\x45\xcd\x00\x08\xad\xa6\x0e\x03\x00\x00\xff\x57\x00\x00\x00\xff\xff\xf5\xc4\xaa\x25\x20\xfc\x00\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.woff", ) } var _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff2 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x19\x40\xe6\xbf\x77\x4f\x46\x32\x00\x01\x00\x00\x00\x00\xc8\xa8\x00\x10\x00\x00\x00\x01\xbf\xc0\x00\x00\xc8\x47\x00\x02\x00\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\x40\x1c\x84\x48\x06\x60\x00\x90\x6a\x08\x81\x1c\x09\x97\x17\x11\x08\x0a\x85\xcd\x3c\x85\x8c\x07\x01\x36\x02\x24\x03\xa0\x22\x0b\x90\x24\x00\x04\x20\x05\x86\x20\x07\xc7\x51\x0c\x81\x2e\x5b\xce\x95\x91\x02\xaa\x63\xed\xe0\x27\x60\x14\x75\xde\xb6\x4d\x52\xfd\x10\x30\x39\xc1\xdc\x74\x12\x15\xef\x3a\x6f\x5b\x7f\x12\xf8\x84\x59\xc2\x36\x06\xae\xad\xee\x4a\x98\xd9\x5f\xac\xa9\xb2\xff\xff\xff\xff\x7f\x4b\xb2\x88\x43\x9b\x59\xcc\xde\xdd\x21\x04\x5c\xd1\xb6\xf2\x49\xfa\xff\x90\x07\x51\x8c\x48\x81\x73\xdb\xf5\x91\x43\x46\x46\xb8\x0d\x29\x61\xbc\xe7\x36\x4d\x73\x9b\x92\xc6\x9c\xd2\x32\x67\x1a\x42\x44\x17\xc9\x57\x24\x6c\xe5\x63\xc7\x71\xa2\x8f\x52\xa5\xb6\x72\x1c\x6c\xaf\xa5\x4d\xd6\xa7\xbe\xaa\x65\x73\x93\xa9\xb6\xb6\xe5\x2b\x1b\x49\x66\xc0\xe4\xec\x2e\x39\x4d\x81\xc2\x1a\x11\xa3\x6b\x1b\x03\x07\xe5\x52\x10\x10\x65\x15\x61\xd6\x4d\x69\x8d\xe7\xb6\x87\x4c\xdf\x88\xe6\x8f\xaa\x17\x53\xf6\x26\x73\xd9\x0b\xdc\x71\xe2\xa7\xdc\x7b\xdf\x69\xb4\x2f\x53\x35\xde\xed\xc7\x6c\xed\x87\xef\x10\xbe\x91\x6a\x6b\x65\x76\x32\x95\xed\x11\x7f\x8c\x5b\x73\xfd\x58\xa0\x27\x09\x33\x54\x28\xb2\xb3\x58\xa2\xad\x7f\xe1\x65\xb7\x74\x59\xb9\x96\x7d\xa8\x12\x2d\x35\x66\xad\xff\xe4\x91\xc5\xef\x7a\x8e\x83\x1f\x27\x8b\x44\xee\x82\x20\x41\x24\x88\x04\xc9\xc9\x9d\x05\x97\x1c\x2e\x67\xc1\x23\x4d\xd3\xf2\x7b\x71\x40\x40\x87\x0b\x7f\xb1\x74\x62\xe1\x1f\x17\x9a\x62\xf5\x82\xa7\xdd\x1b\xb3\x24\x63\x48\xb1\x04\xfe\x35\x9f\x8b\xe9\x0d\x78\x98\xbe\x9d\x1d\x5f\x48\x4d\xf6\xf7\xfb\x5e\x29\x36\xe7\x72\x6b\xe9\x66\x5e\x6f\xc8\xcd\x7d\x56\xf8\x90\xf5\xbf\xc1\xaf\xa6\xad\x31\x36\x86\x59\x2f\x4c\xc9\x92\x9e\x09\x79\xf4\x13\xfe\xa3\xef\xea\x3b\x37\x32\x3b\x6b\xc0\x67\xf4\x3c\x59\x0b\xf7\x02\xf8\x14\x54\x5f\x4b\xbb\x2b\x2e\xd7\xc8\xcd\x26\x4f\x04\x45\x4a\x81\x69\x55\xcc\x3e\xc8\xa2\xad\x50\xa1\x9b\x5c\xe1\xca\x20\x54\xa7\x42\xf7\x80\xe6\x76\xbf\x8d\x8d\x30\x86\x44\x19\xa3\x73\x30\x2a\x26\xa8\x43\x46\x89\x38\x68\x0b\x45\x44\x2c\x0c\x2a\x47\xd4\x48\x1b\x93\x18\xd1\x36\x61\xbe\xd5\x94\x48\xc6\xc8\xe1\x06\x68\x9b\x1d\x4e\x9d\x95\xd8\x80\x81\x1d\x58\x48\x89\x8d\x22\x21\xb4\x08\xd8\x20\x61\x15\xc6\x0c\xb4\x41\xfd\xe9\xcc\x6d\xce\xfd\xc4\xd8\xe6\xb9\x48\x57\xad\xcb\xef\xed\x63\xff\xbf\x7d\x06\x54\x59\x2b\x2b\x9b\xa4\x99\x3d\x20\x34\x00\xfc\x15\x7f\x9b\x07\xf8\xb9\xf5\x03\x05\x31\x89\x94\xda\xd8\x58\x15\xab\x7c\xb5\x4a\x56\xc0\x58\x93\x63\xc0\xc8\x10\x0c\x54\xca\x20\x14\x2c\x54\xac\xba\x3b\x50\xef\xac\x8b\xca\x5f\x75\x77\xde\xbf\xff\xfb\xfe\x57\x57\x66\x69\x08\xac\x2f\x34\x81\x64\xc9\x1e\x5a\xa2\x24\x3a\xe6\xfe\x8a\xf6\xea\x2a\x6f\xdf\x64\xcb\xe6\xf8\xe7\xf9\xfb\x67\xad\x7d\xdf\xaf\xf0\xa7\x61\x20\x09\x06\x9a\x66\x9c\x65\x92\xcd\x47\x68\x78\x44\xeb\xd8\xf7\xa9\x5a\xdd\xfd\xc2\x07\x28\xc9\xce\x24\x2c\x0f\x29\xc7\x20\x4d\x88\x0a\x1b\xa4\xa2\x17\x93\x82\x16\xa6\x26\xc0\x98\xb0\x27\x17\x8a\x3a\x5f\xe6\xb8\x7e\x69\xfb\x25\xa8\x5f\x10\xcb\xdd\xb2\x37\xc3\xe5\xa1\x9e\x61\xb1\x52\xed\xec\x4f\x0f\x45\x4f\xd7\x7e\xe9\x5a\xba\x0f\x8c\x8d\xb5\xd6\x53\xa9\x50\x01\xe6\xba\xa8\xe0\x79\x60\xc1\x9c\x9f\x6b\x47\xc2\x02\x09\x5d\x37\x16\x8a\x08\xb5\xde\x26\x5b\xde\x8d\x3c\x2d\x90\x50\xa4\x04\x86\x14\xfc\x8d\x89\x6a\x01\x04\x40\xff\xfd\xde\x5a\xdf\xff\xfa\xcd\x92\x82\xf1\x59\x86\x68\xc9\x4a\xa1\x82\x4b\x12\x95\x85\xc1\x21\x11\x9e\xc2\x6f\xe1\x10\x36\x64\x35\x33\x7b\x2e\x2a\x8e\xad\x07\x8c\xf0\xff\xfd\xde\x77\xeb\xfe\xb7\xf7\x3e\x37\x32\x13\xd9\x6d\x8c\x0b\xc5\xa1\x90\x38\x84\xee\xc2\x76\x85\x11\xa5\x14\x89\x90\xc8\xa0\x32\x08\xd3\xd4\xcf\x1c\xff\x61\xbf\x9f\x1d\x2a\x21\x11\xaa\x86\xc2\xb6\x50\xb0\xd8\xb7\xfc\x55\xec\xd9\xb9\xf7\x80\xb7\x2d\xad\xed\x46\xfc\x55\xdc\x63\xb1\x46\xa9\xa4\xf2\x66\x98\x5a\x64\x6a\x9b\xd7\x17\x5a\x5c\x48\xae\xe0\xff\x8e\x3f\xf8\xc4\x4b\x5b\x5e\x48\xd6\x1c\xfa\x4f\x5b\x49\x41\x78\x66\x25\x4f\xfe\x06\xd2\x64\xe6\x31\x69\xc9\x08\x92\x51\xda\xbd\xbb\x20\x76\x10\x2b\x0b\x5c\xad\x31\x47\xc0\x51\x53\xfd\xdf\xa5\x49\xcc\xec\x82\x14\xe7\x97\xda\x0f\xb7\x7e\x5d\x76\x65\xc9\xee\x92\x90\xc5\x73\x9c\xc4\x45\xc0\x5c\xe0\x0a\xff\x98\xd2\x5f\x77\xfc\x5a\xe9\x2a\x23\x6e\xdb\x78\x1f\x7d\xa9\x2c\x83\xd6\x1e\x5a\xe7\x97\x1a\xb0\x7c\x80\x46\x17\xc0\x40\x00\xc4\x40\x0f\x04\x00\x10\x3c\x74\xb3\x49\xb7\xad\x32\x4c\x29\x5c\xe1\x90\xa4\xc8\xd5\xb6\xe0\xc1\x52\x24\x95\xd7\xb1\x61\xac\x9c\x1b\x91\x21\x3c\x5f\x3a\xfb\xfe\xdc\x56\x93\x64\x84\x7e\x1e\xc3\xc8\x1e\x7b\x3c\xe0\x21\xd6\x03\xd4\xc2\x07\xea\x8f\x50\x39\x06\xe9\x66\xd1\x06\xe1\x5e\xab\x95\x90\xfc\x20\x2a\xa7\x22\x0d\x1d\x51\xe7\xf7\xb9\xca\xfb\xdc\x57\x4f\x9c\xa1\x23\xe6\xd4\xbc\x57\x72\x1c\x0a\x9d\x87\xc0\xf7\x28\x73\xf7\x92\x9a\xa5\x0e\xde\x7a\xf8\x98\x0e\xf3\x2d\xdb\xcc\xcf\xfb\xd7\xdb\x1d\x3d\xd0\x63\x9f\x0f\xb0\x0b\xb4\x6a\xb7\x6d\x13\xaf\xd3\x2a\x29\x21\x30\x04\xe6\xbd\x6b\xea\xbf\x28\x9f\xbf\x3d\xf5\x0e\xf1\x06\xdf\x02\x8e\x0c\xcc\xec\x4e\x6f\xaa\x7e\xed\x2e\x28\x5a\xa4\x23\x65\x7b\xee\xa4\x0b\xd9\xa9\x3a\x79\xae\x68\x48\x42\xbe\x94\xcb\x90\x9a\x06\x2f\xed\x62\xdf\xdb\xa0\xdd\x05\x40\x2e\x00\x92\x42\x20\x65\x00\x4a\x08\xa4\x99\xff\xee\x02\xf2\x07\x40\xd8\x07\x92\xfa\x37\xa4\xf4\x03\x25\x47\x39\x4a\xfe\x29\x09\xa0\xa8\x40\x3a\x49\xb4\x7d\x21\xc5\x2e\x3a\xe6\xea\x42\x9a\x3e\x15\xed\x5d\x77\x6d\x7b\xbf\xba\xb6\xbe\x4a\x20\x83\xf9\x54\xdf\xad\x77\xf2\x2f\x76\x42\xb1\x3f\xa5\xf5\x61\x83\x8d\x30\xc2\xca\xc8\x32\xdc\xd9\x69\x67\xe7\x05\x2b\x5d\xa6\xd9\xe9\x0e\x4d\xa2\x5a\xa6\x96\xa9\xd7\xb1\x37\xe9\x9b\xc7\x93\xfc\xf3\xe0\xce\x3f\x8f\x77\xf2\x67\xb8\x73\x32\xc8\x54\x99\x5a\xda\x32\x30\xcf\x36\xa5\x6d\xac\x63\xd6\x95\x89\x99\x14\x24\x81\x44\x20\x9e\xf6\x63\x55\x06\xbc\xc4\x1f\x89\xf4\x06\x0f\x5d\x76\x07\xbc\x91\xc4\xff\xe2\x7a\x16\xea\xb5\xe8\x4d\xb4\xde\xff\xea\xd2\xd5\xee\x45\x2e\xf3\xde\x2e\x5b\xc2\xc3\xd2\x6d\x88\x65\xe9\x2b\x24\x39\x74\x2e\x01\x7d\xc9\xbe\xeb\x49\x77\xc1\x2d\x99\x0a\xb8\xf5\x75\xeb\x08\x00\xc3\xb6\x12\xfc\xff\xd3\x9f\x96\xf7\x73\xef\x21\x8c\x74\xac\xe5\x10\xae\xa7\xae\x4a\x56\xb8\x7f\xdf\xbb\x3c\x78\x24\x97\x30\x12\x56\x08\x63\x87\x39\x3a\xff\xa9\x02\x64\x2b\x4c\x6d\x8d\xdc\xdb\x57\xd9\x5e\xaa\xdf\xbe\xe5\xbd\xb5\x08\xd9\x24\xcd\x55\x90\x05\xb9\x68\x29\xaf\x2c\x65\x79\x89\xab\x7d\x9e\xf3\x05\xcd\xb1\xe7\x5b\x52\x36\x21\x84\x37\x54\x1e\xaa\x10\x6b\x4a\x8a\x8a\x1f\x72\xfd\xa1\xe2\xf7\x53\x1d\x20\xe3\xa2\x24\x5a\xf3\x69\x83\x13\x68\xaf\x65\x61\x6a\x5c\xde\x05\xd1\xc8\x12\xff\xb9\xf7\x37\x9e\x2c\x3d\x12\xa1\xfc\x6b\x27\xd4\xb8\x7f\x29\xcd\x21\x94\xe0\xde\xbd\xce\xf6\x91\xeb\x32\x02\x21\x11\xfe\x12\xeb\x7e\x46\xd7\x4a\x7e\xbb\x85\x63\x2c\x37\x96\xba\xa2\x2e\xc7\x34\x12\x23\x40\xa2\x05\xba\xcc\x52\x82\xcd\xfe\x3a\x35\x87\x8f\x04\xd2\xfa\xe0\xcf\x99\x2f\x71\x6d\xca\x54\x10\x84\x18\x42\x12\x86\x63\xb7\x42\x6f\xec\xaf\x23\xc4\x25\xdb\xb9\xf8\xf2\xd3\xc2\x98\x46\x71\xf2\x37\xeb\x8f\x2e\x2d\x2b\x22\x94\x46\x94\x88\x43\xb2\xbd\x99\xfb\x7f\xcf\xef\xfc\xbe\xa7\x7b\x2a\xbb\xef\x99\x7d\x8d\x2b\x4b\x8b\x51\x5a\xb4\x88\x12\xa5\x94\x28\x11\x6d\xac\xff\xfd\x5f\xe6\xea\x7f\xe2\x20\xbe\x71\xd6\x75\xce\xdb\xd6\x2c\xa1\x29\x5d\x4a\x80\x94\x7b\x53\x40\xff\xef\xf7\xb2\xe9\x2f\x74\x2e\xec\x0b\xc5\xac\x34\x68\x83\x24\xc8\x20\xb9\x7b\x23\xc8\x64\xed\x24\xd9\x7b\x11\xc1\xa5\xa2\xe8\xe8\x60\x0a\x11\x40\x03\xf3\x94\x51\xce\xbf\xc5\x99\x10\xf5\x25\x11\x88\x36\x29\x10\x88\x8e\xc0\x09\x80\xe8\x58\x5d\x06\xa2\x13\x70\x02\x10\x9d\xad\x3c\x10\x3d\x8f\x76\x90\xf5\x02\x75\xf4\xd2\x80\xcc\x5b\x60\x28\x47\x19\xa1\x00\x70\x8f\x9c\xac\x83\xf7\x0d\xb5\xa0\x8c\x00\x1f\x98\x60\xfb\x3f\xf2\xcb\x31\x84\x57\xfb\x97\x0d\x0c\x0e\x0d\x8f\x8c\x8e\x8d\xcf\x9a\x3d\x67\xee\xbc\xf9\xbb\xa8\x98\x58\xb8\x68\xf1\x92\xa5\xcb\x96\xaf\x60\x4f\x5d\x57\x4c\x35\x24\x7d\xf1\x9f\x13\x06\x13\x00\x21\x18\x41\x31\x9c\xc5\xe6\x70\x79\x7c\x01\x21\x14\x89\x25\x52\x99\x5c\x41\x49\x23\x87\x35\xbe\x0d\x12\xa2\x59\x8b\x56\x6d\x1e\x79\xec\x89\xa7\x00\x08\xc1\x08\x86\x13\x24\x45\x37\xb3\x1c\x2f\x88\x92\xac\xa8\xb2\xbc\xdf\xfd\xf0\xd3\x2f\xbf\xfd\xd1\xad\x47\xaf\x3e\x91\xfe\x1a\xf0\xcf\xa0\x21\xc3\x46\x8c\x1a\x3b\x6e\x13\x26\x4d\xa5\x33\x4b\x11\x18\x6a\x18\x62\x06\x98\x0b\x0b\x67\x71\xad\x98\x81\x04\x51\x86\xfd\x46\x43\x18\xf5\x7b\x53\x83\xf1\xa2\x4b\x8e\x0b\x66\x6d\xbe\xa8\xcd\xdf\xc2\x39\x6e\xa7\xed\x0c\xe7\xed\x3c\x2c\xb8\xb8\x5c\xb0\x3c\x9e\x8d\x01\xcc\x10\xbf\xc1\xc6\x17\x95\x05\x1f\x50\xba\xb8\xa4\x0f\x50\x6f\xfb\x3c\xc2\x2b\x1c\x34\x98\x73\x7f\x0c\xc6\x5b\x90\xde\x50\x00\x7d\x00\x1c\x70\x64\xbc\x0d\x85\x06\xf0\xea\x1f\x50\xfd\x0a\x66\x0f\xa6\x7e\x4b\x21\x57\xac\x44\x00\xe2\x94\xb8\xce\xb2\x35\x02\x10\x8c\x54\x0f\x5f\x8c\xb4\x63\x4a\xf4\x36\xc1\xa5\x79\xa9\x06\x32\x1a\x3c\xd7\x00\x30\x2a\xa8\x61\xc0\x65\x66\xa9\xa0\x92\x27\x74\xf1\x9e\x21\xa6\xf9\xaf\xcd\x6a\x25\x9e\x44\xb2\x68\x97\xaf\x0e\xe9\xb2\xa2\x94\xa3\xeb\x62\x6b\x06\xcf\x52\x09\xe4\xb1\x87\xf6\xc2\x5e\x59\xb7\xcd\x1f\x24\x8c\xe6\x52\x1b\x9a\x43\x7f\x9b\x08\xe9\x21\x27\x5c\x0f\xec\xd0\x12\x5e\x85\x77\xe1\x53\xf8\x16\x15\x9d\xe9\x48\x74\x8e\x01\xf1\x44\x3c\x1b\x13\xe3\xbb\xf8\x3d\xf6\x47\xce\x43\x4a\x2d\x91\xb9\xd0\xc5\x47\x73\xbf\xf1\x59\xd8\x3c\x6c\x05\xbe\x07\x23\x84\xb9\x6e\xe7\x6c\x64\x63\xbb\x6a\x37\xec\xbe\x3d\xb4\x67\x98\x08\x4c\x14\xe6\x56\xf2\x4e\xb2\x22\xc5\x57\x72\x35\x34\x61\x14\xc6\xe1\x72\xf8\x89\xc5\x60\x13\x7b\x11\x7b\x25\x9a\x8a\xe6\x22\x17\x5d\x61\xfd\xb0\xc1\xf8\xd7\x8b\xed\x3f\x3c\x3f\xf5\x41\x17\x79\xbc\x70\xb1\x7e\x72\xf0\x7a\xdf\xaa\x78\xca\x0b\x3e\x30\xcc\x0c\x3c\x11\x66\x90\x40\x12\xd9\x2c\x97\x9f\x0e\xb7\x62\xd7\x54\x3d\xdf\xea\x24\x61\x17\xfc\xd1\x09\x70\xcc\x3e\x23\xe4\x86\x9b\xa1\x26\xb4\x86\xd7\xe1\x63\x4b\x1e\x14\xb8\x52\x92\x8e\x1c\xb4\x57\x81\x0a\xd3\x39\x25\xeb\xfd\xfe\x63\xff\xbb\x2f\x1a\xc3\x27\xbc\x07\xdb\x2f\x6f\x8f\x86\x5d\x83\xcd\x15\xff\x5b\x3a\x20\x9d\x24\x49\x90\x94\x28\x62\x01\x3d\x92\x09\xbc\xb9\xce\x07\xed\xde\x6b\xdf\x6c\x0f\x82\xdc\x46\xc2\x6d\xc0\xe1\x79\x1c\xa0\xff\x96\x6d\x3f\x2d\x72\x3f\x01\x28\x35\xa0\x14\x81\x92\x05\x6a\x07\x50\xdb\x80\x12\x01\x4a\xbc\xc5\x1a\x9b\xff\xff\x47\x91\x7d\x00\x24\x30\x20\xcc\xbd\x8f\xd6\xcb\xf7\x5e\x5a\xaf\x31\xbd\xae\xec\x9d\xd8\x5b\xdc\xdb\x03\xf4\xa1\x3e\x08\xc0\x1e\x01\xa0\xa9\xdb\xff\x70\x97\x01\xb6\x8d\x06\xac\x82\x37\x97\xba\x0a\x24\x9b\x64\xac\xe4\x52\x01\xd0\xbf\xb8\xf9\xdb\xfe\x3d\xf0\xeb\xf1\xff\x7f\xbb\x3f\xfc\x8f\xfa\x37\x0d\xf0\xc9\x9d\x4c\x19\x82\x36\xb3\xdf\x74\x40\xa8\x7f\x4c\x3f\xb6\xef\x1f\x80\x8f\xbf\x60\xd6\x3d\xb2\xc1\x3a\xbd\xcc\x7c\x43\x97\xd0\x1b\xf7\xd5\xbd\xaf\xcf\xd2\x49\x33\x51\xfc\xc0\xd0\x7b\xd5\x7e\x77\x2d\xdf\x59\xae\x58\x27\x6e\x02\x87\x78\x9b\xf9\xe3\x7f\x19\xe0\x5d\x40\x11\x50\x2f\x1c\x72\x47\xb0\x51\xb4\xb3\x8e\x31\x5a\x5b\x62\xb7\xbe\x0c\xa0\xf3\x37\xd9\x6f\x07\xf4\x67\x60\xbd\x00\x36\x0b\xc0\x96\x01\xd8\x9b\x80\x7d\xd9\x3a\xac\x7f\x23\x1b\x64\x3f\x32\xca\x3e\x34\xf6\x2f\x08\x0b\xb1\x85\x7f\xd4\xb8\x26\x34\xa9\x29\x4d\x13\xa5\x21\xad\x5a\xc3\xb5\xee\xbf\x8e\xcf\xeb\x5d\x0c\x00\x34\x3c\xf8\x2f\xae\x7d\x8b\xc3\xe7\x70\xba\x7b\x78\xf6\x2f\x81\x18\x96\xca\xec\xca\x4b\x2c\x89\x8c\x52\xc5\xa8\x4b\xde\xe0\x19\x68\xdf\x86\x9b\x28\xad\x74\x34\x3c\x81\x98\x1a\x9d\x4c\xa1\xd2\xe8\x0c\x66\x03\x65\xda\xcf\xe6\x70\x79\x7c\x41\x43\x65\xf3\x17\x89\x25\x52\x59\x23\xe5\xde\xca\x70\xf7\xff\x65\x77\x87\xc7\x50\xdd\x88\x51\x33\x4a\xd6\x45\x12\x99\xa2\x2c\xc2\x59\xe7\xca\x57\x73\x4b\xb8\x7b\x78\xf6\xa3\xa6\x97\xb7\x4f\xf8\xfa\xd5\xfd\x2d\xa8\x99\x36\x75\xd3\x7c\xee\x5a\x5e\xad\x86\x9f\x97\x37\xef\x3e\xf9\xec\x0b\x5f\x12\xb8\xf5\x55\xc1\x1b\x21\x18\x41\x31\x9c\x48\xec\xa8\xbf\x30\xa3\x62\x8e\xc6\x93\x29\x4b\x94\xe6\x7f\x35\xb0\x24\xab\x35\xdd\xa0\x6e\x6c\x67\xde\xeb\x66\xd7\x76\xfb\x83\x8f\xbb\xfb\x07\xff\xbd\xbc\x7d\x1c\x4e\xad\x8d\x19\x37\x51\x7b\x93\xa6\x4c\x9b\xd1\xd9\xac\x2e\xbd\xcd\xe9\x6f\xde\x80\x0b\xde\xfe\x1b\x8d\xf7\x0f\xc6\x4c\x50\x82\x54\xcb\xb8\x80\x4e\x1a\xb6\xac\x39\xd6\x5c\x95\x97\x99\x68\x62\x89\x73\xe7\x8c\x90\x32\x9e\xcc\x3f\x96\x53\x49\x35\xb5\xd4\xad\xe1\xa6\x91\xa6\x79\x0b\x3c\xb9\xfd\xc6\x50\x5a\x69\x5b\xf7\x3f\x9d\x74\x0d\x1b\x49\x2f\xfd\x0c\x32\xcc\x28\x32\x2f\x15\xfe\x60\x8c\xb7\xaa\x6f\x72\xdf\xf8\x66\x22\xe3\x4c\x4c\x9a\x8a\x92\x69\x66\x96\x32\xcf\x02\xc7\x22\x86\x6a\xbe\x14\x59\x3d\xc9\x55\x5d\x0b\x7c\x82\xcb\xf8\x65\xe6\x58\xad\x1b\x1a\xd4\x6b\x14\xd5\x24\xa6\x39\x38\xc4\x0f\xe6\x44\x33\x3e\x24\xc8\x41\xd4\x90\x18\x92\xa2\x40\xac\xd3\xa2\x90\x1c\x85\xc2\x49\x21\x55\x41\x0a\x8e\x1b\x63\x83\x8e\x0c\xff\x74\x01\x43\xab\x03\x40\x80\xce\xaa\xe1\xdc\xbd\x8e\x84\x31\x1f\xae\x13\xff\x67\x1d\x38\x36\xc6\xc2\x16\xd2\x71\x3d\x24\x5f\x05\x61\x14\xeb\x84\xd3\x6c\x37\x2f\xca\xca\xd4\x4d\xdb\xf5\xc3\x38\x2d\x57\xeb\xcd\x76\xde\xdb\x3f\x38\x3c\x3a\x3e\x39\x3d\x3b\xbf\xb8\xbc\xba\xbe\xb9\xbd\xbb\x7f\x78\x64\x07\xcb\x86\xa3\xe3\xa2\xe7\x07\x21\x6f\x8b\x1c\x52\x6e\x1e\x39\x9f\x42\xa5\xd1\x0b\x18\x4c\x16\x9b\xc3\xe5\x01\x17\xeb\x42\x66\x37\x2f\x8b\xa7\xc3\xcd\xe9\xe1\xee\xe9\xed\xeb\xe3\xe7\x2f\x12\x8a\x69\x89\x14\x5f\xa2\x24\xef\x91\x72\x8c\xbb\x77\xea\xd0\x31\x86\x84\x42\x04\x88\x15\x86\x12\x15\xc7\x29\x51\x14\x72\x8a\xc5\x24\x8a\x36\xa5\x12\xa6\x0c\x65\x12\x8c\x42\x09\x4a\x52\x22\xed\x95\xc6\x51\xea\x38\x4d\x3c\x49\x5c\x86\x4f\xb9\x52\xc8\x57\x3a\xd5\x84\x50\xaf\x70\xf6\xe9\x5b\x4d\xea\xff\xc5\x1a\x3f\x64\x15\x2b\x44\xc7\x74\x48\x87\xe9\x52\x96\x91\x34\xa9\x33\xba\xa0\x08\x9d\x6e\x55\xa5\xfd\xa9\xd6\x11\x1d\xd7\x29\x4d\x68\xc1\xb8\x38\xe6\x2c\x59\xb6\x62\xf1\xe6\x33\x21\xd0\x7f\xb7\x9d\x77\x6c\xe0\x64\x4a\xb9\x41\x28\x33\x5c\xe5\x1a\x67\x59\xe0\x3a\x65\xcc\xc9\x3d\x0b\x73\x38\x56\x93\x12\x1b\x88\x53\x00\xc5\x8e\xef\x5b\xf6\x39\x3a\x7c\x42\x5a\x18\x39\xdb\xdf\x13\x9f\x23\x3e\xb6\xa8\xbb\x1f\x25\x4e\x4c\xef\x7b\xdd\x97\x2a\x4d\x41\xc0\x6f\x9b\xf8\xc5\x7e\x19\x01\x82\x87\xb4\xc8\xd2\x93\x7f\x0c\xdc\x3c\xc1\xde\x7d\x4c\x5c\x4e\xb3\x7e\x29\x87\x6a\x3f\x7f\x46\x71\xfd\xef\x15\xfe\x14\x15\x1b\x5b\x3b\xef\xe1\x05\xc4\xe6\x13\x5a\x49\x89\x01\x01\xb3\xf4\x30\xa0\xa0\x7d\xf1\xc3\xaf\xe8\xf8\xe3\xb4\xd6\x4b\x59\x6c\x16\xaf\x3f\x25\x6f\xde\xb5\x5f\x59\x7e\x74\x9d\x3c\xc5\x8b\x13\xb7\xee\xae\xdb\x97\xac\x9e\x20\x56\xf7\x59\x07\x89\xcf\x12\xbb\xb6\xc1\x8e\x89\xfb\x41\x92\x02\x63\xbe\xeb\x2d\xd9\x75\x2a\x1b\x74\x16\x4d\x33\xd7\x73\xcd\x5d\x6f\x2f\x79\x9c\x8b\x43\x5c\xce\x06\xd7\xe9\x20\xe7\x40\x02\x89\xb0\x34\x57\x65\x1a\x1a\x79\x99\x30\x14\xb1\x14\x55\x1f\x9b\x91\x34\xa0\x61\x3a\xe5\x6a\xbf\x9b\x3c\x2a\x12\x67\x0c\xcd\xb1\xe8\x74\xb1\x21\x49\x7c\x54\xaf\xa8\xd9\xbe\xdf\xd3\xf5\x5d\xbb\x61\xc3\xf8\x55\x2a\x2f\x5d\x7d\x9d\x93\xe5\x18\xab\xb8\x4b\x82\xa7\xd4\xcd\x88\x70\x3d\x59\xc0\x00\x27\x97\x27\x5a\xf4\x22\xd9\xcf\x3f\x1b\x8a\x26\xa0\x58\x51\xf9\x21\x52\x20\x29\x26\x09\x38\x48\xc0\x71\x15\xd9\xfc\xd3\x2a\x17\x76\x9c\x22\xcd\xd3\x66\x99\x6f\x4e\xe7\x31\xb9\x5e\x25\x8b\x78\xc9\x6b\x7a\x8e\x14\x9a\x97\x33\x0a\xab\x89\x33\x10\x34\x17\x2d\xda\x7e\x66\x05\x64\x24\x83\x69\x43\x5a\xcc\xa6\x05\x14\xb6\x05\x24\x6c\x75\x4e\xbe\x96\x0a\xaa\x4e\x8e\x51\xc7\xf4\xbc\x1c\xe7\x5c\x15\xce\xe6\x57\x69\xaa\xf4\xb4\x9e\x27\xef\xcc\xe7\x4b\x3e\x50\x43\x57\x2d\xe7\xfc\x35\x9b\x07\xea\x40\x52\x89\xaa\x3c\x46\x05\xaf\x69\x8a\x99\xda\x17\xfe\x96\xaf\xe5\x07\x1a\x10\x4d\x7d\xa4\xf4\x4f\xab\x82\xe7\xaf\x1b\x75\x29\x6a\x7f\xb4\xd4\x29\x5a\xa0\x89\x27\x6f\x53\xd7\xe5\x3c\x9f\xa1\x56\xb1\xef\x81\x16\x9e\xbc\x4a\x4f\xde\x8c\xe8\xce\x9f\xb5\x74\xae\xdd\x46\x67\x50\xde\xf9\x1b\x6b\x75\x24\x8b\x34\x5c\x06\x41\x71\xec\xd5\x47\xbe\xd6\x0c\x31\x26\x12\x7e\x99\xba\xe6\x52\x68\x8e\xcd\xb6\x90\xe5\x88\xc4\x1b\x92\x7d\xc8\xee\x10\x04\x37\x15\x5f\x42\x92\xac\x04\x59\xc9\x4e\x56\x7b\xf6\xc6\x4e\xfb\xc6\x7a\x0e\x1d\x15\xdb\x1c\x11\x38\x9e\x24\x09\x67\x6d\xba\x13\x74\xb0\xd5\xd5\x72\xfe\x36\xd1\xa0\xa8\x05\x15\x8a\x64\x84\x4e\xa3\x0a\x92\xfd\x6e\x0e\x6d\x07\x03\xea\x34\xb6\x3f\x36\xda\x1d\x3b\xfe\xed\xdc\xe9\x1c\xe8\xa2\x33\x7a\x39\xd0\x43\x97\x0c\xfa\x8a\x02\x03\x25\x01\x43\x45\x83\x91\x62\xc0\x58\xb1\x20\x28\x0e\xbc\x52\x3c\x98\x28\x69\x89\x0d\x34\x20\x1f\x81\xc3\x1f\xc1\x77\x68\x0b\x7e\x2e\xd6\x7b\xd8\x62\xd9\xc9\x0b\xd6\xb4\xb9\x66\xe8\x39\xe0\x05\xe0\x7d\xc0\x39\xe0\x25\xe0\x15\xe0\x03\xc0\x6b\x80\x9b\xf8\x8f\xb0\x11\xad\x9f\x71\xc7\xd9\x85\x66\xaa\x99\x7d\x66\x33\x5b\xc4\x25\xe5\x28\xd4\x5e\x37\x27\xe0\xd8\x71\x9c\x04\x4e\x21\xad\xe4\x84\xb8\xd5\x1b\x96\xc3\x4a\x3f\x08\xfc\x68\x20\xb0\xb3\x4d\x23\x31\x9c\x26\xdd\xe8\x60\x91\x72\x10\x9c\x5d\xc5\x99\x51\x8a\x4c\x25\xce\xa1\xab\xb2\x7e\x18\x17\xd8\x82\x73\x06\x87\x46\x1c\x63\xb8\x2f\x8e\xf9\xc5\xed\xeb\xe7\xf5\xae\xdd\xe8\xe7\x5a\x5c\x0a\x5c\x42\xa3\x56\xb2\xbe\x91\x40\xea\x8d\xc0\x15\x86\xe3\x63\xe0\x1a\x2c\x86\xc8\x06\x74\x95\x1b\x74\xa5\xcc\x59\x0d\x5a\x01\x05\xf5\x8d\x8f\xda\x77\x4b\xaa\x55\x95\x72\xfa\x39\x66\x84\xe2\x74\xad\x51\x70\xe4\x52\xe0\x16\x60\xd0\x7c\x8f\xa6\x1b\x92\xca\xe5\x83\x76\x42\xd2\xd8\xe8\x94\xdd\x4d\x99\x1a\x86\xb4\xd0\x14\x21\xc2\xe2\x8f\xa9\x3e\xba\xb8\x49\x3f\x95\xdd\xad\xdc\x5a\x23\xde\x4d\x72\x8c\x26\xbc\xa8\xed\x43\x3e\x44\x5b\x16\xb4\xc4\xd1\xae\x22\xc4\x65\xfa\x06\x4a\xca\xbe\x91\x48\xdd\x9f\x8a\x29\xa9\xee\x83\x96\xf2\xe3\x0a\x3f\xb6\x9a\x84\x8e\x6d\xe9\x3e\xc9\xa8\xc7\x96\x28\x7e\x46\x1c\xe6\x2d\xea\x65\x2b\x74\x96\x96\xf2\x12\xc3\x70\x7d\x70\x05\x00\xd4\xa0\x32\x8c\x05\x00\x4f\xf2\xcb\x02\x67\xe3\x13\xcf\x81\x7b\xf5\xfd\x4a\x1f\x26\xee\xf2\x6c\xbc\x11\x78\x18\x8b\xe1\x29\xee\xf7\x2f\x41\x46\xd0\x51\xec\x51\x5f\x50\x78\x62\xcc\xb1\xdc\xa7\x41\xa3\x79\xf7\x43\x38\xa3\x92\x43\xd0\xb7\x6e\xf9\x4b\xc5\xa3\x95\x17\x5b\xa9\x68\xf0\x12\xa7\x00\xf9\xfa\x02\x4f\xdc\x55\xb1\x0b\x2d\x4b\xb3\xeb\xfc\x04\x3b\xa6\x9f\x61\x1a\x0c\xf6\x58\xcb\xd7\x49\x63\x1e\xfa\x89\xe6\x97\x03\x2f\x63\x5d\x5e\x56\x29\x20\x8b\x1f\xbe\xf7\xd7\xe0\xd6\x11\xcc\x7a\x03\xee\x5c\x63\x0a\x3d\x05\x48\x5a\x64\x73\x1a\xb4\x0c\x9c\xb8\xc0\xdb\xe0\x12\x0c\x0b\x3d\x2b\x65\x1a\x35\x44\x08\x26\xf5\xb1\xfd\x0e\xdd\xb7\x71\xf4\xc3\xff\x11\xab\xc0\x83\xa2\xc3\xd2\xa2\x8f\x96\x3f\xec\xae\x0e\xfa\x2c\x1f\x7d\xaf\x09\x41\x75\xcf\x87\xa0\xb7\x2d\x51\x41\x9c\x2f\xff\x51\x0e\x22\xd3\x98\x48\xc1\xcf\xc8\xde\xc0\x65\x12\xf8\x14\x76\xd4\x8d\x9f\xd1\xd1\x4d\xe7\xaa\x1d\xfb\x02\x6e\x2c\xae\x1c\x8b\x59\x98\x06\x2d\x9b\x06\xa4\x6b\x7c\x85\x63\x51\xa7\x1c\x67\x7d\x8d\x09\x52\x83\x79\x0e\x5f\xf2\x20\x5c\xf9\x42\x80\xaf\xa0\x0d\xae\xba\xc9\x60\xbe\x54\x83\x07\xe1\xea\x0c\x48\x0d\x20\x70\xcd\x4d\x06\xb3\xa5\x16\x3c\x08\xd7\x66\x40\xea\x00\x81\xeb\x6e\x32\x98\x2b\xf5\xe0\x41\xb8\x3e\x03\xd2\x00\x08\xdc\x70\x93\xc1\x02\x69\x04\x0f\xc2\x8d\x19\x90\x26\x40\xe0\xa6\x9b\x0c\xe6\x48\x33\x78\x10\x6e\xce\x80\xb4\x00\xc2\xce\xa5\x06\x3b\x5d\xc6\x74\xb5\xa6\xd7\xf3\x6e\xcb\x9a\x2f\xb0\xcd\xa9\x04\x08\x5f\xe4\xb6\x5a\x86\x91\xee\x80\xd0\x54\xde\xbb\x81\x7c\x40\x4c\x3b\x8e\x7d\xd9\xe9\xd3\x6c\x14\xf9\x4c\x03\xf9\x82\x40\xc7\xb5\x2f\x37\x7d\x9b\x8d\x22\xdf\x69\x20\x3f\x10\x38\xf7\xd4\xa8\x0b\xe1\xec\xc9\xe9\x2b\x20\x95\x1d\x0c\xce\x2d\x85\x6f\xba\x1f\x27\x1f\xa0\x03\x82\x70\x67\x95\xf9\x42\x6c\x35\xff\xa7\xa6\x1f\xc0\x7e\x00\xa6\xfd\x02\xd8\x61\x25\x0a\xe8\xfe\x61\xd0\xfa\x17\xe0\xc0\x83\x50\x48\xb6\xd8\x11\x94\x20\x49\x52\x8d\x80\x4d\x89\xc6\xf1\x12\x74\xef\x1e\x53\x2a\xa5\x2f\x05\x04\xeb\x2b\x62\x14\x52\x2a\x5c\x8d\x37\x33\x9f\x4b\x68\xb1\x16\xdd\x3f\x19\x48\xe5\xca\xa3\xcf\x79\x4c\x2c\xcd\x9c\x64\x65\x34\xb1\x55\xf3\x52\x29\xd0\x16\x43\x5a\xc8\x0a\x3d\xd6\x0a\xe4\x11\x4b\xed\xb4\xeb\x2e\x54\x15\xfd\x6c\x18\x45\xeb\x98\x41\x01\x89\xd2\x0b\x30\xa0\xbc\xac\x35\x36\xb4\xd1\x2a\xed\xef\x58\xca\x6f\xe6\x2b\xa4\x92\x06\xbf\xbc\xbc\x74\x4f\x39\x31\x84\xb9\xab\xb0\x23\xf3\xa8\x59\xfe\xe2\x66\x46\x24\x8c\x15\xc5\xf0\x94\x4f\xda\x95\xbd\x36\x3a\x41\x53\x2a\x46\x29\xb7\x17\x00\x9d\xf0\x29\x0c\xd2\x0b\xf2\x7b\x06\x97\xea\x33\x84\xdd\xee\x12\x4e\xac\x04\x85\x98\x5d\xa1\x3b\x59\x94\xdf\xd4\x5f\x9a\x8e\xd9\xce\x1b\x48\xd1\x6a\xbe\x32\x7c\xe5\xda\xa5\x0c\x95\xda\xed\x82\x08\xf8\xba\x85\xff\x67\x90\xf3\x83\xf7\x57\x91\x26\xc5\x10\x4a\xe6\x13\x9d\x6b\x83\xb3\xf3\xa5\xed\x49\xac\xcf\x2e\xe1\x9e\x2b\x3a\x0b\x5b\x15\x17\x65\xa9\x10\x41\x03\x4b\x29\xc6\x07\x0f\xb6\xab\x44\x4c\x5a\x4f\xb9\x0e\x80\xb3\xc2\x7f\x5f\x5a\x29\xd1\xa9\xef\xa3\x7b\x8e\x98\x91\xad\x5c\x63\x14\xb5\x26\xa6\x47\x99\x0b\x42\xc7\x95\x20\x13\xb2\x1d\x28\xe6\x99\x75\x83\xf9\x86\xd9\xc5\x0c\xc9\xed\x33\x09\x7c\x11\x6b\x7d\xdb\x64\x4e\x8c\x95\xbb\x85\xf5\x04\x78\x3c\x0f\x3a\x03\xf8\xe6\x35\x9e\x42\xee\xc9\xd6\x3a\x70\x20\x03\x83\x50\x1f\x42\xaa\x90\x05\xf3\x0a\x03\x0b\x27\xa5\x42\x7a\xbd\xdd\xa8\x29\x03\x44\x43\xc8\x91\x06\x17\x38\x73\x11\xc9\x8f\x8a\xa1\x0c\xf7\x98\xf4\x66\x30\x86\x87\x26\x6b\xd0\x71\x18\x75\x40\x15\x20\x25\x9c\x23\x02\xa6\x05\xa2\x0d\x16\x18\x23\x60\x30\x48\xca\x3d\xaf\x39\xec\x75\xd1\x78\xc7\x7c\xb7\x65\x66\xa6\xd8\xbe\x95\x2a\x3b\x4d\x39\x6f\x26\x7f\x38\xda\xa7\xb1\xb8\x9d\x0e\x2b\x4a\xa9\xc0\x90\x42\xc1\x37\x6e\x04\x7d\x8e\x51\x48\x0a\x9c\x9e\x0e\x8d\x0e\xe8\x80\x13\xc7\xb1\x43\x87\xef\x5c\xd2\x84\x52\x96\xa8\x1b\x73\x7c\x74\xbf\x64\xed\x70\xbf\x4e\x21\x6b\x70\x1c\x67\xc1\xe5\x29\x5a\xb8\xd0\x96\x8d\x1f\xad\x01\xbe\x94\xe2\xf6\xe0\xdc\x39\x26\x0c\xd9\xf3\x92\x84\x2b\x5e\x12\x50\xd0\x12\x80\xf9\x2c\xc3\x33\x46\x39\x2a\x1a\xab\xd1\x32\xb3\x6d\x6e\x5f\x18\x40\x11\x70\x24\xcf\x9b\x49\x12\xa5\x7c\xdf\x74\xe7\xd1\x69\xa4\x03\xc8\x81\xf3\x8d\xb7\xc4\xba\x2e\xcb\x5e\x26\xde\x47\xbd\xa1\x39\xb9\x39\x9d\x71\x83\xf3\x3c\x0c\xfb\x73\xd7\x3d\x20\xcd\x69\xee\x58\x0e\x03\x0b\x01\x1e\xf0\xe9\x86\x0e\x67\x66\x18\xc9\x35\xd9\x49\x1a\x67\xc9\x92\xc0\xdb\xe4\x79\xdb\x75\xda\x96\xe8\x2b\x3f\xb0\x09\xde\xcb\x71\xcc\x21\x81\x4c\xb4\x90\xb9\x16\x8d\xd0\x02\xac\x98\x01\xa5\x55\x10\xad\x8e\x95\xd0\x7e\x5c\x58\x51\xc1\x31\xbd\xcb\xdc\x19\x3b\x44\x5a\x8c\x4f\x1e\xac\x9b\x44\xac\xb4\x9e\x06\xf6\x85\x86\xc3\x40\x51\xa5\x44\x13\x60\x19\x1e\x36\xaf\xb6\xa3\x4b\xc8\xa3\xfb\x84\xd9\x46\x56\x34\xf7\x1e\xe5\x58\x78\xcf\xe1\x45\x78\x7c\x18\xcd\xab\x30\xc1\xaa\xb6\x5e\x55\x77\x8a\x5d\x83\x07\x7b\x95\xd5\x75\x87\x8f\x73\xa1\x53\x5a\xa8\xbe\x5f\x29\x25\xc3\x28\x02\xf4\xd2\x94\x3a\xd0\xe3\xb8\x69\xaa\xfb\xa2\x93\x07\x2e\x7b\xc2\xe8\x87\x9d\x79\x90\x81\x0a\x6b\x11\x79\x5a\xa8\x9e\xcf\xa3\xbc\xa4\x19\x39\xb2\x99\x28\x28\x03\x06\x51\x01\x0a\xe9\x63\x23\xeb\xb1\x02\xea\x67\x26\x01\x0c\x78\x32\x8a\x51\xbd\xb2\xa6\x50\xc3\x61\xc8\x3a\x16\x69\xc6\x36\x20\xaa\xd3\x8e\x68\xfd\xfc\xa6\xb5\x1f\xd1\x81\x97\xb1\xc6\x45\x54\x9b\x41\x85\x64\x70\xe9\x0d\x4d\x51\x0f\x56\xe9\x96\x0a\xe3\xc0\xfe\x5a\x15\x6a\xf0\x16\x71\x37\x20\x02\x4d\xa1\xd9\xc3\x9a\xdd\xc3\x5f\x7e\x0c\x3b\x40\xc4\x6a\xfc\xab\x10\x65\x1e\x1a\x37\x65\x28\x6b\x0b\x6a\x51\xac\x5a\x7d\xd0\xe4\xc2\x17\xbd\x3d\x02\x93\xfe\x48\x90\xf5\xe6\x79\xbd\xea\xc3\x2d\x18\x28\x11\xf6\x25\xab\x45\x7f\x46\xfa\x2f\x47\xee\xbb\x73\x5d\xe6\x03\xe9\x7e\x6e\x6c\xb2\x65\x36\xbb\xd8\xd9\x8e\x36\x96\x55\xb7\xa3\x49\x32\x61\x81\x2d\xb8\xb4\x71\x4f\x9e\x7f\x0d\x7a\x41\xce\x91\x02\x1e\x6e\x97\xf5\xe5\x55\xd6\xdb\xa5\x36\x29\x2a\xb3\x93\xa8\x76\xcb\x9d\x0c\x10\xd2\x7c\xcb\xec\xd9\x98\x67\xf7\xb5\x1c\x61\xbb\x67\xb5\xd9\x98\xb7\xc1\xdf\xe0\x7b\xb8\xd4\xe2\xc9\xe2\x56\xe1\x56\xf0\x99\x83\x81\x01\x12\x3d\xfd\x90\x8c\x0f\xa6\x8b\xef\xb4\x16\x9b\x09\x26\x16\xae\x31\xc1\x14\x10\x32\x98\xc1\xcb\x0d\x38\x61\x2a\xdd\x3f\xae\xaf\x87\x2c\xe8\xbc\x84\x8d\x70\x66\x6b\xdc\xe5\x57\x08\x2f\x46\x89\x71\x3b\xdc\xda\x98\x87\xb6\x08\xd8\x97\x00\xe7\x06\x36\xe4\x0a\xc4\x1c\x19\x8c\xe9\xb3\x62\x52\xa0\x16\x6f\xd3\x14\xf0\x81\x74\x10\x63\x51\xfb\x8b\x6a\xed\xb2\x1f\xaa\x8b\x14\x66\xba\xf7\x93\x3e\x7e\x3c\x8a\x28\xfe\xc4\x24\x84\xd0\x85\x40\x03\x43\x18\x78\x0f\x66\x8e\x6c\x8e\x3d\xfe\xf5\xbf\xff\xb3\xcb\x72\x4e\x4c\x26\xc9\x79\x68\x46\x3c\x63\x29\xdf\xfb\xdf\x7f\xe3\x45\xf0\x55\xbe\x66\xe0\xae\x8b\x27\x54\x71\x32\x19\x50\x48\xa7\x74\x64\x6d\xb1\xc2\x14\x95\x6d\xa6\xb3\x09\xe4\xbd\x2e\xc5\xc5\xb8\x38\x75\x66\xe7\x46\xb4\x9c\xc7\xda\x21\xc2\x05\x6f\x13\xa6\xd2\x17\xae\xb7\xb6\x92\xa3\x93\x8d\xdc\xec\x1f\x34\xb9\xd2\x3f\x4c\xa7\x12\xcc\xef\x1d\x83\x9e\xc5\x88\x0e\x10\x66\x70\x24\xd7\x90\x64\x97\xef\xc1\x5d\xb0\xb6\x44\x8b\xfc\x2c\x05\x63\x47\xbe\xb7\x6b\xe7\xf7\x06\x9a\xb6\x3e\x3c\xa5\x0a\x32\xc1\xdb\x7a\xcd\xc9\xf7\x2b\x98\x8b\x12\xb1\x96\x19\x83\x18\x54\x41\x06\xed\x8a\xa5\x2c\xe4\x4d\x3c\x8f\x10\x72\xf4\x86\x14\x38\x21\x6b\x51\x9b\x05\x56\xf8\xa1\xc0\x9b\x39\x45\x21\x71\xa7\xdf\xe5\x9e\x96\xbb\xdb\xd5\x33\x34\xbb\x24\x85\x97\xc0\xc5\x4e\xa1\x13\xba\x48\xe3\xe9\x89\xa6\x64\x2d\x2e\x7d\x41\xe8\x4d\xbd\x30\x78\xb7\x0c\xf1\xf8\x89\xb2\x20\x73\x4d\x82\xa3\x0c\xb6\x45\x68\x8c\xb4\xba\x8e\x19\xb8\xeb\x29\xac\xad\x92\x89\x2f\x41\x9e\xea\x09\x8c\x1e\xd0\x14\x4a\x83\x81\x6a\x99\xc4\xa1\x35\x46\x91\xbe\x24\x25\x54\xca\x64\xee\x73\x98\xb2\x45\xdc\xff\x9e\x48\x6d\xbd\x4f\xd6\xa9\x55\x28\x7e\xa5\xa0\x7b\x93\x96\x9d\xd3\x70\x84\x67\x61\x0d\xf4\x3c\xbb\x6d\xee\xc7\x76\x03\xa2\x53\xa5\xb1\x30\x39\x23\x95\x0c\x4f\xc3\x88\x0c\x48\xf0\x25\xca\x8c\xb7\x80\x30\x73\xeb\x76\xda\x97\x49\x21\x47\x7a\x86\x6f\x50\x53\xc0\x98\xab\xef\xc0\x78\x04\xc9\x18\x27\x09\xa6\x2b\xb0\x96\xa3\x76\x81\xad\x9b\xf1\x76\x44\x90\x21\x13\x24\xc3\xaf\x09\xc9\x4c\x70\x24\x48\xe0\x4b\xbc\xab\x55\x96\x34\x9f\x14\xba\xd8\xbe\x16\x73\x9f\x44\x74\x48\x62\xb2\xed\xdd\x5e\x65\x70\x6f\xf4\x34\xb4\x0a\xc9\x64\x67\x6a\xd2\xd1\x75\x3e\xb1\x87\x15\x72\xe0\xe5\x48\x43\x2b\xe7\x0a\x9d\x0a\xb8\xc3\xf6\x33\xac\x47\xac\x9d\x5c\x42\xf7\x9e\x06\xa2\x71\xca\xc8\xbe\x4a\xd8\xf5\x84\x8c\xae\xdc\x1f\xdf\xd9\xeb\x62\xb6\x64\x88\x19\x71\x68\xcf\x97\x6d\x83\x56\xdd\x25\x13\x64\x2d\x83\xe5\x63\xf4\x30\xac\xfd\x15\xb5\x46\xc8\x89\xef\x39\xd9\x10\x5c\x82\xa5\x95\x7a\x56\x05\xaf\xaf\x90\x4c\x78\x3b\x95\xc1\xa6\x6b\xbe\xa8\xce\xbc\x72\x28\xce\x3f\xe7\xdf\xf7\xe8\x6c\x77\x48\xd0\x82\xc8\xb9\x91\x03\x6e\xa9\x50\x01\x3c\x38\x31\x43\x2f\x2e\x16\xb9\x22\xce\x37\x6a\x48\x7e\x47\x93\xb9\x7f\x19\x7c\x59\xd9\x38\xcc\x9e\xc7\xcb\x29\x3c\x13\x63\x7f\x07\x28\xcc\x92\x2b\x3b\x7a\x8b\x58\x3f\x3e\xf5\xd8\x54\x98\x07\x8d\xf2\xa1\xea\x94\x6a\xd6\xb7\x67\xa8\x0d\xd5\x21\xc2\x03\x9f\x22\x31\xd8\x61\x55\x00\xf6\xd5\xb2\xbe\x94\xdb\x94\xb3\xe5\x58\xc1\xa1\xed\x7d\x4e\xb7\x51\x1f\x38\x6f\x80\x8b\x0e\xe2\xcd\xb7\xe6\x7e\xbe\xb3\xde\x7d\xd0\x36\x4d\x61\xbd\x0c\x4c\x99\xd4\xbb\xb8\x06\xf8\x14\x97\x9a\xb2\xf6\xa8\x64\x44\x06\x48\xdc\x63\x6e\x8f\x92\xa2\x7a\x6f\x64\xc8\x35\x29\x28\xba\xb1\x1c\x46\x9d\xe0\xeb\x95\xf5\x3a\x03\xc9\xd1\x7d\xd3\xd4\x5d\xe3\x35\xfa\x12\x44\x47\x94\x49\xd8\xc0\x26\xec\x47\x26\x85\x72\xe2\xc8\xac\xe3\xea\x23\xc8\x3f\x96\x56\x2b\xdf\x8d\x49\x9c\x48\x17\x0e\xfb\xfa\x7e\x04\x02\x7d\xa7\x57\x54\xa9\x6c\x36\x9b\x3a\x59\x88\xb5\x71\xe4\xbb\x6e\x92\xcb\xc3\xfb\x59\x36\x5f\x3e\xf7\xa8\xe6\x35\x97\xd1\x00\x46\xe5\xa3\x63\x0a\x60\xca\x9b\x0b\x1b\xcf\x01\xe1\xe6\x7b\x5a\x0e\x10\xe1\xf7\x38\xa7\xcd\x6c\xc1\x0b\x8b\x64\x1d\xca\x5b\xb6\xc6\x43\xaf\xfa\xd4\xaa\x7b\x37\xab\x96\x69\xf3\xac\x51\xfa\x89\x34\xd7\x7b\x1f\xf1\x09\x7a\x40\xbe\x62\xf0\x72\x9c\x44\x57\xc5\x5d\x6d\x9f\xbd\x45\x2c\x16\x63\xef\xe8\xeb\xa8\x40\x46\xa8\x4e\x71\xbc\x3d\x27\xe2\x1a\x38\x76\xdd\x20\x9c\x27\x96\x25\x23\xd7\xe6\x74\x29\x6d\xde\x54\xf1\xe3\xda\x44\x9f\x01\x3d\x7b\x9d\x26\x52\x6f\x08\x2b\x50\x13\xa9\xa3\x86\x05\xe2\xc1\x0c\x05\x2c\xd5\x73\x9a\x35\x60\x12\x7f\x18\x3d\xc6\x41\x03\xbd\x06\xb8\x16\x17\x00\xf7\x56\x31\x04\x84\xe0\xa8\x8a\x21\xe2\xa8\x08\x50\x37\xf4\xee\x59\x2d\xfa\x9a\xf3\x8c\x14\x2e\x88\x00\xe5\x26\xa6\xca\x1f\x7f\xcc\x65\x8a\x1c\x64\x30\xa0\x06\xcd\x0c\x2e\xb6\xaf\x6d\x38\x14\xf1\x8c\x2a\xb7\x01\x25\xa9\x85\xca\x35\xb7\x2e\x1f\x06\x54\xe2\x45\x24\x72\xb0\xd9\x31\xba\x6c\x0e\x8b\xdc\xaa\xf7\x5b\x2b\xbd\x61\x99\x3a\xee\x10\xed\xf5\x92\xca\x4c\xc8\x2f\xf6\x90\x81\x7b\xea\xd9\xc9\x86\x65\xd0\x1a\x9f\x3b\x10\x3e\x09\xa8\x5f\x67\x26\x02\x1d\xc5\xf9\x38\xdc\x5f\x36\xdb\x69\x6e\xb2\xa8\x33\x6b\xd5\xc0\xa8\xf0\xf7\x07\x3c\xae\x93\xe6\x8c\x81\x86\x7d\x50\x12\xd6\x13\x5d\x23\x2a\x21\x15\xe9\xcd\x9d\x19\x57\x56\xa7\x8b\xfb\x40\x91\x86\x4a\xf6\x31\x9f\x2c\xa0\xb6\xbb\xb2\x2c\x94\x59\xe2\x80\xc8\xe9\x1f\xde\xdf\x76\x67\x01\x74\xbd\x5e\x90\xf4\x79\x55\x9a\x1c\x8a\xcc\x04\x5c\xc5\xb7\xf1\xb7\x0a\x93\xec\xa3\xfb\xa8\x8b\xe8\xba\xfb\xb5\x60\xb1\xc9\xf4\x36\xd0\xf1\xb0\x37\x1c\x53\xd6\x3c\x22\xbe\xcc\xc0\x3e\xbf\xfa\xa1\xba\xae\x43\x37\x4e\x30\xe3\xf0\xf9\xa0\x5b\x9f\x59\x21\x13\xa1\xfd\x36\x88\x55\x99\xe3\x5a\x2f\x1e\x9a\x41\x1c\xf5\x07\x6a\xd8\x6f\x43\x32\x5d\x0a\x7a\x6f\x86\x89\x58\x31\x3c\x56\xaf\xc1\xce\x23\xe2\x79\xb1\xe9\x4c\x14\xbd\xd9\x8e\x7c\xbd\xf0\x1e\xcd\x4b\x5f\x59\x40\x96\x74\x0a\xd0\xfd\x12\x5a\x76\xa4\x5b\x0f\x22\xc1\x37\x39\xa9\x39\x6c\x8a\x7e\x4d\x92\xb9\x7f\xbb\x61\xae\x74\xc1\x91\x1a\xe1\x89\xed\xc4\x17\x7a\x78\x9c\x74\x14\x64\x95\xea\x2a\x1a\x2d\xdd\x60\x27\x16\x8b\x50\xed\x5b\xe6\x53\x44\xfd\x3d\x7c\xbd\x30\xb5\x44\x17\x3a\x0b\x63\x38\x82\x49\x13\xbe\xab\x36\x7f\xd4\x4c\xef\x42\x85\x7d\xcb\x8a\xea\xfc\x6c\x66\x6f\xac\xd6\x87\x73\x6e\x34\xd7\xbe\x0d\x6d\x5e\xd4\x22\x33\x53\xff\xa1\x47\x69\xe9\x83\x07\xed\xe6\x9e\xf2\xca\xbc\xfc\xbc\x8b\xcb\x7f\x7c\x08\x01\xbf\xb4\xd4\xa0\xb2\x6b\xb2\x4c\x81\xb1\x6d\x5f\x6d\x72\x4c\x6c\x58\x58\x6a\xdd\xe8\x83\xc1\xb1\x22\x7d\xeb\xce\x57\x22\xdb\x04\x32\x68\xd6\xa7\x2f\xc3\x07\x8e\x36\x5a\xa1\x8d\x69\xc8\x83\x95\xf8\xee\x12\x08\xc3\x45\x1e\xf2\x63\x32\x9f\xce\x26\xb9\x2e\xb7\x4e\x3d\x13\x38\x23\x3d\x64\x01\x47\x17\x72\x49\xe7\x77\xc3\x3f\x2b\x0b\x7c\x74\x56\xeb\xf0\x36\xdb\x68\xb5\x47\xbb\x8a\x1b\x17\x69\x5b\xfd\x61\xb6\xd6\x06\xdf\x8e\xbe\x68\x48\xd9\x45\x62\x95\x64\x2e\xae\x2a\x69\x72\x9e\x37\xeb\x32\xb4\x76\xb7\xc8\xc3\xbc\x02\x70\x90\xb9\x36\x95\x6a\xd6\xf1\x83\x2d\x89\xb7\x8f\x4b\x69\x63\x5a\x83\x87\x49\x8e\xbc\xa3\xfe\xe3\x1f\xaf\x0c\x57\x61\xd5\x51\x6e\x3e\x20\xed\x5c\xa7\xd3\xa3\x93\xc1\x89\x4a\x7d\xdd\xeb\xeb\x36\xd8\xab\x18\xad\x00\xb7\xcb\x1f\xd8\xb6\x77\x90\x4f\xaa\xf4\xd7\x64\xa1\x3a\x6e\xf1\x18\x6c\x12\x78\xe7\x3b\xca\xcc\xc5\x66\x50\xf2\x0f\x01\x47\xee\xe4\xcf\xa0\x3a\x56\x31\x05\xb0\xd6\x3e\x4f\x7d\x44\xc4\xd9\x62\xb9\x1f\x0d\xbe\x58\x71\xb0\x8f\x92\xfb\x96\x43\x35\x93\x62\xcf\x19\x3e\x9a\x78\xbf\x00\xab\xd5\xf5\x76\x9a\x2a\xf3\xda\x4c\x67\xd5\x70\xbb\xd8\x82\xbc\x66\x2b\xa3\xd2\xd4\xa2\x83\x3c\x94\x7c\x5c\x87\x7e\x88\x44\x3f\x6b\x89\x59\x90\x16\x27\x30\x0c\xb4\x02\x6e\x90\x26\x19\x47\x31\x05\x9a\x63\x0c\x14\x7b\x9c\x8f\xb4\xbf\xc8\x1d\x0d\x2c\x62\x4a\xb6\x73\xee\xc0\x2c\x30\xfd\xd2\x43\xd6\xde\x56\xee\x77\xb4\xab\xf2\x59\x6c\x51\x99\xa7\xa7\x60\xc5\x10\xef\xdf\x5f\x7e\x0a\x02\x5d\x65\x57\x36\x97\x29\xf0\xf6\xd5\x7c\x60\x3d\x05\x23\x74\x32\x90\x1f\x8f\xf7\xab\x4d\x18\xae\xef\xad\x8b\x1d\xd8\x44\x40\xf6\x49\x5c\x1d\x62\x3d\xe6\x1f\xd1\x07\x59\x06\x29\xef\x2d\x9f\xeb\x05\x79\x99\x9b\x1c\x84\xa9\xe5\x25\x3b\x41\xe5\x30\xc4\x41\x5c\xc5\x1d\xd9\x05\x6c\xf0\x43\x4d\x1b\xd3\xee\x5b\x57\x90\x01\xb5\x09\xb3\x53\x26\xcc\x49\x70\xb9\x29\xf3\x31\x92\x1b\x1b\x80\x69\xb3\x16\x85\x2c\xc8\xed\xe0\x12\x24\x2e\x8d\xd6\x76\xf0\x64\xcc\xef\x43\x04\x3b\x84\x8a\x11\xce\x88\x8d\xf8\x05\xdd\x9d\xce\xe9\x5b\x92\xdb\xe4\xbc\x47\xa2\xcf\x1f\x51\x1b\x80\xf4\x4b\x2d\xb0\xe7\x6d\x22\xd1\xd8\xc0\x3d\xcc\xc9\xc6\x4d\xc5\x66\x6f\x8a\xe5\xa3\xea\xa7\xaa\x08\x0c\x9b\xdf\x21\x99\x20\xaf\x80\x13\x3e\xd5\xb4\x25\x3a\x59\x88\x4a\xb5\x0a\xd4\xaf\xcc\x41\x73\xab\x73\x1f\x94\x2b\xc4\x29\x57\x5c\x47\xfa\x2c\x18\x17\xd9\xdd\x31\xce\x76\xf9\xd9\xde\x1b\x70\xd1\x16\x4e\x98\x8e\xc8\x31\x8b\x0c\x25\x3f\xa4\x8e\x77\x8e\xbb\xf6\x14\x9d\x03\x3c\x5a\x6f\xc6\x6f\xbc\xa8\xd5\xee\xf6\xa2\x0b\xf5\x5c\xdf\xaf\xc8\x05\x53\x24\x66\xda\x26\x87\x2a\x28\xfb\x5e\x5c\xce\x36\xaf\xb2\xa2\x9a\x25\x91\x11\xeb\xf7\xaf\x6b\x59\x21\x2a\x7a\x27\x9f\xdd\x80\xb5\x29\x3a\xfb\xe5\x1a\xd2\x5c\x10\x07\x5c\x86\x19\x6a\x82\x5f\xfa\x25\x20\x72\x01\x25\xc6\xfb\x3e\x3e\x94\xe3\x9e\x4e\xa1\xe6\xe6\xd2\x9e\xbd\x69\x1f\xab\x04\x19\x09\xa4\x6f\x0d\x61\x99\x86\x51\xdf\x5e\x87\x8c\x47\x66\x37\xab\x42\x52\xfe\x5f\x9a\xb6\xa8\x0b\x0d\xba\xa3\xf4\x9a\xa2\x77\x27\xb3\x00\x32\x55\xb7\x8a\x97\x65\x04\x57\x2e\xb9\xa5\xfa\x9f\x3b\x87\x22\x13\x2b\x25\x70\x0e\x36\xd7\x07\xaf\x26\xda\xf3\xfe\x31\x3d\x68\x00\x6f\x8f\x64\x33\x35\x78\x5a\xba\xbf\x01\xaf\xcd\xad\x5e\x55\xe2\x78\x6d\x6b\xc6\xf0\x24\x43\xdf\x66\xbb\x64\x28\xf7\x36\xca\x88\xda\x1c\x46\xe4\x45\xcc\xe2\x00\xc2\xb4\x38\xf6\x88\x15\x63\x0d\x9d\x6c\xfc\xfe\x01\x48\x59\xe6\x00\xdf\xc3\xfc\x5d\xe3\x23\x47\x63\x01\x77\x57\xdd\xf8\x07\x46\x2f\x47\x26\x04\x9c\xa3\xd5\x6d\x68\x32\x60\xc1\xfa\x02\x17\xf1\x1a\x2c\x38\xc9\xfb\x5c\xa7\x71\x1a\xa7\xd6\x95\x36\x5a\x83\x34\x7d\x05\xae\x78\xc4\xc6\x1e\x84\x2b\xe9\xc5\xf4\x01\xbc\x17\xd2\xf4\x41\x26\xd3\x36\x34\x96\xca\x19\xf9\x51\x10\x69\xc4\x13\xcf\x31\xf9\xbc\xf6\x14\x3b\x54\xd8\x53\x25\x71\x7d\xcb\x54\x75\xe9\xac\x3a\x64\x8c\x1c\x70\xc7\x8f\x9e\x44\x75\xa1\x1f\x5a\xe7\xdd\x63\xe4\x2e\x47\x86\x60\xd6\x36\x9e\x4d\x89\xc0\x97\x56\xe6\xaa\xc5\x14\xb2\x7a\xd6\x2e\xe7\xc8\xb8\x79\x9f\x09\xac\x20\x03\x97\x20\xfb\x80\xd0\xe9\x2f\x50\x51\x2d\x12\x1c\xb0\x67\xa6\x69\x6b\xb6\xe3\x7b\x3a\x63\xec\xcc\x26\x52\x2d\x45\x72\x50\x94\x3c\x2b\xc1\x4a\xf1\x6a\xad\x00\x8e\xf5\xc7\xed\xf5\xc3\x13\xb2\xd3\xf5\x8f\x73\x28\x08\x5d\xa4\xb4\xc0\x85\xcb\x2d\xc4\xcc\x61\x0f\x3a\x89\x8c\xb5\x24\x46\x2d\xb0\xe5\x6e\x76\x9f\x2a\xc8\x98\xa5\xf0\x03\x52\x16\x40\x0e\x2a\xe4\x15\x67\xb5\x0f\x38\xd8\xf1\x19\xd8\x81\x05\x5d\x7c\x29\x6b\xa9\xf5\x30\xc3\xa3\x9b\x96\x92\xbe\x98\x40\x19\xe6\xc3\x0a\x24\x6b\xb8\x9a\x8d\x8f\xd0\x3a\xae\xec\x00\x41\xe4\xd5\xa6\x32\xa0\x3b\xfa\xcd\x38\x86\x05\x19\xbd\x9e\xd2\x57\xd0\x58\x55\xe4\x3b\x7c\x9c\x26\xd2\x7a\xcb\xe3\x21\x4d\x12\x3f\xd8\xde\x3b\x52\x88\x36\xec\x48\xad\x50\x75\xee\xd3\x95\x8d\xdb\x19\x62\xb6\x06\x65\x54\xf0\x43\xb0\x45\x3f\x7a\x38\x86\x99\x83\x64\x95\xcf\x16\x3b\x65\xe8\x3c\x0e\x33\x38\x1b\xd3\x73\x5d\x65\x85\x53\x71\x75\xf1\xac\x2b\x22\x64\x4a\x54\x31\xcb\xc0\xd3\x2c\x52\xae\xd9\x1f\xe3\xb5\x59\xef\x60\xab\x8e\xea\x52\x05\x34\xc5\xe2\xef\x3e\x11\x11\x6f\xbb\x62\x04\x89\xec\x25\xe7\xc3\x19\x73\xaf\x50\xd5\x28\x56\xe0\xed\x64\xe5\x07\x11\xbe\x47\xf2\x71\x84\xe1\x69\xc1\x47\x1d\x1e\xdb\x95\x29\xc6\x63\x67\x1f\x21\xe9\xe7\xae\x07\xde\xc9\xa5\x3e\xb4\xfe\x02\x7e\x54\x6c\xe1\x97\x55\x81\x02\x0f\xfc\xb6\x79\x8e\x44\xd8\x0b\xbd\x4a\x85\x8d\x46\x4f\xa6\x6f\xcd\x32\xa4\x2b\xf6\xc1\x02\x1b\x3a\xd8\x4b\xee\x32\xda\x68\x61\x0f\x8c\xa1\x93\x88\xe2\x24\xe2\x04\xf3\x9d\x8d\xc5\xb1\xe9\xe4\xeb\x68\x42\x23\xec\xa3\x17\x73\xc2\x47\x0b\x01\x1e\x89\x8e\x04\x44\xa7\xed\x98\xe6\x1f\xb9\x30\x7a\x7b\xc1\x24\x17\x3e\x95\x9c\x3d\x5b\x4a\x17\x78\xd5\x43\xfb\x07\x6b\xa4\x9a\x12\xdb\x06\xdd\x15\x71\x9f\x4b\xd0\x46\xcb\x50\x21\x0e\x5c\x18\x03\x36\xbc\x8f\x12\xa3\xc1\x2a\xd2\xda\x78\x9f\xb5\x66\xd0\x93\x0d\xcc\xaf\xd4\x4a\xd6\xde\xf8\x88\x1f\x47\xf2\xf0\xe4\xee\x06\x36\x5b\xfe\x8f\x10\x47\xfa\xc3\x7c\x92\x56\xfb\xda\xdd\x10\x03\x0b\x47\x7e\xee\xb0\x22\x39\x3e\xc9\xc7\x0c\x7c\x3c\xb0\x94\x63\xe4\x95\x27\x6d\xaf\x2d\xf0\xe1\x4d\x11\xa2\x55\xa5\x3e\x58\xbc\xfb\xa5\x50\x70\x79\xcf\xcb\xa1\x5e\xe3\x82\x8a\xe9\x6a\xad\x61\x67\x54\x19\xd9\x04\x5b\xf4\x21\x6e\x7b\xe3\x3b\x45\xf5\xed\x49\x69\x8b\x11\xae\xdf\x08\x6b\x8c\x3f\x12\x43\xa7\x50\x86\x6c\x30\xea\xe7\x80\x0f\x1c\x39\x32\x09\x1f\xa7\x62\x24\x13\x77\x6f\x2a\x4c\x75\x25\xa1\x01\xd6\x57\xd3\xfc\x82\x41\x86\xec\xc3\xf2\xf1\xd4\x50\x63\xb3\x97\x21\x1c\x28\x41\x71\xc0\xca\x63\x2c\x8d\x6d\x36\x45\x46\x67\x70\xb2\x65\x91\x17\xd6\x1c\x1a\x2a\x55\x5f\xb5\xb3\x4d\x11\x51\xc2\x4c\x3c\xe9\x23\x6c\x7e\x9d\x93\x1c\x8a\x2b\xd7\xd1\xe9\x73\x71\x95\x80\xeb\x39\x18\x07\x51\x66\x67\xcb\x51\xfd\x55\x43\x8d\xc3\x86\xdd\x1e\x26\x95\xfd\xc3\x0c\xa2\xf8\x32\x43\x83\x46\x84\xc4\xec\x04\x10\x1a\xe6\xf2\x60\x4d\x96\x5b\xb5\x2c\x83\xe4\x87\x2a\x55\xa1\xfe\x49\x4c\x5a\x8e\x9f\xf7\x0c\x65\x57\xab\x8d\xd4\xfb\x12\x27\xf4\xf0\xe0\xa2\x31\xae\xf9\xcc\x1f\x07\x40\xd0\x20\x76\x91\xc6\xbd\x38\x6e\x8f\x66\x23\x10\xb7\xde\x06\xdf\x0c\xb8\x5f\x07\x75\x92\x16\xf5\x44\xee\x92\x38\x6c\xf7\xfb\x9b\x01\x1a\xac\x00\x34\x80\x5a\xf9\x3a\x5e\x97\x49\xb0\x27\x28\x7a\xb0\x5b\xfa\x79\xdf\x06\x80\xb7\xf1\x87\x7c\x35\x4c\x2e\x91\x6b\xe1\x88\x86\xb7\x61\xaa\xd0\x6b\xab\x89\x0a\x7e\x37\xd9\x0d\xfb\xbd\x69\x6a\x91\xe0\xd2\x48\x8b\x7d\x06\x7c\xf0\xe4\x9d\x8d\x44\xf5\xa2\x3a\x17\x57\x08\xe7\x54\x25\x48\x78\xe9\x49\x4d\x5d\x72\xf3\xb6\x24\xca\xc1\xf7\x1a\x2b\xfb\x18\x9e\x9d\xec\x87\x5e\x4c\x4e\xf5\x1b\xb6\xdd\x81\xec\x06\x52\xb3\x4b\xff\xa6\x83\x33\x16\x06\xb3\x37\xd9\xe8\x49\x80\x4f\x1d\x46\x8e\x12\x1e\xf7\x37\x05\x55\x63\xd6\x72\xe2\xe5\xfc\x7e\x64\x41\xc5\x23\x25\x53\x54\x65\x1e\x28\xce\x8f\x1f\x63\x10\xad\x63\x7a\x03\x3b\xc7\xfd\x39\x3c\xee\x76\x49\x7c\xa3\x54\xa7\x50\xe6\xfe\x2c\x73\x0a\xf1\x64\x4c\xbb\x26\xc1\x25\x6d\xb5\x50\x2c\x1e\xbd\x86\x83\xc1\x26\x06\x36\x66\x1f\x7e\xc2\x62\x75\x92\x44\xbf\xd5\xce\x1b\x4c\x10\x8d\x7b\x87\xc6\x62\xb0\xcc\x72\xea\xe0\x64\xf3\xd1\x9d\xab\xee\xb1\x00\xa0\x22\x23\xec\x9b\x00\xe1\x4f\xda\x6e\xec\x78\x9e\xec\xbf\x26\x40\x1e\x5d\x59\x2d\x06\x69\xfa\xaf\xa2\xcb\x5a\x66\x23\x3d\xf0\x55\x8c\x15\x1c\x2d\x4a\xaa\x8a\xff\x59\x0f\x23\xc1\x80\x8b\x8c\x51\x09\x94\xfb\xcd\xb0\x94\x6c\x22\x74\x0c\xcc\x55\xe6\x72\xcb\xa1\x24\x9e\xa3\xe8\xb6\xcc\xde\xdf\x54\x5b\x1d\xe8\xb9\x72\xa0\x0f\x3a\x76\x7e\x3d\x05\x31\x6d\x42\x1d\x31\xaa\x6b\x33\xc2\x18\x60\x20\x58\x14\x7c\xda\xc4\x51\x45\x8a\xb4\xe1\xc8\x80\x93\x38\x94\xa1\x0a\x08\x7e\xdb\x25\x81\x0c\x8e\x78\x5f\xf6\x3e\xea\xe6\x2c\x37\xe0\x1b\x33\xe7\xc1\x66\xee\x13\xef\xab\x7a\xf6\xb5\x82\xea\xf9\xd7\x73\xd9\xf0\xdc\x37\x36\xd9\x56\x7a\x7a\x8b\x6f\xd2\x37\xac\x58\x1a\xa6\xdf\xdc\xd0\xdb\x6b\x3f\xef\x9a\xe5\xec\x67\x16\x2d\xf7\x99\xd4\xd0\xf4\x75\xdd\xe0\xdc\xad\xb1\x6d\xc0\x43\x30\x49\x24\xb4\x91\x37\x43\x5f\x1c\xa3\xa0\x28\xaf\x48\xe0\x57\xb6\x8f\x2f\x00\xbd\x18\xe8\xa8\x25\x1c\x49\x23\x46\xdf\x0f\x0c\xb8\x52\x38\x9e\x1a\x09\x69\xd4\xd0\x01\x3c\xa5\xe4\x70\x64\x18\x4f\xce\x66\x04\x97\x0e\xea\xaf\x21\x67\x06\xcd\xb2\x84\xdf\x6b\x42\xd2\x95\x4c\x64\xe0\x8a\x24\xac\x44\xda\xbf\xc4\x3d\xb0\x45\x68\x1b\x82\x23\xa6\xcb\x72\x4e\xaf\xa9\x28\x80\x3c\xd9\xf1\x37\xf6\x58\xdb\xa0\x3f\x3a\x09\x77\x46\x03\x8a\x76\x74\x36\xd7\xb6\xe7\x7b\x4f\x59\x84\x93\x42\x60\xc6\x85\x89\x2d\x6b\x4d\x01\xcf\x88\x1c\x17\xa2\x16\x9d\xea\x99\xbb\x75\x51\x4d\xac\x65\xd9\x5c\xf5\xfb\x02\xc8\x02\x56\x99\x62\x71\xf5\x3b\x00\x28\x06\xb3\xf3\x61\x02\x0b\xbf\x22\xa2\xaa\xb0\xf8\x53\x38\x32\x64\xd0\x94\x92\xc6\x4d\x03\x02\x1e\x32\x10\x15\x3f\x62\xc1\x3e\xb8\x18\xab\x2c\xd2\xde\x99\x99\x33\x61\x72\x2f\x12\x3a\xcf\x5d\x1d\x24\x22\xde\x74\x39\xcb\x30\x16\x97\xa3\x33\x69\xcd\x62\xfd\xdb\x31\x25\x13\x38\xb7\x48\x17\x52\xa7\xfd\x92\x46\x04\x2d\x3b\xa1\xb7\xf3\x80\x81\x60\xf6\xda\x5f\x1d\x9d\x98\xda\xe5\x98\x7d\xf1\xdb\xa4\x88\x86\xb1\x24\xc1\xc9\xac\x15\x75\x7d\x0f\x89\xe8\x16\x39\x32\x5f\xee\x20\x39\x6a\x10\x6d\x64\x09\xe0\xbd\xf3\x38\x08\x59\x04\x8c\xd5\xda\x03\xf4\xee\x70\x82\xbe\x6d\xec\x5b\x11\xda\x49\x54\xed\x9b\x98\x1d\x92\x27\xf4\xf7\x9f\x02\xa4\xb5\x4c\x68\x4a\x16\xec\xb8\x02\x3e\x2a\x93\xc7\x24\xa4\xd1\xff\xf5\x5c\x06\x4c\x5c\x60\x1f\x12\x78\x77\xb3\x42\xbb\x10\x50\x98\x06\x4f\x56\xe9\x62\xf3\x86\x0c\x8d\xf1\x39\xe7\xf5\x02\x13\x9a\x3e\xc1\xf5\x34\x06\x29\x84\x56\x37\xf5\x40\x3e\x63\x64\x5f\x0b\xd9\x63\xfe\x03\xcb\x5d\xe4\x3b\x11\x3a\xe4\x0f\xca\x86\x46\xe3\xac\xc6\x0c\xe4\x4d\x55\xef\x15\x53\x51\xd1\xf5\xd8\x08\x3e\x57\x0d\x5a\x8d\xab\xd0\xea\x57\x1d\x4b\x2e\x62\xe7\x6f\x08\x99\x22\x95\x0c\x1e\x54\xf7\x7b\x9a\x2c\x3f\x74\xbe\x53\xe2\x28\x07\x11\xc2\x28\x8f\xfb\xb0\x22\x28\xd6\x43\xbe\xe4\xb8\xa4\x49\xf5\xfa\x9c\x3f\x40\xb0\x8a\x78\x50\x0a\x0d\x7a\x98\x15\x64\xa6\x72\x09\xf9\x40\xc0\xd5\x7e\xb8\x33\x96\xbb\xd2\x80\x67\x7e\x1f\xa8\x59\x44\xdb\x71\x04\x6c\xc1\x3b\x46\xdd\x7d\x21\x1a\x1a\x36\xc6\xca\xc6\x26\x73\x57\x52\xb9\x2b\x08\x85\x94\x9a\xce\x5a\x2c\x12\x34\x7d\x53\x3c\x2f\x62\xc3\xde\x9b\xa8\xef\x25\x0e\xef\x16\xa6\xd2\x2c\x6a\x55\x1f\x8e\x86\x10\x94\xc9\x67\xc2\x2b\x64\x6d\xc7\xf1\xc8\x2d\x8d\x51\xe7\xf4\xd9\x16\x47\xbc\xb1\xe2\x75\xe0\xae\xca\xc4\x48\x57\x17\x8f\x8d\xf9\x48\x73\xe2\x87\xb6\x18\x95\xf7\xe8\xd8\x99\x9c\x4c\x25\xea\xe6\xbd\x53\x30\xe5\x54\x23\xb5\xec\xfd\xe8\xbc\x49\x94\x67\x2a\x95\x17\x65\xc9\x0c\x2d\xfc\x0a\xf2\x54\x2e\x27\x6a\x9b\x99\x23\xc8\xe3\xb4\xcc\x95\xf9\x98\x10\x16\xcc\x7a\x38\xcb\x33\xe7\x02\x5a\x66\x55\x53\x94\xd6\x50\xb0\xee\xdb\xaa\xc2\x09\x16\x92\xe2\x47\xbc\xe7\x67\x9b\x0c\x60\xc8\x63\xa4\x01\xeb\x43\x3c\xdc\x4e\x6e\x3c\x21\x03\x06\x5c\x68\xab\x86\x80\xfd\x5b\x77\x1c\x51\x71\xf9\x74\x44\x85\x1c\x07\x1a\x24\xec\x2a\xd0\x87\xe2\x82\x8e\x14\xe5\x9d\x8b\x20\x56\x0c\x2f\x2f\xb5\x8d\x03\xc2\x4a\x87\xe9\x1b\x1e\x2e\x61\x04\xa6\x46\x54\x2d\xc5\xf8\xfa\x9d\x00\x19\x2e\xc9\xf6\xe8\xed\x67\x78\x11\x89\x7f\x90\x17\x7b\xb9\xd1\xe5\xc6\xb2\x16\x2e\x71\xdb\x4c\x52\x21\x3b\x93\xfc\x1a\xad\xdf\xb0\xc0\xda\xa5\xf0\x7e\xc9\xb0\x6a\x01\x8c\x4e\xd2\x2e\x09\xea\x78\x18\x48\xc8\xa4\x02\xb2\x70\x4f\xbc\x66\xb1\x1d\x51\x86\x06\x14\x5c\xfb\x4c\x68\x06\xfe\x6a\x2c\x84\x3c\x03\xc2\x2c\xc7\xa8\xa4\x4f\x03\xc5\xd6\x02\xd2\xd5\xd7\xc6\xeb\x8e\x9b\x22\xc8\x96\xb1\xce\xf3\x72\xe0\xec\x10\x57\xa1\xaa\x0c\x23\x38\xad\x2d\xb8\xa4\x0e\x74\x2d\x70\x71\xb9\x87\x0e\x0c\xa5\x4b\x70\xc0\x61\xaa\x16\x2f\x7c\xa6\x96\xf5\x85\xc8\x19\x31\xaf\xd0\x63\x85\xb6\xdd\xa6\x16\x35\x1f\x0b\x01\x6c\x8e\xa9\x8a\x18\x41\x8a\x40\x5d\xfc\x35\xf5\xa7\x61\x89\x3b\x18\x7f\x8a\x4f\x8e\xf8\x12\x6b\x1d\x6a\xbb\x89\x63\x11\x5d\xcb\x82\x98\x08\x68\xa1\x45\xca\x1a\xb4\x63\x47\x13\xe0\x76\x9b\x6d\x16\x57\xa3\x2d\x23\xbb\x58\x6d\xaf\x0d\x80\xbb\x0c\x22\xde\xc2\xef\x9a\xed\x57\xb6\x13\x4d\x0b\xbf\x54\xeb\x6c\x1c\xa3\xef\xe9\x60\x2d\xdb\x85\x49\xaa\x90\x3e\x76\x2d\x96\xd1\x82\xf2\xb9\xe5\xc6\x46\xe2\xfd\xdd\x73\xc0\x0d\x0e\x4d\x92\xaf\xd7\xcd\xf9\xf0\xf1\x6e\x33\x58\x30\x05\xa8\x05\xf1\x2c\x57\xc5\x29\x50\x1a\xf3\x01\x1f\xd6\x1b\x9a\x48\x21\x13\x4a\x12\xee\x8c\x60\x1c\x8e\xff\xfc\xc7\xd1\xce\x8f\xfe\xd2\xc7\x2f\x2f\xd1\x6f\xc9\x49\x5d\x12\x23\xcc\xc4\xa8\x36\x78\x59\x0a\xdf\x2e\x3b\xa8\x9c\xc5\xd2\xc5\x80\xaa\x46\xc0\xcb\x31\xd6\xc3\x8c\x73\x99\x58\x0e\xa0\xc8\x59\xc6\xe1\x1c\x52\xe1\xc7\x0a\x39\x7e\x91\xf2\x0f\x61\x60\xf4\x29\xc5\xfb\x75\x96\xd0\x85\x81\x77\x4f\x82\x67\x3e\x28\xcf\x7e\x34\x5e\xc7\x3a\x49\x8a\x33\xd8\x00\x8e\x16\xe1\xed\xf2\x8c\xbc\x4c\xca\xd2\x7c\xb7\x0c\xf3\x55\xcb\x43\x73\xdf\x04\xac\xaa\xe3\xbd\xa9\x80\x66\xce\x54\xad\x66\x7c\x78\xd0\xc3\xc7\x46\xc0\x70\x05\x19\xe4\x1f\x6c\x70\x3c\x56\x17\x31\x29\xd3\xd0\x52\x19\xb3\x6b\xbd\x25\x6d\xf7\x99\x6c\xd0\x0a\x62\x34\xaa\x16\x6c\xca\xa9\xf9\x09\x55\x65\x04\x7c\x45\xb7\xf2\xd4\xdc\x18\xeb\xb4\xf9\x96\xd0\x4c\x89\xf4\x7b\x7b\x5e\xe6\x06\x86\xd5\xb6\xc2\x48\xf9\xe1\x61\x69\x63\x1f\x26\x1c\xfc\x84\xcc\xaa\xc5\x0d\xc6\x51\x0d\xda\x5e\x26\x92\x1e\xbd\xce\x9a\xe5\x00\x94\xe1\xce\x13\x74\x16\x6d\x06\xf6\x6d\xc1\x06\x6c\xb8\xb1\xfa\x1c\xe7\x35\x54\xb4\x85\xcf\x21\xa7\xb5\x14\x95\x82\x02\xbe\x0e\xcc\x43\x3d\x0a\xc4\x0c\x3d\xc1\xe5\xb8\x1b\x8f\xb7\x5a\x7d\x28\x21\x20\x72\x4b\x5f\x4f\x34\x5d\x93\xb6\xd2\x1b\x9f\xd2\xe6\xfb\xa1\x28\x48\x69\xea\x43\x6e\x14\x77\x6b\x08\xc2\x34\x73\x02\x27\xb6\xf3\x88\xe2\x13\x3b\x0c\x73\xb4\xe3\x6a\x1c\xf7\x71\xb2\x0e\x02\x03\x60\xb7\xc5\x03\xec\xc6\xe3\x97\x52\xcf\x73\xcf\x35\x13\x26\x61\xb0\x07\xa2\x23\x52\x5b\x6f\x53\x23\x3e\xc1\xee\x2e\xdc\x3e\x60\x62\x39\xfb\x9b\x48\x77\x2e\x74\x38\xd2\x66\x30\x69\xce\xaa\x1c\x2e\xc3\xd0\xfd\x71\xc0\x0b\x24\x12\x77\xc7\x6a\xf5\x08\x91\x76\x73\x1a\xb6\x35\x4f\x8d\xdc\x1d\x9d\x6e\xc3\x0e\x47\x47\x40\xee\x36\xb2\xc0\x1e\x3b\x35\xce\x19\x91\x7b\x57\x20\x5a\x9b\xfd\x6d\x2d\x73\xd8\x2e\xe1\x47\x6d\x68\x2c\x7d\x68\x8f\x1f\xda\x1c\x75\x4b\x77\xf9\x77\xab\xc6\x58\xdd\xfb\xa8\x49\xb1\xe9\xee\x6e\xf1\xf6\x6a\xc4\x69\xd0\x20\x2b\x9f\x59\x61\x81\xc5\x46\x36\x16\x71\x9a\x3b\xd8\xa0\xbc\x7e\xd4\x09\xad\x77\xd1\xe1\x43\x2f\x08\x5f\x8d\xd1\x55\x8a\xdb\x6d\xe0\x8a\x95\x72\x59\x44\x87\x16\x97\x3c\x28\x81\x8e\x76\x9e\x92\x17\x76\xdd\x94\x6f\xc3\x1d\x9c\x4f\x48\x3c\x3b\xdc\x1e\xf4\xe6\xc4\xcf\xff\x22\xdd\x06\x2d\x76\xf8\xd1\x7b\x47\xd1\xfc\x9e\x12\x46\xeb\x4a\xcd\x6c\x95\xd0\x59\xce\xc1\x14\x22\xc5\xf1\xb9\xd6\xee\x5c\x54\xb0\x6f\xc9\x27\x8a\x37\xcf\x66\x1f\xed\x5f\xc6\x3d\xc9\x84\xba\x5d\xcd\x90\x63\x85\x6c\x87\xe9\xf1\xc6\x1a\xb9\x9c\xf1\xf9\xa0\xff\x7f\x78\x2c\x08\x49\x73\x4e\xa7\x42\x0a\x9b\x59\xae\x22\x4b\xb6\xb8\x19\x41\xe2\x06\x75\x84\xbb\xd0\xf2\x41\xd9\xd6\xb7\x7f\x58\x2d\xf4\x86\x3d\x20\x36\xbd\x53\x69\x1f\x28\xa7\x8b\x0c\xbd\x87\xe8\x3c\xae\x89\x27\x25\x89\x24\xed\x3c\xe0\xa6\x66\x7a\x96\xa2\x9b\xc5\x96\x35\x1b\x74\x93\xbc\x4d\x54\xa0\x2c\x5d\xda\x6e\x5a\xe6\x3c\xda\x92\xe6\x15\x9a\x1e\xb2\x0e\xe8\x7b\x59\x1e\x4d\x1f\xd8\x30\x8b\xf2\x3a\xb8\xd0\x84\x9e\x68\x02\x99\x79\x68\x12\xe1\xfb\x02\xa2\x8f\xe4\xe7\xc0\xc5\xbd\x0f\x5a\x34\xd2\x45\xd2\xfb\x47\x73\x68\x85\x79\xc4\x45\x9c\x98\x81\x63\x80\xe0\x11\xce\x4a\x7f\x3a\x49\xe7\x11\xb3\xe3\x3e\x96\x1e\xf4\x3e\x51\xf9\x83\x35\x28\xeb\xdd\x65\xa4\x0d\x1c\xe7\x51\xa6\xd5\xed\xfb\xce\x18\xd0\x9d\xba\x47\x8c\x87\x41\x11\x9b\xe4\xf7\x8b\x23\x3a\x06\x85\x66\x30\xa7\x6b\xba\xdc\xb4\xae\xdc\xb3\x0e\x2d\x44\xa2\x8b\xcf\xf6\x63\x46\xe6\x86\x34\xc1\x58\xf5\xc8\xe5\x01\xc4\x5c\xbe\xea\x48\xd1\xe3\x8e\xf8\x39\xdd\x11\x50\xf7\x16\x52\x8f\x1d\x2e\xd0\x0c\x0d\x41\xdb\x5b\x82\x72\xd8\xb3\x85\x7b\x6d\x02\x14\xe8\xa3\xc3\x74\xca\x4e\x27\x72\x77\xf6\x76\xa6\xfd\xd0\xd2\xa4\x34\xe3\x49\x18\xe9\x6f\xf0\x6d\x74\xa4\x3f\x9a\x2e\x85\xec\x2f\xcf\x78\x10\xfb\x5b\x40\xfd\x68\xf8\x46\x45\x17\xe6\xf8\x1c\xed\xf4\xf7\xe7\x5c\x04\x41\xb7\x5a\x01\x22\x8a\xb5\x96\xec\x67\xe0\xc0\x0d\xf0\xbd\xbb\x1a\xd5\x4d\x59\xa6\xbe\xd3\xfb\xe7\x13\xe5\xd9\x12\x1a\xe5\x47\xb0\xca\x5a\x98\x61\x51\x9b\x79\x01\x62\xe8\x8f\x1f\x1c\x49\x84\xc1\xbd\x07\xea\x18\x1d\x0c\xf6\x1e\xf4\xa1\x61\x0a\x5f\xb0\x4a\x65\x2c\xc7\x41\x17\x38\xba\x13\xf5\xa2\x75\x70\xd6\x1f\x30\x58\x78\x7e\x7f\x8c\x60\x0c\xdc\x5b\x74\xb4\xc7\x24\x9d\x89\x80\x50\xb1\xbb\x77\x86\x0c\x98\xb5\x3e\xe5\x61\x90\xc5\xfe\xfb\x81\x19\x58\xb1\xd1\x72\x17\xdd\x8f\xad\x44\xae\xd1\xb5\x98\x7d\xa6\x4a\xf1\x84\xaa\xe9\xc5\x2b\x70\x56\x54\x71\xaa\x7e\x0c\x88\x53\x99\x17\xf0\x64\xd5\x6e\xec\xda\x36\xef\xa4\x7c\xbc\xe0\x84\xcc\x8f\x9a\x59\x24\xcf\xc4\x9c\x0e\xe8\x94\x5a\xda\x39\xb7\xa6\x8d\xa6\xf8\xf9\x5a\x3e\xa6\x9c\xa7\x7a\xee\xd0\x38\xf3\x52\x82\x25\x38\x38\x1e\x40\x93\xaa\xde\xc0\x2e\x17\x19\x59\x91\x5d\x4e\xae\x94\x6a\xda\xe0\x63\xde\xac\xb4\x62\x00\x8e\xed\xc0\xb2\xbb\xb2\x5e\x54\x70\x79\xaf\x2e\xaa\xba\xd9\x16\x1c\x1d\xd9\x40\x13\x1c\xf2\x02\xbd\x76\x93\x9e\x0f\xd3\x85\x47\x8b\x48\x30\xb3\xba\xd2\x68\xfd\x95\x7d\xdd\xec\x9c\xc0\xf4\xb7\x30\xae\x8a\x15\x07\x90\xfd\x3e\x0f\x97\x9f\xa1\x7e\x09\x2b\x99\x4a\xc1\x12\x66\x8a\xd9\xbf\xc0\x21\x52\xe8\x7a\xb0\xbb\xa1\xa1\x12\xd9\x23\x93\x44\x42\x0c\xec\x92\x0d\x58\x91\x4e\x4f\x82\x39\xee\x24\x98\x62\x06\x71\x60\x0b\x41\xf0\x5b\x80\x60\x31\x19\xd8\xd3\xf1\x69\x69\xf4\x8e\x0e\x44\x44\x29\x26\xd6\x10\x07\x31\x1c\x85\xfb\xd0\x40\x6b\x6e\x6a\xd7\xd2\x2b\x09\xf8\xf8\xa8\x5d\xd5\x28\x2a\xd0\x74\x34\x5c\x9e\xe2\x47\x19\xd1\x73\x2f\x4f\xf2\xe7\x2c\x4c\xb9\xd5\xdf\x7a\x04\x70\x81\xc4\x3e\xb7\xdc\x13\x53\x48\xa5\x98\xa6\x37\xfb\x46\x70\xfc\xef\x7a\xb8\x71\xe3\xa6\x3d\x8c\x9e\xfb\x75\x8a\x42\x78\xa3\x06\xa8\xe8\x1a\x19\x09\x61\x15\x1e\xc9\x28\xad\x13\xed\x29\xc8\x2f\xdb\xc3\x2a\x1a\x93\x91\x36\xbf\x1a\xff\x73\x44\x1c\xfc\x0e\xb8\xfd\x9c\x2d\xa2\x45\x6e\xa9\xa4\x4b\x7a\xfa\x06\x50\x0d\xe1\x68\x23\xac\x88\xf2\x0d\x3b\xbd\xc5\x47\x32\xc4\x11\xfe\x78\x01\x8d\xbf\x4f\x50\x38\x29\xa1\xa6\x5c\x1c\x7f\x92\xb5\x7f\x20\xa6\xa2\x01\x38\xd5\x0a\x96\x87\xc5\x4c\x40\xa8\x80\x03\xd4\xa2\xd5\x52\x82\x13\x4c\xbc\x7a\xcc\xc4\xa3\x06\x34\x86\x68\x00\x18\xa6\x81\xc6\xcb\x28\x32\x8a\xb0\x11\xd0\x10\x00\x40\x1a\x32\xb0\xac\x68\x02\xfe\xec\x1f\x13\x05\xcf\x2d\xaf\xbe\x46\x67\xa1\xff\xf8\x1d\x35\x7c\xf7\x02\xed\xfa\x94\x9e\x28\x05\x71\x0d\x0d\x11\x1a\x93\xa6\xc0\x48\x43\x30\x9d\x41\xb4\xeb\x9b\xef\xf2\xa7\x3e\x47\x67\xa3\x3f\x7d\xd2\x9e\xa5\x44\xd4\xb7\x8e\x57\x26\xe2\xda\xb7\xe7\xaf\xb6\xbc\xa1\x1d\x22\xb6\xaa\x83\x21\xf7\x6b\x18\x86\xe9\x94\x9b\x52\x36\xca\xa6\xef\xa2\xe7\xa9\xdb\xd8\x96\x72\x6a\xb3\x9c\x57\xec\xe4\xeb\xf5\xd0\x75\x6f\x4e\xd9\x6c\x88\xcf\x1c\xe0\x3a\x32\x4c\x7c\x81\xa7\xdd\xfe\xf3\x47\xb6\x0a\xad\xfc\x06\xa6\x30\x74\x42\x24\xa9\x95\x4e\xaf\x1e\x4c\x55\x71\x06\x31\x27\x9e\x75\x4c\x34\x62\xe0\xd5\xcc\x08\xb4\x4b\x06\x54\xe2\x37\x2c\x7c\x19\x1b\xd6\x4e\x53\xb6\x57\xfd\xba\x89\x33\x95\x0b\x23\xe9\xc4\x25\x54\x25\xfa\xac\x3d\xa1\x9d\xf4\xe1\xb0\xa8\x64\x02\xe5\x6b\x59\xa6\x17\x99\xa6\x68\x7f\x67\x7c\x54\xb8\x16\xed\x69\xe2\x17\x10\x7a\xbe\xaa\x9f\xf3\x7f\x99\x10\x78\xd7\xe2\x4c\x42\x90\xff\x77\xf5\x8b\xef\x7a\x4b\x0b\x62\xfe\xe8\x44\x50\xa7\xdb\x0b\xfc\x7b\x10\x1f\x65\x83\x24\x5e\x52\x17\xed\x8d\xf1\xd6\xd2\xf2\x65\xfd\xa2\xff\x9b\x84\x90\x95\x27\x87\x86\xff\x58\xbb\x70\x70\x15\x81\xe8\xbe\xe0\x9a\x3e\xb0\x8e\xc7\x6a\xb9\xbc\xab\xe5\x9a\xbc\xc5\x75\xd7\x63\xa5\xe3\xbc\xb5\x26\xf6\x2f\xd8\x99\xa6\xdd\xd2\xc7\xfc\xe1\x7a\x67\x5a\x68\xbb\x76\x4b\x7b\x05\x6c\xd7\x34\x6b\x96\x41\xef\x76\xff\x90\x9c\x1a\x5a\x58\x51\x79\x28\x9e\xc4\x44\x88\x4b\x94\x8d\x57\xad\x12\xe3\xec\xff\x4d\xac\xe7\xfd\xad\x06\x86\xe3\x3b\x4a\x4b\x23\x2a\x5c\x71\x11\x16\x09\xdf\x9e\xcb\x79\xd8\xcc\x53\x8d\x87\x09\x86\x41\x4b\xb6\xb8\xc4\xa0\xbe\xe4\xbd\x9a\x91\x2b\x19\xd2\xe6\xab\xfa\xba\x59\xe5\x5e\x9f\x7b\x40\x57\x3b\x7a\x35\x53\xd2\x12\x68\x3f\x50\x15\x7b\x7d\x0b\x4c\xfe\x4d\xcb\xa1\x03\x9a\xb6\x91\xde\xab\xe7\x28\x54\xde\x75\xab\xfe\xbe\xd1\xa6\xd1\xbd\xd7\xcf\xaa\x18\x82\x57\x1b\x87\x2e\x78\x3f\xb6\x14\x0d\x58\xef\x7c\x65\x9d\xac\x72\x34\x71\xaa\xb2\x6d\x34\x3e\xb6\x1a\x44\xaa\x49\x52\x6d\x03\x59\x65\xc0\x36\xc1\xeb\x55\xc9\xa7\x6b\xeb\xae\xaa\xa5\xb5\x2b\xd2\xaa\x46\xe9\x21\x5a\x0a\x75\x50\xd7\x17\xec\x6e\xdc\x7d\xfe\x65\xb0\x63\x88\x3d\x46\x28\xc5\x6b\x00\x7c\xa5\x60\x68\x64\xb8\x29\xde\x8f\x85\x57\x7f\xd2\x45\xeb\x64\xf4\x6c\x47\xf9\x8a\x5c\x18\x3c\xc5\x95\xd7\x2a\x16\x84\xfe\x3b\x3d\xbc\xf2\x72\xdd\xaa\x0a\x5a\xad\x15\x56\xe6\x44\xca\x6a\x90\xa5\xbe\xf2\x55\x61\xa1\x7f\x95\xd7\x50\xab\x39\xe2\x07\x45\xde\x5e\x35\x50\x83\x53\x28\x22\x18\x35\x44\x08\x23\x30\x2d\x68\x01\xe2\x68\x64\x0c\x89\x7b\xf8\xcd\xeb\x73\x6f\xf2\x40\xdb\x44\x93\xef\xe3\x1f\x77\x48\xd8\x97\x6f\xbf\xfb\x31\xf5\xfd\x73\xcd\xee\xb7\xb7\x9d\x7d\x77\x1d\xad\x41\x9a\x23\x27\x10\xc9\xa0\xe4\x56\x65\xb1\xe0\x86\xb4\xf5\x12\x51\xe1\x59\x62\xd7\x87\x4c\x73\x9b\x8b\xae\xa7\x35\x1c\x1e\x52\x82\x11\x06\xec\xc4\xf6\xe8\x61\x42\x87\xd6\xd9\xc8\x56\x31\xc0\x6d\xb4\x6f\x3b\xcd\xa2\xc6\xd7\x0e\x5b\xb1\xa6\xf1\x15\x80\xa9\x82\xd3\x58\xd0\x21\x5d\xc6\x46\x9a\x08\x15\x39\x65\x4d\x4b\x36\xe1\x1e\xe6\x4a\x81\x48\x78\xab\xaa\x6b\x35\x4b\x62\x1e\xa5\x8b\x4d\xc6\xc6\xb2\xbe\x9d\xe3\x58\x5a\x38\xef\x95\xf8\xd3\xc2\xd9\x45\xe5\x2e\x76\xf0\xdb\x41\x6d\x5a\x91\x9e\x27\xd2\x6f\x4f\xe2\xd1\x0f\x67\x09\x23\x5c\x21\x10\x62\xc3\x2e\x6c\xaf\x46\x89\xee\x06\xbc\x21\x81\x18\x1e\xd7\x20\xef\x10\x2f\x23\xc7\x2d\xec\xe6\x9f\xc1\x31\xbf\x8e\x04\xa2\xf2\x0b\xfe\x90\xae\x0a\x95\xb2\x12\xdb\x28\x0b\x69\x16\xfa\x8b\xcf\xf3\x79\xc1\x55\x1e\x7d\x51\x2f\x84\x13\x4b\xa2\x8a\x0a\x8f\xba\xeb\x1f\x59\x20\xcf\x56\x14\xe0\xfb\x14\x87\xa5\xc2\xe3\x3c\x76\xd5\x12\x4f\x1e\x01\x0e\x6f\x56\x19\x26\xfa\x46\xb4\x9a\x1a\xa2\x4c\x11\x21\xaa\x35\x84\x08\x44\x12\x82\x6a\xa8\x06\xa7\x94\x45\x70\x1a\x88\x14\x2c\xf9\x2e\xc6\xab\x52\x09\x7a\x4a\xf9\x7c\x17\x56\x01\x60\xab\x44\x22\x6c\x85\x52\xe9\xc6\xf2\x79\x1e\x2c\x1a\x1b\x57\xc9\x6b\x3f\x13\x1a\xc7\x56\x2a\xb4\x4e\x46\x5d\x76\x3b\x6d\xe0\x83\x2c\x9f\xea\x1c\x61\xf4\x78\xb9\x70\x1f\xf3\x43\xba\x58\xf8\x8c\xf4\xc0\x2a\x49\x5a\xbe\x9b\x21\xb2\x69\x5b\x18\xa3\xf6\x03\x44\xac\x37\xfd\x51\xe4\x49\xee\xec\x42\xcd\x4b\xbc\x36\x73\xe9\xfd\x4b\x26\xbd\x58\x27\x14\x1b\x76\x24\xf0\x69\x73\x99\xc5\x61\x81\x08\x08\x71\xe0\x0a\x5c\x7f\x8e\x69\x7a\x95\xbe\xa0\x18\xda\x6c\x9c\xaf\x41\xa7\x84\xfe\x74\x95\x07\x69\x98\x0d\xca\xfa\x27\x86\x36\x67\xb6\x35\x9d\x1a\x40\x0f\x9c\x1c\xf0\xd8\xea\xa9\xbe\x10\x13\xd6\x3b\x8b\xa0\xf5\x3d\xe8\x9a\xbf\x5e\x6b\xf8\x5f\x11\xa8\x8d\x59\x68\x8d\x04\x2c\xca\x50\x69\xc5\x16\xbc\xa7\xac\x69\x20\xde\xc1\x74\xe7\xc0\x2c\xb2\x8e\xbb\x06\xd8\xb1\xe3\x71\xd6\x71\x16\x33\xb2\x5c\x56\x11\x10\xed\x67\x10\xd9\x83\xc6\x16\x7f\xe0\x0f\xaf\x36\x70\xcc\x88\x6f\xc6\x86\x4e\xc5\xc5\x5d\x0b\x0d\xbe\x32\xff\xbc\x1e\xbc\x4a\x94\x67\x27\xe6\xa0\xcf\xa1\xbb\x23\x14\x9d\xcc\xa2\x48\xf1\x11\x29\xe5\x6c\x35\x87\xe6\x4d\x1b\x31\xc8\x4a\xa9\x14\xdc\xa4\x37\x76\x80\x6a\xc8\xc5\x3d\x14\xf0\xbb\xef\x6c\x20\x68\x85\xdc\x8b\xe4\x65\x8e\x00\x9a\x7d\xcd\xec\x57\x45\x7d\x47\xd2\x78\x91\x73\xd5\x75\x17\x90\x6f\xf7\xa5\xe9\x77\x87\x3c\x2e\x19\x59\xc9\x94\x16\x7f\xa2\xf3\xe4\xa0\xdb\x47\xff\x83\x64\xa8\x53\x10\xa3\x8f\x44\x1d\x6b\x28\x60\x63\xe1\x3e\x11\xf9\x11\x71\xb9\xa6\x7f\x48\x38\x2f\xa0\xf6\xde\xaf\x6e\xbd\x96\xfc\xdb\xa6\x80\x7e\x30\xb5\x95\xc5\x36\xf3\xbe\xf2\x3e\x7b\x16\x16\x65\x2a\xe3\x55\x61\xc6\x96\xa2\x73\x7b\x7e\xab\xa8\x5d\x2b\x12\x5e\x3f\xe6\xfa\x46\xd7\xec\xed\xb4\xeb\x42\x0d\xf2\x32\x90\xc4\x5e\x2b\x00\x2e\xd1\x3a\xd9\x39\x33\xa8\x88\x91\x07\x5b\xaa\xb3\x0a\xde\x1f\xf2\x4b\x42\xdc\x84\x66\x00\x15\xc9\x39\x36\x5e\x7c\x42\xc0\x42\xe5\xae\x9a\xb9\x0d\x89\xbd\xcc\x00\xc3\x27\xdb\xee\xcf\xd5\x83\x11\xdc\x29\xef\x49\xbd\x50\x41\xb1\x51\xcc\x74\x88\x64\x0c\x87\x89\x5f\xb3\xd3\xf2\xbf\x24\xe4\xdd\x53\x1b\x8a\x8c\xab\xfd\xb5\x17\xc1\x92\x8a\xd9\x32\x99\xc7\xd6\xc3\x9f\x72\x9e\x06\x2c\xb7\x1d\x2d\x81\xd1\x83\x79\xf5\x71\xcf\x4c\x19\xb3\xe9\x12\xd8\xd0\xab\xbb\xb4\x55\xbc\x96\x92\x42\x6d\xd5\x3a\x1a\x58\x5a\x30\x4c\xd1\x68\x59\x81\xa2\xa6\x6d\x32\xfe\x9b\xd1\xc9\x54\x14\x63\x06\xb4\xba\x10\x05\xd2\x36\xd0\xb5\x36\x6a\x4b\x4a\x0a\xff\x98\xaa\x96\xb9\xda\x84\x77\x85\x8b\xd7\xa9\xbf\x01\xf9\x8d\x8a\x14\x3d\xa8\x53\x68\x51\x9b\xdd\xf3\x46\xc6\x95\xc0\x25\x8b\x74\x3f\xff\x1c\x10\xab\x50\xf7\x98\x7b\x92\xde\x4b\x39\xca\x84\xc0\x84\x1f\xe7\xfc\xf4\x77\xa6\x2f\xf3\xd9\x2a\x67\xee\x3d\xe1\xf9\xc9\x46\x55\x1c\xd5\x5d\xe2\xb1\x79\xe6\xf1\x4f\x1c\x1c\xf2\xe0\x82\x77\xd9\x5f\xc4\x6a\x94\x07\x38\xca\xad\xa9\xf2\x0c\x48\x67\x61\xb3\x80\x75\x59\xd7\x06\x3a\x19\x33\x4a\x6e\x6e\xaf\x3a\xc4\x63\xd5\x5c\x92\xb7\xb4\x1b\x57\x52\x84\xcf\x5e\x0d\x2a\xd5\xe9\x6b\x29\x08\x18\xa1\xe9\xf5\xec\x30\xba\x79\xbb\x9c\x7f\xc9\xd0\x4a\x81\x6b\x16\x84\x4c\xfa\x5a\x1a\x80\xb2\xe4\x6d\xca\xca\x85\x48\xfe\x04\x02\xe9\xf8\xb3\xb8\xe4\x6b\x73\x94\xb9\xab\x92\x1a\xe2\x84\x8c\x12\xbf\x56\x62\xf2\x46\x17\x36\xe7\x95\x78\x4f\xb6\xcc\x3a\x24\x0e\x1c\xef\x88\xee\xdc\xaf\x09\x41\x9a\x0b\x03\xf5\x17\x61\x61\xcd\x39\x59\x7d\x5c\x7b\x3a\xa5\xe8\x1e\xcd\xbf\x56\x6b\xa8\x21\x2b\xc1\x5a\x96\xc6\x4e\x88\x15\x61\xb7\x2c\xcc\x9d\xfe\xee\x5c\x1a\x2c\xe7\xae\xf7\x57\x1f\x83\x7e\xf6\x4f\x63\xc9\xd3\x88\x6f\xe1\xcd\xc7\x5f\x99\x8e\x89\xb0\x01\x9d\x1c\x8e\xe8\xbe\x7b\xfa\x0b\x0d\xad\xb9\x6c\xe2\x2d\xb8\x69\xef\x5b\x95\xfe\xfc\xd7\x26\x27\xe4\x76\xa0\x38\x38\xe9\x9e\x67\xbe\x12\xc5\x55\x16\x18\x7b\x40\x4e\x25\xbf\x0b\x23\x64\x8c\x01\x46\xc7\xe5\x88\x51\x52\x4b\xb3\x6f\x9a\xcf\xa8\x08\xb4\x8b\xad\xc3\xdc\x51\xa7\x69\xc0\x78\x38\x1c\x44\x76\xb5\x36\xf3\xe0\x0c\xb4\x84\x1d\x0f\x91\x53\x9f\x6e\xb3\x85\x15\xc6\x98\x61\xb5\x21\x40\x03\x94\x01\xba\xda\xc0\x0c\x17\xc6\xb6\x49\xff\x7c\x8d\x6a\x76\x72\x9f\x91\x48\xe8\x5a\xe8\x00\x10\xa4\xab\x0c\x0c\xd3\x96\xaa\x0d\xf0\x1a\xb5\x66\x4d\xae\xf5\x33\x3e\xe4\x44\x9c\xaa\x22\xf3\x54\x7d\x89\xe1\xe4\x46\xe5\x1f\x1f\x55\x3c\x07\xff\xa1\x8c\x60\x56\xd3\x6a\x40\x90\x56\x6f\xd2\x46\x89\xdf\xc3\xa9\xaa\xef\xb4\x60\x71\x3a\x13\xa9\xcd\xeb\x98\xfe\xeb\x9d\xc1\x5a\xf4\xd3\x87\x1a\xf6\x21\xa1\x2c\x60\x1f\xe3\x69\x9d\xe6\x01\x73\xab\xdb\x3b\x9d\x89\xd2\xe6\x76\xc4\x0b\x0f\x0b\xd9\xde\xc3\xe1\x51\xdb\x18\x17\x2c\xd2\x9c\x4e\x30\x14\x3c\x53\x18\x67\xd5\x6a\x4d\x35\x74\x04\x8e\x30\xb4\x26\xd1\x17\xc5\xb7\x55\xf3\x47\xa3\x53\x2d\x6a\x0b\x5d\x89\xb9\x86\x01\x23\x35\xf6\xcc\xda\xc2\xb6\x2d\xd5\xc9\x01\x83\xb9\x9e\xb6\xe7\x74\x6b\x6e\x2b\x42\xc8\x46\x54\x57\x59\xe6\xe9\x58\x2a\xa9\x43\xed\x0b\x69\xd7\xb8\x15\x5b\xaf\xa0\xbf\xf9\xe3\x41\x93\x97\x0d\x61\x86\x41\x15\xbd\xce\xaa\x6a\xc1\x81\xa8\xa7\x54\xf1\x88\x14\x2b\xad\xf4\xc9\xe3\x64\xa5\x21\x6f\x19\xdf\x1e\xc9\x9b\xa8\xe6\xd8\x0e\x8d\x0b\x97\xb9\x54\xdf\x35\x79\x77\x55\xee\xa9\x04\xc1\xf3\x83\x41\x35\x7a\x6d\x1d\x09\xe4\x85\x8b\x4c\x12\x86\x4b\xbc\x23\x91\x5a\x2d\x89\x11\x77\x90\x9a\x28\x11\x81\x0b\x01\xdc\xa5\x0d\x40\xd0\x39\xb3\x8f\xf7\x21\x8b\x16\x58\x93\x8c\x48\x99\xa7\x13\xc5\xf7\x53\xb0\x82\x3a\x97\x26\x5e\x0a\xf3\xeb\xf2\xad\x42\x8e\x93\xa3\x41\x32\x1e\x41\xdd\xb2\x69\x78\xba\x3c\x63\xec\x02\x27\xe9\x00\xdc\x67\x90\x60\xe4\xc6\x40\xc7\x95\xcc\xe2\x86\x2b\xfa\x86\x31\x64\x1d\x15\x09\xa9\xa7\x0e\xa0\x17\x00\xda\xbb\x4b\x53\x19\x15\xa8\xd5\x8d\x7c\x4d\x15\xbe\x2b\x01\x8d\xe2\x7c\xe6\xce\x27\x67\x8f\x75\xed\xb8\x9e\xd4\xcd\xb9\xee\xe8\xba\xec\x63\x13\x7a\x0d\x7f\x51\xba\x66\x6a\xaf\x3b\x67\xba\x99\x66\xfa\x24\xed\xbc\x47\x74\x63\xf4\x4b\xe7\x3d\x87\xf0\xc9\xec\x10\x89\x3f\x3b\xfc\x51\xd7\xfd\x0c\xc0\x83\xc8\xe7\x6b\xdd\x5f\xeb\xe7\x68\xc6\x07\x19\x2f\x1e\x15\x92\x67\x12\x61\xc7\x1d\xdb\x72\xde\x77\xc5\x1d\xff\x71\xa9\x1d\x92\x19\x94\x3f\xfa\xca\x4c\x09\xa4\xdf\x2f\x22\x52\xba\x23\xdd\x80\x4f\x3e\x2e\xfc\x07\x84\xe6\x7b\x72\x9b\x4e\xbf\xba\xf3\x9c\x60\x78\x68\x2b\xe5\x11\xcd\xdc\xd0\xee\x17\xf6\xc4\x38\xff\x92\xcb\x59\xac\x10\xc5\x0a\x45\x6d\xcd\xaf\x1e\xfc\x18\xdc\x64\x6b\x4b\x6e\xdb\x02\xeb\x5d\x13\x93\xd4\xfb\xb2\x74\x2d\x6d\xee\xfd\x77\x3a\xf1\x8e\x8f\xed\xdd\xcf\xe0\xc2\x6c\x78\x6f\x36\xcf\x39\xc1\xe6\x95\x73\xdb\x61\x8f\x6a\x7c\x84\x7e\x8a\x5a\xf5\x1a\x25\x0c\x67\x04\xf8\xd5\x45\x12\x81\xb3\xe0\xbe\x85\xc7\xb6\x09\xaa\x2a\x56\xb1\x2c\x10\x56\x2d\xd1\x64\x15\xc0\x9e\xca\xdf\xa3\x33\xbb\x0b\xd3\x36\xf5\x47\xb3\x0b\x0c\xf4\xde\x5f\x5e\x56\xdc\xd8\xe0\x8a\x49\xf9\x90\xc5\x5a\x00\xc3\x65\xe9\xed\x82\x57\xca\x46\x97\xc9\xe2\xba\x79\x6d\x14\x9c\x52\x7f\x11\x95\x0c\x6b\xe2\x48\xe0\x08\x52\x54\x77\xc2\x5a\x36\x23\xb8\x55\x07\x9a\x61\x93\xd8\xf2\x26\x85\x85\x65\xce\xfb\xb3\x19\xf6\xa7\xad\xd9\xbf\x47\x20\xcb\x10\x95\xc3\x8d\x98\x83\x39\xf3\xbd\x6d\x65\x1c\xb4\x56\x48\x33\x6c\x5b\x05\xd4\xc4\xd1\x9e\xc2\x25\x31\xb5\xef\x59\x57\xfd\x61\xd9\xe5\x72\xff\x46\xd9\x63\xa0\xc6\xdd\xe0\x3f\x29\x55\xd4\x01\x53\xb6\x55\x14\xc9\x89\x00\x7e\xbc\xd0\xd9\x0e\xab\x63\xc5\xfb\x08\xfe\xea\xe2\x09\x42\x25\xdc\x25\x13\xc8\x3a\xe9\x6b\xd2\xe1\x13\xb9\x82\xc0\xb4\x32\x8b\xbd\xa6\x43\x0b\xbc\xb8\xa9\x8a\x07\x1c\x81\x8a\x82\xcb\x76\xc9\x21\xd9\x0d\x05\x68\x76\x3f\x48\x28\x6b\x92\x1b\x99\xfa\xec\x4f\xfe\xb0\xf9\xd9\x13\xe8\x29\xaf\x34\xc5\x14\xaa\x68\xc9\x64\x4e\xef\x7e\x5b\xd9\xf3\xc6\xee\xfd\x19\x17\x5a\xfd\x77\x91\xef\xf5\x66\xe8\x32\xd8\x1d\x57\x2d\xf2\x49\xe1\xa5\x2a\x72\x92\x9e\x63\xd9\x08\x9d\xd7\x27\xd0\x87\x16\xcc\xe1\x40\x8b\x6b\xd5\x92\x5e\x2f\x1a\xf7\x30\x94\xbf\x16\x2b\x20\x99\x4d\xfc\xf8\x96\x74\xd5\x0e\xa4\x47\x3d\x64\xaf\xe1\x28\x1f\xad\xa8\x0d\xfa\x67\xd6\x49\x8f\x57\x96\x1c\xe3\xf1\xc0\xfe\x6c\x20\x2d\x7b\x5e\x5d\x6e\x27\x1f\x01\x46\x47\x3a\x33\xe7\xa6\xe6\x56\x62\xfa\x90\x75\xe2\xd7\x24\xaa\xde\x5c\xc2\xf0\x51\x55\x24\x98\xa2\x5c\xc5\x95\x81\x67\xbb\xe5\xe7\x25\x22\x4a\x63\x46\x8c\x52\xa3\x86\x7d\xb1\x3c\xb5\x50\x5b\xa2\xdd\x81\xc4\xd4\xe3\x75\x1a\x62\xa3\xca\xeb\x9d\x55\xf2\x43\x27\xec\x95\x87\x24\x05\x69\x43\x94\x66\x19\x72\x5e\xfd\xd3\xe6\x7b\xeb\x7f\x3c\xd3\x43\x19\x1d\x80\xa9\x7a\x30\x47\xbe\x20\xca\xbf\x50\x5d\x82\x72\xf4\xb2\xf8\xb5\xdc\xe5\x8a\xe5\xb5\x95\xce\xe6\xb6\x0e\xc0\x33\xe4\x0c\x54\x67\x54\x4d\x60\xd6\xb4\x66\x9b\x28\xbf\x45\xfe\xec\xc4\xac\xf4\x4f\xa9\xeb\x1e\xa3\x52\x28\x18\x64\xd0\xfb\x04\xc2\x46\x7a\xc6\x6d\x94\x07\x50\x27\x3c\x51\x5e\x7e\x5c\x58\x24\x0a\x26\x97\x6c\xd3\xea\x45\x62\x50\x3b\x0c\x98\xf9\x90\x82\x50\x67\x3c\x59\x9f\x7d\x9f\xce\x11\x0a\x07\xe9\xf4\xfe\x69\xaa\xe2\xfd\xf0\x47\x52\x6c\xf5\x76\x8a\xbd\x5a\xbf\x5c\xdb\x16\x14\x7c\x7b\xf2\xf9\x1f\xd5\x7f\xc2\x9b\x9d\x02\xc8\xa8\x24\x3f\xe1\xb7\xe0\x85\x96\xe4\x34\xae\x78\xa3\x30\xa5\x54\xa1\x47\x1d\x61\xcb\x9f\x16\xcb\x75\xa8\xae\x96\x99\xc3\xbe\x3a\xff\x03\x8d\x40\xc9\x0f\xff\x49\xe2\x81\xeb\xd4\x14\x11\xf2\x0d\xea\xdf\x37\x5e\x9d\xb8\x2a\x1b\x16\x6f\x3b\x84\x22\x5f\xca\xc1\x8a\x99\xfc\x08\xf7\x78\xf9\x2a\x1f\x11\x1e\xfa\x0b\xc3\x45\xe2\x3d\x50\xe5\xa7\x4f\x01\x51\x59\x3d\x84\x0e\xe8\x95\xe6\xd1\x3b\xf9\xb2\xb6\x67\xca\x37\xaa\xbc\x12\xda\x01\xbd\x1c\x80\x64\x68\x77\xbc\xae\x04\x2d\xc8\xe9\xcc\x8a\x36\x85\xd1\x10\x57\x18\x9a\x98\x23\x41\xcd\x04\xac\x2c\xae\x34\x1a\x5b\x95\x93\x73\xe0\xd0\x8f\x27\xf1\xeb\x20\x0a\x1d\x55\x30\x53\x40\x20\xe9\xd7\x32\xbf\x92\x07\xce\xab\x84\x6d\x0f\x1e\x93\xc4\xf2\x66\x85\xc9\xd3\x6d\xc3\x29\x37\x27\xd7\x58\xaa\x8c\xcd\x4a\x75\x13\x76\x2a\xa7\xf0\x50\x42\x91\xcd\xe9\xdc\x62\xff\xac\x92\xbd\xa9\xf4\x22\xaf\x09\xc4\xd0\xa7\xa4\x9c\xda\x93\x27\x9e\x22\x66\xf5\x98\x4a\xad\x88\x29\x8d\x9e\x2e\xb3\x2f\x87\x91\xb8\x43\xb4\xa3\x1a\x9b\x01\x4d\x6c\xf8\x97\xaf\x5e\xc0\x35\xe5\xc7\x09\x17\x76\x1d\x37\x99\xbc\x2d\x51\xed\xb3\x4a\x64\xfd\x33\xeb\x28\x9d\xd1\x4a\x0a\xfd\xb9\x9a\x62\xc1\xbb\x70\xf7\xc3\x2f\x85\x5e\xfa\x1d\xac\x8c\xf9\xa8\x72\x9d\x24\x0c\x81\xb2\x78\xb3\x63\x91\xcd\x0e\x9f\xe0\x48\x2a\xa5\xbd\xea\x35\x9c\x27\xf8\x94\x81\x16\x49\xdc\x3b\x2f\x3d\x87\x23\x5a\xcf\x07\xe1\xfa\x1d\x82\xac\xa5\xe8\x32\x83\x30\x02\x69\x94\x1d\x6d\xf6\x53\x74\x5e\xec\x92\xb8\xda\x2f\x1f\x42\xd6\x84\x91\x46\x13\xd3\x97\xc9\xec\xd8\xe3\x88\x20\x20\xca\xe4\x83\x83\x07\x33\x93\xd1\xd6\x16\x4d\x26\xb9\xf8\xe7\x9b\xba\x7d\x4e\xed\x15\x29\x59\xc6\x1d\xd4\x4d\x01\xc4\x7e\x52\xa5\x9b\x7b\xa0\x28\xb3\x70\xca\xd5\x30\x2e\xfa\xc1\xb8\x61\xce\x29\x77\xa9\x63\x1f\x97\xdf\xcc\xbd\x5c\xa7\x5a\xeb\xa4\xbb\xb4\x09\x60\x4b\x01\xaf\x75\xa2\xd2\xdd\x98\xb2\x8d\x3a\x8a\xa3\x6c\xb6\xc2\xa4\x83\x19\x4f\x43\xef\xbb\x8c\xa1\xd4\x2e\x4f\x50\xe7\x5d\x72\xf7\x64\x4f\x39\x4f\x1d\x5f\xab\x59\xb9\xe1\xba\xec\xbc\x5c\xb3\xb6\x62\x51\x24\x9e\x3d\xaa\x71\x39\xe2\x7c\xe4\xb0\x66\x64\xcd\x61\xc5\xbd\x7c\x15\x33\xf4\x7c\x44\x7c\xda\x63\xcf\xff\x03\x1b\xfa\x6c\xa3\xba\xdf\xee\xc1\xe3\x87\x98\xa3\x76\x0b\x89\xf7\x3d\xf2\xbf\xf5\x43\x79\xed\xe6\x66\x9e\x76\xfb\x4f\x0b\x0d\x31\x6e\x9a\xfd\x55\x33\x2d\xfb\xbd\xbf\x31\xd6\x1c\x4d\x1b\x2c\xf2\xda\x74\xdf\xab\x4f\xb3\xa6\x9d\x3e\xe0\x2b\xd8\x39\xb0\xd0\xa2\x22\x27\x96\xc4\x94\x09\x25\x44\x3b\x24\xf5\x90\x6a\x32\xa3\xbc\x0b\x43\x07\xda\xfa\x81\x99\x83\x07\x5a\x87\x8f\x45\x59\x47\xf1\x35\x62\x8f\x1d\x8a\x12\xe1\x04\x3b\x99\x3a\x21\x5f\x41\x09\x6e\x6d\x90\x5d\x04\xba\x2a\x6e\xb7\x05\xb7\xd1\x67\xb5\xa8\xce\x65\xb9\x6d\x2f\x2b\x68\x51\xbc\x1b\xa1\x53\x8f\x03\x9b\x2c\xc6\x6d\x31\xff\xbe\x64\x4d\x66\x05\xb3\x7a\xe5\x17\x58\xa2\x41\x6d\x0c\xd7\xee\x63\x32\xb3\x06\x4a\xd0\xae\x50\x27\xd8\xca\xe0\x84\xf2\xcc\x96\x14\x7b\xf0\x35\xe9\xf5\xbf\x38\xdc\xd3\xda\x3f\xdc\x07\xec\x1b\x19\x5a\x26\x05\x9c\x66\x75\x1e\xa4\xf0\x13\x62\xd2\x1e\xbd\x06\x03\x7a\xcc\xde\x26\x01\xc4\xb4\xa4\x1b\x70\x3a\x4e\x6b\x34\xc4\x6d\xc1\xbd\xa1\x93\xc2\x10\xc6\xad\x30\xd4\x2e\x93\xa7\x89\x0b\x31\x6c\x19\xc6\xe8\x05\x9b\xa7\xfc\xe1\xef\xcf\xdb\x57\x77\xe2\x09\x8c\xcd\x85\x6b\x1f\x83\x1b\xde\xe4\x05\x5f\x8d\x8d\x5b\x0e\x0e\x15\x29\x45\x42\xb1\x52\x32\x78\xe3\xf4\x62\x19\xa7\x08\x54\x8f\x02\xc4\xad\x5f\x83\xe3\x5c\xeb\xe9\x42\xee\x41\xd6\x2a\xd7\xdf\xc7\xba\xca\x1d\x58\x7b\xfa\xa5\x7f\x07\xf6\xe4\x98\xaa\x70\xdc\x08\x77\x24\xed\x1a\x4a\xa9\x7f\xab\x6a\xff\x67\x78\xd7\x5d\xff\x7f\x07\x9a\x64\x6d\xc6\x61\xb5\xbd\x66\x13\x09\xf3\x37\x28\x4b\x85\xb3\x46\xfa\x07\xc1\x53\x1d\xd2\x33\x12\x9e\x7f\x4e\x50\x1c\x11\x1c\xa4\x6d\x2b\xbc\xdd\xa0\xd0\x99\xcf\xe2\xb8\x09\x0a\x4d\x69\x03\xb4\x49\xdf\x6a\x5e\x8e\x62\x95\xbf\x3b\x6e\x48\x71\x1c\xe6\x7d\x22\x2e\x1b\xdd\x2d\x91\x55\x13\x67\x73\xa9\xd4\x05\x3f\x74\x57\x5f\xe7\x50\xd4\xdd\x9d\x0c\x21\x59\xa6\x58\x67\x6b\x1a\x77\xed\x69\x68\x19\xa2\xce\x51\x48\xc4\xe9\x44\x79\xe7\x87\xe9\x99\x5b\x3a\x7b\x17\xb5\xb0\x53\x8c\x20\x1d\x62\x67\x90\xb5\x2b\x3d\x9d\xd5\x0b\x77\x88\xc2\x9d\x22\x3e\xf6\xae\x42\xef\xd0\x56\xe9\xca\x07\x8b\xef\x93\xea\xc6\x12\x8e\x74\xd6\x76\xaa\x40\x55\x63\x77\xff\x85\xfe\x3a\xe9\xff\x26\xfe\x84\xf3\x9f\xb9\x04\xe8\x70\x03\x5c\x5c\x53\x48\x05\xae\x05\xf8\xfb\x5c\x3e\x30\x53\xb3\x27\x4c\x57\xed\x19\x66\xaf\xb3\x2a\x82\xeb\xb4\xe1\xa2\x82\x95\xee\xad\x84\x6c\x49\x83\x0f\xec\x2a\x94\xaa\x9a\xd1\x26\x01\xd9\xc8\x64\xe1\x11\xbb\x70\x2c\x82\x5b\x58\x5f\x78\x19\x57\x17\x00\xc6\x7d\x1c\xdf\x84\xc3\x17\x60\xa9\xf6\x84\xf3\x55\xbb\x87\xb8\xb7\xca\x2a\xe2\x77\x84\xcd\x51\xf8\x64\x1d\x28\xf6\xad\x31\xea\xe2\x54\xad\xbe\x05\x63\x10\xe2\x8d\x74\x6e\x89\xda\x22\x1c\x0f\x15\x14\x34\x16\x5d\xc6\xd7\xf9\x94\x63\x45\x4b\xb7\x49\x8e\x46\x63\xba\x29\xa4\xe6\xe1\xb4\x56\xf1\x9e\x30\x41\xc1\xbd\x1c\x07\xa3\x3e\xd3\x11\x44\xa9\x42\x89\x1a\x87\x64\x4f\x64\x5c\xfa\xdf\x99\xf4\x28\x9f\xdf\x4f\xa7\xf7\xcd\xa9\x8d\x57\x28\x41\x4d\x57\x76\x80\x4e\xeb\x67\x10\xa2\xb9\xbc\x6f\xcf\x44\xb4\x77\x56\xcb\x7d\x54\xc0\x80\xab\x57\xb8\xe4\xb8\x06\xc0\xe8\xa3\xca\x3b\x77\x75\xc9\x63\x28\x15\x06\xd0\x10\x0e\xe6\x59\xab\x48\x6e\x72\x3a\x62\x3f\x48\x20\x02\x00\x4a\x9d\x14\x0c\x42\x97\xbb\x5a\x4f\xa7\x71\xab\x4f\xeb\xb6\x25\xb4\x12\xe4\x43\x17\xbb\x5a\x4e\x6b\x38\xbe\x40\xe4\x83\x2e\x3a\x79\xa6\xd2\x49\x6c\xa3\x3f\xd2\xa1\xde\x47\xcc\x68\x7d\x48\x1b\x38\x9a\x7b\x5b\xa9\xb4\xbe\x31\x50\x58\xd9\xaa\xd6\x47\x34\x22\xde\xf9\xb2\x43\x1f\x5d\xfa\x53\xf9\x0b\x09\xc6\x8e\xea\x6c\xef\x29\x69\xb9\xdc\x39\x73\x30\x12\x50\x26\x22\x0a\xc8\xc2\xdd\x30\x6b\xaa\xa7\x41\xb1\xc8\x5a\x4b\x10\xa0\x01\xab\x83\xc9\xb5\xb0\x98\xb5\x95\xf6\x85\xa2\xbe\xe0\x64\xa0\xa0\xb5\xe9\x80\x99\x01\xb0\xe9\xdf\x9f\xdc\x92\x7c\xa3\x06\x4c\xe9\x9c\x4b\x4a\x72\x16\x88\x8e\xb2\x2e\x53\xd3\x0f\xa9\x82\x98\x90\xd5\x5e\x00\x8e\x6e\x42\x55\x04\x35\x8c\x6b\x9c\xd4\x02\x17\x60\xb3\x4b\x5d\xcd\x64\xe8\x20\x03\x6d\x9c\xf8\x5f\x63\xdf\xfb\x31\xb4\xdc\xbf\xb9\xa7\xb2\x84\x88\x11\xc8\x9e\x85\x55\x76\xfd\xb7\xd1\xdf\xf5\x3d\x9e\x4e\x11\xdc\x4d\x2b\x36\x48\xef\xb8\xdf\x1a\x7c\x6d\x0b\x3d\x7c\x31\xca\xb7\x1a\x56\x55\x91\xb8\x9c\x0a\x12\xa4\x22\x56\xf3\x78\x44\x2f\x04\x57\x10\x39\xdc\x2a\x22\x0c\x93\xaa\xfa\x78\x05\x26\xec\x8f\x2e\x05\xef\x79\x04\x17\x14\x62\x70\xef\xdf\xde\x9f\x7a\x2a\xd1\x34\xbb\xab\x71\xbe\x71\x66\x75\xa6\x6d\xa2\xed\xe0\x51\x3b\xbb\x1f\xb1\x73\x50\x80\x38\x78\xcc\x55\x8e\xde\x81\x1e\xf7\x89\xe8\x81\x83\x63\x03\x52\xb1\x4e\xa5\xdb\x3c\x13\xed\xe7\x33\xaa\x62\x24\x04\xac\xc7\x68\x65\x44\xa7\x80\x94\xaf\x2a\x83\x55\xaa\x73\x57\x87\x06\x35\x88\xd7\xc2\x7c\x95\x5e\xc4\xa1\x03\x22\x48\xa4\x65\x6e\x9d\x8e\x08\xb4\x1a\x84\xb5\xc5\x52\x65\x63\xa1\x51\x48\xb1\x0b\x84\x2a\x8f\x32\xef\x88\xdf\x40\x6c\xb0\xc3\x26\x6a\x2e\x56\x8a\x1a\xf2\x6d\xc2\x32\x97\x6c\xd9\x3c\x5b\x0c\xc0\x7a\x49\x62\xf2\x53\x69\x0d\xcb\x3b\xf1\xf8\x57\x3f\xdd\x2a\x90\xfe\xc2\x21\x5f\x1c\x0b\xa3\x87\xc4\x5a\x4b\x01\xab\xb1\xdf\x5a\xa8\x42\xaf\xa3\x8e\x18\xc9\xa9\xca\x61\x15\x63\xd6\x4a\xfc\x70\x6a\x62\x63\x43\x53\x68\x9d\xcf\x20\x4d\x7d\xca\x4b\x35\x42\xe5\xc5\x81\xc6\x67\x54\xd5\xe9\x4f\xdd\xdd\xc0\x7f\x7f\xc6\x3a\x14\x17\x7b\x2d\x34\x84\x4d\xf8\xea\x58\x7d\xeb\x89\xf8\xc8\xf1\x00\xfe\x52\xf3\x10\x2a\xf9\x28\x76\xfd\xfa\xa2\x8c\x13\x7b\xec\x8c\x0c\x36\xee\xfd\xeb\x44\x59\xc1\x5e\x6c\x2b\x5f\x91\x91\x91\xbe\x51\xa9\x65\xf6\xba\xdd\x03\x6c\xb3\x00\x00\x40\xff\xbf\x79\x90\xed\x76\x33\x7a\xb5\x1d\x9a\x2b\xe9\xfa\x4d\xb1\x50\x31\x7b\x35\x67\x28\xf6\xaa\xc7\x58\x37\x06\x0d\x2c\xba\x05\x25\x50\x3a\xc8\xa6\x3e\xc1\xb8\xd1\xe9\x53\xf7\xc4\x9e\x40\x2e\x4c\x4f\x9f\xde\x9f\x05\x95\x11\xb3\x48\x2d\x06\xb7\x7d\x9e\x92\xce\xb7\x62\x3d\x9c\xa6\xb6\x78\x13\xd5\x92\xf3\x0d\x52\xe9\xcf\x27\x8d\x57\xb0\x0e\xbf\x33\xcf\xcf\x97\x15\x07\xf8\x28\xc3\x18\xd2\xb4\x54\x04\x5f\xbb\xf3\xc3\x6b\xaa\x4f\x91\x78\x40\x43\xc9\x2a\x59\x8c\xe5\x25\x73\x59\xb8\x92\x09\xf8\xa3\x7b\xfd\x2f\x79\x1a\xe8\x70\x13\x56\xc8\x5e\xb0\x36\x18\xc8\x88\xb0\xde\xad\xfd\x13\xf2\x2c\x7e\x93\x98\x66\x51\x19\x3b\x7b\xd5\x26\x8d\xa9\x15\x35\xea\x2c\x61\xbd\xe5\x38\x92\xf1\xb3\x4a\xd8\x8b\x53\x79\x90\x3f\x28\x5e\x9d\x3c\x64\x6e\x15\xd6\x8c\xe9\x4a\x6d\x94\x29\x62\x1f\x5c\xcd\x71\xf8\x58\xf0\xc8\xe4\xac\xe5\x79\xdf\xe2\xfc\xd8\x36\xd9\xa6\x48\xab\x73\x00\x0c\x5d\x74\xc5\xa3\x71\x7a\x38\xa6\x34\xa9\x63\x4f\xa8\xd7\xd8\x22\x3a\x08\x76\x2b\x89\x18\x62\x80\x9e\x53\x12\x34\xfb\x3a\xd2\xbe\xe3\xb6\xbc\xb1\x45\x79\xcc\xcb\x9e\xe8\x8d\x7e\x19\x65\xb6\x48\x46\xfb\xeb\xbd\x75\xd6\xc3\xde\xd4\x4a\xd3\xe9\x70\x01\x1e\x1f\x17\xd4\x1a\xe2\x34\x13\x37\xf0\x9c\x42\x2a\xbe\x56\x5c\x33\x25\xa7\xe8\x47\x48\x7c\xbb\x60\xd0\x69\x26\x36\x30\xed\x04\x43\x19\x83\xa6\x85\x10\x33\x02\x59\x69\x21\xc0\x51\x36\x50\x69\x1f\x24\x1b\xc8\xae\x2d\xa4\x0c\x68\xa7\x82\xbc\xe8\x9c\xfe\x5b\x9c\x85\x47\x08\x94\xff\x42\x8e\x37\x93\x66\x80\x60\xb3\x0a\xb2\xd1\x6b\x60\x62\x26\xf0\xc7\xe8\xb7\x49\xde\x65\x45\xba\xc4\x6f\x10\x82\xce\x33\xa8\x45\x6b\x2c\x2a\xab\xf6\x90\x2e\x48\x45\x2b\x05\x88\xe6\x5c\x96\xba\x91\xaa\x35\x11\x5a\x90\x73\x6f\x9f\xee\x4c\x1e\xcb\x4c\xac\x80\x15\x46\x9b\xfe\xe6\x26\x3c\x2d\x66\x33\x75\x50\x34\xf6\x7e\x5e\xf8\x74\x67\x8c\xce\xda\xcb\xb5\xfb\x29\x7b\xf3\xdf\xfe\x49\x05\xf3\x6b\xc5\xea\x4a\x02\x48\xb8\xf2\x9a\xf6\x57\xd0\x9e\x9b\xaf\x60\xa7\xaa\x8c\xa4\xc7\xb7\xe8\x68\x02\x19\xc8\x72\xa5\xe2\xb5\xc3\x38\x5b\x65\x7c\xb9\x64\x5f\x24\x52\x4f\xb9\x07\x94\xca\x78\x76\xec\x22\x2c\x93\x8a\x26\x68\x6a\x1b\xb8\x1f\x1a\x1e\xea\x68\xd7\xbc\x95\xd4\x9b\xfe\xa2\xb3\xf0\x14\xa9\x22\x7a\x5b\xd7\xbe\x2b\x75\xad\x46\xae\xb9\x3b\xda\xb9\x4e\x2c\x71\xcf\x43\xdd\x39\x15\x9e\xf3\x5f\x19\xb3\x88\x85\x7f\x3d\x90\x4a\xf5\xfd\x3a\x76\x26\xa7\x71\xea\xd6\xf8\xfc\xcd\xae\x9d\x82\x2d\x3f\xe3\x36\x12\x36\x0a\xc6\xe6\x78\xd7\xe4\xc8\x91\x66\xa1\x29\x40\x1e\x49\x4b\x22\x77\x9b\xaa\xe3\x62\x9d\x26\xae\xb0\xc4\xa9\xa7\x05\x61\xc8\xac\xfb\xcb\xad\x21\x76\xec\xd0\x99\x60\xa4\xc7\x44\xe1\x12\xd7\x07\xa2\x71\x87\x37\x20\x0a\x67\x3d\x26\x8e\xf6\x15\xbd\xc1\x4e\x0f\xff\x61\x88\x47\x34\xf0\xab\x33\x4e\xa6\x69\xc2\xae\xb7\x90\x58\xff\x97\xb1\x16\x66\xc8\xf1\x3f\x1c\x77\xde\x42\x5b\x11\x04\xc3\xdd\x8b\x1c\xd4\xb9\x1b\x64\x5d\x3d\x4e\x74\x4c\x26\xf1\x8a\x4b\xf2\x5e\x29\x1d\x3d\xb6\x64\x78\x41\xd9\xb4\xb5\xcc\xa6\x46\x30\x53\x32\x07\x15\xd5\x2d\x59\x4b\x66\x78\xbe\xe6\x3e\x49\x78\xe1\xa1\x37\x56\xf6\xd9\x4a\x81\x64\x24\xba\xc7\x5a\x6d\x68\x52\x22\x4d\x25\x53\x39\x28\xe8\xc9\x60\x74\x87\x01\x48\xc6\x0b\x8a\x0f\xc6\xdd\xaf\xba\x53\x4a\xae\x85\x62\xe2\x8e\x47\x94\x68\x8e\x3c\x55\xd2\x7c\x66\x29\xc8\x00\x9b\x72\x49\x83\xe5\xae\x61\x3a\x4d\xdb\x4b\x72\xd9\xd9\x43\xae\xf5\x50\x8e\x07\x66\xac\x87\x5a\x10\x68\x66\xca\xaf\x51\xda\xe4\x62\xe1\x72\x79\xc5\x71\x01\xa7\x0e\xa6\x23\x79\xdf\xbf\xce\x79\x90\x94\x50\x63\x5c\xfe\x8a\x3e\xbb\x32\xf5\xc9\x6c\xf2\xec\xfb\x3f\xdf\xb2\x2f\x6d\x73\xed\x19\x80\x4a\x17\xf8\xf1\x1a\xc2\x15\x35\xa7\xbc\x1a\x8f\xa7\x83\x62\xd0\xb6\xa2\xeb\xe0\xe2\x27\xd7\xbf\xfa\x53\xc5\x5b\xb8\x23\xc7\x98\x94\x77\x7a\x90\x1d\x35\x23\x59\xe9\x20\x6d\x5e\xe9\x19\xd0\x3b\x04\x7a\xd3\x5d\x05\x9c\xc2\xa8\xfa\x52\x99\x8d\xb6\x2d\x9c\x36\x93\x7e\x27\x9d\x23\x67\x03\x2f\xea\x20\x67\x73\x1e\x65\x98\x54\xd0\xc1\x30\x14\x13\x5f\x35\xcf\x91\x2d\x3e\x1a\xc6\xa7\x80\x51\x57\x25\xfa\x76\x40\x50\x6e\xb0\x73\x7f\x0b\x10\x64\xff\x1a\x65\x3a\x19\x45\x5a\xae\x2a\x75\xee\x61\xb3\x6b\xd8\xcb\xe5\xfb\x8e\x1c\xdd\x98\x04\x8a\x5d\x9f\x9a\x97\xb6\x6f\x3e\x1a\x26\x60\x55\xbe\x8a\x5f\x06\x4f\x37\x74\x56\x0f\x68\x8c\x94\x35\x54\xc9\xb9\xcb\x7b\xaa\x0d\xf8\xc0\x22\x58\xbe\x4b\x7c\xb9\xb5\xbd\xd5\xe4\x72\x99\x6a\x11\xcb\x47\xc6\xb7\x3e\x9d\x2f\x54\xbf\xa2\x4f\xb8\xcd\xb5\xeb\xb6\x61\x19\xa7\xdb\xac\x9d\x45\xae\x52\x91\xa3\xe8\x40\xc9\x4e\x89\xdb\x64\x3c\x65\x0b\xd2\x27\x41\xcd\xf5\xb4\x0b\xd4\xba\x21\xc0\x56\x3e\x04\xde\x7f\xab\x26\x45\x65\xef\x56\x98\x5a\xf1\xc7\x98\x27\x5f\x43\xe3\x32\x63\x44\xf3\x67\x01\xb8\x0a\xf2\x7f\xa2\x07\x12\x2e\x81\xbb\x2c\x43\x69\xa3\xca\xbb\x67\x2f\xa7\xd8\xed\x43\x80\xab\x8b\x76\xa1\x64\x1b\xb6\x8a\xe3\xad\xf7\xa9\xfe\x57\x96\x4b\x7a\x1c\x7e\x09\x67\xdd\x8a\xb7\xbd\xe9\xef\x7f\xd5\x6b\xf2\x53\x1b\xe8\x7f\xfb\x85\x29\x94\x1d\x59\xdb\xbc\x90\x18\x0a\xd6\x98\x11\x83\xd4\xaf\x88\x2a\xa4\xab\x52\xd9\x09\x49\x11\x5e\xb5\x95\x98\x73\xd0\x6e\xd7\x0d\x57\x43\x46\x8c\xb8\x66\xa4\x86\x28\x78\xba\xf2\xe5\x13\x6f\xd8\x14\x8b\xb7\xbb\x8c\x42\x36\xa7\x0a\xb6\x8f\x1e\xe9\xdd\x12\x98\x52\x2a\xfb\x50\xd1\x4f\xd6\x32\xd7\x04\x3c\xd1\xe1\xf2\xa2\x05\x0e\x8f\xe9\xce\xfe\x06\x3a\x72\x90\x60\xe9\xdb\x06\xf4\xd5\xa3\xda\x05\x1f\x24\xe3\x4f\x23\x4d\xef\xb6\x5b\x57\xed\x09\x2a\x2b\xbb\x11\x65\x3b\x82\x1a\x14\x9c\xf7\x7a\x50\x5d\xc4\x57\x21\x81\x98\xd3\x58\x4a\x67\x27\x7a\x57\xed\x5f\x12\x5f\x25\x85\xd7\xda\x57\x51\xdd\x8c\x53\x0e\x4f\x12\x44\x3e\xc3\x52\xb8\xd4\x10\xf8\xda\xf8\x2a\xb8\xb3\x46\xb1\xc8\x17\x9e\xdf\xfc\x60\x6b\xc9\x04\x58\x80\x60\x5e\x21\x11\xe4\x9f\x46\xe1\xc2\xfe\x8d\x11\x1b\x8f\x55\x93\x31\xa5\xe4\xc9\x54\x63\xad\x39\xb1\x48\x65\x1a\x2c\x26\x28\xb5\x11\xaf\xbc\x76\x46\xc3\x44\xfd\x08\x59\xe6\xce\x7b\x16\xd5\x34\x61\x47\x19\xd8\x61\x7c\xb1\x23\xe3\x44\x0e\x17\xd5\x71\x5c\x5d\x35\x24\xb8\x5e\x52\xf7\x93\xde\x2e\xea\x38\x49\xd0\x21\x32\xb5\x9e\x94\xb1\x35\xfd\xab\xba\x90\x20\xbe\x3f\x27\x59\xfe\x7a\x1c\x8f\xae\xb3\xb0\x9b\xae\xf1\x9c\xf9\x98\x10\xd8\x74\x29\x11\x62\xff\xfa\x5f\xa7\xc5\x71\xcd\x98\x66\xc2\xf9\x97\x77\x2d\x6e\x04\xc4\x71\x74\x6e\xd6\xe6\xdf\xdf\xc3\xff\xfd\x8b\xd8\x92\x4b\x5c\xf6\xcd\x78\xbf\xa0\x11\x69\x22\xc0\x06\x93\x11\xa1\x04\x25\x47\x61\x50\x41\x17\x89\x58\x2b\xc8\x29\x2e\x46\xe3\x4d\x8f\xf0\x51\x71\x27\xc6\xc2\xff\x54\x6d\x9d\xce\x22\x02\x30\x9a\xb0\xae\x88\x42\xd1\x14\x85\xd1\x1a\x2a\x15\xad\x0e\x6a\x0a\x28\x14\x5d\x41\x10\xa3\x0e\x52\x72\x92\xee\x70\xa1\x39\xe6\xbb\x7f\xcf\x65\x5d\x0e\x0c\xfc\xc2\xf5\x65\x96\x9f\x37\x06\x62\x85\x94\xef\x31\xff\x80\x75\xbf\x50\xee\x02\x90\x91\x5c\x45\x91\x8a\x49\xc6\xda\x14\xc6\x0a\xa4\xb7\x98\x73\xf6\x71\x10\xcc\x5a\xa5\xc7\xd1\x4b\x64\x2b\xf4\xa2\xfb\x05\x81\x42\xe5\x76\x71\x2e\xbd\xd8\x56\xad\xc3\x33\x28\x60\xd1\x77\x68\x37\x62\xb6\xf5\x4a\x8a\x43\x0e\xd3\xf1\xb7\xcf\x58\x66\xcb\x69\x66\xf7\x7f\x31\x2b\x70\x38\xfe\x35\xa2\xfa\x68\x07\x02\xed\xd8\xdd\x89\xc0\x74\x8c\x97\xc3\x31\xed\x47\x3a\x28\xe8\x2d\xc2\xc2\xfc\xf2\xc2\x22\x67\x7e\x61\x8d\x02\x53\x7e\x6f\x70\xdd\xb3\x9e\xee\x5e\x93\x7b\x19\x64\x28\xd2\xc9\x59\x9f\x02\x13\x2a\xfd\xb4\x02\x72\xce\x95\x87\xa7\x65\x0d\x4b\xa6\x97\x05\x74\xc2\xd9\x0d\xf9\x06\x4a\x15\x8c\xdd\xf8\x7a\x59\xd7\xf8\xb3\xff\x8c\x0b\x7e\xdd\xfc\xde\xe1\xd9\xdb\x3c\x57\xe0\xe8\x7d\xae\xfe\xca\x72\x2c\xc3\x91\xa8\x7a\xe1\x4d\xe5\xfe\xee\x50\x91\x6e\x00\x6f\xc1\xdb\x8f\x39\xf5\x17\xfd\x27\x9d\x3b\x36\xc9\xf1\x12\x30\xc1\x76\x01\xbb\xc1\x09\x87\x5c\x3f\x09\xfb\xcc\x56\x74\xbd\xd7\xdc\xb3\x2b\x2a\x44\x73\xdf\x1b\xfb\xa0\xfd\x60\x7b\x18\xa0\x95\xe3\xe7\xbd\x72\xd0\x41\x71\xfc\x3e\x0c\x7f\xfd\x14\x8c\x72\xfd\xbe\xfd\x90\xe6\xb0\xf6\xb0\x01\x59\xfe\xe3\xc4\x5c\x92\xbe\x89\x66\x42\xe3\xe7\xbf\xc6\x4d\x45\x09\x94\x62\xdb\x3f\xf6\x01\x97\xb0\xd9\xbb\x57\xb8\xce\xf3\xff\x4f\xff\x23\xbe\x26\x0c\xbd\x39\x31\x7c\x99\x1d\x42\xe3\x7e\xc7\xdb\xbf\x98\x5b\xbb\x0f\x06\x9b\xa5\xf0\x7a\x77\xef\x0a\x99\x97\x7c\x15\xec\xe0\x1b\x2e\xe6\xd6\xed\x83\xce\xb4\x48\x88\x48\xb5\x92\xc7\x4f\xbe\x07\x76\xbd\xb2\x78\x8e\xe1\x78\x21\xb1\x32\xe9\x1d\xda\xf0\x53\x1e\x0e\xe0\x76\x3d\xca\xcc\xc1\x8d\xe2\x78\x41\xf1\xcf\xef\x7e\x2e\xdc\xe0\x1d\x43\x5c\xfb\xb8\x91\x2e\x90\x7b\xb0\xfd\x96\x9a\xb5\x9a\x6a\xf9\x33\x92\xb6\xa5\x0c\xf6\x16\xdc\x1a\xcc\xd9\xf2\x41\x46\xd3\x64\xa7\xaa\xa3\x38\x49\x25\x7d\x72\x8f\x5b\x50\xf9\x0e\x48\x3a\x72\xb1\xc5\x75\x0f\xfc\xcf\xdc\x0e\xda\xed\xfc\xfa\x3e\x85\xc9\xd8\xa3\xd8\x02\xe8\xb7\x95\xb9\xa8\x7f\x1f\xd8\xd6\xea\x7a\xe9\xea\x1c\xfe\xe3\xc2\x2e\x78\x16\xb7\x5a\x90\xb3\x5f\xf3\xb6\xeb\xee\x39\x8e\xb2\xe3\xf9\x6a\xdc\x39\xd3\xde\xf6\x39\x17\xe0\xae\x63\x0e\x05\xba\xbe\x32\x61\x5d\xf5\x4f\xfa\x09\x85\x27\xdc\xcc\xba\x63\x63\xb9\x30\x0c\xed\x79\x7d\x9c\x94\x11\x04\x73\xb5\x3c\x78\x41\x2d\x0e\x1e\x31\x09\x27\x38\xe7\xa5\xf6\x03\x9c\x0f\x84\x53\x47\x69\x82\xba\x45\x7d\x94\x8a\x35\x08\x23\xfa\x82\xf1\xa4\xa2\x90\x44\xed\xe9\xb4\xe2\x95\x99\x8c\xa7\x35\x26\x32\x35\x61\x44\xde\x59\xb0\x48\xb9\xe6\x7d\xf2\x2a\x7f\x5a\x28\xa9\x93\x4e\xd1\x58\x81\xa3\xae\xe0\x6e\xea\xd8\x25\x55\x08\x76\xa5\xa7\xea\xac\xb8\xd0\xba\x44\x7f\x78\xfb\x38\x68\x1a\x35\x79\x84\xd9\xee\x8a\x93\x0a\x5a\xbd\xd2\x5b\x72\xd7\x95\xcc\x61\xa0\x1d\x32\xa0\x82\x28\x16\x54\x13\x60\x88\x58\xc9\x93\x3c\x19\xb4\x60\x43\x0d\x14\xad\x81\xd8\xa0\xe0\x95\x44\x00\x4b\x35\x5b\x36\x35\xd1\x92\x38\x86\x3a\xef\xba\x68\x7a\x7f\xfb\x9b\xeb\xa6\xfe\x79\x7b\x6c\x5a\xae\x7f\xa7\xbf\x28\xad\xfd\xef\x78\x5e\x53\x50\xbf\x9f\x48\xb5\x2c\x33\xd2\xf1\xa4\x91\xe2\x37\xa9\x36\xc6\x6d\xbe\xfe\x70\x66\xe6\x4d\x38\x34\xe6\x73\x33\xc1\x9c\xcf\x89\x1f\xdb\xde\xb7\xaf\x82\x1e\xb4\x32\x41\x52\x75\xf7\xba\xa5\xed\x60\x09\xa8\xb2\x77\xf1\xe6\x58\x35\x83\x56\x75\x9a\xf8\xbb\x8c\x28\x1e\x5c\x64\xa1\xbc\x92\x85\xdc\x97\x2d\xea\x92\xda\xac\x1d\x52\x63\x0d\x5a\x7d\x96\xbd\x82\xd6\x6f\xad\x8b\xeb\x54\x5b\x49\xa8\xae\x04\x73\x1d\x71\x22\x33\xb2\xfe\xcb\xe1\x5c\x12\x1b\x3f\x64\x60\xb4\xe6\xeb\xc0\xe6\x22\x0b\x97\x0e\x13\xd7\x4c\xbc\x79\xb0\xce\xcb\x6f\x2c\xed\x4c\x93\x46\x6f\x51\xda\xf3\x52\xbb\x4c\xbe\x96\x81\xfa\xe2\x6a\x6c\x5d\xb7\xde\x04\xb4\xf7\x9a\xae\x12\xcb\x7d\x17\xa9\xad\x79\x19\x9d\x28\x1d\x88\x7f\x97\x15\x58\xbb\x53\xac\x6f\xdc\x89\xd0\xb6\x7a\x20\x3f\x4b\xf1\xab\xcd\xd6\x3d\x1d\xa3\x61\xfe\xae\x3b\x37\x71\x11\x97\xd2\xd4\x6e\xe8\x22\x8d\x64\x0b\x2a\x03\x9e\xf4\x2f\xc2\x98\xbe\x9d\x08\x9d\xa4\x93\x27\x7b\x50\x38\x26\x39\x7c\x27\x40\x4e\x0a\xcb\xa7\xe1\x74\x02\x73\xea\xa6\x07\x3d\xb5\x59\x6c\x71\xe3\x7b\xac\x22\xf2\x6e\xaa\x76\x7c\x81\x49\x65\x4b\x3e\x98\x50\xb4\xbb\xdd\x54\xe7\x67\x34\xf9\x42\xb5\x04\x55\xa1\xa6\x0a\x82\xbc\x65\x79\xe6\xba\x66\x68\xa8\x71\x28\xb2\xc7\xe0\xad\x24\xad\xa3\x28\xc0\x28\xbd\x37\x76\xaf\x62\xe4\x44\xa6\xb8\xe6\xa4\xa1\x72\x56\xbc\xd7\xeb\xde\x2b\xda\xab\x18\x3b\x99\x29\xaa\x0d\xb4\x91\x52\xf6\x36\xbf\xfb\xfe\x60\x6b\xed\xcd\x96\x96\x8e\x57\xb7\x27\x3c\xbf\x6f\x6b\xad\xbe\xde\x1a\x25\xff\x4c\x6c\xbb\x98\x76\xa0\x9c\x50\xff\x00\xf2\x75\xbf\x06\x65\x83\x8c\x05\x0f\x7c\xdb\x5e\xca\x9d\xe4\x9a\x96\x12\x93\x95\xbc\x5b\x98\xe5\x27\x6f\xba\xe7\xb8\x69\x14\x3d\xf0\xc8\x1d\x77\xc7\xef\xb1\x5d\xfe\x00\x50\x67\x81\x4e\xc4\x7a\x9e\xce\xc2\xaa\xfe\x1d\x74\xe1\xd4\xd0\x75\x47\xad\xa3\x91\x49\xcc\x50\x1b\x44\xb3\x14\x6b\x16\xcf\x2c\xd1\x80\xc2\x50\x2e\xf0\xbe\xbf\x6b\xe7\x2f\x4b\x96\xca\x94\x01\xa9\x9d\xcc\xb7\xbb\x88\x5a\x46\x82\x88\x1c\xb2\xa5\x4a\x38\xed\x26\x9a\x9c\x1f\xf8\xe8\xf3\x63\xe5\xb8\xe8\x48\x95\xb6\x97\x0e\x6e\xad\xcc\xab\xaa\xce\x53\xd1\x48\x5a\x59\xb2\x07\x99\x6b\x92\x41\x67\xfd\xe4\x5e\xd1\xde\x3b\x6e\xa6\x59\x14\x43\xda\xf1\x2a\xfb\x35\xb4\xaa\x26\x75\xa1\x25\x93\x31\xe0\x0e\x0c\xa8\x4d\xd9\xca\xac\x88\x58\xa5\xc5\x3b\xd9\x76\xdd\xd0\x01\xd7\xf5\xc0\x66\xf5\xfe\xec\x1f\x02\xe1\xc7\x73\x99\xe3\x81\x3f\x9d\xa1\x42\xf3\x53\x8d\x54\xda\xde\x53\x6d\x98\x22\x4f\x91\x14\x46\xb7\x96\xef\x8f\xcd\xad\xcd\x75\x4c\xfe\xdc\x08\x07\x7e\x92\xf2\x9e\x2f\xee\x5d\xcc\x12\x35\x9c\x86\x56\xd3\xc0\xcf\x20\x51\x9a\xc7\xcd\x1d\xab\x58\x5e\xc7\x55\x97\x6c\x51\xf8\xb8\x19\x74\xb8\x1d\x4b\x51\xd6\x23\x46\xb6\x19\xfd\x71\x60\x5a\xa1\x6d\x07\x95\x8c\xc7\x08\x41\x92\x3d\x87\x63\x88\x8a\xe1\x08\x7a\x3c\x23\x84\x10\x36\x85\xcf\x73\x6b\xc3\xf0\x8c\x77\xb5\xcc\xd3\x85\x28\xeb\xf1\x6a\x6b\x3b\xac\x8b\x61\x1b\x7d\x1e\x18\x30\xa5\xd7\x1d\xd8\x03\x33\xb7\x51\xb6\xf6\x20\xf8\x02\x8e\x13\xdc\x12\x54\xa8\x31\x7b\x24\x8f\x33\xeb\x3d\xd5\x7f\xfe\xdb\x37\x51\xc2\x6a\xdc\xde\x66\x73\x85\xd6\x3e\x86\x39\x51\xef\x1f\x05\x1e\x35\x8d\x3d\x43\xf3\xd6\x84\x4e\x15\xf0\xd4\x35\xef\x75\x48\x08\x94\xcf\xf6\xaa\x6f\x51\x64\x6d\xb7\xec\x0d\x87\x94\xd7\x95\xd0\x16\xe5\xa3\x06\xf5\xcd\x5c\x99\x80\x9f\xe8\x47\xc2\x4d\x13\x2b\x5a\x9e\x00\x96\x6a\x56\x68\x9b\xb0\x46\x03\x6e\x2f\x51\xdc\x22\x0d\x8c\x93\x6a\x6a\xeb\xcf\x61\xa6\x3b\x84\x3b\x2e\x00\x5c\xe8\x7c\xdd\x9d\x45\xf7\x40\x43\xfe\x49\xdf\xf6\xdd\x63\x57\x96\x60\xc4\x18\xce\x60\x23\xee\x16\x66\xd7\x2d\x8f\x07\xd8\xb7\x8b\x1b\x3d\xf8\x01\xc4\x12\x2c\x95\x1a\x9b\x0c\xaa\xde\x92\x85\x6c\xbd\x4e\x9c\x7e\x44\xe3\x63\x89\x6f\x0b\x7a\xc4\x7a\x24\x4f\xc6\x79\x4f\x32\x7b\x83\xdb\x1c\xbb\x28\x52\x76\xca\x9e\x69\x2a\x29\xd9\x66\x1e\xb6\xe3\xa0\x48\x70\x94\x76\x56\x74\xac\xd7\x66\xa8\x22\x3c\xf6\x4a\x22\x9f\x50\x97\xd1\x98\xa9\xcc\x1b\xe2\x45\x5d\xb6\x6f\x37\x75\xdc\xdc\x52\xd8\x4b\x52\x9a\xc6\xed\x82\x69\xe1\x55\xa9\x90\x79\x57\xac\x3d\x23\x52\xec\xb8\x0f\x36\x97\x62\xd2\xbd\x56\x49\x2c\x7f\x38\x19\x82\xcf\xd9\x17\x58\x0e\x41\x8c\x92\xaf\x0d\x35\x03\x9e\xa0\x4e\x10\xad\x23\x0e\x79\x7b\xe1\x3e\x1c\xa4\x33\xf4\x7f\x64\xe3\x63\x38\x87\xf1\xcb\x62\x48\xc8\x8b\xa5\xd3\x97\x8a\x1b\xb7\xdf\x04\xdf\x14\x9a\x4f\xd1\xca\xe6\x04\x7b\xfd\x43\xe0\x88\x18\x71\x2c\xa1\xd2\x01\x9a\x2e\x13\x1c\xb2\xc4\xb4\x01\xd1\x46\x48\x62\xbe\xe9\x94\x6b\x0d\x5d\x85\x85\x74\x67\xaf\x05\x6c\x07\xac\x2e\x61\xa0\x07\x43\x55\xd8\xb1\xf5\x03\x0a\xa4\x2b\x4e\x3f\xb0\xe9\x91\x0f\x4f\xb0\x61\x49\xe2\xf6\x0e\x7e\xae\x95\x6f\xaf\xe8\x89\xa2\x23\x98\x48\x77\xb4\xc2\xfe\xd3\xbc\x90\x53\x45\x0f\x24\x4b\x82\x7d\x3e\x3c\xae\x76\xb6\x0d\x93\x6b\xd8\x34\x5b\x91\x78\x41\x22\x5f\x96\x14\xd6\x9c\x55\x2a\x3a\x95\xe7\x6b\xb3\xd7\x12\x48\x08\x2e\x06\x19\x02\x24\x79\x07\x6a\x68\xec\xe8\xe1\x0a\xcb\xf5\x82\xe6\xdd\xc8\x87\x61\xcb\x5c\xf6\x30\xad\xa0\x87\xa1\x33\x0f\x94\x39\x7c\xf4\x7d\x74\x3e\x16\xda\xf6\x7b\x88\x55\x41\x6c\x35\x54\x36\x03\xaa\x54\x6a\x93\xb6\xde\x04\x59\xdc\xe1\x3d\x9c\xb1\xa7\x33\x64\xda\x6f\xf0\x50\x52\xa1\xea\x64\xf6\xd8\x33\x98\xe7\x59\x07\x9f\x31\xdc\x96\xd2\x6f\x2f\xf4\xb0\xa7\xdb\x27\xd0\xb1\x59\x82\x1b\x11\xc9\xf9\x4d\x2c\x6d\xf9\xa6\xc6\x81\x66\x15\x0c\x6b\x05\xa7\x06\xe1\xf5\xe4\x7f\xf7\x7b\xb9\x9e\x46\x37\x36\xe8\x4c\x5a\x87\x6b\xd0\xe3\x9a\x2a\x4c\x42\xa9\xec\x2f\x3c\x5d\xd0\x4f\xfa\x0b\x51\x5f\xbf\x50\xf7\x7d\x2f\xd2\xc0\xf8\x2f\xb2\xfb\xa9\xa3\x85\x1e\x27\xc9\xe6\xf2\x5c\x5b\xa0\x18\xd2\x9e\xbd\xf6\xf7\xfa\xda\x35\x4a\x87\xdc\xfc\xb9\xd6\xcd\x15\x7c\xe8\x43\x47\xe0\xe5\x77\x1f\xa3\xcb\x57\x15\xf2\x0e\xc9\xc5\xd2\x6b\x37\xdf\x79\x90\x90\x85\x22\x95\xb2\xa0\x6c\xbf\x14\x35\x31\x3c\xdd\x83\xd8\x78\xb8\xda\xfc\x08\xe5\x64\xce\x67\x3e\x26\xac\x3d\x6b\x5c\xa4\x5e\xed\xaf\xbb\x06\xca\x3a\xd6\x9d\xed\xc7\xf1\xcf\x54\x26\x2a\xfc\xf3\xf6\x92\x26\x40\x19\xbf\x26\x6f\xec\x52\x5f\xde\x5c\xb1\xb6\x39\x9d\xda\xa1\x35\x47\xc9\x7a\x73\x27\x68\x69\x27\x9d\xe4\x64\x48\xe6\xe3\xe9\xbe\xc3\x47\x52\x76\x82\x66\x7d\x94\xa0\x33\x50\xe2\x9b\x33\x01\xc6\x1d\x5d\x1c\xb3\x7c\x18\xa6\x74\x52\x4f\x71\x38\x61\xa0\x54\x0f\x43\xf9\x59\x72\xee\x14\x3b\x80\xed\x73\x30\x18\xf2\xa2\x5c\xe4\xc0\xcc\x41\x89\x7c\x31\x8a\x9d\xb8\x12\xf1\x80\xc8\xa4\x3d\xf2\xca\x4b\xab\x13\xf0\xd3\x6a\xf1\xd6\x87\x01\xa8\xcc\x5b\x71\x7f\xd5\x3c\x57\x1f\x56\xb9\x57\xc6\x88\xd1\xe7\x18\x0c\xfa\x22\xa3\x6a\xaf\x92\xf9\x87\xb9\xd5\x53\x9f\x90\xde\x2c\x5b\x2e\x9e\x09\x16\xba\x11\x30\x8d\xa2\x4d\xaf\xe6\x70\x32\xbc\x64\x35\x4c\xe5\xf8\xe0\x24\xc7\xb7\x57\x6f\xb9\x0e\x85\x0e\xd2\xcb\x02\xa2\xb9\xd2\x9b\xe0\x2b\x9c\x4b\xf5\x25\xb7\xb3\x4c\xc8\xbb\xff\x9e\xc1\xc8\x98\xff\x1f\x7b\x0b\x52\x37\x50\xa5\xa0\x06\xb6\xab\x64\x0b\xc4\x6b\xb5\xe5\x38\xe0\x43\xc7\x4b\x17\x04\x15\xb7\x25\x0d\x31\xe5\xb1\x00\x4f\x79\xa2\xaf\xea\xb6\x5c\xf1\xe4\xfd\x50\xd1\xc5\xef\xa9\x26\xd9\x2d\x74\xed\xb7\x87\x79\x16\x62\x83\x5a\x4d\x0b\xc5\xc4\x54\x05\x22\xe7\x23\x97\xc4\xd3\xf9\xff\xa6\x7c\x89\x97\xb2\xaf\xba\xfd\xa8\x7f\x15\x4e\xdc\x27\xee\x7e\xde\x12\x7d\xdb\x68\xd6\x3a\xaa\x68\x79\xd0\xb6\x23\xe0\xdf\xbd\x46\x7d\xa7\xfb\x92\xee\xf4\x0e\x99\x7d\x7b\xf3\xc9\xc7\x57\xd2\xf1\xea\x67\xd5\x49\xc7\xfb\x9f\x7d\xf5\xd1\xf6\x1f\x6f\xd8\xde\x6d\x65\xcb\xc0\xc2\x6e\x69\x0c\xc9\x6b\x45\x7a\x88\x36\x45\x73\xa9\x15\x64\x55\xf2\xd7\xd8\xd9\x87\x77\x8b\xd6\x04\x82\xb6\x7b\x9c\x2e\x71\xda\xb1\x1a\xa0\xa6\xf9\x4c\x53\x48\x3f\x79\xf7\x72\x9b\x98\xb4\x3c\x59\x7e\x25\x46\xee\x7b\x86\x35\x28\x2e\x38\xd9\xbc\x2d\x0a\x09\x39\xb4\x5d\x14\x8d\x75\x98\xc8\x50\x57\x19\x29\x42\x0b\x3a\x94\xfd\xc5\xe6\x67\xe7\xb3\x63\xb2\xf3\x89\x8d\xad\xb3\xd8\x25\xed\x6c\x6f\x19\x56\x31\x78\xe7\xfa\x5d\x23\x49\x72\x09\x22\x39\x8d\xff\x27\xff\xca\x3e\x46\x11\x67\xce\x57\x54\xbe\x4d\x1f\x20\x23\x9f\xe0\x9f\x09\xcf\xe7\xa8\x6a\x9f\xba\x2b\x1e\x08\x50\xd5\x76\x75\x27\xd9\x0e\xd7\xe5\x2e\x3a\xf4\x5f\x26\x1e\x59\xb1\x0d\x46\xf2\x25\x82\xd7\xfd\xf2\xd1\xa5\xf2\x77\x7c\x4c\x84\x25\xd9\x66\x5c\x42\x74\xd4\xfa\xaf\xc3\xbe\x54\x1c\xd8\x91\xba\x24\xa6\x69\x4a\xba\x6a\x3b\x29\x39\x94\x3f\xc7\x12\x37\xf2\x2f\xd4\xdd\x00\x5f\x52\x9c\x5b\xf8\xb0\xbd\x50\x64\x9f\x2a\x4c\xcd\xbd\x1b\x62\x1b\xb9\xbe\x1b\xd9\x35\x0e\xb4\x65\xab\xec\xc7\x38\x18\x64\xb8\x36\x0e\x41\xeb\x8a\x27\x46\x49\x46\xfa\xcf\x4b\xbe\xd5\xb1\xcc\x41\xfb\x90\xba\xb7\xb4\xa1\xe6\x15\xa9\x22\x26\x3d\xc6\xe3\x4a\x97\x15\xb2\x4b\x0a\x89\xb6\x57\xcb\xb0\x3f\x50\x02\xa6\xd3\xc4\x0c\xd0\x58\x5c\x23\x14\x14\x07\x41\x6d\x2d\x45\xcb\xcc\x3a\x54\xc0\xf2\x4d\x4b\x0b\x63\xec\xe3\x5c\x2e\x7b\xb9\x50\x36\xad\xe0\x66\x2b\x39\x2a\x14\x59\x45\x6f\xfe\x50\x8f\xbf\x06\xb0\x04\x46\x06\xd3\x94\x1d\x11\x0a\xb2\x03\x2c\xad\x81\x2a\xa0\xe7\x64\x7a\x4e\x0a\xf8\xf8\x70\xc0\x77\x6d\x2e\x32\xe5\x1d\x20\xc3\xbb\x57\xeb\x8c\x32\xd5\xa6\x1e\x85\xbd\x95\xb6\xc4\x61\xfc\x5a\xfb\x8f\xcd\xa1\x2e\x37\x01\x3d\x0a\xb3\x3a\xca\xd4\x3a\x09\xfd\x28\x3d\x88\x0a\x63\x6e\xf4\xab\xae\x65\x54\x76\xdc\xb7\x77\xce\x13\xf7\x54\xbb\x55\x9a\xdd\x83\xd8\x77\x65\xec\x1a\xdc\x38\x08\xde\x44\x35\xa5\xa8\x4e\x6f\x68\xa1\xbf\xc4\x3c\xb0\x37\x95\xe1\x1c\x51\x53\xf7\x52\xaf\xb5\xd4\xc7\x07\xf4\x34\x1d\x94\x4d\x0c\xf9\xbf\x44\xed\x09\xab\x6b\xe5\x5e\x35\x73\x1f\xfd\x5a\xcb\x56\xc2\x59\xd2\x99\x70\xd0\x57\x48\x76\x6a\x3f\x67\xc5\x67\xa9\x46\xb2\xbf\x0a\x0e\x87\x19\x64\x6f\xc6\x41\x2e\xb7\xc9\xc7\x67\x55\xbf\x98\x3f\xbc\x3f\x7c\xf4\x4c\x5f\x11\xe1\xf8\x58\xe9\x59\x81\xf2\x66\x3a\x72\x42\x14\x3b\xe2\x7d\x23\x66\x5d\x17\xd9\xf4\x0b\xe2\x4f\x52\x77\xa9\x15\x26\x07\x39\xa4\xd0\x7f\x4b\xcf\xea\xe4\xa3\xd2\xf5\x12\x87\x56\xe5\x0b\x0f\xa5\xa9\x39\xb2\xf8\x2d\xf3\xae\x1b\x70\xa1\xd5\x61\x13\xfe\x0e\x6c\x33\xf8\x60\x33\xbc\x32\x4b\x5b\x91\x03\x62\xcb\xc9\xf3\x18\x57\x6f\x99\x12\x26\x99\x0b\x5c\xe9\x6b\x78\x8b\x3a\xae\xcf\x03\x8c\xee\x60\xfe\x94\x25\xf7\xd0\x22\x79\x59\x73\x99\x92\x57\xcf\xf1\xb8\x1e\x38\xf7\x2e\xa6\x88\x16\x8a\x49\xb5\x35\x8c\x0e\x30\xae\x47\x5b\xd5\xc2\x17\xae\xa0\x96\x8b\x16\x70\x0a\xb5\xbc\xd9\x68\xf4\x7c\x24\x92\x29\x31\xb3\xf8\x40\x81\x99\x66\x14\xc5\x1b\x0d\xf3\x78\x2e\xe7\x33\x42\x64\x4b\x9b\xdd\x62\x6a\xb7\x37\x73\x0e\xfd\xd8\x3f\xa6\xcd\xb6\xee\xd6\x37\xfe\x2d\x09\x73\xe6\xae\xcf\xb3\x8d\x92\xef\x3c\xa6\x59\x42\x65\xe3\xf7\x40\xcf\x18\xca\x53\xc7\xc1\x85\x3e\xeb\x27\x47\x2c\x7e\x4e\x3a\xb7\x1a\xfd\xc6\x36\x9c\xeb\x0e\xad\x7d\x07\x42\xd2\xb7\xfe\x4f\x13\xe7\xa7\x5d\xf1\x1e\xf8\x2d\x7e\x6f\xf7\x6b\x52\x78\x92\xe1\xb7\xb3\x4f\xe2\x2f\x82\x4f\xe3\xcf\x5d\xd8\xdb\x8f\x57\x0d\xff\x26\xac\xa1\x63\x78\x88\xa4\xc7\x52\x41\x5a\x68\x27\x20\xae\xdd\x69\xa2\xfd\x15\x09\x02\xba\xcc\xce\x61\xdb\x31\x2a\x37\x7c\x96\x58\x63\x02\xda\x4d\xfa\xfa\xee\x0a\x6c\x4d\x71\x7c\xc0\x67\xfa\x94\x40\xb4\xed\x12\xb9\x48\xda\x99\xd6\x88\xf3\xf2\x61\x1d\xd1\x2f\x59\xf3\x09\x82\xad\xdc\xe6\x62\x40\x59\x9f\xaf\x63\x4e\x21\x83\xf1\x4a\x35\x29\x92\xae\xf8\xe1\x20\x2d\xfa\xd7\x28\xd0\xec\x61\xee\x99\xc5\xcf\xa1\xb6\xe0\xb0\x6d\x77\x74\xa8\xbf\x11\x6e\xcd\xe6\xdc\xfc\xec\xed\x94\x79\x9d\x3f\xf9\x60\xc2\x62\xf1\xfa\xdc\x00\xc0\x3b\xec\xf9\x86\x3c\x7d\x30\xaf\x94\x9f\xb8\xd8\x1a\x97\x2e\xa4\xb4\xa4\x5d\xa8\x82\xdc\xf3\x61\xfe\x64\x11\x88\xfc\x0e\x05\x7e\xf0\x78\x2a\xfa\xf9\x7a\x1d\x88\x7a\x8f\xf0\x59\xbb\x67\x75\x4f\x40\x10\x77\xad\x76\x41\x59\x9f\xb5\x39\xab\x39\x10\xd5\xee\x92\x7a\x6b\x45\xb7\xb8\xbd\xb8\xac\xb1\x75\xe9\x21\xd4\xf1\x9e\x15\x0d\x1c\xe2\xb0\xd2\xd6\xc1\x6d\xb6\xe5\x18\x57\x3c\xc9\x3b\x5d\x0c\xad\xe7\x3f\x23\x1a\x38\xcc\x61\xef\x18\x03\xc7\x59\x96\xa3\x1c\xd1\x41\xde\xa9\xe2\xb0\xef\xa1\x60\x7e\x1f\x2f\x62\xd1\x5a\xf3\xac\x89\x0e\x6a\x0e\x70\x0d\xb4\xb3\x97\x1b\x31\x6b\xad\x39\x80\x59\xc7\x9b\x33\xbf\x17\xc4\x6c\x59\x44\x81\x0b\x3f\x9d\x69\x5d\x68\xb3\x7e\x7a\xd8\x3a\x18\x47\x5c\xeb\xc3\x5a\x4d\x5b\x53\xc2\xa7\xd8\xb2\xb0\x6c\x5e\x1c\xbf\x16\x0f\x8c\x8d\xd6\xd5\x5b\x0f\xa5\xe3\xd2\x72\xd7\xfc\x6c\x57\x50\x0b\x0f\x16\x5a\x8c\x1d\xa0\x6e\xa3\x90\x19\x3f\xad\xdf\x09\xa7\x20\xd1\xf3\xe0\x3c\xcd\xfa\x93\x25\xeb\x32\x31\x7d\xc3\x18\xea\xcd\xd4\x4b\xde\x38\x5b\xe8\xe2\xf6\x68\x34\xdc\xbe\x48\xc5\x11\x2e\x6f\xe4\x74\xe0\xeb\x89\xf0\x1b\x28\x52\x51\x59\x2e\x80\xc3\xe6\x82\x5c\x6b\x89\x88\xa9\x39\x11\xa2\xed\x66\x33\xdc\x8c\x1e\xb5\x9a\xd1\x57\x51\x39\xce\xa5\x17\x8a\xd7\x42\x8a\xaa\x36\xb8\xbf\xb2\xe2\x21\x26\x50\x3c\x6a\x83\xc6\x95\x64\x80\xe3\x80\x3b\x93\xee\x3d\xa1\xe7\x1f\x65\x89\x5d\xfc\x1e\xad\x86\xd7\x5f\x5b\x31\xc7\xe1\x6f\x44\x81\x61\x32\xbd\xd8\x5e\x64\xcd\x03\x4a\x71\x3b\xc1\x72\x1b\x46\x4c\xc6\x3d\x3e\xa5\xc7\x45\xeb\x84\x74\x03\xe3\x7a\x5a\xda\xae\x5e\xc1\x09\x31\x75\xe8\x05\x57\xf3\x21\xc5\x95\x72\xff\x68\xb2\xb4\x8c\x3d\x4f\x6d\xf1\x9f\x92\x28\xeb\xc0\x49\xbb\xae\xcc\xcf\xa5\x56\x1e\x66\x0e\x14\x58\xde\x21\x36\xf8\x09\x7d\x1b\xd1\x57\xe6\x57\x38\x7e\x6d\x7a\x4f\x1b\x4f\x43\x8e\x8d\x26\x0b\xd9\x57\x0b\x5a\x87\x88\x0e\xef\x3e\x47\xc1\x11\xea\x0d\x19\x34\xce\x9e\x3e\xba\x97\xc2\x76\x8d\xea\x0a\x76\xb1\x36\x0c\x96\xb4\xe3\xac\xb2\xc7\xf9\x9a\x52\x87\x7c\x2b\x20\x80\xc7\x85\x01\x62\x53\xda\x74\x36\xd4\x94\x36\xe5\x5b\x09\xff\x06\xa0\x82\x58\xea\x60\x36\x17\xcc\x12\xfb\x32\x59\x22\x01\x2b\xaf\x58\x5d\x14\x23\x9b\x97\x1b\x88\xc2\xee\x7a\xe7\x02\x9b\xf7\x5d\x86\xc7\x10\x46\x5f\xc4\xab\xa8\x85\x44\x8e\xe2\x78\x81\x92\x43\x08\xaf\x6d\x42\x38\x31\xbc\xd1\x5f\x40\x76\x1c\x3d\xba\x31\x85\xa0\x7e\x6a\x91\x2b\xdb\x7c\x6f\x8e\x1f\xa3\xae\xab\xf4\x24\xd8\x36\x5c\x13\xc0\x73\xda\x73\x3a\x50\xb7\x3f\xcd\xb6\xc4\xd2\xd4\x24\xd4\x54\xe1\xbb\x4d\x8b\xf3\x53\x39\xf7\x03\x48\x5d\x15\x13\x68\x58\x63\xa8\x83\x18\xda\x38\xbb\xc0\xcd\xe8\xd6\xa8\x19\xbd\x9e\x8a\x71\x2e\xed\x3f\x73\xcf\xa3\x47\x60\x6f\x88\x33\x5d\xe4\x0a\xfa\x86\xa9\x07\x7e\x2c\x74\xc7\xb6\x15\xe9\xfd\x88\x88\x56\x90\xa9\xc4\x8e\x5b\x63\xb1\x25\xe8\x11\x34\x8c\x29\x16\x9f\xfc\x73\xa1\x65\x9a\x9c\x37\xc8\x2e\x77\x53\xbb\xd5\x6a\x6a\x6f\x79\xc5\x20\xd7\xb6\xcd\x64\x45\xb0\x05\x05\xae\x45\x54\xd9\x29\xb3\x51\x96\xb4\x4f\xf3\x5f\xc2\x66\xfc\xc3\xc8\x87\xcf\x47\x20\x5d\x37\xcc\xe7\x87\xb5\xc3\x2b\xe0\x4a\x44\x34\x82\xaa\x2e\x58\x35\x42\x59\x85\xe1\xb5\xb0\x58\x4c\x56\xff\x46\x07\x59\x71\x1b\x65\xc0\xe8\x88\x52\x41\x53\x9b\x16\xad\x41\xab\xdb\x74\x46\x28\x4a\x35\x3a\x28\x03\xb6\x13\xe4\xb9\x0f\x26\xb7\x38\xc4\x95\xc2\x21\xf7\xf7\x5d\xbc\x10\xa7\xc3\x21\x19\x57\xb4\xc9\xd3\xd5\x2b\x92\xff\x23\xc6\x4c\xe5\x4d\xf3\xb4\x6b\x31\x51\x13\xd4\x14\x29\xa7\x5a\xff\x7f\x8d\xe7\x96\x04\x78\x52\x55\xc0\xfd\xcb\x85\x97\xc1\x8d\x04\x64\x5c\xa9\x6f\x1f\x14\xd4\xce\x05\x0f\x67\xf2\x8f\xb0\x44\x6e\x5e\x53\x7f\x08\xf2\xfa\x6a\x2a\x8f\x70\xf8\x6f\x44\x5e\x9c\x78\x9a\x09\x1a\x30\xc0\x23\x99\xad\xd8\x5a\x04\xe6\x29\x4b\xb1\x79\x10\x6c\xc5\x88\x05\x99\x76\xe5\xd1\x50\x1b\xfb\x16\xa7\x6f\x6f\x1a\xcd\xda\x23\x2e\x8f\xb2\x8e\x19\x72\xcf\x1b\x1c\x82\x64\xd5\x87\x81\x21\x30\x8f\x16\xce\x99\x61\x09\xf3\xe7\x9c\x3f\x60\x43\x67\x03\x8b\x60\x1e\x93\xf6\xbe\x1f\x26\xc7\xef\x3d\x9f\x4c\x63\x1d\xcd\xaf\xec\x91\x59\x5d\x7b\xb5\x9c\x09\xf6\xad\xb6\x12\xcd\xb2\x20\x25\xeb\x46\x42\xd5\x3b\x01\x90\x94\xac\x2e\x72\x15\xc8\x67\x16\xe7\x9b\x4d\x1b\x56\xd1\x61\xed\xe5\x9e\x38\x57\xe9\x19\xd3\x31\x46\x99\xab\x7a\xc2\xa9\x77\x2a\xbb\x2e\x8f\x07\x11\x21\xf3\x3a\x43\x35\x9e\x51\xa0\x6e\x13\x58\x7d\xb4\xe1\xf4\x55\x92\x8d\x56\x80\x29\x61\x82\x02\x8a\x37\xab\x3b\x35\xa0\x37\x3a\xf7\xb9\x53\x5b\xe0\xd6\xd8\xc8\xe9\x73\xf0\x25\xdd\x2c\xdc\xb1\xcb\x2b\x91\x3e\xf6\x42\xba\x1f\xf7\x94\x5f\xab\x1f\xe8\xd7\xad\xf4\xbd\xef\x8a\x13\x9f\x70\x55\x88\x9f\xff\xfb\x01\xd2\xeb\x74\x60\x31\x3d\x92\xc5\xe9\x1f\x10\x9e\x8c\x7d\xc1\x8b\xdf\x3f\x17\xf1\xf8\xe8\x97\xe9\xcd\x6b\xfc\x43\x73\xac\xe9\x21\x7b\xe4\xf5\xb3\x0c\xc5\xe7\xe2\x7d\x11\xa8\x1b\x48\x22\x7e\x09\x99\x53\x55\x7a\xbf\xd0\x6b\x0e\x99\x15\x79\x8a\xbb\x4f\xda\x0e\x65\x47\x8a\xef\x53\x76\x1e\x87\x99\x1c\x27\xea\x62\x30\x74\x82\x45\xdf\x4d\xa2\x6e\x20\x1d\xf9\x3a\x72\x9c\x02\x8c\x93\x58\x6e\xe6\xbe\xc2\x1a\x77\x4a\xb4\xb7\xde\x00\xed\x19\xf0\xae\x18\x38\xe0\x65\x61\x7c\xfd\x3b\x65\x97\x2b\xbb\x04\xb5\x95\xbf\xfe\xfc\xaa\x71\xc9\xe7\x02\xff\xc9\x3c\x66\x27\x43\x97\xe8\xf4\xb1\x4e\xfa\x13\xa2\x7e\x15\xd3\x5c\x45\xde\xcf\x7f\x09\xc2\x67\x90\xad\xbb\xe3\x25\xff\xb0\xe9\x8d\xed\x33\xc4\x44\xca\x4b\xca\xbd\x46\xd0\xe7\x29\xcc\xa4\x35\x7c\xa9\x48\xf8\xd4\xb1\x6b\x63\xcb\x81\xd9\x5f\x16\xe0\xa9\xbe\x4c\x29\xc3\x85\xa2\x0b\xf5\xd5\x84\x44\xfd\x98\x50\xb4\xf6\xc0\x34\x8b\xe4\x58\xeb\x8a\x4b\x5f\xad\x26\xda\xde\x6a\x47\xe5\xe1\xc3\x53\x7a\xf1\xa8\xb8\x25\xba\xa5\x6a\xdf\x81\x90\x49\x80\x61\x30\x2b\x32\xee\x19\xce\x4c\x2d\x8d\x23\xf4\xf5\x62\x92\xd3\xb7\x0f\x10\xab\xee\xf8\xdd\x15\xd4\xca\x57\xb2\x87\x5f\x7e\x15\xbb\xdb\x90\xf4\xcf\xd8\x92\xc7\x31\x33\xc0\xfc\x48\x55\x78\xa9\x53\xab\x88\xe2\x34\x65\xf3\xe1\xa2\xab\xdc\x96\xb0\x66\xc6\x1b\x85\xf5\x2a\xcc\x95\x8a\xf1\x16\x9f\x83\x2b\x1d\xa2\xb4\xe5\xe1\xb2\x55\x81\x90\x67\x52\xc9\x38\xa4\x6d\x2e\x95\xf5\xda\xbe\x5f\xb1\x50\x3a\x33\x23\xb4\x15\xcb\xf4\x39\x65\x3d\x45\x7a\x06\x18\x25\x1a\x54\xe4\xa0\x90\xf8\x78\x23\x0e\xa0\x0f\x63\x3e\x38\x67\xf2\x78\x09\x5d\xad\x2a\x3f\xa0\x6e\xdf\x58\x3e\xa0\x73\xdf\xf4\xbb\x77\x8e\x94\xb6\x10\xc8\x5c\x26\x29\xcc\x50\x5c\xab\xaf\xed\x98\xee\x7a\x6c\xed\xf6\x98\xa0\xae\x0e\xeb\x09\x0a\x93\x65\x52\xcb\x12\xaf\xd1\xa5\xeb\x7b\xbf\x9d\x09\x7a\xdd\xc8\x82\xaa\x5c\x80\xea\x25\x50\x27\x33\x7c\x1a\x33\x21\x7f\x00\x72\xd1\xfe\x05\xc5\xef\x15\x53\x3c\x53\x91\x69\x9b\x7b\x4d\x5f\xce\x50\xcf\x7c\xaf\xc1\xcb\x91\x8c\x61\x59\x3c\x59\x7e\x37\x60\x5f\xca\xd5\x57\x52\x7b\x93\xf1\x7e\x40\x47\x8b\xce\x50\xd9\xc0\xdd\x88\xe5\xc2\xf5\x1c\xbd\x87\xde\x9d\x8c\xf5\x6d\xc2\xd2\xba\x1f\x09\x0d\x1c\x81\xaa\xa3\x64\xc4\xbd\xd5\xca\x93\x9c\x6b\x10\x34\x21\x6a\x57\x89\xf0\x1d\xe0\xd8\x76\x97\x43\x1e\xa7\x76\x1d\x23\xf7\x1c\x3b\xee\x7d\x7c\x98\xe2\x2c\xc9\x0d\xe7\x85\xaf\x15\xfb\x0d\xb7\x57\x65\xa2\x0a\xf9\xd3\x76\xa3\x79\x45\x3b\xdc\x37\x9e\xd9\x3e\xce\x54\xef\x5c\x44\x9d\x67\xf6\xfc\x56\xee\xbd\x9e\xd1\xd1\x92\xaa\x45\xea\xd4\xaa\x31\xec\xb6\xfc\x33\xb9\xc7\xdd\xe3\x7f\x5d\x2a\xa2\x6d\x56\x1b\xc6\x08\x67\xe4\xb6\xe5\x3b\xe6\x8b\x4b\x56\x52\xed\x3e\xef\x92\x65\xf2\x4d\x66\xae\x68\x4b\xfb\x98\x92\xbf\x61\x90\xe4\xce\xc6\x24\xbb\x1d\x58\x36\xc7\xe5\x7a\x37\xff\x62\xba\x32\x90\x4e\xdc\x2a\xcb\xb7\xbc\x86\x40\x5c\x74\x22\x5d\x69\x0d\xbd\x0f\x95\xcb\xd4\x4b\x18\xf7\xbb\xce\xa4\x95\x6b\x00\x3e\xb1\x03\xfb\x4a\xe6\x68\x17\xd9\xe1\xec\xb1\x1b\x0e\xe1\x6e\x28\x1d\x3a\x52\xcb\x1c\xe9\x9e\xa0\x50\xf5\xb3\xb8\x70\xa3\x5b\x82\xdb\xd6\xcb\xea\x32\x9a\xe3\xdf\x72\x2b\xa9\xaf\x65\xd3\xa0\x4b\x05\x57\x49\xa7\x4b\x3a\xbf\xa9\x32\x24\x07\x13\x5d\x19\x0f\xa0\xd3\xb8\xc0\x6c\x45\xb6\x84\x56\x7a\x0b\x6c\x07\x81\xe4\xe7\x60\x1a\x38\xd3\x59\x83\xfc\x5a\xbd\x12\x88\x55\xad\x8f\x6f\x03\x49\x47\xd7\xe7\xb6\xd3\x82\xbf\xc5\x8d\xef\x7f\xa7\x70\xfc\xb5\xec\xb6\x32\x56\x88\x33\xcb\xdb\xa5\x05\x8d\xe5\x15\xb4\x33\x54\x86\xb8\x1a\x8d\x60\x90\x29\x46\xaf\x6e\x63\xd8\x3c\xf4\x31\xda\x2e\x2f\x7c\x96\x25\x18\x29\xcb\x99\x33\x02\xee\xa6\xf6\x0f\xf9\xb8\xa8\x4c\x8a\x84\xdc\xff\xdd\xe6\xba\xaf\xc6\x93\x4a\x91\x28\xca\xbf\x0b\xc8\x0b\x06\x0c\xa8\xf5\xf5\x16\x7f\x6d\x1b\xd1\xc7\xb0\x10\x08\x65\xe3\x31\x90\x96\xd2\x58\x4f\x63\x13\xf6\xbb\x5b\xef\x40\x2e\x86\x0c\xfa\xb3\x92\xfd\xee\x04\x82\x7f\x7f\x8d\x5b\x05\xf7\xcf\xfd\x47\xc2\x3f\xc8\x4a\xef\x65\xbb\x83\xac\x19\x5e\xbd\x8b\xb2\x2b\x9b\xde\x44\x83\x0c\xad\x19\xe3\x1e\x27\x62\x80\x9a\x68\x26\x37\x65\x17\xad\xde\xcf\x9a\xa1\x15\xf6\xb2\xf5\x73\x30\x60\xae\xed\xec\x0d\x88\xeb\xf8\xf0\xe4\x43\xb9\xcc\xb7\xcd\xe9\x88\x4f\xca\x93\xd6\x05\x7a\x3b\x2d\xdd\x30\xea\xe1\x85\xa8\x00\x5d\x1b\xd1\xdf\x8e\x11\xcb\x8e\xbc\x10\x7c\xac\xb7\xa1\x89\x5b\x41\xa8\x66\x34\x12\xe1\x7b\x2d\xe4\xb5\xac\xd6\xfa\xb4\xfe\x03\xa0\xcc\x6d\x60\x75\xc0\x2c\x7a\xe8\xeb\x7b\xe4\xab\x79\x7b\x1a\x72\xfd\x23\xa0\x0c\x31\xb4\x3a\x64\x19\xc3\xdf\xfc\xb0\x64\xae\x2d\x3b\xd5\x0c\x36\x57\x6c\x3f\x51\x5a\xbf\x02\x3c\xa9\xfb\x5d\x65\xff\x45\xdb\xdd\xd3\x3c\xd9\xeb\x52\xb8\x7e\xa8\x96\x31\x10\xa5\x43\xf6\x69\x9c\x8d\x4c\xb5\xbe\xdd\x60\x1e\x26\x1d\xe3\xfc\xc9\x65\x5e\x62\xb5\xef\xc9\xa4\x37\xd9\xff\xdb\xb4\xd6\xc2\x49\x1d\xe2\xf1\xa7\xca\xd6\x0b\x9f\x61\xf8\x6b\xc6\xae\xd1\x64\x95\x0b\x52\x49\xbd\x7c\x92\xbc\xca\x46\xba\x94\x80\x07\xcf\x35\x34\xc2\x48\x0c\x33\x81\xf7\x57\xa3\x53\x50\x65\x23\x6c\xac\xb1\x7b\xee\x63\x56\xb0\xf5\xd8\x0b\x27\xd1\x47\xbf\x51\x93\x8e\x61\xeb\x4b\x2f\xde\x29\x77\xbf\x88\x6f\xc4\x5e\x3c\x93\xbe\xf4\x5b\x6d\xcf\xa7\xd6\xa1\x2f\xf8\x5c\x4a\xb4\x03\x67\x51\xa8\xaf\x0b\x80\xc6\x45\xd4\x27\x07\xb6\x08\x8f\x72\x0b\x32\x4c\x05\x6a\x8c\x2a\xfc\xcb\x20\xc5\x86\x1a\x63\xa5\xc3\x36\xb1\xbf\x8a\x08\xf2\x12\x62\x8c\xdd\xde\x14\xda\xa0\xb9\x90\xf7\x45\xc3\x26\x6a\xbf\x44\x6e\x54\x66\x90\xc6\xa1\x19\x4a\x51\xdb\x81\xdb\x0d\xd6\x45\xf0\x53\xbf\x42\x38\x60\x2c\x60\xb1\x30\x63\x81\x22\x98\xdc\x92\x75\xa6\x01\x5d\x50\xa0\x6c\x3c\x94\xf5\x91\x9d\x5f\x11\x6c\x0d\x87\xad\xa1\x56\x25\x7f\x5d\xc4\x9f\xf7\xc4\x81\xb1\xe1\xce\x64\x45\x25\xaf\x4a\xe7\xe2\x5f\x08\xfb\x81\x1f\x50\xa2\x2b\x0d\x39\x46\x73\xe3\x4a\x56\x00\x2f\x7f\xb4\x2f\x74\x48\xba\x67\xb4\x9e\x01\x43\x98\xd5\x77\x88\xc8\x64\xba\x17\xf5\x86\x56\xf2\xa6\xfe\x8f\x46\xd2\xa4\x57\xea\xf2\xfc\x88\x7f\xc3\xe2\xfc\xb9\xba\x5c\x3f\xe2\x2b\xfa\xeb\x6d\x43\x43\xd0\xa3\xd2\x3c\x88\x77\x28\x44\x0f\x4f\xec\x40\xcf\x43\x58\xfc\xcb\xa1\x8f\x65\x56\x8a\x79\x1c\x0e\xd2\xf3\xd3\x9a\xff\x17\x90\x5c\x3c\x1a\x7e\xd1\x3f\x7a\x83\x1b\x64\x0c\x97\xa2\x7a\xe2\x5f\x01\xa5\xbf\xaf\xb2\x2f\xfd\x53\xbb\x7d\x66\xa7\x63\xff\x73\x1a\x1f\xf2\x27\x4a\xaa\x1a\xda\x5b\xbc\xf1\x79\xeb\xd5\xad\x8b\xe1\x8e\xbc\x8f\x35\x67\xa6\x67\x39\x20\x1a\x9b\x79\xea\x92\x1c\x5a\xcb\x4b\x89\xdb\x70\x2c\x92\xf7\x70\xef\xb9\x8c\x57\x39\x13\x87\x73\x76\xbb\xe2\x12\x6e\xd5\xf4\x5c\x27\xca\x13\x46\x72\x2b\x85\x50\x6d\xd1\x2c\x03\x72\xed\xd6\xc7\x6f\x3d\x77\x2d\x92\xe4\x86\x40\xf0\xd6\x29\xd0\xe5\x85\xe4\xac\xb2\xb7\x3b\xfb\x7a\x2b\x8a\x7a\x90\xad\x3a\x24\x12\x65\x30\x67\xb0\xd6\x3e\xb1\xc4\x54\xe0\x13\x1a\xca\x3a\x3c\xa6\x6e\x92\xfa\xb3\xd7\x4a\x6e\x2f\xa8\xda\xf1\xeb\xd9\x27\x72\x37\x20\x5f\xe1\x47\xf9\xbf\x8e\x73\x22\x87\x79\xa5\xda\x75\x0a\x21\xe3\x90\x68\xdf\xb1\x44\xfc\x61\x71\x6e\x42\xb5\xe0\x8f\xf6\x77\x22\x2e\x8f\x3d\x67\xdc\xdd\xa6\x6c\xdf\x62\xec\x8e\x7d\x0d\xd4\xbb\x19\x3f\x36\x52\x3a\x0a\xa1\xd4\x90\x30\xff\xff\xdd\x01\x6e\xe3\x8f\x71\x17\xcb\xdf\x7d\x4e\x3f\x73\xa7\x0b\x05\xaf\xe3\x27\xff\xff\xda\xd0\x1f\x37\xbf\xd1\x40\xca\x04\x7f\x0c\xb2\xb9\x05\x97\xcf\xfc\x77\xde\x0e\x73\xd9\xa4\x5b\xde\x1d\x7f\xb7\x3e\xde\xe1\xfe\x0f\xff\x9c\xb4\x9a\x5b\xbb\xd7\x28\x6d\x4a\xf4\x09\xce\x04\x1a\x12\x16\xf3\x24\x73\xc2\x47\x6d\x31\x21\x37\x79\x7d\x53\x69\xbc\x84\x11\x54\x96\x98\x51\x97\x31\x4b\x03\xbc\x6e\x73\x89\xa5\x3e\x31\x98\x30\x13\x76\x94\xe4\x3e\xf8\xa6\x0e\x6c\x45\xf0\x1b\x1d\xfc\xec\x63\x80\xa4\x4f\x76\xad\xc2\xc0\x72\x5f\x49\x25\xd7\xad\xd3\x07\x04\x6f\x84\x0c\xb7\x65\xc6\x33\x4c\x99\x3e\x3e\x4a\xe3\xde\x2e\x33\x3b\x29\xfc\x94\x2f\xc0\xeb\x5f\xc9\xb2\x81\x29\x60\x22\xa8\x62\x2b\x6a\x06\xf3\xee\xaf\xf2\x42\x69\xeb\x9d\x48\xcb\x15\xf8\xeb\x4e\x89\x5a\xc6\xbb\xd4\x0f\xfa\x18\x26\xd4\x12\x21\x06\x20\xb4\x64\x1c\xa5\x39\x45\x88\xd7\xb2\xda\xe3\x99\xba\xf4\xa7\x3f\xef\xaf\xf0\xff\xe7\x03\x57\x21\xe5\x56\x4e\x67\x3c\x4b\xa3\x89\xeb\xcd\x63\x3f\xf6\xe2\x62\xd4\x7e\xdd\x0f\x78\x17\xd5\xb8\x2d\xf0\x1c\x30\xac\xb9\x85\xc3\x72\x41\xde\x13\x45\x19\x64\xf1\x1b\x51\xec\xf9\x0e\x8e\xf8\x10\xce\xd8\x51\x03\x71\x34\xd7\xb7\x15\xa0\x96\x0a\x71\x05\x53\xed\x1e\xe9\xcd\xb7\x2b\x5a\x97\x09\x4f\x1b\x51\x21\xf6\x65\x66\xeb\x48\x1a\x69\x99\xf4\xc0\x2f\x3f\x3b\x0e\x4a\x2b\xc9\x4b\x59\x8a\x56\x50\xc3\xbc\xcb\xce\x0e\x7f\xd2\x7a\x98\x49\x39\x46\x92\x75\x28\xf5\xfa\x4e\x95\xa5\x87\x72\x9a\x55\xd2\x0a\x3c\x4e\x4c\x37\x65\x05\xbe\x3f\x7a\x84\x74\xce\x10\x4b\xe2\x2d\x01\xde\x72\x71\xaa\x18\x63\x2a\xc6\x62\x53\xe0\xa9\xa9\x7c\x11\x27\x2b\x92\xb7\x5d\x6b\x0e\x69\x81\xbc\xd3\x4e\xb5\x1d\x47\xd2\xc0\xb0\xcb\x92\x2f\x48\xb5\x7e\xbc\x30\xa2\x4d\xd0\xbe\x36\xbb\xa4\x28\x27\x5b\xd5\xec\xab\xc3\x69\xea\x52\xe4\xf8\xd9\xf1\xd6\xf3\x08\xdb\x55\x21\x3b\xf1\x9e\xc6\x48\xe3\xf0\xd8\x58\x3a\x1f\xa1\xf9\x22\xae\xc5\xd9\xa6\xe8\x0c\xa5\xf8\x94\xc0\x4b\x6b\x2f\xd6\xad\x9d\x90\xbb\x1e\x12\x7e\x12\xda\xf8\xbc\xab\xed\x38\x66\xaf\x35\x0b\x6d\xca\x93\x2b\xab\x31\x03\xfa\x23\x28\x7b\x44\xd7\xfc\x34\xfe\x4d\xdd\xdc\x0a\x95\xfb\xe1\x0e\x05\x76\xef\xf0\x01\x86\xe7\x72\x76\x75\x1f\xe2\x66\x1a\x52\xd1\x3b\x8d\x5e\xc6\x9e\x6f\x31\x19\xc5\x91\xec\xbc\x5d\xf4\xef\xa5\xd9\x59\x7b\xc3\x85\x4e\x09\x34\xb4\xff\xc7\xdf\xda\xfe\xb5\x8d\x5d\xb5\xd4\x4d\x03\x3b\x4a\x48\x4b\xce\xe0\xcd\xc9\x31\xc0\x10\xd5\xb0\xb2\x83\x67\x3e\xdd\xa6\x98\x56\x90\x1a\x97\x35\xe2\xe1\xb2\xb5\x92\xda\x73\x89\x19\xf8\xb1\x54\x41\x9d\x08\x09\x4f\xc8\xff\x4d\xeb\xeb\x06\x99\x6e\x7c\x73\x6e\x72\xc4\xad\x70\x32\x5d\x61\xa1\x36\x4d\xfd\xce\x31\xba\x20\x24\x32\xb8\xe9\x0e\xda\x99\xa8\xb2\x1d\x47\x58\x55\x33\x92\xab\x35\x2a\xe9\x4d\x65\xef\xd5\xce\xd7\xab\x61\x52\xb9\x08\xaa\x2b\x9c\x61\x00\xc1\xa0\x05\x46\xc9\x84\x80\xfd\xcd\x54\xb3\x9e\xb9\x8a\x81\x45\xf9\x53\xdf\x13\x02\xca\xf6\x01\xac\x30\x2a\x3c\xc2\x8b\x25\xef\xa1\x35\x4e\x04\x78\xe9\xac\x99\xf7\xd4\x18\x81\x26\xaf\x82\x63\x60\x47\x9d\x70\x27\x5a\xfd\x32\x5c\x63\x53\x53\xf3\xea\xa7\x64\xe8\xdf\x75\x79\x3f\xf6\xbd\x89\xc9\x02\x74\xb2\xe3\xce\x00\x45\x82\xcc\x57\x3f\x76\xfa\x95\xc4\x43\x9f\xa0\x76\x7f\xdc\x5d\xcb\x25\x07\x0c\xe7\xd2\xbb\x18\x86\x62\x75\x00\xb0\x69\x24\x60\x54\xf5\x15\xc4\x1f\x7a\x52\x8b\x89\xc7\xfd\xe6\xea\xe8\x0b\xce\x81\xf3\xf8\x2f\x0f\xfc\xea\xa7\x7d\xdf\x5b\x79\x96\x57\x89\x1a\x3c\xe3\x68\x5a\x96\x7f\xd2\x7b\x1b\xc7\x0e\x12\xae\xe4\xb7\x8f\x67\x70\x78\xee\xd4\xb4\xbc\xb7\xd4\x5a\xdd\xa6\xf3\x54\x78\x6b\x76\xd2\x49\x4c\x6e\xaf\xc9\x3e\x4e\x5d\x07\x82\x7d\x15\x64\xcc\x4c\x7a\x79\xb7\x1c\xe2\x9e\x75\xec\x9f\x10\x02\x1d\x53\x7f\x2a\x33\x58\x4e\x56\xc4\x64\xcb\x45\x22\xcd\xd2\x68\xc5\xba\xb0\xd4\xb5\xca\x56\x89\x49\x27\x9a\x41\x91\x5f\x50\xab\xab\xa3\x28\xd4\x2d\x24\xa3\x9a\x1c\x92\x1c\x3f\xac\x3e\x34\xa8\x4d\x08\x7f\x3c\x77\x6e\x32\x5c\xb7\xea\xbf\x16\xef\x5f\x44\x57\xc5\x24\xc7\x0a\x85\x4f\x70\x03\x9e\x37\xe5\x9e\x88\x6d\x0b\x7d\x83\x3a\x44\x35\xa7\xd0\xb4\x10\x49\xb9\xa0\x64\xe9\x58\xff\x21\xb5\xb6\xc4\xc8\x98\x2c\x6f\x82\x0a\x7b\x2d\x5f\x2b\x37\x81\x86\x0e\xe5\x69\x3f\x1f\x2f\xf5\xa8\x64\x7c\x98\x1c\x62\x6a\xa5\x6b\x0d\xd8\x88\x50\x84\xad\xd7\x5a\x5b\x59\x26\xd6\xdb\x9c\x41\x90\xdf\xc9\x3e\x05\xc6\x6e\xf7\x04\x5f\x36\xa5\xe0\xc4\x43\xfe\xed\x91\x06\x86\xdf\xf2\xa3\x64\x77\xa2\xd4\x10\x06\xfa\x89\x2b\xe3\x56\x3e\x83\xf8\x02\x84\x9b\xa0\x14\xde\xe0\xd4\x0c\x4a\xd4\x7f\xd0\x58\xca\xf8\x06\x3a\xd3\x98\x1d\x11\x08\xb3\xeb\x99\x56\x03\x9b\x5f\x13\x56\x34\xe3\x5f\x48\x57\xb7\x92\xf4\x5c\x3b\x3e\xd1\x16\x7c\xbd\x4f\xd0\x6a\x88\x96\x9b\x56\x80\xa9\x4f\x9b\x06\x9c\x10\x41\xf1\xab\xae\x82\x1b\xa8\x82\x00\xf1\x55\xc8\xc1\x84\xce\xb0\xdb\x94\xbe\xb6\x54\xe8\x7c\x22\x66\xdc\x54\x0c\xa9\x75\xcd\x6a\xfd\x00\xfe\x42\xe1\xde\xb1\xbd\xa7\xc9\xc1\x7f\x46\x8a\x52\x3b\x88\x2a\xb9\x65\x25\xde\xf1\x6e\xd0\x83\xff\x9f\xe3\x44\xc9\x29\x3f\x57\x89\xf3\x03\x2c\x04\x26\x50\xc6\x27\xf2\xda\x3a\x3b\x86\xe2\x0b\xab\x45\xa0\x13\x27\xf9\x76\xa2\xbf\x70\x8a\x57\x56\x23\x5c\x28\x92\x85\x2e\x54\x84\x6c\xc4\x81\x54\x57\x46\xbd\xa4\xbe\xf0\xdd\xcd\x04\x97\x59\x34\x8a\x5a\x9f\x33\x03\xa1\xa2\x42\xf0\x57\x5d\x8b\x6e\xed\xe4\x93\x2f\xfe\xaf\x78\x57\xdc\x1d\x5e\xef\x28\x21\x7d\x6f\x82\xb6\xd7\x40\x13\xff\xe2\x09\x91\xc4\xc3\x52\xb0\x86\xf4\x46\x14\x00\xc9\xc2\x9c\x76\xcb\xba\xbd\x33\x8b\x72\x02\x42\x4a\xa8\xe0\x9e\xa5\x4a\xda\x85\xe0\x78\x62\x77\x95\x41\x6b\x06\xa0\x2d\x35\x06\x51\x57\x12\xc6\xc7\xeb\x25\x4e\xbd\xb9\x2d\xd8\xfb\xb5\x41\xfe\x9b\xa2\x69\x6a\xb9\x55\xd8\x65\x28\xf7\xc7\x2a\x70\x91\x02\xfb\x80\xc3\x28\x4c\xad\x9d\x3f\xb3\x3c\xd5\xda\x9e\xe0\xe9\xd7\x81\x71\x9c\x29\x6b\xde\x4e\x71\x87\xdb\x58\x0b\x2c\xd6\xc8\x3b\xcf\x34\x87\xbe\x4f\x49\xe1\xb9\xf2\x1a\x65\x7b\x93\xdd\xa2\x91\x9d\x2f\x14\x39\x2a\xb7\xe2\x18\x99\x63\x09\xc8\x00\x0c\xfb\x4b\xa5\x35\xee\x19\xd9\x3f\xe6\x68\xc7\xe7\x34\x4f\x1a\xe5\x0e\x93\xa5\xdd\xdf\x57\x84\x3a\x52\x58\xb4\x44\xa9\xb0\x8a\x3a\x8d\xe5\x81\xb8\x17\x2b\xd7\xb0\xe9\x40\x96\x85\x11\xc8\xd0\xbe\x2a\x74\xcd\x7c\x21\x91\x3b\x5b\x6c\xce\xb5\x35\x79\xc2\x28\xfc\xa5\x64\xee\xb0\x58\x6f\x5e\xde\x6b\x80\xc3\x73\x1e\x6e\xb6\xc7\x07\x82\x85\xd8\x39\x87\x48\xc4\x48\x5e\xb4\xfe\x72\x12\xae\x89\x80\xac\x53\x2e\xb2\xe4\xd3\xb6\x56\x5b\x11\x25\xa9\xc3\x80\x03\x08\xd9\xbd\x6a\x2b\xb8\x89\xca\x0c\x14\xde\xb8\x46\x8d\xa7\x82\x3d\x09\xed\x83\xfa\xe3\x9c\x90\x15\x94\x13\x66\xaf\xcb\xb2\x2d\x90\x59\xe2\x4d\x1b\x06\x8c\x10\x0e\xfa\x05\x57\xf6\xad\x7c\x16\xf1\x79\x08\x2f\xa1\x81\x7d\x97\xd2\x12\x57\x42\xdd\x09\x2a\xad\xfe\xa1\xd6\x9d\x88\x11\xd7\x2f\xb1\x87\x5a\xf3\xcb\x09\x89\x8b\x3c\xaf\x7f\x3b\xc7\xb7\x2c\x4b\xef\x48\x42\x5f\xd4\x5d\xf4\x1a\x4a\xbb\x7c\x3d\x15\x5e\xda\x5a\x80\x23\x86\x7e\xd5\x65\x50\x6d\xe5\x3a\xc2\xee\xe4\xaf\x70\x02\xdb\x6b\x9f\xd5\x5f\xce\x0d\xe8\xd3\x45\xe0\x58\xc0\x58\x31\xea\x0d\x73\x66\xe0\xb6\x67\xfe\x0d\x94\x42\xcc\x97\x39\xe5\x3e\xd8\x90\x61\xef\x48\x43\x09\xa0\xda\xfe\x05\x5b\xf6\xcd\x4c\x56\xd1\x93\x0d\xe3\x2e\xa9\x25\xaa\x54\x0c\x43\xfa\x9f\x34\xfe\x68\x96\xb3\x87\x55\xf7\xd9\xb4\xcf\x54\x78\x55\xda\xa7\xdd\xb7\x37\x1e\x65\xcb\x15\x2a\x86\x2a\xde\x85\x46\x4c\x7a\x50\xcd\x7d\xda\xf2\x41\xda\x2a\xc7\x88\x4b\xbb\x90\xdf\x72\xdc\xdc\xe6\x03\x09\x9a\x83\x7a\xdd\x90\x82\xc2\xdb\xd0\x82\x5b\xc7\x6c\x0b\xd2\x2a\x36\x33\xb6\x41\x4e\x18\xcf\x8f\x56\x1e\xe7\x27\xdc\x6a\xab\x05\x6a\xf9\x09\x05\xbc\xa4\xca\x0f\xd7\xcb\x2d\x2b\xf8\x09\x54\xc5\x50\x93\xfd\x30\x89\x36\xfc\x22\xbd\xeb\x10\x01\xb7\xac\x14\x7a\xd4\x96\x7b\x8e\xde\xd0\xb8\x5c\x92\x43\x9d\x62\xf6\x15\xe5\x3a\x7b\x60\x73\xac\x74\x16\x83\x04\xe2\x04\xb9\x72\x14\x4e\x28\x70\xe4\xd5\xcf\xaf\x4e\x74\x5d\x08\xb2\x31\x79\x5a\x4a\x95\x26\x31\xb7\x2e\x7f\x06\x42\x4b\x10\x60\x3a\x8e\x76\x13\x95\x5f\x0e\x40\xef\x17\xba\x2b\xe9\x4e\x59\xef\x14\x21\xcf\x80\xea\xf6\x2f\xf7\x30\x26\xf6\x71\x28\x3b\xcf\x2c\xe6\x6a\xc6\x35\xf5\x19\x8c\x0c\x63\x7d\x0b\xfe\xfb\x54\x0a\xdb\x98\xd7\x98\x90\x92\x90\x8d\x39\xef\x9a\x75\xf3\x25\x47\x52\x86\x75\x4b\x6e\x0a\xe4\xb8\xf4\x9c\x58\xba\x57\x98\xbd\x98\xf0\xa1\x6e\xff\x79\x7f\xc5\x82\xb9\xb1\xd8\xa1\xa4\x05\x11\x29\x2b\xe4\x51\x0f\x13\x73\xe1\x66\x8a\x45\x4b\x0b\xa5\x80\x12\xca\x89\x09\xf1\x2a\x8b\xd9\xf6\x28\x66\xa0\x8c\xb4\x5c\x0b\x0c\x75\x5d\x6c\xf0\xab\x71\x01\x52\x0b\xc6\xcb\xa9\xd1\x2e\xee\x2e\x3e\xcb\x95\xfb\x2e\x09\x5a\xc5\x19\x87\xbd\x60\x52\x20\xd3\x00\xd4\xe2\xa5\xb6\x5e\xa2\x05\x21\x79\x05\x42\x7c\x85\x41\xd9\x81\xb3\x3c\x33\x9f\x6d\x0c\xbb\x3a\xa7\x0d\xad\x6d\x7a\x4f\x5e\x38\x95\xa1\x62\x1c\xa2\x8e\xdf\xb1\x0a\x4e\x52\x1d\x00\x9a\x11\x8f\x32\xda\xa8\x29\xa4\xa8\x3a\x54\x47\x64\x20\xdb\x69\xda\x35\x2b\xbc\x2e\xc8\x5e\xc9\x61\xbb\x8f\x7a\x79\x3b\xbc\xfd\xd4\x11\x23\x44\xc1\xd0\xe4\x50\x35\xd8\x39\x8e\x43\x42\x9b\x93\xe0\xac\x5a\xab\x36\x51\x4f\xaa\xbb\xdc\xda\x05\xad\x89\x36\xd2\xe9\x0c\x34\xa0\x50\xc3\xd1\x15\x31\x99\xfa\x22\xa8\x40\x43\x15\x53\x0b\xd4\xb0\xae\x90\xc9\x0c\x99\x70\xa1\x9a\x9a\xe7\x60\x08\x8b\xc3\x32\x43\x05\x5d\x2a\x76\x91\xbf\xfb\xdc\xe9\x27\x96\x55\xd0\x65\x86\xe2\xb0\x90\x26\x2c\x8e\x48\x0d\x15\x34\xa9\xd8\x4d\x0a\x5d\xca\x57\x24\xab\xa4\xe5\x23\xc2\x8c\x0d\xcb\xbd\x04\xfb\x40\x36\x18\xd1\xd0\x61\x69\x6d\x85\x4e\x2a\xad\xa4\xcb\xf4\x55\x20\xec\x7e\x80\x25\xb3\x13\xdb\xf2\xfd\xdd\xf4\x45\x22\xec\xc2\xc1\x5e\x98\x5b\x6f\xff\x85\xe2\xc0\xe2\xd5\xfe\x3e\x37\x58\xdf\x81\x55\x18\x97\x5a\x7c\xa1\x3f\xac\xab\x01\x56\x64\x63\xb3\x21\xb7\x78\xf5\x60\x3d\xac\xb0\x77\x6d\xcf\x23\x9a\x6c\x19\x3e\xa1\x5f\xed\xad\xb2\xf5\x1e\x53\xc3\xdc\xcf\x9c\x44\x76\xd8\xfa\x3d\x6e\x00\xa2\x86\x0c\x78\x7f\xf0\x44\x9a\x82\xc9\x5c\xaf\x4a\x49\x8e\xb5\x6d\x9e\x1b\xd4\xae\x2d\x80\x77\xf4\x18\xaf\xc8\x97\xef\x91\x9d\xf7\x32\x03\x0a\x5f\x5c\xd9\x5a\xaf\x88\x69\xb4\x28\x69\x35\x0e\xd2\xe1\xda\x2c\xff\x3d\xf6\xa7\x34\xd3\x0d\x49\x74\x12\x56\xd9\x45\x44\x59\x59\xc9\xc7\x14\x3d\x02\x52\xb8\xeb\xfd\x0f\xd2\x00\x01\x48\x79\x1d\x12\x09\x97\x7b\x8f\x6e\xec\x59\x68\x38\x94\xb4\x25\x4a\x39\xd5\x29\x3d\xfd\xfd\x34\xeb\x03\x2a\x7c\x6a\x9f\xb4\xc5\x6f\xf0\x6e\xe8\x29\xc8\xd0\xfe\x6a\x85\xdd\x11\xf8\x6d\x87\x8e\x7d\xd6\x85\x0d\x47\x15\x8f\x94\x4d\xe1\x3a\x70\x72\x03\xb6\xcb\xbe\xcb\xb3\x3f\x97\xbb\x8f\x5e\xd8\xcb\x37\x21\xbc\xf3\x38\x28\xff\x99\x7a\x05\xae\x20\x6f\xef\xfe\x5c\x4f\x32\x68\xa8\x8b\xe6\xc7\x10\xfa\x0f\xbe\xd6\x8c\x5a\xa1\x30\xa3\x81\x68\x53\xb2\xe9\xc8\x12\xff\x73\x78\x3b\x44\x54\xb6\x58\x20\x1a\xe2\x98\x25\x4d\x69\xac\xf4\x85\xe6\x9a\xd4\x64\xe5\xa3\xd4\xfe\x83\x39\x8f\xf4\x52\x37\xea\x37\xc2\xbf\x86\x8d\x8d\xdd\xa4\xbb\x7d\x29\x17\xf0\x0a\x45\x7b\xda\x9b\xd6\x53\xc9\x95\x19\x52\xd3\x00\xdb\x13\x2c\x3b\xa2\x27\x18\xed\x6b\x9f\x68\x27\x79\x3d\x81\x45\x62\xab\x00\xb8\x9a\x28\x91\xf9\x99\xa0\x15\x1b\x95\x1a\x65\x29\x09\xb0\xf9\x98\x32\x69\x35\x09\x40\x70\x55\xbc\x09\x97\xcf\x76\xef\x6c\x87\xbd\x75\x69\x87\x35\xd6\x88\xfd\xdb\xc3\xb7\xd0\xb0\xf3\x3b\xef\xf3\x6e\x6f\x25\x8a\x80\xd6\x91\x32\x1f\x57\x3f\x99\x29\x11\x68\xf3\xd3\xec\xf7\xfc\xe4\xd1\x97\x68\xd8\x9b\x8f\xbe\xc6\x65\x63\xb7\xa3\xdf\xbb\x8b\x86\x17\xda\x9b\x61\x43\x53\x87\xe5\x4e\xba\x3d\x0a\x9d\x1d\x5d\x02\x8a\x3b\xcb\xce\x0a\x2d\x4c\x0f\x6d\x8b\xd5\xa1\xc4\xdb\xbf\xfb\xc4\xe9\xbb\x3f\xa7\x30\xce\xd3\x49\x43\x34\xb5\x8d\xd0\xa6\x21\x1b\x39\xab\x45\xf3\xb3\x43\xdc\x08\x17\x9c\x13\x15\x18\x3c\x24\xf8\xcf\x49\x54\x93\x8f\xd3\xb0\xb3\x45\x48\x35\xd1\xcc\x64\x50\x1c\x6f\x48\xf9\x42\x47\xdc\x18\x05\x32\x0f\x7d\xc1\x97\x76\xd5\xea\xca\x20\x64\x4e\xe9\xf2\x36\x49\x76\xea\x8e\xe7\x09\x3e\x6f\x29\xed\xd4\xa4\xb7\x1a\xbb\xaa\xfd\x79\xa2\xcf\xd5\x0e\x3b\x02\x29\x9c\xe2\x10\xfd\x06\xcf\x36\xd3\xff\x46\xb4\xc3\x3d\x68\x6a\xf7\x37\x39\xc3\x7f\x4f\x0d\xfd\xc4\x3f\xc2\xc7\xd9\x9e\xb8\xeb\xde\xd7\x13\xd9\x7b\xa0\x87\xe1\xd4\x32\x39\x39\x38\x20\x75\xaa\x78\x7a\xfd\xf0\x4b\xe6\x8d\x51\x97\xf6\x94\x94\x96\xea\x72\xee\x5a\x82\x20\xf6\xbc\xbb\x7f\x3e\xf7\xb6\x3c\x93\x34\x99\xda\x10\xac\x69\xd7\x0e\x93\x30\xb5\xb7\xad\x1d\x33\x59\x3b\xf2\x10\x94\xa6\x70\xbf\x38\xdb\x8b\x7a\x4e\x42\x97\xe7\x6e\xf0\xcf\xdc\x0f\x74\x67\xbb\x16\xdb\xf6\xc8\x8c\x8c\xb7\x58\x6f\x46\xee\xfb\xcf\xfb\xac\x3e\x1e\xde\x52\x0c\x5c\x0b\x35\x8d\xa8\xd2\x4d\xbb\xd1\x84\xfc\x54\xcd\x9d\xaf\x75\xb6\x15\x5b\x50\x83\xf7\x1a\xba\x3e\x47\x07\xdf\x8e\x3f\x80\xfe\xbe\x61\xf5\x76\x91\x22\x7e\xd3\xd2\x70\x40\x79\xb1\xca\xa1\x5e\x7e\xab\x46\x75\x39\xbd\x65\xce\x28\xe1\x6b\xbd\xb8\xde\xcf\x31\x2b\x6c\x96\x1a\xcc\x2d\x1a\xed\x00\xf6\x3c\x0f\x53\x49\xd4\xa8\x95\x0d\xb4\x14\x8c\xe5\x87\x4c\xd4\x49\x33\x43\x10\x08\xc9\x09\xcd\x86\x51\xed\x29\xd8\x3b\x63\x13\xc2\x41\xdf\x6d\xee\xc3\x21\xa9\x89\x38\xdc\xfd\xe4\xa4\xcb\x7d\xb6\x5a\xc8\x31\xd7\x92\x5d\x97\x67\x7c\xbf\xe6\x9e\x2b\x79\xa3\x63\xfe\xd2\xb6\xb6\x18\x6f\x98\x76\x5a\x97\x8a\x1b\x25\x08\x1a\x24\x2a\xae\x83\x0a\x23\x49\x43\x26\x73\x1c\x30\xe2\xa0\x72\xd5\xf5\x12\x55\x08\x37\x9a\xea\xaf\x42\x1a\x2f\x68\x9a\x9a\xeb\xdc\x0a\x39\x21\xee\x1c\x3c\x15\x3f\xa1\x91\x95\x4a\x2d\x05\x5f\x0e\x82\x55\xbe\x99\x7a\x0a\xc5\x28\x62\xa0\x9e\x11\xbc\xca\x84\x31\x5e\xf2\xc2\xa4\xd2\xd8\x4d\x6c\xb1\x2b\x05\x5f\x0a\x86\x19\xde\x48\x3d\x9c\x1a\x32\x5d\xe9\x39\xf5\x5d\x26\x8c\xfe\xf2\xe5\xa1\xb2\xb6\x2c\xd3\x8f\x9c\xdf\x9c\x7a\x3e\x65\x46\x25\xc9\x50\xe9\xe3\x54\xe6\x00\xcb\x8c\x47\xb6\x12\x73\x0f\xea\xef\xb8\x31\x2a\x5b\xfc\x51\x2c\x86\xc6\xa7\xea\x99\x50\x8f\x11\xf2\x5f\x84\xfc\x7f\xb9\xb7\x0c\x89\x2c\xf5\x55\xc6\x80\x36\x1f\x0b\xc1\xf4\x98\x40\x7c\x43\xc2\x1f\x3d\x7f\x93\x44\xac\xf3\x30\xa8\x61\x24\xf3\xff\x9a\x11\x44\x31\x2e\x12\xf0\xff\x7b\xff\x0a\x99\x08\x16\x1a\xbe\x3e\x11\x50\x9c\xe0\xe7\x4a\xc1\x04\x9a\x36\x32\x9f\x35\x86\x03\x63\xe9\xb3\x85\x2d\xff\xff\xfc\x94\x7e\xda\x21\x43\x38\xcb\xff\xeb\x39\x83\xd7\xf8\x4d\xbc\xb5\x75\x95\x89\x1d\x7d\x36\xf4\x4d\x9d\xb3\xf7\x93\xa9\x00\x06\xc3\x27\x20\xc4\x3f\xb7\x25\xc5\xe7\xa8\xbf\x55\x25\xce\xc3\xb7\x99\xeb\xd4\xc6\xd2\x41\xbd\xf6\x7a\xf2\x7b\xaf\x68\x04\x10\x89\x22\xc7\x97\xf3\x55\x0e\x80\xf9\x96\xab\x23\x26\x02\x1c\x9e\x39\x5d\xcc\xcf\xa6\x7e\x1c\x23\x66\xba\x3a\x09\xbd\xb8\xd2\x09\xef\x24\xc2\x84\xa7\xe7\xaa\xb7\x79\x7e\xde\x97\x0e\xce\xbf\x73\x8e\x60\xdc\x0b\x0d\x9a\x09\x7a\x10\x1e\xfd\xa3\xa6\x2a\x49\x12\x55\x7c\x9c\x5c\xd1\x2c\xbb\x8a\xd9\xf0\x4d\x5f\x44\x97\x7b\xb9\x2c\xaf\xf2\xe2\x52\x22\x7b\xfd\x2d\xb7\x65\xa8\xfd\x79\x37\x82\x17\xf7\x16\x7a\x52\x89\x25\x76\x24\xe5\xbc\x52\x3f\xe2\x6c\xf2\x64\x32\xb6\xc5\x4a\x52\xcc\x27\x8b\x22\x9c\x92\x5f\x1c\x02\x01\xce\xd5\xdc\xa4\x89\xa4\x02\xf9\xbe\x24\x68\x6b\x45\x49\xef\x16\x24\x4e\x24\xc6\xf6\x25\x42\x8d\x61\x04\x82\xad\xf4\xfd\xfb\x4b\xff\xf0\x11\x6f\x83\xab\x3b\x9d\xcf\x6f\x5b\xe5\x5c\x8b\x95\x90\x95\xa5\x35\xb0\x26\x42\x50\x0a\xfd\x45\x1a\x25\x25\x8c\x42\x6e\x43\x07\x1d\x91\xbf\x44\x3a\x27\x36\x9f\x3b\x7e\xc5\x07\xdf\xca\x7a\x95\x71\xeb\xd8\xeb\xb2\xe5\x8d\x43\x03\xca\xb2\xe9\xb0\xd9\x2a\xe1\x47\x08\x0c\x7e\xae\x68\x60\x39\x5f\xd2\xac\x7a\xe1\x24\x73\x0b\x08\x9d\x50\xb4\x74\x45\xfd\x4b\x64\x49\xb3\x68\xc2\x03\xac\xa0\xd5\x76\x81\x91\x9d\x92\xeb\xf5\x48\x10\x84\xf6\xdc\xea\xac\xf6\x94\x37\x46\x62\x4a\x6e\xa0\x42\x36\xbe\xda\xc9\x38\x81\xcc\x8e\x14\xa3\x5b\x3f\xda\xe5\x57\x60\xd2\x4f\xaf\x2f\x75\xac\xb6\xaf\xde\xf7\x34\x18\x07\x7f\x2f\x99\x9c\x9d\xf6\x40\x66\x5f\x3c\x05\xb3\x7a\x50\xfa\xa9\x75\x66\x46\x49\x9e\xf2\xd4\xb2\x07\x3c\xfb\xd3\x5f\xdd\xd2\xbe\x2e\x79\x60\x6d\x94\xf8\xe4\xf5\xa5\x4e\xd0\x44\xdc\xb7\x36\x38\xfb\x6b\x1f\x6a\xf4\xc9\x6f\x9e\x99\xdd\xcd\xfc\xc2\x24\x66\xdf\x7e\x47\x46\x49\xac\x3a\xa1\xdd\xd4\xc8\x72\xec\xf5\xce\x85\x32\x18\xaf\xba\x1b\x4c\x48\x69\x07\xfe\xa9\x50\xb3\x91\xdc\xaf\x6f\xe7\xe4\x0c\x76\x8e\x46\xd0\x5d\x0b\x77\xbf\x71\xfd\x7a\x22\xd3\x08\xb5\xa3\x33\x0d\x0a\xd8\x90\x76\x82\x46\x1b\x7f\xf2\x6d\x08\x2d\x20\x39\x02\x8b\xda\xfb\x1b\x8d\xfa\xdb\x03\x86\x30\x1b\x69\xee\xe1\xdd\x4f\x52\x76\x8c\x5b\x06\x3a\xb9\x49\x66\x16\xd0\xde\x60\xa3\xe4\xd7\xcb\xba\xd7\x92\xa3\xf9\xb9\xc9\x15\x39\xf7\xdc\x9e\xa8\xcb\xdd\x8a\x0e\xde\x8d\xfe\x70\xf0\xda\x5f\xc8\x77\xd4\x65\x11\xc5\xdb\xf9\x45\x0e\xa6\x5c\x85\xf3\xca\x58\x68\x83\x4e\x45\x19\xd8\x4a\xa6\x4b\x61\x5c\x85\x40\x56\xe2\x93\x68\x6d\x1c\x5f\x49\x5d\x6a\x94\xa9\x75\xc3\x36\x1d\xcd\x06\xa1\x50\x60\x0e\x17\xaf\x51\x32\x1c\x39\xdf\xd8\xf5\xff\xd9\x62\x4d\x03\x08\xd7\x42\x22\xe9\xa0\x16\xef\xd9\x31\xfb\x45\x02\x36\xd0\xb3\x95\x6b\x9d\x19\x10\x9c\x2e\xe3\x74\xdc\x71\x35\x1e\x01\x76\x80\x4a\x21\xaa\x05\xfb\x52\x6b\xfe\x16\xb5\xa6\xfa\x24\xaf\x36\x62\x3c\xb4\x95\xbd\x96\xa5\xdc\x3d\xd4\xe4\xe8\x02\xf5\x31\xec\x24\xa0\x13\xa1\x34\xf0\x83\xa9\x92\x76\xb8\x7c\x08\x75\xa0\x1b\xda\xc3\x7d\x56\x5d\x56\x9b\x70\x27\x67\x6c\x3a\xff\x26\x50\x9f\x8c\x1a\xa0\xbd\x3a\x91\x71\x3f\xab\x1e\xb5\xc5\xf5\x27\xf6\xd9\x4a\x60\x52\x58\x58\xcb\x9d\x05\x3c\x29\x28\x57\xe8\x34\xa7\x78\xbf\x88\x81\xa2\x48\x6d\x3b\xd0\x5d\xcb\x73\x4c\xb5\x63\x72\x3e\x1b\x4d\x94\x03\x4f\x13\x9f\x5e\x3c\xe8\x31\x79\xb4\x38\xb1\x04\x4e\x3b\xda\x2a\x4a\x6e\xc3\xf7\xed\x48\xa8\x7b\xc1\xd9\x79\x94\x78\x13\x90\xe7\x7b\x9d\x53\x5e\x6b\xd2\xac\x53\xeb\x3d\xc7\x19\x75\x95\x96\x89\xed\x8c\x67\xf3\x4a\x0f\x34\x49\x5d\xdd\x90\xae\x15\x33\x0d\xe8\xa9\x28\xa3\xcf\x4c\x9e\x64\x00\x76\x95\x20\x1b\x31\xa9\xaf\xba\xe1\x2f\xd9\x43\x77\x62\xfe\x5c\x9f\xfb\xf7\x5c\x2d\x73\xfd\xef\x65\xbc\xbf\xd5\xba\x9b\x8f\xf5\xc7\xcc\x61\x33\xa0\x93\x82\xd9\xf8\x0c\x49\x49\xd9\x98\xfa\x3c\x80\xcb\x49\xe0\x40\x33\x2d\x85\x87\xca\x48\xae\x39\xaa\xac\x4a\x33\xbd\xa9\xe8\x79\xb9\x8f\x1b\x12\xb8\xf2\xd8\x4c\x33\xe6\x9e\x07\x3d\x0f\xfd\x8b\x61\x8e\xba\x0e\x3c\x08\xfa\xb7\x0d\xf4\x4d\x7d\xf1\x51\x32\x2f\xa1\x1f\x3e\xa6\x39\xa7\x6d\x53\x5f\x75\x2a\x77\x7d\x1e\xf9\xa3\x9a\x7d\xe1\x79\x6b\xdc\x67\xb2\xb5\xeb\xea\x3f\x88\xa9\xc7\xe1\xe4\x28\x8a\xd4\x37\x0e\x9e\x80\x93\x9b\x50\xa1\x8a\xeb\xc5\xb8\xd3\xa5\x40\x53\xc2\xeb\xb5\x1f\xdc\x62\xd7\x76\xa9\xbe\xee\xb8\xfc\x36\x50\x8e\xa5\xc8\xc4\xd7\xeb\xa6\x6f\x71\x6a\xba\x6f\x7b\x6b\x8f\x4b\xef\x00\x15\xa7\x12\x00\x15\x6c\x06\xaf\x88\x6b\xcb\xcb\x5b\x75\xaa\x8e\xe2\x69\x00\xc1\xa3\x54\xf0\x69\x42\x75\x17\x57\xee\x88\xeb\xe0\x8e\xa2\x19\x40\xe5\xa6\xb2\x95\xa2\xb4\xae\x13\x31\xf5\xd6\x08\xf2\xd5\xfc\xc5\xca\xcd\xd7\xef\x2a\xeb\x9f\xf7\xa8\x16\x08\x77\x00\x19\x96\xdb\xc7\xbf\xa1\x2a\x3e\xc7\xa8\x0f\xf2\xe0\xef\x02\xf2\xd3\x09\x80\x11\x39\x9b\x53\xd5\x0f\xbb\x5d\x7d\x88\x39\x4e\x98\x05\xf4\x78\x94\x61\x19\x48\xf2\x7e\xc4\xe5\x06\x75\x6b\xe9\x21\xc0\xe8\xeb\x7f\xe0\x78\x09\x64\x1e\x23\x03\x27\x89\x8d\x0e\xdd\xb8\x2f\x19\xa7\x4d\x4f\xe7\x14\x66\x97\xfc\xc6\xe4\x85\x0b\xed\xe7\x4f\x2b\x1c\x54\x2c\x9a\x8e\x27\xa4\x98\xd4\x6c\x6f\x6e\xda\x0f\x7e\x82\x1f\xfc\x37\x8c\xdf\x3c\x38\xf8\xfe\x9c\x9d\xd5\x7c\x78\x6b\x6e\x5e\x97\x53\x44\xa8\x02\x54\xae\xb2\x20\xa6\x26\x35\x34\x7f\x99\xd2\xe4\xb6\x8c\x27\x15\xdc\xcd\x09\x36\xea\xd9\xbe\xec\x32\x92\x27\x35\x83\xc0\x56\xb2\xb1\xbf\x8a\x41\x17\x82\x59\xff\xef\xb4\xb7\x9e\x89\xae\x29\xd7\x77\x3b\x24\xc4\x2a\x08\xf1\xb0\x42\xc5\x75\xdb\xc3\xa8\x17\xc9\x3d\xf4\x82\x7d\x49\xdc\x7b\x85\xd1\x36\x47\x59\x7d\x16\x9f\x54\xb5\x3d\xbb\xd4\xcc\x55\x1d\xfa\xe9\xc2\xc2\xbd\x85\xf3\x45\x66\x4e\x98\x95\x83\x40\xe6\x36\x88\x0f\x75\x5d\xe2\x13\x3c\x66\x55\x18\xaa\x23\xc8\x61\x94\x6f\x42\x4e\x62\xcd\x26\x0a\x2c\x50\x51\x5d\x22\x91\xa4\x41\x45\x91\x2d\x41\xc1\xee\x39\xbc\x82\x86\xc2\xfa\xcc\x4c\xf7\xab\xae\xfa\xea\x13\x2e\xbf\xa8\x5f\xba\xc4\x8c\x90\x8d\xe5\xe2\xcb\x16\x63\xea\x43\xa6\x57\x92\xcc\x6c\x93\x4e\x58\x74\xa8\x57\x8c\x55\x28\x53\xf7\x7d\x0a\xc1\xf9\xd4\x75\xfd\x65\xb7\xb5\x46\xf7\xca\x67\x1b\xb9\xfd\x6a\xd4\xa9\x17\x78\x09\x17\x42\x2a\xcd\x07\x17\x96\x8e\xb4\xcd\x6d\x7d\xfb\xa4\x70\x46\xb3\xa0\xed\x69\xf4\xbd\x55\xdb\xbe\x20\x06\xba\x7d\x44\x67\x75\x21\x7e\x7a\x1d\xbf\xb1\x08\x04\xf5\x01\x68\xe0\x93\xf5\xcc\x19\x4b\x02\x68\xd0\x21\x60\xea\x43\x2b\x83\x06\x78\x03\x21\x1b\x9d\x7e\xee\xec\x38\xc2\x30\xf7\xc0\x7c\x06\xae\x68\x7e\x8a\x3b\x4f\x37\xca\x5b\xbf\xd6\xa3\x98\x21\x9f\x76\x36\x0c\xe7\xef\xba\x78\xf0\x15\x1e\x2d\xd2\x12\x6c\x3b\x4c\x65\x71\x27\xf4\x4e\x14\x4b\x45\x3e\x20\x20\x58\x09\xeb\x7a\x05\xda\x89\x6e\xf6\x31\x26\xc5\x30\x49\xa9\xb4\x83\xfd\x76\x19\x2b\xae\xad\x77\x57\x1f\x55\x43\x07\x93\xf7\xa6\x22\x67\xdd\xe7\x3c\xa0\x05\x9f\x51\x0a\xbd\x9e\x6d\x47\x25\x1b\x33\x3e\x69\x89\x5f\xdf\x47\xd2\x74\xc5\x4d\x53\xc4\x74\xc3\x2c\xa1\xca\x02\xf7\x3b\xcb\x30\xe6\x01\x0d\x7d\xf9\xfb\xdc\x40\x29\x80\x75\x4b\x5c\xba\xa1\x6e\xfb\x1c\x29\xdb\x74\x98\xa0\xb4\x68\xfb\x36\xe4\xaf\xc9\xfd\x40\x80\x6a\xcb\xa4\xd1\xcb\xb3\x21\x3a\x49\x55\x26\x64\xe8\x0c\xd4\xea\x8c\xef\xeb\x93\x63\x3f\x9b\x66\x6b\x75\x86\x16\xf0\xbc\x44\x59\x29\x27\xeb\x51\xd4\xfb\x2e\x09\xa4\x32\xe5\x17\x1b\x48\xbb\x7a\xda\x14\x89\x20\x34\xe4\x89\x9c\x33\x82\x92\x88\x64\x8a\xce\x54\x4c\x49\x05\xf3\x5c\xba\xe9\x20\x59\x62\xd3\xf7\x6c\x26\xdd\xcc\x60\x8c\x38\x19\x28\xbe\xb3\x54\xa2\x44\xbb\x78\x7c\x92\x03\x91\x54\x61\xb8\xef\x14\x7a\xa6\x27\x47\xff\x32\x5a\x6a\xc9\x42\x2d\xd1\xab\x3d\x9a\x3d\x29\x12\x80\xc3\xd2\x2c\x94\xa3\x47\xcc\xaf\xe3\x1e\x24\x17\xc8\x67\x2b\xc5\x47\x45\xb4\xe0\x92\xaa\xb2\x57\xba\x02\x54\xe7\xa3\x0e\xdb\xdf\xcf\xdd\xf9\x96\xa1\x45\xbd\x45\xf4\xd1\x66\xfe\x1d\xf9\xad\xa7\xbe\x5b\x99\xd8\xe9\xe1\xc9\xb9\x8e\x52\xa9\x12\xe3\xe2\x70\x20\x5a\xa2\x2c\xc7\xa7\x60\x57\x4a\xdd\xc7\xbc\xae\xb8\xcb\x7f\xda\x2e\x6a\x36\x44\x6f\x60\xb0\x8a\xcc\x65\x4a\x98\xe5\x7f\x98\x13\x21\x41\x4a\xdc\x7c\xa7\xae\xbf\xdb\x7a\x94\x90\x69\x40\x7d\x6b\x2c\xba\x01\x27\xbf\xc4\x2d\x42\x4c\x9c\x87\x7c\x2c\x8b\xad\x2c\x34\xb1\x6c\x60\x77\xd4\x7c\x80\x98\xa6\x9d\x24\x56\x9a\xa1\xee\x63\x91\x50\xb2\x16\x64\x39\xf2\x68\xb4\xf2\x3c\x80\x45\xd4\xb2\xd8\x24\x35\xc8\x28\xcf\xf1\xf3\xe5\x80\x0c\x92\xba\x50\x46\xc1\x81\x97\xf5\x0e\x44\xb2\x26\xf7\x00\x22\x85\x4a\x2d\x01\x0e\xe8\x1c\x48\x24\xde\x6f\x8f\x7b\xa4\x6c\xe9\x1e\x66\x00\xc7\xc8\x8a\x72\xf5\xc8\xa6\x02\xfc\x64\x5c\xb6\x63\xbf\xb8\xb0\x8e\x37\x45\x66\xc8\x0f\x4b\xca\x8e\x4a\x0b\x6a\x8f\xeb\x4b\x86\xf9\x2b\x80\x1f\x8f\x3a\x62\xfb\xee\xd0\xed\xb7\x74\x2d\x2a\x63\xfe\xe3\x66\x1f\x6d\xd6\x6f\xed\x3f\x4b\xdc\xe7\x2a\x16\xd9\xdc\x65\x52\x9e\x83\x24\x81\x31\x15\x65\x65\x68\x8f\x18\xb2\x13\x53\x62\x1f\xe2\x29\xe4\x01\xbd\xbd\x91\x04\xc1\x51\x92\xc1\x4e\x19\x70\x4c\x94\xfb\x0d\x1a\xec\x51\x32\x04\x21\x6d\xb0\x57\x41\xf9\xd2\x0e\x3e\x52\x0d\x41\xbc\xce\xc0\xf9\x10\xa1\x1a\x06\xe1\xea\x50\xca\xfd\x5f\x55\x89\xf8\xbb\xf2\x64\x94\x81\x2e\x24\xc0\x60\xe2\xc7\x8a\x60\xa4\xb9\xc8\xc4\xa7\x1a\x98\xf3\x8e\xce\xa6\x11\x52\x96\x0a\x4a\xe5\x7c\x3a\x79\x73\x47\x64\xa4\xf7\x5a\x51\xda\x98\x1c\xf1\x30\xa0\x6c\xb4\xb1\xfb\xfc\xf3\x51\x63\x20\xec\x4e\x9a\x6b\xf8\xe6\x93\x12\xd3\x80\xfc\x51\xf6\xf0\xc7\x1d\x0c\xfb\x0b\x31\x69\x59\x74\x45\x18\x8b\x80\xa5\x3e\x29\x1f\x17\xd0\x68\x63\x14\x9d\xb0\xb6\xc8\x22\x66\xdb\xf1\xc7\xf2\xd2\x98\x92\xd2\xd2\x9c\xa7\x70\x85\x59\xaf\xc9\xef\xfa\x53\xf3\xe9\xe4\xd0\xc7\x30\x95\xa9\x95\xe3\x17\x3f\xb0\xa9\x52\x45\x35\x49\xae\x42\xfb\x84\x22\x52\x50\xa7\x6e\x24\x43\xea\x16\xaa\xc9\x42\x69\xd3\x08\x6a\x85\x67\x24\x55\x67\x25\x95\x93\x33\x11\x59\xb4\x54\x77\xc0\x9e\xeb\xf8\x06\x81\xe4\x72\x8a\x15\x6a\x5d\x4a\xdc\xfa\x19\xf6\xf6\x39\xf6\xc8\x8b\xed\x21\x86\x31\xeb\x58\x93\x64\x5a\xfd\x1f\x32\x78\x90\x88\x5e\x6e\x12\x36\x16\xc8\xe5\xd1\x02\xb3\x90\x5e\x2e\x82\x74\xfe\x7f\x95\x28\x5c\x12\x3e\xc9\xaa\x15\x84\x0b\xa5\x92\x48\xa1\x56\x40\xb6\xee\x3d\xec\x4c\xd7\x33\x8a\x65\x46\x21\x8f\x7f\x3a\xcb\x8b\x8b\x2b\x35\x59\x2d\x4c\x25\x8f\xcf\x57\x72\x59\x4c\xe0\x6e\x55\xfc\x9f\xa7\xbf\xd4\x74\x8f\xf3\x4c\x44\x7f\xa6\x78\xf2\x14\x7e\x82\x12\x2e\xf1\x4b\x44\xa4\x88\xde\xd0\x48\x83\x55\x51\xaa\xde\x4e\xec\xd2\x73\xde\xdd\xfd\xea\x6b\x94\x45\xd4\xf2\x2f\x2c\x02\x79\x5b\x42\xae\xd1\x2a\xc5\xe4\x92\x08\xe8\xe2\xac\x6c\x5e\x4a\xbc\xc7\xfe\x26\xed\x80\x61\xb0\x77\xfc\xa5\x97\xcf\x5e\x6c\xfe\xc8\xeb\xdc\xb7\xcf\x70\x1e\x9f\xdc\xbe\xa2\xe0\x75\xe9\xd6\x53\xac\xe7\xc7\x6f\xef\xba\x79\x26\x5a\x7b\xe1\x7e\xd0\x53\x82\x78\x7a\xa5\x6f\xf1\xff\x65\xc6\x17\xb9\x6a\x7f\xda\x9f\xb4\xb6\xaf\x37\x9c\xf5\x66\xaa\x5e\x78\x5e\xa2\x70\x77\x9f\x51\x02\xf2\x6a\x88\x9f\xc9\x20\x88\x16\xd7\x89\x7b\x79\xb1\x41\x40\x36\x31\x8f\x00\x10\xce\x48\x08\x2a\xb6\x38\xf6\x19\x7b\x39\x28\xaf\xbf\xe1\xe5\xeb\xfc\xf3\x97\x25\x9e\xef\x19\xb8\x66\x95\xe6\x01\xa7\xde\x44\xba\xab\x68\x7c\x0c\xf6\x47\xef\x94\xf3\x22\x30\x01\x74\x24\x00\x62\x83\x92\x85\xe4\x6a\x70\x1c\x9c\xe1\x49\x9e\x33\x53\xe3\x2d\xfc\x2b\xbc\x8e\xf8\xc8\x3b\x89\x49\x29\xb0\x1a\x3e\x95\x19\x86\x21\xe6\x7e\x18\xbe\x2f\x5c\x2a\x5b\x7c\xef\x41\xef\xab\xf8\xde\x4f\xb5\xe1\x88\xe6\xa6\x1b\x97\x9f\xa3\x93\x8f\x48\xf9\xc7\x05\x1c\x1b\x92\xc5\xfa\xce\xdb\x81\x81\xfb\xd8\xe5\x38\x6f\x02\x5b\xa2\x16\x36\x19\xa4\xba\x9e\xfd\xfe\x6b\x89\x0d\xb1\x4b\x54\xa5\x4e\x1e\x16\xb1\x0a\xcd\x2c\x40\x59\xc6\x3e\xfb\xc2\xd7\x5b\xf6\xa3\xc6\x99\xc4\xf2\xce\x55\x42\x4d\x8a\x5d\x52\xee\x71\x2e\xc7\xa2\xce\x8c\x11\xe1\x1d\x7e\xf8\x24\xac\x47\x8e\x93\x20\x94\xda\x3c\xd8\x32\x52\xc2\xe0\xb1\x21\x2c\xae\xdd\xe6\x48\x97\xdb\x57\x48\x9e\x5a\xa5\x10\x78\x0f\x4d\xdb\x7f\x7a\x6a\x49\x39\x54\x9c\x4e\x29\x70\x63\xfe\x67\xdc\x0b\x04\xf3\x0f\x4f\x1d\x75\x8b\xa9\x7c\xca\x47\xcb\x64\xc6\x47\xc9\xca\xbd\x07\x11\xaf\x4d\xc2\xed\xfc\xaf\x94\x82\xd4\x38\xce\x10\xed\xaa\x7e\x93\x69\x27\x2c\xae\x2f\xbe\x0e\xb5\x9d\xc6\xc3\xc7\xdd\x08\xde\x41\x86\x3e\x88\x59\x2c\x1f\x4d\x56\x9d\x3c\xb5\xa5\xbe\x45\x06\x8e\xd3\xeb\x2a\xb4\x7b\xab\xb8\xda\xdd\xdd\xd4\x25\x32\x19\x95\x3e\x67\x03\x54\x42\x61\x36\xd9\x20\xe0\x93\xcd\x30\xb7\xb2\x00\x95\x41\xde\x8e\xd3\xaa\xeb\x78\x3a\x33\xdb\xfb\x3b\xe5\x3e\x63\xb8\xd7\xb8\xf3\xc9\xef\xbf\x7e\x69\xd3\xd9\xbc\xb4\x77\xf5\x90\xb2\xc3\x31\xe6\xf1\x0c\xac\x0a\x16\x84\x73\x81\x05\xad\x0f\xf4\xa2\x93\xe7\xe6\x53\x3d\x0f\xdd\x53\xce\xc4\x3c\xb6\xab\x1e\x00\xa3\x59\x37\x0d\xbd\xbb\x7b\xc6\x7d\xab\x54\x4f\x2a\x37\xb9\x0d\x75\x8a\x05\x11\xd0\xa2\x58\x99\x65\x5d\x1e\xc3\x75\xe5\x36\xc8\xf6\x25\xb9\x36\x39\xf2\x9e\x3f\xbb\x56\x51\xe6\x78\x82\x97\x7f\xfd\x3e\xbc\x34\x41\x73\xf7\x28\x1c\x19\x69\x4d\xf0\xf0\x6b\xc0\xd6\x52\xd3\x37\x46\x1b\x72\x56\x46\xe7\x16\xcf\xaf\xeb\xe0\x76\xe7\x93\x77\x0f\x72\xdf\x7d\x41\xdc\x3f\x86\xf2\xf8\x3c\x19\x6e\x6b\xd6\x62\xcd\x7c\xed\x2d\xb1\x5d\xde\x58\x27\xca\x52\x54\x9d\xf5\xbe\x02\xf7\xd3\x48\x31\xe1\xe3\x1d\x5e\x43\x25\xfc\x9b\xf3\xf3\x6d\xe8\xf4\x7f\xee\x90\x45\x20\x6c\xf8\xfc\x10\xd9\x0b\x6c\x59\xfd\xf3\xe6\x66\x20\x89\xe8\x73\xd2\xc1\x30\x01\x62\x78\xf9\x0a\x09\x59\xc3\x07\x01\x94\xd3\xff\x5b\xd7\xcb\x0c\x82\xce\xa0\x6d\x37\x95\x14\xd0\x91\x2a\x61\xb9\x17\x23\xf2\x4e\xa8\x98\x63\xb4\x73\x90\xea\xad\x90\xf3\xc2\xb5\xa2\xa6\x03\x0a\x6a\xe1\xbc\xe4\x57\x57\xd6\xae\xf6\x6f\x71\x36\x48\x0a\xa2\xff\x06\xbf\xfd\x2a\xfa\x27\xbd\x4c\x33\xbd\x0c\xcc\x0f\xdd\xd5\x37\xf9\x2a\xe7\x78\x99\xa4\x4e\x79\x22\x26\x67\xa4\x0a\x93\x2c\x82\x86\x4b\xf8\xf7\x9f\xf0\x7f\x21\x72\x5c\xe9\x4a\x12\x0e\x62\x97\xee\x08\x2a\x48\x49\x3b\xc3\xd6\xee\x98\x7a\x1a\x3f\xa3\x74\xa2\xaa\x17\x04\x75\x0d\xc8\xf1\x48\x44\x4e\xad\xa0\xaa\x4a\xa7\xca\xd1\xe8\x75\x2c\x47\x4e\x05\x25\x02\xcf\xb7\x8b\x17\x38\x14\xff\xa2\xbc\x3c\x2a\x9e\x25\x83\x22\x44\xa5\x04\x70\x62\xf9\x2c\x27\x1a\x50\x10\xaa\x15\x42\x74\xa5\x1c\xaa\x28\x95\x26\x6a\x52\x8a\x31\x5a\x90\x14\x86\x61\x6a\xc0\xa4\x88\x15\x81\xef\xbc\xbd\x65\x12\xfc\x9a\x11\xf5\xb9\x87\xff\xff\xc3\x0e\x64\x34\x63\x63\x32\x7f\xf9\x0d\xc2\x20\xd7\x68\x1c\x2d\x8a\xf1\x16\xf8\x22\xf0\x44\x57\xf9\x59\xa1\x40\xd6\x93\xf3\x69\x94\xd6\x93\x53\x2c\x53\x04\x48\xb0\x1a\x17\x96\x2e\x0e\xab\x87\x24\xda\xad\x0a\xf0\xe9\x19\x07\x2b\xaa\x35\x22\x16\x85\xb2\x76\xa5\x1b\x9a\xd4\xff\x6c\x2f\xe6\x97\x19\x31\x15\x85\x16\x76\x70\x4f\x79\xff\x4d\xd1\xf3\x67\xef\x6b\x64\x6f\x85\xc2\x46\x65\xe9\xb2\xc2\xc2\x1f\xb6\x66\x3f\x7c\xfc\xd1\x1b\x80\xa4\x30\xc8\x72\x82\x91\x74\xad\x25\xb9\x2d\x98\x61\x62\x45\x55\x15\xe2\xfd\xc5\xdc\x69\x36\x4d\x14\xcb\xa9\x0f\xae\x2d\xbe\xd1\x0e\xb6\xc0\x0b\xfe\x00\x54\x93\x5f\xec\xbb\x8b\xc6\xbf\x7a\x25\x08\x74\xdf\xfd\xda\xdf\xb3\x89\xdb\x32\xd9\xfb\x68\x9d\x75\x3e\x59\x50\x6b\x53\x28\x7e\x3f\xe6\xdb\x98\xcd\x98\x8f\xb5\x3d\xb8\xcb\x33\xc6\x33\x97\x71\xdf\xfa\xa1\x20\xdd\x8f\xed\xb7\xda\xb1\xbf\x91\x90\xd2\x7f\x3f\x9f\xfb\xb9\x8d\x86\x74\x60\xc4\xcd\xcf\xdb\xc6\x2f\x09\xbc\x98\x72\x4a\xdc\xc8\x9a\x74\x24\x74\x9b\x94\xee\x54\xb3\x60\x44\xb1\x5e\xca\x45\x99\xa4\x3e\x74\xc9\x8f\xcf\x44\xfe\xf7\x16\x11\x47\x68\x28\x6e\x35\x11\x12\xbb\x37\xb8\x62\xf7\xdf\x36\x11\xde\xfa\xdc\x9b\x8d\x5e\x64\x81\x2f\x02\x00\x59\x93\x5b\x28\x23\x14\xe6\x41\x35\xb7\x03\x1e\xf2\x79\x94\x02\xb5\xdc\xcf\x28\xad\xd0\x15\x26\x78\x7d\xe1\xf1\xf8\x75\xcc\x58\xe2\x56\x4e\xc7\x04\xf1\x6c\x33\xf0\xda\x3c\xd6\x93\x70\x6b\x9a\x2e\x7d\xf8\x0a\xbc\x89\xb8\x90\xb5\x97\xa6\x91\xce\xa1\x46\x2a\x12\xb8\x85\xda\x03\xee\xaa\xb7\x23\xa4\x55\x53\x15\xb6\x40\x1d\x07\xa5\x04\x4b\xa7\x09\x86\x1b\x7c\xee\x80\x34\xef\x3d\x78\x79\xc8\xf3\xc6\x53\x75\xa1\x38\xc1\xd7\x31\x9d\xe8\xf1\xd4\x26\x1c\xcd\xaa\xdd\x05\xad\xa2\xc2\x2a\xf0\x07\xc4\x86\x1d\xf4\x47\x0b\x74\xee\x32\x46\x6d\xee\x03\xec\x62\xa8\x5b\x97\x03\x17\xea\x69\xd1\x67\x4b\xbd\x43\x3d\x9b\x50\x13\x2e\xc1\xe1\x48\xd5\x6e\x6b\x54\xcd\xa6\x89\x07\xfd\xcc\xc7\x73\x0e\x2a\xce\x1f\x11\xd7\x6b\xef\xce\x67\x19\x2d\xcc\x6b\x8a\xc4\x45\x71\xbb\xf6\x9c\x20\x34\x2a\x8c\xf7\x88\x52\xe8\x2c\x06\x25\x59\xc0\xe3\xbc\xe7\xcc\x52\xb6\x42\xe2\xb1\x23\x39\x1d\x72\x2f\x3f\x92\xfb\x4b\xc1\xd9\x37\xe9\x8b\x80\x1a\xfb\x54\x46\x39\x45\xde\x7d\xf9\xef\x03\x64\x89\xaa\xd6\x7f\x05\xfc\x44\xc2\x96\x48\x3d\xc0\x6f\x42\xe5\x9d\x89\xbf\x5a\xcf\xc4\x6f\xe9\xdc\x73\xde\x2a\xc2\x21\xda\xb4\xb9\xb6\x58\xfb\x52\x05\xfe\x3e\x44\x7e\x5a\xd6\x7b\x3b\xef\x81\x37\x56\xd8\xc3\x3b\xd2\x9c\xdb\xf0\x3f\x8b\xc7\xc4\xcf\xf0\x4e\xdc\x63\x3a\xa6\xe3\x53\xf0\x61\x86\x91\xb1\x80\xca\xcf\x9e\xec\x5d\xea\x12\x4f\xa2\x27\xae\x0f\xb4\xb9\xd1\x2d\xd1\xba\x3a\x6c\xb9\x89\x0b\x40\x56\x14\xdd\x3b\xf3\x0f\x49\xa9\xdc\x5e\xb0\xa0\x86\x77\x3c\x33\xd3\x0a\xca\x52\xfb\xbf\x77\xdb\xf3\x0f\x84\x2a\xbe\x54\x34\xb3\x9a\x8f\x5f\x28\xfc\x7d\x92\x0a\x94\x6f\xf6\x10\x7a\xbf\x7e\x1e\xba\x1f\x76\x9c\xf2\xb6\xa8\x13\x94\x0f\x38\xa7\xdc\x91\x7a\x56\xbd\x24\xc3\x14\x22\xcb\xca\x92\x7f\x1a\x69\xc4\x87\xb6\xf8\x78\x9e\x7d\x64\x59\x77\x7b\x77\xe7\xe6\xfe\x36\x61\x2e\x12\x32\x55\x13\xcf\x7a\x93\x37\x36\xc3\x06\xe1\x67\xc3\x7c\x42\x87\x25\xb1\x84\xcf\xaf\xef\x70\xa3\x37\x42\x52\x84\x70\xf3\xd0\x94\x28\x34\xf8\xd9\xcb\xef\x61\xb5\xa5\x6d\x73\x48\xbb\xaa\xd8\x3e\xbd\xac\xcf\xc4\xc7\x61\x91\xea\x5f\x9d\xf2\x7f\xe5\x62\x6a\x19\x50\xa9\xf5\xfe\xa5\x5a\x56\xf9\xa9\xc8\x4f\x79\x94\xbd\xfd\xbf\xf7\xae\x96\x0e\x28\x61\xb3\xb4\xb1\x0f\xa0\x0f\x31\xdd\x99\xbb\x43\x7f\xf6\x51\x9e\x85\xdb\x87\x3c\xde\x49\xa6\xc0\x8d\x37\x5b\x3f\x6d\xdd\xd6\xb9\x12\xc0\xd9\xfd\x87\x51\x02\xf1\x45\x21\x19\xf5\xf4\xb6\xa8\x29\x37\xcc\x00\x54\x29\x44\xa0\x96\xc7\x80\xb5\xb1\xdd\x77\x4e\x77\x11\x8e\x30\x5a\x5c\xea\x3b\x3c\x18\x40\x26\xc2\x79\xda\x91\x3d\x2c\x96\x4d\x4f\x2e\x36\xa5\x3a\xff\xe4\x47\x9a\xf5\xb8\x6c\x00\x40\x8d\xbc\x57\x9e\x45\x27\xd6\x38\x66\xe7\x3f\x5f\xce\x91\xc9\x84\xcc\x13\x05\x12\xc6\x92\x8f\xf9\x46\xfc\xb5\x04\x23\x90\xfe\xfb\x1f\x58\x62\x69\x12\x60\xca\xa8\x5a\x0a\x40\x5b\xaf\xf9\xc6\x60\x5b\x9b\xf4\xb2\x3b\xff\x3c\xb1\x8c\x91\xfb\xcc\x3c\x96\x13\x9e\x8e\x1d\x80\x85\x4a\xf6\x50\xc0\xda\xb1\x56\xc7\x92\x70\xea\xe5\x7a\x6d\xb0\xc6\xd4\x85\x12\x3b\xea\xd3\x8d\x87\x63\x35\xf0\x30\xa3\xac\x75\xc6\x10\xd9\x1e\xcc\x0f\x99\xd5\xb9\x5f\x79\xa0\xc2\xf1\x13\x20\x4e\xf4\x34\xf5\x11\x86\x77\x02\x72\xa2\x94\x4b\x56\xc6\xf0\x9d\x2e\x29\x9c\x50\xf3\x37\x1c\x78\x5a\x89\xc4\x5e\x7a\xec\xd2\xeb\x8f\x75\xbd\x97\x30\xa3\xef\x45\xc7\x29\xa2\x51\x57\x03\x07\x23\xd1\x3f\xf2\xb2\x6b\xc3\x6b\x61\x44\xfd\x96\x43\xc0\x88\x78\x38\xeb\xd8\x02\x41\x27\xb2\xe5\xbb\xf9\x3d\x55\xee\x10\x88\xde\x5f\x2f\xfd\xdd\x08\x4f\x93\x7a\x75\xc7\xff\x6f\x0a\x89\x24\x7a\x75\x7f\x5d\x86\x3c\x50\x86\xf6\xa2\xfb\x9f\x8e\xe9\x94\xa7\x73\x24\xc9\xdb\x25\x72\xe5\xff\x2e\x61\xc9\x6f\xc9\xd8\xa4\x6b\xb7\xd1\x73\xce\x75\xfb\x6e\x45\x40\x62\x79\x02\x24\x56\xee\x04\x99\x46\x19\x1a\x8c\x32\x5c\x42\x12\xc2\xa0\x60\xf5\x2b\xe0\x8d\xf0\x20\x15\xe1\x0d\x3b\x56\x09\xf9\x27\xb0\x8e\x5c\x38\xc6\xba\x0d\xb4\xec\x89\xc2\xd3\x1e\x1d\x83\xa7\x69\x0a\x83\x4b\xb0\x74\x46\x08\x5b\x9e\xc9\xa4\x4d\x69\xe4\xe9\x82\x76\xc1\xd3\x72\x39\x63\x25\x11\xc4\xa6\x55\x79\x95\x3c\x7a\xb6\x97\x12\xfa\xbc\xec\x11\x58\x6d\x43\x2c\x39\x47\x1c\x52\x6d\x22\x93\x1d\x17\xa6\xa8\x9e\x2e\x27\xb2\xba\x80\x9f\x46\xf4\xdc\xdf\x41\xd1\x5e\xeb\xfe\xd2\x48\xed\x90\xce\xdc\x3d\x2c\x1f\x93\x63\xdd\x71\xd2\x0b\x29\x41\xea\x2a\xfd\xa0\xf5\x10\x19\xcc\x31\x80\xbd\x3d\xc3\x51\x01\xae\xa6\xa6\x71\x04\x7b\xeb\x74\xb4\x34\x70\x51\x7d\x72\x06\xcb\x87\x65\xaf\x76\x47\x48\x85\x61\x3a\xf1\x54\xd7\x04\xc0\x53\xf5\x49\x90\x2c\x1f\x9a\x60\xdd\xe1\x7c\x0b\x89\x81\xb7\x79\x93\x20\xcf\x82\x4d\xed\xf9\xbc\xd8\x1a\x6c\xd3\xa9\xa4\xa6\x99\x9f\x5c\x60\xb3\x2e\x9c\x09\xf5\x1e\x1e\x25\x8d\x5a\x7a\x81\xed\x0b\x1a\xb5\xc3\x28\x52\x85\xf9\xc8\x8b\x23\x5f\x30\xc2\x46\x0c\xbe\x49\xc4\x9e\x3f\x39\x8f\x61\xad\xb9\xef\x25\x9d\x29\xdd\xe3\xbf\xea\x00\xde\x1c\x8a\xdb\x54\x09\x78\x77\xd7\x8b\xc1\x58\x76\x46\x4d\x75\x02\xc9\x03\x3e\x84\x0d\xc9\x93\xe3\xa4\x20\x28\x9a\x89\x70\x1e\xbc\xb6\xe5\x3e\x93\x61\x55\x50\xb6\x64\x70\x54\xb7\xaf\x14\xb9\x80\x54\x57\x6c\xf8\xd3\xa3\x17\x9f\xa8\x5f\x16\xff\xdc\x4d\x67\x51\x53\xbc\x1f\xd1\xa5\xd9\x3e\x56\xeb\x41\x27\x65\xb1\x53\xa1\x0a\x8d\x4e\xaa\x24\xdc\x67\x93\x53\xa1\xcd\x08\xf2\x62\xfc\x9b\x06\x59\x6a\x9a\xb4\xf0\x38\x14\xe6\xbb\x2a\x84\x0d\xe3\xac\x39\x4e\x3e\x68\x88\xd3\xb3\x29\xe5\xe2\xae\xf9\xf7\x5e\x63\x4d\xa9\x79\x63\x31\xc2\x7b\x8a\x3c\xa0\x18\x8b\x5a\x69\xc4\x8d\x12\x44\x1a\x4e\x33\xaf\x32\x7e\x37\x9d\x45\x53\xf1\xb7\x80\x7e\xca\x00\x76\xab\xf0\x93\x5f\x6c\x4b\xc5\x10\xff\x71\x37\x22\x11\xd5\x4e\xef\x8c\xa2\xab\xc3\x01\x25\x0c\x27\xca\x70\x96\x66\x79\xdf\x6c\xf6\x84\xce\x22\xbe\x93\xd9\x4b\xb9\x05\x5e\x10\xef\x63\xa6\x22\x66\xfc\x3f\xd2\xc7\x63\x64\xaa\x54\x27\x41\x70\xb5\x06\x87\x7c\xb3\xa6\x26\xf2\xb3\x12\x10\xb1\x18\x61\x03\x1e\x92\x53\x04\x76\x29\xea\x44\x9e\x6c\x20\x94\x6a\xc3\x2e\xba\x61\x6a\x53\x36\x5b\x00\x4a\x33\xb7\x45\xfe\x37\x33\x38\x03\x56\xab\x2e\xd4\xfe\x73\xb0\x61\x2b\x6a\x9f\x39\xe3\x0e\x1d\xc6\x10\xe2\x8d\x3b\x4a\x08\xfc\xa5\xc4\xf2\xea\x7f\xfc\x54\x1c\x53\xf3\xfe\x59\xbf\x9b\xce\xa2\xa1\x78\x57\x3c\xe9\xae\x27\xb1\x95\x78\x36\x4e\x63\xe6\xde\x6f\x66\xa3\x9a\xfc\x66\xf1\x23\x7a\x14\x8b\xc4\x17\x8d\xc2\xb4\x37\x73\x11\xaf\xcd\x2c\x8f\xc2\x54\x3c\x42\xc6\x32\x73\xc0\xe5\xb2\xed\xd4\x2a\xd0\x56\x54\x4a\xd9\x12\xb8\x94\xa8\x91\x7b\x7c\x85\x42\xe3\x10\xe2\x37\x1b\xc2\x92\x1f\x4c\x52\xe0\x3c\x5c\x40\xb3\x03\x5e\x65\x03\xc9\xd0\x70\x3f\xc2\x66\x4e\x93\x9c\xba\x75\xc3\x9e\x05\x25\x44\x25\x9b\x68\x47\x51\x93\xc1\x5e\xf1\x1f\x12\x9b\xb2\x74\x6a\xb5\xb2\x77\xd1\x49\x83\x3f\x44\x8b\x3c\x80\xcd\xac\xa1\x69\xe3\xf9\x40\xa1\x53\x20\x49\x22\xca\x7d\x03\xda\x44\x1c\xc0\xf7\x93\x78\x54\x8c\x47\xe4\x7e\x20\x9e\xa3\x40\x4f\x7d\xcf\xf1\xc8\x27\x10\xaf\x62\x76\x83\x5e\x7e\x4c\x72\xd9\xfc\x55\x59\x8b\x78\xf2\xfb\xcf\x16\xb5\x73\xae\x28\xcd\xf1\xc6\x7e\xeb\xfb\x69\xc1\x12\x6b\xd1\xa7\x9c\x5b\x3e\x9c\xb3\xda\x1d\x49\xbe\x3d\x23\x91\x80\x39\x3b\x8a\x74\x39\x03\x38\x81\xb6\xd1\x73\x3e\x45\x6c\x3c\xe1\x81\xb1\x21\xeb\xc4\xa7\xb6\x81\xe6\xb8\xe8\x74\x30\x49\x9b\x39\x0f\xeb\xb6\x92\x17\xd2\xe7\x70\x76\xb5\xbe\x3e\xbf\x3d\x83\x19\x41\x82\x5a\x47\x1e\x32\x35\x35\xf5\x20\xbe\x28\x11\xfe\xc0\xa5\x46\xdf\x76\x8e\xdb\x33\x98\x49\xf4\x7f\x76\x8e\x12\xc8\xef\x26\xee\x5c\xa8\xa9\x3f\x4b\xd7\xd3\x6a\x7d\xd3\xf9\x85\x0c\x66\xfc\x32\x3e\xbd\x0e\x8b\x9a\x9a\x7a\x1f\x70\xbb\xc3\x3b\xeb\xa7\xa6\xa4\x04\x0d\x8a\x50\x45\xb9\xc2\x81\x75\x7b\x91\x47\xc5\xdf\x1a\xff\xbb\xb1\x71\x05\xfa\xf7\xa1\x3e\x6a\xbe\x26\xc0\x86\xcf\x23\x6c\xfc\x9c\x5c\xfb\x2f\x6a\xe1\x8c\xba\x43\xc8\xb0\xa1\x1a\x31\x15\xab\xdc\xd5\x99\xce\xa2\xac\xf8\xfa\x33\xaf\x8c\x35\x75\x05\x0b\x6e\xcf\x48\x5c\x43\x56\x00\x0c\x40\xf3\xbf\x69\x35\x7d\x04\x0f\x1b\x7a\xec\xa3\x68\x00\x9c\x13\x27\xaf\xab\x7c\xbe\x6d\x1e\x52\xf4\xc0\xaa\xb0\x6f\x55\xb0\x2c\xf6\xd0\x59\x1c\x2e\xfa\xb6\x54\x18\x2b\xce\x9e\x20\x22\x25\x0e\x4d\x15\xe6\xde\x15\x73\xb1\x99\xce\x9f\xd4\x26\xfc\x66\x63\xe3\xd4\xb4\x29\x3d\x34\xf4\x8f\xb0\x57\x72\xee\xc9\xa1\x2b\x68\xb8\x97\x7e\x0a\x6d\xc8\xbe\x3f\xb2\xb5\xbf\x99\xe0\xaa\xf2\x81\x9c\x63\x95\x3b\x98\x7c\x1b\x89\xe5\xe9\xc0\x35\xbe\x6a\x3c\x51\xa1\x89\xe6\x15\xbf\x02\x50\xfd\x3f\xc6\x4e\x91\xc4\x4d\x77\x21\xd4\xf4\x57\x82\x0d\xbd\x23\x24\x63\xfb\x1c\x21\x56\xe6\x94\xf3\x4d\x3d\x3b\x9a\x78\x76\xdc\xae\xc7\x42\xfa\x81\xef\x28\x04\xb3\xe1\xd9\x26\xe2\x10\x32\x8d\xf9\xa1\x42\xfe\x1b\xf2\x80\x8c\xd7\xc5\x53\x40\x99\xf2\x3b\x2d\xaa\x0e\xcd\x51\xeb\x43\x76\xfd\x02\xc3\x28\x75\x68\x9f\xd0\x7d\xac\x82\x3e\x36\xbd\x02\x29\xdc\xc4\x5f\xff\x07\x58\x19\x4f\x3b\x6d\x78\xf3\x79\x5b\x22\xfe\x84\x25\x86\xbf\x61\x0c\x36\xc3\x24\x4c\xc1\x0c\xcc\xc1\x3c\xac\x80\x95\xb0\x16\x36\xd1\xc6\xd6\xcf\xb8\xbd\x3c\x23\x78\xa9\xb9\xef\xf4\xeb\x66\xdc\x23\x3e\x3c\x16\x74\xc0\x66\x8f\x53\x0f\x9c\xb4\xe9\xd7\x4d\x33\x80\x97\xf5\x9b\x87\x65\xc2\x13\x38\x0e\x0b\x70\x6e\xf8\xc2\x40\x4a\x25\xdc\x05\xa5\x4f\x37\x6e\x04\x9d\xd7\xb5\x5c\xfd\xfa\xbb\xa6\xf1\x0d\xde\xde\x71\xe6\x9e\xc6\x55\x16\x35\xad\xf2\x1c\xff\x19\xe3\x1c\xc1\x33\xfd\x1c\xd7\xbb\x2c\x6b\x56\x4e\x37\xcb\x3e\xf1\xef\x65\xf7\x21\xd9\xe6\x95\xad\xde\xe9\x3b\x53\xc6\xcf\x8a\x33\xbe\x22\x5d\xd5\xbd\x27\x87\x3f\x6b\x3b\x3c\xa2\xf0\xbc\xaf\x92\xd8\xf9\x4d\x7b\x5b\xc5\x09\x8f\xa6\xdf\xad\xb5\x81\x13\x7b\x5f\x7c\xea\x86\xf4\xdb\x23\x00\x09\x3e\x18\xa5\x97\x38\x7d\x5e\x1d\x7c\xe0\x8d\x48\x12\x87\xde\xe2\x64\x55\x6a\x83\xbb\x89\x86\xf6\x36\x4b\x58\xb4\x67\x1b\x8a\x50\x7d\x26\xb0\xc2\x34\xad\x42\x84\xe5\x63\x12\xde\x25\xf6\x2f\xee\x51\x94\x5a\xed\x09\xbd\x7a\x5c\xaf\x2f\x03\x4c\xa2\x42\xd8\xcf\x14\x40\x79\x4f\x03\x90\xad\x53\xfe\x26\xb0\x09\xdf\x9f\xf0\x3b\x72\x31\x78\x55\xde\x58\xbb\x2b\x28\xd9\xb9\xa0\x83\x3b\xd8\x83\xf2\x80\xc4\xd3\x81\x70\x5f\x0a\x47\xf5\xed\x5e\xf9\xc3\x7a\xbe\x9a\x27\xe7\x66\xcf\x3f\x0b\x8a\xdd\xbc\x9f\xba\x85\xf2\x04\x7b\xfd\x25\xfb\x2c\xf1\x4d\xde\xf5\x7f\x01\x2b\x33\x1b\x0f\xbf\x8c\x5e\x72\x33\x25\xe6\x14\xcb\x75\xa0\xf1\x0b\xf8\x01\x28\xe9\xc5\x5f\x0a\x7e\xca\xc6\x27\x6b\xae\xdd\xb0\x0a\x4c\xf9\xb5\x87\x97\xda\x5f\x9b\xa7\xea\xd7\x14\x36\x65\x7c\x77\x56\x6f\xe3\xbb\x4a\x18\x33\x1c\xcf\x5e\xf0\x5e\xf8\x8c\x0f\x1d\x4f\xdc\xc0\x25\x99\x7b\xad\x3f\xf9\x31\x70\x37\x9b\x24\xe4\xfd\x7c\x8d\x26\xd9\xca\xe2\x3b\x34\x48\x83\xa4\x45\xf5\x68\xde\xd6\x86\x7e\xc7\x0d\x8c\xb3\x3f\x08\x7b\x9e\x81\xea\x24\xb5\x15\xe3\xeb\x3b\x63\x36\x91\xfe\x5e\x60\x85\x7c\x65\x07\x1b\x9e\x68\xf4\x8c\x8f\x18\x4f\xdc\xbb\xcf\x25\xab\x3d\xe0\xfb\x7c\x07\x80\x95\x8f\xb2\x62\xcc\xae\xb1\xc3\x7b\xa0\x9b\x5e\xe6\x61\x08\x18\x68\x4a\xb3\xbb\x73\x5c\x43\xfa\x61\xe7\xd4\x8a\x01\x79\x53\xcb\xbc\x53\x67\x0e\x2b\x84\xfb\x58\x4f\xdd\xd0\x91\x6c\xce\x9d\x50\xd4\x45\x3c\xb9\xbb\x0b\xd5\x21\x72\xb0\xa0\x3b\x8e\xfb\x1f\xd0\x9f\xad\xf4\xe7\xfe\x12\x05\x90\xe9\x65\xc3\x01\x5f\x71\x7f\x71\x9f\x72\x01\x4b\xec\x79\x37\xbf\xe8\x23\xcc\xd4\xe0\xad\xf1\xd7\x91\xf1\x2a\xf6\xc2\xd8\x0e\xdf\x74\xc5\xe6\x22\xbe\x14\x3d\x60\xb6\x03\xe2\xf3\x84\x2e\x76\xce\xe4\x95\x38\xa3\x8b\x7f\x91\x60\xdd\x45\x3e\x51\x3b\xed\x45\x5f\xe3\xdd\x85\x20\x1a\x6f\x2f\x2c\x16\xdc\x05\x3e\xcf\x68\xd5\x05\x3f\x71\x26\x68\xfb\x10\xf7\x06\x49\x8c\x6d\x1f\x8a\xde\x94\xd4\xe3\x7a\x14\x98\xa1\x7d\x0d\xf4\xd1\xff\xb7\xb0\xee\x12\xb0\x3a\xca\x5e\x82\xb1\xbb\xd3\x17\x38\xda\x3b\x7f\x26\xb8\x17\xfc\x4b\xb9\xe8\x0b\x2f\x87\x72\xca\x69\x79\x16\x0e\x97\xa7\xe6\xc9\x07\xce\x85\xbc\x8a\x9f\xee\xf5\x05\x0e\x53\x0c\x0f\xf0\x52\xc4\xc7\xca\x1a\xaa\x3e\x41\x18\x92\x48\xf9\x38\x60\xa8\xb3\xa9\x90\x70\x42\x17\xfb\xb8\xea\x19\x35\x7d\x2f\xf9\xf0\xe0\x2f\xc2\x5e\xf4\x19\x41\x2e\xf4\x65\x20\xec\x85\xff\x70\x3c\x18\x45\xac\xba\xe0\xdb\xc5\x12\xe6\xd2\x13\xf2\x0f\x97\x3f\x9f\x0d\x21\x43\x18\x75\xe0\x20\x96\x6a\x52\x75\x72\xb8\xbc\xbc\xf2\xca\xc5\xb8\xab\x58\x34\xf1\xac\x4b\xda\x3b\xcb\x77\xed\xf6\x95\xe8\x2c\xc1\x15\xbe\xed\x90\x14\xb6\xf8\xce\xe8\x36\x2b\x15\x8a\x02\xe9\xb7\xc4\xc3\xd3\x99\x62\xc0\x16\x1d\xe3\x3d\xe2\x9b\x52\x24\x5b\xf8\xe7\x27\x61\xf5\xd2\xbd\x0e\xb1\x8a\x75\xc2\x29\x87\x2f\x3e\x8c\x3e\x43\x62\xa0\xee\x63\x29\xa1\x83\x82\xbb\x7b\xb9\x40\x98\xb5\xba\x2a\x31\x56\x74\x17\x2e\x06\x84\xd5\x2f\x25\xa5\xf0\x85\x62\x15\xcb\xfa\x8a\xc8\x7b\x90\x33\x8f\x15\x77\xa0\x74\x10\x7c\x46\xc8\x2b\xdf\x48\x60\x32\xe0\x25\x7b\x16\x90\xcd\xe4\xe6\x3a\x94\xc3\xfd\x78\x7d\x61\x73\xaf\x73\xa1\x74\x88\x88\x45\xab\x3b\x3d\x04\x56\x74\x27\x53\x56\x94\x5e\x60\xe1\x41\x93\x29\xa2\x16\xc3\xb9\x10\x10\x6b\x8a\x28\x1e\x55\xa1\xc5\x01\x5c\x24\x0f\xb2\xd8\x94\xa7\xf6\xaa\xcc\xfb\xcc\xbc\xd3\x81\x90\xc2\xfa\x59\x44\x14\xde\x28\xa5\x23\xb9\x44\x54\xf9\x5d\x4c\xb0\x10\xfa\xc4\x18\xfe\x93\xe4\x7f\xa7\xbd\xa2\x0e\x3c\xec\x38\x13\xaf\xa7\x34\x7e\x81\x22\x20\xef\x16\x09\xc2\xae\x52\x14\x47\x5a\xe3\xc9\x6a\x80\x51\x33\x33\x98\xfd\xd0\x11\xb0\x48\xba\x99\x83\xfc\x8c\xd2\x5d\x2a\x11\x2c\xef\x6a\x02\xee\x9d\xdd\x0d\x76\x72\xd0\xc8\xdf\xa6\x47\x33\xbc\x51\x6a\xaa\x1b\x8a\x8c\x14\xad\x42\x2b\x5d\xa3\x6e\x99\xe1\x58\x49\x27\x19\xe6\xa3\x0d\x7b\xd2\x37\x80\x16\xaa\x64\x00\x0f\x07\x36\x49\x1d\x5f\x1a\x84\xd9\x5a\x8c\x5f\xff\x5a\x98\x1a\x9d\xff\x81\x77\x8f\xc1\x1f\x31\xb3\x5a\x8c\x7b\x81\x33\xcc\xa3\xb6\x17\x85\xd3\x9e\xff\xce\x5f\xc0\x29\x75\x20\xc3\xc3\x9f\xfe\xa2\xf2\xf1\xa2\x98\x63\xfd\xf9\x1f\xf5\x5f\x55\x07\x82\xff\x57\xda\x93\x0e\xc7\x30\x03\xa0\x70\xf0\x57\xf1\x00\xe0\x88\xf1\x65\x38\xf7\x6f\x02\xcb\xac\x60\xfd\x15\xde\x0e\x56\xba\x78\xd2\xc3\x7f\x0e\xe3\xbd\x6b\x4f\x7a\x97\x10\x8a\xc2\xdf\x87\xdb\xdb\x7f\x0d\x9d\xd6\xa8\x48\x76\x80\x45\xae\x27\x87\x83\x4e\x8d\xa1\x1f\xf6\x30\xd7\x29\xbe\x70\x66\x7c\xdf\x72\x98\x85\xc2\xf1\x7f\x69\x40\x07\x90\xe9\x46\x14\x00\x0b\x5c\x8b\x22\x60\x95\x9b\xd7\x7b\x1d\x18\x63\xcf\xae\x74\x56\x21\x8b\xf8\xe2\x88\x4d\xf4\x5e\x30\x9b\x88\x6c\x7f\x51\x14\x1c\x97\x34\x25\x2f\x72\xd0\xbe\x20\xd3\xdb\xed\x34\x68\x0a\xd4\xfb\x9d\x80\x19\x38\xc5\x87\xa3\x36\x63\xaf\x67\xdb\xd0\x14\x01\x9b\x5e\x16\x1e\xe8\x49\x29\x83\x80\x08\x08\x4f\x25\x1b\x38\xd6\x8b\xb6\xb8\x1a\xbd\x2f\xf3\xb3\xa3\x15\x85\x5e\xb5\xb2\x37\xb1\x22\x72\x87\xd8\xda\x10\xc0\x6d\xc4\x15\xf3\x1c\x02\xce\x50\x95\x7c\x00\x06\x9e\xa6\xba\x01\x6a\x30\x0c\x53\xdd\x59\xb2\x6b\x28\x0e\xfb\xd7\x97\xbe\x2e\xba\xcb\xf7\xf5\x8a\x0b\x60\x56\xc9\x13\x92\x70\xe7\x6e\x74\x0e\xd2\x5e\x38\x25\x09\x89\x51\x86\x3b\x34\x7e\xe5\x06\x25\x0f\x24\xc5\x3b\x4b\x55\xe5\xb6\x9f\x31\x59\xaa\xde\xa9\x32\xdf\x64\x51\x74\x8e\xf6\x84\xfe\x65\x0c\x34\x44\x46\x7c\x88\x53\x69\xb9\x4d\x49\x00\x45\x63\xb3\xd4\xd0\x1c\xf0\x7c\xed\xa0\x34\x37\x72\x3f\xa0\x27\x08\x7e\x37\x62\x42\xc7\xde\x6f\x32\x47\x2a\xf4\x45\x23\x09\xb9\xbd\xff\x26\xe8\xed\x0e\xa1\x5c\xfb\x06\xd0\xdd\x6f\x81\xaf\xe2\x59\xa8\x2a\xa7\xda\x43\x45\x3a\xba\x04\x4e\xd0\x43\x60\xc4\x44\x4e\xd5\xe7\x3b\x8c\x02\x5f\xc7\x73\xa5\xb3\xf3\xd0\xf6\x04\x32\x16\xa4\x59\x1d\x41\x9a\xad\x11\x27\x34\xf3\xa3\x7c\x9e\x51\x86\x64\x3a\xfd\xd6\x5c\x02\x23\x08\x1e\xb4\x02\x7f\x07\x9f\x97\x84\x00\x16\x30\xac\x1c\x35\x1d\x9b\x43\xa7\x98\x95\xd4\x8b\x47\x97\x16\x6b\xc5\x49\x13\x11\x28\x41\x2a\xf0\x0f\x70\x24\x29\x5f\xba\xd5\xe3\x1e\x28\x06\xe9\x71\xba\x2d\x78\xa0\xaf\x3d\x03\x2d\xa2\x9e\xa0\xe0\x05\xee\x58\x9b\x0b\x13\xd0\xd2\x33\xb9\x46\x9d\xf0\x8e\xd0\xb5\x8e\xd6\x4a\x92\xc6\x80\x5b\x04\x06\xce\x97\xa9\x80\x1f\xe9\xbd\x4c\x61\x47\x3f\x38\x1e\x51\x11\xb9\xb7\xcc\xc6\xeb\x95\x1e\x0d\xc0\x67\x40\x6a\xc1\x95\xb6\x3a\xc8\x8f\xb1\x6f\xb6\x1f\x13\x7b\xa6\x71\x47\xc0\xfe\x13\xe7\xf6\x81\xbd\xcc\x1e\x2f\x54\xdd\x23\xf3\xaa\xb2\x70\x55\x39\x57\x15\xed\x0c\x1c\x47\x43\xe0\xb5\x42\xc4\xbd\x2d\x9b\xbd\x20\xcd\x25\xf8\xd6\x85\x1f\x4f\xa8\x03\x2f\xfe\x0a\x18\x5e\xa2\xc3\x11\x50\x97\x5c\x43\xeb\x22\xdc\xec\x41\xcc\xb9\xae\x68\x67\x07\xcc\x87\xe8\x70\x08\xb0\x44\x73\x47\xca\x90\x6a\xcf\x73\x09\x0c\x3f\x78\x3f\xb0\xef\x0e\x3f\x48\x8d\x68\x58\x0a\x78\x53\x8b\x3e\x2f\x22\xc0\xa1\x30\x8c\x37\x9b\x8c\xdc\xab\x6a\x2b\xf2\x8c\x4b\x19\x31\x7b\x44\x4c\x0e\x8c\x3e\xd0\x56\xe6\xd6\xf4\x84\x17\x53\x37\xa3\xe2\xe0\xe9\x88\x4b\x41\xa6\xa0\x3c\x28\x0b\x5c\x80\xa8\xba\x18\x4a\xca\x99\xf2\x5e\xe9\x08\x78\xa5\x76\x46\x72\x7e\xc7\x73\xb3\x2f\xd4\x19\xb1\xe5\x97\x77\x10\x0e\x48\x2e\x51\xae\x01\x9a\xfb\xf5\x17\x6e\xc4\x76\x34\x7f\xd1\x3c\x24\xc0\x07\x45\x42\x1d\xee\x5e\xfa\x5b\x6a\xdf\xc4\xa5\x97\x0f\x91\x7d\x5e\xba\xbb\x67\x18\xd0\x55\xcc\x3c\x0a\x03\x18\x79\xad\x11\x60\x86\x79\x00\x6e\x10\x85\xdd\xb4\x38\x3c\xf4\xe5\x05\x42\xa3\xd3\x48\x65\xbc\x04\x94\x37\x0f\xc0\xa5\xab\xb6\x5c\xfb\x13\x90\xe8\x01\x82\xbe\xee\xf0\xa3\x78\x0e\x28\xde\x63\x6d\x6c\xcf\xe8\x64\x1e\x01\x97\x5a\x30\xec\xd9\x7e\x2e\x0d\xb9\xba\x79\x68\x2c\xa9\xc6\x62\x7e\x0f\x60\x8c\xd4\xc0\xdf\xaa\x94\x88\x9c\x11\x67\x32\xd5\x72\x89\x9c\xa5\x8a\x34\x01\xba\x12\x4b\x8e\xbe\x81\xae\x70\x89\x9c\x5e\x45\x2e\xc2\x59\x5f\xe5\x0c\x4a\x74\xd6\x73\x31\x54\x5b\x54\x46\x09\x30\x56\xc0\x23\xe2\x16\x69\x2d\x51\xb0\xf7\xa7\x02\xb8\xb3\x35\x3f\x56\x1f\xae\xd1\x62\xd2\x08\x48\x37\x97\x8f\x31\x92\x4e\xa5\x8f\x95\xb9\x78\x0e\xb8\xf9\xac\xe7\x79\xf4\xd8\x94\xe2\x15\x35\x89\xbe\x51\x5d\x94\x54\x54\x98\xb5\x42\x9b\xb9\xfc\xf0\x13\x31\x4b\xaa\x55\xa9\xce\x84\x33\xc9\x8f\x82\x1f\x63\xaa\xb2\x34\xa3\x08\x23\x2c\x4f\x18\x6f\x10\xb1\xb6\xa8\x25\xdf\x20\x4a\xd9\x3b\xe4\x2e\xa0\xd0\x06\x6c\x6b\x65\xb4\xb7\xe9\xb8\xb9\xb4\x54\xdb\x00\x87\x5a\xf2\x2a\x78\x51\x24\x9b\x01\x2c\x4c\x64\xaf\x7f\xbd\xf8\x66\x2e\xf6\x04\x60\x6c\x2e\x22\xf0\xe5\x4e\x73\xaa\xd6\x75\xd7\x28\xbe\xaa\xe8\x76\x9a\x51\x45\xe1\xab\xc7\xcd\xa6\xc2\xf9\x65\x13\xdd\x04\x33\x13\x04\x13\xbd\x04\x0d\xd9\x5e\xa3\x23\xb3\xc8\x03\xdc\x0d\x13\x69\x04\x13\x59\x5b\xdc\xe1\x09\xe0\x79\x98\xd9\x27\x88\x79\xa9\x3c\x5b\x33\x5b\x74\x17\x69\x36\x57\xc6\xf4\xb8\xa9\xb9\x3c\xdb\x5b\xfd\x72\x89\x5b\x09\xa8\x9e\x58\x5a\xef\x51\xae\xe4\xd7\x59\x26\x92\x56\xc0\x70\x51\x22\x71\x8b\x68\x3c\x8c\x5f\x62\x2a\x02\x00\x83\x49\x42\xcf\xcc\x95\x7a\xbf\x22\x32\xb5\xd4\x8a\x5b\x94\x29\x67\x97\x92\xed\x8e\xa2\x1a\x5a\x75\x76\x93\x4a\x69\x7a\x55\x3c\x2c\x6e\x36\xf7\x00\x1b\x47\xfe\xcf\xb5\x09\xa6\x7a\xdc\x86\x72\xd2\xcc\xb4\xa8\xd4\x4e\xdd\x18\x54\x2b\x0b\x8d\xac\x86\x16\xe6\x8c\x60\xb5\x32\x2b\x98\x38\xab\x99\xb2\xbf\x39\xc9\xac\x76\xbb\x9b\x50\xde\x58\x0e\xa8\xec\x79\x2d\x54\xa5\xb3\x84\x89\xbe\x4a\xb2\x3b\x4b\xd8\xd4\x2b\x7a\x15\xe1\xa9\x68\x54\xdd\x5e\x7c\xce\xae\xb1\xaf\x54\xb7\x54\x3e\x47\xa8\x8d\x58\x94\x17\x94\x90\x74\xeb\xd7\x6c\xa9\xc8\x5d\xfd\x10\xda\xd4\x2e\xbb\x62\x06\x44\x80\x64\x17\xdf\x3c\x33\x34\x9c\x9d\xa2\x95\xfb\x7a\xfd\x58\xf3\x68\xe8\x4e\xc0\xf4\x9d\xe2\x1a\x51\x0b\xc5\x58\x19\xee\x1e\x2e\xd9\xad\xad\x2b\xcd\x24\xb5\xa3\x53\x34\xeb\x8e\xc7\xce\xc9\xda\xc6\x12\xbb\x1a\x6b\x91\xbd\x15\x7c\xf5\x5f\xb2\xf1\x0f\xc9\x68\x51\x90\x06\xec\xbf\x6c\x30\x04\xf4\x8b\x34\x5e\x61\x1a\xe6\x0e\x49\x11\xe9\xa4\x3d\x84\x64\xad\xb9\xcb\x84\xde\xfd\xac\x57\x37\x52\xe3\xb7\x40\x14\x4f\xa8\x6d\x0f\x57\x95\x13\xc2\x80\x15\x3b\x05\xe1\xb1\xbb\x97\xdd\x99\xed\x8e\x69\x56\x49\xbd\xd9\x4f\x16\x6d\x77\x6a\x78\xa1\xc7\xf5\xcc\x1c\x35\xfd\xbe\x72\xce\x94\xb8\x17\x92\xca\x9c\x57\x4d\x6f\x58\x19\x5e\x99\x9d\xd4\xc9\xdd\xa3\xa7\x99\x1a\x59\x6e\x69\x21\xa2\x65\xfc\x6a\x67\xb6\x3b\xa6\x0a\x3c\xbf\xdf\x1d\x18\xfd\x86\xa2\x51\x7d\xc9\x1c\xf7\x2a\xe1\x33\xae\x65\x44\xcc\xec\x44\x3d\x1e\xa7\xc4\x16\x46\xe5\x65\x50\xa4\xf8\xf5\x0c\x58\x8f\xb4\x3c\xe8\x49\x67\xc2\xec\x5d\x64\x01\xee\x4a\x3a\xeb\x19\x1c\xf1\x8c\x7e\xce\x92\x0b\xad\xcd\xca\x45\x99\xf5\x62\x6b\x00\x4e\x97\xc5\xc0\xc1\x86\x9c\xd7\xf6\xec\x14\x5c\xb2\x6a\x79\x69\xb5\x51\x4b\xe8\xea\x4c\x7c\x3a\x38\x7a\x4d\xcd\x0c\x9e\x15\xcd\x3d\x3b\xd8\x3d\xcb\x5e\xc9\xc1\xb6\x89\xcb\x9a\xd3\x8e\x3c\x6b\x6a\x5f\x8d\xa6\x5a\xd7\xd7\xce\x20\x78\xec\x91\xd2\x5a\x94\x95\x5e\x82\xdd\x4f\x29\xc1\x33\xd3\x0a\x9d\x66\xf8\xe1\x5b\x6e\xce\xbe\x4b\x2a\x63\x7b\xab\xb1\x4b\x12\x80\x74\x4f\xd8\xf5\x8e\xa2\x31\xd3\x77\x56\xf6\xdc\xd9\xc1\xee\x99\xf7\x4a\x5d\x2d\x69\xa4\x75\xb9\x73\x11\xf1\xd5\x68\xba\x17\x91\x41\x1a\x42\x74\x45\x5d\x33\x3d\x9c\x30\xaa\xce\xc2\xed\x3b\x6c\x58\x3b\xeb\xd9\xd1\x9c\x8c\x9e\x2c\x32\x27\x22\x83\x3d\x02\xbf\x3b\x13\x5f\x1e\x9c\xbc\xc1\xce\xfc\x3a\x2b\x80\xb3\x83\x73\xfd\x83\x57\x72\xf0\xc9\x94\xca\x2a\xd3\x8e\xdc\x7f\xda\x5d\x8d\xa6\x5a\xd7\x17\xa3\x33\x78\x8f\x9d\xef\xba\x48\x9c\x95\x2a\x0f\xe6\x5d\x97\x7c\x89\xfd\xd0\x45\xbd\x19\x48\xaf\x22\xd2\x48\x3d\x5d\xc7\x2a\x6a\x55\x54\xe9\x3e\x69\x28\x6c\xcc\xa6\x3e\xcb\x0e\x0f\xe5\x36\xd5\xba\x23\x96\x4e\xb6\xcf\xb8\x5e\x84\x96\xe9\x39\x2e\x51\x1e\xdf\x42\x57\x90\x30\xa0\xfb\x5e\xf3\x73\xb2\xc3\x23\xad\xcb\x86\x95\x8b\xb9\x66\x3a\x0a\x32\xbb\x6c\x8d\x54\x8e\x36\xe8\xa4\x5e\x5c\x82\x8b\xde\x69\xb7\xe4\x2f\xb8\xfe\x13\xe0\x83\x06\x2f\xee\x3d\xd8\xdc\xca\x82\xad\xa2\xc0\xcc\xee\x6e\x6a\x9c\x72\xd8\xec\x8e\x88\x4f\x87\xc1\x05\x3c\xf3\xf0\x6c\x0c\xe3\x0c\x0f\x60\xcb\xac\x0d\xf4\x28\xa3\x4c\x43\xac\x9a\xd4\x04\xd4\xd8\xc6\x1a\xc2\x4c\xfb\xca\xe7\x2b\xe5\xd9\x14\xb7\xe7\x68\x82\x68\x77\xa7\x06\x01\x78\x9f\x09\x07\x2e\x0b\x09\xa9\x09\xfb\x8e\xf9\x56\x91\x09\x7f\x48\x02\x25\x80\x3f\x4f\xfb\xc4\xf0\x29\xfc\x3f\xaa\x9d\xd1\x6c\xfa\x28\xbd\x5a\x8f\xf5\xd3\x1e\x84\x01\xcd\x39\xf2\x49\x63\xec\x05\xb6\xec\xde\x7d\xdf\xe3\x22\x60\x8d\xcf\x89\xb3\xde\x2e\x21\x59\x87\x1a\xa1\x90\xdf\xe2\x80\xfc\xf8\xad\x01\x3a\x05\x88\x2f\xe3\xef\xff\xb4\xc9\x18\x18\xf7\x26\x7e\xf8\xaa\xe0\x7f\x39\xf2\xfa\x42\xb6\x29\x81\x86\xde\x93\xb9\x6f\x7e\x96\x7b\x74\x69\x53\xc4\x91\x59\xa2\x1f\x40\x89\xa6\xdf\xe0\xfe\xdb\xb0\xf0\x37\x18\x04\xe6\x49\x44\xb0\xa6\x45\x9e\xa5\x49\x1c\x29\x29\x38\xa3\x70\x3b\x96\x90\xf9\x71\xf8\x6d\x73\xb3\xf9\x4b\xf6\x22\xb0\x87\x5a\x28\x17\x7d\x24\x21\x8f\xb7\x00\x45\x68\xa0\x66\x71\x4a\xc3\x3a\x1c\xf6\xe5\xfd\xed\xcd\xf5\x61\xaf\x79\x31\xed\xb3\xf0\xcb\xdf\xbc\x96\xcd\x3a\xa9\xa2\x16\x81\x2e\x0e\x04\x25\xbd\x0c\xd8\xb0\x02\xbc\x2b\xd1\x64\xac\x68\x9c\x98\xb1\xe9\x7e\x66\x7a\xde\xdf\x09\x2f\x3f\x45\x13\x67\xbc\x7c\xae\xe2\x71\xf0\x2e\xe6\xd6\x96\x5f\x63\x2d\x0c\x45\x64\x20\x3e\x02\xa9\x55\x82\x74\x60\x0c\xf7\x0f\x29\xa9\x5f\x25\x00\x08\x75\xf4\xd9\xb6\xc2\x76\x92\xcc\x7d\x0d\xfe\x51\x7c\x77\xd4\xbc\xdb\x3f\xb6\xbc\xd8\xcf\x4c\x0c\xdd\x62\xd0\xea\x15\x7a\x53\xa0\xa7\xf4\x8c\x7e\xc5\x9f\x14\x70\x9f\xc6\x2b\x9f\xb1\xfb\xb4\x96\xd7\xeb\xcb\x9b\x1b\x93\xba\x2a\x69\xe2\xe6\xbf\x01\x7e\x36\xff\xea\x4a\xbf\x1e\x3e\x26\xa1\xf8\x51\x03\x23\x05\xf6\x34\x24\x89\x86\xbe\xd4\x74\xc7\xb4\x6f\x27\xd9\x0a\x61\xb4\x8c\xab\xaa\x1c\x8d\x56\x73\xf7\x68\x5e\x40\xc8\x0a\xf2\x44\xc6\x3a\xff\xbe\x49\x70\xce\xed\x13\x88\xe5\xd3\x69\xa1\xe4\xd8\xc5\x16\x09\x34\x74\x5c\x6a\x3b\xf7\x3d\xdf\x6a\xdd\x6b\x9f\x5a\xd3\x8b\x26\x4c\x8e\x57\x80\x27\x8d\x26\xd7\x74\x53\x01\x47\xca\xa2\x53\x3e\x9e\x21\x6d\x01\xe4\x64\x1c\x1d\xd4\x5a\xe3\x9c\xef\xc8\xa4\xdf\x08\xbf\xeb\x49\x03\x24\x07\x0e\x2f\xb7\x25\x4b\xe4\x08\x70\x81\x32\x60\x9e\xef\xa4\xaf\x88\x9f\xe8\xf1\xfc\x78\x73\x75\x3c\xf4\x56\xf3\xae\x9a\x8b\x70\xca\xa2\x06\xbc\x22\xa1\xd6\xe8\x28\xff\x0d\xf1\x7d\x23\x4b\xf6\xb4\xda\x17\xbf\x90\xb9\x21\xf5\x84\x48\xb5\x24\x23\x3d\x46\x84\x74\xe5\x60\x26\x09\x8c\x50\xc3\xc2\xe7\xb6\x5e\x70\xd7\x02\xcc\xfa\xcd\xf0\xd3\x14\xe7\x73\xd2\xf1\x96\x63\xd2\x83\x3e\x00\xc0\x10\x02\xa7\xd5\xa5\x13\x35\x36\xeb\x9b\x2b\xf7\xd2\xbf\xe4\x6e\xa8\x7d\x62\x9a\x77\x80\x62\x1b\x42\x00\x10\xe9\x00\x48\x44\x47\x21\xde\x31\x18\x8c\x5e\x83\x60\x4b\x21\x0b\x0d\xc4\x35\xde\xf4\xcb\x31\x6c\xae\x6f\xf6\x43\x53\xed\xa7\x26\x5e\x0d\xda\x12\x51\x48\x57\xeb\x70\x74\xea\xc0\x7f\xf0\xb8\xc4\x10\x4a\x3f\xc8\xa2\x04\x90\x86\xc7\x69\xb4\x12\x9b\x05\x1e\x72\xdb\xe9\xd7\xe2\x23\x42\xfe\x1f\x8e\x7d\x7f\xfd\x69\x0d\xc2\xaf\x33\x9c\x27\x9e\xc0\x07\x20\x21\x7a\x8e\x1c\xd9\x8f\xd8\x44\x66\xe6\x6d\x94\x58\xdd\x7a\x1d\x23\x30\xf4\x87\xff\x11\xe4\xda\x90\x02\x0c\xb4\xd1\x62\x0e\xf3\xb4\xc6\x02\x44\x50\x3c\x29\xb9\x83\x3b\x21\x94\x5f\xd7\x80\x2d\x27\xb7\xd2\x96\xea\xcd\x41\xd0\x1f\xd3\x08\x04\x74\xfe\xba\x1f\x82\x5b\x79\x0e\x48\x56\x7e\xc6\xf3\x27\xac\x0c\xd1\xa4\x1f\xbf\x21\xdc\xea\x8f\x48\x7c\x4c\x85\xb7\xa1\xd0\xc7\x46\x96\x7b\x5d\xd1\xaa\xb3\x68\xb4\x11\x63\x6c\x8e\xa1\x36\xd5\xc3\x81\x1c\x12\x61\x70\x1a\x57\xcc\x2d\xbe\xc0\x65\x6c\xf2\xa0\x25\x1d\x6d\x41\xf1\xd5\x47\x9e\x63\xa8\x4e\x01\x5d\x2d\x02\xf7\xe3\x17\xd9\x61\xef\x9c\x75\x5a\x2f\xf3\xe8\x5a\x51\x86\x8b\x2d\x01\xc4\xf1\xc6\x7f\xe4\x4a\x06\x06\x17\x32\xc4\xd1\x57\x2f\xab\x98\x4f\x4b\xa1\xc9\x6d\x28\x5d\x28\x01\xa2\x5c\x59\xd8\xf3\x1a\x0c\x02\xed\x9e\x3b\xad\x5a\xd5\x24\x51\xb0\xa3\xed\xcd\xdc\x97\x9e\xd2\x10\xb3\x30\xc5\x68\x09\xb7\xf0\xb7\xd8\x3c\xf0\xd2\xf8\x0e\xc0\x45\x7b\x9f\x34\x1f\x74\xc6\xaf\xad\x6e\x2a\x8c\xc3\x06\xbd\x56\x7d\x05\xa8\xdf\x1c\x1d\x94\x50\x5b\xd8\xbc\xed\xad\x0f\x93\x91\x80\x04\x7a\xe2\xd6\xa5\x8b\x90\x55\xeb\xd3\x28\x63\x4a\xa0\xa2\xd2\x7b\x1d\x13\x90\x53\xcd\xac\xc9\x59\x60\x1e\xdb\x0e\x59\x3e\xc7\x39\x32\x08\xcf\xe8\x05\x36\x5a\x3d\x61\x59\x93\xbe\x01\x8f\x38\x09\xf7\x06\xe6\xa1\x32\x51\x28\x32\xee\x31\x94\x80\x44\x15\x49\xca\x59\x07\x79\x7a\xa2\x8f\xc1\x20\x1b\x07\x81\x5d\xde\x89\x8c\xbc\x6b\x62\x63\x15\xef\x64\x45\x03\xd9\x2a\x48\x3b\x21\x0e\x89\x76\x07\xe8\x94\xaa\xa5\x7f\x48\x5e\xcf\x8a\x91\x2c\x60\x34\x33\xb7\x49\xb8\x68\x22\x10\xe2\x68\x42\xf4\xe5\xca\x66\x07\xa0\x5e\xe9\x2a\x09\xcf\xb4\xcd\x76\x39\x10\xdb\x04\x52\x4a\x89\x41\xb0\x45\xf9\x17\xcf\xdb\xfe\xe3\xb0\xae\xfb\x04\x05\x1e\x14\xac\xd0\x08\x05\xa9\x39\x08\x17\x10\xea\x02\xb6\x6e\x97\xe9\x4a\xf0\xfc\x2a\x7c\x0a\xc6\xd6\x95\xb0\xa4\xb8\xa1\x97\x1b\x99\x5f\xb0\x1e\x29\x45\xa2\xf4\x83\xeb\xf9\x50\x1b\xb0\x6a\xaf\x1e\x08\x49\x4b\xad\x2d\xf7\x4e\x7c\xbc\xbf\xbb\xbd\x3c\x69\x7e\x6c\x05\xee\x66\x28\x00\xbf\xc1\xc1\x80\x15\xed\xf0\xb4\x43\xf1\x09\x05\x1c\xa6\xb9\x23\xed\x1f\x84\x99\xe0\x79\x24\x3b\x0a\x32\x75\xca\xcd\x52\xec\x4d\xed\x3a\xde\x50\x06\xfa\x33\x01\x7c\x2c\xed\xa4\x65\x36\x39\x2b\xa1\x27\x0d\x55\xc2\x9b\xd6\x51\x1d\x64\xc1\x7e\xd4\xad\x98\xa5\xc8\x9c\x84\x5a\x02\x08\xdb\xbb\xb5\x53\xda\x52\x2f\xef\xe3\x80\x18\x7a\x28\xad\xd6\x9c\xea\xc4\x4c\x0b\xae\xa6\x03\x9e\x03\x1e\xb5\x38\xbf\x6d\x3e\x22\x11\xac\x47\xa4\x7e\x44\x62\x07\x45\x84\x76\xc3\x21\xb1\x6c\x0b\x3b\x09\xb0\x52\xda\x02\x9c\xcb\xeb\x68\x01\x93\x8c\x2d\x7e\x0f\x1d\x92\x97\xdd\x20\xbc\x10\x2f\xd4\x8b\xf4\xa2\xbc\xc4\x5e\xd2\x6e\x87\xd3\x16\xa4\x08\xae\x01\xff\x8a\xb7\xca\x4f\x5d\x65\xed\x8c\x24\xf3\xf9\xb0\xce\x50\x8b\x45\x19\x47\x88\x0c\xe6\x80\x54\x55\x0c\x2e\x4b\x9c\x62\xd9\xe8\x3d\xdf\xee\xf4\xfe\xf6\xf4\xee\xe2\x5d\x3c\x17\x38\x3b\xef\x37\x42\xa8\x57\xce\x2f\xd3\xed\xf6\x3d\x4e\xaf\x88\xb0\x36\xfc\xe0\x29\x47\xa0\xe1\x36\xa6\x43\xa3\x46\x31\xbc\x2c\x11\x59\x53\xd8\xca\xa1\x46\xac\xea\x4f\x47\xc9\x03\x18\x99\x1e\x1c\xb4\x4d\x60\xe7\xba\x6c\x96\x89\x2f\x40\xde\xd7\x16\x98\x4e\xa6\xfc\x19\x11\x0c\x9f\xd7\x50\x10\x6f\x53\x88\x2d\x1b\x01\xa1\x32\xf9\x19\x88\xee\xdc\x67\xa9\x12\xeb\x39\x03\x4f\x79\xd8\xee\xd7\xc2\xf3\x9d\x01\x05\x16\x46\x6c\xb5\xc8\x7b\x6d\xe0\x21\x33\xfa\x51\x4e\x5b\x75\x2c\xcc\xc0\x6d\x1a\x4c\x88\xea\x98\x27\xc9\x89\x6d\x23\xb6\xd0\xe5\xa8\x07\x27\x9d\x6e\x13\xeb\x90\xe0\xaa\x13\xb7\x41\x7d\xbd\x63\xbb\x61\x69\x5a\xb6\xe7\x37\x9f\x21\x3d\x38\x54\xbb\x7a\x17\x49\x0a\xeb\x19\x3b\x9c\x76\x94\xc8\x1e\xd5\x30\x5d\xe0\xe3\x7a\x5b\x04\xa3\x6c\x30\x00\xd2\x69\xc8\x23\xe3\xac\xaf\xb8\x2c\x64\x17\x66\x0c\xc0\x9c\x25\x56\xf5\x7c\x14\x4f\xe2\x83\x4f\x9c\x79\x9b\x88\xe9\x02\xbb\xd7\x00\x70\xac\x5b\x12\x17\x27\x03\x2a\xad\x8a\xdc\x8b\xeb\xd3\x44\x89\x6c\xba\xe6\xfe\x19\x0f\x45\x02\x53\x04\x53\x1b\x7d\x93\x08\xd4\x7d\xb5\xbd\x61\x7a\x89\x9a\xf4\x09\x02\xa3\xd8\x9a\x77\x8b\x46\x38\x29\x6a\x3e\x6a\xe5\x37\x5a\x99\xf6\x33\x8a\xe2\x47\x82\x60\x34\x3f\xfe\x01\xd6\x8a\xa6\x78\xa9\x8d\x23\x23\x5b\xeb\xcd\x5e\x90\x85\x35\xd7\xcc\xf7\xb7\x68\x61\x3c\xd5\xa0\x82\x6c\x42\x4a\xad\x80\x38\xc7\x63\x14\x21\xef\xeb\xff\x91\xf3\x88\xf8\x72\x5c\xc2\xd9\xdb\x32\x27\xca\x29\x8b\xa1\xd0\x2f\x1d\xad\x78\x13\x42\xa1\x03\xd1\x7d\x76\xee\x05\xc7\xa6\x64\x35\xb4\xa9\x88\xd8\x54\x3e\x4b\x07\xb4\xff\x49\x10\x9a\xf0\x7e\x0c\x28\x28\xd4\x02\xb8\x38\x34\x64\x8a\x32\xec\x2c\xb1\x99\x1c\x86\x3e\xb7\x16\x39\x4e\xcb\x5a\xad\xb2\x92\x6f\x34\xe0\x63\x89\x85\xa8\x17\x5a\x9e\x52\x8e\x3c\x85\x1d\x29\x5c\xa2\x86\x71\x3b\x8b\x42\x73\xfa\xa6\xd1\x2e\x5c\x73\x09\x47\x90\x22\x93\x6d\x80\x96\x69\xbb\x65\x3e\x0c\xdd\xe0\x7e\x64\xb3\x7d\x23\xb0\x02\x83\xee\x9a\x19\xd1\x4e\x57\x69\xb2\x8a\x6a\x1f\xf5\x6b\x9c\xc8\x71\x2c\xd3\x27\xb0\xb8\x0c\x68\xe7\xb6\xdc\x08\xe7\x42\x24\x96\x1d\xe5\x83\xbc\x12\x91\xff\x94\x88\x43\xfb\x5c\x72\x8f\xfd\xe0\xce\x08\xe4\x75\xba\x91\xbc\x16\xeb\x0c\xb0\x80\xf1\x6f\x9a\x6f\xc0\x8f\xce\x14\x3b\xa1\x8c\x95\x7d\x4c\x61\xb5\x0c\xf4\x0d\xbe\xa3\x5c\x38\x0f\x3a\x13\x9d\x58\x6d\x99\x24\x71\x79\x50\x26\xfe\x19\x4a\xd2\x3e\x93\xae\x50\x02\x62\x95\xe8\x57\xf0\x89\x98\x86\xdb\x25\xdc\x5b\xa7\xe9\x57\x8d\xc0\x1b\x2e\x8d\x57\xb6\x26\x15\xae\xa6\xcd\x66\x41\x28\xa9\xd2\xe8\xf2\x11\xfe\xe5\x21\x74\x3a\x74\x4f\x7e\xd2\x40\xbc\x84\x4b\xad\x23\x91\x6b\x0d\x89\xce\x10\x07\x02\xc6\x54\xc0\x54\xa7\x45\xf4\x79\x44\x3f\xb3\x2b\x85\x0e\x32\xa5\xa4\xe0\x20\x56\x8a\x2e\xfc\xc1\x42\x1b\x59\x14\x3f\x68\x55\x60\xcc\xb6\x9a\x7e\x43\xa8\x2a\x5a\x5f\xae\x68\xb5\x58\xd4\xab\x55\x7b\x18\xd5\x28\x92\x71\xeb\xec\xef\x76\x06\x56\xb1\x74\xff\x92\x0c\xc7\xc8\x50\x85\x3e\xc0\xb3\x88\xce\xf4\xcf\xf4\x2d\xdd\xd3\xc2\x17\xe3\x5c\xbc\x1f\x05\x7a\x73\xa9\x76\x3d\x86\xcb\x7c\x40\x60\x88\x03\x05\x20\x9d\x13\x61\x05\x0c\xbe\x3e\xdc\x40\x5c\x83\x4c\x93\x55\x05\x3e\x53\x7b\x2d\xc8\xec\x1a\xa5\xb8\x71\xbc\xd4\x22\xc6\x0d\x47\x42\x70\xaf\x9f\xd2\x91\x56\x83\x54\x7c\xbd\x3e\xa8\x9a\x9a\x20\xc6\xc4\x88\x34\xb1\x4f\x73\x19\x18\xb5\x07\xb0\x18\xbd\x10\xb2\x0f\xc9\x69\x6f\x3a\x56\x82\xaf\x57\x9b\x4e\xc3\x5f\xaa\x5a\x6b\xda\x32\x2f\xa8\xaf\xbc\x87\x84\x10\xf0\xe7\x53\x92\xba\x31\x81\xeb\x22\x2e\x60\xa3\x63\x67\x84\xd3\x2e\x6c\x48\x18\xba\x8d\xb0\xd9\x46\xb8\xc5\xd0\x8d\x49\x38\xb5\xd6\x0d\xd5\x21\xe8\x4b\xd1\xa3\x63\x53\xa7\xc9\x66\x29\x03\x7b\x3c\x1f\x65\x9f\xec\x92\x2a\x5e\xd2\x47\x8f\x4f\x6a\x19\xdc\x7a\xb6\xb0\x67\x0c\xe8\xe1\xea\xcd\x06\x6c\xf5\x70\xf1\xf4\x91\x03\x12\x80\xaf\x54\xc0\x1b\x83\x71\x44\x89\x9f\x1b\x6f\x5f\x85\x93\xcb\xee\x74\xca\x20\x6b\x47\x2d\xcc\xab\x7d\x67\x58\x96\x5f\xcb\x02\x12\x75\xa4\xe2\xa8\x6d\x3d\xdd\x50\xc8\x00\x13\x6d\x38\xd2\x2c\x02\xf5\xea\x7d\x70\x92\x37\xe3\xea\x7c\xb2\xbd\x14\x56\x94\x51\x6f\x1c\x96\xf4\x30\xef\x33\x10\x91\xf0\x41\x73\xa0\x7c\xc8\x97\x28\x50\x8a\xf6\x84\x48\xb3\xe4\x90\x88\xeb\xd3\x14\xb8\x0c\x87\xc1\x2e\x37\xe3\xcc\x9f\xfc\xea\xa2\x48\x82\x72\x81\x50\x76\x9c\x38\x8d\x10\xa0\xf0\x6b\x0f\xec\x39\x36\xfc\x7e\xcb\x70\x26\x25\x81\xc4\x4a\x01\xbc\x93\x91\x87\x35\x37\x43\x3d\x53\x54\x2f\xc8\x84\x42\xfd\x2c\x03\x58\xc7\xc0\x96\x6a\xc5\xa9\x96\x25\x9a\xac\x57\x3c\xf5\x49\x3a\x00\x80\x02\xf3\xba\x6f\x70\xa9\xcb\xda\xd0\xc1\x56\x63\x07\xdf\x9e\x8a\xdf\x9a\x61\xf4\x88\x4c\xf1\x75\xf6\x3f\x64\x27\xbc\xdc\xee\x7b\x23\x8b\x0b\x81\x5f\x9b\x0a\x82\xa6\xb0\x80\x42\xad\x50\x04\x93\x52\x5d\xee\xb2\x18\x2d\xe2\x09\x3e\xb1\xc3\x03\xe1\x18\xa9\xaa\xc1\x5f\x25\xbe\x80\x9a\xb7\x81\xb6\xb5\x3d\xe9\xd3\x04\x94\x3a\xb5\x5a\x2f\xf2\x0f\xf1\x9a\x76\xef\x86\x08\x0e\xfa\x8a\x45\x77\x5e\x3b\x28\xf1\x97\x4a\x10\x0d\x85\x2a\x28\xbb\x1d\x0b\xc5\x5f\x0a\xc1\x79\x9e\x8c\xa4\x55\x6c\x2d\x5e\x54\x5c\x23\x45\x5d\x05\x5c\xf1\xe1\x4f\x58\xbc\x2a\xfd\x04\x35\x6a\xbd\xf6\x9b\xfb\x07\x77\xdf\xde\xa8\x16\x5b\xd8\xe9\x15\x17\xa1\x0a\x1d\xcb\xa6\xac\x94\x3b\x60\x2d\x18\xf9\x84\xa5\xa3\xb0\xb2\x1b\xe1\x2a\x0a\x6c\x33\x0d\x95\x50\x97\x08\x64\x07\x87\x08\x98\x32\xc4\x74\xe5\x33\xb6\x88\x0b\xaa\x59\x10\xa3\x1e\x2c\xd5\x9f\xb1\x42\x9b\xe4\x52\xd2\x59\xed\x58\x8d\x29\x39\x7a\xc9\x61\xfd\x31\x99\x3f\x89\xa6\x96\xff\x48\x9f\x23\xd4\x90\x21\x7e\x5f\xbd\x05\x65\x8e\x18\x78\xfa\xaf\x1e\xb7\x1f\xd8\x52\x8d\x92\x13\x5f\x5b\x03\xf9\x74\x0b\x93\xcd\x88\x40\x5f\x6d\x6b\x5e\xc2\x54\x57\xd5\x20\xc8\x6b\x36\xd5\x50\x24\xe4\xf7\xba\x67\x11\x67\x00\x2f\xc4\x0b\xf5\x22\xbd\x28\x2f\xb1\x97\xb4\xdb\x01\xa0\x03\x82\x6f\x8b\x5c\x89\x9e\x08\x5e\x1d\x99\xa0\x69\x34\x61\xd8\xd4\x3a\x04\xe0\xfa\x14\x8a\xff\x53\xa7\xa2\x3a\x87\xd1\x01\x82\x7a\x2a\x27\xa7\x1a\x45\xe0\x04\xfa\xda\x99\xb6\x77\x57\x3a\xf3\x55\x07\x01\x57\xf7\xc7\x4e\x0c\xab\x84\x1f\x6d\xc6\xd7\xcd\xa8\x48\x38\xe9\x70\x92\x47\xf0\xeb\x7c\x91\x1d\x25\xe6\xf9\x68\xf2\x19\x66\x79\x4d\x9c\x01\x3e\xf3\x01\x7a\xda\x2e\x51\xc4\x32\x1e\x10\x97\xff\xe5\xbf\x87\x89\x81\xe2\xaf\xcd\x5f\x4b\x04\x3b\xd8\x85\x2f\xb6\xe9\xc0\xdf\x35\x38\x2c\xfe\x22\xa1\x50\x65\xfc\x37\x4f\xc6\x8f\xf8\x11\x5c\x89\x9f\x24\xb5\x58\x30\x4c\xd1\x23\x2a\xac\x84\x86\xea\x99\x28\x56\x3d\x0a\x72\x13\xa0\xa0\xdf\x68\xe7\x35\x03\x13\xcd\xf3\xb3\x36\x4a\x97\xc1\x9e\x51\x56\x91\x3d\x07\x2c\x15\x71\xbb\xc3\xb6\xa0\xc3\xce\xe0\x4b\xee\xa2\xcf\xe3\x75\x81\x05\x90\xd7\x5a\x4e\x50\xe8\x93\xdf\xa1\xaf\x36\x15\x3e\x19\x4e\xf1\x8d\x37\x6d\x32\xaf\x00\xcf\xda\x54\xd9\xde\xe3\x63\x56\xd6\xc9\x80\xeb\xea\x23\xc7\x70\xc4\x40\x40\x39\x07\xcb\x15\x09\x50\xb8\x6a\xa0\xd6\x0d\x64\x9c\x06\x6b\x5a\x2b\xae\x9e\xa7\x77\x3c\x75\x89\xfb\x1d\x64\xad\x05\x36\x51\x5e\x49\xba\xd1\x35\x45\x24\x9b\x03\xa1\x30\x0e\x21\x65\x84\x48\x60\x9e\x93\x26\xf4\xf7\x97\x8d\x2d\x32\x43\x26\x37\xf1\x97\xf9\x53\x28\x1e\x5f\x5c\xab\x5e\x3e\xca\x86\xca\x5a\x62\x32\xd7\x98\xa1\x4d\x96\x4a\x65\xa8\x4f\x32\x8b\x95\x25\xc2\x32\xfc\x42\x55\x85\x95\x2c\x2b\x2f\xbf\x5a\x5f\x4e\xd6\x8f\x48\x5f\x7f\x7d\xf2\x74\xfa\xb4\xb7\xbb\xfa\xb4\xfe\x34\xd8\xed\x06\xd3\x96\x79\x1c\x49\x0e\xe1\x54\xf0\x19\x1f\x27\x3c\x41\xd3\x4e\x1f\x19\xd9\x2e\xf3\xb6\x2a\xb5\x69\x4f\x77\xc1\x2b\x08\x19\x35\x40\x6c\x79\x77\x37\xa7\x83\x73\x0d\x4c\xad\x4b\xb6\x3c\x2b\x68\xa2\x27\x11\x7e\x8a\x75\xa7\x3d\xbe\xce\x73\xde\x05\x55\xe3\x23\x2f\x2b\x5d\x8e\x97\xcf\x4d\x3d\x4e\xdf\x5e\x61\xbb\x09\xdc\xba\x5f\x76\x0e\x92\x56\x7c\x34\x5e\x0c\x1e\x6e\x59\x2f\x8d\xdf\x7d\x5a\xc3\x4d\xf6\xb8\x8f\xc8\xb4\x56\x2a\x6c\x7f\x9d\xb7\x1f\xfa\x12\x36\x42\x9c\x80\x3d\x17\xa6\x89\xf5\x29\x50\xb7\x5c\xed\x71\x6e\x3a\x43\xcf\xba\x06\x4f\x45\x75\x93\xf4\x26\x5b\x04\x83\x1e\x23\xba\x8a\x32\x20\x4a\x9b\xd5\xbc\x13\xa8\x8e\x6d\x22\xbe\xcf\x10\x79\x31\x37\x48\xee\xae\x73\x1a\xa5\xc4\xbb\x4a\x95\xc9\xa4\x5e\x55\xa8\xeb\xe3\x92\xe0\x05\x73\xc8\x49\x9c\x88\x71\xc8\xa1\xfe\x1a\xb7\xd7\xfd\x25\xdc\x69\x78\x83\xb2\x30\xdd\xa4\xdd\x09\xfb\x76\x7f\x44\x63\x0d\x1f\xe8\x46\x51\xc1\xb0\xe6\xc4\x80\xaf\xe8\xb5\x38\x65\x35\x81\x38\x40\x99\x21\x00\x09\x37\xef\x60\x00\x07\x8f\x08\x15\x63\x33\x20\x42\x3a\x0e\x01\xc2\x09\x0f\x2f\xf0\xa3\x11\x67\x23\xa9\x7e\x7a\x4d\xd0\x5a\x13\xea\x47\x58\x76\x12\x07\xb0\x09\x63\x1d\x14\x61\xcd\x54\xe5\xcc\x3a\xc3\xdc\x2e\xbf\xb5\x5d\x42\x20\x78\x0a\xef\xb3\x29\xc9\xce\x59\x1e\xe1\x50\x04\xbd\xa0\xfe\xc8\x62\x82\xdb\x69\x3c\x10\xfb\xf7\x3b\x62\x66\xac\x6d\x67\xa8\x5a\xe1\xaf\x12\x85\xd8\x4e\x1a\xf0\x27\xde\xe0\x17\xae\xee\x89\x2f\xc6\xae\xce\x96\x62\x6a\xec\xe9\x53\x23\x6d\xe1\x71\x49\x75\x95\x22\x8b\x6a\x4f\x93\x4e\x95\x69\x20\x8a\x07\xbf\x13\xb6\x85\x83\xeb\x1d\x1e\xfe\x21\x08\x32\xfd\xa1\x18\x44\x5a\xc0\x53\x9b\x8f\x1c\xec\x0e\x47\xe8\xa7\xaa\xbc\x65\xe3\x0b\xc8\x7b\x59\x5b\x65\xfb\x62\xcf\x15\x77\xf4\x0d\xe1\xde\x39\xeb\x3e\x41\xc1\x4d\x5c\xf7\xae\x71\x98\xb5\x24\x03\x59\xa5\xf6\x2f\x42\x0c\xf9\x98\xf9\xca\x60\xd4\x1c\xf3\x6e\xef\xec\x64\xef\x6a\xff\x6a\x64\xc8\x58\x23\xb4\x8e\xe3\xed\x48\x52\x88\x09\x45\xb5\x00\x11\x38\x8c\x58\x7a\x47\xf8\x15\x22\xeb\x58\xcd\x50\xc5\x6d\x22\x37\x28\x4c\x48\x39\xe3\xe6\x1c\xd0\xee\x01\x74\xe7\xb0\x08\xa1\x1e\x40\xa4\x04\x30\x6b\x04\xaa\x89\x9e\xda\xc7\x79\x8b\x60\x9c\xb2\xe3\x89\x0e\xad\x43\x6b\x53\x30\x99\x5f\xeb\x13\xb9\xf1\xcf\xe1\x20\x0e\xdd\xbb\x89\xbe\xe5\x71\x5c\xa4\x19\x4b\x17\x82\xeb\x61\xc6\x36\xe0\x66\x36\x9b\x9d\xd0\xb4\x93\x7b\x02\x8d\xad\xcd\xa6\x49\x4c\x30\xb6\x91\x02\x50\xe2\x76\xf3\x35\x07\x61\xa8\x3c\x8d\x27\x8f\x2e\xa6\xee\x26\x72\x08\x05\x84\x62\xad\x31\x11\x01\xc9\x41\x03\x42\xa5\x73\x98\xb0\x7d\xb1\x06\x51\x93\xf4\x4f\x0b\x11\x19\xca\x57\xf5\x3e\x43\xc2\x8a\xe2\x5f\xd0\x47\xfd\x59\x07\x9b\x44\xb7\x31\x05\x74\x6f\xb8\xa2\x87\x29\x7b\x3e\x96\xe0\x25\xb8\x42\x69\x88\x65\x23\xcb\x3a\x0c\x62\x2b\x3c\x49\xe7\xa4\xe7\x30\xe9\x11\x40\x71\xa2\x04\x47\x4e\x53\x21\x36\x09\x87\x15\x5b\x75\xc2\x86\x0f\x05\x2e\x24\xbe\xe7\x7a\x72\x46\x15\x3a\x36\x94\x9b\x30\xff\xe2\xca\x87\x70\xcf\xea\x4a\xfc\x36\xed\xec\x1a\x91\x41\x6a\x9c\x8b\x50\x44\x73\xb9\x8c\xb4\xba\x04\xa6\x4b\x88\x6a\xa7\x62\xaf\x1a\x28\x9a\x2d\x92\x88\xf2\xda\x21\xdf\x45\xf7\x57\x31\x09\xc7\xdf\xda\xaf\xa7\x24\xd4\xe9\x68\x6b\xcd\x85\x34\xc5\x49\xa5\x0e\xcf\x26\x1c\x01\x4c\xc3\x86\x0d\x75\xa8\x68\xa4\x9e\x97\x19\x47\x06\x49\x9d\x1e\xb7\xc4\xaf\x95\x74\xa5\x4b\xbf\xc6\x69\x00\x08\x0f\xa9\x71\xfc\x25\xf9\x6d\x49\xb3\x8d\x5c\xbb\x96\x19\x40\x62\x42\xde\xa4\xa4\xd3\x18\xec\xcb\xfe\x14\x29\x12\x2a\xaf\x52\xb1\xb1\x11\x32\x58\x1a\x77\x88\x8f\x29\x3f\x2a\x3e\x16\xf8\xa5\xc7\xb7\x42\x0f\x21\x06\x83\xe3\x54\xad\x34\xd2\x6e\x1e\xe3\x33\xdf\x02\x1a\x90\x41\xa1\x1e\x19\x91\x8f\xcd\x34\x7c\x6b\xe0\x58\x04\xb6\x80\xa3\xa6\x34\x4a\xd8\x4f\x15\x66\x00\x18\x9a\x53\xf9\x95\xb6\x3b\x81\x1b\x7b\x49\x27\xa7\xd8\xd8\x97\x93\x80\x8f\x5c\x06\xd8\x14\x81\x44\xc4\x5a\x4c\x1f\xb3\x31\xae\x80\xe4\xc9\x16\x11\xf0\x86\x23\xf2\x06\x1a\xfe\x1c\xe1\x63\x64\xdc\x9a\xee\xfd\xa8\x0e\xd3\x66\xc2\x60\x41\xc2\x5a\x8d\xad\x4b\x32\x5c\x17\xd1\xae\xe1\x6e\x87\xaa\x54\x9b\x19\x15\xc8\x36\x45\x0c\x79\xe6\xab\x50\x49\xcb\xbb\x13\xb2\x91\x13\x6c\x13\x53\x8e\x51\x54\xff\x20\x4c\x92\xc1\xbc\x1d\x58\x69\x90\xa2\x4e\xaa\x22\xb1\x33\x5c\x23\x3d\x1e\x20\x76\x3b\xcc\x0a\x1e\x59\x98\xa3\xb2\x67\x81\x95\x97\x7a\x46\x58\xab\xb3\x80\xc7\xba\xba\xdb\xef\x50\xd6\x27\x63\x4e\x96\x49\xa5\xad\xf6\x8f\x6a\xf6\x9e\x6b\x00\xb2\x52\x90\x7b\x98\x3f\xf2\x5d\x87\xfb\x53\xd3\xcc\x80\xff\x2c\x16\x09\xb2\x91\x88\xf1\x65\x00\x35\x56\xf1\xf8\x02\xa2\x00\x6e\xf4\x56\xc1\x4f\x57\x6d\xcc\xbc\xa8\xcb\x72\x9d\x69\x4f\xc9\xbc\x0a\xb8\x2f\x5f\x3e\xa1\xc4\x63\xc8\xb0\x1c\x88\x63\xe5\x00\x76\x31\x49\x78\x92\x57\xe6\xf3\x74\xcd\xdb\x6f\xd4\x79\x30\x40\x72\xc0\x7c\x95\x22\xf1\x95\xd9\x9d\x4e\x9f\xb2\x27\x21\x94\x66\x69\x9b\x83\x6e\xf3\x7d\xab\x3f\x65\x28\xa4\x67\xab\x3f\x87\xf1\xe0\x86\xb7\x8e\xbe\x87\x78\xd6\x35\xa7\x5a\x42\xa3\xeb\xc3\xf7\x88\x83\xc3\xd0\xce\xed\x8d\x7f\xbb\x3b\xbb\x6e\x2a\xab\x27\xb7\xf6\xd1\xce\x5c\x51\x61\x4b\xb3\x64\x94\xd1\xc4\x3d\x9d\xad\x08\x15\x0c\x36\x3e\xa1\xf7\xac\xf0\x36\xd8\xcb\x43\xf4\xd9\xdf\xe5\x69\x27\x66\x2d\x23\xf9\x76\xb9\x2e\xd8\xe7\x53\xda\xc2\x91\xb0\x0d\xf4\x7b\x6e\x4f\x27\x96\x4e\x41\x3e\xd2\x00\x1c\xd6\xaa\x6e\x44\xb1\xf7\x13\x45\x66\x38\x7d\x27\x1d\xc4\xdf\x67\x7b\x5c\x9c\x64\x28\x6c\x73\x63\x08\x2c\xe6\x3c\x83\xf1\x7a\xab\xa7\x6d\xfc\xdf\x87\x6b\x58\x75\x9e\xee\x12\x90\xb9\xfa\xaa\xd4\x76\xb9\x1e\xfd\x4c\xf1\xb9\x9f\xeb\xf2\x6e\x2c\x02\x79\xf9\xde\xec\x75\xf7\x6a\xcf\x32\x79\x63\x82\x27\x13\x8d\xb6\x45\x49\xb6\xef\x25\xe6\xd2\x74\xb6\xf0\x0f\x5f\xf3\xb6\xfb\xca\xaa\x50\x8f\xef\xb0\x1b\xd5\xce\x44\xcb\xf0\x7b\xec\x16\x01\x22\x80\x41\x24\x06\x92\x32\x59\x77\x5e\x02\x12\x88\x67\xba\x7d\xb7\xf6\x6d\xb4\x6d\x0f\xb7\x9d\x6c\x3b\xdd\x76\xbe\xed\x72\xdb\xd5\xb6\xc7\xb0\x4c\xcb\x14\x04\xd9\x7e\xbc\xa7\x30\x0e\x85\xc1\x26\x0a\x6a\x9e\x4b\xf6\x1a\x23\xbe\x8d\xfb\xe3\xe2\x4e\x92\x49\xb3\x88\xc9\xbc\x2b\xc9\x3e\xaa\xc7\xd3\xe6\xfb\xd8\x96\x10\xa2\x7e\x65\x57\x2b\x68\xbc\x81\x70\xdd\x8c\xdb\x6c\xaa\xdb\x45\xcd\x24\x6e\xbb\x1a\x7e\x2a\x73\xcd\x47\x9e\x61\x5c\x80\xf4\x41\x9a\x83\xa9\x59\x2f\x0e\x85\x73\x78\x51\xfc\x71\x73\x09\x47\xa0\x94\x12\xd0\x68\x7a\x67\xed\xa6\x89\xad\x1c\x85\x55\x84\xb7\x2e\x44\xa1\xbd\xc7\xb5\x29\x67\xad\x3c\xb3\xdd\x74\x4c\x17\x20\x3b\x9e\x57\x98\x25\xeb\xe4\x39\x92\x62\x95\xb9\x48\x43\xa4\x35\xfe\xea\xf7\x78\xd9\x68\x21\x4f\xeb\x95\xb5\xa7\xbc\x14\xb7\x97\xdc\x2c\x7b\x57\x12\x65\x45\xb1\x30\x0f\xca\xe8\x61\xb6\x0c\x42\x55\x03\xd3\x61\xf7\x0d\x70\x82\x24\x06\x08\x16\xc7\xe2\x55\x99\x09\xb3\x69\xd2\x48\x11\x1e\xec\x58\x10\xaf\x4b\x3c\x78\x95\xb6\xe6\x80\x6d\x1a\x67\xa7\x46\x27\xd1\x28\x53\xa9\x78\x21\x28\xda\xa2\x09\x66\x05\x74\xda\x65\xc0\x16\xe1\x31\xb2\x8a\xe3\xf8\xa2\xfd\x25\x1a\x85\x96\x35\x18\x31\xba\x92\xd9\xd3\x11\x2e\xa1\xcf\x0c\x35\xdc\x1c\xb0\xd3\xb3\xbd\x55\x2d\xb3\xf3\x6e\xda\x8c\x7b\x0c\xfe\xde\x43\x8c\x15\x5b\x61\x18\x18\x89\xcb\xa9\x71\x12\xd6\xde\x65\x23\xda\x59\xbb\x74\xa7\xe8\xba\xbb\x3f\x31\x40\x23\xf9\xb8\x77\xdf\x07\x23\xec\xa4\xa9\x66\x2b\xec\x77\x8c\xb8\xbb\xa6\xe1\x94\x05\x75\x69\x6c\xc2\xed\x16\x09\x0b\xa1\xc7\xa9\x9b\xdb\x8f\x76\xda\xd5\xb2\x0d\x5e\x94\x16\x36\x71\x49\x73\x96\xb8\x71\xac\x35\xac\x92\x85\x2d\x8b\x44\xc9\xb1\x15\x92\xba\xdd\x49\x90\x39\xa9\x81\x32\x9b\xca\x41\x69\x4b\x16\x6d\x8e\x56\xaa\x3e\xfa\x72\x12\x0b\xe0\x3a\xb6\x4c\x95\x81\xbd\x06\x69\x96\xd9\xd2\x69\xb4\x45\xda\xf7\x37\xa1\x1b\xbc\x9f\xb7\x88\xcf\x0e\x34\x66\x8a\x0a\x5b\x14\x7f\xc7\x0b\xd0\xeb\x39\xf7\xaf\xc5\xfe\x67\x82\xaf\x77\xc2\x6f\x30\x73\x93\x8f\x9e\x12\x19\xd5\x70\x0c\x82\x28\x6e\x8b\xa6\xcd\x75\xff\xfe\x3d\x3b\x00\xa7\xd5\x0f\xc0\xa3\xc7\x7b\xbd\x28\xab\xd2\x5f\x5e\x94\xb2\x38\xca\x80\x14\x9d\x27\x62\x6a\x0c\x77\xae\x12\xc8\x19\x63\x32\x09\x34\xa9\xb9\xab\x8a\xe0\xe8\x31\x72\x63\xc0\xd5\xcb\x32\x5a\x34\x71\x15\xa8\x2b\x79\x41\xa6\xb7\x90\x53\x4f\xb0\x33\x83\xd9\x2c\xe7\xa9\x99\xd5\xac\x5c\xd5\x00\x08\xe0\xa5\x4f\x47\x10\x07\xca\x1d\xd0\x6a\x00\x62\x0e\x03\x59\x16\xaa\xa0\xa3\x30\x5e\x53\x6a\x88\x76\x25\x68\x18\x6a\xd8\x54\xe8\xca\x9a\xa5\xd1\x6a\x51\x75\xc9\x20\xb3\x42\x64\x02\xc2\x5c\x42\x19\xde\x37\x22\xed\x75\xdc\x44\x8c\xe4\x6b\xa5\x16\x24\xc3\x19\x03\x96\x5c\xda\x54\xba\x43\x09\x41\x50\x4f\x6a\xae\x0f\x12\x83\x43\xc7\x44\x05\x0c\xdf\xb2\xa5\x5d\x99\x53\x2b\x86\xed\xec\xd8\x4c\xa4\xa4\x32\x51\x36\xcf\xe8\x79\x75\xe6\x86\x60\xeb\x08\x11\x0c\xf4\xbe\x44\x1f\x21\x5d\x01\xb1\xd1\x0a\x7a\x20\x6f\x60\x35\xff\x99\x6d\x79\x3c\x97\x67\xbd\x71\xce\x2d\xb0\x98\xa4\xf7\x0e\x83\x67\x94\x13\xf9\xea\x4f\xf9\xd0\xad\x21\x3b\x0d\xe9\x5c\x5b\xfa\xca\xcc\x48\xca\xd7\xb8\x04\xe8\x9d\x21\x2b\x22\x14\xc9\x0d\xb2\x00\x2d\xad\xdf\x4c\x13\xa6\x34\x2b\x0d\x37\x98\xb0\x49\x4a\x89\x28\xc8\x38\xcb\x2f\x22\x07\x86\x26\xd4\x11\x10\xf2\x77\x55\xfc\x4c\x2b\x90\xf1\x9a\xc6\xac\xf9\xb4\x6b\x88\x5c\x66\x05\x63\x19\xdc\xf8\x8c\x0c\x49\x53\xa3\x8b\x62\xdb\x38\x4c\x72\x23\x9b\x66\x64\xaa\x27\x00\xfa\x35\xf1\x19\xdb\xf3\x57\x8a\x62\x44\x35\x31\xa9\x41\x22\xbe\xf3\x2d\xd0\x8a\x55\x13\x60\x5f\x33\x39\x6b\x15\x01\x92\xc8\x25\x40\x8b\xb6\xd7\x32\xe1\x66\x4a\x27\xcb\x36\x90\x63\x06\x72\xd0\x64\x70\xb0\xc1\xb3\xa6\xef\xef\x24\x52\xb2\xa2\x59\x1a\xd5\x3c\x67\xcb\x65\xc8\xd0\x0d\x3e\x10\xcc\xb4\x95\x0f\xd8\xfa\x1b\x89\xdd\x1c\x1f\x6c\xdf\xa1\x3c\xa9\x1b\xb8\x76\x82\xa7\x10\x2c\xe0\x37\xb9\x92\xe8\xb1\x19\x5c\x57\x9c\x1b\x01\xbb\x62\x72\xd1\xea\x97\xb4\x6e\x99\x20\x58\x60\x98\xe8\x13\x60\x71\xf6\x62\xbb\x69\x68\xaf\x81\x2d\x35\xc8\xed\x0d\x84\x22\x3f\x8b\x8e\x13\x8b\x1b\x6e\x3e\x20\xcd\x0c\x3d\x20\x50\x4e\x04\xfa\xfe\x64\xc6\x64\xa6\xdb\xeb\xfc\x3d\x63\x2d\xe9\xd3\x8a\x8d\x02\xa3\x95\xe4\xc1\x6a\xe9\xa3\x1a\xe0\x66\xa1\xf1\xa1\xa1\x7c\x97\xd6\x06\x58\x3c\x8b\x0e\x9c\xe9\x05\x63\x77\xca\x2d\xaf\x72\xfa\xb2\xf7\xce\x9b\xac\x67\xbc\xe0\x49\xbb\xf4\xce\x35\x64\xae\xc1\x13\x5e\x6d\x48\xfb\xc7\xd3\x7b\x81\x56\xfb\xaa\x10\xb9\xc8\x22\x19\x6c\x69\xd3\xe0\xba\xae\x9c\x86\xb4\xac\x55\x87\x2b\x9a\x96\x63\x7b\x1a\x51\xdf\xe2\x62\x47\x0d\x8d\xf5\x30\x59\xb1\x7b\x96\xb3\xbe\x7a\xad\x24\x44\x1f\x3e\x77\xcb\x45\x3d\x67\xe9\xa4\x4d\xdb\xd4\xb2\xc3\x14\x06\x41\x28\x31\x92\x3a\x86\xc7\x64\xc0\xd8\x3a\x64\xfa\x7a\x4d\xe3\x1a\x45\x49\xbb\x6b\xa1\xbe\x5c\x6b\xd3\xda\xa9\x2e\x20\x79\xd7\x3b\x97\x46\xd7\x59\x5b\x31\xad\xe9\x6a\xb8\xba\xe1\x8a\x9c\x6b\x86\x0c\xd4\x85\x85\xdc\xad\x9d\x60\x99\x44\xb6\xb0\xe8\x76\xf0\xc3\xf7\x71\x4f\x0e\x4d\x2d\xd9\x3c\xab\x0b\x03\xfe\x71\x97\x6d\xc6\xa4\x8f\x6b\x3a\x74\xd4\x6b\x38\x3e\xeb\xd4\x14\xab\x06\xb6\xa5\x4a\x50\x3b\x49\x3f\x1f\x34\x1a\xa7\x69\xe4\xa6\x91\x86\x8d\xd5\xd4\xb7\x39\xff\x00\x11\x05\x2c\xe3\x12\x11\x7f\xb7\x95\xec\xbd\xb0\x1b\xef\xbc\xa2\x8f\x5b\x6c\x17\xa9\xb7\x9d\x5d\x65\xf8\x39\x8f\x5b\x9a\xc0\x3c\xae\x25\x92\x84\x6d\xda\x42\x93\x6c\xa6\x58\x88\x37\x17\x69\x25\x9c\x4d\x34\x1a\xd3\x30\xbc\x68\x7c\x46\xc7\xf0\x20\xf3\x00\x1e\xe0\x1b\x64\xb2\xba\xd2\x41\xd4\x84\x50\x66\x2a\x6c\x3b\x12\x9f\x2f\xb9\x70\x79\xdd\x87\xa9\xb2\xf0\x6b\x78\x5c\xc5\xcc\xda\x94\x92\x04\x0b\x82\x24\x5c\xf2\xf0\x53\x45\x27\xf6\x70\xb7\x7b\x4f\x4f\x20\x3a\xb3\xae\x5b\xb8\x4b\x9e\xed\x00\x25\x32\x3c\x47\x58\x50\xb8\x91\xe6\x73\x7f\x96\xbe\x4a\x7a\x76\x5c\x52\x20\xdd\x25\x95\x4f\x51\xd1\xa7\x9b\x26\x7b\x3a\x0d\x34\x8d\x72\xe6\xcb\xce\xe0\x44\x27\x64\x2e\xdf\xe1\x7b\xba\x36\xc5\x84\x99\xde\x61\x07\xe7\xb4\xc6\xd6\x93\x41\x30\x21\x9e\xd1\x9d\x70\x3d\xea\x38\x1a\x13\xa0\x79\xd3\x45\x2e\x27\x66\xb8\xec\xdc\xa6\x12\x1f\x04\xea\x35\x8d\x7b\x13\x0f\xa4\x38\xc9\x1b\x6e\x0c\xdc\xe6\x4a\x88\x45\xbe\x70\xae\x2b\x79\xdf\xd4\xa6\x19\x3a\x29\x6f\x48\x73\xb2\x11\xe9\xb1\xb6\xb8\x71\x92\x18\xc7\x9a\x55\x61\x35\x64\xd8\x3c\xc3\xb3\x15\x15\xac\x11\xc1\x32\xc7\x56\x7d\xcc\x60\x02\x11\x4d\xa7\x68\x50\x33\x0a\x36\xc1\x0a\xeb\x69\xd5\x2a\xa3\xaa\x16\x1d\x13\x4a\xad\xe3\x50\x87\xbf\x1b\x53\x8b\xb6\xb6\x90\x3f\x49\xc5\x3c\x4a\xf4\x4e\x66\x84\xe1\x9d\x24\xbe\x80\x74\x73\x77\x7b\x73\x7d\x35\xfd\xfa\xae\x41\xb2\xae\xf9\xfe\x58\x7d\xa6\x49\x99\xd4\x90\x51\xa2\x42\xf1\xb5\xd4\x27\x51\x98\x2b\x4f\x66\xf3\x6a\x1a\x7a\x24\x4c\x47\x89\xc1\x51\x40\xf3\x4e\xae\xab\xec\x08\xf9\x64\x12\x01\xd1\x40\x26\xa4\x8b\x7f\x1d\xdf\x1d\xce\x6a\x88\xc4\x65\x1e\xf4\x9c\xe5\xb3\x3a\xe9\x24\x38\x6a\x3b\xbb\xe3\x53\xd7\x46\x2d\xd6\x7a\xc3\x62\xf0\xdc\x59\x83\xca\x7b\xf3\x55\xbd\x3e\x6a\xd9\x2c\xa3\xb8\x04\x16\xbc\xc9\x45\x64\x6a\x72\x48\x45\x63\xa1\x5d\x43\x4a\x57\x3b\x77\x7a\xb9\x2f\x76\xa9\xc4\x1c\x8f\xc6\xfe\x41\x05\x72\xe8\x33\x4f\xc5\x43\x83\x8b\x48\x6d\x8d\x47\x6a\xe3\xe0\xd8\xe6\xa4\x37\x61\x3e\x0e\x54\x2c\xd7\xb7\x63\x12\x22\x1c\xaa\xbb\x06\x6a\xf4\x20\xd9\x00\xa9\x59\x7d\x21\x6e\xa5\x94\x04\x5c\x73\x3d\xe3\xef\x46\xd5\xb5\x90\xfe\xa9\xf1\x4c\x5e\x6b\xb5\x6c\x9b\xba\x2a\x60\xec\x73\x69\x9f\x55\xaf\x35\x6e\x2c\x9e\xc1\xab\x75\xc2\x36\xeb\xa8\x38\x70\x27\xa5\x4b\x29\xa5\x31\x16\xb2\x41\xcd\x3c\x58\x59\x2e\x83\x50\x11\xa5\xc3\x8b\x77\xc6\x9b\x83\x52\xcb\xeb\x24\xd4\x1e\xac\xb0\x2f\x9d\x3c\x4b\xae\x59\x95\x75\x0a\xe0\x4a\x40\x60\x07\x6d\x6a\x97\x8a\x06\xee\x73\x5b\x7e\xd8\xdf\xdb\x81\xf5\xc3\xf5\x45\x99\xad\xe7\xba\xe0\x90\x2f\xbd\x4d\xbe\xbf\xd9\x2b\xb5\xbc\x9a\xdc\x77\x64\x99\x77\xd3\x64\x9d\xbc\xdb\xdd\xd9\x3e\x0b\x20\x91\x63\x9e\x10\x20\x7c\x20\xf2\x0c\x46\x16\x15\x7a\xc8\xe5\x43\x22\x8a\xd1\xbd\x85\x07\x7a\x59\x28\x18\x4d\x3f\x5c\x7c\x70\x5d\x71\x2c\x8f\x87\x6e\x3e\x61\x4f\x18\x91\x30\x85\x59\xc4\xa3\x60\x83\x53\x63\x98\x47\xb8\xc5\x79\x2c\xe6\x4a\xda\xae\xde\x35\xbb\x2c\x95\x95\xaa\x7a\x1d\x26\x78\x46\xd6\xa8\xb0\x37\xcb\xa2\x15\x6d\x14\x40\x2c\x85\x5b\x59\x15\x57\x89\x99\x48\x38\x96\x13\x7f\x83\xa8\xad\x20\x81\x23\x29\xb4\x0e\x12\xae\x59\xf8\xa5\xd5\xaa\xc6\x78\xbb\x4e\x37\x36\x9d\xa6\xd0\x60\x09\xc8\xa3\xfa\xcd\x00\x35\xed\xa2\x72\x9f\x80\xb5\x36\x74\xd1\xb9\x6b\xe3\xb8\x20\x34\xa3\x52\xe5\xcf\xb8\xdb\x85\x9b\xa5\x7c\x14\xaa\xe7\x9e\xc7\x72\xbb\x54\xd9\x85\x0c\xad\x52\x43\x4d\xc3\x28\x56\x67\x8c\x84\x86\x4e\xce\x19\xfd\x20\xa1\x48\x13\xaf\x61\x1a\x04\x8d\xb5\xb6\x4b\x61\xf0\xf1\x6f\xb1\x03\x11\xfc\x13\x58\x4b\xfc\x0f\x97\x62\x7f\x22\x77\xfd\xc5\xf5\x27\xb7\xf8\x19\x17\x4a\x80\x9f\x1a\xda\x11\x0e\x40\xe7\x1e\xba\x42\x80\x6b\x4f\xb7\x91\xdc\xce\xb4\xf2\x96\x1a\x42\x12\x48\xdb\x43\x64\x61\x8c\xb1\xa6\x3b\xe0\x7e\xc1\xcb\x9d\x95\x0b\x33\xf5\x88\x74\x82\x70\x3e\x3e\x28\xd7\x23\xe3\x8c\xc6\xa2\x89\xbd\xd6\xd0\x8e\x00\xae\x5a\xca\x16\x56\x88\xd4\x22\x30\xab\x37\xcb\x96\x54\x87\x93\xdc\xde\x62\xf9\x76\x0d\x57\x62\x50\x48\xf6\xe7\x15\x03\x35\xc0\xcd\x4a\x33\x00\xc1\xef\xcd\xc7\xad\x2c\x4f\xfe\x29\xaa\xff\x2b\x81\x0b\x64\x78\xcb\x6f\x52\x4f\xb6\xea\x91\xf1\xf0\x8c\x91\x17\x93\xad\x8d\xc9\x50\x67\x13\x35\x36\xeb\xc1\x77\x35\xac\x88\x87\x70\x34\x36\x60\x77\xe3\xd5\xd5\xef\x37\xe3\xb5\x7a\x79\xb8\xbf\x7e\x78\xb8\x13\x2d\x33\x10\xeb\x9e\x84\xc3\x90\x2a\x5d\x64\xe3\x4f\x56\xf9\xb5\x2b\x6e\xd5\xd5\xb5\xc4\x6b\x3c\x0d\xee\x64\x63\xc5\xbb\x31\xf7\xae\x9b\xe9\x07\x2b\x14\x8b\xb4\xba\x85\x7c\xae\x22\x58\x57\xb7\xbf\x5e\x8d\xbf\x8c\x3f\xef\xd3\x67\x40\x51\x86\x08\x78\xf3\xa7\xa7\x18\x93\xfa\x1f\x0e\x99\x89\xca\x5c\xd9\x88\x44\x29\xe5\xa0\xa1\x81\xca\x59\x90\xf7\x21\xc7\xf5\x8e\x08\x8a\x8f\xff\x59\x8d\x6a\xf9\x19\xda\xd5\x05\x80\x73\x7d\x3d\x92\xab\x64\xf1\x65\x6f\xdf\xbb\x5a\x9b\xa0\x28\x88\x2e\xdb\x0e\x2c\x48\xfd\x5c\xb9\xd8\x1d\x1e\x86\xb9\xfb\x91\x1c\x5b\x3a\xf0\x73\xdc\xfd\x13\x68\x28\x4d\x29\x3f\xb3\x7e\x1e\xfb\xfb\x52\x37\xe2\xfb\x46\xd8\xe9\xba\x63\xf8\xc4\xcd\xdd\x7e\x57\x00\xf9\x22\x4e\x8d\xf5\xdb\x53\x06\x1a\xa3\x2e\xae\xe9\xf2\xe5\x47\x32\x30\x52\x7f\x82\xc4\xf0\x97\x06\x1f\x0b\x4d\x73\x37\xd3\xf4\x73\x73\xe1\xdc\xe3\x4b\x5e\x9b\x47\x6b\xaf\xae\xb0\x0f\x7a\xe0\x7f\x1c\x67\xaf\x35\x46\xfb\xaa\x6b\x65\x33\x02\x0e\x65\x63\x4c\x4a\x9b\x01\x9b\xb7\xaa\x22\x85\xa6\x46\xd7\xb6\x0b\xa0\x9f\xcc\x6b\x47\xc1\x84\x53\x20\x11\xa9\x3f\xe3\xa0\xaf\x23\x88\x22\x9b\xb8\x06\x4b\x1b\x55\x62\xc6\x6e\xab\x36\x05\x7c\xba\xc1\x1f\x6a\xb0\xa9\x25\xb5\x8b\x4b\xd1\x7e\xf3\x74\x70\xda\xad\x8f\x41\xb2\xfe\x19\xb8\xe8\xe3\x72\x20\xea\x59\x46\x56\x19\xd5\xb8\x0a\x71\xb3\xca\x7a\x32\xf6\x9e\xf3\xe6\x98\x77\xf0\xfa\x14\xfe\x53\x24\xa6\x54\x78\x0e\x43\xe9\xdb\x94\xec\xd9\x26\xc3\x2b\x59\x5a\xb0\xb2\xb5\x79\x61\xe0\xaf\x12\xd7\xa8\x7b\x7c\xc3\xbe\xf3\x69\xde\x86\xb9\xb5\x35\x1b\xa6\xff\x16\xbf\x0d\xea\x2f\x42\x02\x3f\x18\x9b\x88\x16\xe6\xc4\x2b\x42\x25\x6f\xac\x7f\x71\xb1\xa3\xa3\xb2\xd2\xed\xfe\x17\xfe\xda\x97\x96\x93\x83\x42\x5d\x7c\xad\x5b\xad\x2c\x2f\x2d\xce\xce\x74\x4c\x6e\x35\x3e\x3a\x38\xd0\x7b\xa0\x52\xb5\xd5\x50\x53\x4f\x77\x7b\xdc\xdd\xb4\x55\x7d\x6d\x28\x58\x5d\x05\xba\xb6\xb2\x5b\x8d\x06\x8d\x8a\x06\x58\x32\x89\xc0\x4e\x6d\xbb\xfb\xac\xdc\x19\x66\x4d\x5d\x65\x89\x7d\x48\xbb\x9b\x36\xf4\xe7\x95\x1c\xb9\x1e\x6e\xf3\x48\x35\x34\x29\x4c\xc9\x32\x93\x2d\xda\x83\x43\x96\x8e\x35\x95\xf2\xc7\x3e\xdd\x60\xd0\xef\x9f\xba\xda\xdd\x50\x23\xe6\xd4\xe3\x05\x8d\xb2\xfe\xd8\xe8\x08\x92\x49\xc0\xd4\xdd\x5c\x15\xb8\x71\xa5\x55\x6f\x7d\xc3\xc4\xe6\x94\x80\xb5\xeb\xdc\x63\x01\x93\x3c\x8b\x8e\x9d\x1b\xc1\xc6\x1b\x8d\xf5\x8d\x98\x16\x79\x77\xab\x2d\x14\xba\xbb\x1d\x99\x87\x6f\x12\x41\x12\xbe\x00\x6a\x63\xe3\xd9\xbb\x60\x7b\x63\x53\x7d\xe7\xac\x40\x98\x03\x3b\x46\x38\xb8\x6c\x0d\x71\x55\x9d\xc2\x29\x2e\xa7\xba\x6d\x92\x75\xc0\xc3\x20\x12\x86\xcc\xd0\x47\x20\x72\x01\x55\x49\x76\x10\xd5\xdb\x9b\x14\xf5\x65\xd9\xd2\xba\x93\xe8\x4c\xc0\x33\x12\xa3\xd1\xc3\x54\xe2\xaa\x26\x93\x9c\x67\x16\x02\x53\x56\x5d\xd6\x48\x25\xfb\x6c\x52\x04\x20\x8c\xb4\x13\x03\x8d\xab\x98\xd3\x60\x57\x5b\xe5\x8d\x51\x5e\xb8\xea\x2c\x64\x8c\x85\xb6\x38\x86\xd2\xc3\xcd\xd1\xa8\x62\x92\x49\xc9\x3a\xcc\xb3\x1c\x83\xc1\x88\xf4\x52\x12\xa5\xd7\xa6\x23\x41\x61\x83\xd3\x04\xd8\x19\x21\x1c\x06\x82\xd2\x56\x5e\x1b\xbe\x89\xb1\x4f\xe2\xd2\x14\x6c\x68\x6d\x4c\x0c\x10\x0a\xd2\xf9\xa3\xe2\x91\x5f\x6a\x95\x3a\x27\xe2\x40\x17\xc1\x86\x6f\xa8\x8d\x11\x23\x30\x9f\x3d\xca\x26\x12\xa9\xaa\xad\x6e\xee\xdd\x5d\x55\x09\x33\xe2\x0e\x1b\x82\x99\x88\xcd\x93\x15\xe5\xf4\x11\x47\xe3\x5d\x0c\x31\x14\x73\xa8\x9b\xcb\x92\xbe\xbb\x9d\x2f\x1e\xf5\x7d\xa6\xa0\x2c\x71\x38\x3c\x43\x15\x97\xc5\xf0\xf2\x9a\x2d\xb3\x76\x4e\x6b\xf8\x8d\xce\x5b\xb3\x01\xa6\x53\x47\x24\x0b\x2d\xb4\x82\x4f\x3c\x01\x0f\x67\x8c\x20\x91\xe1\x7f\x14\x86\xb0\xdf\x9d\x79\x44\x10\xd6\xab\xa4\x34\xf3\x6b\x5c\xef\x88\xc0\x47\xfc\xf3\x42\x27\x3c\x78\x35\x7e\x9b\xdf\xed\x9c\x9e\xe8\x60\xc1\xff\x79\xb2\xc5\x4b\xf1\x16\x0b\xa8\xb5\xc4\xd9\x72\xd2\xb9\x66\xde\x96\x2e\x07\x8d\x3f\xa2\x14\x68\x23\x34\x8e\xe3\xb6\x12\x8c\x8d\xfe\x0a\x31\xf4\xfe\x5a\x08\xbd\x71\xe8\x40\x82\x57\x7c\x0e\xb2\xee\x11\x76\x1f\x72\x8a\xd6\x13\x30\x0f\xeb\x11\x38\x73\x6e\xc9\x57\x74\xa5\x59\xff\x9e\xc6\xf6\x10\xe9\xdd\xd7\xe1\x66\x77\x53\x15\x71\x24\xd8\x7a\x81\xc7\xdc\x03\x5b\x6b\xdc\xb2\x24\x83\x96\xb7\x09\xbb\x93\x18\x47\x24\x83\x73\x42\x86\x9b\xa7\xf5\x1e\xc8\xbf\x72\x27\xc6\x26\xeb\x03\xa4\xe7\x8f\xf6\xca\x5d\x39\x8b\x4f\x60\xb0\x9c\xf0\x80\x1b\xa2\xa5\xf7\x89\x19\x49\x40\xf0\xab\x35\x29\x91\xae\x71\x85\x83\x78\x58\x56\x99\xc5\x25\x8e\x2d\x40\xa3\x68\x2b\xde\xb5\xc9\xe0\x93\xd8\x0a\x66\x75\x2c\xb6\xca\x68\x19\xa0\x03\xde\xbb\xd2\x80\xec\x06\x00\x66\x01\x82\x0e\x37\x11\x03\x70\xcb\x4b\x0a\x77\x03\x9b\x36\xf0\x0e\x00\x73\xa7\xc9\x4e\x13\x6e\xb1\x6c\xbe\x8f\xf4\xf8\xdc\x1e\xf5\x31\x56\x4f\xf1\x3b\x5c\x74\x52\x7d\xad\xb9\x06\xbc\x37\x13\xee\xe6\x43\x5c\xcf\x2a\xa6\x18\xed\xee\x55\xce\x1d\x6d\x17\x8c\x8e\x66\x35\x2d\xd6\xb4\xfc\xbf\x34\x15\x84\xa4\x39\xf5\x8c\x3c\x44\x86\xc0\x1c\x02\xf6\xcc\x6d\x1f\x34\x14\x21\x4d\x22\x90\x0f\xf7\x38\x20\xb2\xec\x01\x57\x91\x77\x38\x3a\x5c\xd6\xa1\xce\x9c\xa7\xc5\x07\x4d\xf5\x6d\x83\x60\xae\x86\xb8\x04\xc3\x1d\x82\x36\x80\x4d\x60\x4a\xee\xbf\xc1\x66\xc2\x1d\xaf\x26\x3b\x1a\x22\x8c\xa1\xf1\x9a\x44\x94\xcc\x70\xe6\x18\x78\x7f\x28\x62\x87\xf7\x1a\x09\xb0\x6a\x04\x73\x5e\x23\xdd\x7e\xaa\xf7\xba\x89\x14\x79\xe0\x54\xa6\xc6\x2d\x4e\x5b\xd4\x63\x6c\x3c\x89\x83\x47\x6c\x76\x97\xd0\x0c\x81\x11\xa9\x34\x8d\xc6\x6b\xa8\x4e\x04\x24\xc7\x08\x6e\x51\xb8\x39\x68\xad\x32\x4c\x12\x0f\xcc\x82\x23\xc5\xf0\x8a\x0a\x8e\xcb\x12\xd4\x61\x36\x1b\x82\x5b\x04\x3d\x5b\xec\xf6\xfa\x74\x14\x45\xe2\x5d\xad\x67\x9d\x2e\x30\x3e\x35\x4c\x65\x18\x1e\x14\x89\x03\x06\x0d\x15\xa2\xd6\x1a\x87\x10\x6e\x91\x3f\xcf\x6b\x63\x55\x73\xfb\xf2\xd6\x3d\x14\x58\x0c\x38\xd7\x3b\x3f\xc3\xbe\x04\x76\x16\x1c\xe3\xc1\xf7\x16\xc3\x18\x55\xea\xe6\x3b\x78\x28\xf7\x43\x70\x51\x6c\x48\xdb\xdc\x41\x0e\x7d\x77\xda\x69\xe3\x93\x58\x62\xba\xee\x03\x46\xa3\x46\xa2\xfb\x1b\x63\xc0\xd5\x67\x70\xaf\xbb\xeb\xb2\xa9\x88\x0b\x6f\xc6\x27\xf2\x49\x08\xa1\x51\x8f\x5d\x5f\x45\x93\x76\x88\x50\xe4\x67\x05\x8b\xd6\x8a\x59\x45\x58\x11\xa8\x32\x8c\x88\xda\xb4\x4a\x9c\xf0\x56\x0d\xb0\x30\xc6\x2e\x5b\x76\x0e\xd8\x0c\x36\x34\x06\xb8\x34\x44\xd3\x41\x0d\x05\x25\x52\x87\x2b\x66\x25\x07\xd8\x36\x9e\x57\x6a\x6d\x0c\xbb\x1c\x5c\xe1\x4b\x55\xc4\x2c\xc9\x03\xb9\xf1\x19\x4b\x81\x3a\x33\x51\x94\x12\x40\xb8\xc4\x05\x67\xb2\xe0\x64\x83\xf4\x05\x03\xca\x2c\xf2\x74\xbd\x88\x92\x29\x6d\x00\x30\xfa\x35\xb0\xef\xe7\x99\xab\xb2\x5a\x32\x0a\xb4\xbd\x7e\xa3\x9c\xb1\x65\xd1\xe6\x69\xdb\x84\xb7\xf5\xbc\x8e\x78\x91\xae\x69\x44\x26\xb7\xb1\xac\xe5\xb9\x8e\x4e\x36\xc3\x6a\xae\xe8\xde\xae\xc8\xd8\x20\xf2\xa5\xcf\x79\xdc\xba\xde\x04\x85\x2d\xc0\x8f\x45\x87\x13\x23\xdf\x58\x59\x33\x61\x2c\x7b\xe7\x3e\x8d\xc9\xb6\x25\x9e\xf2\x30\x9a\x92\xb7\x55\x6d\x5c\x7e\x81\x06\x62\x84\xd0\x44\x16\xcd\x91\x3d\xac\x53\x2b\x12\xa8\x4b\xd3\x69\x73\xb3\xd8\x49\x56\xcc\x01\x6b\x5d\x04\x5f\x36\xbb\x3c\xec\x5d\x27\x39\x09\x17\x35\x84\x09\xfb\x35\x9a\x2b\xca\x23\xf8\x21\x71\x9d\x5e\xb9\x3e\x34\xce\xf5\xd7\x06\x62\x1b\xa6\xe9\x58\x0a\x2f\x66\x18\xbb\x38\xb3\xe0\xce\x6a\x58\xf7\x18\x34\x2c\xc0\x9f\x75\xc0\x1d\x92\x32\x7d\x2a\xf7\x31\x8c\x48\x74\x6e\x39\x88\x4e\xb2\xc6\x8b\xc5\xc8\x32\x21\x3b\x3c\x8d\xee\x71\xe5\x6e\x53\x7d\xd1\x26\xff\x55\x38\x5b\xde\xe3\x79\xe3\x93\x8e\x15\xdc\xc0\xd2\x5a\x2e\x02\x93\x18\x04\xd4\x2c\x89\x82\x2a\x93\x47\x55\x24\x09\x32\xe5\x81\x13\x9e\xa8\xf1\xff\xff\xff\xfb\xe7\xdd\x9b\xfa\xe6\x30\xfc\xba\x4c\xcf\x2e\x0a\xda\x89\xbd\x97\xcb\x1d\x70\x2e\xec\xb4\x76\xfb\xd8\xa0\xb9\x3b\xf0\x5c\x8f\x62\x3d\x06\x60\x91\x57\x73\x89\x48\xaf\xbb\x1a\x76\x1f\x39\x97\xe8\x91\x78\xf9\x8a\x7d\x82\xad\x74\x26\x52\x50\xb8\x02\x72\xf1\x4b\x42\xf9\x4f\x72\x3c\x55\x66\xb9\xa5\xe2\xbb\x25\x09\xcf\xb0\x33\xa8\xba\x52\x88\x0f\x63\xbd\x73\xd5\x7d\xbb\x54\xb4\x50\x5d\x30\x76\x34\xae\x50\x36\x99\x51\xb2\xaf\x11\x9b\x76\x06\x79\x5f\x79\x3c\xb3\x2a\xeb\xe2\xfc\xf2\xe2\x74\x64\xe3\xb4\xe9\x47\x92\x7c\xee\x23\xdb\x6e\x70\x49\xff\x5a\x21\xe2\x4c\x9c\x61\x2b\x24\xc8\xd6\x5b\x75\x40\xcf\x8d\xac\x36\x46\x2e\x9c\x13\x2f\x7d\x34\x8c\xe1\x07\x5d\x61\x9c\x1e\x35\x09\xcc\xfd\x82\xdb\xf0\xc1\x08\xc5\x24\xc4\x40\xe3\xc0\x39\x10\xcd\xc9\xa3\xd2\x5d\xef\x72\x7b\x07\xbc\x06\xed\xca\x88\x6e\xe1\xf4\x8b\x50\x7a\xb9\x43\x55\x4b\x63\xf2\xbd\x4d\xc9\x09\xef\x02\x56\x56\xd1\x92\x99\xa7\x7a\xbc\x5a\xc5\x71\x7c\xf9\xa7\x27\x87\xfd\x6e\x30\x46\x9d\x80\xd1\xef\xcf\x85\xfa\xf5\xab\x9b\xc3\xe5\x2e\x0c\xdf\x8d\xf3\xc1\xd0\xc0\x76\x0f\x80\x31\x2a\xad\xe3\x6d\x82\x6c\x61\x61\x31\x75\x6e\x8a\xad\x7d\x41\xcb\x36\x3d\x23\xf0\xab\x3a\x36\xba\xab\x4b\x7f\x78\xc6\x0f\xc3\xd8\xbf\xa3\x97\x3a\x5f\xda\x94\x84\x8c\xbd\x4e\x81\x9f\xda\xe7\xd8\x92\x1e\xc6\x64\xbc\x4e\xce\x8c\x79\xfb\xe7\x78\x7d\x12\x8f\x3d\x60\x3b\xc7\x89\xf3\x17\x83\x79\x64\xba\xfe\x65\xf7\xc7\x00\x15\xf6\xd9\xcb\x5e\xfc\xef\x60\x88\x7d\x7f\xcf\xf7\xa7\xef\x98\x19\x61\x21\x68\xbb\x89\xc1\xcf\x4c\xc9\x98\x1d\x1a\xe8\xef\x3d\xd0\xd5\xd1\xde\xda\xdc\xd8\xd3\xde\xda\xd2\x14\xad\xaf\x8b\x84\x03\x7e\x6f\x95\xfb\x5f\x4a\xfb\x6c\x1a\x35\x0c\x48\x25\x22\xae\x53\xed\xca\x78\x3b\x69\xfa\xda\x90\x79\xf5\x7e\x71\xdc\x0f\x74\x6c\x08\x7b\x26\xbc\xc5\x24\x61\xcc\xe5\xeb\x18\x8f\xc7\x37\x28\xe3\x70\x29\x48\x46\xc7\x3b\x39\x11\xd5\x02\x30\xfb\xda\xb8\x68\xd1\xc2\x48\x8e\x0f\x4e\x40\xba\x1b\x92\x6b\x0d\x77\xe7\x4e\x40\x2b\x8f\x88\xf0\xe3\x8b\xb8\xa1\xc5\x8e\x73\x17\x0f\x21\x90\xa2\xff\x49\x52\x9b\x76\x45\x16\x1c\x68\x9f\x74\xdf\x17\x91\x03\x1c\xf7\xfe\x83\xea\xb5\x59\x64\x47\x9a\x95\xa3\x2b\x51\x22\xa5\x54\x8c\xbb\xad\x12\x1c\x1e\xe6\x02\xd6\x5d\xf1\xfb\x80\x07\xf7\xa7\xf5\x22\xb3\xdb\xd1\xcd\x35\xda\xe0\xdb\x09\x29\x14\x70\xee\x1c\xe8\x76\x24\x95\xae\xc4\x45\x39\x57\x88\x35\x20\xc3\xa6\x4a\xc1\xb6\xd3\x1d\x2e\xf8\xb5\x4d\xb9\xab\x34\x60\x3b\x82\xe9\xe3\x42\x24\xf8\x2a\x42\x0e\x4b\x7c\xea\x5c\xd3\x72\x35\xea\xc1\x66\x18\x98\x65\x07\xa2\xdd\xb7\x8a\x6e\x26\x4b\x26\x56\x44\xc9\x59\x90\x1a\x30\xea\x8a\x7b\xc1\xf7\xad\x19\x16\x37\xd4\x81\xfa\x45\xf0\xe9\x6a\xeb\x43\xd6\x8a\xf7\x39\x6f\x60\xf5\x70\x7f\x2b\x9c\xa5\x39\x9d\xf6\x6b\xc7\xde\xe7\x22\x98\x5b\x11\x78\xba\xef\x9f\xb8\xb6\x01\xbe\xe0\xb5\x3a\x76\xe2\x00\xa9\x03\x36\xfb\x41\xb0\x0c\x44\x29\x44\x0c\x57\x20\x9d\x93\x0f\xcf\x10\x4c\xfd\x65\xf4\x9c\xd1\xe6\x69\x4d\x80\x1f\x2d\xaa\xbd\x17\xe9\xf3\x46\xa8\x76\x4b\x03\xd0\x7f\xd1\xa1\x62\x5e\x20\x99\xf0\xf6\x3d\x4c\x8e\x9a\xad\x5b\xb5\xe7\xb0\xf7\x5c\x46\x61\x44\x11\x3d\x4b\x1e\xe1\x01\x16\x61\x5f\xda\x13\x3f\x71\x44\x42\x62\xfa\x6e\x6d\x4e\x02\x9f\x18\x82\x2a\x9e\x78\xd0\xec\xb9\x38\x61\x94\x4c\x2a\x81\xf6\xa4\xf6\x50\x9a\xbd\xf6\x5e\xfa\xa1\xf4\x08\x4a\xf7\x0d\xa7\xc5\x73\xc9\xab\xa3\x76\xc7\x21\xb5\xe9\x73\x93\xc5\x61\x3a\x11\xd7\x30\xee\xad\x4a\xe8\xdc\x60\x39\xb7\x49\xc0\x19\x39\x9f\xea\x5c\x28\xde\x0d\xf0\xd5\xbe\x80\x89\x3e\xf3\x50\x85\xd8\x48\xef\x00\x20\x50\xe7\x9b\x48\xad\x53\x3b\x76\x3b\xee\xed\xdf\xa7\x23\x98\xef\x8d\xda\x53\x44\xe5\x2b\xb6\xfc\x92\xb7\x61\xd8\xa4\xe2\x85\x19\xd8\xe2\xb0\x8f\xe6\xab\xf0\xb9\x65\xd7\x8e\x28\xba\x2e\xce\xcb\x14\x64\xf3\x42\x08\x2c\x8a\xf9\x68\x5f\xf0\xa5\xcf\xdf\xee\x4e\xb6\x59\x8c\x3f\x5f\xc4\x13\xeb\x76\x3e\x3e\xad\x67\x2f\x36\xdb\x65\xa7\x5e\xe2\x10\x0f\x79\x0e\x08\x1a\x78\x27\x20\x7a\xba\xf0\x56\x0e\xcf\x41\xf5\xc0\x0e\x98\x2a\x06\x08\x42\x18\xaf\x61\x20\x9f\x2c\xf3\xb0\xe6\xe4\x2d\x18\x39\xe8\x94\x8f\x23\x53\x37\x04\xdb\x57\xf6\x91\xe9\x60\xed\x81\x5e\xca\xb5\x12\x5f\x15\xac\x6b\x6d\x43\x17\x0d\xe2\xbd\xe0\x47\xf9\xb4\xb2\x08\xcb\x84\x95\x07\xdb\x8b\xea\xb6\xc8\xd1\xaa\x4b\xc5\xf7\xca\x60\x2f\x3a\x88\x6b\x90\x80\x06\x96\x56\x6c\x9b\x90\x3c\x3d\xe4\x60\x2d\xcc\xf2\xd5\x8b\x68\x40\xa3\x0a\x08\x29\xeb\xf5\x07\xb2\x84\x5d\x23\x5d\x6d\x85\x09\x26\x6b\x87\x92\x9d\x4d\xa1\x87\x44\x97\xe2\x4a\xd9\xc0\x71\x71\x6f\x17\x3d\x1a\xc0\xb1\xf2\x05\x72\x44\x79\x49\x8a\x86\x90\xbb\xb5\x7f\x10\x33\x84\xdc\x2d\xcf\xac\x3a\x5c\x65\xe0\x9d\xf3\x57\x98\x8d\x10\xb9\x5b\x1e\x56\xde\x7e\x02\x61\xbb\x06\x04\x24\x60\x48\x31\xe2\x99\x9c\x10\xea\x04\x0d\x8e\x05\x61\xea\x8c\x0a\x2a\x8c\x2a\x1a\x82\x5d\xca\x59\x68\xe0\x5c\xe5\x91\xcf\xbb\xd8\xa4\x23\xe9\x9a\xeb\x2d\x31\xfe\x99\x98\x7c\xe7\xd1\xb0\xf9\xae\x2c\xb2\x13\x64\x37\x44\xf6\x62\x90\x3c\xe4\x22\xc1\x80\xc8\x62\xc8\x14\xbc\xb3\x91\x5c\xb2\x24\xca\x2e\x45\x71\xff\x5e\x21\x77\xcb\x29\x15\x55\x33\x22\x85\xb4\xb0\x6f\xe7\xc5\xb2\x3a\x99\xce\x12\x62\x83\x4c\x8d\x0a\x16\x97\xc0\xdd\x4a\x29\xee\x8c\x0b\x42\x86\x9f\x14\x4f\xc7\x39\xf3\x16\xef\x6d\x15\x9e\x62\x06\x0a\x7c\x96\x43\x9b\x40\xa8\x19\x6e\x89\x94\x4d\x62\x12\x1b\x34\x2b\xe2\x6a\xb2\x6d\x69\x82\x30\x79\x77\x4a\x04\xcc\xb1\xb7\xf8\x01\xf3\x61\x83\x0e\xb6\x21\x36\xbc\x36\xc6\x66\x6b\x4f\x94\x51\x59\x44\x65\x2a\xc9\x8b\xe5\x20\x25\x09\x54\x48\x33\x90\x93\xaa\xdb\x51\xca\x03\x7a\xe2\x3c\x7b\xa0\x84\xaa\x35\x00\x31\xd4\x37\x5e\x76\x5f\xe2\xe5\x9b\x12\x82\x35\x2b\x06\x5b\x82\x11\xa0\x1a\xe0\x88\x38\x6a\x71\x47\x09\x80\x86\xab\x82\xb5\x2f\x5e\x68\x58\x3b\xce\x8c\x81\xf2\x30\xaf\xe6\x20\x49\xb1\x51\x60\x93\x54\xec\x61\xfb\x51\xa5\x2c\x6e\xd2\x42\xc0\x19\x6c\x34\xd2\x8c\xab\x5a\x7b\xb3\xef\x31\xde\x60\x7f\x6f\xf3\x64\xeb\x64\x21\x98\x08\xd8\xb2\xd8\x9d\xd2\xed\xb0\xf8\xb1\x0c\xcd\xbb\x67\xbf\xba\x4a\x2b\xcb\x35\xdd\x71\x72\xf1\xde\xb1\xa9\x81\x79\x48\xcd\xd8\x4b\x41\xf2\xba\x1c\xbb\x15\xe4\x6e\x5f\xb8\x98\x0f\x92\xcf\x3e\xdc\x0b\x89\x7a\x63\x68\x6d\x63\x4a\x6a\x50\x93\x73\x9b\x7a\x12\xd2\x2e\x73\xf6\xe2\x2d\xe6\xb4\xe1\x17\xa5\x10\x75\xf3\xc6\xb5\x22\x29\x6c\x21\xf7\x66\x96\x47\xf2\xb7\x6d\x08\x16\x3b\x7b\xf0\x7b\x0c\x59\x80\x86\x3e\xd9\xd7\x92\x62\x44\x87\xb1\x59\x22\x32\x51\x65\xe6\xea\x2f\x21\x03\x53\xbc\x98\x4c\x4d\xa9\x76\xba\x86\x5b\x29\x51\x41\x51\x18\xb0\x63\xe5\xa5\x55\x48\xa7\xef\xa9\xa8\x6b\xa2\xcd\x12\x6c\x06\xdd\x42\xbb\x60\x8c\xc3\x57\x8d\xbd\x85\x9f\x3a\x4c\x40\xa5\x3a\x59\x1e\x5a\xbc\xab\x20\xe6\xe6\x44\x2d\x5d\x3f\x76\x49\x6e\x3b\x48\x1c\xe8\x99\x97\x3b\x09\xea\x95\xc5\xad\xe2\xec\x55\xa5\x27\xf9\x1c\x56\xcc\xea\xd4\x28\x98\x7c\x45\xdb\xcc\x58\xd9\xe9\x7e\xcb\x66\x81\x2d\x4c\x18\x24\x8c\xe9\x01\x23\x02\x90\x21\xb4\x06\xb4\xaa\xbb\xd5\xce\xff\x46\x45\xec\xe0\x41\x1a\xce\x43\xcb\x88\xee\x7e\x0e\xc6\xd9\x91\x25\x05\xaa\xa6\x65\x63\x18\xf6\xa8\x58\x2b\xb0\x4e\x42\x2d\x99\xd4\xd2\x23\x56\xdb\x50\x33\xf6\x05\x09\x73\x47\xb3\xb4\xbd\x59\x31\xea\xc9\xb8\x61\x2c\x06\x95\xa4\x43\x1d\x11\x0e\x06\x74\xb4\x53\x87\x2b\x9d\x8e\xa5\xd5\xd1\x64\xbe\x41\x76\x70\x1c\xea\xe7\x74\x9f\x8e\xbe\xbd\x7c\x3e\xe1\x8b\x8c\x25\x13\xe5\xf4\x1a\xc6\xfe\x9f\x89\xc9\x4f\x48\xb0\x39\x0b\x98\xec\xeb\x72\xc2\x8e\x8c\x65\x0d\x47\x62\x88\xa8\x17\xf9\xbc\x33\x91\xdd\x9d\x18\x81\x58\x8a\x91\x8a\x42\x93\x82\xa0\xa4\xec\x1f\xf2\x3e\x1e\x40\x23\xc9\xa5\xce\x44\xc9\x7a\x89\x6a\x99\xa2\x5c\xc9\xda\x54\x3a\x68\x7e\x3a\xd9\x39\x4e\x38\x46\xc5\x38\x6d\xb1\xed\xee\xee\xf5\xa4\x44\xd7\x75\x37\xc1\x44\x28\xb4\x73\x4a\x72\xe8\x4b\x4e\x22\x11\x91\x24\x5b\x05\x78\x19\xec\xa5\x8c\x6c\x93\x21\x65\x35\x1b\xe0\xa1\xc7\x28\xb0\x9f\x10\x71\xe0\x38\xb5\xb0\xef\xa8\x01\x72\x77\xf1\xd5\xd6\xd1\x97\x4d\x47\x2d\xfa\x20\xcf\x6f\x8b\xbb\x00\xae\xae\xd9\x10\x3b\xdd\xa3\x82\xc3\x89\x39\x7a\x4a\x62\xdd\xdd\x45\x9f\x4e\xce\x0e\x5b\x25\xdb\xbb\xfe\xe4\x98\x56\x4a\xa8\xba\x89\x52\xe4\xd1\x61\xda\x96\x1d\x4b\x7b\x1a\xa9\xe3\x97\x81\xd5\x1b\x73\x59\xf0\x8a\xcc\xeb\x8b\x81\x65\x04\xe9\x32\xc5\x70\x10\xd8\xb1\x96\xc3\xac\x51\xb9\xcd\x50\x59\x39\xd2\x52\x2a\x8a\xa9\x92\xa6\x1c\x01\xb0\x4b\xfe\x75\x19\xec\xdd\xde\xc6\xe3\x02\xa3\x28\x11\xa7\x67\xe0\x1c\x2f\x87\xdc\xed\x33\xc1\x0c\x3c\xa5\x5b\x9e\x84\xae\x71\xd2\xbe\x67\x36\x4c\x5c\xab\xe7\x72\x29\x02\xe0\x1f\x2e\xb9\x73\x08\x2e\x7b\x7e\x00\xb5\xe8\x6c\x60\x90\x05\x8d\xbc\x5a\xef\xba\x7a\x0d\x4e\xee\xc0\x39\x23\x4e\xd9\x39\x87\xb5\x3a\x63\x37\xec\x52\x3e\xa2\x16\xd5\xe9\x95\x7f\xe5\xb9\x5d\xf8\xe5\x84\xc9\xcf\x4e\x80\x0f\x28\xd0\x10\x8a\x97\x45\xb8\x23\x6e\x64\x58\xe2\x05\x7a\xfd\xae\xe9\x9c\x93\x79\x38\xae\x89\x51\x68\x50\xa7\xf3\xa8\xd4\x71\x84\xe6\xdf\x5e\xee\xa0\x63\x55\xd1\x40\xc2\xdc\x5d\xfa\x5e\xe7\x42\xcf\x5a\x3e\x0e\x3b\xf2\x0e\x46\x24\xda\xe6\x60\xf2\xf1\xee\xc9\x49\x77\xd7\x81\x61\x05\x9c\x5c\xcf\x6c\x50\x31\x0e\xe2\xad\x62\x6e\x10\x7a\xd0\x42\xbc\x54\x67\x8d\xec\x0c\x92\x34\xd4\x59\xd6\x42\x92\xc8\x68\x4f\x71\xc2\xb4\xbc\xcb\x50\xa9\xec\x42\x2d\x68\x47\x22\x83\x49\xd2\xd1\x10\x64\xc4\xa5\x7c\x73\xc9\x69\x3c\x33\x64\x60\x64\x2b\xdb\x13\x5d\x93\xbc\x0f\x15\xe0\x88\x54\x17\x83\xb5\x33\x21\x0b\x4d\xd0\x56\x10\xb5\x18\x26\x10\x59\xf7\x65\x77\x8b\x1d\x57\x73\xe1\xc8\x77\x9c\xef\x53\xe2\x04\x43\x7d\x58\x1d\xca\xf5\x5a\x43\x6b\x65\xd4\xee\x54\xfb\xae\xa8\x56\x95\x38\x89\xf1\xea\xa5\x25\x4a\x3c\x61\x88\x2b\x5a\xc0\x0a\xba\xd4\x08\x4c\x4d\xbb\x77\x16\x7c\x5c\x0e\x43\x18\x3c\xa5\xe0\xd8\xcf\x50\x53\x68\x94\x22\xfe\xb0\x3b\xcd\xa0\x02\xdd\xb9\x5d\x62\x91\x7e\x77\x74\xd0\xfb\x3a\x9f\x2a\x46\x42\x4f\xf6\xf8\x8c\x7b\xed\x64\xa5\x98\x70\x7a\xea\x08\x27\x2c\x26\x96\xf6\x1d\x1a\x3d\xf5\x58\xb0\xf7\x54\x2b\xb5\xe3\x03\x60\xa1\x0a\xeb\x2e\x23\xc1\x3c\x39\x55\xdf\x64\x07\x6f\xc8\x4d\x32\xf9\xab\x11\x48\x0b\xc9\x2a\xee\x71\x74\xfc\xad\x6c\xf5\x23\x13\xa2\x3c\x9c\x18\xb5\x4c\x3a\xe2\x09\xaf\xf4\xa1\xc1\xba\xa1\x53\xe9\x95\x14\x29\x34\x2e\xb5\x98\x51\x11\x2d\x93\x9f\xbf\x70\x7a\xb6\x3c\xb1\xf3\x64\x00\x6e\x85\x37\x74\xa2\x4d\x86\x29\x6e\xb0\xbc\x35\x39\xc3\x36\x52\xe1\x88\x60\x85\xa4\x8a\xa9\x67\xa1\x74\x05\xa3\x34\x49\x2e\xea\xba\x9d\xe5\x6c\xbe\xac\x51\x7b\x4b\x4e\x92\x6c\x35\x0a\x32\xa5\xce\xf3\xd0\x39\x00\xa9\x37\xb3\xf1\x1f\xb4\x78\x02\x9f\x29\xdd\xc2\x80\x07\xf5\xa2\x34\xb7\x5d\xbf\x7a\x0b\x30\x14\x5b\xa7\x10\x43\x17\x99\xb3\xcd\x2e\x47\x23\x00\xf5\x67\x91\xd5\x9e\xa2\xe2\x8a\x49\x37\xc7\xd8\x32\x92\x1c\xac\x9b\x1d\xd4\xea\xba\xdb\xd3\xaa\xe1\xf1\xe3\x81\x72\x85\xb4\xea\x8d\xa5\x70\x90\x64\xf5\x56\x00\x0a\x2b\x30\x33\xb9\xad\xb3\x89\xb8\xbe\xe4\x05\xb4\x75\xac\xa2\x4a\x8b\x39\x29\x3a\x25\xcc\x26\xf3\xd3\x6c\x92\x93\x64\x1a\x3f\x4b\xa0\x2c\x3e\xc2\xa9\x7b\x81\xfd\xde\xa2\x7e\x2b\x00\x40\xe1\x9f\x3f\x3b\xeb\x66\xff\x1b\x9f\xfe\xff\x57\x55\x69\x0d\xcf\xcd\xa7\xdf\xc2\xa7\xe0\x9b\xbb\xcf\xeb\xde\xdc\xa4\xf5\x9f\x84\xa2\x79\x0a\x60\xbf\x03\x29\xea\x4a\x01\xf0\x6b\x0f\xed\x2f\x5e\x27\x2d\x5f\x89\x79\xf6\x9f\x37\xdc\x10\x14\xba\x9d\x41\xe7\x83\x0a\x10\xca\x9c\x1b\x68\x34\x21\xa2\x4d\x11\xdc\x58\x09\x75\x2d\x9f\xbd\xcd\xe0\x77\x7e\x89\x36\x03\xf7\xc3\xd9\xa2\x3e\x88\x72\x17\xe5\x93\xd8\xf5\xe1\x36\x51\x4c\x51\x61\xa2\x6a\xd2\xd0\x7c\xd1\x25\x27\xb4\x21\xee\x53\x49\x2d\x4f\xa2\x1f\x6e\x8b\x4b\xa9\xe8\x77\x46\x89\xa8\x46\xde\xa0\x16\x54\x19\x70\x4e\x17\x79\x64\x7a\xb4\x26\x7a\xd2\xc0\x19\x76\x93\x06\xb5\x3a\x8a\xf2\x1c\x69\x35\x5c\xb4\xbe\x69\x18\x25\x3f\x47\x9f\x81\xae\x52\x6a\x75\xbb\xb8\xd6\x24\xf9\x4e\xa1\xe9\x7d\x79\xc3\x67\xd9\x87\x0c\xce\xc8\x31\x46\x6a\x96\x73\xbc\x4e\x86\xf5\x52\xd1\x21\xb4\xd8\x69\x77\x2a\x5b\xa1\x6b\x6b\x0e\x7e\xa0\x39\x72\x87\x9e\x14\x75\x48\x94\x6c\xe1\xc9\x1d\x68\x07\xfb\x47\x6a\x07\x7c\xf1\x11\x97\x10\xea\x3e\xb2\x94\x59\x9b\x53\x15\x0b\xf5\x50\xde\x7c\xcb\x09\x94\x58\x88\xce\x4a\x40\x01\xc5\xfa\x56\x14\x49\x2b\xa8\xdc\xe5\x5e\x8f\xfa\xbb\xa7\x46\x52\x72\x54\xa2\xd9\x4b\xab\x94\xf7\x48\x34\xe3\x5c\xb5\x44\x7b\xe9\x8f\x12\xe8\x91\x51\x0d\xad\xd7\x8b\x9a\xd5\x67\xa2\x8d\x5b\x4c\x47\x0e\xb9\x03\x65\x34\xa9\xa2\x16\xaf\x56\x8a\xbe\x7e\x0d\x47\x3f\xad\xcb\xec\xc5\x43\xd2\x0e\x51\x74\xa9\x52\x12\x81\x3a\x92\xd5\xb2\x5d\x23\xef\x79\xc3\x67\xd8\xdf\x0d\x16\xe5\x2f\x2a\xc6\x1e\xa8\x9e\x93\xc2\x69\x6e\xd9\x22\x5b\x93\x11\xf0\xb2\xbc\xc6\xe3\x63\x7b\xc5\x36\xfd\xc7\xb3\xb0\x57\xf4\x55\xad\x35\xdb\x89\xd3\xb6\x7f\xbc\x70\x70\x5b\xbb\x28\xd5\xd6\x95\xdb\x3c\xf0\x52\x42\xcf\x2c\xed\x0d\xd7\x4b\xeb\x96\x21\xcf\xa6\x5e\x59\xd8\x8b\x63\xd2\x82\xab\x64\x51\x29\x65\xbc\x3c\x6c\x95\xf7\xe7\x24\xae\x7a\x66\x2c\xb3\xce\xe3\xbd\x9c\x1c\x61\x79\x46\x3d\x7e\x57\x49\x54\xac\xa8\xad\xa9\x86\x88\xf2\x2d\xbd\x34\x83\x2a\xcf\x8e\x27\xb5\xad\xee\xa2\x8e\xf8\xe0\xae\x8b\xa8\xd7\xa2\x7a\xec\xae\x0c\x51\xd2\x9c\xf6\x12\x3d\x2a\xcb\x3d\xde\xf6\x64\x7b\x59\x33\xfb\xef\x67\x00\x76\x01\xb6\x00\xd5\x0e\x16\x33\x20\xc3\x00\xdc\x3e\xb3\x32\x06\xde\x6d\xb4\x2b\x70\xf7\xa6\x28\x4d\x51\xc6\xba\x19\x6a\x99\x11\x5a\x78\x60\x74\x0d\xf4\xae\x39\xa2\x06\xc6\x8d\x97\x2f\x7d\xd9\x36\x8a\xaa\x9b\xb1\xd1\x38\xa9\x29\xa2\x6c\x5a\xe8\x2f\xd9\xe0\x31\xdc\x5b\x57\x3f\x88\x12\xb5\xd4\x13\x7e\x32\xc3\xf7\xee\x9e\x9f\xf7\x8e\x89\xc6\xea\xeb\xbf\xe2\x4a\x8c\x9c\x6e\x27\x27\xe6\x97\x87\xe5\x7d\xac\x9c\x49\x53\x68\xda\x1e\xf1\xfc\xec\xb4\x07\x84\x26\x80\xe5\xd2\x5f\xa8\xb3\xd9\x5d\x36\x19\x85\xd6\x51\x54\xf7\xb5\x51\x1b\x2c\x1a\x47\xbd\x58\xf8\xb2\x95\xa8\xcb\xa2\xee\x88\xd2\x8f\x83\xbb\x26\xa2\x0c\x45\x2d\xfb\x2a\xde\xdb\x36\x51\xcf\xc7\x5d\x4e\x4b\x76\x7b\x40\xd4\x66\x6b\xe6\xa3\x60\x49\x58\x6b\x21\x11\xa1\xd0\xcc\xbb\xe2\x65\x3f\x58\x65\x93\x05\x75\x58\xd4\x45\xaf\xd5\x9f\xa2\x0a\x6c\xf1\xe3\x7b\xf4\x59\x8a\x35\xde\xcd\x8a\x0a\x19\x11\xa0\x87\x05\xfa\xd9\x74\xb7\x45\x34\xba\xd0\x36\xd9\x6a\xa7\x9d\xa7\x3e\x8a\xea\x37\x1e\xe3\x48\xad\xc0\x12\xef\x64\x03\x8c\x8b\xfc\x8a\x1b\x8d\xa6\x90\xaa\x45\x89\x21\x1f\xe1\xb4\x11\x42\x17\x3e\x7a\xdf\xa6\x83\xfa\x59\xa8\x2b\xac\xff\x06\x5c\x1b\xcb\xdc\x8c\x57\x42\x3c\xca\x3d\xbd\xe3\xb3\x9f\x77\xbe\xd1\x90\xfd\xf3\x37\xfa\xd4\xeb\x15\xac\xd3\xdf\xf1\xf9\xf2\x4a\x66\x88\xdd\x9e\x3a\xd6\x85\xb6\x43\x66\x43\x68\x55\xa5\x15\xe9\xa2\x55\x9a\x99\xbb\x02\x97\x02\x99\x11\x14\xa0\xd5\x1b\xad\x43\x17\xad\xea\x4b\x76\xb8\xb4\x75\x33\x21\xbd\x96\xc2\x4f\xc9\x0c\x94\x4b\xa3\x84\x95\xc8\x82\x5c\xe3\x4b\x61\x9b\xa9\xd5\x29\x6f\x60\x01\xae\x33\x2a\x40\x17\xdf\x45\x24\x2b\x45\xe1\xde\x76\xa6\x05\xf3\x78\x9b\x56\x1c\x8a\x04\x0d\xbb\x44\x8c\x12\xd1\x44\x15\xe9\xa7\x56\x43\xbe\x89\x31\x61\x1c\x43\x0e\xb4\x92\xd7\x02\x73\x74\x77\xc0\xdc\xae\x6c\x8f\x4a\xbc\xec\x66\x23\xb9\xe6\x46\xd4\x11\x6c\x86\x5f\x49\xff\x63\x8d\x40\x68\x0c\x04\x68\xf5\x53\x11\xe0\xa2\x55\xc3\xa1\x3d\x6d\x03\x1c\x6a\xea\x13\xa3\xd5\xc5\x43\x25\xfd\x83\x68\xa2\x31\x46\x94\x1a\x9f\x07\xd2\xb6\xb3\xd0\x2a\xb5\xc4\xe8\xa4\x01\xed\x51\xb2\x58\xeb\x52\xdd\x65\xea\xb2\xb9\xd6\xeb\x7f\x13\xf6\x13\xc8\xb9\x5a\xe3\xc3\xad\x47\xed\xd2\x34\xda\x22\x6f\xc7\xef\xee\xde\xcc\x6e\x3b\xf1\x4c\xf1\x41\x8c\xf5\xdc\x6a\x65\x57\xdc\xfb\x2c\xd2\xf8\x24\x40\x47\xf1\x44\x66\x9c\xfb\x69\x0f\xdf\xae\x9a\x97\xd2\xbd\x6d\x75\x69\x34\xd4\x72\x43\x52\x89\xc9\x0d\x59\x84\xa4\x92\xfd\x55\xa9\x7b\x90\xf6\x53\x32\x3d\x49\x28\x4f\x93\xff\x15\x47\x7c\x1e\x61\xdb\xce\xc7\x6e\xce\x7c\x9d\xdc\x75\x7e\x02\x36\x8a\xef\x28\x23\xf6\xfa\x4d\x24\x7d\x30\x8c\xa5\xeb\x49\x91\x2b\x19\xda\x37\x4d\xda\x55\x89\x17\x29\xaa\x30\x9f\x07\xab\x72\x2f\x44\xf8\x70\x23\x4f\xb3\xa3\xc8\xb2\xfd\xee\xcd\xdb\x35\x57\xd4\x96\x1b\x7d\x95\x15\x1b\xda\xc3\x44\x84\x5b\x89\xfa\xf8\x2e\xf1\x40\x73\xf9\x13\x4f\x1d\x49\xf3\xde\x73\x64\x23\x7a\x36\xdc\xd7\x91\xcb\x67\xeb\xc9\xab\x44\xf7\x6c\xe6\xd2\xb1\xf3\x35\x6e\x44\x2f\x15\xa9\xff\x05\xd1\x99\x3c\xd3\xbd\x65\xa5\xbc\xd6\xf8\x14\x02\xcc\xe1\x67\x5c\xda\x2b\x9d\x0f\x6e\x59\x41\xb9\xef\xb7\x0f\xdb\x21\x9b\x94\x69\xf0\xba\x7c\xa1\xdd\xd6\x83\xf8\xaa\xdd\x5b\x44\x27\xab\xf4\xe5\xc5\xaf\xd3\xb5\x88\xf0\x41\x1a\xa6\x6e\x50\x0e\x13\x7f\x50\x79\xa4\xa0\x8d\xcc\x1c\x15\x1a\x95\xf4\x21\x8c\x06\x00\xfa\x12\x04\x88\xad\x60\x23\x2e\x0c\x03\x90\x63\xf0\xa8\x01\xe0\x83\x83\x2c\x3a\xaa\xac\xc3\x8d\xa4\xed\x94\x58\x0b\xb0\x3d\x40\xb3\x04\xad\x0d\xe7\xab\x90\x5a\x16\xae\x92\xcc\x8a\xbd\x4a\xd1\x8a\x7d\x55\x09\xa7\xb8\x76\x55\x29\xc3\xe5\x5f\x55\xc6\x01\x59\xf8\xd0\x57\xad\x13\xf3\x55\x55\x34\x77\xf8\xaa\x6a\x46\x5b\xbd\xaa\x86\x4b\x7a\xf7\x33\xaf\xe5\x94\xa9\xc1\x16\x09\x52\xea\x90\x51\x82\x98\x62\x14\x20\xe8\xd1\xa1\xcb\x70\x6b\x51\x91\x4c\x53\x62\xca\x11\xd6\x6c\x47\x2a\x11\x10\x5c\x2c\x6b\xca\xcb\x00\x02\xfd\x1e\x4c\x5e\x25\xe1\x3a\x25\x44\x46\xf5\x72\x6c\x11\xc1\xe8\x48\x28\x9c\xf3\x0a\x0b\x61\x4f\x96\x2a\x33\xbc\xcd\x27\x17\xa3\xa4\x1c\x3e\xb2\xc7\xaf\x05\x75\x6b\x0d\xf5\x7a\x4a\xb8\x8e\x51\x9f\x31\x22\xa7\xe4\x18\xbe\x7a\x49\xab\xc1\xe9\xb1\x4d\x18\x33\x64\xfa\x8e\xe0\x5e\x8a\x28\x19\x11\x7c\x94\x8f\x61\x15\x53\x12\xf0\x5d\x6f\x52\x71\xe6\x68\x2d\xfa\x54\x9f\x45\x88\x6a\x41\xaf\xbb\x84\x57\x12\x41\x38\xf2\x59\x30\xff\x67\x91\x64\x21\x15\x15\x56\x71\x6b\xab\x0c\x44\xae\x26\xfa\x5c\x2b\x83\x8f\x5c\x2e\xe5\x03\x33\x15\x60\x29\xfe\x7e\x24\x79\x44\x4a\xe0\xbf\x43\xfc\xcc\xf0\x5d\xc3\xcf\x1e\xe6\x54\x26\x25\x08\x86\xac\xf2\x3b\xf0\xc1\x42\x38\xbd\x87\xcf\xcc\x64\xaf\x83\x15\x7f\x87\x96\x35\xd2\xac\x08\x8e\x5c\x6e\xcf\x07\x96\xf0\x49\xc2\x6f\x38\x5b\x81\x14\x14\xed\x69\xcb\xd9\x85\xc1\xfc\x1f\x47\x0a\x2e\x96\x0c\xf1\x35\x95\xc7\x1e\x4f\x92\x9f\x35\xda\x4d\x1a\x58\xf0\x64\x43\x5e\x2a\x41\xc5\xc4\x30\xf9\xf1\x7c\x2f\x45\xfc\x3f\x73\x6c\x05\xc8\x40\x24\xf7\xf9\x2f\x12\x9f\x05\xe2\x49\xe0\x11\x05\x8c\x90\x48\x06\x69\x94\x71\x8f\x5b\xa4\x0a\xcb\x23\x72\x99\x63\x1e\x26\x2c\x92\x85\xe3\x3f\xb3\x5c\xe1\x3e\x1c\x16\x58\xe4\x06\x59\xcc\x90\xcd\x24\x29\x5c\x63\x8c\x66\xae\x33\x75\xb9\xa7\x3e\x5e\x34\xba\xbe\x33\x70\x62\xd6\x75\x35\x51\xe7\xa0\x6b\x4f\x7d\x85\x55\xd6\x82\x1f\xfa\xfd\xf6\x47\xb7\x3e\x3f\xf5\xde\x40\x52\xff\xa6\x54\xa3\xf1\x64\x3a\x9b\x2f\x96\xab\xf5\x66\x5b\xbb\xfa\x67\xbb\x96\x4b\xdd\xe4\xfe\xe1\xf1\x49\xc9\xd0\x61\xa4\x4e\x7e\xf8\xe8\xa2\x86\x01\x45\xd4\x7f\x4a\x40\x08\x46\x50\x0c\x27\x48\x8a\x66\x58\x8e\x17\x44\x49\x56\x54\x4d\x37\x4c\xcb\x76\x5c\xcf\x0f\xc2\x28\x4e\xcb\x64\x79\x51\x56\x74\xe8\xe6\x6d\xd7\x0f\xe3\xe5\x1a\xab\x4c\xf3\xb2\x6e\x13\x6a\x3f\xcc\xe6\xed\xaf\xf3\x8d\x89\x8d\x8b\x4f\x48\x4c\x4a\x4e\x49\x4d\x4b\xff\xb3\x40\xff\xa4\x64\x66\x65\xe7\xe4\xe6\xe5\x17\xb0\x0a\x8b\x8a\x4b\x4a\x39\xe6\x45\xe3\x0b\x55\x63\x53\x73\x4b\x6b\xdb\xc3\x47\x8f\x9f\x3c\x05\x40\x08\x46\x50\x0c\x27\x48\x8a\x66\x58\xae\x5a\xdd\x1f\x6a\x34\xb4\x1b\xaa\xd7\xb7\x17\x6b\x23\xe9\xa7\x1e\x38\x78\x6c\x69\xf6\xb3\xac\xa8\x12\xf9\xbb\x7e\xe8\xa7\x7e\x91\xae\xdf\xfa\xa3\x6e\xf5\xa8\x97\x42\x8a\x29\x62\x9a\x72\x72\x28\xe5\x0e\x99\xe4\x91\x4f\x8b\xfa\xd4\xaf\xbf\x1a\xd0\x3f\x23\x79\x9b\x86\x67\x69\x54\xc1\xfd\x08\x9a\x31\x6b\xce\xbc\x05\x1c\x8b\x96\x69\xbb\x86\xdb\x66\xe1\x76\x48\xb8\x27\x58\xbd\x35\x58\xa3\x35\xe9\xa9\xa5\xf4\x86\xb3\x28\xe2\xb6\x79\xb8\xff\x42\x0b\xa3\x12\x61\x85\x53\xa9\xf0\x22\x88\x28\x92\xc8\xa2\x88\x2a\x9a\xe8\x62\x88\x29\x96\xd8\xa8\x30\x3d\x71\x30\xba\x18\x88\x27\x3e\x2a\x79\xc5\x0b\xaa\xae\xbd\x00\xa1\x75\x12\xe4\x75\xc1\x5e\xf1\xda\x7b\x6f\xa1\xde\x39\xe8\x7d\x1f\x7c\x54\xed\x90\x8f\x7c\xf1\xd5\x61\x7f\x72\x54\xbd\x46\x4d\xa2\x62\xeb\xec\x84\x56\x2d\x3f\x50\x7f\xfe\x3a\xb4\xeb\xd4\xa5\x5b\xaf\x1e\x7d\x06\xf4\x1b\x32\x68\x58\x8c\x09\x4d\xb2\xce\xc4\xb5\x1b\xb7\xee\xdc\xb7\xde\x9f\xa5\x47\x20\xa8\xff\x01\x02\x81\xc2\xe0\x08\x24\x0a\x8d\xc1\x82\xbb\x1f\x62\x7f\xf4\xe2\xd2\x5c\x06\x0e\x6d\xf7\xba\xe5\x0a\xa5\x4a\xad\xd1\xea\xf4\x06\xa3\x8b\xb4\xfb\x64\x77\x93\xd9\x62\xb5\xe1\xbb\x4f\xec\xe9\xe5\x2d\x46\x6c\x6b\xe1\xb7\x2a\x4e\x7c\xff\xfa\x8d\x04\x89\x92\x24\x4b\x91\x2a\x4d\x3a\xa6\x0c\x99\xb2\x64\xcb\x91\x2b\xcf\xe4\x8d\x30\xeb\x97\xd6\x76\x67\x36\xd4\xef\xcc\xea\xac\x09\xac\x0e\xb9\xea\xec\x61\xb0\x27\x54\x75\xf6\xdc\xa9\x6e\x75\xae\x2b\xd8\x4b\xa3\xba\xf2\x06\xa8\xce\xde\xeb\x00\x83\x08\x7c\xf7\xd4\xd9\x27\x9a\x3a\xfb\xea\x52\x67\x3f\x50\xea\xec\xb7\x48\x9d\xf5\x70\xd4\x59\xbf\x45\x9d\xfd\x83\xa8\xb3\x61\x85\x3a\x36\xa8\x43\x81\xba\x3c\xad\xfc\x3e\xa9\x79\x0b\x38\x16\x2d\x59\x96\x7e\xc3\x80\xf1\x2c\xfe\xf0\x96\xed\x08\xbf\x2f\xf4\xef\x51\xfd\x0f\xa3\x58\x27\x9c\xc2\xbe\x5f\x95\xb2\x32\x75\xd3\x76\xbd\xe6\x1b\xc7\x53\xd8\x3f\x38\x3c\x3a\x3e\x39\x3d\x3b\xb7\x7b\xff\x9e\xdd\xdc\xde\xdd\x3f\x3c\x82\x10\x8c\xa0\x18\x4e\x90\x14\xcd\xb0\x1c\x2f\x88\x92\xac\xa8\x9a\xda\x1b\x2a\xbd\xa3\xb6\x63\xf2\x7e\x9b\x82\x30\x8a\x93\x34\xcb\x8b\xb2\xf2\x78\xff\xaa\x0d\xe3\xe5\x7a\xbb\x4f\xf3\xb2\x6e\xfb\xf1\x78\xbe\x24\x7e\x57\xaa\x35\x9f\x37\xd4\x79\x1b\x6d\x99\xf7\x17\xe4\x5e\x7f\x30\x1c\x8d\x27\xd3\xd9\x7c\x21\xc9\x8a\xaa\xe9\x86\x09\x20\xc2\x84\x32\x6e\xd9\x8e\xeb\xf9\x81\x08\xa3\x38\x49\xb3\xbc\x58\xae\xd6\x9b\xed\x6e\x7f\x38\x9e\xce\x00\x22\x4c\x28\xe3\x42\x2a\x6d\xac\xf3\x21\xa6\x5c\x6a\xeb\x63\xbb\xdb\x1f\x8e\xa7\xf3\xe5\x7a\xbb\x0b\xc2\xa1\x1d\x1c\x99\xc1\xc3\xbf\xbf\x16\x1c\xd2\xc0\x11\x07\x1c\x9a\xc2\x61\xcd\x5d\x5a\x5e\x59\xf5\x85\x43\x55\x78\x53\x6b\x5d\xc1\x0e\x58\x00\xbf\x9a\x06\x35\xe1\x90\x07\xfe\x17\x09\x3c\x40\x20\xf0\x41\x41\x20\x48\x65\x72\x85\x92\x25\x3b\x1b\x19\x83\xbb\xf6\xcb\xff\xfd\xfd\xab\x07\x08\xc2\xe5\xf4\x40\x21\x5e\x03\x96\x86\x82\xab\x72\x17\x90\x01\x7f\x0f\xea\xbf\xef\x36\x41\x2c\x09\xca\x4a\x61\x84\xb2\x8d\x65\xd9\xa6\x9e\xcb\x56\x27\x11\x59\xca\xa4\xe3\x9b\xd9\x42\x1e\xf3\x30\xc6\x14\xfa\xb0\x1b\x4e\x6b\x4b\x88\x0f\xf0\x3d\xfc\xe1\xe7\xbf\x5a\xe0\x8e\x81\xf3\x62\x65\xe8\xcd\xfd\xd2\x95\xd2\x9a\x51\x0d\xf3\x73\xb2\x73\xdb\xf7\x0e\x0f\x05\xb7\x05\x13\x3f\xa6\x95\x0b\xd7\x63\x41\x0a\x45\x2a\x55\x7a\x26\x2b\x0b\x37\x4c\x48\x30\x39\x90\xf3\xdc\x6c\x63\x6a\x1d\x69\xc4\xc7\xab\x03\xc8\xcb\x0a\xc3\x95\x86\x13\x4d\x09\x6d\x19\xc6\x53\xa4\x68\x54\x69\x92\x69\x8f\xa0\x32\x64\x63\x35\x8f\xa7\x48\x99\x72\xaf\x54\x10\x5d\xfd\x87\xd2\x71\x0b\x5d\x53\xb1\x94\x62\x41\x1b\xfa\x71\x6f\x1a\xe7\xc8\x7a\xe9\x98\x1f\xbf\xac\x82\x71\x85\x6e\xcc\x6e\xfa\xf8\x10\xce\x3f\x92\x3a\xe3\x96\xd7\x3e\xc1\x14\x6c\xdf\x2a\xe4\x2c\xee\x8c\x84\x69\xe3\xb5\xdf\x99\x99\x90\x2a\x3c\x25\x0a\x21\x95\x36\x03\x16\x5c\x74\xa0\xa5\x42\x28\x13\x52\x19\xcf\x42\x44\x97\x09\x98\x90\x4a\x1b\xcf\x82\x0b\x38\x2f\x6f\x18\x2f\xac\x15\x04\x4c\x19\x17\x52\x85\x0a\xd1\x63\xc1\x45\x66\xa5\x10\xca\x78\x88\x94\x52\x4a\x29\xab\x08\x98\x50\xc6\x45\xa8\xaa\x3a\x44\xa4\xd6\xd5\x06\x6e\xa3\x53\x0d\x01\x33\x2e\xa4\x8a\xec\x7a\x06\xae\x46\x9c\xb1\x91\x59\xab\x84\xc9\xf0\x4e\xa0\x1f\x45\xb7\xfa\x83\xa3\x8a\x7f\x9c\x08\x84\x32\x2e\xa4\xd2\x66\x88\xb4\xe0\x0e\x72\xe3\xfc\x2b\x44\x04\x13\xca\xb8\x90\x4a\x9b\x9d\xc4\x7f\x64\xf3\xf1\x87\x56\x94\x1a\x58\x70\x5d\xd2\x71\xea\xdc\x50\xf0\x1e\x4c\x70\x8d\x97\x81\xb8\x15\xd3\x11\x39\xd6\x7e\xd7\x78\x89\xa8\x9e\x04\xf4\x03\xeb\x6d\x73\x14\xba\xf0\x76\xd9\x66\x9d\x6f\xfb\x43\xfb\x3b\x27\x64\x59\x1b\x65\x68\xb8\x5a\x5d\x10\x69\x8b\x2d\x7a\x4f\x05\x57\x57\xaa\xab\xe8\xbe\xcf\x2f\xd8\x5a\x42\x5f\x96\x73\xce\x00\x21\x60\x69\x82\x46\xbf\x7f\xfb\xfe\xdd\x2e\x0f\xf9\x82\x0f\x7c\xb5\xff\x28\xfc\x6e\xc9\x61\x37\xeb\xa3\xf3\xee\xbe\xbf\xc9\x49\x42\xcf\x4f\x09\x5f\x1e\x33\xdb\x6e\x9b\xfa\x81\xa3\x87\x95\x49\x9a\xee\x51\x95\x9b\x4d\x77\xab\x8e\x53\x56\x0d\x4d\xdb\xb7\x5f\xf5\xb9\x47\xb8\x41\x43\xcd\xb2\x4e\xf4\xc1\x02\x0b\x6c\x00\x38\x82\x03\x2e\x20\x78\xe0\x43\x00\x21\x70\x10\x10\x41\x0c\x09\xa4\x40\x70\x86\x0b\x5c\xe1\xe6\xdd\xc3\x63\x51\x6c\x05\x8c\x1e\x74\xc1\xb0\xf0\x50\x71\xe4\x84\xf3\x7e\x31\xde\x9c\xad\xb8\x4b\x3b\xa5\x3b\xcb\xa1\x85\x5e\xcc\x41\x62\x6a\x0e\x15\x27\x3a\x3c\x52\xe1\xbd\x92\xf5\xdd\xa4\x9f\xf4\xbd\x14\x2b\x9f\x02\x58\x46\x7f\xdf\x0f\x6d\xed\x98\x61\x99\xa1\x19\xe6\x7d\xb7\x6d\x72\x1b\x87\x94\x80\x87\xe4\xbc\x3a\x17\xae\x75\x01\xb1\x33\x95\x4d\xe4\x6b\x6c\x01\x95\x80\x5f\x08\x32\x6a\x3a\xf4\x6f\x77\xf9\xab\x50\x4a\x14\x1a\x85\xcb\x4a\x17\xff\xb9\x84\x4f\xcd\x07\x5e\x3d\xd5\xef\x64\x6a\xa7\x1e\x64\x43\x39\x06\x75\x48\x49\x75\x4c\xbd\x69\x2a\x6b\xbc\x2f\x3d\xe7\x5e\x7b\x89\x3e\x9d\x7c\x49\x1e\x13\x85\xb1\x59\xf2\x87\x94\x7a\xa7\x52\xf5\xa6\x0a\x68\xa3\x4f\xcb\x66\xbd\xe4\x28\xf3\x8e\x52\xa1\xac\xb3\x62\x76\x50\xf2\xea\x99\x25\xd5\x73\x9b\xf7\x96\x55\xcd\xe4\xc7\x5c\x11\x3e\xbe\xd9\xf9\xaa\xed\x20\x0c\x4d\x35\x0b\x88\x4a\xdf\xd4\xfa\x95\x2c\x66\x56\x0d\x8b\x59\x7a\xc9\xb0\xe7\xbd\x64\xa4\x1d\x35\x4b\x27\x6a\x69\xfd\x60\x18\x6f\x5c\xf0\xd9\x48\xc2\x9c\x75\x01\x30\x97\xaf\x9c\xd4\xe1\xf6\xda\x55\xd9\x16\xd2\x7b\x90\x52\xbf\xb0\x4a\x03\xe2\xab\x25\x80\x2a\x8f\x67\x58\xb9\x9d\x31\x8b\xb9\xf4\x4a\x03\x52\xa1\x4c\x1a\x84\xa9\x92\x39\x67\x22\xba\x5a\x87\x72\xd0\xb3\xbf\xf6\x19\xe7\x7c\xe4\xbe\x5e\xe3\xce\xe5\x46\x4d\xd4\x78\x54\x44\xad\xac\xd2\xa0\xd6\x55\x05\xa8\x54\x69\x50\x3f\x50\x8b\x19\x55\xe7\xce\x9b\xa2\x36\xf3\xbe\x32\xb8\x8b\x3a\x38\x14\x51\xf7\x56\xe6\x03\x16\xbd\xf7\xa5\xa0\xfa\xa9\x0a\xb2\x9b\xaa\xfe\x2d\x69\xce\x0b\xa3\xc6\xb5\x11\xb8\x1a\xff\x70\x23\xec\x5c\x9b\xf0\x1e\xd1\x88\x9c\x56\x35\x08\xa5\xff\x75\x14\xb1\x97\x0d\xa4\xe7\x04\xbd\x1d\xb5\x2f\xe9\x58\x2e\xcc\x5a\xac\xcd\x10\x0f\x66\x6b\x90\x70\xa8\x85\xbb\xa4\xb2\x5e\x5a\xf6\xe7\x70\xf7\xae\x76\xb7\xeb\xcf\xed\xea\x8e\xda\x3d\xdc\x4e\x06\x8c\xbf\xd0\xfc\xda\x76\x88\xa5\x52\x06\xab\x35\xa0\xc3\x0a\xa6\x4a\x55\x03\xa4\xcc\x6c\xa2\xf3\x63\x36\x19\x33\x3f\x52\xbe\x35\x53\x1a\x3a\xfc\x60\xb8\xbb\xe4\x81\xbe\x46\xf4\xb6\x42\x9f\xa4\xef\x25\xa0\xfe\xd9\x7c\xbf\x0c\xd0\x7f\x64\xdf\x62\x36\x46\xa2\x7d\xdd\x89\x9a\xa0\xc6\x15\xd6\xfe\x92\xf7\xd7\xd7\x0d\xb4\xe8\xf4\xec\xd9\xef\xdc\xe8\xd8\x43\x2a\x4c\x1c\xb3\x03\xbb\x30\x55\xc2\x16\x57\x3a\x0e\xf3\x13\xfb\xa8\xe5\xc6\xfe\x0a\xe2\x86\x8b\x33\x83\xa3\x37\x8f\x56\xc0\x95\x52\x82\x01\x77\x90\x11\x06\x13\xe4\x27\x48\x9d\x3b\xe4\xc1\x68\x44\x03\x12\xae\x2f\x77\x82\x1f\x0b\x93\xe0\x4e\xe4\x52\x17\xdc\x11\x30\x99\x48\x38\x11\x0f\xb9\xb1\x0d\xfd\x6d\x35\x94\xa8\x9b\x86\x50\x3f\xf6\xa0\x96\x60\x93\x35\xf4\x57\xd5\xc0\xe4\xa6\x7e\x85\xec\xcc\x83\x0c\x04\xe4\x7c\x5d\x0d\x89\x9e\xc8\x24\xc0\x2d\x5d\x1c\x70\xe7\x68\x1a\xae\xa8\x0e\x7b\xd7\xa9\xe7\x33\xba\x04\x2b\x34\xf3\xa8\x16\x42\xee\x51\x0d\xe1\x8c\x3a\x4a\x17\x2f\x3d\xf1\xea\x4b\x64\x2e\xa8\xb0\x57\xae\x41\xcc\xa3\x62\xf5\xec\xf5\xd1\x47\x50\xce\x6e\xe6\x88\x67\x5e\xa8\x8c\xc4\xfe\xed\x06\xe8\xb7\xd1\x58\xa0\x39\x46\x31\x77\xc9\x41\x36\x25\xf9\x31\x39\x77\x48\x32\x92\xaf\x69\x8a\x38\xa5\x54\xd1\x1a\x21\x5a\xcc\x74\xce\xca\x37\xd2\x9e\x7b\x3a\x0c\xd2\xe5\xa2\x94\x74\xb9\x8d\x84\xd3\xed\x64\x47\x77\xe1\x7c\xdf\x8b\xcc\xdd\x95\x9c\xcd\xac\xbe\xc5\xd5\xd8\x24\x0f\xcd\x24\x6e\xad\xb8\x49\xf9\x88\x9d\x45\x76\x8b\xb2\x3f\x20\x3f\xa3\x94\xf0\x78\x16\x19\xb7\x5e\xf3\xaa\x9e\x36\x03\xf5\x27\xe1\x47\xd4\x01\x1b\x98\xa9\xba\xaf\x75\x47\xf4\x54\xca\xbf\x4f\x3e\xec\x3b\x0c\x61\x1f\x78\x37\x93\xbb\x63\x1c\x79\x4c\xa1\x9b\xc1\xb7\xa3\x15\xc9\x63\xba\xc3\x73\x68\xcb\xcf\x66\x59\x04\xad\xac\x95\x35\x25\xbc\x35\xbb\x79\x0d\x7b\x9d\x02\xc9\xe8\xac\x7d\x6d\xd0\xc5\xdd\x2f\xc3\xd8\xc7\x5c\xaa\xa6\x9e\xdb\x35\xf3\xba\x4c\x34\x73\x82\x2e\x74\x1a\x8b\xa6\x32\xb6\x29\x0f\xd0\x39\xcd\xf1\xcf\x25\xf3\xa2\x26\x81\x50\xae\x2d\x0c\xde\xf6\x4b\x08\x98\xb0\x88\x2a\x25\x0c\xbf\x0e\x29\x23\x82\x69\x58\xcb\x19\x74\x44\x09\xa9\xec\xd7\x51\xa6\x2f\x57\xfb\x93\x7e\x59\xcf\x97\xc9\xf2\xda\xc9\xab\xbd\x94\xff\xab\x7d\xb9\x27\x7d\x4b\xf4\xf2\xa1\x9f\x03\x15\xd6\xff\x17\x0c\x5c\x56\x5b\xbe\x84\x04\xf9\x19\x7d\x17\x7c\x92\x8d\xbf\xc6\x2f\xd2\xf4\x70\xe2\x2b\xc8\x6a\xb7\x7f\xbc\xba\xaf\xd8\xf1\xca\xbf\xc9\xea\x88\x5a\xe9\x04\x41\xf1\xcb\x9e\x2c\x52\x40\x7d\xdb\x5d\x33\xd4\x73\xed\xf7\x25\x4c\x12\x07\x00\x1d\xca\xb8\x90\x46\x7b\x16\x5c\x64\xd6\x09\xa1\x8c\x0b\xa9\x74\x50\xf7\x60\xc1\x45\x56\x0e\xd5\x8f\x7d\x26\x84\x32\x1e\xe2\xd7\x5f\x8c\x26\x9b\xc6\xb9\x80\x9a\xff\xf1\x0d\x11\x4c\x46\x1c\xe3\x42\x2a\x6d\x3c\x0b\xae\xfd\x7a\x04\x4c\x28\xe3\x42\x2a\x6d\x3c\x0b\x2e\xb2\xad\xb5\xd6\x5a\x6b\xad\xb5\xd6\x5a\x6b\x01\x00\x00\x00\x00\x00\x00\x00\x9c\x73\xce\x39\xe7\x9c\x73\xce\x39\xe7\x7c\xbf\xbe\x81\x0b\xa9\x1e\xfb\xa5\x7e\xfb\x98\x71\xd4\xfb\x8d\x6b\x49\xf5\xd8\xf1\x1f\xc7\xf2\x4a\xa8\x6d\xe8\x4f\xa8\x18\x75\xb0\xf3\x61\x9c\x4b\x33\x90\xb8\xea\x40\xfc\xc7\xb1\xb5\x12\x3f\xbc\x55\x40\x44\x54\x08\x19\x84\xba\xa0\xd7\x84\x1e\xc7\xd8\x4a\x0d\x38\x3e\x8a\x30\x09\xe3\x1a\xe2\x46\xdd\x6d\xe3\x17\x46\xea\x6c\x05\x39\xd2\xbb\x1c\xe1\x7f\x24\x61\xbd\xbc\xff\xf2\x3d\x81\xc9\x8c\x4b\x6c\xe4\xff\x32\x70\x82\x07\x35\x80\xb7\x79\x0f\xd4\xf3\x3b\x40\x27\x57\x2b\x1e\x09\xee\x19\x94\xa9\x34\x45\x0b\xc7\x1f\xf8\x06\x34\xec\x56\x3a\xd9\xe6\xb3\x09\xda\x7c\x17\x89\xb6\x78\x7a\xfb\xf4\xb0\x02\x07\x15\x1d\x6e\x93\x1f\x06\xbb\xba\x40\xe4\xc4\xfb\x60\xd7\x47\x05\x24\xf9\xe2\x3e\xb6\x55\xf2\xbe\x17\x17\xe4\x51\x6a\xd0\xca\x1f\x0d\x82\xb3\xba\x15\xe8\x36\x33\x61\xd7\x6f\x97\x02\x62\xcf\xc1\x6c\x9f\xca\x14\x2f\xdc\x06\xb5\x4f\x10\x5e\x02\x1b\xc7\x7c\x8d\xd9\x35\xcc\x17\x74\x1e\x00\x00\x01\x00\x00\xff\xff\x5a\xbd\x00\x8b\xa8\xc8\x00\x00") func vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff2() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff2, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.woff2", ) } var _vendor_roboto_mono_roboto_mono_css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x95\x51\x6b\xdb\x30\x14\x85\xdf\xf3\x2b\x2e\xf4\xc1\x49\x88\x96\xb0\x56\xd3\x96\x3e\x6c\xeb\xe8\x43\xa1\x61\xd0\xfc\x80\xa2\x5a\xd7\x9e\x98\xac\x1b\x64\x39\x99\x19\xfb\xef\xc3\xa9\xdd\x69\x25\x2f\x76\x6a\x3d\x5a\x17\xce\x39\x92\xcf\xc7\x5d\xce\xc1\xd1\x13\x79\x62\x05\x59\x62\x97\xab\x15\x30\xc8\x1d\xe2\xcf\xc7\xb4\x76\xda\x18\x9d\x3e\x1a\xe9\xb5\x85\xf9\x72\xf2\x25\x23\xeb\x59\x26\x53\x84\xdf\x13\x80\xf6\xab\xd0\xa6\x5e\x43\xf2\x70\x94\x81\x0d\x59\x4a\xae\xbb\x69\xe9\x6b\x83\x6b\xb0\xe4\x0a\x69\x5e\x4e\x0f\xa8\xf3\x1f\x7e\x0d\x97\xab\x55\x73\x56\xba\x74\x0d\x95\x33\xd3\x24\x8c\xb2\xbf\x62\xa7\x72\x34\x11\xdf\x21\xf9\x64\x76\x0d\xcb\x39\xdc\xdd\x7e\x82\x6f\x54\xec\xa4\x87\x0d\x29\x2c\x9b\x98\xad\xa2\xa1\x54\x9a\x69\x98\x0b\xee\x1b\xdf\x64\xb6\xf8\x7f\xd6\x8c\x58\x37\x9a\x40\xef\x28\x9f\x2f\x34\x66\xfa\x57\x32\x83\xac\xb9\xa7\x9f\x26\x58\x3c\xa1\x52\xa8\x18\xed\xd0\xfa\x7a\x87\x8d\xe7\x31\xed\x07\x76\x77\xfb\xf1\x39\x64\x2f\x9b\x03\x65\xd9\xfb\xc0\xa1\xfd\x3e\xaa\x6e\xab\x1d\xba\xe3\xf5\x9d\x85\x1b\x47\x87\x12\x5d\x39\xd0\xe3\x95\x45\xeb\x70\xbe\xb6\xf7\xa1\xb4\x77\x15\x06\xcf\xb2\x95\x99\x74\x7a\x01\x5f\xad\x72\xa4\xd5\x02\xf4\xf7\xed\x00\x8f\x72\x9f\x5f\xfc\xfb\xa3\x81\x5d\xb9\xcf\xdb\xba\xdc\x63\x2e\xd3\xba\xd3\xff\x33\x79\x55\x7f\x87\x79\x65\xa4\x8b\x88\xc0\xd5\x10\x04\xda\x98\x43\x31\x38\x0d\xc0\xc3\xb3\x68\x4f\x04\x82\x28\x63\x63\xd0\x59\x8d\x8d\x42\xe8\x33\x06\x0e\x9d\xfe\xd8\x48\x74\x3e\xe7\x63\xc1\xa3\x6e\x05\x3e\x04\x09\x7e\xc6\x56\xd8\xa0\xd2\x55\x71\x9a\x8a\x97\x59\x9f\x97\xe7\x71\xf6\x02\x8f\xb0\x17\xf8\x88\x7b\x81\x47\xd8\x0b\xfc\x4d\xf6\x82\x88\x0a\x80\x18\x02\x80\x38\x03\x80\x1b\x32\xea\x74\xfd\xdb\x49\x9f\x17\x17\x71\xca\x2f\x22\x94\x5f\x8c\x58\x7e\x11\xa1\xfc\x62\x58\xf9\xff\x06\x00\x00\xff\xff\xf3\x3a\xae\x36\x14\x0c\x00\x00") func vendor_roboto_mono_roboto_mono_css() ([]byte, error) { return bindata_read( _vendor_roboto_mono_roboto_mono_css, "vendor/roboto-mono/roboto-mono.css", ) } // Asset loads and returns the asset for the given name. // It returns an error if the asset could not be found or // could not be loaded. func Asset(name string) ([]byte, error) { cannonicalName := strings.Replace(name, "\\", "/", -1) if f, ok := _bindata[cannonicalName]; ok { return f() } return nil, fmt.Errorf("Asset %s not found", name) } // AssetNames returns the names of the assets. func AssetNames() []string { names := make([]string, 0, len(_bindata)) for name := range _bindata { names = append(names, name) } return names } // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() ([]byte, error){ "app.js": app_js, "index.html": index_html, "styles.css": styles_css, "vendor/codemirror/codemirror.css": vendor_codemirror_codemirror_css, "vendor/codemirror/codemirror.js": vendor_codemirror_codemirror_js, "vendor/codemirror/matchbrackets.js": vendor_codemirror_matchbrackets_js, "vendor/codemirror/material.css": vendor_codemirror_material_css, "vendor/codemirror/simplescrollbars.js": vendor_codemirror_simplescrollbars_js, "vendor/material-icons/MaterialIcons-Regular.eot": vendor_material_icons_materialicons_regular_eot, "vendor/material-icons/MaterialIcons-Regular.ijmap": vendor_material_icons_materialicons_regular_ijmap, "vendor/material-icons/MaterialIcons-Regular.svg": vendor_material_icons_materialicons_regular_svg, "vendor/material-icons/MaterialIcons-Regular.ttf": vendor_material_icons_materialicons_regular_ttf, "vendor/material-icons/MaterialIcons-Regular.woff": vendor_material_icons_materialicons_regular_woff, "vendor/material-icons/MaterialIcons-Regular.woff2": vendor_material_icons_materialicons_regular_woff2, "vendor/material-icons/README.md": vendor_material_icons_readme_md, "vendor/material-icons/codepoints": vendor_material_icons_codepoints, "vendor/material-icons/material-icons.css": vendor_material_icons_material_icons_css, "vendor/picodom/picodom.js": vendor_picodom_picodom_js, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.eot": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_eot, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.svg": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_svg, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.ttf": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_ttf, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.woff": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.woff2": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff2, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.eot": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_eot, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.svg": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_svg, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.ttf": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_ttf, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.woff": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.woff2": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff2, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.eot": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_eot, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.svg": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_svg, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.ttf": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_ttf, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.woff": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.woff2": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff2, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.eot": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_eot, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.svg": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_svg, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.ttf": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_ttf, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.woff": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff, "vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.woff2": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff2, "vendor/roboto-mono/roboto-mono.css": vendor_roboto_mono_roboto_mono_css, } // AssetDir returns the file names below a certain // directory embedded in the file by go-bindata. // For example if you run go-bindata on data/... and data contains the // following hierarchy: // data/ // foo.txt // img/ // a.png // b.png // then AssetDir("data") would return []string{"foo.txt", "img"} // AssetDir("data/img") would return []string{"a.png", "b.png"} // AssetDir("foo.txt") and AssetDir("notexist") would return an error // AssetDir("") will return []string{"data"}. func AssetDir(name string) ([]string, error) { node := _bintree if len(name) != 0 { cannonicalName := strings.Replace(name, "\\", "/", -1) pathList := strings.Split(cannonicalName, "/") for _, p := range pathList { node = node.Children[p] if node == nil { return nil, fmt.Errorf("Asset %s not found", name) } } } if node.Func != nil { return nil, fmt.Errorf("Asset %s not found", name) } rv := make([]string, 0, len(node.Children)) for name := range node.Children { rv = append(rv, name) } return rv, nil } type _bintree_t struct { Func func() ([]byte, error) Children map[string]*_bintree_t } var _bintree = &_bintree_t{nil, map[string]*_bintree_t{ "app.js": &_bintree_t{app_js, map[string]*_bintree_t{ }}, "index.html": &_bintree_t{index_html, map[string]*_bintree_t{ }}, "styles.css": &_bintree_t{styles_css, map[string]*_bintree_t{ }}, "vendor": &_bintree_t{nil, map[string]*_bintree_t{ "codemirror": &_bintree_t{nil, map[string]*_bintree_t{ "codemirror.css": &_bintree_t{vendor_codemirror_codemirror_css, map[string]*_bintree_t{ }}, "codemirror.js": &_bintree_t{vendor_codemirror_codemirror_js, map[string]*_bintree_t{ }}, "matchbrackets.js": &_bintree_t{vendor_codemirror_matchbrackets_js, map[string]*_bintree_t{ }}, "material.css": &_bintree_t{vendor_codemirror_material_css, map[string]*_bintree_t{ }}, "simplescrollbars.js": &_bintree_t{vendor_codemirror_simplescrollbars_js, map[string]*_bintree_t{ }}, }}, "material-icons": &_bintree_t{nil, map[string]*_bintree_t{ "MaterialIcons-Regular.eot": &_bintree_t{vendor_material_icons_materialicons_regular_eot, map[string]*_bintree_t{ }}, "MaterialIcons-Regular.ijmap": &_bintree_t{vendor_material_icons_materialicons_regular_ijmap, map[string]*_bintree_t{ }}, "MaterialIcons-Regular.svg": &_bintree_t{vendor_material_icons_materialicons_regular_svg, map[string]*_bintree_t{ }}, "MaterialIcons-Regular.ttf": &_bintree_t{vendor_material_icons_materialicons_regular_ttf, map[string]*_bintree_t{ }}, "MaterialIcons-Regular.woff": &_bintree_t{vendor_material_icons_materialicons_regular_woff, map[string]*_bintree_t{ }}, "MaterialIcons-Regular.woff2": &_bintree_t{vendor_material_icons_materialicons_regular_woff2, map[string]*_bintree_t{ }}, "README.md": &_bintree_t{vendor_material_icons_readme_md, map[string]*_bintree_t{ }}, "codepoints": &_bintree_t{vendor_material_icons_codepoints, map[string]*_bintree_t{ }}, "material-icons.css": &_bintree_t{vendor_material_icons_material_icons_css, map[string]*_bintree_t{ }}, }}, "picodom": &_bintree_t{nil, map[string]*_bintree_t{ "picodom.js": &_bintree_t{vendor_picodom_picodom_js, map[string]*_bintree_t{ }}, }}, "roboto-mono": &_bintree_t{nil, map[string]*_bintree_t{ "roboto-mono-v4-greek_cyrillic_latin-300.eot": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_eot, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-300.svg": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_svg, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-300.ttf": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_ttf, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-300.woff": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-300.woff2": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff2, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-500.eot": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_eot, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-500.svg": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_svg, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-500.ttf": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_ttf, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-500.woff": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-500.woff2": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff2, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-700.eot": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_eot, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-700.svg": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_svg, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-700.ttf": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_ttf, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-700.woff": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-700.woff2": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff2, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-regular.eot": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_eot, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-regular.svg": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_svg, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-regular.ttf": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_ttf, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-regular.woff": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff, map[string]*_bintree_t{ }}, "roboto-mono-v4-greek_cyrillic_latin-regular.woff2": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff2, map[string]*_bintree_t{ }}, "roboto-mono.css": &_bintree_t{vendor_roboto_mono_roboto_mono_css, map[string]*_bintree_t{ }}, }}, }}, }} ================================================ FILE: cmd/glitch/gen.go ================================================ // +build gen package main import ( "log" "os" "path/filepath" "regexp" "github.com/jteeuwen/go-bindata" ) func main() { cfg := bindata.NewConfig() cfg.Package = "main" cfg.Output = "assets.go" wd, err := os.Getwd() if err != nil { log.Fatal(err) } uiDir, err := filepath.Abs(filepath.Clean(filepath.Join(wd, "../../ui"))) if err != nil { log.Fatal(err) } cfg.Prefix = uiDir cfg.Input = []bindata.InputConfig{{Path: uiDir, Recursive: true}} cfg.Ignore = []*regexp.Regexp{ // Favicons are not used regexp.MustCompile(`favicon\.png`), regexp.MustCompile(`glitch180x180\.png`), regexp.MustCompile(`glitch192x192\.png`), // WebAssembly and asm.js files are not used in desktop variant regexp.MustCompile(`glitch-asm\.js`), regexp.MustCompile(`glitch-asm\.js\.mem`), regexp.MustCompile(`glitch-loader\.js`), regexp.MustCompile(`glitch\.wasm`), } if err := bindata.Translate(cfg); err != nil { log.Fatal("bindata erro:", err) } } ================================================ FILE: cmd/glitch/loader.go ================================================ package main import ( "io/ioutil" "math" "path/filepath" "sort" "strings" "github.com/naivesound/glitch/core" ) type sampleLoader struct { samples map[string][][]float32 } func (loader *sampleLoader) dir() string { return "samples" } func (loader *sampleLoader) poll() { loader.samples = map[string][][]float32{} for sample, variants := range loader.scan() { loader.samples[sample] = make([][]float32, len(variants), len(variants)) for i, variant := range variants { loader.samples[sample][i] = loader.read(variant) } core.AddSample(sample) } } func (loader *sampleLoader) read(name string) []float32 { b, err := ioutil.ReadFile(name) if err != nil { return nil } f := []float32{} b = b[0x80:] for i := 0; i+1 < len(b); i = i + 2 { x := float32(int(b[i])+int(int8(b[i+1]))*256) / float32(0x8000) f = append(f, x) } return f } func (loader *sampleLoader) scan() (samples map[string][]string) { samples = map[string][]string{} files, err := ioutil.ReadDir(loader.dir()) if err != nil { return samples } for _, file := range files { if file.IsDir() { name := file.Name() wavs, err := ioutil.ReadDir(filepath.Join(loader.dir(), name)) if err != nil { continue } variants := []string{} for _, wav := range wavs { if !wav.IsDir() && strings.ToLower(filepath.Ext(wav.Name())) == ".wav" { variants = append(variants, filepath.Join(loader.dir(), name, wav.Name())) } } sort.Strings(variants) samples[name] = variants } } return samples } func (loader *sampleLoader) LoadSample(name string, variant, frame int) float32 { samples, ok := loader.samples[name] if !ok { return float32(math.NaN()) } if variant >= 0 && variant < len(samples) && frame >= 0 && frame < len(samples[variant]) { return loader.samples[name][variant][frame] } return float32(math.NaN()) } ================================================ FILE: cmd/glitch/main.go ================================================ package main //go:generate go run -tags gen gen.go import ( "encoding/json" "io/ioutil" "log" "os" "path/filepath" "runtime" ) const ( DefaultSampleRate = 44100.0 DefaultBufSz = 512 ) type Config struct { Filename string `json:"filename"` MIDI map[string]bool `json:"midi"` AudioDevice int `json:"audioDevice"` SampleRate int `json:"sampleRate"` BufferSize int `json:"bufferSize"` } var DefaultConfig = Config{ Filename: filepath.Join(os.TempDir(), "glitch", "draft.glitch"), MIDI: map[string]bool{}, AudioDevice: 0, SampleRate: DefaultSampleRate, BufferSize: DefaultBufSz, } func configPath() (path string) { switch runtime.GOOS { case "darwin": path = filepath.Join(os.Getenv("HOME"), "/Library/Application Support") case "windows": path = os.Getenv("APPDATA") default: if os.Getenv("XDG_CONFIG_HOME") != "" { path = os.Getenv("XDG_CONFIG_HOME") } else { path = filepath.Join(os.Getenv("HOME"), ".config") } } path = filepath.Join(path, "glitch", "config.json") os.MkdirAll(filepath.Dir(path), 0755) return path } func NewConfig() (c Config) { if b, err := ioutil.ReadFile(configPath()); err != nil { return DefaultConfig } else if err := json.Unmarshal(b, &c); err != nil { return DefaultConfig } return c } func (c *Config) Save() { if b, err := json.Marshal(c); err != nil { log.Println(err) } else if err := ioutil.WriteFile(configPath(), b, 0644); err != nil { log.Println(err) } } func main() { c := NewConfig() app, err := NewApp(&c) if err != nil { log.Fatal(err) } defer app.Destroy() app.Run() } ================================================ FILE: cmd/glitch/ui.go ================================================ package main import ( "bytes" "io" "log" "mime" "net" "net/http" "path/filepath" ) const ( windowWidth = 640 windowHeight = 480 ) func startServer() string { ln, err := net.Listen("tcp", "127.0.0.1:0") if err != nil { log.Fatal(err) } go func() { defer ln.Close() http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { path := r.URL.Path if len(path) > 0 && path[0] == '/' { path = path[1:] } if path == "" { path = "index.html" } if bs, err := Asset(path); err != nil { w.WriteHeader(http.StatusNotFound) } else { w.Header().Add("Content-Type", mime.TypeByExtension(filepath.Ext(path))) io.Copy(w, bytes.NewBuffer(bs)) } }) log.Fatal(http.Serve(ln, nil)) }() return "http://" + ln.Addr().String() } ================================================ FILE: core/CMakeLists.txt ================================================ cmake_minimum_required(VERSION 3.2) project(glitch-core) add_library(glitch-core STATIC glitch.c) set_target_properties(glitch-core PROPERTIES C_STANDARD 99) enable_testing() add_executable(glitch_test glitch_test.c) set_target_properties(glitch_test PROPERTIES C_STANDARD 99) target_link_libraries(glitch_test m) add_test(glitch_test glitch_test) ================================================ FILE: core/expr.h ================================================ #ifndef EXPR_H #define EXPR_H #ifdef __cplusplus extern "C" { #endif #include /* for isspace */ #include #include /* for pow */ #include #include #include /* * Simple expandable vector implementation */ static int vec_expand(char **buf, int *length, int *cap, int memsz) { if (*length + 1 > *cap) { void *ptr; int n = (*cap == 0) ? 1 : *cap << 1; ptr = realloc(*buf, n * memsz); if (ptr == NULL) { return -1; /* allocation failed */ } *buf = (char *)ptr; *cap = n; } return 0; } #define vec(T) \ struct { \ T *buf; \ int len; \ int cap; \ } #define vec_init() \ { NULL, 0, 0 } #define vec_len(v) ((v)->len) #define vec_unpack(v) \ (char **)&(v)->buf, &(v)->len, &(v)->cap, sizeof(*(v)->buf) #define vec_push(v, val) \ vec_expand(vec_unpack(v)) ? -1 : ((v)->buf[(v)->len++] = (val), 0) #define vec_nth(v, i) (v)->buf[i] #define vec_peek(v) (v)->buf[(v)->len - 1] #define vec_pop(v) (v)->buf[--(v)->len] #define vec_free(v) (free((v)->buf), (v)->buf = NULL, (v)->len = (v)->cap = 0) #define vec_foreach(v, var, iter) \ if ((v)->len > 0) \ for ((iter) = 0; (iter) < (v)->len && (((var) = (v)->buf[(iter)]), 1); \ ++(iter)) /* * Expression data types */ struct expr; struct expr_func; enum expr_type { OP_UNKNOWN, OP_UNARY_MINUS, OP_UNARY_LOGICAL_NOT, OP_UNARY_BITWISE_NOT, OP_POWER, OP_DIVIDE, OP_MULTIPLY, OP_REMAINDER, OP_PLUS, OP_MINUS, OP_SHL, OP_SHR, OP_LT, OP_LE, OP_GT, OP_GE, OP_EQ, OP_NE, OP_BITWISE_AND, OP_BITWISE_OR, OP_BITWISE_XOR, OP_LOGICAL_AND, OP_LOGICAL_OR, OP_ASSIGN, OP_COMMA, OP_CONST, OP_VAR, OP_FUNC, }; static int prec[] = {0, 1, 1, 1, 2, 2, 2, 2, 3, 3, 4, 4, 5, 5, 5, 5, 5, 5, 6, 7, 8, 9, 10, 11, 12, 0, 0, 0}; typedef vec(struct expr) vec_expr_t; typedef void (*exprfn_cleanup_t)(struct expr_func *f, void *context); typedef float (*exprfn_t)(struct expr_func *f, vec_expr_t *args, void *context); struct expr { enum expr_type type; union { struct { float value; } num; struct { float *value; } var; struct { vec_expr_t args; } op; struct { struct expr_func *f; vec_expr_t args; void *context; } func; } param; }; #define expr_init() \ { .type = (enum expr_type)0 } struct expr_string { const char *s; int n; }; struct expr_arg { int oslen; int eslen; vec_expr_t args; }; typedef vec(struct expr_string) vec_str_t; typedef vec(struct expr_arg) vec_arg_t; static int expr_is_unary(enum expr_type op) { return op == OP_UNARY_MINUS || op == OP_UNARY_LOGICAL_NOT || op == OP_UNARY_BITWISE_NOT; } static int expr_is_binary(enum expr_type op) { return !expr_is_unary(op) && op != OP_CONST && op != OP_VAR && op != OP_FUNC && op != OP_UNKNOWN; } static int expr_prec(enum expr_type a, enum expr_type b) { int left = expr_is_binary(a) && a != OP_ASSIGN && a != OP_POWER && a != OP_COMMA; return (left && prec[a] >= prec[b]) || (prec[a] > prec[b]); } #define isfirstvarchr(c) \ (((unsigned char)c >= '@' && c != '^' && c != '|') || c == '$') #define isvarchr(c) \ (((unsigned char)c >= '@' && c != '^' && c != '|') || c == '$' || \ c == '#' || (c >= '0' && c <= '9')) static struct { const char *s; const enum expr_type op; } OPS[] = { {"-u", OP_UNARY_MINUS}, {"!u", OP_UNARY_LOGICAL_NOT}, {"^u", OP_UNARY_BITWISE_NOT}, {"**", OP_POWER}, {"*", OP_MULTIPLY}, {"/", OP_DIVIDE}, {"%", OP_REMAINDER}, {"+", OP_PLUS}, {"-", OP_MINUS}, {"<<", OP_SHL}, {">>", OP_SHR}, {"<", OP_LT}, {"<=", OP_LE}, {">", OP_GT}, {">=", OP_GE}, {"==", OP_EQ}, {"!=", OP_NE}, {"&", OP_BITWISE_AND}, {"|", OP_BITWISE_OR}, {"^", OP_BITWISE_XOR}, {"&&", OP_LOGICAL_AND}, {"||", OP_LOGICAL_OR}, {"=", OP_ASSIGN}, {",", OP_COMMA}, /* These are used by lexer and must be ignored by parser, so we put them at the end */ {"-", OP_UNARY_MINUS}, {"!", OP_UNARY_LOGICAL_NOT}, {"^", OP_UNARY_BITWISE_NOT}, }; static enum expr_type expr_op(const char *s, size_t len, int unary) { for (unsigned int i = 0; i < sizeof(OPS) / sizeof(OPS[0]); i++) { if (strlen(OPS[i].s) == len && strncmp(OPS[i].s, s, len) == 0 && (unary == -1 || expr_is_unary(OPS[i].op) == unary)) { return OPS[i].op; } } return OP_UNKNOWN; } static float expr_parse_number(const char *s, size_t len) { float num = 0; unsigned int frac = 0; unsigned int digits = 0; for (unsigned int i = 0; i < len; i++) { if (s[i] == '.' && frac == 0) { frac++; continue; } if (isdigit(s[i])) { digits++; if (frac > 0) { frac++; } num = num * 10 + (s[i] - '0'); } else { return NAN; } } while (frac > 1) { num = num / 10; frac--; } return (digits > 0 ? num : NAN); } /* * Functions */ struct expr_func { const char *name; exprfn_t f; exprfn_cleanup_t cleanup; size_t ctxsz; }; static struct expr_func *expr_func(struct expr_func *funcs, const char *s, size_t len) { for (struct expr_func *f = funcs; f->name; f++) { if (strlen(f->name) == len && strncmp(f->name, s, len) == 0) { return f; } } return NULL; } /* * Variables */ struct expr_var { float value; struct expr_var *next; char name[]; }; struct expr_var_list { struct expr_var *head; }; static struct expr_var *expr_var(struct expr_var_list *vars, const char *s, size_t len) { struct expr_var *v = NULL; if (len == 0 || !isfirstvarchr(*s)) { return NULL; } for (v = vars->head; v; v = v->next) { if (strlen(v->name) == len && strncmp(v->name, s, len) == 0) { return v; } } v = (struct expr_var *)calloc(1, sizeof(struct expr_var) + len + 1); if (v == NULL) { return NULL; /* allocation failed */ } v->next = vars->head; v->value = 0; strncpy(v->name, s, len); v->name[len] = '\0'; vars->head = v; return v; } static int to_int(float x) { if (isnan(x)) { return 0; } else if (isinf(x) != 0) { return INT_MAX * isinf(x); } else { return (int)x; } } static float expr_eval(struct expr *e) { float n; switch (e->type) { case OP_UNARY_MINUS: return -(expr_eval(&e->param.op.args.buf[0])); case OP_UNARY_LOGICAL_NOT: return !(expr_eval(&e->param.op.args.buf[0])); case OP_UNARY_BITWISE_NOT: return ~(to_int(expr_eval(&e->param.op.args.buf[0]))); case OP_POWER: return powf(expr_eval(&e->param.op.args.buf[0]), expr_eval(&e->param.op.args.buf[1])); case OP_MULTIPLY: return expr_eval(&e->param.op.args.buf[0]) * expr_eval(&e->param.op.args.buf[1]); case OP_DIVIDE: return expr_eval(&e->param.op.args.buf[0]) / expr_eval(&e->param.op.args.buf[1]); case OP_REMAINDER: return fmodf(expr_eval(&e->param.op.args.buf[0]), expr_eval(&e->param.op.args.buf[1])); case OP_PLUS: return expr_eval(&e->param.op.args.buf[0]) + expr_eval(&e->param.op.args.buf[1]); case OP_MINUS: return expr_eval(&e->param.op.args.buf[0]) - expr_eval(&e->param.op.args.buf[1]); case OP_SHL: return to_int(expr_eval(&e->param.op.args.buf[0])) << to_int(expr_eval(&e->param.op.args.buf[1])); case OP_SHR: return to_int(expr_eval(&e->param.op.args.buf[0])) >> to_int(expr_eval(&e->param.op.args.buf[1])); case OP_LT: return expr_eval(&e->param.op.args.buf[0]) < expr_eval(&e->param.op.args.buf[1]); case OP_LE: return expr_eval(&e->param.op.args.buf[0]) <= expr_eval(&e->param.op.args.buf[1]); case OP_GT: return expr_eval(&e->param.op.args.buf[0]) > expr_eval(&e->param.op.args.buf[1]); case OP_GE: return expr_eval(&e->param.op.args.buf[0]) >= expr_eval(&e->param.op.args.buf[1]); case OP_EQ: return expr_eval(&e->param.op.args.buf[0]) == expr_eval(&e->param.op.args.buf[1]); case OP_NE: return expr_eval(&e->param.op.args.buf[0]) != expr_eval(&e->param.op.args.buf[1]); case OP_BITWISE_AND: return to_int(expr_eval(&e->param.op.args.buf[0])) & to_int(expr_eval(&e->param.op.args.buf[1])); case OP_BITWISE_OR: return to_int(expr_eval(&e->param.op.args.buf[0])) | to_int(expr_eval(&e->param.op.args.buf[1])); case OP_BITWISE_XOR: return to_int(expr_eval(&e->param.op.args.buf[0])) ^ to_int(expr_eval(&e->param.op.args.buf[1])); case OP_LOGICAL_AND: n = expr_eval(&e->param.op.args.buf[0]); if (n != 0) { n = expr_eval(&e->param.op.args.buf[1]); if (n != 0) { return n; } } return 0; case OP_LOGICAL_OR: n = expr_eval(&e->param.op.args.buf[0]); if (n != 0 && !isnan(n)) { return n; } else { n = expr_eval(&e->param.op.args.buf[1]); if (n != 0) { return n; } } return 0; case OP_ASSIGN: n = expr_eval(&e->param.op.args.buf[1]); if (vec_nth(&e->param.op.args, 0).type == OP_VAR) { *e->param.op.args.buf[0].param.var.value = n; } return n; case OP_COMMA: expr_eval(&e->param.op.args.buf[0]); return expr_eval(&e->param.op.args.buf[1]); case OP_CONST: return e->param.num.value; case OP_VAR: return *e->param.var.value; case OP_FUNC: return e->param.func.f->f(e->param.func.f, &e->param.func.args, e->param.func.context); default: return NAN; } } #define EXPR_TOP (1 << 0) #define EXPR_TOPEN (1 << 1) #define EXPR_TCLOSE (1 << 2) #define EXPR_TNUMBER (1 << 3) #define EXPR_TWORD (1 << 4) #define EXPR_TDEFAULT (EXPR_TOPEN | EXPR_TNUMBER | EXPR_TWORD) #define EXPR_UNARY (1 << 5) #define EXPR_COMMA (1 << 6) static int expr_next_token(const char *s, size_t len, int *flags) { unsigned int i = 0; if (len == 0) { return 0; } char c = s[0]; if (c == '#') { for (; i < len && s[i] != '\n'; i++) ; return i; } else if (c == '\n') { for (; i < len && isspace(s[i]); i++) ; if (*flags & EXPR_TOP) { if (i == len || s[i] == ')') { *flags = *flags & (~EXPR_COMMA); } else { *flags = EXPR_TNUMBER | EXPR_TWORD | EXPR_TOPEN | EXPR_COMMA; } } return i; } else if (isspace(c)) { while (i < len && isspace(s[i]) && s[i] != '\n') { i++; } return i; } else if (isdigit(c)) { if ((*flags & EXPR_TNUMBER) == 0) { return -1; // unexpected number } *flags = EXPR_TOP | EXPR_TCLOSE; while ((c == '.' || isdigit(c)) && i < len) { i++; c = s[i]; } return i; } else if (isfirstvarchr(c)) { if ((*flags & EXPR_TWORD) == 0) { return -2; // unexpected word } *flags = EXPR_TOP | EXPR_TOPEN | EXPR_TCLOSE; while ((isvarchr(c)) && i < len) { i++; c = s[i]; } return i; } else if (c == '(' || c == ')') { if (c == '(' && (*flags & EXPR_TOPEN) != 0) { *flags = EXPR_TNUMBER | EXPR_TWORD | EXPR_TOPEN | EXPR_TCLOSE; } else if (c == ')' && (*flags & EXPR_TCLOSE) != 0) { *flags = EXPR_TOP | EXPR_TCLOSE; } else { return -3; // unexpected parenthesis } return 1; } else { if ((*flags & EXPR_TOP) == 0) { if (expr_op(&c, 1, 1) == OP_UNKNOWN) { return -4; // missing expected operand } *flags = EXPR_TNUMBER | EXPR_TWORD | EXPR_TOPEN | EXPR_UNARY; return 1; } else { int found = 0; while (!isvarchr(c) && !isspace(c) && c != '(' && c != ')' && i < len) { if (expr_op(s, i + 1, 0) != OP_UNKNOWN) { found = 1; } else if (found) { break; } i++; c = s[i]; } if (!found) { return -5; // unknown operator } *flags = EXPR_TNUMBER | EXPR_TWORD | EXPR_TOPEN; return i; } } } #define EXPR_PAREN_ALLOWED 0 #define EXPR_PAREN_EXPECTED 1 #define EXPR_PAREN_FORBIDDEN 2 static int expr_bind(const char *s, size_t len, vec_expr_t *es) { enum expr_type op = expr_op(s, len, -1); if (op == OP_UNKNOWN) { return -1; } if (expr_is_unary(op)) { if (vec_len(es) < 1) { return -1; } struct expr arg = vec_pop(es); struct expr unary = expr_init(); unary.type = op; vec_push(&unary.param.op.args, arg); vec_push(es, unary); } else { if (vec_len(es) < 2) { return -1; } struct expr b = vec_pop(es); struct expr a = vec_pop(es); struct expr binary = expr_init(); binary.type = op; if (op == OP_ASSIGN && a.type != OP_VAR) { return -1; /* Bad assignment */ } vec_push(&binary.param.op.args, a); vec_push(&binary.param.op.args, b); vec_push(es, binary); } return 0; } static struct expr expr_const(float value) { struct expr e = expr_init(); e.type = OP_CONST; e.param.num.value = value; return e; } static struct expr expr_varref(struct expr_var *v) { struct expr e = expr_init(); e.type = OP_VAR; e.param.var.value = &v->value; return e; } static struct expr expr_binary(enum expr_type type, struct expr a, struct expr b) { struct expr e = expr_init(); e.type = type; vec_push(&e.param.op.args, a); vec_push(&e.param.op.args, b); return e; } static inline void expr_copy(struct expr *dst, struct expr *src) { int i; struct expr arg; dst->type = src->type; if (src->type == OP_FUNC) { dst->param.func.f = src->param.func.f; vec_foreach(&src->param.func.args, arg, i) { struct expr tmp = expr_init(); expr_copy(&tmp, &arg); vec_push(&dst->param.func.args, tmp); } if (src->param.func.f->ctxsz > 0) { dst->param.func.context = calloc(1, src->param.func.f->ctxsz); } } else if (src->type == OP_CONST) { dst->param.num.value = src->param.num.value; } else if (src->type == OP_VAR) { dst->param.var.value = src->param.var.value; } else { vec_foreach(&src->param.op.args, arg, i) { struct expr tmp = expr_init(); expr_copy(&tmp, &arg); vec_push(&dst->param.op.args, tmp); } } } static void expr_destroy_args(struct expr *e); static struct expr *expr_create(const char *s, size_t len, struct expr_var_list *vars, struct expr_func *funcs) { float num; struct expr_var *v; const char *id = NULL; size_t idn = 0; struct expr *result = NULL; vec_expr_t es = vec_init(); vec_str_t os = vec_init(); vec_arg_t as = vec_init(); struct macro { char *name; vec_expr_t body; }; vec(struct macro) macros = vec_init(); int flags = EXPR_TDEFAULT; int paren = EXPR_PAREN_ALLOWED; for (;;) { int n = expr_next_token(s, len, &flags); if (n == 0) { break; } else if (n < 0) { goto cleanup; } const char *tok = s; s = s + n; len = len - n; if (*tok == '#') { continue; } if (flags & EXPR_UNARY) { if (n == 1) { switch (*tok) { case '-': tok = "-u"; break; case '^': tok = "^u"; break; case '!': tok = "!u"; break; default: goto cleanup; } n = 2; } } if (*tok == '\n' && (flags & EXPR_COMMA)) { flags = flags & (~EXPR_COMMA); n = 1; tok = ","; } if (isspace(*tok)) { continue; } int paren_next = EXPR_PAREN_ALLOWED; if (idn > 0) { if (n == 1 && *tok == '(') { int i; int has_macro = 0; struct macro m; vec_foreach(¯os, m, i) { if (strlen(m.name) == idn && strncmp(m.name, id, idn) == 0) { has_macro = 1; break; } } if ((idn == 1 && id[0] == '$') || has_macro || expr_func(funcs, id, idn) != NULL) { struct expr_string str = {id, (int)idn}; vec_push(&os, str); paren = EXPR_PAREN_EXPECTED; } else { goto cleanup; /* invalid function name */ } } else if ((v = expr_var(vars, id, idn)) != NULL) { vec_push(&es, expr_varref(v)); paren = EXPR_PAREN_FORBIDDEN; } id = NULL; idn = 0; } if (n == 1 && *tok == '(') { if (paren == EXPR_PAREN_EXPECTED) { struct expr_string str = {"{", 1}; vec_push(&os, str); struct expr_arg arg = {vec_len(&os), vec_len(&es), vec_init()}; vec_push(&as, arg); } else if (paren == EXPR_PAREN_ALLOWED) { struct expr_string str = {"(", 1}; vec_push(&os, str); } else { goto cleanup; // Bad call } } else if (paren == EXPR_PAREN_EXPECTED) { goto cleanup; // Bad call } else if (n == 1 && *tok == ')') { int minlen = (vec_len(&as) > 0 ? vec_peek(&as).oslen : 0); while (vec_len(&os) > minlen && *vec_peek(&os).s != '(' && *vec_peek(&os).s != '{') { struct expr_string str = vec_pop(&os); if (expr_bind(str.s, str.n, &es) == -1) { goto cleanup; } } if (vec_len(&os) == 0) { goto cleanup; // Bad parens } struct expr_string str = vec_pop(&os); if (str.n == 1 && *str.s == '{') { str = vec_pop(&os); struct expr_arg arg = vec_pop(&as); if (vec_len(&es) > arg.eslen) { vec_push(&arg.args, vec_pop(&es)); } if (str.n == 1 && str.s[0] == '$') { if (vec_len(&arg.args) < 1) { vec_free(&arg.args); goto cleanup; /* too few arguments for $() function */ } struct expr *u = &vec_nth(&arg.args, 0); if (u->type != OP_VAR) { vec_free(&arg.args); goto cleanup; /* first argument is not a variable */ } for (struct expr_var *v = vars->head; v; v = v->next) { if (&v->value == u->param.var.value) { struct macro m = {v->name, arg.args}; vec_push(¯os, m); break; } } vec_push(&es, expr_const(0)); } else { int i = 0; int found = -1; struct macro m; vec_foreach(¯os, m, i) { if (strlen(m.name) == (size_t)str.n && strncmp(m.name, str.s, str.n) == 0) { found = i; } } if (found != -1) { m = vec_nth(¯os, found); struct expr root = expr_const(0); struct expr *p = &root; /* Assign macro parameters */ for (int j = 0; j < vec_len(&arg.args); j++) { char varname[4]; snprintf(varname, sizeof(varname) - 1, "$%d", (j + 1)); struct expr_var *v = expr_var(vars, varname, strlen(varname)); struct expr ev = expr_varref(v); struct expr assign = expr_binary(OP_ASSIGN, ev, vec_nth(&arg.args, j)); *p = expr_binary(OP_COMMA, assign, expr_const(0)); p = &vec_nth(&p->param.op.args, 1); } /* Expand macro body */ for (int j = 1; j < vec_len(&m.body); j++) { if (j < vec_len(&m.body) - 1) { *p = expr_binary(OP_COMMA, expr_const(0), expr_const(0)); expr_copy(&vec_nth(&p->param.op.args, 0), &vec_nth(&m.body, j)); } else { expr_copy(p, &vec_nth(&m.body, j)); } p = &vec_nth(&p->param.op.args, 1); } vec_push(&es, root); vec_free(&arg.args); } else { struct expr_func *f = expr_func(funcs, str.s, str.n); struct expr bound_func = expr_init(); bound_func.type = OP_FUNC; bound_func.param.func.f = f; bound_func.param.func.args = arg.args; if (f->ctxsz > 0) { void *p = calloc(1, f->ctxsz); if (p == NULL) { goto cleanup; /* allocation failed */ } bound_func.param.func.context = p; } vec_push(&es, bound_func); } } } paren_next = EXPR_PAREN_FORBIDDEN; } else if (!isnan(num = expr_parse_number(tok, n))) { vec_push(&es, expr_const(num)); paren_next = EXPR_PAREN_FORBIDDEN; } else if (expr_op(tok, n, -1) != OP_UNKNOWN) { enum expr_type op = expr_op(tok, n, -1); struct expr_string o2 = {NULL, 0}; if (vec_len(&os) > 0) { o2 = vec_peek(&os); } for (;;) { if (n == 1 && *tok == ',' && vec_len(&os) > 0) { struct expr_string str = vec_peek(&os); if (str.n == 1 && *str.s == '{') { struct expr e = vec_pop(&es); vec_push(&vec_peek(&as).args, e); break; } } enum expr_type type2 = expr_op(o2.s, o2.n, -1); if (!(type2 != OP_UNKNOWN && expr_prec(op, type2))) { struct expr_string str = {tok, n}; vec_push(&os, str); break; } if (expr_bind(o2.s, o2.n, &es) == -1) { goto cleanup; } (void)vec_pop(&os); if (vec_len(&os) > 0) { o2 = vec_peek(&os); } else { o2.n = 0; } } } else { if (n > 0 && !isdigit(*tok)) { /* Valid identifier, a variable or a function */ id = tok; idn = n; } else { goto cleanup; // Bad variable name, e.g. '2.3.4' or '4ever' } } paren = paren_next; } if (idn > 0) { vec_push(&es, expr_varref(expr_var(vars, id, idn))); } while (vec_len(&os) > 0) { struct expr_string rest = vec_pop(&os); if (rest.n == 1 && (*rest.s == '(' || *rest.s == ')')) { goto cleanup; // Bad paren } if (expr_bind(rest.s, rest.n, &es) == -1) { goto cleanup; } } result = (struct expr *)calloc(1, sizeof(struct expr)); if (result != NULL) { if (vec_len(&es) == 0) { result->type = OP_CONST; } else { *result = vec_pop(&es); } } int i, j; struct macro m; struct expr e; struct expr_arg a; cleanup: vec_foreach(¯os, m, i) { struct expr e; vec_foreach(&m.body, e, j) { expr_destroy_args(&e); } vec_free(&m.body); } vec_free(¯os); vec_foreach(&es, e, i) { expr_destroy_args(&e); } vec_free(&es); vec_foreach(&as, a, i) { vec_foreach(&a.args, e, j) { expr_destroy_args(&e); } vec_free(&a.args); } vec_free(&as); /*vec_foreach(&os, o, i) {vec_free(&m.body);}*/ vec_free(&os); return result; } static void expr_destroy_args(struct expr *e) { int i; struct expr arg; if (e->type == OP_FUNC) { vec_foreach(&e->param.func.args, arg, i) { expr_destroy_args(&arg); } vec_free(&e->param.func.args); if (e->param.func.context != NULL) { if (e->param.func.f->cleanup != NULL) { e->param.func.f->cleanup(e->param.func.f, e->param.func.context); } free(e->param.func.context); } } else if (e->type != OP_CONST && e->type != OP_VAR) { vec_foreach(&e->param.op.args, arg, i) { expr_destroy_args(&arg); } vec_free(&e->param.op.args); } } static void expr_destroy(struct expr *e, struct expr_var_list *vars) { if (e != NULL) { expr_destroy_args(e); free(e); } if (vars != NULL) { for (struct expr_var *v = vars->head; v;) { struct expr_var *next = v->next; free(v); v = next; } } } #ifdef __cplusplus } /* extern "C" */ #endif #endif /* EXPR_H */ ================================================ FILE: core/glitch.c ================================================ #include #include #include #include "expr.h" #include "libglitch.h" #include "glitch.h" #include "tr808.h" static glitch_loader_fn loader = NULL; #define PI 3.1415926f #define MIN(a, b) ((a) < (b) ? (a) : (b)) #define MAX_DELAY_TIME 10 /* seconds */ #define MIN_DELAY_BLOCK 8192 /* smallest delay buffer resize */ #include #define LOG2(n) (logf(n) / logf(2.f)) #define POW2(n) (powf(2.f, (n))) #define SQRT(n) (sqrt(n)) #define SIN(n) (sinf((n)*2 * PI)) static float arg(vec_expr_t *args, int n, float defval) { if (vec_len(args) < n + 1) { return defval; } return expr_eval(&vec_nth(args, n)); } static inline float fwrap(float x) { return x - (long)x; } static inline float fwrap2(float x) { return fwrap(fwrap(x) + 1); } static inline float fsign(float x) { return (x < 0 ? -1 : 1); } static inline float flim(float x, float a, float b) { if (!isnan(a) && x < a) { return a; } else if (!isnan(b) && x > b) { return b; } return x; } struct fm_context { float freq; int sync; float prev; float w0; float w1; float w2; float w3; }; struct seq_step; typedef vec(float) vec_float_t; typedef vec(struct seq_step) vec_step_t; struct seq_step { int start; int end; int gliss; float value; struct expr *e; struct expr *dur; }; struct seq_context { int init; int offset; int t; int duration; int step; vec_step_t steps; }; struct mix_context { int init; vec_float_t values; }; struct each_context { int init; vec_expr_t args; }; struct sample_context { float t; }; static float lib_byte(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; (void)context; return libglitch_byte(arg(args, 0, 127)); } static float lib_s(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; (void)context; return libglitch_interpolate(libglitch_sin_lut, LIBGLITCH_OSC_LUT_LEN, LIBGLITCH_OSC_LUT_LEN * libglitch_wrap(arg(args, 0, 0))); } static float lib_r(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; (void)context; return libglitch_rand(arg(args, 0, 1)); } static float lib_l(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; (void)context; if (arg(args, 0, 0)) { return LOG2(arg(args, 0, 0)); } return 0; } static float lib_a(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; (void)context; float index = arg(args, 0, NAN); if (isnan(index)) { return NAN; } int len = vec_len(args) - 1; if (len == 0) { return 0; } int i = (int)(index + len) % len; i = (i + len) % len; return arg(args, i + 1, 0); } static int scales[][13] = { {7, 0, 2, 4, 5, 7, 9, 11, 0, 0, 0, 0}, // ionian, major scale {7, 0, 2, 3, 5, 7, 9, 10, 0, 0, 0, 0}, // dorian {7, 0, 1, 3, 5, 7, 8, 10, 0, 0, 0, 0}, // phrygian {7, 0, 2, 4, 6, 7, 9, 11, 0, 0, 0, 0}, // lydian {7, 0, 2, 4, 5, 7, 9, 10, 0, 0, 0, 0}, // mixolydian {7, 0, 2, 3, 5, 7, 8, 10, 0, 0, 0, 0}, // aeolian, natural minor scale {7, 0, 1, 3, 5, 6, 8, 10, 0, 0, 0, 0}, // locrian {7, 0, 2, 3, 5, 7, 8, 11, 0, 0, 0, 0}, // harmonic minor scale {7, 0, 2, 3, 5, 7, 9, 11, 0, 0, 0, 0}, // melodic minor scale {5, 0, 2, 4, 7, 9, 0, 0, 0, 0, 0, 0}, // major pentatonic {5, 0, 3, 5, 7, 10, 0, 0, 0, 0, 0, 0}, // minor pentatonic {6, 0, 3, 5, 6, 7, 10, 0, 0, 0, 0}, // blues {6, 0, 2, 4, 6, 8, 10, 0, 0, 0, 0}, // whole tone scale {8, 0, 1, 3, 4, 6, 7, 9, 10, 0, 0, 0}, // octatonic {12, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}, // chromatic is a fallback scale }; static float lib_scale(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; (void)context; float note = arg(args, 0, 0); float scale = arg(args, 1, 0); if (isnan(scale) || isnan(note)) { return NAN; } if (scale < 0 || scale > 14) { scale = 14; } int len = scales[(int)scale][0]; int n = (int)note; int transpose = n / len * 12; n = (n + len) % len; n = (n + len) % len; return scales[(int)scale][n + 1] + transpose; } static float lib_hz(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; (void)context; return libglitch_hz(arg(args, 0, 0)); } static float lib_each(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; struct each_context *each = (struct each_context *)context; float r = NAN; if (vec_len(args) < 3) { return NAN; } if (!each->init) { each->init = 1; for (int i = 0; i < vec_len(args) - 2; i++) { struct expr tmp = {0}; expr_copy(&tmp, &vec_nth(args, 1)); vec_push(&each->args, tmp); } } // List of variables struct expr *init = &vec_nth(args, 0); float mix = 0.0f; for (int i = 0; i < vec_len(&each->args); i++) { struct expr *ilist = init; struct expr *alist = &vec_nth(args, i + 2); struct expr *acar = NULL; struct expr *icar = NULL; while (ilist->type == OP_COMMA) { icar = &vec_nth(&ilist->param.op.args, 0); ilist = &vec_nth(&ilist->param.op.args, 1); acar = alist; if (alist->type == OP_COMMA) { acar = &vec_nth(&alist->param.op.args, 0); alist = &vec_nth(&alist->param.op.args, 1); } if (icar->type == OP_VAR) { *icar->param.var.value = expr_eval(acar); } } if (ilist->type == OP_VAR) { *ilist->param.var.value = expr_eval(alist); } r = expr_eval(&vec_nth(&each->args, i)); if (!isnan(r)) { mix = mix + r; } } return mix / SQRT(vec_len(&each->args)); } static void lib_each_cleanup(struct expr_func *f, void *context) { (void)f; int i; struct expr e; struct each_context *each = (struct each_context *)context; vec_foreach(&each->args, e, i) { expr_destroy_args(&e); } vec_free(&each->args); } static float lib_sin(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; return libglitch_sin((libglitch_osc_t *)context, arg(args, 0, NAN)); } static float lib_tri(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; return libglitch_tri((libglitch_osc_t *)context, arg(args, 0, NAN)); } static float lib_saw(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; return libglitch_saw((libglitch_osc_t *)context, arg(args, 0, NAN)); } static float lib_sqr(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; return libglitch_sqr((libglitch_osc_t *)context, arg(args, 0, NAN), arg(args, 1, 0.5)); } static float lib_fm(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; struct fm_context *fm = (struct fm_context *)context; float freq = arg(args, 0, NAN); float mf1 = arg(args, 1, 0); float mi1 = arg(args, 2, 0); float mf2 = arg(args, 3, 0); float mi2 = arg(args, 4, 0); float mf3 = arg(args, 5, 0); float mi3 = arg(args, 6, 0); fm->w3 = fwrap(fm->w3 + mf3 * fm->freq / libglitch_sample_rate); fm->w2 = fwrap(fm->w2 + mf2 * fm->freq / libglitch_sample_rate); fm->w1 = fwrap(fm->w1 + mf1 * fm->freq / libglitch_sample_rate); fm->w0 = fwrap(fm->w0 + fm->freq / libglitch_sample_rate); float v3 = mi3 * SIN(fm->w3); float v2 = mi2 * SIN(fm->w2); float v1 = mi1 * SIN(fwrap2(fm->w1 + v3)); float v0 = SIN(fwrap2(fm->w0 + v1 + v2)); if (isnan(freq)) { fm->sync = 1; return NAN; } else { fm->freq = freq; } if (fm->sync && v0 >= 0 && fm->prev <= 0) { fm->sync = 0; fm->w0 = fm->w1 = fm->w2 = fm->w3 = 0; } fm->prev = v0; return v0; } static float lib_seq(struct expr_func *f, vec_expr_t *args, void *context) { struct seq_context *seq = (struct seq_context *)context; /* At least BPM and one step should be provided */ if (vec_len(args) < 2) { return NAN; } /* Initialize vector of steps, cache all expression pointers */ if (!seq->init) { seq->init = 1; for (int i = 1; i < vec_len(args); i++) { struct expr *e = &vec_nth(args, i); struct expr *dur = NULL; if (e->type == OP_COMMA) { dur = &vec_nth(&e->param.op.args, 0); e = &vec_nth(&e->param.op.args, 1); } struct seq_step step = {.gliss = 0, .e = e, .dur = dur}; if (e->type == OP_COMMA) { int gliss = 0; for (struct expr *sube = e; sube->type == OP_COMMA; sube = &vec_nth(&sube->param.op.args, 1)) { gliss++; } while (e->type == OP_COMMA) { step.e = &vec_nth(&e->param.op.args, 0); step.gliss = gliss; vec_push(&seq->steps, step); e = &vec_nth(&e->param.op.args, 1); step.gliss = -1; } step.e = e; } vec_push(&seq->steps, step); } } /* A function can be either "seq" or "loop" */ int is_seq = (strncmp(f->name, "seq", 4) == 0); /* Sequencer reached the end of loop. Re-calculate step durations, initial * offset, cache step values if needed */ if (seq->t == 0) { struct expr *bpm = &vec_nth(args, 0); float offset = 0; if (bpm->type == OP_COMMA) { offset = expr_eval(&vec_nth(&bpm->param.op.args, 0)); } float tempo = expr_eval(bpm); if (isnan(tempo) || tempo <= 0) { return NAN; } float samples_per_beat = libglitch_sample_rate / (tempo / 60.f); seq->offset = (int)(offset * samples_per_beat); int t = 0; struct expr *prev_dur = NULL; float prev_dur_value = 1.f; seq->step = -1; for (int i = 0; i < vec_len(&seq->steps); i++) { struct seq_step *step = &vec_nth(&seq->steps, i); if (step->dur != prev_dur) { prev_dur = step->dur; prev_dur_value = (prev_dur == NULL ? 1.f : expr_eval(prev_dur)); } float dur = prev_dur_value; int gliss_len = (step->gliss > 0 ? step->gliss : 1); step->start = t; if (seq->step == -1 && t >= seq->offset) { seq->step = i; } if (step->gliss >= 0) { t += (int)(dur * samples_per_beat / gliss_len); step->end = t; } else { step->end = step->start; } seq->duration = step->end; if (is_seq) { step->value = expr_eval(step->e); } } } /* Prepare to return the value of the current step */ int t = (seq->t + seq->offset) % seq->duration; struct seq_step *step = &vec_nth(&seq->steps, seq->step); float v = NAN; /* Advance step if needed */ int loop = seq->step; while (t >= step->end || (t == 0 && step->end == seq->duration)) { seq->step = (seq->step + 1) % vec_len(&seq->steps); step = &vec_nth(&seq->steps, seq->step); if (seq->step == loop) { break; } } int has_gliss = (step->gliss > 0); /* Get step value either from cache (seq) or by evaluating current step * expression (loop) */ if (t < step->end - 1 || (has_gliss && t < step->end)) { if (is_seq) { /* Return step value */ if (step->gliss == 0) { v = step->value; } else { struct seq_step *next_step = &vec_nth(&seq->steps, seq->step + 1); if (t == (step->end - 1) && next_step->gliss == -1) { v = NAN; } else { float progress = 1.f * (t - step->start) / (step->end - step->start); float a = step->value; float b = next_step->value; v = a + (b - a) * progress; } } } else { v = expr_eval(step->e); } } seq->t = (seq->t + 1) % seq->duration; return v; } static void lib_seq_cleanup(struct expr_func *f, void *context) { (void)f; struct seq_context *seq = (struct seq_context *)context; vec_free(&seq->steps); } static float lib_env(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; float gate; float v; if (vec_len(args) < 1) { return NAN; } struct expr *e = &vec_nth(args, 0); if (e->type == OP_COMMA) { gate = expr_eval(&vec_nth(&e->param.op.args, 0)); v = expr_eval(&vec_nth(&e->param.op.args, 1)); } else { gate = v = expr_eval(e); } return libglitch_env((libglitch_env_t *)context, gate, v, arg(args, 1, 0.01), arg(args, 2, 10), arg(args, 3, 0.5), arg(args, 4, 0.5)); } static float lib_mix(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; struct mix_context *mix = (struct mix_context *)context; if (!mix->init) { for (int i = 0; i < vec_len(args); i++) { vec_push(&mix->values, 0); } mix->init = 1; } float v = 0; for (int i = 0; i < vec_len(args); i++) { struct expr *e = &vec_nth(args, i); float sample = expr_eval(e); if (isnan(sample)) { sample = vec_nth(&mix->values, i); } vec_nth(&mix->values, i) = sample; v = v + sample; } if (vec_len(args) > 0) { v = v / SQRT(vec_len(args)); if (v <= -1.25f) { return -0.984375; } else if (v >= 1.25f) { return 0.984375; } else { return 1.1f * v - 0.2f * v * v * v; } return v; } return 0; } static void lib_mix_cleanup(struct expr_func *f, void *context) { (void)f; struct mix_context *mix = (struct mix_context *)context; vec_free(&mix->values); } static float lib_filter(struct expr_func *f, vec_expr_t *args, void *context) { libglitch_biquad_t *biquad = (libglitch_biquad_t *)context; libglitch_biquad_filter_t type = -1; if (strncmp(f->name, "lpf", 4) == 0) { type = LIBGLITCH_FILTER_LPF; } else if (strncmp(f->name, "hpf", 4) == 0) { type = LIBGLITCH_FILTER_HPF; } else if (strncmp(f->name, "bpf", 4) == 0) { type = LIBGLITCH_FILTER_BPF; } else if (strncmp(f->name, "bsf", 4) == 0) { type = LIBGLITCH_FILTER_BSF; } float signal = arg(args, 0, NAN); float cutoff = arg(args, 1, 200); float q = arg(args, 2, 1); return libglitch_biquad(biquad, type, signal, cutoff, q); } static float lib_delay(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; libglitch_delay_t *delay = (libglitch_delay_t *)context; float signal = arg(args, 0, NAN); float time = arg(args, 1, 0); float level = arg(args, 2, 0); float feedback = arg(args, 3, 0); return libglitch_delay(delay, signal, time, level, feedback); } static void lib_delay_cleanup(struct expr_func *f, void *context) { (void)f; libglitch_delay_t *delay = (libglitch_delay_t *)context; libglitch_delay_free(delay); } static float int16_sample(unsigned char hi, unsigned char lo) { int sign = hi & (1 << 7); int v = (((int)(hi)&0x7f) << 8) | (int)lo; if (sign) { v = -0x8000 + v; } return v * 1.f / 0x8000; } static float lib_tr808(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; struct sample_context *sample = (struct sample_context *)context; float drum = arg(args, 0, NAN); float vol = arg(args, 1, 1); float shift = arg(args, 2, 0); if (isnan(drum) || isnan(vol) || isnan(shift)) { sample->t = 0; return NAN; } static unsigned char *samples[] = { tr808_bd_wav, tr808_sn_wav, tr808_mt_wav, tr808_mc_wav, tr808_rs_wav, tr808_cl_wav, tr808_cb_wav, tr808_oh_wav, tr808_hh_wav, }; static unsigned int len[] = { tr808_bd_wav_len, tr808_sn_wav_len, tr808_mt_wav_len, tr808_mc_wav_len, tr808_rs_wav_len, tr808_cl_wav_len, tr808_cb_wav_len, tr808_oh_wav_len, tr808_hh_wav_len, }; static int N = sizeof(samples) / sizeof(*samples); int index = (((int)drum % N) + N) % N; unsigned char *pcm = samples[index]; if (sample->t * 2 + 0x80 + 1 < len[index]) { unsigned char hi = pcm[0x80 + (int)sample->t * 2 + 1]; unsigned char lo = pcm[0x80 + (int)sample->t * 2]; float x = int16_sample(hi, lo); sample->t = sample->t + POW2(shift / 12.0); return x * vol; } return 0; } static float lib_sample(struct expr_func *f, vec_expr_t *args, void *context) { if (loader == NULL) { return NAN; } struct sample_context *sample = (struct sample_context *)context; float variant = arg(args, 0, NAN); float vol = arg(args, 1, 1); float shift = arg(args, 2, 0); if (isnan(variant) || isnan(vol) || isnan(shift)) { sample->t = 0; return NAN; } sample->t = sample->t + POW2(shift / 12.0); return loader(f->name, (int)variant, (int)(sample->t)) * vol; } static float lib_pluck(struct expr_func *f, vec_expr_t *args, void *context) { (void)f; libglitch_pluck_t *pluck = (libglitch_pluck_t *)context; float freq = arg(args, 0, NAN); float decay = arg(args, 1, 0.5); if (vec_len(args) < 3) { return libglitch_pluck(pluck, freq, decay, NULL, NULL); } else { return libglitch_pluck(pluck, freq, decay, (float (*)(void *))expr_eval, &vec_nth(args, 2)); } } static void lib_pluck_cleanup(struct expr_func *f, void *context) { (void)f; libglitch_pluck_t *pluck = (libglitch_pluck_t *)context; libglitch_pluck_free(pluck); } #define MAX_FUNCS 1024 #define FIRST_USER_FUNC 24 static struct expr_func glitch_funcs[MAX_FUNCS + 1] = { {"byte", lib_byte, NULL, 0}, {"s", lib_s, NULL, 0}, {"r", lib_r, NULL, 0}, {"l", lib_l, NULL, 0}, {"a", lib_a, NULL, 0}, {"scale", lib_scale, NULL, 0}, {"hz", lib_hz, NULL, 0}, {"each", lib_each, lib_each_cleanup, sizeof(struct each_context)}, {"sin", lib_sin, NULL, sizeof(libglitch_osc_t)}, {"tri", lib_tri, NULL, sizeof(libglitch_osc_t)}, {"saw", lib_saw, NULL, sizeof(libglitch_osc_t)}, {"sqr", lib_sqr, NULL, sizeof(libglitch_osc_t)}, {"fm", lib_fm, NULL, sizeof(struct fm_context)}, {"pluck", lib_pluck, lib_pluck_cleanup, sizeof(libglitch_pluck_t)}, {"tr808", lib_tr808, NULL, sizeof(struct sample_context)}, {"loop", lib_seq, lib_seq_cleanup, sizeof(struct seq_context)}, {"seq", lib_seq, lib_seq_cleanup, sizeof(struct seq_context)}, {"env", lib_env, NULL, sizeof(libglitch_env_t)}, {"mix", lib_mix, lib_mix_cleanup, sizeof(struct mix_context)}, {"lpf", lib_filter, NULL, sizeof(libglitch_biquad_t)}, {"hpf", lib_filter, NULL, sizeof(libglitch_biquad_t)}, {"bpf", lib_filter, NULL, sizeof(libglitch_biquad_t)}, {"bsf", lib_filter, NULL, sizeof(libglitch_biquad_t)}, {"delay", lib_delay, lib_delay_cleanup, sizeof(libglitch_delay_t)}, {NULL, NULL, NULL, 0}, }; struct glitch *glitch_create() { struct glitch *g = calloc(1, sizeof(struct glitch)); return g; } void glitch_init(int sample_rate, unsigned long long seed) { libglitch_init(sample_rate, seed); } void glitch_set_sample_loader(glitch_loader_fn fn) { loader = fn; } int glitch_add_sample(const char *name) { for (int i = FIRST_USER_FUNC; i < MAX_FUNCS; i++) { if (glitch_funcs[i].name == NULL || strlen(glitch_funcs[i].name) == 0) { const char *s = calloc(1, strlen(name) + 1); strcpy((char *)s, name); glitch_funcs[i].name = s; glitch_funcs[i].f = lib_sample; glitch_funcs[i].ctxsz = sizeof(struct sample_context); glitch_funcs[i + 1].name = NULL; return 0; } if (strcmp(glitch_funcs[i].name, name) == 0) { return -1; } } return -1; } int glitch_remove_sample(const char *name) { for (int i = FIRST_USER_FUNC; i < MAX_FUNCS; i++) { if (glitch_funcs[i].name == NULL) { break; } if (strcmp(glitch_funcs[i].name, name) == 0) { free((void *)(glitch_funcs[i].name)); glitch_funcs[i].name = ""; } } return -1; } void glitch_destroy(struct glitch *g) { expr_destroy(g->e, &g->vars); free(g); } void glitch_set(struct glitch *g, const char *name, float x) { expr_var(&g->vars, name, strlen(name))->value = x; } float glitch_get(struct glitch *g, const char *name) { return expr_var(&g->vars, name, strlen(name))->value; } void glitch_midi(struct glitch *g, unsigned char cmd, unsigned char a, unsigned char b) { cmd = cmd >> 4; if (cmd == 0x9 && b > 0) { // Note pressed: insert to the head of the "list" for (int i = 0; i < MAX_POLYPHONY; i++) { if (isnan(g->k[i]->value)) { g->k[i]->value = a - 69; g->g[i]->value = b / 128.0; g->v[i]->value = b / 128.0; break; } } } else if ((cmd == 0x9 && b == 0) || cmd == 0x8) { // Note released: remove from the "list" and shift the rest float key = a - 69; for (int i = 0; i < MAX_POLYPHONY; i++) { if (g->k[i]->value == key) { g->g[i]->value = NAN; break; } } } else if (cmd == 0xe) { // Pitch bend wheel g->x->value = (b - 64.f) / 65.f; } else if (cmd == 0xb && a == 1) { // Control change message: mod wheel g->y->value = (b - 64.f) / 65.f; } else { fprintf(stderr, "MIDI command %d %d %d\n", cmd, a, b); } } void glitch_reset(struct glitch *g) { g->t = expr_var(&g->vars, "t", 1); g->x = expr_var(&g->vars, "x", 1); g->y = expr_var(&g->vars, "y", 1); g->bpm = expr_var(&g->vars, "bpm", 3); g->t->value = g->x->value = g->y->value = g->bpm->value = 0; for (int i = 0; i < MAX_POLYPHONY; i++) { char name[4]; snprintf(name, sizeof(name), "k%d", i); g->k[i] = expr_var(&g->vars, name, strlen(name)); snprintf(name, sizeof(name), "v%d", i); g->v[i] = expr_var(&g->vars, name, strlen(name)); snprintf(name, sizeof(name), "g%d", i); g->g[i] = expr_var(&g->vars, name, strlen(name)); g->k[i]->value = g->v[i]->value = g->g[i]->value = NAN; } /* Note constants */ const struct { char *name; int pitch; } notes[] = { {"C0", -9}, {"C#0", -8}, {"Cb0", -10}, {"D0", -7}, {"D#0", -6}, {"Db0", -8}, {"E0", -5}, {"E#0", -4}, {"Eb0", -6}, {"F0", -4}, {"F#0", -3}, {"Fb0", -5}, {"G0", -2}, {"G#0", -1}, {"Gb0", -3}, {"A0", 0}, {"A#0", 1}, {"Ab0", -1}, {"B0", 2}, {"B#0", 3}, {"Bb0", 1}, }; for (int octave = -4; octave < 4; octave++) { char buf[4]; for (unsigned int n = 0; n < sizeof(notes) / sizeof(notes[0]); n++) { strncpy(buf, notes[n].name, sizeof(buf)); buf[strlen(buf) - 1] = '0' + octave + 4; int note = notes[n].pitch + octave * 12; expr_var(&g->vars, buf, strlen(buf))->value = note; } } /* TR808 drum constants */ expr_var(&g->vars, "BD", 3)->value = 0; expr_var(&g->vars, "SD", 3)->value = 1; expr_var(&g->vars, "MT", 3)->value = 2; expr_var(&g->vars, "MA", 3)->value = 3; expr_var(&g->vars, "RS", 3)->value = 4; expr_var(&g->vars, "CP", 3)->value = 5; expr_var(&g->vars, "CB", 7)->value = 6; expr_var(&g->vars, "OH", 3)->value = 7; expr_var(&g->vars, "HH", 3)->value = 8; g->frame = g->bpm_start = 0; g->last_bpm = g->last_sample = 0.f; } int glitch_compile(struct glitch *g, const char *s, size_t len) { if (!g->init) { glitch_reset(g); g->init = 1; } struct expr *e = expr_create(s, len, &g->vars, glitch_funcs); if (e == NULL) { return -1; } expr_destroy(g->next_expr, NULL); if (g->bpm->value == 0) { expr_destroy(g->e, NULL); g->e = e; g->next_expr = NULL; } else { g->next_expr = e; } return 0; } float glitch_beat(struct glitch *g) { return (g->frame - g->bpm_start) * g->bpm->value / 60.0 / libglitch_sample_rate; } void glitch_iter(struct glitch *g, size_t frames) { int apply_next = 1; /* If BPM is given - apply changes on the next beat */ if (g->bpm->value > 0) { float beat = glitch_beat(g); float interval = frames * g->bpm->value / 60.0 / libglitch_sample_rate; float a = (beat) - (int)beat; float b = (beat + interval) - (int)(beat + interval); if (a < b) { apply_next = 0; } } if (apply_next && g->next_expr != NULL) { if (g->bpm->value != g->last_bpm) { g->last_bpm = g->bpm->value; g->bpm_start = g->frame; } expr_destroy(g->e, NULL); g->e = g->next_expr; g->next_expr = NULL; } for (int i = 0; i < MAX_POLYPHONY; i++) { if (!isnan(g->v[i]->value) && isnan(g->g[i]->value)) { g->v[i]->value = g->v[i]->value - (10.f * frames / libglitch_sample_rate); if (g->v[i]->value < 0.01f) { g->v[i]->value = NAN; g->k[i]->value = NAN; } } } } float glitch_eval(struct glitch *g) { float v = expr_eval(g->e); if (!isnan(v)) { g->last_sample = v; } g->t->value = (long)(g->frame * 8000.0f / libglitch_sample_rate); g->frame++; return g->last_sample; } void glitch_fill(struct glitch *g, float *buf, size_t frames, size_t channels) { for (unsigned int i = 0; i < frames; i++) { glitch_iter(g, 1); float v = glitch_eval(g); for (unsigned int j = 0; j < channels; j++) { *buf++ = v; } } } ================================================ FILE: core/glitch.go ================================================ package core /* #cgo CFLAGS: -std=c99 -g -Wall -Wextra -pedantic -Wno-unused-parameter -Wno-unused-function #cgo LDFLAGS: -lm -g #include #include "glitch.h" extern float goSampleLoader(char *name, int variant, int frame); static void setSampleLoader() { glitch_set_sample_loader((glitch_loader_fn)goSampleLoader); } */ import "C" import ( "errors" "sync" "time" "unsafe" ) type SampleLoader interface { LoadSample(name string, variant, frame int) float32 } var ( Loader SampleLoader ) func init() { C.setSampleLoader() Init(44100, uint64(time.Now().UnixNano())) } //export goSampleLoader func goSampleLoader(name *C.char, variant, frame C.int) C.float { if Loader != nil { return C.float(Loader.LoadSample(C.GoString(name), int(variant), int(frame))) } return 0 } func Init(sr int, seed uint64) { C.glitch_init(C.int(sr), C.ulonglong(seed)) } func AddSample(name string) bool { p := C.CString(name) defer C.free(unsafe.Pointer(p)) return C.glitch_add_sample(p) == 0 } func RemoveSample(name string) bool { p := C.CString(name) defer C.free(unsafe.Pointer(p)) return C.glitch_remove_sample(p) == 0 } type Glitch interface { Compile(expr string) error MIDI(msg []byte) Fill(buf []float32, frames int, channels int) Set(name string, value float32) Get(name string) float32 Reset() Destroy() } var ErrSyntax = errors.New("glitch syntax error") type glitch struct { sync.Mutex g *C.struct_glitch } func NewGlitch() Glitch { g := C.glitch_create() if g == nil { return nil } return &glitch{g: g} } func (g *glitch) Destroy() { g.Lock() defer g.Unlock() C.glitch_destroy(g.g) } func (g *glitch) Reset() { g.Lock() defer g.Unlock() C.glitch_reset(g.g) } func (g *glitch) Compile(expr string) error { g.Lock() defer g.Unlock() p := C.CString(expr) defer C.free(unsafe.Pointer(p)) r := C.glitch_compile(g.g, p, C.strlen(p)) if r != 0 { return ErrSyntax } return nil } func (g *glitch) Fill(buf []float32, frames, channels int) { g.Lock() defer g.Unlock() C.glitch_fill(g.g, (*C.float)(&buf[0]), C.size_t(frames), C.size_t(channels)) } func (g *glitch) MIDI(msg []byte) { if len(msg) == 3 { g.Lock() defer g.Unlock() C.glitch_midi(g.g, C.uchar(msg[0]), C.uchar(msg[1]), C.uchar(msg[2])) } } func (g *glitch) Set(name string, value float32) { p := C.CString(name) defer C.free(unsafe.Pointer(p)) g.Lock() defer g.Unlock() C.glitch_set(g.g, p, C.float(value)) } func (g *glitch) Get(name string) float32 { p := C.CString(name) defer C.free(unsafe.Pointer(p)) g.Lock() defer g.Unlock() return float32(C.glitch_get(g.g, p)) } ================================================ FILE: core/glitch.h ================================================ #ifndef GLITCH_H #define GLITCH_H #ifdef __cplusplus extern "C" { #endif #include "expr.h" #define MAX_POLYPHONY 9 struct glitch { int init; struct expr *e; struct expr *next_expr; struct expr_var_list vars; struct expr_var *t; struct expr_var *x; struct expr_var *y; struct expr_var *bpm; struct expr_var *k[MAX_POLYPHONY]; struct expr_var *g[MAX_POLYPHONY]; struct expr_var *v[MAX_POLYPHONY]; long frame; /* Frame number since the beginning of the playback */ long bpm_start; /* Frame number when tempo has been changed */ float last_bpm; float last_sample; }; typedef float (*glitch_loader_fn)(const char *name, int variant, int frame); void glitch_init(int sample_rate, unsigned long long seed); void glitch_set_sample_loader(glitch_loader_fn fn); int glitch_add_sample(const char *name); int glitch_remove_sample(const char *name); struct glitch *glitch_create(); void glitch_destroy(struct glitch *g); int glitch_compile(struct glitch *g, const char *s, size_t len); void glitch_reset(struct glitch *g); void glitch_set(struct glitch *g, const char *name, float value); float glitch_get(struct glitch *g, const char *name); void glitch_midi(struct glitch *g, unsigned char cmd, unsigned char a, unsigned char b); void glitch_fill(struct glitch *g, float *buf, size_t frames, size_t channels); #ifdef __cplusplus } #endif #endif /* GLITCH_H */ ================================================ FILE: core/glitch_test.c ================================================ // +build ignore #include #include #include #define LIBGLITCH_TEST #include "glitch.c" int status = 0; #define ASSERT(expr) \ do { \ if (!(expr)) { \ printf("\nFAIL: %s (%d)\n\n", #expr, __LINE__); \ status = 1; \ } \ } while (0) #define GLITCH_TEST(s) \ for (struct glitch *g = glitch_create(); \ g != NULL && glitch_compile(g, s, strlen(s)) == 0; \ glitch_destroy(g), g = NULL) /*libglitch_sample_rate = sr; \*/ /*libglitch_sample_rate = prev_sr; \*/ #define GLITCH_SEQ_ASSERT(sr, expect) \ do { \ int prev_sr = libglitch_sample_rate; \ libglitch_init(sr, 0); \ for (unsigned int i = 0; i < sizeof(expect) / sizeof(expect[0]); i++) { \ float v = glitch_eval(g); \ ASSERT(abs(v - expect[i]) < 0.0001); \ } \ libglitch_init(prev_sr, 0); \ } while (0) static void test_r() { printf("TEST: r()\n"); /* Should return values in the range [0..max) */ GLITCH_TEST("r(10)") { for (int i = 0; i < 10; i++) { ASSERT(glitch_eval(g) >= 0 && glitch_eval(g) < 10); } } /* r(0) can only return 0 */ GLITCH_TEST("r(0)") { for (int i = 0; i < 10; i++) { ASSERT(glitch_eval(g) == 0); } } /* Two sequential values are likely to be different */ GLITCH_TEST("r()") { ASSERT(glitch_eval(g) != glitch_eval(g)); } /* By default r() returns values in the range [0..1) */ GLITCH_TEST("r()") { for (int i = 0; i < 10; i++) { ASSERT(glitch_eval(g) >= 0 && glitch_eval(g) < 1); } } } static void test_hz() { printf("TEST: hz()\n"); /* hz() == 440 */ GLITCH_TEST("hz()") { ASSERT(glitch_eval(g) == 440.f); } /* hz(A4) == 440 */ GLITCH_TEST("hz(A4)") { ASSERT(glitch_eval(g) == 440.f); } /* hz(A3) == 220 */ GLITCH_TEST("hz(A3)") { ASSERT(glitch_eval(g) == 220.f); } /* hz(NAN) == NAN */ GLITCH_TEST("hz(seq()) || -1") { ASSERT(glitch_eval(g) == -1); } /* hz(A3 + 0.5) > hz(A3), but < hz(A#3) */ GLITCH_TEST("hz(A3+0.5)") { ASSERT(glitch_eval(g) > 220.f && glitch_eval(g) < 233.f); } } static void test_byte() { printf("TEST: byte()\n"); /* byte() == 0 */ GLITCH_TEST("byte()") { ASSERT(glitch_eval(g) == 0.f); } /* byte(0) ~= -1 */ GLITCH_TEST("byte(0)") { ASSERT(glitch_eval(g) >= -1 && glitch_eval(g) < 0.99f); } /* byte(127) ~= 0 */ GLITCH_TEST("byte(127)") { ASSERT(glitch_eval(g) == 0.f); } /* byte(255) ~= 1 */ GLITCH_TEST("byte(255)") { ASSERT(glitch_eval(g) == 1.f); } /* byte(383) overflows and equals 0 */ GLITCH_TEST("byte(383)") { ASSERT(glitch_eval(g) == 0.f); } /* byte(-257) overflows and equals 1 */ GLITCH_TEST("byte(-257)") { ASSERT(glitch_eval(g) == 1.f); } } static void test_s() { printf("TEST: byte()\n"); /* s() == 0 */ GLITCH_TEST("s()") { ASSERT(glitch_eval(g) == 0.f); } /* s(0) == 0 */ GLITCH_TEST("s(0)") { ASSERT(glitch_eval(g) == 0.f); } /* s(1) == 0 */ GLITCH_TEST("s(1)") { ASSERT(glitch_eval(g) == 0.f); } /* s(0.25) == 1 */ GLITCH_TEST("s(0.25)") { ASSERT(glitch_eval(g) == 1.f); } /* s(0.5) == 0 */ GLITCH_TEST("s(0.5)") { ASSERT(glitch_eval(g) > -0.0001f && glitch_eval(g) < 0.0001f); } /* s(0.75) == 0 */ GLITCH_TEST("s(0.75)") { ASSERT(glitch_eval(g) == -1.f); } } static void test_a() { printf("TEST: a()\n"); /* a() == 0 */ GLITCH_TEST("a()") { ASSERT(glitch_eval(g) == 0); } /* a(1) == 0 */ GLITCH_TEST("a(1)") { ASSERT(glitch_eval(g) == 0); } /* a(1, 2, 3, 4) == 3 */ GLITCH_TEST("a(1, 2, 3, 4)") { ASSERT(glitch_eval(g) == 3); } /* a(7, 2, 3, 4) == 3 */ GLITCH_TEST("a(7, 2, 3, 4)") { ASSERT(glitch_eval(g) == 3); } /* a(-1, 2, 3, 4) == 4 */ GLITCH_TEST("a(-1, 2, 3, 4)") { ASSERT(glitch_eval(g) == 4); } } static void test_osc() { printf("TEST: sin(), tri(), saw(), sqr()\n"); /* sin(), tri(), saw(), sqr() returns NAN with no args */ GLITCH_TEST("sin() || -1") { ASSERT(glitch_eval(g) == -1); } GLITCH_TEST("tri() || -1") { ASSERT(glitch_eval(g) == -1); } GLITCH_TEST("saw() || -1") { ASSERT(glitch_eval(g) == -1); } GLITCH_TEST("sqr() || -1") { ASSERT(glitch_eval(g) == -1); } /* sin(), tri(), saw(), sqr() with positive frequency */ GLITCH_TEST("sin(1)") { float x = 0.7071f; float expect[] = {0, x, 1, x, 0, -x, -1, -x, 0, x}; GLITCH_SEQ_ASSERT(8, expect); } GLITCH_TEST("tri(1)") { float expect[] = {0, 1, 0, -1, 0, 1, 0, -1, 0}; GLITCH_SEQ_ASSERT(4, expect); } GLITCH_TEST("saw(1)") { float expect[] = {0, 0.5, -1, -0.5, 0, 0.5, -1, -0.5, 0}; GLITCH_SEQ_ASSERT(4, expect); } GLITCH_TEST("sqr(1)") { float expect[] = {1, 1, -1, -1, 1, 1, -1, -1, 1}; GLITCH_SEQ_ASSERT(4, expect); } GLITCH_TEST("sqr(1, 0.25)") { float expect[] = {1, -1, -1, -1, 1, -1, -1, -1, 1}; GLITCH_SEQ_ASSERT(4, expect); } /* sin(), tri(), saw(), sqr() with negative frequency */ GLITCH_TEST("sin(-1)") { float x = 0.7071f; float expect[] = {0, -x, -1, -x, 0, x, 1, x, 0, -x}; GLITCH_SEQ_ASSERT(8, expect); } GLITCH_TEST("tri(-1)") { float expect[] = {0, -1, 0, 1, 0, -1, 0, 1, 0}; GLITCH_SEQ_ASSERT(4, expect); } GLITCH_TEST("saw(-1)") { float expect[] = {0, -0.5, -1, 0.5, 0, -0.5, -1, 0.5, 0}; GLITCH_SEQ_ASSERT(4, expect); } GLITCH_TEST("sqr(-1)") { float expect[] = {1, -1, -1, 1, 1, -1, -1, 1, 1, -1}; GLITCH_SEQ_ASSERT(4, expect); } } static void test_seq() { printf("TEST: seq()\n"); /* seq() returns NAN */ GLITCH_TEST("seq() || -1") { ASSERT(glitch_eval(g) == -1); } /* seq(bpm) returns NAN */ GLITCH_TEST("seq(120) || -1") { ASSERT(glitch_eval(g) == -1); } /* seq(NaN,...) returns NAN */ GLITCH_TEST("seq(seq(),1,2,3) || -1") { ASSERT(glitch_eval(g) == -1); } /* seq(bpm, ...) switches values in a loop, returning NAN when beat ends */ GLITCH_TEST("seq(60,1,2,3) || -1") { float expect[] = { 1, 1, 1, -1, 2, 2, 2, -1, 3, 3, 3, -1, 1, 1, 1, -1, 2, 2, 2, -1, 3, 3, 3, -1, }; GLITCH_SEQ_ASSERT(4, expect); } /* seq(bpm, ...) latches its value at the beginning of the beat */ GLITCH_TEST("seq(60,r()) || -1") { int prev_sr = libglitch_sample_rate; libglitch_init(4, 0); float latched = glitch_eval(g); ASSERT(glitch_eval(g) == latched); ASSERT(glitch_eval(g) == latched); ASSERT(glitch_eval(g) == -1); libglitch_init(prev_sr, 0); } /* If a tuple is passed as a step - step duration can be customized */ GLITCH_TEST("seq(60,1,(1.5,2),3,(0.5,4)) || -1") { float expect[] = { 1, 1, 1, -1, 2, 2, 2, 2, 2, -1, 3, 3, 3, -1, 4, -1, 1, 1, 1, -1, 2, 2, 2, 2, 2, -1, 3, 3, 3, -1, 4, -1, 1, 1, 1, -1, 2, 2, 2, 2, 2, -1, 3, 3, 3, -1, 4, -1, 1, 1, 1, -1, 2, 2, 2, 2, 2, -1, 3, 3, 3, -1, 4, -1, }; GLITCH_SEQ_ASSERT(4, expect); } /* If more than 2 numbers are in a tuple - seq() should slide between the * values, returning NaN at the end of the whole step */ GLITCH_TEST("seq(60,(3,1,4,5,2), 6) || -1") { float expect[] = { 1, 1.75, 2.5, 3.25, 4, 4.25, 4.5, 4.75, 5, 4.25, 3.5, -1, 6, 6, 6, -1, 1, 1.75, 2.5, 3.25, 4, 4.25, 4.5, 4.75, 5, 4.25, 3.5, -1, 6, 6, 6, -1, 1, 1.75, 2.5, 3.25, 4, 4.25, 4.5, 4.75, 5, 4.25, 3.5, -1, 6, 6, 6, -1, }; GLITCH_SEQ_ASSERT(4, expect); } /* seq((start,bpm), ...) starts at a given step */ GLITCH_TEST("seq((1,60),1,2,3) || -1") { float expect[] = { 2, 2, 2, -1, 3, 3, 3, -1, 1, 1, 1, -1, 2, 2, 2, -1, 3, 3, 3, -1, 1, 1, 1, -1, }; GLITCH_SEQ_ASSERT(4, expect); } /* seq() with only one step should work normally */ GLITCH_TEST("seq(60, (1, 2)) || -1") { float expect[] = {2, 2, 2, -1, 2, 2, 2, -1}; GLITCH_SEQ_ASSERT(4, expect); } /* seq() with only one glissando should work normally */ GLITCH_TEST("seq(30, (1, 48, 24, 0)) || -1") { float expect[] = { 48, 42, 36, 30, 24, 18, 12, -1, }; GLITCH_SEQ_ASSERT(4, expect); } /* seq() with only one glissando step should work normally */ GLITCH_TEST("seq(30, (1, 48, 0)) || -1") { float expect[] = { 48, 42, 36, 30, 24, 18, 12, -1, }; GLITCH_SEQ_ASSERT(4, expect); } /* loop(bpm, ...) evaluates next value on each call */ /* loop((start,bpm), ...) evaluates next value on each call */ /* loop(bpm, (a,b)...) modifies the duration of each beat */ } static void test_env() { printf("TEST: env()\n"); /* If no signal is given - env returns NAN */ GLITCH_TEST("env() || -1") { ASSERT(glitch_eval(g) == -1); } /* Default attack is 0.01, default release is 10x of the attack time */ GLITCH_TEST("env(10)") { float expect[] = { 5, 10, 9.9975, 9.995, 9.9925, 9.99, }; /*GLITCH_SEQ_ASSERT(200, expect);*/ int prev_sr = libglitch_sample_rate; libglitch_init(200, 0); for (unsigned int i = 0; i < sizeof(expect) / sizeof(expect[0]); i++) { float v = glitch_eval(g); printf("%f %f\n", v, expect[i]); ASSERT(abs(v - expect[i]) < 0.0001); } libglitch_init(prev_sr, 0); } GLITCH_TEST("env(10, 0.01, 10)") { float expect[] = { 5, 10, 9.9975, 9.995, 9.9925, 9.99, }; GLITCH_SEQ_ASSERT(200, expect); } /* Env is reset when the signal becomes NAN */ GLITCH_TEST("env(x, 0.01, 10)") { float expect[] = { 5, 10, 9.9975, 9.995, 9.9925, 9.99, }; glitch_set(g, "x", 10); GLITCH_SEQ_ASSERT(200, expect); glitch_set(g, "x", NAN); glitch_eval(g); glitch_set(g, "x", 10); GLITCH_SEQ_ASSERT(200, expect); } } static void test_delay() { printf("TEST: delay()\n"); /* Fixed-time delay */ GLITCH_TEST("delay(x, 0.5, 0.5, 0.5)") { int prev_sr = libglitch_sample_rate; libglitch_init(4, 0); float x[] = {1, 2, 3, 4, 3, 2, 1}; float expect[] = {1, 2, 3.5, 5, 4.5, 4, 2.5}; for (unsigned int i = 0; i < sizeof(expect) / sizeof(expect[0]); i++) { glitch_set(g, "x", x[i]); float v = glitch_eval(g); ASSERT(v == expect[i]); } libglitch_init(prev_sr, 0); } /* Variable-time delay */ GLITCH_TEST("delay(x, y, 0.5, 0.5)") { int prev_sr = libglitch_sample_rate; libglitch_init(4, 0); float x[] = {1, 2, 3, 4, 5, 6, 7, 8}; float y[] = {1, 1, 1, 1, 1, 0.75, 0.5, 0.25}; float expect[] = {1, 2, 3, 4, 5.5, 7.5, 9.5, 11.5}; for (unsigned int i = 0; i < sizeof(expect) / sizeof(expect[0]); i++) { glitch_set(g, "x", x[i]); glitch_set(g, "y", y[i]); float v = glitch_eval(g); ASSERT(v == expect[i]); } libglitch_init(prev_sr, 0); } } static void test_benchmark(const char *s) { double start = (double)clock() / CLOCKS_PER_SEC; struct glitch *g = glitch_create(); if (g == NULL) { printf("FAIL: glitch instance can't be created\n"); status = 1; return; } if (glitch_compile(g, s, strlen(s)) != 0) { printf("FAIL: %s can't be compiled\n", s); status = 1; return; } long N = 1000000L; for (long i = 0; i < N; i++) { glitch_eval(g); } double end = (double)clock() / CLOCKS_PER_SEC; glitch_destroy(g); double ns = 1000000000 * (end - start) / N; printf("BENCH %40s:\t%f ns/op (%dM op/sec)\n", s, ns, (int)(1000 / ns)); } static void run_benchmarks() { printf("\n## Arithmetics\n"); test_benchmark("0"); test_benchmark("x=x+1"); test_benchmark("byte(t*(42&t>>10))"); printf("\n## Instruments\n"); test_benchmark("sin(440)"); test_benchmark("saw(440)"); test_benchmark("tri(440)"); test_benchmark("sqr(440)"); test_benchmark("fm(440,1,1)"); /*test_benchmark("piano(440)");*/ test_benchmark("pluck(440)"); test_benchmark("tr808(BD,1)"); printf("\n## Sequencers\n"); test_benchmark("a(i=i+1,1,2,3,4)"); test_benchmark("s(i=i+1/6)"); test_benchmark("seq(120,1,2,3,4)"); test_benchmark("seq(120,(0.5,1),2,(2,3),(1.5,4))"); test_benchmark("seq((2,120),(0.5,1),2,(2,3),(1.5,4))"); test_benchmark("seq(120*2,1,2,0,0,3,4,0,0)"); test_benchmark("loop(120,1,2,3,4)"); /* TODO: nested sequences */ /* TODO: variable bpm and offset */ printf("\n## Effects\n"); test_benchmark("lpf(saw(440))"); test_benchmark("hpf(saw(440))"); test_benchmark("bpf(saw(440))"); test_benchmark("bsf(saw(440))"); test_benchmark("delay(saw(seq(120,440)),0.1,0.5,0.5)"); printf("\n## Utils\n"); test_benchmark("hz(A4)"); test_benchmark("scale(42)"); test_benchmark("r()"); test_benchmark("env(sin(seq(120,440)),0.1,0.3)"); test_benchmark("mix(sin(220),sin(440),sin(880),sin(110))"); test_benchmark("(sin(220)+sin(440)+sin(880)+sin(110))/4"); test_benchmark("each(f,sin(f),220,440,880,110)/4"); test_benchmark("delay(sin(440),0.25,0.5,0.5)"); test_benchmark("delay(sin(440),0.25+sin(4)/10,0.5,0.5)"); } int main() { glitch_init(48000, time(NULL)); libglitch_test(); test_r(); test_hz(); test_byte(); test_s(); test_a(); test_osc(); test_seq(); test_env(); test_delay(); run_benchmarks(); return status; } ================================================ FILE: core/glitch_test.go ================================================ package core import "testing" func eval(g Glitch) float32 { f32 := []float32{0} g.Fill(f32, 1, 1) return f32[0] } func TestGlitch(t *testing.T) { g := NewGlitch() defer g.Destroy() if err := g.Compile("2+"); err != ErrSyntax { t.Fatal("expected ErrSyntax", err) } if err := g.Compile("2+3"); err != nil { t.Fatal(err) } if x := eval(g); x != 5 { t.Error("expected 5, got", x) } } func TestGlitchVar(t *testing.T) { g := NewGlitch() defer g.Destroy() g.Compile("x = 5") if x := eval(g); x != 5 { t.Error("expected 5, got", x) } if x := g.Get("x"); x != 5 { t.Error("expected x=5, got", x) } g.Compile("z = x + y") g.Set("y", 3) eval(g) if z := g.Get("z"); z != 8 { t.Error("expected z=8, got", z) } } func TestGlitchSamples(t *testing.T) { g := NewGlitch() defer g.Destroy() if err := g.Compile("foo()"); err == nil { t.Error("foo() should be missing, but compile succeeds") } AddSample("foo") if err := g.Compile("foo()"); err != nil { t.Error("foo() should be present, but compile fails") } AddSample("bar") if err := g.Compile("foo()+bar()"); err != nil { t.Error("foo() and bar() should be present, but compile fails") } RemoveSample("foo") if err := g.Compile("foo()+bar()"); err == nil { t.Error("foo() should not be present, but compile succeeds") } if err := g.Compile("bar()"); err != nil { t.Error("bar() should be present, but compile fails") } RemoveSample("bar") RemoveSample("foo") if err := g.Compile("bar()"); err == nil { t.Error("bar() should not be present, but compile succeeds") } } ================================================ FILE: core/libglitch.h ================================================ #ifndef LIBGLITCH_H #define LIBGLITCH_H #include #include #include #ifdef LIBGLITCH_TEST // // Test helpers: assert and benchmark macros // #include #include #define libglitch_assert(cond) (!(cond) ? printf("FAIL: %s\n", #cond) : 0); #define libglitch_bench_clock() ((float)clock() * 1000000000L / CLOCKS_PER_SEC) #define libglitch_bench(_name, _iter) \ for (long _start_ns = libglitch_bench_clock(), _i = (_iter); \ _i > 0 || (printf("BENCH: %30s: %f ns/op\n", _name, \ (libglitch_bench_clock() - _start_ns) / _iter), \ 0); \ _i--) // Number of benchmark iterations static long N = 1000000L; // Variables used inside the benchmark loop to prevent loop optimizations static volatile float x, y; #endif /* LIBGLITCH_TEST */ // Audio engine sample rate. Used to advance oscillators at the given frequency. static int libglitch_sample_rate; // Interpolation util. XXX currently does not interploate at all. static inline float libglitch_interpolate(float *arr, size_t len, float index) { (void)len; if (isnan(index)) { return NAN; } return arr[(int)index]; } // Returns fractal part of the real number TODO rename to libglitch_frac static float libglitch_wrap(float x) { #if 0 return x - floorf(x); #elif 0 return fmodf(1 + fmodf(x, 1), 1); #else x = x - (int)x + 1; return x - (int)x; #endif } // ================================= // r: pseudo-random number generator // ================================= static unsigned long long libglitch_rand_seed; static inline void libglitch_rand_init(unsigned long long seed) { libglitch_rand_seed = seed; } static inline float libglitch_rand(float max) { libglitch_rand_seed = 6364136223846793005ULL * libglitch_rand_seed + 1; return (libglitch_rand_seed >> 33) * max / 0x7fffffff; } #ifdef LIBGLITCH_TEST static inline void libglitch_rand_test() { // Two random numbers are unlikely to be equal libglitch_assert(libglitch_rand(10000) != libglitch_rand(10000)); // Random with zero range should return zero libglitch_assert(libglitch_rand(0) == 0); // If any of the parameters is NAN - libglitch_rand() returns NAN libglitch_assert(isnan(libglitch_rand(NAN))); // Random numbers should always be within the [min, max] range for (int i = 0; i < 100000; i++) { libglitch_assert(libglitch_rand(1) >= 0 && libglitch_rand(1) <= 1); } libglitch_bench("rand()", N) { y = libglitch_rand(x); } } #endif // ============================== // byte: bytebeat range converter // ============================== static float libglitch_byte_lut[256]; static inline void libglitch_byte_init() { for (int i = 0; i < 256; i++) { libglitch_byte_lut[i] = (i - 127) / 128.f; } } static inline float libglitch_byte(float byte) { return libglitch_byte_lut[((int)byte) & 255] + (byte - byte); } #ifdef LIBGLITCH_TEST static void libglitch_byte_test() { // Should convert values from [0..255] to the [-1..1] range */ libglitch_assert(libglitch_byte(255) == 1); libglitch_assert(libglitch_byte(255.1f) == 1); libglitch_assert(libglitch_byte(255 + 256) == 1); libglitch_assert(libglitch_byte(255 - 256) == 1); libglitch_assert(libglitch_byte(127) == 0); libglitch_assert(libglitch_byte(127 + 256) == 0); libglitch_assert(libglitch_byte(127 + 1024) == 0); libglitch_assert(libglitch_byte(127 - 256) == 0); libglitch_assert(libglitch_byte(-129) == 0); libglitch_assert(isnan(libglitch_byte(NAN))); libglitch_bench("byte()", N) { y = libglitch_byte(x); } } #endif // ===================================== // hz: note index to frequency converter // ===================================== #define libglitch_hz_lut_min_note -48 // ~27Hz #define libglitch_hz_lut_max_note 72 // ~28kHz #define libglitch_hz_lut_microtones 12 #define libglitch_hz_lut_len \ ((libglitch_hz_lut_max_note - libglitch_hz_lut_min_note) * \ libglitch_hz_lut_microtones) static float libglitch_hz_lut[libglitch_hz_lut_len]; static inline void libglitch_hz_init() { for (int n = libglitch_hz_lut_min_note; n < libglitch_hz_lut_max_note; n++) { for (int m = 0; m < libglitch_hz_lut_microtones; m++) { float note = n + 1.f * m / libglitch_hz_lut_microtones; float freq = powf(2.0, note / 12.f) * 440.f; int index = (n - libglitch_hz_lut_min_note) * libglitch_hz_lut_microtones + m; libglitch_hz_lut[index] = freq; } } } static inline float libglitch_hz(float note) { float mul = 1.f; while (note < libglitch_hz_lut_min_note) { note = note + 12.f; mul = mul * 2.f; } while (note >= libglitch_hz_lut_max_note) { note = note - 12.f; mul = mul / 2.f; } return mul * libglitch_interpolate(libglitch_hz_lut, libglitch_hz_lut_len, libglitch_hz_lut_microtones * (note - libglitch_hz_lut_min_note)); } #ifdef LIBGLITCH_TEST static void libglitch_hz_test() { libglitch_assert(libglitch_hz(0) == 440.f); libglitch_assert(libglitch_hz(12) == 880.f); libglitch_assert(libglitch_hz(-12) == 220.f); libglitch_assert(libglitch_hz(-24) == 110.f); libglitch_assert(libglitch_hz(3.2) > libglitch_hz(3)); libglitch_assert(libglitch_hz(3.2) < libglitch_hz(4)); libglitch_assert(isnan(libglitch_hz(NAN))); libglitch_bench("hz()", N) { y = libglitch_hz(x); } } #endif // ===================================== // sin, tri, saw, sqr: basic oscillators // ===================================== #define LIBGLITCH_OSC_LUT_LEN 8192 static float libglitch_sin_lut[LIBGLITCH_OSC_LUT_LEN]; static float libglitch_tri_lut[LIBGLITCH_OSC_LUT_LEN]; static float libglitch_saw_lut[LIBGLITCH_OSC_LUT_LEN]; typedef struct libglitch_osc { float w; } libglitch_osc_t; static void libglitch_osc_init() { for (unsigned int i = 0; i < LIBGLITCH_OSC_LUT_LEN; i++) { float w = i * 1.f / LIBGLITCH_OSC_LUT_LEN; float sign = (w < 0 ? -1 : 1); float tri_w = libglitch_wrap(w * sign + 0.25f) - 0.5f; libglitch_sin_lut[i] = sinf(w * 2 * 3.14151926f); libglitch_tri_lut[i] = sign * 4 * (0.25f - tri_w * (tri_w < 0 ? -1 : 1)); libglitch_saw_lut[i] = 2 * libglitch_wrap(w + 0.5f * sign) - sign; } } static float libglitch_osc(libglitch_osc_t *osc, const float freq, float *sample, const size_t len) { if (isnan(freq)) { return NAN; } float w = osc->w; osc->w = libglitch_wrap(osc->w + freq / libglitch_sample_rate); return libglitch_interpolate(sample, len, (w * len)); } static float libglitch_sin(libglitch_osc_t *osc, float freq) { return libglitch_osc(osc, freq, libglitch_sin_lut, LIBGLITCH_OSC_LUT_LEN); } static float libglitch_tri(libglitch_osc_t *osc, float freq) { return libglitch_osc(osc, freq, libglitch_tri_lut, LIBGLITCH_OSC_LUT_LEN); } static float libglitch_saw(libglitch_osc_t *osc, float freq) { return libglitch_osc(osc, freq, libglitch_saw_lut, LIBGLITCH_OSC_LUT_LEN); } static float libglitch_sqr(libglitch_osc_t *osc, float freq, float pwm) { if (isnan(freq)) { return NAN; } float w = osc->w; osc->w = libglitch_wrap(osc->w + freq / libglitch_sample_rate); return (w < pwm ? 1 : -1); } #ifdef LIBGLITCH_TEST static void libglitch_osc_test() { libglitch_osc_t osc = {0}; x = 440; libglitch_bench("sin()", N) { y = libglitch_sin(&osc, x); } libglitch_bench("tri()", N) { y = libglitch_saw(&osc, x); } libglitch_bench("saw()", N) { y = libglitch_tri(&osc, x); } libglitch_bench("sqr()", N) { y = libglitch_sqr(&osc, x, 0.5); } } #endif // ================================== // lpf, hpf, bpf, bsf: biquad filters // ================================== typedef enum libglitch_biquad_filter { LIBGLITCH_FILTER_LPF, LIBGLITCH_FILTER_HPF, LIBGLITCH_FILTER_BPF, LIBGLITCH_FILTER_BSF, } libglitch_biquad_filter_t; typedef struct libglitch_biquad { float x1; float x2; float y1; float y2; } libglitch_biquad_t; static inline float libglitch_biquad(libglitch_biquad_t *filter, libglitch_biquad_filter_t type, float input, float cutoff, float q) { if (isnan(input) || isnan(cutoff) || isnan(q)) { filter->x1 = filter->x2 = filter->y1 = filter->y2 = 0; return NAN; } if (cutoff <= 0 || q <= 0) { return 0; } float w0 = cutoff / libglitch_sample_rate; float cs = libglitch_interpolate(libglitch_sin_lut, LIBGLITCH_OSC_LUT_LEN, LIBGLITCH_OSC_LUT_LEN * libglitch_wrap(w0 + 0.25f)); float sn = libglitch_interpolate(libglitch_sin_lut, LIBGLITCH_OSC_LUT_LEN, LIBGLITCH_OSC_LUT_LEN * libglitch_wrap(w0)); float alpha = sn / (2 * q); float a0, a1, a2, b0, b1, b2; switch (type) { case LIBGLITCH_FILTER_LPF: b0 = (1 - cs) / 2; b1 = 1 - cs; b2 = (1 - cs) / 2; a0 = 1 + alpha; a1 = -2 * cs; a2 = 1 - alpha; break; case LIBGLITCH_FILTER_HPF: b0 = (1 + cs) / 2; b1 = -(1 + cs); b2 = (1 + cs) / 2; a0 = 1 + alpha; a1 = -2 * cs; a2 = 1 - alpha; break; case LIBGLITCH_FILTER_BPF: b0 = alpha; b1 = 0; b2 = -alpha; a0 = 1 + alpha; a1 = -2 * cs; a2 = 1 - alpha; break; case LIBGLITCH_FILTER_BSF: b0 = 1; b1 = -2 * cs; b2 = 1; a0 = 1 + alpha; a1 = -2 * cs; a2 = 1 - alpha; break; default: return input; } float out = (b0 / a0) * input + b1 / a0 * filter->x1 + b2 / a0 * filter->x2 - a1 / a0 * filter->y1 - a2 / a0 * filter->y2; filter->x2 = filter->x1; filter->x1 = input; filter->y2 = filter->y1; filter->y1 = out; return out; } #ifdef LIBGLITCH_TEST static void libglitch_biquad_test() { libglitch_biquad_t filter = {0.f, 0.f, 0.f, 0.f}; x = 42; libglitch_bench("lpf()", N) { x = libglitch_biquad(&filter, LIBGLITCH_FILTER_LPF, x, x, x); } } #endif // ============================ // env: attack-release envelope // ============================ typedef struct libglitch_env { int t; int at; int rt; float ac; float aval; float amul; float adif; float rc; float rval; float rmul; float rdif; } libglitch_env_t; #define libglitch_env_calc_exp(t, c, mult, diff) \ do { \ if ((t) > 0) { \ if ((c) < 0.4999f || (c) > 0.5001f) { \ float s = (1 - (c)) / (c); \ (mult) = powf(s, 2.0f / (t)); \ (diff) = ((mult)-1) / (s * s - 1); \ } else { \ (mult) = 1; \ (diff) = 1.f / (t); \ } \ } \ } while (0) static inline float libglitch_env_flim(float x, float a, float b) { if (!isnan(a) && x < a) { return a; } else if (!isnan(b) && x > b) { return b; } return x; } static float libglitch_env(libglitch_env_t *env, float g, float v, float at, float rt, float ac, float rc) { if (env->t == 0) { env->at = (int)(at * libglitch_sample_rate); env->rt = (int)(rt * libglitch_sample_rate); ac = libglitch_env_flim(ac, 0.0001f, 0.9999f); rc = libglitch_env_flim(rc, 0.0001f, 0.9999f); libglitch_env_calc_exp(env->at, ac, env->amul, env->adif); libglitch_env_calc_exp(env->rt, (1 - rc), env->rmul, env->rdif); env->aval = env->rval = 0; } float r = 0; if (env->t < env->at) { r = env->aval = env->aval * env->amul + env->adif; } else if (env->t < env->at + env->rt) { env->rval = env->rval * env->rmul + env->rdif; r = 1 - env->rval; } env->t++; if (isnan(g)) { env->t = 0; r = NAN; } return r * v; } #ifdef LIBGLITCH_TEST static void libglitch_env_test() { libglitch_env_t env = {0}; x = 42; libglitch_bench("env()", N) { x = libglitch_env(&env, x, x, 0.01, 0.5, 0.2, 0.6); } } #endif // ====================================== // delay: simple delay line with feedback // ====================================== #define LIBGLITCH_MAX_DELAY_TIME 10 /* seconds */ #define LIBGLITCH_MIN_DELAY_BLOCK 8192 /* smallest delay buffer resize */ typedef struct libglitch_delay { float *buf; size_t n; int pos; } libglitch_delay_t; static float libglitch_delay(libglitch_delay_t *delay, float signal, float time, float level, float feedback) { if (feedback > 1.0f) { feedback = 1.0f; } if (feedback < 0.0f) { feedback = 0.0f; } if (time <= 0) { return signal; } if (time > LIBGLITCH_MAX_DELAY_TIME) { time = LIBGLITCH_MAX_DELAY_TIME; } size_t bufsz = (size_t)(time * libglitch_sample_rate); /* Expand buffer if needed */ if (delay->n < bufsz) { int sz = ((bufsz / LIBGLITCH_MIN_DELAY_BLOCK) + 1) * LIBGLITCH_MIN_DELAY_BLOCK; int n = delay->n; delay->n = sz; delay->buf = realloc(delay->buf, sz * sizeof(*delay->buf)); if (delay->buf == NULL) { delay->n = 0; return signal; } for (int i = n; i < sz; i++) { delay->buf[i] = 0; } } /* Get value delayed value from the buffer */ float out = 0; if (bufsz <= delay->n) { unsigned int i = (delay->pos + delay->n - bufsz) % delay->n; out = delay->buf[i] * level; } /* Write updated value to the buffer */ signal = (isnan(signal) ? 0 : signal); delay->buf[delay->pos] = delay->buf[delay->pos] * feedback + signal; delay->pos = (delay->pos + 1) % delay->n; return signal + out; } static void libglitch_delay_free(libglitch_delay_t *delay) { free(delay->buf); } #ifdef LIBGLITCH_TEST static void libglitch_delay_test() { libglitch_delay_t delay = {0}; x = 42; libglitch_bench("delay()", N) { x = libglitch_delay(&delay, x, 0.25, 0.5, 0.2); } libglitch_delay_free(&delay); } #endif // =============================== // pluck: Karplus-Strong algorithm // =============================== typedef struct libglitch_pluck { int init; /* FIXME: can we use sample != NULL instead? */ int t; float *sample; } libglitch_pluck_t; static float libglitch_pluck(libglitch_pluck_t *pluck, float freq, float decay, float (*fill)(void *context), void *context) { if (isnan(freq)) { pluck->init = 0; return NAN; } else if (freq == 0) { return 0; } else if (freq < 0) { freq = -freq; } int n = (int)(libglitch_sample_rate / freq); if (n == 0) { return 0; } if (pluck->init == 0) { pluck->sample = (float *)realloc(pluck->sample, sizeof(float) * n); for (int i = 0; i < n; i++) { if (fill != NULL) { pluck->sample[i] = fill(context); } else { pluck->sample[i] = (rand() * 2.0f / RAND_MAX) - 1.0f; } } pluck->init = 1; pluck->t = 0; } float x = pluck->sample[pluck->t % n]; float y = pluck->sample[(pluck->t + 1) % n]; pluck->t = (pluck->t + 1) % n; pluck->sample[pluck->t] = x * decay + y * (1 - decay); return x; } static void libglitch_pluck_free(libglitch_pluck_t *pluck) { free(pluck->sample); } #ifdef LIBGLITCH_TEST static void libglitch_pluck_test() { libglitch_pluck_t pluck = {0}; x = 42; libglitch_bench("pluck()", N) { x = libglitch_pluck(&pluck, 0.25, 0.5, NULL, NULL); } libglitch_pluck_free(&pluck); } #endif // ======================== // libglitch initialization // ======================== static void libglitch_init(int sample_rate, unsigned long long seed) { libglitch_sample_rate = sample_rate; libglitch_rand_init(seed); libglitch_byte_init(); libglitch_hz_init(); libglitch_osc_init(); } #ifdef LIBGLITCH_TEST static void libglitch_test() { libglitch_rand_test(); libglitch_byte_test(); libglitch_hz_test(); libglitch_osc_test(); libglitch_biquad_test(); libglitch_env_test(); libglitch_delay_test(); libglitch_pluck_test(); } #endif /* LIBGLITCH_TEST */ #endif /* LIBGLITCH_H */ ================================================ FILE: core/tr808.h ================================================ unsigned char tr808_bd_wav[] = { 0x52, 0x49, 0x46, 0x46, 0x8c, 0xac, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45, 0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e, 0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61, 0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61, 0x74, 0x61, 0x46, 0xac, 0x00, 0x00, 0xf0, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xe0, 0xff, 0xfb, 0xff, 0xce, 0xff, 0xfd, 0x00, 0xca, 0x04, 0x4e, 0x08, 0x80, 0x0b, 0x69, 0x0e, 0x1c, 0x11, 0xa2, 0x13, 0x06, 0x16, 0x4d, 0x18, 0x74, 0x1a, 0x88, 0x1c, 0x7b, 0x1e, 0x60, 0x20, 0x34, 0x22, 0xf4, 0x23, 0xa6, 0x25, 0x49, 0x27, 0xdc, 0x28, 0x64, 0x2a, 0xdd, 0x2b, 0x46, 0x2d, 0xa3, 0x2e, 0xf7, 0x2f, 0x3d, 0x31, 0x73, 0x32, 0xa0, 0x33, 0xc3, 0x34, 0xd6, 0x35, 0xe2, 0x36, 0xdf, 0x37, 0xd8, 0x38, 0xbf, 0x39, 0x9e, 0x3a, 0x70, 0x3b, 0x3e, 0x3c, 0x01, 0x3d, 0xb5, 0x3d, 0x62, 0x3e, 0x05, 0x3f, 0x9e, 0x3f, 0x31, 0x40, 0xb0, 0x40, 0x37, 0x41, 0x4e, 0x41, 0xbf, 0x40, 0x18, 0x40, 0x53, 0x3f, 0x81, 0x3e, 0xa6, 0x3d, 0xc4, 0x3c, 0xd6, 0x3b, 0xdf, 0x3a, 0xde, 0x39, 0xce, 0x38, 0xbc, 0x37, 0xa3, 0x36, 0x7e, 0x35, 0x53, 0x34, 0x20, 0x33, 0xe7, 0x31, 0xac, 0x30, 0x6c, 0x2f, 0x22, 0x2e, 0xdb, 0x2c, 0x8b, 0x2b, 0x39, 0x2a, 0xe4, 0x28, 0x8c, 0x27, 0x30, 0x26, 0xd2, 0x24, 0x73, 0x23, 0x10, 0x22, 0xab, 0x20, 0x40, 0x1f, 0xdc, 0x1d, 0x70, 0x1c, 0x02, 0x1b, 0x98, 0x19, 0x26, 0x18, 0xb9, 0x16, 0x46, 0x15, 0xd3, 0x13, 0x61, 0x12, 0xf0, 0x10, 0x7f, 0x0f, 0x09, 0x0e, 0x96, 0x0c, 0x20, 0x0b, 0xae, 0x09, 0x38, 0x08, 0xc3, 0x06, 0x53, 0x05, 0xdd, 0x03, 0x6f, 0x02, 0xfb, 0x00, 0x8a, 0xff, 0x1e, 0xfe, 0xad, 0xfc, 0x3c, 0xfb, 0xd1, 0xf9, 0x65, 0xf8, 0xfb, 0xf6, 0x93, 0xf5, 0x2e, 0xf4, 0xc9, 0xf2, 0x63, 0xf1, 0x01, 0xf0, 0xa6, 0xee, 0x47, 0xed, 0xef, 0xeb, 0x97, 0xea, 0x41, 0xe9, 0xed, 0xe7, 0x9f, 0xe6, 0x52, 0xe5, 0x05, 0xe4, 0xc1, 0xe2, 0x7d, 0xe1, 0x3c, 0xe0, 0xfe, 0xde, 0xc3, 0xdd, 0x8d, 0xdc, 0x59, 0xdb, 0x2c, 0xda, 0x01, 0xd9, 0xd9, 0xd7, 0xb5, 0xd6, 0x99, 0xd5, 0x7e, 0xd4, 0x64, 0xd3, 0x53, 0xd2, 0x44, 0xd1, 0x3d, 0xd0, 0x38, 0xcf, 0x37, 0xce, 0x3b, 0xcd, 0x44, 0xcc, 0x57, 0xcb, 0x67, 0xca, 0x82, 0xc9, 0x9f, 0xc8, 0xc1, 0xc7, 0xec, 0xc6, 0x18, 0xc6, 0x4b, 0xc5, 0x85, 0xc4, 0xc5, 0xc3, 0x07, 0xc3, 0x52, 0xc2, 0xa2, 0xc1, 0xf6, 0xc0, 0x50, 0xc0, 0xb2, 0xbf, 0x1a, 0xbf, 0x87, 0xbe, 0xfc, 0xbd, 0x75, 0xbd, 0xf4, 0xbc, 0x78, 0xbc, 0x03, 0xbc, 0x94, 0xbb, 0x2b, 0xbb, 0xcb, 0xba, 0x71, 0xba, 0x1a, 0xba, 0xcc, 0xb9, 0x81, 0xb9, 0x42, 0xb9, 0x06, 0xb9, 0xd0, 0xb8, 0xa3, 0xb8, 0x7d, 0xb8, 0x57, 0xb8, 0x3e, 0xb8, 0x29, 0xb8, 0x1b, 0xb8, 0x15, 0xb8, 0x0c, 0xb8, 0x1c, 0xb8, 0x1e, 0xb8, 0x35, 0xb8, 0x4c, 0xb8, 0x6a, 0xb8, 0x90, 0xb8, 0xbb, 0xb8, 0xee, 0xb8, 0x25, 0xb9, 0x60, 0xb9, 0xa8, 0xb9, 0xf3, 0xb9, 0x41, 0xba, 0x9a, 0xba, 0xfb, 0xba, 0x5b, 0xbb, 0xc7, 0xbb, 0x37, 0xbc, 0xa9, 0xbc, 0x29, 0xbd, 0xa7, 0xbd, 0x32, 0xbe, 0xbf, 0xbe, 0x50, 0xbf, 0xed, 0xbf, 0x8b, 0xc0, 0x32, 0xc1, 0xd9, 0xc1, 0x8a, 0xc2, 0x41, 0xc3, 0xfe, 0xc3, 0xbb, 0xc4, 0x83, 0xc5, 0x4d, 0xc6, 0x20, 0xc7, 0xf4, 0xc7, 0xd3, 0xc8, 0xaf, 0xc9, 0x9b, 0xca, 0x87, 0xcb, 0x78, 0xcc, 0x6c, 0xcd, 0x6b, 0xce, 0x6e, 0xcf, 0x77, 0xd0, 0x84, 0xd1, 0x99, 0xd2, 0xb5, 0xd3, 0xcf, 0xd4, 0xf6, 0xd5, 0x21, 0xd7, 0x50, 0xd8, 0x84, 0xd9, 0xae, 0xda, 0xd0, 0xdb, 0xf0, 0xdc, 0x05, 0xde, 0x1d, 0xdf, 0x2b, 0xe0, 0x34, 0xe1, 0x3b, 0xe2, 0x3d, 0xe3, 0x3c, 0xe4, 0x34, 0xe5, 0x2a, 0xe6, 0x1d, 0xe7, 0x10, 0xe8, 0xf7, 0xe8, 0xe1, 0xe9, 0xc7, 0xea, 0xa8, 0xeb, 0x8b, 0xec, 0x65, 0xed, 0x41, 0xee, 0x1b, 0xef, 0xf0, 0xef, 0xc2, 0xf0, 0x91, 0xf1, 0x60, 0xf2, 0x2f, 0xf3, 0xf8, 0xf3, 0xbe, 0xf4, 0x87, 0xf5, 0x4a, 0xf6, 0x0c, 0xf7, 0xce, 0xf7, 0x8d, 0xf8, 0x49, 0xf9, 0x08, 0xfa, 0xc1, 0xfa, 0x7a, 0xfb, 0x33, 0xfc, 0xe5, 0xfc, 0x9b, 0xfd, 0x4c, 0xfe, 0xfd, 0xfe, 0xab, 0xff, 0x59, 0x00, 0x0a, 0x01, 0xb5, 0x01, 0x5d, 0x02, 0x05, 0x03, 0xaf, 0x03, 0x53, 0x04, 0xfa, 0x04, 0xa2, 0x05, 0x42, 0x06, 0xe3, 0x06, 0x86, 0x07, 0x27, 0x08, 0xc6, 0x08, 0x65, 0x09, 0x00, 0x0a, 0x9e, 0x0a, 0x36, 0x0b, 0xd1, 0x0b, 0x68, 0x0c, 0x01, 0x0d, 0x97, 0x0d, 0x2d, 0x0e, 0xc0, 0x0e, 0x50, 0x0f, 0xe7, 0x0f, 0x76, 0x10, 0x06, 0x11, 0x96, 0x11, 0x25, 0x12, 0xb5, 0x12, 0x3f, 0x13, 0xcd, 0x13, 0x54, 0x14, 0xe0, 0x14, 0x69, 0x15, 0xed, 0x15, 0x79, 0x16, 0xfb, 0x16, 0x83, 0x17, 0x04, 0x18, 0x89, 0x18, 0x0a, 0x19, 0x8b, 0x19, 0x0a, 0x1a, 0x8a, 0x1a, 0x09, 0x1b, 0x82, 0x1b, 0x04, 0x1c, 0x7a, 0x1c, 0xfa, 0x1c, 0x6f, 0x1d, 0xeb, 0x1d, 0x5f, 0x1e, 0xd3, 0x1e, 0x4d, 0x1f, 0xc0, 0x1f, 0x33, 0x20, 0xa5, 0x20, 0x17, 0x21, 0x88, 0x21, 0xf8, 0x21, 0x64, 0x22, 0xd3, 0x22, 0x41, 0x23, 0xab, 0x23, 0x15, 0x24, 0x7e, 0x24, 0xe8, 0x24, 0x50, 0x25, 0xb9, 0x25, 0x1f, 0x26, 0x83, 0x26, 0xe4, 0x26, 0x49, 0x27, 0xa9, 0x27, 0x0a, 0x28, 0x6a, 0x28, 0xc7, 0x28, 0x29, 0x29, 0x81, 0x29, 0xe0, 0x29, 0x38, 0x2a, 0x98, 0x2a, 0xec, 0x2a, 0x46, 0x2b, 0x9b, 0x2b, 0xed, 0x2b, 0x47, 0x2c, 0x97, 0x2c, 0xf0, 0x2c, 0x3c, 0x2d, 0x8e, 0x2d, 0xde, 0x2d, 0x2a, 0x2e, 0x7c, 0x2e, 0xc6, 0x2e, 0x10, 0x2f, 0x5d, 0x2f, 0xa5, 0x2f, 0xec, 0x2f, 0x35, 0x30, 0x7a, 0x30, 0xc2, 0x30, 0x03, 0x31, 0x48, 0x31, 0x88, 0x31, 0xca, 0x31, 0x0b, 0x32, 0x48, 0x32, 0x89, 0x32, 0xc2, 0x32, 0xff, 0x32, 0x39, 0x33, 0x77, 0x33, 0xaa, 0x33, 0xe0, 0x33, 0x1d, 0x34, 0x50, 0x34, 0x84, 0x34, 0xb6, 0x34, 0xe8, 0x34, 0x1b, 0x35, 0x4e, 0x35, 0x7b, 0x35, 0xa7, 0x35, 0xd6, 0x35, 0xff, 0x35, 0x2c, 0x36, 0x56, 0x36, 0x7f, 0x36, 0xa7, 0x36, 0xca, 0x36, 0xf3, 0x36, 0x19, 0x37, 0x3b, 0x37, 0x5c, 0x37, 0x7f, 0x37, 0xa0, 0x37, 0xbc, 0x37, 0xdd, 0x37, 0xfb, 0x37, 0x15, 0x38, 0x31, 0x38, 0x4a, 0x38, 0x63, 0x38, 0x7c, 0x38, 0x93, 0x38, 0xa5, 0x38, 0xbe, 0x38, 0xd0, 0x38, 0xe4, 0x38, 0xf4, 0x38, 0x07, 0x39, 0x17, 0x39, 0x22, 0x39, 0x30, 0x39, 0x3c, 0x39, 0x49, 0x39, 0x53, 0x39, 0x5a, 0x39, 0x64, 0x39, 0x6d, 0x39, 0x6e, 0x39, 0x78, 0x39, 0x7b, 0x39, 0x7e, 0x39, 0x80, 0x39, 0x80, 0x39, 0x80, 0x39, 0x80, 0x39, 0x7e, 0x39, 0x7b, 0x39, 0x7a, 0x39, 0x6e, 0x39, 0x6b, 0x39, 0x65, 0x39, 0x5d, 0x39, 0x56, 0x39, 0x47, 0x39, 0x40, 0x39, 0x33, 0x39, 0x25, 0x39, 0x1a, 0x39, 0x07, 0x39, 0xfa, 0x38, 0xe7, 0x38, 0xd5, 0x38, 0xc0, 0x38, 0xb1, 0x38, 0x9c, 0x38, 0x81, 0x38, 0x6e, 0x38, 0x57, 0x38, 0x3d, 0x38, 0x24, 0x38, 0x09, 0x38, 0xee, 0x37, 0xcd, 0x37, 0xb3, 0x37, 0x94, 0x37, 0x76, 0x37, 0x55, 0x37, 0x34, 0x37, 0x13, 0x37, 0xeb, 0x36, 0xcb, 0x36, 0xa4, 0x36, 0x7f, 0x36, 0x59, 0x36, 0x33, 0x36, 0x07, 0x36, 0xde, 0x35, 0xb4, 0x35, 0x86, 0x35, 0x5d, 0x35, 0x2c, 0x35, 0xfd, 0x34, 0xd0, 0x34, 0x9b, 0x34, 0x6c, 0x34, 0x38, 0x34, 0x07, 0x34, 0xd2, 0x33, 0x9b, 0x33, 0x64, 0x33, 0x2b, 0x33, 0xf4, 0x32, 0xb8, 0x32, 0x7f, 0x32, 0x3f, 0x32, 0x05, 0x32, 0xc4, 0x31, 0x85, 0x31, 0x45, 0x31, 0x00, 0x31, 0xbf, 0x30, 0x7a, 0x30, 0x33, 0x30, 0xf0, 0x2f, 0xa1, 0x2f, 0x5a, 0x2f, 0x0e, 0x2f, 0xc0, 0x2e, 0x74, 0x2e, 0x22, 0x2e, 0xd5, 0x2d, 0x82, 0x2d, 0x2e, 0x2d, 0xd9, 0x2c, 0x83, 0x2c, 0x2d, 0x2c, 0xd3, 0x2b, 0x77, 0x2b, 0x1f, 0x2b, 0xbf, 0x2a, 0x62, 0x2a, 0x02, 0x2a, 0x9f, 0x29, 0x3f, 0x29, 0xd9, 0x28, 0x74, 0x28, 0x07, 0x28, 0xa0, 0x27, 0x38, 0x27, 0xcc, 0x26, 0x5f, 0x26, 0xed, 0x25, 0x7f, 0x25, 0x0c, 0x25, 0x9b, 0x24, 0x28, 0x24, 0xb2, 0x23, 0x3c, 0x23, 0xc0, 0x22, 0x49, 0x22, 0xcd, 0x21, 0x51, 0x21, 0xd0, 0x20, 0x52, 0x20, 0xd2, 0x1f, 0x4d, 0x1f, 0xcc, 0x1e, 0x44, 0x1e, 0xbf, 0x1d, 0x36, 0x1d, 0xb1, 0x1c, 0x24, 0x1c, 0x98, 0x1b, 0x0e, 0x1b, 0x7f, 0x1a, 0xf1, 0x19, 0x5f, 0x19, 0xcf, 0x18, 0x3b, 0x18, 0xa8, 0x17, 0x11, 0x17, 0x7c, 0x16, 0xe6, 0x15, 0x4b, 0x15, 0xb1, 0x14, 0x15, 0x14, 0x7c, 0x13, 0xde, 0x12, 0x3f, 0x12, 0xa2, 0x11, 0x00, 0x11, 0x5f, 0x10, 0xbf, 0x0f, 0x1a, 0x0f, 0x7c, 0x0e, 0xd2, 0x0d, 0x2e, 0x0d, 0x89, 0x0c, 0xde, 0x0b, 0x39, 0x0b, 0x91, 0x0a, 0xe7, 0x09, 0x3e, 0x09, 0x94, 0x08, 0xe8, 0x07, 0x3e, 0x07, 0x8c, 0x06, 0xe2, 0x05, 0x33, 0x05, 0x84, 0x04, 0xd5, 0x03, 0x23, 0x03, 0x75, 0x02, 0xc1, 0x01, 0x12, 0x01, 0x61, 0x00, 0xb1, 0xff, 0xfd, 0xfe, 0x4c, 0xfe, 0x97, 0xfd, 0xe3, 0xfc, 0x2f, 0xfc, 0x7c, 0xfb, 0xc9, 0xfa, 0x12, 0xfa, 0x61, 0xf9, 0xa9, 0xf8, 0xf1, 0xf7, 0x41, 0xf7, 0x89, 0xf6, 0xd1, 0xf5, 0x1f, 0xf5, 0x6a, 0xf4, 0xb2, 0xf3, 0xfc, 0xf2, 0x46, 0xf2, 0x8f, 0xf1, 0xda, 0xf0, 0x27, 0xf0, 0x71, 0xef, 0xbe, 0xee, 0x0a, 0xee, 0x53, 0xed, 0x9f, 0xec, 0xe8, 0xeb, 0x36, 0xeb, 0x82, 0xea, 0xcf, 0xe9, 0x1f, 0xe9, 0x6b, 0xe8, 0xb8, 0xe7, 0x05, 0xe7, 0x53, 0xe6, 0xa5, 0xe5, 0xf5, 0xe4, 0x44, 0xe4, 0x96, 0xe3, 0xe7, 0xe2, 0x3a, 0xe2, 0x8d, 0xe1, 0xe1, 0xe0, 0x35, 0xe0, 0x85, 0xdf, 0xdb, 0xde, 0x35, 0xde, 0x87, 0xdd, 0xe2, 0xdc, 0x3a, 0xdc, 0x95, 0xdb, 0xec, 0xda, 0x48, 0xda, 0xa2, 0xd9, 0xfe, 0xd8, 0x5f, 0xd8, 0xbb, 0xd7, 0x1f, 0xd7, 0x7c, 0xd6, 0xe0, 0xd5, 0x41, 0xd5, 0xa4, 0xd4, 0x09, 0xd4, 0x6f, 0xd3, 0xd8, 0xd2, 0x3f, 0xd2, 0xa5, 0xd1, 0x13, 0xd1, 0x7c, 0xd0, 0xeb, 0xcf, 0x57, 0xcf, 0xc6, 0xce, 0x37, 0xce, 0xab, 0xcd, 0x1d, 0xcd, 0x8f, 0xcc, 0x07, 0xcc, 0x81, 0xcb, 0xfb, 0xca, 0x76, 0xca, 0xec, 0xc9, 0x6a, 0xc9, 0xe7, 0xc8, 0x66, 0xc8, 0xea, 0xc7, 0x6a, 0xc7, 0xef, 0xc6, 0x78, 0xc6, 0xff, 0xc5, 0x87, 0xc5, 0x12, 0xc5, 0x9d, 0xc4, 0x2a, 0xc4, 0xba, 0xc3, 0x4a, 0xc3, 0xe1, 0xc2, 0x73, 0xc2, 0x08, 0xc2, 0xa2, 0xc1, 0x3a, 0xc1, 0xd4, 0xc0, 0x70, 0xc0, 0x12, 0xc0, 0xaf, 0xbf, 0x51, 0xbf, 0xf7, 0xbe, 0x9d, 0xbe, 0x43, 0xbe, 0xef, 0xbd, 0x9a, 0xbd, 0x44, 0xbd, 0xf4, 0xbc, 0xa3, 0xbc, 0x56, 0xbc, 0x0b, 0xbc, 0xc1, 0xbb, 0x79, 0xbb, 0x34, 0xbb, 0xed, 0xba, 0xaa, 0xba, 0x69, 0xba, 0x2d, 0xba, 0xee, 0xb9, 0xb5, 0xb9, 0x7b, 0xb9, 0x42, 0xb9, 0x0e, 0xb9, 0xd9, 0xb8, 0xaa, 0xb8, 0x7a, 0xb8, 0x4f, 0xb8, 0x22, 0xb8, 0xf8, 0xb7, 0xd1, 0xb7, 0xad, 0xb7, 0x86, 0xb7, 0x68, 0xb7, 0x43, 0xb7, 0x2c, 0xb7, 0x0b, 0xb7, 0xf1, 0xb6, 0xdb, 0xb6, 0xc5, 0xb6, 0xb1, 0xb6, 0x9c, 0xb6, 0x8f, 0xb6, 0x7e, 0xb6, 0x72, 0xb6, 0x69, 0xb6, 0x5c, 0xb6, 0x56, 0xb6, 0x53, 0xb6, 0x4e, 0xb6, 0x53, 0xb6, 0x51, 0xb6, 0x4d, 0xb6, 0x5a, 0xb6, 0x5c, 0xb6, 0x64, 0xb6, 0x73, 0xb6, 0x79, 0xb6, 0x8a, 0xb6, 0x98, 0xb6, 0xab, 0xb6, 0xbd, 0xb6, 0xcf, 0xb6, 0xe8, 0xb6, 0x01, 0xb7, 0x19, 0xb7, 0x33, 0xb7, 0x53, 0xb7, 0x6e, 0xb7, 0x91, 0xb7, 0xb3, 0xb7, 0xd6, 0xb7, 0xf9, 0xb7, 0x1f, 0xb8, 0x4b, 0xb8, 0x76, 0xb8, 0x9d, 0xb8, 0xc9, 0xb8, 0xfa, 0xb8, 0x28, 0xb9, 0x5a, 0xb9, 0x8a, 0xb9, 0xc0, 0xb9, 0xf4, 0xb9, 0x27, 0xba, 0x63, 0xba, 0x9b, 0xba, 0xd0, 0xba, 0x0f, 0xbb, 0x49, 0xbb, 0x85, 0xbb, 0xc4, 0xbb, 0x02, 0xbc, 0x44, 0xbc, 0x86, 0xbc, 0xc5, 0xbc, 0x0a, 0xbd, 0x50, 0xbd, 0x95, 0xbd, 0xd9, 0xbd, 0x23, 0xbe, 0x68, 0xbe, 0xb0, 0xbe, 0xfd, 0xbe, 0x44, 0xbf, 0x8d, 0xbf, 0xdb, 0xbf, 0x26, 0xc0, 0x74, 0xc0, 0xc2, 0xc0, 0x14, 0xc1, 0x64, 0xc1, 0xb2, 0xc1, 0x06, 0xc2, 0x57, 0xc2, 0xa8, 0xc2, 0xff, 0xc2, 0x50, 0xc3, 0xa3, 0xc3, 0xfb, 0xc3, 0x4f, 0xc4, 0xa6, 0xc4, 0xfe, 0xc4, 0x52, 0xc5, 0xae, 0xc5, 0x04, 0xc6, 0x60, 0xc6, 0xb9, 0xc6, 0x14, 0xc7, 0x6d, 0xc7, 0xcc, 0xc7, 0x26, 0xc8, 0x81, 0xc8, 0xdf, 0xc8, 0x3e, 0xc9, 0x9c, 0xc9, 0xfb, 0xc9, 0x59, 0xca, 0xb8, 0xca, 0x19, 0xcb, 0x79, 0xcb, 0xd9, 0xcb, 0x3b, 0xcc, 0x9e, 0xcc, 0xfc, 0xcc, 0x61, 0xcd, 0xc4, 0xcd, 0x29, 0xce, 0x89, 0xce, 0xef, 0xce, 0x53, 0xcf, 0xba, 0xcf, 0x1d, 0xd0, 0x82, 0xd0, 0xe8, 0xd0, 0x4e, 0xd1, 0xb7, 0xd1, 0x1d, 0xd2, 0x86, 0xd2, 0xeb, 0xd2, 0x53, 0xd3, 0xbf, 0xd3, 0x26, 0xd4, 0x8c, 0xd4, 0xf7, 0xd4, 0x61, 0xd5, 0xcb, 0xd5, 0x3a, 0xd6, 0x9e, 0xd6, 0x09, 0xd7, 0x78, 0xd7, 0xdf, 0xd7, 0x4c, 0xd8, 0xb7, 0xd8, 0x25, 0xd9, 0x90, 0xd9, 0xfd, 0xd9, 0x69, 0xda, 0xd5, 0xda, 0x43, 0xdb, 0xb0, 0xdb, 0x1d, 0xdc, 0x8a, 0xdc, 0xfa, 0xdc, 0x66, 0xdd, 0xd6, 0xdd, 0x44, 0xde, 0xb4, 0xde, 0x24, 0xdf, 0x92, 0xdf, 0x01, 0xe0, 0x6f, 0xe0, 0xdf, 0xe0, 0x50, 0xe1, 0xbf, 0xe1, 0x2e, 0xe2, 0xa0, 0xe2, 0x0d, 0xe3, 0x81, 0xe3, 0xee, 0xe3, 0x5f, 0xe4, 0xcf, 0xe4, 0x42, 0xe5, 0xb1, 0xe5, 0x23, 0xe6, 0x92, 0xe6, 0x02, 0xe7, 0x76, 0xe7, 0xe3, 0xe7, 0x58, 0xe8, 0xc7, 0xe8, 0x3c, 0xe9, 0xae, 0xe9, 0x20, 0xea, 0x8f, 0xea, 0x01, 0xeb, 0x73, 0xeb, 0xe4, 0xeb, 0x56, 0xec, 0xc6, 0xec, 0x38, 0xed, 0xa7, 0xed, 0x1d, 0xee, 0x8b, 0xee, 0x00, 0xef, 0x6f, 0xef, 0xe1, 0xef, 0x57, 0xf0, 0xc2, 0xf0, 0x37, 0xf1, 0xa9, 0xf1, 0x19, 0xf2, 0x89, 0xf2, 0xfb, 0xf2, 0x6b, 0xf3, 0xdc, 0xf3, 0x4c, 0xf4, 0xbb, 0xf4, 0x2e, 0xf5, 0x9c, 0xf5, 0x11, 0xf6, 0x80, 0xf6, 0xf1, 0xf6, 0x5f, 0xf7, 0xd0, 0xf7, 0x41, 0xf8, 0xae, 0xf8, 0x21, 0xf9, 0x8e, 0xf9, 0x04, 0xfa, 0x6d, 0xfa, 0xde, 0xfa, 0x4d, 0xfb, 0xba, 0xfb, 0x2d, 0xfc, 0x97, 0xfc, 0x07, 0xfd, 0x75, 0xfd, 0xe1, 0xfd, 0x4e, 0xfe, 0xbe, 0xfe, 0x2c, 0xff, 0x99, 0xff, 0x05, 0x00, 0x6e, 0x00, 0xdf, 0x00, 0x49, 0x01, 0xb7, 0x01, 0x21, 0x02, 0x8d, 0x02, 0xf9, 0x02, 0x63, 0x03, 0xcf, 0x03, 0x3a, 0x04, 0xa0, 0x04, 0x0b, 0x05, 0x77, 0x05, 0xdf, 0x05, 0x47, 0x06, 0xaf, 0x06, 0x17, 0x07, 0x7f, 0x07, 0xe7, 0x07, 0x50, 0x08, 0xb7, 0x08, 0x1e, 0x09, 0x88, 0x09, 0xe8, 0x09, 0x51, 0x0a, 0xb5, 0x0a, 0x1e, 0x0b, 0x81, 0x0b, 0xe7, 0x0b, 0x49, 0x0c, 0xae, 0x0c, 0x10, 0x0d, 0x76, 0x0d, 0xd7, 0x0d, 0x38, 0x0e, 0x9f, 0x0e, 0xfc, 0x0e, 0x5f, 0x0f, 0xbf, 0x0f, 0x1f, 0x10, 0x82, 0x10, 0xe2, 0x10, 0x3f, 0x11, 0x9f, 0x11, 0xff, 0x11, 0x5c, 0x12, 0xba, 0x12, 0x16, 0x13, 0x70, 0x13, 0xcf, 0x13, 0x2b, 0x14, 0x84, 0x14, 0xe1, 0x14, 0x3e, 0x15, 0x92, 0x15, 0xef, 0x15, 0x4a, 0x16, 0xa2, 0x16, 0xfd, 0x16, 0x53, 0x17, 0xab, 0x17, 0xff, 0x17, 0x59, 0x18, 0xad, 0x18, 0x01, 0x19, 0x55, 0x19, 0xad, 0x19, 0xfe, 0x19, 0x54, 0x1a, 0xa5, 0x1a, 0xfa, 0x1a, 0x48, 0x1b, 0x9b, 0x1b, 0xec, 0x1b, 0x3a, 0x1c, 0x8c, 0x1c, 0xdc, 0x1c, 0x2a, 0x1d, 0x78, 0x1d, 0xc3, 0x1d, 0x11, 0x1e, 0x5f, 0x1e, 0xaa, 0x1e, 0xf5, 0x1e, 0x42, 0x1f, 0x8c, 0x1f, 0xd2, 0x1f, 0x1f, 0x20, 0x66, 0x20, 0xb1, 0x20, 0xf3, 0x20, 0x3b, 0x21, 0x82, 0x21, 0xcd, 0x21, 0x11, 0x22, 0x55, 0x22, 0x98, 0x22, 0xda, 0x22, 0x1f, 0x23, 0x5d, 0x23, 0xa1, 0x23, 0xe3, 0x23, 0x22, 0x24, 0x62, 0x24, 0xa3, 0x24, 0xe2, 0x24, 0x1f, 0x25, 0x5c, 0x25, 0x9a, 0x25, 0xd7, 0x25, 0x13, 0x26, 0x4b, 0x26, 0x86, 0x26, 0xc0, 0x26, 0xf9, 0x26, 0x33, 0x27, 0x68, 0x27, 0xa0, 0x27, 0xd8, 0x27, 0x0d, 0x28, 0x40, 0x28, 0x77, 0x28, 0xac, 0x28, 0xdf, 0x28, 0x12, 0x29, 0x44, 0x29, 0x75, 0x29, 0xa5, 0x29, 0xd6, 0x29, 0x05, 0x2a, 0x38, 0x2a, 0x62, 0x2a, 0x93, 0x2a, 0xbd, 0x2a, 0xe8, 0x2a, 0x13, 0x2b, 0x3e, 0x2b, 0x6c, 0x2b, 0x92, 0x2b, 0xbc, 0x2b, 0xe4, 0x2b, 0x0b, 0x2c, 0x2d, 0x2c, 0x58, 0x2c, 0x7c, 0x2c, 0x9f, 0x2c, 0xc5, 0x2c, 0xed, 0x2c, 0x0d, 0x2d, 0x2e, 0x2d, 0x51, 0x2d, 0x6e, 0x2d, 0x92, 0x2d, 0xb0, 0x2d, 0xce, 0x2d, 0xec, 0x2d, 0x0d, 0x2e, 0x27, 0x2e, 0x43, 0x2e, 0x60, 0x2e, 0x7a, 0x2e, 0x98, 0x2e, 0xae, 0x2e, 0xc6, 0x2e, 0xdf, 0x2e, 0xf5, 0x2e, 0x0c, 0x2f, 0x24, 0x2f, 0x39, 0x2f, 0x4a, 0x2f, 0x62, 0x2f, 0x73, 0x2f, 0x87, 0x2f, 0x96, 0x2f, 0xa8, 0x2f, 0xba, 0x2f, 0xc8, 0x2f, 0xd9, 0x2f, 0xe4, 0x2f, 0xf4, 0x2f, 0xff, 0x2f, 0x0d, 0x30, 0x17, 0x30, 0x25, 0x30, 0x2e, 0x30, 0x38, 0x30, 0x3f, 0x30, 0x49, 0x30, 0x50, 0x30, 0x56, 0x30, 0x5f, 0x30, 0x61, 0x30, 0x67, 0x30, 0x68, 0x30, 0x71, 0x30, 0x71, 0x30, 0x74, 0x30, 0x74, 0x30, 0x75, 0x30, 0x75, 0x30, 0x74, 0x30, 0x74, 0x30, 0x72, 0x30, 0x6e, 0x30, 0x67, 0x30, 0x67, 0x30, 0x61, 0x30, 0x5f, 0x30, 0x59, 0x30, 0x51, 0x30, 0x4a, 0x30, 0x40, 0x30, 0x39, 0x30, 0x2c, 0x30, 0x25, 0x30, 0x1e, 0x30, 0x0d, 0x30, 0x01, 0x30, 0xf7, 0x2f, 0xe7, 0x2f, 0xdc, 0x2f, 0xcb, 0x2f, 0xbe, 0x2f, 0xae, 0x2f, 0x9f, 0x2f, 0x8a, 0x2f, 0x7b, 0x2f, 0x68, 0x2f, 0x52, 0x2f, 0x3f, 0x2f, 0x2c, 0x2f, 0x18, 0x2f, 0xfe, 0x2e, 0xed, 0x2e, 0xd4, 0x2e, 0xbf, 0x2e, 0xa5, 0x2e, 0x8d, 0x2e, 0x73, 0x2e, 0x59, 0x2e, 0x3f, 0x2e, 0x24, 0x2e, 0x07, 0x2e, 0xe8, 0x2d, 0xce, 0x2d, 0xb0, 0x2d, 0x93, 0x2d, 0x74, 0x2d, 0x56, 0x2d, 0x35, 0x2d, 0x12, 0x2d, 0xf1, 0x2c, 0xd0, 0x2c, 0xad, 0x2c, 0x8d, 0x2c, 0x65, 0x2c, 0x44, 0x2c, 0x1f, 0x2c, 0xfa, 0x2b, 0xd3, 0x2b, 0xae, 0x2b, 0x87, 0x2b, 0x5f, 0x2b, 0x38, 0x2b, 0x0a, 0x2b, 0xe2, 0x2a, 0xbc, 0x2a, 0x90, 0x2a, 0x67, 0x2a, 0x3b, 0x2a, 0x0e, 0x2a, 0xe3, 0x29, 0xb7, 0x29, 0x86, 0x29, 0x5e, 0x29, 0x2c, 0x29, 0xfa, 0x28, 0xcc, 0x28, 0x9d, 0x28, 0x6d, 0x28, 0x3b, 0x28, 0x09, 0x28, 0xd8, 0x27, 0xa1, 0x27, 0x71, 0x27, 0x3e, 0x27, 0x05, 0x27, 0xd5, 0x26, 0x9d, 0x26, 0x68, 0x26, 0x33, 0x26, 0xf8, 0x25, 0xc4, 0x25, 0x8a, 0x25, 0x56, 0x25, 0x1a, 0x25, 0xe2, 0x24, 0xa9, 0x24, 0x6d, 0x24, 0x35, 0x24, 0xfa, 0x23, 0xbd, 0x23, 0x81, 0x23, 0x44, 0x23, 0x05, 0x23, 0xc7, 0x22, 0x8a, 0x22, 0x49, 0x22, 0x0a, 0x22, 0xca, 0x21, 0x8e, 0x21, 0x4a, 0x21, 0x08, 0x21, 0xcb, 0x20, 0x84, 0x20, 0x44, 0x20, 0xff, 0x1f, 0xbc, 0x1f, 0x7a, 0x1f, 0x34, 0x1f, 0xed, 0x1e, 0xa8, 0x1e, 0x64, 0x1e, 0x1b, 0x1e, 0xd5, 0x1d, 0x8e, 0x1d, 0x42, 0x1d, 0xfd, 0x1c, 0xb2, 0x1c, 0x66, 0x1c, 0x1d, 0x1c, 0xd1, 0x1b, 0x83, 0x1b, 0x39, 0x1b, 0xed, 0x1a, 0x9f, 0x1a, 0x4c, 0x1a, 0xff, 0x19, 0xaf, 0x19, 0x60, 0x19, 0x10, 0x19, 0xbf, 0x18, 0x6c, 0x18, 0x1a, 0x18, 0xc9, 0x17, 0x71, 0x17, 0x20, 0x17, 0xcb, 0x16, 0x73, 0x16, 0x1c, 0x16, 0xc9, 0x15, 0x71, 0x15, 0x18, 0x15, 0xc3, 0x14, 0x69, 0x14, 0x11, 0x14, 0xb5, 0x13, 0x59, 0x13, 0xff, 0x12, 0xa3, 0x12, 0x46, 0x12, 0xeb, 0x11, 0x8d, 0x11, 0x2f, 0x11, 0xd2, 0x10, 0x72, 0x10, 0x10, 0x10, 0xb4, 0x0f, 0x52, 0x0f, 0xf0, 0x0e, 0x8e, 0x0e, 0x2d, 0x0e, 0xc9, 0x0d, 0x67, 0x0d, 0x05, 0x0d, 0xa0, 0x0c, 0x3f, 0x0c, 0xd7, 0x0b, 0x72, 0x0b, 0x0d, 0x0b, 0xa6, 0x0a, 0x40, 0x0a, 0xda, 0x09, 0x70, 0x09, 0x0a, 0x09, 0xa2, 0x08, 0x38, 0x08, 0xcf, 0x07, 0x67, 0x07, 0xfb, 0x06, 0x93, 0x06, 0x27, 0x06, 0xbc, 0x05, 0x54, 0x05, 0xe4, 0x04, 0x7b, 0x04, 0x10, 0x04, 0xa3, 0x03, 0x39, 0x03, 0xcb, 0x02, 0x5d, 0x02, 0xf0, 0x01, 0x85, 0x01, 0x18, 0x01, 0xa9, 0x00, 0x3b, 0x00, 0xd1, 0xff, 0x60, 0xff, 0xf3, 0xfe, 0x82, 0xfe, 0x16, 0xfe, 0xa5, 0xfd, 0x3d, 0xfd, 0xcb, 0xfc, 0x5b, 0xfc, 0xf0, 0xfb, 0x7e, 0xfb, 0x0e, 0xfb, 0xa1, 0xfa, 0x34, 0xfa, 0xc5, 0xf9, 0x56, 0xf9, 0xe8, 0xf8, 0x79, 0xf8, 0x09, 0xf8, 0x9a, 0xf7, 0x2f, 0xf7, 0xbf, 0xf6, 0x51, 0xf6, 0xe4, 0xf5, 0x74, 0xf5, 0x09, 0xf5, 0x99, 0xf4, 0x2e, 0xf4, 0xc0, 0xf3, 0x52, 0xf3, 0xe7, 0xf2, 0x7a, 0xf2, 0x10, 0xf2, 0xa2, 0xf1, 0x38, 0xf1, 0xce, 0xf0, 0x61, 0xf0, 0xf6, 0xef, 0x8e, 0xef, 0x23, 0xef, 0xbb, 0xee, 0x50, 0xee, 0xe5, 0xed, 0x80, 0xed, 0x1a, 0xed, 0xaf, 0xec, 0x48, 0xec, 0xe0, 0xeb, 0x7c, 0xeb, 0x15, 0xeb, 0xb0, 0xea, 0x4e, 0xea, 0xe7, 0xe9, 0x86, 0xe9, 0x21, 0xe9, 0xbf, 0xe8, 0x5e, 0xe8, 0xfb, 0xe7, 0x98, 0xe7, 0x3b, 0xe7, 0xd8, 0xe6, 0x7b, 0xe6, 0x1e, 0xe6, 0xc1, 0xe5, 0x63, 0xe5, 0x04, 0xe5, 0xad, 0xe4, 0x52, 0xe4, 0xf3, 0xe3, 0x9d, 0xe3, 0x44, 0xe3, 0xeb, 0xe2, 0x91, 0xe2, 0x3d, 0xe2, 0xe6, 0xe1, 0x8f, 0xe1, 0x3e, 0xe1, 0xe7, 0xe0, 0x96, 0xe0, 0x44, 0xe0, 0xf2, 0xdf, 0xa2, 0xdf, 0x52, 0xdf, 0x03, 0xdf, 0xb3, 0xde, 0x68, 0xde, 0x1b, 0xde, 0xcf, 0xdd, 0x86, 0xdd, 0x3c, 0xdd, 0xf2, 0xdc, 0xac, 0xdc, 0x64, 0xdc, 0x20, 0xdc, 0xdb, 0xdb, 0x95, 0xdb, 0x53, 0xdb, 0x10, 0xdb, 0xce, 0xda, 0x8d, 0xda, 0x4e, 0xda, 0x12, 0xda, 0xd3, 0xd9, 0x97, 0xd9, 0x5e, 0xd9, 0x21, 0xd9, 0xe8, 0xd8, 0xaf, 0xd8, 0x7a, 0xd8, 0x41, 0xd8, 0x0a, 0xd8, 0xd9, 0xd7, 0xa4, 0xd7, 0x73, 0xd7, 0x40, 0xd7, 0x0f, 0xd7, 0xe1, 0xd6, 0xaf, 0xd6, 0x85, 0xd6, 0x58, 0xd6, 0x2e, 0xd6, 0x03, 0xd6, 0xda, 0xd5, 0xb4, 0xd5, 0x8e, 0xd5, 0x68, 0xd5, 0x41, 0xd5, 0x20, 0xd5, 0xfc, 0xd4, 0xd9, 0xd4, 0xbb, 0xd4, 0x9a, 0xd4, 0x7e, 0xd4, 0x5e, 0xd4, 0x42, 0xd4, 0x23, 0xd4, 0x0c, 0xd4, 0xf5, 0xd3, 0xdc, 0xd3, 0xc6, 0xd3, 0xae, 0xd3, 0x9a, 0xd3, 0x84, 0xd3, 0x76, 0xd3, 0x61, 0xd3, 0x52, 0xd3, 0x3d, 0xd3, 0x30, 0xd3, 0x21, 0xd3, 0x14, 0xd3, 0x09, 0xd3, 0xff, 0xd2, 0xf3, 0xd2, 0xeb, 0xd2, 0xe2, 0xd2, 0xdd, 0xd2, 0xd8, 0xd2, 0xce, 0xd2, 0xcb, 0xd2, 0xc8, 0xd2, 0xc7, 0xd2, 0xc5, 0xd2, 0xc4, 0xd2, 0xc5, 0xd2, 0xc4, 0xd2, 0xc7, 0xd2, 0xca, 0xd2, 0xd0, 0xd2, 0xd0, 0xd2, 0xd8, 0xd2, 0xdd, 0xd2, 0xe5, 0xd2, 0xee, 0xd2, 0xf3, 0xd2, 0xfe, 0xd2, 0x09, 0xd3, 0x0f, 0xd3, 0x20, 0xd3, 0x28, 0xd3, 0x37, 0xd3, 0x46, 0xd3, 0x4f, 0xd3, 0x66, 0xd3, 0x70, 0xd3, 0x82, 0xd3, 0x98, 0xd3, 0xa5, 0xd3, 0xb9, 0xd3, 0xcf, 0xd3, 0xe1, 0xd3, 0xf5, 0xd3, 0x0b, 0xd4, 0x21, 0xd4, 0x37, 0xd4, 0x50, 0xd4, 0x66, 0xd4, 0x81, 0xd4, 0x97, 0xd4, 0xb0, 0xd4, 0xcc, 0xd4, 0xe4, 0xd4, 0x00, 0xd5, 0x1d, 0xd5, 0x39, 0xd5, 0x57, 0xd5, 0x75, 0xd5, 0x8f, 0xd5, 0xaf, 0xd5, 0xd0, 0xd5, 0xef, 0xd5, 0x0d, 0xd6, 0x2e, 0xd6, 0x4f, 0xd6, 0x73, 0xd6, 0x97, 0xd6, 0xb8, 0xd6, 0xdd, 0xd6, 0x00, 0xd7, 0x21, 0xd7, 0x47, 0xd7, 0x6b, 0xd7, 0x93, 0xd7, 0xb7, 0xd7, 0xe1, 0xd7, 0x05, 0xd8, 0x2c, 0xd8, 0x54, 0xd8, 0x7e, 0xd8, 0xa6, 0xd8, 0xd0, 0xd8, 0xf9, 0xd8, 0x20, 0xd9, 0x4f, 0xd9, 0x7a, 0xd9, 0xa5, 0xd9, 0xcf, 0xd9, 0xfd, 0xd9, 0x29, 0xda, 0x57, 0xda, 0x84, 0xda, 0xb0, 0xda, 0xe1, 0xda, 0x10, 0xdb, 0x3c, 0xdb, 0x72, 0xdb, 0x9f, 0xdb, 0xce, 0xdb, 0xff, 0xdb, 0x30, 0xdc, 0x61, 0xdc, 0x94, 0xdc, 0xc7, 0xdc, 0xfa, 0xdc, 0x2a, 0xdd, 0x60, 0xdd, 0x93, 0xdd, 0xc6, 0xdd, 0xfc, 0xdd, 0x2e, 0xde, 0x65, 0xde, 0x99, 0xde, 0xd0, 0xde, 0x04, 0xdf, 0x40, 0xdf, 0x74, 0xdf, 0xae, 0xdf, 0xe0, 0xdf, 0x1b, 0xe0, 0x51, 0xe0, 0x8d, 0xe0, 0xc3, 0xe0, 0xff, 0xe0, 0x35, 0xe1, 0x6f, 0xe1, 0xab, 0xe1, 0xe1, 0xe1, 0x21, 0xe2, 0x5b, 0xe2, 0x94, 0xe2, 0xd1, 0xe2, 0x0f, 0xe3, 0x47, 0xe3, 0x84, 0xe3, 0xc2, 0xe3, 0xff, 0xe3, 0x3e, 0xe4, 0x7a, 0xe4, 0xb5, 0xe4, 0xf4, 0xe4, 0x33, 0xe5, 0x70, 0xe5, 0xb2, 0xe5, 0xec, 0xe5, 0x2e, 0xe6, 0x6f, 0xe6, 0xac, 0xe6, 0xed, 0xe6, 0x2d, 0xe7, 0x6e, 0xe7, 0xb0, 0xe7, 0xf0, 0xe7, 0x2e, 0xe8, 0x71, 0xe8, 0xb2, 0xe8, 0xf1, 0xe8, 0x36, 0xe9, 0x7b, 0xe9, 0xbb, 0xe9, 0xfd, 0xe9, 0x3e, 0xea, 0x82, 0xea, 0xc4, 0xea, 0x06, 0xeb, 0x4c, 0xeb, 0x91, 0xeb, 0xd3, 0xeb, 0x17, 0xec, 0x5b, 0xec, 0x9d, 0xec, 0xe1, 0xec, 0x25, 0xed, 0x6c, 0xed, 0xb0, 0xed, 0xf5, 0xed, 0x3a, 0xee, 0x80, 0xee, 0xc3, 0xee, 0x08, 0xef, 0x51, 0xef, 0x98, 0xef, 0xdc, 0xef, 0x20, 0xf0, 0x68, 0xf0, 0xac, 0xf0, 0xf4, 0xf0, 0x3a, 0xf1, 0x80, 0xf1, 0xc8, 0xf1, 0x0f, 0xf2, 0x53, 0xf2, 0x9b, 0xf2, 0xe4, 0xf2, 0x29, 0xf3, 0x71, 0xf3, 0xb9, 0xf3, 0xfe, 0xf3, 0x46, 0xf4, 0x8a, 0xf4, 0xd6, 0xf4, 0x1a, 0xf5, 0x61, 0xf5, 0xa8, 0xf5, 0xf1, 0xf5, 0x3a, 0xf6, 0x81, 0xf6, 0xc9, 0xf6, 0x0e, 0xf7, 0x56, 0xf7, 0x9e, 0xf7, 0xe9, 0xf7, 0x2d, 0xf8, 0x75, 0xf8, 0xc0, 0xf8, 0x08, 0xf9, 0x50, 0xf9, 0x99, 0xf9, 0xdd, 0xf9, 0x28, 0xfa, 0x71, 0xfa, 0xb2, 0xfa, 0xfd, 0xfa, 0x45, 0xfb, 0x8d, 0xfb, 0xd2, 0xfb, 0x19, 0xfc, 0x63, 0xfc, 0xa7, 0xfc, 0xef, 0xfc, 0x37, 0xfd, 0x7f, 0xfd, 0xc5, 0xfd, 0x0f, 0xfe, 0x55, 0xfe, 0x9c, 0xfe, 0xe5, 0xfe, 0x27, 0xff, 0x71, 0xff, 0xb7, 0xff, 0xfc, 0xff, 0x44, 0x00, 0x89, 0x00, 0xd1, 0x00, 0x15, 0x01, 0x5b, 0x01, 0xa3, 0x01, 0xe8, 0x01, 0x31, 0x02, 0x75, 0x02, 0xbb, 0x02, 0xff, 0x02, 0x45, 0x03, 0x89, 0x03, 0xd1, 0x03, 0x13, 0x04, 0x58, 0x04, 0x9f, 0x04, 0xe2, 0x04, 0x27, 0x05, 0x6b, 0x05, 0xae, 0x05, 0xf6, 0x05, 0x38, 0x06, 0x7b, 0x06, 0xbf, 0x06, 0x03, 0x07, 0x46, 0x07, 0x87, 0x07, 0xcc, 0x07, 0x0f, 0x08, 0x50, 0x08, 0x92, 0x08, 0xd5, 0x08, 0x19, 0x09, 0x58, 0x09, 0x98, 0x09, 0xdd, 0x09, 0x19, 0x0a, 0x5f, 0x0a, 0x9f, 0x0a, 0xdf, 0x0a, 0x1f, 0x0b, 0x5f, 0x0b, 0x9f, 0x0b, 0xdf, 0x0b, 0x1f, 0x0c, 0x5f, 0x0c, 0x9a, 0x0c, 0xda, 0x0c, 0x19, 0x0d, 0x57, 0x0d, 0x95, 0x0d, 0xd2, 0x0d, 0x0f, 0x0e, 0x4f, 0x0e, 0x89, 0x0e, 0xc7, 0x0e, 0x05, 0x0f, 0x40, 0x0f, 0x7a, 0x0f, 0xb7, 0x0f, 0xf2, 0x0f, 0x2f, 0x10, 0x6a, 0x10, 0xa2, 0x10, 0xdf, 0x10, 0x18, 0x11, 0x50, 0x11, 0x8a, 0x11, 0xc3, 0x11, 0xfd, 0x11, 0x32, 0x12, 0x6c, 0x12, 0xa4, 0x12, 0xdd, 0x12, 0x16, 0x13, 0x4a, 0x13, 0x82, 0x13, 0xb9, 0x13, 0xee, 0x13, 0x24, 0x14, 0x5b, 0x14, 0x8f, 0x14, 0xc2, 0x14, 0xfc, 0x14, 0x2f, 0x15, 0x5f, 0x15, 0x95, 0x15, 0xc8, 0x15, 0xf8, 0x15, 0x2c, 0x16, 0x5c, 0x16, 0x93, 0x16, 0xc3, 0x16, 0xf3, 0x16, 0x23, 0x17, 0x54, 0x17, 0x83, 0x17, 0xb3, 0x17, 0xe1, 0x17, 0x13, 0x18, 0x41, 0x18, 0x6e, 0x18, 0x9b, 0x18, 0xc9, 0x18, 0xf2, 0x18, 0x22, 0x19, 0x51, 0x19, 0x7a, 0x19, 0xa5, 0x19, 0xd2, 0x19, 0xfe, 0x19, 0x28, 0x1a, 0x51, 0x1a, 0x7e, 0x1a, 0xa2, 0x1a, 0xcc, 0x1a, 0xf6, 0x1a, 0x1f, 0x1b, 0x44, 0x1b, 0x6f, 0x1b, 0x94, 0x1b, 0xbc, 0x1b, 0xdf, 0x1b, 0x06, 0x1c, 0x2e, 0x1c, 0x4d, 0x1c, 0x75, 0x1c, 0x98, 0x1c, 0xbe, 0x1c, 0xdf, 0x1c, 0x03, 0x1d, 0x24, 0x1d, 0x45, 0x1d, 0x6a, 0x1d, 0x8b, 0x1d, 0xac, 0x1d, 0xca, 0x1d, 0xeb, 0x1d, 0x0b, 0x1e, 0x2a, 0x1e, 0x48, 0x1e, 0x68, 0x1e, 0x85, 0x1e, 0xa3, 0x1e, 0xc1, 0x1e, 0xdb, 0x1e, 0xf5, 0x1e, 0x15, 0x1f, 0x2e, 0x1f, 0x49, 0x1f, 0x63, 0x1f, 0x7f, 0x1f, 0x96, 0x1f, 0xb2, 0x1f, 0xc6, 0x1f, 0xe1, 0x1f, 0xfb, 0x1f, 0x10, 0x20, 0x27, 0x20, 0x3f, 0x20, 0x54, 0x20, 0x69, 0x20, 0x80, 0x20, 0x96, 0x20, 0xa8, 0x20, 0xbb, 0x20, 0xd2, 0x20, 0xe0, 0x20, 0xf6, 0x20, 0x07, 0x21, 0x17, 0x21, 0x28, 0x21, 0x39, 0x21, 0x49, 0x21, 0x59, 0x21, 0x68, 0x21, 0x7a, 0x21, 0x83, 0x21, 0x95, 0x21, 0xa3, 0x21, 0xad, 0x21, 0xbc, 0x21, 0xc4, 0x21, 0xd4, 0x21, 0xdf, 0x21, 0xe6, 0x21, 0xf3, 0x21, 0xfe, 0x21, 0x03, 0x22, 0x10, 0x22, 0x16, 0x22, 0x1f, 0x22, 0x2a, 0x22, 0x2e, 0x22, 0x37, 0x22, 0x3b, 0x22, 0x3f, 0x22, 0x45, 0x22, 0x4b, 0x22, 0x52, 0x22, 0x53, 0x22, 0x58, 0x22, 0x5c, 0x22, 0x5e, 0x22, 0x64, 0x22, 0x63, 0x22, 0x64, 0x22, 0x66, 0x22, 0x66, 0x22, 0x66, 0x22, 0x66, 0x22, 0x63, 0x22, 0x64, 0x22, 0x60, 0x22, 0x5e, 0x22, 0x5f, 0x22, 0x59, 0x22, 0x58, 0x22, 0x52, 0x22, 0x4e, 0x22, 0x45, 0x22, 0x45, 0x22, 0x3d, 0x22, 0x3a, 0x22, 0x32, 0x22, 0x28, 0x22, 0x21, 0x22, 0x1a, 0x22, 0x13, 0x22, 0x09, 0x22, 0x01, 0x22, 0xf6, 0x21, 0xec, 0x21, 0xe3, 0x21, 0xda, 0x21, 0xcb, 0x21, 0xbf, 0x21, 0xb6, 0x21, 0xa9, 0x21, 0x99, 0x21, 0x8c, 0x21, 0x7f, 0x21, 0x71, 0x21, 0x62, 0x21, 0x54, 0x21, 0x44, 0x21, 0x33, 0x21, 0x23, 0x21, 0x14, 0x21, 0xff, 0x20, 0xf0, 0x20, 0xde, 0x20, 0xc9, 0x20, 0xba, 0x20, 0xa5, 0x20, 0x91, 0x20, 0x7e, 0x20, 0x68, 0x20, 0x55, 0x20, 0x3f, 0x20, 0x2a, 0x20, 0x13, 0x20, 0xfb, 0x1f, 0xe5, 0x1f, 0xd0, 0x1f, 0xb4, 0x1f, 0x9d, 0x1f, 0x88, 0x1f, 0x6e, 0x1f, 0x54, 0x1f, 0x3b, 0x1f, 0x1f, 0x1f, 0x08, 0x1f, 0xec, 0x1e, 0xd0, 0x1e, 0xb5, 0x1e, 0x98, 0x1e, 0x7f, 0x1e, 0x5f, 0x1e, 0x43, 0x1e, 0x26, 0x1e, 0x0b, 0x1e, 0xeb, 0x1d, 0xcc, 0x1d, 0xb0, 0x1d, 0x8e, 0x1d, 0x6f, 0x1d, 0x51, 0x1d, 0x2d, 0x1d, 0x11, 0x1d, 0xec, 0x1c, 0xcf, 0x1c, 0xad, 0x1c, 0x8b, 0x1c, 0x6a, 0x1c, 0x43, 0x1c, 0x24, 0x1c, 0x00, 0x1c, 0xdd, 0x1b, 0xba, 0x1b, 0x94, 0x1b, 0x70, 0x1b, 0x4b, 0x1b, 0x25, 0x1b, 0x01, 0x1b, 0xdc, 0x1a, 0xb4, 0x1a, 0x8e, 0x1a, 0x6a, 0x1a, 0x42, 0x1a, 0x1b, 0x1a, 0xf1, 0x19, 0xcd, 0x19, 0xa0, 0x19, 0x79, 0x19, 0x4f, 0x19, 0x29, 0x19, 0xfe, 0x18, 0xd6, 0x18, 0xab, 0x18, 0x82, 0x18, 0x56, 0x18, 0x2c, 0x18, 0xff, 0x17, 0xd9, 0x17, 0xab, 0x17, 0x80, 0x17, 0x53, 0x17, 0x24, 0x17, 0xfb, 0x16, 0xcd, 0x16, 0xa3, 0x16, 0x72, 0x16, 0x45, 0x16, 0x16, 0x16, 0xec, 0x15, 0xba, 0x15, 0x8f, 0x15, 0x5f, 0x15, 0x2f, 0x15, 0xff, 0x14, 0xd1, 0x14, 0xa1, 0x14, 0x72, 0x14, 0x42, 0x14, 0x0f, 0x14, 0xdf, 0x13, 0xb1, 0x13, 0x7f, 0x13, 0x4d, 0x13, 0x1d, 0x13, 0xed, 0x12, 0xb9, 0x12, 0x85, 0x12, 0x56, 0x12, 0x22, 0x12, 0xf2, 0x11, 0xbd, 0x11, 0x8a, 0x11, 0x58, 0x11, 0x23, 0x11, 0xf0, 0x10, 0xbf, 0x10, 0x8b, 0x10, 0x55, 0x10, 0x22, 0x10, 0xed, 0x0f, 0xb8, 0x0f, 0x84, 0x0f, 0x4e, 0x0f, 0x1a, 0x0f, 0xe7, 0x0e, 0xaf, 0x0e, 0x7e, 0x0e, 0x45, 0x0e, 0x0f, 0x0e, 0xdc, 0x0d, 0xa4, 0x0d, 0x70, 0x0d, 0x37, 0x0d, 0x01, 0x0d, 0xc8, 0x0c, 0x95, 0x0c, 0x5f, 0x0c, 0x28, 0x0c, 0xef, 0x0b, 0xb9, 0x0b, 0x81, 0x0b, 0x48, 0x0b, 0x11, 0x0b, 0xd9, 0x0a, 0xa6, 0x0a, 0x6a, 0x0a, 0x35, 0x0a, 0xfc, 0x09, 0xc2, 0x09, 0x8c, 0x09, 0x52, 0x09, 0x1a, 0x09, 0xe4, 0x08, 0xaa, 0x08, 0x71, 0x08, 0x3c, 0x08, 0xff, 0x07, 0xc7, 0x07, 0x8f, 0x07, 0x56, 0x07, 0x1c, 0x07, 0xe3, 0x06, 0xab, 0x06, 0x73, 0x06, 0x38, 0x06, 0xff, 0x05, 0xc6, 0x05, 0x8c, 0x05, 0x52, 0x05, 0x1b, 0x05, 0xe2, 0x04, 0xa6, 0x04, 0x6c, 0x04, 0x33, 0x04, 0xf9, 0x03, 0xc1, 0x03, 0x83, 0x03, 0x4b, 0x03, 0x11, 0x03, 0xd5, 0x02, 0x9f, 0x02, 0x63, 0x02, 0x29, 0x02, 0xee, 0x01, 0xb4, 0x01, 0x7c, 0x01, 0x42, 0x01, 0x06, 0x01, 0xd0, 0x00, 0x91, 0x00, 0x58, 0x00, 0x20, 0x00, 0xe7, 0xff, 0xad, 0xff, 0x74, 0xff, 0x39, 0xff, 0x00, 0xff, 0xc6, 0xfe, 0x8b, 0xfe, 0x54, 0xfe, 0x16, 0xfe, 0xdd, 0xfd, 0xa3, 0xfd, 0x69, 0xfd, 0x31, 0xfd, 0xf7, 0xfc, 0xbf, 0xfc, 0x83, 0xfc, 0x49, 0xfc, 0x11, 0xfc, 0xd8, 0xfb, 0x9e, 0xfb, 0x66, 0xfb, 0x26, 0xfb, 0xf5, 0xfa, 0xb8, 0xfa, 0x81, 0xfa, 0x49, 0xfa, 0x10, 0xfa, 0xd8, 0xf9, 0x9e, 0xf9, 0x6a, 0xf9, 0x2e, 0xf9, 0xf4, 0xf8, 0xc0, 0xf8, 0x85, 0xf8, 0x51, 0xf8, 0x18, 0xf8, 0xe0, 0xf7, 0xa6, 0xf7, 0x6e, 0xf7, 0x38, 0xf7, 0x01, 0xf7, 0xce, 0xf6, 0x94, 0xf6, 0x5c, 0xf6, 0x27, 0xf6, 0xf2, 0xf5, 0xba, 0xf5, 0x87, 0xf5, 0x4f, 0xf5, 0x1b, 0xf5, 0xe8, 0xf4, 0xb0, 0xf4, 0x7b, 0xf4, 0x46, 0xf4, 0x12, 0xf4, 0xdc, 0xf3, 0xa9, 0xf3, 0x74, 0xf3, 0x43, 0xf3, 0x11, 0xf3, 0xda, 0xf2, 0xa9, 0xf2, 0x76, 0xf2, 0x46, 0xf2, 0x12, 0xf2, 0xe0, 0xf1, 0xaf, 0xf1, 0x7f, 0xf1, 0x4f, 0xf1, 0x19, 0xf1, 0xe9, 0xf0, 0xbb, 0xf0, 0x89, 0xf0, 0x5b, 0xf0, 0x2b, 0xf0, 0xfd, 0xef, 0xd0, 0xef, 0x9a, 0xef, 0x70, 0xef, 0x40, 0xef, 0x14, 0xef, 0xe4, 0xee, 0xb7, 0xee, 0x8c, 0xee, 0x61, 0xee, 0x33, 0xee, 0x07, 0xee, 0xdb, 0xed, 0xb2, 0xed, 0x86, 0xed, 0x5c, 0xed, 0x31, 0xed, 0x05, 0xed, 0xde, 0xec, 0xb4, 0xec, 0x8d, 0xec, 0x62, 0xec, 0x3a, 0xec, 0x11, 0xec, 0xec, 0xeb, 0xc4, 0xeb, 0x9e, 0xeb, 0x75, 0xeb, 0x50, 0xeb, 0x28, 0xeb, 0x04, 0xeb, 0xe0, 0xea, 0xbc, 0xea, 0x95, 0xea, 0x71, 0xea, 0x4d, 0xea, 0x2c, 0xea, 0x08, 0xea, 0xe6, 0xe9, 0xc3, 0xe9, 0xa1, 0xe9, 0x81, 0xe9, 0x60, 0xe9, 0x41, 0xe9, 0x1f, 0xe9, 0xfe, 0xe8, 0xe1, 0xe8, 0xc1, 0xe8, 0xa1, 0xe8, 0x84, 0xe8, 0x64, 0xe8, 0x4a, 0xe8, 0x2c, 0xe8, 0x10, 0xe8, 0xf2, 0xe7, 0xd4, 0xe7, 0xb8, 0xe7, 0xa1, 0xe7, 0x88, 0xe7, 0x6c, 0xe7, 0x51, 0xe7, 0x37, 0xe7, 0x20, 0xe7, 0x04, 0xe7, 0xee, 0xe6, 0xd4, 0xe6, 0xbe, 0xe6, 0xa5, 0xe6, 0x90, 0xe6, 0x78, 0xe6, 0x62, 0xe6, 0x4f, 0xe6, 0x36, 0xe6, 0x24, 0xe6, 0x0f, 0xe6, 0xfb, 0xe5, 0xe8, 0xe5, 0xd5, 0xe5, 0xc1, 0xe5, 0xb1, 0xe5, 0xa0, 0xe5, 0x8e, 0xe5, 0x7c, 0xe5, 0x6a, 0xe5, 0x5b, 0xe5, 0x4a, 0xe5, 0x3b, 0xe5, 0x28, 0xe5, 0x1a, 0xe5, 0x0e, 0xe5, 0x01, 0xe5, 0xf1, 0xe4, 0xe6, 0xe4, 0xd7, 0xe4, 0xcc, 0xe4, 0xbd, 0xe4, 0xb2, 0xe4, 0xab, 0xe4, 0x9c, 0xe4, 0x92, 0xe4, 0x88, 0xe4, 0x80, 0xe4, 0x73, 0xe4, 0x6e, 0xe4, 0x62, 0xe4, 0x5d, 0xe4, 0x53, 0xe4, 0x4d, 0xe4, 0x43, 0xe4, 0x3c, 0xe4, 0x37, 0xe4, 0x30, 0xe4, 0x2d, 0xe4, 0x25, 0xe4, 0x22, 0xe4, 0x1d, 0xe4, 0x1a, 0xe4, 0x14, 0xe4, 0x13, 0xe4, 0x11, 0xe4, 0x0b, 0xe4, 0x0c, 0xe4, 0x0b, 0xe4, 0x05, 0xe4, 0x05, 0xe4, 0x04, 0xe4, 0x07, 0xe4, 0x05, 0xe4, 0x04, 0xe4, 0x07, 0xe4, 0x05, 0xe4, 0x0b, 0xe4, 0x0c, 0xe4, 0x0c, 0xe4, 0x11, 0xe4, 0x13, 0xe4, 0x16, 0xe4, 0x1a, 0xe4, 0x1e, 0xe4, 0x22, 0xe4, 0x28, 0xe4, 0x2d, 0xe4, 0x34, 0xe4, 0x37, 0xe4, 0x3e, 0xe4, 0x47, 0xe4, 0x4a, 0xe4, 0x56, 0xe4, 0x5a, 0xe4, 0x65, 0xe4, 0x68, 0xe4, 0x73, 0xe4, 0x7e, 0xe4, 0x85, 0xe4, 0x90, 0xe4, 0x98, 0xe4, 0xa4, 0xe4, 0xae, 0xe4, 0xbc, 0xe4, 0xc7, 0xe4, 0xd3, 0xe4, 0xe0, 0xe4, 0xea, 0xe4, 0xf7, 0xe4, 0x06, 0xe5, 0x13, 0xe5, 0x22, 0xe5, 0x2f, 0xe5, 0x40, 0xe5, 0x4d, 0xe5, 0x5b, 0xe5, 0x6d, 0xe5, 0x7c, 0xe5, 0x8c, 0xe5, 0x9b, 0xe5, 0xaf, 0xe5, 0xbe, 0xe5, 0xd0, 0xe5, 0xe1, 0xe5, 0xf1, 0xe5, 0x05, 0xe6, 0x18, 0xe6, 0x2e, 0xe6, 0x40, 0xe6, 0x53, 0xe6, 0x65, 0xe6, 0x7c, 0xe6, 0x92, 0xe6, 0xa2, 0xe6, 0xbd, 0xe6, 0xd0, 0xe6, 0xea, 0xe6, 0xfd, 0xe6, 0x13, 0xe7, 0x2c, 0xe7, 0x41, 0xe7, 0x5a, 0xe7, 0x71, 0xe7, 0x8a, 0xe7, 0x9f, 0xe7, 0xba, 0xe7, 0xd1, 0xe7, 0xec, 0xe7, 0x03, 0xe8, 0x20, 0xe8, 0x36, 0xe8, 0x54, 0xe8, 0x6e, 0xe8, 0x88, 0xe8, 0xa5, 0xe8, 0xbf, 0xe8, 0xd8, 0xe8, 0xf6, 0xe8, 0x11, 0xe9, 0x2e, 0xe9, 0x4e, 0xe9, 0x66, 0xe9, 0x8a, 0xe9, 0xa4, 0xe9, 0xc2, 0xe9, 0xe1, 0xe9, 0xff, 0xe9, 0x20, 0xea, 0x3e, 0xea, 0x5c, 0xea, 0x7e, 0xea, 0x9c, 0xea, 0xbc, 0xea, 0xdb, 0xea, 0xfc, 0xea, 0x1f, 0xeb, 0x3d, 0xeb, 0x5f, 0xeb, 0x80, 0xeb, 0xa2, 0xeb, 0xc4, 0xeb, 0xe5, 0xeb, 0x0c, 0xec, 0x27, 0xec, 0x4f, 0xec, 0x70, 0xec, 0x93, 0xec, 0xba, 0xec, 0xdc, 0xec, 0xfd, 0xec, 0x25, 0xed, 0x47, 0xed, 0x6b, 0xed, 0x91, 0xed, 0xb3, 0xed, 0xda, 0xed, 0x01, 0xee, 0x24, 0xee, 0x4c, 0xee, 0x72, 0xee, 0x97, 0xee, 0xbe, 0xee, 0xe2, 0xee, 0x0d, 0xef, 0x32, 0xef, 0x5a, 0xef, 0x81, 0xef, 0xa7, 0xef, 0xcf, 0xef, 0xf6, 0xef, 0x20, 0xf0, 0x48, 0xf0, 0x71, 0xf0, 0x98, 0xf0, 0xc0, 0xf0, 0xe9, 0xf0, 0x11, 0xf1, 0x3a, 0xf1, 0x67, 0xf1, 0x8e, 0xf1, 0xba, 0xf1, 0xe0, 0xf1, 0x0c, 0xf2, 0x36, 0xf2, 0x5e, 0xf2, 0x8c, 0xf2, 0xb3, 0xf2, 0xe1, 0xf2, 0x09, 0xf3, 0x36, 0xf3, 0x5f, 0xf3, 0x8c, 0xf3, 0xb7, 0xf3, 0xe1, 0xf3, 0x0c, 0xf4, 0x39, 0xf4, 0x64, 0xf4, 0x91, 0xf4, 0xbb, 0xf4, 0xe8, 0xf4, 0x16, 0xf5, 0x41, 0xf5, 0x6f, 0xf5, 0x9b, 0xf5, 0xc7, 0xf5, 0xf3, 0xf5, 0x1e, 0xf6, 0x4e, 0xf6, 0x7a, 0xf6, 0xa9, 0xf6, 0xd7, 0xf6, 0x01, 0xf7, 0x33, 0xf7, 0x5b, 0xf7, 0x8e, 0xf7, 0xb6, 0xf7, 0xe8, 0xf7, 0x12, 0xf8, 0x42, 0xf8, 0x6e, 0xf8, 0x9d, 0xf8, 0xcc, 0xf8, 0xf9, 0xf8, 0x29, 0xf9, 0x54, 0xf9, 0x81, 0xf9, 0xad, 0xf9, 0xdd, 0xf9, 0x0a, 0xfa, 0x3d, 0xfa, 0x68, 0xfa, 0x96, 0xfa, 0xc8, 0xfa, 0xf6, 0xfa, 0x25, 0xfb, 0x51, 0xfb, 0x81, 0xfb, 0xae, 0xfb, 0xdc, 0xfb, 0x09, 0xfc, 0x3b, 0xfc, 0x69, 0xfc, 0x99, 0xfc, 0xc5, 0xfc, 0xf7, 0xfc, 0x25, 0xfd, 0x4f, 0xfd, 0x85, 0xfd, 0xab, 0xfd, 0xdd, 0xfd, 0x0c, 0xfe, 0x3c, 0xfe, 0x69, 0xfe, 0x9a, 0xfe, 0xc7, 0xfe, 0xf4, 0xfe, 0x24, 0xff, 0x53, 0xff, 0x80, 0xff, 0xae, 0xff, 0xde, 0xff, 0x0a, 0x00, 0x38, 0x00, 0x68, 0x00, 0x95, 0x00, 0xc5, 0x00, 0xf2, 0x00, 0x1f, 0x01, 0x4e, 0x01, 0x7b, 0x01, 0xa9, 0x01, 0xd8, 0x01, 0x05, 0x02, 0x33, 0x02, 0x63, 0x02, 0x8d, 0x02, 0xbd, 0x02, 0xe9, 0x02, 0x17, 0x03, 0x43, 0x03, 0x71, 0x03, 0xa1, 0x03, 0xc9, 0x03, 0xf9, 0x03, 0x23, 0x04, 0x4f, 0x04, 0x7f, 0x04, 0xaa, 0x04, 0xd8, 0x04, 0x03, 0x05, 0x30, 0x05, 0x5c, 0x05, 0x87, 0x05, 0xb3, 0x05, 0xdf, 0x05, 0x0e, 0x06, 0x37, 0x06, 0x66, 0x06, 0x8f, 0x06, 0xba, 0x06, 0xea, 0x06, 0x10, 0x07, 0x3e, 0x07, 0x67, 0x07, 0x92, 0x07, 0xc0, 0x07, 0xe7, 0x07, 0x11, 0x08, 0x3c, 0x08, 0x67, 0x08, 0x90, 0x08, 0xba, 0x08, 0xe4, 0x08, 0x0e, 0x09, 0x36, 0x09, 0x5f, 0x09, 0x88, 0x09, 0xb2, 0x09, 0xd9, 0x09, 0x04, 0x0a, 0x2a, 0x0a, 0x55, 0x0a, 0x7d, 0x0a, 0xa2, 0x0a, 0xcd, 0x0a, 0xf0, 0x0a, 0x1a, 0x0b, 0x42, 0x0b, 0x68, 0x0b, 0x90, 0x0b, 0xb7, 0x0b, 0xde, 0x0b, 0x01, 0x0c, 0x29, 0x0c, 0x4f, 0x0c, 0x75, 0x0c, 0x9c, 0x0c, 0xbf, 0x0c, 0xe7, 0x0c, 0x0a, 0x0d, 0x2f, 0x0d, 0x55, 0x0d, 0x78, 0x0d, 0x9e, 0x0d, 0xc0, 0x0d, 0xe5, 0x0d, 0x0c, 0x0e, 0x2a, 0x0e, 0x50, 0x0e, 0x71, 0x0e, 0x94, 0x0e, 0xb7, 0x0e, 0xd8, 0x0e, 0xfd, 0x0e, 0x1e, 0x0f, 0x40, 0x0f, 0x61, 0x0f, 0x84, 0x0f, 0xa4, 0x0f, 0xc6, 0x0f, 0xe7, 0x0f, 0x0a, 0x10, 0x24, 0x10, 0x43, 0x10, 0x66, 0x10, 0x82, 0x10, 0xa5, 0x10, 0xc3, 0x10, 0xe1, 0x10, 0xff, 0x10, 0x20, 0x11, 0x3c, 0x11, 0x5d, 0x11, 0x78, 0x11, 0x96, 0x11, 0xb0, 0x11, 0xcf, 0x11, 0xed, 0x11, 0x05, 0x12, 0x25, 0x12, 0x3f, 0x12, 0x5f, 0x12, 0x74, 0x12, 0x95, 0x12, 0xaf, 0x12, 0xc8, 0x12, 0xe0, 0x12, 0xfe, 0x12, 0x19, 0x13, 0x2f, 0x13, 0x49, 0x13, 0x60, 0x13, 0x7a, 0x13, 0x91, 0x13, 0xac, 0x13, 0xc3, 0x13, 0xda, 0x13, 0xef, 0x13, 0x0c, 0x14, 0x1f, 0x14, 0x35, 0x14, 0x4f, 0x14, 0x5f, 0x14, 0x79, 0x14, 0x8b, 0x14, 0xa1, 0x14, 0xba, 0x14, 0xcf, 0x14, 0xdf, 0x14, 0xf6, 0x14, 0x0b, 0x15, 0x1b, 0x15, 0x2f, 0x15, 0x43, 0x15, 0x55, 0x15, 0x65, 0x15, 0x7b, 0x15, 0x8a, 0x15, 0x9c, 0x15, 0xaf, 0x15, 0xbd, 0x15, 0xcf, 0x15, 0xde, 0x15, 0xf2, 0x15, 0xff, 0x15, 0x0f, 0x16, 0x1f, 0x16, 0x2e, 0x16, 0x3b, 0x16, 0x46, 0x16, 0x59, 0x16, 0x63, 0x16, 0x75, 0x16, 0x7f, 0x16, 0x8c, 0x16, 0x98, 0x16, 0xa3, 0x16, 0xb2, 0x16, 0xbc, 0x16, 0xca, 0x16, 0xd0, 0x16, 0xe1, 0x16, 0xeb, 0x16, 0xf3, 0x16, 0xfe, 0x16, 0x05, 0x17, 0x11, 0x17, 0x14, 0x17, 0x23, 0x17, 0x2a, 0x17, 0x30, 0x17, 0x3d, 0x17, 0x42, 0x17, 0x4c, 0x17, 0x4e, 0x17, 0x56, 0x17, 0x5d, 0x17, 0x62, 0x17, 0x66, 0x17, 0x6f, 0x17, 0x74, 0x17, 0x75, 0x17, 0x7e, 0x17, 0x7e, 0x17, 0x83, 0x17, 0x88, 0x17, 0x8d, 0x17, 0x8e, 0x17, 0x8f, 0x17, 0x92, 0x17, 0x93, 0x17, 0x96, 0x17, 0x96, 0x17, 0x9c, 0x17, 0x9a, 0x17, 0x9c, 0x17, 0x99, 0x17, 0x9d, 0x17, 0x99, 0x17, 0x99, 0x17, 0x9c, 0x17, 0x93, 0x17, 0x9a, 0x17, 0x93, 0x17, 0x93, 0x17, 0x8f, 0x17, 0x8f, 0x17, 0x8b, 0x17, 0x88, 0x17, 0x81, 0x17, 0x80, 0x17, 0x80, 0x17, 0x75, 0x17, 0x72, 0x17, 0x6f, 0x17, 0x69, 0x17, 0x62, 0x17, 0x5f, 0x17, 0x58, 0x17, 0x51, 0x17, 0x49, 0x17, 0x42, 0x17, 0x3f, 0x17, 0x32, 0x17, 0x2d, 0x17, 0x26, 0x17, 0x1e, 0x17, 0x12, 0x17, 0x0a, 0x17, 0x00, 0x17, 0xf6, 0x16, 0xef, 0x16, 0xe1, 0x16, 0xd9, 0x16, 0xce, 0x16, 0xc1, 0x16, 0xb8, 0x16, 0xad, 0x16, 0x9f, 0x16, 0x94, 0x16, 0x88, 0x16, 0x7d, 0x16, 0x72, 0x16, 0x61, 0x16, 0x55, 0x16, 0x46, 0x16, 0x3b, 0x16, 0x2e, 0x16, 0x1d, 0x16, 0x0e, 0x16, 0x00, 0x16, 0xed, 0x15, 0xde, 0x15, 0xd0, 0x15, 0xbf, 0x15, 0xaf, 0x15, 0x9f, 0x15, 0x8f, 0x15, 0x7d, 0x15, 0x6e, 0x15, 0x5a, 0x15, 0x4b, 0x15, 0x38, 0x15, 0x23, 0x15, 0x11, 0x15, 0xff, 0x14, 0xeb, 0x14, 0xdb, 0x14, 0xc5, 0x14, 0xb0, 0x14, 0x9f, 0x14, 0x86, 0x14, 0x75, 0x14, 0x60, 0x14, 0x49, 0x14, 0x36, 0x14, 0x20, 0x14, 0x06, 0x14, 0xf3, 0x13, 0xdd, 0x13, 0xc8, 0x13, 0xaf, 0x13, 0x9b, 0x13, 0x81, 0x13, 0x6b, 0x13, 0x51, 0x13, 0x3b, 0x13, 0x24, 0x13, 0x0e, 0x13, 0xf1, 0x12, 0xdb, 0x12, 0xc1, 0x12, 0xaa, 0x12, 0x8f, 0x12, 0x76, 0x12, 0x5d, 0x12, 0x44, 0x12, 0x29, 0x12, 0x0e, 0x12, 0xf2, 0x11, 0xd9, 0x11, 0xbf, 0x11, 0x9f, 0x11, 0x88, 0x11, 0x6c, 0x11, 0x51, 0x11, 0x32, 0x11, 0x1b, 0x11, 0xfd, 0x10, 0xdf, 0x10, 0xc4, 0x10, 0xa5, 0x10, 0x8b, 0x10, 0x6d, 0x10, 0x4f, 0x10, 0x31, 0x10, 0x13, 0x10, 0xf5, 0x0f, 0xd7, 0x0f, 0xbc, 0x0f, 0x9a, 0x0f, 0x7d, 0x0f, 0x5f, 0x0f, 0x41, 0x0f, 0x1f, 0x0f, 0xff, 0x0e, 0xe1, 0x0e, 0xc0, 0x0e, 0xa2, 0x0e, 0x80, 0x0e, 0x60, 0x0e, 0x3f, 0x0e, 0x20, 0x0e, 0xff, 0x0d, 0xdf, 0x0d, 0xbe, 0x0d, 0x9e, 0x0d, 0x7f, 0x0d, 0x5a, 0x0d, 0x3d, 0x0d, 0x19, 0x0d, 0xf8, 0x0c, 0xd5, 0x0c, 0xb6, 0x0c, 0x92, 0x0c, 0x70, 0x0c, 0x4f, 0x0c, 0x29, 0x0c, 0x0a, 0x0c, 0xe7, 0x0b, 0xc6, 0x0b, 0xa1, 0x0b, 0x7e, 0x0b, 0x5a, 0x0b, 0x37, 0x0b, 0x16, 0x0b, 0xf0, 0x0a, 0xcd, 0x0a, 0xad, 0x0a, 0x86, 0x0a, 0x64, 0x0a, 0x3f, 0x0a, 0x1c, 0x0a, 0xf6, 0x09, 0xd4, 0x09, 0xae, 0x09, 0x8d, 0x09, 0x68, 0x09, 0x3f, 0x09, 0x20, 0x09, 0xf8, 0x08, 0xd7, 0x08, 0xb0, 0x08, 0x8a, 0x08, 0x66, 0x08, 0x41, 0x08, 0x1c, 0x08, 0xfa, 0x07, 0xd0, 0x07, 0xab, 0x07, 0x87, 0x07, 0x5f, 0x07, 0x3e, 0x07, 0x17, 0x07, 0xf2, 0x06, 0xcb, 0x06, 0xa7, 0x06, 0x83, 0x06, 0x58, 0x06, 0x36, 0x06, 0x10, 0x06, 0xea, 0x05, 0xc3, 0x05, 0x9c, 0x05, 0x78, 0x05, 0x52, 0x05, 0x2b, 0x05, 0x06, 0x05, 0xdf, 0x04, 0xbb, 0x04, 0x92, 0x04, 0x6e, 0x04, 0x4a, 0x04, 0x22, 0x04, 0xfb, 0x03, 0xd7, 0x03, 0xad, 0x03, 0x89, 0x03, 0x65, 0x03, 0x39, 0x03, 0x15, 0x03, 0xef, 0x02, 0xc9, 0x02, 0xa3, 0x02, 0x7b, 0x02, 0x5b, 0x02, 0x2d, 0x02, 0x0d, 0x02, 0xe4, 0x01, 0xbe, 0x01, 0x99, 0x01, 0x6f, 0x01, 0x4c, 0x01, 0x24, 0x01, 0x00, 0x01, 0xd7, 0x00, 0xb3, 0x00, 0x8e, 0x00, 0x6a, 0x00, 0x41, 0x00, 0x1c, 0x00, 0xf8, 0xff, 0xd2, 0xff, 0xae, 0xff, 0x87, 0xff, 0x60, 0xff, 0x3b, 0xff, 0x17, 0xff, 0xee, 0xfe, 0xc9, 0xfe, 0xa6, 0xfe, 0x7f, 0xfe, 0x5b, 0xfe, 0x37, 0xfe, 0x12, 0xfe, 0xeb, 0xfd, 0xc5, 0xfd, 0xa3, 0xfd, 0x7b, 0xfd, 0x55, 0xfd, 0x31, 0xfd, 0x0d, 0xfd, 0xe7, 0xfc, 0xc5, 0xfc, 0x9f, 0xfc, 0x7b, 0xfc, 0x57, 0xfc, 0x35, 0xfc, 0x0f, 0xfc, 0xea, 0xfb, 0xc4, 0xfb, 0xa5, 0xfb, 0x81, 0xfb, 0x5a, 0xfb, 0x39, 0xfb, 0x12, 0xfb, 0xf4, 0xfa, 0xc9, 0xfa, 0xac, 0xfa, 0x85, 0xfa, 0x65, 0xfa, 0x41, 0xfa, 0x1d, 0xfa, 0xfd, 0xf9, 0xd8, 0xf9, 0xb6, 0xf9, 0x91, 0xf9, 0x71, 0xf9, 0x51, 0xf9, 0x2e, 0xf9, 0x0c, 0xf9, 0xed, 0xf8, 0xc6, 0xf8, 0xa8, 0xf8, 0x86, 0xf8, 0x65, 0xf8, 0x48, 0xf8, 0x21, 0xf8, 0x06, 0xf8, 0xe0, 0xf7, 0xc1, 0xf7, 0xa2, 0xf7, 0x7f, 0xf7, 0x5f, 0xf7, 0x41, 0xf7, 0x24, 0xf7, 0xff, 0xf6, 0xe2, 0xf6, 0xc1, 0xf6, 0xa4, 0xf6, 0x83, 0xf6, 0x64, 0xf6, 0x47, 0xf6, 0x26, 0xf6, 0x0a, 0xf6, 0xe9, 0xf5, 0xcf, 0xf5, 0xaf, 0xf5, 0x90, 0xf5, 0x72, 0xf5, 0x57, 0xf5, 0x39, 0xf5, 0x1b, 0xf5, 0x00, 0xf5, 0xe0, 0xf4, 0xc4, 0xf4, 0xa9, 0xf4, 0x8b, 0xf4, 0x72, 0xf4, 0x51, 0xf4, 0x38, 0xf4, 0x20, 0xf4, 0x03, 0xf4, 0xe9, 0xf3, 0xcb, 0xf3, 0xb2, 0xf3, 0x94, 0xf3, 0x7e, 0xf3, 0x61, 0xf3, 0x49, 0xf3, 0x2c, 0xf3, 0x14, 0xf3, 0xf9, 0xf2, 0xe3, 0xf2, 0xc9, 0xf2, 0xb1, 0xf2, 0x97, 0xf2, 0x81, 0xf2, 0x67, 0xf2, 0x4b, 0xf2, 0x37, 0xf2, 0x1e, 0xf2, 0x09, 0xf2, 0xf3, 0xf1, 0xd9, 0xf1, 0xc4, 0xf1, 0xab, 0xf1, 0x97, 0xf1, 0x7f, 0xf1, 0x68, 0xf1, 0x54, 0xf1, 0x3e, 0xf1, 0x28, 0xf1, 0x12, 0xf1, 0xff, 0xf0, 0xe9, 0xf0, 0xd7, 0xf0, 0xbf, 0xf0, 0xac, 0xf0, 0x99, 0xf0, 0x83, 0xf0, 0x71, 0xf0, 0x5f, 0xf0, 0x4e, 0xf0, 0x3a, 0xf0, 0x27, 0xf0, 0x13, 0xf0, 0x04, 0xf0, 0xf0, 0xef, 0xdf, 0xef, 0xcc, 0xef, 0xba, 0xef, 0xab, 0xef, 0x9a, 0xef, 0x8a, 0xef, 0x78, 0xef, 0x6c, 0xef, 0x57, 0xef, 0x47, 0xef, 0x38, 0xef, 0x2b, 0xef, 0x1e, 0xef, 0x0c, 0xef, 0x00, 0xef, 0xf1, 0xee, 0xe2, 0xee, 0xd3, 0xee, 0xc6, 0xee, 0xbb, 0xee, 0xac, 0xee, 0xa2, 0xee, 0x94, 0xee, 0x88, 0xee, 0x7d, 0xee, 0x70, 0xee, 0x66, 0xee, 0x5c, 0xee, 0x4f, 0xee, 0x43, 0xee, 0x37, 0xee, 0x2f, 0xee, 0x27, 0xee, 0x1a, 0xee, 0x11, 0xee, 0x07, 0xee, 0xff, 0xed, 0xf5, 0xed, 0xed, 0xed, 0xe3, 0xed, 0xe0, 0xed, 0xd4, 0xed, 0xcc, 0xed, 0xc7, 0xed, 0xbc, 0xed, 0xb8, 0xed, 0xb1, 0xed, 0xaa, 0xed, 0xa3, 0xed, 0x9f, 0xed, 0x97, 0xed, 0x92, 0xed, 0x8d, 0xed, 0x8a, 0xed, 0x85, 0xed, 0x80, 0xed, 0x7b, 0xed, 0x7a, 0xed, 0x73, 0xed, 0x71, 0xed, 0x6f, 0xed, 0x6b, 0xed, 0x67, 0xed, 0x64, 0xed, 0x62, 0xed, 0x5f, 0xed, 0x5f, 0xed, 0x5f, 0xed, 0x5a, 0xed, 0x5c, 0xed, 0x5c, 0xed, 0x58, 0xed, 0x58, 0xed, 0x5a, 0xed, 0x5a, 0xed, 0x58, 0xed, 0x58, 0xed, 0x5d, 0xed, 0x56, 0xed, 0x60, 0xed, 0x5f, 0xed, 0x61, 0xed, 0x64, 0xed, 0x64, 0xed, 0x6b, 0xed, 0x6b, 0xed, 0x6e, 0xed, 0x6f, 0xed, 0x76, 0xed, 0x77, 0xed, 0x7a, 0xed, 0x80, 0xed, 0x86, 0xed, 0x8a, 0xed, 0x8f, 0xed, 0x92, 0xed, 0x9b, 0xed, 0x9f, 0xed, 0xa4, 0xed, 0xab, 0xed, 0xb1, 0xed, 0xb6, 0xed, 0xc0, 0xed, 0xc8, 0xed, 0xce, 0xed, 0xd3, 0xed, 0xdd, 0xed, 0xe3, 0xed, 0xef, 0xed, 0xf4, 0xed, 0xfc, 0xed, 0x07, 0xee, 0x0e, 0xee, 0x16, 0xee, 0x22, 0xee, 0x2b, 0xee, 0x34, 0xee, 0x41, 0xee, 0x4c, 0xee, 0x55, 0xee, 0x5f, 0xee, 0x6e, 0xee, 0x76, 0xee, 0x81, 0xee, 0x91, 0xee, 0x9a, 0xee, 0xa6, 0xee, 0xb1, 0xee, 0xc1, 0xee, 0xca, 0xee, 0xda, 0xee, 0xe5, 0xee, 0xf3, 0xee, 0x01, 0xef, 0x0f, 0xef, 0x21, 0xef, 0x2a, 0xef, 0x3c, 0xef, 0x48, 0xef, 0x57, 0xef, 0x66, 0xef, 0x75, 0xef, 0x84, 0xef, 0x95, 0xef, 0xa5, 0xef, 0xb4, 0xef, 0xc8, 0xef, 0xd7, 0xef, 0xea, 0xef, 0xf8, 0xef, 0x09, 0xf0, 0x1c, 0xf0, 0x2b, 0xf0, 0x3f, 0xf0, 0x50, 0xf0, 0x61, 0xf0, 0x74, 0xf0, 0x86, 0xf0, 0x99, 0xf0, 0xae, 0xf0, 0xbc, 0xf0, 0xd3, 0xf0, 0xe3, 0xf0, 0xf9, 0xf0, 0x0c, 0xf1, 0x21, 0xf1, 0x34, 0xf1, 0x47, 0xf1, 0x5e, 0xf1, 0x71, 0xf1, 0x86, 0xf1, 0x9a, 0xf1, 0xb2, 0xf1, 0xc8, 0xf1, 0xdb, 0xf1, 0xf3, 0xf1, 0x09, 0xf2, 0x1b, 0xf2, 0x33, 0xf2, 0x4b, 0xf2, 0x5e, 0xf2, 0x79, 0xf2, 0x8c, 0xf2, 0xa2, 0xf2, 0xbc, 0xf2, 0xd2, 0xf2, 0xea, 0xf2, 0x00, 0xf3, 0x18, 0xf3, 0x31, 0xf3, 0x49, 0xf3, 0x5f, 0xf3, 0x78, 0xf3, 0x90, 0xf3, 0xa9, 0xf3, 0xc0, 0xf3, 0xdc, 0xf3, 0xf2, 0xf3, 0x0a, 0xf4, 0x26, 0xf4, 0x3c, 0xf4, 0x59, 0xf4, 0x72, 0xf4, 0x8e, 0xf4, 0xa6, 0xf4, 0xbf, 0xf4, 0xdb, 0xf4, 0xf1, 0xf4, 0x11, 0xf5, 0x28, 0xf5, 0x44, 0xf5, 0x5e, 0xf5, 0x78, 0xf5, 0x93, 0xf5, 0xae, 0xf5, 0xc9, 0xf5, 0xe3, 0xf5, 0x01, 0xf6, 0x1a, 0xf6, 0x38, 0xf6, 0x52, 0xf6, 0x6e, 0xf6, 0x89, 0xf6, 0xa7, 0xf6, 0xc2, 0xf6, 0xe1, 0xf6, 0xfe, 0xf6, 0x16, 0xf7, 0x38, 0xf7, 0x50, 0xf7, 0x70, 0xf7, 0x8a, 0xf7, 0xa6, 0xf7, 0xc7, 0xf7, 0xe1, 0xf7, 0xfc, 0xf7, 0x1c, 0xf8, 0x39, 0xf8, 0x56, 0xf8, 0x71, 0xf8, 0x91, 0xf8, 0xae, 0xf8, 0xc9, 0xf8, 0xed, 0xf8, 0x08, 0xf9, 0x24, 0xf9, 0x44, 0xf9, 0x61, 0xf9, 0x7d, 0xf9, 0x9c, 0xf9, 0xb9, 0xf9, 0xd9, 0xf9, 0xf5, 0xf9, 0x14, 0xfa, 0x34, 0xfa, 0x52, 0xfa, 0x71, 0xfa, 0x8d, 0xfa, 0xae, 0xfa, 0xc9, 0xfa, 0xea, 0xfa, 0x0c, 0xfb, 0x26, 0xfb, 0x49, 0xfb, 0x65, 0xfb, 0x84, 0xfb, 0xa2, 0xfb, 0xc1, 0xfb, 0xe1, 0xfb, 0x01, 0xfc, 0x1f, 0xfc, 0x3b, 0xfc, 0x5f, 0xfc, 0x7b, 0xfc, 0x9b, 0xfc, 0xb9, 0xfc, 0xd3, 0xfc, 0xfb, 0xfc, 0x13, 0xfd, 0x33, 0xfd, 0x55, 0xfd, 0x73, 0xfd, 0x93, 0xfd, 0xb1, 0xfd, 0xcf, 0xfd, 0xf1, 0xfd, 0x10, 0xfe, 0x30, 0xfe, 0x4e, 0xfe, 0x6d, 0xfe, 0x8d, 0xfe, 0xab, 0xfe, 0xca, 0xfe, 0xe8, 0xfe, 0x06, 0xff, 0x26, 0xff, 0x47, 0xff, 0x63, 0xff, 0x87, 0xff, 0xa1, 0xff, 0xc2, 0xff, 0xde, 0xff, 0xff, 0xff, 0x1d, 0x00, 0x3b, 0x00, 0x5b, 0x00, 0x79, 0x00, 0x9a, 0x00, 0xb6, 0x00, 0xd4, 0x00, 0xf7, 0x00, 0x13, 0x01, 0x31, 0x01, 0x52, 0x01, 0x6d, 0x01, 0x8e, 0x01, 0xac, 0x01, 0xca, 0x01, 0xeb, 0x01, 0x07, 0x02, 0x27, 0x02, 0x43, 0x02, 0x63, 0x02, 0x81, 0x02, 0x9d, 0x02, 0xbd, 0x02, 0xdb, 0x02, 0xf9, 0x02, 0x17, 0x03, 0x33, 0x03, 0x53, 0x03, 0x71, 0x03, 0x89, 0x03, 0xab, 0x03, 0xc5, 0x03, 0xe5, 0x03, 0x02, 0x04, 0x1f, 0x04, 0x3c, 0x04, 0x58, 0x04, 0x76, 0x04, 0x93, 0x04, 0xaf, 0x04, 0xcb, 0x04, 0xe8, 0x04, 0x07, 0x05, 0x23, 0x05, 0x3c, 0x05, 0x5b, 0x05, 0x77, 0x05, 0x90, 0x05, 0xb0, 0x05, 0xcc, 0x05, 0xe4, 0x05, 0x04, 0x06, 0x1f, 0x06, 0x3b, 0x06, 0x56, 0x06, 0x72, 0x06, 0x8b, 0x06, 0xa7, 0x06, 0xc3, 0x06, 0xdc, 0x06, 0xfb, 0x06, 0x10, 0x07, 0x2f, 0x07, 0x48, 0x07, 0x62, 0x07, 0x7f, 0x07, 0x94, 0x07, 0xaf, 0x07, 0xc7, 0x07, 0xe3, 0x07, 0xff, 0x07, 0x16, 0x08, 0x2f, 0x08, 0x48, 0x08, 0x62, 0x08, 0x7a, 0x08, 0x94, 0x08, 0xac, 0x08, 0xc4, 0x08, 0xdf, 0x08, 0xf8, 0x08, 0x0e, 0x09, 0x28, 0x09, 0x3f, 0x09, 0x54, 0x09, 0x6f, 0x09, 0x86, 0x09, 0x9a, 0x09, 0xb6, 0x09, 0xca, 0x09, 0xe0, 0x09, 0xf8, 0x09, 0x0e, 0x0a, 0x28, 0x0a, 0x3a, 0x0a, 0x52, 0x0a, 0x67, 0x0a, 0x81, 0x0a, 0x97, 0x0a, 0xa8, 0x0a, 0xc1, 0x0a, 0xd4, 0x0a, 0xe8, 0x0a, 0xff, 0x0a, 0x12, 0x0b, 0x27, 0x0b, 0x3d, 0x0b, 0x51, 0x0b, 0x66, 0x0b, 0x7a, 0x0b, 0x8d, 0x0b, 0xa2, 0x0b, 0xb7, 0x0b, 0xc8, 0x0b, 0xdc, 0x0b, 0xef, 0x0b, 0x01, 0x0c, 0x15, 0x0c, 0x28, 0x0c, 0x3a, 0x0c, 0x4d, 0x0c, 0x5f, 0x0c, 0x70, 0x0c, 0x82, 0x0c, 0x95, 0x0c, 0xa1, 0x0c, 0xb6, 0x0c, 0xc7, 0x0c, 0xd9, 0x0c, 0xe6, 0x0c, 0xfa, 0x0c, 0x07, 0x0d, 0x17, 0x0d, 0x2a, 0x0d, 0x37, 0x0d, 0x48, 0x0d, 0x57, 0x0d, 0x67, 0x0d, 0x76, 0x0d, 0x85, 0x0d, 0x94, 0x0d, 0xa0, 0x0d, 0xaf, 0x0d, 0xbf, 0x0d, 0xc9, 0x0d, 0xdc, 0x0d, 0xe6, 0x0d, 0xf4, 0x0d, 0xff, 0x0d, 0x0f, 0x0e, 0x1a, 0x0e, 0x25, 0x0e, 0x37, 0x0e, 0x3f, 0x0e, 0x4e, 0x0e, 0x59, 0x0e, 0x64, 0x0e, 0x6f, 0x0e, 0x7a, 0x0e, 0x85, 0x0e, 0x8e, 0x0e, 0x9c, 0x0e, 0xa5, 0x0e, 0xb0, 0x0e, 0xb9, 0x0e, 0xc4, 0x0e, 0xcc, 0x0e, 0xd7, 0x0e, 0xe0, 0x0e, 0xe7, 0x0e, 0xf4, 0x0e, 0xf8, 0x0e, 0x05, 0x0f, 0x0c, 0x0f, 0x15, 0x0f, 0x1d, 0x0f, 0x26, 0x0f, 0x29, 0x0f, 0x35, 0x0f, 0x38, 0x0f, 0x40, 0x0f, 0x47, 0x0f, 0x4d, 0x0f, 0x57, 0x0f, 0x58, 0x0f, 0x61, 0x0f, 0x62, 0x0f, 0x6a, 0x0f, 0x70, 0x0f, 0x75, 0x0f, 0x7a, 0x0f, 0x7d, 0x0f, 0x84, 0x0f, 0x88, 0x0f, 0x8d, 0x0f, 0x8f, 0x0f, 0x95, 0x0f, 0x96, 0x0f, 0x9a, 0x0f, 0x9e, 0x0f, 0xa0, 0x0f, 0xa4, 0x0f, 0xa4, 0x0f, 0xa9, 0x0f, 0xa9, 0x0f, 0xad, 0x0f, 0xaf, 0x0f, 0xad, 0x0f, 0xb0, 0x0f, 0xb0, 0x0f, 0xb2, 0x0f, 0xb4, 0x0f, 0xb4, 0x0f, 0xb4, 0x0f, 0xb7, 0x0f, 0xb6, 0x0f, 0xb2, 0x0f, 0xb2, 0x0f, 0xb4, 0x0f, 0xb0, 0x0f, 0xb0, 0x0f, 0xaf, 0x0f, 0xaf, 0x0f, 0xad, 0x0f, 0xa9, 0x0f, 0xa9, 0x0f, 0xa1, 0x0f, 0xa5, 0x0f, 0xa1, 0x0f, 0x9f, 0x0f, 0x9c, 0x0f, 0x97, 0x0f, 0x95, 0x0f, 0x8f, 0x0f, 0x8d, 0x0f, 0x89, 0x0f, 0x87, 0x0f, 0x7f, 0x0f, 0x79, 0x0f, 0x77, 0x0f, 0x70, 0x0f, 0x6e, 0x0f, 0x67, 0x0f, 0x61, 0x0f, 0x5f, 0x0f, 0x54, 0x0f, 0x52, 0x0f, 0x47, 0x0f, 0x47, 0x0f, 0x3c, 0x0f, 0x36, 0x0f, 0x2f, 0x0f, 0x28, 0x0f, 0x20, 0x0f, 0x17, 0x0f, 0x11, 0x0f, 0x06, 0x0f, 0xff, 0x0e, 0xf7, 0x0e, 0xef, 0x0e, 0xe7, 0x0e, 0xde, 0x0e, 0xd5, 0x0e, 0xc8, 0x0e, 0xc2, 0x0e, 0xb7, 0x0e, 0xae, 0x0e, 0xa6, 0x0e, 0x99, 0x0e, 0x90, 0x0e, 0x85, 0x0e, 0x7c, 0x0e, 0x6f, 0x0e, 0x66, 0x0e, 0x5a, 0x0e, 0x4e, 0x0e, 0x42, 0x0e, 0x37, 0x0e, 0x2e, 0x0e, 0x1e, 0x0e, 0x11, 0x0e, 0x08, 0x0e, 0xf7, 0x0d, 0xef, 0x0d, 0xdf, 0x0d, 0xd4, 0x0d, 0xc4, 0x0d, 0xba, 0x0d, 0xac, 0x0d, 0x9e, 0x0d, 0x90, 0x0d, 0x7f, 0x0d, 0x76, 0x0d, 0x65, 0x0d, 0x55, 0x0d, 0x49, 0x0d, 0x37, 0x0d, 0x2c, 0x0d, 0x1c, 0x0d, 0x09, 0x0d, 0xfe, 0x0c, 0xed, 0x0c, 0xdd, 0x0c, 0xce, 0x0c, 0xbd, 0x0c, 0xa9, 0x0c, 0x9c, 0x0c, 0x89, 0x0c, 0x7a, 0x0c, 0x67, 0x0c, 0x58, 0x0c, 0x47, 0x0c, 0x37, 0x0c, 0x26, 0x0c, 0x14, 0x0c, 0x05, 0x0c, 0xf0, 0x0b, 0xde, 0x0b, 0xcd, 0x0b, 0xbd, 0x0b, 0xa7, 0x0b, 0x96, 0x0b, 0x87, 0x0b, 0x6f, 0x0b, 0x5f, 0x0b, 0x4a, 0x0b, 0x39, 0x0b, 0x25, 0x0b, 0x15, 0x0b, 0xfe, 0x0a, 0xec, 0x0a, 0xd6, 0x0a, 0xc0, 0x0a, 0xb2, 0x0a, 0x9a, 0x0a, 0x86, 0x0a, 0x74, 0x0a, 0x5f, 0x0a, 0x4c, 0x0a, 0x37, 0x0a, 0x21, 0x0a, 0x0e, 0x0a, 0xf7, 0x09, 0xe4, 0x09, 0xcf, 0x09, 0xb7, 0x09, 0xa5, 0x09, 0x8c, 0x09, 0x77, 0x09, 0x65, 0x09, 0x4e, 0x09, 0x37, 0x09, 0x20, 0x09, 0x0e, 0x09, 0xf6, 0x08, 0xde, 0x08, 0xc9, 0x08, 0xb1, 0x08, 0x9c, 0x08, 0x87, 0x08, 0x6c, 0x08, 0x59, 0x08, 0x3f, 0x08, 0x29, 0x08, 0x15, 0x08, 0xfb, 0x07, 0xe6, 0x07, 0xcc, 0x07, 0xbb, 0x07, 0x9f, 0x07, 0x87, 0x07, 0x6f, 0x07, 0x5b, 0x07, 0x43, 0x07, 0x28, 0x07, 0x10, 0x07, 0xf7, 0x06, 0xe3, 0x06, 0xcb, 0x06, 0xb3, 0x06, 0x97, 0x06, 0x83, 0x06, 0x67, 0x06, 0x4f, 0x06, 0x37, 0x06, 0x1e, 0x06, 0x08, 0x06, 0xec, 0x05, 0xd6, 0x05, 0xbb, 0x05, 0xa4, 0x05, 0x8c, 0x05, 0x72, 0x05, 0x5a, 0x05, 0x42, 0x05, 0x27, 0x05, 0x0f, 0x05, 0xf7, 0x04, 0xdc, 0x04, 0xc4, 0x04, 0xa8, 0x04, 0x90, 0x04, 0x78, 0x04, 0x5e, 0x04, 0x46, 0x04, 0x2e, 0x04, 0x13, 0x04, 0xf9, 0x03, 0xe3, 0x03, 0xc9, 0x03, 0xad, 0x03, 0x93, 0x03, 0x7b, 0x03, 0x63, 0x03, 0x47, 0x03, 0x2d, 0x03, 0x13, 0x03, 0xfd, 0x02, 0xe1, 0x02, 0xc7, 0x02, 0xad, 0x02, 0x95, 0x02, 0x7b, 0x02, 0x63, 0x02, 0x45, 0x02, 0x2f, 0x02, 0x15, 0x02, 0xfc, 0x01, 0xdf, 0x01, 0xc9, 0x01, 0xac, 0x01, 0x94, 0x01, 0x79, 0x01, 0x5e, 0x01, 0x48, 0x01, 0x2d, 0x01, 0x13, 0x01, 0xfb, 0x00, 0xe3, 0x00, 0xc5, 0x00, 0xb0, 0x00, 0x95, 0x00, 0x7a, 0x00, 0x61, 0x00, 0x49, 0x00, 0x2e, 0x00, 0x14, 0x00, 0xfb, 0xff, 0xe1, 0xff, 0xce, 0xff, 0xb0, 0xff, 0x98, 0xff, 0x7d, 0xff, 0x66, 0xff, 0x4a, 0xff, 0x32, 0xff, 0x1b, 0xff, 0x00, 0xff, 0xe5, 0xfe, 0xd0, 0xfe, 0xb5, 0xfe, 0x9a, 0xfe, 0x82, 0xfe, 0x69, 0xfe, 0x54, 0xfe, 0x39, 0xfe, 0x1f, 0xfe, 0x06, 0xfe, 0xef, 0xfd, 0xd5, 0xfd, 0xbb, 0xfd, 0xa7, 0xfd, 0x8b, 0xfd, 0x73, 0xfd, 0x5b, 0xfd, 0x3f, 0xfd, 0x2b, 0xfd, 0x13, 0xfd, 0xf7, 0xfc, 0xe3, 0xfc, 0xc7, 0xfc, 0xaf, 0xfc, 0x9b, 0xfc, 0x83, 0xfc, 0x6b, 0xfc, 0x51, 0xfc, 0x3b, 0xfc, 0x23, 0xfc, 0x09, 0xfc, 0xf5, 0xfb, 0xda, 0xfb, 0xcc, 0xfb, 0xa9, 0xfb, 0x99, 0xfb, 0x81, 0xfb, 0x69, 0xfb, 0x55, 0xfb, 0x39, 0xfb, 0x29, 0xfb, 0x10, 0xfb, 0xf8, 0xfa, 0xe1, 0xfa, 0xca, 0xfa, 0xb9, 0xfa, 0xa0, 0xfa, 0x88, 0xfa, 0x75, 0xfa, 0x5c, 0xfa, 0x49, 0xfa, 0x2e, 0xfa, 0x1c, 0xfa, 0x06, 0xfa, 0xed, 0xf9, 0xdd, 0xf9, 0xc8, 0xf9, 0xb2, 0xf9, 0x9d, 0xf9, 0x89, 0xf9, 0x71, 0xf9, 0x5e, 0xf9, 0x48, 0xf9, 0x35, 0xf9, 0x1d, 0xf9, 0x0d, 0xf9, 0xf6, 0xf8, 0xe5, 0xf8, 0xd0, 0xf8, 0xba, 0xf8, 0xa9, 0xf8, 0x95, 0xf8, 0x85, 0xf8, 0x6d, 0xf8, 0x59, 0xf8, 0x49, 0xf8, 0x34, 0xf8, 0x21, 0xf8, 0x15, 0xf8, 0xf9, 0xf7, 0xea, 0xf7, 0xd9, 0xf7, 0xc3, 0xf7, 0xb2, 0xf7, 0xa0, 0xf7, 0x91, 0xf7, 0x7b, 0xf7, 0x6a, 0xf7, 0x5a, 0xf7, 0x47, 0xf7, 0x37, 0xf7, 0x24, 0xf7, 0x13, 0xf7, 0x01, 0xf7, 0xf1, 0xf6, 0xe1, 0xf6, 0xcf, 0xf6, 0xc2, 0xf6, 0xb1, 0xf6, 0x9f, 0xf6, 0x90, 0xf6, 0x81, 0xf6, 0x71, 0xf6, 0x60, 0xf6, 0x51, 0xf6, 0x41, 0xf6, 0x30, 0xf6, 0x23, 0xf6, 0x17, 0xf6, 0x08, 0xf6, 0xf7, 0xf5, 0xe8, 0xf5, 0xdb, 0xf5, 0xcb, 0xf5, 0xbe, 0xf5, 0xb1, 0xf5, 0xa2, 0xf5, 0x93, 0xf5, 0x89, 0xf5, 0x78, 0xf5, 0x6c, 0xf5, 0x60, 0xf5, 0x51, 0xf5, 0x44, 0xf5, 0x39, 0xf5, 0x2e, 0xf5, 0x21, 0xf5, 0x14, 0xf5, 0x07, 0xf5, 0xfe, 0xf4, 0xf1, 0xf4, 0xe9, 0xf4, 0xd9, 0xf4, 0xd0, 0xf4, 0xc3, 0xf4, 0xbe, 0xf4, 0xb0, 0xf4, 0xa3, 0xf4, 0x9c, 0xf4, 0x91, 0xf4, 0x86, 0xf4, 0x79, 0xf4, 0x72, 0xf4, 0x6a, 0xf4, 0x5f, 0xf4, 0x54, 0xf4, 0x4f, 0xf4, 0x41, 0xf4, 0x3a, 0xf4, 0x31, 0xf4, 0x29, 0xf4, 0x21, 0xf4, 0x17, 0xf4, 0x10, 0xf4, 0x09, 0xf4, 0x01, 0xf4, 0xfa, 0xf3, 0xf4, 0xf3, 0xe9, 0xf3, 0xe3, 0xf3, 0xdc, 0xf3, 0xd8, 0xf3, 0xd1, 0xf3, 0xc9, 0xf3, 0xc6, 0xf3, 0xbb, 0xf3, 0xb7, 0xf3, 0xb1, 0xf3, 0xaa, 0xf3, 0xa8, 0xf3, 0x9f, 0xf3, 0x9e, 0xf3, 0x96, 0xf3, 0x94, 0xf3, 0x8c, 0xf3, 0x89, 0xf3, 0x86, 0xf3, 0x81, 0xf3, 0x7e, 0xf3, 0x79, 0xf3, 0x77, 0xf3, 0x71, 0xf3, 0x6f, 0xf3, 0x6b, 0xf3, 0x66, 0xf3, 0x66, 0xf3, 0x62, 0xf3, 0x5f, 0xf3, 0x60, 0xf3, 0x5c, 0xf3, 0x59, 0xf3, 0x59, 0xf3, 0x53, 0xf3, 0x53, 0xf3, 0x52, 0xf3, 0x51, 0xf3, 0x52, 0xf3, 0x50, 0xf3, 0x50, 0xf3, 0x4e, 0xf3, 0x4e, 0xf3, 0x4e, 0xf3, 0x4e, 0xf3, 0x50, 0xf3, 0x4e, 0xf3, 0x50, 0xf3, 0x51, 0xf3, 0x50, 0xf3, 0x52, 0xf3, 0x52, 0xf3, 0x52, 0xf3, 0x57, 0xf3, 0x57, 0xf3, 0x59, 0xf3, 0x59, 0xf3, 0x5f, 0xf3, 0x60, 0xf3, 0x5f, 0xf3, 0x64, 0xf3, 0x62, 0xf3, 0x6b, 0xf3, 0x6b, 0xf3, 0x6f, 0xf3, 0x73, 0xf3, 0x77, 0xf3, 0x7a, 0xf3, 0x80, 0xf3, 0x82, 0xf3, 0x86, 0xf3, 0x8b, 0xf3, 0x8c, 0xf3, 0x94, 0xf3, 0x99, 0xf3, 0x9b, 0xf3, 0xa1, 0xf3, 0xa7, 0xf3, 0xae, 0xf3, 0xb2, 0xf3, 0xb7, 0xf3, 0xc0, 0xf3, 0xc2, 0xf3, 0xca, 0xf3, 0xd1, 0xf3, 0xd4, 0xf3, 0xde, 0xf3, 0xe1, 0xf3, 0xec, 0xf3, 0xf0, 0xf3, 0xf6, 0xf3, 0x01, 0xf4, 0x08, 0xf4, 0x10, 0xf4, 0x17, 0xf4, 0x20, 0xf4, 0x26, 0xf4, 0x2f, 0xf4, 0x38, 0xf4, 0x41, 0xf4, 0x49, 0xf4, 0x50, 0xf4, 0x5b, 0xf4, 0x61, 0xf4, 0x6c, 0xf4, 0x77, 0xf4, 0x7c, 0xf4, 0x89, 0xf4, 0x93, 0xf4, 0x9c, 0xf4, 0xa6, 0xf4, 0xb1, 0xf4, 0xba, 0xf4, 0xc7, 0xf4, 0xd1, 0xf4, 0xd9, 0xf4, 0xe4, 0xf4, 0xf3, 0xf4, 0xfa, 0xf4, 0x07, 0xf5, 0x11, 0xf5, 0x1f, 0xf5, 0x2c, 0xf5, 0x36, 0xf5, 0x41, 0xf5, 0x4e, 0xf5, 0x59, 0xf5, 0x66, 0xf5, 0x72, 0xf5, 0x7f, 0xf5, 0x8a, 0xf5, 0x99, 0xf5, 0xa6, 0xf5, 0xb3, 0xf5, 0xbe, 0xf5, 0xc9, 0xf5, 0xda, 0xf5, 0xe7, 0xf5, 0xf6, 0xf5, 0x02, 0xf6, 0x0f, 0xf6, 0x1c, 0xf6, 0x2f, 0xf6, 0x3b, 0xf6, 0x49, 0xf6, 0x5b, 0xf6, 0x64, 0xf6, 0x73, 0xf6, 0x83, 0xf6, 0x92, 0xf6, 0xa1, 0xf6, 0xb0, 0xf6, 0xc0, 0xf6, 0xd1, 0xf6, 0xde, 0xf6, 0xec, 0xf6, 0xff, 0xf6, 0x10, 0xf7, 0x1c, 0xf7, 0x2f, 0xf7, 0x3c, 0xf7, 0x4c, 0xf7, 0x5f, 0xf7, 0x6c, 0xf7, 0x7f, 0xf7, 0x91, 0xf7, 0x9c, 0xf7, 0xb0, 0xf7, 0xbf, 0xf7, 0xd0, 0xf7, 0xe2, 0xf7, 0xf3, 0xf7, 0x05, 0xf8, 0x12, 0xf8, 0x2a, 0xf8, 0x36, 0xf8, 0x49, 0xf8, 0x58, 0xf8, 0x6c, 0xf8, 0x7d, 0xf8, 0x8d, 0xf8, 0xa2, 0xf8, 0xb4, 0xf8, 0xc6, 0xf8, 0xd9, 0xf8, 0xed, 0xf8, 0xfd, 0xf8, 0x11, 0xf9, 0x22, 0xf9, 0x35, 0xf9, 0x48, 0xf9, 0x56, 0xf9, 0x6a, 0xf9, 0x7d, 0xf9, 0x90, 0xf9, 0xa6, 0xf9, 0xb6, 0xf9, 0xc8, 0xf9, 0xdd, 0xf9, 0xf1, 0xf9, 0x05, 0xfa, 0x16, 0xfa, 0x29, 0xfa, 0x3d, 0xfa, 0x51, 0xfa, 0x65, 0xfa, 0x79, 0xfa, 0x8a, 0xfa, 0xa0, 0xfa, 0xb5, 0xfa, 0xc6, 0xfa, 0xd9, 0xfa, 0xf1, 0xfa, 0x05, 0xfb, 0x15, 0xfb, 0x29, 0xfb, 0x42, 0xfb, 0x54, 0xfb, 0x66, 0xfb, 0x7c, 0xfb, 0x90, 0xfb, 0xa2, 0xfb, 0xb8, 0xfb, 0xcc, 0xfb, 0xe5, 0xfb, 0xf2, 0xfb, 0x09, 0xfc, 0x1f, 0xfc, 0x31, 0xfc, 0x47, 0xfc, 0x5b, 0xfc, 0x71, 0xfc, 0x83, 0xfc, 0x95, 0xfc, 0xb1, 0xfc, 0xc5, 0xfc, 0xd5, 0xfc, 0xef, 0xfc, 0xfd, 0xfc, 0x13, 0xfd, 0x2b, 0xfd, 0x3d, 0xfd, 0x53, 0xfd, 0x69, 0xfd, 0x7b, 0xfd, 0x93, 0xfd, 0xa7, 0xfd, 0xbb, 0xfd, 0xd1, 0xfd, 0xe3, 0xfd, 0xf9, 0xfd, 0x10, 0xfe, 0x25, 0xfe, 0x39, 0xfe, 0x52, 0xfe, 0x61, 0xfe, 0x76, 0xfe, 0x8e, 0xfe, 0xa3, 0xfe, 0xb8, 0xfe, 0xca, 0xfe, 0xe1, 0xfe, 0xf9, 0xfe, 0x0b, 0xff, 0x21, 0xff, 0x36, 0xff, 0x4b, 0xff, 0x5c, 0xff, 0x72, 0xff, 0x8a, 0xff, 0x9e, 0xff, 0xb3, 0xff, 0xc6, 0xff, 0xdd, 0xff, 0xf0, 0xff, 0x02, 0x00, 0x1a, 0x00, 0x2c, 0x00, 0x41, 0x00, 0x58, 0x00, 0x6d, 0x00, 0x7f, 0x00, 0x92, 0x00, 0xac, 0x00, 0xbb, 0x00, 0xd1, 0x00, 0xe6, 0x00, 0xfa, 0x00, 0x10, 0x01, 0x22, 0x01, 0x39, 0x01, 0x4c, 0x01, 0x61, 0x01, 0x73, 0x01, 0x88, 0x01, 0x9d, 0x01, 0xb1, 0x01, 0xc6, 0x01, 0xdb, 0x01, 0xee, 0x01, 0x01, 0x02, 0x17, 0x02, 0x2b, 0x02, 0x3d, 0x02, 0x53, 0x02, 0x63, 0x02, 0x7b, 0x02, 0x93, 0x02, 0x9f, 0x02, 0xb5, 0x02, 0xc7, 0x02, 0xdb, 0x02, 0xef, 0x02, 0x01, 0x03, 0x13, 0x03, 0x29, 0x03, 0x39, 0x03, 0x4d, 0x03, 0x61, 0x03, 0x75, 0x03, 0x85, 0x03, 0x99, 0x03, 0xad, 0x03, 0xbf, 0x03, 0xd1, 0x03, 0xe3, 0x03, 0xf9, 0x03, 0x0b, 0x04, 0x1b, 0x04, 0x2f, 0x04, 0x40, 0x04, 0x54, 0x04, 0x64, 0x04, 0x7a, 0x04, 0x8b, 0x04, 0x9c, 0x04, 0xaf, 0x04, 0xbf, 0x04, 0xcf, 0x04, 0xe2, 0x04, 0xf4, 0x04, 0x06, 0x05, 0x16, 0x05, 0x27, 0x05, 0x38, 0x05, 0x4b, 0x05, 0x5b, 0x05, 0x6c, 0x05, 0x7f, 0x05, 0x8c, 0x05, 0x9f, 0x05, 0xb0, 0x05, 0xc0, 0x05, 0xcf, 0x05, 0xe0, 0x05, 0xf0, 0x05, 0x02, 0x06, 0x10, 0x06, 0x23, 0x06, 0x2f, 0x06, 0x40, 0x06, 0x50, 0x06, 0x5f, 0x06, 0x70, 0x06, 0x7f, 0x06, 0x8f, 0x06, 0xa2, 0x06, 0xab, 0x06, 0xbc, 0x06, 0xcb, 0x06, 0xdb, 0x06, 0xea, 0x06, 0xf4, 0x06, 0x07, 0x07, 0x13, 0x07, 0x22, 0x07, 0x30, 0x07, 0x3f, 0x07, 0x4c, 0x07, 0x5b, 0x07, 0x6a, 0x07, 0x77, 0x07, 0x82, 0x07, 0x93, 0x07, 0xa0, 0x07, 0xab, 0x07, 0xbb, 0x07, 0xc3, 0x07, 0xd6, 0x07, 0xdf, 0x07, 0xee, 0x07, 0xfa, 0x07, 0x06, 0x08, 0x15, 0x08, 0x1f, 0x08, 0x2d, 0x08, 0x36, 0x08, 0x42, 0x08, 0x50, 0x08, 0x57, 0x08, 0x66, 0x08, 0x6f, 0x08, 0x7c, 0x08, 0x87, 0x08, 0x92, 0x08, 0x9f, 0x08, 0xa8, 0x08, 0xb4, 0x08, 0xbf, 0x08, 0xc7, 0x08, 0xd2, 0x08, 0xde, 0x08, 0xe4, 0x08, 0xf4, 0x08, 0xfc, 0x08, 0x02, 0x09, 0x0e, 0x09, 0x17, 0x09, 0x20, 0x09, 0x29, 0x09, 0x35, 0x09, 0x3c, 0x09, 0x47, 0x09, 0x4d, 0x09, 0x56, 0x09, 0x5f, 0x09, 0x67, 0x09, 0x6f, 0x09, 0x77, 0x09, 0x7f, 0x09, 0x87, 0x09, 0x8f, 0x09, 0x95, 0x09, 0x9e, 0x09, 0xa5, 0x09, 0xaa, 0x09, 0xb4, 0x09, 0xb9, 0x09, 0xc1, 0x09, 0xc6, 0x09, 0xcf, 0x09, 0xd4, 0x09, 0xda, 0x09, 0xdf, 0x09, 0xe8, 0x09, 0xed, 0x09, 0xf1, 0x09, 0xf6, 0x09, 0xfe, 0x09, 0x01, 0x0a, 0x07, 0x0a, 0x0d, 0x0a, 0x12, 0x0a, 0x17, 0x0a, 0x1c, 0x0a, 0x1f, 0x0a, 0x26, 0x0a, 0x28, 0x0a, 0x2e, 0x0a, 0x31, 0x0a, 0x34, 0x0a, 0x39, 0x0a, 0x3d, 0x0a, 0x3d, 0x0a, 0x44, 0x0a, 0x46, 0x0a, 0x49, 0x0a, 0x4c, 0x0a, 0x4f, 0x0a, 0x51, 0x0a, 0x52, 0x0a, 0x58, 0x0a, 0x58, 0x0a, 0x5c, 0x0a, 0x5a, 0x0a, 0x5f, 0x0a, 0x61, 0x0a, 0x61, 0x0a, 0x61, 0x0a, 0x65, 0x0a, 0x69, 0x0a, 0x69, 0x0a, 0x67, 0x0a, 0x69, 0x0a, 0x69, 0x0a, 0x6e, 0x0a, 0x69, 0x0a, 0x6a, 0x0a, 0x6d, 0x0a, 0x69, 0x0a, 0x6a, 0x0a, 0x69, 0x0a, 0x69, 0x0a, 0x67, 0x0a, 0x67, 0x0a, 0x67, 0x0a, 0x67, 0x0a, 0x64, 0x0a, 0x64, 0x0a, 0x64, 0x0a, 0x60, 0x0a, 0x5f, 0x0a, 0x5c, 0x0a, 0x5c, 0x0a, 0x57, 0x0a, 0x58, 0x0a, 0x56, 0x0a, 0x51, 0x0a, 0x4f, 0x0a, 0x4c, 0x0a, 0x49, 0x0a, 0x46, 0x0a, 0x44, 0x0a, 0x40, 0x0a, 0x3e, 0x0a, 0x3d, 0x0a, 0x37, 0x0a, 0x35, 0x0a, 0x30, 0x0a, 0x2a, 0x0a, 0x27, 0x0a, 0x22, 0x0a, 0x1f, 0x0a, 0x1c, 0x0a, 0x16, 0x0a, 0x12, 0x0a, 0x0e, 0x0a, 0x07, 0x0a, 0x04, 0x0a, 0xfc, 0x09, 0xf7, 0x09, 0xf1, 0x09, 0xe9, 0x09, 0xe7, 0x09, 0xe2, 0x09, 0xda, 0x09, 0xd5, 0x09, 0xcf, 0x09, 0xc8, 0x09, 0xc2, 0x09, 0xb9, 0x09, 0xb4, 0x09, 0xb0, 0x09, 0xa4, 0x09, 0x9f, 0x09, 0x97, 0x09, 0x8f, 0x09, 0x8c, 0x09, 0x82, 0x09, 0x7a, 0x09, 0x74, 0x09, 0x6a, 0x09, 0x62, 0x09, 0x5c, 0x09, 0x54, 0x09, 0x4a, 0x09, 0x44, 0x09, 0x3a, 0x09, 0x32, 0x09, 0x27, 0x09, 0x1f, 0x09, 0x17, 0x09, 0x0c, 0x09, 0x01, 0x09, 0xfc, 0x08, 0xf0, 0x08, 0xe7, 0x08, 0xdf, 0x08, 0xd2, 0x08, 0xcc, 0x08, 0xc2, 0x08, 0xb7, 0x08, 0xaa, 0x08, 0xa5, 0x08, 0x96, 0x08, 0x8e, 0x08, 0x85, 0x08, 0x78, 0x08, 0x6f, 0x08, 0x64, 0x08, 0x57, 0x08, 0x4e, 0x08, 0x42, 0x08, 0x37, 0x08, 0x2d, 0x08, 0x20, 0x08, 0x16, 0x08, 0x07, 0x08, 0xfe, 0x07, 0xf2, 0x07, 0xe7, 0x07, 0xd8, 0x07, 0xce, 0x07, 0xc2, 0x07, 0xb4, 0x07, 0xa7, 0x07, 0x9c, 0x07, 0x92, 0x07, 0x83, 0x07, 0x76, 0x07, 0x6a, 0x07, 0x5e, 0x07, 0x52, 0x07, 0x43, 0x07, 0x33, 0x07, 0x28, 0x07, 0x1a, 0x07, 0x0e, 0x07, 0xff, 0x06, 0xf6, 0x06, 0xe7, 0x06, 0xd7, 0x06, 0xcb, 0x06, 0xbc, 0x06, 0xae, 0x06, 0xa2, 0x06, 0x94, 0x06, 0x83, 0x06, 0x77, 0x06, 0x68, 0x06, 0x5b, 0x06, 0x4b, 0x06, 0x3b, 0x06, 0x2f, 0x06, 0x23, 0x06, 0x10, 0x06, 0x06, 0x06, 0xf3, 0x05, 0xe7, 0x05, 0xd4, 0x05, 0xc7, 0x05, 0xb7, 0x05, 0xa7, 0x05, 0x9b, 0x05, 0x8a, 0x05, 0x7b, 0x05, 0x6b, 0x05, 0x5c, 0x05, 0x4e, 0x05, 0x3c, 0x05, 0x30, 0x05, 0x20, 0x05, 0x0c, 0x05, 0x03, 0x05, 0xeb, 0x04, 0xdf, 0x04, 0xce, 0x04, 0xbf, 0x04, 0xb2, 0x04, 0x9f, 0x04, 0x90, 0x04, 0x7f, 0x04, 0x6f, 0x04, 0x5f, 0x04, 0x4f, 0x04, 0x3f, 0x04, 0x2f, 0x04, 0x1c, 0x04, 0x0e, 0x04, 0xff, 0x03, 0xeb, 0x03, 0xdd, 0x03, 0xcd, 0x03, 0xbb, 0x03, 0xab, 0x03, 0x9b, 0x03, 0x89, 0x03, 0x79, 0x03, 0x69, 0x03, 0x57, 0x03, 0x49, 0x03, 0x35, 0x03, 0x27, 0x03, 0x15, 0x03, 0xff, 0x02, 0xf5, 0x02, 0xe1, 0x02, 0xcf, 0x02, 0xc1, 0x02, 0xad, 0x02, 0xa1, 0x02, 0x8d, 0x02, 0x7b, 0x02, 0x69, 0x02, 0x59, 0x02, 0x45, 0x02, 0x37, 0x02, 0x27, 0x02, 0x17, 0x02, 0x03, 0x02, 0xf3, 0x01, 0xe4, 0x01, 0xcf, 0x01, 0xc3, 0x01, 0xb1, 0x01, 0x9d, 0x01, 0x8b, 0x01, 0x7c, 0x01, 0x6a, 0x01, 0x5d, 0x01, 0x46, 0x01, 0x36, 0x01, 0x25, 0x01, 0x13, 0x01, 0x06, 0x01, 0xf1, 0x00, 0xe2, 0x00, 0xd0, 0x00, 0xbe, 0x00, 0xb0, 0x00, 0x9a, 0x00, 0x8c, 0x00, 0x7a, 0x00, 0x68, 0x00, 0x5b, 0x00, 0x46, 0x00, 0x35, 0x00, 0x25, 0x00, 0x14, 0x00, 0x01, 0x00, 0xf3, 0xff, 0xe0, 0xff, 0xcf, 0xff, 0xc0, 0xff, 0xab, 0xff, 0x9e, 0xff, 0x89, 0xff, 0x7d, 0xff, 0x69, 0xff, 0x5a, 0xff, 0x47, 0xff, 0x36, 0xff, 0x29, 0xff, 0x15, 0xff, 0x05, 0xff, 0xf4, 0xfe, 0xe5, 0xfe, 0xd2, 0xfe, 0xc3, 0xfe, 0xb4, 0xfe, 0xa3, 0xfe, 0x91, 0xfe, 0x82, 0xfe, 0x6d, 0xfe, 0x5e, 0xfe, 0x4f, 0xfe, 0x3d, 0xfe, 0x2e, 0xfe, 0x1c, 0xfe, 0x0d, 0xfe, 0xfd, 0xfd, 0xeb, 0xfd, 0xdf, 0xfd, 0xcd, 0xfd, 0xbb, 0xfd, 0xad, 0xfd, 0x99, 0xfd, 0x8b, 0xfd, 0x7b, 0xfd, 0x6b, 0xfd, 0x5d, 0xfd, 0x4d, 0xfd, 0x3d, 0xfd, 0x2b, 0xfd, 0x1d, 0xfd, 0x0d, 0xfd, 0x01, 0xfd, 0xef, 0xfc, 0xdd, 0xfc, 0xd1, 0xfc, 0xc1, 0xfc, 0xb3, 0xfc, 0xa1, 0xfc, 0x95, 0xfc, 0x83, 0xfc, 0x73, 0xfc, 0x65, 0xfc, 0x57, 0xfc, 0x47, 0xfc, 0x3b, 0xfc, 0x2b, 0xfc, 0x1b, 0xfc, 0x0b, 0xfc, 0xfe, 0xfb, 0xf4, 0xfb, 0xdd, 0xfb, 0xd5, 0xfb, 0xc9, 0xfb, 0xb8, 0xfb, 0xaa, 0xfb, 0x9c, 0xfb, 0x8d, 0xfb, 0x81, 0xfb, 0x72, 0xfb, 0x60, 0xfb, 0x56, 0xfb, 0x45, 0xfb, 0x39, 0xfb, 0x2d, 0xfb, 0x21, 0xfb, 0x10, 0xfb, 0x05, 0xfb, 0xf6, 0xfa, 0xec, 0xfa, 0xde, 0xfa, 0xd0, 0xfa, 0xc1, 0xfa, 0xb5, 0xfa, 0xad, 0xfa, 0x9a, 0xfa, 0x91, 0xfa, 0x85, 0xfa, 0x76, 0xfa, 0x6a, 0xfa, 0x61, 0xfa, 0x51, 0xfa, 0x46, 0xfa, 0x38, 0xfa, 0x31, 0xfa, 0x21, 0xfa, 0x16, 0xfa, 0x0a, 0xfa, 0x01, 0xfa, 0xf2, 0xf9, 0xec, 0xf9, 0xdd, 0xf9, 0xd1, 0xf9, 0xc5, 0xf9, 0xbc, 0xf9, 0xb1, 0xf9, 0xa6, 0xf9, 0x9a, 0xf9, 0x91, 0xf9, 0x86, 0xf9, 0x7a, 0xf9, 0x71, 0xf9, 0x65, 0xf9, 0x5c, 0xf9, 0x50, 0xf9, 0x49, 0xf9, 0x3d, 0xf9, 0x35, 0xf9, 0x2c, 0xf9, 0x20, 0xf9, 0x19, 0xf9, 0x0c, 0xf9, 0x05, 0xf9, 0xf9, 0xf8, 0xf2, 0xf8, 0xe6, 0xf8, 0xdd, 0xf8, 0xd5, 0xf8, 0xcd, 0xf8, 0xc5, 0xf8, 0xba, 0xf8, 0xb1, 0xf8, 0xad, 0xf8, 0xa1, 0xf8, 0x99, 0xf8, 0x95, 0xf8, 0x88, 0xf8, 0x84, 0xf8, 0x7c, 0xf8, 0x72, 0xf8, 0x69, 0xf8, 0x64, 0xf8, 0x5d, 0xf8, 0x56, 0xf8, 0x4a, 0xf8, 0x49, 0xf8, 0x41, 0xf8, 0x39, 0xf8, 0x32, 0xf8, 0x2d, 0xf8, 0x24, 0xf8, 0x1e, 0xf8, 0x18, 0xf8, 0x11, 0xf8, 0x0d, 0xf8, 0x04, 0xf8, 0x01, 0xf8, 0xfa, 0xf7, 0xf7, 0xf7, 0xf1, 0xf7, 0xe9, 0xf7, 0xe4, 0xf7, 0xe2, 0xf7, 0xd9, 0xf7, 0xd2, 0xf7, 0xd0, 0xf7, 0xc9, 0xf7, 0xc7, 0xf7, 0xc1, 0xf7, 0xbf, 0xf7, 0xb9, 0xf7, 0xb4, 0xf7, 0xb0, 0xf7, 0xac, 0xf7, 0xa6, 0xf7, 0xa7, 0xf7, 0xa1, 0xf7, 0x9c, 0xf7, 0x99, 0xf7, 0x94, 0xf7, 0x93, 0xf7, 0x91, 0xf7, 0x8b, 0xf7, 0x89, 0xf7, 0x86, 0xf7, 0x84, 0xf7, 0x7f, 0xf7, 0x7f, 0xf7, 0x7c, 0xf7, 0x7b, 0xf7, 0x76, 0xf7, 0x73, 0xf7, 0x73, 0xf7, 0x73, 0xf7, 0x70, 0xf7, 0x70, 0xf7, 0x6c, 0xf7, 0x6a, 0xf7, 0x6c, 0xf7, 0x67, 0xf7, 0x67, 0xf7, 0x68, 0xf7, 0x61, 0xf7, 0x64, 0xf7, 0x64, 0xf7, 0x61, 0xf7, 0x63, 0xf7, 0x64, 0xf7, 0x5e, 0xf7, 0x67, 0xf7, 0x5f, 0xf7, 0x64, 0xf7, 0x64, 0xf7, 0x61, 0xf7, 0x67, 0xf7, 0x61, 0xf7, 0x68, 0xf7, 0x67, 0xf7, 0x69, 0xf7, 0x68, 0xf7, 0x6c, 0xf7, 0x6a, 0xf7, 0x6c, 0xf7, 0x70, 0xf7, 0x70, 0xf7, 0x71, 0xf7, 0x73, 0xf7, 0x73, 0xf7, 0x77, 0xf7, 0x79, 0xf7, 0x79, 0xf7, 0x80, 0xf7, 0x7c, 0xf7, 0x82, 0xf7, 0x82, 0xf7, 0x84, 0xf7, 0x8a, 0xf7, 0x8a, 0xf7, 0x91, 0xf7, 0x91, 0xf7, 0x94, 0xf7, 0x98, 0xf7, 0x9a, 0xf7, 0xa1, 0xf7, 0xa2, 0xf7, 0xa7, 0xf7, 0xab, 0xf7, 0xb1, 0xf7, 0xb2, 0xf7, 0xb8, 0xf7, 0xbf, 0xf7, 0xc1, 0xf7, 0xc4, 0xf7, 0xca, 0xf7, 0xce, 0xf7, 0xd3, 0xf7, 0xd7, 0xf7, 0xdc, 0xf7, 0xe1, 0xf7, 0xe8, 0xf7, 0xee, 0xf7, 0xf1, 0xf7, 0xf7, 0xf7, 0xfc, 0xf7, 0x04, 0xf8, 0x06, 0xf8, 0x0e, 0xf8, 0x11, 0xf8, 0x1a, 0xf8, 0x1e, 0xf8, 0x24, 0xf8, 0x2d, 0xf8, 0x2d, 0xf8, 0x39, 0xf8, 0x40, 0xf8, 0x45, 0xf8, 0x4d, 0xf8, 0x56, 0xf8, 0x59, 0xf8, 0x61, 0xf8, 0x69, 0xf8, 0x70, 0xf8, 0x75, 0xf8, 0x81, 0xf8, 0x85, 0xf8, 0x8d, 0xf8, 0x96, 0xf8, 0xa0, 0xf8, 0xa2, 0xf8, 0xad, 0xf8, 0xb5, 0xf8, 0xba, 0xf8, 0xc5, 0xf8, 0xcc, 0xf8, 0xd2, 0xf8, 0xde, 0xf8, 0xe5, 0xf8, 0xf0, 0xf8, 0xf9, 0xf8, 0x02, 0xf9, 0x08, 0xf9, 0x14, 0xf9, 0x1d, 0xf9, 0x24, 0xf9, 0x2e, 0xf9, 0x35, 0xf9, 0x41, 0xf9, 0x49, 0xf9, 0x54, 0xf9, 0x5d, 0xf9, 0x69, 0xf9, 0x6e, 0xf9, 0x76, 0xf9, 0x85, 0xf9, 0x90, 0xf9, 0x98, 0xf9, 0xa1, 0xf9, 0xaa, 0xf9, 0xb6, 0xf9, 0xc1, 0xf9, 0xca, 0xf9, 0xd5, 0xf9, 0xe0, 0xf9, 0xe6, 0xf9, 0xf5, 0xf9, 0xfe, 0xf9, 0x09, 0xfa, 0x15, 0xfa, 0x20, 0xfa, 0x2d, 0xfa, 0x35, 0xfa, 0x41, 0xfa, 0x4c, 0xfa, 0x59, 0xfa, 0x61, 0xfa, 0x6d, 0xfa, 0x79, 0xfa, 0x85, 0xfa, 0x91, 0xfa, 0x9d, 0xfa, 0xa6, 0xfa, 0xb1, 0xfa, 0xbe, 0xfa, 0xc8, 0xfa, 0xd6, 0xfa, 0xe5, 0xfa, 0xee, 0xfa, 0xfd, 0xfa, 0x06, 0xfb, 0x11, 0xfb, 0x1e, 0xfb, 0x2d, 0xfb, 0x39, 0xfb, 0x45, 0xfb, 0x51, 0xfb, 0x5d, 0xfb, 0x69, 0xfb, 0x75, 0xfb, 0x81, 0xfb, 0x8d, 0xfb, 0x9d, 0xfb, 0xa8, 0xfb, 0xb4, 0xfb, 0xc4, 0xfb, 0xce, 0xfb, 0xda, 0xfb, 0xe9, 0xfb, 0xf4, 0xfb, 0x01, 0xfc, 0x11, 0xfc, 0x1d, 0xfc, 0x29, 0xfc, 0x37, 0xfc, 0x43, 0xfc, 0x53, 0xfc, 0x59, 0xfc, 0x6d, 0xfc, 0x7d, 0xfc, 0x83, 0xfc, 0x95, 0xfc, 0xa1, 0xfc, 0xb1, 0xfc, 0xbb, 0xfc, 0xcb, 0xfc, 0xd7, 0xfc, 0xe3, 0xfc, 0xf1, 0xfc, 0xfd, 0xfc, 0x0d, 0xfd, 0x19, 0xfd, 0x2b, 0xfd, 0x35, 0xfd, 0x43, 0xfd, 0x51, 0xfd, 0x61, 0xfd, 0x6d, 0xfd, 0x79, 0xfd, 0x8b, 0xfd, 0x97, 0xfd, 0xa5, 0xfd, 0xaf, 0xfd, 0xc1, 0xfd, 0xcf, 0xfd, 0xdb, 0xfd, 0xeb, 0xfd, 0xf7, 0xfd, 0x03, 0xfe, 0x15, 0xfe, 0x21, 0xfe, 0x30, 0xfe, 0x3f, 0xfe, 0x4b, 0xfe, 0x5b, 0xfe, 0x67, 0xfe, 0x75, 0xfe, 0x87, 0xfe, 0x90, 0xfe, 0x9f, 0xfe, 0xb2, 0xfe, 0xbb, 0xfe, 0xcc, 0xfe, 0xdc, 0xfe, 0xe7, 0xfe, 0xf3, 0xfe, 0x06, 0xff, 0x11, 0xff, 0x21, 0xff, 0x2f, 0xff, 0x3b, 0xff, 0x4b, 0xff, 0x57, 0xff, 0x66, 0xff, 0x72, 0xff, 0x83, 0xff, 0x8f, 0xff, 0x9c, 0xff, 0xab, 0xff, 0xb9, 0xff, 0xc8, 0xff, 0xd8, 0xff, 0xe1, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x08, 0x00, 0x1d, 0x00, 0x25, 0x00, 0x32, 0x00, 0x44, 0x00, 0x52, 0x00, 0x61, 0x00, 0x6e, 0x00, 0x7d, 0x00, 0x8b, 0x00, 0x97, 0x00, 0xa6, 0x00, 0xb3, 0x00, 0xc1, 0x00, 0xcd, 0x00, 0xdc, 0x00, 0xe9, 0x00, 0xfa, 0x00, 0x03, 0x01, 0x15, 0x01, 0x1e, 0x01, 0x30, 0x01, 0x3a, 0x01, 0x46, 0x01, 0x57, 0x01, 0x61, 0x01, 0x6f, 0x01, 0x7b, 0x01, 0x8b, 0x01, 0x97, 0x01, 0xa3, 0x01, 0xb4, 0x01, 0xc0, 0x01, 0xcc, 0x01, 0xd8, 0x01, 0xe7, 0x01, 0xf1, 0x01, 0x03, 0x02, 0x0b, 0x02, 0x1b, 0x02, 0x27, 0x02, 0x33, 0x02, 0x41, 0x02, 0x4d, 0x02, 0x5b, 0x02, 0x65, 0x02, 0x73, 0x02, 0x81, 0x02, 0x8d, 0x02, 0x9b, 0x02, 0xa5, 0x02, 0xb3, 0x02, 0xbd, 0x02, 0xcd, 0x02, 0xd7, 0x02, 0xe3, 0x02, 0xf1, 0x02, 0xf9, 0x02, 0x09, 0x03, 0x15, 0x03, 0x1d, 0x03, 0x29, 0x03, 0x37, 0x03, 0x41, 0x03, 0x4d, 0x03, 0x59, 0x03, 0x65, 0x03, 0x73, 0x03, 0x7b, 0x03, 0x89, 0x03, 0x95, 0x03, 0x9d, 0x03, 0xa9, 0x03, 0xb5, 0x03, 0xbf, 0x03, 0xcd, 0x03, 0xd7, 0x03, 0xdf, 0x03, 0xef, 0x03, 0xf5, 0x03, 0x02, 0x04, 0x0e, 0x04, 0x16, 0x04, 0x24, 0x04, 0x2e, 0x04, 0x37, 0x04, 0x43, 0x04, 0x4b, 0x04, 0x57, 0x04, 0x62, 0x04, 0x6c, 0x04, 0x77, 0x04, 0x7f, 0x04, 0x88, 0x04, 0x94, 0x04, 0x9c, 0x04, 0xa7, 0x04, 0xb3, 0x04, 0xb8, 0x04, 0xc7, 0x04, 0xce, 0x04, 0xd7, 0x04, 0xdf, 0x04, 0xe8, 0x04, 0xf0, 0x04, 0xfb, 0x04, 0x07, 0x05, 0x0f, 0x05, 0x16, 0x05, 0x22, 0x05, 0x27, 0x05, 0x30, 0x05, 0x3a, 0x05, 0x42, 0x05, 0x4b, 0x05, 0x53, 0x05, 0x5c, 0x05, 0x63, 0x05, 0x6f, 0x05, 0x73, 0x05, 0x7b, 0x05, 0x87, 0x05, 0x8b, 0x05, 0x93, 0x05, 0x9a, 0x05, 0xa3, 0x05, 0xa8, 0x05, 0xb7, 0x05, 0xb7, 0x05, 0xc3, 0x05, 0xc8, 0x05, 0xcf, 0x05, 0xd7, 0x05, 0xdb, 0x05, 0xe7, 0x05, 0xe7, 0x05, 0xf3, 0x05, 0xf7, 0x05, 0xff, 0x05, 0x04, 0x06, 0x0b, 0x06, 0x10, 0x06, 0x17, 0x06, 0x1f, 0x06, 0x23, 0x06, 0x2b, 0x06, 0x2f, 0x06, 0x36, 0x06, 0x3b, 0x06, 0x40, 0x06, 0x44, 0x06, 0x4c, 0x06, 0x53, 0x06, 0x56, 0x06, 0x5c, 0x06, 0x62, 0x06, 0x67, 0x06, 0x6b, 0x06, 0x70, 0x06, 0x74, 0x06, 0x7b, 0x06, 0x7c, 0x06, 0x83, 0x06, 0x86, 0x06, 0x8c, 0x06, 0x8f, 0x06, 0x93, 0x06, 0x97, 0x06, 0x9b, 0x06, 0xa0, 0x06, 0xa3, 0x06, 0xa7, 0x06, 0xa7, 0x06, 0xac, 0x06, 0xaf, 0x06, 0xb7, 0x06, 0xb8, 0x06, 0xba, 0x06, 0xbf, 0x06, 0xc2, 0x06, 0xc2, 0x06, 0xc6, 0x06, 0xcb, 0x06, 0xcb, 0x06, 0xd0, 0x06, 0xcb, 0x06, 0xd3, 0x06, 0xd4, 0x06, 0xd7, 0x06, 0xdc, 0x06, 0xd7, 0x06, 0xdc, 0x06, 0xde, 0x06, 0xde, 0x06, 0xe3, 0x06, 0xe3, 0x06, 0xe3, 0x06, 0xe7, 0x06, 0xe7, 0x06, 0xe8, 0x06, 0xeb, 0x06, 0xea, 0x06, 0xeb, 0x06, 0xeb, 0x06, 0xec, 0x06, 0xec, 0x06, 0xef, 0x06, 0xef, 0x06, 0xef, 0x06, 0xef, 0x06, 0xf2, 0x06, 0xef, 0x06, 0xf2, 0x06, 0xec, 0x06, 0xef, 0x06, 0xef, 0x06, 0xec, 0x06, 0xeb, 0x06, 0xef, 0x06, 0xea, 0x06, 0xef, 0x06, 0xeb, 0x06, 0xea, 0x06, 0xea, 0x06, 0xea, 0x06, 0xe7, 0x06, 0xe3, 0x06, 0xe6, 0x06, 0xe3, 0x06, 0xe0, 0x06, 0xde, 0x06, 0xe0, 0x06, 0xde, 0x06, 0xde, 0x06, 0xda, 0x06, 0xd7, 0x06, 0xd4, 0x06, 0xd2, 0x06, 0xd0, 0x06, 0xcb, 0x06, 0xcb, 0x06, 0xc7, 0x06, 0xc6, 0x06, 0xc3, 0x06, 0xc2, 0x06, 0xbc, 0x06, 0xba, 0x06, 0xb3, 0x06, 0xb3, 0x06, 0xb0, 0x06, 0xae, 0x06, 0xab, 0x06, 0xa7, 0x06, 0xa4, 0x06, 0x9f, 0x06, 0x9b, 0x06, 0x97, 0x06, 0x94, 0x06, 0x8f, 0x06, 0x8b, 0x06, 0x87, 0x06, 0x83, 0x06, 0x7f, 0x06, 0x7b, 0x06, 0x77, 0x06, 0x73, 0x06, 0x6e, 0x06, 0x66, 0x06, 0x63, 0x06, 0x5f, 0x06, 0x5a, 0x06, 0x53, 0x06, 0x50, 0x06, 0x4a, 0x06, 0x44, 0x06, 0x40, 0x06, 0x37, 0x06, 0x33, 0x06, 0x2c, 0x06, 0x2a, 0x06, 0x23, 0x06, 0x1e, 0x06, 0x1a, 0x06, 0x12, 0x06, 0x0b, 0x06, 0x06, 0x06, 0xfc, 0x05, 0xfb, 0x05, 0xf3, 0x05, 0xee, 0x05, 0xe7, 0x05, 0xe0, 0x05, 0xd7, 0x05, 0xd4, 0x05, 0xcb, 0x05, 0xc3, 0x05, 0xbf, 0x05, 0xb3, 0x05, 0xb3, 0x05, 0xa6, 0x05, 0xa3, 0x05, 0x9a, 0x05, 0x96, 0x05, 0x8c, 0x05, 0x84, 0x05, 0x7b, 0x05, 0x76, 0x05, 0x6c, 0x05, 0x63, 0x05, 0x5e, 0x05, 0x54, 0x05, 0x50, 0x05, 0x47, 0x05, 0x3f, 0x05, 0x36, 0x05, 0x2f, 0x05, 0x27, 0x05, 0x20, 0x05, 0x16, 0x05, 0x12, 0x05, 0x06, 0x05, 0xfb, 0x04, 0xf4, 0x04, 0xee, 0x04, 0xe2, 0x04, 0xda, 0x04, 0xd3, 0x04, 0xc7, 0x04, 0xc2, 0x04, 0xb6, 0x04, 0xaf, 0x04, 0xa6, 0x04, 0x9e, 0x04, 0x92, 0x04, 0x8b, 0x04, 0x7f, 0x04, 0x78, 0x04, 0x70, 0x04, 0x64, 0x04, 0x5e, 0x04, 0x52, 0x04, 0x46, 0x04, 0x3f, 0x04, 0x37, 0x04, 0x2b, 0x04, 0x22, 0x04, 0x18, 0x04, 0x0f, 0x04, 0x04, 0x04, 0xfb, 0x03, 0xef, 0x03, 0xe7, 0x03, 0xdf, 0x03, 0xd3, 0x03, 0xcb, 0x03, 0xbf, 0x03, 0xb5, 0x03, 0xa9, 0x03, 0xa1, 0x03, 0x95, 0x03, 0x8b, 0x03, 0x81, 0x03, 0x77, 0x03, 0x6d, 0x03, 0x61, 0x03, 0x57, 0x03, 0x4b, 0x03, 0x41, 0x03, 0x35, 0x03, 0x2f, 0x03, 0x23, 0x03, 0x17, 0x03, 0x0f, 0x03, 0x01, 0x03, 0xf9, 0x02, 0xed, 0x02, 0xe3, 0x02, 0xd5, 0x02, 0xcf, 0x02, 0xc3, 0x02, 0xb7, 0x02, 0xab, 0x02, 0x9f, 0x02, 0x95, 0x02, 0x89, 0x02, 0x81, 0x02, 0x73, 0x02, 0x69, 0x02, 0x5d, 0x02, 0x55, 0x02, 0x49, 0x02, 0x39, 0x02, 0x2f, 0x02, 0x27, 0x02, 0x1b, 0x02, 0x11, 0x02, 0x03, 0x02, 0xf9, 0x01, 0xee, 0x01, 0xdf, 0x01, 0xd9, 0x01, 0xca, 0x01, 0xc1, 0x01, 0xb5, 0x01, 0xa8, 0x01, 0x9f, 0x01, 0x93, 0x01, 0x87, 0x01, 0x7c, 0x01, 0x6f, 0x01, 0x64, 0x01, 0x5b, 0x01, 0x4b, 0x01, 0x43, 0x01, 0x36, 0x01, 0x28, 0x01, 0x1e, 0x01, 0x16, 0x01, 0x07, 0x01, 0xfd, 0x00, 0xf2, 0x00, 0xe5, 0x00, 0xda, 0x00, 0xce, 0x00, 0xc1, 0x00, 0xb8, 0x00, 0xb0, 0x00, 0xa0, 0x00, 0x95, 0x00, 0x8b, 0x00, 0x7d, 0x00, 0x74, 0x00, 0x68, 0x00, 0x5e, 0x00, 0x50, 0x00, 0x43, 0x00, 0x3a, 0x00, 0x2c, 0x00, 0x22, 0x00, 0x16, 0x00, 0x0b, 0x00, 0x01, 0x00, 0xf3, 0xff, 0xea, 0xff, 0xe0, 0xff, 0xd5, 0xff, 0xc8, 0xff, 0xba, 0xff, 0xb3, 0xff, 0xa4, 0xff, 0x9b, 0xff, 0x8d, 0xff, 0x84, 0xff, 0x78, 0xff, 0x6c, 0xff, 0x60, 0xff, 0x56, 0xff, 0x4e, 0xff, 0x41, 0xff, 0x36, 0xff, 0x29, 0xff, 0x1d, 0xff, 0x12, 0xff, 0x08, 0xff, 0xff, 0xfe, 0xf1, 0xfe, 0xe7, 0xfe, 0xd9, 0xfe, 0xd3, 0xfe, 0xc6, 0xfe, 0xbb, 0xfe, 0xaf, 0xfe, 0xa8, 0xfe, 0x9d, 0xfe, 0x8e, 0xfe, 0x82, 0xfe, 0x79, 0xfe, 0x6f, 0xfe, 0x64, 0xfe, 0x58, 0xfe, 0x4f, 0xfe, 0x43, 0xfe, 0x3a, 0xfe, 0x2e, 0xfe, 0x24, 0xfe, 0x16, 0xfe, 0x0f, 0xfe, 0x06, 0xfe, 0xf9, 0xfd, 0xf1, 0xfd, 0xe1, 0xfd, 0xdf, 0xfd, 0xcf, 0xfd, 0xc7, 0xfd, 0xbd, 0xfd, 0xb1, 0xfd, 0xa7, 0xfd, 0x9d, 0xfd, 0x93, 0xfd, 0x89, 0xfd, 0x81, 0xfd, 0x75, 0xfd, 0x6d, 0xfd, 0x63, 0xfd, 0x57, 0xfd, 0x4f, 0xfd, 0x43, 0xfd, 0x3d, 0xfd, 0x31, 0xfd, 0x27, 0xfd, 0x21, 0xfd, 0x13, 0xfd, 0x0d, 0xfd, 0x01, 0xfd, 0xf9, 0xfc, 0xef, 0xfc, 0xe3, 0xfc, 0xdd, 0xfc, 0xd1, 0xfc, 0xcb, 0xfc, 0xbf, 0xfc, 0xb9, 0xfc, 0xaf, 0xfc, 0xa7, 0xfc, 0x9f, 0xfc, 0x95, 0xfc, 0x8b, 0xfc, 0x81, 0xfc, 0x7b, 0xfc, 0x6f, 0xfc, 0x67, 0xfc, 0x61, 0xfc, 0x57, 0xfc, 0x4f, 0xfc, 0x47, 0xfc, 0x3b, 0xfc, 0x39, 0xfc, 0x29, 0xfc, 0x27, 0xfc, 0x19, 0xfc, 0x17, 0xfc, 0x11, 0xfc, 0x00, 0xfc, 0x01, 0xfc, 0xf5, 0xfb, 0xf0, 0xfb, 0xe6, 0xfb, 0xda, 0xfb, 0xd5, 0xfb, 0xcc, 0xfb, 0xc5, 0xfb, 0xc1, 0xfb, 0xb6, 0xfb, 0xb1, 0xfb, 0xaa, 0xfb, 0xa1, 0xfb, 0x9d, 0xfb, 0x91, 0xfb, 0x91, 0xfb, 0x86, 0xfb, 0x7e, 0xfb, 0x7a, 0xfb, 0x71, 0xfb, 0x6d, 0xfb, 0x61, 0xfb, 0x5d, 0xfb, 0x56, 0xfb, 0x54, 0xfb, 0x4a, 0xfb, 0x45, 0xfb, 0x3e, 0xfb, 0x39, 0xfb, 0x31, 0xfb, 0x2d, 0xfb, 0x26, 0xfb, 0x1d, 0xfb, 0x1c, 0xfb, 0x15, 0xfb, 0x11, 0xfb, 0x06, 0xfb, 0x02, 0xfb, 0xfd, 0xfa, 0xf8, 0xfa, 0xf5, 0xfa, 0xed, 0xfa, 0xe8, 0xfa, 0xe2, 0xfa, 0xde, 0xfa, 0xdc, 0xfa, 0xd5, 0xfa, 0xd0, 0xfa, 0xc9, 0xfa, 0xc8, 0xfa, 0xc1, 0xfa, 0xbe, 0xfa, 0xb9, 0xfa, 0xb5, 0xfa, 0xae, 0xfa, 0xad, 0xfa, 0xa9, 0xfa, 0xa1, 0xfa, 0x9d, 0xfa, 0x9a, 0xfa, 0x9a, 0xfa, 0x91, 0xfa, 0x8e, 0xfa, 0x8c, 0xfa, 0x88, 0xfa, 0x85, 0xfa, 0x80, 0xfa, 0x7e, 0xfa, 0x7c, 0xfa, 0x79, 0xfa, 0x72, 0xfa, 0x72, 0xfa, 0x6d, 0xfa, 0x6a, 0xfa, 0x68, 0xfa, 0x64, 0xfa, 0x64, 0xfa, 0x5e, 0xfa, 0x5e, 0xfa, 0x5a, 0xfa, 0x59, 0xfa, 0x58, 0xfa, 0x52, 0xfa, 0x50, 0xfa, 0x4c, 0xfa, 0x4e, 0xfa, 0x49, 0xfa, 0x49, 0xfa, 0x46, 0xfa, 0x44, 0xfa, 0x42, 0xfa, 0x42, 0xfa, 0x40, 0xfa, 0x40, 0xfa, 0x3a, 0xfa, 0x3d, 0xfa, 0x39, 0xfa, 0x36, 0xfa, 0x38, 0xfa, 0x36, 0xfa, 0x35, 0xfa, 0x31, 0xfa, 0x34, 0xfa, 0x31, 0xfa, 0x2e, 0xfa, 0x35, 0xfa, 0x2e, 0xfa, 0x31, 0xfa, 0x31, 0xfa, 0x31, 0xfa, 0x2d, 0xfa, 0x2d, 0xfa, 0x2e, 0xfa, 0x2e, 0xfa, 0x2e, 0xfa, 0x2e, 0xfa, 0x2e, 0xfa, 0x31, 0xfa, 0x2e, 0xfa, 0x2e, 0xfa, 0x2e, 0xfa, 0x2d, 0xfa, 0x31, 0xfa, 0x34, 0xfa, 0x34, 0xfa, 0x35, 0xfa, 0x35, 0xfa, 0x36, 0xfa, 0x38, 0xfa, 0x36, 0xfa, 0x38, 0xfa, 0x39, 0xfa, 0x3a, 0xfa, 0x3d, 0xfa, 0x3d, 0xfa, 0x40, 0xfa, 0x42, 0xfa, 0x41, 0xfa, 0x45, 0xfa, 0x42, 0xfa, 0x49, 0xfa, 0x4c, 0xfa, 0x4c, 0xfa, 0x4e, 0xfa, 0x50, 0xfa, 0x52, 0xfa, 0x52, 0xfa, 0x59, 0xfa, 0x59, 0xfa, 0x5c, 0xfa, 0x61, 0xfa, 0x61, 0xfa, 0x65, 0xfa, 0x65, 0xfa, 0x69, 0xfa, 0x6d, 0xfa, 0x70, 0xfa, 0x72, 0xfa, 0x75, 0xfa, 0x76, 0xfa, 0x7d, 0xfa, 0x7e, 0xfa, 0x85, 0xfa, 0x88, 0xfa, 0x8a, 0xfa, 0x8e, 0xfa, 0x94, 0xfa, 0x98, 0xfa, 0x99, 0xfa, 0x9d, 0xfa, 0xa2, 0xfa, 0xa5, 0xfa, 0xa9, 0xfa, 0xad, 0xfa, 0xb2, 0xfa, 0xb5, 0xfa, 0xbc, 0xfa, 0xbe, 0xfa, 0xc5, 0xfa, 0xc8, 0xfa, 0xca, 0xfa, 0xd2, 0xfa, 0xd6, 0xfa, 0xd9, 0xfa, 0xe0, 0xfa, 0xe5, 0xfa, 0xea, 0xfa, 0xed, 0xfa, 0xf1, 0xfa, 0xfa, 0xfa, 0xfd, 0xfa, 0x04, 0xfb, 0x09, 0xfb, 0x0c, 0xfb, 0x15, 0xfb, 0x19, 0xfb, 0x1e, 0xfb, 0x25, 0xfb, 0x2a, 0xfb, 0x2d, 0xfb, 0x34, 0xfb, 0x39, 0xfb, 0x3e, 0xfb, 0x48, 0xfb, 0x4d, 0xfb, 0x51, 0xfb, 0x58, 0xfb, 0x62, 0xfb, 0x64, 0xfb, 0x69, 0xfb, 0x71, 0xfb, 0x75, 0xfb, 0x81, 0xfb, 0x85, 0xfb, 0x8a, 0xfb, 0x91, 0xfb, 0x99, 0xfb, 0xa0, 0xfb, 0xa5, 0xfb, 0xac, 0xfb, 0xae, 0xfb, 0xbd, 0xfb, 0xbd, 0xfb, 0xc9, 0xfb, 0xcc, 0xfb, 0xd5, 0xfb, 0xde, 0xfb, 0xe1, 0xfb, 0xea, 0xfb, 0xf4, 0xfb, 0xf6, 0xfb, 0x01, 0xfc, 0x07, 0xfc, 0x0b, 0xfc, 0x17, 0xfc, 0x1d, 0xfc, 0x25, 0xfc, 0x2f, 0xfc, 0x35, 0xfc, 0x3d, 0xfc, 0x41, 0xfc, 0x47, 0xfc, 0x55, 0xfc, 0x5b, 0xfc, 0x5f, 0xfc, 0x6d, 0xfc, 0x6f, 0xfc, 0x7d, 0xfc, 0x83, 0xfc, 0x8b, 0xfc, 0x93, 0xfc, 0x97, 0xfc, 0xa3, 0xfc, 0xa9, 0xfc, 0xb3, 0xfc, 0xb9, 0xfc, 0xc1, 0xfc, 0xcb, 0xfc, 0xd1, 0xfc, 0xdd, 0xfc, 0xe3, 0xfc, 0xef, 0xfc, 0xf5, 0xfc, 0xfb, 0xfc, 0x07, 0xfd, 0x0d, 0xfd, 0x19, 0xfd, 0x1f, 0xfd, 0x2b, 0xfd, 0x31, 0xfd, 0x3b, 0xfd, 0x43, 0xfd, 0x4b, 0xfd, 0x55, 0xfd, 0x5b, 0xfd, 0x65, 0xfd, 0x6f, 0xfd, 0x79, 0xfd, 0x81, 0xfd, 0x87, 0xfd, 0x95, 0xfd, 0x9d, 0xfd, 0xa3, 0xfd, 0xad, 0xfd, 0xb5, 0xfd, 0xbf, 0xfd, 0xc7, 0xfd, 0xd3, 0xfd, 0xd9, 0xfd, 0xe1, 0xfd, 0xef, 0xfd, 0xf5, 0xfd, 0xff, 0xfd, 0x07, 0xfe, 0x13, 0xfe, 0x19, 0xfe, 0x24, 0xfe, 0x2d, 0xfe, 0x39, 0xfe, 0x40, 0xfe, 0x4b, 0xfe, 0x51, 0xfe, 0x5b, 0xfe, 0x66, 0xfe, 0x70, 0xfe, 0x78, 0xfe, 0x82, 0xfe, 0x8b, 0xfe, 0x94, 0xfe, 0x9f, 0xfe, 0xa6, 0xfe, 0xb2, 0xfe, 0xb7, 0xfe, 0xc3, 0xfe, 0xcc, 0xfe, 0xd5, 0xfe, 0xdf, 0xfe, 0xe8, 0xfe, 0xf1, 0xfe, 0xfd, 0xfe, 0x03, 0xff, 0x0f, 0xff, 0x17, 0xff, 0x23, 0xff, 0x2c, 0xff, 0x35, 0xff, 0x3e, 0xff, 0x47, 0xff, 0x50, 0xff, 0x5d, 0xff, 0x62, 0xff, 0x6f, 0xff, 0x77, 0xff, 0x80, 0xff, 0x8c, 0xff, 0x92, 0xff, 0x9c, 0xff, 0xa8, 0xff, 0xb0, 0xff, 0xb9, 0xff, 0xc3, 0xff, 0xcb, 0xff, 0xd5, 0xff, 0xe0, 0xff, 0xe7, 0xff, 0xf0, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x16, 0x00, 0x20, 0x00, 0x25, 0x00, 0x31, 0x00, 0x38, 0x00, 0x44, 0x00, 0x4f, 0x00, 0x58, 0x00, 0x62, 0x00, 0x67, 0x00, 0x73, 0x00, 0x7d, 0x00, 0x85, 0x00, 0x8f, 0x00, 0x95, 0x00, 0xa1, 0x00, 0xa7, 0x00, 0xb3, 0x00, 0xbc, 0x00, 0xc4, 0x00, 0xd0, 0x00, 0xd6, 0x00, 0xe0, 0x00, 0xe9, 0x00, 0xf1, 0x00, 0xfa, 0x00, 0x07, 0x01, 0x0c, 0x01, 0x15, 0x01, 0x1e, 0x01, 0x27, 0x01, 0x2e, 0x01, 0x3a, 0x01, 0x3f, 0x01, 0x49, 0x01, 0x54, 0x01, 0x5b, 0x01, 0x64, 0x01, 0x6d, 0x01, 0x75, 0x01, 0x7c, 0x01, 0x88, 0x01, 0x90, 0x01, 0x94, 0x01, 0xa2, 0x01, 0xa6, 0x01, 0xaf, 0x01, 0xbd, 0x01, 0xc1, 0x01, 0xc7, 0x01, 0xd3, 0x01, 0xdb, 0x01, 0xe1, 0x01, 0xeb, 0x01, 0xf4, 0x01, 0xf7, 0x01, 0x03, 0x02, 0x0b, 0x02, 0x15, 0x02, 0x1b, 0x02, 0x21, 0x02, 0x2b, 0x02, 0x2f, 0x02, 0x3b, 0x02, 0x43, 0x02, 0x4b, 0x02, 0x53, 0x02, 0x59, 0x02, 0x5f, 0x02, 0x69, 0x02, 0x6f, 0x02, 0x77, 0x02, 0x7d, 0x02, 0x87, 0x02, 0x8d, 0x02, 0x99, 0x02, 0x9f, 0x02, 0xa3, 0x02, 0xab, 0x02, 0xb5, 0x02, 0xbb, 0x02, 0xc1, 0x02, 0xc9, 0x02, 0xd1, 0x02, 0xd9, 0x02, 0xdd, 0x02, 0xe5, 0x02, 0xeb, 0x02, 0xf3, 0x02, 0xf9, 0x02, 0x01, 0x03, 0x07, 0x03, 0x0b, 0x03, 0x13, 0x03, 0x1d, 0x03, 0x1f, 0x03, 0x29, 0x03, 0x2d, 0x03, 0x35, 0x03, 0x3b, 0x03, 0x3b, 0x03, 0x47, 0x03, 0x4d, 0x03, 0x53, 0x03, 0x59, 0x03, 0x5f, 0x03, 0x65, 0x03, 0x6b, 0x03, 0x71, 0x03, 0x77, 0x03, 0x7b, 0x03, 0x83, 0x03, 0x85, 0x03, 0x8b, 0x03, 0x95, 0x03, 0x97, 0x03, 0x9d, 0x03, 0xa1, 0x03, 0xa9, 0x03, 0xb1, 0x03, 0xb5, 0x03, 0xbb, 0x03, 0xbd, 0x03, 0xc3, 0x03, 0xc5, 0x03, 0xcb, 0x03, 0xd1, 0x03, 0xd7, 0x03, 0xdd, 0x03, 0xdf, 0x03, 0xe3, 0x03, 0xe7, 0x03, 0xef, 0x03, 0xf5, 0x03, 0xf7, 0x03, 0xfb, 0x03, 0x00, 0x04, 0x07, 0x04, 0x07, 0x04, 0x0e, 0x04, 0x13, 0x04, 0x13, 0x04, 0x1a, 0x04, 0x1f, 0x04, 0x22, 0x04, 0x26, 0x04, 0x26, 0x04, 0x2e, 0x04, 0x32, 0x04, 0x37, 0x04, 0x37, 0x04, 0x3a, 0x04, 0x3f, 0x04, 0x43, 0x04, 0x46, 0x04, 0x4a, 0x04, 0x4b, 0x04, 0x4f, 0x04, 0x52, 0x04, 0x58, 0x04, 0x58, 0x04, 0x5b, 0x04, 0x5f, 0x04, 0x60, 0x04, 0x67, 0x04, 0x67, 0x04, 0x67, 0x04, 0x6c, 0x04, 0x6e, 0x04, 0x6f, 0x04, 0x77, 0x04, 0x73, 0x04, 0x77, 0x04, 0x7b, 0x04, 0x7a, 0x04, 0x82, 0x04, 0x83, 0x04, 0x84, 0x04, 0x84, 0x04, 0x88, 0x04, 0x87, 0x04, 0x88, 0x04, 0x8b, 0x04, 0x8e, 0x04, 0x90, 0x04, 0x90, 0x04, 0x92, 0x04, 0x92, 0x04, 0x97, 0x04, 0x94, 0x04, 0x97, 0x04, 0x9a, 0x04, 0x9b, 0x04, 0x9b, 0x04, 0x9a, 0x04, 0x9e, 0x04, 0x9c, 0x04, 0x9e, 0x04, 0x9e, 0x04, 0x9e, 0x04, 0x9f, 0x04, 0x9f, 0x04, 0xa0, 0x04, 0xa3, 0x04, 0xa3, 0x04, 0xa3, 0x04, 0xa0, 0x04, 0xa3, 0x04, 0xa3, 0x04, 0xa3, 0x04, 0xa3, 0x04, 0xa3, 0x04, 0xa3, 0x04, 0xa0, 0x04, 0xa0, 0x04, 0xa3, 0x04, 0xa3, 0x04, 0x9f, 0x04, 0xa3, 0x04, 0x9e, 0x04, 0x9e, 0x04, 0x9e, 0x04, 0x9f, 0x04, 0x9c, 0x04, 0x9c, 0x04, 0x9b, 0x04, 0x9a, 0x04, 0x9a, 0x04, 0x9a, 0x04, 0x94, 0x04, 0x97, 0x04, 0x94, 0x04, 0x93, 0x04, 0x92, 0x04, 0x92, 0x04, 0x90, 0x04, 0x8b, 0x04, 0x8b, 0x04, 0x87, 0x04, 0x87, 0x04, 0x86, 0x04, 0x86, 0x04, 0x82, 0x04, 0x7f, 0x04, 0x7f, 0x04, 0x7b, 0x04, 0x7b, 0x04, 0x77, 0x04, 0x77, 0x04, 0x73, 0x04, 0x6f, 0x04, 0x6f, 0x04, 0x6c, 0x04, 0x6b, 0x04, 0x67, 0x04, 0x64, 0x04, 0x62, 0x04, 0x5e, 0x04, 0x5b, 0x04, 0x58, 0x04, 0x54, 0x04, 0x56, 0x04, 0x52, 0x04, 0x4b, 0x04, 0x4a, 0x04, 0x4a, 0x04, 0x43, 0x04, 0x3f, 0x04, 0x3a, 0x04, 0x3b, 0x04, 0x37, 0x04, 0x33, 0x04, 0x2f, 0x04, 0x27, 0x04, 0x28, 0x04, 0x26, 0x04, 0x1f, 0x04, 0x1b, 0x04, 0x1a, 0x04, 0x16, 0x04, 0x13, 0x04, 0x0e, 0x04, 0x07, 0x04, 0x07, 0x04, 0x02, 0x04, 0xfb, 0x03, 0xf9, 0x03, 0xf5, 0x03, 0xef, 0x03, 0xed, 0x03, 0xe7, 0x03, 0xe1, 0x03, 0xdf, 0x03, 0xdb, 0x03, 0xd3, 0x03, 0xd1, 0x03, 0xcb, 0x03, 0xc5, 0x03, 0xc3, 0x03, 0xbd, 0x03, 0xb9, 0x03, 0xb3, 0x03, 0xad, 0x03, 0xa9, 0x03, 0xa5, 0x03, 0xa1, 0x03, 0x9b, 0x03, 0x95, 0x03, 0x8f, 0x03, 0x89, 0x03, 0x85, 0x03, 0x7d, 0x03, 0x79, 0x03, 0x75, 0x03, 0x71, 0x03, 0x6b, 0x03, 0x65, 0x03, 0x63, 0x03, 0x59, 0x03, 0x53, 0x03, 0x51, 0x03, 0x47, 0x03, 0x43, 0x03, 0x3d, 0x03, 0x39, 0x03, 0x33, 0x03, 0x2b, 0x03, 0x27, 0x03, 0x1f, 0x03, 0x19, 0x03, 0x13, 0x03, 0x0b, 0x03, 0x09, 0x03, 0x03, 0x03, 0xfd, 0x02, 0xf3, 0x02, 0xed, 0x02, 0xe7, 0x02, 0xe3, 0x02, 0xdd, 0x02, 0xd3, 0x02, 0xd1, 0x02, 0xc7, 0x02, 0xc3, 0x02, 0xbd, 0x02, 0xb5, 0x02, 0xb1, 0x02, 0xa7, 0x02, 0x9f, 0x02, 0x9b, 0x02, 0x93, 0x02, 0x8f, 0x02, 0x85, 0x02, 0x81, 0x02, 0x7b, 0x02, 0x71, 0x02, 0x6b, 0x02, 0x63, 0x02, 0x5d, 0x02, 0x57, 0x02, 0x4f, 0x02, 0x4b, 0x02, 0x43, 0x02, 0x39, 0x02, 0x33, 0x02, 0x2d, 0x02, 0x25, 0x02, 0x21, 0x02, 0x15, 0x02, 0x0f, 0x02, 0x09, 0x02, 0x01, 0x02, 0xfa, 0x01, 0xf4, 0x01, 0xeb, 0x01, 0xe4, 0x01, 0xdc, 0x01, 0xd6, 0x01, 0xcd, 0x01, 0xc6, 0x01, 0xc0, 0x01, 0xb5, 0x01, 0xb2, 0x01, 0xa9, 0x01, 0xa2, 0x01, 0x9c, 0x01, 0x91, 0x01, 0x88, 0x01, 0x84, 0x01, 0x79, 0x01, 0x78, 0x01, 0x6f, 0x01, 0x64, 0x01, 0x5e, 0x01, 0x57, 0x01, 0x4e, 0x01, 0x45, 0x01, 0x40, 0x01, 0x37, 0x01, 0x31, 0x01, 0x28, 0x01, 0x21, 0x01, 0x19, 0x01, 0x10, 0x01, 0x0a, 0x01, 0x04, 0x01, 0xfa, 0x00, 0xf4, 0x00, 0xe9, 0x00, 0xe5, 0x00, 0xda, 0x00, 0xd1, 0x00, 0xcd, 0x00, 0xc4, 0x00, 0xbe, 0x00, 0xb5, 0x00, 0xad, 0x00, 0xa7, 0x00, 0x9d, 0x00, 0x95, 0x00, 0x8f, 0x00, 0x89, 0x00, 0x7d, 0x00, 0x76, 0x00, 0x6e, 0x00, 0x68, 0x00, 0x5e, 0x00, 0x59, 0x00, 0x50, 0x00, 0x49, 0x00, 0x40, 0x00, 0x38, 0x00, 0x32, 0x00, 0x2b, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x16, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xff, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xe6, 0xff, 0xde, 0xff, 0xd7, 0xff, 0xce, 0xff, 0xc9, 0xff, 0xc0, 0xff, 0xb9, 0xff, 0xb4, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0x9b, 0xff, 0x95, 0xff, 0x8d, 0xff, 0x83, 0xff, 0x7d, 0xff, 0x75, 0xff, 0x6c, 0xff, 0x63, 0xff, 0x5f, 0xff, 0x57, 0xff, 0x4d, 0xff, 0x4a, 0xff, 0x41, 0xff, 0x36, 0xff, 0x30, 0xff, 0x2a, 0xff, 0x24, 0xff, 0x1b, 0xff, 0x12, 0xff, 0x0b, 0xff, 0x05, 0xff, 0xfd, 0xfe, 0xf6, 0xfe, 0xf0, 0xfe, 0xe8, 0xfe, 0xdf, 0xfe, 0xdb, 0xfe, 0xd0, 0xfe, 0xca, 0xfe, 0xc7, 0xfe, 0xbd, 0xfe, 0xb7, 0xfe, 0xae, 0xfe, 0xa8, 0xfe, 0xa3, 0xfe, 0x9a, 0xfe, 0x94, 0xfe, 0x8d, 0xfe, 0x84, 0xfe, 0x81, 0xfe, 0x78, 0xfe, 0x70, 0xfe, 0x67, 0xfe, 0x60, 0xfe, 0x5d, 0xfe, 0x55, 0xfe, 0x4f, 0xfe, 0x48, 0xfe, 0x3f, 0xfe, 0x3d, 0xfe, 0x31, 0xfe, 0x31, 0xfe, 0x28, 0xfe, 0x1f, 0xfe, 0x1c, 0xfe, 0x13, 0xfe, 0x0c, 0xfe, 0x06, 0xfe, 0x03, 0xfe, 0xf7, 0xfd, 0xf1, 0xfd, 0xef, 0xfd, 0xe7, 0xfd, 0xdf, 0xfd, 0xdd, 0xfd, 0xd3, 0xfd, 0xcd, 0xfd, 0xc7, 0xfd, 0xc7, 0xfd, 0xbb, 0xfd, 0xb3, 0xfd, 0xb1, 0xfd, 0xa9, 0xfd, 0xa3, 0xfd, 0x9d, 0xfd, 0x97, 0xfd, 0x93, 0xfd, 0x8f, 0xfd, 0x85, 0xfd, 0x83, 0xfd, 0x79, 0xfd, 0x77, 0xfd, 0x71, 0xfd, 0x6b, 0xfd, 0x67, 0xfd, 0x5f, 0xfd, 0x5b, 0xfd, 0x55, 0xfd, 0x51, 0xfd, 0x49, 0xfd, 0x49, 0xfd, 0x41, 0xfd, 0x3b, 0xfd, 0x37, 0xfd, 0x31, 0xfd, 0x2f, 0xfd, 0x29, 0xfd, 0x21, 0xfd, 0x1f, 0xfd, 0x19, 0xfd, 0x13, 0xfd, 0x0f, 0xfd, 0x0b, 0xfd, 0x07, 0xfd, 0x01, 0xfd, 0xff, 0xfc, 0xf5, 0xfc, 0xf3, 0xfc, 0xef, 0xfc, 0xeb, 0xfc, 0xe5, 0xfc, 0xe1, 0xfc, 0xdd, 0xfc, 0xd7, 0xfc, 0xd5, 0xfc, 0xd1, 0xfc, 0xcf, 0xfc, 0xc7, 0xfc, 0xc5, 0xfc, 0xbf, 0xfc, 0xbd, 0xfc, 0xb7, 0xfc, 0xb5, 0xfc, 0xb3, 0xfc, 0xad, 0xfc, 0xa7, 0xfc, 0xa5, 0xfc, 0xa1, 0xfc, 0x9d, 0xfc, 0x9b, 0xfc, 0x95, 0xfc, 0x93, 0xfc, 0x8f, 0xfc, 0x89, 0xfc, 0x89, 0xfc, 0x87, 0xfc, 0x81, 0xfc, 0x81, 0xfc, 0x7d, 0xfc, 0x77, 0xfc, 0x77, 0xfc, 0x73, 0xfc, 0x71, 0xfc, 0x6b, 0xfc, 0x6b, 0xfc, 0x67, 0xfc, 0x65, 0xfc, 0x63, 0xfc, 0x5d, 0xfc, 0x5d, 0xfc, 0x59, 0xfc, 0x55, 0xfc, 0x55, 0xfc, 0x51, 0xfc, 0x4d, 0xfc, 0x4d, 0xfc, 0x49, 0xfc, 0x49, 0xfc, 0x47, 0xfc, 0x47, 0xfc, 0x3d, 0xfc, 0x43, 0xfc, 0x37, 0xfc, 0x3d, 0xfc, 0x3b, 0xfc, 0x35, 0xfc, 0x3b, 0xfc, 0x31, 0xfc, 0x35, 0xfc, 0x35, 0xfc, 0x2f, 0xfc, 0x2f, 0xfc, 0x2f, 0xfc, 0x29, 0xfc, 0x27, 0xfc, 0x29, 0xfc, 0x29, 0xfc, 0x23, 0xfc, 0x27, 0xfc, 0x25, 0xfc, 0x23, 0xfc, 0x1d, 0xfc, 0x21, 0xfc, 0x23, 0xfc, 0x1d, 0xfc, 0x1b, 0xfc, 0x1d, 0xfc, 0x1f, 0xfc, 0x19, 0xfc, 0x1d, 0xfc, 0x17, 0xfc, 0x17, 0xfc, 0x1b, 0xfc, 0x1b, 0xfc, 0x17, 0xfc, 0x15, 0xfc, 0x15, 0xfc, 0x15, 0xfc, 0x19, 0xfc, 0x17, 0xfc, 0x17, 0xfc, 0x17, 0xfc, 0x11, 0xfc, 0x15, 0xfc, 0x15, 0xfc, 0x17, 0xfc, 0x17, 0xfc, 0x19, 0xfc, 0x17, 0xfc, 0x17, 0xfc, 0x17, 0xfc, 0x17, 0xfc, 0x1d, 0xfc, 0x1b, 0xfc, 0x1d, 0xfc, 0x1b, 0xfc, 0x17, 0xfc, 0x1d, 0xfc, 0x1d, 0xfc, 0x1d, 0xfc, 0x21, 0xfc, 0x1f, 0xfc, 0x19, 0xfc, 0x21, 0xfc, 0x23, 0xfc, 0x25, 0xfc, 0x29, 0xfc, 0x1f, 0xfc, 0x27, 0xfc, 0x29, 0xfc, 0x2b, 0xfc, 0x29, 0xfc, 0x2b, 0xfc, 0x2d, 0xfc, 0x33, 0xfc, 0x33, 0xfc, 0x2f, 0xfc, 0x37, 0xfc, 0x39, 0xfc, 0x37, 0xfc, 0x35, 0xfc, 0x41, 0xfc, 0x41, 0xfc, 0x3f, 0xfc, 0x45, 0xfc, 0x45, 0xfc, 0x3f, 0xfc, 0x4d, 0xfc, 0x49, 0xfc, 0x47, 0xfc, 0x51, 0xfc, 0x4d, 0xfc, 0x53, 0xfc, 0x53, 0xfc, 0x55, 0xfc, 0x5d, 0xfc, 0x59, 0xfc, 0x61, 0xfc, 0x5f, 0xfc, 0x65, 0xfc, 0x65, 0xfc, 0x6b, 0xfc, 0x6b, 0xfc, 0x6f, 0xfc, 0x71, 0xfc, 0x77, 0xfc, 0x77, 0xfc, 0x7d, 0xfc, 0x7d, 0xfc, 0x81, 0xfc, 0x85, 0xfc, 0x85, 0xfc, 0x89, 0xfc, 0x8d, 0xfc, 0x91, 0xfc, 0x95, 0xfc, 0x95, 0xfc, 0x9b, 0xfc, 0x9f, 0xfc, 0x9f, 0xfc, 0xa5, 0xfc, 0xa9, 0xfc, 0xa7, 0xfc, 0xaf, 0xfc, 0xb9, 0xfc, 0xb9, 0xfc, 0xb9, 0xfc, 0xbf, 0xfc, 0xc3, 0xfc, 0xc5, 0xfc, 0xc9, 0xfc, 0xcb, 0xfc, 0xd3, 0xfc, 0xd5, 0xfc, 0xd9, 0xfc, 0xdd, 0xfc, 0xe3, 0xfc, 0xe7, 0xfc, 0xe9, 0xfc, 0xef, 0xfc, 0xf5, 0xfc, 0xfb, 0xfc, 0xfb, 0xfc, 0x01, 0xfd, 0x03, 0xfd, 0x07, 0xfd, 0x0d, 0xfd, 0x13, 0xfd, 0x13, 0xfd, 0x1d, 0xfd, 0x1f, 0xfd, 0x23, 0xfd, 0x2b, 0xfd, 0x2b, 0xfd, 0x31, 0xfd, 0x37, 0xfd, 0x39, 0xfd, 0x3d, 0xfd, 0x45, 0xfd, 0x49, 0xfd, 0x4d, 0xfd, 0x53, 0xfd, 0x59, 0xfd, 0x5d, 0xfd, 0x65, 0xfd, 0x67, 0xfd, 0x6b, 0xfd, 0x73, 0xfd, 0x77, 0xfd, 0x7b, 0xfd, 0x7f, 0xfd, 0x85, 0xfd, 0x8b, 0xfd, 0x91, 0xfd, 0x95, 0xfd, 0x9d, 0xfd, 0xa3, 0xfd, 0xa5, 0xfd, 0xaf, 0xfd, 0xaf, 0xfd, 0xb7, 0xfd, 0xbb, 0xfd, 0xc1, 0xfd, 0xc7, 0xfd, 0xcd, 0xfd, 0xd3, 0xfd, 0xd7, 0xfd, 0xdd, 0xfd, 0xe3, 0xfd, 0xe9, 0xfd, 0xef, 0xfd, 0xf1, 0xfd, 0xfb, 0xfd, 0x03, 0xfe, 0x06, 0xfe, 0x0a, 0xfe, 0x12, 0xfe, 0x18, 0xfe, 0x1e, 0xfe, 0x24, 0xfe, 0x27, 0xfe, 0x2d, 0xfe, 0x36, 0xfe, 0x3a, 0xfe, 0x43, 0xfe, 0x45, 0xfe, 0x4e, 0xfe, 0x52, 0xfe, 0x57, 0xfe, 0x60, 0xfe, 0x61, 0xfe, 0x6c, 0xfe, 0x6d, 0xfe, 0x76, 0xfe, 0x7c, 0xfe, 0x81, 0xfe, 0x88, 0xfe, 0x8e, 0xfe, 0x96, 0xfe, 0x99, 0xfe, 0xa0, 0xfe, 0xa8, 0xfe, 0xab, 0xfe, 0xb4, 0xfe, 0xb7, 0xfe, 0xc0, 0xfe, 0xc4, 0xfe, 0xcc, 0xfe, 0xd3, 0xfe, 0xd6, 0xfe, 0xde, 0xfe, 0xe5, 0xfe, 0xea, 0xfe, 0xf0, 0xfe, 0xf9, 0xfe, 0xfd, 0xfe, 0x05, 0xff, 0x0b, 0xff, 0x0f, 0xff, 0x17, 0xff, 0x1b, 0xff, 0x24, 0xff, 0x24, 0xff, 0x2f, 0xff, 0x33, 0xff, 0x3c, 0xff, 0x44, 0xff, 0x48, 0xff, 0x51, 0xff, 0x54, 0xff, 0x5d, 0xff, 0x62, 0xff, 0x6b, 0xff, 0x6e, 0xff, 0x75, 0xff, 0x7d, 0xff, 0x81, 0xff, 0x87, 0xff, 0x90, 0xff, 0x95, 0xff, 0x9b, 0xff, 0xa2, 0xff, 0xa7, 0xff, 0xb1, 0xff, 0xb4, 0xff, 0xba, 0xff, 0xc2, 0xff, 0xc9, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xd8, 0xff, 0xe0, 0xff, 0xe7, 0xff, 0xed, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x07, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1f, 0x00, 0x26, 0x00, 0x2c, 0x00, 0x31, 0x00, 0x38, 0x00, 0x3e, 0x00, 0x44, 0x00, 0x4a, 0x00, 0x4d, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x62, 0x00, 0x6b, 0x00, 0x6d, 0x00, 0x74, 0x00, 0x7c, 0x00, 0x82, 0x00, 0x85, 0x00, 0x8e, 0x00, 0x92, 0x00, 0x9b, 0x00, 0x9e, 0x00, 0xa7, 0x00, 0xad, 0x00, 0xb3, 0x00, 0xb6, 0x00, 0xbe, 0x00, 0xc2, 0x00, 0xca, 0x00, 0xd0, 0x00, 0xd4, 0x00, 0xd9, 0x00, 0xe2, 0x00, 0xe5, 0x00, 0xee, 0x00, 0xf4, 0x00, 0xf7, 0x00, 0x00, 0x01, 0x03, 0x01, 0x07, 0x01, 0x0f, 0x01, 0x15, 0x01, 0x1b, 0x01, 0x1f, 0x01, 0x24, 0x01, 0x2d, 0x01, 0x31, 0x01, 0x37, 0x01, 0x3d, 0x01, 0x3f, 0x01, 0x46, 0x01, 0x4c, 0x01, 0x54, 0x01, 0x57, 0x01, 0x5d, 0x01, 0x61, 0x01, 0x69, 0x01, 0x6f, 0x01, 0x73, 0x01, 0x78, 0x01, 0x7b, 0x01, 0x82, 0x01, 0x84, 0x01, 0x90, 0x01, 0x91, 0x01, 0x97, 0x01, 0x9c, 0x01, 0xa2, 0x01, 0xa8, 0x01, 0xab, 0x01, 0xaf, 0x01, 0xb7, 0x01, 0xba, 0x01, 0xbd, 0x01, 0xc6, 0x01, 0xc9, 0x01, 0xcd, 0x01, 0xd3, 0x01, 0xd9, 0x01, 0xdc, 0x01, 0xe2, 0x01, 0xe7, 0x01, 0xea, 0x01, 0xf1, 0x01, 0xf4, 0x01, 0xf7, 0x01, 0xfc, 0x01, 0x03, 0x02, 0x09, 0x02, 0x09, 0x02, 0x11, 0x02, 0x15, 0x02, 0x19, 0x02, 0x1f, 0x02, 0x1f, 0x02, 0x27, 0x02, 0x29, 0x02, 0x31, 0x02, 0x35, 0x02, 0x33, 0x02, 0x37, 0x02, 0x3d, 0x02, 0x41, 0x02, 0x45, 0x02, 0x4b, 0x02, 0x4b, 0x02, 0x51, 0x02, 0x57, 0x02, 0x59, 0x02, 0x5f, 0x02, 0x61, 0x02, 0x65, 0x02, 0x67, 0x02, 0x6d, 0x02, 0x6f, 0x02, 0x73, 0x02, 0x77, 0x02, 0x79, 0x02, 0x81, 0x02, 0x81, 0x02, 0x85, 0x02, 0x87, 0x02, 0x8b, 0x02, 0x8f, 0x02, 0x93, 0x02, 0x95, 0x02, 0x9b, 0x02, 0x9d, 0x02, 0x9f, 0x02, 0xa1, 0x02, 0xa5, 0x02, 0xa7, 0x02, 0xab, 0x02, 0xaf, 0x02, 0xb1, 0x02, 0xb3, 0x02, 0xb7, 0x02, 0xb7, 0x02, 0xbf, 0x02, 0xbd, 0x02, 0xc1, 0x02, 0xc3, 0x02, 0xc9, 0x02, 0xcb, 0x02, 0xcb, 0x02, 0xcf, 0x02, 0xcf, 0x02, 0xd5, 0x02, 0xd5, 0x02, 0xd9, 0x02, 0xdb, 0x02, 0xdd, 0x02, 0xdd, 0x02, 0xe3, 0x02, 0xe1, 0x02, 0xe7, 0x02, 0xe9, 0x02, 0xe9, 0x02, 0xed, 0x02, 0xed, 0x02, 0xef, 0x02, 0xef, 0x02, 0xf3, 0x02, 0xf5, 0x02, 0xf7, 0x02, 0xf9, 0x02, 0xfb, 0x02, 0xf9, 0x02, 0xff, 0x02, 0xff, 0x02, 0xff, 0x02, 0xff, 0x02, 0x05, 0x03, 0x05, 0x03, 0x05, 0x03, 0x07, 0x03, 0x07, 0x03, 0x07, 0x03, 0x0b, 0x03, 0x0b, 0x03, 0x0d, 0x03, 0x0f, 0x03, 0x11, 0x03, 0x0f, 0x03, 0x11, 0x03, 0x11, 0x03, 0x13, 0x03, 0x13, 0x03, 0x13, 0x03, 0x17, 0x03, 0x15, 0x03, 0x17, 0x03, 0x17, 0x03, 0x17, 0x03, 0x19, 0x03, 0x19, 0x03, 0x19, 0x03, 0x17, 0x03, 0x1b, 0x03, 0x1d, 0x03, 0x1b, 0x03, 0x1b, 0x03, 0x17, 0x03, 0x1b, 0x03, 0x19, 0x03, 0x19, 0x03, 0x1b, 0x03, 0x1b, 0x03, 0x1d, 0x03, 0x19, 0x03, 0x1d, 0x03, 0x1b, 0x03, 0x19, 0x03, 0x1d, 0x03, 0x1b, 0x03, 0x17, 0x03, 0x19, 0x03, 0x19, 0x03, 0x17, 0x03, 0x17, 0x03, 0x17, 0x03, 0x15, 0x03, 0x17, 0x03, 0x17, 0x03, 0x17, 0x03, 0x11, 0x03, 0x13, 0x03, 0x11, 0x03, 0x11, 0x03, 0x11, 0x03, 0x0f, 0x03, 0x11, 0x03, 0x0b, 0x03, 0x0d, 0x03, 0x0b, 0x03, 0x0b, 0x03, 0x09, 0x03, 0x07, 0x03, 0x05, 0x03, 0x05, 0x03, 0x05, 0x03, 0xff, 0x02, 0x05, 0x03, 0xff, 0x02, 0xff, 0x02, 0xff, 0x02, 0xf9, 0x02, 0xfb, 0x02, 0xf9, 0x02, 0xf7, 0x02, 0xf5, 0x02, 0xf3, 0x02, 0xef, 0x02, 0xef, 0x02, 0xf1, 0x02, 0xed, 0x02, 0xed, 0x02, 0xe7, 0x02, 0xe7, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xdd, 0x02, 0xe1, 0x02, 0xdb, 0x02, 0xd9, 0x02, 0xd7, 0x02, 0xd3, 0x02, 0xd5, 0x02, 0xcf, 0x02, 0xcf, 0x02, 0xc9, 0x02, 0xc9, 0x02, 0xc7, 0x02, 0xc3, 0x02, 0xc3, 0x02, 0xc1, 0x02, 0xbd, 0x02, 0xb9, 0x02, 0xb9, 0x02, 0xb5, 0x02, 0xb3, 0x02, 0xaf, 0x02, 0xad, 0x02, 0xab, 0x02, 0xa5, 0x02, 0xa5, 0x02, 0xa1, 0x02, 0x9d, 0x02, 0x9b, 0x02, 0x95, 0x02, 0x93, 0x02, 0x93, 0x02, 0x8d, 0x02, 0x8d, 0x02, 0x87, 0x02, 0x85, 0x02, 0x81, 0x02, 0x7f, 0x02, 0x7d, 0x02, 0x79, 0x02, 0x75, 0x02, 0x75, 0x02, 0x6d, 0x02, 0x6b, 0x02, 0x6b, 0x02, 0x63, 0x02, 0x63, 0x02, 0x5d, 0x02, 0x57, 0x02, 0x57, 0x02, 0x51, 0x02, 0x4d, 0x02, 0x47, 0x02, 0x45, 0x02, 0x45, 0x02, 0x3f, 0x02, 0x3d, 0x02, 0x35, 0x02, 0x33, 0x02, 0x31, 0x02, 0x2d, 0x02, 0x2b, 0x02, 0x21, 0x02, 0x23, 0x02, 0x1d, 0x02, 0x1b, 0x02, 0x13, 0x02, 0x11, 0x02, 0x0d, 0x02, 0x03, 0x02, 0x07, 0x02, 0xfd, 0x01, 0xfa, 0x01, 0xf6, 0x01, 0xf0, 0x01, 0xf0, 0x01, 0xeb, 0x01, 0xe4, 0x01, 0xe2, 0x01, 0xdc, 0x01, 0xd8, 0x01, 0xd3, 0x01, 0xcf, 0x01, 0xcd, 0x01, 0xc7, 0x01, 0xc1, 0x01, 0xc1, 0x01, 0xbb, 0x01, 0xb5, 0x01, 0xb1, 0x01, 0xac, 0x01, 0xa8, 0x01, 0xa2, 0x01, 0x9d, 0x01, 0x97, 0x01, 0x97, 0x01, 0x8e, 0x01, 0x8d, 0x01, 0x8a, 0x01, 0x7f, 0x01, 0x7e, 0x01, 0x7b, 0x01, 0x75, 0x01, 0x70, 0x01, 0x6a, 0x01, 0x64, 0x01, 0x63, 0x01, 0x5b, 0x01, 0x55, 0x01, 0x55, 0x01, 0x4c, 0x01, 0x49, 0x01, 0x45, 0x01, 0x3d, 0x01, 0x3a, 0x01, 0x36, 0x01, 0x30, 0x01, 0x2d, 0x01, 0x24, 0x01, 0x24, 0x01, 0x1b, 0x01, 0x18, 0x01, 0x13, 0x01, 0x0c, 0x01, 0x0d, 0x01, 0x00, 0x01, 0x00, 0x01, 0xf8, 0x00, 0xf5, 0x00, 0xf2, 0x00, 0xe8, 0x00, 0xe6, 0x00, 0xe2, 0x00, 0xdc, 0x00, 0xd7, 0x00, 0xd0, 0x00, 0xc8, 0x00, 0xca, 0x00, 0xc1, 0x00, 0xbc, 0x00, 0xb8, 0x00, 0xb5, 0x00, 0xad, 0x00, 0xa7, 0x00, 0xa4, 0x00, 0x9b, 0x00, 0x9a, 0x00, 0x94, 0x00, 0x8c, 0x00, 0x8c, 0x00, 0x83, 0x00, 0x80, 0x00, 0x79, 0x00, 0x73, 0x00, 0x6e, 0x00, 0x6a, 0x00, 0x64, 0x00, 0x5f, 0x00, 0x5b, 0x00, 0x55, 0x00, 0x50, 0x00, 0x4a, 0x00, 0x44, 0x00, 0x41, 0x00, 0x3d, 0x00, 0x34, 0x00, 0x31, 0x00, 0x2c, 0x00, 0x25, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x16, 0x00, 0x10, 0x00, 0x11, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd1, 0xff, 0xc9, 0xff, 0xc6, 0xff, 0xbf, 0xff, 0xbc, 0xff, 0xb4, 0xff, 0xb0, 0xff, 0xab, 0xff, 0xa7, 0xff, 0xa5, 0xff, 0x9b, 0xff, 0x96, 0xff, 0x95, 0xff, 0x8d, 0xff, 0x89, 0xff, 0x84, 0xff, 0x80, 0xff, 0x78, 0xff, 0x77, 0xff, 0x71, 0xff, 0x6b, 0xff, 0x68, 0xff, 0x62, 0xff, 0x5f, 0xff, 0x57, 0xff, 0x54, 0xff, 0x4d, 0xff, 0x47, 0xff, 0x44, 0xff, 0x3f, 0xff, 0x3c, 0xff, 0x35, 0xff, 0x32, 0xff, 0x2c, 0xff, 0x26, 0xff, 0x26, 0xff, 0x20, 0xff, 0x1a, 0xff, 0x15, 0xff, 0x11, 0xff, 0x0b, 0xff, 0x05, 0xff, 0x03, 0xff, 0xff, 0xfe, 0xf6, 0xfe, 0xf4, 0xfe, 0xee, 0xfe, 0xea, 0xfe, 0xe5, 0xfe, 0xe1, 0xfe, 0xde, 0xfe, 0xd9, 0xfe, 0xd3, 0xfe, 0xcf, 0xfe, 0xcf, 0xfe, 0xc7, 0xfe, 0xc3, 0xfe, 0xc0, 0xfe, 0xbb, 0xfe, 0xb8, 0xfe, 0xb1, 0xfe, 0xae, 0xfe, 0xa8, 0xfe, 0xa6, 0xfe, 0xa0, 0xfe, 0x9f, 0xfe, 0x97, 0xfe, 0x91, 0xfe, 0x91, 0xfe, 0x8b, 0xfe, 0x8a, 0xfe, 0x82, 0xfe, 0x84, 0xfe, 0x78, 0xfe, 0x79, 0xfe, 0x73, 0xfe, 0x70, 0xfe, 0x6f, 0xfe, 0x67, 0xfe, 0x64, 0xfe, 0x60, 0xfe, 0x5d, 0xfe, 0x5a, 0xfe, 0x52, 0xfe, 0x51, 0xfe, 0x4e, 0xfe, 0x49, 0xfe, 0x45, 0xfe, 0x40, 0xfe, 0x3c, 0xfe, 0x3c, 0xfe, 0x37, 0xfe, 0x34, 0xfe, 0x31, 0xfe, 0x2e, 0xfe, 0x28, 0xfe, 0x24, 0xfe, 0x24, 0xfe, 0x1f, 0xfe, 0x19, 0xfe, 0x18, 0xfe, 0x13, 0xfe, 0x10, 0xfe, 0x0d, 0xfe, 0x09, 0xfe, 0x07, 0xfe, 0x03, 0xfe, 0x03, 0xfe, 0xfb, 0xfd, 0xf9, 0xfd, 0xf9, 0xfd, 0xf1, 0xfd, 0xf3, 0xfd, 0xeb, 0xfd, 0xe9, 0xfd, 0xe9, 0xfd, 0xe7, 0xfd, 0xe5, 0xfd, 0xdf, 0xfd, 0xdf, 0xfd, 0xd9, 0xfd, 0xd3, 0xfd, 0xd5, 0xfd, 0xd3, 0xfd, 0xcd, 0xfd, 0xcd, 0xfd, 0xc9, 0xfd, 0xc7, 0xfd, 0xc3, 0xfd, 0xc1, 0xfd, 0xbf, 0xfd, 0xbd, 0xfd, 0xbb, 0xfd, 0xb5, 0xfd, 0xb5, 0xfd, 0xb5, 0xfd, 0xb1, 0xfd, 0xaf, 0xfd, 0xa9, 0xfd, 0xa9, 0xfd, 0xa5, 0xfd, 0xa5, 0xfd, 0xa3, 0xfd, 0x9f, 0xfd, 0xa1, 0xfd, 0x9d, 0xfd, 0x9d, 0xfd, 0x9b, 0xfd, 0x97, 0xfd, 0x97, 0xfd, 0x93, 0xfd, 0x93, 0xfd, 0x8f, 0xfd, 0x8b, 0xfd, 0x8f, 0xfd, 0x89, 0xfd, 0x89, 0xfd, 0x87, 0xfd, 0x85, 0xfd, 0x83, 0xfd, 0x83, 0xfd, 0x81, 0xfd, 0x7f, 0xfd, 0x81, 0xfd, 0x7d, 0xfd, 0x7b, 0xfd, 0x7d, 0xfd, 0x79, 0xfd, 0x79, 0xfd, 0x77, 0xfd, 0x77, 0xfd, 0x73, 0xfd, 0x75, 0xfd, 0x75, 0xfd, 0x71, 0xfd, 0x6d, 0xfd, 0x6d, 0xfd, 0x6b, 0xfd, 0x6d, 0xfd, 0x6b, 0xfd, 0x6d, 0xfd, 0x69, 0xfd, 0x67, 0xfd, 0x6b, 0xfd, 0x67, 0xfd, 0x67, 0xfd, 0x65, 0xfd, 0x69, 0xfd, 0x65, 0xfd, 0x63, 0xfd, 0x63, 0xfd, 0x63, 0xfd, 0x63, 0xfd, 0x61, 0xfd, 0x5f, 0xfd, 0x61, 0xfd, 0x5f, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x5f, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x5f, 0xfd, 0x61, 0xfd, 0x5f, 0xfd, 0x61, 0xfd, 0x5d, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x5f, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x5f, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x67, 0xfd, 0x61, 0xfd, 0x65, 0xfd, 0x65, 0xfd, 0x63, 0xfd, 0x63, 0xfd, 0x67, 0xfd, 0x67, 0xfd, 0x67, 0xfd, 0x6d, 0xfd, 0x67, 0xfd, 0x6b, 0xfd, 0x67, 0xfd, 0x69, 0xfd, 0x69, 0xfd, 0x6b, 0xfd, 0x6d, 0xfd, 0x6d, 0xfd, 0x73, 0xfd, 0x6f, 0xfd, 0x71, 0xfd, 0x73, 0xfd, 0x71, 0xfd, 0x77, 0xfd, 0x75, 0xfd, 0x75, 0xfd, 0x7b, 0xfd, 0x79, 0xfd, 0x7b, 0xfd, 0x7d, 0xfd, 0x7f, 0xfd, 0x7b, 0xfd, 0x7f, 0xfd, 0x81, 0xfd, 0x85, 0xfd, 0x83, 0xfd, 0x87, 0xfd, 0x85, 0xfd, 0x89, 0xfd, 0x8b, 0xfd, 0x8b, 0xfd, 0x8f, 0xfd, 0x91, 0xfd, 0x91, 0xfd, 0x91, 0xfd, 0x97, 0xfd, 0x97, 0xfd, 0x99, 0xfd, 0x97, 0xfd, 0x9d, 0xfd, 0x9d, 0xfd, 0x9f, 0xfd, 0xa5, 0xfd, 0xa1, 0xfd, 0xa9, 0xfd, 0xa9, 0xfd, 0xa9, 0xfd, 0xaf, 0xfd, 0xaf, 0xfd, 0xaf, 0xfd, 0xb5, 0xfd, 0xb5, 0xfd, 0xb9, 0xfd, 0xbb, 0xfd, 0xbd, 0xfd, 0xc1, 0xfd, 0xc1, 0xfd, 0xc7, 0xfd, 0xc5, 0xfd, 0xc7, 0xfd, 0xcd, 0xfd, 0xd1, 0xfd, 0xd3, 0xfd, 0xd1, 0xfd, 0xd7, 0xfd, 0xd9, 0xfd, 0xdb, 0xfd, 0xdd, 0xfd, 0xdf, 0xfd, 0xe3, 0xfd, 0xe5, 0xfd, 0xe9, 0xfd, 0xeb, 0xfd, 0xed, 0xfd, 0xef, 0xfd, 0xf3, 0xfd, 0xf7, 0xfd, 0xfb, 0xfd, 0xfd, 0xfd, 0xff, 0xfd, 0x06, 0xfe, 0x04, 0xfe, 0x07, 0xfe, 0x0f, 0xfe, 0x0c, 0xfe, 0x12, 0xfe, 0x12, 0xfe, 0x18, 0xfe, 0x1e, 0xfe, 0x1c, 0xfe, 0x21, 0xfe, 0x24, 0xfe, 0x2a, 0xfe, 0x2d, 0xfe, 0x2e, 0xfe, 0x33, 0xfe, 0x34, 0xfe, 0x3a, 0xfe, 0x3a, 0xfe, 0x40, 0xfe, 0x40, 0xfe, 0x48, 0xfe, 0x4b, 0xfe, 0x4c, 0xfe, 0x51, 0xfe, 0x52, 0xfe, 0x55, 0xfe, 0x5b, 0xfe, 0x5e, 0xfe, 0x61, 0xfe, 0x69, 0xfe, 0x67, 0xfe, 0x6a, 0xfe, 0x70, 0xfe, 0x73, 0xfe, 0x76, 0xfe, 0x79, 0xfe, 0x7f, 0xfe, 0x82, 0xfe, 0x85, 0xfe, 0x8a, 0xfe, 0x8e, 0xfe, 0x94, 0xfe, 0x93, 0xfe, 0x9c, 0xfe, 0x9c, 0xfe, 0xa0, 0xfe, 0xa5, 0xfe, 0xa9, 0xfe, 0xac, 0xfe, 0xaf, 0xfe, 0xb4, 0xfe, 0xb7, 0xfe, 0xbd, 0xfe, 0xc0, 0xfe, 0xc3, 0xfe, 0xc6, 0xfe, 0xcf, 0xfe, 0xd2, 0xfe, 0xd5, 0xfe, 0xd9, 0xfe, 0xd9, 0xfe, 0xe2, 0xfe, 0xe4, 0xfe, 0xe7, 0xfe, 0xeb, 0xfe, 0xee, 0xfe, 0xf6, 0xfe, 0xf6, 0xfe, 0xff, 0xfe, 0xfd, 0xfe, 0x05, 0xff, 0x08, 0xff, 0x0c, 0xff, 0x0e, 0xff, 0x14, 0xff, 0x17, 0xff, 0x1e, 0xff, 0x21, 0xff, 0x24, 0xff, 0x29, 0xff, 0x2c, 0xff, 0x33, 0xff, 0x35, 0xff, 0x39, 0xff, 0x3f, 0xff, 0x44, 0xff, 0x47, 0xff, 0x4e, 0xff, 0x4d, 0xff, 0x53, 0xff, 0x57, 0xff, 0x5d, 0xff, 0x5f, 0xff, 0x62, 0xff, 0x6b, 0xff, 0x6e, 0xff, 0x72, 0xff, 0x75, 0xff, 0x78, 0xff, 0x7d, 0xff, 0x81, 0xff, 0x86, 0xff, 0x89, 0xff, 0x90, 0xff, 0x90, 0xff, 0x95, 0xff, 0x9b, 0xff, 0x9f, 0xff, 0xa5, 0xff, 0xa8, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xb4, 0xff, 0xb9, 0xff, 0xbf, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x16, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x26, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x32, 0x00, 0x37, 0x00, 0x3a, 0x00, 0x41, 0x00, 0x41, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4f, 0x00, 0x52, 0x00, 0x55, 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x64, 0x00, 0x68, 0x00, 0x6d, 0x00, 0x70, 0x00, 0x73, 0x00, 0x79, 0x00, 0x7c, 0x00, 0x80, 0x00, 0x82, 0x00, 0x88, 0x00, 0x8c, 0x00, 0x8e, 0x00, 0x94, 0x00, 0x97, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0xa1, 0x00, 0xa7, 0x00, 0xa9, 0x00, 0xb0, 0x00, 0xb2, 0x00, 0xb5, 0x00, 0xbc, 0x00, 0xbe, 0x00, 0xc2, 0x00, 0xc4, 0x00, 0xca, 0x00, 0xcd, 0x00, 0xd1, 0x00, 0xd3, 0x00, 0xd7, 0x00, 0xda, 0x00, 0xe0, 0x00, 0xe2, 0x00, 0xe8, 0x00, 0xeb, 0x00, 0xee, 0x00, 0xf2, 0x00, 0xf4, 0x00, 0xf8, 0x00, 0xfd, 0x00, 0x01, 0x01, 0x06, 0x01, 0x07, 0x01, 0x09, 0x01, 0x0f, 0x01, 0x10, 0x01, 0x13, 0x01, 0x19, 0x01, 0x18, 0x01, 0x1f, 0x01, 0x21, 0x01, 0x22, 0x01, 0x28, 0x01, 0x2d, 0x01, 0x2e, 0x01, 0x33, 0x01, 0x39, 0x01, 0x3a, 0x01, 0x3c, 0x01, 0x3f, 0x01, 0x45, 0x01, 0x46, 0x01, 0x49, 0x01, 0x4e, 0x01, 0x4c, 0x01, 0x54, 0x01, 0x57, 0x01, 0x58, 0x01, 0x5d, 0x01, 0x5e, 0x01, 0x60, 0x01, 0x64, 0x01, 0x69, 0x01, 0x6c, 0x01, 0x6c, 0x01, 0x70, 0x01, 0x72, 0x01, 0x75, 0x01, 0x79, 0x01, 0x79, 0x01, 0x81, 0x01, 0x81, 0x01, 0x84, 0x01, 0x85, 0x01, 0x87, 0x01, 0x8d, 0x01, 0x8d, 0x01, 0x94, 0x01, 0x96, 0x01, 0x96, 0x01, 0x99, 0x01, 0x9a, 0x01, 0x9d, 0x01, 0xa0, 0x01, 0xa3, 0x01, 0xa5, 0x01, 0xa8, 0x01, 0xa9, 0x01, 0xac, 0x01, 0xaf, 0x01, 0xb1, 0x01, 0xb4, 0x01, 0xb7, 0x01, 0xb7, 0x01, 0xbb, 0x01, 0xbd, 0x01, 0xc0, 0x01, 0xc1, 0x01, 0xc3, 0x01, 0xc4, 0x01, 0xc9, 0x01, 0xc7, 0x01, 0xcc, 0x01, 0xca, 0x01, 0xcf, 0x01, 0xd0, 0x01, 0xd5, 0x01, 0xd3, 0x01, 0xd8, 0x01, 0xd8, 0x01, 0xd9, 0x01, 0xdb, 0x01, 0xdc, 0x01, 0xe1, 0x01, 0xe1, 0x01, 0xe5, 0x01, 0xe4, 0x01, 0xe7, 0x01, 0xe7, 0x01, 0xe8, 0x01, 0xea, 0x01, 0xee, 0x01, 0xed, 0x01, 0xf0, 0x01, 0xf0, 0x01, 0xf0, 0x01, 0xf3, 0x01, 0xf3, 0x01, 0xf9, 0x01, 0xf6, 0x01, 0xf7, 0x01, 0xfa, 0x01, 0xfa, 0x01, 0xfc, 0x01, 0xff, 0x01, 0x01, 0x02, 0xfd, 0x01, 0x03, 0x02, 0x01, 0x02, 0x01, 0x02, 0x09, 0x02, 0x05, 0x02, 0x07, 0x02, 0x09, 0x02, 0x07, 0x02, 0x09, 0x02, 0x09, 0x02, 0x09, 0x02, 0x09, 0x02, 0x0b, 0x02, 0x0d, 0x02, 0x09, 0x02, 0x0d, 0x02, 0x0f, 0x02, 0x0d, 0x02, 0x11, 0x02, 0x0f, 0x02, 0x13, 0x02, 0x13, 0x02, 0x11, 0x02, 0x13, 0x02, 0x15, 0x02, 0x13, 0x02, 0x13, 0x02, 0x15, 0x02, 0x13, 0x02, 0x15, 0x02, 0x17, 0x02, 0x15, 0x02, 0x15, 0x02, 0x15, 0x02, 0x15, 0x02, 0x15, 0x02, 0x17, 0x02, 0x17, 0x02, 0x15, 0x02, 0x17, 0x02, 0x15, 0x02, 0x17, 0x02, 0x15, 0x02, 0x15, 0x02, 0x19, 0x02, 0x15, 0x02, 0x15, 0x02, 0x15, 0x02, 0x15, 0x02, 0x15, 0x02, 0x15, 0x02, 0x17, 0x02, 0x13, 0x02, 0x15, 0x02, 0x15, 0x02, 0x0f, 0x02, 0x15, 0x02, 0x15, 0x02, 0x11, 0x02, 0x11, 0x02, 0x13, 0x02, 0x0f, 0x02, 0x0f, 0x02, 0x0f, 0x02, 0x0f, 0x02, 0x0d, 0x02, 0x11, 0x02, 0x09, 0x02, 0x0d, 0x02, 0x0d, 0x02, 0x09, 0x02, 0x09, 0x02, 0x07, 0x02, 0x09, 0x02, 0x05, 0x02, 0x09, 0x02, 0x03, 0x02, 0x03, 0x02, 0x05, 0x02, 0x03, 0x02, 0xff, 0x01, 0xff, 0x01, 0xfd, 0x01, 0xfa, 0x01, 0xfa, 0x01, 0xfd, 0x01, 0xf7, 0x01, 0xf9, 0x01, 0xf9, 0x01, 0xf7, 0x01, 0xf4, 0x01, 0xf1, 0x01, 0xf4, 0x01, 0xf0, 0x01, 0xed, 0x01, 0xeb, 0x01, 0xee, 0x01, 0xea, 0x01, 0xea, 0x01, 0xe7, 0x01, 0xe5, 0x01, 0xe4, 0x01, 0xe5, 0x01, 0xe2, 0x01, 0xdc, 0x01, 0xdf, 0x01, 0xdb, 0x01, 0xd9, 0x01, 0xdb, 0x01, 0xd6, 0x01, 0xd6, 0x01, 0xd3, 0x01, 0xd2, 0x01, 0xcc, 0x01, 0xd0, 0x01, 0xcd, 0x01, 0xca, 0x01, 0xc7, 0x01, 0xc6, 0x01, 0xc4, 0x01, 0xc0, 0x01, 0xbe, 0x01, 0xbd, 0x01, 0xbd, 0x01, 0xba, 0x01, 0xb5, 0x01, 0xb5, 0x01, 0xb4, 0x01, 0xb4, 0x01, 0xae, 0x01, 0xaf, 0x01, 0xab, 0x01, 0xa8, 0x01, 0xa6, 0x01, 0xa5, 0x01, 0xa3, 0x01, 0xa0, 0x01, 0xa0, 0x01, 0x9c, 0x01, 0x9c, 0x01, 0x96, 0x01, 0x93, 0x01, 0x93, 0x01, 0x8e, 0x01, 0x8e, 0x01, 0x88, 0x01, 0x88, 0x01, 0x85, 0x01, 0x84, 0x01, 0x82, 0x01, 0x7b, 0x01, 0x7c, 0x01, 0x76, 0x01, 0x75, 0x01, 0x73, 0x01, 0x72, 0x01, 0x70, 0x01, 0x6c, 0x01, 0x6a, 0x01, 0x63, 0x01, 0x63, 0x01, 0x60, 0x01, 0x5b, 0x01, 0x5b, 0x01, 0x58, 0x01, 0x55, 0x01, 0x54, 0x01, 0x4f, 0x01, 0x4c, 0x01, 0x49, 0x01, 0x45, 0x01, 0x45, 0x01, 0x42, 0x01, 0x3c, 0x01, 0x3a, 0x01, 0x39, 0x01, 0x34, 0x01, 0x31, 0x01, 0x2d, 0x01, 0x31, 0x01, 0x28, 0x01, 0x25, 0x01, 0x22, 0x01, 0x1f, 0x01, 0x1c, 0x01, 0x1c, 0x01, 0x16, 0x01, 0x12, 0x01, 0x10, 0x01, 0x0d, 0x01, 0x07, 0x01, 0x09, 0x01, 0x06, 0x01, 0x00, 0x01, 0x01, 0x01, 0xfb, 0x00, 0xf7, 0x00, 0xf4, 0x00, 0xf1, 0x00, 0xec, 0x00, 0xeb, 0x00, 0xe5, 0x00, 0xe5, 0x00, 0xe2, 0x00, 0xdd, 0x00, 0xda, 0x00, 0xd6, 0x00, 0xd4, 0x00, 0xce, 0x00, 0xce, 0x00, 0xc8, 0x00, 0xc8, 0x00, 0xc4, 0x00, 0xbf, 0x00, 0xbc, 0x00, 0xbb, 0x00, 0xb5, 0x00, 0xb0, 0x00, 0xaf, 0x00, 0xaa, 0x00, 0xa7, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0x9d, 0x00, 0x9b, 0x00, 0x9a, 0x00, 0x92, 0x00, 0x8e, 0x00, 0x8f, 0x00, 0x88, 0x00, 0x88, 0x00, 0x83, 0x00, 0x7d, 0x00, 0x79, 0x00, 0x77, 0x00, 0x74, 0x00, 0x70, 0x00, 0x6e, 0x00, 0x6a, 0x00, 0x67, 0x00, 0x64, 0x00, 0x61, 0x00, 0x5c, 0x00, 0x58, 0x00, 0x56, 0x00, 0x50, 0x00, 0x4f, 0x00, 0x4c, 0x00, 0x46, 0x00, 0x46, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x38, 0x00, 0x35, 0x00, 0x34, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x22, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x16, 0x00, 0x10, 0x00, 0x16, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xed, 0xff, 0xe9, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xcb, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xbc, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb3, 0xff, 0xab, 0xff, 0xab, 0xff, 0xa8, 0xff, 0xa2, 0xff, 0x9f, 0xff, 0x9e, 0xff, 0x99, 0xff, 0x98, 0xff, 0x95, 0xff, 0x8f, 0xff, 0x8c, 0xff, 0x8a, 0xff, 0x84, 0xff, 0x83, 0xff, 0x81, 0xff, 0x7b, 0xff, 0x78, 0xff, 0x75, 0xff, 0x74, 0xff, 0x6c, 0xff, 0x6c, 0xff, 0x6c, 0xff, 0x66, 0xff, 0x65, 0xff, 0x5d, 0xff, 0x5d, 0xff, 0x5a, 0xff, 0x57, 0xff, 0x53, 0xff, 0x4e, 0xff, 0x4e, 0xff, 0x4b, 0xff, 0x48, 0xff, 0x47, 0xff, 0x42, 0xff, 0x3e, 0xff, 0x3b, 0xff, 0x36, 0xff, 0x38, 0xff, 0x32, 0xff, 0x30, 0xff, 0x2c, 0xff, 0x2a, 0xff, 0x24, 0xff, 0x23, 0xff, 0x21, 0xff, 0x1b, 0xff, 0x1b, 0xff, 0x17, 0xff, 0x17, 0xff, 0x11, 0xff, 0x0e, 0xff, 0x0b, 0xff, 0x0c, 0xff, 0x02, 0xff, 0x05, 0xff, 0x02, 0xff, 0xff, 0xfe, 0xfa, 0xfe, 0xf7, 0xfe, 0xf7, 0xfe, 0xf3, 0xfe, 0xf1, 0xfe, 0xee, 0xfe, 0xeb, 0xfe, 0xe8, 0xfe, 0xe5, 0xfe, 0xe5, 0xfe, 0xe1, 0xfe, 0xe1, 0xfe, 0xdc, 0xfe, 0xdc, 0xfe, 0xd8, 0xfe, 0xd5, 0xfe, 0xd3, 0xfe, 0xcd, 0xfe, 0xcd, 0xfe, 0xcc, 0xfe, 0xc6, 0xfe, 0xc9, 0xfe, 0xc3, 0xfe, 0xc3, 0xfe, 0xc1, 0xfe, 0xbb, 0xfe, 0xbb, 0xfe, 0xb7, 0xfe, 0xb8, 0xfe, 0xb5, 0xfe, 0xb1, 0xfe, 0xb1, 0xfe, 0xac, 0xfe, 0xab, 0xfe, 0xa9, 0xfe, 0xa8, 0xfe, 0xa8, 0xfe, 0xa2, 0xfe, 0xa2, 0xfe, 0xa0, 0xfe, 0x9c, 0xfe, 0x9a, 0xfe, 0x9c, 0xfe, 0x94, 0xfe, 0x94, 0xfe, 0x94, 0xfe, 0x91, 0xfe, 0x91, 0xfe, 0x8d, 0xfe, 0x8e, 0xfe, 0x8a, 0xfe, 0x88, 0xfe, 0x87, 0xfe, 0x85, 0xfe, 0x81, 0xfe, 0x82, 0xfe, 0x81, 0xfe, 0x7b, 0xfe, 0x7c, 0xfe, 0x7c, 0xfe, 0x7b, 0xfe, 0x76, 0xfe, 0x76, 0xfe, 0x73, 0xfe, 0x75, 0xfe, 0x72, 0xfe, 0x70, 0xfe, 0x6d, 0xfe, 0x6c, 0xfe, 0x6c, 0xfe, 0x6a, 0xfe, 0x67, 0xfe, 0x67, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x60, 0xfe, 0x61, 0xfe, 0x5e, 0xfe, 0x61, 0xfe, 0x5e, 0xfe, 0x5d, 0xfe, 0x5d, 0xfe, 0x58, 0xfe, 0x5a, 0xfe, 0x58, 0xfe, 0x58, 0xfe, 0x55, 0xfe, 0x55, 0xfe, 0x55, 0xfe, 0x52, 0xfe, 0x52, 0xfe, 0x51, 0xfe, 0x4f, 0xfe, 0x4e, 0xfe, 0x4f, 0xfe, 0x4c, 0xfe, 0x4c, 0xfe, 0x4e, 0xfe, 0x4b, 0xfe, 0x4b, 0xfe, 0x49, 0xfe, 0x46, 0xfe, 0x4b, 0xfe, 0x46, 0xfe, 0x48, 0xfe, 0x45, 0xfe, 0x46, 0xfe, 0x43, 0xfe, 0x46, 0xfe, 0x45, 0xfe, 0x42, 0xfe, 0x43, 0xfe, 0x43, 0xfe, 0x43, 0xfe, 0x40, 0xfe, 0x42, 0xfe, 0x3f, 0xfe, 0x43, 0xfe, 0x3f, 0xfe, 0x40, 0xfe, 0x42, 0xfe, 0x3f, 0xfe, 0x3f, 0xfe, 0x3f, 0xfe, 0x40, 0xfe, 0x40, 0xfe, 0x3f, 0xfe, 0x3d, 0xfe, 0x3d, 0xfe, 0x3c, 0xfe, 0x3d, 0xfe, 0x40, 0xfe, 0x3a, 0xfe, 0x3c, 0xfe, 0x3f, 0xfe, 0x3a, 0xfe, 0x3d, 0xfe, 0x3d, 0xfe, 0x3f, 0xfe, 0x40, 0xfe, 0x3f, 0xfe, 0x3f, 0xfe, 0x3f, 0xfe, 0x40, 0xfe, 0x3f, 0xfe, 0x3f, 0xfe, 0x40, 0xfe, 0x40, 0xfe, 0x42, 0xfe, 0x3f, 0xfe, 0x42, 0xfe, 0x43, 0xfe, 0x42, 0xfe, 0x43, 0xfe, 0x43, 0xfe, 0x42, 0xfe, 0x45, 0xfe, 0x43, 0xfe, 0x45, 0xfe, 0x45, 0xfe, 0x45, 0xfe, 0x48, 0xfe, 0x45, 0xfe, 0x48, 0xfe, 0x49, 0xfe, 0x4b, 0xfe, 0x45, 0xfe, 0x48, 0xfe, 0x49, 0xfe, 0x4c, 0xfe, 0x4e, 0xfe, 0x4e, 0xfe, 0x4e, 0xfe, 0x4f, 0xfe, 0x4f, 0xfe, 0x4f, 0xfe, 0x52, 0xfe, 0x54, 0xfe, 0x55, 0xfe, 0x54, 0xfe, 0x55, 0xfe, 0x57, 0xfe, 0x58, 0xfe, 0x58, 0xfe, 0x5a, 0xfe, 0x5b, 0xfe, 0x5b, 0xfe, 0x5e, 0xfe, 0x5e, 0xfe, 0x60, 0xfe, 0x60, 0xfe, 0x63, 0xfe, 0x63, 0xfe, 0x61, 0xfe, 0x66, 0xfe, 0x66, 0xfe, 0x67, 0xfe, 0x69, 0xfe, 0x6c, 0xfe, 0x6a, 0xfe, 0x6f, 0xfe, 0x6d, 0xfe, 0x70, 0xfe, 0x73, 0xfe, 0x73, 0xfe, 0x75, 0xfe, 0x76, 0xfe, 0x78, 0xfe, 0x79, 0xfe, 0x7b, 0xfe, 0x7e, 0xfe, 0x7c, 0xfe, 0x7e, 0xfe, 0x82, 0xfe, 0x7f, 0xfe, 0x85, 0xfe, 0x85, 0xfe, 0x8a, 0xfe, 0x8a, 0xfe, 0x8e, 0xfe, 0x8b, 0xfe, 0x8e, 0xfe, 0x90, 0xfe, 0x91, 0xfe, 0x93, 0xfe, 0x96, 0xfe, 0x96, 0xfe, 0x9a, 0xfe, 0x9c, 0xfe, 0x9c, 0xfe, 0x9f, 0xfe, 0xa3, 0xfe, 0xa3, 0xfe, 0xa3, 0xfe, 0xa5, 0xfe, 0xab, 0xfe, 0xac, 0xfe, 0xac, 0xfe, 0xaf, 0xfe, 0xb1, 0xfe, 0xb2, 0xfe, 0xb5, 0xfe, 0xb7, 0xfe, 0xba, 0xfe, 0xbd, 0xfe, 0xbd, 0xfe, 0xc0, 0xfe, 0xc1, 0xfe, 0xc3, 0xfe, 0xc6, 0xfe, 0xc7, 0xfe, 0xcd, 0xfe, 0xcc, 0xfe, 0xcf, 0xfe, 0xd3, 0xfe, 0xd2, 0xfe, 0xd6, 0xfe, 0xd9, 0xfe, 0xd9, 0xfe, 0xdb, 0xfe, 0xe1, 0xfe, 0xdf, 0xfe, 0xe2, 0xfe, 0xe7, 0xfe, 0xea, 0xfe, 0xea, 0xfe, 0xeb, 0xfe, 0xee, 0xfe, 0xf3, 0xfe, 0xf6, 0xfe, 0xf6, 0xfe, 0xf9, 0xfe, 0xfd, 0xfe, 0x00, 0xff, 0x02, 0xff, 0x05, 0xff, 0x03, 0xff, 0x06, 0xff, 0x0b, 0xff, 0x0c, 0xff, 0x0f, 0xff, 0x11, 0xff, 0x14, 0xff, 0x17, 0xff, 0x1b, 0xff, 0x1d, 0xff, 0x21, 0xff, 0x23, 0xff, 0x24, 0xff, 0x29, 0xff, 0x29, 0xff, 0x2c, 0xff, 0x2f, 0xff, 0x30, 0xff, 0x33, 0xff, 0x36, 0xff, 0x3b, 0xff, 0x3c, 0xff, 0x41, 0xff, 0x41, 0xff, 0x48, 0xff, 0x45, 0xff, 0x4a, 0xff, 0x4d, 0xff, 0x4d, 0xff, 0x53, 0xff, 0x56, 0xff, 0x5a, 0xff, 0x59, 0xff, 0x60, 0xff, 0x5d, 0xff, 0x63, 0xff, 0x63, 0xff, 0x68, 0xff, 0x6b, 0xff, 0x6e, 0xff, 0x6f, 0xff, 0x74, 0xff, 0x75, 0xff, 0x7a, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x80, 0xff, 0x84, 0xff, 0x87, 0xff, 0x8a, 0xff, 0x90, 0xff, 0x90, 0xff, 0x92, 0xff, 0x95, 0xff, 0x98, 0xff, 0x9c, 0xff, 0x9e, 0xff, 0xa2, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xab, 0xff, 0xad, 0xff, 0xae, 0xff, 0xb1, 0xff, 0xb6, 0xff, 0xb9, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xbf, 0xff, 0xc3, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xdb, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x14, 0x00, 0x16, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x25, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x37, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x43, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x53, 0x00, 0x56, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x62, 0x00, 0x62, 0x00, 0x65, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x6d, 0x00, 0x76, 0x00, 0x77, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x7f, 0x00, 0x7f, 0x00, 0x83, 0x00, 0x88, 0x00, 0x88, 0x00, 0x8c, 0x00, 0x8e, 0x00, 0x8f, 0x00, 0x91, 0x00, 0x95, 0x00, 0x97, 0x00, 0x9a, 0x00, 0x9b, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0xa3, 0x00, 0xa7, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xac, 0x00, 0xaf, 0x00, 0xb0, 0x00, 0xb5, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb9, 0x00, 0xbf, 0x00, 0xbf, 0x00, 0xc5, 0x00, 0xc5, 0x00, 0xc7, 0x00, 0xca, 0x00, 0xca, 0x00, 0xce, 0x00, 0xcd, 0x00, 0xd1, 0x00, 0xd4, 0x00, 0xd6, 0x00, 0xd7, 0x00, 0xda, 0x00, 0xdd, 0x00, 0xdd, 0x00, 0xe2, 0x00, 0xe2, 0x00, 0xe2, 0x00, 0xe6, 0x00, 0xe6, 0x00, 0xec, 0x00, 0xee, 0x00, 0xee, 0x00, 0xf2, 0x00, 0xf7, 0x00, 0xf1, 0x00, 0xf8, 0x00, 0xf8, 0x00, 0xfb, 0x00, 0xfe, 0x00, 0xfe, 0x00, 0x03, 0x01, 0x03, 0x01, 0x06, 0x01, 0x04, 0x01, 0x0a, 0x01, 0x07, 0x01, 0x0a, 0x01, 0x0d, 0x01, 0x0f, 0x01, 0x10, 0x01, 0x12, 0x01, 0x15, 0x01, 0x13, 0x01, 0x18, 0x01, 0x16, 0x01, 0x19, 0x01, 0x1b, 0x01, 0x1c, 0x01, 0x1e, 0x01, 0x22, 0x01, 0x21, 0x01, 0x21, 0x01, 0x27, 0x01, 0x28, 0x01, 0x28, 0x01, 0x27, 0x01, 0x2d, 0x01, 0x2d, 0x01, 0x30, 0x01, 0x30, 0x01, 0x31, 0x01, 0x33, 0x01, 0x36, 0x01, 0x34, 0x01, 0x36, 0x01, 0x36, 0x01, 0x39, 0x01, 0x3a, 0x01, 0x3a, 0x01, 0x3c, 0x01, 0x3d, 0x01, 0x3f, 0x01, 0x3f, 0x01, 0x45, 0x01, 0x40, 0x01, 0x43, 0x01, 0x43, 0x01, 0x46, 0x01, 0x48, 0x01, 0x45, 0x01, 0x4c, 0x01, 0x4b, 0x01, 0x4c, 0x01, 0x4b, 0x01, 0x4b, 0x01, 0x4f, 0x01, 0x4e, 0x01, 0x52, 0x01, 0x4e, 0x01, 0x52, 0x01, 0x52, 0x01, 0x52, 0x01, 0x55, 0x01, 0x55, 0x01, 0x58, 0x01, 0x57, 0x01, 0x55, 0x01, 0x5a, 0x01, 0x5a, 0x01, 0x57, 0x01, 0x58, 0x01, 0x5b, 0x01, 0x5b, 0x01, 0x5d, 0x01, 0x5e, 0x01, 0x5d, 0x01, 0x5d, 0x01, 0x61, 0x01, 0x60, 0x01, 0x60, 0x01, 0x60, 0x01, 0x60, 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x01, 0x66, 0x01, 0x64, 0x01, 0x63, 0x01, 0x64, 0x01, 0x66, 0x01, 0x66, 0x01, 0x66, 0x01, 0x67, 0x01, 0x66, 0x01, 0x67, 0x01, 0x64, 0x01, 0x64, 0x01, 0x67, 0x01, 0x66, 0x01, 0x6a, 0x01, 0x69, 0x01, 0x69, 0x01, 0x66, 0x01, 0x67, 0x01, 0x69, 0x01, 0x6a, 0x01, 0x66, 0x01, 0x6a, 0x01, 0x67, 0x01, 0x6a, 0x01, 0x66, 0x01, 0x6a, 0x01, 0x67, 0x01, 0x69, 0x01, 0x69, 0x01, 0x67, 0x01, 0x66, 0x01, 0x67, 0x01, 0x69, 0x01, 0x66, 0x01, 0x67, 0x01, 0x64, 0x01, 0x66, 0x01, 0x66, 0x01, 0x67, 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x01, 0x63, 0x01, 0x66, 0x01, 0x61, 0x01, 0x61, 0x01, 0x61, 0x01, 0x60, 0x01, 0x61, 0x01, 0x61, 0x01, 0x5e, 0x01, 0x60, 0x01, 0x5e, 0x01, 0x5e, 0x01, 0x5e, 0x01, 0x5b, 0x01, 0x5d, 0x01, 0x5b, 0x01, 0x5b, 0x01, 0x5b, 0x01, 0x57, 0x01, 0x5a, 0x01, 0x5a, 0x01, 0x55, 0x01, 0x57, 0x01, 0x55, 0x01, 0x54, 0x01, 0x54, 0x01, 0x52, 0x01, 0x54, 0x01, 0x52, 0x01, 0x4f, 0x01, 0x4f, 0x01, 0x4f, 0x01, 0x4e, 0x01, 0x4c, 0x01, 0x4c, 0x01, 0x4b, 0x01, 0x4b, 0x01, 0x4b, 0x01, 0x49, 0x01, 0x46, 0x01, 0x46, 0x01, 0x45, 0x01, 0x42, 0x01, 0x43, 0x01, 0x40, 0x01, 0x40, 0x01, 0x3f, 0x01, 0x3d, 0x01, 0x3d, 0x01, 0x3a, 0x01, 0x3c, 0x01, 0x39, 0x01, 0x39, 0x01, 0x37, 0x01, 0x37, 0x01, 0x36, 0x01, 0x33, 0x01, 0x33, 0x01, 0x30, 0x01, 0x2e, 0x01, 0x2e, 0x01, 0x30, 0x01, 0x2b, 0x01, 0x2d, 0x01, 0x28, 0x01, 0x27, 0x01, 0x27, 0x01, 0x24, 0x01, 0x24, 0x01, 0x21, 0x01, 0x21, 0x01, 0x21, 0x01, 0x1c, 0x01, 0x1c, 0x01, 0x19, 0x01, 0x15, 0x01, 0x18, 0x01, 0x15, 0x01, 0x15, 0x01, 0x10, 0x01, 0x13, 0x01, 0x0f, 0x01, 0x0d, 0x01, 0x0d, 0x01, 0x0a, 0x01, 0x0a, 0x01, 0x04, 0x01, 0x06, 0x01, 0x04, 0x01, 0x00, 0x01, 0x00, 0x01, 0xfd, 0x00, 0xfb, 0x00, 0xfa, 0x00, 0xfa, 0x00, 0xf7, 0x00, 0xf4, 0x00, 0xf4, 0x00, 0xf1, 0x00, 0xec, 0x00, 0xec, 0x00, 0xeb, 0x00, 0xeb, 0x00, 0xe8, 0x00, 0xe3, 0x00, 0xe5, 0x00, 0xdf, 0x00, 0xdf, 0x00, 0xdd, 0x00, 0xdc, 0x00, 0xda, 0x00, 0xd4, 0x00, 0xd6, 0x00, 0xd3, 0x00, 0xd3, 0x00, 0xd1, 0x00, 0xcd, 0x00, 0xce, 0x00, 0xca, 0x00, 0xca, 0x00, 0xc7, 0x00, 0xc4, 0x00, 0xc2, 0x00, 0xc1, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xb8, 0x00, 0xb5, 0x00, 0xb8, 0x00, 0xb2, 0x00, 0xb2, 0x00, 0xb0, 0x00, 0xad, 0x00, 0xa9, 0x00, 0xa7, 0x00, 0xa7, 0x00, 0xa6, 0x00, 0xa1, 0x00, 0xa3, 0x00, 0x9e, 0x00, 0x9b, 0x00, 0x98, 0x00, 0x98, 0x00, 0x94, 0x00, 0x92, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8c, 0x00, 0x8b, 0x00, 0x89, 0x00, 0x83, 0x00, 0x85, 0x00, 0x80, 0x00, 0x7d, 0x00, 0x7a, 0x00, 0x7c, 0x00, 0x7a, 0x00, 0x76, 0x00, 0x71, 0x00, 0x70, 0x00, 0x70, 0x00, 0x70, 0x00, 0x6a, 0x00, 0x67, 0x00, 0x65, 0x00, 0x64, 0x00, 0x61, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x59, 0x00, 0x58, 0x00, 0x56, 0x00, 0x53, 0x00, 0x52, 0x00, 0x50, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x46, 0x00, 0x44, 0x00, 0x44, 0x00, 0x40, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x35, 0x00, 0x32, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x28, 0x00, 0x25, 0x00, 0x26, 0x00, 0x22, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x16, 0x00, 0x16, 0x00, 0x11, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xec, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xc9, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc2, 0xff, 0xbf, 0xff, 0xbc, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xab, 0xff, 0xab, 0xff, 0xa8, 0xff, 0xa7, 0xff, 0xa2, 0xff, 0xa4, 0xff, 0x9f, 0xff, 0x9c, 0xff, 0x99, 0xff, 0x9b, 0xff, 0x96, 0xff, 0x98, 0xff, 0x92, 0xff, 0x90, 0xff, 0x8d, 0xff, 0x8c, 0xff, 0x8a, 0xff, 0x8a, 0xff, 0x87, 0xff, 0x84, 0xff, 0x83, 0xff, 0x81, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x7a, 0xff, 0x77, 0xff, 0x78, 0xff, 0x74, 0xff, 0x74, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6c, 0xff, 0x68, 0xff, 0x69, 0xff, 0x66, 0xff, 0x65, 0xff, 0x62, 0xff, 0x60, 0xff, 0x62, 0xff, 0x5d, 0xff, 0x5a, 0xff, 0x59, 0xff, 0x57, 0xff, 0x56, 0xff, 0x53, 0xff, 0x51, 0xff, 0x53, 0xff, 0x4b, 0xff, 0x4e, 0xff, 0x4a, 0xff, 0x48, 0xff, 0x47, 0xff, 0x42, 0xff, 0x45, 0xff, 0x42, 0xff, 0x3e, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x39, 0xff, 0x39, 0xff, 0x38, 0xff, 0x33, 0xff, 0x36, 0xff, 0x30, 0xff, 0x32, 0xff, 0x2d, 0xff, 0x2d, 0xff, 0x2f, 0xff, 0x2c, 0xff, 0x2c, 0xff, 0x24, 0xff, 0x26, 0xff, 0x27, 0xff, 0x23, 0xff, 0x23, 0xff, 0x1e, 0xff, 0x1b, 0xff, 0x1e, 0xff, 0x1a, 0xff, 0x1a, 0xff, 0x1a, 0xff, 0x18, 0xff, 0x15, 0xff, 0x18, 0xff, 0x14, 0xff, 0x12, 0xff, 0x11, 0xff, 0x0f, 0xff, 0x0e, 0xff, 0x0c, 0xff, 0x0e, 0xff, 0x0b, 0xff, 0x08, 0xff, 0x0b, 0xff, 0x06, 0xff, 0x06, 0xff, 0x02, 0xff, 0x02, 0xff, 0x02, 0xff, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xfd, 0xfe, 0xfc, 0xfe, 0xfc, 0xfe, 0xf7, 0xfe, 0xf7, 0xfe, 0xf6, 0xfe, 0xf6, 0xfe, 0xf6, 0xfe, 0xf4, 0xfe, 0xf4, 0xfe, 0xf0, 0xfe, 0xf1, 0xfe, 0xf0, 0xfe, 0xee, 0xfe, 0xed, 0xfe, 0xeb, 0xfe, 0xed, 0xfe, 0xeb, 0xfe, 0xed, 0xfe, 0xea, 0xfe, 0xea, 0xfe, 0xe7, 0xfe, 0xe8, 0xfe, 0xe8, 0xfe, 0xe7, 0xfe, 0xe5, 0xfe, 0xe5, 0xfe, 0xe2, 0xfe, 0xe2, 0xfe, 0xe4, 0xfe, 0xe2, 0xfe, 0xe1, 0xfe, 0xe2, 0xfe, 0xe1, 0xfe, 0xe1, 0xfe, 0xdf, 0xfe, 0xdc, 0xfe, 0xdc, 0xfe, 0xde, 0xfe, 0xd9, 0xfe, 0xdb, 0xfe, 0xd9, 0xfe, 0xdc, 0xfe, 0xd8, 0xfe, 0xdb, 0xfe, 0xd9, 0xfe, 0xd8, 0xfe, 0xd9, 0xfe, 0xd8, 0xfe, 0xd8, 0xfe, 0xd6, 0xfe, 0xd9, 0xfe, 0xd3, 0xfe, 0xd6, 0xfe, 0xd9, 0xfe, 0xd0, 0xfe, 0xd6, 0xfe, 0xd3, 0xfe, 0xd3, 0xfe, 0xd5, 0xfe, 0xd3, 0xfe, 0xd5, 0xfe, 0xd5, 0xfe, 0xd3, 0xfe, 0xd3, 0xfe, 0xd5, 0xfe, 0xd3, 0xfe, 0xd2, 0xfe, 0xd2, 0xfe, 0xd0, 0xfe, 0xd0, 0xfe, 0xd3, 0xfe, 0xd3, 0xfe, 0xd2, 0xfe, 0xd3, 0xfe, 0xd2, 0xfe, 0xd3, 0xfe, 0xd2, 0xfe, 0xd0, 0xfe, 0xd2, 0xfe, 0xd3, 0xfe, 0xd2, 0xfe, 0xd3, 0xfe, 0xd0, 0xfe, 0xd3, 0xfe, 0xd2, 0xfe, 0xd2, 0xfe, 0xd3, 0xfe, 0xd3, 0xfe, 0xd3, 0xfe, 0xd2, 0xfe, 0xd3, 0xfe, 0xd5, 0xfe, 0xd5, 0xfe, 0xd3, 0xfe, 0xd5, 0xfe, 0xd3, 0xfe, 0xd5, 0xfe, 0xd6, 0xfe, 0xd6, 0xfe, 0xd5, 0xfe, 0xd9, 0xfe, 0xd6, 0xfe, 0xd9, 0xfe, 0xd8, 0xfe, 0xd9, 0xfe, 0xd8, 0xfe, 0xd8, 0xfe, 0xdc, 0xfe, 0xd8, 0xfe, 0xdb, 0xfe, 0xd9, 0xfe, 0xdc, 0xfe, 0xdc, 0xfe, 0xde, 0xfe, 0xe1, 0xfe, 0xdb, 0xfe, 0xdf, 0xfe, 0xde, 0xfe, 0xe2, 0xfe, 0xdf, 0xfe, 0xdf, 0xfe, 0xe1, 0xfe, 0xe2, 0xfe, 0xe4, 0xfe, 0xe2, 0xfe, 0xe4, 0xfe, 0xe4, 0xfe, 0xe4, 0xfe, 0xe8, 0xfe, 0xe7, 0xfe, 0xea, 0xfe, 0xe8, 0xfe, 0xe8, 0xfe, 0xed, 0xfe, 0xed, 0xfe, 0xee, 0xfe, 0xee, 0xfe, 0xeb, 0xfe, 0xf0, 0xfe, 0xf0, 0xfe, 0xf3, 0xfe, 0xf1, 0xfe, 0xf4, 0xfe, 0xf6, 0xfe, 0xf1, 0xfe, 0xf6, 0xfe, 0xf6, 0xfe, 0xf9, 0xfe, 0xf7, 0xfe, 0xf9, 0xfe, 0xfa, 0xfe, 0xfd, 0xfe, 0xfc, 0xfe, 0xff, 0xfe, 0xfd, 0xfe, 0xfd, 0xfe, 0x05, 0xff, 0xfd, 0xfe, 0x05, 0xff, 0x03, 0xff, 0x06, 0xff, 0x08, 0xff, 0x08, 0xff, 0x08, 0xff, 0x09, 0xff, 0x0b, 0xff, 0x0c, 0xff, 0x0e, 0xff, 0x0e, 0xff, 0x0f, 0xff, 0x11, 0xff, 0x12, 0xff, 0x14, 0xff, 0x15, 0xff, 0x18, 0xff, 0x17, 0xff, 0x15, 0xff, 0x1d, 0xff, 0x1d, 0xff, 0x1e, 0xff, 0x1e, 0xff, 0x20, 0xff, 0x20, 0xff, 0x21, 0xff, 0x24, 0xff, 0x24, 0xff, 0x2a, 0xff, 0x2a, 0xff, 0x2d, 0xff, 0x29, 0xff, 0x2f, 0xff, 0x2f, 0xff, 0x30, 0xff, 0x35, 0xff, 0x32, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff, 0x39, 0xff, 0x3c, 0xff, 0x3b, 0xff, 0x3e, 0xff, 0x3f, 0xff, 0x42, 0xff, 0x44, 0xff, 0x47, 0xff, 0x44, 0xff, 0x47, 0xff, 0x47, 0xff, 0x4b, 0xff, 0x4d, 0xff, 0x4a, 0xff, 0x51, 0xff, 0x51, 0xff, 0x53, 0xff, 0x54, 0xff, 0x56, 0xff, 0x5c, 0xff, 0x59, 0xff, 0x5f, 0xff, 0x5d, 0xff, 0x5f, 0xff, 0x63, 0xff, 0x60, 0xff, 0x65, 0xff, 0x65, 0xff, 0x68, 0xff, 0x6b, 0xff, 0x6c, 0xff, 0x6c, 0xff, 0x6e, 0xff, 0x71, 0xff, 0x6f, 0xff, 0x75, 0xff, 0x75, 0xff, 0x78, 0xff, 0x7a, 0xff, 0x7d, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x83, 0xff, 0x83, 0xff, 0x86, 0xff, 0x89, 0xff, 0x89, 0xff, 0x86, 0xff, 0x8d, 0xff, 0x8a, 0xff, 0x8f, 0xff, 0x90, 0xff, 0x90, 0xff, 0x98, 0xff, 0x93, 0xff, 0x99, 0xff, 0x98, 0xff, 0x9b, 0xff, 0x9e, 0xff, 0x9f, 0xff, 0xa2, 0xff, 0xa2, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xab, 0xff, 0xab, 0xff, 0xb0, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xba, 0xff, 0xb7, 0xff, 0xb9, 0xff, 0xbc, 0xff, 0xbd, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x14, 0x00, 0x16, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x22, 0x00, 0x25, 0x00, 0x23, 0x00, 0x26, 0x00, 0x28, 0x00, 0x28, 0x00, 0x2f, 0x00, 0x2c, 0x00, 0x31, 0x00, 0x34, 0x00, 0x32, 0x00, 0x34, 0x00, 0x37, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x41, 0x00, 0x43, 0x00, 0x43, 0x00, 0x46, 0x00, 0x49, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4f, 0x00, 0x4d, 0x00, 0x4f, 0x00, 0x52, 0x00, 0x53, 0x00, 0x56, 0x00, 0x56, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0x61, 0x00, 0x5f, 0x00, 0x62, 0x00, 0x62, 0x00, 0x64, 0x00, 0x65, 0x00, 0x67, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x6e, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x71, 0x00, 0x76, 0x00, 0x74, 0x00, 0x77, 0x00, 0x76, 0x00, 0x7a, 0x00, 0x7c, 0x00, 0x7f, 0x00, 0x7f, 0x00, 0x80, 0x00, 0x83, 0x00, 0x83, 0x00, 0x86, 0x00, 0x88, 0x00, 0x86, 0x00, 0x86, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x92, 0x00, 0x91, 0x00, 0x95, 0x00, 0x95, 0x00, 0x97, 0x00, 0x97, 0x00, 0x98, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0xa1, 0x00, 0xa6, 0x00, 0xa7, 0x00, 0xa6, 0x00, 0xaa, 0x00, 0xa9, 0x00, 0xaa, 0x00, 0xac, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xaf, 0x00, 0xb0, 0x00, 0xb3, 0x00, 0xb3, 0x00, 0xb8, 0x00, 0xb5, 0x00, 0xb6, 0x00, 0xb9, 0x00, 0xb8, 0x00, 0xbc, 0x00, 0xbb, 0x00, 0xbe, 0x00, 0xbc, 0x00, 0xc2, 0x00, 0xc1, 0x00, 0xc2, 0x00, 0xc1, 0x00, 0xc2, 0x00, 0xc5, 0x00, 0xc7, 0x00, 0xc7, 0x00, 0xca, 0x00, 0xc8, 0x00, 0xcb, 0x00, 0xca, 0x00, 0xce, 0x00, 0xcd, 0x00, 0xce, 0x00, 0xcd, 0x00, 0xce, 0x00, 0xd1, 0x00, 0xd0, 0x00, 0xd1, 0x00, 0xd4, 0x00, 0xd3, 0x00, 0xd4, 0x00, 0xd6, 0x00, 0xd4, 0x00, 0xd6, 0x00, 0xd7, 0x00, 0xdc, 0x00, 0xd7, 0x00, 0xda, 0x00, 0xdc, 0x00, 0xda, 0x00, 0xdf, 0x00, 0xdd, 0x00, 0xdf, 0x00, 0xe2, 0x00, 0xda, 0x00, 0xdf, 0x00, 0xe2, 0x00, 0xdf, 0x00, 0xe6, 0x00, 0xe5, 0x00, 0xe6, 0x00, 0xe3, 0x00, 0xe5, 0x00, 0xe5, 0x00, 0xe6, 0x00, 0xe5, 0x00, 0xe5, 0x00, 0xe9, 0x00, 0xe6, 0x00, 0xe8, 0x00, 0xe8, 0x00, 0xe6, 0x00, 0xe9, 0x00, 0xeb, 0x00, 0xeb, 0x00, 0xe9, 0x00, 0xeb, 0x00, 0xef, 0x00, 0xe8, 0x00, 0xeb, 0x00, 0xee, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xec, 0x00, 0xef, 0x00, 0xec, 0x00, 0xee, 0x00, 0xef, 0x00, 0xee, 0x00, 0xef, 0x00, 0xf1, 0x00, 0xef, 0x00, 0xee, 0x00, 0xf1, 0x00, 0xef, 0x00, 0xf1, 0x00, 0xf1, 0x00, 0xf2, 0x00, 0xf1, 0x00, 0xef, 0x00, 0xf4, 0x00, 0xf1, 0x00, 0xf2, 0x00, 0xef, 0x00, 0xf2, 0x00, 0xf2, 0x00, 0xf2, 0x00, 0xf1, 0x00, 0xf1, 0x00, 0xf1, 0x00, 0xef, 0x00, 0xf2, 0x00, 0xf2, 0x00, 0xf2, 0x00, 0xf1, 0x00, 0xf4, 0x00, 0xee, 0x00, 0xf2, 0x00, 0xf2, 0x00, 0xf1, 0x00, 0xf2, 0x00, 0xf1, 0x00, 0xf1, 0x00, 0xef, 0x00, 0xf1, 0x00, 0xf1, 0x00, 0xf1, 0x00, 0xee, 0x00, 0xf1, 0x00, 0xef, 0x00, 0xef, 0x00, 0xec, 0x00, 0xf1, 0x00, 0xec, 0x00, 0xee, 0x00, 0xee, 0x00, 0xec, 0x00, 0xee, 0x00, 0xee, 0x00, 0xee, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xeb, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xe8, 0x00, 0xeb, 0x00, 0xe9, 0x00, 0xe6, 0x00, 0xe9, 0x00, 0xe5, 0x00, 0xe8, 0x00, 0xe8, 0x00, 0xe5, 0x00, 0xe6, 0x00, 0xe6, 0x00, 0xe5, 0x00, 0xe2, 0x00, 0xe2, 0x00, 0xe3, 0x00, 0xe3, 0x00, 0xe2, 0x00, 0xe0, 0x00, 0xdd, 0x00, 0xdf, 0x00, 0xdf, 0x00, 0xda, 0x00, 0xdd, 0x00, 0xdc, 0x00, 0xdd, 0x00, 0xd9, 0x00, 0xd7, 0x00, 0xdc, 0x00, 0xd7, 0x00, 0xda, 0x00, 0xd7, 0x00, 0xd6, 0x00, 0xd6, 0x00, 0xd4, 0x00, 0xd6, 0x00, 0xd4, 0x00, 0xd1, 0x00, 0xd3, 0x00, 0xd3, 0x00, 0xd0, 0x00, 0xd3, 0x00, 0xcd, 0x00, 0xcb, 0x00, 0xce, 0x00, 0xc8, 0x00, 0xca, 0x00, 0xca, 0x00, 0xc7, 0x00, 0xc7, 0x00, 0xc7, 0x00, 0xc7, 0x00, 0xc5, 0x00, 0xc5, 0x00, 0xc2, 0x00, 0xc1, 0x00, 0xc1, 0x00, 0xbf, 0x00, 0xc2, 0x00, 0xbb, 0x00, 0xbb, 0x00, 0xbc, 0x00, 0xbb, 0x00, 0xb6, 0x00, 0xbc, 0x00, 0xb9, 0x00, 0xb9, 0x00, 0xb5, 0x00, 0xb5, 0x00, 0xb2, 0x00, 0xb2, 0x00, 0xb3, 0x00, 0xaf, 0x00, 0xaf, 0x00, 0xac, 0x00, 0xad, 0x00, 0xa9, 0x00, 0xad, 0x00, 0xa7, 0x00, 0xa4, 0x00, 0xa7, 0x00, 0xa4, 0x00, 0xa4, 0x00, 0xa1, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0x98, 0x00, 0x97, 0x00, 0x94, 0x00, 0x94, 0x00, 0x94, 0x00, 0x8f, 0x00, 0x91, 0x00, 0x8e, 0x00, 0x8c, 0x00, 0x89, 0x00, 0x89, 0x00, 0x89, 0x00, 0x89, 0x00, 0x85, 0x00, 0x85, 0x00, 0x85, 0x00, 0x7d, 0x00, 0x86, 0x00, 0x80, 0x00, 0x7d, 0x00, 0x7f, 0x00, 0x79, 0x00, 0x7a, 0x00, 0x77, 0x00, 0x79, 0x00, 0x77, 0x00, 0x73, 0x00, 0x74, 0x00, 0x70, 0x00, 0x71, 0x00, 0x71, 0x00, 0x6d, 0x00, 0x6d, 0x00, 0x6d, 0x00, 0x68, 0x00, 0x68, 0x00, 0x65, 0x00, 0x65, 0x00, 0x64, 0x00, 0x62, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x5f, 0x00, 0x5b, 0x00, 0x59, 0x00, 0x59, 0x00, 0x56, 0x00, 0x55, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x46, 0x00, 0x46, 0x00, 0x43, 0x00, 0x41, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x37, 0x00, 0x37, 0x00, 0x35, 0x00, 0x34, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x28, 0x00, 0x28, 0x00, 0x25, 0x00, 0x26, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x11, 0x00, 0x13, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xef, 0xff, 0xec, 0xff, 0xec, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xc0, 0xff, 0xba, 0xff, 0xba, 0xff, 0xb7, 0xff, 0xb9, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb1, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xae, 0xff, 0xaa, 0xff, 0xad, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa2, 0xff, 0xa1, 0xff, 0xa1, 0xff, 0x9f, 0xff, 0xa1, 0xff, 0x9b, 0xff, 0x9c, 0xff, 0x99, 0xff, 0x98, 0xff, 0x9b, 0xff, 0x98, 0xff, 0x95, 0xff, 0x95, 0xff, 0x92, 0xff, 0x92, 0xff, 0x90, 0xff, 0x8f, 0xff, 0x8f, 0xff, 0x8d, 0xff, 0x8f, 0xff, 0x89, 0xff, 0x8c, 0xff, 0x86, 0xff, 0x84, 0xff, 0x86, 0xff, 0x84, 0xff, 0x84, 0xff, 0x83, 0xff, 0x81, 0xff, 0x81, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x7a, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x78, 0xff, 0x75, 0xff, 0x78, 0xff, 0x74, 0xff, 0x74, 0xff, 0x72, 0xff, 0x71, 0xff, 0x71, 0xff, 0x71, 0xff, 0x6e, 0xff, 0x6f, 0xff, 0x6c, 0xff, 0x6b, 0xff, 0x6c, 0xff, 0x6b, 0xff, 0x66, 0xff, 0x69, 0xff, 0x66, 0xff, 0x66, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x60, 0xff, 0x62, 0xff, 0x5d, 0xff, 0x5f, 0xff, 0x5f, 0xff, 0x5f, 0xff, 0x5d, 0xff, 0x57, 0xff, 0x5d, 0xff, 0x59, 0xff, 0x59, 0xff, 0x59, 0xff, 0x59, 0xff, 0x56, 0xff, 0x56, 0xff, 0x56, 0xff, 0x53, 0xff, 0x57, 0xff, 0x53, 0xff, 0x51, 0xff, 0x53, 0xff, 0x4e, 0xff, 0x51, 0xff, 0x4e, 0xff, 0x51, 0xff, 0x4e, 0xff, 0x4d, 0xff, 0x4d, 0xff, 0x4b, 0xff, 0x4b, 0xff, 0x4a, 0xff, 0x4b, 0xff, 0x48, 0xff, 0x4b, 0xff, 0x4b, 0xff, 0x45, 0xff, 0x48, 0xff, 0x4b, 0xff, 0x45, 0xff, 0x44, 0xff, 0x45, 0xff, 0x45, 0xff, 0x45, 0xff, 0x44, 0xff, 0x42, 0xff, 0x44, 0xff, 0x41, 0xff, 0x42, 0xff, 0x42, 0xff, 0x3f, 0xff, 0x41, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x41, 0xff, 0x3b, 0xff, 0x3e, 0xff, 0x3c, 0xff, 0x3e, 0xff, 0x3e, 0xff, 0x3b, 0xff, 0x3f, 0xff, 0x3c, 0xff, 0x39, 0xff, 0x3c, 0xff, 0x39, 0xff, 0x3b, 0xff, 0x38, 0xff, 0x36, 0xff, 0x3c, 0xff, 0x38, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x36, 0xff, 0x39, 0xff, 0x38, 0xff, 0x39, 0xff, 0x36, 0xff, 0x3b, 0xff, 0x38, 0xff, 0x38, 0xff, 0x38, 0xff, 0x35, 0xff, 0x33, 0xff, 0x39, 0xff, 0x38, 0xff, 0x36, 0xff, 0x38, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff, 0x35, 0xff, 0x36, 0xff, 0x36, 0xff, 0x39, 0xff, 0x36, 0xff, 0x38, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff, 0x38, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff, 0x38, 0xff, 0x35, 0xff, 0x38, 0xff, 0x36, 0xff, 0x38, 0xff, 0x36, 0xff, 0x39, 0xff, 0x39, 0xff, 0x38, 0xff, 0x38, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x39, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x3c, 0xff, 0x39, 0xff, 0x3c, 0xff, 0x3e, 0xff, 0x3c, 0xff, 0x3e, 0xff, 0x3e, 0xff, 0x3f, 0xff, 0x3c, 0xff, 0x3e, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x42, 0xff, 0x3f, 0xff, 0x41, 0xff, 0x3f, 0xff, 0x42, 0xff, 0x41, 0xff, 0x41, 0xff, 0x45, 0xff, 0x42, 0xff, 0x45, 0xff, 0x45, 0xff, 0x45, 0xff, 0x45, 0xff, 0x47, 0xff, 0x47, 0xff, 0x47, 0xff, 0x4a, 0xff, 0x47, 0xff, 0x48, 0xff, 0x48, 0xff, 0x48, 0xff, 0x4d, 0xff, 0x4b, 0xff, 0x4e, 0xff, 0x4b, 0xff, 0x4b, 0xff, 0x4e, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x51, 0xff, 0x50, 0xff, 0x53, 0xff, 0x53, 0xff, 0x53, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x57, 0xff, 0x57, 0xff, 0x59, 0xff, 0x5c, 0xff, 0x59, 0xff, 0x5c, 0xff, 0x5a, 0xff, 0x5d, 0xff, 0x5a, 0xff, 0x5c, 0xff, 0x5f, 0xff, 0x5f, 0xff, 0x62, 0xff, 0x5d, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x65, 0xff, 0x65, 0xff, 0x66, 0xff, 0x66, 0xff, 0x68, 0xff, 0x6b, 0xff, 0x69, 0xff, 0x6b, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x71, 0xff, 0x6e, 0xff, 0x6f, 0xff, 0x72, 0xff, 0x72, 0xff, 0x71, 0xff, 0x71, 0xff, 0x77, 0xff, 0x75, 0xff, 0x7b, 0xff, 0x77, 0xff, 0x78, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x80, 0xff, 0x7e, 0xff, 0x81, 0xff, 0x80, 0xff, 0x80, 0xff, 0x81, 0xff, 0x86, 0xff, 0x86, 0xff, 0x86, 0xff, 0x89, 0xff, 0x89, 0xff, 0x89, 0xff, 0x8a, 0xff, 0x8d, 0xff, 0x8a, 0xff, 0x8d, 0xff, 0x8f, 0xff, 0x90, 0xff, 0x90, 0xff, 0x93, 0xff, 0x90, 0xff, 0x93, 0xff, 0x96, 0xff, 0x96, 0xff, 0x99, 0xff, 0x98, 0xff, 0x99, 0xff, 0x9b, 0xff, 0x9e, 0xff, 0x9c, 0xff, 0xa1, 0xff, 0xa2, 0xff, 0x9f, 0xff, 0xa1, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb4, 0xff, 0xb7, 0xff, 0xb9, 0xff, 0xb7, 0xff, 0xb9, 0xff, 0xbc, 0xff, 0xbd, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xc2, 0xff, 0xc0, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc6, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xec, 0xff, 0xea, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x14, 0x00, 0x17, 0x00, 0x16, 0x00, 0x16, 0x00, 0x19, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x20, 0x00, 0x23, 0x00, 0x26, 0x00, 0x22, 0x00, 0x26, 0x00, 0x28, 0x00, 0x28, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x32, 0x00, 0x35, 0x00, 0x35, 0x00, 0x34, 0x00, 0x3b, 0x00, 0x35, 0x00, 0x3b, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x40, 0x00, 0x43, 0x00, 0x43, 0x00, 0x44, 0x00, 0x47, 0x00, 0x47, 0x00, 0x47, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x4d, 0x00, 0x4f, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x4c, 0x00, 0x53, 0x00, 0x55, 0x00, 0x50, 0x00, 0x52, 0x00, 0x55, 0x00, 0x55, 0x00, 0x56, 0x00, 0x58, 0x00, 0x56, 0x00, 0x5c, 0x00, 0x59, 0x00, 0x5c, 0x00, 0x5f, 0x00, 0x5c, 0x00, 0x61, 0x00, 0x61, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x67, 0x00, 0x65, 0x00, 0x65, 0x00, 0x67, 0x00, 0x68, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x68, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x6d, 0x00, 0x70, 0x00, 0x6b, 0x00, 0x70, 0x00, 0x70, 0x00, 0x70, 0x00, 0x76, 0x00, 0x71, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x79, 0x00, 0x77, 0x00, 0x79, 0x00, 0x79, 0x00, 0x7c, 0x00, 0x7a, 0x00, 0x7c, 0x00, 0x7d, 0x00, 0x7d, 0x00, 0x7f, 0x00, 0x7f, 0x00, 0x7f, 0x00, 0x80, 0x00, 0x7f, 0x00, 0x83, 0x00, 0x80, 0x00, 0x82, 0x00, 0x83, 0x00, 0x85, 0x00, 0x83, 0x00, 0x82, 0x00, 0x86, 0x00, 0x89, 0x00, 0x86, 0x00, 0x86, 0x00, 0x88, 0x00, 0x89, 0x00, 0x89, 0x00, 0x89, 0x00, 0x8c, 0x00, 0x8b, 0x00, 0x8e, 0x00, 0x8e, 0x00, 0x91, 0x00, 0x8c, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x91, 0x00, 0x91, 0x00, 0x92, 0x00, 0x91, 0x00, 0x94, 0x00, 0x92, 0x00, 0x94, 0x00, 0x94, 0x00, 0x92, 0x00, 0x98, 0x00, 0x94, 0x00, 0x95, 0x00, 0x94, 0x00, 0x98, 0x00, 0x98, 0x00, 0x98, 0x00, 0x97, 0x00, 0x95, 0x00, 0x98, 0x00, 0x9a, 0x00, 0x9b, 0x00, 0x98, 0x00, 0x98, 0x00, 0x9a, 0x00, 0x9a, 0x00, 0x9a, 0x00, 0x9a, 0x00, 0x9e, 0x00, 0x9b, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0x9e, 0x00, 0x9d, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0x9d, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0xa1, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0xa1, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0xa4, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0xa4, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa3, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0xa4, 0x00, 0xa1, 0x00, 0xa3, 0x00, 0xa3, 0x00, 0xa3, 0x00, 0xa3, 0x00, 0xa3, 0x00, 0xa6, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0xa3, 0x00, 0xa4, 0x00, 0xa1, 0x00, 0xa4, 0x00, 0xa0, 0x00, 0xa3, 0x00, 0xa4, 0x00, 0xa1, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0xa1, 0x00, 0xa3, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0xa1, 0x00, 0xa3, 0x00, 0x9e, 0x00, 0xa0, 0x00, 0xa3, 0x00, 0x9e, 0x00, 0x9e, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0x9e, 0x00, 0x9d, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0x9b, 0x00, 0x9e, 0x00, 0x9b, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0x98, 0x00, 0x9d, 0x00, 0x97, 0x00, 0x9d, 0x00, 0x9b, 0x00, 0x98, 0x00, 0x98, 0x00, 0x98, 0x00, 0x9b, 0x00, 0x97, 0x00, 0x98, 0x00, 0x97, 0x00, 0x97, 0x00, 0x98, 0x00, 0x97, 0x00, 0x97, 0x00, 0x95, 0x00, 0x95, 0x00, 0x95, 0x00, 0x94, 0x00, 0x92, 0x00, 0x94, 0x00, 0x8f, 0x00, 0x92, 0x00, 0x8f, 0x00, 0x91, 0x00, 0x91, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8e, 0x00, 0x8e, 0x00, 0x8e, 0x00, 0x8c, 0x00, 0x8e, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x89, 0x00, 0x89, 0x00, 0x89, 0x00, 0x89, 0x00, 0x89, 0x00, 0x88, 0x00, 0x86, 0x00, 0x86, 0x00, 0x86, 0x00, 0x86, 0x00, 0x85, 0x00, 0x83, 0x00, 0x85, 0x00, 0x83, 0x00, 0x83, 0x00, 0x80, 0x00, 0x83, 0x00, 0x7f, 0x00, 0x7f, 0x00, 0x7d, 0x00, 0x7c, 0x00, 0x80, 0x00, 0x7c, 0x00, 0x7d, 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x77, 0x00, 0x79, 0x00, 0x7a, 0x00, 0x74, 0x00, 0x77, 0x00, 0x73, 0x00, 0x73, 0x00, 0x76, 0x00, 0x73, 0x00, 0x70, 0x00, 0x70, 0x00, 0x70, 0x00, 0x6e, 0x00, 0x71, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x6e, 0x00, 0x6b, 0x00, 0x68, 0x00, 0x68, 0x00, 0x6b, 0x00, 0x67, 0x00, 0x68, 0x00, 0x64, 0x00, 0x67, 0x00, 0x64, 0x00, 0x62, 0x00, 0x65, 0x00, 0x62, 0x00, 0x5f, 0x00, 0x61, 0x00, 0x5e, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x5e, 0x00, 0x5b, 0x00, 0x5b, 0x00, 0x5b, 0x00, 0x58, 0x00, 0x5b, 0x00, 0x59, 0x00, 0x55, 0x00, 0x55, 0x00, 0x53, 0x00, 0x53, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x47, 0x00, 0x49, 0x00, 0x43, 0x00, 0x46, 0x00, 0x44, 0x00, 0x43, 0x00, 0x46, 0x00, 0x43, 0x00, 0x41, 0x00, 0x3d, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x34, 0x00, 0x37, 0x00, 0x34, 0x00, 0x32, 0x00, 0x34, 0x00, 0x34, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x29, 0x00, 0x29, 0x00, 0x26, 0x00, 0x25, 0x00, 0x25, 0x00, 0x23, 0x00, 0x23, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x14, 0x00, 0x16, 0x00, 0x13, 0x00, 0x11, 0x00, 0x13, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xec, 0xff, 0xec, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xd5, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xd2, 0xff, 0xce, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbd, 0xff, 0xbf, 0xff, 0xba, 0xff, 0xbc, 0xff, 0xb9, 0xff, 0xb7, 0xff, 0xbc, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb3, 0xff, 0xb3, 0xff, 0xb4, 0xff, 0xb3, 0xff, 0xb0, 0xff, 0xb1, 0xff, 0xad, 0xff, 0xb1, 0xff, 0xad, 0xff, 0xae, 0xff, 0xad, 0xff, 0xad, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa7, 0xff, 0xa2, 0xff, 0xa7, 0xff, 0xa2, 0xff, 0xa2, 0xff, 0xa1, 0xff, 0x9f, 0xff, 0x9f, 0xff, 0x9e, 0xff, 0xa1, 0xff, 0x99, 0xff, 0x9f, 0xff, 0x9c, 0xff, 0x9c, 0xff, 0x99, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x98, 0xff, 0x99, 0xff, 0x98, 0xff, 0x98, 0xff, 0x95, 0xff, 0x98, 0xff, 0x95, 0xff, 0x95, 0xff, 0x93, 0xff, 0x92, 0xff, 0x95, 0xff, 0x90, 0xff, 0x93, 0xff, 0x90, 0xff, 0x92, 0xff, 0x90, 0xff, 0x90, 0xff, 0x92, 0xff, 0x8d, 0xff, 0x8f, 0xff, 0x8d, 0xff, 0x8f, 0xff, 0x8d, 0xff, 0x8d, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0x8a, 0xff, 0x89, 0xff, 0x8a, 0xff, 0x8a, 0xff, 0x89, 0xff, 0x8a, 0xff, 0x84, 0xff, 0x89, 0xff, 0x8a, 0xff, 0x89, 0xff, 0x86, 0xff, 0x86, 0xff, 0x87, 0xff, 0x83, 0xff, 0x87, 0xff, 0x83, 0xff, 0x86, 0xff, 0x81, 0xff, 0x83, 0xff, 0x81, 0xff, 0x81, 0xff, 0x81, 0xff, 0x83, 0xff, 0x83, 0xff, 0x81, 0xff, 0x81, 0xff, 0x81, 0xff, 0x81, 0xff, 0x80, 0xff, 0x7e, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x7d, 0xff, 0x80, 0xff, 0x7e, 0xff, 0x7d, 0xff, 0x7e, 0xff, 0x7b, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x7d, 0xff, 0x7b, 0xff, 0x7d, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x7d, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x7b, 0xff, 0x7d, 0xff, 0x7a, 0xff, 0x7a, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x78, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x7a, 0xff, 0x78, 0xff, 0x7a, 0xff, 0x7d, 0xff, 0x7a, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x78, 0xff, 0x7b, 0xff, 0x78, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x7a, 0xff, 0x7e, 0xff, 0x7a, 0xff, 0x7d, 0xff, 0x80, 0xff, 0x7b, 0xff, 0x80, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x7e, 0xff, 0x7b, 0xff, 0x7d, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x80, 0xff, 0x7e, 0xff, 0x7d, 0xff, 0x80, 0xff, 0x80, 0xff, 0x80, 0xff, 0x81, 0xff, 0x7e, 0xff, 0x83, 0xff, 0x7d, 0xff, 0x83, 0xff, 0x83, 0xff, 0x80, 0xff, 0x81, 0xff, 0x83, 0xff, 0x83, 0xff, 0x83, 0xff, 0x83, 0xff, 0x86, 0xff, 0x83, 0xff, 0x83, 0xff, 0x83, 0xff, 0x86, 0xff, 0x84, 0xff, 0x86, 0xff, 0x84, 0xff, 0x86, 0xff, 0x87, 0xff, 0x89, 0xff, 0x87, 0xff, 0x87, 0xff, 0x8a, 0xff, 0x87, 0xff, 0x87, 0xff, 0x8c, 0xff, 0x89, 0xff, 0x8a, 0xff, 0x89, 0xff, 0x8d, 0xff, 0x8a, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0x8d, 0xff, 0x8d, 0xff, 0x8f, 0xff, 0x8d, 0xff, 0x8c, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x95, 0xff, 0x90, 0xff, 0x93, 0xff, 0x95, 0xff, 0x96, 0xff, 0x96, 0xff, 0x96, 0xff, 0x98, 0xff, 0x96, 0xff, 0x95, 0xff, 0x98, 0xff, 0x96, 0xff, 0x9b, 0xff, 0x99, 0xff, 0x99, 0xff, 0x98, 0xff, 0x98, 0xff, 0x9c, 0xff, 0x9c, 0xff, 0x9f, 0xff, 0x9e, 0xff, 0x9f, 0xff, 0x9f, 0xff, 0x9f, 0xff, 0x9f, 0xff, 0x9c, 0xff, 0xa1, 0xff, 0xa4, 0xff, 0x9f, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa7, 0xff, 0xa4, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa7, 0xff, 0xab, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xab, 0xff, 0xad, 0xff, 0xae, 0xff, 0xad, 0xff, 0xb3, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xb3, 0xff, 0xae, 0xff, 0xb3, 0xff, 0xb0, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb9, 0xff, 0xb7, 0xff, 0xb9, 0xff, 0xba, 0xff, 0xba, 0xff, 0xbd, 0xff, 0xba, 0xff, 0xbd, 0xff, 0xc0, 0xff, 0xbd, 0xff, 0xc2, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xcb, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x08, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x16, 0x00, 0x19, 0x00, 0x19, 0x00, 0x17, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x20, 0x00, 0x22, 0x00, 0x22, 0x00, 0x23, 0x00, 0x25, 0x00, 0x22, 0x00, 0x26, 0x00, 0x26, 0x00, 0x28, 0x00, 0x26, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x31, 0x00, 0x34, 0x00, 0x32, 0x00, 0x31, 0x00, 0x35, 0x00, 0x35, 0x00, 0x32, 0x00, 0x37, 0x00, 0x35, 0x00, 0x37, 0x00, 0x37, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x3d, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x40, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x43, 0x00, 0x3e, 0x00, 0x41, 0x00, 0x44, 0x00, 0x44, 0x00, 0x43, 0x00, 0x46, 0x00, 0x47, 0x00, 0x44, 0x00, 0x46, 0x00, 0x46, 0x00, 0x47, 0x00, 0x49, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4d, 0x00, 0x4c, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x50, 0x00, 0x4f, 0x00, 0x52, 0x00, 0x50, 0x00, 0x55, 0x00, 0x50, 0x00, 0x53, 0x00, 0x56, 0x00, 0x53, 0x00, 0x56, 0x00, 0x53, 0x00, 0x56, 0x00, 0x58, 0x00, 0x59, 0x00, 0x56, 0x00, 0x58, 0x00, 0x58, 0x00, 0x5b, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0x58, 0x00, 0x5c, 0x00, 0x5b, 0x00, 0x5b, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5c, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5c, 0x00, 0x5f, 0x00, 0x5f, 0x00, 0x5e, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x62, 0x00, 0x61, 0x00, 0x61, 0x00, 0x62, 0x00, 0x62, 0x00, 0x64, 0x00, 0x64, 0x00, 0x62, 0x00, 0x64, 0x00, 0x64, 0x00, 0x64, 0x00, 0x64, 0x00, 0x65, 0x00, 0x65, 0x00, 0x64, 0x00, 0x68, 0x00, 0x64, 0x00, 0x68, 0x00, 0x65, 0x00, 0x65, 0x00, 0x67, 0x00, 0x67, 0x00, 0x67, 0x00, 0x65, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x67, 0x00, 0x68, 0x00, 0x6b, 0x00, 0x6d, 0x00, 0x68, 0x00, 0x6a, 0x00, 0x6d, 0x00, 0x67, 0x00, 0x6d, 0x00, 0x67, 0x00, 0x6d, 0x00, 0x68, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x68, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x6b, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x71, 0x00, 0x6b, 0x00, 0x6d, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x6b, 0x00, 0x6d, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x70, 0x00, 0x6e, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x6a, 0x00, 0x6e, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x6d, 0x00, 0x6a, 0x00, 0x6e, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x67, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x68, 0x00, 0x6b, 0x00, 0x67, 0x00, 0x6a, 0x00, 0x68, 0x00, 0x68, 0x00, 0x67, 0x00, 0x68, 0x00, 0x68, 0x00, 0x6b, 0x00, 0x65, 0x00, 0x65, 0x00, 0x68, 0x00, 0x67, 0x00, 0x68, 0x00, 0x65, 0x00, 0x67, 0x00, 0x65, 0x00, 0x65, 0x00, 0x64, 0x00, 0x64, 0x00, 0x64, 0x00, 0x65, 0x00, 0x64, 0x00, 0x5f, 0x00, 0x64, 0x00, 0x62, 0x00, 0x5f, 0x00, 0x61, 0x00, 0x61, 0x00, 0x61, 0x00, 0x64, 0x00, 0x5f, 0x00, 0x61, 0x00, 0x61, 0x00, 0x5e, 0x00, 0x61, 0x00, 0x5e, 0x00, 0x61, 0x00, 0x5c, 0x00, 0x5f, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5c, 0x00, 0x5b, 0x00, 0x5e, 0x00, 0x59, 0x00, 0x5c, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x58, 0x00, 0x5b, 0x00, 0x59, 0x00, 0x55, 0x00, 0x58, 0x00, 0x55, 0x00, 0x56, 0x00, 0x55, 0x00, 0x58, 0x00, 0x53, 0x00, 0x53, 0x00, 0x53, 0x00, 0x52, 0x00, 0x55, 0x00, 0x50, 0x00, 0x53, 0x00, 0x50, 0x00, 0x52, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x47, 0x00, 0x47, 0x00, 0x46, 0x00, 0x46, 0x00, 0x46, 0x00, 0x46, 0x00, 0x49, 0x00, 0x41, 0x00, 0x44, 0x00, 0x43, 0x00, 0x44, 0x00, 0x43, 0x00, 0x43, 0x00, 0x44, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3a, 0x00, 0x3d, 0x00, 0x3b, 0x00, 0x38, 0x00, 0x3b, 0x00, 0x37, 0x00, 0x38, 0x00, 0x37, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x35, 0x00, 0x35, 0x00, 0x32, 0x00, 0x34, 0x00, 0x31, 0x00, 0x32, 0x00, 0x32, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x26, 0x00, 0x28, 0x00, 0x26, 0x00, 0x29, 0x00, 0x28, 0x00, 0x26, 0x00, 0x26, 0x00, 0x25, 0x00, 0x25, 0x00, 0x22, 0x00, 0x26, 0x00, 0x20, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x17, 0x00, 0x19, 0x00, 0x17, 0x00, 0x16, 0x00, 0x17, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x13, 0x00, 0x14, 0x00, 0x11, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x04, 0x00, 0x08, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xed, 0xff, 0xec, 0xff, 0xed, 0xff, 0xec, 0xff, 0xec, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe1, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd5, 0xff, 0xda, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xda, 0xff, 0xd2, 0xff, 0xd5, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xcc, 0xff, 0xd1, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xc9, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xc6, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc3, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xbf, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xba, 0xff, 0xba, 0xff, 0xbd, 0xff, 0xba, 0xff, 0xba, 0xff, 0xbd, 0xff, 0xb7, 0xff, 0xba, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb9, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb3, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xb1, 0xff, 0xad, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xab, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xae, 0xff, 0xab, 0xff, 0xab, 0xff, 0xad, 0xff, 0xad, 0xff, 0xab, 0xff, 0xad, 0xff, 0xad, 0xff, 0xab, 0xff, 0xab, 0xff, 0xab, 0xff, 0xab, 0xff, 0xab, 0xff, 0xa7, 0xff, 0xa5, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0xa8, 0xff, 0xab, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa8, 0xff, 0xa7, 0xff, 0xa4, 0xff, 0xa7, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa5, 0xff, 0xa8, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xa7, 0xff, 0xab, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa4, 0xff, 0xa7, 0xff, 0xa2, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xaa, 0xff, 0xa5, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xab, 0xff, 0xa4, 0xff, 0xaa, 0xff, 0xa7, 0xff, 0xa5, 0xff, 0xab, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0xa7, 0xff, 0xab, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xaa, 0xff, 0xad, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xab, 0xff, 0xab, 0xff, 0xa8, 0xff, 0xab, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xad, 0xff, 0xaa, 0xff, 0xad, 0xff, 0xad, 0xff, 0xab, 0xff, 0xab, 0xff, 0xad, 0xff, 0xb0, 0xff, 0xad, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xab, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xad, 0xff, 0xae, 0xff, 0xae, 0xff, 0xb1, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb1, 0xff, 0xb4, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb9, 0xff, 0xb9, 0xff, 0xb6, 0xff, 0xba, 0xff, 0xb9, 0xff, 0xba, 0xff, 0xbd, 0xff, 0xba, 0xff, 0xbc, 0xff, 0xbc, 0xff, 0xb9, 0xff, 0xbc, 0xff, 0xba, 0xff, 0xba, 0xff, 0xbf, 0xff, 0xbc, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbc, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc9, 0xff, 0xc2, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xd2, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xec, 0xff, 0xec, 0xff, 0xec, 0xff, 0xec, 0xff, 0xed, 0xff, 0xed, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x13, 0x00, 0x10, 0x00, 0x13, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x22, 0x00, 0x20, 0x00, 0x23, 0x00, 0x23, 0x00, 0x23, 0x00, 0x25, 0x00, 0x25, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x28, 0x00, 0x28, 0x00, 0x29, 0x00, 0x26, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x29, 0x00, 0x28, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x2b, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x31, 0x00, 0x34, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x31, 0x00, 0x32, 0x00, 0x35, 0x00, 0x32, 0x00, 0x34, 0x00, 0x35, 0x00, 0x37, 0x00, 0x32, 0x00, 0x37, 0x00, 0x34, 0x00, 0x35, 0x00, 0x37, 0x00, 0x35, 0x00, 0x37, 0x00, 0x37, 0x00, 0x38, 0x00, 0x37, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x37, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x41, 0x00, 0x40, 0x00, 0x41, 0x00, 0x41, 0x00, 0x40, 0x00, 0x41, 0x00, 0x41, 0x00, 0x44, 0x00, 0x43, 0x00, 0x43, 0x00, 0x44, 0x00, 0x40, 0x00, 0x43, 0x00, 0x43, 0x00, 0x43, 0x00, 0x43, 0x00, 0x44, 0x00, 0x43, 0x00, 0x43, 0x00, 0x46, 0x00, 0x44, 0x00, 0x47, 0x00, 0x43, 0x00, 0x46, 0x00, 0x46, 0x00, 0x44, 0x00, 0x44, 0x00, 0x44, 0x00, 0x47, 0x00, 0x46, 0x00, 0x46, 0x00, 0x46, 0x00, 0x49, 0x00, 0x46, 0x00, 0x46, 0x00, 0x46, 0x00, 0x47, 0x00, 0x47, 0x00, 0x47, 0x00, 0x47, 0x00, 0x47, 0x00, 0x47, 0x00, 0x47, 0x00, 0x4d, 0x00, 0x46, 0x00, 0x49, 0x00, 0x47, 0x00, 0x49, 0x00, 0x47, 0x00, 0x47, 0x00, 0x49, 0x00, 0x46, 0x00, 0x47, 0x00, 0x49, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x47, 0x00, 0x47, 0x00, 0x47, 0x00, 0x49, 0x00, 0x47, 0x00, 0x4c, 0x00, 0x4a, 0x00, 0x47, 0x00, 0x4c, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x47, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x46, 0x00, 0x4c, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x47, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x4d, 0x00, 0x46, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x47, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x47, 0x00, 0x46, 0x00, 0x47, 0x00, 0x46, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x49, 0x00, 0x46, 0x00, 0x49, 0x00, 0x47, 0x00, 0x44, 0x00, 0x47, 0x00, 0x49, 0x00, 0x47, 0x00, 0x44, 0x00, 0x4a, 0x00, 0x43, 0x00, 0x46, 0x00, 0x47, 0x00, 0x47, 0x00, 0x46, 0x00, 0x47, 0x00, 0x44, 0x00, 0x46, 0x00, 0x47, 0x00, 0x44, 0x00, 0x43, 0x00, 0x44, 0x00, 0x46, 0x00, 0x43, 0x00, 0x47, 0x00, 0x44, 0x00, 0x44, 0x00, 0x44, 0x00, 0x41, 0x00, 0x44, 0x00, 0x43, 0x00, 0x43, 0x00, 0x44, 0x00, 0x43, 0x00, 0x43, 0x00, 0x43, 0x00, 0x43, 0x00, 0x40, 0x00, 0x41, 0x00, 0x43, 0x00, 0x40, 0x00, 0x40, 0x00, 0x40, 0x00, 0x40, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x40, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3a, 0x00, 0x38, 0x00, 0x3b, 0x00, 0x38, 0x00, 0x38, 0x00, 0x37, 0x00, 0x35, 0x00, 0x38, 0x00, 0x35, 0x00, 0x38, 0x00, 0x34, 0x00, 0x37, 0x00, 0x37, 0x00, 0x34, 0x00, 0x35, 0x00, 0x37, 0x00, 0x35, 0x00, 0x34, 0x00, 0x32, 0x00, 0x32, 0x00, 0x32, 0x00, 0x34, 0x00, 0x34, 0x00, 0x32, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x28, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x29, 0x00, 0x29, 0x00, 0x29, 0x00, 0x28, 0x00, 0x28, 0x00, 0x26, 0x00, 0x26, 0x00, 0x25, 0x00, 0x25, 0x00, 0x25, 0x00, 0x25, 0x00, 0x23, 0x00, 0x26, 0x00, 0x22, 0x00, 0x25, 0x00, 0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1a, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x16, 0x00, 0x17, 0x00, 0x16, 0x00, 0x17, 0x00, 0x16, 0x00, 0x14, 0x00, 0x17, 0x00, 0x13, 0x00, 0x14, 0x00, 0x11, 0x00, 0x13, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xec, 0xff, 0xef, 0xff, 0xea, 0xff, 0xec, 0xff, 0xec, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xde, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xcb, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xc9, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xc6, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc8, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xcf, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe6, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xec, 0xff, 0xec, 0xff, 0xec, 0xff, 0xea, 0xff, 0xef, 0xff, 0xec, 0xff, 0xef, 0xff, 0xef, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x10, 0x00, 0x11, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x10, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x11, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x14, 0x00, 0x13, 0x00, 0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x1f, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x22, 0x00, 0x20, 0x00, 0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x23, 0x00, 0x22, 0x00, 0x25, 0x00, 0x20, 0x00, 0x25, 0x00, 0x25, 0x00, 0x22, 0x00, 0x23, 0x00, 0x23, 0x00, 0x28, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x25, 0x00, 0x28, 0x00, 0x26, 0x00, 0x26, 0x00, 0x28, 0x00, 0x25, 0x00, 0x26, 0x00, 0x28, 0x00, 0x26, 0x00, 0x29, 0x00, 0x28, 0x00, 0x26, 0x00, 0x29, 0x00, 0x26, 0x00, 0x29, 0x00, 0x28, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x32, 0x00, 0x31, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x35, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x32, 0x00, 0x32, 0x00, 0x32, 0x00, 0x31, 0x00, 0x32, 0x00, 0x31, 0x00, 0x32, 0x00, 0x31, 0x00, 0x34, 0x00, 0x34, 0x00, 0x31, 0x00, 0x31, 0x00, 0x34, 0x00, 0x32, 0x00, 0x35, 0x00, 0x2c, 0x00, 0x31, 0x00, 0x31, 0x00, 0x34, 0x00, 0x32, 0x00, 0x31, 0x00, 0x34, 0x00, 0x31, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x34, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x34, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x32, 0x00, 0x31, 0x00, 0x31, 0x00, 0x32, 0x00, 0x31, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x29, 0x00, 0x29, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x29, 0x00, 0x29, 0x00, 0x26, 0x00, 0x26, 0x00, 0x28, 0x00, 0x28, 0x00, 0x26, 0x00, 0x26, 0x00, 0x29, 0x00, 0x28, 0x00, 0x28, 0x00, 0x26, 0x00, 0x25, 0x00, 0x28, 0x00, 0x26, 0x00, 0x26, 0x00, 0x25, 0x00, 0x23, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x22, 0x00, 0x26, 0x00, 0x22, 0x00, 0x23, 0x00, 0x26, 0x00, 0x22, 0x00, 0x23, 0x00, 0x23, 0x00, 0x22, 0x00, 0x23, 0x00, 0x22, 0x00, 0x22, 0x00, 0x23, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x23, 0x00, 0x1d, 0x00, 0x22, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x17, 0x00, 0x19, 0x00, 0x19, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x16, 0x00, 0x17, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x16, 0x00, 0x14, 0x00, 0x13, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x11, 0x00, 0x13, 0x00, 0x11, 0x00, 0x13, 0x00, 0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x02, 0x00, 0x08, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xea, 0xff, 0xed, 0xff, 0xed, 0xff, 0xed, 0xff, 0xec, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd5, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd4, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xda, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe4, 0xff, 0xde, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xec, 0xff, 0xea, 0xff, 0xec, 0xff, 0xec, 0xff, 0xef, 0xff, 0xec, 0xff, 0xec, 0xff, 0xed, 0xff, 0xec, 0xff, 0xed, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x04, 0x00, 0x07, 0x00, 0x08, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x13, 0x00, 0x10, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x13, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x19, 0x00, 0x16, 0x00, 0x14, 0x00, 0x17, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x19, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1a, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x1d, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x20, 0x00, 0x22, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x22, 0x00, 0x20, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x20, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x20, 0x00, 0x20, 0x00, 0x23, 0x00, 0x20, 0x00, 0x23, 0x00, 0x20, 0x00, 0x22, 0x00, 0x20, 0x00, 0x20, 0x00, 0x22, 0x00, 0x20, 0x00, 0x20, 0x00, 0x22, 0x00, 0x20, 0x00, 0x20, 0x00, 0x23, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x20, 0x00, 0x23, 0x00, 0x20, 0x00, 0x22, 0x00, 0x20, 0x00, 0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x22, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x1d, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x1d, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x1f, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x19, 0x00, 0x19, 0x00, 0x17, 0x00, 0x17, 0x00, 0x19, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x17, 0x00, 0x19, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x16, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x17, 0x00, 0x17, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x19, 0x00, 0x13, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x17, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x17, 0x00, 0x11, 0x00, 0x14, 0x00, 0x16, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x10, 0x00, 0x16, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x10, 0x00, 0x13, 0x00, 0x10, 0x00, 0x10, 0x00, 0x13, 0x00, 0x11, 0x00, 0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x05, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xed, 0xff, 0xed, 0xff, 0xec, 0xff, 0xef, 0xff, 0xea, 0xff, 0xef, 0xff, 0xec, 0xff, 0xec, 0xff, 0xec, 0xff, 0xea, 0xff, 0xed, 0xff, 0xec, 0xff, 0xec, 0xff, 0xea, 0xff, 0xec, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xea, 0xff, 0xea, 0xff, 0xec, 0xff, 0xea, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xea, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xed, 0xff, 0xec, 0xff, 0xea, 0xff, 0xed, 0xff, 0xec, 0xff, 0xec, 0xff, 0xed, 0xff, 0xec, 0xff, 0xed, 0xff, 0xed, 0xff, 0xed, 0xff, 0xed, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xea, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xed, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x05, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x10, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x10, 0x00, 0x11, 0x00, 0x13, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x14, 0x00, 0x10, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x13, 0x00, 0x10, 0x00, 0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x11, 0x00, 0x10, 0x00, 0x11, 0x00, 0x13, 0x00, 0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x10, 0x00, 0x13, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x11, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x17, 0x00, 0x16, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x17, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x17, 0x00, 0x13, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x19, 0x00, 0x16, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x13, 0x00, 0x17, 0x00, 0x16, 0x00, 0x14, 0x00, 0x17, 0x00, 0x14, 0x00, 0x16, 0x00, 0x13, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x11, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x17, 0x00, 0x14, 0x00, 0x16, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x11, 0x00, 0x16, 0x00, 0x11, 0x00, 0x16, 0x00, 0x16, 0x00, 0x11, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x13, 0x00, 0x16, 0x00, 0x14, 0x00, 0x16, 0x00, 0x11, 0x00, 0x16, 0x00, 0x13, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x10, 0x00, 0x13, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00, 0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x16, 0x00, 0x10, 0x00, 0x13, 0x00, 0x10, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x14, 0x00, 0x10, 0x00, 0x11, 0x00, 0x13, 0x00, 0x10, 0x00, 0x16, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x10, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xea, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xec, 0xff, 0xec, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xf5, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00, 0x07, 0x00, 0x08, 0x00, 0x02, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00, 0x02, 0x00, 0x08, 0x00, 0x05, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x04, 0x00, 0x07, 0x00, 0x08, 0x00, 0x02, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x07, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0x07, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x08, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x08, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x04, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x04, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x08, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x08, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x01, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x07, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x07, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x07, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x08, 0x00, 0x02, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x08, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00, 0x08, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x08, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x02, 0x00, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x08, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x08, 0x00, 0x08, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x07, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xf9, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff }; #define tr808_bd_wav_len 44180 unsigned char tr808_cb_wav[] = { 0x52, 0x49, 0x46, 0x46, 0x02, 0x82, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45, 0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e, 0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61, 0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61, 0x74, 0x61, 0xbc, 0x81, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0xad, 0xff, 0xd6, 0xfe, 0xa1, 0xfd, 0x35, 0xfc, 0xac, 0xfa, 0x0a, 0xf9, 0x7c, 0xf7, 0xf6, 0xf5, 0xa7, 0xf4, 0x6a, 0xf3, 0xa1, 0xf2, 0xd1, 0xf1, 0x89, 0xf5, 0x65, 0xfa, 0x69, 0xfc, 0x07, 0xfe, 0x11, 0xff, 0x41, 0x00, 0x31, 0x01, 0x51, 0x02, 0x47, 0x03, 0x53, 0x04, 0x2f, 0x05, 0xc8, 0x06, 0xe5, 0x12, 0x8e, 0x1c, 0x33, 0x1f, 0x09, 0x20, 0x08, 0x1f, 0xa4, 0x1d, 0x65, 0x1b, 0xff, 0x18, 0x15, 0x16, 0x0a, 0x13, 0x9c, 0x0f, 0x22, 0x0c, 0x90, 0x08, 0x03, 0x05, 0x76, 0x01, 0x06, 0xfe, 0xae, 0xfa, 0x88, 0xf7, 0x93, 0xf4, 0xe8, 0xf1, 0x8b, 0xef, 0x7a, 0xed, 0xc4, 0xeb, 0x62, 0xea, 0x62, 0xe9, 0xaf, 0xe8, 0x71, 0xe8, 0x6d, 0xe8, 0xd3, 0xe8, 0xdc, 0xe6, 0x71, 0xe4, 0x55, 0xe1, 0xf0, 0xdc, 0x47, 0xda, 0xd0, 0xd8, 0xd4, 0xd8, 0xfa, 0xd9, 0x4c, 0xdc, 0x95, 0xdf, 0xca, 0xe3, 0xbe, 0xe8, 0x4c, 0xee, 0x59, 0xf4, 0xb9, 0xfa, 0x13, 0x01, 0xc7, 0x07, 0x34, 0x0e, 0xcd, 0x14, 0x9d, 0x1a, 0xb1, 0x20, 0x55, 0x25, 0xad, 0x2a, 0x33, 0x2d, 0xfa, 0x38, 0x47, 0x4d, 0x5e, 0x54, 0xdd, 0x55, 0x50, 0x53, 0x28, 0x4f, 0x7f, 0x49, 0xdb, 0x42, 0x63, 0x3b, 0x0a, 0x33, 0x5f, 0x2a, 0xba, 0x20, 0xa2, 0x17, 0x9a, 0x0d, 0x5f, 0x12, 0x5a, 0x17, 0x9d, 0x10, 0x97, 0x07, 0x5d, 0xfc, 0xa9, 0xf1, 0xc3, 0xe6, 0xd9, 0xdc, 0x73, 0xd3, 0x23, 0xcb, 0xb6, 0xc3, 0x66, 0xbd, 0x6b, 0xb8, 0x8d, 0xb4, 0x30, 0xb2, 0xf8, 0xaf, 0xc1, 0xac, 0x2b, 0xab, 0x42, 0xab, 0x0f, 0xad, 0x60, 0xb0, 0x1c, 0xb5, 0x2a, 0xbb, 0x57, 0xc2, 0x84, 0xca, 0x80, 0xd3, 0x23, 0xdd, 0x41, 0xe7, 0xa2, 0xf1, 0x2d, 0xfc, 0x74, 0x06, 0xb1, 0x10, 0x69, 0x1a, 0xbb, 0x23, 0x33, 0x2c, 0x04, 0x34, 0xca, 0x3a, 0xd2, 0x40, 0x62, 0x45, 0x23, 0x4a, 0x33, 0x56, 0xdd, 0x59, 0xd1, 0x58, 0x9e, 0x59, 0x84, 0x58, 0x1b, 0x5a, 0x67, 0x4e, 0xff, 0x40, 0xa5, 0x37, 0xe8, 0x2b, 0x41, 0x21, 0xb5, 0x15, 0x08, 0x0b, 0x17, 0x00, 0xf3, 0xf5, 0x15, 0xec, 0x23, 0xe3, 0xde, 0xda, 0x7c, 0xd3, 0x0c, 0xcd, 0xa1, 0xc7, 0x41, 0xc3, 0xfe, 0xbf, 0xc9, 0xbd, 0xbc, 0xbc, 0xb6, 0xbc, 0xce, 0xbd, 0xd0, 0xbf, 0xe3, 0xc2, 0xe1, 0xc4, 0x96, 0xc6, 0xbc, 0xc9, 0xdf, 0xcd, 0x24, 0xd3, 0x10, 0xd9, 0xfd, 0xdf, 0x08, 0xe7, 0x21, 0xef, 0xbf, 0xf6, 0x67, 0x0b, 0x34, 0x20, 0x39, 0x2a, 0x7f, 0x31, 0xe4, 0x35, 0x74, 0x39, 0xab, 0x3b, 0x22, 0x3d, 0xb8, 0x3d, 0x42, 0x3d, 0x2e, 0x3c, 0xc7, 0x39, 0x74, 0x37, 0x1b, 0x33, 0x72, 0x33, 0x40, 0x3c, 0x71, 0x3c, 0x77, 0x37, 0x22, 0x30, 0x99, 0x27, 0x7e, 0x1e, 0xff, 0x14, 0x80, 0x0b, 0x0b, 0x02, 0xd9, 0xf8, 0xe6, 0xef, 0x90, 0xe7, 0xd4, 0xdf, 0xda, 0xd8, 0xa7, 0xd2, 0x55, 0xcd, 0xed, 0xc8, 0x7f, 0xc5, 0x0a, 0xc3, 0xa2, 0xc1, 0x32, 0xc1, 0xbe, 0xc1, 0x2b, 0xc3, 0x8d, 0xc5, 0xad, 0xc8, 0xad, 0xcc, 0x2f, 0xd1, 0x92, 0xd6, 0x86, 0xda, 0xb3, 0xdb, 0xcb, 0xdd, 0xe7, 0xe0, 0x0e, 0xe5, 0xff, 0xe9, 0xa1, 0xef, 0xcf, 0xf5, 0x5f, 0xfc, 0x2d, 0x03, 0x19, 0x0a, 0x00, 0x11, 0xbe, 0x17, 0x2d, 0x1e, 0x39, 0x24, 0xae, 0x29, 0x82, 0x2e, 0xbd, 0x32, 0x33, 0x36, 0xec, 0x38, 0xb5, 0x3a, 0xd5, 0x3b, 0xc6, 0x3b, 0x51, 0x3b, 0x7e, 0x39, 0x95, 0x40, 0xe1, 0x46, 0xc2, 0x44, 0x39, 0x40, 0x40, 0x39, 0xb3, 0x31, 0x09, 0x29, 0x45, 0x20, 0xd9, 0x16, 0xb5, 0x0d, 0x47, 0x04, 0x3f, 0x05, 0x9f, 0x05, 0xac, 0xfe, 0x86, 0xf6, 0x35, 0xed, 0x86, 0xe4, 0x01, 0xdc, 0x7b, 0xd4, 0xa0, 0xcd, 0xd6, 0xc7, 0xe7, 0xc2, 0x1e, 0xbf, 0x70, 0xbc, 0xe0, 0xba, 0x64, 0xba, 0x10, 0xbb, 0xa9, 0xbc, 0x5d, 0xbf, 0x90, 0xc1, 0xa1, 0xc3, 0xfc, 0xc6, 0x4a, 0xcb, 0xa2, 0xd0, 0xbc, 0xd6, 0x90, 0xdd, 0xec, 0xe4, 0xb1, 0xec, 0xb9, 0xf4, 0xe3, 0xfc, 0x07, 0x05, 0x04, 0x0d, 0xba, 0x14, 0x08, 0x1c, 0xb6, 0x22, 0xee, 0x28, 0x55, 0x2e, 0x2e, 0x33, 0xe9, 0x36, 0x22, 0x3a, 0xfc, 0x3b, 0x8d, 0x3d, 0x22, 0x3d, 0xb0, 0x3f, 0x00, 0x48, 0x57, 0x48, 0x39, 0x44, 0x0e, 0x3e, 0xb7, 0x36, 0xc1, 0x2e, 0x4a, 0x26, 0xa9, 0x1d, 0xde, 0x14, 0x22, 0x0c, 0x77, 0x03, 0x28, 0xfb, 0x38, 0xf3, 0xca, 0xeb, 0xed, 0xe4, 0xb7, 0xde, 0x3a, 0xd9, 0x83, 0xd4, 0xa1, 0xd0, 0xa0, 0xcd, 0x78, 0xcb, 0x3a, 0xca, 0xcd, 0xc9, 0x4c, 0xca, 0x8f, 0xcb, 0xa9, 0xcd, 0x5b, 0xd0, 0xd0, 0xd3, 0x9c, 0xd7, 0x68, 0xda, 0x84, 0xdd, 0x62, 0xe1, 0xf3, 0xe5, 0xd1, 0xea, 0x69, 0xf0, 0xfb, 0xf5, 0x13, 0x05, 0xd6, 0x13, 0x2d, 0x1b, 0xb4, 0x20, 0x39, 0x24, 0x49, 0x27, 0x4e, 0x29, 0xe0, 0x2a, 0x9d, 0x2b, 0xeb, 0x2b, 0x6a, 0x2b, 0x83, 0x2a, 0xdf, 0x28, 0x02, 0x27, 0x43, 0x24, 0xa3, 0x21, 0xb1, 0x1d, 0x3f, 0x20, 0xd2, 0x24, 0x9a, 0x22, 0x69, 0x1e, 0x8f, 0x18, 0x73, 0x12, 0xde, 0x0b, 0x63, 0x05, 0xe2, 0xfe, 0xa5, 0xf8, 0x99, 0xf2, 0xf1, 0xec, 0xc5, 0xe7, 0x21, 0xe3, 0x13, 0xdf, 0xa1, 0xdb, 0xd8, 0xd8, 0xc1, 0xd6, 0x54, 0xd5, 0x9c, 0xd4, 0x93, 0xd4, 0x33, 0xd5, 0x76, 0xd6, 0x53, 0xd8, 0xb5, 0xda, 0xae, 0xdd, 0x1e, 0xe0, 0xf0, 0xe1, 0x9c, 0xe4, 0xe6, 0xe6, 0xb2, 0xe8, 0x3b, 0xeb, 0x5f, 0xee, 0x14, 0xf2, 0x39, 0xf6, 0xb5, 0xfa, 0x6e, 0xff, 0x4b, 0x04, 0x2f, 0x09, 0x04, 0x0e, 0xb2, 0x12, 0x2a, 0x17, 0x3f, 0x1b, 0x01, 0x1f, 0x2d, 0x22, 0xf8, 0x24, 0x20, 0x27, 0xdc, 0x28, 0xd5, 0x29, 0x65, 0x2a, 0x1b, 0x2a, 0x8c, 0x29, 0xcd, 0x27, 0x8c, 0x27, 0x8b, 0x2d, 0x30, 0x2f, 0x8a, 0x2c, 0x52, 0x28, 0xe8, 0x22, 0xf8, 0x1c, 0xa6, 0x16, 0x46, 0x10, 0x32, 0x11, 0x18, 0x11, 0x81, 0x0b, 0xfa, 0x04, 0x6d, 0xfd, 0x36, 0xf6, 0xf7, 0xee, 0x55, 0xe8, 0x18, 0xe2, 0x92, 0xdc, 0xa1, 0xd7, 0x7d, 0xd3, 0x28, 0xd0, 0xa9, 0xcd, 0x04, 0xcc, 0x2f, 0xcb, 0x30, 0xcb, 0x07, 0xcc, 0x98, 0xcd, 0xf5, 0xcf, 0xc2, 0xd2, 0xe7, 0xd4, 0x72, 0xd7, 0xd2, 0xda, 0xd4, 0xde, 0x75, 0xe3, 0x8f, 0xe8, 0x0e, 0xee, 0xcb, 0xf3, 0xbe, 0xf9, 0xba, 0xff, 0xb0, 0x05, 0x80, 0x0b, 0x1b, 0x11, 0x6a, 0x16, 0x41, 0x1b, 0x9b, 0x1f, 0x7c, 0x23, 0xc5, 0x26, 0x7e, 0x29, 0x73, 0x2b, 0xe6, 0x2c, 0x71, 0x2d, 0xfa, 0x2c, 0x67, 0x2a, 0x2c, 0x2d, 0x35, 0x31, 0xa4, 0x2f, 0x4d, 0x2c, 0x6d, 0x27, 0x27, 0x22, 0x4d, 0x1c, 0x4f, 0x16, 0x22, 0x10, 0x04, 0x0a, 0xdd, 0x03, 0xe5, 0xfd, 0x30, 0xf8, 0xcc, 0xf2, 0xcc, 0xed, 0x3d, 0xe9, 0x2c, 0xe5, 0xaa, 0xe1, 0xb9, 0xde, 0x5f, 0xdc, 0xaa, 0xda, 0x94, 0xd9, 0x19, 0xd9, 0x43, 0xd9, 0xf7, 0xd9, 0x3c, 0xdb, 0x18, 0xdd, 0x64, 0xdf, 0x43, 0xe2, 0xce, 0xe4, 0xd4, 0xe6, 0x47, 0xe9, 0x54, 0xec, 0xc5, 0xef, 0x80, 0xfa, 0xc7, 0x04, 0xe8, 0x09, 0xec, 0x0d, 0xa5, 0x10, 0x3a, 0x13, 0x2c, 0x15, 0xfb, 0x16, 0x4b, 0x18, 0x60, 0x19, 0xeb, 0x19, 0x39, 0x1a, 0x2a, 0x1a, 0xd3, 0x19, 0x19, 0x19, 0x1e, 0x18, 0xc1, 0x16, 0x38, 0x15, 0x3e, 0x13, 0xe4, 0x11, 0x45, 0x16, 0x43, 0x18, 0x6f, 0x16, 0x8c, 0x13, 0xb6, 0x0f, 0xbe, 0x0b, 0x73, 0x07, 0x47, 0x03, 0x0e, 0xff, 0x0d, 0xfb, 0x1b, 0xf7, 0x7a, 0xf3, 0x27, 0xf0, 0x2d, 0xed, 0x94, 0xea, 0x63, 0xe8, 0x9f, 0xe6, 0x46, 0xe5, 0x64, 0xe4, 0xf2, 0xe3, 0xf8, 0xe3, 0x60, 0xe4, 0x43, 0xe5, 0xc1, 0xe5, 0xe8, 0xe5, 0xb7, 0xe6, 0xfb, 0xe7, 0xc5, 0xe9, 0xf3, 0xeb, 0x8a, 0xed, 0x15, 0xef, 0x33, 0xf1, 0xb1, 0xf3, 0x98, 0xf6, 0xbe, 0xf9, 0x1f, 0xfd, 0x9d, 0x00, 0x28, 0x04, 0xb4, 0x07, 0x2e, 0x0b, 0x87, 0x0e, 0xa2, 0x11, 0x81, 0x14, 0x14, 0x17, 0x3d, 0x19, 0x18, 0x1b, 0x7f, 0x1c, 0x96, 0x1d, 0x18, 0x1e, 0x53, 0x1e, 0xd9, 0x1d, 0x63, 0x1d, 0xce, 0x1b, 0x9f, 0x1d, 0xf2, 0x21, 0x99, 0x21, 0x64, 0x1f, 0xe2, 0x1b, 0x23, 0x18, 0x96, 0x19, 0xa5, 0x19, 0x8c, 0x15, 0x7c, 0x10, 0x76, 0x0a, 0x73, 0x04, 0x4c, 0xfe, 0x72, 0xf8, 0xc3, 0xf2, 0x82, 0xed, 0x94, 0xe8, 0x37, 0xe4, 0x62, 0xe0, 0x27, 0xdd, 0x93, 0xda, 0x9e, 0xd8, 0x52, 0xd7, 0xab, 0xd6, 0xb2, 0xd6, 0x4d, 0xd7, 0x95, 0xd8, 0x5a, 0xda, 0xbf, 0xdc, 0x1a, 0xdf, 0x0b, 0xe1, 0x8d, 0xe3, 0x90, 0xe6, 0x11, 0xea, 0xe8, 0xed, 0x16, 0xf2, 0x79, 0xf6, 0xfd, 0xfa, 0x95, 0xff, 0x22, 0x04, 0x9d, 0x08, 0xe9, 0x0c, 0xf6, 0x10, 0xbe, 0x14, 0x18, 0x18, 0x13, 0x1b, 0x9f, 0x1d, 0xb8, 0x1f, 0x51, 0x21, 0xcb, 0x21, 0x2e, 0x21, 0x63, 0x20, 0x15, 0x1f, 0x32, 0x1e, 0xe5, 0x21, 0x8a, 0x23, 0xd8, 0x21, 0x1f, 0x1f, 0x70, 0x1b, 0x7f, 0x17, 0x25, 0x13, 0xc0, 0x0e, 0x2f, 0x0a, 0xab, 0x05, 0x22, 0x01, 0xc9, 0xfc, 0x9e, 0xf8, 0xb6, 0xf4, 0x17, 0xf1, 0xcf, 0xed, 0xec, 0xea, 0x6e, 0xe8, 0x61, 0xe6, 0xc4, 0xe4, 0xa5, 0xe3, 0xee, 0xe2, 0xb7, 0xe2, 0xf1, 0xe2, 0xa8, 0xe3, 0xc7, 0xe4, 0x45, 0xe6, 0x2c, 0xe8, 0x4d, 0xea, 0xf1, 0xeb, 0xab, 0xed, 0x40, 0xf5, 0x2b, 0xfc, 0x93, 0xff, 0x3b, 0x02, 0x23, 0x04, 0x0e, 0x06, 0xa3, 0x07, 0x40, 0x09, 0xa4, 0x0a, 0xfc, 0x0b, 0x0e, 0x0d, 0x04, 0x0e, 0xc9, 0x0e, 0x50, 0x0f, 0xbc, 0x0f, 0xe0, 0x0f, 0xe8, 0x0f, 0x9a, 0x0f, 0x4a, 0x0f, 0x85, 0x0e, 0xef, 0x0d, 0x91, 0x0c, 0xee, 0x0d, 0xfd, 0x11, 0x6b, 0x12, 0x3a, 0x11, 0x15, 0x0f, 0x97, 0x0c, 0xcf, 0x09, 0xec, 0x06, 0xfb, 0x03, 0x16, 0x01, 0x39, 0xfe, 0x6e, 0xfb, 0xd5, 0xf8, 0x6e, 0xf6, 0x41, 0xf4, 0x4a, 0xf2, 0xa1, 0xf0, 0x3a, 0xef, 0x21, 0xee, 0x4e, 0xed, 0xdf, 0xec, 0x1f, 0xec, 0x24, 0xeb, 0xab, 0xea, 0xa4, 0xea, 0x15, 0xeb, 0xee, 0xeb, 0x1d, 0xed, 0xbb, 0xee, 0x52, 0xf0, 0x6a, 0xf1, 0xd1, 0xf2, 0x91, 0xf4, 0xa3, 0xf6, 0xf2, 0xf8, 0x75, 0xfb, 0x15, 0xfe, 0xca, 0x00, 0x89, 0x03, 0x3f, 0x06, 0xe7, 0x08, 0x69, 0x0b, 0xc1, 0x0d, 0xe8, 0x0f, 0xc5, 0x11, 0x60, 0x13, 0xba, 0x14, 0xb5, 0x15, 0x66, 0x16, 0xc1, 0x16, 0xd0, 0x16, 0x81, 0x16, 0xec, 0x15, 0x31, 0x15, 0x4f, 0x18, 0x6a, 0x1a, 0x85, 0x19, 0x2e, 0x1c, 0x0f, 0x1d, 0x8a, 0x1a, 0xdf, 0x16, 0x5c, 0x12, 0x9f, 0x0d, 0x9f, 0x08, 0xa1, 0x03, 0xab, 0xfe, 0xe9, 0xf9, 0x54, 0xf5, 0x11, 0xf1, 0x28, 0xed, 0xa7, 0xe9, 0x98, 0xe6, 0x01, 0xe4, 0xef, 0xe1, 0x60, 0xe0, 0x55, 0xdf, 0xd2, 0xde, 0xd2, 0xde, 0x58, 0xdf, 0x51, 0xe0, 0xcb, 0xe1, 0xa8, 0xe3, 0xe8, 0xe5, 0xce, 0xe7, 0xac, 0xe9, 0x08, 0xec, 0xb5, 0xee, 0xbb, 0xf1, 0xf9, 0xf4, 0x6c, 0xf8, 0xf6, 0xfb, 0x93, 0xff, 0x23, 0x03, 0xae, 0x06, 0x10, 0x0a, 0x46, 0x0d, 0x3d, 0x10, 0xf2, 0x12, 0x40, 0x15, 0x58, 0x17, 0x7b, 0x18, 0xe0, 0x18, 0xfb, 0x18, 0xef, 0x18, 0x70, 0x18, 0x04, 0x18, 0xcb, 0x16, 0xbd, 0x17, 0xe3, 0x1a, 0xdb, 0x1a, 0x5f, 0x19, 0xf6, 0x16, 0x1f, 0x14, 0xf1, 0x10, 0x9a, 0x0d, 0x21, 0x0a, 0x9e, 0x06, 0x15, 0x03, 0x9c, 0xff, 0x43, 0xfc, 0x14, 0xf9, 0x18, 0xf6, 0x59, 0xf3, 0xe1, 0xf0, 0xb5, 0xee, 0xe1, 0xec, 0x58, 0xeb, 0x32, 0xea, 0x68, 0xe9, 0x06, 0xe9, 0xfd, 0xe8, 0x4c, 0xe9, 0xf5, 0xe9, 0xec, 0xea, 0x3a, 0xec, 0xde, 0xed, 0xb9, 0xf3, 0x99, 0xf8, 0xa4, 0xfa, 0x3b, 0xfc, 0x4b, 0xfd, 0x7c, 0xfe, 0x8c, 0xff, 0xb8, 0x00, 0xd8, 0x01, 0x07, 0x03, 0x23, 0x04, 0x3b, 0x05, 0x47, 0x06, 0x46, 0x07, 0x2a, 0x08, 0xf2, 0x08, 0x97, 0x09, 0x22, 0x0a, 0x8c, 0x0a, 0xd4, 0x0a, 0xf0, 0x0a, 0xef, 0x0a, 0xc0, 0x0a, 0x76, 0x0a, 0x1f, 0x0a, 0x44, 0x0d, 0xc5, 0x0f, 0x95, 0x0f, 0xae, 0x0e, 0x07, 0x0d, 0x3c, 0x0b, 0x1e, 0x09, 0xfe, 0x06, 0xbe, 0x04, 0x87, 0x02, 0x46, 0x00, 0x21, 0xfe, 0x0b, 0xfc, 0x1c, 0xfa, 0x4d, 0xf8, 0xb1, 0xf6, 0x3c, 0xf5, 0x0a, 0xf4, 0x97, 0xf2, 0xec, 0xf0, 0xac, 0xef, 0xc6, 0xee, 0x45, 0xee, 0x1f, 0xee, 0x57, 0xee, 0xe0, 0xee, 0xb6, 0xef, 0xd7, 0xf0, 0x3f, 0xf2, 0x50, 0xf3, 0x3a, 0xf4, 0x81, 0xf5, 0x01, 0xf7, 0xc5, 0xf8, 0xae, 0xfa, 0xb9, 0xfc, 0xe2, 0xfe, 0x0f, 0x01, 0x41, 0x03, 0x6a, 0x05, 0x82, 0x07, 0x7d, 0x09, 0x4e, 0x0b, 0xfc, 0x0c, 0x5a, 0x0e, 0x97, 0x0f, 0x8b, 0x10, 0x5a, 0x11, 0xc6, 0x11, 0x18, 0x12, 0xf3, 0x11, 0xc9, 0x11, 0xff, 0x10, 0xe1, 0x11, 0x8d, 0x18, 0x00, 0x1c, 0x71, 0x1b, 0x68, 0x19, 0x4f, 0x16, 0xd6, 0x12, 0xf0, 0x0e, 0xf7, 0x0a, 0xda, 0x06, 0xc1, 0x02, 0xa9, 0xfe, 0xbe, 0xfa, 0x03, 0xf7, 0x91, 0xf3, 0x62, 0xf0, 0x8d, 0xed, 0x12, 0xeb, 0xfa, 0xe8, 0x4a, 0xe7, 0x0f, 0xe6, 0x3a, 0xe5, 0xd4, 0xe4, 0xdb, 0xe4, 0x4f, 0xe5, 0x23, 0xe6, 0x5d, 0xe7, 0xe7, 0xe8, 0xc8, 0xea, 0xbd, 0xec, 0x4d, 0xee, 0x23, 0xf0, 0x48, 0xf2, 0xa9, 0xf4, 0x41, 0xf7, 0xfe, 0xf9, 0xd9, 0xfc, 0xba, 0xff, 0x99, 0x02, 0x6c, 0x05, 0x21, 0x08, 0xb7, 0x0a, 0x18, 0x0d, 0x4d, 0x0f, 0xce, 0x10, 0xa9, 0x11, 0x5d, 0x12, 0xe6, 0x12, 0x42, 0x13, 0x66, 0x13, 0x55, 0x13, 0x0b, 0x13, 0x8d, 0x12, 0xf9, 0x11, 0x4f, 0x14, 0xe5, 0x15, 0x26, 0x15, 0xb8, 0x13, 0x93, 0x11, 0x36, 0x0f, 0x95, 0x0c, 0xdd, 0x09, 0x04, 0x07, 0x2b, 0x04, 0x4e, 0x01, 0x88, 0xfe, 0xd9, 0xfb, 0x54, 0xf9, 0xf6, 0xf6, 0xd2, 0xf4, 0xdb, 0xf2, 0x31, 0xf1, 0xc5, 0xef, 0xaf, 0xee, 0xe0, 0xed, 0x5c, 0xed, 0x28, 0xed, 0x37, 0xed, 0x9f, 0xed, 0x46, 0xee, 0x9c, 0xf2, 0xe7, 0xf6, 0xde, 0xf8, 0xe6, 0xf9, 0x28, 0xfa, 0xa0, 0xfa, 0x0e, 0xfb, 0xb4, 0xfb, 0x65, 0xfc, 0x3d, 0xfd, 0x19, 0xfe, 0x0c, 0xff, 0x0e, 0x00, 0x13, 0x01, 0x21, 0x02, 0x29, 0x03, 0x24, 0x04, 0x18, 0x05, 0xeb, 0x05, 0xbc, 0x06, 0x64, 0x07, 0x06, 0x08, 0x71, 0x08, 0xdf, 0x08, 0x05, 0x09, 0x3f, 0x09, 0xf7, 0x08, 0x39, 0x0a, 0x82, 0x0d, 0x78, 0x0e, 0x3f, 0x0e, 0x4f, 0x0d, 0x0a, 0x0c, 0x86, 0x0a, 0xd5, 0x08, 0x0f, 0x07, 0x2e, 0x05, 0x4f, 0x03, 0x66, 0x01, 0x8c, 0xff, 0xc1, 0xfd, 0x07, 0xfc, 0x79, 0xfa, 0xa5, 0xf8, 0x9a, 0xf6, 0xdb, 0xf4, 0x69, 0xf3, 0x44, 0xf2, 0x71, 0xf1, 0xe9, 0xf0, 0xb1, 0xf0, 0xc0, 0xf0, 0x17, 0xf1, 0xb6, 0xf1, 0x88, 0xf2, 0x9e, 0xf3, 0xbb, 0xf4, 0x7a, 0xf5, 0x61, 0xf6, 0x86, 0xf7, 0xdc, 0xf8, 0x61, 0xfa, 0x01, 0xfc, 0xc1, 0xfd, 0x8d, 0xff, 0x5d, 0x01, 0x2d, 0x03, 0xf4, 0x04, 0xaa, 0x06, 0x39, 0x08, 0xb0, 0x09, 0xf5, 0x0a, 0x1e, 0x0c, 0x12, 0x0d, 0xd7, 0x0d, 0x67, 0x0e, 0xb7, 0x0e, 0xde, 0x0e, 0xe0, 0x0e, 0xde, 0x11, 0xeb, 0x13, 0x4c, 0x16, 0xff, 0x17, 0xe4, 0x16, 0x0f, 0x15, 0x53, 0x12, 0x6c, 0x0f, 0x22, 0x0c, 0xd6, 0x08, 0x5e, 0x05, 0xf7, 0x01, 0x97, 0xfe, 0x5d, 0xfb, 0x48, 0xf8, 0x6c, 0xf5, 0xd0, 0xf2, 0x78, 0xf0, 0x70, 0xee, 0xb7, 0xec, 0x5f, 0xeb, 0x56, 0xea, 0xb3, 0xe9, 0x68, 0xe9, 0x74, 0xe9, 0xdb, 0xe9, 0x95, 0xea, 0x9d, 0xeb, 0xf0, 0xec, 0x7f, 0xee, 0x52, 0xf0, 0xe9, 0xf1, 0x52, 0xf3, 0x0f, 0xf5, 0xf8, 0xf6, 0x0e, 0xf9, 0x45, 0xfb, 0x8d, 0xfd, 0xe1, 0xff, 0x33, 0x02, 0x7f, 0x04, 0xaf, 0x06, 0xcf, 0x08, 0x5e, 0x0a, 0x76, 0x0b, 0x86, 0x0c, 0x5f, 0x0d, 0x34, 0x0e, 0xcf, 0x0e, 0x56, 0x0f, 0x98, 0x0f, 0xce, 0x0f, 0xa7, 0x0f, 0x88, 0x0f, 0xe4, 0x0e, 0x5f, 0x0f, 0xbd, 0x11, 0x1a, 0x12, 0x4b, 0x11, 0xd7, 0x0f, 0x00, 0x0e, 0xf0, 0x0b, 0xaf, 0x09, 0x60, 0x07, 0xfe, 0x04, 0x93, 0x02, 0x31, 0x00, 0xdb, 0xfd, 0xa8, 0xfb, 0x8c, 0xf9, 0x97, 0xf7, 0xd6, 0xf5, 0x49, 0xf4, 0xf9, 0xf2, 0xe0, 0xf1, 0x08, 0xf1, 0x6e, 0xf0, 0x17, 0xf0, 0x22, 0xf0, 0x53, 0xf3, 0x3f, 0xf6, 0x5b, 0xf7, 0x29, 0xf8, 0xa5, 0xf8, 0x16, 0xf9, 0x00, 0xf9, 0x05, 0xf9, 0x32, 0xf9, 0x8d, 0xf9, 0x08, 0xfa, 0xa6, 0xfa, 0x6e, 0xfb, 0x51, 0xfc, 0x43, 0xfd, 0x49, 0xfe, 0x5c, 0xff, 0x74, 0x00, 0x88, 0x01, 0x9f, 0x02, 0xa3, 0x03, 0x9a, 0x04, 0x80, 0x05, 0x58, 0x06, 0x10, 0x07, 0xac, 0x07, 0x37, 0x08, 0x89, 0x08, 0xe0, 0x08, 0xee, 0x08, 0x3d, 0x0b, 0xa4, 0x0d, 0xfa, 0x0d, 0xaf, 0x0d, 0xc7, 0x0c, 0xaa, 0x0b, 0x49, 0x0a, 0xc9, 0x08, 0x2b, 0x07, 0x82, 0x05, 0xbf, 0x03, 0x03, 0x02, 0x4d, 0x00, 0x52, 0xfe, 0x17, 0xfc, 0x15, 0xfa, 0x48, 0xf8, 0xb6, 0xf6, 0x60, 0xf5, 0x4c, 0xf4, 0x7a, 0xf3, 0xe9, 0xf2, 0x9b, 0xf2, 0x8a, 0xf2, 0xb8, 0xf2, 0x1c, 0xf3, 0xbf, 0xf3, 0x88, 0xf4, 0x8a, 0xf5, 0x61, 0xf6, 0x01, 0xf7, 0xdc, 0xf7, 0xe5, 0xf8, 0x19, 0xfa, 0x6e, 0xfb, 0xdd, 0xfc, 0x5e, 0xfe, 0xed, 0xff, 0x7c, 0x01, 0xff, 0x02, 0x82, 0x04, 0xf0, 0x05, 0x4c, 0x07, 0x85, 0x08, 0x98, 0x09, 0x8a, 0x0a, 0x50, 0x0b, 0xef, 0x0b, 0x80, 0x0c, 0xad, 0x0f, 0xea, 0x11, 0x41, 0x12, 0xc3, 0x11, 0x54, 0x11, 0xdf, 0x12, 0xcb, 0x12, 0x5e, 0x11, 0x4e, 0x0f, 0xda, 0x0c, 0x2e, 0x0a, 0x58, 0x07, 0x7f, 0x04, 0xa3, 0x01, 0xd9, 0xfe, 0x1d, 0xfc, 0x84, 0xf9, 0x21, 0xf7, 0xee, 0xf4, 0xf7, 0xf2, 0x41, 0xf1, 0xd1, 0xef, 0xac, 0xee, 0xce, 0xed, 0x44, 0xed, 0x02, 0xed, 0x11, 0xed, 0x67, 0xed, 0x03, 0xee, 0xe0, 0xee, 0xff, 0xef, 0x4f, 0xf1, 0xd1, 0xf2, 0x71, 0xf4, 0xbc, 0xf5, 0x11, 0xf7, 0x99, 0xf8, 0x40, 0xfa, 0x0b, 0xfc, 0xe7, 0xfd, 0xcf, 0xff, 0xb4, 0x01, 0x95, 0x03, 0x12, 0x05, 0x2b, 0x06, 0x56, 0x07, 0x68, 0x08, 0x75, 0x09, 0x67, 0x0a, 0x3c, 0x0b, 0xf7, 0x0b, 0x89, 0x0c, 0xfe, 0x0c, 0x42, 0x0d, 0x67, 0x0d, 0x49, 0x0d, 0x28, 0x0d, 0xa4, 0x0c, 0xf4, 0x0d, 0xa7, 0x0f, 0x77, 0x0f, 0x9f, 0x0e, 0x37, 0x0d, 0x96, 0x0b, 0xb8, 0x09, 0xc4, 0x07, 0xb7, 0x05, 0xa1, 0x03, 0x85, 0x01, 0x6e, 0xff, 0x71, 0xfd, 0x7d, 0xfb, 0xbc, 0xf9, 0x15, 0xf8, 0x9f, 0xf6, 0x51, 0xf5, 0x39, 0xf4, 0x52, 0xf3, 0xd8, 0xf2, 0x23, 0xf5, 0xfa, 0xf6, 0x63, 0xf7, 0x91, 0xf7, 0x80, 0xf7, 0x91, 0xf7, 0x99, 0xf7, 0xd9, 0xf7, 0xd9, 0xf7, 0xb1, 0xf7, 0xb0, 0xf7, 0xe2, 0xf7, 0x48, 0xf8, 0xd5, 0xf8, 0x90, 0xf9, 0x68, 0xfa, 0x5d, 0xfb, 0x69, 0xfc, 0x87, 0xfd, 0xb1, 0xfe, 0xe1, 0xff, 0x10, 0x01, 0x3d, 0x02, 0x55, 0x03, 0x67, 0x04, 0x63, 0x05, 0x56, 0x06, 0x1f, 0x07, 0xd7, 0x07, 0x5f, 0x08, 0xe0, 0x08, 0x15, 0x09, 0xb9, 0x09, 0x5f, 0x0c, 0xc9, 0x0d, 0xe2, 0x0d, 0x6a, 0x0d, 0x86, 0x0c, 0x6f, 0x0b, 0x16, 0x0a, 0xa7, 0x08, 0x10, 0x07, 0x7b, 0x05, 0x77, 0x03, 0x40, 0x01, 0x27, 0xff, 0x2b, 0xfd, 0x5a, 0xfb, 0xb4, 0xf9, 0x3d, 0xf8, 0xf9, 0xf6, 0xea, 0xf5, 0x14, 0xf5, 0x77, 0xf4, 0x12, 0xf4, 0xe6, 0xf3, 0xef, 0xf3, 0x28, 0xf4, 0x94, 0xf4, 0x31, 0xf5, 0xf7, 0xf5, 0xde, 0xf6, 0x79, 0xf7, 0x10, 0xf8, 0xe4, 0xf8, 0xd6, 0xf9, 0xf1, 0xfa, 0x29, 0xfc, 0x75, 0xfd, 0xc6, 0xfe, 0x26, 0x00, 0x85, 0x01, 0xe7, 0x02, 0x37, 0x04, 0x7e, 0x05, 0xa7, 0x06, 0xbb, 0x07, 0xa1, 0x08, 0x9e, 0x09, 0xda, 0x0c, 0x62, 0x0f, 0x13, 0x10, 0x45, 0x10, 0xbf, 0x0f, 0x22, 0x0f, 0xf0, 0x0d, 0x25, 0x0e, 0x1f, 0x0f, 0x5f, 0x0e, 0xe2, 0x0c, 0xe5, 0x0a, 0xba, 0x08, 0x5f, 0x06, 0x00, 0x04, 0x94, 0x01, 0x39, 0xff, 0xe9, 0xfc, 0xb5, 0xfa, 0xad, 0xf8, 0xca, 0xf6, 0x1e, 0xf5, 0xa7, 0xf3, 0x69, 0xf2, 0x6c, 0xf1, 0xb0, 0xf0, 0x30, 0xf0, 0xf6, 0xef, 0xfc, 0xef, 0x3f, 0xf0, 0xbf, 0xf0, 0x79, 0xf1, 0x61, 0xf2, 0x80, 0xf3, 0xc1, 0xf4, 0x2f, 0xf6, 0x84, 0xf7, 0x94, 0xf8, 0xc8, 0xf9, 0x1c, 0xfb, 0x8d, 0xfc, 0x0c, 0xfe, 0x9f, 0xff, 0xdc, 0x00, 0xd8, 0x01, 0xed, 0x02, 0x07, 0x04, 0x27, 0x05, 0x3b, 0x06, 0x4b, 0x07, 0x41, 0x08, 0x20, 0x09, 0xe6, 0x09, 0x8c, 0x0a, 0x18, 0x0b, 0x78, 0x0b, 0xb9, 0x0b, 0xc9, 0x0b, 0xbe, 0x0b, 0x76, 0x0b, 0x62, 0x0b, 0x2a, 0x0d, 0x07, 0x0e, 0x94, 0x0d, 0xa9, 0x0c, 0x4f, 0x0b, 0xca, 0x09, 0x12, 0x08, 0x4c, 0x06, 0x6a, 0x04, 0x89, 0x02, 0xa1, 0x00, 0xcd, 0xfe, 0x07, 0xfd, 0x5a, 0xfb, 0xc9, 0xf9, 0x61, 0xf8, 0x11, 0xf7, 0x30, 0xf6, 0xba, 0xf7, 0xcc, 0xf8, 0xa5, 0xf8, 0x49, 0xf8, 0xbb, 0xf7, 0x51, 0xf7, 0xe7, 0xf6, 0xb3, 0xf6, 0x91, 0xf6, 0x9b, 0xf6, 0xbf, 0xf6, 0xa8, 0xf6, 0x90, 0xf6, 0xbc, 0xf6, 0x11, 0xf7, 0xa0, 0xf7, 0x51, 0xf8, 0x2c, 0xf9, 0x28, 0xfa, 0x3e, 0xfb, 0x69, 0xfc, 0xa3, 0xfd, 0xea, 0xfe, 0x31, 0x00, 0x75, 0x01, 0xaf, 0x02, 0xdb, 0x03, 0xfc, 0x04, 0xff, 0x05, 0xf3, 0x06, 0xbb, 0x07, 0x7a, 0x08, 0xf8, 0x08, 0x80, 0x09, 0x98, 0x09, 0xf9, 0x0a, 0x47, 0x0d, 0xe7, 0x0d, 0xca, 0x0d, 0x19, 0x0d, 0x2d, 0x0c, 0xf7, 0x0a, 0xa4, 0x09, 0xdb, 0x07, 0xcf, 0x05, 0xc9, 0x03, 0xc9, 0x01, 0xe6, 0xff, 0x16, 0xfe, 0x69, 0xfc, 0xdc, 0xfa, 0x7a, 0xf9, 0x40, 0xf8, 0x38, 0xf7, 0x5f, 0xf6, 0xb1, 0xf5, 0x39, 0xf5, 0xf4, 0xf4, 0xdc, 0xf4, 0xfa, 0xf4, 0x40, 0xf5, 0xb7, 0xf5, 0x4c, 0xf6, 0x10, 0xf7, 0xd0, 0xf7, 0x48, 0xf8, 0xe6, 0xf8, 0xb0, 0xf9, 0x98, 0xfa, 0x9c, 0xfb, 0xb9, 0xfc, 0xe5, 0xfd, 0x2c, 0xff, 0x67, 0x00, 0xaf, 0x01, 0xe7, 0x02, 0x1f, 0x04, 0x36, 0x05, 0x7b, 0x06, 0xdd, 0x09, 0x6f, 0x0c, 0x78, 0x0d, 0xfe, 0x0d, 0xf7, 0x0d, 0xbe, 0x0d, 0x31, 0x0d, 0x80, 0x0c, 0x98, 0x0b, 0xa2, 0x0a, 0x68, 0x0b, 0xc6, 0x0b, 0xca, 0x0a, 0x62, 0x09, 0x9a, 0x07, 0xba, 0x05, 0xb5, 0x03, 0xb7, 0x01, 0xb4, 0xff, 0xc3, 0xfd, 0xe1, 0xfb, 0x20, 0xfa, 0x84, 0xf8, 0x12, 0xf7, 0xcb, 0xf5, 0xb8, 0xf4, 0xd7, 0xf3, 0x29, 0xf3, 0xb9, 0xf2, 0x7b, 0xf2, 0x79, 0xf2, 0xa4, 0xf2, 0x0b, 0xf3, 0x9f, 0xf3, 0x61, 0xf4, 0x46, 0xf5, 0x53, 0xf6, 0x80, 0xf7, 0xc5, 0xf8, 0xca, 0xf9, 0xb2, 0xfa, 0xc0, 0xfb, 0xdd, 0xfc, 0xc9, 0xfd, 0x82, 0xfe, 0x68, 0xff, 0x5e, 0x00, 0x64, 0x01, 0x75, 0x02, 0x89, 0x03, 0x9e, 0x04, 0xa8, 0x05, 0xa4, 0x06, 0x8e, 0x07, 0x59, 0x08, 0x10, 0x09, 0xa5, 0x09, 0x1f, 0x0a, 0x6d, 0x0a, 0xa8, 0x0a, 0xa2, 0x0a, 0x9f, 0x0a, 0x35, 0x0a, 0xce, 0x0a, 0x77, 0x0c, 0xa9, 0x0c, 0x1f, 0x0c, 0x15, 0x0b, 0xd1, 0x09, 0x54, 0x08, 0xbb, 0x06, 0x0f, 0x05, 0x5d, 0x03, 0xa3, 0x01, 0xed, 0xff, 0x40, 0xfe, 0xab, 0xfc, 0x21, 0xfb, 0xfd, 0xf9, 0xfa, 0xfa, 0x79, 0xfb, 0xdd, 0xfa, 0x0d, 0xfa, 0x16, 0xf9, 0x39, 0xf8, 0x68, 0xf7, 0xc0, 0xf6, 0x38, 0xf6, 0xda, 0xf5, 0xa1, 0xf5, 0x93, 0xf5, 0xb3, 0xf5, 0xda, 0xf5, 0xd2, 0xf5, 0xee, 0xf5, 0x48, 0xf6, 0xd1, 0xf6, 0x89, 0xf7, 0x69, 0xf8, 0x6a, 0xf9, 0x89, 0xfa, 0xc1, 0xfb, 0x0b, 0xfd, 0x60, 0xfe, 0xb7, 0xff, 0x0c, 0x01, 0x5d, 0x02, 0xa1, 0x03, 0xcf, 0x04, 0xec, 0x05, 0xf2, 0x06, 0xd3, 0x07, 0x9d, 0x08, 0x3e, 0x09, 0xb7, 0x09, 0x0f, 0x0a, 0x4d, 0x0a, 0x31, 0x0c, 0xb8, 0x0d, 0xd9, 0x0d, 0x7c, 0x0d, 0x9c, 0x0c, 0x4e, 0x0b, 0x8c, 0x09, 0xce, 0x07, 0xf7, 0x05, 0x2b, 0x04, 0x5d, 0x02, 0x9b, 0x00, 0xf3, 0xfe, 0x5d, 0xfd, 0xe5, 0xfb, 0x91, 0xfa, 0x5e, 0xf9, 0x51, 0xf8, 0x70, 0xf7, 0xbb, 0xf6, 0x34, 0xf6, 0xd4, 0xf5, 0xa6, 0xf5, 0xa1, 0xf5, 0xc9, 0xf5, 0x19, 0xf6, 0x94, 0xf6, 0x2e, 0xf7, 0xea, 0xf7, 0x7d, 0xf8, 0xf1, 0xf8, 0x89, 0xf9, 0x4c, 0xfa, 0x2a, 0xfb, 0x2b, 0xfc, 0x37, 0xfd, 0x5b, 0xfe, 0x84, 0xff, 0xb2, 0x00, 0xcf, 0x01, 0x3d, 0x03, 0xb3, 0x06, 0x45, 0x09, 0x7f, 0x0a, 0x41, 0x0b, 0x97, 0x0b, 0xb7, 0x0b, 0x97, 0x0b, 0x4f, 0x0b, 0xd9, 0x0a, 0x35, 0x0a, 0x7f, 0x09, 0x81, 0x08, 0x25, 0x08, 0x2d, 0x09, 0x15, 0x09, 0x29, 0x08, 0xdc, 0x06, 0x57, 0x05, 0xb7, 0x03, 0x09, 0x02, 0x5f, 0x00, 0xb8, 0xfe, 0x21, 0xfd, 0x9c, 0xfb, 0x38, 0xfa, 0xf4, 0xf8, 0xd3, 0xf7, 0xdc, 0xf6, 0x0f, 0xf6, 0x6f, 0xf5, 0x00, 0xf5, 0xbe, 0xf4, 0xa6, 0xf4, 0xc3, 0xf4, 0x07, 0xf5, 0x74, 0xf5, 0x0b, 0xf6, 0xbf, 0xf6, 0x99, 0xf7, 0x86, 0xf8, 0x91, 0xf9, 0x9d, 0xfa, 0x5d, 0xfb, 0xcc, 0xfb, 0x35, 0xfc, 0xc5, 0xfc, 0x79, 0xfd, 0x4b, 0xfe, 0x3b, 0xff, 0x31, 0x00, 0x3c, 0x01, 0x49, 0x02, 0x53, 0x03, 0x5e, 0x04, 0x5a, 0x05, 0x4b, 0x06, 0x1f, 0x07, 0xdb, 0x07, 0x7f, 0x08, 0x06, 0x09, 0x6e, 0x09, 0xad, 0x09, 0xd1, 0x09, 0xce, 0x09, 0xb0, 0x09, 0x5f, 0x09, 0x90, 0x0a, 0xbe, 0x0b, 0x8a, 0x0b, 0xe2, 0x0a, 0xcf, 0x09, 0x8f, 0x08, 0x26, 0x07, 0xa6, 0x05, 0x13, 0x04, 0x7b, 0x02, 0xe2, 0x00, 0x41, 0xff, 0x03, 0xfe, 0xae, 0xfe, 0xbd, 0xfe, 0xcb, 0xfd, 0xa1, 0xfc, 0x4e, 0xfb, 0x16, 0xfa, 0xe1, 0xf8, 0xd2, 0xf7, 0xe6, 0xf6, 0x22, 0xf6, 0x83, 0xf5, 0x16, 0xf5, 0xd7, 0xf4, 0xc7, 0xf4, 0xe1, 0xf4, 0x2a, 0xf5, 0x5a, 0xf5, 0x78, 0xf5, 0xd1, 0xf5, 0x5c, 0xf6, 0x19, 0xf7, 0xfe, 0xf7, 0x08, 0xf9, 0x2e, 0xfa, 0x71, 0xfb, 0xc3, 0xfc, 0x22, 0xfe, 0x86, 0xff, 0xe9, 0x00, 0x45, 0x02, 0x99, 0x03, 0xd3, 0x04, 0xf8, 0x05, 0x07, 0x07, 0xfb, 0x07, 0xc0, 0x08, 0x75, 0x09, 0xf1, 0x09, 0x5a, 0x0a, 0x70, 0x0a, 0x0f, 0x0b, 0xff, 0x0c, 0xb7, 0x0d, 0x44, 0x0d, 0x31, 0x0c, 0xe1, 0x0a, 0x6c, 0x09, 0xdf, 0x07, 0x42, 0x06, 0x9c, 0x04, 0xf9, 0x02, 0x55, 0x01, 0xc6, 0xff, 0x43, 0xfe, 0xd9, 0xfc, 0x89, 0xfb, 0x5a, 0xfa, 0x4a, 0xf9, 0x62, 0xf8, 0x9e, 0xf7, 0x04, 0xf7, 0x94, 0xf6, 0x4e, 0xf6, 0x2f, 0xf6, 0x3b, 0xf6, 0x6e, 0xf6, 0xc9, 0xf6, 0x40, 0xf7, 0xdf, 0xf7, 0x85, 0xf8, 0xf6, 0xf8, 0x69, 0xf9, 0x14, 0xfa, 0xcd, 0xfa, 0xb5, 0xfb, 0x9f, 0xfc, 0xaf, 0xfd, 0xaf, 0xfe, 0x20, 0x00, 0x77, 0x03, 0xf7, 0x05, 0x54, 0x07, 0x41, 0x08, 0xd6, 0x08, 0x3e, 0x09, 0x65, 0x09, 0x7a, 0x09, 0x54, 0x09, 0x22, 0x09, 0xba, 0x08, 0x4c, 0x08, 0xaa, 0x07, 0x10, 0x07, 0x34, 0x06, 0x9f, 0x06, 0x8f, 0x07, 0x30, 0x07, 0x63, 0x06, 0x38, 0x05, 0xf5, 0x03, 0x95, 0x02, 0x31, 0x01, 0xcf, 0xff, 0x76, 0xfe, 0x25, 0xfd, 0xea, 0xfb, 0xca, 0xfa, 0xc5, 0xf9, 0xe4, 0xf8, 0x21, 0xf8, 0x84, 0xf7, 0x10, 0xf7, 0xbc, 0xf6, 0x98, 0xf6, 0x94, 0xf6, 0xb6, 0xf6, 0xfe, 0xf6, 0x63, 0xf7, 0xee, 0xf7, 0x8d, 0xf8, 0x4a, 0xf9, 0x19, 0xfa, 0xac, 0xfa, 0xfd, 0xfa, 0x2a, 0xfb, 0x84, 0xfb, 0x0b, 0xfc, 0xb1, 0xfc, 0x73, 0xfd, 0x55, 0xfe, 0x44, 0xff, 0x41, 0x00, 0x49, 0x01, 0x51, 0x02, 0x55, 0x03, 0x4f, 0x04, 0x3f, 0x05, 0x1e, 0x06, 0xde, 0x06, 0x8e, 0x07, 0x1e, 0x08, 0x96, 0x08, 0xe5, 0x08, 0x1d, 0x09, 0x28, 0x09, 0x26, 0x09, 0xe4, 0x08, 0xe7, 0x08, 0x4d, 0x0a, 0xee, 0x0a, 0x8f, 0x0a, 0xd4, 0x09, 0xbd, 0x08, 0x8b, 0x07, 0x26, 0x06, 0xc0, 0x04, 0x31, 0x03, 0x11, 0x02, 0xa1, 0x02, 0x53, 0x02, 0x30, 0x01, 0xc9, 0xff, 0x36, 0xfe, 0xaf, 0xfc, 0x2d, 0xfb, 0xc8, 0xf9, 0x7c, 0xf8, 0x59, 0xf7, 0x59, 0xf6, 0x8e, 0xf5, 0xee, 0xf4, 0x7b, 0xf4, 0x3c, 0xf4, 0x2f, 0xf4, 0x4f, 0xf4, 0x9a, 0xf4, 0x0c, 0xf5, 0x54, 0xf5, 0xaa, 0xf5, 0x3b, 0xf6, 0xf9, 0xf6, 0xe1, 0xf7, 0xf0, 0xf8, 0x19, 0xfa, 0x5d, 0xfb, 0xb9, 0xfc, 0x16, 0xfe, 0x83, 0xff, 0xe8, 0x00, 0x49, 0x02, 0x9f, 0x03, 0xe4, 0x04, 0x0e, 0x06, 0x23, 0x07, 0x12, 0x08, 0xe7, 0x08, 0x8d, 0x09, 0x1d, 0x0a, 0x6e, 0x0a, 0xb5, 0x0a, 0x9f, 0x0a, 0x50, 0x0b, 0x74, 0x0c, 0x4e, 0x0c, 0xaa, 0x0b, 0x9e, 0x0a, 0x68, 0x09, 0x0d, 0x08, 0x9b, 0x06, 0x20, 0x05, 0x9b, 0x03, 0x19, 0x02, 0x9a, 0x00, 0x2a, 0xff, 0xc9, 0xfd, 0x81, 0xfc, 0x4c, 0xfb, 0x3a, 0xfa, 0x46, 0xf9, 0x78, 0xf8, 0xcc, 0xf7, 0x49, 0xf7, 0xe9, 0xf6, 0xb1, 0xf6, 0xa1, 0xf6, 0xb7, 0xf6, 0xf1, 0xf6, 0x4b, 0xf7, 0xc7, 0xf7, 0x62, 0xf8, 0xfd, 0xf8, 0x54, 0xf9, 0xdd, 0xf9, 0x7c, 0xfa, 0x42, 0xfb, 0x07, 0xfc, 0x55, 0xfd, 0x7a, 0x00, 0xcb, 0x02, 0x22, 0x04, 0x1e, 0x05, 0xcf, 0x05, 0x5b, 0x06, 0xc4, 0x06, 0x10, 0x07, 0x3c, 0x07, 0x52, 0x07, 0x43, 0x07, 0x26, 0x07, 0xe8, 0x06, 0xa2, 0x06, 0x3b, 0x06, 0xc8, 0x05, 0x3b, 0x05, 0xcc, 0x04, 0xdb, 0x05, 0x77, 0x06, 0x14, 0x06, 0x63, 0x05, 0x67, 0x04, 0x59, 0x03, 0x2f, 0x02, 0x0a, 0x01, 0xe4, 0xff, 0xc3, 0xfe, 0xa7, 0xfd, 0xa1, 0xfc, 0xb5, 0xfb, 0xdd, 0xfa, 0x1c, 0xfa, 0x7d, 0xf9, 0xf9, 0xf8, 0x95, 0xf8, 0x51, 0xf8, 0x32, 0xf8, 0x30, 0xf8, 0x4c, 0xf8, 0x86, 0xf8, 0xd9, 0xf8, 0x48, 0xf9, 0x7d, 0xf9, 0xa9, 0xf9, 0xfd, 0xf9, 0x74, 0xfa, 0xc6, 0xfa, 0x09, 0xfb, 0x81, 0xfb, 0x11, 0xfc, 0xcb, 0xfc, 0x99, 0xfd, 0x7b, 0xfe, 0x6f, 0xff, 0x6a, 0x00, 0x67, 0x01, 0x67, 0x02, 0x63, 0x03, 0x4f, 0x04, 0x2c, 0x05, 0xfa, 0x05, 0xac, 0x06, 0x4a, 0x07, 0xc7, 0x07, 0x30, 0x08, 0x6f, 0x08, 0x9d, 0x08, 0x97, 0x08, 0x89, 0x08, 0x32, 0x08, 0xba, 0x08, 0x19, 0x0a, 0x2f, 0x0a, 0xc5, 0x09, 0xdf, 0x08, 0xdb, 0x07, 0x8f, 0x06, 0xab, 0x05, 0x42, 0x06, 0xee, 0x05, 0xbb, 0x04, 0x3b, 0x03, 0x8e, 0x01, 0xda, 0xff, 0x21, 0xfe, 0x7d, 0xfc, 0xea, 0xfa, 0x79, 0xf9, 0x21, 0xf8, 0xfa, 0xf6, 0xfc, 0xf5, 0x30, 0xf5, 0x91, 0xf4, 0x21, 0xf4, 0xeb, 0xf3, 0xde, 0xf3, 0x07, 0xf4, 0x56, 0xf4, 0xdb, 0xf4, 0x63, 0xf5, 0xc7, 0xf5, 0x57, 0xf6, 0x16, 0xf7, 0xfc, 0xf7, 0x08, 0xf9, 0x34, 0xfa, 0x7a, 0xfb, 0xd1, 0xfc, 0x33, 0xfe, 0x98, 0xff, 0x00, 0x01, 0x5d, 0x02, 0xb1, 0x03, 0xf7, 0x04, 0x1c, 0x06, 0x2b, 0x07, 0x1a, 0x08, 0xe9, 0x08, 0x92, 0x09, 0x16, 0x0a, 0x6e, 0x0a, 0x5a, 0x0a, 0xfc, 0x09, 0xad, 0x09, 0xc4, 0x0a, 0x76, 0x0b, 0x1e, 0x0b, 0x6a, 0x0a, 0x61, 0x09, 0x3f, 0x08, 0xec, 0x06, 0x96, 0x05, 0x2e, 0x04, 0xc3, 0x02, 0x58, 0x01, 0xf8, 0xff, 0x9d, 0xfe, 0x5b, 0xfd, 0x29, 0xfc, 0x11, 0xfb, 0x15, 0xfa, 0x3a, 0xf9, 0x81, 0xf8, 0xe9, 0xf7, 0x7b, 0xf7, 0x29, 0xf7, 0x03, 0xf7, 0xfe, 0xf6, 0x1c, 0xf7, 0x5b, 0xf7, 0xc7, 0xf7, 0x41, 0xf8, 0xe6, 0xf8, 0x52, 0xf9, 0xbc, 0xf9, 0x34, 0xfa, 0x3d, 0xfb, 0x10, 0xfe, 0x19, 0x00, 0x46, 0x01, 0x2f, 0x02, 0xdd, 0x02, 0x73, 0x03, 0xf3, 0x03, 0x60, 0x04, 0xbb, 0x04, 0x08, 0x05, 0x3f, 0x05, 0x60, 0x05, 0x73, 0x05, 0x73, 0x05, 0x67, 0x05, 0x44, 0x05, 0x1b, 0x05, 0xcf, 0x04, 0x8f, 0x04, 0x13, 0x04, 0x4f, 0x04, 0xa2, 0x05, 0xeb, 0x05, 0x9b, 0x05, 0xfc, 0x04, 0x2b, 0x04, 0x47, 0x03, 0x4d, 0x02, 0x51, 0x01, 0x55, 0x00, 0x5c, 0xff, 0x66, 0xfe, 0x81, 0xfd, 0xaf, 0xfc, 0xf0, 0xfb, 0x45, 0xfb, 0xb5, 0xfa, 0x38, 0xfa, 0xd9, 0xf9, 0x95, 0xf9, 0x6c, 0xf9, 0x5d, 0xf9, 0x6a, 0xf9, 0x41, 0xf9, 0x15, 0xf9, 0x18, 0xf9, 0x3e, 0xf9, 0x8d, 0xf9, 0xfc, 0xf9, 0x7c, 0xfa, 0xc1, 0xfa, 0x21, 0xfb, 0xa5, 0xfb, 0x47, 0xfc, 0x07, 0xfd, 0xdd, 0xfd, 0xc1, 0xfe, 0xb0, 0xff, 0xa3, 0x00, 0x99, 0x01, 0x8b, 0x02, 0x7b, 0x03, 0x56, 0x04, 0x27, 0x05, 0xe0, 0x05, 0x83, 0x06, 0x0e, 0x07, 0x7c, 0x07, 0xd3, 0x07, 0x02, 0x08, 0x1f, 0x08, 0x0f, 0x08, 0xfa, 0x07, 0xb4, 0x07, 0xcc, 0x08, 0xaf, 0x09, 0x8d, 0x09, 0xe7, 0x08, 0x6f, 0x08, 0x4e, 0x09, 0x17, 0x09, 0x0f, 0x08, 0xa2, 0x06, 0xfa, 0x04, 0x3b, 0x03, 0x6d, 0x01, 0xa7, 0xff, 0xe5, 0xfd, 0x3b, 0xfc, 0xa6, 0xfa, 0x35, 0xf9, 0xe6, 0xf7, 0xc4, 0xf6, 0xcc, 0xf5, 0x06, 0xf5, 0x6e, 0xf4, 0x0c, 0xf4, 0xd3, 0xf3, 0xd3, 0xf3, 0xff, 0xf3, 0x5a, 0xf4, 0xdf, 0xf4, 0x90, 0xf5, 0x22, 0xf6, 0xaa, 0xf6, 0x69, 0xf7, 0x4a, 0xf8, 0x56, 0xf9, 0x7c, 0xfa, 0xb4, 0xfb, 0x07, 0xfd, 0x5e, 0xfe, 0xc2, 0xff, 0x1e, 0x01, 0x75, 0x02, 0xbf, 0x03, 0xf7, 0x04, 0x1e, 0x06, 0x1f, 0x07, 0x08, 0x08, 0xcd, 0x08, 0x6e, 0x09, 0x9e, 0x09, 0x9a, 0x09, 0x74, 0x09, 0x4e, 0x09, 0xe7, 0x08, 0x32, 0x09, 0x72, 0x0a, 0x99, 0x0a, 0x2f, 0x0a, 0x67, 0x09, 0x67, 0x08, 0x43, 0x07, 0x08, 0x06, 0xbe, 0x04, 0x65, 0x03, 0x0f, 0x02, 0xb5, 0x00, 0x66, 0xff, 0x27, 0xfe, 0xf5, 0xfc, 0xdc, 0xfb, 0xd9, 0xfa, 0xf2, 0xf9, 0x2d, 0xf9, 0x85, 0xf8, 0x04, 0xf8, 0x99, 0xf7, 0x5e, 0xf7, 0x42, 0xf7, 0x52, 0xf7, 0x76, 0xf7, 0xce, 0xf7, 0x29, 0xf8, 0xc2, 0xf8, 0x3c, 0xf9, 0xfe, 0xf9, 0x6b, 0xfc, 0x13, 0xfe, 0x02, 0xff, 0xb3, 0xff, 0x3d, 0x00, 0xc1, 0x00, 0x36, 0x01, 0xa8, 0x01, 0x15, 0x02, 0x7b, 0x02, 0xd5, 0x02, 0x29, 0x03, 0x75, 0x03, 0xb7, 0x03, 0xe7, 0x03, 0x13, 0x04, 0x2b, 0x04, 0x3a, 0x04, 0x34, 0x04, 0x28, 0x04, 0x0a, 0x04, 0xe7, 0x03, 0xab, 0x03, 0xb6, 0x04, 0xdb, 0x05, 0xeb, 0x05, 0xa8, 0x05, 0x12, 0x05, 0x64, 0x04, 0x93, 0x03, 0xbd, 0x02, 0xd8, 0x01, 0xf5, 0x00, 0x11, 0x00, 0x30, 0xff, 0x61, 0xfe, 0x99, 0xfd, 0xdd, 0xfc, 0x39, 0xfc, 0xa5, 0xfb, 0x29, 0xfb, 0xbe, 0xfa, 0x72, 0xfa, 0xec, 0xf9, 0x69, 0xf9, 0x18, 0xf9, 0xe6, 0xf8, 0xe4, 0xf8, 0xfd, 0xf8, 0x45, 0xf9, 0xa6, 0xf9, 0x2a, 0xfa, 0x95, 0xfa, 0xe0, 0xfa, 0x55, 0xfb, 0xe4, 0xfb, 0x95, 0xfc, 0x55, 0xfd, 0x2b, 0xfe, 0x0c, 0xff, 0xf8, 0xff, 0xe8, 0x00, 0xd0, 0x01, 0xb7, 0x02, 0x9b, 0x03, 0x67, 0x04, 0x27, 0x05, 0xcf, 0x05, 0x64, 0x06, 0xd7, 0x06, 0x3b, 0x07, 0x7a, 0x07, 0xab, 0x07, 0xaa, 0x07, 0xaf, 0x07, 0x5f, 0x07, 0xa0, 0x07, 0xcf, 0x08, 0xa7, 0x09, 0x2a, 0x0b, 0x6c, 0x0b, 0xb2, 0x0a, 0x88, 0x09, 0x0d, 0x08, 0x73, 0x06, 0xb2, 0x04, 0xed, 0x02, 0x1b, 0x01, 0x5a, 0xff, 0x97, 0xfd, 0xf9, 0xfb, 0x70, 0xfa, 0x09, 0xf9, 0xc9, 0xf7, 0xb2, 0xf6, 0xc9, 0xf5, 0x0b, 0xf5, 0x81, 0xf4, 0x26, 0xf4, 0xfb, 0xf3, 0x04, 0xf4, 0x38, 0xf4, 0x9c, 0xf4, 0x24, 0xf5, 0xdb, 0xf5, 0x9f, 0xf6, 0x3e, 0xf7, 0xee, 0xf7, 0xc9, 0xf8, 0xc5, 0xf9, 0xe2, 0xfa, 0x15, 0xfc, 0x55, 0xfd, 0xa5, 0xfe, 0xf2, 0xff, 0x42, 0x01, 0x8b, 0x02, 0xc5, 0x03, 0xf3, 0x04, 0x07, 0x06, 0xfe, 0x06, 0xd3, 0x07, 0x42, 0x08, 0x7e, 0x08, 0xae, 0x08, 0xc2, 0x08, 0xc2, 0x08, 0xa8, 0x08, 0x80, 0x08, 0x38, 0x08, 0x28, 0x09, 0x0d, 0x0a, 0xe6, 0x09, 0x62, 0x09, 0x87, 0x08, 0x90, 0x07, 0x6b, 0x06, 0x3b, 0x05, 0xf9, 0x03, 0xb1, 0x02, 0x63, 0x01, 0x1d, 0x00, 0xe1, 0xfe, 0xaf, 0xfd, 0x8f, 0xfc, 0x89, 0xfb, 0x9d, 0xfa, 0xcc, 0xf9, 0x0e, 0xf9, 0x7d, 0xf8, 0x09, 0xf8, 0xbf, 0xf7, 0x88, 0xf7, 0x88, 0xf7, 0x94, 0xf7, 0xd7, 0xf7, 0x15, 0xf8, 0x05, 0xf9, 0x84, 0xfb, 0xe9, 0xfc, 0x7d, 0xfd, 0xe3, 0xfd, 0x2d, 0xfe, 0x7f, 0xfe, 0xcf, 0xfe, 0x2c, 0xff, 0x89, 0xff, 0xef, 0xff, 0x53, 0x00, 0xbb, 0x00, 0x22, 0x01, 0x8d, 0x01, 0xf0, 0x01, 0x51, 0x02, 0xa5, 0x02, 0xf5, 0x02, 0x35, 0x03, 0x77, 0x03, 0xa1, 0x03, 0xc5, 0x03, 0xd3, 0x03, 0xe5, 0x03, 0xc9, 0x03, 0x2e, 0x04, 0xb7, 0x05, 0x58, 0x06, 0x56, 0x06, 0x06, 0x06, 0x7b, 0x05, 0xd7, 0x04, 0x16, 0x04, 0x49, 0x03, 0x73, 0x02, 0x96, 0x01, 0xb5, 0x00, 0xe0, 0xff, 0x0b, 0xff, 0x42, 0xfe, 0x85, 0xfd, 0xd5, 0xfc, 0x37, 0xfc, 0x64, 0xfb, 0x8d, 0xfa, 0xe9, 0xf9, 0x65, 0xf9, 0x0d, 0xf9, 0xd8, 0xf8, 0xce, 0xf8, 0xe1, 0xf8, 0x19, 0xf9, 0x71, 0xf9, 0xe5, 0xf9, 0x6a, 0xfa, 0xb9, 0xfa, 0x15, 0xfb, 0x99, 0xfb, 0x37, 0xfc, 0xe7, 0xfc, 0xaf, 0xfd, 0x85, 0xfe, 0x65, 0xff, 0x46, 0x00, 0x2e, 0x01, 0x0f, 0x02, 0xed, 0x02, 0xbb, 0x03, 0x7f, 0x04, 0x2a, 0x05, 0xc3, 0x05, 0x44, 0x06, 0xb3, 0x06, 0xff, 0x06, 0x3b, 0x07, 0x53, 0x07, 0x5b, 0x07, 0x32, 0x07, 0x70, 0x07, 0x1d, 0x0a, 0xf4, 0x0b, 0x15, 0x0c, 0x84, 0x0b, 0x6d, 0x0a, 0x1e, 0x09, 0x8f, 0x07, 0xf3, 0x05, 0x33, 0x04, 0x7b, 0x02, 0xb5, 0x00, 0xfd, 0xfe, 0x57, 0xfd, 0xc6, 0xfb, 0x55, 0xfa, 0xfe, 0xf8, 0xd2, 0xf7, 0xcb, 0xf6, 0xf1, 0xf5, 0x44, 0xf5, 0xc9, 0xf4, 0x79, 0xf4, 0x5e, 0xf4, 0x69, 0xf4, 0xab, 0xf4, 0x0b, 0xf5, 0x9f, 0xf5, 0x53, 0xf6, 0x2b, 0xf7, 0xf1, 0xf7, 0x99, 0xf8, 0x6a, 0xf9, 0x59, 0xfa, 0x64, 0xfb, 0x83, 0xfc, 0xb5, 0xfd, 0xe8, 0xfe, 0x28, 0x00, 0x5e, 0x01, 0x97, 0x02, 0xbb, 0x03, 0xd8, 0x04, 0xcf, 0x05, 0x6e, 0x06, 0xdc, 0x06, 0x40, 0x07, 0x9b, 0x07, 0xe2, 0x07, 0x08, 0x08, 0x2a, 0x08, 0x21, 0x08, 0x16, 0x08, 0xd3, 0x07, 0xf4, 0x07, 0x2d, 0x09, 0x8d, 0x09, 0x41, 0x09, 0xa5, 0x08, 0xc3, 0x07, 0xc6, 0x06, 0xa4, 0x05, 0x78, 0x04, 0x3f, 0x03, 0x01, 0x02, 0xbe, 0x00, 0x89, 0xff, 0x5b, 0xfe, 0x3d, 0xfd, 0x31, 0xfc, 0x35, 0xfb, 0x5d, 0xfa, 0x95, 0xf9, 0xfc, 0xf8, 0x78, 0xf8, 0x1a, 0xf8, 0xd3, 0xf7, 0xc1, 0xf7, 0xb0, 0xf7, 0x51, 0xf8, 0x6d, 0xfa, 0xb1, 0xfb, 0x69, 0xfc, 0xe1, 0xfc, 0xef, 0xfc, 0xf7, 0xfc, 0x07, 0xfd, 0x31, 0xfd, 0x65, 0xfd, 0xa9, 0xfd, 0xfd, 0xfd, 0x5b, 0xfe, 0xc7, 0xfe, 0x3f, 0xff, 0xb7, 0xff, 0x38, 0x00, 0xb9, 0x00, 0x31, 0x01, 0xaf, 0x01, 0x21, 0x02, 0x8f, 0x02, 0xed, 0x02, 0x49, 0x03, 0x93, 0x03, 0xdb, 0x03, 0xff, 0x03, 0x2f, 0x04, 0x2e, 0x04, 0x3c, 0x05, 0xa2, 0x06, 0xf4, 0x06, 0xec, 0x06, 0x88, 0x06, 0x07, 0x06, 0x5c, 0x05, 0xa3, 0x04, 0xd1, 0x03, 0xf9, 0x02, 0x17, 0x02, 0x30, 0x01, 0x50, 0x00, 0x75, 0xff, 0x9d, 0xfe, 0x91, 0xfd, 0x77, 0xfc, 0x89, 0xfb, 0xba, 0xfa, 0x0d, 0xfa, 0x89, 0xf9, 0x29, 0xf9, 0xe9, 0xf8, 0xd0, 0xf8, 0xd5, 0xf8, 0x02, 0xf9, 0x4a, 0xf9, 0xad, 0xf9, 0x34, 0xfa, 0xa2, 0xfa, 0xee, 0xfa, 0x5d, 0xfb, 0xe1, 0xfb, 0x85, 0xfc, 0x39, 0xfd, 0xff, 0xfd, 0xd3, 0xfe, 0xaa, 0xff, 0x89, 0x00, 0x63, 0x01, 0x3d, 0x02, 0x05, 0x03, 0xcf, 0x03, 0x7f, 0x04, 0x1f, 0x05, 0xab, 0x05, 0x26, 0x06, 0x7f, 0x06, 0xcf, 0x06, 0xe3, 0x06, 0x7c, 0x07, 0x3f, 0x09, 0xe2, 0x09, 0x19, 0x0a, 0x27, 0x0b, 0x60, 0x0b, 0xc1, 0x0a, 0xbf, 0x09, 0x72, 0x08, 0x03, 0x07, 0x6c, 0x05, 0xcb, 0x03, 0x1f, 0x02, 0x79, 0x00, 0xde, 0xfe, 0x4f, 0xfd, 0xd1, 0xfb, 0x76, 0xfa, 0x3d, 0xf9, 0x1d, 0xf8, 0x2e, 0xf7, 0x64, 0xf6, 0xc3, 0xf5, 0x51, 0xf5, 0x0b, 0xf5, 0xf7, 0xf4, 0x09, 0xf5, 0x49, 0xf5, 0xb1, 0xf5, 0x3a, 0xf6, 0xe9, 0xf6, 0xba, 0xf7, 0x9e, 0xf8, 0x52, 0xf9, 0x0d, 0xfa, 0xe5, 0xfa, 0xd8, 0xfb, 0xe3, 0xfc, 0xf5, 0xfd, 0x17, 0xff, 0x3a, 0x00, 0x5b, 0x01, 0x75, 0x02, 0x83, 0x03, 0x3a, 0x04, 0xcb, 0x04, 0x63, 0x05, 0xe7, 0x05, 0x5f, 0x06, 0xce, 0x06, 0x22, 0x07, 0x6c, 0x07, 0x97, 0x07, 0xb4, 0x07, 0xaf, 0x07, 0xa3, 0x07, 0x5f, 0x07, 0x02, 0x08, 0x10, 0x09, 0x14, 0x09, 0xb4, 0x08, 0xfb, 0x07, 0x1a, 0x07, 0x17, 0x06, 0xfe, 0x04, 0xd5, 0x03, 0x9f, 0x02, 0x6c, 0x01, 0x37, 0x00, 0x0c, 0xff, 0xe5, 0xfd, 0xd7, 0xfc, 0xda, 0xfb, 0xf6, 0xfa, 0x28, 0xfa, 0x7d, 0xf9, 0xe4, 0xf8, 0x81, 0xf8, 0x18, 0xf8, 0x70, 0xf8, 0x22, 0xfa, 0x09, 0xfb, 0x6d, 0xfb, 0xa5, 0xfb, 0xc9, 0xfb, 0xf6, 0xfb, 0x00, 0xfc, 0xda, 0xfb, 0xd2, 0xfb, 0xdc, 0xfb, 0x00, 0xfc, 0x41, 0xfc, 0x91, 0xfc, 0xf9, 0xfc, 0x6f, 0xfd, 0xf5, 0xfd, 0x84, 0xfe, 0x1b, 0xff, 0xba, 0xff, 0x59, 0x00, 0xf8, 0x00, 0x8a, 0x01, 0x1f, 0x02, 0xa7, 0x02, 0x27, 0x03, 0x99, 0x03, 0x00, 0x04, 0x52, 0x04, 0x97, 0x04, 0xc4, 0x04, 0x0c, 0x05, 0x8a, 0x06, 0x86, 0x07, 0xb2, 0x07, 0x8b, 0x07, 0x1f, 0x07, 0x8f, 0x06, 0xdb, 0x05, 0x13, 0x05, 0x37, 0x04, 0x51, 0x03, 0x63, 0x02, 0x67, 0x01, 0x32, 0x00, 0xf4, 0xfe, 0xcb, 0xfd, 0xbf, 0xfc, 0xd1, 0xfb, 0x01, 0xfb, 0x52, 0xfa, 0xc1, 0xf9, 0x59, 0xf9, 0x0e, 0xf9, 0xe5, 0xf8, 0xe1, 0xf8, 0xfc, 0xf8, 0x32, 0xf9, 0x84, 0xf9, 0xf5, 0xf9, 0x76, 0xfa, 0xd9, 0xfa, 0x25, 0xfb, 0x9d, 0xfb, 0x29, 0xfc, 0xcb, 0xfc, 0x7f, 0xfd, 0x48, 0xfe, 0x11, 0xff, 0xe6, 0xff, 0xb6, 0x00, 0x8b, 0x01, 0x57, 0x02, 0x1f, 0x03, 0xd1, 0x03, 0x83, 0x04, 0x0b, 0x05, 0x9f, 0x05, 0xeb, 0x05, 0xde, 0x06, 0xcf, 0x08, 0xbc, 0x09, 0xe9, 0x09, 0xca, 0x09, 0x41, 0x09, 0x49, 0x09, 0xfa, 0x09, 0xad, 0x09, 0xde, 0x08, 0xb8, 0x07, 0x64, 0x06, 0xf3, 0x04, 0x75, 0x03, 0xea, 0x01, 0x67, 0x00, 0xe8, 0xfe, 0x77, 0xfd, 0x19, 0xfc, 0xd9, 0xfa, 0xb0, 0xf9, 0xac, 0xf8, 0xcc, 0xf7, 0x10, 0xf7, 0x7e, 0xf6, 0x17, 0xf6, 0xd6, 0xf5, 0xc1, 0xf5, 0xd6, 0xf5, 0x11, 0xf6, 0x73, 0xf6, 0xf2, 0xf6, 0x9a, 0xf7, 0x56, 0xf8, 0x35, 0xf9, 0x0d, 0xfa, 0xb5, 0xfa, 0x71, 0xfb, 0x43, 0xfc, 0x2f, 0xfd, 0x27, 0xfe, 0x27, 0xff, 0x2c, 0x00, 0x27, 0x01, 0xd9, 0x01, 0x7b, 0x02, 0x23, 0x03, 0xcb, 0x03, 0x6e, 0x04, 0x08, 0x05, 0x93, 0x05, 0x10, 0x06, 0x7e, 0x06, 0xd7, 0x06, 0x18, 0x07, 0x47, 0x07, 0x5b, 0x07, 0x5b, 0x07, 0x3e, 0x07, 0x23, 0x07, 0x2a, 0x08, 0xd2, 0x08, 0xa5, 0x08, 0x29, 0x08, 0x64, 0x07, 0x80, 0x06, 0x78, 0x05, 0x64, 0x04, 0x3d, 0x03, 0x11, 0x02, 0xe0, 0x00, 0xb9, 0xff, 0x96, 0xfe, 0x85, 0xfd, 0x7d, 0xfc, 0x9c, 0xfb, 0xb9, 0xfa, 0x10, 0xfa, 0x50, 0xf9, 0x6e, 0xf9, 0xb5, 0xfa, 0x30, 0xfb, 0x3e, 0xfb, 0x21, 0xfb, 0x01, 0xfb, 0xe2, 0xfa, 0xd1, 0xfa, 0xcd, 0xfa, 0xde, 0xfa, 0xc8, 0xfa, 0xa1, 0xfa, 0xa2, 0xfa, 0xc1, 0xfa, 0x02, 0xfb, 0x58, 0xfb, 0xcd, 0xfb, 0x4f, 0xfc, 0xe7, 0xfc, 0x8f, 0xfd, 0x3f, 0xfe, 0xf9, 0xfe, 0xb3, 0xff, 0x73, 0x00, 0x30, 0x01, 0xdf, 0x01, 0x8d, 0x02, 0x29, 0x03, 0xc3, 0x03, 0x43, 0x04, 0xbe, 0x04, 0x12, 0x05, 0x6b, 0x05, 0x87, 0x05, 0x47, 0x06, 0xca, 0x07, 0x57, 0x08, 0x62, 0x08, 0x18, 0x08, 0x97, 0x07, 0xef, 0x06, 0x2a, 0x06, 0x50, 0x05, 0x5b, 0x04, 0x17, 0x03, 0xc4, 0x01, 0x82, 0x00, 0x53, 0xff, 0x2e, 0xfe, 0x29, 0xfd, 0x37, 0xfc, 0x62, 0xfb, 0xac, 0xfa, 0x14, 0xfa, 0x9a, 0xf9, 0x45, 0xf9, 0x0d, 0xf9, 0xf6, 0xf8, 0xf9, 0xf8, 0x21, 0xf9, 0x68, 0xf9, 0xbe, 0xf9, 0x39, 0xfa, 0xb2, 0xfa, 0xfd, 0xfa, 0x5d, 0xfb, 0xd2, 0xfb, 0x61, 0xfc, 0x09, 0xfd, 0xbf, 0xfd, 0x7c, 0xfe, 0x45, 0xff, 0x14, 0x00, 0xe6, 0x00, 0xb1, 0x01, 0x81, 0x02, 0x2d, 0x03, 0xef, 0x03, 0x6c, 0x04, 0x9a, 0x05, 0xc7, 0x07, 0xda, 0x08, 0x52, 0x09, 0x6a, 0x09, 0x40, 0x09, 0xe1, 0x08, 0x68, 0x08, 0xc2, 0x07, 0x1f, 0x08, 0x71, 0x08, 0xdb, 0x07, 0xfb, 0x06, 0xd2, 0x05, 0x8e, 0x04, 0x35, 0x03, 0xd9, 0x01, 0x74, 0x00, 0x1d, 0xff, 0xcb, 0xfd, 0x89, 0xfc, 0x64, 0xfb, 0x55, 0xfa, 0x68, 0xf9, 0x99, 0xf8, 0xea, 0xf7, 0x63, 0xf7, 0x01, 0xf7, 0xc8, 0xf6, 0xae, 0xf6, 0xc1, 0xf6, 0xf2, 0xf6, 0x47, 0xf7, 0xbe, 0xf7, 0x51, 0xf8, 0xfd, 0xf8, 0xc1, 0xf9, 0x9d, 0xfa, 0x51, 0xfb, 0xf0, 0xfb, 0xa3, 0xfc, 0x67, 0xfd, 0x43, 0xfe, 0x14, 0xff, 0xae, 0xff, 0x40, 0x00, 0xe3, 0x00, 0x90, 0x01, 0x41, 0x02, 0xf3, 0x02, 0x9f, 0x03, 0x47, 0x04, 0xe2, 0x04, 0x6a, 0x05, 0xea, 0x05, 0x4e, 0x06, 0xa7, 0x06, 0xdf, 0x06, 0x0f, 0x07, 0x13, 0x07, 0x17, 0x07, 0xdf, 0x06, 0x22, 0x07, 0x3d, 0x08, 0x7c, 0x08, 0x36, 0x08, 0x9b, 0x07, 0xd4, 0x06, 0xe3, 0x05, 0xdf, 0x04, 0xc3, 0x03, 0xa5, 0x02, 0x7b, 0x01, 0x5b, 0x00, 0x38, 0xff, 0x2a, 0xfe, 0x19, 0xfd, 0x39, 0xfc, 0x40, 0xfb, 0x1e, 0xfb, 0x11, 0xfc, 0x23, 0xfc, 0xe4, 0xfb, 0x6e, 0xfb, 0x02, 0xfb, 0x98, 0xfa, 0x40, 0xfa, 0xfd, 0xf9, 0xcd, 0xf9, 0xb6, 0xf9, 0xb9, 0xf9, 0xca, 0xf9, 0xaa, 0xf9, 0xa9, 0xf9, 0xc9, 0xf9, 0x08, 0xfa, 0x6d, 0xfa, 0xe5, 0xfa, 0x79, 0xfb, 0x23, 0xfc, 0xdd, 0xfc, 0xa9, 0xfd, 0x79, 0xfe, 0x50, 0xff, 0x26, 0x00, 0xfe, 0x00, 0xcf, 0x01, 0x93, 0x02, 0x4d, 0x03, 0xfb, 0x03, 0x9b, 0x04, 0x22, 0x05, 0x97, 0x05, 0xf3, 0x05, 0x3e, 0x06, 0x64, 0x06, 0x8b, 0x07, 0xb7, 0x08, 0xf2, 0x08, 0xd8, 0x08, 0x62, 0x08, 0xcb, 0x07, 0xf7, 0x06, 0xd8, 0x05, 0x93, 0x04, 0x59, 0x03, 0x1b, 0x02, 0xe5, 0x00, 0xbd, 0xff, 0xa2, 0xfe, 0x9d, 0xfd, 0xa7, 0xfc, 0xd5, 0xfb, 0x15, 0xfb, 0x72, 0xfa, 0xf0, 0xf9, 0x8d, 0xf9, 0x45, 0xf9, 0x1a, 0xf9, 0x15, 0xf9, 0x24, 0xf9, 0x55, 0xf9, 0x9e, 0xf9, 0x01, 0xfa, 0x7d, 0xfa, 0xe1, 0xfa, 0x26, 0xfb, 0x8d, 0xfb, 0x05, 0xfc, 0x9b, 0xfc, 0x43, 0xfd, 0xf1, 0xfd, 0xba, 0xfe, 0x7b, 0xff, 0x4f, 0x00, 0x0d, 0x01, 0xe4, 0x01, 0x87, 0x02, 0xeb, 0x03, 0x37, 0x06, 0x6b, 0x07, 0x1e, 0x08, 0x66, 0x08, 0x7e, 0x08, 0x62, 0x08, 0x2a, 0x08, 0xc2, 0x07, 0x4f, 0x07, 0xab, 0x06, 0x47, 0x06, 0xe3, 0x06, 0xd7, 0x06, 0x37, 0x06, 0x4f, 0x05, 0x3e, 0x04, 0x19, 0x03, 0xe1, 0x01, 0xaa, 0x00, 0x75, 0xff, 0x4c, 0xfe, 0x29, 0xfd, 0x1f, 0xfc, 0x2d, 0xfb, 0x50, 0xfa, 0x92, 0xf9, 0xf4, 0xf8, 0x72, 0xf8, 0x18, 0xf8, 0xd7, 0xf7, 0xbe, 0xf7, 0xc7, 0xf7, 0xea, 0xf7, 0x35, 0xf8, 0x91, 0xf8, 0x15, 0xf9, 0xa8, 0xf9, 0x52, 0xfa, 0x0d, 0xfb, 0xd1, 0xfb, 0x63, 0xfc, 0xef, 0xfc, 0x85, 0xfd, 0xeb, 0xfd, 0x55, 0xfe, 0xde, 0xfe, 0x74, 0xff, 0x17, 0x00, 0xca, 0x00, 0x7c, 0x01, 0x33, 0x02, 0xe7, 0x02, 0x95, 0x03, 0x3e, 0x04, 0xcf, 0x04, 0x5a, 0x05, 0xd2, 0x05, 0x2f, 0x06, 0x7e, 0x06, 0xb3, 0x06, 0xd3, 0x06, 0xd2, 0x06, 0xcb, 0x06, 0x8f, 0x06, 0x3c, 0x07, 0x1f, 0x08, 0x11, 0x08, 0xb4, 0x07, 0x07, 0x07, 0x33, 0x06, 0x42, 0x05, 0x3b, 0x04, 0x2d, 0x03, 0x0d, 0x02, 0xf8, 0x00, 0xd1, 0xff, 0xd2, 0xfe, 0xaf, 0xfd, 0x65, 0xfd, 0x04, 0xfe, 0xcd, 0xfd, 0x43, 0xfd, 0x8b, 0xfc, 0xd5, 0xfb, 0x1e, 0xfb, 0x7e, 0xfa, 0xf2, 0xf9, 0x80, 0xf9, 0x25, 0xf9, 0xe8, 0xf8, 0xc5, 0xf8, 0xc2, 0xf8, 0xe4, 0xf8, 0xf4, 0xf8, 0xf4, 0xf8, 0x14, 0xf9, 0x59, 0xf9, 0xc5, 0xf9, 0x49, 0xfa, 0xe9, 0xfa, 0xa5, 0xfb, 0x6d, 0xfc, 0x47, 0xfd, 0x2b, 0xfe, 0x18, 0xff, 0x04, 0x00, 0xf2, 0x00, 0xd6, 0x01, 0xb1, 0x02, 0x7b, 0x03, 0x3b, 0x04, 0xeb, 0x04, 0x7f, 0x05, 0x06, 0x06, 0x6b, 0x06, 0xc2, 0x06, 0xe3, 0x06, 0x3e, 0x07, 0x8a, 0x08, 0x44, 0x09, 0x47, 0x09, 0xed, 0x08, 0x11, 0x08, 0x0f, 0x07, 0xf7, 0x05, 0xd3, 0x04, 0xad, 0x03, 0x81, 0x02, 0x55, 0x01, 0x38, 0x00, 0x27, 0xff, 0x21, 0xfe, 0x33, 0xfd, 0x53, 0xfc, 0x8d, 0xfb, 0xe5, 0xfa, 0x52, 0xfa, 0xe2, 0xf9, 0x8c, 0xf9, 0x54, 0xf9, 0x35, 0xf9, 0x38, 0xf9, 0x55, 0xf9, 0x89, 0xf9, 0xda, 0xf9, 0x41, 0xfa, 0xba, 0xfa, 0x09, 0xfb, 0x51, 0xfb, 0xc1, 0xfb, 0x3f, 0xfc, 0xd7, 0xfc, 0x7d, 0xfd, 0x39, 0xfe, 0xed, 0xfe, 0xc2, 0xff, 0x67, 0x00, 0xe7, 0x01, 0x3c, 0x04, 0x8f, 0x05, 0x62, 0x06, 0xdb, 0x06, 0x2b, 0x07, 0x48, 0x07, 0x47, 0x07, 0x2b, 0x07, 0xec, 0x06, 0x9f, 0x06, 0x26, 0x06, 0xb7, 0x05, 0x0b, 0x05, 0x23, 0x05, 0xbc, 0x05, 0x7f, 0x05, 0xe7, 0x04, 0x10, 0x04, 0x23, 0x03, 0x19, 0x02, 0x10, 0x01, 0x02, 0x00, 0xfd, 0xfe, 0xff, 0xfd, 0x0b, 0xfd, 0x2f, 0xfc, 0x69, 0xfb, 0xb5, 0xfa, 0x20, 0xfa, 0xa4, 0xf9, 0x41, 0xf9, 0x01, 0xf9, 0xda, 0xf8, 0xd5, 0xf8, 0xed, 0xf8, 0x1d, 0xf9, 0x65, 0xf9, 0xc9, 0xf9, 0x42, 0xfa, 0xcd, 0xfa, 0x69, 0xfb, 0x17, 0xfc, 0xa7, 0xfc, 0xc9, 0xfc, 0xf5, 0xfc, 0x43, 0xfd, 0xb1, 0xfd, 0x30, 0xfe, 0xc6, 0xfe, 0x6b, 0xff, 0x1a, 0x00, 0xcd, 0x00, 0x87, 0x01, 0x41, 0x02, 0xf3, 0x02, 0x9f, 0x03, 0x40, 0x04, 0xce, 0x04, 0x4e, 0x05, 0xba, 0x05, 0x14, 0x06, 0x56, 0x06, 0x83, 0x06, 0x94, 0x06, 0x92, 0x06, 0x73, 0x06, 0x66, 0x06, 0x56, 0x07, 0xd8, 0x07, 0xa6, 0x07, 0x2e, 0x07, 0x70, 0x06, 0x9f, 0x05, 0xa7, 0x04, 0xad, 0x03, 0x95, 0x02, 0x91, 0x01, 0x61, 0x00, 0x0b, 0x00, 0x74, 0x00, 0x04, 0x00, 0x44, 0xff, 0x52, 0xfe, 0x59, 0xfd, 0x65, 0xfc, 0x7d, 0xfb, 0xac, 0xfa, 0xee, 0xf9, 0x4d, 0xf9, 0xce, 0xf8, 0x65, 0xf8, 0x26, 0xf8, 0x04, 0xf8, 0x04, 0xf8, 0x21, 0xf8, 0x5d, 0xf8, 0x78, 0xf8, 0x9e, 0xf8, 0xea, 0xf8, 0x59, 0xf9, 0xed, 0xf9, 0x94, 0xfa, 0x5d, 0xfb, 0x31, 0xfc, 0x19, 0xfd, 0x0c, 0xfe, 0x05, 0xff, 0x02, 0x00, 0xfd, 0x00, 0xea, 0x01, 0xd9, 0x02, 0xb1, 0x03, 0x7c, 0x04, 0x36, 0x05, 0xd7, 0x05, 0x5b, 0x06, 0xcf, 0x06, 0x18, 0x07, 0x5e, 0x07, 0x5e, 0x07, 0x12, 0x08, 0x2c, 0x09, 0x1e, 0x09, 0xae, 0x08, 0xf0, 0x07, 0x16, 0x07, 0x1c, 0x06, 0x16, 0x05, 0xff, 0x03, 0xeb, 0x02, 0xd0, 0x01, 0xb3, 0x00, 0xab, 0xff, 0xab, 0xfe, 0xb9, 0xfd, 0xdb, 0xfc, 0x0f, 0xfc, 0x5a, 0xfb, 0xbe, 0xfa, 0x40, 0xfa, 0xd9, 0xf9, 0x91, 0xf9, 0x68, 0xf9, 0x52, 0xf9, 0x5e, 0xf9, 0x84, 0xf9, 0xc0, 0xf9, 0x15, 0xfa, 0x81, 0xfa, 0xec, 0xfa, 0x30, 0xfb, 0x85, 0xfb, 0xf2, 0xfb, 0x85, 0xfc, 0x0f, 0xfd, 0xcb, 0xfd, 0x61, 0xfe, 0xef, 0xff, 0x2f, 0x02, 0x79, 0x03, 0x5b, 0x04, 0xf3, 0x04, 0x66, 0x05, 0xb0, 0x05, 0xdf, 0x05, 0xf3, 0x05, 0xf6, 0x05, 0xdb, 0x05, 0xae, 0x05, 0x6c, 0x05, 0x1e, 0x05, 0xbb, 0x04, 0x4c, 0x04, 0xdd, 0x03, 0x6a, 0x04, 0xd7, 0x04, 0x8b, 0x04, 0x04, 0x04, 0x49, 0x03, 0x7b, 0x02, 0x94, 0x01, 0xb5, 0x00, 0xcf, 0xff, 0xf4, 0xfe, 0x19, 0xfe, 0x4f, 0xfd, 0x95, 0xfc, 0xf0, 0xfb, 0x5d, 0xfb, 0xe2, 0xfa, 0x80, 0xfa, 0x35, 0xfa, 0x01, 0xfa, 0xe6, 0xf9, 0xec, 0xf9, 0x01, 0xfa, 0x2e, 0xfa, 0x75, 0xfa, 0xca, 0xfa, 0x39, 0xfb, 0xa0, 0xfb, 0xd8, 0xfb, 0x23, 0xfc, 0x57, 0xfc, 0x7f, 0xfc, 0xc7, 0xfc, 0x2b, 0xfd, 0xa7, 0xfd, 0x39, 0xfe, 0xd6, 0xfe, 0x84, 0xff, 0x34, 0x00, 0xf1, 0x00, 0xa8, 0x01, 0x5f, 0x02, 0x0d, 0x03, 0xb1, 0x03, 0x4a, 0x04, 0xcf, 0x04, 0x48, 0x05, 0xa4, 0x05, 0xf7, 0x05, 0x27, 0x06, 0x4f, 0x06, 0x53, 0x06, 0x50, 0x06, 0x14, 0x06, 0x56, 0x06, 0x4b, 0x07, 0x77, 0x07, 0x30, 0x07, 0x9f, 0x06, 0xe7, 0x05, 0x06, 0x05, 0x1f, 0x04, 0x09, 0x03, 0xd7, 0x02, 0x23, 0x03, 0x87, 0x02, 0xa8, 0x01, 0x8c, 0x00, 0x6c, 0xff, 0x45, 0xfe, 0x21, 0xfd, 0x11, 0xfc, 0x15, 0xfb, 0x34, 0xfa, 0x6c, 0xf9, 0xc0, 0xf8, 0x39, 0xf8, 0xd7, 0xf7, 0x97, 0xf7, 0x73, 0xf7, 0x79, 0xf7, 0x9e, 0xf7, 0xe4, 0xf7, 0x39, 0xf8, 0x6d, 0xf8, 0xba, 0xf8, 0x32, 0xf9, 0xc9, 0xf9, 0x79, 0xfa, 0x4a, 0xfb, 0x27, 0xfc, 0x19, 0xfd, 0x13, 0xfe, 0x12, 0xff, 0x17, 0x00, 0x16, 0x01, 0x0f, 0x02, 0x01, 0x03, 0xe3, 0x03, 0xaf, 0x04, 0x6b, 0x05, 0x10, 0x06, 0x9b, 0x06, 0x0a, 0x07, 0x5b, 0x07, 0x92, 0x07, 0x9c, 0x07, 0x56, 0x07, 0x02, 0x08, 0x87, 0x08, 0x51, 0x08, 0xda, 0x07, 0x1b, 0x07, 0x4a, 0x06, 0x57, 0x05, 0x60, 0x04, 0x57, 0x03, 0x4f, 0x02, 0x3f, 0x01, 0x3b, 0x00, 0x3e, 0xff, 0x49, 0xfe, 0x69, 0xfd, 0x97, 0xfc, 0xdd, 0xfb, 0x34, 0xfb, 0xa9, 0xfa, 0x35, 0xfa, 0xda, 0xf9, 0xa1, 0xf9, 0x7d, 0xf9, 0x76, 0xf9, 0x8c, 0xf9, 0xb0, 0xf9, 0xf9, 0xf9, 0x4c, 0xfa, 0xc1, 0xfa, 0x15, 0xfb, 0x5a, 0xfb, 0xb6, 0xfb, 0x35, 0xfc, 0xab, 0xfc, 0x18, 0xfe, 0x34, 0x00, 0x63, 0x01, 0x45, 0x02, 0xdb, 0x02, 0x5f, 0x03, 0xc1, 0x03, 0x13, 0x04, 0x52, 0x04, 0x82, 0x04, 0x97, 0x04, 0x9f, 0x04, 0x9a, 0x04, 0x86, 0x04, 0x5f, 0x04, 0x32, 0x04, 0xed, 0x03, 0xaf, 0x03, 0x47, 0x03, 0x41, 0x03, 0x1b, 0x04, 0x52, 0x04, 0x0f, 0x04, 0x95, 0x03, 0xf3, 0x02, 0x43, 0x02, 0x85, 0x01, 0xc1, 0x00, 0xfe, 0xff, 0x3f, 0xff, 0x84, 0xfe, 0xd7, 0xfd, 0x33, 0xfd, 0xa5, 0xfc, 0x27, 0xfc, 0xb4, 0xfb, 0x64, 0xfb, 0x19, 0xfb, 0xed, 0xfa, 0xd5, 0xfa, 0xd1, 0xfa, 0xe0, 0xfa, 0x09, 0xfb, 0x2d, 0xfb, 0x24, 0xfb, 0x36, 0xfb, 0x61, 0xfb, 0xac, 0xfb, 0xfc, 0xfb, 0x31, 0xfc, 0x6f, 0xfc, 0xc7, 0xfc, 0x3b, 0xfd, 0xc5, 0xfd, 0x58, 0xfe, 0xff, 0xfe, 0xb0, 0xff, 0x64, 0x00, 0x1c, 0x01, 0xd0, 0x01, 0x81, 0x02, 0x29, 0x03, 0xc5, 0x03, 0x4f, 0x04, 0xce, 0x04, 0x36, 0x05, 0x8c, 0x05, 0xcf, 0x05, 0xfb, 0x05, 0x12, 0x06, 0x0e, 0x06, 0xfc, 0x05, 0xc7, 0x05, 0x73, 0x06, 0x28, 0x07, 0x1a, 0x07, 0xb3, 0x06, 0x1f, 0x06, 0x4b, 0x05, 0x44, 0x05, 0x9c, 0x05, 0x0c, 0x05, 0x2b, 0x04, 0x01, 0x03, 0xcd, 0x01, 0x89, 0x00, 0x4a, 0xff, 0x0a, 0xfe, 0xdf, 0xfc, 0xc1, 0xfb, 0xbe, 0xfa, 0xd8, 0xf9, 0x0d, 0xf9, 0x64, 0xf8, 0xdf, 0xf7, 0x7f, 0xf7, 0x41, 0xf7, 0x29, 0xf7, 0x33, 0xf7, 0x5f, 0xf7, 0xa9, 0xf7, 0x1c, 0xf8, 0x79, 0xf8, 0xc9, 0xf8, 0x46, 0xf9, 0xdd, 0xf9, 0x91, 0xfa, 0x61, 0xfb, 0x43, 0xfc, 0x33, 0xfd, 0x31, 0xfe, 0x32, 0xff, 0x35, 0x00, 0x39, 0x01, 0x33, 0x02, 0x23, 0x03, 0x02, 0x04, 0xcf, 0x04, 0x87, 0x05, 0x28, 0x06, 0xb3, 0x06, 0x1f, 0x07, 0x60, 0x07, 0x46, 0x07, 0x23, 0x07, 0xd3, 0x06, 0xe7, 0x06, 0xc4, 0x07, 0xf3, 0x07, 0xaf, 0x07, 0x23, 0x07, 0x6f, 0x06, 0x9b, 0x05, 0xb3, 0x04, 0xbf, 0x03, 0xc3, 0x02, 0xc4, 0x01, 0xc5, 0x00, 0xce, 0xff, 0xd6, 0xfe, 0xf7, 0xfd, 0x1f, 0xfd, 0x5f, 0xfc, 0xac, 0xfb, 0x18, 0xfb, 0x98, 0xfa, 0x2d, 0xfa, 0xe1, 0xf9, 0xb0, 0xf9, 0x95, 0xf9, 0x95, 0xf9, 0xad, 0xf9, 0xe6, 0xf9, 0x2a, 0xfa, 0x94, 0xfa, 0xf4, 0xfa, 0x45, 0xfb, 0x75, 0xfb, 0xb9, 0xfc, 0x96, 0xfe, 0x96, 0xff, 0x58, 0x00, 0xe2, 0x00, 0x5a, 0x01, 0xbd, 0x01, 0x1b, 0x02, 0x69, 0x02, 0xb3, 0x02, 0xf1, 0x02, 0x23, 0x03, 0x49, 0x03, 0x65, 0x03, 0x77, 0x03, 0x81, 0x03, 0x7d, 0x03, 0x6b, 0x03, 0x57, 0x03, 0x27, 0x03, 0x05, 0x03, 0xbf, 0x02, 0x53, 0x03, 0x1b, 0x04, 0x2e, 0x04, 0xf7, 0x03, 0x85, 0x03, 0x01, 0x03, 0x5f, 0x02, 0xc0, 0x01, 0x0f, 0x01, 0x64, 0x00, 0xb7, 0xff, 0x11, 0xff, 0x75, 0xfe, 0xdd, 0xfd, 0x59, 0xfd, 0xe3, 0xfc, 0x77, 0xfc, 0x21, 0xfc, 0xdc, 0xfb, 0xa5, 0xfb, 0x89, 0xfb, 0x65, 0xfb, 0x21, 0xfb, 0xee, 0xfa, 0xe0, 0xfa, 0xec, 0xfa, 0x12, 0xfb, 0x55, 0xfb, 0xb1, 0xfb, 0xfc, 0xfb, 0x2f, 0xfc, 0x83, 0xfc, 0xe9, 0xfc, 0x67, 0xfd, 0xf1, 0xfd, 0x94, 0xfe, 0x39, 0xff, 0xe7, 0xff, 0x98, 0x00, 0x4c, 0x01, 0xfa, 0x01, 0xa3, 0x02, 0x3f, 0x03, 0xd1, 0x03, 0x52, 0x04, 0xc2, 0x04, 0x22, 0x05, 0x6f, 0x05, 0x9f, 0x05, 0xc6, 0x05, 0xca, 0x05, 0xcf, 0x05, 0x9c, 0x05, 0xab, 0x05, 0x8a, 0x06, 0xec, 0x06, 0xa4, 0x06, 0x04, 0x07, 0x9a, 0x07, 0x3a, 0x07, 0x7b, 0x06, 0x6b, 0x05, 0x43, 0x04, 0xfb, 0x02, 0xac, 0x01, 0x5c, 0x00, 0x11, 0xff, 0xcf, 0xfd, 0x9f, 0xfc, 0x81, 0xfb, 0x85, 0xfa, 0xa1, 0xf9, 0xda, 0xf8, 0x39, 0xf8, 0xb9, 0xf7, 0x5e, 0xf7, 0x28, 0xf7, 0x17, 0xf7, 0x24, 0xf7, 0x58, 0xf7, 0xab, 0xf7, 0x1e, 0xf8, 0xa5, 0xf8, 0x0e, 0xf9, 0x84, 0xf9, 0x1d, 0xfa, 0xcd, 0xfa, 0x96, 0xfb, 0x79, 0xfc, 0x67, 0xfd, 0x5d, 0xfe, 0x5a, 0xff, 0x5b, 0x00, 0x55, 0x01, 0x49, 0x02, 0x37, 0x03, 0x0c, 0x04, 0xd7, 0x04, 0x87, 0x05, 0x23, 0x06, 0x93, 0x06, 0xb3, 0x06, 0xbf, 0x06, 0xbf, 0x06, 0xa4, 0x06, 0x8a, 0x06, 0x47, 0x06, 0xc7, 0x06, 0x82, 0x07, 0x76, 0x07, 0x22, 0x07, 0x8c, 0x06, 0xd6, 0x05, 0x07, 0x05, 0x22, 0x04, 0x35, 0x03, 0x43, 0x02, 0x49, 0x01, 0x55, 0x00, 0x66, 0xff, 0x81, 0xfe, 0xa9, 0xfd, 0xe1, 0xfc, 0x29, 0xfc, 0x88, 0xfb, 0xf9, 0xfa, 0x88, 0xfa, 0x25, 0xfa, 0xe5, 0xf9, 0xbe, 0xf9, 0xb1, 0xf9, 0xbc, 0xf9, 0xe2, 0xf9, 0x15, 0xfa, 0x74, 0xfa, 0xc4, 0xfa, 0xf6, 0xfb, 0x85, 0xfd, 0x49, 0xfe, 0xd6, 0xfe, 0x36, 0xff, 0x90, 0xff, 0xde, 0xff, 0x2f, 0x00, 0x80, 0x00, 0xcd, 0x00, 0x18, 0x01, 0x60, 0x01, 0xa8, 0x01, 0xe8, 0x01, 0x25, 0x02, 0x53, 0x02, 0x85, 0x02, 0xa5, 0x02, 0xc5, 0x02, 0xd5, 0x02, 0xe1, 0x02, 0xdf, 0x02, 0xdb, 0x02, 0xbd, 0x02, 0xcb, 0x02, 0xc3, 0x03, 0x58, 0x04, 0x5e, 0x04, 0x28, 0x04, 0xc9, 0x03, 0x4d, 0x03, 0xc1, 0x02, 0x27, 0x02, 0x8b, 0x01, 0xe9, 0x00, 0x44, 0x00, 0xa5, 0xff, 0x0b, 0xff, 0x7e, 0xfe, 0xf1, 0xfd, 0x7b, 0xfd, 0x0b, 0xfd, 0xad, 0xfc, 0x4b, 0xfc, 0xc6, 0xfb, 0x54, 0xfb, 0x04, 0xfb, 0xd2, 0xfa, 0xb9, 0xfa, 0xc1, 0xfa, 0xdd, 0xfa, 0x19, 0xfb, 0x64, 0xfb, 0xcc, 0xfb, 0x09, 0xfc, 0x47, 0xfc, 0xa7, 0xfc, 0x13, 0xfd, 0x97, 0xfd, 0x2e, 0xfe, 0xca, 0xfe, 0x72, 0xff, 0x1a, 0x00, 0xc8, 0x00, 0x73, 0x01, 0x1b, 0x02, 0xbd, 0x02, 0x4d, 0x03, 0xd3, 0x03, 0x48, 0x04, 0xaf, 0x04, 0x03, 0x05, 0x43, 0x05, 0x73, 0x05, 0x8c, 0x05, 0x8c, 0x05, 0x82, 0x05, 0x57, 0x05, 0xb0, 0x05, 0x4f, 0x07, 0x8f, 0x08, 0xae, 0x08, 0x3d, 0x08, 0x6f, 0x07, 0x6e, 0x06, 0x48, 0x05, 0x0b, 0x04, 0xc3, 0x02, 0x72, 0x01, 0x20, 0x00, 0xdb, 0xfe, 0xa1, 0xfd, 0x79, 0xfc, 0x62, 0xfb, 0x70, 0xfa, 0x91, 0xf9, 0xd8, 0xf8, 0x3c, 0xf8, 0xc4, 0xf7, 0x72, 0xf7, 0x42, 0xf7, 0x33, 0xf7, 0x4b, 0xf7, 0x84, 0xf7, 0xdb, 0xf7, 0x4e, 0xf8, 0xe5, 0xf8, 0x71, 0xf9, 0xe4, 0xf9, 0x79, 0xfa, 0x1d, 0xfb, 0xe8, 0xfb, 0xbb, 0xfc, 0x9f, 0xfd, 0x8e, 0xfe, 0x83, 0xff, 0x76, 0x00, 0x66, 0x01, 0x51, 0x02, 0x2d, 0x03, 0xff, 0x03, 0xc3, 0x04, 0x57, 0x05, 0xa3, 0x05, 0xe2, 0x05, 0x0f, 0x06, 0x2f, 0x06, 0x4a, 0x06, 0x43, 0x06, 0x37, 0x06, 0x0b, 0x06, 0x0b, 0x06, 0xdf, 0x06, 0x3c, 0x07, 0x0f, 0x07, 0xa4, 0x06, 0x06, 0x06, 0x4f, 0x05, 0x7a, 0x04, 0x9d, 0x03, 0xb1, 0x02, 0xc3, 0x01, 0xd3, 0x00, 0xe7, 0xff, 0x02, 0xff, 0x28, 0xfe, 0x5b, 0xfd, 0x99, 0xfc, 0xf4, 0xfb, 0x55, 0xfb, 0xd9, 0xfa, 0x70, 0xfa, 0x22, 0xfa, 0xec, 0xf9, 0xd1, 0xf9, 0xcc, 0xf9, 0xe9, 0xf9, 0x01, 0xfa, 0x1a, 0xfb, 0xb1, 0xfc, 0x85, 0xfd, 0xe5, 0xfd, 0x0a, 0xfe, 0x37, 0xfe, 0x5d, 0xfe, 0x90, 0xfe, 0xc3, 0xfe, 0x05, 0xff, 0x47, 0xff, 0x95, 0xff, 0xe3, 0xff, 0x2f, 0x00, 0x88, 0x00, 0xda, 0x00, 0x2d, 0x01, 0x79, 0x01, 0xc0, 0x01, 0x07, 0x02, 0x3f, 0x02, 0x73, 0x02, 0x9f, 0x02, 0xc3, 0x02, 0xd5, 0x02, 0xef, 0x02, 0xdd, 0x02, 0x7d, 0x03, 0x82, 0x04, 0xc7, 0x04, 0xca, 0x04, 0x87, 0x04, 0x2b, 0x04, 0xaf, 0x03, 0x27, 0x03, 0x95, 0x02, 0xfa, 0x01, 0x54, 0x01, 0xb0, 0x00, 0x10, 0x00, 0x6f, 0xff, 0xdb, 0xfe, 0x4f, 0xfe, 0xb5, 0xfd, 0xf9, 0xfc, 0x53, 0xfc, 0xc4, 0xfb, 0x51, 0xfb, 0x04, 0xfb, 0xc8, 0xfa, 0xad, 0xfa, 0xa9, 0xfa, 0xc4, 0xfa, 0xf4, 0xfa, 0x39, 0xfb, 0x99, 0xfb, 0xf2, 0xfb, 0x29, 0xfc, 0x75, 0xfc, 0xdd, 0xfc, 0x4f, 0xfd, 0xd7, 0xfd, 0x6d, 0xfe, 0x08, 0xff, 0xb0, 0xff, 0x55, 0x00, 0xfd, 0x00, 0xa2, 0x01, 0x3f, 0x02, 0xd5, 0x02, 0x5f, 0x03, 0xd9, 0x03, 0x43, 0x04, 0xa3, 0x04, 0xeb, 0x04, 0x24, 0x05, 0x44, 0x05, 0x5f, 0x05, 0x48, 0x05, 0x0b, 0x06, 0x22, 0x07, 0x39, 0x08, 0xd1, 0x08, 0x89, 0x08, 0xf7, 0x07, 0x0f, 0x07, 0x0f, 0x06, 0xe3, 0x04, 0xb1, 0x03, 0x6d, 0x02, 0x25, 0x01, 0xe1, 0xff, 0xa9, 0xfe, 0x7d, 0xfd, 0x63, 0xfc, 0x59, 0xfb, 0x74, 0xfa, 0xa4, 0xf9, 0xf9, 0xf8, 0x66, 0xf8, 0xfa, 0xf7, 0xb1, 0xf7, 0x89, 0xf7, 0x84, 0xf7, 0xa0, 0xf7, 0xdb, 0xf7, 0x39, 0xf8, 0xae, 0xf8, 0x3d, 0xf9, 0xe6, 0xf9, 0x6d, 0xfa, 0xf5, 0xfa, 0x94, 0xfb, 0x49, 0xfc, 0x13, 0xfd, 0xe7, 0xfd, 0xc9, 0xfe, 0xaa, 0xff, 0x8c, 0x00, 0x70, 0x01, 0x49, 0x02, 0x1f, 0x03, 0xcb, 0x03, 0x34, 0x04, 0x9a, 0x04, 0xf0, 0x04, 0x3b, 0x05, 0x80, 0x05, 0xb2, 0x05, 0xd3, 0x05, 0xec, 0x05, 0xe3, 0x05, 0xdf, 0x05, 0xab, 0x05, 0x02, 0x06, 0xce, 0x06, 0xe3, 0x06, 0xaa, 0x06, 0x28, 0x06, 0x87, 0x05, 0xcb, 0x04, 0xf9, 0x03, 0x1d, 0x03, 0x37, 0x02, 0x51, 0x01, 0x64, 0x00, 0x84, 0xff, 0xa6, 0xfe, 0xd3, 0xfd, 0x11, 0xfd, 0x5f, 0xfc, 0xbd, 0xfb, 0x35, 0xfb, 0xc1, 0xfa, 0x6a, 0xfa, 0x20, 0xfa, 0x04, 0xfa, 0xdd, 0xf9, 0xc1, 0xfa, 0x09, 0xfc, 0x9f, 0xfc, 0x07, 0xfd, 0x43, 0xfd, 0x73, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x69, 0xfd, 0x83, 0xfd, 0xad, 0xfd, 0xdf, 0xfd, 0x27, 0xfe, 0x72, 0xfe, 0xc7, 0xfe, 0x2a, 0xff, 0x8a, 0xff, 0xf5, 0xff, 0x5c, 0x00, 0xc4, 0x00, 0x27, 0x01, 0x85, 0x01, 0xe1, 0x01, 0x33, 0x02, 0x81, 0x02, 0xbf, 0x02, 0xf9, 0x02, 0x21, 0x03, 0x41, 0x03, 0x63, 0x03, 0x63, 0x04, 0x2c, 0x05, 0x54, 0x05, 0x4b, 0x05, 0xfe, 0x04, 0xa3, 0x04, 0x1f, 0x04, 0x95, 0x03, 0xfb, 0x02, 0x57, 0x02, 0xab, 0x01, 0xfb, 0x00, 0x58, 0x00, 0x99, 0xff, 0xb5, 0xfe, 0xdd, 0xfd, 0x1f, 0xfd, 0x7b, 0xfc, 0xe6, 0xfb, 0x79, 0xfb, 0x1e, 0xfb, 0xd9, 0xfa, 0xb5, 0xfa, 0xa9, 0xfa, 0xb5, 0xfa, 0xdd, 0xfa, 0x18, 0xfb, 0x66, 0xfb, 0xc9, 0xfb, 0x11, 0xfc, 0x4f, 0xfc, 0xa5, 0xfc, 0x0b, 0xfd, 0x85, 0xfd, 0x0d, 0xfe, 0xa2, 0xfe, 0x3c, 0xff, 0xe0, 0xff, 0x7f, 0x00, 0x22, 0x01, 0xbb, 0x01, 0x55, 0x02, 0xdf, 0x02, 0x5f, 0x03, 0xd3, 0x03, 0x3a, 0x04, 0x87, 0x04, 0xd6, 0x04, 0xf4, 0x04, 0xfa, 0x05, 0x13, 0x07, 0x6c, 0x07, 0x53, 0x07, 0x6f, 0x07, 0x08, 0x08, 0xe2, 0x07, 0x5e, 0x07, 0x8a, 0x06, 0x93, 0x05, 0x7a, 0x04, 0x55, 0x03, 0x23, 0x02, 0xf4, 0x00, 0xc6, 0xff, 0x9c, 0xfe, 0x81, 0xfd, 0x7b, 0xfc, 0x89, 0xfb, 0xae, 0xfa, 0xed, 0xf9, 0x49, 0xf9, 0xc9, 0xf8, 0x65, 0xf8, 0x24, 0xf8, 0x01, 0xf8, 0x00, 0xf8, 0x1c, 0xf8, 0x5a, 0xf8, 0xb1, 0xf8, 0x25, 0xf9, 0xb0, 0xf9, 0x4d, 0xfa, 0xf6, 0xfa, 0x75, 0xfb, 0x07, 0xfc, 0xab, 0xfc, 0x5d, 0xfd, 0x24, 0xfe, 0xeb, 0xfe, 0xbd, 0xff, 0x8c, 0x00, 0x61, 0x01, 0x0f, 0x02, 0x87, 0x02, 0x03, 0x03, 0x77, 0x03, 0xe9, 0x03, 0x4c, 0x04, 0xab, 0x04, 0xfc, 0x04, 0x3b, 0x05, 0x6f, 0x05, 0x90, 0x05, 0xa6, 0x05, 0x9f, 0x05, 0x93, 0x05, 0x73, 0x05, 0x1e, 0x06, 0xab, 0x06, 0x93, 0x06, 0x42, 0x06, 0xb7, 0x05, 0x12, 0x05, 0x4f, 0x04, 0x83, 0x03, 0xa3, 0x02, 0xc7, 0x01, 0xdf, 0x00, 0xfc, 0xff, 0x21, 0xff, 0x4b, 0xfe, 0x89, 0xfd, 0xd1, 0xfc, 0x29, 0xfc, 0x9d, 0xfb, 0x15, 0xfb, 0xb8, 0xfa, 0x5d, 0xfa, 0x00, 0xfb, 0xfd, 0xfb, 0x4b, 0xfc, 0x77, 0xfc, 0x7f, 0xfc, 0x8d, 0xfc, 0x8f, 0xfc, 0xad, 0xfc, 0x9b, 0xfc, 0x83, 0xfc, 0x7b, 0xfc, 0x85, 0xfc, 0xad, 0xfc, 0xdd, 0xfc, 0x29, 0xfd, 0x7f, 0xfd, 0xdf, 0xfd, 0x4f, 0xfe, 0xc4, 0xfe, 0x3f, 0xff, 0xc0, 0xff, 0x3d, 0x00, 0xbe, 0x00, 0x39, 0x01, 0xae, 0x01, 0x1b, 0x02, 0x85, 0x02, 0xdb, 0x02, 0x31, 0x03, 0x6f, 0x03, 0xad, 0x03, 0xc5, 0x03, 0x3a, 0x04, 0x53, 0x05, 0xd3, 0x05, 0xec, 0x05, 0xc3, 0x05, 0x72, 0x05, 0x00, 0x05, 0x76, 0x04, 0xdf, 0x03, 0x35, 0x03, 0x87, 0x02, 0xba, 0x01, 0xc1, 0x00, 0xd1, 0xff, 0xee, 0xfe, 0x1c, 0xfe, 0x61, 0xfd, 0xb5, 0xfc, 0x23, 0xfc, 0xac, 0xfb, 0x48, 0xfb, 0x01, 0xfb, 0xd4, 0xfa, 0xb9, 0xfa, 0xbc, 0xfa, 0xd6, 0xfa, 0x01, 0xfb, 0x42, 0xfb, 0x9c, 0xfb, 0xf9, 0xfb, 0x2f, 0xfc, 0x75, 0xfc, 0xcd, 0xfc, 0x39, 0xfd, 0xb7, 0xfd, 0x3f, 0xfe, 0xd3, 0xfe, 0x69, 0xff, 0x02, 0x00, 0xa1, 0x00, 0x3a, 0x01, 0xd5, 0x01, 0x63, 0x02, 0xed, 0x02, 0x5f, 0x03, 0xd1, 0x03, 0x27, 0x04, 0x54, 0x05, 0xa2, 0x06, 0x1a, 0x07, 0x4b, 0x07, 0x26, 0x07, 0xe8, 0x06, 0x74, 0x06, 0xae, 0x06, 0xf8, 0x06, 0x92, 0x06, 0xee, 0x05, 0x0f, 0x05, 0x16, 0x04, 0x0b, 0x03, 0xf7, 0x01, 0xdd, 0x00, 0xc9, 0xff, 0xba, 0xfe, 0xb5, 0xfd, 0xc3, 0xfc, 0xe5, 0xfb, 0x19, 0xfb, 0x66, 0xfa, 0xd5, 0xf9, 0x59, 0xf9, 0xfd, 0xf8, 0xc1, 0xf8, 0xa5, 0xf8, 0xa1, 0xf8, 0xba, 0xf8, 0xf2, 0xf8, 0x45, 0xf9, 0xa9, 0xf9, 0x2e, 0xfa, 0xbd, 0xfa, 0x69, 0xfb, 0xf9, 0xfb, 0x73, 0xfc, 0x05, 0xfd, 0xa1, 0xfd, 0x4e, 0xfe, 0xfc, 0xfe, 0xba, 0xff, 0x5b, 0x00, 0xd1, 0x00, 0x49, 0x01, 0xcf, 0x01, 0x4d, 0x02, 0xcf, 0x02, 0x45, 0x03, 0xbd, 0x03, 0x23, 0x04, 0x84, 0x04, 0xcf, 0x04, 0x13, 0x05, 0x43, 0x05, 0x66, 0x05, 0x6f, 0x05, 0x6c, 0x05, 0x4b, 0x05, 0x6a, 0x05, 0x2f, 0x06, 0x70, 0x06, 0x44, 0x06, 0xde, 0x05, 0x4e, 0x05, 0x9f, 0x04, 0xdd, 0x03, 0x0f, 0x03, 0x35, 0x02, 0x54, 0x01, 0x74, 0x00, 0x9b, 0xff, 0xc9, 0xfe, 0x01, 0xfe, 0x45, 0xfd, 0x93, 0xfc, 0x05, 0xfc, 0x71, 0xfb, 0xd5, 0xfb, 0x83, 0xfc, 0x93, 0xfc, 0x83, 0xfc, 0x4b, 0xfc, 0x25, 0xfc, 0xf9, 0xfb, 0xdc, 0xfb, 0xc9, 0xfb, 0xcd, 0xfb, 0xd1, 0xfb, 0xb8, 0xfb, 0xa2, 0xfb, 0xb1, 0xfb, 0xd0, 0xfb, 0x0f, 0xfc, 0x59, 0xfc, 0xb9, 0xfc, 0x27, 0xfd, 0xa3, 0xfd, 0x2e, 0xfe, 0xbb, 0xfe, 0x50, 0xff, 0xe3, 0xff, 0x7d, 0x00, 0x0c, 0x01, 0x97, 0x01, 0x21, 0x02, 0x99, 0x02, 0x11, 0x03, 0x71, 0x03, 0xcd, 0x03, 0x0c, 0x04, 0x4f, 0x04, 0x6a, 0x04, 0x33, 0x05, 0x20, 0x06, 0x5f, 0x06, 0x5f, 0x06, 0x17, 0x06, 0xb7, 0x05, 0x2f, 0x05, 0x9c, 0x04, 0xd9, 0x03, 0xe3, 0x02, 0xee, 0x01, 0xfd, 0x00, 0x13, 0x00, 0x39, 0xff, 0x6a, 0xfe, 0xaf, 0xfd, 0x01, 0xfd, 0x6d, 0xfc, 0xed, 0xfb, 0x84, 0xfb, 0x31, 0xfb, 0xf8, 0xfa, 0xd5, 0xfa, 0xc8, 0xfa, 0xd5, 0xfa, 0xf5, 0xfa, 0x29, 0xfb, 0x70, 0xfb, 0xcd, 0xfb, 0x19, 0xfc, 0x51, 0xfc, 0x9b, 0xfc, 0xf7, 0xfc, 0x69, 0xfd, 0xe3, 0xfd, 0x6a, 0xfe, 0xf9, 0xfe, 0x92, 0xff, 0x2b, 0x00, 0xc1, 0x00, 0x5e, 0x01, 0xeb, 0x01, 0x7d, 0x02, 0xed, 0x02, 0x43, 0x04, 0xb0, 0x05, 0x57, 0x06, 0xb6, 0x06, 0xc3, 0x06, 0xb8, 0x06, 0x7c, 0x06, 0x2f, 0x06, 0xbc, 0x05, 0x63, 0x05, 0xbb, 0x05, 0xbe, 0x05, 0x43, 0x05, 0x97, 0x04, 0xbf, 0x03, 0xd7, 0x02, 0xdf, 0x01, 0xe9, 0x00, 0xf0, 0xff, 0xf9, 0xfe, 0x0d, 0xfe, 0x2d, 0xfd, 0x65, 0xfc, 0xad, 0xfb, 0x05, 0xfb, 0x81, 0xfa, 0x0a, 0xfa, 0xb6, 0xf9, 0x79, 0xf9, 0x5d, 0xf9, 0x56, 0xf9, 0x6c, 0xf9, 0x9d, 0xf9, 0xe2, 0xf9, 0x3d, 0xfa, 0xb1, 0xfa, 0x35, 0xfb, 0xc6, 0xfb, 0x63, 0xfc, 0xd9, 0xfc, 0x51, 0xfd, 0xcf, 0xfd, 0x67, 0xfe, 0xe2, 0xfe, 0x42, 0xff, 0xb0, 0xff, 0x22, 0x00, 0xa6, 0x00, 0x27, 0x01, 0xb2, 0x01, 0x39, 0x02, 0xbd, 0x02, 0x35, 0x03, 0xad, 0x03, 0x10, 0x04, 0x6c, 0x04, 0xb7, 0x04, 0xfa, 0x04, 0x20, 0x05, 0x3f, 0x05, 0x3f, 0x05, 0x3f, 0x05, 0x14, 0x05, 0x7e, 0x05, 0x2b, 0x06, 0x2b, 0x06, 0xf0, 0x05, 0x74, 0x05, 0xdf, 0x04, 0x27, 0x04, 0x67, 0x03, 0x95, 0x02, 0xc4, 0x01, 0xe9, 0x00, 0x11, 0x00, 0x42, 0xff, 0x73, 0xfe, 0xb7, 0xfd, 0x05, 0xfd, 0x45, 0xfd, 0xa7, 0xfd, 0x73, 0xfd, 0x23, 0xfd, 0xb9, 0xfc, 0x51, 0xfc, 0xf2, 0xfb, 0x99, 0xfb, 0x56, 0xfb, 0x25, 0xfb, 0x05, 0xfb, 0xf8, 0xfa, 0x01, 0xfb, 0x09, 0xfb, 0xf8, 0xfa, 0x00, 0xfb, 0x26, 0xfb, 0x64, 0xfb, 0xba, 0xfb, 0x23, 0xfc, 0xa1, 0xfc, 0x2b, 0xfd, 0xc1, 0xfd, 0x63, 0xfe, 0x09, 0xff, 0xb6, 0xff, 0x5c, 0x00, 0x04, 0x01, 0xa3, 0x01, 0x39, 0x02, 0xc9, 0x02, 0x4b, 0x03, 0xbf, 0x03, 0x27, 0x04, 0x78, 0x04, 0xc0, 0x04, 0xe3, 0x04, 0x24, 0x05, 0x1c, 0x06, 0xb7, 0x06, 0xc7, 0x06, 0x9f, 0x06, 0x43, 0x06, 0xab, 0x05, 0xd7, 0x04, 0xf7, 0x03, 0x11, 0x03, 0x29, 0x02, 0x43, 0x01, 0x64, 0x00, 0x90, 0xff, 0xc4, 0xfe, 0x0a, 0xfe, 0x5d, 0xfd, 0xc1, 0xfc, 0x3b, 0xfc, 0xcd, 0xfb, 0x6d, 0xfb, 0x28, 0xfb, 0xfa, 0xfa, 0xe0, 0xfa, 0xe0, 0xfa, 0xf1, 0xfa, 0x19, 0xfb, 0x55, 0xfb, 0x9e, 0xfb, 0xfc, 0xfb, 0x39, 0xfc, 0x71, 0xfc, 0xbf, 0xfc, 0x1f, 0xfd, 0x8f, 0xfd, 0x0d, 0xfe, 0x99, 0xfe, 0x27, 0xff, 0xbf, 0xff, 0x50, 0x00, 0xe9, 0x00, 0x7b, 0x01, 0xf3, 0x02, 0x6f, 0x04, 0x2e, 0x05, 0xab, 0x05, 0xe7, 0x05, 0x02, 0x06, 0xff, 0x05, 0xd8, 0x05, 0xa6, 0x05, 0x4e, 0x05, 0xf4, 0x04, 0x70, 0x04, 0x63, 0x04, 0xc4, 0x04, 0x92, 0x04, 0x1f, 0x04, 0x71, 0x03, 0xb3, 0x02, 0xe2, 0x01, 0x09, 0x01, 0x2b, 0x00, 0x57, 0xff, 0x84, 0xfe, 0xbf, 0xfd, 0x05, 0xfd, 0x59, 0xfc, 0xc9, 0xfb, 0x48, 0xfb, 0xe0, 0xfa, 0x8c, 0xfa, 0x51, 0xfa, 0x2e, 0xfa, 0x25, 0xfa, 0x31, 0xfa, 0x55, 0xfa, 0x8d, 0xfa, 0xd6, 0xfa, 0x39, 0xfb, 0xa8, 0xfb, 0x23, 0xfc, 0xb1, 0xfc, 0x31, 0xfd, 0x95, 0xfd, 0xdd, 0xfd, 0x10, 0xfe, 0x57, 0xfe, 0xb2, 0xfe, 0x1e, 0xff, 0x98, 0xff, 0x17, 0x00, 0xa0, 0x00, 0x2b, 0x01, 0xb4, 0x01, 0x3d, 0x02, 0xbf, 0x02, 0x3b, 0x03, 0xa7, 0x03, 0x0b, 0x04, 0x62, 0x04, 0xa6, 0x04, 0xdf, 0x04, 0xff, 0x04, 0x0f, 0x05, 0x13, 0x05, 0xfc, 0x04, 0xeb, 0x04, 0x90, 0x05, 0xf8, 0x05, 0xde, 0x05, 0x8a, 0x05, 0x06, 0x05, 0x64, 0x04, 0xaf, 0x03, 0xf1, 0x02, 0x23, 0x02, 0x58, 0x01, 0x80, 0x00, 0xb4, 0xff, 0xf0, 0xfe, 0x15, 0xff, 0x3b, 0xff, 0xd5, 0xfe, 0x55, 0xfe, 0xb1, 0xfd, 0x17, 0xfd, 0x7d, 0xfc, 0xf5, 0xfb, 0x7c, 0xfb, 0x12, 0xfb, 0xc1, 0xfa, 0x80, 0xfa, 0x59, 0xfa, 0x4e, 0xfa, 0x52, 0xfa, 0x74, 0xfa, 0x7e, 0xfa, 0x88, 0xfa, 0xb1, 0xfa, 0xf6, 0xfa, 0x56, 0xfb, 0xc5, 0xfb, 0x4f, 0xfc, 0xdf, 0xfc, 0x87, 0xfd, 0x34, 0xfe, 0xe5, 0xfe, 0xa1, 0xff, 0x56, 0x00, 0x0a, 0x01, 0xb8, 0x01, 0x5d, 0x02, 0xf9, 0x02, 0x83, 0x03, 0x07, 0x04, 0x6f, 0x04, 0xcf, 0x04, 0x12, 0x05, 0x4f, 0x05, 0x5b, 0x05, 0xd7, 0x05, 0xb6, 0x06, 0xfe, 0x06, 0xd3, 0x06, 0x47, 0x06, 0xa3, 0x05, 0xe2, 0x04, 0x1b, 0x04, 0x47, 0x03, 0x71, 0x02, 0x96, 0x01, 0xbf, 0x00, 0xf3, 0xff, 0x2a, 0xff, 0x70, 0xfe, 0xc1, 0xfd, 0x25, 0xfd, 0x95, 0xfc, 0x1d, 0xfc, 0xb9, 0xfb, 0x69, 0xfb, 0x30, 0xfb, 0x09, 0xfb, 0xf8, 0xfa, 0xfd, 0xfa, 0x12, 0xfb, 0x40, 0xfb, 0x81, 0xfb, 0xd1, 0xfb, 0x1d, 0xfc, 0x57, 0xfc, 0x8f, 0xfc, 0xe3, 0xfc, 0x49, 0xfd, 0xc1, 0xfd, 0x3c, 0xfe, 0xc6, 0xfe, 0x54, 0xff, 0xed, 0xff, 0x78, 0x01, 0xe9, 0x02, 0xb7, 0x03, 0x4b, 0x04, 0xa7, 0x04, 0xe7, 0x04, 0x06, 0x05, 0x12, 0x05, 0x06, 0x05, 0xe8, 0x04, 0xb2, 0x04, 0x76, 0x04, 0x1f, 0x04, 0xc5, 0x03, 0x61, 0x03, 0xab, 0x03, 0xf1, 0x03, 0xaf, 0x03, 0x43, 0x03, 0xa5, 0x02, 0x01, 0x02, 0x45, 0x01, 0x8e, 0x00, 0xd2, 0xff, 0x1e, 0xff, 0x6f, 0xfe, 0xc7, 0xfd, 0x31, 0xfd, 0xa3, 0xfc, 0x2d, 0xfc, 0xc4, 0xfb, 0x75, 0xfb, 0x39, 0xfb, 0x0c, 0xfb, 0xf9, 0xfa, 0xf9, 0xfa, 0x10, 0xfb, 0x32, 0xfb, 0x6e, 0xfb, 0xb6, 0xfb, 0x11, 0xfc, 0x71, 0xfc, 0xe3, 0xfc, 0x41, 0xfd, 0x5f, 0xfd, 0x79, 0xfd, 0xa1, 0xfd, 0xeb, 0xfd, 0x3f, 0xfe, 0xa9, 0xfe, 0x20, 0xff, 0x9c, 0xff, 0x25, 0x00, 0xad, 0x00, 0x3c, 0x01, 0xc9, 0x01, 0x4f, 0x02, 0xcb, 0x02, 0x41, 0x03, 0xa7, 0x03, 0x04, 0x04, 0x53, 0x04, 0x92, 0x04, 0xbb, 0x04, 0xdb, 0x04, 0xdf, 0x04, 0xdf, 0x04, 0xb8, 0x04, 0xdf, 0x04, 0x8c, 0x05, 0xb3, 0x05, 0x83, 0x05, 0x1e, 0x05, 0x94, 0x04, 0xf3, 0x03, 0x3f, 0x03, 0x7f, 0x02, 0xb7, 0x01, 0xf7, 0x00, 0x12, 0x01, 0x16, 0x01, 0x8e, 0x00, 0xec, 0xff, 0x24, 0xff, 0x60, 0xfe, 0x97, 0xfd, 0xdf, 0xfc, 0x2d, 0xfc, 0x95, 0xfb, 0x0d, 0xfb, 0x99, 0xfa, 0x41, 0xfa, 0x01, 0xfa, 0xda, 0xf9, 0xcc, 0xf9, 0xd9, 0xf9, 0xfd, 0xf9, 0x2d, 0xfa, 0x46, 0xfa, 0x70, 0xfa, 0xbc, 0xfa, 0x1a, 0xfb, 0x99, 0xfb, 0x1f, 0xfc, 0xc1, 0xfc, 0x6d, 0xfd, 0x24, 0xfe, 0xdf, 0xfe, 0xa1, 0xff, 0x5f, 0x00, 0x1c, 0x01, 0xd6, 0x01, 0x81, 0x02, 0x21, 0x03, 0xb3, 0x03, 0x37, 0x04, 0xa8, 0x04, 0x0a, 0x05, 0x52, 0x05, 0x84, 0x05, 0xa8, 0x05, 0xaf, 0x05, 0x3f, 0x06, 0x9f, 0x06, 0x7b, 0x06, 0x23, 0x06, 0x97, 0x05, 0xfa, 0x04, 0x40, 0x04, 0x83, 0x03, 0xb9, 0x02, 0xf0, 0x01, 0x22, 0x01, 0x59, 0x00, 0x96, 0xff, 0xdf, 0xfe, 0x2d, 0xfe, 0x8d, 0xfd, 0xfb, 0xfc, 0x77, 0xfc, 0x09, 0xfc, 0xad, 0xfb, 0x69, 0xfb, 0x34, 0xfb, 0x19, 0xfb, 0x10, 0xfb, 0x19, 0xfb, 0x3d, 0xfb, 0x69, 0xfb, 0xa8, 0xfb, 0xfc, 0xfb, 0x43, 0xfc, 0x71, 0xfc, 0xb9, 0xfc, 0x0f, 0xfd, 0x75, 0xfd, 0xe7, 0xfd, 0x70, 0xfe, 0xe6, 0xff, 0x4e, 0x01, 0x21, 0x02, 0xbd, 0x02, 0x2b, 0x03, 0x83, 0x03, 0xbf, 0x03, 0xef, 0x03, 0x07, 0x04, 0x13, 0x04, 0x07, 0x04, 0xfb, 0x03, 0xd5, 0x03, 0xa9, 0x03, 0x6d, 0x03, 0x2f, 0x03, 0xd5, 0x02, 0xb1, 0x02, 0x31, 0x03, 0x55, 0x03, 0x23, 0x03, 0xbf, 0x02, 0x3b, 0x02, 0xae, 0x01, 0x0f, 0x01, 0x77, 0x00, 0xd7, 0xff, 0x39, 0xff, 0xa3, 0xfe, 0x18, 0xfe, 0x97, 0xfd, 0x23, 0xfd, 0xbf, 0xfc, 0x67, 0xfc, 0x21, 0xfc, 0xf4, 0xfb, 0xcd, 0xfb, 0xbd, 0xfb, 0xc2, 0xfb, 0xd1, 0xfb, 0xf1, 0xfb, 0x21, 0xfc, 0x63, 0xfc, 0x8d, 0xfc, 0xa5, 0xfc, 0xd3, 0xfc, 0x0d, 0xfd, 0x2f, 0xfd, 0x57, 0xfd, 0x93, 0xfd, 0xe5, 0xfd, 0x4c, 0xfe, 0xbb, 0xfe, 0x33, 0xff, 0xb6, 0xff, 0x43, 0x00, 0xc8, 0x00, 0x57, 0x01, 0xde, 0x01, 0x5d, 0x02, 0xd5, 0x02, 0x41, 0x03, 0xa7, 0x03, 0xf9, 0x03, 0x3e, 0x04, 0x76, 0x04, 0x97, 0x04, 0xb2, 0x04, 0xaf, 0x04, 0xa6, 0x04, 0x78, 0x04, 0xd7, 0x04, 0x68, 0x05, 0x68, 0x05, 0x2c, 0x05, 0xbb, 0x04, 0x2f, 0x04, 0x8d, 0x03, 0xe5, 0x02, 0x07, 0x03, 0x0b, 0x03, 0x7d, 0x02, 0xc6, 0x01, 0xec, 0x00, 0x0b, 0x00, 0x26, 0xff, 0x45, 0xfe, 0x6d, 0xfd, 0xa5, 0xfc, 0xe8, 0xfb, 0x48, 0xfb, 0xba, 0xfa, 0x45, 0xfa, 0xe9, 0xf9, 0xa8, 0xf9, 0x82, 0xf9, 0x78, 0xf9, 0x89, 0xf9, 0xb0, 0xf9, 0xee, 0xf9, 0x31, 0xfa, 0x5e, 0xfa, 0xa6, 0xfa, 0x0e, 0xfb, 0x8a, 0xfb, 0x1b, 0xfc, 0xbb, 0xfc, 0x6d, 0xfd, 0x28, 0xfe, 0xe2, 0xfe, 0xad, 0xff, 0x6b, 0x00, 0x2e, 0x01, 0xe7, 0x01, 0x99, 0x02, 0x3d, 0x03, 0xd1, 0x03, 0x57, 0x04, 0xc7, 0x04, 0x27, 0x05, 0x6f, 0x05, 0xa4, 0x05, 0xab, 0x05, 0x72, 0x05, 0x63, 0x05, 0xf0, 0x05, 0x23, 0x06, 0xf7, 0x05, 0x93, 0x05, 0x0f, 0x05, 0x73, 0x04, 0xc1, 0x03, 0x0b, 0x03, 0x4b, 0x02, 0x8a, 0x01, 0xc7, 0x00, 0x07, 0x00, 0x53, 0xff, 0x9f, 0xfe, 0xf9, 0xfd, 0x67, 0xfd, 0xdb, 0xfc, 0x65, 0xfc, 0xfd, 0xfb, 0xac, 0xfb, 0x6d, 0xfb, 0x42, 0xfb, 0x2d, 0xfb, 0x29, 0xfb, 0x34, 0xfb, 0x59, 0xfb, 0x90, 0xfb, 0xd2, 0xfb, 0x29, 0xfc, 0x5b, 0xfc, 0x91, 0xfc, 0xdd, 0xfc, 0x3b, 0xfd, 0x8b, 0xfe, 0xd5, 0xff, 0x95, 0x00, 0x2b, 0x01, 0x99, 0x01, 0xf9, 0x01, 0x45, 0x02, 0x87, 0x02, 0xbb, 0x02, 0xe7, 0x02, 0x01, 0x03, 0x11, 0x03, 0x1b, 0x03, 0x17, 0x03, 0x0d, 0x03, 0xf5, 0x02, 0xd5, 0x02, 0xab, 0x02, 0x85, 0x02, 0x39, 0x02, 0x77, 0x02, 0x07, 0x03, 0x11, 0x03, 0xe7, 0x02, 0x8b, 0x02, 0x21, 0x02, 0xa5, 0x01, 0x21, 0x01, 0x98, 0x00, 0x0e, 0x00, 0x87, 0xff, 0x03, 0xff, 0x8a, 0xfe, 0x18, 0xfe, 0xaf, 0xfd, 0x55, 0xfd, 0x07, 0xfd, 0xc5, 0xfc, 0x95, 0xfc, 0x71, 0xfc, 0x5f, 0xfc, 0x5b, 0xfc, 0x63, 0xfc, 0x5f, 0xfc, 0x41, 0xfc, 0x47, 0xfc, 0x59, 0xfc, 0x83, 0xfc, 0xc1, 0xfc, 0xfb, 0xfc, 0x1f, 0xfd, 0x55, 0xfd, 0x9f, 0xfd, 0xfd, 0xfd, 0x66, 0xfe, 0xd9, 0xfe, 0x5a, 0xff, 0xe1, 0xff, 0x67, 0x00, 0xee, 0x00, 0x73, 0x01, 0xf4, 0x01, 0x6f, 0x02, 0xe5, 0x02, 0x47, 0x03, 0xa1, 0x03, 0xe9, 0x03, 0x28, 0x04, 0x57, 0x04, 0x70, 0x04, 0x7f, 0x04, 0x78, 0x04, 0x62, 0x04, 0x56, 0x04, 0xef, 0x04, 0x3b, 0x05, 0x1f, 0x05, 0xd0, 0x04, 0x63, 0x04, 0xb6, 0x04, 0xc4, 0x04, 0x4b, 0x04, 0x9d, 0x03, 0xc7, 0x02, 0xde, 0x01, 0xe9, 0x00, 0xf2, 0xff, 0x00, 0xff, 0x15, 0xfe, 0x37, 0xfd, 0x6b, 0xfc, 0xae, 0xfb, 0x09, 0xfb, 0x81, 0xfa, 0x10, 0xfa, 0xb5, 0xf9, 0x79, 0xf9, 0x59, 0xf9, 0x52, 0xf9, 0x65, 0xf9, 0x92, 0xf9, 0xd9, 0xf9, 0x31, 0xfa, 0x79, 0xfa, 0xc1, 0xfa, 0x2d, 0xfb, 0xa9, 0xfb, 0x3b, 0xfc, 0xdd, 0xfc, 0x8d, 0xfd, 0x46, 0xfe, 0x03, 0xff, 0xc6, 0xff, 0x88, 0x00, 0x49, 0x01, 0x03, 0x02, 0xb1, 0x02, 0x53, 0x03, 0xe3, 0x03, 0x64, 0x04, 0xd3, 0x04, 0x36, 0x05, 0x5a, 0x05, 0x57, 0x05, 0x3f, 0x05, 0x27, 0x05, 0xee, 0x04, 0x36, 0x05, 0xbe, 0x05, 0xbc, 0x05, 0x87, 0x05, 0x14, 0x05, 0x97, 0x04, 0xfb, 0x03, 0x53, 0x03, 0x9f, 0x02, 0xe5, 0x01, 0x2a, 0x01, 0x6d, 0x00, 0xba, 0xff, 0x06, 0xff, 0x63, 0xfe, 0xc7, 0xfd, 0x37, 0xfd, 0xbb, 0xfc, 0x4d, 0xfc, 0xf1, 0xfb, 0xa5, 0xfb, 0x6e, 0xfb, 0x49, 0xfb, 0x3d, 0xfb, 0x41, 0xfb, 0x55, 0xfb, 0x81, 0xfb, 0xb6, 0xfb, 0x07, 0xfc, 0x49, 0xfc, 0x83, 0xfc, 0xa7, 0xfd, 0xbd, 0xfe, 0x57, 0xff, 0xd2, 0xff, 0x2c, 0x00, 0x80, 0x00, 0xc7, 0x00, 0x0c, 0x01, 0x4b, 0x01, 0x84, 0x01, 0xb4, 0x01, 0xe2, 0x01, 0x0b, 0x02, 0x2b, 0x02, 0x43, 0x02, 0x55, 0x02, 0x5f, 0x02, 0x61, 0x02, 0x5d, 0x02, 0x4f, 0x02, 0x39, 0x02, 0x1d, 0x02, 0x0d, 0x02, 0xa5, 0x02, 0x15, 0x03, 0x15, 0x03, 0xe9, 0x02, 0x9f, 0x02, 0x3f, 0x02, 0xd0, 0x01, 0x60, 0x01, 0xe5, 0x00, 0x6b, 0x00, 0xed, 0xff, 0x78, 0xff, 0x05, 0xff, 0x97, 0xfe, 0x34, 0xfe, 0xdd, 0xfd, 0x89, 0xfd, 0x49, 0xfd, 0x13, 0xfd, 0xef, 0xfc, 0xaf, 0xfc, 0x69, 0xfc, 0x3b, 0xfc, 0x17, 0xfc, 0x19, 0xfc, 0x2d, 0xfc, 0x4f, 0xfc, 0x83, 0xfc, 0xcf, 0xfc, 0x01, 0xfd, 0x2b, 0xfd, 0x6d, 0xfd, 0xc1, 0xfd, 0x22, 0xfe, 0x8d, 0xfe, 0x06, 0xff, 0x89, 0xff, 0x08, 0x00, 0x8e, 0x00, 0x13, 0x01, 0x91, 0x01, 0x0d, 0x02, 0x7f, 0x02, 0xeb, 0x02, 0x43, 0x03, 0x99, 0x03, 0xd7, 0x03, 0x0e, 0x04, 0x30, 0x04, 0x48, 0x04, 0x48, 0x04, 0x43, 0x04, 0x1a, 0x04, 0x53, 0x04, 0xe7, 0x04, 0x0f, 0x05, 0xbf, 0x05, 0x0f, 0x06, 0xc3, 0x05, 0x3b, 0x05, 0x7b, 0x04, 0xa3, 0x03, 0xb1, 0x02, 0xbe, 0x01, 0xbf, 0x00, 0xc8, 0xff, 0xd0, 0xfe, 0xe7, 0xfd, 0x0d, 0xfd, 0x43, 0xfc, 0x8d, 0xfb, 0xed, 0xfa, 0x66, 0xfa, 0xf9, 0xf9, 0xa8, 0xf9, 0x74, 0xf9, 0x54, 0xf9, 0x54, 0xf9, 0x6e, 0xf9, 0xa1, 0xf9, 0xe9, 0xf9, 0x4e, 0xfa, 0xb2, 0xfa, 0x02, 0xfb, 0x65, 0xfb, 0xe1, 0xfb, 0x71, 0xfc, 0x0d, 0xfd, 0xb9, 0xfd, 0x6d, 0xfe, 0x29, 0xff, 0xe6, 0xff, 0xa3, 0x00, 0x5a, 0x01, 0x0d, 0x02, 0xb7, 0x02, 0x53, 0x03, 0xdd, 0x03, 0x5e, 0x04, 0xa6, 0x04, 0xc4, 0x04, 0xdb, 0x04, 0xe6, 0x04, 0xe4, 0x04, 0xd6, 0x04, 0xbf, 0x04, 0xa3, 0x04, 0x2b, 0x05, 0x7e, 0x05, 0x63, 0x05, 0x20, 0x05, 0xaf, 0x04, 0x2b, 0x04, 0x8d, 0x03, 0xe9, 0x02, 0x3b, 0x02, 0x88, 0x01, 0xd0, 0x00, 0x1c, 0x00, 0x71, 0xff, 0xc3, 0xfe, 0x28, 0xfe, 0x97, 0xfd, 0x0f, 0xfd, 0x9d, 0xfc, 0x35, 0xfc, 0xde, 0xfb, 0x9c, 0xfb, 0x75, 0xfb, 0x56, 0xfb, 0x51, 0xfb, 0x5a, 0xfb, 0x79, 0xfb, 0xa8, 0xfb, 0xf1, 0xfb, 0x1f, 0xfd, 0x12, 0xfe, 0x79, 0xfe, 0xcd, 0xfe, 0x06, 0xff, 0x3f, 0xff, 0x75, 0xff, 0xaa, 0xff, 0xe3, 0xff, 0x1a, 0x00, 0x53, 0x00, 0x8f, 0x00, 0xc4, 0x00, 0xfa, 0x00, 0x30, 0x01, 0x64, 0x01, 0x8a, 0x01, 0xb5, 0x01, 0xd3, 0x01, 0xf1, 0x01, 0x05, 0x02, 0x15, 0x02, 0x1b, 0x02, 0x21, 0x02, 0x0b, 0x02, 0x5d, 0x02, 0x15, 0x03, 0x4f, 0x03, 0x4d, 0x03, 0x23, 0x03, 0xe1, 0x02, 0x85, 0x02, 0x21, 0x02, 0xb1, 0x01, 0x3f, 0x01, 0xc7, 0x00, 0x4d, 0x00, 0xd8, 0xff, 0x68, 0xff, 0xf9, 0xfe, 0x94, 0xfe, 0x36, 0xfe, 0xe5, 0xfd, 0x7f, 0xfd, 0x07, 0xfd, 0xa9, 0xfc, 0x5d, 0xfc, 0x2f, 0xfc, 0x11, 0xfc, 0x07, 0xfc, 0x13, 0xfc, 0x2f, 0xfc, 0x5f, 0xfc, 0xa5, 0xfc, 0xe9, 0xfc, 0x0d, 0xfd, 0x45, 0xfd, 0x8f, 0xfd, 0xe9, 0xfd, 0x4e, 0xfe, 0xc1, 0xfe, 0x38, 0xff, 0xb6, 0xff, 0x34, 0x00, 0xb6, 0x00, 0x34, 0x01, 0xb1, 0x01, 0x23, 0x02, 0x8f, 0x02, 0xed, 0x02, 0x43, 0x03, 0x8b, 0x03, 0xc5, 0x03, 0xf1, 0x03, 0x0e, 0x04, 0x1b, 0x04, 0x1b, 0x04, 0x07, 0x04, 0x04, 0x04, 0x57, 0x05, 0x66, 0x06, 0x83, 0x06, 0x53, 0x06, 0xc8, 0x05, 0x1e, 0x05, 0x4c, 0x04, 0x6d, 0x03, 0x7b, 0x02, 0x85, 0x01, 0x8b, 0x00, 0x98, 0xff, 0xa9, 0xfe, 0xc5, 0xfd, 0xf1, 0xfc, 0x31, 0xfc, 0x84, 0xfb, 0xec, 0xfa, 0x6d, 0xfa, 0x06, 0xfa, 0xbd, 0xf9, 0x8d, 0xf9, 0x76, 0xf9, 0x7d, 0xf9, 0x9a, 0xf9, 0xce, 0xf9, 0x1d, 0xfa, 0x82, 0xfa, 0xf1, 0xfa, 0x59, 0xfb, 0xb5, 0xfb, 0x29, 0xfc, 0xb3, 0xfc, 0x4b, 0xfd, 0xf1, 0xfd, 0x9d, 0xfe, 0x4e, 0xff, 0x04, 0x00, 0xb9, 0x00, 0x64, 0x01, 0x11, 0x02, 0xaf, 0x02, 0x43, 0x03, 0xab, 0x03, 0xe7, 0x03, 0x22, 0x04, 0x4c, 0x04, 0x73, 0x04, 0x88, 0x04, 0x9b, 0x04, 0x97, 0x04, 0x8e, 0x04, 0x67, 0x04, 0x9e, 0x04, 0x2c, 0x05, 0x43, 0x05, 0x1b, 0x05, 0xbf, 0x04, 0x4b, 0x04, 0xbf, 0x03, 0x25, 0x03, 0x81, 0x02, 0xd6, 0x01, 0x21, 0x01, 0x73, 0x00, 0xc6, 0xff, 0x1e, 0xff, 0x7f, 0xfe, 0xe7, 0xfd, 0x5d, 0xfd, 0xe3, 0xfc, 0x77, 0xfc, 0x1b, 0xfc, 0xcc, 0xfb, 0x9d, 0xfb, 0x72, 0xfb, 0x65, 0xfb, 0x65, 0xfb, 0x86, 0xfb, 0x7f, 0xfc, 0x69, 0xfd, 0xe9, 0xfd, 0x3c, 0xfe, 0x51, 0xfe, 0x5e, 0xfe, 0x73, 0xfe, 0x8e, 0xfe, 0xaf, 0xfe, 0xd9, 0xfe, 0x05, 0xff, 0x3e, 0xff, 0x78, 0xff, 0xb6, 0xff, 0xf9, 0xff, 0x3d, 0x00, 0x7d, 0x00, 0xc1, 0x00, 0xfe, 0x00, 0x3c, 0x01, 0x73, 0x01, 0xa8, 0x01, 0xd3, 0x01, 0xf6, 0x01, 0x15, 0x02, 0x31, 0x02, 0x3b, 0x02, 0x4d, 0x02, 0xf1, 0x02, 0x83, 0x03, 0xa7, 0x03, 0xa1, 0x03, 0x71, 0x03, 0x29, 0x03, 0xcf, 0x02, 0x6f, 0x02, 0xfd, 0x01, 0x8b, 0x01, 0x10, 0x01, 0x94, 0x00, 0x1c, 0x00, 0xa2, 0xff, 0x33, 0xff, 0xa9, 0xfe, 0x10, 0xfe, 0x89, 0xfd, 0x13, 0xfd, 0xb5, 0xfc, 0x6b, 0xfc, 0x33, 0xfc, 0x11, 0xfc, 0x03, 0xfc, 0x03, 0xfc, 0x1d, 0xfc, 0x4d, 0xfc, 0x81, 0xfc, 0xd1, 0xfc, 0x01, 0xfd, 0x2f, 0xfd, 0x6d, 0xfd, 0xbb, 0xfd, 0x1c, 0xfe, 0x82, 0xfe, 0xf1, 0xfe, 0x69, 0xff, 0xe4, 0xff, 0x5f, 0x00, 0xd9, 0x00, 0x54, 0x01, 0xc4, 0x01, 0x31, 0x02, 0x93, 0x02, 0xed, 0x02, 0x39, 0x03, 0x77, 0x03, 0xb1, 0x03, 0xd1, 0x03, 0xeb, 0x03, 0xff, 0x03, 0xce, 0x04, 0x57, 0x05, 0xa6, 0x05, 0x42, 0x06, 0x4b, 0x06, 0x02, 0x06, 0x74, 0x05, 0xca, 0x04, 0xfd, 0x03, 0x23, 0x03, 0x39, 0x02, 0x4b, 0x01, 0x5e, 0x00, 0x75, 0xff, 0x94, 0xfe, 0xbb, 0xfd, 0xf5, 0xfc, 0x3f, 0xfc, 0x9d, 0xfb, 0x11, 0xfb, 0x99, 0xfa, 0x3d, 0xfa, 0xfa, 0xf9, 0xd1, 0xf9, 0xbe, 0xf9, 0xc9, 0xf9, 0xe9, 0xf9, 0x20, 0xfa, 0x6a, 0xfa, 0xcd, 0xfa, 0x45, 0xfb, 0xbd, 0xfb, 0x1f, 0xfc, 0x87, 0xfc, 0x09, 0xfd, 0x93, 0xfd, 0x2d, 0xfe, 0xc9, 0xfe, 0x6f, 0xff, 0x16, 0x00, 0xbc, 0x00, 0x5e, 0x01, 0xf9, 0x01, 0x6f, 0x02, 0xc3, 0x02, 0x15, 0x03, 0x5f, 0x03, 0xa5, 0x03, 0xdd, 0x03, 0x0e, 0x04, 0x37, 0x04, 0x4c, 0x04, 0x5b, 0x04, 0x5e, 0x04, 0x4f, 0x04, 0x37, 0x04, 0xa8, 0x04, 0x0c, 0x05, 0x07, 0x05, 0xce, 0x04, 0x6a, 0x04, 0xf1, 0x03, 0x65, 0x03, 0xc9, 0x02, 0x27, 0x02, 0x7e, 0x01, 0xd0, 0x00, 0x23, 0x00, 0x7e, 0xff, 0xdb, 0xfe, 0x40, 0xfe, 0xb1, 0xfd, 0x33, 0xfd, 0xbf, 0xfc, 0x5b, 0xfc, 0x0b, 0xfc, 0xc9, 0xfb, 0x9c, 0xfb, 0x95, 0xfb, 0x5b, 0xfc, 0x0d, 0xfd, 0x59, 0xfd, 0x91, 0xfd, 0xaf, 0xfd, 0xd7, 0xfd, 0xd7, 0xfd, 0xc7, 0xfd, 0xc5, 0xfd, 0xcd, 0xfd, 0xe5, 0xfd, 0x06, 0xfe, 0x34, 0xfe, 0x6a, 0xfe, 0xac, 0xfe, 0xf4, 0xfe, 0x42, 0xff, 0x95, 0xff, 0xe6, 0xff, 0x3b, 0x00, 0x8e, 0x00, 0xdf, 0x00, 0x31, 0x01, 0x73, 0x01, 0xbb, 0x01, 0xf4, 0x01, 0x2d, 0x02, 0x57, 0x02, 0x81, 0x02, 0x8d, 0x02, 0xdb, 0x02, 0x9d, 0x03, 0x02, 0x04, 0x18, 0x04, 0x03, 0x04, 0xcd, 0x03, 0x83, 0x03, 0x23, 0x03, 0xb7, 0x02, 0x45, 0x02, 0xc7, 0x01, 0x45, 0x01, 0xc4, 0x00, 0x23, 0x00, 0x71, 0xff, 0xca, 0xfe, 0x31, 0xfe, 0xaf, 0xfd, 0x39, 0xfd, 0xd7, 0xfc, 0x85, 0xfc, 0x4b, 0xfc, 0x23, 0xfc, 0x0d, 0xfc, 0x0d, 0xfc, 0x17, 0xfc, 0x3b, 0xfc, 0x6b, 0xfc, 0xa7, 0xfc, 0xf5, 0xfc, 0x1d, 0xfd, 0x4d, 0xfd, 0x91, 0xfd, 0xe3, 0xfd, 0x40, 0xfe, 0xa8, 0xfe, 0x17, 0xff, 0x8a, 0xff, 0x05, 0x00, 0x77, 0x00, 0xf1, 0x00, 0x61, 0x01, 0xd0, 0x01, 0x39, 0x02, 0x93, 0x02, 0xe5, 0x02, 0x2f, 0x03, 0x65, 0x03, 0xab, 0x03, 0x9c, 0x04, 0x4e, 0x05, 0x7b, 0x05, 0x7f, 0x05, 0x43, 0x05, 0x77, 0x05, 0xb2, 0x05, 0x74, 0x05, 0xff, 0x04, 0x5b, 0x04, 0xa3, 0x03, 0xd3, 0x02, 0xff, 0x01, 0x22, 0x01, 0x47, 0x00, 0x6e, 0xff, 0x9d, 0xfe, 0xd1, 0xfd, 0x19, 0xfd, 0x71, 0xfc, 0xdd, 0xfb, 0x5a, 0xfb, 0xec, 0xfa, 0x98, 0xfa, 0x59, 0xfa, 0x39, 0xfa, 0x28, 0xfa, 0x35, 0xfa, 0x4e, 0xfa, 0x88, 0xfa, 0xd1, 0xfa, 0x2d, 0xfb, 0x99, 0xfb, 0x17, 0xfc, 0x87, 0xfc, 0xe7, 0xfc, 0x5b, 0xfd, 0xd5, 0xfd, 0x5d, 0xfe, 0xed, 0xfe, 0x81, 0xff, 0x19, 0x00, 0xad, 0x00, 0x22, 0x01, 0x7e, 0x01, 0xd9, 0x01, 0x37, 0x02, 0x8f, 0x02, 0xe7, 0x02, 0x33, 0x03, 0x79, 0x03, 0xb5, 0x03, 0xe9, 0x03, 0x0a, 0x04, 0x24, 0x04, 0x2f, 0x04, 0x2f, 0x04, 0x16, 0x04, 0x27, 0x04, 0xb2, 0x04, 0xe3, 0x04, 0xcb, 0x04, 0x82, 0x04, 0x17, 0x04, 0x9d, 0x03, 0x0b, 0x03, 0x6f, 0x02, 0xcf, 0x01, 0x2b, 0x01, 0x7d, 0x00, 0xd8, 0xff, 0x36, 0xff, 0x9a, 0xfe, 0x0a, 0xfe, 0x87, 0xfd, 0x0b, 0xfd, 0xa7, 0xfc, 0x45, 0xfc, 0x17, 0xfc, 0xab, 0xfc, 0x1f, 0xfd, 0x3d, 0xfd, 0x43, 0xfd, 0x3d, 0xfd, 0x3d, 0xfd, 0x35, 0xfd, 0x3b, 0xfd, 0x43, 0xfd, 0x2f, 0xfd, 0x1b, 0xfd, 0x1f, 0xfd, 0x2f, 0xfd, 0x4f, 0xfd, 0x7f, 0xfd, 0xbb, 0xfd, 0x04, 0xfe, 0x57, 0xfe, 0xb2, 0xfe, 0x0f, 0xff, 0x75, 0xff, 0xda, 0xff, 0x41, 0x00, 0xa4, 0x00, 0x06, 0x01, 0x64, 0x01, 0xba, 0x01, 0x0b, 0x02, 0x51, 0x02, 0x93, 0x02, 0xc1, 0x02, 0xed, 0x02, 0x05, 0x03, 0x8f, 0x03, 0x43, 0x04, 0x7a, 0x04, 0x82, 0x04, 0x57, 0x04, 0x1a, 0x04, 0xc1, 0x03, 0x59, 0x03, 0xe3, 0x02, 0x63, 0x02, 0xbe, 0x01, 0xfb, 0x00, 0x49, 0x00, 0x9c, 0xff, 0xfd, 0xfe, 0x67, 0xfe, 0xe3, 0xfd, 0x6d, 0xfd, 0x07, 0xfd, 0xaf, 0xfc, 0x71, 0xfc, 0x45, 0xfc, 0x23, 0xfc, 0x11, 0xfc, 0x1d, 0xfc, 0x37, 0xfc, 0x59, 0xfc, 0x91, 0xfc, 0xd1, 0xfc, 0x0f, 0xfd, 0x37, 0xfd, 0x6d, 0xfd, 0xb3, 0xfd, 0x07, 0xfe, 0x67, 0xfe, 0xcd, 0xfe, 0x36, 0xff, 0xab, 0xff, 0x1a, 0x00, 0x92, 0x00, 0x04, 0x01, 0x76, 0x01, 0xdb, 0x01, 0x3f, 0x02, 0x91, 0x02, 0xfd, 0x02, 0x13, 0x04, 0xd6, 0x04, 0x2e, 0x05, 0x4e, 0x05, 0x3c, 0x05, 0x1b, 0x05, 0xcc, 0x04, 0x8f, 0x04, 0xcb, 0x04, 0xcc, 0x04, 0x6e, 0x04, 0xe9, 0x03, 0x49, 0x03, 0x93, 0x02, 0xd0, 0x01, 0x0a, 0x01, 0x40, 0x00, 0x81, 0xff, 0xbd, 0xfe, 0x09, 0xfe, 0x5f, 0xfd, 0xc3, 0xfc, 0x3b, 0xfc, 0xc4, 0xfb, 0x64, 0xfb, 0x11, 0xfb, 0xd9, 0xfa, 0xb9, 0xfa, 0xa9, 0xfa, 0xb5, 0xfa, 0xcd, 0xfa, 0x01, 0xfb, 0x41, 0xfb, 0x96, 0xfb, 0xfe, 0xfb, 0x6b, 0xfc, 0xe9, 0xfc, 0x47, 0xfd, 0xa3, 0xfd, 0x0d, 0xfe, 0x84, 0xfe, 0x02, 0xff, 0x81, 0xff, 0xe7, 0xff, 0x38, 0x00, 0x97, 0x00, 0xf7, 0x00, 0x57, 0x01, 0xb8, 0x01, 0x1d, 0x02, 0x7b, 0x02, 0xd1, 0x02, 0x19, 0x03, 0x65, 0x03, 0x9b, 0x03, 0xcd, 0x03, 0xef, 0x03, 0x04, 0x04, 0x0a, 0x04, 0x04, 0x04, 0xe9, 0x03, 0x2b, 0x04, 0xa7, 0x04, 0xaf, 0x04, 0x87, 0x04, 0x33, 0x04, 0xc5, 0x03, 0x41, 0x03, 0xb3, 0x02, 0x19, 0x02, 0x76, 0x01, 0xd3, 0x00, 0x2f, 0x00, 0x8d, 0xff, 0xf7, 0xfe, 0x60, 0xfe, 0xdd, 0xfd, 0x55, 0xfd, 0x07, 0xfd, 0x71, 0xfd, 0xa9, 0xfd, 0x99, 0xfd, 0x71, 0xfd, 0x3f, 0xfd, 0x0f, 0xfd, 0xe5, 0xfc, 0xc3, 0xfc, 0xab, 0xfc, 0xa1, 0xfc, 0xa1, 0xfc, 0xa3, 0xfc, 0x89, 0xfc, 0x89, 0xfc, 0x9b, 0xfc, 0xbb, 0xfc, 0xef, 0xfc, 0x31, 0xfd, 0x83, 0xfd, 0xdd, 0xfd, 0x45, 0xfe, 0xb4, 0xfe, 0x24, 0xff, 0x99, 0xff, 0x10, 0x00, 0x85, 0x00, 0xf7, 0x00, 0x64, 0x01, 0xc9, 0x01, 0x2d, 0x02, 0x7f, 0x02, 0xcf, 0x02, 0x0b, 0x03, 0x41, 0x03, 0x61, 0x03, 0x8f, 0x03, 0x43, 0x04, 0xbe, 0x04, 0xda, 0x04, 0xca, 0x04, 0x92, 0x04, 0x3f, 0x04, 0xd7, 0x03, 0x45, 0x03, 0x93, 0x02, 0xe1, 0x01, 0x2d, 0x01, 0x80, 0x00, 0xda, 0xff, 0x3c, 0xff, 0xa9, 0xfe, 0x24, 0xfe, 0xad, 0xfd, 0x41, 0xfd, 0xeb, 0xfc, 0x9b, 0xfc, 0x69, 0xfc, 0x45, 0xfc, 0x29, 0xfc, 0x27, 0xfc, 0x35, 0xfc, 0x4d, 0xfc, 0x77, 0xfc, 0xb1, 0xfc, 0xf3, 0xfc, 0x23, 0xfd, 0x4d, 0xfd, 0x85, 0xfd, 0xd3, 0xfd, 0x24, 0xfe, 0x82, 0xfe, 0xe8, 0xfe, 0x57, 0xff, 0xc6, 0xff, 0x37, 0x00, 0xa7, 0x00, 0x19, 0x01, 0x7e, 0x01, 0xff, 0x01, 0x29, 0x03, 0x07, 0x04, 0x7f, 0x04, 0xc2, 0x04, 0xd8, 0x04, 0xd6, 0x04, 0xbb, 0x04, 0x84, 0x04, 0x43, 0x04, 0xe5, 0x03, 0xcb, 0x03, 0x07, 0x04, 0xdd, 0x03, 0x7f, 0x03, 0xf9, 0x02, 0x63, 0x02, 0xb8, 0x01, 0x0c, 0x01, 0x5b, 0x00, 0xab, 0xff, 0x00, 0xff, 0x5d, 0xfe, 0xc1, 0xfd, 0x37, 0xfd, 0xb5, 0xfc, 0x4d, 0xfc, 0xed, 0xfb, 0xa9, 0xfb, 0x6e, 0xfb, 0x4d, 0xfb, 0x3d, 0xfb, 0x41, 0xfb, 0x58, 0xfb, 0x85, 0xfb, 0xbd, 0xfb, 0x03, 0xfc, 0x5b, 0xfc, 0xb9, 0xfc, 0x29, 0xfd, 0x95, 0xfd, 0xe3, 0xfd, 0x3a, 0xfe, 0x99, 0xfe, 0xe1, 0xfe, 0x1d, 0xff, 0x6b, 0xff, 0xc2, 0xff, 0x1d, 0x00, 0x80, 0x00, 0xe8, 0x00, 0x4f, 0x01, 0xb5, 0x01, 0x17, 0x02, 0x75, 0x02, 0xc9, 0x02, 0x15, 0x03, 0x53, 0x03, 0x8d, 0x03, 0xb7, 0x03, 0xd1, 0x03, 0xe5, 0x03, 0xe3, 0x03, 0xdb, 0x03, 0xcd, 0x03, 0x3a, 0x04, 0x88, 0x04, 0x7b, 0x04, 0x40, 0x04, 0xe3, 0x03, 0x71, 0x03, 0xe7, 0x02, 0x57, 0x02, 0xc1, 0x01, 0x22, 0x01, 0x83, 0x00, 0xe6, 0xff, 0x4e, 0xff, 0xb4, 0xfe, 0x49, 0xfe, 0x85, 0xfe, 0x9a, 0xfe, 0x5e, 0xfe, 0x10, 0xfe, 0xb5, 0xfd, 0x5b, 0xfd, 0x07, 0xfd, 0xbd, 0xfc, 0x7b, 0xfc, 0x4f, 0xfc, 0x2b, 0xfc, 0x13, 0xfc, 0x0d, 0xfc, 0x1d, 0xfc, 0x1d, 0xfc, 0x17, 0xfc, 0x2b, 0xfc, 0x4d, 0xfc, 0x87, 0xfc, 0xd1, 0xfc, 0x25, 0xfd, 0x8f, 0xfd, 0xf9, 0xfd, 0x73, 0xfe, 0xf1, 0xfe, 0x74, 0xff, 0xf8, 0xff, 0x77, 0x00, 0xfa, 0x00, 0x70, 0x01, 0xe4, 0x01, 0x4f, 0x02, 0xad, 0x02, 0x01, 0x03, 0x4b, 0x03, 0x83, 0x03, 0xb9, 0x03, 0xc7, 0x03, 0x1f, 0x04, 0xcb, 0x04, 0x0c, 0x05, 0x12, 0x05, 0xe3, 0x04, 0x7c, 0x04, 0xe9, 0x03, 0x4f, 0x03, 0xaf, 0x02, 0x07, 0x02, 0x61, 0x01, 0xbe, 0x00, 0x1f, 0x00, 0x84, 0xff, 0xf6, 0xfe, 0x6c, 0xfe, 0xf1, 0xfd, 0x85, 0xfd, 0x25, 0xfd, 0xd7, 0xfc, 0x99, 0xfc, 0x69, 0xfc, 0x4d, 0xfc, 0x3b, 0xfc, 0x39, 0xfc, 0x4f, 0xfc, 0x6b, 0xfc, 0x9b, 0xfc, 0xd7, 0xfc, 0x15, 0xfd, 0x39, 0xfd, 0x67, 0xfd, 0xa3, 0xfd, 0xed, 0xfd, 0x46, 0xfe, 0xa2, 0xfe, 0x0c, 0xff, 0x74, 0xff, 0xe6, 0xff, 0x50, 0x00, 0xda, 0x00, 0x0f, 0x02, 0xff, 0x02, 0x89, 0x03, 0xe7, 0x03, 0x1a, 0x04, 0x3a, 0x04, 0x3c, 0x04, 0x30, 0x04, 0x0f, 0x04, 0xe1, 0x03, 0xa1, 0x03, 0x57, 0x03, 0x03, 0x03, 0x1b, 0x03, 0x47, 0x03, 0x0f, 0x03, 0xb7, 0x02, 0x39, 0x02, 0xb1, 0x01, 0x21, 0x01, 0x86, 0x00, 0xf2, 0xff, 0x5a, 0xff, 0xc7, 0xfe, 0x3f, 0xfe, 0xbd, 0xfd, 0x4d, 0xfd, 0xe9, 0xfc, 0x8f, 0xfc, 0x49, 0xfc, 0x19, 0xfc, 0xf1, 0xfb, 0xdd, 0xfb, 0xdc, 0xfb, 0xe9, 0xfb, 0x01, 0xfc, 0x35, 0xfc, 0x71, 0xfc, 0xb3, 0xfc, 0x07, 0xfd, 0x63, 0xfd, 0xc5, 0xfd, 0x19, 0xfe, 0x37, 0xfe, 0x54, 0xfe, 0x82, 0xfe, 0xbb, 0xfe, 0x09, 0xff, 0x5d, 0xff, 0xbd, 0xff, 0x1f, 0x00, 0x85, 0x00, 0xee, 0x00, 0x55, 0x01, 0xba, 0x01, 0x21, 0x02, 0x75, 0x02, 0xc9, 0x02, 0x0f, 0x03, 0x4b, 0x03, 0x7d, 0x03, 0x9f, 0x03, 0xb9, 0x03, 0xbf, 0x03, 0xbf, 0x03, 0xa7, 0x03, 0xbf, 0x03, 0x37, 0x04, 0x58, 0x04, 0x37, 0x04, 0xf1, 0x03, 0x8f, 0x03, 0x19, 0x03, 0x91, 0x02, 0x03, 0x02, 0x6c, 0x01, 0xd6, 0x00, 0x32, 0x00, 0xc0, 0xff, 0xea, 0xff, 0xd7, 0xff, 0x7e, 0xff, 0x0c, 0xff, 0x90, 0xfe, 0x0d, 0xfe, 0x93, 0xfd, 0x1f, 0xfd, 0xb9, 0xfc, 0x63, 0xfc, 0x13, 0xfc, 0xde, 0xfb, 0xb4, 0xfb, 0xa2, 0xfb, 0x99, 0xfb, 0xae, 0xfb, 0xc4, 0xfb, 0xc6, 0xfb, 0xd9, 0xfb, 0x05, 0xfc, 0x41, 0xfc, 0x91, 0xfc, 0xef, 0xfc, 0x5b, 0xfd, 0xd7, 0xfd, 0x51, 0xfe, 0xde, 0xfe, 0x66, 0xff, 0xf8, 0xff, 0x7d, 0x00, 0x06, 0x01, 0x88, 0x01, 0x03, 0x02, 0x75, 0x02, 0xdb, 0x02, 0x35, 0x03, 0x81, 0x03, 0xc5, 0x03, 0xef, 0x03, 0x13, 0x04, 0x22, 0x04, 0x9e, 0x04, 0x1e, 0x05, 0x0f, 0x05, 0xcc, 0x04, 0x63, 0x04, 0xed, 0x03, 0x63, 0x03, 0xcf, 0x02, 0x39, 0x02, 0x9c, 0x01, 0x01, 0x01, 0x65, 0x00, 0xce, 0xff, 0x44, 0xff, 0xbe, 0xfe, 0x40, 0xfe, 0xd1, 0xfd, 0x6d, 0xfd, 0x17, 0xfd, 0xcd, 0xfc, 0x97, 0xfc, 0x6d, 0xfc, 0x5b, 0xfc, 0x4b, 0xfc, 0x55, 0xfc, 0x69, 0xfc, 0x8b, 0xfc, 0xbf, 0xfc, 0xf7, 0xfc, 0x2b, 0xfd, 0x4b, 0xfd, 0x85, 0xfd, 0xbd, 0xfd, 0x12, 0xfe, 0x63, 0xfe, 0xc4, 0xfe, 0x27, 0xff, 0xb6, 0xff, 0xe5, 0x00, 0xd3, 0x01, 0x65, 0x02, 0xd1, 0x02, 0x1d, 0x03, 0x55, 0x03, 0x75, 0x03, 0x85, 0x03, 0x83, 0x03, 0x77, 0x03, 0x5b, 0x03, 0x39, 0x03, 0x01, 0x03, 0xcb, 0x02, 0x81, 0x02, 0x59, 0x02, 0xa1, 0x02, 0xaf, 0x02, 0x7b, 0x02, 0x27, 0x02, 0xbb, 0x01, 0x49, 0x01, 0xc7, 0x00, 0x47, 0x00, 0xc9, 0xff, 0x4a, 0xff, 0xcf, 0xfe, 0x5e, 0xfe, 0xf3, 0xfd, 0x97, 0xfd, 0x43, 0xfd, 0xfb, 0xfc, 0xc9, 0xfc, 0x9f, 0xfc, 0x83, 0xfc, 0x79, 0xfc, 0x7d, 0xfc, 0x8b, 0xfc, 0xa9, 0xfc, 0xd1, 0xfc, 0x07, 0xfd, 0x49, 0xfd, 0x8f, 0xfd, 0xbf, 0xfd, 0xe1, 0xfd, 0xf3, 0xfd, 0x0f, 0xfe, 0x37, 0xfe, 0x73, 0xfe, 0xba, 0xfe, 0x0b, 0xff, 0x68, 0xff, 0xc8, 0xff, 0x31, 0x00, 0x97, 0x00, 0x03, 0x01, 0x66, 0x01, 0xca, 0x01, 0x2b, 0x02, 0x7b, 0x02, 0xc9, 0x02, 0x0b, 0x03, 0x3f, 0x03, 0x6b, 0x03, 0x87, 0x03, 0x9b, 0x03, 0x9b, 0x03, 0x95, 0x03, 0x79, 0x03, 0xbb, 0x03, 0x1f, 0x04, 0x1c, 0x04, 0xf5, 0x03, 0xa1, 0x03, 0x3d, 0x03, 0xc1, 0x02, 0x43, 0x02, 0xa8, 0x01, 0x43, 0x01, 0x64, 0x01, 0x3d, 0x01, 0xd1, 0x00, 0x4d, 0x00, 0xb6, 0xff, 0x1a, 0xff, 0x82, 0xfe, 0xeb, 0xfd, 0x5f, 0xfd, 0xe1, 0xfc, 0x71, 0xfc, 0x11, 0xfc, 0xc4, 0xfb, 0x84, 0xfb, 0x5d, 0xfb, 0x4c, 0xfb, 0x49, 0xfb, 0x58, 0xfb, 0x7c, 0xfb, 0x9e, 0xfb, 0xb8, 0xfb, 0xe1, 0xfb, 0x23, 0xfc, 0x75, 0xfc, 0xdd, 0xfc, 0x4b, 0xfd, 0xc7, 0xfd, 0x51, 0xfe, 0xdc, 0xfe, 0x68, 0xff, 0xfb, 0xff, 0x8b, 0x00, 0x19, 0x01, 0x9f, 0x01, 0x1f, 0x02, 0x91, 0x02, 0xff, 0x02, 0x5b, 0x03, 0xa7, 0x03, 0xeb, 0x03, 0x18, 0x04, 0x3b, 0x04, 0x43, 0x04, 0x43, 0x04, 0x9f, 0x04, 0xbb, 0x04, 0x97, 0x04, 0x4f, 0x04, 0xeb, 0x03, 0x77, 0x03, 0xf5, 0x02, 0x6b, 0x02, 0xd9, 0x01, 0x46, 0x01, 0xaf, 0x00, 0x20, 0x00, 0x96, 0xff, 0x0e, 0xff, 0x90, 0xfe, 0x1e, 0xfe, 0xb5, 0xfd, 0x57, 0xfd, 0x09, 0xfd, 0xcd, 0xfc, 0x9b, 0xfc, 0x77, 0xfc, 0x65, 0xfc, 0x5f, 0xfc, 0x6b, 0xfc, 0x81, 0xfc, 0xa7, 0xfc, 0xdb, 0xfc, 0x15, 0xfd, 0x39, 0xfd, 0x67, 0xfd, 0x99, 0xfd, 0xe1, 0xfd, 0x28, 0xfe, 0xac, 0xfe, 0xcf, 0xff, 0xa9, 0x00, 0x39, 0x01, 0xa6, 0x01, 0xfa, 0x01, 0x3b, 0x02, 0x71, 0x02, 0x97, 0x02, 0xb3, 0x02, 0xc1, 0x02, 0xc5, 0x02, 0xbd, 0x02, 0xb3, 0x02, 0x97, 0x02, 0x77, 0x02, 0x4f, 0x02, 0x21, 0x02, 0xe5, 0x01, 0xff, 0x01, 0x55, 0x02, 0x4f, 0x02, 0x27, 0x02, 0xdc, 0x01, 0x82, 0x01, 0x1f, 0x01, 0xb5, 0x00, 0x46, 0x00, 0xda, 0xff, 0x71, 0xff, 0x05, 0xff, 0xa3, 0xfe, 0x4b, 0xfe, 0xfd, 0xfd, 0xb5, 0xfd, 0x79, 0xfd, 0x4b, 0xfd, 0x25, 0xfd, 0x11, 0xfd, 0x05, 0xfd, 0x09, 0xfd, 0x13, 0xfd, 0x2b, 0xfd, 0x4f, 0xfd, 0x59, 0xfd, 0x5f, 0xfd, 0x77, 0xfd, 0xa3, 0xfd, 0xc9, 0xfd, 0xdd, 0xfd, 0x06, 0xfe, 0x39, 0xfe, 0x7b, 0xfe, 0xca, 0xfe, 0x26, 0xff, 0x81, 0xff, 0xe6, 0xff, 0x4d, 0x00, 0xb5, 0x00, 0x19, 0x01, 0x7e, 0x01, 0xdb, 0x01, 0x33, 0x02, 0x81, 0x02, 0xc5, 0x02, 0xff, 0x02, 0x31, 0x03, 0x55, 0x03, 0x6d, 0x03, 0x75, 0x03, 0x75, 0x03, 0x61, 0x03, 0x59, 0x03, 0xbd, 0x03, 0xf5, 0x03, 0xe3, 0x03, 0xa7, 0x03, 0x55, 0x03, 0xe3, 0x02, 0x99, 0x02, 0xc5, 0x02, 0xa3, 0x02, 0x3b, 0x02, 0xa9, 0x01, 0x09, 0x01, 0x64, 0x00, 0xb1, 0xff, 0x05, 0xff, 0x60, 0xfe, 0xc1, 0xfd, 0x2d, 0xfd, 0xad, 0xfc, 0x39, 0xfc, 0xd8, 0xfb, 0x8a, 0xfb, 0x4d, 0xfb, 0x29, 0xfb, 0x15, 0xfb, 0x19, 0xfb, 0x2d, 0xfb, 0x51, 0xfb, 0x90, 0xfb, 0xb1, 0xfb, 0xe5, 0xfb, 0x29, 0xfc, 0x77, 0xfc, 0xe1, 0xfc, 0x53, 0xfd, 0xd3, 0xfd, 0x5a, 0xfe, 0xea, 0xfe, 0x7a, 0xff, 0x0b, 0x00, 0xa0, 0x00, 0x2b, 0x01, 0xb4, 0x01, 0x33, 0x02, 0xa5, 0x02, 0x11, 0x03, 0x6f, 0x03, 0xbf, 0x03, 0xfb, 0x03, 0x2b, 0x04, 0x26, 0x04, 0x0e, 0x04, 0xe1, 0x03, 0x04, 0x04, 0x64, 0x04, 0x60, 0x04, 0x3b, 0x04, 0xeb, 0x03, 0x89, 0x03, 0x17, 0x03, 0x97, 0x02, 0x15, 0x02, 0x88, 0x01, 0xfa, 0x00, 0x6e, 0x00, 0xe6, 0xff, 0x5f, 0xff, 0xe1, 0xfe, 0x6c, 0xfe, 0xfb, 0xfd, 0xa1, 0xfd, 0x49, 0xfd, 0x05, 0xfd, 0xc7, 0xfc, 0x9d, 0xfc, 0x83, 0xfc, 0x71, 0xfc, 0x71, 0xfc, 0x7f, 0xfc, 0x9f, 0xfc, 0xc3, 0xfc, 0xff, 0xfc, 0x2f, 0xfd, 0x55, 0xfd, 0x77, 0xfd, 0xd9, 0xfd, 0xd9, 0xfe, 0x9e, 0xff, 0x20, 0x00, 0x86, 0x00, 0xd6, 0x00, 0x1b, 0x01, 0x58, 0x01, 0x87, 0x01, 0xb2, 0x01, 0xd8, 0x01, 0xf3, 0x01, 0x07, 0x02, 0x15, 0x02, 0x19, 0x02, 0x17, 0x02, 0x0f, 0x02, 0x05, 0x02, 0xee, 0x01, 0xd2, 0x01, 0xb4, 0x01, 0x99, 0x01, 0xf1, 0x01, 0x33, 0x02, 0x29, 0x02, 0x09, 0x02, 0xcc, 0x01, 0x7f, 0x01, 0x28, 0x01, 0xcd, 0x00, 0x70, 0x00, 0x10, 0x00, 0xb1, 0xff, 0x54, 0xff, 0xfd, 0xfe, 0xae, 0xfe, 0x63, 0xfe, 0x24, 0xfe, 0xeb, 0xfd, 0xbd, 0xfd, 0x9b, 0xfd, 0x83, 0xfd, 0x71, 0xfd, 0x6d, 0xfd, 0x53, 0xfd, 0x35, 0xfd, 0x2d, 0xfd, 0x31, 0xfd, 0x49, 0xfd, 0x6d, 0xfd, 0x9d, 0xfd, 0xc3, 0xfd, 0xe1, 0xfd, 0x0f, 0xfe, 0x4c, 0xfe, 0x94, 0xfe, 0xe5, 0xfe, 0x44, 0xff, 0x9f, 0xff, 0x02, 0x00, 0x6a, 0x00, 0xcd, 0x00, 0x2e, 0x01, 0x91, 0x01, 0xe8, 0x01, 0x39, 0x02, 0x81, 0x02, 0xc1, 0x02, 0xf7, 0x02, 0x1d, 0x03, 0x35, 0x03, 0x4b, 0x03, 0x4b, 0x03, 0x47, 0x03, 0x2d, 0x03, 0x51, 0x03, 0xb3, 0x03, 0xc9, 0x03, 0xa1, 0x03, 0x85, 0x03, 0xd7, 0x03, 0xd1, 0x03, 0x7b, 0x03, 0xfd, 0x02, 0x65, 0x02, 0xba, 0x01, 0x06, 0x01, 0x4f, 0x00, 0x9b, 0xff, 0xe8, 0xfe, 0x3c, 0xfe, 0x9d, 0xfd, 0x0b, 0xfd, 0x89, 0xfc, 0x13, 0xfc, 0xb9, 0xfb, 0x6c, 0xfb, 0x36, 0xfb, 0x15, 0xfb, 0x02, 0xfb, 0x09, 0xfb, 0x21, 0xfb, 0x4d, 0xfb, 0x8a, 0xfb, 0xd0, 0xfb, 0x00, 0xfc, 0x41, 0xfc, 0x99, 0xfc, 0xfd, 0xfc, 0x6f, 0xfd, 0xed, 0xfd, 0x73, 0xfe, 0xfd, 0xfe, 0x93, 0xff, 0x20, 0x00, 0xb0, 0x00, 0x3a, 0x01, 0xc1, 0x01, 0x3f, 0x02, 0xb1, 0x02, 0x17, 0x03, 0x6f, 0x03, 0xbd, 0x03, 0xd7, 0x03, 0xd9, 0x03, 0xd5, 0x03, 0xc9, 0x03, 0xaf, 0x03, 0x9f, 0x03, 0xf3, 0x03, 0x2e, 0x04, 0x1b, 0x04, 0xe9, 0x03, 0x97, 0x03, 0x37, 0x03, 0xc1, 0x02, 0x4b, 0x02, 0xc6, 0x01, 0x40, 0x01, 0xb8, 0x00, 0x31, 0x00, 0xae, 0xff, 0x2d, 0xff, 0xb7, 0xfe, 0x46, 0xfe, 0xdf, 0xfd, 0x85, 0xfd, 0x3b, 0xfd, 0xf9, 0xfc, 0xc3, 0xfc, 0x9f, 0xfc, 0x85, 0xfc, 0x7f, 0xfc, 0x83, 0xfc, 0x9d, 0xfc, 0xb7, 0xfc, 0xe7, 0xfc, 0x1d, 0xfd, 0x67, 0xfd, 0x42, 0xfe, 0xe1, 0xfe, 0x44, 0xff, 0x95, 0xff, 0xd2, 0xff, 0x0e, 0x00, 0x3d, 0x00, 0x73, 0x00, 0xa3, 0x00, 0xcd, 0x00, 0xf4, 0x00, 0x1b, 0x01, 0x3c, 0x01, 0x58, 0x01, 0x75, 0x01, 0x88, 0x01, 0x97, 0x01, 0xa3, 0x01, 0xa3, 0x01, 0xa9, 0x01, 0x9d, 0x01, 0x97, 0x01, 0x7e, 0x01, 0xa3, 0x01, 0x17, 0x02, 0x41, 0x02, 0x3f, 0x02, 0x1d, 0x02, 0xea, 0x01, 0xa5, 0x01, 0x5a, 0x01, 0x04, 0x01, 0xb2, 0x00, 0x56, 0x00, 0xff, 0xff, 0xaa, 0xff, 0x56, 0xff, 0x09, 0xff, 0xc1, 0xfe, 0x7f, 0xfe, 0x43, 0xfe, 0x16, 0xfe, 0xeb, 0xfd, 0xad, 0xfd, 0x69, 0xfd, 0x3d, 0xfd, 0x21, 0xfd, 0x15, 0xfd, 0x19, 0xfd, 0x2b, 0xfd, 0x4b, 0xfd, 0x79, 0xfd, 0xad, 0xfd, 0xcb, 0xfd, 0xf5, 0xfd, 0x2a, 0xfe, 0x6c, 0xfe, 0xb5, 0xfe, 0x09, 0xff, 0x66, 0xff, 0xc2, 0xff, 0x25, 0x00, 0x85, 0x00, 0xe6, 0x00, 0x45, 0x01, 0x9d, 0x01, 0xf1, 0x01, 0x3b, 0x02, 0x7d, 0x02, 0xb1, 0x02, 0xe3, 0x02, 0xff, 0x02, 0x1b, 0x03, 0x21, 0x03, 0x23, 0x03, 0x17, 0x03, 0x07, 0x03, 0x4f, 0x03, 0xc5, 0x03, 0x64, 0x04, 0x97, 0x04, 0x6e, 0x04, 0x10, 0x04, 0x8f, 0x03, 0xf9, 0x02, 0x4f, 0x02, 0x9c, 0x01, 0xe2, 0x00, 0x2b, 0x00, 0x75, 0xff, 0xc1, 0xfe, 0x1c, 0xfe, 0x7f, 0xfd, 0xf5, 0xfc, 0x71, 0xfc, 0x07, 0xfc, 0xb1, 0xfb, 0x66, 0xfb, 0x35, 0xfb, 0x19, 0xfb, 0x0c, 0xfb, 0x15, 0xfb, 0x34, 0xfb, 0x64, 0xfb, 0xa1, 0xfb, 0xf2, 0xfb, 0x35, 0xfc, 0x77, 0xfc, 0xc9, 0xfc, 0x2b, 0xfd, 0x9d, 0xfd, 0x16, 0xfe, 0x99, 0xfe, 0x21, 0xff, 0xa8, 0xff, 0x37, 0x00, 0xbe, 0x00, 0x49, 0x01, 0xc4, 0x01, 0x3f, 0x02, 0xab, 0x02, 0x0b, 0x03, 0x41, 0x03, 0x59, 0x03, 0x77, 0x03, 0x83, 0x03, 0x93, 0x03, 0x89, 0x03, 0x83, 0x03, 0x65, 0x03, 0x85, 0x03, 0xe9, 0x03, 0xfb, 0x03, 0xdd, 0x03, 0xa1, 0x03, 0x4d, 0x03, 0xe7, 0x02, 0x75, 0x02, 0xff, 0x01, 0x7c, 0x01, 0xfb, 0x00, 0x74, 0x00, 0xf6, 0xff, 0x75, 0xff, 0xfc, 0xfe, 0x88, 0xfe, 0x1f, 0xfe, 0xc1, 0xfd, 0x6d, 0xfd, 0x25, 0xfd, 0xe7, 0xfc, 0xbf, 0xfc, 0x9f, 0xfc, 0x91, 0xfc, 0x8d, 0xfc, 0x99, 0xfc, 0xab, 0xfc, 0xfd, 0xfc, 0xdb, 0xfd, 0x78, 0xfe, 0xb8, 0xfe, 0xe7, 0xfe, 0x09, 0xff, 0x2f, 0xff, 0x51, 0xff, 0x75, 0xff, 0x9c, 0xff, 0xc5, 0xff, 0xef, 0xff, 0x19, 0x00, 0x47, 0x00, 0x70, 0x00, 0x9d, 0x00, 0xc5, 0x00, 0xee, 0x00, 0x0f, 0x01, 0x33, 0x01, 0x4e, 0x01, 0x63, 0x01, 0x7c, 0x01, 0x85, 0x01, 0x8e, 0x01, 0x8e, 0x01, 0x91, 0x01, 0xff, 0x01, 0x61, 0x02, 0x77, 0x02, 0x75, 0x02, 0x51, 0x02, 0x1f, 0x02, 0xde, 0x01, 0x93, 0x01, 0x46, 0x01, 0xf4, 0x00, 0x98, 0x00, 0x46, 0x00, 0xed, 0xff, 0x99, 0xff, 0x4a, 0xff, 0xff, 0xfe, 0xb8, 0xfe, 0x5a, 0xfe, 0xf9, 0xfd, 0xa9, 0xfd, 0x6b, 0xfd, 0x3f, 0xfd, 0x1b, 0xfd, 0x11, 0xfd, 0x0d, 0xfd, 0x1f, 0xfd, 0x39, 0xfd, 0x61, 0xfd, 0x95, 0xfd, 0xc1, 0xfd, 0xdd, 0xfd, 0x0f, 0xfe, 0x4c, 0xfe, 0x90, 0xfe, 0xde, 0xfe, 0x30, 0xff, 0x8c, 0xff, 0xe7, 0xff, 0x46, 0x00, 0xa4, 0x00, 0x01, 0x01, 0x58, 0x01, 0xab, 0x01, 0xf7, 0x01, 0x39, 0x02, 0x75, 0x02, 0xa5, 0x02, 0xcf, 0x02, 0xed, 0x02, 0xfd, 0x02, 0x05, 0x03, 0xfb, 0x02, 0x11, 0x03, 0xc7, 0x03, 0x86, 0x04, 0xc4, 0x04, 0xaf, 0x04, 0x60, 0x04, 0xef, 0x03, 0x67, 0x03, 0xcb, 0x02, 0x21, 0x02, 0x6f, 0x01, 0xbc, 0x00, 0x07, 0x00, 0x56, 0xff, 0xab, 0xfe, 0x0f, 0xfe, 0x77, 0xfd, 0xf1, 0xfc, 0x7b, 0xfc, 0x13, 0xfc, 0xc1, 0xfb, 0x7e, 0xfb, 0x54, 0xfb, 0x39, 0xfb, 0x35, 0xfb, 0x41, 0xfb, 0x65, 0xfb, 0x90, 0xfb, 0xd2, 0xfb, 0x23, 0xfc, 0x7b, 0xfc, 0xc1, 0xfc, 0x0d, 0xfd, 0x69, 0xfd, 0xd3, 0xfd, 0x46, 0xfe, 0xc1, 0xfe, 0x44, 0xff, 0xc6, 0xff, 0x47, 0x00, 0xc7, 0x00, 0x48, 0x01, 0xbe, 0x01, 0x2d, 0x02, 0x71, 0x02, 0xa7, 0x02, 0xd5, 0x02, 0xff, 0x02, 0x23, 0x03, 0x3d, 0x03, 0x51, 0x03, 0x5b, 0x03, 0x57, 0x03, 0x4d, 0x03, 0x3b, 0x03, 0x83, 0x03, 0xcb, 0x03, 0xc7, 0x03, 0xa5, 0x03, 0x5d, 0x03, 0x09, 0x03, 0xa1, 0x02, 0x2f, 0x02, 0xb8, 0x01, 0x3a, 0x01, 0xb8, 0x00, 0x3a, 0x00, 0xbc, 0xff, 0x42, 0xff, 0xca, 0xfe, 0x60, 0xfe, 0xfd, 0xfd, 0xa3, 0xfd, 0x55, 0xfd, 0x17, 0xfd, 0xe3, 0xfc, 0xbd, 0xfc, 0xa9, 0xfc, 0x95, 0xfc, 0xcd, 0xfc, 0x81, 0xfd, 0xfd, 0xfd, 0x49, 0xfe, 0x82, 0xfe, 0x9a, 0xfe, 0x9a, 0xfe, 0xa3, 0xfe, 0xb1, 0xfe, 0xc3, 0xfe, 0xdc, 0xfe, 0xfc, 0xfe, 0x20, 0xff, 0x4a, 0xff, 0x78, 0xff, 0xaa, 0xff, 0xdd, 0xff, 0x14, 0x00, 0x49, 0x00, 0x7f, 0x00, 0xb2, 0x00, 0xe5, 0x00, 0x10, 0x01, 0x3a, 0x01, 0x5e, 0x01, 0x7f, 0x01, 0x9a, 0x01, 0xae, 0x01, 0xb5, 0x01, 0xe5, 0x01, 0x69, 0x02, 0xb1, 0x02, 0xc5, 0x02, 0xb7, 0x02, 0x95, 0x02, 0x63, 0x02, 0x21, 0x02, 0xd8, 0x01, 0x85, 0x01, 0x2d, 0x01, 0xd4, 0x00, 0x76, 0x00, 0x1c, 0x00, 0xc6, 0xff, 0x4b, 0xff, 0xd8, 0xfe, 0x69, 0xfe, 0x0f, 0xfe, 0xbd, 0xfd, 0x7f, 0xfd, 0x4b, 0xfd, 0x27, 0xfd, 0x19, 0xfd, 0x0f, 0xfd, 0x1b, 0xfd, 0x2d, 0xfd, 0x53, 0xfd, 0x7f, 0xfd, 0xb1, 0xfd, 0xd3, 0xfd, 0xf7, 0xfd, 0x2a, 0xfe, 0x6a, 0xfe, 0xae, 0xfe, 0xfc, 0xfe, 0x4e, 0xff, 0xaa, 0xff, 0x02, 0x00, 0x5b, 0x00, 0xb9, 0x00, 0x0c, 0x01, 0x63, 0x01, 0xab, 0x01, 0xf6, 0x01, 0x33, 0x02, 0x6b, 0x02, 0x93, 0x02, 0xbd, 0x02, 0xc9, 0x02, 0x09, 0x03, 0xad, 0x03, 0x00, 0x04, 0x07, 0x04, 0x47, 0x04, 0x82, 0x04, 0x60, 0x04, 0x1c, 0x04, 0xa7, 0x03, 0x29, 0x03, 0x8b, 0x02, 0xed, 0x01, 0x43, 0x01, 0x9a, 0x00, 0xf2, 0xff, 0x48, 0xff, 0xac, 0xfe, 0x15, 0xfe, 0x87, 0xfd, 0x0b, 0xfd, 0x9b, 0xfc, 0x3b, 0xfc, 0xf5, 0xfb, 0xb5, 0xfb, 0x8d, 0xfb, 0x7a, 0xfb, 0x75, 0xfb, 0x85, 0xfb, 0xa5, 0xfb, 0xd5, 0xfb, 0x19, 0xfc, 0x5f, 0xfc, 0xbf, 0xfc, 0x11, 0xfd, 0x59, 0xfd, 0xab, 0xfd, 0x09, 0xfe, 0x79, 0xfe, 0xe5, 0xfe, 0x5a, 0xff, 0xd5, 0xff, 0x4a, 0x00, 0xc2, 0x00, 0x36, 0x01, 0x84, 0x01, 0xc6, 0x01, 0x07, 0x02, 0x41, 0x02, 0x79, 0x02, 0xab, 0x02, 0xd9, 0x02, 0xfb, 0x02, 0x15, 0x03, 0x29, 0x03, 0x2f, 0x03, 0x2f, 0x03, 0x21, 0x03, 0x27, 0x03, 0x83, 0x03, 0xa9, 0x03, 0x99, 0x03, 0x69, 0x03, 0x23, 0x03, 0xc7, 0x02, 0x5d, 0x02, 0xee, 0x01, 0x78, 0x01, 0xfb, 0x00, 0x7d, 0x00, 0x01, 0x00, 0x86, 0xff, 0x15, 0xff, 0xa5, 0xfe, 0x40, 0xfe, 0xdf, 0xfd, 0x8f, 0xfd, 0x49, 0xfd, 0x11, 0xfd, 0xdd, 0xfc, 0xe9, 0xfc, 0x79, 0xfd, 0xcd, 0xfd, 0xfd, 0xfd, 0x16, 0xfe, 0x21, 0xfe, 0x37, 0xfe, 0x42, 0xfe, 0x39, 0xfe, 0x2d, 0xfe, 0x2e, 0xfe, 0x36, 0xfe, 0x48, 0xfe, 0x66, 0xfe, 0x8e, 0xfe, 0xbb, 0xfe, 0xeb, 0xfe, 0x27, 0xff, 0x65, 0xff, 0xa7, 0xff, 0xe7, 0xff, 0x2b, 0x00, 0x6d, 0x00, 0xad, 0x00, 0xee, 0x00, 0x22, 0x01, 0x5b, 0x01, 0x85, 0x01, 0xb4, 0x01, 0xd2, 0x01, 0xf3, 0x01, 0x01, 0x02, 0x5b, 0x02, 0xd9, 0x02, 0x07, 0x03, 0x15, 0x03, 0xff, 0x02, 0xdb, 0x02, 0x9f, 0x02, 0x5b, 0x02, 0x07, 0x02, 0xb1, 0x01, 0x54, 0x01, 0xf1, 0x00, 0x70, 0x00, 0xea, 0xff, 0x71, 0xff, 0xf7, 0xfe, 0x8d, 0xfe, 0x31, 0xfe, 0xe1, 0xfd, 0x9d, 0xfd, 0x69, 0xfd, 0x3f, 0xfd, 0x27, 0xfd, 0x1b, 0xfd, 0x1d, 0xfd, 0x2b, 0xfd, 0x45, 0xfd, 0x6b, 0xfd, 0x9d, 0xfd, 0xcd, 0xfd, 0xe7, 0xfd, 0x10, 0xfe, 0x43, 0xfe, 0x81, 0xfe, 0xca, 0xfe, 0x15, 0xff, 0x68, 0xff, 0xc0, 0xff, 0x11, 0x00, 0x6a, 0x00, 0xbf, 0x00, 0x15, 0x01, 0x61, 0x01, 0xaf, 0x01, 0xed, 0x01, 0x2b, 0x02, 0x55, 0x02, 0xb1, 0x02, 0x6d, 0x03, 0xd5, 0x03, 0xff, 0x03, 0x00, 0x04, 0xe1, 0x03, 0xbd, 0x03, 0xe9, 0x03, 0xef, 0x03, 0xb1, 0x03, 0x57, 0x03, 0xdb, 0x02, 0x51, 0x02, 0xbd, 0x01, 0x27, 0x01, 0x89, 0x00, 0xec, 0xff, 0x56, 0xff, 0xc1, 0xfe, 0x37, 0xfe, 0xb5, 0xfd, 0x43, 0xfd, 0xdd, 0xfc, 0x83, 0xfc, 0x3f, 0xfc, 0x07, 0xfc, 0xe5, 0xfb, 0xd0, 0xfb, 0xcd, 0xfb, 0xde, 0xfb, 0xf6, 0xfb, 0x29, 0xfc, 0x61, 0xfc, 0xa7, 0xfc, 0xfd, 0xfc, 0x5b, 0xfd, 0xa5, 0xfd, 0xe9, 0xfd, 0x3f, 0xfe, 0x9a, 0xfe, 0xff, 0xfe, 0x68, 0xff, 0xd4, 0xff, 0x3b, 0x00, 0x89, 0x00, 0xc8, 0x00, 0x10, 0x01, 0x58, 0x01, 0x9d, 0x01, 0xe1, 0x01, 0x21, 0x02, 0x5d, 0x02, 0x91, 0x02, 0xb9, 0x02, 0xe1, 0x02, 0xfb, 0x02, 0x0d, 0x03, 0x0f, 0x03, 0x11, 0x03, 0xfd, 0x02, 0x29, 0x03, 0x79, 0x03, 0x87, 0x03, 0x6f, 0x03, 0x31, 0x03, 0xe7, 0x02, 0x8b, 0x02, 0x21, 0x02, 0xb1, 0x01, 0x3c, 0x01, 0xbc, 0x00, 0x46, 0x00, 0xcb, 0xff, 0x57, 0xff, 0xe7, 0xfe, 0x7f, 0xfe, 0x1c, 0xfe, 0xc9, 0xfd, 0x75, 0xfd, 0x67, 0xfd, 0xcd, 0xfd, 0xf7, 0xfd, 0x03, 0xfe, 0xf7, 0xfd, 0xe9, 0xfd, 0xd9, 0xfd, 0xcf, 0xfd, 0xc9, 0xfd, 0xcd, 0xfd, 0xcd, 0xfd, 0xb5, 0xfd, 0xaf, 0xfd, 0xb1, 0xfd, 0xc7, 0xfd, 0xe1, 0xfd, 0x0f, 0xfe, 0x3f, 0xfe, 0x79, 0xfe, 0xbd, 0xfe, 0x03, 0xff, 0x51, 0xff, 0x9f, 0xff, 0xf0, 0xff, 0x41, 0x00, 0x8e, 0x00, 0xdc, 0x00, 0x21, 0x01, 0x66, 0x01, 0xa2, 0x01, 0xd5, 0x01, 0x05, 0x02, 0x2d, 0x02, 0x4b, 0x02, 0x65, 0x02, 0xe1, 0x02, 0x3d, 0x03, 0x5f, 0x03, 0x5b, 0x03, 0x3b, 0x03, 0x0b, 0x03, 0xc5, 0x02, 0x79, 0x02, 0x1d, 0x02, 0x9d, 0x01, 0x13, 0x01, 0x8f, 0x00, 0x0e, 0x00, 0x98, 0xff, 0x27, 0xff, 0xbd, 0xfe, 0x5e, 0xfe, 0x0a, 0xfe, 0xc7, 0xfd, 0x8b, 0xfd, 0x5f, 0xfd, 0x41, 0xfd, 0x2b, 0xfd, 0x27, 0xfd, 0x2f, 0xfd, 0x3d, 0xfd, 0x5d, 0xfd, 0x85, 0xfd, 0xbb, 0xfd, 0xdf, 0xfd, 0xfd, 0xfd, 0x28, 0xfe, 0x5b, 0xfe, 0x9a, 0xfe, 0xdf, 0xfe, 0x2c, 0xff, 0x7d, 0xff, 0xd1, 0xff, 0x26, 0x00, 0x76, 0x00, 0xd0, 0x00, 0x19, 0x01, 0x69, 0x01, 0xa3, 0x01, 0x1f, 0x02, 0xf1, 0x02, 0x67, 0x03, 0xad, 0x03, 0xc5, 0x03, 0xcb, 0x03, 0xb1, 0x03, 0x87, 0x03, 0x49, 0x03, 0x2f, 0x03, 0x4f, 0x03, 0x35, 0x03, 0xf1, 0x02, 0x8b, 0x02, 0x19, 0x02, 0x97, 0x01, 0x0f, 0x01, 0x85, 0x00, 0xf9, 0xff, 0x6e, 0xff, 0xed, 0xfe, 0x6d, 0xfe, 0xf7, 0xfd, 0x8f, 0xfd, 0x31, 0xfd, 0xe3, 0xfc, 0xa3, 0xfc, 0x71, 0xfc, 0x4b, 0xfc, 0x3d, 0xfc, 0x33, 0xfc, 0x43, 0xfc, 0x5d, 0xfc, 0x81, 0xfc, 0xb9, 0xfc, 0xf7, 0xfc, 0x41, 0xfd, 0x97, 0xfd, 0xeb, 0xfd, 0x2a, 0xfe, 0x70, 0xfe, 0xbb, 0xfe, 0x11, 0xff, 0x65, 0xff, 0xa2, 0xff, 0xdd, 0xff, 0x1f, 0x00, 0x64, 0x00, 0xaf, 0x00, 0xfe, 0x00, 0x43, 0x01, 0x90, 0x01, 0xd3, 0x01, 0x13, 0x02, 0x51, 0x02, 0x7f, 0x02, 0xab, 0x02, 0xcf, 0x02, 0xe7, 0x02, 0xf3, 0x02, 0xf9, 0x02, 0xf1, 0x02, 0xe5, 0x02, 0x29, 0x03, 0x65, 0x03, 0x5f, 0x03, 0x3b, 0x03, 0xfb, 0x02, 0xab, 0x02, 0x4d, 0x02, 0xe2, 0x01, 0x6f, 0x01, 0xfa, 0x00, 0x86, 0x00, 0x0e, 0x00, 0x9b, 0xff, 0x29, 0xff, 0xc3, 0xfe, 0x54, 0xfe, 0x3a, 0xfe, 0x78, 0xfe, 0x7b, 0xfe, 0x5e, 0xfe, 0x33, 0xfe, 0x03, 0xfe, 0xd7, 0xfd, 0xa9, 0xfd, 0x8b, 0xfd, 0x71, 0xfd, 0x5f, 0xfd, 0x55, 0xfd, 0x5b, 0xfd, 0x53, 0xfd, 0x47, 0xfd, 0x4b, 0xfd, 0x5f, 0xfd, 0x7d, 0xfd, 0xab, 0xfd, 0xe1, 0xfd, 0x25, 0xfe, 0x6d, 0xfe, 0xbd, 0xfe, 0x17, 0xff, 0x6c, 0xff, 0xc9, 0xff, 0x25, 0x00, 0x7d, 0x00, 0xd7, 0x00, 0x28, 0x01, 0x75, 0x01, 0xc1, 0x01, 0x01, 0x02, 0x35, 0x02, 0x63, 0x02, 0x8d, 0x02, 0x9f, 0x02, 0xdb, 0x02, 0x53, 0x03, 0x8f, 0x03, 0x9b, 0x03, 0x89, 0x03, 0x5b, 0x03, 0x19, 0x03, 0xad, 0x02, 0x2f, 0x02, 0xb4, 0x01, 0x36, 0x01, 0xb9, 0x00, 0x40, 0x00, 0xc8, 0xff, 0x59, 0xff, 0xf4, 0xfe, 0x94, 0xfe, 0x3f, 0xfe, 0xf5, 0xfd, 0xb5, 0xfd, 0x85, 0xfd, 0x5b, 0xfd, 0x47, 0xfd, 0x39, 0xfd, 0x37, 0xfd, 0x41, 0xfd, 0x59, 0xfd, 0x73, 0xfd, 0x9f, 0xfd, 0xcd, 0xfd, 0xeb, 0xfd, 0x0c, 0xfe, 0x37, 0xfe, 0x6f, 0xfe, 0xaf, 0xfe, 0xf3, 0xfe, 0x42, 0xff, 0x90, 0xff, 0xe3, 0xff, 0x2f, 0x00, 0x8b, 0x00, 0xd0, 0x00, 0x58, 0x01, 0x35, 0x02, 0xc1, 0x02, 0x17, 0x03, 0x4d, 0x03, 0x65, 0x03, 0x69, 0x03, 0x5b, 0x03, 0x41, 0x03, 0x15, 0x03, 0xe1, 0x02, 0x9b, 0x02, 0xa3, 0x02, 0xb7, 0x02, 0x8d, 0x02, 0x47, 0x02, 0xe5, 0x01, 0x7f, 0x01, 0x06, 0x01, 0x8e, 0x00, 0x16, 0x00, 0x9e, 0xff, 0x24, 0xff, 0xb5, 0xfe, 0x4e, 0xfe, 0xf1, 0xfd, 0x97, 0xfd, 0x4f, 0xfd, 0x13, 0xfd, 0xe5, 0xfc, 0xbf, 0xfc, 0xad, 0xfc, 0xa9, 0xfc, 0xad, 0xfc, 0xc3, 0xfc, 0xe3, 0xfc, 0x0d, 0xfd, 0x43, 0xfd, 0x83, 0xfd, 0xcb, 0xfd, 0x1c, 0xfe, 0x60, 0xfe, 0x97, 0xfe, 0xcf, 0xfe, 0xf3, 0xfe, 0x1d, 0xff, 0x4d, 0xff, 0x8c, 0xff, 0xcb, 0xff, 0x14, 0x00, 0x5f, 0x00, 0xac, 0x00, 0xfd, 0x00, 0x49, 0x01, 0x90, 0x01, 0xd6, 0x01, 0x15, 0x02, 0x4b, 0x02, 0x7b, 0x02, 0xa5, 0x02, 0xc1, 0x02, 0xd5, 0x02, 0xdb, 0x02, 0xe1, 0x02, 0xcd, 0x02, 0xdb, 0x02, 0x25, 0x03, 0x45, 0x03, 0x33, 0x03, 0x03, 0x03, 0xbd, 0x02, 0x69, 0x02, 0x07, 0x02, 0x9f, 0x01, 0x2e, 0x01, 0xbf, 0x00, 0x47, 0x00, 0xdb, 0xff, 0x62, 0xff, 0x35, 0xff, 0x5c, 0xff, 0x41, 0xff, 0x09, 0xff, 0xc0, 0xfe, 0x76, 0xfe, 0x28, 0xfe, 0xe1, 0xfd, 0x9f, 0xfd, 0x67, 0xfd, 0x39, 0xfd, 0x19, 0xfd, 0x01, 0xfd, 0xf3, 0xfc, 0xf7, 0xfc, 0x01, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0x15, 0xfd, 0x39, 0xfd, 0x67, 0xfd, 0xa5, 0xfd, 0xeb, 0xfd, 0x40, 0xfe, 0x96, 0xfe, 0xf4, 0xfe, 0x54, 0xff, 0xbc, 0xff, 0x1f, 0x00, 0x7d, 0x00, 0xe0, 0x00, 0x3d, 0x01, 0x90, 0x01, 0xde, 0x01, 0x29, 0x02, 0x63, 0x02, 0x95, 0x02, 0xbd, 0x02, 0xdf, 0x02, 0xeb, 0x02, 0x43, 0x03, 0xa1, 0x03, 0xbf, 0x03, 0xb1, 0x03, 0x6f, 0x03, 0x17, 0x03, 0xaf, 0x02, 0x3f, 0x02, 0xcd, 0x01, 0x5b, 0x01, 0xe6, 0x00, 0x6e, 0x00, 0xfe, 0xff, 0x95, 0xff, 0x2d, 0xff, 0xcf, 0xfe, 0x78, 0xfe, 0x2a, 0xfe, 0xe5, 0xfd, 0xad, 0xfd, 0x83, 0xfd, 0x61, 0xfd, 0x4d, 0xfd, 0x43, 0xfd, 0x49, 0xfd, 0x55, 0xfd, 0x6d, 0xfd, 0x8d, 0xfd, 0xbb, 0xfd, 0xe1, 0xfd, 0xf7, 0xfd, 0x1e, 0xfe, 0x48, 0xfe, 0x87, 0xfe, 0xc0, 0xfe, 0x0c, 0xff, 0x53, 0xff, 0xa8, 0xff, 0xf0, 0xff, 0x7d, 0x00, 0x5e, 0x01, 0xed, 0x01, 0x57, 0x02, 0x9b, 0x02, 0xc7, 0x02, 0xe3, 0x02, 0xef, 0x02, 0xeb, 0x02, 0xdb, 0x02, 0xc3, 0x02, 0x9b, 0x02, 0x6d, 0x02, 0x33, 0x02, 0x09, 0x02, 0x2d, 0x02, 0x2d, 0x02, 0x03, 0x02, 0xc0, 0x01, 0x69, 0x01, 0x0f, 0x01, 0xaa, 0x00, 0x40, 0x00, 0xdb, 0xff, 0x72, 0xff, 0x11, 0xff, 0xb4, 0xfe, 0x5d, 0xfe, 0x12, 0xfe, 0xcb, 0xfd, 0x95, 0xfd, 0x65, 0xfd, 0x41, 0xfd, 0x2d, 0xfd, 0x1f, 0xfd, 0x1f, 0xfd, 0x2f, 0xfd, 0x43, 0xfd, 0x67, 0xfd, 0x8d, 0xfd, 0xc5, 0xfd, 0xfd, 0xfd, 0x42, 0xfe, 0x7f, 0xfe, 0x91, 0xfe, 0x9a, 0xfe, 0xb8, 0xfe, 0xdc, 0xfe, 0x0c, 0xff, 0x48, 0xff, 0x8a, 0xff, 0xcc, 0xff, 0x1c, 0x00, 0x6a, 0x00, 0xbc, 0x00, 0x04, 0x01, 0x52, 0x01, 0x99, 0x01, 0xdb, 0x01, 0x15, 0x02, 0x4b, 0x02, 0x75, 0x02, 0x97, 0x02, 0xaf, 0x02, 0xbd, 0x02, 0xc1, 0x02, 0xbd, 0x02, 0xab, 0x02, 0xd5, 0x02, 0x17, 0x03, 0x17, 0x03, 0xff, 0x02, 0xc7, 0x02, 0x7d, 0x02, 0x27, 0x02, 0xc7, 0x01, 0x5b, 0x01, 0xf2, 0x00, 0x7c, 0x00, 0x4d, 0x00, 0x61, 0x00, 0x34, 0x00, 0xec, 0xff, 0x8d, 0xff, 0x2c, 0xff, 0xc4, 0xfe, 0x61, 0xfe, 0x07, 0xfe, 0xaf, 0xfd, 0x67, 0xfd, 0x25, 0xfd, 0xf3, 0xfc, 0xcd, 0xfc, 0xb3, 0xfc, 0xa5, 0xfc, 0xab, 0xfc, 0xb9, 0xfc, 0xc9, 0xfc, 0xd3, 0xfc, 0xe9, 0xfc, 0x0d, 0xfd, 0x43, 0xfd, 0x83, 0xfd, 0xcf, 0xfd, 0x25, 0xfe, 0x84, 0xfe, 0xe7, 0xfe, 0x4d, 0xff, 0xb7, 0xff, 0x20, 0x00, 0x88, 0x00, 0xee, 0x00, 0x4e, 0x01, 0xa9, 0x01, 0xfa, 0x01, 0x49, 0x02, 0x83, 0x02, 0xbd, 0x02, 0xe5, 0x02, 0x05, 0x03, 0x15, 0x03, 0x2d, 0x03, 0x85, 0x03, 0xa1, 0x03, 0x83, 0x03, 0x51, 0x03, 0x0b, 0x03, 0xb5, 0x02, 0x57, 0x02, 0xee, 0x01, 0x7f, 0x01, 0x13, 0x01, 0xa4, 0x00, 0x37, 0x00, 0xcf, 0xff, 0x6c, 0xff, 0x0e, 0xff, 0xb1, 0xfe, 0x63, 0xfe, 0x1c, 0xfe, 0xdf, 0xfd, 0xaf, 0xfd, 0x89, 0xfd, 0x69, 0xfd, 0x5b, 0xfd, 0x55, 0xfd, 0x5b, 0xfd, 0x67, 0xfd, 0x85, 0xfd, 0xa7, 0xfd, 0xcf, 0xfd, 0xef, 0xfd, 0x0a, 0xfe, 0x2d, 0xfe, 0x63, 0xfe, 0x99, 0xfe, 0xde, 0xfe, 0x1a, 0xff, 0xaa, 0xff, 0x83, 0x00, 0x0f, 0x01, 0x76, 0x01, 0xc7, 0x01, 0xfd, 0x01, 0x2d, 0x02, 0x49, 0x02, 0x57, 0x02, 0x61, 0x02, 0x5b, 0x02, 0x53, 0x02, 0x3b, 0x02, 0x25, 0x02, 0xfc, 0x01, 0xdb, 0x01, 0xa3, 0x01, 0xa2, 0x01, 0xd2, 0x01, 0xc9, 0x01, 0xa6, 0x01, 0x69, 0x01, 0x25, 0x01, 0xd6, 0x00, 0x7f, 0x00, 0x26, 0x00, 0xd2, 0xff, 0x7d, 0xff, 0x29, 0xff, 0xdb, 0xfe, 0x93, 0xfe, 0x55, 0xfe, 0x1c, 0xfe, 0xed, 0xfd, 0xc9, 0xfd, 0xab, 0xfd, 0x9d, 0xfd, 0x95, 0xfd, 0x97, 0xfd, 0xa3, 0xfd, 0xb9, 0xfd, 0xd5, 0xfd, 0xfb, 0xfd, 0x24, 0xfe, 0x2d, 0xfe, 0x49, 0xfe, 0x63, 0xfe, 0x72, 0xfe, 0x88, 0xfe, 0xab, 0xfe, 0xdc, 0xfe, 0x14, 0xff, 0x51, 0xff, 0x96, 0xff, 0xe3, 0xff, 0x2f, 0x00, 0x7d, 0x00, 0xc8, 0x00, 0x18, 0x01, 0x5d, 0x01, 0xa3, 0x01, 0xde, 0x01, 0x11, 0x02, 0x3f, 0x02, 0x69, 0x02, 0x85, 0x02, 0x99, 0x02, 0xa1, 0x02, 0xa3, 0x02, 0x99, 0x02, 0x8b, 0x02, 0xc9, 0x02, 0xf5, 0x02, 0xeb, 0x02, 0xc9, 0x02, 0x8d, 0x02, 0x3f, 0x02, 0xed, 0x01, 0x82, 0x01, 0x63, 0x01, 0x75, 0x01, 0x3f, 0x01, 0xef, 0x00, 0x85, 0x00, 0x11, 0x00, 0x9c, 0xff, 0x26, 0xff, 0xb1, 0xfe, 0x48, 0xfe, 0xdf, 0xfd, 0x81, 0xfd, 0x33, 0xfd, 0xf3, 0xfc, 0xb9, 0xfc, 0x97, 0xfc, 0x7d, 0xfc, 0x71, 0xfc, 0x79, 0xfc, 0x89, 0xfc, 0xab, 0xfc, 0xbf, 0xfc, 0xd7, 0xfc, 0xff, 0xfc, 0x37, 0xfd, 0x79, 0xfd, 0xc7, 0xfd, 0x1e, 0xfe, 0x85, 0xfe, 0xea, 0xfe, 0x53, 0xff, 0xc2, 0xff, 0x29, 0x00, 0x95, 0x00, 0xfd, 0x00, 0x60, 0x01, 0xbb, 0x01, 0x11, 0x02, 0x59, 0x02, 0x9b, 0x02, 0xd3, 0x02, 0xf9, 0x02, 0x1d, 0x03, 0x29, 0x03, 0x07, 0x03, 0x17, 0x03, 0x4d, 0x03, 0x51, 0x03, 0x35, 0x03, 0xff, 0x02, 0xbf, 0x02, 0x65, 0x02, 0x0b, 0x02, 0xab, 0x01, 0x42, 0x01, 0xdd, 0x00, 0x6e, 0x00, 0x0e, 0x00, 0xa7, 0xff, 0x48, 0xff, 0xf1, 0xfe, 0x9c, 0xfe, 0x4f, 0xfe, 0x10, 0xfe, 0xd7, 0xfd, 0xa9, 0xfd, 0x8b, 0xfd, 0x6d, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x65, 0xfd, 0x79, 0xfd, 0x97, 0xfd, 0xbd, 0xfd, 0xe5, 0xfd, 0xfd, 0xfd, 0x18, 0xfe, 0x45, 0xfe, 0x70, 0xfe, 0xf3, 0xfe, 0xb9, 0xff, 0x38, 0x00, 0x9b, 0x00, 0xe3, 0x00, 0x22, 0x01, 0x54, 0x01, 0x7e, 0x01, 0x9f, 0x01, 0xb7, 0x01, 0xc7, 0x01, 0xd2, 0x01, 0xd3, 0x01, 0xd0, 0x01, 0xc6, 0x01, 0xb7, 0x01, 0xa3, 0x01, 0x87, 0x01, 0x69, 0x01, 0x48, 0x01, 0x70, 0x01, 0x9c, 0x01, 0x93, 0x01, 0x78, 0x01, 0x46, 0x01, 0x0c, 0x01, 0xc7, 0x00, 0x83, 0x00, 0x38, 0x00, 0xef, 0xff, 0xa7, 0xff, 0x5c, 0xff, 0x1d, 0xff, 0xdc, 0xfe, 0xa8, 0xfe, 0x78, 0xfe, 0x4b, 0xfe, 0x2b, 0xfe, 0x13, 0xfe, 0xff, 0xfd, 0xf7, 0xfd, 0xf7, 0xfd, 0xff, 0xfd, 0x09, 0xfe, 0xfd, 0xfd, 0xf9, 0xfd, 0x04, 0xfe, 0x1c, 0xfe, 0x3d, 0xfe, 0x58, 0xfe, 0x6a, 0xfe, 0x8b, 0xfe, 0xb4, 0xfe, 0xeb, 0xfe, 0x26, 0xff, 0x66, 0xff, 0xad, 0xff, 0xf9, 0xff, 0x47, 0x00, 0x8f, 0x00, 0xdd, 0x00, 0x24, 0x01, 0x69, 0x01, 0xa6, 0x01, 0xde, 0x01, 0x0f, 0x02, 0x39, 0x02, 0x59, 0x02, 0x6f, 0x02, 0x81, 0x02, 0x83, 0x02, 0x83, 0x02, 0x6f, 0x02, 0x7d, 0x02, 0xbd, 0x02, 0xd5, 0x02, 0xbb, 0x02, 0x93, 0x02, 0x4d, 0x02, 0x4b, 0x02, 0x6b, 0x02, 0x3b, 0x02, 0xf0, 0x01, 0x87, 0x01, 0x0f, 0x01, 0x91, 0x00, 0x10, 0x00, 0x8f, 0xff, 0x0f, 0xff, 0x94, 0xfe, 0x1f, 0xfe, 0xbd, 0xfd, 0x5f, 0xfd, 0x0f, 0xfd, 0xcd, 0xfc, 0x99, 0xfc, 0x77, 0xfc, 0x5f, 0xfc, 0x57, 0xfc, 0x5f, 0xfc, 0x73, 0xfc, 0x99, 0xfc, 0xc5, 0xfc, 0xe3, 0xfc, 0x07, 0xfd, 0x43, 0xfd, 0x87, 0xfd, 0xd7, 0xfd, 0x31, 0xfe, 0x90, 0xfe, 0xf6, 0xfe, 0x63, 0xff, 0xce, 0xff, 0x3b, 0x00, 0xa3, 0x00, 0x0a, 0x01, 0x6f, 0x01, 0xc6, 0x01, 0x1b, 0x02, 0x67, 0x02, 0xa3, 0x02, 0xdb, 0x02, 0xf9, 0x02, 0xf9, 0x02, 0xef, 0x02, 0xdb, 0x02, 0xc3, 0x02, 0xf3, 0x02, 0x1d, 0x03, 0x15, 0x03, 0xf7, 0x02, 0xbd, 0x02, 0x7b, 0x02, 0x27, 0x02, 0xcf, 0x01, 0x70, 0x01, 0x0f, 0x01, 0xaa, 0x00, 0x46, 0x00, 0xe4, 0xff, 0x83, 0xff, 0x29, 0xff, 0xd5, 0xfe, 0x88, 0xfe, 0x42, 0xfe, 0x04, 0xfe, 0xd3, 0xfd, 0xa9, 0xfd, 0x8b, 0xfd, 0x79, 0xfd, 0x6b, 0xfd, 0x6d, 0xfd, 0x79, 0xfd, 0x8b, 0xfd, 0xad, 0xfd, 0xd3, 0xfd, 0xf3, 0xfd, 0x03, 0xfe, 0x6f, 0xfe, 0x17, 0xff, 0x84, 0xff, 0xd7, 0xff, 0x16, 0x00, 0x4f, 0x00, 0x7d, 0x00, 0xaa, 0x00, 0xcd, 0x00, 0xf2, 0x00, 0x0c, 0x01, 0x27, 0x01, 0x3f, 0x01, 0x4c, 0x01, 0x54, 0x01, 0x61, 0x01, 0x60, 0x01, 0x5b, 0x01, 0x5a, 0x01, 0x4b, 0x01, 0x40, 0x01, 0x25, 0x01, 0x2b, 0x01, 0x6f, 0x01, 0x91, 0x01, 0x8b, 0x01, 0x72, 0x01, 0x4f, 0x01, 0x19, 0x01, 0xe0, 0x00, 0xa4, 0x00, 0x5e, 0x00, 0x20, 0x00, 0xde, 0xff, 0xa4, 0xff, 0x60, 0xff, 0x2a, 0xff, 0xf4, 0xfe, 0xc7, 0xfe, 0x9f, 0xfe, 0x7e, 0xfe, 0x60, 0xfe, 0x4e, 0xfe, 0x37, 0xfe, 0x12, 0xfe, 0xf5, 0xfd, 0xe5, 0xfd, 0xe3, 0xfd, 0xe9, 0xfd, 0xff, 0xfd, 0x1e, 0xfe, 0x43, 0xfe, 0x57, 0xfe, 0x72, 0xfe, 0x97, 0xfe, 0xc7, 0xfe, 0xfd, 0xfe, 0x3b, 0xff, 0x81, 0xff, 0xc6, 0xff, 0x14, 0x00, 0x58, 0x00, 0xa4, 0x00, 0xe9, 0x00, 0x2e, 0x01, 0x6d, 0x01, 0xa6, 0x01, 0xde, 0x01, 0x05, 0x02, 0x2b, 0x02, 0x45, 0x02, 0x57, 0x02, 0x63, 0x02, 0x63, 0x02, 0x5b, 0x02, 0x4b, 0x02, 0x77, 0x02, 0xad, 0x02, 0xa5, 0x02, 0xd5, 0x02, 0x11, 0x03, 0xfd, 0x02, 0xc5, 0x02, 0x6d, 0x02, 0x01, 0x02, 0x84, 0x01, 0x04, 0x01, 0x7c, 0x00, 0xfc, 0xff, 0x74, 0xff, 0xf1, 0xfe, 0x7c, 0xfe, 0x0a, 0xfe, 0xa3, 0xfd, 0x49, 0xfd, 0xfb, 0xfc, 0xbf, 0xfc, 0x8f, 0xfc, 0x6b, 0xfc, 0x59, 0xfc, 0x55, 0xfc, 0x5d, 0xfc, 0x7b, 0xfc, 0x9d, 0xfc, 0xd1, 0xfc, 0xff, 0xfc, 0x29, 0xfd, 0x61, 0xfd, 0xa3, 0xfd, 0xf1, 0xfd, 0x4b, 0xfe, 0xac, 0xfe, 0x0f, 0xff, 0x77, 0xff, 0xe4, 0xff, 0x4a, 0x00, 0xb2, 0x00, 0x16, 0x01, 0x76, 0x01, 0xcf, 0x01, 0x1b, 0x02, 0x65, 0x02, 0x99, 0x02, 0xa9, 0x02, 0xb1, 0x02, 0xb7, 0x02, 0xb7, 0x02, 0xb1, 0x02, 0x99, 0x02, 0xa1, 0x02, 0xdf, 0x02, 0xf3, 0x02, 0xe5, 0x02, 0xbf, 0x02, 0x85, 0x02, 0x3f, 0x02, 0xf1, 0x01, 0x99, 0x01, 0x3a, 0x01, 0xda, 0x00, 0x79, 0x00, 0x19, 0x00, 0xbc, 0xff, 0x60, 0xff, 0x09, 0xff, 0xbb, 0xfe, 0x73, 0xfe, 0x2e, 0xfe, 0xf9, 0xfd, 0xc5, 0xfd, 0xa7, 0xfd, 0x8b, 0xfd, 0x7b, 0xfd, 0x79, 0xfd, 0x7d, 0xfd, 0x89, 0xfd, 0xa3, 0xfd, 0xc3, 0xfd, 0x2e, 0xfe, 0xbd, 0xfe, 0x09, 0xff, 0x48, 0xff, 0x77, 0xff, 0x9e, 0xff, 0xc2, 0xff, 0xe9, 0xff, 0x08, 0x00, 0x29, 0x00, 0x4a, 0x00, 0x68, 0x00, 0x88, 0x00, 0xa7, 0x00, 0xbf, 0x00, 0xd9, 0x00, 0xee, 0x00, 0x00, 0x01, 0x10, 0x01, 0x18, 0x01, 0x21, 0x01, 0x25, 0x01, 0x25, 0x01, 0x21, 0x01, 0x19, 0x01, 0x51, 0x01, 0x93, 0x01, 0xa9, 0x01, 0xa5, 0x01, 0x8e, 0x01, 0x69, 0x01, 0x3f, 0x01, 0x09, 0x01, 0xd3, 0x00, 0x97, 0x00, 0x56, 0x00, 0x16, 0x00, 0xda, 0xff, 0x9e, 0xff, 0x66, 0xff, 0x33, 0xff, 0xff, 0xfe, 0xd5, 0xfe, 0xa9, 0xfe, 0x69, 0xfe, 0x36, 0xfe, 0x0a, 0xfe, 0xed, 0xfd, 0xdf, 0xfd, 0xd9, 0xfd, 0xdf, 0xfd, 0xef, 0xfd, 0x07, 0xfe, 0x31, 0xfe, 0x51, 0xfe, 0x66, 0xfe, 0x85, 0xfe, 0xaf, 0xfe, 0xe1, 0xfe, 0x18, 0xff, 0x5c, 0xff, 0x9e, 0xff, 0xe4, 0xff, 0x29, 0x00, 0x70, 0x00, 0xb5, 0x00, 0xfb, 0x00, 0x3a, 0x01, 0x75, 0x01, 0xa8, 0x01, 0xd5, 0x01, 0xfa, 0x01, 0x1b, 0x02, 0x31, 0x02, 0x43, 0x02, 0x45, 0x02, 0x43, 0x02, 0x3b, 0x02, 0x33, 0x02, 0xbd, 0x02, 0x41, 0x03, 0x63, 0x03, 0x53, 0x03, 0x17, 0x03, 0xc7, 0x02, 0x61, 0x02, 0xeb, 0x01, 0x6c, 0x01, 0xeb, 0x00, 0x65, 0x00, 0xde, 0xff, 0x5c, 0xff, 0xe4, 0xfe, 0x6a, 0xfe, 0xfd, 0xfd, 0x99, 0xfd, 0x45, 0xfd, 0xfd, 0xfc, 0xc3, 0xfc, 0x93, 0xfc, 0x7b, 0xfc, 0x67, 0xfc, 0x65, 0xfc, 0x77, 0xfc, 0x8f, 0xfc, 0xb9, 0xfc, 0xeb, 0xfc, 0x29, 0xfd, 0x57, 0xfd, 0x8b, 0xfd, 0xcf, 0xfd, 0x1b, 0xfe, 0x6d, 0xfe, 0xcc, 0xfe, 0x27, 0xff, 0x92, 0xff, 0xf3, 0xff, 0x58, 0x00, 0xbb, 0x00, 0x16, 0x01, 0x76, 0x01, 0xca, 0x01, 0x0d, 0x02, 0x2f, 0x02, 0x4b, 0x02, 0x63, 0x02, 0x75, 0x02, 0x85, 0x02, 0x8b, 0x02, 0x87, 0x02, 0x83, 0x02, 0x73, 0x02, 0x9f, 0x02, 0xcd, 0x02, 0xd3, 0x02, 0xb9, 0x02, 0x8b, 0x02, 0x51, 0x02, 0x09, 0x02, 0xba, 0x01, 0x66, 0x01, 0x06, 0x01, 0xa9, 0x00, 0x47, 0x00, 0xef, 0xff, 0x95, 0xff, 0x3c, 0xff, 0xed, 0xfe, 0x9d, 0xfe, 0x5a, 0xfe, 0x1e, 0xfe, 0xeb, 0xfd, 0xc1, 0xfd, 0xa3, 0xfd, 0x8b, 0xfd, 0x81, 0xfd, 0x81, 0xfd, 0x85, 0xfd, 0xe1, 0xfd, 0x6c, 0xfe, 0xc3, 0xfe, 0xf6, 0xfe, 0x0b, 0xff, 0x1d, 0xff, 0x33, 0xff, 0x44, 0xff, 0x5c, 0xff, 0x75, 0xff, 0x8f, 0xff, 0xad, 0xff, 0xce, 0xff, 0xf0, 0xff, 0x0d, 0x00, 0x34, 0x00, 0x56, 0x00, 0x76, 0x00, 0x95, 0x00, 0xb3, 0x00, 0xd0, 0x00, 0xe9, 0x00, 0xfe, 0x00, 0x0d, 0x01, 0x1b, 0x01, 0x25, 0x01, 0x2a, 0x01, 0x3f, 0x01, 0x94, 0x01, 0xc4, 0x01, 0xd8, 0x01, 0xcd, 0x01, 0xba, 0x01, 0x9a, 0x01, 0x6c, 0x01, 0x3c, 0x01, 0x03, 0x01, 0xc7, 0x00, 0x86, 0x00, 0x47, 0x00, 0x05, 0x00, 0xcc, 0xff, 0x8c, 0xff, 0x51, 0xff, 0xff, 0xfe, 0xb4, 0xfe, 0x72, 0xfe, 0x3c, 0xfe, 0x12, 0xfe, 0xf5, 0xfd, 0xe3, 0xfd, 0xd9, 0xfd, 0xdb, 0xfd, 0xe9, 0xfd, 0xff, 0xfd, 0x1f, 0xfe, 0x46, 0xfe, 0x60, 0xfe, 0x78, 0xfe, 0x9d, 0xfe, 0xc9, 0xfe, 0xfd, 0xfe, 0x36, 0xff, 0x77, 0xff, 0xb9, 0xff, 0xf9, 0xff, 0x3e, 0x00, 0x83, 0x00, 0xc2, 0x00, 0x04, 0x01, 0x3f, 0x01, 0x75, 0x01, 0xa3, 0x01, 0xca, 0x01, 0xed, 0x01, 0x0b, 0x02, 0x1b, 0x02, 0x2d, 0x02, 0x25, 0x02, 0x6b, 0x02, 0xc1, 0x02, 0x0d, 0x03, 0x59, 0x03, 0x5d, 0x03, 0x3b, 0x03, 0xf5, 0x02, 0xa1, 0x02, 0x37, 0x02, 0xc7, 0x01, 0x4b, 0x01, 0xca, 0x00, 0x4a, 0x00, 0xcb, 0xff, 0x51, 0xff, 0xd8, 0xfe, 0x6a, 0xfe, 0x04, 0xfe, 0xa7, 0xfd, 0x57, 0xfd, 0x13, 0xfd, 0xdd, 0xfc, 0xb5, 0xfc, 0x9b, 0xfc, 0x8d, 0xfc, 0x8f, 0xfc, 0x9f, 0xfc, 0xbd, 0xfc, 0xe3, 0xfc, 0x17, 0xfd, 0x57, 0xfd, 0x91, 0xfd, 0xc5, 0xfd, 0xff, 0xfd, 0x46, 0xfe, 0x97, 0xfe, 0xeb, 0xfe, 0x47, 0xff, 0xa1, 0xff, 0xff, 0xff, 0x5c, 0x00, 0xb8, 0x00, 0x12, 0x01, 0x5e, 0x01, 0x8a, 0x01, 0xb8, 0x01, 0xdf, 0x01, 0x03, 0x02, 0x27, 0x02, 0x3d, 0x02, 0x53, 0x02, 0x61, 0x02, 0x69, 0x02, 0x69, 0x02, 0x5d, 0x02, 0x61, 0x02, 0x9b, 0x02, 0xb9, 0x02, 0xb1, 0x02, 0x93, 0x02, 0x63, 0x02, 0x21, 0x02, 0xd9, 0x01, 0x88, 0x01, 0x31, 0x01, 0xda, 0x00, 0x7d, 0x00, 0x1f, 0x00, 0xc8, 0xff, 0x71, 0xff, 0x18, 0xff, 0xcd, 0xfe, 0x85, 0xfe, 0x48, 0xfe, 0x10, 0xfe, 0xe1, 0xfd, 0xbd, 0xfd, 0xa3, 0xfd, 0x8d, 0xfd, 0xd3, 0xfd, 0x3f, 0xfe, 0x79, 0xfe, 0xa2, 0xfe, 0xbe, 0xfe, 0xd8, 0xfe, 0xd9, 0xfe, 0xd3, 0xfe, 0xd8, 0xfe, 0xdf, 0xfe, 0xeb, 0xfe, 0xff, 0xfe, 0x15, 0xff, 0x36, 0xff, 0x56, 0xff, 0x7b, 0xff, 0xa7, 0xff, 0xcf, 0xff, 0xf8, 0xff, 0x25, 0x00, 0x4f, 0x00, 0x7c, 0x00, 0xa0, 0x00, 0xc8, 0x00, 0xeb, 0x00, 0x07, 0x01, 0x27, 0x01, 0x36, 0x01, 0x4e, 0x01, 0x57, 0x01, 0x8b, 0x01, 0xe2, 0x01, 0x07, 0x02, 0x11, 0x02, 0x0b, 0x02, 0xf3, 0x01, 0xcc, 0x01, 0x9f, 0x01, 0x69, 0x01, 0x2e, 0x01, 0xf1, 0x00, 0xac, 0x00, 0x68, 0x00, 0x1c, 0x00, 0xbd, 0xff, 0x62, 0xff, 0x0e, 0xff, 0xc9, 0xfe, 0x85, 0xfe, 0x4f, 0xfe, 0x27, 0xfe, 0x04, 0xfe, 0xed, 0xfd, 0xe1, 0xfd, 0xdf, 0xfd, 0xe7, 0xfd, 0xfd, 0xfd, 0x16, 0xfe, 0x34, 0xfe, 0x5e, 0xfe, 0x6f, 0xfe, 0x8d, 0xfe, 0xb2, 0xfe, 0xde, 0xfe, 0x15, 0xff, 0x4b, 0xff, 0x8a, 0xff, 0xc8, 0xff, 0x0b, 0x00, 0x4a, 0x00, 0x89, 0x00, 0xca, 0x00, 0x06, 0x01, 0x3a, 0x01, 0x6f, 0x01, 0x9a, 0x01, 0xbe, 0x01, 0xe1, 0x01, 0xf4, 0x01, 0x55, 0x02, 0xbd, 0x02, 0xe7, 0x02, 0xf3, 0x02, 0xe7, 0x02, 0x09, 0x03, 0x17, 0x03, 0xf1, 0x02, 0xb9, 0x02, 0x65, 0x02, 0x03, 0x02, 0x99, 0x01, 0x21, 0x01, 0xaf, 0x00, 0x37, 0x00, 0xc2, 0xff, 0x4d, 0xff, 0xdf, 0xfe, 0x78, 0xfe, 0x1b, 0xfe, 0xc3, 0xfd, 0x7b, 0xfd, 0x3d, 0xfd, 0x0d, 0xfd, 0xe7, 0xfc, 0xcf, 0xfc, 0xc7, 0xfc, 0xc9, 0xfc, 0xdd, 0xfc, 0xf3, 0xfc, 0x1d, 0xfd, 0x4f, 0xfd, 0x89, 0xfd, 0xcd, 0xfd, 0x06, 0xfe, 0x39, 0xfe, 0x78, 0xfe, 0xbe, 0xfe, 0x0c, 0xff, 0x5a, 0xff, 0xb0, 0xff, 0x02, 0x00, 0x59, 0x00, 0xa1, 0x00, 0xd1, 0x00, 0x06, 0x01, 0x39, 0x01, 0x6c, 0x01, 0x97, 0x01, 0xc4, 0x01, 0xe5, 0x01, 0x0b, 0x02, 0x25, 0x02, 0x3b, 0x02, 0x4b, 0x02, 0x4b, 0x02, 0x51, 0x02, 0x3f, 0x02, 0x57, 0x02, 0x8f, 0x02, 0x9f, 0x02, 0x8f, 0x02, 0x6b, 0x02, 0x33, 0x02, 0xf6, 0x01, 0xac, 0x01, 0x5d, 0x01, 0x04, 0x01, 0xac, 0x00, 0x53, 0x00, 0xf8, 0xff, 0xa4, 0xff, 0x4d, 0xff, 0x00, 0xff, 0xb2, 0xfe, 0x75, 0xfe, 0x37, 0xfe, 0x06, 0xfe, 0xd9, 0xfd, 0x0a, 0xfe, 0x51, 0xfe, 0x6c, 0xfe, 0x81, 0xfe, 0x82, 0xfe, 0x8a, 0xfe, 0x8a, 0xfe, 0x91, 0xfe, 0x94, 0xfe, 0x85, 0xfe, 0x7f, 0xfe, 0x7c, 0xfe, 0x85, 0xfe, 0x96, 0xfe, 0xae, 0xfe, 0xcf, 0xfe, 0xf3, 0xfe, 0x1e, 0xff, 0x4d, 0xff, 0x7d, 0xff, 0xb4, 0xff, 0xe9, 0xff, 0x1c, 0x00, 0x50, 0x00, 0x86, 0x00, 0xb6, 0x00, 0xe2, 0x00, 0x0f, 0x01, 0x36, 0x01, 0x52, 0x01, 0x72, 0x01, 0x85, 0x01, 0x97, 0x01, 0xe2, 0x01, 0x2d, 0x02, 0x49, 0x02, 0x4f, 0x02, 0x3f, 0x02, 0x23, 0x02, 0xf9, 0x01, 0xc6, 0x01, 0x8a, 0x01, 0x49, 0x01, 0xfb, 0x00, 0x94, 0x00, 0x35, 0x00, 0xd8, 0xff, 0x80, 0xff, 0x30, 0xff, 0xe8, 0xfe, 0xa6, 0xfe, 0x70, 0xfe, 0x42, 0xfe, 0x1e, 0xfe, 0x04, 0xfe, 0xf1, 0xfd, 0xeb, 0xfd, 0xf1, 0xfd, 0xf9, 0xfd, 0x0d, 0xfe, 0x2b, 0xfe, 0x51, 0xfe, 0x69, 0xfe, 0x7e, 0xfe, 0x9f, 0xfe, 0xc3, 0xfe, 0xee, 0xfe, 0x24, 0xff, 0x59, 0xff, 0x99, 0xff, 0xd5, 0xff, 0x11, 0x00, 0x4f, 0x00, 0x8f, 0x00, 0xcb, 0x00, 0x06, 0x01, 0x36, 0x01, 0x67, 0x01, 0x91, 0x01, 0x03, 0x02, 0x7d, 0x02, 0xb7, 0x02, 0xd9, 0x02, 0xd9, 0x02, 0xcb, 0x02, 0xa9, 0x02, 0x97, 0x02, 0xab, 0x02, 0x9b, 0x02, 0x69, 0x02, 0x23, 0x02, 0xcf, 0x01, 0x6c, 0x01, 0x07, 0x01, 0x9b, 0x00, 0x32, 0x00, 0xc8, 0xff, 0x5c, 0xff, 0xf9, 0xfe, 0x9d, 0xfe, 0x45, 0xfe, 0xf7, 0xfd, 0xb5, 0xfd, 0x7b, 0xfd, 0x4f, 0xfd, 0x2b, 0xfd, 0x19, 0xfd, 0x0f, 0xfd, 0x13, 0xfd, 0x1f, 0xfd, 0x39, 0xfd, 0x5b, 0xfd, 0x89, 0xfd, 0xc1, 0xfd, 0xfd, 0xfd, 0x3d, 0xfe, 0x6f, 0xfe, 0xa3, 0xfe, 0xdf, 0xfe, 0x23, 0xff, 0x66, 0xff, 0xb6, 0xff, 0xf0, 0xff, 0x1f, 0x00, 0x50, 0x00, 0x80, 0x00, 0xbc, 0x00, 0xf1, 0x00, 0x27, 0x01, 0x5a, 0x01, 0x88, 0x01, 0xb2, 0x01, 0xdc, 0x01, 0xf9, 0x01, 0x17, 0x02, 0x29, 0x02, 0x35, 0x02, 0x39, 0x02, 0x39, 0x02, 0x2f, 0x02, 0x55, 0x02, 0x7f, 0x02, 0x81, 0x02, 0x6d, 0x02, 0x41, 0x02, 0x0b, 0x02, 0xc6, 0x01, 0x7e, 0x01, 0x2b, 0x01, 0xd6, 0x00, 0x80, 0x00, 0x25, 0x00, 0xd2, 0xff, 0x7e, 0xff, 0x2f, 0xff, 0xe2, 0xfe, 0xa0, 0xfe, 0x5e, 0xfe, 0x76, 0xfe, 0xa2, 0xfe, 0xa3, 0xfe, 0x9c, 0xfe, 0x87, 0xfe, 0x75, 0xfe, 0x5e, 0xfe, 0x4f, 0xfe, 0x43, 0xfe, 0x40, 0xfe, 0x3f, 0xfe, 0x37, 0xfe, 0x2a, 0xfe, 0x27, 0xfe, 0x30, 0xfe, 0x3f, 0xfe, 0x5d, 0xfe, 0x7c, 0xfe, 0xa5, 0xfe, 0xd5, 0xfe, 0x09, 0xff, 0x41, 0xff, 0x7d, 0xff, 0xbc, 0xff, 0xfb, 0xff, 0x3d, 0x00, 0x73, 0x00, 0xb0, 0x00, 0xe8, 0x00, 0x1b, 0x01, 0x48, 0x01, 0x75, 0x01, 0x94, 0x01, 0xb4, 0x01, 0xc7, 0x01, 0xea, 0x01, 0x3f, 0x02, 0x6f, 0x02, 0x81, 0x02, 0x7d, 0x02, 0x65, 0x02, 0x3f, 0x02, 0x0f, 0x02, 0xc9, 0x01, 0x6a, 0x01, 0x0c, 0x01, 0xad, 0x00, 0x4f, 0x00, 0xf9, 0xff, 0xa4, 0xff, 0x54, 0xff, 0x0c, 0xff, 0xcc, 0xfe, 0x93, 0xfe, 0x63, 0xfe, 0x3c, 0xfe, 0x1b, 0xfe, 0x07, 0xfe, 0xfb, 0xfd, 0xf7, 0xfd, 0xfd, 0xfd, 0x0a, 0xfe, 0x24, 0xfe, 0x3f, 0xfe, 0x61, 0xfe, 0x78, 0xfe, 0x8e, 0xfe, 0xae, 0xfe, 0xd5, 0xfe, 0x00, 0xff, 0x33, 0xff, 0x6b, 0xff, 0xa2, 0xff, 0xe0, 0xff, 0x1c, 0x00, 0x59, 0x00, 0x97, 0x00, 0xce, 0x00, 0x06, 0x01, 0x88, 0x01, 0x0d, 0x02, 0x57, 0x02, 0x87, 0x02, 0x9d, 0x02, 0xa5, 0x02, 0x97, 0x02, 0x81, 0x02, 0x5f, 0x02, 0x31, 0x02, 0x27, 0x02, 0x33, 0x02, 0x15, 0x02, 0xe2, 0x01, 0x9c, 0x01, 0x4b, 0x01, 0xf5, 0x00, 0x98, 0x00, 0x38, 0x00, 0xdd, 0xff, 0x7d, 0xff, 0x24, 0xff, 0xcf, 0xfe, 0x84, 0xfe, 0x3d, 0xfe, 0xff, 0xfd, 0xcb, 0xfd, 0xa3, 0xfd, 0x85, 0xfd, 0x6d, 0xfd, 0x67, 0xfd, 0x65, 0xfd, 0x73, 0xfd, 0x81, 0xfd, 0xa3, 0xfd, 0xc7, 0xfd, 0xf7, 0xfd, 0x2d, 0xfe, 0x6a, 0xfe, 0xa3, 0xfe, 0xcc, 0xfe, 0xfa, 0xfe, 0x33, 0xff, 0x63, 0xff, 0x81, 0xff, 0xad, 0xff, 0xd7, 0xff, 0x0a, 0x00, 0x43, 0x00, 0x79, 0x00, 0xb2, 0x00, 0xec, 0x00, 0x1f, 0x01, 0x54, 0x01, 0x84, 0x01, 0xaf, 0x01, 0xd5, 0x01, 0xf4, 0x01, 0x0d, 0x02, 0x1b, 0x02, 0x25, 0x02, 0x27, 0x02, 0x1f, 0x02, 0x21, 0x02, 0x51, 0x02, 0x6b, 0x02, 0x61, 0x02, 0x47, 0x02, 0x15, 0x02, 0xdf, 0x01, 0x99, 0x01, 0x4e, 0x01, 0xdf, 0x00, 0x94, 0x00, 0x4b, 0x00, 0x02, 0x00, 0xb9, 0xff, 0x74, 0xff, 0x33, 0xff, 0x38, 0xff, 0x4a, 0xff, 0x35, 0xff, 0x16, 0xff, 0xf2, 0xfe, 0xcf, 0xfe, 0xa6, 0xfe, 0x87, 0xfe, 0x6c, 0xfe, 0x51, 0xfe, 0x42, 0xfe, 0x35, 0xfe, 0x30, 0xfe, 0x33, 0xfe, 0x30, 0xfe, 0x28, 0xfe, 0x2e, 0xfe, 0x3f, 0xfe, 0x57, 0xfe, 0x77, 0xfe, 0xa0, 0xfe, 0xcd, 0xfe, 0x01, 0xff, 0x38, 0xff, 0x72, 0xff, 0xb1, 0xff, 0xea, 0xff, 0x28, 0x00, 0x62, 0x00, 0x9e, 0x00, 0xd6, 0x00, 0x06, 0x01, 0x35, 0x01, 0x5e, 0x01, 0x81, 0x01, 0x9f, 0x01, 0xb6, 0x01, 0xc5, 0x01, 0xf0, 0x01, 0x2f, 0x02, 0x4d, 0x02, 0x4d, 0x02, 0x41, 0x02, 0x1b, 0x02, 0xd8, 0x01, 0x92, 0x01, 0x49, 0x01, 0xfc, 0x00, 0xb1, 0x00, 0x64, 0x00, 0x1c, 0x00, 0xd3, 0xff, 0x91, 0xff, 0x53, 0xff, 0x1b, 0xff, 0xe6, 0xfe, 0xbb, 0xfe, 0x94, 0xfe, 0x76, 0xfe, 0x5e, 0xfe, 0x4f, 0xfe, 0x45, 0xfe, 0x47, 0xfe, 0x4c, 0xfe, 0x57, 0xfe, 0x6e, 0xfe, 0x8b, 0xfe, 0xa2, 0xfe, 0xb3, 0xfe, 0xc7, 0xfe, 0xe4, 0xfe, 0x07, 0xff, 0x2e, 0xff, 0x58, 0xff, 0x87, 0xff, 0xba, 0xff, 0xec, 0xff, 0x20, 0x00, 0x57, 0x00, 0xcb, 0x00, 0x46, 0x01, 0x92, 0x01, 0xc6, 0x01, 0xe8, 0x01, 0xfd, 0x01, 0x05, 0x02, 0x01, 0x02, 0xf8, 0x01, 0xdf, 0x01, 0xc4, 0x01, 0xa1, 0x01, 0x7f, 0x01, 0x87, 0x01, 0x87, 0x01, 0x6b, 0x01, 0x3e, 0x01, 0x0c, 0x01, 0xc8, 0x00, 0x89, 0x00, 0x40, 0x00, 0xfa, 0xff, 0xb9, 0xff, 0x6f, 0xff, 0x31, 0xff, 0xf4, 0xfe, 0xbd, 0xfe, 0x8e, 0xfe, 0x62, 0xfe, 0x42, 0xfe, 0x26, 0xfe, 0x16, 0xfe, 0x09, 0xfe, 0x09, 0xfe, 0x0d, 0xfe, 0x1a, 0xfe, 0x2e, 0xfe, 0x47, 0xfe, 0x6e, 0xfe, 0x91, 0xfe, 0xbd, 0xfe, 0xec, 0xfe, 0x11, 0xff, 0x24, 0xff, 0x30, 0xff, 0x46, 0xff, 0x62, 0xff, 0x84, 0xff, 0xab, 0xff, 0xda, 0xff, 0x03, 0x00, 0x38, 0x00, 0x6d, 0x00, 0x9c, 0x00, 0xcf, 0x00, 0xfe, 0x00, 0x29, 0x01, 0x50, 0x01, 0x72, 0x01, 0x94, 0x01, 0xa9, 0x01, 0xbd, 0x01, 0xc6, 0x01, 0xce, 0x01, 0xd0, 0x01, 0xc3, 0x01, 0xd1, 0x01, 0xfa, 0x01, 0x03, 0x02, 0xf4, 0x01, 0xd8, 0x01, 0xac, 0x01, 0x79, 0x01, 0x3c, 0x01, 0xfa, 0x00, 0xb8, 0x00, 0x6f, 0x00, 0x26, 0x00, 0xe7, 0xff, 0xe2, 0xff, 0xe5, 0xff, 0xbe, 0xff, 0x96, 0xff, 0x5d, 0xff, 0x26, 0xff, 0xee, 0xfe, 0xba, 0xfe, 0x89, 0xfe, 0x61, 0xfe, 0x3b, 0xfe, 0x1e, 0xfe, 0x09, 0xfe, 0xfb, 0xfd, 0xf7, 0xfd, 0xfd, 0xfd, 0x01, 0xfe, 0x01, 0xfe, 0x06, 0xfe, 0x16, 0xfe, 0x35, 0xfe, 0x54, 0xfe, 0x80, 0xfe, 0xb3, 0xfe, 0xea, 0xfe, 0x28, 0xff, 0x64, 0xff, 0xa3, 0xff, 0xe9, 0xff, 0x28, 0x00, 0x68, 0x00, 0xa6, 0x00, 0xdf, 0x00, 0x1a, 0x01, 0x4a, 0x01, 0x78, 0x01, 0x9c, 0x01, 0xbc, 0x01, 0xd6, 0x01, 0xe3, 0x01, 0xf3, 0x01, 0x27, 0x02, 0x59, 0x02, 0x53, 0x02, 0x37, 0x02, 0x09, 0x02, 0xd5, 0x01, 0x97, 0x01, 0x55, 0x01, 0x11, 0x01, 0xcb, 0x00, 0x84, 0x00, 0x3d, 0x00, 0xfd, 0xff, 0xbb, 0xff, 0x7a, 0xff, 0x42, 0xff, 0x0b, 0xff, 0xdd, 0xfe, 0xb5, 0xfe, 0x91, 0xfe, 0x77, 0xfe, 0x64, 0xfe, 0x57, 0xfe, 0x50, 0xfe, 0x51, 0xfe, 0x5c, 0xfe, 0x69, 0xfe, 0x7e, 0xfe, 0x9b, 0xfe, 0xad, 0xfe, 0xb8, 0xfe, 0xd2, 0xfe, 0xed, 0xfe, 0x0f, 0xff, 0x3b, 0xff, 0x62, 0xff, 0x94, 0xff, 0xca, 0xff, 0x42, 0x00, 0xb9, 0x00, 0x06, 0x01, 0x46, 0x01, 0x6c, 0x01, 0x8f, 0x01, 0xa2, 0x01, 0xae, 0x01, 0xb3, 0x01, 0xaf, 0x01, 0xa3, 0x01, 0x8e, 0x01, 0x7c, 0x01, 0x5e, 0x01, 0x3b, 0x01, 0x29, 0x01, 0x3e, 0x01, 0x3b, 0x01, 0x1f, 0x01, 0xfa, 0x00, 0xc8, 0x00, 0x96, 0x00, 0x5c, 0x00, 0x20, 0x00, 0xe7, 0xff, 0xa9, 0xff, 0x72, 0xff, 0x3b, 0xff, 0x0c, 0xff, 0xdf, 0xfe, 0xb7, 0xfe, 0x96, 0xfe, 0x7b, 0xfe, 0x69, 0xfe, 0x5c, 0xfe, 0x57, 0xfe, 0x57, 0xfe, 0x5e, 0xfe, 0x6c, 0xfe, 0x7f, 0xfe, 0x98, 0xfe, 0xb5, 0xfe, 0xd8, 0xfe, 0xf2, 0xfe, 0x02, 0xff, 0x04, 0xff, 0x0f, 0xff, 0x24, 0xff, 0x3e, 0xff, 0x5d, 0xff, 0x89, 0xff, 0xb1, 0xff, 0xe0, 0xff, 0x13, 0x00, 0x45, 0x00, 0x77, 0x00, 0xa8, 0x00, 0xd7, 0x00, 0x05, 0x01, 0x2c, 0x01, 0x53, 0x01, 0x74, 0x01, 0x8c, 0x01, 0xa2, 0x01, 0xb0, 0x01, 0xbb, 0x01, 0xbb, 0x01, 0xb9, 0x01, 0xab, 0x01, 0xc9, 0x01, 0xe7, 0x01, 0xe2, 0x01, 0xd1, 0x01, 0xb0, 0x01, 0x81, 0x01, 0x4e, 0x01, 0x12, 0x01, 0xcf, 0x00, 0x93, 0x00, 0x91, 0x00, 0x8a, 0x00, 0x62, 0x00, 0x28, 0x00, 0xec, 0xff, 0xa9, 0xff, 0x5f, 0xff, 0x20, 0xff, 0xdd, 0xfe, 0xa1, 0xfe, 0x6c, 0xfe, 0x3d, 0xfe, 0x13, 0xfe, 0xf9, 0xfd, 0xe1, 0xfd, 0xd3, 0xfd, 0xd1, 0xfd, 0xd3, 0xfd, 0xe1, 0xfd, 0xeb, 0xfd, 0xf3, 0xfd, 0x06, 0xfe, 0x21, 0xfe, 0x44, 0xfe, 0x77, 0xfe, 0xa9, 0xfe, 0xe2, 0xfe, 0x1d, 0xff, 0x60, 0xff, 0xa6, 0xff, 0xe8, 0xff, 0x2d, 0x00, 0x71, 0x00, 0xb0, 0x00, 0xed, 0x00, 0x23, 0x01, 0x58, 0x01, 0x87, 0x01, 0xaf, 0x01, 0xd1, 0x01, 0xe7, 0x01, 0xf7, 0x01, 0x01, 0x02, 0x09, 0x02, 0x23, 0x02, 0x29, 0x02, 0x1b, 0x02, 0xfa, 0x01, 0xd1, 0x01, 0x9c, 0x01, 0x65, 0x01, 0x28, 0x01, 0xe8, 0x00, 0xa8, 0x00, 0x64, 0x00, 0x20, 0x00, 0xe2, 0xff, 0xa3, 0xff, 0x6a, 0xff, 0x32, 0xff, 0x03, 0xff, 0xd7, 0xfe, 0xb0, 0xfe, 0x94, 0xfe, 0x79, 0xfe, 0x69, 0xfe, 0x5f, 0xfe, 0x5c, 0xfe, 0x5a, 0xfe, 0x66, 0xfe, 0x76, 0xfe, 0x8c, 0xfe, 0xa5, 0xfe, 0xb2, 0xfe, 0xc3, 0xfe, 0xdd, 0xfe, 0xfa, 0xfe, 0x1e, 0xff, 0x48, 0xff, 0xbd, 0xff, 0x28, 0x00, 0x79, 0x00, 0xb3, 0x00, 0xe4, 0x00, 0x07, 0x01, 0x24, 0x01, 0x3c, 0x01, 0x4a, 0x01, 0x55, 0x01, 0x53, 0x01, 0x57, 0x01, 0x50, 0x01, 0x43, 0x01, 0x34, 0x01, 0x1f, 0x01, 0x0c, 0x01, 0xec, 0x00, 0xf9, 0x00, 0x0e, 0x01, 0x05, 0x01, 0xf4, 0x00, 0xd2, 0x00, 0xab, 0x00, 0x7c, 0x00, 0x4d, 0x00, 0x1b, 0x00, 0xe9, 0xff, 0xb9, 0xff, 0x89, 0xff, 0x5a, 0xff, 0x33, 0xff, 0x0f, 0xff, 0xec, 0xfe, 0xd2, 0xfe, 0xbd, 0xfe, 0xab, 0xfe, 0xa2, 0xfe, 0x9b, 0xfe, 0x9d, 0xfe, 0xa5, 0xfe, 0xad, 0xfe, 0xc0, 0xfe, 0xc7, 0xfe, 0xc7, 0xfe, 0xd2, 0xfe, 0xe2, 0xfe, 0xf2, 0xfe, 0xfa, 0xfe, 0x0b, 0xff, 0x28, 0xff, 0x45, 0xff, 0x68, 0xff, 0x93, 0xff, 0xc0, 0xff, 0xf1, 0xff, 0x20, 0x00, 0x50, 0x00, 0x84, 0x00, 0xb5, 0x00, 0xe0, 0x00, 0x0c, 0x01, 0x30, 0x01, 0x52, 0x01, 0x6d, 0x01, 0x84, 0x01, 0x97, 0x01, 0xa2, 0x01, 0xa6, 0x01, 0xa3, 0x01, 0x9c, 0x01, 0x9b, 0x01, 0xc3, 0x01, 0xce, 0x01, 0xc5, 0x01, 0xae, 0x01, 0x87, 0x01, 0x58, 0x01, 0x26, 0x01, 0x2e, 0x01, 0x29, 0x01, 0x01, 0x01, 0xcb, 0x00, 0x89, 0x00, 0x40, 0x00, 0xf0, 0xff, 0xa5, 0xff, 0x58, 0xff, 0x0e, 0xff, 0xcb, 0xfe, 0x89, 0xfe, 0x51, 0xfe, 0x23, 0xfe, 0xf7, 0xfd, 0xdd, 0xfd, 0xc7, 0xfd, 0xbb, 0xfd, 0xb7, 0xfd, 0xbf, 0xfd, 0xcf, 0xfd, 0xe1, 0xfd, 0xf1, 0xfd, 0x04, 0xfe, 0x23, 0xfe, 0x47, 0xfe, 0x77, 0xfe, 0xad, 0xfe, 0xe5, 0xfe, 0x24, 0xff, 0x68, 0xff, 0xad, 0xff, 0xf2, 0xff, 0x38, 0x00, 0x77, 0x00, 0xbb, 0x00, 0xf9, 0x00, 0x30, 0x01, 0x67, 0x01, 0x91, 0x01, 0xbb, 0x01, 0xda, 0x01, 0xf2, 0x01, 0xf4, 0x01, 0xe8, 0x01, 0xd6, 0x01, 0xe7, 0x01, 0x03, 0x02, 0xfd, 0x01, 0xed, 0x01, 0xcb, 0x01, 0xa3, 0x01, 0x6f, 0x01, 0x39, 0x01, 0xff, 0x00, 0xc2, 0x00, 0x82, 0x00, 0x43, 0x00, 0x04, 0x00, 0xc7, 0xff, 0x8e, 0xff, 0x55, 0xff, 0x25, 0xff, 0xf4, 0xfe, 0xd0, 0xfe, 0xab, 0xfe, 0x93, 0xfe, 0x7b, 0xfe, 0x6c, 0xfe, 0x64, 0xfe, 0x62, 0xfe, 0x66, 0xfe, 0x72, 0xfe, 0x84, 0xfe, 0x99, 0xfe, 0xb0, 0xfe, 0xba, 0xfe, 0xd0, 0xfe, 0xea, 0xfe, 0x52, 0xff, 0xb3, 0xff, 0xf7, 0xff, 0x2d, 0x00, 0x5a, 0x00, 0x7e, 0x00, 0x9e, 0x00, 0xbb, 0x00, 0xcf, 0x00, 0xe4, 0x00, 0xef, 0x00, 0xfc, 0x00, 0xff, 0x00, 0x04, 0x01, 0x04, 0x01, 0x01, 0x01, 0xf9, 0x00, 0xec, 0x00, 0xdf, 0x00, 0xcb, 0x00, 0xc5, 0x00, 0xe0, 0x00, 0xf4, 0x00, 0xef, 0x00, 0xdd, 0x00, 0xc5, 0x00, 0xa3, 0x00, 0x7f, 0x00, 0x55, 0x00, 0x2b, 0x00, 0x01, 0x00, 0xd7, 0xff, 0xb0, 0xff, 0x89, 0xff, 0x62, 0xff, 0x40, 0xff, 0x25, 0xff, 0x09, 0xff, 0xf7, 0xfe, 0xe5, 0xfe, 0xdd, 0xfe, 0xd4, 0xfe, 0xd2, 0xfe, 0xc8, 0xfe, 0xba, 0xfe, 0xb2, 0xfe, 0xb3, 0xfe, 0xbd, 0xfe, 0xcb, 0xfe, 0xe4, 0xfe, 0xef, 0xfe, 0xff, 0xfe, 0x14, 0xff, 0x2e, 0xff, 0x53, 0xff, 0x7c, 0xff, 0xa6, 0xff, 0xd3, 0xff, 0x03, 0x00, 0x32, 0x00, 0x62, 0x00, 0x91, 0x00, 0xba, 0x00, 0xe5, 0x00, 0x0c, 0x01, 0x33, 0x01, 0x4e, 0x01, 0x67, 0x01, 0x78, 0x01, 0x87, 0x01, 0x8f, 0x01, 0x8f, 0x01, 0x8f, 0x01, 0x81, 0x01, 0x94, 0x01, 0xb3, 0x01, 0xb4, 0x01, 0xa4, 0x01, 0x8f, 0x01, 0xa6, 0x01, 0xb0, 0x01, 0x92, 0x01, 0x60, 0x01, 0x20, 0x01, 0xda, 0x00, 0x8b, 0x00, 0x39, 0x00, 0xe9, 0xff, 0x98, 0xff, 0x45, 0xff, 0xfe, 0xfe, 0xb6, 0xfe, 0x77, 0xfe, 0x42, 0xfe, 0x11, 0xfe, 0xeb, 0xfd, 0xd1, 0xfd, 0xb9, 0xfd, 0xb3, 0xfd, 0xaf, 0xfd, 0xbb, 0xfd, 0xc9, 0xfd, 0xe3, 0xfd, 0xfd, 0xfd, 0x13, 0xfe, 0x33, 0xfe, 0x57, 0xfe, 0x84, 0xfe, 0xba, 0xfe, 0xf4, 0xfe, 0x36, 0xff, 0x75, 0xff, 0xb6, 0xff, 0x00, 0x00, 0x40, 0x00, 0x86, 0x00, 0xc5, 0x00, 0x01, 0x01, 0x35, 0x01, 0x6a, 0x01, 0x97, 0x01, 0xbb, 0x01, 0xcb, 0x01, 0xcb, 0x01, 0xcb, 0x01, 0xc5, 0x01, 0xb6, 0x01, 0xb6, 0x01, 0xd5, 0x01, 0xe5, 0x01, 0xde, 0x01, 0xc8, 0x01, 0xa9, 0x01, 0x7f, 0x01, 0x4d, 0x01, 0x19, 0x01, 0xdb, 0x00, 0xa1, 0x00, 0x65, 0x00, 0x28, 0x00, 0xed, 0xff, 0xb1, 0xff, 0x7c, 0xff, 0x47, 0xff, 0x18, 0xff, 0xee, 0xfe, 0xc8, 0xfe, 0xa9, 0xfe, 0x91, 0xfe, 0x7b, 0xfe, 0x71, 0xfe, 0x69, 0xfe, 0x6c, 0xfe, 0x72, 0xfe, 0x7e, 0xfe, 0x93, 0xfe, 0xa9, 0xfe, 0xbd, 0xfe, 0x09, 0xff, 0x5c, 0xff, 0x91, 0xff, 0xbd, 0xff, 0xdf, 0xff, 0x00, 0x00, 0x1e, 0x00, 0x32, 0x00, 0x52, 0x00, 0x64, 0x00, 0x77, 0x00, 0x8c, 0x00, 0x9c, 0x00, 0xa8, 0x00, 0xb3, 0x00, 0xbd, 0x00, 0xc1, 0x00, 0xc8, 0x00, 0xc8, 0x00, 0xc3, 0x00, 0xc2, 0x00, 0xbb, 0x00, 0xb1, 0x00, 0xc2, 0x00, 0xe7, 0x00, 0xf2, 0x00, 0xf2, 0x00, 0xe3, 0x00, 0xcf, 0x00, 0xb5, 0x00, 0x8f, 0x00, 0x6f, 0x00, 0x47, 0x00, 0x23, 0x00, 0xfd, 0xff, 0xd8, 0xff, 0xb5, 0xff, 0x91, 0xff, 0x71, 0xff, 0x50, 0xff, 0x3a, 0xff, 0x23, 0xff, 0x0f, 0xff, 0xf9, 0xfe, 0xd4, 0xfe, 0xc0, 0xfe, 0xb0, 0xfe, 0xab, 0xfe, 0xaa, 0xfe, 0xb0, 0xfe, 0xc2, 0xfe, 0xd4, 0xfe, 0xe9, 0xfe, 0xf7, 0xfe, 0x09, 0xff, 0x23, 0xff, 0x40, 0xff, 0x68, 0xff, 0x8a, 0xff, 0xb9, 0xff, 0xe8, 0xff, 0x10, 0x00, 0x43, 0x00, 0x6d, 0x00, 0x99, 0x00, 0xc3, 0x00, 0xea, 0x00, 0x11, 0x01, 0x2b, 0x01, 0x45, 0x01, 0x5e, 0x01, 0x68, 0x01, 0x75, 0x01, 0x7c, 0x01, 0x7c, 0x01, 0x72, 0x01, 0x6d, 0x01, 0x8d, 0x01, 0xa7, 0x01, 0xdf, 0x01, 0xff, 0x01, 0xf7, 0x01, 0xd5, 0x01, 0xa6, 0x01, 0x62, 0x01, 0x1b, 0x01, 0xce, 0x00, 0x7c, 0x00, 0x29, 0x00, 0xd5, 0xff, 0x87, 0xff, 0x36, 0xff, 0xed, 0xfe, 0xaa, 0xfe, 0x6e, 0xfe, 0x37, 0xfe, 0x0b, 0xfe, 0xe9, 0xfd, 0xcb, 0xfd, 0xbf, 0xfd, 0xb1, 0xfd, 0xb7, 0xfd, 0xbf, 0xfd, 0xd3, 0xfd, 0xeb, 0xfd, 0x0e, 0xfe, 0x2f, 0xfe, 0x48, 0xfe, 0x6e, 0xfe, 0x9b, 0xfe, 0xcf, 0xfe, 0x0b, 0xff, 0x46, 0xff, 0x84, 0xff, 0xc7, 0xff, 0x09, 0x00, 0x4a, 0x00, 0x8b, 0x00, 0xcb, 0x00, 0x01, 0x01, 0x36, 0x01, 0x67, 0x01, 0x85, 0x01, 0x8d, 0x01, 0x9a, 0x01, 0xa3, 0x01, 0xa9, 0x01, 0xa6, 0x01, 0xa3, 0x01, 0x99, 0x01, 0xa9, 0x01, 0xc8, 0x01, 0xcb, 0x01, 0xc1, 0x01, 0xa9, 0x01, 0x87, 0x01, 0x5b, 0x01, 0x29, 0x01, 0xf5, 0x00, 0xbb, 0x00, 0x81, 0x00, 0x48, 0x00, 0x09, 0x00, 0xd3, 0xff, 0x9e, 0xff, 0x65, 0xff, 0x35, 0xff, 0x08, 0xff, 0xe1, 0xfe, 0xbd, 0xfe, 0xa1, 0xfe, 0x89, 0xfe, 0x7c, 0xfe, 0x73, 0xfe, 0x6f, 0xfe, 0x72, 0xfe, 0x79, 0xfe, 0x90, 0xfe, 0xe7, 0xfe, 0x31, 0xff, 0x52, 0xff, 0x6d, 0xff, 0x83, 0xff, 0x9b, 0xff, 0xad, 0xff, 0xc0, 0xff, 0xd5, 0xff, 0xe9, 0xff, 0xfd, 0xff, 0x0f, 0x00, 0x28, 0x00, 0x3a, 0x00, 0x4d, 0x00, 0x5f, 0x00, 0x71, 0x00, 0x7f, 0x00, 0x8c, 0x00, 0x9c, 0x00, 0xa6, 0x00, 0xac, 0x00, 0xb0, 0x00, 0xb6, 0x00, 0xb3, 0x00, 0xb8, 0x00, 0xe2, 0x00, 0x01, 0x01, 0x0a, 0x01, 0x0a, 0x01, 0xfc, 0x00, 0xea, 0x00, 0xd0, 0x00, 0xb3, 0x00, 0x91, 0x00, 0x6d, 0x00, 0x46, 0x00, 0x23, 0x00, 0xfd, 0xff, 0xd5, 0xff, 0xb5, 0xff, 0x93, 0xff, 0x72, 0xff, 0x4d, 0xff, 0x1b, 0xff, 0xf6, 0xfe, 0xd9, 0xfe, 0xc0, 0xfe, 0xb5, 0xfe, 0xa8, 0xfe, 0xa8, 0xfe, 0xae, 0xfe, 0xba, 0xfe, 0xcb, 0xfe, 0xe6, 0xfe, 0xf4, 0xfe, 0x03, 0xff, 0x19, 0xff, 0x33, 0xff, 0x55, 0xff, 0x76, 0xff, 0xa1, 0xff, 0xcb, 0xff, 0xf7, 0xff, 0x21, 0x00, 0x4d, 0x00, 0x79, 0x00, 0xa3, 0x00, 0xc8, 0x00, 0xec, 0x00, 0x0c, 0x01, 0x23, 0x01, 0x3d, 0x01, 0x50, 0x01, 0x5d, 0x01, 0x63, 0x01, 0x67, 0x01, 0x65, 0x01, 0x63, 0x01, 0xac, 0x01, 0xfc, 0x01, 0x17, 0x02, 0x15, 0x02, 0xf8, 0x01, 0xcd, 0x01, 0x94, 0x01, 0x53, 0x01, 0x09, 0x01, 0xbb, 0x00, 0x69, 0x00, 0x17, 0x00, 0xc5, 0xff, 0x79, 0xff, 0x2d, 0xff, 0xe7, 0xfe, 0xa8, 0xfe, 0x6e, 0xfe, 0x3f, 0xfe, 0x13, 0xfe, 0xf3, 0xfd, 0xdb, 0xfd, 0xcd, 0xfd, 0xc5, 0xfd, 0xcb, 0xfd, 0xd7, 0xfd, 0xeb, 0xfd, 0x09, 0xfe, 0x28, 0xfe, 0x51, 0xfe, 0x6f, 0xfe, 0x94, 0xfe, 0xbd, 0xfe, 0xee, 0xfe, 0x21, 0xff, 0x5c, 0xff, 0x98, 0xff, 0xd7, 0xff, 0x11, 0x00, 0x50, 0x00, 0x8c, 0x00, 0xc3, 0x00, 0xfe, 0x00, 0x1f, 0x01, 0x36, 0x01, 0x4d, 0x01, 0x62, 0x01, 0x72, 0x01, 0x80, 0x01, 0x87, 0x01, 0x8d, 0x01, 0x8d, 0x01, 0x89, 0x01, 0x87, 0x01, 0x9f, 0x01, 0xb6, 0x01, 0xb4, 0x01, 0xa6, 0x01, 0x8d, 0x01, 0x65, 0x01, 0x3e, 0x01, 0x0a, 0x01, 0xd6, 0x00, 0x9f, 0x00, 0x65, 0x00, 0x2d, 0x00, 0xf2, 0xff, 0xbe, 0xff, 0x86, 0xff, 0x6e, 0xff, 0x46, 0xff, 0x22, 0xff, 0x03, 0xff, 0xe9, 0xfe, 0xd1, 0xfe, 0xc0, 0xfe, 0xb5, 0xfe, 0xae, 0xfe, 0xb9, 0xfe, 0xf1, 0xfe, 0x25, 0xff, 0x46, 0xff, 0x61, 0xff, 0x6e, 0xff, 0x70, 0xff, 0x75, 0xff, 0x7a, 0xff, 0x83, 0xff, 0x8e, 0xff, 0x9a, 0xff, 0xab, 0xff, 0xba, 0xff, 0xcc, 0xff, 0xdd, 0xff, 0xf4, 0xff, 0x07, 0x00, 0x19, 0x00, 0x2f, 0x00, 0x44, 0x00, 0x54, 0x00, 0x66, 0x00, 0x75, 0x00, 0x84, 0x00, 0x90, 0x00, 0x98, 0x00, 0xa2, 0x00, 0xa6, 0x00, 0xb8, 0x00, 0xe2, 0x00, 0xf7, 0x00, 0x02, 0x01, 0xfd, 0x00, 0xf4, 0x00, 0xe6, 0x00, 0xcf, 0x00, 0xb5, 0x00, 0x96, 0x00, 0x78, 0x00, 0x58, 0x00, 0x34, 0x00, 0x13, 0x00, 0xf2, 0xff, 0xc8, 0xff, 0x96, 0xff, 0x6e, 0xff, 0x44, 0xff, 0x26, 0xff, 0x0e, 0xff, 0xf6, 0xfe, 0xea, 0xfe, 0xe1, 0xfe, 0xdf, 0xfe, 0xe1, 0xfe, 0xea, 0xfe, 0xf5, 0xfe, 0x05, 0xff, 0x1c, 0xff, 0x25, 0xff, 0x34, 0xff, 0x46, 0xff, 0x5f, 0xff, 0x7a, 0xff, 0x99, 0xff, 0xbd, 0xff, 0xe0, 0xff, 0x00, 0x00, 0x25, 0x00, 0x48, 0x00, 0x6a, 0x00, 0x8b, 0x00, 0xaa, 0x00, 0xc3, 0x00, 0xe0, 0x00, 0xf4, 0x00, 0x04, 0x01, 0x13, 0x01, 0x1a, 0x01, 0x2a, 0x01, 0x5f, 0x01, 0x83, 0x01, 0x8c, 0x01, 0xa7, 0x01, 0xb8, 0x01, 0xb0, 0x01, 0x97, 0x01, 0x6f, 0x01, 0x40, 0x01, 0x09, 0x01, 0xcc, 0x00, 0x8c, 0x00, 0x4b, 0x00, 0x09, 0x00, 0xca, 0xff, 0x8b, 0xff, 0x4e, 0xff, 0x17, 0xff, 0xe2, 0xfe, 0xb7, 0xfe, 0x8d, 0xfe, 0x6f, 0xfe, 0x57, 0xfe, 0x43, 0xfe, 0x3a, 0xfe, 0x35, 0xfe, 0x37, 0xfe, 0x46, 0xfe, 0x54, 0xfe, 0x6c, 0xfe, 0x89, 0xfe, 0xac, 0xfe, 0xcc, 0xfe, 0xe3, 0xfe, 0x09, 0xff, 0x2b, 0xff, 0x58, 0xff, 0x82, 0xff, 0xb3, 0xff, 0xe2, 0xff, 0x13, 0x00, 0x44, 0x00, 0x70, 0x00, 0x95, 0x00, 0xac, 0x00, 0xc6, 0x00, 0xde, 0x00, 0xf5, 0x00, 0x09, 0x01, 0x1a, 0x01, 0x2c, 0x01, 0x37, 0x01, 0x3e, 0x01, 0x45, 0x01, 0x45, 0x01, 0x40, 0x01, 0x46, 0x01, 0x61, 0x01, 0x6b, 0x01, 0x64, 0x01, 0x54, 0x01, 0x3d, 0x01, 0x1c, 0x01, 0xf6, 0x00, 0xcc, 0x00, 0xa0, 0x00, 0x70, 0x00, 0x40, 0x00, 0x12, 0x00, 0xe2, 0xff, 0xb4, 0xff, 0x86, 0xff, 0x60, 0xff, 0x39, 0xff, 0x19, 0xff, 0xf8, 0xfe, 0xe3, 0xfe, 0xce, 0xfe, 0xcb, 0xfe, 0xf6, 0xfe, 0x19, 0xff, 0x29, 0xff, 0x3a, 0xff, 0x40, 0xff, 0x4c, 0xff, 0x53, 0xff, 0x4b, 0xff, 0x4a, 0xff, 0x48, 0xff, 0x4b, 0xff, 0x55, 0xff, 0x5d, 0xff, 0x6c, 0xff, 0x7e, 0xff, 0x91, 0xff, 0xa8, 0xff, 0xbe, 0xff, 0xd7, 0xff, 0xf2, 0xff, 0x09, 0x00, 0x24, 0x00, 0x3b, 0x00, 0x53, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x92, 0x00, 0xa2, 0x00, 0xb2, 0x00, 0xba, 0x00, 0xc5, 0x00, 0xe6, 0x00, 0x0b, 0x01, 0x1c, 0x01, 0x23, 0x01, 0x1d, 0x01, 0x12, 0x01, 0x00, 0x01, 0xe9, 0x00, 0xce, 0x00, 0xac, 0x00, 0x89, 0x00, 0x67, 0x00, 0x37, 0x00, 0x00, 0x00, 0xd1, 0xff, 0xa4, 0xff, 0x7b, 0xff, 0x55, 0xff, 0x36, 0xff, 0x1a, 0xff, 0x06, 0xff, 0xf5, 0xfe, 0xeb, 0xfe, 0xe4, 0xfe, 0xe4, 0xfe, 0xeb, 0xfe, 0xf4, 0xfe, 0x03, 0xff, 0x15, 0xff, 0x25, 0xff, 0x31, 0xff, 0x40, 0xff, 0x53, 0xff, 0x6a, 0xff, 0x86, 0xff, 0xa4, 0xff, 0xc7, 0xff, 0xe7, 0xff, 0x08, 0x00, 0x27, 0x00, 0x4b, 0x00, 0x6a, 0x00, 0x87, 0x00, 0xa6, 0x00, 0xbf, 0x00, 0xd7, 0x00, 0xe9, 0x00, 0x04, 0x01, 0x45, 0x01, 0x6f, 0x01, 0x85, 0x01, 0x8c, 0x01, 0x83, 0x01, 0x7d, 0x01, 0x86, 0x01, 0x83, 0x01, 0x6d, 0x01, 0x4d, 0x01, 0x1f, 0x01, 0xed, 0x00, 0xb5, 0x00, 0x7d, 0x00, 0x40, 0x00, 0x03, 0x00, 0xc9, 0xff, 0x92, 0xff, 0x57, 0xff, 0x26, 0xff, 0xf7, 0xfe, 0xce, 0xfe, 0xa9, 0xfe, 0x8c, 0xfe, 0x78, 0xfe, 0x65, 0xfe, 0x5a, 0xfe, 0x59, 0xfe, 0x5c, 0xfe, 0x6c, 0xfe, 0x77, 0xfe, 0x8f, 0xfe, 0xa9, 0xfe, 0xc9, 0xfe, 0xec, 0xfe, 0x07, 0xff, 0x24, 0xff, 0x44, 0xff, 0x6a, 0xff, 0x90, 0xff, 0xbc, 0xff, 0xe6, 0xff, 0x10, 0x00, 0x2d, 0x00, 0x49, 0x00, 0x63, 0x00, 0x80, 0x00, 0x9d, 0x00, 0xb8, 0x00, 0xd1, 0x00, 0xe7, 0x00, 0xff, 0x00, 0x0f, 0x01, 0x20, 0x01, 0x2c, 0x01, 0x33, 0x01, 0x37, 0x01, 0x39, 0x01, 0x34, 0x01, 0x42, 0x01, 0x58, 0x01, 0x5d, 0x01, 0x54, 0x01, 0x40, 0x01, 0x25, 0x01, 0x02, 0x01, 0xde, 0x00, 0xb2, 0x00, 0x87, 0x00, 0x58, 0x00, 0x29, 0x00, 0xfd, 0xff, 0xcc, 0xff, 0xa2, 0xff, 0x77, 0xff, 0x51, 0xff, 0x2e, 0xff, 0x0e, 0xff, 0x01, 0xff, 0x1e, 0xff, 0x2e, 0xff, 0x32, 0xff, 0x34, 0xff, 0x30, 0xff, 0x2b, 0xff, 0x2b, 0xff, 0x27, 0xff, 0x29, 0xff, 0x26, 0xff, 0x1a, 0xff, 0x19, 0xff, 0x17, 0xff, 0x23, 0xff, 0x29, 0xff, 0x38, 0xff, 0x4c, 0xff, 0x60, 0xff, 0x7a, 0xff, 0x96, 0xff, 0xb1, 0xff, 0xd0, 0xff, 0xf1, 0xff, 0x0e, 0x00, 0x2d, 0x00, 0x49, 0x00, 0x66, 0x00, 0x82, 0x00, 0x99, 0x00, 0xaf, 0x00, 0xc1, 0x00, 0xd2, 0x00, 0xdb, 0x00, 0xef, 0x00, 0x15, 0x01, 0x33, 0x01, 0x40, 0x01, 0x40, 0x01, 0x39, 0x01, 0x2a, 0x01, 0x14, 0x01, 0xf9, 0x00, 0xd9, 0x00, 0xac, 0x00, 0x73, 0x00, 0x41, 0x00, 0x0f, 0x00, 0xe0, 0xff, 0xb7, 0xff, 0x8b, 0xff, 0x69, 0xff, 0x4a, 0xff, 0x2d, 0xff, 0x17, 0xff, 0x03, 0xff, 0xf7, 0xfe, 0xf1, 0xfe, 0xed, 0xfe, 0xf1, 0xfe, 0xf7, 0xfe, 0x01, 0xff, 0x10, 0xff, 0x23, 0xff, 0x2e, 0xff, 0x39, 0xff, 0x48, 0xff, 0x5d, 0xff, 0x73, 0xff, 0x8d, 0xff, 0xab, 0xff, 0xcb, 0xff, 0xeb, 0xff, 0x0c, 0x00, 0x2b, 0x00, 0x4d, 0x00, 0x67, 0x00, 0x89, 0x00, 0xa0, 0x00, 0xc8, 0x00, 0x0f, 0x01, 0x43, 0x01, 0x62, 0x01, 0x72, 0x01, 0x77, 0x01, 0x6f, 0x01, 0x66, 0x01, 0x4e, 0x01, 0x49, 0x01, 0x4d, 0x01, 0x3d, 0x01, 0x23, 0x01, 0xfd, 0x00, 0xd2, 0x00, 0xa2, 0x00, 0x71, 0x00, 0x38, 0x00, 0x03, 0x00, 0xd2, 0xff, 0x9d, 0xff, 0x6a, 0xff, 0x3d, 0xff, 0x12, 0xff, 0xee, 0xfe, 0xcc, 0xfe, 0xb4, 0xfe, 0x9d, 0xfe, 0x8f, 0xfe, 0x88, 0xfe, 0x84, 0xfe, 0x88, 0xfe, 0x8e, 0xfe, 0xa0, 0xfe, 0xb1, 0xfe, 0xcc, 0xfe, 0xe8, 0xfe, 0x08, 0xff, 0x25, 0xff, 0x41, 0xff, 0x5a, 0xff, 0x7a, 0xff, 0x9b, 0xff, 0xbd, 0xff, 0xd7, 0xff, 0xeb, 0xff, 0x03, 0x00, 0x20, 0x00, 0x40, 0x00, 0x5c, 0x00, 0x7a, 0x00, 0x98, 0x00, 0xb5, 0x00, 0xce, 0x00, 0xe6, 0x00, 0xfd, 0x00, 0x0a, 0x01, 0x1c, 0x01, 0x26, 0x01, 0x2c, 0x01, 0x30, 0x01, 0x2e, 0x01, 0x2a, 0x01, 0x40, 0x01, 0x4e, 0x01, 0x4c, 0x01, 0x3e, 0x01, 0x29, 0x01, 0x0c, 0x01, 0xe9, 0x00, 0xc3, 0x00, 0x99, 0x00, 0x6c, 0x00, 0x41, 0x00, 0x10, 0x00, 0xe6, 0xff, 0xbc, 0xff, 0x91, 0xff, 0x67, 0xff, 0x53, 0xff, 0x60, 0xff, 0x65, 0xff, 0x5d, 0xff, 0x51, 0xff, 0x40, 0xff, 0x2e, 0xff, 0x20, 0xff, 0x13, 0xff, 0x09, 0xff, 0x03, 0xff, 0xfd, 0xfe, 0xfe, 0xfe, 0xfa, 0xfe, 0xef, 0xfe, 0xf1, 0xfe, 0xf6, 0xfe, 0x00, 0xff, 0x11, 0xff, 0x26, 0xff, 0x3f, 0xff, 0x5d, 0xff, 0x77, 0xff, 0x9a, 0xff, 0xbd, 0xff, 0xe0, 0xff, 0x03, 0x00, 0x27, 0x00, 0x46, 0x00, 0x6a, 0x00, 0x89, 0x00, 0xa3, 0x00, 0xbe, 0x00, 0xd5, 0x00, 0xe7, 0x00, 0xf7, 0x00, 0x00, 0x01, 0x17, 0x01, 0x3e, 0x01, 0x54, 0x01, 0x58, 0x01, 0x54, 0x01, 0x49, 0x01, 0x31, 0x01, 0x0f, 0x01, 0xdb, 0x00, 0xaf, 0x00, 0x80, 0x00, 0x4f, 0x00, 0x22, 0x00, 0xf6, 0xff, 0xcb, 0xff, 0xa5, 0xff, 0x80, 0xff, 0x5d, 0xff, 0x43, 0xff, 0x29, 0xff, 0x17, 0xff, 0x07, 0xff, 0xfc, 0xfe, 0xf5, 0xfe, 0xf5, 0xfe, 0xf8, 0xfe, 0xfe, 0xfe, 0x0b, 0xff, 0x1b, 0xff, 0x2b, 0xff, 0x31, 0xff, 0x3d, 0xff, 0x51, 0xff, 0x61, 0xff, 0x7b, 0xff, 0x96, 0xff, 0xb1, 0xff, 0xd0, 0xff, 0xef, 0xff, 0x0f, 0x00, 0x2f, 0x00, 0x4a, 0x00, 0x78, 0x00, 0xc6, 0x00, 0xfd, 0x00, 0x23, 0x01, 0x3d, 0x01, 0x4e, 0x01, 0x52, 0x01, 0x4f, 0x01, 0x47, 0x01, 0x3a, 0x01, 0x26, 0x01, 0x0f, 0x01, 0x0c, 0x01, 0x0b, 0x01, 0xf9, 0x00, 0xdd, 0x00, 0xbc, 0x00, 0x95, 0x00, 0x68, 0x00, 0x3b, 0x00, 0x0c, 0x00, 0xdd, 0xff, 0xb1, 0xff, 0x86, 0xff, 0x5f, 0xff, 0x37, 0xff, 0x17, 0xff, 0xfa, 0xfe, 0xe2, 0xfe, 0xce, 0xfe, 0xc2, 0xfe, 0xb7, 0xfe, 0xb2, 0xfe, 0xb7, 0xfe, 0xba, 0xfe, 0xc9, 0xfe, 0xd8, 0xfe, 0xed, 0xfe, 0x06, 0xff, 0x20, 0xff, 0x3f, 0xff, 0x58, 0xff, 0x70, 0xff, 0x87, 0xff, 0x94, 0xff, 0xa2, 0xff, 0xb6, 0xff, 0xca, 0xff, 0xe5, 0xff, 0x01, 0x00, 0x20, 0x00, 0x3f, 0x00, 0x5d, 0x00, 0x7a, 0x00, 0x9a, 0x00, 0xb4, 0x00, 0xcf, 0x00, 0xe4, 0x00, 0xf9, 0x00, 0x09, 0x01, 0x16, 0x01, 0x1e, 0x01, 0x23, 0x01, 0x25, 0x01, 0x1e, 0x01, 0x26, 0x01, 0x3b, 0x01, 0x40, 0x01, 0x3a, 0x01, 0x29, 0x01, 0x11, 0x01, 0xf2, 0x00, 0xce, 0x00, 0xa8, 0x00, 0x7e, 0x00, 0x55, 0x00, 0x26, 0x00, 0xfd, 0xff, 0xd0, 0xff, 0xb3, 0xff, 0xba, 0xff, 0xb4, 0xff, 0xa3, 0xff, 0x88, 0xff, 0x70, 0xff, 0x55, 0xff, 0x39, 0xff, 0x22, 0xff, 0x09, 0xff, 0xfa, 0xfe, 0xe9, 0xfe, 0xdd, 0xfe, 0xdb, 0xfe, 0xd7, 0xfe, 0xd9, 0xfe, 0xd4, 0xfe, 0xd2, 0xfe, 0xd9, 0xfe, 0xe6, 0xfe, 0xf6, 0xfe, 0x0c, 0xff, 0x27, 0xff, 0x43, 0xff, 0x67, 0xff, 0x8b, 0xff, 0xaf, 0xff, 0xd7, 0xff, 0xfd, 0xff, 0x25, 0x00, 0x4a, 0x00, 0x6e, 0x00, 0x90, 0x00, 0xac, 0x00, 0xcc, 0x00, 0xe5, 0x00, 0xf8, 0x00, 0x0a, 0x01, 0x17, 0x01, 0x20, 0x01, 0x3d, 0x01, 0x5a, 0x01, 0x66, 0x01, 0x64, 0x01, 0x52, 0x01, 0x2f, 0x01, 0x09, 0x01, 0xe4, 0x00, 0xb8, 0x00, 0x8c, 0x00, 0x5f, 0x00, 0x37, 0x00, 0x09, 0x00, 0xe4, 0xff, 0xbc, 0xff, 0x99, 0xff, 0x77, 0xff, 0x5a, 0xff, 0x41, 0xff, 0x29, 0xff, 0x19, 0xff, 0x0b, 0xff, 0x01, 0xff, 0xfc, 0xfe, 0xff, 0xfe, 0x00, 0xff, 0x09, 0xff, 0x15, 0xff, 0x23, 0xff, 0x31, 0xff, 0x3a, 0xff, 0x43, 0xff, 0x57, 0xff, 0x6a, 0xff, 0x80, 0xff, 0x9d, 0xff, 0xb6, 0xff, 0xd9, 0xff, 0xf1, 0xff, 0x20, 0x00, 0x6c, 0x00, 0xa9, 0x00, 0xd5, 0x00, 0xf2, 0x00, 0x0c, 0x01, 0x1a, 0x01, 0x21, 0x01, 0x23, 0x01, 0x1e, 0x01, 0x18, 0x01, 0x06, 0x01, 0xf8, 0x00, 0xe4, 0x00, 0xd1, 0x00, 0xd7, 0x00, 0xd1, 0x00, 0xc0, 0x00, 0xa8, 0x00, 0x87, 0x00, 0x67, 0x00, 0x40, 0x00, 0x1b, 0x00, 0xf4, 0xff, 0xcc, 0xff, 0xa6, 0xff, 0x84, 0xff, 0x63, 0xff, 0x44, 0xff, 0x29, 0xff, 0x13, 0xff, 0x00, 0xff, 0xf3, 0xfe, 0xeb, 0xfe, 0xe6, 0xfe, 0xe3, 0xfe, 0xe8, 0xfe, 0xf1, 0xfe, 0xfe, 0xfe, 0x0c, 0xff, 0x20, 0xff, 0x37, 0xff, 0x4f, 0xff, 0x6a, 0xff, 0x6e, 0xff, 0x70, 0xff, 0x77, 0xff, 0x86, 0xff, 0x99, 0xff, 0xb1, 0xff, 0xcb, 0xff, 0xe7, 0xff, 0x05, 0x00, 0x22, 0x00, 0x41, 0x00, 0x63, 0x00, 0x7d, 0x00, 0x9b, 0x00, 0xb5, 0x00, 0xd0, 0x00, 0xe3, 0x00, 0xf4, 0x00, 0x04, 0x01, 0x0d, 0x01, 0x16, 0x01, 0x18, 0x01, 0x18, 0x01, 0x11, 0x01, 0x1a, 0x01, 0x2e, 0x01, 0x2e, 0x01, 0x23, 0x01, 0x12, 0x01, 0xf7, 0x00, 0xd9, 0x00, 0xb5, 0x00, 0x8e, 0x00, 0x67, 0x00, 0x38, 0x00, 0x20, 0x00, 0x22, 0x00, 0x13, 0x00, 0xfd, 0xff, 0xd9, 0xff, 0xb7, 0xff, 0x91, 0xff, 0x6e, 0xff, 0x48, 0xff, 0x29, 0xff, 0x0b, 0xff, 0xf3, 0xfe, 0xdd, 0xfe, 0xcc, 0xfe, 0xc0, 0xfe, 0xb9, 0xfe, 0xb9, 0xfe, 0xbb, 0xfe, 0xc0, 0xfe, 0xc0, 0xfe, 0xc6, 0xfe, 0xd2, 0xfe, 0xe6, 0xfe, 0xfc, 0xfe, 0x1a, 0xff, 0x3a, 0xff, 0x5d, 0xff, 0x84, 0xff, 0xac, 0xff, 0xd7, 0xff, 0xff, 0xff, 0x26, 0x00, 0x4d, 0x00, 0x72, 0x00, 0x99, 0x00, 0xba, 0x00, 0xd7, 0x00, 0xf2, 0x00, 0x0a, 0x01, 0x1a, 0x01, 0x28, 0x01, 0x30, 0x01, 0x3c, 0x01, 0x59, 0x01, 0x5b, 0x01, 0x52, 0x01, 0x40, 0x01, 0x27, 0x01, 0x08, 0x01, 0xe6, 0x00, 0xc3, 0x00, 0x9d, 0x00, 0x75, 0x00, 0x4a, 0x00, 0x22, 0x00, 0xfd, 0xff, 0xd7, 0xff, 0xb4, 0xff, 0x8f, 0xff, 0x72, 0xff, 0x56, 0xff, 0x3d, 0xff, 0x2b, 0xff, 0x1a, 0xff, 0x10, 0xff, 0x07, 0xff, 0x07, 0xff, 0x03, 0xff, 0x0a, 0xff, 0x10, 0xff, 0x1d, 0xff, 0x2d, 0xff, 0x34, 0xff, 0x3d, 0xff, 0x48, 0xff, 0x5c, 0xff, 0x6e, 0xff, 0x86, 0xff, 0xa1, 0xff, 0xcc, 0xff, 0x17, 0x00, 0x51, 0x00, 0x7b, 0x00, 0xa2, 0x00, 0xb8, 0x00, 0xcf, 0x00, 0xdd, 0x00, 0xe6, 0x00, 0xec, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xe0, 0x00, 0xd7, 0x00, 0xca, 0x00, 0xbc, 0x00, 0xa9, 0x00, 0xa2, 0x00, 0xad, 0x00, 0xa6, 0x00, 0x9a, 0x00, 0x83, 0x00, 0x6c, 0x00, 0x4b, 0x00, 0x2e, 0x00, 0x10, 0x00, 0xee, 0xff, 0xd0, 0xff, 0xb1, 0xff, 0x92, 0xff, 0x79, 0xff, 0x61, 0xff, 0x4a, 0xff, 0x38, 0xff, 0x2b, 0xff, 0x20, 0xff, 0x17, 0xff, 0x14, 0xff, 0x15, 0xff, 0x19, 0xff, 0x20, 0xff, 0x2b, 0xff, 0x3a, 0xff, 0x4a, 0xff, 0x4e, 0xff, 0x55, 0xff, 0x5e, 0xff, 0x60, 0xff, 0x69, 0xff, 0x75, 0xff, 0x86, 0xff, 0x9d, 0xff, 0xb4, 0xff, 0xd1, 0xff, 0xf0, 0xff, 0x0c, 0x00, 0x29, 0x00, 0x49, 0x00, 0x65, 0x00, 0x84, 0x00, 0x9f, 0x00, 0xb8, 0x00, 0xcf, 0x00, 0xe0, 0x00, 0xef, 0x00, 0xfb, 0x00, 0x03, 0x01, 0x0a, 0x01, 0x08, 0x01, 0x06, 0x01, 0x03, 0x01, 0x12, 0x01, 0x1e, 0x01, 0x18, 0x01, 0x0c, 0x01, 0xf9, 0x00, 0xd9, 0x00, 0xbe, 0x00, 0x9a, 0x00, 0x83, 0x00, 0x8b, 0x00, 0x77, 0x00, 0x5d, 0x00, 0x3b, 0x00, 0x11, 0x00, 0xe8, 0xff, 0xbd, 0xff, 0x90, 0xff, 0x67, 0xff, 0x3f, 0xff, 0x1a, 0xff, 0xfc, 0xfe, 0xdf, 0xfe, 0xc9, 0xfe, 0xb7, 0xfe, 0xac, 0xfe, 0xa6, 0xfe, 0xa5, 0xfe, 0xa9, 0xfe, 0xb3, 0xfe, 0xb7, 0xfe, 0xbe, 0xfe, 0xcd, 0xfe, 0xdf, 0xfe, 0xfa, 0xfe, 0x15, 0xff, 0x38, 0xff, 0x5d, 0xff, 0x84, 0xff, 0xac, 0xff, 0xd9, 0xff, 0x00, 0x00, 0x2c, 0x00, 0x54, 0x00, 0x7a, 0x00, 0xa0, 0x00, 0xbe, 0x00, 0xe0, 0x00, 0xf8, 0x00, 0x11, 0x01, 0x23, 0x01, 0x30, 0x01, 0x39, 0x01, 0x2c, 0x01, 0x31, 0x01, 0x3b, 0x01, 0x3a, 0x01, 0x32, 0x01, 0x1e, 0x01, 0x0a, 0x01, 0xec, 0x00, 0xcc, 0x00, 0xab, 0x00, 0x85, 0x00, 0x5f, 0x00, 0x3b, 0x00, 0x11, 0x00, 0xef, 0xff, 0xca, 0xff, 0xaa, 0xff, 0x8b, 0xff, 0x6e, 0xff, 0x54, 0xff, 0x3d, 0xff, 0x2b, 0xff, 0x1c, 0xff, 0x3b, 0xff, 0x36, 0xff, 0x33, 0xff, 0x34, 0xff, 0x38, 0xff, 0x40, 0xff, 0x49, 0xff, 0x54, 0xff, 0x5b, 0xff, 0x60, 0xff, 0x70, 0xff, 0x79, 0xff, 0x9c, 0xff, 0xd5, 0xff, 0x00, 0x00, 0x20, 0x00, 0x3b, 0x00, 0x52, 0x00, 0x65, 0x00, 0x73, 0x00, 0x80, 0x00, 0x89, 0x00, 0x8f, 0x00, 0x93, 0x00, 0x97, 0x00, 0x95, 0x00, 0x92, 0x00, 0x8d, 0x00, 0x86, 0x00, 0x80, 0x00, 0x73, 0x00, 0x6a, 0x00, 0x72, 0x00, 0x79, 0x00, 0x73, 0x00, 0x6e, 0x00, 0x5f, 0x00, 0x4e, 0x00, 0x3b, 0x00, 0x26, 0x00, 0x11, 0x00, 0xfb, 0xff, 0xe6, 0xff, 0xce, 0xff, 0xbb, 0xff, 0xa8, 0xff, 0x98, 0xff, 0x87, 0xff, 0x7a, 0xff, 0x71, 0xff, 0x68, 0xff, 0x64, 0xff, 0x5e, 0xff, 0x5e, 0xff, 0x64, 0xff, 0x64, 0xff, 0x60, 0xff, 0x5e, 0xff, 0x61, 0xff, 0x65, 0xff, 0x70, 0xff, 0x75, 0xff, 0x7b, 0xff, 0x83, 0xff, 0x91, 0xff, 0xa3, 0xff, 0xb4, 0xff, 0xca, 0xff, 0xe2, 0xff, 0xfa, 0xff, 0x11, 0x00, 0x2b, 0x00, 0x41, 0x00, 0x5b, 0x00, 0x71, 0x00, 0x84, 0x00, 0x98, 0x00, 0xa7, 0x00, 0xb7, 0x00, 0xbf, 0x00, 0xcc, 0x00, 0xcd, 0x00, 0xd1, 0x00, 0xd0, 0x00, 0xca, 0x00, 0xd0, 0x00, 0xd9, 0x00, 0xe0, 0x00, 0xd8, 0x00, 0xcc, 0x00, 0xb7, 0x00, 0xb0, 0x00, 0xb8, 0x00, 0xad, 0x00, 0x9b, 0x00, 0x7f, 0x00, 0x5b, 0x00, 0x38, 0x00, 0x10, 0x00, 0xeb, 0xff, 0xc2, 0xff, 0x9c, 0xff, 0x77, 0xff, 0x56, 0xff, 0x36, 0xff, 0x1e, 0xff, 0x08, 0xff, 0xf4, 0xfe, 0xe6, 0xfe, 0xde, 0xfe, 0xd8, 0xfe, 0xd9, 0xfe, 0xdf, 0xfe, 0xe7, 0xfe, 0xf2, 0xfe, 0xfc, 0xfe, 0x04, 0xff, 0x17, 0xff, 0x2b, 0xff, 0x43, 0xff, 0x5f, 0xff, 0x7e, 0xff, 0x9e, 0xff, 0xbf, 0xff, 0xe3, 0xff, 0x06, 0x00, 0x28, 0x00, 0x4a, 0x00, 0x6a, 0x00, 0x88, 0x00, 0xa5, 0x00, 0xbb, 0x00, 0xd3, 0x00, 0xe4, 0x00, 0xf3, 0x00, 0xf2, 0x00, 0xec, 0x00, 0xe7, 0x00, 0xe2, 0x00, 0xeb, 0x00, 0xf5, 0x00, 0xf2, 0x00, 0xe9, 0x00, 0xda, 0x00, 0xc6, 0x00, 0xb2, 0x00, 0x98, 0x00, 0x7c, 0x00, 0x5d, 0x00, 0x41, 0x00, 0x23, 0x00, 0x04, 0x00, 0xe9, 0xff, 0xcb, 0xff, 0xb2, 0xff, 0x9a, 0xff, 0x80, 0xff, 0x6e, 0xff, 0x5d, 0xff, 0x50, 0xff, 0x43, 0xff, 0x3d, 0xff, 0x38, 0xff, 0x36, 0xff, 0x38, 0xff, 0x3f, 0xff, 0x45, 0xff, 0x4e, 0xff, 0x5b, 0xff, 0x5d, 0xff, 0x75, 0xff, 0xa3, 0xff, 0xc8, 0xff, 0xe4, 0xff, 0xfc, 0xff, 0x0f, 0x00, 0x20, 0x00, 0x30, 0x00, 0x3d, 0x00, 0x48, 0x00, 0x53, 0x00, 0x5d, 0x00, 0x63, 0x00, 0x6a, 0x00, 0x6b, 0x00, 0x70, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x64, 0x00, 0x5d, 0x00, 0x5f, 0x00, 0x6a, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6a, 0x00, 0x62, 0x00, 0x52, 0x00, 0x41, 0x00, 0x30, 0x00, 0x1e, 0x00, 0x09, 0x00, 0xf8, 0xff, 0xe5, 0xff, 0xd3, 0xff, 0xc1, 0xff, 0xb2, 0xff, 0xa5, 0xff, 0x96, 0xff, 0x8d, 0xff, 0x80, 0xff, 0x7c, 0xff, 0x76, 0xff, 0x69, 0xff, 0x60, 0xff, 0x59, 0xff, 0x56, 0xff, 0x57, 0xff, 0x5d, 0xff, 0x66, 0xff, 0x71, 0xff, 0x76, 0xff, 0x7e, 0xff, 0x89, 0xff, 0x98, 0xff, 0xac, 0xff, 0xbf, 0xff, 0xd3, 0xff, 0xed, 0xff, 0x01, 0x00, 0x19, 0x00, 0x31, 0x00, 0x48, 0x00, 0x5f, 0x00, 0x73, 0x00, 0x85, 0x00, 0x97, 0x00, 0xa7, 0x00, 0xb2, 0x00, 0xbb, 0x00, 0xbf, 0x00, 0xc5, 0x00, 0xc4, 0x00, 0xc2, 0x00, 0xbd, 0x00, 0xc6, 0x00, 0xd3, 0x00, 0xcd, 0x00, 0xd7, 0x00, 0xe6, 0x00, 0xe8, 0x00, 0xd8, 0x00, 0xc0, 0x00, 0xa5, 0x00, 0x82, 0x00, 0x5b, 0x00, 0x35, 0x00, 0x0b, 0x00, 0xe4, 0xff, 0xbb, 0xff, 0x95, 0xff, 0x71, 0xff, 0x4e, 0xff, 0x30, 0xff, 0x17, 0xff, 0x02, 0xff, 0xf0, 0xfe, 0xe4, 0xfe, 0xdd, 0xfe, 0xd9, 0xfe, 0xd9, 0xfe, 0xdf, 0xfe, 0xeb, 0xfe, 0xf9, 0xfe, 0x04, 0xff, 0x10, 0xff, 0x21, 0xff, 0x34, 0xff, 0x4e, 0xff, 0x6a, 0xff, 0x88, 0xff, 0xa8, 0xff, 0xc8, 0xff, 0xeb, 0xff, 0x0b, 0x00, 0x2e, 0x00, 0x4e, 0x00, 0x6e, 0x00, 0x8a, 0x00, 0xa5, 0x00, 0xbb, 0x00, 0xd0, 0x00, 0xd7, 0x00, 0xd8, 0x00, 0xdc, 0x00, 0xda, 0x00, 0xd9, 0x00, 0xd5, 0x00, 0xd7, 0x00, 0xe4, 0x00, 0xe8, 0x00, 0xe4, 0x00, 0xd8, 0x00, 0xca, 0x00, 0xb5, 0x00, 0xa2, 0x00, 0x87, 0x00, 0x6c, 0x00, 0x4e, 0x00, 0x31, 0x00, 0x15, 0x00, 0xfa, 0xff, 0xdd, 0xff, 0xc3, 0xff, 0xab, 0xff, 0x91, 0xff, 0x7c, 0xff, 0x6a, 0xff, 0x5b, 0xff, 0x50, 0xff, 0x43, 0xff, 0x3d, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x3d, 0xff, 0x43, 0xff, 0x4b, 0xff, 0x63, 0xff, 0x88, 0xff, 0xa5, 0xff, 0xb9, 0xff, 0xca, 0xff, 0xda, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x13, 0x00, 0x20, 0x00, 0x2a, 0x00, 0x31, 0x00, 0x3a, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4e, 0x00, 0x52, 0x00, 0x56, 0x00, 0x5a, 0x00, 0x5a, 0x00, 0x58, 0x00, 0x58, 0x00, 0x57, 0x00, 0x62, 0x00, 0x72, 0x00, 0x77, 0x00, 0x77, 0x00, 0x71, 0x00, 0x6a, 0x00, 0x5b, 0x00, 0x4e, 0x00, 0x40, 0x00, 0x2e, 0x00, 0x1c, 0x00, 0x0b, 0x00, 0xfa, 0xff, 0xe7, 0xff, 0xd5, 0xff, 0xc8, 0xff, 0xb7, 0xff, 0xa8, 0xff, 0x9e, 0xff, 0x89, 0xff, 0x77, 0xff, 0x68, 0xff, 0x5f, 0xff, 0x58, 0xff, 0x54, 0xff, 0x54, 0xff, 0x59, 0xff, 0x62, 0xff, 0x6e, 0xff, 0x77, 0xff, 0x7c, 0xff, 0x87, 0xff, 0x95, 0xff, 0xa3, 0xff, 0xb4, 0xff, 0xca, 0xff, 0xe0, 0xff, 0xf4, 0xff, 0x0b, 0x00, 0x23, 0x00, 0x38, 0x00, 0x4d, 0x00, 0x60, 0x00, 0x77, 0x00, 0x86, 0x00, 0x95, 0x00, 0xa0, 0x00, 0xab, 0x00, 0xb3, 0x00, 0xb5, 0x00, 0xb9, 0x00, 0xb8, 0x00, 0xb5, 0x00, 0xb2, 0x00, 0xd1, 0x00, 0xf2, 0x00, 0x00, 0x01, 0xfe, 0x00, 0xf0, 0x00, 0xdd, 0x00, 0xbf, 0x00, 0xa1, 0x00, 0x7a, 0x00, 0x54, 0x00, 0x2b, 0x00, 0x03, 0x00, 0xdc, 0xff, 0xb4, 0xff, 0x8f, 0xff, 0x6b, 0xff, 0x4c, 0xff, 0x2f, 0xff, 0x17, 0xff, 0x03, 0xff, 0xf4, 0xfe, 0xe8, 0xfe, 0xe1, 0xfe, 0xdf, 0xfe, 0xe1, 0xfe, 0xe8, 0xfe, 0xf2, 0xfe, 0x03, 0xff, 0x13, 0xff, 0x20, 0xff, 0x30, 0xff, 0x45, 0xff, 0x5b, 0xff, 0x75, 0xff, 0x92, 0xff, 0xb2, 0xff, 0xd2, 0xff, 0xf1, 0xff, 0x11, 0x00, 0x31, 0x00, 0x50, 0x00, 0x6d, 0x00, 0x89, 0x00, 0xa0, 0x00, 0xab, 0x00, 0xb5, 0x00, 0xbd, 0x00, 0xc2, 0x00, 0xc8, 0x00, 0xca, 0x00, 0xcc, 0x00, 0xca, 0x00, 0xc7, 0x00, 0xd0, 0x00, 0xdb, 0x00, 0xdf, 0x00, 0xd7, 0x00, 0xca, 0x00, 0xbb, 0x00, 0xa8, 0x00, 0x93, 0x00, 0x77, 0x00, 0x5d, 0x00, 0x42, 0x00, 0x26, 0x00, 0x08, 0x00, 0xed, 0xff, 0xd3, 0xff, 0xb8, 0xff, 0xa1, 0xff, 0x89, 0xff, 0x76, 0xff, 0x65, 0xff, 0x59, 0xff, 0x4a, 0xff, 0x45, 0xff, 0x3b, 0xff, 0x3d, 0xff, 0x3b, 0xff, 0x50, 0xff, 0x75, 0xff, 0x90, 0xff, 0xa3, 0xff, 0xa9, 0xff, 0xb0, 0xff, 0xb8, 0xff, 0xbe, 0xff, 0xc8, 0xff, 0xd1, 0xff, 0xd9, 0xff, 0xe3, 0xff, 0xeb, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x0d, 0x00, 0x16, 0x00, 0x20, 0x00, 0x2b, 0x00, 0x33, 0x00, 0x3d, 0x00, 0x45, 0x00, 0x4b, 0x00, 0x52, 0x00, 0x54, 0x00, 0x5a, 0x00, 0x59, 0x00, 0x60, 0x00, 0x72, 0x00, 0x80, 0x00, 0x85, 0x00, 0x86, 0x00, 0x83, 0x00, 0x7a, 0x00, 0x6e, 0x00, 0x60, 0x00, 0x52, 0x00, 0x40, 0x00, 0x2f, 0x00, 0x1a, 0x00, 0x09, 0x00, 0xf8, 0xff, 0xe6, 0xff, 0xd5, 0xff, 0xba, 0xff, 0x9f, 0xff, 0x8b, 0xff, 0x7a, 0xff, 0x6b, 0xff, 0x61, 0xff, 0x5b, 0xff, 0x59, 0xff, 0x57, 0xff, 0x5b, 0xff, 0x60, 0xff, 0x6b, 0xff, 0x78, 0xff, 0x7d, 0xff, 0x86, 0xff, 0x90, 0xff, 0x9e, 0xff, 0xae, 0xff, 0xc1, 0xff, 0xd3, 0xff, 0xea, 0xff, 0xff, 0xff, 0x13, 0x00, 0x26, 0x00, 0x3b, 0x00, 0x52, 0x00, 0x61, 0x00, 0x73, 0x00, 0x82, 0x00, 0x8f, 0x00, 0x9a, 0x00, 0xa5, 0x00, 0xa9, 0x00, 0xac, 0x00, 0xad, 0x00, 0xb9, 0x00, 0xd5, 0x00, 0xec, 0x00, 0xff, 0x00, 0x02, 0x01, 0xfa, 0x00, 0xe9, 0x00, 0xd2, 0x00, 0xb4, 0x00, 0x92, 0x00, 0x6f, 0x00, 0x48, 0x00, 0x22, 0x00, 0xfb, 0xff, 0xd5, 0xff, 0xb0, 0xff, 0x8d, 0xff, 0x6c, 0xff, 0x4e, 0xff, 0x34, 0xff, 0x1c, 0xff, 0x0b, 0xff, 0xfd, 0xfe, 0xf3, 0xfe, 0xee, 0xfe, 0xec, 0xfe, 0xee, 0xfe, 0xf8, 0xfe, 0x01, 0xff, 0x10, 0xff, 0x24, 0xff, 0x34, 0xff, 0x45, 0xff, 0x56, 0xff, 0x6b, 0xff, 0x83, 0xff, 0x9d, 0xff, 0xbb, 0xff, 0xda, 0xff, 0xf7, 0xff, 0x13, 0x00, 0x33, 0x00, 0x4e, 0x00, 0x68, 0x00, 0x77, 0x00, 0x84, 0x00, 0x91, 0x00, 0x9c, 0x00, 0xa7, 0x00, 0xb0, 0x00, 0xb7, 0x00, 0xbb, 0x00, 0xc1, 0x00, 0xc0, 0x00, 0xbf, 0x00, 0xbf, 0x00, 0xce, 0x00, 0xd5, 0x00, 0xd3, 0x00, 0xcc, 0x00, 0xbf, 0x00, 0xb0, 0x00, 0x9a, 0x00, 0x84, 0x00, 0x6a, 0x00, 0x50, 0x00, 0x32, 0x00, 0x18, 0x00, 0xfd, 0xff, 0xe2, 0xff, 0xc8, 0xff, 0xad, 0xff, 0x98, 0xff, 0x83, 0xff, 0x71, 0xff, 0x63, 0xff, 0x55, 0xff, 0x4a, 0xff, 0x41, 0xff, 0x4e, 0xff, 0x6a, 0xff, 0x7d, 0xff, 0x8d, 0xff, 0x95, 0xff, 0xa0, 0xff, 0xa2, 0xff, 0xa0, 0xff, 0xa2, 0xff, 0xa3, 0xff, 0xa9, 0xff, 0xae, 0xff, 0xb5, 0xff, 0xbd, 0xff, 0xca, 0xff, 0xd3, 0xff, 0xdd, 0xff, 0xed, 0xff, 0xf8, 0xff, 0x05, 0x00, 0x13, 0x00, 0x1e, 0x00, 0x2b, 0x00, 0x36, 0x00, 0x42, 0x00, 0x4c, 0x00, 0x55, 0x00, 0x5a, 0x00, 0x62, 0x00, 0x66, 0x00, 0x73, 0x00, 0x88, 0x00, 0x92, 0x00, 0x98, 0x00, 0x98, 0x00, 0x93, 0x00, 0x8b, 0x00, 0x7f, 0x00, 0x71, 0x00, 0x60, 0x00, 0x50, 0x00, 0x3b, 0x00, 0x27, 0x00, 0x13, 0x00, 0xf6, 0xff, 0xd8, 0xff, 0xbe, 0xff, 0xa5, 0xff, 0x94, 0xff, 0x80, 0xff, 0x73, 0xff, 0x68, 0xff, 0x61, 0xff, 0x5d, 0xff, 0x5b, 0xff, 0x5d, 0xff, 0x64, 0xff, 0x69, 0xff, 0x73, 0xff, 0x80, 0xff, 0x83, 0xff, 0x8d, 0xff, 0x98, 0xff, 0xa5, 0xff, 0xb6, 0xff, 0xc6, 0xff, 0xd9, 0xff, 0xeb, 0xff, 0x00, 0x00, 0x13, 0x00, 0x2a, 0x00, 0x3a, 0x00, 0x50, 0x00, 0x62, 0x00, 0x6d, 0x00, 0x7e, 0x00, 0x88, 0x00, 0x96, 0x00, 0x9a, 0x00, 0xad, 0x00, 0xcd, 0x00, 0xdf, 0x00, 0xe5, 0x00, 0xe4, 0x00, 0xed, 0x00, 0xf0, 0x00, 0xe6, 0x00, 0xd5, 0x00, 0xbf, 0x00, 0xa3, 0x00, 0x84, 0x00, 0x60, 0x00, 0x3f, 0x00, 0x1b, 0x00, 0xf7, 0xff, 0xd5, 0xff, 0xb0, 0xff, 0x92, 0xff, 0x73, 0xff, 0x57, 0xff, 0x3f, 0xff, 0x2b, 0xff, 0x1a, 0xff, 0x0d, 0xff, 0x04, 0xff, 0x01, 0xff, 0xff, 0xfe, 0x02, 0xff, 0x09, 0xff, 0x16, 0xff, 0x23, 0xff, 0x34, 0xff, 0x49, 0xff, 0x59, 0xff, 0x68, 0xff, 0x7d, 0xff, 0x92, 0xff, 0xaa, 0xff, 0xc2, 0xff, 0xde, 0xff, 0xf8, 0xff, 0x15, 0x00, 0x2d, 0x00, 0x3b, 0x00, 0x4a, 0x00, 0x58, 0x00, 0x6b, 0x00, 0x79, 0x00, 0x88, 0x00, 0x94, 0x00, 0x9f, 0x00, 0xab, 0x00, 0xb0, 0x00, 0xb7, 0x00, 0xb9, 0x00, 0xbb, 0x00, 0xb9, 0x00, 0xbd, 0x00, 0xca, 0x00, 0xcc, 0x00, 0xca, 0x00, 0xc0, 0x00, 0xb0, 0x00, 0xa1, 0x00, 0x8b, 0x00, 0x78, 0x00, 0x5b, 0x00, 0x40, 0x00, 0x25, 0x00, 0x0a, 0x00, 0xf0, 0xff, 0xd5, 0xff, 0xbe, 0xff, 0xa3, 0xff, 0x92, 0xff, 0x7b, 0xff, 0x6c, 0xff, 0x5d, 0xff, 0x61, 0xff, 0x73, 0xff, 0x7e, 0xff, 0x85, 0xff, 0x87, 0xff, 0x8b, 0xff, 0x89, 0xff, 0x8d, 0xff, 0x8f, 0xff, 0x8b, 0xff, 0x86, 0xff, 0x86, 0xff, 0x88, 0xff, 0x8d, 0xff, 0x93, 0xff, 0x9b, 0xff, 0xa8, 0xff, 0xb2, 0xff, 0xc1, 0xff, 0xd1, 0xff, 0xe0, 0xff, 0xf2, 0xff, 0xff, 0xff, 0x11, 0x00, 0x20, 0x00, 0x2f, 0x00, 0x3d, 0x00, 0x4c, 0x00, 0x57, 0x00, 0x64, 0x00, 0x6c, 0x00, 0x72, 0x00, 0x7b, 0x00, 0x8d, 0x00, 0xa2, 0x00, 0xa9, 0x00, 0xac, 0x00, 0xaa, 0x00, 0xa5, 0x00, 0x9a, 0x00, 0x8d, 0x00, 0x7b, 0x00, 0x6a, 0x00, 0x55, 0x00, 0x36, 0x00, 0x17, 0x00, 0xfd, 0xff, 0xe2, 0xff, 0xc8, 0xff, 0xb2, 0xff, 0x9d, 0xff, 0x8b, 0xff, 0x7d, 0xff, 0x71, 0xff, 0x68, 0xff, 0x63, 0xff, 0x60, 0xff, 0x61, 0xff, 0x64, 0xff, 0x6b, 0xff, 0x71, 0xff, 0x7e, 0xff, 0x86, 0xff, 0x89, 0xff, 0x93, 0xff, 0x9f, 0xff, 0xab, 0xff, 0xbb, 0xff, 0xcb, 0xff, 0xdb, 0xff, 0xf2, 0xff, 0x02, 0x00, 0x15, 0x00, 0x29, 0x00, 0x3a, 0x00, 0x4e, 0x00, 0x5d, 0x00, 0x6d, 0x00, 0x77, 0x00, 0x92, 0x00, 0xb8, 0x00, 0xca, 0x00, 0xd9, 0x00, 0xdd, 0x00, 0xdb, 0x00, 0xd5, 0x00, 0xce, 0x00, 0xd1, 0x00, 0xcc, 0x00, 0xbb, 0x00, 0xaa, 0x00, 0x8f, 0x00, 0x77, 0x00, 0x56, 0x00, 0x36, 0x00, 0x16, 0x00, 0xf6, 0xff, 0xd5, 0xff, 0xb7, 0xff, 0x98, 0xff, 0x7e, 0xff, 0x65, 0xff, 0x50, 0xff, 0x3e, 0xff, 0x2d, 0xff, 0x24, 0xff, 0x1a, 0xff, 0x16, 0xff, 0x18, 0xff, 0x17, 0xff, 0x21, 0xff, 0x2b, 0xff, 0x38, 0xff, 0x48, 0xff, 0x59, 0xff, 0x6f, 0xff, 0x7c, 0xff, 0x8b, 0xff, 0x9e, 0xff, 0xb2, 0xff, 0xc8, 0xff, 0xe0, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x10, 0x00, 0x21, 0x00, 0x30, 0x00, 0x43, 0x00, 0x54, 0x00, 0x64, 0x00, 0x75, 0x00, 0x83, 0x00, 0x8f, 0x00, 0x9a, 0x00, 0xa5, 0x00, 0xac, 0x00, 0xb0, 0x00, 0xb3, 0x00, 0xb4, 0x00, 0xb0, 0x00, 0xbb, 0x00, 0xc4, 0x00, 0xc5, 0x00, 0xbf, 0x00, 0xb4, 0x00, 0xa7, 0x00, 0x92, 0x00, 0x80, 0x00, 0x65, 0x00, 0x4a, 0x00, 0x32, 0x00, 0x17, 0x00, 0xfe, 0xff, 0xe3, 0xff, 0xcc, 0xff, 0xb2, 0xff, 0x9e, 0xff, 0x89, 0xff, 0x86, 0xff, 0x92, 0xff, 0x93, 0xff, 0x90, 0xff, 0x8b, 0xff, 0x88, 0xff, 0x82, 0xff, 0x7c, 0xff, 0x7a, 0xff, 0x76, 0xff, 0x77, 0xff, 0x75, 0xff, 0x6f, 0xff, 0x6c, 0xff, 0x6b, 0xff, 0x71, 0xff, 0x77, 0xff, 0x82, 0xff, 0x8d, 0xff, 0x9b, 0xff, 0xab, 0xff, 0xbd, 0xff, 0xd0, 0xff, 0xe0, 0xff, 0xf5, 0xff, 0x08, 0x00, 0x1a, 0x00, 0x2d, 0x00, 0x3f, 0x00, 0x4e, 0x00, 0x5f, 0x00, 0x6a, 0x00, 0x77, 0x00, 0x80, 0x00, 0x89, 0x00, 0x94, 0x00, 0xa8, 0x00, 0xb6, 0x00, 0xbb, 0x00, 0xbd, 0x00, 0xb9, 0x00, 0xb0, 0x00, 0xa3, 0x00, 0x91, 0x00, 0x75, 0x00, 0x58, 0x00, 0x3d, 0x00, 0x20, 0x00, 0x06, 0x00, 0xed, 0xff, 0xd5, 0xff, 0xc0, 0xff, 0xaa, 0xff, 0x9a, 0xff, 0x89, 0xff, 0x7e, 0xff, 0x75, 0xff, 0x6d, 0xff, 0x68, 0xff, 0x68, 0xff, 0x69, 0xff, 0x6a, 0xff, 0x73, 0xff, 0x7a, 0xff, 0x9f, 0xff, 0xa2, 0xff, 0xa7, 0xff, 0xae, 0xff, 0xb7, 0xff, 0xc3, 0xff, 0xcd, 0xff, 0xdb, 0xff, 0xe8, 0xff, 0xf6, 0xff, 0x02, 0x00, 0x12, 0x00, 0x1f, 0x00, 0x30, 0x00, 0x3a, 0x00, 0x55, 0x00, 0x75, 0x00, 0x88, 0x00, 0x97, 0x00, 0xa0, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0x95, 0x00, 0x8e, 0x00, 0x89, 0x00, 0x88, 0x00, 0x81, 0x00, 0x74, 0x00, 0x64, 0x00, 0x53, 0x00, 0x3c, 0x00, 0x27, 0x00, 0x11, 0x00, 0xfa, 0xff, 0xe5, 0xff, 0xcf, 0xff, 0xba, 0xff, 0xa7, 0xff, 0x96, 0xff, 0x87, 0xff, 0x7a, 0xff, 0x6f, 0xff, 0x66, 0xff, 0x61, 0xff, 0x5d, 0xff, 0x5d, 0xff, 0x60, 0xff, 0x63, 0xff, 0x6c, 0xff, 0x74, 0xff, 0x7f, 0xff, 0x8b, 0xff, 0x9b, 0xff, 0xa6, 0xff, 0xb1, 0xff, 0xbc, 0xff, 0xca, 0xff, 0xd6, 0xff, 0xde, 0xff, 0xe7, 0xff, 0xf2, 0xff, 0xfd, 0xff, 0x0a, 0x00, 0x16, 0x00, 0x27, 0x00, 0x34, 0x00, 0x43, 0x00, 0x4f, 0x00, 0x5c, 0x00, 0x68, 0x00, 0x72, 0x00, 0x7a, 0x00, 0x81, 0x00, 0x87, 0x00, 0x87, 0x00, 0x8c, 0x00, 0x8a, 0x00, 0x8a, 0x00, 0x94, 0x00, 0x96, 0x00, 0x94, 0x00, 0x8e, 0x00, 0x84, 0x00, 0x77, 0x00, 0x68, 0x00, 0x56, 0x00, 0x44, 0x00, 0x30, 0x00, 0x1a, 0x00, 0x08, 0x00, 0xf4, 0xff, 0xe0, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xcd, 0xff, 0xc6, 0xff, 0xc1, 0xff, 0xb7, 0xff, 0xae, 0xff, 0xa5, 0xff, 0x9c, 0xff, 0x93, 0xff, 0x8c, 0xff, 0x87, 0xff, 0x83, 0xff, 0x82, 0xff, 0x80, 0xff, 0x7d, 0xff, 0x7b, 0xff, 0x7c, 0xff, 0x80, 0xff, 0x85, 0xff, 0x8e, 0xff, 0x98, 0xff, 0xa3, 0xff, 0xb2, 0xff, 0xc1, 0xff, 0xd1, 0xff, 0xe2, 0xff, 0xf4, 0xff, 0x03, 0x00, 0x14, 0x00, 0x24, 0x00, 0x35, 0x00, 0x43, 0x00, 0x50, 0x00, 0x5f, 0x00, 0x66, 0x00, 0x70, 0x00, 0x78, 0x00, 0x7d, 0x00, 0x87, 0x00, 0x96, 0x00, 0x9d, 0x00, 0x9f, 0x00, 0x9c, 0x00, 0x94, 0x00, 0x84, 0x00, 0x71, 0x00, 0x5d, 0x00, 0x49, 0x00, 0x33, 0x00, 0x21, 0x00, 0x0c, 0x00, 0xfa, 0xff, 0xe7, 0xff, 0xd7, 0xff, 0xc7, 0xff, 0xb8, 0xff, 0xad, 0xff, 0xa2, 0xff, 0x99, 0xff, 0x93, 0xff, 0x8f, 0xff, 0x8c, 0xff, 0x8b, 0xff, 0x8c, 0xff, 0x91, 0xff, 0x94, 0xff, 0x9c, 0xff, 0xa1, 0xff, 0xa6, 0xff, 0xa9, 0xff, 0xb1, 0xff, 0xba, 0xff, 0xc4, 0xff, 0xd1, 0xff, 0xdc, 0xff, 0xeb, 0xff, 0xf8, 0xff, 0x05, 0x00, 0x13, 0x00, 0x2e, 0x00, 0x4f, 0x00, 0x65, 0x00, 0x77, 0x00, 0x83, 0x00, 0x8a, 0x00, 0x8d, 0x00, 0x8e, 0x00, 0x8c, 0x00, 0x87, 0x00, 0x81, 0x00, 0x76, 0x00, 0x6e, 0x00, 0x6d, 0x00, 0x69, 0x00, 0x62, 0x00, 0x55, 0x00, 0x46, 0x00, 0x36, 0x00, 0x25, 0x00, 0x12, 0x00, 0xff, 0xff, 0xed, 0xff, 0xdb, 0xff, 0xc8, 0xff, 0xb8, 0xff, 0xa9, 0xff, 0x9b, 0xff, 0x8f, 0xff, 0x86, 0xff, 0x7d, 0xff, 0x79, 0xff, 0x76, 0xff, 0x73, 0xff, 0x75, 0xff, 0x79, 0xff, 0x7e, 0xff, 0x85, 0xff, 0x8f, 0xff, 0x9a, 0xff, 0xa4, 0xff, 0xb2, 0xff, 0xbd, 0xff, 0xc2, 0xff, 0xc4, 0xff, 0xc9, 0xff, 0xd1, 0xff, 0xd9, 0xff, 0xe4, 0xff, 0xef, 0xff, 0x00, 0x00, 0x0b, 0x00, 0x19, 0x00, 0x29, 0x00, 0x37, 0x00, 0x45, 0x00, 0x52, 0x00, 0x5d, 0x00, 0x68, 0x00, 0x71, 0x00, 0x7a, 0x00, 0x7e, 0x00, 0x82, 0x00, 0x86, 0x00, 0x85, 0x00, 0x81, 0x00, 0x86, 0x00, 0x8d, 0x00, 0x8e, 0x00, 0x8a, 0x00, 0x81, 0x00, 0x78, 0x00, 0x68, 0x00, 0x5a, 0x00, 0x48, 0x00, 0x37, 0x00, 0x25, 0x00, 0x0e, 0x00, 0xfd, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xee, 0xff, 0xe4, 0xff, 0xd7, 0xff, 0xc7, 0xff, 0xba, 0xff, 0xac, 0xff, 0x9f, 0xff, 0x92, 0xff, 0x88, 0xff, 0x7f, 0xff, 0x78, 0xff, 0x74, 0xff, 0x70, 0xff, 0x72, 0xff, 0x71, 0xff, 0x71, 0xff, 0x71, 0xff, 0x75, 0xff, 0x7c, 0xff, 0x82, 0xff, 0x90, 0xff, 0x9c, 0xff, 0xab, 0xff, 0xbc, 0xff, 0xcd, 0xff, 0xde, 0xff, 0xf1, 0xff, 0x03, 0x00, 0x15, 0x00, 0x27, 0x00, 0x39, 0x00, 0x46, 0x00, 0x56, 0x00, 0x64, 0x00, 0x6e, 0x00, 0x79, 0x00, 0x7f, 0x00, 0x85, 0x00, 0x8b, 0x00, 0x96, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0x97, 0x00, 0x8e, 0x00, 0x7e, 0x00, 0x6e, 0x00, 0x5e, 0x00, 0x4d, 0x00, 0x3b, 0x00, 0x27, 0x00, 0x15, 0x00, 0x03, 0x00, 0xf3, 0xff, 0xe3, 0xff, 0xd3, 0xff, 0xc5, 0xff, 0xb8, 0xff, 0xac, 0xff, 0xa3, 0xff, 0x9b, 0xff, 0x96, 0xff, 0x91, 0xff, 0x90, 0xff, 0x8f, 0xff, 0x91, 0xff, 0x95, 0xff, 0x99, 0xff, 0x9f, 0xff, 0xa4, 0xff, 0xa7, 0xff, 0xad, 0xff, 0xb4, 0xff, 0xbd, 0xff, 0xc6, 0xff, 0xd1, 0xff, 0xdf, 0xff, 0xec, 0xff, 0x06, 0x00, 0x27, 0x00, 0x3e, 0x00, 0x51, 0x00, 0x5f, 0x00, 0x69, 0x00, 0x71, 0x00, 0x77, 0x00, 0x78, 0x00, 0x77, 0x00, 0x75, 0x00, 0x71, 0x00, 0x6b, 0x00, 0x64, 0x00, 0x59, 0x00, 0x55, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4a, 0x00, 0x40, 0x00, 0x33, 0x00, 0x27, 0x00, 0x16, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xe9, 0xff, 0xd9, 0xff, 0xca, 0xff, 0xbd, 0xff, 0xb1, 0xff, 0xa6, 0xff, 0x9f, 0xff, 0x97, 0xff, 0x8f, 0xff, 0x8e, 0xff, 0x8a, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0x92, 0xff, 0x95, 0xff, 0x9c, 0xff, 0xa5, 0xff, 0xae, 0xff, 0xb6, 0xff, 0xb8, 0xff, 0xb8, 0xff, 0xbb, 0xff, 0xbe, 0xff, 0xc6, 0xff, 0xd0, 0xff, 0xdb, 0xff, 0xe7, 0xff, 0xf4, 0xff, 0x00, 0x00, 0x0f, 0x00, 0x1e, 0x00, 0x2c, 0x00, 0x3a, 0x00, 0x46, 0x00, 0x53, 0x00, 0x5e, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x77, 0x00, 0x7c, 0x00, 0x7e, 0x00, 0x7e, 0x00, 0x7e, 0x00, 0x7d, 0x00, 0x80, 0x00, 0x86, 0x00, 0x84, 0x00, 0x7e, 0x00, 0x77, 0x00, 0x6b, 0x00, 0x5d, 0x00, 0x4c, 0x00, 0x3c, 0x00, 0x29, 0x00, 0x25, 0x00, 0x23, 0x00, 0x16, 0x00, 0x0c, 0x00, 0xfe, 0xff, 0xed, 0xff, 0xda, 0xff, 0xc8, 0xff, 0xb5, 0xff, 0xa7, 0xff, 0x98, 0xff, 0x89, 0xff, 0x7e, 0xff, 0x75, 0xff, 0x6c, 0xff, 0x69, 0xff, 0x66, 0xff, 0x66, 0xff, 0x69, 0xff, 0x6a, 0xff, 0x6c, 0xff, 0x6f, 0xff, 0x77, 0xff, 0x7f, 0xff, 0x8c, 0xff, 0x9a, 0xff, 0xa8, 0xff, 0xbb, 0xff, 0xcd, 0xff, 0xdf, 0xff, 0xf3, 0xff, 0x05, 0x00, 0x16, 0x00, 0x2b, 0x00, 0x3b, 0x00, 0x4d, 0x00, 0x5c, 0x00, 0x68, 0x00, 0x74, 0x00, 0x7e, 0x00, 0x86, 0x00, 0x8c, 0x00, 0x8e, 0x00, 0x93, 0x00, 0x95, 0x00, 0x94, 0x00, 0x90, 0x00, 0x86, 0x00, 0x7c, 0x00, 0x6e, 0x00, 0x61, 0x00, 0x51, 0x00, 0x40, 0x00, 0x2f, 0x00, 0x1f, 0x00, 0x0d, 0x00, 0xfe, 0xff, 0xee, 0xff, 0xe0, 0xff, 0xd0, 0xff, 0xc3, 0xff, 0xb7, 0xff, 0xac, 0xff, 0xa5, 0xff, 0x9c, 0xff, 0x98, 0xff, 0x94, 0xff, 0x94, 0xff, 0x92, 0xff, 0x96, 0xff, 0x98, 0xff, 0x9c, 0xff, 0xa2, 0xff, 0xa6, 0xff, 0xa9, 0xff, 0xb0, 0xff, 0xb6, 0xff, 0xc0, 0xff, 0xc8, 0xff, 0xe4, 0xff, 0x00, 0x00, 0x16, 0x00, 0x28, 0x00, 0x38, 0x00, 0x45, 0x00, 0x4c, 0x00, 0x55, 0x00, 0x59, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5c, 0x00, 0x5b, 0x00, 0x55, 0x00, 0x50, 0x00, 0x4b, 0x00, 0x42, 0x00, 0x43, 0x00, 0x45, 0x00, 0x41, 0x00, 0x3b, 0x00, 0x35, 0x00, 0x28, 0x00, 0x1e, 0x00, 0x10, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xed, 0xff, 0xdf, 0xff, 0xd3, 0xff, 0xca, 0xff, 0xbe, 0xff, 0xb6, 0xff, 0xad, 0xff, 0xa9, 0xff, 0xa2, 0xff, 0xa1, 0xff, 0x9f, 0xff, 0x9e, 0xff, 0xa2, 0xff, 0xa4, 0xff, 0xa9, 0xff, 0xab, 0xff, 0xac, 0xff, 0xab, 0xff, 0xb0, 0xff, 0xb3, 0xff, 0xb5, 0xff, 0xba, 0xff, 0xc0, 0xff, 0xc8, 0xff, 0xd3, 0xff, 0xdf, 0xff, 0xec, 0xff, 0xf9, 0xff, 0x07, 0x00, 0x13, 0x00, 0x23, 0x00, 0x31, 0x00, 0x3d, 0x00, 0x4a, 0x00, 0x54, 0x00, 0x5f, 0x00, 0x66, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x76, 0x00, 0x78, 0x00, 0x76, 0x00, 0x75, 0x00, 0x77, 0x00, 0x7b, 0x00, 0x7c, 0x00, 0x79, 0x00, 0x74, 0x00, 0x6b, 0x00, 0x5e, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x4d, 0x00, 0x44, 0x00, 0x38, 0x00, 0x25, 0x00, 0x13, 0x00, 0x00, 0x00, 0xed, 0xff, 0xd8, 0xff, 0xc5, 0xff, 0xb0, 0xff, 0xa0, 0xff, 0x90, 0xff, 0x82, 0xff, 0x76, 0xff, 0x6d, 0xff, 0x68, 0xff, 0x62, 0xff, 0x60, 0xff, 0x5f, 0xff, 0x63, 0xff, 0x68, 0xff, 0x6b, 0xff, 0x70, 0xff, 0x76, 0xff, 0x81, 0xff, 0x8d, 0xff, 0x9a, 0xff, 0xab, 0xff, 0xbb, 0xff, 0xce, 0xff, 0xe2, 0xff, 0xf6, 0xff, 0x06, 0x00, 0x1a, 0x00, 0x2f, 0x00, 0x3e, 0x00, 0x50, 0x00, 0x5d, 0x00, 0x6d, 0x00, 0x77, 0x00, 0x81, 0x00, 0x89, 0x00, 0x8a, 0x00, 0x87, 0x00, 0x82, 0x00, 0x85, 0x00, 0x87, 0x00, 0x87, 0x00, 0x81, 0x00, 0x79, 0x00, 0x70, 0x00, 0x63, 0x00, 0x55, 0x00, 0x47, 0x00, 0x38, 0x00, 0x29, 0x00, 0x19, 0x00, 0x06, 0x00, 0xf9, 0xff, 0xe9, 0xff, 0xdb, 0xff, 0xcf, 0xff, 0xc1, 0xff, 0xb5, 0xff, 0xab, 0xff, 0xa3, 0xff, 0x9d, 0xff, 0x98, 0xff, 0x97, 0xff, 0x95, 0xff, 0x95, 0xff, 0x97, 0xff, 0x9b, 0xff, 0xa0, 0xff, 0xa5, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0xb0, 0xff, 0xc5, 0xff, 0xe1, 0xff, 0xf4, 0xff, 0x04, 0x00, 0x11, 0x00, 0x1c, 0x00, 0x29, 0x00, 0x2e, 0x00, 0x37, 0x00, 0x3c, 0x00, 0x41, 0x00, 0x45, 0x00, 0x45, 0x00, 0x48, 0x00, 0x47, 0x00, 0x45, 0x00, 0x43, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x37, 0x00, 0x36, 0x00, 0x3b, 0x00, 0x3c, 0x00, 0x3b, 0x00, 0x35, 0x00, 0x2f, 0x00, 0x27, 0x00, 0x1f, 0x00, 0x12, 0x00, 0x09, 0x00, 0x00, 0x00, 0xf4, 0xff, 0xea, 0xff, 0xdf, 0xff, 0xd7, 0xff, 0xce, 0xff, 0xc7, 0xff, 0xc0, 0xff, 0xba, 0xff, 0xb7, 0xff, 0xb3, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xaf, 0xff, 0xa8, 0xff, 0xa6, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xad, 0xff, 0xb0, 0xff, 0xb4, 0xff, 0xb7, 0xff, 0xbd, 0xff, 0xc6, 0xff, 0xce, 0xff, 0xdb, 0xff, 0xe6, 0xff, 0xf1, 0xff, 0x00, 0x00, 0x0c, 0x00, 0x1a, 0x00, 0x28, 0x00, 0x34, 0x00, 0x40, 0x00, 0x4b, 0x00, 0x55, 0x00, 0x5e, 0x00, 0x64, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x71, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x71, 0x00, 0x75, 0x00, 0x73, 0x00, 0x71, 0x00, 0x68, 0x00, 0x6b, 0x00, 0x6f, 0x00, 0x68, 0x00, 0x5e, 0x00, 0x50, 0x00, 0x3e, 0x00, 0x28, 0x00, 0x13, 0x00, 0x00, 0x00, 0xe8, 0xff, 0xd4, 0xff, 0xc1, 0xff, 0xae, 0xff, 0x9c, 0xff, 0x8c, 0xff, 0x7f, 0xff, 0x73, 0xff, 0x69, 0xff, 0x63, 0xff, 0x5f, 0xff, 0x5d, 0xff, 0x60, 0xff, 0x62, 0xff, 0x69, 0xff, 0x6f, 0xff, 0x73, 0xff, 0x7b, 0xff, 0x85, 0xff, 0x91, 0xff, 0x9f, 0xff, 0xb1, 0xff, 0xc1, 0xff, 0xd4, 0xff, 0xe5, 0xff, 0xfa, 0xff, 0x0c, 0x00, 0x1e, 0x00, 0x2f, 0x00, 0x42, 0x00, 0x52, 0x00, 0x61, 0x00, 0x6e, 0x00, 0x78, 0x00, 0x7e, 0x00, 0x80, 0x00, 0x7d, 0x00, 0x7b, 0x00, 0x78, 0x00, 0x78, 0x00, 0x7e, 0x00, 0x7f, 0x00, 0x7e, 0x00, 0x78, 0x00, 0x72, 0x00, 0x68, 0x00, 0x5b, 0x00, 0x4e, 0x00, 0x40, 0x00, 0x32, 0x00, 0x20, 0x00, 0x12, 0x00, 0x01, 0x00, 0xf4, 0xff, 0xe7, 0xff, 0xd7, 0xff, 0xcb, 0xff, 0xbe, 0xff, 0xb3, 0xff, 0xab, 0xff, 0xa3, 0xff, 0x9d, 0xff, 0x98, 0xff, 0x98, 0xff, 0x95, 0xff, 0x97, 0xff, 0x99, 0xff, 0x9d, 0xff, 0xa3, 0xff, 0xa5, 0xff, 0xb5, 0xff, 0xcc, 0xff, 0xd8, 0xff, 0xe6, 0xff, 0xf3, 0xff, 0xfa, 0xff, 0x03, 0x00, 0x0a, 0x00, 0x12, 0x00, 0x17, 0x00, 0x1c, 0x00, 0x25, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x30, 0x00, 0x32, 0x00, 0x35, 0x00, 0x34, 0x00, 0x35, 0x00, 0x35, 0x00, 0x32, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x38, 0x00, 0x3c, 0x00, 0x3a, 0x00, 0x38, 0x00, 0x32, 0x00, 0x2c, 0x00, 0x25, 0x00, 0x1b, 0x00, 0x13, 0x00, 0x08, 0x00, 0x00, 0x00, 0xf7, 0xff, 0xee, 0xff, 0xe5, 0xff, 0xdc, 0xff, 0xd6, 0xff, 0xce, 0xff, 0xc9, 0xff, 0xc4, 0xff, 0xbe, 0xff, 0xb3, 0xff, 0xac, 0xff, 0xa6, 0xff, 0xa5, 0xff, 0xa2, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xae, 0xff, 0xb5, 0xff, 0xb5, 0xff, 0xbc, 0xff, 0xc3, 0xff, 0xcc, 0xff, 0xd4, 0xff, 0xe2, 0xff, 0xed, 0xff, 0xf8, 0xff, 0x05, 0x00, 0x12, 0x00, 0x1d, 0x00, 0x2a, 0x00, 0x36, 0x00, 0x41, 0x00, 0x4c, 0x00, 0x53, 0x00, 0x5b, 0x00, 0x61, 0x00, 0x65, 0x00, 0x67, 0x00, 0x6b, 0x00, 0x68, 0x00, 0x67, 0x00, 0x67, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x79, 0x00, 0x84, 0x00, 0x80, 0x00, 0x7b, 0x00, 0x70, 0x00, 0x61, 0x00, 0x50, 0x00, 0x3b, 0x00, 0x26, 0x00, 0x11, 0x00, 0xfb, 0xff, 0xe5, 0xff, 0xd0, 0xff, 0xbc, 0xff, 0xa9, 0xff, 0x98, 0xff, 0x89, 0xff, 0x7c, 0xff, 0x73, 0xff, 0x69, 0xff, 0x64, 0xff, 0x60, 0xff, 0x60, 0xff, 0x63, 0xff, 0x66, 0xff, 0x6c, 0xff, 0x76, 0xff, 0x7c, 0xff, 0x83, 0xff, 0x8c, 0xff, 0x9a, 0xff, 0xa6, 0xff, 0xb6, 0xff, 0xc7, 0xff, 0xd8, 0xff, 0xed, 0xff, 0xff, 0xff, 0x10, 0x00, 0x22, 0x00, 0x32, 0x00, 0x43, 0x00, 0x52, 0x00, 0x61, 0x00, 0x68, 0x00, 0x6c, 0x00, 0x70, 0x00, 0x71, 0x00, 0x73, 0x00, 0x72, 0x00, 0x71, 0x00, 0x71, 0x00, 0x72, 0x00, 0x79, 0x00, 0x79, 0x00, 0x77, 0x00, 0x71, 0x00, 0x69, 0x00, 0x60, 0x00, 0x55, 0x00, 0x46, 0x00, 0x39, 0x00, 0x2a, 0x00, 0x1b, 0x00, 0x0b, 0x00, 0xfe, 0xff, 0xee, 0xff, 0xe1, 0xff, 0xd4, 0xff, 0xc6, 0xff, 0xbb, 0xff, 0xb1, 0xff, 0xa8, 0xff, 0xa2, 0xff, 0x9d, 0xff, 0x98, 0xff, 0x98, 0xff, 0x95, 0xff, 0x99, 0xff, 0x9b, 0xff, 0xae, 0xff, 0xc1, 0xff, 0xca, 0xff, 0xd4, 0xff, 0xda, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x13, 0x00, 0x16, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x24, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2d, 0x00, 0x2e, 0x00, 0x30, 0x00, 0x37, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x33, 0x00, 0x2d, 0x00, 0x25, 0x00, 0x1c, 0x00, 0x14, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xf0, 0xff, 0xe7, 0xff, 0xde, 0xff, 0xd6, 0xff, 0xc5, 0xff, 0xbc, 0xff, 0xb3, 0xff, 0xab, 0xff, 0xa8, 0xff, 0xa3, 0xff, 0xa3, 0xff, 0xa5, 0xff, 0xa9, 0xff, 0xac, 0xff, 0xb5, 0xff, 0xb6, 0xff, 0xbb, 0xff, 0xc2, 0xff, 0xc8, 0xff, 0xd2, 0xff, 0xdb, 0xff, 0xed, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0e, 0x00, 0x17, 0x00, 0x20, 0x00, 0x28, 0x00, 0x30, 0x00, 0x36, 0x00, 0x3b, 0x00, 0x40, 0x00, 0x44, 0x00, 0x46, 0x00, 0x47, 0x00, 0x47, 0x00, 0x48, 0x00, 0x47, 0x00, 0x52, 0x00, 0x5f, 0x00, 0x64, 0x00, 0x65, 0x00, 0x61, 0x00, 0x5b, 0x00, 0x51, 0x00, 0x45, 0x00, 0x37, 0x00, 0x28, 0x00, 0x18, 0x00, 0x08, 0x00, 0xfa, 0xff, 0xeb, 0xff, 0xdc, 0xff, 0xcd, 0xff, 0xc0, 0xff, 0xb4, 0xff, 0xa9, 0xff, 0xa1, 0xff, 0x98, 0xff, 0x93, 0xff, 0x91, 0xff, 0x8e, 0xff, 0x8f, 0xff, 0x90, 0xff, 0x93, 0xff, 0x99, 0xff, 0xa0, 0xff, 0xa6, 0xff, 0xac, 0xff, 0xb3, 0xff, 0xba, 0xff, 0xc5, 0xff, 0xcf, 0xff, 0xdb, 0xff, 0xe8, 0xff, 0xf3, 0xff, 0x00, 0x00, 0x0c, 0x00, 0x18, 0x00, 0x24, 0x00, 0x30, 0x00, 0x37, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x45, 0x00, 0x48, 0x00, 0x4b, 0x00, 0x4d, 0x00, 0x4e, 0x00, 0x50, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x51, 0x00, 0x56, 0x00, 0x54, 0x00, 0x53, 0x00, 0x4f, 0x00, 0x48, 0x00, 0x42, 0x00, 0x38, 0x00, 0x2d, 0x00, 0x23, 0x00, 0x19, 0x00, 0x0d, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xef, 0xff, 0xe5, 0xff, 0xda, 0xff, 0xd2, 0xff, 0xcb, 0xff, 0xc2, 0xff, 0xbf, 0xff, 0xba, 0xff, 0xb6, 0xff, 0xb3, 0xff, 0xb4, 0xff, 0xbd, 0xff, 0xc9, 0xff, 0xd2, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xdc, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe5, 0xff, 0xe7, 0xff, 0xeb, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf7, 0xff, 0xfd, 0xff, 0x00, 0x00, 0x03, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x14, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x23, 0x00, 0x24, 0x00, 0x29, 0x00, 0x30, 0x00, 0x34, 0x00, 0x36, 0x00, 0x36, 0x00, 0x35, 0x00, 0x32, 0x00, 0x2d, 0x00, 0x28, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x15, 0x00, 0x0f, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xed, 0xff, 0xe1, 0xff, 0xd8, 0xff, 0xd0, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xc1, 0xff, 0xbf, 0xff, 0xbd, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xc4, 0xff, 0xc7, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xd0, 0xff, 0xd6, 0xff, 0xda, 0xff, 0xe1, 0xff, 0xea, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x08, 0x00, 0x10, 0x00, 0x1a, 0x00, 0x20, 0x00, 0x27, 0x00, 0x2e, 0x00, 0x34, 0x00, 0x39, 0x00, 0x3b, 0x00, 0x41, 0x00, 0x43, 0x00, 0x44, 0x00, 0x4f, 0x00, 0x55, 0x00, 0x5a, 0x00, 0x5f, 0x00, 0x62, 0x00, 0x61, 0x00, 0x5c, 0x00, 0x54, 0x00, 0x4a, 0x00, 0x3e, 0x00, 0x31, 0x00, 0x22, 0x00, 0x12, 0x00, 0x04, 0x00, 0xf6, 0xff, 0xe9, 0xff, 0xd9, 0xff, 0xce, 0xff, 0xc1, 0xff, 0xb5, 0xff, 0xac, 0xff, 0xa4, 0xff, 0x9e, 0xff, 0x99, 0xff, 0x95, 0xff, 0x95, 0xff, 0x94, 0xff, 0x96, 0xff, 0x9b, 0xff, 0x9f, 0xff, 0xa7, 0xff, 0xae, 0xff, 0xb5, 0xff, 0xbc, 0xff, 0xc1, 0xff, 0xcb, 0xff, 0xd6, 0xff, 0xdf, 0xff, 0xea, 0xff, 0xf7, 0xff, 0x00, 0x00, 0x0d, 0x00, 0x17, 0x00, 0x20, 0x00, 0x26, 0x00, 0x2b, 0x00, 0x30, 0x00, 0x36, 0x00, 0x3b, 0x00, 0x41, 0x00, 0x43, 0x00, 0x47, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x4b, 0x00, 0x4d, 0x00, 0x52, 0x00, 0x53, 0x00, 0x52, 0x00, 0x4f, 0x00, 0x4a, 0x00, 0x43, 0x00, 0x3b, 0x00, 0x32, 0x00, 0x28, 0x00, 0x1f, 0x00, 0x12, 0x00, 0x09, 0x00, 0xff, 0xff, 0xf4, 0xff, 0xeb, 0xff, 0xe0, 0xff, 0xd7, 0xff, 0xce, 0xff, 0xc7, 0xff, 0xc1, 0xff, 0xbc, 0xff, 0xb9, 0xff, 0xc0, 0xff, 0xc7, 0xff, 0xcc, 0xff, 0xd0, 0xff, 0xd3, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd6, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd6, 0xff, 0xd6, 0xff, 0xd9, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xe9, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x03, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x14, 0x00, 0x1b, 0x00, 0x1e, 0x00, 0x23, 0x00, 0x26, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x32, 0x00, 0x3a, 0x00, 0x3d, 0x00, 0x3f, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x38, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x29, 0x00, 0x22, 0x00, 0x1a, 0x00, 0x10, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xee, 0xff, 0xe4, 0xff, 0xdb, 0xff, 0xd3, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xc1, 0xff, 0xc0, 0xff, 0xc1, 0xff, 0xc1, 0xff, 0xc5, 0xff, 0xc7, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0xd0, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xdf, 0xff, 0xe5, 0xff, 0xeb, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x09, 0x00, 0x11, 0x00, 0x19, 0x00, 0x1f, 0x00, 0x27, 0x00, 0x2c, 0x00, 0x31, 0x00, 0x35, 0x00, 0x3a, 0x00, 0x47, 0x00, 0x52, 0x00, 0x56, 0x00, 0x59, 0x00, 0x59, 0x00, 0x58, 0x00, 0x5a, 0x00, 0x57, 0x00, 0x53, 0x00, 0x4c, 0x00, 0x41, 0x00, 0x37, 0x00, 0x2b, 0x00, 0x1d, 0x00, 0x0f, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xe9, 0xff, 0xdb, 0xff, 0xd0, 0xff, 0xc5, 0xff, 0xbc, 0xff, 0xb2, 0xff, 0xac, 0xff, 0xa5, 0xff, 0xa1, 0xff, 0x9f, 0xff, 0x9d, 0xff, 0x9d, 0xff, 0xa0, 0xff, 0xa3, 0xff, 0xa8, 0xff, 0xaf, 0xff, 0xb5, 0xff, 0xbe, 0xff, 0xc3, 0xff, 0xca, 0xff, 0xd1, 0xff, 0xdb, 0xff, 0xe4, 0xff, 0xee, 0xff, 0xf7, 0xff, 0x00, 0x00, 0x08, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x1b, 0x00, 0x23, 0x00, 0x28, 0x00, 0x2f, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3f, 0x00, 0x43, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x4d, 0x00, 0x51, 0x00, 0x51, 0x00, 0x4f, 0x00, 0x4b, 0x00, 0x45, 0x00, 0x3e, 0x00, 0x36, 0x00, 0x2d, 0x00, 0x23, 0x00, 0x18, 0x00, 0x0e, 0x00, 0x03, 0x00, 0xf9, 0xff, 0xf0, 0xff, 0xe5, 0xff, 0xdc, 0xff, 0xd5, 0xff, 0xcb, 0xff, 0xc7, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xd0, 0xff, 0xd0, 0xff, 0xcf, 0xff, 0xd0, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xd0, 0xff, 0xce, 0xff, 0xcb, 0xff, 0xca, 0xff, 0xca, 0xff, 0xcb, 0xff, 0xcd, 0xff, 0xd0, 0xff, 0xd5, 0xff, 0xd9, 0xff, 0xdf, 0xff, 0xe5, 0xff, 0xeb, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x05, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x1b, 0x00, 0x20, 0x00, 0x27, 0x00, 0x2a, 0x00, 0x2d, 0x00, 0x32, 0x00, 0x36, 0x00, 0x3e, 0x00, 0x42, 0x00, 0x45, 0x00, 0x46, 0x00, 0x46, 0x00, 0x43, 0x00, 0x3f, 0x00, 0x39, 0x00, 0x33, 0x00, 0x29, 0x00, 0x1d, 0x00, 0x11, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xe8, 0xff, 0xdf, 0xff, 0xd9, 0xff, 0xd3, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xc7, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc8, 0xff, 0xca, 0xff, 0xd0, 0xff, 0xd1, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xdc, 0xff, 0xe2, 0xff, 0xe6, 0xff, 0xef, 0xff, 0xf4, 0xff, 0xfd, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x17, 0x00, 0x1f, 0x00, 0x24, 0x00, 0x2c, 0x00, 0x3a, 0x00, 0x46, 0x00, 0x4d, 0x00, 0x53, 0x00, 0x54, 0x00, 0x55, 0x00, 0x53, 0x00, 0x4e, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x48, 0x00, 0x41, 0x00, 0x39, 0x00, 0x30, 0x00, 0x24, 0x00, 0x1a, 0x00, 0x0d, 0x00, 0x01, 0x00, 0xf5, 0xff, 0xea, 0xff, 0xdf, 0xff, 0xd4, 0xff, 0xca, 0xff, 0xc2, 0xff, 0xba, 0xff, 0xb4, 0xff, 0xaf, 0xff, 0xab, 0xff, 0xa9, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xad, 0xff, 0xb2, 0xff, 0xb8, 0xff, 0xbd, 0xff, 0xc6, 0xff, 0xce, 0xff, 0xd2, 0xff, 0xd7, 0xff, 0xe0, 0xff, 0xe6, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x04, 0x00, 0x0b, 0x00, 0x12, 0x00, 0x19, 0x00, 0x1f, 0x00, 0x28, 0x00, 0x2d, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3e, 0x00, 0x42, 0x00, 0x44, 0x00, 0x47, 0x00, 0x47, 0x00, 0x47, 0x00, 0x48, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4c, 0x00, 0x4a, 0x00, 0x45, 0x00, 0x3f, 0x00, 0x37, 0x00, 0x2f, 0x00, 0x26, 0x00, 0x1c, 0x00, 0x11, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xeb, 0xff, 0xe1, 0xff, 0xd9, 0xff, 0xdb, 0xff, 0xdc, 0xff, 0xd9, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xd0, 0xff, 0xcd, 0xff, 0xca, 0xff, 0xc8, 0xff, 0xc7, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc0, 0xff, 0xc1, 0xff, 0xc1, 0xff, 0xc3, 0xff, 0xc7, 0xff, 0xcc, 0xff, 0xd0, 0xff, 0xd6, 0xff, 0xde, 0xff, 0xe6, 0xff, 0xed, 0xff, 0xf4, 0xff, 0xfe, 0xff, 0x03, 0x00, 0x0d, 0x00, 0x15, 0x00, 0x1b, 0x00, 0x24, 0x00, 0x28, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x37, 0x00, 0x3a, 0x00, 0x40, 0x00, 0x47, 0x00, 0x4b, 0x00, 0x4c, 0x00, 0x4c, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x3e, 0x00, 0x32, 0x00, 0x29, 0x00, 0x1c, 0x00, 0x13, 0x00, 0x09, 0x00, 0xff, 0xff, 0xf7, 0xff, 0xed, 0xff, 0xe7, 0xff, 0xde, 0xff, 0xd8, 0xff, 0xd3, 0xff, 0xce, 0xff, 0xca, 0xff, 0xc7, 0xff, 0xc7, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xca, 0xff, 0xcf, 0xff, 0xd3, 0xff, 0xd3, 0xff, 0xd6, 0xff, 0xd9, 0xff, 0xde, 0xff, 0xe3, 0xff, 0xe9, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xfd, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x0f, 0x00, 0x19, 0x00, 0x28, 0x00, 0x36, 0x00, 0x3f, 0x00, 0x46, 0x00, 0x4b, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4b, 0x00, 0x49, 0x00, 0x44, 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x3b, 0x00, 0x38, 0x00, 0x31, 0x00, 0x2a, 0x00, 0x1f, 0x00, 0x17, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xef, 0xff, 0xe4, 0xff, 0xdc, 0xff, 0xd1, 0xff, 0xcb, 0xff, 0xc4, 0xff, 0xbd, 0xff, 0xbb, 0xff, 0xb7, 0xff, 0xb5, 0xff, 0xb4, 0xff, 0xb3, 0xff, 0xb4, 0xff, 0xb7, 0xff, 0xbc, 0xff, 0xc1, 0xff, 0xc5, 0xff, 0xcd, 0xff, 0xd4, 0xff, 0xd9, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x0c, 0x00, 0x12, 0x00, 0x1a, 0x00, 0x21, 0x00, 0x29, 0x00, 0x2f, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3e, 0x00, 0x42, 0x00, 0x43, 0x00, 0x45, 0x00, 0x45, 0x00, 0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x48, 0x00, 0x45, 0x00, 0x3f, 0x00, 0x39, 0x00, 0x31, 0x00, 0x29, 0x00, 0x1f, 0x00, 0x15, 0x00, 0x0b, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xf1, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xe1, 0xff, 0xda, 0xff, 0xd5, 0xff, 0xce, 0xff, 0xca, 0xff, 0xc7, 0xff, 0xc2, 0xff, 0xbe, 0xff, 0xbd, 0xff, 0xbc, 0xff, 0xbc, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xbd, 0xff, 0xc1, 0xff, 0xc5, 0xff, 0xcc, 0xff, 0xd2, 0xff, 0xd9, 0xff, 0xe2, 0xff, 0xeb, 0xff, 0xf4, 0xff, 0xfd, 0xff, 0x04, 0x00, 0x0c, 0x00, 0x15, 0x00, 0x1e, 0x00, 0x26, 0x00, 0x2d, 0x00, 0x32, 0x00, 0x39, 0x00, 0x3c, 0x00, 0x40, 0x00, 0x42, 0x00, 0x47, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x50, 0x00, 0x4c, 0x00, 0x43, 0x00, 0x3b, 0x00, 0x33, 0x00, 0x28, 0x00, 0x1f, 0x00, 0x16, 0x00, 0x0c, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xcf, 0xff, 0xcb, 0xff, 0xca, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd6, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xe4, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x13, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x34, 0x00, 0x3a, 0x00, 0x3f, 0x00, 0x41, 0x00, 0x42, 0x00, 0x42, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x39, 0x00, 0x35, 0x00, 0x31, 0x00, 0x30, 0x00, 0x2d, 0x00, 0x2a, 0x00, 0x24, 0x00, 0x1c, 0x00, 0x15, 0x00, 0x0c, 0x00, 0x04, 0x00, 0xfd, 0xff, 0xf4, 0xff, 0xec, 0xff, 0xe3, 0xff, 0xdd, 0xff, 0xd5, 0xff, 0xd0, 0xff, 0xca, 0xff, 0xc6, 0xff, 0xc3, 0xff, 0xc1, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xd2, 0xff, 0xd9, 0xff, 0xde, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe6, 0xff, 0xec, 0xff, 0xf1, 0xff, 0xfa, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x1c, 0x00, 0x23, 0x00, 0x2a, 0x00, 0x2f, 0x00, 0x36, 0x00, 0x39, 0x00, 0x3d, 0x00, 0x40, 0x00, 0x42, 0x00, 0x42, 0x00, 0x43, 0x00, 0x42, 0x00, 0x44, 0x00, 0x46, 0x00, 0x45, 0x00, 0x44, 0x00, 0x3e, 0x00, 0x39, 0x00, 0x30, 0x00, 0x2b, 0x00, 0x21, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xf1, 0xff, 0xea, 0xff, 0xe2, 0xff, 0xd9, 0xff, 0xd2, 0xff, 0xcc, 0xff, 0xc5, 0xff, 0xc1, 0xff, 0xbb, 0xff, 0xb8, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb5, 0xff, 0xb6, 0xff, 0xb9, 0xff, 0xbd, 0xff, 0xc1, 0xff, 0xc8, 0xff, 0xd0, 0xff, 0xd8, 0xff, 0xe1, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xfd, 0xff, 0x04, 0x00, 0x0e, 0x00, 0x17, 0x00, 0x20, 0x00, 0x29, 0x00, 0x30, 0x00, 0x36, 0x00, 0x3b, 0x00, 0x40, 0x00, 0x43, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x4c, 0x00, 0x46, 0x00, 0x41, 0x00, 0x3a, 0x00, 0x32, 0x00, 0x2a, 0x00, 0x22, 0x00, 0x1a, 0x00, 0x10, 0x00, 0x08, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xf1, 0xff, 0xea, 0xff, 0xe5, 0xff, 0xde, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd0, 0xff, 0xcd, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcd, 0xff, 0xcf, 0xff, 0xd3, 0xff, 0xd3, 0xff, 0xd6, 0xff, 0xd7, 0xff, 0xdc, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xeb, 0xff, 0xf2, 0xff, 0x00, 0x00, 0x0d, 0x00, 0x17, 0x00, 0x20, 0x00, 0x28, 0x00, 0x2d, 0x00, 0x31, 0x00, 0x35, 0x00, 0x35, 0x00, 0x35, 0x00, 0x36, 0x00, 0x34, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x2c, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1a, 0x00, 0x15, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xe1, 0xff, 0xdb, 0xff, 0xd6, 0xff, 0xd3, 0xff, 0xcf, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xca, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcd, 0xff, 0xd1, 0xff, 0xd3, 0xff, 0xd8, 0xff, 0xd9, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x09, 0x00, 0x11, 0x00, 0x17, 0x00, 0x13, 0x00, 0x18, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x25, 0x00, 0x27, 0x00, 0x28, 0x00, 0x29, 0x00, 0x28, 0x00, 0x28, 0x00, 0x28, 0x00, 0x29, 0x00, 0x29, 0x00, 0x29, 0x00, 0x27, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1b, 0x00, 0x16, 0x00, 0x12, 0x00, 0x11, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf7, 0xff, 0xf2, 0xff, 0xeb, 0xff, 0xe6, 0xff, 0xe1, 0xff, 0xdc, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xcd, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xd0, 0xff, 0xd0, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xdc, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x16, 0x00, 0x1b, 0x00, 0x20, 0x00, 0x24, 0x00, 0x28, 0x00, 0x2a, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2c, 0x00, 0x2a, 0x00, 0x29, 0x00, 0x24, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x18, 0x00, 0x12, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf7, 0xff, 0xf2, 0xff, 0xee, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe5, 0xff, 0xe2, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xe1, 0xff, 0xe2, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe5, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x03, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x13, 0x00, 0x16, 0x00, 0x18, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1b, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x19, 0x00, 0x17, 0x00, 0x16, 0x00, 0x13, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x13, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf7, 0xff, 0xf3, 0xff, 0xf1, 0xff, 0xed, 0xff, 0xeb, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe5, 0xff, 0xe4, 0xff, 0xe5, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe5, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xec, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf7, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0c, 0x00, 0x10, 0x00, 0x14, 0x00, 0x19, 0x00, 0x1b, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x25, 0x00, 0x25, 0x00, 0x27, 0x00, 0x27, 0x00, 0x25, 0x00, 0x23, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x14, 0x00, 0x10, 0x00, 0x09, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf7, 0xff, 0xf1, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xdf, 0xff, 0xda, 0xff, 0xd5, 0xff, 0xd2, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xcd, 0xff, 0xce, 0xff, 0xd0, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xd5, 0xff, 0xd9, 0xff, 0xde, 0xff, 0xe2, 0xff, 0xe8, 0xff, 0xee, 0xff, 0xf3, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x06, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x16, 0x00, 0x1c, 0x00, 0x21, 0x00, 0x24, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x29, 0x00, 0x27, 0x00, 0x29, 0x00, 0x29, 0x00, 0x28, 0x00, 0x27, 0x00, 0x25, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x15, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x07, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfa, 0xff, 0xf5, 0xff, 0xf1, 0xff, 0xed, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe2, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xdf, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe2, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xee, 0xff, 0xf4, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x10, 0x00, 0x12, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x12, 0x00, 0x12, 0x00, 0x10, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x12, 0x00, 0x12, 0x00, 0x10, 0x00, 0x0f, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x09, 0x00, 0x06, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xee, 0xff, 0xed, 0xff, 0xeb, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe5, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe5, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xee, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x12, 0x00, 0x16, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1e, 0x00, 0x20, 0x00, 0x22, 0x00, 0x23, 0x00, 0x24, 0x00, 0x24, 0x00, 0x23, 0x00, 0x22, 0x00, 0x24, 0x00, 0x24, 0x00, 0x23, 0x00, 0x23, 0x00, 0x25, 0x00, 0x26, 0x00, 0x23, 0x00, 0x21, 0x00, 0x1b, 0x00, 0x16, 0x00, 0x10, 0x00, 0x09, 0x00, 0x02, 0x00, 0xfd, 0xff, 0xf6, 0xff, 0xef, 0xff, 0xe9, 0xff, 0xe2, 0xff, 0xde, 0xff, 0xd9, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xcf, 0xff, 0xcd, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xcd, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0xdf, 0xff, 0xe4, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x05, 0x00, 0x0c, 0x00, 0x12, 0x00, 0x17, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x25, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x25, 0x00, 0x24, 0x00, 0x26, 0x00, 0x26, 0x00, 0x27, 0x00, 0x26, 0x00, 0x25, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1b, 0x00, 0x17, 0x00, 0x13, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe2, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xdf, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe4, 0xff, 0xe9, 0xff, 0xee, 0xff, 0xf1, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x12, 0x00, 0x11, 0x00, 0x0f, 0x00, 0x0e, 0x00, 0x0c, 0x00, 0x09, 0x00, 0x06, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf7, 0xff, 0xf4, 0xff, 0xf3, 0xff, 0xf1, 0xff, 0xed, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe5, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe5, 0xff, 0xe7, 0xff, 0xe8, 0xff, 0xea, 0xff, 0xec, 0xff, 0xee, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0f, 0x00, 0x12, 0x00, 0x14, 0x00, 0x19, 0x00, 0x1b, 0x00, 0x1d, 0x00, 0x1e, 0x00, 0x20, 0x00, 0x21, 0x00, 0x21, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x22, 0x00, 0x27, 0x00, 0x29, 0x00, 0x2a, 0x00, 0x27, 0x00, 0x25, 0x00, 0x20, 0x00, 0x1b, 0x00, 0x15, 0x00, 0x0f, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf4, 0xff, 0xee, 0xff, 0xe7, 0xff, 0xe2, 0xff, 0xdc, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xcd, 0xff, 0xcd, 0xff, 0xcf, 0xff, 0xd0, 0xff, 0xd2, 0xff, 0xd6, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xeb, 0xff, 0xf2, 0xff, 0xf7, 0xff, 0xfd, 0xff, 0x01, 0x00, 0x07, 0x00, 0x0d, 0x00, 0x12, 0x00, 0x17, 0x00, 0x1c, 0x00, 0x1e, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x23, 0x00, 0x22, 0x00, 0x22, 0x00, 0x24, 0x00, 0x26, 0x00, 0x25, 0x00, 0x24, 0x00, 0x22, 0x00, 0x20, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x15, 0x00, 0x11, 0x00, 0x0c, 0x00, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf7, 0xff, 0xf3, 0xff, 0xee, 0xff, 0xeb, 0xff, 0xe7, 0xff, 0xe5, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xdf, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf1, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x09, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0f, 0x00, 0x12, 0x00, 0x13, 0x00, 0x15, 0x00, 0x14, 0x00, 0x14, 0x00, 0x12, 0x00, 0x10, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xfa, 0xff, 0xf6, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe5, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe5, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xeb, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0x12, 0x00, 0x15, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1e, 0x00, 0x1e, 0x00, 0x1e, 0x00, 0x20, 0x00, 0x24, 0x00, 0x27, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x27, 0x00, 0x23, 0x00, 0x1e, 0x00, 0x19, 0x00, 0x12, 0x00, 0x0c, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfa, 0xff, 0xf3, 0xff, 0xee, 0xff, 0xe7, 0xff, 0xe2, 0xff, 0xde, 0xff, 0xd8, 0xff, 0xd6, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xd0, 0xff, 0xce, 0xff, 0xd0, 0xff, 0xd1, 0xff, 0xd3, 0xff, 0xd5, 0xff, 0xd9, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe5, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x12, 0x00, 0x14, 0x00, 0x16, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1e, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x21, 0x00, 0x21, 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, 0x00, 0x24, 0x00, 0x24, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1e, 0x00, 0x1b, 0x00, 0x17, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe5, 0xff, 0xe9, 0xff, 0xeb, 0xff, 0xee, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf7, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x06, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x10, 0x00, 0x12, 0x00, 0x15, 0x00, 0x17, 0x00, 0x17, 0x00, 0x19, 0x00, 0x17, 0x00, 0x15, 0x00, 0x15, 0x00, 0x12, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x03, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xf1, 0xff, 0xee, 0xff, 0xea, 0xff, 0xe8, 0xff, 0xe7, 0xff, 0xe5, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xeb, 0xff, 0xeb, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf4, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x12, 0x00, 0x14, 0x00, 0x16, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x22, 0x00, 0x24, 0x00, 0x27, 0x00, 0x27, 0x00, 0x29, 0x00, 0x28, 0x00, 0x27, 0x00, 0x24, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x16, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x04, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf3, 0xff, 0xee, 0xff, 0xe8, 0xff, 0xe3, 0xff, 0xdf, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xd6, 0xff, 0xd4, 0xff, 0xd3, 0xff, 0xd3, 0xff, 0xd3, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xd9, 0xff, 0xdc, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe5, 0xff, 0xe8, 0xff, 0xec, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xfa, 0xff, 0xff, 0xff, 0x02, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0c, 0x00, 0x0f, 0x00, 0x11, 0x00, 0x14, 0x00, 0x16, 0x00, 0x19, 0x00, 0x1b, 0x00, 0x1d, 0x00, 0x1e, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x22, 0x00, 0x23, 0x00, 0x24, 0x00, 0x23, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x15, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf7, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xeb, 0xff, 0xe9, 0xff, 0xe5, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xeb, 0xff, 0xec, 0xff, 0xeb, 0xff, 0xee, 0xff, 0xed, 0xff, 0xeb, 0xff, 0xec, 0xff, 0xeb, 0xff, 0xeb, 0xff, 0xec, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0xfd, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x06, 0x00, 0x09, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x14, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1b, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1b, 0x00, 0x18, 0x00, 0x18, 0x00, 0x14, 0x00, 0x12, 0x00, 0x0e, 0x00, 0x09, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf7, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xeb, 0xff, 0xee, 0xff, 0xee, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x13, 0x00, 0x14, 0x00, 0x18, 0x00, 0x1e, 0x00, 0x22, 0x00, 0x24, 0x00, 0x26, 0x00, 0x25, 0x00, 0x25, 0x00, 0x24, 0x00, 0x24, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x14, 0x00, 0x0e, 0x00, 0x09, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf4, 0xff, 0xee, 0xff, 0xea, 0xff, 0xe5, 0xff, 0xe1, 0xff, 0xde, 0xff, 0xdc, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd9, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xeb, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf7, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x14, 0x00, 0x15, 0x00, 0x19, 0x00, 0x1b, 0x00, 0x1c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x09, 0x00, 0x08, 0x00, 0x06, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x06, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x04, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x06, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf7, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x06, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x06, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x09, 0x00, 0x09, 0x00, 0x07, 0x00, 0x06, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfd, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf4, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x04, 0x00, 0x06, 0x00, 0x07, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x06, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf7, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x06, 0x00, 0x07, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x06, 0x00, 0x05, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfd, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x09, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x06, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfd, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf5, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf7, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x05, 0x00, 0x06, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x09, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x06, 0x00, 0x06, 0x00, 0x05, 0x00, 0x06, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x06, 0x00, 0x06, 0x00, 0x05, 0x00, 0x04, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfd, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x09, 0x00, 0x07, 0x00, 0x06, 0x00, 0x05, 0x00, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x06, 0x00, 0x06, 0x00, 0x06, 0x00, 0x06, 0x00, 0x06, 0x00, 0x06, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x09, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x09, 0x00, 0x08, 0x00, 0x07, 0x00, 0x05, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfd, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf7, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x09, 0x00, 0x08, 0x00, 0x06, 0x00, 0x06, 0x00, 0x04, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf8, 0xff }; #define tr808_cb_wav_len 33290 unsigned char tr808_cl_wav[] = { 0x52, 0x49, 0x46, 0x46, 0x7c, 0x76, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45, 0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e, 0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61, 0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61, 0x74, 0x61, 0x36, 0x76, 0x00, 0x00, 0xcc, 0xff, 0xc8, 0xff, 0x08, 0x00, 0x05, 0x00, 0x71, 0x00, 0x11, 0x00, 0x6f, 0x01, 0xb6, 0xff, 0x16, 0x13, 0x88, 0x25, 0xe8, 0x2a, 0x94, 0x2b, 0x72, 0x16, 0x51, 0x01, 0x21, 0xf1, 0xee, 0xe8, 0xc8, 0xec, 0x48, 0xdc, 0xff, 0xd8, 0xd0, 0xe5, 0xf1, 0xf8, 0x8b, 0xfe, 0xb7, 0x01, 0x9d, 0x01, 0x57, 0xee, 0x55, 0xe8, 0xc1, 0xd1, 0xea, 0xe0, 0xb2, 0x05, 0x7e, 0x06, 0x7f, 0x14, 0x1d, 0x1e, 0x53, 0x12, 0xb8, 0x07, 0x9f, 0xfd, 0xc4, 0xee, 0x33, 0xf4, 0xc2, 0xff, 0x56, 0xf7, 0x1c, 0xec, 0x2b, 0xe2, 0x00, 0xf6, 0x19, 0x11, 0x80, 0x15, 0xb8, 0x1d, 0x0c, 0x1e, 0x14, 0x1a, 0x5b, 0x26, 0xed, 0x2c, 0x67, 0x3a, 0xf1, 0x2c, 0xee, 0x19, 0x89, 0x1b, 0x2c, 0x1f, 0x46, 0x15, 0x88, 0xfe, 0xff, 0xea, 0x74, 0xdc, 0xcb, 0xe2, 0xa2, 0xe9, 0x26, 0xf7, 0x89, 0xf0, 0xc2, 0xe6, 0xc1, 0xec, 0xda, 0xed, 0x78, 0xe9, 0x62, 0xe4, 0x40, 0xf5, 0x7c, 0x00, 0x0b, 0x06, 0x84, 0x09, 0x55, 0xfd, 0x0c, 0xf2, 0xc0, 0xed, 0x73, 0xf3, 0x68, 0xfa, 0x81, 0xf7, 0x79, 0xf2, 0xd7, 0xf7, 0x63, 0xfd, 0xec, 0xf9, 0x12, 0xf8, 0xab, 0x01, 0xe2, 0x07, 0x81, 0x0e, 0x28, 0x14, 0x28, 0x1a, 0xdb, 0x24, 0xea, 0x2c, 0x31, 0x2c, 0x28, 0x2b, 0x56, 0x2b, 0xd9, 0x20, 0xe8, 0x13, 0x1d, 0x09, 0x5c, 0x05, 0xd7, 0xfd, 0xbe, 0xf7, 0xaf, 0xef, 0xc2, 0xe4, 0x39, 0xdd, 0x20, 0xd8, 0x6d, 0xd0, 0xc4, 0xcc, 0x26, 0xdb, 0xeb, 0xe2, 0x10, 0xe9, 0xe2, 0xf6, 0xf5, 0x02, 0x60, 0x04, 0x43, 0x05, 0x58, 0x06, 0x0f, 0x04, 0xb0, 0x06, 0x6e, 0x0d, 0xfb, 0x10, 0x45, 0x09, 0x57, 0x02, 0xfd, 0xfd, 0x25, 0xfb, 0xf5, 0xfd, 0x8b, 0x04, 0x8e, 0x05, 0xb5, 0x08, 0xb5, 0x0b, 0xf9, 0x0b, 0x37, 0x0f, 0x70, 0x0a, 0x8c, 0x06, 0x1b, 0x04, 0xbc, 0x05, 0x8f, 0x09, 0xa9, 0x09, 0xcc, 0x0b, 0xde, 0x08, 0x1c, 0x06, 0x10, 0x06, 0x84, 0xff, 0x7f, 0x00, 0x53, 0xf6, 0x21, 0xef, 0x59, 0xf0, 0xef, 0xed, 0xd5, 0xee, 0xcd, 0xec, 0x6a, 0xe8, 0xb1, 0xe6, 0x52, 0xea, 0x91, 0xf0, 0xca, 0xee, 0xe2, 0xeb, 0x5e, 0xef, 0xde, 0xf2, 0x27, 0xfd, 0x85, 0x03, 0x24, 0x01, 0x68, 0x00, 0x96, 0xff, 0x5d, 0x08, 0xdd, 0x0a, 0x14, 0x0d, 0xbf, 0x10, 0x54, 0x13, 0x83, 0x11, 0x58, 0x0a, 0x1c, 0x0a, 0x50, 0x0c, 0x5e, 0x0b, 0x9e, 0x09, 0xe6, 0x0c, 0x0a, 0x11, 0x8a, 0x14, 0x77, 0x0e, 0xa0, 0x04, 0x7f, 0xfd, 0x82, 0xf7, 0xb9, 0xf8, 0xe1, 0xf8, 0x87, 0xf5, 0x50, 0xf3, 0x2d, 0xf8, 0x36, 0xfb, 0x25, 0x00, 0x3b, 0x04, 0x53, 0x06, 0xd7, 0x06, 0xcf, 0x05, 0x8b, 0x05, 0x93, 0x01, 0x49, 0xfe, 0xcc, 0xfb, 0xe5, 0xfa, 0x75, 0xf8, 0xf4, 0xf6, 0x27, 0xf5, 0xa1, 0xf1, 0x0f, 0xf2, 0x4c, 0xf4, 0x03, 0xf5, 0x4a, 0xf6, 0x0d, 0xfd, 0xd5, 0x02, 0xe3, 0x04, 0x2e, 0x04, 0xbb, 0x04, 0x08, 0x05, 0x47, 0x05, 0xe2, 0x05, 0xdb, 0x02, 0x76, 0x01, 0xd1, 0x03, 0xef, 0x02, 0x7e, 0x01, 0x4b, 0x02, 0xca, 0x01, 0x27, 0xff, 0x5d, 0xfb, 0xd9, 0xf9, 0x15, 0xfd, 0xb0, 0x00, 0x4c, 0xfe, 0x7d, 0xfc, 0x4b, 0xfd, 0x66, 0xff, 0x0d, 0x02, 0xcb, 0x05, 0xa7, 0x08, 0x17, 0x07, 0xf8, 0x06, 0x66, 0x05, 0xaf, 0x03, 0x60, 0x01, 0x3d, 0x00, 0xff, 0x02, 0x53, 0x03, 0x37, 0x01, 0xdf, 0xfe, 0xcd, 0xf8, 0x21, 0xf5, 0xb7, 0xf6, 0x24, 0xf8, 0x81, 0xf8, 0x59, 0xf9, 0x31, 0xfa, 0xb5, 0xfe, 0xad, 0x00, 0x13, 0x01, 0x7f, 0x02, 0x57, 0x02, 0x41, 0x02, 0x97, 0x00, 0x2d, 0xfe, 0x91, 0xfa, 0xf0, 0xf9, 0x49, 0xfa, 0x0f, 0xfd, 0xb5, 0x00, 0xab, 0x02, 0x01, 0x03, 0x83, 0x03, 0x78, 0x07, 0x5b, 0x06, 0xd7, 0x03, 0xab, 0x01, 0x5c, 0xff, 0xf3, 0xfc, 0x45, 0xfc, 0x7e, 0xfa, 0xd1, 0xfc, 0xda, 0x00, 0xd5, 0x02, 0x0b, 0x06, 0x96, 0x06, 0xf7, 0x03, 0xad, 0x02, 0x07, 0x02, 0x13, 0x00, 0x7d, 0xff, 0x25, 0x01, 0xaf, 0x03, 0x0c, 0x05, 0xde, 0x05, 0x76, 0x04, 0xd8, 0x01, 0x8a, 0x01, 0xc6, 0x01, 0x5f, 0x00, 0x5b, 0xfd, 0x7a, 0xfb, 0xfd, 0xfa, 0x3e, 0xfb, 0x94, 0xfa, 0xd0, 0xf8, 0x21, 0xf8, 0xe9, 0xf7, 0x71, 0xf9, 0x8c, 0xfa, 0x7f, 0xfc, 0x7b, 0xfd, 0xd0, 0xfb, 0x2d, 0xfb, 0x4d, 0xfc, 0xe8, 0xfe, 0x2f, 0x00, 0x26, 0x00, 0x69, 0x01, 0x2f, 0x03, 0xf7, 0x03, 0x1f, 0x04, 0x1a, 0x04, 0x1f, 0x02, 0xee, 0x00, 0x3b, 0x03, 0x2c, 0x05, 0x9a, 0x05, 0xe4, 0x05, 0xfb, 0x03, 0x63, 0x02, 0x1b, 0x02, 0x81, 0x02, 0x73, 0x02, 0xf0, 0x01, 0x73, 0x01, 0x76, 0xfe, 0xa7, 0xfc, 0x89, 0xfc, 0xf7, 0xfd, 0x59, 0x00, 0xa4, 0x00, 0x8d, 0x02, 0x33, 0x04, 0xfc, 0x01, 0x48, 0x01, 0xf4, 0x00, 0xbf, 0x00, 0x5f, 0x00, 0xad, 0xff, 0x19, 0xfe, 0x77, 0xfc, 0xad, 0xfc, 0x83, 0xfc, 0x4b, 0xfd, 0x23, 0xfd, 0x91, 0xfc, 0xdf, 0xfd, 0x17, 0xff, 0x87, 0xff, 0xf0, 0xff, 0x61, 0x00, 0xd9, 0x00, 0x23, 0x00, 0x7e, 0xfe, 0x63, 0xfd, 0xba, 0xfb, 0x6c, 0xfb, 0x64, 0xfb, 0x79, 0xfb, 0x45, 0xfc, 0x27, 0xfe, 0x38, 0xff, 0x5c, 0xff, 0x06, 0x01, 0xf3, 0x01, 0xbb, 0x02, 0xbd, 0x02, 0x0b, 0x03, 0x3b, 0x03, 0xed, 0x02, 0x4d, 0x02, 0x54, 0x01, 0xb4, 0x01, 0xd3, 0x01, 0xb0, 0x00, 0xbc, 0xff, 0xb4, 0xff, 0x38, 0x00, 0x27, 0x01, 0x8e, 0x01, 0x29, 0x00, 0xb6, 0xff, 0x01, 0x00, 0xc9, 0xff, 0xd4, 0xff, 0x28, 0x00, 0x4c, 0x00, 0xed, 0xff, 0xba, 0xfe, 0xd1, 0xfd, 0x2b, 0xfe, 0x93, 0xfe, 0x18, 0xff, 0x04, 0x00, 0xef, 0x00, 0xef, 0x00, 0xf5, 0x00, 0x6f, 0x01, 0xc6, 0x01, 0x31, 0x01, 0x58, 0x00, 0xae, 0xff, 0x17, 0x00, 0xd4, 0xff, 0x30, 0xff, 0x77, 0xff, 0x75, 0xff, 0x53, 0xff, 0x88, 0xfe, 0x8e, 0xfe, 0xaf, 0xfe, 0x57, 0xfe, 0xab, 0xfe, 0xd2, 0xfe, 0x29, 0xff, 0x84, 0xff, 0x98, 0xff, 0x50, 0xff, 0x77, 0xff, 0x11, 0x00, 0xb9, 0x00, 0xbd, 0x01, 0x63, 0x01, 0x2e, 0x00, 0x35, 0xff, 0xc5, 0xff, 0x3b, 0x00, 0xdd, 0x00, 0xfe, 0x00, 0x53, 0x00, 0xc7, 0x00, 0xec, 0x00, 0xdf, 0x00, 0x36, 0x01, 0x51, 0x01, 0x54, 0x01, 0xfb, 0x00, 0x32, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x09, 0xff, 0xae, 0xfe, 0x9d, 0xfe, 0x43, 0xfe, 0x37, 0xfe, 0x07, 0xfe, 0xb3, 0xfd, 0xf1, 0xfd, 0xd6, 0xfe, 0x8a, 0xff, 0x62, 0x00, 0xb8, 0x01, 0x39, 0x02, 0xb9, 0x02, 0xb1, 0x02, 0xf0, 0x01, 0x2e, 0x01, 0xa3, 0x00, 0x19, 0x00, 0xbc, 0xff, 0x44, 0xff, 0xf9, 0xfe, 0x36, 0xff, 0x90, 0xff, 0x2c, 0xff, 0x7b, 0xfe, 0xa6, 0xfe, 0x3c, 0xff, 0xc2, 0xff, 0x37, 0x00, 0x5f, 0x00, 0x1f, 0x00, 0x89, 0xff, 0x38, 0xff, 0xa1, 0xff, 0x0e, 0x00, 0xae, 0xff, 0x60, 0xff, 0xf5, 0xff, 0x07, 0x00, 0x3d, 0x00, 0x8f, 0x00, 0xa7, 0x00, 0x80, 0x00, 0x16, 0x00, 0x3e, 0xff, 0xda, 0xff, 0x09, 0xfb, 0x1b, 0xff, 0x93, 0x02, 0xab, 0xf1, 0x89, 0xf9, 0x47, 0x0d, 0x54, 0x09, 0xdf, 0x0d, 0x03, 0x2b, 0x9a, 0x44, 0xcc, 0x2f, 0xd7, 0x09, 0x61, 0x01, 0x18, 0xfb, 0x37, 0xee, 0x9a, 0xeb, 0xf6, 0xe9, 0xec, 0xee, 0x43, 0x02, 0x25, 0x10, 0xfc, 0xf9, 0x4e, 0xe3, 0x22, 0xdc, 0x66, 0xdd, 0x4d, 0xea, 0x2a, 0xec, 0x29, 0xde, 0x6f, 0xdc, 0xb6, 0xe0, 0xdc, 0xe2, 0x0d, 0xeb, 0x6f, 0xfd, 0x22, 0x16, 0x31, 0x28, 0x25, 0x31, 0x64, 0x2d, 0xc3, 0x14, 0x7e, 0x0b, 0x94, 0x0d, 0xf6, 0x14, 0x44, 0x1a, 0xf5, 0x17, 0xaf, 0x13, 0x10, 0x0d, 0x56, 0x1a, 0x1f, 0x31, 0x9f, 0x2e, 0x10, 0x22, 0x0d, 0x21, 0x7d, 0x1e, 0x55, 0x0e, 0x09, 0x03, 0x1b, 0xfc, 0x24, 0xeb, 0xf7, 0xe4, 0x43, 0xd9, 0x9e, 0xd5, 0xbf, 0xc9, 0x12, 0xcb, 0x29, 0xc9, 0x72, 0xb1, 0xb6, 0xaa, 0xe2, 0xb4, 0xbc, 0xc4, 0x0e, 0xd2, 0xe1, 0xe9, 0x3d, 0xec, 0x7c, 0xf3, 0x55, 0x01, 0x48, 0x0e, 0x3f, 0x1f, 0x08, 0x1b, 0x21, 0x19, 0x35, 0x21, 0x7a, 0x21, 0xef, 0x1f, 0x30, 0x1d, 0x69, 0x12, 0x3f, 0x16, 0x8b, 0x17, 0x33, 0x07, 0x51, 0x0d, 0x98, 0x1e, 0x3a, 0x26, 0x4a, 0x2f, 0x4e, 0x2c, 0x7f, 0x20, 0xe1, 0x14, 0xdf, 0x10, 0x62, 0x15, 0x9a, 0x13, 0xb5, 0x0d, 0x6c, 0x0c, 0x83, 0x00, 0x64, 0xf0, 0x01, 0xf1, 0xbb, 0xf1, 0x5f, 0xe5, 0x2f, 0xe4, 0xb6, 0xe9, 0x41, 0xec, 0xb5, 0xe7, 0x1c, 0xe5, 0x41, 0xe3, 0x16, 0xed, 0x98, 0xf4, 0x12, 0xf1, 0x13, 0xed, 0x20, 0xf3, 0x47, 0xf4, 0xdc, 0xf4, 0x10, 0xf4, 0xf0, 0xec, 0x41, 0xea, 0x9d, 0xeb, 0xab, 0xec, 0x48, 0xee, 0x0d, 0xfc, 0x67, 0x0e, 0xaf, 0x1c, 0x79, 0x1d, 0xc8, 0x1b, 0x36, 0x19, 0x13, 0x1b, 0x07, 0x25, 0xa3, 0x2a, 0xb5, 0x1f, 0x09, 0x11, 0xb9, 0x00, 0x49, 0xfa, 0x09, 0xfe, 0xeb, 0x05, 0x9b, 0x03, 0xe3, 0xf6, 0x01, 0xf1, 0x29, 0xf3, 0x69, 0xf1, 0x3a, 0xf3, 0xfa, 0xf6, 0x41, 0xf3, 0x58, 0xf1, 0x91, 0xed, 0xd5, 0xee, 0x02, 0xe7, 0x53, 0xde, 0xb8, 0xe8, 0x9a, 0xf1, 0x60, 0xf8, 0xd3, 0xfd, 0xbb, 0x05, 0x5b, 0x10, 0x70, 0x0f, 0xce, 0x06, 0x79, 0xfe, 0x99, 0x03, 0xa4, 0x00, 0xd7, 0xfc, 0xff, 0x09, 0x03, 0x13, 0x5e, 0x14, 0xf0, 0x11, 0x6a, 0x16, 0x1f, 0x16, 0x3a, 0x0c, 0xff, 0x06, 0x68, 0x08, 0x3a, 0x0c, 0x7e, 0x12, 0xdb, 0x15, 0x3e, 0x1b, 0x3f, 0x15, 0x58, 0x09, 0x73, 0x01, 0xfb, 0x02, 0x8b, 0x07, 0xe8, 0x04, 0xb8, 0xfb, 0x69, 0xf5, 0xb9, 0xf4, 0xdb, 0xea, 0x2c, 0xe5, 0x37, 0xe2, 0x6e, 0xe1, 0xb1, 0xe0, 0x63, 0xe2, 0xe2, 0xe4, 0xca, 0xeb, 0xe0, 0xee, 0x5e, 0xf1, 0x1c, 0xfb, 0xc3, 0xff, 0xf0, 0xff, 0x31, 0x02, 0x09, 0x03, 0x3b, 0x06, 0x01, 0x09, 0x66, 0x09, 0x4f, 0x0d, 0x42, 0x0e, 0x0a, 0x10, 0x7f, 0x10, 0x1d, 0x0d, 0xda, 0x0c, 0xad, 0x0d, 0xfe, 0x07, 0x67, 0x04, 0xef, 0xfc, 0x64, 0xf6, 0xac, 0xfb, 0x1f, 0xfd, 0x6d, 0xfd, 0xc7, 0x01, 0xbd, 0x03, 0x2d, 0x03, 0xc9, 0x02, 0x13, 0x00, 0xd5, 0xfd, 0xbd, 0xfb, 0x55, 0xfe, 0x32, 0x00, 0xbf, 0xf7, 0x8a, 0xf2, 0xe3, 0xf2, 0xf9, 0xf3, 0xd1, 0xf5, 0x44, 0xff, 0x4a, 0x07, 0xec, 0x06, 0xf3, 0x02, 0x8f, 0xfd, 0x71, 0xfd, 0x29, 0xfb, 0x39, 0xf9, 0xd3, 0xf7, 0x6d, 0xfc, 0xcf, 0x03, 0xc7, 0x08, 0x30, 0x0b, 0xdd, 0x0a, 0x60, 0x0a, 0x76, 0x0a, 0xef, 0x0c, 0x59, 0x0e, 0x80, 0x0e, 0xc5, 0x0c, 0x17, 0x08, 0x8c, 0xff, 0xc9, 0xfb, 0xf9, 0xfb, 0xa9, 0xfc, 0xc9, 0xfc, 0xc5, 0xfd, 0x87, 0xfc, 0xc5, 0xf8, 0x9d, 0xf8, 0x49, 0xf8, 0xe2, 0xf6, 0x72, 0xf5, 0x8a, 0xf8, 0xf5, 0xf9, 0x69, 0xfb, 0xc6, 0xfb, 0x1d, 0xfc, 0x63, 0xfe, 0x30, 0xfb, 0x50, 0xfa, 0x90, 0xfb, 0xa0, 0xfe, 0xa3, 0x03, 0x5c, 0x06, 0x65, 0x09, 0x28, 0x09, 0x3f, 0x08, 0x4f, 0x06, 0x03, 0x05, 0x9b, 0x03, 0x1e, 0xff, 0x3d, 0xfd, 0x0f, 0xfd, 0x14, 0x00, 0x6a, 0x00, 0x60, 0x01, 0xf4, 0x01, 0x22, 0x04, 0xa8, 0x07, 0xaa, 0x08, 0xd3, 0x07, 0x4e, 0x06, 0x03, 0x04, 0xd5, 0xfe, 0x48, 0xfb, 0xd4, 0xfa, 0x5d, 0xfc, 0x9e, 0xfb, 0x15, 0xfa, 0x59, 0xf9, 0x81, 0xf8, 0x09, 0xf9, 0x5d, 0xf8, 0x82, 0xf6, 0x51, 0xf4, 0xa3, 0xf6, 0x3b, 0xfc, 0x0f, 0xff, 0xb6, 0x00, 0x45, 0x02, 0xfb, 0x02, 0x83, 0x05, 0x44, 0x06, 0x2c, 0x05, 0x0b, 0x05, 0x71, 0x03, 0xdb, 0x01, 0x3f, 0xff, 0x9d, 0xfe, 0xcf, 0xff, 0x24, 0xff, 0xd3, 0xfe, 0xa8, 0xfe, 0x0d, 0xfd, 0x53, 0xfc, 0x1f, 0xfd, 0xd2, 0xfe, 0x6a, 0x01, 0x3d, 0x02, 0x72, 0x01, 0x34, 0x01, 0x45, 0x02, 0x6c, 0x04, 0xd9, 0x03, 0xe8, 0x00, 0x58, 0xfe, 0x32, 0xff, 0x76, 0x00, 0x91, 0x00, 0xff, 0x01, 0xa5, 0x02, 0xcc, 0x01, 0x65, 0x00, 0xcc, 0xfe, 0xc7, 0xfd, 0xa9, 0xfe, 0x75, 0x01, 0x8f, 0x02, 0x3b, 0x03, 0x03, 0x04, 0x2b, 0x05, 0xf7, 0x04, 0x1b, 0x02, 0x67, 0x00, 0x06, 0xff, 0x19, 0xfd, 0xd5, 0xfc, 0x53, 0xfc, 0x01, 0xfd, 0x6c, 0xfe, 0xa8, 0xfe, 0x46, 0xfe, 0x0c, 0xff, 0xd0, 0xfe, 0x4f, 0xfe, 0x54, 0xff, 0x69, 0xfe, 0xe9, 0xfd, 0xe3, 0xfc, 0xd5, 0xfd, 0xe1, 0xfd, 0x54, 0xfe, 0x57, 0xff, 0x9d, 0xfe, 0xd8, 0xfe, 0x56, 0xff, 0xcb, 0xff, 0xef, 0xff, 0x8f, 0x00, 0x51, 0x01, 0xae, 0x01, 0x71, 0x02, 0xe7, 0x02, 0x03, 0x03, 0x31, 0x01, 0xe9, 0x00, 0x1c, 0x01, 0x75, 0xff, 0xc0, 0xff, 0x53, 0x00, 0x2f, 0x00, 0xb5, 0xfe, 0xcd, 0xfd, 0xaf, 0xfd, 0x1f, 0xfd, 0xdb, 0xfd, 0x4a, 0xff, 0x9b, 0x00, 0x01, 0x01, 0x59, 0x00, 0xa1, 0xff, 0x3b, 0x00, 0x37, 0x01, 0x79, 0x01, 0x7e, 0x01, 0x8e, 0x00, 0x6b, 0x00, 0xa6, 0x00, 0x9b, 0xff, 0xc4, 0xfe, 0x7e, 0xfe, 0x55, 0xfe, 0xc9, 0xfd, 0xe5, 0xfd, 0x80, 0xff, 0x38, 0x00, 0xa4, 0xff, 0xf2, 0xff, 0x69, 0x01, 0x41, 0x03, 0xe5, 0x03, 0x9f, 0x02, 0x71, 0x02, 0x35, 0x03, 0xd5, 0x03, 0xe5, 0x02, 0xc3, 0x01, 0x8a, 0x01, 0x40, 0x01, 0xe8, 0x00, 0x1b, 0x01, 0xf7, 0x00, 0xda, 0x00, 0x88, 0x00, 0x4a, 0xff, 0x2a, 0xfe, 0x03, 0xfe, 0xcd, 0xfd, 0x85, 0xfd, 0xbb, 0xfd, 0xdd, 0xfd, 0x15, 0xfd, 0x43, 0xfd, 0x07, 0xfd, 0x63, 0xfc, 0x57, 0xfc, 0x45, 0xfc, 0xcb, 0xfc, 0x6d, 0xfd, 0x2b, 0xfd, 0x76, 0xfe, 0xbf, 0x00, 0xe7, 0x01, 0xf3, 0x02, 0x07, 0x03, 0x0b, 0x03, 0x65, 0x03, 0xdf, 0x03, 0xb3, 0x03, 0xab, 0x02, 0x90, 0x01, 0x09, 0x01, 0x3e, 0x00, 0xb6, 0xff, 0xb0, 0xff, 0x84, 0xff, 0x4d, 0xff, 0x84, 0xff, 0x50, 0x00, 0x95, 0x00, 0x2c, 0x00, 0xce, 0xff, 0xcb, 0xff, 0xf5, 0xff, 0x0d, 0x00, 0xf7, 0xfe, 0xe7, 0xfd, 0xeb, 0xfd, 0x36, 0xfe, 0x00, 0xff, 0xd2, 0xff, 0x34, 0x00, 0x29, 0x00, 0xa1, 0xff, 0xbc, 0xff, 0x83, 0x00, 0x3c, 0x01, 0x12, 0x01, 0x22, 0x01, 0xb9, 0x00, 0xd7, 0xff, 0x02, 0x00, 0x78, 0xff, 0xd9, 0xfe, 0xb5, 0xfe, 0xea, 0xfe, 0x86, 0xff, 0x3b, 0x00, 0xc1, 0x00, 0x0d, 0x01, 0x10, 0x01, 0x1c, 0x01, 0xb7, 0x01, 0x94, 0x01, 0xb9, 0x00, 0x98, 0x00, 0x40, 0x00, 0x55, 0x00, 0x34, 0x00, 0x8a, 0xff, 0xf0, 0xfe, 0xe3, 0xfd, 0xc1, 0xfd, 0xc1, 0xfe, 0x56, 0xff, 0x80, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xf3, 0xff, 0x63, 0xff, 0x0c, 0xff, 0xc4, 0xfe, 0x30, 0xff, 0xfc, 0xff, 0x2e, 0x00, 0xd4, 0xff, 0xa5, 0xff, 0x95, 0x00, 0x51, 0x01, 0xb2, 0x01, 0xe5, 0x01, 0x79, 0x01, 0xc5, 0x00, 0x67, 0x00, 0x01, 0x00, 0xe6, 0xff, 0x7c, 0x00, 0x91, 0x00, 0x26, 0x00, 0x90, 0xff, 0xd1, 0xff, 0xba, 0xff, 0x50, 0x00, 0x57, 0xff, 0x8c, 0xff, 0xa6, 0xfe, 0x7d, 0xff, 0x72, 0xfe, 0xf7, 0x00, 0x41, 0xf8, 0x51, 0xec, 0xa9, 0xf5, 0x61, 0x02, 0xee, 0x25, 0x15, 0x21, 0x34, 0x1e, 0x4d, 0x24, 0x47, 0x0f, 0x09, 0x02, 0x74, 0xf0, 0xea, 0xf5, 0xfa, 0xf9, 0xf4, 0xdf, 0xe1, 0xda, 0x96, 0xd8, 0x8e, 0xd8, 0xa5, 0xe8, 0x5e, 0x05, 0x9f, 0x06, 0xf2, 0xfb, 0x89, 0xf1, 0x0a, 0xe8, 0x37, 0xe7, 0x71, 0xe4, 0x16, 0xd7, 0xb4, 0xde, 0xb2, 0x00, 0x2d, 0x01, 0x93, 0x03, 0x4f, 0x0a, 0x10, 0x10, 0x19, 0x1f, 0xd2, 0x33, 0xb9, 0x3d, 0x0a, 0x2b, 0xcd, 0x22, 0xbf, 0x29, 0x69, 0x2e, 0x7e, 0x33, 0x6e, 0x33, 0xe8, 0x30, 0x1f, 0x22, 0xdd, 0x0d, 0xf1, 0xfb, 0xf7, 0xf1, 0x41, 0xef, 0x98, 0xec, 0xd0, 0xe3, 0xbc, 0xd2, 0xfd, 0xd3, 0xe4, 0xe2, 0x9a, 0xec, 0xd3, 0xf1, 0x11, 0xf6, 0x3e, 0xf9, 0x9c, 0x09, 0x0a, 0x0f, 0x58, 0x04, 0x25, 0x01, 0x56, 0xf1, 0x31, 0xec, 0xa9, 0xfa, 0xe3, 0xf2, 0x57, 0xec, 0x9f, 0xf6, 0xf0, 0x05, 0x8d, 0x11, 0x1f, 0x15, 0xf3, 0x19, 0xcf, 0x1e, 0xeb, 0x1a, 0xcc, 0x17, 0xb9, 0x08, 0xa8, 0xec, 0x32, 0xf0, 0x16, 0xf4, 0x68, 0xf0, 0xad, 0xe5, 0x7a, 0xd8, 0x7a, 0xcf, 0xa1, 0xc1, 0x16, 0xc7, 0x50, 0xd2, 0xc3, 0xdf, 0x01, 0xef, 0x10, 0x00, 0xfd, 0x0a, 0x52, 0x0d, 0x62, 0x23, 0x1e, 0x3c, 0x8a, 0x3a, 0x70, 0x2e, 0xa1, 0x23, 0xa5, 0x22, 0xfd, 0x26, 0x67, 0x2a, 0x61, 0x24, 0xf8, 0x19, 0x76, 0x15, 0x8d, 0x0b, 0x33, 0x02, 0x35, 0xf9, 0x22, 0xf0, 0xdd, 0xe1, 0x70, 0xdc, 0x9b, 0xdb, 0x5f, 0xd9, 0xb2, 0xd9, 0xe8, 0xd6, 0x3a, 0xd7, 0x7a, 0xe2, 0x31, 0xe7, 0xf3, 0xf2, 0x6f, 0x05, 0x4f, 0x13, 0xd2, 0x1a, 0xd0, 0x12, 0x67, 0x0c, 0x55, 0x0d, 0xb9, 0x0e, 0x03, 0x04, 0xc5, 0xf8, 0xf8, 0xf7, 0x93, 0xfe, 0xba, 0xff, 0x36, 0xf8, 0x4e, 0xfa, 0xaf, 0xfd, 0xf5, 0x03, 0x21, 0x0e, 0x19, 0x0d, 0x95, 0x11, 0x77, 0x08, 0x7f, 0x00, 0x54, 0xf9, 0x4e, 0xf6, 0x39, 0xfb, 0xb2, 0xfa, 0x39, 0xff, 0x3f, 0x02, 0xd4, 0x05, 0x20, 0x08, 0xdf, 0x02, 0x75, 0xff, 0x95, 0xfc, 0x20, 0xf9, 0x68, 0xe9, 0xb2, 0xe7, 0x6f, 0xf2, 0x34, 0xfb, 0x19, 0xfd, 0x0b, 0x03, 0xea, 0x0a, 0xb5, 0x15, 0x90, 0x1a, 0xbf, 0x15, 0x89, 0x16, 0xfd, 0x1a, 0x38, 0x1c, 0x1d, 0x13, 0x56, 0x0a, 0x23, 0x02, 0xd6, 0x08, 0x45, 0x08, 0xe9, 0xfc, 0xff, 0xf6, 0xf1, 0xf3, 0xd0, 0xf2, 0x78, 0xee, 0x91, 0xeb, 0x7e, 0xef, 0xd8, 0xf8, 0x2b, 0x03, 0xc3, 0x02, 0xcd, 0x00, 0x4d, 0x00, 0x9a, 0x01, 0x8d, 0x03, 0xd8, 0xff, 0x8a, 0xfe, 0x3c, 0x01, 0x09, 0x02, 0x67, 0x01, 0xf0, 0xff, 0x49, 0xf8, 0x04, 0xf4, 0x89, 0xf3, 0x3f, 0xf5, 0x39, 0xf8, 0x8b, 0xf6, 0x0c, 0xf4, 0xff, 0xf0, 0xd7, 0xef, 0xe6, 0xf0, 0xba, 0xf1, 0x91, 0xfa, 0x01, 0x01, 0x7b, 0x05, 0xd4, 0x05, 0x51, 0x08, 0xca, 0x0f, 0x1e, 0x15, 0x94, 0x12, 0x0c, 0x0c, 0x91, 0x0c, 0xcd, 0x08, 0x39, 0x03, 0x2f, 0x02, 0x75, 0x02, 0xee, 0x08, 0x7f, 0x0a, 0x8d, 0x02, 0xbe, 0x01, 0x4f, 0x04, 0x87, 0x08, 0x78, 0x08, 0xbe, 0x07, 0x60, 0x04, 0xc9, 0xfd, 0xd6, 0xf7, 0xfc, 0xf5, 0xa0, 0xf2, 0x7a, 0xed, 0xae, 0xec, 0xbd, 0xef, 0xc0, 0xf3, 0x0a, 0xf4, 0x48, 0xf9, 0x65, 0xfd, 0xad, 0xff, 0x55, 0x00, 0x50, 0xff, 0xcd, 0xfd, 0x06, 0xfe, 0x0f, 0x05, 0xff, 0x07, 0x23, 0x05, 0xee, 0x00, 0x79, 0x01, 0x8c, 0x00, 0xf6, 0xff, 0x1c, 0x00, 0xfd, 0xfe, 0x95, 0xfc, 0x8f, 0xfd, 0xb3, 0x02, 0xaf, 0x04, 0x3d, 0x03, 0x65, 0x03, 0xe7, 0x05, 0xbc, 0x05, 0x1c, 0x04, 0x11, 0x03, 0x09, 0x02, 0xff, 0x01, 0xca, 0x04, 0x57, 0x08, 0x2f, 0x0c, 0xf8, 0x0f, 0xfd, 0x0d, 0x1c, 0x08, 0x17, 0x04, 0xed, 0xfe, 0xd1, 0xfc, 0xa5, 0xfc, 0xd5, 0xf8, 0xfc, 0xf5, 0x3b, 0xf3, 0x03, 0xf2, 0x51, 0xf5, 0x50, 0xf4, 0x81, 0xf3, 0xea, 0xf5, 0x5e, 0xf7, 0x94, 0xf8, 0xbd, 0xfb, 0x03, 0xfd, 0xcb, 0xfd, 0x28, 0xfe, 0xcc, 0xf7, 0xba, 0xf7, 0xe5, 0xfa, 0xed, 0xfb, 0xc2, 0xff, 0x36, 0x06, 0x60, 0x0a, 0x30, 0x07, 0x28, 0x06, 0xff, 0x05, 0x32, 0x07, 0x38, 0x08, 0x6f, 0x08, 0xdc, 0x07, 0x02, 0x07, 0x6c, 0x08, 0xd2, 0x0a, 0xfc, 0x0b, 0xa0, 0x09, 0xdf, 0x04, 0x83, 0x00, 0xc9, 0xff, 0xb7, 0xfe, 0xfd, 0xfe, 0xc1, 0xfe, 0x15, 0xfd, 0x6a, 0xfa, 0xa8, 0xf9, 0x82, 0xf9, 0xe9, 0xf9, 0xbe, 0xfa, 0x26, 0xfb, 0xf9, 0xf9, 0xad, 0xf9, 0x9c, 0xfb, 0x9e, 0xfb, 0xc0, 0xfb, 0xf9, 0xfd, 0xa3, 0x00, 0x87, 0x04, 0xba, 0x06, 0x65, 0x03, 0xd3, 0xfd, 0xf3, 0xfc, 0x91, 0x00, 0xcc, 0x01, 0x01, 0x02, 0x74, 0x00, 0x0b, 0x00, 0xd8, 0x01, 0xec, 0x00, 0x48, 0x04, 0x37, 0x0d, 0x0c, 0x11, 0x06, 0x13, 0x72, 0x2d, 0xc7, 0x31, 0x69, 0x22, 0x3b, 0x30, 0xc3, 0x2e, 0x7e, 0x26, 0xdb, 0x04, 0xb6, 0xf0, 0x21, 0xe5, 0xe4, 0xce, 0x32, 0xc7, 0x25, 0xb1, 0xe9, 0xb2, 0x44, 0xc8, 0xd4, 0xed, 0x58, 0x01, 0xc5, 0x03, 0x2c, 0xff, 0xf6, 0x08, 0x81, 0x0e, 0x23, 0x06, 0xcd, 0x02, 0x8d, 0xe6, 0xad, 0xe8, 0x9c, 0xf9, 0x37, 0xf4, 0x2d, 0xe9, 0x74, 0xdc, 0xb2, 0xce, 0xda, 0xdf, 0xf7, 0x00, 0x31, 0x29, 0x2b, 0x31, 0x0e, 0x18, 0xb1, 0x16, 0x3b, 0x1e, 0x1f, 0x1b, 0xd9, 0x1a, 0x84, 0x1c, 0x7f, 0x0c, 0xb7, 0x03, 0xd6, 0x07, 0x3a, 0x0a, 0x0e, 0x07, 0x95, 0xfb, 0x8d, 0x01, 0x96, 0x14, 0x1f, 0x2c, 0x5b, 0x29, 0x9d, 0x1f, 0x59, 0x1c, 0xe1, 0xfd, 0x03, 0xe3, 0xa1, 0xd7, 0x41, 0xde, 0x1c, 0xe6, 0x99, 0xdd, 0x27, 0xdd, 0xb7, 0xe6, 0x9e, 0x0c, 0xdf, 0x29, 0x00, 0x28, 0x5a, 0x24, 0x81, 0x1f, 0x89, 0x16, 0x63, 0x05, 0x6a, 0x04, 0x44, 0x0d, 0x67, 0x06, 0x23, 0xef, 0xb5, 0xdf, 0x47, 0xcb, 0xd5, 0xc8, 0x0b, 0xd7, 0x41, 0xea, 0xfb, 0x03, 0x0f, 0x07, 0xbc, 0xf9, 0x06, 0xfe, 0x91, 0xfd, 0xe4, 0x09, 0x06, 0x0e, 0x59, 0x03, 0x7f, 0xf7, 0x0f, 0x06, 0xee, 0x11, 0x6f, 0x0e, 0x4f, 0x01, 0x7d, 0xff, 0x15, 0xf8, 0x89, 0xf3, 0x21, 0xf2, 0x7b, 0xfe, 0x8b, 0x06, 0xbd, 0x0e, 0xfb, 0x06, 0xc4, 0xeb, 0xfe, 0xe4, 0x80, 0xe4, 0x2c, 0xdd, 0x91, 0xe4, 0xc4, 0xf6, 0x36, 0x01, 0x91, 0x0d, 0xfe, 0x09, 0x2e, 0x08, 0x0f, 0x04, 0x68, 0x0e, 0xc6, 0x16, 0xf2, 0x11, 0x98, 0x16, 0x31, 0x09, 0x21, 0x11, 0xdc, 0x17, 0xbf, 0x04, 0x34, 0xee, 0x40, 0xdf, 0x0e, 0xed, 0xce, 0x00, 0xb9, 0x09, 0xc9, 0xf8, 0xb8, 0xe8, 0xef, 0xee, 0x16, 0x04, 0x1c, 0x11, 0x08, 0x24, 0x30, 0x1c, 0xbf, 0x09, 0x0c, 0x18, 0x53, 0x2a, 0x16, 0x26, 0x9e, 0x0a, 0x28, 0xf4, 0x07, 0xe8, 0x29, 0xf0, 0x95, 0xfc, 0xec, 0xe7, 0x30, 0xd6, 0xae, 0xdc, 0x3b, 0xe4, 0x33, 0xf4, 0xef, 0x0c, 0x79, 0x16, 0x46, 0x10, 0x9f, 0x08, 0xf5, 0x03, 0x32, 0xf9, 0xa0, 0xf8, 0xf4, 0x04, 0xd3, 0x03, 0xa0, 0xf8, 0xf2, 0xed, 0xf6, 0xf0, 0x15, 0xfb, 0x7c, 0x07, 0x4b, 0x06, 0x1d, 0x09, 0x96, 0x1c, 0xdf, 0x2b, 0x5c, 0x2d, 0x88, 0x1c, 0x1b, 0x1a, 0xc6, 0x1f, 0x5d, 0x23, 0x4c, 0x2b, 0xaa, 0x23, 0xb7, 0x0e, 0xe1, 0xf5, 0x3a, 0xd9, 0x29, 0xbf, 0x5c, 0xb2, 0xd0, 0xb6, 0x0d, 0xcc, 0x23, 0xd2, 0xc8, 0xcc, 0x6e, 0xd7, 0x87, 0xeb, 0xde, 0xea, 0x39, 0xfd, 0x23, 0x03, 0xde, 0x01, 0xa5, 0x0e, 0x82, 0x04, 0x33, 0x05, 0x83, 0x1a, 0x7e, 0x1e, 0x1a, 0x2a, 0x7f, 0x34, 0xff, 0x1f, 0xfb, 0x1c, 0xc4, 0x19, 0xe4, 0x0c, 0xe8, 0x0d, 0x5e, 0x13, 0xfe, 0x15, 0xfd, 0x17, 0xc9, 0x1b, 0xe6, 0x12, 0xb2, 0x04, 0xa3, 0xf6, 0x91, 0xe3, 0xfc, 0xe1, 0x8e, 0xe8, 0x0b, 0xe1, 0xac, 0xe3, 0xde, 0xe1, 0xce, 0xe8, 0xc9, 0xfb, 0x97, 0x08, 0xbf, 0xff, 0x27, 0xe0, 0xe7, 0xf0, 0x37, 0x09, 0x38, 0x09, 0xe3, 0x07, 0x0e, 0x00, 0xaa, 0x00, 0xf6, 0x01, 0x30, 0xff, 0x5f, 0xf3, 0x06, 0xf3, 0x8e, 0x00, 0x88, 0x19, 0x7f, 0x28, 0xde, 0x1e, 0xfc, 0x0c, 0xfc, 0x08, 0xaf, 0x14, 0xaf, 0x13, 0xcc, 0x0f, 0xd6, 0xfe, 0x77, 0xe4, 0x9e, 0xd8, 0x89, 0xd4, 0x19, 0xc8, 0x35, 0xbe, 0x2d, 0xc5, 0x6a, 0xc1, 0xd5, 0xcb, 0xc3, 0xd7, 0x50, 0xda, 0x0e, 0xf4, 0x6e, 0x19, 0x15, 0x2d, 0x22, 0x15, 0x21, 0x01, 0x83, 0x06, 0x3f, 0x13, 0x51, 0x1f, 0x7d, 0x36, 0x8d, 0x4e, 0x1d, 0x5b, 0xb6, 0x50, 0x84, 0x43, 0x36, 0x38, 0x26, 0x2c, 0xd6, 0x29, 0xec, 0x2f, 0x86, 0x2d, 0xc2, 0x26, 0x65, 0x14, 0xf3, 0xfd, 0x2c, 0xe8, 0x50, 0xda, 0x3b, 0xd6, 0x87, 0xc7, 0xb7, 0xc3, 0x4e, 0xca, 0xc3, 0xd3, 0x6a, 0xdf, 0x8b, 0xe8, 0x4f, 0xf4, 0x3e, 0x09, 0x12, 0x0b, 0x5f, 0x03, 0x91, 0xee, 0x27, 0xdd, 0x9d, 0xd3, 0xc8, 0xd1, 0x27, 0xe2, 0x90, 0xe9, 0x40, 0xee, 0xda, 0xf2, 0x11, 0xeb, 0x02, 0xed, 0x23, 0xef, 0x88, 0xf5, 0x97, 0x04, 0xe8, 0x13, 0x53, 0x17, 0x50, 0x25, 0x8e, 0x30, 0x4c, 0x34, 0x3d, 0x25, 0xd1, 0x0f, 0x05, 0x03, 0x45, 0xf8, 0x7f, 0x01, 0x6f, 0x04, 0xea, 0x06, 0xbf, 0x0b, 0x43, 0x1b, 0xa3, 0x1e, 0x6c, 0x1b, 0x63, 0x16, 0xd4, 0x09, 0xfd, 0xf9, 0xa0, 0xf5, 0x19, 0xfc, 0x35, 0xfc, 0x19, 0xfa, 0x31, 0xf7, 0xc8, 0xea, 0x31, 0xee, 0x54, 0xeb, 0xc2, 0xe3, 0x58, 0xe8, 0x2a, 0xed, 0x90, 0xe9, 0x05, 0xea, 0x7c, 0xee, 0xce, 0xf8, 0xbb, 0x00, 0x1c, 0x04, 0x00, 0x05, 0xe5, 0x08, 0x0d, 0x17, 0x9e, 0x1b, 0x6c, 0x1b, 0x7f, 0x26, 0x94, 0x29, 0x32, 0x1d, 0xbe, 0x19, 0xc2, 0x1e, 0x3f, 0x10, 0x57, 0xfd, 0x1f, 0xf1, 0xf1, 0xf2, 0xe4, 0xee, 0x4d, 0xea, 0xb8, 0xeb, 0x2c, 0xf3, 0x71, 0xef, 0xf3, 0xe0, 0xcb, 0xe8, 0xb9, 0xdf, 0x3d, 0xdd, 0x6e, 0xd7, 0x46, 0xd0, 0xf4, 0xdd, 0xf8, 0xe0, 0x86, 0xda, 0xd4, 0xd6, 0x85, 0xde, 0x1c, 0xf1, 0xf0, 0x04, 0x50, 0x15, 0x1c, 0x26, 0xab, 0x32, 0x32, 0x3a, 0xc5, 0x43, 0x93, 0x4f, 0x2e, 0x4f, 0xa0, 0x3d, 0xa4, 0x27, 0xbe, 0x1a, 0xcc, 0x08, 0x4c, 0xfa, 0x5e, 0x04, 0x6e, 0x1f, 0x37, 0x2b, 0x97, 0x28, 0x75, 0x23, 0xc9, 0x0d, 0xb1, 0xfe, 0x85, 0xf8, 0x81, 0x01, 0x3f, 0x12, 0x01, 0x0c, 0x22, 0x00, 0x2f, 0xee, 0x2d, 0xe6, 0xdc, 0xd9, 0x2e, 0xc9, 0x26, 0xc5, 0x02, 0xcb, 0xb7, 0xc5, 0x32, 0xc3, 0xa4, 0xd1, 0x9f, 0xd4, 0xd7, 0xd9, 0x8e, 0xe8, 0x9c, 0xf8, 0xf9, 0xf5, 0xe4, 0xeb, 0xd0, 0xeb, 0x41, 0xf1, 0x0d, 0xfb, 0xf2, 0x00, 0x18, 0x04, 0xae, 0x06, 0xaf, 0x0d, 0xc5, 0x1a, 0x16, 0x20, 0x44, 0x0f, 0xe9, 0xfb, 0x92, 0x00, 0xf3, 0x02, 0xf8, 0xf1, 0x52, 0xf4, 0x4c, 0x04, 0xce, 0x0f, 0xef, 0x1a, 0x96, 0x27, 0x88, 0x39, 0x85, 0x36, 0x29, 0x2f, 0x26, 0x36, 0x64, 0x31, 0x4d, 0x30, 0x26, 0x35, 0x5e, 0x2e, 0xe2, 0x1b, 0x4c, 0x14, 0xfa, 0x0f, 0xbc, 0xf5, 0x34, 0xed, 0xa3, 0xe1, 0x08, 0xd8, 0x9d, 0xe2, 0x0d, 0xde, 0x97, 0xd4, 0x81, 0xd4, 0xae, 0xd3, 0xb6, 0xc4, 0x4a, 0xc2, 0x32, 0xcd, 0x27, 0xe3, 0x75, 0xfc, 0x9b, 0x00, 0xca, 0xf0, 0x87, 0xeb, 0xc9, 0xf8, 0x1f, 0x0b, 0x9c, 0x11, 0x81, 0x19, 0xf9, 0x17, 0x8c, 0x0f, 0x0f, 0x11, 0x2a, 0x1b, 0xc7, 0x25, 0x20, 0x33, 0x23, 0x30, 0xae, 0x1d, 0x62, 0x1d, 0xcd, 0x1c, 0xcd, 0x0e, 0xfd, 0x03, 0x65, 0xf9, 0x1d, 0xee, 0xb7, 0xde, 0x44, 0xdd, 0x12, 0xe9, 0xae, 0xf0, 0xa0, 0xef, 0x5e, 0xf2, 0xca, 0xf6, 0xc2, 0xfb, 0xb3, 0x02, 0xbd, 0x02, 0x1a, 0x04, 0x42, 0x01, 0x2b, 0xfc, 0x4d, 0xf8, 0x72, 0xfb, 0xc7, 0x02, 0x12, 0x01, 0x5d, 0xfc, 0xaf, 0xf7, 0xb6, 0xf0, 0xd4, 0xed, 0xb8, 0xe4, 0xf4, 0xea, 0xdf, 0x01, 0x0d, 0x0e, 0xf9, 0x14, 0x65, 0x0a, 0x2d, 0x02, 0xe0, 0x0b, 0xdf, 0x08, 0x3c, 0x08, 0x49, 0x00, 0x61, 0xf0, 0x11, 0xee, 0x60, 0xf0, 0x5e, 0xf1, 0x32, 0xf2, 0xc6, 0xfe, 0x9c, 0x0c, 0x09, 0x11, 0x31, 0x12, 0xd2, 0x08, 0x5c, 0x0c, 0xe4, 0x16, 0x9b, 0x25, 0xe8, 0x31, 0xa7, 0x2d, 0xfc, 0x21, 0xf3, 0x11, 0x16, 0xfe, 0x90, 0xe3, 0xa4, 0xde, 0xd5, 0xe2, 0x10, 0xec, 0xf9, 0xf0, 0x11, 0xee, 0xce, 0xe4, 0x10, 0xe3, 0x13, 0xe7, 0x69, 0xf3, 0xe6, 0x07, 0xe9, 0x0e, 0x4c, 0x0d, 0x21, 0x0a, 0x0a, 0x0d, 0xf2, 0x14, 0x0d, 0x1f, 0xda, 0x1f, 0x88, 0x19, 0x46, 0x12, 0x22, 0x04, 0xdd, 0xf9, 0x96, 0xf2, 0xfd, 0xef, 0xda, 0xf9, 0xe1, 0x01, 0x82, 0x05, 0xd1, 0xfb, 0x01, 0x01, 0x1f, 0x0b, 0x64, 0x0a, 0xac, 0x07, 0x0d, 0x0a, 0x64, 0x07, 0x5a, 0xfe, 0x34, 0xfb, 0xf9, 0xf9, 0xba, 0xf7, 0xc1, 0xf0, 0x37, 0xf7, 0x04, 0x08, 0x1b, 0xff, 0x1a, 0xf3, 0x31, 0xe8, 0x0d, 0xde, 0xef, 0xdd, 0xb0, 0xe5, 0xaa, 0xf9, 0xdc, 0x08, 0xd4, 0x1d, 0x3d, 0x29, 0x91, 0x1f, 0x69, 0x11, 0xc8, 0x08, 0x4b, 0x02, 0xbf, 0xf6, 0xf3, 0xec, 0xd4, 0xed, 0xd1, 0xf6, 0xd6, 0xf7, 0xac, 0xf6, 0x6d, 0xfb, 0xf1, 0xfb, 0xb9, 0xf2, 0x19, 0xf0, 0x6c, 0xf4, 0x05, 0xfa, 0xfd, 0xfd, 0x67, 0x03, 0x97, 0x03, 0x19, 0xf8, 0xd4, 0xf6, 0xdb, 0xf7, 0x10, 0x0c, 0xf2, 0x12, 0x5f, 0x0c, 0x21, 0x14, 0x95, 0x1e, 0x73, 0x26, 0xbe, 0x25, 0x08, 0x18, 0xba, 0x06, 0x6b, 0xfc, 0xdc, 0xfe, 0xd3, 0x04, 0xf6, 0x11, 0xa9, 0x17, 0x50, 0x0e, 0xd5, 0x02, 0x18, 0xf9, 0x5a, 0xfa, 0x17, 0x04, 0xd9, 0x09, 0xc7, 0x02, 0xd4, 0xf9, 0x8b, 0xf0, 0xb1, 0xf2, 0xce, 0xf3, 0xde, 0xef, 0x5a, 0xe6, 0x6b, 0xdd, 0x58, 0xe1, 0x46, 0xde, 0xdb, 0xe4, 0x21, 0xee, 0x16, 0xf1, 0xd0, 0xf4, 0x87, 0xf5, 0x36, 0xeb, 0x11, 0xf0, 0x09, 0x02, 0x12, 0x0e, 0x57, 0x0b, 0xb8, 0x06, 0x15, 0x0c, 0x34, 0x12, 0x4e, 0x17, 0x3a, 0x19, 0x2e, 0x14, 0x8b, 0xfe, 0x41, 0xf3, 0x74, 0xf6, 0xcd, 0xfd, 0x1c, 0x04, 0xbd, 0x09, 0x8e, 0x0b, 0xbf, 0x10, 0x5f, 0x0f, 0xef, 0x0e, 0xf5, 0x17, 0x7a, 0x16, 0x51, 0x16, 0x68, 0x13, 0x24, 0x16, 0x27, 0x0f, 0xd9, 0x03, 0xb1, 0x08, 0x62, 0x0b, 0xe9, 0x0b, 0xff, 0x05, 0x97, 0x03, 0xc9, 0xf6, 0x26, 0xf0, 0x71, 0xf0, 0xe5, 0xe7, 0x7a, 0xea, 0x16, 0xf5, 0x11, 0xf9, 0xa0, 0x00, 0x39, 0xfd, 0x79, 0xf0, 0xb5, 0xe4, 0x66, 0xe2, 0x57, 0xec, 0xd3, 0xf3, 0x4e, 0xf3, 0x30, 0xfb, 0xe9, 0x09, 0x6c, 0x0e, 0x21, 0x13, 0xea, 0x14, 0x4a, 0x0b, 0x73, 0x07, 0x7e, 0x05, 0x21, 0xff, 0x64, 0x06, 0xc9, 0x0a, 0x81, 0x0b, 0x5a, 0x06, 0x42, 0xff, 0x64, 0xfb, 0xb5, 0xfe, 0x70, 0xfe, 0xc9, 0xf7, 0x41, 0xf9, 0xb4, 0xf9, 0x09, 0xfe, 0x25, 0xf9, 0x45, 0xf8, 0x8e, 0xfe, 0xd7, 0x03, 0x5e, 0x08, 0x75, 0x0b, 0xf2, 0x06, 0x45, 0x02, 0x05, 0xfb, 0xa9, 0xfd, 0x36, 0x0c, 0x3c, 0x14, 0xaa, 0x10, 0xd7, 0x0e, 0x29, 0x13, 0x56, 0x12, 0xd5, 0x0c, 0x90, 0x05, 0xbc, 0xf6, 0x86, 0xec, 0x4c, 0xee, 0x92, 0xe9, 0x7c, 0xe8, 0xc9, 0xf1, 0x1b, 0xf4, 0x41, 0xf1, 0x2b, 0xec, 0xb7, 0xe5, 0x05, 0xe1, 0xf1, 0xe1, 0x36, 0xf0, 0xad, 0xfb, 0x0d, 0x00, 0xf4, 0x10, 0xcc, 0x18, 0x1f, 0x1d, 0x9f, 0x17, 0x3f, 0x16, 0x93, 0x19, 0x78, 0x18, 0xcf, 0x17, 0x56, 0x14, 0x9f, 0x15, 0xbd, 0x0e, 0x3f, 0x0b, 0xe5, 0x0a, 0x9b, 0xff, 0x63, 0xee, 0xbe, 0xdf, 0xb9, 0xde, 0xbf, 0xe7, 0xaa, 0xeb, 0xeb, 0xf1, 0x3f, 0xf5, 0x8a, 0xf1, 0xb4, 0xf2, 0x54, 0xf1, 0xd4, 0xf9, 0xbc, 0xff, 0x9b, 0x02, 0xbd, 0x08, 0xbb, 0x04, 0xd7, 0xfc, 0x01, 0xf9, 0xa5, 0xff, 0x8f, 0x06, 0x07, 0x09, 0x1d, 0x0c, 0xc3, 0x11, 0xa9, 0x0f, 0x9b, 0x12, 0x8b, 0x10, 0x37, 0x04, 0x07, 0xfd, 0x5f, 0xfd, 0x8f, 0x07, 0xfa, 0x0f, 0x7a, 0x0e, 0xf9, 0x0e, 0x8e, 0x11, 0xf6, 0x19, 0xb0, 0x1a, 0xa8, 0x0b, 0x4b, 0x06, 0x98, 0x09, 0x43, 0x05, 0x32, 0xf3, 0x82, 0xeb, 0x21, 0xe6, 0x0f, 0xe0, 0x51, 0xe3, 0x5c, 0xed, 0x72, 0xf4, 0x18, 0xf2, 0xd4, 0xea, 0xe1, 0xef, 0xde, 0xfb, 0xbf, 0x03, 0xe8, 0x01, 0x74, 0xff, 0x4f, 0x06, 0x61, 0x00, 0x5a, 0xfa, 0x7c, 0xf8, 0x4d, 0xfc, 0xda, 0x04, 0x6f, 0x06, 0x10, 0x06, 0x85, 0x08, 0x28, 0x07, 0x7b, 0x01, 0xb7, 0xfe, 0xf9, 0xfe, 0xb6, 0xff, 0xe8, 0xfa, 0x48, 0xf8, 0x6d, 0x00, 0xd6, 0x05, 0x55, 0x02, 0xaa, 0x06, 0x13, 0x15, 0x05, 0x15, 0xff, 0x09, 0x83, 0x03, 0x64, 0xf0, 0x38, 0xea, 0x4a, 0xf5, 0xcf, 0xfe, 0x4d, 0xfd, 0x2b, 0x00, 0x94, 0x04, 0xd1, 0x09, 0x9b, 0x00, 0x2b, 0xfc, 0xbd, 0xfb, 0xfb, 0xfc, 0x97, 0x02, 0x10, 0x04, 0x80, 0x05, 0x5a, 0x06, 0x6a, 0x01, 0x53, 0xfc, 0xc6, 0xff, 0x40, 0x00, 0x09, 0xf9, 0x38, 0xf4, 0xfc, 0xfb, 0x26, 0x04, 0xbd, 0x09, 0xac, 0x0e, 0x3f, 0x1a, 0x24, 0x1f, 0xf2, 0x18, 0x84, 0x0e, 0xe5, 0x02, 0x0a, 0xfe, 0x0f, 0x02, 0x21, 0xfd, 0x85, 0xfc, 0xcd, 0xfd, 0xed, 0xf9, 0xe8, 0xf4, 0xbf, 0xed, 0x63, 0xf1, 0x26, 0xf3, 0x59, 0xf1, 0xf4, 0xe4, 0xd7, 0xe7, 0x2a, 0xf5, 0x96, 0xf0, 0x58, 0xf1, 0x25, 0xfd, 0x45, 0x08, 0x5f, 0x06, 0x2a, 0xff, 0x1f, 0xfd, 0x2f, 0x05, 0x07, 0x0f, 0xf4, 0x10, 0x9b, 0x10, 0x39, 0x17, 0x70, 0x13, 0x71, 0x0c, 0x54, 0x0b, 0x37, 0x0a, 0xa9, 0x0d, 0xfa, 0x10, 0x4f, 0x11, 0xaf, 0x10, 0xbf, 0x0b, 0x34, 0x0a, 0x47, 0x09, 0x08, 0x05, 0xad, 0xfa, 0xcc, 0xf1, 0x0a, 0xfa, 0xeb, 0x05, 0x4b, 0x05, 0xff, 0x05, 0xe9, 0x08, 0x57, 0xfd, 0x39, 0xfb, 0xe1, 0xf4, 0xf1, 0xe6, 0x52, 0xe5, 0x51, 0xe6, 0x9b, 0xe7, 0x12, 0xe8, 0xa5, 0xe2, 0x10, 0xdb, 0x67, 0xd6, 0x65, 0xdd, 0x63, 0xe9, 0xe7, 0xef, 0xf2, 0xf6, 0x96, 0xfa, 0x43, 0xfc, 0x10, 0x07, 0xc2, 0x11, 0xf2, 0x14, 0x82, 0x10, 0x4a, 0x0f, 0x37, 0x0f, 0x7f, 0x10, 0xbf, 0x10, 0x15, 0x0f, 0x42, 0x14, 0x61, 0x18, 0x4f, 0x16, 0x9f, 0x0e, 0x42, 0x13, 0x73, 0x19, 0x51, 0x16, 0x52, 0x0d, 0x1e, 0x05, 0x22, 0xfe, 0x3f, 0xfd, 0x85, 0xf8, 0x88, 0xf1, 0x0d, 0xec, 0xda, 0xeb, 0xc0, 0xec, 0x6f, 0xed, 0xa0, 0xf2, 0x32, 0xf5, 0xc3, 0xff, 0x41, 0x08, 0x03, 0x07, 0xb9, 0x03, 0x64, 0x08, 0x65, 0x0d, 0x80, 0x0b, 0x7d, 0xfd, 0xfc, 0xf2, 0xc7, 0xf4, 0x25, 0xed, 0x67, 0xeb, 0xb1, 0xf5, 0x80, 0xf9, 0x7d, 0xf8, 0x63, 0xf5, 0x82, 0xf6, 0x51, 0x02, 0x7b, 0x02, 0xbe, 0xf9, 0x07, 0xf7, 0xe4, 0xf4, 0xb4, 0xf8, 0x09, 0xfd, 0x64, 0x00, 0x47, 0x06, 0xb6, 0x09, 0x90, 0x0b, 0xb7, 0x0d, 0x02, 0x0f, 0x4e, 0x14, 0x18, 0x1a, 0xbc, 0x19, 0x83, 0x15, 0xfa, 0x07, 0x79, 0x03, 0xe1, 0x03, 0xe5, 0x01, 0xb8, 0x06, 0x9f, 0x01, 0xc4, 0x01, 0x15, 0x02, 0xd3, 0xfc, 0x0d, 0xfa, 0x29, 0x03, 0xae, 0x0b, 0xef, 0x06, 0x93, 0x02, 0x6e, 0x07, 0x8e, 0x0b, 0xc3, 0x02, 0x0d, 0xfa, 0x9e, 0xf1, 0xc0, 0xe7, 0x1e, 0xea, 0xa1, 0xf3, 0xb0, 0xf9, 0x86, 0xf8, 0x5a, 0xf8, 0x4f, 0xf7, 0x5f, 0xf4, 0x97, 0xf5, 0xbc, 0xf2, 0xe4, 0xf2, 0x10, 0xf4, 0x2b, 0xf4, 0xca, 0xef, 0x2f, 0xf3, 0xe1, 0xfb, 0x58, 0x01, 0x8b, 0x05, 0x7b, 0x07, 0x01, 0x0a, 0x99, 0x0a, 0x88, 0x0a, 0x72, 0x0e, 0x72, 0x14, 0xfd, 0x16, 0x5d, 0x1e, 0xef, 0x1b, 0x63, 0x16, 0xd2, 0x13, 0x11, 0x0b, 0x5b, 0x05, 0x8b, 0x07, 0xa1, 0x03, 0xf4, 0xfa, 0xd4, 0xfa, 0xf1, 0xfb, 0xdd, 0xf8, 0x10, 0xf1, 0xc0, 0xf0, 0x1a, 0xf6, 0x4b, 0xf5, 0x4a, 0xf0, 0x96, 0xef, 0xec, 0xf3, 0x5a, 0xf8, 0x1e, 0xf8, 0xd4, 0xf0, 0x31, 0xf4, 0xa1, 0xf7, 0xb3, 0xf3, 0x59, 0xf4, 0xf3, 0xf5, 0x25, 0xf8, 0x76, 0xf9, 0x55, 0xfb, 0x71, 0x02, 0xde, 0x0b, 0xaf, 0x0d, 0xa5, 0x0b, 0x7c, 0x0a, 0xb0, 0xff, 0x89, 0xf5, 0xb7, 0xf0, 0xfa, 0xf1, 0x09, 0xfc, 0x42, 0x01, 0x09, 0x02, 0xae, 0x01, 0x92, 0x04, 0x84, 0x08, 0x15, 0x0c, 0x5f, 0x13, 0x3c, 0x15, 0x9a, 0x17, 0x2c, 0x1f, 0x1f, 0x1f, 0xb6, 0x17, 0xa5, 0x11, 0x97, 0x0e, 0x58, 0x07, 0xf7, 0x05, 0x35, 0x0a, 0x86, 0x09, 0xe4, 0x08, 0x78, 0x07, 0x81, 0xff, 0xb7, 0xfe, 0x98, 0xf9, 0xaf, 0xf1, 0xe2, 0xea, 0x2c, 0xed, 0x89, 0xf0, 0x51, 0xeb, 0x7f, 0xeb, 0x2e, 0xeb, 0xbf, 0xee, 0x76, 0xf2, 0x2e, 0xf2, 0xc5, 0xec, 0xa8, 0xe6, 0x96, 0xe9, 0x81, 0xeb, 0xf5, 0xea, 0x8d, 0xef, 0xf8, 0xf6, 0x43, 0xf6, 0x54, 0xf2, 0x2a, 0xf8, 0x85, 0xfb, 0x5d, 0xff, 0xfa, 0x04, 0xa2, 0x0b, 0xb4, 0x10, 0x2c, 0x10, 0x49, 0x0d, 0xb5, 0x0a, 0xda, 0x10, 0x1c, 0x16, 0x9b, 0x16, 0xc8, 0x16, 0x02, 0x12, 0x9f, 0x0c, 0xd3, 0x07, 0x05, 0x03, 0xf5, 0x02, 0x52, 0x0d, 0x51, 0x10, 0x4c, 0x11, 0x75, 0x10, 0xcf, 0x07, 0xc7, 0x02, 0x0a, 0x04, 0xde, 0x06, 0x98, 0x05, 0x81, 0x01, 0x4a, 0xf8, 0xe7, 0xf5, 0x64, 0xf8, 0x06, 0xf6, 0x01, 0xf1, 0x6e, 0xee, 0x1e, 0xef, 0x1f, 0xf1, 0x16, 0xee, 0x0b, 0xea, 0x7e, 0xec, 0x05, 0xec, 0x77, 0xf0, 0x50, 0xf9, 0x8c, 0x00, 0xe5, 0x08, 0x27, 0x0c, 0xe7, 0x06, 0x50, 0x05, 0xfe, 0x04, 0x7f, 0x05, 0xbe, 0x05, 0x0f, 0x09, 0x7c, 0x0a, 0xb2, 0x05, 0x4d, 0x00, 0x5c, 0xfa, 0x5a, 0xf5, 0xc7, 0xf5, 0x4d, 0xfd, 0x09, 0x03, 0x50, 0x05, 0x93, 0xff, 0x66, 0xff, 0xf0, 0x05, 0x3f, 0x08, 0x4f, 0x01, 0xf5, 0xfc, 0xc2, 0xff, 0x55, 0x03, 0xe1, 0x01, 0xcc, 0xfe, 0x8e, 0x04, 0x39, 0x0e, 0xa7, 0x0f, 0xa6, 0x0a, 0x10, 0x0a, 0x3f, 0x09, 0xce, 0x06, 0x27, 0x02, 0xed, 0xf8, 0x20, 0xee, 0xb7, 0xec, 0xf3, 0xf1, 0x5f, 0xf3, 0xee, 0xee, 0x24, 0xee, 0x3c, 0xf4, 0x63, 0xfc, 0x13, 0x04, 0x53, 0x03, 0x6e, 0xff, 0x8b, 0x00, 0x6f, 0x09, 0xf1, 0x0f, 0xd6, 0x12, 0x8f, 0x11, 0x1f, 0x0c, 0xbb, 0x04, 0x69, 0xff, 0xef, 0xff, 0x46, 0x07, 0x5c, 0x09, 0xbe, 0x07, 0xab, 0x05, 0x9b, 0x03, 0xac, 0x01, 0x1b, 0xfd, 0xe5, 0xfd, 0xe1, 0xf8, 0x03, 0xf1, 0x0e, 0xf0, 0x30, 0xf6, 0x55, 0xfe, 0x2f, 0x00, 0xd7, 0xfc, 0x43, 0xfd, 0x0c, 0xff, 0xf8, 0xff, 0x90, 0xff, 0x11, 0xfc, 0xe0, 0xf1, 0x3e, 0xf1, 0x28, 0xfb, 0xfc, 0x01, 0x5e, 0x04, 0x02, 0x04, 0xf6, 0x06, 0x22, 0x04, 0xdd, 0x00, 0x11, 0x03, 0xaf, 0x03, 0x13, 0x04, 0x1a, 0x04, 0xd2, 0xfe, 0x5f, 0xf7, 0xac, 0xf8, 0x21, 0xfc, 0xb9, 0xfd, 0xc1, 0xfd, 0xba, 0xff, 0xeb, 0x00, 0x5e, 0x00, 0x5a, 0x01, 0xbb, 0x00, 0xd1, 0xff, 0x3a, 0x00, 0x40, 0x01, 0xb2, 0xfe, 0x21, 0xfc, 0xd6, 0x00, 0x89, 0x03, 0x4b, 0x05, 0x3f, 0x05, 0xc3, 0xff, 0x5c, 0xff, 0x1d, 0xfa, 0x8f, 0xfc, 0x84, 0x01, 0x6a, 0xfe, 0x80, 0xff, 0x37, 0x04, 0x5c, 0x05, 0x6e, 0x06, 0xa4, 0x06, 0x0e, 0x07, 0x27, 0x07, 0x0f, 0x02, 0x24, 0xfe, 0x2e, 0xf9, 0xe9, 0xf5, 0x87, 0xf5, 0x17, 0xf7, 0x84, 0xf9, 0x11, 0xfc, 0x4c, 0xfb, 0x81, 0xfb, 0x64, 0xfb, 0xb8, 0xfa, 0xc4, 0xf8, 0xf2, 0xf9, 0x43, 0xfd, 0xd5, 0xf9, 0x9a, 0xf9, 0x87, 0xfe, 0xab, 0x07, 0xbe, 0x0a, 0xd7, 0x0b, 0x28, 0x0d, 0x27, 0x0a, 0x2f, 0x0b, 0x71, 0x0f, 0x14, 0x14, 0x80, 0x12, 0x14, 0x0d, 0xb9, 0x08, 0x9b, 0x04, 0xe5, 0x02, 0x36, 0xfe, 0x47, 0xfc, 0x55, 0xfc, 0x97, 0xfd, 0x33, 0xfd, 0x9d, 0xfd, 0xa8, 0xff, 0xe9, 0xfd, 0x20, 0xfa, 0x4b, 0xfc, 0xfc, 0xff, 0x36, 0xfe, 0x0a, 0xf9, 0x5c, 0xf3, 0xeb, 0xf0, 0x8b, 0xf0, 0x52, 0xf3, 0x39, 0xf7, 0xf9, 0xf6, 0x1f, 0xf5, 0x46, 0xf5, 0x00, 0xfb, 0x28, 0x00, 0x3c, 0xfe, 0xbd, 0xf9, 0x71, 0xf8, 0xd1, 0xfb, 0x5f, 0xfd, 0xdf, 0xfd, 0x38, 0x00, 0xfe, 0x04, 0x58, 0x0a, 0x1c, 0x11, 0xc6, 0x0f, 0x72, 0x0a, 0x1a, 0x0e, 0x5b, 0x11, 0x57, 0x0e, 0x30, 0x08, 0x1e, 0xfe, 0xe8, 0xfa, 0x30, 0xfb, 0xb9, 0xfd, 0x0d, 0xfe, 0x02, 0xf9, 0x91, 0xf7, 0xad, 0xfc, 0xbf, 0xfd, 0x12, 0xfa, 0x7e, 0xfb, 0x21, 0xfe, 0x0c, 0xff, 0xa4, 0x00, 0xdf, 0x02, 0xab, 0x01, 0xb7, 0xff, 0x5e, 0xfa, 0x4d, 0xf9, 0xc4, 0xfb, 0xcd, 0xfe, 0xc8, 0xff, 0x7d, 0x00, 0xea, 0x06, 0x53, 0x07, 0x02, 0x04, 0xac, 0x01, 0x01, 0xfd, 0xc9, 0xfb, 0x37, 0xfd, 0x84, 0xff, 0x91, 0x01, 0x4b, 0x03, 0x0c, 0x09, 0x28, 0x0d, 0xf8, 0x08, 0x82, 0x04, 0x5a, 0xfe, 0x94, 0xfa, 0x5a, 0xfb, 0xcd, 0xfb, 0x01, 0xfc, 0x1c, 0xfa, 0xc9, 0xf8, 0xdd, 0xf8, 0xd1, 0xf8, 0x59, 0xf6, 0xc9, 0xf7, 0xf5, 0xfa, 0xa8, 0xfe, 0x7e, 0x01, 0x08, 0x00, 0x01, 0xfc, 0xe3, 0xfc, 0x06, 0xff, 0x18, 0x01, 0x29, 0xff, 0x30, 0xfe, 0x0c, 0x04, 0x13, 0x04, 0x8d, 0xff, 0xdc, 0xfe, 0x65, 0x03, 0x4d, 0x03, 0xff, 0x02, 0x49, 0x01, 0xda, 0xff, 0x04, 0x00, 0x77, 0x02, 0xb5, 0x02, 0xc3, 0xff, 0x36, 0xfe, 0x6f, 0xff, 0x47, 0x03, 0x83, 0x02, 0xef, 0x03, 0xee, 0x04, 0x7d, 0x02, 0x72, 0xfe, 0x1b, 0xff, 0x79, 0x01, 0x9f, 0x01, 0x21, 0x02, 0xd4, 0x00, 0x57, 0x05, 0x3d, 0x03, 0xb8, 0x00, 0x7b, 0x03, 0xb7, 0x07, 0x8c, 0x09, 0x08, 0x09, 0x9f, 0x04, 0x3c, 0xfe, 0xde, 0xf3, 0xb1, 0xef, 0xa4, 0xf3, 0xe0, 0xf1, 0xca, 0xee, 0x77, 0xed, 0x61, 0xef, 0x31, 0xf5, 0xa2, 0xf8, 0xd1, 0xf7, 0x91, 0xfe, 0x0e, 0x04, 0x4a, 0x08, 0x01, 0x0c, 0xd1, 0x0f, 0xf1, 0x12, 0x89, 0x10, 0x2a, 0x0d, 0xe7, 0x0a, 0x8e, 0x05, 0x3f, 0x04, 0xef, 0x04, 0xf1, 0x02, 0xab, 0x02, 0x76, 0x01, 0x6a, 0x00, 0xab, 0xfe, 0xb0, 0xfa, 0xe8, 0xfa, 0x29, 0xff, 0x63, 0xff, 0x28, 0x00, 0x84, 0x04, 0x82, 0x05, 0xbb, 0x04, 0xc9, 0x02, 0x67, 0x00, 0x0b, 0xfc, 0x49, 0xf7, 0x86, 0xf4, 0x57, 0xf5, 0xa4, 0xf5, 0xa2, 0xf4, 0xe1, 0xf6, 0xae, 0xf8, 0xdd, 0xfa, 0xcb, 0x00, 0x8f, 0x05, 0x73, 0x05, 0x43, 0x06, 0x97, 0x06, 0x4b, 0x04, 0x2d, 0x02, 0x99, 0x01, 0x0b, 0x06, 0xb7, 0x04, 0xa5, 0xff, 0x5b, 0xfd, 0xc3, 0xfc, 0xe6, 0xfb, 0x65, 0xfc, 0xb5, 0xfc, 0xd7, 0xfc, 0x29, 0xfc, 0x77, 0xfd, 0xae, 0xfa, 0xb3, 0xf5, 0xb0, 0xf7, 0x6e, 0xfb, 0xc8, 0xff, 0x5e, 0x04, 0x58, 0x06, 0xce, 0x04, 0x8e, 0x01, 0x37, 0x00, 0x94, 0x01, 0x12, 0x05, 0x04, 0x07, 0xab, 0x04, 0xd4, 0x05, 0x27, 0x08, 0x12, 0x06, 0x35, 0x02, 0x6f, 0xfe, 0x55, 0x03, 0x14, 0x09, 0xfc, 0x08, 0xbe, 0x05, 0x76, 0x01, 0xed, 0x01, 0xfb, 0x02, 0xac, 0x04, 0x48, 0x01, 0x64, 0xfe, 0x77, 0xfc, 0xf5, 0xf8, 0x48, 0xf6, 0x77, 0xf7, 0xe1, 0xf7, 0x45, 0xf8, 0xe9, 0xf9, 0x6e, 0xf7, 0xc9, 0xf7, 0xf6, 0xf5, 0xd4, 0xf3, 0x01, 0xf4, 0x03, 0xf5, 0x0e, 0xf3, 0xc9, 0xf2, 0x1c, 0xf6, 0xc6, 0xf6, 0x9d, 0xf9, 0xd1, 0xfc, 0xac, 0xfe, 0x64, 0x00, 0x07, 0x04, 0x82, 0x0a, 0xd5, 0x0b, 0xf0, 0x08, 0x5b, 0x07, 0xc2, 0x08, 0x20, 0x0b, 0x3d, 0x0a, 0x2f, 0x0c, 0x5f, 0x09, 0x8c, 0x06, 0x23, 0x07, 0xe4, 0x09, 0x46, 0x08, 0xd1, 0x03, 0x23, 0x07, 0x93, 0x06, 0x06, 0x05, 0x87, 0x04, 0xd3, 0x03, 0x81, 0x03, 0xb8, 0xfe, 0x81, 0xfa, 0xe5, 0xf8, 0xdd, 0xf9, 0x59, 0xfb, 0xa3, 0xfd, 0x0a, 0xfe, 0xa1, 0xfb, 0xb5, 0xfa, 0xe6, 0xf7, 0xc3, 0xf4, 0xfc, 0xf5, 0x29, 0xf6, 0xdc, 0xf6, 0x91, 0xfa, 0x19, 0xfe, 0xce, 0xff, 0x5d, 0x01, 0x5f, 0xff, 0x87, 0xfd, 0x30, 0xfe, 0x99, 0xfb, 0x9f, 0xfc, 0x10, 0xfe, 0x6f, 0x01, 0xdb, 0x07, 0xd8, 0x0a, 0x86, 0x09, 0x20, 0x09, 0x17, 0x09, 0xbe, 0x07, 0x4c, 0x0a, 0x08, 0x0c, 0xe8, 0x09, 0x5e, 0x08, 0x4b, 0x05, 0xdd, 0x02, 0x7b, 0x01, 0x79, 0x00, 0x32, 0xff, 0x72, 0xfb, 0x19, 0xf9, 0x57, 0xfc, 0x0c, 0xff, 0xd3, 0xfd, 0xb3, 0xfc, 0x6d, 0xfb, 0xab, 0xf7, 0x0c, 0xf7, 0xd6, 0xf5, 0x12, 0xf5, 0x8e, 0xf9, 0x59, 0xfb, 0xaa, 0xf9, 0x57, 0xfc, 0x7c, 0x00, 0x4b, 0x01, 0xbe, 0x01, 0xc7, 0x01, 0x35, 0xff, 0x69, 0xfd, 0xac, 0x00, 0xd7, 0x02, 0x92, 0xff, 0x4b, 0xfc, 0x5d, 0xfb, 0x57, 0xfc, 0x93, 0xfd, 0xcf, 0xfe, 0x19, 0x00, 0x5a, 0xff, 0x47, 0x00, 0xfb, 0x00, 0xed, 0x01, 0x9b, 0x02, 0x97, 0x01, 0xb1, 0xfe, 0xc6, 0xfa, 0xc6, 0xfb, 0xc3, 0xfd, 0x2f, 0xfd, 0xaa, 0xfb, 0x59, 0xf9, 0xea, 0xfa, 0x5e, 0x00, 0xf3, 0x03, 0x2c, 0x06, 0xa3, 0x04, 0x3a, 0x04, 0xf9, 0x02, 0x54, 0x01, 0xa5, 0x03, 0x9f, 0x05, 0xd4, 0x05, 0x07, 0x04, 0x43, 0x00, 0x62, 0x00, 0x4c, 0x04, 0x91, 0x03, 0xf3, 0x02, 0x07, 0x04, 0x03, 0x07, 0x2f, 0x06, 0xbf, 0x00, 0xcd, 0xfd, 0x8d, 0xfb, 0xb1, 0xfb, 0x61, 0xfd, 0xfd, 0xfd, 0x65, 0xf9, 0x56, 0xf7, 0x70, 0xf8, 0x61, 0xfa, 0x0d, 0xfd, 0x93, 0xfe, 0x14, 0xff, 0x52, 0xfe, 0x97, 0xfd, 0x97, 0xfe, 0xb9, 0xff, 0xff, 0x01, 0xa3, 0x04, 0x6b, 0x04, 0xef, 0x03, 0x79, 0x01, 0xb2, 0xfe, 0x6f, 0xff, 0xd0, 0x04, 0xda, 0x09, 0x24, 0x09, 0x49, 0x03, 0x63, 0x01, 0x69, 0x02, 0xb0, 0xff, 0xa9, 0xfd, 0x10, 0xfe, 0xd2, 0xfe, 0x98, 0xff, 0x45, 0x01, 0x41, 0x03, 0xbb, 0x03, 0xab, 0x01, 0x37, 0xfe, 0xa5, 0xfc, 0xfd, 0xf9, 0xa5, 0xfa, 0x9d, 0xfd, 0x40, 0xfe, 0x6f, 0xfd, 0x83, 0xfc, 0xa7, 0xfc, 0x39, 0xfd, 0xc5, 0xfc, 0x21, 0xfb, 0x35, 0xfa, 0x7d, 0xf9, 0xd6, 0xf9, 0x31, 0xf9, 0x02, 0xfb, 0x2c, 0x00, 0x58, 0x04, 0x5b, 0x03, 0xd8, 0x01, 0x45, 0x01, 0xe7, 0xff, 0x0f, 0x01, 0x7d, 0xff, 0xbe, 0xfe, 0xdf, 0x01, 0x13, 0x05, 0xc3, 0x07, 0x7a, 0x08, 0xe2, 0x05, 0xe5, 0x01, 0x6c, 0xff, 0x6a, 0x00, 0xad, 0x03, 0x6a, 0x07, 0x47, 0x06, 0x96, 0x01, 0x9b, 0xfd, 0x39, 0xfd, 0x87, 0xfd, 0x9c, 0xf9, 0x98, 0xf6, 0xce, 0xf6, 0xca, 0xfa, 0xbd, 0xfd, 0x4b, 0xff, 0x03, 0x02, 0x21, 0x02, 0x2a, 0x01, 0x12, 0xff, 0x39, 0xfe, 0xfd, 0xfd, 0xa3, 0xfd, 0x06, 0xff, 0x0c, 0x01, 0xb7, 0xfe, 0x60, 0xf9, 0x02, 0xf9, 0xd1, 0xfd, 0x43, 0xfd, 0x0c, 0xfb, 0xf5, 0xfc, 0x67, 0x02, 0x43, 0x07, 0xe6, 0x07, 0xaa, 0x08, 0x0f, 0x08, 0xb7, 0x05, 0xcd, 0x02, 0x9b, 0x02, 0x8f, 0x04, 0x1c, 0x0a, 0x99, 0x0b, 0x71, 0x0b, 0x0a, 0x0c, 0xdf, 0x08, 0xa0, 0x06, 0x0f, 0x05, 0xb7, 0x02, 0xbd, 0xfe, 0x79, 0xfa, 0x91, 0xf8, 0xd3, 0xf6, 0x62, 0xf5, 0x8c, 0xf2, 0x51, 0xf1, 0xe9, 0xf0, 0xb9, 0xf0, 0x24, 0xf5, 0xbe, 0xf7, 0x51, 0xfb, 0x97, 0xfd, 0xc5, 0xfc, 0xb1, 0xf9, 0xb4, 0xf7, 0x72, 0xf7, 0x31, 0xfa, 0x23, 0xfc, 0xab, 0xfd, 0xcb, 0x00, 0xa5, 0x02, 0xc0, 0x05, 0xd4, 0x09, 0x00, 0x0d, 0x96, 0x0e, 0xf7, 0x0d, 0xfc, 0x0c, 0xc4, 0x0d, 0x07, 0x0d, 0xb6, 0x0a, 0xcf, 0x06, 0x83, 0x04, 0x84, 0x04, 0x32, 0x04, 0x3e, 0x04, 0xf3, 0x05, 0x94, 0x04, 0xec, 0x00, 0xa1, 0xff, 0xe7, 0xfe, 0xdb, 0xfc, 0x1d, 0xfc, 0x81, 0xfb, 0x00, 0xf8, 0xef, 0xf4, 0x6a, 0xf6, 0x95, 0xfa, 0xc3, 0xfe, 0xc6, 0xff, 0xb7, 0xfc, 0x35, 0xf9, 0x26, 0xf7, 0x6b, 0xf6, 0x22, 0xf6, 0x1a, 0xf9, 0x59, 0xfc, 0xcd, 0xfc, 0x35, 0xfd, 0xa9, 0xfe, 0x73, 0xfd, 0x6f, 0xfc, 0x8e, 0xfe, 0xcc, 0xff, 0xaf, 0x03, 0xb8, 0x04, 0xcd, 0x03, 0x8d, 0x02, 0x61, 0x02, 0xce, 0x04, 0xb9, 0x03, 0x21, 0x03, 0x29, 0x03, 0x81, 0x03, 0xd5, 0x02, 0x2d, 0x03, 0xd7, 0x04, 0x45, 0x02, 0xa1, 0xfc, 0x01, 0xf9, 0x85, 0xf8, 0x42, 0xf7, 0xd9, 0xf6, 0x07, 0xf7, 0x59, 0xf7, 0xb0, 0xf6, 0x7b, 0xf7, 0xbe, 0xf7, 0x3c, 0xf9, 0xf5, 0xfc, 0xdc, 0xfe, 0xdf, 0x00, 0xb7, 0x02, 0x14, 0x06, 0xdc, 0x06, 0x88, 0x06, 0xf2, 0x06, 0xc6, 0x05, 0x7a, 0x06, 0x0c, 0x07, 0x0b, 0x06, 0x9c, 0x05, 0xc6, 0x06, 0x64, 0x06, 0x83, 0x06, 0x8c, 0x06, 0x97, 0x04, 0xc7, 0x02, 0x0f, 0x01, 0x87, 0xfc, 0xb9, 0xf8, 0xab, 0xf7, 0xe9, 0xf7, 0xe1, 0xfa, 0x5f, 0xfd, 0x65, 0xfc, 0x97, 0xfc, 0xfb, 0xfc, 0x6c, 0xfe, 0x89, 0x00, 0xb6, 0x00, 0xe6, 0xff, 0x46, 0xfe, 0xc9, 0xfc, 0x89, 0xfc, 0x95, 0xfd, 0x4a, 0x00, 0x66, 0x01, 0x10, 0x00, 0xab, 0x01, 0x2f, 0x05, 0x4a, 0x07, 0x68, 0x08, 0xc6, 0x09, 0xf2, 0x08, 0xc7, 0x06, 0xb6, 0x06, 0xbc, 0x06, 0x94, 0x04, 0x0b, 0x03, 0x97, 0x01, 0xe7, 0xfd, 0x59, 0xfa, 0xe9, 0xf6, 0x14, 0xf5, 0x24, 0xf7, 0x6d, 0xfa, 0xf2, 0xf8, 0x09, 0xf8, 0x3e, 0xf7, 0xec, 0xf6, 0x41, 0xf9, 0xee, 0xf9, 0xf9, 0xf8, 0x30, 0xf8, 0xb5, 0xf8, 0x40, 0xfb, 0x25, 0xfe, 0xdd, 0xff, 0x5f, 0x02, 0x10, 0x04, 0x47, 0x05, 0x82, 0x07, 0xa9, 0x09, 0xae, 0x09, 0xbf, 0x09, 0x40, 0x0c, 0x3f, 0x0d, 0x48, 0x0d, 0x30, 0x0d, 0xee, 0x0a, 0x4a, 0x08, 0x94, 0x08, 0xfe, 0x07, 0x9b, 0x06, 0x0b, 0x04, 0xeb, 0x01, 0x03, 0x02, 0x58, 0x01, 0x09, 0xff, 0x9c, 0xff, 0x02, 0x00, 0x35, 0xff, 0x61, 0xfd, 0x99, 0xfb, 0xe5, 0xfa, 0x8c, 0xf9, 0x10, 0xf7, 0x16, 0xf5, 0x06, 0xf5, 0x12, 0xf4, 0x99, 0xf1, 0xc4, 0xf1, 0x90, 0xf5, 0x11, 0xf7, 0xb4, 0xf5, 0xa7, 0xf3, 0x3c, 0xf4, 0x52, 0xf4, 0x9f, 0xf5, 0x2d, 0xf8, 0xda, 0xfb, 0x82, 0x00, 0xa1, 0x03, 0x43, 0x03, 0x50, 0x05, 0x86, 0x06, 0x90, 0x04, 0xf3, 0x02, 0x81, 0x02, 0x4b, 0x05, 0x8b, 0x05, 0xf3, 0x06, 0xe4, 0x08, 0x22, 0x09, 0x07, 0x0a, 0xa5, 0x09, 0xeb, 0x06, 0xef, 0x04, 0x87, 0x04, 0x7b, 0x02, 0xea, 0xff, 0xa5, 0xfe, 0xab, 0xff, 0x32, 0x00, 0xeb, 0x00, 0x19, 0x01, 0x6a, 0xfe, 0x4b, 0xfc, 0xa9, 0xfc, 0xa8, 0xfe, 0x24, 0x01, 0xfc, 0xff, 0xe3, 0xfd, 0x7e, 0xff, 0xdf, 0x01, 0xa5, 0x01, 0x41, 0x00, 0xb9, 0xff, 0x65, 0xff, 0x6e, 0xff, 0xff, 0xfe, 0xd9, 0xfd, 0x23, 0xfc, 0x21, 0xfa, 0x1d, 0xfa, 0xf5, 0xf9, 0x79, 0xfa, 0xb1, 0xfd, 0x82, 0xfe, 0x85, 0x00, 0xa7, 0x02, 0x2b, 0x04, 0x3c, 0x04, 0x4d, 0x03, 0x27, 0x04, 0xc5, 0x03, 0x39, 0x02, 0xe2, 0x01, 0x75, 0x02, 0x7e, 0x01, 0x97, 0x02, 0x61, 0x02, 0x57, 0x02, 0x6b, 0x03, 0xfc, 0x01, 0x13, 0xfe, 0xe6, 0xf9, 0xc2, 0xf8, 0x03, 0xf7, 0x11, 0xf7, 0x15, 0xf9, 0xa9, 0xf8, 0x2d, 0xf8, 0x89, 0xfa, 0x69, 0xfd, 0xd0, 0xfe, 0x56, 0x00, 0xdf, 0x01, 0x6e, 0x00, 0x8b, 0xfe, 0xaf, 0xfc, 0x0d, 0xfd, 0xfb, 0xfc, 0x29, 0xfc, 0x55, 0xfd, 0xb7, 0xfe, 0x1f, 0xfd, 0x7b, 0xfd, 0xaa, 0x00, 0x87, 0x02, 0xd5, 0x01, 0xc5, 0x02, 0x95, 0x03, 0x9b, 0x03, 0xbf, 0x03, 0xb7, 0x02, 0x2d, 0x03, 0xc5, 0x03, 0x37, 0x04, 0x87, 0x05, 0x8c, 0x05, 0x87, 0x05, 0x57, 0x05, 0x7e, 0x05, 0x3b, 0x05, 0x35, 0x03, 0x65, 0x02, 0xdc, 0x01, 0x8f, 0x02, 0x41, 0x03, 0x1c, 0x01, 0x10, 0x00, 0x59, 0x02, 0xb3, 0x03, 0x57, 0x02, 0xe7, 0x01, 0x73, 0x01, 0xa6, 0x01, 0x6c, 0x01, 0xb8, 0xfe, 0x9b, 0xfd, 0xfb, 0xfc, 0xda, 0xfb, 0x51, 0xfb, 0xbf, 0xfc, 0x66, 0xfa, 0x9e, 0xf8, 0x56, 0xf7, 0x26, 0xf7, 0xf6, 0xf6, 0x4f, 0xf5, 0x00, 0xf6, 0x27, 0xf6, 0x90, 0xf6, 0xd5, 0xf8, 0x59, 0xfb, 0xdc, 0xfb, 0x79, 0xfc, 0xa8, 0xfe, 0xe8, 0x01, 0x63, 0x05, 0x22, 0x07, 0x50, 0x09, 0xdf, 0x0a, 0xe6, 0x0a, 0x89, 0x0b, 0x48, 0x0b, 0xcf, 0x0a, 0x1f, 0x0a, 0x8f, 0x06, 0x71, 0x02, 0x50, 0x00, 0x2d, 0xff, 0x81, 0xfe, 0x0b, 0xfc, 0xd1, 0xf9, 0x2c, 0xfa, 0x8f, 0xfc, 0x33, 0xfd, 0x15, 0xfd, 0x93, 0xfc, 0xf0, 0xfb, 0x15, 0xfc, 0x33, 0xfc, 0x17, 0xfc, 0x36, 0xfa, 0xdc, 0xf8, 0xcb, 0xf6, 0xbc, 0xf6, 0xf0, 0xf8, 0x61, 0xfa, 0x41, 0xfd, 0xbf, 0xff, 0xb1, 0x02, 0x73, 0x05, 0x17, 0x07, 0x3f, 0x07, 0xc7, 0x07, 0x80, 0x08, 0x49, 0x09, 0xcf, 0x08, 0xfc, 0x07, 0xe4, 0x05, 0x95, 0x03, 0x43, 0x04, 0x39, 0x03, 0x62, 0x00, 0x8d, 0xff, 0x1c, 0x00, 0x7c, 0x01, 0x15, 0x01, 0x77, 0xff, 0x6e, 0xfb, 0xad, 0xf9, 0x6c, 0xfb, 0xc9, 0xfc, 0x2d, 0xfe, 0x3c, 0xfe, 0x0f, 0xfe, 0x75, 0xfe, 0x87, 0xfe, 0xdf, 0xfe, 0x14, 0xff, 0xcb, 0xff, 0xa2, 0xfe, 0x37, 0xfd, 0x93, 0xff, 0xdc, 0x01, 0x7b, 0x02, 0xd7, 0x03, 0x33, 0x06, 0xe2, 0x05, 0x73, 0x04, 0xe4, 0x01, 0x4d, 0x00, 0xbe, 0x00, 0x0a, 0x01, 0x3b, 0xff, 0xf6, 0xfb, 0x94, 0xfa, 0xe5, 0xf9, 0x9c, 0xf8, 0xab, 0xf7, 0x1d, 0xf9, 0xd6, 0xfa, 0x21, 0xfd, 0xc5, 0xff, 0x9b, 0x00, 0x67, 0x01, 0x34, 0x01, 0x1f, 0x01, 0x03, 0x02, 0x99, 0x03, 0xc9, 0x02, 0xb3, 0x02, 0xbd, 0x03, 0x8d, 0x03, 0x23, 0x03, 0xa7, 0x00, 0xfd, 0xfd, 0x69, 0xfc, 0x1f, 0xfc, 0xdc, 0xfb, 0xd1, 0xfb, 0x04, 0xfe, 0xd2, 0xff, 0x1c, 0x01, 0x4b, 0x02, 0xd3, 0x05, 0x0b, 0x07, 0xb2, 0x05, 0x8b, 0x04, 0x81, 0x01, 0xe9, 0xff, 0x85, 0xfd, 0xa8, 0xfb, 0x79, 0xfa, 0x40, 0xfa, 0xed, 0xf8, 0x70, 0xf7, 0xac, 0xf8, 0x44, 0xf9, 0x19, 0xfa, 0x8f, 0xfc, 0xca, 0xfe, 0x49, 0xfd, 0xc5, 0xfc, 0x51, 0xfe, 0x2c, 0xff, 0xc0, 0xff, 0x02, 0x00, 0xf2, 0xff, 0x4f, 0xfe, 0xef, 0xfd, 0x17, 0xff, 0xd9, 0x01, 0x55, 0x03, 0xe5, 0x02, 0xc5, 0x02, 0x63, 0x03, 0x93, 0x05, 0x83, 0x07, 0x7f, 0x07, 0x30, 0x07, 0xb4, 0x05, 0xe8, 0x04, 0x52, 0x05, 0x47, 0x06, 0x38, 0x08, 0xc6, 0x09, 0xef, 0x08, 0xcf, 0x05, 0xe1, 0x02, 0xd1, 0x00, 0x2f, 0x00, 0xf3, 0xfe, 0x52, 0xfe, 0x8d, 0xfd, 0xd1, 0xfb, 0x94, 0xfa, 0x5c, 0xfa, 0x1c, 0xfb, 0x57, 0xfc, 0xcb, 0xfc, 0x73, 0xfc, 0x77, 0xfc, 0x1a, 0xfb, 0x25, 0xfa, 0xb9, 0xf9, 0x1c, 0xfa, 0x12, 0xfb, 0xed, 0xfb, 0x89, 0xfd, 0xbf, 0xfd, 0x79, 0xfb, 0x29, 0xfc, 0xe7, 0xfd, 0x72, 0xff, 0x2d, 0x02, 0x87, 0x02, 0x97, 0x03, 0xb9, 0x03, 0x5f, 0x02, 0xc2, 0x00, 0x35, 0x00, 0x64, 0x00, 0x1e, 0x01, 0x05, 0x02, 0x61, 0x02, 0x8b, 0x02, 0xbd, 0x01, 0x4c, 0x01, 0xcf, 0x01, 0xf9, 0x02, 0x28, 0x04, 0x8e, 0x04, 0x1b, 0x05, 0x77, 0x06, 0x6b, 0x05, 0x6b, 0x03, 0x6f, 0x01, 0x47, 0x00, 0x90, 0xfe, 0x7f, 0xfc, 0x77, 0xfc, 0x13, 0xfc, 0x75, 0xfb, 0x39, 0xfb, 0x76, 0xfa, 0x96, 0xf8, 0x7c, 0xf8, 0xd0, 0xfa, 0x3c, 0xfb, 0xbc, 0xfa, 0x90, 0xfb, 0xed, 0xfc, 0xa5, 0xfd, 0x97, 0xfd, 0x14, 0xff, 0xe7, 0xff, 0x01, 0x01, 0x87, 0x02, 0x61, 0x03, 0x0b, 0x04, 0x7a, 0x04, 0x8f, 0x04, 0x6a, 0x04, 0x83, 0x03, 0x1b, 0x01, 0x32, 0xff, 0x28, 0xfe, 0xca, 0xfe, 0x5d, 0xff, 0x27, 0xff, 0x2c, 0xff, 0x93, 0xfe, 0x8f, 0xfc, 0xe5, 0xfb, 0xcb, 0xfc, 0xdd, 0xfd, 0x31, 0xfe, 0x02, 0xff, 0xe5, 0x00, 0x0d, 0x02, 0x9f, 0x02, 0x05, 0x03, 0x55, 0x01, 0x3c, 0xff, 0xcc, 0xfe, 0xbc, 0xff, 0x76, 0x00, 0xcd, 0x00, 0x27, 0x02, 0x5f, 0x03, 0xb1, 0x03, 0x75, 0x03, 0x15, 0x02, 0xe6, 0x00, 0x63, 0xff, 0x85, 0xfd, 0xaf, 0xfd, 0x3d, 0xfe, 0x6f, 0xfe, 0x6c, 0xff, 0xfe, 0x00, 0x23, 0x02, 0xe5, 0x01, 0xc7, 0x01, 0x9f, 0x01, 0x98, 0x00, 0xfc, 0xff, 0x27, 0xfe, 0x2e, 0xfe, 0x38, 0xff, 0x7f, 0x00, 0xb2, 0x00, 0xb5, 0x00, 0x0c, 0x01, 0xcd, 0x00, 0x1c, 0x01, 0x27, 0x01, 0xf5, 0x00, 0xb8, 0x00, 0x07, 0x01, 0xcf, 0xff, 0x93, 0xfe, 0xd5, 0xfd, 0x21, 0xfc, 0xef, 0xfc, 0x22, 0xfe, 0xdc, 0xfe, 0xc0, 0xfe, 0xfa, 0xfe, 0x3b, 0xff, 0x7e, 0xfe, 0x81, 0xff, 0x93, 0xfe, 0xbf, 0xfd, 0x97, 0xfc, 0x69, 0xfa, 0xae, 0xfa, 0xdb, 0xfc, 0x2d, 0xff, 0xe7, 0xff, 0x63, 0xff, 0xfd, 0xfe, 0x0b, 0x00, 0x6e, 0x00, 0x23, 0x02, 0x15, 0x03, 0x83, 0x04, 0xfc, 0x05, 0x0b, 0x07, 0x78, 0x08, 0xaa, 0x07, 0x03, 0x06, 0xc3, 0x05, 0x0f, 0x05, 0x1d, 0x03, 0x17, 0x02, 0x59, 0x02, 0x4e, 0x01, 0x1d, 0x00, 0xd0, 0xfe, 0xa3, 0xfc, 0x09, 0xfb, 0x14, 0xfa, 0xfc, 0xf9, 0x1e, 0xfa, 0x42, 0xfa, 0xc5, 0xf9, 0xd2, 0xfa, 0x8f, 0xfc, 0x59, 0xfd, 0xca, 0xfe, 0x56, 0x00, 0x35, 0x00, 0xef, 0xff, 0xde, 0xff, 0x4d, 0x00, 0xf7, 0x00, 0x7d, 0x00, 0x1b, 0xff, 0x4f, 0xfe, 0x45, 0xfd, 0x5d, 0xfc, 0x81, 0xfd, 0x85, 0xfe, 0x3c, 0xff, 0xe7, 0xff, 0xe5, 0x00, 0x18, 0x01, 0x95, 0x00, 0xec, 0x00, 0x93, 0xff, 0xff, 0xfe, 0x05, 0xff, 0x3b, 0xff, 0x61, 0x00, 0xee, 0x01, 0x35, 0x03, 0xeb, 0x02, 0xa5, 0x03, 0x4f, 0x04, 0xf1, 0x03, 0xd1, 0x03, 0x60, 0x04, 0x5c, 0x05, 0x9f, 0x05, 0xbd, 0x03, 0x15, 0x02, 0x25, 0x00, 0x53, 0xff, 0x53, 0xff, 0x11, 0xff, 0xf5, 0xfd, 0x6d, 0xfd, 0x43, 0xfe, 0x21, 0xfe, 0xeb, 0xfd, 0xf7, 0xfe, 0x08, 0xff, 0x67, 0xfd, 0x99, 0xfb, 0x71, 0xfa, 0xfd, 0xf9, 0xaa, 0xf9, 0xb9, 0xf9, 0x2d, 0xfa, 0x15, 0xfa, 0xb0, 0xfa, 0xab, 0xfd, 0x52, 0x00, 0xc6, 0x01, 0x4f, 0x03, 0xef, 0x03, 0x8b, 0x04, 0x2e, 0x05, 0x14, 0x05, 0xa2, 0x05, 0x6b, 0x05, 0x7f, 0x04, 0x0f, 0x04, 0xcf, 0x03, 0x5d, 0x02, 0x4c, 0x01, 0x07, 0x01, 0xb2, 0x01, 0x82, 0x01, 0xa9, 0x00, 0xfb, 0x00, 0x32, 0x00, 0x6e, 0xff, 0x17, 0xff, 0xa9, 0xfe, 0x75, 0xfd, 0x6d, 0xfb, 0xc9, 0xf9, 0xfd, 0xf9, 0xfe, 0xf9, 0x16, 0xf9, 0x4c, 0xf8, 0x3d, 0xf8, 0x48, 0xf9, 0xd0, 0xf8, 0x61, 0xf7, 0x99, 0xf8, 0x1a, 0xfb, 0xdd, 0xfc, 0x99, 0xfe, 0x2c, 0x00, 0xf1, 0x00, 0xa2, 0x01, 0x61, 0x03, 0x06, 0x05, 0x0a, 0x07, 0x11, 0x09, 0xbc, 0x0a, 0x41, 0x0b, 0x82, 0x0a, 0xf8, 0x08, 0xbb, 0x07, 0x1a, 0x07, 0x8c, 0x06, 0xfa, 0x05, 0xbe, 0x05, 0x83, 0x04, 0xed, 0x02, 0x90, 0x01, 0xc5, 0xff, 0x67, 0xfe, 0xd9, 0xfc, 0x5d, 0xfb, 0xa0, 0xfa, 0xd4, 0xfa, 0x9d, 0xfb, 0x75, 0xfb, 0x5f, 0xfc, 0x97, 0xfd, 0xc7, 0xfd, 0x3d, 0xfd, 0xe9, 0xfc, 0x8b, 0xfd, 0xed, 0xfd, 0x51, 0xfe, 0x51, 0xff, 0xd5, 0xff, 0xd1, 0xff, 0x81, 0xfe, 0x81, 0xfd, 0x21, 0xfd, 0x65, 0xfd, 0xcb, 0xfd, 0x6d, 0xfe, 0x6e, 0xff, 0x9f, 0xff, 0xcb, 0xff, 0xaa, 0xff, 0x7e, 0xfe, 0xd0, 0xfe, 0xa6, 0x00, 0xc3, 0x01, 0xf0, 0x01, 0x75, 0x02, 0xb7, 0x03, 0x47, 0x05, 0x8e, 0x05, 0xe2, 0x04, 0x6f, 0x03, 0x6d, 0x03, 0x48, 0x04, 0xf4, 0x04, 0x8a, 0x05, 0x56, 0x04, 0x49, 0x02, 0xca, 0xfe, 0x25, 0xfc, 0x29, 0xfb, 0x11, 0xfa, 0x90, 0xf8, 0x42, 0xf8, 0xac, 0xf8, 0xb2, 0xf9, 0x58, 0xfa, 0x12, 0xfa, 0x2e, 0xfa, 0xd1, 0xfa, 0xea, 0xfb, 0x6d, 0xfd, 0xc5, 0xff, 0x69, 0x01, 0x09, 0x02, 0x0b, 0x03, 0x24, 0x04, 0x33, 0x05, 0xea, 0x05, 0xc0, 0x05, 0x78, 0x04, 0x93, 0x02, 0x37, 0x01, 0xe0, 0xff, 0xd5, 0xff, 0xdb, 0xff, 0xb9, 0xff, 0xa5, 0xff, 0x54, 0xff, 0x2f, 0xff, 0x02, 0x00, 0x65, 0x00, 0xb9, 0xff, 0x8b, 0xfe, 0x79, 0xfd, 0xcf, 0xfd, 0xa1, 0xfd, 0x25, 0xfd, 0xa9, 0xfd, 0xbe, 0xfe, 0x69, 0xfe, 0xdb, 0xfd, 0xeb, 0xfd, 0x49, 0xfe, 0xf0, 0xfe, 0x50, 0xff, 0x58, 0xfe, 0x0f, 0xfd, 0x0b, 0xfd, 0x97, 0xfe, 0x00, 0x01, 0xd8, 0x01, 0x51, 0x03, 0x97, 0x04, 0x5b, 0x04, 0x88, 0x04, 0xef, 0x04, 0xeb, 0x03, 0x3d, 0x03, 0x69, 0x02, 0x72, 0x01, 0xf5, 0x00, 0x04, 0x00, 0xcc, 0xff, 0xa5, 0xff, 0x1b, 0xff, 0x5f, 0xfd, 0xb1, 0xfb, 0x32, 0xfb, 0x88, 0xfb, 0xa1, 0xfc, 0xb7, 0xfd, 0x39, 0xfe, 0x0e, 0xff, 0x1d, 0xff, 0xaf, 0xfe, 0x9a, 0xfe, 0x94, 0xfe, 0x14, 0xff, 0x89, 0x00, 0xa9, 0x01, 0x21, 0x02, 0x7d, 0x02, 0xc9, 0x02, 0xcb, 0x03, 0x04, 0x04, 0x9b, 0x03, 0x23, 0x03, 0x17, 0x03, 0x97, 0x02, 0x4e, 0x01, 0x8b, 0x00, 0xc9, 0xff, 0x0e, 0xff, 0xe5, 0xfe, 0xff, 0xfe, 0x99, 0xfe, 0x70, 0xfe, 0x9c, 0xfe, 0x57, 0xfe, 0xd7, 0xfd, 0xf5, 0xfd, 0x90, 0xfe, 0x41, 0xff, 0xf9, 0xff, 0x41, 0x00, 0x04, 0x00, 0x04, 0x00, 0x0c, 0xff, 0x93, 0xfe, 0x62, 0xff, 0x6a, 0x00, 0xc2, 0x00, 0x9d, 0x00, 0x46, 0x00, 0x26, 0x00, 0x8b, 0x00, 0x24, 0x01, 0xeb, 0x01, 0x1e, 0x01, 0xc8, 0xff, 0x9c, 0xff, 0xf3, 0xff, 0x57, 0xff, 0x6a, 0xfe, 0x5d, 0xfe, 0x00, 0xff, 0x60, 0xff, 0xa5, 0xff, 0x74, 0xff, 0xee, 0xfe, 0x4e, 0xfe, 0x55, 0xfe, 0x91, 0xfd, 0xb9, 0xfc, 0x2f, 0xfd, 0x81, 0xfd, 0x1b, 0xfe, 0xc1, 0xfd, 0xe3, 0xfd, 0x12, 0xfe, 0xa1, 0xfd, 0x5e, 0xfe, 0x5d, 0xff, 0x46, 0x00, 0x13, 0x02, 0xd5, 0x02, 0x7d, 0x02, 0x71, 0x03, 0x33, 0x04, 0x78, 0x04, 0x73, 0x04, 0xcb, 0x03, 0x83, 0x02, 0xa1, 0x00, 0xdb, 0xfe, 0xea, 0xfe, 0xaf, 0xfe, 0x28, 0xfe, 0xf1, 0xfe, 0xee, 0xfe, 0x9f, 0xfd, 0x33, 0xfd, 0xa1, 0xfd, 0xc3, 0xfd, 0x40, 0xfe, 0x3f, 0xff, 0x87, 0xff, 0xd2, 0xff, 0x19, 0x01, 0x93, 0x02, 0x9b, 0x03, 0xdf, 0x04, 0xe7, 0x05, 0xff, 0x05, 0xaa, 0x04, 0x11, 0x03, 0xcc, 0x01, 0xce, 0x00, 0x26, 0x00, 0x44, 0x00, 0xcf, 0xff, 0x2d, 0xff, 0xa8, 0xfe, 0x9f, 0xfd, 0xd5, 0xfc, 0xbf, 0xfc, 0xc5, 0xfd, 0xa3, 0xfe, 0x48, 0xfe, 0x91, 0xfd, 0xc9, 0xfd, 0x53, 0xff, 0xca, 0x00, 0x3c, 0x01, 0x51, 0x01, 0xc2, 0x00, 0x21, 0x01, 0xf6, 0x01, 0x49, 0x02, 0xb9, 0x00, 0x2c, 0xff, 0x63, 0xfe, 0x9b, 0xfd, 0x04, 0xfe, 0xf5, 0xfd, 0x3d, 0xfe, 0xf3, 0xfd, 0x99, 0xfd, 0xb1, 0xfd, 0x83, 0xfc, 0xb8, 0xfb, 0x92, 0xfb, 0xf0, 0xfb, 0x01, 0xfc, 0xd8, 0xfb, 0xb3, 0xfc, 0xe7, 0xfd, 0xa5, 0xfe, 0x01, 0x00, 0xb3, 0x00, 0x52, 0x00, 0x52, 0x00, 0x6d, 0x01, 0x13, 0x02, 0x89, 0x02, 0x6b, 0x03, 0x8b, 0x03, 0x77, 0x03, 0x8d, 0x03, 0x10, 0x04, 0x8b, 0x04, 0x83, 0x03, 0x79, 0x01, 0xea, 0xff, 0x5f, 0xff, 0x5c, 0xff, 0xd9, 0xfe, 0x30, 0xff, 0x0b, 0xff, 0xba, 0xfe, 0x17, 0xff, 0xd5, 0xff, 0x53, 0x00, 0x4b, 0x01, 0x5f, 0x03, 0x50, 0x05, 0x87, 0x05, 0xf7, 0x04, 0x2b, 0x05, 0x52, 0x04, 0x43, 0x03, 0xb1, 0x02, 0xc9, 0x01, 0x87, 0x01, 0x5a, 0x01, 0x64, 0x00, 0x42, 0xff, 0xd8, 0xfe, 0x0f, 0xfe, 0xbf, 0xfc, 0x23, 0xfc, 0x21, 0xfb, 0xed, 0xfa, 0x6e, 0xfb, 0x5f, 0xfc, 0x33, 0xfd, 0x5b, 0xfd, 0xf5, 0xfc, 0xf3, 0xfc, 0x29, 0xfc, 0xe5, 0xfb, 0x8b, 0xfc, 0x71, 0xfc, 0x61, 0xfc, 0x77, 0xfc, 0xdd, 0xfc, 0xc5, 0xfc, 0x3b, 0xfc, 0xa7, 0xfc, 0xbb, 0xfd, 0x0c, 0xfe, 0x79, 0xfe, 0xd5, 0xfe, 0xff, 0xfe, 0x80, 0x00, 0x53, 0x02, 0xbb, 0x03, 0xc7, 0x04, 0xff, 0x04, 0x54, 0x05, 0x1f, 0x06, 0xeb, 0x04, 0xad, 0x03, 0x29, 0x03, 0x43, 0x03, 0x8b, 0x03, 0xdd, 0x02, 0x0d, 0x03, 0x11, 0x03, 0x0f, 0x03, 0xc3, 0x02, 0x63, 0x02, 0x5d, 0x02, 0x78, 0x01, 0xc5, 0x00, 0xda, 0xff, 0x96, 0xfe, 0x07, 0xfd, 0xdd, 0xfb, 0x84, 0xfb, 0x91, 0xfb, 0x15, 0xfc, 0xb5, 0xfc, 0xd9, 0xfd, 0xa9, 0xfe, 0xae, 0xfe, 0xcd, 0xfe, 0x7b, 0xff, 0xd8, 0xff, 0x3c, 0xff, 0xb6, 0xff, 0xb2, 0x00, 0x1b, 0x01, 0x43, 0x00, 0x75, 0xfe, 0x37, 0xfd, 0xdf, 0xfc, 0x19, 0xfd, 0xcd, 0xfd, 0x81, 0xfe, 0xd3, 0xfe, 0xc6, 0xff, 0x7a, 0x00, 0x31, 0x01, 0x60, 0x01, 0x4d, 0x02, 0xdf, 0x02, 0x57, 0x02, 0x71, 0x02, 0x59, 0x02, 0x8f, 0x02, 0xfb, 0x02, 0x11, 0x03, 0x6d, 0x02, 0x7c, 0x01, 0xd4, 0x00, 0x11, 0x00, 0x32, 0xff, 0xa5, 0xfe, 0x5b, 0xfe, 0x7b, 0xfe, 0x6d, 0xfe, 0xcb, 0xfd, 0x79, 0xfd, 0x0d, 0xfd, 0xbb, 0xfc, 0x55, 0xfd, 0x83, 0xfd, 0x13, 0xfd, 0xbf, 0xfc, 0xbb, 0xfc, 0x45, 0xfd, 0xf5, 0xfd, 0x24, 0xfe, 0x8e, 0xfe, 0x3c, 0xff, 0xf6, 0xff, 0x6e, 0x00, 0x0a, 0x00, 0x23, 0x00, 0x05, 0x00, 0x8d, 0xff, 0xfa, 0xfe, 0x77, 0xff, 0x59, 0x00, 0x16, 0x01, 0x40, 0x01, 0x4c, 0x01, 0x6d, 0x01, 0x0f, 0x02, 0xd5, 0x02, 0x41, 0x03, 0xdd, 0x03, 0x99, 0x03, 0xbd, 0x03, 0xd7, 0x03, 0x6d, 0x03, 0xa9, 0x03, 0x4d, 0x03, 0x71, 0x02, 0xa0, 0x01, 0x6a, 0x00, 0x48, 0xff, 0x14, 0xff, 0x5d, 0xfe, 0x29, 0xfd, 0x0b, 0xfc, 0x91, 0xfb, 0x54, 0xfb, 0x09, 0xfc, 0x37, 0xfd, 0x12, 0xfe, 0xe8, 0xfe, 0x56, 0xff, 0xb3, 0xff, 0xf5, 0xff, 0xef, 0xff, 0x92, 0x00, 0xfa, 0x01, 0xcf, 0x02, 0xad, 0x02, 0x97, 0x02, 0x81, 0x02, 0x76, 0x01, 0x95, 0x00, 0x46, 0x00, 0x35, 0x00, 0x5e, 0x00, 0xc2, 0xff, 0x9c, 0xff, 0xdd, 0xff, 0xb7, 0xff, 0xe7, 0xfe, 0x6c, 0xfe, 0x6d, 0xfd, 0x3f, 0xfd, 0x57, 0xfd, 0xbb, 0xfd, 0x3f, 0xff, 0x00, 0x00, 0xa9, 0x00, 0xee, 0x00, 0x1d, 0x00, 0x51, 0xff, 0xe5, 0xfe, 0x72, 0xfe, 0xf1, 0xfd, 0x04, 0xfe, 0xa0, 0xfe, 0x66, 0xff, 0xdd, 0xff, 0x19, 0x00, 0x93, 0xff, 0x3f, 0xff, 0x39, 0xff, 0x57, 0xff, 0x92, 0xff, 0x6c, 0xff, 0x6c, 0xff, 0x1a, 0x00, 0x37, 0x00, 0x25, 0x00, 0xcc, 0xff, 0xb3, 0x00, 0x39, 0x02, 0x99, 0x02, 0xd3, 0x02, 0x9b, 0x02, 0x2b, 0x02, 0xc0, 0x01, 0x49, 0x02, 0x4f, 0x02, 0xba, 0x01, 0x7f, 0x01, 0x8e, 0x01, 0x11, 0x02, 0x39, 0x02, 0xa5, 0x02, 0xf5, 0x02, 0x55, 0x02, 0x1c, 0x01, 0x4f, 0x00, 0x44, 0x00, 0x53, 0x00, 0x53, 0x00, 0x52, 0x00, 0xf9, 0xff, 0x60, 0xfe, 0xe7, 0xfc, 0xa9, 0xfc, 0x59, 0xfc, 0xd2, 0xfb, 0x6d, 0xfa, 0x31, 0xfa, 0x91, 0xfa, 0xe5, 0xfa, 0xaa, 0xfb, 0xa3, 0xfc, 0x9b, 0xfd, 0xf9, 0xfd, 0x60, 0xfe, 0xd9, 0xfe, 0xde, 0xfe, 0x6c, 0xfe, 0x7c, 0xfe, 0x6b, 0xff, 0x73, 0x00, 0x54, 0x01, 0x85, 0x01, 0x2b, 0x02, 0xb1, 0x02, 0xaf, 0x02, 0x3f, 0x02, 0x82, 0x01, 0xc4, 0x01, 0x17, 0x02, 0x81, 0x02, 0xe7, 0x02, 0x5f, 0x03, 0xf5, 0x03, 0x07, 0x04, 0x97, 0x03, 0x51, 0x03, 0xb9, 0x02, 0x61, 0x01, 0xdf, 0x00, 0x25, 0x01, 0xfd, 0x00, 0x5f, 0x00, 0xea, 0xff, 0xc3, 0xff, 0xd8, 0xff, 0x13, 0x00, 0x6c, 0xff, 0x69, 0xfe, 0x69, 0xfe, 0x60, 0xfe, 0x31, 0xfe, 0x6f, 0xfe, 0x84, 0xfe, 0x45, 0xfe, 0x09, 0xfe, 0x7f, 0xfd, 0x13, 0xfd, 0x45, 0xfd, 0x06, 0xfe, 0x66, 0xfe, 0xd9, 0xfd, 0xf1, 0xfc, 0xcb, 0xfc, 0x05, 0xfd, 0x49, 0xfd, 0xa5, 0xfd, 0x72, 0xfe, 0xb6, 0xff, 0x25, 0x00, 0x26, 0x00, 0xde, 0xff, 0x8a, 0xff, 0xa5, 0xff, 0x2e, 0x00, 0xd0, 0x00, 0x74, 0x00, 0x04, 0x00, 0x94, 0x00, 0x91, 0x01, 0x33, 0x02, 0x49, 0x02, 0x9f, 0x01, 0xa2, 0x01, 0x17, 0x02, 0xb5, 0x02, 0x35, 0x03, 0x15, 0x03, 0x77, 0x03, 0x95, 0x03, 0x3b, 0x03, 0x47, 0x02, 0xea, 0x01, 0xae, 0x01, 0xd7, 0x00, 0x38, 0x00, 0xc8, 0xff, 0x00, 0x00, 0x20, 0x00, 0xb7, 0xff, 0x30, 0xff, 0xa3, 0xfe, 0x9f, 0xfe, 0x17, 0xff, 0x17, 0xff, 0xa8, 0xfe, 0xfb, 0xfd, 0x7f, 0xfd, 0x3d, 0xfd, 0xd9, 0xfd, 0xe3, 0xfd, 0xff, 0xfd, 0xe7, 0xfd, 0x31, 0xfe, 0xdf, 0xfe, 0xcf, 0xfe, 0x94, 0xfe, 0x55, 0xfe, 0x75, 0xfe, 0x81, 0xfe, 0x5e, 0xfe, 0x9d, 0xfd, 0xb3, 0xfc, 0xe3, 0xfc, 0x8d, 0xfd, 0x34, 0xfe, 0xca, 0xfe, 0x78, 0xff, 0xac, 0x00, 0x01, 0x02, 0xd3, 0x02, 0xcb, 0x03, 0x5b, 0x04, 0x0a, 0x04, 0x58, 0x04, 0x92, 0x04, 0xe3, 0x03, 0x57, 0x03, 0xa5, 0x02, 0xcd, 0x01, 0x49, 0x01, 0x84, 0x01, 0xaf, 0x01, 0x84, 0x01, 0xd0, 0x00, 0x62, 0x00, 0x4d, 0x00, 0x29, 0x00, 0x98, 0xff, 0x50, 0xff, 0xfd, 0xfe, 0x6c, 0xfe, 0x24, 0xfe, 0xeb, 0xfd, 0x75, 0xfd, 0xe9, 0xfc, 0xed, 0xfc, 0x97, 0xfc, 0x4d, 0xfc, 0x0b, 0xfc, 0x23, 0xfc, 0x33, 0xfc, 0x93, 0xfc, 0x4d, 0xfd, 0x75, 0xfd, 0xcf, 0xfd, 0x69, 0xfe, 0x5f, 0xff, 0xd1, 0xff, 0x55, 0x00, 0x83, 0x00, 0x4f, 0x00, 0x95, 0x00, 0x25, 0x01, 0x72, 0x01, 0x72, 0x01, 0xb4, 0x01, 0x1b, 0x02, 0x43, 0x02, 0x57, 0x02, 0x4b, 0x02, 0x33, 0x02, 0x4b, 0x02, 0x1f, 0x02, 0x75, 0x02, 0xe5, 0x02, 0x2b, 0x03, 0x21, 0x03, 0x21, 0x03, 0x41, 0x03, 0x19, 0x03, 0xc5, 0x02, 0x3f, 0x02, 0xc0, 0x01, 0x24, 0x01, 0x7c, 0x00, 0x08, 0x00, 0x7d, 0xff, 0x68, 0xff, 0x98, 0xff, 0xe0, 0xff, 0x17, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xc0, 0xff, 0xd6, 0xfe, 0xd5, 0xfd, 0x85, 0xfd, 0x4b, 0xfd, 0x5d, 0xfd, 0xa9, 0xfd, 0x9d, 0xfd, 0xfb, 0xfc, 0x25, 0xfd, 0x19, 0xfd, 0x0b, 0xfd, 0x33, 0xfd, 0xf9, 0xfc, 0x55, 0xfd, 0x22, 0xfe, 0x23, 0xff, 0xef, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x1d, 0x00, 0x52, 0x00, 0x83, 0x00, 0x7d, 0x00, 0xa7, 0x00, 0xe0, 0x00, 0x55, 0x01, 0x99, 0x01, 0xae, 0x01, 0xe4, 0x01, 0xdf, 0x01, 0xb8, 0x01, 0x9f, 0x01, 0x84, 0x01, 0x71, 0x00, 0x33, 0xff, 0x54, 0xfe, 0xcf, 0xfd, 0xdf, 0xfd, 0xc5, 0xfd, 0xb7, 0xfd, 0xa5, 0xfd, 0x52, 0xfe, 0xe4, 0xfe, 0x4d, 0xff, 0xb6, 0xff, 0xcf, 0xff, 0x4c, 0x00, 0x55, 0x00, 0x4a, 0x00, 0x10, 0x00, 0x05, 0x00, 0x19, 0x00, 0xfe, 0xff, 0xf2, 0xff, 0xad, 0xff, 0x6c, 0xff, 0x68, 0xff, 0x23, 0x00, 0xf5, 0x00, 0xed, 0x01, 0x3d, 0x02, 0xbd, 0x01, 0xee, 0x00, 0x07, 0x00, 0x12, 0xff, 0x8f, 0xfd, 0xc5, 0xfc, 0xe9, 0xfc, 0x01, 0xfd, 0x25, 0xfd, 0x0d, 0xfd, 0x2f, 0xfd, 0xb5, 0xfd, 0xb7, 0xfe, 0xf8, 0xff, 0xfd, 0x00, 0xbe, 0x01, 0x8d, 0x02, 0x83, 0x03, 0x4a, 0x04, 0xc0, 0x04, 0x0f, 0x05, 0xc3, 0x04, 0xeb, 0x03, 0x17, 0x03, 0x8d, 0x02, 0x0b, 0x02, 0xd5, 0x01, 0x28, 0x01, 0x28, 0x00, 0xb9, 0xff, 0xc3, 0xff, 0xae, 0xff, 0x15, 0xff, 0x96, 0xfe, 0xdf, 0xfd, 0x19, 0xfd, 0xd3, 0xfc, 0x67, 0xfd, 0x91, 0xfd, 0xdd, 0xfc, 0x7d, 0xfc, 0xdb, 0xfc, 0x7f, 0xfd, 0x6d, 0xfe, 0x26, 0xff, 0x9f, 0xff, 0x8c, 0x00, 0x46, 0x01, 0x9a, 0x01, 0x69, 0x02, 0x51, 0x03, 0x49, 0x03, 0xcb, 0x02, 0xcf, 0x02, 0xb9, 0x02, 0x6d, 0x02, 0x21, 0x02, 0x01, 0x02, 0xb1, 0x01, 0x1e, 0x01, 0x4a, 0x00, 0xb6, 0xff, 0xad, 0xff, 0x50, 0xff, 0xf1, 0xfe, 0xa9, 0xfe, 0x63, 0xfe, 0x4c, 0xfe, 0x13, 0xfe, 0x4e, 0xfe, 0x0b, 0xff, 0x77, 0xff, 0x3b, 0x00, 0xc8, 0x00, 0xaa, 0x00, 0xc4, 0x00, 0xa3, 0x00, 0x22, 0x00, 0x41, 0x00, 0x31, 0x00, 0xc9, 0xff, 0x56, 0xff, 0xc9, 0xfe, 0x93, 0xfe, 0xfd, 0xfd, 0x2d, 0xfd, 0xc5, 0xfc, 0xb7, 0xfc, 0xc7, 0xfc, 0xfd, 0xfc, 0x25, 0xfd, 0xb7, 0xfd, 0xba, 0xfe, 0x6c, 0xff, 0x20, 0x00, 0x00, 0x01, 0x01, 0x02, 0xd5, 0x02, 0x2f, 0x03, 0xb5, 0x02, 0x83, 0x02, 0xa3, 0x01, 0xb2, 0x00, 0x94, 0x00, 0x98, 0x00, 0x2b, 0x00, 0x48, 0xff, 0xea, 0xfe, 0x5b, 0xfe, 0x69, 0xfd, 0x8d, 0xfc, 0x87, 0xfc, 0xe7, 0xfc, 0x55, 0xfd, 0xeb, 0xfd, 0x61, 0xfe, 0x1b, 0xff, 0x3f, 0xff, 0x1a, 0xff, 0x3c, 0xff, 0x99, 0xff, 0x5b, 0x00, 0x21, 0x01, 0xbb, 0x01, 0xb5, 0x02, 0xad, 0x03, 0xcb, 0x03, 0xbb, 0x03, 0x00, 0x04, 0x7c, 0x04, 0x7c, 0x04, 0x4f, 0x04, 0x9b, 0x03, 0x51, 0x02, 0x96, 0x01, 0xbc, 0x00, 0xf9, 0xff, 0xb7, 0xff, 0xf8, 0xff, 0x5e, 0x00, 0x58, 0x00, 0x5f, 0x00, 0xf9, 0xff, 0x12, 0xff, 0x97, 0xfe, 0xe5, 0xfd, 0x89, 0xfd, 0xa7, 0xfd, 0xaf, 0xfd, 0xd3, 0xfd, 0xd3, 0xfd, 0x34, 0xfe, 0x79, 0xfe, 0x43, 0xfe, 0xe9, 0xfd, 0xbb, 0xfd, 0x3d, 0xfe, 0x78, 0xfe, 0x0f, 0xff, 0xa7, 0xff, 0xc2, 0xff, 0xa7, 0xff, 0xb4, 0xff, 0x50, 0x00, 0x09, 0x01, 0x66, 0x01, 0x76, 0x01, 0xe2, 0x00, 0x7f, 0x00, 0x4c, 0x00, 0xf0, 0xff, 0x7a, 0xff, 0xdc, 0xfe, 0x8e, 0xfe, 0x10, 0xfe, 0x8d, 0xfd, 0x6d, 0xfd, 0x33, 0xfd, 0x61, 0xfd, 0xcd, 0xfd, 0x2d, 0xfe, 0xed, 0xfe, 0xab, 0xff, 0x4f, 0x00, 0xd6, 0x00, 0x5b, 0x01, 0x45, 0x02, 0x13, 0x03, 0xbf, 0x03, 0x03, 0x04, 0xcb, 0x03, 0x33, 0x03, 0x1b, 0x02, 0x4c, 0x01, 0xc7, 0x00, 0x8f, 0x00, 0x82, 0x00, 0x91, 0x00, 0xc1, 0x00, 0xf4, 0x00, 0x85, 0x00, 0x0a, 0x00, 0x78, 0xff, 0x03, 0xff, 0xcc, 0xfe, 0x24, 0xfe, 0x79, 0xfd, 0x1b, 0xfd, 0xa7, 0xfc, 0x1d, 0xfc, 0xc9, 0xfb, 0x03, 0xfc, 0x63, 0xfc, 0xf5, 0xfc, 0xed, 0xfd, 0x93, 0xfe, 0x00, 0xff, 0xb9, 0xff, 0x6d, 0x00, 0xe6, 0x00, 0x4f, 0x01, 0x79, 0x01, 0xe4, 0x01, 0x2d, 0x02, 0x9f, 0x02, 0x69, 0x02, 0x35, 0x02, 0x97, 0x02, 0x43, 0x03, 0xd1, 0x03, 0xf1, 0x03, 0xb9, 0x03, 0x77, 0x03, 0x97, 0x03, 0xcb, 0x03, 0x37, 0x03, 0x93, 0x02, 0x35, 0x02, 0x1c, 0x01, 0x3a, 0x00, 0x5a, 0xff, 0x3f, 0xfe, 0x89, 0xfd, 0x47, 0xfd, 0x21, 0xfd, 0xa1, 0xfc, 0x17, 0xfc, 0xc9, 0xfb, 0x11, 0xfc, 0x7d, 0xfc, 0x71, 0xfc, 0x8f, 0xfc, 0xc5, 0xfc, 0x9b, 0xfd, 0x27, 0xfe, 0xf7, 0xfe, 0x77, 0x00, 0xc6, 0x01, 0x1d, 0x03, 0xd9, 0x03, 0x4c, 0x04, 0xe3, 0x04, 0xfb, 0x04, 0xa7, 0x04, 0x77, 0x04, 0x6c, 0x04, 0xc7, 0x03, 0x87, 0x02, 0xe9, 0x00, 0xc8, 0xff, 0x56, 0xff, 0x36, 0xff, 0x21, 0xff, 0xde, 0xfe, 0x9d, 0xfe, 0x4b, 0xfe, 0xb3, 0xfd, 0x57, 0xfd, 0xa7, 0xfc, 0x23, 0xfc, 0x29, 0xfc, 0xdc, 0xfb, 0xba, 0xfb, 0xe4, 0xfb, 0x11, 0xfc, 0x8b, 0xfc, 0x27, 0xfd, 0xe5, 0xfd, 0x9f, 0xfe, 0xcc, 0xfe, 0xf9, 0xfe, 0xb0, 0xff, 0x11, 0x00, 0x8b, 0x00, 0x12, 0x01, 0x30, 0x01, 0x48, 0x01, 0x43, 0x01, 0x5e, 0x01, 0xb4, 0x01, 0x0f, 0x02, 0x39, 0x02, 0x63, 0x02, 0x1f, 0x02, 0xf6, 0x01, 0xd8, 0x01, 0x7f, 0x01, 0xae, 0x01, 0xcd, 0x01, 0xe7, 0x01, 0xc3, 0x01, 0x96, 0x01, 0x79, 0x01, 0x7e, 0x01, 0x82, 0x01, 0x6a, 0x01, 0x10, 0x01, 0x77, 0x00, 0x58, 0x00, 0x35, 0x00, 0x04, 0x00, 0x9b, 0xff, 0x53, 0xff, 0xf3, 0xfe, 0xf5, 0xfd, 0xf1, 0xfc, 0x65, 0xfc, 0x0b, 0xfc, 0x70, 0xfb, 0xf6, 0xfa, 0xd9, 0xfa, 0xf4, 0xfa, 0x29, 0xfb, 0x58, 0xfb, 0xbd, 0xfb, 0x8d, 0xfc, 0x71, 0xfd, 0x13, 0xfe, 0xd2, 0xfe, 0x8a, 0xff, 0x07, 0x00, 0x8c, 0x00, 0x43, 0x01, 0xed, 0x01, 0x93, 0x02, 0x2f, 0x03, 0x8f, 0x03, 0xef, 0x03, 0x34, 0x04, 0x07, 0x04, 0xc7, 0x03, 0xa1, 0x03, 0x85, 0x03, 0x24, 0x04, 0xc7, 0x04, 0xa7, 0x04, 0x7b, 0x04, 0xf7, 0x03, 0x55, 0x03, 0x9f, 0x02, 0x29, 0x02, 0x1d, 0x02, 0xbb, 0x01, 0xec, 0x00, 0x5b, 0x00, 0xda, 0xff, 0x2c, 0xff, 0xc6, 0xfe, 0x2b, 0xfe, 0x6d, 0xfd, 0x9d, 0xfc, 0x47, 0xfc, 0x1d, 0xfc, 0xc4, 0xfb, 0xbd, 0xfb, 0xb4, 0xfb, 0xe6, 0xfb, 0x0b, 0xfc, 0x65, 0xfc, 0xa1, 0xfc, 0xed, 0xfc, 0x97, 0xfd, 0x12, 0xfe, 0x66, 0xfe, 0xfc, 0xfe, 0x6b, 0xff, 0x81, 0xff, 0xf8, 0xff, 0x5f, 0x00, 0xb5, 0x00, 0x46, 0x01, 0xed, 0x01, 0x47, 0x02, 0x85, 0x02, 0xd7, 0x02, 0xff, 0x02, 0x23, 0x03, 0x67, 0x03, 0x59, 0x03, 0x4b, 0x03, 0x59, 0x03, 0xa7, 0x03, 0xa9, 0x03, 0x21, 0x03, 0x61, 0x02, 0x6d, 0x01, 0xe2, 0x00, 0x2f, 0x00, 0x2d, 0xff, 0x85, 0xfe, 0xf7, 0xfd, 0xa1, 0xfd, 0x3a, 0xfe, 0xe1, 0xfe, 0xff, 0xfe, 0x11, 0xff, 0x30, 0xff, 0x23, 0xff, 0x0b, 0xff, 0xc3, 0xfe, 0x58, 0xfe, 0x0d, 0xfe, 0xdf, 0xfd, 0xe3, 0xfd, 0xfd, 0xfd, 0xf9, 0xfd, 0xdf, 0xfd, 0xd3, 0xfd, 0xf1, 0xfd, 0x18, 0xfe, 0x12, 0xfe, 0xe5, 0xfd, 0xd5, 0xfd, 0x39, 0xfe, 0xbe, 0xfe, 0xae, 0xfe, 0x06, 0xff, 0x93, 0xff, 0x32, 0x00, 0xc5, 0x00, 0x1e, 0x01, 0x6f, 0x01, 0x88, 0x01, 0x34, 0x01, 0xeb, 0x00, 0xc8, 0x00, 0xc2, 0x00, 0x00, 0x01, 0xf2, 0x00, 0xa6, 0x00, 0xd4, 0xff, 0x02, 0xff, 0xae, 0xfe, 0xd5, 0xfe, 0xd0, 0xfe, 0xc1, 0xfe, 0xd6, 0xfe, 0x84, 0xfe, 0x46, 0xfe, 0x1f, 0xfe, 0x12, 0xfe, 0x91, 0xfe, 0x15, 0xff, 0xb1, 0xff, 0x73, 0x00, 0x2e, 0x01, 0xc6, 0x01, 0x45, 0x02, 0xc3, 0x02, 0x21, 0x03, 0x49, 0x03, 0x77, 0x03, 0x5f, 0x03, 0x2f, 0x03, 0x27, 0x03, 0xbb, 0x02, 0x21, 0x02, 0x78, 0x01, 0xc7, 0x00, 0x29, 0x00, 0xd5, 0xff, 0x8a, 0xff, 0x57, 0xff, 0x2f, 0xff, 0x2c, 0xff, 0x23, 0xff, 0x71, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xbc, 0xff, 0xe1, 0xff, 0x32, 0x00, 0x0a, 0x00, 0x9f, 0xff, 0xb3, 0xff, 0x00, 0x00, 0x4f, 0x00, 0xcb, 0x00, 0x49, 0x01, 0x30, 0x01, 0xd1, 0x00, 0x73, 0x00, 0xfc, 0xff, 0x81, 0xff, 0x11, 0xff, 0xb8, 0xfe, 0x58, 0xfe, 0x2e, 0xfe, 0xd5, 0xfd, 0xa9, 0xfd, 0x6d, 0xfd, 0x39, 0xfd, 0x5d, 0xfd, 0x71, 0xfd, 0x49, 0xfd, 0x13, 0xfd, 0x15, 0xfd, 0x5b, 0xfd, 0x0d, 0xfe, 0x76, 0xfe, 0x94, 0xfe, 0xa8, 0xfe, 0xd8, 0xfe, 0x21, 0xff, 0x5c, 0xff, 0xbd, 0xff, 0x77, 0x00, 0x43, 0x01, 0xbe, 0x01, 0x29, 0x02, 0x5b, 0x02, 0x57, 0x02, 0x15, 0x02, 0x1b, 0x02, 0x7b, 0x02, 0x2b, 0x03, 0x8f, 0x03, 0x8d, 0x03, 0xa9, 0x03, 0xa7, 0x03, 0x29, 0x03, 0xb9, 0x02, 0x35, 0x02, 0xaf, 0x01, 0x06, 0x01, 0x59, 0x00, 0xed, 0xff, 0x84, 0xff, 0x47, 0xff, 0x06, 0xff, 0xa6, 0xfe, 0x5e, 0xfe, 0x1e, 0xfe, 0xa5, 0xfd, 0x4d, 0xfd, 0x03, 0xfd, 0xef, 0xfc, 0xdb, 0xfc, 0xdb, 0xfc, 0x4f, 0xfd, 0xc9, 0xfd, 0x34, 0xfe, 0x78, 0xfe, 0x87, 0xfe, 0xbd, 0xfe, 0x09, 0xff, 0x6c, 0xff, 0xc0, 0xff, 0x25, 0x00, 0xa0, 0x00, 0x94, 0x00, 0xd3, 0x00, 0x5b, 0x01, 0xf0, 0x01, 0xf3, 0x01, 0xab, 0x01, 0xc3, 0x01, 0xde, 0x01, 0xa8, 0x01, 0x79, 0x01, 0x28, 0x01, 0xee, 0x00, 0xb5, 0x00, 0x6d, 0x00, 0x82, 0x00, 0x73, 0x00, 0x52, 0x00, 0x6b, 0x00, 0xe2, 0x00, 0x46, 0x01, 0x8b, 0x01, 0xae, 0x01, 0x3f, 0x01, 0xef, 0x00, 0xb0, 0x00, 0x7c, 0x00, 0x73, 0x00, 0x95, 0x00, 0xa6, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x71, 0xff, 0x32, 0xff, 0x62, 0xff, 0xa1, 0xff, 0xb6, 0xff, 0x92, 0xff, 0x18, 0xff, 0xb5, 0xfe, 0x70, 0xfe, 0x40, 0xfe, 0x2a, 0xfe, 0x19, 0xfe, 0xe1, 0xfd, 0xf7, 0xfd, 0x16, 0xfe, 0x24, 0xfe, 0x4b, 0xfe, 0x64, 0xfe, 0x9d, 0xfe, 0x1b, 0xff, 0xb3, 0xff, 0xe0, 0xff, 0xcc, 0xff, 0xc0, 0xff, 0xd1, 0xff, 0x26, 0x00, 0x7f, 0x00, 0xad, 0x00, 0xda, 0x00, 0xbb, 0x00, 0x77, 0x00, 0xc5, 0x00, 0x28, 0x01, 0x1e, 0x01, 0x63, 0x01, 0xca, 0x01, 0x0f, 0x02, 0x15, 0x02, 0xd8, 0x01, 0x9c, 0x01, 0x55, 0x01, 0x27, 0x01, 0xb6, 0x00, 0x4d, 0x00, 0xaa, 0xff, 0x41, 0xff, 0x12, 0xff, 0xc7, 0xfe, 0x5a, 0xfe, 0x0d, 0xfe, 0xdd, 0xfd, 0xd9, 0xfd, 0xfd, 0xfd, 0xed, 0xfd, 0xd3, 0xfd, 0xc9, 0xfd, 0xfd, 0xfd, 0x16, 0xfe, 0x40, 0xfe, 0xae, 0xfe, 0x24, 0xff, 0x84, 0xff, 0xd4, 0xff, 0x14, 0x00, 0x88, 0x00, 0x45, 0x01, 0xd0, 0x01, 0xc7, 0x01, 0x46, 0x01, 0xa7, 0x00, 0x5b, 0x00, 0x4f, 0x00, 0x3e, 0x00, 0x64, 0x00, 0x26, 0x00, 0xe3, 0xff, 0x05, 0x00, 0x5e, 0x00, 0xda, 0x00, 0x4b, 0x01, 0xb8, 0x01, 0xa9, 0x01, 0x8e, 0x01, 0x8d, 0x01, 0x5d, 0x01, 0x25, 0x01, 0xe9, 0x00, 0x04, 0x01, 0x1f, 0x01, 0x3f, 0x01, 0x58, 0x01, 0xd0, 0x00, 0x41, 0x00, 0xb6, 0xff, 0x4a, 0xff, 0x26, 0xff, 0x18, 0xff, 0xfc, 0xfe, 0x90, 0xfe, 0x3c, 0xfe, 0x76, 0xfe, 0x9c, 0xfe, 0x7f, 0xfe, 0x6a, 0xfe, 0x8b, 0xfe, 0x90, 0xfe, 0x82, 0xfe, 0xc4, 0xfe, 0xb4, 0xfe, 0x90, 0xfe, 0x5e, 0xfe, 0x69, 0xfe, 0xbb, 0xfe, 0x00, 0xff, 0x51, 0xff, 0xb7, 0xff, 0x08, 0x00, 0x31, 0x00, 0x55, 0x00, 0xad, 0x00, 0x18, 0x01, 0x70, 0x01, 0x0d, 0x02, 0x89, 0x02, 0xb1, 0x02, 0x93, 0x02, 0x47, 0x02, 0xf3, 0x01, 0xa3, 0x01, 0x3d, 0x01, 0xdc, 0x00, 0x94, 0x00, 0x58, 0x00, 0x2b, 0x00, 0xf9, 0xff, 0xdb, 0xff, 0xd5, 0xff, 0x36, 0xff, 0xe2, 0xfe, 0xf6, 0xfe, 0x9d, 0xfe, 0x4f, 0xfe, 0x61, 0xfe, 0x05, 0xff, 0xc9, 0xff, 0x5e, 0x00, 0xc2, 0x00, 0x36, 0x01, 0x75, 0x01, 0x91, 0x01, 0x6f, 0x01, 0x0f, 0x01, 0xac, 0x00, 0x71, 0x00, 0x3a, 0x00, 0xc5, 0xff, 0x6f, 0xff, 0x6f, 0xff, 0x9c, 0xff, 0x93, 0xff, 0x5a, 0xff, 0x50, 0xff, 0x50, 0xff, 0x44, 0xff, 0x27, 0xff, 0x00, 0xff, 0x0f, 0xff, 0x21, 0xff, 0x4e, 0xff, 0x92, 0xff, 0x0b, 0x00, 0x74, 0x00, 0xb3, 0x00, 0xad, 0x00, 0x83, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x43, 0x00, 0x0a, 0x00, 0x34, 0x00, 0x9a, 0x00, 0xac, 0x00, 0xa0, 0x00, 0xb5, 0x00, 0xe8, 0x00, 0xd0, 0x00, 0xaa, 0x00, 0x86, 0x00, 0x62, 0x00, 0x50, 0x00, 0x19, 0x00, 0xd4, 0xff, 0x4e, 0xff, 0xd6, 0xfe, 0x64, 0xfe, 0xf7, 0xfd, 0xc9, 0xfd, 0x87, 0xfd, 0x3f, 0xfd, 0x6d, 0xfd, 0xd3, 0xfd, 0x0a, 0xfe, 0x5d, 0xfe, 0x99, 0xfe, 0x0f, 0xff, 0xa5, 0xff, 0x2b, 0x00, 0x79, 0x00, 0x8c, 0x00, 0x67, 0x00, 0xcb, 0xff, 0x53, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x50, 0xff, 0x8c, 0xff, 0xc8, 0xff, 0xce, 0xff, 0x0e, 0x00, 0x9b, 0x00, 0x13, 0x01, 0x9a, 0x01, 0x15, 0x02, 0x89, 0x02, 0xa3, 0x02, 0x6d, 0x02, 0x2f, 0x02, 0xd2, 0x01, 0x37, 0x01, 0xb8, 0x00, 0x31, 0x00, 0xf2, 0xff, 0xf9, 0xff, 0xef, 0xff, 0x04, 0x00, 0xf9, 0xff, 0x0b, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x19, 0x00, 0xd8, 0xff, 0x8c, 0xff, 0x41, 0xff, 0x30, 0xff, 0x5f, 0xff, 0x75, 0xff, 0xc5, 0xff, 0x2c, 0x00, 0x4f, 0x00, 0x71, 0x00, 0x7c, 0x00, 0x68, 0x00, 0x55, 0x00, 0x38, 0x00, 0x26, 0x00, 0x5e, 0x00, 0x7a, 0x00, 0x61, 0x00, 0x7c, 0x00, 0xcb, 0x00, 0xe9, 0x00, 0xd7, 0x00, 0xc8, 0x00, 0x6b, 0x00, 0x1a, 0x00, 0xcc, 0xff, 0x60, 0xff, 0xea, 0xfe, 0x87, 0xfe, 0x6c, 0xfe, 0x7e, 0xfe, 0x9a, 0xfe, 0xd8, 0xfe, 0x23, 0xff, 0x39, 0xff, 0x15, 0xff, 0xc6, 0xfe, 0x88, 0xfe, 0x21, 0xfe, 0xa9, 0xfd, 0x8b, 0xfd, 0x55, 0xfd, 0x31, 0xfd, 0x3d, 0xfd, 0x73, 0xfd, 0xeb, 0xfd, 0x99, 0xfe, 0x87, 0xff, 0x86, 0x00, 0x55, 0x01, 0x29, 0x02, 0xef, 0x02, 0x83, 0x03, 0xa9, 0x03, 0x9d, 0x03, 0x99, 0x03, 0x5d, 0x03, 0xed, 0x02, 0x8d, 0x02, 0x5d, 0x02, 0x57, 0x02, 0x0b, 0x02, 0xd6, 0x01, 0xba, 0x01, 0x79, 0x01, 0x76, 0x01, 0x54, 0x01, 0xfd, 0x00, 0x7a, 0x00, 0xef, 0xff, 0x45, 0xff, 0xcf, 0xfe, 0x87, 0xfe, 0x25, 0xfe, 0x1f, 0xfe, 0x3c, 0xfe, 0x1f, 0xfe, 0xe1, 0xfd, 0x6d, 0xfd, 0x45, 0xfd, 0x2b, 0xfd, 0xff, 0xfc, 0x49, 0xfd, 0xd1, 0xfd, 0x6a, 0xfe, 0x21, 0xff, 0xe9, 0xff, 0x79, 0x00, 0xe2, 0x00, 0x57, 0x01, 0xc7, 0x01, 0xe8, 0x01, 0x07, 0x02, 0x1b, 0x02, 0xf9, 0x01, 0x7f, 0x01, 0xf4, 0x00, 0x7d, 0x00, 0x13, 0x00, 0xce, 0xff, 0x92, 0xff, 0x65, 0xff, 0x5f, 0xff, 0x84, 0xff, 0x89, 0xff, 0x7b, 0xff, 0x9b, 0xff, 0xb4, 0xff, 0xa8, 0xff, 0x5f, 0xff, 0x02, 0xff, 0x0f, 0xff, 0x36, 0xff, 0x59, 0xff, 0x8d, 0xff, 0xd7, 0xff, 0x20, 0x00, 0x3e, 0x00, 0x46, 0x00, 0x83, 0x00, 0xc1, 0x00, 0xf8, 0x00, 0x49, 0x01, 0xd0, 0x01, 0x63, 0x02, 0x9f, 0x02, 0x83, 0x02, 0x5f, 0x02, 0x31, 0x02, 0xfa, 0x01, 0xba, 0x01, 0x5b, 0x01, 0x0d, 0x01, 0xbf, 0x00, 0x38, 0x00, 0x95, 0xff, 0x17, 0xff, 0x88, 0xfe, 0x16, 0xfe, 0xd5, 0xfd, 0x77, 0xfd, 0xef, 0xfc, 0x8f, 0xfc, 0x75, 0xfc, 0x6b, 0xfc, 0x77, 0xfc, 0x69, 0xfc, 0x55, 0xfc, 0xb5, 0xfc, 0x25, 0xfd, 0xa9, 0xfd, 0x2a, 0xfe, 0x93, 0xfe, 0xf1, 0xfe, 0x74, 0xff, 0xe6, 0xff, 0x22, 0x00, 0x7c, 0x00, 0xe2, 0x00, 0x6d, 0x01, 0x2d, 0x02, 0xb5, 0x02, 0xed, 0x02, 0x2f, 0x03, 0xdb, 0x03, 0x9c, 0x04, 0x2b, 0x05, 0xc8, 0x05, 0x13, 0x06, 0x17, 0x06, 0xb0, 0x05, 0x33, 0x05, 0x8b, 0x04, 0xff, 0x03, 0xc3, 0x03, 0x25, 0x03, 0x2d, 0x02, 0xd9, 0x00, 0x80, 0xff, 0x45, 0xfe, 0x41, 0xfd, 0x6d, 0xfc, 0xd5, 0xfb, 0x75, 0xfb, 0x12, 0xfb, 0xf4, 0xfa, 0x15, 0xfb, 0x6d, 0xfb, 0xd2, 0xfb, 0xd9, 0xfb, 0xcd, 0xfb, 0xc2, 0xfb, 0xd8, 0xfb, 0x13, 0xfc, 0x75, 0xfc, 0xf3, 0xfc, 0x2d, 0xfd, 0x75, 0xfd, 0xdf, 0xfd, 0x69, 0xfe, 0xf6, 0xfe, 0x74, 0xff, 0x02, 0x00, 0x82, 0x00, 0x21, 0x01, 0x8b, 0x01, 0xfa, 0x01, 0xa5, 0x02, 0x31, 0x03, 0x91, 0x03, 0xbd, 0x03, 0x1f, 0x04, 0x8b, 0x04, 0xb8, 0x04, 0x67, 0x04, 0xe3, 0x03, 0x5f, 0x03, 0xe3, 0x02, 0x15, 0x02, 0x3c, 0x01, 0xca, 0x00, 0x7a, 0x00, 0xf9, 0xff, 0xad, 0xff, 0x72, 0xff, 0x4d, 0xff, 0x3c, 0xff, 0x12, 0xff, 0xc3, 0xfe, 0x52, 0xfe, 0x0c, 0xfe, 0xc1, 0xfd, 0x91, 0xfd, 0xad, 0xfd, 0x04, 0xfe, 0x5d, 0xfe, 0x73, 0xfe, 0x90, 0xfe, 0xb4, 0xfe, 0xba, 0xfe, 0xca, 0xfe, 0xee, 0xfe, 0x29, 0xff, 0x83, 0xff, 0xbd, 0xff, 0xec, 0xff, 0x08, 0x00, 0xfb, 0xff, 0xb9, 0xff, 0x72, 0xff, 0x2f, 0xff, 0xd9, 0xfe, 0xca, 0xfe, 0xc9, 0xfe, 0xfd, 0xfe, 0x5a, 0xff, 0xbf, 0xff, 0x29, 0x00, 0x8c, 0x00, 0x22, 0x01, 0xbe, 0x01, 0x33, 0x02, 0x99, 0x02, 0xbb, 0x02, 0xd7, 0x02, 0xe9, 0x02, 0xc3, 0x02, 0xb1, 0x02, 0xbf, 0x02, 0x77, 0x02, 0x03, 0x02, 0x7c, 0x01, 0xd9, 0x00, 0x53, 0x00, 0xe3, 0xff, 0x65, 0xff, 0xdc, 0xfe, 0x64, 0xfe, 0x10, 0xfe, 0xeb, 0xfd, 0x15, 0xfe, 0x33, 0xfe, 0x09, 0xfe, 0xb5, 0xfd, 0x71, 0xfd, 0x73, 0xfd, 0x89, 0xfd, 0xbd, 0xfd, 0x04, 0xfe, 0x16, 0xfe, 0x19, 0xfe, 0x5d, 0xfe, 0x90, 0xfe, 0xa5, 0xfe, 0xe2, 0xfe, 0x20, 0xff, 0x86, 0xff, 0xcc, 0xff, 0xe4, 0xff, 0x16, 0x00, 0x55, 0x00, 0x95, 0x00, 0xd1, 0x00, 0xf4, 0x00, 0x07, 0x01, 0x1f, 0x01, 0x25, 0x01, 0xf2, 0x00, 0xc8, 0x00, 0xb3, 0x00, 0xb9, 0x00, 0xf4, 0x00, 0xfe, 0x00, 0xe9, 0x00, 0xd1, 0x00, 0xe6, 0x00, 0xd7, 0x00, 0x88, 0x00, 0x65, 0x00, 0x23, 0x00, 0xf3, 0xff, 0xec, 0xff, 0xb7, 0xff, 0x7a, 0xff, 0x42, 0xff, 0x0e, 0xff, 0x0f, 0xff, 0x23, 0xff, 0x54, 0xff, 0x77, 0xff, 0xae, 0xff, 0xed, 0xff, 0x04, 0x00, 0x0a, 0x00, 0xe9, 0xff, 0xd1, 0xff, 0xc9, 0xff, 0x9e, 0xff, 0x87, 0xff, 0xa5, 0xff, 0x04, 0x00, 0x86, 0x00, 0x30, 0x01, 0xee, 0x01, 0xad, 0x02, 0x2d, 0x03, 0x6d, 0x03, 0xbb, 0x03, 0xe7, 0x03, 0xbf, 0x03, 0x2d, 0x03, 0xb1, 0x02, 0x63, 0x02, 0xd0, 0x01, 0x0c, 0x01, 0x6d, 0x00, 0xe4, 0xff, 0x54, 0xff, 0xdf, 0xfe, 0x79, 0xfe, 0x25, 0xfe, 0x01, 0xfe, 0x01, 0xfe, 0x24, 0xfe, 0x4e, 0xfe, 0x87, 0xfe, 0xe1, 0xfe, 0x2a, 0xff, 0x08, 0xff, 0xba, 0xfe, 0x45, 0xfe, 0xcd, 0xfd, 0x6b, 0xfd, 0x1f, 0xfd, 0x1b, 0xfd, 0x37, 0xfd, 0x9d, 0xfd, 0x37, 0xfe, 0xa5, 0xfe, 0xe2, 0xfe, 0x51, 0xff, 0xa5, 0xff, 0xc6, 0xff, 0xbf, 0xff, 0xaa, 0xff, 0x72, 0xff, 0x48, 0xff, 0x38, 0xff, 0x42, 0xff, 0x90, 0xff, 0xfb, 0xff, 0x79, 0x00, 0x12, 0x01, 0xd0, 0x01, 0xb3, 0x02, 0x67, 0x03, 0xc3, 0x03, 0xf1, 0x03, 0xad, 0x03, 0x39, 0x03, 0xc3, 0x02, 0x57, 0x02, 0xe7, 0x01, 0x6f, 0x01, 0x13, 0x01, 0xcb, 0x00, 0x4d, 0x00, 0xae, 0xff, 0x2c, 0xff, 0xf4, 0xfe, 0xc6, 0xfe, 0x7b, 0xfe, 0x64, 0xfe, 0x61, 0xfe, 0x63, 0xfe, 0xa5, 0xfe, 0xf7, 0xfe, 0x42, 0xff, 0x7e, 0xff, 0xba, 0xff, 0xf6, 0xff, 0xef, 0xff, 0xc9, 0xff, 0xb0, 0xff, 0x71, 0xff, 0x08, 0xff, 0xe5, 0xfe, 0xdf, 0xfe, 0xcc, 0xfe, 0xc0, 0xfe, 0xb7, 0xfe, 0xdf, 0xfe, 0x12, 0xff, 0x83, 0xff, 0xdd, 0xff, 0xe4, 0xff, 0xf8, 0xff, 0x1a, 0x00, 0x1a, 0x00, 0x3a, 0x00, 0x85, 0x00, 0xb3, 0x00, 0xdf, 0x00, 0xf2, 0x00, 0xd1, 0x00, 0x8f, 0x00, 0x3b, 0x00, 0xec, 0xff, 0xe1, 0xff, 0x0a, 0x00, 0x25, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x11, 0x00, 0xea, 0xff, 0xb4, 0xff, 0xa8, 0xff, 0xb4, 0xff, 0xb1, 0xff, 0xc3, 0xff, 0xad, 0xff, 0x59, 0xff, 0x27, 0xff, 0x44, 0xff, 0x57, 0xff, 0x29, 0xff, 0x12, 0xff, 0x32, 0xff, 0x41, 0xff, 0x48, 0xff, 0x92, 0xff, 0x17, 0x00, 0x9e, 0x00, 0x28, 0x01, 0x90, 0x01, 0xdc, 0x01, 0xbe, 0x01, 0x84, 0x01, 0x3c, 0x01, 0xd1, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0xa1, 0x00, 0x8b, 0x00, 0x49, 0x00, 0xf5, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xf3, 0xff, 0x13, 0x00, 0x55, 0x00, 0x92, 0x00, 0xa1, 0x00, 0xb9, 0x00, 0xc8, 0x00, 0xcb, 0x00, 0xa7, 0x00, 0x59, 0x00, 0xf3, 0xff, 0x81, 0xff, 0x1e, 0xff, 0xdc, 0xfe, 0xba, 0xfe, 0x8e, 0xfe, 0x42, 0xfe, 0x1c, 0xfe, 0x06, 0xfe, 0xe9, 0xfd, 0xd3, 0xfd, 0xbd, 0xfd, 0xc7, 0xfd, 0xf7, 0xfd, 0x4c, 0xfe, 0x99, 0xfe, 0x94, 0xfe, 0xc6, 0xfe, 0x36, 0xff, 0xb3, 0xff, 0x4c, 0x00, 0xf4, 0x00, 0xa9, 0x01, 0x15, 0x02, 0x53, 0x02, 0x43, 0x02, 0x21, 0x02, 0xf1, 0x01, 0xc3, 0x01, 0xc6, 0x01, 0xae, 0x01, 0x5b, 0x01, 0x00, 0x01, 0xb2, 0x00, 0x6d, 0x00, 0x34, 0x00, 0xf8, 0xff, 0x98, 0xff, 0x68, 0xff, 0x42, 0xff, 0x26, 0xff, 0x42, 0xff, 0x6e, 0xff, 0x96, 0xff, 0xba, 0xff, 0xe7, 0xff, 0x5c, 0x00, 0x06, 0x01, 0x6f, 0x01, 0x99, 0x01, 0x67, 0x01, 0xfe, 0x00, 0x9b, 0x00, 0x43, 0x00, 0x02, 0x00, 0xcb, 0xff, 0x6e, 0xff, 0xf3, 0xfe, 0x7e, 0xfe, 0x1e, 0xfe, 0xe5, 0xfd, 0xc7, 0xfd, 0xc5, 0xfd, 0x07, 0xfe, 0x66, 0xfe, 0xd0, 0xfe, 0x21, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x81, 0xff, 0xec, 0xff, 0x26, 0x00, 0x94, 0x00, 0x07, 0x01, 0x78, 0x01, 0x8e, 0x01, 0xa2, 0x01, 0x99, 0x01, 0x40, 0x01, 0xf1, 0x00, 0xc2, 0x00, 0xdd, 0x00, 0xf7, 0x00, 0xe0, 0x00, 0x71, 0x00, 0x3a, 0x00, 0x26, 0x00, 0x05, 0x00, 0x20, 0x00, 0x2e, 0x00, 0x46, 0x00, 0x4c, 0x00, 0x37, 0x00, 0x44, 0x00, 0x4c, 0x00, 0x2e, 0x00, 0xfb, 0xff, 0xd1, 0xff, 0xe0, 0xff, 0x1d, 0x00, 0x52, 0x00, 0x56, 0x00, 0x25, 0x00, 0xec, 0xff, 0xae, 0xff, 0x9e, 0xff, 0xcb, 0xff, 0xd7, 0xff, 0xad, 0xff, 0x68, 0xff, 0x1e, 0xff, 0xfa, 0xfe, 0x02, 0xff, 0x30, 0xff, 0x78, 0xff, 0xda, 0xff, 0x41, 0x00, 0x5e, 0x00, 0x1f, 0x00, 0xd4, 0xff, 0x90, 0xff, 0x6e, 0xff, 0x5c, 0xff, 0x57, 0xff, 0x78, 0xff, 0xab, 0xff, 0xef, 0xff, 0x2c, 0x00, 0x6b, 0x00, 0xca, 0x00, 0x12, 0x01, 0x27, 0x01, 0x04, 0x01, 0xbf, 0x00, 0x74, 0x00, 0x37, 0x00, 0x26, 0x00, 0x46, 0x00, 0x62, 0x00, 0x4f, 0x00, 0x70, 0x00, 0x92, 0x00, 0xb2, 0x00, 0x22, 0x01, 0x72, 0x01, 0x67, 0x01, 0x34, 0x01, 0x09, 0x01, 0xd9, 0x00, 0xb6, 0x00, 0x64, 0x00, 0xfe, 0xff, 0xb1, 0xff, 0x41, 0xff, 0xdc, 0xfe, 0xba, 0xfe, 0xd3, 0xfe, 0xea, 0xfe, 0xeb, 0xfe, 0xee, 0xfe, 0xde, 0xfe, 0xcd, 0xfe, 0xaf, 0xfe, 0xa3, 0xfe, 0x9d, 0xfe, 0xa8, 0xfe, 0xa5, 0xfe, 0xcf, 0xfe, 0xfa, 0xfe, 0x2a, 0xff, 0x5c, 0xff, 0x7a, 0xff, 0xb6, 0xff, 0xbf, 0xff, 0x9c, 0xff, 0x72, 0xff, 0x7a, 0xff, 0x8c, 0xff, 0x92, 0xff, 0xa8, 0xff, 0xcc, 0xff, 0x04, 0x00, 0x6b, 0x00, 0xbf, 0x00, 0x18, 0x01, 0x8b, 0x01, 0x03, 0x02, 0x83, 0x02, 0xf7, 0x02, 0x45, 0x03, 0x59, 0x03, 0x35, 0x03, 0x01, 0x03, 0xc5, 0x02, 0x6d, 0x02, 0x25, 0x02, 0xb2, 0x01, 0x1e, 0x01, 0x8c, 0x00, 0xbc, 0xff, 0xca, 0xfe, 0x13, 0xfe, 0x8d, 0xfd, 0x0d, 0xfd, 0xb1, 0xfc, 0x99, 0xfc, 0x91, 0xfc, 0x8f, 0xfc, 0x97, 0xfc, 0xc1, 0xfc, 0xf9, 0xfc, 0x1f, 0xfd, 0x9d, 0xfd, 0x42, 0xfe, 0xe8, 0xfe, 0x87, 0xff, 0x2b, 0x00, 0xc5, 0x00, 0x63, 0x01, 0xe1, 0x01, 0x2d, 0x02, 0x6d, 0x02, 0x3d, 0x02, 0xcf, 0x01, 0x6f, 0x01, 0x16, 0x01, 0xce, 0x00, 0xa7, 0x00, 0xb2, 0x00, 0xe8, 0x00, 0x43, 0x01, 0x8d, 0x01, 0x93, 0x01, 0x66, 0x01, 0x4b, 0x01, 0x0f, 0x01, 0xd0, 0x00, 0xbc, 0x00, 0xc5, 0x00, 0xac, 0x00, 0x7d, 0x00, 0x32, 0x00, 0xbf, 0xff, 0x5f, 0xff, 0x1b, 0xff, 0x29, 0xff, 0x5d, 0xff, 0x99, 0xff, 0xad, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xb4, 0xff, 0xc0, 0xff, 0xd8, 0xff, 0xf3, 0xff, 0xc9, 0xff, 0x87, 0xff, 0x41, 0xff, 0x2d, 0xff, 0x36, 0xff, 0x30, 0xff, 0x51, 0xff, 0x41, 0xff, 0x42, 0xff, 0x6f, 0xff, 0x48, 0xff, 0x1e, 0xff, 0x1a, 0xff, 0x44, 0xff, 0x95, 0xff, 0xf2, 0xff, 0x3a, 0x00, 0x52, 0x00, 0x47, 0x00, 0x5e, 0x00, 0x70, 0x00, 0x83, 0x00, 0xa4, 0x00, 0x94, 0x00, 0x64, 0x00, 0x32, 0x00, 0x1d, 0x00, 0x17, 0x00, 0x19, 0x00, 0x10, 0x00, 0x02, 0x00, 0xe3, 0xff, 0xa4, 0xff, 0x92, 0xff, 0x89, 0xff, 0x38, 0xff, 0xfd, 0xfe, 0xcc, 0xfe, 0x84, 0xfe, 0x4e, 0xfe, 0x67, 0xfe, 0x9a, 0xfe, 0xd8, 0xfe, 0x18, 0xff, 0x51, 0xff, 0x80, 0xff, 0x8a, 0xff, 0xbc, 0xff, 0xfe, 0xff, 0x4c, 0x00, 0x3b, 0x00, 0x1f, 0x00, 0x37, 0x00, 0x64, 0x00, 0x7f, 0x00, 0x80, 0x00, 0x7c, 0x00, 0x5e, 0x00, 0x7a, 0x00, 0xe0, 0x00, 0x57, 0x01, 0xbb, 0x01, 0x13, 0x02, 0x7d, 0x02, 0x9f, 0x02, 0xa5, 0x02, 0xa5, 0x02, 0xab, 0x02, 0x9f, 0x02, 0x43, 0x02, 0xb4, 0x01, 0x10, 0x01, 0x80, 0x00, 0x19, 0x00, 0xb7, 0xff, 0x41, 0xff, 0xde, 0xfe, 0xa3, 0xfe, 0x72, 0xfe, 0x6a, 0xfe, 0x73, 0xfe, 0x90, 0xfe, 0x9f, 0xfe, 0x90, 0xfe, 0x88, 0xfe, 0xb7, 0xfe, 0xf1, 0xfe, 0x3b, 0xff, 0x90, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xc9, 0xff, 0xd1, 0xff, 0xe0, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf5, 0xff, 0xe7, 0xff, 0xd1, 0xff, 0x99, 0xff, 0x6b, 0xff, 0x6f, 0xff, 0xa5, 0xff, 0xb7, 0xff, 0x8d, 0xff, 0x71, 0xff, 0x60, 0xff, 0x74, 0xff, 0x7a, 0xff, 0x5c, 0xff, 0x5a, 0xff, 0x54, 0xff, 0x39, 0xff, 0x57, 0xff, 0x99, 0xff, 0xf3, 0xff, 0x86, 0x00, 0x12, 0x01, 0x6c, 0x01, 0xa0, 0x01, 0xb5, 0x01, 0xa2, 0x01, 0x75, 0x01, 0x58, 0x01, 0x13, 0x01, 0xa4, 0x00, 0x55, 0x00, 0x00, 0x00, 0xd8, 0xff, 0xc3, 0xff, 0xbd, 0xff, 0xb4, 0xff, 0x8a, 0xff, 0x7d, 0xff, 0x92, 0xff, 0x9c, 0xff, 0x7a, 0xff, 0x47, 0xff, 0x38, 0xff, 0x2c, 0xff, 0x1e, 0xff, 0x09, 0xff, 0x03, 0xff, 0xf0, 0xfe, 0xfd, 0xfe, 0x21, 0xff, 0x54, 0xff, 0x96, 0xff, 0xdb, 0xff, 0x16, 0x00, 0x40, 0x00, 0x4a, 0x00, 0x52, 0x00, 0x3b, 0x00, 0x10, 0x00, 0x43, 0x00, 0x6e, 0x00, 0x7c, 0x00, 0xb3, 0x00, 0xf4, 0x00, 0xe2, 0x00, 0xa7, 0x00, 0x74, 0x00, 0x70, 0x00, 0x76, 0x00, 0x5c, 0x00, 0x5b, 0x00, 0x6e, 0x00, 0x85, 0x00, 0x91, 0x00, 0x91, 0x00, 0x7a, 0x00, 0x6e, 0x00, 0x3e, 0x00, 0xff, 0xff, 0xe1, 0xff, 0xb0, 0xff, 0xad, 0xff, 0xe7, 0xff, 0x32, 0x00, 0x9d, 0x00, 0x07, 0x01, 0x39, 0x01, 0x0f, 0x01, 0xce, 0x00, 0x7c, 0x00, 0x43, 0x00, 0x31, 0x00, 0x31, 0x00, 0x26, 0x00, 0x10, 0x00, 0xe1, 0xff, 0x93, 0xff, 0x47, 0xff, 0xff, 0xfe, 0xfd, 0xfe, 0xf9, 0xfe, 0xcc, 0xfe, 0x94, 0xfe, 0x6c, 0xfe, 0x49, 0xfe, 0x37, 0xfe, 0x3f, 0xfe, 0x54, 0xfe, 0xa2, 0xfe, 0x12, 0xff, 0x9f, 0xff, 0x1a, 0x00, 0xbb, 0x00, 0x7f, 0x01, 0xf3, 0x01, 0x35, 0x02, 0x39, 0x02, 0x1b, 0x02, 0xfd, 0x01, 0xea, 0x01, 0xbd, 0x01, 0x84, 0x01, 0x4e, 0x01, 0x22, 0x01, 0x1b, 0x01, 0x3a, 0x01, 0x60, 0x01, 0x69, 0x01, 0x67, 0x01, 0x4c, 0x01, 0x06, 0x01, 0xb3, 0x00, 0x50, 0x00, 0xe1, 0xff, 0x87, 0xff, 0x2d, 0xff, 0xd9, 0xfe, 0xa3, 0xfe, 0x64, 0xfe, 0x19, 0xfe, 0xe1, 0xfd, 0xb9, 0xfd, 0x85, 0xfd, 0x6b, 0xfd, 0x67, 0xfd, 0x69, 0xfd, 0xad, 0xfd, 0xff, 0xfd, 0x63, 0xfe, 0xf1, 0xfe, 0x5c, 0xff, 0xa5, 0xff, 0x01, 0x00, 0x43, 0x00, 0x61, 0x00, 0x74, 0x00, 0x83, 0x00, 0xa0, 0x00, 0xaf, 0x00, 0xdd, 0x00, 0x1b, 0x01, 0x3c, 0x01, 0x4c, 0x01, 0x6c, 0x01, 0xba, 0x01, 0xd3, 0x01, 0xaf, 0x01, 0x4e, 0x01, 0xe3, 0x00, 0x95, 0x00, 0x2f, 0x00, 0xd4, 0xff, 0x87, 0xff, 0x48, 0xff, 0x0b, 0xff, 0xd8, 0xfe, 0x9f, 0xfe, 0x4f, 0xfe, 0x13, 0xfe, 0xf1, 0xfd, 0x0d, 0xfe, 0x5d, 0xfe, 0xc1, 0xfe, 0x44, 0xff, 0xe0, 0xff, 0x4a, 0x00, 0x53, 0x00, 0x55, 0x00, 0x59, 0x00, 0x6a, 0x00, 0x91, 0x00, 0xb6, 0x00, 0xd9, 0x00, 0xf8, 0x00, 0xf4, 0x00, 0x00, 0x01, 0x25, 0x01, 0x61, 0x01, 0xcc, 0x01, 0x45, 0x02, 0xbd, 0x02, 0x0f, 0x03, 0x01, 0x03, 0xb3, 0x02, 0x81, 0x02, 0x45, 0x02, 0xdc, 0x01, 0x69, 0x01, 0x06, 0x01, 0xad, 0x00, 0x6a, 0x00, 0x11, 0x00, 0x87, 0xff, 0xff, 0xfe, 0x9f, 0xfe, 0x5b, 0xfe, 0x09, 0xfe, 0xcb, 0xfd, 0xa3, 0xfd, 0x91, 0xfd, 0xb5, 0xfd, 0xe3, 0xfd, 0x06, 0xfe, 0x16, 0xfe, 0x2b, 0xfe, 0x45, 0xfe, 0x7c, 0xfe, 0xd9, 0xfe, 0x1e, 0xff, 0x3b, 0xff, 0x56, 0xff, 0x6c, 0xff, 0x77, 0xff, 0x65, 0xff, 0x2f, 0xff, 0x20, 0xff, 0x11, 0xff, 0x12, 0xff, 0xff, 0xfe, 0xf1, 0xfe, 0xf1, 0xfe, 0x0b, 0xff, 0x35, 0xff, 0x3e, 0xff, 0x65, 0xff, 0xa8, 0xff, 0x0b, 0x00, 0xa9, 0x00, 0x3c, 0x01, 0xc7, 0x01, 0x91, 0x02, 0x29, 0x03, 0x53, 0x03, 0x67, 0x03, 0x59, 0x03, 0x1f, 0x03, 0xab, 0x02, 0x03, 0x02, 0x2d, 0x01, 0x61, 0x00, 0xcc, 0xff, 0x63, 0xff, 0x14, 0xff, 0xdf, 0xfe, 0x97, 0xfe, 0x3d, 0xfe, 0x07, 0xfe, 0x01, 0xfe, 0x2a, 0xfe, 0x75, 0xfe, 0xf1, 0xfe, 0x38, 0xff, 0x60, 0xff, 0x6b, 0xff, 0x5a, 0xff, 0x4b, 0xff, 0x47, 0xff, 0x5f, 0xff, 0x84, 0xff, 0xba, 0xff, 0x02, 0x00, 0x52, 0x00, 0x83, 0x00, 0xaa, 0x00, 0xb2, 0x00, 0xc5, 0x00, 0xdd, 0x00, 0x03, 0x01, 0x3f, 0x01, 0x6c, 0x01, 0x8d, 0x01, 0x85, 0x01, 0x4e, 0x01, 0x0d, 0x01, 0xee, 0x00, 0xdf, 0x00, 0xca, 0x00, 0xb2, 0x00, 0xad, 0x00, 0x9a, 0x00, 0x71, 0x00, 0x43, 0x00, 0x0a, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xde, 0xff, 0xbf, 0xff, 0xdd, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xe7, 0xff, 0xd2, 0xff, 0xc0, 0xff, 0xb3, 0xff, 0xcb, 0xff, 0xd7, 0xff, 0xfe, 0xff, 0x4c, 0x00, 0xaa, 0x00, 0xf8, 0x00, 0xe5, 0x00, 0x9a, 0x00, 0x56, 0x00, 0x1a, 0x00, 0xf0, 0xff, 0xc2, 0xff, 0x9f, 0xff, 0x6e, 0xff, 0x17, 0xff, 0xca, 0xfe, 0x8e, 0xfe, 0x70, 0xfe, 0x54, 0xfe, 0x5d, 0xfe, 0x7b, 0xfe, 0x9d, 0xfe, 0xdc, 0xfe, 0xe8, 0xfe, 0xdb, 0xfe, 0xd9, 0xfe, 0xd6, 0xfe, 0xc9, 0xfe, 0xb4, 0xfe, 0xa9, 0xfe, 0xb8, 0xfe, 0xcf, 0xfe, 0xf6, 0xfe, 0x51, 0xff, 0xbd, 0xff, 0x29, 0x00, 0x91, 0x00, 0xdd, 0x00, 0x27, 0x01, 0x82, 0x01, 0xc1, 0x01, 0xd5, 0x01, 0xf3, 0x01, 0x3f, 0x02, 0x8d, 0x02, 0xa7, 0x02, 0xa7, 0x02, 0x93, 0x02, 0x6f, 0x02, 0x3f, 0x02, 0x09, 0x02, 0xba, 0x01, 0x69, 0x01, 0x10, 0x01, 0xc4, 0x00, 0x92, 0x00, 0x53, 0x00, 0x1a, 0x00, 0xcc, 0xff, 0x8f, 0xff, 0x4e, 0xff, 0x08, 0xff, 0xc3, 0xfe, 0xab, 0xfe, 0xc4, 0xfe, 0xe7, 0xfe, 0x18, 0xff, 0x27, 0xff, 0x0b, 0xff, 0xbb, 0xfe, 0x5e, 0xfe, 0x16, 0xfe, 0xd5, 0xfd, 0xbd, 0xfd, 0xfd, 0xfd, 0x5d, 0xfe, 0xa8, 0xfe, 0xcf, 0xfe, 0xe2, 0xfe, 0xfa, 0xfe, 0x09, 0xff, 0x1b, 0xff, 0x2d, 0xff, 0x30, 0xff, 0x26, 0xff, 0x2a, 0xff, 0x62, 0xff, 0xb0, 0xff, 0xf5, 0xff, 0x34, 0x00, 0x71, 0x00, 0xb5, 0x00, 0x00, 0x01, 0x34, 0x01, 0x52, 0x01, 0x60, 0x01, 0x67, 0x01, 0x4b, 0x01, 0x15, 0x01, 0xec, 0x00, 0xdd, 0x00, 0xf2, 0x00, 0x09, 0x01, 0x18, 0x01, 0x15, 0x01, 0x0d, 0x01, 0xda, 0x00, 0x73, 0x00, 0x25, 0x00, 0xe4, 0xff, 0xa2, 0xff, 0x69, 0xff, 0x53, 0xff, 0x39, 0xff, 0x0c, 0xff, 0xd8, 0xfe, 0x9d, 0xfe, 0x87, 0xfe, 0x81, 0xfe, 0x96, 0xfe, 0xbb, 0xfe, 0x05, 0xff, 0x6b, 0xff, 0xc8, 0xff, 0x01, 0x00, 0x2f, 0x00, 0x6b, 0x00, 0x9a, 0x00, 0xbf, 0x00, 0xe3, 0x00, 0x24, 0x01, 0x4b, 0x01, 0x43, 0x01, 0x2d, 0x01, 0xfa, 0x00, 0x9a, 0x00, 0x16, 0x00, 0x9b, 0xff, 0x38, 0xff, 0x0e, 0xff, 0x08, 0xff, 0x0e, 0xff, 0x24, 0xff, 0x36, 0xff, 0x35, 0xff, 0x41, 0xff, 0x5c, 0xff, 0x7a, 0xff, 0x92, 0xff, 0x99, 0xff, 0xa8, 0xff, 0xd5, 0xff, 0x17, 0x00, 0x79, 0x00, 0xbb, 0x00, 0xcb, 0x00, 0xd4, 0x00, 0xec, 0x00, 0xf4, 0x00, 0x22, 0x01, 0x5d, 0x01, 0x76, 0x01, 0x4c, 0x01, 0x0c, 0x01, 0xcb, 0x00, 0x8f, 0x00, 0x49, 0x00, 0xf6, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xc2, 0xff, 0xb3, 0xff, 0xa2, 0xff, 0x8f, 0xff, 0x95, 0xff, 0xa8, 0xff, 0xab, 0xff, 0x99, 0xff, 0x72, 0xff, 0x65, 0xff, 0x86, 0xff, 0xab, 0xff, 0xcb, 0xff, 0xd7, 0xff, 0xef, 0xff, 0x20, 0x00, 0x40, 0x00, 0x80, 0x00, 0xf8, 0x00, 0x9d, 0x01, 0x37, 0x02, 0xab, 0x02, 0x05, 0x03, 0x05, 0x03, 0xb1, 0x02, 0x55, 0x02, 0xfa, 0x01, 0x94, 0x01, 0x31, 0x01, 0xac, 0x00, 0x0a, 0x00, 0x6b, 0xff, 0xe5, 0xfe, 0x84, 0xfe, 0x27, 0xfe, 0xe5, 0xfd, 0xaf, 0xfd, 0x79, 0xfd, 0x61, 0xfd, 0x51, 0xfd, 0x55, 0xfd, 0x75, 0xfd, 0xb5, 0xfd, 0xf7, 0xfd, 0x27, 0xfe, 0x7f, 0xfe, 0xe7, 0xfe, 0x4d, 0xff, 0xb0, 0xff, 0xfb, 0xff, 0x22, 0x00, 0x23, 0x00, 0x25, 0x00, 0x40, 0x00, 0x3b, 0x00, 0x0e, 0x00, 0xf2, 0xff, 0xe1, 0xff, 0xea, 0xff, 0xfc, 0xff, 0xdd, 0xff, 0xa7, 0xff, 0x74, 0xff, 0x81, 0xff, 0xdd, 0xff, 0x67, 0x00, 0xf2, 0x00, 0x60, 0x01, 0xc4, 0x01, 0x13, 0x02, 0x67, 0x02, 0xd3, 0x02, 0x49, 0x03, 0x93, 0x03, 0x77, 0x03, 0x01, 0x03, 0x63, 0x02, 0xb1, 0x01, 0x24, 0x01, 0xa7, 0x00, 0x37, 0x00, 0xba, 0xff, 0x2f, 0xff, 0xb4, 0xfe, 0x70, 0xfe, 0x84, 0xfe, 0xc0, 0xfe, 0xf9, 0xfe, 0x24, 0xff, 0x56, 0xff, 0x7a, 0xff, 0x7e, 0xff, 0x66, 0xff, 0x39, 0xff, 0x08, 0xff, 0xd3, 0xfe, 0xa3, 0xfe, 0x90, 0xfe, 0x93, 0xfe, 0x9a, 0xfe, 0x8a, 0xfe, 0x96, 0xfe, 0xc6, 0xfe, 0xf0, 0xfe, 0x14, 0xff, 0x3c, 0xff, 0x7d, 0xff, 0xbf, 0xff, 0xdb, 0xff, 0xef, 0xff, 0x10, 0x00, 0x38, 0x00, 0x49, 0x00, 0x67, 0x00, 0x8e, 0x00, 0xc1, 0x00, 0x01, 0x01, 0x4f, 0x01, 0xb7, 0x01, 0x21, 0x02, 0x45, 0x02, 0x4f, 0x02, 0x6f, 0x02, 0x59, 0x02, 0x0f, 0x02, 0x8e, 0x01, 0x03, 0x01, 0x94, 0x00, 0x47, 0x00, 0xfe, 0xff, 0xb6, 0xff, 0x6c, 0xff, 0x42, 0xff, 0x21, 0xff, 0x0f, 0xff, 0x03, 0xff, 0xf6, 0xfe, 0x0e, 0xff, 0x3e, 0xff, 0x68, 0xff, 0x5f, 0xff, 0x32, 0xff, 0xf9, 0xfe, 0xbe, 0xfe, 0x90, 0xfe, 0x6d, 0xfe, 0x60, 0xfe, 0x81, 0xfe, 0xba, 0xfe, 0xe7, 0xfe, 0x02, 0xff, 0x0c, 0xff, 0x2a, 0xff, 0x5f, 0xff, 0x9b, 0xff, 0xc0, 0xff, 0xd7, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xe7, 0xff, 0xcf, 0xff, 0xb6, 0xff, 0xc6, 0xff, 0x0b, 0x00, 0x4d, 0x00, 0x7a, 0x00, 0xa1, 0x00, 0xe0, 0x00, 0x1f, 0x01, 0x43, 0x01, 0x55, 0x01, 0x6a, 0x01, 0x97, 0x01, 0xd8, 0x01, 0x27, 0x02, 0x87, 0x02, 0xc9, 0x02, 0xcd, 0x02, 0xad, 0x02, 0x5f, 0x02, 0x03, 0x02, 0x99, 0x01, 0x07, 0x01, 0x7f, 0x00, 0x04, 0x00, 0xa8, 0xff, 0x53, 0xff, 0xff, 0xfe, 0xc1, 0xfe, 0x7b, 0xfe, 0x3d, 0xfe, 0x25, 0xfe, 0x2d, 0xfe, 0x48, 0xfe, 0x75, 0xfe, 0xaf, 0xfe, 0xe2, 0xfe, 0x27, 0xff, 0x7b, 0xff, 0xb4, 0xff, 0x98, 0xff, 0x44, 0xff, 0xea, 0xfe, 0xaf, 0xfe, 0xab, 0xfe, 0xd2, 0xfe, 0x03, 0xff, 0x12, 0xff, 0x24, 0xff, 0x1b, 0xff, 0xf6, 0xfe, 0xd6, 0xfe, 0xc9, 0xfe, 0xcd, 0xfe, 0xed, 0xfe, 0x23, 0xff, 0x7d, 0xff, 0xe3, 0xff, 0x37, 0x00, 0x80, 0x00, 0xdc, 0x00, 0x63, 0x01, 0xcf, 0x01, 0x09, 0x02, 0x0f, 0x02, 0xe7, 0x01, 0x9a, 0x01, 0x4b, 0x01, 0x03, 0x01, 0xc2, 0x00, 0x8c, 0x00, 0x64, 0x00, 0x68, 0x00, 0xa1, 0x00, 0xe6, 0x00, 0x0a, 0x01, 0x1c, 0x01, 0x1e, 0x01, 0x1f, 0x01, 0x13, 0x01, 0xf1, 0x00, 0xaa, 0x00, 0x35, 0x00, 0xad, 0xff, 0x1e, 0xff, 0xa0, 0xfe, 0x45, 0xfe, 0x0d, 0xfe, 0x10, 0xfe, 0x31, 0xfe, 0x64, 0xfe, 0x8b, 0xfe, 0xb1, 0xfe, 0xd2, 0xfe, 0xea, 0xfe, 0x17, 0xff, 0x47, 0xff, 0x69, 0xff, 0x7d, 0xff, 0x80, 0xff, 0x77, 0xff, 0x8a, 0xff, 0xd8, 0xff, 0x26, 0x00, 0x74, 0x00, 0xb3, 0x00, 0xd7, 0x00, 0xd9, 0x00, 0xca, 0x00, 0xa4, 0x00, 0x6d, 0x00, 0x49, 0x00, 0x3d, 0x00, 0x4c, 0x00, 0x5f, 0x00, 0x88, 0x00, 0xb6, 0x00, 0xee, 0x00, 0x1b, 0x01, 0x1c, 0x01, 0x1b, 0x01, 0x00, 0x01, 0xe9, 0x00, 0xe5, 0x00, 0xda, 0x00, 0xc4, 0x00, 0xa4, 0x00, 0x8c, 0x00, 0x76, 0x00, 0x80, 0x00, 0xb5, 0x00, 0xb3, 0x00, 0x95, 0x00, 0x82, 0x00, 0x6e, 0x00, 0x68, 0x00, 0x58, 0x00, 0x02, 0x00, 0x98, 0xff, 0x41, 0xff, 0x03, 0xff, 0xdf, 0xfe, 0xc4, 0xfe, 0xb2, 0xfe, 0xc4, 0xfe, 0xe8, 0xfe, 0x14, 0xff, 0x45, 0xff, 0x7a, 0xff, 0x96, 0xff, 0xb6, 0xff, 0xc8, 0xff, 0xcc, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xec, 0xff, 0xed, 0xff, 0xff, 0xff, 0x11, 0x00, 0x13, 0x00, 0xf0, 0xff, 0xb7, 0xff, 0x7d, 0xff, 0x3e, 0xff, 0x30, 0xff, 0x36, 0xff, 0x4e, 0xff, 0x7b, 0xff, 0xad, 0xff, 0xd4, 0xff, 0xe0, 0xff, 0xc2, 0xff, 0x90, 0xff, 0x63, 0xff, 0x38, 0xff, 0x14, 0xff, 0xf3, 0xfe, 0xe7, 0xfe, 0xf0, 0xfe, 0x05, 0xff, 0x3b, 0xff, 0x90, 0xff, 0xfe, 0xff, 0x94, 0x00, 0x22, 0x01, 0x91, 0x01, 0x17, 0x02, 0xa7, 0x02, 0xf9, 0x02, 0x11, 0x03, 0x07, 0x03, 0xef, 0x02, 0xc9, 0x02, 0x83, 0x02, 0x21, 0x02, 0xaf, 0x01, 0x54, 0x01, 0xf8, 0x00, 0x97, 0x00, 0x37, 0x00, 0xe4, 0xff, 0x93, 0xff, 0x29, 0xff, 0xca, 0xfe, 0x91, 0xfe, 0x69, 0xfe, 0x43, 0xfe, 0x12, 0xfe, 0xe5, 0xfd, 0xb7, 0xfd, 0x9f, 0xfd, 0x99, 0xfd, 0xb1, 0xfd, 0xe5, 0xfd, 0x0f, 0xfe, 0x25, 0xfe, 0x30, 0xfe, 0x57, 0xfe, 0x85, 0xfe, 0xae, 0xfe, 0xd6, 0xfe, 0x27, 0xff, 0x86, 0xff, 0xf0, 0xff, 0x68, 0x00, 0xf4, 0x00, 0x79, 0x01, 0xeb, 0x01, 0x53, 0x02, 0xab, 0x02, 0xed, 0x02, 0x01, 0x03, 0xe3, 0x02, 0xc1, 0x02, 0x99, 0x02, 0x67, 0x02, 0x3d, 0x02, 0x15, 0x02, 0xed, 0x01, 0xca, 0x01, 0x93, 0x01, 0x46, 0x01, 0xfd, 0x00, 0xc2, 0x00, 0x8c, 0x00, 0x3a, 0x00, 0xde, 0xff, 0x90, 0xff, 0x2f, 0xff, 0xc1, 0xfe, 0x6d, 0xfe, 0x30, 0xfe, 0x12, 0xfe, 0x1c, 0xfe, 0x3f, 0xfe, 0x4e, 0xfe, 0x60, 0xfe, 0x6a, 0xfe, 0x5d, 0xfe, 0x55, 0xfe, 0x6a, 0xfe, 0x99, 0xfe, 0xb1, 0xfe, 0xbb, 0xfe, 0xc7, 0xfe, 0xd9, 0xfe, 0xff, 0xfe, 0x4d, 0xff, 0x9f, 0xff, 0xc9, 0xff, 0xd2, 0xff, 0xc0, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xbc, 0xff, 0xdb, 0xff, 0x14, 0x00, 0x3b, 0x00, 0x67, 0x00, 0x8c, 0x00, 0xc2, 0x00, 0xf4, 0x00, 0x12, 0x01, 0x4c, 0x01, 0x6d, 0x01, 0x8e, 0x01, 0xa8, 0x01, 0xb1, 0x01, 0xd3, 0x01, 0x0d, 0x02, 0x21, 0x02, 0x21, 0x02, 0x01, 0x02, 0xbd, 0x01, 0x76, 0x01, 0x09, 0x01, 0x8e, 0x00, 0x04, 0x00, 0x69, 0xff, 0xd5, 0xfe, 0x66, 0xfe, 0x16, 0xfe, 0xcf, 0xfd, 0xab, 0xfd, 0x9f, 0xfd, 0xa1, 0xfd, 0xcf, 0xfd, 0x07, 0xfe, 0x2d, 0xfe, 0x51, 0xfe, 0x93, 0xfe, 0xed, 0xfe, 0x45, 0xff, 0xa1, 0xff, 0xf8, 0xff, 0x56, 0x00, 0xaa, 0x00, 0x13, 0x01, 0x88, 0x01, 0x07, 0x02, 0x7b, 0x02, 0xad, 0x02, 0xbd, 0x02, 0xc3, 0x02, 0xb5, 0x02, 0x7f, 0x02, 0x35, 0x02, 0xe2, 0x01, 0x6f, 0x01, 0x0c, 0x01, 0xb9, 0x00, 0x74, 0x00, 0x49, 0x00, 0x25, 0x00, 0x02, 0x00, 0xe6, 0xff, 0xb1, 0xff, 0x5d, 0xff, 0xff, 0xfe, 0xb7, 0xfe, 0x8e, 0xfe, 0x82, 0xfe, 0x85, 0xfe, 0xa0, 0xfe, 0xba, 0xfe, 0xd9, 0xfe, 0x00, 0xff, 0x05, 0xff, 0xe5, 0xfe, 0xba, 0xfe, 0x9a, 0xfe, 0x88, 0xfe, 0x78, 0xfe, 0x6c, 0xfe, 0x63, 0xfe, 0x51, 0xfe, 0x4b, 0xfe, 0x48, 0xfe, 0x5b, 0xfe, 0x9d, 0xfe, 0x08, 0xff, 0x7a, 0xff, 0xdb, 0xff, 0x1f, 0x00, 0x4f, 0x00, 0x98, 0x00, 0x10, 0x01, 0x9f, 0x01, 0xf0, 0x01, 0x07, 0x02, 0x0f, 0x02, 0x1b, 0x02, 0x27, 0x02, 0x0b, 0x02, 0xf9, 0x01, 0xf3, 0x01, 0xfd, 0x01, 0xf7, 0x01, 0xd9, 0x01, 0xa3, 0x01, 0x66, 0x01, 0x2d, 0x01, 0xc7, 0x00, 0x43, 0x00, 0xb9, 0xff, 0x41, 0xff, 0xd5, 0xfe, 0x6c, 0xfe, 0x09, 0xfe, 0xbd, 0xfd, 0x9d, 0xfd, 0x91, 0xfd, 0x9f, 0xfd, 0xc1, 0xfd, 0xf7, 0xfd, 0x2e, 0xfe, 0x84, 0xfe, 0xed, 0xfe, 0x4e, 0xff, 0xb3, 0xff, 0x20, 0x00, 0x8f, 0x00, 0xf8, 0x00, 0x67, 0x01, 0xb5, 0x01, 0xcc, 0x01, 0xc9, 0x01, 0xab, 0x01, 0x7f, 0x01, 0x49, 0x01, 0x10, 0x01, 0xdc, 0x00, 0xaa, 0x00, 0x89, 0x00, 0x83, 0x00, 0x8e, 0x00, 0x91, 0x00, 0x7a, 0x00, 0x5f, 0x00, 0x35, 0x00, 0x02, 0x00, 0xe4, 0xff, 0xc6, 0xff, 0x9f, 0xff, 0x75, 0xff, 0x5a, 0xff, 0x63, 0xff, 0x93, 0xff, 0xb1, 0xff, 0xb7, 0xff, 0xc0, 0xff, 0xb4, 0xff, 0xad, 0xff, 0x8a, 0xff, 0x6b, 0xff, 0x5a, 0xff, 0x68, 0xff, 0x80, 0xff, 0x89, 0xff, 0x8d, 0xff, 0xa5, 0xff, 0xbc, 0xff, 0xb9, 0xff, 0xba, 0xff, 0xc8, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xc9, 0xff, 0x98, 0xff, 0x72, 0xff, 0x51, 0xff, 0x3c, 0xff, 0x33, 0xff, 0x18, 0xff, 0xf4, 0xfe, 0xe4, 0xfe, 0xeb, 0xfe, 0xfd, 0xfe, 0x11, 0xff, 0x2f, 0xff, 0x6b, 0xff, 0xb7, 0xff, 0xea, 0xff, 0x00, 0x00, 0x1c, 0x00, 0x4d, 0x00, 0x8b, 0x00, 0xb6, 0x00, 0xc8, 0x00, 0xd1, 0x00, 0xa7, 0x00, 0x82, 0x00, 0x62, 0x00, 0x5c, 0x00, 0x80, 0x00, 0xaf, 0x00, 0xdc, 0x00, 0xfe, 0x00, 0x3d, 0x01, 0x8a, 0x01, 0xf0, 0x01, 0x3b, 0x02, 0x5d, 0x02, 0x51, 0x02, 0x1d, 0x02, 0xd0, 0x01, 0x75, 0x01, 0x22, 0x01, 0xe3, 0x00, 0x8c, 0x00, 0xfe, 0xff, 0x6b, 0xff, 0xf3, 0xfe, 0x99, 0xfe, 0x61, 0xfe, 0x42, 0xfe, 0x39, 0xfe, 0x4b, 0xfe, 0x6d, 0xfe, 0x82, 0xfe, 0x7b, 0xfe, 0x5e, 0xfe, 0x46, 0xfe, 0x57, 0xfe, 0xa0, 0xfe, 0xf7, 0xfe, 0x48, 0xff, 0x86, 0xff, 0xc0, 0xff, 0xfe, 0xff, 0x2f, 0x00, 0x71, 0x00, 0xbf, 0x00, 0x0f, 0x01, 0x5d, 0x01, 0x87, 0x01, 0x7e, 0x01, 0x6d, 0x01, 0x55, 0x01, 0x3f, 0x01, 0x1b, 0x01, 0xeb, 0x00, 0xcb, 0x00, 0xa0, 0x00, 0x9d, 0x00, 0xaf, 0x00, 0x7a, 0x00, 0x1d, 0x00, 0xb7, 0xff, 0x69, 0xff, 0x23, 0xff, 0xd8, 0xfe, 0xae, 0xfe, 0x9a, 0xfe, 0x7f, 0xfe, 0x72, 0xfe, 0x67, 0xfe, 0x5e, 0xfe, 0x7e, 0xfe, 0xbd, 0xfe, 0xee, 0xfe, 0x0b, 0xff, 0x44, 0xff, 0x7e, 0xff, 0xb4, 0xff, 0x10, 0x00, 0x4c, 0x00, 0x7f, 0x00, 0xb8, 0x00, 0xd3, 0x00, 0xf1, 0x00, 0x19, 0x01, 0x51, 0x01, 0x96, 0x01, 0xb4, 0x01, 0xa0, 0x01, 0x9a, 0x01, 0xaf, 0x01, 0xcd, 0x01, 0x09, 0x02, 0x53, 0x02, 0x7b, 0x02, 0x7f, 0x02, 0x6f, 0x02, 0x5d, 0x02, 0x21, 0x02, 0xc6, 0x01, 0x55, 0x01, 0xee, 0x00, 0x9b, 0x00, 0x67, 0x00, 0x40, 0x00, 0xed, 0xff, 0x7a, 0xff, 0xfa, 0xfe, 0x9a, 0xfe, 0x4c, 0xfe, 0x16, 0xfe, 0xdf, 0xfd, 0xc1, 0xfd, 0xb9, 0xfd, 0xad, 0xfd, 0x9d, 0xfd, 0x9d, 0xfd, 0xb5, 0xfd, 0xeb, 0xfd, 0x1f, 0xfe, 0x46, 0xfe, 0x4f, 0xfe, 0x52, 0xfe, 0x6d, 0xfe, 0x90, 0xfe, 0xca, 0xfe, 0x17, 0xff, 0x75, 0xff, 0xc8, 0xff, 0x05, 0x00, 0x17, 0x00, 0x16, 0x00, 0x1d, 0x00, 0x23, 0x00, 0x32, 0x00, 0x83, 0x00, 0x10, 0x01, 0x9f, 0x01, 0x2b, 0x02, 0x89, 0x02, 0xc1, 0x02, 0x05, 0x03, 0x29, 0x03, 0x37, 0x03, 0x27, 0x03, 0xc3, 0x02, 0x2d, 0x02, 0x96, 0x01, 0x13, 0x01, 0xa0, 0x00, 0x4f, 0x00, 0x0b, 0x00, 0xc0, 0xff, 0x66, 0xff, 0x05, 0xff, 0xa9, 0xfe, 0x49, 0xfe, 0xf9, 0xfd, 0xc1, 0xfd, 0xa3, 0xfd, 0xad, 0xfd, 0xd7, 0xfd, 0x12, 0xfe, 0x5e, 0xfe, 0x9c, 0xfe, 0xbd, 0xfe, 0x06, 0xff, 0x51, 0xff, 0x87, 0xff, 0xbf, 0xff, 0xfc, 0xff, 0x58, 0x00, 0xb0, 0x00, 0xf8, 0x00, 0x2d, 0x01, 0x3f, 0x01, 0x3c, 0x01, 0x30, 0x01, 0x01, 0x01, 0xbb, 0x00, 0x8c, 0x00, 0x55, 0x00, 0x17, 0x00, 0xea, 0xff, 0xaa, 0xff, 0x60, 0xff, 0x23, 0xff, 0xfd, 0xfe, 0xe7, 0xfe, 0xd9, 0xfe, 0xf1, 0xfe, 0x33, 0xff, 0x84, 0xff, 0xd5, 0xff, 0x20, 0x00, 0x76, 0x00, 0xbc, 0x00, 0xdf, 0x00, 0xf4, 0x00, 0xf4, 0x00, 0xd3, 0x00, 0x9a, 0x00, 0x53, 0x00, 0x0a, 0x00, 0xce, 0xff, 0xa7, 0xff, 0xaa, 0xff, 0xbd, 0xff, 0xd4, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xec, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xd8, 0xff, 0xce, 0xff, 0xc3, 0xff, 0xb7, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0x9e, 0xff, 0x63, 0xff, 0x33, 0xff, 0x35, 0xff, 0x65, 0xff, 0xa4, 0xff, 0xec, 0xff, 0x4a, 0x00, 0xca, 0x00, 0x4e, 0x01, 0xcf, 0x01, 0x1d, 0x02, 0x57, 0x02, 0x81, 0x02, 0x81, 0x02, 0x4f, 0x02, 0xd2, 0x01, 0x2a, 0x01, 0x74, 0x00, 0xc9, 0xff, 0x26, 0xff, 0xa8, 0xfe, 0x42, 0xfe, 0xf3, 0xfd, 0xcb, 0xfd, 0xd3, 0xfd, 0xf5, 0xfd, 0x1f, 0xfe, 0x5b, 0xfe, 0x90, 0xfe, 0xc1, 0xfe, 0xf3, 0xfe, 0x24, 0xff, 0x56, 0xff, 0x7e, 0xff, 0xb0, 0xff, 0xf0, 0xff, 0x25, 0x00, 0x8e, 0x00, 0x0d, 0x01, 0x7c, 0x01, 0xd0, 0x01, 0x09, 0x02, 0x17, 0x02, 0x05, 0x02, 0xf9, 0x01, 0x0d, 0x02, 0x23, 0x02, 0x15, 0x02, 0xe2, 0x01, 0x99, 0x01, 0x67, 0x01, 0x55, 0x01, 0x3a, 0x01, 0xfd, 0x00, 0x9e, 0x00, 0x2c, 0x00, 0xd1, 0xff, 0x72, 0xff, 0x00, 0xff, 0x8e, 0xfe, 0x1c, 0xfe, 0xcb, 0xfd, 0xb5, 0xfd, 0xc5, 0xfd, 0xdf, 0xfd, 0xfd, 0xfd, 0x0d, 0xfe, 0x0f, 0xfe, 0x13, 0xfe, 0x28, 0xfe, 0x55, 0xfe, 0x9a, 0xfe, 0xd0, 0xfe, 0x05, 0xff, 0x4e, 0xff, 0x86, 0xff, 0xb7, 0xff, 0x10, 0x00, 0x59, 0x00, 0x68, 0x00, 0x5e, 0x00, 0x52, 0x00, 0x64, 0x00, 0x83, 0x00, 0xb5, 0x00, 0xcb, 0x00, 0xd7, 0x00, 0xf2, 0x00, 0xfb, 0x00, 0xeb, 0x00, 0xc7, 0x00, 0x8c, 0x00, 0x41, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x1f, 0x00, 0x38, 0x00, 0x5b, 0x00, 0x91, 0x00, 0x9d, 0x00, 0x85, 0x00, 0x8c, 0x00, 0xb3, 0x00, 0xd0, 0x00, 0xf2, 0x00, 0x07, 0x01, 0x1b, 0x01, 0x1e, 0x01, 0xfe, 0x00, 0xc5, 0x00, 0x80, 0x00, 0x35, 0x00, 0xec, 0xff, 0x9b, 0xff, 0x51, 0xff, 0x2c, 0xff, 0x02, 0xff, 0xcf, 0xfe, 0xae, 0xfe, 0xa2, 0xfe, 0xa9, 0xfe, 0xcf, 0xfe, 0xff, 0xfe, 0x59, 0xff, 0xd5, 0xff, 0x40, 0x00, 0x91, 0x00, 0xce, 0x00, 0xf7, 0x00, 0xf2, 0x00, 0xe6, 0x00, 0xd3, 0x00, 0xb0, 0x00, 0x89, 0x00, 0x4a, 0x00, 0x0b, 0x00, 0xe0, 0xff, 0xb4, 0xff, 0xb0, 0xff, 0xa4, 0xff, 0x8f, 0xff, 0x84, 0xff, 0x62, 0xff, 0x4a, 0xff, 0x47, 0xff, 0x45, 0xff, 0x3c, 0xff, 0x3b, 0xff, 0x45, 0xff, 0x74, 0xff, 0xbc, 0xff, 0xf2, 0xff, 0x04, 0x00, 0x0e, 0x00, 0x29, 0x00, 0x43, 0x00, 0x5b, 0x00, 0x7a, 0x00, 0x8c, 0x00, 0x9d, 0x00, 0xa4, 0x00, 0xb0, 0x00, 0xdc, 0x00, 0xe6, 0x00, 0xca, 0x00, 0x89, 0x00, 0x3a, 0x00, 0xef, 0xff, 0xb9, 0xff, 0xa1, 0xff, 0x96, 0xff, 0x9b, 0xff, 0xb1, 0xff, 0xd1, 0xff, 0xf3, 0xff, 0x25, 0x00, 0x3b, 0x00, 0x5b, 0x00, 0x86, 0x00, 0xca, 0x00, 0x1f, 0x01, 0x4b, 0x01, 0x63, 0x01, 0x85, 0x01, 0xa3, 0x01, 0x82, 0x01, 0x33, 0x01, 0xce, 0x00, 0x7d, 0x00, 0x47, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x1d, 0x00, 0x05, 0x00, 0xf6, 0xff, 0xd7, 0xff, 0xc2, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xb7, 0xff, 0x9c, 0xff, 0x89, 0xff, 0x80, 0xff, 0x75, 0xff, 0x6c, 0xff, 0x57, 0xff, 0x2f, 0xff, 0x1b, 0xff, 0x0b, 0xff, 0x02, 0xff, 0xe7, 0xfe, 0xbe, 0xfe, 0xa6, 0xfe, 0x9f, 0xfe, 0x9c, 0xfe, 0x94, 0xfe, 0x87, 0xfe, 0x7c, 0xfe, 0x66, 0xfe, 0x52, 0xfe, 0x4e, 0xfe, 0x69, 0xfe, 0xa0, 0xfe, 0xe5, 0xfe, 0x23, 0xff, 0x4a, 0xff, 0x6b, 0xff, 0x95, 0xff, 0xe6, 0xff, 0x3b, 0x00, 0x9a, 0x00, 0xf7, 0x00, 0x3f, 0x01, 0x7f, 0x01, 0xba, 0x01, 0xea, 0x01, 0x0d, 0x02, 0x19, 0x02, 0xfc, 0x01, 0xbd, 0x01, 0x70, 0x01, 0x24, 0x01, 0xd7, 0x00, 0x7f, 0x00, 0x41, 0x00, 0x07, 0x00, 0xcf, 0xff, 0xb0, 0xff, 0xa7, 0xff, 0xab, 0xff, 0xc5, 0xff, 0xf9, 0xff, 0x1c, 0x00, 0x46, 0x00, 0x6a, 0x00, 0x82, 0x00, 0x8c, 0x00, 0x83, 0x00, 0x65, 0x00, 0x3e, 0x00, 0x43, 0x00, 0x6e, 0x00, 0x97, 0x00, 0xa3, 0x00, 0x85, 0x00, 0x52, 0x00, 0x2b, 0x00, 0x0b, 0x00, 0xfe, 0xff, 0xe3, 0xff, 0xc5, 0xff, 0x9f, 0xff, 0x72, 0xff, 0x39, 0xff, 0x26, 0xff, 0x3f, 0xff, 0x69, 0xff, 0xad, 0xff, 0xf5, 0xff, 0x4a, 0x00, 0x9e, 0x00, 0xf8, 0x00, 0x37, 0x01, 0x37, 0x01, 0x07, 0x01, 0xe8, 0x00, 0xdc, 0x00, 0xcb, 0x00, 0xa9, 0x00, 0x79, 0x00, 0x2f, 0x00, 0xc8, 0xff, 0x6b, 0xff, 0x2d, 0xff, 0xfc, 0xfe, 0xd6, 0xfe, 0xca, 0xfe, 0xd9, 0xfe, 0x11, 0xff, 0x4e, 0xff, 0x84, 0xff, 0xad, 0xff, 0xcc, 0xff, 0xd7, 0xff, 0xc9, 0xff, 0xb3, 0xff, 0xa2, 0xff, 0x95, 0xff, 0x75, 0xff, 0x5f, 0xff, 0x5c, 0xff, 0x5a, 0xff, 0x4a, 0xff, 0x45, 0xff, 0x3f, 0xff, 0x38, 0xff, 0x47, 0xff, 0x68, 0xff, 0x89, 0xff, 0xad, 0xff, 0xe7, 0xff, 0x2b, 0x00, 0x77, 0x00, 0xb8, 0x00, 0xe8, 0x00, 0x2a, 0x01, 0x5a, 0x01, 0x70, 0x01, 0x70, 0x01, 0x5d, 0x01, 0x4b, 0x01, 0x25, 0x01, 0xeb, 0x00, 0xb0, 0x00, 0x76, 0x00, 0x49, 0x00, 0x23, 0x00, 0xe7, 0xff, 0xb6, 0xff, 0xa5, 0xff, 0xb6, 0xff, 0xc8, 0xff, 0xb0, 0xff, 0x90, 0xff, 0x92, 0xff, 0xae, 0xff, 0xd5, 0xff, 0x04, 0x00, 0x13, 0x00, 0xf6, 0xff, 0xcb, 0xff, 0x9b, 0xff, 0x74, 0xff, 0x57, 0xff, 0x42, 0xff, 0x45, 0xff, 0x4e, 0xff, 0x4d, 0xff, 0x51, 0xff, 0x7e, 0xff, 0xd5, 0xff, 0x49, 0x00, 0xb9, 0x00, 0x00, 0x01, 0x30, 0x01, 0x48, 0x01, 0x43, 0x01, 0x1c, 0x01, 0xfb, 0x00, 0xdd, 0x00, 0xa7, 0x00, 0x58, 0x00, 0x02, 0x00, 0xc0, 0xff, 0x7b, 0xff, 0x44, 0xff, 0x0f, 0xff, 0xfa, 0xfe, 0x02, 0xff, 0x26, 0xff, 0x53, 0xff, 0x8a, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0x9f, 0xff, 0x7b, 0xff, 0x5d, 0xff, 0x54, 0xff, 0x6c, 0xff, 0x89, 0xff, 0xc2, 0xff, 0xff, 0xff, 0x3d, 0x00, 0x61, 0x00, 0x6e, 0x00, 0x71, 0x00, 0x85, 0x00, 0xa3, 0x00, 0xac, 0x00, 0xd0, 0x00, 0xf5, 0x00, 0xe9, 0x00, 0xbc, 0x00, 0x95, 0x00, 0x77, 0x00, 0x61, 0x00, 0x38, 0x00, 0x0d, 0x00, 0xf6, 0xff, 0xed, 0xff, 0xea, 0xff, 0xd5, 0xff, 0xab, 0xff, 0x9f, 0xff, 0x9e, 0xff, 0x9b, 0xff, 0xb1, 0xff, 0xc9, 0xff, 0xe0, 0xff, 0xf5, 0xff, 0xec, 0xff, 0xdb, 0xff, 0xe3, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0xe9, 0xff, 0xbf, 0xff, 0x8c, 0xff, 0x6e, 0xff, 0x65, 0xff, 0x6b, 0xff, 0x80, 0xff, 0x87, 0xff, 0x95, 0xff, 0x99, 0xff, 0xb3, 0xff, 0xcb, 0xff, 0xda, 0xff, 0xe7, 0xff, 0x02, 0x00, 0x34, 0x00, 0x52, 0x00, 0x6d, 0x00, 0x7d, 0x00, 0x9b, 0x00, 0xd1, 0x00, 0x13, 0x01, 0x64, 0x01, 0xc0, 0x01, 0x0b, 0x02, 0x2d, 0x02, 0x1b, 0x02, 0xdc, 0x01, 0x9c, 0x01, 0x66, 0x01, 0x25, 0x01, 0xd1, 0x00, 0x7a, 0x00, 0x29, 0x00, 0xf8, 0xff, 0xd8, 0xff, 0xbc, 0xff, 0xb7, 0xff, 0xd1, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xdd, 0xff, 0xb0, 0xff, 0x6c, 0xff, 0x15, 0xff, 0xbd, 0xfe, 0x78, 0xfe, 0x48, 0xfe, 0x30, 0xfe, 0x34, 0xfe, 0x49, 0xfe, 0x55, 0xfe, 0x64, 0xfe, 0x76, 0xfe, 0x7e, 0xfe, 0x72, 0xfe, 0x67, 0xfe, 0x70, 0xfe, 0x91, 0xfe, 0xbe, 0xfe, 0x1a, 0xff, 0x8c, 0xff, 0x11, 0x00, 0xb5, 0x00, 0x72, 0x01, 0x27, 0x02, 0xab, 0x02, 0xfb, 0x02, 0x3b, 0x03, 0x5b, 0x03, 0x41, 0x03, 0x0f, 0x03, 0xbd, 0x02, 0x57, 0x02, 0xf1, 0x01, 0x85, 0x01, 0x12, 0x01, 0xa1, 0x00, 0x3a, 0x00, 0xcc, 0xff, 0x60, 0xff, 0x06, 0xff, 0xa0, 0xfe, 0x48, 0xfe, 0x07, 0xfe, 0xf5, 0xfd, 0xf7, 0xfd, 0xf3, 0xfd, 0x06, 0xfe, 0x15, 0xfe, 0x16, 0xfe, 0x19, 0xfe, 0x2d, 0xfe, 0x6c, 0xfe, 0xb5, 0xfe, 0xf0, 0xfe, 0x24, 0xff, 0x60, 0xff, 0xb7, 0xff, 0x16, 0x00, 0x76, 0x00, 0xd9, 0x00, 0x36, 0x01, 0x90, 0x01, 0xed, 0x01, 0x29, 0x02, 0x29, 0x02, 0x1b, 0x02, 0x15, 0x02, 0x29, 0x02, 0x61, 0x02, 0x7b, 0x02, 0x5d, 0x02, 0x23, 0x02, 0xd6, 0x01, 0x78, 0x01, 0xe8, 0x00, 0x5c, 0x00, 0xd8, 0xff, 0x56, 0xff, 0xe4, 0xfe, 0x85, 0xfe, 0x40, 0xfe, 0x1e, 0xfe, 0x15, 0xfe, 0x1f, 0xfe, 0x3c, 0xfe, 0x52, 0xfe, 0x67, 0xfe, 0x84, 0xfe, 0xab, 0xfe, 0xd8, 0xfe, 0x1d, 0xff, 0x6b, 0xff, 0xb0, 0xff, 0xcb, 0xff, 0xcf, 0xff, 0xe1, 0xff, 0x05, 0x00, 0x43, 0x00, 0x6a, 0x00, 0x76, 0x00, 0x73, 0x00, 0x5b, 0x00, 0x4f, 0x00, 0x3a, 0x00, 0x1c, 0x00, 0x01, 0x00, 0xed, 0xff, 0xd4, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xd2, 0xff, 0xde, 0xff, 0xf2, 0xff, 0x05, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x13, 0x00, 0x2b, 0x00, 0x37, 0x00, 0x3e, 0x00, 0x3a, 0x00, 0x2c, 0x00, 0x26, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x34, 0x00, 0x1a, 0x00, 0xec, 0xff, 0xc5, 0xff, 0x90, 0xff, 0x69, 0xff, 0x50, 0xff, 0x3f, 0xff, 0x44, 0xff, 0x74, 0xff, 0xc8, 0xff, 0x02, 0x00, 0x35, 0x00, 0x95, 0x00, 0x16, 0x01, 0x79, 0x01, 0xbd, 0x01, 0xe2, 0x01, 0x0f, 0x02, 0x4f, 0x02, 0x6b, 0x02, 0x29, 0x02, 0xab, 0x01, 0x2e, 0x01, 0xd4, 0x00, 0x8b, 0x00, 0x38, 0x00, 0xdd, 0xff, 0x84, 0xff, 0x2c, 0xff, 0xd9, 0xfe, 0x84, 0xfe, 0x37, 0xfe, 0xfd, 0xfd, 0xd7, 0xfd, 0xd3, 0xfd, 0xf3, 0xfd, 0x19, 0xfe, 0x30, 0xfe, 0x4e, 0xfe, 0x87, 0xfe, 0xd8, 0xfe, 0x3c, 0xff, 0xa7, 0xff, 0x0b, 0x00, 0x70, 0x00, 0xd1, 0x00, 0x1c, 0x01, 0x4b, 0x01, 0x72, 0x01, 0x87, 0x01, 0x5d, 0x01, 0x01, 0x01, 0x98, 0x00, 0x4c, 0x00, 0x14, 0x00, 0xe9, 0xff, 0xd1, 0xff, 0xde, 0xff, 0xfb, 0xff, 0x17, 0x00, 0x3b, 0x00, 0x5c, 0x00, 0x85, 0x00, 0x8c, 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x7d, 0x00, 0x62, 0x00, 0x37, 0x00, 0x0a, 0x00, 0xf0, 0xff, 0xef, 0xff, 0xfe, 0xff, 0x1d, 0x00, 0x41, 0x00, 0x56, 0x00, 0x59, 0x00, 0x4c, 0x00, 0x2c, 0x00, 0x00, 0x00, 0xcc, 0xff, 0x90, 0xff, 0x60, 0xff, 0x3f, 0xff, 0x33, 0xff, 0x2f, 0xff, 0x2a, 0xff, 0x24, 0xff, 0x1e, 0xff, 0x15, 0xff, 0x1e, 0xff, 0x36, 0xff, 0x53, 0xff, 0x6f, 0xff, 0x9b, 0xff, 0xc8, 0xff, 0x02, 0x00, 0x70, 0x00, 0xd9, 0x00, 0x18, 0x01, 0x2e, 0x01, 0x3c, 0x01, 0x25, 0x01, 0xef, 0x00, 0xaf, 0x00, 0x80, 0x00, 0x8b, 0x00, 0x74, 0x00, 0x4a, 0x00, 0x25, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xe6, 0xff, 0xc2, 0xff, 0x96, 0xff, 0x86, 0xff, 0x92, 0xff, 0xa7, 0xff, 0xc2, 0xff, 0xe1, 0xff, 0xe6, 0xff, 0xd2, 0xff, 0xb7, 0xff, 0x99, 0xff, 0x7a, 0xff, 0x59, 0xff, 0x4a, 0xff, 0x4d, 0xff, 0x57, 0xff, 0x65, 0xff, 0x81, 0xff, 0xae, 0xff, 0xdb, 0xff, 0xff, 0xff, 0x20, 0x00, 0x3d, 0x00, 0x4d, 0x00, 0x53, 0x00, 0x64, 0x00, 0x7a, 0x00, 0x85, 0x00, 0x79, 0x00, 0x64, 0x00, 0x31, 0x00, 0xe9, 0xff, 0xa1, 0xff, 0x83, 0xff, 0x77, 0xff, 0x75, 0xff, 0x7e, 0xff, 0x87, 0xff, 0x9b, 0xff, 0xb7, 0xff, 0xce, 0xff, 0xe6, 0xff, 0x08, 0x00, 0x1f, 0x00, 0x31, 0x00, 0x4a, 0x00, 0x80, 0x00, 0xd4, 0x00, 0x13, 0x01, 0x27, 0x01, 0x18, 0x01, 0xf8, 0x00, 0xeb, 0x00, 0xd9, 0x00, 0xbf, 0x00, 0xa4, 0x00, 0x82, 0x00, 0x5e, 0x00, 0x40, 0x00, 0x25, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xe3, 0xff, 0xcb, 0xff, 0xa5, 0xff, 0x7b, 0xff, 0x56, 0xff, 0x41, 0xff, 0x44, 0xff, 0x51, 0xff, 0x51, 0xff, 0x53, 0xff, 0x71, 0xff, 0x95, 0xff, 0xb0, 0xff, 0xc6, 0xff, 0xdd, 0xff, 0x00, 0x00, 0x1d, 0x00, 0x3d, 0x00, 0x64, 0x00, 0x86, 0x00, 0xaf, 0x00, 0xaf, 0x00, 0xa0, 0x00, 0xa7, 0x00, 0xc2, 0x00, 0xe2, 0x00, 0xc2, 0x00, 0x76, 0x00, 0x35, 0x00, 0x17, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x14, 0x00, 0x25, 0x00, 0x3a, 0x00, 0x34, 0x00, 0x29, 0x00, 0x22, 0x00, 0x22, 0x00, 0x25, 0x00, 0x20, 0x00, 0x0b, 0x00, 0xd4, 0xff, 0xa2, 0xff, 0x7e, 0xff, 0x5c, 0xff, 0x48, 0xff, 0x47, 0xff, 0x53, 0xff, 0x6e, 0xff, 0x8d, 0xff, 0x9f, 0xff, 0x8c, 0xff, 0x68, 0xff, 0x48, 0xff, 0x53, 0xff, 0x6e, 0xff, 0x86, 0xff, 0x99, 0xff, 0xb7, 0xff, 0xce, 0xff, 0xe7, 0xff, 0x11, 0x00, 0x43, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x64, 0x00, 0x6e, 0x00, 0x7c, 0x00, 0x83, 0x00, 0x82, 0x00, 0x73, 0x00, 0x4f, 0x00, 0x22, 0x00, 0x19, 0x00, 0x25, 0x00, 0x4c, 0x00, 0x68, 0x00, 0x62, 0x00, 0x50, 0x00, 0x28, 0x00, 0xfe, 0xff, 0xc9, 0xff, 0xad, 0xff, 0xa5, 0xff, 0xba, 0xff, 0xdd, 0xff, 0x07, 0x00, 0x26, 0x00, 0x2f, 0x00, 0x4c, 0x00, 0x82, 0x00, 0xb9, 0x00, 0xdc, 0x00, 0xd9, 0x00, 0xc5, 0x00, 0xb8, 0x00, 0xb3, 0x00, 0x8e, 0x00, 0x4c, 0x00, 0x16, 0x00, 0xe0, 0xff, 0xa8, 0xff, 0x72, 0xff, 0x62, 0xff, 0x65, 0xff, 0x65, 0xff, 0x54, 0xff, 0x3c, 0xff, 0x32, 0xff, 0x27, 0xff, 0x1e, 0xff, 0x23, 0xff, 0x27, 0xff, 0x39, 0xff, 0x56, 0xff, 0x7b, 0xff, 0xce, 0xff, 0x26, 0x00, 0x59, 0x00, 0x68, 0x00, 0x7c, 0x00, 0x94, 0x00, 0xa9, 0x00, 0xaa, 0x00, 0x98, 0x00, 0x98, 0x00, 0xb2, 0x00, 0xd7, 0x00, 0xe3, 0x00, 0xc1, 0x00, 0x7a, 0x00, 0x31, 0x00, 0x04, 0x00, 0xec, 0xff, 0xe6, 0xff, 0xed, 0xff, 0x05, 0x00, 0x29, 0x00, 0x3a, 0x00, 0x38, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x25, 0x00, 0x32, 0x00, 0x49, 0x00, 0x4f, 0x00, 0x58, 0x00, 0x74, 0x00, 0x7c, 0x00, 0x6d, 0x00, 0x40, 0x00, 0x00, 0x00, 0xb9, 0xff, 0x7e, 0xff, 0x60, 0xff, 0x51, 0xff, 0x56, 0xff, 0x63, 0xff, 0x71, 0xff, 0x6c, 0xff, 0x5a, 0xff, 0x3b, 0xff, 0x2f, 0xff, 0x35, 0xff, 0x48, 0xff, 0x5d, 0xff, 0x5f, 0xff, 0x6e, 0xff, 0x80, 0xff, 0x9c, 0xff, 0xc6, 0xff, 0x01, 0x00, 0x34, 0x00, 0x59, 0x00, 0x77, 0x00, 0x73, 0x00, 0x5c, 0x00, 0x40, 0x00, 0x17, 0x00, 0xf8, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xdb, 0xff, 0xb3, 0xff, 0x95, 0xff, 0x87, 0xff, 0x8f, 0xff, 0x9b, 0xff, 0xb9, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xc8, 0xff, 0xb9, 0xff, 0xae, 0xff, 0x9f, 0xff, 0xa8, 0xff, 0xbd, 0xff, 0xcc, 0xff, 0xf6, 0xff, 0x3b, 0x00, 0x97, 0x00, 0xca, 0x00, 0xe5, 0x00, 0x07, 0x01, 0x40, 0x01, 0x6f, 0x01, 0x96, 0x01, 0xa6, 0x01, 0x96, 0x01, 0x93, 0x01, 0x94, 0x01, 0x97, 0x01, 0x87, 0x01, 0x6d, 0x01, 0x63, 0x01, 0x52, 0x01, 0x28, 0x01, 0xf7, 0x00, 0xb2, 0x00, 0x6d, 0x00, 0x31, 0x00, 0xe9, 0xff, 0x9e, 0xff, 0x72, 0xff, 0x50, 0xff, 0x2a, 0xff, 0x09, 0xff, 0x05, 0xff, 0x26, 0xff, 0x56, 0xff, 0x7b, 0xff, 0x9e, 0xff, 0xba, 0xff, 0xb7, 0xff, 0xb3, 0xff, 0xc8, 0xff, 0xd2, 0xff, 0xcf, 0xff, 0xbd, 0xff, 0x98, 0xff, 0x7e, 0xff, 0x7d, 0xff, 0x78, 0xff, 0x6b, 0xff, 0x5f, 0xff, 0x6b, 0xff, 0x7b, 0xff, 0x63, 0xff, 0x57, 0xff, 0x60, 0xff, 0x68, 0xff, 0x59, 0xff, 0x3e, 0xff, 0x3c, 0xff, 0x41, 0xff, 0x3c, 0xff, 0x30, 0xff, 0x29, 0xff, 0x30, 0xff, 0x30, 0xff, 0x27, 0xff, 0x1a, 0xff, 0x15, 0xff, 0x3e, 0xff, 0x72, 0xff, 0xb6, 0xff, 0xf2, 0xff, 0x0a, 0x00, 0x11, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x23, 0x00, 0x43, 0x00, 0x73, 0x00, 0xb3, 0x00, 0x04, 0x01, 0x55, 0x01, 0xb5, 0x01, 0x13, 0x02, 0x3d, 0x02, 0x39, 0x02, 0x15, 0x02, 0xd8, 0x01, 0x8d, 0x01, 0x6f, 0x01, 0x6c, 0x01, 0x4f, 0x01, 0x3a, 0x01, 0x1b, 0x01, 0xef, 0x00, 0xc8, 0x00, 0x9e, 0x00, 0x6b, 0x00, 0x28, 0x00, 0xec, 0xff, 0x92, 0xff, 0x3f, 0xff, 0x0c, 0xff, 0xfa, 0xfe, 0xfc, 0xfe, 0x03, 0xff, 0x11, 0xff, 0x2d, 0xff, 0x45, 0xff, 0x56, 0xff, 0x68, 0xff, 0x72, 0xff, 0x7d, 0xff, 0x6f, 0xff, 0x4d, 0xff, 0x33, 0xff, 0x29, 0xff, 0x21, 0xff, 0x32, 0xff, 0x56, 0xff, 0x74, 0xff, 0x86, 0xff, 0x8f, 0xff, 0xa1, 0xff, 0xce, 0xff, 0x00, 0x00, 0x37, 0x00, 0x5c, 0x00, 0x7d, 0x00, 0xb0, 0x00, 0xd1, 0x00, 0xe2, 0x00, 0xe6, 0x00, 0xe6, 0x00, 0xd9, 0x00, 0xd7, 0x00, 0xe6, 0x00, 0xfb, 0x00, 0xf2, 0x00, 0xbc, 0x00, 0x7a, 0x00, 0x2c, 0x00, 0xea, 0xff, 0xae, 0xff, 0x77, 0xff, 0x4b, 0xff, 0x33, 0xff, 0x1e, 0xff, 0x12, 0xff, 0x15, 0xff, 0x1a, 0xff, 0x1d, 0xff, 0x1e, 0xff, 0x21, 0xff, 0x2c, 0xff, 0x47, 0xff, 0x65, 0xff, 0x90, 0xff, 0xc3, 0xff, 0x00, 0x00, 0x5b, 0x00, 0xaa, 0x00, 0xec, 0x00, 0x21, 0x01, 0x24, 0x01, 0x10, 0x01, 0xfd, 0x00, 0xf1, 0x00, 0x0a, 0x01, 0x1f, 0x01, 0x1e, 0x01, 0xfa, 0x00, 0xc5, 0x00, 0x88, 0x00, 0x4d, 0x00, 0x04, 0x00, 0xbf, 0xff, 0x89, 0xff, 0x66, 0xff, 0x4a, 0xff, 0x3e, 0xff, 0x54, 0xff, 0x84, 0xff, 0xb9, 0xff, 0xde, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xc6, 0xff, 0xa2, 0xff, 0x8c, 0xff, 0x83, 0xff, 0x8a, 0xff, 0xa8, 0xff, 0xcb, 0xff, 0xf2, 0xff, 0x1c, 0x00, 0x40, 0x00, 0x68, 0x00, 0x7f, 0x00, 0x7f, 0x00, 0x80, 0x00, 0xa1, 0x00, 0xbf, 0x00, 0xc4, 0x00, 0xc4, 0x00, 0xb2, 0x00, 0x8f, 0x00, 0x77, 0x00, 0x6b, 0x00, 0x5c, 0x00, 0x22, 0x00, 0xcb, 0xff, 0x6e, 0xff, 0x1e, 0xff, 0xde, 0xfe, 0xc0, 0xfe, 0xc1, 0xfe, 0xd5, 0xfe, 0xfc, 0xfe, 0x27, 0xff, 0x53, 0xff, 0x6e, 0xff, 0x86, 0xff, 0x96, 0xff, 0xa2, 0xff, 0xb3, 0xff, 0xe0, 0xff, 0x0d, 0x00, 0x31, 0x00, 0x31, 0x00, 0x14, 0x00, 0x0d, 0x00, 0x25, 0x00, 0x58, 0x00, 0x88, 0x00, 0xaf, 0x00, 0xcb, 0x00, 0x04, 0x01, 0x37, 0x01, 0x45, 0x01, 0x4b, 0x01, 0x3a, 0x01, 0x1e, 0x01, 0x0c, 0x01, 0x10, 0x01, 0x0d, 0x01, 0xf2, 0x00, 0xca, 0x00, 0x91, 0x00, 0x53, 0x00, 0x23, 0x00, 0x00, 0x00, 0xdd, 0xff, 0xb7, 0xff, 0xa4, 0xff, 0x8a, 0xff, 0x7b, 0xff, 0x5c, 0xff, 0x24, 0xff, 0xf1, 0xfe, 0xc6, 0xfe, 0xa0, 0xfe, 0x99, 0xfe, 0x99, 0xfe, 0xa9, 0xfe, 0xd5, 0xfe, 0x0b, 0xff, 0x4d, 0xff, 0x72, 0xff, 0x7e, 0xff, 0x9e, 0xff, 0xb1, 0xff, 0xb9, 0xff, 0xce, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xea, 0xff, 0xff, 0xff, 0x02, 0x00, 0xf8, 0xff, 0xe4, 0xff, 0xde, 0xff, 0xfb, 0xff, 0x28, 0x00, 0x61, 0x00, 0x94, 0x00, 0xbe, 0x00, 0xd7, 0x00, 0xe3, 0x00, 0xf2, 0x00, 0xe8, 0x00, 0xef, 0x00, 0x12, 0x01, 0x1f, 0x01, 0x06, 0x01, 0xee, 0x00, 0xdf, 0x00, 0xbf, 0x00, 0x9b, 0x00, 0x64, 0x00, 0x28, 0x00, 0xf0, 0xff, 0xc3, 0xff, 0xa2, 0xff, 0x7a, 0xff, 0x54, 0xff, 0x39, 0xff, 0x2f, 0xff, 0x27, 0xff, 0x2d, 0xff, 0x26, 0xff, 0x20, 0xff, 0x1d, 0xff, 0x0e, 0xff, 0x0b, 0xff, 0x1d, 0xff, 0x44, 0xff, 0x7b, 0xff, 0xdb, 0xff, 0x68, 0x00, 0xf2, 0x00, 0x55, 0x01, 0x93, 0x01, 0xaf, 0x01, 0xa5, 0x01, 0x84, 0x01, 0x7e, 0x01, 0x82, 0x01, 0x5e, 0x01, 0x21, 0x01, 0xe8, 0x00, 0xb9, 0x00, 0x88, 0x00, 0x43, 0x00, 0x01, 0x00, 0xc8, 0xff, 0xad, 0xff, 0xa2, 0xff, 0xa7, 0xff, 0xbc, 0xff, 0xae, 0xff, 0x86, 0xff, 0x68, 0xff, 0x4d, 0xff, 0x33, 0xff, 0x1a, 0xff, 0x0f, 0xff, 0x0e, 0xff, 0x0b, 0xff, 0x1e, 0xff, 0x3c, 0xff, 0x65, 0xff, 0x93, 0xff, 0xd8, 0xff, 0x14, 0x00, 0x3d, 0x00, 0x46, 0x00, 0x3e, 0x00, 0x50, 0x00, 0x61, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x68, 0x00, 0x5e, 0x00, 0x52, 0x00, 0x50, 0x00, 0x5b, 0x00, 0x7c, 0x00, 0x97, 0x00, 0x85, 0x00, 0x5b, 0x00, 0x29, 0x00, 0xf3, 0xff, 0xcb, 0xff, 0xa8, 0xff, 0x8c, 0xff, 0x6b, 0xff, 0x59, 0xff, 0x50, 0xff, 0x4b, 0xff, 0x5a, 0xff, 0x66, 0xff, 0x74, 0xff, 0x7e, 0xff, 0x89, 0xff, 0x96, 0xff, 0xb1, 0xff, 0xd7, 0xff, 0xf5, 0xff, 0x14, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x10, 0x00, 0xe6, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xcb, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xde, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0x07, 0x00, 0x37, 0x00, 0x80, 0x00, 0xd4, 0x00, 0x0d, 0x01, 0x1b, 0x01, 0x12, 0x01, 0x09, 0x01, 0xf7, 0x00, 0xca, 0x00, 0xaf, 0x00, 0x9a, 0x00, 0x86, 0x00, 0x7a, 0x00, 0x83, 0x00, 0x88, 0x00, 0x82, 0x00, 0x74, 0x00, 0x46, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xec, 0xff, 0xd4, 0xff, 0xc6, 0xff, 0xb1, 0xff, 0x93, 0xff, 0x78, 0xff, 0x6f, 0xff, 0x80, 0xff, 0x89, 0xff, 0x77, 0xff, 0x65, 0xff, 0x5c, 0xff, 0x51, 0xff, 0x47, 0xff, 0x3e, 0xff, 0x2a, 0xff, 0x18, 0xff, 0x17, 0xff, 0x15, 0xff, 0x11, 0xff, 0x0f, 0xff, 0x12, 0xff, 0x14, 0xff, 0x1e, 0xff, 0x39, 0xff, 0x74, 0xff, 0xbc, 0xff, 0xfc, 0xff, 0x2f, 0x00, 0x53, 0x00, 0x73, 0x00, 0x8f, 0x00, 0xd1, 0x00, 0x16, 0x01, 0x5b, 0x01, 0xa3, 0x01, 0xe4, 0x01, 0xfa, 0x01, 0xe5, 0x01, 0xc4, 0x01, 0xae, 0x01, 0xb4, 0x01, 0xa0, 0x01, 0xa3, 0x01, 0xb1, 0x01, 0xa8, 0x01, 0x70, 0x01, 0x1e, 0x01, 0xca, 0x00, 0x7d, 0x00, 0x52, 0x00, 0x2b, 0x00, 0xed, 0xff, 0xb0, 0xff, 0x71, 0xff, 0x2d, 0xff, 0xee, 0xfe, 0xb8, 0xfe, 0x96, 0xfe, 0x7c, 0xfe, 0x64, 0xfe, 0x4c, 0xfe, 0x40, 0xfe, 0x4e, 0xfe, 0x67, 0xfe, 0x87, 0xfe, 0xab, 0xfe, 0xcd, 0xfe, 0xf0, 0xfe, 0x05, 0xff, 0x1e, 0xff, 0x2c, 0xff, 0x47, 0xff, 0x62, 0xff, 0x95, 0xff, 0xc9, 0xff, 0xfc, 0xff, 0x22, 0x00, 0x4f, 0x00, 0x88, 0x00, 0xb2, 0x00, 0xd6, 0x00, 0xeb, 0x00, 0x01, 0x01, 0x2d, 0x01, 0x6a, 0x01, 0xb1, 0x01, 0xe4, 0x01, 0x01, 0x02, 0x09, 0x02, 0x09, 0x02, 0x1b, 0x02, 0x09, 0x02, 0xa8, 0x01, 0x1b, 0x01, 0x80, 0x00, 0xf0, 0xff, 0x89, 0xff, 0x44, 0xff, 0x08, 0xff, 0xc9, 0xfe, 0x9c, 0xfe, 0x87, 0xfe, 0x90, 0xfe, 0xb1, 0xfe, 0xd9, 0xfe, 0x03, 0xff, 0x27, 0xff, 0x54, 0xff, 0x72, 0xff, 0x8f, 0xff, 0x99, 0xff, 0x9c, 0xff, 0xb3, 0xff, 0xc6, 0xff, 0x00, 0x00, 0x3a, 0x00, 0x6d, 0x00, 0x9a, 0x00, 0xc2, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd3, 0x00, 0xdf, 0x00, 0xf5, 0x00, 0xe9, 0x00, 0xd1, 0x00, 0xa0, 0x00, 0x62, 0x00, 0x26, 0x00, 0xdd, 0xff, 0xa7, 0xff, 0x86, 0xff, 0x75, 0xff, 0x65, 0xff, 0x4d, 0xff, 0x30, 0xff, 0x2d, 0xff, 0x39, 0xff, 0x3f, 0xff, 0x3e, 0xff, 0x2a, 0xff, 0x1b, 0xff, 0x0e, 0xff, 0x12, 0xff, 0x17, 0xff, 0x2d, 0xff, 0x4d, 0xff, 0x72, 0xff, 0xa7, 0xff, 0xdb, 0xff, 0x0e, 0x00, 0x46, 0x00, 0x7c, 0x00, 0xb3, 0x00, 0xd9, 0x00, 0xdc, 0x00, 0xd1, 0x00, 0xd9, 0x00, 0xdc, 0x00, 0xd7, 0x00, 0xcd, 0x00, 0xca, 0x00, 0xbc, 0x00, 0xa3, 0x00, 0x98, 0x00, 0x9d, 0x00, 0x92, 0x00, 0x7f, 0x00, 0x62, 0x00, 0x37, 0x00, 0x08, 0x00, 0xde, 0xff, 0xba, 0xff, 0x8d, 0xff, 0x6b, 0xff, 0x53, 0xff, 0x4b, 0xff, 0x54, 0xff, 0x5a, 0xff, 0x5d, 0xff, 0x56, 0xff, 0x50, 0xff, 0x5c, 0xff, 0x60, 0xff, 0x69, 0xff, 0x72, 0xff, 0x84, 0xff, 0x98, 0xff, 0xaa, 0xff, 0xb0, 0xff, 0xa4, 0xff, 0xa1, 0xff, 0xa8, 0xff, 0xc8, 0xff, 0xe9, 0xff, 0x04, 0x00, 0x0e, 0x00, 0x25, 0x00, 0x40, 0x00, 0x67, 0x00, 0x97, 0x00, 0xaf, 0x00, 0xa6, 0x00, 0x7d, 0x00, 0x64, 0x00, 0x53, 0x00, 0x52, 0x00, 0x4f, 0x00, 0x4d, 0x00, 0x4a, 0x00, 0x38, 0x00, 0x23, 0x00, 0x1f, 0x00, 0x26, 0x00, 0x14, 0x00, 0x02, 0x00, 0x08, 0x00, 0x23, 0x00, 0x35, 0x00, 0x44, 0x00, 0x44, 0x00, 0x3e, 0x00, 0x52, 0x00, 0x6e, 0x00, 0x7c, 0x00, 0x91, 0x00, 0xaa, 0x00, 0xb5, 0x00, 0xb9, 0x00, 0xc1, 0x00, 0xc5, 0x00, 0xc7, 0x00, 0xb9, 0x00, 0x86, 0x00, 0x3e, 0x00, 0xe9, 0xff, 0x9c, 0xff, 0x69, 0xff, 0x4b, 0xff, 0x2f, 0xff, 0x17, 0xff, 0x0c, 0xff, 0x11, 0xff, 0x2c, 0xff, 0x51, 0xff, 0x6e, 0xff, 0x81, 0xff, 0x7e, 0xff, 0x80, 0xff, 0x81, 0xff, 0x9f, 0xff, 0xe9, 0xff, 0x31, 0x00, 0x62, 0x00, 0x7a, 0x00, 0x97, 0x00, 0x9a, 0x00, 0x95, 0x00, 0x73, 0x00, 0x47, 0x00, 0x2c, 0x00, 0x31, 0x00, 0x40, 0x00, 0x47, 0x00, 0x3e, 0x00, 0x31, 0x00, 0x38, 0x00, 0x44, 0x00, 0x55, 0x00, 0x53, 0x00, 0x3b, 0x00, 0x08, 0x00, 0xdd, 0xff, 0xce, 0xff, 0xc3, 0xff, 0xb7, 0xff, 0xb0, 0xff, 0xb9, 0xff, 0xd2, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xd7, 0xff, 0xce, 0xff, 0xd2, 0xff, 0xcc, 0xff, 0xaa, 0xff, 0x78, 0xff, 0x5f, 0xff, 0x6b, 0xff, 0xa2, 0xff, 0xe3, 0xff, 0x14, 0x00, 0x37, 0x00, 0x53, 0x00, 0x70, 0x00, 0x6b, 0x00, 0x64, 0x00, 0x5f, 0x00, 0x50, 0x00, 0x56, 0x00, 0x74, 0x00, 0x9e, 0x00, 0xd0, 0x00, 0xe9, 0x00, 0xe2, 0x00, 0xdc, 0x00, 0xe0, 0x00, 0xec, 0x00, 0xe9, 0x00, 0xd4, 0x00, 0xb8, 0x00, 0x83, 0x00, 0x46, 0x00, 0xff, 0xff, 0xba, 0xff, 0x72, 0xff, 0x30, 0xff, 0xfd, 0xfe, 0xd9, 0xfe, 0xb8, 0xfe, 0x97, 0xfe, 0x76, 0xfe, 0x69, 0xfe, 0x67, 0xfe, 0x7f, 0xfe, 0xbb, 0xfe, 0x0c, 0xff, 0x5f, 0xff, 0x92, 0xff, 0xae, 0xff, 0xba, 0xff, 0xd4, 0xff, 0xf9, 0xff, 0x0a, 0x00, 0x02, 0x00, 0xff, 0xff, 0x0b, 0x00, 0x3a, 0x00, 0x68, 0x00, 0x89, 0x00, 0x94, 0x00, 0x8e, 0x00, 0x7f, 0x00, 0x7a, 0x00, 0x7f, 0x00, 0x80, 0x00, 0x8c, 0x00, 0x92, 0x00, 0x82, 0x00, 0x74, 0x00, 0x79, 0x00, 0x83, 0x00, 0x9e, 0x00, 0xd0, 0x00, 0x0d, 0x01, 0x42, 0x01, 0x60, 0x01, 0x60, 0x01, 0x49, 0x01, 0x15, 0x01, 0xda, 0x00, 0xa0, 0x00, 0x76, 0x00, 0x4c, 0x00, 0x26, 0x00, 0x0e, 0x00, 0xf5, 0xff, 0xc9, 0xff, 0x8c, 0xff, 0x4e, 0xff, 0x11, 0xff, 0xd8, 0xfe, 0xb5, 0xfe, 0x9d, 0xfe, 0x96, 0xfe, 0x99, 0xfe, 0x9f, 0xfe, 0x9c, 0xfe, 0x99, 0xfe, 0xab, 0xfe, 0xe1, 0xfe, 0x23, 0xff, 0x5f, 0xff, 0x95, 0xff, 0xc9, 0xff, 0x01, 0x00, 0x53, 0x00, 0xa6, 0x00, 0xfa, 0x00, 0x48, 0x01, 0x85, 0x01, 0xc6, 0x01, 0xfd, 0x01, 0x33, 0x02, 0x51, 0x02, 0x4f, 0x02, 0x3f, 0x02, 0x23, 0x02, 0xdf, 0x01, 0x87, 0x01, 0x37, 0x01, 0xe9, 0x00, 0x97, 0x00, 0x49, 0x00, 0x0a, 0x00, 0xd1, 0xff, 0xa5, 0xff, 0x75, 0xff, 0x3b, 0xff, 0x0b, 0xff, 0xe8, 0xfe, 0xc0, 0xfe, 0xab, 0xfe, 0x9d, 0xfe, 0x8d, 0xfe, 0x73, 0xfe, 0x4f, 0xfe, 0x39, 0xfe, 0x36, 0xfe, 0x40, 0xfe, 0x4f, 0xfe, 0x60, 0xfe, 0x67, 0xfe, 0x79, 0xfe, 0xa2, 0xfe, 0xd2, 0xfe, 0x18, 0xff, 0x57, 0xff, 0x92, 0xff, 0xd5, 0xff, 0x29, 0x00, 0x92, 0x00, 0xf1, 0x00, 0x40, 0x01, 0x8a, 0x01, 0xde, 0x01, 0x31, 0x02, 0x69, 0x02, 0x7d, 0x02, 0x6f, 0x02, 0x63, 0x02, 0x4d, 0x02, 0x1f, 0x02, 0xd9, 0x01, 0xab, 0x01, 0x87, 0x01, 0x31, 0x01, 0xd1, 0x00, 0x77, 0x00, 0x1f, 0x00, 0xd7, 0xff, 0x8a, 0xff, 0x2f, 0xff, 0xf3, 0xfe, 0xd5, 0xfe, 0xc4, 0xfe, 0xc6, 0xfe, 0xca, 0xfe, 0xd2, 0xfe, 0xd6, 0xfe, 0xd5, 0xfe, 0xd6, 0xfe, 0xe7, 0xfe, 0x06, 0xff, 0x26, 0xff, 0x51, 0xff, 0x8d, 0xff, 0xde, 0xff, 0x22, 0x00, 0x58, 0x00, 0x8c, 0x00, 0xc1, 0x00, 0xf2, 0x00, 0x00, 0x01, 0x06, 0x01, 0xe9, 0x00, 0xad, 0x00, 0x5f, 0x00, 0x1a, 0x00, 0xf5, 0xff, 0xcf, 0xff, 0xa5, 0xff, 0x6c, 0xff, 0x3c, 0xff, 0x12, 0xff, 0xfd, 0xfe, 0xfa, 0xfe, 0x09, 0xff, 0x1b, 0xff, 0x1e, 0xff, 0x14, 0xff, 0x09, 0xff, 0xfc, 0xfe, 0xff, 0xfe, 0x0f, 0xff, 0x2d, 0xff, 0x3c, 0xff, 0x3f, 0xff, 0x57, 0xff, 0x6e, 0xff, 0x78, 0xff, 0x8d, 0xff, 0xce, 0xff, 0x1d, 0x00, 0x7a, 0x00, 0xd4, 0x00, 0x33, 0x01, 0x93, 0x01, 0xca, 0x01, 0xeb, 0x01, 0x03, 0x02, 0x03, 0x02, 0xf6, 0x01, 0xe2, 0x01, 0xdb, 0x01, 0xdb, 0x01, 0xc1, 0x01, 0x87, 0x01, 0x37, 0x01, 0xe2, 0x00, 0x82, 0x00, 0x19, 0x00, 0xb3, 0xff, 0x60, 0xff, 0x24, 0xff, 0xfc, 0xfe, 0x1d, 0xff, 0x12, 0xff, 0xf7, 0xfe, 0xd3, 0xfe, 0xc9, 0xfe, 0xc7, 0xfe, 0xcc, 0xfe, 0xda, 0xfe, 0xec, 0xfe, 0xfe, 0xfe, 0x12, 0xff, 0x22, 0xff, 0x2e, 0xff, 0x41, 0xff, 0x62, 0xff, 0x7a, 0xff, 0x95, 0xff, 0xab, 0xff, 0xc8, 0xff, 0xe9, 0xff, 0x09, 0x00, 0x29, 0x00, 0x4d, 0x00, 0x70, 0x00, 0x7a, 0x00, 0x77, 0x00, 0x82, 0x00, 0x9f, 0x00, 0xd0, 0x00, 0x03, 0x01, 0x1e, 0x01, 0x41, 0x01, 0x76, 0x01, 0xad, 0x01, 0xcf, 0x01, 0xbd, 0x01, 0x9c, 0x01, 0x6f, 0x01, 0x35, 0x01, 0xfb, 0x00, 0xc8, 0x00, 0xa4, 0x00, 0x6d, 0x00, 0x21, 0x00, 0xcd, 0xff, 0x7b, 0xff, 0x33, 0xff, 0xf9, 0xfe, 0xd0, 0xfe, 0xb8, 0xfe, 0xb4, 0xfe, 0xc2, 0xfe, 0xe8, 0xfe, 0x17, 0xff, 0x3b, 0xff, 0x6c, 0xff, 0x8e, 0xff, 0xa6, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xb4, 0xff, 0xc5, 0xff, 0xd7, 0xff, 0xeb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xef, 0xff, 0xee, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xeb, 0xff, 0xe1, 0xff, 0xdf, 0xff, 0xd7, 0xff, 0xe4, 0xff, 0xf4, 0xff, 0x0c, 0x00, 0x33, 0x00, 0x60, 0x00, 0x87, 0x00, 0xa5, 0x00, 0xbe, 0x00, 0xc3, 0x00, 0xbf, 0x00, 0xc6, 0x00, 0xd4, 0x00, 0xd2, 0x00, 0xbe, 0x00, 0x91, 0x00, 0x55, 0x00, 0x1f, 0x00, 0xfe, 0xff, 0xda, 0xff, 0xb4, 0xff, 0x83, 0xff, 0x4a, 0xff, 0x1c, 0xff, 0xfd, 0xfe, 0xee, 0xfe, 0xe7, 0xfe, 0xed, 0xfe, 0xec, 0xfe, 0xed, 0xfe, 0x02, 0xff, 0x0d, 0xff, 0x12, 0xff, 0x17, 0xff, 0x31, 0xff, 0x56, 0xff, 0x74, 0xff, 0x8e, 0xff, 0xae, 0xff, 0xde, 0xff, 0x18, 0x00, 0x57, 0x00, 0x91, 0x00, 0xc9, 0x00, 0xf1, 0x00, 0x0c, 0x01, 0x3c, 0x01, 0x71, 0x01, 0xa0, 0x01, 0xbd, 0x01, 0xa8, 0x01, 0x7e, 0x01, 0x5f, 0x01, 0x43, 0x01, 0x30, 0x01, 0x0c, 0x01, 0xd0, 0x00, 0x95, 0x00, 0x5b, 0x00, 0x2c, 0x00, 0x02, 0x00, 0xe5, 0xff, 0xc7, 0xff, 0xab, 0xff, 0x7c, 0xff, 0x54, 0xff, 0x35, 0xff, 0x1f, 0xff, 0x14, 0xff, 0x03, 0xff, 0x00, 0xff, 0x05, 0xff, 0x1a, 0xff, 0x3b, 0xff, 0x62, 0xff, 0x86, 0xff, 0xa6, 0xff, 0xc8, 0xff, 0xe8, 0xff, 0xfa, 0xff, 0x03, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x21, 0x00, 0x50, 0x00, 0x73, 0x00, 0x86, 0x00, 0x8c, 0x00, 0xa5, 0x00, 0xc6, 0x00, 0xf1, 0x00, 0x11, 0x01, 0x16, 0x01, 0xff, 0x00, 0xc5, 0x00, 0x7c, 0x00, 0x42, 0x00, 0x1b, 0x00, 0xea, 0xff, 0xbe, 0xff, 0x9a, 0xff, 0x83, 0xff, 0x68, 0xff, 0x62, 0xff, 0x79, 0xff, 0x9a, 0xff, 0xb5, 0xff, 0xc5, 0xff, 0xdc, 0xff, 0xeb, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x03, 0x00, 0x06, 0x00, 0xf7, 0xff, 0xe5, 0xff, 0xcc, 0xff, 0xa7, 0xff, 0x79, 0xff, 0x4a, 0xff, 0x37, 0xff, 0x36, 0xff, 0x49, 0xff, 0x61, 0xff, 0x76, 0xff, 0x90, 0xff, 0xb0, 0xff, 0xd1, 0xff, 0xdf, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xf2, 0xff, 0x1f, 0x00, 0x4a, 0x00, 0x70, 0x00, 0x94, 0x00, 0x91, 0x00, 0x8b, 0x00, 0x96, 0x00, 0xaa, 0x00, 0xad, 0x00, 0x98, 0x00, 0x6e, 0x00, 0x3b, 0x00, 0x0d, 0x00, 0xf8, 0xff, 0xf2, 0xff, 0xde, 0xff, 0xc5, 0xff, 0xa2, 0xff, 0x88, 0xff, 0x81, 0xff, 0x89, 0xff, 0x95, 0xff, 0xa1, 0xff, 0xaf, 0xff, 0xca, 0xff, 0xfe, 0xff, 0x20, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x26, 0x00, 0x29, 0x00, 0x21, 0x00, 0x0e, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x02, 0x00, 0x15, 0x00, 0x31, 0x00, 0x41, 0x00, 0x43, 0x00, 0x39, 0x00, 0x33, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x33, 0x00, 0x38, 0x00, 0x36, 0x00, 0x38, 0x00, 0x2c, 0x00, 0x13, 0x00, 0xfe, 0xff, 0xf7, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xf3, 0xff, 0xd4, 0xff, 0xab, 0xff, 0x84, 0xff, 0x65, 0xff, 0x49, 0xff, 0x2c, 0xff, 0x12, 0xff, 0xfd, 0xfe, 0xec, 0xfe, 0xe9, 0xfe, 0xfb, 0xfe, 0x22, 0xff, 0x65, 0xff, 0xb1, 0xff, 0xf9, 0xff, 0x39, 0x00, 0x84, 0x00, 0xd3, 0x00, 0x21, 0x01, 0x5a, 0x01, 0x7d, 0x01, 0xa0, 0x01, 0xa1, 0x01, 0x8b, 0x01, 0x52, 0x01, 0x17, 0x01, 0xdf, 0x00, 0xc0, 0x00, 0xbe, 0x00, 0xbb, 0x00, 0xb2, 0x00, 0x9f, 0x00, 0x8c, 0x00, 0x86, 0x00, 0x87, 0x00, 0x84, 0x00, 0x75, 0x00, 0x54, 0x00, 0x33, 0x00, 0x13, 0x00, 0xf9, 0xff, 0xe8, 0xff, 0xda, 0xff, 0xc8, 0xff, 0xa4, 0xff, 0x74, 0xff, 0x4a, 0xff, 0x27, 0xff, 0x12, 0xff, 0x08, 0xff, 0x08, 0xff, 0x12, 0xff, 0x1e, 0xff, 0x38, 0xff, 0x53, 0xff, 0x7e, 0xff, 0xb9, 0xff, 0xe8, 0xff, 0x0e, 0x00, 0x2f, 0x00, 0x57, 0x00, 0x70, 0x00, 0x7f, 0x00, 0x90, 0x00, 0xac, 0x00, 0xd3, 0x00, 0x07, 0x01, 0x34, 0x01, 0x3d, 0x01, 0x35, 0x01, 0x1e, 0x01, 0x0c, 0x01, 0xfd, 0x00, 0xd9, 0x00, 0xa0, 0x00, 0x60, 0x00, 0x21, 0x00, 0xe9, 0xff, 0xac, 0xff, 0x7c, 0xff, 0x4e, 0xff, 0x2e, 0xff, 0x12, 0xff, 0x05, 0xff, 0x06, 0xff, 0xfe, 0xfe, 0xee, 0xfe, 0xe0, 0xfe, 0xda, 0xfe, 0xdb, 0xfe, 0xe3, 0xfe, 0xe8, 0xfe, 0xea, 0xfe, 0xef, 0xfe, 0xfb, 0xfe, 0x03, 0xff, 0x1a, 0xff, 0x3a, 0xff, 0x5e, 0xff, 0x80, 0xff, 0xa9, 0xff, 0xdb, 0xff, 0x12, 0x00, 0x50, 0x00, 0x8b, 0x00, 0xb6, 0x00, 0xca, 0x00, 0xce, 0x00, 0xce, 0x00, 0xde, 0x00, 0xfa, 0x00, 0x11, 0x01, 0x12, 0x01, 0x0d, 0x01, 0x08, 0x01, 0x16, 0x01, 0x11, 0x01, 0xf8, 0x00, 0xdf, 0x00, 0xbc, 0x00, 0x93, 0x00, 0x5b, 0x00, 0x27, 0x00, 0x04, 0x00, 0xeb, 0xff, 0xdb, 0xff, 0xcf, 0xff, 0xc2, 0xff, 0xb5, 0xff, 0xbe, 0xff, 0xe9, 0xff, 0x17, 0x00, 0x21, 0x00, 0x12, 0x00, 0xf8, 0xff, 0xca, 0xff, 0x98, 0xff, 0x6b, 0xff, 0x4c, 0xff, 0x36, 0xff, 0x29, 0xff, 0x31, 0xff, 0x45, 0xff, 0x62, 0xff, 0x7c, 0xff, 0x8e, 0xff, 0xb0, 0xff, 0xe9, 0xff, 0x26, 0x00, 0x4d, 0x00, 0x66, 0x00, 0x7c, 0x00, 0x8a, 0x00, 0x98, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xa2, 0x00, 0x96, 0x00, 0x7c, 0x00, 0x57, 0x00, 0x36, 0x00, 0x12, 0x00, 0xf2, 0xff, 0xca, 0xff, 0xaa, 0xff, 0x9d, 0xff, 0xa4, 0xff, 0xa9, 0xff, 0x90, 0xff, 0x68, 0xff, 0x51, 0xff, 0x51, 0xff, 0x54, 0xff, 0x51, 0xff, 0x58, 0xff, 0x5e, 0xff, 0x72, 0xff, 0xa2, 0xff, 0xca, 0xff, 0xf2, 0xff, 0x24, 0x00, 0x4f, 0x00, 0x66, 0x00, 0x73, 0x00, 0x8a, 0x00, 0xa4, 0x00, 0xad, 0x00, 0xac, 0x00, 0xad, 0x00, 0xa3, 0x00, 0xa4, 0x00, 0xa7, 0x00, 0xb7, 0x00, 0xc1, 0x00, 0xb7, 0x00, 0xb9, 0x00, 0xb9, 0x00, 0xb4, 0x00, 0x99, 0x00, 0x6b, 0x00, 0x40, 0x00, 0x1b, 0x00, 0xef, 0xff, 0xb9, 0xff, 0x90, 0xff, 0x6d, 0xff, 0x53, 0xff, 0x2d, 0xff, 0x0f, 0xff, 0xfc, 0xfe, 0xec, 0xfe, 0xe2, 0xfe, 0xe5, 0xfe, 0xee, 0xfe, 0xfb, 0xfe, 0x12, 0xff, 0x2e, 0xff, 0x4a, 0xff, 0x6b, 0xff, 0x95, 0xff, 0xaf, 0xff, 0xca, 0xff, 0xe1, 0xff, 0x04, 0x00, 0x2a, 0x00, 0x40, 0x00, 0x46, 0x00, 0x4c, 0x00, 0x72, 0x00, 0x99, 0x00, 0xbc, 0x00, 0xe9, 0x00, 0x19, 0x01, 0x30, 0x01, 0x28, 0x01, 0x0e, 0x01, 0xee, 0x00, 0xbf, 0x00, 0x86, 0x00, 0x43, 0x00, 0x02, 0x00, 0xd7, 0xff, 0xba, 0xff, 0xb5, 0xff, 0xc0, 0xff, 0xcd, 0xff, 0xe5, 0xff, 0x07, 0x00, 0x2c, 0x00, 0x50, 0x00, 0x63, 0x00, 0x6b, 0x00, 0x85, 0x00, 0xa4, 0x00, 0xbc, 0x00, 0xd8, 0x00, 0xf1, 0x00, 0xf6, 0x00, 0xd4, 0x00, 0x9e, 0x00, 0x6b, 0x00, 0x33, 0x00, 0x06, 0x00, 0xe6, 0xff, 0xd1, 0xff, 0xc8, 0xff, 0xbd, 0xff, 0xa1, 0xff, 0x83, 0xff, 0x76, 0xff, 0x63, 0xff, 0x51, 0xff, 0x4c, 0xff, 0x49, 0xff, 0x49, 0xff, 0x45, 0xff, 0x3f, 0xff, 0x3b, 0xff, 0x37, 0xff, 0x35, 0xff, 0x37, 0xff, 0x3c, 0xff, 0x45, 0xff, 0x56, 0xff, 0x6b, 0xff, 0x90, 0xff, 0xc7, 0xff, 0x08, 0x00, 0x4b, 0x00, 0x89, 0x00, 0xc9, 0x00, 0xfa, 0x00, 0x0a, 0x01, 0x00, 0x01, 0xec, 0x00, 0xe6, 0x00, 0xe4, 0x00, 0xe4, 0x00, 0xd9, 0x00, 0xd2, 0x00, 0xbe, 0x00, 0x99, 0x00, 0x6d, 0x00, 0x42, 0x00, 0x17, 0x00, 0xf0, 0xff, 0xc2, 0xff, 0x93, 0xff, 0x6c, 0xff, 0x4f, 0xff, 0x44, 0xff, 0x3f, 0xff, 0x42, 0xff, 0x3c, 0xff, 0x35, 0xff, 0x40, 0xff, 0x58, 0xff, 0x76, 0xff, 0x93, 0xff, 0xaf, 0xff, 0xca, 0xff, 0xe4, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0x03, 0x00, 0x11, 0x00, 0x25, 0x00, 0x36, 0x00, 0x42, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x51, 0x00, 0x59, 0x00, 0x51, 0x00, 0x3b, 0x00, 0x17, 0x00, 0xfc, 0xff, 0xe1, 0xff, 0xcd, 0xff, 0xc7, 0xff, 0xbf, 0xff, 0xb9, 0xff, 0xb3, 0xff, 0xa7, 0xff, 0x9c, 0xff, 0x95, 0xff, 0x8e, 0xff, 0x8b, 0xff, 0x95, 0xff, 0x9d, 0xff, 0xa6, 0xff, 0xbd, 0xff, 0xdb, 0xff, 0xf3, 0xff, 0x04, 0x00, 0x12, 0x00, 0x22, 0x00, 0x2f, 0x00, 0x39, 0x00, 0x41, 0x00, 0x4c, 0x00, 0x5f, 0x00, 0x68, 0x00, 0x70, 0x00, 0x87, 0x00, 0xa2, 0x00, 0xb1, 0x00, 0xb9, 0x00, 0xb9, 0x00, 0xb4, 0x00, 0xaa, 0x00, 0xa0, 0x00, 0x98, 0x00, 0x91, 0x00, 0x82, 0x00, 0x66, 0x00, 0x5b, 0x00, 0x50, 0x00, 0x4b, 0x00, 0x31, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x09, 0x00, 0x04, 0x00, 0x07, 0x00, 0x17, 0x00, 0x27, 0x00, 0x3e, 0x00, 0x45, 0x00, 0x38, 0x00, 0x1b, 0x00, 0xfa, 0xff, 0xd9, 0xff, 0xbe, 0xff, 0xaa, 0xff, 0x90, 0xff, 0x70, 0xff, 0x51, 0xff, 0x3c, 0xff, 0x41, 0xff, 0x4f, 0xff, 0x56, 0xff, 0x68, 0xff, 0x79, 0xff, 0x81, 0xff, 0x88, 0xff, 0x86, 0xff, 0x83, 0xff, 0x8e, 0xff, 0xab, 0xff, 0xd7, 0xff, 0x13, 0x00, 0x52, 0x00, 0x9a, 0x00, 0xf6, 0x00, 0x4d, 0x01, 0x7e, 0x01, 0x95, 0x01, 0x91, 0x01, 0x71, 0x01, 0x3d, 0x01, 0x08, 0x01, 0xd3, 0x00, 0x9d, 0x00, 0x66, 0x00, 0x2c, 0x00, 0xf4, 0xff, 0xb9, 0xff, 0x80, 0xff, 0x45, 0xff, 0x14, 0xff, 0xfd, 0xfe, 0x00, 0xff, 0x03, 0xff, 0x08, 0xff, 0x0b, 0xff, 0x0d, 0xff, 0x15, 0xff, 0x26, 0xff, 0x45, 0xff, 0x65, 0xff, 0x7f, 0xff, 0x98, 0xff, 0xaf, 0xff, 0xbb, 0xff, 0xca, 0xff, 0xe1, 0xff, 0xfe, 0xff, 0x1f, 0x00, 0x31, 0x00, 0x36, 0x00, 0x3b, 0x00, 0x63, 0x00, 0xa2, 0x00, 0xd5, 0x00, 0xf1, 0x00, 0xec, 0x00, 0xd3, 0x00, 0xaf, 0x00, 0x91, 0x00, 0x70, 0x00, 0x54, 0x00, 0x41, 0x00, 0x40, 0x00, 0x39, 0x00, 0x31, 0x00, 0x36, 0x00, 0x46, 0x00, 0x59, 0x00, 0x65, 0x00, 0x5c, 0x00, 0x41, 0x00, 0x24, 0x00, 0x0d, 0x00, 0xf9, 0xff, 0xdf, 0xff, 0xc7, 0xff, 0xa9, 0xff, 0x92, 0xff, 0x7a, 0xff, 0x5e, 0xff, 0x4c, 0xff, 0x3d, 0xff, 0x3d, 0xff, 0x40, 0xff, 0x53, 0xff, 0x70, 0xff, 0x9b, 0xff, 0xd2, 0xff, 0x07, 0x00, 0x42, 0x00, 0x72, 0x00, 0x9e, 0x00, 0xbf, 0x00, 0xd2, 0x00, 0xce, 0x00, 0xc9, 0x00, 0xbf, 0x00, 0xa7, 0x00, 0x81, 0x00, 0x5b, 0x00, 0x36, 0x00, 0x20, 0x00, 0x09, 0x00, 0xf3, 0xff, 0xe1, 0xff, 0xd6, 0xff, 0xca, 0xff, 0xba, 0xff, 0xa7, 0xff, 0x92, 0xff, 0x8b, 0xff, 0x86, 0xff, 0x86, 0xff, 0x76, 0xff, 0x63, 0xff, 0x51, 0xff, 0x45, 0xff, 0x4c, 0xff, 0x58, 0xff, 0x77, 0xff, 0xb4, 0xff, 0xf7, 0xff, 0x3b, 0x00, 0x82, 0x00, 0xad, 0x00, 0xbe, 0x00, 0xa7, 0x00, 0x7a, 0x00, 0x40, 0x00, 0x08, 0x00, 0xd4, 0xff, 0xaa, 0xff, 0x90, 0xff, 0x7b, 0xff, 0x77, 0xff, 0x83, 0xff, 0x9d, 0xff, 0xc8, 0xff, 0xf5, 0xff, 0x1b, 0x00, 0x38, 0x00, 0x4d, 0x00, 0x63, 0x00, 0x75, 0x00, 0x8e, 0x00, 0x9f, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x9f, 0x00, 0x9b, 0x00, 0x8c, 0x00, 0x80, 0x00, 0x70, 0x00, 0x64, 0x00, 0x5a, 0x00, 0x4d, 0x00, 0x3b, 0x00, 0x2a, 0x00, 0x16, 0x00, 0xfa, 0xff, 0xdb, 0xff, 0xb3, 0xff, 0x88, 0xff, 0x68, 0xff, 0x5d, 0xff, 0x60, 0xff, 0x63, 0xff, 0x68, 0xff, 0x71, 0xff, 0x79, 0xff, 0x88, 0xff, 0x9b, 0xff, 0xc5, 0xff, 0x03, 0x00, 0x4d, 0x00, 0x96, 0x00, 0xcd, 0x00, 0xf3, 0x00, 0x13, 0x01, 0x1d, 0x01, 0x17, 0x01, 0xfb, 0x00, 0xd5, 0x00, 0xaa, 0x00, 0x7a, 0x00, 0x54, 0x00, 0x2f, 0x00, 0x06, 0x00, 0xdb, 0xff, 0xaf, 0xff, 0x8e, 0xff, 0x72, 0xff, 0x56, 0xff, 0x45, 0xff, 0x37, 0xff, 0x2d, 0xff, 0x32, 0xff, 0x38, 0xff, 0x4e, 0xff, 0x5b, 0xff, 0x6a, 0xff, 0x86, 0xff, 0xa9, 0xff, 0xcc, 0xff, 0xe0, 0xff, 0xf7, 0xff, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x1a, 0x00, 0x24, 0x00, 0x36, 0x00, 0x55, 0x00, 0x7a, 0x00, 0x9f, 0x00, 0xc1, 0x00, 0xdd, 0x00, 0xf3, 0x00, 0xfb, 0x00, 0xf3, 0x00, 0xd9, 0x00, 0xb9, 0x00, 0x8e, 0x00, 0x50, 0x00, 0x12, 0x00, 0xdb, 0xff, 0xb3, 0xff, 0x8b, 0xff, 0x66, 0xff, 0x40, 0xff, 0x23, 0xff, 0x1c, 0xff, 0x14, 0xff, 0x0d, 0xff, 0x05, 0xff, 0x05, 0xff, 0x12, 0xff, 0x1d, 0xff, 0x2c, 0xff, 0x40, 0xff, 0x5e, 0xff, 0x81, 0xff, 0xb6, 0xff, 0xf9, 0xff, 0x2c, 0x00, 0x5e, 0x00, 0x8c, 0x00, 0xad, 0x00, 0xc9, 0x00, 0xe3, 0x00, 0xfe, 0x00, 0x12, 0x01, 0x22, 0x01, 0x25, 0x01, 0x0d, 0x01, 0xee, 0x00, 0xce, 0x00, 0xa5, 0x00, 0x73, 0x00, 0x4b, 0x00, 0x2c, 0x00, 0x0e, 0x00, 0xf4, 0xff, 0xdc, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xd9, 0xff, 0xdf, 0xff, 0xd1, 0xff, 0xbe, 0xff, 0xa5, 0xff, 0x95, 0xff, 0x88, 0xff, 0x70, 0xff, 0x63, 0xff, 0x5c, 0xff, 0x6a, 0xff, 0x89, 0xff, 0xaf, 0xff, 0xca, 0xff, 0xde, 0xff, 0xed, 0xff, 0xff, 0xff, 0x0c, 0x00, 0x20, 0x00, 0x4b, 0x00, 0x69, 0x00, 0x80, 0x00, 0x93, 0x00, 0x9f, 0x00, 0xaf, 0x00, 0xb9, 0x00, 0xb9, 0x00, 0xb2, 0x00, 0xaf, 0x00, 0x98, 0x00, 0x78, 0x00, 0x4d, 0x00, 0x1a, 0x00, 0xe6, 0xff, 0xb1, 0xff, 0x8b, 0xff, 0x70, 0xff, 0x5e, 0xff, 0x49, 0xff, 0x37, 0xff, 0x29, 0xff, 0x2d, 0xff, 0x4f, 0xff, 0x80, 0xff, 0xb4, 0xff, 0xe8, 0xff, 0x16, 0x00, 0x3e, 0x00, 0x72, 0x00, 0x99, 0x00, 0xb4, 0x00, 0xb9, 0x00, 0xb1, 0x00, 0xa8, 0x00, 0x9d, 0x00, 0x8e, 0x00, 0x69, 0x00, 0x43, 0x00, 0x1f, 0x00, 0xfc, 0xff, 0xdb, 0xff, 0xbd, 0xff, 0xb1, 0xff, 0xb5, 0xff, 0xb4, 0xff, 0xb8, 0xff, 0xca, 0xff, 0xe0, 0xff, 0xf8, 0xff, 0x1c, 0x00, 0x2f, 0x00, 0x38, 0x00, 0x36, 0x00, 0x2c, 0x00, 0x10, 0x00, 0xe5, 0xff, 0xaf, 0xff, 0x77, 0xff, 0x4e, 0xff, 0x31, 0xff, 0x1e, 0xff, 0x27, 0xff, 0x3a, 0xff, 0x4f, 0xff, 0x7e, 0xff, 0x97, 0xff, 0xb6, 0xff, 0xe9, 0xff, 0x17, 0x00, 0x32, 0x00, 0x46, 0x00, 0x51, 0x00, 0x56, 0x00, 0x59, 0x00, 0x64, 0x00, 0x73, 0x00, 0x89, 0x00, 0x9a, 0x00, 0xae, 0x00, 0xb7, 0x00, 0xb9, 0x00, 0xae, 0x00, 0xa2, 0x00, 0x8f, 0x00, 0x6f, 0x00, 0x46, 0x00, 0x21, 0x00, 0x01, 0x00, 0xed, 0xff, 0xe1, 0xff, 0xd9, 0xff, 0xd1, 0xff, 0xca, 0xff, 0xc8, 0xff, 0xc4, 0xff, 0xcb, 0xff, 0xd4, 0xff, 0xdf, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xd9, 0xff, 0xc4, 0xff, 0xb0, 0xff, 0x9d, 0xff, 0x8f, 0xff, 0x8f, 0xff, 0x91, 0xff, 0x94, 0xff, 0xa2, 0xff, 0xb4, 0xff, 0xd6, 0xff, 0x00, 0x00, 0x13, 0x00, 0x19, 0x00, 0x11, 0x00, 0x09, 0x00, 0x02, 0x00, 0x0b, 0x00, 0x24, 0x00, 0x40, 0x00, 0x53, 0x00, 0x62, 0x00, 0x79, 0x00, 0x95, 0x00, 0xa6, 0x00, 0xa2, 0x00, 0x92, 0x00, 0x7b, 0x00, 0x5f, 0x00, 0x4d, 0x00, 0x48, 0x00, 0x40, 0x00, 0x40, 0x00, 0x42, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x3a, 0x00, 0x29, 0x00, 0x1c, 0x00, 0x09, 0x00, 0xfa, 0xff, 0xe3, 0xff, 0xc7, 0xff, 0xa5, 0xff, 0x7f, 0xff, 0x5a, 0xff, 0x3a, 0xff, 0x25, 0xff, 0x1b, 0xff, 0x1a, 0xff, 0x1d, 0xff, 0x27, 0xff, 0x40, 0xff, 0x5e, 0xff, 0x7e, 0xff, 0xa6, 0xff, 0xc2, 0xff, 0xe9, 0xff, 0x0f, 0x00, 0x2e, 0x00, 0x4f, 0x00, 0x6c, 0x00, 0x94, 0x00, 0xb6, 0x00, 0xdf, 0x00, 0xf7, 0x00, 0xfb, 0x00, 0xea, 0x00, 0xc0, 0x00, 0x89, 0x00, 0x4e, 0x00, 0x19, 0x00, 0xed, 0xff, 0xce, 0xff, 0xbc, 0xff, 0xac, 0xff, 0xa7, 0xff, 0xab, 0xff, 0xb2, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb0, 0xff, 0xab, 0xff, 0xb3, 0xff, 0xc8, 0xff, 0xe6, 0xff, 0x0f, 0x00, 0x3a, 0x00, 0x61, 0x00, 0x79, 0x00, 0x86, 0x00, 0x8e, 0x00, 0x89, 0x00, 0x80, 0x00, 0x71, 0x00, 0x68, 0x00, 0x5b, 0x00, 0x4a, 0x00, 0x2f, 0x00, 0x0d, 0x00, 0xe5, 0xff, 0xc0, 0xff, 0xa3, 0xff, 0x93, 0xff, 0x80, 0xff, 0x79, 0xff, 0x7d, 0xff, 0x8f, 0xff, 0xb0, 0xff, 0xd9, 0xff, 0xfe, 0xff, 0x13, 0x00, 0x26, 0x00, 0x40, 0x00, 0x51, 0x00, 0x58, 0x00, 0x4d, 0x00, 0x30, 0x00, 0x13, 0x00, 0xf5, 0xff, 0xdc, 0xff, 0xcc, 0xff, 0xbe, 0xff, 0xbc, 0xff, 0xc9, 0xff, 0xe5, 0xff, 0x00, 0x00, 0x06, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xef, 0xff, 0xe5, 0xff, 0xd9, 0xff, 0xd4, 0xff, 0xe1, 0xff, 0xf5, 0xff, 0x0b, 0x00, 0x28, 0x00, 0x46, 0x00, 0x65, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x69, 0x00, 0x6c, 0x00, 0x6a, 0x00, 0x60, 0x00, 0x54, 0x00, 0x48, 0x00, 0x3e, 0x00, 0x3a, 0x00, 0x36, 0x00, 0x2b, 0x00, 0x1c, 0x00, 0x07, 0x00, 0xf3, 0xff, 0xe5, 0xff, 0xda, 0xff, 0xca, 0xff, 0xb1, 0xff, 0x97, 0xff, 0x7d, 0xff, 0x68, 0xff, 0x60, 0xff, 0x61, 0xff, 0x6d, 0xff, 0x83, 0xff, 0x9f, 0xff, 0xba, 0xff, 0xd0, 0xff, 0xde, 0xff, 0xe5, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xed, 0xff, 0xfb, 0xff, 0x03, 0x00, 0x11, 0x00, 0x1f, 0x00, 0x2c, 0x00, 0x30, 0x00, 0x33, 0x00, 0x44, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x48, 0x00, 0x4a, 0x00, 0x48, 0x00, 0x39, 0x00, 0x24, 0x00, 0x17, 0x00, 0x11, 0x00, 0x09, 0x00, 0x09, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00, 0xed, 0xff, 0xdd, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd0, 0xff, 0xdb, 0xff, 0xeb, 0xff, 0xfa, 0xff, 0x09, 0x00, 0x19, 0x00, 0x24, 0x00, 0x2d, 0x00, 0x36, 0x00, 0x4a, 0x00, 0x5f, 0x00, 0x65, 0x00, 0x60, 0x00, 0x4c, 0x00, 0x3e, 0x00, 0x21, 0x00, 0xfe, 0xff, 0xdc, 0xff, 0xbe, 0xff, 0xa8, 0xff, 0x98, 0xff, 0x96, 0xff, 0x91, 0xff, 0x97, 0xff, 0x9c, 0xff, 0x9b, 0xff, 0xa7, 0xff, 0xae, 0xff, 0xb2, 0xff, 0xb1, 0xff, 0xaf, 0xff, 0xa9, 0xff, 0xa4, 0xff, 0x9b, 0xff, 0xa0, 0xff, 0xb4, 0xff, 0xcc, 0xff, 0xeb, 0xff, 0x09, 0x00, 0x36, 0x00, 0x6c, 0x00, 0x95, 0x00, 0xb3, 0x00, 0xd0, 0x00, 0xee, 0x00, 0x01, 0x01, 0x14, 0x01, 0x1c, 0x01, 0x0c, 0x01, 0xfa, 0x00, 0xec, 0x00, 0xd1, 0x00, 0xae, 0x00, 0x8d, 0x00, 0x64, 0x00, 0x33, 0x00, 0xf9, 0xff, 0xbe, 0xff, 0x7e, 0xff, 0x48, 0xff, 0x23, 0xff, 0x11, 0xff, 0x0c, 0xff, 0x15, 0xff, 0x2b, 0xff, 0x43, 0xff, 0x67, 0xff, 0x96, 0xff, 0xc6, 0xff, 0xfc, 0xff, 0x21, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x26, 0x00, 0x1f, 0x00, 0x21, 0x00, 0x2d, 0x00, 0x42, 0x00, 0x59, 0x00, 0x65, 0x00, 0x66, 0x00, 0x5c, 0x00, 0x4a, 0x00, 0x2f, 0x00, 0x15, 0x00, 0x11, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x11, 0x00, 0xfa, 0xff, 0xde, 0xff, 0xca, 0xff, 0xbc, 0xff, 0xba, 0xff, 0xc0, 0xff, 0xc6, 0xff, 0xcc, 0xff, 0xd6, 0xff, 0xef, 0xff, 0x09, 0x00, 0x25, 0x00, 0x2f, 0x00, 0x25, 0x00, 0x01, 0x00, 0xdb, 0xff, 0xc8, 0xff, 0xc4, 0xff, 0xcc, 0xff, 0xd0, 0xff, 0xd3, 0xff, 0xdf, 0xff, 0xe9, 0xff, 0xfd, 0xff, 0x09, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x09, 0x00, 0x11, 0x00, 0x15, 0x00, 0x17, 0x00, 0x17, 0x00, 0x17, 0x00, 0x24, 0x00, 0x30, 0x00, 0x46, 0x00, 0x5d, 0x00, 0x77, 0x00, 0x83, 0x00, 0x88, 0x00, 0x85, 0x00, 0x7d, 0x00, 0x6b, 0x00, 0x50, 0x00, 0x2f, 0x00, 0x11, 0x00, 0xff, 0xff, 0xeb, 0xff, 0xd3, 0xff, 0xbc, 0xff, 0xa9, 0xff, 0x99, 0xff, 0x95, 0xff, 0x9b, 0xff, 0xa2, 0xff, 0xa6, 0xff, 0xa0, 0xff, 0x9e, 0xff, 0x98, 0xff, 0x8f, 0xff, 0x8d, 0xff, 0x97, 0xff, 0xac, 0xff, 0xbe, 0xff, 0xd3, 0xff, 0xe1, 0xff, 0xf3, 0xff, 0x0f, 0x00, 0x34, 0x00, 0x60, 0x00, 0x81, 0x00, 0x8d, 0x00, 0x8c, 0x00, 0x8a, 0x00, 0x77, 0x00, 0x5f, 0x00, 0x54, 0x00, 0x4f, 0x00, 0x48, 0x00, 0x34, 0x00, 0x1b, 0x00, 0x0b, 0x00, 0xff, 0xff, 0xf7, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x13, 0x00, 0x03, 0x00, 0xf1, 0xff, 0xe1, 0xff, 0xcf, 0xff, 0xbe, 0xff, 0xb2, 0xff, 0xa9, 0xff, 0x9d, 0xff, 0x8f, 0xff, 0x87, 0xff, 0x87, 0xff, 0x8f, 0xff, 0x9b, 0xff, 0x9c, 0xff, 0xaa, 0xff, 0xc0, 0xff, 0xcf, 0xff, 0xdd, 0xff, 0xef, 0xff, 0x03, 0x00, 0x0f, 0x00, 0x11, 0x00, 0x09, 0x00, 0x04, 0x00, 0x09, 0x00, 0x13, 0x00, 0x1b, 0x00, 0x1b, 0x00, 0x17, 0x00, 0x15, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x13, 0x00, 0xfe, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xf1, 0xff, 0x06, 0x00, 0x1b, 0x00, 0x31, 0x00, 0x48, 0x00, 0x61, 0x00, 0x79, 0x00, 0x98, 0x00, 0xc2, 0x00, 0xf0, 0x00, 0x0a, 0x01, 0x1a, 0x01, 0x19, 0x01, 0x04, 0x01, 0xe3, 0x00, 0xbd, 0x00, 0x93, 0x00, 0x5e, 0x00, 0x24, 0x00, 0xed, 0xff, 0xbc, 0xff, 0x8b, 0xff, 0x65, 0xff, 0x42, 0xff, 0x31, 0xff, 0x27, 0xff, 0x1b, 0xff, 0x1a, 0xff, 0x21, 0xff, 0x2b, 0xff, 0x41, 0xff, 0x60, 0xff, 0x7e, 0xff, 0x99, 0xff, 0xb1, 0xff, 0xca, 0xff, 0xdd, 0xff, 0xed, 0xff, 0xfb, 0xff, 0x09, 0x00, 0x0d, 0x00, 0x17, 0x00, 0x1e, 0x00, 0x1d, 0x00, 0x24, 0x00, 0x32, 0x00, 0x4a, 0x00, 0x6b, 0x00, 0x84, 0x00, 0x8d, 0x00, 0x84, 0x00, 0x75, 0x00, 0x65, 0x00, 0x59, 0x00, 0x51, 0x00, 0x46, 0x00, 0x36, 0x00, 0x22, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xf1, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xd8, 0xff, 0xd1, 0xff, 0xce, 0xff, 0xc4, 0xff, 0xc4, 0xff, 0xc0, 0xff, 0xbe, 0xff, 0xc6, 0xff, 0xcf, 0xff, 0xdd, 0xff, 0xf1, 0xff, 0x03, 0x00, 0x15, 0x00, 0x2d, 0x00, 0x37, 0x00, 0x3e, 0x00, 0x39, 0x00, 0x2a, 0x00, 0x0d, 0x00, 0xf3, 0xff, 0xdb, 0xff, 0xcc, 0xff, 0xc7, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xba, 0xff, 0xc2, 0xff, 0xce, 0xff, 0xe2, 0xff, 0xef, 0xff, 0x00, 0x00, 0x1a, 0x00, 0x37, 0x00, 0x5b, 0x00, 0x79, 0x00, 0x90, 0x00, 0x99, 0x00, 0x96, 0x00, 0x92, 0x00, 0x87, 0x00, 0x71, 0x00, 0x55, 0x00, 0x36, 0x00, 0x11, 0x00, 0xf5, 0xff, 0xdb, 0xff, 0xd1, 0xff, 0xd3, 0xff, 0xd0, 0xff, 0xd3, 0xff, 0xc4, 0xff, 0xb3, 0xff, 0xac, 0xff, 0xa9, 0xff, 0xbc, 0xff, 0xcf, 0xff, 0xeb, 0xff, 0x0d, 0x00, 0x2f, 0x00, 0x4c, 0x00, 0x5e, 0x00, 0x5d, 0x00, 0x42, 0x00, 0x27, 0x00, 0x15, 0x00, 0x0d, 0x00, 0x13, 0x00, 0x17, 0x00, 0x0b, 0x00, 0xfc, 0xff, 0xe6, 0xff, 0xd2, 0xff, 0xbe, 0xff, 0xb6, 0xff, 0xb2, 0xff, 0xad, 0xff, 0xa8, 0xff, 0xac, 0xff, 0xba, 0xff, 0xca, 0xff, 0xe0, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x09, 0x00, 0x03, 0x00, 0xff, 0xff, 0xf7, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0f, 0x00, 0x1d, 0x00, 0x33, 0x00, 0x48, 0x00, 0x5c, 0x00, 0x63, 0x00, 0x6b, 0x00, 0x66, 0x00, 0x5c, 0x00, 0x42, 0x00, 0x24, 0x00, 0x07, 0x00, 0xef, 0xff, 0xdd, 0xff, 0xc9, 0xff, 0xba, 0xff, 0xae, 0xff, 0xa3, 0xff, 0x97, 0xff, 0x8f, 0xff, 0x91, 0xff, 0xa0, 0xff, 0xb4, 0xff, 0xc0, 0xff, 0xd4, 0xff, 0xe4, 0xff, 0xff, 0xff, 0x11, 0x00, 0x1f, 0x00, 0x3e, 0x00, 0x66, 0x00, 0x97, 0x00, 0xc1, 0x00, 0xd9, 0x00, 0xe8, 0x00, 0xf6, 0x00, 0xee, 0x00, 0xd1, 0x00, 0xae, 0x00, 0x7f, 0x00, 0x4a, 0x00, 0x15, 0x00, 0xed, 0xff, 0xd1, 0xff, 0xbc, 0xff, 0xae, 0xff, 0xaa, 0xff, 0xad, 0xff, 0xb0, 0xff, 0xb2, 0xff, 0xaf, 0xff, 0xb3, 0xff, 0xba, 0xff, 0xc0, 0xff, 0xcf, 0xff, 0xe0, 0xff, 0xed, 0xff, 0xf1, 0xff, 0xfe, 0xff, 0x0f, 0x00, 0x24, 0x00, 0x33, 0x00, 0x42, 0x00, 0x55, 0x00, 0x5e, 0x00, 0x6d, 0x00, 0x79, 0x00, 0x81, 0x00, 0x84, 0x00, 0x7f, 0x00, 0x73, 0x00, 0x5e, 0x00, 0x40, 0x00, 0x1c, 0x00, 0xf9, 0xff, 0xd6, 0xff, 0xb8, 0xff, 0x9a, 0xff, 0x83, 0xff, 0x77, 0xff, 0x72, 0xff, 0x7b, 0xff, 0x87, 0xff, 0x8b, 0xff, 0x8b, 0xff, 0x8b, 0xff, 0x8b, 0xff, 0x91, 0xff, 0x9b, 0xff, 0xa5, 0xff, 0xb0, 0xff, 0xb1, 0xff, 0xb0, 0xff, 0xa9, 0xff, 0xa4, 0xff, 0xa8, 0xff, 0xaf, 0xff, 0xb0, 0xff, 0xaa, 0xff, 0xa8, 0xff, 0xa6, 0xff, 0xa6, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xaf, 0xff, 0xc2, 0xff, 0xd2, 0xff, 0xe5, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x03, 0x00, 0x09, 0x00, 0x0b, 0x00, 0x13, 0x00, 0x22, 0x00, 0x33, 0x00, 0x40, 0x00, 0x44, 0x00, 0x53, 0x00, 0x6b, 0x00, 0x8d, 0x00, 0xa4, 0x00, 0xb4, 0x00, 0xc8, 0x00, 0xd0, 0x00, 0xcd, 0x00, 0xc4, 0x00, 0xbc, 0x00, 0xc0, 0x00, 0xd1, 0x00, 0xdb, 0x00, 0xdd, 0x00, 0xd9, 0x00, 0xd5, 0x00, 0xcc, 0x00, 0xbc, 0x00, 0xb5, 0x00, 0xa8, 0x00, 0x83, 0x00, 0x4a, 0x00, 0x1b, 0x00, 0xf3, 0xff, 0xc9, 0xff, 0x9c, 0xff, 0x73, 0xff, 0x58, 0xff, 0x4a, 0xff, 0x3d, 0xff, 0x36, 0xff, 0x2e, 0xff, 0x27, 0xff, 0x29, 0xff, 0x2f, 0xff, 0x3e, 0xff, 0x4c, 0xff, 0x56, 0xff, 0x64, 0xff, 0x6e, 0xff, 0x78, 0xff, 0x7d, 0xff, 0x80, 0xff, 0x85, 0xff, 0x97, 0xff, 0xb2, 0xff, 0xce, 0xff, 0xe9, 0xff, 0x06, 0x00, 0x20, 0x00, 0x36, 0x00, 0x44, 0x00, 0x46, 0x00, 0x4e, 0x00, 0x5d, 0x00, 0x67, 0x00, 0x69, 0x00, 0x68, 0x00, 0x6c, 0x00, 0x75, 0x00, 0x87, 0x00, 0xa0, 0x00, 0xa8, 0x00, 0x97, 0x00, 0x75, 0x00, 0x4e, 0x00, 0x2f, 0x00, 0x13, 0x00, 0xfb, 0xff, 0xe4, 0xff, 0xcf, 0xff, 0xbc, 0xff, 0xa6, 0xff, 0x8f, 0xff, 0x7d, 0xff, 0x78, 0xff, 0x7f, 0xff, 0x91, 0xff, 0xaa, 0xff, 0xce, 0xff, 0xf7, 0xff, 0x20, 0x00, 0x40, 0x00, 0x58, 0x00, 0x69, 0x00, 0x7d, 0x00, 0x84, 0x00, 0x7d, 0x00, 0x6b, 0x00, 0x54, 0x00, 0x40, 0x00, 0x37, 0x00, 0x39, 0x00, 0x46, 0x00, 0x5a, 0x00, 0x61, 0x00, 0x53, 0x00, 0x3c, 0x00, 0x2a, 0x00, 0x13, 0x00, 0x00, 0x00, 0xf3, 0xff, 0xe5, 0xff, 0xdb, 0xff, 0xc7, 0xff, 0xad, 0xff, 0x91, 0xff, 0x7a, 0xff, 0x70, 0xff, 0x6c, 0xff, 0x77, 0xff, 0x81, 0xff, 0x91, 0xff, 0xa3, 0xff, 0xab, 0xff, 0xb8, 0xff, 0xbe, 0xff, 0xc4, 0xff, 0xd2, 0xff, 0xde, 0xff, 0xe9, 0xff, 0xf3, 0xff, 0x03, 0x00, 0x15, 0x00, 0x27, 0x00, 0x32, 0x00, 0x37, 0x00, 0x39, 0x00, 0x37, 0x00, 0x44, 0x00, 0x55, 0x00, 0x61, 0x00, 0x64, 0x00, 0x67, 0x00, 0x62, 0x00, 0x5b, 0x00, 0x51, 0x00, 0x3e, 0x00, 0x23, 0x00, 0x06, 0x00, 0xf3, 0xff, 0xdd, 0xff, 0xd9, 0xff, 0xe0, 0xff, 0xfa, 0xff, 0x13, 0x00, 0x32, 0x00, 0x44, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x36, 0x00, 0x1f, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x13, 0x00, 0x1b, 0x00, 0x17, 0x00, 0x0b, 0x00, 0x01, 0x00, 0xff, 0xff, 0xf5, 0xff, 0xe7, 0xff, 0xdf, 0xff, 0xe5, 0xff, 0xef, 0xff, 0x06, 0x00, 0x1a, 0x00, 0x21, 0x00, 0x26, 0x00, 0x2b, 0x00, 0x2a, 0x00, 0x22, 0x00, 0x1a, 0x00, 0x0b, 0x00, 0xf7, 0xff, 0xe5, 0xff, 0xd1, 0xff, 0xb8, 0xff, 0xa6, 0xff, 0x98, 0xff, 0x93, 0xff, 0x93, 0xff, 0x91, 0xff, 0x8f, 0xff, 0x99, 0xff, 0xa8, 0xff, 0xae, 0xff, 0xb3, 0xff, 0xb6, 0xff, 0xbc, 0xff, 0xca, 0xff, 0xdb, 0xff, 0xed, 0xff, 0xfc, 0xff, 0x13, 0x00, 0x37, 0x00, 0x60, 0x00, 0x8d, 0x00, 0xae, 0x00, 0xc5, 0x00, 0xcb, 0x00, 0xbd, 0x00, 0xa6, 0x00, 0x89, 0x00, 0x6d, 0x00, 0x57, 0x00, 0x48, 0x00, 0x31, 0x00, 0x15, 0x00, 0xfb, 0xff, 0xe4, 0xff, 0xca, 0xff, 0xaa, 0xff, 0x85, 0xff, 0x64, 0xff, 0x4e, 0xff, 0x42, 0xff, 0x49, 0xff, 0x58, 0xff, 0x6c, 0xff, 0x8b, 0xff, 0xa6, 0xff, 0xc0, 0xff, 0xda, 0xff, 0xfa, 0xff, 0x13, 0x00, 0x28, 0x00, 0x34, 0x00, 0x40, 0x00, 0x4d, 0x00, 0x5b, 0x00, 0x6f, 0x00, 0x83, 0x00, 0x9d, 0x00, 0xb0, 0x00, 0xb4, 0x00, 0xaa, 0x00, 0x91, 0x00, 0x67, 0x00, 0x3e, 0x00, 0x1c, 0x00, 0x03, 0x00, 0xf5, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe5, 0xff, 0xde, 0xff, 0xd0, 0xff, 0xc0, 0xff, 0xbc, 0xff, 0xba, 0xff, 0xbe, 0xff, 0xc6, 0xff, 0xd5, 0xff, 0xe3, 0xff, 0xf3, 0xff, 0x03, 0x00, 0x13, 0x00, 0x1b, 0x00, 0x17, 0x00, 0x09, 0x00, 0xf5, 0xff, 0xe7, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xf5, 0xff, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0xf9, 0xff, 0xe3, 0xff, 0xcc, 0xff, 0xb8, 0xff, 0xad, 0xff, 0xaf, 0xff, 0xc0, 0xff, 0xd5, 0xff, 0xf5, 0xff, 0x15, 0x00, 0x2d, 0x00, 0x3a, 0x00, 0x58, 0x00, 0x73, 0x00, 0x7d, 0x00, 0x7b, 0x00, 0x6b, 0x00, 0x5a, 0x00, 0x44, 0x00, 0x33, 0x00, 0x2b, 0x00, 0x25, 0x00, 0x26, 0x00, 0x2c, 0x00, 0x23, 0x00, 0x21, 0x00, 0x17, 0x00, 0x09, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xed, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xd5, 0xff, 0xc7, 0xff, 0xb8, 0xff, 0xaa, 0xff, 0xa3, 0xff, 0xa8, 0xff, 0xb1, 0xff, 0xb9, 0xff, 0xbe, 0xff, 0xc5, 0xff, 0xd0, 0xff, 0xe1, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x08, 0x00, 0x13, 0x00, 0x18, 0x00, 0x16, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x13, 0x00, 0x1d, 0x00, 0x29, 0x00, 0x34, 0x00, 0x3d, 0x00, 0x46, 0x00, 0x48, 0x00, 0x45, 0x00, 0x42, 0x00, 0x3a, 0x00, 0x30, 0x00, 0x28, 0x00, 0x1a, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xee, 0xff, 0xe5, 0xff, 0xe2, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xf2, 0xff, 0xe6, 0xff, 0xda, 0xff, 0xd0, 0xff, 0xcc, 0xff, 0xd9, 0xff, 0xef, 0xff, 0x03, 0x00, 0x11, 0x00, 0x16, 0x00, 0x13, 0x00, 0x10, 0x00, 0x11, 0x00, 0x19, 0x00, 0x2f, 0x00, 0x4a, 0x00, 0x63, 0x00, 0x75, 0x00, 0x85, 0x00, 0x96, 0x00, 0x98, 0x00, 0x8b, 0x00, 0x77, 0x00, 0x5f, 0x00, 0x45, 0x00, 0x2d, 0x00, 0x1a, 0x00, 0x06, 0x00, 0xf3, 0xff, 0xe3, 0xff, 0xd3, 0xff, 0xc4, 0xff, 0xc1, 0xff, 0xbf, 0xff, 0xba, 0xff, 0xb2, 0xff, 0xa9, 0xff, 0xa2, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xad, 0xff, 0xb5, 0xff, 0xbd, 0xff, 0xcc, 0xff, 0xdc, 0xff, 0xe7, 0xff, 0xe8, 0xff, 0xeb, 0xff, 0xf1, 0xff, 0xfe, 0xff, 0x0a, 0x00, 0x13, 0x00, 0x18, 0x00, 0x1b, 0x00, 0x22, 0x00, 0x27, 0x00, 0x25, 0x00, 0x23, 0x00, 0x24, 0x00, 0x2c, 0x00, 0x37, 0x00, 0x48, 0x00, 0x4f, 0x00, 0x52, 0x00, 0x61, 0x00, 0x71, 0x00, 0x72, 0x00, 0x6f, 0x00, 0x6a, 0x00, 0x61, 0x00, 0x4b, 0x00, 0x2c, 0x00, 0x0f, 0x00, 0xf6, 0xff, 0xe4, 0xff, 0xd9, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xdc, 0xff, 0xe5, 0xff, 0xe3, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xdc, 0xff, 0xd7, 0xff, 0xcc, 0xff, 0xc9, 0xff, 0xc6, 0xff, 0xc1, 0xff, 0xbb, 0xff, 0xb7, 0xff, 0xb4, 0xff, 0xae, 0xff, 0xb4, 0xff, 0xbf, 0xff, 0xc6, 0xff, 0xca, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xda, 0xff, 0xe5, 0xff, 0xf5, 0xff, 0x04, 0x00, 0x13, 0x00, 0x1e, 0x00, 0x28, 0x00, 0x36, 0x00, 0x43, 0x00, 0x4f, 0x00, 0x5f, 0x00, 0x64, 0x00, 0x6d, 0x00, 0x70, 0x00, 0x6c, 0x00, 0x6f, 0x00, 0x70, 0x00, 0x6c, 0x00, 0x69, 0x00, 0x6b, 0x00, 0x62, 0x00, 0x54, 0x00, 0x3d, 0x00, 0x2c, 0x00, 0x1b, 0x00, 0x08, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xe4, 0xff, 0xd3, 0xff, 0xc3, 0xff, 0xae, 0xff, 0x9c, 0xff, 0x88, 0xff, 0x78, 0xff, 0x71, 0xff, 0x78, 0xff, 0x80, 0xff, 0x89, 0xff, 0x8e, 0xff, 0x91, 0xff, 0x96, 0xff, 0xa0, 0xff, 0xb0, 0xff, 0xc6, 0xff, 0xda, 0xff, 0xf5, 0xff, 0x0d, 0x00, 0x23, 0x00, 0x3d, 0x00, 0x61, 0x00, 0x82, 0x00, 0xa1, 0x00, 0xbc, 0x00, 0xd1, 0x00, 0xeb, 0x00, 0xfa, 0x00, 0x02, 0x01, 0xfc, 0x00, 0xe1, 0x00, 0xba, 0x00, 0x8a, 0x00, 0x54, 0x00, 0x1e, 0x00, 0xf5, 0xff, 0xd1, 0xff, 0xbb, 0xff, 0xa7, 0xff, 0x94, 0xff, 0x89, 0xff, 0x85, 0xff, 0x81, 0xff, 0x80, 0xff, 0x7e, 0xff, 0x80, 0xff, 0x86, 0xff, 0x8f, 0xff, 0x9c, 0xff, 0xa5, 0xff, 0xae, 0xff, 0xb1, 0xff, 0xb5, 0xff, 0xb9, 0xff, 0xc2, 0xff, 0xce, 0xff, 0xd8, 0xff, 0xe4, 0xff, 0xf3, 0xff, 0x01, 0x00, 0x10, 0x00, 0x18, 0x00, 0x1a, 0x00, 0x21, 0x00, 0x27, 0x00, 0x32, 0x00, 0x3b, 0x00, 0x43, 0x00, 0x45, 0x00, 0x45, 0x00, 0x44, 0x00, 0x38, 0x00, 0x2b, 0x00, 0x22, 0x00, 0x14, 0x00, 0x03, 0x00, 0xf8, 0xff, 0xf2, 0xff, 0xf7, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x12, 0x00, 0x13, 0x00, 0x0f, 0x00, 0x02, 0x00, 0xf0, 0xff, 0xdf, 0xff, 0xd2, 0xff, 0xc3, 0xff, 0xbe, 0xff, 0xbb, 0xff, 0xbe, 0xff, 0xc5, 0xff, 0xc6, 0xff, 0xca, 0xff, 0xd1, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd6, 0xff, 0xd7, 0xff, 0xe0, 0xff, 0xf0, 0xff, 0xff, 0xff, 0x05, 0x00, 0x11, 0x00, 0x17, 0x00, 0x1f, 0x00, 0x2c, 0x00, 0x45, 0x00, 0x5f, 0x00, 0x71, 0x00, 0x7f, 0x00, 0x8a, 0x00, 0x94, 0x00, 0x97, 0x00, 0x8d, 0x00, 0x7d, 0x00, 0x64, 0x00, 0x4c, 0x00, 0x37, 0x00, 0x29, 0x00, 0x24, 0x00, 0x16, 0x00, 0x09, 0x00, 0xf6, 0xff, 0xe2, 0xff, 0xcf, 0xff, 0xc1, 0xff, 0xba, 0xff, 0xb5, 0xff, 0xb0, 0xff, 0xa7, 0xff, 0xa9, 0xff, 0xb0, 0xff, 0xc1, 0xff, 0xd5, 0xff, 0xe7, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x1b, 0x00, 0x29, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x25, 0x00, 0x23, 0x00, 0x29, 0x00, 0x2f, 0x00, 0x30, 0x00, 0x34, 0x00, 0x38, 0x00, 0x39, 0x00, 0x35, 0x00, 0x34, 0x00, 0x3d, 0x00, 0x48, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x48, 0x00, 0x45, 0x00, 0x3d, 0x00, 0x35, 0x00, 0x2a, 0x00, 0x19, 0x00, 0x05, 0x00, 0xea, 0xff, 0xc7, 0xff, 0xa8, 0xff, 0x87, 0xff, 0x70, 0xff, 0x5c, 0xff, 0x49, 0xff, 0x43, 0xff, 0x3f, 0xff, 0x43, 0xff, 0x4f, 0xff, 0x5e, 0xff, 0x70, 0xff, 0x7e, 0xff, 0x8c, 0xff, 0xa2, 0xff, 0xbb, 0xff, 0xd4, 0xff, 0xf1, 0xff, 0x09, 0x00, 0x24, 0x00, 0x49, 0x00, 0x76, 0x00, 0x9b, 0x00, 0xb9, 0x00, 0xc9, 0x00, 0xc8, 0x00, 0xbe, 0x00, 0xab, 0x00, 0x94, 0x00, 0x85, 0x00, 0x7b, 0x00, 0x6a, 0x00, 0x53, 0x00, 0x3d, 0x00, 0x25, 0x00, 0x0f, 0x00, 0xf9, 0xff, 0xe1, 0xff, 0xd1, 0xff, 0xc7, 0xff, 0xc3, 0xff, 0xbf, 0xff, 0xb8, 0xff, 0xb8, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xbb, 0xff, 0xbd, 0xff, 0xbb, 0xff, 0xb8, 0xff, 0xbb, 0xff, 0xbd, 0xff, 0xc2, 0xff, 0xc7, 0xff, 0xc9, 0xff, 0xcf, 0xff, 0xd7, 0xff, 0xe2, 0xff, 0xec, 0xff, 0xfb, 0xff, 0x14, 0x00, 0x2c, 0x00, 0x3c, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x42, 0x00, 0x4a, 0x00, 0x55, 0x00, 0x5d, 0x00, 0x61, 0x00, 0x61, 0x00, 0x60, 0x00, 0x54, 0x00, 0x42, 0x00, 0x2d, 0x00, 0x1b, 0x00, 0x12, 0x00, 0x09, 0x00, 0x05, 0x00, 0x03, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xe5, 0xff, 0xcf, 0xff, 0xb8, 0xff, 0xa8, 0xff, 0xa1, 0xff, 0xa7, 0xff, 0xb6, 0xff, 0xc6, 0xff, 0xd4, 0xff, 0xe2, 0xff, 0xef, 0xff, 0x00, 0x00, 0x13, 0x00, 0x20, 0x00, 0x28, 0x00, 0x27, 0x00, 0x28, 0x00, 0x22, 0x00, 0x1b, 0x00, 0x10, 0x00, 0x03, 0x00, 0xfd, 0xff, 0xf0, 0xff, 0xe2, 0xff, 0xd4, 0xff, 0xca, 0xff, 0xcc, 0xff, 0xd3, 0xff, 0xd6, 0xff, 0xd6, 0xff, 0xd1, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xd7, 0xff, 0xdf, 0xff, 0xe0, 0xff, 0xdf, 0xff, 0xdd, 0xff, 0xdf, 0xff, 0xe2, 0xff, 0xeb, 0xff, 0x00, 0x00, 0x17, 0x00, 0x25, 0x00, 0x34, 0x00, 0x48, 0x00, 0x60, 0x00, 0x77, 0x00, 0x8b, 0x00, 0xa3, 0x00, 0xbc, 0x00, 0xc7, 0x00, 0xc6, 0x00, 0xba, 0x00, 0xa1, 0x00, 0x86, 0x00, 0x71, 0x00, 0x57, 0x00, 0x3d, 0x00, 0x23, 0x00, 0x05, 0x00, 0xea, 0xff, 0xc9, 0xff, 0xb0, 0xff, 0x9f, 0xff, 0x96, 0xff, 0x92, 0xff, 0x94, 0xff, 0x98, 0xff, 0x99, 0xff, 0x94, 0xff, 0x8f, 0xff, 0x89, 0xff, 0x89, 0xff, 0x92, 0xff, 0x9e, 0xff, 0xb3, 0xff, 0xc9, 0xff, 0xe4, 0xff, 0xf9, 0xff, 0x03, 0x00, 0x12, 0x00, 0x18, 0x00, 0x21, 0x00, 0x2a, 0x00, 0x2e, 0x00, 0x29, 0x00, 0x1f, 0x00, 0x15, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x17, 0x00, 0x21, 0x00, 0x28, 0x00, 0x26, 0x00, 0x1b, 0x00, 0x12, 0x00, 0x10, 0x00, 0x12, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x15, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf0, 0xff, 0xf1, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xed, 0xff, 0xe8, 0xff, 0xe8, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x10, 0x00, 0x10, 0x00, 0x06, 0x00, 0xfe, 0xff, 0xf5, 0xff, 0xed, 0xff, 0xe7, 0xff, 0xdf, 0xff, 0xdc, 0xff, 0xe1, 0xff, 0xf0, 0xff, 0x00, 0x00, 0x13, 0x00, 0x28, 0x00, 0x3b, 0x00, 0x46, 0x00, 0x4a, 0x00, 0x42, 0x00, 0x37, 0x00, 0x2b, 0x00, 0x17, 0x00, 0x00, 0x00, 0xec, 0xff, 0xe5, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdb, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xcf, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xe3, 0xff, 0xed, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x16, 0x00, 0x1b, 0x00, 0x23, 0x00, 0x24, 0x00, 0x28, 0x00, 0x27, 0x00, 0x20, 0x00, 0x1b, 0x00, 0x1d, 0x00, 0x25, 0x00, 0x23, 0x00, 0x1a, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xf2, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe2, 0xff, 0xe9, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x06, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0f, 0x00, 0x16, 0x00, 0x1b, 0x00, 0x1e, 0x00, 0x27, 0x00, 0x2f, 0x00, 0x36, 0x00, 0x39, 0x00, 0x40, 0x00, 0x41, 0x00, 0x3b, 0x00, 0x35, 0x00, 0x2f, 0x00, 0x2a, 0x00, 0x1f, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x18, 0x00, 0x1b, 0x00, 0x1e, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x13, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf3, 0xff, 0xea, 0xff, 0xe0, 0xff, 0xd2, 0xff, 0xc6, 0xff, 0xbb, 0xff, 0xb4, 0xff, 0xb1, 0xff, 0xb8, 0xff, 0xbc, 0xff, 0xc3, 0xff, 0xc4, 0xff, 0xc7, 0xff, 0xcc, 0xff, 0xd7, 0xff, 0xe6, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xfa, 0xff, 0xf0, 0xff, 0xe8, 0xff, 0xe5, 0xff, 0xe3, 0xff, 0xe5, 0xff, 0xe8, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf7, 0xff, 0xfd, 0xff, 0xfa, 0xff, 0xf7, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf3, 0xff, 0x01, 0x00, 0x0d, 0x00, 0x1c, 0x00, 0x25, 0x00, 0x2b, 0x00, 0x30, 0x00, 0x34, 0x00, 0x34, 0x00, 0x2b, 0x00, 0x20, 0x00, 0x19, 0x00, 0x12, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0f, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x11, 0x00, 0x11, 0x00, 0x10, 0x00, 0x13, 0x00, 0x17, 0x00, 0x18, 0x00, 0x16, 0x00, 0x16, 0x00, 0x1e, 0x00, 0x21, 0x00, 0x21, 0x00, 0x1f, 0x00, 0x24, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1e, 0x00, 0x1e, 0x00, 0x1e, 0x00, 0x1e, 0x00, 0x26, 0x00, 0x2e, 0x00, 0x37, 0x00, 0x36, 0x00, 0x29, 0x00, 0x1d, 0x00, 0x0f, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf7, 0xff, 0xf2, 0xff, 0xe8, 0xff, 0xdc, 0xff, 0xd6, 0xff, 0xce, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xd5, 0xff, 0xd9, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd4, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xce, 0xff, 0xd0, 0xff, 0xd1, 0xff, 0xd3, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd6, 0xff, 0xd2, 0xff, 0xce, 0xff, 0xd2, 0xff, 0xd8, 0xff, 0xe0, 0xff, 0xed, 0xff, 0xf7, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x1a, 0x00, 0x25, 0x00, 0x36, 0x00, 0x4b, 0x00, 0x5e, 0x00, 0x6f, 0x00, 0x77, 0x00, 0x7c, 0x00, 0x80, 0x00, 0x82, 0x00, 0x7a, 0x00, 0x6f, 0x00, 0x61, 0x00, 0x55, 0x00, 0x4b, 0x00, 0x45, 0x00, 0x45, 0x00, 0x42, 0x00, 0x3c, 0x00, 0x32, 0x00, 0x23, 0x00, 0x0f, 0x00, 0xf7, 0xff, 0xdf, 0xff, 0xc9, 0xff, 0xb9, 0xff, 0xad, 0xff, 0xa4, 0xff, 0x9d, 0xff, 0x96, 0xff, 0x8f, 0xff, 0x8c, 0xff, 0x8f, 0xff, 0x94, 0xff, 0x9b, 0xff, 0xa3, 0xff, 0xad, 0xff, 0xbb, 0xff, 0xd2, 0xff, 0xf3, 0xff, 0x15, 0x00, 0x38, 0x00, 0x56, 0x00, 0x71, 0x00, 0x87, 0x00, 0x98, 0x00, 0x99, 0x00, 0x8e, 0x00, 0x7d, 0x00, 0x69, 0x00, 0x59, 0x00, 0x47, 0x00, 0x37, 0x00, 0x26, 0x00, 0x18, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xe9, 0xff, 0xdc, 0xff, 0xd4, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xc4, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xd9, 0xff, 0xed, 0xff, 0xfd, 0xff, 0x0f, 0x00, 0x21, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x29, 0x00, 0x1e, 0x00, 0x11, 0x00, 0x07, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf1, 0xff, 0xe8, 0xff, 0xd9, 0xff, 0xc7, 0xff, 0xbd, 0xff, 0xb5, 0xff, 0xad, 0xff, 0xaf, 0xff, 0xb4, 0xff, 0xbe, 0xff, 0xcf, 0xff, 0xdf, 0xff, 0xe5, 0xff, 0xe7, 0xff, 0xed, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x15, 0x00, 0x24, 0x00, 0x2a, 0x00, 0x2f, 0x00, 0x35, 0x00, 0x3a, 0x00, 0x41, 0x00, 0x47, 0x00, 0x50, 0x00, 0x4a, 0x00, 0x39, 0x00, 0x24, 0x00, 0x0e, 0x00, 0xf9, 0xff, 0xe7, 0xff, 0xd8, 0xff, 0xca, 0xff, 0xba, 0xff, 0xa5, 0xff, 0x9b, 0xff, 0x93, 0xff, 0x91, 0xff, 0x96, 0xff, 0x9f, 0xff, 0xb1, 0xff, 0xc7, 0xff, 0xe5, 0xff, 0x00, 0x00, 0x1a, 0x00, 0x2e, 0x00, 0x3d, 0x00, 0x48, 0x00, 0x56, 0x00, 0x64, 0x00, 0x76, 0x00, 0x8a, 0x00, 0x95, 0x00, 0x95, 0x00, 0x8d, 0x00, 0x83, 0x00, 0x70, 0x00, 0x59, 0x00, 0x45, 0x00, 0x32, 0x00, 0x27, 0x00, 0x1a, 0x00, 0x08, 0x00, 0xfb, 0xff, 0xf0, 0xff, 0xe7, 0xff, 0xe5, 0xff, 0xe8, 0xff, 0xe2, 0xff, 0xd7, 0xff, 0xcb, 0xff, 0xbd, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xbe, 0xff, 0xcb, 0xff, 0xd4, 0xff, 0xdc, 0xff, 0xe0, 0xff, 0xdf, 0xff, 0xd9, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xdc, 0xff, 0xe5, 0xff, 0xee, 0xff, 0xf6, 0xff, 0x02, 0x00, 0x16, 0x00, 0x2d, 0x00, 0x38, 0x00, 0x3c, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x3a, 0x00, 0x27, 0x00, 0x26, 0x00, 0x27, 0x00, 0x2a, 0x00, 0x2c, 0x00, 0x2d, 0x00, 0x2a, 0x00, 0x22, 0x00, 0x1a, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfa, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf3, 0xff, 0xec, 0xff, 0xe2, 0xff, 0xd6, 0xff, 0xcb, 0xff, 0xc6, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc1, 0xff, 0xc4, 0xff, 0xc4, 0xff, 0xc1, 0xff, 0xc0, 0xff, 0xc4, 0xff, 0xcc, 0xff, 0xd7, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x08, 0x00, 0x10, 0x00, 0x1c, 0x00, 0x24, 0x00, 0x2f, 0x00, 0x3b, 0x00, 0x47, 0x00, 0x53, 0x00, 0x58, 0x00, 0x5f, 0x00, 0x6b, 0x00, 0x78, 0x00, 0x7b, 0x00, 0x73, 0x00, 0x67, 0x00, 0x5a, 0x00, 0x47, 0x00, 0x2e, 0x00, 0x12, 0x00, 0xfc, 0xff, 0xe7, 0xff, 0xd8, 0xff, 0xc6, 0xff, 0xb8, 0xff, 0xab, 0xff, 0xa2, 0xff, 0x9c, 0xff, 0x99, 0xff, 0x9a, 0xff, 0x9e, 0xff, 0xa7, 0xff, 0xab, 0xff, 0xae, 0xff, 0xac, 0xff, 0xaa, 0xff, 0xad, 0xff, 0xb5, 0xff, 0xc3, 0xff, 0xd0, 0xff, 0xdf, 0xff, 0xef, 0xff, 0x04, 0x00, 0x1c, 0x00, 0x2f, 0x00, 0x45, 0x00, 0x5e, 0x00, 0x75, 0x00, 0x86, 0x00, 0x93, 0x00, 0x9c, 0x00, 0x9f, 0x00, 0x9b, 0x00, 0x95, 0x00, 0x96, 0x00, 0x91, 0x00, 0x8c, 0x00, 0x84, 0x00, 0x79, 0x00, 0x6b, 0x00, 0x55, 0x00, 0x3a, 0x00, 0x1d, 0x00, 0x03, 0x00, 0xea, 0xff, 0xd3, 0xff, 0xbd, 0xff, 0xab, 0xff, 0x9c, 0xff, 0x8f, 0xff, 0x85, 0xff, 0x82, 0xff, 0x7f, 0xff, 0x80, 0xff, 0x85, 0xff, 0x8f, 0xff, 0x9a, 0xff, 0xa4, 0xff, 0xac, 0xff, 0xb3, 0xff, 0xb8, 0xff, 0xba, 0xff, 0xc1, 0xff, 0xc5, 0xff, 0xcf, 0xff, 0xde, 0xff, 0xf1, 0xff, 0x03, 0x00, 0x11, 0x00, 0x1d, 0x00, 0x27, 0x00, 0x32, 0x00, 0x37, 0x00, 0x38, 0x00, 0x3c, 0x00, 0x43, 0x00, 0x48, 0x00, 0x4d, 0x00, 0x4f, 0x00, 0x51, 0x00, 0x4d, 0x00, 0x4b, 0x00, 0x49, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x3c, 0x00, 0x3c, 0x00, 0x37, 0x00, 0x31, 0x00, 0x27, 0x00, 0x1d, 0x00, 0x10, 0x00, 0x00, 0x00, 0xef, 0xff, 0xdb, 0xff, 0xcc, 0xff, 0xc1, 0xff, 0xb8, 0xff, 0xb7, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xbb, 0xff, 0xc5, 0xff, 0xcd, 0xff, 0xd4, 0xff, 0xdb, 0xff, 0xe2, 0xff, 0xee, 0xff, 0xfd, 0xff, 0x08, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xfa, 0xff, 0xf1, 0xff, 0xec, 0xff, 0xeb, 0xff, 0xee, 0xff, 0xf4, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x14, 0x00, 0x20, 0x00, 0x28, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x2d, 0x00, 0x29, 0x00, 0x26, 0x00, 0x1f, 0x00, 0x18, 0x00, 0x12, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xe6, 0xff, 0xda, 0xff, 0xd1, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xc4, 0xff, 0xc7, 0xff, 0xca, 0xff, 0xd3, 0xff, 0xe1, 0xff, 0xf0, 0xff, 0x01, 0x00, 0x12, 0x00, 0x1e, 0x00, 0x22, 0x00, 0x1e, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xeb, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xeb, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x0e, 0x00, 0x1f, 0x00, 0x30, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x39, 0x00, 0x34, 0x00, 0x26, 0x00, 0x17, 0x00, 0x05, 0x00, 0xfd, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xf7, 0xff, 0xf2, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xe2, 0xff, 0xe5, 0xff, 0xee, 0xff, 0xf4, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x19, 0x00, 0x24, 0x00, 0x2d, 0x00, 0x37, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x3b, 0x00, 0x2f, 0x00, 0x26, 0x00, 0x1b, 0x00, 0x13, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfd, 0xff, 0xf1, 0xff, 0xe7, 0xff, 0xdc, 0xff, 0xd0, 0xff, 0xc5, 0xff, 0xbe, 0xff, 0xba, 0xff, 0xb9, 0xff, 0xbb, 0xff, 0xc3, 0xff, 0xcf, 0xff, 0xd9, 0xff, 0xe3, 0xff, 0xec, 0xff, 0xf7, 0xff, 0x01, 0x00, 0x09, 0x00, 0x15, 0x00, 0x23, 0x00, 0x34, 0x00, 0x46, 0x00, 0x51, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x53, 0x00, 0x48, 0x00, 0x35, 0x00, 0x24, 0x00, 0x13, 0x00, 0x05, 0x00, 0xfd, 0xff, 0xf2, 0xff, 0xe9, 0xff, 0xe1, 0xff, 0xda, 0xff, 0xd6, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd9, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x03, 0x00, 0x0c, 0x00, 0x15, 0x00, 0x20, 0x00, 0x2b, 0x00, 0x36, 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x3a, 0x00, 0x36, 0x00, 0x36, 0x00, 0x38, 0x00, 0x35, 0x00, 0x2e, 0x00, 0x23, 0x00, 0x12, 0x00, 0x03, 0x00, 0xfc, 0xff, 0xf4, 0xff, 0xea, 0xff, 0xe0, 0xff, 0xd4, 0xff, 0xca, 0xff, 0xc2, 0xff, 0xbf, 0xff, 0xbd, 0xff, 0xc0, 0xff, 0xc5, 0xff, 0xcb, 0xff, 0xd3, 0xff, 0xd8, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xeb, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x0d, 0x00, 0x14, 0x00, 0x17, 0x00, 0x13, 0x00, 0x12, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x1e, 0x00, 0x24, 0x00, 0x28, 0x00, 0x2f, 0x00, 0x35, 0x00, 0x36, 0x00, 0x31, 0x00, 0x2b, 0x00, 0x26, 0x00, 0x21, 0x00, 0x1d, 0x00, 0x1b, 0x00, 0x18, 0x00, 0x16, 0x00, 0x11, 0x00, 0x15, 0x00, 0x1a, 0x00, 0x23, 0x00, 0x2d, 0x00, 0x36, 0x00, 0x3b, 0x00, 0x3a, 0x00, 0x34, 0x00, 0x28, 0x00, 0x19, 0x00, 0x0d, 0x00, 0x06, 0x00, 0xff, 0xff, 0xf4, 0xff, 0xea, 0xff, 0xdb, 0xff, 0xce, 0xff, 0xbf, 0xff, 0xb8, 0xff, 0xae, 0xff, 0xab, 0xff, 0xab, 0xff, 0xab, 0xff, 0xab, 0xff, 0xaa, 0xff, 0xb0, 0xff, 0xb9, 0xff, 0xc5, 0xff, 0xd3, 0xff, 0xe0, 0xff, 0xee, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x0b, 0x00, 0x1b, 0x00, 0x28, 0x00, 0x32, 0x00, 0x39, 0x00, 0x3a, 0x00, 0x38, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x36, 0x00, 0x31, 0x00, 0x31, 0x00, 0x34, 0x00, 0x34, 0x00, 0x28, 0x00, 0x1e, 0x00, 0x11, 0x00, 0x09, 0x00, 0x00, 0x00, 0xf3, 0xff, 0xe9, 0xff, 0xdd, 0xff, 0xd7, 0xff, 0xd6, 0xff, 0xd8, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xdc, 0xff, 0xdb, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0x03, 0x00, 0x16, 0x00, 0x25, 0x00, 0x2f, 0x00, 0x37, 0x00, 0x3c, 0x00, 0x43, 0x00, 0x4a, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x47, 0x00, 0x3d, 0x00, 0x2d, 0x00, 0x1e, 0x00, 0x12, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xef, 0xff, 0xe8, 0xff, 0xe2, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xdc, 0xff, 0xd8, 0xff, 0xd6, 0xff, 0xd5, 0xff, 0xd9, 0xff, 0xe2, 0xff, 0xed, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf4, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf1, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xe9, 0xff, 0xe5, 0xff, 0xdf, 0xff, 0xd9, 0xff, 0xd5, 0xff, 0xd1, 0xff, 0xd0, 0xff, 0xcf, 0xff, 0xd3, 0xff, 0xda, 0xff, 0xe7, 0xff, 0xf5, 0xff, 0x01, 0x00, 0x0d, 0x00, 0x15, 0x00, 0x1e, 0x00, 0x2b, 0x00, 0x34, 0x00, 0x36, 0x00, 0x34, 0x00, 0x32, 0x00, 0x31, 0x00, 0x33, 0x00, 0x3b, 0x00, 0x47, 0x00, 0x58, 0x00, 0x66, 0x00, 0x75, 0x00, 0x81, 0x00, 0x85, 0x00, 0x7e, 0x00, 0x6f, 0x00, 0x5c, 0x00, 0x42, 0x00, 0x22, 0x00, 0x08, 0x00, 0xf4, 0xff, 0xde, 0xff, 0xcc, 0xff, 0xba, 0xff, 0xae, 0xff, 0xa7, 0xff, 0xa3, 0xff, 0xa7, 0xff, 0xae, 0xff, 0xb9, 0xff, 0xc2, 0xff, 0xcc, 0xff, 0xd6, 0xff, 0xde, 0xff, 0xe7, 0xff, 0xee, 0xff, 0xf4, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0d, 0x00, 0x14, 0x00, 0x1a, 0x00, 0x22, 0x00, 0x29, 0x00, 0x29, 0x00, 0x26, 0x00, 0x1a, 0x00, 0x0f, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe8, 0xff, 0xe6, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xea, 0xff, 0xed, 0xff, 0xed, 0xff, 0xee, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf7, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x06, 0x00, 0x0f, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1b, 0x00, 0x1a, 0x00, 0x18, 0x00, 0x17, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xeb, 0xff, 0xe8, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x03, 0x00, 0x08, 0x00, 0x08, 0x00, 0x09, 0x00, 0x05, 0x00, 0x04, 0x00, 0x08, 0x00, 0x09, 0x00, 0x06, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x07, 0x00, 0x0f, 0x00, 0x14, 0x00, 0x18, 0x00, 0x1e, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x24, 0x00, 0x24, 0x00, 0x20, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf3, 0xff, 0xeb, 0xff, 0xe1, 0xff, 0xd6, 0xff, 0xce, 0xff, 0xca, 0xff, 0xcb, 0xff, 0xd1, 0xff, 0xd6, 0xff, 0xda, 0xff, 0xe0, 0xff, 0xe9, 0xff, 0xf3, 0xff, 0x02, 0x00, 0x10, 0x00, 0x1b, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x15, 0x00, 0x0f, 0x00, 0x09, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x09, 0x00, 0x15, 0x00, 0x21, 0x00, 0x2b, 0x00, 0x33, 0x00, 0x34, 0x00, 0x32, 0x00, 0x2c, 0x00, 0x26, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x16, 0x00, 0x11, 0x00, 0x0c, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xef, 0xff, 0xe4, 0xff, 0xdc, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd6, 0xff, 0xd7, 0xff, 0xd6, 0xff, 0xd2, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xc3, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xc2, 0xff, 0xc9, 0xff, 0xd6, 0xff, 0xdf, 0xff, 0xe4, 0xff, 0xeb, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x03, 0x00, 0x0c, 0x00, 0x15, 0x00, 0x1c, 0x00, 0x22, 0x00, 0x28, 0x00, 0x2d, 0x00, 0x30, 0x00, 0x37, 0x00, 0x3d, 0x00, 0x40, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x36, 0x00, 0x2c, 0x00, 0x24, 0x00, 0x20, 0x00, 0x20, 0x00, 0x23, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x18, 0x00, 0x12, 0x00, 0x14, 0x00, 0x14, 0x00, 0x11, 0x00, 0x13, 0x00, 0x15, 0x00, 0x14, 0x00, 0x15, 0x00, 0x0f, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xef, 0xff, 0xe3, 0xff, 0xd8, 0xff, 0xd1, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xd7, 0xff, 0xdf, 0xff, 0xe5, 0xff, 0xea, 0xff, 0xee, 0xff, 0xf1, 0xff, 0xf8, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xf8, 0xff, 0xee, 0xff, 0xe5, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe8, 0xff, 0xee, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf7, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x06, 0x00, 0x15, 0x00, 0x24, 0x00, 0x32, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x41, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x35, 0x00, 0x2b, 0x00, 0x23, 0x00, 0x1a, 0x00, 0x11, 0x00, 0x09, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xdc, 0xff, 0xdf, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xe5, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xee, 0xff, 0xf5, 0xff, 0xfd, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x03, 0x00, 0x09, 0x00, 0x14, 0x00, 0x1f, 0x00, 0x2a, 0x00, 0x30, 0x00, 0x34, 0x00, 0x36, 0x00, 0x36, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x2c, 0x00, 0x2a, 0x00, 0x23, 0x00, 0x1a, 0x00, 0x14, 0x00, 0x09, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfa, 0xff, 0xf7, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xd9, 0xff, 0xd3, 0xff, 0xd1, 0xff, 0xd4, 0xff, 0xdc, 0xff, 0xe6, 0xff, 0xf5, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x14, 0x00, 0x1c, 0x00, 0x1e, 0x00, 0x1b, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x22, 0x00, 0x24, 0x00, 0x28, 0x00, 0x2e, 0x00, 0x32, 0x00, 0x36, 0x00, 0x31, 0x00, 0x2a, 0x00, 0x1f, 0x00, 0x14, 0x00, 0x04, 0x00, 0xf5, 0xff, 0xe6, 0xff, 0xda, 0xff, 0xd1, 0xff, 0xcd, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xce, 0xff, 0xcd, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xcb, 0xff, 0xcf, 0xff, 0xd4, 0xff, 0xd9, 0xff, 0xdc, 0xff, 0xe1, 0xff, 0xeb, 0xff, 0xf8, 0xff, 0x03, 0x00, 0x11, 0x00, 0x21, 0x00, 0x35, 0x00, 0x47, 0x00, 0x56, 0x00, 0x5e, 0x00, 0x69, 0x00, 0x70, 0x00, 0x75, 0x00, 0x77, 0x00, 0x6b, 0x00, 0x5c, 0x00, 0x48, 0x00, 0x38, 0x00, 0x22, 0x00, 0x10, 0x00, 0xff, 0xff, 0xed, 0xff, 0xdc, 0xff, 0xd0, 0xff, 0xc6, 0xff, 0xbc, 0xff, 0xb5, 0xff, 0xb2, 0xff, 0xb3, 0xff, 0xb5, 0xff, 0xbe, 0xff, 0xc5, 0xff, 0xd2, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x0c, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x19, 0x00, 0x18, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1b, 0x00, 0x17, 0x00, 0x17, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1b, 0x00, 0x14, 0x00, 0x0c, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfd, 0xff, 0xf3, 0xff, 0xf1, 0xff, 0xef, 0xff, 0xeb, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xdf, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xdc, 0xff, 0xe2, 0xff, 0xe6, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x08, 0x00, 0x12, 0x00, 0x18, 0x00, 0x18, 0x00, 0x17, 0x00, 0x16, 0x00, 0x13, 0x00, 0x0f, 0x00, 0x0e, 0x00, 0x12, 0x00, 0x12, 0x00, 0x14, 0x00, 0x14, 0x00, 0x11, 0x00, 0x0c, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfa, 0xff, 0xf2, 0xff, 0xe9, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xde, 0xff, 0xdc, 0xff, 0xd9, 0xff, 0xd6, 0xff, 0xd5, 0xff, 0xd6, 0xff, 0xda, 0xff, 0xe2, 0xff, 0xf0, 0xff, 0xfe, 0xff, 0x16, 0x00, 0x2d, 0x00, 0x3f, 0x00, 0x2b, 0x00, 0x31, 0x00, 0x37, 0x00, 0x35, 0x00, 0x30, 0x00, 0x2d, 0x00, 0x28, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1a, 0x00, 0x15, 0x00, 0x0e, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfa, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xdf, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf4, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x03, 0x00, 0x04, 0x00, 0x08, 0x00, 0x10, 0x00, 0x14, 0x00, 0x17, 0x00, 0x17, 0x00, 0x15, 0x00, 0x13, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x06, 0x00, 0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe2, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xdf, 0xff, 0xe2, 0xff, 0xe6, 0xff, 0xe8, 0xff, 0xec, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x12, 0x00, 0x1b, 0x00, 0x23, 0x00, 0x26, 0x00, 0x27, 0x00, 0x25, 0x00, 0x23, 0x00, 0x1d, 0x00, 0x16, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf7, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x03, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf4, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x08, 0x00, 0x10, 0x00, 0x1c, 0x00, 0x28, 0x00, 0x33, 0x00, 0x36, 0x00, 0x37, 0x00, 0x37, 0x00, 0x34, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x14, 0x00, 0x09, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xf1, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xe2, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd6, 0xff, 0xd7, 0xff, 0xd9, 0xff, 0xdd, 0xff, 0xe2, 0xff, 0xe9, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xfd, 0xff, 0x02, 0x00, 0x09, 0x00, 0x11, 0x00, 0x1b, 0x00, 0x22, 0x00, 0x2a, 0x00, 0x30, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x28, 0x00, 0x21, 0x00, 0x1a, 0x00, 0x13, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x03, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xfd, 0xff, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf4, 0xff, 0xeb, 0xff, 0xe3, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xe1, 0xff, 0xe5, 0xff, 0xec, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x10, 0x00, 0x15, 0x00, 0x1c, 0x00, 0x25, 0x00, 0x2b, 0x00, 0x2a, 0x00, 0x28, 0x00, 0x23, 0x00, 0x21, 0x00, 0x1b, 0x00, 0x14, 0x00, 0x0c, 0x00, 0x03, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xee, 0xff, 0xeb, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe2, 0xff, 0xe5, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xeb, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x06, 0x00, 0x07, 0x00, 0x06, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0e, 0x00, 0x15, 0x00, 0x1b, 0x00, 0x21, 0x00, 0x26, 0x00, 0x2b, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x35, 0x00, 0x34, 0x00, 0x2e, 0x00, 0x28, 0x00, 0x1f, 0x00, 0x17, 0x00, 0x0d, 0x00, 0x06, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xeb, 0xff, 0xe5, 0xff, 0xdf, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd3, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd6, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x10, 0x00, 0x13, 0x00, 0x15, 0x00, 0x17, 0x00, 0x17, 0x00, 0x17, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x17, 0x00, 0x1e, 0x00, 0x21, 0x00, 0x21, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x18, 0x00, 0x15, 0x00, 0x13, 0x00, 0x10, 0x00, 0x0a, 0x00, 0x06, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfa, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xec, 0xff, 0xec, 0xff, 0xec, 0xff, 0xea, 0xff, 0xe8, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe8, 0xff, 0xe8, 0xff, 0xea, 0xff, 0xeb, 0xff, 0xee, 0xff, 0xee, 0xff, 0xef, 0xff, 0xee, 0xff, 0xec, 0xff, 0xee, 0xff, 0xf2, 0xff, 0xf7, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x03, 0x00, 0x0a, 0x00, 0x12, 0x00, 0x16, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x2a, 0x00, 0x30, 0x00, 0x36, 0x00, 0x38, 0x00, 0x36, 0x00, 0x30, 0x00, 0x29, 0x00, 0x22, 0x00, 0x19, 0x00, 0x0f, 0x00, 0x07, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe8, 0xff, 0xeb, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x09, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf1, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xee, 0xff, 0xee, 0xff, 0xef, 0xff, 0xf1, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x07, 0x00, 0x0e, 0x00, 0x16, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x25, 0x00, 0x27, 0x00, 0x28, 0x00, 0x26, 0x00, 0x24, 0x00, 0x20, 0x00, 0x1b, 0x00, 0x14, 0x00, 0x0d, 0x00, 0x06, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xee, 0xff, 0xe8, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe5, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xf3, 0xff, 0xfa, 0xff, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x06, 0x00, 0x06, 0x00, 0x06, 0x00, 0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x12, 0x00, 0x12, 0x00, 0x12, 0x00, 0x12, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x03, 0x00, 0x08, 0x00, 0x10, 0x00, 0x16, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x12, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfa, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf7, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x03, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xfa, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf4, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x07, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x06, 0x00, 0x06, 0x00, 0x06, 0x00, 0x06, 0x00, 0x07, 0x00, 0x06, 0x00, 0x03, 0x00, 0x01, 0x00, 0x04, 0x00, 0x06, 0x00, 0x07, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x06, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf1, 0xff, 0xee, 0xff, 0xec, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xeb, 0xff, 0xee, 0xff, 0xf3, 0xff, 0xfa, 0xff, 0xff, 0xff, 0x02, 0x00, 0x07, 0x00, 0x0c, 0x00, 0x13, 0x00, 0x19, 0x00, 0x1e, 0x00, 0x22, 0x00, 0x23, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x13, 0x00, 0x0f, 0x00, 0x09, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf4, 0xff, 0xef, 0xff, 0xed, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xee, 0xff, 0xec, 0xff, 0xea, 0xff, 0xea, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfd, 0xff, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0c, 0x00, 0x10, 0x00, 0x15, 0x00, 0x19, 0x00, 0x18, 0x00, 0x15, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x09, 0x00, 0x07, 0x00, 0x06, 0x00, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf1, 0xff, 0xef, 0xff, 0xec, 0xff, 0xeb, 0xff, 0xee, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x09, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf7, 0xff, 0xf4, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0b, 0x00, 0x12, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1b, 0x00, 0x17, 0x00, 0x15, 0x00, 0x12, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xf1, 0xff, 0xef, 0xff, 0xee, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x03, 0x00, 0x06, 0x00, 0x06, 0x00, 0x03, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfa, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xeb, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x10, 0x00, 0x19, 0x00, 0x22, 0x00, 0x29, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2a, 0x00, 0x24, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe5, 0xff, 0xe7, 0xff, 0xeb, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf7, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0x06, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x06, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x16, 0x00, 0x1b, 0x00, 0x1f, 0x00, 0x24, 0x00, 0x27, 0x00, 0x27, 0x00, 0x25, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x14, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xee, 0xff, 0xee, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf1, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xed, 0xff, 0xea, 0xff, 0xeb, 0xff, 0xf0, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x12, 0x00, 0x1b, 0x00, 0x22, 0x00, 0x26, 0x00, 0x27, 0x00, 0x25, 0x00, 0x24, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x11, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfa, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xf7, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xf1, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0c, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfa, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xee, 0xff, 0xeb, 0xff, 0xeb, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x06, 0x00, 0x0d, 0x00, 0x18, 0x00, 0x23, 0x00, 0x2e, 0x00, 0x37, 0x00, 0x3a, 0x00, 0x37, 0x00, 0x33, 0x00, 0x2b, 0x00, 0x23, 0x00, 0x1d, 0x00, 0x13, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xec, 0xff, 0xe5, 0xff, 0xdf, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0x08, 0x00, 0x06, 0x00, 0x03, 0x00, 0x04, 0x00, 0x06, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfd, 0xff, 0xfa, 0xff, 0xf7, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x11, 0x00, 0x14, 0x00, 0x1a, 0x00, 0x23, 0x00, 0x2d, 0x00, 0x34, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x09, 0x00, 0x07, 0x00, 0x06, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x03, 0x00, 0x03, 0x00, 0x02, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x06, 0x00, 0x05, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xff, 0xff }; #define tr808_cl_wav_len 30340 unsigned char tr808_hh_wav[] = { 0x52, 0x49, 0x46, 0x46, 0x68, 0x56, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45, 0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e, 0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61, 0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61, 0x74, 0x61, 0x22, 0x56, 0x00, 0x00, 0xf2, 0xff, 0x17, 0x00, 0xe4, 0xff, 0x16, 0x00, 0xda, 0xff, 0x47, 0x00, 0xb4, 0xfe, 0x35, 0xfb, 0x19, 0x01, 0xa6, 0x04, 0x1a, 0xff, 0x37, 0xfd, 0x19, 0x03, 0x2d, 0x02, 0xbd, 0xff, 0x8f, 0x00, 0xc7, 0x09, 0xd4, 0xf6, 0xea, 0xef, 0xe4, 0x0b, 0x7f, 0x06, 0x6f, 0x08, 0x23, 0x03, 0xad, 0xe2, 0xb4, 0xf8, 0x2a, 0x14, 0xc7, 0x04, 0xb5, 0x03, 0xf7, 0x0a, 0xfb, 0xf0, 0x78, 0xe8, 0xec, 0x05, 0xfc, 0x0f, 0xb0, 0x06, 0xf3, 0xf5, 0x81, 0xf7, 0x8f, 0x0d, 0xe7, 0x0b, 0xe3, 0xef, 0xaa, 0xf5, 0xdf, 0x13, 0x15, 0xfb, 0xa7, 0xec, 0x23, 0x06, 0xfc, 0xff, 0x7e, 0x01, 0x58, 0x0a, 0x7f, 0x07, 0x17, 0xfd, 0x71, 0xf0, 0xad, 0xfc, 0x56, 0x0c, 0xab, 0x02, 0xa8, 0x11, 0xc6, 0x11, 0xc0, 0xc9, 0x9c, 0xe0, 0xf0, 0x23, 0xc5, 0x11, 0x7f, 0x04, 0x43, 0x06, 0x48, 0xe2, 0x39, 0xf6, 0x34, 0x18, 0x69, 0x17, 0xdf, 0xef, 0x38, 0xdc, 0x47, 0x08, 0x50, 0x12, 0x5f, 0x06, 0x9d, 0xfc, 0x9e, 0x10, 0x91, 0xf5, 0xab, 0xdf, 0xb8, 0x06, 0xe0, 0x08, 0xdb, 0x04, 0xcf, 0x02, 0xe8, 0x04, 0x64, 0x0a, 0x9f, 0xfc, 0x18, 0xf8, 0x0e, 0xf0, 0x39, 0xf6, 0xc4, 0x0b, 0xbe, 0x0a, 0xeb, 0x05, 0xe9, 0x08, 0xad, 0xf9, 0xe1, 0xe6, 0x0d, 0x01, 0x31, 0x0d, 0x8b, 0x06, 0x7a, 0x00, 0xcc, 0xf5, 0xac, 0xfe, 0x07, 0x05, 0xe6, 0x00, 0x76, 0xfa, 0x10, 0xfa, 0x13, 0x06, 0xa3, 0x06, 0xdc, 0x01, 0x9d, 0x02, 0xee, 0xf7, 0xad, 0xfa, 0x97, 0x07, 0x6f, 0x09, 0xbf, 0x0f, 0x34, 0xf6, 0x33, 0xd5, 0xe5, 0x01, 0x49, 0x14, 0xe8, 0x00, 0xae, 0x01, 0xfb, 0x06, 0x8e, 0x04, 0x1c, 0xf3, 0xc9, 0x02, 0x6a, 0x09, 0x3e, 0xf1, 0xac, 0xf8, 0xdf, 0x0c, 0x8c, 0x06, 0x8f, 0x1e, 0x3f, 0xe9, 0x99, 0xc9, 0x8f, 0x12, 0x1f, 0x16, 0x74, 0x00, 0x61, 0x03, 0x8f, 0x11, 0x31, 0xf7, 0x56, 0xe0, 0x91, 0x00, 0x75, 0x11, 0xda, 0x07, 0xd3, 0x05, 0x88, 0xf1, 0x19, 0xf6, 0x0a, 0x07, 0x63, 0x07, 0x8b, 0x03, 0xc9, 0xf5, 0x4f, 0xfd, 0x1d, 0xfc, 0xde, 0x06, 0xbd, 0x02, 0xc9, 0x14, 0xda, 0x08, 0x19, 0xce, 0x58, 0xf7, 0x91, 0x19, 0xae, 0x08, 0x40, 0xfa, 0x76, 0x04, 0x75, 0x17, 0xf8, 0xe4, 0x51, 0xe0, 0x7b, 0x1b, 0xb0, 0x0b, 0xe3, 0x00, 0x6e, 0x0d, 0x17, 0xe3, 0xa3, 0xeb, 0x7a, 0x18, 0x87, 0x08, 0xbf, 0xfc, 0xe7, 0x0e, 0x96, 0xfa, 0xb2, 0xe2, 0xa5, 0xff, 0xd1, 0x12, 0x4e, 0xfe, 0xbf, 0x00, 0xcf, 0xfd, 0xd3, 0x1b, 0x3f, 0x0d, 0x55, 0xb8, 0xd5, 0xf8, 0xa7, 0x2a, 0x17, 0x03, 0x8f, 0x07, 0xb9, 0x09, 0x5f, 0xdb, 0x80, 0xf6, 0x2d, 0x11, 0xbf, 0x07, 0xa7, 0x02, 0x1f, 0x0d, 0xc1, 0xfb, 0x9a, 0xe2, 0x73, 0x00, 0xc9, 0x0d, 0x16, 0x07, 0xb9, 0x00, 0x94, 0xf4, 0x0b, 0xfd, 0x38, 0x12, 0xe3, 0x06, 0x92, 0xe6, 0x45, 0xfb, 0x3d, 0x0e, 0x55, 0xf9, 0x2f, 0xfc, 0xbc, 0x0a, 0x05, 0x02, 0xdd, 0xfc, 0xa3, 0x02, 0x89, 0x00, 0xda, 0xf9, 0xfd, 0x00, 0x1b, 0x03, 0x69, 0x01, 0xaf, 0x00, 0xc1, 0xfa, 0x10, 0xfe, 0x67, 0x03, 0x1f, 0x01, 0xd1, 0x00, 0x6b, 0x03, 0x5f, 0xfd, 0xc0, 0xf8, 0xbc, 0x00, 0x99, 0x03, 0x98, 0xff, 0x3a, 0x00, 0xec, 0x00, 0x93, 0x03, 0xa0, 0x0f, 0x97, 0x07, 0xec, 0xd8, 0x60, 0xe9, 0xf4, 0x19, 0x40, 0x0f, 0x27, 0x03, 0xab, 0xf5, 0xf1, 0xf8, 0x88, 0x06, 0xf5, 0x03, 0xcf, 0xfc, 0xd5, 0xfb, 0x1c, 0xfb, 0x8c, 0x05, 0xcf, 0x05, 0xdb, 0x03, 0x33, 0x1d, 0xe9, 0xdd, 0xb5, 0xdc, 0x4f, 0x16, 0xa3, 0x10, 0x35, 0xfc, 0xee, 0x01, 0x86, 0x20, 0x37, 0xdd, 0x4c, 0xd9, 0x3b, 0x1e, 0x38, 0x10, 0xb6, 0xf7, 0x51, 0xff, 0xee, 0x05, 0x49, 0xfc, 0xce, 0xfb, 0xab, 0x01, 0x6d, 0x02, 0x33, 0x01, 0x2f, 0x02, 0xfa, 0xfe, 0x16, 0xfa, 0xd9, 0xfd, 0xfb, 0x03, 0xff, 0x03, 0x53, 0x03, 0x84, 0xff, 0xd2, 0xf5, 0x59, 0xf2, 0xd2, 0x0a, 0xa7, 0x07, 0xe4, 0x0c, 0xe9, 0x10, 0x80, 0xd2, 0x8f, 0xf0, 0xb9, 0x1e, 0x6a, 0x0f, 0x0e, 0xf1, 0xb2, 0xf4, 0x17, 0x06, 0x2d, 0x01, 0x85, 0x02, 0xd7, 0x06, 0x0c, 0x07, 0xa2, 0xf1, 0xf9, 0xf4, 0xef, 0x06, 0x36, 0xff, 0xc1, 0x01, 0x66, 0x05, 0x2d, 0x03, 0xb0, 0x06, 0x6c, 0xfe, 0x8d, 0xed, 0xf3, 0xfc, 0xc5, 0x09, 0x02, 0x0b, 0x47, 0x0c, 0x4a, 0xe4, 0x4a, 0xed, 0x73, 0x13, 0xb6, 0x07, 0x26, 0x11, 0x8f, 0xfc, 0x43, 0xde, 0x55, 0x00, 0xe9, 0x0f, 0x69, 0x03, 0x91, 0xfe, 0x64, 0x01, 0xa8, 0x1a, 0x18, 0xf3, 0x0c, 0xd1, 0x07, 0x0c, 0xeb, 0x16, 0x26, 0xff, 0xf4, 0xfb, 0xc0, 0x0a, 0x83, 0x02, 0xd3, 0xea, 0x7d, 0xfd, 0x9c, 0x0c, 0x2b, 0x02, 0x8b, 0xfd, 0xfa, 0x13, 0x38, 0x05, 0x84, 0xc7, 0xff, 0x02, 0xc1, 0x21, 0x3f, 0x05, 0x57, 0x0e, 0x62, 0xe1, 0x21, 0xec, 0xe5, 0x10, 0x6f, 0x0a, 0x5e, 0xfe, 0xb8, 0x00, 0xff, 0x0c, 0xad, 0xf9, 0xc3, 0xe8, 0xf3, 0x04, 0x39, 0x0d, 0xcd, 0x00, 0x16, 0x05, 0xf5, 0x0c, 0xcc, 0xea, 0xb8, 0xe4, 0x07, 0x0d, 0x38, 0x0f, 0x21, 0x03, 0x0e, 0x13, 0x78, 0xeb, 0xda, 0xe4, 0xa1, 0x0c, 0xfd, 0x0e, 0xed, 0xfc, 0x2f, 0x13, 0xaf, 0xfd, 0x3a, 0xd6, 0xf3, 0x05, 0xf5, 0x14, 0xb6, 0x00, 0x05, 0xfc, 0xcc, 0x0c, 0x09, 0xff, 0x7b, 0xe7, 0x61, 0x02, 0x04, 0x13, 0xff, 0x03, 0x8f, 0xf3, 0xc2, 0xf5, 0xb2, 0x04, 0x7b, 0x05, 0xe4, 0xfe, 0x91, 0x02, 0xc6, 0x19, 0x12, 0xeb, 0x5d, 0xdd, 0x3d, 0x10, 0x58, 0x10, 0xcb, 0xfd, 0x87, 0xfd, 0xcf, 0x0b, 0xc7, 0x0a, 0x64, 0xe8, 0x55, 0xea, 0x7a, 0x0f, 0xe9, 0x0b, 0x5a, 0x06, 0xba, 0xfe, 0x2d, 0xef, 0x08, 0x00, 0x2b, 0x04, 0x57, 0xfe, 0x6a, 0x04, 0x47, 0x03, 0x3b, 0x03, 0x66, 0x06, 0x0e, 0xf6, 0x91, 0xf1, 0x14, 0x09, 0xaa, 0x15, 0xb7, 0xf0, 0xa3, 0xeb, 0xae, 0x08, 0x3f, 0x07, 0x53, 0x02, 0xd8, 0x04, 0x87, 0x0a, 0x37, 0xf2, 0x57, 0xee, 0x9c, 0x07, 0x7f, 0x03, 0x7d, 0x02, 0x99, 0x02, 0x29, 0x15, 0x5c, 0xf2, 0x42, 0xdd, 0x5d, 0x0e, 0xcd, 0x11, 0xa2, 0xfb, 0xb1, 0x0e, 0x08, 0x00, 0x0d, 0xdb, 0x35, 0x03, 0x2e, 0x11, 0x3c, 0x04, 0x58, 0xf8, 0xdd, 0x12, 0x30, 0x0b, 0x88, 0xd3, 0x7a, 0xf9, 0x41, 0x17, 0x22, 0x05, 0xe5, 0xfa, 0x60, 0x01, 0xc2, 0x06, 0xa7, 0x03, 0x82, 0xf0, 0x84, 0xf9, 0x7f, 0x0a, 0xcb, 0x03, 0xa8, 0x01, 0xd3, 0x07, 0x2d, 0xf8, 0x0b, 0xf0, 0x83, 0x00, 0x69, 0x08, 0xd8, 0x01, 0x38, 0x09, 0x01, 0x0f, 0x90, 0xe1, 0x10, 0xf2, 0x7d, 0x12, 0x93, 0x01, 0x92, 0xfb, 0xf3, 0x04, 0xd1, 0x03, 0xa5, 0x03, 0x13, 0x01, 0x01, 0xf5, 0xf1, 0xf8, 0x84, 0x09, 0x75, 0x10, 0xf4, 0xee, 0x57, 0xf2, 0xc9, 0x0b, 0x8b, 0x01, 0x17, 0xfc, 0x22, 0x07, 0xc2, 0x0c, 0x2b, 0xf6, 0x21, 0xec, 0x46, 0x05, 0xcf, 0x0a, 0x5d, 0x02, 0xdd, 0xfc, 0xfb, 0xfd, 0xf3, 0x02, 0xcf, 0x0a, 0x50, 0x00, 0x5e, 0xe6, 0xe7, 0xff, 0x75, 0x0c, 0xb6, 0x04, 0xb7, 0x01, 0xfb, 0xf6, 0xd5, 0xfb, 0x64, 0x00, 0xdf, 0x07, 0x8f, 0xff, 0x6d, 0x0d, 0xe2, 0x04, 0x49, 0xdf, 0x00, 0xff, 0x97, 0x0e, 0x4e, 0xff, 0xaf, 0xfe, 0x2e, 0x04, 0xb3, 0x03, 0xcf, 0xff, 0xd3, 0xfc, 0x76, 0xfa, 0x00, 0x04, 0xcf, 0x01, 0xb1, 0xf7, 0x58, 0xfe, 0xa7, 0x03, 0x30, 0x04, 0x03, 0x03, 0x50, 0x11, 0x7a, 0xee, 0x7e, 0xea, 0xe6, 0x09, 0x4f, 0x08, 0x81, 0xff, 0x72, 0x0b, 0x60, 0x04, 0xcb, 0xe5, 0x61, 0xfc, 0xc7, 0x0d, 0x73, 0x04, 0xb2, 0x07, 0xd6, 0xfa, 0xe1, 0xef, 0x05, 0x03, 0x20, 0x06, 0x89, 0xff, 0x69, 0xff, 0x6c, 0x01, 0xcf, 0x09, 0x10, 0x07, 0xb0, 0xe7, 0xda, 0xf9, 0x5e, 0x0b, 0x1b, 0x02, 0x7c, 0x00, 0xbe, 0x08, 0xaa, 0x00, 0xb4, 0xef, 0x9f, 0xfd, 0xb7, 0x04, 0x13, 0x03, 0x24, 0x05, 0xa1, 0x0e, 0x51, 0xef, 0xbf, 0xee, 0xf5, 0x09, 0x5e, 0x08, 0x8a, 0x05, 0x81, 0xf8, 0x0a, 0xf9, 0x3d, 0x01, 0xb1, 0x03, 0xf4, 0xfe, 0x94, 0x10, 0x57, 0xfc, 0x40, 0xe8, 0x11, 0x02, 0xa1, 0x08, 0xa1, 0x03, 0xd3, 0xfe, 0xb6, 0x00, 0x15, 0x02, 0xab, 0xff, 0x9d, 0xfa, 0xc4, 0x01, 0xd6, 0x01, 0x2f, 0x00, 0xa5, 0xff, 0xd9, 0x0c, 0xac, 0xfa, 0xad, 0xe5, 0x78, 0x08, 0xaf, 0x0d, 0x3f, 0xfd, 0xd0, 0x00, 0x72, 0x08, 0x03, 0xf5, 0x76, 0xf4, 0x9c, 0x08, 0x17, 0x06, 0xc3, 0xff, 0xca, 0x0f, 0xea, 0xf1, 0xb0, 0xe5, 0x25, 0x0e, 0xc2, 0x0c, 0x43, 0xfc, 0x8b, 0x10, 0xd3, 0xf7, 0x1d, 0xe4, 0xca, 0x07, 0x4d, 0x0a, 0x23, 0x00, 0xfe, 0xff, 0x87, 0x02, 0x5c, 0x09, 0x99, 0xf9, 0x1f, 0xef, 0xbf, 0x05, 0x6a, 0x0f, 0xa5, 0x03, 0xa1, 0xeb, 0x07, 0xfc, 0x74, 0x0a, 0x8d, 0xff, 0xa7, 0x07, 0xa2, 0xff, 0x43, 0xf4, 0xfc, 0xfe, 0xb3, 0x02, 0xdd, 0x03, 0x7f, 0x01, 0xf4, 0x04, 0x72, 0x06, 0xaf, 0xf4, 0x3e, 0xf1, 0xae, 0x06, 0xe1, 0x08, 0xcf, 0x05, 0x21, 0xfd, 0x8b, 0xf4, 0xbd, 0x01, 0x0f, 0x06, 0xd5, 0xfd, 0x55, 0xfa, 0x0a, 0x04, 0x73, 0x04, 0xe8, 0xfe, 0xed, 0xfe, 0xe1, 0xff, 0x0b, 0x00, 0xb0, 0x00, 0x6a, 0x01, 0x40, 0x0a, 0x87, 0xfe, 0x1b, 0xe9, 0x8f, 0xfd, 0x6f, 0x0e, 0x86, 0x04, 0x87, 0x06, 0x2d, 0xf9, 0x29, 0xf0, 0xf3, 0x05, 0x30, 0x05, 0x61, 0x03, 0xf7, 0x03, 0x38, 0xf7, 0x2a, 0xfa, 0xaf, 0x03, 0x7f, 0x04, 0x4b, 0x05, 0x33, 0x07, 0x0a, 0xf1, 0x12, 0xf7, 0x0f, 0x06, 0xeb, 0x02, 0x0f, 0x02, 0x80, 0x0f, 0x39, 0xf7, 0xb0, 0xea, 0xfb, 0x05, 0x24, 0x07, 0x3f, 0x03, 0xad, 0xfc, 0x77, 0x0c, 0xf6, 0x06, 0x1f, 0xdf, 0x79, 0xfd, 0x43, 0x13, 0x79, 0x01, 0x0d, 0xfc, 0x04, 0x0b, 0x0e, 0xff, 0xdb, 0xe9, 0xcd, 0x01, 0xa7, 0x0f, 0xef, 0x0a, 0x89, 0xf0, 0x6a, 0xf1, 0x5d, 0x08, 0x9a, 0x05, 0x99, 0x01, 0xdf, 0xfd, 0x7f, 0x10, 0x61, 0xfc, 0xca, 0xe3, 0xe9, 0x03, 0xa6, 0x0b, 0x43, 0x02, 0x16, 0xfe, 0x3d, 0x11, 0x84, 0xf5, 0x07, 0xea, 0x1c, 0x08, 0x44, 0x06, 0x40, 0x00, 0xa1, 0x00, 0xcb, 0x02, 0x3b, 0x03, 0xc5, 0xfb, 0x29, 0xf6, 0xef, 0x06, 0x91, 0x02, 0x79, 0x0f, 0x4d, 0xfb, 0x52, 0xe1, 0x9f, 0x05, 0x92, 0x0c, 0x8a, 0x01, 0x99, 0xff, 0x1f, 0x10, 0x0f, 0xf2, 0xc7, 0xea, 0x1e, 0x0c, 0xbd, 0x09, 0x57, 0xfd, 0x37, 0x02, 0x92, 0x09, 0x91, 0xf2, 0x52, 0xf3, 0x58, 0x09, 0x5b, 0x07, 0xa3, 0x00, 0x27, 0x08, 0x6e, 0xf3, 0xb1, 0xf0, 0x27, 0x0b, 0x5d, 0x0c, 0x4b, 0x06, 0x7a, 0xee, 0x56, 0xf8, 0x54, 0x07, 0x57, 0x02, 0xe7, 0x01, 0x1b, 0xff, 0xc7, 0x05, 0xff, 0x0e, 0xb8, 0xe7, 0x71, 0xef, 0x26, 0x11, 0x93, 0x06, 0x55, 0xfd, 0x42, 0xfe, 0x2b, 0x10, 0x99, 0xfb, 0x77, 0xe1, 0x00, 0x0a, 0x96, 0x0e, 0xde, 0xff, 0x0d, 0x0a, 0x71, 0xf0, 0xd4, 0xef, 0x9e, 0x0d, 0x7f, 0x06, 0x81, 0xfd, 0x7d, 0xff, 0xc4, 0x0e, 0x70, 0xfb, 0x46, 0xe5, 0x5c, 0x05, 0x44, 0x0d, 0xf2, 0x09, 0x45, 0xf8, 0xe1, 0xf2, 0xc5, 0x02, 0xd7, 0x03, 0x3b, 0x02, 0x76, 0x00, 0x09, 0x01, 0xdf, 0x04, 0xc5, 0xfc, 0xa9, 0xf5, 0x7f, 0x03, 0x60, 0x05, 0xc6, 0xff, 0x95, 0x03, 0xd5, 0x02, 0x5c, 0xf3, 0xd1, 0xf9, 0x6d, 0x0a, 0x43, 0x03, 0xee, 0x0d, 0xce, 0xf3, 0x36, 0xeb, 0x8a, 0x08, 0x1a, 0x07, 0x41, 0x00, 0x8f, 0x00, 0x8e, 0x00, 0xfe, 0x09, 0xc0, 0xfb, 0xf5, 0xea, 0x71, 0x08, 0xcf, 0x09, 0xf9, 0xfc, 0x81, 0xfe, 0x2d, 0x02, 0xd1, 0x00, 0x33, 0xfe, 0xa5, 0xfe, 0x1a, 0x00, 0x9f, 0x01, 0x19, 0x01, 0xb1, 0x01, 0x96, 0xfe, 0x3d, 0xfd, 0x2d, 0xfc, 0xf4, 0xfe, 0x1f, 0x04, 0xfb, 0x04, 0x08, 0x10, 0x33, 0xeb, 0x35, 0xef, 0xdc, 0x0d, 0xd3, 0x03, 0xcf, 0xfe, 0x37, 0x01, 0x73, 0x02, 0x9b, 0x00, 0x71, 0xfc, 0x0f, 0xfe, 0x1d, 0x03, 0x9a, 0x01, 0x24, 0x08, 0x63, 0x01, 0x55, 0xea, 0x91, 0xfd, 0x80, 0x0e, 0x5a, 0x01, 0x55, 0xfa, 0xa9, 0xfe, 0x73, 0x00, 0xb7, 0x07, 0xb7, 0x04, 0xf3, 0xf2, 0x49, 0xfd, 0x37, 0x04, 0x02, 0x00, 0x41, 0x02, 0x27, 0x01, 0xdf, 0x08, 0x47, 0xff, 0x1a, 0xed, 0x89, 0xff, 0xbf, 0x09, 0xe2, 0x01, 0xbb, 0x04, 0x9b, 0xff, 0x81, 0xf4, 0x38, 0x00, 0xcf, 0x04, 0xb3, 0x00, 0x45, 0x03, 0xaa, 0xff, 0xf2, 0xf9, 0x70, 0x00, 0x79, 0x02, 0x55, 0x00, 0xaa, 0x00, 0x81, 0xff, 0xdd, 0xfc, 0x51, 0xff, 0x4a, 0x09, 0x55, 0xfd, 0x29, 0xf8, 0x49, 0x00, 0x36, 0x01, 0xaf, 0x02, 0xf8, 0x00, 0xfb, 0xff, 0x13, 0x01, 0xd8, 0x04, 0xbd, 0xff, 0x7f, 0xf5, 0xbb, 0xfd, 0x3d, 0x0a, 0xb7, 0xfd, 0xd5, 0xf9, 0x27, 0x01, 0xdf, 0x00, 0x31, 0x02, 0xd5, 0x01, 0x2f, 0x06, 0x2b, 0x00, 0xa2, 0xf1, 0x23, 0xff, 0x88, 0x06, 0x7d, 0x02, 0x03, 0xfd, 0xc7, 0x04, 0x43, 0x04, 0x07, 0xf4, 0x67, 0xfe, 0x71, 0x03, 0x1f, 0x01, 0x58, 0x01, 0xbb, 0x03, 0x9b, 0x03, 0x43, 0xf4, 0x67, 0xfd, 0x22, 0x07, 0x81, 0x0a, 0x53, 0xfc, 0x45, 0xef, 0xe1, 0x02, 0x30, 0x05, 0xac, 0x00, 0xf2, 0x00, 0x3a, 0x01, 0x8a, 0x05, 0xad, 0xff, 0x71, 0xf2, 0xbd, 0xff, 0xcc, 0x07, 0xd3, 0x00, 0xb2, 0xfe, 0x26, 0x0f, 0x29, 0xf5, 0x07, 0xed, 0x15, 0x08, 0x63, 0x06, 0x55, 0x00, 0xaa, 0xff, 0x66, 0x01, 0x97, 0x03, 0x4f, 0xfd, 0x90, 0xf8, 0x19, 0x03, 0x59, 0x03, 0xcc, 0xff, 0x57, 0x02, 0xb7, 0x02, 0x79, 0xf7, 0x89, 0xfc, 0xc7, 0x03, 0x69, 0x03, 0xa3, 0xfd, 0x77, 0x08, 0x49, 0x0a, 0xc4, 0xe4, 0xbd, 0xf8, 0x0e, 0x10, 0x9d, 0x03, 0xa3, 0x06, 0xae, 0xfa, 0x96, 0xf2, 0x29, 0x03, 0x17, 0x06, 0x24, 0x01, 0xf0, 0xfe, 0x97, 0x05, 0xd8, 0x01, 0xa0, 0xf2, 0xf3, 0xfd, 0x9d, 0x08, 0x28, 0x01, 0x0b, 0x02, 0xd6, 0x05, 0x20, 0xf6, 0x0f, 0xf3, 0xee, 0x08, 0xdb, 0x05, 0x98, 0x06, 0x4b, 0xff, 0xbc, 0xf0, 0x36, 0x01, 0x86, 0x04, 0xf3, 0x01, 0xe9, 0xff, 0xf7, 0x08, 0x52, 0xfe, 0xb6, 0xf0, 0x81, 0x02, 0x6e, 0x07, 0xed, 0xfe, 0x9b, 0xfc, 0x35, 0x00, 0xd2, 0x01, 0x50, 0x00, 0xa7, 0x04, 0x76, 0x07, 0xd8, 0xf0, 0x68, 0xf9, 0x5b, 0x07, 0x85, 0x02, 0xfe, 0xff, 0x4a, 0x06, 0x90, 0xff, 0xc7, 0xf4, 0x5e, 0x00, 0xce, 0x04, 0x83, 0xff, 0x33, 0xff, 0xec, 0x00, 0x72, 0x08, 0x0f, 0xff, 0x01, 0xf2, 0x91, 0x01, 0xaf, 0x05, 0x29, 0xfd, 0x34, 0x01, 0x9c, 0x01, 0x3f, 0x05, 0x4c, 0x06, 0xbc, 0xee, 0xf5, 0xf8, 0x32, 0x0c, 0x73, 0x01, 0x1b, 0x05, 0x7d, 0x03, 0x41, 0xef, 0x7b, 0xfd, 0x8f, 0x08, 0x5d, 0x02, 0x75, 0xfe, 0x8e, 0x01, 0x07, 0x06, 0x51, 0xf7, 0x31, 0xfa, 0x33, 0x05, 0xb7, 0x0c, 0x4f, 0xfd, 0x3e, 0xeb, 0x1a, 0x04, 0xb6, 0x0a, 0xa6, 0xfe, 0xed, 0x02, 0x4c, 0x06, 0x23, 0xf2, 0xce, 0xf9, 0xfe, 0x07, 0x05, 0x03, 0x33, 0x02, 0x13, 0x04, 0x40, 0xf7, 0xd9, 0xfa, 0xdc, 0x04, 0x9f, 0x01, 0x0f, 0x02, 0xb8, 0x01, 0xf1, 0xfa, 0x99, 0xfe, 0xa3, 0x02, 0xaa, 0x00, 0x5f, 0xfc, 0x64, 0x00, 0xab, 0x02, 0xcf, 0x05, 0x4b, 0x02, 0xf6, 0xf2, 0x2e, 0xfe, 0x7e, 0x05, 0x30, 0x01, 0x01, 0x02, 0x3b, 0x04, 0x2d, 0xf9, 0x51, 0xf9, 0x9a, 0x04, 0xa7, 0x04, 0xaa, 0x06, 0x59, 0xf8, 0xa9, 0xf8, 0x81, 0x02, 0xbd, 0x02, 0x7d, 0x00, 0x48, 0x04, 0x0b, 0x07, 0xe3, 0xf2, 0x55, 0xf9, 0x83, 0x06, 0x3b, 0x02, 0x65, 0x03, 0x40, 0x06, 0xb0, 0xf4, 0x26, 0xf9, 0xec, 0x05, 0x78, 0x04, 0x85, 0xfe, 0xda, 0x09, 0x25, 0xfb, 0x0b, 0xf0, 0xe7, 0x04, 0xc6, 0x06, 0x5f, 0x00, 0x39, 0xfe, 0xfb, 0x05, 0x71, 0x00, 0x86, 0xf3, 0xc8, 0x00, 0x2b, 0x07, 0xdd, 0xff, 0x46, 0x01, 0x6c, 0x05, 0x19, 0xf8, 0x5e, 0xf7, 0xc3, 0x04, 0xef, 0x04, 0xfd, 0xfe, 0xb0, 0x09, 0x3d, 0xfb, 0x56, 0xf1, 0xd3, 0x03, 0xfa, 0x04, 0x6f, 0x01, 0x41, 0xff, 0x3f, 0x02, 0x41, 0x03, 0xbb, 0xf7, 0x7c, 0xfe, 0xb7, 0x04, 0x36, 0x01, 0xc7, 0xfd, 0x7d, 0x0a, 0xd2, 0xff, 0x67, 0xe8, 0xd6, 0x04, 0x9c, 0x0b, 0xfd, 0xfe, 0x1b, 0xfe, 0xd7, 0x06, 0x85, 0xfd, 0x61, 0xf4, 0x9b, 0x03, 0x58, 0x06, 0x38, 0x08, 0xb9, 0xf6, 0x96, 0xf5, 0xe2, 0x04, 0xe8, 0x04, 0xf3, 0xfe, 0xd5, 0x03, 0xa8, 0x07, 0xd7, 0xf1, 0xb9, 0xf9, 0x16, 0x07, 0x2d, 0x03, 0xbc, 0xff, 0x23, 0xff, 0xd0, 0x0a, 0xe0, 0xf9, 0x18, 0xef, 0x4f, 0x07, 0x0d, 0x08, 0x93, 0xfd, 0xfd, 0x00, 0x0d, 0x03, 0xb9, 0xf9, 0xe9, 0xfc, 0x6c, 0x05, 0x6b, 0xff, 0x0e, 0x06, 0x8b, 0x05, 0x56, 0xed, 0x31, 0xfc, 0xd0, 0x09, 0xb8, 0x01, 0xf8, 0x00, 0x4f, 0x07, 0xc0, 0xf6, 0x62, 0xf8, 0x9b, 0x04, 0x1d, 0x03, 0xcb, 0x00, 0x99, 0xff, 0xbf, 0x05, 0xe6, 0xff, 0xb6, 0xf3, 0x68, 0xff, 0xe3, 0x07, 0x85, 0x00, 0xbf, 0x03, 0x3d, 0x00, 0x91, 0xf5, 0x99, 0xff, 0x5e, 0x05, 0xcb, 0x03, 0x99, 0xfc, 0x5b, 0xfd, 0xac, 0x01, 0xf0, 0xff, 0x25, 0xfe, 0xab, 0x01, 0x24, 0x01, 0x1d, 0x03, 0x5f, 0x05, 0x23, 0xf5, 0xa8, 0xf9, 0x77, 0x06, 0xf0, 0x01, 0x4b, 0x04, 0x2b, 0x01, 0xaa, 0xf6, 0x9f, 0xfe, 0x57, 0x04, 0xa0, 0x01, 0x1b, 0x04, 0x37, 0xfe, 0xd8, 0xf8, 0x21, 0x01, 0x2d, 0x01, 0x9b, 0x00, 0xf7, 0x01, 0x8e, 0x07, 0x6a, 0xf9, 0x59, 0xf7, 0xbb, 0x03, 0x4d, 0x02, 0x71, 0x00, 0xcf, 0x01, 0xea, 0x05, 0x8e, 0xf9, 0x24, 0xf9, 0xbf, 0x03, 0x70, 0x01, 0xa0, 0xfe, 0x31, 0x02, 0x10, 0x00, 0x36, 0x08, 0x1b, 0xfd, 0x9c, 0xf1, 0x27, 0x03, 0xaf, 0x05, 0x09, 0x01, 0x6d, 0xfe, 0x96, 0x05, 0x3f, 0x02, 0x92, 0xf3, 0x65, 0xff, 0xe7, 0x06, 0x02, 0xff, 0xa9, 0xfe, 0xd8, 0xff, 0x28, 0x01, 0x11, 0x00, 0x23, 0x06, 0xf6, 0xff, 0x13, 0xf3, 0x1e, 0x01, 0xc2, 0x08, 0x2a, 0x01, 0xc9, 0xf9, 0x84, 0xff, 0x4f, 0x02, 0x96, 0xff, 0xcf, 0xff, 0x6f, 0x03, 0x23, 0x00, 0x18, 0xfb, 0x1f, 0x00, 0xdb, 0x01, 0x0b, 0x00, 0xd5, 0xfd, 0x8b, 0x04, 0xa3, 0x02, 0xac, 0xf8, 0x1e, 0xff, 0xa9, 0x01, 0xc1, 0x02, 0x45, 0x03, 0xd9, 0xfa, 0x8b, 0xfd, 0x6e, 0x00, 0x4b, 0x02, 0x19, 0x00, 0x67, 0x04, 0x43, 0x04, 0x6b, 0xf3, 0xbf, 0xfc, 0x17, 0x06, 0x77, 0x02, 0xd2, 0xfe, 0x0f, 0x02, 0x6a, 0x05, 0xc3, 0xf7, 0xbd, 0xf8, 0x6f, 0x06, 0x27, 0x03, 0x68, 0x00, 0x24, 0x05, 0xf2, 0xf8, 0x89, 0xf9, 0xca, 0x04, 0x98, 0x00, 0xda, 0xff, 0xe9, 0x00, 0x43, 0x01, 0xfd, 0xfe, 0xe6, 0x06, 0x49, 0xfe, 0x11, 0xf1, 0xdb, 0x04, 0x0b, 0x07, 0x11, 0xff, 0x18, 0x01, 0x8c, 0x00, 0x6f, 0xfc, 0x14, 0xff, 0x5f, 0x02, 0x05, 0xff, 0xc6, 0xfe, 0xa7, 0x00, 0x0c, 0x01, 0xff, 0xfe, 0xba, 0xfe, 0xb0, 0x00, 0x63, 0x05, 0x1e, 0x01, 0x76, 0xf7, 0xe0, 0xff, 0xa5, 0x02, 0x1c, 0x00, 0x55, 0x00, 0x6f, 0x04, 0xf0, 0xff, 0xb6, 0xf8, 0x1f, 0x00, 0xdf, 0x02, 0xb9, 0x00, 0x3d, 0x01, 0x29, 0xff, 0xe3, 0xfd, 0x88, 0x00, 0xc4, 0x00, 0x9c, 0xff, 0xe6, 0xff, 0x85, 0x01, 0xd4, 0xff, 0x51, 0xfe, 0x17, 0x00, 0x97, 0x00, 0x8f, 0x00, 0x9c, 0xff, 0xa4, 0xff, 0x42, 0xff, 0x53, 0xff, 0x9a, 0x00, 0x08, 0x06, 0x78, 0xfe, 0x81, 0xf8, 0xbc, 0x00, 0x3f, 0x02, 0x3c, 0x01, 0xed, 0xff, 0x6e, 0x00, 0x9e, 0x00, 0xbd, 0x03, 0x50, 0xff, 0x38, 0xf7, 0x05, 0x00, 0xcb, 0x04, 0x66, 0x01, 0xf9, 0xfe, 0x61, 0xfe, 0x6b, 0x00, 0x88, 0xfe, 0x9a, 0x00, 0x36, 0x01, 0x4f, 0x06, 0x54, 0xfe, 0x30, 0xf6, 0xa6, 0x01, 0x83, 0x02, 0x6c, 0x01, 0x86, 0xff, 0xbf, 0x03, 0x1f, 0x03, 0x8f, 0xf6, 0x6d, 0xfc, 0x72, 0x05, 0x54, 0x01, 0xf3, 0x02, 0x61, 0x01, 0x69, 0xf8, 0x7e, 0xfe, 0xc3, 0x02, 0x88, 0x01, 0x55, 0x00, 0xbf, 0x00, 0xc7, 0x05, 0x4c, 0xfa, 0x9a, 0xf7, 0x46, 0x04, 0x44, 0x05, 0xa5, 0x03, 0x39, 0xf9, 0x7f, 0xfc, 0x49, 0x03, 0x4e, 0x01, 0x15, 0xff, 0x7a, 0x00, 0x7f, 0x00, 0x7f, 0x02, 0xdd, 0x00, 0x41, 0xf9, 0x96, 0xff, 0xfd, 0x01, 0xc7, 0x00, 0x95, 0x00, 0x2d, 0x01, 0x77, 0x06, 0xdd, 0xf8, 0xe6, 0xf8, 0xdf, 0x03, 0xff, 0x02, 0xe4, 0xff, 0x07, 0x02, 0x79, 0x01, 0x4d, 0xf9, 0x02, 0x00, 0xeb, 0x03, 0xf7, 0x04, 0x71, 0xfc, 0x39, 0xf8, 0x51, 0x02, 0x31, 0x02, 0x5b, 0x04, 0xe6, 0x00, 0x2c, 0xf9, 0x35, 0xff, 0xcd, 0x01, 0x52, 0x01, 0x4a, 0x00, 0xa9, 0x01, 0x67, 0x04, 0xfc, 0xf7, 0x03, 0xfc, 0x63, 0x06, 0x6f, 0x03, 0xe1, 0xfd, 0x55, 0xfb, 0xfe, 0x00, 0xe1, 0x01, 0x9e, 0x00, 0xe6, 0xff, 0x3b, 0xff, 0xb1, 0xff, 0x04, 0x00, 0xee, 0xfe, 0x08, 0x00, 0xb7, 0x01, 0xf8, 0x00, 0x3b, 0x04, 0x45, 0xfc, 0x25, 0xf9, 0x8d, 0x02, 0x39, 0x02, 0x1d, 0x00, 0x14, 0x00, 0x83, 0x05, 0xcd, 0xfd, 0xc1, 0xf6, 0x89, 0x02, 0x89, 0x03, 0xcb, 0x03, 0xc1, 0x00, 0x6d, 0xf8, 0x8c, 0xff, 0x3b, 0x02, 0x7f, 0x00, 0xa1, 0x00, 0x86, 0x00, 0x5a, 0x06, 0xf6, 0xfa, 0x49, 0xf8, 0xb3, 0x02, 0xd5, 0x02, 0x9e, 0x00, 0xb7, 0xff, 0x53, 0x00, 0x6f, 0x01, 0xdc, 0xfe, 0x79, 0xfd, 0x6c, 0x01, 0xeb, 0x00, 0xa2, 0xff, 0x74, 0x00, 0xb8, 0x00, 0x48, 0xfe, 0x45, 0xff, 0x76, 0x01, 0xdd, 0x00, 0x3c, 0xff, 0x75, 0xfe, 0x65, 0x00, 0xaf, 0x00, 0xa3, 0x01, 0xdb, 0x06, 0x74, 0xf6, 0xb1, 0xf8, 0xe7, 0x05, 0xcd, 0x02, 0x89, 0xff, 0x5e, 0x01, 0x82, 0x04, 0x11, 0xfa, 0x35, 0xfb, 0x1d, 0x03, 0x01, 0x02, 0x76, 0x01, 0xd6, 0x01, 0x05, 0xfc, 0xb1, 0xfd, 0xe4, 0x01, 0x84, 0xff, 0xc2, 0x00, 0xad, 0x00, 0xba, 0x05, 0xfb, 0xfc, 0x36, 0xf8, 0x15, 0x02, 0x0b, 0x02, 0x10, 0x01, 0x8a, 0xff, 0x12, 0x06, 0x21, 0xfd, 0xa2, 0xf7, 0xd0, 0x01, 0x53, 0x03, 0xbf, 0x00, 0x5a, 0xff, 0x45, 0x01, 0xe3, 0x02, 0xe8, 0xfa, 0x0d, 0xfd, 0xd9, 0x03, 0xfd, 0x00, 0x75, 0xff, 0x97, 0x02, 0xc9, 0xff, 0x9a, 0xf9, 0xe2, 0x00, 0x0b, 0x03, 0xaf, 0x06, 0x3d, 0xfb, 0x79, 0xf7, 0x2f, 0x03, 0x21, 0x03, 0x80, 0x00, 0xa1, 0xff, 0x5f, 0x06, 0x6d, 0xfa, 0x41, 0xf8, 0x07, 0x05, 0x07, 0x03, 0x14, 0xff, 0x29, 0x00, 0xb7, 0x03, 0xa5, 0xfb, 0x11, 0xfc, 0x35, 0x03, 0xd6, 0x01, 0x39, 0xff, 0x9a, 0x05, 0xdd, 0xfd, 0x00, 0xf6, 0x87, 0x02, 0x65, 0x03, 0xfb, 0x00, 0xde, 0xfe, 0xe9, 0x03, 0x93, 0x02, 0x41, 0xf6, 0x6d, 0xfe, 0xf7, 0x04, 0x8b, 0x01, 0x9d, 0xfe, 0xe7, 0x05, 0x19, 0xfd, 0xe2, 0xf7, 0x03, 0x02, 0x5b, 0x03, 0x40, 0x00, 0xf1, 0x00, 0x8b, 0x04, 0x99, 0xf9, 0x6e, 0xfb, 0xb1, 0x03, 0x09, 0x02, 0x8e, 0x00, 0x47, 0x03, 0x5b, 0xfc, 0x69, 0xfb, 0x53, 0x02, 0x51, 0x01, 0x3a, 0x01, 0xac, 0x01, 0xe7, 0xfc, 0x75, 0xfe, 0x95, 0x00, 0x59, 0x00, 0x25, 0x01, 0xb3, 0x03, 0xd7, 0xfd, 0x06, 0xfb, 0x97, 0x00, 0x8b, 0x02, 0x01, 0x00, 0x13, 0x03, 0xca, 0x01, 0x45, 0xf8, 0x56, 0xff, 0x8d, 0x02, 0x71, 0x02, 0x88, 0x01, 0x8d, 0xfc, 0x3c, 0xfe, 0x33, 0x01, 0x9a, 0x00, 0xdc, 0x00, 0x96, 0xff, 0xe3, 0xff, 0x96, 0xff, 0x5d, 0x03, 0x0b, 0x03, 0x01, 0xf7, 0x4b, 0xfe, 0xe3, 0x04, 0x03, 0x02, 0x2e, 0xfe, 0x91, 0xfe, 0xcd, 0x00, 0x3b, 0x00, 0xae, 0xff, 0xe0, 0x00, 0xd6, 0x00, 0x7c, 0xfe, 0x66, 0xff, 0x85, 0x00, 0x53, 0x00, 0x11, 0x00, 0x3e, 0x00, 0xa7, 0xff, 0xd5, 0xff, 0xc3, 0xff, 0x5a, 0xff, 0xdb, 0xff, 0xbb, 0x02, 0x63, 0x02, 0x21, 0xfb, 0x69, 0xfe, 0x3f, 0x02, 0xe9, 0x00, 0x83, 0xff, 0x86, 0xff, 0xec, 0xff, 0x38, 0xff, 0x2c, 0x00, 0x15, 0x01, 0x3b, 0x00, 0x24, 0x01, 0x99, 0x01, 0x67, 0xfd, 0x1e, 0xfe, 0x16, 0x00, 0x92, 0x00, 0xf0, 0xff, 0x25, 0x00, 0xf1, 0x00, 0x2b, 0x02, 0xeb, 0xfe, 0xad, 0xfc, 0xac, 0x00, 0x43, 0x01, 0xa7, 0xff, 0x18, 0xff, 0x1e, 0x01, 0x4c, 0x00, 0xb9, 0x03, 0x67, 0xfe, 0x19, 0xfa, 0xa0, 0x01, 0xeb, 0x01, 0x3c, 0x01, 0x36, 0xff, 0xd5, 0xfe, 0xef, 0xff, 0xfb, 0xff, 0x44, 0x00, 0x99, 0x01, 0xed, 0x01, 0xcd, 0xfc, 0xff, 0xfd, 0x8a, 0x01, 0xc5, 0x00, 0x11, 0x00, 0x23, 0xff, 0xf5, 0xff, 0xc9, 0x01, 0x79, 0x00, 0x1a, 0xff, 0x9f, 0xfe, 0xa8, 0xff, 0xdc, 0x00, 0x4d, 0x00, 0xe4, 0xff, 0xf4, 0xfe, 0x9b, 0xff, 0x43, 0x01, 0x83, 0x00, 0x50, 0x00, 0xf6, 0x01, 0x8d, 0xfc, 0x69, 0xfe, 0x4d, 0x02, 0xa4, 0x00, 0x59, 0xff, 0xf7, 0x02, 0x31, 0x02, 0xe0, 0xf7, 0x7e, 0xfe, 0xfb, 0x03, 0x51, 0x01, 0xfd, 0x00, 0xc6, 0xfe, 0x2d, 0xfe, 0xac, 0x00, 0x55, 0x00, 0x17, 0xff, 0x7a, 0x00, 0x73, 0x01, 0xf7, 0x03, 0xe5, 0xfb, 0xbd, 0xfb, 0x0f, 0x02, 0xf8, 0x00, 0xad, 0x00, 0xff, 0xff, 0xe7, 0x03, 0x15, 0xfe, 0x5d, 0xfa, 0x19, 0x01, 0x9f, 0x03, 0xe9, 0x00, 0x31, 0xfd, 0xb4, 0xff, 0xe6, 0x00, 0x95, 0xff, 0x68, 0xff, 0xf5, 0x00, 0xee, 0x00, 0x6b, 0x02, 0x3d, 0xfe, 0xf9, 0xfb, 0x34, 0x01, 0x34, 0x01, 0xa3, 0x00, 0x76, 0x00, 0xdb, 0xfe, 0x45, 0xff, 0xb3, 0xff, 0xaa, 0x00, 0xc4, 0x00, 0xc5, 0x00, 0xf5, 0x02, 0xa7, 0xfc, 0xdd, 0xfb, 0x15, 0x02, 0x8e, 0x01, 0x07, 0x01, 0x31, 0x01, 0x61, 0xfd, 0x90, 0xfe, 0x42, 0x01, 0x91, 0x00, 0x65, 0x00, 0x22, 0x00, 0x0f, 0xff, 0x4d, 0xff, 0xff, 0xff, 0x0f, 0x02, 0xc7, 0x01, 0xa1, 0xfc, 0xdc, 0xfe, 0x8b, 0x01, 0xdb, 0xff, 0xb6, 0xff, 0x6e, 0x00, 0xbf, 0x02, 0xd0, 0xfe, 0x99, 0xfc, 0x00, 0x01, 0xc5, 0x00, 0xa5, 0xff, 0x4a, 0x00, 0x83, 0x02, 0x47, 0xff, 0xed, 0xfc, 0x6e, 0x00, 0x04, 0x01, 0x31, 0x00, 0x9b, 0x00, 0xde, 0xff, 0x06, 0xff, 0x04, 0x00, 0x4a, 0x00, 0x20, 0x00, 0x4c, 0x00, 0xc9, 0xff, 0xa5, 0xff, 0x08, 0x00, 0x19, 0x00, 0xe0, 0xff, 0xbc, 0xff, 0x4c, 0x00, 0xa9, 0x00, 0x10, 0x01, 0x29, 0xff, 0x2d, 0xfe, 0x46, 0x00, 0xfd, 0x00, 0x38, 0x00, 0x72, 0xff, 0xff, 0xff, 0xc0, 0xff, 0x47, 0xff, 0x82, 0x00, 0xe6, 0x00, 0x46, 0x00, 0xe7, 0x02, 0xcb, 0xfd, 0xf4, 0xfa, 0xca, 0x01, 0x63, 0x02, 0x3b, 0x00, 0xd9, 0x02, 0x99, 0xfd, 0xe5, 0xfb, 0xab, 0x01, 0x9b, 0x00, 0x98, 0x00, 0xd7, 0xff, 0xe1, 0x02, 0xcb, 0x00, 0x58, 0xfa, 0xad, 0xff, 0xd8, 0x01, 0xb6, 0x00, 0x40, 0x00, 0xc9, 0x02, 0x4c, 0xfe, 0x39, 0xfc, 0x21, 0x01, 0x01, 0x01, 0x61, 0x00, 0x92, 0xff, 0x8c, 0x00, 0xc8, 0xff, 0xd0, 0x01, 0x99, 0x01, 0xc8, 0xfa, 0x54, 0xff, 0x9a, 0x01, 0x73, 0x00, 0x32, 0x00, 0x39, 0x03, 0xd3, 0xfe, 0x8d, 0xfb, 0x9d, 0x00, 0xaf, 0x01, 0x70, 0x00, 0x92, 0x00, 0xc9, 0x02, 0xa5, 0xfc, 0xe3, 0xfc, 0xbd, 0x01, 0x33, 0x01, 0x16, 0x00, 0xd1, 0xff, 0xb8, 0x00, 0x99, 0x02, 0x25, 0xfd, 0xe9, 0xfc, 0x46, 0x01, 0xfa, 0x00, 0x34, 0x00, 0xc7, 0x02, 0x4e, 0xff, 0x17, 0xfc, 0x14, 0x00, 0x5b, 0x01, 0xa4, 0x00, 0xcf, 0x02, 0xdf, 0xfe, 0xf4, 0xfb, 0xaa, 0x00, 0xd4, 0x00, 0x06, 0x01, 0x8a, 0xff, 0x4b, 0x02, 0xb1, 0x01, 0x31, 0xfa, 0xd5, 0xfe, 0x87, 0x02, 0x18, 0x01, 0x84, 0xff, 0x0c, 0x01, 0xf5, 0x02, 0xb9, 0xfb, 0xe9, 0xfc, 0x0f, 0x02, 0x82, 0x01, 0x73, 0x00, 0x7f, 0x01, 0x54, 0xfe, 0x57, 0xfd, 0x15, 0x01, 0xba, 0x01, 0x6f, 0x02, 0xf3, 0xfc, 0xc3, 0xfd, 0xfe, 0x00, 0xe3, 0x00, 0x34, 0x00, 0x7c, 0x00, 0xd2, 0xff, 0x88, 0x01, 0x58, 0x01, 0x12, 0xfb, 0x4e, 0xff, 0xca, 0x01, 0x8c, 0x00, 0x22, 0x00, 0x15, 0x02, 0xed, 0xff, 0x6d, 0xfb, 0xb0, 0x00, 0xdb, 0x01, 0xcd, 0x01, 0x64, 0x01, 0x8d, 0xfb, 0x33, 0xff, 0x0c, 0x01, 0xf1, 0x00, 0xe4, 0xff, 0xe2, 0x01, 0xd5, 0x01, 0x01, 0xfb, 0xd8, 0xfe, 0xb5, 0x01, 0x39, 0x01, 0x9e, 0xff, 0x51, 0x02, 0x53, 0x00, 0x69, 0xfb, 0xc5, 0xff, 0xf0, 0x01, 0x70, 0x00, 0x58, 0x01, 0x9b, 0x00, 0xe3, 0xfc, 0x75, 0xff, 0xbb, 0x01, 0x3e, 0x00, 0x8a, 0xff, 0x38, 0xff, 0xf6, 0xff, 0xa0, 0x00, 0x91, 0x00, 0x7b, 0xff, 0x8e, 0x01, 0xc9, 0x02, 0xa2, 0xfa, 0xc3, 0xfd, 0x75, 0x02, 0x0c, 0x01, 0x0a, 0x00, 0xf0, 0xff, 0x35, 0x03, 0x4f, 0xfe, 0x45, 0xfb, 0x2e, 0x01, 0xdf, 0x01, 0x61, 0x00, 0x9e, 0xff, 0x25, 0x02, 0x84, 0xff, 0x81, 0xfb, 0xab, 0x01, 0x70, 0x01, 0xac, 0x01, 0x36, 0x01, 0x1c, 0xfb, 0x33, 0xff, 0xd6, 0x01, 0x8f, 0x00, 0x16, 0x00, 0x58, 0x00, 0x49, 0x03, 0x0d, 0xfd, 0x7f, 0xfc, 0x64, 0x01, 0x3c, 0x01, 0x1f, 0x00, 0x00, 0x01, 0xf6, 0x01, 0xb1, 0xfc, 0x3f, 0xfe, 0x61, 0x01, 0xa1, 0x00, 0xca, 0x00, 0x28, 0x01, 0x2e, 0xfe, 0xc9, 0xfe, 0xeb, 0x00, 0x41, 0x00, 0xb4, 0xff, 0x10, 0x01, 0xea, 0xff, 0xd3, 0xfe, 0xfc, 0xff, 0xbc, 0xff, 0x77, 0x00, 0x74, 0x00, 0x53, 0x02, 0x03, 0xff, 0xa7, 0xfc, 0x9b, 0x00, 0x94, 0x00, 0xbc, 0x00, 0xd7, 0xff, 0xdc, 0x01, 0x10, 0x01, 0xd9, 0xfb, 0x38, 0xff, 0x69, 0x01, 0xc1, 0x00, 0x3d, 0x00, 0x0b, 0x00, 0x60, 0xff, 0x4f, 0x00, 0x11, 0x00, 0x75, 0x02, 0xd4, 0xff, 0x2d, 0xfb, 0x6e, 0x00, 0xe1, 0x01, 0x86, 0x00, 0xce, 0x00, 0xee, 0xfe, 0x99, 0xfe, 0xcb, 0x00, 0xdf, 0x01, 0x8a, 0xff, 0x2d, 0xfe, 0x56, 0x00, 0x5f, 0x00, 0x32, 0x00, 0xa3, 0x00, 0x5d, 0xff, 0x56, 0xff, 0x19, 0x00, 0xd6, 0x00, 0xf5, 0x00, 0xb4, 0xfe, 0x0b, 0xff, 0x33, 0x01, 0x44, 0x00, 0x51, 0xff, 0xe3, 0xff, 0xd8, 0xff, 0x05, 0x00, 0xa9, 0x00, 0x8d, 0x01, 0xd6, 0xfe, 0x31, 0xfe, 0x97, 0x00, 0x85, 0x00, 0x9a, 0x00, 0xcf, 0xff, 0x5f, 0xff, 0xef, 0xff, 0xae, 0xff, 0x4a, 0x00, 0x86, 0x00, 0xd0, 0x01, 0x6f, 0xff, 0x25, 0xfd, 0x68, 0x00, 0xbb, 0x00, 0x0b, 0x00, 0xe4, 0xff, 0x9d, 0x01, 0x1f, 0x01, 0x71, 0xfc, 0x1b, 0xff, 0x79, 0x01, 0x81, 0x01, 0x6f, 0x01, 0x57, 0xfd, 0xd2, 0xfe, 0xd6, 0x00, 0x2e, 0x00, 0x67, 0x00, 0x37, 0x00, 0x1c, 0x01, 0x37, 0x00, 0xb1, 0xfd, 0xae, 0xff, 0xfb, 0x00, 0x28, 0x00, 0x63, 0xff, 0x0b, 0x00, 0x8c, 0x00, 0x72, 0x01, 0xad, 0xff, 0xc5, 0xfd, 0x47, 0x00, 0xe5, 0x00, 0x04, 0x00, 0x96, 0xff, 0xcf, 0xff, 0x1c, 0x00, 0xc5, 0x00, 0xdf, 0x00, 0xc7, 0xfe, 0x11, 0xff, 0x85, 0x00, 0x43, 0x00, 0x3d, 0x00, 0x13, 0x00, 0xd5, 0xff, 0xb6, 0xff, 0x2e, 0x00, 0x87, 0xff, 0xbd, 0xff, 0x4d, 0x00, 0xf1, 0x01, 0x9b, 0x00, 0xb9, 0xfc, 0x8f, 0xff, 0xd3, 0x00, 0xca, 0x00, 0xd8, 0xff, 0xcb, 0x00, 0x4b, 0x02, 0xb3, 0xfc, 0x9d, 0xfd, 0xdb, 0x01, 0xdd, 0x00, 0x19, 0x00, 0xb3, 0xff, 0xd2, 0x01, 0xca, 0x00, 0xd9, 0xfb, 0x96, 0xff, 0xa0, 0x01, 0x92, 0x00, 0xb4, 0xff, 0x3f, 0x02, 0x83, 0xff, 0xa7, 0xfc, 0x73, 0x00, 0x4f, 0x01, 0xc7, 0x00, 0x48, 0xff, 0x7d, 0xff, 0x0a, 0x00, 0x23, 0x00, 0xe9, 0x00, 0xed, 0xff, 0xe5, 0xfe, 0x1a, 0x00, 0xc5, 0xff, 0x26, 0x00, 0x4f, 0x00, 0x0f, 0x01, 0x5e, 0x01, 0x4f, 0xfd, 0xb8, 0xfe, 0x12, 0x01, 0x6b, 0x00, 0x94, 0x00, 0x13, 0x01, 0x9f, 0xfe, 0xf1, 0xfe, 0xa6, 0x00, 0x47, 0x00, 0x9f, 0xff, 0xdb, 0xff, 0x6d, 0x00, 0x21, 0x01, 0x50, 0x00, 0xbd, 0xfd, 0x90, 0xff, 0xda, 0x00, 0x4f, 0x01, 0xe0, 0x00, 0xdb, 0xfd, 0x65, 0xff, 0xd6, 0x00, 0xce, 0xff, 0xbc, 0xff, 0x8c, 0x00, 0x47, 0x00, 0x04, 0x00, 0x07, 0x00, 0x25, 0x01, 0xfc, 0xff, 0x5f, 0xfd, 0x98, 0xff, 0x0d, 0x01, 0xce, 0x00, 0x7f, 0x01, 0xb2, 0xfe, 0x6a, 0xfe, 0xc5, 0x00, 0x64, 0x00, 0xb4, 0xff, 0xc8, 0xff, 0x98, 0x00, 0x67, 0x01, 0xdf, 0xfe, 0x5d, 0xfe, 0x46, 0x00, 0xd4, 0x00, 0x59, 0x00, 0xcc, 0x01, 0xb2, 0xfe, 0xcd, 0xfd, 0x94, 0x00, 0x9a, 0x00, 0x35, 0x00, 0x24, 0x01, 0x55, 0x00, 0xdf, 0xfd, 0xd8, 0xff, 0x92, 0x00, 0x6a, 0x00, 0x94, 0x00, 0x69, 0xff, 0x42, 0xff, 0x2c, 0x00, 0x01, 0x01, 0x14, 0x00, 0xba, 0xfe, 0xda, 0xff, 0x6b, 0x00, 0x60, 0x01, 0x76, 0x00, 0xef, 0xfd, 0x9f, 0xff, 0x4f, 0x00, 0x4f, 0x00, 0x76, 0x00, 0xdc, 0x01, 0x9a, 0xfe, 0x12, 0xfe, 0x88, 0x00, 0x6a, 0x00, 0x31, 0x00, 0xd1, 0x00, 0x30, 0x01, 0xe1, 0xfd, 0xac, 0xfe, 0x03, 0x01, 0xbc, 0x00, 0x81, 0x01, 0x29, 0xff, 0x09, 0xfe, 0x7c, 0x00, 0x44, 0x00, 0x5c, 0x00, 0x43, 0x01, 0x2d, 0xff, 0x84, 0xfe, 0x4f, 0x00, 0x86, 0x00, 0xd7, 0x00, 0x30, 0x01, 0x1c, 0xfe, 0xe7, 0xfe, 0xaf, 0x00, 0x3e, 0x00, 0x58, 0x00, 0x0d, 0x01, 0x57, 0xff, 0xcf, 0xfe, 0x4c, 0x00, 0x7d, 0x00, 0x26, 0x00, 0xb4, 0xff, 0x04, 0x00, 0xef, 0xff, 0xa1, 0xff, 0x1f, 0x00, 0x7f, 0x00, 0xfb, 0xff, 0xc8, 0xff, 0x2b, 0x00, 0x34, 0x00, 0xb8, 0x01, 0xdf, 0xfe, 0x43, 0xfd, 0xd4, 0x00, 0x03, 0x01, 0x91, 0x00, 0x23, 0x00, 0x1d, 0xff, 0xb4, 0xff, 0x4a, 0x00, 0x31, 0x00, 0x38, 0x00, 0xde, 0xff, 0xc0, 0xff, 0xe4, 0xff, 0xb4, 0xff, 0x44, 0x00, 0x3d, 0x00, 0x86, 0x00, 0xa3, 0x01, 0xe7, 0xfd, 0x66, 0xfe, 0xe8, 0x00, 0x5c, 0x00, 0x48, 0x01, 0xab, 0xff, 0xc1, 0xfe, 0xe6, 0xff, 0x3d, 0x00, 0x32, 0x00, 0x40, 0x00, 0xf5, 0xff, 0x8b, 0x00, 0xed, 0x01, 0x53, 0xfd, 0x70, 0xfe, 0x03, 0x01, 0x94, 0x00, 0x0a, 0x00, 0x33, 0x01, 0x41, 0x00, 0xeb, 0xfd, 0xc2, 0xff, 0x91, 0x00, 0xfc, 0xff, 0xe9, 0x00, 0x1e, 0x01, 0x13, 0xfe, 0x0c, 0xff, 0x7d, 0x00, 0xbf, 0x00, 0xf9, 0xff, 0xbd, 0x01, 0x59, 0xff, 0x7d, 0xfd, 0x53, 0x00, 0xb5, 0x00, 0x7f, 0x00, 0xec, 0xff, 0xbe, 0x01, 0x1a, 0xff, 0x95, 0xfd, 0x71, 0x00, 0xfe, 0x00, 0x25, 0x00, 0x0c, 0x01, 0x17, 0x00, 0xe7, 0xfd, 0x05, 0x00, 0x79, 0x00, 0x26, 0x00, 0x04, 0x00, 0x84, 0x01, 0xda, 0xff, 0xd9, 0xfd, 0x46, 0x00, 0x41, 0x00, 0x1c, 0x00, 0x08, 0x00, 0xf1, 0x00, 0x19, 0x01, 0xeb, 0xfd, 0x1d, 0xff, 0x9e, 0x00, 0x2c, 0x00, 0x5f, 0x00, 0xff, 0xff, 0x06, 0x01, 0x79, 0x00, 0x9f, 0xfd, 0x78, 0xff, 0x2b, 0x01, 0x4d, 0x00, 0xcb, 0x00, 0x14, 0x00, 0x60, 0xfe, 0xe4, 0xff, 0x80, 0x00, 0x73, 0x00, 0x23, 0x00, 0x78, 0xff, 0xd8, 0xff, 0x2e, 0x00, 0x58, 0x00, 0x01, 0x00, 0xb3, 0xff, 0xea, 0xff, 0x14, 0x00, 0xe7, 0xff, 0xcb, 0xff, 0x20, 0x00, 0x3c, 0x01, 0xce, 0xff, 0x87, 0xfe, 0xf2, 0xff, 0x3d, 0x00, 0x97, 0x00, 0x27, 0x01, 0xf6, 0xfe, 0x0c, 0xff, 0x23, 0x00, 0x11, 0x00, 0x64, 0x00, 0x2e, 0x00, 0x10, 0x00, 0xb1, 0x01, 0xc7, 0xfe, 0xeb, 0xfd, 0xd4, 0x00, 0x61, 0x00, 0xff, 0xff, 0x1a, 0x00, 0xb6, 0x00, 0x61, 0x00, 0xd3, 0xfe, 0x6f, 0xff, 0x77, 0x00, 0x4a, 0x00, 0x23, 0x00, 0xe6, 0xff, 0xd2, 0xff, 0xfb, 0xff, 0x0d, 0x00, 0x08, 0x00, 0x0e, 0x00, 0x02, 0x00, 0xf5, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0xf0, 0xff, 0x05, 0x00, 0xe4, 0xff, 0x99, 0xff, 0x0d, 0x00, 0x8f, 0x00, 0xe1, 0xff, 0x42, 0x01, 0xf2, 0xff, 0x8b, 0xfd, 0x17, 0x00, 0x21, 0x01, 0x0b, 0x00, 0xbf, 0x00, 0x88, 0x00, 0x1f, 0xfe, 0x89, 0xff, 0xcb, 0x00, 0xc1, 0x00, 0xb0, 0xff, 0x6b, 0xff, 0x05, 0x00, 0xec, 0xff, 0x49, 0x00, 0x47, 0x00, 0xff, 0xff, 0x7a, 0xff, 0x49, 0x01, 0xaa, 0x00, 0x8f, 0xfd, 0xcb, 0xff, 0x73, 0x00, 0x79, 0x00, 0xf3, 0xff, 0xf5, 0x00, 0xc2, 0x00, 0x9f, 0xfd, 0x5d, 0xff, 0x42, 0x01, 0x2f, 0x00, 0x0f, 0x01, 0x04, 0x00, 0x16, 0xfe, 0xef, 0xff, 0x8b, 0x00, 0x37, 0x00, 0x9e, 0x00, 0xa6, 0x00, 0x9f, 0xfe, 0x8a, 0xff, 0x52, 0x00, 0x17, 0x00, 0xea, 0xff, 0xf7, 0x00, 0xa1, 0x00, 0x5b, 0xfe, 0xa2, 0xff, 0x2e, 0x00, 0x4d, 0x00, 0x3b, 0x00, 0x1d, 0x00, 0xff, 0xff, 0x4b, 0x01, 0x7a, 0xff, 0xcf, 0xfd, 0x6e, 0x00, 0xce, 0x00, 0x5e, 0x00, 0xb3, 0x00, 0x45, 0xff, 0x18, 0xff, 0x50, 0x00, 0xed, 0xff, 0x34, 0x00, 0x29, 0x00, 0xe9, 0x00, 0x4c, 0x00, 0x4c, 0xfe, 0xb3, 0xff, 0xeb, 0x00, 0x3e, 0x00, 0x95, 0xff, 0xdb, 0xff, 0x00, 0x00, 0x16, 0x00, 0x83, 0x00, 0x44, 0x00, 0x4a, 0xff, 0xb9, 0xff, 0x37, 0x00, 0x17, 0x00, 0x28, 0x00, 0x10, 0x00, 0xe0, 0xff, 0xe1, 0xff, 0x08, 0x00, 0xb3, 0xff, 0x0e, 0x00, 0x38, 0x00, 0xbc, 0x00, 0x7c, 0x00, 0x69, 0xfe, 0x5f, 0xff, 0xe8, 0x00, 0x22, 0x00, 0x15, 0x01, 0xfe, 0xff, 0x39, 0xfe, 0x34, 0x00, 0x7a, 0x00, 0xdb, 0xff, 0xcc, 0xff, 0x56, 0x00, 0x25, 0x00, 0x3e, 0x00, 0xd4, 0xff, 0xab, 0xff, 0x07, 0x00, 0xc1, 0x00, 0xc5, 0x00, 0x3c, 0xfe, 0x50, 0xff, 0xc4, 0x00, 0x4f, 0x00, 0x2c, 0x00, 0xf6, 0xff, 0xc3, 0xff, 0xf0, 0xff, 0x11, 0x00, 0x05, 0x00, 0x20, 0x00, 0xfc, 0xff, 0xd8, 0xff, 0xb9, 0xff, 0x01, 0x00, 0x65, 0x00, 0x01, 0x01, 0x5f, 0xff, 0xf6, 0xfe, 0x58, 0x00, 0x43, 0x00, 0xe4, 0xff, 0xde, 0xff, 0x28, 0x00, 0x77, 0x00, 0x10, 0x00, 0x5d, 0xff, 0xe1, 0xff, 0x29, 0x00, 0x17, 0x00, 0xe4, 0xff, 0xdd, 0xff, 0x38, 0x00, 0x43, 0x00, 0x44, 0x00, 0xa7, 0xff, 0xb0, 0xff, 0x07, 0x00, 0xf8, 0xff, 0x1c, 0x00, 0xed, 0xff, 0xda, 0xff, 0x29, 0x00, 0x43, 0x00, 0x10, 0x00, 0xd5, 0xff, 0xcf, 0xff, 0x07, 0x00, 0x14, 0x00, 0x05, 0x00, 0xec, 0xff, 0xce, 0xff, 0xdd, 0xff, 0x6d, 0x00, 0xbe, 0x00, 0x51, 0xff, 0x6b, 0xff, 0x38, 0x00, 0x0b, 0x00, 0x04, 0x00, 0x77, 0x00, 0x0a, 0x00, 0x7e, 0xff, 0xed, 0xff, 0x29, 0x00, 0xc0, 0xff, 0xe9, 0xff, 0x3d, 0x00, 0x71, 0x00, 0xfb, 0x00, 0xc9, 0xfe, 0x05, 0xff, 0x65, 0x00, 0x38, 0x00, 0x44, 0x00, 0xf2, 0xff, 0x22, 0x01, 0xce, 0xff, 0x4c, 0xfe, 0x34, 0x00, 0x9e, 0x00, 0x10, 0x00, 0xd8, 0xff, 0x01, 0x00, 0x16, 0x00, 0x11, 0x00, 0xde, 0xff, 0xae, 0xff, 0x3e, 0x00, 0xd4, 0x00, 0x6e, 0xff, 0x81, 0xff, 0xfc, 0xff, 0x08, 0x00, 0x20, 0x00, 0xfe, 0x00, 0xfb, 0xff, 0xbb, 0xfe, 0xd1, 0xff, 0x5b, 0x00, 0x2f, 0x00, 0xe6, 0x00, 0x10, 0x00, 0x9f, 0xfe, 0xe0, 0xff, 0x4a, 0x00, 0x5e, 0x00, 0x04, 0x00, 0xfd, 0x00, 0xc2, 0xff, 0x79, 0xfe, 0x16, 0x00, 0x7a, 0x00, 0x41, 0x00, 0xc5, 0x00, 0x8f, 0xff, 0x0e, 0xff, 0x44, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x25, 0x00, 0x34, 0x00, 0xe7, 0xff, 0x55, 0x00, 0x3c, 0x01, 0x66, 0xfe, 0xe7, 0xfe, 0x97, 0x00, 0x6e, 0x00, 0x14, 0x00, 0xce, 0x00, 0xfc, 0xff, 0xb5, 0xfe, 0x01, 0x00, 0x47, 0x00, 0x37, 0x00, 0x7a, 0x00, 0x01, 0x00, 0x36, 0xff, 0xda, 0xff, 0x31, 0x00, 0xad, 0x00, 0x4f, 0x00, 0x1d, 0xff, 0xc8, 0xff, 0x35, 0x00, 0xef, 0xff, 0x4a, 0x00, 0x76, 0x00, 0x89, 0xff, 0xa4, 0xff, 0x07, 0x00, 0xde, 0xff, 0x4c, 0x00, 0xfc, 0xff, 0xb2, 0x00, 0x85, 0x00, 0x7b, 0xfe, 0x99, 0xff, 0x98, 0x00, 0x22, 0x00, 0xe0, 0xff, 0x0d, 0x00, 0x95, 0x00, 0x7f, 0x00, 0xe1, 0xfe, 0xa1, 0xff, 0x6b, 0x00, 0x19, 0x00, 0xcb, 0xff, 0x56, 0x00, 0x56, 0x00, 0x8a, 0xff, 0x92, 0xff, 0x1f, 0x00, 0x35, 0x00, 0xb5, 0x00, 0x4d, 0x00, 0xcf, 0xfe, 0xc5, 0xff, 0x3d, 0x00, 0x1a, 0x00, 0x4f, 0x00, 0xa3, 0x00, 0x6e, 0xff, 0x62, 0xff, 0x2c, 0x00, 0x20, 0x00, 0x28, 0x00, 0x43, 0x00, 0xa8, 0xff, 0x9c, 0xff, 0x16, 0x00, 0xb0, 0x00, 0x8f, 0x00, 0xf7, 0xfe, 0xa8, 0xff, 0x56, 0x00, 0xc9, 0xff, 0x19, 0x00, 0x28, 0x00, 0xa0, 0x00, 0x73, 0x00, 0xb2, 0xfe, 0xa2, 0xff, 0x3b, 0x00, 0x58, 0x00, 0x04, 0x00, 0x7a, 0x00, 0x9d, 0x00, 0xb4, 0xfe, 0x69, 0xff, 0x77, 0x00, 0x50, 0x00, 0x10, 0x00, 0xf7, 0x00, 0x72, 0xff, 0xdc, 0xfe, 0x56, 0x00, 0x44, 0x00, 0x07, 0x00, 0x02, 0x00, 0x31, 0x00, 0x07, 0x00, 0xd8, 0xff, 0xd2, 0xff, 0xf3, 0xff, 0xd8, 0xff, 0x8f, 0x00, 0x5b, 0x00, 0x51, 0xff, 0xc3, 0xff, 0xde, 0xff, 0x4a, 0x00, 0x23, 0x00, 0x2e, 0x00, 0xfa, 0x00, 0xe5, 0xfe, 0xe2, 0xfe, 0x9d, 0x00, 0x70, 0x00, 0xfc, 0xff, 0x07, 0x00, 0x13, 0x00, 0xea, 0xff, 0xed, 0xff, 0x01, 0x00, 0x19, 0x00, 0x4a, 0x00, 0x1c, 0x00, 0x65, 0xff, 0xaa, 0xff, 0x41, 0x00, 0x3b, 0x00, 0xf3, 0xff, 0xea, 0xff, 0xf8, 0xff, 0x05, 0x00, 0xe1, 0xff, 0xf0, 0xff, 0x22, 0x00, 0x8b, 0x00, 0x2f, 0x00, 0x33, 0xff, 0xd1, 0xff, 0x31, 0x00, 0x19, 0x00, 0x38, 0x00, 0x02, 0x00, 0xc2, 0xff, 0xf3, 0xff, 0x10, 0x00, 0xec, 0xff, 0xdb, 0xff, 0x11, 0x00, 0xb0, 0x00, 0xe3, 0xff, 0x4a, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x3a, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x7d, 0x00, 0xcd, 0xfe, 0x93, 0xff, 0x55, 0x00, 0x23, 0x00, 0x2e, 0x00, 0xfc, 0xff, 0x95, 0x00, 0x32, 0x00, 0xdc, 0xfe, 0xcb, 0xff, 0x3d, 0x00, 0x16, 0x00, 0x52, 0x00, 0xb3, 0x00, 0x4d, 0xff, 0x78, 0xff, 0x3d, 0x00, 0xf8, 0xff, 0xe9, 0xff, 0x41, 0x00, 0xfc, 0xff, 0x95, 0x00, 0x5b, 0x00, 0xb8, 0xfe, 0xc8, 0xff, 0x77, 0x00, 0x37, 0x00, 0xbd, 0xff, 0xf5, 0xff, 0x44, 0x00, 0xa3, 0x00, 0x9f, 0xff, 0x45, 0xff, 0x2b, 0x00, 0x1a, 0x00, 0x1f, 0x00, 0x3e, 0x00, 0xed, 0xff, 0xbc, 0xff, 0x07, 0x00, 0xf0, 0xff, 0xd7, 0xff, 0x28, 0x00, 0x35, 0x00, 0xa1, 0x00, 0x9e, 0xff, 0x36, 0xff, 0x0b, 0x00, 0x26, 0x00, 0x3b, 0x00, 0x0b, 0x00, 0xca, 0x00, 0xa1, 0xff, 0x09, 0xff, 0x28, 0x00, 0x28, 0x00, 0x14, 0x00, 0x5f, 0x00, 0x19, 0x00, 0x7b, 0xff, 0xf5, 0xff, 0xff, 0xff, 0xf5, 0xff, 0x07, 0x00, 0x9a, 0x00, 0x31, 0x00, 0x2d, 0xff, 0xea, 0xff, 0x35, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xfe, 0xff, 0xf0, 0xff, 0xde, 0xff, 0x0d, 0x00, 0x3d, 0x00, 0x7c, 0x00, 0x89, 0xff, 0x92, 0xff, 0x04, 0x00, 0x02, 0x00, 0x20, 0x00, 0x4d, 0x00, 0xa4, 0x00, 0x48, 0xff, 0x69, 0xff, 0x14, 0x00, 0x31, 0x00, 0x3b, 0x00, 0xaa, 0x00, 0x93, 0xff, 0x32, 0xff, 0x19, 0x00, 0x4c, 0x00, 0x16, 0x00, 0x7d, 0x00, 0x28, 0x00, 0x15, 0xff, 0xda, 0xff, 0x3a, 0x00, 0x23, 0x00, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00, 0xf5, 0xff, 0xb0, 0xff, 0x08, 0x00, 0xea, 0xff, 0xe6, 0xff, 0x2f, 0x00, 0x22, 0x00, 0xda, 0xff, 0xe4, 0xff, 0x01, 0x00, 0x2f, 0x00, 0x01, 0x00, 0xe1, 0xff, 0x07, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x0b, 0x00, 0x05, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xe3, 0xff, 0xec, 0xff, 0x14, 0x00, 0x64, 0x00, 0x34, 0x00, 0x6c, 0xff, 0xdb, 0xff, 0x0a, 0x00, 0xf0, 0xff, 0x11, 0x00, 0x49, 0x00, 0x91, 0x00, 0x72, 0xff, 0x50, 0xff, 0x2f, 0x00, 0x46, 0x00, 0x7c, 0x00, 0x11, 0x00, 0x50, 0xff, 0xde, 0xff, 0x26, 0x00, 0x19, 0x00, 0x04, 0x00, 0x32, 0x00, 0x8e, 0x00, 0x69, 0xff, 0x71, 0xff, 0x37, 0x00, 0x17, 0x00, 0x1f, 0x00, 0x3e, 0x00, 0xe3, 0xff, 0xc2, 0xff, 0x04, 0x00, 0x02, 0x00, 0x0d, 0x00, 0x13, 0x00, 0xfc, 0xff, 0xef, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0x32, 0x00, 0xfe, 0xff, 0xd5, 0xff, 0x0d, 0x00, 0x0d, 0x00, 0xf6, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xe6, 0xff, 0xf8, 0xff, 0x2e, 0x00, 0x56, 0x00, 0xd1, 0xff, 0xa8, 0xff, 0x05, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x1f, 0x00, 0xf8, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xea, 0xff, 0xf3, 0xff, 0x61, 0x00, 0x3e, 0x00, 0x83, 0xff, 0xde, 0xff, 0x0e, 0x00, 0xec, 0xff, 0x07, 0x00, 0x43, 0x00, 0x85, 0x00, 0x87, 0xff, 0x89, 0xff, 0x1c, 0x00, 0xfc, 0xff, 0x65, 0x00, 0x25, 0x00, 0x9c, 0xff, 0xef, 0xff, 0x10, 0x00, 0xe9, 0xff, 0x00, 0x00, 0x22, 0x00, 0x5c, 0x00, 0x13, 0x00, 0x74, 0xff, 0xe6, 0xff, 0x1d, 0x00, 0x22, 0x00, 0x29, 0x00, 0xdd, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xf2, 0xff, 0x1a, 0x00, 0x89, 0x00, 0xdb, 0xff, 0x7a, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x3b, 0x00, 0x52, 0x00, 0xd7, 0xff, 0x9c, 0xff, 0x01, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0xf0, 0xff, 0xf2, 0xff, 0x28, 0x00, 0x07, 0x00, 0x14, 0x00, 0xf9, 0xff, 0x9e, 0xff, 0xe1, 0xff, 0x11, 0x00, 0x6b, 0x00, 0x5b, 0x00, 0x7a, 0xff, 0xb6, 0xff, 0x00, 0x00, 0x1d, 0x00, 0x37, 0x00, 0x86, 0x00, 0x96, 0xff, 0x83, 0xff, 0x10, 0x00, 0x0e, 0x00, 0x19, 0x00, 0x64, 0x00, 0x23, 0x00, 0x6f, 0xff, 0xe6, 0xff, 0x19, 0x00, 0x0e, 0x00, 0x31, 0x00, 0x11, 0x00, 0xc6, 0xff, 0xf3, 0xff, 0x04, 0x00, 0x02, 0x00, 0xe9, 0xff, 0x2c, 0x00, 0x52, 0x00, 0xa7, 0xff, 0xe4, 0xff, 0x08, 0x00, 0xe1, 0xff, 0x05, 0x00, 0x1c, 0x00, 0x14, 0x00, 0x20, 0x00, 0x38, 0x00, 0xad, 0xff, 0xab, 0xff, 0x19, 0x00, 0x46, 0x00, 0x35, 0x00, 0x9b, 0xff, 0xd8, 0xff, 0xfc, 0xff, 0x0a, 0x00, 0x16, 0x00, 0x59, 0x00, 0x2e, 0x00, 0x6e, 0xff, 0xd4, 0xff, 0x0b, 0x00, 0x11, 0x00, 0x2b, 0x00, 0x80, 0x00, 0xb3, 0xff, 0x7b, 0xff, 0x25, 0x00, 0x32, 0x00, 0x0d, 0x00, 0xe6, 0xff, 0xf5, 0xff, 0x13, 0x00, 0x04, 0x00, 0xf2, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x05, 0x00, 0x14, 0x00, 0x00, 0x00, 0xea, 0xff, 0x01, 0x00, 0xff, 0xff, 0x05, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xda, 0xff, 0xff, 0xff, 0x31, 0x00, 0x7c, 0x00, 0xae, 0xff, 0x9c, 0xff, 0x04, 0x00, 0xf3, 0xff, 0x1c, 0x00, 0x1f, 0x00, 0x0a, 0x00, 0x70, 0x00, 0xd4, 0xff, 0x45, 0xff, 0x1a, 0x00, 0x49, 0x00, 0x10, 0x00, 0x62, 0x00, 0xe4, 0xff, 0x71, 0xff, 0xff, 0xff, 0x3d, 0x00, 0x2b, 0x00, 0xd8, 0xff, 0xea, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0x19, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0xff, 0xff, 0x3d, 0x00, 0x13, 0x00, 0x77, 0xff, 0xec, 0xff, 0x26, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0xe4, 0xff, 0x05, 0x00, 0x31, 0x00, 0xea, 0xff, 0xde, 0xff, 0x0b, 0x00, 0xe0, 0xff, 0xfc, 0xff, 0x1d, 0x00, 0x68, 0x00, 0x0b, 0x00, 0x6e, 0xff, 0xf0, 0xff, 0x0d, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x17, 0x00, 0x6d, 0x00, 0xa5, 0xff, 0x9f, 0xff, 0x0e, 0x00, 0xea, 0xff, 0x1d, 0x00, 0x25, 0x00, 0x05, 0x00, 0x7f, 0x00, 0xc2, 0xff, 0x3c, 0xff, 0x2c, 0x00, 0x4c, 0x00, 0xfc, 0xff, 0x4f, 0x00, 0x34, 0x00, 0x4b, 0xff, 0xce, 0xff, 0x40, 0x00, 0x1f, 0x00, 0x47, 0x00, 0x05, 0x00, 0x8d, 0xff, 0xde, 0xff, 0x14, 0x00, 0x29, 0x00, 0xfc, 0xff, 0x3e, 0x00, 0x64, 0x00, 0x56, 0xff, 0xba, 0xff, 0x1f, 0x00, 0x22, 0x00, 0x34, 0x00, 0xe9, 0xff, 0xe6, 0xff, 0x04, 0x00, 0x02, 0x00, 0xf2, 0xff, 0xf9, 0xff, 0x0a, 0x00, 0x35, 0x00, 0x10, 0x00, 0xc5, 0xff, 0xea, 0xff, 0x0b, 0x00, 0x05, 0x00, 0x0e, 0x00, 0x07, 0x00, 0xf2, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x08, 0x00, 0xfb, 0xff, 0x04, 0x00, 0xf6, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0x19, 0x00, 0x0e, 0x00, 0x2c, 0x00, 0x37, 0x00, 0x92, 0xff, 0xba, 0xff, 0x2b, 0x00, 0x4c, 0x00, 0xf2, 0xff, 0xb1, 0xff, 0xfc, 0xff, 0x16, 0x00, 0x43, 0x00, 0x40, 0x00, 0x98, 0xff, 0xb7, 0xff, 0x1a, 0x00, 0x26, 0x00, 0x2c, 0x00, 0x14, 0x00, 0xbc, 0xff, 0xfc, 0xff, 0x2c, 0x00, 0xd8, 0xff, 0xf2, 0xff, 0x0a, 0x00, 0xff, 0xff, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf2, 0xff, 0xfb, 0xff, 0x35, 0x00, 0xf3, 0xff, 0xe1, 0xff, 0x0e, 0x00, 0xd8, 0xff, 0xf3, 0xff, 0x1a, 0x00, 0x16, 0x00, 0xfc, 0xff, 0x4c, 0x00, 0xf3, 0xff, 0x77, 0xff, 0x02, 0x00, 0x3e, 0x00, 0xf9, 0xff, 0x70, 0x00, 0x08, 0x00, 0x3c, 0xff, 0xf8, 0xff, 0x47, 0x00, 0x2c, 0x00, 0xf8, 0xff, 0xe0, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x01, 0x00, 0x4f, 0x00, 0x16, 0x00, 0x96, 0xff, 0xf8, 0xff, 0x26, 0x00, 0x02, 0x00, 0xf0, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0x32, 0x00, 0x04, 0x00, 0xd2, 0xff, 0x01, 0x00, 0x02, 0x00, 0x07, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0x07, 0x00, 0x1c, 0x00, 0xff, 0xff, 0xe6, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0xf8, 0xff, 0xfe, 0xff, 0xea, 0xff, 0x20, 0x00, 0x20, 0x00, 0xdd, 0xff, 0xdb, 0xff, 0xf6, 0xff, 0x0d, 0x00, 0x37, 0x00, 0x4a, 0x00, 0x9f, 0xff, 0xc8, 0xff, 0x05, 0x00, 0x07, 0x00, 0x16, 0x00, 0x4a, 0x00, 0xf5, 0xff, 0xae, 0xff, 0x07, 0x00, 0xef, 0xff, 0xff, 0xff, 0x11, 0x00, 0x17, 0x00, 0xf2, 0xff, 0x59, 0x00, 0x25, 0x00, 0x62, 0xff, 0xd8, 0xff, 0x17, 0x00, 0x2f, 0x00, 0x02, 0x00, 0x6a, 0x00, 0xea, 0xff, 0x71, 0xff, 0xf6, 0xff, 0x2f, 0x00, 0x17, 0x00, 0x2b, 0x00, 0x4f, 0x00, 0x92, 0xff, 0xb4, 0xff, 0x1f, 0x00, 0x13, 0x00, 0x2e, 0x00, 0x32, 0x00, 0xc0, 0xff, 0xce, 0xff, 0x10, 0x00, 0x02, 0x00, 0x11, 0x00, 0x2b, 0x00, 0xe9, 0xff, 0xe3, 0xff, 0x02, 0x00, 0x08, 0x00, 0x05, 0x00, 0xf8, 0xff, 0x01, 0x00, 0xec, 0xff, 0xf0, 0xff, 0x11, 0x00, 0x1c, 0x00, 0x4f, 0x00, 0xd8, 0xff, 0xa5, 0xff, 0x16, 0x00, 0x11, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x14, 0x00, 0x08, 0x00, 0xf0, 0xff, 0xe7, 0xff, 0xf6, 0xff, 0x1f, 0x00, 0x3b, 0x00, 0xda, 0xff, 0xd7, 0xff, 0x07, 0x00, 0xf0, 0xff, 0xfc, 0xff, 0x1f, 0x00, 0x58, 0x00, 0xd8, 0xff, 0xad, 0xff, 0xff, 0xff, 0x35, 0x00, 0x11, 0x00, 0xd7, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x1d, 0x00, 0x23, 0x00, 0xe0, 0xff, 0xda, 0xff, 0xfb, 0xff, 0x1a, 0x00, 0x38, 0x00, 0xe0, 0xff, 0xda, 0xff, 0x04, 0x00, 0xf9, 0xff, 0x02, 0x00, 0x2b, 0x00, 0x08, 0x00, 0xd8, 0xff, 0xf6, 0xff, 0x08, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x0b, 0x00, 0x1a, 0x00, 0xf6, 0xff, 0xea, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0x35, 0x00, 0x29, 0x00, 0xbd, 0xff, 0xe7, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x1d, 0x00, 0x53, 0x00, 0xe0, 0xff, 0xb3, 0xff, 0x04, 0x00, 0xfb, 0xff, 0x0b, 0x00, 0x11, 0x00, 0x14, 0x00, 0x43, 0x00, 0xcc, 0xff, 0xb1, 0xff, 0x10, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x19, 0x00, 0xfb, 0xff, 0xe7, 0xff, 0x05, 0x00, 0x05, 0x00, 0xe6, 0xff, 0xf6, 0xff, 0x1c, 0x00, 0x05, 0x00, 0x47, 0x00, 0x04, 0x00, 0x95, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x0a, 0x00, 0x14, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x92, 0xff, 0xcc, 0xff, 0x25, 0x00, 0x2b, 0x00, 0x46, 0x00, 0xc0, 0xff, 0xb9, 0xff, 0x05, 0x00, 0x17, 0x00, 0x0b, 0x00, 0x40, 0x00, 0x02, 0x00, 0xa2, 0xff, 0xf3, 0xff, 0x0e, 0x00, 0x14, 0x00, 0x11, 0x00, 0xf0, 0xff, 0x01, 0x00, 0x1d, 0x00, 0xde, 0xff, 0xe7, 0xff, 0x1d, 0x00, 0x01, 0x00, 0xf2, 0xff, 0xff, 0xff, 0x00, 0x00, 0xe6, 0xff, 0x0d, 0x00, 0x0a, 0x00, 0x41, 0x00, 0x13, 0x00, 0x9f, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0x08, 0x00, 0x13, 0x00, 0x41, 0x00, 0x04, 0x00, 0xab, 0xff, 0xef, 0xff, 0x07, 0x00, 0x0a, 0x00, 0x28, 0x00, 0x07, 0x00, 0xcb, 0xff, 0xf9, 0xff, 0xf0, 0xff, 0xfe, 0xff, 0x10, 0x00, 0x28, 0x00, 0x2f, 0x00, 0xaa, 0xff, 0xc3, 0xff, 0x19, 0x00, 0x23, 0x00, 0x41, 0x00, 0xce, 0xff, 0xce, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x13, 0x00, 0x1a, 0x00, 0x4d, 0x00, 0xc8, 0xff, 0xb0, 0xff, 0xfb, 0xff, 0x17, 0x00, 0x13, 0x00, 0x02, 0x00, 0x04, 0x00, 0x1c, 0x00, 0x26, 0x00, 0xba, 0xff, 0xc2, 0xff, 0x2e, 0x00, 0x28, 0x00, 0xdd, 0xff, 0xe6, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x11, 0x00, 0x04, 0x00, 0x3a, 0x00, 0x0e, 0x00, 0xa2, 0xff, 0xf3, 0xff, 0x0b, 0x00, 0x02, 0x00, 0x20, 0x00, 0x10, 0x00, 0xde, 0xff, 0xf2, 0xff, 0x02, 0x00, 0x01, 0x00, 0x0b, 0x00, 0x05, 0x00, 0xf6, 0xff, 0xf8, 0xff, 0xe3, 0xff, 0x08, 0x00, 0x11, 0x00, 0x44, 0x00, 0xf0, 0xff, 0xb1, 0xff, 0xf2, 0xff, 0x00, 0x00, 0x1a, 0x00, 0x0b, 0x00, 0x49, 0x00, 0xe4, 0xff, 0xa7, 0xff, 0xf8, 0xff, 0x05, 0x00, 0x19, 0x00, 0x07, 0x00, 0x3e, 0x00, 0xf9, 0xff, 0x8d, 0xff, 0x13, 0x00, 0x1c, 0x00, 0x35, 0x00, 0x1f, 0x00, 0xa2, 0xff, 0xe1, 0xff, 0x0a, 0x00, 0x0a, 0x00, 0x1a, 0x00, 0x3a, 0x00, 0xdb, 0xff, 0xc6, 0xff, 0x05, 0x00, 0x02, 0x00, 0x13, 0x00, 0x16, 0x00, 0xea, 0xff, 0x0b, 0x00, 0x04, 0x00, 0xe9, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0x35, 0x00, 0x0d, 0x00, 0xcc, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0x08, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xc6, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0a, 0x00, 0x1f, 0x00, 0x35, 0x00, 0xd4, 0xff, 0xcb, 0xff, 0x04, 0x00, 0x05, 0x00, 0x14, 0x00, 0x1f, 0x00, 0xec, 0xff, 0xe6, 0xff, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0xf9, 0xff, 0xed, 0xff, 0x08, 0x00, 0x16, 0x00, 0x1f, 0x00, 0xfc, 0xff, 0xd5, 0xff, 0xf6, 0xff, 0x02, 0x00, 0xff, 0xff, 0xf5, 0xff, 0x00, 0x00, 0x0e, 0x00, 0x25, 0x00, 0x04, 0x00, 0xce, 0xff, 0xff, 0xff, 0x04, 0x00, 0xf9, 0xff, 0x05, 0x00, 0x08, 0x00, 0xfc, 0xff, 0x0e, 0x00, 0xfb, 0xff, 0xe7, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x08, 0x00, 0x05, 0x00, 0xf8, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0x0a, 0x00, 0x2b, 0x00, 0xfe, 0xff, 0xd5, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0x0d, 0x00, 0x14, 0x00, 0x3e, 0x00, 0xea, 0xff, 0xb7, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x26, 0x00, 0x2e, 0x00, 0xcf, 0xff, 0xe1, 0xff, 0x07, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x2e, 0x00, 0x11, 0x00, 0xba, 0xff, 0xef, 0xff, 0x07, 0x00, 0x02, 0x00, 0x17, 0x00, 0x0a, 0x00, 0xe6, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0x1c, 0x00, 0x13, 0x00, 0xd8, 0xff, 0xf2, 0xff, 0x0a, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xf5, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xef, 0xff, 0xff, 0xff, 0x0e, 0x00, 0x3a, 0x00, 0xe7, 0xff, 0xce, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x0a, 0x00, 0x1d, 0x00, 0x2b, 0x00, 0xcf, 0xff, 0xd8, 0xff, 0x04, 0x00, 0x02, 0x00, 0x16, 0x00, 0x19, 0x00, 0xea, 0xff, 0xe9, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0x20, 0x00, 0x13, 0x00, 0xd5, 0xff, 0xf3, 0xff, 0x08, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x17, 0x00, 0x34, 0x00, 0xc3, 0xff, 0xdb, 0xff, 0x02, 0x00, 0xfb, 0xff, 0x0b, 0x00, 0x2b, 0x00, 0x0a, 0x00, 0xcb, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x04, 0x00, 0x17, 0x00, 0x05, 0x00, 0xe7, 0xff, 0xfb, 0xff, 0xf0, 0xff, 0xff, 0xff, 0x08, 0x00, 0x2e, 0x00, 0x19, 0x00, 0xbd, 0xff, 0xea, 0xff, 0x00, 0x00, 0x07, 0x00, 0x0e, 0x00, 0x05, 0x00, 0x37, 0x00, 0xf2, 0xff, 0xba, 0xff, 0x01, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x1a, 0x00, 0xf6, 0xff, 0xea, 0xff, 0x02, 0x00, 0x04, 0x00, 0xf2, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x19, 0x00, 0x29, 0x00, 0xd2, 0xff, 0xde, 0xff, 0x0a, 0x00, 0xf3, 0xff, 0x04, 0x00, 0x0d, 0x00, 0x29, 0x00, 0x0a, 0x00, 0xc8, 0xff, 0xf2, 0xff, 0x08, 0x00, 0x08, 0x00, 0x17, 0x00, 0x04, 0x00, 0xe6, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xfe, 0xff, 0x19, 0x00, 0x22, 0x00, 0xe1, 0xff, 0xe6, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x13, 0x00, 0xf6, 0xff, 0xea, 0xff, 0xfb, 0xff, 0x19, 0x00, 0x0d, 0x00, 0xec, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x05, 0x00, 0x0e, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0x04, 0x00, 0x2b, 0x00, 0xf6, 0xff, 0xe3, 0xff, 0x07, 0x00, 0xed, 0xff, 0xf9, 0xff, 0x0e, 0x00, 0x13, 0x00, 0x31, 0x00, 0xde, 0xff, 0xc2, 0xff, 0x05, 0x00, 0x25, 0x00, 0x26, 0x00, 0xdd, 0xff, 0xe3, 0xff, 0x02, 0x00, 0x01, 0x00, 0x10, 0x00, 0x19, 0x00, 0xf0, 0xff, 0xe7, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x07, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x2c, 0x00, 0xf6, 0xff, 0xdd, 0xff, 0xfe, 0xff, 0xec, 0xff, 0x0e, 0x00, 0x08, 0x00, 0x1f, 0x00, 0x22, 0x00, 0xc5, 0xff, 0xd2, 0xff, 0x11, 0x00, 0x0e, 0x00, 0x17, 0x00, 0x2e, 0x00, 0xcb, 0xff, 0xd7, 0xff, 0x01, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x2f, 0x00, 0xf9, 0xff, 0xd4, 0xff, 0xed, 0xff, 0xfb, 0xff, 0x14, 0x00, 0x01, 0x00, 0x13, 0x00, 0x32, 0x00, 0xc0, 0xff, 0xcb, 0xff, 0x20, 0x00, 0x10, 0x00, 0xff, 0xff, 0x26, 0x00, 0x0b, 0x00, 0xb6, 0xff, 0xf3, 0xff, 0x1d, 0x00, 0x05, 0x00, 0x22, 0x00, 0x0e, 0x00, 0xc3, 0xff, 0xe1, 0xff, 0x1c, 0x00, 0x01, 0x00, 0x26, 0x00, 0x13, 0x00, 0xc3, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x14, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0xb1, 0xff, 0xed, 0xff, 0x23, 0x00, 0x01, 0x00, 0x2f, 0x00, 0x01, 0x00, 0xb3, 0xff, 0xf8, 0xff, 0x14, 0x00, 0x13, 0x00, 0x2e, 0x00, 0xe0, 0xff, 0xd8, 0xff, 0xfb, 0xff, 0x07, 0x00, 0x0a, 0x00, 0x11, 0x00, 0x2c, 0x00, 0xd1, 0xff, 0xd7, 0xff, 0x02, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x25, 0x00, 0xf3, 0xff, 0xcb, 0xff, 0x01, 0x00, 0x1c, 0x00, 0x17, 0x00, 0xe9, 0xff, 0xec, 0xff, 0x04, 0x00, 0xff, 0xff, 0x05, 0x00, 0x0d, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xf5, 0xff, 0x08, 0x00, 0x01, 0x00, 0x23, 0x00, 0x13, 0x00, 0xcf, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x11, 0x00, 0x02, 0x00, 0x19, 0x00, 0x1d, 0x00, 0xc0, 0xff, 0xe0, 0xff, 0x14, 0x00, 0x07, 0x00, 0x10, 0x00, 0x25, 0x00, 0xdd, 0xff, 0xd7, 0xff, 0x05, 0x00, 0x08, 0x00, 0x1f, 0x00, 0xf8, 0xff, 0xea, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x04, 0x00, 0x29, 0x00, 0xfe, 0xff, 0xcb, 0xff, 0x02, 0x00, 0x1c, 0x00, 0x22, 0x00, 0xe6, 0xff, 0xe3, 0xff, 0x02, 0x00, 0xf6, 0xff, 0x05, 0x00, 0x04, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0xcf, 0xff, 0xed, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x10, 0x00, 0x1f, 0x00, 0xf6, 0xff, 0xe6, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x17, 0x00, 0xf9, 0xff, 0xe3, 0xff, 0xfc, 0xff, 0x05, 0x00, 0xf9, 0xff, 0xf5, 0xff, 0x02, 0x00, 0x13, 0x00, 0x1a, 0x00, 0xec, 0xff, 0xed, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x08, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0x0b, 0x00, 0x25, 0x00, 0xf0, 0xff, 0xe7, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x22, 0x00, 0x14, 0x00, 0xda, 0xff, 0xe7, 0xff, 0x00, 0x00, 0x05, 0x00, 0x20, 0x00, 0x17, 0x00, 0xd4, 0xff, 0xea, 0xff, 0x04, 0x00, 0x08, 0x00, 0x07, 0x00, 0x04, 0x00, 0x25, 0x00, 0xfb, 0xff, 0xcb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x10, 0x00, 0x0a, 0x00, 0xf5, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x0a, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x11, 0x00, 0xe7, 0xff, 0xea, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x10, 0x00, 0x1f, 0x00, 0xec, 0xff, 0xe9, 0xff, 0x08, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xf2, 0xff, 0x00, 0x00, 0x04, 0x00, 0x14, 0x00, 0x20, 0x00, 0xda, 0xff, 0xe6, 0xff, 0xff, 0xff, 0x00, 0x00, 0x08, 0x00, 0x20, 0x00, 0xfb, 0xff, 0xe0, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0b, 0x00, 0x01, 0x00, 0xf6, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x0d, 0x00, 0x23, 0x00, 0xe9, 0xff, 0xe4, 0xff, 0x0b, 0x00, 0xf6, 0xff, 0xf3, 0xff, 0x05, 0x00, 0x11, 0x00, 0x1d, 0x00, 0xe9, 0xff, 0xda, 0xff, 0x01, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x1d, 0x00, 0xf5, 0xff, 0xdd, 0xff, 0xff, 0xff, 0x0d, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x07, 0x00, 0x0e, 0x00, 0xf8, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x0d, 0x00, 0x05, 0x00, 0xe4, 0xff, 0xec, 0xff, 0xff, 0xff, 0x0a, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0xf3, 0xff, 0xea, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0x17, 0x00, 0x01, 0x00, 0xf0, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x08, 0x00, 0x0b, 0x00, 0xf6, 0xff, 0xf8, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0x0b, 0x00, 0x1a, 0x00, 0xf5, 0xff, 0xea, 0xff, 0xfe, 0xff, 0xf5, 0xff, 0x04, 0x00, 0x13, 0x00, 0x04, 0x00, 0xec, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xf5, 0xff, 0x00, 0x00, 0x05, 0x00, 0x20, 0x00, 0xff, 0xff, 0xdb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x16, 0x00, 0x11, 0x00, 0xe7, 0xff, 0xf3, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x07, 0x00, 0x01, 0x00, 0xf6, 0xff, 0x04, 0x00, 0x05, 0x00, 0xf5, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x0a, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xf2, 0xff, 0x01, 0x00, 0x1c, 0x00, 0x08, 0x00, 0xde, 0xff, 0xed, 0xff, 0x05, 0x00, 0x02, 0x00, 0x1a, 0x00, 0x10, 0x00, 0xd5, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x04, 0x00, 0x11, 0x00, 0x1c, 0x00, 0xdd, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x08, 0x00, 0x0a, 0x00, 0x1f, 0x00, 0xe7, 0xff, 0xdd, 0xff, 0xff, 0xff, 0x07, 0x00, 0x07, 0x00, 0x25, 0x00, 0xf6, 0xff, 0xdb, 0xff, 0x01, 0x00, 0xf5, 0xff, 0x05, 0x00, 0x04, 0x00, 0x14, 0x00, 0x14, 0x00, 0xda, 0xff, 0xe3, 0xff, 0x0d, 0x00, 0x05, 0x00, 0x13, 0x00, 0x1c, 0x00, 0xdb, 0xff, 0xe9, 0xff, 0x04, 0x00, 0xfe, 0xff, 0x1d, 0x00, 0x0e, 0x00, 0xe4, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x00, 0x00, 0x11, 0x00, 0x1c, 0x00, 0xec, 0xff, 0xe9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x08, 0x00, 0x10, 0x00, 0x1c, 0x00, 0xdb, 0xff, 0xe3, 0xff, 0x0d, 0x00, 0x0d, 0x00, 0x1c, 0x00, 0xed, 0xff, 0xea, 0xff, 0xff, 0xff, 0xf8, 0xff, 0x05, 0x00, 0x07, 0x00, 0x1a, 0x00, 0x05, 0x00, 0xd8, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x1a, 0x00, 0x0a, 0x00, 0xe1, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x16, 0x00, 0x17, 0x00, 0xe3, 0xff, 0xed, 0xff, 0xf9, 0xff, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00, 0x26, 0x00, 0xef, 0xff, 0xd2, 0xff, 0xff, 0xff, 0x0d, 0x00, 0x07, 0x00, 0x22, 0x00, 0xf6, 0xff, 0xda, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x20, 0x00, 0xe4, 0xff, 0xe3, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x1c, 0x00, 0xe6, 0xff, 0xda, 0xff, 0x04, 0x00, 0x05, 0x00, 0x1d, 0x00, 0xfe, 0xff, 0xe4, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x13, 0x00, 0x17, 0x00, 0xe3, 0xff, 0xea, 0xff, 0xfb, 0xff, 0x07, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0x0b, 0x00, 0x11, 0x00, 0xe3, 0xff, 0xe7, 0xff, 0x05, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x08, 0x00, 0x08, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x0e, 0x00, 0x07, 0x00, 0xed, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xf9, 0xff, 0xf3, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x17, 0x00, 0xed, 0xff, 0xe9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x08, 0x00, 0x1a, 0x00, 0xec, 0xff, 0xdd, 0xff, 0x07, 0x00, 0x05, 0x00, 0x19, 0x00, 0x02, 0x00, 0xe1, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x08, 0x00, 0x17, 0x00, 0xec, 0xff, 0xec, 0xff, 0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x19, 0x00, 0xfc, 0xff, 0xec, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x0b, 0x00, 0x05, 0x00, 0xf2, 0xff, 0xf5, 0xff, 0x04, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x01, 0x00, 0x10, 0x00, 0x0e, 0x00, 0xe3, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x07, 0x00, 0x08, 0x00, 0x1a, 0x00, 0xf2, 0xff, 0xe0, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x07, 0x00, 0x14, 0x00, 0xfb, 0xff, 0xe7, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x04, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xf3, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0x02, 0x00, 0x10, 0x00, 0xf9, 0xff, 0xf6, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x08, 0x00, 0x07, 0x00, 0xf5, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x16, 0x00, 0x08, 0x00, 0xe9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x02, 0x00, 0x11, 0x00, 0x10, 0x00, 0xe0, 0xff, 0xf2, 0xff, 0x05, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x14, 0x00, 0x02, 0x00, 0xea, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x16, 0x00, 0x0a, 0x00, 0xe9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x07, 0x00, 0x11, 0x00, 0xfc, 0xff, 0xf0, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x05, 0x00, 0x0a, 0x00, 0xf8, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x07, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0xf9, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0x04, 0x00, 0x0a, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x07, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x0e, 0x00, 0xfb, 0xff, 0xed, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x16, 0x00, 0xf8, 0xff, 0xef, 0xff, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x13, 0x00, 0xfb, 0xff, 0xe7, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x11, 0x00, 0x01, 0x00, 0xef, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x08, 0x00, 0x08, 0x00, 0xf6, 0xff, 0xf9, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0xfb, 0xff, 0x02, 0x00, 0xff, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x07, 0x00, 0x14, 0x00, 0xf5, 0xff, 0xe3, 0xff, 0xff, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x13, 0x00, 0xf2, 0xff, 0xf0, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0xea, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0x0a, 0x00, 0xff, 0xff, 0x0e, 0x00, 0x10, 0x00, 0xdd, 0xff, 0xef, 0xff, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x01, 0x00, 0xdd, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x07, 0x00, 0x01, 0x00, 0x17, 0x00, 0x00, 0x00, 0xdd, 0xff, 0xf9, 0xff, 0x0a, 0x00, 0x04, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0xde, 0xff, 0xf5, 0xff, 0x07, 0x00, 0x16, 0x00, 0x02, 0x00, 0xe9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0x04, 0x00, 0x04, 0x00, 0x13, 0x00, 0x05, 0x00, 0xe4, 0xff, 0xf3, 0xff, 0x04, 0x00, 0x01, 0x00, 0x13, 0x00, 0x07, 0x00, 0xe4, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0xf2, 0xff, 0xf5, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x02, 0x00, 0x01, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0xec, 0xff, 0xf8, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x04, 0x00, 0x11, 0x00, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0x02, 0x00, 0x07, 0x00, 0x17, 0x00, 0xf9, 0xff, 0xea, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x16, 0x00, 0xfb, 0xff, 0xed, 0xff, 0x00, 0x00, 0xf9, 0xff, 0x02, 0x00, 0x02, 0x00, 0x16, 0x00, 0x01, 0x00, 0xe9, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x16, 0x00, 0xf5, 0xff, 0xe6, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x11, 0x00, 0xfe, 0xff, 0xe9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x13, 0x00, 0x08, 0x00, 0xea, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x08, 0x00, 0x05, 0x00, 0xf6, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x07, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0x01, 0x00, 0xf6, 0xff, 0x00, 0x00, 0x10, 0x00, 0xf6, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0x07, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0xe7, 0xff, 0xf5, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x0e, 0x00, 0x07, 0x00, 0xf0, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0e, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x10, 0x00, 0xfe, 0xff, 0xf0, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x0d, 0x00, 0x04, 0x00, 0xf2, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0xec, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0xf2, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0xed, 0xff, 0xf2, 0xff, 0x07, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xf5, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x0e, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0x08, 0x00, 0x11, 0x00, 0xf6, 0xff, 0xf3, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x0b, 0x00, 0x08, 0x00, 0xef, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xec, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff, 0x0d, 0x00, 0xff, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x0e, 0x00, 0xff, 0xff, 0xf2, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x08, 0x00, 0x0a, 0x00, 0xf5, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x08, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xf9, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x07, 0x00, 0x13, 0x00, 0xef, 0xff, 0xf3, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x04, 0x00, 0x0d, 0x00, 0x01, 0x00, 0xf2, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x0a, 0x00, 0x0b, 0x00, 0xf3, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xf8, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x11, 0x00, 0x02, 0x00, 0xf0, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x11, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0xf0, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0xef, 0xff, 0xf8, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x0e, 0x00, 0xf8, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x0b, 0x00, 0xff, 0xff, 0xef, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0x0e, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0x01, 0x00, 0xf9, 0xff, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x08, 0x00, 0x0b, 0x00, 0xf3, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0x0a, 0x00, 0xf5, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x0b, 0x00, 0xf6, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0xef, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x13, 0x00, 0xf2, 0xff, 0xed, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x0d, 0x00, 0xfe, 0xff, 0xf0, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x05, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x07, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x08, 0x00, 0x08, 0x00, 0xf3, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0xed, 0xff, 0xf3, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x11, 0x00, 0xf8, 0xff, 0xef, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0x0d, 0x00, 0x08, 0x00, 0xed, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, 0x00, 0xf0, 0xff, 0x00, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0xf5, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xed, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x0a, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x0b, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x01, 0x00, 0x0b, 0x00, 0x07, 0x00, 0xec, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0x08, 0x00, 0xf3, 0xff, 0xf5, 0xff, 0x05, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xf5, 0xff, 0x04, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0x04, 0x00, 0x0d, 0x00, 0xfe, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x0a, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x07, 0x00, 0x0d, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0xf3, 0xff, 0x01, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0e, 0x00, 0xf6, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x10, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x0b, 0x00, 0xf5, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xf6, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x08, 0x00, 0x0a, 0x00, 0xf6, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xf2, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x08, 0x00, 0x05, 0x00, 0xf3, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x02, 0x00, 0x0e, 0x00, 0xfe, 0xff, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x08, 0x00, 0x08, 0x00, 0xf6, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x01, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0b, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x02, 0x00, 0x0d, 0x00, 0xff, 0xff, 0xf0, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x04, 0x00, 0xf5, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xf8, 0xff, 0x01, 0x00, 0xf6, 0xff, 0x02, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x07, 0x00, 0xf2, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x02, 0x00, 0x0b, 0x00, 0xfe, 0xff, 0xf0, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x0e, 0x00, 0xff, 0xff, 0xec, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x07, 0x00, 0xf5, 0xff, 0xf9, 0xff, 0x02, 0x00, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0xf5, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x08, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x08, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xf9, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x0e, 0x00, 0xf9, 0xff, 0xf2, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x08, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0x04, 0x00, 0x07, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x0a, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x07, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0xf5, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x08, 0x00, 0xff, 0xff, 0xf6, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0xf8, 0xff, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xf8, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x0d, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x0b, 0x00, 0xfb, 0xff, 0xf2, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0a, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf9, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x0e, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0xf8, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xfe, 0xff, 0x07, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x08, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x04, 0x00, 0xf6, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0e, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x0a, 0x00, 0xf8, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x08, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf9, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0xf6, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x05, 0x00, 0xf5, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x00, 0x00, 0x0d, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xf5, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x07, 0x00, 0x05, 0x00, 0xf6, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x08, 0x00, 0xf5, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0xf6, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x04, 0x00, 0x08, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xf9, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x08, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x07, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x05, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x07, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xf8, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0xf3, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x08, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0xf6, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0xf9, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x07, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x07, 0x00, 0x00, 0x00, 0xf9, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x05, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x07, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x05, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x07, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x04, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 }; #define tr808_hh_wav_len 22128 unsigned char tr808_mc_wav[] = { 0x52, 0x49, 0x46, 0x46, 0x68, 0x56, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45, 0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e, 0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61, 0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61, 0x74, 0x61, 0x22, 0x56, 0x00, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x16, 0x00, 0x0e, 0x00, 0xf9, 0xff, 0x02, 0x00, 0x02, 0x00, 0x08, 0x00, 0x1f, 0x00, 0x05, 0x00, 0x14, 0x00, 0xf5, 0xff, 0x7c, 0x00, 0x41, 0x00, 0x0f, 0xff, 0xce, 0xff, 0x0a, 0x01, 0x0a, 0x01, 0x9c, 0xfe, 0xf3, 0xfe, 0x94, 0x00, 0xef, 0x00, 0x41, 0x00, 0x95, 0xff, 0x02, 0x00, 0xec, 0x00, 0x9e, 0xff, 0xf3, 0xfe, 0xb3, 0x00, 0x95, 0x00, 0xea, 0xff, 0x97, 0x01, 0x50, 0xff, 0xba, 0xff, 0x6b, 0xff, 0xdc, 0x00, 0xff, 0xfd, 0xef, 0xff, 0xbe, 0x00, 0xbb, 0xfd, 0x5d, 0x02, 0xba, 0x01, 0xb3, 0xff, 0x7b, 0xff, 0x05, 0x00, 0xad, 0x03, 0xf3, 0xff, 0x83, 0xfd, 0x8f, 0xfc, 0xea, 0xff, 0xaa, 0x04, 0x45, 0xff, 0x49, 0xfa, 0xf4, 0xfe, 0xcb, 0x05, 0x57, 0x02, 0x0d, 0xfe, 0x0f, 0x02, 0x39, 0x03, 0x43, 0xf6, 0xb5, 0xfe, 0x33, 0x06, 0x8f, 0x03, 0x55, 0xfd, 0x31, 0xfd, 0x4b, 0x01, 0x8a, 0xff, 0xd4, 0x00, 0x61, 0x00, 0xf9, 0xff, 0x9d, 0x00, 0xd4, 0x00, 0x91, 0xfd, 0x02, 0x00, 0xb2, 0x01, 0x25, 0x00, 0xb4, 0xff, 0x90, 0xff, 0xf5, 0x02, 0x6b, 0x03, 0x9d, 0xfa, 0x9e, 0xff, 0x29, 0x03, 0xab, 0xf5, 0x87, 0x01, 0xd7, 0x0c, 0x0f, 0xff, 0x40, 0xfa, 0xd1, 0xf3, 0x99, 0x02, 0x2c, 0x0c, 0x03, 0x02, 0x75, 0xfb, 0x0e, 0xff, 0xc9, 0x01, 0x9f, 0x02, 0xaf, 0x06, 0x28, 0xf4, 0x23, 0xfc, 0x52, 0x01, 0x3c, 0x0c, 0xd2, 0xfe, 0x21, 0xf3, 0x8c, 0x05, 0x7b, 0xfe, 0x70, 0x01, 0x60, 0x04, 0x48, 0xfb, 0x8e, 0x01, 0xa6, 0x08, 0x4e, 0xf5, 0x39, 0xfb, 0xd3, 0x07, 0x33, 0x04, 0x7e, 0xfe, 0xb5, 0xf9, 0x51, 0x03, 0x3f, 0x07, 0x04, 0xfa, 0xb9, 0xfc, 0x28, 0x01, 0xa5, 0x01, 0xbd, 0xfc, 0x83, 0x03, 0xf8, 0x06, 0x6f, 0xf6, 0xa9, 0xfc, 0x5f, 0x06, 0x2f, 0x03, 0x22, 0xfe, 0xd9, 0xfc, 0xb7, 0x01, 0xfb, 0x03, 0xdc, 0xfb, 0x88, 0xfe, 0xe8, 0x0d, 0x88, 0xf4, 0x50, 0xf0, 0x76, 0x10, 0x67, 0x05, 0x20, 0xf6, 0xf8, 0x00, 0xe3, 0x07, 0x51, 0xfd, 0x9e, 0xf9, 0xb7, 0x02, 0x91, 0x03, 0xee, 0x00, 0x3f, 0x0a, 0xa9, 0xfd, 0x68, 0xf7, 0x90, 0xf3, 0x03, 0xf5, 0x86, 0x11, 0x34, 0x0b, 0x33, 0xfc, 0xdd, 0xfa, 0xcb, 0x02, 0x27, 0x01, 0xfe, 0x00, 0xf1, 0xfc, 0xb7, 0x03, 0x26, 0x06, 0x06, 0xf5, 0xf5, 0xff, 0xf9, 0x0b, 0xd9, 0xfa, 0x79, 0xf1, 0x81, 0x0d, 0x6d, 0xfa, 0xec, 0xf6, 0x2a, 0x06, 0xa1, 0x09, 0xd2, 0xff, 0xf1, 0xfb, 0x25, 0x00, 0x9a, 0x01, 0x86, 0x00, 0x26, 0xff, 0xf2, 0xff, 0x2a, 0x01, 0x5b, 0x00, 0x4d, 0xfd, 0x6a, 0x01, 0x9d, 0x0e, 0xf4, 0xf7, 0x69, 0xf9, 0x76, 0x04, 0x0d, 0xfd, 0x1f, 0xef, 0xb7, 0xfc, 0x45, 0x1c, 0x20, 0xf6, 0xb0, 0xfa, 0xfb, 0x16, 0xbf, 0xff, 0x14, 0xea, 0x71, 0xe6, 0x28, 0x11, 0x54, 0x1a, 0x4a, 0xf9, 0x2e, 0x05, 0xcd, 0xf8, 0x63, 0xf5, 0x67, 0x06, 0xcc, 0xff, 0x5f, 0x07, 0xb1, 0xf3, 0x1b, 0x05, 0xab, 0x06, 0xd6, 0xf7, 0xc3, 0xff, 0x6b, 0x05, 0x59, 0x00, 0x4f, 0x00, 0x16, 0x0d, 0x0b, 0x03, 0xdf, 0xe6, 0xb9, 0xfa, 0xa1, 0x14, 0x99, 0xff, 0xe1, 0xf2, 0x59, 0xf9, 0x2b, 0x10, 0xc6, 0xf5, 0x91, 0x00, 0xd0, 0x04, 0x51, 0xeb, 0x77, 0x0e, 0x30, 0x17, 0xc3, 0xf2, 0x61, 0xfe, 0x1e, 0xfa, 0xb1, 0x08, 0xb8, 0x09, 0x28, 0xf1, 0x43, 0x02, 0xf6, 0xf2, 0xfd, 0x11, 0x01, 0x13, 0x4a, 0xdb, 0xfa, 0xf7, 0x84, 0x19, 0xc7, 0xfc, 0x81, 0x02, 0x6d, 0xfe, 0xac, 0xfb, 0x37, 0xfd, 0xca, 0x04, 0x83, 0x02, 0xf6, 0xff, 0x3b, 0xfd, 0x09, 0x0d, 0x85, 0x0a, 0xff, 0xe3, 0x35, 0xfb, 0x53, 0xfd, 0x2a, 0x01, 0x07, 0x0c, 0x88, 0x19, 0xcd, 0xfb, 0x0a, 0xf0, 0x4d, 0xe4, 0xd6, 0xf7, 0xbc, 0x24, 0x59, 0xf8, 0x4c, 0x00, 0x69, 0x02, 0xe5, 0x01, 0x43, 0xfd, 0xd6, 0x04, 0x10, 0x09, 0x96, 0xef, 0xe0, 0x06, 0x30, 0xf9, 0x24, 0xf4, 0x2e, 0x19, 0x85, 0x0b, 0x9e, 0xdf, 0xa7, 0x09, 0xcd, 0x13, 0x5b, 0xdf, 0x79, 0xf2, 0x2f, 0x1d, 0x72, 0x0a, 0x9c, 0xf8, 0x9c, 0xf7, 0x9f, 0x12, 0xb9, 0xfc, 0xaf, 0x01, 0x81, 0xee, 0xa7, 0xed, 0x83, 0x1d, 0xee, 0xf1, 0xd5, 0x0f, 0xe5, 0xfa, 0x53, 0xf0, 0xdf, 0x0a, 0xe7, 0x08, 0xa1, 0x00, 0xfa, 0xf3, 0x44, 0x11, 0xc3, 0x01, 0x2d, 0x02, 0x50, 0xee, 0xac, 0xe3, 0xe2, 0x27, 0x3e, 0x0f, 0x31, 0xe0, 0x71, 0xe2, 0xe0, 0x1b, 0xd2, 0x17, 0xa0, 0xf8, 0x7c, 0xf6, 0x51, 0x01, 0x57, 0x0d, 0x2a, 0xfb, 0xd9, 0x00, 0x82, 0xee, 0x1b, 0xfc, 0x8f, 0x11, 0x85, 0x02, 0xd0, 0xfb, 0x13, 0xfd, 0x28, 0x04, 0x45, 0xfe, 0x52, 0x00, 0x76, 0xfe, 0x33, 0x07, 0x7c, 0x01, 0x57, 0xef, 0x7f, 0x04, 0x53, 0x07, 0x66, 0x06, 0xed, 0x12, 0x7a, 0xf6, 0x5f, 0xdf, 0xe6, 0x09, 0x90, 0xf5, 0x4f, 0xee, 0xfc, 0x2f, 0x9b, 0x06, 0x03, 0xd4, 0xdc, 0x06, 0x43, 0x18, 0xc5, 0x02, 0xef, 0xf3, 0x55, 0x08, 0x8c, 0x09, 0x7e, 0x08, 0xdc, 0xe0, 0xec, 0xf9, 0xde, 0x1b, 0xdd, 0xf9, 0x04, 0xf6, 0x36, 0xfb, 0x5a, 0xe1, 0x91, 0xfe, 0x25, 0x2b, 0x38, 0x0b, 0x44, 0xf3, 0xb5, 0xfa, 0x3c, 0x1d, 0x61, 0xe3, 0xe3, 0xe6, 0x98, 0x19, 0x1d, 0x0d, 0xa1, 0xf9, 0xcc, 0xf7, 0x93, 0x03, 0xa5, 0x02, 0x61, 0xfe, 0x4b, 0xff, 0x8c, 0x00, 0xf6, 0x13, 0xa9, 0x02, 0x91, 0xf1, 0xe8, 0xd2, 0x16, 0x00, 0x94, 0x2b, 0xaa, 0x0c, 0x10, 0x0c, 0x04, 0xf1, 0xea, 0xed, 0x64, 0xf7, 0x6d, 0xdc, 0x67, 0x0d, 0xdb, 0x2c, 0x47, 0x02, 0x2d, 0x08, 0x48, 0x08, 0xc4, 0xe4, 0x15, 0xef, 0xa7, 0x0d, 0x24, 0x05, 0x16, 0xe2, 0x7f, 0xec, 0x48, 0x2f, 0xc8, 0x29, 0xb2, 0xe8, 0x47, 0xc2, 0xe5, 0x1f, 0xa3, 0x2d, 0xfa, 0xec, 0x22, 0xdf, 0x24, 0xd7, 0x93, 0x1d, 0xa5, 0x2c, 0xb4, 0xfb, 0x08, 0xef, 0xac, 0x00, 0x8a, 0x0e, 0x59, 0xf9, 0xcc, 0xf1, 0xe4, 0x07, 0xe5, 0x03, 0x7c, 0x08, 0x6c, 0xf4, 0x52, 0x0c, 0x88, 0xf8, 0x83, 0xf6, 0x15, 0x1f, 0xcd, 0xdc, 0x45, 0xdd, 0xe6, 0x21, 0xbd, 0x1a, 0xd3, 0xf4, 0x93, 0xf7, 0xdc, 0x14, 0x30, 0xe7, 0x05, 0x0c, 0xce, 0x0d, 0xae, 0xed, 0x4d, 0xea, 0x77, 0x02, 0x0e, 0x36, 0xd3, 0x04, 0xcf, 0xd0, 0xd8, 0xd4, 0x7c, 0x19, 0xc2, 0x23, 0xb1, 0xff, 0x1e, 0xfa, 0x3b, 0x06, 0x95, 0xfc, 0xd1, 0xf8, 0x4f, 0x04, 0x9b, 0xf6, 0xf3, 0xf5, 0x9f, 0x0f, 0xd4, 0x09, 0xd9, 0x0f, 0x6e, 0x0a, 0xf9, 0xcc, 0x28, 0xd9, 0x9a, 0x2e, 0xb3, 0x25, 0xe0, 0xea, 0x8f, 0x03, 0xbe, 0x0e, 0x6a, 0xf3, 0xde, 0xe9, 0x64, 0xd2, 0x4f, 0x12, 0x9f, 0x33, 0x94, 0x00, 0xbc, 0xee, 0x85, 0xfc, 0xaf, 0x0a, 0x97, 0xfd, 0x41, 0x03, 0x1c, 0x10, 0x9a, 0xfa, 0x0d, 0xfd, 0x98, 0xdb, 0xf4, 0x01, 0x90, 0x17, 0x26, 0xf0, 0xc9, 0xff, 0x31, 0x10, 0x92, 0x06, 0x94, 0xf8, 0x25, 0x16, 0xa2, 0x08, 0x62, 0xe3, 0x1e, 0xfa, 0x08, 0xd4, 0x10, 0x09, 0xc0, 0x2e, 0x09, 0x11, 0x00, 0xf0, 0xb7, 0x03, 0x65, 0x0a, 0x01, 0xd3, 0x18, 0x17, 0x03, 0x11, 0xc1, 0xf6, 0x50, 0xe8, 0x94, 0xf7, 0x6a, 0xf7, 0x37, 0xfd, 0x53, 0x28, 0x53, 0x07, 0xd9, 0xf7, 0x38, 0xf7, 0x7c, 0x25, 0xda, 0x08, 0xba, 0xe0, 0x72, 0xe3, 0xcd, 0xcf, 0xa5, 0x20, 0x46, 0x3d, 0x92, 0x12, 0x41, 0xed, 0xd3, 0xda, 0xf9, 0x03, 0x7f, 0x06, 0x84, 0xce, 0xac, 0xfb, 0x2c, 0x5e, 0x23, 0x04, 0xcf, 0xd1, 0xc8, 0x08, 0x6b, 0xee, 0x72, 0xff, 0xf3, 0x10, 0x90, 0xfe, 0x4e, 0xfa, 0x77, 0xfc, 0xf9, 0xc8, 0xf5, 0x0c, 0xa8, 0x38, 0x21, 0x03, 0x9f, 0xf3, 0x21, 0xfc, 0xc3, 0x06, 0x10, 0x01, 0xb3, 0xfd, 0xe4, 0xfb, 0x93, 0x03, 0xff, 0xfd, 0x90, 0x13, 0xd0, 0x18, 0x4e, 0xdd, 0x8c, 0xbf, 0x28, 0x22, 0xad, 0x18, 0x56, 0x15, 0xa6, 0xeb, 0x02, 0xd2, 0x62, 0x18, 0x0c, 0x12, 0x9c, 0x2d, 0x92, 0xec, 0xf5, 0xc4, 0x56, 0x0c, 0xb0, 0x21, 0x0a, 0xe2, 0xf6, 0xe6, 0x82, 0x22, 0xd6, 0x12, 0xb2, 0xf7, 0xed, 0xf9, 0x87, 0xfd, 0x69, 0x1e, 0x3a, 0x11, 0x2e, 0xd9, 0xbe, 0xf1, 0x89, 0x03, 0x2f, 0x03, 0xa0, 0xca, 0xec, 0x19, 0x21, 0x42, 0x48, 0x11, 0x2b, 0xcf, 0x4c, 0xbb, 0xd5, 0x3e, 0x15, 0x26, 0x76, 0xbe, 0xd9, 0xfa, 0x2d, 0x2b, 0xaa, 0x09, 0x24, 0xee, 0xe8, 0xfa, 0xa2, 0x0b, 0xa3, 0x10, 0xf6, 0x05, 0x49, 0xc7, 0x9f, 0xf0, 0xbe, 0x32, 0xcc, 0x09, 0x44, 0xea, 0xb3, 0xfd, 0x58, 0x09, 0xdd, 0x02, 0x4c, 0xfa, 0xe5, 0x00, 0x74, 0xff, 0x77, 0x04, 0xbd, 0xf9, 0xdd, 0x0f, 0xa3, 0x01, 0xe7, 0xe3, 0xee, 0x24, 0x47, 0x0c, 0x42, 0xc1, 0xe5, 0xd5, 0x5c, 0x39, 0x94, 0x25, 0x01, 0xf0, 0x0d, 0xfa, 0x6c, 0x23, 0xca, 0xc6, 0x5d, 0x03, 0x68, 0x38, 0xc8, 0xed, 0xca, 0xe6, 0x4c, 0xf7, 0x38, 0x06, 0x81, 0x03, 0x6d, 0xfd, 0x0c, 0xff, 0xd3, 0x00, 0xcf, 0xd0, 0x79, 0x13, 0x86, 0x1a, 0x5f, 0x04, 0x72, 0x14, 0x20, 0xf4, 0xc7, 0xed, 0xfa, 0x09, 0x73, 0x10, 0xbf, 0xf4, 0xd1, 0xf7, 0x93, 0x04, 0x34, 0x08, 0xea, 0xfa, 0x88, 0x13, 0xf4, 0x15, 0x32, 0xe4, 0xdc, 0xe5, 0xde, 0x01, 0x83, 0xf2, 0xc1, 0xf9, 0x34, 0xf7, 0x26, 0x07, 0x32, 0x28, 0x3c, 0x01, 0x8c, 0xf6, 0x85, 0xfa, 0x9f, 0x2c, 0x4b, 0xda, 0x22, 0xcd, 0xd3, 0x26, 0x52, 0x19, 0xc2, 0xf9, 0x69, 0xf9, 0x0b, 0x12, 0xc7, 0xde, 0xc4, 0xed, 0x1f, 0x1b, 0x67, 0x0d, 0x7b, 0xfc, 0x8a, 0x0a, 0xff, 0x12, 0x33, 0xc2, 0xb7, 0xe2, 0x6b, 0x32, 0xbc, 0x16, 0xa1, 0xf4, 0xc3, 0xee, 0x5a, 0x15, 0x28, 0x11, 0x9b, 0xd5, 0x8c, 0xfa, 0xfa, 0x0a, 0x62, 0x2a, 0x96, 0xeb, 0x1a, 0xd5, 0x38, 0x16, 0x53, 0x14, 0x8a, 0xea, 0xbc, 0xff, 0x97, 0x0a, 0x4d, 0x1c, 0x40, 0x10, 0x40, 0xe6, 0xe3, 0xe4, 0x89, 0x03, 0xcd, 0xe3, 0xf8, 0xec, 0x43, 0x3f, 0x19, 0x0a, 0xce, 0xcb, 0xe8, 0xfa, 0x3f, 0x3b, 0xd8, 0xf3, 0xfa, 0xe6, 0x47, 0x0a, 0x68, 0x0c, 0xde, 0xfe, 0xc8, 0x00, 0xaf, 0xf4, 0xdb, 0x05, 0xbe, 0x00, 0xdc, 0xf6, 0xf5, 0x14, 0x8f, 0xed, 0xfb, 0x03, 0x57, 0x29, 0x3c, 0xe7, 0xd7, 0xdc, 0x24, 0xf4, 0xe6, 0xf4, 0x6d, 0x1f, 0xb2, 0x18, 0xcc, 0xf5, 0x72, 0xfe, 0x6b, 0x03, 0x29, 0xff, 0x99, 0xf8, 0x26, 0xf7, 0x3a, 0x0d, 0x6f, 0x02, 0xd7, 0x02, 0x18, 0x23, 0xc3, 0xfe, 0xf3, 0xd4, 0x78, 0xf3, 0x0b, 0xfc, 0xd8, 0xeb, 0xc4, 0x00, 0x88, 0x30, 0x06, 0x0b, 0x3d, 0xda, 0xc3, 0x06, 0xc5, 0x02, 0xaa, 0x2f, 0x63, 0x03, 0x9e, 0x9f, 0x5e, 0x07, 0xc0, 0x3d, 0xfa, 0x1d, 0x2d, 0xce, 0xa1, 0xe0, 0x0f, 0x1f, 0x1c, 0x23, 0x8b, 0xfc, 0xe3, 0xc2, 0x0e, 0x15, 0xa7, 0x42, 0xa9, 0xf5, 0xb3, 0xd5, 0xc0, 0xea, 0x53, 0xff, 0xe1, 0xe7, 0x5f, 0xfc, 0x9b, 0x33, 0x7a, 0x12, 0x59, 0xf0, 0x19, 0xf7, 0x73, 0x02, 0x1b, 0x2a, 0x39, 0xda, 0xd2, 0xdd, 0x0b, 0x41, 0x90, 0xcb, 0x35, 0xfa, 0xb2, 0x2c, 0xa1, 0xfa, 0x1f, 0x02, 0x5c, 0xc7, 0x80, 0x20, 0x6f, 0x41, 0x8b, 0xba, 0x41, 0xc8, 0x63, 0x35, 0x57, 0x29, 0x72, 0xec, 0xd1, 0xf1, 0x66, 0x01, 0xef, 0x1a, 0x60, 0xfe, 0xad, 0xce, 0x8f, 0x0e, 0x26, 0x18, 0x68, 0x0f, 0x30, 0x11, 0x91, 0xed, 0xef, 0xe8, 0x62, 0xf5, 0xea, 0x08, 0x09, 0xc5, 0xc5, 0xf9, 0xf8, 0x43, 0x49, 0x3f, 0x9a, 0xee, 0x3d, 0xc4, 0xd1, 0xfc, 0x71, 0x0e, 0x4c, 0xe9, 0xbd, 0xdb, 0x82, 0x4c, 0xfa, 0x0a, 0x3d, 0xeb, 0xff, 0x1a, 0x95, 0x00, 0x9a, 0xb5, 0xeb, 0xde, 0x28, 0x46, 0xe3, 0x20, 0x77, 0xe9, 0xf9, 0x11, 0x63, 0x1d, 0x80, 0xa0, 0xd2, 0xe5, 0x5b, 0x40, 0x08, 0x3f, 0xd0, 0xf8, 0xf6, 0xd5, 0xbc, 0xc3, 0xb4, 0xf4, 0x60, 0x4e, 0x16, 0x28, 0xde, 0xc5, 0x2a, 0xba, 0xfa, 0x31, 0x67, 0x21, 0x42, 0x0a, 0x00, 0xea, 0x3e, 0xea, 0x38, 0x13, 0xfd, 0x0a, 0x8b, 0xfd, 0xc1, 0xf4, 0x9a, 0x11, 0xa7, 0xf4, 0x67, 0x0a, 0x02, 0xff, 0x61, 0x01, 0x9c, 0x09, 0x88, 0xc4, 0x7d, 0xf9, 0xf4, 0x1e, 0x1d, 0x1e, 0x61, 0xf5, 0x26, 0xf6, 0x76, 0x01, 0xfd, 0x08, 0x28, 0x01, 0x76, 0xf2, 0xb9, 0x03, 0x1a, 0x2e, 0x90, 0xff, 0x8f, 0x9f, 0x14, 0xf9, 0x9a, 0x48, 0xe9, 0x0f, 0x4a, 0xe5, 0x3d, 0xfa, 0x0b, 0x2a, 0x05, 0xdb, 0xdd, 0xdc, 0xc0, 0x1d, 0x27, 0x37, 0xcf, 0x02, 0x5e, 0xd4, 0xef, 0xf0, 0xae, 0xfe, 0x29, 0x08, 0x00, 0xf2, 0x34, 0xc1, 0x97, 0x25, 0xbd, 0x57, 0x90, 0xfb, 0x02, 0xe3, 0x3e, 0xb8, 0x1b, 0x02, 0xff, 0x3e, 0x74, 0x0d, 0x80, 0xeb, 0x54, 0xf7, 0x1d, 0x1e, 0x74, 0xec, 0x82, 0x04, 0x52, 0xf7, 0xf8, 0xde, 0x86, 0x1a, 0x97, 0x0d, 0x08, 0x18, 0x50, 0x09, 0x57, 0xaa, 0xfe, 0xfb, 0x57, 0x40, 0x7d, 0x34, 0x80, 0xd0, 0x5d, 0xa4, 0xd4, 0x1b, 0x1a, 0x59, 0x67, 0x09, 0xd2, 0xa3, 0x60, 0x20, 0x8f, 0x0e, 0xd9, 0xd1, 0x6f, 0x42, 0x69, 0xfa, 0xa7, 0xc5, 0x45, 0x2e, 0x74, 0x06, 0xb7, 0xfd, 0x1a, 0xee, 0x0c, 0xdc, 0xe4, 0x1d, 0x2a, 0x0a, 0xf5, 0xea, 0x60, 0xf6, 0xb1, 0x38, 0x7f, 0x0c, 0x77, 0xc6, 0xeb, 0xd0, 0x27, 0x23, 0x01, 0x2d, 0x1b, 0xfc, 0xb2, 0xf1, 0x31, 0xfe, 0x9e, 0x10, 0x64, 0xf7, 0xb6, 0x1e, 0xdb, 0xe9, 0x10, 0xca, 0xfe, 0x10, 0x11, 0x0b, 0xa5, 0x11, 0x4b, 0xfd, 0xb5, 0xfc, 0x3c, 0xff, 0x59, 0x03, 0x9d, 0xfd, 0xc1, 0x16, 0x31, 0x03, 0xaa, 0xea, 0x41, 0xea, 0xc6, 0xe2, 0x92, 0x2e, 0xc8, 0x29, 0xbf, 0xbd, 0x94, 0xed, 0x5a, 0x2d, 0xe4, 0x0e, 0xfe, 0xee, 0xb2, 0xf7, 0xeb, 0x06, 0x6f, 0x04, 0x1f, 0xfc, 0x85, 0x00, 0x99, 0x0a, 0x63, 0x07, 0x4f, 0xd8, 0x2e, 0x00, 0xb0, 0x1d, 0x15, 0x0e, 0x82, 0x04, 0xb4, 0xe9, 0xe3, 0xcf, 0x00, 0x07, 0x5f, 0x23, 0xf2, 0x00, 0xfd, 0xfd, 0x19, 0x01, 0xac, 0x08, 0x2c, 0xf3, 0x8f, 0xfc, 0x8a, 0x08, 0x39, 0x02, 0xe7, 0xfe, 0xf2, 0x06, 0x10, 0xef, 0x13, 0xfc, 0x35, 0x0d, 0xe4, 0x01, 0xc8, 0x13, 0xe3, 0xff, 0x7b, 0xcb, 0xf9, 0xf9, 0x66, 0x25, 0xcb, 0x16, 0x4f, 0x03, 0x2c, 0xcb, 0xf3, 0xf1, 0x2c, 0x1f, 0x46, 0x13, 0x09, 0xf7, 0xa6, 0xed, 0xd2, 0x1f, 0xd0, 0x0f, 0x63, 0xe6, 0x61, 0xe9, 0x94, 0xe7, 0x88, 0x19, 0xd5, 0x11, 0xda, 0xf6, 0xf3, 0x04, 0x78, 0xff, 0xa3, 0x04, 0x82, 0xf7, 0xe1, 0xfb, 0x63, 0x07, 0x27, 0x03, 0xdd, 0xff, 0xde, 0x0f, 0x4d, 0xeb, 0xf8, 0xe6, 0x12, 0x14, 0x09, 0x0e, 0x1d, 0xfb, 0x1e, 0xf8, 0xad, 0x18, 0xe6, 0x00, 0x68, 0xf1, 0xe0, 0xdc, 0x6b, 0x03, 0x4b, 0x1d, 0x8c, 0xed, 0x19, 0x17, 0xed, 0xf8, 0xc6, 0xec, 0x17, 0x0c, 0xd5, 0x08, 0x8a, 0x08, 0xaf, 0xfe, 0xfd, 0xfb, 0x03, 0xe9, 0xdc, 0xf1, 0x8e, 0x19, 0x40, 0x0c, 0x41, 0xfa, 0x8f, 0x0c, 0xb8, 0x01, 0x21, 0xed, 0x2e, 0xde, 0xab, 0x05, 0x89, 0x24, 0x46, 0x01, 0xc1, 0xf7, 0xbb, 0x02, 0x37, 0x07, 0x29, 0xf6, 0xcd, 0xfa, 0x32, 0x0c, 0x67, 0xf1, 0x27, 0xe2, 0x25, 0x13, 0xbf, 0x18, 0xa7, 0x04, 0x20, 0xf3, 0xba, 0x01, 0x99, 0xf3, 0x9c, 0xff, 0xbc, 0x10, 0xf9, 0xf1, 0xfd, 0x00, 0x61, 0x09, 0xc4, 0x00, 0x57, 0xf2, 0xef, 0x02, 0xba, 0x06, 0x37, 0x00, 0x7f, 0xfc, 0x7e, 0xff, 0xd4, 0x00, 0x67, 0x03, 0xf7, 0x0a, 0x9f, 0xfd, 0x0d, 0xe0, 0x91, 0xfc, 0xa9, 0x17, 0x91, 0x0c, 0x53, 0x04, 0xec, 0xf2, 0xf3, 0xe0, 0xd4, 0x0c, 0x54, 0x20, 0xdc, 0xf1, 0x9b, 0xea, 0x08, 0x06, 0xdf, 0x0a, 0x69, 0xfb, 0x96, 0xff, 0x4b, 0x03, 0x9d, 0x01, 0x3c, 0xfe, 0x19, 0x0a, 0x9d, 0x01, 0xd2, 0xe6, 0xa1, 0xfc, 0x31, 0x0d, 0xaf, 0x10, 0x07, 0x00, 0x00, 0xf3, 0xd9, 0xf8, 0x67, 0xfc, 0x34, 0xfe, 0x20, 0xfa, 0x54, 0x14, 0x97, 0x01, 0x79, 0xf2, 0xd3, 0x03, 0x24, 0x05, 0xaf, 0x00, 0x21, 0xfc, 0x56, 0x00, 0x6c, 0xff, 0xa6, 0x05, 0x30, 0x07, 0x9e, 0xf9, 0x1e, 0xf6, 0x76, 0xee, 0x80, 0x0c, 0x9f, 0x16, 0x44, 0xf3, 0x84, 0xee, 0x66, 0x09, 0xf9, 0x0a, 0x6f, 0xfd, 0xc1, 0xfa, 0xa4, 0x00, 0x5d, 0x02, 0xf5, 0x02, 0x6d, 0xfc, 0xb6, 0xf9, 0xd1, 0x02, 0xb3, 0x06, 0x0b, 0x05, 0x0d, 0xfc, 0x0d, 0xf8, 0x1f, 0xfd, 0xf5, 0x02, 0x6f, 0x02, 0x6c, 0xf8, 0x49, 0xf4, 0x24, 0x0c, 0x1e, 0x0b, 0x43, 0xfd, 0x3a, 0xfa, 0xd1, 0x03, 0xd0, 0x00, 0x59, 0xfa, 0x4b, 0x01, 0x3b, 0x03, 0xb2, 0xfe, 0xc1, 0xfd, 0xa1, 0x00, 0x5e, 0x01, 0x62, 0x04, 0xf7, 0xfe, 0x5f, 0xf3, 0x3f, 0x02, 0xe6, 0x0c, 0x9d, 0xf9, 0x91, 0xfd, 0xbf, 0x03, 0x0c, 0xfe, 0x30, 0xfe, 0x63, 0xff, 0x5f, 0xff, 0xa7, 0x00, 0x55, 0xf8, 0x4c, 0xfb, 0x76, 0x0b, 0x5a, 0x05, 0xf3, 0xfc, 0xa1, 0xfc, 0x43, 0x03, 0xe7, 0x06, 0x7d, 0xfc, 0xe6, 0xf0, 0x54, 0xfe, 0x41, 0x0c, 0x4b, 0x02, 0xb7, 0xfc, 0x38, 0xff, 0xd5, 0x02, 0xee, 0xfa, 0x5f, 0xfd, 0xff, 0x08, 0xc9, 0xfb, 0x3c, 0xf9, 0x89, 0x03, 0xcf, 0x03, 0xd2, 0xfe, 0x88, 0xfe, 0xbf, 0xff, 0x27, 0x02, 0xde, 0xff, 0xa8, 0xfb, 0x4d, 0x00, 0x83, 0x03, 0x7b, 0x02, 0xbd, 0xfe, 0x43, 0xfd, 0xdc, 0xfb, 0x6d, 0xfd, 0xcd, 0x02, 0x39, 0x03, 0x29, 0x03, 0xa3, 0xfe, 0xd5, 0xf8, 0x5a, 0x01, 0x6f, 0x04, 0x3d, 0x00, 0xd9, 0xfd, 0xba, 0x01, 0x47, 0xfc, 0x8f, 0xff, 0x38, 0x05, 0xda, 0x00, 0x79, 0xfd, 0x55, 0xfd, 0x65, 0xff, 0x53, 0x00, 0xb4, 0xff, 0xb3, 0xff, 0x44, 0xff, 0x5d, 0x01, 0x76, 0x00, 0xc9, 0xff, 0x1c, 0xfa, 0x3e, 0xff, 0x68, 0x06, 0xd2, 0xff, 0x65, 0xff, 0xce, 0xff, 0xaf, 0x02, 0xa3, 0xfe, 0x09, 0xfb, 0xbf, 0x00, 0x17, 0x03, 0x01, 0x00, 0x88, 0xfe, 0xc3, 0xff, 0x59, 0x00, 0x10, 0x00, 0x9e, 0xff, 0x5c, 0xff, 0x1d, 0x00, 0x16, 0x00, 0x8b, 0x01, 0x7c, 0x00, 0xf3, 0xfe, 0x81, 0xfd, 0x62, 0xff, 0xe4, 0xff, 0x77, 0xfd, 0x35, 0x02, 0x31, 0x02, 0x11, 0x00, 0x2a, 0x01, 0x99, 0xff, 0x12, 0xfe, 0xb1, 0xfb, 0x26, 0x00, 0xf5, 0x03, 0xc5, 0x00, 0x96, 0xfe, 0x63, 0xff, 0x4d, 0x00, 0xbc, 0x00, 0x75, 0xff, 0x15, 0xff, 0xc3, 0xff, 0x6d, 0x00, 0x9c, 0x01, 0xbb, 0xfd, 0x45, 0xff, 0x51, 0x02, 0x53, 0xff, 0x72, 0xff, 0xd3, 0xfe, 0xbb, 0xfc, 0x15, 0x03, 0x23, 0x03, 0xd6, 0xfe, 0x0d, 0xfc, 0x70, 0xfe, 0x69, 0x03, 0x3d, 0x01, 0x03, 0xff, 0x1b, 0xff, 0x61, 0x00, 0xf6, 0xff, 0x05, 0x00, 0xad, 0xff, 0x27, 0xff, 0x28, 0x01, 0xe7, 0xff, 0x48, 0xfe, 0x4a, 0x00, 0xa6, 0x00, 0xfe, 0xff, 0xcc, 0xff, 0x5d, 0x01, 0xba, 0xfe, 0x13, 0xfe, 0xf9, 0xff, 0x83, 0x00, 0xa3, 0x00, 0xc8, 0xff, 0xe4, 0xff, 0xda, 0xff, 0x31, 0x00, 0xba, 0xff, 0x92, 0xff, 0x07, 0x00, 0x40, 0x00, 0x1d, 0x00, 0x44, 0xff, 0xb3, 0xff, 0x2e, 0x00, 0xff, 0xff, 0xf0, 0xff, 0xd2, 0xff, 0x73, 0x00, 0x69, 0xff, 0x66, 0xff, 0x8f, 0x00, 0xc3, 0xff, 0xba, 0xff, 0x04, 0x00, 0x40, 0x00, 0xe3, 0xff, 0x20, 0x00, 0x2b, 0x00, 0x12, 0xff, 0x27, 0xff, 0x35, 0x00, 0x26, 0x00, 0xdd, 0x00, 0xbf, 0xff, 0x7e, 0xfe, 0x1c, 0x00, 0x32, 0x00, 0x23, 0x00, 0x22, 0x00, 0xe3, 0xff, 0xd4, 0xff, 0xf0, 0xff, 0xd5, 0xff, 0x22, 0x00, 0xea, 0xff, 0xf2, 0xff, 0xfb, 0xff, 0x15, 0xff, 0xef, 0xff, 0x58, 0x00, 0x1c, 0x00, 0xe0, 0xff, 0xd2, 0xff, 0xf2, 0xff, 0x6d, 0x00, 0xc3, 0xff, 0xf3, 0xfe, 0xe7, 0xff, 0x89, 0x00, 0x1a, 0x00, 0xc5, 0xff, 0xd4, 0xff, 0xf6, 0xff, 0x05, 0x00, 0x10, 0x00, 0x25, 0x00, 0x54, 0xff, 0x57, 0xff, 0x52, 0x00, 0x44, 0x00, 0xf3, 0xff, 0xda, 0xff, 0xe7, 0xff, 0xd8, 0xff, 0xef, 0xff, 0xf9, 0xff, 0x37, 0x00, 0xa8, 0xff, 0x9c, 0xff, 0x13, 0x00, 0x0d, 0x00, 0xf5, 0xff, 0x13, 0x00, 0x01, 0x00, 0x90, 0xff, 0xab, 0xff, 0x17, 0x00, 0x59, 0x00, 0xa4, 0xff, 0x9b, 0xff, 0x20, 0x00, 0x16, 0x00, 0xf2, 0xff, 0xdd, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xe6, 0xff, 0x01, 0x00, 0xde, 0xff, 0xe1, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xcc, 0xff, 0xf9, 0xff, 0xe7, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0x01, 0x00, 0xd7, 0xff, 0xe6, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0x0a, 0x00, 0xe1, 0xff, 0xce, 0xff, 0xd7, 0xff, 0xfc, 0xff, 0x05, 0x00, 0xfc, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf8, 0xff, 0x08, 0x00, 0xdd, 0xff, 0xcb, 0xff, 0xf5, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xed, 0xff, 0x02, 0x00, 0xec, 0xff, 0xde, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xec, 0xff, 0xdb, 0xff, 0xe7, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf3, 0xff, 0xe9, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x07, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x07, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x05, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x04, 0x00, 0x05, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x08, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x07, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x08, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xf9, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfb, 0xff, 0x05, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x07, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x05, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff }; #define tr808_mc_wav_len 22128 unsigned char tr808_mt_wav[] = { 0x52, 0x49, 0x46, 0x46, 0x3e, 0x7c, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45, 0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e, 0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61, 0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61, 0x74, 0x61, 0xf8, 0x7b, 0x00, 0x00, 0x9b, 0xff, 0xb7, 0xff, 0x8f, 0xff, 0xe1, 0xff, 0x7b, 0xff, 0x17, 0x03, 0x8c, 0x10, 0x33, 0x20, 0x54, 0x2f, 0xe9, 0x3c, 0x65, 0x48, 0xb8, 0x51, 0x30, 0x58, 0xfc, 0x58, 0xd2, 0x58, 0xf6, 0x58, 0xcb, 0x58, 0xc8, 0x58, 0xa2, 0x58, 0x95, 0x58, 0x76, 0x58, 0x69, 0x58, 0x51, 0x58, 0x5a, 0x58, 0x4e, 0x58, 0x57, 0x58, 0x3f, 0x58, 0x56, 0x58, 0x2e, 0x58, 0x59, 0x58, 0x05, 0x58, 0x92, 0x58, 0x66, 0x56, 0xee, 0x52, 0x55, 0x51, 0xf1, 0x4e, 0xf1, 0x4c, 0xa1, 0x4a, 0x7d, 0x48, 0x2d, 0x46, 0xfd, 0x43, 0xa5, 0x41, 0x62, 0x3f, 0x14, 0x3d, 0xbc, 0x3a, 0x6c, 0x38, 0x07, 0x36, 0xb9, 0x33, 0xa6, 0x30, 0x80, 0x2c, 0x43, 0x28, 0x11, 0x24, 0x06, 0x20, 0x2b, 0x1c, 0x85, 0x18, 0x09, 0x15, 0xc2, 0x11, 0xa1, 0x0e, 0xa2, 0x0b, 0xc6, 0x08, 0x07, 0x06, 0x5b, 0x03, 0xc4, 0x00, 0x3d, 0xfe, 0xc2, 0xfb, 0x56, 0xf9, 0xf4, 0xf6, 0x9c, 0xf4, 0x49, 0xf2, 0x00, 0xf0, 0xbf, 0xed, 0x82, 0xeb, 0x4f, 0xe9, 0x1e, 0xe7, 0xf5, 0xe4, 0xd5, 0xe2, 0xb6, 0xe0, 0xa1, 0xde, 0x90, 0xdc, 0x86, 0xda, 0x83, 0xd8, 0x82, 0xd6, 0x90, 0xd4, 0xa3, 0xd2, 0xbb, 0xd0, 0xde, 0xce, 0x06, 0xcd, 0x34, 0xcb, 0x70, 0xc9, 0xaf, 0xc7, 0xf9, 0xc5, 0x4e, 0xc4, 0xa7, 0xc2, 0x0d, 0xc1, 0x7d, 0xbf, 0xf4, 0xbd, 0x7a, 0xbc, 0x00, 0xbb, 0x9d, 0xb9, 0x39, 0xb8, 0xe3, 0xb6, 0x9e, 0xb5, 0x5c, 0xb4, 0x28, 0xb3, 0xfc, 0xb1, 0xde, 0xb0, 0xca, 0xaf, 0xc2, 0xae, 0xc6, 0xad, 0xd1, 0xac, 0xf7, 0xab, 0x12, 0xab, 0x49, 0xaa, 0x7b, 0xa9, 0xc2, 0xa8, 0x1d, 0xa8, 0x77, 0xa7, 0xe7, 0xa6, 0x56, 0xa6, 0xda, 0xa5, 0x69, 0xa5, 0x02, 0xa5, 0xa9, 0xa4, 0x58, 0xa4, 0x12, 0xa4, 0xd9, 0xa3, 0xb0, 0xa3, 0x8c, 0xa3, 0x77, 0xa3, 0x68, 0xa3, 0x69, 0xa3, 0x74, 0xa3, 0x86, 0xa3, 0xa7, 0xa3, 0xd3, 0xa3, 0x09, 0xa4, 0x49, 0xa4, 0x94, 0xa4, 0xee, 0xa4, 0x4d, 0xa5, 0xb7, 0xa5, 0x2c, 0xa6, 0xad, 0xa6, 0x35, 0xa7, 0xc7, 0xa7, 0x66, 0xa8, 0x0b, 0xa9, 0xc0, 0xa9, 0x79, 0xaa, 0x3c, 0xab, 0x08, 0xac, 0xdd, 0xac, 0xc9, 0xad, 0xa6, 0xae, 0x98, 0xaf, 0x9a, 0xb0, 0x98, 0xb1, 0xa7, 0xb2, 0xb6, 0xb3, 0xd5, 0xb4, 0xff, 0xb5, 0x2b, 0xb7, 0x5f, 0xb8, 0x9c, 0xb9, 0xe2, 0xba, 0x2f, 0xbc, 0x83, 0xbd, 0xe0, 0xbe, 0x41, 0xc0, 0xb2, 0xc1, 0x20, 0xc3, 0x9a, 0xc4, 0x1d, 0xc6, 0xa3, 0xc7, 0x2f, 0xc9, 0xc4, 0xca, 0x5f, 0xcc, 0x00, 0xce, 0xa4, 0xcf, 0x52, 0xd1, 0x04, 0xd3, 0xbb, 0xd4, 0x7a, 0xd6, 0x3e, 0xd8, 0x03, 0xda, 0xd4, 0xdb, 0xa0, 0xdd, 0x7c, 0xdf, 0x55, 0xe1, 0x35, 0xe3, 0x18, 0xe5, 0xfd, 0xe6, 0xe8, 0xe8, 0xda, 0xea, 0xc8, 0xec, 0xbf, 0xee, 0xb2, 0xf0, 0xae, 0xf2, 0xaf, 0xf4, 0xaa, 0xf6, 0xae, 0xf8, 0xb0, 0xfa, 0xb1, 0xfc, 0xba, 0xfe, 0xbc, 0x00, 0xc5, 0x02, 0xca, 0x04, 0xd2, 0x06, 0xd8, 0x08, 0xdf, 0x0a, 0xe6, 0x0c, 0xe7, 0x0e, 0xef, 0x10, 0xef, 0x12, 0xf0, 0x14, 0xf0, 0x16, 0xed, 0x18, 0xe6, 0x1a, 0xdd, 0x1c, 0xcf, 0x1e, 0xc3, 0x20, 0xae, 0x22, 0x95, 0x24, 0x7b, 0x26, 0x58, 0x28, 0x36, 0x2a, 0x09, 0x2c, 0xdb, 0x2d, 0xa2, 0x2f, 0x69, 0x31, 0x25, 0x33, 0xe1, 0x34, 0x90, 0x36, 0x3c, 0x38, 0xe0, 0x39, 0x79, 0x3b, 0x11, 0x3d, 0x9d, 0x3e, 0x21, 0x40, 0x9d, 0x41, 0x12, 0x43, 0x7d, 0x44, 0xdc, 0x45, 0x3c, 0x47, 0x90, 0x48, 0xcf, 0x49, 0x12, 0x4b, 0x45, 0x4c, 0x6f, 0x4d, 0x91, 0x4e, 0xa8, 0x4f, 0xb6, 0x50, 0xb6, 0x51, 0xaf, 0x52, 0x9a, 0x53, 0x82, 0x54, 0x4d, 0x55, 0x2a, 0x56, 0xc5, 0x56, 0xac, 0x57, 0xd0, 0x57, 0xdd, 0x58, 0x53, 0x59, 0x0e, 0x59, 0x33, 0x59, 0x0e, 0x59, 0x1a, 0x59, 0x07, 0x59, 0x0b, 0x59, 0xfc, 0x58, 0xfc, 0x58, 0xf0, 0x58, 0xed, 0x58, 0xe5, 0x58, 0xe2, 0x58, 0xd7, 0x58, 0xd5, 0x58, 0xcc, 0x58, 0xc6, 0x58, 0xbf, 0x58, 0xbe, 0x58, 0xb8, 0x58, 0xaf, 0x58, 0xab, 0x58, 0xa5, 0x58, 0xa3, 0x58, 0x99, 0x58, 0x93, 0x58, 0x93, 0x58, 0x87, 0x58, 0x8c, 0x58, 0x73, 0x58, 0x9e, 0x58, 0x70, 0x57, 0xb9, 0x56, 0x10, 0x56, 0x3d, 0x55, 0x84, 0x54, 0xa1, 0x53, 0xd2, 0x52, 0xe0, 0x51, 0xf8, 0x50, 0xff, 0x4f, 0x08, 0x4f, 0xfe, 0x4d, 0xf1, 0x4c, 0xd8, 0x4b, 0xbf, 0x4a, 0x98, 0x49, 0x6e, 0x48, 0x3b, 0x47, 0x00, 0x46, 0xba, 0x44, 0x73, 0x43, 0x26, 0x42, 0xcc, 0x40, 0x72, 0x3f, 0x0e, 0x3e, 0xa3, 0x3c, 0x36, 0x3b, 0xbf, 0x39, 0x41, 0x38, 0xc1, 0x36, 0x39, 0x35, 0xaa, 0x33, 0x16, 0x32, 0x80, 0x30, 0xdf, 0x2e, 0x41, 0x2d, 0x9b, 0x2b, 0xec, 0x29, 0x3e, 0x28, 0x8a, 0x26, 0xd1, 0x24, 0x13, 0x23, 0x54, 0x21, 0x91, 0x1f, 0xc9, 0x1d, 0xfe, 0x1b, 0x2f, 0x1a, 0x5f, 0x18, 0x8b, 0x16, 0xb6, 0x14, 0xdb, 0x12, 0x02, 0x11, 0x20, 0x0f, 0x47, 0x0d, 0x66, 0x0b, 0x84, 0x09, 0xa3, 0x07, 0xbe, 0x05, 0xd9, 0x03, 0xf6, 0x01, 0x10, 0x00, 0x30, 0xfe, 0x49, 0xfc, 0x61, 0xfa, 0x81, 0xf8, 0x9e, 0xf6, 0xba, 0xf4, 0xdb, 0xf2, 0xfe, 0xf0, 0x21, 0xef, 0x47, 0xed, 0x70, 0xeb, 0x9c, 0xe9, 0xc8, 0xe7, 0xfa, 0xe5, 0x2d, 0xe4, 0x66, 0xe2, 0xa1, 0xe0, 0xe2, 0xde, 0x24, 0xdd, 0x6e, 0xdb, 0xbc, 0xd9, 0x0b, 0xd8, 0x63, 0xd6, 0xc1, 0xd4, 0x1d, 0xd3, 0x87, 0xd1, 0xf8, 0xcf, 0x66, 0xce, 0xe3, 0xcc, 0x63, 0xcb, 0xeb, 0xc9, 0x79, 0xc8, 0x10, 0xc7, 0xab, 0xc5, 0x55, 0xc4, 0xfa, 0xc2, 0xb2, 0xc1, 0x6d, 0xc0, 0x32, 0xbf, 0x00, 0xbe, 0xd3, 0xbc, 0xb6, 0xbb, 0x98, 0xba, 0x88, 0xb9, 0x7d, 0xb8, 0x81, 0xb7, 0x8b, 0xb6, 0xa7, 0xb5, 0xbe, 0xb4, 0xde, 0xb3, 0x18, 0xb3, 0x4a, 0xb2, 0x92, 0xb1, 0xdc, 0xb0, 0x34, 0xb0, 0x9a, 0xaf, 0xfa, 0xae, 0x70, 0xae, 0xee, 0xad, 0x79, 0xad, 0x04, 0xad, 0xa2, 0xac, 0x46, 0xac, 0xfa, 0xab, 0xbb, 0xab, 0x67, 0xab, 0x44, 0xab, 0x18, 0xab, 0xe8, 0xaa, 0xde, 0xaa, 0xcd, 0xaa, 0xcd, 0xaa, 0xd0, 0xaa, 0xe6, 0xaa, 0x00, 0xab, 0x24, 0xab, 0x54, 0xab, 0x87, 0xab, 0xc8, 0xab, 0x19, 0xac, 0x6b, 0xac, 0xc7, 0xac, 0x37, 0xad, 0x9c, 0xad, 0x20, 0xae, 0x9f, 0xae, 0x30, 0xaf, 0xc1, 0xaf, 0x5d, 0xb0, 0x03, 0xb1, 0xb7, 0xb1, 0x69, 0xb2, 0x2f, 0xb3, 0xf1, 0xb3, 0xc2, 0xb4, 0x9a, 0xb5, 0x77, 0xb6, 0x60, 0xb7, 0x4d, 0xb8, 0x46, 0xb9, 0x45, 0xba, 0x4a, 0xbb, 0x5a, 0xbc, 0x6f, 0xbd, 0x8c, 0xbe, 0xad, 0xbf, 0xda, 0xc0, 0x0b, 0xc2, 0x41, 0xc3, 0x7f, 0xc4, 0xc1, 0xc5, 0x13, 0xc7, 0x5d, 0xc8, 0xb4, 0xc9, 0x0e, 0xcb, 0x72, 0xcc, 0xd7, 0xcd, 0x43, 0xcf, 0xb3, 0xd0, 0x28, 0xd2, 0xa5, 0xd3, 0x22, 0xd5, 0xa8, 0xd6, 0x2e, 0xd8, 0xbe, 0xd9, 0x4c, 0xdb, 0xe4, 0xdc, 0x7d, 0xde, 0x18, 0xe0, 0xb6, 0xe1, 0x5d, 0xe3, 0x01, 0xe5, 0xa7, 0xe6, 0x52, 0xe8, 0xff, 0xe9, 0xaf, 0xeb, 0x5d, 0xed, 0x14, 0xef, 0xc8, 0xf0, 0x7e, 0xf2, 0x38, 0xf4, 0xf1, 0xf5, 0xac, 0xf7, 0x6a, 0xf9, 0x28, 0xfb, 0xe9, 0xfc, 0xa8, 0xfe, 0x68, 0x00, 0x29, 0x02, 0xe9, 0x03, 0xae, 0x05, 0x6e, 0x07, 0x2d, 0x09, 0xee, 0x0a, 0xad, 0x0c, 0x66, 0x0e, 0x22, 0x10, 0xdf, 0x11, 0x94, 0x13, 0x4e, 0x15, 0x02, 0x17, 0xb5, 0x18, 0x66, 0x1a, 0x15, 0x1c, 0xc3, 0x1d, 0x6b, 0x1f, 0x15, 0x21, 0xb6, 0x22, 0x59, 0x24, 0xf7, 0x25, 0x92, 0x27, 0x27, 0x29, 0xb9, 0x2a, 0x4b, 0x2c, 0xd5, 0x2d, 0x5d, 0x2f, 0xdf, 0x30, 0x5a, 0x32, 0xd2, 0x33, 0x42, 0x35, 0xac, 0x36, 0x12, 0x38, 0x6d, 0x39, 0xc1, 0x3a, 0x15, 0x3c, 0x56, 0x3d, 0x93, 0x3e, 0xc8, 0x3f, 0xf1, 0x40, 0x16, 0x42, 0x30, 0x43, 0x3b, 0x44, 0x45, 0x45, 0x41, 0x46, 0x32, 0x47, 0x26, 0x48, 0xfa, 0x48, 0xdb, 0x49, 0xb0, 0x4a, 0x5e, 0x4b, 0x2d, 0x4c, 0xd5, 0x4c, 0x7d, 0x4d, 0x31, 0x4e, 0xbe, 0x4e, 0x4e, 0x4f, 0xda, 0x4f, 0x58, 0x50, 0xce, 0x50, 0x40, 0x51, 0xa3, 0x51, 0x02, 0x52, 0x54, 0x52, 0x9e, 0x52, 0xe4, 0x52, 0x17, 0x53, 0x49, 0x53, 0x6e, 0x53, 0x8b, 0x53, 0x9d, 0x53, 0xa8, 0x53, 0xa8, 0x53, 0xa4, 0x53, 0x8f, 0x53, 0x7a, 0x53, 0x53, 0x53, 0x2a, 0x53, 0xf9, 0x52, 0xbb, 0x52, 0x76, 0x52, 0x28, 0x52, 0xd2, 0x51, 0x71, 0x51, 0x06, 0x51, 0x94, 0x50, 0x19, 0x50, 0x95, 0x4f, 0x08, 0x4f, 0x76, 0x4e, 0xda, 0x4d, 0x32, 0x4d, 0x89, 0x4c, 0xd0, 0x4b, 0x18, 0x4b, 0x50, 0x4a, 0x89, 0x49, 0xbe, 0x48, 0xd9, 0x47, 0x01, 0x47, 0x15, 0x46, 0x2c, 0x45, 0x33, 0x44, 0x36, 0x43, 0x2c, 0x42, 0x24, 0x41, 0x0e, 0x40, 0xf0, 0x3e, 0xd0, 0x3d, 0xa0, 0x3c, 0x6b, 0x3b, 0x2b, 0x3a, 0xe7, 0x38, 0x9b, 0x37, 0x44, 0x36, 0xea, 0x34, 0x88, 0x33, 0x19, 0x32, 0xa3, 0x30, 0x2d, 0x2f, 0xa9, 0x2d, 0x24, 0x2c, 0x95, 0x2a, 0x03, 0x29, 0x6e, 0x27, 0xd1, 0x25, 0x33, 0x24, 0x91, 0x22, 0xed, 0x20, 0x45, 0x1f, 0x9d, 0x1d, 0xef, 0x1b, 0x45, 0x1a, 0x98, 0x18, 0xe8, 0x16, 0x39, 0x15, 0x88, 0x13, 0xd4, 0x11, 0x1f, 0x10, 0x6c, 0x0e, 0xb8, 0x0c, 0x04, 0x0b, 0x50, 0x09, 0x9f, 0x07, 0xe7, 0x05, 0x3a, 0x04, 0x87, 0x02, 0xd4, 0x00, 0x27, 0xff, 0x79, 0xfd, 0xc9, 0xfb, 0x16, 0xfa, 0x6c, 0xf8, 0xbb, 0xf6, 0x10, 0xf5, 0x60, 0xf3, 0xb6, 0xf1, 0x0b, 0xf0, 0x64, 0xee, 0xc0, 0xec, 0x18, 0xeb, 0x77, 0xe9, 0xd4, 0xe7, 0x38, 0xe6, 0x9f, 0xe4, 0x0a, 0xe3, 0x7a, 0xe1, 0xeb, 0xdf, 0x62, 0xde, 0xdd, 0xdc, 0x61, 0xdb, 0xe5, 0xd9, 0x70, 0xd8, 0xfd, 0xd6, 0x8c, 0xd5, 0x21, 0xd4, 0xbc, 0xd2, 0x5b, 0xd1, 0xfc, 0xcf, 0xa2, 0xce, 0x55, 0xcd, 0x04, 0xcc, 0xb6, 0xca, 0x75, 0xc9, 0x39, 0xc8, 0xff, 0xc6, 0xd2, 0xc5, 0xa9, 0xc4, 0x88, 0xc3, 0x6f, 0xc2, 0x5e, 0xc1, 0x5a, 0xc0, 0x5d, 0xbf, 0x69, 0xbe, 0x7c, 0xbd, 0x96, 0xbc, 0xbd, 0xbb, 0xf0, 0xba, 0x27, 0xba, 0x6e, 0xb9, 0xbc, 0xb8, 0x11, 0xb8, 0x78, 0xb7, 0xe6, 0xb6, 0x5e, 0xb6, 0xdc, 0xb5, 0x69, 0xb5, 0x01, 0xb5, 0x9b, 0xb4, 0x47, 0xb4, 0x01, 0xb4, 0xbb, 0xb3, 0x8d, 0xb3, 0x5a, 0xb3, 0x3e, 0xb3, 0x2f, 0xb3, 0x19, 0xb3, 0x1f, 0xb3, 0x23, 0xb3, 0x37, 0xb3, 0x57, 0xb3, 0x79, 0xb3, 0xa6, 0xb3, 0xd6, 0xb3, 0x1d, 0xb4, 0x63, 0xb4, 0xb4, 0xb4, 0x0b, 0xb5, 0x6b, 0xb5, 0xd7, 0xb5, 0x45, 0xb6, 0xbf, 0xb6, 0x40, 0xb7, 0xc6, 0xb7, 0x50, 0xb8, 0xe9, 0xb8, 0x82, 0xb9, 0x27, 0xba, 0xcf, 0xba, 0x82, 0xbb, 0x3b, 0xbc, 0xf7, 0xbc, 0xbd, 0xbd, 0x83, 0xbe, 0x54, 0xbf, 0x28, 0xc0, 0x01, 0xc1, 0xe0, 0xc1, 0xc2, 0xc2, 0xa7, 0xc3, 0x94, 0xc4, 0x7f, 0xc5, 0x6d, 0xc6, 0x61, 0xc7, 0x58, 0xc8, 0x53, 0xc9, 0x4e, 0xca, 0x50, 0xcb, 0x54, 0xcc, 0x58, 0xcd, 0x61, 0xce, 0x6d, 0xcf, 0x7f, 0xd0, 0x93, 0xd1, 0xa6, 0xd2, 0xc1, 0xd3, 0xde, 0xd4, 0xfe, 0xd5, 0x21, 0xd7, 0x47, 0xd8, 0x6f, 0xd9, 0x9d, 0xda, 0xca, 0xdb, 0xfb, 0xdc, 0x32, 0xde, 0x63, 0xdf, 0x9c, 0xe0, 0xd3, 0xe1, 0x0a, 0xe3, 0x46, 0xe4, 0x82, 0xe5, 0xbe, 0xe6, 0x01, 0xe8, 0x41, 0xe9, 0x88, 0xea, 0xd0, 0xeb, 0x1a, 0xed, 0x66, 0xee, 0xb4, 0xef, 0x09, 0xf1, 0x5a, 0xf2, 0xb3, 0xf3, 0x0c, 0xf5, 0x6a, 0xf6, 0xc8, 0xf7, 0x2d, 0xf9, 0x8e, 0xfa, 0xf5, 0xfb, 0x5f, 0xfd, 0xc6, 0xfe, 0x37, 0x00, 0xa6, 0x01, 0x19, 0x03, 0x92, 0x04, 0x08, 0x06, 0x88, 0x07, 0x05, 0x09, 0x82, 0x0a, 0x06, 0x0c, 0x88, 0x0d, 0x08, 0x0f, 0x8e, 0x10, 0x0e, 0x12, 0x90, 0x13, 0x10, 0x15, 0x8c, 0x16, 0x0b, 0x18, 0x85, 0x19, 0xfd, 0x1a, 0x79, 0x1c, 0xeb, 0x1d, 0x5e, 0x1f, 0xcc, 0x20, 0x3d, 0x22, 0xa4, 0x23, 0x0d, 0x25, 0x72, 0x26, 0xd2, 0x27, 0x2d, 0x29, 0x83, 0x2a, 0xd9, 0x2b, 0x23, 0x2d, 0x69, 0x2e, 0xad, 0x2f, 0xec, 0x30, 0x24, 0x32, 0x53, 0x33, 0x7f, 0x34, 0xa2, 0x35, 0xbd, 0x36, 0xd7, 0x37, 0xe3, 0x38, 0xe9, 0x39, 0xea, 0x3a, 0xe3, 0x3b, 0xd4, 0x3c, 0xbf, 0x3d, 0x9c, 0x3e, 0x78, 0x3f, 0x3f, 0x40, 0x04, 0x41, 0xbf, 0x41, 0x6b, 0x42, 0x11, 0x43, 0xa6, 0x43, 0x33, 0x44, 0xb3, 0x44, 0x2b, 0x45, 0x9d, 0x45, 0xfa, 0x45, 0x57, 0x46, 0x9c, 0x46, 0xde, 0x46, 0x1d, 0x47, 0x41, 0x47, 0x63, 0x47, 0x7d, 0x47, 0x8b, 0x47, 0x89, 0x47, 0x8b, 0x47, 0x7d, 0x47, 0x62, 0x47, 0x46, 0x47, 0x1d, 0x47, 0xee, 0x46, 0xb4, 0x46, 0x80, 0x46, 0x34, 0x46, 0xe9, 0x45, 0xa3, 0x45, 0x48, 0x45, 0xed, 0x44, 0x8b, 0x44, 0x2a, 0x44, 0xbb, 0x43, 0x4d, 0x43, 0xd3, 0x42, 0x58, 0x42, 0xd6, 0x41, 0x4a, 0x41, 0xc0, 0x40, 0x28, 0x40, 0x8e, 0x3f, 0xf1, 0x3e, 0x45, 0x3e, 0x9b, 0x3d, 0xe8, 0x3c, 0x2c, 0x3c, 0x6c, 0x3b, 0xa8, 0x3a, 0xd8, 0x39, 0x02, 0x39, 0x29, 0x38, 0x45, 0x37, 0x5c, 0x36, 0x6c, 0x35, 0x76, 0x34, 0x7a, 0x33, 0x75, 0x32, 0x6c, 0x31, 0x5f, 0x30, 0x47, 0x2f, 0x32, 0x2e, 0x12, 0x2d, 0xee, 0x2b, 0xc7, 0x2a, 0x97, 0x29, 0x69, 0x28, 0x32, 0x27, 0xfa, 0x25, 0xbf, 0x24, 0x7e, 0x23, 0x3d, 0x22, 0xf4, 0x20, 0xa6, 0x1f, 0x5c, 0x1e, 0x0c, 0x1d, 0xba, 0x1b, 0x63, 0x1a, 0x0e, 0x19, 0xb3, 0x17, 0x59, 0x16, 0xf6, 0x14, 0x94, 0x13, 0x2f, 0x12, 0xc6, 0x10, 0x5d, 0x0f, 0xea, 0x0d, 0x77, 0x0c, 0xff, 0x0a, 0x88, 0x09, 0x0f, 0x08, 0x92, 0x06, 0x14, 0x05, 0x93, 0x03, 0x11, 0x02, 0x91, 0x00, 0x11, 0xff, 0x8f, 0xfd, 0x0d, 0xfc, 0x8a, 0xfa, 0x0a, 0xf9, 0x8a, 0xf7, 0x09, 0xf6, 0x8a, 0xf4, 0x11, 0xf3, 0x94, 0xf1, 0x1c, 0xf0, 0xaa, 0xee, 0x34, 0xed, 0xc3, 0xeb, 0x58, 0xea, 0xef, 0xe8, 0x88, 0xe7, 0x26, 0xe6, 0xc8, 0xe4, 0x70, 0xe3, 0x1d, 0xe2, 0xca, 0xe0, 0x80, 0xdf, 0x38, 0xde, 0xf4, 0xdc, 0xb7, 0xdb, 0x7e, 0xda, 0x49, 0xd9, 0x15, 0xd8, 0xeb, 0xd6, 0xc7, 0xd5, 0xa2, 0xd4, 0x8b, 0xd3, 0x74, 0xd2, 0x62, 0xd1, 0x5b, 0xd0, 0x50, 0xcf, 0x4e, 0xce, 0x4f, 0xcd, 0x5d, 0xcc, 0x68, 0xcb, 0x7a, 0xca, 0x8f, 0xc9, 0xb2, 0xc8, 0xd7, 0xc7, 0x01, 0xc7, 0x33, 0xc6, 0x68, 0xc5, 0xa9, 0xc4, 0xeb, 0xc3, 0x3c, 0xc3, 0x8a, 0xc2, 0xe5, 0xc1, 0x48, 0xc1, 0xad, 0xc0, 0x20, 0xc0, 0x97, 0xbf, 0x18, 0xbf, 0xa0, 0xbe, 0x35, 0xbe, 0xcc, 0xbd, 0x75, 0xbd, 0x1d, 0xbd, 0xd3, 0xbc, 0x8e, 0xbc, 0x55, 0xbc, 0x1f, 0xbc, 0xf9, 0xbb, 0xce, 0xbb, 0xb6, 0xbb, 0xa7, 0xbb, 0x98, 0xbb, 0x97, 0xbb, 0x9a, 0xbb, 0xa8, 0xbb, 0xb6, 0xbb, 0xcb, 0xbb, 0xe9, 0xbb, 0x0a, 0xbc, 0x35, 0xbc, 0x65, 0xbc, 0x96, 0xbc, 0xd2, 0xbc, 0x12, 0xbd, 0x5c, 0xbd, 0xac, 0xbd, 0x00, 0xbe, 0x59, 0xbe, 0xb9, 0xbe, 0x22, 0xbf, 0x8b, 0xbf, 0x01, 0xc0, 0x78, 0xc0, 0xf8, 0xc0, 0x81, 0xc1, 0x0c, 0xc2, 0xa2, 0xc2, 0x3c, 0xc3, 0xe1, 0xc3, 0x87, 0xc4, 0x37, 0xc5, 0xec, 0xc5, 0xa4, 0xc6, 0x69, 0xc7, 0x29, 0xc8, 0xfc, 0xc8, 0xcb, 0xc9, 0xa2, 0xca, 0x81, 0xcb, 0x65, 0xcc, 0x4b, 0xcd, 0x36, 0xce, 0x2c, 0xcf, 0x21, 0xd0, 0x23, 0xd1, 0x29, 0xd2, 0x37, 0xd3, 0x4a, 0xd4, 0x62, 0xd5, 0x82, 0xd6, 0xaa, 0xd7, 0xd8, 0xd8, 0x09, 0xda, 0x41, 0xdb, 0x7d, 0xdc, 0xbe, 0xdd, 0x04, 0xdf, 0x51, 0xe0, 0x9f, 0xe1, 0xf3, 0xe2, 0x47, 0xe4, 0xa2, 0xe5, 0x01, 0xe7, 0x61, 0xe8, 0xc5, 0xe9, 0x27, 0xeb, 0x8e, 0xec, 0xf4, 0xed, 0x5e, 0xef, 0xc9, 0xf0, 0x36, 0xf2, 0xa4, 0xf3, 0x12, 0xf5, 0x83, 0xf6, 0xf4, 0xf7, 0x6a, 0xf9, 0xe0, 0xfa, 0x55, 0xfc, 0xcb, 0xfd, 0x47, 0xff, 0xbb, 0x00, 0x37, 0x02, 0xaf, 0x03, 0x27, 0x05, 0x9e, 0x06, 0x0f, 0x08, 0x7f, 0x09, 0xec, 0x0a, 0x59, 0x0c, 0xbf, 0x0d, 0x20, 0x0f, 0x82, 0x10, 0xe0, 0x11, 0x3d, 0x13, 0x92, 0x14, 0xe9, 0x15, 0x3a, 0x17, 0x82, 0x18, 0xcd, 0x19, 0x0f, 0x1b, 0x4d, 0x1c, 0x8a, 0x1d, 0xbf, 0x1e, 0xee, 0x1f, 0x1a, 0x21, 0x3e, 0x22, 0x5e, 0x23, 0x78, 0x24, 0x8d, 0x25, 0x99, 0x26, 0xa1, 0x27, 0xa3, 0x28, 0xa2, 0x29, 0x99, 0x2a, 0x87, 0x2b, 0x79, 0x2c, 0x5c, 0x2d, 0x40, 0x2e, 0x1b, 0x2f, 0xf6, 0x2f, 0xcb, 0x30, 0x9e, 0x31, 0x69, 0x32, 0x35, 0x33, 0xf8, 0x33, 0xb8, 0x34, 0x72, 0x35, 0x26, 0x36, 0xd8, 0x36, 0x81, 0x37, 0x24, 0x38, 0xc0, 0x38, 0x56, 0x39, 0xe2, 0x39, 0x70, 0x3a, 0xee, 0x3a, 0x69, 0x3b, 0xde, 0x3b, 0x49, 0x3c, 0xb1, 0x3c, 0x13, 0x3d, 0x6c, 0x3d, 0xbc, 0x3d, 0x0b, 0x3e, 0x4b, 0x3e, 0x83, 0x3e, 0xb8, 0x3e, 0xe4, 0x3e, 0x0a, 0x3f, 0x22, 0x3f, 0x38, 0x3f, 0x40, 0x3f, 0x46, 0x3f, 0x44, 0x3f, 0x39, 0x3f, 0x28, 0x3f, 0x11, 0x3f, 0xed, 0x3e, 0xcb, 0x3e, 0x9c, 0x3e, 0x63, 0x3e, 0x31, 0x3e, 0xeb, 0x3d, 0xa8, 0x3d, 0x5e, 0x3d, 0x09, 0x3d, 0xb7, 0x3c, 0x5a, 0x3c, 0xfc, 0x3b, 0x97, 0x3b, 0x2a, 0x3b, 0xbe, 0x3a, 0x4b, 0x3a, 0xd5, 0x39, 0x56, 0x39, 0xd5, 0x38, 0x4a, 0x38, 0xbc, 0x37, 0x2d, 0x37, 0x90, 0x36, 0xf4, 0x35, 0x4e, 0x35, 0xa3, 0x34, 0xf3, 0x33, 0x41, 0x33, 0x84, 0x32, 0xc6, 0x31, 0x07, 0x31, 0x3e, 0x30, 0x76, 0x2f, 0x9f, 0x2e, 0xca, 0x2d, 0xf1, 0x2c, 0x13, 0x2c, 0x2d, 0x2b, 0x46, 0x2a, 0x57, 0x29, 0x64, 0x28, 0x6b, 0x27, 0x72, 0x26, 0x6c, 0x25, 0x62, 0x24, 0x58, 0x23, 0x3f, 0x22, 0x2b, 0x21, 0x08, 0x20, 0xe9, 0x1e, 0xba, 0x1d, 0x8f, 0x1c, 0x5c, 0x1b, 0x26, 0x1a, 0xef, 0x18, 0xb0, 0x17, 0x72, 0x16, 0x2f, 0x15, 0xe9, 0x13, 0xa4, 0x12, 0x5d, 0x11, 0x10, 0x10, 0xc7, 0x0e, 0x76, 0x0d, 0x28, 0x0c, 0xdc, 0x0a, 0x8d, 0x09, 0x3c, 0x08, 0xec, 0x06, 0x9f, 0x05, 0x52, 0x04, 0x05, 0x03, 0xb5, 0x01, 0x6d, 0x00, 0x21, 0xff, 0xd7, 0xfd, 0x8d, 0xfc, 0x42, 0xfb, 0xf9, 0xf9, 0xb4, 0xf8, 0x6c, 0xf7, 0x29, 0xf6, 0xe6, 0xf4, 0xa4, 0xf3, 0x67, 0xf2, 0x2a, 0xf1, 0xf2, 0xef, 0xbc, 0xee, 0x8a, 0xed, 0x5b, 0xec, 0x2b, 0xeb, 0xff, 0xe9, 0xd3, 0xe8, 0xaa, 0xe7, 0x86, 0xe6, 0x5e, 0xe5, 0x3c, 0xe4, 0x1b, 0xe3, 0x01, 0xe2, 0xeb, 0xe0, 0xd6, 0xdf, 0xc8, 0xde, 0xc2, 0xdd, 0xc1, 0xdc, 0xbf, 0xdb, 0xcb, 0xda, 0xd7, 0xd9, 0xe9, 0xd8, 0x02, 0xd8, 0x1e, 0xd7, 0x41, 0xd6, 0x62, 0xd5, 0x8c, 0xd4, 0xb9, 0xd3, 0xeb, 0xd2, 0x23, 0xd2, 0x5d, 0xd1, 0x9e, 0xd0, 0xe3, 0xcf, 0x2c, 0xcf, 0x7e, 0xce, 0xcf, 0xcd, 0x2d, 0xcd, 0x88, 0xcc, 0xec, 0xcb, 0x55, 0xcb, 0xc3, 0xca, 0x40, 0xca, 0xb6, 0xc9, 0x3b, 0xc9, 0xc3, 0xc8, 0x55, 0xc8, 0xee, 0xc7, 0x90, 0xc7, 0x37, 0xc7, 0xe9, 0xc6, 0xa1, 0xc6, 0x62, 0xc6, 0x2b, 0xc6, 0xfa, 0xc5, 0xce, 0xc5, 0xab, 0xc5, 0x8c, 0xc5, 0x6f, 0xc5, 0x60, 0xc5, 0x4e, 0xc5, 0x44, 0xc5, 0x3f, 0xc5, 0x3d, 0xc5, 0x41, 0xc5, 0x4b, 0xc5, 0x5a, 0xc5, 0x6c, 0xc5, 0x8c, 0xc5, 0xab, 0xc5, 0xd5, 0xc5, 0x05, 0xc6, 0x38, 0xc6, 0x74, 0xc6, 0xb4, 0xc6, 0xf8, 0xc6, 0x41, 0xc7, 0x90, 0xc7, 0xe2, 0xc7, 0x3c, 0xc8, 0x93, 0xc8, 0xf6, 0xc8, 0x5a, 0xc9, 0xc2, 0xc9, 0x2b, 0xca, 0x98, 0xca, 0x0f, 0xcb, 0x83, 0xcb, 0x01, 0xcc, 0x81, 0xcc, 0x06, 0xcd, 0x92, 0xcd, 0x21, 0xce, 0xb5, 0xce, 0x4c, 0xcf, 0xee, 0xcf, 0x95, 0xd0, 0x44, 0xd1, 0xfd, 0xd1, 0xb7, 0xd2, 0x7c, 0xd3, 0x45, 0xd4, 0x18, 0xd5, 0xe9, 0xd5, 0xc7, 0xd6, 0xa5, 0xd7, 0x88, 0xd8, 0x76, 0xd9, 0x61, 0xda, 0x54, 0xdb, 0x43, 0xdc, 0x42, 0xdd, 0x3f, 0xde, 0x42, 0xdf, 0x4c, 0xe0, 0x55, 0xe1, 0x6b, 0xe2, 0x81, 0xe3, 0x9f, 0xe4, 0xbf, 0xe5, 0xe6, 0xe6, 0x12, 0xe8, 0x42, 0xe9, 0x74, 0xea, 0xb1, 0xeb, 0xee, 0xec, 0x2f, 0xee, 0x72, 0xef, 0xb9, 0xf0, 0x03, 0xf2, 0x4c, 0xf3, 0x9c, 0xf4, 0xea, 0xf5, 0x3c, 0xf7, 0x8d, 0xf8, 0xe1, 0xf9, 0x34, 0xfb, 0x85, 0xfc, 0xd5, 0xfd, 0x26, 0xff, 0x71, 0x00, 0xc1, 0x01, 0x0b, 0x03, 0x56, 0x04, 0x98, 0x05, 0xe3, 0x06, 0x20, 0x08, 0x61, 0x09, 0x9e, 0x0a, 0xd1, 0x0b, 0x07, 0x0d, 0x38, 0x0e, 0x67, 0x0f, 0x94, 0x10, 0xbe, 0x11, 0xe9, 0x12, 0x0c, 0x14, 0x2c, 0x15, 0x4c, 0x16, 0x62, 0x17, 0x78, 0x18, 0x89, 0x19, 0x95, 0x1a, 0x9e, 0x1b, 0x9f, 0x1c, 0x9a, 0x1d, 0x91, 0x1e, 0x84, 0x1f, 0x6e, 0x20, 0x56, 0x21, 0x37, 0x22, 0x12, 0x23, 0xec, 0x23, 0xbc, 0x24, 0x8d, 0x25, 0x54, 0x26, 0x1e, 0x27, 0xdd, 0x27, 0x9f, 0x28, 0x5a, 0x29, 0x11, 0x2a, 0xc8, 0x2a, 0x74, 0x2b, 0x23, 0x2c, 0xc9, 0x2c, 0x6e, 0x2d, 0x11, 0x2e, 0xa8, 0x2e, 0x3f, 0x2f, 0xd2, 0x2f, 0x5c, 0x30, 0xe0, 0x30, 0x5f, 0x31, 0xd7, 0x31, 0x45, 0x32, 0xad, 0x32, 0x15, 0x33, 0x72, 0x33, 0xc4, 0x33, 0x11, 0x34, 0x5c, 0x34, 0x9b, 0x34, 0xd4, 0x34, 0x08, 0x35, 0x36, 0x35, 0x5e, 0x35, 0x7c, 0x35, 0x9a, 0x35, 0xb2, 0x35, 0xc2, 0x35, 0xcc, 0x35, 0xd5, 0x35, 0xd2, 0x35, 0xcc, 0x35, 0xc3, 0x35, 0xb7, 0x35, 0xa1, 0x35, 0x87, 0x35, 0x70, 0x35, 0x51, 0x35, 0x2a, 0x35, 0x00, 0x35, 0xd9, 0x34, 0xa5, 0x34, 0x74, 0x34, 0x3a, 0x34, 0x00, 0x34, 0xbd, 0x33, 0x78, 0x33, 0x32, 0x33, 0xe0, 0x32, 0x8c, 0x32, 0x3a, 0x32, 0xe1, 0x31, 0x81, 0x31, 0x1c, 0x31, 0xb6, 0x30, 0x4c, 0x30, 0xde, 0x2f, 0x68, 0x2f, 0xee, 0x2e, 0x6c, 0x2e, 0xe9, 0x2d, 0x5f, 0x2d, 0xce, 0x2c, 0x3c, 0x2c, 0x9b, 0x2b, 0xfb, 0x2a, 0x50, 0x2a, 0xa5, 0x29, 0xf1, 0x28, 0x38, 0x28, 0x78, 0x27, 0xb8, 0x26, 0xeb, 0x25, 0x21, 0x25, 0x50, 0x24, 0x7c, 0x23, 0xa6, 0x22, 0xc8, 0x21, 0xea, 0x20, 0x0c, 0x20, 0x2c, 0x1f, 0x4b, 0x1e, 0x63, 0x1d, 0x7d, 0x1c, 0x98, 0x1b, 0xa8, 0x1a, 0xc1, 0x19, 0xd1, 0x18, 0xe6, 0x17, 0xf1, 0x16, 0xff, 0x15, 0x0b, 0x15, 0x0f, 0x14, 0x16, 0x13, 0x14, 0x12, 0x15, 0x11, 0x10, 0x10, 0x0e, 0x0f, 0x06, 0x0e, 0xfa, 0x0c, 0xef, 0x0b, 0xe2, 0x0a, 0xd5, 0x09, 0xc4, 0x08, 0xb3, 0x07, 0xa2, 0x06, 0x8f, 0x05, 0x7b, 0x04, 0x65, 0x03, 0x51, 0x02, 0x36, 0x01, 0x22, 0x00, 0x08, 0xff, 0xef, 0xfd, 0xd5, 0xfc, 0xb9, 0xfb, 0xa1, 0xfa, 0x84, 0xf9, 0x6c, 0xf8, 0x51, 0xf7, 0x36, 0xf6, 0x1f, 0xf5, 0xff, 0xf3, 0xe9, 0xf2, 0xd0, 0xf1, 0xb1, 0xf0, 0x9a, 0xef, 0x7f, 0xee, 0x64, 0xed, 0x44, 0xec, 0x2e, 0xeb, 0x14, 0xea, 0xfa, 0xe8, 0xe0, 0xe7, 0xc5, 0xe6, 0xb2, 0xe5, 0x9c, 0xe4, 0x8b, 0xe3, 0x7d, 0xe2, 0x73, 0xe1, 0x74, 0xe0, 0x74, 0xdf, 0x7b, 0xde, 0x8a, 0xdd, 0x9d, 0xdc, 0xb7, 0xdb, 0xdb, 0xda, 0x01, 0xda, 0x2d, 0xd9, 0x60, 0xd8, 0x96, 0xd7, 0xd7, 0xd6, 0x17, 0xd6, 0x61, 0xd5, 0xb0, 0xd4, 0x09, 0xd4, 0x64, 0xd3, 0xc8, 0xd2, 0x36, 0xd2, 0xa7, 0xd1, 0x23, 0xd1, 0xa5, 0xd0, 0x2d, 0xd0, 0xc2, 0xcf, 0x59, 0xcf, 0xf9, 0xce, 0x9d, 0xce, 0x47, 0xce, 0xf7, 0xcd, 0xab, 0xcd, 0x69, 0xcd, 0x24, 0xcd, 0xec, 0xcc, 0xb4, 0xcc, 0x85, 0xcc, 0x5a, 0xcc, 0x3b, 0xcc, 0x1a, 0xcc, 0x02, 0xcc, 0xf7, 0xcb, 0xea, 0xcb, 0xed, 0xcb, 0xef, 0xcb, 0xfc, 0xcb, 0x0a, 0xcc, 0x20, 0xcc, 0x43, 0xcc, 0x5f, 0xcc, 0x85, 0xcc, 0xaf, 0xcc, 0xe1, 0xcc, 0x14, 0xcd, 0x4c, 0xcd, 0x88, 0xcd, 0xc7, 0xcd, 0x0b, 0xce, 0x54, 0xce, 0x9f, 0xce, 0xec, 0xce, 0x44, 0xcf, 0x9b, 0xcf, 0xfb, 0xcf, 0x5c, 0xd0, 0xc1, 0xd0, 0x2f, 0xd1, 0x9d, 0xd1, 0x14, 0xd2, 0x89, 0xd2, 0x04, 0xd3, 0x85, 0xd3, 0x08, 0xd4, 0x8c, 0xd4, 0x18, 0xd5, 0xa7, 0xd5, 0x37, 0xd6, 0xcd, 0xd6, 0x6c, 0xd7, 0x0a, 0xd8, 0xb0, 0xd8, 0x5c, 0xd9, 0x09, 0xda, 0xc1, 0xda, 0x74, 0xdb, 0x30, 0xdc, 0xeb, 0xdc, 0xb2, 0xdd, 0x7a, 0xde, 0x3e, 0xdf, 0x0d, 0xe0, 0xdf, 0xe0, 0xb5, 0xe1, 0x8c, 0xe2, 0x65, 0xe3, 0x47, 0xe4, 0x25, 0xe5, 0x11, 0xe6, 0xfd, 0xe6, 0xe8, 0xe7, 0xdd, 0xe8, 0xd2, 0xe9, 0xcb, 0xea, 0xcd, 0xeb, 0xcf, 0xec, 0xd1, 0xed, 0xdf, 0xee, 0xea, 0xef, 0xfa, 0xf0, 0x09, 0xf2, 0x20, 0xf3, 0x31, 0xf4, 0x4b, 0xf5, 0x64, 0xf6, 0x7c, 0xf7, 0x95, 0xf8, 0xad, 0xf9, 0xca, 0xfa, 0xe4, 0xfb, 0xff, 0xfc, 0x16, 0xfe, 0x32, 0xff, 0x47, 0x00, 0x5d, 0x01, 0x79, 0x02, 0x89, 0x03, 0xa3, 0x04, 0xb2, 0x05, 0xc3, 0x06, 0xd0, 0x07, 0xde, 0x08, 0xe7, 0x09, 0xef, 0x0a, 0xf2, 0x0b, 0xf6, 0x0c, 0xf9, 0x0d, 0xff, 0x0e, 0x00, 0x10, 0xff, 0x10, 0x02, 0x12, 0x00, 0x13, 0x00, 0x14, 0xff, 0x14, 0xfb, 0x15, 0xf4, 0x16, 0xe8, 0x17, 0xde, 0x18, 0xcf, 0x19, 0xbd, 0x1a, 0xa4, 0x1b, 0x84, 0x1c, 0x6d, 0x1d, 0x46, 0x1e, 0x21, 0x1f, 0xf6, 0x1f, 0xc6, 0x20, 0x93, 0x21, 0x59, 0x22, 0x1e, 0x23, 0xdc, 0x23, 0x96, 0x24, 0x49, 0x25, 0xf8, 0x25, 0x9f, 0x26, 0x3f, 0x27, 0xdb, 0x27, 0x70, 0x28, 0xff, 0x28, 0x86, 0x29, 0x05, 0x2a, 0x7e, 0x2a, 0xf3, 0x2a, 0x61, 0x2b, 0xc7, 0x2b, 0x29, 0x2c, 0x84, 0x2c, 0xd8, 0x2c, 0x26, 0x2d, 0x71, 0x2d, 0xb3, 0x2d, 0xec, 0x2d, 0x25, 0x2e, 0x59, 0x2e, 0x88, 0x2e, 0xb3, 0x2e, 0xd9, 0x2e, 0xfb, 0x2e, 0x1c, 0x2f, 0x34, 0x2f, 0x4e, 0x2f, 0x62, 0x2f, 0x73, 0x2f, 0x81, 0x2f, 0x87, 0x2f, 0x8d, 0x2f, 0x90, 0x2f, 0x8a, 0x2f, 0x83, 0x2f, 0x78, 0x2f, 0x66, 0x2f, 0x52, 0x2f, 0x39, 0x2f, 0x1c, 0x2f, 0xfb, 0x2e, 0xd6, 0x2e, 0xb0, 0x2e, 0x84, 0x2e, 0x58, 0x2e, 0x21, 0x2e, 0xec, 0x2d, 0xb4, 0x2d, 0x7a, 0x2d, 0x3c, 0x2d, 0xf9, 0x2c, 0xb5, 0x2c, 0x6b, 0x2c, 0x21, 0x2c, 0xd4, 0x2b, 0x81, 0x2b, 0x27, 0x2b, 0xd1, 0x2a, 0x6e, 0x2a, 0x0e, 0x2a, 0xa4, 0x29, 0x39, 0x29, 0xc4, 0x28, 0x4b, 0x28, 0xcb, 0x27, 0x43, 0x27, 0xbb, 0x26, 0x27, 0x26, 0x8a, 0x25, 0xee, 0x24, 0x46, 0x24, 0x9d, 0x23, 0xeb, 0x22, 0x37, 0x22, 0x7d, 0x21, 0xbe, 0x20, 0xfe, 0x1f, 0x36, 0x1f, 0x71, 0x1e, 0xa4, 0x1d, 0xd9, 0x1c, 0x0b, 0x1c, 0x35, 0x1b, 0x5f, 0x1a, 0x89, 0x19, 0xab, 0x18, 0xd1, 0x17, 0xec, 0x16, 0x04, 0x16, 0x1b, 0x15, 0x2f, 0x14, 0x3b, 0x13, 0x40, 0x12, 0x45, 0x11, 0x45, 0x10, 0x40, 0x0f, 0x38, 0x0e, 0x2c, 0x0d, 0x20, 0x0c, 0x0f, 0x0b, 0xfe, 0x09, 0xe9, 0x08, 0xd3, 0x07, 0xbf, 0x06, 0xaf, 0x05, 0x9a, 0x04, 0x87, 0x03, 0x7b, 0x02, 0x64, 0x01, 0x5b, 0x00, 0x4e, 0xff, 0x45, 0xfe, 0x3b, 0xfd, 0x2f, 0xfc, 0x2d, 0xfb, 0x28, 0xfa, 0x24, 0xf9, 0x28, 0xf8, 0x29, 0xf7, 0x2c, 0xf6, 0x32, 0xf5, 0x3a, 0xf4, 0x49, 0xf3, 0x5a, 0xf2, 0x6c, 0xf1, 0x83, 0xf0, 0x9d, 0xef, 0xbc, 0xee, 0xdb, 0xed, 0xff, 0xec, 0x27, 0xec, 0x4d, 0xeb, 0x7a, 0xea, 0xa8, 0xe9, 0xd3, 0xe8, 0x0d, 0xe8, 0x3f, 0xe7, 0x77, 0xe6, 0xb5, 0xe5, 0xf4, 0xe4, 0x3b, 0xe4, 0x81, 0xe3, 0xd2, 0xe2, 0x1f, 0xe2, 0x77, 0xe1, 0xd1, 0xe0, 0x2d, 0xe0, 0x94, 0xdf, 0xf9, 0xde, 0x61, 0xde, 0xcf, 0xdd, 0x44, 0xdd, 0xb5, 0xdc, 0x2b, 0xdc, 0xa4, 0xdb, 0x22, 0xdb, 0xa1, 0xda, 0x21, 0xda, 0xa5, 0xd9, 0x2a, 0xd9, 0xb3, 0xd8, 0x41, 0xd8, 0xcb, 0xd7, 0x60, 0xd7, 0xf5, 0xd6, 0x8e, 0xd6, 0x2a, 0xd6, 0xca, 0xd5, 0x6e, 0xd5, 0x17, 0xd5, 0xc3, 0xd4, 0x75, 0xd4, 0x24, 0xd4, 0xe2, 0xd3, 0xa0, 0xd3, 0x61, 0xd3, 0x2d, 0xd3, 0xf9, 0xd2, 0xce, 0xd2, 0xa7, 0xd2, 0x86, 0xd2, 0x67, 0xd2, 0x4f, 0xd2, 0x3f, 0xd2, 0x33, 0xd2, 0x28, 0xd2, 0x25, 0xd2, 0x26, 0xd2, 0x2b, 0xd2, 0x38, 0xd2, 0x47, 0xd2, 0x62, 0xd2, 0x7e, 0xd2, 0xa1, 0xd2, 0xc7, 0xd2, 0xf3, 0xd2, 0x24, 0xd3, 0x5e, 0xd3, 0x97, 0xd3, 0xd7, 0xd3, 0x1e, 0xd4, 0x65, 0xd4, 0xb2, 0xd4, 0x07, 0xd5, 0x5c, 0xd5, 0xba, 0xd5, 0x1d, 0xd6, 0x81, 0xd6, 0xeb, 0xd6, 0x60, 0xd7, 0xd3, 0xd7, 0x4d, 0xd8, 0xd0, 0xd8, 0x56, 0xd9, 0xe4, 0xd9, 0x76, 0xda, 0x10, 0xdb, 0xaa, 0xdb, 0x52, 0xdc, 0xf7, 0xdc, 0xa4, 0xdd, 0x59, 0xde, 0x09, 0xdf, 0xc6, 0xdf, 0x83, 0xe0, 0x43, 0xe1, 0x06, 0xe2, 0xce, 0xe2, 0x95, 0xe3, 0x5a, 0xe4, 0x27, 0xe5, 0xf1, 0xe5, 0xbd, 0xe6, 0x8a, 0xe7, 0x54, 0xe8, 0x21, 0xe9, 0xf2, 0xe9, 0xbd, 0xea, 0x88, 0xeb, 0x57, 0xec, 0x22, 0xed, 0xf4, 0xed, 0xc1, 0xee, 0x90, 0xef, 0x61, 0xf0, 0x31, 0xf1, 0x09, 0xf2, 0xd9, 0xf2, 0xb1, 0xf3, 0x88, 0xf4, 0x62, 0xf5, 0x3b, 0xf6, 0x1c, 0xf7, 0xfe, 0xf7, 0xe1, 0xf8, 0xcc, 0xf9, 0xb5, 0xfa, 0xa2, 0xfb, 0x99, 0xfc, 0x8f, 0xfd, 0x85, 0xfe, 0x7e, 0xff, 0x77, 0x00, 0x70, 0x01, 0x6b, 0x02, 0x65, 0x03, 0x5b, 0x04, 0x57, 0x05, 0x4c, 0x06, 0x3f, 0x07, 0x36, 0x08, 0x29, 0x09, 0x18, 0x0a, 0x09, 0x0b, 0xf9, 0x0b, 0xe6, 0x0c, 0xd4, 0x0d, 0xbe, 0x0e, 0xa7, 0x0f, 0x93, 0x10, 0x7e, 0x11, 0x64, 0x12, 0x4d, 0x13, 0x32, 0x14, 0x14, 0x15, 0xfb, 0x15, 0xdc, 0x16, 0xbb, 0x17, 0x9b, 0x18, 0x73, 0x19, 0x4f, 0x1a, 0x26, 0x1b, 0x00, 0x1c, 0xd3, 0x1c, 0xab, 0x1d, 0x7d, 0x1e, 0x4a, 0x1f, 0x18, 0x20, 0xe0, 0x20, 0xa7, 0x21, 0x6c, 0x22, 0x2c, 0x23, 0xe4, 0x23, 0xa0, 0x24, 0x4c, 0x25, 0xfb, 0x25, 0x9a, 0x26, 0x38, 0x27, 0xca, 0x27, 0x56, 0x28, 0xdd, 0x28, 0x5a, 0x29, 0xce, 0x29, 0x3c, 0x2a, 0xa1, 0x2a, 0x01, 0x2b, 0x58, 0x2b, 0xab, 0x2b, 0xf7, 0x2b, 0x37, 0x2c, 0x7b, 0x2c, 0xab, 0x2c, 0xdf, 0x2c, 0x07, 0x2d, 0x2c, 0x2d, 0x49, 0x2d, 0x62, 0x2d, 0x6e, 0x2d, 0x7e, 0x2d, 0x7e, 0x2d, 0x7b, 0x2d, 0x6e, 0x2d, 0x5f, 0x2d, 0x4d, 0x2d, 0x32, 0x2d, 0x15, 0x2d, 0xf1, 0x2c, 0xc6, 0x2c, 0x97, 0x2c, 0x66, 0x2c, 0x2a, 0x2c, 0xf2, 0x2b, 0xb0, 0x2b, 0x66, 0x2b, 0x1d, 0x2b, 0xcd, 0x2a, 0x7a, 0x2a, 0x1d, 0x2a, 0xc0, 0x29, 0x5f, 0x29, 0xf5, 0x28, 0x8b, 0x28, 0x17, 0x28, 0xa1, 0x27, 0x29, 0x27, 0xaa, 0x26, 0x27, 0x26, 0xa0, 0x25, 0x17, 0x25, 0x88, 0x24, 0xf7, 0x23, 0x5f, 0x23, 0xc7, 0x22, 0x2b, 0x22, 0x90, 0x21, 0xed, 0x20, 0x4a, 0x20, 0xa3, 0x1f, 0x00, 0x1f, 0x53, 0x1e, 0xa8, 0x1d, 0xfe, 0x1c, 0x4c, 0x1c, 0x9e, 0x1b, 0xeb, 0x1a, 0x3d, 0x1a, 0x89, 0x19, 0xdb, 0x18, 0x23, 0x18, 0x74, 0x17, 0xc1, 0x16, 0x0d, 0x16, 0x56, 0x15, 0xa5, 0x14, 0xee, 0x13, 0x38, 0x13, 0x7e, 0x12, 0xc5, 0x11, 0x0a, 0x11, 0x4c, 0x10, 0x8f, 0x0f, 0xd1, 0x0e, 0x0f, 0x0e, 0x4f, 0x0d, 0x8c, 0x0c, 0xc7, 0x0b, 0x06, 0x0b, 0x3f, 0x0a, 0x7a, 0x09, 0xb5, 0x08, 0xf0, 0x07, 0x2b, 0x07, 0x67, 0x06, 0xa3, 0x05, 0xdf, 0x04, 0x1f, 0x04, 0x59, 0x03, 0x97, 0x02, 0xd5, 0x01, 0x12, 0x01, 0x4f, 0x00, 0x8d, 0xff, 0xc9, 0xfe, 0x04, 0xfe, 0x3f, 0xfd, 0x7b, 0xfc, 0xb8, 0xfb, 0xf4, 0xfa, 0x31, 0xfa, 0x6e, 0xf9, 0xae, 0xf8, 0xea, 0xf7, 0x2a, 0xf7, 0x6a, 0xf6, 0xa8, 0xf5, 0xe9, 0xf4, 0x24, 0xf4, 0x64, 0xf3, 0xa6, 0xf2, 0xe4, 0xf1, 0x2a, 0xf1, 0x6b, 0xf0, 0xb1, 0xef, 0xf6, 0xee, 0x3e, 0xee, 0x88, 0xed, 0xd4, 0xec, 0x21, 0xec, 0x73, 0xeb, 0xc1, 0xea, 0x14, 0xea, 0x68, 0xe9, 0xc1, 0xe8, 0x1c, 0xe8, 0x77, 0xe7, 0xd4, 0xe6, 0x32, 0xe6, 0x94, 0xe5, 0xfb, 0xe4, 0x61, 0xe4, 0xcc, 0xe3, 0x38, 0xe3, 0xa8, 0xe2, 0x1c, 0xe2, 0x8f, 0xe1, 0x0c, 0xe1, 0x86, 0xe0, 0x0c, 0xe0, 0x8e, 0xdf, 0x19, 0xdf, 0xa9, 0xde, 0x39, 0xde, 0xcf, 0xdd, 0x69, 0xdd, 0x0c, 0xdd, 0xae, 0xdc, 0x58, 0xdc, 0x06, 0xdc, 0xb4, 0xdb, 0x6e, 0xdb, 0x23, 0xdb, 0xe1, 0xda, 0xa2, 0xda, 0x69, 0xda, 0x33, 0xda, 0x01, 0xda, 0xd7, 0xd9, 0xae, 0xd9, 0x8e, 0xd9, 0x6f, 0xd9, 0x5b, 0xd9, 0x45, 0xd9, 0x38, 0xd9, 0x30, 0xd9, 0x2a, 0xd9, 0x28, 0xd9, 0x2e, 0xd9, 0x35, 0xd9, 0x41, 0xd9, 0x4e, 0xd9, 0x5f, 0xd9, 0x73, 0xd9, 0x87, 0xd9, 0xa0, 0xd9, 0xbb, 0xd9, 0xd9, 0xd9, 0xf5, 0xd9, 0x1b, 0xda, 0x3f, 0xda, 0x66, 0xda, 0x94, 0xda, 0xc1, 0xda, 0xef, 0xda, 0x25, 0xdb, 0x5d, 0xdb, 0x96, 0xdb, 0xd2, 0xdb, 0x14, 0xdc, 0x58, 0xdc, 0xa1, 0xdc, 0xeb, 0xdc, 0x3c, 0xdd, 0x94, 0xdd, 0xea, 0xdd, 0x4a, 0xde, 0xaf, 0xde, 0x19, 0xdf, 0x88, 0xdf, 0xfa, 0xdf, 0x71, 0xe0, 0xed, 0xe0, 0x6c, 0xe1, 0xed, 0xe1, 0x73, 0xe2, 0xfd, 0xe2, 0x8a, 0xe3, 0x1a, 0xe4, 0xad, 0xe4, 0x42, 0xe5, 0xdd, 0xe5, 0x72, 0xe6, 0x14, 0xe7, 0xb5, 0xe7, 0x57, 0xe8, 0x00, 0xe9, 0xa5, 0xe9, 0x51, 0xea, 0xff, 0xea, 0xad, 0xeb, 0x5a, 0xec, 0x0f, 0xed, 0xc4, 0xed, 0x73, 0xee, 0x2e, 0xef, 0xe7, 0xef, 0x9f, 0xf0, 0x5b, 0xf1, 0x19, 0xf2, 0xd9, 0xf2, 0x9a, 0xf3, 0x5e, 0xf4, 0x24, 0xf5, 0xec, 0xf5, 0xb6, 0xf6, 0x82, 0xf7, 0x49, 0xf8, 0x19, 0xf9, 0xe2, 0xf9, 0xb0, 0xfa, 0x78, 0xfb, 0x43, 0xfc, 0x0f, 0xfd, 0xd3, 0xfd, 0xa0, 0xfe, 0x65, 0xff, 0x2b, 0x00, 0xf2, 0x00, 0xb7, 0x01, 0x7b, 0x02, 0x3d, 0x03, 0xff, 0x03, 0xc3, 0x04, 0x87, 0x05, 0x4a, 0x06, 0x0b, 0x07, 0xca, 0x07, 0x8a, 0x08, 0x4a, 0x09, 0x0a, 0x0a, 0xc7, 0x0a, 0x87, 0x0b, 0x44, 0x0c, 0x00, 0x0d, 0xbf, 0x0d, 0x76, 0x0e, 0x37, 0x0f, 0xed, 0x0f, 0xa9, 0x10, 0x60, 0x11, 0x14, 0x12, 0xc9, 0x12, 0x7c, 0x13, 0x2b, 0x14, 0xd8, 0x14, 0x7f, 0x15, 0x24, 0x16, 0xcb, 0x16, 0x6a, 0x17, 0x0b, 0x18, 0xa6, 0x18, 0x3d, 0x19, 0xcd, 0x19, 0x5a, 0x1a, 0xe3, 0x1a, 0x64, 0x1b, 0xdf, 0x1b, 0x5c, 0x1c, 0xd0, 0x1c, 0x3c, 0x1d, 0xac, 0x1d, 0x14, 0x1e, 0x78, 0x1e, 0xdb, 0x1e, 0x33, 0x1f, 0x98, 0x1f, 0xeb, 0x1f, 0x41, 0x20, 0x96, 0x20, 0xe7, 0x20, 0x36, 0x21, 0x7f, 0x21, 0xce, 0x21, 0x11, 0x22, 0x5b, 0x22, 0x9d, 0x22, 0xdf, 0x22, 0x1c, 0x23, 0x5b, 0x23, 0x91, 0x23, 0xc8, 0x23, 0xfc, 0x23, 0x2b, 0x24, 0x5c, 0x24, 0x83, 0x24, 0xad, 0x24, 0xcb, 0x24, 0xf2, 0x24, 0x10, 0x25, 0x24, 0x25, 0x3e, 0x25, 0x50, 0x25, 0x64, 0x25, 0x70, 0x25, 0x79, 0x25, 0x81, 0x25, 0x81, 0x25, 0x7f, 0x25, 0x7a, 0x25, 0x6c, 0x25, 0x5e, 0x25, 0x49, 0x25, 0x2d, 0x25, 0x0d, 0x25, 0xeb, 0x24, 0xc4, 0x24, 0x96, 0x24, 0x65, 0x24, 0x2e, 0x24, 0xf6, 0x23, 0xb4, 0x23, 0x70, 0x23, 0x27, 0x23, 0xdf, 0x22, 0x91, 0x22, 0x3d, 0x22, 0xe3, 0x21, 0x89, 0x21, 0x28, 0x21, 0xc3, 0x20, 0x5f, 0x20, 0xef, 0x1f, 0x81, 0x1f, 0x0d, 0x1f, 0x95, 0x1e, 0x1d, 0x1e, 0x9f, 0x1d, 0x1f, 0x1d, 0x9a, 0x1c, 0x15, 0x1c, 0x89, 0x1b, 0xfa, 0x1a, 0x69, 0x1a, 0xd2, 0x19, 0x3b, 0x19, 0x9e, 0x18, 0xff, 0x17, 0x5b, 0x17, 0xbb, 0x16, 0x10, 0x16, 0x6b, 0x15, 0xc2, 0x14, 0x15, 0x14, 0x6a, 0x13, 0xba, 0x12, 0x0c, 0x12, 0x5e, 0x11, 0xaf, 0x10, 0xfc, 0x0f, 0x47, 0x0f, 0x97, 0x0e, 0xe2, 0x0d, 0x30, 0x0d, 0x7a, 0x0c, 0xc6, 0x0b, 0x0f, 0x0b, 0x55, 0x0a, 0x9e, 0x09, 0xe1, 0x08, 0x27, 0x08, 0x6b, 0x07, 0xac, 0x06, 0xef, 0x05, 0x30, 0x05, 0x70, 0x04, 0xaf, 0x03, 0xed, 0x02, 0x2b, 0x02, 0x63, 0x01, 0xa0, 0x00, 0xe0, 0xff, 0x1a, 0xff, 0x57, 0xfe, 0x8f, 0xfd, 0xd1, 0xfc, 0x0b, 0xfc, 0x45, 0xfb, 0x85, 0xfa, 0xc1, 0xf9, 0x01, 0xf9, 0x41, 0xf8, 0x82, 0xf7, 0xc0, 0xf6, 0x04, 0xf6, 0x42, 0xf5, 0x88, 0xf4, 0xc9, 0xf3, 0x09, 0xf3, 0x4f, 0xf2, 0x8f, 0xf1, 0xd3, 0xf0, 0x19, 0xf0, 0x62, 0xef, 0xac, 0xee, 0xf7, 0xed, 0x46, 0xed, 0x98, 0xec, 0xee, 0xeb, 0x42, 0xeb, 0x9f, 0xea, 0x00, 0xea, 0x61, 0xe9, 0xc7, 0xe8, 0x31, 0xe8, 0x9f, 0xe7, 0x0e, 0xe7, 0x81, 0xe6, 0xf7, 0xe5, 0x71, 0xe5, 0xea, 0xe4, 0x68, 0xe4, 0xe7, 0xe3, 0x6c, 0xe3, 0xee, 0xe2, 0x75, 0xe2, 0x01, 0xe2, 0x8d, 0xe1, 0x23, 0xe1, 0xba, 0xe0, 0x53, 0xe0, 0xf2, 0xdf, 0x98, 0xdf, 0x41, 0xdf, 0xeb, 0xde, 0xa1, 0xde, 0x56, 0xde, 0x15, 0xde, 0xd3, 0xdd, 0x99, 0xdd, 0x60, 0xdd, 0x2c, 0xdd, 0xfd, 0xdc, 0xd3, 0xdc, 0xa9, 0xdc, 0x88, 0xdc, 0x6d, 0xdc, 0x56, 0xdc, 0x46, 0xdc, 0x3d, 0xdc, 0x35, 0xdc, 0x35, 0xdc, 0x3a, 0xdc, 0x3e, 0xdc, 0x48, 0xdc, 0x5e, 0xdc, 0x69, 0xdc, 0x80, 0xdc, 0x98, 0xdc, 0xb5, 0xdc, 0xd0, 0xdc, 0xee, 0xdc, 0x15, 0xdd, 0x34, 0xdd, 0x5b, 0xdd, 0x83, 0xdd, 0xad, 0xdd, 0xde, 0xdd, 0x0b, 0xde, 0x3f, 0xde, 0x75, 0xde, 0xad, 0xde, 0xec, 0xde, 0x2d, 0xdf, 0x73, 0xdf, 0xbc, 0xdf, 0x0a, 0xe0, 0x5b, 0xe0, 0xb3, 0xe0, 0x0c, 0xe1, 0x6b, 0xe1, 0xd3, 0xe1, 0x36, 0xe2, 0xa8, 0xe2, 0x1b, 0xe3, 0x8e, 0xe3, 0x0b, 0xe4, 0x85, 0xe4, 0x04, 0xe5, 0x82, 0xe5, 0x05, 0xe6, 0x87, 0xe6, 0x05, 0xe7, 0x8c, 0xe7, 0x10, 0xe8, 0x94, 0xe8, 0x17, 0xe9, 0x9c, 0xe9, 0x1e, 0xea, 0xa1, 0xea, 0x27, 0xeb, 0xa6, 0xeb, 0x31, 0xec, 0xb3, 0xec, 0x3e, 0xed, 0xc5, 0xed, 0x52, 0xee, 0xe2, 0xee, 0x74, 0xef, 0x09, 0xf0, 0x9f, 0xf0, 0x37, 0xf1, 0xd1, 0xf1, 0x6b, 0xf2, 0x0b, 0xf3, 0xac, 0xf3, 0x50, 0xf4, 0xf3, 0xf4, 0x99, 0xf5, 0x41, 0xf6, 0xe7, 0xf6, 0x8f, 0xf7, 0x39, 0xf8, 0xe4, 0xf8, 0x8e, 0xf9, 0x38, 0xfa, 0xe2, 0xfa, 0x8a, 0xfb, 0x35, 0xfc, 0xdd, 0xfc, 0x85, 0xfd, 0x30, 0xfe, 0xd9, 0xfe, 0x87, 0xff, 0x2c, 0x00, 0xda, 0x00, 0x82, 0x01, 0x2f, 0x02, 0xdd, 0x02, 0x8b, 0x03, 0x3c, 0x04, 0xee, 0x04, 0xa2, 0x05, 0x57, 0x06, 0x0c, 0x07, 0xc4, 0x07, 0x7f, 0x08, 0x37, 0x09, 0xf6, 0x09, 0xb1, 0x0a, 0x6f, 0x0b, 0x2c, 0x0c, 0xe2, 0x0c, 0xa4, 0x0d, 0x5a, 0x0e, 0x17, 0x0f, 0xcc, 0x0f, 0x7f, 0x10, 0x39, 0x11, 0xe6, 0x11, 0x92, 0x12, 0x3e, 0x13, 0xe5, 0x13, 0x88, 0x14, 0x2a, 0x15, 0xbf, 0x15, 0x59, 0x16, 0xe9, 0x16, 0x72, 0x17, 0xfa, 0x17, 0x7d, 0x18, 0xf9, 0x18, 0x75, 0x19, 0xe9, 0x19, 0x5a, 0x1a, 0xc3, 0x1a, 0x26, 0x1b, 0x8f, 0x1b, 0xe3, 0x1b, 0x3e, 0x1c, 0x90, 0x1c, 0xdf, 0x1c, 0x2d, 0x1d, 0x6f, 0x1d, 0xb3, 0x1d, 0xf6, 0x1d, 0x32, 0x1e, 0x6f, 0x1e, 0xa8, 0x1e, 0xdf, 0x1e, 0x0f, 0x1f, 0x45, 0x1f, 0x70, 0x1f, 0x9e, 0x1f, 0xc8, 0x1f, 0xee, 0x1f, 0x0e, 0x20, 0x2c, 0x20, 0x48, 0x20, 0x62, 0x20, 0x76, 0x20, 0x83, 0x20, 0x90, 0x20, 0x94, 0x20, 0x96, 0x20, 0x93, 0x20, 0x8c, 0x20, 0x7e, 0x20, 0x6c, 0x20, 0x58, 0x20, 0x41, 0x20, 0x1e, 0x20, 0x00, 0x20, 0xdc, 0x1f, 0xb4, 0x1f, 0x8c, 0x1f, 0x5f, 0x1f, 0x31, 0x1f, 0xff, 0x1e, 0xd1, 0x1e, 0xa1, 0x1e, 0x6f, 0x1e, 0x3c, 0x1e, 0x08, 0x1e, 0xd5, 0x1d, 0x9f, 0x1d, 0x6a, 0x1d, 0x35, 0x1d, 0xfd, 0x1c, 0xc3, 0x1c, 0x8c, 0x1c, 0x4d, 0x1c, 0x10, 0x1c, 0xcf, 0x1b, 0x91, 0x1b, 0x4b, 0x1b, 0x05, 0x1b, 0xbb, 0x1a, 0x71, 0x1a, 0x23, 0x1a, 0xcf, 0x19, 0x7f, 0x19, 0x24, 0x19, 0xce, 0x18, 0x6f, 0x18, 0x0e, 0x18, 0xa8, 0x17, 0x44, 0x17, 0xda, 0x16, 0x6d, 0x16, 0xf4, 0x15, 0x85, 0x15, 0x05, 0x15, 0x8d, 0x14, 0x09, 0x14, 0x81, 0x13, 0xfc, 0x12, 0x6b, 0x12, 0xdb, 0x11, 0x48, 0x11, 0xaf, 0x10, 0x13, 0x10, 0x74, 0x0f, 0xd1, 0x0e, 0x2d, 0x0e, 0x85, 0x0d, 0xd7, 0x0c, 0x29, 0x0c, 0x7a, 0x0b, 0xc7, 0x0a, 0x14, 0x0a, 0x5f, 0x09, 0xa5, 0x08, 0xeb, 0x07, 0x33, 0x07, 0x7a, 0x06, 0xbc, 0x05, 0xff, 0x04, 0x43, 0x04, 0x89, 0x03, 0xcf, 0x02, 0x15, 0x02, 0x60, 0x01, 0xaa, 0x00, 0xf9, 0xff, 0x4a, 0xff, 0x9a, 0xfe, 0xef, 0xfd, 0x41, 0xfd, 0x9b, 0xfc, 0xf4, 0xfb, 0x4a, 0xfb, 0xac, 0xfa, 0x08, 0xfa, 0x68, 0xf9, 0xc6, 0xf8, 0x29, 0xf8, 0x8e, 0xf7, 0xf1, 0xf6, 0x59, 0xf6, 0xbe, 0xf5, 0x28, 0xf5, 0x94, 0xf4, 0xff, 0xf3, 0x6e, 0xf3, 0xde, 0xf2, 0x4e, 0xf2, 0xc1, 0xf1, 0x38, 0xf1, 0xae, 0xf0, 0x27, 0xf0, 0xa1, 0xef, 0x18, 0xef, 0x9a, 0xee, 0x16, 0xee, 0x95, 0xed, 0x1b, 0xed, 0x9c, 0xec, 0x21, 0xec, 0xaa, 0xeb, 0x31, 0xeb, 0xbc, 0xea, 0x47, 0xea, 0xd5, 0xe9, 0x63, 0xe9, 0xfa, 0xe8, 0x8b, 0xe8, 0x22, 0xe8, 0xbf, 0xe7, 0x5a, 0xe7, 0xfd, 0xe6, 0xa4, 0xe6, 0x4c, 0xe6, 0xfd, 0xe5, 0xb2, 0xe5, 0x6b, 0xe5, 0x24, 0xe5, 0xe5, 0xe4, 0xa7, 0xe4, 0x71, 0xe4, 0x3e, 0xe4, 0x0b, 0xe4, 0xe3, 0xe3, 0xba, 0xe3, 0x96, 0xe3, 0x75, 0xe3, 0x5a, 0xe3, 0x42, 0xe3, 0x2d, 0xe3, 0x1b, 0xe3, 0x0d, 0xe3, 0x01, 0xe3, 0xf4, 0xe2, 0xf1, 0xe2, 0xe7, 0xe2, 0xe8, 0xe2, 0xe4, 0xe2, 0xe5, 0xe2, 0xe8, 0xe2, 0xee, 0xe2, 0xf3, 0xe2, 0xfb, 0xe2, 0x02, 0xe3, 0x0f, 0xe3, 0x1c, 0xe3, 0x2b, 0xe3, 0x3c, 0xe3, 0x4b, 0xe3, 0x66, 0xe3, 0x7b, 0xe3, 0x9c, 0xe3, 0xb6, 0xe3, 0xdb, 0xe3, 0x01, 0xe4, 0x25, 0xe4, 0x52, 0xe4, 0x81, 0xe4, 0xb0, 0xe4, 0xe0, 0xe4, 0x13, 0xe5, 0x4c, 0xe5, 0x82, 0xe5, 0xc1, 0xe5, 0xfd, 0xe5, 0x3a, 0xe6, 0x7e, 0xe6, 0xbe, 0xe6, 0x02, 0xe7, 0x4d, 0xe7, 0x97, 0xe7, 0xe3, 0xe7, 0x36, 0xe8, 0x88, 0xe8, 0xdd, 0xe8, 0x33, 0xe9, 0x8e, 0xe9, 0xe7, 0xe9, 0x43, 0xea, 0xa3, 0xea, 0x04, 0xeb, 0x66, 0xeb, 0xcd, 0xeb, 0x36, 0xec, 0x9f, 0xec, 0x0f, 0xed, 0x80, 0xed, 0xf1, 0xed, 0x6a, 0xee, 0xe1, 0xee, 0x5e, 0xef, 0xd8, 0xef, 0x5c, 0xf0, 0xdc, 0xf0, 0x63, 0xf1, 0xee, 0xf1, 0x79, 0xf2, 0x06, 0xf3, 0x90, 0xf3, 0x24, 0xf4, 0xb1, 0xf4, 0x48, 0xf5, 0xd9, 0xf5, 0x6e, 0xf6, 0x01, 0xf7, 0x98, 0xf7, 0x2d, 0xf8, 0xc1, 0xf8, 0x59, 0xf9, 0xed, 0xf9, 0x81, 0xfa, 0x11, 0xfb, 0xa5, 0xfb, 0x35, 0xfc, 0xc5, 0xfc, 0x57, 0xfd, 0xe3, 0xfd, 0x76, 0xfe, 0x02, 0xff, 0x90, 0xff, 0x22, 0x00, 0xb0, 0x00, 0x3c, 0x01, 0xcd, 0x01, 0x63, 0x02, 0xf3, 0x02, 0x85, 0x03, 0x13, 0x04, 0xac, 0x04, 0x3c, 0x05, 0xd4, 0x05, 0x68, 0x06, 0xfb, 0x06, 0x93, 0x07, 0x2a, 0x08, 0xc4, 0x08, 0x5c, 0x09, 0xf1, 0x09, 0x88, 0x0a, 0x20, 0x0b, 0xb4, 0x0b, 0x4d, 0x0c, 0xe0, 0x0c, 0x72, 0x0d, 0x04, 0x0e, 0x98, 0x0e, 0x27, 0x0f, 0xb9, 0x0f, 0x49, 0x10, 0xd3, 0x10, 0x62, 0x11, 0xee, 0x11, 0x7b, 0x12, 0x00, 0x13, 0x88, 0x13, 0x0a, 0x14, 0x8d, 0x14, 0x0b, 0x15, 0x85, 0x15, 0x00, 0x16, 0x76, 0x16, 0xeb, 0x16, 0x5b, 0x17, 0xcd, 0x17, 0x3b, 0x18, 0xa4, 0x18, 0x0b, 0x19, 0x6f, 0x19, 0xd6, 0x19, 0x35, 0x1a, 0x93, 0x1a, 0xf0, 0x1a, 0x46, 0x1b, 0x9b, 0x1b, 0xe3, 0x1b, 0x2f, 0x1c, 0x70, 0x1c, 0xaf, 0x1c, 0xe5, 0x1c, 0x19, 0x1d, 0x48, 0x1d, 0x6c, 0x1d, 0x8e, 0x1d, 0xab, 0x1d, 0xbf, 0x1d, 0xcf, 0x1d, 0xdc, 0x1d, 0xdf, 0x1d, 0xe3, 0x1d, 0xe0, 0x1d, 0xdb, 0x1d, 0xcf, 0x1d, 0xc3, 0x1d, 0xb4, 0x1d, 0xa1, 0x1d, 0x92, 0x1d, 0x78, 0x1d, 0x5e, 0x1d, 0x41, 0x1d, 0x24, 0x1d, 0x03, 0x1d, 0xdf, 0x1c, 0xb8, 0x1c, 0x8b, 0x1c, 0x5f, 0x1c, 0x2c, 0x1c, 0xfc, 0x1b, 0xc4, 0x1b, 0x8c, 0x1b, 0x4d, 0x1b, 0x10, 0x1b, 0xcc, 0x1a, 0x8a, 0x1a, 0x41, 0x1a, 0xf8, 0x19, 0xaa, 0x19, 0x5e, 0x19, 0x0b, 0x19, 0xb5, 0x18, 0x5f, 0x18, 0x02, 0x18, 0xab, 0x17, 0x44, 0x17, 0xe2, 0x16, 0x7d, 0x16, 0x13, 0x16, 0xae, 0x15, 0x3e, 0x15, 0xcf, 0x14, 0x60, 0x14, 0xf0, 0x13, 0x7a, 0x13, 0x0b, 0x13, 0x94, 0x12, 0x20, 0x12, 0xae, 0x11, 0x30, 0x11, 0xc0, 0x10, 0x43, 0x10, 0xd4, 0x0f, 0x58, 0x0f, 0xe4, 0x0e, 0x6c, 0x0e, 0xef, 0x0d, 0x77, 0x0d, 0xfc, 0x0c, 0x80, 0x0c, 0x06, 0x0c, 0x87, 0x0b, 0x07, 0x0b, 0x88, 0x0a, 0x07, 0x0a, 0x88, 0x09, 0x08, 0x09, 0x87, 0x08, 0x0c, 0x08, 0x88, 0x07, 0x0a, 0x07, 0x8c, 0x06, 0x0b, 0x06, 0x8f, 0x05, 0x13, 0x05, 0x94, 0x04, 0x17, 0x04, 0x9b, 0x03, 0x1d, 0x03, 0xa1, 0x02, 0x23, 0x02, 0xa5, 0x01, 0x28, 0x01, 0xaa, 0x00, 0x29, 0x00, 0xad, 0xff, 0x29, 0xff, 0xa3, 0xfe, 0x1f, 0xfe, 0x9d, 0xfd, 0x15, 0xfd, 0x8f, 0xfc, 0x09, 0xfc, 0x81, 0xfb, 0xf9, 0xfa, 0x70, 0xfa, 0xe9, 0xf9, 0x60, 0xf9, 0xd8, 0xf8, 0x4e, 0xf8, 0xc7, 0xf7, 0x38, 0xf7, 0xb2, 0xf6, 0x26, 0xf6, 0x99, 0xf5, 0x0c, 0xf5, 0x80, 0xf4, 0xf4, 0xf3, 0x6a, 0xf3, 0xde, 0xf2, 0x53, 0xf2, 0xc9, 0xf1, 0x43, 0xf1, 0xbf, 0xf0, 0x3a, 0xf0, 0xbd, 0xef, 0x3c, 0xef, 0xc3, 0xee, 0x4a, 0xee, 0xd4, 0xed, 0x60, 0xed, 0xf3, 0xec, 0x87, 0xec, 0x1f, 0xec, 0xb8, 0xeb, 0x54, 0xeb, 0xf4, 0xea, 0x92, 0xea, 0x3b, 0xea, 0xe1, 0xe9, 0x8b, 0xe9, 0x38, 0xe9, 0xe2, 0xe8, 0x9b, 0xe8, 0x4d, 0xe8, 0x03, 0xe8, 0xbc, 0xe7, 0x74, 0xe7, 0x31, 0xe7, 0xeb, 0xe6, 0xae, 0xe6, 0x6d, 0xe6, 0x31, 0xe6, 0xf6, 0xe5, 0xbb, 0xe5, 0x87, 0xe5, 0x50, 0xe5, 0x20, 0xe5, 0xed, 0xe4, 0xc5, 0xe4, 0x9f, 0xe4, 0x74, 0xe4, 0x56, 0xe4, 0x3b, 0xe4, 0x1e, 0xe4, 0x0b, 0xe4, 0xf8, 0xe3, 0xea, 0xe3, 0xe1, 0xe3, 0xe1, 0xe3, 0xde, 0xe3, 0xe3, 0xe3, 0xed, 0xe3, 0xfd, 0xe3, 0x11, 0xe4, 0x2a, 0xe4, 0x4d, 0xe4, 0x6e, 0xe4, 0x95, 0xe4, 0xc5, 0xe4, 0xf5, 0xe4, 0x2f, 0xe5, 0x6a, 0xe5, 0xac, 0xe5, 0xef, 0xe5, 0x35, 0xe6, 0x7c, 0xe6, 0xc8, 0xe6, 0x14, 0xe7, 0x62, 0xe7, 0xae, 0xe7, 0xfe, 0xe7, 0x50, 0xe8, 0x9d, 0xe8, 0xec, 0xe8, 0x3c, 0xe9, 0x8d, 0xe9, 0xdf, 0xe9, 0x31, 0xea, 0x81, 0xea, 0xd4, 0xea, 0x27, 0xeb, 0x7a, 0xeb, 0xce, 0xeb, 0x21, 0xec, 0x78, 0xec, 0xcf, 0xec, 0x26, 0xed, 0x80, 0xed, 0xdb, 0xed, 0x33, 0xee, 0x91, 0xee, 0xf1, 0xee, 0x51, 0xef, 0xb4, 0xef, 0x17, 0xf0, 0x81, 0xf0, 0xe9, 0xf0, 0x54, 0xf1, 0xc1, 0xf1, 0x30, 0xf2, 0xa0, 0xf2, 0x17, 0xf3, 0x86, 0xf3, 0x01, 0xf4, 0x76, 0xf4, 0xef, 0xf4, 0x66, 0xf5, 0xe1, 0xf5, 0x60, 0xf6, 0xdc, 0xf6, 0x5e, 0xf7, 0xdc, 0xf7, 0x5d, 0xf8, 0xdd, 0xf8, 0x62, 0xf9, 0xe6, 0xf9, 0x6d, 0xfa, 0xf1, 0xfa, 0x7a, 0xfb, 0x03, 0xfc, 0x8f, 0xfc, 0x19, 0xfd, 0xa5, 0xfd, 0x33, 0xfe, 0xbb, 0xfe, 0x4e, 0xff, 0xd8, 0xff, 0x67, 0x00, 0xf7, 0x00, 0x88, 0x01, 0x1b, 0x02, 0xa9, 0x02, 0x3b, 0x03, 0xcd, 0x03, 0x5f, 0x04, 0xf2, 0x04, 0x83, 0x05, 0x14, 0x06, 0xa7, 0x06, 0x37, 0x07, 0xcb, 0x07, 0x5d, 0x08, 0xed, 0x08, 0x7d, 0x09, 0x0e, 0x0a, 0x9e, 0x0a, 0x2f, 0x0b, 0xbf, 0x0b, 0x4a, 0x0c, 0xd9, 0x0c, 0x64, 0x0d, 0xec, 0x0d, 0x75, 0x0e, 0xf8, 0x0e, 0x77, 0x0f, 0xfa, 0x0f, 0x73, 0x10, 0xf3, 0x10, 0x6c, 0x11, 0xdf, 0x11, 0x55, 0x12, 0xc4, 0x12, 0x31, 0x13, 0xa0, 0x13, 0x09, 0x14, 0x6a, 0x14, 0xcf, 0x14, 0x2c, 0x15, 0x89, 0x15, 0xde, 0x15, 0x30, 0x16, 0x7c, 0x16, 0xc6, 0x16, 0x0c, 0x17, 0x4e, 0x17, 0x8d, 0x17, 0xc6, 0x17, 0xff, 0x17, 0x2f, 0x18, 0x62, 0x18, 0x8d, 0x18, 0xb9, 0x18, 0xdf, 0x18, 0x06, 0x19, 0x28, 0x19, 0x46, 0x19, 0x64, 0x19, 0x7f, 0x19, 0x9a, 0x19, 0xad, 0x19, 0xbf, 0x19, 0xce, 0x19, 0xda, 0x19, 0xdd, 0x19, 0xe5, 0x19, 0xec, 0x19, 0xe8, 0x19, 0xe9, 0x19, 0xe8, 0x19, 0xe2, 0x19, 0xdd, 0x19, 0xdc, 0x19, 0xd2, 0x19, 0xcd, 0x19, 0xc3, 0x19, 0xb8, 0x19, 0xaf, 0x19, 0xa0, 0x19, 0x94, 0x19, 0x84, 0x19, 0x75, 0x19, 0x66, 0x19, 0x54, 0x19, 0x40, 0x19, 0x2e, 0x19, 0x16, 0x19, 0x00, 0x19, 0xe3, 0x18, 0xc8, 0x18, 0xa8, 0x18, 0x82, 0x18, 0x5c, 0x18, 0x2f, 0x18, 0x02, 0x18, 0xcd, 0x17, 0x96, 0x17, 0x5e, 0x17, 0x1e, 0x17, 0xdf, 0x16, 0x9b, 0x16, 0x55, 0x16, 0x0d, 0x16, 0xc5, 0x15, 0x76, 0x15, 0x29, 0x15, 0xd8, 0x14, 0x84, 0x14, 0x32, 0x14, 0xd6, 0x13, 0x7f, 0x13, 0x1f, 0x13, 0xc4, 0x12, 0x64, 0x12, 0xfd, 0x11, 0x99, 0x11, 0x2d, 0x11, 0xc0, 0x10, 0x4f, 0x10, 0xde, 0x0f, 0x67, 0x0f, 0xee, 0x0e, 0x71, 0x0e, 0xf1, 0x0d, 0x74, 0x0d, 0xf2, 0x0c, 0x67, 0x0c, 0xe0, 0x0b, 0x51, 0x0b, 0xc7, 0x0a, 0x31, 0x0a, 0x9a, 0x09, 0x06, 0x09, 0x6d, 0x08, 0xd3, 0x07, 0x34, 0x07, 0x97, 0x06, 0xfa, 0x05, 0x5a, 0x05, 0xb8, 0x04, 0x18, 0x04, 0x79, 0x03, 0xd7, 0x02, 0x37, 0x02, 0x97, 0x01, 0xfb, 0x00, 0x5c, 0x00, 0xc2, 0xff, 0x26, 0xff, 0x8a, 0xfe, 0xed, 0xfd, 0x55, 0xfd, 0xbd, 0xfc, 0x29, 0xfc, 0x94, 0xfb, 0x02, 0xfb, 0x75, 0xfa, 0xe5, 0xf9, 0x5d, 0xf9, 0xd5, 0xf8, 0x51, 0xf8, 0xd1, 0xf7, 0x54, 0xf7, 0xd8, 0xf6, 0x5f, 0xf6, 0xe9, 0xf5, 0x74, 0xf5, 0x02, 0xf5, 0x91, 0xf4, 0x26, 0xf4, 0xb9, 0xf3, 0x50, 0xf3, 0xe7, 0xf2, 0x83, 0xf2, 0x21, 0xf2, 0xbe, 0xf1, 0x5e, 0xf1, 0xfe, 0xf0, 0xa4, 0xf0, 0x49, 0xf0, 0xed, 0xef, 0x9a, 0xef, 0x42, 0xef, 0xf3, 0xee, 0xa1, 0xee, 0x55, 0xee, 0x0a, 0xee, 0xbf, 0xed, 0x7a, 0xed, 0x32, 0xed, 0xf1, 0xec, 0xaf, 0xec, 0x6d, 0xec, 0x2e, 0xec, 0xf3, 0xeb, 0xb7, 0xeb, 0x7d, 0xeb, 0x45, 0xeb, 0x0e, 0xeb, 0xd7, 0xea, 0xa6, 0xea, 0x71, 0xea, 0x43, 0xea, 0x13, 0xea, 0xea, 0xe9, 0xc2, 0xe9, 0x9c, 0xe9, 0x75, 0xe9, 0x54, 0xe9, 0x38, 0xe9, 0x1b, 0xe9, 0x08, 0xe9, 0xe8, 0xe8, 0xd3, 0xe8, 0xc1, 0xe8, 0xad, 0xe8, 0x9b, 0xe8, 0x8b, 0xe8, 0x7c, 0xe8, 0x6b, 0xe8, 0x5f, 0xe8, 0x57, 0xe8, 0x48, 0xe8, 0x41, 0xe8, 0x3a, 0xe8, 0x33, 0xe8, 0x2c, 0xe8, 0x24, 0xe8, 0x20, 0xe8, 0x1d, 0xe8, 0x18, 0xe8, 0x15, 0xe8, 0x15, 0xe8, 0x18, 0xe8, 0x1d, 0xe8, 0x24, 0xe8, 0x2f, 0xe8, 0x37, 0xe8, 0x4c, 0xe8, 0x5e, 0xe8, 0x75, 0xe8, 0x91, 0xe8, 0xad, 0xe8, 0xd0, 0xe8, 0xef, 0xe8, 0x1b, 0xe9, 0x41, 0xe9, 0x70, 0xe9, 0x9f, 0xe9, 0xd1, 0xe9, 0x0e, 0xea, 0x47, 0xea, 0x8f, 0xea, 0xcf, 0xea, 0x1d, 0xeb, 0x64, 0xeb, 0xb7, 0xeb, 0x0c, 0xec, 0x62, 0xec, 0xbd, 0xec, 0x1b, 0xed, 0x77, 0xed, 0xd7, 0xed, 0x36, 0xee, 0x9b, 0xee, 0xfe, 0xee, 0x5e, 0xef, 0xc6, 0xef, 0x2b, 0xf0, 0x92, 0xf0, 0xfb, 0xf0, 0x67, 0xf1, 0xd3, 0xf1, 0x40, 0xf2, 0xaa, 0xf2, 0x1c, 0xf3, 0x89, 0xf3, 0xfb, 0xf3, 0x6c, 0xf4, 0xdb, 0xf4, 0x4f, 0xf5, 0xbc, 0xf5, 0x2f, 0xf6, 0xa3, 0xf6, 0x17, 0xf7, 0x89, 0xf7, 0xfa, 0xf7, 0x75, 0xf8, 0xe9, 0xf8, 0x65, 0xf9, 0xe4, 0xf9, 0x61, 0xfa, 0xe1, 0xfa, 0x60, 0xfb, 0xe4, 0xfb, 0x65, 0xfc, 0xe9, 0xfc, 0x6f, 0xfd, 0xf3, 0xfd, 0x78, 0xfe, 0xfc, 0xfe, 0x81, 0xff, 0x07, 0x00, 0x8b, 0x00, 0x10, 0x01, 0x94, 0x01, 0x1b, 0x02, 0xa5, 0x02, 0x27, 0x03, 0xad, 0x03, 0x33, 0x04, 0xbb, 0x04, 0x43, 0x05, 0xc6, 0x05, 0x4b, 0x06, 0xd0, 0x06, 0x4f, 0x07, 0xcb, 0x07, 0x4a, 0x08, 0xc7, 0x08, 0x3e, 0x09, 0xbc, 0x09, 0x2a, 0x0a, 0xa6, 0x0a, 0x1a, 0x0b, 0x8f, 0x0b, 0x05, 0x0c, 0x75, 0x0c, 0xe8, 0x0c, 0x58, 0x0d, 0xc4, 0x0d, 0x32, 0x0e, 0x99, 0x0e, 0x02, 0x0f, 0x6a, 0x0f, 0xcf, 0x0f, 0x30, 0x10, 0x90, 0x10, 0xef, 0x10, 0x4c, 0x11, 0xa9, 0x11, 0x02, 0x12, 0x5a, 0x12, 0xb3, 0x12, 0x04, 0x13, 0x59, 0x13, 0xaa, 0x13, 0xf6, 0x13, 0x44, 0x14, 0x8b, 0x14, 0xd4, 0x14, 0x18, 0x15, 0x5c, 0x15, 0x9c, 0x15, 0xdd, 0x15, 0x1a, 0x16, 0x52, 0x16, 0x8f, 0x16, 0xc3, 0x16, 0xf4, 0x16, 0x26, 0x17, 0x54, 0x17, 0x7e, 0x17, 0xa2, 0x17, 0xc9, 0x17, 0xea, 0x17, 0x02, 0x18, 0x20, 0x18, 0x39, 0x18, 0x4e, 0x18, 0x5c, 0x18, 0x6f, 0x18, 0x7a, 0x18, 0x7f, 0x18, 0x86, 0x18, 0x82, 0x18, 0x85, 0x18, 0x7e, 0x18, 0x78, 0x18, 0x71, 0x18, 0x62, 0x18, 0x55, 0x18, 0x46, 0x18, 0x32, 0x18, 0x1e, 0x18, 0x09, 0x18, 0xee, 0x17, 0xd2, 0x17, 0xb4, 0x17, 0x95, 0x17, 0x72, 0x17, 0x54, 0x17, 0x30, 0x17, 0x0c, 0x17, 0xe8, 0x16, 0xc1, 0x16, 0x9a, 0x16, 0x72, 0x16, 0x4a, 0x16, 0x1f, 0x16, 0xf1, 0x15, 0xbf, 0x15, 0x8d, 0x15, 0x59, 0x15, 0x20, 0x15, 0xe4, 0x14, 0xab, 0x14, 0x65, 0x14, 0x23, 0x14, 0xda, 0x13, 0x90, 0x13, 0x45, 0x13, 0xf5, 0x12, 0xa4, 0x12, 0x52, 0x12, 0xfc, 0x11, 0xa2, 0x11, 0x4c, 0x11, 0xef, 0x10, 0x90, 0x10, 0x30, 0x10, 0xcf, 0x0f, 0x6c, 0x0f, 0x01, 0x0f, 0x9c, 0x0e, 0x30, 0x0e, 0xc1, 0x0d, 0x55, 0x0d, 0xe0, 0x0c, 0x6e, 0x0c, 0xf6, 0x0b, 0x7a, 0x0b, 0xfe, 0x0a, 0x81, 0x0a, 0x04, 0x0a, 0x80, 0x09, 0x01, 0x09, 0x7e, 0x08, 0xfb, 0x07, 0x76, 0x07, 0xef, 0x06, 0x6e, 0x06, 0xe7, 0x05, 0x63, 0x05, 0xda, 0x04, 0x57, 0x04, 0xcd, 0x03, 0x4b, 0x03, 0xc3, 0x02, 0x3d, 0x02, 0xb4, 0x01, 0x30, 0x01, 0xa9, 0x00, 0x1f, 0x00, 0x9e, 0xff, 0x12, 0xff, 0x90, 0xfe, 0x07, 0xfe, 0x85, 0xfd, 0x01, 0xfd, 0x79, 0xfc, 0xfe, 0xfb, 0x78, 0xfb, 0xf8, 0xfa, 0x75, 0xfa, 0xf5, 0xf9, 0x71, 0xf9, 0xf2, 0xf8, 0x72, 0xf8, 0xf7, 0xf7, 0x79, 0xf7, 0xfa, 0xf6, 0x81, 0xf6, 0x04, 0xf6, 0x8a, 0xf5, 0x14, 0xf5, 0x9e, 0xf4, 0x22, 0xf4, 0xb0, 0xf3, 0x3a, 0xf3, 0xcb, 0xf2, 0x59, 0xf2, 0xe9, 0xf1, 0x7b, 0xf1, 0x0e, 0xf1, 0xa7, 0xf0, 0x3e, 0xf0, 0xd7, 0xef, 0x72, 0xef, 0x12, 0xef, 0xb2, 0xee, 0x52, 0xee, 0xf8, 0xed, 0xa1, 0xed, 0x4a, 0xed, 0xf6, 0xec, 0xa4, 0xec, 0x54, 0xec, 0x0d, 0xec, 0xc1, 0xeb, 0x81, 0xeb, 0x3e, 0xeb, 0x03, 0xeb, 0xce, 0xea, 0x95, 0xea, 0x68, 0xea, 0x38, 0xea, 0x13, 0xea, 0xea, 0xe9, 0xc3, 0xe9, 0xa2, 0xe9, 0x84, 0xe9, 0x66, 0xe9, 0x4e, 0xe9, 0x31, 0xe9, 0x17, 0xe9, 0x05, 0xe9, 0xef, 0xe8, 0xdd, 0xe8, 0xcd, 0xe8, 0xbc, 0xe8, 0xb2, 0xe8, 0xa5, 0xe8, 0x9d, 0xe8, 0x94, 0xe8, 0x94, 0xe8, 0x91, 0xe8, 0x96, 0xe8, 0x9a, 0xe8, 0xa3, 0xe8, 0xaf, 0xe8, 0xbc, 0xe8, 0xd2, 0xe8, 0xe2, 0xe8, 0x00, 0xe9, 0x1c, 0xe9, 0x3c, 0xe9, 0x5e, 0xe9, 0x83, 0xe9, 0xab, 0xe9, 0xd2, 0xe9, 0x02, 0xea, 0x30, 0xea, 0x60, 0xea, 0x90, 0xea, 0xc2, 0xea, 0xfb, 0xea, 0x31, 0xeb, 0x6d, 0xeb, 0xa3, 0xeb, 0xe2, 0xeb, 0x1e, 0xec, 0x5d, 0xec, 0x9c, 0xec, 0xdf, 0xec, 0x21, 0xed, 0x61, 0xed, 0xa3, 0xed, 0xe5, 0xed, 0x2c, 0xee, 0x6e, 0xee, 0xb1, 0xee, 0xf7, 0xee, 0x38, 0xef, 0x7e, 0xef, 0xc1, 0xef, 0x0a, 0xf0, 0x50, 0xf0, 0x98, 0xf0, 0xde, 0xf0, 0x29, 0xf1, 0x76, 0xf1, 0xc4, 0xf1, 0x14, 0xf2, 0x69, 0xf2, 0xbc, 0xf2, 0x13, 0xf3, 0x6f, 0xf3, 0xc8, 0xf3, 0x24, 0xf4, 0x84, 0xf4, 0xe6, 0xf4, 0x49, 0xf5, 0xae, 0xf5, 0x14, 0xf6, 0x7a, 0xf6, 0xe3, 0xf6, 0x50, 0xf7, 0xb9, 0xf7, 0x28, 0xf8, 0x94, 0xf8, 0x01, 0xf9, 0x74, 0xf9, 0xe6, 0xf9, 0x5d, 0xfa, 0xd4, 0xfa, 0x4d, 0xfb, 0xc9, 0xfb, 0x4d, 0xfc, 0xc5, 0xfc, 0x47, 0xfd, 0xc9, 0xfd, 0x4b, 0xfe, 0xcd, 0xfe, 0x4b, 0xff, 0xcb, 0xff, 0x44, 0x00, 0xc4, 0x00, 0x3d, 0x01, 0xb4, 0x01, 0x2d, 0x02, 0x9f, 0x02, 0x0f, 0x03, 0x7d, 0x03, 0xe7, 0x03, 0x4f, 0x04, 0xb7, 0x04, 0x1b, 0x05, 0x7e, 0x05, 0xe3, 0x05, 0x3f, 0x06, 0x9f, 0x06, 0xfb, 0x06, 0x53, 0x07, 0xb3, 0x07, 0x0d, 0x08, 0x66, 0x08, 0xc4, 0x08, 0x1f, 0x09, 0x77, 0x09, 0xd9, 0x09, 0x35, 0x0a, 0x91, 0x0a, 0xee, 0x0a, 0x4c, 0x0b, 0xa7, 0x0b, 0x02, 0x0c, 0x5f, 0x0c, 0xb6, 0x0c, 0x0e, 0x0d, 0x67, 0x0d, 0xbc, 0x0d, 0x0f, 0x0e, 0x5f, 0x0e, 0xb0, 0x0e, 0x02, 0x0f, 0x4e, 0x0f, 0x9c, 0x0f, 0xe6, 0x0f, 0x2b, 0x10, 0x6e, 0x10, 0xaf, 0x10, 0xeb, 0x10, 0x26, 0x11, 0x5d, 0x11, 0x90, 0x11, 0xc0, 0x11, 0xf2, 0x11, 0x1d, 0x12, 0x4b, 0x12, 0x76, 0x12, 0x9b, 0x12, 0xc1, 0x12, 0xea, 0x12, 0x0e, 0x13, 0x36, 0x13, 0x59, 0x13, 0x7a, 0x13, 0xa3, 0x13, 0xc1, 0x13, 0xe5, 0x13, 0x02, 0x14, 0x24, 0x14, 0x3f, 0x14, 0x5b, 0x14, 0x72, 0x14, 0x8a, 0x14, 0xa2, 0x14, 0xb1, 0x14, 0xc6, 0x14, 0xd1, 0x14, 0xde, 0x14, 0xe8, 0x14, 0xee, 0x14, 0xf3, 0x14, 0xf5, 0x14, 0xf2, 0x14, 0xf3, 0x14, 0xee, 0x14, 0xe6, 0x14, 0xde, 0x14, 0xd1, 0x14, 0xc5, 0x14, 0xb3, 0x14, 0xa1, 0x14, 0x8b, 0x14, 0x74, 0x14, 0x5d, 0x14, 0x3f, 0x14, 0x1f, 0x14, 0xfd, 0x13, 0xda, 0x13, 0xb5, 0x13, 0x8c, 0x13, 0x63, 0x13, 0x36, 0x13, 0x0f, 0x13, 0xde, 0x12, 0xb0, 0x12, 0x83, 0x12, 0x52, 0x12, 0x22, 0x12, 0xee, 0x11, 0xbd, 0x11, 0x86, 0x11, 0x4f, 0x11, 0x15, 0x11, 0xda, 0x10, 0x9b, 0x10, 0x58, 0x10, 0x10, 0x10, 0xc7, 0x0f, 0x79, 0x0f, 0x28, 0x0f, 0xd5, 0x0e, 0x81, 0x0e, 0x24, 0x0e, 0xc9, 0x0d, 0x69, 0x0d, 0x0a, 0x0d, 0xa7, 0x0c, 0x3f, 0x0c, 0xda, 0x0b, 0x6d, 0x0b, 0x04, 0x0b, 0x97, 0x0a, 0x25, 0x0a, 0xb6, 0x09, 0x45, 0x09, 0xcf, 0x08, 0x59, 0x08, 0xe7, 0x07, 0x6e, 0x07, 0xf8, 0x06, 0x7c, 0x06, 0x04, 0x06, 0x87, 0x05, 0x0f, 0x05, 0x94, 0x04, 0x18, 0x04, 0xa1, 0x03, 0x25, 0x03, 0xb1, 0x02, 0x39, 0x02, 0xc6, 0x01, 0x51, 0x01, 0xdd, 0x00, 0x6a, 0x00, 0xfb, 0xff, 0x87, 0xff, 0x18, 0xff, 0xa6, 0xfe, 0x3a, 0xfe, 0xc9, 0xfd, 0x5d, 0xfd, 0xef, 0xfc, 0x83, 0xfc, 0x19, 0xfc, 0xae, 0xfb, 0x45, 0xfb, 0xde, 0xfa, 0x79, 0xfa, 0x14, 0xfa, 0xb0, 0xf9, 0x4d, 0xf9, 0xf0, 0xf8, 0x90, 0xf8, 0x31, 0xf8, 0xd6, 0xf7, 0x79, 0xf7, 0x20, 0xf7, 0xc9, 0xf6, 0x74, 0xf6, 0x21, 0xf6, 0xd0, 0xf5, 0x79, 0xf5, 0x2c, 0xf5, 0xdf, 0xf4, 0x8e, 0xf4, 0x43, 0xf4, 0xf8, 0xf3, 0xae, 0xf3, 0x64, 0xf3, 0x1e, 0xf3, 0xd2, 0xf2, 0x8e, 0xf2, 0x46, 0xf2, 0x02, 0xf2, 0xc1, 0xf1, 0x81, 0xf1, 0x42, 0xf1, 0x07, 0xf1, 0xcf, 0xf0, 0x94, 0xf0, 0x5f, 0xf0, 0x29, 0xf0, 0xf3, 0xef, 0xc5, 0xef, 0x96, 0xef, 0x6c, 0xef, 0x3c, 0xef, 0x11, 0xef, 0xe8, 0xee, 0xbf, 0xee, 0x9d, 0xee, 0x7a, 0xee, 0x54, 0xee, 0x33, 0xee, 0x16, 0xee, 0xf8, 0xed, 0xe0, 0xed, 0xc1, 0xed, 0xaa, 0xed, 0x8d, 0xed, 0x77, 0xed, 0x61, 0xed, 0x4a, 0xed, 0x38, 0xed, 0x26, 0xed, 0x17, 0xed, 0x0b, 0xed, 0xff, 0xec, 0xf8, 0xec, 0xf3, 0xec, 0xf2, 0xec, 0xf1, 0xec, 0xf2, 0xec, 0xfc, 0xec, 0xfc, 0xec, 0x0b, 0xed, 0x11, 0xed, 0x20, 0xed, 0x2f, 0xed, 0x41, 0xed, 0x55, 0xed, 0x67, 0xed, 0x7d, 0xed, 0x94, 0xed, 0xae, 0xed, 0xc8, 0xed, 0xe3, 0xed, 0x04, 0xee, 0x24, 0xee, 0x48, 0xee, 0x70, 0xee, 0x97, 0xee, 0xc3, 0xee, 0xef, 0xee, 0x1e, 0xef, 0x4e, 0xef, 0x81, 0xef, 0xb6, 0xef, 0xeb, 0xef, 0x22, 0xf0, 0x5b, 0xf0, 0x9a, 0xf0, 0xd4, 0xf0, 0x19, 0xf1, 0x59, 0xf1, 0xa0, 0xf1, 0xea, 0xf1, 0x33, 0xf2, 0x7f, 0xf2, 0xd0, 0xf2, 0x22, 0xf3, 0x77, 0xf3, 0xce, 0xf3, 0x24, 0xf4, 0x7f, 0xf4, 0xd7, 0xf4, 0x32, 0xf5, 0x8a, 0xf5, 0xe4, 0xf5, 0x41, 0xf6, 0x98, 0xf6, 0xf0, 0xf6, 0x49, 0xf7, 0xa0, 0xf7, 0xf7, 0xf7, 0x4c, 0xf8, 0xa8, 0xf8, 0xfd, 0xf8, 0x56, 0xf9, 0xaa, 0xf9, 0x06, 0xfa, 0x5a, 0xfa, 0xb0, 0xfa, 0x09, 0xfb, 0x5d, 0xfb, 0xb5, 0xfb, 0x09, 0xfc, 0x5f, 0xfc, 0xb3, 0xfc, 0x07, 0xfd, 0x59, 0xfd, 0xab, 0xfd, 0xfb, 0xfd, 0x4b, 0xfe, 0x97, 0xfe, 0xe8, 0xfe, 0x30, 0xff, 0x7a, 0xff, 0xc5, 0xff, 0x0b, 0x00, 0x4f, 0x00, 0x97, 0x00, 0xdd, 0x00, 0x22, 0x01, 0x69, 0x01, 0xaf, 0x01, 0xf7, 0x01, 0x41, 0x02, 0x8d, 0x02, 0xd5, 0x02, 0x23, 0x03, 0x71, 0x03, 0xbf, 0x03, 0x10, 0x04, 0x63, 0x04, 0xb7, 0x04, 0x0a, 0x05, 0x5e, 0x05, 0xb4, 0x05, 0x0b, 0x06, 0x62, 0x06, 0xbc, 0x06, 0x16, 0x07, 0x6f, 0x07, 0xc7, 0x07, 0x20, 0x08, 0x7f, 0x08, 0xd5, 0x08, 0x32, 0x09, 0x8d, 0x09, 0xe6, 0x09, 0x44, 0x0a, 0x97, 0x0a, 0xf0, 0x0a, 0x46, 0x0b, 0x9f, 0x0b, 0xed, 0x0b, 0x3c, 0x0c, 0x8d, 0x0c, 0xd1, 0x0c, 0x21, 0x0d, 0x67, 0x0d, 0xad, 0x0d, 0xf0, 0x0d, 0x34, 0x0e, 0x72, 0x0e, 0xac, 0x0e, 0xef, 0x0e, 0x28, 0x0f, 0x62, 0x0f, 0x98, 0x0f, 0xcf, 0x0f, 0x03, 0x10, 0x31, 0x10, 0x63, 0x10, 0x8e, 0x10, 0xb9, 0x10, 0xe4, 0x10, 0x0d, 0x11, 0x30, 0x11, 0x56, 0x11, 0x78, 0x11, 0x99, 0x11, 0xb3, 0x11, 0xcf, 0x11, 0xe8, 0x11, 0xfc, 0x11, 0x10, 0x12, 0x20, 0x12, 0x31, 0x12, 0x3f, 0x12, 0x4a, 0x12, 0x50, 0x12, 0x56, 0x12, 0x5a, 0x12, 0x5d, 0x12, 0x5f, 0x12, 0x5d, 0x12, 0x5a, 0x12, 0x56, 0x12, 0x4e, 0x12, 0x46, 0x12, 0x3b, 0x12, 0x2f, 0x12, 0x25, 0x12, 0x14, 0x12, 0x04, 0x12, 0xf2, 0x11, 0xdf, 0x11, 0xc3, 0x11, 0xaf, 0x11, 0x96, 0x11, 0x72, 0x11, 0x58, 0x11, 0x30, 0x11, 0x0f, 0x11, 0xe5, 0x10, 0xbe, 0x10, 0x8e, 0x10, 0x5e, 0x10, 0x30, 0x10, 0xfa, 0x0f, 0xc8, 0x0f, 0x95, 0x0f, 0x5f, 0x0f, 0x29, 0x0f, 0xf2, 0x0e, 0xb7, 0x0e, 0x7c, 0x0e, 0x42, 0x0e, 0x07, 0x0e, 0xca, 0x0d, 0x8a, 0x0d, 0x4f, 0x0d, 0x0e, 0x0d, 0xce, 0x0c, 0x89, 0x0c, 0x47, 0x0c, 0x02, 0x0c, 0xbd, 0x0b, 0x76, 0x0b, 0x2a, 0x0b, 0xe5, 0x0a, 0x91, 0x0a, 0x49, 0x0a, 0xf7, 0x09, 0xa9, 0x09, 0x59, 0x09, 0x0a, 0x09, 0xb9, 0x08, 0x66, 0x08, 0x0f, 0x08, 0xbb, 0x07, 0x67, 0x07, 0x0e, 0x07, 0xb7, 0x06, 0x5f, 0x06, 0x08, 0x06, 0xae, 0x05, 0x52, 0x05, 0xfa, 0x04, 0x9c, 0x04, 0x40, 0x04, 0xe3, 0x03, 0x89, 0x03, 0x2d, 0x03, 0xcd, 0x02, 0x75, 0x02, 0x15, 0x02, 0xba, 0x01, 0x5e, 0x01, 0x04, 0x01, 0xa4, 0x00, 0x4c, 0x00, 0xf0, 0xff, 0x96, 0xff, 0x39, 0xff, 0xdf, 0xfe, 0x82, 0xfe, 0x27, 0xfe, 0xd3, 0xfd, 0x75, 0xfd, 0x21, 0xfd, 0xc7, 0xfc, 0x71, 0xfc, 0x1d, 0xfc, 0xc4, 0xfb, 0x6e, 0xfb, 0x18, 0xfb, 0xc4, 0xfa, 0x6a, 0xfa, 0x15, 0xfa, 0xc0, 0xf9, 0x68, 0xf9, 0x15, 0xf9, 0xc0, 0xf8, 0x69, 0xf8, 0x12, 0xf8, 0xc1, 0xf7, 0x6a, 0xf7, 0x19, 0xf7, 0xca, 0xf6, 0x78, 0xf6, 0x29, 0xf6, 0xd9, 0xf5, 0x88, 0xf5, 0x3b, 0xf5, 0xf1, 0xf4, 0xa2, 0xf4, 0x59, 0xf4, 0x10, 0xf4, 0xc4, 0xf3, 0x7c, 0xf3, 0x38, 0xf3, 0xf6, 0xf2, 0xb1, 0xf2, 0x6f, 0xf2, 0x32, 0xf2, 0xf3, 0xf1, 0xb9, 0xf1, 0x82, 0xf1, 0x4b, 0xf1, 0x16, 0xf1, 0xe6, 0xf0, 0xb3, 0xf0, 0x89, 0xf0, 0x5f, 0xf0, 0x34, 0xf0, 0x11, 0xf0, 0xee, 0xef, 0xc8, 0xef, 0xac, 0xef, 0x8b, 0xef, 0x71, 0xef, 0x57, 0xef, 0x3f, 0xef, 0x2b, 0xef, 0x12, 0xef, 0x01, 0xef, 0xef, 0xee, 0xe1, 0xee, 0xd3, 0xee, 0xc6, 0xee, 0xb8, 0xee, 0xad, 0xee, 0xa5, 0xee, 0x9b, 0xee, 0x94, 0xee, 0x8f, 0xee, 0x8c, 0xee, 0x87, 0xee, 0x82, 0xee, 0x81, 0xee, 0x80, 0xee, 0x81, 0xee, 0x81, 0xee, 0x85, 0xee, 0x8e, 0xee, 0x91, 0xee, 0x9d, 0xee, 0xa8, 0xee, 0xb4, 0xee, 0xc3, 0xee, 0xd5, 0xee, 0xee, 0xee, 0x01, 0xef, 0x1b, 0xef, 0x36, 0xef, 0x56, 0xef, 0x7b, 0xef, 0xa0, 0xef, 0xc5, 0xef, 0xf2, 0xef, 0x20, 0xf0, 0x4e, 0xf0, 0x80, 0xf0, 0xb3, 0xf0, 0xeb, 0xf0, 0x22, 0xf1, 0x59, 0xf1, 0x93, 0xf1, 0xd1, 0xf1, 0x10, 0xf2, 0x4e, 0xf2, 0x90, 0xf2, 0xd1, 0xf2, 0x11, 0xf3, 0x57, 0xf3, 0x9e, 0xf3, 0xe9, 0xf3, 0x2f, 0xf4, 0x7c, 0xf4, 0xc8, 0xf4, 0x19, 0xf5, 0x69, 0xf5, 0xba, 0xf5, 0x0f, 0xf6, 0x60, 0xf6, 0xb9, 0xf6, 0x0e, 0xf7, 0x61, 0xf7, 0xb9, 0xf7, 0x10, 0xf8, 0x65, 0xf8, 0xbd, 0xf8, 0x14, 0xf9, 0x6a, 0xf9, 0xc5, 0xf9, 0x1e, 0xfa, 0x76, 0xfa, 0xcd, 0xfa, 0x29, 0xfb, 0x84, 0xfb, 0xde, 0xfb, 0x37, 0xfc, 0x8f, 0xfc, 0xeb, 0xfc, 0x43, 0xfd, 0x9d, 0xfd, 0xf9, 0xfd, 0x51, 0xfe, 0xaf, 0xfe, 0x09, 0xff, 0x63, 0xff, 0xc3, 0xff, 0x1d, 0x00, 0x7d, 0x00, 0xdc, 0x00, 0x39, 0x01, 0x9a, 0x01, 0xf6, 0x01, 0x57, 0x02, 0xb3, 0x02, 0x17, 0x03, 0x71, 0x03, 0xd1, 0x03, 0x30, 0x04, 0x8e, 0x04, 0xeb, 0x04, 0x46, 0x05, 0x9f, 0x05, 0xfa, 0x05, 0x53, 0x06, 0xab, 0x06, 0x03, 0x07, 0x56, 0x07, 0xaa, 0x07, 0xfe, 0x07, 0x4a, 0x08, 0x9f, 0x08, 0xea, 0x08, 0x37, 0x09, 0x80, 0x09, 0xca, 0x09, 0x10, 0x0a, 0x51, 0x0a, 0x97, 0x0a, 0xd4, 0x0a, 0x12, 0x0b, 0x4a, 0x0b, 0x87, 0x0b, 0xbd, 0x0b, 0xf2, 0x0b, 0x28, 0x0c, 0x58, 0x0c, 0x88, 0x0c, 0xb4, 0x0c, 0xe4, 0x0c, 0x0a, 0x0d, 0x37, 0x0d, 0x5c, 0x0d, 0x85, 0x0d, 0xac, 0x0d, 0xc9, 0x0d, 0xef, 0x0d, 0x0d, 0x0e, 0x2f, 0x0e, 0x4a, 0x0e, 0x66, 0x0e, 0x85, 0x0e, 0x9c, 0x0e, 0xb5, 0x0e, 0xc8, 0x0e, 0xdf, 0x0e, 0xf4, 0x0e, 0x08, 0x0f, 0x1a, 0x0f, 0x2c, 0x0f, 0x40, 0x0f, 0x4e, 0x0f, 0x5d, 0x0f, 0x68, 0x0f, 0x74, 0x0f, 0x7d, 0x0f, 0x86, 0x0f, 0x8c, 0x0f, 0x8f, 0x0f, 0x92, 0x0f, 0x95, 0x0f, 0x96, 0x0f, 0x92, 0x0f, 0x92, 0x0f, 0x8d, 0x0f, 0x86, 0x0f, 0x86, 0x0f, 0x7e, 0x0f, 0x77, 0x0f, 0x6f, 0x0f, 0x67, 0x0f, 0x61, 0x0f, 0x57, 0x0f, 0x50, 0x0f, 0x47, 0x0f, 0x3c, 0x0f, 0x2f, 0x0f, 0x20, 0x0f, 0x10, 0x0f, 0x01, 0x0f, 0xf0, 0x0e, 0xdf, 0x0e, 0xcf, 0x0e, 0xb7, 0x0e, 0xa2, 0x0e, 0x8e, 0x0e, 0x75, 0x0e, 0x60, 0x0e, 0x46, 0x0e, 0x29, 0x0e, 0x0f, 0x0e, 0xf5, 0x0d, 0xd7, 0x0d, 0xb8, 0x0d, 0x99, 0x0d, 0x77, 0x0d, 0x52, 0x0d, 0x2e, 0x0d, 0x04, 0x0d, 0xda, 0x0c, 0xaf, 0x0c, 0x82, 0x0c, 0x4e, 0x0c, 0x19, 0x0c, 0xe5, 0x0b, 0xaa, 0x0b, 0x6f, 0x0b, 0x36, 0x0b, 0xf7, 0x0a, 0xb8, 0x0a, 0x76, 0x0a, 0x31, 0x0a, 0xf5, 0x09, 0xa9, 0x09, 0x66, 0x09, 0x1a, 0x09, 0xcf, 0x08, 0x84, 0x08, 0x39, 0x08, 0xeb, 0x07, 0x9a, 0x07, 0x4b, 0x07, 0xf4, 0x06, 0xa2, 0x06, 0x4c, 0x06, 0xf7, 0x05, 0x9f, 0x05, 0x46, 0x05, 0xeb, 0x04, 0x92, 0x04, 0x33, 0x04, 0xdd, 0x03, 0x7d, 0x03, 0x21, 0x03, 0xc5, 0x02, 0x67, 0x02, 0x0f, 0x02, 0xaf, 0x01, 0x55, 0x01, 0xfa, 0x00, 0xa1, 0x00, 0x41, 0x00, 0xea, 0xff, 0x8c, 0xff, 0x33, 0xff, 0xd9, 0xfe, 0x78, 0xfe, 0x24, 0xfe, 0xc7, 0xfd, 0x6d, 0xfd, 0x13, 0xfd, 0xbf, 0xfc, 0x63, 0xfc, 0x0b, 0xfc, 0xba, 0xfb, 0x64, 0xfb, 0x11, 0xfb, 0xbe, 0xfa, 0x70, 0xfa, 0x22, 0xfa, 0xd5, 0xf9, 0x85, 0xf9, 0x3d, 0xf9, 0xf0, 0xf8, 0xa8, 0xf8, 0x56, 0xf8, 0x10, 0xf8, 0xc8, 0xf7, 0x80, 0xf7, 0x39, 0xf7, 0xf0, 0xf6, 0xb0, 0xf6, 0x6a, 0xf6, 0x2f, 0xf6, 0xee, 0xf5, 0xaf, 0xf5, 0x6c, 0xf5, 0x33, 0xf5, 0xf7, 0xf4, 0xbf, 0xf4, 0x86, 0xf4, 0x4c, 0xf4, 0x1b, 0xf4, 0xe3, 0xf3, 0xb3, 0xf3, 0x81, 0xf3, 0x53, 0xf3, 0x27, 0xf3, 0xfb, 0xf2, 0xd4, 0xf2, 0xab, 0xf2, 0x89, 0xf2, 0x69, 0xf2, 0x49, 0xf2, 0x2c, 0xf2, 0x10, 0xf2, 0xf4, 0xf1, 0xdf, 0xf1, 0xc3, 0xf1, 0xb0, 0xf1, 0x98, 0xf1, 0x86, 0xf1, 0x73, 0xf1, 0x61, 0xf1, 0x51, 0xf1, 0x41, 0xf1, 0x33, 0xf1, 0x24, 0xf1, 0x17, 0xf1, 0x10, 0xf1, 0x09, 0xf1, 0x04, 0xf1, 0xff, 0xf0, 0xfa, 0xf0, 0xfb, 0xf0, 0x01, 0xf1, 0x03, 0xf1, 0x0c, 0xf1, 0x12, 0xf1, 0x19, 0xf1, 0x26, 0xf1, 0x31, 0xf1, 0x39, 0xf1, 0x49, 0xf1, 0x56, 0xf1, 0x61, 0xf1, 0x73, 0xf1, 0x82, 0xf1, 0x94, 0xf1, 0xa9, 0xf1, 0xba, 0xf1, 0xd1, 0xf1, 0xe4, 0xf1, 0x00, 0xf2, 0x18, 0xf2, 0x31, 0xf2, 0x4e, 0xf2, 0x69, 0xf2, 0x88, 0xf2, 0xa4, 0xf2, 0xc7, 0xf2, 0xe8, 0xf2, 0x09, 0xf3, 0x2c, 0xf3, 0x51, 0xf3, 0x78, 0xf3, 0x9b, 0xf3, 0xc6, 0xf3, 0xe9, 0xf3, 0x12, 0xf4, 0x40, 0xf4, 0x69, 0xf4, 0x98, 0xf4, 0xc4, 0xf4, 0xf3, 0xf4, 0x29, 0xf5, 0x59, 0xf5, 0x8e, 0xf5, 0xc0, 0xf5, 0xf7, 0xf5, 0x31, 0xf6, 0x6a, 0xf6, 0xa8, 0xf6, 0xe6, 0xf6, 0x26, 0xf7, 0x67, 0xf7, 0xab, 0xf7, 0xf3, 0xf7, 0x3c, 0xf8, 0x89, 0xf8, 0xd5, 0xf8, 0x24, 0xf9, 0x71, 0xf9, 0xc2, 0xf9, 0x12, 0xfa, 0x61, 0xfa, 0xb5, 0xfa, 0x01, 0xfb, 0x54, 0xfb, 0xa5, 0xfb, 0xf4, 0xfb, 0x3f, 0xfc, 0x91, 0xfc, 0xe1, 0xfc, 0x29, 0xfd, 0x77, 0xfd, 0xc1, 0xfd, 0x0a, 0xfe, 0x57, 0xfe, 0x9f, 0xfe, 0xe8, 0xfe, 0x30, 0xff, 0x77, 0xff, 0xbd, 0xff, 0x01, 0x00, 0x47, 0x00, 0x8e, 0x00, 0xd1, 0x00, 0x16, 0x01, 0x5b, 0x01, 0xa2, 0x01, 0xe4, 0x01, 0x27, 0x02, 0x69, 0x02, 0xad, 0x02, 0xed, 0x02, 0x2f, 0x03, 0x71, 0x03, 0xb3, 0x03, 0xf5, 0x03, 0x37, 0x04, 0x7a, 0x04, 0xbb, 0x04, 0xfe, 0x04, 0x3f, 0x05, 0x83, 0x05, 0xc6, 0x05, 0x06, 0x06, 0x4c, 0x06, 0x8b, 0x06, 0xcb, 0x06, 0x0e, 0x07, 0x4b, 0x07, 0x8b, 0x07, 0xc7, 0x07, 0x06, 0x08, 0x3f, 0x08, 0x7e, 0x08, 0xb5, 0x08, 0xee, 0x08, 0x24, 0x09, 0x56, 0x09, 0x88, 0x09, 0xb8, 0x09, 0xe8, 0x09, 0x14, 0x0a, 0x3e, 0x0a, 0x69, 0x0a, 0x94, 0x0a, 0xb7, 0x0a, 0xdf, 0x0a, 0x00, 0x0b, 0x20, 0x0b, 0x3d, 0x0b, 0x5a, 0x0b, 0x77, 0x0b, 0x8e, 0x0b, 0xa6, 0x0b, 0xbe, 0x0b, 0xd5, 0x0b, 0xe9, 0x0b, 0xfd, 0x0b, 0x0f, 0x0c, 0x1f, 0x0c, 0x31, 0x0c, 0x44, 0x0c, 0x57, 0x0c, 0x67, 0x0c, 0x7e, 0x0c, 0x8f, 0x0c, 0xa7, 0x0c, 0xb7, 0x0c, 0xce, 0x0c, 0xe0, 0x0c, 0xf5, 0x0c, 0x05, 0x0d, 0x17, 0x0d, 0x28, 0x0d, 0x37, 0x0d, 0x44, 0x0d, 0x4c, 0x0d, 0x58, 0x0d, 0x5f, 0x0d, 0x67, 0x0d, 0x6a, 0x0d, 0x6e, 0x0d, 0x70, 0x0d, 0x72, 0x0d, 0x70, 0x0d, 0x70, 0x0d, 0x70, 0x0d, 0x69, 0x0d, 0x65, 0x0d, 0x5f, 0x0d, 0x56, 0x0d, 0x4c, 0x0d, 0x42, 0x0d, 0x34, 0x0d, 0x22, 0x0d, 0x12, 0x0d, 0xfc, 0x0c, 0xe6, 0x0c, 0xce, 0x0c, 0xb2, 0x0c, 0x96, 0x0c, 0x75, 0x0c, 0x56, 0x0c, 0x2f, 0x0c, 0x0c, 0x0c, 0xe0, 0x0b, 0xba, 0x0b, 0x90, 0x0b, 0x68, 0x0b, 0x3c, 0x0b, 0x0c, 0x0b, 0xdc, 0x0a, 0xa8, 0x0a, 0x76, 0x0a, 0x42, 0x0a, 0x0a, 0x0a, 0xcf, 0x09, 0x96, 0x09, 0x58, 0x09, 0x17, 0x09, 0xd6, 0x08, 0x96, 0x08, 0x4f, 0x08, 0x06, 0x08, 0xbf, 0x07, 0x77, 0x07, 0x2e, 0x07, 0xdf, 0x06, 0x96, 0x06, 0x47, 0x06, 0xff, 0x05, 0xaf, 0x05, 0x63, 0x05, 0x18, 0x05, 0xcb, 0x04, 0x83, 0x04, 0x37, 0x04, 0xef, 0x03, 0xa3, 0x03, 0x59, 0x03, 0x0b, 0x03, 0xc3, 0x02, 0x79, 0x02, 0x2d, 0x02, 0xe2, 0x01, 0x9a, 0x01, 0x4e, 0x01, 0x07, 0x01, 0xbf, 0x00, 0x79, 0x00, 0x32, 0x00, 0xf0, 0xff, 0xad, 0xff, 0x66, 0xff, 0x27, 0xff, 0xea, 0xfe, 0xa8, 0xfe, 0x6a, 0xfe, 0x2e, 0xfe, 0xf1, 0xfd, 0xb7, 0xfd, 0x7f, 0xfd, 0x45, 0xfd, 0x11, 0xfd, 0xdb, 0xfc, 0xa7, 0xfc, 0x71, 0xfc, 0x41, 0xfc, 0x11, 0xfc, 0xde, 0xfb, 0xad, 0xfb, 0x81, 0xfb, 0x54, 0xfb, 0x24, 0xfb, 0xf5, 0xfa, 0xc8, 0xfa, 0x9d, 0xfa, 0x6d, 0xfa, 0x3d, 0xfa, 0x0d, 0xfa, 0xda, 0xf9, 0xaa, 0xf9, 0x7d, 0xf9, 0x4d, 0xf9, 0x1a, 0xf9, 0xf0, 0xf8, 0xb8, 0xf8, 0x8d, 0xf8, 0x5a, 0xf8, 0x29, 0xf8, 0xfe, 0xf7, 0xd0, 0xf7, 0xa2, 0xf7, 0x71, 0xf7, 0x46, 0xf7, 0x16, 0xf7, 0xe9, 0xf6, 0xbf, 0xf6, 0x92, 0xf6, 0x62, 0xf6, 0x3a, 0xf6, 0x11, 0xf6, 0xe8, 0xf5, 0xbe, 0xf5, 0x99, 0xf5, 0x74, 0xf5, 0x51, 0xf5, 0x2e, 0xf5, 0x11, 0xf5, 0xf4, 0xf4, 0xd7, 0xf4, 0xbe, 0xf4, 0xa3, 0xf4, 0x91, 0xf4, 0x7b, 0xf4, 0x69, 0xf4, 0x56, 0xf4, 0x49, 0xf4, 0x3a, 0xf4, 0x31, 0xf4, 0x24, 0xf4, 0x1c, 0xf4, 0x17, 0xf4, 0x0e, 0xf4, 0x0c, 0xf4, 0x03, 0xf4, 0x01, 0xf4, 0xfe, 0xf3, 0xfa, 0xf3, 0xfb, 0xf3, 0xf6, 0xf3, 0xf9, 0xf3, 0xf8, 0xf3, 0xf1, 0xf3, 0xf0, 0xf3, 0xeb, 0xf3, 0xeb, 0xf3, 0xe9, 0xf3, 0xe7, 0xf3, 0xe3, 0xf3, 0xe1, 0xf3, 0xe0, 0xf3, 0xde, 0xf3, 0xe1, 0xf3, 0xe2, 0xf3, 0xe7, 0xf3, 0xe9, 0xf3, 0xf4, 0xf3, 0xf8, 0xf3, 0x04, 0xf4, 0x11, 0xf4, 0x1c, 0xf4, 0x2f, 0xf4, 0x3c, 0xf4, 0x52, 0xf4, 0x63, 0xf4, 0x7c, 0xf4, 0x91, 0xf4, 0xac, 0xf4, 0xc7, 0xf4, 0xe4, 0xf4, 0x07, 0xf5, 0x28, 0xf5, 0x4e, 0xf5, 0x71, 0xf5, 0x99, 0xf5, 0xc0, 0xf5, 0xe7, 0xf5, 0x13, 0xf6, 0x41, 0xf6, 0x6f, 0xf6, 0x9e, 0xf6, 0xce, 0xf6, 0x01, 0xf7, 0x37, 0xf7, 0x6e, 0xf7, 0xa7, 0xf7, 0xdf, 0xf7, 0x1d, 0xf8, 0x59, 0xf8, 0x99, 0xf8, 0xdd, 0xf8, 0x1d, 0xf9, 0x60, 0xf9, 0xa5, 0xf9, 0xec, 0xf9, 0x31, 0xfa, 0x79, 0xfa, 0xc4, 0xfa, 0x0c, 0xfb, 0x55, 0xfb, 0xa1, 0xfb, 0xe9, 0xfb, 0x39, 0xfc, 0x81, 0xfc, 0xcf, 0xfc, 0x15, 0xfd, 0x63, 0xfd, 0xaf, 0xfd, 0xf5, 0xfd, 0x42, 0xfe, 0x88, 0xfe, 0xcf, 0xfe, 0x14, 0xff, 0x5a, 0xff, 0x9f, 0xff, 0xe0, 0xff, 0x26, 0x00, 0x64, 0x00, 0xa4, 0x00, 0xeb, 0x00, 0x28, 0x01, 0x6d, 0x01, 0xac, 0x01, 0xee, 0x01, 0x2f, 0x02, 0x6f, 0x02, 0xb1, 0x02, 0xf3, 0x02, 0x31, 0x03, 0x73, 0x03, 0xb3, 0x03, 0xf3, 0x03, 0x34, 0x04, 0x73, 0x04, 0xb6, 0x04, 0xef, 0x04, 0x30, 0x05, 0x6f, 0x05, 0xae, 0x05, 0xec, 0x05, 0x26, 0x06, 0x64, 0x06, 0x9b, 0x06, 0xd7, 0x06, 0x10, 0x07, 0x4a, 0x07, 0x82, 0x07, 0xb8, 0x07, 0xf0, 0x07, 0x27, 0x08, 0x5a, 0x08, 0x8e, 0x08, 0xc0, 0x08, 0xf4, 0x08, 0x24, 0x09, 0x54, 0x09, 0x82, 0x09, 0xa9, 0x09, 0xd5, 0x09, 0xf8, 0x09, 0x25, 0x0a, 0x46, 0x0a, 0x67, 0x0a, 0x88, 0x0a, 0xa6, 0x0a, 0xc0, 0x0a, 0xd9, 0x0a, 0xf5, 0x0a, 0x09, 0x0b, 0x25, 0x0b, 0x32, 0x0b, 0x48, 0x0b, 0x59, 0x0b, 0x64, 0x0b, 0x72, 0x0b, 0x7e, 0x0b, 0x87, 0x0b, 0x8e, 0x0b, 0x97, 0x0b, 0x99, 0x0b, 0x9c, 0x0b, 0xa1, 0x0b, 0xa2, 0x0b, 0xa2, 0x0b, 0xa2, 0x0b, 0xa1, 0x0b, 0x9f, 0x0b, 0x9d, 0x0b, 0x99, 0x0b, 0x94, 0x0b, 0x90, 0x0b, 0x8d, 0x0b, 0x87, 0x0b, 0x81, 0x0b, 0x7f, 0x0b, 0x78, 0x0b, 0x72, 0x0b, 0x6f, 0x0b, 0x69, 0x0b, 0x69, 0x0b, 0x62, 0x0b, 0x60, 0x0b, 0x5a, 0x0b, 0x57, 0x0b, 0x4f, 0x0b, 0x47, 0x0b, 0x41, 0x0b, 0x34, 0x0b, 0x2d, 0x0b, 0x1e, 0x0b, 0x11, 0x0b, 0xfe, 0x0a, 0xea, 0x0a, 0xdc, 0x0a, 0xc1, 0x0a, 0xac, 0x0a, 0x91, 0x0a, 0x78, 0x0a, 0x58, 0x0a, 0x3d, 0x0a, 0x19, 0x0a, 0xf6, 0x09, 0xd4, 0x09, 0xad, 0x09, 0x86, 0x09, 0x59, 0x09, 0x31, 0x09, 0x07, 0x09, 0xd7, 0x08, 0xa8, 0x08, 0x78, 0x08, 0x45, 0x08, 0x15, 0x08, 0xdc, 0x07, 0xa7, 0x07, 0x73, 0x07, 0x3b, 0x07, 0x00, 0x07, 0xc6, 0x06, 0x8c, 0x06, 0x4e, 0x06, 0x12, 0x06, 0xd6, 0x05, 0x98, 0x05, 0x5b, 0x05, 0x1b, 0x05, 0xdf, 0x04, 0x9c, 0x04, 0x5f, 0x04, 0x23, 0x04, 0xe5, 0x03, 0xa7, 0x03, 0x65, 0x03, 0x2f, 0x03, 0xf1, 0x02, 0xb5, 0x02, 0x7b, 0x02, 0x41, 0x02, 0x09, 0x02, 0xd0, 0x01, 0x94, 0x01, 0x5b, 0x01, 0x25, 0x01, 0xef, 0x00, 0xb6, 0x00, 0x80, 0x00, 0x4a, 0x00, 0x11, 0x00, 0xdb, 0xff, 0xa7, 0xff, 0x72, 0xff, 0x3b, 0xff, 0x08, 0xff, 0xd2, 0xfe, 0x9d, 0xfe, 0x6c, 0xfe, 0x39, 0xfe, 0x06, 0xfe, 0xd5, 0xfd, 0xa5, 0xfd, 0x77, 0xfd, 0x47, 0xfd, 0x19, 0xfd, 0xeb, 0xfc, 0xc1, 0xfc, 0x93, 0xfc, 0x6b, 0xfc, 0x41, 0xfc, 0x17, 0xfc, 0xed, 0xfb, 0xc4, 0xfb, 0x99, 0xfb, 0x70, 0xfb, 0x49, 0xfb, 0x1a, 0xfb, 0xf1, 0xfa, 0xc1, 0xfa, 0x94, 0xfa, 0x65, 0xfa, 0x39, 0xfa, 0x0a, 0xfa, 0xd6, 0xf9, 0xa8, 0xf9, 0x79, 0xf9, 0x45, 0xf9, 0x18, 0xf9, 0xe5, 0xf8, 0xb5, 0xf8, 0x86, 0xf8, 0x54, 0xf8, 0x2a, 0xf8, 0xfa, 0xf7, 0xd1, 0xf7, 0xa9, 0xf7, 0x79, 0xf7, 0x54, 0xf7, 0x2b, 0xf7, 0x04, 0xf7, 0xde, 0xf6, 0xb9, 0xf6, 0x94, 0xf6, 0x71, 0xf6, 0x4e, 0xf6, 0x2c, 0xf6, 0x0e, 0xf6, 0xea, 0xf5, 0xcc, 0xf5, 0xaf, 0xf5, 0x92, 0xf5, 0x79, 0xf5, 0x62, 0xf5, 0x49, 0xf5, 0x36, 0xf5, 0x21, 0xf5, 0x10, 0xf5, 0x02, 0xf5, 0xf7, 0xf4, 0xee, 0xf4, 0xe6, 0xf4, 0xdf, 0xf4, 0xd9, 0xf4, 0xd9, 0xf4, 0xd9, 0xf4, 0xdc, 0xf4, 0xdf, 0xf4, 0xe1, 0xf4, 0xea, 0xf4, 0xf1, 0xf4, 0xf9, 0xf4, 0x03, 0xf5, 0x0f, 0xf5, 0x1b, 0xf5, 0x27, 0xf5, 0x37, 0xf5, 0x44, 0xf5, 0x53, 0xf5, 0x63, 0xf5, 0x78, 0xf5, 0x8a, 0xf5, 0x9c, 0xf5, 0xb1, 0xf5, 0xc9, 0xf5, 0xde, 0xf5, 0xf9, 0xf5, 0x0e, 0xf6, 0x26, 0xf6, 0x3e, 0xf6, 0x5b, 0xf6, 0x78, 0xf6, 0x94, 0xf6, 0xb6, 0xf6, 0xd1, 0xf6, 0xf6, 0xf6, 0x12, 0xf7, 0x38, 0xf7, 0x59, 0xf7, 0x7f, 0xf7, 0xa1, 0xf7, 0xc4, 0xf7, 0xe9, 0xf7, 0x12, 0xf8, 0x36, 0xf8, 0x61, 0xf8, 0x8a, 0xf8, 0xb1, 0xf8, 0xe1, 0xf8, 0x0d, 0xf9, 0x38, 0xf9, 0x6a, 0xf9, 0x98, 0xf9, 0xc9, 0xf9, 0xfc, 0xf9, 0x2c, 0xfa, 0x61, 0xfa, 0x91, 0xfa, 0xc5, 0xfa, 0xf1, 0xfa, 0x25, 0xfb, 0x55, 0xfb, 0x88, 0xfb, 0xb6, 0xfb, 0xe9, 0xfb, 0x19, 0xfc, 0x45, 0xfc, 0x83, 0xfc, 0xad, 0xfc, 0xe5, 0xfc, 0x19, 0xfd, 0x49, 0xfd, 0x7d, 0xfd, 0xb1, 0xfd, 0xe5, 0xfd, 0x1b, 0xfe, 0x4f, 0xfe, 0x87, 0xfe, 0xbd, 0xfe, 0xf3, 0xfe, 0x2a, 0xff, 0x62, 0xff, 0x9b, 0xff, 0xd4, 0xff, 0x0d, 0x00, 0x46, 0x00, 0x7d, 0x00, 0xb5, 0x00, 0xee, 0x00, 0x27, 0x01, 0x5e, 0x01, 0x97, 0x01, 0xcf, 0x01, 0x03, 0x02, 0x39, 0x02, 0x6f, 0x02, 0xa5, 0x02, 0xdb, 0x02, 0x09, 0x03, 0x3f, 0x03, 0x71, 0x03, 0xa1, 0x03, 0xd1, 0x03, 0xfd, 0x03, 0x2b, 0x04, 0x57, 0x04, 0x84, 0x04, 0xaa, 0x04, 0xd7, 0x04, 0xfc, 0x04, 0x20, 0x05, 0x4b, 0x05, 0x6b, 0x05, 0x93, 0x05, 0xb7, 0x05, 0xdb, 0x05, 0xfc, 0x05, 0x23, 0x06, 0x4a, 0x06, 0x6b, 0x06, 0x8c, 0x06, 0xb0, 0x06, 0xd4, 0x06, 0xfb, 0x06, 0x18, 0x07, 0x3a, 0x07, 0x5b, 0x07, 0x7b, 0x07, 0x9c, 0x07, 0xb8, 0x07, 0xdb, 0x07, 0xf7, 0x07, 0x15, 0x08, 0x32, 0x08, 0x51, 0x08, 0x6c, 0x08, 0x87, 0x08, 0xa5, 0x08, 0xbd, 0x08, 0xdc, 0x08, 0xf6, 0x08, 0x10, 0x09, 0x2c, 0x09, 0x3f, 0x09, 0x5c, 0x09, 0x71, 0x09, 0x87, 0x09, 0x9e, 0x09, 0xad, 0x09, 0xbf, 0x09, 0xcf, 0x09, 0xdd, 0x09, 0xe9, 0x09, 0xf1, 0x09, 0xff, 0x09, 0x09, 0x0a, 0x10, 0x0a, 0x1c, 0x0a, 0x1f, 0x0a, 0x26, 0x0a, 0x28, 0x0a, 0x2f, 0x0a, 0x30, 0x0a, 0x37, 0x0a, 0x39, 0x0a, 0x39, 0x0a, 0x3f, 0x0a, 0x3e, 0x0a, 0x3f, 0x0a, 0x44, 0x0a, 0x44, 0x0a, 0x44, 0x0a, 0x46, 0x0a, 0x46, 0x0a, 0x46, 0x0a, 0x47, 0x0a, 0x46, 0x0a, 0x44, 0x0a, 0x44, 0x0a, 0x3f, 0x0a, 0x3f, 0x0a, 0x39, 0x0a, 0x35, 0x0a, 0x34, 0x0a, 0x26, 0x0a, 0x1f, 0x0a, 0x16, 0x0a, 0x07, 0x0a, 0xf8, 0x09, 0xe6, 0x09, 0xd4, 0x09, 0xbd, 0x09, 0xa5, 0x09, 0x88, 0x09, 0x68, 0x09, 0x4d, 0x09, 0x27, 0x09, 0x01, 0x09, 0xde, 0x08, 0xb4, 0x08, 0x84, 0x08, 0x59, 0x08, 0x29, 0x08, 0xfa, 0x07, 0xca, 0x07, 0x93, 0x07, 0x5f, 0x07, 0x2b, 0x07, 0xf2, 0x06, 0xba, 0x06, 0x87, 0x06, 0x4e, 0x06, 0x17, 0x06, 0xdb, 0x05, 0xa8, 0x05, 0x6f, 0x05, 0x3b, 0x05, 0x06, 0x05, 0xce, 0x04, 0x9e, 0x04, 0x67, 0x04, 0x33, 0x04, 0xff, 0x03, 0xcb, 0x03, 0x95, 0x03, 0x5d, 0x03, 0x29, 0x03, 0xf5, 0x02, 0xc1, 0x02, 0x87, 0x02, 0x51, 0x02, 0x17, 0x02, 0xe1, 0x01, 0xa9, 0x01, 0x6f, 0x01, 0x3a, 0x01, 0xfd, 0x00, 0xc5, 0x00, 0x8b, 0x00, 0x52, 0x00, 0x17, 0x00, 0xdd, 0xff, 0xa5, 0xff, 0x6e, 0xff, 0x33, 0xff, 0xfc, 0xfe, 0xc1, 0xfe, 0x8b, 0xfe, 0x55, 0xfe, 0x1e, 0xfe, 0xe7, 0xfd, 0xb5, 0xfd, 0x7d, 0xfd, 0x47, 0xfd, 0x11, 0xfd, 0xd7, 0xfc, 0xa3, 0xfc, 0x6b, 0xfc, 0x35, 0xfc, 0xfd, 0xfb, 0xc4, 0xfb, 0x90, 0xfb, 0x54, 0xfb, 0x1e, 0xfb, 0xe5, 0xfa, 0xb1, 0xfa, 0x76, 0xfa, 0x45, 0xfa, 0x0d, 0xfa, 0xd8, 0xf9, 0xa1, 0xf9, 0x6a, 0xf9, 0x3a, 0xf9, 0x05, 0xf9, 0xd5, 0xf8, 0xa0, 0xf8, 0x6e, 0xf8, 0x3e, 0xf8, 0x06, 0xf8, 0xdb, 0xf7, 0xac, 0xf7, 0x7f, 0xf7, 0x54, 0xf7, 0x29, 0xf7, 0x01, 0xf7, 0xd9, 0xf6, 0xb3, 0xf6, 0x91, 0xf6, 0x6e, 0xf6, 0x4e, 0xf6, 0x2b, 0xf6, 0x0a, 0xf6, 0xf2, 0xf5, 0xd4, 0xf5, 0xba, 0xf5, 0xa2, 0xf5, 0x8e, 0xf5, 0x74, 0xf5, 0x66, 0xf5, 0x51, 0xf5, 0x44, 0xf5, 0x37, 0xf5, 0x29, 0xf5, 0x1f, 0xf5, 0x1a, 0xf5, 0x11, 0xf5, 0x09, 0xf5, 0x07, 0xf5, 0x01, 0xf5, 0x00, 0xf5, 0xfa, 0xf4, 0xf8, 0xf4, 0xf8, 0xf4, 0xfa, 0xf4, 0xf8, 0xf4, 0xfa, 0xf4, 0xfe, 0xf4, 0x00, 0xf5, 0x03, 0xf5, 0x09, 0xf5, 0x12, 0xf5, 0x18, 0xf5, 0x21, 0xf5, 0x29, 0xf5, 0x32, 0xf5, 0x3f, 0xf5, 0x46, 0xf5, 0x51, 0xf5, 0x5a, 0xf5, 0x67, 0xf5, 0x76, 0xf5, 0x83, 0xf5, 0x90, 0xf5, 0xa1, 0xf5, 0xb1, 0xf5, 0xc1, 0xf5, 0xd4, 0xf5, 0xe7, 0xf5, 0xfc, 0xf5, 0x13, 0xf6, 0x26, 0xf6, 0x3f, 0xf6, 0x59, 0xf6, 0x71, 0xf6, 0x8c, 0xf6, 0xaa, 0xf6, 0xc4, 0xf6, 0xe3, 0xf6, 0x07, 0xf7, 0x28, 0xf7, 0x49, 0xf7, 0x70, 0xf7, 0x91, 0xf7, 0xba, 0xf7, 0xe4, 0xf7, 0x0d, 0xf8, 0x3c, 0xf8, 0x64, 0xf8, 0x91, 0xf8, 0xbd, 0xf8, 0xea, 0xf8, 0x19, 0xf9, 0x4d, 0xf9, 0x7d, 0xf9, 0xaa, 0xf9, 0xdd, 0xf9, 0x10, 0xfa, 0x42, 0xfa, 0x79, 0xfa, 0xac, 0xfa, 0xe2, 0xfa, 0x18, 0xfb, 0x4e, 0xfb, 0x89, 0xfb, 0xc0, 0xfb, 0xfc, 0xfb, 0x35, 0xfc, 0x77, 0xfc, 0xb1, 0xfc, 0xef, 0xfc, 0x2f, 0xfd, 0x73, 0xfd, 0xb5, 0xfd, 0xf7, 0xfd, 0x3c, 0xfe, 0x82, 0xfe, 0xc4, 0xfe, 0x0c, 0xff, 0x50, 0xff, 0x92, 0xff, 0xda, 0xff, 0x1a, 0x00, 0x5e, 0x00, 0xa0, 0x00, 0xe0, 0x00, 0x21, 0x01, 0x60, 0x01, 0xa2, 0x01, 0xde, 0x01, 0x1d, 0x02, 0x5d, 0x02, 0x93, 0x02, 0xd1, 0x02, 0x0b, 0x03, 0x45, 0x03, 0x7d, 0x03, 0xb3, 0x03, 0xe9, 0x03, 0x18, 0x04, 0x4f, 0x04, 0x7f, 0x04, 0xb2, 0x04, 0xdf, 0x04, 0x0c, 0x05, 0x38, 0x05, 0x63, 0x05, 0x8e, 0x05, 0xb3, 0x05, 0xde, 0x05, 0x0b, 0x06, 0x2c, 0x06, 0x56, 0x06, 0x7b, 0x06, 0xa3, 0x06, 0xcb, 0x06, 0xef, 0x06, 0x18, 0x07, 0x3c, 0x07, 0x64, 0x07, 0x8e, 0x07, 0xb3, 0x07, 0xda, 0x07, 0xff, 0x07, 0x21, 0x08, 0x45, 0x08, 0x6c, 0x08, 0x8a, 0x08, 0xae, 0x08, 0xc8, 0x08, 0xea, 0x08, 0x05, 0x09, 0x1e, 0x09, 0x38, 0x09, 0x52, 0x09, 0x6c, 0x09, 0x80, 0x09, 0x9a, 0x09, 0xaa, 0x09, 0xbf, 0x09, 0xd0, 0x09, 0xe0, 0x09, 0xf2, 0x09, 0x00, 0x0a, 0x10, 0x0a, 0x1f, 0x0a, 0x2a, 0x0a, 0x35, 0x0a, 0x3f, 0x0a, 0x47, 0x0a, 0x4f, 0x0a, 0x58, 0x0a, 0x5f, 0x0a, 0x67, 0x0a, 0x69, 0x0a, 0x6a, 0x0a, 0x6e, 0x0a, 0x72, 0x0a, 0x6e, 0x0a, 0x6e, 0x0a, 0x69, 0x0a, 0x64, 0x0a, 0x60, 0x0a, 0x57, 0x0a, 0x4f, 0x0a, 0x42, 0x0a, 0x35, 0x0a, 0x28, 0x0a, 0x16, 0x0a, 0x01, 0x0a, 0xe9, 0x09, 0xd5, 0x09, 0xb9, 0x09, 0x9f, 0x09, 0x80, 0x09, 0x62, 0x09, 0x44, 0x09, 0x1f, 0x09, 0xff, 0x08, 0xda, 0x08, 0xb5, 0x08, 0x8e, 0x08, 0x68, 0x08, 0x3f, 0x08, 0x17, 0x08, 0xef, 0x07, 0xc2, 0x07, 0x9a, 0x07, 0x6a, 0x07, 0x43, 0x07, 0x13, 0x07, 0xe3, 0x06, 0xb8, 0x06, 0x8b, 0x06, 0x5b, 0x06, 0x32, 0x06, 0xff, 0x05, 0xd4, 0x05, 0xab, 0x05, 0x7b, 0x05, 0x4f, 0x05, 0x22, 0x05, 0xf7, 0x04, 0xcc, 0x04, 0x9f, 0x04, 0x78, 0x04, 0x4f, 0x04, 0x22, 0x04, 0xfb, 0x03, 0xd1, 0x03, 0xa7, 0x03, 0x81, 0x03, 0x53, 0x03, 0x2d, 0x03, 0x05, 0x03, 0xdb, 0x02, 0xb1, 0x02, 0x8b, 0x02, 0x63, 0x02, 0x3d, 0x02, 0x15, 0x02, 0xee, 0x01, 0xc9, 0x01, 0xa0, 0x01, 0x7b, 0x01, 0x58, 0x01, 0x30, 0x01, 0x0d, 0x01, 0xe6, 0x00, 0xc2, 0x00, 0x9e, 0x00, 0x7c, 0x00, 0x59, 0x00, 0x34, 0x00, 0x10, 0x00, 0xef, 0xff, 0xcc, 0xff, 0xa7, 0xff, 0x86, 0xff, 0x60, 0xff, 0x3e, 0xff, 0x1a, 0xff, 0xf7, 0xfe, 0xd8, 0xfe, 0xb2, 0xfe, 0x94, 0xfe, 0x72, 0xfe, 0x4f, 0xfe, 0x2e, 0xfe, 0x0a, 0xfe, 0xeb, 0xfd, 0xc7, 0xfd, 0xad, 0xfd, 0x87, 0xfd, 0x67, 0xfd, 0x45, 0xfd, 0x23, 0xfd, 0x01, 0xfd, 0xdf, 0xfc, 0xbf, 0xfc, 0x95, 0xfc, 0x6f, 0xfc, 0x47, 0xfc, 0x21, 0xfc, 0xf6, 0xfb, 0xc9, 0xfb, 0xa5, 0xfb, 0x75, 0xfb, 0x49, 0xfb, 0x1c, 0xfb, 0xee, 0xfa, 0xc5, 0xfa, 0x96, 0xfa, 0x6d, 0xfa, 0x45, 0xfa, 0x19, 0xfa, 0xed, 0xf9, 0xc5, 0xf9, 0x9a, 0xf9, 0x71, 0xf9, 0x4a, 0xf9, 0x20, 0xf9, 0xfc, 0xf8, 0xd2, 0xf8, 0xb1, 0xf8, 0x8d, 0xf8, 0x6c, 0xf8, 0x4e, 0xf8, 0x2a, 0xf8, 0x11, 0xf8, 0xf3, 0xf7, 0xdb, 0xf7, 0xbe, 0xf7, 0xa7, 0xf7, 0x91, 0xf7, 0x77, 0xf7, 0x61, 0xf7, 0x4f, 0xf7, 0x39, 0xf7, 0x29, 0xf7, 0x19, 0xf7, 0x0a, 0xf7, 0xfe, 0xf6, 0xef, 0xf6, 0xe3, 0xf6, 0xdc, 0xf6, 0xd3, 0xf6, 0xca, 0xf6, 0xc6, 0xf6, 0xc1, 0xf6, 0xc1, 0xf6, 0xbf, 0xf6, 0xbb, 0xf6, 0xb9, 0xf6, 0xbc, 0xf6, 0xbb, 0xf6, 0xbc, 0xf6, 0xc1, 0xf6, 0xc2, 0xf6, 0xc8, 0xf6, 0xce, 0xf6, 0xd3, 0xf6, 0xd8, 0xf6, 0xe1, 0xf6, 0xe9, 0xf6, 0xf2, 0xf6, 0xfa, 0xf6, 0x08, 0xf7, 0x11, 0xf7, 0x1c, 0xf7, 0x2b, 0xf7, 0x3a, 0xf7, 0x4b, 0xf7, 0x5b, 0xf7, 0x6c, 0xf7, 0x7f, 0xf7, 0x93, 0xf7, 0xa6, 0xf7, 0xbb, 0xf7, 0xd0, 0xf7, 0xe9, 0xf7, 0xfc, 0xf7, 0x18, 0xf8, 0x2d, 0xf8, 0x4c, 0xf8, 0x66, 0xf8, 0x81, 0xf8, 0xa2, 0xf8, 0xbd, 0xf8, 0xe1, 0xf8, 0x01, 0xf9, 0x26, 0xf9, 0x49, 0xf9, 0x6d, 0xf9, 0x95, 0xf9, 0xb9, 0xf9, 0xe4, 0xf9, 0x0d, 0xfa, 0x38, 0xfa, 0x65, 0xfa, 0x91, 0xfa, 0xbd, 0xfa, 0xed, 0xfa, 0x1c, 0xfb, 0x4d, 0xfb, 0x7a, 0xfb, 0xad, 0xfb, 0xdc, 0xfb, 0x09, 0xfc, 0x3b, 0xfc, 0x65, 0xfc, 0x95, 0xfc, 0xc3, 0xfc, 0xf1, 0xfc, 0x1f, 0xfd, 0x4f, 0xfd, 0x77, 0xfd, 0xa7, 0xfd, 0xd3, 0xfd, 0xfd, 0xfd, 0x2b, 0xfe, 0x52, 0xfe, 0x84, 0xfe, 0xab, 0xfe, 0xd6, 0xfe, 0x03, 0xff, 0x2c, 0xff, 0x5a, 0xff, 0x86, 0xff, 0xb0, 0xff, 0xde, 0xff, 0x08, 0x00, 0x37, 0x00, 0x61, 0x00, 0x92, 0x00, 0xc2, 0x00, 0xf2, 0x00, 0x1f, 0x01, 0x4c, 0x01, 0x7f, 0x01, 0xac, 0x01, 0xde, 0x01, 0x0f, 0x02, 0x3d, 0x02, 0x6f, 0x02, 0x9f, 0x02, 0xc9, 0x02, 0xff, 0x02, 0x29, 0x03, 0x59, 0x03, 0x8b, 0x03, 0xb5, 0x03, 0xe3, 0x03, 0x13, 0x04, 0x40, 0x04, 0x6c, 0x04, 0x97, 0x04, 0xc7, 0x04, 0xf7, 0x04, 0x1f, 0x05, 0x4f, 0x05, 0x7b, 0x05, 0xa7, 0x05, 0xd4, 0x05, 0xff, 0x05, 0x2b, 0x06, 0x53, 0x06, 0x7f, 0x06, 0xa7, 0x06, 0xd0, 0x06, 0xfb, 0x06, 0x1f, 0x07, 0x47, 0x07, 0x6c, 0x07, 0x8e, 0x07, 0xb3, 0x07, 0xd0, 0x07, 0xf3, 0x07, 0x11, 0x08, 0x2d, 0x08, 0x47, 0x08, 0x64, 0x08, 0x7e, 0x08, 0x94, 0x08, 0xac, 0x08, 0xbe, 0x08, 0xd7, 0x08, 0xe5, 0x08, 0xf7, 0x08, 0x0a, 0x09, 0x17, 0x09, 0x28, 0x09, 0x35, 0x09, 0x40, 0x09, 0x4e, 0x09, 0x57, 0x09, 0x5f, 0x09, 0x68, 0x09, 0x6f, 0x09, 0x77, 0x09, 0x79, 0x09, 0x7d, 0x09, 0x7e, 0x09, 0x7a, 0x09, 0x79, 0x09, 0x74, 0x09, 0x70, 0x09, 0x6a, 0x09, 0x61, 0x09, 0x57, 0x09, 0x4e, 0x09, 0x45, 0x09, 0x3a, 0x09, 0x2f, 0x09, 0x24, 0x09, 0x1d, 0x09, 0x0c, 0x09, 0xff, 0x08, 0xf7, 0x08, 0xe5, 0x08, 0xd8, 0x08, 0xc9, 0x08, 0xbd, 0x08, 0xaa, 0x08, 0x97, 0x08, 0x87, 0x08, 0x72, 0x08, 0x60, 0x08, 0x4f, 0x08, 0x3c, 0x08, 0x25, 0x08, 0x15, 0x08, 0xff, 0x07, 0xeb, 0x07, 0xd6, 0x07, 0xc7, 0x07, 0xac, 0x07, 0x97, 0x07, 0x84, 0x07, 0x6a, 0x07, 0x53, 0x07, 0x34, 0x07, 0x1a, 0x07, 0xfe, 0x06, 0xdb, 0x06, 0xc2, 0x06, 0x9f, 0x06, 0x7c, 0x06, 0x5b, 0x06, 0x36, 0x06, 0x14, 0x06, 0xef, 0x05, 0xc8, 0x05, 0xa4, 0x05, 0x7b, 0x05, 0x52, 0x05, 0x2a, 0x05, 0xfe, 0x04, 0xd0, 0x04, 0xa7, 0x04, 0x76, 0x04, 0x47, 0x04, 0x13, 0x04, 0xdf, 0x03, 0xad, 0x03, 0x73, 0x03, 0x3b, 0x03, 0x05, 0x03, 0xc7, 0x02, 0x8d, 0x02, 0x51, 0x02, 0x17, 0x02, 0xd8, 0x01, 0x99, 0x01, 0x58, 0x01, 0x1e, 0x01, 0xda, 0x00, 0x9a, 0x00, 0x5f, 0x00, 0x20, 0x00, 0xe1, 0xff, 0xa5, 0xff, 0x65, 0xff, 0x2c, 0xff, 0xf1, 0xfe, 0xaf, 0xfe, 0x79, 0xfe, 0x3f, 0xfe, 0x07, 0xfe, 0xcd, 0xfd, 0x97, 0xfd, 0x61, 0xfd, 0x29, 0xfd, 0xf5, 0xfc, 0xc1, 0xfc, 0x8d, 0xfc, 0x5b, 0xfc, 0x2b, 0xfc, 0xf9, 0xfb, 0xc9, 0xfb, 0x9c, 0xfb, 0x6e, 0xfb, 0x40, 0xfb, 0x18, 0xfb, 0xea, 0xfa, 0xc6, 0xfa, 0x98, 0xfa, 0x74, 0xfa, 0x4d, 0xfa, 0x28, 0xfa, 0x06, 0xfa, 0xe1, 0xf9, 0xc2, 0xf9, 0xa1, 0xf9, 0x81, 0xf9, 0x68, 0xf9, 0x4d, 0xf9, 0x31, 0xf9, 0x1a, 0xf9, 0x02, 0xf9, 0xe9, 0xf8, 0xd5, 0xf8, 0xc2, 0xf8, 0xb1, 0xf8, 0xa0, 0xf8, 0x91, 0xf8, 0x84, 0xf8, 0x75, 0xf8, 0x66, 0xf8, 0x5d, 0xf8, 0x55, 0xf8, 0x4a, 0xf8, 0x41, 0xf8, 0x39, 0xf8, 0x34, 0xf8, 0x2d, 0xf8, 0x28, 0xf8, 0x1e, 0xf8, 0x1d, 0xf8, 0x11, 0xf8, 0x0e, 0xf8, 0x09, 0xf8, 0x05, 0xf8, 0x00, 0xf8, 0xf9, 0xf7, 0xf8, 0xf7, 0xef, 0xf7, 0xeb, 0xf7, 0xe4, 0xf7, 0xdf, 0xf7, 0xd9, 0xf7, 0xd9, 0xf7, 0xd1, 0xf7, 0xca, 0xf7, 0xc9, 0xf7, 0xc1, 0xf7, 0xbb, 0xf7, 0xb6, 0xf7, 0xb8, 0xf7, 0xaf, 0xf7, 0xac, 0xf7, 0xab, 0xf7, 0xa9, 0xf7, 0xa7, 0xf7, 0xa9, 0xf7, 0xa9, 0xf7, 0xaf, 0xf7, 0xb6, 0xf7, 0xb9, 0xf7, 0xc3, 0xf7, 0xd0, 0xf7, 0xd3, 0xf7, 0xe6, 0xf7, 0xef, 0xf7, 0xf9, 0xf7, 0x0d, 0xf8, 0x1c, 0xf8, 0x2d, 0xf8, 0x3e, 0xf8, 0x51, 0xf8, 0x65, 0xf8, 0x7c, 0xf8, 0x90, 0xf8, 0xa5, 0xf8, 0xbd, 0xf8, 0xd5, 0xf8, 0xed, 0xf8, 0x09, 0xf9, 0x1d, 0xf9, 0x3a, 0xf9, 0x54, 0xf9, 0x6c, 0xf9, 0x89, 0xf9, 0xa5, 0xf9, 0xc5, 0xf9, 0xe1, 0xf9, 0x01, 0xfa, 0x21, 0xfa, 0x45, 0xfa, 0x66, 0xfa, 0x8c, 0xfa, 0xb0, 0xfa, 0xd5, 0xfa, 0xfd, 0xfa, 0x21, 0xfb, 0x4e, 0xfb, 0x72, 0xfb, 0x9d, 0xfb, 0xc9, 0xfb, 0xed, 0xfb, 0x1f, 0xfc, 0x41, 0xfc, 0x6d, 0xfc, 0x99, 0xfc, 0xc5, 0xfc, 0xef, 0xfc, 0x19, 0xfd, 0x45, 0xfd, 0x73, 0xfd, 0x9f, 0xfd, 0xc7, 0xfd, 0xf7, 0xfd, 0x24, 0xfe, 0x54, 0xfe, 0x81, 0xfe, 0xae, 0xfe, 0xdf, 0xfe, 0x0e, 0xff, 0x39, 0xff, 0x6b, 0xff, 0x9b, 0xff, 0xc9, 0xff, 0xf8, 0xff, 0x22, 0x00, 0x52, 0x00, 0x7d, 0x00, 0xac, 0x00, 0xd9, 0x00, 0x03, 0x01, 0x31, 0x01, 0x5d, 0x01, 0x8a, 0x01, 0xb8, 0x01, 0xe2, 0x01, 0x11, 0x02, 0x3d, 0x02, 0x69, 0x02, 0x99, 0x02, 0xc3, 0x02, 0xed, 0x02, 0x19, 0x03, 0x45, 0x03, 0x6f, 0x03, 0x9b, 0x03, 0xc5, 0x03, 0xeb, 0x03, 0x13, 0x04, 0x3a, 0x04, 0x5f, 0x04, 0x84, 0x04, 0xa8, 0x04, 0xcc, 0x04, 0xef, 0x04, 0x0f, 0x05, 0x2f, 0x05, 0x4e, 0x05, 0x6c, 0x05, 0x8a, 0x05, 0xa4, 0x05, 0xbf, 0x05, 0xdb, 0x05, 0xf6, 0x05, 0x0e, 0x06, 0x26, 0x06, 0x3e, 0x06, 0x53, 0x06, 0x6b, 0x06, 0x7e, 0x06, 0x96, 0x06, 0xaa, 0x06, 0xbf, 0x06, 0xd3, 0x06, 0xe3, 0x06, 0xf7, 0x06, 0x07, 0x07, 0x1c, 0x07, 0x2f, 0x07, 0x3f, 0x07, 0x54, 0x07, 0x60, 0x07, 0x70, 0x07, 0x7f, 0x07, 0x8b, 0x07, 0x97, 0x07, 0xa6, 0x07, 0xab, 0x07, 0xb3, 0x07, 0xbe, 0x07, 0xbe, 0x07, 0xc3, 0x07, 0xc4, 0x07, 0xc4, 0x07, 0xc4, 0x07, 0xc3, 0x07, 0xbe, 0x07, 0xbb, 0x07, 0xb7, 0x07, 0xaf, 0x07, 0xaa, 0x07, 0xa0, 0x07, 0x9a, 0x07, 0x92, 0x07, 0x87, 0x07, 0x82, 0x07, 0x77, 0x07, 0x6b, 0x07, 0x63, 0x07, 0x56, 0x07, 0x4c, 0x07, 0x40, 0x07, 0x34, 0x07, 0x28, 0x07, 0x1a, 0x07, 0x0c, 0x07, 0xfb, 0x06, 0xef, 0x06, 0xdb, 0x06, 0xcb, 0x06, 0xb8, 0x06, 0xa3, 0x06, 0x93, 0x06, 0x80, 0x06, 0x6b, 0x06, 0x57, 0x06, 0x40, 0x06, 0x34, 0x06, 0x1a, 0x06, 0x07, 0x06, 0xf3, 0x05, 0xdb, 0x05, 0xc7, 0x05, 0xb2, 0x05, 0x9b, 0x05, 0x87, 0x05, 0x6f, 0x05, 0x57, 0x05, 0x43, 0x05, 0x2a, 0x05, 0x12, 0x05, 0xfa, 0x04, 0xe2, 0x04, 0xca, 0x04, 0xaf, 0x04, 0x94, 0x04, 0x7b, 0x04, 0x62, 0x04, 0x46, 0x04, 0x2b, 0x04, 0x13, 0x04, 0xf3, 0x03, 0xdd, 0x03, 0xbf, 0x03, 0xa5, 0x03, 0x89, 0x03, 0x6b, 0x03, 0x51, 0x03, 0x35, 0x03, 0x17, 0x03, 0xfd, 0x02, 0xe1, 0x02, 0xc3, 0x02, 0xa5, 0x02, 0x85, 0x02, 0x69, 0x02, 0x4b, 0x02, 0x2d, 0x02, 0x0f, 0x02, 0xf0, 0x01, 0xd0, 0x01, 0xb1, 0x01, 0x90, 0x01, 0x6c, 0x01, 0x4c, 0x01, 0x28, 0x01, 0x07, 0x01, 0xe0, 0x00, 0xbe, 0x00, 0x9e, 0x00, 0x7d, 0x00, 0x59, 0x00, 0x3a, 0x00, 0x19, 0x00, 0xfb, 0xff, 0xde, 0xff, 0xbc, 0xff, 0xa2, 0xff, 0x83, 0xff, 0x65, 0xff, 0x48, 0xff, 0x2a, 0xff, 0x0c, 0xff, 0xf0, 0xfe, 0xd8, 0xfe, 0xb5, 0xfe, 0x9a, 0xfe, 0x7e, 0xfe, 0x60, 0xfe, 0x42, 0xfe, 0x28, 0xfe, 0x0a, 0xfe, 0xed, 0xfd, 0xcf, 0xfd, 0xb1, 0xfd, 0x91, 0xfd, 0x73, 0xfd, 0x57, 0xfd, 0x37, 0xfd, 0x1b, 0xfd, 0xf7, 0xfc, 0xd7, 0xfc, 0xb9, 0xfc, 0x97, 0xfc, 0x75, 0xfc, 0x53, 0xfc, 0x2f, 0xfc, 0x11, 0xfc, 0xf0, 0xfb, 0xcd, 0xfb, 0xac, 0xfb, 0x88, 0xfb, 0x69, 0xfb, 0x45, 0xfb, 0x25, 0xfb, 0x06, 0xfb, 0xe8, 0xfa, 0xc9, 0xfa, 0xad, 0xfa, 0x8c, 0xfa, 0x70, 0xfa, 0x55, 0xfa, 0x39, 0xfa, 0x1e, 0xfa, 0x05, 0xfa, 0xec, 0xf9, 0xd1, 0xf9, 0xb9, 0xf9, 0xa1, 0xf9, 0x89, 0xf9, 0x71, 0xf9, 0x61, 0xf9, 0x4a, 0xf9, 0x38, 0xf9, 0x29, 0xf9, 0x19, 0xf9, 0x08, 0xf9, 0xf9, 0xf8, 0xf0, 0xf8, 0xe6, 0xf8, 0xdc, 0xf8, 0xd1, 0xf8, 0xcc, 0xf8, 0xc6, 0xf8, 0xc0, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xba, 0xf8, 0xba, 0xf8, 0xb8, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xc2, 0xf8, 0xc9, 0xf8, 0xc9, 0xf8, 0xd2, 0xf8, 0xdd, 0xf8, 0xe4, 0xf8, 0xed, 0xf8, 0xf5, 0xf8, 0x00, 0xf9, 0x0d, 0xf9, 0x19, 0xf9, 0x26, 0xf9, 0x32, 0xf9, 0x44, 0xf9, 0x51, 0xf9, 0x61, 0xf9, 0x6e, 0xf9, 0x81, 0xf9, 0x91, 0xf9, 0xa4, 0xf9, 0xb2, 0xf9, 0xc5, 0xf9, 0xd6, 0xf9, 0xe9, 0xf9, 0xfa, 0xf9, 0x10, 0xfa, 0x21, 0xfa, 0x36, 0xfa, 0x4d, 0xfa, 0x61, 0xfa, 0x76, 0xfa, 0x89, 0xfa, 0xa1, 0xfa, 0xb5, 0xfa, 0xd0, 0xfa, 0xe9, 0xfa, 0x00, 0xfb, 0x15, 0xfb, 0x2d, 0xfb, 0x45, 0xfb, 0x60, 0xfb, 0x72, 0xfb, 0x91, 0xfb, 0xa5, 0xfb, 0xc0, 0xfb, 0xd8, 0xfb, 0xed, 0xfb, 0x07, 0xfc, 0x21, 0xfc, 0x3b, 0xfc, 0x51, 0xfc, 0x71, 0xfc, 0x89, 0xfc, 0xa7, 0xfc, 0xc5, 0xfc, 0xe1, 0xfc, 0x01, 0xfd, 0x25, 0xfd, 0x47, 0xfd, 0x67, 0xfd, 0x89, 0xfd, 0xaf, 0xfd, 0xd3, 0xfd, 0xf5, 0xfd, 0x1e, 0xfe, 0x40, 0xfe, 0x6c, 0xfe, 0x93, 0xfe, 0xbb, 0xfe, 0xe2, 0xfe, 0x09, 0xff, 0x32, 0xff, 0x5c, 0xff, 0x83, 0xff, 0xae, 0xff, 0xd5, 0xff, 0xff, 0xff, 0x28, 0x00, 0x4f, 0x00, 0x7c, 0x00, 0xa1, 0x00, 0xd0, 0x00, 0xfb, 0x00, 0x27, 0x01, 0x54, 0x01, 0x81, 0x01, 0xaf, 0x01, 0xdb, 0x01, 0x09, 0x02, 0x35, 0x02, 0x5f, 0x02, 0x8d, 0x02, 0xb7, 0x02, 0xe1, 0x02, 0x0b, 0x03, 0x31, 0x03, 0x59, 0x03, 0x7d, 0x03, 0xa3, 0x03, 0xc5, 0x03, 0xe9, 0x03, 0x0e, 0x04, 0x28, 0x04, 0x4a, 0x04, 0x6a, 0x04, 0x84, 0x04, 0xa6, 0x04, 0xc2, 0x04, 0xdb, 0x04, 0xf7, 0x04, 0x12, 0x05, 0x2b, 0x05, 0x47, 0x05, 0x60, 0x05, 0x76, 0x05, 0x93, 0x05, 0xa4, 0x05, 0xbe, 0x05, 0xd6, 0x05, 0xe7, 0x05, 0xfb, 0x05, 0x0f, 0x06, 0x23, 0x06, 0x2f, 0x06, 0x43, 0x06, 0x4f, 0x06, 0x5f, 0x06, 0x6e, 0x06, 0x7e, 0x06, 0x88, 0x06, 0x97, 0x06, 0xa2, 0x06, 0xae, 0x06, 0xbb, 0x06, 0xc8, 0x06, 0xd4, 0x06, 0xda, 0x06, 0xe3, 0x06, 0xeb, 0x06, 0xf2, 0x06, 0xfb, 0x06, 0xfe, 0x06, 0x02, 0x07, 0x07, 0x07, 0x07, 0x07, 0x04, 0x07, 0x07, 0x07, 0x03, 0x07, 0x00, 0x07, 0xf8, 0x06, 0xf3, 0x06, 0xec, 0x06, 0xde, 0x06, 0xd4, 0x06, 0xc7, 0x06, 0xb8, 0x06, 0xa7, 0x06, 0x97, 0x06, 0x87, 0x06, 0x73, 0x06, 0x64, 0x06, 0x50, 0x06, 0x3b, 0x06, 0x2a, 0x06, 0x14, 0x06, 0x02, 0x06, 0xef, 0x05, 0xdb, 0x05, 0xc8, 0x05, 0xb2, 0x05, 0x9b, 0x05, 0x87, 0x05, 0x6c, 0x05, 0x5b, 0x05, 0x3f, 0x05, 0x24, 0x05, 0x0f, 0x05, 0xf7, 0x04, 0xdf, 0x04, 0xca, 0x04, 0xaf, 0x04, 0x97, 0x04, 0x7f, 0x04, 0x63, 0x04, 0x4f, 0x04, 0x3a, 0x04, 0x22, 0x04, 0x0a, 0x04, 0xf7, 0x03, 0xdd, 0x03, 0xc7, 0x03, 0xaf, 0x03, 0x9b, 0x03, 0x83, 0x03, 0x6f, 0x03, 0x53, 0x03, 0x3b, 0x03, 0x23, 0x03, 0x05, 0x03, 0xed, 0x02, 0xd3, 0x02, 0xb5, 0x02, 0x97, 0x02, 0x81, 0x02, 0x63, 0x02, 0x47, 0x02, 0x27, 0x02, 0x0b, 0x02, 0xed, 0x01, 0xd0, 0x01, 0xb1, 0x01, 0x90, 0x01, 0x72, 0x01, 0x4f, 0x01, 0x2d, 0x01, 0x10, 0x01, 0xeb, 0x00, 0xc8, 0x00, 0xa6, 0x00, 0x82, 0x00, 0x5f, 0x00, 0x3b, 0x00, 0x17, 0x00, 0xf3, 0xff, 0xce, 0xff, 0xa8, 0xff, 0x86, 0xff, 0x5d, 0xff, 0x36, 0xff, 0x0f, 0xff, 0xeb, 0xfe, 0xc4, 0xfe, 0x9c, 0xfe, 0x78, 0xfe, 0x52, 0xfe, 0x2b, 0xfe, 0x04, 0xfe, 0xdb, 0xfd, 0xb7, 0xfd, 0x91, 0xfd, 0x6d, 0xfd, 0x49, 0xfd, 0x1f, 0xfd, 0xfb, 0xfc, 0xd9, 0xfc, 0xb3, 0xfc, 0x91, 0xfc, 0x6d, 0xfc, 0x43, 0xfc, 0x23, 0xfc, 0x00, 0xfc, 0xde, 0xfb, 0xb9, 0xfb, 0x9c, 0xfb, 0x7c, 0xfb, 0x5d, 0xfb, 0x42, 0xfb, 0x24, 0xfb, 0x09, 0xfb, 0xf4, 0xfa, 0xd6, 0xfa, 0xc4, 0xfa, 0xae, 0xfa, 0x99, 0xfa, 0x8a, 0xfa, 0x79, 0xfa, 0x6d, 0xfa, 0x61, 0xfa, 0x55, 0xfa, 0x4c, 0xfa, 0x40, 0xfa, 0x34, 0xfa, 0x2c, 0xfa, 0x22, 0xfa, 0x1e, 0xfa, 0x15, 0xfa, 0x10, 0xfa, 0x08, 0xfa, 0x01, 0xfa, 0xf5, 0xf9, 0xf0, 0xf9, 0xec, 0xf9, 0xe4, 0xf9, 0xdd, 0xf9, 0xd8, 0xf9, 0xd1, 0xf9, 0xca, 0xf9, 0xc5, 0xf9, 0xc2, 0xf9, 0xbd, 0xf9, 0xbd, 0xf9, 0xb5, 0xf9, 0xb6, 0xf9, 0xb5, 0xf9, 0xb2, 0xf9, 0xb9, 0xf9, 0xb4, 0xf9, 0xb9, 0xf9, 0xb9, 0xf9, 0xbd, 0xf9, 0xc1, 0xf9, 0xc5, 0xf9, 0xc5, 0xf9, 0xcc, 0xf9, 0xd1, 0xf9, 0xd4, 0xf9, 0xd9, 0xf9, 0xe0, 0xf9, 0xe6, 0xf9, 0xed, 0xf9, 0xf5, 0xf9, 0xfa, 0xf9, 0x05, 0xfa, 0x0d, 0xfa, 0x19, 0xfa, 0x25, 0xfa, 0x2d, 0xfa, 0x3d, 0xfa, 0x49, 0xfa, 0x5c, 0xfa, 0x68, 0xfa, 0x79, 0xfa, 0x8d, 0xfa, 0x9d, 0xfa, 0xae, 0xfa, 0xc1, 0xfa, 0xd4, 0xfa, 0xe8, 0xfa, 0xfa, 0xfa, 0x10, 0xfb, 0x25, 0xfb, 0x39, 0xfb, 0x55, 0xfb, 0x69, 0xfb, 0x7d, 0xfb, 0x9c, 0xfb, 0xb4, 0xfb, 0xd1, 0xfb, 0xea, 0xfb, 0x0b, 0xfc, 0x29, 0xfc, 0x43, 0xfc, 0x65, 0xfc, 0x83, 0xfc, 0xa1, 0xfc, 0xc3, 0xfc, 0xe3, 0xfc, 0x01, 0xfd, 0x21, 0xfd, 0x41, 0xfd, 0x5f, 0xfd, 0x7f, 0xfd, 0x9d, 0xfd, 0xbd, 0xfd, 0xdd, 0xfd, 0xf9, 0xfd, 0x18, 0xfe, 0x37, 0xfe, 0x57, 0xfe, 0x76, 0xfe, 0x90, 0xfe, 0xb5, 0xfe, 0xd3, 0xfe, 0xf6, 0xfe, 0x15, 0xff, 0x38, 0xff, 0x54, 0xff, 0x78, 0xff, 0x9b, 0xff, 0xbc, 0xff, 0xda, 0xff, 0xfc, 0xff, 0x1a, 0x00, 0x3b, 0x00, 0x5e, 0x00, 0x7c, 0x00, 0x9d, 0x00, 0xbb, 0x00, 0xda, 0x00, 0xf8, 0x00, 0x15, 0x01, 0x33, 0x01, 0x4f, 0x01, 0x6c, 0x01, 0x88, 0x01, 0xa2, 0x01, 0xbb, 0x01, 0xd8, 0x01, 0xf3, 0x01, 0x0b, 0x02, 0x27, 0x02, 0x43, 0x02, 0x5d, 0x02, 0x75, 0x02, 0x91, 0x02, 0xa9, 0x02, 0xc7, 0x02, 0xdd, 0x02, 0xf7, 0x02, 0x11, 0x03, 0x2b, 0x03, 0x43, 0x03, 0x5b, 0x03, 0x75, 0x03, 0x8d, 0x03, 0xa7, 0x03, 0xbf, 0x03, 0xd7, 0x03, 0xeb, 0x03, 0x04, 0x04, 0x1a, 0x04, 0x33, 0x04, 0x46, 0x04, 0x58, 0x04, 0x6f, 0x04, 0x82, 0x04, 0x94, 0x04, 0xa7, 0x04, 0xbb, 0x04, 0xcf, 0x04, 0xe2, 0x04, 0xf7, 0x04, 0x03, 0x05, 0x1b, 0x05, 0x2a, 0x05, 0x3c, 0x05, 0x4b, 0x05, 0x5c, 0x05, 0x6b, 0x05, 0x77, 0x05, 0x87, 0x05, 0x90, 0x05, 0x9c, 0x05, 0xa8, 0x05, 0xb3, 0x05, 0xbc, 0x05, 0xc7, 0x05, 0xcb, 0x05, 0xd6, 0x05, 0xe0, 0x05, 0xe3, 0x05, 0xea, 0x05, 0xf0, 0x05, 0xf3, 0x05, 0xfa, 0x05, 0xff, 0x05, 0x02, 0x06, 0x08, 0x06, 0x0e, 0x06, 0x0f, 0x06, 0x13, 0x06, 0x17, 0x06, 0x17, 0x06, 0x17, 0x06, 0x17, 0x06, 0x17, 0x06, 0x17, 0x06, 0x12, 0x06, 0x13, 0x06, 0x0e, 0x06, 0x0b, 0x06, 0x07, 0x06, 0x04, 0x06, 0xfc, 0x05, 0xf7, 0x05, 0xf3, 0x05, 0xeb, 0x05, 0xe7, 0x05, 0xdb, 0x05, 0xd3, 0x05, 0xc7, 0x05, 0xba, 0x05, 0xab, 0x05, 0x9a, 0x05, 0x84, 0x05, 0x72, 0x05, 0x5f, 0x05, 0x46, 0x05, 0x2f, 0x05, 0x18, 0x05, 0xff, 0x04, 0xe6, 0x04, 0xcc, 0x04, 0xb2, 0x04, 0x97, 0x04, 0x7b, 0x04, 0x63, 0x04, 0x48, 0x04, 0x2e, 0x04, 0x13, 0x04, 0xf7, 0x03, 0xdf, 0x03, 0xc3, 0x03, 0xa9, 0x03, 0x93, 0x03, 0x77, 0x03, 0x61, 0x03, 0x45, 0x03, 0x2f, 0x03, 0x17, 0x03, 0xfd, 0x02, 0xe7, 0x02, 0xcf, 0x02, 0xb7, 0x02, 0x9f, 0x02, 0x87, 0x02, 0x6b, 0x02, 0x57, 0x02, 0x3b, 0x02, 0x1f, 0x02, 0x03, 0x02, 0xea, 0x01, 0xcc, 0x01, 0xaf, 0x01, 0x94, 0x01, 0x78, 0x01, 0x5a, 0x01, 0x3d, 0x01, 0x1b, 0x01, 0xfd, 0x00, 0xdc, 0x00, 0xbc, 0x00, 0x9a, 0x00, 0x77, 0x00, 0x5b, 0x00, 0x37, 0x00, 0x16, 0x00, 0xf9, 0xff, 0xda, 0xff, 0xb9, 0xff, 0x9c, 0xff, 0x7b, 0xff, 0x60, 0xff, 0x3c, 0xff, 0x26, 0xff, 0x06, 0xff, 0xea, 0xfe, 0xd2, 0xfe, 0xb1, 0xfe, 0x9a, 0xfe, 0x7c, 0xfe, 0x63, 0xfe, 0x49, 0xfe, 0x30, 0xfe, 0x15, 0xfe, 0xfd, 0xfd, 0xdf, 0xfd, 0xcd, 0xfd, 0xb1, 0xfd, 0x99, 0xfd, 0x85, 0xfd, 0x6d, 0xfd, 0x59, 0xfd, 0x43, 0xfd, 0x2d, 0xfd, 0x1b, 0xfd, 0x0b, 0xfd, 0xf7, 0xfc, 0xe5, 0xfc, 0xd5, 0xfc, 0xc3, 0xfc, 0xb5, 0xfc, 0xa1, 0xfc, 0x8f, 0xfc, 0x83, 0xfc, 0x6f, 0xfc, 0x5b, 0xfc, 0x4b, 0xfc, 0x37, 0xfc, 0x21, 0xfc, 0x17, 0xfc, 0x01, 0xfc, 0xf1, 0xfb, 0xda, 0xfb, 0xcd, 0xfb, 0xba, 0xfb, 0xa8, 0xfb, 0x99, 0xfb, 0x88, 0xfb, 0x79, 0xfb, 0x6c, 0xfb, 0x59, 0xfb, 0x4c, 0xfb, 0x39, 0xfb, 0x2a, 0xfb, 0x1d, 0xfb, 0x0e, 0xfb, 0xfd, 0xfa, 0xf6, 0xfa, 0xe9, 0xfa, 0xdc, 0xfa, 0xd0, 0xfa, 0xc6, 0xfa, 0xbc, 0xfa, 0xb2, 0xfa, 0xac, 0xfa, 0xa1, 0xfa, 0x99, 0xfa, 0x8e, 0xfa, 0x89, 0xfa, 0x80, 0xfa, 0x74, 0xfa, 0x72, 0xfa, 0x66, 0xfa, 0x61, 0xfa, 0x59, 0xfa, 0x51, 0xfa, 0x4c, 0xfa, 0x49, 0xfa, 0x44, 0xfa, 0x40, 0xfa, 0x3d, 0xfa, 0x40, 0xfa, 0x3d, 0xfa, 0x41, 0xfa, 0x42, 0xfa, 0x46, 0xfa, 0x4c, 0xfa, 0x51, 0xfa, 0x58, 0xfa, 0x5e, 0xfa, 0x64, 0xfa, 0x69, 0xfa, 0x71, 0xfa, 0x79, 0xfa, 0x85, 0xfa, 0x8d, 0xfa, 0x9a, 0xfa, 0xa2, 0xfa, 0xb0, 0xfa, 0xba, 0xfa, 0xc9, 0xfa, 0xd5, 0xfa, 0xe2, 0xfa, 0xf6, 0xfa, 0x01, 0xfb, 0x12, 0xfb, 0x24, 0xfb, 0x36, 0xfb, 0x49, 0xfb, 0x5d, 0xfb, 0x70, 0xfb, 0x81, 0xfb, 0x99, 0xfb, 0xae, 0xfb, 0xc4, 0xfb, 0xdd, 0xfb, 0xf6, 0xfb, 0x0f, 0xfc, 0x2d, 0xfc, 0x41, 0xfc, 0x65, 0xfc, 0x7d, 0xfc, 0x9b, 0xfc, 0xb9, 0xfc, 0xd7, 0xfc, 0xfb, 0xfc, 0x13, 0xfd, 0x37, 0xfd, 0x55, 0xfd, 0x75, 0xfd, 0x97, 0xfd, 0xb5, 0xfd, 0xd5, 0xfd, 0xf5, 0xfd, 0x15, 0xfe, 0x36, 0xfe, 0x52, 0xfe, 0x70, 0xfe, 0x91, 0xfe, 0xae, 0xfe, 0xc9, 0xfe, 0xea, 0xfe, 0x05, 0xff, 0x20, 0xff, 0x3f, 0xff, 0x5c, 0xff, 0x77, 0xff, 0x93, 0xff, 0xb3, 0xff, 0xcf, 0xff, 0xef, 0xff, 0x0a, 0x00, 0x29, 0x00, 0x46, 0x00, 0x64, 0x00, 0x83, 0x00, 0xa1, 0x00, 0xbc, 0x00, 0xdc, 0x00, 0xfa, 0x00, 0x18, 0x01, 0x34, 0x01, 0x52, 0x01, 0x70, 0x01, 0x8b, 0x01, 0xae, 0x01, 0xca, 0x01, 0xe7, 0x01, 0x07, 0x02, 0x25, 0x02, 0x3f, 0x02, 0x61, 0x02, 0x7b, 0x02, 0x99, 0x02, 0xb7, 0x02, 0xd5, 0x02, 0xef, 0x02, 0x0b, 0x03, 0x27, 0x03, 0x3f, 0x03, 0x59, 0x03, 0x6f, 0x03, 0x89, 0x03, 0x9d, 0x03, 0xb3, 0x03, 0xc9, 0x03, 0xdd, 0x03, 0xf1, 0x03, 0xff, 0x03, 0x13, 0x04, 0x1f, 0x04, 0x2f, 0x04, 0x3f, 0x04, 0x4b, 0x04, 0x57, 0x04, 0x63, 0x04, 0x6b, 0x04, 0x73, 0x04, 0x7c, 0x04, 0x86, 0x04, 0x90, 0x04, 0x97, 0x04, 0x9e, 0x04, 0xa7, 0x04, 0xaf, 0x04, 0xb4, 0x04, 0xbb, 0x04, 0xc4, 0x04, 0xc7, 0x04, 0xd0, 0x04, 0xd6, 0x04, 0xe2, 0x04, 0xe4, 0x04, 0xe8, 0x04, 0xf2, 0x04, 0xfa, 0x04, 0x00, 0x05, 0x07, 0x05, 0x0f, 0x05, 0x16, 0x05, 0x1f, 0x05, 0x24, 0x05, 0x2f, 0x05, 0x37, 0x05, 0x3f, 0x05, 0x43, 0x05, 0x4e, 0x05, 0x54, 0x05, 0x5b, 0x05, 0x60, 0x05, 0x66, 0x05, 0x67, 0x05, 0x6b, 0x05, 0x6f, 0x05, 0x6f, 0x05, 0x6f, 0x05, 0x6f, 0x05, 0x6f, 0x05, 0x6c, 0x05, 0x6c, 0x05, 0x68, 0x05, 0x67, 0x05, 0x63, 0x05, 0x5e, 0x05, 0x57, 0x05, 0x53, 0x05, 0x48, 0x05, 0x42, 0x05, 0x3a, 0x05, 0x30, 0x05, 0x27, 0x05, 0x1b, 0x05, 0x12, 0x05, 0x00, 0x05, 0xf4, 0x04, 0xeb, 0x04, 0xdc, 0x04, 0xcc, 0x04, 0xbe, 0x04, 0xac, 0x04, 0x9c, 0x04, 0x8b, 0x04, 0x7a, 0x04, 0x64, 0x04, 0x4f, 0x04, 0x3c, 0x04, 0x27, 0x04, 0x0f, 0x04, 0xf5, 0x03, 0xdd, 0x03, 0xc3, 0x03, 0xa9, 0x03, 0x8f, 0x03, 0x71, 0x03, 0x53, 0x03, 0x33, 0x03, 0x19, 0x03, 0xf9, 0x02, 0xdb, 0x02, 0xbd, 0x02, 0x9d, 0x02, 0x81, 0x02, 0x5f, 0x02, 0x3f, 0x02, 0x1f, 0x02, 0xff, 0x01, 0xdc, 0x01, 0xbb, 0x01, 0x97, 0x01, 0x78, 0x01, 0x55, 0x01, 0x2e, 0x01, 0x0d, 0x01, 0xe6, 0x00, 0xc5, 0x00, 0xa3, 0x00, 0x7a, 0x00, 0x59, 0x00, 0x37, 0x00, 0x14, 0x00, 0xf6, 0xff, 0xd7, 0xff, 0xb9, 0xff, 0x93, 0xff, 0x78, 0xff, 0x5a, 0xff, 0x41, 0xff, 0x23, 0xff, 0x08, 0xff, 0xed, 0xfe, 0xcc, 0xfe, 0xb4, 0xfe, 0x96, 0xfe, 0x7c, 0xfe, 0x5e, 0xfe, 0x45, 0xfe, 0x25, 0xfe, 0x09, 0xfe, 0xef, 0xfd, 0xcd, 0xfd, 0xb5, 0xfd, 0x95, 0xfd, 0x7f, 0xfd, 0x61, 0xfd, 0x45, 0xfd, 0x2b, 0xfd, 0x13, 0xfd, 0xfb, 0xfc, 0xe3, 0xfc, 0xcf, 0xfc, 0xb7, 0xfc, 0xa3, 0xfc, 0x8f, 0xfc, 0x7b, 0xfc, 0x6d, 0xfc, 0x5b, 0xfc, 0x49, 0xfc, 0x41, 0xfc, 0x2b, 0xfc, 0x1f, 0xfc, 0x17, 0xfc, 0x09, 0xfc, 0xfe, 0xfb, 0xf2, 0xfb, 0xe6, 0xfb, 0xdd, 0xfb, 0xd2, 0xfb, 0xc5, 0xfb, 0xbd, 0xfb, 0xb1, 0xfb, 0xa8, 0xfb, 0x9d, 0xfb, 0x91, 0xfb, 0x85, 0xfb, 0x79, 0xfb, 0x6d, 0xfb, 0x62, 0xfb, 0x59, 0xfb, 0x4a, 0xfb, 0x42, 0xfb, 0x35, 0xfb, 0x2d, 0xfb, 0x25, 0xfb, 0x1c, 0xfb, 0x15, 0xfb, 0x0d, 0xfb, 0x09, 0xfb, 0x05, 0xfb, 0x00, 0xfb, 0x01, 0xfb, 0xfd, 0xfa, 0xfd, 0xfa, 0x00, 0xfb, 0xfd, 0xfa, 0x02, 0xfb, 0x04, 0xfb, 0x09, 0xfb, 0x0c, 0xfb, 0x12, 0xfb, 0x18, 0xfb, 0x1c, 0xfb, 0x21, 0xfb, 0x29, 0xfb, 0x34, 0xfb, 0x39, 0xfb, 0x45, 0xfb, 0x4c, 0xfb, 0x56, 0xfb, 0x60, 0xfb, 0x6d, 0xfb, 0x79, 0xfb, 0x81, 0xfb, 0x91, 0xfb, 0x9c, 0xfb, 0xa9, 0xfb, 0xb8, 0xfb, 0xc6, 0xfb, 0xd1, 0xfb, 0xe1, 0xfb, 0xf1, 0xfb, 0xfd, 0xfb, 0x0b, 0xfc, 0x19, 0xfc, 0x29, 0xfc, 0x35, 0xfc, 0x41, 0xfc, 0x59, 0xfc, 0x65, 0xfc, 0x71, 0xfc, 0x83, 0xfc, 0x91, 0xfc, 0xa3, 0xfc, 0xb3, 0xfc, 0xc3, 0xfc, 0xd1, 0xfc, 0xe5, 0xfc, 0xf5, 0xfc, 0x07, 0xfd, 0x15, 0xfd, 0x29, 0xfd, 0x39, 0xfd, 0x4b, 0xfd, 0x5d, 0xfd, 0x6d, 0xfd, 0x83, 0xfd, 0x99, 0xfd, 0xab, 0xfd, 0xc1, 0xfd, 0xd3, 0xfd, 0xe9, 0xfd, 0xfd, 0xfd, 0x15, 0xfe, 0x2a, 0xfe, 0x40, 0xfe, 0x58, 0xfe, 0x70, 0xfe, 0x87, 0xfe, 0xa2, 0xfe, 0xba, 0xfe, 0xd0, 0xfe, 0xf0, 0xfe, 0x09, 0xff, 0x29, 0xff, 0x42, 0xff, 0x5f, 0xff, 0x7d, 0xff, 0x99, 0xff, 0xbc, 0xff, 0xda, 0xff, 0xf9, 0xff, 0x17, 0x00, 0x38, 0x00, 0x55, 0x00, 0x76, 0x00, 0x97, 0x00, 0xb5, 0x00, 0xd3, 0x00, 0xf2, 0x00, 0x0c, 0x01, 0x2d, 0x01, 0x46, 0x01, 0x61, 0x01, 0x7c, 0x01, 0x94, 0x01, 0xae, 0x01, 0xc4, 0x01, 0xd8, 0x01, 0xeb, 0x01, 0xff, 0x01, 0x11, 0x02, 0x25, 0x02, 0x33, 0x02, 0x41, 0x02, 0x51, 0x02, 0x5d, 0x02, 0x6d, 0x02, 0x75, 0x02, 0x81, 0x02, 0x8d, 0x02, 0x95, 0x02, 0xa1, 0x02, 0xa9, 0x02, 0xb1, 0x02, 0xb9, 0x02, 0xc7, 0x02, 0xcd, 0x02, 0xd7, 0x02, 0xe1, 0x02, 0xe7, 0x02, 0xf1, 0x02, 0xf7, 0x02, 0x01, 0x03, 0x05, 0x03, 0x0d, 0x03, 0x15, 0x03, 0x19, 0x03, 0x1f, 0x03, 0x25, 0x03, 0x2b, 0x03, 0x2f, 0x03, 0x35, 0x03, 0x3b, 0x03, 0x41, 0x03, 0x47, 0x03, 0x4d, 0x03, 0x55, 0x03, 0x5d, 0x03, 0x65, 0x03, 0x71, 0x03, 0x77, 0x03, 0x7f, 0x03, 0x87, 0x03, 0x91, 0x03, 0x99, 0x03, 0xa1, 0x03, 0xa7, 0x03, 0xaf, 0x03, 0xb7, 0x03, 0xbd, 0x03, 0xc1, 0x03, 0xc5, 0x03, 0xcd, 0x03, 0xcf, 0x03, 0xd1, 0x03, 0xd5, 0x03, 0xd7, 0x03, 0xdd, 0x03, 0xdf, 0x03, 0xe1, 0x03, 0xe3, 0x03, 0xe3, 0x03, 0xe7, 0x03, 0xe9, 0x03, 0xed, 0x03, 0xf1, 0x03, 0xf3, 0x03, 0xf3, 0x03, 0xf7, 0x03, 0xfb, 0x03, 0xfb, 0x03, 0xfd, 0x03, 0xfd, 0x03, 0xfd, 0x03, 0xfd, 0x03, 0xff, 0x03, 0xfb, 0x03, 0xf9, 0x03, 0xf9, 0x03, 0xf3, 0x03, 0xf3, 0x03, 0xed, 0x03, 0xe5, 0x03, 0xe3, 0x03, 0xdd, 0x03, 0xd7, 0x03, 0xd3, 0x03, 0xcd, 0x03, 0xc5, 0x03, 0xc1, 0x03, 0xb9, 0x03, 0xb3, 0x03, 0xa9, 0x03, 0xa1, 0x03, 0x99, 0x03, 0x8f, 0x03, 0x83, 0x03, 0x79, 0x03, 0x6d, 0x03, 0x61, 0x03, 0x53, 0x03, 0x45, 0x03, 0x37, 0x03, 0x27, 0x03, 0x15, 0x03, 0x05, 0x03, 0xf3, 0x02, 0xe1, 0x02, 0xcf, 0x02, 0xbb, 0x02, 0xa9, 0x02, 0x91, 0x02, 0x7d, 0x02, 0x67, 0x02, 0x53, 0x02, 0x39, 0x02, 0x23, 0x02, 0x0b, 0x02, 0xf1, 0x01, 0xd9, 0x01, 0xbe, 0x01, 0xa3, 0x01, 0x88, 0x01, 0x70, 0x01, 0x51, 0x01, 0x37, 0x01, 0x1c, 0x01, 0xfd, 0x00, 0xe3, 0x00, 0xc5, 0x00, 0xa7, 0x00, 0x8b, 0x00, 0x6d, 0x00, 0x4f, 0x00, 0x32, 0x00, 0x17, 0x00, 0xfb, 0xff, 0xde, 0xff, 0xc2, 0xff, 0xa8, 0xff, 0x8f, 0xff, 0x74, 0xff, 0x5a, 0xff, 0x41, 0xff, 0x2a, 0xff, 0x12, 0xff, 0xfc, 0xfe, 0xe5, 0xfe, 0xcc, 0xfe, 0xb8, 0xfe, 0xa2, 0xfe, 0x8e, 0xfe, 0x78, 0xfe, 0x61, 0xfe, 0x4c, 0xfe, 0x37, 0xfe, 0x27, 0xfe, 0x10, 0xfe, 0xff, 0xfd, 0xeb, 0xfd, 0xdd, 0xfd, 0xcb, 0xfd, 0xbb, 0xfd, 0xa5, 0xfd, 0x97, 0xfd, 0x89, 0xfd, 0x77, 0xfd, 0x67, 0xfd, 0x55, 0xfd, 0x49, 0xfd, 0x39, 0xfd, 0x27, 0xfd, 0x1f, 0xfd, 0x0d, 0xfd, 0x01, 0xfd, 0xf7, 0xfc, 0xe9, 0xfc, 0xe1, 0xfc, 0xd5, 0xfc, 0xcb, 0xfc, 0xc5, 0xfc, 0xbd, 0xfc, 0xb5, 0xfc, 0xad, 0xfc, 0xa7, 0xfc, 0xa3, 0xfc, 0x9d, 0xfc, 0x9b, 0xfc, 0x93, 0xfc, 0x93, 0xfc, 0x8b, 0xfc, 0x85, 0xfc, 0x87, 0xfc, 0x7d, 0xfc, 0x7d, 0xfc, 0x77, 0xfc, 0x73, 0xfc, 0x6d, 0xfc, 0x69, 0xfc, 0x5f, 0xfc, 0x5f, 0xfc, 0x53, 0xfc, 0x53, 0xfc, 0x49, 0xfc, 0x43, 0xfc, 0x41, 0xfc, 0x35, 0xfc, 0x2d, 0xfc, 0x23, 0xfc, 0x21, 0xfc, 0x15, 0xfc, 0x0b, 0xfc, 0x07, 0xfc, 0xfe, 0xfb, 0xf5, 0xfb, 0xed, 0xfb, 0xea, 0xfb, 0xe5, 0xfb, 0xdd, 0xfb, 0xd5, 0xfb, 0xd5, 0xfb, 0xd2, 0xfb, 0xce, 0xfb, 0xcc, 0xfb, 0xcd, 0xfb, 0xd0, 0xfb, 0xce, 0xfb, 0xd5, 0xfb, 0xd5, 0xfb, 0xd8, 0xfb, 0xde, 0xfb, 0xe1, 0xfb, 0xe9, 0xfb, 0xed, 0xfb, 0xf6, 0xfb, 0x03, 0xfc, 0x0b, 0xfc, 0x17, 0xfc, 0x23, 0xfc, 0x29, 0xfc, 0x3b, 0xfc, 0x47, 0xfc, 0x53, 0xfc, 0x63, 0xfc, 0x6f, 0xfc, 0x7f, 0xfc, 0x8f, 0xfc, 0x9d, 0xfc, 0xad, 0xfc, 0xbd, 0xfc, 0xcd, 0xfc, 0xdd, 0xfc, 0xf1, 0xfc, 0x01, 0xfd, 0x11, 0xfd, 0x25, 0xfd, 0x35, 0xfd, 0x49, 0xfd, 0x5b, 0xfd, 0x6d, 0xfd, 0x81, 0xfd, 0x93, 0xfd, 0xa7, 0xfd, 0xb7, 0xfd, 0xcb, 0xfd, 0xdf, 0xfd, 0xf3, 0xfd, 0x06, 0xfe, 0x15, 0xfe, 0x27, 0xfe, 0x3a, 0xfe, 0x49, 0xfe, 0x5a, 0xfe, 0x6a, 0xfe, 0x79, 0xfe, 0x8b, 0xfe, 0x99, 0xfe, 0xab, 0xfe, 0xbb, 0xfe, 0xc9, 0xfe, 0xd9, 0xfe, 0xea, 0xfe, 0xf9, 0xfe, 0x08, 0xff, 0x17, 0xff, 0x26, 0xff, 0x38, 0xff, 0x42, 0xff, 0x54, 0xff, 0x63, 0xff, 0x71, 0xff, 0x86, 0xff, 0x92, 0xff, 0xa4, 0xff, 0xb6, 0xff, 0xc8, 0xff, 0xd8, 0xff, 0xe9, 0xff, 0xfe, 0xff, 0x0e, 0x00, 0x20, 0x00, 0x3a, 0x00, 0x4d, 0x00, 0x64, 0x00, 0x7a, 0x00, 0x94, 0x00, 0xb0, 0x00, 0xca, 0x00, 0xe5, 0x00, 0x00, 0x01, 0x19, 0x01, 0x39, 0x01, 0x57, 0x01, 0x73, 0x01, 0x91, 0x01, 0xb1, 0x01, 0xcf, 0x01, 0xed, 0x01, 0x09, 0x02, 0x29, 0x02, 0x49, 0x02, 0x63, 0x02, 0x81, 0x02, 0x9f, 0x02, 0xbb, 0x02, 0xd5, 0x02, 0xf3, 0x02, 0x07, 0x03, 0x27, 0x03, 0x3f, 0x03, 0x59, 0x03, 0x73, 0x03, 0x8b, 0x03, 0xa5, 0x03, 0xbd, 0x03, 0xd3, 0x03, 0xed, 0x03, 0x00, 0x04, 0x16, 0x04, 0x28, 0x04, 0x3f, 0x04, 0x4c, 0x04, 0x5b, 0x04, 0x6b, 0x04, 0x7b, 0x04, 0x86, 0x04, 0x8f, 0x04, 0x97, 0x04, 0xa3, 0x04, 0xa8, 0x04, 0xaf, 0x04, 0xb6, 0x04, 0xb6, 0x04, 0xb8, 0x04, 0xbb, 0x04, 0xbb, 0x04, 0xbf, 0x04, 0xbb, 0x04, 0xbf, 0x04, 0xbb, 0x04, 0xb8, 0x04, 0xb8, 0x04, 0xb3, 0x04, 0xb3, 0x04, 0xab, 0x04, 0xa8, 0x04, 0xa3, 0x04, 0x9c, 0x04, 0x97, 0x04, 0x8f, 0x04, 0x8b, 0x04, 0x82, 0x04, 0x7c, 0x04, 0x76, 0x04, 0x6f, 0x04, 0x67, 0x04, 0x5f, 0x04, 0x58, 0x04, 0x4c, 0x04, 0x48, 0x04, 0x3c, 0x04, 0x30, 0x04, 0x27, 0x04, 0x18, 0x04, 0x0b, 0x04, 0xfb, 0x03, 0xeb, 0x03, 0xd9, 0x03, 0xcb, 0x03, 0xb9, 0x03, 0xa1, 0x03, 0x91, 0x03, 0x7b, 0x03, 0x65, 0x03, 0x53, 0x03, 0x3f, 0x03, 0x29, 0x03, 0x15, 0x03, 0xff, 0x02, 0xe9, 0x02, 0xd5, 0x02, 0xbf, 0x02, 0xab, 0x02, 0x97, 0x02, 0x7f, 0x02, 0x6b, 0x02, 0x57, 0x02, 0x3f, 0x02, 0x2b, 0x02, 0x15, 0x02, 0x03, 0x02, 0xf0, 0x01, 0xdb, 0x01, 0xc7, 0x01, 0xb5, 0x01, 0xa3, 0x01, 0x91, 0x01, 0x7c, 0x01, 0x6c, 0x01, 0x5a, 0x01, 0x46, 0x01, 0x34, 0x01, 0x24, 0x01, 0x12, 0x01, 0xfe, 0x00, 0xeb, 0x00, 0xdd, 0x00, 0xca, 0x00, 0xb6, 0x00, 0xa9, 0x00, 0x95, 0x00, 0x86, 0x00, 0x73, 0x00, 0x62, 0x00, 0x52, 0x00, 0x40, 0x00, 0x2f, 0x00, 0x20, 0x00, 0x0d, 0x00, 0xfc, 0xff, 0xec, 0xff, 0xd7, 0xff, 0xc8, 0xff, 0xb3, 0xff, 0xa1, 0xff, 0x8f, 0xff, 0x7b, 0xff, 0x68, 0xff, 0x57, 0xff, 0x3f, 0xff, 0x2c, 0xff, 0x15, 0xff, 0x03, 0xff, 0xee, 0xfe, 0xdb, 0xfe, 0xc7, 0xfe, 0xb1, 0xfe, 0x9f, 0xfe, 0x8b, 0xfe, 0x79, 0xfe, 0x63, 0xfe, 0x54, 0xfe, 0x40, 0xfe, 0x31, 0xfe, 0x21, 0xfe, 0x10, 0xfe, 0xff, 0xfd, 0xf1, 0xfd, 0xe1, 0xfd, 0xd5, 0xfd, 0xc9, 0xfd, 0xbb, 0xfd, 0xb5, 0xfd, 0xa7, 0xfd, 0x9b, 0xfd, 0x93, 0xfd, 0x89, 0xfd, 0x7f, 0xfd, 0x79, 0xfd, 0x73, 0xfd, 0x6b, 0xfd, 0x69, 0xfd, 0x63, 0xfd, 0x63, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x65, 0xfd, 0x61, 0xfd, 0x67, 0xfd, 0x67, 0xfd, 0x6b, 0xfd, 0x6f, 0xfd, 0x6f, 0xfd, 0x73, 0xfd, 0x75, 0xfd, 0x79, 0xfd, 0x7b, 0xfd, 0x7f, 0xfd, 0x81, 0xfd, 0x83, 0xfd, 0x87, 0xfd, 0x89, 0xfd, 0x8f, 0xfd, 0x91, 0xfd, 0x95, 0xfd, 0x97, 0xfd, 0x9d, 0xfd, 0xa3, 0xfd, 0xa5, 0xfd, 0xab, 0xfd, 0xaf, 0xfd, 0xb5, 0xfd, 0xb9, 0xfd, 0xbd, 0xfd, 0xc1, 0xfd, 0xc7, 0xfd, 0xcb, 0xfd, 0xcf, 0xfd, 0xd7, 0xfd, 0xd5, 0xfd, 0xdb, 0xfd, 0xe3, 0xfd, 0xe3, 0xfd, 0xeb, 0xfd, 0xeb, 0xfd, 0xf1, 0xfd, 0xf5, 0xfd, 0xf5, 0xfd, 0xf7, 0xfd, 0xf7, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xf9, 0xfd, 0xf7, 0xfd, 0xf1, 0xfd, 0xf1, 0xfd, 0xe7, 0xfd, 0xdf, 0xfd, 0xdb, 0xfd, 0xcd, 0xfd, 0xc9, 0xfd, 0xbb, 0xfd, 0xb1, 0xfd, 0xa7, 0xfd, 0x9b, 0xfd, 0x91, 0xfd, 0x89, 0xfd, 0x81, 0xfd, 0x73, 0xfd, 0x6d, 0xfd, 0x67, 0xfd, 0x5d, 0xfd, 0x55, 0xfd, 0x4b, 0xfd, 0x43, 0xfd, 0x3d, 0xfd, 0x33, 0xfd, 0x29, 0xfd, 0x23, 0xfd, 0x19, 0xfd, 0x0d, 0xfd, 0x07, 0xfd, 0x01, 0xfd, 0xf9, 0xfc, 0xf5, 0xfc, 0xef, 0xfc, 0xed, 0xfc, 0xe9, 0xfc, 0xe9, 0xfc, 0xe9, 0xfc, 0xeb, 0xfc, 0xeb, 0xfc, 0xf1, 0xfc, 0xf5, 0xfc, 0xfb, 0xfc, 0x05, 0xfd, 0x0f, 0xfd, 0x19, 0xfd, 0x23, 0xfd, 0x31, 0xfd, 0x3d, 0xfd, 0x4f, 0xfd, 0x61, 0xfd, 0x6b, 0xfd, 0x7d, 0xfd, 0x91, 0xfd, 0xa1, 0xfd, 0xb7, 0xfd, 0xcd, 0xfd, 0xe3, 0xfd, 0xf9, 0xfd, 0x12, 0xfe, 0x2b, 0xfe, 0x42, 0xfe, 0x5d, 0xfe, 0x73, 0xfe, 0x8b, 0xfe, 0xa9, 0xfe, 0xc1, 0xfe, 0xe1, 0xfe, 0xf9, 0xfe, 0x15, 0xff, 0x33, 0xff, 0x51, 0xff, 0x69, 0xff, 0x87, 0xff, 0xa2, 0xff, 0xc2, 0xff, 0xd8, 0xff, 0xf8, 0xff, 0x11, 0x00, 0x2e, 0x00, 0x47, 0x00, 0x5c, 0x00, 0x7c, 0x00, 0x92, 0x00, 0xaf, 0x00, 0xc5, 0x00, 0xdd, 0x00, 0xf7, 0x00, 0x0f, 0x01, 0x2b, 0x01, 0x3c, 0x01, 0x57, 0x01, 0x6d, 0x01, 0x82, 0x01, 0x9a, 0x01, 0xaf, 0x01, 0xc4, 0x01, 0xd8, 0x01, 0xeb, 0x01, 0xff, 0x01, 0x11, 0x02, 0x25, 0x02, 0x33, 0x02, 0x45, 0x02, 0x59, 0x02, 0x63, 0x02, 0x75, 0x02, 0x87, 0x02, 0x91, 0x02, 0x9f, 0x02, 0xab, 0x02, 0xb7, 0x02, 0xc5, 0x02, 0xcd, 0x02, 0xdb, 0x02, 0xe3, 0x02, 0xed, 0x02, 0xf9, 0x02, 0x03, 0x03, 0x0b, 0x03, 0x17, 0x03, 0x21, 0x03, 0x2f, 0x03, 0x37, 0x03, 0x47, 0x03, 0x4d, 0x03, 0x5b, 0x03, 0x65, 0x03, 0x6b, 0x03, 0x79, 0x03, 0x81, 0x03, 0x89, 0x03, 0x91, 0x03, 0x97, 0x03, 0x9f, 0x03, 0xa5, 0x03, 0xa7, 0x03, 0xad, 0x03, 0xb3, 0x03, 0xb5, 0x03, 0xbb, 0x03, 0xbb, 0x03, 0xbd, 0x03, 0xbf, 0x03, 0xc1, 0x03, 0xbf, 0x03, 0xbf, 0x03, 0xbd, 0x03, 0xb9, 0x03, 0xb9, 0x03, 0xb3, 0x03, 0xb3, 0x03, 0xad, 0x03, 0xa7, 0x03, 0xa5, 0x03, 0x9f, 0x03, 0x99, 0x03, 0x91, 0x03, 0x8b, 0x03, 0x81, 0x03, 0x7b, 0x03, 0x73, 0x03, 0x65, 0x03, 0x5d, 0x03, 0x53, 0x03, 0x47, 0x03, 0x3f, 0x03, 0x31, 0x03, 0x27, 0x03, 0x17, 0x03, 0x09, 0x03, 0xff, 0x02, 0xed, 0x02, 0xe1, 0x02, 0xd1, 0x02, 0xc3, 0x02, 0xb5, 0x02, 0xa5, 0x02, 0x93, 0x02, 0x87, 0x02, 0x75, 0x02, 0x65, 0x02, 0x57, 0x02, 0x45, 0x02, 0x33, 0x02, 0x21, 0x02, 0x11, 0x02, 0xff, 0x01, 0xee, 0x01, 0xdc, 0x01, 0xcc, 0x01, 0xb8, 0x01, 0xa9, 0x01, 0x96, 0x01, 0x85, 0x01, 0x76, 0x01, 0x63, 0x01, 0x52, 0x01, 0x43, 0x01, 0x31, 0x01, 0x21, 0x01, 0x0d, 0x01, 0xfe, 0x00, 0xee, 0x00, 0xd9, 0x00, 0xcd, 0x00, 0xbb, 0x00, 0xaf, 0x00, 0x9d, 0x00, 0x91, 0x00, 0x82, 0x00, 0x77, 0x00, 0x67, 0x00, 0x5b, 0x00, 0x50, 0x00, 0x43, 0x00, 0x3b, 0x00, 0x2e, 0x00, 0x23, 0x00, 0x1a, 0x00, 0x10, 0x00, 0x08, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xf3, 0xff, 0xe9, 0xff, 0xe1, 0xff, 0xd5, 0xff, 0xd1, 0xff, 0xc9, 0xff, 0xc0, 0xff, 0xba, 0xff, 0xb0, 0xff, 0xad, 0xff, 0xa4, 0xff, 0x9f, 0xff, 0x99, 0xff, 0x92, 0xff, 0x8a, 0xff, 0x84, 0xff, 0x7a, 0xff, 0x71, 0xff, 0x68, 0xff, 0x5c, 0xff, 0x51, 0xff, 0x44, 0xff, 0x36, 0xff, 0x27, 0xff, 0x1a, 0xff, 0x0b, 0xff, 0xfd, 0xfe, 0xee, 0xfe, 0xdb, 0xfe, 0xc6, 0xfe, 0xb5, 0xfe, 0xa2, 0xfe, 0x8b, 0xfe, 0x7b, 0xfe, 0x64, 0xfe, 0x51, 0xfe, 0x3f, 0xfe, 0x28, 0xfe, 0x16, 0xfe, 0xfd, 0xfd, 0xed, 0xfd, 0xd7, 0xfd, 0xc7, 0xfd, 0xaf, 0xfd, 0xa1, 0xfd, 0x91, 0xfd, 0x7f, 0xfd, 0x67, 0xfd, 0x59, 0xfd, 0x49, 0xfd, 0x37, 0xfd, 0x2b, 0xfd, 0x1b, 0xfd, 0x0d, 0xfd, 0x01, 0xfd, 0xf5, 0xfc, 0xe9, 0xfc, 0xdd, 0xfc, 0xd7, 0xfc, 0xcb, 0xfc, 0xc5, 0xfc, 0xb7, 0xfc, 0xad, 0xfc, 0xa9, 0xfc, 0xa1, 0xfc, 0x9b, 0xfc, 0x93, 0xfc, 0x89, 0xfc, 0x89, 0xfc, 0x81, 0xfc, 0x7b, 0xfc, 0x77, 0xfc, 0x71, 0xfc, 0x6d, 0xfc, 0x6d, 0xfc, 0x69, 0xfc, 0x67, 0xfc, 0x67, 0xfc, 0x69, 0xfc, 0x65, 0xfc, 0x69, 0xfc, 0x6b, 0xfc, 0x6d, 0xfc, 0x6f, 0xfc, 0x73, 0xfc, 0x77, 0xfc, 0x79, 0xfc, 0x7f, 0xfc, 0x83, 0xfc, 0x89, 0xfc, 0x8f, 0xfc, 0x95, 0xfc, 0x9b, 0xfc, 0xa1, 0xfc, 0xa9, 0xfc, 0xb1, 0xfc, 0xb5, 0xfc, 0xc3, 0xfc, 0xcb, 0xfc, 0xd7, 0xfc, 0xdd, 0xfc, 0xeb, 0xfc, 0xf5, 0xfc, 0xff, 0xfc, 0x11, 0xfd, 0x19, 0xfd, 0x25, 0xfd, 0x33, 0xfd, 0x43, 0xfd, 0x53, 0xfd, 0x63, 0xfd, 0x73, 0xfd, 0x85, 0xfd, 0x97, 0xfd, 0xa9, 0xfd, 0xbb, 0xfd, 0xd1, 0xfd, 0xe5, 0xfd, 0xf5, 0xfd, 0x0f, 0xfe, 0x1f, 0xfe, 0x36, 0xfe, 0x4c, 0xfe, 0x5e, 0xfe, 0x76, 0xfe, 0x8a, 0xfe, 0x9f, 0xfe, 0xb5, 0xfe, 0xc7, 0xfe, 0xde, 0xfe, 0xf0, 0xfe, 0x06, 0xff, 0x17, 0xff, 0x2d, 0xff, 0x3f, 0xff, 0x51, 0xff, 0x68, 0xff, 0x74, 0xff, 0x89, 0xff, 0x96, 0xff, 0xa8, 0xff, 0xb6, 0xff, 0xc8, 0xff, 0xd4, 0xff, 0xe4, 0xff, 0xf3, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x1d, 0x00, 0x2c, 0x00, 0x38, 0x00, 0x4a, 0x00, 0x58, 0x00, 0x68, 0x00, 0x77, 0x00, 0x86, 0x00, 0x95, 0x00, 0xa3, 0x00, 0xb5, 0x00, 0xc4, 0x00, 0xce, 0x00, 0xdf, 0x00, 0xeb, 0x00, 0xf7, 0x00, 0x07, 0x01, 0x10, 0x01, 0x1e, 0x01, 0x28, 0x01, 0x37, 0x01, 0x40, 0x01, 0x4e, 0x01, 0x5d, 0x01, 0x64, 0x01, 0x72, 0x01, 0x7f, 0x01, 0x8a, 0x01, 0x99, 0x01, 0xa8, 0x01, 0xb4, 0x01, 0xc1, 0x01, 0xcc, 0x01, 0xd9, 0x01, 0xe5, 0x01, 0xf4, 0x01, 0xff, 0x01, 0x0b, 0x02, 0x15, 0x02, 0x1f, 0x02, 0x2d, 0x02, 0x37, 0x02, 0x43, 0x02, 0x4d, 0x02, 0x5b, 0x02, 0x67, 0x02, 0x75, 0x02, 0x81, 0x02, 0x91, 0x02, 0x9b, 0x02, 0xa9, 0x02, 0xb7, 0x02, 0xc1, 0x02, 0xcd, 0x02, 0xdb, 0x02, 0xe7, 0x02, 0xef, 0x02, 0xfb, 0x02, 0x05, 0x03, 0x11, 0x03, 0x1b, 0x03, 0x21, 0x03, 0x2b, 0x03, 0x2f, 0x03, 0x37, 0x03, 0x41, 0x03, 0x45, 0x03, 0x49, 0x03, 0x4f, 0x03, 0x53, 0x03, 0x55, 0x03, 0x55, 0x03, 0x5b, 0x03, 0x59, 0x03, 0x59, 0x03, 0x59, 0x03, 0x53, 0x03, 0x4f, 0x03, 0x4b, 0x03, 0x47, 0x03, 0x3f, 0x03, 0x37, 0x03, 0x2f, 0x03, 0x25, 0x03, 0x1d, 0x03, 0x15, 0x03, 0x0b, 0x03, 0xff, 0x02, 0xf5, 0x02, 0xef, 0x02, 0xe7, 0x02, 0xe1, 0x02, 0xd7, 0x02, 0xcd, 0x02, 0xc5, 0x02, 0xc1, 0x02, 0xb5, 0x02, 0xad, 0x02, 0xa5, 0x02, 0x99, 0x02, 0x93, 0x02, 0x87, 0x02, 0x81, 0x02, 0x75, 0x02, 0x6f, 0x02, 0x63, 0x02, 0x59, 0x02, 0x51, 0x02, 0x41, 0x02, 0x3b, 0x02, 0x2d, 0x02, 0x21, 0x02, 0x17, 0x02, 0x09, 0x02, 0xfd, 0x01, 0xf1, 0x01, 0xe1, 0x01, 0xd5, 0x01, 0xc6, 0x01, 0xb5, 0x01, 0xa8, 0x01, 0x96, 0x01, 0x87, 0x01, 0x75, 0x01, 0x67, 0x01, 0x57, 0x01, 0x49, 0x01, 0x3a, 0x01, 0x2a, 0x01, 0x1e, 0x01, 0x0a, 0x01, 0xfe, 0x00, 0xf2, 0x00, 0xe0, 0x00, 0xd7, 0x00, 0xcb, 0x00, 0xbe, 0x00, 0xb2, 0x00, 0xa4, 0x00, 0x98, 0x00, 0x8b, 0x00, 0x80, 0x00, 0x73, 0x00, 0x65, 0x00, 0x5e, 0x00, 0x4f, 0x00, 0x40, 0x00, 0x38, 0x00, 0x29, 0x00, 0x1f, 0x00, 0x17, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf5, 0xff, 0xea, 0xff, 0xe3, 0xff, 0xd8, 0xff, 0xcf, 0xff, 0xc5, 0xff, 0xbd, 0xff, 0xb6, 0xff, 0xaa, 0xff, 0xa5, 0xff, 0x9b, 0xff, 0x95, 0xff, 0x8c, 0xff, 0x83, 0xff, 0x7e, 0xff, 0x74, 0xff, 0x6e, 0xff, 0x60, 0xff, 0x5f, 0xff, 0x50, 0xff, 0x45, 0xff, 0x3b, 0xff, 0x30, 0xff, 0x26, 0xff, 0x1a, 0xff, 0x11, 0xff, 0x03, 0xff, 0xf7, 0xfe, 0xea, 0xfe, 0xe1, 0xfe, 0xd3, 0xfe, 0xc7, 0xfe, 0xb7, 0xfe, 0xac, 0xfe, 0x9f, 0xfe, 0x93, 0xfe, 0x84, 0xfe, 0x73, 0xfe, 0x66, 0xfe, 0x58, 0xfe, 0x46, 0xfe, 0x3a, 0xfe, 0x2a, 0xfe, 0x1b, 0xfe, 0x0a, 0xfe, 0xfd, 0xfd, 0xef, 0xfd, 0xdd, 0xfd, 0xcf, 0xfd, 0xbf, 0xfd, 0xaf, 0xfd, 0xa1, 0xfd, 0x91, 0xfd, 0x83, 0xfd, 0x73, 0xfd, 0x63, 0xfd, 0x55, 0xfd, 0x47, 0xfd, 0x39, 0xfd, 0x2b, 0xfd, 0x1f, 0xfd, 0x13, 0xfd, 0x05, 0xfd, 0xfb, 0xfc, 0xef, 0xfc, 0xe7, 0xfc, 0xdb, 0xfc, 0xd3, 0xfc, 0xcd, 0xfc, 0xc3, 0xfc, 0xbb, 0xfc, 0xb5, 0xfc, 0xb1, 0xfc, 0xa7, 0xfc, 0xa3, 0xfc, 0x9b, 0xfc, 0x97, 0xfc, 0x91, 0xfc, 0x8b, 0xfc, 0x89, 0xfc, 0x85, 0xfc, 0x81, 0xfc, 0x7d, 0xfc, 0x7b, 0xfc, 0x79, 0xfc, 0x77, 0xfc, 0x77, 0xfc, 0x7b, 0xfc, 0x77, 0xfc, 0x7d, 0xfc, 0x7f, 0xfc, 0x83, 0xfc, 0x85, 0xfc, 0x89, 0xfc, 0x8f, 0xfc, 0x95, 0xfc, 0x9b, 0xfc, 0xa1, 0xfc, 0xa7, 0xfc, 0xad, 0xfc, 0xb3, 0xfc, 0xbb, 0xfc, 0xc5, 0xfc, 0xcf, 0xfc, 0xd5, 0xfc, 0xdd, 0xfc, 0xe7, 0xfc, 0xf3, 0xfc, 0xfb, 0xfc, 0x07, 0xfd, 0x0d, 0xfd, 0x19, 0xfd, 0x25, 0xfd, 0x2d, 0xfd, 0x3d, 0xfd, 0x49, 0xfd, 0x55, 0xfd, 0x63, 0xfd, 0x6d, 0xfd, 0x7d, 0xfd, 0x89, 0xfd, 0x97, 0xfd, 0xa9, 0xfd, 0xb7, 0xfd, 0xc7, 0xfd, 0xd7, 0xfd, 0xeb, 0xfd, 0xfb, 0xfd, 0x0f, 0xfe, 0x25, 0xfe, 0x34, 0xfe, 0x49, 0xfe, 0x60, 0xfe, 0x72, 0xfe, 0x8a, 0xfe, 0x9c, 0xfe, 0xb2, 0xfe, 0xc9, 0xfe, 0xde, 0xfe, 0xf6, 0xfe, 0x0b, 0xff, 0x20, 0xff, 0x33, 0xff, 0x4b, 0xff, 0x5f, 0xff, 0x75, 0xff, 0x8a, 0xff, 0x9e, 0xff, 0xb1, 0xff, 0xc3, 0xff, 0xd8, 0xff, 0xea, 0xff, 0xfc, 0xff, 0x10, 0x00, 0x20, 0x00, 0x34, 0x00, 0x46, 0x00, 0x59, 0x00, 0x6a, 0x00, 0x7c, 0x00, 0x8f, 0x00, 0x9d, 0x00, 0xb0, 0x00, 0xc2, 0x00, 0xd4, 0x00, 0xe5, 0x00, 0xf7, 0x00, 0x0a, 0x01, 0x1b, 0x01, 0x2a, 0x01, 0x3a, 0x01, 0x4b, 0x01, 0x5b, 0x01, 0x6c, 0x01, 0x7b, 0x01, 0x8d, 0x01, 0x97, 0x01, 0xa8, 0x01, 0xb7, 0x01, 0xc6, 0x01, 0xd5, 0x01, 0xe1, 0x01, 0xf0, 0x01, 0xfd, 0x01, 0x09, 0x02, 0x17, 0x02, 0x23, 0x02, 0x31, 0x02, 0x3d, 0x02, 0x49, 0x02, 0x55, 0x02, 0x5d, 0x02, 0x69, 0x02, 0x75, 0x02, 0x7d, 0x02, 0x83, 0x02, 0x8b, 0x02, 0x95, 0x02, 0x99, 0x02, 0xa3, 0x02, 0xa9, 0x02, 0xad, 0x02, 0xb5, 0x02, 0xb9, 0x02, 0xbd, 0x02, 0xc1, 0x02, 0xc7, 0x02, 0xc9, 0x02, 0xcf, 0x02, 0xcf, 0x02, 0xd5, 0x02, 0xd5, 0x02, 0xd5, 0x02, 0xd9, 0x02, 0xd9, 0x02, 0xdb, 0x02, 0xdb, 0x02, 0xdd, 0x02, 0xdf, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xe3, 0x02, 0xe5, 0x02, 0xe3, 0x02, 0xe5, 0x02, 0xe3, 0x02, 0xe5, 0x02, 0xe1, 0x02, 0xe3, 0x02, 0xdd, 0x02, 0xdf, 0x02, 0xdb, 0x02, 0xdd, 0x02, 0xd5, 0x02, 0xd5, 0x02, 0xd5, 0x02, 0xcf, 0x02, 0xc9, 0x02, 0xc5, 0x02, 0xc3, 0x02, 0xbd, 0x02, 0xb7, 0x02, 0xb3, 0x02, 0xad, 0x02, 0xab, 0x02, 0xa1, 0x02, 0x9f, 0x02, 0x95, 0x02, 0x8d, 0x02, 0x8b, 0x02, 0x81, 0x02, 0x79, 0x02, 0x6f, 0x02, 0x69, 0x02, 0x5f, 0x02, 0x53, 0x02, 0x49, 0x02, 0x3d, 0x02, 0x33, 0x02, 0x27, 0x02, 0x1d, 0x02, 0x0f, 0x02, 0x05, 0x02, 0xff, 0x01, 0xee, 0x01, 0xe5, 0x01, 0xd8, 0x01, 0xd2, 0x01, 0xc3, 0x01, 0xb7, 0x01, 0xb1, 0x01, 0xa2, 0x01, 0x97, 0x01, 0x8d, 0x01, 0x82, 0x01, 0x73, 0x01, 0x6d, 0x01, 0x60, 0x01, 0x55, 0x01, 0x48, 0x01, 0x42, 0x01, 0x34, 0x01, 0x2a, 0x01, 0x21, 0x01, 0x13, 0x01, 0x06, 0x01, 0xfe, 0x00, 0xf1, 0x00, 0xe6, 0x00, 0xdc, 0x00, 0xd0, 0x00, 0xc7, 0x00, 0xb5, 0x00, 0xaf, 0x00, 0xa0, 0x00, 0x92, 0x00, 0x89, 0x00, 0x7a, 0x00, 0x6e, 0x00, 0x64, 0x00, 0x55, 0x00, 0x4a, 0x00, 0x3e, 0x00, 0x34, 0x00, 0x25, 0x00, 0x1a, 0x00, 0x0d, 0x00, 0x04, 0x00, 0xf6, 0xff, 0xed, 0xff, 0xe3, 0xff, 0xd5, 0xff, 0xcc, 0xff, 0xbf, 0xff, 0xb4, 0xff, 0xa8, 0xff, 0x9f, 0xff, 0x8f, 0xff, 0x87, 0xff, 0x78, 0xff, 0x6e, 0xff, 0x63, 0xff, 0x54, 0xff, 0x47, 0xff, 0x3b, 0xff, 0x32, 0xff, 0x21, 0xff, 0x15, 0xff, 0x0e, 0xff, 0x00, 0xff, 0xf6, 0xfe, 0xea, 0xfe, 0xe2, 0xfe, 0xd3, 0xfe, 0xcd, 0xfe, 0xc0, 0xfe, 0xb8, 0xfe, 0xae, 0xfe, 0xa8, 0xfe, 0xa0, 0xfe, 0x94, 0xfe, 0x90, 0xfe, 0x85, 0xfe, 0x81, 0xfe, 0x76, 0xfe, 0x70, 0xfe, 0x6a, 0xfe, 0x60, 0xfe, 0x5d, 0xfe, 0x57, 0xfe, 0x4c, 0xfe, 0x4c, 0xfe, 0x42, 0xfe, 0x40, 0xfe, 0x3c, 0xfe, 0x37, 0xfe, 0x31, 0xfe, 0x30, 0xfe, 0x2b, 0xfe, 0x24, 0xfe, 0x21, 0xfe, 0x1c, 0xfe, 0x18, 0xfe, 0x12, 0xfe, 0x0d, 0xfe, 0x07, 0xfe, 0xff, 0xfd, 0xfd, 0xfd, 0xf5, 0xfd, 0xf1, 0xfd, 0xeb, 0xfd, 0xe5, 0xfd, 0xe3, 0xfd, 0xdb, 0xfd, 0xd9, 0xfd, 0xcf, 0xfd, 0xcd, 0xfd, 0xcb, 0xfd, 0xc5, 0xfd, 0xc1, 0xfd, 0xbb, 0xfd, 0xbf, 0xfd, 0xbb, 0xfd, 0xb5, 0xfd, 0xb7, 0xfd, 0xb1, 0xfd, 0xb3, 0xfd, 0xb3, 0xfd, 0xb1, 0xfd, 0xb5, 0xfd, 0xb3, 0xfd, 0xb5, 0xfd, 0xb5, 0xfd, 0xb5, 0xfd, 0xbb, 0xfd, 0xb5, 0xfd, 0xbb, 0xfd, 0xc1, 0xfd, 0xc5, 0xfd, 0xc7, 0xfd, 0xcb, 0xfd, 0xd1, 0xfd, 0xd1, 0xfd, 0xd9, 0xfd, 0xd9, 0xfd, 0xe1, 0xfd, 0xe5, 0xfd, 0xeb, 0xfd, 0xed, 0xfd, 0xf3, 0xfd, 0xf7, 0xfd, 0xfb, 0xfd, 0x04, 0xfe, 0x07, 0xfe, 0x0f, 0xfe, 0x16, 0xfe, 0x1c, 0xfe, 0x27, 0xfe, 0x2d, 0xfe, 0x36, 0xfe, 0x40, 0xfe, 0x4b, 0xfe, 0x55, 0xfe, 0x60, 0xfe, 0x6c, 0xfe, 0x78, 0xfe, 0x82, 0xfe, 0x8e, 0xfe, 0x97, 0xfe, 0xa3, 0xfe, 0xb1, 0xfe, 0xba, 0xfe, 0xc7, 0xfe, 0xcf, 0xfe, 0xdb, 0xfe, 0xe8, 0xfe, 0xf0, 0xfe, 0xf9, 0xfe, 0x08, 0xff, 0x0f, 0xff, 0x1d, 0xff, 0x24, 0xff, 0x30, 0xff, 0x39, 0xff, 0x42, 0xff, 0x4a, 0xff, 0x57, 0xff, 0x60, 0xff, 0x65, 0xff, 0x74, 0xff, 0x7b, 0xff, 0x86, 0xff, 0x8f, 0xff, 0x96, 0xff, 0xa1, 0xff, 0xaa, 0xff, 0xb0, 0xff, 0xbc, 0xff, 0xc3, 0xff, 0xce, 0xff, 0xd7, 0xff, 0xe0, 0xff, 0xea, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x13, 0x00, 0x1c, 0x00, 0x28, 0x00, 0x35, 0x00, 0x3d, 0x00, 0x4c, 0x00, 0x56, 0x00, 0x64, 0x00, 0x71, 0x00, 0x80, 0x00, 0x8c, 0x00, 0x98, 0x00, 0xa7, 0x00, 0xb2, 0x00, 0xbf, 0x00, 0xcd, 0x00, 0xd9, 0x00, 0xe5, 0x00, 0xf1, 0x00, 0x01, 0x01, 0x0c, 0x01, 0x15, 0x01, 0x24, 0x01, 0x2d, 0x01, 0x3c, 0x01, 0x48, 0x01, 0x55, 0x01, 0x60, 0x01, 0x6a, 0x01, 0x76, 0x01, 0x81, 0x01, 0x85, 0x01, 0x96, 0x01, 0x9f, 0x01, 0xa9, 0x01, 0xb4, 0x01, 0xb7, 0x01, 0xc3, 0x01, 0xca, 0x01, 0xd2, 0x01, 0xdb, 0x01, 0xde, 0x01, 0xea, 0x01, 0xf0, 0x01, 0xf9, 0x01, 0x03, 0x02, 0x09, 0x02, 0x0f, 0x02, 0x15, 0x02, 0x1d, 0x02, 0x21, 0x02, 0x27, 0x02, 0x2d, 0x02, 0x33, 0x02, 0x37, 0x02, 0x39, 0x02, 0x3d, 0x02, 0x3f, 0x02, 0x45, 0x02, 0x43, 0x02, 0x45, 0x02, 0x47, 0x02, 0x43, 0x02, 0x47, 0x02, 0x49, 0x02, 0x49, 0x02, 0x47, 0x02, 0x47, 0x02, 0x4b, 0x02, 0x45, 0x02, 0x49, 0x02, 0x49, 0x02, 0x47, 0x02, 0x45, 0x02, 0x47, 0x02, 0x43, 0x02, 0x41, 0x02, 0x43, 0x02, 0x3b, 0x02, 0x3b, 0x02, 0x39, 0x02, 0x31, 0x02, 0x33, 0x02, 0x29, 0x02, 0x21, 0x02, 0x1d, 0x02, 0x15, 0x02, 0x11, 0x02, 0x09, 0x02, 0x03, 0x02, 0xf9, 0x01, 0xf4, 0x01, 0xea, 0x01, 0xe8, 0x01, 0xdb, 0x01, 0xd2, 0x01, 0xc9, 0x01, 0xc0, 0x01, 0xba, 0x01, 0xb2, 0x01, 0xa5, 0x01, 0x9c, 0x01, 0x91, 0x01, 0x8b, 0x01, 0x81, 0x01, 0x78, 0x01, 0x6d, 0x01, 0x61, 0x01, 0x57, 0x01, 0x4e, 0x01, 0x46, 0x01, 0x39, 0x01, 0x34, 0x01, 0x28, 0x01, 0x1c, 0x01, 0x18, 0x01, 0x0f, 0x01, 0x04, 0x01, 0xf8, 0x00, 0xef, 0x00, 0xe6, 0x00, 0xdc, 0x00, 0xd6, 0x00, 0xcb, 0x00, 0xc4, 0x00, 0xbb, 0x00, 0xb0, 0x00, 0xa6, 0x00, 0xa0, 0x00, 0x97, 0x00, 0x8f, 0x00, 0x83, 0x00, 0x7c, 0x00, 0x74, 0x00, 0x6d, 0x00, 0x67, 0x00, 0x5e, 0x00, 0x58, 0x00, 0x50, 0x00, 0x4a, 0x00, 0x40, 0x00, 0x3b, 0x00, 0x35, 0x00, 0x2c, 0x00, 0x25, 0x00, 0x1c, 0x00, 0x16, 0x00, 0x0b, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xe3, 0xff, 0xdb, 0xff, 0xd2, 0xff, 0xc9, 0xff, 0xc0, 0xff, 0xb9, 0xff, 0xb0, 0xff, 0xa5, 0xff, 0x9b, 0xff, 0x98, 0xff, 0x8a, 0xff, 0x81, 0xff, 0x77, 0xff, 0x6e, 0xff, 0x66, 0xff, 0x59, 0xff, 0x4e, 0xff, 0x3f, 0xff, 0x36, 0xff, 0x24, 0xff, 0x18, 0xff, 0x0f, 0xff, 0x00, 0xff, 0xf3, 0xfe, 0xe5, 0xfe, 0xd9, 0xfe, 0xcd, 0xfe, 0xc0, 0xfe, 0xb4, 0xfe, 0xa8, 0xfe, 0x9a, 0xfe, 0x90, 0xfe, 0x87, 0xfe, 0x7b, 0xfe, 0x6f, 0xfe, 0x69, 0xfe, 0x5d, 0xfe, 0x55, 0xfe, 0x4c, 0xfe, 0x45, 0xfe, 0x3f, 0xfe, 0x3a, 0xfe, 0x30, 0xfe, 0x2b, 0xfe, 0x22, 0xfe, 0x1f, 0xfe, 0x18, 0xfe, 0x12, 0xfe, 0x0c, 0xfe, 0x06, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xf9, 0xfd, 0xf1, 0xfd, 0xf1, 0xfd, 0xed, 0xfd, 0xe9, 0xfd, 0xe7, 0xfd, 0xe5, 0xfd, 0xe5, 0xfd, 0xe5, 0xfd, 0xe1, 0xfd, 0xe5, 0xfd, 0xe1, 0xfd, 0xe5, 0xfd, 0xe5, 0xfd, 0xe5, 0xfd, 0xe9, 0xfd, 0xe9, 0xfd, 0xeb, 0xfd, 0xef, 0xfd, 0xf1, 0xfd, 0xf7, 0xfd, 0xfb, 0xfd, 0xfd, 0xfd, 0x04, 0xfe, 0x07, 0xfe, 0x0f, 0xfe, 0x12, 0xfe, 0x19, 0xfe, 0x1f, 0xfe, 0x24, 0xfe, 0x2a, 0xfe, 0x2b, 0xfe, 0x33, 0xfe, 0x3a, 0xfe, 0x3d, 0xfe, 0x42, 0xfe, 0x46, 0xfe, 0x49, 0xfe, 0x4b, 0xfe, 0x51, 0xfe, 0x52, 0xfe, 0x58, 0xfe, 0x5b, 0xfe, 0x5b, 0xfe, 0x61, 0xfe, 0x61, 0xfe, 0x67, 0xfe, 0x69, 0xfe, 0x6a, 0xfe, 0x72, 0xfe, 0x75, 0xfe, 0x7c, 0xfe, 0x7c, 0xfe, 0x82, 0xfe, 0x8b, 0xfe, 0x8e, 0xfe, 0x94, 0xfe, 0x9a, 0xfe, 0xa5, 0xfe, 0xa6, 0xfe, 0xaf, 0xfe, 0xb7, 0xfe, 0xbd, 0xfe, 0xc1, 0xfe, 0xcd, 0xfe, 0xd2, 0xfe, 0xd9, 0xfe, 0xdf, 0xfe, 0xe7, 0xfe, 0xee, 0xfe, 0xf0, 0xfe, 0xf9, 0xfe, 0xfd, 0xfe, 0x05, 0xff, 0x0b, 0xff, 0x0e, 0xff, 0x12, 0xff, 0x18, 0xff, 0x20, 0xff, 0x26, 0xff, 0x2d, 0xff, 0x33, 0xff, 0x3b, 0xff, 0x3f, 0xff, 0x45, 0xff, 0x4b, 0xff, 0x53, 0xff, 0x5d, 0xff, 0x62, 0xff, 0x6b, 0xff, 0x74, 0xff, 0x80, 0xff, 0x89, 0xff, 0x95, 0xff, 0xa1, 0xff, 0xab, 0xff, 0xb9, 0xff, 0xc6, 0xff, 0xcf, 0xff, 0xda, 0xff, 0xe7, 0xff, 0xf2, 0xff, 0xff, 0xff, 0x0d, 0x00, 0x14, 0x00, 0x20, 0x00, 0x2c, 0x00, 0x38, 0x00, 0x44, 0x00, 0x4d, 0x00, 0x59, 0x00, 0x64, 0x00, 0x6e, 0x00, 0x77, 0x00, 0x83, 0x00, 0x8c, 0x00, 0x98, 0x00, 0xa3, 0x00, 0xad, 0x00, 0xb5, 0x00, 0xc1, 0x00, 0xca, 0x00, 0xd7, 0x00, 0xe2, 0x00, 0xef, 0x00, 0xfb, 0x00, 0x03, 0x01, 0x10, 0x01, 0x19, 0x01, 0x27, 0x01, 0x2d, 0x01, 0x39, 0x01, 0x42, 0x01, 0x4e, 0x01, 0x55, 0x01, 0x61, 0x01, 0x69, 0x01, 0x73, 0x01, 0x7b, 0x01, 0x81, 0x01, 0x88, 0x01, 0x8d, 0x01, 0x97, 0x01, 0x9a, 0x01, 0xa5, 0x01, 0xa9, 0x01, 0xaf, 0x01, 0xb8, 0x01, 0xbb, 0x01, 0xc4, 0x01, 0xc9, 0x01, 0xd0, 0x01, 0xd5, 0x01, 0xd8, 0x01, 0xdf, 0x01, 0xe5, 0x01, 0xea, 0x01, 0xea, 0x01, 0xf0, 0x01, 0xf6, 0x01, 0xf7, 0x01, 0xfa, 0x01, 0x01, 0x02, 0x01, 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x07, 0x02, 0x05, 0x02, 0x07, 0x02, 0x03, 0x02, 0x01, 0x02, 0x03, 0x02, 0xfa, 0x01, 0xfa, 0x01, 0xf4, 0x01, 0xed, 0x01, 0xea, 0x01, 0xe8, 0x01, 0xe1, 0x01, 0xdb, 0x01, 0xd8, 0x01, 0xd2, 0x01, 0xcd, 0x01, 0xc4, 0x01, 0xc1, 0x01, 0xba, 0x01, 0xb7, 0x01, 0xac, 0x01, 0xa6, 0x01, 0xa6, 0x01, 0x9f, 0x01, 0x96, 0x01, 0x93, 0x01, 0x8e, 0x01, 0x87, 0x01, 0x84, 0x01, 0x7e, 0x01, 0x76, 0x01, 0x72, 0x01, 0x6a, 0x01, 0x66, 0x01, 0x63, 0x01, 0x5a, 0x01, 0x51, 0x01, 0x4f, 0x01, 0x43, 0x01, 0x40, 0x01, 0x36, 0x01, 0x34, 0x01, 0x2a, 0x01, 0x27, 0x01, 0x21, 0x01, 0x16, 0x01, 0x15, 0x01, 0x0c, 0x01, 0x09, 0x01, 0x00, 0x01, 0xfb, 0x00, 0xf2, 0x00, 0xeb, 0x00, 0xe6, 0x00, 0xdd, 0x00, 0xd9, 0x00, 0xd3, 0x00, 0xc7, 0x00, 0xc7, 0x00, 0xb9, 0x00, 0xb5, 0x00, 0xac, 0x00, 0xa4, 0x00, 0x9d, 0x00, 0x9a, 0x00, 0x8f, 0x00, 0x89, 0x00, 0x83, 0x00, 0x77, 0x00, 0x74, 0x00, 0x6b, 0x00, 0x64, 0x00, 0x5c, 0x00, 0x55, 0x00, 0x4f, 0x00, 0x46, 0x00, 0x40, 0x00, 0x34, 0x00, 0x34, 0x00, 0x29, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xf0, 0xff, 0xe9, 0xff, 0xe3, 0xff, 0xd8, 0xff, 0xcf, 0xff, 0xc5, 0xff, 0xbd, 0xff, 0xb6, 0xff, 0xab, 0xff, 0x9f, 0xff, 0x98, 0xff, 0x8d, 0xff, 0x87, 0xff, 0x7e, 0xff, 0x74, 0xff, 0x69, 0xff, 0x60, 0xff, 0x5a, 0xff, 0x50, 0xff, 0x4b, 0xff, 0x41, 0xff, 0x3b, 0xff, 0x33, 0xff, 0x2a, 0xff, 0x23, 0xff, 0x1b, 0xff, 0x17, 0xff, 0x0c, 0xff, 0x05, 0xff, 0xff, 0xfe, 0xf9, 0xfe, 0xf0, 0xfe, 0xea, 0xfe, 0xe7, 0xfe, 0xdf, 0xfe, 0xd8, 0xfe, 0xd2, 0xfe, 0xcf, 0xfe, 0xc6, 0xfe, 0xc0, 0xfe, 0xba, 0xfe, 0xb4, 0xfe, 0xb1, 0xfe, 0xa9, 0xfe, 0xa8, 0xfe, 0xa0, 0xfe, 0x9d, 0xfe, 0x96, 0xfe, 0x93, 0xfe, 0x93, 0xfe, 0x88, 0xfe, 0x8b, 0xfe, 0x85, 0xfe, 0x82, 0xfe, 0x7f, 0xfe, 0x7c, 0xfe, 0x7e, 0xfe, 0x78, 0xfe, 0x76, 0xfe, 0x75, 0xfe, 0x75, 0xfe, 0x73, 0xfe, 0x72, 0xfe, 0x70, 0xfe, 0x70, 0xfe, 0x72, 0xfe, 0x70, 0xfe, 0x6f, 0xfe, 0x70, 0xfe, 0x70, 0xfe, 0x70, 0xfe, 0x70, 0xfe, 0x72, 0xfe, 0x73, 0xfe, 0x72, 0xfe, 0x72, 0xfe, 0x75, 0xfe, 0x75, 0xfe, 0x78, 0xfe, 0x72, 0xfe, 0x79, 0xfe, 0x7b, 0xfe, 0x79, 0xfe, 0x7c, 0xfe, 0x7b, 0xfe, 0x84, 0xfe, 0x82, 0xfe, 0x85, 0xfe, 0x85, 0xfe, 0x88, 0xfe, 0x8a, 0xfe, 0x8b, 0xfe, 0x8d, 0xfe, 0x90, 0xfe, 0x93, 0xfe, 0x93, 0xfe, 0x99, 0xfe, 0x99, 0xfe, 0x99, 0xfe, 0x9c, 0xfe, 0x9d, 0xfe, 0x9d, 0xfe, 0xa2, 0xfe, 0xa2, 0xfe, 0xa3, 0xfe, 0xa3, 0xfe, 0xa6, 0xfe, 0xa6, 0xfe, 0xab, 0xfe, 0xae, 0xfe, 0xae, 0xfe, 0xaf, 0xfe, 0xb2, 0xfe, 0xb7, 0xfe, 0xba, 0xfe, 0xc0, 0xfe, 0xc1, 0xfe, 0xc7, 0xfe, 0xcc, 0xfe, 0xd0, 0xfe, 0xdb, 0xfe, 0xdf, 0xfe, 0xe8, 0xfe, 0xee, 0xfe, 0xf7, 0xfe, 0xff, 0xfe, 0x08, 0xff, 0x12, 0xff, 0x1b, 0xff, 0x26, 0xff, 0x2d, 0xff, 0x39, 0xff, 0x42, 0xff, 0x4a, 0xff, 0x54, 0xff, 0x5c, 0xff, 0x66, 0xff, 0x71, 0xff, 0x78, 0xff, 0x81, 0xff, 0x8a, 0xff, 0x90, 0xff, 0x98, 0xff, 0xa1, 0xff, 0xaa, 0xff, 0xb1, 0xff, 0xb9, 0xff, 0xc0, 0xff, 0xc9, 0xff, 0xd2, 0xff, 0xdd, 0xff, 0xe4, 0xff, 0xec, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x05, 0x00, 0x14, 0x00, 0x1f, 0x00, 0x29, 0x00, 0x34, 0x00, 0x3e, 0x00, 0x4c, 0x00, 0x55, 0x00, 0x5f, 0x00, 0x6e, 0x00, 0x7a, 0x00, 0x85, 0x00, 0x8f, 0x00, 0x9b, 0x00, 0xa9, 0x00, 0xb5, 0x00, 0xc1, 0x00, 0xcb, 0x00, 0xd9, 0x00, 0xe3, 0x00, 0xeb, 0x00, 0xf8, 0x00, 0x00, 0x01, 0x09, 0x01, 0x16, 0x01, 0x1c, 0x01, 0x27, 0x01, 0x33, 0x01, 0x37, 0x01, 0x43, 0x01, 0x4e, 0x01, 0x55, 0x01, 0x60, 0x01, 0x6a, 0x01, 0x73, 0x01, 0x81, 0x01, 0x87, 0x01, 0x91, 0x01, 0x9a, 0x01, 0xa3, 0x01, 0xaf, 0x01, 0xb5, 0x01, 0xc0, 0x01, 0xc4, 0x01, 0xd2, 0x01, 0xd9, 0x01, 0xdf, 0x01, 0xe4, 0x01, 0xed, 0x01, 0xf0, 0x01, 0xf3, 0x01, 0xf7, 0x01, 0xfc, 0x01, 0xfc, 0x01, 0xfd, 0x01, 0x01, 0x02, 0x01, 0x02, 0xff, 0x01, 0xfc, 0x01, 0xfd, 0x01, 0xfa, 0x01, 0xfa, 0x01, 0xf9, 0x01, 0xf6, 0x01, 0xf1, 0x01, 0xf0, 0x01, 0xee, 0x01, 0xe7, 0x01, 0xe5, 0x01, 0xde, 0x01, 0xd8, 0x01, 0xd6, 0x01, 0xd2, 0x01, 0xc9, 0x01, 0xc3, 0x01, 0xbb, 0x01, 0xb7, 0x01, 0xb2, 0x01, 0xac, 0x01, 0xa3, 0x01, 0x9c, 0x01, 0x99, 0x01, 0x90, 0x01, 0x88, 0x01, 0x84, 0x01, 0x7f, 0x01, 0x78, 0x01, 0x6f, 0x01, 0x6c, 0x01, 0x66, 0x01, 0x5e, 0x01, 0x58, 0x01, 0x52, 0x01, 0x4e, 0x01, 0x45, 0x01, 0x40, 0x01, 0x3c, 0x01, 0x34, 0x01, 0x31, 0x01, 0x2b, 0x01, 0x25, 0x01, 0x1f, 0x01, 0x19, 0x01, 0x10, 0x01, 0x0d, 0x01, 0x07, 0x01, 0x01, 0x01, 0xfa, 0x00, 0xf2, 0x00, 0xec, 0x00, 0xe5, 0x00, 0xe0, 0x00, 0xd6, 0x00, 0xd0, 0x00, 0xc8, 0x00, 0xbf, 0x00, 0xb9, 0x00, 0xb0, 0x00, 0xac, 0x00, 0xa0, 0x00, 0x9b, 0x00, 0x92, 0x00, 0x89, 0x00, 0x83, 0x00, 0x79, 0x00, 0x73, 0x00, 0x6a, 0x00, 0x61, 0x00, 0x5c, 0x00, 0x55, 0x00, 0x47, 0x00, 0x41, 0x00, 0x3b, 0x00, 0x35, 0x00, 0x2b, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x16, 0x00, 0x10, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xde, 0xff, 0xd7, 0xff, 0xd1, 0xff, 0xc9, 0xff, 0xc3, 0xff, 0xba, 0xff, 0xb4, 0xff, 0xa8, 0xff, 0xa1, 0xff, 0x99, 0xff, 0x8d, 0xff, 0x86, 0xff, 0x7b, 0xff, 0x72, 0xff, 0x69, 0xff, 0x60, 0xff, 0x56, 0xff, 0x4d, 0xff, 0x44, 0xff, 0x39, 0xff, 0x2f, 0xff, 0x27, 0xff, 0x1b, 0xff, 0x12, 0xff, 0x08, 0xff, 0x02, 0xff, 0xf6, 0xfe, 0xeb, 0xfe, 0xe4, 0xfe, 0xd9, 0xfe, 0xd0, 0xfe, 0xc6, 0xfe, 0xc1, 0xfe, 0xb5, 0xfe, 0xae, 0xfe, 0xa5, 0xfe, 0x9d, 0xfe, 0x94, 0xfe, 0x90, 0xfe, 0x88, 0xfe, 0x82, 0xfe, 0x7c, 0xfe, 0x76, 0xfe, 0x73, 0xfe, 0x6c, 0xfe, 0x69, 0xfe, 0x63, 0xfe, 0x61, 0xfe, 0x5a, 0xfe, 0x58, 0xfe, 0x55, 0xfe, 0x51, 0xfe, 0x4f, 0xfe, 0x4e, 0xfe, 0x4b, 0xfe, 0x46, 0xfe, 0x45, 0xfe, 0x43, 0xfe, 0x46, 0xfe, 0x3f, 0xfe, 0x42, 0xfe, 0x3f, 0xfe, 0x40, 0xfe, 0x40, 0xfe, 0x40, 0xfe, 0x40, 0xfe, 0x40, 0xfe, 0x46, 0xfe, 0x45, 0xfe, 0x46, 0xfe, 0x49, 0xfe, 0x49, 0xfe, 0x4e, 0xfe, 0x4f, 0xfe, 0x51, 0xfe, 0x52, 0xfe, 0x55, 0xfe, 0x5a, 0xfe, 0x58, 0xfe, 0x60, 0xfe, 0x63, 0xfe, 0x67, 0xfe, 0x69, 0xfe, 0x6c, 0xfe, 0x70, 0xfe, 0x73, 0xfe, 0x76, 0xfe, 0x79, 0xfe, 0x7c, 0xfe, 0x81, 0xfe, 0x85, 0xfe, 0x88, 0xfe, 0x8d, 0xfe, 0x90, 0xfe, 0x93, 0xfe, 0x97, 0xfe, 0x9c, 0xfe, 0x9f, 0xfe, 0xa3, 0xfe, 0xa5, 0xfe, 0xac, 0xfe, 0xae, 0xfe, 0xb5, 0xfe, 0xb8, 0xfe, 0xbd, 0xfe, 0xc1, 0xfe, 0xc4, 0xfe, 0xcc, 0xfe, 0xd2, 0xfe, 0xd6, 0xfe, 0xdc, 0xfe, 0xea, 0xfe, 0xed, 0xfe, 0xf9, 0xfe, 0x00, 0xff, 0x06, 0xff, 0x0f, 0xff, 0x18, 0xff, 0x21, 0xff, 0x27, 0xff, 0x33, 0xff, 0x3e, 0xff, 0x45, 0xff, 0x51, 0xff, 0x56, 0xff, 0x62, 0xff, 0x69, 0xff, 0x74, 0xff, 0x7d, 0xff, 0x83, 0xff, 0x8a, 0xff, 0x93, 0xff, 0x9e, 0xff, 0xa5, 0xff, 0xab, 0xff, 0xb1, 0xff, 0xb9, 0xff, 0xbf, 0xff, 0xc5, 0xff, 0xce, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xea, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x19, 0x00, 0x20, 0x00, 0x25, 0x00, 0x2c, 0x00, 0x34, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x47, 0x00, 0x4f, 0x00, 0x56, 0x00, 0x5e, 0x00, 0x64, 0x00, 0x6d, 0x00, 0x77, 0x00, 0x7c, 0x00, 0x85, 0x00, 0x8e, 0x00, 0x97, 0x00, 0xa0, 0x00, 0xa9, 0x00, 0xaf, 0x00, 0xb9, 0x00, 0xc2, 0x00, 0xcb, 0x00, 0xd0, 0x00, 0xdd, 0x00, 0xe6, 0x00, 0xec, 0x00, 0xf7, 0x00, 0xfe, 0x00, 0x07, 0x01, 0x12, 0x01, 0x19, 0x01, 0x22, 0x01, 0x2d, 0x01, 0x31, 0x01, 0x39, 0x01, 0x3d, 0x01, 0x48, 0x01, 0x4f, 0x01, 0x54, 0x01, 0x5a, 0x01, 0x60, 0x01, 0x67, 0x01, 0x6c, 0x01, 0x73, 0x01, 0x78, 0x01, 0x7e, 0x01, 0x7f, 0x01, 0x84, 0x01, 0x88, 0x01, 0x8b, 0x01, 0x8a, 0x01, 0x8e, 0x01, 0x91, 0x01, 0x93, 0x01, 0x93, 0x01, 0x94, 0x01, 0x93, 0x01, 0x96, 0x01, 0x94, 0x01, 0x96, 0x01, 0x94, 0x01, 0x93, 0x01, 0x96, 0x01, 0x91, 0x01, 0x8e, 0x01, 0x91, 0x01, 0x90, 0x01, 0x8b, 0x01, 0x8b, 0x01, 0x88, 0x01, 0x87, 0x01, 0x8a, 0x01, 0x85, 0x01, 0x84, 0x01, 0x84, 0x01, 0x82, 0x01, 0x82, 0x01, 0x7e, 0x01, 0x81, 0x01, 0x7c, 0x01, 0x7c, 0x01, 0x7f, 0x01, 0x7e, 0x01, 0x7e, 0x01, 0x7c, 0x01, 0x7e, 0x01, 0x7c, 0x01, 0x7f, 0x01, 0x7c, 0x01, 0x81, 0x01, 0x82, 0x01, 0x81, 0x01, 0x84, 0x01, 0x87, 0x01, 0x88, 0x01, 0x88, 0x01, 0x8a, 0x01, 0x8d, 0x01, 0x8b, 0x01, 0x8a, 0x01, 0x8a, 0x01, 0x8a, 0x01, 0x87, 0x01, 0x84, 0x01, 0x84, 0x01, 0x82, 0x01, 0x7b, 0x01, 0x79, 0x01, 0x73, 0x01, 0x6d, 0x01, 0x69, 0x01, 0x60, 0x01, 0x5b, 0x01, 0x51, 0x01, 0x4b, 0x01, 0x42, 0x01, 0x3a, 0x01, 0x31, 0x01, 0x27, 0x01, 0x21, 0x01, 0x16, 0x01, 0x0d, 0x01, 0x04, 0x01, 0xf8, 0x00, 0xf5, 0x00, 0xeb, 0x00, 0xe3, 0x00, 0xdf, 0x00, 0xd6, 0x00, 0xd1, 0x00, 0xca, 0x00, 0xc1, 0x00, 0xbc, 0x00, 0xb8, 0x00, 0xb2, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa0, 0x00, 0x9d, 0x00, 0x92, 0x00, 0x8e, 0x00, 0x86, 0x00, 0x85, 0x00, 0x7c, 0x00, 0x76, 0x00, 0x73, 0x00, 0x67, 0x00, 0x65, 0x00, 0x5b, 0x00, 0x56, 0x00, 0x4d, 0x00, 0x47, 0x00, 0x43, 0x00, 0x34, 0x00, 0x32, 0x00, 0x25, 0x00, 0x1c, 0x00, 0x11, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xec, 0xff, 0xe3, 0xff, 0xd8, 0xff, 0xcb, 0xff, 0xc3, 0xff, 0xb9, 0xff, 0xb0, 0xff, 0xa2, 0xff, 0x95, 0xff, 0x8c, 0xff, 0x83, 0xff, 0x78, 0xff, 0x6c, 0xff, 0x62, 0xff, 0x59, 0xff, 0x4d, 0xff, 0x3f, 0xff, 0x36, 0xff, 0x29, 0xff, 0x20, 0xff, 0x14, 0xff, 0x08, 0xff, 0xfc, 0xfe, 0xf4, 0xfe, 0xea, 0xfe, 0xde, 0xfe, 0xd8, 0xfe, 0xcc, 0xfe, 0xc7, 0xfe, 0xc1, 0xfe, 0xba, 0xfe, 0xb5, 0xfe, 0xae, 0xfe, 0xa8, 0xfe, 0xa5, 0xfe, 0xa0, 0xfe, 0x99, 0xfe, 0x96, 0xfe, 0x93, 0xfe, 0x8e, 0xfe, 0x8a, 0xfe, 0x84, 0xfe, 0x82, 0xfe, 0x7e, 0xfe, 0x79, 0xfe, 0x76, 0xfe, 0x73, 0xfe, 0x70, 0xfe, 0x6c, 0xfe, 0x6a, 0xfe, 0x69, 0xfe, 0x66, 0xfe, 0x64, 0xfe, 0x61, 0xfe, 0x5e, 0xfe, 0x5d, 0xfe, 0x5d, 0xfe, 0x5b, 0xfe, 0x5a, 0xfe, 0x57, 0xfe, 0x54, 0xfe, 0x54, 0xfe, 0x52, 0xfe, 0x4e, 0xfe, 0x4c, 0xfe, 0x4c, 0xfe, 0x4c, 0xfe, 0x4c, 0xfe, 0x48, 0xfe, 0x49, 0xfe, 0x46, 0xfe, 0x45, 0xfe, 0x45, 0xfe, 0x45, 0xfe, 0x45, 0xfe, 0x43, 0xfe, 0x43, 0xfe, 0x43, 0xfe, 0x46, 0xfe, 0x46, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0x4b, 0xfe, 0x4b, 0xfe, 0x4e, 0xfe, 0x4f, 0xfe, 0x51, 0xfe, 0x52, 0xfe, 0x55, 0xfe, 0x58, 0xfe, 0x5d, 0xfe, 0x5e, 0xfe, 0x64, 0xfe, 0x67, 0xfe, 0x6c, 0xfe, 0x72, 0xfe, 0x76, 0xfe, 0x7e, 0xfe, 0x84, 0xfe, 0x88, 0xfe, 0x90, 0xfe, 0x9c, 0xfe, 0xa2, 0xfe, 0xa8, 0xfe, 0xb4, 0xfe, 0xbd, 0xfe, 0xc4, 0xfe, 0xd3, 0xfe, 0xdb, 0xfe, 0xe8, 0xfe, 0xf3, 0xfe, 0xff, 0xfe, 0x0f, 0xff, 0x1a, 0xff, 0x2a, 0xff, 0x35, 0xff, 0x45, 0xff, 0x56, 0xff, 0x63, 0xff, 0x71, 0xff, 0x80, 0xff, 0x90, 0xff, 0x9f, 0xff, 0xae, 0xff, 0xbf, 0xff, 0xcb, 0xff, 0xdb, 0xff, 0xe9, 0xff, 0xf8, 0xff, 0x04, 0x00, 0x11, 0x00, 0x23, 0x00, 0x2f, 0x00, 0x3e, 0x00, 0x4a, 0x00, 0x56, 0x00, 0x64, 0x00, 0x74, 0x00, 0x80, 0x00, 0x8f, 0x00, 0x9b, 0x00, 0xaa, 0x00, 0xb3, 0x00, 0xc1, 0x00, 0xd3, 0x00, 0xdc, 0x00, 0xe9, 0x00, 0xf4, 0x00, 0xfb, 0x00, 0x0c, 0x01, 0x13, 0x01, 0x21, 0x01, 0x28, 0x01, 0x2e, 0x01, 0x33, 0x01, 0x39, 0x01, 0x43, 0x01, 0x45, 0x01, 0x4e, 0x01, 0x4e, 0x01, 0x54, 0x01, 0x55, 0x01, 0x57, 0x01, 0x57, 0x01, 0x5b, 0x01, 0x58, 0x01, 0x5d, 0x01, 0x5a, 0x01, 0x5b, 0x01, 0x5a, 0x01, 0x5a, 0x01, 0x5a, 0x01, 0x58, 0x01, 0x57, 0x01, 0x55, 0x01, 0x55, 0x01, 0x51, 0x01, 0x51, 0x01, 0x4e, 0x01, 0x4b, 0x01, 0x49, 0x01, 0x45, 0x01, 0x42, 0x01, 0x3d, 0x01, 0x3a, 0x01, 0x36, 0x01, 0x30, 0x01, 0x2d, 0x01, 0x25, 0x01, 0x1f, 0x01, 0x1b, 0x01, 0x16, 0x01, 0x10, 0x01, 0x0a, 0x01, 0x03, 0x01, 0x00, 0x01, 0xf7, 0x00, 0xf5, 0x00, 0xee, 0x00, 0xe9, 0x00, 0xe3, 0x00, 0xdf, 0x00, 0xd9, 0x00, 0xd4, 0x00, 0xcd, 0x00, 0xcb, 0x00, 0xc8, 0x00, 0xc1, 0x00, 0xbf, 0x00, 0xbb, 0x00, 0xb6, 0x00, 0xb2, 0x00, 0xb0, 0x00, 0xac, 0x00, 0xa7, 0x00, 0xa6, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0x9d, 0x00, 0x9d, 0x00, 0x9a, 0x00, 0x98, 0x00, 0x9a, 0x00, 0x94, 0x00, 0x97, 0x00, 0x97, 0x00, 0x98, 0x00, 0x98, 0x00, 0x98, 0x00, 0x9b, 0x00, 0x9a, 0x00, 0x9d, 0x00, 0x9b, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0xa6, 0x00, 0xa4, 0x00, 0xa3, 0x00, 0xa6, 0x00, 0xa4, 0x00, 0xa6, 0x00, 0xa3, 0x00, 0xa3, 0x00, 0x9d, 0x00, 0xa1, 0x00, 0x9b, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0x95, 0x00, 0x92, 0x00, 0x92, 0x00, 0x8e, 0x00, 0x91, 0x00, 0x8c, 0x00, 0x85, 0x00, 0x89, 0x00, 0x83, 0x00, 0x83, 0x00, 0x7d, 0x00, 0x7c, 0x00, 0x7a, 0x00, 0x79, 0x00, 0x74, 0x00, 0x73, 0x00, 0x6e, 0x00, 0x6e, 0x00, 0x6b, 0x00, 0x68, 0x00, 0x67, 0x00, 0x67, 0x00, 0x61, 0x00, 0x5f, 0x00, 0x5f, 0x00, 0x59, 0x00, 0x59, 0x00, 0x55, 0x00, 0x50, 0x00, 0x50, 0x00, 0x4d, 0x00, 0x4c, 0x00, 0x47, 0x00, 0x46, 0x00, 0x41, 0x00, 0x3d, 0x00, 0x37, 0x00, 0x38, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x23, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x17, 0x00, 0x16, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xed, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xb4, 0xff, 0xb1, 0xff, 0xa7, 0xff, 0xa1, 0xff, 0x99, 0xff, 0x8c, 0xff, 0x87, 0xff, 0x7e, 0xff, 0x74, 0xff, 0x6e, 0xff, 0x63, 0xff, 0x5a, 0xff, 0x51, 0xff, 0x45, 0xff, 0x3e, 0xff, 0x32, 0xff, 0x29, 0xff, 0x1e, 0xff, 0x12, 0xff, 0x09, 0xff, 0xfd, 0xfe, 0xf6, 0xfe, 0xea, 0xfe, 0xe1, 0xfe, 0xd9, 0xfe, 0xd2, 0xfe, 0xca, 0xfe, 0xc3, 0xfe, 0xbd, 0xfe, 0xb4, 0xfe, 0xb2, 0xfe, 0xab, 0xfe, 0xa6, 0xfe, 0xa3, 0xfe, 0x9c, 0xfe, 0x9c, 0xfe, 0x99, 0xfe, 0x93, 0xfe, 0x8e, 0xfe, 0x8d, 0xfe, 0x87, 0xfe, 0x87, 0xfe, 0x82, 0xfe, 0x7f, 0xfe, 0x7b, 0xfe, 0x79, 0xfe, 0x79, 0xfe, 0x73, 0xfe, 0x70, 0xfe, 0x72, 0xfe, 0x6f, 0xfe, 0x6f, 0xfe, 0x6d, 0xfe, 0x6a, 0xfe, 0x6a, 0xfe, 0x70, 0xfe, 0x6c, 0xfe, 0x6f, 0xfe, 0x72, 0xfe, 0x73, 0xfe, 0x73, 0xfe, 0x75, 0xfe, 0x7b, 0xfe, 0x7e, 0xfe, 0x81, 0xfe, 0x82, 0xfe, 0x8a, 0xfe, 0x8a, 0xfe, 0x91, 0xfe, 0x93, 0xfe, 0x99, 0xfe, 0x9c, 0xfe, 0xa2, 0xfe, 0xa6, 0xfe, 0xa9, 0xfe, 0xaf, 0xfe, 0xb5, 0xfe, 0xbe, 0xfe, 0xc1, 0xfe, 0xc9, 0xfe, 0xd0, 0xfe, 0xd3, 0xfe, 0xd9, 0xfe, 0xe1, 0xfe, 0xe5, 0xfe, 0xed, 0xfe, 0xf1, 0xfe, 0xf7, 0xfe, 0xff, 0xfe, 0x06, 0xff, 0x0f, 0xff, 0x12, 0xff, 0x1a, 0xff, 0x1e, 0xff, 0x27, 0xff, 0x2a, 0xff, 0x33, 0xff, 0x3b, 0xff, 0x41, 0xff, 0x4a, 0xff, 0x51, 0xff, 0x5a, 0xff, 0x5f, 0xff, 0x6e, 0xff, 0x72, 0xff, 0x7b, 0xff, 0x83, 0xff, 0x8d, 0xff, 0x98, 0xff, 0x9e, 0xff, 0xa7, 0xff, 0xae, 0xff, 0xb6, 0xff, 0xbd, 0xff, 0xc8, 0xff, 0xcf, 0xff, 0xd7, 0xff, 0xdd, 0xff, 0xe4, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x19, 0x00, 0x20, 0x00, 0x26, 0x00, 0x2e, 0x00, 0x35, 0x00, 0x3d, 0x00, 0x44, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x5b, 0x00, 0x5e, 0x00, 0x67, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x7a, 0x00, 0x80, 0x00, 0x88, 0x00, 0x8c, 0x00, 0x95, 0x00, 0x97, 0x00, 0x9e, 0x00, 0xa3, 0x00, 0xa9, 0x00, 0xac, 0x00, 0xb2, 0x00, 0xb8, 0x00, 0xbb, 0x00, 0xc2, 0x00, 0xc7, 0x00, 0xce, 0x00, 0xd0, 0x00, 0xd9, 0x00, 0xdc, 0x00, 0xe2, 0x00, 0xe8, 0x00, 0xec, 0x00, 0xef, 0x00, 0xf5, 0x00, 0xfb, 0x00, 0x00, 0x01, 0x06, 0x01, 0x0a, 0x01, 0x10, 0x01, 0x15, 0x01, 0x18, 0x01, 0x1b, 0x01, 0x22, 0x01, 0x22, 0x01, 0x28, 0x01, 0x30, 0x01, 0x33, 0x01, 0x39, 0x01, 0x3a, 0x01, 0x3f, 0x01, 0x43, 0x01, 0x48, 0x01, 0x4c, 0x01, 0x4f, 0x01, 0x57, 0x01, 0x5a, 0x01, 0x5d, 0x01, 0x63, 0x01, 0x66, 0x01, 0x66, 0x01, 0x69, 0x01, 0x6d, 0x01, 0x6f, 0x01, 0x73, 0x01, 0x75, 0x01, 0x78, 0x01, 0x7c, 0x01, 0x7c, 0x01, 0x7e, 0x01, 0x81, 0x01, 0x81, 0x01, 0x81, 0x01, 0x88, 0x01, 0x82, 0x01, 0x85, 0x01, 0x85, 0x01, 0x8a, 0x01, 0x85, 0x01, 0x85, 0x01, 0x87, 0x01, 0x84, 0x01, 0x87, 0x01, 0x84, 0x01, 0x85, 0x01, 0x81, 0x01, 0x7e, 0x01, 0x7c, 0x01, 0x78, 0x01, 0x76, 0x01, 0x73, 0x01, 0x6f, 0x01, 0x6d, 0x01, 0x67, 0x01, 0x63, 0x01, 0x61, 0x01, 0x5a, 0x01, 0x57, 0x01, 0x4e, 0x01, 0x49, 0x01, 0x42, 0x01, 0x3c, 0x01, 0x39, 0x01, 0x33, 0x01, 0x2b, 0x01, 0x24, 0x01, 0x1b, 0x01, 0x18, 0x01, 0x10, 0x01, 0x0a, 0x01, 0xfe, 0x00, 0xf7, 0x00, 0xf5, 0x00, 0xe6, 0x00, 0xe3, 0x00, 0xda, 0x00, 0xd3, 0x00, 0xcd, 0x00, 0xc2, 0x00, 0xbb, 0x00, 0xb2, 0x00, 0xb0, 0x00, 0xa7, 0x00, 0xa0, 0x00, 0x9a, 0x00, 0x91, 0x00, 0x91, 0x00, 0x88, 0x00, 0x80, 0x00, 0x7f, 0x00, 0x76, 0x00, 0x76, 0x00, 0x6a, 0x00, 0x67, 0x00, 0x62, 0x00, 0x59, 0x00, 0x55, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x2b, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf5, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xcc, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xb7, 0xff, 0xb1, 0xff, 0xaa, 0xff, 0xa5, 0xff, 0x9e, 0xff, 0x92, 0xff, 0x90, 0xff, 0x87, 0xff, 0x81, 0xff, 0x77, 0xff, 0x71, 0xff, 0x6c, 0xff, 0x65, 0xff, 0x5d, 0xff, 0x56, 0xff, 0x53, 0xff, 0x47, 0xff, 0x45, 0xff, 0x42, 0xff, 0x38, 0xff, 0x36, 0xff, 0x2d, 0xff, 0x2c, 0xff, 0x24, 0xff, 0x23, 0xff, 0x20, 0xff, 0x18, 0xff, 0x1b, 0xff, 0x15, 0xff, 0x14, 0xff, 0x0e, 0xff, 0x0e, 0xff, 0x0c, 0xff, 0x08, 0xff, 0x06, 0xff, 0xfd, 0xfe, 0xff, 0xfe, 0xfa, 0xfe, 0xf7, 0xfe, 0xf4, 0xfe, 0xf3, 0xfe, 0xed, 0xfe, 0xe8, 0xfe, 0xe7, 0xfe, 0xe2, 0xfe, 0xdf, 0xfe, 0xdb, 0xfe, 0xd8, 0xfe, 0xd5, 0xfe, 0xcf, 0xfe, 0xcf, 0xfe, 0xca, 0xfe, 0xc7, 0xfe, 0xc1, 0xfe, 0xc0, 0xfe, 0xbd, 0xfe, 0xba, 0xfe, 0xb8, 0xfe, 0xb2, 0xfe, 0xb4, 0xfe, 0xaf, 0xfe, 0xb1, 0xfe, 0xae, 0xfe, 0xae, 0xfe, 0xae, 0xfe, 0xaf, 0xfe, 0xae, 0xfe, 0xae, 0xfe, 0xaf, 0xfe, 0xac, 0xfe, 0xaf, 0xfe, 0xb2, 0xfe, 0xb5, 0xfe, 0xb2, 0xfe, 0xba, 0xfe, 0xb8, 0xfe, 0xbd, 0xfe, 0xbe, 0xfe, 0xc1, 0xfe, 0xc4, 0xfe, 0xc6, 0xfe, 0xcc, 0xfe, 0xca, 0xfe, 0xcf, 0xfe, 0xd2, 0xfe, 0xd5, 0xfe, 0xd9, 0xfe, 0xdc, 0xfe, 0xde, 0xfe, 0xe4, 0xfe, 0xea, 0xfe, 0xeb, 0xfe, 0xf1, 0xfe, 0xf3, 0xfe, 0xf9, 0xfe, 0xfc, 0xfe, 0xff, 0xfe, 0x06, 0xff, 0x0b, 0xff, 0x0f, 0xff, 0x17, 0xff, 0x1d, 0xff, 0x1e, 0xff, 0x27, 0xff, 0x2c, 0xff, 0x32, 0xff, 0x39, 0xff, 0x3e, 0xff, 0x41, 0xff, 0x4b, 0xff, 0x50, 0xff, 0x57, 0xff, 0x5d, 0xff, 0x5f, 0xff, 0x68, 0xff, 0x6c, 0xff, 0x74, 0xff, 0x78, 0xff, 0x7b, 0xff, 0x80, 0xff, 0x86, 0xff, 0x8c, 0xff, 0x90, 0xff, 0x96, 0xff, 0x9b, 0xff, 0xa1, 0xff, 0xa4, 0xff, 0xa8, 0xff, 0xad, 0xff, 0xb1, 0xff, 0xb9, 0xff, 0xbc, 0xff, 0xbf, 0xff, 0xc5, 0xff, 0xc9, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xd7, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x1a, 0x00, 0x20, 0x00, 0x26, 0x00, 0x2c, 0x00, 0x34, 0x00, 0x3b, 0x00, 0x43, 0x00, 0x4a, 0x00, 0x52, 0x00, 0x59, 0x00, 0x5f, 0x00, 0x68, 0x00, 0x6e, 0x00, 0x79, 0x00, 0x7c, 0x00, 0x85, 0x00, 0x8e, 0x00, 0x92, 0x00, 0x9a, 0x00, 0xa6, 0x00, 0xaa, 0x00, 0xaf, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xc5, 0x00, 0xca, 0x00, 0xd1, 0x00, 0xd9, 0x00, 0xdc, 0x00, 0xe3, 0x00, 0xe6, 0x00, 0xef, 0x00, 0xf5, 0x00, 0xfa, 0x00, 0x01, 0x01, 0x07, 0x01, 0x0a, 0x01, 0x10, 0x01, 0x16, 0x01, 0x19, 0x01, 0x24, 0x01, 0x27, 0x01, 0x2a, 0x01, 0x31, 0x01, 0x36, 0x01, 0x39, 0x01, 0x3f, 0x01, 0x40, 0x01, 0x43, 0x01, 0x48, 0x01, 0x49, 0x01, 0x4b, 0x01, 0x4b, 0x01, 0x4f, 0x01, 0x4c, 0x01, 0x4c, 0x01, 0x49, 0x01, 0x49, 0x01, 0x45, 0x01, 0x42, 0x01, 0x3f, 0x01, 0x39, 0x01, 0x37, 0x01, 0x31, 0x01, 0x2e, 0x01, 0x28, 0x01, 0x24, 0x01, 0x22, 0x01, 0x1e, 0x01, 0x18, 0x01, 0x13, 0x01, 0x10, 0x01, 0x0c, 0x01, 0x09, 0x01, 0x03, 0x01, 0x01, 0x01, 0xfe, 0x00, 0xfa, 0x00, 0xf5, 0x00, 0xf2, 0x00, 0xee, 0x00, 0xec, 0x00, 0xeb, 0x00, 0xe8, 0x00, 0xe2, 0x00, 0xe0, 0x00, 0xdf, 0x00, 0xd9, 0x00, 0xd9, 0x00, 0xd3, 0x00, 0xd4, 0x00, 0xd0, 0x00, 0xcb, 0x00, 0xd0, 0x00, 0xc8, 0x00, 0xc8, 0x00, 0xca, 0x00, 0xc7, 0x00, 0xc2, 0x00, 0xc4, 0x00, 0xc4, 0x00, 0xbc, 0x00, 0xc1, 0x00, 0xbb, 0x00, 0xbb, 0x00, 0xbb, 0x00, 0xb8, 0x00, 0xb5, 0x00, 0xb0, 0x00, 0xb2, 0x00, 0xaa, 0x00, 0xa9, 0x00, 0xa6, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0x9d, 0x00, 0x98, 0x00, 0x95, 0x00, 0x92, 0x00, 0x8f, 0x00, 0x8c, 0x00, 0x89, 0x00, 0x86, 0x00, 0x80, 0x00, 0x80, 0x00, 0x7f, 0x00, 0x79, 0x00, 0x76, 0x00, 0x73, 0x00, 0x6d, 0x00, 0x6a, 0x00, 0x65, 0x00, 0x5b, 0x00, 0x5b, 0x00, 0x53, 0x00, 0x4d, 0x00, 0x47, 0x00, 0x41, 0x00, 0x3d, 0x00, 0x34, 0x00, 0x2e, 0x00, 0x28, 0x00, 0x20, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xdd, 0xff, 0xd7, 0xff, 0xce, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xbc, 0xff, 0xb6, 0xff, 0xad, 0xff, 0xaa, 0xff, 0xa4, 0xff, 0x9e, 0xff, 0x9b, 0xff, 0x95, 0xff, 0x90, 0xff, 0x8a, 0xff, 0x87, 0xff, 0x83, 0xff, 0x80, 0xff, 0x7d, 0xff, 0x77, 0xff, 0x74, 0xff, 0x72, 0xff, 0x71, 0xff, 0x6c, 0xff, 0x69, 0xff, 0x68, 0xff, 0x66, 0xff, 0x62, 0xff, 0x60, 0xff, 0x5d, 0xff, 0x5c, 0xff, 0x57, 0xff, 0x53, 0xff, 0x50, 0xff, 0x4d, 0xff, 0x4a, 0xff, 0x45, 0xff, 0x41, 0xff, 0x3e, 0xff, 0x36, 0xff, 0x33, 0xff, 0x2f, 0xff, 0x2c, 0xff, 0x27, 0xff, 0x20, 0xff, 0x1b, 0xff, 0x15, 0xff, 0x15, 0xff, 0x0f, 0xff, 0x0b, 0xff, 0x08, 0xff, 0x02, 0xff, 0x02, 0xff, 0xfa, 0xfe, 0xf9, 0xfe, 0xf6, 0xfe, 0xf1, 0xfe, 0xf0, 0xfe, 0xed, 0xfe, 0xe7, 0xfe, 0xe5, 0xfe, 0xde, 0xfe, 0xdc, 0xfe, 0xd8, 0xfe, 0xd5, 0xfe, 0xd2, 0xfe, 0xcd, 0xfe, 0xcc, 0xfe, 0xc9, 0xfe, 0xc3, 0xfe, 0xc3, 0xfe, 0xc1, 0xfe, 0xbb, 0xfe, 0xbb, 0xfe, 0xb5, 0xfe, 0xb5, 0xfe, 0xb1, 0xfe, 0xb1, 0xfe, 0xb1, 0xfe, 0xac, 0xfe, 0xae, 0xfe, 0xae, 0xfe, 0xae, 0xfe, 0xab, 0xfe, 0xae, 0xfe, 0xaf, 0xfe, 0xb1, 0xfe, 0xb1, 0xfe, 0xb4, 0xfe, 0xb7, 0xfe, 0xbb, 0xfe, 0xbd, 0xfe, 0xc1, 0xfe, 0xca, 0xfe, 0xcd, 0xfe, 0xd2, 0xfe, 0xd8, 0xfe, 0xdb, 0xfe, 0xe2, 0xfe, 0xe8, 0xfe, 0xee, 0xfe, 0xf7, 0xfe, 0xfa, 0xfe, 0xff, 0xfe, 0x09, 0xff, 0x0c, 0xff, 0x12, 0xff, 0x1a, 0xff, 0x1e, 0xff, 0x23, 0xff, 0x2d, 0xff, 0x2f, 0xff, 0x35, 0xff, 0x3f, 0xff, 0x44, 0xff, 0x4a, 0xff, 0x51, 0xff, 0x57, 0xff, 0x5f, 0xff, 0x65, 0xff, 0x6c, 0xff, 0x72, 0xff, 0x78, 0xff, 0x80, 0xff, 0x84, 0xff, 0x8c, 0xff, 0x93, 0xff, 0x98, 0xff, 0x9e, 0xff, 0xa4, 0xff, 0xab, 0xff, 0xb1, 0xff, 0xb7, 0xff, 0xbd, 0xff, 0xc0, 0xff, 0xc9, 0xff, 0xcc, 0xff, 0xd4, 0xff, 0xdb, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x13, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x2b, 0x00, 0x2e, 0x00, 0x34, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x4c, 0x00, 0x50, 0x00, 0x53, 0x00, 0x5c, 0x00, 0x62, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x7a, 0x00, 0x80, 0x00, 0x86, 0x00, 0x8b, 0x00, 0x91, 0x00, 0x98, 0x00, 0x9b, 0x00, 0xa6, 0x00, 0xad, 0x00, 0xb2, 0x00, 0xbc, 0x00, 0xc2, 0x00, 0xc7, 0x00, 0xce, 0x00, 0xd3, 0x00, 0xd9, 0x00, 0xe0, 0x00, 0xe8, 0x00, 0xec, 0x00, 0xf2, 0x00, 0xf7, 0x00, 0xfe, 0x00, 0x01, 0x01, 0x07, 0x01, 0x0d, 0x01, 0x13, 0x01, 0x16, 0x01, 0x1b, 0x01, 0x1e, 0x01, 0x25, 0x01, 0x27, 0x01, 0x2a, 0x01, 0x2e, 0x01, 0x30, 0x01, 0x34, 0x01, 0x36, 0x01, 0x37, 0x01, 0x3a, 0x01, 0x3d, 0x01, 0x3a, 0x01, 0x3f, 0x01, 0x40, 0x01, 0x3f, 0x01, 0x3f, 0x01, 0x3f, 0x01, 0x40, 0x01, 0x3d, 0x01, 0x3d, 0x01, 0x3d, 0x01, 0x3c, 0x01, 0x39, 0x01, 0x36, 0x01, 0x37, 0x01, 0x34, 0x01, 0x34, 0x01, 0x31, 0x01, 0x2e, 0x01, 0x2b, 0x01, 0x27, 0x01, 0x28, 0x01, 0x1f, 0x01, 0x21, 0x01, 0x19, 0x01, 0x18, 0x01, 0x10, 0x01, 0x10, 0x01, 0x04, 0x01, 0x03, 0x01, 0xfb, 0x00, 0xf7, 0x00, 0xf2, 0x00, 0xe8, 0x00, 0xe6, 0x00, 0xdd, 0x00, 0xdd, 0x00, 0xd3, 0x00, 0xd3, 0x00, 0xcb, 0x00, 0xc5, 0x00, 0xc4, 0x00, 0xbe, 0x00, 0xbc, 0x00, 0xb5, 0x00, 0xb5, 0x00, 0xb0, 0x00, 0xaf, 0x00, 0xad, 0x00, 0xa9, 0x00, 0xa4, 0x00, 0xa4, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0x98, 0x00, 0x9a, 0x00, 0x97, 0x00, 0x91, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8c, 0x00, 0x88, 0x00, 0x88, 0x00, 0x85, 0x00, 0x82, 0x00, 0x80, 0x00, 0x7c, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x76, 0x00, 0x74, 0x00, 0x73, 0x00, 0x71, 0x00, 0x6d, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x68, 0x00, 0x64, 0x00, 0x5e, 0x00, 0x5f, 0x00, 0x59, 0x00, 0x56, 0x00, 0x52, 0x00, 0x4f, 0x00, 0x4c, 0x00, 0x44, 0x00, 0x40, 0x00, 0x3b, 0x00, 0x38, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x29, 0x00, 0x25, 0x00, 0x1f, 0x00, 0x19, 0x00, 0x16, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xed, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xce, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xc2, 0xff, 0xb9, 0xff, 0xb4, 0xff, 0xb1, 0xff, 0xaa, 0xff, 0xa7, 0xff, 0xa2, 0xff, 0x9c, 0xff, 0x98, 0xff, 0x92, 0xff, 0x8f, 0xff, 0x8a, 0xff, 0x84, 0xff, 0x84, 0xff, 0x80, 0xff, 0x7d, 0xff, 0x78, 0xff, 0x78, 0xff, 0x74, 0xff, 0x6f, 0xff, 0x6f, 0xff, 0x6c, 0xff, 0x66, 0xff, 0x65, 0xff, 0x5f, 0xff, 0x5d, 0xff, 0x57, 0xff, 0x51, 0xff, 0x50, 0xff, 0x47, 0xff, 0x45, 0xff, 0x3f, 0xff, 0x39, 0xff, 0x36, 0xff, 0x32, 0xff, 0x2d, 0xff, 0x27, 0xff, 0x21, 0xff, 0x20, 0xff, 0x1a, 0xff, 0x17, 0xff, 0x12, 0xff, 0x11, 0xff, 0x08, 0xff, 0x08, 0xff, 0x03, 0xff, 0xfc, 0xfe, 0xfd, 0xfe, 0xf9, 0xfe, 0xf7, 0xfe, 0xf1, 0xfe, 0xf1, 0xfe, 0xf0, 0xfe, 0xeb, 0xfe, 0xed, 0xfe, 0xe7, 0xfe, 0xe7, 0xfe, 0xe4, 0xfe, 0xe8, 0xfe, 0xe7, 0xfe, 0xe4, 0xfe, 0xe7, 0xfe, 0xe8, 0xfe, 0xeb, 0xfe, 0xeb, 0xfe, 0xf0, 0xfe, 0xf0, 0xfe, 0xf4, 0xfe, 0xf6, 0xfe, 0xfa, 0xfe, 0xfd, 0xfe, 0x02, 0xff, 0x05, 0xff, 0x08, 0xff, 0x0c, 0xff, 0x0e, 0xff, 0x12, 0xff, 0x15, 0xff, 0x18, 0xff, 0x1b, 0xff, 0x20, 0xff, 0x23, 0xff, 0x27, 0xff, 0x2a, 0xff, 0x2d, 0xff, 0x2c, 0xff, 0x33, 0xff, 0x38, 0xff, 0x3b, 0xff, 0x41, 0xff, 0x42, 0xff, 0x45, 0xff, 0x4a, 0xff, 0x4b, 0xff, 0x51, 0xff, 0x56, 0xff, 0x59, 0xff, 0x5c, 0xff, 0x62, 0xff, 0x66, 0xff, 0x69, 0xff, 0x6e, 0xff, 0x72, 0xff, 0x77, 0xff, 0x7d, 0xff, 0x80, 0xff, 0x86, 0xff, 0x8a, 0xff, 0x8d, 0xff, 0x90, 0xff, 0x96, 0xff, 0x96, 0xff, 0x9b, 0xff, 0x9c, 0xff, 0x9c, 0xff, 0xa1, 0xff, 0xa2, 0xff, 0xa1, 0xff, 0xa4, 0xff, 0xa2, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa2, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xad, 0xff, 0xad, 0xff, 0xb0, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xbc, 0xff, 0xbd, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xcf, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x17, 0x00, 0x19, 0x00, 0x23, 0x00, 0x26, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x38, 0x00, 0x40, 0x00, 0x44, 0x00, 0x49, 0x00, 0x50, 0x00, 0x55, 0x00, 0x59, 0x00, 0x64, 0x00, 0x67, 0x00, 0x70, 0x00, 0x73, 0x00, 0x79, 0x00, 0x7f, 0x00, 0x85, 0x00, 0x8b, 0x00, 0x8e, 0x00, 0x95, 0x00, 0x9a, 0x00, 0xa1, 0x00, 0xa6, 0x00, 0xaa, 0x00, 0xac, 0x00, 0xb3, 0x00, 0xb9, 0x00, 0xbb, 0x00, 0xc1, 0x00, 0xbf, 0x00, 0xc8, 0x00, 0xca, 0x00, 0xcb, 0x00, 0xd3, 0x00, 0xd4, 0x00, 0xd7, 0x00, 0xd9, 0x00, 0xdd, 0x00, 0xdd, 0x00, 0xe5, 0x00, 0xe2, 0x00, 0xe6, 0x00, 0xe8, 0x00, 0xe8, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xee, 0x00, 0xeb, 0x00, 0xef, 0x00, 0xeb, 0x00, 0xee, 0x00, 0xeb, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xe8, 0x00, 0xe9, 0x00, 0xe3, 0x00, 0xe6, 0x00, 0xe3, 0x00, 0xe2, 0x00, 0xdf, 0x00, 0xe0, 0x00, 0xdc, 0x00, 0xda, 0x00, 0xd6, 0x00, 0xd3, 0x00, 0xd3, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xca, 0x00, 0xc7, 0x00, 0xc4, 0x00, 0xc2, 0x00, 0xc1, 0x00, 0xb9, 0x00, 0xbc, 0x00, 0xb6, 0x00, 0xb2, 0x00, 0xb3, 0x00, 0xb0, 0x00, 0xac, 0x00, 0xa7, 0x00, 0xaa, 0x00, 0xa3, 0x00, 0xa4, 0x00, 0xa1, 0x00, 0x9d, 0x00, 0x9b, 0x00, 0x9a, 0x00, 0x98, 0x00, 0x94, 0x00, 0x94, 0x00, 0x91, 0x00, 0x8f, 0x00, 0x8b, 0x00, 0x8c, 0x00, 0x88, 0x00, 0x86, 0x00, 0x85, 0x00, 0x82, 0x00, 0x85, 0x00, 0x80, 0x00, 0x82, 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x7f, 0x00, 0x77, 0x00, 0x76, 0x00, 0x77, 0x00, 0x71, 0x00, 0x71, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x68, 0x00, 0x65, 0x00, 0x62, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x58, 0x00, 0x52, 0x00, 0x52, 0x00, 0x49, 0x00, 0x49, 0x00, 0x41, 0x00, 0x40, 0x00, 0x3b, 0x00, 0x37, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x26, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x17, 0x00, 0x13, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xf0, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xcc, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xba, 0xff, 0xb3, 0xff, 0xb3, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0x9c, 0xff, 0x98, 0xff, 0x93, 0xff, 0x8a, 0xff, 0x89, 0xff, 0x83, 0xff, 0x7e, 0xff, 0x78, 0xff, 0x77, 0xff, 0x71, 0xff, 0x6e, 0xff, 0x6c, 0xff, 0x62, 0xff, 0x63, 0xff, 0x5f, 0xff, 0x5c, 0xff, 0x5a, 0xff, 0x54, 0xff, 0x57, 0xff, 0x54, 0xff, 0x4e, 0xff, 0x4e, 0xff, 0x50, 0xff, 0x4e, 0xff, 0x4d, 0xff, 0x4b, 0xff, 0x4b, 0xff, 0x4b, 0xff, 0x4b, 0xff, 0x4e, 0xff, 0x50, 0xff, 0x50, 0xff, 0x54, 0xff, 0x54, 0xff, 0x57, 0xff, 0x56, 0xff, 0x5d, 0xff, 0x60, 0xff, 0x60, 0xff, 0x68, 0xff, 0x68, 0xff, 0x6c, 0xff, 0x6b, 0xff, 0x74, 0xff, 0x75, 0xff, 0x78, 0xff, 0x7e, 0xff, 0x80, 0xff, 0x86, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0x90, 0xff, 0x93, 0xff, 0x98, 0xff, 0x9c, 0xff, 0xa1, 0xff, 0xa1, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xae, 0xff, 0xae, 0xff, 0xae, 0xff, 0xae, 0xff, 0xae, 0xff, 0xb1, 0xff, 0xae, 0xff, 0xae, 0xff, 0xad, 0xff, 0xae, 0xff, 0xae, 0xff, 0xab, 0xff, 0xab, 0xff, 0xab, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa2, 0xff, 0xa4, 0xff, 0x9e, 0xff, 0xa1, 0xff, 0x9b, 0xff, 0x98, 0xff, 0x95, 0xff, 0x93, 0xff, 0x8f, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0x87, 0xff, 0x84, 0xff, 0x83, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x78, 0xff, 0x78, 0xff, 0x77, 0xff, 0x74, 0xff, 0x74, 0xff, 0x6c, 0xff, 0x6f, 0xff, 0x69, 0xff, 0x6c, 0xff, 0x6c, 0xff, 0x69, 0xff, 0x6b, 0xff, 0x6b, 0xff, 0x69, 0xff, 0x6c, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6f, 0xff, 0x72, 0xff, 0x74, 0xff, 0x75, 0xff, 0x77, 0xff, 0x7a, 0xff, 0x7d, 0xff, 0x80, 0xff, 0x86, 0xff, 0x8a, 0xff, 0x90, 0xff, 0x90, 0xff, 0x98, 0xff, 0x9c, 0xff, 0x9e, 0xff, 0xa4, 0xff, 0xad, 0xff, 0xae, 0xff, 0xb4, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xc9, 0xff, 0xcf, 0xff, 0xd7, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0d, 0x00, 0x13, 0x00, 0x1a, 0x00, 0x20, 0x00, 0x29, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x3a, 0x00, 0x43, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x52, 0x00, 0x59, 0x00, 0x5c, 0x00, 0x62, 0x00, 0x67, 0x00, 0x6d, 0x00, 0x71, 0x00, 0x74, 0x00, 0x7c, 0x00, 0x7a, 0x00, 0x85, 0x00, 0x86, 0x00, 0x88, 0x00, 0x8c, 0x00, 0x8f, 0x00, 0x92, 0x00, 0x97, 0x00, 0x98, 0x00, 0x9b, 0x00, 0x9e, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0xa9, 0x00, 0xa7, 0x00, 0xac, 0x00, 0xac, 0x00, 0xad, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb3, 0x00, 0xb2, 0x00, 0xb3, 0x00, 0xb3, 0x00, 0xb5, 0x00, 0xb3, 0x00, 0xb8, 0x00, 0xb3, 0x00, 0xb5, 0x00, 0xb5, 0x00, 0xb6, 0x00, 0xb6, 0x00, 0xb0, 0x00, 0xb8, 0x00, 0xb2, 0x00, 0xb8, 0x00, 0xb6, 0x00, 0xb6, 0x00, 0xb5, 0x00, 0xb5, 0x00, 0xb6, 0x00, 0xb5, 0x00, 0xb6, 0x00, 0xb6, 0x00, 0xb5, 0x00, 0xb8, 0x00, 0xb6, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb9, 0x00, 0xb8, 0x00, 0xb9, 0x00, 0xbb, 0x00, 0xbb, 0x00, 0xb9, 0x00, 0xb9, 0x00, 0xbb, 0x00, 0xb9, 0x00, 0xb8, 0x00, 0xbc, 0x00, 0xb9, 0x00, 0xb9, 0x00, 0xb9, 0x00, 0xb9, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb3, 0x00, 0xb5, 0x00, 0xb2, 0x00, 0xb3, 0x00, 0xad, 0x00, 0xaf, 0x00, 0xaf, 0x00, 0xaa, 0x00, 0xac, 0x00, 0xa9, 0x00, 0xa4, 0x00, 0xa4, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x9d, 0x00, 0x9d, 0x00, 0x9a, 0x00, 0x95, 0x00, 0x92, 0x00, 0x91, 0x00, 0x89, 0x00, 0x88, 0x00, 0x82, 0x00, 0x80, 0x00, 0x7a, 0x00, 0x76, 0x00, 0x73, 0x00, 0x6a, 0x00, 0x68, 0x00, 0x64, 0x00, 0x61, 0x00, 0x58, 0x00, 0x56, 0x00, 0x50, 0x00, 0x4c, 0x00, 0x47, 0x00, 0x44, 0x00, 0x3d, 0x00, 0x37, 0x00, 0x31, 0x00, 0x2b, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xe1, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xd4, 0xff, 0xcc, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xbf, 0xff, 0xba, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0x9e, 0xff, 0x9b, 0xff, 0x96, 0xff, 0x8f, 0xff, 0x8a, 0xff, 0x87, 0xff, 0x81, 0xff, 0x7b, 0xff, 0x78, 0xff, 0x72, 0xff, 0x71, 0xff, 0x6c, 0xff, 0x69, 0xff, 0x65, 0xff, 0x62, 0xff, 0x5d, 0xff, 0x59, 0xff, 0x54, 0xff, 0x51, 0xff, 0x50, 0xff, 0x4d, 0xff, 0x4b, 0xff, 0x48, 0xff, 0x45, 0xff, 0x44, 0xff, 0x44, 0xff, 0x3f, 0xff, 0x3e, 0xff, 0x3f, 0xff, 0x3c, 0xff, 0x3c, 0xff, 0x3b, 0xff, 0x3b, 0xff, 0x38, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x3c, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x3e, 0xff, 0x3b, 0xff, 0x3f, 0xff, 0x3e, 0xff, 0x41, 0xff, 0x3e, 0xff, 0x42, 0xff, 0x3f, 0xff, 0x42, 0xff, 0x45, 0xff, 0x44, 0xff, 0x47, 0xff, 0x48, 0xff, 0x4b, 0xff, 0x4d, 0xff, 0x4e, 0xff, 0x4e, 0xff, 0x53, 0xff, 0x50, 0xff, 0x59, 0xff, 0x56, 0xff, 0x5a, 0xff, 0x5d, 0xff, 0x5c, 0xff, 0x5f, 0xff, 0x63, 0xff, 0x68, 0xff, 0x6b, 0xff, 0x6c, 0xff, 0x72, 0xff, 0x78, 0xff, 0x7a, 0xff, 0x80, 0xff, 0x86, 0xff, 0x89, 0xff, 0x8a, 0xff, 0x93, 0xff, 0x98, 0xff, 0x9e, 0xff, 0xa2, 0xff, 0xa5, 0xff, 0xaa, 0xff, 0xad, 0xff, 0xb1, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xbf, 0xff, 0xbd, 0xff, 0xc3, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xd2, 0xff, 0xda, 0xff, 0xde, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xed, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x25, 0x00, 0x2c, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x43, 0x00, 0x44, 0x00, 0x47, 0x00, 0x4c, 0x00, 0x4c, 0x00, 0x4c, 0x00, 0x4f, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x44, 0x00, 0x46, 0x00, 0x43, 0x00, 0x3a, 0x00, 0x37, 0x00, 0x35, 0x00, 0x2f, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x25, 0x00, 0x23, 0x00, 0x1d, 0x00, 0x19, 0x00, 0x19, 0x00, 0x11, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x13, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x22, 0x00, 0x26, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x34, 0x00, 0x37, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x50, 0x00, 0x53, 0x00, 0x58, 0x00, 0x5c, 0x00, 0x61, 0x00, 0x64, 0x00, 0x67, 0x00, 0x6a, 0x00, 0x6b, 0x00, 0x73, 0x00, 0x76, 0x00, 0x76, 0x00, 0x7a, 0x00, 0x7f, 0x00, 0x83, 0x00, 0x83, 0x00, 0x86, 0x00, 0x8b, 0x00, 0x8e, 0x00, 0x91, 0x00, 0x97, 0x00, 0x9b, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa6, 0x00, 0xac, 0x00, 0xb2, 0x00, 0xb5, 0x00, 0xb8, 0x00, 0xb9, 0x00, 0xbe, 0x00, 0xc2, 0x00, 0xc4, 0x00, 0xc8, 0x00, 0xc7, 0x00, 0xc5, 0x00, 0xcb, 0x00, 0xc8, 0x00, 0xc7, 0x00, 0xc7, 0x00, 0xc5, 0x00, 0xc7, 0x00, 0xc4, 0x00, 0xc2, 0x00, 0xbf, 0x00, 0xc2, 0x00, 0xb8, 0x00, 0xb6, 0x00, 0xb5, 0x00, 0xac, 0x00, 0xaf, 0x00, 0xaa, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0x9d, 0x00, 0x95, 0x00, 0x94, 0x00, 0x8c, 0x00, 0x88, 0x00, 0x83, 0x00, 0x80, 0x00, 0x76, 0x00, 0x74, 0x00, 0x6e, 0x00, 0x68, 0x00, 0x65, 0x00, 0x5f, 0x00, 0x58, 0x00, 0x56, 0x00, 0x4f, 0x00, 0x49, 0x00, 0x44, 0x00, 0x43, 0x00, 0x3a, 0x00, 0x38, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x2c, 0x00, 0x26, 0x00, 0x26, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x17, 0x00, 0x17, 0x00, 0x14, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xed, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc0, 0xff, 0xbd, 0xff, 0xb9, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb1, 0xff, 0xad, 0xff, 0xab, 0xff, 0xad, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0x9f, 0xff, 0x9f, 0xff, 0x9b, 0xff, 0x98, 0xff, 0x98, 0xff, 0x95, 0xff, 0x92, 0xff, 0x90, 0xff, 0x8d, 0xff, 0x87, 0xff, 0x84, 0xff, 0x83, 0xff, 0x80, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x72, 0xff, 0x72, 0xff, 0x6f, 0xff, 0x6c, 0xff, 0x69, 0xff, 0x65, 0xff, 0x62, 0xff, 0x5f, 0xff, 0x5c, 0xff, 0x59, 0xff, 0x57, 0xff, 0x56, 0xff, 0x53, 0xff, 0x53, 0xff, 0x50, 0xff, 0x4e, 0xff, 0x4e, 0xff, 0x4d, 0xff, 0x4e, 0xff, 0x4e, 0xff, 0x4d, 0xff, 0x4d, 0xff, 0x4e, 0xff, 0x51, 0xff, 0x50, 0xff, 0x50, 0xff, 0x53, 0xff, 0x53, 0xff, 0x53, 0xff, 0x59, 0xff, 0x56, 0xff, 0x5c, 0xff, 0x5f, 0xff, 0x5c, 0xff, 0x63, 0xff, 0x63, 0xff, 0x65, 0xff, 0x66, 0xff, 0x6b, 0xff, 0x6b, 0xff, 0x6b, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x71, 0xff, 0x6f, 0xff, 0x6f, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x77, 0xff, 0x74, 0xff, 0x74, 0xff, 0x72, 0xff, 0x74, 0xff, 0x74, 0xff, 0x72, 0xff, 0x74, 0xff, 0x72, 0xff, 0x74, 0xff, 0x74, 0xff, 0x75, 0xff, 0x72, 0xff, 0x74, 0xff, 0x74, 0xff, 0x75, 0xff, 0x77, 0xff, 0x78, 0xff, 0x77, 0xff, 0x78, 0xff, 0x7a, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x80, 0xff, 0x83, 0xff, 0x83, 0xff, 0x84, 0xff, 0x87, 0xff, 0x8c, 0xff, 0x8f, 0xff, 0x8f, 0xff, 0x93, 0xff, 0x96, 0xff, 0x9b, 0xff, 0x99, 0xff, 0x9f, 0xff, 0xa1, 0xff, 0xa4, 0xff, 0xab, 0xff, 0xae, 0xff, 0xb3, 0xff, 0xb6, 0xff, 0xbd, 0xff, 0xc0, 0xff, 0xc9, 0xff, 0xcc, 0xff, 0xd1, 0xff, 0xd8, 0xff, 0xde, 0xff, 0xe4, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x05, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x23, 0x00, 0x25, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x35, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x44, 0x00, 0x49, 0x00, 0x50, 0x00, 0x53, 0x00, 0x53, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x61, 0x00, 0x65, 0x00, 0x6a, 0x00, 0x6d, 0x00, 0x71, 0x00, 0x70, 0x00, 0x77, 0x00, 0x77, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x80, 0x00, 0x80, 0x00, 0x83, 0x00, 0x85, 0x00, 0x88, 0x00, 0x89, 0x00, 0x8b, 0x00, 0x92, 0x00, 0x94, 0x00, 0x98, 0x00, 0x98, 0x00, 0x9d, 0x00, 0x9d, 0x00, 0xa0, 0x00, 0xa4, 0x00, 0xa7, 0x00, 0xaa, 0x00, 0xac, 0x00, 0xaf, 0x00, 0xb2, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb9, 0x00, 0xbe, 0x00, 0xbc, 0x00, 0xbf, 0x00, 0xc2, 0x00, 0xc1, 0x00, 0xc4, 0x00, 0xc4, 0x00, 0xc7, 0x00, 0xc5, 0x00, 0xc1, 0x00, 0xc4, 0x00, 0xc2, 0x00, 0xc1, 0x00, 0xbf, 0x00, 0xbf, 0x00, 0xbf, 0x00, 0xbc, 0x00, 0xb9, 0x00, 0xb8, 0x00, 0xb6, 0x00, 0xb5, 0x00, 0xb2, 0x00, 0xb3, 0x00, 0xad, 0x00, 0xac, 0x00, 0xac, 0x00, 0xa9, 0x00, 0xaa, 0x00, 0xa3, 0x00, 0xa6, 0x00, 0xa7, 0x00, 0xa0, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0x9d, 0x00, 0x9b, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0x98, 0x00, 0x97, 0x00, 0x98, 0x00, 0x94, 0x00, 0x94, 0x00, 0x91, 0x00, 0x91, 0x00, 0x91, 0x00, 0x8c, 0x00, 0x8b, 0x00, 0x89, 0x00, 0x88, 0x00, 0x85, 0x00, 0x83, 0x00, 0x7f, 0x00, 0x7d, 0x00, 0x7c, 0x00, 0x79, 0x00, 0x76, 0x00, 0x71, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x67, 0x00, 0x64, 0x00, 0x62, 0x00, 0x61, 0x00, 0x5b, 0x00, 0x5b, 0x00, 0x56, 0x00, 0x56, 0x00, 0x56, 0x00, 0x52, 0x00, 0x52, 0x00, 0x4d, 0x00, 0x4c, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x47, 0x00, 0x47, 0x00, 0x43, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x37, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x28, 0x00, 0x26, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd2, 0xff, 0xce, 0xff, 0xcb, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xbd, 0xff, 0xba, 0xff, 0xb9, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb1, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xae, 0xff, 0xad, 0xff, 0xad, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xaa, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa1, 0xff, 0xa4, 0xff, 0xa2, 0xff, 0xa1, 0xff, 0x9f, 0xff, 0x9e, 0xff, 0x9e, 0xff, 0x99, 0xff, 0x98, 0xff, 0x96, 0xff, 0x92, 0xff, 0x90, 0xff, 0x8f, 0xff, 0x89, 0xff, 0x87, 0xff, 0x83, 0xff, 0x81, 0xff, 0x7a, 0xff, 0x78, 0xff, 0x77, 0xff, 0x6e, 0xff, 0x71, 0xff, 0x6b, 0xff, 0x68, 0xff, 0x66, 0xff, 0x63, 0xff, 0x60, 0xff, 0x5a, 0xff, 0x5c, 0xff, 0x57, 0xff, 0x54, 0xff, 0x53, 0xff, 0x50, 0xff, 0x4e, 0xff, 0x4d, 0xff, 0x47, 0xff, 0x48, 0xff, 0x41, 0xff, 0x42, 0xff, 0x42, 0xff, 0x3e, 0xff, 0x41, 0xff, 0x3e, 0xff, 0x39, 0xff, 0x3c, 0xff, 0x3b, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x3b, 0xff, 0x3c, 0xff, 0x39, 0xff, 0x3e, 0xff, 0x3e, 0xff, 0x3f, 0xff, 0x42, 0xff, 0x42, 0xff, 0x48, 0xff, 0x47, 0xff, 0x4b, 0xff, 0x4d, 0xff, 0x51, 0xff, 0x56, 0xff, 0x57, 0xff, 0x5a, 0xff, 0x60, 0xff, 0x62, 0xff, 0x66, 0xff, 0x69, 0xff, 0x6c, 0xff, 0x6f, 0xff, 0x72, 0xff, 0x77, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x81, 0xff, 0x86, 0xff, 0x89, 0xff, 0x90, 0xff, 0x90, 0xff, 0x95, 0xff, 0x96, 0xff, 0x99, 0xff, 0x9f, 0xff, 0xa4, 0xff, 0xa7, 0xff, 0xad, 0xff, 0xb1, 0xff, 0xb4, 0xff, 0xba, 0xff, 0xbc, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc9, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x13, 0x00, 0x14, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x26, 0x00, 0x25, 0x00, 0x2b, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x35, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x40, 0x00, 0x44, 0x00, 0x44, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x55, 0x00, 0x53, 0x00, 0x58, 0x00, 0x56, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x5e, 0x00, 0x5f, 0x00, 0x5f, 0x00, 0x64, 0x00, 0x61, 0x00, 0x65, 0x00, 0x67, 0x00, 0x67, 0x00, 0x68, 0x00, 0x6b, 0x00, 0x6d, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x6e, 0x00, 0x71, 0x00, 0x71, 0x00, 0x73, 0x00, 0x77, 0x00, 0x76, 0x00, 0x77, 0x00, 0x7c, 0x00, 0x7a, 0x00, 0x7c, 0x00, 0x7f, 0x00, 0x82, 0x00, 0x82, 0x00, 0x85, 0x00, 0x85, 0x00, 0x88, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x91, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x94, 0x00, 0x97, 0x00, 0x97, 0x00, 0x9a, 0x00, 0x98, 0x00, 0x9d, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0xa1, 0x00, 0xa1, 0x00, 0xa3, 0x00, 0xa4, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0x9b, 0x00, 0x9e, 0x00, 0x9b, 0x00, 0x98, 0x00, 0x95, 0x00, 0x91, 0x00, 0x8f, 0x00, 0x91, 0x00, 0x8e, 0x00, 0x88, 0x00, 0x86, 0x00, 0x82, 0x00, 0x82, 0x00, 0x7f, 0x00, 0x79, 0x00, 0x7a, 0x00, 0x77, 0x00, 0x73, 0x00, 0x73, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x6d, 0x00, 0x67, 0x00, 0x65, 0x00, 0x67, 0x00, 0x64, 0x00, 0x62, 0x00, 0x5f, 0x00, 0x5e, 0x00, 0x5b, 0x00, 0x58, 0x00, 0x56, 0x00, 0x53, 0x00, 0x52, 0x00, 0x4f, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x43, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x3a, 0x00, 0x34, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x29, 0x00, 0x26, 0x00, 0x22, 0x00, 0x23, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x16, 0x00, 0x11, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xba, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xaa, 0xff, 0xa7, 0xff, 0x9f, 0xff, 0x9e, 0xff, 0x98, 0xff, 0x92, 0xff, 0x8f, 0xff, 0x8a, 0xff, 0x87, 0xff, 0x83, 0xff, 0x80, 0xff, 0x7e, 0xff, 0x7b, 0xff, 0x7d, 0xff, 0x78, 0xff, 0x78, 0xff, 0x75, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x75, 0xff, 0x6f, 0xff, 0x72, 0xff, 0x6f, 0xff, 0x71, 0xff, 0x71, 0xff, 0x71, 0xff, 0x71, 0xff, 0x6f, 0xff, 0x6f, 0xff, 0x6f, 0xff, 0x6e, 0xff, 0x6f, 0xff, 0x6e, 0xff, 0x6c, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6b, 0xff, 0x69, 0xff, 0x6b, 0xff, 0x68, 0xff, 0x66, 0xff, 0x65, 0xff, 0x65, 0xff, 0x62, 0xff, 0x63, 0xff, 0x63, 0xff, 0x62, 0xff, 0x62, 0xff, 0x5f, 0xff, 0x62, 0xff, 0x60, 0xff, 0x5f, 0xff, 0x5f, 0xff, 0x62, 0xff, 0x60, 0xff, 0x5f, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x5f, 0xff, 0x62, 0xff, 0x63, 0xff, 0x60, 0xff, 0x63, 0xff, 0x62, 0xff, 0x63, 0xff, 0x66, 0xff, 0x66, 0xff, 0x6b, 0xff, 0x6b, 0xff, 0x6e, 0xff, 0x71, 0xff, 0x74, 0xff, 0x75, 0xff, 0x77, 0xff, 0x7d, 0xff, 0x7b, 0xff, 0x81, 0xff, 0x87, 0xff, 0x87, 0xff, 0x8c, 0xff, 0x92, 0xff, 0x95, 0xff, 0x98, 0xff, 0x9e, 0xff, 0xa1, 0xff, 0xa5, 0xff, 0xaa, 0xff, 0xae, 0xff, 0xae, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xbc, 0xff, 0xbf, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc8, 0xff, 0xcc, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xd5, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x13, 0x00, 0x16, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x23, 0x00, 0x25, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x34, 0x00, 0x34, 0x00, 0x35, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x43, 0x00, 0x44, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4d, 0x00, 0x4f, 0x00, 0x52, 0x00, 0x55, 0x00, 0x55, 0x00, 0x59, 0x00, 0x5c, 0x00, 0x61, 0x00, 0x5f, 0x00, 0x65, 0x00, 0x67, 0x00, 0x67, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x73, 0x00, 0x76, 0x00, 0x7a, 0x00, 0x7d, 0x00, 0x80, 0x00, 0x86, 0x00, 0x86, 0x00, 0x88, 0x00, 0x8c, 0x00, 0x8f, 0x00, 0x92, 0x00, 0x95, 0x00, 0x97, 0x00, 0x9a, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa4, 0x00, 0xa7, 0x00, 0xaa, 0x00, 0xa7, 0x00, 0xaf, 0x00, 0xac, 0x00, 0xb0, 0x00, 0xb3, 0x00, 0xb5, 0x00, 0xb5, 0x00, 0xb8, 0x00, 0xbc, 0x00, 0xbb, 0x00, 0xbf, 0x00, 0xbe, 0x00, 0xbc, 0x00, 0xbf, 0x00, 0xbf, 0x00, 0xbb, 0x00, 0xbf, 0x00, 0xbb, 0x00, 0xb6, 0x00, 0xb6, 0x00, 0xb6, 0x00, 0xb2, 0x00, 0xaf, 0x00, 0xac, 0x00, 0xa6, 0x00, 0xa6, 0x00, 0xa0, 0x00, 0x9d, 0x00, 0x9a, 0x00, 0x95, 0x00, 0x92, 0x00, 0x8c, 0x00, 0x8b, 0x00, 0x88, 0x00, 0x86, 0x00, 0x82, 0x00, 0x7d, 0x00, 0x7d, 0x00, 0x7c, 0x00, 0x74, 0x00, 0x77, 0x00, 0x76, 0x00, 0x70, 0x00, 0x73, 0x00, 0x6e, 0x00, 0x70, 0x00, 0x6d, 0x00, 0x68, 0x00, 0x68, 0x00, 0x64, 0x00, 0x68, 0x00, 0x5f, 0x00, 0x62, 0x00, 0x61, 0x00, 0x5b, 0x00, 0x58, 0x00, 0x56, 0x00, 0x53, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x49, 0x00, 0x44, 0x00, 0x41, 0x00, 0x40, 0x00, 0x3a, 0x00, 0x38, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x26, 0x00, 0x22, 0x00, 0x20, 0x00, 0x19, 0x00, 0x16, 0x00, 0x13, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xdb, 0xff, 0xd7, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xc6, 0xff, 0xc3, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xbd, 0xff, 0xbc, 0xff, 0xb9, 0xff, 0xba, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb3, 0xff, 0xb3, 0xff, 0xb4, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xb3, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb9, 0xff, 0xb9, 0xff, 0xba, 0xff, 0xba, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc3, 0xff, 0xc0, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc0, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc0, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xc2, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xbc, 0xff, 0xbc, 0xff, 0xbc, 0xff, 0xb9, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb0, 0xff, 0xb1, 0xff, 0xae, 0xff, 0xab, 0xff, 0xaa, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa4, 0xff, 0x9f, 0xff, 0x9f, 0xff, 0x9b, 0xff, 0x9c, 0xff, 0x9b, 0xff, 0x99, 0xff, 0x98, 0xff, 0x96, 0xff, 0x96, 0xff, 0x98, 0xff, 0x96, 0xff, 0x96, 0xff, 0x96, 0xff, 0x96, 0xff, 0x98, 0xff, 0x98, 0xff, 0x99, 0xff, 0x9b, 0xff, 0x9c, 0xff, 0x9c, 0xff, 0x9e, 0xff, 0x9f, 0xff, 0xa4, 0xff, 0x9f, 0xff, 0xa4, 0xff, 0xa1, 0xff, 0xa7, 0xff, 0xaa, 0xff, 0xa8, 0xff, 0xad, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xb3, 0xff, 0xb6, 0xff, 0xb9, 0xff, 0xb6, 0xff, 0xbd, 0xff, 0xbc, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xc2, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x11, 0x00, 0x14, 0x00, 0x17, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x28, 0x00, 0x29, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x41, 0x00, 0x44, 0x00, 0x47, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x53, 0x00, 0x55, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x64, 0x00, 0x64, 0x00, 0x67, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x70, 0x00, 0x70, 0x00, 0x74, 0x00, 0x71, 0x00, 0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0x71, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6d, 0x00, 0x6d, 0x00, 0x6a, 0x00, 0x6d, 0x00, 0x67, 0x00, 0x64, 0x00, 0x67, 0x00, 0x62, 0x00, 0x5f, 0x00, 0x5e, 0x00, 0x5c, 0x00, 0x56, 0x00, 0x58, 0x00, 0x52, 0x00, 0x50, 0x00, 0x4d, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x44, 0x00, 0x44, 0x00, 0x41, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x37, 0x00, 0x38, 0x00, 0x37, 0x00, 0x32, 0x00, 0x37, 0x00, 0x31, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x31, 0x00, 0x32, 0x00, 0x34, 0x00, 0x32, 0x00, 0x34, 0x00, 0x32, 0x00, 0x35, 0x00, 0x35, 0x00, 0x35, 0x00, 0x38, 0x00, 0x34, 0x00, 0x38, 0x00, 0x35, 0x00, 0x3b, 0x00, 0x3a, 0x00, 0x37, 0x00, 0x38, 0x00, 0x35, 0x00, 0x3a, 0x00, 0x38, 0x00, 0x35, 0x00, 0x37, 0x00, 0x38, 0x00, 0x35, 0x00, 0x37, 0x00, 0x35, 0x00, 0x35, 0x00, 0x37, 0x00, 0x32, 0x00, 0x35, 0x00, 0x32, 0x00, 0x35, 0x00, 0x34, 0x00, 0x31, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x32, 0x00, 0x31, 0x00, 0x31, 0x00, 0x2c, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x2c, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x26, 0x00, 0x26, 0x00, 0x23, 0x00, 0x23, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x10, 0x00, 0x10, 0x00, 0x08, 0x00, 0x08, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xbc, 0xff, 0xbd, 0xff, 0xb9, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xae, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa2, 0xff, 0xa1, 0xff, 0x9f, 0xff, 0xa1, 0xff, 0x9c, 0xff, 0x9f, 0xff, 0x9b, 0xff, 0x98, 0xff, 0x99, 0xff, 0x95, 0xff, 0x98, 0xff, 0x95, 0xff, 0x96, 0xff, 0x92, 0xff, 0x92, 0xff, 0x8d, 0xff, 0x8f, 0xff, 0x8d, 0xff, 0x8c, 0xff, 0x8a, 0xff, 0x87, 0xff, 0x89, 0xff, 0x86, 0xff, 0x86, 0xff, 0x86, 0xff, 0x89, 0xff, 0x83, 0xff, 0x86, 0xff, 0x84, 0xff, 0x87, 0xff, 0x84, 0xff, 0x86, 0xff, 0x87, 0xff, 0x87, 0xff, 0x87, 0xff, 0x86, 0xff, 0x8a, 0xff, 0x8a, 0xff, 0x89, 0xff, 0x8c, 0xff, 0x8d, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0x90, 0xff, 0x92, 0xff, 0x93, 0xff, 0x95, 0xff, 0x98, 0xff, 0x9b, 0xff, 0x9c, 0xff, 0xa1, 0xff, 0xa1, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xaa, 0xff, 0xad, 0xff, 0xae, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xb9, 0xff, 0xb7, 0xff, 0xbc, 0xff, 0xba, 0xff, 0xc0, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc6, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xd1, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xda, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x10, 0x00, 0x13, 0x00, 0x11, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x17, 0x00, 0x19, 0x00, 0x17, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x20, 0x00, 0x23, 0x00, 0x22, 0x00, 0x25, 0x00, 0x23, 0x00, 0x26, 0x00, 0x26, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x34, 0x00, 0x32, 0x00, 0x34, 0x00, 0x38, 0x00, 0x3b, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x43, 0x00, 0x43, 0x00, 0x43, 0x00, 0x46, 0x00, 0x46, 0x00, 0x46, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x53, 0x00, 0x56, 0x00, 0x56, 0x00, 0x56, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5b, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0x58, 0x00, 0x59, 0x00, 0x58, 0x00, 0x58, 0x00, 0x50, 0x00, 0x53, 0x00, 0x4f, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4c, 0x00, 0x46, 0x00, 0x46, 0x00, 0x43, 0x00, 0x41, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x38, 0x00, 0x38, 0x00, 0x34, 0x00, 0x35, 0x00, 0x32, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x2b, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x22, 0x00, 0x23, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x17, 0x00, 0x19, 0x00, 0x14, 0x00, 0x17, 0x00, 0x14, 0x00, 0x14, 0x00, 0x10, 0x00, 0x11, 0x00, 0x13, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xed, 0xff, 0xef, 0xff, 0xed, 0xff, 0xec, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xcc, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc0, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc0, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc0, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xbd, 0xff, 0xbc, 0xff, 0xba, 0xff, 0xbc, 0xff, 0xb9, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb0, 0xff, 0xb3, 0xff, 0xb0, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb9, 0xff, 0xb4, 0xff, 0xb9, 0xff, 0xba, 0xff, 0xba, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc0, 0xff, 0xc6, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x16, 0x00, 0x13, 0x00, 0x16, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x23, 0x00, 0x23, 0x00, 0x23, 0x00, 0x28, 0x00, 0x25, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x32, 0x00, 0x37, 0x00, 0x37, 0x00, 0x35, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3a, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x40, 0x00, 0x44, 0x00, 0x44, 0x00, 0x47, 0x00, 0x49, 0x00, 0x47, 0x00, 0x4d, 0x00, 0x4c, 0x00, 0x4f, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x55, 0x00, 0x53, 0x00, 0x53, 0x00, 0x56, 0x00, 0x53, 0x00, 0x58, 0x00, 0x56, 0x00, 0x59, 0x00, 0x58, 0x00, 0x58, 0x00, 0x59, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x5b, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x59, 0x00, 0x5c, 0x00, 0x58, 0x00, 0x58, 0x00, 0x58, 0x00, 0x56, 0x00, 0x56, 0x00, 0x58, 0x00, 0x58, 0x00, 0x56, 0x00, 0x56, 0x00, 0x56, 0x00, 0x55, 0x00, 0x56, 0x00, 0x55, 0x00, 0x55, 0x00, 0x53, 0x00, 0x55, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x4d, 0x00, 0x4c, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x46, 0x00, 0x47, 0x00, 0x46, 0x00, 0x44, 0x00, 0x41, 0x00, 0x41, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x3a, 0x00, 0x3d, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x38, 0x00, 0x3b, 0x00, 0x35, 0x00, 0x35, 0x00, 0x35, 0x00, 0x32, 0x00, 0x34, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x28, 0x00, 0x29, 0x00, 0x25, 0x00, 0x23, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x13, 0x00, 0x16, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbc, 0xff, 0xba, 0xff, 0xba, 0xff, 0xb7, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb1, 0xff, 0xb0, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xae, 0xff, 0xae, 0xff, 0xad, 0xff, 0xae, 0xff, 0xae, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb0, 0xff, 0xb3, 0xff, 0xb0, 0xff, 0xb3, 0xff, 0xb3, 0xff, 0xb6, 0xff, 0xb3, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb9, 0xff, 0xb6, 0xff, 0xb9, 0xff, 0xb9, 0xff, 0xb9, 0xff, 0xb7, 0xff, 0xba, 0xff, 0xba, 0xff, 0xb9, 0xff, 0xba, 0xff, 0xba, 0xff, 0xbf, 0xff, 0xba, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xbd, 0xff, 0xc3, 0xff, 0xc0, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc2, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe1, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xea, 0xff, 0xec, 0xff, 0xea, 0xff, 0xed, 0xff, 0xea, 0xff, 0xed, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x13, 0x00, 0x17, 0x00, 0x16, 0x00, 0x13, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x20, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x23, 0x00, 0x23, 0x00, 0x26, 0x00, 0x28, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x31, 0x00, 0x37, 0x00, 0x35, 0x00, 0x3a, 0x00, 0x38, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x44, 0x00, 0x44, 0x00, 0x47, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x53, 0x00, 0x53, 0x00, 0x58, 0x00, 0x58, 0x00, 0x59, 0x00, 0x59, 0x00, 0x61, 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x61, 0x00, 0x61, 0x00, 0x64, 0x00, 0x64, 0x00, 0x64, 0x00, 0x62, 0x00, 0x65, 0x00, 0x67, 0x00, 0x64, 0x00, 0x65, 0x00, 0x64, 0x00, 0x62, 0x00, 0x61, 0x00, 0x5f, 0x00, 0x5f, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x58, 0x00, 0x59, 0x00, 0x56, 0x00, 0x56, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x44, 0x00, 0x44, 0x00, 0x40, 0x00, 0x41, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x38, 0x00, 0x35, 0x00, 0x31, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x26, 0x00, 0x29, 0x00, 0x23, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x19, 0x00, 0x14, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xea, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xd7, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd2, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd5, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xe0, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x13, 0x00, 0x16, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x25, 0x00, 0x26, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x34, 0x00, 0x34, 0x00, 0x37, 0x00, 0x35, 0x00, 0x3b, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x41, 0x00, 0x40, 0x00, 0x41, 0x00, 0x44, 0x00, 0x47, 0x00, 0x49, 0x00, 0x49, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x53, 0x00, 0x50, 0x00, 0x55, 0x00, 0x52, 0x00, 0x52, 0x00, 0x53, 0x00, 0x53, 0x00, 0x50, 0x00, 0x52, 0x00, 0x53, 0x00, 0x52, 0x00, 0x52, 0x00, 0x50, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4c, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x46, 0x00, 0x47, 0x00, 0x44, 0x00, 0x46, 0x00, 0x44, 0x00, 0x44, 0x00, 0x40, 0x00, 0x44, 0x00, 0x40, 0x00, 0x43, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x35, 0x00, 0x35, 0x00, 0x35, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x28, 0x00, 0x2e, 0x00, 0x23, 0x00, 0x25, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x16, 0x00, 0x14, 0x00, 0x10, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xed, 0xff, 0xec, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xde, 0xff, 0xde, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xcf, 0xff, 0xd4, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xce, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xde, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xec, 0xff, 0xef, 0xff, 0xef, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00, 0x14, 0x00, 0x19, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x25, 0x00, 0x26, 0x00, 0x28, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x34, 0x00, 0x37, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x43, 0x00, 0x40, 0x00, 0x46, 0x00, 0x46, 0x00, 0x46, 0x00, 0x4c, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x52, 0x00, 0x52, 0x00, 0x50, 0x00, 0x53, 0x00, 0x50, 0x00, 0x52, 0x00, 0x52, 0x00, 0x4d, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x44, 0x00, 0x46, 0x00, 0x41, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x38, 0x00, 0x37, 0x00, 0x37, 0x00, 0x32, 0x00, 0x31, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x26, 0x00, 0x25, 0x00, 0x23, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x23, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x23, 0x00, 0x25, 0x00, 0x22, 0x00, 0x23, 0x00, 0x25, 0x00, 0x23, 0x00, 0x23, 0x00, 0x22, 0x00, 0x26, 0x00, 0x23, 0x00, 0x23, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x13, 0x00, 0x16, 0x00, 0x11, 0x00, 0x10, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd2, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xba, 0xff, 0xbc, 0xff, 0xb9, 0xff, 0xb9, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xad, 0xff, 0xab, 0xff, 0xab, 0xff, 0xaa, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa2, 0xff, 0xa2, 0xff, 0xa1, 0xff, 0x9b, 0xff, 0x9c, 0xff, 0x9c, 0xff, 0x99, 0xff, 0x96, 0xff, 0x96, 0xff, 0x95, 0xff, 0x96, 0xff, 0x95, 0xff, 0x92, 0xff, 0x95, 0xff, 0x8f, 0xff, 0x92, 0xff, 0x93, 0xff, 0x92, 0xff, 0x95, 0xff, 0x93, 0xff, 0x93, 0xff, 0x96, 0xff, 0x95, 0xff, 0x93, 0xff, 0x99, 0xff, 0x98, 0xff, 0x9c, 0xff, 0x9b, 0xff, 0x99, 0xff, 0x9e, 0xff, 0x9e, 0xff, 0xa4, 0xff, 0xa1, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xab, 0xff, 0xae, 0xff, 0xab, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xb7, 0xff, 0xb9, 0xff, 0xb9, 0xff, 0xba, 0xff, 0xb9, 0xff, 0xbd, 0xff, 0xba, 0xff, 0xc0, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xc3, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xec, 0xff, 0xed, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x10, 0x00, 0x14, 0x00, 0x16, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x20, 0x00, 0x25, 0x00, 0x29, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x37, 0x00, 0x37, 0x00, 0x38, 0x00, 0x3d, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x41, 0x00, 0x43, 0x00, 0x44, 0x00, 0x43, 0x00, 0x47, 0x00, 0x44, 0x00, 0x49, 0x00, 0x49, 0x00, 0x47, 0x00, 0x4d, 0x00, 0x49, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x4a, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x47, 0x00, 0x49, 0x00, 0x44, 0x00, 0x44, 0x00, 0x44, 0x00, 0x46, 0x00, 0x43, 0x00, 0x41, 0x00, 0x41, 0x00, 0x3d, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x38, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3a, 0x00, 0x37, 0x00, 0x3a, 0x00, 0x35, 0x00, 0x37, 0x00, 0x38, 0x00, 0x37, 0x00, 0x35, 0x00, 0x35, 0x00, 0x37, 0x00, 0x38, 0x00, 0x34, 0x00, 0x38, 0x00, 0x37, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x37, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x3a, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x38, 0x00, 0x38, 0x00, 0x35, 0x00, 0x37, 0x00, 0x31, 0x00, 0x31, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x23, 0x00, 0x25, 0x00, 0x20, 0x00, 0x1d, 0x00, 0x19, 0x00, 0x19, 0x00, 0x16, 0x00, 0x14, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xed, 0xff, 0xec, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xd8, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xd5, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xcc, 0xff, 0xc9, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xce, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xda, 0xff, 0xd4, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x07, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x08, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x10, 0x00, 0x13, 0x00, 0x11, 0x00, 0x13, 0x00, 0x14, 0x00, 0x11, 0x00, 0x14, 0x00, 0x14, 0x00, 0x17, 0x00, 0x11, 0x00, 0x16, 0x00, 0x14, 0x00, 0x11, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x11, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x10, 0x00, 0x14, 0x00, 0x13, 0x00, 0x13, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x17, 0x00, 0x14, 0x00, 0x16, 0x00, 0x17, 0x00, 0x14, 0x00, 0x19, 0x00, 0x16, 0x00, 0x19, 0x00, 0x17, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x11, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xed, 0xff, 0xec, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xea, 0xff, 0xea, 0xff, 0xed, 0xff, 0xed, 0xff, 0xec, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x13, 0x00, 0x14, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x22, 0x00, 0x20, 0x00, 0x23, 0x00, 0x26, 0x00, 0x25, 0x00, 0x26, 0x00, 0x28, 0x00, 0x28, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x28, 0x00, 0x28, 0x00, 0x28, 0x00, 0x29, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x20, 0x00, 0x23, 0x00, 0x22, 0x00, 0x20, 0x00, 0x1a, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x19, 0x00, 0x16, 0x00, 0x13, 0x00, 0x13, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xea, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x08, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x10, 0x00, 0x13, 0x00, 0x11, 0x00, 0x14, 0x00, 0x14, 0x00, 0x17, 0x00 }; #define tr808_mt_wav_len 31814 unsigned char tr808_oh_wav[] = { 0x52, 0x49, 0x46, 0x46, 0xae, 0x02, 0x01, 0x00, 0x57, 0x41, 0x56, 0x45, 0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e, 0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61, 0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61, 0x74, 0x61, 0x68, 0x02, 0x01, 0x00, 0xec, 0xff, 0xf8, 0xff, 0x26, 0x00, 0xfe, 0xff, 0xf0, 0xff, 0xd7, 0xff, 0x0a, 0x00, 0x7b, 0xfe, 0xfd, 0xf8, 0xfc, 0x01, 0x4e, 0x0c, 0x97, 0xfd, 0x4f, 0xef, 0x65, 0xfd, 0xe7, 0x0d, 0x6c, 0x0f, 0x7d, 0x0c, 0xb3, 0xf6, 0xf1, 0xe2, 0x46, 0xf4, 0xf5, 0x0f, 0x3b, 0x18, 0x12, 0x10, 0x1d, 0xfa, 0xdf, 0xe2, 0x88, 0xe8, 0x96, 0x05, 0xdf, 0x19, 0x66, 0x08, 0xd0, 0xf4, 0x3d, 0xef, 0x3e, 0xf6, 0x5d, 0x09, 0xb1, 0x1f, 0xbf, 0x1e, 0x5d, 0xe7, 0x92, 0xd5, 0x59, 0xf2, 0xb6, 0x07, 0xd0, 0x0f, 0xd0, 0x0c, 0xcb, 0x03, 0x4a, 0xff, 0x40, 0x13, 0x5b, 0x14, 0x08, 0xd2, 0xad, 0xc9, 0x4a, 0x0e, 0xdc, 0x2b, 0x81, 0x11, 0xa2, 0xf5, 0xe5, 0xfa, 0xd6, 0x07, 0x8d, 0xfc, 0x42, 0xee, 0x8d, 0xf8, 0x02, 0x0b, 0xbf, 0x06, 0x65, 0xfb, 0x09, 0x02, 0xce, 0x07, 0x63, 0x02, 0x2b, 0x07, 0xa8, 0x0e, 0x41, 0xe9, 0x37, 0xd6, 0x7a, 0xf9, 0xdf, 0x12, 0x77, 0x0e, 0x84, 0x04, 0xe7, 0x06, 0x91, 0x25, 0xb7, 0xfc, 0x88, 0xcc, 0xd1, 0xe3, 0x8c, 0x05, 0x09, 0x17, 0x13, 0x10, 0xcf, 0x04, 0x0c, 0x05, 0x53, 0x06, 0x51, 0xf2, 0x84, 0xe8, 0xf4, 0xfb, 0xc1, 0x12, 0xbf, 0x16, 0xbd, 0x09, 0x3f, 0xf0, 0xcc, 0xdf, 0x4a, 0xf3, 0x87, 0x0c, 0x84, 0x11, 0x5f, 0xfc, 0x24, 0xf8, 0x17, 0x03, 0x4c, 0x1f, 0x7d, 0x1b, 0x46, 0xd8, 0x6c, 0xc8, 0x86, 0xfb, 0x42, 0x28, 0x11, 0x1b, 0xa8, 0x08, 0x8f, 0x03, 0x23, 0xea, 0x5e, 0xd9, 0x3d, 0x10, 0x33, 0x24, 0xec, 0xf3, 0xf7, 0xda, 0x9b, 0xf5, 0x38, 0x1c, 0x4a, 0x15, 0xf2, 0x04, 0x1b, 0xfd, 0x0a, 0xee, 0x16, 0xf4, 0x12, 0x0a, 0x4c, 0x21, 0x19, 0x03, 0x2d, 0xcd, 0x7a, 0xeb, 0x3c, 0x1a, 0x8c, 0x29, 0x14, 0x25, 0x32, 0xe0, 0xcd, 0xb2, 0xe0, 0xe8, 0x7e, 0x29, 0x0d, 0x33, 0x22, 0x16, 0x28, 0xe5, 0xd7, 0xd6, 0xdc, 0xf3, 0x22, 0x0f, 0x9c, 0x18, 0x83, 0x11, 0xc8, 0xfa, 0xf6, 0xe3, 0x92, 0xea, 0xd2, 0x06, 0x04, 0x22, 0x90, 0x24, 0x7a, 0xed, 0x69, 0xd0, 0x7a, 0xe5, 0x63, 0x10, 0xed, 0x20, 0xc0, 0x0b, 0x79, 0xfa, 0xe5, 0xf8, 0x97, 0xfc, 0x77, 0x00, 0x2e, 0x10, 0x46, 0x10, 0x53, 0xe7, 0x55, 0xd6, 0xc7, 0xfd, 0xb2, 0x1f, 0x00, 0x1f, 0xd9, 0x0d, 0x12, 0xef, 0x55, 0xd7, 0x34, 0xeb, 0x8b, 0x11, 0x05, 0x1a, 0x08, 0x09, 0x8c, 0xf0, 0x34, 0xed, 0x0f, 0x07, 0xcd, 0x22, 0xf5, 0x0d, 0x40, 0xdd, 0x11, 0xe8, 0x29, 0x09, 0x62, 0x0e, 0x33, 0x05, 0x56, 0xfb, 0xf7, 0xf4, 0xea, 0xfb, 0xd2, 0x0a, 0xf9, 0x14, 0x80, 0x09, 0x65, 0xea, 0xe5, 0xe7, 0x52, 0xfe, 0x8e, 0x0e, 0x30, 0x0e, 0x4f, 0xfc, 0x26, 0xef, 0xb8, 0xfb, 0x6d, 0x1c, 0x9f, 0x14, 0x47, 0xe9, 0x75, 0xe3, 0xa6, 0xf7, 0x13, 0x16, 0x2b, 0x13, 0x89, 0xfc, 0x2f, 0xf0, 0x5c, 0xed, 0x17, 0x02, 0x82, 0x12, 0x96, 0x0b, 0x49, 0x00, 0xb8, 0x01, 0x72, 0xfb, 0x3c, 0xf2, 0x05, 0xfc, 0x9b, 0x07, 0xc4, 0x07, 0x08, 0x06, 0x95, 0x17, 0x31, 0x03, 0x75, 0xcb, 0x14, 0xd9, 0x5b, 0x16, 0xb4, 0x2c, 0x08, 0x21, 0x28, 0xfe, 0xd2, 0xc8, 0xa1, 0xcf, 0x71, 0x12, 0x45, 0x2c, 0xef, 0x1b, 0xe6, 0x14, 0x5c, 0xe2, 0x6f, 0xcd, 0x92, 0xed, 0x61, 0x15, 0x48, 0x1d, 0xb1, 0x1c, 0x6d, 0x08, 0xa1, 0xd9, 0x49, 0xd8, 0x6f, 0xfc, 0xdf, 0x1f, 0x85, 0x16, 0xa2, 0x01, 0x46, 0xf5, 0xd3, 0xf7, 0x72, 0xff, 0x2d, 0x09, 0x9a, 0x0a, 0xda, 0x13, 0x3f, 0x04, 0xe9, 0xce, 0x83, 0xd8, 0x07, 0x05, 0x91, 0x1b, 0xeb, 0x1f, 0x4a, 0x1b, 0xa7, 0xea, 0x2e, 0xcd, 0x37, 0xf1, 0x2f, 0x1e, 0xb9, 0x1b, 0x3a, 0x04, 0x27, 0x03, 0xe2, 0xf6, 0x34, 0xe4, 0x7a, 0xf6, 0x54, 0x11, 0x12, 0x14, 0x1f, 0x0f, 0x09, 0xff, 0x33, 0xe5, 0x9d, 0xe0, 0xf8, 0x00, 0xa6, 0x18, 0x25, 0x22, 0xf6, 0x20, 0x21, 0xd9, 0x2b, 0xbf, 0xc3, 0xec, 0x54, 0x26, 0x7e, 0x23, 0x0f, 0x15, 0xa4, 0x12, 0xb5, 0xd3, 0x40, 0xc7, 0xc5, 0x03, 0x0c, 0x2b, 0x9a, 0x20, 0x10, 0x15, 0x01, 0xe7, 0x80, 0xc7, 0x1f, 0xee, 0x83, 0x29, 0x54, 0x24, 0x8c, 0xf5, 0x1d, 0xdf, 0x84, 0xef, 0xd3, 0x10, 0xa4, 0x18, 0x6f, 0x12, 0x89, 0x03, 0x95, 0xe7, 0xdb, 0xde, 0xbd, 0xfb, 0xdb, 0x17, 0x3e, 0x13, 0x85, 0xfd, 0x77, 0xf4, 0xde, 0xf3, 0xee, 0xf5, 0x88, 0x07, 0x63, 0x10, 0xe2, 0x07, 0xf2, 0x08, 0x71, 0x14, 0x2b, 0xf3, 0xb8, 0xc7, 0x5c, 0xe7, 0x3b, 0x22, 0xf2, 0x21, 0xf4, 0x1e, 0xaf, 0x06, 0xe5, 0xc4, 0x88, 0xcd, 0x1f, 0x0f, 0xbf, 0x2d, 0xe5, 0x12, 0x57, 0x02, 0xb7, 0x01, 0x83, 0xe6, 0x44, 0xe0, 0xa6, 0x05, 0x32, 0x1a, 0x1d, 0x0d, 0x2b, 0x00, 0x14, 0x17, 0x48, 0x0a, 0xc0, 0xc8, 0x2d, 0xce, 0xac, 0x0e, 0x66, 0x34, 0xbb, 0x20, 0x34, 0xed, 0x06, 0xdd, 0xe2, 0xf1, 0x68, 0x09, 0x56, 0x12, 0x7c, 0x11, 0x1f, 0x01, 0xc3, 0xec, 0x2c, 0xed, 0x0d, 0xf8, 0xac, 0x0e, 0x91, 0x0f, 0x10, 0x15, 0xa8, 0x17, 0xc3, 0xdf, 0x94, 0xd1, 0x45, 0xfa, 0xe9, 0x18, 0xcd, 0x16, 0x17, 0x03, 0xac, 0xf3, 0x33, 0xee, 0x6c, 0xf9, 0x88, 0x0c, 0xf4, 0x10, 0x0f, 0x0e, 0x80, 0x06, 0xab, 0xef, 0x3a, 0xe2, 0x58, 0xf7, 0x7f, 0x13, 0x19, 0x1c, 0xe8, 0x01, 0xc2, 0xe6, 0x95, 0xef, 0xdd, 0x03, 0xe7, 0x0b, 0x7c, 0xfe, 0x35, 0xf9, 0x4b, 0x04, 0x0c, 0x0b, 0x71, 0x0f, 0x0f, 0x11, 0xd5, 0xe2, 0x02, 0xd1, 0x53, 0x04, 0xea, 0x29, 0xac, 0x31, 0x41, 0xf0, 0x85, 0xc4, 0xc1, 0xdf, 0x44, 0x0d, 0xfa, 0x23, 0x33, 0x14, 0x8d, 0x01, 0xe8, 0xf1, 0x21, 0xef, 0x9d, 0xfd, 0xa2, 0x0b, 0xfe, 0x0c, 0x15, 0x09, 0x6d, 0xfd, 0x2b, 0xee, 0x6d, 0xef, 0xfb, 0x02, 0x5c, 0x12, 0x0b, 0x12, 0x55, 0xfa, 0xb1, 0xe3, 0x4e, 0xf2, 0x91, 0x03, 0x10, 0x09, 0x6f, 0x0a, 0x78, 0x18, 0x0d, 0x11, 0xcf, 0xdc, 0x54, 0xd4, 0x49, 0x03, 0x3f, 0x22, 0x0f, 0x1a, 0x3c, 0xff, 0xf1, 0xe2, 0xbb, 0xee, 0xf4, 0x0a, 0xbe, 0x19, 0x3c, 0x2c, 0x11, 0xef, 0x9f, 0xb2, 0xa7, 0xdd, 0x08, 0x27, 0xc3, 0x2f, 0xfa, 0x1a, 0x85, 0xfc, 0xa7, 0xcc, 0x81, 0xda, 0x73, 0x13, 0x02, 0x29, 0x9c, 0x1e, 0xf7, 0x00, 0xfb, 0xd5, 0x14, 0xdc, 0x9b, 0x03, 0xca, 0x19, 0x0f, 0x13, 0x96, 0xff, 0xa2, 0xf4, 0x7b, 0xf7, 0x3b, 0x00, 0x60, 0x05, 0xce, 0x04, 0xf8, 0xff, 0xc5, 0xfc, 0x73, 0xfd, 0xf0, 0xff, 0x91, 0x01, 0xb8, 0x01, 0x04, 0x00, 0x11, 0xff, 0xb3, 0xff, 0x83, 0xff, 0x72, 0xff, 0x6a, 0xf6, 0x6c, 0xf8, 0xc7, 0x09, 0x95, 0x0d, 0x7b, 0x07, 0x7c, 0x1f, 0x4a, 0xfb, 0xd3, 0xb7, 0x80, 0xe4, 0x97, 0x23, 0xe9, 0x3c, 0x4d, 0x1b, 0x7a, 0xc6, 0x26, 0xc2, 0x9a, 0x0a, 0x27, 0x2f, 0x52, 0x13, 0x98, 0xf9, 0x83, 0xfd, 0xec, 0xf3, 0xa9, 0xf0, 0xdf, 0x03, 0xa1, 0x0c, 0x22, 0x05, 0x2e, 0xfe, 0x6f, 0x03, 0x7c, 0x06, 0xd1, 0xf3, 0xae, 0xef, 0x43, 0xfe, 0x5e, 0x0d, 0xc3, 0x05, 0x94, 0x18, 0x5f, 0x2d, 0xfc, 0xc8, 0xf3, 0xa4, 0x85, 0xfd, 0x39, 0x3f, 0x77, 0x28, 0x48, 0x0d, 0x0d, 0xfc, 0xa2, 0xd7, 0xfb, 0xde, 0xa2, 0xfe, 0x12, 0x16, 0xf8, 0x13, 0xf5, 0x02, 0x4d, 0xfc, 0xac, 0x0b, 0x9c, 0x1a, 0x75, 0xef, 0xce, 0xcb, 0xea, 0xe3, 0x1d, 0x18, 0x7e, 0x24, 0x21, 0x14, 0x25, 0x15, 0x53, 0xe6, 0x62, 0xd1, 0xda, 0xf3, 0xdc, 0x10, 0x4f, 0x13, 0x84, 0x07, 0x3b, 0x03, 0xaf, 0x05, 0xed, 0xfe, 0x7c, 0xf6, 0x64, 0xf4, 0x2a, 0xf8, 0x1f, 0x01, 0x5f, 0x00, 0xe5, 0x03, 0x47, 0x09, 0x32, 0x0b, 0x63, 0xff, 0x40, 0xf1, 0x86, 0xfb, 0x84, 0x0f, 0x91, 0x1e, 0x86, 0x00, 0xf0, 0xce, 0x13, 0xdf, 0x3e, 0x0a, 0x98, 0x19, 0xaa, 0x0c, 0x31, 0x12, 0x92, 0x08, 0xcf, 0xe3, 0x6b, 0xe7, 0xa0, 0x00, 0x9d, 0x0e, 0x33, 0x04, 0x78, 0xfb, 0xbf, 0x02, 0x90, 0x0b, 0xaf, 0x0d, 0x87, 0xfe, 0xf8, 0xed, 0x0a, 0xeb, 0xfa, 0xf9, 0x34, 0x08, 0xce, 0x20, 0x0e, 0x1f, 0x40, 0xe3, 0x08, 0xcf, 0xec, 0xee, 0x04, 0x1c, 0x56, 0x1e, 0x5f, 0x04, 0xbe, 0x01, 0xeb, 0x01, 0xc1, 0xe8, 0x14, 0xef, 0x97, 0x0c, 0x81, 0x11, 0xda, 0xff, 0xf7, 0xf4, 0xcb, 0xfc, 0x4b, 0x07, 0xae, 0x09, 0x37, 0x02, 0x75, 0xf9, 0x6a, 0xf6, 0xe9, 0xfc, 0xcd, 0xfb, 0x7a, 0xf5, 0x0b, 0x03, 0xbf, 0x11, 0xdf, 0x28, 0xb3, 0xff, 0x9a, 0xcd, 0xcf, 0xdd, 0xb3, 0x05, 0x5f, 0x20, 0x66, 0x14, 0x96, 0x0c, 0x21, 0xff, 0xd3, 0xe7, 0x01, 0xeb, 0x15, 0x03, 0x5f, 0x10, 0x8b, 0x07, 0x02, 0xf5, 0x66, 0xf0, 0xfb, 0x02, 0x80, 0x20, 0x64, 0x12, 0x21, 0xe5, 0x42, 0xe2, 0x19, 0xf7, 0x94, 0x0e, 0xcb, 0x13, 0xbe, 0x13, 0x62, 0x06, 0xac, 0xe5, 0x83, 0xe4, 0x31, 0xf7, 0x08, 0x0e, 0x09, 0x14, 0x59, 0x09, 0x84, 0x07, 0x9e, 0x06, 0x34, 0xea, 0x38, 0xe3, 0x54, 0xfe, 0xff, 0x24, 0xcd, 0x25, 0x23, 0xe4, 0xff, 0xd2, 0x87, 0xee, 0x19, 0x0f, 0x41, 0x1a, 0x4c, 0x0b, 0x86, 0xff, 0xee, 0x08, 0x49, 0xfd, 0x21, 0xe3, 0x46, 0xf2, 0x02, 0x0f, 0xff, 0x11, 0x81, 0x0d, 0xdc, 0x1f, 0x31, 0xee, 0x6d, 0xb6, 0xed, 0xe4, 0xc8, 0x27, 0x4a, 0x30, 0x9d, 0x19, 0x3e, 0xf0, 0xeb, 0xcd, 0xb6, 0xe3, 0x3e, 0x10, 0x42, 0x34, 0xc2, 0x1a, 0x7a, 0xde, 0x58, 0xd1, 0x51, 0xf5, 0x59, 0x1e, 0x2c, 0x19, 0x87, 0x0a, 0x60, 0x07, 0x64, 0xf0, 0x08, 0xd8, 0xd8, 0xf3, 0xdf, 0x13, 0x5f, 0x24, 0x7f, 0x25, 0x82, 0xe2, 0x03, 0xc4, 0x93, 0xe8, 0x8a, 0x1d, 0x17, 0x25, 0xff, 0x05, 0x01, 0xf8, 0xd7, 0x00, 0x26, 0xf8, 0x29, 0xf2, 0x99, 0x02, 0x7f, 0x0a, 0xcb, 0x13, 0x7b, 0x27, 0x90, 0xdf, 0x60, 0xa9, 0x0a, 0xf7, 0x53, 0x37, 0xa9, 0x27, 0xa7, 0x0f, 0x7d, 0xf9, 0x15, 0xc9, 0x4a, 0xdb, 0x1c, 0x1c, 0xdb, 0x26, 0x61, 0x2b, 0xfb, 0xf6, 0xee, 0xb5, 0xef, 0xdd, 0x80, 0x23, 0xc5, 0x2a, 0x82, 0x18, 0x18, 0xf6, 0x7e, 0xce, 0x85, 0xeb, 0x4a, 0x1b, 0xcd, 0x22, 0xb3, 0x02, 0x95, 0xe9, 0xc6, 0x05, 0xff, 0x03, 0xb7, 0xe8, 0x27, 0xee, 0x5b, 0x00, 0xc8, 0x13, 0xdf, 0x0f, 0x5d, 0x09, 0xc9, 0x0a, 0x76, 0xf7, 0xde, 0xde, 0xf1, 0xfd, 0x1a, 0x13, 0xd4, 0xff, 0xfb, 0xf2, 0xe2, 0xf6, 0xa7, 0x09, 0x7f, 0x12, 0x7f, 0x11, 0x9f, 0xff, 0xa3, 0xe4, 0x93, 0xe9, 0x58, 0x04, 0x86, 0x12, 0x1c, 0x0b, 0x4f, 0xfd, 0x00, 0xf8, 0x5d, 0xfb, 0x19, 0x00, 0xf4, 0xfa, 0x59, 0xfc, 0x61, 0x0c, 0x4a, 0x20, 0x13, 0x02, 0xb3, 0xd2, 0x85, 0xdf, 0xd0, 0x13, 0xff, 0x1f, 0x95, 0x1d, 0x04, 0x0e, 0xf4, 0xd1, 0x01, 0xcd, 0x67, 0x00, 0x17, 0x27, 0xc4, 0x1c, 0xfa, 0x0f, 0xf5, 0xf8, 0x36, 0xd7, 0xed, 0xe3, 0xc5, 0x0a, 0xd4, 0x27, 0xae, 0x11, 0xe5, 0xe8, 0xaf, 0xe2, 0x48, 0xfe, 0x8c, 0x18, 0xe6, 0x1b, 0xfd, 0xfd, 0x71, 0xe1, 0x81, 0xed, 0x7c, 0x04, 0xd9, 0x11, 0x5f, 0x0e, 0xb1, 0xfc, 0x9e, 0xf1, 0x40, 0xf5, 0x5f, 0x02, 0xb5, 0x10, 0xda, 0x10, 0x36, 0xf8, 0xe2, 0xea, 0x77, 0xf7, 0xfc, 0x05, 0xca, 0x0c, 0xac, 0x06, 0xf1, 0xfb, 0xaf, 0xf7, 0xe1, 0xfb, 0x6c, 0xf8, 0x7f, 0x04, 0x04, 0x21, 0x26, 0x04, 0x62, 0xe0, 0xa6, 0xe1, 0x2e, 0x07, 0x91, 0x1c, 0x4e, 0x0c, 0x01, 0xfa, 0x85, 0xf8, 0x52, 0x00, 0xdb, 0x01, 0x80, 0xff, 0xf3, 0xfe, 0x51, 0x01, 0xb7, 0x02, 0x7f, 0x01, 0x01, 0xfd, 0xce, 0xfb, 0xef, 0xfd, 0x4f, 0x04, 0x67, 0x08, 0x30, 0x20, 0x95, 0xfa, 0xb8, 0xbe, 0x05, 0xda, 0xed, 0x1a, 0x78, 0x2d, 0x46, 0x15, 0x39, 0x14, 0xe0, 0xe7, 0x55, 0xc4, 0x6e, 0xf1, 0x90, 0x24, 0x93, 0x23, 0xc1, 0x21, 0xb4, 0xeb, 0x7d, 0xba, 0x20, 0xea, 0x48, 0x26, 0xd6, 0x23, 0xd3, 0x07, 0x4c, 0x0a, 0x23, 0xed, 0x61, 0xcf, 0xfa, 0xf7, 0xfc, 0x1e, 0xde, 0x1e, 0x25, 0x22, 0x9d, 0xeb, 0x6b, 0xbb, 0x58, 0xe4, 0xb3, 0x21, 0x2d, 0x28, 0x26, 0x06, 0x17, 0xff, 0xf4, 0x0e, 0xf1, 0xea, 0x13, 0xd1, 0x9e, 0xf9, 0x7b, 0x21, 0x81, 0x16, 0x60, 0x14, 0xc4, 0x0e, 0x75, 0xd1, 0xe2, 0xca, 0x9f, 0x01, 0x94, 0x29, 0xfe, 0x1e, 0x6a, 0x10, 0xba, 0xf2, 0x83, 0xd5, 0x35, 0xe9, 0x2f, 0x0e, 0xc8, 0x1f, 0x1a, 0x16, 0x83, 0xf5, 0x43, 0xe4, 0x79, 0xf3, 0x25, 0x03, 0xdf, 0x10, 0x2c, 0x15, 0x4d, 0xfd, 0x01, 0xeb, 0x30, 0xf3, 0x8e, 0x00, 0x9c, 0x0e, 0x9f, 0x13, 0x6b, 0xfc, 0x90, 0xe9, 0x5f, 0xea, 0x6f, 0x08, 0x5b, 0x17, 0xd6, 0x26, 0x3f, 0x02, 0xa1, 0xc5, 0xa6, 0xd8, 0xd9, 0x17, 0x2a, 0x25, 0xf8, 0x1b, 0x82, 0x12, 0x49, 0xcf, 0x83, 0xc6, 0x8f, 0x06, 0x90, 0x2c, 0x53, 0x15, 0x73, 0x00, 0x1f, 0x02, 0x01, 0xf7, 0x4f, 0xe8, 0xcb, 0xed, 0x40, 0x06, 0x83, 0x14, 0x8c, 0x0a, 0xb7, 0x0c, 0x62, 0x0f, 0x89, 0xda, 0x94, 0xd6, 0xd2, 0x0b, 0xd3, 0x2e, 0xc4, 0x28, 0x28, 0xe2, 0x59, 0xc6, 0x9e, 0xeb, 0x9f, 0x17, 0x1b, 0x1e, 0x9f, 0x10, 0xfe, 0x15, 0x24, 0xee, 0x82, 0xd2, 0x7d, 0xea, 0xe3, 0x11, 0x0b, 0x1e, 0xbe, 0x08, 0xb4, 0xf9, 0x99, 0x01, 0x46, 0x12, 0x4a, 0x00, 0xe8, 0xde, 0x2a, 0xe6, 0x28, 0x06, 0xde, 0x0f, 0xdf, 0x03, 0x30, 0x01, 0x9f, 0x04, 0x57, 0x04, 0xfc, 0x07, 0xca, 0x01, 0x3e, 0xee, 0x3b, 0xf3, 0x7c, 0x07, 0x49, 0x0d, 0x5e, 0x0a, 0xf3, 0x04, 0xd1, 0xf2, 0xc2, 0xe9, 0xae, 0xfb, 0x0d, 0x10, 0xe0, 0x17, 0x19, 0x0d, 0x8d, 0xe9, 0x15, 0xe6, 0xae, 0xfa, 0x05, 0x03, 0x23, 0x02, 0xf0, 0x01, 0x12, 0x0a, 0xf2, 0x08, 0x42, 0x0d, 0xfd, 0x0b, 0xee, 0xe8, 0xb2, 0xda, 0x63, 0xfe, 0x30, 0x1c, 0x46, 0x1c, 0xd0, 0x0d, 0x8f, 0xeb, 0xfb, 0xd6, 0xf1, 0xf1, 0x6e, 0x15, 0x29, 0x15, 0x0d, 0xfc, 0x81, 0xfa, 0xe6, 0x12, 0x17, 0x02, 0xac, 0xeb, 0x9d, 0xeb, 0x6b, 0xfc, 0x2b, 0x10, 0x54, 0x19, 0x9b, 0x1e, 0xb3, 0xed, 0xe1, 0xce, 0x61, 0xe7, 0x4a, 0x12, 0x1f, 0x22, 0xa0, 0x06, 0xeb, 0x07, 0x1d, 0x1c, 0x96, 0xd7, 0x49, 0xc3, 0x8b, 0x06, 0xff, 0x2c, 0xa0, 0x15, 0x18, 0xff, 0xbc, 0xff, 0x53, 0xe9, 0x8e, 0xe9, 0x2d, 0x08, 0x65, 0x14, 0xaa, 0x0c, 0xb5, 0x08, 0x80, 0xf6, 0x01, 0xe2, 0xab, 0xf2, 0x7d, 0x0f, 0x6f, 0x19, 0xf9, 0x24, 0x62, 0xf9, 0xc4, 0xbd, 0x92, 0xd9, 0xbf, 0x19, 0x7d, 0x2e, 0xc9, 0x1d, 0x80, 0xf7, 0xc0, 0xd8, 0x9b, 0xeb, 0x6f, 0x0a, 0x4d, 0x13, 0x41, 0x09, 0x6c, 0xfb, 0xeb, 0xf6, 0x99, 0xfd, 0xdd, 0xff, 0xc1, 0xfa, 0xae, 0x01, 0xf3, 0x06, 0xaf, 0x15, 0xbf, 0x14, 0xa5, 0xe0, 0xbb, 0xcd, 0x99, 0xff, 0xc1, 0x22, 0xfc, 0x2c, 0x61, 0x0f, 0x03, 0xca, 0xaf, 0xcc, 0x9a, 0x0a, 0x89, 0x2a, 0xe6, 0x11, 0x26, 0x00, 0xde, 0x01, 0xc2, 0xea, 0x9a, 0xe5, 0x76, 0x05, 0x16, 0x16, 0x3c, 0x11, 0xaf, 0x0a, 0x0b, 0xf5, 0xde, 0xdd, 0x02, 0xf0, 0x0f, 0x11, 0x92, 0x1e, 0x3e, 0x0c, 0x4e, 0xe4, 0x8b, 0xe3, 0x91, 0x0a, 0x4d, 0x15, 0x0a, 0x1c, 0x48, 0x0a, 0x6b, 0xd5, 0xca, 0xd3, 0xec, 0xff, 0x9c, 0x23, 0x1b, 0x18, 0xe2, 0xfe, 0xda, 0x15, 0x22, 0x01, 0x00, 0xc5, 0x13, 0xdf, 0xae, 0x1b, 0x4d, 0x27, 0xb4, 0x10, 0x29, 0x09, 0xe8, 0xeb, 0x3a, 0xd3, 0x61, 0xee, 0xf3, 0x1a, 0x82, 0x1b, 0x0d, 0x1d, 0x47, 0x07, 0xb5, 0xd0, 0xfa, 0xd3, 0xff, 0x02, 0x09, 0x22, 0x0d, 0x1f, 0x14, 0x18, 0x7d, 0xe8, 0xd7, 0xcc, 0x4c, 0xee, 0xd4, 0x18, 0xb8, 0x25, 0x58, 0x20, 0xb1, 0xea, 0xc6, 0xc8, 0x90, 0xea, 0xbd, 0x1b, 0x51, 0x20, 0x0f, 0x08, 0xf8, 0x05, 0xce, 0xf9, 0x27, 0xdf, 0xae, 0xec, 0x4e, 0x11, 0x09, 0x1b, 0x0d, 0x16, 0xfa, 0x05, 0x86, 0xdd, 0xbb, 0xd1, 0xd1, 0xfa, 0x60, 0x1f, 0xd0, 0x29, 0xfe, 0x16, 0x19, 0xdf, 0x9d, 0xce, 0x32, 0xf3, 0x20, 0x1e, 0x98, 0x1b, 0xd2, 0x01, 0x99, 0xff, 0x31, 0x00, 0x51, 0xec, 0x11, 0xf2, 0x17, 0x09, 0x80, 0x0e, 0x2b, 0x04, 0x6a, 0x04, 0x53, 0x12, 0x71, 0xf8, 0xe7, 0xd3, 0x6c, 0xea, 0x16, 0x18, 0x52, 0x25, 0x92, 0x18, 0xbb, 0xec, 0x06, 0xd3, 0xc2, 0xf0, 0xe8, 0x0f, 0xc4, 0x10, 0xaf, 0x03, 0xa3, 0x04, 0xd6, 0x12, 0x8c, 0xff, 0x6f, 0xd6, 0x21, 0xf5, 0x57, 0x26, 0xac, 0x0d, 0x4f, 0xeb, 0x43, 0xe4, 0xb5, 0xfe, 0x6f, 0x16, 0xb0, 0x0f, 0x61, 0xfe, 0x40, 0xf8, 0xc8, 0xff, 0x1f, 0x09, 0x26, 0x07, 0x2d, 0xf9, 0x63, 0xef, 0x31, 0xf8, 0xd9, 0xfd, 0x48, 0x08, 0x2c, 0x20, 0x21, 0xfe, 0xda, 0xde, 0xe1, 0xe9, 0x80, 0x09, 0x11, 0x21, 0x2b, 0x10, 0xa3, 0xed, 0x22, 0xe5, 0x40, 0xfe, 0x7f, 0x13, 0x0f, 0x16, 0x7f, 0x01, 0xee, 0xe8, 0x96, 0xee, 0x75, 0x02, 0xaf, 0x0d, 0x92, 0x09, 0xd2, 0xfe, 0x0e, 0xf9, 0x75, 0xfb, 0x68, 0x00, 0xc1, 0x03, 0xad, 0x03, 0x3c, 0xff, 0x8f, 0xfc, 0x2d, 0xfe, 0xba, 0xfb, 0xc2, 0xf8, 0xa9, 0x02, 0x8d, 0x0b, 0xdb, 0x06, 0xa8, 0x01, 0xf3, 0x02, 0x57, 0x02, 0xda, 0xf5, 0x08, 0xf4, 0x58, 0xfe, 0x69, 0x14, 0x08, 0x19, 0x3f, 0xe6, 0xe7, 0xd6, 0xd6, 0xf2, 0xdf, 0x19, 0x1f, 0x1a, 0xb8, 0x0f, 0xb5, 0x16, 0xbd, 0xe4, 0x18, 0xc8, 0xc1, 0xf4, 0xc9, 0x22, 0x20, 0x1d, 0x85, 0x01, 0x39, 0x12, 0xa9, 0x00, 0x23, 0xc9, 0x41, 0xde, 0xa0, 0x16, 0x1c, 0x38, 0x45, 0x16, 0xff, 0xce, 0x5f, 0xd5, 0xcf, 0x0f, 0xf0, 0x27, 0x7f, 0x23, 0x09, 0xf5, 0x9f, 0xcb, 0x65, 0xe3, 0x96, 0x0e, 0x1c, 0x2c, 0xa8, 0x14, 0x84, 0xe9, 0x50, 0xdd, 0xb0, 0xf4, 0x80, 0x14, 0x99, 0x15, 0x1d, 0x09, 0x8b, 0x10, 0x85, 0xfd, 0xc7, 0xd2, 0x68, 0xde, 0xe1, 0x0b, 0x68, 0x24, 0x0d, 0x0d, 0x8b, 0x05, 0x3b, 0x19, 0x46, 0xe4, 0xd7, 0xc4, 0x03, 0xf7, 0x1f, 0x27, 0x2c, 0x1e, 0xfe, 0x0a, 0x90, 0x04, 0x34, 0xe4, 0x8b, 0xd6, 0x69, 0xfe, 0x44, 0x20, 0xf0, 0x21, 0x4f, 0x0b, 0xa5, 0xdf, 0x52, 0xdc, 0xa1, 0xf7, 0xc6, 0x10, 0x29, 0x16, 0x1e, 0x21, 0x68, 0x00, 0x48, 0xd6, 0x6c, 0xdd, 0x2c, 0x06, 0x94, 0x1c, 0xfa, 0x1f, 0xde, 0x15, 0xff, 0xdb, 0x18, 0xcc, 0xac, 0xf8, 0xec, 0x23, 0xdd, 0x19, 0x4f, 0xfd, 0x15, 0xfb, 0x4e, 0xfe, 0x2b, 0xf3, 0x5a, 0xfb, 0xf7, 0x07, 0x62, 0x08, 0xbd, 0x03, 0xa5, 0x03, 0xcc, 0xf5, 0x4f, 0xf2, 0xe8, 0xfe, 0x2a, 0x14, 0x5f, 0x39, 0x8e, 0xe8, 0x43, 0xa2, 0xcd, 0xe5, 0xcd, 0x34, 0x3e, 0x2e, 0x41, 0xff, 0x80, 0xed, 0x05, 0xf9, 0x22, 0x04, 0x78, 0x04, 0x71, 0x03, 0x39, 0x01, 0x40, 0xfa, 0x60, 0xf8, 0xad, 0xff, 0x83, 0x06, 0xdf, 0x07, 0x1b, 0x05, 0x2d, 0xfb, 0xde, 0xf3, 0xa9, 0xf8, 0x7f, 0x06, 0xef, 0x07, 0x24, 0xf7, 0x38, 0xf7, 0x7b, 0x11, 0xc1, 0x24, 0x29, 0xf1, 0x90, 0xd0, 0xf1, 0xec, 0x4c, 0x10, 0x29, 0x1b, 0xee, 0x13, 0x61, 0x01, 0x23, 0xe9, 0x3a, 0xee, 0x65, 0xfa, 0xea, 0x06, 0x9a, 0x0d, 0xcc, 0x07, 0x9c, 0xfe, 0xa3, 0xfc, 0x3f, 0xff, 0x40, 0x0c, 0x22, 0x25, 0xe4, 0xf2, 0xa8, 0xb7, 0xd8, 0xe3, 0x51, 0x24, 0x7c, 0x32, 0xa9, 0x1a, 0x6b, 0xe4, 0x5e, 0xd1, 0x33, 0xec, 0xbd, 0x14, 0x3f, 0x1e, 0xe7, 0x06, 0x05, 0xf9, 0xee, 0xfa, 0xa1, 0xfc, 0x4e, 0xff, 0xf9, 0x02, 0x37, 0x02, 0x8b, 0x05, 0x6f, 0x05, 0x73, 0xf3, 0xc4, 0xf0, 0xfd, 0x02, 0x67, 0x0b, 0x77, 0x0a, 0xa7, 0x07, 0xed, 0xf8, 0x1a, 0xea, 0xbb, 0xf6, 0x8c, 0x09, 0x07, 0x0b, 0x7d, 0x03, 0x20, 0x0c, 0xa7, 0x23, 0xbf, 0xe8, 0x72, 0xbc, 0xbe, 0xe6, 0x33, 0x1f, 0x3e, 0x2a, 0x56, 0x09, 0xb1, 0x02, 0x9c, 0xf7, 0x78, 0xe6, 0xe2, 0xf7, 0x0d, 0x24, 0xcc, 0x18, 0x77, 0xdc, 0x69, 0xd4, 0x5b, 0xfe, 0x74, 0x21, 0xcf, 0x16, 0x07, 0x09, 0x57, 0x04, 0x71, 0xea, 0xe7, 0xdc, 0xb9, 0xfb, 0xc4, 0x1b, 0x32, 0x27, 0x3d, 0xfc, 0x99, 0xd7, 0x43, 0xe2, 0x06, 0x08, 0x6e, 0x1e, 0xcf, 0x1c, 0xd2, 0x0b, 0x9f, 0xd8, 0xe0, 0xd2, 0x5f, 0x0d, 0x62, 0x20, 0x30, 0x1f, 0x8c, 0x16, 0x0f, 0xd4, 0xac, 0xc4, 0x25, 0xfd, 0xcc, 0x29, 0xd1, 0x1a, 0x64, 0x04, 0x32, 0x06, 0x1d, 0xee, 0xa2, 0xd9, 0xfd, 0xfa, 0x69, 0x18, 0x35, 0x14, 0x49, 0x00, 0x61, 0x18, 0x73, 0x05, 0x80, 0xc1, 0x5b, 0xd6, 0x30, 0x1c, 0xb9, 0x2b, 0xdf, 0x15, 0x7d, 0x0f, 0xb9, 0xdf, 0xb9, 0xc7, 0x50, 0xfa, 0x98, 0x24, 0x17, 0x31, 0x0f, 0x0a, 0x4b, 0xce, 0xfa, 0xd3, 0xd3, 0x06, 0x58, 0x26, 0x1e, 0x11, 0xaf, 0x14, 0x27, 0x02, 0x10, 0xcc, 0xba, 0xd7, 0xe0, 0x11, 0x6b, 0x26, 0x0a, 0x16, 0x8e, 0x17, 0xe8, 0xe1, 0xaa, 0xc2, 0x72, 0xf8, 0xf6, 0x26, 0x04, 0x1c, 0x35, 0x02, 0xc7, 0x02, 0x41, 0xf0, 0x0c, 0xe3, 0xcd, 0xfd, 0xdc, 0x13, 0xa4, 0x0d, 0xf1, 0x01, 0x35, 0x28, 0xf1, 0xf6, 0x51, 0xaf, 0x57, 0xe0, 0x94, 0x29, 0xb1, 0x2d, 0x7f, 0x06, 0x7b, 0x02, 0xfb, 0xf5, 0x69, 0xda, 0x08, 0xf3, 0x71, 0x18, 0x5f, 0x18, 0xfc, 0x1d, 0x6a, 0x00, 0xcc, 0xc1, 0xb9, 0xd5, 0xb5, 0x18, 0xff, 0x2c, 0xd8, 0x1d, 0x7b, 0xff, 0x19, 0xd7, 0xb3, 0xde, 0x25, 0x03, 0x45, 0x1d, 0x69, 0x1e, 0x94, 0xfb, 0xde, 0xe3, 0xb0, 0xe8, 0xab, 0x02, 0xf2, 0x15, 0x76, 0x0e, 0xf8, 0x06, 0x18, 0x08, 0x00, 0xef, 0x17, 0xe1, 0x71, 0xf9, 0x5f, 0x26, 0x3a, 0x22, 0xfd, 0xe3, 0xcf, 0xd7, 0x97, 0xf1, 0x19, 0x10, 0xd1, 0x17, 0x02, 0x09, 0x84, 0x01, 0x2f, 0x06, 0x0d, 0xf8, 0x27, 0xe8, 0xac, 0xfa, 0x94, 0x10, 0x74, 0x0d, 0x24, 0xfe, 0x69, 0xf0, 0xd6, 0xf9, 0xbf, 0x0d, 0x7f, 0x25, 0x25, 0x03, 0xc1, 0xca, 0x30, 0xdd, 0xb4, 0x09, 0xfc, 0x1d, 0xcd, 0x0d, 0xba, 0x08, 0x89, 0x12, 0x1f, 0xee, 0xd2, 0xdd, 0x3f, 0xf2, 0x78, 0x07, 0x83, 0x12, 0x20, 0x0c, 0x99, 0x02, 0xa8, 0x08, 0x41, 0x00, 0x11, 0xe8, 0x01, 0xeb, 0x72, 0x0a, 0x0d, 0x11, 0x32, 0x1e, 0xf6, 0x1a, 0x83, 0xce, 0xfb, 0xc0, 0x2e, 0xfe, 0x22, 0x30, 0xff, 0x1a, 0x17, 0x07, 0x39, 0x11, 0x0d, 0xdb, 0xc4, 0xc9, 0xf4, 0x06, 0x3f, 0x29, 0x4a, 0x19, 0x1d, 0xfb, 0xc3, 0xe9, 0x52, 0xf1, 0x3f, 0x06, 0x4d, 0x0d, 0xe8, 0x0a, 0x03, 0x05, 0x81, 0xf8, 0x7f, 0xec, 0x3a, 0xfa, 0xb6, 0x1a, 0x99, 0x01, 0x5f, 0xdb, 0x71, 0xf1, 0x92, 0x15, 0x13, 0x25, 0xc2, 0x17, 0x14, 0xe4, 0x84, 0xd3, 0xbc, 0xf3, 0x9d, 0x14, 0x06, 0x17, 0xf3, 0x03, 0x7c, 0x07, 0xa9, 0x13, 0xde, 0xea, 0x67, 0xdb, 0xf7, 0xf7, 0x90, 0x11, 0x68, 0x0e, 0x32, 0xf9, 0x81, 0xfa, 0x9b, 0x06, 0x3c, 0x08, 0x24, 0x01, 0x34, 0xfe, 0xb9, 0x02, 0x13, 0x03, 0x3c, 0xf9, 0x13, 0xf6, 0x14, 0x06, 0xe5, 0x24, 0x7d, 0xfc, 0xf2, 0xc6, 0xf8, 0xe0, 0xc4, 0x18, 0x5a, 0x27, 0x50, 0x18, 0xf1, 0x02, 0x9b, 0xdf, 0xfc, 0xe0, 0xca, 0xf9, 0xbf, 0x0f, 0xbf, 0x15, 0xb7, 0x05, 0x3f, 0x15, 0x28, 0x09, 0x29, 0xce, 0xdf, 0xd7, 0xe8, 0x10, 0x29, 0x26, 0xb9, 0x0c, 0xe1, 0xfb, 0x7a, 0xfb, 0xdc, 0xf6, 0xd4, 0xf2, 0xb2, 0x01, 0xca, 0x0c, 0x3b, 0x25, 0x66, 0x0e, 0xb7, 0xc5, 0x08, 0xce, 0xbf, 0x06, 0xd8, 0x29, 0x25, 0x15, 0xef, 0x0b, 0x14, 0x0c, 0xff, 0xe0, 0x77, 0xd8, 0x75, 0xf8, 0x53, 0x1a, 0x9f, 0x19, 0xc0, 0x10, 0x77, 0x03, 0xda, 0xe1, 0x81, 0xe0, 0xf8, 0xff, 0x59, 0x19, 0xcb, 0x19, 0x62, 0xff, 0x7c, 0xe9, 0x79, 0xf1, 0xbd, 0x01, 0x7f, 0x0d, 0x38, 0x0b, 0x45, 0xfc, 0x7a, 0xf5, 0x9e, 0xf7, 0x95, 0x03, 0x7b, 0x04, 0x5e, 0x11, 0x6d, 0x0b, 0x85, 0xea, 0x36, 0xe2, 0xf1, 0xfa, 0x82, 0x18, 0x51, 0x11, 0xec, 0x00, 0x45, 0xfd, 0xc1, 0xf6, 0x15, 0xf8, 0xb9, 0x03, 0xc8, 0x06, 0x6f, 0x02, 0x75, 0x01, 0x2d, 0xff, 0x55, 0xf8, 0x31, 0xfc, 0x2f, 0x03, 0x3a, 0x04, 0x66, 0x01, 0xa5, 0x02, 0xce, 0x0a, 0xad, 0xfb, 0xe6, 0xe6, 0x11, 0xf6, 0x05, 0x0f, 0x75, 0x11, 0xde, 0x21, 0x97, 0xfd, 0x2d, 0xb7, 0x47, 0xe3, 0x55, 0x26, 0x04, 0x3f, 0x71, 0x11, 0x41, 0xc9, 0x33, 0xcf, 0xcb, 0x00, 0x64, 0x24, 0x64, 0x1b, 0xbd, 0x0f, 0x4b, 0xef, 0x9a, 0xd1, 0x43, 0xf7, 0x64, 0x1f, 0xc0, 0x32, 0x90, 0xff, 0x3e, 0xcd, 0x84, 0xe0, 0x87, 0x02, 0xd3, 0x19, 0x8c, 0x10, 0xe8, 0x09, 0xa2, 0x17, 0xd1, 0xea, 0xef, 0xc9, 0xe6, 0xf4, 0x92, 0x22, 0xbb, 0x1a, 0x92, 0x06, 0x73, 0xfd, 0xbe, 0xe5, 0x73, 0xee, 0xdd, 0x0c, 0x44, 0x15, 0x10, 0x22, 0xd8, 0x01, 0x02, 0xc9, 0x76, 0xd9, 0x3c, 0x07, 0x9f, 0x1d, 0x8b, 0x13, 0x4b, 0xff, 0x65, 0xf9, 0x0f, 0x02, 0x71, 0x11, 0xdd, 0xfc, 0x77, 0xde, 0x33, 0xf4, 0x6b, 0x1c, 0x5b, 0x2c, 0xd3, 0xf1, 0xd4, 0xcd, 0x96, 0xe8, 0x0c, 0x15, 0x9a, 0x23, 0x53, 0x06, 0x72, 0xee, 0x31, 0xe8, 0x7c, 0x00, 0x53, 0x11, 0x04, 0x22, 0x3a, 0x0a, 0x9b, 0xd5, 0x6b, 0xd8, 0xd8, 0x04, 0x88, 0x22, 0x4f, 0x11, 0x64, 0x04, 0x12, 0xf5, 0x12, 0xeb, 0x4f, 0xfd, 0xa4, 0x21, 0x40, 0x1e, 0x05, 0xdd, 0x5d, 0xcf, 0x2a, 0xf4, 0xd9, 0x17, 0x48, 0x1b, 0x38, 0x08, 0xa3, 0x04, 0x03, 0x05, 0xf7, 0xee, 0x98, 0xe3, 0x9f, 0xfd, 0xe2, 0x16, 0x6b, 0x1b, 0x7f, 0x04, 0x46, 0xe2, 0xa1, 0xe7, 0xb1, 0xfc, 0xf7, 0x0c, 0xa3, 0x10, 0x5d, 0x1b, 0xa5, 0x03, 0xe6, 0xda, 0x19, 0xdd, 0x17, 0x08, 0x44, 0x1d, 0x1c, 0x1d, 0x76, 0x15, 0x09, 0xdc, 0xc7, 0xcd, 0xea, 0xf5, 0xdf, 0x23, 0xd8, 0x17, 0x33, 0x13, 0xf1, 0x0d, 0xe4, 0xd3, 0xbe, 0xce, 0x7e, 0x05, 0x24, 0x28, 0xcd, 0x13, 0x75, 0xfa, 0x49, 0xfe, 0x1a, 0xf9, 0x3b, 0xf0, 0x07, 0x00, 0x55, 0x0b, 0x7c, 0x08, 0xfc, 0x04, 0x49, 0x01, 0x37, 0xee, 0xd3, 0xf3, 0x13, 0x04, 0x2b, 0x2a, 0xf3, 0x1f, 0xb9, 0xc4, 0x79, 0xbc, 0xd3, 0x07, 0x82, 0x34, 0x65, 0x1a, 0x42, 0xfb, 0xaf, 0x0d, 0xcf, 0xfc, 0xcf, 0xcb, 0xf3, 0xe5, 0x86, 0x1b, 0x06, 0x22, 0x12, 0x05, 0x19, 0xf4, 0x2e, 0xfa, 0xc0, 0x04, 0x2f, 0x04, 0x8d, 0xfd, 0x96, 0xfa, 0x83, 0xff, 0xb1, 0x03, 0xc0, 0x04, 0x76, 0xf2, 0x50, 0xf3, 0x48, 0x04, 0x22, 0x30, 0xf8, 0x16, 0xfb, 0xc4, 0xba, 0xc8, 0x16, 0x08, 0x13, 0x2f, 0xb5, 0x15, 0x5a, 0xf7, 0x4f, 0xf4, 0xeb, 0x02, 0xf3, 0x02, 0x3a, 0xfa, 0x13, 0xfc, 0x93, 0x03, 0xfe, 0x07, 0x6b, 0x06, 0x61, 0xfd, 0xf7, 0xed, 0xce, 0xf3, 0x41, 0x09, 0x63, 0x17, 0x1c, 0x28, 0x4c, 0xf1, 0xcd, 0xba, 0x82, 0xe2, 0x19, 0x25, 0x2c, 0x29, 0xbd, 0x03, 0x0e, 0xe2, 0x03, 0xec, 0x92, 0x0f, 0xe1, 0x13, 0x53, 0x03, 0x8f, 0xfc, 0x53, 0xfd, 0x28, 0xf8, 0x61, 0xfd, 0x87, 0x04, 0x88, 0x04, 0xe5, 0x01, 0xd3, 0x01, 0x9d, 0xfa, 0x2a, 0xf8, 0x13, 0x01, 0xd7, 0x04, 0xc5, 0x0a, 0xd1, 0x17, 0x21, 0xf3, 0x50, 0xcc, 0x76, 0xf4, 0x43, 0x1c, 0x7d, 0x19, 0x1a, 0xff, 0x92, 0x17, 0x34, 0x12, 0xde, 0xc2, 0x6d, 0xc7, 0x08, 0x10, 0xa3, 0x31, 0x7f, 0x17, 0x5f, 0x15, 0x29, 0xf0, 0x64, 0xca, 0xbf, 0xe5, 0x83, 0x17, 0x2c, 0x23, 0x54, 0x07, 0x96, 0xfb, 0x17, 0x02, 0x4a, 0xf2, 0x66, 0xef, 0x63, 0x04, 0xbf, 0x0e, 0x97, 0x08, 0x76, 0x13, 0xab, 0x12, 0x76, 0xce, 0xab, 0xc8, 0x6f, 0x0a, 0x28, 0x31, 0xa4, 0x23, 0x9e, 0xf0, 0x8a, 0xd6, 0x9d, 0xec, 0x06, 0x13, 0x5f, 0x19, 0xf1, 0x0d, 0x47, 0x07, 0x09, 0xf5, 0x34, 0xdf, 0x78, 0xf5, 0xe9, 0x16, 0x22, 0x0c, 0x9e, 0xf8, 0xdf, 0xee, 0x75, 0x01, 0xd0, 0x10, 0x0a, 0x01, 0x7d, 0xf8, 0x76, 0x01, 0x8b, 0x11, 0xdc, 0x01, 0x46, 0xe5, 0xdb, 0xf2, 0x29, 0x0f, 0xf3, 0x10, 0x4d, 0x12, 0x12, 0x08, 0xad, 0xdb, 0x7b, 0xdd, 0x15, 0x02, 0x30, 0x17, 0xb3, 0x14, 0x17, 0x08, 0x0f, 0xf5, 0xfa, 0xef, 0x42, 0xfb, 0xfa, 0x04, 0x0e, 0x09, 0x2e, 0x07, 0x6f, 0xfd, 0x97, 0xf7, 0xf6, 0xfb, 0xa0, 0x01, 0x6b, 0x04, 0x6b, 0x03, 0xf9, 0xfe, 0x28, 0xf7, 0x99, 0xf7, 0x28, 0x16, 0xe9, 0x0f, 0xc1, 0xef, 0x46, 0xe4, 0xb2, 0xf7, 0x30, 0x14, 0xc0, 0x11, 0x37, 0x05, 0x76, 0x10, 0xe5, 0x01, 0xa4, 0xda, 0x01, 0xe5, 0x6f, 0x05, 0xf1, 0x13, 0x7f, 0x09, 0x9a, 0x00, 0xeb, 0x03, 0x47, 0x08, 0xbe, 0xfa, 0x22, 0xee, 0xb1, 0xf8, 0x70, 0x06, 0x34, 0x0a, 0x3b, 0x02, 0xaf, 0xf5, 0xff, 0xf6, 0x00, 0x0e, 0x7b, 0x1d, 0x26, 0xfb, 0xbf, 0xd8, 0x15, 0xec, 0x3e, 0x12, 0xb0, 0x28, 0x40, 0x12, 0x44, 0xe0, 0x96, 0xde, 0xe5, 0xfe, 0x29, 0x13, 0xe0, 0x0c, 0x2c, 0xfa, 0xd7, 0xf4, 0x99, 0x02, 0x09, 0x0e, 0x00, 0x0e, 0xa2, 0xfe, 0xbd, 0xea, 0xd4, 0xe7, 0x1e, 0xfe, 0xc9, 0x14, 0x1b, 0x23, 0xf3, 0x06, 0x7e, 0xde, 0x34, 0xe7, 0x5b, 0x01, 0xd7, 0x0b, 0x49, 0x03, 0x8e, 0x04, 0xe7, 0x02, 0xe5, 0x12, 0xec, 0x19, 0xe1, 0xd7, 0xca, 0xca, 0x16, 0x08, 0x3b, 0x28, 0xb8, 0x13, 0x1c, 0x06, 0x86, 0xfb, 0x8a, 0xe0, 0x46, 0xe7, 0xa7, 0x0e, 0x89, 0x16, 0x83, 0x1b, 0x4c, 0x16, 0xee, 0xd6, 0xe0, 0xcc, 0x98, 0xf6, 0x1d, 0x1b, 0x25, 0x1e, 0xd1, 0x03, 0x28, 0x0f, 0x40, 0x09, 0x20, 0xd3, 0x6e, 0xd8, 0x89, 0x10, 0x6b, 0x23, 0x92, 0x14, 0x7d, 0x16, 0x8c, 0xe5, 0x9d, 0xc5, 0x1f, 0xf4, 0xb1, 0x24, 0xec, 0x26, 0xf2, 0x07, 0x8b, 0xe3, 0xb9, 0xdc, 0xa7, 0x03, 0x6a, 0x17, 0xeb, 0x1c, 0xda, 0x18, 0x99, 0xdd, 0x46, 0xc7, 0xd1, 0xf6, 0x4b, 0x20, 0x25, 0x2b, 0xad, 0x13, 0x5f, 0xdf, 0x90, 0xd9, 0xa4, 0xf5, 0x25, 0x10, 0x9b, 0x16, 0x57, 0x05, 0xef, 0x0a, 0xb9, 0x15, 0x3b, 0xdf, 0xf6, 0xcc, 0x85, 0x00, 0x56, 0x25, 0x54, 0x16, 0x24, 0x05, 0xb1, 0x01, 0x57, 0xe8, 0x7c, 0xe2, 0x73, 0x03, 0x30, 0x19, 0x0f, 0x17, 0x30, 0xfe, 0x2d, 0xe1, 0x64, 0xf0, 0x3d, 0x0d, 0x5f, 0x18, 0x93, 0x26, 0xa6, 0xf1, 0x01, 0xbf, 0x62, 0xe0, 0x0b, 0x1c, 0xa1, 0x29, 0x8d, 0x0b, 0xee, 0x00, 0xd2, 0xf1, 0xcb, 0xe7, 0xab, 0xfc, 0x35, 0x1e, 0x5b, 0x20, 0x25, 0xe7, 0x01, 0xd6, 0x57, 0xf2, 0x77, 0x0d, 0xbc, 0x15, 0x1d, 0x0a, 0xb8, 0x01, 0xc9, 0x08, 0x4f, 0x00, 0xf7, 0xe4, 0x6a, 0xee, 0x7c, 0x0b, 0x3e, 0x2b, 0x48, 0x0e, 0xbf, 0xd2, 0x87, 0xd6, 0x7e, 0x05, 0x93, 0x23, 0x31, 0x13, 0x80, 0x08, 0xa7, 0x02, 0xd3, 0xeb, 0xe7, 0xe8, 0xb5, 0xf9, 0xaa, 0x08, 0xea, 0x0e, 0xe7, 0x08, 0x82, 0xfa, 0x57, 0xf3, 0xa4, 0xf5, 0x3b, 0x06, 0xc0, 0x0d, 0xe0, 0x14, 0xf7, 0x0c, 0x58, 0xe2, 0x0a, 0xdb, 0x89, 0xf7, 0x9a, 0x1a, 0xbf, 0x15, 0x75, 0x0c, 0x1e, 0x15, 0x32, 0xe1, 0xd6, 0xc8, 0x29, 0x00, 0x6c, 0x26, 0xa1, 0x1a, 0xb7, 0x0f, 0xce, 0xeb, 0xfd, 0xd0, 0x36, 0xfa, 0xf3, 0x1c, 0x11, 0x25, 0xb5, 0x10, 0xa0, 0xda, 0x55, 0xd1, 0xb9, 0xfb, 0xac, 0x1d, 0x85, 0x22, 0xa3, 0x06, 0xb7, 0xe5, 0x62, 0xe6, 0x89, 0xf7, 0xed, 0x12, 0x5e, 0x10, 0x74, 0x17, 0xc2, 0x0f, 0x13, 0xce, 0xed, 0xd4, 0xa5, 0x11, 0xcd, 0x25, 0xcb, 0x10, 0xdf, 0x0c, 0x7a, 0xf3, 0x41, 0xcf, 0x8e, 0xeb, 0x40, 0x1f, 0x8e, 0x34, 0x89, 0x00, 0xe4, 0xce, 0x64, 0xde, 0x45, 0x0f, 0x94, 0x20, 0x67, 0x0f, 0xef, 0x08, 0x41, 0xfc, 0x75, 0xde, 0xa5, 0xe6, 0xcc, 0x09, 0x0a, 0x19, 0x1e, 0x09, 0xf2, 0x11, 0x2c, 0x0a, 0x58, 0xda, 0x05, 0xda, 0x71, 0xfd, 0x38, 0x1e, 0x13, 0x16, 0xa6, 0x01, 0x4b, 0x04, 0xa9, 0xfd, 0xc3, 0xe0, 0x6e, 0xf6, 0x20, 0x0f, 0x22, 0x2d, 0xe2, 0x15, 0xc5, 0xc8, 0x1f, 0xc8, 0x27, 0x05, 0x75, 0x2d, 0x9f, 0x16, 0x8d, 0xf8, 0xf9, 0xf8, 0x0f, 0xff, 0xac, 0xf6, 0x42, 0xfe, 0xa3, 0x05, 0xaf, 0x0b, 0x48, 0x0b, 0xbb, 0xeb, 0x11, 0xea, 0xdf, 0x07, 0x01, 0x10, 0x64, 0x10, 0x67, 0x0e, 0xda, 0xe7, 0xf4, 0xd4, 0xbc, 0xff, 0x3e, 0x1c, 0x4d, 0x1f, 0x18, 0x1d, 0x99, 0xde, 0xf6, 0xc0, 0xb2, 0xf0, 0x3b, 0x24, 0x4c, 0x22, 0xc3, 0x01, 0x5d, 0xf8, 0x7d, 0x0c, 0xd5, 0x01, 0x4c, 0xdb, 0x8e, 0xe9, 0x79, 0x14, 0xff, 0x19, 0x60, 0x26, 0xcd, 0xfc, 0x04, 0xc1, 0x80, 0xd9, 0x4f, 0x15, 0x17, 0x2a, 0x74, 0x0d, 0xce, 0x04, 0x49, 0x01, 0x03, 0xe2, 0x23, 0xe0, 0xbc, 0x09, 0xe8, 0x1a, 0x6e, 0x16, 0xa6, 0x19, 0x7d, 0xe5, 0x85, 0xc7, 0xbe, 0xef, 0x96, 0x1f, 0xab, 0x20, 0xae, 0x0f, 0x0b, 0x05, 0x54, 0xe3, 0x1f, 0xdd, 0xcc, 0x05, 0xdd, 0x18, 0xf7, 0x09, 0xce, 0xf4, 0x09, 0xf0, 0xf7, 0x02, 0x72, 0x20, 0x22, 0x0d, 0xa8, 0xe0, 0x0a, 0xdf, 0x39, 0x01, 0x02, 0x1b, 0xcc, 0x11, 0xd6, 0x0a, 0x7a, 0x07, 0x3f, 0xe7, 0x9a, 0xdf, 0x39, 0xfb, 0x5a, 0x0b, 0xef, 0x0c, 0x4a, 0x07, 0x10, 0x01, 0x9f, 0xfe, 0x93, 0xff, 0x93, 0xff, 0x2c, 0xff, 0x40, 0x00, 0x1f, 0x01, 0xf4, 0x06, 0xab, 0x06, 0x99, 0xf2, 0xfc, 0xed, 0x88, 0x01, 0x27, 0x0e, 0xc6, 0x0e, 0x24, 0x08, 0x1a, 0xf6, 0xe6, 0xe4, 0x50, 0xf0, 0x1d, 0x0c, 0x94, 0x15, 0xd2, 0x0a, 0x7f, 0x18, 0x90, 0xfe, 0xa1, 0xcb, 0x04, 0xdf, 0xc1, 0x0c, 0x27, 0x22, 0x58, 0x19, 0xae, 0xfe, 0x4a, 0xe8, 0x01, 0xf1, 0x23, 0x02, 0x4f, 0x07, 0x77, 0x03, 0x83, 0x06, 0xa3, 0x01, 0xe6, 0xf7, 0x35, 0xff, 0xcd, 0x16, 0x08, 0x05, 0xf2, 0xe3, 0x27, 0xec, 0x21, 0x02, 0x31, 0x0f, 0xc5, 0x0f, 0xe0, 0x09, 0x5c, 0xf5, 0x3a, 0xef, 0x5a, 0xfb, 0x8f, 0x06, 0x5f, 0x05, 0x92, 0xf9, 0x31, 0xfc, 0x1c, 0x07, 0xaf, 0x10, 0x62, 0x11, 0xec, 0xf2, 0x36, 0xd5, 0xe9, 0xf4, 0x4f, 0x19, 0x60, 0x2b, 0x3f, 0x10, 0xd3, 0xd4, 0xfa, 0xd4, 0xf3, 0xfc, 0xaf, 0x1e, 0x0c, 0x18, 0x54, 0x0e, 0xf5, 0x02, 0xc4, 0xe1, 0x85, 0xe1, 0x62, 0x00, 0xe0, 0x17, 0xad, 0x0a, 0x6d, 0x0b, 0x8d, 0x0e, 0xef, 0xe8, 0x4b, 0xdf, 0xbe, 0xf5, 0x36, 0x13, 0x9b, 0x16, 0x9b, 0x06, 0xed, 0x12, 0xd3, 0xfd, 0x68, 0xd8, 0x10, 0xe5, 0xb7, 0x03, 0xd9, 0x17, 0x0f, 0x11, 0xfc, 0xfe, 0xfe, 0x0a, 0xba, 0x15, 0x4a, 0xda, 0xad, 0xcf, 0x38, 0x09, 0xf8, 0x25, 0x23, 0x17, 0x4a, 0x0c, 0xc9, 0xf2, 0xe1, 0xd4, 0x46, 0xe8, 0xb1, 0x1a, 0x06, 0x2c, 0x38, 0x00, 0x88, 0xde, 0x06, 0xe5, 0xda, 0x07, 0x7d, 0x19, 0x52, 0x0a, 0x5b, 0x03, 0x7f, 0x08, 0x21, 0xec, 0x53, 0xe4, 0x1b, 0x05, 0x62, 0x1b, 0xa5, 0x22, 0x12, 0xf8, 0x30, 0xcd, 0x61, 0xe4, 0xcf, 0x0f, 0x76, 0x22, 0xa2, 0x13, 0xfc, 0xf4, 0x07, 0xea, 0x39, 0xf8, 0x24, 0x07, 0x2c, 0x05, 0x56, 0xf8, 0x8b, 0x00, 0x7f, 0x08, 0xba, 0x11, 0x1f, 0x1b, 0x3a, 0xe6, 0xce, 0xc9, 0xc4, 0xf7, 0xc2, 0x29, 0x12, 0x29, 0xa1, 0xf4, 0xe1, 0xd4, 0xba, 0xec, 0xb1, 0x13, 0x4a, 0x1c, 0x83, 0x12, 0x31, 0xf7, 0xc0, 0xe0, 0xee, 0xef, 0xcd, 0x08, 0xb5, 0x13, 0x36, 0x09, 0xc2, 0xf9, 0xe1, 0xf5, 0x01, 0xfc, 0xb5, 0x02, 0xbb, 0x07, 0xd9, 0x01, 0x0f, 0xfd, 0x10, 0xf8, 0xb1, 0xf5, 0x25, 0x02, 0xc4, 0x0e, 0x5b, 0x05, 0xde, 0x12, 0x1d, 0x15, 0x4a, 0xd1, 0x1b, 0xce, 0x95, 0x0c, 0xea, 0x28, 0x20, 0x12, 0x0a, 0x07, 0xcd, 0xfb, 0x55, 0xdd, 0xa8, 0xe6, 0xf6, 0x0f, 0x04, 0x1b, 0xdc, 0x1a, 0xd6, 0x07, 0x29, 0xd7, 0x83, 0xd7, 0xb8, 0xfe, 0x2f, 0x1f, 0xcf, 0x15, 0xe2, 0xfe, 0xa7, 0xfc, 0x4e, 0x15, 0xe6, 0xfb, 0xac, 0xcd, 0x3b, 0xed, 0x34, 0x28, 0xe1, 0x31, 0xb6, 0xec, 0xc9, 0xc5, 0xbb, 0xf6, 0xb8, 0x20, 0x61, 0x2a, 0x06, 0x0e, 0xc5, 0xd7, 0x7c, 0xd6, 0x2d, 0xf9, 0xc0, 0x19, 0xbe, 0x17, 0x8f, 0x03, 0xa3, 0x02, 0x2f, 0x04, 0x91, 0xeb, 0xd4, 0xe9, 0x6a, 0x05, 0xa3, 0x15, 0xf6, 0x11, 0x41, 0x0f, 0xa3, 0xf1, 0xe3, 0xce, 0x0b, 0xe8, 0x32, 0x1b, 0x1b, 0x21, 0x3d, 0x19, 0x0c, 0x05, 0x2c, 0xd4, 0x22, 0xd6, 0xed, 0x0c, 0x34, 0x22, 0x06, 0x20, 0xbc, 0x0c, 0xb5, 0xd6, 0x24, 0xd3, 0x38, 0x00, 0x9b, 0x21, 0xb3, 0x15, 0x0d, 0xfd, 0xe2, 0xf4, 0xdb, 0xff, 0x6d, 0x0a, 0x24, 0x08, 0xdb, 0xff, 0x8b, 0xe8, 0x01, 0xe2, 0xa6, 0x01, 0xe0, 0x18, 0xb0, 0x22, 0x05, 0x09, 0x88, 0xdf, 0x8e, 0xde, 0x5d, 0xfb, 0x59, 0x18, 0x63, 0x13, 0x3d, 0x03, 0xee, 0x05, 0xdd, 0xfd, 0xc4, 0xe4, 0xf4, 0xf0, 0x2e, 0x0d, 0xc8, 0x15, 0xb7, 0x0f, 0xc2, 0x07, 0x20, 0xee, 0x10, 0xdb, 0xf0, 0xf0, 0x5f, 0x0c, 0x19, 0x16, 0xa7, 0x0c, 0x8e, 0x07, 0x32, 0x08, 0x0e, 0xf0, 0x7b, 0xdd, 0x13, 0xfd, 0x35, 0x24, 0xd0, 0x0f, 0x5a, 0xef, 0xf7, 0xe7, 0x8a, 0xf4, 0x46, 0x0d, 0x40, 0x13, 0xff, 0x03, 0x6d, 0x0a, 0xd6, 0x12, 0xc1, 0xd8, 0x78, 0xd4, 0x89, 0x0e, 0xe4, 0x22, 0xd5, 0x10, 0x8a, 0x08, 0xca, 0xf1, 0xd6, 0xd9, 0xbb, 0xf4, 0x1c, 0x17, 0x6f, 0x18, 0x3f, 0x11, 0x35, 0xfb, 0x26, 0xd5, 0x7f, 0xe6, 0x0b, 0x1b, 0x92, 0x37, 0x2d, 0xff, 0x54, 0xcb, 0x18, 0xdd, 0x3d, 0x11, 0x65, 0x23, 0xd2, 0x0a, 0x71, 0xf7, 0x8a, 0xf7, 0x44, 0x00, 0x61, 0x03, 0x05, 0x02, 0x5a, 0x01, 0xec, 0xff, 0x34, 0xfe, 0x01, 0xfc, 0x02, 0x00, 0x71, 0xfc, 0x1a, 0xf9, 0x0e, 0x00, 0xff, 0x17, 0x59, 0x21, 0x53, 0xe4, 0xb4, 0xc3, 0xbc, 0xf3, 0x80, 0x24, 0x56, 0x27, 0x86, 0x1b, 0xab, 0xe3, 0x26, 0xc8, 0x26, 0xf4, 0x5d, 0x21, 0x5d, 0x1b, 0x2d, 0xff, 0x9a, 0xfe, 0xd5, 0xfb, 0x08, 0xed, 0x66, 0xfa, 0xd6, 0x0b, 0x0f, 0x0b, 0xeb, 0x05, 0xad, 0x03, 0xf6, 0xf0, 0xf4, 0xed, 0x65, 0x02, 0x4f, 0x1f, 0x2c, 0x23, 0xee, 0xdc, 0xc9, 0xbf, 0x59, 0xf9, 0x6e, 0x2a, 0x12, 0x1d, 0x68, 0x15, 0x1c, 0xfa, 0x0c, 0xd3, 0xa3, 0xe1, 0x11, 0x0b, 0xdd, 0x1e, 0xac, 0x0d, 0xba, 0xfb, 0xe7, 0x0c, 0x91, 0x0d, 0xb3, 0xdb, 0xad, 0xd7, 0x70, 0x06, 0xea, 0x22, 0xeb, 0x22, 0xa7, 0xfc, 0x9a, 0xda, 0x04, 0xe4, 0x1b, 0x03, 0xfe, 0x19, 0x65, 0x0f, 0xb7, 0x03, 0xc3, 0x06, 0x17, 0xf3, 0x5f, 0xdf, 0x61, 0x01, 0xe3, 0x11, 0xb2, 0x25, 0x78, 0x17, 0x77, 0xca, 0x61, 0xc6, 0xcb, 0x06, 0xca, 0x2d, 0xb6, 0x15, 0xe8, 0xf8, 0xb3, 0xfc, 0xa1, 0xfa, 0xe7, 0xf0, 0xb7, 0xff, 0x9e, 0x0a, 0xed, 0x11, 0x4d, 0x0a, 0xa1, 0xe4, 0x81, 0xe3, 0xf6, 0x08, 0xd8, 0x15, 0x45, 0x0e, 0xb8, 0x07, 0x7b, 0x02, 0xf1, 0xf3, 0x3e, 0xdb, 0xe4, 0xef, 0xd2, 0x10, 0x5a, 0x14, 0xc7, 0x07, 0x73, 0x07, 0x86, 0x00, 0x06, 0xeb, 0xde, 0xf2, 0x79, 0x14, 0x9f, 0x1e, 0xab, 0xf2, 0x3a, 0xe0, 0x24, 0xf5, 0xd8, 0x0a, 0x9c, 0x09, 0x1a, 0x00, 0x88, 0x01, 0x2e, 0x07, 0x96, 0x0c, 0xef, 0x03, 0x0e, 0xee, 0xec, 0xea, 0x20, 0x00, 0x28, 0x14, 0xe5, 0x08, 0xb7, 0xf0, 0x93, 0xf7, 0xa8, 0x17, 0x30, 0x0d, 0xeb, 0xe9, 0x5d, 0xec, 0x71, 0xff, 0xc4, 0x08, 0xa2, 0x01, 0xcf, 0x02, 0x6e, 0x04, 0x02, 0x0c, 0x7d, 0x1c, 0xdc, 0xef, 0xca, 0xca, 0x4d, 0xee, 0xbe, 0x1c, 0x7c, 0x20, 0xa4, 0x0a, 0x0c, 0xef, 0x31, 0xe9, 0x4d, 0x02, 0xe7, 0x0e, 0x07, 0x06, 0xce, 0xff, 0x04, 0x10, 0x7e, 0xfe, 0xa6, 0xdc, 0x47, 0xec, 0xa5, 0x08, 0xf2, 0x0e, 0x96, 0x06, 0xb7, 0x02, 0x67, 0x04, 0xc1, 0x0d, 0x37, 0x04, 0x4d, 0xe7, 0x51, 0xe7, 0x62, 0x06, 0x13, 0x19, 0x60, 0x17, 0xa9, 0xfc, 0x0c, 0xe0, 0x48, 0xec, 0x88, 0x07, 0x5b, 0x13, 0x70, 0x0a, 0x45, 0xfc, 0x09, 0xf7, 0x48, 0xfb, 0x39, 0x01, 0x21, 0x02, 0x48, 0x07, 0xfb, 0x03, 0x65, 0xf9, 0x3c, 0xf9, 0xc0, 0xff, 0x6c, 0x04, 0x7b, 0x02, 0xb1, 0xff, 0x31, 0xf9, 0xf8, 0xf6, 0x61, 0x03, 0x87, 0x0b, 0xba, 0x08, 0xce, 0x07, 0xaa, 0xff, 0x70, 0xec, 0xb3, 0xef, 0x7e, 0x05, 0xfb, 0x12, 0x20, 0x05, 0x64, 0xf4, 0xc9, 0xfa, 0x09, 0x15, 0x3a, 0x17, 0x71, 0xe4, 0xfc, 0xd7, 0xc4, 0xfb, 0xb6, 0x18, 0xbd, 0x14, 0xae, 0xff, 0x37, 0xee, 0xf4, 0xf1, 0x4e, 0x09, 0x9f, 0x0e, 0x44, 0x11, 0xbe, 0x11, 0x7e, 0xdb, 0x32, 0xd5, 0xaf, 0x0a, 0xe0, 0x38, 0x32, 0x17, 0xa1, 0xd2, 0xcd, 0xd0, 0x3b, 0x03, 0x03, 0x25, 0xe3, 0x11, 0xee, 0x00, 0xd0, 0x04, 0xf9, 0xf0, 0x40, 0xe3, 0x4a, 0xff, 0xf8, 0x13, 0xb8, 0x0c, 0xcb, 0x00, 0x07, 0x0d, 0xb8, 0x0c, 0xa9, 0xdf, 0x58, 0xd4, 0x59, 0x00, 0x5a, 0x29, 0xc9, 0x1e, 0x30, 0xf2, 0xe6, 0xe0, 0xe1, 0xed, 0x2f, 0x0a, 0xea, 0x15, 0x58, 0x09, 0x2d, 0x09, 0xbc, 0x10, 0xd0, 0xe6, 0x24, 0xd3, 0x9f, 0xf6, 0xda, 0x1e, 0x58, 0x17, 0xa9, 0x11, 0xec, 0x0a, 0x56, 0xd8, 0x96, 0xd5, 0xc3, 0x03, 0x0e, 0x2a, 0x6d, 0x28, 0x8c, 0xed, 0x66, 0xca, 0xae, 0xf3, 0xdb, 0x1d, 0x9c, 0x17, 0x55, 0xfe, 0xc5, 0xfc, 0xae, 0x0b, 0xa1, 0xf6, 0xae, 0xe1, 0x56, 0xf9, 0x5f, 0x14, 0x45, 0x17, 0x32, 0x0f, 0xc0, 0xf6, 0xe0, 0xde, 0xa1, 0xe7, 0xf3, 0x05, 0x8f, 0x14, 0xe4, 0x19, 0xb5, 0x12, 0x37, 0xe8, 0x26, 0xd7, 0xec, 0xf5, 0xa5, 0x19, 0x7f, 0x19, 0x6b, 0x06, 0xb3, 0xff, 0xdc, 0xf8, 0x1c, 0xe6, 0x1c, 0xf0, 0xf0, 0x17, 0x02, 0x26, 0x9c, 0xf7, 0x15, 0xda, 0x27, 0xe9, 0x00, 0x0e, 0x74, 0x1a, 0xad, 0x10, 0xc0, 0x0e, 0x68, 0xef, 0x41, 0xd7, 0x19, 0xf1, 0x2a, 0x15, 0x78, 0x1e, 0x62, 0x11, 0xac, 0xef, 0x1c, 0xe3, 0x31, 0xf6, 0x7c, 0x0d, 0x78, 0x11, 0x07, 0x02, 0xca, 0xf4, 0x9b, 0xf0, 0xef, 0x00, 0xfa, 0x0d, 0x34, 0x0d, 0xf4, 0x01, 0xea, 0xf1, 0xfb, 0xf6, 0xd8, 0x07, 0x92, 0x17, 0xa2, 0x11, 0xc3, 0xe3, 0x78, 0xd7, 0xce, 0xf8, 0x36, 0x11, 0xc9, 0x11, 0x26, 0x07, 0xad, 0x03, 0x1e, 0x0b, 0x6f, 0xff, 0x0e, 0xe8, 0xfa, 0xe8, 0x8f, 0x04, 0xba, 0x11, 0x98, 0x21, 0x9d, 0x0b, 0x7e, 0xda, 0x24, 0xdc, 0x5a, 0xfb, 0x39, 0x1b, 0xa1, 0x14, 0xb1, 0xff, 0x21, 0xfc, 0x7e, 0x15, 0xfb, 0x04, 0x60, 0xcf, 0x9b, 0xdf, 0x90, 0x16, 0x21, 0x22, 0x6d, 0x08, 0x9c, 0xfb, 0x2f, 0xfc, 0xf9, 0xf2, 0xda, 0xf6, 0x76, 0x05, 0x9d, 0x0a, 0x3e, 0x09, 0xc2, 0x1e, 0xae, 0xfb, 0x21, 0xc3, 0xe7, 0xe6, 0xee, 0x19, 0x9f, 0x1c, 0x0f, 0x04, 0x86, 0xf7, 0x48, 0xfe, 0xcf, 0x04, 0x6f, 0xfc, 0xd5, 0xf8, 0x80, 0xf6, 0x2e, 0x01, 0xe4, 0x08, 0xd3, 0x15, 0xe4, 0x17, 0x7d, 0xe7, 0x6e, 0xd7, 0x71, 0xf2, 0x2f, 0x12, 0x1a, 0x19, 0x7f, 0x04, 0xc0, 0x0b, 0xde, 0x0f, 0x90, 0xdf, 0x37, 0xd4, 0x65, 0xff, 0x1d, 0x21, 0xc6, 0x17, 0xaf, 0x17, 0x9a, 0xf3, 0x47, 0xce, 0xe1, 0xe7, 0x8f, 0x15, 0x7a, 0x28, 0x39, 0x18, 0xd1, 0xe7, 0xdf, 0xd3, 0x13, 0xf7, 0x12, 0x1c, 0x78, 0x29, 0xbe, 0x00, 0x2d, 0xd7, 0x6e, 0xe1, 0xdf, 0x08, 0x50, 0x1d, 0xd8, 0x0a, 0x04, 0x04, 0x41, 0x15, 0xe8, 0xed, 0x3c, 0xcb, 0xa2, 0xf5, 0x86, 0x1d, 0x27, 0x28, 0x39, 0x15, 0x6d, 0xdf, 0xd7, 0xd5, 0xd1, 0xf3, 0xef, 0x15, 0xd8, 0x18, 0xab, 0x04, 0x69, 0xfc, 0x41, 0x03, 0xc1, 0xf7, 0x49, 0xf1, 0x87, 0xff, 0x5d, 0x0c, 0x48, 0x05, 0xd2, 0x24, 0x0d, 0x08, 0x51, 0xb8, 0x0d, 0xd3, 0x6e, 0x1c, 0x97, 0x2f, 0x82, 0x0a, 0x41, 0xf7, 0x37, 0xfd, 0xa7, 0xf3, 0xf1, 0xf4, 0x13, 0x07, 0x9d, 0x0a, 0xd0, 0x0c, 0x9a, 0x19, 0x24, 0xe8, 0x2c, 0xc5, 0x9d, 0xfc, 0x7c, 0x25, 0x60, 0x1c, 0x0e, 0x0f, 0x3d, 0xfa, 0x67, 0xd3, 0xdf, 0xe0, 0x26, 0x0f, 0xeb, 0x28, 0x27, 0x25, 0x33, 0xeb, 0x6d, 0xcc, 0x2c, 0xeb, 0x72, 0x19, 0xd4, 0x1d, 0xef, 0x04, 0x57, 0x02, 0xb5, 0x01, 0xc8, 0xf0, 0xbf, 0xed, 0x1f, 0x02, 0x2a, 0x15, 0xcb, 0xff, 0x76, 0xeb, 0x47, 0xf6, 0x0a, 0x0c, 0x4c, 0x0b, 0x47, 0x0c, 0x5f, 0x1a, 0xd5, 0xec, 0x6f, 0xd0, 0x6f, 0xed, 0xe0, 0x18, 0xf1, 0x1c, 0x33, 0x04, 0x85, 0xfa, 0xfd, 0x10, 0x60, 0x01, 0xb6, 0xd3, 0x40, 0xe9, 0x1c, 0x17, 0x08, 0x20, 0x8a, 0x15, 0xcd, 0xfd, 0x92, 0xcf, 0x3d, 0xe0, 0x5b, 0x14, 0x14, 0x2d, 0xa2, 0x1d, 0xf6, 0xe3, 0x25, 0xd3, 0x06, 0xef, 0x6c, 0x15, 0x53, 0x1b, 0xa8, 0x08, 0xa5, 0x0f, 0xd5, 0xfb, 0x34, 0xd3, 0xab, 0xe6, 0x16, 0x16, 0x9c, 0x1e, 0xdc, 0x19, 0x60, 0xff, 0xcb, 0xd7, 0x0a, 0xe0, 0xad, 0x03, 0x89, 0x1c, 0xd5, 0x10, 0x9f, 0x02, 0xa4, 0x06, 0xc1, 0xf7, 0x45, 0xe3, 0xc9, 0xfb, 0x65, 0x20, 0x0c, 0x0b, 0x32, 0xe9, 0xaf, 0xe8, 0x89, 0xfb, 0x41, 0x11, 0x92, 0x0f, 0x20, 0x06, 0xdf, 0x07, 0xf7, 0xfd, 0xde, 0xe6, 0x61, 0xee, 0xe4, 0x08, 0x43, 0x10, 0xd0, 0x06, 0xe7, 0xfd, 0xf6, 0x20, 0xe1, 0x01, 0x25, 0xc6, 0x54, 0xdb, 0x35, 0x14, 0x24, 0x28, 0x91, 0x0c, 0xbb, 0xf7, 0x4f, 0xf4, 0x2b, 0xfd, 0x26, 0x04, 0x56, 0x07, 0xfc, 0x07, 0xfa, 0x00, 0xf7, 0xf2, 0x33, 0xf1, 0x08, 0x00, 0x94, 0x0e, 0xff, 0x0d, 0x90, 0xf6, 0x7b, 0xec, 0x45, 0xfb, 0x6a, 0x09, 0x50, 0x0b, 0x57, 0x03, 0x2b, 0xfc, 0x42, 0xfb, 0x6f, 0xfd, 0x27, 0xfc, 0x47, 0xfd, 0x2d, 0x08, 0x0c, 0x09, 0x7a, 0xff, 0x28, 0xfb, 0x0c, 0x12, 0xe8, 0x06, 0x27, 0xe2, 0x08, 0xe6, 0xca, 0xfe, 0x5c, 0x16, 0x63, 0x16, 0xc1, 0x15, 0x61, 0xf2, 0x13, 0xd3, 0x9f, 0xf0, 0xe6, 0x18, 0xff, 0x1a, 0xad, 0x0f, 0x9c, 0x01, 0xd0, 0xe3, 0x02, 0xde, 0xf3, 0xfd, 0x19, 0x17, 0xb0, 0x1a, 0x71, 0x17, 0x7d, 0xed, 0x26, 0xd8, 0xe0, 0xee, 0xbe, 0x0d, 0xfd, 0x17, 0x58, 0x07, 0x6a, 0x05, 0x83, 0x14, 0x82, 0xee, 0x3f, 0xd5, 0xcb, 0xf0, 0x93, 0x1a, 0x58, 0x29, 0x4f, 0x00, 0xa4, 0xe3, 0x48, 0xeb, 0xa3, 0xfd, 0x7a, 0x0c, 0x86, 0x0d, 0x66, 0x05, 0xcf, 0xfe, 0x96, 0xfe, 0x6b, 0x07, 0x7b, 0x02, 0xac, 0xf1, 0x39, 0xfd, 0xb5, 0xfd, 0xa9, 0xf8, 0x75, 0xfb, 0xc1, 0x03, 0xbc, 0x09, 0xd0, 0x15, 0x82, 0x0a, 0x6e, 0xe5, 0x33, 0xe2, 0x61, 0xfb, 0x6b, 0x16, 0xff, 0x11, 0x10, 0x06, 0xa8, 0x07, 0x5b, 0xf7, 0x92, 0xe1, 0x4e, 0xf3, 0x02, 0x12, 0x4f, 0x19, 0x5d, 0x11, 0x00, 0xed, 0x5e, 0xd7, 0xf9, 0xfb, 0x84, 0x1d, 0x23, 0x17, 0x10, 0x09, 0xe3, 0xf3, 0xd0, 0xdf, 0xc9, 0xf3, 0xca, 0x07, 0x60, 0x0b, 0x9a, 0x05, 0x57, 0x0e, 0x50, 0x14, 0x9b, 0xed, 0x30, 0xdf, 0xbf, 0xf1, 0xe6, 0x0d, 0x9f, 0x16, 0x0b, 0x1b, 0xc2, 0x00, 0xdc, 0xda, 0x8e, 0xe3, 0xeb, 0x05, 0xb1, 0x1a, 0xa4, 0x0c, 0x21, 0xfc, 0xd1, 0xfd, 0x85, 0x10, 0x16, 0x05, 0xbd, 0xe0, 0x65, 0xe7, 0x6a, 0x07, 0xba, 0x14, 0xb6, 0x0a, 0x51, 0xf8, 0x18, 0xef, 0x67, 0x02, 0x96, 0x21, 0x9f, 0x07, 0xa1, 0xdd, 0xf1, 0xe2, 0x55, 0x0a, 0x6e, 0x1b, 0x50, 0x09, 0x96, 0xff, 0x33, 0x01, 0x50, 0xf1, 0x2b, 0xf0, 0x0f, 0x05, 0xcd, 0x0d, 0x14, 0x0a, 0x4f, 0x07, 0x0a, 0xf1, 0x25, 0xe8, 0xe4, 0x01, 0x8d, 0x12, 0xfd, 0x0e, 0xc6, 0xff, 0x43, 0xf4, 0xd9, 0xfa, 0x4b, 0xfc, 0x24, 0xf8, 0x72, 0x01, 0x78, 0x1d, 0x41, 0x12, 0x9e, 0xde, 0xca, 0xdf, 0x48, 0xfb, 0xd5, 0x11, 0x04, 0x12, 0x7e, 0x05, 0x05, 0xfc, 0x35, 0x0d, 0x78, 0x15, 0x8e, 0xdf, 0xcc, 0xd0, 0xf4, 0x04, 0x89, 0x23, 0x82, 0x1c, 0x87, 0x0b, 0xc3, 0xe5, 0xf0, 0xd7, 0x78, 0xf8, 0x76, 0x16, 0x43, 0x1f, 0xd3, 0x07, 0x43, 0xea, 0xc1, 0xe8, 0x68, 0xfa, 0x51, 0x0d, 0xff, 0x0e, 0xc7, 0x02, 0xe6, 0x07, 0xf0, 0x0d, 0x25, 0xe8, 0x87, 0xdf, 0x3b, 0x04, 0x0b, 0x18, 0x08, 0x08, 0x4e, 0xf6, 0x52, 0xfa, 0x22, 0x07, 0x25, 0x0b, 0x15, 0x02, 0x0f, 0xf2, 0x06, 0xf3, 0x8e, 0xfe, 0x67, 0x09, 0x90, 0x0d, 0x60, 0xfe, 0xe1, 0xf0, 0x6b, 0xf6, 0x9e, 0x09, 0x1e, 0x0c, 0x4b, 0x14, 0x11, 0x08, 0x90, 0xe0, 0x8d, 0xe4, 0x64, 0xfe, 0x8f, 0x11, 0x5b, 0x11, 0xa2, 0x0e, 0x2e, 0xfe, 0x54, 0xe9, 0xb9, 0xf0, 0x67, 0x02, 0x57, 0x0e, 0xde, 0x0c, 0xd6, 0xfe, 0x64, 0xf4, 0x3a, 0xf9, 0x21, 0xfb, 0xa4, 0x00, 0x5d, 0x08, 0xaf, 0x19, 0x09, 0x0b, 0xdd, 0xe2, 0xca, 0xe2, 0x22, 0xfe, 0x7c, 0x16, 0x64, 0x18, 0x51, 0x01, 0x65, 0xea, 0x90, 0xed, 0x67, 0xfe, 0xe5, 0x0e, 0x64, 0x10, 0x54, 0x0e, 0x69, 0xfc, 0xc0, 0xe4, 0x83, 0xef, 0x37, 0x03, 0x46, 0x0b, 0xe4, 0x07, 0x36, 0x13, 0x7c, 0x0a, 0xc6, 0xe6, 0x33, 0xe6, 0xbb, 0xf7, 0x9d, 0x0e, 0x7e, 0x12, 0x93, 0x05, 0x73, 0x00, 0x8b, 0xfc, 0xab, 0xf2, 0xbe, 0xfe, 0x2b, 0x06, 0x8b, 0x14, 0xbe, 0x23, 0xfe, 0xdc, 0xef, 0xbb, 0x82, 0xf9, 0x72, 0x2c, 0x66, 0x1f, 0x40, 0x15, 0x1b, 0xf4, 0x21, 0xd1, 0xa1, 0xe7, 0x6e, 0x0f, 0xcb, 0x1c, 0x66, 0x09, 0x79, 0xfa, 0xae, 0xfb, 0x2b, 0x01, 0x79, 0xfd, 0xab, 0xfc, 0x43, 0x00, 0x2f, 0x06, 0xdb, 0x05, 0x6d, 0x02, 0x77, 0xf6, 0xed, 0xff, 0xe8, 0x09, 0x63, 0xef, 0x43, 0xeb, 0xaa, 0xfb, 0x0b, 0x12, 0xef, 0x10, 0x1b, 0x02, 0xa2, 0xfa, 0x2b, 0x05, 0xc6, 0x06, 0x6a, 0xf0, 0x44, 0xf0, 0x87, 0x05, 0x6c, 0x0e, 0x3e, 0x0c, 0x47, 0x06, 0xab, 0xf1, 0x9a, 0xe3, 0x79, 0xfa, 0x96, 0x13, 0x10, 0x12, 0x14, 0x25, 0xd1, 0xf5, 0xe9, 0xbd, 0x03, 0xdf, 0xa1, 0x20, 0x9f, 0x25, 0x3b, 0x15, 0xe0, 0x0c, 0xc9, 0xd9, 0x0d, 0xd2, 0x4e, 0x01, 0x3a, 0x23, 0xc8, 0x13, 0x4e, 0xfa, 0x2c, 0xfa, 0xe1, 0xfd, 0x95, 0xf9, 0x32, 0xff, 0xc4, 0x04, 0x89, 0x03, 0x4e, 0x01, 0x24, 0x01, 0xbd, 0xfa, 0x49, 0xfa, 0xa2, 0x01, 0x67, 0x04, 0x65, 0x03, 0x2b, 0x03, 0x81, 0xfe, 0xf3, 0xf5, 0xd3, 0xfd, 0x40, 0x0f, 0x70, 0x20, 0xff, 0xf6, 0xa2, 0xc8, 0x9d, 0xe2, 0x61, 0x0f, 0xe6, 0x21, 0xb0, 0x0f, 0xf5, 0xf9, 0x63, 0x01, 0x33, 0x1c, 0x72, 0xe8, 0x01, 0xcd, 0x71, 0x02, 0x71, 0x22, 0x35, 0x12, 0xd5, 0x01, 0xe3, 0xfc, 0x4a, 0xea, 0xcb, 0xf0, 0xbf, 0x09, 0xf6, 0x0f, 0xf0, 0x0a, 0xf5, 0xfd, 0xc8, 0xec, 0x8e, 0xf7, 0xb5, 0x08, 0x6f, 0x0a, 0x8f, 0x09, 0x94, 0x19, 0x28, 0xfa, 0x39, 0xc8, 0xb1, 0xe1, 0x33, 0x16, 0x08, 0x29, 0x7f, 0x04, 0x13, 0xea, 0x99, 0xf8, 0xc1, 0x21, 0xb0, 0x11, 0x7e, 0xde, 0x08, 0xde, 0xd1, 0xfb, 0x1a, 0x18, 0x8f, 0x12, 0xba, 0xff, 0xe9, 0xf8, 0x0b, 0x03, 0x3d, 0x1c, 0x39, 0x01, 0x30, 0xd3, 0x1a, 0xe8, 0xc9, 0x0a, 0xcf, 0x17, 0x82, 0x07, 0xb2, 0x00, 0xd4, 0x00, 0xb2, 0xf6, 0x6a, 0xf4, 0xd1, 0xfb, 0xb2, 0x09, 0xc0, 0x0d, 0xb7, 0x0d, 0xf7, 0x03, 0xd4, 0xea, 0xed, 0xe7, 0x2c, 0x00, 0x5f, 0x12, 0x50, 0x0c, 0xbb, 0xfc, 0x43, 0xf7, 0x18, 0xfb, 0x0b, 0x03, 0x00, 0x05, 0x8b, 0x00, 0x48, 0xf6, 0x9c, 0xf7, 0x2e, 0x08, 0x60, 0x0d, 0x09, 0x12, 0x21, 0xfd, 0xd0, 0xde, 0xb7, 0xf2, 0x8c, 0x12, 0x9f, 0x23, 0x69, 0x08, 0x75, 0xda, 0x8d, 0xe1, 0x50, 0x06, 0xf0, 0x17, 0x58, 0x0c, 0xf5, 0xf8, 0x2a, 0xef, 0xfe, 0x04, 0xae, 0x18, 0x93, 0xff, 0x1a, 0xe7, 0x9f, 0xef, 0x27, 0x0a, 0x5b, 0x14, 0x0c, 0x11, 0xc3, 0x02, 0x84, 0xe8, 0x2a, 0xea, 0xd1, 0xff, 0xf2, 0x08, 0x33, 0x03, 0x96, 0x05, 0x15, 0x03, 0x5e, 0x19, 0xf6, 0x0b, 0xb6, 0xcf, 0xeb, 0xdb, 0xff, 0x11, 0x94, 0x22, 0x19, 0x09, 0xd9, 0xfe, 0xe7, 0xfd, 0x8d, 0xec, 0xec, 0xf2, 0x5f, 0x09, 0xc8, 0x0e, 0x80, 0x09, 0xf7, 0x05, 0x31, 0xed, 0x6d, 0xe9, 0xda, 0x04, 0x66, 0x11, 0xc8, 0x09, 0x88, 0x16, 0xcf, 0x0a, 0x8e, 0xcd, 0xe1, 0xd2, 0x7a, 0x08, 0x80, 0x26, 0x6b, 0x12, 0x03, 0x02, 0x04, 0x12, 0x87, 0xf0, 0x0d, 0xd8, 0x9e, 0xee, 0xee, 0x11, 0x03, 0x1c, 0x96, 0x1c, 0x09, 0xfb, 0xfc, 0xd4, 0x54, 0xe5, 0xb7, 0x0e, 0x42, 0x1d, 0xd7, 0x09, 0x43, 0x04, 0x8b, 0x01, 0x46, 0xe7, 0x48, 0xe9, 0x97, 0x09, 0xa6, 0x2a, 0x6f, 0x0d, 0xae, 0xd6, 0xde, 0xda, 0x2f, 0x08, 0x64, 0x1f, 0x49, 0x14, 0x9a, 0x11, 0x56, 0xec, 0xb9, 0xcf, 0xca, 0xf6, 0xd1, 0x1a, 0x16, 0x26, 0xa2, 0x13, 0x60, 0xdd, 0xa7, 0xd2, 0xbd, 0xfb, 0x30, 0x1f, 0xf5, 0x14, 0xd8, 0xff, 0x4b, 0xf7, 0xa1, 0xf7, 0xbc, 0xff, 0x23, 0x04, 0x4b, 0x03, 0xcc, 0xff, 0xeb, 0x07, 0x51, 0x0e, 0x1f, 0x04, 0x31, 0xe7, 0x14, 0xdc, 0xbd, 0xf8, 0xd8, 0x11, 0x64, 0x16, 0x4f, 0x09, 0xaa, 0x13, 0xb7, 0xfc, 0x70, 0xd9, 0xd4, 0xe6, 0x85, 0x0b, 0xda, 0x1b, 0x4a, 0x0f, 0x32, 0x0c, 0xc9, 0xf6, 0x2a, 0xdd, 0xf3, 0xec, 0xb7, 0x0e, 0xd6, 0x1b, 0xc7, 0x07, 0x04, 0xed, 0xa8, 0xf9, 0x53, 0x17, 0xf3, 0xff, 0xc3, 0xe9, 0xa6, 0xed, 0x53, 0x03, 0x61, 0x13, 0x2c, 0x0d, 0xe0, 0x18, 0xb6, 0xf8, 0xd9, 0xd0, 0x14, 0xe9, 0x8e, 0x14, 0x61, 0x1c, 0x93, 0x05, 0x14, 0xf9, 0x6f, 0xfc, 0x6e, 0xff, 0xa1, 0xfc, 0x93, 0xfe, 0x36, 0x01, 0x7c, 0x01, 0x84, 0x01, 0x1d, 0x0a, 0x33, 0x16, 0x40, 0xee, 0x1e, 0xd1, 0xd2, 0x06, 0x1b, 0x26, 0xdb, 0x01, 0x52, 0xea, 0x0e, 0xf1, 0x5b, 0x05, 0x65, 0x11, 0xfe, 0x10, 0x9e, 0xf9, 0xbf, 0xe5, 0x45, 0xf9, 0x0b, 0x1b, 0xa5, 0x14, 0xcf, 0xea, 0x37, 0xeb, 0x76, 0x05, 0x7e, 0x09, 0x93, 0x02, 0x5a, 0xf8, 0xc0, 0xf8, 0xab, 0x05, 0xe2, 0x0d, 0xfa, 0x0f, 0x5a, 0xff, 0xb1, 0xe5, 0x82, 0xee, 0x83, 0x06, 0x3d, 0x0e, 0xdb, 0x05, 0x09, 0xf6, 0x61, 0xf7, 0x83, 0x06, 0x55, 0x0d, 0x1f, 0x0e, 0xed, 0x02, 0xc3, 0xeb, 0x47, 0xe7, 0x2f, 0x07, 0x26, 0x12, 0x65, 0x02, 0x97, 0xf4, 0xf4, 0xf3, 0x03, 0x05, 0x70, 0x1c, 0x24, 0x0f, 0xde, 0xe3, 0x8a, 0xdf, 0x27, 0x01, 0xe2, 0x18, 0x0a, 0x11, 0x89, 0xfa, 0xca, 0xf3, 0xe9, 0x03, 0x66, 0x1c, 0x71, 0x03, 0x9e, 0xd6, 0x54, 0xe3, 0xbc, 0x0a, 0x21, 0x1c, 0x75, 0x08, 0x5d, 0xf8, 0x30, 0x04, 0x43, 0x06, 0xc4, 0xf7, 0x44, 0xfa, 0x31, 0xfc, 0x15, 0xfe, 0xd5, 0x02, 0x97, 0x02, 0x3f, 0xff, 0xd5, 0xff, 0x46, 0x08, 0x06, 0x06, 0x9e, 0xf7, 0xc7, 0xf5, 0x58, 0xfe, 0x9f, 0x05, 0x83, 0x06, 0x7a, 0x00, 0x5b, 0xfc, 0x21, 0xf8, 0xf0, 0xf8, 0x22, 0x05, 0xcd, 0x0a, 0xe5, 0x03, 0x31, 0xfe, 0x75, 0x01, 0xcf, 0x1a, 0x16, 0x04, 0x76, 0xce, 0x08, 0xde, 0xc3, 0x1a, 0xeb, 0x27, 0xbb, 0x01, 0x7e, 0xec, 0x88, 0xeb, 0x9b, 0xfc, 0xe7, 0x0e, 0xca, 0x0d, 0x33, 0x05, 0x68, 0x06, 0x9c, 0xf7, 0x80, 0xe5, 0xb1, 0xfd, 0xb7, 0x0f, 0xb3, 0x1e, 0x40, 0x15, 0xf5, 0xd6, 0x64, 0xcd, 0x26, 0xff, 0x83, 0x24, 0x5b, 0x1c, 0x47, 0x0e, 0x4b, 0xef, 0x7b, 0xde, 0x03, 0xef, 0x67, 0x0b, 0x6f, 0x14, 0x7f, 0x17, 0x58, 0x0d, 0xa8, 0xe3, 0x76, 0xe2, 0x2d, 0xfb, 0xef, 0x0a, 0x60, 0x0d, 0x03, 0x06, 0xfb, 0x06, 0xdf, 0x16, 0xb1, 0xf1, 0x60, 0xd4, 0x56, 0xef, 0x5b, 0x19, 0x14, 0x18, 0x0f, 0x14, 0x7f, 0x0a, 0xff, 0xd7, 0x24, 0xd7, 0x5b, 0x07, 0x21, 0x22, 0xbc, 0x0f, 0x4d, 0x00, 0xdb, 0x02, 0x80, 0xee, 0x23, 0xe9, 0x9b, 0x02, 0xff, 0x1f, 0xed, 0x1e, 0xe7, 0xe2, 0x84, 0xcd, 0x3d, 0xfa, 0x20, 0x21, 0x39, 0x1b, 0x91, 0x09, 0xb6, 0xe4, 0xc3, 0xe5, 0x67, 0x06, 0xe2, 0x22, 0x37, 0x22, 0x78, 0xe0, 0xdb, 0xcb, 0xa6, 0xf2, 0x4d, 0x1e, 0x8a, 0x1b, 0xf0, 0x08, 0x05, 0x09, 0x0b, 0xf3, 0x57, 0xda, 0xab, 0xf2, 0xe6, 0x14, 0x2c, 0x16, 0x2b, 0x01, 0xb7, 0x01, 0x4e, 0x11, 0xec, 0xf0, 0x65, 0xdd, 0x78, 0xf0, 0x09, 0x11, 0xdd, 0x18, 0x80, 0x08, 0xc6, 0x13, 0x8d, 0xf8, 0x58, 0xd7, 0xdb, 0xe9, 0xba, 0x0b, 0xef, 0x19, 0x07, 0x0a, 0x2b, 0xfd, 0x77, 0xf6, 0x0a, 0xfe, 0xcf, 0x02, 0x0d, 0x17, 0xf0, 0x16, 0xe6, 0xd8, 0xb4, 0xce, 0xc7, 0xfc, 0x8c, 0x24, 0x60, 0x17, 0xc7, 0x08, 0x51, 0x0b, 0x28, 0xe7, 0xb9, 0xd8, 0x96, 0xf8, 0xab, 0x1a, 0xe5, 0x15, 0xd5, 0x02, 0xf0, 0xf8, 0x33, 0xf5, 0x55, 0xfd, 0xfe, 0x04, 0xbb, 0x04, 0x99, 0x02, 0x2f, 0x0d, 0xe4, 0x0f, 0x84, 0xeb, 0x41, 0xd5, 0xa0, 0xf4, 0x14, 0x1e, 0x6a, 0x1c, 0x07, 0xfd, 0x82, 0xee, 0x27, 0xf5, 0x6d, 0x02, 0x64, 0x04, 0xad, 0xff, 0xab, 0x03, 0x64, 0x1c, 0x67, 0x05, 0x94, 0xdc, 0x03, 0xe3, 0x00, 0x04, 0x12, 0x1c, 0x24, 0x0c, 0x8e, 0x0d, 0x2f, 0x0b, 0x7f, 0xdd, 0x39, 0xd8, 0x6b, 0x03, 0x1b, 0x20, 0x45, 0x11, 0x45, 0x01, 0x79, 0x03, 0x24, 0xf2, 0x17, 0xe7, 0xa6, 0xfe, 0x82, 0x12, 0xbf, 0x11, 0x36, 0x0c, 0x3a, 0xf9, 0x70, 0xe2, 0xa6, 0xeb, 0x66, 0x0c, 0x59, 0x1f, 0x03, 0x05, 0xc4, 0xeb, 0x23, 0xea, 0x90, 0xff, 0xe6, 0x12, 0x29, 0x0c, 0x69, 0xfe, 0x16, 0xfa, 0x0b, 0x05, 0x59, 0x19, 0x11, 0xf6, 0xad, 0xce, 0xa9, 0xf5, 0xec, 0x1c, 0x45, 0x16, 0x6c, 0xfe, 0x29, 0xfc, 0xf2, 0x07, 0x4a, 0xf9, 0x68, 0xe9, 0x6d, 0xf9, 0xfe, 0x0f, 0x56, 0x14, 0x2c, 0x0c, 0x71, 0xe8, 0xe5, 0xde, 0xd1, 0x02, 0xa8, 0x26, 0x4b, 0x1e, 0x2a, 0xe4, 0xa4, 0xd8, 0xe4, 0xf4, 0x93, 0x16, 0xf4, 0x1f, 0x33, 0x02, 0x4a, 0xe5, 0x37, 0xea, 0xee, 0x0b, 0xe1, 0x13, 0x01, 0x19, 0xe4, 0x07, 0xf2, 0xcf, 0x78, 0xde, 0x0c, 0x14, 0xf3, 0x23, 0x09, 0x20, 0x0f, 0xf2, 0xf5, 0xcf, 0x25, 0xe8, 0x43, 0x12, 0x11, 0x1d, 0xb5, 0x10, 0x6f, 0x09, 0x83, 0xec, 0x70, 0xe2, 0xc1, 0xf5, 0x7e, 0x08, 0x4c, 0x10, 0xa6, 0x08, 0x2b, 0x03, 0x3c, 0x17, 0xf4, 0xf8, 0x19, 0xce, 0x52, 0xee, 0xc5, 0x1b, 0x8c, 0x1f, 0x25, 0x12, 0xaf, 0xf7, 0x01, 0xd9, 0x7c, 0xe8, 0x90, 0x0e, 0x9b, 0x1e, 0x1e, 0x14, 0xa1, 0xf2, 0xdd, 0xe5, 0x84, 0xf5, 0xf7, 0x08, 0x34, 0x0b, 0x3a, 0x0a, 0x27, 0x05, 0x89, 0xf3, 0xe7, 0xf0, 0xf1, 0xf6, 0x16, 0x0b, 0x5a, 0x0d, 0x45, 0x16, 0x36, 0x0c, 0xd9, 0xd6, 0xb8, 0xda, 0x8c, 0x0c, 0x41, 0x20, 0x77, 0x0d, 0xb7, 0x05, 0x51, 0xfc, 0x14, 0xe3, 0x8b, 0xec, 0xae, 0x0c, 0x9f, 0x17, 0xdb, 0x12, 0x1b, 0x05, 0x30, 0xe6, 0x7f, 0xdf, 0xcd, 0xfe, 0x89, 0x18, 0x82, 0x10, 0x1c, 0xf4, 0xdd, 0xfc, 0x81, 0x0d, 0xd2, 0xfa, 0xc5, 0xec, 0x94, 0xf6, 0x90, 0x0d, 0x6c, 0x0e, 0xa7, 0x0b, 0x62, 0x12, 0x23, 0xe9, 0xbf, 0xd3, 0x15, 0xfd, 0xc9, 0x25, 0x78, 0x20, 0x31, 0xf0, 0xa0, 0xdf, 0x1e, 0xf2, 0x39, 0x0a, 0xee, 0x11, 0x58, 0x10, 0x91, 0x00, 0x74, 0xed, 0xd9, 0xf1, 0xbd, 0x01, 0x77, 0x0c, 0x7a, 0x07, 0xc7, 0xf7, 0x41, 0xf4, 0x7d, 0x00, 0x7d, 0x15, 0xba, 0x15, 0x87, 0xee, 0xc3, 0xdf, 0xe6, 0xf1, 0x63, 0x10, 0x52, 0x15, 0xc3, 0x06, 0x33, 0x05, 0x69, 0x02, 0x9e, 0xe7, 0x96, 0xeb, 0xb7, 0x06, 0x9b, 0x1e, 0x6f, 0x1e, 0x0b, 0xe8, 0xb8, 0xd0, 0x7a, 0xf2, 0x3f, 0x1a, 0xc0, 0x20, 0x90, 0x16, 0xbf, 0xea, 0x50, 0xd8, 0xfd, 0xf8, 0x39, 0x12, 0x76, 0x0d, 0x84, 0x01, 0xa3, 0x03, 0x29, 0x08, 0xed, 0xfb, 0x11, 0xed, 0xd9, 0xf4, 0x31, 0x0a, 0x36, 0x0f, 0xda, 0xff, 0x28, 0xf7, 0x85, 0xfa, 0x4b, 0x01, 0xe2, 0x04, 0xf5, 0x03, 0xd5, 0xff, 0x8b, 0xfc, 0xdf, 0xfd, 0x87, 0xff, 0x5b, 0x02, 0xbf, 0xfd, 0x9c, 0xf9, 0x88, 0x00, 0xef, 0x15, 0xd8, 0x0e, 0xbf, 0xe7, 0x25, 0xe1, 0x1e, 0x05, 0xce, 0x24, 0x49, 0x09, 0x62, 0xe4, 0xf3, 0xe6, 0x92, 0x09, 0x34, 0x16, 0xaa, 0x07, 0x15, 0xfb, 0x2d, 0xfb, 0xc6, 0x01, 0x63, 0x06, 0x6f, 0x04, 0xb8, 0xfb, 0xf4, 0xf4, 0x9c, 0xf9, 0x83, 0xff, 0x40, 0x00, 0x23, 0x03, 0xd1, 0x03, 0x15, 0x02, 0x93, 0xff, 0x26, 0xff, 0xc5, 0xff, 0x30, 0xff, 0xc2, 0xf9, 0x1b, 0xfd, 0x04, 0x16, 0x0f, 0x09, 0xdd, 0xed, 0x07, 0xea, 0xe1, 0xfb, 0xaa, 0x12, 0x28, 0x13, 0x29, 0x03, 0xca, 0xef, 0x63, 0xf1, 0x87, 0x02, 0x7c, 0x0d, 0x9c, 0x0c, 0x8e, 0x04, 0x23, 0xf6, 0x2e, 0xee, 0x42, 0xf7, 0x14, 0x05, 0x86, 0x09, 0xb4, 0x05, 0xeb, 0xfe, 0xcb, 0xfc, 0x7f, 0xfe, 0xf8, 0x00, 0xef, 0xfc, 0xf3, 0xf7, 0xf9, 0x01, 0xc3, 0x11, 0x03, 0x17, 0x48, 0xf5, 0x2d, 0xe1, 0xa7, 0xf3, 0xa3, 0x07, 0xad, 0x0a, 0x4f, 0x04, 0xbb, 0x03, 0xdc, 0x01, 0x89, 0xfa, 0xa3, 0xfc, 0x31, 0x09, 0x99, 0x18, 0xbc, 0xfa, 0xa9, 0xd9, 0xe0, 0xed, 0xfd, 0x0d, 0x38, 0x15, 0x00, 0x07, 0x52, 0xf3, 0x8b, 0xf3, 0x7b, 0x04, 0x60, 0x0b, 0x4f, 0x04, 0xbc, 0x06, 0x4b, 0x17, 0x71, 0xf0, 0xd5, 0xd4, 0x1a, 0xed, 0x46, 0x13, 0x83, 0x1b, 0xc8, 0x06, 0xb5, 0xf9, 0xc9, 0x0a, 0xf4, 0x0e, 0x2e, 0xe2, 0xa8, 0xd9, 0xae, 0x06, 0x48, 0x20, 0x53, 0x1d, 0xee, 0x00, 0xb8, 0xdd, 0x62, 0xe6, 0xe1, 0x01, 0x18, 0x11, 0x40, 0x0c, 0x5b, 0x16, 0x8d, 0x01, 0xa7, 0xe0, 0x86, 0xe6, 0x55, 0x02, 0xac, 0x16, 0x79, 0x0d, 0x23, 0xff, 0x64, 0x06, 0x5b, 0x04, 0x4b, 0xe6, 0x7b, 0xec, 0x67, 0x0b, 0x9f, 0x14, 0x96, 0x0f, 0x3f, 0x06, 0x6f, 0xec, 0x95, 0xe0, 0x26, 0xfb, 0x6a, 0x16, 0xc9, 0x1b, 0x91, 0x01, 0x2a, 0xe6, 0x1c, 0xee, 0x93, 0x03, 0xcd, 0x0e, 0x4e, 0x0b, 0xd0, 0xfe, 0x20, 0xf7, 0xe1, 0xf5, 0xfe, 0xf9, 0x7e, 0x08, 0x8a, 0x0d, 0xdd, 0x18, 0x16, 0xfe, 0x16, 0xdc, 0x41, 0xe7, 0xa3, 0x04, 0x0e, 0x18, 0x84, 0x0e, 0xd7, 0x09, 0x1f, 0x06, 0xbb, 0xe9, 0xe4, 0xe0, 0xd6, 0xfe, 0xff, 0x17, 0x3f, 0x1b, 0x57, 0xfe, 0x6b, 0xe7, 0x96, 0xec, 0xac, 0xfe, 0xc1, 0x0f, 0x18, 0x0d, 0x1e, 0x05, 0x68, 0x09, 0x8c, 0x06, 0xda, 0xe8, 0x8b, 0xdf, 0x01, 0xfa, 0x19, 0x19, 0x30, 0x13, 0x36, 0x13, 0xdf, 0x04, 0xb5, 0xd4, 0x6d, 0xdf, 0x8a, 0x12, 0x0b, 0x1e, 0x0a, 0x1c, 0xc1, 0x03, 0xde, 0xd4, 0xca, 0xdf, 0x89, 0x0b, 0x6c, 0x1d, 0x21, 0x0a, 0x97, 0xf7, 0x59, 0xf7, 0x4f, 0x02, 0x04, 0x06, 0x04, 0x04, 0x2b, 0xf6, 0x6e, 0xf0, 0x22, 0x01, 0x9a, 0x1c, 0xb0, 0x12, 0x12, 0xe8, 0x6c, 0xe3, 0xf3, 0xfc, 0xe8, 0x13, 0xa7, 0x0b, 0xbb, 0xf4, 0x56, 0xf6, 0xa0, 0x06, 0xef, 0x18, 0x94, 0x10, 0x13, 0xe4, 0x01, 0xdf, 0xb1, 0xf9, 0xce, 0x19, 0x43, 0x1e, 0xdb, 0xfc, 0xe6, 0xe4, 0x12, 0xec, 0xcf, 0x05, 0xcf, 0x14, 0x04, 0x07, 0xa6, 0x08, 0xd4, 0x14, 0xe4, 0xe8, 0x7e, 0xd7, 0x0f, 0xf2, 0x58, 0x16, 0x36, 0x19, 0xf9, 0x03, 0x4f, 0xf7, 0x87, 0x02, 0x8b, 0x07, 0x3c, 0xf1, 0x74, 0xf3, 0x6b, 0x06, 0x66, 0x0b, 0xab, 0x06, 0x16, 0x05, 0xd1, 0xf6, 0xbd, 0xed, 0x4d, 0xfd, 0xb9, 0x0b, 0x47, 0x0d, 0x07, 0x0a, 0x2d, 0xfd, 0x56, 0xea, 0x8b, 0xef, 0x31, 0x02, 0x97, 0x0d, 0x4a, 0x0b, 0xc9, 0x18, 0x81, 0x02, 0x24, 0xd6, 0x93, 0xe6, 0xa5, 0x09, 0xaf, 0x18, 0xaa, 0x0c, 0x85, 0xfc, 0x67, 0xee, 0xef, 0xf3, 0x4f, 0x09, 0xf0, 0x0e, 0x1e, 0x06, 0xa9, 0x0f, 0x2b, 0xfd, 0x3b, 0xd6, 0xd5, 0xee, 0x03, 0x17, 0xdf, 0x17, 0xc5, 0x0d, 0x29, 0x03, 0x60, 0xe6, 0xdb, 0xde, 0x15, 0x03, 0x4e, 0x15, 0xa1, 0x1e, 0x7f, 0x13, 0x27, 0xdd, 0xb3, 0xd3, 0x99, 0xfb, 0xd4, 0x1e, 0x7d, 0x15, 0x63, 0xfd, 0x23, 0xfd, 0x9f, 0x10, 0xb4, 0xf7, 0x45, 0xda, 0x01, 0xf7, 0x58, 0x16, 0x03, 0x13, 0xe2, 0x00, 0x03, 0x06, 0x68, 0x0e, 0x47, 0xea, 0x08, 0xda, 0x0e, 0xf7, 0x5c, 0x15, 0x74, 0x18, 0xd5, 0x16, 0x50, 0xfa, 0x88, 0xd9, 0x17, 0xf4, 0xfb, 0x12, 0xaf, 0x0d, 0x55, 0xfd, 0xc1, 0xf1, 0x9d, 0xf9, 0x44, 0x0a, 0x92, 0x0e, 0x7c, 0x13, 0x3d, 0xfa, 0xe8, 0xde, 0x83, 0xea, 0x33, 0x06, 0xcf, 0x16, 0x47, 0x0c, 0x30, 0x05, 0x27, 0x07, 0xe9, 0xf3, 0x0d, 0xe3, 0xf5, 0xf8, 0x28, 0x13, 0x2b, 0x19, 0xd7, 0x0b, 0xaa, 0xea, 0x4b, 0xe4, 0x69, 0xfd, 0x57, 0x0e, 0x0f, 0x0d, 0xa5, 0xfa, 0xa0, 0xf2, 0x0d, 0x02, 0x66, 0x0b, 0xa0, 0x06, 0xb3, 0xff, 0x98, 0xf9, 0xb1, 0xfb, 0xa6, 0x01, 0x41, 0x03, 0xbb, 0x01, 0xfa, 0x0a, 0x1d, 0x1e, 0x1d, 0xed, 0x19, 0xc2, 0x91, 0xec, 0xc9, 0x23, 0x77, 0x27, 0x12, 0x05, 0x5b, 0xeb, 0x2c, 0xee, 0x7b, 0x02, 0x75, 0x08, 0x0b, 0x05, 0x2f, 0x03, 0x6b, 0x16, 0xdf, 0x04, 0x8f, 0xd8, 0x77, 0xe3, 0x9b, 0x04, 0x15, 0x19, 0x1f, 0x0e, 0x33, 0x11, 0x73, 0x03, 0x10, 0xe2, 0xcd, 0xe9, 0x5b, 0xfe, 0x1f, 0x0d, 0x5a, 0x0d, 0xbb, 0x04, 0x3d, 0x03, 0x3d, 0x08, 0x79, 0xf7, 0xe2, 0xe8, 0xe2, 0xf9, 0x1a, 0x0f, 0x58, 0x13, 0xdf, 0x0c, 0x94, 0xf7, 0x6a, 0xe3, 0x73, 0xf0, 0x00, 0x08, 0x06, 0x11, 0xf3, 0x02, 0x54, 0xf5, 0x82, 0xfe, 0x9f, 0x08, 0xf3, 0x05, 0xc4, 0xfe, 0x95, 0xfc, 0x1e, 0xff, 0xf3, 0x02, 0x27, 0x0c, 0x10, 0x0d, 0x7b, 0xec, 0xe6, 0xde, 0x25, 0xfa, 0x72, 0x24, 0x92, 0x1a, 0x1c, 0xe9, 0x68, 0xde, 0x22, 0xf7, 0x7e, 0x15, 0xa0, 0x12, 0xe7, 0x01, 0xa5, 0xfb, 0x52, 0x13, 0x6c, 0x07, 0x8c, 0xd7, 0x1b, 0xe0, 0x0f, 0x0e, 0x98, 0x21, 0x51, 0x19, 0x30, 0xf8, 0x38, 0xe0, 0x78, 0xee, 0xdb, 0x06, 0x1f, 0x0e, 0x56, 0x0f, 0x8e, 0x0a, 0x59, 0xf1, 0x32, 0xed, 0xd9, 0xf7, 0x3b, 0x07, 0x9f, 0x0d, 0xf7, 0x0e, 0xe7, 0x07, 0x00, 0xef, 0x6a, 0xe9, 0x65, 0xf9, 0x93, 0x06, 0x98, 0x13, 0x7d, 0x19, 0x8b, 0xf6, 0x48, 0xe0, 0x9f, 0xec, 0x80, 0x0b, 0x66, 0x17, 0x7c, 0x0d, 0x6c, 0xff, 0xa1, 0xed, 0xd7, 0xf1, 0x40, 0x04, 0x47, 0x0c, 0x24, 0x05, 0xfc, 0x08, 0x11, 0x17, 0xab, 0xed, 0xa4, 0xcc, 0x1b, 0xf2, 0xc3, 0x1d, 0x39, 0x24, 0x07, 0x0d, 0x22, 0xe8, 0x48, 0xe5, 0x32, 0xf8, 0xe6, 0x09, 0x55, 0x0d, 0x86, 0x11, 0xf4, 0x10, 0x46, 0xeb, 0x2a, 0xe3, 0x81, 0xf5, 0x37, 0x09, 0xaf, 0x10, 0x4e, 0x08, 0x58, 0x01, 0xe4, 0x13, 0xd7, 0xfd, 0x4c, 0xd6, 0xd1, 0xe9, 0x2c, 0x13, 0x5a, 0x24, 0x8d, 0x08, 0xa2, 0xe2, 0x66, 0xe9, 0x69, 0x0a, 0x2e, 0x14, 0x74, 0x05, 0xb1, 0xf8, 0xe7, 0xfd, 0xad, 0x0c, 0xc8, 0x0e, 0xc4, 0xf1, 0x32, 0xdf, 0x6e, 0xf4, 0x4e, 0x0b, 0x5d, 0x0e, 0x22, 0x07, 0x6f, 0x03, 0xa9, 0x09, 0xff, 0x05, 0x27, 0xee, 0x75, 0xe8, 0xb9, 0xff, 0xa6, 0x12, 0x57, 0x03, 0x05, 0xf8, 0x03, 0x01, 0xad, 0x18, 0x9a, 0x0d, 0x7d, 0xe2, 0x06, 0xe5, 0x16, 0x00, 0x71, 0x12, 0x2e, 0x0d, 0xcb, 0x00, 0xc1, 0xf4, 0x6a, 0xf3, 0x0f, 0x01, 0x6d, 0x16, 0x59, 0x15, 0x03, 0xef, 0x76, 0xe4, 0xb2, 0xf4, 0x1d, 0x0a, 0x05, 0x11, 0x4d, 0x0f, 0xdc, 0x07, 0x0e, 0xee, 0x5b, 0xe9, 0xe4, 0xfb, 0xb7, 0x0c, 0x9a, 0x10, 0x2d, 0x03, 0xf1, 0xf5, 0x92, 0xf6, 0x7e, 0xff, 0xe9, 0xff, 0x0f, 0xfe, 0xf3, 0x02, 0xf3, 0x07, 0x1d, 0x03, 0x7c, 0x13, 0x21, 0x0b, 0x2a, 0xdd, 0x84, 0xdf, 0x9a, 0x05, 0xc8, 0x1b, 0xd7, 0x0c, 0x49, 0xfa, 0xa3, 0xf0, 0x03, 0xf5, 0x18, 0x05, 0x87, 0x0d, 0x6a, 0x09, 0x87, 0x08, 0x2d, 0xfe, 0xe1, 0xeb, 0x3a, 0xeb, 0xc7, 0x04, 0x02, 0x11, 0x8d, 0x1a, 0xac, 0x0e, 0x41, 0xde, 0xea, 0xda, 0x8b, 0xfc, 0xd1, 0x18, 0xf1, 0x15, 0x13, 0x03, 0x36, 0xf3, 0x58, 0xf8, 0x2c, 0x0a, 0x96, 0x14, 0xb6, 0xf6, 0xbc, 0xe2, 0xbb, 0xf4, 0xc6, 0x0b, 0x0d, 0x0d, 0xc3, 0xfd, 0x84, 0xfb, 0xa5, 0x08, 0xc3, 0x1d, 0xce, 0xf8, 0x9e, 0xdb, 0xf8, 0xe7, 0x66, 0x0c, 0xae, 0x17, 0x58, 0x17, 0xcc, 0x0e, 0xc7, 0xdf, 0x10, 0xd8, 0x48, 0xff, 0xed, 0x1d, 0x51, 0x11, 0x75, 0xfd, 0xa7, 0x02, 0xa7, 0x08, 0x71, 0xe9, 0xc8, 0xe3, 0x5f, 0x07, 0x3c, 0x17, 0x2d, 0x0b, 0x5d, 0x02, 0xc7, 0xfd, 0xd1, 0xed, 0xdc, 0xf3, 0x7f, 0x06, 0x18, 0x23, 0x4f, 0x12, 0xad, 0xd4, 0x8b, 0xd5, 0xd2, 0x06, 0x92, 0x22, 0xed, 0x0f, 0x20, 0xff, 0x66, 0x10, 0x8f, 0xf7, 0x82, 0xdb, 0x6a, 0xeb, 0xd7, 0x0b, 0xec, 0x18, 0x0a, 0x0a, 0xdc, 0xfa, 0x5c, 0x0c, 0x8f, 0x0e, 0x81, 0xdc, 0x2e, 0xdc, 0x0f, 0x17, 0xf3, 0x23, 0x81, 0xfb, 0xd5, 0xe2, 0x17, 0xf3, 0x41, 0x11, 0xbe, 0x10, 0x42, 0x06, 0xa0, 0x04, 0xf6, 0xf5, 0xc4, 0xe7, 0x7a, 0xfb, 0x85, 0x0e, 0x8c, 0x15, 0x6f, 0x19, 0xf8, 0xe9, 0xe2, 0xcf, 0xa1, 0xf0, 0xbb, 0x19, 0xa8, 0x1b, 0x8f, 0x08, 0xa5, 0x0b, 0x22, 0xf3, 0xdb, 0xd7, 0xb2, 0xf4, 0x13, 0x18, 0x45, 0x1c, 0x54, 0x11, 0x75, 0xef, 0x15, 0xdd, 0x74, 0xf3, 0x1e, 0x0e, 0xd4, 0x17, 0x47, 0x0c, 0xc8, 0xf4, 0x31, 0xee, 0xd0, 0xf5, 0x57, 0x02, 0xe9, 0x0c, 0x17, 0x08, 0x17, 0x00, 0xc9, 0xfe, 0x28, 0x09, 0x2a, 0x12, 0x4f, 0xee, 0x42, 0xd7, 0x67, 0xf4, 0xb3, 0x1a, 0x7f, 0x25, 0xbe, 0x01, 0xde, 0xe4, 0x7d, 0xeb, 0x8e, 0xfe, 0x46, 0x0e, 0x5f, 0x0e, 0x48, 0x0e, 0x8d, 0x01, 0x33, 0xe8, 0x81, 0xee, 0xb2, 0x04, 0x44, 0x0d, 0xd8, 0x05, 0xf7, 0xf7, 0xff, 0xf6, 0xfb, 0x04, 0x95, 0x0c, 0x17, 0x0f, 0x50, 0x05, 0x84, 0xe8, 0x7b, 0xe7, 0xd2, 0xfa, 0x0d, 0x0e, 0x31, 0x10, 0x1e, 0x17, 0x63, 0x01, 0x35, 0xde, 0xd1, 0xe4, 0xfa, 0x09, 0xea, 0x17, 0x5f, 0x15, 0xb5, 0x10, 0x33, 0xe2, 0xb6, 0xd5, 0x99, 0xfd, 0xbe, 0x1d, 0xd6, 0x12, 0x96, 0x01, 0x7b, 0x04, 0x46, 0xf4, 0xa0, 0xe6, 0x85, 0xfd, 0x41, 0x12, 0x67, 0x09, 0x17, 0xfc, 0xd5, 0xfb, 0x64, 0x10, 0x6c, 0x17, 0x2c, 0xdb, 0xa6, 0xd2, 0x37, 0x0a, 0x21, 0x32, 0x20, 0x18, 0xff, 0xe1, 0xb0, 0xdd, 0x2a, 0xf8, 0x5f, 0x12, 0xeb, 0x14, 0xe4, 0x13, 0xfe, 0xf7, 0xb1, 0xe2, 0xed, 0xec, 0xff, 0x06, 0x7b, 0x15, 0xa9, 0x09, 0x51, 0x03, 0x51, 0xfb, 0xf0, 0xef, 0x49, 0xfb, 0xbf, 0x09, 0x16, 0x12, 0x64, 0x18, 0x3b, 0xee, 0x6d, 0xd2, 0x31, 0xed, 0xb0, 0x11, 0xda, 0x1e, 0x69, 0x14, 0x3c, 0xf9, 0x41, 0xe4, 0x6d, 0xf9, 0xe5, 0x08, 0x0c, 0x05, 0x2d, 0xf8, 0x25, 0xfe, 0x4f, 0x07, 0x7f, 0x16, 0x60, 0x10, 0x76, 0xe2, 0x20, 0xdc, 0x23, 0xfc, 0x61, 0x19, 0xfc, 0x14, 0x87, 0x0e, 0x59, 0xfb, 0x3d, 0xe2, 0xc1, 0xe9, 0x6f, 0x04, 0x82, 0x15, 0x49, 0x0f, 0x1c, 0x06, 0xa7, 0x03, 0xab, 0xf2, 0xa1, 0xe8, 0x45, 0xfa, 0x3f, 0x0b, 0x14, 0x0d, 0xd7, 0x03, 0xd9, 0xfb, 0x9d, 0xfa, 0xfd, 0xfd, 0x87, 0xff, 0xaa, 0xf9, 0x11, 0x00, 0x9d, 0x08, 0xb5, 0x0b, 0xba, 0x18, 0xb9, 0xf2, 0xcc, 0xce, 0x93, 0xf4, 0xa0, 0x1c, 0x46, 0x1b, 0xb1, 0x17, 0x0f, 0xf0, 0x27, 0xd0, 0x85, 0xee, 0x7c, 0x19, 0x0b, 0x2a, 0x83, 0x05, 0x12, 0xde, 0x9e, 0xe1, 0x39, 0x08, 0x22, 0x19, 0x9c, 0x18, 0x39, 0x0a, 0xd2, 0xda, 0x34, 0xdc, 0xf6, 0x09, 0x24, 0x1d, 0x2b, 0x10, 0xee, 0x08, 0x02, 0xf9, 0x9e, 0xdf, 0x14, 0xec, 0x2f, 0x0e, 0xcc, 0x15, 0x63, 0x05, 0xd6, 0xfe, 0xe1, 0x0e, 0xc0, 0xf9, 0x51, 0xe3, 0x53, 0xed, 0xd6, 0x07, 0x5f, 0x14, 0x13, 0x16, 0x1a, 0x0f, 0xf6, 0xe6, 0x9b, 0xde, 0x54, 0xf7, 0x62, 0x14, 0xff, 0x13, 0x45, 0x0b, 0x96, 0x08, 0x0a, 0xee, 0x2b, 0xe0, 0x5d, 0xf9, 0xd3, 0x13, 0xad, 0x19, 0x33, 0x07, 0x3a, 0xec, 0x5c, 0xed, 0x2d, 0xfe, 0x29, 0x0b, 0x4c, 0x08, 0xea, 0xfb, 0xb5, 0xfa, 0x0a, 0x0f, 0xa8, 0x0d, 0x48, 0xef, 0xdc, 0xec, 0x19, 0xfd, 0xb7, 0x05, 0xa9, 0x02, 0xeb, 0x04, 0x1f, 0x04, 0xe7, 0x04, 0x3e, 0x1c, 0x49, 0xf7, 0x67, 0xcd, 0xcc, 0xed, 0x8e, 0x1a, 0x4a, 0x1b, 0x39, 0x01, 0x6b, 0xf6, 0xa1, 0xfc, 0x3d, 0x00, 0x56, 0xff, 0x05, 0x00, 0x9d, 0x01, 0x3b, 0x02, 0x1d, 0x03, 0x6f, 0xfe, 0x05, 0xf9, 0xe6, 0xfb, 0xfd, 0x02, 0x24, 0x04, 0x4a, 0x08, 0xa8, 0x28, 0x89, 0xf0, 0xdc, 0xb4, 0xe4, 0xe9, 0x35, 0x2a, 0x3f, 0x25, 0x11, 0x0e, 0x7b, 0x01, 0x78, 0xe0, 0x81, 0xde, 0x0c, 0x04, 0x15, 0x1a, 0xcf, 0x1a, 0x45, 0x08, 0xcc, 0xe4, 0xa1, 0xe5, 0x83, 0xfc, 0xd7, 0x0d, 0xf1, 0x0c, 0xd5, 0x03, 0x84, 0xff, 0xd1, 0x0f, 0xeb, 0x07, 0x21, 0xe1, 0xb6, 0xea, 0xf6, 0x06, 0xb7, 0x0e, 0x28, 0x07, 0x59, 0xf7, 0xc0, 0xf6, 0xda, 0x04, 0x0f, 0x0b, 0x6a, 0x0a, 0x26, 0x07, 0xe3, 0xf3, 0x10, 0xe9, 0x8d, 0xf9, 0x30, 0x10, 0x92, 0x0e, 0xc9, 0xf9, 0x77, 0xf4, 0x7d, 0x0c, 0xeb, 0x14, 0x3e, 0xf0, 0x4b, 0xe4, 0xf7, 0xf4, 0x37, 0x0b, 0x1d, 0x13, 0xd3, 0x07, 0x02, 0x09, 0x8b, 0x04, 0x4e, 0xe7, 0xf4, 0xeb, 0xba, 0x0d, 0x4f, 0x0f, 0x93, 0xfd, 0x6e, 0xf8, 0x6b, 0xf6, 0xf3, 0xfd, 0x24, 0x07, 0x99, 0x1a, 0x2c, 0x0d, 0x60, 0xe3, 0x66, 0xdf, 0x03, 0xfe, 0xdf, 0x18, 0xe0, 0x0f, 0xac, 0x00, 0xb6, 0x04, 0x10, 0xfa, 0x9b, 0xe8, 0xc0, 0xf9, 0x3d, 0x0e, 0x9c, 0x0e, 0x68, 0x0b, 0xaa, 0x0c, 0x5e, 0xeb, 0xf8, 0xd6, 0xc4, 0xf4, 0x0c, 0x17, 0x32, 0x24, 0xb9, 0x0b, 0x24, 0xe8, 0x9d, 0xe9, 0xe1, 0xfd, 0xc8, 0x08, 0xbf, 0x05, 0x69, 0x02, 0x78, 0x04, 0x5a, 0x08, 0x02, 0x04, 0xf7, 0xf4, 0x95, 0xef, 0xe3, 0xfc, 0xb7, 0x08, 0x5a, 0x08, 0x35, 0xfd, 0x3b, 0xf6, 0x8d, 0x02, 0x5a, 0x0e, 0x03, 0x07, 0x4e, 0xff, 0x11, 0xf5, 0xfe, 0xf0, 0x45, 0xfb, 0x23, 0x03, 0x6a, 0x16, 0x0d, 0x0e, 0xfb, 0xf0, 0x2d, 0xe7, 0x8f, 0xf7, 0xef, 0x10, 0xaf, 0x0f, 0x01, 0x01, 0xf7, 0xfc, 0x4d, 0xfc, 0xf1, 0xfa, 0x47, 0x00, 0xcf, 0x03, 0x21, 0x03, 0x87, 0x08, 0x7b, 0xff, 0xa0, 0xec, 0x5f, 0xf7, 0x82, 0x09, 0x87, 0x0b, 0xd9, 0x09, 0x94, 0x19, 0xd8, 0xf2, 0xee, 0xc3, 0x5c, 0xea, 0x9f, 0x20, 0xa0, 0x24, 0x70, 0x19, 0x91, 0xf1, 0x81, 0xd4, 0x18, 0xeb, 0xe8, 0x13, 0xe0, 0x18, 0x08, 0x0f, 0x13, 0x10, 0x50, 0xe4, 0x60, 0xd5, 0x10, 0xfe, 0x05, 0x1e, 0x92, 0x12, 0xe3, 0x00, 0xdb, 0x01, 0x26, 0xf0, 0xe1, 0xec, 0x57, 0x05, 0xda, 0x0e, 0x19, 0x09, 0xbf, 0x1d, 0x1a, 0xf9, 0x58, 0xc4, 0x15, 0xe6, 0xc4, 0x1b, 0x69, 0x23, 0x5d, 0x03, 0xa0, 0x01, 0x7d, 0x0f, 0x71, 0xe3, 0x04, 0xd8, 0x42, 0x06, 0xc8, 0x1e, 0x0a, 0x0f, 0xc1, 0xf9, 0x36, 0xf8, 0x99, 0x02, 0xc0, 0x05, 0xb1, 0xfd, 0x0d, 0xf8, 0xc3, 0xfc, 0x3f, 0x04, 0xb9, 0xfc, 0xdc, 0xf6, 0xf4, 0x06, 0xdf, 0x1b, 0xdb, 0xfe, 0xd4, 0xe3, 0x10, 0xec, 0xeb, 0x02, 0x19, 0x14, 0x72, 0x0b, 0xdb, 0xfe, 0xf1, 0xfd, 0x63, 0x10, 0xf7, 0x03, 0x5f, 0xdc, 0x28, 0xe7, 0x7d, 0x10, 0x71, 0x1b, 0xda, 0x13, 0x7c, 0x01, 0xfb, 0xe1, 0xf6, 0xe3, 0x55, 0x08, 0x94, 0x16, 0xe7, 0x08, 0x71, 0xf6, 0x92, 0xf0, 0xf3, 0xff, 0xd1, 0x0b, 0x2b, 0x07, 0x6e, 0x06, 0x5a, 0x14, 0xc1, 0xf4, 0x3a, 0xd6, 0x96, 0xef, 0x0b, 0x13, 0x7f, 0x18, 0xeb, 0x03, 0x9e, 0x04, 0x47, 0x0c, 0x8b, 0xec, 0xd7, 0xe3, 0x95, 0xf9, 0x8f, 0x15, 0xc0, 0x14, 0x81, 0xfc, 0xd2, 0xee, 0xb1, 0xf2, 0x74, 0x09, 0x9d, 0x1a, 0x1b, 0x06, 0x41, 0xe6, 0xfd, 0xe9, 0x47, 0x06, 0xb1, 0x14, 0x59, 0x18, 0x8f, 0xfd, 0x26, 0xe1, 0xca, 0xe9, 0xbb, 0x04, 0x66, 0x17, 0x43, 0x10, 0x34, 0x00, 0x67, 0xee, 0xd7, 0xf1, 0x30, 0x04, 0xb2, 0x15, 0x74, 0x1b, 0x7c, 0xee, 0x4b, 0xd3, 0x89, 0xf1, 0x5a, 0x17, 0xed, 0x1b, 0x60, 0x10, 0xec, 0xf6, 0x26, 0xe3, 0xaf, 0xf2, 0x9f, 0x06, 0xae, 0x11, 0xb8, 0x01, 0x1a, 0xf8, 0x6b, 0xfc, 0xd8, 0x11, 0xe5, 0x1c, 0x53, 0xea, 0x3f, 0xd5, 0x07, 0xf2, 0x5d, 0x18, 0x4b, 0x18, 0x5b, 0x02, 0xb9, 0xf7, 0x3e, 0xfb, 0x01, 0x01, 0x3b, 0x02, 0x03, 0x02, 0xe8, 0x01, 0x9e, 0x00, 0xfb, 0xfc, 0x88, 0xfb, 0xf7, 0xfe, 0x32, 0x04, 0xd2, 0x05, 0xc1, 0x01, 0x4c, 0xf4, 0xe1, 0xf2, 0x6a, 0x01, 0x64, 0x0a, 0x99, 0x08, 0xad, 0xff, 0x31, 0xfa, 0x0f, 0xf5, 0x84, 0xff, 0x39, 0x08, 0x70, 0x16, 0xb6, 0x0f, 0x96, 0xe3, 0xef, 0xdb, 0xb0, 0xff, 0x22, 0x1c, 0xe3, 0x1e, 0x33, 0x01, 0xd8, 0xd8, 0x9b, 0xea, 0xac, 0x17, 0x42, 0x1f, 0x2a, 0xfa, 0x93, 0xe2, 0x47, 0xf4, 0xe5, 0x0e, 0xfe, 0x15, 0x49, 0x09, 0xca, 0xe9, 0x07, 0xe7, 0x5a, 0x06, 0x83, 0x21, 0x4f, 0x0d, 0x6d, 0xe8, 0xeb, 0xe8, 0x06, 0xfb, 0xde, 0x0c, 0x38, 0x0f, 0x1f, 0x0e, 0x67, 0x00, 0x7b, 0xe3, 0x22, 0xed, 0xa4, 0x0c, 0xbc, 0x22, 0x5d, 0x0c, 0x15, 0xe5, 0x3c, 0xe4, 0x6a, 0xf9, 0x0b, 0x13, 0x53, 0x11, 0x10, 0x16, 0x09, 0xfe, 0xcf, 0xd6, 0x7d, 0xe8, 0xac, 0x13, 0xd0, 0x18, 0xbb, 0x17, 0x89, 0x03, 0xd7, 0xd9, 0x23, 0xe0, 0x24, 0x05, 0xf4, 0x1b, 0x62, 0x0f, 0xac, 0x06, 0xfc, 0x05, 0xa1, 0xea, 0x23, 0xe1, 0x87, 0xfe, 0x6d, 0x1c, 0xa5, 0x1d, 0x36, 0xf6, 0xab, 0xe0, 0xb2, 0xed, 0xa6, 0x0a, 0x1b, 0x15, 0xa1, 0x08, 0xac, 0x06, 0x1f, 0x03, 0x32, 0xea, 0xa4, 0xe7, 0x3e, 0x04, 0xaa, 0x13, 0xde, 0x0e, 0xb8, 0x16, 0x69, 0xf3, 0x57, 0xd8, 0xaf, 0xec, 0xd0, 0x09, 0xbb, 0x17, 0x27, 0x0b, 0x65, 0xfc, 0x13, 0xfe, 0x6f, 0x02, 0xd1, 0xf8, 0x61, 0xf9, 0x37, 0x04, 0xd0, 0x04, 0x44, 0x0c, 0x3f, 0x20, 0xb4, 0xe5, 0x24, 0xc1, 0x39, 0xf9, 0x5d, 0x27, 0x22, 0x1b, 0xd3, 0xfc, 0x19, 0xf4, 0x31, 0xfb, 0xe5, 0x02, 0x06, 0x0c, 0xbe, 0x0a, 0x5a, 0xed, 0x46, 0xe4, 0x31, 0x00, 0x1f, 0x16, 0xdf, 0x13, 0x20, 0x0b, 0xf2, 0xed, 0x1f, 0xd9, 0x91, 0xf9, 0xed, 0x1e, 0xf6, 0x24, 0xb5, 0xf8, 0x4a, 0xde, 0xa2, 0xef, 0x1a, 0x06, 0x59, 0x0b, 0xb7, 0x05, 0xc5, 0x02, 0x5a, 0x05, 0x15, 0x09, 0xc9, 0xfc, 0x78, 0xe9, 0xc2, 0xf0, 0xf0, 0x0a, 0xf5, 0x11, 0x39, 0x0a, 0x08, 0x10, 0xa9, 0xf5, 0xc2, 0xdb, 0xdc, 0xf0, 0xc9, 0x0b, 0x82, 0x15, 0x25, 0x08, 0x94, 0xf4, 0xa9, 0xf6, 0xcf, 0x05, 0xb6, 0x1d, 0x66, 0x05, 0x64, 0xdb, 0xe3, 0xe6, 0xda, 0x0c, 0xac, 0x1c, 0x5f, 0x05, 0xe0, 0xf3, 0x61, 0xf4, 0xb6, 0xff, 0x8b, 0x04, 0xcf, 0xff, 0xc9, 0xfb, 0xbe, 0x08, 0x9f, 0x16, 0x1d, 0xfa, 0x45, 0xe2, 0xbe, 0xef, 0x1f, 0x0d, 0x48, 0x14, 0x04, 0x0b, 0xd5, 0x08, 0xc7, 0xf7, 0xe0, 0xe1, 0xb9, 0xf0, 0xda, 0x0e, 0x52, 0x1b, 0x17, 0x0a, 0x52, 0xee, 0xbc, 0xed, 0xd5, 0xfe, 0xb0, 0x09, 0x1a, 0x08, 0xc1, 0xfa, 0x1b, 0xf5, 0x65, 0x02, 0x56, 0x0a, 0x38, 0x05, 0x25, 0xfe, 0xdf, 0xfc, 0x35, 0xff, 0xa4, 0xff, 0xe7, 0xff, 0xfc, 0x01, 0x6e, 0x0c, 0xdc, 0x19, 0x1e, 0xed, 0x52, 0xcb, 0x9c, 0xed, 0xdc, 0x1a, 0x6d, 0x1f, 0x40, 0x09, 0x8c, 0x05, 0x25, 0xfa, 0x61, 0xe0, 0x1d, 0xed, 0xd7, 0x0f, 0x29, 0x1b, 0xff, 0x1a, 0xb8, 0xf2, 0x95, 0xd9, 0x24, 0xec, 0x48, 0x0e, 0xa3, 0x16, 0x12, 0x11, 0x92, 0x0c, 0x3c, 0xea, 0x4a, 0xdd, 0x41, 0xf7, 0xda, 0x15, 0xc6, 0x14, 0x9b, 0x00, 0xd3, 0x05, 0x2f, 0x00, 0xff, 0xe4, 0xeb, 0xf1, 0x4c, 0x10, 0x68, 0x0e, 0x1a, 0x13, 0x3f, 0x11, 0xfa, 0xd6, 0xd0, 0xd0, 0x74, 0x09, 0x96, 0x23, 0xfd, 0x19, 0x4f, 0x0f, 0x57, 0xde, 0xad, 0xd4, 0xd1, 0x03, 0xeb, 0x1f, 0x20, 0x0e, 0x3c, 0x05, 0xaf, 0x10, 0x05, 0xe3, 0xb4, 0xd4, 0xe7, 0x02, 0xeb, 0x1f, 0xbe, 0x11, 0x97, 0x06, 0xa8, 0x01, 0x31, 0xe5, 0x03, 0xe5, 0x39, 0x08, 0x98, 0x18, 0xf2, 0x14, 0x94, 0x07, 0xbf, 0xe7, 0x24, 0xe0, 0x8e, 0xfa, 0x71, 0x11, 0xe1, 0x17, 0x44, 0x14, 0x2c, 0xf3, 0x76, 0xe1, 0xc0, 0xf2, 0xbf, 0x07, 0x9a, 0x16, 0x3c, 0x14, 0x53, 0xf6, 0x38, 0xe6, 0xd1, 0xf0, 0x62, 0x09, 0x92, 0x12, 0x0d, 0x08, 0xba, 0x06, 0x31, 0xfa, 0x7e, 0xe6, 0x6c, 0xfb, 0x09, 0x0e, 0xb5, 0x1c, 0x4e, 0x11, 0x8a, 0xdc, 0xc0, 0xd5, 0xce, 0xff, 0xe9, 0x1c, 0x39, 0x1b, 0x2c, 0x0c, 0xf8, 0xe9, 0x61, 0xe5, 0xe9, 0xf5, 0xfd, 0x0a, 0x7e, 0x11, 0x9b, 0x06, 0xc9, 0xfb, 0x1a, 0x09, 0x2a, 0x0b, 0x5f, 0xdf, 0x54, 0xeb, 0xb7, 0x0d, 0x6a, 0x1f, 0x82, 0x1f, 0x2b, 0xdf, 0x72, 0xc9, 0xdc, 0xfe, 0xf3, 0x23, 0x15, 0x14, 0x36, 0xff, 0x78, 0x01, 0xf3, 0xf2, 0x21, 0xeb, 0xca, 0x01, 0x5f, 0x0f, 0xc7, 0x08, 0x39, 0xfd, 0xbe, 0xfe, 0xde, 0x05, 0x42, 0x01, 0x6b, 0xf2, 0x6d, 0xfc, 0xcf, 0x15, 0x41, 0xfb, 0x31, 0xe5, 0x17, 0xf3, 0xf8, 0x0b, 0x5f, 0x14, 0xfe, 0x0d, 0x2f, 0x08, 0xe4, 0xec, 0xcc, 0xe0, 0x61, 0xfc, 0x5f, 0x17, 0xec, 0x10, 0xd1, 0x0b, 0xc5, 0x02, 0x12, 0xe5, 0xd5, 0xe8, 0x7e, 0x01, 0x8f, 0x0f, 0x60, 0x10, 0x63, 0x05, 0xa1, 0xf4, 0xa9, 0xf4, 0x46, 0xf9, 0xbf, 0xff, 0xfa, 0x09, 0x7a, 0x08, 0x12, 0x05, 0xb7, 0x04, 0x02, 0xf5, 0xbd, 0xef, 0x36, 0x01, 0xdc, 0x0b, 0x9a, 0x09, 0x70, 0x07, 0xf0, 0xfb, 0x18, 0xec, 0xd8, 0xf3, 0xe1, 0x08, 0xe8, 0x11, 0x40, 0x0f, 0x8b, 0xfe, 0xfe, 0xe5, 0x2a, 0xec, 0x6b, 0x05, 0x21, 0x11, 0x77, 0x07, 0xb9, 0xf7, 0xb5, 0xfd, 0x20, 0x12, 0x7b, 0x02, 0x11, 0xef, 0xff, 0xf2, 0x61, 0xfb, 0x1f, 0x09, 0x6f, 0x0b, 0xe1, 0x03, 0xc5, 0xfc, 0xd3, 0x06, 0x5e, 0x19, 0x90, 0xea, 0x64, 0xcf, 0x36, 0xff, 0x09, 0x20, 0x51, 0x14, 0x7c, 0x08, 0x5f, 0xfd, 0x57, 0xe2, 0x00, 0xe9, 0x5a, 0x0b, 0x7f, 0x18, 0xbd, 0x14, 0x4f, 0x02, 0x1f, 0xe3, 0x1a, 0xe7, 0x65, 0x03, 0xa9, 0x14, 0x07, 0x0f, 0xad, 0xfc, 0x28, 0xf4, 0x84, 0xf9, 0x56, 0xff, 0x38, 0xff, 0x24, 0x04, 0xf7, 0x06, 0xa1, 0x08, 0xc5, 0x11, 0x7b, 0xf5, 0x41, 0xe1, 0x41, 0xf3, 0x4d, 0x09, 0xa2, 0x10, 0x21, 0x0e, 0xbd, 0x02, 0x13, 0xf1, 0x06, 0xf3, 0x57, 0xff, 0xb7, 0x07, 0xe7, 0x09, 0xa7, 0x02, 0x6e, 0xf3, 0x83, 0xf3, 0x76, 0x07, 0x74, 0x1e, 0x56, 0x04, 0xea, 0xe3, 0xfd, 0xe6, 0x29, 0x03, 0x52, 0x16, 0x2d, 0x0b, 0xdf, 0x01, 0x0f, 0x06, 0x33, 0xf5, 0x2e, 0xe8, 0xe1, 0xfd, 0x3e, 0x10, 0xf6, 0x0e, 0x81, 0x0b, 0xf9, 0xfb, 0xbc, 0xed, 0x00, 0xf0, 0x64, 0xfb, 0xbb, 0x07, 0x10, 0x07, 0xaf, 0x03, 0x7f, 0x05, 0xbd, 0x08, 0x7d, 0xf9, 0x37, 0xeb, 0x60, 0x0b, 0x79, 0x16, 0x63, 0xf5, 0x08, 0xe9, 0xe4, 0xf4, 0x41, 0x0c, 0x91, 0x0f, 0x6b, 0x04, 0x02, 0xff, 0xf8, 0x0f, 0x2f, 0x03, 0x99, 0xde, 0x7d, 0xe7, 0x68, 0x09, 0xbf, 0x1b, 0x06, 0x13, 0x86, 0xf6, 0x46, 0xea, 0xf1, 0xf6, 0xcc, 0x07, 0xe9, 0x0c, 0xbd, 0x02, 0x54, 0xf7, 0xc9, 0xf2, 0x9f, 0x03, 0xe9, 0x09, 0x8d, 0x11, 0xcc, 0x12, 0x4a, 0xe7, 0xf5, 0xd8, 0xda, 0xf9, 0xe2, 0x19, 0xbf, 0x13, 0x9b, 0x06, 0xa2, 0x06, 0xee, 0xf1, 0x35, 0xe0, 0x19, 0xf9, 0xe6, 0x14, 0xd3, 0x19, 0x5d, 0x0b, 0x01, 0xeb, 0xad, 0xe5, 0xb1, 0xfb, 0xfd, 0x0d, 0x44, 0x11, 0x71, 0x03, 0x44, 0xf6, 0xa4, 0xf6, 0xfc, 0xff, 0xb9, 0x02, 0xd0, 0xfe, 0x0d, 0xfe, 0x7e, 0x0f, 0x61, 0x0d, 0xe4, 0xef, 0xba, 0xe9, 0x63, 0xf7, 0xd7, 0x0f, 0xa0, 0x0d, 0xb7, 0x0f, 0xd9, 0x0c, 0x8f, 0xdd, 0xd4, 0xdc, 0xe7, 0x0a, 0x49, 0x1c, 0x56, 0x12, 0x5c, 0x0d, 0xa1, 0xea, 0x89, 0xd7, 0xaa, 0xf8, 0xf1, 0x18, 0xe3, 0x18, 0xde, 0x0e, 0x11, 0xf4, 0xbc, 0xe1, 0xa9, 0xf2, 0xa6, 0x0b, 0xcd, 0x16, 0x62, 0x06, 0x44, 0xf5, 0xeb, 0xf4, 0xa3, 0xfc, 0x2c, 0xff, 0x5b, 0x04, 0x67, 0x07, 0xb9, 0x08, 0x64, 0x10, 0x91, 0xf5, 0x41, 0xe4, 0xc9, 0xf4, 0x27, 0x08, 0x14, 0x0c, 0xc2, 0x04, 0x7d, 0xff, 0x8e, 0x0e, 0x1f, 0x0a, 0x3d, 0xe8, 0xef, 0xe8, 0x49, 0xfd, 0x80, 0x0f, 0xb9, 0x0e, 0x79, 0x00, 0x28, 0xf8, 0xdc, 0x04, 0x6f, 0x11, 0x04, 0xf7, 0xa4, 0xe7, 0xbe, 0xf7, 0x77, 0x06, 0x51, 0x08, 0x87, 0x08, 0xcc, 0x0b, 0xf6, 0xfe, 0xcb, 0xeb, 0x4b, 0xf2, 0x17, 0x09, 0x39, 0x12, 0x1a, 0x0f, 0x04, 0xfb, 0x16, 0xe8, 0xf2, 0xf2, 0xcb, 0x06, 0x2d, 0x0e, 0x7b, 0x06, 0x59, 0xfc, 0x80, 0xf9, 0x43, 0xfd, 0xcb, 0x02, 0xbd, 0x02, 0xe6, 0x00, 0x0b, 0xfc, 0x80, 0xf6, 0x2c, 0x00, 0x7f, 0x0a, 0x1e, 0x06, 0x07, 0x05, 0x8e, 0x08, 0x53, 0xef, 0x05, 0xea, 0x93, 0x04, 0x40, 0x10, 0xa9, 0x09, 0xcb, 0x06, 0xe5, 0xfa, 0x41, 0xe9, 0xf9, 0xf5, 0x17, 0x0b, 0x3a, 0x11, 0xdf, 0x0c, 0x58, 0x07, 0xaf, 0xec, 0x8b, 0xdc, 0x77, 0xf4, 0x4c, 0x17, 0x2c, 0x15, 0xd6, 0x0e, 0xd6, 0x0b, 0xda, 0xe4, 0x6b, 0xdd, 0xe9, 0xfc, 0x06, 0x1a, 0x5e, 0x13, 0xc5, 0xfc, 0x5f, 0xf1, 0xe5, 0xfd, 0x42, 0x05, 0x23, 0x14, 0x65, 0x17, 0xf5, 0xde, 0x53, 0xcf, 0x5a, 0xfe, 0x99, 0x21, 0x62, 0x1a, 0xa4, 0x0c, 0x81, 0xf0, 0xb4, 0xe0, 0x1c, 0xf4, 0x4a, 0x0c, 0xf2, 0x14, 0xcd, 0x0e, 0x99, 0xf8, 0xfa, 0xec, 0x4a, 0xf6, 0x3b, 0x00, 0xfb, 0x05, 0x59, 0x09, 0xc3, 0x02, 0xcf, 0x0b, 0x7d, 0x12, 0x48, 0xe5, 0xce, 0xd8, 0xd8, 0xff, 0x5e, 0x1c, 0x30, 0x13, 0x3c, 0x0b, 0x7b, 0xfd, 0x60, 0xe0, 0x24, 0xe9, 0xcc, 0x08, 0x86, 0x21, 0xef, 0x0e, 0xbc, 0xed, 0x6a, 0xe5, 0x7c, 0xf8, 0x0f, 0x10, 0x09, 0x11, 0xc2, 0xff, 0x00, 0x11, 0x6b, 0x05, 0xd5, 0xd1, 0xdd, 0xe7, 0x9b, 0x18, 0x46, 0x18, 0xcd, 0x14, 0xc9, 0x08, 0x93, 0xd2, 0xa3, 0xdc, 0x8b, 0x10, 0xe1, 0x1f, 0xba, 0x08, 0x29, 0xf9, 0xc3, 0xfc, 0x95, 0xf9, 0x81, 0xfb, 0x37, 0x03, 0x2f, 0x05, 0x29, 0x02, 0x0f, 0x02, 0x3d, 0xfe, 0x4c, 0xf8, 0x91, 0xfd, 0x8f, 0x03, 0xfd, 0x03, 0x10, 0x06, 0x6a, 0x14, 0xd9, 0xf7, 0xe8, 0xd3, 0x3c, 0xf2, 0x16, 0x19, 0xf2, 0x15, 0x9a, 0x09, 0x49, 0x11, 0xe1, 0xdd, 0xc7, 0xd5, 0xf7, 0x09, 0x71, 0x2b, 0x99, 0x20, 0x21, 0xe4, 0xa0, 0xd3, 0xe3, 0xf3, 0x33, 0x19, 0x0f, 0x17, 0x2c, 0x06, 0xb4, 0x08, 0x15, 0xf8, 0x40, 0xdf, 0xc0, 0xef, 0x25, 0x12, 0x0a, 0x14, 0xdc, 0x13, 0x78, 0x07, 0x0a, 0xe0, 0x32, 0xe1, 0xab, 0xff, 0x2f, 0x18, 0x5f, 0x11, 0x40, 0x10, 0x6d, 0xfa, 0xab, 0xe1, 0x08, 0xef, 0x14, 0x05, 0x1f, 0x10, 0xb0, 0x08, 0x13, 0x00, 0xe7, 0xfe, 0x8b, 0x02, 0x49, 0xfe, 0xab, 0xfd, 0x6d, 0x0e, 0x73, 0xfd, 0xc8, 0xe3, 0x11, 0xf1, 0xbd, 0x0b, 0x02, 0x17, 0x10, 0x16, 0xe9, 0xf7, 0xc2, 0xe3, 0x01, 0xee, 0xab, 0x05, 0xf0, 0x13, 0x45, 0x09, 0xbb, 0xfe, 0x36, 0x01, 0x81, 0xfa, 0x11, 0xf5, 0xf8, 0xff, 0xc3, 0x07, 0xc7, 0x05, 0x76, 0x05, 0x32, 0xff, 0x30, 0xf2, 0xa9, 0xf5, 0x97, 0x05, 0x8d, 0x09, 0x34, 0x0d, 0x0b, 0x1c, 0x18, 0xeb, 0x77, 0xc7, 0x59, 0xf1, 0x50, 0x21, 0xb4, 0x1c, 0x7d, 0x13, 0x7b, 0xfd, 0x98, 0xdb, 0x8d, 0xe6, 0x98, 0x06, 0x60, 0x19, 0x14, 0x0d, 0xf5, 0x09, 0x72, 0x01, 0x25, 0xe8, 0x9b, 0xe7, 0xb9, 0xfd, 0x1c, 0x13, 0x45, 0x11, 0x4e, 0x11, 0xd6, 0xfa, 0x61, 0xe2, 0x44, 0xed, 0x48, 0x07, 0xc8, 0x13, 0xab, 0x11, 0x84, 0x01, 0xd7, 0xe6, 0xec, 0xed, 0x84, 0x13, 0xcc, 0x1b, 0xd1, 0xf6, 0x4c, 0xe2, 0x0b, 0xf5, 0xed, 0x12, 0xd1, 0x17, 0x7f, 0x04, 0x10, 0xee, 0x00, 0xec, 0xe1, 0xfd, 0xaa, 0x0c, 0xf3, 0x10, 0xb6, 0x15, 0x67, 0xf2, 0x84, 0xdd, 0xa9, 0xf0, 0x62, 0x0c, 0xc9, 0x14, 0xf0, 0x0e, 0x83, 0x07, 0xbc, 0xee, 0x12, 0xe9, 0x2d, 0xfb, 0x84, 0x0b, 0x48, 0x0a, 0xbd, 0xff, 0xd4, 0x05, 0xbc, 0x0f, 0x03, 0xf5, 0x25, 0xe8, 0x04, 0xf6, 0xb4, 0x04, 0x2a, 0x0e, 0xbb, 0x07, 0x71, 0x02, 0x79, 0xfe, 0xad, 0xf9, 0xca, 0xfa, 0x87, 0x0d, 0xca, 0x1d, 0xbb, 0xec, 0x3b, 0xd0, 0xc4, 0xf3, 0x75, 0x1c, 0x9e, 0x19, 0xa1, 0x12, 0xb2, 0xfa, 0x73, 0xdd, 0x2a, 0xe9, 0x86, 0x07, 0x50, 0x18, 0xfa, 0x0a, 0x7c, 0x11, 0x77, 0xfc, 0x17, 0xd8, 0x83, 0xea, 0xe0, 0x11, 0x38, 0x19, 0xd7, 0x05, 0xfc, 0x01, 0x00, 0xff, 0x22, 0xeb, 0x50, 0xf3, 0x0a, 0x09, 0x2c, 0x0f, 0x15, 0x02, 0x37, 0x0b, 0xe3, 0x14, 0xf5, 0xe0, 0xeb, 0xd6, 0x19, 0x03, 0x39, 0x1b, 0xb9, 0x0e, 0xb2, 0x00, 0xa1, 0xf6, 0xf1, 0xf4, 0xe6, 0xf7, 0x60, 0x05, 0x46, 0x0b, 0x65, 0x0d, 0x3f, 0x13, 0x16, 0xed, 0xf5, 0xd9, 0x91, 0xf6, 0x63, 0x17, 0xc0, 0x14, 0xd2, 0x0a, 0x8e, 0xf9, 0x07, 0xe5, 0xb7, 0xf6, 0x23, 0x11, 0x7a, 0x24, 0x9d, 0xfd, 0x7e, 0xd7, 0x9e, 0xe5, 0x51, 0x0b, 0x8f, 0x1b, 0xda, 0x09, 0xad, 0x00, 0x1b, 0x05, 0xb3, 0xf2, 0x2c, 0xe8, 0x2b, 0x00, 0x00, 0x14, 0xc2, 0x21, 0x97, 0xf7, 0x75, 0xce, 0x4f, 0xf1, 0x5e, 0x1c, 0xa8, 0x25, 0x37, 0x04, 0x3c, 0xdd, 0x01, 0xe5, 0x1f, 0x08, 0xc8, 0x18, 0xef, 0x0f, 0x11, 0xf6, 0xea, 0xec, 0xcb, 0x00, 0x2f, 0x19, 0xb3, 0x06, 0xf5, 0xe7, 0xc8, 0xed, 0xdc, 0x01, 0x35, 0x0d, 0xe7, 0x0d, 0xb8, 0x04, 0x09, 0xf5, 0x5d, 0xed, 0xd7, 0xfd, 0xbe, 0x0b, 0x8d, 0x18, 0xee, 0x0e, 0x5a, 0xe6, 0x61, 0xe0, 0x9d, 0xf9, 0x3e, 0x13, 0xf6, 0x1a, 0xd4, 0x0f, 0x01, 0xe9, 0x66, 0xdf, 0xe1, 0xfb, 0x29, 0x16, 0x1f, 0x10, 0xc7, 0x0f, 0x0d, 0x00, 0x5a, 0xe0, 0xc1, 0xe6, 0x4b, 0x04, 0x92, 0x17, 0x96, 0x0c, 0x29, 0x02, 0x1b, 0x06, 0xac, 0xf6, 0x2a, 0xe7, 0x60, 0xfb, 0x7b, 0x1e, 0x4d, 0x10, 0x94, 0xe8, 0x66, 0xe5, 0xf9, 0xff, 0xcd, 0x14, 0x82, 0x10, 0xac, 0x0b, 0x81, 0xf7, 0x22, 0xe5, 0xea, 0xf2, 0x92, 0x09, 0x54, 0x14, 0x03, 0x06, 0xda, 0xf0, 0x51, 0xf7, 0xda, 0x10, 0x62, 0x09, 0xd1, 0xf3, 0x61, 0xef, 0xdd, 0xf9, 0xda, 0x0b, 0xfc, 0x0c, 0x97, 0x03, 0x4d, 0xfc, 0x70, 0x01, 0x8c, 0x0f, 0xc2, 0xf8, 0xd2, 0xe3, 0x7e, 0xf5, 0x84, 0x0b, 0x0b, 0x10, 0xab, 0x04, 0x8c, 0xf6, 0xd9, 0xf4, 0x21, 0x03, 0xed, 0x0b, 0x4f, 0x0d, 0x4b, 0x07, 0x09, 0xf0, 0x92, 0xe9, 0xf7, 0xfd, 0x97, 0x0a, 0x82, 0x0a, 0x43, 0xfd, 0x8f, 0xf4, 0xbc, 0xff, 0x8f, 0x09, 0x9e, 0x06, 0x5a, 0x06, 0xc7, 0x01, 0xa4, 0xf6, 0x8d, 0xf8, 0xad, 0xfa, 0xb3, 0xfc, 0xe7, 0x03, 0x89, 0x09, 0x7f, 0x16, 0x93, 0xfd, 0x95, 0xdf, 0xda, 0xea, 0x20, 0x09, 0x15, 0x17, 0xb7, 0x0a, 0x92, 0x06, 0x29, 0x02, 0x31, 0xe4, 0xb6, 0xea, 0xc7, 0x0c, 0x31, 0x18, 0x7f, 0x1e, 0x47, 0xf3, 0xef, 0xd5, 0x08, 0xea, 0x40, 0x0f, 0x41, 0x1a, 0xd0, 0x07, 0xe5, 0xf8, 0xa1, 0x00, 0xd4, 0x09, 0xd0, 0xf1, 0xee, 0xee, 0xe2, 0x04, 0x46, 0x0d, 0xb9, 0x08, 0xe3, 0x06, 0x95, 0xf8, 0xde, 0xe9, 0x9d, 0xf9, 0x64, 0x0b, 0xd1, 0x0b, 0x0d, 0x02, 0xa2, 0x0d, 0x62, 0x0e, 0xa9, 0xdf, 0x8f, 0xdb, 0xba, 0x06, 0xa0, 0x19, 0xe2, 0x0c, 0x0d, 0xf9, 0x02, 0xf0, 0x9c, 0xff, 0xf1, 0x09, 0xba, 0x1a, 0x0d, 0x08, 0x69, 0xdd, 0x20, 0xe1, 0xef, 0x04, 0x4d, 0x1b, 0x0f, 0x0e, 0x6b, 0x12, 0x76, 0xf5, 0xcc, 0xd4, 0xc9, 0xf1, 0x25, 0x18, 0xaa, 0x15, 0xd3, 0x07, 0x7d, 0x10, 0x61, 0xe7, 0x32, 0xd5, 0xa1, 0x00, 0x84, 0x1d, 0xe9, 0x0f, 0xf9, 0x02, 0x3d, 0x10, 0x9f, 0xea, 0x3f, 0xd5, 0x0a, 0xfe, 0x09, 0x1d, 0x89, 0x13, 0x6c, 0x08, 0xfa, 0x01, 0x1f, 0xe6, 0x9c, 0xe3, 0x8f, 0x05, 0x3f, 0x19, 0xcc, 0x17, 0x3a, 0x00, 0xda, 0xe4, 0x8d, 0xec, 0x51, 0x03, 0x75, 0x10, 0x69, 0x0e, 0x36, 0xfe, 0x2f, 0xf4, 0x89, 0xf3, 0xed, 0xfd, 0x94, 0x0a, 0x9d, 0x17, 0x57, 0x08, 0xbd, 0xe7, 0xd2, 0xe9, 0x05, 0xfa, 0x5c, 0x0f, 0x88, 0x0d, 0x52, 0x0c, 0xd9, 0x0f, 0x01, 0xe7, 0x3e, 0xdb, 0xed, 0xff, 0x6c, 0x1b, 0x97, 0x0d, 0x54, 0x11, 0x5b, 0x02, 0xe1, 0xd4, 0xe3, 0xe4, 0x79, 0x10, 0x9f, 0x1d, 0xcf, 0x05, 0x45, 0x0e, 0xff, 0xfe, 0x96, 0xd2, 0x88, 0xed, 0x7c, 0x17, 0x86, 0x18, 0x8a, 0x01, 0xb2, 0xf7, 0x2f, 0x00, 0x66, 0xfe, 0x20, 0xf9, 0xc2, 0xff, 0x46, 0x05, 0xef, 0x05, 0xa8, 0x15, 0x70, 0x01, 0xe9, 0xce, 0xcd, 0xe9, 0xd2, 0x16, 0x82, 0x27, 0x1d, 0x18, 0xe8, 0xdf, 0xde, 0xd2, 0x09, 0xfc, 0x6d, 0x1d, 0xdf, 0x13, 0x01, 0x02, 0x57, 0x07, 0xd9, 0xfd, 0xe4, 0xe3, 0xa4, 0xea, 0x88, 0x07, 0x58, 0x16, 0x24, 0x0c, 0x98, 0x0f, 0x09, 0xf7, 0xea, 0xda, 0x58, 0xf2, 0x19, 0x1d, 0x80, 0x1e, 0x01, 0xf5, 0x6a, 0xe2, 0xaa, 0xf2, 0xe7, 0x0e, 0x41, 0x12, 0x98, 0x0c, 0xc3, 0x05, 0xb4, 0xec, 0xbb, 0xe5, 0x45, 0xfd, 0xea, 0x12, 0x36, 0x14, 0x15, 0xff, 0xf5, 0xef, 0x18, 0xf5, 0x59, 0xfd, 0x6f, 0x05, 0x27, 0x0b, 0xdc, 0x0e, 0xa5, 0xfa, 0x0c, 0xe7, 0x5b, 0xfd, 0x65, 0x0c, 0xde, 0x1e, 0xa8, 0x0a, 0xd4, 0xd9, 0x7f, 0xdf, 0x0d, 0x00, 0x68, 0x19, 0x9b, 0x10, 0x83, 0x06, 0x84, 0x08, 0xa3, 0xf1, 0xc8, 0xe1, 0x50, 0xf9, 0x9b, 0x12, 0x33, 0x17, 0x57, 0x0b, 0x8b, 0xef, 0x85, 0xe8, 0x98, 0xfa, 0xb8, 0x0a, 0x26, 0x0f, 0x73, 0x05, 0xb1, 0xf7, 0xf0, 0xf6, 0x9d, 0xf9, 0xad, 0xff, 0x18, 0x08, 0x34, 0x15, 0x06, 0x08, 0x77, 0xe6, 0xdc, 0xe5, 0x8f, 0x03, 0x68, 0x15, 0x8a, 0x0b, 0xe1, 0x02, 0x5a, 0x08, 0x11, 0xfb, 0xd8, 0xe5, 0xfe, 0xed, 0x9a, 0x04, 0x3a, 0x13, 0x2a, 0x0b, 0xfa, 0xfe, 0x5f, 0x02, 0xca, 0x00, 0x43, 0xf1, 0x2b, 0xf7, 0x1c, 0x07, 0xa5, 0x0b, 0x8b, 0x07, 0x94, 0xfa, 0x7e, 0xef, 0x23, 0xff, 0xfe, 0x06, 0x55, 0x18, 0xd3, 0x18, 0xd3, 0xd9, 0xe1, 0xce, 0x42, 0xfe, 0xfa, 0x22, 0x5b, 0x17, 0x97, 0x0a, 0xbf, 0xfc, 0xfb, 0xde, 0x1b, 0xea, 0x6f, 0x0f, 0x0a, 0x27, 0xf7, 0x08, 0x02, 0xdd, 0x58, 0xe4, 0x01, 0x0c, 0x1a, 0x18, 0x75, 0x08, 0x35, 0xfd, 0x75, 0xfc, 0x49, 0xf9, 0x42, 0xfb, 0x16, 0x00, 0xdf, 0x0d, 0x17, 0x0f, 0xd1, 0xec, 0xd6, 0xe4, 0xc6, 0xf8, 0x35, 0x11, 0xed, 0x11, 0x27, 0x02, 0x2a, 0xfe, 0x59, 0x03, 0x52, 0xf7, 0x26, 0xf4, 0xa5, 0x02, 0x4f, 0x09, 0x9b, 0x06, 0xe4, 0x05, 0xe8, 0xfb, 0x0a, 0xef, 0x1d, 0xf8, 0xb9, 0x08, 0xcd, 0x0d, 0xae, 0x0b, 0x65, 0x00, 0x18, 0xee, 0x84, 0xec, 0xd9, 0xfa, 0x34, 0x0a, 0x49, 0x0f, 0x14, 0x1b, 0x9b, 0xfd, 0x96, 0xdb, 0x1f, 0xe8, 0xcc, 0x09, 0x3f, 0x1a, 0x18, 0x08, 0x0f, 0x0f, 0x59, 0x00, 0x52, 0xd9, 0xf1, 0xe8, 0x68, 0x10, 0x2b, 0x19, 0x4e, 0x05, 0xbe, 0xf9, 0x43, 0xfd, 0xdd, 0xfd, 0x5f, 0xfc, 0x73, 0x00, 0x21, 0x03, 0xf4, 0x01, 0x80, 0x00, 0x22, 0x09, 0xa2, 0x08, 0x6d, 0xee, 0x9b, 0xf0, 0xf0, 0x0d, 0xe9, 0x03, 0x3c, 0xf2, 0x98, 0xf4, 0x5b, 0x03, 0x3f, 0x0e, 0xe8, 0x07, 0xd6, 0xfe, 0xaa, 0xff, 0xa8, 0x0b, 0x6c, 0x05, 0x0e, 0xea, 0x21, 0xe9, 0x84, 0x04, 0x8a, 0x18, 0x06, 0x10, 0x9e, 0xf3, 0xc5, 0xec, 0x52, 0xfa, 0x9f, 0x03, 0x02, 0x07, 0x4a, 0x08, 0x5b, 0x06, 0x46, 0xfa, 0x8a, 0xf7, 0x70, 0x01, 0x7f, 0x0b, 0x04, 0x13, 0x14, 0xf3, 0x8c, 0xe1, 0x9b, 0xf6, 0x3f, 0x0b, 0x1a, 0x0e, 0x57, 0x08, 0x37, 0x06, 0xac, 0xf8, 0xae, 0xf2, 0x60, 0xfb, 0x86, 0x04, 0x89, 0x08, 0xbf, 0x04, 0x77, 0xfc, 0x3d, 0xfa, 0x4b, 0xfe, 0x45, 0x02, 0xe7, 0x01, 0xa1, 0xfd, 0xb1, 0xf8, 0xe2, 0x01, 0xe7, 0x06, 0x85, 0x12, 0x25, 0x0b, 0x12, 0xe6, 0x8e, 0xe2, 0xc6, 0xfe, 0x49, 0x17, 0xa3, 0x10, 0x7f, 0x00, 0x3c, 0xf4, 0x25, 0xf8, 0x9a, 0x00, 0x5e, 0x17, 0xd8, 0x0b, 0xb8, 0xe2, 0x54, 0xe2, 0x4d, 0x00, 0x56, 0x18, 0xc0, 0x0e, 0x09, 0xff, 0xc3, 0x01, 0xe4, 0xff, 0xe8, 0xf4, 0x16, 0xf7, 0x2f, 0xff, 0x78, 0x05, 0xbe, 0x04, 0xd3, 0x01, 0xa4, 0xff, 0x82, 0x05, 0x71, 0x0b, 0x17, 0xf7, 0xc7, 0xea, 0x43, 0xfc, 0x12, 0x14, 0xab, 0x12, 0x4b, 0xf1, 0x2e, 0xe8, 0x5a, 0xfb, 0x11, 0x0c, 0x3e, 0x0d, 0x77, 0x03, 0x75, 0xfa, 0x9e, 0xf9, 0x66, 0xfe, 0x6f, 0x02, 0xa1, 0x03, 0xc7, 0x01, 0x01, 0xfe, 0xe1, 0xf8, 0xbc, 0xfa, 0x35, 0x09, 0x7a, 0x15, 0x91, 0xfe, 0xa3, 0xea, 0x0c, 0xf2, 0xeb, 0xfd, 0xb7, 0x0c, 0x98, 0x09, 0x47, 0x0f, 0x31, 0x0c, 0x50, 0xe2, 0xda, 0xdf, 0xb3, 0x05, 0x4c, 0x1a, 0x9c, 0x0b, 0x4a, 0x10, 0xad, 0xfc, 0xe1, 0xd5, 0xc3, 0xeb, 0x35, 0x14, 0xa0, 0x18, 0xd3, 0x03, 0x9e, 0xf8, 0x64, 0x01, 0xbb, 0x04, 0xb8, 0xf7, 0xcf, 0xf0, 0xc7, 0x00, 0xef, 0x09, 0x3d, 0x14, 0xa1, 0x15, 0xfa, 0xe3, 0xe8, 0xd0, 0xdd, 0xfb, 0x56, 0x1e, 0x08, 0x1c, 0xbe, 0x10, 0x21, 0xec, 0x58, 0xdc, 0xe2, 0xf4, 0xe2, 0x10, 0x5d, 0x1a, 0x93, 0x14, 0xa2, 0xef, 0xe5, 0xdc, 0x82, 0xf4, 0x00, 0x13, 0x24, 0x13, 0xdd, 0x03, 0xae, 0x0f, 0x85, 0xfa, 0x2f, 0xd7, 0x74, 0xef, 0x9e, 0x13, 0x92, 0x1e, 0x25, 0x16, 0xe2, 0xea, 0x7e, 0xd8, 0xbb, 0xf6, 0x4a, 0x18, 0xea, 0x11, 0x80, 0x12, 0x27, 0x02, 0xcd, 0xdb, 0xb3, 0xe3, 0xbf, 0x09, 0x11, 0x1b, 0xc7, 0x09, 0x65, 0xfa, 0x9d, 0xfd, 0x75, 0xfd, 0xf8, 0xf9, 0xf2, 0xff, 0x1b, 0x05, 0xd5, 0x02, 0x7b, 0x02, 0x4a, 0xff, 0x3e, 0xf9, 0x09, 0xfb, 0xdf, 0x04, 0xea, 0x01, 0x09, 0x18, 0x41, 0x18, 0x2c, 0xcf, 0x5d, 0xce, 0xa5, 0x08, 0x0b, 0x27, 0xc4, 0x10, 0xd6, 0xfe, 0xae, 0x0e, 0x67, 0xf2, 0x3c, 0xda, 0x69, 0xf5, 0xbc, 0x16, 0x46, 0x15, 0x45, 0x01, 0x03, 0x02, 0x89, 0xfc, 0x02, 0xed, 0xab, 0xf7, 0xc0, 0x0b, 0xa6, 0x0b, 0xf2, 0x09, 0x05, 0xfc, 0x8e, 0xeb, 0xa4, 0xf6, 0x95, 0x18, 0xde, 0x21, 0x74, 0xe7, 0xb5, 0xd1, 0x4e, 0xf6, 0xc8, 0x1c, 0xf4, 0x16, 0x99, 0x08, 0xbc, 0x05, 0x73, 0xed, 0xab, 0xe0, 0x59, 0xfa, 0xcd, 0x14, 0x58, 0x14, 0xa2, 0x14, 0x53, 0xf5, 0xd8, 0xda, 0x34, 0xee, 0xe8, 0x0f, 0x9c, 0x17, 0xd3, 0x04, 0xc8, 0x00, 0x76, 0x01, 0xe7, 0xef, 0x4e, 0xf0, 0x87, 0x08, 0x1a, 0x0c, 0x5e, 0x14, 0x93, 0x10, 0xbd, 0xda, 0x03, 0xd6, 0xc7, 0x06, 0x7e, 0x20, 0x08, 0x10, 0x29, 0xfa, 0x86, 0xf7, 0xcd, 0x02, 0xe2, 0x07, 0x9c, 0xff, 0xd0, 0xf5, 0x6c, 0xf8, 0xac, 0xfe, 0x17, 0xff, 0xfa, 0xfe, 0xbe, 0x08, 0x09, 0x12, 0x0d, 0xfd, 0x03, 0xef, 0xef, 0xf6, 0xe4, 0xff, 0xc7, 0x02, 0xa3, 0x07, 0x73, 0x04, 0x10, 0x0a, 0x41, 0x12, 0x13, 0xe5, 0x13, 0xdc, 0x3b, 0x07, 0x3f, 0x1a, 0x22, 0x0c, 0x3f, 0x05, 0x99, 0xfc, 0x8f, 0xeb, 0xba, 0xf5, 0x6f, 0x05, 0x30, 0x08, 0xf7, 0x02, 0x0d, 0x01, 0xa5, 0x03, 0xf1, 0x03, 0x91, 0xfd, 0xa9, 0xf7, 0x29, 0xfa, 0xa0, 0xfe, 0x73, 0x03, 0xd8, 0x01, 0xa7, 0xfc, 0x25, 0x00, 0xd2, 0x10, 0x91, 0x09, 0x45, 0xec, 0x31, 0xeb, 0xd9, 0x03, 0xb6, 0x1a, 0x2f, 0x0b, 0xcc, 0xef, 0x2e, 0xee, 0x12, 0xf8, 0x68, 0x09, 0xd2, 0x0b, 0x65, 0x0a, 0x0d, 0x13, 0x8e, 0xf1, 0x9c, 0xe1, 0xf8, 0xf3, 0xa8, 0x08, 0x3b, 0x10, 0xc4, 0x07, 0xec, 0xff, 0x92, 0x04, 0x02, 0x00, 0xd2, 0xf1, 0x0e, 0xf4, 0x47, 0x0f, 0x3a, 0x1a, 0x32, 0xf3, 0x96, 0xe0, 0x5a, 0xf4, 0x9c, 0x11, 0x90, 0x13, 0x5b, 0x14, 0x25, 0xfb, 0xa5, 0xe0, 0x6e, 0xea, 0x58, 0x09, 0xac, 0x14, 0x06, 0x11, 0xe7, 0x0e, 0xf2, 0xea, 0x36, 0xdd, 0x40, 0xf8, 0x1f, 0x16, 0x61, 0x12, 0xce, 0xff, 0x65, 0xfd, 0xcc, 0xff, 0xb0, 0xf6, 0x72, 0xfa, 0x9e, 0x04, 0xd3, 0x06, 0xf1, 0x00, 0x1e, 0x06, 0x5c, 0x10, 0xb1, 0xef, 0x7c, 0xda, 0xa1, 0xff, 0xee, 0x16, 0xa8, 0x20, 0x5f, 0x0c, 0x35, 0xd8, 0xe4, 0xd9, 0x4c, 0x04, 0xfb, 0x1f, 0xdf, 0x0d, 0xb0, 0x0b, 0x99, 0x03, 0x1b, 0xdd, 0x57, 0xe5, 0xad, 0x0c, 0x8b, 0x19, 0x9e, 0x07, 0x86, 0xf9, 0xae, 0xfe, 0x62, 0x06, 0x93, 0xfc, 0xc8, 0x00, 0x4a, 0xff, 0x3d, 0xef, 0xa0, 0xf4, 0xc8, 0x06, 0x4a, 0x10, 0x3a, 0x0f, 0xed, 0xff, 0xb1, 0xed, 0x80, 0xf3, 0x27, 0x02, 0xe2, 0x0a, 0x1c, 0x08, 0x96, 0xfe, 0x95, 0xf9, 0xc4, 0xfb, 0x58, 0xfe, 0xb0, 0x06, 0xc7, 0x05, 0xd1, 0xfc, 0xd2, 0xf7, 0x8e, 0xf9, 0x8f, 0x03, 0x80, 0x09, 0xe1, 0x01, 0xd5, 0xfd, 0xc5, 0xfd, 0x1f, 0x16, 0x67, 0x0d, 0x81, 0xdc, 0x85, 0xde, 0xe1, 0x02, 0xb9, 0x1c, 0x9f, 0x1d, 0x5b, 0xfe, 0x88, 0xe1, 0x1d, 0xea, 0x8e, 0x07, 0xb4, 0x14, 0x38, 0x08, 0xfc, 0xfb, 0x7d, 0xfd, 0xaa, 0x06, 0xdf, 0x01, 0x0e, 0xf4, 0xea, 0xf4, 0x0b, 0x04, 0xf9, 0x0d, 0x01, 0x0c, 0xe9, 0xf6, 0x9d, 0xeb, 0x34, 0xfa, 0xc4, 0x08, 0x3c, 0x08, 0xd8, 0xfb, 0xff, 0xfd, 0x87, 0x05, 0x2b, 0x14, 0x2f, 0x06, 0x96, 0xe5, 0x2c, 0xe8, 0x6d, 0x02, 0x66, 0x13, 0xf9, 0x12, 0x94, 0x04, 0x91, 0xe8, 0x61, 0xeb, 0x51, 0x0e, 0x0d, 0x1d, 0xed, 0xfc, 0x56, 0xe9, 0xba, 0xed, 0xfb, 0x06, 0xad, 0x10, 0xda, 0x12, 0x28, 0x0a, 0x83, 0xde, 0x66, 0xe5, 0x75, 0x0e, 0xc3, 0x16, 0x99, 0x17, 0xd6, 0x00, 0x4d, 0xda, 0x9d, 0xe9, 0xc1, 0x0d, 0x6f, 0x14, 0x51, 0x02, 0x62, 0xf8, 0x9b, 0xfd, 0x54, 0x07, 0xc7, 0x04, 0xb1, 0xf9, 0x9c, 0xf4, 0xc9, 0xf9, 0xe3, 0x04, 0xff, 0x14, 0xd0, 0x0d, 0xa5, 0xee, 0x81, 0xe9, 0xac, 0xf6, 0x5a, 0x0d, 0x20, 0x0e, 0x8e, 0x08, 0x5d, 0x12, 0x00, 0xf2, 0x5e, 0xd9, 0xa3, 0xf4, 0x91, 0x16, 0xbe, 0x14, 0xe1, 0xff, 0xa6, 0xfa, 0xa2, 0xfe, 0x09, 0xfb, 0x2b, 0xfd, 0x37, 0x03, 0xc1, 0x03, 0x97, 0x00, 0x08, 0xff, 0xcd, 0x01, 0xcc, 0xff, 0xc4, 0xfa, 0x67, 0xfd, 0xa4, 0x06, 0x4c, 0x11, 0xaf, 0xfd, 0x0f, 0xe1, 0xf9, 0xf2, 0xda, 0x0e, 0x66, 0x11, 0xf3, 0x02, 0xa6, 0x0b, 0x77, 0x0c, 0x9b, 0xd9, 0xd3, 0xda, 0x45, 0x10, 0xc8, 0x1e, 0x69, 0x14, 0x66, 0x08, 0xc3, 0xe5, 0xef, 0xe2, 0xdc, 0xfb, 0xa7, 0x0f, 0x17, 0x0f, 0x0f, 0x02, 0xad, 0xfc, 0xde, 0x09, 0x4a, 0x06, 0xee, 0xe8, 0x5b, 0xef, 0xff, 0x10, 0xc4, 0x10, 0xb1, 0xf9, 0x08, 0xf4, 0x9d, 0xf9, 0xd3, 0x03, 0x90, 0x0e, 0x7a, 0x04, 0x74, 0xf6, 0x1c, 0xf3, 0x19, 0xfc, 0xe6, 0x09, 0x7f, 0x0a, 0x1c, 0x0a, 0xcd, 0x08, 0x08, 0xf1, 0x56, 0xe7, 0x91, 0xf7, 0xe7, 0x08, 0xd1, 0x0e, 0x37, 0x07, 0x07, 0x06, 0xa7, 0x06, 0xaf, 0xf5, 0x3d, 0xeb, 0xcd, 0xf9, 0x36, 0x09, 0xc9, 0x0b, 0x47, 0xff, 0x21, 0xf5, 0x9d, 0xfd, 0xf4, 0x08, 0x93, 0x05, 0x02, 0x09, 0xf1, 0x12, 0xf4, 0xe7, 0x68, 0xd7, 0x1d, 0x02, 0x1d, 0x1c, 0xdc, 0x11, 0x4f, 0x0a, 0x9d, 0xfb, 0xb3, 0xdf, 0x7a, 0xeb, 0x17, 0x0d, 0xce, 0x19, 0xce, 0x12, 0x91, 0xf7, 0xe8, 0xe5, 0x49, 0xf4, 0x48, 0x05, 0x7d, 0x0a, 0x2b, 0x05, 0xff, 0x0b, 0xdf, 0x0a, 0x0a, 0xec, 0x7e, 0xe4, 0x63, 0xfe, 0x58, 0x17, 0x1c, 0x1f, 0x57, 0xfc, 0xa9, 0xde, 0xd8, 0xe9, 0x0a, 0x09, 0x8c, 0x16, 0x1f, 0x08, 0x7f, 0x03, 0xef, 0x06, 0xc8, 0xed, 0x36, 0xe6, 0xa9, 0x03, 0xf1, 0x13, 0x1c, 0x10, 0x99, 0x0a, 0x11, 0xf5, 0x81, 0xe0, 0xc7, 0xf2, 0x3f, 0x10, 0xd3, 0x19, 0x23, 0x06, 0x53, 0xf0, 0xae, 0xf0, 0x6c, 0xf9, 0xde, 0x06, 0x4a, 0x0c, 0x37, 0x07, 0x56, 0x12, 0x72, 0xfa, 0x67, 0xdb, 0xaa, 0xee, 0x18, 0x12, 0x8a, 0x15, 0x18, 0x0d, 0xfc, 0x08, 0x6f, 0xea, 0x5c, 0xe2, 0xd5, 0xf8, 0x4e, 0x12, 0xbf, 0x11, 0xfb, 0x03, 0x57, 0x04, 0xac, 0x00, 0x55, 0xea, 0x89, 0xf0, 0x83, 0x06, 0x9f, 0x17, 0xc6, 0x19, 0x20, 0xee, 0x16, 0xda, 0x68, 0xf3, 0x14, 0x15, 0x31, 0x15, 0x41, 0x03, 0xc0, 0xf9, 0xf2, 0xf8, 0x23, 0xfd, 0x55, 0x02, 0xe9, 0x03, 0x99, 0x03, 0x07, 0x03, 0xc5, 0xfd, 0x3a, 0xf4, 0xc5, 0xf9, 0x27, 0x06, 0x17, 0x0f, 0xd8, 0x12, 0xd3, 0xee, 0x2c, 0xde, 0x8e, 0xfe, 0x12, 0x21, 0x8c, 0x10, 0x2e, 0xeb, 0x37, 0xeb, 0x79, 0xfe, 0x3d, 0x0b, 0xcd, 0x08, 0x48, 0x07, 0x34, 0x01, 0xc7, 0xf5, 0x1d, 0xf8, 0x8a, 0xfe, 0x5f, 0x00, 0xab, 0x02, 0xe8, 0x0a, 0x45, 0x13, 0x1c, 0xf7, 0xeb, 0xe6, 0x6f, 0xf0, 0x29, 0x08, 0x9b, 0x10, 0x43, 0x10, 0xee, 0x0d, 0x6e, 0xeb, 0xd1, 0xe1, 0x56, 0xf8, 0x0a, 0x13, 0x0d, 0x11, 0xa0, 0x07, 0xe8, 0xf8, 0x97, 0xf1, 0xae, 0xfa, 0x20, 0x18, 0x63, 0x13, 0xe2, 0xe5, 0x14, 0xe3, 0xa4, 0xf9, 0x4f, 0x11, 0x06, 0x11, 0xa9, 0x02, 0x76, 0xfe, 0x97, 0x04, 0xfe, 0xf8, 0x6c, 0xf1, 0xce, 0xff, 0x5c, 0x0a, 0xd1, 0x09, 0x07, 0x08, 0x47, 0xfc, 0x2d, 0xec, 0x4e, 0xf3, 0xac, 0x08, 0x5c, 0x12, 0x1f, 0x0f, 0x98, 0xf6, 0xcf, 0xe7, 0x12, 0xf5, 0xf7, 0x04, 0x8e, 0x0b, 0x62, 0x12, 0x1a, 0x09, 0x61, 0xef, 0x07, 0xeb, 0xd1, 0xf8, 0xe0, 0x0c, 0xa6, 0x0d, 0xbf, 0x02, 0xd1, 0xfd, 0xf9, 0x0a, 0x8f, 0x04, 0xb0, 0xe4, 0x9f, 0xea, 0xa5, 0x0b, 0x63, 0x16, 0x63, 0x11, 0x85, 0x02, 0xbd, 0xe6, 0x36, 0xe8, 0x4b, 0x02, 0x36, 0x14, 0xc2, 0x0f, 0x81, 0xfb, 0x4b, 0xf1, 0x41, 0xf3, 0x17, 0x0a, 0x2e, 0x17, 0xbd, 0xfe, 0xc8, 0xed, 0x73, 0xf0, 0x6d, 0x03, 0x87, 0x0e, 0x6a, 0x07, 0x5b, 0xfe, 0x34, 0x01, 0x17, 0x0c, 0xdc, 0x00, 0x3e, 0xe8, 0xc5, 0xec, 0x9c, 0x08, 0xc3, 0x13, 0xea, 0x05, 0x14, 0xf9, 0xa9, 0xf7, 0xd5, 0xfe, 0xfa, 0x04, 0xe3, 0x03, 0x7e, 0xfe, 0xad, 0xf9, 0x01, 0xf9, 0xee, 0x05, 0x1e, 0x06, 0x70, 0x0f, 0x80, 0x11, 0x3a, 0xe6, 0x96, 0xdb, 0xb5, 0xfd, 0x45, 0x1a, 0x30, 0x10, 0xa1, 0xfd, 0x73, 0xfc, 0x80, 0xfa, 0x65, 0xfa, 0x2d, 0x02, 0xda, 0x04, 0x5e, 0x04, 0xff, 0x0a, 0xee, 0xf9, 0x77, 0xe7, 0x15, 0xfb, 0x27, 0x0e, 0x0f, 0x0c, 0x2c, 0x09, 0x4b, 0x01, 0xde, 0xec, 0x5a, 0xf5, 0xa8, 0x0e, 0x64, 0xfe, 0xa4, 0xed, 0x80, 0xff, 0x73, 0x13, 0x3c, 0x1b, 0x86, 0xf8, 0xfa, 0xe0, 0xb8, 0xee, 0xb7, 0x08, 0x0b, 0x13, 0x48, 0x0e, 0x1a, 0x08, 0xfa, 0xf0, 0x47, 0xea, 0x95, 0xfa, 0xd4, 0x0a, 0x31, 0x10, 0x53, 0x06, 0xf1, 0xf5, 0xd1, 0xf4, 0xbb, 0xfd, 0x17, 0x06, 0x5b, 0x07, 0x0d, 0x00, 0xa3, 0xf7, 0x66, 0xf6, 0x6f, 0x05, 0x9c, 0x09, 0x6f, 0x14, 0x1b, 0x06, 0x01, 0xe3, 0x0e, 0xe5, 0xe1, 0x01, 0x90, 0x16, 0x91, 0x0c, 0xd1, 0xfc, 0x95, 0xfc, 0xbf, 0x09, 0xdf, 0x0a, 0x51, 0xf1, 0xbe, 0xe0, 0xe6, 0xf8, 0xfb, 0x13, 0xfc, 0x12, 0x5f, 0x09, 0x8d, 0x02, 0x87, 0xee, 0x38, 0xea, 0x91, 0xfe, 0xf4, 0x10, 0x15, 0x10, 0x4f, 0xfd, 0xd7, 0xf3, 0x45, 0xf8, 0x4b, 0xfc, 0x29, 0x03, 0x11, 0x09, 0x9c, 0x04, 0xdf, 0x03, 0xfc, 0x0c, 0x23, 0xf3, 0x3c, 0xe3, 0x08, 0x00, 0x91, 0x12, 0x85, 0x0a, 0x79, 0xfd, 0xfd, 0xfd, 0x03, 0x05, 0x85, 0xfd, 0x1b, 0xf4, 0x96, 0xf8, 0x3b, 0x05, 0xf7, 0x07, 0x24, 0x10, 0xe1, 0x13, 0x5b, 0xe3, 0xb0, 0xd4, 0x8a, 0xfe, 0xbe, 0x25, 0xb4, 0x1d, 0xc4, 0xf3, 0x57, 0xe3, 0x5f, 0xf3, 0xd1, 0x11, 0x90, 0x11, 0xb5, 0xfc, 0x8f, 0xf1, 0x93, 0xf7, 0x24, 0x07, 0x69, 0x0d, 0x66, 0x0c, 0x46, 0xfa, 0x61, 0xec, 0xcb, 0xf6, 0x42, 0x06, 0x96, 0x0b, 0x97, 0x04, 0x8d, 0xfc, 0x7e, 0xfa, 0x03, 0xfe, 0x54, 0x01, 0x53, 0x03, 0xf4, 0x01, 0x3c, 0xff, 0x7d, 0xfd, 0xb4, 0xfe, 0x79, 0xfc, 0x5d, 0xfb, 0x9b, 0x03, 0x57, 0x0a, 0xc3, 0x16, 0xbd, 0xf8, 0xd7, 0xd8, 0x70, 0xf5, 0xb6, 0x15, 0x16, 0x15, 0x11, 0x14, 0x33, 0xf5, 0x4d, 0xd8, 0x90, 0xef, 0xdf, 0x12, 0xaa, 0x16, 0x90, 0x0b, 0xda, 0x06, 0x04, 0xee, 0xb1, 0xe3, 0xbd, 0xfb, 0x2f, 0x11, 0x37, 0x0e, 0x81, 0xff, 0x0f, 0x06, 0xec, 0x09, 0x21, 0xee, 0xcf, 0xea, 0x79, 0xfc, 0x65, 0x0d, 0xf2, 0x12, 0x0f, 0x02, 0xcc, 0xf2, 0x02, 0xf2, 0x3b, 0xfd, 0x9f, 0x0b, 0x85, 0x08, 0xfe, 0x07, 0x9f, 0x11, 0x5d, 0xef, 0x1a, 0xdb, 0x25, 0xf8, 0xb8, 0x16, 0x7a, 0x13, 0x47, 0x0a, 0xbf, 0x03, 0x9a, 0xe8, 0x38, 0xe6, 0xf8, 0x00, 0xce, 0x13, 0xc4, 0x1b, 0x01, 0x00, 0x41, 0xe4, 0xca, 0xe9, 0xec, 0x05, 0xef, 0x13, 0x40, 0x09, 0x6d, 0xfd, 0x77, 0x0f, 0xe6, 0xff, 0xed, 0xd7, 0xa1, 0xf0, 0xa1, 0x15, 0xa8, 0x15, 0xc5, 0x09, 0x0f, 0x05, 0xa1, 0xeb, 0x9e, 0xe2, 0xef, 0x00, 0xc2, 0x15, 0x89, 0x15, 0xac, 0x08, 0xa1, 0xeb, 0xbf, 0xe7, 0xe8, 0xfb, 0x3e, 0x09, 0x37, 0x0a, 0x0c, 0x05, 0x79, 0x03, 0x3f, 0x08, 0x1e, 0xff, 0xfe, 0xed, 0x40, 0xf1, 0xbe, 0x0a, 0x84, 0x11, 0x07, 0xfe, 0xc8, 0xef, 0x44, 0xf6, 0xc0, 0x0a, 0x98, 0x0c, 0x20, 0x14, 0x52, 0x00, 0x4a, 0xde, 0x94, 0xe8, 0xcf, 0x0a, 0x63, 0x17, 0x55, 0x0e, 0x7a, 0x09, 0xd5, 0xef, 0x31, 0xe6, 0xf6, 0xf5, 0x99, 0x0a, 0x2c, 0x12, 0x0d, 0x0d, 0xfe, 0xf8, 0x96, 0xeb, 0x7b, 0xfd, 0x29, 0x0c, 0x9f, 0x0b, 0x38, 0x00, 0xdc, 0xf7, 0x6f, 0xfc, 0x20, 0x06, 0x99, 0x08, 0x91, 0xf7, 0x40, 0xee, 0xf6, 0xfb, 0x3a, 0x09, 0x6e, 0x0a, 0xd3, 0x02, 0xad, 0xfc, 0x99, 0xfb, 0xf0, 0xfe, 0x3f, 0x01, 0x69, 0x02, 0x69, 0xfd, 0x39, 0xfa, 0xe3, 0x00, 0x2c, 0x13, 0xe4, 0x07, 0xd1, 0xee, 0xfa, 0xec, 0x1e, 0xfb, 0xa7, 0x0b, 0x79, 0x0d, 0xb9, 0x00, 0x10, 0x06, 0x82, 0x12, 0xfd, 0xeb, 0x6b, 0xda, 0xb1, 0xfb, 0xa3, 0x19, 0x7f, 0x12, 0x36, 0x13, 0x06, 0xf6, 0x16, 0xd6, 0x92, 0xf2, 0x21, 0x16, 0x80, 0x15, 0x94, 0x00, 0x1c, 0xfe, 0x01, 0xfd, 0x1c, 0xf4, 0x95, 0xfc, 0x6b, 0x07, 0x0a, 0x09, 0x59, 0x02, 0xc1, 0xf7, 0x55, 0xf8, 0xbd, 0x01, 0x3e, 0x06, 0x3c, 0x04, 0x79, 0xfd, 0xde, 0xfa, 0xc8, 0xff, 0xe7, 0x02, 0xff, 0x01, 0xaf, 0x04, 0x8c, 0x0d, 0x18, 0x05, 0x57, 0xe5, 0x87, 0xe3, 0x9b, 0x02, 0xc9, 0x14, 0x44, 0x0d, 0xa9, 0xfa, 0x88, 0xfb, 0x50, 0x06, 0x64, 0x04, 0x51, 0xff, 0x10, 0xf8, 0xe9, 0xf8, 0xd4, 0x00, 0x76, 0x04, 0x09, 0x02, 0x26, 0x00, 0xe6, 0x04, 0xb2, 0x01, 0xee, 0xf9, 0x09, 0xfb, 0xff, 0xff, 0x11, 0x03, 0x3f, 0xfe, 0xb8, 0xfb, 0xeb, 0x01, 0xb0, 0x06, 0x93, 0x05, 0xfa, 0x05, 0x0d, 0xfd, 0xd8, 0xf2, 0xda, 0xf5, 0xca, 0x0c, 0x38, 0x16, 0x6b, 0xf5, 0x25, 0xe7, 0x62, 0xf8, 0x00, 0x0e, 0x17, 0x0f, 0x57, 0x07, 0x09, 0xf8, 0x04, 0xf1, 0x04, 0xf8, 0x40, 0x07, 0x83, 0x15, 0x1a, 0x06, 0x15, 0xe9, 0xdd, 0xed, 0x5f, 0x09, 0xd8, 0x12, 0x75, 0x17, 0x20, 0xfa, 0xad, 0xdd, 0x56, 0xec, 0x06, 0x0b, 0x12, 0x16, 0x56, 0x0d, 0xc9, 0x08, 0xd1, 0xf0, 0xcf, 0xe6, 0xd0, 0xf5, 0x78, 0x0d, 0xaf, 0x0e, 0x89, 0x0c, 0x7e, 0x0e, 0xc0, 0xec, 0x58, 0xe1, 0x52, 0xf7, 0x9d, 0x11, 0x10, 0x12, 0x4e, 0x05, 0x1f, 0x09, 0x7c, 0xfb, 0xb4, 0xe2, 0x7a, 0xf0, 0x55, 0x0e, 0x2c, 0x12, 0xe8, 0x09, 0x24, 0x0e, 0x89, 0xf1, 0x11, 0xe1, 0x52, 0xf4, 0x46, 0x0e, 0x4f, 0x13, 0x95, 0x0d, 0x77, 0x03, 0xf3, 0xeb, 0xf1, 0xee, 0xd9, 0x01, 0x4f, 0x0b, 0x34, 0x06, 0xb5, 0xfa, 0x8b, 0xf7, 0x13, 0x03, 0x9b, 0x07, 0xd6, 0x13, 0x9e, 0x07, 0x3a, 0xe2, 0xa3, 0xe5, 0x53, 0x02, 0x1d, 0x16, 0x17, 0x0b, 0xe4, 0x04, 0x3e, 0x0d, 0x31, 0xf1, 0xfe, 0xe1, 0x22, 0xf6, 0xda, 0x10, 0xaa, 0x12, 0xcc, 0x0e, 0x80, 0x00, 0xb1, 0xe7, 0xca, 0xe9, 0xbd, 0x01, 0xc3, 0x13, 0xaa, 0x0e, 0x37, 0x0a, 0xc1, 0xfa, 0xe5, 0xeb, 0x81, 0xf2, 0xd9, 0x01, 0x75, 0x08, 0xc2, 0x06, 0x77, 0x04, 0x0a, 0x07, 0x11, 0x02, 0x67, 0xf2, 0x83, 0xf3, 0x2b, 0x02, 0x70, 0x09, 0xfb, 0x04, 0x03, 0xfd, 0x68, 0xf6, 0x49, 0xfd, 0xb4, 0x07, 0x92, 0x09, 0xbf, 0x0a, 0x41, 0x03, 0x58, 0xeb, 0x7d, 0xed, 0x42, 0x08, 0xcc, 0x0b, 0x99, 0x02, 0x89, 0xf7, 0xe2, 0xf9, 0x34, 0x04, 0xe7, 0x07, 0x89, 0x03, 0x30, 0x10, 0x26, 0x04, 0x18, 0xe2, 0x68, 0xe7, 0xb2, 0x04, 0x4b, 0x15, 0x14, 0x0c, 0x81, 0xfc, 0xe7, 0x0e, 0x4f, 0x04, 0xcf, 0xe0, 0x24, 0xe8, 0xf7, 0x06, 0xc1, 0x19, 0x4d, 0x13, 0x17, 0xfc, 0x97, 0xe1, 0x27, 0xf6, 0x54, 0x0e, 0xa2, 0x19, 0xbb, 0x10, 0x9f, 0xe6, 0xbd, 0xde, 0x80, 0xfa, 0x35, 0x15, 0x5f, 0x12, 0x77, 0x0c, 0x4f, 0xfd, 0x48, 0xe8, 0x9c, 0xef, 0x18, 0x04, 0xaf, 0x10, 0x17, 0x0f, 0x2e, 0xfe, 0x0a, 0xf1, 0x56, 0xf7, 0xd0, 0x01, 0xca, 0x01, 0x4c, 0x00, 0x37, 0x04, 0xd7, 0x03, 0xbd, 0x02, 0x22, 0x05, 0x0c, 0x01, 0x12, 0xf7, 0x93, 0xf4, 0xbb, 0xfc, 0xe0, 0x08, 0x0f, 0x07, 0x0f, 0x14, 0x62, 0x07, 0xc8, 0xda, 0xb1, 0xe1, 0x3c, 0x0b, 0xff, 0x1e, 0x91, 0x0f, 0x59, 0xf6, 0xd1, 0xec, 0xe6, 0xf9, 0x13, 0x07, 0x46, 0x08, 0x42, 0x06, 0x45, 0x13, 0xdd, 0xf9, 0x54, 0xde, 0x9d, 0xee, 0x12, 0x0b, 0x16, 0x13, 0x32, 0x07, 0xdd, 0xfb, 0xcd, 0x0e, 0x16, 0x08, 0x13, 0xdf, 0x91, 0xe6, 0x6e, 0x0c, 0x1f, 0x19, 0x7f, 0x17, 0x71, 0xfd, 0x59, 0xdf, 0x92, 0xea, 0xf3, 0x06, 0x5f, 0x15, 0xb8, 0x0d, 0x01, 0x0a, 0xae, 0xf2, 0x54, 0xe2, 0xa9, 0xf8, 0x8a, 0x15, 0xb9, 0x1f, 0xc5, 0xfc, 0x7a, 0xe1, 0xf0, 0xea, 0x49, 0x09, 0x65, 0x14, 0x53, 0x07, 0xbf, 0xfc, 0x94, 0x08, 0xb7, 0x04, 0xde, 0xe4, 0xdb, 0xec, 0x79, 0x0c, 0x2b, 0x14, 0xdd, 0x0d, 0xf6, 0x05, 0x51, 0xee, 0xb2, 0xe7, 0x06, 0xfb, 0x30, 0x0b, 0x24, 0x09, 0x3f, 0x02, 0x58, 0x01, 0x30, 0x08, 0x85, 0xfe, 0xd1, 0xed, 0x51, 0xf9, 0xca, 0x10, 0xe2, 0x19, 0x27, 0xf6, 0x1a, 0xe4, 0x6f, 0xf0, 0xdf, 0x08, 0xa9, 0x10, 0x7d, 0x10, 0xb0, 0x0b, 0xf1, 0xec, 0xfb, 0xe4, 0x71, 0xf9, 0x99, 0x0e, 0x38, 0x18, 0x90, 0x0e, 0x5b, 0xec, 0x9f, 0xe3, 0xb1, 0xfa, 0x62, 0x12, 0xa5, 0x0e, 0x73, 0x05, 0x4f, 0x04, 0xaf, 0xec, 0x06, 0xee, 0xa8, 0x05, 0x98, 0x21, 0x81, 0x0e, 0x63, 0xe0, 0xb1, 0xe0, 0xa7, 0xff, 0x75, 0x17, 0xcd, 0x0e, 0x01, 0xfe, 0x97, 0x04, 0x7f, 0x03, 0x3a, 0xe8, 0xe8, 0xf2, 0x44, 0x0c, 0x92, 0x0e, 0x38, 0x05, 0x25, 0x03, 0x91, 0xf6, 0x4e, 0xef, 0xea, 0xfe, 0x1e, 0x0b, 0xa7, 0x0a, 0xa8, 0x08, 0x7f, 0xfe, 0xc7, 0xea, 0x45, 0xee, 0x57, 0x07, 0x8e, 0x11, 0x2c, 0x09, 0x06, 0x13, 0x41, 0xf9, 0x15, 0xdb, 0x88, 0xea, 0x2f, 0x0d, 0x56, 0x17, 0xbe, 0x14, 0x33, 0x06, 0x62, 0xe6, 0x05, 0xe6, 0x99, 0xfe, 0xcf, 0x13, 0x72, 0x0d, 0x47, 0xff, 0xca, 0x01, 0xbe, 0xfe, 0x3a, 0xf1, 0x84, 0xf9, 0x9f, 0x08, 0x0f, 0x08, 0xe2, 0x07, 0x08, 0x16, 0x53, 0xef, 0xd5, 0xcf, 0xb9, 0xf9, 0xe0, 0x1b, 0xd3, 0x1b, 0x46, 0x10, 0xf8, 0xea, 0xf5, 0xdc, 0xc6, 0xf6, 0x9b, 0x13, 0xe0, 0x12, 0xb7, 0x01, 0x9d, 0xfd, 0x55, 0x01, 0xb4, 0xf8, 0x62, 0xf5, 0x1f, 0x01, 0xb8, 0x09, 0xf7, 0x09, 0x9b, 0x04, 0x28, 0xf8, 0xda, 0xf0, 0xfe, 0xf9, 0x75, 0x09, 0xc2, 0x0c, 0xf5, 0xfc, 0x7f, 0xf5, 0xa0, 0xfb, 0x0f, 0x04, 0x6f, 0x02, 0x91, 0xfd, 0x58, 0x01, 0x80, 0x0f, 0x0f, 0x08, 0x3d, 0xee, 0xdf, 0xf1, 0x2e, 0x01, 0x6c, 0x08, 0xcf, 0x05, 0x87, 0xff, 0xd9, 0xfb, 0x07, 0xfd, 0x75, 0x03, 0x8b, 0x05, 0x91, 0xfe, 0x48, 0xfb, 0x25, 0xfc, 0x59, 0xfc, 0xf3, 0xff, 0x02, 0x07, 0xe4, 0x05, 0x54, 0x09, 0xcf, 0x02, 0x7a, 0xea, 0x77, 0xef, 0x7f, 0x10, 0xc8, 0x21, 0x9e, 0xf8, 0xa7, 0xe0, 0xca, 0xf0, 0xeb, 0x07, 0xa6, 0x13, 0xc8, 0x0e, 0x0d, 0xfb, 0x8f, 0xeb, 0x3e, 0xf7, 0x22, 0x0a, 0xac, 0x0e, 0x18, 0x0b, 0xa9, 0xfd, 0x24, 0xec, 0xa0, 0xf2, 0xcf, 0x04, 0xa5, 0x0c, 0x34, 0x06, 0x43, 0xfd, 0x5c, 0xfa, 0x0c, 0xfe, 0x7f, 0x01, 0xe1, 0x01, 0x1d, 0xfd, 0xd2, 0xfa, 0x76, 0x01, 0xba, 0x06, 0xf7, 0x02, 0xa1, 0xff, 0x1f, 0xfd, 0xa4, 0x00, 0x59, 0xff, 0xae, 0x0e, 0xbc, 0x16, 0x45, 0xe5, 0xac, 0xd6, 0xe0, 0xf9, 0xff, 0x17, 0x33, 0x1a, 0x7f, 0x0d, 0xd3, 0xf0, 0xf3, 0xe6, 0x9f, 0xf5, 0xee, 0x0a, 0x33, 0x10, 0xdb, 0x04, 0xd8, 0x04, 0xa7, 0x03, 0xf7, 0xed, 0xc6, 0xec, 0x77, 0x05, 0x4b, 0x11, 0xb9, 0x0f, 0xc6, 0x06, 0xc4, 0xed, 0xdf, 0xe8, 0xe3, 0xfc, 0x87, 0x0b, 0x77, 0x06, 0x93, 0xfe, 0x1e, 0x01, 0xff, 0x02, 0x2a, 0x05, 0x37, 0x06, 0x35, 0xf9, 0xc1, 0xef, 0x42, 0xff, 0x11, 0x09, 0x62, 0x1a, 0x08, 0x09, 0x8e, 0xd9, 0xe5, 0xdf, 0x40, 0x0a, 0xd0, 0x1b, 0x14, 0x0c, 0x5e, 0xfa, 0x65, 0xf8, 0x85, 0xfd, 0xe6, 0x11, 0xc2, 0x0b, 0x0d, 0xd8, 0xf4, 0xeb, 0x25, 0x12, 0x60, 0x25, 0x02, 0x0f, 0x43, 0xde, 0x4b, 0xdd, 0xcd, 0x01, 0x8d, 0x1a, 0x87, 0x0d, 0xf3, 0xff, 0xab, 0x04, 0x07, 0xf7, 0xa1, 0xe9, 0x0a, 0xfe, 0xf7, 0x0e, 0x66, 0x0c, 0x75, 0x09, 0xc1, 0xfe, 0xcd, 0xe8, 0xbf, 0xeb, 0xff, 0x08, 0x4a, 0x12, 0xb5, 0x18, 0x51, 0x03, 0x60, 0xde, 0x3c, 0xe6, 0xf3, 0x05, 0x1f, 0x1f, 0xdd, 0x0d, 0x44, 0xf2, 0x8e, 0xe9, 0x89, 0xfb, 0xb9, 0x0e, 0xee, 0x0a, 0x8d, 0x03, 0x1f, 0x05, 0xc2, 0xf9, 0x36, 0xf2, 0x11, 0xfc, 0x0c, 0xfe, 0x57, 0x04, 0x10, 0x06, 0xd0, 0x0d, 0x90, 0x10, 0xaf, 0xeb, 0x48, 0xdf, 0xfe, 0xf9, 0xf0, 0x13, 0x93, 0x14, 0x02, 0x0c, 0xa8, 0xf3, 0xbf, 0xe2, 0x77, 0xfc, 0xa7, 0x0f, 0x69, 0x18, 0xc7, 0x0c, 0xb2, 0xe7, 0x2d, 0xe7, 0x77, 0xfc, 0x8c, 0x0a, 0x40, 0x0a, 0x70, 0x04, 0xac, 0x00, 0xe7, 0x06, 0x0d, 0x02, 0x70, 0xf1, 0xc9, 0xf0, 0xc6, 0x0c, 0xb8, 0x16, 0xeb, 0xf7, 0xfb, 0xe8, 0x97, 0xf5, 0x47, 0x0b, 0xa1, 0x0e, 0x11, 0x03, 0x0f, 0x02, 0x6c, 0x0f, 0x1f, 0xf7, 0x4a, 0xe4, 0x61, 0xf6, 0x16, 0x08, 0xaa, 0x0f, 0x30, 0x0b, 0x37, 0xfc, 0xa2, 0xf1, 0x32, 0xf8, 0x63, 0x04, 0x0f, 0x0f, 0x9a, 0x0f, 0x54, 0xf4, 0x78, 0xe5, 0xd9, 0xf9, 0xd9, 0x0f, 0x3d, 0x13, 0xde, 0x0e, 0x28, 0xf2, 0x2f, 0xe4, 0x11, 0xf6, 0x0a, 0x0c, 0x6f, 0x12, 0x0a, 0x0d, 0xa1, 0xf9, 0xf0, 0xe7, 0x69, 0xf5, 0x0a, 0x0d, 0x3d, 0x16, 0x0f, 0x08, 0x39, 0xf3, 0xda, 0xee, 0x61, 0xfa, 0xc3, 0x06, 0xb0, 0x08, 0xe1, 0x02, 0x55, 0xfd, 0x69, 0xfd, 0x0d, 0x00, 0x8c, 0x00, 0x01, 0x00, 0xfd, 0xfd, 0x3a, 0xfa, 0x57, 0xff, 0xd2, 0x06, 0x8b, 0x07, 0x1f, 0x0a, 0x0d, 0x03, 0x81, 0xec, 0x06, 0xec, 0x3e, 0x04, 0x30, 0x13, 0xc6, 0x0f, 0x8e, 0xf9, 0x9f, 0xed, 0x42, 0xf8, 0x98, 0x05, 0xd8, 0x0a, 0x1a, 0x04, 0x4f, 0xfc, 0x28, 0xf8, 0x16, 0xf9, 0x43, 0x03, 0xfd, 0x08, 0xcc, 0x07, 0xfa, 0x09, 0xc3, 0xfe, 0x85, 0xe8, 0x81, 0xef, 0xaf, 0x08, 0x40, 0x16, 0xfc, 0x0c, 0xde, 0xf3, 0x7a, 0xed, 0x75, 0xfa, 0x23, 0x03, 0x41, 0x08, 0x1f, 0x05, 0x67, 0x08, 0x04, 0x10, 0x0f, 0xf2, 0xe6, 0xe4, 0x82, 0xf3, 0x69, 0x0e, 0x4f, 0x10, 0x8f, 0x10, 0x87, 0x08, 0xb5, 0xe5, 0xfc, 0xe3, 0xfd, 0x00, 0x60, 0x16, 0x37, 0x0c, 0xfa, 0x00, 0xb7, 0x05, 0x39, 0xf6, 0x7b, 0xe9, 0x0a, 0xfe, 0x4d, 0x0f, 0xb7, 0x0c, 0x31, 0x0a, 0xa3, 0xfd, 0x56, 0xec, 0x1b, 0xf5, 0xda, 0xff, 0x56, 0x07, 0x1c, 0x07, 0x9f, 0xff, 0x59, 0xf8, 0xe1, 0xfd, 0x7f, 0x06, 0x72, 0x0a, 0xcf, 0x10, 0x69, 0xf5, 0xdc, 0xe3, 0xf9, 0xf1, 0x21, 0x0d, 0xbe, 0x10, 0xbf, 0x0c, 0xcc, 0x0c, 0x60, 0xed, 0x6e, 0xe4, 0xe6, 0xf6, 0xd0, 0x0f, 0xf8, 0x10, 0x5f, 0x02, 0x8d, 0xfa, 0xbb, 0xfe, 0xbc, 0xff, 0x22, 0xfe, 0xa2, 0xff, 0xb8, 0x01, 0x06, 0x01, 0xee, 0x07, 0x96, 0x06, 0x36, 0xec, 0x91, 0xf1, 0xd6, 0x07, 0x19, 0x0d, 0xd1, 0x03, 0x06, 0x11, 0xc7, 0x08, 0xaf, 0xd3, 0xd4, 0xe0, 0x40, 0x13, 0x18, 0x1e, 0xbb, 0x07, 0xcf, 0x09, 0xe7, 0xfd, 0x32, 0xe0, 0xe2, 0xeb, 0x37, 0x0a, 0x4f, 0x16, 0xdf, 0x07, 0x40, 0xfa, 0xa5, 0xf9, 0x78, 0x01, 0x54, 0x19, 0xd0, 0x00, 0x80, 0xdc, 0x4f, 0xe9, 0xf9, 0x08, 0x4d, 0x18, 0x41, 0x09, 0x9c, 0x04, 0xfb, 0x06, 0x09, 0xf1, 0x33, 0xe8, 0x00, 0xf9, 0x01, 0x0d, 0x31, 0x0f, 0x30, 0x05, 0x76, 0x05, 0xf5, 0x00, 0xbd, 0xed, 0xdd, 0xee, 0x20, 0x05, 0x58, 0x13, 0xda, 0x09, 0xee, 0xf2, 0x11, 0xf3, 0x95, 0x03, 0x8c, 0x0a, 0x98, 0x12, 0x29, 0xff, 0xa5, 0xe5, 0xf0, 0xf0, 0x18, 0x04, 0x09, 0x0d, 0x31, 0x09, 0x2c, 0x05, 0x0f, 0x01, 0x51, 0xf6, 0x8c, 0xf5, 0x05, 0x00, 0x52, 0x04, 0x4a, 0x00, 0x10, 0xfe, 0xe6, 0x09, 0x62, 0x11, 0x3e, 0xf6, 0xe8, 0xe5, 0xec, 0xf6, 0x6f, 0x0e, 0xa0, 0x0f, 0x1e, 0x09, 0x53, 0x06, 0xbe, 0xef, 0x52, 0xea, 0x4f, 0x01, 0x27, 0x0b, 0xbf, 0x06, 0xa9, 0xfb, 0x71, 0xf9, 0xbd, 0x02, 0x1c, 0x0a, 0x19, 0x0c, 0x61, 0xfc, 0xf3, 0xec, 0xec, 0xf6, 0x07, 0x05, 0x31, 0x09, 0x49, 0x00, 0x69, 0xf8, 0x2e, 0x01, 0x8a, 0x06, 0x4c, 0x14, 0x44, 0x05, 0x0a, 0xe2, 0x01, 0xe8, 0x17, 0x06, 0x5b, 0x16, 0x8a, 0x0a, 0x21, 0xfc, 0xd2, 0xf4, 0x86, 0xff, 0x95, 0x02, 0x06, 0x11, 0xe5, 0x15, 0xdc, 0xe3, 0xb0, 0xd8, 0xc4, 0xfa, 0x45, 0x1a, 0x21, 0x13, 0x58, 0x00, 0x08, 0xf7, 0xfc, 0x05, 0xe8, 0x10, 0xcf, 0xef, 0x2f, 0xe4, 0x9d, 0xf8, 0xec, 0x10, 0x9f, 0x10, 0x7a, 0x07, 0x6f, 0x07, 0x57, 0xf5, 0x87, 0xe6, 0x58, 0xf8, 0xe6, 0x0d, 0x59, 0x15, 0xb7, 0x07, 0xd8, 0xf0, 0xa1, 0xee, 0x05, 0xf9, 0x3c, 0x08, 0xef, 0x0c, 0xf9, 0x03, 0x94, 0xfe, 0x3f, 0x02, 0x65, 0xfc, 0x06, 0xf6, 0x70, 0x00, 0x3f, 0x05, 0x44, 0x0d, 0x68, 0x18, 0x61, 0xe6, 0xe7, 0xd0, 0x3a, 0x01, 0xb9, 0x1f, 0x23, 0x15, 0x43, 0xfd, 0x96, 0xef, 0xa6, 0xf5, 0xb3, 0x04, 0x24, 0x0c, 0x90, 0x07, 0x35, 0xfa, 0x3c, 0xf5, 0x09, 0xfd, 0x15, 0x08, 0x9b, 0x07, 0x81, 0xf9, 0xe7, 0xf2, 0x91, 0xfa, 0xeb, 0x06, 0x1e, 0x14, 0x46, 0x0a, 0x1b, 0xef, 0x87, 0xe9, 0x25, 0xfe, 0xcf, 0x10, 0x25, 0x18, 0x73, 0x02, 0xa4, 0xe7, 0x52, 0xed, 0x58, 0x00, 0x86, 0x0d, 0x70, 0x09, 0xed, 0x02, 0x75, 0x0e, 0x07, 0xfd, 0xeb, 0xe5, 0x86, 0xf3, 0xd5, 0x03, 0x44, 0x0c, 0xd3, 0x07, 0xee, 0x0a, 0x97, 0x04, 0x9a, 0xee, 0xc1, 0xee, 0xf3, 0xfe, 0xd7, 0x0b, 0xae, 0x0e, 0x36, 0x05, 0x88, 0xf4, 0xf7, 0xf2, 0xf6, 0xfa, 0x64, 0x0b, 0x6c, 0x0f, 0x7d, 0xfd, 0x58, 0xf4, 0xa9, 0xf9, 0x95, 0x00, 0xbe, 0x00, 0x39, 0x02, 0x9c, 0x04, 0x01, 0x03, 0x41, 0xff, 0x57, 0xff, 0xa8, 0x05, 0xe7, 0x0a, 0x17, 0xfd, 0x6f, 0xe9, 0x59, 0xf2, 0x58, 0x07, 0x0d, 0x0e, 0x66, 0x06, 0x55, 0xfd, 0x21, 0xfa, 0xad, 0xfd, 0x4c, 0x00, 0x79, 0xfe, 0xee, 0xfe, 0x78, 0x0a, 0x96, 0x0f, 0xd3, 0xf6, 0x34, 0xed, 0x4a, 0xf9, 0x05, 0x03, 0x5f, 0x06, 0x8c, 0x05, 0x3b, 0x03, 0x4f, 0x01, 0x5b, 0xfd, 0x83, 0x00, 0x65, 0x0f, 0x3a, 0x00, 0xf6, 0xe3, 0xd1, 0xee, 0xa6, 0x0a, 0xcd, 0x16, 0xd6, 0x0d, 0x44, 0xf6, 0x37, 0xee, 0xb9, 0xfa, 0x53, 0x06, 0x8b, 0x07, 0x35, 0xfd, 0xea, 0xf8, 0x53, 0x03, 0xe3, 0x06, 0xa6, 0x13, 0xed, 0x02, 0x13, 0xdc, 0x8b, 0xec, 0x81, 0x10, 0xe8, 0x14, 0x83, 0x05, 0xca, 0xf9, 0xa4, 0xf6, 0x57, 0xfe, 0x82, 0x04, 0x35, 0x03, 0x07, 0x00, 0xdd, 0x02, 0x8e, 0x0b, 0x5f, 0x04, 0x8c, 0xeb, 0x64, 0xe8, 0x43, 0x01, 0x96, 0x10, 0xb1, 0x0b, 0x80, 0xff, 0x12, 0xf5, 0x70, 0xf7, 0xb4, 0x05, 0x1e, 0x09, 0x84, 0x07, 0x1f, 0x12, 0xef, 0xf4, 0x74, 0xdc, 0x33, 0xf4, 0xa6, 0x13, 0x7c, 0x13, 0xbc, 0x0a, 0x96, 0x05, 0xbd, 0xea, 0x80, 0xe4, 0x03, 0xff, 0xf9, 0x14, 0xf4, 0x0e, 0x27, 0x0e, 0xbd, 0xfa, 0x42, 0xe2, 0xfa, 0xee, 0xf7, 0x0a, 0xec, 0x13, 0xac, 0x0e, 0xfd, 0x03, 0x0f, 0xec, 0xd8, 0xec, 0xcc, 0xfe, 0x44, 0x0c, 0x23, 0x07, 0xaf, 0x06, 0xee, 0x0a, 0x7e, 0xf5, 0x68, 0xec, 0x12, 0xf7, 0x1a, 0x07, 0xdd, 0x0d, 0x28, 0x04, 0x8b, 0x04, 0xf6, 0x0f, 0x79, 0xf1, 0x41, 0xdf, 0x09, 0xf9, 0x69, 0x14, 0xd4, 0x11, 0x87, 0x0b, 0xe6, 0xff, 0x94, 0xe7, 0x14, 0xec, 0xcb, 0x04, 0x15, 0x13, 0x3d, 0x11, 0xf1, 0xfd, 0x9b, 0xed, 0x6e, 0xf0, 0xe4, 0x01, 0x0d, 0x0e, 0x38, 0x15, 0xf1, 0x03, 0x2e, 0xe9, 0x62, 0xed, 0xcb, 0xff, 0x14, 0x15, 0x37, 0x0d, 0x9d, 0xf8, 0x53, 0xf0, 0x94, 0xf6, 0xb3, 0x06, 0x9f, 0x0b, 0x76, 0x04, 0x6d, 0x02, 0xd0, 0x04, 0x32, 0xf6, 0x6f, 0xef, 0x98, 0xff, 0x62, 0x0c, 0x46, 0x0d, 0x0e, 0x09, 0x88, 0xf8, 0x6d, 0xe8, 0x31, 0xf4, 0x74, 0x0a, 0x58, 0x0f, 0xe3, 0x03, 0xf6, 0xfa, 0x98, 0xf7, 0xd8, 0xf9, 0x37, 0x02, 0x37, 0x09, 0xa1, 0x03, 0xc4, 0x08, 0x49, 0x0f, 0x7d, 0xeb, 0x61, 0xdf, 0xff, 0xfd, 0xa2, 0x16, 0xa6, 0x10, 0x1e, 0x0c, 0xa4, 0xfa, 0x94, 0xe2, 0xfd, 0xee, 0xa6, 0x0b, 0x65, 0x14, 0x8b, 0x07, 0x40, 0xfa, 0x99, 0xf9, 0xef, 0x03, 0x8b, 0x04, 0x42, 0xf4, 0x8c, 0xf9, 0x89, 0x15, 0x69, 0x03, 0xe4, 0xec, 0xca, 0xef, 0xb9, 0x02, 0x6e, 0x0f, 0x39, 0x14, 0xde, 0x06, 0x9d, 0xe6, 0x82, 0xe8, 0x9f, 0x04, 0xce, 0x13, 0x72, 0x0b, 0xa8, 0x08, 0x0d, 0xfd, 0xf2, 0xe6, 0x6f, 0xef, 0x24, 0x09, 0x82, 0x15, 0x08, 0x0e, 0x2b, 0xf6, 0xb0, 0xed, 0xb9, 0xf9, 0x3b, 0x06, 0x1f, 0x0a, 0xc6, 0x05, 0x41, 0xfc, 0xb2, 0xf9, 0xdd, 0xfb, 0x07, 0xfc, 0x51, 0x01, 0x60, 0x08, 0x95, 0x03, 0xbf, 0x07, 0x87, 0x0f, 0xe5, 0xe7, 0xe4, 0xdf, 0xf6, 0x08, 0xc2, 0x15, 0xfe, 0x0f, 0x22, 0x0f, 0x0d, 0xe8, 0xd8, 0xda, 0x56, 0x00, 0x6c, 0x18, 0xe5, 0x0e, 0x91, 0xfd, 0x4e, 0xf8, 0xf1, 0xfa, 0x54, 0x01, 0x0b, 0x04, 0x47, 0x03, 0xf8, 0xff, 0x3b, 0xfd, 0x96, 0x01, 0x9b, 0x05, 0x41, 0x08, 0x11, 0xf6, 0xcc, 0xe7, 0x1f, 0xf5, 0x75, 0x0c, 0x23, 0x11, 0x9d, 0x0d, 0xd4, 0x09, 0x91, 0xed, 0x02, 0xe7, 0xa6, 0xfa, 0x00, 0x10, 0x20, 0x0f, 0xc9, 0x0b, 0x01, 0x00, 0x8f, 0xea, 0x47, 0xef, 0xb1, 0x02, 0xcc, 0x0f, 0x72, 0x0e, 0x25, 0xfe, 0xe1, 0xf1, 0x71, 0xf8, 0xf9, 0x02, 0xdf, 0x06, 0xbe, 0x00, 0x42, 0xf8, 0x19, 0xfe, 0x77, 0x06, 0x9f, 0x05, 0xc7, 0x02, 0x7e, 0x0f, 0xf3, 0xfe, 0x1d, 0xdf, 0xa3, 0xed, 0x2f, 0x0e, 0xb6, 0x17, 0x5b, 0x10, 0x89, 0xf8, 0x9e, 0xe8, 0x7c, 0xf6, 0xbf, 0x06, 0x94, 0x0a, 0x8a, 0x01, 0x2c, 0xf9, 0xa9, 0xfe, 0xd2, 0x06, 0x07, 0x0c, 0x03, 0x02, 0x44, 0xea, 0xea, 0xf1, 0xa4, 0x0c, 0x81, 0x1d, 0xe5, 0x00, 0x35, 0xe6, 0xeb, 0xeb, 0x35, 0x03, 0xcc, 0x11, 0xb6, 0x09, 0xbf, 0xfd, 0xa3, 0x04, 0xb7, 0x0e, 0x30, 0xec, 0xe3, 0xe0, 0x6d, 0x02, 0x98, 0x16, 0xae, 0x0f, 0x0e, 0x0a, 0x21, 0xf7, 0xf1, 0xe3, 0x49, 0xf3, 0x3f, 0x0d, 0x28, 0x11, 0x0d, 0x02, 0xa0, 0xfa, 0x88, 0x09, 0x22, 0x04, 0xd3, 0xee, 0xb2, 0xf3, 0x45, 0x02, 0x94, 0x07, 0xe5, 0x00, 0x2c, 0x00, 0xf9, 0x02, 0xb7, 0x06, 0x39, 0x0a, 0x8f, 0xfc, 0x3f, 0xea, 0xb4, 0xf4, 0x78, 0x0a, 0x82, 0x13, 0xad, 0x0a, 0x30, 0xf2, 0x47, 0xed, 0x8f, 0xfc, 0x5f, 0x09, 0x67, 0x0a, 0x3b, 0x02, 0x34, 0xfb, 0xf4, 0xfa, 0xe5, 0xfe, 0x87, 0x02, 0x23, 0x03, 0x83, 0xff, 0x78, 0xff, 0x0c, 0xff, 0x8c, 0xff, 0x0f, 0xfd, 0x33, 0xfc, 0x68, 0x00, 0xc7, 0x0c, 0x35, 0x11, 0x69, 0xf4, 0x1e, 0xe6, 0x91, 0xf6, 0x55, 0x0e, 0x47, 0x0f, 0x97, 0x05, 0x09, 0x03, 0xd1, 0xef, 0xe9, 0xf2, 0x20, 0x05, 0xe1, 0x11, 0xc3, 0x1a, 0x41, 0xef, 0x06, 0xd7, 0x79, 0xf3, 0x9e, 0x16, 0xd4, 0x14, 0xc0, 0x01, 0xce, 0xf8, 0x2e, 0x0e, 0xfa, 0x05, 0xa3, 0xe2, 0x0d, 0xe9, 0x66, 0x08, 0x2b, 0x16, 0x0f, 0x09, 0xe5, 0xfb, 0x7d, 0xf9, 0x53, 0xff, 0xb8, 0x04, 0x03, 0x02, 0x4c, 0xf8, 0xd0, 0xfb, 0x60, 0x07, 0x8f, 0x18, 0x3f, 0xfe, 0x2d, 0xdd, 0x5c, 0xed, 0xa5, 0x09, 0xcc, 0x15, 0x97, 0x0d, 0xe4, 0xfb, 0x69, 0xf2, 0x72, 0xf8, 0x05, 0x00, 0x37, 0x09, 0x75, 0x0b, 0xc5, 0xfd, 0x8a, 0xf5, 0x04, 0xfa, 0x2a, 0x01, 0x1b, 0x06, 0x27, 0x07, 0x8c, 0xff, 0x35, 0xf9, 0x39, 0xfc, 0x24, 0x01, 0x11, 0x03, 0x35, 0xff, 0x8e, 0xfa, 0x5f, 0xff, 0x6e, 0x06, 0x1e, 0x09, 0x58, 0x0a, 0xf9, 0xfa, 0xdc, 0xe9, 0xa0, 0xf4, 0x26, 0x0a, 0xee, 0x11, 0xd9, 0x02, 0x86, 0xf6, 0x6b, 0xf5, 0x65, 0xfb, 0x58, 0x06, 0xe5, 0x0d, 0xff, 0x0e, 0x72, 0xf7, 0x97, 0xe7, 0xe9, 0xf3, 0x78, 0x0a, 0x0a, 0x10, 0x7b, 0x05, 0xd0, 0x04, 0xd9, 0x00, 0x91, 0xee, 0xed, 0xef, 0x23, 0x06, 0x7f, 0x10, 0x1d, 0x10, 0x3d, 0x00, 0xa5, 0xe9, 0xc5, 0xef, 0xe7, 0x03, 0x7f, 0x0e, 0xcf, 0x08, 0x67, 0xfd, 0x71, 0xf9, 0xce, 0xf9, 0x56, 0xfb, 0xf9, 0x03, 0xac, 0x08, 0xb2, 0x04, 0xec, 0x0f, 0x7e, 0xff, 0x02, 0xe1, 0x67, 0xeb, 0xaf, 0x0c, 0x56, 0x15, 0xac, 0x14, 0x6d, 0x00, 0xef, 0xe2, 0x92, 0xea, 0xb3, 0x04, 0xef, 0x13, 0xc1, 0x0a, 0x84, 0x09, 0x3c, 0xff, 0x54, 0xe8, 0x33, 0xee, 0x94, 0x06, 0x63, 0x10, 0x3b, 0x06, 0x17, 0x00, 0xc7, 0x0b, 0xe8, 0xfb, 0xab, 0xe9, 0xc9, 0xf6, 0x53, 0x07, 0x57, 0x0b, 0xcc, 0x01, 0x60, 0xf9, 0x42, 0xfe, 0xbc, 0x06, 0xb0, 0x0b, 0xab, 0x01, 0x2f, 0xeb, 0x0e, 0xf0, 0x7f, 0x0c, 0x05, 0x1d, 0x3d, 0x01, 0x4c, 0xe8, 0xdc, 0xec, 0xdd, 0x03, 0x9f, 0x11, 0xe2, 0x07, 0x5f, 0x02, 0x37, 0x0d, 0xa1, 0xf6, 0xab, 0xe6, 0x21, 0xf6, 0x98, 0x05, 0xbd, 0x0c, 0x0f, 0x07, 0xa5, 0xff, 0x2b, 0x01, 0x0b, 0x12, 0xe1, 0xf5, 0x65, 0xdd, 0xa7, 0xfc, 0x5f, 0x15, 0xdc, 0x0e, 0x0d, 0x08, 0x65, 0xff, 0xe2, 0xe7, 0x68, 0xed, 0x80, 0x09, 0x00, 0x13, 0x22, 0x10, 0x35, 0x03, 0x81, 0xe8, 0xfc, 0xe6, 0x8b, 0x01, 0x83, 0x14, 0x15, 0x0c, 0x72, 0x0e, 0x9b, 0xfc, 0x61, 0xe5, 0xb1, 0xee, 0xb6, 0x04, 0xdd, 0x10, 0x66, 0x14, 0xbb, 0x04, 0x08, 0xe9, 0xd1, 0xea, 0xf8, 0x00, 0xb6, 0x12, 0xe1, 0x08, 0xea, 0x0a, 0x48, 0x04, 0x32, 0xe0, 0x02, 0xed, 0xa2, 0x0e, 0x2e, 0x17, 0x71, 0x14, 0x77, 0xf4, 0x92, 0xdf, 0xd6, 0xf1, 0xc7, 0x0d, 0x3e, 0x13, 0x01, 0x10, 0x55, 0xfd, 0x2d, 0xea, 0x89, 0xf0, 0x79, 0x01, 0x64, 0x0e, 0x0d, 0x08, 0x0f, 0xff, 0xe5, 0xfd, 0x0b, 0x13, 0x54, 0x01, 0xe6, 0xde, 0xc3, 0xeb, 0xcf, 0x0c, 0x63, 0x16, 0x58, 0x07, 0x06, 0x05, 0x74, 0xff, 0xee, 0xe9, 0xd5, 0xee, 0x1e, 0x09, 0x54, 0x13, 0x63, 0x10, 0xf5, 0xfd, 0x77, 0xe6, 0x4a, 0xed, 0xc0, 0x05, 0xbb, 0x17, 0xaa, 0x15, 0x00, 0xf5, 0x7a, 0xe5, 0x6b, 0xf2, 0xaf, 0x0b, 0x4c, 0x10, 0xe6, 0x06, 0x06, 0x0f, 0x74, 0xf5, 0xb5, 0xdd, 0x2b, 0xf7, 0xda, 0x13, 0x1b, 0x11, 0x6c, 0xff, 0x49, 0xf8, 0xe7, 0xfc, 0x07, 0x03, 0xfd, 0x03, 0x75, 0x02, 0xaa, 0xfb, 0xfe, 0xf9, 0x78, 0xfe, 0x57, 0x05, 0x0f, 0x05, 0xe9, 0x0b, 0x9f, 0x07, 0xf2, 0xe4, 0xab, 0xe4, 0xe5, 0x01, 0x18, 0x15, 0x31, 0x0f, 0x48, 0xff, 0x6a, 0xf9, 0x7f, 0xfd, 0xa8, 0x08, 0x4d, 0x02, 0xcb, 0xee, 0xbb, 0xf7, 0x7f, 0x0d, 0x6e, 0x1f, 0x99, 0xfa, 0x49, 0xdc, 0x74, 0xec, 0x3f, 0x0b, 0x5c, 0x16, 0x8d, 0x08, 0x6a, 0x07, 0xd4, 0xff, 0x7c, 0xe6, 0xb8, 0xed, 0x8c, 0x09, 0xb9, 0x18, 0x62, 0x14, 0xb9, 0xf1, 0x97, 0xe2, 0x29, 0xf6, 0x51, 0x0e, 0xfc, 0x12, 0x26, 0x0d, 0x8a, 0xf7, 0xa3, 0xeb, 0x2d, 0xf8, 0x43, 0x04, 0xe2, 0x05, 0x6f, 0x03, 0xeb, 0x02, 0xe0, 0x05, 0x74, 0x09, 0xe5, 0xfa, 0x37, 0xeb, 0x0b, 0xf6, 0x3f, 0x0b, 0xfd, 0x11, 0x0b, 0x02, 0x17, 0xf4, 0x4b, 0xf7, 0x66, 0x01, 0x57, 0x06, 0x35, 0x03, 0x84, 0xff, 0x42, 0xfb, 0x9e, 0xf9, 0xe3, 0x00, 0x1f, 0x07, 0x17, 0x04, 0xa4, 0xff, 0xcd, 0xfe, 0x16, 0x0b, 0x95, 0x0d, 0xc7, 0xea, 0xae, 0xe0, 0x28, 0x00, 0x0c, 0x18, 0x31, 0x16, 0xa7, 0xfc, 0xf4, 0xeb, 0xb6, 0xf4, 0x61, 0x03, 0x3a, 0x0a, 0xf2, 0x08, 0x68, 0xff, 0x45, 0xf8, 0x06, 0xfb, 0xf7, 0x00, 0xd3, 0x03, 0x19, 0x02, 0x13, 0xfd, 0x82, 0xf9, 0xe4, 0xff, 0xef, 0x06, 0xe7, 0x08, 0x4d, 0x0a, 0xbd, 0xfb, 0x7b, 0xec, 0xd9, 0xf5, 0xfa, 0x01, 0x76, 0x07, 0x1a, 0x06, 0x25, 0x0b, 0x34, 0x06, 0xbf, 0xf1, 0x44, 0xf2, 0xc6, 0xfe, 0xb2, 0x05, 0x49, 0x02, 0xe5, 0x01, 0xf5, 0x02, 0x4f, 0x09, 0xa0, 0x0a, 0x51, 0xf2, 0xf6, 0xe9, 0x65, 0xf8, 0x9f, 0x0a, 0x54, 0x0e, 0x74, 0x05, 0xa2, 0x06, 0xfc, 0x01, 0xa1, 0xec, 0x51, 0xeb, 0xaf, 0x05, 0x99, 0x11, 0x7d, 0x15, 0xbf, 0x03, 0xb1, 0xe0, 0xd3, 0xea, 0x19, 0x0a, 0x2c, 0x1b, 0x8c, 0x10, 0xd8, 0xef, 0x36, 0xe9, 0x6c, 0xf8, 0x97, 0x09, 0x2d, 0x0b, 0x9d, 0x02, 0x51, 0xfc, 0x7f, 0x04, 0x08, 0x15, 0x11, 0xf6, 0x23, 0xe4, 0xc9, 0xf4, 0x13, 0x07, 0xc6, 0x0e, 0x74, 0x06, 0x68, 0xff, 0x2d, 0xfc, 0x0a, 0x00, 0x73, 0x00, 0x22, 0x10, 0xfe, 0x0a, 0xa2, 0xe2, 0xe4, 0xe2, 0xe5, 0x03, 0x40, 0x18, 0xc7, 0x0d, 0xbf, 0x07, 0x7c, 0xfe, 0x96, 0xe9, 0x56, 0xef, 0x0f, 0x05, 0xaf, 0x13, 0x73, 0x10, 0x15, 0xf8, 0xff, 0xec, 0xd7, 0xf4, 0x0c, 0x05, 0x21, 0x0d, 0x3b, 0x06, 0x5f, 0x05, 0x10, 0x06, 0xb3, 0xf2, 0x90, 0xe9, 0x15, 0x08, 0x0d, 0x14, 0x61, 0xfc, 0x6c, 0xed, 0x49, 0xfd, 0x5f, 0x0b, 0xbc, 0x13, 0x42, 0x0b, 0x06, 0xe9, 0x66, 0xe5, 0x15, 0xfe, 0x83, 0x12, 0xb5, 0x0e, 0xd3, 0x01, 0xf1, 0xf5, 0x89, 0xf9, 0x6f, 0x05, 0x11, 0x11, 0xd1, 0x00, 0xd3, 0xe8, 0xf1, 0xf1, 0x57, 0x05, 0x2e, 0x0e, 0xcc, 0x07, 0xa5, 0xfd, 0x78, 0xf9, 0x5b, 0xfc, 0xdc, 0x00, 0x7d, 0x03, 0x55, 0x03, 0x5c, 0xff, 0x79, 0xfc, 0x85, 0xf9, 0xd3, 0xfc, 0x1b, 0x07, 0x07, 0x07, 0x2e, 0x11, 0x5d, 0x01, 0x70, 0xe2, 0x1f, 0xec, 0x6f, 0x0a, 0xaf, 0x1f, 0xf9, 0x08, 0xd3, 0xe5, 0xf5, 0xea, 0x56, 0x09, 0xd4, 0x12, 0x28, 0x16, 0x7e, 0xfa, 0xca, 0xdb, 0xf9, 0xf0, 0xcf, 0x11, 0x12, 0x13, 0xd6, 0x04, 0xba, 0xfb, 0xc1, 0xf4, 0x7e, 0xfb, 0x3f, 0x05, 0xde, 0x08, 0xa1, 0x0f, 0x58, 0x01, 0x11, 0xe2, 0x0f, 0xe9, 0x74, 0x0a, 0x03, 0x19, 0x8b, 0x07, 0x70, 0xf2, 0x97, 0xfc, 0x67, 0x0b, 0x90, 0xfe, 0x18, 0xf6, 0x94, 0xfb, 0x3b, 0x00, 0xe6, 0x00, 0x7b, 0x03, 0xe4, 0x04, 0xa8, 0x05, 0x9c, 0x09, 0x21, 0xfb, 0xcc, 0xea, 0x67, 0xf5, 0x18, 0x0b, 0xaf, 0x0a, 0x59, 0x0b, 0xe6, 0x0a, 0x37, 0xed, 0x34, 0xe8, 0x5e, 0xfa, 0xf6, 0x0e, 0xdc, 0x0d, 0xa2, 0x06, 0xe2, 0x0a, 0xbe, 0xf4, 0x72, 0xe9, 0x71, 0xf6, 0x37, 0x06, 0xa8, 0x0d, 0x88, 0x06, 0x20, 0xff, 0x22, 0x01, 0xcb, 0xfc, 0x6d, 0xf8, 0xb4, 0xff, 0x8a, 0x05, 0x3b, 0x04, 0x03, 0x17, 0xcf, 0xff, 0x17, 0xd3, 0x68, 0xe9, 0x60, 0x16, 0xe6, 0x18, 0x14, 0x12, 0xaf, 0x00, 0x47, 0xe1, 0xf4, 0xe8, 0x37, 0x07, 0x80, 0x15, 0x7e, 0x08, 0x1d, 0xfc, 0x7f, 0xfe, 0xa5, 0x08, 0x51, 0xfd, 0x0d, 0xef, 0x87, 0xf6, 0x25, 0x0e, 0x63, 0x14, 0x96, 0xf8, 0xb8, 0xeb, 0x8c, 0xf5, 0xef, 0x07, 0x45, 0x0e, 0x4b, 0x06, 0x5e, 0x07, 0x41, 0xf7, 0x27, 0xec, 0xb3, 0xfc, 0xdd, 0x13, 0x9a, 0x1a, 0x11, 0xf2, 0xb6, 0xdf, 0xc4, 0xf3, 0x90, 0x0e, 0x83, 0x11, 0x73, 0x03, 0x5a, 0xfe, 0xfd, 0x0d, 0x88, 0xfb, 0xe6, 0xe0, 0x61, 0xf4, 0xc4, 0x10, 0xcc, 0x11, 0xde, 0x06, 0x50, 0x05, 0xd2, 0xf5, 0x3f, 0xe7, 0x89, 0xf9, 0x31, 0x0f, 0xb1, 0x14, 0x00, 0x08, 0xa2, 0xef, 0xa2, 0xeb, 0xee, 0xf9, 0x17, 0x0c, 0x27, 0x0d, 0x22, 0x12, 0x28, 0xfe, 0xd0, 0xe5, 0xbf, 0xed, 0x66, 0x05, 0x65, 0x12, 0xe3, 0x07, 0x7e, 0xfe, 0x34, 0xfb, 0x11, 0xfc, 0x25, 0x00, 0x53, 0x04, 0x8c, 0x0a, 0x62, 0x09, 0xc9, 0xf2, 0x30, 0xe6, 0xe2, 0xf9, 0x44, 0x11, 0x3d, 0x0e, 0x5d, 0xff, 0x01, 0xf7, 0x5b, 0xf6, 0x2f, 0xff, 0x17, 0x09, 0xd7, 0x06, 0xbe, 0x08, 0x64, 0x0a, 0x4c, 0xef, 0xc8, 0xe6, 0x76, 0xf9, 0x33, 0x10, 0xa4, 0x0d, 0xea, 0x0b, 0xa3, 0x07, 0x45, 0xe9, 0x50, 0xe7, 0x01, 0x00, 0x62, 0x14, 0x2c, 0x0a, 0x47, 0x07, 0xf8, 0x09, 0xc4, 0xea, 0xb4, 0xe3, 0x16, 0x00, 0x98, 0x15, 0xee, 0x0b, 0x20, 0x0e, 0x7f, 0xfe, 0x4e, 0xdf, 0xa4, 0xed, 0x25, 0x0e, 0x50, 0x14, 0x23, 0x04, 0xa0, 0xfb, 0x20, 0x09, 0x8a, 0xfe, 0x4b, 0xe6, 0x61, 0xf7, 0x0e, 0x0f, 0xb6, 0x0d, 0xbb, 0x05, 0x73, 0xfe, 0x50, 0xf4, 0x23, 0xf5, 0x4c, 0x01, 0xdb, 0x07, 0x69, 0x0b, 0x49, 0x14, 0x88, 0xf2, 0x41, 0xde, 0x94, 0xf3, 0xb7, 0x0e, 0xdd, 0x13, 0x51, 0x0d, 0x24, 0xff, 0xb4, 0xec, 0x91, 0xee, 0x37, 0x04, 0x5d, 0x0e, 0x78, 0x0d, 0x00, 0x0e, 0xa8, 0xf0, 0x9b, 0xe5, 0x18, 0xf6, 0x90, 0x0d, 0x8b, 0x10, 0xb2, 0x07, 0x9b, 0x00, 0x4f, 0xf2, 0x71, 0xf3, 0xc5, 0x03, 0xc9, 0x0a, 0x3d, 0x08, 0x1e, 0x06, 0xc5, 0xfa, 0x88, 0xed, 0xef, 0xf6, 0xe9, 0x08, 0xb0, 0x11, 0x9f, 0x08, 0x0b, 0xf2, 0xf2, 0xef, 0x66, 0xfe, 0x3c, 0x09, 0x9a, 0x05, 0x87, 0xfc, 0xb0, 0xff, 0xe5, 0x0d, 0x7f, 0x02, 0x12, 0xf1, 0x3a, 0xf6, 0x67, 0x01, 0xa4, 0x06, 0x13, 0x03, 0xef, 0x02, 0x70, 0x04, 0x61, 0xfc, 0x2a, 0xf8, 0x71, 0xfc, 0x36, 0x01, 0xd1, 0x02, 0xbd, 0x01, 0x40, 0x01, 0xaf, 0x01, 0x8d, 0x02, 0x13, 0x02, 0xdb, 0xfe, 0x8d, 0xfb, 0x01, 0xfd, 0x03, 0x02, 0x13, 0x05, 0xd7, 0xfd, 0xcc, 0xf8, 0x8b, 0xfd, 0x1b, 0x03, 0x70, 0x00, 0x95, 0xfd, 0x85, 0x02, 0xf4, 0x04, 0x47, 0x02, 0x94, 0xfe, 0xc7, 0xfd, 0x80, 0xff, 0xf4, 0x00, 0xe5, 0x01, 0x64, 0x01, 0x10, 0x00, 0x81, 0xfc, 0x35, 0xf9, 0x84, 0xfe, 0xfb, 0x05, 0x82, 0x05, 0x75, 0x08, 0x3f, 0x0e, 0x0e, 0xee, 0x41, 0xdc, 0x05, 0xfc, 0xb9, 0x19, 0xfa, 0x16, 0x09, 0x03, 0x74, 0xed, 0xe4, 0xee, 0xae, 0x06, 0x34, 0x0b, 0x1b, 0x02, 0x2b, 0xfc, 0x8c, 0xfa, 0xf9, 0xfc, 0xbb, 0x02, 0xb2, 0x09, 0x84, 0x09, 0x01, 0xf9, 0x37, 0xf2, 0x72, 0xfb, 0x3b, 0x05, 0x66, 0x08, 0x1f, 0x03, 0x81, 0xfc, 0x64, 0xfb, 0x9d, 0xfe, 0xa0, 0x01, 0xb1, 0x02, 0x76, 0x01, 0xea, 0xfe, 0x27, 0xfe, 0x39, 0xff, 0xb8, 0x00, 0xb6, 0x00, 0x4d, 0x00, 0xe4, 0xfb, 0x6d, 0xfa, 0x99, 0x03, 0x04, 0x07, 0xd3, 0x02, 0x0b, 0x00, 0x04, 0x0b, 0xcd, 0xfa, 0x27, 0xe8, 0xcd, 0xfb, 0x32, 0x12, 0xbc, 0x1c, 0xe1, 0xf6, 0x2e, 0xd9, 0xec, 0xf3, 0xa9, 0x14, 0x94, 0x12, 0xb2, 0x05, 0x87, 0x04, 0xc9, 0xf5, 0xfb, 0xe7, 0x1c, 0xfb, 0xac, 0x0d, 0x58, 0x0c, 0xc0, 0xfe, 0x95, 0x03, 0x9f, 0x12, 0x98, 0xf1, 0xbb, 0xdf, 0x02, 0xf6, 0xd9, 0x13, 0xae, 0x11, 0x2f, 0x0f, 0x37, 0x00, 0x41, 0xe4, 0xd1, 0xeb, 0x83, 0x06, 0xcd, 0x13, 0xb9, 0x08, 0x09, 0x08, 0x8b, 0x00, 0xc6, 0xe8, 0x4d, 0xed, 0x0f, 0x08, 0xba, 0x11, 0x4c, 0x06, 0x2d, 0xfb, 0xb7, 0x04, 0x7f, 0x09, 0xe6, 0xf1, 0x7f, 0xee, 0xd3, 0xfe, 0xbf, 0x09, 0x5f, 0x04, 0xdd, 0xfc, 0xfb, 0x00, 0xf5, 0x03, 0x6d, 0x0b, 0x8c, 0x0a, 0x13, 0xed, 0x46, 0xe5, 0xb4, 0x01, 0x98, 0x13, 0x0d, 0x13, 0x3a, 0x04, 0x81, 0xec, 0x3a, 0xef, 0x97, 0x00, 0x28, 0x0a, 0xf7, 0x04, 0xb3, 0xfd, 0x17, 0x07, 0xd5, 0x03, 0x67, 0xf5, 0x42, 0xf4, 0x87, 0xfe, 0x8f, 0x0b, 0xc3, 0x05, 0x59, 0x0b, 0xc7, 0x0a, 0x8e, 0xe9, 0x7f, 0xe5, 0xb1, 0xfe, 0x0f, 0x14, 0xad, 0x0c, 0x37, 0x07, 0xdc, 0x04, 0xa7, 0xef, 0x1a, 0xee, 0x6c, 0xfe, 0xf8, 0x08, 0xeb, 0x05, 0x51, 0x01, 0x87, 0x02, 0x97, 0x07, 0x1a, 0x00, 0xfb, 0xf2, 0x79, 0xf7, 0xb0, 0x00, 0x6b, 0x03, 0x1f, 0x06, 0xc5, 0x0f, 0xed, 0xfe, 0x01, 0xef, 0x1b, 0xf2, 0x6e, 0x00, 0x31, 0x0d, 0x21, 0x08, 0x2a, 0xff, 0x77, 0xfc, 0x2d, 0xff, 0x08, 0x00, 0x1d, 0x00, 0x25, 0x00, 0x62, 0x00, 0xb2, 0x00, 0xd1, 0x00, 0xe4, 0xfe, 0xad, 0xfd, 0x21, 0xff, 0xcc, 0x01, 0x97, 0x02, 0xdb, 0x02, 0xd3, 0xfc, 0x49, 0xf8, 0xdf, 0xfe, 0x67, 0x05, 0x27, 0x04, 0x3d, 0x08, 0x8e, 0x08, 0xb1, 0xe7, 0xf4, 0xeb, 0x8d, 0x09, 0x23, 0x24, 0xa4, 0x0c, 0x07, 0xde, 0x91, 0xe5, 0xdd, 0x02, 0x4d, 0x13, 0x04, 0x0a, 0x96, 0xff, 0xdd, 0xfd, 0xca, 0x00, 0xa1, 0xf9, 0x19, 0xfc, 0x67, 0x03, 0x1f, 0x13, 0x78, 0x0a, 0x41, 0xe7, 0x10, 0xe8, 0x8a, 0xff, 0xfe, 0x10, 0x31, 0x10, 0xef, 0x07, 0xa0, 0xf4, 0x21, 0xf1, 0x8c, 0xf9, 0x1d, 0x03, 0x27, 0x08, 0xcc, 0x0b, 0xaf, 0x0d, 0x66, 0xf2, 0x53, 0xe6, 0x8a, 0xfa, 0xc4, 0x10, 0xb9, 0x0c, 0x07, 0x0d, 0xae, 0x01, 0xc0, 0xe4, 0x2f, 0xea, 0x34, 0x08, 0x69, 0x14, 0x7f, 0x09, 0x1c, 0x0d, 0x26, 0xf7, 0x1e, 0xe0, 0x7a, 0xf5, 0xf4, 0x10, 0x0a, 0x11, 0x1c, 0x01, 0x22, 0xfe, 0x0c, 0x0b, 0x7f, 0xfd, 0xdb, 0xe0, 0xaa, 0xf5, 0xaa, 0x10, 0x29, 0x1b, 0x26, 0x0c, 0x33, 0xe9, 0x2c, 0xe5, 0xd3, 0xfc, 0xd7, 0x0f, 0x93, 0x16, 0xe5, 0x08, 0xf0, 0xec, 0x10, 0xe9, 0x0c, 0xfe, 0x6e, 0x0f, 0x5d, 0x0f, 0xcc, 0x0f, 0x12, 0xf2, 0x61, 0xe2, 0x40, 0xf7, 0x10, 0x12, 0x9e, 0x0d, 0x42, 0x08, 0x24, 0x0c, 0xae, 0xed, 0xd1, 0xe1, 0xed, 0xfb, 0xb5, 0x13, 0x79, 0x0f, 0x1f, 0xfe, 0x2f, 0x0b, 0x04, 0xfe, 0x5a, 0xde, 0x6d, 0xf8, 0xcb, 0x12, 0xa5, 0x0e, 0xe3, 0xff, 0xc1, 0xfd, 0x7d, 0xf9, 0x2e, 0xfa, 0x11, 0x02, 0xe3, 0x04, 0x49, 0x02, 0xcc, 0x01, 0xdd, 0xff, 0x75, 0xf9, 0x19, 0xfc, 0xa7, 0x02, 0xcf, 0x03, 0x5f, 0x02, 0xce, 0x07, 0x00, 0xfb, 0x59, 0xf0, 0x7e, 0xfe, 0xea, 0x08, 0x2f, 0x06, 0x3a, 0x00, 0x31, 0x01, 0x3e, 0x09, 0xb7, 0x06, 0x5b, 0xec, 0xa7, 0xe7, 0x35, 0x00, 0x2b, 0x10, 0x46, 0x0d, 0x21, 0xff, 0x63, 0xf4, 0x12, 0xfb, 0x3c, 0x07, 0x92, 0x09, 0x47, 0x0b, 0xa5, 0xff, 0xd1, 0xea, 0xc3, 0xef, 0x69, 0x0a, 0x98, 0x10, 0x9d, 0x00, 0x3d, 0xf8, 0xdf, 0xfc, 0x15, 0x02, 0x58, 0x01, 0x10, 0x00, 0xdd, 0xff, 0x00, 0x00, 0xa5, 0xff, 0x91, 0xfd, 0xae, 0xfb, 0x42, 0x01, 0x43, 0x06, 0xaa, 0x08, 0x59, 0x09, 0x06, 0xf8, 0xbd, 0xea, 0xd2, 0xfb, 0x62, 0x0b, 0xaa, 0x07, 0x3c, 0xfe, 0x20, 0xf7, 0x1f, 0xfd, 0x2c, 0x06, 0xfb, 0x06, 0xe0, 0x12, 0xc1, 0xfd, 0xa1, 0xe1, 0x2c, 0xee, 0x9f, 0x0b, 0xc4, 0x13, 0xff, 0x04, 0xe8, 0xfa, 0x65, 0xfc, 0xae, 0x01, 0xd4, 0x00, 0x30, 0xfe, 0xbe, 0xfe, 0xbb, 0x01, 0xa1, 0x03, 0x13, 0x02, 0xcf, 0xfd, 0x28, 0xfb, 0xe7, 0xfd, 0x48, 0x01, 0xc1, 0xfd, 0xbb, 0xfd, 0x4b, 0x01, 0x55, 0x03, 0x00, 0x01, 0x20, 0x00, 0x17, 0x02, 0x15, 0xff, 0x85, 0xfd, 0x7e, 0xfe, 0xd4, 0xff, 0xae, 0x01, 0x3e, 0x04, 0xfe, 0x00, 0x09, 0xfc, 0x3f, 0xfd, 0xbf, 0xff, 0x10, 0x01, 0xad, 0xfc, 0x6c, 0xfe, 0x65, 0x03, 0x84, 0x08, 0x26, 0x11, 0x15, 0xf8, 0x10, 0xe5, 0x19, 0xf3, 0x47, 0x0c, 0xee, 0x10, 0x18, 0x04, 0xfe, 0xfb, 0xe9, 0xfa, 0xc4, 0xfe, 0xe7, 0x01, 0xd9, 0x03, 0x28, 0x06, 0x01, 0x01, 0xb7, 0xf5, 0xeb, 0xf4, 0x45, 0x02, 0xac, 0x08, 0xb6, 0x00, 0x82, 0xfa, 0x11, 0x0e, 0xae, 0x08, 0x47, 0xed, 0xd7, 0xed, 0x43, 0xfe, 0x5f, 0x0e, 0x00, 0x0b, 0x8d, 0x02, 0x18, 0x07, 0xe1, 0xfe, 0x7c, 0xe9, 0x6a, 0xf3, 0x48, 0x0b, 0x3f, 0x11, 0x17, 0x0c, 0xc1, 0xfd, 0x1b, 0xec, 0x1a, 0xf2, 0xcb, 0x03, 0xa4, 0x0c, 0xf2, 0x07, 0xe3, 0xfd, 0xbe, 0xf9, 0x77, 0xfc, 0xf5, 0x00, 0x23, 0x03, 0x03, 0x03, 0x5d, 0xff, 0x8b, 0xfd, 0x83, 0xfc, 0xd0, 0xfa, 0xc9, 0x01, 0xfb, 0x06, 0x71, 0x03, 0x4d, 0xff, 0x71, 0x00, 0xb3, 0x03, 0xc1, 0xfa, 0xb5, 0xf8, 0x9e, 0xff, 0x1f, 0x06, 0x69, 0x01, 0x26, 0x0a, 0xf8, 0x16, 0x3d, 0xe6, 0x46, 0xd5, 0xa8, 0xff, 0x4b, 0x1d, 0x6a, 0x11, 0x9b, 0x07, 0x44, 0xff, 0xdb, 0xe3, 0x0a, 0xee, 0x8c, 0x0c, 0x1e, 0x15, 0xa2, 0x14, 0xa1, 0xf6, 0x64, 0xe4, 0x7f, 0xf5, 0xb2, 0x07, 0xc5, 0x0a, 0xc3, 0x03, 0x82, 0x00, 0xe7, 0x02, 0x23, 0x04, 0x95, 0xfc, 0xc1, 0xf7, 0xe2, 0xf9, 0xfd, 0x00, 0xb6, 0x00, 0x56, 0x00, 0x13, 0x04, 0x0d, 0x10, 0x90, 0x05, 0x52, 0xeb, 0x13, 0xed, 0xa9, 0x02, 0x21, 0x10, 0xed, 0x0b, 0xa4, 0x09, 0x38, 0xf7, 0xb0, 0xeb, 0x19, 0xf7, 0xe5, 0x03, 0xda, 0x09, 0x98, 0x06, 0x5f, 0x03, 0x17, 0x08, 0xc8, 0xff, 0x71, 0xec, 0xc0, 0xf0, 0xff, 0x05, 0x29, 0x0f, 0x2f, 0x0b, 0x97, 0x04, 0x61, 0xfa, 0xf3, 0xf1, 0x44, 0xf6, 0xf3, 0x02, 0xac, 0x08, 0x73, 0x05, 0x33, 0xff, 0x7e, 0xfa, 0x39, 0xf9, 0x7f, 0x02, 0xdc, 0x06, 0xe2, 0x09, 0x6d, 0x0a, 0x9c, 0xf2, 0x9a, 0xec, 0x84, 0xf9, 0x83, 0x06, 0x94, 0x0b, 0xd0, 0x04, 0xc1, 0x01, 0xaa, 0x07, 0x07, 0xfd, 0xf5, 0xe9, 0xcc, 0x01, 0x4f, 0x11, 0x9d, 0xfd, 0x37, 0xf1, 0x25, 0xf9, 0xec, 0x09, 0x22, 0x0a, 0x89, 0x03, 0x30, 0x05, 0x89, 0xfb, 0x2c, 0xee, 0x71, 0xfa, 0x2c, 0x0a, 0xcc, 0x0b, 0xb4, 0x09, 0xf1, 0x02, 0x3a, 0xef, 0x0f, 0xec, 0xf3, 0xfe, 0xc1, 0x0c, 0xfe, 0x0a, 0x3a, 0xfe, 0xfb, 0xfc, 0x87, 0x02, 0x0d, 0xfb, 0x11, 0xf7, 0x13, 0x02, 0x5c, 0x09, 0xae, 0x11, 0x0f, 0x02, 0x05, 0xe9, 0x28, 0xee, 0xfd, 0x02, 0x79, 0x0f, 0xc4, 0x0d, 0xac, 0x06, 0x22, 0xf3, 0xc6, 0xef, 0x9d, 0xfc, 0xee, 0x07, 0xb3, 0x07, 0x42, 0xfe, 0x41, 0xfd, 0xdd, 0x00, 0xb4, 0x10, 0x17, 0x07, 0xeb, 0xe9, 0x2c, 0xee, 0xca, 0xfe, 0x74, 0x0c, 0xb7, 0x08, 0x06, 0x06, 0x7c, 0x0d, 0xa9, 0xf5, 0xdf, 0xe5, 0xee, 0xf5, 0x4d, 0x10, 0xb6, 0x0d, 0x4a, 0x0b, 0x19, 0x09, 0x3f, 0xe6, 0x85, 0xe5, 0x2f, 0x06, 0xb6, 0x15, 0x47, 0x08, 0x2a, 0xff, 0x4b, 0x01, 0x2c, 0xf5, 0x6c, 0xf4, 0x13, 0x04, 0xd5, 0x0b, 0xc8, 0x12, 0x13, 0xfd, 0x72, 0xde, 0x14, 0xf2, 0x3d, 0x11, 0x5a, 0x11, 0xfc, 0x01, 0x69, 0xfd, 0xfe, 0x09, 0x2c, 0x00, 0x6e, 0xe8, 0xf0, 0xf0, 0x77, 0x09, 0x21, 0x13, 0x72, 0x05, 0x00, 0xf8, 0x8b, 0xf7, 0x42, 0xfe, 0xad, 0x03, 0xec, 0x05, 0x39, 0x02, 0x65, 0xfc, 0x94, 0xfb, 0x29, 0xfa, 0x8a, 0xff, 0xa3, 0x07, 0xbc, 0x05, 0xb4, 0x11, 0x73, 0xfd, 0xbc, 0xdf, 0xf1, 0xf0, 0x7f, 0x10, 0x2d, 0x11, 0xd6, 0x08, 0x9c, 0x0b, 0x8e, 0xe8, 0x88, 0xe2, 0x5b, 0x05, 0xff, 0x15, 0x24, 0x09, 0x7e, 0xff, 0x44, 0xff, 0x8c, 0xf5, 0x22, 0xf6, 0x8c, 0x05, 0xda, 0x06, 0x37, 0x0e, 0x12, 0x11, 0xc0, 0xe4, 0x0e, 0xdb, 0x53, 0x03, 0x00, 0x1a, 0x5f, 0x12, 0x14, 0x0c, 0xc6, 0xe9, 0x6b, 0xe2, 0x49, 0x03, 0xea, 0x14, 0xc8, 0x08, 0xfb, 0x06, 0x59, 0x08, 0x60, 0xe7, 0x0c, 0xe4, 0x9a, 0x07, 0x7c, 0x14, 0xc2, 0x12, 0xa0, 0x09, 0x4a, 0xe8, 0x25, 0xe4, 0x87, 0xff, 0xef, 0x13, 0x6a, 0x0c, 0x34, 0x01, 0x0b, 0x06, 0xe4, 0xf7, 0xf1, 0xe9, 0x41, 0xfc, 0x68, 0x0e, 0xb0, 0x09, 0x6f, 0x06, 0xaf, 0x0d, 0x0c, 0xef, 0xff, 0xe0, 0x89, 0xfa, 0xc5, 0x15, 0xab, 0x1a, 0x85, 0xfd, 0x47, 0xe9, 0x6a, 0xef, 0x24, 0x07, 0x27, 0x0e, 0x33, 0x11, 0x1b, 0x06, 0x71, 0xe8, 0x40, 0xe9, 0x31, 0x02, 0xdb, 0x12, 0x74, 0x09, 0x75, 0x02, 0xb3, 0x04, 0x21, 0xf5, 0xca, 0xeb, 0xb7, 0xff, 0x1c, 0x0e, 0x4c, 0x0e, 0x1c, 0x0d, 0xe2, 0xf1, 0xc7, 0xe4, 0x99, 0xf5, 0x68, 0x0e, 0x50, 0x0f, 0x3c, 0x0e, 0x03, 0x06, 0xb1, 0xe7, 0xdd, 0xe8, 0x73, 0x04, 0x93, 0x13, 0x16, 0x08, 0x08, 0xff, 0x5d, 0x02, 0x36, 0xf8, 0x57, 0xf3, 0xab, 0x01, 0xc2, 0x08, 0x87, 0x04, 0xfd, 0xfe, 0xe7, 0x03, 0xba, 0x05, 0x49, 0xf4, 0xd7, 0xf0, 0xad, 0x00, 0xcd, 0x0b, 0xc4, 0x06, 0x2b, 0x11, 0x8d, 0x02, 0x1c, 0xe0, 0x9c, 0xed, 0x30, 0x07, 0x7f, 0x11, 0x5f, 0x06, 0xb8, 0xfb, 0x31, 0xfa, 0x14, 0x00, 0x2b, 0x03, 0x3a, 0x0c, 0x67, 0x0b, 0x00, 0xef, 0xf5, 0xea, 0x1f, 0xfc, 0x87, 0x0b, 0x97, 0x0d, 0x6a, 0x09, 0x8f, 0xf7, 0xe3, 0xed, 0x67, 0xfc, 0xab, 0x11, 0x5b, 0x10, 0x49, 0xf6, 0x93, 0xef, 0x21, 0xfb, 0x52, 0x05, 0xe7, 0x05, 0x27, 0x06, 0x0d, 0x02, 0xee, 0xf9, 0xdd, 0xf9, 0x44, 0xff, 0xfb, 0x04, 0x8b, 0x04, 0xf1, 0xfe, 0x35, 0xfc, 0xed, 0xfd, 0x8e, 0x00, 0x6f, 0x02, 0xdb, 0x01, 0x2a, 0xff, 0x5d, 0xfd, 0x15, 0xfb, 0x43, 0xfe, 0x57, 0x05, 0x93, 0x06, 0x01, 0x09, 0xc0, 0x05, 0x9e, 0xed, 0xc0, 0xe9, 0xa3, 0x06, 0x34, 0x1c, 0x4f, 0x07, 0x88, 0xee, 0x04, 0xf1, 0xb5, 0xfc, 0x73, 0x07, 0xe5, 0x08, 0x33, 0x03, 0x66, 0xfe, 0xc8, 0xff, 0x4c, 0x06, 0xe7, 0x04, 0xea, 0xf4, 0xb1, 0xf1, 0x1d, 0x00, 0xb5, 0x13, 0x37, 0x08, 0xd8, 0xf0, 0x4a, 0xf0, 0xa3, 0xfd, 0xe9, 0x0b, 0xc7, 0x09, 0xc7, 0x05, 0xf0, 0x07, 0x5b, 0xf7, 0x36, 0xe8, 0x6d, 0xf8, 0x54, 0x0e, 0xdb, 0x18, 0x41, 0x03, 0x1a, 0xeb, 0xc4, 0xee, 0xb5, 0x00, 0xee, 0x0d, 0x07, 0x09, 0x06, 0xff, 0xe1, 0xfb, 0x96, 0x05, 0xc9, 0x0a, 0x58, 0xf5, 0x07, 0xed, 0x1d, 0xfc, 0xb4, 0x09, 0x95, 0x0a, 0x47, 0x02, 0xc6, 0xfb, 0x69, 0xfb, 0x4f, 0xfc, 0xd3, 0xfc, 0x53, 0x04, 0x1a, 0x06, 0x2b, 0x04, 0x23, 0x03, 0x33, 0x01, 0x69, 0x02, 0x5a, 0xf4, 0xb7, 0xf0, 0x0b, 0xfc, 0x9f, 0x0a, 0x82, 0x0a, 0xca, 0x0d, 0xe2, 0x04, 0xf5, 0xea, 0xbd, 0xec, 0xbd, 0xff, 0xcc, 0x0f, 0xf7, 0x0a, 0xd7, 0x09, 0x83, 0xff, 0x15, 0xec, 0x9b, 0xf0, 0xf3, 0x03, 0x61, 0x0f, 0xfe, 0x0d, 0xe5, 0xfd, 0x46, 0xf1, 0x43, 0xf7, 0xc5, 0xff, 0xd8, 0x04, 0x0e, 0x07, 0xe7, 0x0f, 0x29, 0xff, 0x7b, 0xec, 0xfe, 0xf0, 0xa7, 0x02, 0x89, 0x0e, 0x58, 0x07, 0x85, 0x01, 0x1b, 0x06, 0xfd, 0xf8, 0x7b, 0xec, 0x4d, 0xfd, 0x58, 0x0c, 0xcf, 0x0b, 0x61, 0x09, 0xd9, 0xfe, 0x85, 0xea, 0x5a, 0xef, 0x94, 0x06, 0x62, 0x14, 0xb4, 0x09, 0x44, 0xf6, 0x7a, 0xf3, 0x67, 0xfd, 0xeb, 0x03, 0x23, 0x04, 0xb6, 0x09, 0x5e, 0x00, 0x23, 0xf6, 0xb3, 0xf5, 0x45, 0xff, 0xf2, 0x09, 0x53, 0x06, 0xcb, 0x00, 0x83, 0xfc, 0x59, 0x02, 0x00, 0x13, 0x94, 0xf7, 0x48, 0xdf, 0x4b, 0xf5, 0x01, 0x12, 0xea, 0x11, 0x6f, 0x03, 0xc5, 0x03, 0x35, 0xfc, 0xfb, 0xeb, 0xe7, 0xf6, 0xd4, 0x0a, 0x4e, 0x0f, 0xd2, 0x06, 0xb2, 0xf3, 0xb2, 0xf3, 0xc7, 0x03, 0x75, 0x17, 0xce, 0x04, 0x7d, 0xe7, 0xf1, 0xec, 0x73, 0x01, 0x8b, 0x10, 0xe7, 0x09, 0xc3, 0x01, 0x70, 0x06, 0xe7, 0xfd, 0x08, 0xea, 0xe4, 0xf5, 0x2e, 0x0b, 0xc3, 0x10, 0x07, 0x03, 0xb3, 0xf2, 0x21, 0xf9, 0x9e, 0x07, 0x05, 0x1a, 0x57, 0xfe, 0xd7, 0xdf, 0x3f, 0xed, 0x62, 0x08, 0xfb, 0x15, 0x89, 0x13, 0x15, 0xfb, 0x6e, 0xe5, 0x3b, 0xf3, 0xb5, 0x0b, 0x96, 0x0f, 0x49, 0x03, 0x13, 0x06, 0x6c, 0xfe, 0x72, 0xe9, 0x41, 0xf6, 0x02, 0x0c, 0x01, 0x0d, 0x81, 0x08, 0x9a, 0x04, 0xc4, 0xf0, 0x31, 0xea, 0x83, 0x00, 0x9f, 0x0e, 0x8d, 0x09, 0x11, 0xff, 0xce, 0x09, 0x73, 0x02, 0xe0, 0xea, 0xd3, 0xed, 0x99, 0x02, 0x07, 0x0f, 0xef, 0x11, 0xc9, 0x08, 0xa5, 0xee, 0x86, 0xed, 0x71, 0xfa, 0xaa, 0x09, 0x50, 0x0b, 0x17, 0x03, 0xcf, 0xfc, 0xe9, 0xfd, 0x4d, 0xff, 0x99, 0x01, 0x56, 0x00, 0xed, 0x0e, 0xff, 0x0c, 0x14, 0xe0, 0xd2, 0xe0, 0x11, 0x09, 0xe8, 0x19, 0x79, 0x0c, 0xdc, 0x06, 0x26, 0xf9, 0x56, 0xe7, 0x9e, 0xf4, 0x3c, 0x0b, 0xe1, 0x17, 0x17, 0x06, 0xb4, 0xee, 0x28, 0xed, 0xca, 0x00, 0x0f, 0x0f, 0x71, 0x09, 0x66, 0x0e, 0xb1, 0xf7, 0xbe, 0xdf, 0xdc, 0xfa, 0x62, 0x11, 0x5a, 0x14, 0x35, 0x0d, 0x9c, 0xed, 0xff, 0xe3, 0x7c, 0xfa, 0x82, 0x10, 0x70, 0x0f, 0xd6, 0x0a, 0xf1, 0xfd, 0x9a, 0xeb, 0x27, 0xf3, 0xe3, 0x02, 0x19, 0x0c, 0xc7, 0x03, 0x5b, 0x07, 0x0a, 0x09, 0x9c, 0xf2, 0xd0, 0xec, 0x08, 0xfa, 0xa5, 0x0c, 0xaa, 0x0c, 0x7c, 0x10, 0xf5, 0xfc, 0x21, 0xe6, 0x68, 0xef, 0xe4, 0x07, 0xff, 0x11, 0xa4, 0x05, 0xf7, 0xfc, 0x4d, 0xff, 0xad, 0xfd, 0x6d, 0xf9, 0xce, 0x00, 0x79, 0x03, 0x91, 0x09, 0xb2, 0x15, 0xf3, 0xec, 0x3d, 0xd6, 0xe3, 0xff, 0x0b, 0x19, 0x33, 0x16, 0x5f, 0x0c, 0xc6, 0xe9, 0x61, 0xe1, 0xe1, 0xfe, 0x8e, 0x14, 0x74, 0x0c, 0xe8, 0x00, 0x4d, 0x0c, 0x79, 0xf5, 0xf8, 0xe0, 0xb5, 0xfa, 0xc1, 0x13, 0xc0, 0x0d, 0xf0, 0x0d, 0x1a, 0xff, 0xc1, 0xe0, 0x2b, 0xee, 0x54, 0x0c, 0xd2, 0x13, 0x3f, 0x06, 0x94, 0x06, 0x0f, 0xfd, 0x33, 0xe8, 0x67, 0xf1, 0xdf, 0x0c, 0x46, 0x0e, 0x3d, 0x0e, 0x2f, 0x08, 0x0f, 0xe9, 0xa1, 0xe6, 0x7a, 0xff, 0xc9, 0x12, 0xbc, 0x0d, 0x08, 0x0e, 0xd1, 0xf7, 0x56, 0xe3, 0xa3, 0xf4, 0x97, 0x0e, 0x24, 0x10, 0x1b, 0x03, 0x82, 0x01, 0x28, 0xf8, 0x09, 0xf3, 0xf9, 0x01, 0x0f, 0x08, 0x66, 0x0e, 0xb4, 0x0e, 0xf1, 0xe8, 0x01, 0xdf, 0x8c, 0x00, 0x96, 0x17, 0x81, 0x19, 0xa9, 0xfd, 0x21, 0xe9, 0xea, 0xef, 0x94, 0x01, 0x48, 0x0e, 0x72, 0x08, 0x17, 0xff, 0x9b, 0xfc, 0xb7, 0x05, 0xca, 0x00, 0x99, 0xf3, 0xdc, 0xfa, 0x66, 0x09, 0x41, 0x0b, 0x4d, 0xfc, 0xb4, 0xf1, 0x58, 0xfb, 0xd7, 0x07, 0x57, 0x0a, 0x0e, 0x15, 0x78, 0xf8, 0xa3, 0xdc, 0x2b, 0xf0, 0xba, 0x0e, 0x33, 0x14, 0x77, 0x07, 0x42, 0x0a, 0xb9, 0xf6, 0x9a, 0xe8, 0x42, 0xf5, 0xc1, 0x09, 0xda, 0x0e, 0xf9, 0x08, 0x37, 0x08, 0x6c, 0xf5, 0xa2, 0xec, 0x9a, 0xf7, 0x60, 0x05, 0x49, 0x0d, 0xe7, 0x04, 0xaf, 0x0b, 0xe1, 0x02, 0xc0, 0xe7, 0x30, 0xec, 0x97, 0x08, 0x66, 0x11, 0xa7, 0x0b, 0xa5, 0x0b, 0xed, 0xef, 0xd7, 0xe3, 0x90, 0xfb, 0xb3, 0x11, 0x7e, 0x14, 0x20, 0x09, 0x15, 0xec, 0x14, 0xe9, 0xf5, 0x00, 0xb3, 0x15, 0xb5, 0x13, 0x8e, 0xf2, 0xf1, 0xe5, 0x0c, 0xfe, 0xd5, 0x0f, 0x36, 0x14, 0xe2, 0x04, 0x61, 0xeb, 0xab, 0xed, 0xaf, 0xfd, 0xef, 0x0a, 0xd7, 0x0a, 0x9b, 0x02, 0xbb, 0x04, 0xaf, 0x04, 0x9a, 0xf1, 0xc1, 0xed, 0x97, 0x02, 0x6e, 0x0d, 0x5d, 0x0b, 0x85, 0x0e, 0x23, 0xf5, 0xe4, 0xe6, 0x79, 0xf8, 0x97, 0x07, 0x37, 0x09, 0x73, 0x02, 0xe2, 0x00, 0xd2, 0xff, 0x29, 0x0b, 0x3e, 0x0a, 0x82, 0xeb, 0x7e, 0xe7, 0x85, 0x01, 0xf2, 0x12, 0xd0, 0x0a, 0x88, 0x04, 0x7f, 0x03, 0x09, 0xf2, 0x8e, 0xeb, 0x95, 0x00, 0xdd, 0x0f, 0x39, 0x11, 0xc9, 0x01, 0x81, 0xee, 0x48, 0xf3, 0x10, 0x01, 0xf7, 0x06, 0x8a, 0x01, 0x76, 0x01, 0xfa, 0x00, 0x05, 0x0c, 0x76, 0x0b, 0xf1, 0xeb, 0xe4, 0xe6, 0xe3, 0x00, 0x3d, 0x13, 0x19, 0x0a, 0xc6, 0x01, 0x08, 0x00, 0x41, 0xf5, 0x0e, 0xf7, 0x67, 0x04, 0xb3, 0x12, 0xa8, 0x05, 0x31, 0xec, 0x5f, 0xf0, 0x53, 0x02, 0x51, 0x0a, 0x6b, 0x04, 0x29, 0xff, 0x66, 0x09, 0xfa, 0x05, 0x69, 0xf2, 0x7e, 0xf3, 0xbb, 0xfd, 0x2f, 0x07, 0xd6, 0x08, 0xfc, 0x09, 0xc0, 0xfe, 0x76, 0xf2, 0x4b, 0xf7, 0xbf, 0x02, 0x8f, 0x09, 0xbb, 0x03, 0x9d, 0xfc, 0x70, 0xf8, 0xba, 0xfb, 0x46, 0x05, 0x6f, 0x07, 0xca, 0x09, 0x7b, 0x05, 0x1e, 0xf2, 0xb1, 0xef, 0x87, 0xfe, 0x58, 0x07, 0x6f, 0x08, 0x8a, 0x05, 0x8d, 0xfc, 0x29, 0xf7, 0xe5, 0xf8, 0xc5, 0x03, 0xb9, 0x08, 0xa3, 0x04, 0x00, 0xff, 0xfd, 0xfb, 0x1d, 0xfd, 0x76, 0x00, 0x64, 0x01, 0x3f, 0x01, 0xbb, 0x01, 0x70, 0x0d, 0x3e, 0x09, 0xa6, 0xe5, 0x53, 0xe4, 0x5a, 0x05, 0x51, 0x19, 0x1f, 0x11, 0xee, 0xf7, 0x14, 0xf0, 0xce, 0xf6, 0xa5, 0x02, 0x4a, 0x08, 0xc0, 0x0d, 0xf6, 0x09, 0xd5, 0xef, 0x55, 0xea, 0x6b, 0x05, 0xcd, 0x13, 0x3f, 0x02, 0x88, 0xf5, 0xc1, 0xf4, 0xf5, 0x00, 0xa1, 0x09, 0xfe, 0x0a, 0x87, 0x08, 0x6e, 0xf4, 0x82, 0xee, 0xac, 0xfa, 0xbf, 0x06, 0xff, 0x07, 0x38, 0x0b, 0xba, 0x08, 0x93, 0xf2, 0x63, 0xef, 0x01, 0xfb, 0x5f, 0x07, 0x41, 0x0b, 0x2f, 0x0e, 0x1b, 0xfd, 0xc7, 0xed, 0x30, 0xf3, 0x59, 0x03, 0x0a, 0x0d, 0x7f, 0x06, 0x46, 0x04, 0x88, 0x06, 0x47, 0xf4, 0xc5, 0xea, 0x08, 0xff, 0x01, 0x0f, 0x65, 0x0a, 0x79, 0xfe, 0xb0, 0x08, 0xb9, 0xfc, 0x97, 0xeb, 0x9c, 0xf4, 0x66, 0x05, 0xd7, 0x0d, 0xc9, 0x08, 0x75, 0x08, 0x92, 0xfb, 0x81, 0xe9, 0x81, 0xf5, 0x7d, 0x0a, 0x24, 0x14, 0x9c, 0x0e, 0x79, 0xf1, 0x5e, 0xe9, 0x8a, 0xf8, 0x80, 0x0e, 0x69, 0x11, 0xe5, 0xfe, 0xd8, 0xf2, 0xf1, 0xf6, 0x83, 0x03, 0x0a, 0x09, 0xf3, 0x01, 0xf2, 0x08, 0x31, 0x03, 0x84, 0xef, 0x49, 0xf4, 0xdf, 0xfe, 0x0b, 0x07, 0x8e, 0x07, 0xab, 0x02, 0xa0, 0xfe, 0x4e, 0x01, 0x7d, 0x0a, 0xfa, 0x00, 0x59, 0xf3, 0x7e, 0xf3, 0xb9, 0xfc, 0xaf, 0x05, 0x8a, 0x06, 0xac, 0x04, 0x12, 0x06, 0xb3, 0x00, 0x70, 0xf5, 0x42, 0xf8, 0x73, 0x01, 0xa7, 0x06, 0x6c, 0x04, 0xd6, 0xfe, 0x19, 0xfc, 0x05, 0xf9, 0x7e, 0xff, 0xbc, 0x05, 0xa2, 0x11, 0x1a, 0x06, 0xfe, 0xeb, 0x4d, 0xed, 0xd0, 0xfe, 0x5a, 0x0e, 0xd5, 0x09, 0xaa, 0xff, 0xac, 0xfe, 0x4f, 0x09, 0x5d, 0x03, 0x4d, 0xe8, 0x63, 0xef, 0x6a, 0x09, 0xb1, 0x1a, 0x2f, 0x0e, 0x93, 0xec, 0xf8, 0xe6, 0x81, 0xfb, 0x7d, 0x10, 0x88, 0x0c, 0x73, 0x00, 0xab, 0x02, 0x5a, 0xff, 0xe1, 0xef, 0x59, 0xf9, 0x6f, 0x09, 0xf2, 0x14, 0x1f, 0x07, 0xf4, 0xe4, 0x4e, 0xe9, 0x31, 0x09, 0x9f, 0x13, 0x71, 0x11, 0xe3, 0xff, 0x8a, 0xe9, 0x64, 0xf0, 0x43, 0x02, 0xe1, 0x0b, 0x18, 0x07, 0x37, 0x01, 0x49, 0x0a, 0xae, 0xfe, 0xa1, 0xea, 0x22, 0xf3, 0xcf, 0x08, 0x9f, 0x0e, 0x2f, 0x04, 0x47, 0xfc, 0xef, 0x00, 0x54, 0x01, 0xb4, 0xf7, 0xb1, 0xfb, 0x2e, 0x08, 0xff, 0x14, 0x91, 0xfa, 0x66, 0xe5, 0xb7, 0xf2, 0x43, 0x07, 0x5e, 0x0d, 0xff, 0x0e, 0x9b, 0x07, 0xa8, 0xf0, 0x4a, 0xed, 0x71, 0xfb, 0x5c, 0x0c, 0x24, 0x0b, 0x4c, 0x01, 0xbd, 0x03, 0x89, 0x00, 0xa8, 0xef, 0x1b, 0xf7, 0xf7, 0x07, 0x12, 0x0b, 0x5e, 0x07, 0x4f, 0x05, 0xc1, 0xef, 0xa8, 0xec, 0x15, 0x02, 0xe9, 0x18, 0x2a, 0x14, 0x38, 0xed, 0x5e, 0xe2, 0xa5, 0xfa, 0x72, 0x11, 0x3e, 0x13, 0xd0, 0x0d, 0x14, 0xf0, 0x4a, 0xe4, 0x35, 0xfc, 0x24, 0x11, 0x57, 0x0c, 0x42, 0xff, 0xce, 0xff, 0x33, 0xfd, 0xe9, 0xf6, 0x39, 0xfe, 0x6f, 0x05, 0x7c, 0x04, 0xff, 0x03, 0x16, 0x12, 0xa6, 0xf5, 0x85, 0xd9, 0x10, 0xfa, 0x08, 0x18, 0xd8, 0x0e, 0xdf, 0x0d, 0xa1, 0xff, 0x7a, 0xe1, 0x54, 0xec, 0x87, 0x09, 0xed, 0x14, 0x64, 0x06, 0xd7, 0x0a, 0x13, 0xfd, 0x8c, 0xe4, 0xfe, 0xf0, 0x37, 0x0d, 0xfc, 0x0f, 0x14, 0x09, 0xac, 0x0b, 0xac, 0xef, 0xc8, 0xe3, 0xea, 0xfb, 0x44, 0x12, 0xc7, 0x0d, 0x08, 0xff, 0xc5, 0xff, 0xc5, 0xfd, 0x39, 0xf6, 0xa7, 0xfc, 0xea, 0x06, 0xcc, 0x04, 0xde, 0x12, 0xef, 0x03, 0xe0, 0xd9, 0x1e, 0xea, 0x3f, 0x11, 0xba, 0x17, 0xb3, 0x11, 0x2d, 0xfa, 0xa4, 0xe0, 0x96, 0xf3, 0xee, 0x0e, 0x5c, 0x10, 0x0a, 0x07, 0xb0, 0x05, 0x56, 0xf4, 0xdc, 0xe8, 0xa2, 0xfb, 0x8f, 0x0f, 0x95, 0x15, 0xdd, 0xff, 0xea, 0xec, 0xef, 0xf1, 0xd8, 0x01, 0x59, 0x0c, 0x32, 0x06, 0xd4, 0xff, 0x9b, 0xfc, 0x3e, 0x0a, 0x73, 0x07, 0x96, 0xe8, 0x1a, 0xee, 0xcc, 0x0f, 0xde, 0x1d, 0xbd, 0xfb, 0x4e, 0xe4, 0xf9, 0xf0, 0x3c, 0x0b, 0x00, 0x11, 0xe3, 0x04, 0x8f, 0x05, 0x9e, 0x00, 0x5c, 0xeb, 0xa4, 0xf0, 0x35, 0x09, 0x5e, 0x10, 0x2d, 0x0e, 0x62, 0xff, 0x24, 0xeb, 0x84, 0xf1, 0x9d, 0x03, 0x9d, 0x0e, 0x1f, 0x0a, 0x7f, 0xfc, 0x59, 0xf6, 0x10, 0xfb, 0x0e, 0xff, 0xb8, 0x06, 0x30, 0x0b, 0x67, 0xfd, 0x4a, 0xf5, 0x17, 0xf6, 0x52, 0x04, 0xa1, 0x08, 0xcc, 0x0c, 0x6a, 0x0a, 0xda, 0xee, 0x72, 0xec, 0x69, 0xfb, 0xda, 0x08, 0x61, 0x0a, 0xa5, 0x03, 0xc4, 0x01, 0xef, 0x04, 0x65, 0xfb, 0x71, 0xf1, 0xc9, 0xfa, 0x68, 0x09, 0x97, 0x0b, 0xc1, 0xfd, 0x29, 0xf5, 0xa2, 0xfe, 0xdf, 0x04, 0x77, 0x0d, 0x19, 0x0a, 0xbd, 0xed, 0x4b, 0xec, 0x24, 0xfe, 0xc9, 0x0a, 0x4d, 0x0a, 0xe3, 0x07, 0x3f, 0xfe, 0x60, 0xf3, 0x6b, 0xfc, 0x7a, 0x04, 0x97, 0x03, 0xec, 0xff, 0x85, 0xfd, 0xdf, 0xfd, 0x29, 0x03, 0xe7, 0x05, 0x42, 0xff, 0x81, 0xf8, 0x1a, 0xf9, 0xe6, 0x00, 0x31, 0x0d, 0x85, 0x0d, 0xdc, 0xf6, 0x4c, 0xf0, 0x25, 0xfb, 0x26, 0x06, 0x06, 0x05, 0x67, 0xfd, 0xd2, 0xfe, 0x5b, 0x03, 0x4d, 0x03, 0x8d, 0x02, 0xa2, 0x01, 0x0d, 0xfa, 0x3e, 0xf9, 0x45, 0x01, 0x80, 0x05, 0x82, 0x05, 0x7c, 0x04, 0x5c, 0xfa, 0x30, 0xf0, 0x22, 0xfe, 0x86, 0x09, 0xe4, 0x16, 0xc2, 0x07, 0xfb, 0xe1, 0x12, 0xe8, 0xc7, 0x02, 0x20, 0x14, 0x74, 0x09, 0xb1, 0x03, 0x7f, 0x0a, 0x46, 0xf4, 0xdc, 0xe8, 0xb5, 0xf8, 0x28, 0x0d, 0xb7, 0x0d, 0xb5, 0x03, 0xb7, 0x07, 0x9b, 0xfc, 0x47, 0xe9, 0x50, 0xfa, 0x0f, 0x0d, 0x73, 0x07, 0xd8, 0xfb, 0x39, 0xfa, 0x3e, 0x00, 0x89, 0x02, 0xe2, 0x00, 0x8f, 0x06, 0xec, 0x0c, 0xf1, 0xf6, 0x16, 0xed, 0x32, 0xf9, 0x5f, 0x07, 0xd5, 0x0f, 0xcb, 0x03, 0x62, 0xf8, 0x22, 0xf6, 0x65, 0xfa, 0xb2, 0x05, 0x8a, 0x08, 0x85, 0x02, 0xd9, 0xfd, 0x23, 0xff, 0x5c, 0xff, 0xd0, 0xfe, 0x1c, 0x00, 0xdc, 0x00, 0x7d, 0x00, 0x53, 0x00, 0x2c, 0x00, 0xa6, 0xfe, 0xe1, 0xfe, 0x52, 0x00, 0xbe, 0x00, 0xa9, 0x00, 0xec, 0xff, 0x7e, 0xff, 0x9c, 0xff, 0x3d, 0x00, 0xf8, 0xff, 0x26, 0x00, 0x16, 0x00, 0x7f, 0x0a, 0x15, 0x0e, 0x47, 0xed, 0x10, 0xe0, 0xe6, 0xff, 0xe2, 0x15, 0x7f, 0x0d, 0xe9, 0xfc, 0xbb, 0x03, 0xab, 0x04, 0xc2, 0xef, 0x69, 0xf2, 0x77, 0x02, 0xc7, 0x0a, 0xf8, 0x05, 0x96, 0xfb, 0x40, 0xfa, 0x75, 0x02, 0xc6, 0x08, 0x49, 0x0a, 0x59, 0xfb, 0x27, 0xef, 0xd0, 0xf8, 0x0e, 0x07, 0xe0, 0x08, 0xbe, 0x01, 0x05, 0xfd, 0xd5, 0xfa, 0x8d, 0xfb, 0xf4, 0x01, 0x07, 0x06, 0x11, 0x03, 0x77, 0xff, 0x8d, 0x02, 0x78, 0x0b, 0x3e, 0xff, 0xb7, 0xeb, 0x81, 0xf2, 0x25, 0x03, 0xed, 0x09, 0xe8, 0x06, 0x3d, 0x03, 0xf7, 0x06, 0xe1, 0xfe, 0x57, 0xf2, 0x67, 0xf7, 0x2f, 0x00, 0xc3, 0x04, 0xcf, 0x05, 0xaf, 0x02, 0xa2, 0x01, 0xd1, 0x02, 0xf8, 0xff, 0x4f, 0xf7, 0x49, 0xf9, 0x39, 0x02, 0x87, 0x0e, 0x31, 0x12, 0x31, 0xf0, 0x4c, 0xe5, 0x78, 0xf8, 0xe2, 0x0c, 0x14, 0x0f, 0x9d, 0x0a, 0x21, 0xff, 0xca, 0xf0, 0xda, 0xf5, 0x0a, 0x01, 0xbf, 0x08, 0x35, 0x09, 0x7b, 0x01, 0x50, 0xf6, 0x4a, 0xf6, 0xb9, 0xff, 0xc0, 0x0e, 0xf7, 0x0d, 0x80, 0xf6, 0x46, 0xed, 0x96, 0xf8, 0x57, 0x0a, 0x4b, 0x15, 0x6b, 0x04, 0x7b, 0xed, 0x17, 0xef, 0xae, 0x01, 0x1f, 0x0e, 0x64, 0x08, 0x08, 0x08, 0xeb, 0x00, 0x9c, 0xec, 0xd8, 0xef, 0x4b, 0x05, 0x72, 0x10, 0xe2, 0x0d, 0x0b, 0xfc, 0xdf, 0xef, 0xee, 0xf7, 0x87, 0x03, 0xce, 0x09, 0xce, 0x04, 0x9b, 0xfc, 0x55, 0xfa, 0x23, 0x00, 0x0d, 0x03, 0x89, 0xff, 0x58, 0xfa, 0x8a, 0xfe, 0x8a, 0x05, 0x55, 0x0e, 0xec, 0x05, 0x87, 0xee, 0x51, 0xf0, 0x72, 0xfe, 0x9f, 0x0e, 0xdf, 0x0e, 0x5f, 0xfc, 0x72, 0xf2, 0x3f, 0xf5, 0x47, 0x03, 0x2f, 0x0b, 0xe3, 0x04, 0x41, 0x00, 0xaf, 0x02, 0x15, 0xfb, 0x68, 0xf4, 0x49, 0x01, 0xb7, 0x05, 0x72, 0x11, 0x8f, 0x0c, 0x42, 0xe3, 0xe6, 0xe1, 0x77, 0x07, 0x2c, 0x16, 0xab, 0x11, 0x09, 0x08, 0x2f, 0xea, 0x00, 0xe7, 0x21, 0x01, 0x39, 0x12, 0xfa, 0x09, 0x76, 0x01, 0x56, 0x04, 0xe1, 0xf6, 0x0b, 0xee, 0x6e, 0xff, 0x94, 0x0b, 0x27, 0x08, 0x0f, 0xff, 0xe5, 0x0d, 0xad, 0x02, 0xcd, 0xdf, 0x8e, 0xec, 0xf6, 0x0e, 0xcf, 0x14, 0x4b, 0x12, 0xe9, 0xfc, 0x96, 0xe3, 0x65, 0xef, 0xe7, 0x08, 0xa8, 0x12, 0xc5, 0x03, 0xe7, 0x08, 0x94, 0x04, 0xa6, 0xe5, 0xc6, 0xec, 0xdd, 0x09, 0xcc, 0x12, 0xca, 0x04, 0x14, 0x00, 0x8c, 0x00, 0xc0, 0xf3, 0x73, 0xf7, 0xb4, 0x05, 0xaa, 0x08, 0x2b, 0x04, 0xc7, 0x04, 0x14, 0xfa, 0xf1, 0xf1, 0x73, 0xfc, 0x34, 0x13, 0xbe, 0x10, 0xa7, 0xec, 0x4b, 0xe6, 0x83, 0x00, 0xf4, 0x18, 0x7c, 0x0b, 0xa3, 0xf6, 0xf2, 0xf3, 0x2f, 0xfc, 0xcc, 0x01, 0x7c, 0x04, 0xb9, 0x03, 0x8b, 0x06, 0x7d, 0x0a, 0x94, 0xf6, 0x53, 0xed, 0x7b, 0xf7, 0x48, 0x08, 0xf1, 0x0c, 0x63, 0x03, 0xab, 0xfe, 0x1d, 0x02, 0xe1, 0xfa, 0x59, 0xf7, 0xc9, 0x01, 0x8c, 0x05, 0xac, 0x08, 0x6e, 0x12, 0x13, 0xf0, 0xf3, 0xda, 0x13, 0xfe, 0xcb, 0x16, 0x6d, 0x0e, 0x96, 0xff, 0x28, 0x09, 0x48, 0xf9, 0x3a, 0xe2, 0x2a, 0xfb, 0x24, 0x11, 0xf1, 0x18, 0xfc, 0x04, 0xd3, 0xe8, 0xb8, 0xeb, 0xaf, 0x00, 0xe1, 0x0e, 0x9c, 0x0c, 0x0d, 0x0b, 0xe7, 0xf6, 0x54, 0xec, 0xcc, 0xf5, 0xab, 0x07, 0x14, 0x0d, 0x9a, 0x07, 0xc0, 0x0a, 0x01, 0xf5, 0xe5, 0xe4, 0x9a, 0xfe, 0xae, 0x0f, 0xa0, 0x10, 0xd7, 0x0c, 0x3a, 0xf0, 0x5d, 0xe7, 0x3e, 0xf8, 0x8f, 0x0b, 0x5d, 0x0e, 0xf9, 0x02, 0x91, 0x00, 0xa1, 0x03, 0x67, 0xf7, 0xfe, 0xf1, 0x84, 0x01, 0x12, 0x0a, 0x64, 0x0b, 0x9a, 0x0c, 0xdc, 0xf0, 0x50, 0xe2, 0xf3, 0xfc, 0x8d, 0x12, 0xac, 0x10, 0xd6, 0x0b, 0x09, 0xf5, 0x8b, 0xe8, 0x21, 0xf7, 0x60, 0x0a, 0x87, 0x0d, 0x05, 0x03, 0xfe, 0xfb, 0x27, 0x04, 0x50, 0x09, 0xbe, 0xf4, 0xc5, 0xef, 0x73, 0xfd, 0x18, 0x0a, 0x3c, 0x09, 0x49, 0x00, 0xc2, 0xf9, 0x4e, 0xf8, 0x47, 0x00, 0x3b, 0x07, 0x3c, 0x07, 0xd4, 0x09, 0xc7, 0xfd, 0x48, 0xee, 0xd9, 0xf5, 0xdb, 0x03, 0x94, 0x07, 0xb4, 0xff, 0xe8, 0x00, 0xf5, 0x00, 0xbc, 0x0d, 0x17, 0x09, 0x82, 0xea, 0x62, 0xe9, 0xb9, 0x03, 0xd1, 0x11, 0x19, 0x10, 0xc8, 0x06, 0x25, 0xea, 0x61, 0xea, 0xe3, 0x04, 0xe9, 0x10, 0xdf, 0x09, 0xbe, 0x07, 0xad, 0xfa, 0xf8, 0xe9, 0xca, 0xf4, 0xa8, 0x08, 0x2c, 0x0d, 0x6f, 0x05, 0xf8, 0xff, 0x63, 0x05, 0xe2, 0xfe, 0x27, 0xf0, 0xef, 0xf6, 0x28, 0x04, 0xa0, 0x09, 0x06, 0x05, 0xe2, 0xfe, 0xb1, 0xf9, 0x2e, 0xfa, 0x2b, 0x02, 0xf4, 0x0e, 0x13, 0x06, 0x96, 0xf3, 0xb1, 0xf4, 0xd5, 0xfc, 0x05, 0x03, 0xdc, 0x07, 0x3b, 0x03, 0x44, 0x09, 0x3a, 0x09, 0x38, 0xec, 0xa4, 0xe9, 0x29, 0x03, 0x1f, 0x13, 0x14, 0x14, 0x4d, 0xfc, 0x14, 0xe6, 0xdf, 0xf2, 0xdd, 0x0a, 0x0a, 0x0f, 0x19, 0x09, 0x4b, 0x05, 0x23, 0xf2, 0xa7, 0xec, 0x5b, 0xfd, 0xbe, 0x0d, 0x93, 0x10, 0x4f, 0xfe, 0xd4, 0xf2, 0xe2, 0xf4, 0xc8, 0x00, 0x78, 0x0a, 0xe7, 0x0e, 0x0b, 0x05, 0xdb, 0xec, 0xe6, 0xed, 0x6f, 0x03, 0x0e, 0x10, 0x63, 0x05, 0x46, 0x08, 0xd0, 0x06, 0x6a, 0xe9, 0x28, 0xea, 0x8e, 0x04, 0x91, 0x12, 0x58, 0x09, 0x88, 0x07, 0xf0, 0xfe, 0xae, 0xe9, 0xc4, 0xf1, 0x82, 0x07, 0x4d, 0x0f, 0xaf, 0x03, 0xea, 0x08, 0xad, 0x03, 0x30, 0xec, 0x64, 0xee, 0xb8, 0x00, 0x07, 0x0f, 0x4f, 0x09, 0xbb, 0x00, 0xd6, 0x05, 0x4b, 0xfd, 0xca, 0xec, 0xc2, 0xf8, 0xd5, 0x11, 0x1d, 0x10, 0x5e, 0xef, 0x91, 0xef, 0xe6, 0x04, 0x6f, 0x15, 0xcc, 0x0c, 0x03, 0xef, 0xee, 0xec, 0xdd, 0xfb, 0x64, 0x07, 0xae, 0x08, 0xe7, 0x03, 0x45, 0x02, 0x47, 0x0a, 0xad, 0xfc, 0xa5, 0xec, 0x1f, 0xf4, 0x1f, 0x05, 0x67, 0x0d, 0x8c, 0x06, 0x5b, 0x04, 0xa6, 0x04, 0xc8, 0xef, 0x86, 0xed, 0x5b, 0x05, 0x04, 0x12, 0x72, 0x13, 0xe3, 0xf6, 0xe1, 0xe3, 0x45, 0xf8, 0x0e, 0x0d, 0x23, 0x11, 0x6f, 0x0d, 0x0b, 0xf5, 0xef, 0xea, 0x3c, 0xf8, 0x0f, 0x06, 0xf7, 0x0b, 0xcf, 0x03, 0xf7, 0xfd, 0xd5, 0xfb, 0x98, 0x09, 0x3e, 0x10, 0x8c, 0xf0, 0xd6, 0xe8, 0x8c, 0xfa, 0xdf, 0x08, 0x8e, 0x0b, 0x33, 0x03, 0x77, 0x03, 0xfa, 0x0a, 0xe1, 0xf6, 0x3f, 0xea, 0x81, 0xf8, 0xd5, 0x0b, 0x0f, 0x0d, 0x4d, 0x03, 0x24, 0x05, 0xcd, 0xfe, 0x7e, 0xed, 0x9c, 0xf4, 0x1a, 0x09, 0x94, 0x0e, 0xbc, 0x0c, 0x9b, 0xfc, 0xf4, 0xeb, 0xe0, 0xf4, 0x23, 0x07, 0xc8, 0x0b, 0x49, 0x03, 0xbe, 0xfa, 0x34, 0xf7, 0x91, 0x00, 0x98, 0x06, 0x73, 0x05, 0x97, 0xfd, 0x18, 0x08, 0xae, 0x09, 0x9a, 0xee, 0xb4, 0xec, 0x4f, 0xfc, 0xb8, 0x0c, 0xe7, 0x0b, 0xcb, 0x02, 0x2f, 0x0a, 0xe5, 0xfb, 0x25, 0xe7, 0x00, 0xf6, 0x42, 0x0d, 0x3f, 0x0e, 0xb1, 0x08, 0xdb, 0x03, 0x85, 0xea, 0x94, 0xed, 0x1d, 0x09, 0xef, 0x1b, 0x4e, 0x06, 0x22, 0xea, 0x5a, 0xec, 0xc9, 0x02, 0x4f, 0x10, 0x55, 0x08, 0x9f, 0x0c, 0xf6, 0xfa, 0x36, 0xe5, 0xf8, 0xf3, 0x0a, 0x0d, 0x8f, 0x0f, 0x25, 0x02, 0xfd, 0xfa, 0xdd, 0xfc, 0xe0, 0x00, 0x0a, 0x01, 0x6e, 0x00, 0x65, 0x00, 0xdf, 0x00, 0xe7, 0xff, 0x9f, 0xfe, 0xa9, 0xfe, 0x1d, 0x00, 0x1b, 0xfe, 0xb5, 0x00, 0x10, 0x12, 0x61, 0xfe, 0x30, 0xe7, 0x3c, 0xf2, 0x5f, 0x06, 0x4c, 0x11, 0x76, 0x05, 0x13, 0x07, 0x8f, 0x06, 0xe8, 0xeb, 0x70, 0xeb, 0x6c, 0x04, 0x53, 0x11, 0xeb, 0x07, 0xc6, 0x05, 0x11, 0x02, 0x83, 0xec, 0x80, 0xee, 0x0b, 0x07, 0x6b, 0x10, 0x5d, 0x0e, 0xdc, 0x00, 0xdf, 0xec, 0x06, 0xf0, 0xdd, 0x00, 0xad, 0x12, 0xef, 0x0d, 0xad, 0xf8, 0x4f, 0xf1, 0xe8, 0xf8, 0xcd, 0x03, 0xa0, 0x0d, 0x84, 0x0b, 0x89, 0xf6, 0x48, 0xef, 0x2f, 0xfc, 0x77, 0x09, 0x06, 0x08, 0xfc, 0x01, 0x36, 0x09, 0xab, 0xfd, 0x28, 0xee, 0x89, 0xf6, 0xad, 0x03, 0xdd, 0x09, 0x86, 0x09, 0x4f, 0x02, 0x46, 0xf7, 0x88, 0xf8, 0xa9, 0xfe, 0x86, 0x00, 0x6b, 0x02, 0xb6, 0x04, 0x9d, 0x0e, 0x65, 0x00, 0x20, 0xea, 0x49, 0xf1, 0x05, 0x0a, 0x48, 0x0d, 0xfd, 0x0b, 0x08, 0x09, 0x43, 0xeb, 0xa1, 0xe7, 0x66, 0x01, 0x69, 0x12, 0x96, 0x09, 0x91, 0x00, 0x34, 0x04, 0xf4, 0xf6, 0x53, 0xef, 0x52, 0x00, 0xcc, 0x0b, 0x71, 0x08, 0x7b, 0x07, 0x25, 0xfe, 0x9e, 0xed, 0xa9, 0xf2, 0x93, 0x07, 0xef, 0x0a, 0x4f, 0x0d, 0x9a, 0x0a, 0x3e, 0xed, 0x82, 0xe8, 0x19, 0xfc, 0xd1, 0x0f, 0xc2, 0x0c, 0x49, 0x01, 0xc1, 0xfb, 0xf9, 0xfb, 0x97, 0xfd, 0x27, 0x01, 0x45, 0x02, 0xa7, 0x06, 0x1f, 0x12, 0x2c, 0xf6, 0x11, 0xe2, 0x1c, 0xf4, 0xc5, 0x0a, 0xbb, 0x11, 0x23, 0x05, 0x66, 0x08, 0x7a, 0xff, 0xc0, 0xec, 0xe6, 0xf0, 0x1e, 0x05, 0x67, 0x0e, 0xe8, 0x09, 0xe8, 0x0a, 0x38, 0xf1, 0xdc, 0xe6, 0x9a, 0x01, 0x0e, 0x10, 0xac, 0x0d, 0xf6, 0x09, 0x6b, 0xf3, 0x3e, 0xe5, 0xa1, 0xfa, 0x31, 0x0f, 0xd9, 0x10, 0x8f, 0x0d, 0x6e, 0xf4, 0xbe, 0xe8, 0xe6, 0xf6, 0x79, 0x0a, 0x56, 0x0d, 0xfb, 0x06, 0x41, 0xff, 0x50, 0xf4, 0x59, 0xf9, 0x66, 0x06, 0xa1, 0x0c, 0x51, 0xff, 0xcb, 0xf2, 0x21, 0xff, 0xcc, 0x0c, 0x5e, 0xfe, 0x8b, 0xf4, 0x55, 0xfa, 0xe4, 0x01, 0xf7, 0x05, 0xfd, 0x03, 0xe2, 0x00, 0x9b, 0xff, 0x58, 0x00, 0x73, 0x00, 0xe6, 0xff, 0x33, 0xff, 0xe1, 0xff, 0xfe, 0x00, 0xc7, 0x01, 0x2d, 0xff, 0x85, 0xf9, 0xb4, 0xfb, 0x27, 0x02, 0x92, 0x04, 0xdb, 0x02, 0x8c, 0xff, 0x7f, 0xfe, 0xea, 0xfe, 0x43, 0x00, 0x26, 0xff, 0x4f, 0xfd, 0x60, 0xfe, 0x15, 0x08, 0x67, 0x0c, 0xec, 0xf9, 0xce, 0xf0, 0x28, 0xf7, 0x27, 0x05, 0x0f, 0x0b, 0x8b, 0x04, 0xe7, 0x04, 0x0a, 0x05, 0x9e, 0xf1, 0xb0, 0xed, 0x15, 0x03, 0xc9, 0x0e, 0x3d, 0x0e, 0xc1, 0x03, 0x38, 0xed, 0x7f, 0xec, 0x41, 0x03, 0x5b, 0x11, 0x3a, 0x13, 0x72, 0xfb, 0xe0, 0xe7, 0x36, 0xf5, 0x5e, 0x11, 0xae, 0x0e, 0x59, 0xfa, 0x54, 0xf2, 0xe8, 0xf8, 0x0b, 0x07, 0x97, 0x09, 0xab, 0x03, 0xcf, 0xfc, 0xb4, 0xf9, 0xda, 0xff, 0x97, 0x02, 0x7f, 0x11, 0x92, 0x07, 0x4d, 0xe5, 0x6f, 0xe9, 0x1d, 0x03, 0x6e, 0x12, 0x15, 0x0e, 0x88, 0x06, 0x14, 0xf5, 0xac, 0xf0, 0xd8, 0xfb, 0xb2, 0x05, 0xa4, 0x06, 0xb5, 0x01, 0x34, 0x0b, 0xbb, 0x01, 0x11, 0xf0, 0x93, 0xf2, 0x5c, 0x00, 0x1d, 0x0c, 0x77, 0x07, 0xfb, 0x02, 0x7f, 0x07, 0xaa, 0xf9, 0x11, 0xea, 0x91, 0xfa, 0xef, 0x0c, 0x17, 0x0f, 0x52, 0x0a, 0x7c, 0xf6, 0xde, 0xec, 0x39, 0xf9, 0xd1, 0x03, 0x50, 0x08, 0x8c, 0x05, 0xf3, 0x01, 0x42, 0x0d, 0x91, 0xfb, 0x61, 0xe5, 0x40, 0xf8, 0xb7, 0x0e, 0xcf, 0x0d, 0xff, 0x04, 0x91, 0xfa, 0x0e, 0xf3, 0x7d, 0xfc, 0xc7, 0x06, 0xa7, 0x06, 0x12, 0x05, 0x89, 0x02, 0x0e, 0xf7, 0x30, 0xf3, 0xc2, 0xff, 0x1d, 0x0a, 0xd4, 0x0c, 0xe5, 0x03, 0xb2, 0xf0, 0x61, 0xf1, 0x06, 0x01, 0x2a, 0x0a, 0xab, 0x07, 0xef, 0xff, 0xc0, 0xfb, 0xa2, 0xfb, 0x31, 0xfc, 0x70, 0x01, 0x04, 0x08, 0x80, 0x0c, 0x4e, 0xfe, 0x5c, 0xf0, 0xcf, 0xf6, 0x17, 0x00, 0x7c, 0x06, 0x73, 0x06, 0x6f, 0x03, 0xa6, 0x04, 0x04, 0x04, 0x7a, 0xf8, 0xd9, 0xf2, 0x6d, 0xfc, 0xe7, 0x05, 0xcb, 0x06, 0xea, 0x01, 0xe9, 0xfd, 0x5d, 0xfd, 0x89, 0xff, 0x0c, 0x01, 0x63, 0x01, 0xf0, 0xfe, 0x13, 0xfc, 0xa9, 0xfd, 0x10, 0x0c, 0x2e, 0x08, 0x99, 0xf5, 0xd0, 0xf1, 0x37, 0xfd, 0x80, 0x09, 0x67, 0x0c, 0x19, 0x0a, 0x0b, 0xf6, 0x76, 0xee, 0x1e, 0xfa, 0x02, 0x07, 0x07, 0x0c, 0x57, 0x08, 0xa5, 0xfa, 0x18, 0xf5, 0x0d, 0xfa, 0xf8, 0xff, 0x2f, 0x06, 0xb2, 0x05, 0xc7, 0x03, 0x25, 0x08, 0x75, 0xfe, 0xe8, 0xeb, 0xbf, 0xf4, 0x2d, 0x08, 0xb7, 0x0e, 0x5f, 0x11, 0x75, 0xf9, 0x32, 0xea, 0xc4, 0xf6, 0x88, 0x04, 0x87, 0x08, 0x5b, 0x04, 0x7f, 0x00, 0x57, 0xff, 0xa3, 0x01, 0x24, 0x01, 0x05, 0xfd, 0x09, 0xfc, 0x76, 0x00, 0xa3, 0x03, 0xcb, 0x04, 0x8d, 0x02, 0x1b, 0xfc, 0xd1, 0xf6, 0x41, 0xf9, 0x1d, 0x03, 0x74, 0x0a, 0xf8, 0x12, 0x39, 0xfb, 0xc8, 0xe6, 0xfb, 0xf5, 0x06, 0x08, 0x4f, 0x0c, 0x98, 0xff, 0x69, 0xfb, 0xdd, 0xff, 0xda, 0x0c, 0x7f, 0x0a, 0xa1, 0xf0, 0xc4, 0xed, 0xb8, 0xfb, 0xf0, 0x0b, 0xfc, 0x08, 0x85, 0x0b, 0x60, 0x04, 0xef, 0xed, 0x3b, 0xee, 0x48, 0xff, 0x1e, 0x0e, 0xff, 0x08, 0x47, 0xff, 0x29, 0xfd, 0xe2, 0x05, 0xc1, 0xfe, 0xec, 0xf2, 0xe5, 0xfb, 0xf4, 0x07, 0xce, 0x06, 0xb0, 0x11, 0x9e, 0xff, 0xd4, 0xde, 0x8c, 0xee, 0x93, 0x14, 0xff, 0x16, 0xd5, 0xfb, 0xec, 0xed, 0x16, 0xf9, 0x64, 0x0a, 0x05, 0x09, 0xf0, 0x04, 0x9e, 0x04, 0x17, 0xf6, 0x7f, 0xee, 0x39, 0xff, 0x20, 0x0c, 0xa7, 0x0c, 0x5f, 0x08, 0x02, 0xf5, 0x5e, 0xec, 0x39, 0xfb, 0x52, 0x0a, 0xea, 0x0b, 0xbe, 0x01, 0xd1, 0xf9, 0xf1, 0xfa, 0xfb, 0xfc, 0x32, 0xff, 0x8b, 0x03, 0x78, 0x05, 0x31, 0x01, 0xdd, 0x0c, 0x4f, 0x02, 0x47, 0xe4, 0xea, 0xf1, 0x07, 0x0d, 0xa0, 0x0f, 0xc3, 0x03, 0x0f, 0x0b, 0x82, 0xfa, 0xba, 0xe6, 0x27, 0xf3, 0x69, 0x0a, 0x7d, 0x10, 0xfb, 0x03, 0xa1, 0xfb, 0x57, 0xfc, 0x65, 0x00, 0xd6, 0x00, 0x73, 0x00, 0xbb, 0x00, 0x8e, 0x07, 0xb4, 0x08, 0xf2, 0xf0, 0x10, 0xeb, 0x0d, 0x00, 0x1f, 0x17, 0xad, 0x10, 0x61, 0xf1, 0x31, 0xeb, 0xe9, 0xf9, 0xa1, 0x0c, 0xdd, 0x0a, 0x2b, 0x05, 0xd8, 0x0a, 0xcf, 0xf5, 0x13, 0xe8, 0x3e, 0xf9, 0x11, 0x0e, 0xa9, 0x0c, 0x4e, 0x06, 0xef, 0x05, 0x5b, 0xf4, 0x47, 0xef, 0x67, 0xfc, 0x9c, 0x08, 0x0c, 0x09, 0x61, 0x00, 0x49, 0xf9, 0x5f, 0xfc, 0xb3, 0x03, 0x1d, 0x03, 0xdd, 0x00, 0x23, 0x00, 0xc3, 0x10, 0xdc, 0x00, 0x05, 0xe6, 0x32, 0xef, 0xdb, 0x06, 0x81, 0x11, 0x94, 0x08, 0xb7, 0x07, 0x55, 0xfa, 0xb1, 0xec, 0x83, 0xf6, 0x86, 0x07, 0x27, 0x0e, 0x9f, 0x0a, 0xf5, 0xfb, 0xc0, 0xed, 0x0e, 0xf7, 0xb6, 0x07, 0xf5, 0x12, 0x5c, 0x09, 0x61, 0xf1, 0x0e, 0xee, 0xfa, 0xfa, 0x82, 0x0c, 0xf8, 0x08, 0xe4, 0x08, 0xaa, 0x07, 0x31, 0xef, 0x11, 0xeb, 0xb7, 0xfe, 0xf0, 0x0e, 0xd7, 0x09, 0x2c, 0xff, 0x29, 0xfc, 0x1e, 0xff, 0xf6, 0xff, 0x4e, 0xff, 0x14, 0x00, 0x3c, 0x01, 0x8f, 0x02, 0x8d, 0x01, 0xf7, 0xfd, 0x01, 0xfc, 0xa7, 0x0a, 0x9d, 0x00, 0x4c, 0xee, 0xd3, 0xf7, 0x46, 0x05, 0x0f, 0x08, 0xf6, 0x01, 0x86, 0xff, 0xfb, 0xff, 0x75, 0x01, 0xcc, 0x05, 0x14, 0x0d, 0xca, 0xf3, 0x5d, 0xe6, 0x1f, 0xfd, 0xef, 0x15, 0xd4, 0x14, 0xfe, 0xf6, 0x5f, 0xea, 0x27, 0xf5, 0xb4, 0x09, 0x34, 0x0d, 0x6f, 0x03, 0x36, 0x01, 0xe1, 0xfb, 0x2c, 0xf6, 0xa1, 0xff, 0xb7, 0x05, 0xae, 0x09, 0xc6, 0x0e, 0x87, 0xf3, 0x71, 0xe1, 0x6d, 0xfa, 0x9d, 0x11, 0x5f, 0x13, 0xc0, 0x07, 0xb8, 0xf2, 0xd7, 0xef, 0xd7, 0xfc, 0xf0, 0x04, 0x5e, 0x05, 0x89, 0x03, 0x45, 0x02, 0x83, 0x07, 0xd5, 0xfe, 0x37, 0xed, 0x6d, 0xfa, 0x47, 0x0a, 0xc6, 0x0c, 0x3a, 0x0f, 0x71, 0xf5, 0x01, 0xe8, 0xb4, 0xf8, 0x2f, 0x09, 0x58, 0x0a, 0x31, 0x03, 0xe2, 0x01, 0x3b, 0xfc, 0xce, 0xf9, 0x94, 0xfb, 0x5a, 0x01, 0x48, 0x05, 0x75, 0x03, 0x5d, 0x02, 0x54, 0x0c, 0x09, 0xfd, 0xfe, 0xea, 0x91, 0xf4, 0x2c, 0x06, 0xc0, 0x0d, 0xb1, 0x0b, 0x1b, 0xff, 0xd2, 0xf2, 0x67, 0xf7, 0x87, 0x01, 0x9f, 0x05, 0x39, 0x02, 0x1b, 0xff, 0x12, 0x08, 0xbe, 0x07, 0xd6, 0xf4, 0x59, 0xf3, 0xf5, 0xfc, 0xeb, 0x05, 0x06, 0x08, 0x67, 0x09, 0x85, 0xfe, 0x80, 0xf4, 0x73, 0xf7, 0xe8, 0xfe, 0xd8, 0x07, 0x78, 0x07, 0x79, 0x01, 0xc1, 0xfb, 0x02, 0x07, 0xa7, 0x06, 0xa1, 0xf0, 0x5d, 0xef, 0x2b, 0x02, 0xc1, 0x0d, 0xb4, 0x0c, 0xa7, 0x04, 0x7a, 0xf3, 0x19, 0xf3, 0x32, 0xff, 0xbc, 0x06, 0x82, 0x04, 0x0f, 0xfd, 0x01, 0xfe, 0x59, 0x03, 0x3c, 0x09, 0x3b, 0x05, 0x09, 0xf5, 0x16, 0xf4, 0x09, 0xff, 0xfb, 0x03, 0x97, 0x02, 0xb7, 0x01, 0x83, 0x02, 0xe4, 0x01, 0x79, 0x0a, 0x07, 0x02, 0x28, 0xee, 0x68, 0xf3, 0x73, 0x02, 0x0f, 0x0b, 0xa0, 0x09, 0x9f, 0xfe, 0x40, 0xf5, 0xc2, 0xf9, 0xc8, 0x09, 0xbc, 0x0c, 0x51, 0xfb, 0x61, 0xf4, 0x96, 0xfb, 0x59, 0x03, 0xb1, 0x02, 0x83, 0x00, 0x82, 0x04, 0xe1, 0x08, 0xb5, 0xfb, 0x21, 0xf4, 0xd5, 0xfa, 0xfc, 0x04, 0xd6, 0x07, 0x1f, 0x01, 0xc4, 0xfb, 0x5c, 0xf9, 0xf7, 0xfe, 0xd4, 0x05, 0x28, 0x07, 0xca, 0x09, 0xf9, 0xfc, 0x40, 0xee, 0x18, 0xf6, 0x98, 0x09, 0xac, 0x0b, 0x1c, 0x00, 0x92, 0xf6, 0xb1, 0xf8, 0x03, 0x05, 0xcc, 0x07, 0x63, 0x02, 0x1b, 0x03, 0xfe, 0xff, 0x91, 0xf4, 0x12, 0xfa, 0x72, 0x05, 0xcb, 0x06, 0x25, 0x01, 0xe9, 0xfd, 0x33, 0xfe, 0x38, 0x00, 0x4a, 0x00, 0xa0, 0x00, 0x57, 0x02, 0x08, 0x0e, 0x7f, 0x04, 0x0f, 0xe6, 0xe1, 0xe8, 0xef, 0x04, 0x70, 0x13, 0x9f, 0x12, 0x77, 0x02, 0x2e, 0xef, 0xc0, 0xf3, 0xb2, 0xfe, 0x82, 0x05, 0x13, 0x06, 0x53, 0x03, 0xf2, 0xff, 0xaa, 0x0c, 0x73, 0x01, 0x83, 0xe7, 0x63, 0xf1, 0x6d, 0x0a, 0xa9, 0x0f, 0xc1, 0x0f, 0xaf, 0xfe, 0x6d, 0xe8, 0x6e, 0xf0, 0x6b, 0x06, 0xd1, 0x0f, 0x8c, 0x05, 0x3d, 0x02, 0x3f, 0x04, 0x1b, 0xf4, 0x51, 0xf1, 0xcf, 0x05, 0xbf, 0x0e, 0x8c, 0x00, 0x71, 0xf4, 0x38, 0xfa, 0x1f, 0x0a, 0x29, 0x09, 0xf8, 0xf9, 0xd0, 0xf5, 0xa5, 0xfa, 0x4f, 0x05, 0xe8, 0x07, 0xd7, 0x05, 0x6c, 0x04, 0x94, 0xf4, 0xe0, 0xf4, 0x69, 0x02, 0x40, 0x13, 0x41, 0x0c, 0x57, 0xec, 0x43, 0xea, 0x06, 0xff, 0xa9, 0x0f, 0x48, 0x0a, 0xcf, 0xfe, 0x3b, 0xfd, 0x5d, 0x08, 0xfa, 0xfe, 0x09, 0xf1, 0x7a, 0xf8, 0x16, 0x04, 0x0e, 0x09, 0x2f, 0x05, 0x2d, 0xfe, 0x41, 0xfb, 0x39, 0xfc, 0x57, 0xfd, 0x9f, 0x01, 0x9c, 0x05, 0x03, 0x04, 0x9f, 0x08, 0xb5, 0xfd, 0x5a, 0xec, 0x15, 0xfa, 0x3d, 0x13, 0x32, 0x0e, 0x2b, 0xf3, 0x36, 0xef, 0xea, 0xfb, 0x4f, 0x0a, 0x30, 0x07, 0xe7, 0x07, 0x7b, 0x05, 0xf0, 0xf2, 0xf1, 0xf1, 0x7f, 0xfc, 0x17, 0x09, 0xd6, 0x08, 0xaf, 0x06, 0xbb, 0x06, 0xf6, 0xf5, 0x46, 0xee, 0x05, 0xfc, 0x1c, 0x0a, 0x09, 0x0e, 0x1e, 0x05, 0xf2, 0xf5, 0x2c, 0xf5, 0x2b, 0xfe, 0xbb, 0x04, 0x8f, 0x06, 0x5b, 0x04, 0x03, 0xfd, 0x61, 0xfa, 0x63, 0xfd, 0x60, 0xfe, 0xdd, 0x00, 0x74, 0x05, 0xe7, 0x0d, 0x27, 0xff, 0x5c, 0xf0, 0x19, 0xf5, 0x7e, 0x01, 0x8f, 0x08, 0x68, 0x0c, 0x13, 0x07, 0x9a, 0xf3, 0x27, 0xf2, 0xd3, 0xfc, 0x3b, 0x07, 0x4c, 0x07, 0xc3, 0x01, 0xd0, 0xfe, 0x3d, 0xfd, 0x0b, 0x00, 0x4c, 0x01, 0xc6, 0x11, 0xb1, 0x02, 0x41, 0xe4, 0xac, 0xec, 0xd7, 0x07, 0xc1, 0x12, 0xcc, 0x08, 0xe6, 0x09, 0xd9, 0xf7, 0x30, 0xe9, 0xff, 0xf6, 0xb9, 0x0b, 0x46, 0x0d, 0xaf, 0x01, 0xce, 0xfb, 0xaf, 0xfe, 0x29, 0x02, 0xf7, 0xfe, 0x89, 0xfc, 0x93, 0xff, 0xdd, 0x02, 0xb3, 0x04, 0x95, 0x02, 0xfd, 0xfa, 0xec, 0xf2, 0x74, 0xff, 0xc7, 0x06, 0xc2, 0x0f, 0x3f, 0x10, 0x1d, 0xea, 0xfb, 0xe2, 0x9b, 0xfc, 0x56, 0x14, 0x9e, 0x0c, 0x28, 0x04, 0x37, 0x08, 0xc6, 0xf0, 0x15, 0xe9, 0xb9, 0x00, 0x6e, 0x10, 0xf2, 0x08, 0x75, 0x02, 0xd7, 0x03, 0x7c, 0xf3, 0xe1, 0xef, 0xcf, 0x02, 0x68, 0x0c, 0x6f, 0x09, 0xd3, 0x07, 0x34, 0xfa, 0x41, 0xea, 0xbf, 0xf6, 0xb2, 0x0a, 0xbd, 0x12, 0xab, 0x03, 0x34, 0xf4, 0x0c, 0xf4, 0x67, 0xfd, 0xf7, 0x06, 0x92, 0x0b, 0x8c, 0x0c, 0x67, 0xf7, 0x87, 0xef, 0xfc, 0xf8, 0xf3, 0x02, 0xdb, 0x07, 0x8c, 0x05, 0x5a, 0x01, 0x3c, 0x08, 0x77, 0x00, 0xaa, 0xea, 0xc7, 0xf5, 0xe2, 0x0a, 0x88, 0x0c, 0xab, 0x05, 0xa1, 0x03, 0x6f, 0xf6, 0x60, 0xef, 0x35, 0xfd, 0xec, 0x0a, 0x3c, 0x08, 0x36, 0x0c, 0xb1, 0x02, 0x61, 0xe5, 0x13, 0xf0, 0x07, 0x0a, 0x9f, 0x16, 0xad, 0x0c, 0x30, 0xf2, 0x13, 0xed, 0x8c, 0xfa, 0x30, 0x08, 0x1e, 0x0b, 0xb4, 0x04, 0x5a, 0xfb, 0xd4, 0xf9, 0x36, 0x05, 0xea, 0x0a, 0x6c, 0xf9, 0xd0, 0xf1, 0x4f, 0xfc, 0x5b, 0x05, 0x87, 0x08, 0x60, 0xff, 0xd1, 0xf9, 0x4b, 0xfe, 0xf9, 0x0d, 0x1e, 0x0b, 0x19, 0xf2, 0x3d, 0xee, 0xc1, 0xfa, 0x06, 0x0b, 0x7f, 0x0a, 0x70, 0x01, 0x07, 0xfd, 0x4b, 0xfe, 0x2a, 0xff, 0xbf, 0xff, 0x64, 0x00, 0x36, 0x01, 0xb7, 0x01, 0x9a, 0x01, 0xad, 0xfd, 0x0f, 0xfc, 0x93, 0xfd, 0xbb, 0x01, 0x27, 0x02, 0x08, 0x09, 0x3d, 0x11, 0x68, 0xf0, 0xce, 0xe1, 0x9e, 0xfb, 0xee, 0x10, 0x26, 0x0d, 0xf4, 0xfe, 0x20, 0xf9, 0xbf, 0xff, 0x26, 0x0d, 0x64, 0x01, 0x09, 0xf2, 0xeb, 0xf6, 0x4f, 0x01, 0xdf, 0x06, 0xaf, 0x07, 0xbb, 0x04, 0x09, 0xfa, 0xa2, 0xf8, 0xe7, 0xfd, 0x3f, 0x03, 0xc7, 0x00, 0x3d, 0xfe, 0x9e, 0xff, 0xe2, 0x09, 0xf7, 0x0a, 0x03, 0xf5, 0x3d, 0xee, 0xf6, 0xfa, 0xe7, 0x0a, 0xf2, 0x09, 0xef, 0x03, 0x57, 0x08, 0x98, 0xfa, 0x0e, 0xee, 0xe3, 0xf6, 0x15, 0x03, 0xfa, 0x0a, 0xcb, 0x05, 0xbd, 0x02, 0xa7, 0x0a, 0xac, 0xf7, 0xbc, 0xe8, 0x5d, 0xfb, 0x3d, 0x0e, 0xc6, 0x0b, 0x6d, 0x08, 0x98, 0x00, 0x4a, 0xed, 0xe9, 0xf0, 0x62, 0x04, 0xbd, 0x0e, 0xf1, 0x0c, 0xc7, 0xfd, 0xdb, 0xef, 0x8e, 0xf4, 0x8b, 0x05, 0xba, 0x0b, 0xaf, 0x04, 0x88, 0xfb, 0x5f, 0x03, 0x69, 0x0b, 0xe6, 0xf4, 0x3a, 0xef, 0x31, 0xfd, 0x36, 0x09, 0x03, 0x06, 0x4d, 0xfd, 0xa3, 0xfd, 0xb7, 0x05, 0x02, 0x0e, 0x6e, 0xfb, 0xb0, 0xee, 0xcd, 0xf9, 0xd6, 0x05, 0xaa, 0x07, 0xd9, 0x00, 0xa8, 0xfb, 0x9d, 0xfe, 0x76, 0x05, 0xf0, 0x07, 0x4f, 0xfd, 0x7a, 0xf5, 0x55, 0xfb, 0x0f, 0x03, 0x1e, 0x06, 0x5d, 0x02, 0x52, 0xfe, 0xb9, 0xfb, 0x76, 0xfa, 0x39, 0x01, 0x83, 0x06, 0x6b, 0x03, 0x6c, 0x01, 0x3f, 0x03, 0xbe, 0xf9, 0x7a, 0xf6, 0x46, 0x01, 0x08, 0x09, 0x39, 0x12, 0x86, 0xfb, 0xf1, 0xe0, 0xae, 0xf5, 0x16, 0x10, 0x3d, 0x10, 0x07, 0x03, 0x73, 0xf7, 0xd6, 0xf9, 0x49, 0x03, 0x67, 0x0a, 0xf9, 0xfb, 0x44, 0xf2, 0x07, 0xfd, 0x87, 0x0f, 0x5b, 0x14, 0x93, 0xf2, 0x67, 0xe8, 0x8f, 0xf7, 0xe7, 0x08, 0x1f, 0x0d, 0x2e, 0x04, 0x14, 0xff, 0xd7, 0x04, 0xc1, 0xfd, 0x43, 0xf0, 0x13, 0xfd, 0x57, 0x08, 0xb9, 0x0b, 0xc5, 0x0f, 0x0e, 0xf3, 0x5e, 0xe3, 0x95, 0xf9, 0x5e, 0x10, 0xdf, 0x0d, 0x35, 0x00, 0xd0, 0xfb, 0x83, 0x03, 0x38, 0x09, 0xf1, 0xf6, 0x62, 0xef, 0x81, 0xfc, 0x22, 0x07, 0xd3, 0x05, 0xe9, 0x02, 0xb2, 0x07, 0x4c, 0xfe, 0xb9, 0xf3, 0x25, 0xf8, 0xf4, 0x04, 0x74, 0x09, 0x05, 0x09, 0x9b, 0x03, 0x5b, 0xf3, 0x0b, 0xf3, 0x60, 0xff, 0xbf, 0x09, 0xc2, 0x07, 0x0d, 0xfc, 0x09, 0xf8, 0xd8, 0x04, 0xaf, 0x0a, 0xf2, 0xfb, 0xf8, 0xf3, 0x12, 0xfa, 0x2b, 0x07, 0x09, 0x08, 0xef, 0x09, 0xb5, 0x01, 0xc6, 0xf0, 0xf4, 0xf4, 0x89, 0x00, 0x24, 0x07, 0x98, 0x06, 0xd2, 0x06, 0x3c, 0xfe, 0x98, 0xf4, 0xeb, 0xf7, 0xcf, 0x09, 0x97, 0x0b, 0x3b, 0xfc, 0xd4, 0xf6, 0x3d, 0xf9, 0x01, 0x03, 0x56, 0x07, 0x01, 0x0a, 0x2f, 0x04, 0xc9, 0xf3, 0x89, 0xf3, 0x68, 0xff, 0x44, 0x0a, 0x86, 0x06, 0xa7, 0xfd, 0x34, 0xfb, 0xf7, 0xfd, 0x51, 0x01, 0xc6, 0xff, 0xa1, 0xfd, 0xaf, 0x00, 0xcd, 0x03, 0x54, 0x04, 0xd3, 0x04, 0x8c, 0xff, 0x66, 0xf5, 0x1e, 0xf8, 0x0b, 0x03, 0xcc, 0x0c, 0xbf, 0x05, 0x9b, 0xf5, 0x54, 0xf5, 0xbd, 0xfc, 0x1a, 0x06, 0x70, 0x07, 0xab, 0x02, 0x91, 0xfe, 0x7e, 0xfe, 0x99, 0x01, 0x67, 0x04, 0x28, 0x01, 0xb7, 0xf3, 0x77, 0xf7, 0xec, 0x05, 0xae, 0x14, 0x40, 0x06, 0xa3, 0xeb, 0xc1, 0xef, 0x74, 0x00, 0xc6, 0x0b, 0x64, 0x0a, 0x7b, 0x07, 0x46, 0xfa, 0x59, 0xf3, 0xca, 0xfa, 0x73, 0x03, 0xeb, 0x07, 0xf3, 0x05, 0x8d, 0xfd, 0x76, 0xf9, 0xef, 0xfc, 0x54, 0x01, 0x55, 0x03, 0xdf, 0x02, 0x77, 0xff, 0x7f, 0xfd, 0x25, 0xfd, 0xdd, 0xfc, 0x1d, 0x00, 0x2e, 0x05, 0x2d, 0x03, 0x3e, 0x09, 0x0b, 0x06, 0x96, 0xee, 0xf5, 0xec, 0x4f, 0x03, 0x97, 0x0d, 0x3e, 0x0d, 0x4a, 0x09, 0x10, 0xf2, 0xa2, 0xec, 0x0d, 0xfa, 0xda, 0x09, 0xe4, 0x0b, 0xfd, 0x01, 0x22, 0x01, 0xa9, 0x03, 0x98, 0xf6, 0xf2, 0xf2, 0xfb, 0x03, 0x66, 0x08, 0x22, 0x0c, 0x11, 0x0c, 0x7c, 0xec, 0x1a, 0xe5, 0x3e, 0x00, 0xc4, 0x12, 0xf6, 0x0b, 0x42, 0x0b, 0x85, 0xf9, 0x64, 0xe8, 0x46, 0xf5, 0x2a, 0x0a, 0x0c, 0x0e, 0x3a, 0x05, 0x7f, 0x07, 0x10, 0xfb, 0x50, 0xee, 0x39, 0xf6, 0xd7, 0x03, 0xec, 0x0a, 0xef, 0x05, 0xed, 0x02, 0xd2, 0x05, 0x8c, 0xf6, 0xb3, 0xed, 0x81, 0x02, 0x52, 0x16, 0xb2, 0x05, 0x40, 0xf1, 0xd6, 0xf4, 0x46, 0x00, 0x78, 0x05, 0x86, 0x04, 0x2e, 0x08, 0x2f, 0xff, 0x1e, 0xf6, 0xce, 0xf7, 0x8b, 0x01, 0x37, 0x08, 0x7f, 0x07, 0x09, 0x08, 0x0d, 0xfa, 0xd1, 0xef, 0x69, 0xf9, 0xba, 0x06, 0x22, 0x0c, 0x1f, 0x04, 0x09, 0xf8, 0xf7, 0xf4, 0x0d, 0x00, 0x3f, 0x08, 0xa6, 0x10, 0x76, 0x01, 0xdd, 0xed, 0x69, 0xf1, 0xd0, 0x00, 0xc5, 0x0c, 0x10, 0x07, 0x24, 0xff, 0x31, 0xfd, 0xa3, 0x03, 0x48, 0xff, 0xc6, 0xf8, 0x09, 0xfd, 0xab, 0x04, 0xa3, 0x03, 0x26, 0x0c, 0x59, 0x09, 0x61, 0xe7, 0x7e, 0xe7, 0x95, 0x03, 0x69, 0x14, 0x97, 0x08, 0x1d, 0x03, 0x70, 0x07, 0x96, 0xf2, 0xab, 0xed, 0x97, 0xfe, 0x4f, 0x0b, 0x12, 0x08, 0x1a, 0x00, 0x18, 0xfe, 0xb3, 0x00, 0x8c, 0x00, 0x84, 0xff, 0xf8, 0xff, 0xe5, 0xfa, 0x83, 0xfc, 0xe1, 0xfe, 0x67, 0x00, 0xe7, 0x03, 0x00, 0x04, 0x75, 0x01, 0xc4, 0x04, 0x77, 0x00, 0xa7, 0xf3, 0x31, 0xf9, 0x07, 0x06, 0x11, 0x08, 0xbf, 0x06, 0x5b, 0xfd, 0x6b, 0xf2, 0xdc, 0xfb, 0x1c, 0x07, 0xa7, 0x07, 0xee, 0x11, 0xa5, 0xfb, 0x30, 0xe3, 0xc9, 0xf1, 0x79, 0x09, 0x36, 0x11, 0x86, 0x04, 0x4d, 0xfc, 0x3b, 0xfc, 0x34, 0x0e, 0xab, 0x05, 0x31, 0xeb, 0xd1, 0xed, 0xeb, 0x02, 0x49, 0x10, 0xfa, 0x11, 0x73, 0x00, 0xda, 0xeb, 0x41, 0xf1, 0xe3, 0x03, 0x48, 0x0e, 0xac, 0x04, 0x4a, 0x04, 0xb7, 0x08, 0x88, 0xf1, 0xe4, 0xe9, 0xc9, 0xff, 0xb7, 0x0f, 0x74, 0x09, 0xa9, 0x00, 0xc7, 0x02, 0x79, 0xf9, 0x24, 0xf2, 0x26, 0xff, 0xcf, 0x09, 0x0f, 0x14, 0xce, 0xff, 0x83, 0xe6, 0xe3, 0xef, 0xed, 0x08, 0x01, 0x10, 0x40, 0x0f, 0x04, 0x00, 0x6f, 0xea, 0x3c, 0xf1, 0x36, 0x06, 0x69, 0x0e, 0x6f, 0x04, 0x3d, 0xfd, 0xc1, 0xfd, 0x14, 0x0d, 0x57, 0x02, 0xfb, 0xe8, 0x3e, 0xf0, 0xdf, 0x07, 0x0a, 0x10, 0xab, 0x05, 0x05, 0xfc, 0xc5, 0xfc, 0xdd, 0xff, 0xef, 0xff, 0xe4, 0xff, 0x8d, 0x08, 0xc4, 0x0b, 0x72, 0xf1, 0x0e, 0xeb, 0x47, 0xfd, 0xfc, 0x0b, 0x41, 0x0c, 0x17, 0x02, 0xf5, 0xf9, 0x46, 0xfa, 0xe8, 0xfe, 0xc5, 0x02, 0x4c, 0x04, 0xe8, 0x00, 0x47, 0xfc, 0x65, 0xf9, 0xe1, 0xfe, 0xef, 0x06, 0xdf, 0x03, 0xc6, 0x05, 0xb7, 0x02, 0xd9, 0xf0, 0xe3, 0xf6, 0x9e, 0x07, 0xb5, 0x08, 0x44, 0x0f, 0xac, 0x01, 0xfc, 0xe6, 0x7e, 0xed, 0x3b, 0x05, 0xf8, 0x10, 0xce, 0x07, 0xda, 0x00, 0x76, 0x04, 0x3d, 0xf9, 0x65, 0xef, 0x83, 0xfc, 0xc5, 0x0a, 0x93, 0x07, 0xdb, 0x05, 0x6e, 0x09, 0xb1, 0xf3, 0xad, 0xeb, 0xb1, 0xfd, 0x00, 0x0d, 0xf4, 0x08, 0x30, 0xfe, 0x9e, 0xf8, 0x67, 0xfc, 0x03, 0x05, 0xdb, 0x06, 0xed, 0xfd, 0x00, 0xf9, 0x07, 0x03, 0x34, 0x0d, 0xf1, 0xfc, 0xa2, 0xf1, 0x4d, 0xfa, 0xe3, 0x04, 0x18, 0x07, 0xdf, 0x00, 0x71, 0xf9, 0x85, 0xfe, 0x2b, 0x04, 0x7f, 0x07, 0x11, 0x0e, 0x73, 0xf6, 0x25, 0xe7, 0xee, 0xf9, 0xa8, 0x0e, 0xc8, 0x0b, 0x6d, 0x01, 0x87, 0xfc, 0x29, 0xfa, 0x1f, 0xfe, 0xe3, 0x02, 0x1f, 0x04, 0x6c, 0x09, 0xb5, 0x02, 0xf2, 0xef, 0xa4, 0xf6, 0x5b, 0x01, 0x0f, 0x04, 0xed, 0x02, 0x3b, 0xff, 0x4d, 0xff, 0x8d, 0x01, 0x84, 0x05, 0x1c, 0x0b, 0xb5, 0xfa, 0x31, 0xeb, 0xdd, 0xf9, 0xef, 0x0d, 0x2a, 0x14, 0x04, 0xfe, 0x78, 0xee, 0xc1, 0xf6, 0x9f, 0x03, 0x69, 0x08, 0x3b, 0x04, 0xcf, 0xfe, 0xb1, 0xfc, 0x31, 0xfe, 0xb0, 0x00, 0x9e, 0xff, 0x85, 0xfd, 0x07, 0x01, 0x50, 0x0b, 0x9f, 0x03, 0x0b, 0xf5, 0xf4, 0xf6, 0x76, 0xfe, 0x17, 0x05, 0xb8, 0x06, 0x67, 0x08, 0xc9, 0xfe, 0x39, 0xf5, 0xc5, 0xf9, 0xcb, 0x00, 0x7b, 0x02, 0xdc, 0x01, 0xd7, 0x02, 0x0c, 0x04, 0xdf, 0x08, 0x4f, 0xfd, 0x96, 0xef, 0xe1, 0xf6, 0x64, 0x08, 0xc8, 0x0e, 0xdc, 0x00, 0x66, 0xf6, 0xd8, 0xf6, 0x68, 0xff, 0xed, 0x09, 0xf2, 0x0f, 0xf5, 0xfc, 0x71, 0xee, 0xce, 0xf4, 0x6c, 0x05, 0xb9, 0x0b, 0x02, 0x04, 0xc7, 0xfd, 0xcd, 0xfe, 0xae, 0xff, 0x9d, 0xfd, 0x26, 0xff, 0x6a, 0x01, 0xd8, 0x01, 0x53, 0x02, 0x30, 0x01, 0xba, 0xfb, 0xfa, 0xfa, 0x52, 0x00, 0x87, 0x04, 0xdb, 0x05, 0xc5, 0x03, 0xa9, 0xfb, 0xb2, 0xf4, 0x73, 0xf7, 0x43, 0x04, 0x9a, 0x09, 0xf4, 0x06, 0xd8, 0x0b, 0x3a, 0xf9, 0xec, 0xea, 0x01, 0xf8, 0xec, 0x05, 0x0a, 0x0c, 0xa9, 0x0a, 0x5d, 0xfd, 0xc8, 0xf4, 0x7c, 0xf7, 0x25, 0x01, 0x81, 0x08, 0xd3, 0x04, 0x40, 0x01, 0xee, 0x01, 0xa9, 0xfc, 0x1c, 0xf8, 0xe5, 0xfe, 0x8b, 0x06, 0x66, 0x0b, 0xd9, 0x00, 0xd1, 0xef, 0x2a, 0xf5, 0x4d, 0x03, 0x00, 0x0a, 0xa7, 0x05, 0x9c, 0xfe, 0xa5, 0xfa, 0x2d, 0xfa, 0x7f, 0x00, 0xa2, 0x05, 0xc9, 0x03, 0xa2, 0x01, 0xee, 0x0b, 0xfb, 0xfc, 0xaa, 0xeb, 0x94, 0xf8, 0x5f, 0x06, 0xbc, 0x05, 0x58, 0x01, 0x73, 0x00, 0xf8, 0x09, 0xcc, 0x05, 0x24, 0xf2, 0x8c, 0xf2, 0xb5, 0xfe, 0x96, 0x09, 0x07, 0x0a, 0xeb, 0x07, 0xa0, 0xf7, 0x3f, 0xef, 0xef, 0xfc, 0x0f, 0x0e, 0xc0, 0x10, 0x64, 0xfa, 0xbb, 0xef, 0x02, 0xf6, 0x43, 0x04, 0xc7, 0x0a, 0xbb, 0x07, 0x67, 0x07, 0xbf, 0xf6, 0x0e, 0xee, 0x46, 0x00, 0xe7, 0x0e, 0x30, 0x07, 0x8b, 0xf7, 0x56, 0xf6, 0xbd, 0xff, 0x32, 0x06, 0x50, 0x06, 0x17, 0x0d, 0xa2, 0xfb, 0x9a, 0xeb, 0x8e, 0xf5, 0xb7, 0x05, 0xf9, 0x0b, 0x5f, 0x0a, 0xff, 0x02, 0xc8, 0xf4, 0x54, 0xf5, 0xd9, 0xfc, 0x6a, 0x04, 0x9e, 0x07, 0xaf, 0x02, 0x48, 0x0a, 0xe7, 0x02, 0x4c, 0xeb, 0x38, 0xf1, 0xf3, 0x05, 0x08, 0x0f, 0xdb, 0x03, 0xcb, 0x06, 0xe6, 0x04, 0x07, 0xed, 0x3e, 0xee, 0x9b, 0x03, 0x6a, 0x0f, 0xbf, 0x08, 0xef, 0x07, 0xae, 0xfa, 0x1e, 0xed, 0x9f, 0xf6, 0x53, 0x07, 0x99, 0x0a, 0x5a, 0x05, 0x47, 0x0b, 0xda, 0xf9, 0xb4, 0xeb, 0xbe, 0xf5, 0xe7, 0x08, 0x2f, 0x0d, 0xe1, 0x02, 0x69, 0xfc, 0x75, 0xfd, 0x43, 0x00, 0x4f, 0x00, 0x34, 0x00, 0x0e, 0x00, 0x3e, 0x00, 0x85, 0x00, 0x3e, 0x00, 0x7e, 0xfe, 0xe8, 0xfe, 0x73, 0x00, 0x49, 0x01, 0x7c, 0x01, 0x49, 0x01, 0x34, 0xfe, 0x6f, 0xfc, 0x05, 0xff, 0xc3, 0x03, 0xb8, 0x13, 0x90, 0xfb, 0xc3, 0xdf, 0x73, 0xf3, 0x60, 0x10, 0xd1, 0x11, 0x03, 0x02, 0x01, 0xfb, 0x23, 0xff, 0xee, 0x01, 0xe3, 0xfc, 0x03, 0xfc, 0xda, 0x00, 0x7b, 0x05, 0x56, 0x06, 0x73, 0x01, 0xc8, 0xf6, 0xb6, 0xf4, 0xfd, 0xfe, 0xff, 0x06, 0x6b, 0x06, 0x57, 0x01, 0x61, 0xfd, 0xd7, 0xfc, 0x31, 0xfc, 0xeb, 0xfe, 0xd0, 0x04, 0x7f, 0x04, 0xef, 0x0c, 0xd5, 0xff, 0xb6, 0xec, 0x23, 0xf2, 0x95, 0x03, 0x8a, 0x0d, 0xee, 0x05, 0x1c, 0xfe, 0x4f, 0xfd, 0x2e, 0x00, 0x27, 0xff, 0xa4, 0xff, 0x41, 0x00, 0x23, 0x03, 0xdd, 0x03, 0xb9, 0x03, 0xd7, 0x00, 0x89, 0xf0, 0x7f, 0xf2, 0x07, 0x02, 0xa2, 0x0b, 0xf8, 0x08, 0xc8, 0x06, 0x13, 0xfe, 0x23, 0xf3, 0x61, 0xf7, 0x9d, 0x02, 0x6f, 0x0c, 0x32, 0x06, 0x14, 0xfa, 0x2d, 0xf8, 0xc7, 0xfd, 0xe3, 0x02, 0x6f, 0x05, 0xb3, 0x02, 0xd9, 0xfa, 0x61, 0xf9, 0x47, 0x03, 0xa0, 0x0c, 0x5f, 0x00, 0xcb, 0xf5, 0x00, 0xf9, 0xd8, 0xff, 0xb6, 0x04, 0xdb, 0x06, 0xdc, 0x06, 0x49, 0xfb, 0x27, 0xf6, 0xdd, 0xf8, 0x53, 0x03, 0xb7, 0x06, 0x8e, 0x0a, 0x46, 0x08, 0x20, 0xf3, 0xb1, 0xf0, 0xc9, 0xfa, 0xe8, 0x07, 0xbf, 0x09, 0x5b, 0x02, 0xd0, 0xfe, 0xf9, 0x02, 0x75, 0xfc, 0x79, 0xf7, 0xcc, 0xff, 0x96, 0x05, 0x04, 0x04, 0xd1, 0x03, 0x0d, 0x00, 0x3e, 0xf6, 0x3a, 0xf9, 0x89, 0x03, 0xdb, 0x07, 0xda, 0x07, 0x42, 0x08, 0xf0, 0xf3, 0xd5, 0xeb, 0x04, 0xfa, 0x92, 0x09, 0xcd, 0x0a, 0x70, 0x07, 0xda, 0x08, 0x3b, 0xf6, 0x64, 0xed, 0x35, 0xfa, 0x1f, 0x0b, 0x0e, 0x0c, 0x74, 0x0d, 0xae, 0xf6, 0x7b, 0xe7, 0xab, 0xfc, 0x8f, 0x0e, 0x2f, 0x09, 0xc6, 0x05, 0x2b, 0x06, 0x7c, 0xec, 0x28, 0xed, 0xdb, 0x06, 0x58, 0x0f, 0xac, 0x07, 0x9b, 0x06, 0x4e, 0xfa, 0x21, 0xeb, 0xa6, 0xf7, 0x7a, 0x0b, 0xef, 0x0a, 0x2f, 0x0a, 0xd1, 0x02, 0xf6, 0xee, 0x8e, 0xf1, 0xa5, 0xff, 0x8d, 0x0b, 0x0f, 0x08, 0x76, 0x07, 0xdb, 0x01, 0x40, 0xf2, 0x39, 0xf3, 0x03, 0x01, 0xf6, 0x09, 0xab, 0x05, 0xb9, 0xfd, 0xc9, 0x02, 0x46, 0x08, 0x28, 0xf8, 0x31, 0xf3, 0xdd, 0xfc, 0xe7, 0x04, 0xb3, 0x04, 0xc6, 0x01, 0x83, 0x03, 0xdb, 0x05, 0xfb, 0xff, 0xc0, 0xf5, 0xa3, 0xf7, 0xbb, 0x00, 0xd7, 0x02, 0xed, 0x02, 0x5f, 0x02, 0x27, 0x05, 0x34, 0x0a, 0x69, 0xf9, 0xe1, 0xed, 0x7d, 0xf9, 0xae, 0x08, 0xe9, 0x0c, 0xa6, 0x08, 0x8d, 0xf9, 0x99, 0xf2, 0x40, 0xfb, 0x48, 0x04, 0x0f, 0x08, 0x17, 0x04, 0xfb, 0xfc, 0xe8, 0xfa, 0x15, 0xfe, 0x58, 0x01, 0x6f, 0x03, 0x81, 0x01, 0x7c, 0xfe, 0xa0, 0xfb, 0xd9, 0xfb, 0x9f, 0x02, 0xb2, 0x05, 0x4a, 0x04, 0x1f, 0x0a, 0xf6, 0xfb, 0x5a, 0xea, 0x5b, 0xf7, 0xed, 0x0b, 0xd4, 0x0a, 0xdd, 0x0a, 0x7f, 0x03, 0x71, 0xed, 0xfd, 0xee, 0x82, 0x01, 0x04, 0x0d, 0x2e, 0x10, 0x47, 0x03, 0xa7, 0xef, 0x03, 0xf1, 0x09, 0x01, 0x15, 0x0c, 0x77, 0x06, 0xae, 0xfe, 0x3a, 0x00, 0x0a, 0x09, 0x35, 0xfc, 0xa0, 0xf1, 0x5f, 0xfc, 0x23, 0x00, 0xff, 0x02, 0x0a, 0x04, 0xf7, 0x09, 0x88, 0x06, 0x97, 0xf4, 0x11, 0xf3, 0x2f, 0xfd, 0x0c, 0x07, 0x1d, 0x09, 0x0f, 0x08, 0x59, 0xfc, 0x7f, 0xf4, 0x78, 0xfb, 0x1f, 0x03, 0x1e, 0x05, 0xf9, 0xff, 0x11, 0xfc, 0x93, 0xff, 0x63, 0x05, 0x76, 0x0b, 0x34, 0xfe, 0x19, 0xf1, 0x6c, 0xf5, 0x05, 0x02, 0x7e, 0x0b, 0xf4, 0x04, 0xb1, 0x02, 0x1f, 0x06, 0x23, 0xf3, 0x38, 0xf1, 0xdf, 0x05, 0x22, 0x0a, 0x05, 0x0d, 0xcf, 0x06, 0x38, 0xe9, 0x93, 0xeb, 0x3a, 0x05, 0xde, 0x15, 0xd8, 0x0e, 0xba, 0xf4, 0x0d, 0xec, 0x8d, 0xfa, 0x21, 0x0b, 0xd4, 0x09, 0xbf, 0x00, 0xd1, 0xfc, 0x99, 0x01, 0x5f, 0x06, 0x66, 0xff, 0x4c, 0xf4, 0xa8, 0xf8, 0x39, 0x03, 0x5e, 0x05, 0x9f, 0x02, 0x29, 0xfc, 0xc7, 0xfc, 0x27, 0x02, 0xb3, 0x04, 0xa5, 0x01, 0xc8, 0x09, 0xd5, 0x03, 0xe6, 0xed, 0x98, 0xf0, 0xb5, 0x02, 0x22, 0x0d, 0x87, 0x0c, 0x18, 0x01, 0x73, 0xf4, 0xb1, 0xf5, 0x6c, 0xfe, 0x3a, 0x05, 0x1a, 0x0c, 0xa7, 0x09, 0x94, 0xf6, 0x0c, 0xf1, 0x91, 0xfa, 0xd2, 0x05, 0xdd, 0x0c, 0x37, 0x0c, 0xfa, 0xf7, 0xbe, 0xee, 0x41, 0xf8, 0xce, 0x07, 0x9a, 0x0a, 0x7f, 0x04, 0x67, 0x07, 0xfc, 0xfb, 0xd0, 0xec, 0x9c, 0xf7, 0x5c, 0x09, 0xa6, 0x0d, 0xdd, 0x09, 0x29, 0xfa, 0x7a, 0xf0, 0xc8, 0xf9, 0x1f, 0x03, 0x33, 0x06, 0x3b, 0x04, 0xf7, 0x09, 0xd1, 0x00, 0x39, 0xf2, 0x7a, 0xf6, 0x7f, 0xfe, 0xfb, 0x07, 0xb4, 0x05, 0xd4, 0x09, 0x24, 0x05, 0x20, 0xf1, 0xde, 0xef, 0x32, 0xff, 0x47, 0x0c, 0xf3, 0x07, 0xa4, 0xff, 0xd9, 0x00, 0xaa, 0xff, 0x77, 0xf7, 0x1f, 0xfc, 0x6b, 0x04, 0x13, 0x05, 0x91, 0x00, 0x63, 0xfe, 0xc4, 0x00, 0xc0, 0x05, 0x17, 0x0a, 0x46, 0xf5, 0x26, 0xea, 0x19, 0xfa, 0xac, 0x0a, 0xa1, 0x0c, 0x6d, 0x02, 0x03, 0xfd, 0xc2, 0xff, 0xd7, 0x09, 0x22, 0x00, 0x8b, 0xf0, 0x38, 0xf4, 0xbb, 0x02, 0x38, 0x0b, 0x67, 0x0d, 0x0f, 0x03, 0xbc, 0xf2, 0x32, 0xf5, 0x1c, 0x00, 0x27, 0x05, 0xdb, 0x02, 0xd6, 0x00, 0x4b, 0x04, 0xcc, 0x01, 0xce, 0xf8, 0xac, 0xfa, 0xbe, 0x08, 0x3f, 0x0c, 0x15, 0xf8, 0xef, 0xf1, 0xc5, 0xfb, 0x50, 0x05, 0x1a, 0x08, 0x73, 0x06, 0xaf, 0xfd, 0xc9, 0xf8, 0x1c, 0xfb, 0x7c, 0xfe, 0x7f, 0x03, 0x2b, 0x05, 0x53, 0x03, 0x16, 0x08, 0x16, 0x00, 0xe4, 0xf1, 0x01, 0xf7, 0xdb, 0x01, 0x47, 0x06, 0x67, 0x02, 0x04, 0x00, 0xcd, 0x02, 0x63, 0x06, 0x1b, 0xfd, 0x62, 0xf6, 0xf6, 0xfb, 0xbd, 0x02, 0x13, 0x03, 0x45, 0xff, 0xe3, 0xff, 0xea, 0x01, 0xb5, 0x01, 0x46, 0x00, 0xf2, 0x00, 0xd2, 0x06, 0xf1, 0x01, 0x10, 0xf2, 0xdb, 0xf4, 0x2c, 0x05, 0xd5, 0x0c, 0x57, 0x0b, 0x64, 0xfa, 0xcd, 0xef, 0x7d, 0xf9, 0xef, 0x05, 0xa7, 0x08, 0xb1, 0x03, 0xd1, 0xf9, 0x46, 0xf9, 0x4f, 0x01, 0xba, 0x0d, 0xed, 0x09, 0x3e, 0xf3, 0xa1, 0xf0, 0x2d, 0xfb, 0x3a, 0x09, 0xa8, 0x08, 0xbe, 0x01, 0x37, 0xfc, 0x93, 0x02, 0x51, 0x10, 0x73, 0xf7, 0xa7, 0xe6, 0x0c, 0xf8, 0x41, 0x0f, 0x22, 0x0c, 0x77, 0x07, 0xd4, 0x05, 0xf2, 0xed, 0x32, 0xed, 0x65, 0x03, 0x20, 0x0f, 0xce, 0x06, 0xf3, 0x04, 0x1b, 0x03, 0xd4, 0xf2, 0xa0, 0xf1, 0xd9, 0xfd, 0xb4, 0x08, 0xa2, 0x08, 0x59, 0x03, 0xd3, 0x04, 0x0b, 0xff, 0xab, 0xf2, 0xe6, 0xf4, 0x2b, 0x04, 0x1a, 0x0b, 0xa5, 0x0e, 0xa5, 0xff, 0x00, 0xef, 0x39, 0xf4, 0x69, 0x01, 0xd7, 0x09, 0x57, 0x08, 0xfc, 0x08, 0x8d, 0xfa, 0x34, 0xf1, 0xa0, 0xf7, 0xc5, 0x03, 0xbf, 0x09, 0x6c, 0x04, 0x8c, 0xff, 0x6f, 0x0a, 0x0b, 0xff, 0x34, 0xea, 0xd8, 0xf5, 0x36, 0x10, 0x8e, 0x0e, 0xce, 0xf9, 0x09, 0xf2, 0x4d, 0xfc, 0x59, 0x09, 0x9b, 0x06, 0x29, 0x0c, 0x00, 0xff, 0xc3, 0xeb, 0x52, 0xf3, 0xda, 0x04, 0x95, 0x0c, 0x30, 0x05, 0x8d, 0xfe, 0x21, 0xff, 0x59, 0x00, 0xbd, 0xfc, 0xf5, 0xfc, 0x36, 0x01, 0xbb, 0x03, 0x5b, 0x04, 0xc3, 0x03, 0xdf, 0xfc, 0xdf, 0xf5, 0x3d, 0xfa, 0x7f, 0x04, 0x72, 0x05, 0xf5, 0x00, 0x1c, 0xfe, 0xde, 0xfe, 0xc4, 0xfe, 0x1b, 0xfe, 0x8c, 0x00, 0xff, 0x08, 0xa1, 0x08, 0x2b, 0xf7, 0xd9, 0xf4, 0xcc, 0xfe, 0x0b, 0x05, 0x73, 0x04, 0xb4, 0xff, 0xa0, 0xfa, 0x91, 0xfd, 0x5f, 0x05, 0x52, 0x07, 0xb4, 0x05, 0xec, 0xfa, 0xbf, 0xf3, 0x75, 0xfb, 0x33, 0x04, 0x36, 0x06, 0xc9, 0x02, 0x38, 0xff, 0x55, 0xfd, 0x48, 0xfe, 0x02, 0x00, 0x2d, 0x01, 0x57, 0x01, 0x26, 0x00, 0xfc, 0xfe, 0x32, 0xff, 0xc3, 0xfd, 0x61, 0xfd, 0x03, 0x02, 0x3e, 0x04, 0xfb, 0x03, 0x47, 0x05, 0xf9, 0xfe, 0x89, 0xf0, 0x08, 0xf9, 0xc7, 0x06, 0x4d, 0x12, 0xa0, 0x09, 0xd1, 0xed, 0x5a, 0xec, 0x76, 0xfe, 0xd6, 0x0e, 0x8e, 0x08, 0xc2, 0x09, 0xec, 0xff, 0x82, 0xea, 0x82, 0xf3, 0x20, 0x09, 0x37, 0x0d, 0xb7, 0x02, 0x31, 0xfc, 0x81, 0xfd, 0x8f, 0x00, 0x9a, 0x00, 0x42, 0xff, 0xec, 0xff, 0xbe, 0x01, 0xb9, 0x03, 0xae, 0xff, 0x55, 0xfa, 0xb1, 0xf9, 0x04, 0x00, 0xff, 0x03, 0xef, 0x09, 0x87, 0x0e, 0xea, 0xf2, 0xe0, 0xe8, 0x22, 0xfa, 0x37, 0x0b, 0x35, 0x0d, 0x75, 0x08, 0xe9, 0xfc, 0x12, 0xf4, 0xc9, 0xf9, 0xc7, 0x01, 0x68, 0x06, 0x77, 0x06, 0x0a, 0x00, 0x09, 0xfa, 0xc9, 0xfb, 0xe9, 0xff, 0xb7, 0x02, 0x4b, 0x04, 0x76, 0x01, 0xb3, 0xfc, 0xdd, 0xfc, 0x78, 0xff, 0xca, 0x01, 0x6d, 0x02, 0x35, 0x00, 0x1c, 0xfe, 0xe9, 0xfc, 0xb1, 0xfd, 0x98, 0x05, 0xe7, 0x08, 0xd7, 0xfd, 0xda, 0xf2, 0xc4, 0xfa, 0x66, 0x06, 0x20, 0x0c, 0xcd, 0x0b, 0xee, 0xf5, 0x6d, 0xee, 0x9e, 0xf8, 0x86, 0x06, 0xf4, 0x0a, 0xc3, 0x03, 0xea, 0x08, 0xf3, 0xfe, 0x9d, 0xec, 0xc7, 0xf4, 0x11, 0x08, 0x3f, 0x0c, 0x1d, 0x03, 0x6d, 0xfd, 0x3c, 0x04, 0xd2, 0x06, 0x8e, 0xf4, 0x44, 0xf0, 0xab, 0xff, 0xd4, 0x0c, 0x0c, 0x09, 0xc5, 0xfc, 0x99, 0xf8, 0xe5, 0xf9, 0xf0, 0xff, 0xa7, 0x06, 0x6b, 0x04, 0x12, 0x0b, 0x57, 0x01, 0x0c, 0xec, 0x76, 0xf2, 0xb3, 0x06, 0x8f, 0x0f, 0x54, 0x09, 0xaa, 0xfb, 0x21, 0xf1, 0x71, 0xfa, 0x77, 0x06, 0xbf, 0x0b, 0xe7, 0x08, 0x39, 0xf6, 0x22, 0xf1, 0x59, 0xfa, 0x72, 0x06, 0x59, 0x09, 0x32, 0x0c, 0xb9, 0x00, 0xb0, 0xee, 0x7e, 0xf3, 0x37, 0x04, 0x52, 0x0c, 0x1b, 0x05, 0xb7, 0x05, 0x63, 0x01, 0xa7, 0xef, 0xfa, 0xf1, 0xec, 0x05, 0xf2, 0x0b, 0x18, 0x07, 0xf5, 0x0a, 0xe0, 0xf6, 0x35, 0xe9, 0x62, 0xfb, 0xa1, 0x0b, 0x97, 0x0a, 0xe1, 0xff, 0x3e, 0x04, 0x8c, 0x05, 0x9e, 0xf3, 0xf1, 0xf1, 0x24, 0xff, 0x87, 0x09, 0x41, 0x0b, 0x01, 0x03, 0x93, 0xf7, 0x1e, 0xf8, 0x24, 0xff, 0x34, 0x04, 0x2f, 0x05, 0xa8, 0x01, 0xd1, 0xfc, 0xb3, 0xfc, 0x4d, 0xff, 0xb7, 0x01, 0x69, 0x02, 0x22, 0x00, 0x19, 0xfd, 0xc1, 0xfa, 0x37, 0x01, 0xf7, 0x04, 0x77, 0x0c, 0x3a, 0x04, 0xb7, 0xef, 0x3a, 0xf1, 0x99, 0xff, 0x04, 0x0d, 0x17, 0x06, 0xba, 0x05, 0x28, 0x07, 0xc2, 0xf2, 0x31, 0xee, 0xb7, 0xfd, 0xb7, 0x0b, 0x17, 0x09, 0x85, 0x00, 0x61, 0x00, 0x07, 0x00, 0xdd, 0xf8, 0x71, 0xfa, 0x7d, 0x02, 0x87, 0x05, 0x67, 0x03, 0xaf, 0x0d, 0xfd, 0xfd, 0xbb, 0xe6, 0xc1, 0xf1, 0xac, 0x0a, 0x9e, 0x0f, 0x05, 0x0d, 0xdc, 0x00, 0x07, 0xee, 0x57, 0xf2, 0x4c, 0x01, 0x2c, 0x0c, 0x03, 0x07, 0x4f, 0x07, 0x4d, 0x00, 0x1c, 0xf1, 0x49, 0xf7, 0x67, 0x03, 0xac, 0x06, 0xf5, 0x03, 0x72, 0xff, 0x51, 0xfd, 0x35, 0xfc, 0x78, 0xfe, 0x76, 0x01, 0x29, 0x08, 0xd1, 0x08, 0xba, 0xf8, 0x6b, 0xf2, 0x45, 0xfa, 0x0b, 0x06, 0xa7, 0x0b, 0x02, 0x0c, 0x00, 0xf9, 0x76, 0xed, 0x29, 0xf9, 0x9e, 0x09, 0x17, 0x0a, 0xbe, 0x05, 0x80, 0x05, 0x13, 0xf6, 0xac, 0xee, 0x97, 0xfd, 0xef, 0x0a, 0x21, 0x0d, 0x58, 0x04, 0x21, 0xf5, 0x41, 0xf5, 0xdf, 0xfe, 0x3f, 0x06, 0xdf, 0x03, 0xdf, 0xfd, 0xf1, 0xfd, 0xdb, 0x03, 0xc7, 0x0d, 0x1f, 0xfd, 0xc7, 0xee, 0x94, 0xf8, 0x5f, 0x07, 0x15, 0x09, 0x5b, 0x01, 0x4b, 0xfc, 0x71, 0xfc, 0xf3, 0xfe, 0x94, 0x01, 0xa5, 0xff, 0xeb, 0x02, 0xc4, 0x08, 0xc1, 0xfc, 0x22, 0xf6, 0x95, 0xf9, 0xc6, 0x01, 0x90, 0x07, 0x06, 0x05, 0x27, 0x08, 0xe5, 0xfe, 0x54, 0xec, 0xfa, 0xf7, 0x39, 0x0a, 0x7e, 0x14, 0x17, 0x03, 0xd1, 0xed, 0x01, 0xf1, 0xf7, 0x01, 0x75, 0x0c, 0x32, 0x06, 0xeb, 0xfe, 0x73, 0xfd, 0x62, 0xff, 0xad, 0x00, 0x86, 0x06, 0xc9, 0x01, 0xc0, 0xf2, 0x81, 0xf5, 0x7f, 0x05, 0x21, 0x0b, 0x14, 0x0a, 0xc1, 0x00, 0x9a, 0xf1, 0xf3, 0xf4, 0x51, 0x02, 0x4f, 0x09, 0xe7, 0x03, 0x2a, 0xfb, 0xa7, 0xfc, 0xd3, 0x02, 0x02, 0x0c, 0xd7, 0x03, 0xc7, 0xf2, 0x9f, 0xf5, 0xbb, 0x00, 0x24, 0x07, 0xdc, 0x04, 0x19, 0x00, 0xa1, 0xfd, 0xcd, 0xfd, 0x2a, 0xff, 0x4b, 0xfe, 0x3f, 0xff, 0xd3, 0x02, 0xdc, 0x04, 0xf5, 0x03, 0x4c, 0xfa, 0xb0, 0xf9, 0xa2, 0x01, 0xd8, 0x0d, 0xb3, 0x05, 0xb4, 0xef, 0x92, 0xf2, 0xf1, 0x00, 0x25, 0x0a, 0xe7, 0x08, 0x9a, 0x00, 0xc5, 0xf9, 0x54, 0xfb, 0x9f, 0xff, 0xe9, 0xff, 0xf9, 0xff, 0xe3, 0x02, 0xb5, 0x02, 0x3b, 0x02, 0xab, 0x04, 0x3d, 0xfd, 0x81, 0xf4, 0x6f, 0xff, 0x40, 0x10, 0xd8, 0x01, 0x08, 0xf0, 0x93, 0xf4, 0xb4, 0x04, 0x8e, 0x0b, 0xbb, 0x04, 0x9b, 0x03, 0xb5, 0x03, 0xd4, 0xf3, 0x73, 0xf1, 0xf6, 0x01, 0x71, 0x0b, 0xf4, 0x04, 0x2a, 0x01, 0x2c, 0x0c, 0x08, 0xf9, 0x0b, 0xea, 0x1f, 0xf7, 0x19, 0x0a, 0x7f, 0x0d, 0xcf, 0x02, 0xf7, 0x04, 0xf1, 0x00, 0xd8, 0xee, 0x12, 0xf4, 0xc3, 0x07, 0x52, 0x0c, 0x46, 0x0a, 0x4c, 0x01, 0xa8, 0xf0, 0x71, 0xf3, 0x94, 0x01, 0x2d, 0x0b, 0x80, 0x09, 0x7e, 0xfe, 0x6f, 0xf5, 0xc6, 0xf8, 0xf9, 0x02, 0x60, 0x0d, 0x39, 0x08, 0x31, 0xf6, 0xf9, 0xf4, 0x1b, 0xfc, 0x8b, 0x02, 0x26, 0x06, 0xd7, 0x03, 0xe7, 0xff, 0xa0, 0xfe, 0xc5, 0x00, 0x01, 0x01, 0x63, 0xfd, 0xdf, 0xfd, 0x18, 0x01, 0xf1, 0x01, 0xe7, 0x01, 0xaf, 0x01, 0x71, 0xfd, 0x10, 0xfa, 0x17, 0xff, 0xf1, 0x03, 0xff, 0x13, 0xd6, 0x01, 0x50, 0xe1, 0xf1, 0xee, 0xd9, 0x0a, 0x19, 0x13, 0x47, 0x03, 0xdd, 0x02, 0xc6, 0x06, 0x07, 0xf2, 0x37, 0xee, 0x63, 0xff, 0x9e, 0x0d, 0x1a, 0x08, 0xc5, 0x03, 0x78, 0x05, 0xff, 0xf3, 0xa0, 0xee, 0x1b, 0x01, 0x25, 0x13, 0xe0, 0x08, 0xa2, 0xf4, 0x6f, 0xf2, 0x6b, 0xff, 0x29, 0x0f, 0x32, 0x07, 0xce, 0xf7, 0xbe, 0xf4, 0x40, 0xfe, 0x52, 0x07, 0xff, 0x08, 0x4f, 0x07, 0xdd, 0xf8, 0x4a, 0xf3, 0x45, 0xfc, 0x73, 0x03, 0xb3, 0x03, 0xff, 0x01, 0x6f, 0x01, 0xf7, 0x01, 0xd6, 0x01, 0x15, 0xfb, 0x8d, 0xfc, 0x72, 0x01, 0x12, 0x0a, 0x3e, 0x0c, 0x9c, 0xf2, 0x94, 0xea, 0x65, 0xfc, 0x1e, 0x0c, 0x67, 0x0e, 0xa3, 0x03, 0x46, 0xf7, 0xe7, 0xf6, 0x3b, 0xfd, 0xf6, 0x01, 0x5a, 0x06, 0x11, 0x02, 0x3d, 0x08, 0xae, 0x06, 0xbf, 0xf1, 0xbc, 0xf0, 0x93, 0xfe, 0xe6, 0x09, 0x99, 0x0b, 0x22, 0x07, 0xa2, 0xf7, 0xc4, 0xf3, 0xa1, 0xfa, 0x9b, 0x03, 0x02, 0x08, 0x95, 0x03, 0x89, 0x03, 0x62, 0x06, 0x40, 0xf7, 0xb5, 0xee, 0x0b, 0xff, 0x67, 0x0b, 0xb2, 0x0c, 0xd8, 0x04, 0x04, 0xf4, 0xf2, 0xf2, 0xeb, 0xfe, 0x2c, 0x09, 0xf6, 0x06, 0xbe, 0xfe, 0x15, 0xfa, 0xfa, 0xfa, 0xb9, 0x03, 0xc0, 0x0a, 0x28, 0x01, 0xa1, 0xf6, 0xf6, 0xf6, 0x92, 0x00, 0xfc, 0x08, 0xa7, 0x09, 0xda, 0xff, 0x91, 0xf8, 0xba, 0xfa, 0x7f, 0xfd, 0xaf, 0x00, 0x69, 0x01, 0xcf, 0x02, 0x78, 0x04, 0x63, 0x06, 0x7d, 0xfc, 0xaa, 0xf5, 0xb1, 0xf9, 0xac, 0x01, 0xa7, 0x06, 0x66, 0x0b, 0x83, 0x04, 0x0c, 0xf2, 0x91, 0xf2, 0x72, 0x01, 0x7f, 0x0d, 0xc7, 0x0d, 0xea, 0xfa, 0x38, 0xf1, 0x45, 0xf8, 0x59, 0x03, 0xeb, 0x07, 0x99, 0x08, 0xd3, 0x03, 0x1b, 0xf7, 0x60, 0xf2, 0xc3, 0xfe, 0xc2, 0x08, 0x4f, 0x0e, 0xeb, 0x06, 0xb9, 0xf0, 0x3d, 0xef, 0x81, 0xfe, 0x3d, 0x0d, 0xab, 0x06, 0x89, 0x08, 0x8f, 0x03, 0xa1, 0xed, 0x1e, 0xf0, 0xe3, 0x03, 0x92, 0x0e, 0x4e, 0x05, 0x19, 0x09, 0x87, 0xfd, 0xa6, 0xe8, 0x6d, 0xf8, 0x11, 0x0c, 0x50, 0x0b, 0xf2, 0x00, 0x0a, 0x01, 0x2f, 0xfc, 0xb7, 0xf6, 0xc7, 0xfe, 0xab, 0x05, 0x92, 0x04, 0x7d, 0x03, 0xea, 0x01, 0x16, 0xf7, 0xaf, 0xf7, 0x70, 0x01, 0x46, 0x07, 0x91, 0x02, 0x15, 0x0c, 0x78, 0x05, 0x31, 0xe9, 0x3c, 0xed, 0x61, 0x02, 0x58, 0x11, 0x73, 0x07, 0xbf, 0x05, 0xa1, 0x03, 0xab, 0xef, 0x81, 0xf0, 0xed, 0x03, 0x44, 0x0d, 0x47, 0x06, 0x5f, 0x09, 0xf0, 0xfb, 0xb0, 0xeb, 0xbe, 0xf5, 0x9c, 0x08, 0x0e, 0x0d, 0xb3, 0x06, 0x71, 0x00, 0x9f, 0xf3, 0xe6, 0xf7, 0x17, 0x03, 0xff, 0x0e, 0x85, 0x0b, 0x5a, 0xf1, 0x7c, 0xeb, 0xe1, 0xfe, 0xc2, 0x0c, 0xcf, 0x0e, 0x6c, 0x07, 0x73, 0xf1, 0xed, 0xed, 0x41, 0xff, 0xc8, 0x0c, 0xa0, 0x07, 0xf7, 0x01, 0xa3, 0x06, 0xff, 0xf6, 0x44, 0xed, 0xd4, 0xff, 0x3a, 0x0c, 0xfc, 0x08, 0x4b, 0x07, 0xdd, 0xfd, 0x14, 0xed, 0x9c, 0xf5, 0x7f, 0x06, 0x22, 0x0c, 0x69, 0x02, 0x5c, 0x05, 0xaa, 0x06, 0x0b, 0xf2, 0x77, 0xf0, 0xe7, 0xfd, 0x60, 0x0a, 0x57, 0x08, 0x06, 0x01, 0x9b, 0xff, 0xe4, 0x01, 0xd2, 0xff, 0xab, 0xfc, 0xa9, 0xfc, 0xb7, 0xfc, 0xa5, 0xff, 0x65, 0x02, 0xad, 0x02, 0xd7, 0x00, 0xb9, 0xff, 0x2f, 0xff, 0x5d, 0xff, 0x09, 0xff, 0x5f, 0xfd, 0x12, 0xff, 0x03, 0x05, 0x9f, 0x0c, 0x84, 0xfe, 0x44, 0xf0, 0x22, 0xf6, 0x1f, 0x05, 0xb2, 0x0a, 0x6c, 0x04, 0x72, 0x06, 0x5d, 0xff, 0x2e, 0xf2, 0x40, 0xf7, 0x8a, 0x01, 0x2b, 0x06, 0xef, 0x02, 0xbb, 0x00, 0x03, 0xff, 0x7f, 0x0a, 0x00, 0x05, 0xc1, 0xf0, 0xb4, 0xf1, 0x35, 0x00, 0x11, 0x0c, 0xe8, 0x06, 0x29, 0x00, 0x87, 0xfc, 0xa3, 0xfd, 0x1d, 0xff, 0xe1, 0x01, 0x91, 0x00, 0xa8, 0x0b, 0x89, 0x08, 0xad, 0xeb, 0x42, 0xee, 0x1c, 0x01, 0x00, 0x0a, 0x3a, 0x07, 0x42, 0x01, 0x7f, 0x07, 0xcc, 0x01, 0x4e, 0xf3, 0x69, 0xf5, 0xbf, 0x00, 0xc2, 0x08, 0xbf, 0x08, 0xaf, 0x06, 0xda, 0xf8, 0x9b, 0xf3, 0xe8, 0xfb, 0xe4, 0x04, 0x90, 0x08, 0x70, 0x04, 0xbd, 0xfb, 0xe9, 0xf9, 0x7e, 0xfb, 0xaa, 0x00, 0xa0, 0x04, 0xc0, 0x07, 0xc8, 0x08, 0x89, 0xf8, 0x21, 0xf1, 0xee, 0xfa, 0xa4, 0x05, 0xc5, 0x0c, 0xc6, 0x06, 0xfc, 0xf7, 0x9c, 0xf5, 0xd9, 0xfa, 0x48, 0x04, 0x52, 0x07, 0xc9, 0x02, 0x4c, 0x00, 0x81, 0x03, 0xa2, 0xfb, 0xae, 0xf6, 0xe0, 0xff, 0x08, 0x06, 0x5f, 0x03, 0xd9, 0x01, 0x8e, 0x0e, 0x26, 0xf9, 0x26, 0xe4, 0x51, 0xf8, 0xda, 0x10, 0xb5, 0x15, 0x99, 0xff, 0x10, 0xee, 0x0a, 0xf4, 0xbb, 0x04, 0x3c, 0x0b, 0xbf, 0x03, 0x60, 0x08, 0xcb, 0x00, 0xb1, 0xee, 0x41, 0xf3, 0xb1, 0x03, 0x07, 0x0d, 0xf4, 0x0b, 0x9f, 0xff, 0x91, 0xf1, 0x08, 0xf7, 0x03, 0x05, 0x75, 0x0b, 0x99, 0x02, 0x92, 0xf9, 0x70, 0xfa, 0xa9, 0xfe, 0x41, 0x00, 0x21, 0x02, 0x69, 0x03, 0xf3, 0x03, 0x1f, 0x08, 0x73, 0xfd, 0xca, 0xef, 0x2d, 0xf8, 0xd0, 0x06, 0x70, 0x0d, 0xab, 0x06, 0x54, 0xf7, 0x93, 0xf5, 0x5d, 0xfb, 0x3f, 0x04, 0x27, 0x06, 0x98, 0x06, 0x98, 0x09, 0x2d, 0xf8, 0xbf, 0xed, 0x50, 0xfa, 0x8f, 0x09, 0xa4, 0x0a, 0x2b, 0x00, 0x1a, 0x07, 0x4b, 0x01, 0x76, 0xea, 0x69, 0xf7, 0xe5, 0x0b, 0x44, 0x15, 0xac, 0x00, 0x2f, 0xeb, 0x89, 0xf2, 0xeb, 0x06, 0xd1, 0x0c, 0x71, 0x03, 0xc5, 0xfc, 0x17, 0xfd, 0x57, 0x03, 0x8a, 0x0d, 0x07, 0xfd, 0xb7, 0xe8, 0x56, 0xf6, 0x99, 0x0a, 0x9d, 0x10, 0x26, 0x07, 0x9a, 0xf6, 0x24, 0xf4, 0x3f, 0xfe, 0xfb, 0x05, 0xe8, 0x04, 0xea, 0xff, 0xe5, 0xfa, 0x11, 0xfd, 0x4d, 0x03, 0x6c, 0x07, 0xce, 0x07, 0xb9, 0xf9, 0x6e, 0xf1, 0xa1, 0xf9, 0x30, 0x08, 0x37, 0x08, 0xca, 0x09, 0x0e, 0x04, 0x07, 0xf1, 0x9e, 0xf3, 0x97, 0xfd, 0x60, 0x08, 0x16, 0x07, 0x9b, 0x06, 0x30, 0x07, 0x11, 0xf3, 0x12, 0xef, 0xec, 0x00, 0xc7, 0x0c, 0xf3, 0x05, 0x11, 0x09, 0x8e, 0x00, 0xff, 0xea, 0x29, 0xf3, 0xfb, 0x07, 0x7c, 0x0d, 0xda, 0x04, 0x58, 0x06, 0x35, 0xfc, 0x81, 0xed, 0x19, 0xf8, 0x6f, 0x09, 0xa7, 0x0a, 0xa6, 0x01, 0xd1, 0xfc, 0x80, 0x05, 0x94, 0x04, 0xae, 0xf3, 0xea, 0xf4, 0x0f, 0x01, 0x94, 0x08, 0x47, 0x06, 0x71, 0xff, 0x0b, 0xfc, 0x45, 0xfd, 0xc0, 0xff, 0xc9, 0xfe, 0x83, 0x00, 0xb7, 0x02, 0xbf, 0x02, 0x77, 0xff, 0x57, 0x04, 0x0f, 0x09, 0x90, 0xf5, 0x2e, 0xef, 0x4d, 0xfc, 0xa8, 0x0a, 0x40, 0x09, 0xef, 0x05, 0x89, 0x03, 0xe4, 0xf4, 0x2e, 0xf5, 0xdb, 0xff, 0x1c, 0x06, 0xbf, 0x03, 0x5e, 0xfe, 0xf7, 0xfd, 0x7d, 0x03, 0x19, 0x03, 0xed, 0xfb, 0x6e, 0xfb, 0x2e, 0x07, 0x3e, 0x0a, 0xa8, 0xf8, 0xe2, 0xf0, 0x56, 0xfb, 0x0c, 0x08, 0x41, 0x0e, 0xcc, 0x07, 0xe1, 0xf4, 0xcf, 0xf2, 0xfd, 0xfb, 0x66, 0x06, 0xd3, 0x07, 0xaf, 0x07, 0xbb, 0x02, 0x88, 0xf1, 0x98, 0xf4, 0xbe, 0x04, 0x8b, 0x10, 0xe9, 0x08, 0xf4, 0xf3, 0x94, 0xf3, 0xa5, 0xfb, 0x1f, 0x05, 0x58, 0x06, 0x62, 0x07, 0x15, 0x09, 0xa9, 0xf6, 0x4f, 0xee, 0x09, 0xfc, 0xb1, 0x0a, 0x15, 0x09, 0x7d, 0x00, 0x43, 0x03, 0xc5, 0xfd, 0xd8, 0xf3, 0xba, 0xfb, 0x90, 0x07, 0x20, 0x05, 0xce, 0x06, 0xc5, 0x0a, 0x0b, 0xf2, 0xdd, 0xea, 0x51, 0xfb, 0xbc, 0x0c, 0x49, 0x0c, 0xdf, 0x04, 0x0d, 0xfc, 0x34, 0xf6, 0x15, 0xfb, 0xe7, 0x04, 0xd0, 0x04, 0xc6, 0x08, 0x32, 0x09, 0x4e, 0xf0, 0x81, 0xec, 0x2d, 0xfe, 0xc0, 0x0d, 0xcf, 0x08, 0x98, 0x08, 0xec, 0x00, 0xf0, 0xef, 0x52, 0xf3, 0xdb, 0x01, 0x77, 0x0b, 0xef, 0x06, 0xeb, 0x06, 0xc3, 0xfe, 0xd2, 0xee, 0x2b, 0xf6, 0x2a, 0x06, 0xfa, 0x10, 0x58, 0x0a, 0x29, 0xf3, 0x30, 0xed, 0xc6, 0xff, 0x64, 0x0b, 0xd2, 0x0d, 0x40, 0x07, 0x0b, 0xf0, 0xef, 0xed, 0xce, 0x00, 0x49, 0x0d, 0xef, 0x06, 0xb9, 0x00, 0xad, 0x03, 0x35, 0xf9, 0xd0, 0xf2, 0x37, 0x00, 0xd7, 0x08, 0xb3, 0x06, 0x07, 0x06, 0x66, 0xff, 0x99, 0xf0, 0x97, 0xf5, 0x9c, 0x05, 0xd4, 0x0d, 0x21, 0x0a, 0x4a, 0xf8, 0x62, 0xf2, 0xd5, 0xfb, 0x1b, 0x02, 0x43, 0x06, 0x3d, 0x03, 0x0f, 0x06, 0xe9, 0x08, 0xf8, 0xf3, 0x66, 0xee, 0x5e, 0xfe, 0x44, 0x0d, 0x8a, 0x06, 0x7a, 0x07, 0xcd, 0x03, 0xd4, 0xea, 0xb3, 0xf2, 0x41, 0x09, 0x9f, 0x0c, 0x57, 0x04, 0xe5, 0x08, 0x28, 0xf7, 0xfd, 0xe8, 0x24, 0xff, 0x70, 0x0d, 0xf4, 0x08, 0x79, 0xfe, 0xa7, 0x06, 0xcc, 0x01, 0xbe, 0xeb, 0x24, 0xf4, 0xda, 0x0b, 0x5b, 0x14, 0x0d, 0x00, 0x56, 0xef, 0x74, 0xf5, 0x57, 0x05, 0xc6, 0x09, 0xe7, 0x02, 0xa4, 0xff, 0x3c, 0x08, 0x9a, 0xfe, 0x49, 0xf0, 0xfe, 0xf7, 0xad, 0x03, 0x46, 0x08, 0xab, 0x02, 0xf1, 0x03, 0xcb, 0x06, 0x7e, 0xf8, 0x5e, 0xf4, 0x61, 0xfc, 0x87, 0x04, 0x0f, 0x0b, 0x00, 0x04, 0x1f, 0xf7, 0x41, 0xf6, 0xea, 0x01, 0x89, 0x08, 0xa7, 0x0c, 0x7e, 0xff, 0x19, 0xf0, 0xcc, 0xf5, 0x6b, 0x02, 0x27, 0x0e, 0x7f, 0x07, 0x5e, 0xf7, 0xb9, 0xf3, 0xf7, 0x00, 0x9f, 0x08, 0x18, 0x0d, 0xeb, 0x01, 0x4a, 0xf0, 0x90, 0xf3, 0x7b, 0x01, 0x0e, 0x0a, 0x6c, 0x09, 0x02, 0x04, 0x03, 0xf5, 0x86, 0xf4, 0xef, 0x08, 0x09, 0x0b, 0x89, 0xfb, 0x3e, 0xf8, 0xa2, 0xfb, 0x1a, 0x00, 0x3b, 0x04, 0x63, 0x04, 0xe2, 0x00, 0x80, 0x00, 0xd3, 0x01, 0x3b, 0xfc, 0x05, 0xfb, 0xdd, 0x00, 0x97, 0x03, 0x9b, 0x02, 0x0b, 0x03, 0xbe, 0xfe, 0x45, 0xf8, 0x2d, 0xfc, 0xc5, 0x03, 0x0b, 0x06, 0x8f, 0x06, 0x57, 0x01, 0xd1, 0xf6, 0xd1, 0xf2, 0x75, 0xfd, 0xee, 0x07, 0xda, 0x0e, 0x48, 0x07, 0x68, 0xf3, 0xae, 0xf2, 0x13, 0xfd, 0x18, 0x07, 0xa6, 0x07, 0x09, 0x02, 0xc7, 0xfc, 0xcd, 0xfd, 0xeb, 0x01, 0x7e, 0x0e, 0x5c, 0xff, 0x2e, 0xec, 0x7b, 0xf4, 0x93, 0x04, 0x7e, 0x0b, 0x4e, 0x09, 0x95, 0x03, 0x0c, 0xf7, 0x2b, 0xf6, 0x5e, 0xfe, 0x78, 0x04, 0x8e, 0x04, 0xfc, 0xfe, 0x30, 0x04, 0x6b, 0x07, 0x08, 0xf9, 0x6e, 0xf4, 0xa9, 0xfa, 0x1b, 0x06, 0x3d, 0x08, 0xe5, 0x01, 0x2c, 0xff, 0xe8, 0x01, 0x29, 0xfc, 0x0a, 0xfa, 0x48, 0x01, 0x0c, 0x04, 0x69, 0x02, 0xc3, 0x01, 0xec, 0xff, 0xed, 0xf8, 0x6d, 0xfd, 0xc1, 0x01, 0xc4, 0x0d, 0x37, 0x0c, 0x70, 0xec, 0xc5, 0xe9, 0x19, 0xfe, 0x33, 0x10, 0x86, 0x09, 0xa4, 0x06, 0x99, 0x03, 0xc2, 0xf0, 0xd1, 0xf0, 0xab, 0x02, 0xa7, 0x0c, 0x8a, 0x05, 0x96, 0xfe, 0xad, 0x00, 0xcb, 0xfc, 0xd6, 0xf9, 0x56, 0x00, 0x3c, 0x04, 0x6f, 0x02, 0xf1, 0x01, 0x65, 0x00, 0x2a, 0xfa, 0xc5, 0xfb, 0x23, 0x02, 0x37, 0x04, 0x00, 0x04, 0xb7, 0x03, 0xe2, 0xfa, 0x59, 0xf6, 0xad, 0xfc, 0x76, 0x05, 0xd5, 0x03, 0xc1, 0x0d, 0x98, 0x05, 0x68, 0xea, 0x22, 0xee, 0x6b, 0x03, 0x7e, 0x0f, 0x70, 0x07, 0x89, 0xfd, 0x23, 0xfc, 0x8d, 0xfe, 0x03, 0x02, 0xff, 0xff, 0x3f, 0x0b, 0x0c, 0x09, 0x46, 0xeb, 0x4a, 0xeb, 0x81, 0x02, 0x0e, 0x10, 0xa5, 0x0b, 0x98, 0x05, 0x74, 0xf6, 0xbe, 0xf2, 0x31, 0xfc, 0x07, 0x05, 0x2f, 0x06, 0x4f, 0x04, 0x14, 0x09, 0xf9, 0xfb, 0x3c, 0xf2, 0xe2, 0xf7, 0xf9, 0x02, 0x47, 0x09, 0x1f, 0x04, 0x28, 0x01, 0xb7, 0x05, 0x24, 0xff, 0x12, 0xf4, 0xd1, 0xf6, 0x43, 0x01, 0xdf, 0x07, 0xaf, 0x05, 0x43, 0x03, 0xf3, 0x02, 0x98, 0xfa, 0xfb, 0xf5, 0xad, 0xfd, 0xcb, 0x05, 0x9f, 0x05, 0xf3, 0xff, 0x0f, 0xfd, 0xfd, 0xfd, 0x97, 0x00, 0xfd, 0x00, 0xe3, 0xff, 0xd1, 0xfc, 0x35, 0xff, 0xbf, 0x02, 0x46, 0x07, 0x4f, 0x08, 0xfc, 0xf7, 0x06, 0xf2, 0x65, 0xfa, 0xff, 0x05, 0xea, 0x08, 0x29, 0x03, 0x06, 0x05, 0x47, 0x02, 0x03, 0xf1, 0x81, 0xf3, 0x0b, 0x06, 0x26, 0x0c, 0xfa, 0x0d, 0xf5, 0xfc, 0x6f, 0xed, 0xb8, 0xf5, 0xaf, 0x04, 0xe5, 0x0a, 0x78, 0x04, 0xf7, 0x04, 0xa0, 0x01, 0x0f, 0xf5, 0xa1, 0xf6, 0x5b, 0x00, 0x73, 0x04, 0x39, 0x03, 0x76, 0x01, 0x15, 0x03, 0x23, 0x00, 0xfd, 0xfa, 0x53, 0xfd, 0x32, 0x07, 0x4f, 0x0b, 0x41, 0xf8, 0xce, 0xf0, 0xe9, 0xfb, 0x4b, 0x06, 0x35, 0x09, 0xd1, 0x03, 0x8d, 0xfc, 0x14, 0xfa, 0x31, 0xfc, 0x84, 0xff, 0xe8, 0x07, 0x4c, 0x0b, 0x99, 0xfb, 0x7b, 0xf2, 0xb6, 0xf8, 0x9c, 0x05, 0xda, 0x08, 0x0d, 0x03, 0xc9, 0x02, 0x61, 0x00, 0x21, 0xf6, 0xbb, 0xf7, 0xd7, 0x03, 0x85, 0x08, 0x1a, 0x09, 0x8e, 0x01, 0x9f, 0xf2, 0x06, 0xf5, 0xed, 0x01, 0x32, 0x09, 0x60, 0x05, 0xb4, 0xfe, 0xb8, 0xfb, 0x09, 0xfe, 0xaa, 0xff, 0x7e, 0xff, 0xe7, 0xff, 0x86, 0x07, 0x57, 0x08, 0xb6, 0xf8, 0x81, 0xf4, 0x70, 0xfa, 0xff, 0x04, 0xee, 0x07, 0xa9, 0x02, 0x4a, 0xff, 0x30, 0xfe, 0xd9, 0xfd, 0xd1, 0xff, 0xb5, 0x01, 0x92, 0x04, 0x47, 0x06, 0x65, 0xfb, 0xb4, 0xf1, 0xf4, 0xfa, 0x94, 0x08, 0xe8, 0x0c, 0x38, 0x00, 0x48, 0xf5, 0x02, 0xf9, 0x51, 0xff, 0x23, 0x05, 0x44, 0x05, 0x78, 0x0a, 0x91, 0x00, 0xc9, 0xf0, 0xb8, 0xf4, 0x0a, 0x04, 0xdf, 0x0a, 0xb4, 0x04, 0x58, 0x09, 0xa9, 0xfc, 0x0d, 0xec, 0x49, 0xf7, 0x08, 0x09, 0xc7, 0x0b, 0x99, 0x01, 0x90, 0x07, 0xf9, 0xff, 0x50, 0xed, 0x26, 0xf4, 0xe6, 0x07, 0xb1, 0x0b, 0xc5, 0x0a, 0x65, 0x03, 0x17, 0xf0, 0x6a, 0xf1, 0x5f, 0x00, 0xb4, 0x0c, 0xa4, 0x05, 0x57, 0x06, 0x64, 0x04, 0x09, 0xf0, 0x3e, 0xf0, 0xbb, 0x04, 0x32, 0x0c, 0x46, 0x0d, 0xdb, 0x02, 0x20, 0xed, 0x21, 0xf1, 0x53, 0x06, 0x5c, 0x0c, 0x13, 0x07, 0xde, 0x08, 0x5a, 0xf5, 0xe8, 0xeb, 0x05, 0xfd, 0xe7, 0x0c, 0x5d, 0x08, 0xdb, 0x04, 0x7e, 0x05, 0x72, 0xf4, 0xc6, 0xef, 0x45, 0xfd, 0x7d, 0x0a, 0xaa, 0x09, 0x03, 0x02, 0xe7, 0xfe, 0x06, 0x01, 0x3d, 0xfa, 0xfa, 0xf3, 0xb9, 0x00, 0x5d, 0x08, 0xe4, 0x0c, 0xf0, 0x05, 0x31, 0xf1, 0xcf, 0xf0, 0xe2, 0xfe, 0xb7, 0x0a, 0x7e, 0x08, 0x83, 0x07, 0x9d, 0xfd, 0x72, 0xf2, 0x35, 0xf8, 0xdb, 0x02, 0x3e, 0x09, 0xdb, 0x07, 0xa0, 0xfe, 0x18, 0xf6, 0xfe, 0xf8, 0xcf, 0x01, 0xaf, 0x0a, 0xbc, 0x0a, 0x21, 0xfa, 0x47, 0xf3, 0x51, 0xfa, 0xbb, 0x02, 0x7a, 0x08, 0x7d, 0x0a, 0x93, 0xfd, 0xe4, 0xf4, 0xca, 0xf7, 0x75, 0x01, 0x25, 0x08, 0x4f, 0x04, 0x24, 0x01, 0x1d, 0x09, 0x16, 0xf9, 0x33, 0xec, 0xf0, 0xfe, 0x36, 0x0c, 0x9b, 0x07, 0x16, 0x04, 0x75, 0x01, 0xc3, 0xf2, 0x7c, 0xf4, 0x8c, 0x05, 0xbc, 0x12, 0x77, 0x03, 0x56, 0xef, 0x0f, 0xf3, 0xfa, 0x04, 0x9c, 0x0b, 0x34, 0x06, 0x02, 0x04, 0x01, 0xfa, 0x12, 0xf4, 0x17, 0xfd, 0xc1, 0x09, 0xee, 0x08, 0x69, 0xfb, 0x64, 0xf7, 0x4d, 0xfd, 0x23, 0x03, 0xc2, 0x04, 0x54, 0x01, 0x23, 0xfc, 0xa3, 0xfc, 0x83, 0x06, 0xc7, 0x06, 0xd3, 0xf7, 0xf3, 0xf5, 0x8b, 0x02, 0xf2, 0x0f, 0xf5, 0x03, 0x21, 0xf4, 0x16, 0xf7, 0x11, 0x00, 0x54, 0x04, 0x43, 0x02, 0x67, 0x01, 0x19, 0x02, 0x00, 0x08, 0xe2, 0xfe, 0x89, 0xf3, 0xbe, 0xf7, 0x8a, 0x01, 0x99, 0x08, 0xca, 0x04, 0xfb, 0x04, 0xfb, 0x03, 0x79, 0xf5, 0xa1, 0xf2, 0x37, 0x00, 0xd7, 0x09, 0x16, 0x0b, 0x01, 0x01, 0xd0, 0xf5, 0xa0, 0xf8, 0xe8, 0x00, 0x5b, 0x04, 0x25, 0x01, 0xdf, 0xfd, 0xd5, 0x02, 0x1f, 0x0a, 0x4b, 0xfd, 0xef, 0xf3, 0xee, 0xf7, 0x3a, 0x05, 0x0f, 0x08, 0xd3, 0x06, 0x6f, 0x08, 0xc0, 0xf3, 0x23, 0xed, 0xdb, 0x01, 0xdf, 0x0b, 0xd7, 0x0b, 0x13, 0x07, 0xe1, 0xf2, 0xa2, 0xf1, 0xc5, 0xfc, 0xcc, 0x05, 0x3f, 0x07, 0xe3, 0x02, 0x9a, 0xfe, 0x51, 0x02, 0xea, 0x0a, 0x09, 0xf6, 0xa2, 0xec, 0x0d, 0x01, 0xa7, 0x0c, 0xc0, 0x07, 0x06, 0x06, 0xae, 0xfe, 0x4d, 0xee, 0xff, 0xf5, 0x22, 0x07, 0xd7, 0x0d, 0x30, 0x0b, 0xc6, 0xf8, 0x94, 0xf0, 0xd6, 0xf9, 0x74, 0x05, 0x54, 0x09, 0xf7, 0x07, 0x69, 0xfe, 0xf1, 0xf5, 0x98, 0xfa, 0x67, 0x01, 0x2a, 0x06, 0x57, 0x04, 0x31, 0xfe, 0x94, 0xfb, 0xa2, 0xfb, 0xa1, 0xff, 0x5b, 0x05, 0xef, 0x0b, 0xa0, 0x00, 0x12, 0xf1, 0xfc, 0xf5, 0xb5, 0x03, 0x74, 0x0a, 0x5d, 0x02, 0x23, 0x04, 0x76, 0x08, 0xa9, 0xf3, 0x0d, 0xee, 0x73, 0xfe, 0xae, 0x0c, 0x04, 0x08, 0x07, 0x03, 0x6a, 0x05, 0x29, 0xf6, 0xcc, 0xef, 0x02, 0x00, 0x9a, 0x0a, 0x70, 0x07, 0xad, 0x00, 0x94, 0xfa, 0xf0, 0xfb, 0xa9, 0x02, 0x2d, 0x0c, 0x2e, 0x01, 0x2f, 0xf0, 0x80, 0xf6, 0x15, 0x03, 0x58, 0x09, 0x04, 0x06, 0xf4, 0xfe, 0x51, 0xfb, 0x3f, 0xfd, 0x53, 0xff, 0x7c, 0xfe, 0xff, 0x01, 0x1f, 0x03, 0xe0, 0x09, 0x8b, 0x03, 0x76, 0xf2, 0x53, 0xf3, 0xf1, 0x00, 0x5c, 0x09, 0x29, 0x0b, 0x57, 0x05, 0xd0, 0xf4, 0x73, 0xf3, 0xd5, 0xfc, 0x0f, 0x08, 0x0b, 0x07, 0x51, 0x02, 0x54, 0x09, 0xe5, 0xfb, 0xe0, 0xed, 0x73, 0xf7, 0x9d, 0x08, 0xe5, 0x0a, 0x05, 0x02, 0xd9, 0xfc, 0xa0, 0x01, 0xa0, 0x01, 0xbd, 0xf8, 0xdd, 0xfb, 0xb3, 0x03, 0x7c, 0x04, 0xcd, 0x03, 0xd3, 0x02, 0x3a, 0xf9, 0x11, 0xf5, 0xab, 0x01, 0x6e, 0x06, 0xb1, 0x0d, 0xb2, 0x07, 0xe7, 0xeb, 0x16, 0xed, 0x7c, 0x01, 0xbe, 0x10, 0xc0, 0x0e, 0x5d, 0xfc, 0x89, 0xf1, 0x50, 0xf7, 0x93, 0x04, 0xf8, 0x08, 0xfc, 0x04, 0xe8, 0x06, 0x5d, 0xfc, 0x5e, 0xf2, 0x86, 0xf9, 0x69, 0x02, 0x5a, 0x05, 0xbf, 0x03, 0xca, 0x00, 0xa4, 0xff, 0x96, 0xff, 0xbd, 0xff, 0xa1, 0xff, 0x27, 0x04, 0xd4, 0x0d, 0xfb, 0xf6, 0x04, 0xe7, 0x47, 0xfc, 0xff, 0x0e, 0x96, 0x0b, 0x53, 0x07, 0x07, 0xfd, 0xd8, 0xef, 0xff, 0xf6, 0xda, 0x04, 0x6c, 0x0b, 0x22, 0x07, 0x34, 0xfa, 0xf1, 0xf5, 0xd1, 0xff, 0x9b, 0x05, 0x75, 0x0b, 0x75, 0x02, 0x81, 0xf2, 0xb8, 0xf5, 0xee, 0xfe, 0xd0, 0x07, 0xd4, 0x05, 0x0a, 0x04, 0x46, 0x08, 0xda, 0xf8, 0x79, 0xf1, 0xcd, 0xf9, 0x38, 0x06, 0xb0, 0x08, 0x8b, 0x06, 0x44, 0x05, 0x8f, 0xf7, 0x4c, 0xf3, 0xdd, 0xfc, 0x9b, 0x06, 0xd0, 0x09, 0x13, 0x05, 0xd1, 0xf9, 0x8b, 0xf7, 0x7f, 0xfe, 0xd3, 0x03, 0x9d, 0x03, 0xfb, 0xff, 0xf7, 0xfe, 0xb0, 0xff, 0x65, 0xff, 0x72, 0xfe, 0xee, 0xfe, 0xfe, 0x00, 0xc3, 0x04, 0x80, 0x06, 0x3b, 0xfc, 0xe9, 0xf6, 0x9b, 0xfc, 0x0f, 0x03, 0xec, 0x05, 0x7b, 0x02, 0x8b, 0xfd, 0x2f, 0xfc, 0xe1, 0xfb, 0x29, 0x00, 0xff, 0x04, 0x1f, 0x03, 0xc1, 0x00, 0x9e, 0xff, 0x29, 0xfd, 0xf7, 0xfd, 0x82, 0x01, 0xb7, 0x01, 0xc2, 0x04, 0xd9, 0x03, 0xe6, 0xf6, 0xd7, 0xf4, 0x91, 0x02, 0x63, 0x07, 0xd0, 0x07, 0xd7, 0x0c, 0xf3, 0xf4, 0xad, 0xe8, 0x22, 0xfa, 0xff, 0x0c, 0x45, 0x0c, 0xbb, 0x07, 0xcc, 0xfe, 0x98, 0xf1, 0x0b, 0xf5, 0xf7, 0x03, 0x85, 0x0a, 0xec, 0x0a, 0xfc, 0x01, 0xdf, 0xf1, 0x52, 0xf6, 0x27, 0x01, 0x10, 0x0a, 0xa7, 0x07, 0xd0, 0xfb, 0xe1, 0xf8, 0xf1, 0xfa, 0x9c, 0x01, 0xda, 0x04, 0xb7, 0x0a, 0x9f, 0x03, 0x81, 0xf3, 0xe3, 0xf3, 0xcf, 0xff, 0xd7, 0x09, 0xba, 0x05, 0x1d, 0x03, 0x90, 0x05, 0xd9, 0xf7, 0xcc, 0xef, 0x09, 0xff, 0x52, 0x0a, 0xe5, 0x0a, 0xef, 0x05, 0xe6, 0xf6, 0x6a, 0xf3, 0xe5, 0xfd, 0xb5, 0x03, 0xcb, 0x03, 0x6a, 0x01, 0x57, 0x05, 0x1c, 0x07, 0xf4, 0xf8, 0x6b, 0xf2, 0xe4, 0xfb, 0x4f, 0x08, 0xb0, 0x0f, 0xde, 0x01, 0x87, 0xf2, 0x09, 0xf4, 0xa9, 0x01, 0x8d, 0x09, 0x70, 0x06, 0x8f, 0x09, 0xe5, 0xfa, 0x7e, 0xef, 0x59, 0xf7, 0x2f, 0x06, 0xd7, 0x0a, 0xd5, 0x02, 0x8d, 0xfe, 0xa3, 0x00, 0xdf, 0xfd, 0x1d, 0xfa, 0x03, 0x01, 0x79, 0x02, 0xe7, 0x09, 0x45, 0x0b, 0x43, 0xed, 0x7f, 0xe9, 0x76, 0x04, 0xe4, 0x0f, 0x40, 0x0f, 0x2b, 0x01, 0xed, 0xec, 0xb8, 0xf2, 0x07, 0x06, 0xd2, 0x0b, 0xcb, 0x03, 0x91, 0xfd, 0x05, 0x02, 0xfa, 0x05, 0x7d, 0xf8, 0x11, 0xf2, 0x57, 0xff, 0xb8, 0x0a, 0xff, 0x0b, 0xb4, 0xfe, 0xb0, 0xf3, 0xe1, 0xf8, 0x35, 0x00, 0x7e, 0x05, 0xc4, 0x04, 0x8f, 0x09, 0x7c, 0x01, 0xce, 0xed, 0x86, 0xf7, 0x3c, 0x07, 0x15, 0x0f, 0x49, 0x0a, 0x09, 0xf4, 0xf8, 0xed, 0x3d, 0xfc, 0xbf, 0x0a, 0xef, 0x08, 0xf5, 0x00, 0xfc, 0x04, 0x7c, 0xfe, 0xcf, 0xef, 0xe2, 0xf9, 0xea, 0x08, 0xf2, 0x08, 0xfb, 0x06, 0x5b, 0x02, 0x31, 0xf2, 0x04, 0xf6, 0xd3, 0x02, 0x23, 0x06, 0xd7, 0x02, 0x61, 0x00, 0x0a, 0x00, 0xd9, 0xfd, 0x60, 0xfe, 0xd3, 0x00, 0x6f, 0x01, 0xb3, 0xff, 0xa5, 0xfd, 0xe2, 0xfe, 0x57, 0x02, 0x0e, 0x06, 0x99, 0x03, 0x86, 0xf9, 0xc4, 0xf8, 0xa4, 0xff, 0xc5, 0x03, 0xcd, 0x02, 0x5a, 0xfe, 0x71, 0xfc, 0xd3, 0x00, 0xbf, 0x04, 0x51, 0x08, 0xe1, 0xff, 0x4f, 0xf4, 0x99, 0xf9, 0x0f, 0x02, 0x12, 0x05, 0x95, 0x02, 0x6b, 0xfd, 0x85, 0xfd, 0x13, 0x03, 0xdf, 0x0c, 0x48, 0xff, 0x37, 0xf1, 0x71, 0xf6, 0xfc, 0x01, 0x82, 0x09, 0x47, 0x05, 0xa2, 0x06, 0x3b, 0x00, 0xbc, 0xf2, 0x51, 0xf6, 0x6f, 0x02, 0xbe, 0x0a, 0x5e, 0x0a, 0x57, 0xfc, 0x9a, 0xf4, 0xf4, 0xf8, 0x6d, 0x02, 0xc7, 0x07, 0x4d, 0x03, 0x80, 0xff, 0xfa, 0xfe, 0x47, 0x08, 0x25, 0x03, 0xab, 0xf1, 0x8c, 0xf5, 0xdc, 0x00, 0x7f, 0x06, 0xe3, 0x04, 0x67, 0x01, 0x39, 0x01, 0xf3, 0x04, 0x23, 0xff, 0xc7, 0xf4, 0xfa, 0xf9, 0x3b, 0x05, 0x8a, 0x0a, 0xc7, 0x05, 0x3e, 0xf8, 0x00, 0xf6, 0x66, 0xfe, 0xe7, 0x04, 0x50, 0x05, 0x1c, 0x01, 0xd5, 0xfd, 0x6f, 0xfd, 0x72, 0xff, 0x36, 0xff, 0xab, 0xfe, 0x42, 0x01, 0x17, 0x04, 0x4e, 0x0b, 0xf3, 0xfd, 0xb0, 0xf1, 0x84, 0xf7, 0x27, 0x02, 0xcf, 0x08, 0x4b, 0x05, 0x0c, 0x07, 0x87, 0xfe, 0x39, 0xf3, 0xa0, 0xf7, 0x07, 0x06, 0x0a, 0x0a, 0x89, 0x00, 0x2e, 0xfa, 0x0a, 0xfa, 0x7d, 0x00, 0x44, 0x05, 0x1d, 0x03, 0xb5, 0x08, 0x49, 0x02, 0x2c, 0xf0, 0x1a, 0xf3, 0xdf, 0x03, 0x05, 0x0c, 0xb8, 0x0d, 0xb8, 0xfe, 0xee, 0xef, 0x70, 0xf4, 0x77, 0x04, 0x9e, 0x0a, 0x6a, 0x04, 0x6d, 0xfd, 0x00, 0x07, 0x0f, 0x02, 0x62, 0xec, 0xf9, 0xf8, 0x1c, 0x0a, 0x50, 0x09, 0x98, 0x00, 0x20, 0xff, 0xe9, 0xfc, 0xf1, 0xfb, 0x0e, 0x00, 0xf3, 0x02, 0xdf, 0x01, 0x93, 0x01, 0x6d, 0xfe, 0x95, 0xfc, 0x57, 0xff, 0x27, 0x02, 0x8b, 0x00, 0xaf, 0x03, 0x93, 0x11, 0x41, 0xf7, 0xf2, 0xe4, 0x6a, 0xf6, 0xcf, 0x0b, 0x0a, 0x0f, 0xdb, 0x02, 0x44, 0x00, 0x77, 0x03, 0x59, 0xf8, 0xf7, 0xf2, 0xe0, 0x00, 0x5f, 0x09, 0x01, 0x0a, 0x62, 0x04, 0x53, 0xf5, 0xda, 0xf3, 0xea, 0xfe, 0xd8, 0x07, 0xc3, 0x07, 0x37, 0x00, 0x75, 0xfa, 0x69, 0xfa, 0x58, 0xfe, 0xd5, 0x09, 0xa0, 0x07, 0x14, 0xfa, 0xe0, 0xf6, 0xd0, 0xfa, 0xe5, 0x03, 0xdf, 0x06, 0x4b, 0x02, 0x53, 0x00, 0x80, 0x00, 0x80, 0xfa, 0xd1, 0xfd, 0x7c, 0x01, 0x87, 0x0f, 0x4b, 0x05, 0xef, 0xe8, 0x3f, 0xef, 0x6a, 0x07, 0x95, 0x0f, 0x4c, 0x04, 0x47, 0xfd, 0x86, 0xff, 0x73, 0xfd, 0x00, 0xfc, 0xf1, 0x00, 0xef, 0x02, 0x5e, 0x01, 0x63, 0xff, 0xe7, 0xff, 0x4d, 0x00, 0xfc, 0xfe, 0xc4, 0xfe, 0x3b, 0x00, 0x30, 0x01, 0xf0, 0x01, 0x96, 0x01, 0xcd, 0xfd, 0xd1, 0xfb, 0x17, 0xff, 0x35, 0x03, 0x27, 0x05, 0x91, 0x03, 0x5f, 0xfd, 0x61, 0xf6, 0x80, 0xf9, 0xaf, 0x02, 0x92, 0x06, 0xd9, 0x03, 0x74, 0xff, 0x88, 0xfb, 0x2d, 0xfb, 0x03, 0x03, 0x5b, 0x04, 0x79, 0x0a, 0x29, 0x03, 0x60, 0xef, 0x80, 0xf3, 0x83, 0x04, 0x27, 0x0b, 0xf7, 0x03, 0x73, 0xfe, 0x2f, 0xff, 0xf7, 0xfe, 0xf7, 0xfc, 0x0c, 0xff, 0xf1, 0x01, 0x11, 0x03, 0xd7, 0x03, 0x4d, 0x00, 0x65, 0xf9, 0xa5, 0xf9, 0xa6, 0x01, 0x5b, 0x04, 0xce, 0xff, 0x7d, 0xff, 0xab, 0x05, 0x23, 0x03, 0x1d, 0xfb, 0x18, 0xfb, 0xd5, 0xfb, 0xd6, 0xfe, 0xf6, 0x01, 0x66, 0x09, 0xdf, 0x07, 0xd8, 0xf8, 0x4a, 0xf6, 0x3e, 0xfb, 0x81, 0x03, 0xdb, 0x05, 0x35, 0x03, 0xdb, 0xfe, 0x80, 0x05, 0x8b, 0x06, 0xab, 0xf4, 0x88, 0xf2, 0x7f, 0xfd, 0x39, 0x08, 0xf3, 0x07, 0x27, 0x02, 0xae, 0x05, 0x3d, 0xfe, 0xf1, 0xf1, 0xf1, 0xf7, 0xd8, 0x08, 0x32, 0x0e, 0x0b, 0xff, 0xd9, 0xf4, 0x2d, 0xf8, 0x7b, 0x02, 0xd8, 0x0a, 0xa7, 0x0a, 0x71, 0xf9, 0xd7, 0xf1, 0x25, 0xfa, 0x7f, 0x07, 0x82, 0x07, 0x64, 0x06, 0x7b, 0x05, 0xae, 0xf5, 0xf9, 0xf1, 0xc7, 0xfc, 0x2d, 0x08, 0x2d, 0x08, 0xe4, 0x01, 0x13, 0x05, 0x7e, 0xff, 0xa7, 0xf1, 0xfe, 0xf6, 0xb8, 0x06, 0xc4, 0x08, 0x57, 0x05, 0x0f, 0x09, 0x79, 0xf7, 0xe3, 0xed, 0x05, 0xfa, 0xd2, 0x0a, 0x0e, 0x09, 0xac, 0x08, 0x3f, 0x02, 0xbf, 0xf0, 0xcf, 0xf2, 0x4f, 0x02, 0x71, 0x0b, 0x2b, 0x05, 0x51, 0xfe, 0x77, 0xfd, 0xa4, 0xff, 0xf9, 0xff, 0xf2, 0xff, 0x38, 0x00, 0x2f, 0x00, 0x11, 0x00, 0xa3, 0x00, 0xa3, 0x04, 0x5a, 0x01, 0x9b, 0xfc, 0x19, 0xfe, 0x06, 0xfa, 0xee, 0xf9, 0x4b, 0x02, 0x12, 0x08, 0x77, 0x08, 0x20, 0xff, 0xf6, 0xf6, 0x7d, 0xfa, 0x19, 0x00, 0x81, 0x02, 0xa7, 0x03, 0x33, 0x02, 0xe7, 0x05, 0x22, 0x04, 0x87, 0xf6, 0xfb, 0xf5, 0x9d, 0xfe, 0x17, 0x04, 0x1f, 0x04, 0x77, 0x02, 0xc5, 0x03, 0x9e, 0x04, 0x0b, 0xf5, 0x5c, 0xf5, 0x7b, 0x03, 0xe6, 0x0d, 0x94, 0x0b, 0x29, 0xf5, 0xc8, 0xef, 0xb5, 0xfa, 0x2c, 0x09, 0x75, 0x08, 0xb8, 0x04, 0xfc, 0x05, 0x6c, 0xf7, 0x9a, 0xf0, 0x69, 0xfd, 0xa0, 0x09, 0x26, 0x09, 0x67, 0x07, 0x81, 0xfb, 0xaa, 0xf2, 0xa9, 0xf9, 0x2f, 0x03, 0x94, 0x06, 0x8e, 0x05, 0x34, 0x08, 0x60, 0xfb, 0x78, 0xf3, 0x55, 0xfa, 0x37, 0x03, 0xaf, 0x06, 0xf1, 0x03, 0x6f, 0x05, 0x1b, 0xff, 0x44, 0xf6, 0xfc, 0xf9, 0xbb, 0x01, 0xa7, 0x06, 0x76, 0x04, 0xdb, 0xfd, 0xa2, 0xfb, 0x49, 0xfb, 0x50, 0x00, 0xa3, 0x04, 0xd3, 0x04, 0x07, 0x0a, 0x39, 0xfc, 0xe4, 0xee, 0x21, 0xf8, 0x88, 0x07, 0x2a, 0x0b, 0x45, 0x0b, 0x05, 0xfb, 0x97, 0xed, 0x79, 0xf9, 0xfc, 0x09, 0x5f, 0x08, 0x39, 0x08, 0xef, 0x02, 0x6f, 0xef, 0x7f, 0xf2, 0x88, 0x04, 0xb9, 0x0b, 0x58, 0x04, 0xed, 0xfd, 0xe8, 0x00, 0x27, 0x06, 0xc9, 0xfb, 0xc3, 0xf2, 0xb6, 0xfb, 0x05, 0x09, 0x07, 0x0a, 0xcf, 0xfe, 0xbd, 0xf8, 0xb5, 0xfb, 0x0b, 0xff, 0x75, 0x02, 0x85, 0x03, 0xed, 0x03, 0x47, 0x09, 0xa9, 0xfb, 0x81, 0xf2, 0x81, 0xf8, 0x61, 0x03, 0xaa, 0x08, 0xf7, 0x03, 0x18, 0xff, 0x19, 0x02, 0x7b, 0xff, 0x8a, 0xf8, 0xd7, 0xfc, 0x30, 0x08, 0x94, 0x0d, 0xf1, 0xf5, 0x71, 0xec, 0xe6, 0x00, 0xff, 0x0b, 0x78, 0x0b, 0x47, 0x05, 0x2b, 0xf4, 0x4c, 0xf1, 0xac, 0xfe, 0xe1, 0x08, 0x86, 0x0a, 0xdb, 0x01, 0x99, 0xf5, 0x0d, 0xf9, 0xcb, 0x06, 0xee, 0x08, 0x94, 0xfe, 0xd4, 0xf9, 0xc5, 0xfb, 0x22, 0x00, 0x43, 0x04, 0xb1, 0x02, 0x60, 0xff, 0xe1, 0xfc, 0x7d, 0xfc, 0xc2, 0xff, 0xa8, 0x07, 0xa7, 0x08, 0x36, 0xfa, 0x01, 0xf6, 0x78, 0xfb, 0xf3, 0x02, 0xb7, 0x05, 0x1f, 0x07, 0x17, 0x03, 0xeb, 0xf7, 0x21, 0xf8, 0xd5, 0xfe, 0x3f, 0x05, 0x50, 0x06, 0xf6, 0xff, 0x89, 0xfb, 0x3e, 0xfb, 0x5a, 0xfe, 0x24, 0x04, 0x0c, 0x04, 0x6b, 0x06, 0x3f, 0x04, 0x48, 0xf6, 0x4b, 0xf5, 0xa8, 0xfe, 0x28, 0x04, 0xee, 0x05, 0x6c, 0x07, 0x3a, 0xfe, 0x9a, 0xf7, 0x89, 0xfb, 0x8b, 0x00, 0xc7, 0x04, 0x3e, 0x09, 0x1c, 0x00, 0x66, 0xf6, 0xc5, 0xf8, 0x77, 0x00, 0xbb, 0x06, 0xf7, 0x03, 0xc7, 0x08, 0x6b, 0x00, 0xdb, 0xf1, 0xab, 0xf5, 0x09, 0x02, 0x84, 0x09, 0xe3, 0x06, 0x8f, 0x06, 0x74, 0xfa, 0xe6, 0xf3, 0x34, 0xfa, 0xe1, 0x03, 0x8a, 0x06, 0x13, 0x07, 0xe8, 0x06, 0x8b, 0xf7, 0xda, 0xf3, 0xc6, 0xfb, 0x87, 0x05, 0x52, 0x07, 0xb3, 0x06, 0x2b, 0x03, 0xde, 0xf3, 0x06, 0xf5, 0x8d, 0x02, 0x77, 0x0c, 0x5c, 0x0c, 0xb5, 0xf8, 0x63, 0xef, 0x99, 0xf9, 0x88, 0x09, 0x21, 0x08, 0x5e, 0x08, 0xb7, 0x02, 0x99, 0xf0, 0xea, 0xf2, 0x45, 0x03, 0x46, 0x0b, 0xb4, 0x05, 0x58, 0x07, 0xb9, 0xfc, 0x07, 0xf1, 0x52, 0xf7, 0x1f, 0x04, 0x0e, 0x0a, 0xcb, 0x03, 0xc7, 0x02, 0x1f, 0x04, 0x92, 0xf6, 0x6a, 0xf1, 0x73, 0x02, 0x9a, 0x09, 0xe4, 0x0c, 0x67, 0x03, 0xe9, 0xf0, 0x27, 0xf2, 0x15, 0x01, 0xef, 0x09, 0x2c, 0x09, 0x7a, 0x07, 0xf3, 0xf7, 0xf3, 0xf2, 0x39, 0xfa, 0x9f, 0x05, 0x6f, 0x08, 0x63, 0x02, 0xf1, 0xfd, 0xb6, 0x00, 0xb5, 0x03, 0x45, 0xf9, 0x8a, 0xfa, 0x82, 0x01, 0x86, 0x0a, 0x51, 0x0d, 0xa4, 0xf2, 0xf1, 0xe9, 0x40, 0xfe, 0x6c, 0x0e, 0xa9, 0x09, 0xdb, 0x02, 0x59, 0xfb, 0x78, 0xf6, 0x06, 0xfe, 0x30, 0x05, 0xa3, 0x04, 0xf3, 0x03, 0x2f, 0x02, 0xa2, 0xf8, 0xf9, 0xf5, 0x55, 0x00, 0x24, 0x08, 0xb7, 0x08, 0x69, 0xfb, 0xd3, 0xf7, 0xdc, 0x04, 0x33, 0x01, 0x19, 0xfc, 0xad, 0xfc, 0x84, 0xff, 0xb1, 0x03, 0xe7, 0x03, 0xb6, 0x00, 0xe3, 0xfd, 0x03, 0x03, 0xc3, 0x06, 0xf2, 0xf9, 0xd9, 0xf4, 0xb1, 0xfb, 0x34, 0x04, 0x39, 0x08, 0xe2, 0x09, 0x4b, 0xfe, 0x5b, 0xf4, 0x3a, 0xf9, 0x74, 0x00, 0x7a, 0x06, 0xb3, 0x03, 0x27, 0x04, 0xc4, 0x01, 0xa7, 0xf6, 0x7a, 0xf9, 0xd2, 0x06, 0xb8, 0x0f, 0x55, 0xfc, 0x3a, 0xf0, 0xd7, 0xf7, 0x3a, 0x04, 0xa8, 0x08, 0xf7, 0x09, 0x07, 0x01, 0xb8, 0xf5, 0xa9, 0xf7, 0x5e, 0xfe, 0xfc, 0x05, 0xa3, 0x05, 0xd0, 0x00, 0xe8, 0x00, 0x67, 0x02, 0xcd, 0xf9, 0xa1, 0xf9, 0x15, 0x02, 0x33, 0x05, 0x5f, 0x03, 0x32, 0x04, 0xcb, 0xfc, 0xd0, 0xf5, 0x75, 0xfb, 0x6c, 0x0c, 0xad, 0x0a, 0xe7, 0xf5, 0x49, 0xf4, 0x93, 0xfe, 0x7f, 0x04, 0xf3, 0x03, 0x63, 0x01, 0xf3, 0x02, 0x1f, 0x09, 0xb4, 0xfb, 0x91, 0xf1, 0xbc, 0xf9, 0xb7, 0x05, 0x10, 0x09, 0xf7, 0x01, 0x41, 0x00, 0xeb, 0x06, 0x59, 0xfa, 0x3a, 0xf3, 0xe2, 0xfa, 0x57, 0x05, 0xfe, 0x07, 0x86, 0x04, 0x39, 0x02, 0x6d, 0xf8, 0x41, 0xf9, 0x19, 0x02, 0x70, 0x0c, 0xb4, 0x05, 0x90, 0xf3, 0xb9, 0xf4, 0x1c, 0x00, 0x2f, 0x09, 0xcb, 0x05, 0x4c, 0xfe, 0xa4, 0xfa, 0x64, 0xfb, 0x69, 0x02, 0x0b, 0x04, 0x48, 0x07, 0x42, 0x06, 0xf7, 0xf5, 0x06, 0xf3, 0x73, 0xfd, 0xeb, 0x07, 0xff, 0x07, 0x0c, 0x07, 0xeb, 0xfd, 0x72, 0xf4, 0xd6, 0xf9, 0xe8, 0x01, 0x8d, 0x08, 0x5a, 0x05, 0xb3, 0xfc, 0x9a, 0xf9, 0xf9, 0xfa, 0x69, 0x02, 0x5b, 0x05, 0xc9, 0x02, 0x23, 0xff, 0xf1, 0x09, 0xc2, 0xff, 0x66, 0xeb, 0x81, 0xf8, 0x60, 0x0a, 0x39, 0x0a, 0x7b, 0x02, 0x64, 0x04, 0xf1, 0xf9, 0x34, 0xf1, 0x01, 0xfe, 0x5f, 0x09, 0xcc, 0x07, 0x3e, 0x07, 0xeb, 0xfd, 0xa8, 0xf0, 0xce, 0xf6, 0x0c, 0x05, 0xb7, 0x08, 0x64, 0x06, 0x07, 0x07, 0xe9, 0xf8, 0xd4, 0xf3, 0x39, 0xfb, 0x23, 0x03, 0xaf, 0x06, 0x79, 0x03, 0xd3, 0x00, 0xfb, 0x05, 0x44, 0xff, 0x58, 0xf1, 0x2e, 0xf9, 0x67, 0x07, 0x00, 0x0a, 0x66, 0x08, 0x35, 0xfc, 0x6c, 0xf2, 0x6a, 0xf9, 0x05, 0x03, 0x4e, 0x06, 0x23, 0x05, 0xc4, 0x07, 0x61, 0xfc, 0x8a, 0xf4, 0x2c, 0xfa, 0x45, 0x02, 0xcd, 0x0a, 0x63, 0x05, 0xce, 0xf8, 0x59, 0xf6, 0x01, 0x00, 0x83, 0x07, 0xff, 0x03, 0xfe, 0x07, 0x3e, 0x00, 0x46, 0xee, 0xa7, 0xf6, 0xb7, 0x07, 0x35, 0x0a, 0x93, 0x02, 0xbb, 0x07, 0x4f, 0xfd, 0xe7, 0xf0, 0x66, 0xf8, 0x81, 0x02, 0xf0, 0x07, 0x6b, 0x04, 0x52, 0x01, 0x54, 0x04, 0x56, 0x00, 0x21, 0xf3, 0xd9, 0xf7, 0x77, 0x05, 0xd9, 0x0a, 0x67, 0x0b, 0xec, 0xf9, 0xab, 0xf1, 0xd1, 0xf9, 0xdf, 0x02, 0xda, 0x06, 0xf1, 0x03, 0xc2, 0x00, 0xf3, 0x04, 0x4f, 0x01, 0x29, 0xf3, 0x8b, 0xf7, 0x17, 0x05, 0x05, 0x0a, 0xab, 0x02, 0x1a, 0xfb, 0x8f, 0xfc, 0xc0, 0x07, 0xd7, 0x05, 0xfc, 0xf5, 0x10, 0xf4, 0x2c, 0xff, 0x8f, 0x08, 0x7e, 0x0c, 0x95, 0x02, 0x3b, 0xf5, 0xd3, 0xf7, 0x1a, 0x00, 0x9b, 0x03, 0x35, 0x02, 0xe3, 0x00, 0x2d, 0x03, 0x9e, 0x07, 0xde, 0xfb, 0x67, 0xf4, 0x06, 0xfa, 0xb1, 0x03, 0xe4, 0x07, 0x45, 0x03, 0x48, 0x05, 0x75, 0x01, 0x86, 0xf3, 0xb9, 0xf5, 0x81, 0x03, 0x14, 0x0a, 0x38, 0x09, 0xd9, 0xfe, 0xdc, 0xf4, 0xb4, 0xf9, 0x82, 0x01, 0x37, 0x04, 0x81, 0x01, 0xfb, 0x03, 0x0b, 0x07, 0xcd, 0xfa, 0x43, 0xf6, 0x99, 0xfa, 0x3d, 0x03, 0x6b, 0x06, 0xeb, 0x06, 0x77, 0x06, 0x7f, 0xf5, 0x40, 0xf1, 0x79, 0x01, 0x95, 0x0a, 0x9a, 0x0d, 0x86, 0xff, 0x03, 0xef, 0x66, 0xf5, 0xb7, 0x05, 0x34, 0x0a, 0xc0, 0x05, 0xa4, 0x05, 0x5e, 0xf9, 0xb2, 0xf1, 0xf2, 0xfb, 0x3a, 0x07, 0x71, 0x08, 0xf3, 0xff, 0x7d, 0x03, 0x94, 0x01, 0x4a, 0xf6, 0x7c, 0xf8, 0x66, 0xff, 0x4b, 0x06, 0xfb, 0x04, 0xeb, 0x05, 0x3f, 0x03, 0x4a, 0xf6, 0x99, 0xf5, 0x7c, 0xfe, 0xd0, 0x06, 0x9f, 0x05, 0x71, 0x02, 0x2a, 0x08, 0x84, 0xfb, 0x2e, 0xf2, 0x46, 0xf9, 0x54, 0x04, 0x20, 0x08, 0x8a, 0x06, 0xc0, 0x04, 0xe6, 0xf8, 0x98, 0xf4, 0xda, 0xfb, 0x6b, 0x06, 0xc0, 0x0d, 0xd3, 0x02, 0xe8, 0xf4, 0x9b, 0xf5, 0xc6, 0xff, 0x78, 0x08, 0xc0, 0x04, 0xb6, 0x04, 0x32, 0x04, 0xfc, 0xf4, 0x91, 0xf2, 0xa5, 0x01, 0xdf, 0x09, 0x82, 0x09, 0xbf, 0x03, 0x29, 0xf6, 0x5a, 0xf5, 0xcf, 0xfe, 0x7e, 0x06, 0x5b, 0x07, 0x0f, 0x01, 0x28, 0xfb, 0x61, 0xfc, 0x12, 0xff, 0x87, 0xff, 0x9b, 0x00, 0x8e, 0x04, 0x30, 0x0a, 0x6f, 0xfd, 0xc2, 0xf2, 0x15, 0xf8, 0xd8, 0x04, 0xe0, 0x08, 0xe3, 0x02, 0x31, 0x02, 0x73, 0xfd, 0x19, 0xf7, 0x33, 0xff, 0x60, 0x04, 0x10, 0x09, 0x58, 0x09, 0xb1, 0xf3, 0x5d, 0xed, 0x9f, 0xfe, 0x90, 0x0b, 0x71, 0x0b, 0xd3, 0x04, 0xaf, 0xf7, 0x0e, 0xf6, 0x3d, 0xfe, 0xc9, 0x03, 0xc1, 0x02, 0x0d, 0x00, 0x7d, 0x00, 0x3f, 0x03, 0xe8, 0x06, 0x2b, 0xfd, 0x03, 0xf5, 0x29, 0xfb, 0x33, 0x04, 0x7b, 0x07, 0x1f, 0x02, 0xab, 0xfc, 0x65, 0xfc, 0x4a, 0xff, 0x94, 0x01, 0x1b, 0x02, 0xca, 0x00, 0xed, 0xfe, 0xba, 0xfe, 0x86, 0xff, 0x88, 0x00, 0xb6, 0x00, 0x8b, 0x00, 0x93, 0xff, 0x0a, 0xfe, 0x43, 0xfd, 0x9b, 0x03, 0xd1, 0x08, 0xeb, 0xfd, 0x5a, 0xf8, 0x21, 0xfb, 0x8c, 0xff, 0xe1, 0x03, 0x43, 0x04, 0x03, 0x01, 0xd9, 0x01, 0x29, 0x02, 0x68, 0xfa, 0x89, 0xf8, 0x01, 0x02, 0x04, 0x04, 0x9f, 0x0b, 0x97, 0x06, 0x16, 0xee, 0x47, 0xef, 0xc1, 0x02, 0xb5, 0x0d, 0xf0, 0x05, 0x0c, 0x01, 0x7a, 0x04, 0xf9, 0xf7, 0x00, 0xf2, 0x28, 0x01, 0xc1, 0x0c, 0x97, 0x04, 0x01, 0xf8, 0x8a, 0xfb, 0x4a, 0x04, 0x44, 0x0c, 0x8e, 0x00, 0x03, 0xf1, 0x59, 0xf7, 0x19, 0x02, 0x62, 0x07, 0x23, 0x03, 0x37, 0x04, 0x3e, 0x07, 0x84, 0xf8, 0xac, 0xf3, 0x34, 0xfb, 0x38, 0x06, 0x9f, 0x07, 0xf9, 0x02, 0x3e, 0xff, 0x05, 0xfc, 0x85, 0xfd, 0xe3, 0x00, 0xf0, 0x01, 0xf9, 0x02, 0x50, 0x0b, 0x1d, 0xfc, 0xaa, 0xed, 0x22, 0xf9, 0x83, 0x07, 0x4d, 0x09, 0x33, 0x02, 0xba, 0xfb, 0xf9, 0xfb, 0x63, 0x05, 0xe5, 0x02, 0x39, 0xfc, 0xb5, 0xfa, 0x54, 0xfe, 0xf5, 0x03, 0x63, 0x05, 0x3a, 0x07, 0x9d, 0xfd, 0xb6, 0xf4, 0x46, 0xfa, 0x13, 0x03, 0xe7, 0x07, 0x2f, 0x04, 0x03, 0xfd, 0x1d, 0xfb, 0xb4, 0xfe, 0x4e, 0x01, 0x27, 0x02, 0xe2, 0xfe, 0xd7, 0xfc, 0x3e, 0x00, 0xdf, 0x04, 0x0f, 0x0b, 0x73, 0xfd, 0xfa, 0xf0, 0xbb, 0xf7, 0x9f, 0x05, 0xa5, 0x09, 0x69, 0x02, 0xcf, 0x02, 0xa5, 0x02, 0xdb, 0xf4, 0x8e, 0xf5, 0x7b, 0x04, 0xc0, 0x08, 0xf7, 0x06, 0xd3, 0x04, 0x1f, 0xf7, 0x16, 0xf1, 0x39, 0xfd, 0x22, 0x09, 0xfa, 0x07, 0xaf, 0x09, 0x0b, 0xfd, 0x72, 0xf1, 0xd3, 0xf6, 0x3a, 0x04, 0xd2, 0x08, 0x04, 0x08, 0x1a, 0x06, 0xee, 0xf4, 0x58, 0xf1, 0x8f, 0x00, 0xd7, 0x09, 0xd6, 0x05, 0x19, 0xfe, 0x2d, 0x01, 0x56, 0x0a, 0xf1, 0xf7, 0xa1, 0xed, 0x89, 0xfd, 0x60, 0x0b, 0x2f, 0x09, 0xe8, 0x06, 0xd9, 0xfc, 0xa7, 0xf1, 0x4d, 0xfa, 0xc2, 0x06, 0xcb, 0x06, 0x01, 0x00, 0xa2, 0xfb, 0x47, 0xfc, 0xbb, 0x01, 0x23, 0x03, 0xb3, 0x04, 0x89, 0x08, 0xe6, 0xf9, 0x92, 0xf2, 0xba, 0xfa, 0x16, 0x05, 0xf7, 0x07, 0x4f, 0x07, 0x3a, 0x00, 0xec, 0xf6, 0xbc, 0xf9, 0x68, 0x00, 0x0f, 0x05, 0x52, 0x05, 0x6e, 0x00, 0xe5, 0xfb, 0xf1, 0xfc, 0xa0, 0xfe, 0x6b, 0x00, 0x1d, 0x03, 0x53, 0x05, 0xb4, 0x01, 0xc4, 0xfa, 0xc1, 0xfa, 0xf0, 0xfe, 0xe2, 0x00, 0x9a, 0x01, 0xbf, 0x02, 0x7d, 0x03, 0xb3, 0x03, 0x37, 0xfe, 0x21, 0xf8, 0xc1, 0xfb, 0xd5, 0x02, 0x53, 0x04, 0x46, 0x01, 0xab, 0xfe, 0x64, 0xfe, 0xa4, 0xff, 0xbe, 0x00, 0xf2, 0x00, 0x3a, 0x00, 0x78, 0xff, 0x71, 0xff, 0xf9, 0xff, 0x4d, 0x00, 0x10, 0x00, 0xa6, 0xfe, 0x91, 0xfd, 0x98, 0x00, 0xdf, 0x02, 0x9c, 0x01, 0x00, 0x00, 0x03, 0x01, 0x37, 0x0a, 0xc1, 0xfd, 0xd4, 0xef, 0x60, 0xf6, 0xc7, 0x05, 0xc6, 0x09, 0x2d, 0x08, 0x73, 0x05, 0xbc, 0xf5, 0x5f, 0xf3, 0xdb, 0xfc, 0xfe, 0x07, 0x00, 0x07, 0x9f, 0x02, 0x91, 0x02, 0xd1, 0xf8, 0xa6, 0xf7, 0x27, 0x02, 0x78, 0x07, 0x80, 0x0c, 0x07, 0xfd, 0x84, 0xee, 0x2b, 0xf7, 0xc3, 0x05, 0xd7, 0x0a, 0x3f, 0x08, 0x43, 0xfe, 0x47, 0xf6, 0x71, 0xfa, 0xc8, 0xff, 0x89, 0x03, 0xef, 0x03, 0x49, 0x02, 0xcf, 0x07, 0x62, 0xff, 0xb9, 0xf2, 0x41, 0xf7, 0xf9, 0x02, 0x4d, 0x09, 0x71, 0x03, 0xfb, 0x03, 0x6f, 0x04, 0x89, 0xf6, 0x37, 0xf5, 0x2b, 0xfd, 0x4b, 0x05, 0x7f, 0x06, 0x23, 0x03, 0xc2, 0x07, 0x65, 0xfc, 0x29, 0xf0, 0x7d, 0xfa, 0x92, 0x08, 0xbe, 0x08, 0xd9, 0x09, 0xcb, 0xfc, 0xfc, 0xed, 0xa5, 0xf8, 0x67, 0x08, 0x5f, 0x09, 0x11, 0x03, 0x6a, 0x05, 0x26, 0xfb, 0x89, 0xf0, 0xe8, 0xfb, 0xcd, 0x08, 0x24, 0x07, 0x56, 0x00, 0x4d, 0xfd, 0xd0, 0x09, 0x09, 0x02, 0x0f, 0xf0, 0xdf, 0xf4, 0x71, 0x03, 0x69, 0x0a, 0x87, 0x07, 0xc3, 0x04, 0xae, 0xf8, 0x9b, 0xf5, 0x59, 0xfd, 0x3b, 0x07, 0x9f, 0x05, 0xbd, 0xfe, 0x45, 0xf9, 0x7f, 0xfd, 0xa1, 0x03, 0x1c, 0x08, 0x81, 0x08, 0x93, 0xf7, 0x3c, 0xf2, 0xd1, 0xfb, 0x60, 0x07, 0xf2, 0x07, 0xaf, 0x04, 0x61, 0x02, 0x4d, 0xf9, 0xb1, 0xf6, 0x19, 0xfe, 0x8f, 0x04, 0x40, 0x06, 0xa6, 0x01, 0x0c, 0xfb, 0xf6, 0xfa, 0x62, 0x06, 0xd6, 0x05, 0x95, 0xfb, 0x0c, 0xf8, 0x0d, 0xfe, 0x07, 0x05, 0x65, 0x09, 0xfb, 0x04, 0xf0, 0xf6, 0x11, 0xf6, 0x51, 0xfe, 0x27, 0x05, 0x78, 0x07, 0x4b, 0x04, 0x9c, 0xfb, 0x73, 0xf7, 0x85, 0xfc, 0x00, 0x04, 0x8f, 0x0a, 0x9b, 0x05, 0x1f, 0xf7, 0xb3, 0xf6, 0x61, 0xfd, 0x0e, 0x07, 0x2e, 0x08, 0xc1, 0xfe, 0xb9, 0xf9, 0xc1, 0xfa, 0x79, 0x01, 0x18, 0x05, 0xfd, 0x08, 0xb3, 0x00, 0xe8, 0xf4, 0x4c, 0xf6, 0x47, 0x02, 0x57, 0x08, 0xee, 0x05, 0xe3, 0x07, 0xd1, 0xf9, 0x0e, 0xf1, 0xba, 0xfb, 0xb3, 0x07, 0xb0, 0x08, 0x03, 0x05, 0x7a, 0xfb, 0xe3, 0xf6, 0x90, 0xfb, 0xdb, 0x02, 0xe4, 0x05, 0x67, 0x04, 0xe4, 0x05, 0xa1, 0xfc, 0x4b, 0xf4, 0xd6, 0xfa, 0x46, 0x04, 0x4e, 0x06, 0xc7, 0x00, 0x7f, 0x01, 0x0b, 0x06, 0x15, 0xfb, 0xc7, 0xf4, 0x7a, 0xff, 0xff, 0x08, 0x8f, 0x03, 0xd3, 0xfc, 0x27, 0xfc, 0xab, 0xff, 0x94, 0x00, 0x45, 0xff, 0x87, 0xff, 0x58, 0x07, 0xbe, 0x05, 0xbd, 0xf8, 0x77, 0xf6, 0xcf, 0xfc, 0xe7, 0x05, 0xfa, 0x05, 0x81, 0x02, 0x1e, 0x06, 0x0b, 0xfd, 0x28, 0xf1, 0x58, 0xfa, 0xaa, 0x07, 0xc4, 0x07, 0x00, 0x0a, 0x60, 0xff, 0xb9, 0xf0, 0xa0, 0xf5, 0x83, 0x03, 0x5a, 0x0a, 0xe9, 0x03, 0xd3, 0x00, 0x93, 0x04, 0x71, 0xf9, 0x47, 0xf3, 0xbe, 0x00, 0xf9, 0x0b, 0x9f, 0x09, 0xf8, 0xf7, 0xab, 0xf2, 0xa0, 0xfe, 0x92, 0x09, 0x60, 0x0b, 0x53, 0xfd, 0xdc, 0xf3, 0x4c, 0xfa, 0x97, 0x04, 0x17, 0x0a, 0xfd, 0x02, 0xb8, 0xf7, 0xb1, 0xf8, 0x18, 0x05, 0x70, 0x09, 0x88, 0xfe, 0x21, 0xf9, 0x29, 0xfc, 0xa7, 0x00, 0x79, 0x03, 0xd9, 0x03, 0x47, 0xff, 0x1d, 0xfc, 0x29, 0x03, 0x78, 0x05, 0x99, 0xfb, 0x1e, 0xfa, 0x31, 0xfd, 0x36, 0x01, 0xed, 0x02, 0xe3, 0x06, 0xec, 0x06, 0xf1, 0xf8, 0x56, 0xf6, 0xb9, 0xfc, 0x69, 0x02, 0x67, 0x04, 0x0b, 0x03, 0x3c, 0x01, 0x32, 0x07, 0x76, 0xfe, 0x3a, 0xf1, 0xc8, 0xf9, 0x07, 0x0b, 0x80, 0x0b, 0xb6, 0xfb, 0xe1, 0xf5, 0x26, 0xfb, 0x56, 0x06, 0x5a, 0x0b, 0x96, 0xff, 0x7c, 0xf6, 0x99, 0xf8, 0xae, 0x01, 0xdf, 0x06, 0x9a, 0x04, 0x64, 0x06, 0xdd, 0xfd, 0x09, 0xf3, 0x35, 0xf9, 0x87, 0x04, 0xa0, 0x09, 0xd2, 0x06, 0x77, 0xfc, 0x1f, 0xf5, 0xe9, 0xfa, 0x32, 0x04, 0x15, 0x0b, 0x8f, 0x06, 0xe4, 0xf7, 0x1c, 0xf6, 0xf5, 0xfc, 0xdd, 0x03, 0x2e, 0x05, 0x8d, 0x01, 0xa1, 0xff, 0x03, 0xff, 0x6f, 0x0a, 0xff, 0x01, 0xbb, 0xf0, 0xf4, 0xf4, 0x5b, 0x02, 0x98, 0x09, 0xa9, 0x0a, 0x97, 0x02, 0x16, 0xf5, 0xd4, 0xf5, 0x89, 0xff, 0x16, 0x08, 0xe6, 0x04, 0x35, 0x03, 0x0b, 0x05, 0xea, 0xf7, 0x8f, 0xf4, 0xf6, 0x01, 0x5b, 0x06, 0x6d, 0x02, 0x52, 0xfe, 0x15, 0xfc, 0xd9, 0xfd, 0x29, 0x03, 0x19, 0x0a, 0x48, 0x01, 0x51, 0xf5, 0x70, 0xf7, 0xed, 0x01, 0xd6, 0x07, 0xdf, 0x04, 0x42, 0x06, 0xaf, 0xfc, 0x62, 0xf3, 0x7d, 0xf9, 0xbf, 0x06, 0x5d, 0x0b, 0xd1, 0xff, 0xda, 0xf8, 0x22, 0xf9, 0x42, 0x01, 0x23, 0x05, 0x99, 0x03, 0xc1, 0xfe, 0x68, 0x05, 0x2b, 0x07, 0x8b, 0xf4, 0x41, 0xf3, 0x07, 0xfd, 0x6f, 0x08, 0xda, 0x06, 0x03, 0x05, 0x17, 0x05, 0x2f, 0xf7, 0x61, 0xf3, 0xd3, 0xfd, 0x4a, 0x08, 0x10, 0x07, 0xb7, 0x06, 0xc3, 0xfe, 0xff, 0xf3, 0x8a, 0xf8, 0x89, 0x02, 0x48, 0x08, 0x37, 0x07, 0x5e, 0xfe, 0x78, 0xf8, 0x21, 0xfb, 0x8d, 0xff, 0xf5, 0x03, 0x21, 0x0a, 0x7f, 0x01, 0x2a, 0xf7, 0x52, 0xf7, 0x05, 0x00, 0x44, 0x06, 0x27, 0x09, 0xb7, 0x05, 0xd8, 0xf3, 0x2c, 0xf3, 0xe3, 0x03, 0xa8, 0x08, 0x9e, 0x09, 0x62, 0x04, 0xba, 0xf2, 0x8b, 0xf4, 0x9d, 0x00, 0x87, 0x07, 0x53, 0x03, 0xcc, 0xff, 0x99, 0xfe, 0x73, 0x06, 0xbb, 0x06, 0xd4, 0xf5, 0x03, 0xf2, 0x63, 0xff, 0x1a, 0x09, 0x67, 0x0a, 0x68, 0x06, 0xaf, 0xf5, 0x6a, 0xf1, 0xea, 0xff, 0x06, 0x09, 0x90, 0x0b, 0x0c, 0x04, 0x86, 0xf4, 0x23, 0xf6, 0x12, 0xff, 0x3c, 0x04, 0x1f, 0x04, 0xea, 0x01, 0x53, 0x02, 0x76, 0x05, 0x61, 0xfc, 0xa6, 0xf4, 0x2b, 0xfc, 0xcf, 0x05, 0x5f, 0x09, 0xde, 0x01, 0xbd, 0xf9, 0x0d, 0xfa, 0x66, 0xfe, 0x97, 0x01, 0x5a, 0x08, 0x70, 0x06, 0xb6, 0xf9, 0xe2, 0xf6, 0x49, 0xfc, 0x9f, 0x04, 0xab, 0x05, 0xdb, 0x01, 0x47, 0xff, 0x15, 0xff, 0xed, 0xfe, 0xf7, 0xfe, 0x53, 0x00, 0x2d, 0x02, 0x64, 0x07, 0x0f, 0xfd, 0xcb, 0xf2, 0x7d, 0xfb, 0x02, 0x08, 0x6e, 0x09, 0x56, 0xff, 0x2d, 0xfa, 0x85, 0xfc, 0x5a, 0x01, 0xf7, 0x02, 0xd5, 0xff, 0xf5, 0xfc, 0x2a, 0xff, 0x2b, 0x03, 0x51, 0x02, 0xb6, 0x06, 0x1f, 0x02, 0xd6, 0xf4, 0x81, 0xf7, 0xc5, 0x00, 0x2b, 0x06, 0x28, 0x06, 0x93, 0x01, 0x9c, 0xfb, 0xe6, 0xfb, 0x8f, 0xff, 0xaf, 0x02, 0xeb, 0x01, 0x96, 0xff, 0x75, 0xfd, 0x53, 0xfd, 0x61, 0x01, 0x10, 0x04, 0x5b, 0x07, 0x08, 0x00, 0x06, 0xf6, 0x51, 0xf9, 0x05, 0x03, 0x7f, 0x06, 0xa9, 0x01, 0xcd, 0xfd, 0x09, 0xfb, 0x39, 0xfe, 0xa3, 0x03, 0xab, 0x03, 0x4b, 0x02, 0x76, 0x05, 0x01, 0xfc, 0x01, 0xf3, 0x83, 0xfd, 0xa8, 0x07, 0x3e, 0x07, 0xc8, 0x06, 0xb5, 0xfd, 0x18, 0xf2, 0xb6, 0xf8, 0xfc, 0x04, 0x65, 0x0a, 0x8e, 0x04, 0xf4, 0xfa, 0x01, 0xfa, 0x0f, 0xfe, 0xcd, 0x00, 0x5e, 0x01, 0xe9, 0x02, 0xaf, 0x00, 0x4c, 0x06, 0x67, 0x05, 0x9c, 0xf4, 0xe3, 0xf2, 0xa1, 0x00, 0x80, 0x09, 0x28, 0x0c, 0x13, 0x02, 0xda, 0xf3, 0x59, 0xf6, 0x20, 0xff, 0x86, 0x07, 0x14, 0x05, 0x63, 0x05, 0x11, 0x03, 0x66, 0xf6, 0x48, 0xf5, 0xff, 0xff, 0x94, 0x07, 0xb0, 0x08, 0x29, 0x03, 0x4d, 0xf8, 0xfe, 0xf7, 0x9e, 0xff, 0x1b, 0x05, 0x77, 0x03, 0x99, 0xff, 0x24, 0xfe, 0x9d, 0xfd, 0x69, 0xfd, 0x07, 0x01, 0xd1, 0x03, 0xd5, 0x01, 0x09, 0x02, 0x6d, 0x02, 0x76, 0xfa, 0x86, 0xf8, 0xcd, 0x01, 0xa0, 0x04, 0x3a, 0x0c, 0x37, 0x02, 0x7e, 0xef, 0xd9, 0xf4, 0xa5, 0x01, 0xe7, 0x08, 0x7f, 0x05, 0x32, 0x00, 0x12, 0x01, 0xf0, 0x01, 0xf9, 0xfa, 0x81, 0xf8, 0x6d, 0x00, 0xeb, 0x04, 0x72, 0x05, 0xdf, 0x0a, 0xbc, 0xf9, 0x5e, 0xee, 0x3d, 0xf9, 0x25, 0x08, 0xd4, 0x09, 0x0b, 0x03, 0x43, 0x05, 0x8d, 0xfc, 0xdc, 0xf1, 0xcd, 0xfa, 0x9f, 0x06, 0x00, 0x08, 0xbb, 0x00, 0x94, 0x04, 0x5b, 0x03, 0xea, 0xf4, 0xf6, 0xf6, 0x4a, 0xff, 0x53, 0x05, 0x37, 0x04, 0x03, 0x02, 0x5b, 0xfe, 0x93, 0x06, 0x0b, 0x06, 0xa2, 0xf4, 0xd9, 0xf4, 0xfd, 0xfd, 0xe6, 0x06, 0x5f, 0x06, 0x15, 0x01, 0x0c, 0xff, 0xa3, 0x01, 0x7b, 0xfe, 0x19, 0xfb, 0x48, 0xff, 0x05, 0x03, 0x03, 0x03, 0x99, 0x03, 0x4d, 0x00, 0x8a, 0xf8, 0xdd, 0xf9, 0x61, 0x02, 0x1a, 0x07, 0xcc, 0x07, 0xb5, 0xfd, 0x69, 0xf4, 0x7c, 0xfa, 0x4d, 0x02, 0x8e, 0x04, 0x35, 0x03, 0x76, 0x01, 0x4e, 0x06, 0x96, 0xff, 0xee, 0xf5, 0x79, 0xfa, 0x0d, 0x01, 0x83, 0x06, 0x33, 0x05, 0x1c, 0xfe, 0xe1, 0xfb, 0xdb, 0xfd, 0x2b, 0x00, 0x04, 0x00, 0x0a, 0x04, 0xcb, 0x05, 0xa1, 0xfc, 0x7a, 0xf8, 0x1b, 0xfc, 0xc3, 0x03, 0x6b, 0x05, 0x83, 0x06, 0xdb, 0x01, 0x98, 0xf6, 0xd9, 0xf7, 0xf0, 0xff, 0xdf, 0x05, 0xd6, 0x07, 0x9b, 0x00, 0xe1, 0xf9, 0xd0, 0xfb, 0xe7, 0xff, 0xd0, 0x00, 0xa7, 0x00, 0xfa, 0x01, 0xf3, 0x02, 0xd7, 0x06, 0x57, 0xfe, 0xe4, 0xf4, 0xc6, 0xf8, 0x71, 0x03, 0xde, 0x06, 0xe1, 0x08, 0x23, 0x03, 0x69, 0xf5, 0x5f, 0xf6, 0xd6, 0xfe, 0x36, 0x06, 0x3e, 0x06, 0xfb, 0x03, 0xfa, 0xfa, 0xe8, 0xf8, 0x57, 0x01, 0x70, 0x04, 0xe3, 0x05, 0x3f, 0x07, 0x58, 0xf8, 0x14, 0xf2, 0xe1, 0xfc, 0x26, 0x06, 0x04, 0x07, 0xf7, 0x01, 0xe3, 0xfd, 0x25, 0xfd, 0x1a, 0xff, 0xbf, 0x00, 0x58, 0x01, 0xb3, 0x00, 0xab, 0xff, 0x39, 0xff, 0x95, 0xff, 0x1a, 0x00, 0x5c, 0x00, 0x52, 0x00, 0xf3, 0xff, 0xcb, 0xff, 0xe9, 0xff, 0x28, 0x00, 0xef, 0xff, 0x95, 0xff, 0x37, 0xfd, 0xe4, 0xfe, 0xcf, 0x02, 0xd7, 0x03, 0x8c, 0x09, 0xad, 0xfc, 0x6f, 0xef, 0xe9, 0xfa, 0x98, 0x08, 0xf7, 0x07, 0x94, 0x01, 0xf9, 0x03, 0x33, 0xfc, 0xd3, 0xf7, 0x8f, 0xff, 0x46, 0x00, 0xda, 0xff, 0x0e, 0xff, 0x33, 0x02, 0x83, 0x02, 0x7c, 0x04, 0x8f, 0x06, 0x3d, 0xf8, 0x5c, 0xf2, 0xe5, 0xfe, 0xbe, 0x08, 0x84, 0x09, 0x7b, 0x03, 0x77, 0xf4, 0x8c, 0xf6, 0x1d, 0x03, 0xba, 0x0a, 0xd6, 0x0a, 0xa5, 0xf8, 0x97, 0xf2, 0x75, 0xfa, 0x06, 0x05, 0x34, 0x07, 0x47, 0x05, 0xdb, 0x04, 0xfc, 0xf9, 0xb7, 0xf5, 0xc3, 0xfc, 0x8e, 0x04, 0xaa, 0x07, 0xef, 0x04, 0xe6, 0xfb, 0xfd, 0xf8, 0x6d, 0xfd, 0x3f, 0x01, 0xb4, 0x05, 0x18, 0x04, 0x2b, 0xfd, 0x6d, 0xfb, 0x12, 0xfe, 0xf4, 0x00, 0xa0, 0x04, 0x39, 0x02, 0x45, 0xfd, 0xf1, 0xfb, 0x4b, 0xfd, 0xd0, 0x01, 0x0f, 0x04, 0xab, 0x01, 0xce, 0xff, 0xf6, 0xff, 0x68, 0x06, 0x37, 0x01, 0x84, 0xf4, 0x9e, 0xf7, 0xd9, 0x00, 0x80, 0x06, 0x16, 0x05, 0x2b, 0x00, 0x3a, 0xfe, 0xa5, 0xfe, 0x4c, 0x04, 0x34, 0x0b, 0x9d, 0xf8, 0xac, 0xef, 0x98, 0xfa, 0xbe, 0x07, 0x77, 0x08, 0x81, 0x03, 0x36, 0x06, 0xd2, 0xfa, 0x37, 0xf4, 0x82, 0xfa, 0xab, 0x04, 0x17, 0x07, 0x1a, 0x06, 0xef, 0x03, 0x42, 0xf8, 0x26, 0xf7, 0x8d, 0xfd, 0xff, 0x02, 0xb2, 0x04, 0x7b, 0x02, 0xaf, 0x02, 0x0e, 0x00, 0x1d, 0xf9, 0x02, 0xff, 0x1a, 0x0b, 0xd2, 0xff, 0x10, 0xf5, 0xfc, 0xf8, 0x03, 0x03, 0x37, 0x07, 0xf6, 0x06, 0x07, 0x03, 0x4c, 0xf8, 0x4c, 0xf8, 0x48, 0xff, 0x71, 0x03, 0x6a, 0x01, 0x00, 0x00, 0xfd, 0x00, 0x0b, 0x02, 0x5e, 0x04, 0x9a, 0x01, 0x21, 0xf8, 0x61, 0xf8, 0xc0, 0x01, 0x57, 0x08, 0x3f, 0x06, 0x89, 0xf9, 0x27, 0xf6, 0x61, 0x01, 0xef, 0x06, 0xab, 0x06, 0x0b, 0x02, 0xbe, 0xf7, 0xa2, 0xf8, 0x07, 0x00, 0x65, 0x03, 0x8e, 0x01, 0x42, 0x01, 0xcc, 0x07, 0x2e, 0x00, 0xef, 0xf6, 0x81, 0xf8, 0xb3, 0x00, 0xf8, 0x06, 0x08, 0x05, 0x3b, 0x03, 0x4d, 0xfc, 0xf3, 0xf7, 0x37, 0xfe, 0xb4, 0x04, 0xf0, 0x04, 0x06, 0x05, 0x9a, 0x00, 0xa0, 0xf7, 0x3c, 0xf8, 0x82, 0xfe, 0xd5, 0x03, 0x7b, 0x04, 0x58, 0x06, 0x15, 0x02, 0xfe, 0xf8, 0xc5, 0xf9, 0x3e, 0xff, 0x3b, 0x03, 0x58, 0x06, 0x2d, 0x02, 0x9c, 0xfb, 0xa4, 0xfa, 0x99, 0xfd, 0x75, 0x02, 0xaa, 0x04, 0xb6, 0x00, 0xb6, 0x06, 0xb9, 0x03, 0x8c, 0xf3, 0x5a, 0xf4, 0x70, 0x01, 0x7d, 0x09, 0xfb, 0x04, 0xc1, 0xfe, 0x64, 0x01, 0xda, 0x06, 0x15, 0xf9, 0xe6, 0xf1, 0x14, 0xff, 0x08, 0x09, 0x82, 0x0a, 0x5d, 0x02, 0x7a, 0xf6, 0x8e, 0xf5, 0xab, 0xff, 0x17, 0x07, 0xb8, 0x0a, 0x03, 0x03, 0xfb, 0xf5, 0x3e, 0xf7, 0xae, 0xfe, 0x7b, 0x05, 0xa2, 0x05, 0x44, 0x06, 0x84, 0xff, 0x19, 0xf6, 0xb1, 0xf8, 0xeb, 0x00, 0x38, 0x0b, 0xe7, 0x07, 0x14, 0xfa, 0x9f, 0xf5, 0x54, 0xfb, 0x33, 0x05, 0xa4, 0x06, 0x49, 0x01, 0x37, 0x01, 0xc1, 0x00, 0x89, 0xf9, 0x09, 0xfb, 0x73, 0x03, 0x9b, 0x03, 0x3e, 0x0a, 0x00, 0x04, 0xf8, 0xed, 0x61, 0xf2, 0x1f, 0x05, 0x5f, 0x0c, 0x43, 0x04, 0x21, 0x03, 0x7f, 0x01, 0xec, 0xf3, 0x79, 0xf6, 0xd7, 0x03, 0xff, 0x08, 0x9d, 0x02, 0x87, 0x05, 0x09, 0x02, 0xb1, 0xf3, 0xcc, 0xf5, 0x4b, 0x01, 0x5d, 0x08, 0xd6, 0x07, 0xe9, 0x03, 0xce, 0xf7, 0x4a, 0xf5, 0xa9, 0x00, 0x13, 0x07, 0xac, 0x06, 0x64, 0x06, 0x90, 0xf9, 0xbe, 0xf4, 0xef, 0xfd, 0x9e, 0x04, 0xc4, 0x04, 0xf8, 0x00, 0x60, 0xfe, 0x49, 0xfd, 0x37, 0xfd, 0xf7, 0x00, 0x67, 0x03, 0x14, 0x09, 0x84, 0x01, 0x39, 0xf4, 0x87, 0xf6, 0xb7, 0x01, 0xa8, 0x08, 0xd7, 0x03, 0x59, 0x03, 0xad, 0x03, 0x20, 0xf6, 0x59, 0xf4, 0xd0, 0x01, 0x7d, 0x09, 0x99, 0x0b, 0xdf, 0xfd, 0xd7, 0xf3, 0x9c, 0xf8, 0x2a, 0x01, 0xbb, 0x06, 0x3b, 0x04, 0x95, 0x00, 0x6f, 0x07, 0x42, 0xfe, 0xe0, 0xf0, 0x1d, 0xf9, 0x8e, 0x07, 0x57, 0x08, 0x0f, 0x03, 0x26, 0x07, 0x60, 0xf8, 0x6c, 0xef, 0x3b, 0xff, 0x4d, 0x0a, 0xea, 0x06, 0x17, 0x08, 0xe4, 0xfb, 0x00, 0xef, 0x21, 0xfa, 0x78, 0x08, 0xf0, 0x08, 0xa4, 0x00, 0x8b, 0xfc, 0x75, 0xfe, 0x33, 0x02, 0x5d, 0x03, 0xd5, 0xff, 0x21, 0xfb, 0x6d, 0xfc, 0xb5, 0x01, 0xca, 0x05, 0xf5, 0x00, 0x6d, 0xfa, 0x2f, 0xfc, 0xad, 0x00, 0xce, 0x00, 0x36, 0x01, 0xae, 0x01, 0x4a, 0x07, 0x4b, 0x03, 0xb7, 0xf6, 0x31, 0xf7, 0x62, 0xff, 0x02, 0x06, 0xea, 0x06, 0x0f, 0x05, 0xe5, 0xfa, 0xaf, 0xf7, 0x81, 0xfd, 0x5f, 0x04, 0x6e, 0x04, 0x00, 0x00, 0xfb, 0xfc, 0x29, 0xfc, 0x97, 0x00, 0x0f, 0x04, 0xfb, 0x06, 0xff, 0xfe, 0x18, 0xf6, 0xa7, 0xfc, 0x84, 0x05, 0x5e, 0x04, 0x0f, 0x04, 0x07, 0x02, 0x41, 0xf7, 0x69, 0xf8, 0x64, 0x00, 0xe4, 0x04, 0x3e, 0x04, 0xbe, 0x01, 0xed, 0xfd, 0x4b, 0xfd, 0xff, 0xfe, 0xe3, 0x00, 0xde, 0xfe, 0xd0, 0xfe, 0x46, 0x01, 0x44, 0x05, 0x48, 0x08, 0xa9, 0xfa, 0x19, 0xf4, 0xfd, 0xfa, 0x2f, 0x05, 0x2b, 0x07, 0xff, 0x07, 0x30, 0xff, 0xb1, 0xf5, 0x90, 0xf8, 0xa9, 0x00, 0xa4, 0x06, 0x13, 0x04, 0xb4, 0xff, 0x97, 0x00, 0x67, 0x07, 0x9d, 0xfc, 0x76, 0xf1, 0xc6, 0xfb, 0x97, 0x07, 0x6d, 0x0a, 0x07, 0x05, 0xc0, 0xf8, 0x8b, 0xf6, 0xcd, 0xfe, 0xff, 0x04, 0x89, 0x03, 0xeb, 0xfd, 0x0f, 0xfd, 0xdf, 0x01, 0x2b, 0x07, 0xe5, 0x02, 0x0c, 0xf9, 0x30, 0xf9, 0x3f, 0xff, 0x25, 0x03, 0x93, 0x02, 0x15, 0x03, 0x27, 0x02, 0xb9, 0xfc, 0xc9, 0xfb, 0x08, 0xff, 0xc7, 0x01, 0xcb, 0x02, 0x18, 0x01, 0x7f, 0xfe, 0xe5, 0xfd, 0x57, 0xfd, 0x26, 0x00, 0xc3, 0x02, 0x8d, 0x02, 0x67, 0x00, 0xcb, 0x06, 0xd2, 0x01, 0xfb, 0xf3, 0x96, 0xf8, 0x09, 0x02, 0xe3, 0x05, 0xb5, 0x03, 0x25, 0x00, 0x91, 0xfd, 0x31, 0xfd, 0x66, 0xfe, 0x67, 0x01, 0xc3, 0x07, 0xa1, 0x02, 0xcd, 0xf8, 0xad, 0xf8, 0xe8, 0xfe, 0xb7, 0x05, 0x4c, 0x04, 0x13, 0x05, 0xcd, 0x02, 0x7e, 0xf3, 0xcf, 0xf6, 0x83, 0x04, 0x62, 0x0b, 0xaa, 0x09, 0x58, 0xf8, 0xff, 0xf3, 0x81, 0xfb, 0x9b, 0x03, 0x93, 0x05, 0x29, 0x03, 0xe4, 0xfe, 0xe2, 0x04, 0xb0, 0x05, 0x1f, 0xf5, 0xce, 0xf3, 0x2b, 0x01, 0x1f, 0x09, 0xff, 0x04, 0xd6, 0xfe, 0x15, 0x01, 0xcf, 0x05, 0xbd, 0xfa, 0xcf, 0xf2, 0xf5, 0xfc, 0xa8, 0x07, 0x45, 0x0c, 0xb9, 0x03, 0xf1, 0xf5, 0xdc, 0xf6, 0xb5, 0xfd, 0x36, 0x06, 0xa7, 0x04, 0x00, 0x07, 0x47, 0x03, 0x37, 0xf5, 0x1f, 0xf5, 0x07, 0x00, 0xa2, 0x08, 0x4b, 0x05, 0xfd, 0x00, 0xd1, 0xfd, 0x35, 0xfc, 0x42, 0xfe, 0xc6, 0x01, 0xa7, 0x02, 0x4d, 0x03, 0xb4, 0x01, 0x31, 0xfd, 0xdd, 0xfc, 0x39, 0xfb, 0x1e, 0xfe, 0x91, 0x01, 0x45, 0x02, 0x01, 0x02, 0xa9, 0x03, 0xc0, 0x04, 0xaa, 0xfb, 0x88, 0xf8, 0x66, 0xfe, 0xf9, 0x02, 0x4b, 0x03, 0x4a, 0x00, 0xb1, 0xfc, 0xa9, 0xfd, 0x75, 0x02, 0x35, 0x03, 0x24, 0x05, 0xd1, 0x03, 0x2e, 0xf7, 0x14, 0xf5, 0x98, 0x00, 0x7c, 0x08, 0xa7, 0x08, 0x36, 0xff, 0x7c, 0xf7, 0xf1, 0xfa, 0x4e, 0x01, 0x97, 0x04, 0x11, 0x03, 0x8d, 0xff, 0x6d, 0xfd, 0x9f, 0xfe, 0xf0, 0xfe, 0x48, 0xff, 0x28, 0x01, 0x70, 0x07, 0xc9, 0x03, 0x69, 0xf8, 0x99, 0xf9, 0xab, 0xfe, 0xf3, 0x01, 0x65, 0x02, 0xcd, 0x02, 0x04, 0x00, 0x63, 0x06, 0xb9, 0x03, 0x27, 0xf2, 0xaa, 0xf5, 0x24, 0x07, 0xf7, 0x0e, 0x26, 0x00, 0x78, 0xf5, 0x02, 0xf8, 0x3f, 0x02, 0xc2, 0x06, 0xc8, 0x06, 0xb9, 0x03, 0x4d, 0xf8, 0x2f, 0xf7, 0x7b, 0xfe, 0x3f, 0x05, 0x3b, 0x07, 0x95, 0x00, 0xa9, 0xfa, 0xd5, 0xfb, 0x5e, 0x00, 0x1b, 0x05, 0x4f, 0x03, 0x7f, 0xfd, 0x47, 0xfc, 0xc4, 0xfe, 0x3f, 0x01, 0x37, 0x02, 0x4b, 0x01, 0x30, 0xff, 0x79, 0xfe, 0x3f, 0xff, 0x58, 0x00, 0xd1, 0x00, 0xb6, 0x00, 0x10, 0x00, 0x33, 0xff, 0x03, 0xff, 0x9f, 0xfd, 0x04, 0x00, 0x3d, 0x02, 0xd5, 0x02, 0x5d, 0xff, 0xc8, 0x05, 0xbe, 0x04, 0x3c, 0xf5, 0x14, 0xf5, 0x84, 0xfe, 0x0d, 0x08, 0x23, 0x06, 0x1d, 0x00, 0x45, 0xfe, 0x7f, 0x00, 0xc4, 0xfe, 0x2e, 0xfe, 0x7c, 0x00, 0x49, 0x01, 0x9e, 0x00, 0x88, 0x00, 0xea, 0xff, 0x31, 0xfe, 0x02, 0xff, 0xb8, 0x00, 0x0a, 0x01, 0x34, 0x00, 0x58, 0x01, 0xaf, 0x03, 0xdd, 0xfa, 0xb5, 0xf9, 0x64, 0x01, 0xe0, 0x05, 0xc8, 0x0f, 0xf4, 0xfa, 0x7c, 0xe8, 0x94, 0xf7, 0x62, 0x0b, 0x35, 0x0c, 0x55, 0x01, 0x13, 0x03, 0xbe, 0xfe, 0x01, 0xf2, 0x1f, 0xfc, 0x47, 0x07, 0x17, 0x09, 0xf8, 0x08, 0xaa, 0xf6, 0xbb, 0xee, 0x3b, 0x00, 0xe0, 0x09, 0x94, 0x0a, 0x53, 0x05, 0xb1, 0xf4, 0x5c, 0xf3, 0x9f, 0xfe, 0x9f, 0x08, 0x33, 0x05, 0x5f, 0x03, 0xb7, 0x05, 0x81, 0xf8, 0x01, 0xf4, 0x79, 0xfc, 0xf4, 0x06, 0xab, 0x06, 0x65, 0x02, 0xcf, 0x05, 0xa7, 0xfc, 0xe0, 0xf3, 0xb9, 0xf9, 0x47, 0x04, 0xfb, 0x07, 0x95, 0x02, 0x15, 0x03, 0x97, 0x02, 0x89, 0xf6, 0xe8, 0xf5, 0x93, 0x02, 0x60, 0x08, 0x55, 0x08, 0xd4, 0x00, 0x0f, 0xf6, 0x73, 0xf7, 0xa5, 0xff, 0x48, 0x07, 0xb5, 0x0a, 0x23, 0x00, 0x04, 0xf6, 0xf8, 0xf7, 0xf7, 0x00, 0xb4, 0x07, 0xbd, 0x02, 0x53, 0x03, 0x77, 0x06, 0xf1, 0xf4, 0x4a, 0xf2, 0xd5, 0x02, 0xe7, 0x09, 0x3a, 0x04, 0x0a, 0xfe, 0x23, 0xfd, 0x72, 0xff, 0x0d, 0x01, 0xa0, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0x99, 0xfe, 0xf9, 0xfd, 0x01, 0x00, 0x6c, 0x01, 0xa2, 0x01, 0x4f, 0x02, 0xff, 0xff, 0x85, 0xfb, 0x23, 0xfc, 0x8e, 0x01, 0xfc, 0x04, 0xeb, 0x05, 0xef, 0xfd, 0x27, 0xf6, 0x8d, 0xfa, 0xf4, 0x01, 0x08, 0x05, 0x5e, 0x07, 0xab, 0x03, 0x82, 0xf9, 0x76, 0xf9, 0xc9, 0xfd, 0xa7, 0x02, 0xdd, 0x03, 0xf3, 0x05, 0xbd, 0x01, 0x3a, 0xf9, 0xda, 0xf9, 0xcf, 0xfe, 0x39, 0x02, 0xc3, 0x05, 0xfb, 0x07, 0x6d, 0xfc, 0xd1, 0xf6, 0x75, 0xfb, 0xff, 0x01, 0x2c, 0x05, 0x25, 0x03, 0x71, 0x03, 0x57, 0x01, 0x39, 0xf9, 0x1a, 0xf9, 0x9b, 0x00, 0xca, 0x05, 0xc5, 0x03, 0x0a, 0xfe, 0x1d, 0xfb, 0x81, 0xfd, 0xe7, 0x04, 0x5d, 0x08, 0xf7, 0xfd, 0x7c, 0xf8, 0xb1, 0xfb, 0xee, 0x00, 0x71, 0x03, 0xca, 0x05, 0x3b, 0x03, 0xa0, 0xfa, 0xc5, 0xf9, 0x3f, 0xfd, 0xa7, 0x02, 0x73, 0x04, 0x2f, 0x02, 0xb1, 0xff, 0x75, 0xfe, 0x8a, 0xff, 0xe2, 0x01, 0x88, 0x04, 0x3d, 0x01, 0x02, 0xf8, 0x92, 0xf8, 0x01, 0x01, 0x4b, 0x05, 0x93, 0x03, 0xde, 0xff, 0x25, 0xfe, 0xa3, 0xfe, 0x2b, 0x00, 0xdd, 0x00, 0xb9, 0x00, 0xa8, 0xfe, 0x56, 0x00, 0x51, 0x02, 0x3b, 0xff, 0x2b, 0xfe, 0x12, 0xfe, 0xd5, 0xff, 0x2a, 0x05, 0x07, 0x02, 0x4d, 0xfc, 0x66, 0xfb, 0x64, 0xfe, 0x29, 0x03, 0xdf, 0x03, 0xf1, 0x00, 0x8e, 0xfe, 0xb9, 0x00, 0x1a, 0x06, 0x3a, 0xfe, 0x13, 0xf6, 0xf5, 0xfb, 0x67, 0x03, 0xe4, 0x04, 0x67, 0x01, 0xbf, 0xfc, 0xf7, 0xfd, 0xdc, 0x01, 0x6a, 0x07, 0x7b, 0x03, 0xe1, 0xf7, 0x09, 0xf8, 0xdb, 0xfd, 0x87, 0x05, 0x67, 0x04, 0x3b, 0x07, 0x8d, 0x02, 0x84, 0xf4, 0xaf, 0xf5, 0xa9, 0x01, 0x1f, 0x09, 0x99, 0x03, 0x7d, 0x00, 0x25, 0x01, 0x8a, 0xfa, 0x80, 0xfa, 0xdf, 0x02, 0x47, 0x03, 0xcb, 0x07, 0x5b, 0x06, 0xf9, 0xf0, 0x10, 0xf1, 0xc2, 0x04, 0xec, 0x0a, 0x88, 0x04, 0xc7, 0xfc, 0xcf, 0x02, 0x2e, 0x08, 0x20, 0xf7, 0x71, 0xf3, 0x95, 0xfc, 0xd4, 0x06, 0x63, 0x07, 0x03, 0x06, 0x71, 0x00, 0xb3, 0xf5, 0x86, 0xf8, 0x8b, 0x03, 0x0e, 0x07, 0x58, 0x06, 0x57, 0x02, 0x58, 0xf7, 0x5a, 0xf7, 0xe4, 0xff, 0x6b, 0x06, 0xa6, 0x05, 0x53, 0xff, 0xd5, 0xfb, 0x89, 0xfd, 0x55, 0x00, 0x65, 0x02, 0xac, 0x01, 0x78, 0xff, 0x0a, 0xfe, 0x73, 0xfd, 0x6b, 0xff, 0xc9, 0x02, 0xfc, 0x01, 0x05, 0x03, 0x82, 0x07, 0x38, 0xfa, 0x72, 0xf4, 0xa9, 0xfd, 0xf0, 0x04, 0x87, 0x03, 0x4b, 0xfe, 0x7d, 0xff, 0xdc, 0x01, 0x45, 0x09, 0xa7, 0x00, 0xc1, 0xf3, 0x67, 0xf7, 0xff, 0x02, 0x48, 0x08, 0xbf, 0x03, 0x7e, 0xff, 0xb7, 0xfc, 0x99, 0xfe, 0xab, 0x01, 0xf6, 0x05, 0xaf, 0x02, 0xf6, 0xf6, 0xaf, 0xf7, 0xe2, 0x00, 0x1e, 0x06, 0x1c, 0x04, 0x9b, 0xff, 0x09, 0xfd, 0x4d, 0xfc, 0xd4, 0xff, 0x4d, 0x03, 0x37, 0x04, 0x77, 0x06, 0x83, 0xfc, 0x6c, 0xf2, 0xd1, 0xfc, 0x0f, 0x07, 0xd1, 0x0b, 0xd3, 0x03, 0x42, 0xf5, 0x26, 0xf6, 0xfc, 0xfe, 0xf2, 0x06, 0xef, 0x09, 0x94, 0x00, 0x9b, 0xf5, 0x59, 0xf9, 0x60, 0x04, 0x2d, 0x0c, 0x4d, 0x02, 0x38, 0xf3, 0xe6, 0xf8, 0xb2, 0x04, 0xe6, 0x09, 0x27, 0x08, 0x16, 0xf9, 0xf4, 0xf3, 0xe1, 0xfb, 0x2f, 0x05, 0x07, 0x07, 0x56, 0x06, 0xf3, 0xfe, 0x86, 0xf7, 0x25, 0xfb, 0x04, 0x01, 0xfa, 0x04, 0x67, 0x03, 0xa3, 0xfd, 0x79, 0xfc, 0x43, 0x04, 0xd5, 0x03, 0xf9, 0xfb, 0xbd, 0xfb, 0x51, 0xff, 0x69, 0x01, 0x62, 0xff, 0xca, 0x00, 0x69, 0x01, 0x13, 0x04, 0x45, 0x08, 0x85, 0xf9, 0xa1, 0xf1, 0x59, 0xfd, 0x71, 0x08, 0x88, 0x06, 0x47, 0x00, 0xac, 0x06, 0x9b, 0xfd, 0x9b, 0xf0, 0x94, 0xfa, 0x42, 0x08, 0x90, 0x07, 0xfd, 0x03, 0x6b, 0x04, 0x69, 0xf8, 0xa6, 0xf5, 0xeb, 0xfc, 0xa3, 0x03, 0xc8, 0x05, 0x73, 0x02, 0xc9, 0xff, 0xb3, 0x02, 0x67, 0x00, 0x6a, 0xf7, 0xc7, 0xfc, 0x0a, 0x04, 0x27, 0x06, 0xfe, 0x0a, 0x1e, 0xfa, 0x34, 0xee, 0x3d, 0xfa, 0x14, 0x09, 0xe1, 0x08, 0x0f, 0x02, 0xb6, 0x04, 0x4f, 0xfc, 0x51, 0xf2, 0x93, 0xfc, 0x33, 0x07, 0xe6, 0x06, 0xe3, 0xff, 0x9d, 0x03, 0xed, 0x03, 0xf3, 0xf5, 0xa1, 0xf5, 0xa9, 0x00, 0x99, 0x0a, 0x0c, 0x05, 0x4b, 0xfc, 0x95, 0xf9, 0x4f, 0xfd, 0x71, 0x03, 0x3c, 0x05, 0x0b, 0x06, 0x41, 0xff, 0xb8, 0xf4, 0x91, 0xf9, 0x30, 0x04, 0x78, 0x0a, 0x97, 0x07, 0xc9, 0xf8, 0xf2, 0xf5, 0xed, 0xfd, 0x91, 0x03, 0x35, 0x03, 0x1c, 0x00, 0xf3, 0x03, 0x53, 0x03, 0x75, 0xfa, 0x59, 0xf9, 0xc1, 0xfd, 0xaa, 0x04, 0x37, 0x04, 0xb6, 0x04, 0xd1, 0x03, 0x95, 0xf8, 0xc7, 0xf4, 0x0e, 0xff, 0xc7, 0x06, 0x67, 0x08, 0x73, 0x06, 0x99, 0xf8, 0xdb, 0xf2, 0xd3, 0xfd, 0x43, 0x07, 0x17, 0x09, 0xac, 0x06, 0xa1, 0xf8, 0x43, 0xf4, 0x75, 0xfc, 0x74, 0x05, 0x67, 0x06, 0x4c, 0x01, 0x1b, 0x03, 0x2e, 0x01, 0x82, 0xf7, 0x90, 0xf9, 0x90, 0x05, 0x7a, 0x08, 0x0c, 0xfe, 0xa9, 0xf9, 0x2b, 0xfd, 0xb4, 0x01, 0x83, 0x03, 0x85, 0x02, 0xee, 0xfe, 0xcd, 0xfd, 0xbf, 0xfd, 0x1b, 0xfe, 0x88, 0x01, 0x61, 0x03, 0x49, 0x01, 0xa5, 0x02, 0x61, 0x02, 0xce, 0xf8, 0xe8, 0xf8, 0xf3, 0x02, 0x27, 0x05, 0x8e, 0x0a, 0x31, 0x01, 0x59, 0xf1, 0xb9, 0xf6, 0x28, 0x01, 0x5f, 0x08, 0x27, 0x04, 0xcc, 0x04, 0x25, 0x03, 0x1a, 0xf6, 0xf3, 0xf5, 0x0c, 0x01, 0x6d, 0x08, 0x55, 0x03, 0x17, 0x06, 0xb8, 0x01, 0xdf, 0xf2, 0x1a, 0xf6, 0x65, 0x03, 0x80, 0x09, 0x19, 0x03, 0x8f, 0x02, 0xd9, 0x02, 0xf9, 0xf5, 0xc9, 0xf5, 0xd1, 0x03, 0xc4, 0x07, 0x38, 0x06, 0x6b, 0x05, 0x57, 0xf5, 0x59, 0xf3, 0xf0, 0x01, 0x57, 0x0b, 0x9c, 0x09, 0xa0, 0xfa, 0x51, 0xf5, 0x03, 0xfc, 0x71, 0x03, 0x02, 0x06, 0x6e, 0x04, 0x2e, 0xfe, 0x54, 0xfb, 0x93, 0xfd, 0x2c, 0xff, 0xaa, 0x00, 0xc1, 0x02, 0xcf, 0x01, 0x09, 0x02, 0x28, 0x07, 0x4d, 0xfc, 0x07, 0xf4, 0x41, 0xfb, 0x04, 0x07, 0x53, 0x07, 0x62, 0xff, 0x48, 0xfb, 0xde, 0xfb, 0x82, 0x01, 0x64, 0x04, 0xbb, 0x06, 0x49, 0x00, 0x0c, 0xf7, 0x60, 0xf8, 0xa0, 0x01, 0x1b, 0x07, 0xe7, 0x08, 0x19, 0x00, 0x01, 0xf6, 0xb1, 0xfa, 0x45, 0x02, 0x62, 0x04, 0xbb, 0x01, 0x17, 0xff, 0x66, 0xfe, 0x36, 0xff, 0xaf, 0x00, 0x32, 0xff, 0x1f, 0x02, 0xd5, 0x02, 0xf9, 0xfd, 0xad, 0xfc, 0xc7, 0xfd, 0xe4, 0xff, 0xdf, 0x04, 0x62, 0x07, 0xdd, 0xfc, 0xae, 0xf8, 0xd9, 0xfb, 0xaf, 0x00, 0x0f, 0x04, 0x0d, 0x03, 0xec, 0x00, 0x8f, 0x03, 0xb6, 0x00, 0xdf, 0xf7, 0xb9, 0xfd, 0x67, 0x03, 0x35, 0x00, 0x04, 0xfe, 0x4a, 0xff, 0x89, 0x02, 0xa7, 0x04, 0x43, 0x00, 0x4a, 0xfb, 0x11, 0xfd, 0x58, 0x00, 0x90, 0x01, 0x5a, 0xff, 0xd1, 0xff, 0x8a, 0x01, 0x6a, 0x05, 0x0a, 0x04, 0x3d, 0xf9, 0xc4, 0xf7, 0x18, 0xff, 0x2f, 0x04, 0xff, 0x02, 0xdc, 0x00, 0xc7, 0x03, 0xed, 0xfd, 0xd2, 0xf8, 0x4e, 0xff, 0x02, 0x07, 0x20, 0x09, 0x0e, 0xfb, 0x24, 0xf5, 0x87, 0xfc, 0x1d, 0x03, 0x8d, 0x03, 0x67, 0x01, 0x77, 0x06, 0x4e, 0x01, 0x21, 0xf8, 0xe4, 0xf8, 0x9b, 0xff, 0x1e, 0x06, 0xbb, 0x03, 0x4f, 0x02, 0x57, 0x05, 0x2e, 0xfa, 0x38, 0xf3, 0xf9, 0xfe, 0xd7, 0x07, 0x07, 0x07, 0x93, 0x05, 0x99, 0xfb, 0xb1, 0xf4, 0x05, 0xfc, 0x87, 0x06, 0x50, 0x06, 0x4a, 0xff, 0xb9, 0xfb, 0x05, 0xfc, 0xb1, 0x02, 0x98, 0x08, 0x3d, 0x00, 0x6d, 0xf9, 0xd4, 0xfa, 0x23, 0xff, 0x9d, 0x03, 0xb3, 0x03, 0x88, 0x01, 0x6b, 0x04, 0xbf, 0x00, 0xd9, 0xf5, 0x3b, 0xfc, 0xf9, 0x03, 0xdb, 0x02, 0x4f, 0x00, 0xe2, 0xfe, 0xf7, 0xfd, 0xc7, 0xfe, 0xfd, 0x00, 0x79, 0x02, 0xdc, 0x00, 0x5b, 0x04, 0xa3, 0x05, 0xa7, 0xf7, 0xcb, 0xf5, 0x9b, 0xfd, 0xcf, 0x05, 0xf3, 0x04, 0xea, 0x05, 0x11, 0x03, 0xa7, 0xf7, 0x98, 0xf6, 0xc3, 0xfe, 0x94, 0x06, 0x66, 0x06, 0x2b, 0x07, 0xe1, 0xfa, 0x68, 0xf3, 0xe5, 0xfc, 0x86, 0x07, 0xb5, 0x0a, 0xe7, 0xff, 0x19, 0xf7, 0x61, 0xfa, 0x9a, 0x00, 0x9b, 0x04, 0xa5, 0x03, 0x8c, 0x00, 0x02, 0x00, 0x57, 0xfd, 0xdd, 0xfc, 0x8d, 0xff, 0x08, 0x00, 0xe5, 0x03, 0x6c, 0x04, 0x3d, 0xfd, 0xcd, 0xf8, 0x4e, 0xfe, 0x0c, 0x04, 0x87, 0x07, 0x27, 0x06, 0x6e, 0xf8, 0x76, 0xf5, 0x1b, 0xfd, 0xa4, 0x05, 0x53, 0x06, 0x04, 0x06, 0xbe, 0xfe, 0x54, 0xf7, 0xe1, 0xfb, 0x8a, 0x01, 0xb7, 0x03, 0x7b, 0xff, 0xd2, 0xfe, 0x61, 0x00, 0x53, 0x06, 0x23, 0x06, 0xa1, 0xf7, 0x08, 0xf4, 0x4d, 0x00, 0xc3, 0x07, 0xf8, 0x09, 0xeb, 0x02, 0x87, 0xf5, 0x81, 0xf6, 0x77, 0xff, 0xb0, 0x06, 0x96, 0x05, 0xcf, 0x05, 0xf7, 0xfd, 0x0e, 0xf7, 0x71, 0xfb, 0xfe, 0x00, 0xe7, 0x02, 0x8f, 0x02, 0x88, 0x01, 0xc4, 0x04, 0xb2, 0x01, 0xa9, 0xf7, 0x19, 0xf9, 0xf4, 0x00, 0xe3, 0x06, 0x48, 0x05, 0x18, 0xfe, 0xe1, 0xfa, 0xcb, 0xfd, 0xe5, 0x00, 0xda, 0xff, 0x1f, 0x00, 0xea, 0x01, 0x99, 0x01, 0x6e, 0x00, 0x96, 0x01, 0xeb, 0xfe, 0x01, 0xfc, 0x59, 0xff, 0x3b, 0x02, 0x91, 0x01, 0x52, 0x01, 0xd7, 0x00, 0x9f, 0xfc, 0xa9, 0xfc, 0x03, 0x01, 0x99, 0x02, 0x19, 0x03, 0x97, 0x00, 0x01, 0xfa, 0x87, 0xfd, 0x8f, 0x02, 0x17, 0x06, 0x69, 0x0a, 0x0a, 0xf9, 0x26, 0xef, 0x13, 0xfc, 0x64, 0x08, 0x1a, 0x08, 0xfd, 0x00, 0xd1, 0xfc, 0x13, 0xfd, 0x11, 0x00, 0x3c, 0x01, 0xe9, 0x00, 0xd2, 0xfe, 0x03, 0xfe, 0x56, 0x00, 0x69, 0x03, 0xc7, 0x01, 0xfd, 0xfd, 0x1f, 0xfe, 0x84, 0x05, 0xb7, 0x03, 0x30, 0xf8, 0x19, 0xf9, 0x1d, 0x00, 0x48, 0x05, 0xfb, 0x03, 0x92, 0xff, 0xa1, 0xfd, 0xd7, 0xfd, 0x48, 0xfe, 0xa0, 0x00, 0xcb, 0x02, 0x2d, 0x02, 0xbc, 0x00, 0x07, 0xfe, 0x54, 0xfe, 0xa1, 0x00, 0x4b, 0x05, 0xac, 0x06, 0x51, 0xf8, 0x41, 0xf4, 0x95, 0xfc, 0x17, 0x05, 0x72, 0x06, 0x17, 0x03, 0x17, 0x06, 0x15, 0xfd, 0x1a, 0xf5, 0x50, 0xfa, 0x56, 0x04, 0x9b, 0x06, 0x0b, 0x02, 0xc7, 0xfe, 0x6e, 0x06, 0x15, 0x01, 0xc6, 0xf3, 0xe9, 0xf7, 0x4d, 0x03, 0x69, 0x08, 0x5b, 0x07, 0xe7, 0xff, 0x88, 0xf7, 0x91, 0xfa, 0x86, 0x00, 0xfc, 0x04, 0xa6, 0x04, 0x1b, 0xff, 0x1f, 0xfc, 0x67, 0xfc, 0x4a, 0xff, 0x4b, 0x03, 0x11, 0x03, 0x4b, 0x05, 0xa1, 0x02, 0xa6, 0xf5, 0x9b, 0xf6, 0x93, 0x02, 0x26, 0x09, 0x07, 0x0a, 0x95, 0xfc, 0xbe, 0xf4, 0x0c, 0xf9, 0xf9, 0x02, 0x57, 0x07, 0xd5, 0x02, 0xbd, 0xfe, 0xca, 0xfe, 0x11, 0x00, 0x56, 0xff, 0xd2, 0xff, 0x5c, 0x00, 0x5e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0xc5, 0xff, 0x98, 0xff, 0xf0, 0xff, 0x2b, 0x00, 0x26, 0x00, 0x35, 0x00, 0x1f, 0x00, 0xb7, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xe7, 0xff, 0x20, 0x00, 0x79, 0x00, 0x03, 0x02, 0x63, 0xff, 0xbf, 0xfc, 0x3f, 0xff, 0xa6, 0x01, 0x34, 0x01, 0x47, 0x00, 0xad, 0x02, 0xe7, 0x07, 0x11, 0xfd, 0x22, 0xf1, 0xd4, 0xf9, 0xd3, 0x04, 0xcb, 0x07, 0xf9, 0x01, 0x53, 0xfd, 0xab, 0xfe, 0x63, 0x04, 0xfb, 0x04, 0xb4, 0xfb, 0x3a, 0xf9, 0x3a, 0xfe, 0x39, 0x03, 0x56, 0x04, 0x85, 0x00, 0xf5, 0xfd, 0x7f, 0xfd, 0xa3, 0xfd, 0xa6, 0x00, 0x4d, 0x03, 0xd2, 0x01, 0x51, 0x02, 0xa7, 0x03, 0xe0, 0xf9, 0x2b, 0xf7, 0x18, 0x01, 0x2b, 0x06, 0xfc, 0x04, 0x1b, 0x05, 0x37, 0xfc, 0xde, 0xf3, 0x88, 0xfb, 0x75, 0x08, 0x7f, 0x07, 0x0f, 0xfe, 0x2c, 0xfa, 0x07, 0xfc, 0x27, 0x02, 0x3f, 0x04, 0x27, 0x02, 0x7b, 0x07, 0xc9, 0xfe, 0x41, 0xf3, 0xba, 0xf8, 0x22, 0x04, 0x25, 0x08, 0x97, 0x02, 0x1b, 0x06, 0x90, 0xfe, 0xa8, 0xf3, 0xd0, 0xf8, 0xb2, 0x04, 0xc4, 0x07, 0xd9, 0x03, 0xf0, 0x04, 0x7d, 0xfb, 0x56, 0xf4, 0x3b, 0xfc, 0xcc, 0x05, 0xb4, 0x07, 0xca, 0x05, 0x85, 0xfc, 0xff, 0xf6, 0x71, 0xfc, 0xc7, 0x01, 0x5b, 0x04, 0x53, 0x06, 0xc0, 0xff, 0x49, 0xfa, 0x8f, 0xfc, 0xbf, 0xff, 0xdd, 0x00, 0xd0, 0x01, 0xd6, 0x01, 0x59, 0x03, 0xfc, 0x04, 0xae, 0xfa, 0x71, 0xf6, 0x8b, 0xfd, 0x04, 0x07, 0xeb, 0x07, 0xf1, 0xfd, 0x5d, 0xf8, 0x8f, 0xfc, 0xbf, 0x03, 0x51, 0x08, 0x7b, 0x02, 0x20, 0xf9, 0xee, 0xf9, 0x55, 0xfe, 0x13, 0x03, 0x52, 0x04, 0x3e, 0x07, 0x89, 0xff, 0x94, 0xf6, 0x10, 0xfb, 0xc7, 0x03, 0x54, 0x05, 0x53, 0x00, 0xb9, 0xfd, 0xf5, 0xfd, 0x0d, 0x00, 0xf0, 0x01, 0x19, 0x01, 0x21, 0xff, 0x19, 0xfe, 0xad, 0xfd, 0x0a, 0x01, 0xb1, 0x02, 0xe7, 0x05, 0xe1, 0x02, 0x7d, 0xf8, 0x5c, 0xf9, 0xe6, 0xff, 0x91, 0x03, 0x82, 0x01, 0xac, 0xfe, 0x0d, 0x01, 0xa0, 0x07, 0xce, 0xff, 0x5a, 0xf7, 0x19, 0xfa, 0x61, 0x02, 0xb7, 0x08, 0x29, 0x03, 0xe5, 0xfa, 0x31, 0xfa, 0x90, 0xff, 0x46, 0x04, 0xf8, 0x05, 0x9b, 0xff, 0x74, 0xfa, 0xbd, 0xfb, 0x53, 0xff, 0x7f, 0x02, 0x9b, 0x03, 0x8c, 0x00, 0x96, 0x05, 0x51, 0x03, 0x96, 0xf5, 0x0b, 0xf6, 0x1c, 0x01, 0xeb, 0x07, 0x17, 0x05, 0x9e, 0x06, 0x63, 0xfc, 0x7c, 0xf3, 0x2a, 0xfa, 0x40, 0x06, 0xf8, 0x06, 0x87, 0x07, 0x9d, 0x00, 0x52, 0xf4, 0x63, 0xf7, 0x31, 0x02, 0xd6, 0x07, 0x1f, 0x04, 0x52, 0x05, 0xf3, 0xfd, 0x59, 0xf6, 0x25, 0xfb, 0x5e, 0x01, 0xd1, 0x03, 0x9d, 0x02, 0xc4, 0x01, 0x2f, 0x04, 0x83, 0xff, 0x24, 0xf8, 0xc5, 0xfc, 0x31, 0x02, 0x61, 0x03, 0x5f, 0xff, 0x53, 0xfd, 0xc9, 0xff, 0x46, 0x05, 0x16, 0x08, 0x90, 0xfb, 0x60, 0xf5, 0xe8, 0xfa, 0x64, 0x04, 0xb0, 0x06, 0x94, 0x01, 0x9c, 0x01, 0x29, 0x03, 0x92, 0xf8, 0x86, 0xf7, 0x73, 0x02, 0x4e, 0x06, 0x73, 0x04, 0xb2, 0x04, 0x75, 0xfc, 0xa3, 0xf3, 0xcc, 0xfb, 0x9f, 0x05, 0xd2, 0x06, 0x04, 0x01, 0x89, 0x02, 0x0c, 0x04, 0x75, 0xf8, 0xce, 0xf6, 0x04, 0xfe, 0xbb, 0x04, 0x44, 0x06, 0xf7, 0x06, 0xdd, 0xfd, 0xe1, 0xf5, 0x15, 0xfb, 0x24, 0x04, 0xf5, 0x09, 0x57, 0x02, 0x30, 0xf9, 0x21, 0xfa, 0x50, 0xff, 0xed, 0x02, 0x8b, 0x04, 0x8f, 0x03, 0x37, 0xfd, 0x49, 0xfb, 0x21, 0xfe, 0xb8, 0x01, 0x45, 0x03, 0xb9, 0x00, 0x7c, 0xfe, 0x6b, 0xfc, 0x9f, 0xfe, 0xb3, 0x02, 0xef, 0x02, 0x1c, 0x01, 0xa3, 0x05, 0xec, 0x00, 0x0c, 0xf4, 0xc9, 0xf7, 0xff, 0x03, 0x1e, 0x08, 0xe3, 0x02, 0x39, 0x02, 0x36, 0x01, 0x18, 0xf9, 0x65, 0xfb, 0x0f, 0x01, 0xfd, 0x01, 0x7f, 0x01, 0xf6, 0xff, 0x2c, 0xff, 0x9b, 0xfd, 0x1d, 0x00, 0x07, 0x02, 0xf9, 0x03, 0x54, 0x07, 0x51, 0xfb, 0x49, 0xf4, 0xa5, 0xfb, 0x9c, 0x05, 0x5f, 0x06, 0x60, 0x01, 0x94, 0xfe, 0x23, 0x04, 0xde, 0x01, 0x7c, 0xf7, 0xb0, 0xf9, 0x48, 0x01, 0x42, 0x05, 0x39, 0x02, 0xb1, 0xfd, 0xd1, 0x00, 0xd8, 0x04, 0x37, 0xfe, 0x15, 0xfb, 0x9f, 0xfd, 0xf2, 0x00, 0x39, 0x02, 0x37, 0x04, 0xf5, 0x00, 0x3b, 0xfc, 0x7e, 0xfa, 0x45, 0xff, 0xfb, 0x03, 0x20, 0x05, 0x67, 0x07, 0x32, 0xfb, 0xdc, 0xf3, 0x56, 0xfb, 0x2f, 0x06, 0x67, 0x07, 0x9c, 0x07, 0xf1, 0xfc, 0x22, 0xf3, 0x15, 0xfb, 0x32, 0x06, 0x5c, 0x06, 0xbf, 0x03, 0xf9, 0x03, 0x0a, 0xf9, 0xf1, 0xf4, 0x12, 0xff, 0xf3, 0x06, 0x0c, 0x05, 0x53, 0xff, 0x9b, 0x00, 0xef, 0x02, 0x11, 0xfb, 0x9a, 0xf9, 0x4f, 0x04, 0x98, 0x05, 0x61, 0xfd, 0xf6, 0xfb, 0x5e, 0xfe, 0x6a, 0x00, 0x34, 0x01, 0x83, 0x03, 0x13, 0x07, 0xd7, 0xfd, 0xd0, 0xf7, 0xfe, 0xfb, 0x1f, 0x00, 0x73, 0x03, 0x39, 0x03, 0x8e, 0x01, 0xeb, 0x06, 0x4f, 0xfd, 0x8c, 0xf2, 0x7f, 0xfc, 0x76, 0x07, 0x03, 0x06, 0x7b, 0x07, 0xee, 0xfe, 0x63, 0xf1, 0xe8, 0xf8, 0x43, 0x06, 0x34, 0x08, 0x8e, 0x01, 0x03, 0x02, 0x6e, 0x00, 0x60, 0xf6, 0x51, 0xfb, 0xd7, 0x03, 0x6f, 0x09, 0xff, 0x07, 0x92, 0xf6, 0x7a, 0xf2, 0x61, 0xfe, 0xc7, 0x08, 0xc3, 0x05, 0x7d, 0x02, 0xf9, 0xfe, 0xea, 0xf8, 0x25, 0xfd, 0x3b, 0x03, 0xb5, 0x03, 0x54, 0x01, 0x67, 0x05, 0xf2, 0x00, 0xd0, 0xf2, 0xa1, 0xf6, 0xb2, 0x04, 0x81, 0x0a, 0x6f, 0x09, 0x79, 0xfc, 0x84, 0xf4, 0xe4, 0xf9, 0xf5, 0x02, 0x33, 0x07, 0xe8, 0x01, 0x7b, 0x02, 0x63, 0x05, 0x4a, 0xf8, 0x71, 0xf4, 0x2a, 0xff, 0xcf, 0x08, 0x42, 0x0a, 0xbb, 0xfe, 0x51, 0xf5, 0xd5, 0xf9, 0x9b, 0x03, 0xdb, 0x06, 0xd8, 0x07, 0xd9, 0xfd, 0x36, 0xf6, 0xd4, 0xf9, 0x0b, 0x02, 0xfc, 0x05, 0x23, 0x04, 0x77, 0x06, 0x53, 0xfc, 0x8f, 0xf4, 0xe2, 0xfa, 0x03, 0x05, 0xea, 0x06, 0x9d, 0x01, 0x8c, 0x05, 0x26, 0xff, 0x59, 0xf4, 0x94, 0xf8, 0x4b, 0x04, 0x7f, 0x07, 0xdd, 0x03, 0x0e, 0x06, 0xe1, 0xfa, 0xbf, 0xf3, 0xb1, 0xfb, 0x0c, 0x07, 0xe3, 0x05, 0x40, 0x06, 0x69, 0x02, 0x5b, 0xf4, 0x23, 0xf6, 0xb3, 0x02, 0x8e, 0x08, 0xe1, 0x02, 0xe7, 0xff, 0xc0, 0x01, 0x13, 0xfc, 0xe6, 0xf9, 0x58, 0x01, 0xa1, 0x03, 0x3b, 0x02, 0x81, 0xfe, 0x9a, 0x04, 0x51, 0x08, 0x60, 0xf3, 0xb7, 0xf0, 0x71, 0x03, 0xdd, 0x0a, 0x94, 0x06, 0x7f, 0x04, 0xa4, 0xf9, 0x5a, 0xf4, 0x4f, 0xfd, 0xe7, 0x05, 0x52, 0x07, 0xc4, 0x04, 0xbd, 0xfb, 0x7c, 0xf6, 0x7f, 0xfd, 0x3b, 0x06, 0xe0, 0x09, 0x3f, 0xff, 0xac, 0xf7, 0x9d, 0xfa, 0xa4, 0x00, 0xfb, 0x03, 0x22, 0x05, 0x9b, 0x03, 0xd5, 0xfb, 0xd4, 0xf9, 0x5d, 0xfd, 0x15, 0x02, 0xb2, 0x04, 0xcf, 0x05, 0xe1, 0xfe, 0x11, 0xf9, 0x40, 0xfb, 0x58, 0x01, 0x6b, 0x07, 0x05, 0x03, 0x27, 0xfc, 0x94, 0xfb, 0xc6, 0xfe, 0xc4, 0x01, 0xe9, 0x03, 0x4f, 0x02, 0x79, 0xfd, 0xc7, 0xfc, 0x09, 0xff, 0x4f, 0x01, 0xd8, 0x01, 0x0c, 0x01, 0xdc, 0xfe, 0x75, 0xfd, 0x85, 0xfe, 0x9a, 0x04, 0x1f, 0x05, 0xdf, 0xfc, 0xad, 0xfa, 0x4c, 0xfe, 0x77, 0x02, 0x87, 0x02, 0x00, 0x00, 0xeb, 0xfe, 0x1d, 0x00, 0x3e, 0x00, 0x41, 0xff, 0xd0, 0xfe, 0xbe, 0xfe, 0x16, 0x01, 0x52, 0x01, 0x26, 0x04, 0x1f, 0x06, 0x65, 0xfa, 0x4e, 0xf6, 0x0d, 0xfd, 0x91, 0x03, 0xd0, 0x07, 0xc4, 0x04, 0x59, 0xfb, 0xf5, 0xf9, 0x2e, 0xfe, 0x3d, 0x02, 0x45, 0x02, 0xd7, 0xff, 0x90, 0xff, 0x83, 0x00, 0x60, 0x01, 0x6f, 0xff, 0x39, 0xff, 0xef, 0xff, 0x2b, 0x06, 0x73, 0x05, 0xee, 0xf5, 0x99, 0xf5, 0x45, 0xff, 0x58, 0x06, 0x9c, 0x04, 0x60, 0x05, 0x64, 0x01, 0x70, 0xf8, 0xf1, 0xf9, 0x26, 0xff, 0xdd, 0x03, 0x43, 0x04, 0x4b, 0x05, 0xf6, 0xfe, 0x2c, 0xf9, 0x73, 0xfc, 0x33, 0x01, 0x1f, 0x03, 0xaf, 0x01, 0xf0, 0xff, 0xe2, 0xfe, 0x3c, 0xff, 0xf9, 0xff, 0x7a, 0x00, 0x04, 0x00, 0x0e, 0xff, 0xa1, 0xfd, 0xef, 0x00, 0xf0, 0x01, 0x7a, 0x06, 0x37, 0x04, 0x19, 0xf7, 0x78, 0xf6, 0x35, 0xff, 0xdb, 0x06, 0x0f, 0x05, 0x60, 0x05, 0x11, 0xff, 0x7a, 0xf6, 0x2a, 0xfa, 0xc1, 0x01, 0xeb, 0x06, 0x8b, 0x06, 0x03, 0xfe, 0xf0, 0xf8, 0xb4, 0xfb, 0x85, 0x00, 0x82, 0x04, 0x3b, 0x02, 0x09, 0x02, 0xfb, 0x06, 0x54, 0xfb, 0x89, 0xf3, 0xfd, 0xfb, 0xaa, 0x06, 0xaa, 0x06, 0x70, 0x01, 0xbe, 0x04, 0x1b, 0xfd, 0xb9, 0xf3, 0x81, 0xfc, 0x02, 0x07, 0x2f, 0x06, 0x90, 0x05, 0xc9, 0xff, 0x9b, 0xf5, 0x6c, 0xf8, 0x53, 0x02, 0x47, 0x06, 0xa6, 0x05, 0x60, 0x05, 0xf5, 0xf9, 0xda, 0xf6, 0x91, 0xfc, 0xcf, 0x04, 0x9f, 0x08, 0xd0, 0x00, 0x3d, 0xfa, 0x0d, 0xfa, 0x7d, 0x00, 0xf0, 0x04, 0x75, 0x02, 0xdb, 0xff, 0xd3, 0xfe, 0x40, 0x04, 0x0f, 0x05, 0x56, 0xf6, 0xc1, 0xf4, 0x5d, 0x02, 0x68, 0x08, 0x4f, 0x06, 0xa3, 0x03, 0x71, 0xf9, 0xce, 0xf6, 0x18, 0xfe, 0x0b, 0x06, 0x68, 0x06, 0x1b, 0xff, 0xc9, 0xfa, 0x62, 0xfb, 0x77, 0x02, 0xf1, 0x03, 0x70, 0x07, 0xdf, 0x01, 0xcf, 0xf5, 0x63, 0xf7, 0x43, 0x01, 0x1a, 0x07, 0xc4, 0x04, 0x0a, 0x05, 0xe1, 0xfc, 0x11, 0xf6, 0xb1, 0xfb, 0x43, 0x03, 0xcc, 0x07, 0x20, 0x05, 0x0e, 0xfb, 0x21, 0xf7, 0x9c, 0xfe, 0xb2, 0x05, 0xe4, 0x04, 0xe2, 0x05, 0x13, 0xfe, 0xf1, 0xf5, 0xb5, 0xfb, 0x5b, 0x03, 0x73, 0x04, 0x82, 0x01, 0x49, 0xfd, 0x83, 0xfc, 0x0c, 0x01, 0x43, 0x03, 0x23, 0x02, 0x1e, 0x05, 0x44, 0xff, 0x91, 0xf4, 0xec, 0xfa, 0x9f, 0x05, 0xf6, 0x06, 0x38, 0x06, 0x57, 0xfe, 0xc9, 0xf5, 0x8d, 0xfa, 0xbf, 0x02, 0xde, 0x06, 0xa9, 0x03, 0x83, 0xfd, 0xf4, 0xfb, 0x97, 0xfe, 0x99, 0x01, 0xb7, 0x01, 0xdb, 0xff, 0x09, 0xff, 0x69, 0x01, 0xfa, 0x00, 0x84, 0xfe, 0x25, 0xfe, 0xfb, 0xfd, 0x83, 0x00, 0x9d, 0x02, 0x45, 0x02, 0x49, 0x00, 0x87, 0xfe, 0x54, 0xff, 0x8b, 0x02, 0x33, 0x05, 0xd9, 0xfc, 0xeb, 0xf6, 0x9f, 0xfc, 0x4b, 0x02, 0xf9, 0x03, 0x69, 0x02, 0x39, 0x02, 0x90, 0x04, 0x71, 0xf9, 0x51, 0xf7, 0x21, 0x01, 0x34, 0x0a, 0x17, 0x08, 0x7a, 0xf8, 0xa9, 0xf4, 0xc1, 0xfc, 0xba, 0x06, 0xe2, 0x05, 0x88, 0x00, 0x5c, 0x00, 0x4b, 0xfe, 0x0b, 0xfc, 0xcb, 0xff, 0x7d, 0x02, 0x3b, 0x02, 0x07, 0x07, 0xff, 0xfe, 0x46, 0xf1, 0x94, 0xfa, 0xb3, 0x07, 0xc7, 0x07, 0xa2, 0x06, 0x2b, 0xfe, 0x86, 0xf4, 0x81, 0xf9, 0x91, 0x03, 0x8e, 0x05, 0x6e, 0x06, 0x27, 0x02, 0x22, 0xf9, 0xf2, 0xf8, 0x8a, 0xfe, 0xa3, 0x04, 0x87, 0x04, 0x2c, 0x00, 0x68, 0x05, 0x97, 0x01, 0x2b, 0xf3, 0xae, 0xf8, 0x87, 0x05, 0x8e, 0x07, 0x71, 0x02, 0x2b, 0x04, 0x6d, 0xfd, 0x8b, 0xf3, 0xb7, 0xfc, 0x08, 0x06, 0x2f, 0x09, 0x1a, 0x06, 0x36, 0xf8, 0x3c, 0xf5, 0x05, 0xfd, 0x58, 0x06, 0x2e, 0x05, 0x53, 0x06, 0x87, 0x01, 0x7a, 0xf5, 0x49, 0xf7, 0x33, 0x02, 0xc4, 0x07, 0xe7, 0x02, 0xc1, 0x00, 0x29, 0x03, 0xe9, 0xf9, 0x7f, 0xf7, 0xe7, 0x01, 0x4a, 0x06, 0xb2, 0x0a, 0x99, 0xfe, 0xfb, 0xf0, 0x81, 0xf8, 0xfb, 0x05, 0x98, 0x08, 0x63, 0x01, 0x51, 0x01, 0x4c, 0x01, 0x75, 0xf8, 0x11, 0xfa, 0x9d, 0x03, 0xa6, 0x04, 0xf3, 0x02, 0x46, 0x08, 0xfd, 0xfa, 0xc8, 0xf0, 0x34, 0xfb, 0xc2, 0x07, 0x02, 0x08, 0x7a, 0x00, 0xa0, 0x00, 0xca, 0x00, 0x7d, 0xf9, 0xc1, 0xfb, 0x25, 0x03, 0x17, 0x04, 0x2d, 0x02, 0xb5, 0x02, 0xaf, 0xfc, 0x60, 0xf8, 0xd9, 0xfe, 0xa0, 0x04, 0xf7, 0x04, 0x73, 0x05, 0xf3, 0xfd, 0x11, 0xf5, 0x7e, 0xfa, 0x7f, 0x03, 0x96, 0x08, 0x35, 0x03, 0x1d, 0xfc, 0xd6, 0xfa, 0x77, 0xfd, 0x79, 0x02, 0xd5, 0x03, 0x1b, 0x02, 0x60, 0x05, 0x73, 0xfe, 0xfc, 0xf4, 0xed, 0xfa, 0xc3, 0x07, 0xf0, 0x08, 0x4f, 0xfd, 0xc5, 0xf8, 0xba, 0xfb, 0x3b, 0x03, 0x1f, 0x04, 0x32, 0x04, 0x0c, 0x05, 0x65, 0xf9, 0x8e, 0xf5, 0x96, 0xff, 0xc3, 0x05, 0x23, 0x06, 0x9a, 0x05, 0x01, 0xfb, 0x5f, 0xf7, 0x99, 0xfd, 0x3f, 0x02, 0x75, 0x02, 0x97, 0x01, 0xe6, 0x00, 0x13, 0x04, 0x23, 0x03, 0xeb, 0xf7, 0x41, 0xf7, 0xe2, 0x01, 0x5b, 0x07, 0x37, 0x09, 0xa3, 0xfe, 0x97, 0xf5, 0x8d, 0xf9, 0x8d, 0x01, 0x04, 0x06, 0x8f, 0x03, 0x0b, 0x06, 0x4c, 0xfe, 0x39, 0xf6, 0x20, 0xfa, 0xa1, 0x02, 0x67, 0x07, 0xc3, 0x02, 0xef, 0xfc, 0x63, 0xfd, 0x4d, 0x02, 0xf6, 0x05, 0x88, 0xfe, 0x19, 0xf8, 0x87, 0xfc, 0x83, 0x02, 0x34, 0x04, 0xae, 0x01, 0x17, 0xff, 0x6c, 0xfe, 0x63, 0xff, 0x25, 0x00, 0xb1, 0xff, 0x81, 0xfe, 0x8f, 0x00, 0x2f, 0x02, 0xa6, 0x05, 0xa9, 0x01, 0x9e, 0xf8, 0x71, 0xf8, 0x56, 0x00, 0x68, 0x05, 0xdf, 0x07, 0x0b, 0x03, 0x45, 0xf8, 0x65, 0xf9, 0xdd, 0xff, 0xdb, 0x02, 0x30, 0x01, 0x19, 0x00, 0x1b, 0x01, 0x6e, 0x00, 0x1c, 0x06, 0x41, 0x03, 0xc8, 0xf4, 0xb1, 0xf6, 0xdd, 0x02, 0x3d, 0x08, 0xf3, 0x02, 0xd5, 0x02, 0x88, 0x01, 0xe0, 0xf6, 0xf4, 0xf7, 0x53, 0x03, 0xdc, 0x06, 0xac, 0x06, 0x4f, 0x01, 0xd9, 0xf7, 0x35, 0xf9, 0xed, 0xff, 0xab, 0x02, 0xdb, 0x02, 0x0a, 0x01, 0x99, 0x01, 0x07, 0x07, 0x3f, 0xfd, 0xf9, 0xf4, 0xf8, 0xfa, 0x76, 0x04, 0xba, 0x06, 0x0a, 0x01, 0xc1, 0x00, 0x5a, 0x06, 0x02, 0xfb, 0xec, 0xf3, 0x23, 0xfd, 0x1a, 0x07, 0x37, 0x06, 0x7e, 0x05, 0x3f, 0xff, 0x44, 0xf6, 0xe5, 0xf8, 0x85, 0x02, 0x4e, 0x06, 0x84, 0x07, 0x49, 0x02, 0x2e, 0xf7, 0x54, 0xf8, 0x36, 0xff, 0x63, 0x06, 0x66, 0x08, 0x5a, 0xff, 0x89, 0xf8, 0x75, 0xfa, 0x8a, 0x01, 0xbf, 0x04, 0xce, 0x04, 0x58, 0x04, 0x02, 0xfb, 0x73, 0xf7, 0xb1, 0xfd, 0xa5, 0x03, 0x30, 0x04, 0x35, 0x00, 0xc7, 0x02, 0xa9, 0x03, 0xa4, 0xfa, 0x54, 0xf9, 0x06, 0xfe, 0x4b, 0x02, 0x67, 0x06, 0x47, 0x05, 0x3b, 0xfc, 0x3e, 0xf9, 0x45, 0xfc, 0xd1, 0x02, 0x8b, 0x04, 0xb7, 0x02, 0xdb, 0x05, 0xcb, 0xfc, 0xba, 0xf4, 0xac, 0xfb, 0xa2, 0x05, 0x4e, 0x06, 0x96, 0x05, 0x28, 0x00, 0x11, 0xf7, 0xbd, 0xf9, 0x28, 0x01, 0xf3, 0x05, 0x82, 0x05, 0x69, 0xff, 0x98, 0xfa, 0x89, 0xfb, 0xf3, 0xff, 0x77, 0x04, 0x8f, 0x07, 0x26, 0x00, 0x17, 0xf7, 0x44, 0xfa, 0x51, 0x02, 0xe9, 0x08, 0xe7, 0x04, 0x66, 0xfa, 0x5c, 0xf9, 0x51, 0xfd, 0xe2, 0x01, 0x0b, 0x04, 0x09, 0x02, 0xe9, 0xff, 0x42, 0xff, 0x5c, 0x00, 0x18, 0xff, 0x2d, 0xff, 0xce, 0xff, 0x2c, 0x05, 0xd0, 0x07, 0x5f, 0xf7, 0x6b, 0xf3, 0xff, 0xfd, 0x1c, 0x08, 0x07, 0x08, 0x83, 0xff, 0x28, 0xfb, 0x45, 0xfb, 0x4c, 0x00, 0xa1, 0x03, 0xc9, 0x02, 0xfe, 0xff, 0x41, 0x00, 0x67, 0x06, 0x5f, 0xfd, 0xb7, 0xf5, 0xf9, 0xfa, 0x41, 0x03, 0xcb, 0x06, 0x70, 0x07, 0x35, 0xff, 0xe1, 0xf6, 0xe9, 0xf9, 0x27, 0x02, 0x14, 0x06, 0xe1, 0x02, 0xbb, 0x04, 0x76, 0xfe, 0xf0, 0xf3, 0x9d, 0xfc, 0xb4, 0x05, 0x77, 0x09, 0x48, 0x05, 0x6e, 0xf7, 0xaa, 0xf6, 0xb6, 0xff, 0x90, 0x05, 0x5d, 0x03, 0xa4, 0xff, 0xa4, 0xff, 0x69, 0xff, 0x60, 0xfe, 0xbe, 0xfe, 0xde, 0xfe, 0x4b, 0x03, 0x9b, 0x05, 0x16, 0xfe, 0x16, 0xfa, 0x5f, 0xfc, 0x35, 0x02, 0xdf, 0x03, 0xbb, 0x01, 0x3e, 0xff, 0xc7, 0x03, 0x13, 0x03, 0x95, 0xf8, 0x4d, 0xf9, 0x05, 0x00, 0x7d, 0x03, 0xd2, 0x01, 0x6b, 0x00, 0x8b, 0x01, 0xeb, 0x04, 0xc3, 0xfe, 0xa8, 0xf6, 0x7d, 0xfc, 0xd0, 0x04, 0xd9, 0x09, 0x53, 0x02, 0x79, 0xf7, 0xae, 0xf8, 0xfa, 0xfe, 0xa8, 0x05, 0x5b, 0x03, 0x83, 0x03, 0x9f, 0x04, 0xc0, 0xf9, 0xcf, 0xf6, 0x8b, 0xfd, 0x4c, 0x04, 0x60, 0x05, 0xac, 0x00, 0x37, 0x04, 0x2b, 0x02, 0xc8, 0xf7, 0xe0, 0xf7, 0x31, 0x00, 0x9c, 0x05, 0xc2, 0x07, 0x16, 0x04, 0xaa, 0xf8, 0x31, 0xf7, 0x21, 0xfe, 0xf0, 0x05, 0x9e, 0x04, 0x75, 0x02, 0x2c, 0x00, 0x25, 0xfa, 0xea, 0xfb, 0x47, 0x02, 0xb9, 0x03, 0xab, 0x02, 0x05, 0x03, 0x31, 0xfd, 0xa7, 0xf7, 0xa1, 0xfd, 0xbb, 0x04, 0x8c, 0x09, 0x3e, 0x00, 0x11, 0xf7, 0x89, 0xf9, 0xe9, 0x00, 0x24, 0x05, 0xdf, 0x04, 0xe0, 0x05, 0x11, 0xfc, 0x5b, 0xf6, 0xb1, 0xfb, 0x62, 0x04, 0xd2, 0x05, 0x31, 0x01, 0x58, 0x00, 0x5d, 0x01, 0xb3, 0xfc, 0xca, 0xfa, 0x74, 0x00, 0xeb, 0x03, 0xff, 0x05, 0xb1, 0x02, 0xf7, 0xf7, 0x15, 0xf8, 0x8d, 0xff, 0x23, 0x04, 0x37, 0x04, 0xe4, 0x05, 0x62, 0xff, 0xf9, 0xf8, 0xf8, 0xfa, 0xa2, 0xff, 0xca, 0x04, 0x05, 0x03, 0x3e, 0x06, 0x43, 0x00, 0xa1, 0xf5, 0x8a, 0xf8, 0xfb, 0x03, 0x66, 0x06, 0x8f, 0x06, 0xe7, 0x02, 0x00, 0xf5, 0xa7, 0xf6, 0xcb, 0x03, 0x24, 0x07, 0x9a, 0x04, 0x7b, 0x05, 0xf2, 0xf8, 0x9f, 0xf3, 0x21, 0xff, 0x8b, 0x07, 0x6d, 0x0a, 0x4e, 0x01, 0x3b, 0xf5, 0x9c, 0xf7, 0xa3, 0x02, 0x33, 0x07, 0x6b, 0x02, 0x1d, 0x00, 0xd9, 0x01, 0x17, 0xfc, 0x58, 0xfa, 0x00, 0x01, 0xcb, 0x03, 0xcf, 0x01, 0xa4, 0xff, 0x11, 0x03, 0x97, 0x01, 0x5a, 0xf7, 0x7d, 0xfa, 0xef, 0x03, 0x88, 0x06, 0xd4, 0x09, 0x8d, 0xfb, 0xd2, 0xf1, 0xdd, 0xf9, 0x83, 0x06, 0x34, 0x07, 0x67, 0x05, 0xff, 0x02, 0xdc, 0xf7, 0x3a, 0xf7, 0xd3, 0xfe, 0x17, 0x06, 0x88, 0x04, 0x57, 0x06, 0x45, 0xff, 0x81, 0xf5, 0x59, 0xf9, 0xcd, 0x02, 0x3e, 0x07, 0xe4, 0x01, 0xc7, 0x03, 0x58, 0x01, 0xdf, 0xf4, 0xbd, 0xf9, 0x3b, 0x05, 0x38, 0x06, 0x99, 0x03, 0xf7, 0x03, 0xf9, 0xf8, 0x4f, 0xf5, 0x81, 0xff, 0x18, 0x0a, 0xc3, 0x07, 0xd6, 0xfa, 0x79, 0xf7, 0xb1, 0xfc, 0x9e, 0x04, 0x87, 0x04, 0x8e, 0x04, 0xa3, 0x02, 0xad, 0xf8, 0x3e, 0xf8, 0x83, 0xff, 0xc3, 0x05, 0x2b, 0x04, 0x33, 0x01, 0x0f, 0x01, 0xae, 0xfb, 0x9d, 0xfb, 0xe8, 0xfe, 0xab, 0x01, 0x3f, 0x02, 0xd9, 0x03, 0x8b, 0x03, 0x2f, 0xfc, 0x84, 0xf8, 0xc1, 0xfd, 0xe3, 0x03, 0x0c, 0x08, 0xef, 0x03, 0x2e, 0xf9, 0xe1, 0xf8, 0x1c, 0xfe, 0xa3, 0x03, 0x52, 0x04, 0x33, 0x05, 0xf3, 0xff, 0x30, 0xf9, 0x72, 0xfb, 0x83, 0x00, 0xf7, 0x03, 0x2b, 0x04, 0x10, 0x00, 0x91, 0xfc, 0xa9, 0xfd, 0x10, 0x00, 0x29, 0x00, 0xe7, 0xff, 0xec, 0x00, 0x9b, 0x02, 0x21, 0x03, 0x5b, 0xfd, 0x3a, 0xfa, 0x23, 0x05, 0xe8, 0x04, 0xdc, 0xfa, 0x71, 0xf9, 0x81, 0xfe, 0xcb, 0x03, 0x13, 0x06, 0x32, 0x06, 0x51, 0xfb, 0xf1, 0xf7, 0x41, 0xfc, 0x41, 0x02, 0xca, 0x04, 0x21, 0x02, 0x4f, 0x00, 0x63, 0xff, 0xe1, 0xfd, 0x20, 0xff, 0x19, 0x01, 0xdb, 0x03, 0xbb, 0x06, 0x9d, 0xfa, 0xf8, 0xf3, 0xcd, 0xfc, 0xf3, 0x05, 0x43, 0x05, 0x43, 0x04, 0xf3, 0x02, 0xad, 0xf9, 0x65, 0xf9, 0x75, 0xfe, 0x1d, 0x03, 0xe9, 0x03, 0xbe, 0x04, 0xf2, 0xff, 0x7d, 0xfa, 0x89, 0xfc, 0x5f, 0x00, 0x60, 0x01, 0x5b, 0x00, 0xdc, 0x00, 0x63, 0x02, 0x30, 0x05, 0x1c, 0xfe, 0xed, 0xf8, 0xd2, 0xfb, 0x0f, 0x01, 0xc3, 0x03, 0x00, 0x05, 0xb5, 0x03, 0x45, 0xfb, 0x28, 0xfa, 0xfd, 0xfe, 0xa7, 0x02, 0x7d, 0x02, 0xb0, 0xff, 0x41, 0xfd, 0x4b, 0xff, 0x2d, 0x02, 0x25, 0x03, 0x47, 0x05, 0xb5, 0xfd, 0xd7, 0xf6, 0x0b, 0xfc, 0xc5, 0x03, 0x9f, 0x04, 0xce, 0x00, 0x9f, 0xff, 0x54, 0xff, 0xd0, 0xfe, 0x9a, 0x00, 0x0f, 0x08, 0x96, 0xff, 0x81, 0xf5, 0xde, 0xfa, 0x6f, 0x01, 0xf0, 0x04, 0x35, 0x02, 0xb7, 0x03, 0xcb, 0x03, 0x34, 0xfa, 0xd5, 0xf8, 0xbf, 0xfd, 0xe3, 0x03, 0x3a, 0x04, 0x24, 0x05, 0x18, 0x01, 0x2c, 0xf9, 0xf5, 0xfa, 0x55, 0x00, 0xaf, 0x02, 0x10, 0x01, 0x01, 0x00, 0xb7, 0x01, 0xfb, 0x03, 0x9f, 0xfd, 0x4a, 0xf8, 0x51, 0x01, 0x8f, 0x08, 0xef, 0xff, 0x04, 0xfa, 0xfd, 0xfa, 0x18, 0x01, 0x82, 0x04, 0x97, 0x07, 0xd0, 0x00, 0xca, 0xf7, 0x24, 0xf9, 0x34, 0x00, 0xa8, 0x05, 0x69, 0x03, 0x1a, 0x00, 0x63, 0x02, 0x65, 0xff, 0xa8, 0xf8, 0x87, 0xfd, 0xcd, 0x03, 0xc9, 0x03, 0x65, 0x03, 0x6b, 0x02, 0x41, 0xf9, 0xb1, 0xf7, 0x5f, 0x00, 0xde, 0x05, 0x1f, 0x03, 0xfe, 0x00, 0x8b, 0x06, 0x71, 0xfc, 0xe7, 0xf2, 0x69, 0xfc, 0x92, 0x06, 0x31, 0x0a, 0xa7, 0x03, 0x72, 0xf8, 0x1a, 0xf9, 0x3d, 0xfe, 0xc5, 0x02, 0x5f, 0x03, 0xf7, 0x01, 0x39, 0xff, 0xb3, 0x03, 0x8f, 0x04, 0x04, 0xf8, 0x69, 0xf6, 0xa2, 0x01, 0xe4, 0x09, 0xed, 0x02, 0xea, 0xfa, 0xb5, 0xfa, 0x8f, 0xff, 0xcc, 0x04, 0xbf, 0x06, 0x97, 0xfe, 0x18, 0xf9, 0x56, 0xfb, 0x3c, 0x01, 0x8b, 0x05, 0x66, 0x06, 0xf1, 0xfe, 0xc9, 0xf7, 0x99, 0xfb, 0xf9, 0x02, 0x7b, 0x05, 0x3a, 0x05, 0xdb, 0xfe, 0xcc, 0xf8, 0x81, 0xfc, 0x03, 0x02, 0x1d, 0x03, 0x0d, 0x01, 0x13, 0xfe, 0x28, 0xfe, 0xd7, 0x00, 0xa3, 0x04, 0xc7, 0x03, 0xc6, 0xfb, 0x19, 0xfa, 0x75, 0xfe, 0x81, 0x02, 0x81, 0x02, 0xe0, 0xff, 0x54, 0x01, 0xa3, 0x04, 0x8d, 0xfd, 0x3d, 0xfa, 0x25, 0xfd, 0xa4, 0x00, 0xb1, 0x02, 0x26, 0x04, 0xc6, 0x05, 0x49, 0xfc, 0x7d, 0xf8, 0xf5, 0xfb, 0x4f, 0x02, 0x56, 0x04, 0xc3, 0x03, 0x87, 0x05, 0xb1, 0xfb, 0xfb, 0xf6, 0x19, 0xfc, 0x0a, 0x04, 0x52, 0x05, 0x63, 0x02, 0x2d, 0xff, 0x5a, 0xfe, 0x5f, 0x04, 0x5e, 0xfe, 0x54, 0xf9, 0x77, 0xfc, 0x52, 0x01, 0x2b, 0x04, 0x6d, 0x03, 0x37, 0x05, 0xbd, 0xfd, 0x05, 0xf8, 0xc9, 0xfb, 0x2d, 0x02, 0x1f, 0x05, 0x47, 0x05, 0xc9, 0xff, 0x0d, 0xfa, 0x4b, 0xfc, 0x83, 0x00, 0x21, 0x03, 0xdb, 0x02, 0xec, 0xff, 0xdb, 0xfd, 0x75, 0xfe, 0xf2, 0xff, 0x9c, 0xff, 0xc3, 0xff, 0x18, 0x01, 0x55, 0x02, 0x2b, 0x06, 0x31, 0xfe, 0x10, 0xf8, 0x47, 0xfc, 0xeb, 0x00, 0xad, 0x02, 0x9f, 0x02, 0xb2, 0x00, 0xd1, 0x03, 0xcf, 0x02, 0x86, 0xf8, 0xe2, 0xf7, 0x47, 0x03, 0xef, 0x08, 0x86, 0x00, 0x0d, 0xfa, 0xf6, 0xfa, 0xfc, 0x01, 0xa3, 0x04, 0xb2, 0x01, 0xcf, 0x02, 0x41, 0x02, 0x10, 0xf7, 0xa9, 0xf9, 0xc9, 0x02, 0xe2, 0x09, 0x3b, 0x06, 0x21, 0xf8, 0x8c, 0xf6, 0x7d, 0xfd, 0x6a, 0x05, 0x07, 0x05, 0xbf, 0x00, 0xf7, 0xfe, 0x8b, 0x00, 0xf4, 0xfe, 0xcf, 0xfd, 0xfe, 0xff, 0x5b, 0x01, 0x28, 0x01, 0x6c, 0x01, 0x44, 0x00, 0x81, 0xfc, 0xc7, 0xfd, 0xcb, 0x00, 0x8d, 0x02, 0x14, 0x00, 0x7c, 0x08, 0xef, 0x02, 0x1a, 0xee, 0xfb, 0xf6, 0xe8, 0x07, 0x64, 0x0a, 0xee, 0x07, 0x09, 0xfc, 0xc1, 0xf3, 0xb5, 0xfa, 0xf2, 0x04, 0xdf, 0x06, 0x22, 0x01, 0xe2, 0x01, 0x55, 0x02, 0x9e, 0xf7, 0x41, 0xf9, 0xa3, 0x03, 0xab, 0x05, 0xed, 0x02, 0x71, 0x03, 0xb3, 0xfc, 0x11, 0xf6, 0xcd, 0xfd, 0x82, 0x05, 0xa3, 0x06, 0xd0, 0x04, 0x21, 0xfb, 0x4f, 0xf7, 0xab, 0xfd, 0xa3, 0x04, 0xb4, 0x04, 0x11, 0x00, 0x73, 0xfd, 0x3d, 0xfc, 0xea, 0xff, 0x21, 0x03, 0xc9, 0x02, 0xab, 0x01, 0x30, 0xfe, 0xe9, 0xfb, 0x3f, 0xff, 0x3f, 0x02, 0x4f, 0x02, 0xc8, 0x08, 0xf7, 0xfd, 0x2c, 0xf3, 0x21, 0xf9, 0x81, 0x03, 0x94, 0x07, 0xf3, 0x02, 0xf4, 0xfe, 0xe9, 0x00, 0x0b, 0x00, 0x6c, 0xfb, 0x34, 0xfe, 0x7b, 0x02, 0x0f, 0x02, 0xd9, 0x01, 0xae, 0x08, 0x89, 0xfa, 0x79, 0xf0, 0x61, 0xfd, 0x20, 0x09, 0x5a, 0x06, 0xdb, 0x03, 0x2d, 0x01, 0x41, 0xf5, 0xa2, 0xf8, 0x33, 0x04, 0x8e, 0x07, 0x15, 0x08, 0x07, 0xfd, 0x69, 0xf5, 0x79, 0xfa, 0x7f, 0x03, 0xd3, 0x05, 0xaf, 0x04, 0x21, 0x03, 0x55, 0xfa, 0x1a, 0xf8, 0xd3, 0xfd, 0xe3, 0x04, 0x07, 0x09, 0x2b, 0x01, 0xf9, 0xf8, 0x88, 0xfa, 0xcf, 0xfe, 0xad, 0x03, 0x63, 0x03, 0xe2, 0x01, 0xc7, 0x05, 0xc3, 0xfc, 0x14, 0xf5, 0x73, 0xfc, 0x04, 0x06, 0x38, 0x05, 0x39, 0x03, 0x6b, 0x03, 0x45, 0xf9, 0x66, 0xf6, 0xfc, 0xff, 0x3f, 0x06, 0x4e, 0x06, 0x9b, 0x03, 0xc1, 0xfa, 0x42, 0xf8, 0x01, 0xfd, 0x3d, 0x03, 0x82, 0x05, 0xfa, 0x04, 0x57, 0xff, 0x61, 0xf9, 0x47, 0xfc, 0xcb, 0x02, 0x2f, 0x04, 0xfc, 0xff, 0xbd, 0xfd, 0x82, 0xfe, 0x44, 0x00, 0x22, 0x01, 0xdf, 0x00, 0x05, 0x00, 0x74, 0xff, 0x92, 0xff, 0xd1, 0xff, 0xa1, 0xff, 0x82, 0xfe, 0x2c, 0x00, 0xbe, 0x01, 0x9c, 0x04, 0x35, 0x03, 0x31, 0xfa, 0xc5, 0xf9, 0x79, 0x00, 0x53, 0x03, 0x27, 0x02, 0xf3, 0xfe, 0x17, 0xfd, 0x8a, 0xff, 0xc4, 0x04, 0x84, 0x05, 0x69, 0xfc, 0x6c, 0xf8, 0x89, 0xfd, 0x95, 0x03, 0xb4, 0x05, 0xed, 0x03, 0x71, 0xfc, 0x08, 0xfa, 0x31, 0xfe, 0x33, 0x02, 0x65, 0x03, 0x6d, 0x01, 0xa9, 0xfe, 0x34, 0xfe, 0x41, 0xff, 0x59, 0x00, 0x47, 0xff, 0xf6, 0xff, 0xc1, 0x00, 0x07, 0x04, 0x47, 0x05, 0xdd, 0xfa, 0x72, 0xf7, 0xbf, 0xfd, 0x53, 0x05, 0x29, 0x08, 0x64, 0x00, 0xf4, 0xf8, 0x33, 0xfc, 0x17, 0x03, 0x4d, 0x03, 0xb6, 0xff, 0x6d, 0xfe, 0x24, 0xff, 0x49, 0x00, 0xf3, 0xff, 0x58, 0xfe, 0x2c, 0x00, 0xea, 0x01, 0x83, 0x06, 0x91, 0x01, 0xbf, 0xf7, 0xa5, 0xf9, 0x2c, 0x00, 0xb2, 0x07, 0xaf, 0x05, 0xdf, 0xfc, 0x56, 0xf9, 0x49, 0xfd, 0x7d, 0x02, 0x2b, 0x07, 0xb5, 0x03, 0x39, 0xfa, 0x45, 0xf9, 0x2b, 0xfe, 0x73, 0x04, 0x8b, 0x03, 0x75, 0x03, 0x55, 0x03, 0xb6, 0xf9, 0x36, 0xf8, 0x91, 0x01, 0xe8, 0x04, 0x63, 0x01, 0xe5, 0xfd, 0x43, 0xfd, 0xf9, 0xff, 0xb7, 0x02, 0x93, 0x01, 0x8e, 0x04, 0x07, 0x02, 0x41, 0xf8, 0xb5, 0xf9, 0x6b, 0x00, 0xdd, 0x03, 0x19, 0x02, 0xe7, 0xff, 0xc7, 0x03, 0x96, 0x01, 0xc1, 0xfa, 0xc2, 0xfb, 0xa4, 0xff, 0x2b, 0x02, 0x5f, 0x03, 0x6d, 0x03, 0x48, 0xfe, 0xd9, 0xfb, 0x91, 0xfd, 0x8d, 0xff, 0x39, 0x02, 0x37, 0x02, 0xa9, 0x02, 0xa7, 0x04, 0x23, 0xfc, 0xd5, 0xf8, 0x42, 0xfe, 0x6f, 0x02, 0xa8, 0x01, 0x72, 0xff, 0x80, 0x00, 0x9f, 0x01, 0x70, 0x06, 0xbc, 0xff, 0xd9, 0xf7, 0xbd, 0xfb, 0x16, 0x01, 0x81, 0x02, 0x0f, 0x01, 0xf8, 0x00, 0x9d, 0x00, 0x2f, 0x03, 0x17, 0x03, 0x04, 0xfa, 0x3c, 0xf8, 0x04, 0x01, 0xd4, 0x05, 0x92, 0x06, 0x44, 0x00, 0xc4, 0xf8, 0xc5, 0xf9, 0x58, 0x00, 0x8b, 0x04, 0x1a, 0x07, 0x69, 0x02, 0x74, 0xf9, 0xf2, 0xf9, 0xbd, 0xfe, 0xf7, 0x02, 0xb3, 0x03, 0xac, 0x00, 0x83, 0x04, 0x3b, 0x02, 0xdb, 0xf7, 0x35, 0xf9, 0xd1, 0xff, 0x38, 0x05, 0x29, 0x03, 0x8b, 0x01, 0xeb, 0x04, 0xfb, 0xfc, 0x11, 0xf8, 0xf9, 0xfc, 0x7e, 0x01, 0x2b, 0x03, 0x19, 0x02, 0x4f, 0x01, 0x87, 0x04, 0x29, 0xff, 0x91, 0xf8, 0x7d, 0xfb, 0xb0, 0x00, 0x6e, 0x04, 0xa5, 0x02, 0xab, 0x01, 0xdb, 0xfe, 0x21, 0xfd, 0x7c, 0xfe, 0xd2, 0x06, 0xbb, 0x04, 0x8b, 0xf7, 0xbe, 0xf7, 0x29, 0xff, 0x44, 0x06, 0xe1, 0x03, 0x11, 0x03, 0xdb, 0x02, 0xfa, 0xf9, 0x15, 0xf8, 0x68, 0xff, 0x5a, 0x05, 0x1b, 0x05, 0x52, 0x00, 0x71, 0xfb, 0x33, 0x02, 0x75, 0x02, 0xb6, 0xfb, 0x29, 0xfc, 0xea, 0xfe, 0xf3, 0x02, 0xe7, 0x02, 0x4a, 0x04, 0x53, 0x02, 0xb1, 0xf7, 0x71, 0xf9, 0x65, 0x02, 0x77, 0x08, 0x23, 0x06, 0x55, 0xfa, 0xf4, 0xf7, 0x57, 0xfd, 0x47, 0x03, 0x9a, 0x04, 0xd7, 0x04, 0x8a, 0xff, 0x20, 0xfa, 0x67, 0xfc, 0x88, 0x00, 0x41, 0x03, 0x4f, 0x03, 0xbc, 0xff, 0x3f, 0xfd, 0xb7, 0xfd, 0xc3, 0xfe, 0x5d, 0x01, 0x73, 0x02, 0x60, 0x01, 0xc5, 0xff, 0x8a, 0xff, 0x01, 0x01, 0x05, 0x03, 0xf5, 0xff, 0xfa, 0xf9, 0xb1, 0xfb, 0xd1, 0x00, 0x7f, 0x02, 0x66, 0x01, 0xeb, 0x00, 0xf1, 0x00, 0x40, 0x00, 0x2b, 0x04, 0x53, 0xff, 0x15, 0xf9, 0xe3, 0xfc, 0x65, 0x00, 0xc9, 0x02, 0xe1, 0x01, 0x9f, 0x03, 0xbf, 0x03, 0x40, 0xfb, 0x16, 0xf9, 0x2e, 0xfe, 0x29, 0x03, 0x1b, 0x05, 0xe3, 0x03, 0x91, 0xfd, 0xb4, 0xf9, 0xcd, 0xfc, 0x07, 0x02, 0x47, 0x06, 0x87, 0x05, 0xc9, 0xfb, 0x3a, 0xf9, 0x1b, 0xfd, 0x71, 0x03, 0x8a, 0x05, 0x40, 0x00, 0xad, 0xfc, 0xc5, 0xfc, 0xd7, 0xff, 0xfb, 0x02, 0xbb, 0x05, 0x00, 0x00, 0x09, 0xfa, 0x9e, 0xfb, 0x9c, 0xff, 0x00, 0x04, 0x57, 0x02, 0x5d, 0x02, 0x43, 0x05, 0x4c, 0xfb, 0x4a, 0xf6, 0x39, 0xfd, 0x80, 0x05, 0x06, 0x05, 0xe0, 0x05, 0x39, 0xff, 0x91, 0xf7, 0x04, 0xfb, 0x46, 0x00, 0x23, 0x04, 0x19, 0x03, 0x73, 0x00, 0x0a, 0x01, 0xdb, 0x01, 0xb6, 0xfb, 0x89, 0xfa, 0xe5, 0x01, 0x51, 0x03, 0x21, 0x08, 0xf1, 0x01, 0x2a, 0xf4, 0x17, 0xf7, 0xa7, 0x02, 0xfc, 0x07, 0x47, 0x03, 0xff, 0x04, 0xfd, 0xfd, 0x97, 0xf5, 0x09, 0xfb, 0x70, 0x04, 0x20, 0x06, 0x34, 0x01, 0xc7, 0x04, 0x78, 0xff, 0x6b, 0xf5, 0x22, 0xfa, 0x60, 0x04, 0x96, 0x06, 0x03, 0x07, 0xcc, 0xfe, 0x26, 0xf6, 0xe4, 0xf9, 0x29, 0x03, 0x28, 0x06, 0xf3, 0x04, 0xe8, 0x01, 0x0d, 0xf8, 0x46, 0xf9, 0xf6, 0x01, 0x87, 0x05, 0xe7, 0x01, 0x16, 0x05, 0x98, 0x00, 0xa1, 0xf6, 0x5a, 0xfa, 0x5c, 0x00, 0x8b, 0x04, 0xc9, 0x02, 0xa3, 0x04, 0xa9, 0x01, 0x30, 0xf9, 0x74, 0xf9, 0x19, 0x00, 0x66, 0x05, 0xff, 0x02, 0x9f, 0x02, 0xf9, 0xff, 0x96, 0xf8, 0x6b, 0xfd, 0xfb, 0x02, 0xf4, 0x07, 0x6a, 0x04, 0x86, 0xf7, 0x7a, 0xf6, 0x65, 0xff, 0x0b, 0x06, 0xff, 0x05, 0x2c, 0x05, 0x99, 0xfb, 0xf3, 0xf7, 0xa7, 0xfc, 0xdd, 0x02, 0xaf, 0x04, 0x75, 0x01, 0xb1, 0xff, 0x65, 0xff, 0x84, 0xff, 0x01, 0x00, 0xd6, 0x04, 0xd3, 0x00, 0x59, 0xf8, 0x31, 0xfb, 0xbb, 0x00, 0x05, 0x03, 0x17, 0x03, 0xf0, 0x04, 0x42, 0xff, 0x95, 0xfa, 0xe7, 0xfc, 0x13, 0x00, 0x97, 0x01, 0xd3, 0x01, 0x73, 0x01, 0x63, 0x03, 0x36, 0x01, 0x31, 0xfa, 0x1e, 0xfb, 0xa7, 0x00, 0x92, 0x04, 0xed, 0x02, 0xaf, 0xfe, 0x71, 0xfd, 0xf3, 0xfe, 0x8b, 0x00, 0x37, 0x00, 0x23, 0xff, 0x86, 0x00, 0x63, 0x05, 0x15, 0x01, 0x38, 0xf9, 0xd0, 0xfb, 0x0f, 0x02, 0x62, 0x07, 0xbf, 0x03, 0x9d, 0xfa, 0xbe, 0xf9, 0xdb, 0xfd, 0x1b, 0x03, 0xd1, 0x03, 0xc4, 0x01, 0x5e, 0x04, 0xc9, 0xfe, 0xe9, 0xf6, 0xc9, 0xfb, 0xbb, 0x03, 0xd2, 0x05, 0x9a, 0x01, 0x9b, 0xfd, 0xd1, 0xfd, 0x74, 0x00, 0xa6, 0x00, 0x2c, 0x05, 0xad, 0x02, 0x12, 0xf8, 0xa6, 0xf9, 0xd7, 0x00, 0xeb, 0x04, 0xdb, 0x02, 0x51, 0xff, 0x87, 0xfc, 0x87, 0xfe, 0x3f, 0x02, 0xb1, 0x03, 0xa7, 0x04, 0x97, 0xfd, 0x2a, 0xf7, 0x89, 0xfc, 0x7f, 0x05, 0xed, 0x08, 0x51, 0xff, 0x2d, 0xf9, 0x94, 0xfb, 0x83, 0x00, 0xdd, 0x02, 0x9c, 0x04, 0x69, 0x03, 0x49, 0xfc, 0x7e, 0xfa, 0x79, 0xfd, 0xc9, 0x01, 0xe3, 0x03, 0x06, 0x01, 0x43, 0x02, 0x07, 0x05, 0x69, 0xfa, 0x82, 0xf6, 0x58, 0xfe, 0xd6, 0x05, 0xff, 0x04, 0xbe, 0x04, 0xba, 0xfe, 0xee, 0xf7, 0x72, 0xfb, 0xbb, 0x01, 0x50, 0x05, 0xc0, 0x04, 0x17, 0xff, 0x11, 0xfb, 0x8f, 0xfd, 0x98, 0x00, 0x94, 0x00, 0x25, 0x00, 0x75, 0x01, 0x34, 0x06, 0x29, 0x00, 0x20, 0xf9, 0x26, 0xfb, 0x26, 0x00, 0x30, 0x04, 0xe9, 0x02, 0x3e, 0x00, 0x9f, 0xfe, 0x18, 0xff, 0x1f, 0x00, 0xbb, 0x00, 0xd6, 0x00, 0xb5, 0x00, 0xcc, 0xff, 0x85, 0xfe, 0xf4, 0xfe, 0x9d, 0x00, 0x63, 0x02, 0xbb, 0x00, 0x53, 0xfc, 0x01, 0xfd, 0x97, 0x00, 0x65, 0x02, 0xc9, 0x01, 0xf2, 0xff, 0x2c, 0xff, 0xc3, 0xfe, 0x37, 0xfe, 0x38, 0x00, 0x51, 0x02, 0x5d, 0x01, 0xe1, 0x01, 0xe5, 0x00, 0xb4, 0xfb, 0xb3, 0xfc, 0x5a, 0x01, 0xb7, 0x02, 0xc4, 0x00, 0xb0, 0xff, 0x2f, 0x00, 0x6b, 0x06, 0x8b, 0x00, 0x4a, 0xf5, 0xf0, 0xf9, 0xa9, 0x02, 0x20, 0x06, 0x2f, 0x03, 0x18, 0xff, 0xa3, 0xfd, 0xcd, 0xfd, 0x15, 0xff, 0x55, 0x01, 0xc0, 0x05, 0x6f, 0x02, 0xc6, 0xfa, 0x9d, 0xfb, 0xb4, 0xff, 0xd2, 0x01, 0xaa, 0x00, 0x73, 0x00, 0x64, 0x01, 0x2b, 0x04, 0xff, 0xff, 0x2c, 0xfa, 0x67, 0xfc, 0x1b, 0x01, 0xc9, 0x03, 0x21, 0x02, 0x00, 0xff, 0x0a, 0xfe, 0x12, 0xff, 0xc0, 0xff, 0x3c, 0xff, 0xc5, 0x00, 0x9a, 0x01, 0x3b, 0x04, 0xc9, 0x02, 0x35, 0xfa, 0xad, 0xfa, 0x87, 0xff, 0x29, 0x02, 0x24, 0x04, 0x84, 0x01, 0xbf, 0xfc, 0x65, 0xfc, 0x3f, 0x03, 0xfb, 0x03, 0x3d, 0xfe, 0x81, 0xfc, 0xd1, 0xfd, 0x1e, 0x01, 0x45, 0x03, 0xaf, 0x04, 0x30, 0xff, 0x88, 0xfa, 0xe7, 0xfc, 0xee, 0x00, 0x2b, 0x03, 0x6f, 0x02, 0x5d, 0xff, 0xcd, 0xfd, 0x73, 0xfd, 0xb1, 0xff, 0xc9, 0x01, 0x6b, 0x03, 0x84, 0x05, 0xd1, 0xfc, 0x02, 0xf9, 0x61, 0xfd, 0x3d, 0x01, 0x23, 0x02, 0x03, 0x02, 0xc5, 0x00, 0xed, 0x03, 0xcc, 0x01, 0xf2, 0xf8, 0x46, 0xf9, 0x79, 0x01, 0xd7, 0x04, 0x5b, 0x05, 0x13, 0x04, 0xfa, 0xf9, 0x32, 0xf8, 0xfb, 0xfd, 0xe3, 0x03, 0x92, 0x04, 0x72, 0x01, 0xd2, 0xfe, 0x91, 0xfe, 0xed, 0x02, 0x01, 0x02, 0x91, 0xfa, 0x71, 0xfc, 0x06, 0x01, 0x55, 0x02, 0x45, 0x01, 0x96, 0xff, 0x47, 0xff, 0xe8, 0x00, 0xa6, 0x00, 0x14, 0xff, 0xb8, 0xfe, 0x4b, 0xfe, 0x8e, 0x00, 0xeb, 0x01, 0xd3, 0x03, 0xe9, 0x03, 0x1e, 0xfb, 0x00, 0xf9, 0x33, 0xfe, 0x8e, 0x04, 0x28, 0x06, 0xc5, 0xff, 0x61, 0xfb, 0x41, 0xfc, 0xc9, 0xff, 0x79, 0x03, 0xb5, 0x01, 0x61, 0x02, 0x2b, 0x05, 0x72, 0xfb, 0x47, 0xf7, 0xa1, 0xfc, 0x40, 0x04, 0x38, 0x05, 0xd7, 0x00, 0xce, 0xff, 0xa5, 0x01, 0x3d, 0xfd, 0xd9, 0xfb, 0xe2, 0x00, 0x99, 0x02, 0x39, 0x01, 0xe0, 0xff, 0x58, 0x04, 0x91, 0x03, 0x2a, 0xf7, 0x3b, 0xf6, 0xa3, 0x00, 0x7c, 0x07, 0x22, 0x04, 0xa3, 0x02, 0x32, 0x00, 0x39, 0xf8, 0xcd, 0xfa, 0x53, 0x05, 0x70, 0x09, 0x6d, 0xfe, 0xee, 0xf7, 0xfa, 0xfa, 0x99, 0x02, 0x18, 0x05, 0x4f, 0x02, 0x3a, 0x04, 0xac, 0xfe, 0x69, 0xf6, 0xb1, 0xfb, 0x9a, 0x04, 0xe0, 0x05, 0x87, 0x06, 0x8d, 0xfd, 0xc0, 0xf6, 0x0e, 0xfb, 0xed, 0x02, 0x2b, 0x05, 0x00, 0x04, 0x6b, 0x03, 0x4c, 0xfb, 0x8d, 0xf9, 0x2d, 0xff, 0xb7, 0x01, 0x81, 0x01, 0x83, 0x00, 0x59, 0x03, 0xcd, 0x03, 0x01, 0xfc, 0x09, 0xfa, 0x61, 0xfd, 0xc3, 0x02, 0x0a, 0x04, 0x13, 0x06, 0x95, 0xff, 0xa9, 0xf8, 0xf4, 0xfa, 0x98, 0x00, 0x5b, 0x04, 0xb5, 0x03, 0x4f, 0x04, 0x67, 0xfd, 0x22, 0xf9, 0xdd, 0xfc, 0x13, 0x02, 0x9a, 0x04, 0xe1, 0x03, 0x09, 0xfe, 0x61, 0xfa, 0x9d, 0xfd, 0x8b, 0x04, 0x53, 0x06, 0x6f, 0xfe, 0x85, 0xfa, 0xf1, 0xfb, 0xb5, 0x00, 0x46, 0x04, 0xbd, 0x01, 0x1b, 0x02, 0xbf, 0x04, 0xc9, 0xf8, 0xe9, 0xf6, 0xd3, 0x01, 0x77, 0x06, 0x8d, 0x02, 0x15, 0x02, 0xc1, 0x00, 0x96, 0xf8, 0xfd, 0xfa, 0x33, 0x03, 0x9a, 0x04, 0xf1, 0x03, 0x1d, 0x03, 0x20, 0xfa, 0x19, 0xf7, 0xfe, 0x00, 0xff, 0x06, 0x52, 0x01, 0xd1, 0xfc, 0x74, 0x00, 0x58, 0x01, 0xf0, 0xfe, 0x64, 0xfe, 0x8a, 0xfe, 0x15, 0x01, 0x55, 0x02, 0xeb, 0x04, 0xb0, 0xff, 0x0e, 0xf8, 0x49, 0xfc, 0xb8, 0x04, 0x68, 0x08, 0x42, 0xff, 0x3a, 0xf9, 0xd2, 0xfa, 0xaf, 0x00, 0xaf, 0x04, 0x89, 0x02, 0xe7, 0xff, 0xd2, 0xff, 0xdb, 0xfe, 0xc7, 0xfe, 0x20, 0x00, 0x0f, 0x01, 0xbb, 0x00, 0x37, 0x07, 0xac, 0x00, 0x0f, 0xf2, 0xed, 0xf8, 0x1a, 0x06, 0xc3, 0x07, 0x0f, 0x02, 0xb1, 0x02, 0x49, 0xfe, 0x33, 0xf7, 0x57, 0xfc, 0x37, 0x04, 0x1c, 0x06, 0xb4, 0x04, 0x13, 0xfd, 0x58, 0xf8, 0x23, 0xfc, 0xed, 0x02, 0xdc, 0x04, 0x8f, 0x03, 0x39, 0x02, 0x05, 0xfc, 0x65, 0xfa, 0xc0, 0xfe, 0x2b, 0x02, 0x0c, 0x01, 0xfc, 0xff, 0xf5, 0x00, 0xeb, 0x04, 0x13, 0x01, 0xd4, 0xf9, 0x28, 0xfb, 0x7d, 0x00, 0x2b, 0x04, 0xd8, 0x04, 0x74, 0x00, 0x60, 0xfb, 0xb3, 0xfc, 0x23, 0x00, 0x57, 0x02, 0x35, 0x02, 0x32, 0x00, 0x8a, 0xfe, 0xd6, 0xfe, 0xd4, 0xff, 0x92, 0x00, 0x0c, 0xff, 0x4d, 0xff, 0x25, 0x01, 0x5b, 0x06, 0x4b, 0x01, 0x4a, 0xf9, 0x65, 0xfa, 0xc2, 0xff, 0x1b, 0x04, 0x7e, 0x06, 0x09, 0x02, 0x35, 0xfa, 0xc4, 0xfa, 0x73, 0xfe, 0x63, 0x03, 0xff, 0x02, 0x00, 0x01, 0xd8, 0xfe, 0xe1, 0x03, 0x02, 0x04, 0x65, 0xf8, 0xc8, 0xf7, 0x9c, 0xff, 0x37, 0x06, 0x97, 0x03, 0xb1, 0x02, 0x39, 0x02, 0x55, 0xfa, 0x95, 0xfa, 0x37, 0x00, 0x8b, 0x02, 0xab, 0x01, 0x1b, 0xff, 0x42, 0xff, 0x32, 0x00, 0x0e, 0x04, 0x8e, 0x04, 0x39, 0xfb, 0x45, 0xf9, 0x1f, 0xfe, 0xc5, 0x02, 0x40, 0x04, 0x6d, 0x03, 0xd3, 0xfd, 0xd0, 0xfa, 0xd7, 0x00, 0xe8, 0x04, 0xcc, 0xff, 0xad, 0xfc, 0x07, 0xfe, 0x77, 0x00, 0x8d, 0x01, 0xa6, 0x00, 0x0b, 0xff, 0x27, 0x02, 0x71, 0x03, 0x53, 0xfd, 0xd0, 0xfb, 0xfd, 0xfe, 0xe5, 0x01, 0x99, 0x01, 0xde, 0xfe, 0x26, 0x00, 0x71, 0x03, 0xd2, 0xff, 0xcf, 0xfc, 0xcf, 0xfd, 0x1a, 0x00, 0xbf, 0x03, 0x27, 0x02, 0xcd, 0xfd, 0xfb, 0xfc, 0x06, 0xfe, 0xa9, 0x01, 0x67, 0x02, 0x37, 0x04, 0x83, 0x02, 0x44, 0xfa, 0xc2, 0xf9, 0xbd, 0xff, 0xfa, 0x05, 0xf3, 0x02, 0xe5, 0xfd, 0xbd, 0xfb, 0x43, 0xfe, 0xc1, 0x02, 0x9f, 0x02, 0x77, 0x00, 0x83, 0xff, 0x73, 0x01, 0xf6, 0xff, 0x6d, 0xfc, 0x5b, 0xfe, 0xa2, 0x01, 0x2d, 0x02, 0x17, 0x00, 0x54, 0xff, 0x4d, 0x00, 0x93, 0x05, 0x85, 0x01, 0xa1, 0xf6, 0x84, 0xf9, 0x39, 0x02, 0x9a, 0x05, 0xf7, 0x01, 0x13, 0xfe, 0xe8, 0x00, 0x89, 0x02, 0x04, 0xfe, 0x69, 0xfd, 0x47, 0xff, 0x33, 0x01, 0xd4, 0xff, 0x51, 0xff, 0x16, 0x00, 0xcb, 0x04, 0x5e, 0x04, 0xad, 0xfa, 0xae, 0xf8, 0x46, 0xfe, 0xb6, 0x04, 0xa7, 0x03, 0x2e, 0x01, 0x1c, 0x04, 0x53, 0xfd, 0x77, 0xf6, 0x1b, 0xfe, 0x42, 0x05, 0x0b, 0x04, 0xf6, 0xff, 0xfc, 0xff, 0x27, 0x05, 0xe5, 0xfd, 0x93, 0xf7, 0xcc, 0xfb, 0x57, 0x02, 0x82, 0x04, 0xe9, 0x03, 0x16, 0x04, 0xcc, 0xfb, 0x0d, 0xf8, 0x06, 0xfe, 0x0b, 0x05, 0xd7, 0x03, 0x57, 0x05, 0x5f, 0xff, 0xd7, 0xf6, 0x55, 0xfa, 0x55, 0x03, 0x2a, 0x05, 0x57, 0x05, 0x3d, 0x02, 0x11, 0xf8, 0xb9, 0xf8, 0x52, 0x01, 0x9f, 0x05, 0xc7, 0x02, 0x77, 0xff, 0x79, 0x01, 0xb7, 0x02, 0x39, 0xfb, 0x09, 0xfa, 0xab, 0xff, 0x9d, 0x03, 0xfb, 0x02, 0x1d, 0x00, 0x8b, 0xfe, 0xc9, 0xfe, 0x29, 0x00, 0xbc, 0x00, 0x67, 0x00, 0x6e, 0xff, 0x9d, 0xfe, 0x17, 0xff, 0x69, 0x01, 0x42, 0x01, 0xd0, 0x04, 0x6f, 0x02, 0xed, 0xf8, 0xcc, 0xf9, 0x87, 0xff, 0x76, 0x04, 0x8b, 0x03, 0xe5, 0x01, 0xaf, 0x01, 0x59, 0xfc, 0x1c, 0xfb, 0xb2, 0xfe, 0xc9, 0x01, 0xb1, 0x02, 0x89, 0x03, 0xc5, 0x00, 0x1f, 0xfc, 0x19, 0xfc, 0xe7, 0xfe, 0xf1, 0x02, 0x9e, 0x06, 0xa6, 0x00, 0x51, 0xfa, 0xf6, 0xfa, 0xe9, 0xff, 0x0c, 0x04, 0x59, 0x03, 0x85, 0x02, 0x2a, 0xfe, 0x6d, 0xfa, 0x5e, 0xfe, 0xbd, 0x02, 0x97, 0x02, 0x0e, 0x00, 0x3c, 0x01, 0x7f, 0x05, 0x6b, 0xfc, 0xe7, 0xf6, 0x47, 0xfd, 0x0a, 0x04, 0xf3, 0x05, 0x5a, 0x01, 0x47, 0xfd, 0xc5, 0xfc, 0x5d, 0xfe, 0xeb, 0x01, 0xc8, 0x05, 0x1b, 0x01, 0xee, 0xfa, 0x3e, 0xfb, 0x0d, 0x00, 0x13, 0x04, 0x31, 0x02, 0x5b, 0x03, 0xde, 0x01, 0xe6, 0xf8, 0x5c, 0xf9, 0x8e, 0x01, 0x83, 0x05, 0x77, 0x06, 0x57, 0xff, 0x00, 0xf9, 0x31, 0xfb, 0x8f, 0x00, 0x23, 0x04, 0x9d, 0x02, 0x37, 0x00, 0x2d, 0xff, 0xa7, 0xff, 0xd4, 0x00, 0xe9, 0x00, 0x43, 0xfd, 0x95, 0xfd, 0x78, 0x01, 0xeb, 0x07, 0xe2, 0x00, 0xf9, 0xf5, 0x01, 0xf9, 0xeb, 0x03, 0x2a, 0x06, 0x8b, 0x05, 0xe5, 0x01, 0x00, 0xf9, 0x45, 0xf9, 0x15, 0xff, 0x67, 0x04, 0xaf, 0x04, 0x2b, 0x05, 0xf5, 0xfc, 0xd2, 0xf8, 0x39, 0xfc, 0x57, 0x02, 0x1f, 0x04, 0x95, 0x03, 0x71, 0x03, 0xe1, 0xfb, 0x35, 0xf9, 0x10, 0xfe, 0xf9, 0x02, 0xc6, 0x05, 0xbd, 0x02, 0x11, 0xfc, 0x56, 0xfb, 0x07, 0xfe, 0x27, 0x02, 0x09, 0x03, 0x51, 0x02, 0x3a, 0x04, 0x31, 0xfd, 0x51, 0xf8, 0xe7, 0xfc, 0x08, 0x05, 0xa2, 0x06, 0xc1, 0xfe, 0xce, 0xfb, 0xd9, 0xfd, 0xf7, 0x00, 0x73, 0x00, 0xc2, 0xff, 0x35, 0x00, 0x04, 0x04, 0x46, 0x04, 0xe1, 0xfa, 0xf9, 0xf8, 0xcd, 0xfe, 0xf7, 0x04, 0xbd, 0x02, 0xa7, 0x03, 0xcd, 0x02, 0xd5, 0xf8, 0x81, 0xf8, 0xf0, 0xff, 0xa7, 0x05, 0xb5, 0x03, 0x28, 0x04, 0xbf, 0xfd, 0xf0, 0xf6, 0x19, 0xfe, 0xff, 0x04, 0x60, 0x08, 0x2e, 0x00, 0x5d, 0xf8, 0xc9, 0xfa, 0xc5, 0x00, 0xe9, 0x03, 0x8f, 0x04, 0x88, 0x01, 0xce, 0xfb, 0xb5, 0xfd, 0xf8, 0xff, 0xa7, 0x00, 0xa7, 0x00, 0x7d, 0xff, 0x58, 0x01, 0x58, 0x01, 0xbe, 0xfe, 0xa7, 0xfc, 0x38, 0xff, 0xf1, 0x01, 0x6c, 0x04, 0x07, 0x05, 0x5a, 0xfb, 0x3c, 0xf8, 0x7b, 0xfd, 0x07, 0x04, 0x4c, 0x04, 0x58, 0x01, 0x80, 0xff, 0x88, 0xfe, 0x75, 0xfe, 0xba, 0xff, 0x52, 0x01, 0x87, 0x02, 0x5d, 0x01, 0xaf, 0xfc, 0xf9, 0xfb, 0xd2, 0xff, 0x09, 0x02, 0x0a, 0x01, 0x2d, 0xff, 0x15, 0x02, 0x41, 0x03, 0xdb, 0xfd, 0x4b, 0xfc, 0x12, 0xff, 0x64, 0x01, 0x81, 0x01, 0xcc, 0xfe, 0xd5, 0xfe, 0x94, 0x00, 0x03, 0x05, 0x83, 0x03, 0xa0, 0xfa, 0x01, 0xfa, 0x8e, 0xfe, 0x39, 0x03, 0xe7, 0x03, 0x52, 0x04, 0xf3, 0xfe, 0x70, 0xfa, 0x0b, 0xfd, 0x1a, 0x00, 0xba, 0x01, 0xc9, 0x01, 0xa0, 0x01, 0x87, 0x04, 0x33, 0xff, 0x44, 0xf9, 0xa2, 0xfb, 0xe9, 0x00, 0x9b, 0x04, 0xe8, 0x01, 0xf5, 0x02, 0x87, 0x02, 0xc9, 0xf9, 0x9a, 0xfa, 0x07, 0x00, 0x3f, 0x02, 0x33, 0x02, 0x6f, 0x01, 0xa8, 0x04, 0x45, 0xff, 0x29, 0xf9, 0xda, 0xfb, 0x66, 0x01, 0x34, 0x04, 0x9c, 0x04, 0x9b, 0x00, 0x3e, 0xfb, 0x81, 0xfc, 0x0d, 0x00, 0xc0, 0x01, 0xd4, 0x00, 0xd0, 0x00, 0x29, 0x03, 0x25, 0x01, 0x43, 0xfc, 0xcf, 0xfc, 0xab, 0xff, 0x52, 0x01, 0x6a, 0x00, 0xea, 0x01, 0x0b, 0x02, 0x6d, 0xfe, 0x91, 0xfd, 0x03, 0xff, 0x1c, 0x00, 0x8b, 0x00, 0x86, 0x00, 0xf3, 0x01, 0xe3, 0x04, 0x07, 0xfe, 0xee, 0xf9, 0x19, 0xfd, 0x57, 0x02, 0x03, 0x04, 0xb6, 0x00, 0x0f, 0xfe, 0xd9, 0xfd, 0x53, 0xff, 0xbf, 0x03, 0x27, 0x03, 0x75, 0xfd, 0xea, 0xfb, 0xef, 0xfd, 0xa3, 0x01, 0xbf, 0x03, 0xa4, 0x05, 0x30, 0xfe, 0xb9, 0xf8, 0xea, 0xfb, 0x73, 0x02, 0x92, 0x04, 0xc9, 0x01, 0xdf, 0x03, 0x63, 0xff, 0xfd, 0xf8, 0x05, 0xfc, 0x8e, 0x01, 0x49, 0x03, 0x0f, 0x01, 0x8d, 0xff, 0x14, 0x00, 0x4e, 0x01, 0x19, 0x01, 0xf1, 0xfc, 0x51, 0xfd, 0xe2, 0x00, 0xbd, 0x03, 0xfb, 0x06, 0xf1, 0xfc, 0x84, 0xf5, 0x65, 0xfc, 0xc3, 0x04, 0xd7, 0x06, 0x17, 0x05, 0x17, 0xfc, 0x20, 0xf9, 0x49, 0xfd, 0x39, 0x01, 0x71, 0x03, 0xd0, 0x01, 0x6c, 0x01, 0xc7, 0x03, 0x39, 0xfd, 0x0d, 0xf8, 0x19, 0xfe, 0x1f, 0x04, 0x44, 0x05, 0xbf, 0x03, 0xb1, 0xfc, 0xad, 0xf9, 0x1f, 0xfe, 0xcd, 0x01, 0x75, 0x03, 0x47, 0x03, 0xc4, 0xfe, 0xab, 0xfc, 0xa9, 0xfe, 0xf4, 0x00, 0x4b, 0x01, 0x08, 0x00, 0xe4, 0xfe, 0xf6, 0xff, 0x63, 0x03, 0x95, 0x00, 0xf7, 0xfc, 0x1f, 0xfd, 0x23, 0xff, 0x67, 0x02, 0x2f, 0x02, 0x30, 0x04, 0x03, 0x01, 0xc5, 0xf9, 0xa5, 0xfa, 0x59, 0x00, 0xe7, 0x03, 0x25, 0x03, 0xda, 0x00, 0x2b, 0xfe, 0x99, 0xfd, 0xc1, 0x03, 0xca, 0x04, 0x4c, 0xfa, 0xb6, 0xf9, 0xaa, 0x00, 0xd1, 0x03, 0xe8, 0x01, 0x96, 0xff, 0xc1, 0xfe, 0x3b, 0xff, 0x64, 0x00, 0x43, 0x01, 0x74, 0x00, 0x3c, 0xff, 0x2c, 0xff, 0x9f, 0xff, 0x80, 0x00, 0x09, 0x01, 0x26, 0x00, 0x56, 0xff, 0x65, 0xff, 0xe9, 0xff, 0x62, 0x00, 0x91, 0x00, 0x28, 0x00, 0x9e, 0xff, 0xaa, 0xff, 0xf5, 0xff, 0x0b, 0x00, 0x0e, 0x00, 0x01, 0x00, 0x93, 0xff, 0x41, 0xff, 0x32, 0x00, 0x8e, 0x01, 0xf3, 0x02, 0x1c, 0x00, 0x39, 0xfc, 0x79, 0xfd, 0x92, 0x00, 0x17, 0x02, 0x40, 0x01, 0xbc, 0xff, 0x15, 0xff, 0x6b, 0xff, 0x23, 0x00, 0xa4, 0x00, 0x2f, 0x00, 0xb1, 0xff, 0xa8, 0xfe, 0x18, 0xff, 0x9b, 0x00, 0xc9, 0x01, 0x67, 0x00, 0x0c, 0x05, 0x85, 0x01, 0x09, 0xf8, 0xcc, 0xf9, 0xb2, 0x00, 0x5c, 0x05, 0x0b, 0x03, 0x18, 0x04, 0x35, 0xff, 0x3e, 0xf9, 0x8d, 0xfb, 0x7d, 0x00, 0x54, 0x04, 0x3d, 0x02, 0xfc, 0x01, 0x23, 0x03, 0xad, 0xfb, 0x90, 0xf8, 0x5f, 0xff, 0x7f, 0x04, 0x1b, 0x05, 0x0b, 0x03, 0xbd, 0xfb, 0x3a, 0xfa, 0xaf, 0xfe, 0x0d, 0x03, 0xc3, 0x03, 0x01, 0x00, 0x1c, 0xfe, 0x6b, 0xfd, 0xf1, 0xfe, 0xcc, 0x01, 0x3b, 0x02, 0x80, 0x00, 0xae, 0xff, 0xd4, 0xff, 0x2e, 0x00, 0x4a, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0x63, 0x03, 0x0f, 0x06, 0x80, 0xf9, 0x17, 0xf6, 0x18, 0xfe, 0xff, 0x05, 0xd0, 0x04, 0x75, 0x03, 0xce, 0x00, 0x6d, 0xfa, 0x70, 0xfa, 0xb0, 0xff, 0xed, 0x03, 0xd1, 0x03, 0x1e, 0x05, 0x45, 0xfd, 0x79, 0xf8, 0x27, 0xfc, 0x83, 0x02, 0xa3, 0x04, 0xc7, 0x01, 0xed, 0x03, 0xf0, 0xfe, 0x12, 0xf8, 0xed, 0xfb, 0x4f, 0x03, 0xcc, 0x04, 0xcd, 0x02, 0xdd, 0xfd, 0x43, 0xfe, 0x45, 0x03, 0x0f, 0xfe, 0x03, 0xfc, 0x40, 0xfe, 0x76, 0x01, 0xab, 0x02, 0x69, 0x02, 0x18, 0xff, 0xab, 0xff, 0xb1, 0x02, 0x9d, 0xfd, 0x25, 0xfc, 0xd9, 0xfd, 0x61, 0x01, 0x19, 0x03, 0x7c, 0x01, 0x2e, 0x00, 0x9e, 0xff, 0xe2, 0xfe, 0x23, 0xff, 0x62, 0x00, 0xda, 0x00, 0x2b, 0x01, 0x33, 0x01, 0xf0, 0xfe, 0x01, 0xfd, 0xe7, 0xfe, 0xd9, 0x01, 0xc9, 0x03, 0xb5, 0x01, 0x48, 0xfb, 0xbc, 0xfa, 0x1d, 0xff, 0xb1, 0x03, 0xd1, 0x02, 0x45, 0x02, 0x28, 0x04, 0x11, 0xfc, 0x91, 0xf9, 0x77, 0xfd, 0x29, 0x02, 0x55, 0x03, 0x31, 0x03, 0x2b, 0x03, 0xa7, 0xfc, 0x7c, 0xfa, 0x22, 0xfe, 0x0f, 0x02, 0xef, 0x03, 0x05, 0x03, 0x09, 0xfe, 0x7d, 0xfc, 0xe9, 0xfd, 0x0b, 0x00, 0xc3, 0x01, 0x0d, 0x02, 0x1c, 0x00, 0x31, 0x03, 0x3b, 0x03, 0xaa, 0xf9, 0x29, 0xfa, 0xce, 0x00, 0xa9, 0x03, 0x13, 0x02, 0xa5, 0xff, 0xba, 0xfe, 0x59, 0xff, 0x17, 0x00, 0xbc, 0xff, 0x5e, 0x01, 0x81, 0x01, 0xd5, 0xfe, 0xdb, 0xfd, 0x9d, 0xfe, 0xf2, 0x00, 0x81, 0x02, 0xfb, 0x03, 0x71, 0xff, 0xf9, 0xfa, 0x1b, 0xfd, 0xf4, 0x00, 0x03, 0x03, 0xfa, 0x01, 0x44, 0xff, 0xdf, 0xfd, 0xa5, 0xfd, 0x68, 0x00, 0xf6, 0x01, 0x65, 0x03, 0x52, 0x04, 0xfe, 0xfb, 0xbe, 0xf9, 0xff, 0xfd, 0xfc, 0x01, 0xf1, 0x02, 0x81, 0x03, 0xc5, 0x00, 0x77, 0xfc, 0x13, 0xfd, 0xc6, 0xff, 0x97, 0x01, 0x28, 0x01, 0x35, 0xff, 0x35, 0x02, 0xb9, 0x02, 0x0d, 0xfd, 0x3b, 0xfc, 0x0c, 0xfe, 0x8d, 0x01, 0xd9, 0x02, 0xc3, 0x01, 0x48, 0x04, 0xe1, 0xfe, 0x5e, 0xf9, 0xae, 0xfb, 0x36, 0x01, 0xcb, 0x03, 0xf3, 0x04, 0xa1, 0x02, 0x5c, 0xfa, 0xf5, 0xf9, 0x77, 0xff, 0x92, 0x04, 0xad, 0x02, 0xb3, 0x03, 0x5c, 0xff, 0x02, 0xf8, 0xdd, 0xfc, 0x60, 0x05, 0x32, 0x08, 0xdb, 0xfd, 0x60, 0xf8, 0xb9, 0xfb, 0xd5, 0x02, 0x6b, 0x04, 0xa5, 0x01, 0xcf, 0xff, 0xbb, 0xfe, 0x52, 0xfe, 0xd0, 0x01, 0xcb, 0x06, 0xd5, 0xfb, 0xda, 0xf5, 0x1d, 0xff, 0x17, 0x06, 0xb8, 0x04, 0xd3, 0x00, 0x5e, 0xfe, 0x05, 0xff, 0xee, 0xfe, 0xdd, 0xfd, 0x7e, 0xff, 0x1c, 0x01, 0x4f, 0x01, 0x80, 0x00, 0xd7, 0xff, 0xa1, 0xff, 0xc8, 0xff, 0xf9, 0xff, 0x17, 0x00, 0x26, 0x00, 0x14, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xff, 0xff, 0x86, 0xff, 0x15, 0xff, 0xc2, 0xff, 0xb1, 0x02, 0xa5, 0x02, 0xd1, 0xfd, 0xf3, 0xfc, 0xc1, 0xfd, 0xad, 0x00, 0x33, 0x02, 0x53, 0x03, 0x3a, 0x04, 0x63, 0xfc, 0x56, 0xf9, 0x7d, 0xfd, 0x13, 0x03, 0xe7, 0x03, 0x4a, 0x04, 0xe9, 0xff, 0x52, 0xfa, 0x35, 0xfc, 0x98, 0x00, 0xf7, 0x02, 0x7c, 0x01, 0x8c, 0xff, 0x87, 0x02, 0xb4, 0x01, 0xd5, 0xfb, 0xb3, 0xfc, 0x17, 0x00, 0x0b, 0x02, 0x52, 0x00, 0x41, 0xff, 0x22, 0x00, 0xb7, 0x02, 0x13, 0x04, 0x6d, 0xfd, 0x5e, 0xfa, 0xf3, 0xfd, 0x11, 0x02, 0xef, 0x03, 0xe7, 0x01, 0x28, 0xfe, 0x77, 0xfd, 0x57, 0xff, 0xac, 0x00, 0x0a, 0x00, 0x29, 0xff, 0xd7, 0x00, 0x0f, 0x01, 0x94, 0x04, 0xfd, 0x01, 0x46, 0xf9, 0xf5, 0xf9, 0x3e, 0x00, 0x06, 0x05, 0x63, 0x02, 0x6d, 0x02, 0x75, 0x02, 0x2d, 0xfb, 0xf5, 0xf9, 0x79, 0xfe, 0x19, 0x03, 0x6b, 0x03, 0x7e, 0x01, 0x21, 0x03, 0xee, 0xfe, 0xa6, 0xf9, 0xb3, 0xfc, 0x47, 0x02, 0x63, 0x04, 0x33, 0x01, 0xa3, 0xfd, 0xc8, 0xff, 0x27, 0x03, 0x0f, 0xff, 0x51, 0xfb, 0xa6, 0xfe, 0x2d, 0x03, 0x17, 0x05, 0xb9, 0x00, 0x09, 0xfb, 0xa7, 0xfc, 0xde, 0xff, 0x5a, 0x01, 0x4e, 0x01, 0xdf, 0x03, 0x39, 0x02, 0x7d, 0xfb, 0x02, 0xfb, 0x8c, 0xff, 0x8e, 0x04, 0xaf, 0x05, 0xaf, 0xfe, 0xbd, 0xfa, 0x0f, 0xfd, 0x9d, 0x00, 0x77, 0x02, 0x95, 0x03, 0x85, 0x01, 0xcb, 0xfc, 0xe5, 0xfc, 0xe1, 0xff, 0xa0, 0x01, 0x18, 0x01, 0x72, 0xff, 0xaf, 0xfe, 0xe9, 0xff, 0xa5, 0x02, 0xf9, 0x02, 0xd9, 0xfd, 0x57, 0xfc, 0x1b, 0xff, 0x73, 0x01, 0x63, 0x01, 0x52, 0x00, 0x97, 0xfe, 0x6a, 0xfe, 0x9e, 0x00, 0x45, 0x02, 0x66, 0x05, 0xf9, 0xfe, 0x9c, 0xf9, 0xf4, 0xfb, 0xbb, 0x00, 0xf1, 0x03, 0x0d, 0x02, 0xe6, 0xff, 0x4b, 0xff, 0x6d, 0x01, 0x6e, 0x00, 0xf5, 0xfc, 0x0c, 0xfe, 0x5a, 0x01, 0x1d, 0x02, 0xe1, 0x02, 0xbc, 0x00, 0x81, 0xf9, 0xa5, 0xfc, 0x93, 0x02, 0x09, 0x08, 0x03, 0x03, 0x11, 0xf8, 0x65, 0xf9, 0x16, 0x00, 0x6c, 0x04, 0x1b, 0x03, 0xde, 0xff, 0x42, 0x01, 0xa1, 0x02, 0x51, 0xfc, 0x71, 0xfb, 0x2a, 0xff, 0x7b, 0x02, 0x13, 0x03, 0x41, 0x00, 0x82, 0xfe, 0x51, 0xfe, 0x79, 0xfe, 0xd7, 0x00, 0xff, 0x01, 0x7e, 0x01, 0x46, 0x01, 0x0c, 0xff, 0xf5, 0xfc, 0x07, 0x00, 0xf0, 0x05, 0x48, 0xff, 0xc0, 0xf9, 0x5f, 0xfc, 0xa0, 0x01, 0xc3, 0x03, 0x17, 0x03, 0x3d, 0x03, 0x1f, 0xfd, 0x3d, 0xfa, 0xf9, 0xfd, 0xfd, 0x01, 0xdb, 0x02, 0x74, 0x00, 0x2f, 0x02, 0x9b, 0x02, 0xfd, 0xfb, 0x7a, 0xfb, 0xa4, 0xff, 0x5f, 0x02, 0xac, 0x01, 0x9c, 0xff, 0xe4, 0xfe, 0xbc, 0x00, 0x2b, 0x01, 0xf0, 0xfe, 0x57, 0xff, 0x9b, 0x03, 0xd9, 0x00, 0xf9, 0xfb, 0x45, 0xfd, 0x38, 0x00, 0x01, 0x02, 0x25, 0x02, 0xcb, 0x00, 0x79, 0xfe, 0x9a, 0xfe, 0xd9, 0xfe, 0xaa, 0xff, 0xbe, 0x00, 0x5b, 0x04, 0xe7, 0x02, 0x8a, 0xfb, 0x70, 0xfa, 0x2c, 0xff, 0x1f, 0x04, 0x23, 0x06, 0xed, 0xff, 0xe5, 0xf9, 0xb6, 0xfb, 0x90, 0x01, 0x83, 0x03, 0x75, 0x02, 0xa8, 0x04, 0x89, 0xfd, 0x69, 0xf8, 0x3b, 0xfc, 0xf9, 0x02, 0xaa, 0x04, 0x15, 0x01, 0x3b, 0x00, 0x03, 0x02, 0x71, 0xfc, 0x84, 0xfb, 0xdd, 0x00, 0x67, 0x03, 0xfa, 0x00, 0x20, 0x05, 0xb5, 0x00, 0x3f, 0xf5, 0x80, 0xfa, 0xdf, 0x04, 0x66, 0x05, 0xeb, 0x02, 0xa7, 0x03, 0xa9, 0xfa, 0xfc, 0xf7, 0x9f, 0xfe, 0xf7, 0x04, 0x83, 0x03, 0x42, 0x01, 0xef, 0x03, 0xf9, 0xfc, 0x55, 0xf8, 0x45, 0xfd, 0x93, 0x03, 0x46, 0x04, 0xca, 0x00, 0xa3, 0x03, 0x8f, 0xff, 0x45, 0xf9, 0x37, 0xfc, 0x94, 0x01, 0xbb, 0x03, 0x91, 0x01, 0xc6, 0xff, 0x98, 0xff, 0x43, 0x00, 0x01, 0x00, 0x2a, 0xff, 0x03, 0xff, 0xc3, 0xff, 0x68, 0x00, 0x79, 0x00, 0x34, 0x00, 0xf6, 0xff, 0xfb, 0xff, 0x0a, 0x00, 0xdb, 0xff, 0xb0, 0xff, 0xdc, 0xfe, 0xa7, 0xff, 0xfe, 0x00, 0x5b, 0x04, 0xf7, 0x01, 0xb5, 0xfa, 0x98, 0xfa, 0x65, 0x00, 0x9f, 0x04, 0x2f, 0x06, 0x20, 0xff, 0xcc, 0xf7, 0xfb, 0xfc, 0x81, 0x03, 0xdf, 0x04, 0xcb, 0x04, 0x1f, 0xfd, 0xaa, 0xf8, 0x1b, 0xfd, 0x87, 0x02, 0x63, 0x04, 0x49, 0x02, 0x63, 0xfe, 0x15, 0xfd, 0x07, 0x02, 0xdb, 0x02, 0x73, 0xfd, 0xa7, 0xfc, 0xbd, 0xfe, 0xaa, 0x00, 0x41, 0x02, 0x4f, 0x01, 0xad, 0x03, 0x4f, 0x01, 0x76, 0xfa, 0x18, 0xfb, 0x95, 0xff, 0x8d, 0x03, 0xb7, 0x02, 0x8e, 0x00, 0x5c, 0xff, 0x1b, 0xff, 0xde, 0xff, 0x18, 0x01, 0xd9, 0x02, 0xaf, 0x00, 0x05, 0xfb, 0x2d, 0xfc, 0xe3, 0x00, 0x89, 0x02, 0x93, 0x01, 0xe3, 0xff, 0xc9, 0xfe, 0x88, 0xfe, 0x6a, 0x00, 0x99, 0x01, 0xf7, 0x02, 0xc0, 0xff, 0xc0, 0xfb, 0x2d, 0xfe, 0x47, 0x04, 0x1f, 0x05, 0x8b, 0xfc, 0x65, 0xfa, 0x67, 0xfe, 0x11, 0x02, 0x25, 0x03, 0x37, 0x00, 0x16, 0xfe, 0x96, 0xff, 0x44, 0x05, 0x03, 0x02, 0x58, 0xfa, 0x71, 0xfb, 0x42, 0xff, 0x3b, 0x03, 0x49, 0x02, 0xcf, 0x01, 0xd5, 0x03, 0x43, 0xfd, 0x75, 0xf8, 0xc5, 0xfd, 0xb5, 0x03, 0x32, 0x07, 0xf7, 0x01, 0x85, 0xfa, 0xa5, 0xfa, 0x02, 0xff, 0x5d, 0x03, 0xfd, 0x02, 0x4c, 0x00, 0x57, 0x01, 0x51, 0x01, 0x15, 0xfb, 0x5b, 0xfc, 0x15, 0x02, 0x11, 0x03, 0x19, 0x02, 0x99, 0x02, 0x69, 0xfd, 0x0a, 0xf9, 0xd2, 0xfe, 0xa1, 0x03, 0xef, 0x05, 0x51, 0x02, 0x7d, 0xfa, 0x8a, 0xfa, 0x14, 0xff, 0xc9, 0x02, 0x23, 0x03, 0x6d, 0x00, 0x82, 0x01, 0xd9, 0x03, 0xe1, 0xfb, 0x59, 0xf9, 0x42, 0xfe, 0xcc, 0x04, 0xf3, 0x05, 0x06, 0xff, 0x25, 0xfb, 0x6f, 0xfc, 0xc9, 0x01, 0xf1, 0x02, 0x35, 0x03, 0x65, 0x03, 0xbd, 0xfb, 0x29, 0xf9, 0xc3, 0xfe, 0xab, 0x03, 0x59, 0x03, 0x1f, 0x00, 0xdb, 0x02, 0x2e, 0x01, 0x45, 0xfa, 0x7a, 0xfb, 0x10, 0x01, 0x16, 0x04, 0x90, 0x01, 0xed, 0xfe, 0x55, 0xfd, 0xcd, 0xfe, 0xed, 0x01, 0xa3, 0x01, 0x5d, 0x02, 0x4d, 0x03, 0x56, 0xfb, 0xe1, 0xf8, 0x44, 0x00, 0x7a, 0x04, 0xcf, 0x03, 0x14, 0x00, 0x91, 0xfc, 0xe9, 0xfd, 0xe7, 0x02, 0x7b, 0x05, 0x8b, 0xfd, 0xaa, 0xf9, 0x21, 0xfe, 0x2b, 0x02, 0xc3, 0x02, 0x9e, 0x00, 0x7d, 0xff, 0x4c, 0x01, 0x86, 0xff, 0x39, 0xfe, 0xc9, 0xfe, 0x9c, 0xff, 0xcd, 0x00, 0x61, 0x02, 0x7f, 0x03, 0x7e, 0xfe, 0xaa, 0xfb, 0x0c, 0xfe, 0x0a, 0x01, 0xad, 0x02, 0xcc, 0x01, 0x3c, 0xff, 0x24, 0xfe, 0x29, 0xff, 0x47, 0x00, 0xf5, 0x00, 0xaa, 0x00, 0x60, 0xff, 0x75, 0xfe, 0x13, 0x01, 0x13, 0x03, 0x65, 0xff, 0x71, 0xfd, 0xcf, 0xfe, 0xa3, 0x00, 0xad, 0x00, 0xfa, 0xfe, 0xbf, 0xff, 0x30, 0x01, 0x52, 0x01, 0x67, 0x00, 0x7d, 0xff, 0xd5, 0xfe, 0x10, 0x00, 0x13, 0x00, 0xb5, 0x02, 0x1e, 0x06, 0x15, 0xfb, 0x50, 0xf6, 0xf7, 0xfd, 0xb8, 0x04, 0x3e, 0x06, 0xc1, 0x02, 0x6b, 0xfc, 0x66, 0xfb, 0x16, 0xfe, 0xc0, 0x01, 0xfd, 0x02, 0x18, 0x01, 0x8f, 0xff, 0xa5, 0xff, 0xfb, 0x00, 0x04, 0x01, 0x39, 0xff, 0x59, 0xfd, 0x5b, 0xfd, 0x11, 0x00, 0x7b, 0x03, 0x74, 0x05, 0x7f, 0xfe, 0x61, 0xfa, 0x3d, 0xfd, 0x04, 0x01, 0x9f, 0x02, 0x3d, 0x03, 0x4b, 0x01, 0x17, 0xfd, 0x39, 0xfd, 0x7a, 0xff, 0x6c, 0x01, 0x70, 0x01, 0x92, 0xff, 0x56, 0xff, 0xa3, 0x02, 0xf2, 0x00, 0x21, 0xfd, 0x22, 0xfe, 0xd1, 0xff, 0xf9, 0xff, 0x6e, 0x00, 0x7f, 0x01, 0xa1, 0x00, 0xae, 0x01, 0xca, 0x01, 0x69, 0xfb, 0x71, 0xfc, 0xfc, 0x01, 0x0b, 0x03, 0x04, 0x06, 0x3f, 0xff, 0x41, 0xf6, 0xa8, 0xfb, 0x8f, 0x03, 0xaf, 0x07, 0x37, 0x03, 0x35, 0xfb, 0xf0, 0xf9, 0x1d, 0xff, 0x75, 0x03, 0xbf, 0x04, 0x1f, 0x03, 0xea, 0xfb, 0x66, 0xfa, 0x5d, 0xfe, 0x05, 0x03, 0x0b, 0x03, 0x7d, 0x03, 0xa1, 0x00, 0xe5, 0xfa, 0x0b, 0xfc, 0x4c, 0x00, 0xc5, 0x02, 0x6a, 0x01, 0x5c, 0x00, 0x29, 0x03, 0xc0, 0xff, 0x5a, 0xfb, 0x61, 0xfd, 0x8b, 0x00, 0x41, 0x02, 0x91, 0x02, 0xda, 0x00, 0xe5, 0xfd, 0x3c, 0xfe, 0xcc, 0xfe, 0x11, 0x00, 0x2a, 0x01, 0xb6, 0x04, 0xc4, 0x01, 0x4e, 0xfb, 0x1c, 0xfb, 0x44, 0xff, 0xa7, 0x03, 0xbf, 0x02, 0x78, 0x04, 0xba, 0xfe, 0x1d, 0xf8, 0xcf, 0xfc, 0xa9, 0x03, 0x00, 0x04, 0x13, 0x01, 0x21, 0x03, 0xfb, 0xfd, 0x5a, 0xf8, 0x31, 0xfe, 0x43, 0x04, 0xaf, 0x03, 0xbf, 0x03, 0x4a, 0xff, 0x5c, 0xf9, 0xe6, 0xfb, 0xbd, 0x01, 0x53, 0x03, 0xc3, 0x04, 0xb8, 0x01, 0x1a, 0xfb, 0x41, 0xfb, 0xd3, 0xfe, 0xcf, 0x02, 0x13, 0x03, 0x17, 0x00, 0xf9, 0x02, 0x3b, 0x02, 0x65, 0xf9, 0xfe, 0xf9, 0x48, 0x01, 0xeb, 0x04, 0x01, 0x02, 0xbf, 0xff, 0xd1, 0x00, 0xcc, 0xfe, 0xdd, 0xfc, 0x98, 0xff, 0xf7, 0x01, 0x46, 0x01, 0xfc, 0xff, 0x38, 0xff, 0x29, 0x00, 0xd8, 0xff, 0xd1, 0x02, 0x07, 0x05, 0x3d, 0xfa, 0x89, 0xf7, 0xeb, 0xfe, 0xaa, 0x04, 0x33, 0x05, 0xc9, 0x01, 0x49, 0xfd, 0xcb, 0xfc, 0x3f, 0xff, 0xa9, 0x00, 0xa3, 0x00, 0xdd, 0x00, 0xb9, 0x03, 0xca, 0x00, 0x31, 0xfb, 0x23, 0xfc, 0x97, 0x00, 0x03, 0x05, 0x02, 0x04, 0x3d, 0xfd, 0xd0, 0xfb, 0xfd, 0xfd, 0xd9, 0x00, 0xd2, 0x01, 0xf5, 0x02, 0xc1, 0x03, 0x3d, 0xfd, 0xdd, 0xfa, 0x73, 0xfd, 0x42, 0x01, 0x51, 0x03, 0x34, 0x01, 0xa8, 0x01, 0xf7, 0x02, 0x81, 0xfb, 0x71, 0xf9, 0x8f, 0x00, 0x3b, 0x04, 0x83, 0x03, 0x1d, 0x03, 0x07, 0xfd, 0x89, 0xf9, 0x11, 0xff, 0x95, 0x03, 0x13, 0x02, 0x95, 0xff, 0xc1, 0xfe, 0x67, 0xfe, 0xb4, 0xff, 0x4c, 0x01, 0xbf, 0x03, 0x17, 0x02, 0x71, 0xfc, 0x47, 0xfc, 0x30, 0xff, 0xda, 0x00, 0xdf, 0x00, 0x48, 0x01, 0x9e, 0x00, 0x05, 0x03, 0xb5, 0x01, 0x81, 0xfa, 0xfa, 0xfa, 0x2b, 0x01, 0x1f, 0x04, 0x56, 0x04, 0x55, 0x00, 0x1d, 0xfb, 0xa9, 0xfc, 0x64, 0x00, 0xc1, 0x02, 0x11, 0x02, 0xde, 0xff, 0x19, 0xfe, 0x27, 0xfe, 0xab, 0xff, 0x61, 0x03, 0x5f, 0x03, 0xc3, 0xfd, 0x83, 0xfc, 0x03, 0xff, 0xdd, 0x00, 0x92, 0x00, 0xf6, 0xff, 0x65, 0x00, 0x86, 0x00, 0xec, 0x00, 0xeb, 0x04, 0xe4, 0xfe, 0xce, 0xf7, 0xa5, 0xfc, 0x83, 0x03, 0x5a, 0x05, 0x7c, 0x04, 0x19, 0xfd, 0xcc, 0xf9, 0x43, 0xfd, 0x09, 0x02, 0x4f, 0x03, 0xbf, 0x03, 0xec, 0x00, 0xc4, 0xfb, 0xad, 0xfc, 0xcc, 0xff, 0xb0, 0x00, 0x57, 0x01, 0xc1, 0x00, 0x1f, 0x03, 0x11, 0x03, 0x4d, 0xfb, 0x31, 0xfa, 0xed, 0xfe, 0x1f, 0x04, 0x8b, 0x02, 0xfd, 0x01, 0xc9, 0x02, 0x75, 0xfb, 0x59, 0xf9, 0x20, 0x00, 0x2f, 0x04, 0xa3, 0x03, 0x85, 0x03, 0x43, 0xfd, 0xcd, 0xf9, 0x65, 0xfd, 0x8b, 0x01, 0xbf, 0x03, 0xec, 0x00, 0x4f, 0x02, 0xa7, 0x02, 0x3c, 0xfb, 0x20, 0xfa, 0x74, 0x00, 0x44, 0x05, 0xdb, 0x01, 0x89, 0xfd, 0xa1, 0xfc, 0x00, 0x00, 0xa9, 0x02, 0x49, 0x01, 0xae, 0x01, 0x71, 0x02, 0x4d, 0xfb, 0x65, 0xfa, 0x5d, 0x01, 0xdd, 0x03, 0xb7, 0x02, 0x05, 0x03, 0x79, 0xfd, 0xdd, 0xf8, 0x1c, 0xfe, 0x85, 0x03, 0x4f, 0x05, 0xe7, 0x01, 0x05, 0xfc, 0xe5, 0xfb, 0x57, 0xff, 0x2f, 0x02, 0xb2, 0x01, 0x25, 0x01, 0x11, 0x03, 0xa8, 0xfe, 0x7a, 0xfb, 0xf9, 0xfd, 0xdd, 0x00, 0x25, 0x02, 0x7b, 0x02, 0x3a, 0x00, 0x0b, 0xfd, 0x6d, 0xfe, 0x9f, 0x02, 0xfa, 0x01, 0x70, 0xfe, 0x5a, 0xfe, 0x27, 0xff, 0x93, 0xff, 0x5e, 0x00, 0xb8, 0x01, 0x86, 0x00, 0x8d, 0x03, 0xb4, 0x01, 0x36, 0xfa, 0xc1, 0xfa, 0x5f, 0x00, 0xcb, 0x03, 0x18, 0x04, 0x39, 0x02, 0x4f, 0xfc, 0xe1, 0xfb, 0x5a, 0xfe, 0x78, 0x01, 0x77, 0x02, 0x57, 0x04, 0xb6, 0x00, 0xc8, 0xfa, 0xa9, 0xfb, 0xaf, 0x00, 0xa7, 0x03, 0x21, 0x02, 0x59, 0x03, 0x24, 0xff, 0x9d, 0xf9, 0xb5, 0xfc, 0x03, 0x02, 0xb2, 0x04, 0x0c, 0x04, 0xaf, 0xfd, 0x09, 0xfb, 0x67, 0xfd, 0x4f, 0x01, 0xf3, 0x02, 0x2d, 0x02, 0xcf, 0x02, 0x54, 0xfe, 0x59, 0xfa, 0x03, 0xfe, 0x9f, 0x02, 0x7f, 0x04, 0xde, 0x01, 0xbf, 0xfc, 0x89, 0xfc, 0x89, 0xff, 0xb1, 0x01, 0xa3, 0x01, 0xa6, 0x00, 0x75, 0xff, 0xfa, 0xfe, 0x86, 0xff, 0x00, 0x00, 0x9c, 0xff, 0xc8, 0xff, 0x60, 0x01, 0x45, 0x03, 0x5e, 0x00, 0x85, 0xfc, 0x81, 0xfd, 0x28, 0x00, 0x8d, 0x01, 0x03, 0x01, 0x1f, 0x00, 0xb1, 0xff, 0xa8, 0xff, 0xb7, 0xff, 0x50, 0xff, 0x4d, 0xff, 0xbc, 0x00, 0x5b, 0x01, 0xb2, 0x00, 0xbf, 0xff, 0x1b, 0x02, 0x0c, 0x01, 0xd9, 0xfb, 0xb7, 0xfc, 0x58, 0x00, 0x67, 0x02, 0xbd, 0x01, 0x28, 0x00, 0x0f, 0xff, 0x42, 0xff, 0x78, 0xff, 0x63, 0xff, 0x0a, 0x00, 0x95, 0x03, 0xf3, 0x01, 0x83, 0xfc, 0x7a, 0xfb, 0x6b, 0x00, 0xd5, 0x02, 0x34, 0x04, 0xeb, 0x02, 0xf1, 0xfa, 0x1e, 0xfa, 0xeb, 0xfe, 0x10, 0x04, 0x87, 0x02, 0x09, 0x02, 0xa1, 0x02, 0x94, 0xfb, 0xd1, 0xf9, 0xec, 0xff, 0x13, 0x04, 0x71, 0x02, 0xc2, 0xff, 0xf8, 0xff, 0x45, 0x03, 0x06, 0xff, 0x55, 0xfa, 0x95, 0xfd, 0xf7, 0x01, 0x47, 0x03, 0xfd, 0x00, 0xea, 0xfe, 0x70, 0xfe, 0x91, 0xfe, 0x94, 0x00, 0x76, 0x01, 0x3f, 0x03, 0x3d, 0x02, 0xf5, 0xfb, 0x6e, 0xfb, 0x5e, 0x00, 0x1b, 0x03, 0x21, 0x01, 0x14, 0xff, 0x54, 0xfe, 0x87, 0xff, 0xaf, 0x01, 0x2d, 0x03, 0xff, 0xff, 0xb9, 0xfc, 0x24, 0xfe, 0xbf, 0xff, 0xa3, 0x00, 0xaa, 0x00, 0x87, 0x02, 0x6f, 0x03, 0x53, 0xfd, 0x31, 0xfb, 0xaf, 0xfd, 0x87, 0x02, 0x9f, 0x02, 0x93, 0x02, 0x3d, 0x03, 0xb9, 0xfb, 0xc0, 0xf9, 0xc0, 0xfe, 0x27, 0x04, 0x6b, 0x02, 0x75, 0x02, 0xa3, 0x02, 0x24, 0xfb, 0x0d, 0xfa, 0xab, 0xff, 0x8f, 0x03, 0x9d, 0x02, 0xde, 0xff, 0x11, 0x02, 0x27, 0x02, 0x45, 0xfb, 0xec, 0xfa, 0x1a, 0x00, 0xad, 0x03, 0x23, 0x04, 0x86, 0x00, 0x65, 0xfc, 0x53, 0xfd, 0x25, 0x00, 0x2b, 0x02, 0x28, 0x01, 0x95, 0xff, 0x9d, 0xfe, 0xc1, 0xfe, 0x67, 0x00, 0xfd, 0x01, 0x9b, 0x03, 0x87, 0xff, 0xe8, 0xfa, 0xc5, 0xfc, 0xd9, 0x01, 0xcd, 0x03, 0x1f, 0x04, 0x0b, 0xff, 0xfd, 0xfa, 0x1f, 0xfd, 0x00, 0x00, 0x6d, 0x02, 0x0f, 0x02, 0xf3, 0x03, 0xc2, 0xff, 0x0d, 0xfb, 0xb9, 0xfc, 0xd7, 0xff, 0x97, 0x02, 0x03, 0x02, 0xa7, 0x00, 0xd1, 0x03, 0x0b, 0xff, 0x22, 0xf9, 0xad, 0xfc, 0x2f, 0x03, 0x9b, 0x03, 0x5b, 0x02, 0x9b, 0x02, 0x25, 0xfc, 0xaa, 0xf9, 0x2d, 0xff, 0xb5, 0x03, 0xab, 0x03, 0x0a, 0x04, 0x61, 0xfd, 0xe6, 0xf9, 0x31, 0xfd, 0x41, 0x02, 0x45, 0x03, 0x29, 0x03, 0xd0, 0x01, 0x05, 0xfc, 0x9c, 0xfb, 0x42, 0xff, 0x69, 0x02, 0x00, 0x04, 0x27, 0x01, 0x21, 0xfd, 0x47, 0xfd, 0x91, 0xfe, 0x52, 0x01, 0x23, 0x02, 0x57, 0x01, 0xb9, 0x03, 0x7b, 0xfe, 0x95, 0xf8, 0x69, 0xfe, 0x75, 0x03, 0x54, 0x05, 0x33, 0x03, 0xad, 0xfa, 0x9e, 0xf9, 0xff, 0xff, 0x4b, 0x04, 0x63, 0x02, 0xd9, 0x02, 0x7c, 0x00, 0xe9, 0xf9, 0xed, 0xfb, 0x75, 0x01, 0xf1, 0x03, 0xf8, 0x00, 0x3c, 0x01, 0xf5, 0x02, 0x79, 0xfc, 0xc4, 0xfa, 0x2e, 0xfe, 0x7f, 0x02, 0x13, 0x03, 0xd9, 0x00, 0x8a, 0xff, 0x47, 0x00, 0x80, 0xff, 0x05, 0xff, 0xce, 0xff, 0x8d, 0x03, 0x1f, 0x03, 0xc6, 0xfa, 0x99, 0xfa, 0xe0, 0xff, 0x77, 0x03, 0xb7, 0x02, 0x11, 0x00, 0xf4, 0xfe, 0x0c, 0xff, 0xa8, 0xff, 0x20, 0x00, 0x20, 0x00, 0x80, 0x00, 0xf7, 0x00, 0xbf, 0xff, 0x05, 0xff, 0xf0, 0xfe, 0x2a, 0xff, 0xdd, 0x00, 0x73, 0x01, 0x7f, 0x03, 0xb8, 0x00, 0x58, 0xfb, 0x33, 0xfd, 0xb6, 0x00, 0xe5, 0x01, 0xa1, 0x00, 0x63, 0xff, 0x9f, 0xff, 0xa6, 0x01, 0x5d, 0x01, 0x81, 0xfe, 0x15, 0xfe, 0x03, 0xff, 0xed, 0xff, 0x3d, 0x01, 0x57, 0x01, 0x5f, 0x02, 0xb0, 0xff, 0x35, 0xfc, 0x73, 0xfe, 0x4d, 0x03, 0x30, 0x04, 0x09, 0xfd, 0x04, 0xfb, 0x52, 0x01, 0x4d, 0x03, 0xf0, 0xfe, 0x43, 0xfd, 0x76, 0x01, 0xab, 0x04, 0x57, 0xff, 0x35, 0xfc, 0xd3, 0xfd, 0xf2, 0xff, 0xbd, 0x02, 0x99, 0x03, 0x2d, 0xff, 0xad, 0xfc, 0xa9, 0xfd, 0x92, 0x00, 0x47, 0x02, 0xdf, 0x01, 0x16, 0x00, 0x72, 0xfe, 0xa5, 0xff, 0x53, 0x03, 0x05, 0x00, 0xaa, 0xfb, 0x8f, 0xfd, 0x0d, 0x00, 0x41, 0x02, 0x84, 0x01, 0x5d, 0x02, 0x35, 0x02, 0xc1, 0xfc, 0xf0, 0xfb, 0xdb, 0xfe, 0x13, 0x01, 0x11, 0x02, 0x16, 0x01, 0x9b, 0x02, 0xfe, 0x00, 0xe1, 0xfb, 0x2f, 0xfc, 0xcd, 0x00, 0xf7, 0x03, 0xfd, 0x00, 0x42, 0xfe, 0xcd, 0xfd, 0x5f, 0xff, 0x5a, 0x01, 0x5b, 0x01, 0x12, 0x01, 0x9f, 0x03, 0x99, 0xfe, 0x6a, 0xfa, 0xb9, 0xfc, 0xed, 0x01, 0x27, 0x03, 0x3b, 0x03, 0x8d, 0x02, 0x0f, 0xfc, 0x25, 0xfb, 0x52, 0xfe, 0xa3, 0x02, 0xd5, 0x02, 0x0c, 0x01, 0x11, 0x03, 0xd3, 0xfe, 0xa4, 0xf9, 0x79, 0xfd, 0x0f, 0x03, 0x7b, 0x03, 0x0a, 0x04, 0x0e, 0xff, 0x71, 0xfa, 0x63, 0xfc, 0x0c, 0x01, 0x17, 0x03, 0x17, 0x03, 0x11, 0x03, 0x65, 0xfc, 0x01, 0xfa, 0xcb, 0xff, 0x3d, 0x03, 0x63, 0x04, 0xb7, 0x02, 0xa1, 0xfb, 0x91, 0xfa, 0xbb, 0xfe, 0x29, 0x03, 0xc3, 0x02, 0x61, 0x00, 0x63, 0xff, 0xb2, 0x00, 0x09, 0x01, 0x31, 0xfe, 0x77, 0xfd, 0x1f, 0x00, 0x45, 0x02, 0x5b, 0x03, 0xc9, 0xff, 0x75, 0xfb, 0x4b, 0xfd, 0x46, 0x00, 0x29, 0x03, 0x11, 0x03, 0x0b, 0xff, 0xb5, 0xfd, 0x34, 0xfe, 0xdd, 0xff, 0x52, 0x01, 0x2d, 0x02, 0xe3, 0x03, 0x4f, 0xfe, 0x06, 0xfb, 0x3d, 0xfd, 0x61, 0x01, 0xbd, 0x02, 0xf5, 0x02, 0x1b, 0x02, 0xc5, 0xfc, 0xdc, 0xfb, 0x7b, 0xff, 0xe3, 0x02, 0xa8, 0x01, 0x48, 0xff, 0x73, 0xfe, 0xde, 0xfe, 0xe7, 0x01, 0xff, 0x02, 0xe1, 0xfe, 0x55, 0xfd, 0x18, 0xfe, 0x7f, 0x00, 0xb5, 0x01, 0x29, 0x02, 0x4d, 0x03, 0x0f, 0xfe, 0x39, 0xfb, 0x8b, 0xfd, 0x07, 0x01, 0xed, 0x02, 0x48, 0x01, 0x7b, 0x02, 0x1c, 0x01, 0xb1, 0xfa, 0x8d, 0xfb, 0xcc, 0x01, 0xd3, 0x03, 0xcf, 0x04, 0x71, 0xff, 0x2d, 0xfa, 0x4f, 0xfc, 0xfb, 0x00, 0x41, 0x03, 0xd5, 0x02, 0x15, 0x02, 0x61, 0xfc, 0xae, 0xfb, 0x74, 0x00, 0xcf, 0x02, 0x69, 0x01, 0x00, 0x00, 0x16, 0x04, 0x08, 0xff, 0xc1, 0xf9, 0xfb, 0xfc, 0x40, 0x01, 0xeb, 0x02, 0xab, 0x02, 0xeb, 0x01, 0xd7, 0xfd, 0xf1, 0xfc, 0xf7, 0xfe, 0xf7, 0x00, 0x03, 0x02, 0x67, 0x01, 0x39, 0xff, 0x70, 0xfe, 0x51, 0xff, 0x4c, 0x00, 0xcd, 0x00, 0x9e, 0x00, 0xe7, 0xff, 0x78, 0xff, 0xb3, 0xff, 0x0d, 0x00, 0x1c, 0x00, 0x01, 0x00, 0x20, 0x00, 0xf9, 0xff, 0xab, 0xff, 0xae, 0xff, 0x7c, 0x00, 0xb4, 0x01, 0x0b, 0x00, 0x3d, 0xfe, 0x8b, 0xfe, 0x7a, 0xff, 0xf1, 0x01, 0xcf, 0x02, 0x4a, 0xff, 0xbb, 0xfd, 0x37, 0xfe, 0x98, 0xff, 0x45, 0x01, 0xa8, 0x01, 0x86, 0x00, 0xbd, 0x02, 0xf8, 0xff, 0xf9, 0xf9, 0x93, 0xfd, 0x3b, 0x03, 0x6f, 0x02, 0x3b, 0x02, 0xf7, 0x02, 0xa0, 0xfb, 0xe4, 0xf9, 0x1d, 0xff, 0x5d, 0x03, 0xf7, 0x03, 0x75, 0x02, 0xa3, 0xfd, 0x2b, 0xfc, 0xc6, 0xfe, 0x3c, 0x01, 0x55, 0x02, 0x60, 0x01, 0x0f, 0xff, 0x82, 0xfe, 0xd6, 0xfe, 0xb4, 0xff, 0xb3, 0x00, 0x89, 0x03, 0xa0, 0x01, 0xf5, 0xfc, 0x4f, 0xfc, 0x1e, 0xff, 0xd5, 0x01, 0xb9, 0x03, 0x27, 0x03, 0x2b, 0xfd, 0x21, 0xfb, 0xf7, 0xfd, 0x7b, 0x02, 0xdb, 0x02, 0x68, 0x00, 0x31, 0x00, 0xef, 0x00, 0xa9, 0xfd, 0xe5, 0xfd, 0xe0, 0x00, 0x91, 0x01, 0x85, 0x00, 0x92, 0x00, 0xc8, 0xff, 0x2a, 0xfe, 0x54, 0xff, 0xbb, 0x00, 0xfb, 0x00, 0x23, 0x00, 0xcf, 0xff, 0x9c, 0xff, 0x49, 0x00, 0xbc, 0xff, 0x43, 0x00, 0x3f, 0xff, 0xb8, 0x04, 0x53, 0x04, 0xc8, 0xf7, 0x40, 0xf8, 0xfb, 0xff, 0xb0, 0x05, 0x4d, 0x03, 0x7c, 0x00, 0x29, 0x02, 0x90, 0xfe, 0x3d, 0xfa, 0x85, 0xfe, 0x95, 0x02, 0x6b, 0x04, 0x13, 0x03, 0x7b, 0xfc, 0xc1, 0xfa, 0x90, 0xfe, 0x7b, 0x02, 0x07, 0x04, 0x19, 0x03, 0x1f, 0xfd, 0xed, 0xfa, 0xdc, 0xfe, 0xa7, 0x02, 0x0f, 0x05, 0xec, 0x00, 0x95, 0xfb, 0xed, 0xfb, 0x13, 0x00, 0x43, 0x03, 0xae, 0x01, 0x41, 0x00, 0x17, 0x00, 0xa9, 0xfe, 0xa6, 0xfe, 0x98, 0x00, 0xc8, 0x00, 0x23, 0x02, 0x23, 0x03, 0xb1, 0xfb, 0x8e, 0xf9, 0xce, 0x00, 0xfd, 0x03, 0x04, 0x04, 0xf9, 0x01, 0xc2, 0xfb, 0x09, 0xfb, 0xb4, 0xff, 0x1b, 0x02, 0x17, 0x02, 0x01, 0x00, 0x3f, 0x02, 0xa5, 0x02, 0x1f, 0xfc, 0x51, 0xfb, 0xc3, 0xfe, 0xe7, 0x02, 0x83, 0x02, 0xd3, 0x00, 0x49, 0x00, 0x7d, 0x00, 0xc0, 0xff, 0x25, 0xfd, 0xc5, 0xfd, 0xc2, 0x00, 0xa9, 0x02, 0x51, 0x02, 0x38, 0xff, 0x67, 0xfd, 0xee, 0xfe, 0xbe, 0x00, 0x13, 0x01, 0x2b, 0x00, 0x48, 0xff, 0xe8, 0xfe, 0x2d, 0x01, 0x3f, 0x03, 0x5c, 0xff, 0x43, 0xfd, 0x52, 0xfe, 0xb6, 0xff, 0x18, 0x01, 0x69, 0x01, 0xe5, 0x00, 0xb7, 0x02, 0xed, 0xff, 0xf5, 0xfa, 0x2b, 0xfd, 0xa6, 0x01, 0x95, 0x03, 0x0b, 0x03, 0xc1, 0xfe, 0x49, 0xfc, 0x61, 0xfe, 0x52, 0x00, 0xd9, 0x00, 0xf4, 0x00, 0x39, 0x01, 0xed, 0x02, 0xea, 0xfe, 0xe9, 0xfa, 0x4f, 0xfe, 0xa9, 0x02, 0x33, 0x02, 0x00, 0x01, 0x85, 0x03, 0xd3, 0xfd, 0xa4, 0xfa, 0x54, 0xfe, 0xa8, 0x01, 0xfd, 0x01, 0x83, 0x00, 0x41, 0x00, 0x4b, 0x01, 0x25, 0x00, 0xfb, 0xfd, 0xa3, 0xfe, 0x3d, 0x00, 0x21, 0x01, 0x59, 0x00, 0x12, 0xff, 0xb1, 0xff, 0x87, 0x02, 0xe0, 0x00, 0xdb, 0xfd, 0x46, 0xfe, 0xb3, 0xff, 0xec, 0x00, 0x63, 0x01, 0xda, 0x00, 0x50, 0xff, 0xf0, 0xfe, 0x93, 0xff, 0x43, 0x00, 0xea, 0xff, 0x68, 0xff, 0x13, 0x00, 0x82, 0x01, 0x0b, 0x03, 0x5d, 0xff, 0x83, 0xfc, 0x46, 0xfe, 0x59, 0x00, 0xbc, 0x00, 0xa6, 0x00, 0xec, 0x00, 0xa7, 0x02, 0x5c, 0x00, 0x63, 0xfc, 0x4d, 0xfd, 0xae, 0xff, 0x5b, 0x02, 0x4b, 0x01, 0xdf, 0x02, 0x63, 0x01, 0xe1, 0xfb, 0xad, 0xfb, 0x95, 0xff, 0xd7, 0x02, 0x37, 0x03, 0x2d, 0x03, 0x67, 0xfd, 0x72, 0xfb, 0xe9, 0xfd, 0xdc, 0x01, 0x6f, 0x02, 0xbd, 0x02, 0x91, 0x01, 0x7d, 0xfc, 0x35, 0xfc, 0xce, 0xff, 0x57, 0x03, 0x4e, 0x01, 0x36, 0xfe, 0x4e, 0xfe, 0x28, 0x01, 0x85, 0x03, 0xe4, 0xff, 0x0b, 0xfd, 0x5e, 0xfe, 0x82, 0x00, 0xf4, 0x00, 0x16, 0x00, 0x89, 0xff, 0x07, 0x01, 0x63, 0x02, 0x09, 0xff, 0x99, 0xfd, 0xe4, 0xfe, 0x11, 0x00, 0x77, 0x00, 0xe5, 0x00, 0xc4, 0x00, 0xf0, 0x01, 0x76, 0x01, 0xc5, 0xfc, 0x77, 0xfc, 0xe6, 0xff, 0x6d, 0x03, 0x3f, 0x02, 0x7f, 0xfe, 0xa5, 0xfd, 0x9f, 0xfe, 0xad, 0x00, 0xb7, 0x01, 0x06, 0x01, 0x09, 0x03, 0xb6, 0xff, 0x96, 0xfa, 0x8b, 0xfd, 0x3d, 0x02, 0x08, 0x05, 0xc1, 0x00, 0x77, 0xfc, 0x3f, 0xfd, 0xdb, 0xff, 0x8b, 0x01, 0x75, 0x02, 0x81, 0x01, 0x42, 0xfe, 0xc9, 0xfd, 0x5c, 0xff, 0xca, 0x00, 0x57, 0x01, 0xb8, 0x00, 0x78, 0xff, 0x24, 0xff, 0x9e, 0xff, 0x28, 0x00, 0x7a, 0x00, 0x6d, 0x00, 0xf5, 0xff, 0x90, 0xff, 0x84, 0xff, 0x14, 0xff, 0x0b, 0x00, 0xee, 0x00, 0xbd, 0x02, 0xee, 0x01, 0xe5, 0xfc, 0x59, 0xfc, 0x91, 0xfe, 0x13, 0x02, 0x13, 0x02, 0x72, 0x01, 0x05, 0x03, 0x12, 0xfe, 0x45, 0xfa, 0x1c, 0xfe, 0x9f, 0x02, 0x67, 0x04, 0x1f, 0x03, 0xa3, 0xfc, 0xd1, 0xfa, 0xc1, 0xfe, 0x0d, 0x03, 0x39, 0x02, 0xd6, 0x00, 0x31, 0x03, 0xeb, 0xfd, 0xd4, 0xf9, 0x58, 0xfe, 0x47, 0x03, 0xd7, 0x02, 0x22, 0x00, 0x9f, 0xff, 0x99, 0x01, 0x6d, 0x00, 0x3b, 0xfc, 0x8f, 0xfd, 0x63, 0x01, 0xb1, 0x03, 0xf7, 0x01, 0x59, 0xfd, 0xf7, 0xfc, 0x9c, 0xff, 0x81, 0x01, 0x6f, 0x01, 0x50, 0x00, 0x69, 0xff, 0x80, 0xff, 0xda, 0xff, 0x34, 0x00, 0x0e, 0x00, 0xb9, 0xff, 0x1e, 0xff, 0x2f, 0x00, 0x9b, 0x00, 0x3f, 0x02, 0xff, 0x02, 0x27, 0xfd, 0x95, 0xfb, 0x52, 0xfe, 0xde, 0x01, 0x79, 0x02, 0xd1, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0x77, 0xff, 0x0f, 0xff, 0xda, 0xff, 0xc7, 0x00, 0x72, 0x01, 0x6a, 0x01, 0xba, 0xfe, 0xd7, 0xfc, 0x2a, 0xfe, 0x89, 0x00, 0xf6, 0x01, 0x83, 0x03, 0x92, 0x00, 0xd7, 0xfc, 0x0b, 0xfd, 0x9e, 0xff, 0xde, 0x01, 0xe3, 0x03, 0x81, 0x01, 0x5f, 0xfc, 0x0f, 0xfc, 0xf6, 0xff, 0xc7, 0x02, 0x29, 0x02, 0x2d, 0x03, 0x58, 0xfe, 0xc4, 0xfa, 0xa5, 0xfd, 0x41, 0x02, 0xd5, 0x02, 0x5d, 0x03, 0xfe, 0xff, 0xb5, 0xfb, 0x75, 0xfc, 0x79, 0x00, 0xa9, 0x02, 0x2f, 0x03, 0x81, 0x02, 0xab, 0xfc, 0x29, 0xfb, 0x08, 0xff, 0x03, 0x03, 0x3b, 0x02, 0x61, 0x00, 0x7d, 0x02, 0xab, 0xfe, 0x42, 0xfa, 0x2d, 0xff, 0x07, 0x03, 0x17, 0x05, 0xa4, 0x00, 0x55, 0xfa, 0xad, 0xfc, 0xea, 0x01, 0x3d, 0x03, 0xb5, 0x00, 0xd0, 0xfe, 0x24, 0xff, 0x89, 0x00, 0xfa, 0x00, 0xc4, 0xfe, 0x34, 0xfe, 0x9b, 0x00, 0xef, 0x03, 0xb3, 0x00, 0xbb, 0xfc, 0x3b, 0xfd, 0xad, 0xff, 0xa2, 0x01, 0xcf, 0x02, 0xcd, 0x02, 0xe1, 0xfd, 0xf6, 0xfb, 0x1c, 0xfe, 0xc6, 0x01, 0xa9, 0x02, 0x81, 0x03, 0x54, 0xff, 0xcd, 0xfa, 0xc1, 0xfd, 0xe5, 0x01, 0x9b, 0x04, 0x67, 0x01, 0xed, 0xfc, 0x99, 0xfc, 0x1a, 0xff, 0xf9, 0x01, 0x51, 0x02, 0x71, 0x03, 0x1d, 0xff, 0x18, 0xfb, 0x33, 0xfd, 0x8d, 0x01, 0x23, 0x03, 0xa1, 0x00, 0xaf, 0x01, 0x42, 0x01, 0x30, 0xfb, 0x4f, 0xfc, 0x13, 0x02, 0xbd, 0x02, 0xa7, 0x03, 0x0c, 0x01, 0x9d, 0xfa, 0xa9, 0xfb, 0x9a, 0x00, 0xa7, 0x03, 0x87, 0x01, 0xf4, 0x01, 0x27, 0x01, 0x39, 0xfc, 0x59, 0xfc, 0x27, 0xff, 0x9f, 0x02, 0xca, 0x01, 0x61, 0x02, 0xa6, 0x01, 0x4d, 0xfc, 0xb8, 0xfb, 0xb4, 0xff, 0xbb, 0x02, 0xbf, 0x02, 0xff, 0x02, 0xbf, 0xfd, 0x09, 0xfb, 0x22, 0xfe, 0xc3, 0x02, 0x3d, 0x02, 0xea, 0x01, 0x73, 0x02, 0x65, 0xfc, 0x00, 0xfb, 0x30, 0xff, 0x53, 0x03, 0x0d, 0x02, 0x03, 0x02, 0x67, 0x01, 0xb9, 0xfb, 0xf6, 0xfb, 0x6b, 0x00, 0xc7, 0x04, 0xb3, 0x02, 0x5b, 0xfd, 0x6d, 0xfc, 0x11, 0xff, 0x0d, 0x02, 0x69, 0x02, 0xcf, 0x01, 0x1a, 0xff, 0x2f, 0xfd, 0xa3, 0xfe, 0xc5, 0x00, 0x5b, 0x01, 0x82, 0x00, 0x6b, 0xff, 0xc6, 0xff, 0x47, 0x00, 0xed, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xf8, 0xff, 0x7d, 0x00, 0xaf, 0x00, 0x9f, 0xff, 0xd8, 0xfe, 0x51, 0xff, 0xe4, 0x01, 0xbe, 0x01, 0xcc, 0xfe, 0x42, 0xfe, 0x59, 0xff, 0x35, 0x00, 0x48, 0x01, 0x78, 0x01, 0x6b, 0xff, 0xa5, 0xfe, 0xbb, 0xfe, 0xd7, 0xff, 0x31, 0x01, 0x1b, 0x01, 0x62, 0x00, 0xf8, 0xff, 0x18, 0x01, 0x06, 0x01, 0x9d, 0xfd, 0x39, 0xfd, 0xdd, 0xff, 0x8a, 0x01, 0x51, 0x01, 0x23, 0x00, 0x7d, 0xff, 0x95, 0xff, 0x04, 0x00, 0x1c, 0x00, 0xa1, 0xff, 0x39, 0xff, 0x58, 0x00, 0xda, 0x00, 0xdc, 0x01, 0x19, 0x02, 0x6f, 0xfd, 0x29, 0xfc, 0x47, 0xff, 0x4b, 0x02, 0x57, 0x02, 0xaa, 0xff, 0x39, 0xfe, 0x22, 0x01, 0xe4, 0x01, 0x54, 0xfe, 0x04, 0xfe, 0x11, 0xff, 0x5e, 0x00, 0x25, 0x01, 0x15, 0x01, 0x0d, 0x00, 0xec, 0xff, 0x86, 0xff, 0x6d, 0x02, 0xdb, 0x02, 0xc1, 0xfb, 0x54, 0xfb, 0x7b, 0xff, 0xdf, 0x02, 0xea, 0x01, 0xea, 0xff, 0x27, 0xff, 0xe1, 0x02, 0x6f, 0x01, 0x2d, 0xfc, 0xd7, 0xfc, 0xab, 0xff, 0xeb, 0x01, 0xc6, 0x01, 0x3b, 0x00, 0x8b, 0x01, 0xa3, 0x01, 0xeb, 0xfc, 0xd1, 0xfc, 0x9e, 0xff, 0xaf, 0x01, 0x31, 0x02, 0xb9, 0x00, 0xdf, 0xfe, 0xc0, 0xfe, 0x8f, 0xff, 0x93, 0xff, 0x5b, 0x00, 0xc5, 0x00, 0xf9, 0x01, 0x27, 0x02, 0xa3, 0xfd, 0x69, 0xfc, 0x18, 0xff, 0xa3, 0x01, 0xbd, 0x02, 0x57, 0x01, 0x4e, 0xfe, 0xef, 0xfd, 0x83, 0xff, 0xbc, 0x00, 0x46, 0x01, 0x6e, 0x00, 0x77, 0xff, 0x5f, 0xff, 0xf0, 0xfe, 0xa2, 0xff, 0x1c, 0x01, 0xef, 0x00, 0xbb, 0x00, 0x13, 0x03, 0xbd, 0xfd, 0x7c, 0xfa, 0xec, 0xff, 0x1f, 0x03, 0x03, 0x02, 0x17, 0x00, 0xea, 0xfe, 0xd2, 0xfe, 0x00, 0x00, 0x98, 0x00, 0xc8, 0x00, 0x2b, 0x01, 0x2e, 0x00, 0xc3, 0xfd, 0x55, 0xfe, 0x34, 0x00, 0x21, 0x01, 0x55, 0x00, 0x8d, 0x02, 0x01, 0x02, 0x29, 0xfc, 0x4f, 0xfc, 0xc2, 0xff, 0xa5, 0x01, 0x51, 0x02, 0x5f, 0x02, 0xd5, 0xfe, 0x7f, 0xfd, 0x6c, 0xfe, 0x55, 0x00, 0x73, 0x01, 0x23, 0x02, 0xb8, 0x01, 0xf7, 0xfc, 0xcd, 0xfc, 0x5e, 0x00, 0x29, 0x03, 0xd1, 0x03, 0x21, 0xfe, 0xe8, 0xfb, 0x06, 0xfe, 0x06, 0x01, 0xf7, 0x01, 0x61, 0x02, 0x9f, 0x01, 0xa7, 0xfd, 0x31, 0xfd, 0xd8, 0xfe, 0xbc, 0x00, 0xc7, 0x01, 0xd3, 0x00, 0xc1, 0x02, 0x3a, 0x00, 0xb4, 0xfb, 0xe1, 0xfc, 0xe9, 0x00, 0xbd, 0x02, 0xcc, 0x01, 0x71, 0x02, 0x2b, 0xfe, 0x23, 0xfc, 0xbe, 0xfe, 0xe3, 0x00, 0x76, 0x01, 0x82, 0x01, 0x15, 0x02, 0xc4, 0xfe, 0x33, 0xfd, 0xb4, 0xfe, 0x61, 0x00, 0xfa, 0x00, 0x84, 0x01, 0xa3, 0x02, 0xff, 0xfe, 0xe5, 0xfc, 0xcd, 0xfe, 0x01, 0x01, 0x2b, 0x01, 0x08, 0x00, 0xd2, 0xfe, 0xd7, 0xff, 0xbb, 0x00, 0x35, 0x02, 0x57, 0x02, 0x57, 0xfd, 0x47, 0xfc, 0xa0, 0xfe, 0xd9, 0x01, 0x05, 0x02, 0x37, 0x01, 0x3d, 0x02, 0x79, 0xfe, 0x95, 0xfb, 0x61, 0xfe, 0x1d, 0x02, 0x81, 0x02, 0x2f, 0x03, 0x4a, 0xff, 0xdd, 0xfb, 0xe9, 0xfd, 0xf9, 0xff, 0x07, 0x02, 0x2b, 0x01, 0x39, 0x02, 0x54, 0x01, 0xab, 0xfc, 0x7d, 0xfc, 0xc6, 0xff, 0x5b, 0x02, 0x13, 0x02, 0x77, 0x02, 0x85, 0xfe, 0x61, 0xfb, 0xf4, 0xfe, 0x6f, 0x02, 0x46, 0x04, 0x67, 0x00, 0x47, 0xfc, 0x5d, 0xfd, 0x0d, 0x00, 0xc0, 0x01, 0x4d, 0x02, 0x48, 0x01, 0xa5, 0xfd, 0x7b, 0xfd, 0xf9, 0xff, 0x0f, 0x02, 0x77, 0x03, 0x66, 0xff, 0xaf, 0xfc, 0x60, 0xfe, 0x23, 0x00, 0xd3, 0x00, 0xc4, 0x00, 0x92, 0x00, 0x34, 0x00, 0x82, 0x00, 0x83, 0x00, 0xfd, 0xfe, 0x8b, 0xfe, 0x0b, 0x00, 0x03, 0x01, 0x96, 0x01, 0xb1, 0x01, 0x66, 0xfe, 0x6b, 0xfc, 0x15, 0xff, 0xed, 0x01, 0xc1, 0x01, 0xe9, 0xff, 0x20, 0xff, 0x54, 0xff, 0x3d, 0x00, 0xc5, 0x00, 0x35, 0x00, 0xb0, 0xff, 0xa7, 0xff, 0x72, 0xff, 0x78, 0xff, 0x6e, 0x00, 0x2a, 0x01, 0x97, 0x02, 0xe0, 0xff, 0xb4, 0xfb, 0x24, 0xfe, 0xaf, 0x01, 0x18, 0x04, 0x87, 0x01, 0xcb, 0xfc, 0x05, 0xfd, 0x77, 0xff, 0x7b, 0x01, 0x1d, 0x02, 0xf9, 0x01, 0xc4, 0xfe, 0xc9, 0xfd, 0x79, 0xfe, 0x16, 0x00, 0x2e, 0x01, 0x57, 0x02, 0x61, 0x02, 0xbb, 0xfd, 0x2b, 0xfc, 0xb8, 0xfe, 0x23, 0x02, 0xf6, 0x01, 0xa7, 0x00, 0x63, 0x02, 0x73, 0xfe, 0x01, 0xfb, 0x3c, 0xff, 0xdb, 0x02, 0xd0, 0x01, 0xfd, 0x02, 0xb9, 0xff, 0xe5, 0xfa, 0xef, 0xfc, 0x91, 0x01, 0xf9, 0x02, 0x63, 0x01, 0x65, 0x02, 0x9c, 0xfe, 0xe8, 0xfb, 0xb1, 0xfd, 0x87, 0x01, 0x5d, 0x02, 0xd9, 0x02, 0xfe, 0x00, 0x13, 0xfc, 0x95, 0xfc, 0x5f, 0x00, 0xe5, 0x02, 0x04, 0x01, 0x9c, 0x01, 0x3c, 0x01, 0xd8, 0xfb, 0x6b, 0xfc, 0xac, 0x01, 0x7f, 0x02, 0x25, 0x03, 0xfa, 0x00, 0x99, 0xfb, 0x33, 0xfc, 0x97, 0x00, 0xd5, 0x02, 0xe5, 0x01, 0x3d, 0x02, 0xb2, 0xfe, 0x13, 0xfc, 0x45, 0xfe, 0x24, 0x01, 0x89, 0x02, 0x01, 0x03, 0x0c, 0xff, 0xd1, 0xfc, 0x7f, 0xfe, 0x5e, 0x00, 0x36, 0x01, 0x75, 0x01, 0x70, 0x01, 0x0e, 0xff, 0x12, 0xfe, 0x35, 0xff, 0x83, 0x00, 0x13, 0x01, 0xa1, 0x00, 0xb9, 0xff, 0x5c, 0xff, 0xb3, 0xff, 0x14, 0x00, 0x50, 0x00, 0x43, 0x00, 0x02, 0x00, 0xce, 0xff, 0xc6, 0xff, 0x7a, 0xff, 0xa7, 0xff, 0xf3, 0x01, 0x03, 0x01, 0xa2, 0xfe, 0x9a, 0xfe, 0xee, 0xfe, 0x71, 0x00, 0x3f, 0x01, 0x10, 0x01, 0xd5, 0x02, 0x0b, 0xff, 0x75, 0xfb, 0xf1, 0xfd, 0x1d, 0x02, 0x39, 0x02, 0x3a, 0x01, 0x7b, 0x02, 0xa3, 0xfd, 0x3e, 0xfb, 0x0c, 0xff, 0xcd, 0x02, 0xee, 0x01, 0xd1, 0x00, 0x0f, 0x02, 0x89, 0xfd, 0x9d, 0xfb, 0xf9, 0xff, 0xb7, 0x02, 0xe5, 0x01, 0x5f, 0x00, 0x36, 0xff, 0xb2, 0xfe, 0x95, 0xff, 0xcb, 0x00, 0x6f, 0x01, 0xb7, 0xff, 0x34, 0xfe, 0x1e, 0xff, 0x79, 0x00, 0xdd, 0x00, 0x70, 0x00, 0xf6, 0xff, 0xbf, 0xff, 0xd8, 0xff, 0xf5, 0xff, 0x23, 0x00, 0xfe, 0xff, 0x96, 0xff, 0x8c, 0xff, 0x7f, 0x01, 0x25, 0x01, 0x2e, 0xfe, 0x16, 0xfe, 0xcd, 0x01, 0x79, 0x02, 0xf4, 0xfe, 0x19, 0xfe, 0x78, 0xff, 0x5b, 0x00, 0xf2, 0xff, 0xe9, 0xff, 0xb9, 0x00, 0x62, 0x00, 0x1b, 0x01, 0xa9, 0x02, 0xc1, 0xfd, 0x7d, 0xfb, 0x21, 0xff, 0x87, 0x02, 0x21, 0x02, 0x45, 0x02, 0x9f, 0xff, 0x4d, 0xfc, 0xe3, 0xfd, 0xbc, 0x00, 0x4f, 0x02, 0x39, 0x02, 0xa7, 0xff, 0xd9, 0xfd, 0xe1, 0xfe, 0x41, 0x00, 0x16, 0x00, 0x0e, 0x00, 0x62, 0x00, 0x75, 0x02, 0x33, 0x01, 0x55, 0xfd, 0x37, 0xfd, 0x5a, 0xff, 0xf3, 0x01, 0x67, 0x01, 0xbe, 0x00, 0x28, 0x01, 0x2b, 0xfe, 0x5f, 0xfd, 0x8c, 0x00, 0x8b, 0x01, 0x69, 0x03, 0x53, 0x00, 0xcc, 0xfb, 0x97, 0xfd, 0x9d, 0x00, 0x66, 0x01, 0x7f, 0x00, 0x00, 0x00, 0xf7, 0x00, 0x81, 0x02, 0xca, 0xfe, 0xf7, 0xfc, 0x94, 0xfe, 0x73, 0x01, 0x31, 0x02, 0xfb, 0xff, 0xd6, 0xfe, 0xf6, 0xfe, 0x13, 0x00, 0xdf, 0x00, 0x82, 0x00, 0xba, 0xff, 0x3f, 0x01, 0xb8, 0x00, 0x1b, 0xfe, 0x72, 0xfe, 0xef, 0xff, 0xda, 0x00, 0xf4, 0x00, 0x74, 0x00, 0x8a, 0xff, 0x6e, 0xff, 0xd1, 0xff, 0x31, 0x00, 0x28, 0x00, 0xd8, 0xff, 0x2c, 0xff, 0x04, 0x00, 0x7d, 0x00, 0xf7, 0x01, 0x1b, 0x02, 0x93, 0xfd, 0x91, 0xfc, 0x15, 0xff, 0xe7, 0x01, 0xaf, 0x01, 0x7f, 0x00, 0x57, 0x02, 0x50, 0xff, 0x1b, 0xfc, 0xd9, 0xfd, 0x43, 0x01, 0x2d, 0x02, 0x43, 0x02, 0xcd, 0x00, 0x4f, 0xfd, 0xa3, 0xfd, 0xb9, 0xff, 0x6f, 0x01, 0x29, 0x02, 0x98, 0x00, 0x70, 0xfe, 0xa3, 0xfe, 0xc6, 0xff, 0xaa, 0x00, 0xf7, 0x00, 0x58, 0x00, 0x7a, 0xff, 0x6e, 0xff, 0x83, 0xff, 0x8d, 0xff, 0x6b, 0x00, 0xe9, 0x00, 0x45, 0x02, 0x14, 0x00, 0x59, 0xfc, 0x58, 0xfe, 0xa0, 0x01, 0xad, 0x03, 0x89, 0x00, 0x19, 0xfd, 0xe3, 0xfd, 0xf6, 0xff, 0x46, 0x01, 0xcf, 0x01, 0xdc, 0x00, 0xa9, 0xfe, 0xb5, 0xfe, 0x21, 0xff, 0x34, 0x00, 0xcb, 0x00, 0xe6, 0x00, 0xcf, 0xff, 0x99, 0x01, 0x29, 0x02, 0x07, 0xfd, 0x35, 0xfc, 0x44, 0xff, 0x6f, 0x02, 0xc3, 0x01, 0x8e, 0x00, 0x03, 0x02, 0x7e, 0xfe, 0xd2, 0xfb, 0x4e, 0xff, 0x59, 0x02, 0xb1, 0x01, 0xdb, 0x01, 0x56, 0x00, 0xe5, 0xfb, 0x81, 0xfd, 0x70, 0x01, 0xd1, 0x02, 0xf9, 0x02, 0xc6, 0xfe, 0x45, 0xfc, 0x40, 0xfe, 0xf2, 0x00, 0x2f, 0x03, 0x5d, 0x01, 0x58, 0xfe, 0x3d, 0xfe, 0x36, 0xff, 0x44, 0x00, 0x16, 0x01, 0xbe, 0x00, 0xe8, 0x01, 0x9d, 0x00, 0x3b, 0xfd, 0xe5, 0xfd, 0xa1, 0xff, 0x31, 0x01, 0x18, 0x01, 0x28, 0x01, 0x97, 0x01, 0x33, 0xfe, 0xbf, 0xfc, 0xaa, 0x00, 0x99, 0x03, 0x34, 0x00, 0xa1, 0xfd, 0x24, 0xfe, 0x26, 0x00, 0x8d, 0x01, 0x1b, 0x01, 0x55, 0x00, 0x8f, 0xff, 0x1c, 0x00, 0xe9, 0x00, 0x2c, 0xff, 0x2e, 0xfe, 0x89, 0xff, 0xac, 0x00, 0x9d, 0x00, 0xb3, 0xff, 0x4f, 0x00, 0xac, 0x01, 0xf0, 0xff, 0x6c, 0xfe, 0x29, 0xff, 0xec, 0xff, 0x31, 0x00, 0x37, 0x00, 0xfb, 0x00, 0x49, 0x02, 0x4b, 0xff, 0x77, 0xfd, 0x96, 0xfe, 0x43, 0x00, 0x2a, 0x01, 0xd5, 0x01, 0x22, 0x01, 0x64, 0xfe, 0x4b, 0xfe, 0xbc, 0xff, 0xad, 0x00, 0x61, 0x00, 0xd5, 0xff, 0xf8, 0xff, 0x0a, 0x01, 0xa3, 0x00, 0x0f, 0xff, 0xf1, 0xfe, 0xda, 0xff, 0x97, 0x00, 0x6a, 0x00, 0xdb, 0xff, 0x8a, 0xff, 0x6f, 0xff, 0x21, 0x01, 0x3f, 0x01, 0x36, 0xff, 0xa3, 0xfe, 0x20, 0xff, 0x62, 0x00, 0x34, 0x01, 0x3f, 0x02, 0xde, 0xff, 0x8b, 0xfd, 0x30, 0xfe, 0xd7, 0xff, 0xac, 0x01, 0xdd, 0x00, 0xab, 0x01, 0x19, 0x01, 0x15, 0xfd, 0xf5, 0xfc, 0x64, 0x00, 0x0f, 0x02, 0xe5, 0x01, 0xa2, 0x01, 0x34, 0xfe, 0x05, 0xfd, 0xdf, 0xfe, 0x3f, 0x01, 0xbd, 0x01, 0x79, 0x02, 0xbf, 0xff, 0x27, 0xfd, 0xd7, 0xfd, 0x56, 0x00, 0x99, 0x01, 0x2f, 0x02, 0x8e, 0x01, 0xe5, 0xfd, 0x0d, 0xfd, 0x29, 0xff, 0x61, 0x01, 0xaf, 0x02, 0xd3, 0x01, 0x9d, 0xfd, 0xd1, 0xfc, 0xf3, 0xff, 0xf3, 0x01, 0x58, 0x01, 0x45, 0x02, 0x47, 0xff, 0x83, 0xfc, 0x12, 0xfe, 0xc4, 0x00, 0x21, 0x02, 0x99, 0x02, 0xd2, 0xff, 0x39, 0xfd, 0x0c, 0xfe, 0x3a, 0x00, 0xc3, 0x01, 0xfd, 0x00, 0xff, 0x01, 0xc5, 0xff, 0xc5, 0xfc, 0xf1, 0xfd, 0xf5, 0x00, 0xb4, 0x01, 0x8b, 0x01, 0xe2, 0x01, 0x22, 0xfe, 0x01, 0xfd, 0xd3, 0xfe, 0x39, 0x01, 0xa8, 0x01, 0x09, 0x02, 0x26, 0x00, 0xb3, 0xfd, 0x2e, 0xfe, 0xcf, 0xff, 0xf7, 0x00, 0x17, 0x02, 0xb1, 0x01, 0x48, 0xfe, 0xa9, 0xfd, 0xc9, 0xfe, 0x2b, 0x01, 0x3f, 0x01, 0x93, 0x01, 0xa3, 0x01, 0xdf, 0xfd, 0x09, 0xfd, 0xea, 0xfe, 0xd3, 0x01, 0x69, 0x01, 0x2b, 0x01, 0xd3, 0x01, 0x95, 0xfd, 0x4f, 0xfc, 0x25, 0x00, 0x45, 0x02, 0x84, 0x01, 0x3f, 0x02, 0xac, 0xfe, 0xce, 0xfb, 0xd8, 0xfe, 0x1d, 0x02, 0xe1, 0x01, 0x51, 0x02, 0x78, 0xff, 0xe8, 0xfb, 0x6d, 0xfe, 0xc3, 0x01, 0xd6, 0x01, 0x40, 0x00, 0x9e, 0xff, 0x34, 0x00, 0x3d, 0x00, 0x78, 0xff, 0x06, 0xff, 0x1c, 0x00, 0x44, 0x00, 0xf0, 0x01, 0x81, 0x02, 0xe7, 0xfc, 0xa5, 0xfb, 0x8c, 0xff, 0x7f, 0x02, 0x9f, 0x02, 0xcd, 0x01, 0xf1, 0xfd, 0x85, 0xfc, 0xc6, 0xff, 0xf1, 0x01, 0x17, 0x03, 0x6d, 0x00, 0x19, 0xfd, 0xa7, 0xfd, 0xec, 0xff, 0xc6, 0x01, 0x28, 0x01, 0xe8, 0x01, 0xef, 0xff, 0x1f, 0xfd, 0x07, 0xfe, 0x91, 0x00, 0xb5, 0x01, 0x0d, 0x02, 0x70, 0x00, 0xe7, 0xfd, 0x5b, 0xfe, 0xb3, 0xff, 0xf1, 0x00, 0x16, 0x01, 0x92, 0x00, 0xc5, 0xff, 0x68, 0xff, 0xaa, 0xff, 0x83, 0x00, 0x1c, 0x00, 0x77, 0xff, 0x11, 0xff, 0xce, 0xff, 0xa1, 0x00, 0xbb, 0x01, 0xbb, 0x01, 0x39, 0xfe, 0x8d, 0xfd, 0x23, 0xff, 0xa9, 0x01, 0xf9, 0x01, 0xc5, 0xff, 0x6a, 0xfe, 0xd2, 0xfe, 0x58, 0x00, 0x69, 0x01, 0x4d, 0x02, 0x80, 0xff, 0x7d, 0xfd, 0xe8, 0xfe, 0x9b, 0x00, 0xfe, 0x00, 0x02, 0x00, 0x48, 0xff, 0xed, 0xff, 0xaf, 0x00, 0x65, 0x02, 0x05, 0x00, 0x55, 0xfd, 0x19, 0xfe, 0x1a, 0x00, 0x7e, 0x01, 0x49, 0x01, 0xcf, 0x01, 0x4a, 0xff, 0x71, 0xfd, 0xa9, 0xfe, 0x95, 0x00, 0x91, 0x01, 0xb5, 0x01, 0xc8, 0xff, 0x57, 0xfe, 0x20, 0xff, 0x3b, 0x00, 0x2f, 0x00, 0xd7, 0xff, 0x0d, 0x00, 0x30, 0x01, 0xff, 0x01, 0xf4, 0xfe, 0xc7, 0xfd, 0x3e, 0xff, 0x4f, 0x00, 0x8f, 0x00, 0x68, 0x00, 0xe3, 0x00, 0x3a, 0x01, 0x32, 0xff, 0x36, 0xfe, 0x57, 0xff, 0x8b, 0x00, 0x01, 0x01, 0xb5, 0x00, 0x9f, 0xff, 0x50, 0xff, 0xa1, 0xff, 0xde, 0xff, 0xcb, 0xff, 0xcd, 0x00, 0xe1, 0x01, 0x9f, 0xff, 0x4e, 0xfe, 0xa9, 0xfe, 0x02, 0x00, 0x25, 0x01, 0xc5, 0x00, 0x3d, 0x00, 0xf3, 0x01, 0xb4, 0xff, 0xb5, 0xfc, 0x48, 0xfe, 0x2d, 0x01, 0xcd, 0x01, 0xe2, 0x01, 0x47, 0x00, 0xad, 0xfd, 0x3f, 0xfe, 0x62, 0x00, 0xac, 0x01, 0x70, 0x00, 0x60, 0xff, 0x36, 0xff, 0x98, 0xff, 0x83, 0x00, 0x65, 0x00, 0x99, 0x01, 0xf8, 0x00, 0x04, 0xfe, 0x07, 0xfe, 0x5f, 0xff, 0x1c, 0x01, 0x2b, 0x01, 0xfc, 0x01, 0x26, 0x00, 0x79, 0xfd, 0x0d, 0xfe, 0x2b, 0x00, 0xb4, 0x01, 0xbf, 0x00, 0x94, 0x01, 0x83, 0x00, 0x6f, 0xfd, 0xcd, 0xfd, 0xe7, 0xff, 0xbb, 0x01, 0xef, 0x00, 0x15, 0x01, 0x19, 0x01, 0xf3, 0xfd, 0x6d, 0xfd, 0xdd, 0xff, 0xa2, 0x01, 0x2a, 0x01, 0xb7, 0x01, 0xa4, 0xff, 0x29, 0xfd, 0x88, 0xfe, 0xe6, 0x00, 0x7c, 0x01, 0x4c, 0x01, 0x06, 0x01, 0x7e, 0xfe, 0x07, 0xfe, 0x9f, 0xff, 0x58, 0x00, 0x6b, 0x00, 0x59, 0x00, 0xe8, 0x00, 0x91, 0x01, 0x2d, 0xff, 0xdd, 0xfd, 0x15, 0xff, 0x94, 0x00, 0x72, 0x01, 0x2a, 0x01, 0x69, 0xff, 0xc4, 0xfe, 0x74, 0xff, 0x5f, 0x00, 0xaa, 0x00, 0x2b, 0x00, 0x9b, 0xff, 0x44, 0xff, 0xab, 0xff, 0x4e, 0x01, 0xeb, 0x01, 0x26, 0xff, 0xf1, 0xfd, 0xc7, 0xfe, 0xb6, 0x00, 0x30, 0x01, 0x15, 0x01, 0x90, 0x01, 0x49, 0xfe, 0x1d, 0xfd, 0xc6, 0xff, 0x1f, 0x02, 0xb1, 0x02, 0x50, 0xff, 0x55, 0xfd, 0x6c, 0xfe, 0xbe, 0x00, 0x82, 0x01, 0x95, 0x00, 0xed, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xc6, 0xff, 0x7b, 0xff, 0xf9, 0xff, 0x32, 0x00, 0x67, 0x02, 0xcb, 0x00, 0x95, 0xfc, 0xa7, 0xfd, 0x5f, 0x00, 0xe4, 0x01, 0xac, 0x01, 0x31, 0x00, 0xbe, 0xfe, 0x1b, 0xff, 0xec, 0xff, 0x7a, 0x00, 0x9e, 0x00, 0x2f, 0x00, 0xab, 0xff, 0xad, 0xff, 0xf0, 0xff, 0x17, 0x00, 0xf5, 0xff, 0xc3, 0xff, 0xaa, 0x00, 0x5b, 0x00, 0x92, 0xff, 0x11, 0xff, 0x8f, 0xff, 0x8c, 0x00, 0x54, 0x01, 0x8e, 0x01, 0xbb, 0xfe, 0x89, 0xfd, 0x93, 0xff, 0x4b, 0x01, 0x57, 0x01, 0x7c, 0x01, 0x56, 0xff, 0xb1, 0xfd, 0x00, 0xff, 0xa7, 0x00, 0x7c, 0x01, 0xd0, 0x00, 0x63, 0xff, 0x0f, 0xff, 0xb6, 0xff, 0x3d, 0x00, 0x73, 0x00, 0x37, 0x00, 0xa5, 0xff, 0x92, 0xff, 0x55, 0x00, 0x9d, 0x00, 0x59, 0x00, 0xa5, 0xff, 0x47, 0xff, 0x90, 0xff, 0x14, 0x00, 0xdc, 0x00, 0x64, 0x00, 0x98, 0xff, 0x8a, 0xff, 0xcf, 0xff, 0xfc, 0xff, 0x23, 0x00, 0xf6, 0xff, 0x88, 0x00, 0x27, 0x01, 0x84, 0xff, 0xcc, 0xfe, 0x45, 0xff, 0xc5, 0xff, 0xaa, 0x00, 0x98, 0x00, 0x42, 0x01, 0x09, 0x01, 0x2e, 0xfe, 0xf5, 0xfd, 0xcc, 0xff, 0x7b, 0x01, 0xd0, 0x01, 0xa7, 0xff, 0x84, 0xfe, 0xf9, 0xfe, 0x25, 0x00, 0xcb, 0x00, 0x67, 0x01, 0xdd, 0x00, 0xa8, 0xfe, 0x87, 0xfe, 0xa7, 0xff, 0xad, 0x00, 0x15, 0x01, 0x6b, 0x00, 0x5d, 0xff, 0x63, 0xff, 0x86, 0xff, 0xe0, 0xff, 0x74, 0x00, 0xd7, 0x00, 0x94, 0x01, 0x95, 0xff, 0xd1, 0xfd, 0xa3, 0xfe, 0xd1, 0x00, 0x2a, 0x01, 0xb2, 0x01, 0xbb, 0x00, 0xed, 0xfd, 0xfb, 0xfd, 0xa2, 0xff, 0x7f, 0x01, 0xd1, 0x00, 0x48, 0x01, 0xe6, 0x00, 0xd9, 0xfd, 0xb3, 0xfd, 0xf5, 0xff, 0xae, 0x01, 0xc2, 0x00, 0xb0, 0x00, 0x30, 0x01, 0x33, 0xfe, 0x83, 0xfd, 0x41, 0x00, 0x81, 0x01, 0xcb, 0x00, 0xc0, 0xff, 0xe5, 0x00, 0x19, 0x01, 0x24, 0xfe, 0x4b, 0xfe, 0xff, 0xff, 0xb2, 0x00, 0x41, 0x00, 0xa5, 0xff, 0x35, 0x00, 0x5e, 0x00, 0x5d, 0x01, 0xd0, 0x00, 0x2b, 0xfe, 0x16, 0xfe, 0x01, 0x00, 0x39, 0x01, 0x88, 0x01, 0xa6, 0x00, 0xa5, 0xfe, 0xcd, 0xfe, 0xdd, 0xff, 0x1d, 0x00, 0x07, 0x00, 0x76, 0x00, 0x52, 0x00, 0x01, 0x01, 0x0d, 0x01, 0xc3, 0xfd, 0x0a, 0xfe, 0xbe, 0x00, 0x96, 0x01, 0x25, 0x02, 0x7d, 0xff, 0x4f, 0xfd, 0x61, 0xfe, 0xee, 0x00, 0x75, 0x01, 0x0f, 0x01, 0x24, 0x01, 0x42, 0xfe, 0xbb, 0xfd, 0x29, 0x00, 0x72, 0x01, 0xc5, 0x00, 0x39, 0x01, 0xf3, 0xff, 0x7f, 0xfd, 0xb2, 0xfe, 0xd9, 0x00, 0x88, 0x01, 0x75, 0x01, 0xa5, 0xff, 0x25, 0xfe, 0x1b, 0xff, 0x35, 0x00, 0xf4, 0x00, 0x00, 0x01, 0xd4, 0xff, 0x36, 0xff, 0x83, 0xff, 0x9c, 0xff, 0x43, 0x00, 0x7f, 0x00, 0x13, 0x01, 0x1f, 0x01, 0xaf, 0xfe, 0x2e, 0xfe, 0x68, 0xff, 0xdd, 0x00, 0xd4, 0x00, 0x75, 0x01, 0x71, 0x00, 0x3f, 0xfe, 0x7e, 0xfe, 0xcc, 0xff, 0xcb, 0x00, 0x90, 0x01, 0xd4, 0x00, 0xa6, 0xfe, 0x48, 0xfe, 0xed, 0xff, 0x1e, 0x01, 0xd9, 0x00, 0x8d, 0x01, 0x80, 0xff, 0xcf, 0xfd, 0xc6, 0xfe, 0x73, 0x00, 0x28, 0x01, 0x6f, 0x01, 0x70, 0x00, 0x93, 0xfe, 0xd2, 0xfe, 0xd5, 0xff, 0xa6, 0x00, 0xf5, 0x00, 0x4d, 0x00, 0x68, 0xff, 0x77, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xda, 0xff, 0x0e, 0x00, 0xca, 0x00, 0x28, 0x01, 0x80, 0xff, 0xaf, 0xfe, 0x93, 0xff, 0x08, 0x00, 0x13, 0x00, 0x1f, 0x00, 0xf1, 0x00, 0x48, 0x01, 0x2c, 0xff, 0x31, 0xfe, 0x5d, 0xff, 0xd3, 0x00, 0xf2, 0x00, 0x64, 0x00, 0xdd, 0xff, 0x9c, 0xff, 0x3e, 0x00, 0xee, 0x00, 0x86, 0xff, 0x99, 0xfe, 0x84, 0xff, 0x70, 0x00, 0xa4, 0x00, 0x3e, 0x00, 0xea, 0xff, 0xba, 0xff, 0x99, 0xff, 0xf2, 0xff, 0xa9, 0x00, 0xc5, 0x00, 0xb3, 0xff, 0x42, 0xff, 0xd1, 0xff, 0x31, 0x00, 0x43, 0x00, 0xed, 0xff, 0xdd, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0x38, 0x00, 0x41, 0x00, 0xdb, 0xff, 0xcb, 0xff, 0x9f, 0xff, 0xbc, 0xff, 0x3a, 0x00, 0xca, 0x00, 0x46, 0x01, 0x87, 0xff, 0x6a, 0xfe, 0x3f, 0xff, 0x55, 0x00, 0x54, 0x01, 0x7d, 0x00, 0x56, 0xff, 0x29, 0xff, 0x9c, 0xff, 0x34, 0x00, 0x45, 0x01, 0x07, 0x01, 0x06, 0xff, 0xd2, 0xfe, 0x8f, 0xff, 0x2c, 0x00, 0x82, 0x00, 0x61, 0x00, 0xbe, 0x00, 0x9e, 0x00, 0x09, 0xff, 0xfc, 0xfe, 0xe0, 0xff, 0x55, 0x00, 0x3d, 0x00, 0xb9, 0xff, 0xbf, 0xff, 0x41, 0x00, 0x65, 0x00, 0x32, 0x00, 0x40, 0x00, 0xef, 0x00, 0xb0, 0xff, 0x75, 0xfe, 0x1a, 0xff, 0x22, 0x00, 0xa9, 0x00, 0x40, 0x01, 0xb5, 0x00, 0xf6, 0xfe, 0xf1, 0xfe, 0xab, 0xff, 0x46, 0x00, 0xb9, 0x00, 0xda, 0x00, 0xd1, 0xff, 0x2c, 0xff, 0x93, 0xff, 0x0d, 0x00, 0x62, 0x00, 0x61, 0x00, 0xfb, 0xff, 0x7e, 0xff, 0x95, 0xff, 0x14, 0x00, 0xa0, 0x00, 0x5d, 0x01, 0xbf, 0xff, 0xa0, 0xfe, 0xdf, 0xfe, 0x28, 0x00, 0xd0, 0x00, 0x13, 0x01, 0x19, 0x01, 0x05, 0xff, 0x69, 0xfe, 0x38, 0xff, 0x89, 0x00, 0xf2, 0x00, 0x5b, 0x00, 0x13, 0x01, 0x19, 0x00, 0x07, 0xfe, 0xc7, 0xfe, 0xb6, 0x00, 0x07, 0x01, 0x21, 0x01, 0x80, 0x00, 0x8b, 0xfe, 0x8d, 0xfe, 0xd5, 0xff, 0xc2, 0x00, 0xeb, 0x00, 0x46, 0x01, 0x92, 0xff, 0x73, 0xfe, 0x35, 0xff, 0x19, 0x00, 0xb9, 0x00, 0x53, 0x00, 0xd0, 0x00, 0xbe, 0x00, 0xe8, 0xfe, 0xbd, 0xfe, 0x71, 0xff, 0x74, 0x00, 0xb9, 0x00, 0x8f, 0x00, 0x1f, 0x01, 0x80, 0xff, 0x42, 0xfe, 0x41, 0xff, 0x19, 0x01, 0x27, 0x01, 0xad, 0xff, 0x42, 0xff, 0x7a, 0xff, 0xea, 0xff, 0x9e, 0x00, 0x31, 0x01, 0xe7, 0xff, 0xd9, 0xfe, 0x39, 0xff, 0x2c, 0x00, 0xbb, 0x00, 0x12, 0x01, 0x13, 0x00, 0xf4, 0xfe, 0x5a, 0xff, 0x08, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0xe3, 0xff, 0xb4, 0xff, 0xf5, 0xff, 0x5b, 0x00, 0x40, 0x01, 0x20, 0x00, 0xa6, 0xfe, 0x18, 0xff, 0xf0, 0xff, 0x8b, 0x00, 0x67, 0x00, 0x58, 0x00, 0xeb, 0x00, 0xb0, 0xff, 0xcd, 0xfe, 0x44, 0xff, 0x02, 0x00, 0x7f, 0x00, 0x21, 0x01, 0xb9, 0x00, 0xfc, 0xfe, 0xc7, 0xfe, 0xc6, 0xff, 0xb2, 0x00, 0xb3, 0x00, 0xac, 0x00, 0xb4, 0xff, 0x12, 0xff, 0x98, 0xff, 0x1c, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x23, 0x00, 0xdb, 0xff, 0xce, 0xff, 0xe9, 0xff, 0x07, 0x00, 0x25, 0x00, 0x0b, 0x00, 0xf5, 0xff, 0xf0, 0xff, 0xae, 0xff, 0xb9, 0xff, 0x47, 0x00, 0x5f, 0x00, 0x07, 0x01, 0x46, 0x00, 0x94, 0xfe, 0xe8, 0xfe, 0x8b, 0x00, 0x13, 0x01, 0xf3, 0xff, 0x66, 0xff, 0x99, 0xff, 0x20, 0x00, 0x97, 0x00, 0x7d, 0x00, 0x8d, 0xff, 0x63, 0xff, 0x37, 0x00, 0x53, 0x00, 0xd4, 0xff, 0x90, 0xff, 0xc6, 0xff, 0xaa, 0x00, 0xfa, 0x00, 0xa8, 0xff, 0x20, 0xff, 0x95, 0xff, 0xfe, 0xff, 0x5f, 0x00, 0x43, 0x00, 0x7f, 0x00, 0x61, 0x00, 0x53, 0xff, 0x4d, 0xff, 0xe9, 0xff, 0x68, 0x00, 0x5c, 0x00, 0xf8, 0xff, 0xcf, 0xff, 0xe4, 0xff, 0xfe, 0xff, 0x13, 0x00, 0x1d, 0x00, 0x04, 0x00, 0xf0, 0xff, 0xea, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x08, 0x00, 0xf8, 0xff, 0xda, 0xff, 0xc3, 0xff, 0x0a, 0x00, 0x29, 0x00, 0x7d, 0x00, 0xe2, 0x00, 0x8a, 0xff, 0xe7, 0xfe, 0x90, 0xff, 0x2b, 0x00, 0xb9, 0x00, 0x62, 0x00, 0xbd, 0xff, 0x8f, 0xff, 0xb0, 0xff, 0xf5, 0xff, 0x9a, 0x00, 0x00, 0x01, 0xc2, 0xff, 0xff, 0xfe, 0x53, 0xff, 0x07, 0x00, 0xa4, 0x00, 0x44, 0x00, 0x8c, 0x00, 0xe9, 0x00, 0x15, 0xff, 0x82, 0xfe, 0x81, 0xff, 0xbf, 0x00, 0xb3, 0x00, 0xe6, 0x00, 0x50, 0x00, 0xd5, 0xfe, 0x2a, 0xff, 0xba, 0xff, 0x55, 0x00, 0x65, 0x00, 0xcd, 0x00, 0xaa, 0x00, 0x36, 0xff, 0xf3, 0xfe, 0xa4, 0xff, 0x59, 0x00, 0xc2, 0x00, 0xc8, 0x00, 0xa7, 0xff, 0x35, 0xff, 0x86, 0xff, 0xe7, 0xff, 0x62, 0x00, 0x58, 0x00, 0xd6, 0x00, 0x58, 0x00, 0xf9, 0xfe, 0x08, 0xff, 0xf0, 0xff, 0x98, 0x00, 0xda, 0x00, 0x46, 0x00, 0x57, 0xff, 0x71, 0xff, 0xe9, 0xff, 0x50, 0x00, 0x5f, 0x00, 0xf6, 0xff, 0xd1, 0xff, 0xb4, 0xff, 0xd7, 0xff, 0x22, 0x00, 0xb3, 0x00, 0xa1, 0x00, 0x77, 0xff, 0x1a, 0xff, 0x7e, 0xff, 0x5e, 0x00, 0x95, 0x00, 0x01, 0x01, 0x1a, 0x00, 0xd9, 0xfe, 0x23, 0xff, 0xfe, 0xff, 0x9e, 0x00, 0x67, 0x00, 0xe5, 0x00, 0x20, 0x00, 0xe1, 0xfe, 0x57, 0xff, 0xf8, 0xff, 0x37, 0x00, 0x38, 0x00, 0x71, 0x00, 0xdd, 0x00, 0xa8, 0xff, 0xcd, 0xfe, 0x89, 0xff, 0xad, 0x00, 0x1e, 0x01, 0xed, 0xff, 0x2f, 0xff, 0x9e, 0xff, 0x28, 0x00, 0x3e, 0x00, 0x0d, 0x00, 0xea, 0xff, 0xff, 0xff, 0x31, 0x00, 0x1a, 0x00, 0xe3, 0xff, 0xd7, 0xff, 0xf3, 0xff, 0x08, 0x00, 0x10, 0x00, 0xec, 0xff, 0xda, 0xff, 0x53, 0x00, 0x58, 0x00, 0xba, 0xff, 0xba, 0xff, 0xd7, 0xff, 0xc5, 0xff, 0x16, 0x00, 0x5c, 0x00, 0xee, 0x00, 0x1c, 0x00, 0x03, 0xff, 0x2f, 0xff, 0x05, 0x00, 0x83, 0x00, 0xb9, 0x00, 0xa3, 0x00, 0x69, 0xff, 0x1b, 0xff, 0xb0, 0xff, 0x44, 0x00, 0xa0, 0x00, 0x77, 0x00, 0xb4, 0xff, 0x84, 0xff, 0xd2, 0xff, 0x19, 0x00, 0x35, 0x00, 0x01, 0x00, 0xea, 0xff, 0x4c, 0x00, 0x31, 0x00, 0xbc, 0xff, 0xbf, 0xff, 0xef, 0xff, 0x0b, 0x00, 0x2c, 0x00, 0x31, 0x00, 0xf2, 0xff, 0xde, 0xff, 0xed, 0xff, 0xdb, 0xff, 0xd1, 0xff, 0x56, 0x00, 0xbb, 0x00, 0xd5, 0xff, 0x4d, 0xff, 0x7d, 0xff, 0x73, 0x00, 0xe8, 0x00, 0xe3, 0xff, 0x54, 0xff, 0x7b, 0xff, 0x1d, 0x00, 0x5c, 0x00, 0xac, 0x00, 0x76, 0x00, 0x5a, 0xff, 0x50, 0xff, 0xbc, 0xff, 0x13, 0x00, 0x40, 0x00, 0x44, 0x00, 0x1a, 0x00, 0x3a, 0x00, 0x89, 0x00, 0xae, 0xff, 0x29, 0xff, 0xae, 0xff, 0x38, 0x00, 0x5f, 0x00, 0x26, 0x00, 0xea, 0xff, 0xde, 0xff, 0xf2, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0x4f, 0x00, 0x92, 0x00, 0xce, 0xff, 0x8c, 0xff, 0xb3, 0xff, 0xe6, 0xff, 0x1f, 0x00, 0x98, 0x00, 0x9e, 0x00, 0x96, 0xff, 0x4e, 0xff, 0xaa, 0xff, 0x16, 0x00, 0xb5, 0x00, 0x71, 0x00, 0x99, 0xff, 0x7a, 0xff, 0xbc, 0xff, 0x23, 0x00, 0x67, 0x00, 0xac, 0x00, 0xfb, 0xff, 0x4d, 0xff, 0x92, 0xff, 0x05, 0x00, 0x58, 0x00, 0x6a, 0x00, 0xfe, 0xff, 0xb3, 0xff, 0xc5, 0xff, 0xda, 0xff, 0xf8, 0xff, 0x79, 0x00, 0x8e, 0x00, 0xba, 0xff, 0x8a, 0xff, 0xc8, 0xff, 0xd8, 0xff, 0x1a, 0x00, 0x3a, 0x00, 0x5b, 0x00, 0xb2, 0x00, 0xae, 0xff, 0x02, 0xff, 0x8f, 0xff, 0x56, 0x00, 0x82, 0x00, 0xa9, 0x00, 0x0e, 0x00, 0x08, 0xff, 0x78, 0xff, 0x53, 0x00, 0xf2, 0x00, 0x47, 0x00, 0x53, 0xff, 0x74, 0xff, 0xec, 0xff, 0x3d, 0x00, 0x3d, 0x00, 0x14, 0x00, 0x49, 0x00, 0x17, 0x00, 0x9b, 0xff, 0xbf, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x0d, 0x00, 0x11, 0x00, 0xf8, 0xff, 0xef, 0xff, 0x19, 0x00, 0x9d, 0x00, 0x1d, 0x00, 0x56, 0xff, 0x8d, 0xff, 0xf9, 0xff, 0x4a, 0x00, 0x64, 0x00, 0x13, 0x00, 0xc5, 0xff, 0xce, 0xff, 0xf8, 0xff, 0x11, 0x00, 0x1d, 0x00, 0x0e, 0x00, 0xf3, 0xff, 0xf0, 0xff, 0xfc, 0xff, 0x05, 0x00, 0xf0, 0xff, 0xcb, 0xff, 0x1d, 0x00, 0x94, 0x00, 0x04, 0x00, 0x99, 0xff, 0x9b, 0xff, 0xe6, 0xff, 0x37, 0x00, 0xa1, 0x00, 0x59, 0x00, 0x72, 0xff, 0x60, 0xff, 0xce, 0xff, 0x58, 0x00, 0x46, 0x00, 0x35, 0x00, 0x9b, 0x00, 0xc9, 0xff, 0x27, 0xff, 0x80, 0xff, 0x34, 0x00, 0x73, 0x00, 0x31, 0x00, 0x05, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x5c, 0xff, 0xa7, 0xff, 0x0d, 0x00, 0x1c, 0x00, 0xff, 0xff, 0x02, 0x00, 0x32, 0x00, 0x38, 0x00, 0xe9, 0xff, 0xc6, 0xff, 0xe9, 0xff, 0xfc, 0xff, 0xf2, 0xff, 0x19, 0x00, 0x77, 0x00, 0x0e, 0x00, 0xa2, 0xff, 0xc5, 0xff, 0xf2, 0xff, 0x11, 0x00, 0x44, 0x00, 0x34, 0x00, 0xd1, 0xff, 0xb4, 0xff, 0x02, 0x00, 0x50, 0x00, 0x13, 0x00, 0xd2, 0xff, 0xe1, 0xff, 0xf9, 0xff, 0x07, 0x00, 0x1a, 0x00, 0x14, 0x00, 0xf5, 0xff, 0xef, 0xff, 0xf6, 0xff, 0x05, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xe7, 0xff, 0xdd, 0xff, 0x01, 0x00, 0x2b, 0x00, 0x83, 0x00, 0x0e, 0x00, 0x80, 0xff, 0xab, 0xff, 0xe9, 0xff, 0x23, 0x00, 0x1c, 0x00, 0x52, 0x00, 0x5c, 0x00, 0xb6, 0xff, 0x93, 0xff, 0xd7, 0xff, 0xf0, 0xff, 0x14, 0x00, 0x22, 0x00, 0x4c, 0x00, 0x76, 0x00, 0xc0, 0xff, 0x68, 0xff, 0xaa, 0xff, 0x29, 0x00, 0x4a, 0x00, 0x56, 0x00, 0x65, 0x00, 0xaa, 0xff, 0x60, 0xff, 0xce, 0xff, 0x37, 0x00, 0x6a, 0x00, 0x56, 0x00, 0xc9, 0xff, 0x9e, 0xff, 0xcc, 0xff, 0xff, 0xff, 0x2c, 0x00, 0x77, 0x00, 0x31, 0x00, 0xa2, 0xff, 0xae, 0xff, 0xe9, 0xff, 0x11, 0x00, 0x44, 0x00, 0x3e, 0x00, 0xe1, 0xff, 0xc5, 0xff, 0xea, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0x0a, 0x00, 0x2e, 0x00, 0x71, 0x00, 0xed, 0xff, 0x95, 0xff, 0xc9, 0xff, 0xf5, 0xff, 0x19, 0x00, 0x47, 0x00, 0x37, 0x00, 0xd5, 0xff, 0xb3, 0xff, 0xea, 0xff, 0x47, 0x00, 0x20, 0x00, 0xe0, 0xff, 0xde, 0xff, 0xf9, 0xff, 0x1a, 0x00, 0x0d, 0x00, 0xf6, 0xff, 0xea, 0xff, 0xef, 0xff, 0x0a, 0x00, 0x32, 0x00, 0x14, 0x00, 0xdd, 0xff, 0xe1, 0xff, 0xf9, 0xff, 0x08, 0x00, 0x11, 0x00, 0x08, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0x05, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xec, 0xff, 0xe3, 0xff, 0x02, 0x00, 0x23, 0x00, 0x56, 0x00, 0x13, 0x00, 0xa7, 0xff, 0xb9, 0xff, 0xfb, 0xff, 0x2c, 0x00, 0x37, 0x00, 0x00, 0x00, 0xd8, 0xff, 0xe6, 0xff, 0x00, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xef, 0xff, 0xf2, 0xff, 0x1f, 0x00, 0x1f, 0x00, 0xec, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xea, 0xff, 0xf9, 0xff, 0x14, 0x00, 0x59, 0x00, 0x25, 0x00, 0xba, 0xff, 0xab, 0xff, 0xd5, 0xff, 0x26, 0x00, 0x26, 0x00, 0x3d, 0x00, 0x37, 0x00, 0x99, 0xff, 0x9c, 0xff, 0x0e, 0x00, 0x4c, 0x00, 0x68, 0x00, 0xe7, 0xff, 0x92, 0xff, 0xb7, 0xff, 0x05, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x52, 0x00, 0xf0, 0xff, 0x96, 0xff, 0xc5, 0xff, 0x0d, 0x00, 0x3e, 0x00, 0x49, 0x00, 0xfe, 0xff, 0xbc, 0xff, 0xe0, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x34, 0x00, 0x3d, 0x00, 0xdd, 0xff, 0xc3, 0xff, 0xf0, 0xff, 0xfb, 0xff, 0xf3, 0xff, 0x1a, 0x00, 0x4f, 0x00, 0x05, 0x00, 0xbf, 0xff, 0xc6, 0xff, 0xf5, 0xff, 0x22, 0x00, 0x59, 0x00, 0x19, 0x00, 0xb7, 0xff, 0xb7, 0xff, 0xf9, 0xff, 0x25, 0x00, 0x35, 0x00, 0x41, 0x00, 0xde, 0xff, 0xb0, 0xff, 0xda, 0xff, 0x14, 0x00, 0x25, 0x00, 0x0a, 0x00, 0xef, 0xff, 0x13, 0x00, 0x4d, 0x00, 0xef, 0xff, 0xb3, 0xff, 0xe6, 0xff, 0x10, 0x00, 0x0e, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0x0a, 0x00, 0x25, 0x00, 0x10, 0x00, 0xe6, 0xff, 0xe7, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0x0a, 0x00, 0x37, 0x00, 0x14, 0x00, 0xda, 0xff, 0xe0, 0xff, 0xf6, 0xff, 0x02, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0xf5, 0xff, 0xec, 0xff, 0xf3, 0xff, 0x02, 0x00, 0x02, 0x00, 0xfb, 0xff, 0x0b, 0x00, 0x1c, 0x00, 0xf9, 0xff, 0xe9, 0xff, 0xf9, 0xff, 0x04, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0x10, 0x00, 0x14, 0x00, 0xf8, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0xf3, 0xff, 0xe9, 0xff, 0x01, 0x00, 0x10, 0x00, 0x1f, 0x00, 0x34, 0x00, 0xe3, 0xff, 0xb6, 0xff, 0xe3, 0xff, 0x14, 0x00, 0x37, 0x00, 0x2e, 0x00, 0xdd, 0xff, 0xcb, 0xff, 0xf2, 0xff, 0x0e, 0x00, 0x14, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0x0a, 0x00, 0x0d, 0x00, 0x23, 0x00, 0x14, 0x00, 0xda, 0xff, 0xde, 0xff, 0xf9, 0xff, 0x08, 0x00, 0x10, 0x00, 0x08, 0x00, 0xf9, 0xff, 0xec, 0xff, 0xfb, 0xff, 0x14, 0x00, 0x0d, 0x00, 0xf8, 0xff, 0xf3, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0x07, 0x00, 0x20, 0x00, 0x04, 0x00, 0xe4, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0x02, 0x00, 0x1d, 0x00, 0x2b, 0x00, 0xf3, 0xff, 0xd5, 0xff, 0xe3, 0xff, 0x02, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x29, 0x00, 0x14, 0x00, 0xd8, 0xff, 0xce, 0xff, 0xfb, 0xff, 0x11, 0x00, 0x22, 0x00, 0x20, 0x00, 0xec, 0xff, 0xdd, 0xff, 0xf8, 0xff, 0x11, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xf0, 0xff, 0xf9, 0xff, 0x08, 0x00, 0x1c, 0x00, 0x10, 0x00, 0xec, 0xff, 0xec, 0xff, 0x0a, 0x00, 0x0d, 0x00, 0xf9, 0xff, 0xf2, 0xff, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x11, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0xf9, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x13, 0x00, 0x10, 0x00, 0xf2, 0xff, 0xf5, 0xff, 0x0d, 0x00, 0x00, 0x00, 0xf3, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0x0e, 0x00, 0x16, 0x00, 0xfe, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x17, 0x00, 0x0e, 0x00, 0xe7, 0xff, 0xe6, 0xff, 0xfc, 0xff, 0x11, 0x00, 0x22, 0x00, 0xfb, 0xff, 0xea, 0xff, 0xed, 0xff, 0xfb, 0xff, 0x07, 0x00, 0x11, 0x00, 0x1a, 0x00, 0xf3, 0xff, 0xe7, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x19, 0x00, 0x01, 0x00, 0xe4, 0xff, 0xef, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x0d, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0b, 0x00, 0x11, 0x00, 0xfc, 0xff, 0xec, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x05, 0x00, 0x0e, 0x00, 0x02, 0x00, 0xf2, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x08, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x0d, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x08, 0x00, 0x0d, 0x00, 0xf9, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x08, 0x00, 0x08, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x0a, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0x07, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xf9, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 }; #define tr808_oh_wav_len 66230 unsigned char tr808_rs_wav[] = { 0x52, 0x49, 0x46, 0x46, 0x6a, 0x56, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45, 0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e, 0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61, 0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61, 0x74, 0x61, 0x24, 0x56, 0x00, 0x00, 0x2e, 0x00, 0xe1, 0xff, 0x61, 0x00, 0x7a, 0xff, 0xb9, 0x00, 0x75, 0xfe, 0x8b, 0x07, 0x17, 0x04, 0x94, 0xfb, 0x98, 0xf9, 0xb1, 0xf5, 0x41, 0xf2, 0x41, 0xf5, 0x21, 0x02, 0xa1, 0x02, 0x77, 0x03, 0x2f, 0x03, 0xab, 0x03, 0x17, 0x04, 0xdb, 0x03, 0x43, 0x04, 0x8f, 0x03, 0x52, 0x04, 0xb7, 0x02, 0x67, 0x04, 0x30, 0x01, 0x87, 0x05, 0xaa, 0xe5, 0x86, 0xc5, 0xa6, 0xca, 0x29, 0xcb, 0xd0, 0xcf, 0x72, 0xd2, 0x81, 0xd6, 0x40, 0xda, 0x1d, 0xde, 0x80, 0xe2, 0x26, 0xe6, 0xd9, 0xf1, 0x56, 0x27, 0x41, 0x39, 0x7f, 0x37, 0x27, 0x3a, 0x10, 0x38, 0xf1, 0x38, 0xff, 0x35, 0x67, 0x36, 0x18, 0x32, 0xc6, 0x32, 0x77, 0x2b, 0x41, 0x2f, 0x96, 0xff, 0x6f, 0xcd, 0xe1, 0xd3, 0xfa, 0xd3, 0xb5, 0xd9, 0xa1, 0xdb, 0x94, 0xdf, 0x9d, 0xe2, 0x26, 0xe6, 0xea, 0xe9, 0x16, 0xed, 0xb4, 0xf1, 0xbb, 0xf3, 0x8d, 0xf8, 0xa5, 0xf9, 0xc8, 0x0f, 0xc7, 0x46, 0xd9, 0x4f, 0xcd, 0x4b, 0x5d, 0x49, 0xf4, 0x44, 0x53, 0x41, 0x89, 0x3c, 0x74, 0x37, 0x83, 0x32, 0x8f, 0x03, 0x8c, 0xc0, 0x22, 0xa4, 0x91, 0xbb, 0x8f, 0xd4, 0x63, 0xdc, 0x17, 0xe0, 0x1a, 0xe2, 0x34, 0xe5, 0x05, 0xe7, 0x4e, 0xea, 0xae, 0xec, 0xa1, 0xef, 0xd0, 0xf1, 0x6f, 0xfe, 0xea, 0x32, 0x6c, 0x44, 0xe7, 0x3e, 0x63, 0x3d, 0xab, 0x38, 0xc8, 0x35, 0xdb, 0x30, 0xc8, 0x2c, 0x8e, 0x27, 0x88, 0x22, 0xe4, 0x1c, 0xbf, 0x17, 0x1f, 0x12, 0xf2, 0x0b, 0xdc, 0xe0, 0x9c, 0xb6, 0x6b, 0xa3, 0xce, 0x9f, 0x78, 0xaa, 0xbb, 0xc2, 0x1d, 0xc6, 0x3c, 0xce, 0x6e, 0xdb, 0x7a, 0x04, 0x26, 0x1b, 0xd6, 0x18, 0x9f, 0x19, 0x44, 0x17, 0xa2, 0x16, 0x28, 0x14, 0x3e, 0x13, 0x24, 0x11, 0x6f, 0x0f, 0xef, 0x0c, 0xc7, 0x0a, 0xc7, 0x08, 0x63, 0x06, 0x9f, 0x04, 0xb4, 0x01, 0xca, 0xfe, 0xc9, 0xd9, 0xa3, 0xbe, 0x04, 0xbe, 0x40, 0xbf, 0x73, 0xc4, 0x87, 0xc8, 0xe0, 0xcd, 0x10, 0xd3, 0xe9, 0xd8, 0x5c, 0xe1, 0x9d, 0xee, 0xcd, 0x0b, 0x4d, 0x24, 0x15, 0x26, 0x4c, 0x27, 0xcb, 0x26, 0xc2, 0x26, 0xd0, 0x25, 0xdf, 0x24, 0x7e, 0x23, 0xa6, 0x21, 0x4c, 0x1d, 0x3f, 0xfd, 0x81, 0xe5, 0xd4, 0xe1, 0x6c, 0xe1, 0x58, 0xe4, 0x87, 0xe6, 0xbe, 0xe9, 0x3f, 0xec, 0x3a, 0xef, 0xc8, 0xf1, 0xca, 0xf4, 0x9c, 0xf7, 0x52, 0xfa, 0x05, 0xfd, 0xed, 0xff, 0x95, 0x03, 0xf6, 0x08, 0x25, 0x12, 0x23, 0x20, 0x08, 0x32, 0xf0, 0x3e, 0x40, 0x3f, 0x7f, 0x3c, 0x5d, 0x36, 0xd8, 0x23, 0x96, 0x0f, 0x6f, 0x01, 0x61, 0xf8, 0x36, 0xf3, 0xf1, 0xef, 0x3a, 0xee, 0xb1, 0xed, 0x96, 0xee, 0xbe, 0xef, 0x89, 0xf1, 0x22, 0xf3, 0x99, 0xf5, 0x45, 0xf8, 0xc1, 0xfd, 0xae, 0x06, 0x4f, 0x1b, 0x2b, 0x31, 0xf7, 0x31, 0xf5, 0x2e, 0x94, 0x2b, 0xd4, 0x27, 0xf7, 0x23, 0xd5, 0x1f, 0xb6, 0x1b, 0x58, 0x17, 0xef, 0x12, 0x57, 0x0e, 0x07, 0x0a, 0xbf, 0x05, 0x7c, 0x01, 0x61, 0xfd, 0x09, 0xf9, 0x7b, 0xf4, 0xa8, 0xeb, 0xc8, 0xe3, 0x8c, 0xe2, 0xac, 0xe6, 0x9d, 0xe9, 0xa8, 0xe8, 0xb3, 0xe7, 0x81, 0xe6, 0x9e, 0xe5, 0xc5, 0xe4, 0x3b, 0xe4, 0xcc, 0xe3, 0x93, 0xe3, 0x75, 0xe3, 0xb3, 0xe3, 0x01, 0xe4, 0x90, 0xe4, 0x1a, 0xe5, 0xfa, 0xe5, 0xb7, 0xe6, 0xda, 0xe7, 0x96, 0xe8, 0xde, 0xe9, 0x26, 0xe7, 0x38, 0xdb, 0x66, 0xd4, 0x5c, 0xd3, 0x14, 0xd5, 0xd7, 0xd8, 0xa0, 0xdd, 0x6d, 0xe3, 0xed, 0xe9, 0x51, 0xf1, 0x74, 0xf9, 0x6d, 0x02, 0x9f, 0x0b, 0x88, 0x14, 0xd3, 0x1b, 0xe9, 0x1f, 0xb7, 0x21, 0x42, 0x22, 0x8b, 0x1f, 0xcd, 0x19, 0x9f, 0x13, 0x30, 0x0e, 0x2a, 0x0a, 0xa3, 0x07, 0x6b, 0x06, 0x33, 0x06, 0xa4, 0x06, 0x76, 0x07, 0x87, 0x08, 0xaf, 0x09, 0xe7, 0x0a, 0x17, 0x0c, 0x4c, 0x0d, 0x7a, 0x0e, 0xbf, 0x0f, 0x2d, 0x11, 0xd0, 0x12, 0xca, 0x14, 0x1f, 0x17, 0xc3, 0x19, 0x7f, 0x1c, 0xff, 0x1e, 0xc0, 0x20, 0x59, 0x21, 0x79, 0x20, 0x1a, 0x1e, 0x74, 0x1a, 0xf9, 0x15, 0x1f, 0x11, 0x57, 0x0c, 0xee, 0x07, 0x18, 0x04, 0xf8, 0x00, 0xa8, 0xfe, 0x17, 0xfd, 0x59, 0xfc, 0x71, 0xfc, 0x97, 0xfd, 0xd2, 0xff, 0x9f, 0x03, 0xe7, 0x08, 0x2f, 0x10, 0x7a, 0x13, 0x45, 0x11, 0x98, 0x0e, 0x84, 0x0b, 0x7f, 0x08, 0x60, 0x05, 0x55, 0x02, 0x53, 0xff, 0x65, 0xfc, 0x89, 0xf9, 0xdc, 0xf6, 0x59, 0xf4, 0x01, 0xf2, 0xd7, 0xef, 0xdb, 0xed, 0x14, 0xec, 0x81, 0xea, 0x2a, 0xe9, 0x0d, 0xe8, 0x2f, 0xe7, 0x90, 0xe6, 0x2d, 0xe6, 0x06, 0xe6, 0x15, 0xe6, 0x5b, 0xe6, 0xca, 0xe6, 0x62, 0xe7, 0x24, 0xe8, 0x06, 0xe9, 0x0c, 0xea, 0x2e, 0xeb, 0x66, 0xec, 0xb5, 0xed, 0x1c, 0xef, 0x91, 0xf0, 0x0f, 0xf2, 0x96, 0xf3, 0x1b, 0xf5, 0x9a, 0xf6, 0x11, 0xf8, 0x75, 0xf9, 0xa0, 0xfa, 0x55, 0xfb, 0x40, 0xfa, 0x8a, 0xf8, 0x15, 0xf8, 0x94, 0xf8, 0xe6, 0xf9, 0xc4, 0xfb, 0x0d, 0xfe, 0x94, 0x00, 0x3f, 0x03, 0xeb, 0x05, 0x72, 0x08, 0xba, 0x0a, 0x97, 0x0c, 0xf7, 0x0d, 0xc8, 0x0e, 0x0f, 0x0f, 0xd8, 0x0e, 0x37, 0x0e, 0x58, 0x0d, 0x58, 0x0c, 0x55, 0x0b, 0x6e, 0x0a, 0xa7, 0x09, 0x17, 0x09, 0xb7, 0x08, 0x8d, 0x08, 0x8f, 0x08, 0xbe, 0x08, 0x15, 0x09, 0x95, 0x09, 0x34, 0x0a, 0xf7, 0x0a, 0xdc, 0x0b, 0xde, 0x0c, 0xf7, 0x0d, 0x27, 0x0f, 0x5f, 0x10, 0x83, 0x11, 0x8c, 0x12, 0x4f, 0x13, 0xca, 0x13, 0xd6, 0x13, 0x70, 0x13, 0x92, 0x12, 0x4e, 0x11, 0xaf, 0x0f, 0xd2, 0x0d, 0xd8, 0x0b, 0xd7, 0x09, 0xf2, 0x07, 0x43, 0x06, 0xd8, 0x04, 0xb3, 0x03, 0x9d, 0x02, 0x51, 0x01, 0xce, 0xff, 0x2a, 0xfe, 0x79, 0xfc, 0xcd, 0xfa, 0x2d, 0xf9, 0x9e, 0xf7, 0x20, 0xf6, 0xb9, 0xf4, 0x77, 0xf3, 0x4e, 0xf2, 0x42, 0xf1, 0x5c, 0xf0, 0x98, 0xef, 0xf7, 0xee, 0x73, 0xee, 0x1a, 0xee, 0xe2, 0xed, 0xcc, 0xed, 0xd6, 0xed, 0x04, 0xee, 0x51, 0xee, 0xbe, 0xee, 0x44, 0xef, 0xea, 0xef, 0xa4, 0xf0, 0x7b, 0xf1, 0x67, 0xf2, 0x62, 0xf3, 0x70, 0xf4, 0x8a, 0xf5, 0xb1, 0xf6, 0xdc, 0xf7, 0x0c, 0xf9, 0x40, 0xfa, 0x71, 0xfb, 0xa1, 0xfc, 0xc7, 0xfd, 0xea, 0xfe, 0xfe, 0xff, 0x09, 0x01, 0x09, 0x02, 0xf7, 0x02, 0xd7, 0x03, 0xa3, 0x04, 0x5f, 0x05, 0x06, 0x06, 0x93, 0x06, 0x13, 0x07, 0x73, 0x07, 0xc3, 0x07, 0xfc, 0x07, 0x24, 0x08, 0x3c, 0x08, 0x47, 0x08, 0x57, 0x08, 0x5d, 0x08, 0x67, 0x08, 0x67, 0x08, 0x5e, 0x08, 0x48, 0x08, 0x21, 0x08, 0xdf, 0x07, 0x86, 0x07, 0x0e, 0x07, 0x7a, 0x06, 0xca, 0x05, 0x03, 0x05, 0x2e, 0x04, 0x59, 0x03, 0x8d, 0x02, 0xd3, 0x01, 0x37, 0x01, 0xbe, 0x00, 0x65, 0x00, 0x38, 0x00, 0x35, 0x00, 0x55, 0x00, 0x9e, 0x00, 0x06, 0x01, 0x90, 0x01, 0x21, 0x02, 0xa5, 0x02, 0xfb, 0x02, 0x0f, 0x03, 0xfb, 0x02, 0xc3, 0x02, 0x77, 0x02, 0x19, 0x02, 0xb1, 0x01, 0x42, 0x01, 0xcd, 0x00, 0x5b, 0x00, 0xe6, 0xff, 0x74, 0xff, 0x06, 0xff, 0x9a, 0xfe, 0x34, 0xfe, 0xd9, 0xfd, 0x7d, 0xfd, 0x31, 0xfd, 0xe9, 0xfc, 0xa9, 0xfc, 0x73, 0xfc, 0x49, 0xfc, 0x1f, 0xfc, 0x07, 0xfc, 0xf1, 0xfb, 0xe6, 0xfb, 0xde, 0xfb, 0xe5, 0xfb, 0xf1, 0xfb, 0xfc, 0xfb, 0x15, 0xfc, 0x2b, 0xfc, 0x4b, 0xfc, 0x75, 0xfc, 0x99, 0xfc, 0xc9, 0xfc, 0xf9, 0xfc, 0x31, 0xfd, 0x69, 0xfd, 0x9f, 0xfd, 0xdf, 0xfd, 0x1e, 0xfe, 0x5d, 0xfe, 0x9c, 0xfe, 0xdf, 0xfe, 0x21, 0xff, 0x60, 0xff, 0x9f, 0xff, 0xe0, 0xff, 0x1d, 0x00, 0x56, 0x00, 0x91, 0x00, 0xc7, 0x00, 0xf8, 0x00, 0x2b, 0x01, 0x52, 0x01, 0x7b, 0x01, 0x9d, 0x01, 0xbd, 0x01, 0xd3, 0x01, 0xea, 0x01, 0xf9, 0x01, 0x03, 0x02, 0x09, 0x02, 0x09, 0x02, 0x0b, 0x02, 0x03, 0x02, 0xf9, 0x01, 0xed, 0x01, 0xe2, 0x01, 0xcc, 0x01, 0xb8, 0x01, 0xa8, 0x01, 0x93, 0x01, 0x79, 0x01, 0x66, 0x01, 0x4c, 0x01, 0x34, 0x01, 0x1b, 0x01, 0x07, 0x01, 0xeb, 0x00, 0xd0, 0x00, 0xb6, 0x00, 0xa0, 0x00, 0x85, 0x00, 0x68, 0x00, 0x50, 0x00, 0x35, 0x00, 0x1a, 0x00, 0x04, 0x00, 0xea, 0xff, 0xd7, 0xff, 0xc5, 0xff, 0xb4, 0xff, 0xa1, 0xff, 0x93, 0xff, 0x89, 0xff, 0x7e, 0xff, 0x77, 0xff, 0x6f, 0xff, 0x6e, 0xff, 0x6b, 0xff, 0x69, 0xff, 0x6b, 0xff, 0x6b, 0xff, 0x68, 0xff, 0x6b, 0xff, 0x68, 0xff, 0x6f, 0xff, 0x72, 0xff, 0x74, 0xff, 0x77, 0xff, 0x7a, 0xff, 0x7d, 0xff, 0x84, 0xff, 0x89, 0xff, 0x8a, 0xff, 0x93, 0xff, 0x96, 0xff, 0x9e, 0xff, 0xa5, 0xff, 0xad, 0xff, 0xb3, 0xff, 0xbc, 0xff, 0xc5, 0xff, 0xcb, 0xff, 0xd1, 0xff, 0xda, 0xff, 0xe4, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x20, 0x00, 0x23, 0x00, 0x28, 0x00, 0x23, 0x00, 0x25, 0x00, 0x25, 0x00, 0x23, 0x00, 0x23, 0x00, 0x22, 0x00, 0x20, 0x00, 0x23, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x13, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x16, 0x00, 0x13, 0x00, 0x16, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x17, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xde, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xea, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x13, 0x00, 0x11, 0x00, 0x14, 0x00, 0x10, 0x00, 0x13, 0x00, 0x13, 0x00, 0x11, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x13, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x08, 0x00, 0x01, 0x00, 0x08, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfb, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff }; #define tr808_rs_wav_len 22130 unsigned char tr808_sn_wav[] = { 0x52, 0x49, 0x46, 0x46, 0x8c, 0xac, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45, 0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e, 0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61, 0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61, 0x74, 0x61, 0x46, 0xac, 0x00, 0x00, 0x08, 0x00, 0x1f, 0x00, 0x05, 0x00, 0x29, 0x00, 0xf6, 0xff, 0x3b, 0x00, 0xcf, 0xff, 0x89, 0x00, 0x0d, 0xfd, 0xee, 0xf5, 0x98, 0xf3, 0xeb, 0xf0, 0xb0, 0xee, 0x65, 0xec, 0x81, 0xea, 0xbb, 0xe8, 0x2d, 0xe7, 0xbb, 0xe5, 0x64, 0xe4, 0x2b, 0xe3, 0xf4, 0xe1, 0xc0, 0xe0, 0x92, 0xdf, 0x5d, 0xde, 0x58, 0xdd, 0x45, 0xdc, 0x25, 0xdb, 0x57, 0xda, 0xa1, 0xd9, 0x6a, 0xd8, 0xdd, 0xd6, 0x78, 0xd5, 0xa2, 0xd4, 0xee, 0xd3, 0xca, 0xd3, 0xbb, 0xd3, 0x9d, 0xd3, 0xe3, 0xd2, 0x0e, 0xd4, 0x98, 0xd9, 0xd4, 0xd6, 0x8a, 0xd1, 0x46, 0xcf, 0x10, 0xcf, 0x3d, 0xd0, 0xd2, 0xd1, 0x63, 0xd3, 0xf7, 0xd4, 0x0d, 0xd6, 0x97, 0xd7, 0x88, 0xd8, 0x10, 0xdc, 0x14, 0xe3, 0x72, 0xe6, 0xe4, 0xe8, 0x76, 0xeb, 0x6b, 0xee, 0xac, 0xf1, 0xee, 0xf4, 0x49, 0xf8, 0x3e, 0xfb, 0x63, 0xff, 0xff, 0x06, 0x73, 0x07, 0x42, 0x08, 0xff, 0x0c, 0x3e, 0x0c, 0x5a, 0x0b, 0x8c, 0x0d, 0xa3, 0x10, 0x56, 0x15, 0x8d, 0x18, 0x79, 0x1d, 0xd4, 0x1e, 0x33, 0x33, 0x19, 0x42, 0xd1, 0x2d, 0xaa, 0x1c, 0xb2, 0x16, 0x05, 0x1a, 0x52, 0x20, 0xd2, 0x27, 0xda, 0x2d, 0x5d, 0x33, 0x56, 0x37, 0x1b, 0x39, 0x6b, 0x39, 0x1a, 0x3c, 0x07, 0x3f, 0xa4, 0x3b, 0xdf, 0x38, 0xa5, 0x37, 0xa5, 0x37, 0x1c, 0x38, 0xa2, 0x38, 0x12, 0x39, 0x1e, 0x39, 0x2c, 0x39, 0xa7, 0x38, 0x4a, 0x38, 0x85, 0x37, 0xe8, 0x36, 0xad, 0x35, 0xda, 0x34, 0x14, 0x33, 0xd4, 0x34, 0x50, 0x39, 0xad, 0x30, 0x14, 0x37, 0xbc, 0x33, 0xf3, 0x24, 0x5f, 0x1c, 0xc4, 0x1b, 0xe4, 0x19, 0x9a, 0x29, 0x0b, 0x45, 0xb0, 0x30, 0x12, 0x16, 0xf4, 0x04, 0x3f, 0x02, 0x36, 0x19, 0x10, 0x1b, 0x49, 0x09, 0xcd, 0x02, 0xa0, 0x01, 0x07, 0x05, 0xc7, 0x07, 0x3a, 0x0a, 0x9d, 0x0a, 0x22, 0x0a, 0xd0, 0x07, 0x9c, 0x05, 0x3f, 0x03, 0xa1, 0x00, 0x42, 0xfe, 0x01, 0xfd, 0xe9, 0xf9, 0x3c, 0xf5, 0xf0, 0xf2, 0xae, 0xf0, 0xf8, 0x10, 0xb8, 0x0d, 0x84, 0xe6, 0xf9, 0xd2, 0x25, 0xcd, 0xf9, 0xd1, 0x6a, 0xd8, 0xd5, 0xde, 0x5c, 0xe4, 0x93, 0xe6, 0x44, 0xe9, 0x51, 0xea, 0x38, 0xfa, 0x29, 0x0e, 0xd4, 0xef, 0x96, 0xe3, 0x36, 0xe8, 0x79, 0xd9, 0x01, 0xc9, 0x27, 0xd6, 0xbd, 0xd7, 0x4b, 0xca, 0xa6, 0xca, 0xef, 0xd1, 0xaa, 0xda, 0x6a, 0xe2, 0xa4, 0xec, 0x6f, 0x08, 0x88, 0x0f, 0x5a, 0xff, 0xe5, 0xe8, 0xac, 0xd3, 0xe9, 0xd1, 0x80, 0xd8, 0x8a, 0xe0, 0xd0, 0xe8, 0x53, 0xef, 0xac, 0xf6, 0x0a, 0xfa, 0x8d, 0xfb, 0xe9, 0xfb, 0xc5, 0xfd, 0xe7, 0xfd, 0x57, 0x04, 0x6f, 0x09, 0xae, 0x12, 0xd3, 0x1f, 0xcb, 0x04, 0xb1, 0xed, 0xad, 0xe7, 0x7f, 0xec, 0x3e, 0xf6, 0x63, 0xff, 0xfe, 0x07, 0xd8, 0x0d, 0xba, 0x12, 0xbf, 0x14, 0x5a, 0x17, 0x81, 0x17, 0xfb, 0x18, 0xba, 0x17, 0x22, 0x21, 0xad, 0x42, 0x59, 0x36, 0x03, 0x14, 0x1b, 0xfe, 0xe9, 0xfc, 0x77, 0x00, 0x3c, 0x1d, 0xa1, 0x35, 0xc5, 0x20, 0x14, 0x11, 0xd0, 0x10, 0x16, 0x15, 0x49, 0x19, 0x0b, 0x20, 0x6c, 0x22, 0x80, 0x21, 0xbc, 0x2e, 0x19, 0x45, 0x21, 0x2e, 0x79, 0x14, 0x8e, 0x0a, 0x0c, 0x0b, 0x93, 0x10, 0x75, 0x16, 0x20, 0x1b, 0x85, 0x1e, 0xc8, 0x1f, 0x2d, 0x20, 0xcb, 0x1e, 0x04, 0x1e, 0x64, 0x1b, 0xb3, 0x1a, 0xa9, 0x16, 0x93, 0x1c, 0xb2, 0x32, 0xd6, 0x1c, 0x63, 0x06, 0x7d, 0xf9, 0x99, 0x0e, 0x78, 0x23, 0x6e, 0x12, 0xfa, 0xf9, 0xbb, 0xe5, 0x8e, 0xe5, 0x30, 0xe9, 0x2b, 0xf4, 0x1d, 0xf8, 0x27, 0x0b, 0x9a, 0x1f, 0xce, 0x07, 0x3a, 0xf3, 0xe1, 0xe9, 0x71, 0xe8, 0x2f, 0xeb, 0x21, 0xed, 0x49, 0xf1, 0xbe, 0xee, 0xde, 0x06, 0x30, 0x11, 0xee, 0xee, 0xbd, 0xd8, 0xf3, 0xe2, 0x67, 0xde, 0x9d, 0xcd, 0x64, 0xcc, 0x77, 0xcd, 0x61, 0xd6, 0xa8, 0xda, 0xd3, 0xf3, 0x83, 0xff, 0xeb, 0xe3, 0x02, 0xce, 0xb2, 0xc4, 0x78, 0xc6, 0x37, 0xcb, 0x21, 0xd1, 0x74, 0xd5, 0x8c, 0xd8, 0xd0, 0xd9, 0x44, 0xda, 0x1c, 0xda, 0x19, 0xda, 0xa1, 0xdc, 0xe4, 0xda, 0xeb, 0xd6, 0xc1, 0xd4, 0xab, 0xd3, 0xbb, 0xd3, 0x9c, 0xd4, 0xaa, 0xd7, 0x82, 0xd9, 0x24, 0xd7, 0xcc, 0xd7, 0x82, 0xd6, 0xeb, 0xd9, 0xfd, 0xd6, 0x72, 0xf1, 0x9c, 0x01, 0xd8, 0xe3, 0x68, 0xcf, 0x17, 0xc7, 0xff, 0xc9, 0xc2, 0xd2, 0x05, 0xda, 0xc1, 0xf7, 0xe5, 0x0a, 0x5c, 0xf0, 0x29, 0xde, 0x7b, 0xd8, 0xa8, 0xdc, 0x3e, 0xe4, 0xf6, 0xeb, 0x8c, 0xf2, 0x5b, 0xf7, 0x39, 0xfb, 0x07, 0xfd, 0x89, 0xff, 0x14, 0x00, 0x4c, 0x08, 0xef, 0x0d, 0x54, 0x04, 0x29, 0x00, 0x5b, 0xfd, 0x4e, 0x01, 0xc5, 0x00, 0x20, 0x1e, 0x22, 0x2e, 0x11, 0x0e, 0x9a, 0xfa, 0x19, 0xf4, 0x0c, 0xfb, 0x53, 0x07, 0x61, 0x0d, 0x0f, 0x10, 0xd9, 0x13, 0x7c, 0x16, 0xb2, 0x19, 0xf4, 0x1b, 0x1e, 0x1e, 0x01, 0x1f, 0x59, 0x21, 0x5b, 0x20, 0xf8, 0x1f, 0xbd, 0x1d, 0xbc, 0x24, 0xc8, 0x45, 0x5f, 0x3f, 0xc2, 0x27, 0x86, 0x18, 0x17, 0x0a, 0xed, 0xfe, 0xc5, 0xfc, 0x0c, 0x05, 0x80, 0x0f, 0xe9, 0x19, 0x02, 0x21, 0x12, 0x26, 0x7f, 0x28, 0x39, 0x29, 0x9d, 0x28, 0x59, 0x27, 0x97, 0x25, 0xab, 0x23, 0xbf, 0x21, 0xec, 0x1f, 0x43, 0x1e, 0xc8, 0x1c, 0x70, 0x1b, 0x3a, 0x1a, 0x10, 0x19, 0x08, 0x18, 0xf3, 0x16, 0x0e, 0x16, 0xae, 0x14, 0xf0, 0x13, 0xe6, 0x12, 0x3e, 0x12, 0xee, 0x10, 0x1d, 0x10, 0xba, 0x0e, 0xaf, 0x0d, 0xf4, 0x0b, 0xaa, 0x0e, 0x7f, 0x29, 0xb0, 0x1e, 0xd6, 0x01, 0x5b, 0xf3, 0x39, 0xf0, 0xc9, 0xf2, 0x8d, 0xfc, 0xe0, 0x1d, 0x1b, 0x21, 0xed, 0x08, 0x18, 0xee, 0xa1, 0xe2, 0x36, 0xe5, 0x1c, 0xeb, 0x84, 0xf4, 0x6e, 0xf8, 0xf7, 0x0e, 0x4d, 0x15, 0xc8, 0xff, 0x2f, 0xf4, 0x83, 0xef, 0x9f, 0xf0, 0x4e, 0xf3, 0x97, 0xf7, 0x2e, 0x00, 0x11, 0x0b, 0xdb, 0xff, 0xee, 0xf2, 0x42, 0xec, 0x9b, 0xe7, 0xd1, 0xe8, 0x87, 0xec, 0xbc, 0xf0, 0xec, 0xf5, 0xf5, 0xfc, 0x32, 0x00, 0xf5, 0xfb, 0x11, 0xf1, 0x40, 0xf1, 0xcd, 0x0b, 0x9a, 0x05, 0x33, 0xeb, 0x57, 0xe2, 0x43, 0xdf, 0x50, 0xeb, 0xf7, 0x07, 0x03, 0x02, 0xc1, 0xf7, 0x78, 0x01, 0x22, 0x00, 0xf8, 0xf9, 0x5b, 0xe9, 0x71, 0xed, 0x32, 0xfb, 0x93, 0xf1, 0x1c, 0xec, 0x2b, 0xee, 0x99, 0xf5, 0x49, 0xfd, 0xcb, 0x03, 0x34, 0x07, 0x11, 0x08, 0x87, 0x08, 0xe7, 0x08, 0x10, 0x09, 0xc7, 0x08, 0x81, 0x08, 0xac, 0x08, 0xbe, 0x08, 0x10, 0x09, 0xd2, 0x08, 0x58, 0x09, 0x2f, 0x09, 0xec, 0x0c, 0xc6, 0x0f, 0x12, 0x20, 0x29, 0x2a, 0xf3, 0x10, 0xe8, 0xf7, 0x5c, 0xee, 0x6b, 0xf2, 0xe4, 0xf9, 0xd9, 0x01, 0xde, 0x08, 0x87, 0x0e, 0xf3, 0x11, 0x8e, 0x13, 0x72, 0x14, 0x35, 0x14, 0xef, 0x13, 0x2a, 0x15, 0xc7, 0x2e, 0xdd, 0x31, 0x1d, 0x1e, 0x96, 0x09, 0x48, 0xf3, 0x3c, 0xec, 0x90, 0xf0, 0x1d, 0xf9, 0x5f, 0x03, 0x87, 0x08, 0x21, 0x1f, 0xe5, 0x31, 0x11, 0x1e, 0xba, 0x05, 0xc2, 0xf8, 0xf1, 0xf7, 0xa0, 0xfb, 0x15, 0x01, 0x72, 0x05, 0x87, 0x08, 0xdf, 0x09, 0xfe, 0x09, 0x98, 0x09, 0xb1, 0x08, 0x37, 0x07, 0x00, 0x05, 0x91, 0x03, 0x90, 0x01, 0xa1, 0x00, 0x94, 0xfe, 0x1e, 0xfe, 0xb6, 0xfb, 0x13, 0xfc, 0x4c, 0xf8, 0xe1, 0x01, 0x5c, 0x15, 0xb0, 0x05, 0x34, 0xf7, 0xbd, 0xe6, 0x29, 0xdd, 0x47, 0xde, 0x04, 0xe2, 0xad, 0xeb, 0x77, 0x09, 0x8b, 0x04, 0x6b, 0xeb, 0x91, 0xe0, 0xcf, 0xdd, 0x82, 0xe1, 0xf3, 0xe5, 0x5c, 0xea, 0x55, 0xed, 0x8e, 0xee, 0x31, 0xef, 0x34, 0xee, 0x87, 0xee, 0x7f, 0xeb, 0x9b, 0xf3, 0x07, 0x0d, 0xc2, 0xfb, 0x06, 0xe2, 0x01, 0xd5, 0xb2, 0xce, 0xa4, 0xd1, 0xf0, 0xd6, 0x0a, 0xde, 0x47, 0xe3, 0x97, 0xe7, 0xbd, 0xe9, 0x4a, 0xeb, 0xbf, 0xeb, 0x3d, 0xeb, 0x3b, 0xeb, 0x0a, 0xec, 0x69, 0x01, 0xa1, 0xf9, 0x3b, 0xf5, 0x22, 0xee, 0x0f, 0xd7, 0x46, 0xd0, 0x46, 0xd2, 0xa3, 0xd9, 0x40, 0xe2, 0x71, 0xe7, 0xdc, 0xf4, 0x2c, 0x0f, 0xbb, 0x03, 0x27, 0xfd, 0x6b, 0xf3, 0x31, 0xe1, 0xf2, 0xd8, 0xdc, 0xda, 0xc1, 0xe2, 0x78, 0xeb, 0xb8, 0xf2, 0xa5, 0xf8, 0x81, 0xfb, 0x44, 0xff, 0xe7, 0xfd, 0x1c, 0x13, 0x1f, 0x1a, 0xf0, 0xff, 0x02, 0xf2, 0x28, 0xed, 0x59, 0xf0, 0x5f, 0xf6, 0x1d, 0xff, 0x45, 0x01, 0x2b, 0x02, 0x39, 0x03, 0xb8, 0x04, 0x7a, 0x06, 0xd8, 0x07, 0xfc, 0x08, 0xc5, 0x09, 0x72, 0x0a, 0xea, 0x0a, 0x71, 0x0b, 0xb0, 0x0b, 0x3c, 0x0c, 0xd7, 0x0c, 0x79, 0x0d, 0xf0, 0x0d, 0x64, 0x0e, 0xe4, 0x0e, 0x38, 0x0f, 0xbf, 0x0f, 0xe4, 0x14, 0xe2, 0x2d, 0xc7, 0x28, 0x54, 0x0b, 0x1f, 0xfd, 0x16, 0xfa, 0x68, 0xff, 0xbe, 0x05, 0xb4, 0x0c, 0x74, 0x11, 0x2d, 0x15, 0xaf, 0x16, 0x0c, 0x18, 0x1d, 0x18, 0x3c, 0x18, 0xcf, 0x16, 0xe2, 0x18, 0xdf, 0x1d, 0xd5, 0x17, 0xbb, 0x11, 0xd6, 0x0e, 0x36, 0x0e, 0xc7, 0x0e, 0xa1, 0x0f, 0x76, 0x10, 0xfb, 0x10, 0x44, 0x11, 0x2d, 0x11, 0x02, 0x11, 0xa5, 0x10, 0x2e, 0x10, 0x97, 0x0f, 0x14, 0x0f, 0x90, 0x0e, 0x2a, 0x0e, 0x1d, 0x0d, 0xa7, 0x0c, 0x7e, 0x0b, 0x69, 0x0b, 0x0f, 0x0a, 0x90, 0x0a, 0x92, 0x08, 0x14, 0x0a, 0x12, 0x06, 0x6d, 0x16, 0x9c, 0x26, 0xb1, 0x0a, 0xdb, 0xfe, 0x5b, 0xf7, 0xfe, 0xf1, 0x32, 0xf3, 0x85, 0xf8, 0xf3, 0xfd, 0xf6, 0x01, 0x09, 0x1e, 0x48, 0x1e, 0x2d, 0x02, 0xb9, 0xf1, 0x78, 0xec, 0x6b, 0xf0, 0x91, 0xf5, 0x99, 0xfb, 0x38, 0xff, 0x01, 0x02, 0xd5, 0x02, 0x0d, 0x08, 0xdf, 0x1f, 0xa6, 0x1b, 0x12, 0x0b, 0xf2, 0xf6, 0xf4, 0xe4, 0x47, 0xe0, 0x3f, 0xef, 0xbd, 0xfb, 0x81, 0xf6, 0xd1, 0xf2, 0xc6, 0xff, 0x30, 0x0b, 0xf5, 0xfd, 0xe1, 0xf6, 0x99, 0xf9, 0xe8, 0xfb, 0xc8, 0xff, 0xe3, 0x05, 0x05, 0xfa, 0x36, 0x01, 0xba, 0x0d, 0xbe, 0x07, 0x5b, 0x01, 0xf1, 0xfb, 0x1e, 0xf5, 0x9d, 0xe9, 0x62, 0xf6, 0x95, 0xfc, 0xd0, 0xf4, 0x10, 0xf2, 0x59, 0xf6, 0xdc, 0xfb, 0xfd, 0x0b, 0xad, 0x10, 0x40, 0x04, 0x96, 0xff, 0x8f, 0xfc, 0x02, 0xff, 0xeb, 0x00, 0x56, 0x14, 0xf6, 0x14, 0xdc, 0x01, 0x22, 0xf7, 0x50, 0xf6, 0x24, 0x0c, 0xe9, 0x0f, 0x98, 0x00, 0x9e, 0xf6, 0xb6, 0xf4, 0xda, 0xf8, 0xb3, 0xfd, 0xbf, 0x06, 0x76, 0x0b, 0x1a, 0x09, 0x6a, 0x07, 0xb7, 0x06, 0x1f, 0x07, 0x77, 0x07, 0x07, 0x08, 0xf7, 0x08, 0xa8, 0x08, 0x90, 0x07, 0xda, 0x06, 0x66, 0x06, 0x2c, 0x06, 0x02, 0x06, 0xe3, 0x05, 0xc3, 0x05, 0x9f, 0x05, 0x73, 0x05, 0x46, 0x05, 0x0a, 0x05, 0xb2, 0x04, 0xcc, 0x04, 0x6c, 0x04, 0x60, 0x04, 0xa3, 0x03, 0xf1, 0x03, 0xc3, 0x02, 0x91, 0x03, 0x78, 0x01, 0xa5, 0x0e, 0x75, 0x14, 0xa9, 0x0a, 0x47, 0x0d, 0x7b, 0x04, 0x68, 0xf3, 0x5e, 0xe6, 0x7a, 0xe5, 0x23, 0xec, 0x80, 0xf6, 0x9a, 0xfa, 0xed, 0xfc, 0x87, 0xfe, 0x1a, 0x00, 0x6d, 0x00, 0x39, 0x01, 0x01, 0x00, 0xfc, 0xff, 0x83, 0xfd, 0x69, 0xfe, 0x7c, 0xfa, 0xdf, 0x02, 0x29, 0x13, 0x6e, 0x07, 0x17, 0xff, 0x28, 0xea, 0x0e, 0xe5, 0x7a, 0xe8, 0x3a, 0xe6, 0x80, 0xe4, 0xa2, 0xec, 0x39, 0xff, 0x34, 0x04, 0xf5, 0xfb, 0x7c, 0xf0, 0x4d, 0xe7, 0x56, 0xe3, 0xc1, 0xe5, 0xb6, 0xea, 0x33, 0xef, 0x5b, 0xf3, 0xbf, 0xf4, 0xd8, 0xf6, 0xea, 0xf5, 0xf3, 0x03, 0x4d, 0x0f, 0xe6, 0xfb, 0xcf, 0xea, 0x9a, 0xdf, 0xa9, 0xde, 0xc2, 0xe1, 0x8f, 0xe7, 0xa8, 0xeb, 0x9c, 0xf1, 0x79, 0xf7, 0xae, 0xf6, 0x88, 0xf1, 0x2b, 0xfc, 0x8c, 0x0a, 0x0c, 0xf9, 0x38, 0xe7, 0x54, 0xe0, 0xd1, 0xe1, 0x7f, 0xe6, 0xda, 0xeb, 0x89, 0xf0, 0xd9, 0xf3, 0x31, 0xf6, 0xa7, 0xf7, 0xa8, 0x0b, 0x78, 0x0e, 0x49, 0xfd, 0x4d, 0xed, 0xae, 0xe4, 0xa5, 0xe5, 0xc6, 0xe9, 0xea, 0xef, 0x98, 0xf4, 0xad, 0xf8, 0x3c, 0xfb, 0x27, 0xfd, 0x4b, 0xfe, 0xc9, 0xfe, 0xd5, 0xff, 0xf8, 0xff, 0xbf, 0xff, 0x73, 0xfe, 0xc8, 0x10, 0x1a, 0x19, 0x8e, 0x05, 0xd7, 0xf1, 0x7f, 0xe9, 0x1b, 0xed, 0x12, 0xf5, 0x5d, 0xf9, 0x43, 0xfd, 0x8b, 0x00, 0x2b, 0x04, 0x82, 0x05, 0x01, 0x0c, 0x3c, 0x21, 0x43, 0x16, 0x5b, 0x02, 0x15, 0xfa, 0x6d, 0xfa, 0x19, 0x0f, 0x13, 0x15, 0x67, 0x06, 0x61, 0xfb, 0xe6, 0xf8, 0xa5, 0xfc, 0xcd, 0x01, 0x90, 0x07, 0x0c, 0x0b, 0x2d, 0x0e, 0xb9, 0x0e, 0x51, 0x10, 0xe7, 0x0e, 0xf2, 0x14, 0x4a, 0x29, 0xef, 0x1e, 0x78, 0x11, 0xbf, 0x05, 0xa5, 0xfe, 0xef, 0x03, 0x7f, 0x03, 0x4d, 0xfd, 0xe9, 0xfc, 0xf2, 0x00, 0x1c, 0x06, 0x27, 0x0b, 0xa2, 0x0e, 0xec, 0x10, 0xe3, 0x11, 0x11, 0x12, 0x5c, 0x12, 0x69, 0x11, 0xa7, 0x0f, 0x45, 0x0e, 0x1c, 0x0d, 0x71, 0x0c, 0x85, 0x0b, 0x6f, 0x0b, 0xc9, 0x0a, 0x17, 0x0b, 0x2f, 0x0a, 0xba, 0x0a, 0x52, 0x09, 0x6e, 0x0a, 0xc4, 0x07, 0x3e, 0x0f, 0x1a, 0x22, 0x31, 0x19, 0xb8, 0x10, 0x3b, 0x06, 0x21, 0xfe, 0x40, 0xfa, 0xf4, 0xf6, 0x43, 0xf1, 0xc8, 0xf0, 0x3a, 0xf6, 0xdd, 0xfc, 0x57, 0x03, 0xc2, 0x07, 0x97, 0x0a, 0xb0, 0x0b, 0xbd, 0x0b, 0xff, 0x0a, 0xef, 0x09, 0x9d, 0x08, 0x4a, 0x07, 0x04, 0x06, 0xeb, 0x04, 0xf5, 0x03, 0x2d, 0x03, 0x89, 0x02, 0x03, 0x02, 0x94, 0x01, 0x43, 0x01, 0xf7, 0x00, 0xc2, 0x00, 0x4d, 0x00, 0x97, 0x00, 0x83, 0x00, 0xad, 0x00, 0xe9, 0xff, 0x4d, 0x00, 0x3b, 0xff, 0x67, 0x00, 0x06, 0xfe, 0xaf, 0x0a, 0xc0, 0x1c, 0xee, 0x0a, 0x2e, 0xf5, 0xf7, 0xeb, 0x48, 0xec, 0x68, 0xf0, 0xea, 0xf5, 0x06, 0xfb, 0xfd, 0xfe, 0x2e, 0x01, 0xd1, 0x02, 0x1f, 0x04, 0xa6, 0x08, 0xbb, 0x04, 0xf8, 0x12, 0xc5, 0x11, 0xbd, 0xfd, 0x5f, 0xf3, 0x46, 0xf5, 0xa0, 0x09, 0x7f, 0x03, 0x30, 0xf6, 0x21, 0xf5, 0xfa, 0x04, 0x93, 0x03, 0x7e, 0xf8, 0x7b, 0xf5, 0x96, 0xf6, 0x05, 0xfb, 0xb5, 0xfe, 0x49, 0x02, 0x52, 0x04, 0x0b, 0x06, 0xcb, 0x06, 0x9b, 0x06, 0xee, 0x05, 0x4b, 0x05, 0xc3, 0x03, 0x7b, 0x03, 0xe3, 0x02, 0x90, 0x14, 0x65, 0x1a, 0x18, 0x0a, 0xcd, 0xf8, 0x9d, 0xec, 0xc7, 0xed, 0x62, 0xf0, 0x03, 0x03, 0xb4, 0x0c, 0xcf, 0x02, 0x0c, 0xfe, 0x77, 0x02, 0x27, 0x04, 0xe9, 0x08, 0xad, 0x09, 0xbb, 0xfc, 0x71, 0xfa, 0xb0, 0xfa, 0x80, 0xf6, 0xe2, 0xf6, 0xe6, 0xf8, 0x97, 0xfd, 0x68, 0xff, 0x35, 0x09, 0x23, 0x1a, 0x31, 0x13, 0xdc, 0x08, 0x7b, 0xfe, 0xda, 0xf5, 0x54, 0xf8, 0x99, 0xf9, 0xde, 0xf6, 0x9e, 0xf8, 0xcb, 0xf6, 0xf2, 0xf2, 0x39, 0xf5, 0xc4, 0xf7, 0xd7, 0xfc, 0x97, 0xfd, 0x02, 0x08, 0x18, 0x15, 0xcf, 0x07, 0xcc, 0xf8, 0x20, 0xf3, 0x42, 0xf2, 0x99, 0x02, 0x48, 0x04, 0xe1, 0xfb, 0x03, 0xfc, 0xe2, 0xf1, 0x18, 0xee, 0x81, 0xef, 0xd9, 0xf9, 0x79, 0xfe, 0xd5, 0xfa, 0x69, 0xf5, 0xe3, 0xf2, 0x81, 0xf2, 0x2c, 0xf5, 0x99, 0xf5, 0x81, 0x03, 0x20, 0x0c, 0x8e, 0x00, 0x1d, 0xf8, 0x2c, 0xed, 0x74, 0xe9, 0x71, 0xea, 0x20, 0xee, 0xc1, 0xf1, 0x03, 0xf5, 0x0c, 0xf7, 0x66, 0xf8, 0xf5, 0xf8, 0x15, 0xf9, 0xdd, 0xf8, 0xf5, 0xf9, 0xb6, 0xfb, 0x39, 0xf8, 0x78, 0xf6, 0x20, 0xf4, 0x1e, 0xf5, 0x29, 0xf3, 0x37, 0xfe, 0x4a, 0x06, 0xd3, 0xfc, 0x49, 0xfe, 0xd1, 0xf1, 0xe3, 0xea, 0x0c, 0xe7, 0x75, 0xec, 0xfc, 0xf5, 0xcb, 0xf2, 0x4c, 0xf0, 0xfc, 0xef, 0x36, 0xf3, 0x30, 0xf6, 0x84, 0xf9, 0x48, 0xfb, 0xe9, 0xfc, 0x09, 0xfd, 0xb9, 0xfd, 0x57, 0xfd, 0xb3, 0x03, 0x01, 0x12, 0xc6, 0x09, 0x5a, 0xf7, 0xfd, 0xec, 0x61, 0xeb, 0xcb, 0xee, 0x9f, 0xf3, 0x66, 0xf8, 0x11, 0xfc, 0xb8, 0xfe, 0x3e, 0x00, 0x58, 0x01, 0xd9, 0x01, 0x03, 0x02, 0xf0, 0x01, 0xd5, 0x01, 0xa9, 0x01, 0x9f, 0x01, 0x6c, 0x01, 0xa0, 0x01, 0xae, 0x01, 0x15, 0x02, 0x1b, 0x02, 0x93, 0x02, 0x91, 0x02, 0x23, 0x03, 0xb1, 0x02, 0x9a, 0x05, 0xfd, 0x11, 0x59, 0x0c, 0xc4, 0x00, 0xcf, 0xfc, 0x81, 0xfb, 0xcc, 0xfe, 0x9e, 0xff, 0xfa, 0x0f, 0xa8, 0x1b, 0xb7, 0x0d, 0x0e, 0xff, 0xd1, 0xf7, 0xcc, 0xf8, 0x91, 0xfc, 0x79, 0x01, 0x76, 0x05, 0x94, 0x08, 0x57, 0x0a, 0x5f, 0x0b, 0xcd, 0x0b, 0x8f, 0x0c, 0x24, 0x0c, 0x3f, 0x0b, 0x97, 0x0a, 0x27, 0x0a, 0x71, 0x09, 0x0f, 0x09, 0xbf, 0x08, 0x5f, 0x0c, 0x2f, 0x1c, 0x79, 0x1c, 0x55, 0x0e, 0x0c, 0xff, 0xd7, 0xf4, 0x63, 0xf4, 0x69, 0xf8, 0x88, 0xfe, 0xa7, 0x03, 0x00, 0x08, 0x97, 0x0a, 0xe0, 0x0c, 0x28, 0x0c, 0xb4, 0x17, 0x7e, 0x17, 0x44, 0x09, 0x51, 0x02, 0xab, 0xff, 0x09, 0x01, 0x91, 0x02, 0x73, 0x04, 0x0b, 0x06, 0x27, 0x07, 0xdf, 0x07, 0x0f, 0x08, 0x27, 0x08, 0xb3, 0x07, 0x67, 0x07, 0xb3, 0x06, 0x36, 0x08, 0x69, 0x18, 0xbd, 0x0f, 0xc7, 0x07, 0x78, 0x04, 0x6c, 0xf8, 0x9f, 0xf5, 0xcb, 0xf6, 0x1a, 0xfb, 0x33, 0x01, 0xb9, 0x03, 0x47, 0x04, 0x2f, 0x05, 0xfb, 0x12, 0xaa, 0x10, 0xd2, 0x01, 0x41, 0xfb, 0xa4, 0xfa, 0xf7, 0xfc, 0x6a, 0x01, 0x8f, 0x11, 0x20, 0x11, 0x3c, 0x04, 0xa9, 0xf7, 0x14, 0xf3, 0x21, 0xf5, 0x0e, 0xf9, 0xbd, 0xfd, 0xcd, 0x00, 0x9b, 0x03, 0x40, 0x04, 0x77, 0x05, 0x4f, 0x04, 0x27, 0x08, 0x43, 0x16, 0x1c, 0x0b, 0xb2, 0xfe, 0x12, 0xfb, 0x41, 0xf8, 0x84, 0xf7, 0xfd, 0xf9, 0x1d, 0xfb, 0xe0, 0x05, 0x6a, 0x14, 0x06, 0x0c, 0x23, 0xfd, 0x08, 0xf4, 0x62, 0xf3, 0x4c, 0xf6, 0x18, 0x08, 0xe1, 0x0d, 0xfe, 0x06, 0xa4, 0x00, 0xed, 0xf8, 0x5e, 0xf4, 0x6c, 0xf5, 0x99, 0xf7, 0x00, 0x04, 0x9d, 0x0d, 0xcf, 0x03, 0x8b, 0xfd, 0x29, 0xfb, 0x49, 0xfc, 0x39, 0xfe, 0x10, 0x00, 0xd2, 0x01, 0x29, 0x02, 0x33, 0x03, 0x27, 0x02, 0x0c, 0x0e, 0x0f, 0x16, 0x8f, 0x0b, 0xea, 0x01, 0x7e, 0xfb, 0xb8, 0xf4, 0xce, 0xf1, 0x1e, 0xfa, 0x3a, 0xfa, 0x67, 0xf5, 0x03, 0xf5, 0xaf, 0xf7, 0xba, 0xfb, 0x2f, 0xff, 0xc6, 0x01, 0x37, 0x03, 0xdb, 0x03, 0xb3, 0x03, 0x3f, 0x03, 0x99, 0x02, 0xd2, 0x01, 0x0c, 0x01, 0x50, 0x00, 0xad, 0xff, 0x21, 0xff, 0xae, 0xfe, 0x4e, 0xfe, 0xfd, 0xfd, 0xbb, 0xfd, 0x85, 0xfd, 0x53, 0xfd, 0x2b, 0xfd, 0x05, 0xfd, 0xdf, 0xfc, 0xbd, 0xfc, 0x97, 0xfc, 0x77, 0xfc, 0x55, 0xfc, 0x39, 0xfc, 0x11, 0xfc, 0xf6, 0xfb, 0xfd, 0xfb, 0xda, 0xfb, 0x99, 0xfb, 0x54, 0xfb, 0x25, 0xfb, 0x09, 0xfb, 0x0e, 0xfb, 0x2d, 0xfb, 0x1d, 0xfb, 0x9d, 0xfa, 0x2c, 0xfa, 0xbc, 0xf9, 0xb6, 0xf9, 0xb0, 0xf9, 0xe4, 0xf9, 0xbd, 0xf9, 0xf1, 0xf9, 0x9a, 0xf9, 0xdd, 0xf9, 0xac, 0xfa, 0x90, 0xff, 0x65, 0x0d, 0xed, 0x08, 0xe3, 0xf5, 0xbc, 0xee, 0xee, 0xf1, 0x22, 0xed, 0xa1, 0xf3, 0x6c, 0xf8, 0x58, 0xf1, 0x9a, 0xee, 0x48, 0xef, 0x41, 0xf3, 0x59, 0xf8, 0x59, 0xfd, 0x57, 0x07, 0xaa, 0x09, 0xf7, 0x02, 0xd9, 0xf8, 0xf1, 0xee, 0x0c, 0xed, 0x01, 0xef, 0xfb, 0xf2, 0xbb, 0xf6, 0xe9, 0xf9, 0xea, 0xfb, 0x23, 0xfd, 0x85, 0xfd, 0xdf, 0xfd, 0x91, 0xfd, 0x87, 0xfd, 0xad, 0xfc, 0xbf, 0xfc, 0x9c, 0xfb, 0x6b, 0xfc, 0x4e, 0xfa, 0xb2, 0x04, 0x2f, 0x0f, 0x62, 0x00, 0xec, 0xf3, 0x8e, 0xee, 0x77, 0xef, 0x96, 0xf2, 0x8f, 0xf6, 0xe4, 0xf9, 0xb3, 0xfc, 0xb1, 0xfe, 0x57, 0xff, 0x13, 0x00, 0xf0, 0xff, 0x70, 0x00, 0xb0, 0xff, 0x97, 0x00, 0xd3, 0xfe, 0x5a, 0x0a, 0xf8, 0x0e, 0x16, 0x00, 0xd1, 0xf8, 0xea, 0xf5, 0x3c, 0xf7, 0x89, 0xf9, 0x91, 0xfc, 0x14, 0xff, 0xfb, 0x00, 0x6b, 0x02, 0x11, 0x03, 0xb9, 0x09, 0x37, 0x0a, 0xf1, 0x03, 0x53, 0x00, 0xb0, 0xff, 0x36, 0xff, 0x13, 0x01, 0x67, 0x00, 0x97, 0x0d, 0x11, 0x15, 0x16, 0x0b, 0x5a, 0x08, 0xb7, 0xfe, 0xd0, 0xf7, 0x3c, 0xf5, 0x8e, 0xf7, 0xa0, 0x06, 0xd1, 0x0c, 0xc3, 0x02, 0x09, 0x01, 0xf0, 0x07, 0xce, 0x0a, 0x37, 0x0c, 0x96, 0x05, 0xd3, 0xfd, 0x85, 0xfd, 0x75, 0x02, 0x76, 0x04, 0x80, 0x0e, 0xd8, 0x0e, 0xbf, 0x0c, 0xf7, 0x09, 0xe5, 0x00, 0xdd, 0xfc, 0x21, 0xfd, 0x17, 0x00, 0x7d, 0x03, 0x8b, 0x06, 0x0a, 0x09, 0xf6, 0x08, 0xf4, 0x0d, 0x3a, 0x17, 0x3e, 0x0f, 0x73, 0x04, 0xb6, 0xff, 0xf0, 0x01, 0xff, 0x02, 0xf3, 0x02, 0x96, 0x0c, 0x3f, 0x0f, 0x42, 0x0a, 0xc0, 0x04, 0x53, 0xfd, 0x1c, 0xfb, 0x51, 0xfc, 0xa5, 0xff, 0x27, 0x02, 0x1f, 0x06, 0x16, 0x0d, 0x4f, 0x0d, 0x6a, 0x11, 0x18, 0x0b, 0xcd, 0x00, 0x5f, 0xfd, 0xcd, 0xfc, 0xd9, 0xfe, 0x5b, 0x04, 0xc0, 0x05, 0xd3, 0x04, 0xc7, 0x03, 0x7e, 0x06, 0x9a, 0x11, 0xf8, 0x0f, 0x0e, 0x09, 0x59, 0x03, 0x2b, 0xfc, 0x32, 0xf8, 0x52, 0xf7, 0x11, 0xf9, 0x71, 0xfc, 0x05, 0x00, 0x87, 0x02, 0xa3, 0x04, 0x7b, 0x05, 0xdc, 0x06, 0x5c, 0x0d, 0x94, 0x0a, 0x3d, 0x03, 0x88, 0x00, 0x84, 0xfe, 0x99, 0x02, 0x27, 0x0e, 0x92, 0x08, 0xbb, 0xfd, 0xb8, 0xf8, 0x10, 0xf8, 0x65, 0xfa, 0xdd, 0xfc, 0x63, 0xff, 0x2b, 0x01, 0x57, 0x02, 0xe3, 0x02, 0xe9, 0x02, 0xa3, 0x04, 0x76, 0x04, 0x38, 0x0b, 0x0a, 0x0f, 0x3a, 0x09, 0xba, 0xff, 0xaa, 0xf5, 0x38, 0xf3, 0x69, 0xfd, 0x45, 0x01, 0x79, 0xfa, 0x21, 0xf8, 0x95, 0xf8, 0xb6, 0xfb, 0x45, 0xff, 0x58, 0x01, 0x03, 0x02, 0x59, 0x02, 0x57, 0x02, 0x5b, 0x04, 0x20, 0x0c, 0x3c, 0x0e, 0xbf, 0x05, 0x52, 0xfa, 0x75, 0xfc, 0x5b, 0x00, 0x2e, 0xf9, 0xfe, 0xf4, 0xf1, 0xf4, 0xe6, 0xf7, 0x0e, 0xfb, 0x18, 0xfe, 0x20, 0x00, 0x9c, 0x01, 0x0b, 0x02, 0x8f, 0x02, 0xcd, 0x02, 0x0d, 0x02, 0xbb, 0x00, 0x14, 0x00, 0x32, 0xff, 0xf5, 0x00, 0xb5, 0x03, 0xcc, 0xff, 0x55, 0xfd, 0xc1, 0xfb, 0x0d, 0xfc, 0xc4, 0xfa, 0x78, 0x04, 0x44, 0x09, 0xef, 0xfd, 0x7c, 0xf7, 0xd7, 0xfd, 0x5e, 0xfe, 0x78, 0xf6, 0x68, 0xf6, 0x96, 0xf6, 0x9f, 0x01, 0xb8, 0x06, 0x7b, 0x02, 0x46, 0xfe, 0xea, 0xf7, 0x9f, 0xf5, 0xf9, 0xf8, 0x6f, 0xfd, 0xed, 0xf8, 0x20, 0xf6, 0xcb, 0xf6, 0xc2, 0xf8, 0x05, 0xfb, 0xfd, 0xfc, 0x43, 0xfe, 0x0c, 0xff, 0x4b, 0xff, 0x41, 0xff, 0xdb, 0xfe, 0x6d, 0xfe, 0xc3, 0xfd, 0x45, 0xfd, 0x8f, 0xfc, 0x95, 0xfd, 0x4d, 0x0a, 0xb9, 0x08, 0x01, 0xfb, 0xc4, 0xf1, 0x9a, 0xef, 0x29, 0xf3, 0x24, 0xf8, 0x7e, 0xff, 0xd7, 0xff, 0xb1, 0xfe, 0x89, 0xf7, 0x1f, 0xf2, 0xfa, 0xf1, 0x2b, 0xf4, 0x63, 0xf7, 0x16, 0xfa, 0x25, 0xfc, 0x01, 0xfd, 0xc3, 0xfd, 0xc5, 0xfd, 0xcd, 0xfd, 0x61, 0xfd, 0x53, 0xfd, 0x85, 0xfc, 0xbf, 0xfc, 0x90, 0xfb, 0x3f, 0x01, 0x07, 0x0a, 0x35, 0xff, 0x2e, 0xf9, 0x7f, 0xfd, 0x01, 0xf7, 0xb9, 0xf1, 0x57, 0xf6, 0x8f, 0xf6, 0x47, 0xf4, 0x44, 0xf6, 0x46, 0x01, 0x14, 0x05, 0xd6, 0x00, 0x04, 0xfa, 0x32, 0xf6, 0x64, 0xf7, 0x0e, 0xf8, 0x49, 0xfb, 0x15, 0x03, 0x6e, 0x00, 0x85, 0xfa, 0x16, 0xf9, 0x95, 0xf9, 0xa2, 0xfb, 0x51, 0xfd, 0xed, 0xfe, 0xd8, 0xff, 0x76, 0x00, 0x97, 0x00, 0xb0, 0x00, 0x98, 0x00, 0x70, 0x00, 0x3d, 0x00, 0x14, 0x00, 0xfb, 0xff, 0xe7, 0xff, 0xe1, 0xff, 0xed, 0xff, 0xf3, 0xff, 0x0b, 0x00, 0x16, 0x00, 0x18, 0x01, 0x9a, 0x01, 0xd7, 0x00, 0x59, 0x00, 0x23, 0x00, 0x4a, 0x00, 0x8b, 0x00, 0xe3, 0x00, 0x39, 0x01, 0x8a, 0x01, 0xd0, 0x01, 0x0b, 0x02, 0x3f, 0x02, 0x71, 0x02, 0xc9, 0x02, 0xf3, 0x02, 0xdf, 0x02, 0xed, 0x02, 0xe7, 0x02, 0x0d, 0x03, 0x05, 0x03, 0x5f, 0x03, 0x53, 0x03, 0xc3, 0x03, 0x6d, 0x03, 0xf7, 0x04, 0xb5, 0x08, 0xc8, 0x06, 0xab, 0x04, 0x09, 0x0a, 0x72, 0x0d, 0xc0, 0x07, 0xbd, 0x02, 0xbc, 0x00, 0x03, 0xfe, 0x6c, 0xf9, 0x4d, 0xf8, 0x5e, 0xfa, 0x37, 0xfe, 0xae, 0x01, 0xfe, 0x04, 0xdf, 0x06, 0x19, 0x09, 0xef, 0x09, 0x3e, 0x0c, 0xaf, 0x0b, 0xa6, 0x07, 0x5f, 0x04, 0xf0, 0x08, 0xf3, 0x10, 0x3e, 0x09, 0x37, 0x00, 0x92, 0xfb, 0x6d, 0xfb, 0x7f, 0xfd, 0x88, 0x00, 0xaf, 0x03, 0xd6, 0x0e, 0x78, 0x12, 0xa8, 0x0b, 0xeb, 0x02, 0xdc, 0xfb, 0x2a, 0xfb, 0x81, 0xfc, 0x8d, 0xff, 0xfa, 0x01, 0x78, 0x04, 0x7b, 0x05, 0xb7, 0x06, 0x56, 0x06, 0x3f, 0x07, 0x43, 0x05, 0xe0, 0x0c, 0xab, 0x12, 0xcf, 0x0c, 0x38, 0x08, 0x5e, 0xfe, 0xab, 0xf7, 0x9f, 0xf6, 0xea, 0xf8, 0x93, 0xfd, 0xaf, 0x09, 0x9f, 0x09, 0x57, 0x02, 0x69, 0xff, 0x49, 0xfe, 0xdb, 0x02, 0x07, 0x06, 0x2f, 0x03, 0x4a, 0x09, 0x1d, 0x0c, 0x5f, 0x05, 0x4c, 0x00, 0xf1, 0xfc, 0x71, 0x00, 0xbb, 0x01, 0x17, 0xfc, 0x2e, 0xfe, 0x18, 0x04, 0xf8, 0x00, 0x2d, 0xfd, 0x37, 0xfc, 0x8d, 0xfd, 0xc6, 0xff, 0x9a, 0x01, 0x7b, 0x02, 0x53, 0x03, 0x33, 0x03, 0x8e, 0x05, 0x6f, 0x0e, 0x59, 0x09, 0xb3, 0x03, 0xcf, 0x01, 0x05, 0xfa, 0x51, 0xfe, 0xa7, 0xff, 0xa3, 0xfe, 0x12, 0xfe, 0x7a, 0xf9, 0xdd, 0xf8, 0x14, 0xfa, 0xad, 0xfc, 0xe1, 0xfe, 0xb8, 0x00, 0x1b, 0x02, 0xf9, 0x02, 0xcf, 0x02, 0x15, 0x02, 0xb4, 0x01, 0x84, 0x01, 0x4f, 0x01, 0x55, 0x00, 0x91, 0x00, 0xb2, 0x04, 0xf7, 0x02, 0xcd, 0xfd, 0x0f, 0xfe, 0xc6, 0x05, 0xdb, 0x05, 0x77, 0xff, 0x14, 0xf9, 0xc1, 0xf4, 0x27, 0xf5, 0xaa, 0xf6, 0x58, 0x01, 0x2f, 0x06, 0x1a, 0xff, 0xd4, 0xfa, 0x89, 0xfa, 0xf6, 0x01, 0x3f, 0x02, 0x9d, 0xfd, 0xa9, 0xfa, 0xbc, 0xf9, 0xc1, 0xfa, 0x2d, 0xfc, 0xaf, 0xfd, 0xdb, 0xfe, 0x53, 0xff, 0xd7, 0xff, 0x65, 0xff, 0x43, 0x07, 0xe0, 0x0b, 0x97, 0x03, 0xdd, 0xf9, 0xb1, 0xf4, 0x2f, 0xf4, 0x23, 0xf6, 0x64, 0xf8, 0x39, 0xfb, 0x11, 0xfc, 0xff, 0x02, 0x90, 0x0a, 0x39, 0x03, 0x09, 0xfb, 0x7e, 0xf6, 0x59, 0xf6, 0x81, 0xf7, 0xc1, 0xf9, 0x3e, 0xfb, 0x61, 0xfd, 0x73, 0x02, 0x1f, 0x04, 0x2b, 0x06, 0x5a, 0xff, 0xd7, 0xf7, 0x41, 0xf6, 0x71, 0xf9, 0x16, 0xfa, 0x28, 0xfb, 0xd9, 0xfd, 0x61, 0xfc, 0x8e, 0xf9, 0xf1, 0xf7, 0xbd, 0xf8, 0xc8, 0xf9, 0xb6, 0xfb, 0x67, 0xfc, 0x5f, 0x03, 0x7d, 0x09, 0x35, 0x02, 0xa4, 0xfa, 0x39, 0xfc, 0x3d, 0xfc, 0x00, 0xfb, 0x89, 0xf8, 0x71, 0xf4, 0xe3, 0xf3, 0x8e, 0xf5, 0x5a, 0xf8, 0xd6, 0xfa, 0x19, 0xfd, 0x45, 0xfe, 0x2f, 0xff, 0x23, 0xff, 0x69, 0xff, 0xb4, 0xfe, 0xf6, 0xfe, 0x7f, 0xfd, 0xad, 0x02, 0x1a, 0x09, 0xf9, 0xff, 0x20, 0xf9, 0xd8, 0xf5, 0x9f, 0xf6, 0x6a, 0xf7, 0xd9, 0xfc, 0x48, 0x05, 0x70, 0x00, 0x82, 0xfa, 0x4a, 0xf8, 0xa5, 0xf8, 0x2d, 0xfa, 0xda, 0xfb, 0x61, 0xfd, 0x6a, 0xfe, 0x1e, 0xff, 0x66, 0xff, 0xa5, 0xff, 0xb1, 0xff, 0xa8, 0xff, 0x8c, 0xff, 0x6f, 0xff, 0x57, 0xff, 0x42, 0xff, 0x39, 0xff, 0x36, 0xff, 0x3f, 0xff, 0x50, 0xff, 0x5a, 0xff, 0x74, 0xff, 0x8a, 0xff, 0xa5, 0xff, 0xc2, 0xff, 0x2e, 0x00, 0xad, 0x00, 0x4f, 0x00, 0x3a, 0x00, 0xf9, 0xff, 0x3d, 0x00, 0x16, 0x00, 0xa7, 0x00, 0x22, 0x00, 0xb9, 0x03, 0x87, 0x0e, 0x81, 0x0a, 0x4d, 0x03, 0x91, 0xfd, 0xd1, 0xf6, 0x3f, 0xf6, 0xb9, 0xf7, 0xc1, 0xfc, 0x1b, 0x01, 0xb0, 0x05, 0x31, 0x09, 0x12, 0x05, 0x22, 0x01, 0x24, 0xff, 0x7b, 0xff, 0x89, 0x00, 0xc9, 0x01, 0xdb, 0x02, 0xbf, 0x03, 0x54, 0x04, 0xa3, 0x04, 0xc3, 0x04, 0xf2, 0x04, 0x7f, 0x04, 0x97, 0x04, 0xf3, 0x03, 0x02, 0x0c, 0x27, 0x0f, 0x45, 0x08, 0xf7, 0x01, 0xa1, 0xfc, 0x79, 0xfa, 0xe6, 0x00, 0xab, 0x05, 0xf3, 0x03, 0xb0, 0x00, 0xbb, 0xfc, 0xd7, 0xfc, 0xe3, 0x03, 0xda, 0x09, 0x5e, 0x08, 0x8e, 0x05, 0x16, 0x00, 0x9c, 0xfe, 0x84, 0xff, 0x54, 0x04, 0x72, 0x0a, 0xd7, 0x06, 0x1d, 0x02, 0x44, 0x00, 0x67, 0x00, 0xa0, 0x01, 0xff, 0x02, 0x34, 0x04, 0xfa, 0x04, 0x6a, 0x05, 0x76, 0x05, 0x77, 0x05, 0x38, 0x05, 0x9a, 0x05, 0x8a, 0x05, 0x90, 0x04, 0x0b, 0x04, 0x8f, 0x03, 0x23, 0x03, 0xcb, 0x02, 0xb1, 0x02, 0x9f, 0x02, 0xb7, 0x02, 0xd3, 0x02, 0xe3, 0x02, 0xe9, 0x02, 0xc3, 0x02, 0xfb, 0x02, 0x89, 0x02, 0x07, 0x06, 0x34, 0x08, 0xdc, 0x0b, 0x37, 0x07, 0xd5, 0xfd, 0xd1, 0xf9, 0x12, 0xff, 0xb7, 0x02, 0x7f, 0xfd, 0xda, 0xfb, 0xc6, 0xfb, 0x19, 0xfe, 0x95, 0xff, 0xea, 0x01, 0x43, 0x02, 0x53, 0x06, 0xba, 0x0d, 0x5e, 0x07, 0x6a, 0x00, 0x4f, 0xfd, 0xeb, 0xfc, 0xc5, 0xfd, 0x3f, 0xff, 0x2b, 0x00, 0x7f, 0x01, 0x5d, 0x01, 0x5d, 0x08, 0x4f, 0x0c, 0xc5, 0x02, 0x39, 0xfe, 0x8f, 0x02, 0xb5, 0x01, 0x9d, 0xfb, 0xcc, 0xf8, 0xd5, 0xf8, 0xee, 0xfa, 0x1f, 0xfd, 0x33, 0xff, 0xaf, 0x00, 0xa9, 0x01, 0xf6, 0x01, 0x1d, 0x02, 0xf0, 0x01, 0xb8, 0x01, 0x4e, 0x01, 0x03, 0x01, 0x9e, 0x00, 0x58, 0x00, 0xf2, 0xff, 0x4f, 0x00, 0x7f, 0x05, 0xa3, 0x03, 0x8f, 0x02, 0x7f, 0x02, 0x65, 0xff, 0x1d, 0xfd, 0xc9, 0xf8, 0xf8, 0xf7, 0xfa, 0xf7, 0xf6, 0xf8, 0xe9, 0xfa, 0xd5, 0xfe, 0xea, 0xff, 0xc3, 0x05, 0x40, 0x07, 0x81, 0xff, 0xd9, 0xfa, 0x20, 0xf9, 0x0d, 0xfa, 0xb9, 0xfb, 0x8d, 0x02, 0xbd, 0x02, 0x37, 0xfe, 0x5f, 0xfc, 0xa5, 0xfb, 0x65, 0xfc, 0xfb, 0xfc, 0xf9, 0xfd, 0x51, 0xfe, 0xfd, 0xfe, 0xda, 0xff, 0xc3, 0x02, 0x98, 0x08, 0xe3, 0x04, 0xde, 0xfe, 0xc5, 0xfc, 0x38, 0xfa, 0x16, 0xf9, 0x82, 0xf6, 0xca, 0xf6, 0xd2, 0xfa, 0x99, 0xf9, 0xb6, 0xf8, 0xa6, 0xf9, 0x51, 0xfb, 0x0b, 0xfd, 0x54, 0xfe, 0x44, 0xff, 0xa2, 0xff, 0xc2, 0xff, 0x60, 0xff, 0x65, 0xff, 0xed, 0xff, 0x29, 0xff, 0x07, 0xfe, 0xaf, 0xfd, 0x6d, 0xfe, 0x43, 0xfd, 0xad, 0xfc, 0xb8, 0xfb, 0x6b, 0x02, 0x47, 0x03, 0xcd, 0xfd, 0x5d, 0xff, 0xb1, 0xfb, 0x55, 0xfa, 0x60, 0xf8, 0xf2, 0xf8, 0x80, 0xfa, 0xd8, 0xf8, 0x1c, 0xf7, 0x00, 0xf8, 0x99, 0xf9, 0x35, 0xfc, 0x33, 0xfd, 0x1b, 0x01, 0xa4, 0x05, 0xc3, 0x02, 0x47, 0x02, 0x25, 0xfe, 0x73, 0xfc, 0x88, 0xfb, 0x10, 0xf8, 0x59, 0xf7, 0x60, 0xf8, 0x6d, 0xfa, 0x3f, 0xfc, 0xdf, 0xfd, 0xdc, 0xfe, 0x80, 0xff, 0xba, 0xff, 0xb9, 0xff, 0x99, 0xff, 0x63, 0xff, 0x26, 0xff, 0xea, 0xfe, 0xb5, 0xfe, 0x88, 0xfe, 0x6c, 0xfe, 0x57, 0xfe, 0x55, 0xfe, 0x36, 0xfe, 0x60, 0xfe, 0x45, 0xfe, 0x8a, 0xfe, 0x63, 0xfe, 0xd2, 0xfe, 0x75, 0xfe, 0x2a, 0xff, 0x66, 0xfe, 0xaf, 0x01, 0x68, 0x08, 0xca, 0x04, 0xe7, 0x02, 0x02, 0xff, 0x3c, 0xf9, 0xd6, 0xf5, 0x7c, 0xf6, 0xfc, 0xf8, 0xb3, 0xff, 0x4c, 0x06, 0x37, 0x02, 0x31, 0x00, 0x49, 0x02, 0x69, 0xff, 0xc9, 0xfc, 0xe8, 0xfb, 0xf7, 0xfc, 0x15, 0xff, 0x47, 0x02, 0x05, 0x03, 0x1b, 0x05, 0x2d, 0x08, 0x23, 0x04, 0xd4, 0xff, 0xd5, 0xfc, 0x47, 0xfc, 0x67, 0xfd, 0xf7, 0xfe, 0xb3, 0x00, 0xf4, 0x01, 0x71, 0x09, 0x60, 0x0a, 0xdd, 0x02, 0x26, 0xff, 0x55, 0xfd, 0xf9, 0x02, 0x9b, 0x06, 0xbd, 0x02, 0xee, 0xfe, 0x69, 0xfd, 0xcd, 0xfd, 0x4f, 0x01, 0xf7, 0x07, 0x03, 0x06, 0x40, 0x01, 0xbb, 0x03, 0xbd, 0x02, 0x5d, 0x02, 0xa3, 0x04, 0x8d, 0x03, 0x04, 0x00, 0x3f, 0xff, 0x70, 0x01, 0xbe, 0x00, 0x47, 0x00, 0x80, 0x00, 0x61, 0x01, 0x51, 0x02, 0x1b, 0x03, 0xdf, 0x04, 0xbc, 0x0a, 0xc2, 0x08, 0x77, 0x03, 0xd3, 0x00, 0x1d, 0x00, 0xa1, 0x00, 0x03, 0x02, 0x28, 0x09, 0x0d, 0x0a, 0xbc, 0x06, 0x13, 0x02, 0xf4, 0x00, 0xc1, 0x01, 0x3f, 0x01, 0xc5, 0xff, 0x63, 0xfd, 0x85, 0xfd, 0xc1, 0xfe, 0xc2, 0x00, 0x69, 0x02, 0xc5, 0x03, 0x7b, 0x04, 0xe3, 0x04, 0xdb, 0x04, 0xdf, 0x04, 0x67, 0x04, 0x5b, 0x05, 0x53, 0x07, 0xa3, 0x04, 0x69, 0x02, 0xe0, 0x00, 0xd3, 0x01, 0x47, 0x06, 0x47, 0x04, 0x44, 0x00, 0x18, 0xff, 0x82, 0xfe, 0xac, 0x01, 0xd8, 0x07, 0x0f, 0x07, 0x3f, 0x02, 0x00, 0xff, 0x85, 0xfc, 0x1e, 0xff, 0x4f, 0x04, 0x87, 0x02, 0xfc, 0xfe, 0xb7, 0xfd, 0x42, 0xfe, 0xa7, 0xff, 0xb6, 0x00, 0xd5, 0x01, 0x93, 0x03, 0x84, 0x07, 0xb2, 0x09, 0x57, 0x06, 0x0b, 0x03, 0x98, 0xff, 0xde, 0xfb, 0x39, 0xfa, 0x51, 0xfb, 0xb9, 0xfc, 0xb6, 0xff, 0x87, 0x04, 0x1f, 0x06, 0x87, 0x05, 0x79, 0x01, 0xdf, 0xfd, 0xd5, 0xfc, 0xfb, 0xfc, 0x72, 0xff, 0x2a, 0x05, 0x71, 0x03, 0x54, 0xff, 0xb5, 0xfd, 0x6d, 0xfd, 0x24, 0xfe, 0x05, 0xff, 0xc5, 0xff, 0x5e, 0x00, 0x8c, 0x00, 0xc7, 0x00, 0x82, 0x00, 0x2b, 0x01, 0xf4, 0x01, 0x0d, 0x03, 0x72, 0x05, 0xb3, 0x00, 0x83, 0xfc, 0xe2, 0xfa, 0x1a, 0xfb, 0xe6, 0xfb, 0x0f, 0xfe, 0xdf, 0x04, 0xe8, 0x04, 0xa6, 0xfe, 0xd5, 0xfb, 0x62, 0xff, 0xe2, 0xfe, 0x60, 0xfb, 0x10, 0xfa, 0x61, 0xfa, 0xd1, 0xfb, 0x19, 0xfd, 0x72, 0xfe, 0x2d, 0xff, 0xdb, 0xff, 0xe6, 0xff, 0xde, 0x05, 0xcf, 0x06, 0x00, 0x00, 0x7a, 0xfb, 0x8e, 0xf9, 0xf8, 0xf9, 0xec, 0xfa, 0x41, 0xfc, 0x45, 0xfd, 0x1c, 0xfe, 0xb5, 0xfe, 0x09, 0xff, 0xfd, 0xfe, 0xeb, 0xfe, 0xa0, 0xfe, 0x87, 0xfe, 0x37, 0xfe, 0x3a, 0xfe, 0xe3, 0xfd, 0x10, 0xfe, 0x7b, 0xfd, 0x9f, 0xff, 0xc8, 0x06, 0x26, 0x04, 0xad, 0xfc, 0xdf, 0xf7, 0xb2, 0xf6, 0xb6, 0xf7, 0xaa, 0xf9, 0x40, 0xfb, 0xab, 0xfc, 0x57, 0xfd, 0xcf, 0xff, 0x10, 0x06, 0xdf, 0x02, 0xc9, 0xfc, 0x05, 0xfa, 0x61, 0xf9, 0x35, 0xfa, 0x60, 0xfb, 0x85, 0xfc, 0x85, 0xfd, 0xeb, 0xfd, 0x84, 0xfe, 0x52, 0xfe, 0x27, 0xff, 0x37, 0xfe, 0xa3, 0x02, 0xe4, 0x05, 0xc8, 0xff, 0x80, 0xfa, 0x7e, 0xfa, 0x6f, 0xff, 0x57, 0xff, 0x83, 0xfd, 0xa6, 0xf9, 0x8a, 0xf7, 0x36, 0xf8, 0x7a, 0xf9, 0x8b, 0xfd, 0x9d, 0x03, 0x15, 0x02, 0x71, 0xff, 0xad, 0xfc, 0xc2, 0xfb, 0x70, 0xfe, 0xcb, 0xfd, 0x8b, 0xfc, 0x59, 0xfc, 0xe1, 0xfc, 0xb7, 0xfd, 0x72, 0xfe, 0x21, 0x02, 0x9b, 0x03, 0xcc, 0xff, 0xe4, 0xfe, 0x2f, 0x02, 0x99, 0x01, 0xea, 0xfe, 0xbe, 0xfa, 0x11, 0xfc, 0x95, 0xff, 0x51, 0xff, 0x29, 0xfd, 0xc6, 0xfa, 0xa4, 0xfa, 0xe5, 0xfb, 0x33, 0xfd, 0xed, 0x02, 0x58, 0x06, 0xd6, 0x01, 0x48, 0xfe, 0xc9, 0xfc, 0x1d, 0xfd, 0xf1, 0xfd, 0x08, 0xff, 0xde, 0xff, 0x86, 0x00, 0xdd, 0x00, 0x18, 0x01, 0x24, 0x01, 0x34, 0x01, 0x27, 0x01, 0x3c, 0x01, 0x0a, 0x01, 0xf5, 0x00, 0xa9, 0x00, 0xbc, 0x00, 0x61, 0x00, 0xde, 0x01, 0x92, 0x07, 0x13, 0x04, 0xad, 0xff, 0x9a, 0x01, 0xb1, 0x01, 0x34, 0x00, 0x77, 0xfd, 0x2a, 0xfb, 0x9b, 0xfc, 0x55, 0x01, 0x3b, 0x02, 0xd0, 0x01, 0x33, 0x02, 0xa0, 0x00, 0x3b, 0xff, 0xca, 0x00, 0x05, 0x03, 0xe7, 0x01, 0xe1, 0xff, 0xdf, 0xfe, 0x86, 0xff, 0x7f, 0x00, 0xdf, 0x01, 0x71, 0x02, 0x04, 0x06, 0xac, 0x08, 0x88, 0x04, 0x03, 0x02, 0x7c, 0x04, 0x50, 0x05, 0xe5, 0x02, 0x48, 0x01, 0x40, 0x01, 0x59, 0x00, 0x1d, 0x00, 0x99, 0xfe, 0xf7, 0xfd, 0xe1, 0xfe, 0x37, 0x00, 0xae, 0x01, 0xb7, 0x02, 0x95, 0x03, 0xef, 0x03, 0x37, 0x04, 0x0c, 0x04, 0x13, 0x04, 0xa9, 0x03, 0xe1, 0x03, 0x5f, 0x03, 0xb3, 0x04, 0xf1, 0x09, 0xd0, 0x07, 0x6f, 0x02, 0x0d, 0xfe, 0x9b, 0xfc, 0xd6, 0xfe, 0x69, 0x02, 0x33, 0x03, 0xf8, 0x00, 0xc9, 0x02, 0x81, 0x02, 0x3d, 0x02, 0x05, 0x03, 0x13, 0x02, 0xc7, 0x01, 0xf5, 0x00, 0x00, 0xff, 0x3f, 0xfe, 0x08, 0xff, 0x3b, 0x00, 0xa6, 0x01, 0x9d, 0x02, 0x4f, 0x03, 0x81, 0x03, 0xbb, 0x03, 0x6b, 0x03, 0x87, 0x03, 0xb1, 0x02, 0x4b, 0x06, 0x48, 0x08, 0xd5, 0x03, 0x4c, 0x00, 0xeb, 0xfd, 0xd9, 0xfd, 0x3f, 0xfe, 0x66, 0xff, 0x10, 0x00, 0xf7, 0x02, 0xa7, 0x07, 0xfc, 0x04, 0x3a, 0x00, 0xfd, 0xfd, 0x97, 0xfd, 0x94, 0xfe, 0xfb, 0x02, 0xff, 0x05, 0xc3, 0x03, 0xeb, 0x01, 0x91, 0xfe, 0xd9, 0xfd, 0x39, 0xff, 0xcf, 0xfd, 0x6f, 0xfd, 0xd3, 0xfd, 0xd0, 0xfe, 0xc6, 0xff, 0xa6, 0x00, 0x40, 0x01, 0x8a, 0x01, 0xb5, 0x01, 0xa0, 0x01, 0x90, 0x01, 0x42, 0x01, 0x1b, 0x01, 0xb7, 0x01, 0xf3, 0x01, 0x3a, 0x00, 0x72, 0x01, 0xb0, 0x05, 0x2d, 0x02, 0x94, 0xfe, 0xa9, 0xfc, 0x09, 0xfb, 0x35, 0xfb, 0x85, 0xfc, 0x4e, 0xfe, 0xcf, 0x02, 0xe3, 0x02, 0x2a, 0xff, 0x97, 0xfc, 0xf1, 0xfd, 0xda, 0x00, 0x09, 0x01, 0x1c, 0x00, 0xab, 0xfc, 0x87, 0xfc, 0x53, 0x00, 0xe4, 0xff, 0x3f, 0xfd, 0x2f, 0xfc, 0x63, 0xff, 0xa3, 0x00, 0x0c, 0xfe, 0xe3, 0xff, 0xa6, 0x00, 0x23, 0x00, 0x96, 0xfe, 0x83, 0xfd, 0xaf, 0xfd, 0x4b, 0xfc, 0xdd, 0xfb, 0xba, 0xfb, 0x3f, 0xfe, 0xad, 0x02, 0x64, 0x01, 0xad, 0xff, 0x44, 0xff, 0x94, 0xfe, 0x66, 0xfe, 0x0c, 0xfe, 0xbb, 0xfd, 0xad, 0xfc, 0xb5, 0xfa, 0x89, 0xfc, 0xd2, 0xfe, 0x9d, 0xfd, 0x68, 0xff, 0x72, 0xff, 0x7b, 0xfd, 0x57, 0xfc, 0x1f, 0xfc, 0xc5, 0xfc, 0x71, 0xfd, 0x33, 0xfe, 0x94, 0xfe, 0xfd, 0xfe, 0xf6, 0xfe, 0x1d, 0xff, 0xdf, 0xfe, 0xfa, 0xfe, 0x5b, 0xfe, 0xcc, 0xff, 0xdb, 0x03, 0xf4, 0x00, 0xd1, 0xfc, 0x15, 0xfb, 0x82, 0xfa, 0x58, 0xfb, 0xb6, 0xfb, 0x3d, 0xfe, 0x1b, 0x03, 0x81, 0x02, 0x9e, 0xff, 0xc9, 0xfb, 0xbc, 0xf9, 0xb5, 0xf9, 0xbd, 0xfa, 0x03, 0xfc, 0x04, 0xfe, 0xf5, 0xff, 0xc5, 0xff, 0x2e, 0x01, 0xcf, 0x02, 0x4a, 0x00, 0x05, 0xfd, 0x6a, 0xfe, 0x58, 0xfe, 0xed, 0xfb, 0xa6, 0xfa, 0xf1, 0xfa, 0xe5, 0xfb, 0x91, 0xfe, 0x88, 0x01, 0xc5, 0x00, 0x5d, 0xff, 0x37, 0xfe, 0x21, 0xfd, 0xbe, 0xfe, 0xaf, 0x01, 0xf3, 0x01, 0xdc, 0x00, 0xa3, 0xfd, 0xa0, 0xfb, 0x64, 0xfb, 0x3d, 0xfc, 0x55, 0xfd, 0x73, 0xfe, 0x24, 0xff, 0x8b, 0x00, 0x16, 0x05, 0xe7, 0x04, 0x94, 0x01, 0xe6, 0xff, 0x37, 0xfd, 0x81, 0xfb, 0x7c, 0xfb, 0x53, 0xfc, 0x8b, 0xfd, 0xb2, 0xfe, 0x9e, 0xff, 0x44, 0x00, 0xb5, 0x00, 0xe8, 0x00, 0x01, 0x01, 0xf8, 0x00, 0xe9, 0x00, 0xce, 0x00, 0xaf, 0x00, 0x9a, 0x00, 0x85, 0x00, 0x7a, 0x00, 0x73, 0x00, 0x71, 0x00, 0x70, 0x00, 0x77, 0x00, 0x7c, 0x00, 0x86, 0x00, 0x8c, 0x00, 0x98, 0x00, 0xaa, 0x00, 0xb2, 0x00, 0xc1, 0x00, 0xce, 0x00, 0xd3, 0x00, 0x07, 0x01, 0x3f, 0x01, 0x2a, 0x01, 0x0c, 0x01, 0xf7, 0x00, 0xf8, 0x00, 0x00, 0x01, 0x0f, 0x01, 0x22, 0x01, 0x33, 0x01, 0x48, 0x01, 0x54, 0x01, 0x66, 0x01, 0x72, 0x01, 0x87, 0x01, 0xbb, 0x01, 0xdb, 0x01, 0xbd, 0x01, 0x9f, 0x01, 0x82, 0x01, 0xcd, 0x01, 0x45, 0x03, 0xd5, 0x02, 0x90, 0x01, 0xd9, 0x00, 0xa7, 0x00, 0xb5, 0x00, 0x1e, 0x01, 0x3c, 0x01, 0xc4, 0x01, 0x8d, 0x01, 0xa7, 0x04, 0xbe, 0x08, 0xca, 0x04, 0xaa, 0x00, 0x87, 0x01, 0x34, 0x01, 0x36, 0xfe, 0x2f, 0xfd, 0xbd, 0xfd, 0xfc, 0xfe, 0x6b, 0x00, 0x6f, 0x01, 0x93, 0x02, 0xa9, 0x02, 0x9b, 0x05, 0x82, 0x09, 0x92, 0x07, 0x83, 0x03, 0x0f, 0xff, 0x75, 0xff, 0x85, 0x00, 0xf1, 0xfe, 0x12, 0xff, 0xd7, 0x02, 0xed, 0x03, 0x3d, 0x01, 0x65, 0xff, 0xf6, 0xfe, 0xea, 0xff, 0xd9, 0x00, 0xf4, 0x01, 0x83, 0x02, 0xed, 0x02, 0x59, 0x03, 0x0f, 0x05, 0x43, 0x07, 0x14, 0x05, 0xc7, 0x02, 0xc5, 0xff, 0x4f, 0xfd, 0xfb, 0xfc, 0xc1, 0xfd, 0x12, 0xff, 0x3b, 0x00, 0x36, 0x01, 0xcf, 0x01, 0x2f, 0x02, 0x53, 0x02, 0x57, 0x02, 0x3b, 0x02, 0x0f, 0x02, 0xd8, 0x01, 0xa5, 0x01, 0x7b, 0x01, 0x4f, 0x01, 0x24, 0x01, 0x00, 0x01, 0xe3, 0x00, 0xcb, 0x00, 0xb0, 0x00, 0x9d, 0x00, 0xbe, 0x00, 0x28, 0x01, 0xfe, 0x00, 0x8c, 0x00, 0x3e, 0x00, 0x11, 0x00, 0x04, 0x00, 0x05, 0x00, 0x86, 0x04, 0xab, 0x05, 0xd1, 0x00, 0x1c, 0x00, 0x4a, 0xff, 0x59, 0xfc, 0xe5, 0xfa, 0x6d, 0xfc, 0x24, 0x01, 0x5e, 0x01, 0x46, 0x00, 0x07, 0x00, 0xb7, 0xfe, 0x59, 0xfd, 0x13, 0xfd, 0xa7, 0xff, 0x0d, 0x00, 0xc1, 0xfe, 0x78, 0xfe, 0xa5, 0xfe, 0x41, 0xff, 0xa8, 0xff, 0x5f, 0x00, 0xd4, 0x00, 0xb3, 0x00, 0x50, 0x00, 0xf5, 0xff, 0xae, 0xff, 0x7e, 0xff, 0x65, 0xff, 0x5a, 0xff, 0x50, 0xff, 0x39, 0xff, 0x30, 0xff, 0x12, 0xff, 0x0f, 0xff, 0x2d, 0xff, 0x4f, 0x02, 0xa6, 0x04, 0x96, 0x01, 0x01, 0xfd, 0x6d, 0xfa, 0x22, 0xfa, 0xe5, 0xfa, 0x17, 0xfc, 0x31, 0xfd, 0x1c, 0xfe, 0xbb, 0xfe, 0x11, 0xff, 0x57, 0xff, 0x6b, 0xff, 0x8c, 0xff, 0x54, 0xff, 0x65, 0xff, 0x06, 0xff, 0x18, 0xff, 0x60, 0xfe, 0x98, 0x00, 0xbe, 0x04, 0x09, 0x02, 0x13, 0xfe, 0xe9, 0xfa, 0xb6, 0xf9, 0x21, 0xfa, 0x31, 0xfb, 0x73, 0xfc, 0x69, 0xfd, 0x9a, 0xfe, 0xa1, 0x00, 0xb7, 0x01, 0x39, 0xff, 0x8a, 0xff, 0x01, 0x01, 0xde, 0xfe, 0x45, 0xff, 0xfd, 0xfe, 0x45, 0xfe, 0xa5, 0xfc, 0xca, 0xfa, 0x21, 0xfa, 0x51, 0xfd, 0xa7, 0xff, 0x2a, 0xfe, 0xf1, 0xfe, 0xd6, 0xfe, 0x3d, 0xfd, 0xa1, 0xfc, 0xe9, 0xfc, 0x95, 0xfd, 0x52, 0xfe, 0xed, 0xfe, 0x86, 0xff, 0x9c, 0xff, 0x47, 0x00, 0xd1, 0x03, 0x59, 0x03, 0xad, 0x00, 0x03, 0xff, 0xdb, 0xfd, 0x9f, 0xfc, 0xf9, 0xfa, 0xd9, 0xfa, 0x5d, 0xfb, 0x51, 0xfc, 0x75, 0xfd, 0x66, 0xfe, 0x41, 0xff, 0xa7, 0xff, 0x22, 0x00, 0xea, 0xff, 0xca, 0x01, 0x43, 0x04, 0xc7, 0x03, 0x03, 0x01, 0x88, 0xfe, 0x4e, 0xfe, 0x9d, 0xfc, 0x25, 0xfb, 0x21, 0xfb, 0x23, 0xfc, 0x61, 0xfd, 0x91, 0xfe, 0x96, 0xff, 0x13, 0x03, 0xe9, 0x02, 0x74, 0x00, 0x18, 0xff, 0xe1, 0xff, 0x8b, 0x02, 0x30, 0x01, 0x82, 0xfe, 0x25, 0xfd, 0x25, 0xfd, 0xc7, 0xfd, 0xa5, 0xfe, 0x77, 0xff, 0x13, 0x00, 0x7c, 0x00, 0xb6, 0x00, 0xd7, 0x00, 0xe2, 0x00, 0xe2, 0x00, 0xd0, 0x00, 0xc5, 0x00, 0xa1, 0x00, 0xaa, 0x00, 0xc2, 0x00, 0xd0, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x52, 0x00, 0x88, 0x00, 0x31, 0x00, 0x99, 0x01, 0x83, 0x05, 0x05, 0x03, 0x95, 0xff, 0x15, 0xfe, 0xe1, 0xfd, 0x52, 0xfe, 0x1a, 0xff, 0xf9, 0xff, 0x4c, 0x04, 0x37, 0x04, 0xc6, 0x01, 0x3d, 0x02, 0xde, 0xff, 0x60, 0xfe, 0x16, 0xfe, 0xcf, 0xfe, 0xc5, 0xff, 0xb0, 0x00, 0x42, 0x01, 0xd3, 0x01, 0x23, 0x04, 0xeb, 0x04, 0x5f, 0x05, 0x26, 0x04, 0x1f, 0x02, 0xa3, 0x00, 0x53, 0xff, 0x52, 0xfe, 0x9d, 0xfe, 0x83, 0x00, 0x7f, 0x01, 0x4b, 0x01, 0xea, 0xff, 0x7d, 0xff, 0xe7, 0xff, 0xa3, 0x00, 0x73, 0x01, 0x03, 0x02, 0x7b, 0x02, 0x93, 0x02, 0xc1, 0x02, 0x81, 0x02, 0x8e, 0x04, 0x53, 0x07, 0xe4, 0x04, 0x4b, 0x02, 0x73, 0x00, 0x13, 0x00, 0x30, 0xff, 0xb7, 0xff, 0x87, 0x01, 0x60, 0x01, 0xb0, 0x00, 0x1c, 0x00, 0x89, 0xff, 0x2d, 0xff, 0xb7, 0xff, 0x6e, 0x00, 0x3f, 0x01, 0xd3, 0x01, 0x3f, 0x02, 0x79, 0x02, 0x8b, 0x02, 0x7f, 0x02, 0x5b, 0x02, 0x35, 0x02, 0x01, 0x02, 0xfc, 0x01, 0x15, 0x02, 0xc4, 0x01, 0x72, 0x01, 0x2a, 0x01, 0x13, 0x01, 0xf5, 0x00, 0x0a, 0x01, 0xfb, 0x00, 0x15, 0x01, 0xfd, 0x00, 0x24, 0x01, 0xe2, 0x00, 0x17, 0x02, 0xbe, 0x05, 0x0a, 0x05, 0x77, 0x02, 0x3b, 0xff, 0xbf, 0xfc, 0x53, 0xfc, 0xe3, 0xfc, 0x27, 0xfe, 0x3e, 0xff, 0x3e, 0x00, 0xca, 0x00, 0x4b, 0x01, 0x61, 0x01, 0x9a, 0x01, 0x61, 0x01, 0x5f, 0x02, 0xde, 0x05, 0x4d, 0x03, 0xb3, 0x00, 0x89, 0xff, 0xbb, 0xfd, 0x79, 0xfd, 0xa3, 0xfd, 0x3a, 0x01, 0x0f, 0x03, 0xe7, 0x01, 0x88, 0x00, 0x24, 0xfe, 0xef, 0xfc, 0xf1, 0xfc, 0xc1, 0xfd, 0xa9, 0xfe, 0x8d, 0xff, 0x1f, 0x00, 0x8b, 0x00, 0xb5, 0x00, 0xd6, 0x00, 0xa6, 0x00, 0xe5, 0x00, 0x82, 0x01, 0xae, 0x01, 0x9b, 0x03, 0xcb, 0x02, 0x56, 0xff, 0xbf, 0xfc, 0xf9, 0xfb, 0x3f, 0xfc, 0xf7, 0xfc, 0xd5, 0xfd, 0x9a, 0xfe, 0x33, 0xff, 0x93, 0xff, 0xcf, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xda, 0xff, 0xc0, 0xff, 0x9e, 0xff, 0x7e, 0xff, 0x60, 0xff, 0x47, 0xff, 0x2c, 0xff, 0x15, 0xff, 0x06, 0xff, 0xf7, 0xfe, 0xeb, 0xfe, 0xe5, 0xfe, 0xdc, 0xfe, 0xd3, 0xfe, 0xcd, 0xfe, 0xcc, 0xfe, 0xc4, 0xfe, 0xc0, 0xfe, 0xc1, 0xfe, 0xe4, 0xfe, 0xe1, 0xfe, 0xcc, 0xfe, 0xab, 0xfe, 0xcc, 0xfe, 0xd8, 0xfe, 0xa2, 0xfe, 0x87, 0xfe, 0x6c, 0xfe, 0x91, 0xfe, 0xac, 0xfe, 0xd5, 0xfe, 0x8f, 0xff, 0xb7, 0x02, 0x99, 0x02, 0x08, 0x00, 0xa3, 0xfd, 0xf8, 0xfa, 0x2c, 0xfa, 0xc4, 0xfa, 0x46, 0xfe, 0xd2, 0xfe, 0x7d, 0xfd, 0x1d, 0xfd, 0x2f, 0xfd, 0xe3, 0xfd, 0x5e, 0xfe, 0x12, 0xff, 0x2a, 0xff, 0xd4, 0x00, 0xb1, 0x03, 0xf3, 0x02, 0xd5, 0xff, 0xdd, 0xfc, 0xbd, 0xfb, 0xda, 0xfb, 0x91, 0xfc, 0x6d, 0xfd, 0x39, 0xfe, 0xc3, 0xfe, 0x32, 0xff, 0x6e, 0xff, 0x95, 0xff, 0x92, 0xff, 0x9f, 0xff, 0x72, 0xff, 0x9c, 0xff, 0xc0, 0xff, 0x90, 0x01, 0xe9, 0x03, 0xd6, 0x00, 0xe9, 0xfd, 0x6f, 0xfe, 0x3f, 0xfd, 0xb6, 0xfb, 0x95, 0xfb, 0x45, 0xfc, 0x43, 0xfd, 0x46, 0xfe, 0xee, 0xfe, 0x3b, 0x00, 0xed, 0x03, 0xd5, 0x03, 0x8b, 0x00, 0xdd, 0xfd, 0xd7, 0xfc, 0xfd, 0xfc, 0x9d, 0xfd, 0x6a, 0xfe, 0x20, 0xff, 0x9b, 0xff, 0xf5, 0xff, 0x2b, 0x00, 0x5b, 0x00, 0x59, 0x00, 0x65, 0x00, 0x37, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x54, 0x01, 0xab, 0x04, 0x9b, 0x03, 0x22, 0x00, 0x4f, 0xfd, 0x7f, 0xfc, 0x38, 0xff, 0x3e, 0x00, 0xa6, 0xfe, 0xc9, 0xfd, 0xbb, 0xfd, 0x4e, 0xfe, 0x12, 0xff, 0xd8, 0xff, 0x7c, 0x00, 0xe8, 0x00, 0x2b, 0x01, 0x3a, 0x01, 0x4f, 0x01, 0x24, 0x01, 0x91, 0x01, 0xd1, 0x03, 0xd6, 0x04, 0x33, 0x03, 0x10, 0x00, 0xaf, 0xfd, 0x55, 0xfd, 0x15, 0xfe, 0x5f, 0xff, 0x03, 0x01, 0x82, 0x00, 0x0b, 0x00, 0xe3, 0xff, 0x58, 0x00, 0x6d, 0x00, 0xfb, 0x02, 0x2c, 0x05, 0x71, 0x02, 0x1c, 0x00, 0xfc, 0xfe, 0x0f, 0xff, 0x78, 0xff, 0x26, 0x00, 0xa0, 0x00, 0x28, 0x01, 0x49, 0x01, 0x33, 0x02, 0xe5, 0x03, 0xd1, 0x02, 0x42, 0x01, 0x80, 0x00, 0x28, 0x00, 0x65, 0x00, 0xa3, 0x00, 0x10, 0x01, 0xe0, 0x00, 0x8f, 0x02, 0x6b, 0x05, 0x0f, 0x04, 0x42, 0x01, 0x09, 0xff, 0x64, 0xfe, 0xb2, 0xfe, 0x42, 0xff, 0xe3, 0x00, 0x41, 0x02, 0xa3, 0x01, 0x0c, 0x01, 0xd7, 0x00, 0xef, 0x00, 0x27, 0x01, 0x55, 0x01, 0x9f, 0x01, 0xb7, 0x01, 0xd2, 0x01, 0xa6, 0x01, 0xcf, 0x03, 0x8f, 0x04, 0xca, 0x01, 0xc8, 0x00, 0x39, 0x02, 0xde, 0x01, 0xae, 0xff, 0x91, 0xfe, 0x39, 0xfe, 0x35, 0xff, 0x27, 0x02, 0x41, 0x03, 0x85, 0x01, 0x52, 0x00, 0xc7, 0x00, 0x58, 0x00, 0x06, 0x01, 0x79, 0x01, 0x28, 0x01, 0x45, 0x01, 0x5b, 0x01, 0x16, 0x01, 0xd7, 0x00, 0xef, 0xff, 0xf0, 0xfe, 0xde, 0xff, 0xe5, 0x01, 0x0f, 0x01, 0xa0, 0x00, 0xf3, 0x01, 0xa5, 0x01, 0x5b, 0x00, 0x6b, 0x00, 0x5e, 0x01, 0x1f, 0x01, 0xd1, 0xff, 0x1a, 0xff, 0x27, 0xff, 0x9b, 0xff, 0x10, 0x00, 0x8c, 0x00, 0xcd, 0x00, 0x13, 0x01, 0xf1, 0x00, 0xd3, 0x01, 0x97, 0x04, 0x25, 0x03, 0x2f, 0x00, 0x9c, 0xfe, 0x12, 0xfe, 0x55, 0xfe, 0xc6, 0xfe, 0x50, 0xff, 0xba, 0xff, 0x0e, 0x00, 0x3e, 0x00, 0x5c, 0x00, 0x67, 0x00, 0x5c, 0x00, 0x7a, 0x00, 0x9b, 0x00, 0xa7, 0x00, 0x7d, 0x00, 0xea, 0xff, 0x8a, 0xff, 0x54, 0xff, 0x4e, 0xff, 0x59, 0xff, 0x6f, 0xff, 0x71, 0xff, 0x8d, 0xff, 0x80, 0xff, 0xaa, 0x00, 0xfa, 0x00, 0x3a, 0x00, 0x3c, 0x01, 0x2b, 0x00, 0x2b, 0xfe, 0x73, 0xfd, 0x41, 0xfd, 0x84, 0xfe, 0xd8, 0xff, 0x57, 0xff, 0xfe, 0x00, 0x15, 0x01, 0xbc, 0xff, 0x31, 0xfe, 0xd7, 0xfc, 0xc7, 0xfc, 0x3d, 0xfd, 0xfb, 0xfd, 0xac, 0xfe, 0x30, 0xff, 0x8f, 0xff, 0xb0, 0xff, 0xe6, 0xff, 0xa7, 0xff, 0xb2, 0x00, 0x71, 0x03, 0x89, 0x02, 0x31, 0x00, 0x6b, 0xfd, 0x9d, 0xfc, 0x01, 0xfe, 0xdb, 0xfe, 0xdf, 0xfd, 0xe3, 0xfc, 0x83, 0xfc, 0x40, 0xfe, 0x7f, 0x00, 0x72, 0xff, 0x43, 0xfe, 0xbb, 0xfd, 0xe3, 0xfd, 0x39, 0xfe, 0xbb, 0xfe, 0x14, 0xff, 0x78, 0x01, 0xf6, 0x01, 0xf6, 0xff, 0x9c, 0xfe, 0xa5, 0xfd, 0x8b, 0xfd, 0xb7, 0xfd, 0x21, 0xfe, 0x7c, 0xfe, 0xf6, 0xfe, 0x8b, 0x01, 0x47, 0x02, 0xea, 0xff, 0xd9, 0xfd, 0xb3, 0xfd, 0x07, 0xfe, 0x8d, 0xfd, 0xa1, 0xfd, 0xbb, 0xfd, 0xa9, 0xfe, 0x82, 0x01, 0x0a, 0x01, 0xe1, 0xfe, 0xd3, 0xfd, 0x73, 0xfd, 0xcf, 0xfd, 0x27, 0xfe, 0xbd, 0xfe, 0x09, 0xff, 0xac, 0x01, 0xd9, 0x02, 0x6d, 0x00, 0x4f, 0xfe, 0x3b, 0xfd, 0x3f, 0xfd, 0xff, 0xfd, 0x99, 0xfe, 0xd6, 0xfe, 0x17, 0xff, 0x44, 0xff, 0x63, 0xff, 0x95, 0xff, 0x95, 0xff, 0x02, 0x00, 0x34, 0x01, 0x8d, 0x02, 0xab, 0x01, 0x00, 0xff, 0x9b, 0xfd, 0x35, 0xfd, 0x97, 0xfd, 0x27, 0xfe, 0xc7, 0xfe, 0x48, 0xff, 0xad, 0xff, 0xe4, 0xff, 0x6b, 0x00, 0x93, 0x01, 0x01, 0x03, 0x35, 0x02, 0x9f, 0xff, 0x03, 0xfe, 0x91, 0xfd, 0xd3, 0xfd, 0x67, 0xfe, 0x0c, 0xff, 0x93, 0xff, 0xf9, 0xff, 0x3a, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x92, 0x00, 0x8c, 0x00, 0x88, 0x00, 0x7c, 0x00, 0x76, 0x00, 0x67, 0x00, 0xa0, 0x00, 0xc7, 0x00, 0x7a, 0x00, 0x52, 0x00, 0x1f, 0x00, 0x31, 0x00, 0x1d, 0x00, 0x52, 0x00, 0x14, 0x00, 0x57, 0x02, 0xf5, 0x03, 0x39, 0x01, 0xd1, 0xff, 0x6d, 0x00, 0x9c, 0xff, 0x6f, 0xfe, 0x31, 0xfe, 0xa3, 0xfe, 0x4a, 0xff, 0xe5, 0x01, 0x83, 0x03, 0x6d, 0x02, 0x90, 0x01, 0xad, 0x00, 0xb6, 0xff, 0x9a, 0xfe, 0xa8, 0xfe, 0x02, 0xff, 0xde, 0xff, 0x47, 0x00, 0xb1, 0x02, 0x4a, 0x04, 0x63, 0x03, 0x0f, 0x02, 0x05, 0x00, 0x18, 0xff, 0xff, 0xfe, 0x7e, 0xff, 0x10, 0x00, 0x9e, 0x00, 0x0d, 0x01, 0x5a, 0x01, 0x8d, 0x01, 0x99, 0x01, 0xb1, 0x01, 0x8d, 0x01, 0xa8, 0x01, 0x54, 0x01, 0x4d, 0x03, 0x07, 0x05, 0x29, 0x03, 0x89, 0x00, 0xb0, 0xff, 0x89, 0xff, 0xc7, 0xfe, 0xac, 0xfe, 0x2a, 0xff, 0xa0, 0x01, 0xc3, 0x02, 0x6c, 0x01, 0x11, 0x00, 0x93, 0xff, 0xbc, 0xff, 0x25, 0x00, 0xa1, 0x00, 0x0c, 0x01, 0x52, 0x01, 0x7b, 0x01, 0x8d, 0x01, 0x90, 0x01, 0xac, 0x01, 0xa0, 0x01, 0x6c, 0x01, 0x37, 0x01, 0x1e, 0x01, 0x1b, 0x01, 0xfd, 0x00, 0xe3, 0x00, 0xcd, 0x00, 0xc1, 0x00, 0xbe, 0x00, 0xc5, 0x00, 0xc8, 0x00, 0xc1, 0x00, 0xca, 0x00, 0xb5, 0x00, 0xc8, 0x00, 0xa7, 0x00, 0x11, 0x03, 0xb2, 0x04, 0x21, 0x02, 0x68, 0xff, 0x04, 0xfe, 0xd3, 0xfd, 0x34, 0xfe, 0xe1, 0xfe, 0x8a, 0xff, 0x16, 0x00, 0x79, 0x00, 0xb5, 0x00, 0xe5, 0x00, 0xf2, 0x00, 0xf7, 0x00, 0xee, 0x00, 0xe4, 0x01, 0x43, 0x02, 0x25, 0x01, 0xa3, 0x00, 0x7c, 0x01, 0x03, 0x01, 0x8d, 0xff, 0x68, 0xff, 0x17, 0xff, 0x85, 0xfe, 0x48, 0xfe, 0x6f, 0xfe, 0xf6, 0xfe, 0x6c, 0xff, 0xe9, 0xff, 0x20, 0x00, 0xbb, 0x00, 0xf3, 0x02, 0xab, 0x02, 0x0f, 0x02, 0x59, 0x00, 0x8f, 0xff, 0x27, 0xff, 0xbb, 0xfd, 0xb5, 0xfd, 0x0a, 0xfe, 0x85, 0xfe, 0xf9, 0xfe, 0x57, 0xff, 0xa2, 0xff, 0xd5, 0xff, 0x05, 0x00, 0x0e, 0x00, 0x23, 0x00, 0x0e, 0x00, 0x1c, 0x00, 0xdd, 0xff, 0x52, 0x01, 0xeb, 0x02, 0xc4, 0x00, 0xb2, 0xfe, 0xb7, 0xfd, 0x91, 0xfd, 0xe1, 0xfd, 0x46, 0xfe, 0xc4, 0xfe, 0x0c, 0xff, 0x65, 0xff, 0x5f, 0xff, 0x4d, 0x00, 0xbd, 0x02, 0x31, 0x02, 0xc0, 0xff, 0x43, 0xfe, 0xd1, 0xfd, 0xc7, 0xfd, 0x41, 0xff, 0x86, 0xff, 0x06, 0xff, 0x18, 0xfe, 0x97, 0xfd, 0xc0, 0xfe, 0x43, 0xfe, 0xb7, 0xfe, 0x9f, 0xff, 0xc9, 0xff, 0x95, 0xff, 0x06, 0xff, 0xea, 0xfe, 0x5d, 0xfe, 0x1e, 0xfe, 0x0f, 0xff, 0xf6, 0xff, 0x45, 0xff, 0x89, 0xff, 0xac, 0x00, 0x22, 0x00, 0xa6, 0xfe, 0xd1, 0xfd, 0xdb, 0xfd, 0xba, 0xfe, 0x92, 0xff, 0x44, 0x00, 0x6b, 0x00, 0x8f, 0xff, 0x45, 0xfe, 0x79, 0xfe, 0x84, 0xff, 0x90, 0xff, 0xae, 0xfe, 0xd5, 0xfd, 0x9d, 0xfd, 0xeb, 0xfd, 0x5d, 0xfe, 0xeb, 0xfe, 0x38, 0xff, 0xa1, 0x00, 0x4b, 0x01, 0x35, 0x00, 0x23, 0x00, 0xaa, 0xff, 0xcd, 0xfe, 0x73, 0xfe, 0x19, 0xfe, 0x3b, 0xff, 0xe5, 0x00, 0xea, 0xff, 0x8d, 0xfe, 0x33, 0xff, 0x2b, 0x00, 0x38, 0xff, 0x2d, 0xfe, 0xd1, 0xfd, 0x09, 0xfe, 0x78, 0xfe, 0xeb, 0xfe, 0x87, 0xff, 0x20, 0x00, 0x0d, 0x00, 0xf6, 0xff, 0xcf, 0xff, 0xe0, 0xff, 0xa8, 0xff, 0x8f, 0x00, 0xa3, 0x02, 0xaf, 0x01, 0x9b, 0xff, 0x31, 0xfe, 0xb4, 0xfe, 0xcd, 0xfe, 0xfd, 0xfe, 0xff, 0xff, 0xde, 0xff, 0xde, 0xff, 0x30, 0xff, 0x61, 0xfe, 0x49, 0xfe, 0x8e, 0xfe, 0x23, 0xff, 0x84, 0xff, 0x8e, 0x00, 0x1b, 0x02, 0x49, 0x01, 0xbf, 0x00, 0x1f, 0x01, 0x02, 0x00, 0x1d, 0x00, 0x47, 0x00, 0x14, 0x00, 0x61, 0x00, 0x20, 0x00, 0x95, 0xff, 0x60, 0xff, 0xce, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x1f, 0x00, 0xae, 0xff, 0xfb, 0xff, 0xa7, 0x00, 0x28, 0x00, 0x9f, 0xff, 0x68, 0xff, 0x9c, 0xff, 0xfb, 0xff, 0x5e, 0x00, 0xaa, 0x00, 0xe8, 0x00, 0x0a, 0x01, 0x13, 0x01, 0x60, 0x01, 0x7e, 0x01, 0x21, 0x01, 0xda, 0x00, 0x9e, 0x00, 0xbc, 0x00, 0xf5, 0x00, 0xc5, 0x00, 0x88, 0x00, 0x6a, 0x00, 0x7a, 0x00, 0x15, 0x01, 0x04, 0x01, 0xa7, 0x00, 0x52, 0x00, 0xbe, 0x00, 0xd7, 0x02, 0x47, 0x02, 0x53, 0x00, 0x45, 0xff, 0x00, 0xff, 0x44, 0xff, 0xae, 0xff, 0x29, 0x00, 0x86, 0x00, 0xd9, 0x00, 0x07, 0x01, 0x24, 0x01, 0x33, 0x01, 0x3a, 0x01, 0x33, 0x01, 0x25, 0x01, 0x1b, 0x01, 0x1e, 0x01, 0x54, 0x01, 0x79, 0x01, 0x3c, 0x01, 0xd9, 0x00, 0x95, 0x00, 0x80, 0x00, 0x7f, 0x00, 0x92, 0x00, 0x9d, 0x00, 0xbe, 0x00, 0xb8, 0x00, 0xe2, 0x00, 0xc7, 0x00, 0x87, 0x02, 0xe7, 0x03, 0xbd, 0x02, 0xe2, 0x00, 0xc2, 0xff, 0x59, 0xff, 0xa4, 0xff, 0x6c, 0xff, 0xb8, 0xfe, 0xd9, 0xfe, 0x39, 0xff, 0xe0, 0xff, 0x5e, 0x00, 0xd4, 0x00, 0x19, 0x01, 0x45, 0x01, 0x54, 0x01, 0x4f, 0x01, 0x42, 0x01, 0x30, 0x01, 0x15, 0x01, 0xfb, 0x00, 0xe2, 0x00, 0xc5, 0x00, 0xb5, 0x00, 0xa6, 0x00, 0x95, 0x00, 0x8b, 0x00, 0x82, 0x00, 0x79, 0x00, 0x77, 0x00, 0x68, 0x00, 0x67, 0x00, 0x67, 0x00, 0x6d, 0x00, 0x62, 0x00, 0x8c, 0x00, 0xcb, 0x00, 0xa1, 0x00, 0x65, 0x00, 0xc5, 0x00, 0x39, 0x02, 0xf3, 0x01, 0xf5, 0xff, 0xcd, 0xfe, 0x1f, 0xfe, 0xaf, 0xfe, 0x9e, 0x00, 0x58, 0x00, 0x6c, 0xff, 0x0e, 0x00, 0x5f, 0x00, 0x9f, 0xff, 0x8c, 0xff, 0x9c, 0xff, 0x26, 0xff, 0xd9, 0xfe, 0xee, 0xfe, 0x2f, 0xff, 0xae, 0xff, 0xd5, 0xff, 0xfb, 0x00, 0x93, 0x02, 0xd6, 0x01, 0x10, 0x01, 0xbd, 0xff, 0xbc, 0xff, 0x30, 0xff, 0xfa, 0xfe, 0x7b, 0xff, 0x9b, 0xff, 0xe1, 0xfe, 0xe2, 0xfe, 0xa7, 0xff, 0x08, 0xff, 0x5c, 0xff, 0x50, 0x00, 0x26, 0x00, 0xce, 0xff, 0xf0, 0xff, 0x53, 0xff, 0x8b, 0xfe, 0x5e, 0xfe, 0x8a, 0xfe, 0xeb, 0xfe, 0x48, 0xff, 0x98, 0xff, 0xda, 0xff, 0xf9, 0xff, 0xf2, 0xff, 0xe6, 0xff, 0xd2, 0xff, 0xc2, 0xff, 0xad, 0xff, 0x99, 0xff, 0x87, 0xff, 0x7d, 0xff, 0x6e, 0xff, 0x83, 0xff, 0xb0, 0xff, 0x89, 0xff, 0x54, 0xff, 0x27, 0xff, 0x1a, 0xff, 0x12, 0xff, 0x17, 0xff, 0x15, 0xff, 0x29, 0xff, 0x2c, 0xff, 0x3e, 0xff, 0x36, 0xff, 0x4a, 0xff, 0x39, 0xff, 0x65, 0xff, 0x90, 0xff, 0xbb, 0x00, 0xdf, 0x01, 0xf9, 0xff, 0x40, 0xfe, 0x73, 0xfd, 0x77, 0xfd, 0xc5, 0xfd, 0x40, 0xfe, 0x9c, 0xfe, 0x00, 0xff, 0x2f, 0xff, 0xe5, 0x00, 0xc9, 0x01, 0x08, 0x00, 0xb8, 0xfe, 0x13, 0xfe, 0x18, 0xfe, 0x4e, 0xfe, 0xb1, 0xfe, 0xfd, 0xfe, 0x4e, 0xff, 0x78, 0xff, 0x42, 0x01, 0x3d, 0x02, 0xa0, 0x00, 0x7a, 0xff, 0x47, 0xff, 0xb5, 0xfe, 0xdf, 0xfd, 0x7f, 0xfd, 0xb5, 0xfd, 0x3c, 0xfe, 0x57, 0xff, 0xdb, 0xff, 0xad, 0xff, 0x86, 0xff, 0x95, 0xff, 0x8f, 0xff, 0x65, 0x00, 0x01, 0x02, 0x4f, 0x01, 0xb1, 0xff, 0x87, 0xfe, 0x21, 0xfe, 0x45, 0xfe, 0x9a, 0xfe, 0x05, 0xff, 0x65, 0xff, 0xad, 0xff, 0xda, 0xff, 0xfc, 0xff, 0x11, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x14, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xf5, 0xff, 0x1c, 0x00, 0xab, 0x01, 0x59, 0x02, 0xcd, 0x00, 0x09, 0xff, 0x2d, 0xfe, 0x15, 0xfe, 0x66, 0xfe, 0xdc, 0xfe, 0x54, 0xff, 0xb6, 0xff, 0x00, 0x00, 0x31, 0x00, 0x52, 0x00, 0x64, 0x00, 0x6b, 0x00, 0x70, 0x00, 0x6b, 0x00, 0x65, 0x00, 0x58, 0x00, 0x5c, 0x00, 0x62, 0x00, 0xad, 0x00, 0x5e, 0x00, 0x67, 0x01, 0x4d, 0x02, 0xdd, 0x00, 0x7e, 0xff, 0xe8, 0xfe, 0xcf, 0xfe, 0x24, 0xff, 0x57, 0xff, 0x79, 0x00, 0x57, 0x02, 0xe7, 0x01, 0xe5, 0x00, 0xb3, 0xff, 0x0c, 0xff, 0x0b, 0xff, 0x60, 0xff, 0xd2, 0xff, 0x2e, 0x00, 0x9a, 0x00, 0x55, 0x02, 0xed, 0x02, 0xf7, 0x01, 0xdd, 0x00, 0x96, 0xff, 0x53, 0xff, 0x5c, 0x00, 0x5e, 0x00, 0xc6, 0xff, 0x69, 0xff, 0x9c, 0xff, 0xf0, 0xff, 0xdd, 0x00, 0x69, 0x02, 0x4f, 0x02, 0x9f, 0x01, 0xa4, 0x00, 0x76, 0x00, 0x98, 0x00, 0xe3, 0xff, 0x07, 0x00, 0x88, 0x00, 0xb5, 0x00, 0x82, 0x00, 0x1f, 0x00, 0x4f, 0x00, 0x34, 0x00, 0x04, 0x00, 0xce, 0x00, 0x17, 0x02, 0x79, 0x01, 0x89, 0x00, 0x10, 0x00, 0x02, 0x00, 0x35, 0x00, 0x71, 0x00, 0xa9, 0x00, 0xd1, 0x00, 0xe9, 0x00, 0xf7, 0x00, 0xfd, 0x00, 0xfa, 0x00, 0xf7, 0x00, 0xe9, 0x00, 0xdd, 0x00, 0xd0, 0x00, 0xc4, 0x00, 0xca, 0x00, 0x13, 0x01, 0x1c, 0x01, 0xc1, 0x00, 0x7a, 0x00, 0x4c, 0x00, 0x44, 0x00, 0x44, 0x00, 0x53, 0x00, 0x56, 0x00, 0x71, 0x00, 0x76, 0x00, 0xf7, 0x01, 0xdb, 0x02, 0x6d, 0x01, 0xf2, 0xff, 0x02, 0xff, 0xe1, 0xfe, 0x1a, 0xff, 0x6e, 0xff, 0xc0, 0xff, 0x13, 0x00, 0x61, 0x00, 0x7f, 0x00, 0x97, 0x00, 0x98, 0x00, 0x98, 0x00, 0x8b, 0x00, 0x94, 0x00, 0x9d, 0x00, 0x8f, 0x00, 0x67, 0x00, 0x5e, 0x00, 0x3b, 0x00, 0x50, 0x00, 0x0e, 0x00, 0x25, 0x01, 0x91, 0x02, 0x7c, 0x01, 0xc8, 0x00, 0x04, 0x00, 0x45, 0xff, 0x23, 0xff, 0x99, 0xfe, 0x6d, 0xfe, 0x4e, 0xff, 0x42, 0xff, 0x06, 0xff, 0x11, 0xff, 0x68, 0xff, 0xaa, 0xff, 0x2d, 0x01, 0xf0, 0x01, 0xb6, 0x00, 0xb4, 0xff, 0x99, 0xff, 0x2c, 0x00, 0xa3, 0x00, 0x34, 0x00, 0x56, 0xff, 0x74, 0xff, 0xa4, 0xff, 0x5c, 0xff, 0x09, 0xff, 0x14, 0xff, 0x38, 0xff, 0x83, 0xff, 0x9e, 0xff, 0x71, 0x00, 0x81, 0x01, 0x8b, 0x01, 0x71, 0x00, 0x4e, 0xff, 0x6b, 0xff, 0xe5, 0xfe, 0x7c, 0xfe, 0x67, 0xfe, 0xb2, 0xfe, 0xee, 0xfe, 0x9c, 0xff, 0x45, 0x01, 0x28, 0x01, 0x2f, 0x00, 0x20, 0xff, 0x96, 0xfe, 0x7f, 0xfe, 0xc9, 0xfe, 0x1d, 0xff, 0x22, 0x00, 0xf7, 0x00, 0x7d, 0x00, 0xff, 0xff, 0xae, 0xff, 0x0f, 0xff, 0x58, 0xfe, 0x19, 0xfe, 0x17, 0xff, 0x26, 0x00, 0xde, 0xff, 0x36, 0xff, 0xc4, 0xfe, 0x8e, 0xfe, 0xa8, 0xfe, 0xcc, 0xfe, 0xdb, 0xff, 0x22, 0x01, 0x6b, 0x00, 0x98, 0xff, 0xd4, 0xff, 0x95, 0xff, 0xbd, 0xfe, 0x67, 0xfe, 0x4d, 0xff, 0xf2, 0xff, 0xc0, 0xff, 0x0e, 0xff, 0x91, 0xfe, 0x8a, 0xfe, 0x9f, 0xfe, 0xeb, 0xfe, 0x24, 0xff, 0xfc, 0xff, 0xf4, 0x00, 0x15, 0x01, 0x1d, 0x00, 0x8f, 0xff, 0x89, 0xff, 0x3f, 0xff, 0xbe, 0xfe, 0x51, 0xfe, 0x5a, 0xfe, 0x94, 0xfe, 0xed, 0xfe, 0xd5, 0xff, 0xf7, 0x00, 0xa1, 0x00, 0xa2, 0xff, 0x02, 0xff, 0xd3, 0xfe, 0xe4, 0xfe, 0x53, 0xff, 0xb8, 0x00, 0x0d, 0x01, 0xed, 0xff, 0x03, 0xff, 0xa6, 0xfe, 0xb4, 0xfe, 0xe8, 0xfe, 0x36, 0xff, 0x78, 0xff, 0xae, 0xff, 0xd1, 0xff, 0xf3, 0xff, 0x0b, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xec, 0xff, 0xe1, 0xff, 0xdd, 0xff, 0xd1, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xe9, 0xff, 0x96, 0x01, 0xf1, 0x01, 0x4d, 0x00, 0x42, 0xff, 0xb2, 0xfe, 0xae, 0xfe, 0xc1, 0xfe, 0x2a, 0xff, 0x6e, 0xff, 0x4c, 0x00, 0xe2, 0x00, 0xfa, 0x00, 0x22, 0x01, 0x25, 0x00, 0x62, 0xff, 0x3b, 0xff, 0x3c, 0xff, 0x5a, 0xff, 0xaa, 0xff, 0xfb, 0x00, 0x97, 0x01, 0xee, 0x00, 0x28, 0x00, 0x96, 0xff, 0x68, 0xff, 0x6c, 0xff, 0xb6, 0xff, 0xde, 0xff, 0xa3, 0x00, 0x07, 0x02, 0x8a, 0x01, 0xa6, 0x00, 0x02, 0x00, 0x95, 0xff, 0x8f, 0xff, 0xae, 0xff, 0x40, 0x00, 0x3c, 0x01, 0xcf, 0x01, 0x1b, 0x01, 0x9d, 0x00, 0x83, 0x00, 0x19, 0x00, 0x32, 0x00, 0xe1, 0xff, 0x75, 0xff, 0x63, 0xff, 0x92, 0xff, 0xe4, 0xff, 0x3d, 0x00, 0x85, 0x00, 0xb9, 0x00, 0xd9, 0x00, 0xee, 0x00, 0xe8, 0x00, 0xef, 0x00, 0xd0, 0x00, 0xd5, 0x01, 0xdf, 0x02, 0xb4, 0x01, 0x4a, 0x00, 0x68, 0xff, 0x47, 0xff, 0x4d, 0xff, 0x7a, 0x00, 0x54, 0x01, 0xda, 0x00, 0xfa, 0x00, 0xbf, 0x00, 0x11, 0x00, 0x8a, 0xff, 0x83, 0xff, 0xb7, 0xff, 0x0d, 0x00, 0x4d, 0x00, 0x95, 0x00, 0xb3, 0x00, 0x7e, 0x01, 0xea, 0x01, 0x2a, 0x01, 0x98, 0x00, 0x3a, 0x00, 0x31, 0x00, 0x2b, 0x00, 0x4a, 0x00, 0x5f, 0x00, 0xa0, 0x00, 0x03, 0x02, 0x21, 0x02, 0x5d, 0x01, 0x50, 0x00, 0x69, 0xff, 0x35, 0xff, 0x41, 0xff, 0xa1, 0xff, 0xd4, 0xff, 0x12, 0x01, 0xf4, 0x01, 0x0c, 0x01, 0x37, 0x00, 0xc6, 0xff, 0xb9, 0xff, 0xd8, 0xff, 0x0a, 0x00, 0x38, 0x00, 0x5c, 0x00, 0x77, 0x00, 0x86, 0x00, 0x8f, 0x00, 0xa1, 0x00, 0xad, 0x00, 0x98, 0x00, 0x73, 0x00, 0x62, 0x00, 0x49, 0x00, 0x47, 0x00, 0x34, 0x00, 0x41, 0x00, 0x20, 0x00, 0xfd, 0x00, 0x1f, 0x02, 0x10, 0x01, 0xf2, 0xff, 0x30, 0xff, 0xf0, 0xfe, 0x02, 0xff, 0x7d, 0xff, 0xd6, 0x00, 0xfb, 0x00, 0x40, 0x00, 0x47, 0x00, 0x17, 0x00, 0xce, 0xff, 0xc2, 0xff, 0x54, 0xff, 0xee, 0xfe, 0xed, 0xfe, 0x24, 0xff, 0x80, 0xff, 0xb5, 0x00, 0x7e, 0x01, 0xc4, 0x00, 0x4d, 0x00, 0x17, 0x00, 0x13, 0x00, 0xde, 0xff, 0x7d, 0xff, 0x95, 0xff, 0x65, 0xff, 0x15, 0xff, 0x12, 0xff, 0x24, 0xff, 0xe4, 0xff, 0xec, 0x00, 0x82, 0x00, 0xcc, 0xff, 0x65, 0xff, 0x42, 0xff, 0x59, 0xff, 0x78, 0xff, 0xa2, 0xff, 0xc3, 0xff, 0xdd, 0xff, 0xde, 0xff, 0x35, 0x00, 0x86, 0x00, 0x28, 0x00, 0xc8, 0xff, 0x72, 0xff, 0xf2, 0xff, 0x31, 0x00, 0x8f, 0xff, 0xcc, 0xff, 0x25, 0x00, 0xda, 0xff, 0x77, 0xff, 0xc0, 0xfe, 0xd0, 0xfe, 0x36, 0xff, 0xe7, 0xfe, 0xb7, 0xfe, 0xc9, 0xfe, 0xbd, 0xff, 0x7d, 0x00, 0x0d, 0x00, 0x4e, 0xff, 0xed, 0xfe, 0xdc, 0xfe, 0x09, 0xff, 0x33, 0xff, 0x37, 0x00, 0xfe, 0x00, 0x98, 0x00, 0x1a, 0x00, 0x75, 0xff, 0xcf, 0xfe, 0x81, 0xfe, 0x87, 0xfe, 0xca, 0xfe, 0x30, 0xff, 0x07, 0x00, 0xca, 0x00, 0x38, 0x00, 0xa1, 0xff, 0x41, 0xff, 0xf0, 0xfe, 0xe2, 0xfe, 0xee, 0xfe, 0x33, 0xff, 0x57, 0xff, 0xfc, 0xff, 0xfd, 0x00, 0xb5, 0x00, 0xa7, 0xff, 0xfc, 0xfe, 0xae, 0xfe, 0x09, 0xff, 0x0b, 0x00, 0xe4, 0xff, 0x4e, 0xff, 0x03, 0xff, 0xf9, 0xfe, 0x1d, 0xff, 0x4b, 0xff, 0x7d, 0xff, 0xa1, 0xff, 0xbc, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xe4, 0xff, 0xd8, 0xff, 0x1f, 0x00, 0x02, 0x00, 0x7f, 0x00, 0x2d, 0x01, 0x91, 0x00, 0xb0, 0xff, 0xcf, 0xfe, 0x7b, 0xfe, 0x87, 0xfe, 0xc9, 0xfe, 0x26, 0xff, 0x7a, 0xff, 0xe3, 0xff, 0x5c, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xe4, 0xff, 0xaa, 0xff, 0xfb, 0xff, 0xe5, 0x00, 0xe5, 0x00, 0x6a, 0x00, 0xb7, 0xff, 0xf3, 0xfe, 0xfa, 0xfe, 0x5d, 0xff, 0x4a, 0xff, 0x59, 0xff, 0x84, 0xff, 0xb3, 0xff, 0xd5, 0xff, 0x01, 0x00, 0x1a, 0x00, 0x3e, 0x00, 0x43, 0x00, 0x91, 0x00, 0x1e, 0x01, 0x6a, 0x01, 0x0a, 0x01, 0xed, 0xff, 0x04, 0x00, 0x38, 0x00, 0xfe, 0xff, 0xc3, 0xff, 0x78, 0xff, 0x5c, 0xff, 0x96, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0x08, 0x00, 0x3b, 0x00, 0x49, 0x00, 0xec, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xda, 0xff, 0x0e, 0x00, 0x46, 0x00, 0x74, 0x00, 0x8e, 0x00, 0x98, 0x00, 0x9a, 0x00, 0x9b, 0x00, 0x91, 0x00, 0x94, 0x00, 0x88, 0x00, 0x89, 0x00, 0x76, 0x00, 0x7d, 0x00, 0x65, 0x00, 0xb6, 0x00, 0xff, 0x01, 0xcd, 0x01, 0x16, 0x01, 0x2e, 0x00, 0x48, 0xff, 0xfc, 0xfe, 0x11, 0xff, 0x5d, 0xff, 0xb7, 0xff, 0x08, 0x00, 0x47, 0x00, 0x7c, 0x00, 0xa6, 0x00, 0xc4, 0x00, 0xc2, 0x00, 0xb8, 0x00, 0xb0, 0x00, 0xa6, 0x00, 0x9e, 0x00, 0xa1, 0x00, 0xa6, 0x00, 0x83, 0x00, 0xcb, 0x00, 0x36, 0x01, 0xcd, 0x00, 0x5c, 0x00, 0x26, 0x00, 0xeb, 0x00, 0x34, 0x01, 0xb9, 0x00, 0x7a, 0x00, 0x16, 0x00, 0xc9, 0xff, 0x66, 0xff, 0x51, 0xff, 0x72, 0xff, 0xcf, 0xff, 0xaf, 0x00, 0x2d, 0x01, 0x33, 0x01, 0xfb, 0x00, 0xc8, 0x00, 0x3d, 0x00, 0xe3, 0xff, 0xba, 0xff, 0xfb, 0xff, 0xe3, 0x00, 0x24, 0x01, 0x83, 0x00, 0x43, 0x00, 0x49, 0x00, 0xf8, 0xff, 0xcc, 0xff, 0xd8, 0xff, 0xf8, 0xff, 0x29, 0x00, 0x47, 0x00, 0x6e, 0x00, 0x77, 0x00, 0xd3, 0x00, 0xea, 0x01, 0x99, 0x01, 0xb0, 0x00, 0xe9, 0xff, 0xe9, 0xff, 0x4d, 0x00, 0x4f, 0x00, 0xd4, 0xff, 0x8c, 0xff, 0x14, 0x00, 0x3e, 0x00, 0xfe, 0xff, 0xb7, 0xff, 0x89, 0xff, 0x8f, 0xff, 0xb6, 0xff, 0xed, 0xff, 0x28, 0x00, 0x59, 0x00, 0x2e, 0x01, 0x7c, 0x01, 0xe6, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x34, 0x00, 0xa5, 0xff, 0x45, 0xff, 0x2a, 0xff, 0x53, 0xff, 0x80, 0xff, 0xc5, 0xff, 0xe9, 0xff, 0xb0, 0x00, 0x7f, 0x01, 0x0d, 0x01, 0x98, 0x00, 0x00, 0x00, 0x6c, 0xff, 0x8a, 0xff, 0x54, 0xff, 0x0b, 0xff, 0x0c, 0xff, 0x36, 0xff, 0x75, 0xff, 0xb9, 0xff, 0xf3, 0xff, 0x07, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x07, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xec, 0xff, 0xe3, 0xff, 0xd7, 0xff, 0xe7, 0xff, 0x0a, 0x00, 0xf0, 0xff, 0xc5, 0xff, 0xa4, 0xff, 0x9e, 0xff, 0xcb, 0xff, 0xc0, 0xff, 0x9e, 0xff, 0x86, 0xff, 0x7d, 0xff, 0x81, 0xff, 0x8f, 0xff, 0x90, 0xff, 0x9c, 0xff, 0x99, 0xff, 0xb9, 0x00, 0x03, 0x01, 0xef, 0xff, 0x38, 0xff, 0xe8, 0xfe, 0xf7, 0xfe, 0xf7, 0xfe, 0xf3, 0xfe, 0x53, 0xff, 0x5b, 0x00, 0x26, 0x00, 0x7a, 0xff, 0x26, 0xff, 0x08, 0xff, 0x0f, 0xff, 0x38, 0xff, 0x5a, 0xff, 0xb7, 0xff, 0xcb, 0x00, 0xa7, 0x00, 0x25, 0x00, 0x92, 0xff, 0x14, 0xff, 0xa2, 0xff, 0xd7, 0xff, 0x5a, 0xff, 0xee, 0xfe, 0xd5, 0xfe, 0xe1, 0xfe, 0xbf, 0xff, 0x5c, 0x00, 0x19, 0x00, 0xc6, 0xff, 0x96, 0xff, 0xc3, 0xff, 0xa8, 0xff, 0x9c, 0xff, 0x7e, 0xff, 0x72, 0xff, 0x8a, 0xff, 0x89, 0xff, 0x84, 0xff, 0x95, 0xff, 0x89, 0xff, 0x4e, 0xff, 0x78, 0xff, 0xea, 0xff, 0xb0, 0xff, 0x6c, 0xff, 0x3f, 0xff, 0xc3, 0xff, 0x73, 0x00, 0x10, 0x00, 0xec, 0xff, 0xfc, 0xff, 0xcc, 0xff, 0x6f, 0xff, 0x30, 0xff, 0x35, 0xff, 0x53, 0xff, 0x89, 0xff, 0xaa, 0xff, 0xe6, 0xff, 0x0b, 0x00, 0xb5, 0x00, 0x2a, 0x01, 0x8b, 0x00, 0x34, 0x00, 0xdb, 0xff, 0x47, 0xff, 0xfd, 0xfe, 0xf6, 0xfe, 0x95, 0xff, 0x10, 0x00, 0xce, 0xff, 0xa1, 0xff, 0x87, 0xff, 0xae, 0xff, 0xbc, 0xff, 0x5b, 0x00, 0x0c, 0x01, 0xa6, 0x00, 0x6b, 0x00, 0x29, 0x00, 0xa2, 0xff, 0x4d, 0xff, 0x3b, 0xff, 0x5c, 0xff, 0x93, 0xff, 0xc8, 0xff, 0xf9, 0xff, 0x19, 0x00, 0x3d, 0x00, 0x4c, 0x00, 0x5b, 0x00, 0x49, 0x00, 0xca, 0x00, 0x49, 0x01, 0x0f, 0x01, 0xac, 0x00, 0xd8, 0xff, 0x60, 0xff, 0x2c, 0xff, 0x7b, 0xff, 0x3a, 0x00, 0x71, 0x00, 0x7a, 0x00, 0x0e, 0x00, 0xbf, 0xff, 0x25, 0x00, 0x77, 0x00, 0x3a, 0x00, 0x1a, 0x00, 0x3a, 0x00, 0x4f, 0x00, 0x11, 0x00, 0xc5, 0xff, 0xc0, 0xff, 0xdb, 0xff, 0xf2, 0xff, 0x10, 0x00, 0x3b, 0x00, 0x5e, 0x00, 0x74, 0x00, 0x83, 0x00, 0x94, 0x00, 0x8c, 0x00, 0xe2, 0x00, 0x2a, 0x01, 0xbe, 0x00, 0x5c, 0x00, 0x1c, 0x00, 0x64, 0x00, 0xcb, 0x00, 0x70, 0x00, 0x41, 0x00, 0x20, 0x00, 0xea, 0xff, 0xe6, 0xff, 0x79, 0x00, 0xee, 0x00, 0x77, 0x00, 0x7f, 0x00, 0x58, 0x00, 0xe0, 0xff, 0xb1, 0xff, 0xb9, 0xff, 0xe0, 0xff, 0xad, 0x00, 0x3d, 0x01, 0xdc, 0x00, 0x9b, 0x00, 0x85, 0x00, 0x59, 0x00, 0x00, 0x00, 0xc5, 0xff, 0xbc, 0xff, 0xdd, 0xff, 0x0a, 0x00, 0x3a, 0x00, 0x5e, 0x00, 0x7c, 0x00, 0x8b, 0x00, 0x94, 0x00, 0x97, 0x00, 0x92, 0x00, 0x8b, 0x00, 0x82, 0x00, 0x77, 0x00, 0x76, 0x00, 0x68, 0x00, 0x67, 0x00, 0x64, 0x00, 0x7f, 0x00, 0x64, 0x00, 0x82, 0x00, 0x64, 0x01, 0x70, 0x01, 0xb9, 0x00, 0xfb, 0xff, 0xce, 0xff, 0xa8, 0xff, 0x5d, 0xff, 0x3e, 0xff, 0x50, 0xff, 0x89, 0xff, 0xc8, 0xff, 0x05, 0x00, 0x34, 0x00, 0x56, 0x00, 0x67, 0x00, 0x71, 0x00, 0x71, 0x00, 0x85, 0x00, 0x88, 0x01, 0x66, 0x01, 0x7f, 0x00, 0xe0, 0xff, 0xf2, 0xff, 0x38, 0x00, 0xb6, 0xff, 0x65, 0xff, 0x45, 0xff, 0x6c, 0xff, 0x98, 0xff, 0xcf, 0xff, 0x0a, 0x00, 0x3b, 0x00, 0x40, 0x00, 0x37, 0x00, 0x2f, 0x00, 0x37, 0x00, 0x19, 0x01, 0x40, 0x01, 0xb8, 0x00, 0x0d, 0x00, 0x65, 0xff, 0x80, 0xff, 0x99, 0xff, 0xc6, 0xff, 0xdd, 0xff, 0xa8, 0xff, 0xae, 0xff, 0xa7, 0xff, 0xd4, 0xff, 0xc6, 0xff, 0x7d, 0xff, 0x63, 0xff, 0x78, 0xff, 0x96, 0xff, 0xea, 0xff, 0xcb, 0x00, 0xcd, 0x00, 0x2b, 0x00, 0xae, 0xff, 0x6e, 0xff, 0x6c, 0xff, 0x7d, 0xff, 0x99, 0xff, 0xc0, 0xff, 0xac, 0x00, 0xf8, 0x00, 0x74, 0x00, 0xf0, 0xff, 0x5c, 0xff, 0x0b, 0xff, 0x05, 0xff, 0x1b, 0xff, 0xb1, 0xff, 0x46, 0x00, 0xea, 0xff, 0xc5, 0xff, 0x22, 0x00, 0x0d, 0x00, 0x92, 0xff, 0x41, 0xff, 0x27, 0xff, 0x48, 0xff, 0x80, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0x08, 0x00, 0xac, 0x00, 0x7a, 0x00, 0xce, 0xff, 0x53, 0xff, 0x30, 0xff, 0xc8, 0xff, 0x08, 0x00, 0xda, 0xff, 0x96, 0xff, 0x38, 0xff, 0x0f, 0xff, 0x12, 0xff, 0x41, 0xff, 0x6e, 0xff, 0x99, 0xff, 0xb4, 0xff, 0xce, 0xff, 0xd4, 0xff, 0x01, 0x00, 0x95, 0x00, 0xdf, 0x00, 0x5c, 0x00, 0x95, 0xff, 0x21, 0xff, 0xfa, 0xfe, 0x0b, 0xff, 0x2c, 0xff, 0x57, 0xff, 0x81, 0xff, 0xa1, 0xff, 0xb6, 0xff, 0xc9, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xcb, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xd5, 0xff, 0xdb, 0xff, 0xce, 0xff, 0xcf, 0xff, 0x0b, 0x00, 0x6e, 0x00, 0xe3, 0x00, 0x7d, 0x00, 0x90, 0xff, 0xff, 0xfe, 0xd0, 0xfe, 0xeb, 0xfe, 0x1e, 0xff, 0x60, 0xff, 0x9b, 0xff, 0xc8, 0xff, 0xe9, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x25, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x16, 0x00, 0x11, 0x00, 0x04, 0x00, 0x2c, 0x00, 0xf7, 0x00, 0xc8, 0x00, 0x0e, 0x00, 0x9c, 0xff, 0x69, 0xff, 0x6b, 0xff, 0x83, 0xff, 0xa7, 0xff, 0xc9, 0xff, 0xe9, 0xff, 0x00, 0x00, 0x14, 0x00, 0x20, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x34, 0x00, 0x2c, 0x00, 0x09, 0x01, 0x87, 0x01, 0xbb, 0x00, 0xe0, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0xec, 0xff, 0x29, 0x00, 0xd7, 0xff, 0xb6, 0xff, 0xad, 0xff, 0x26, 0x00, 0x6d, 0x00, 0x65, 0x00, 0x17, 0x00, 0xe9, 0xff, 0xd2, 0xff, 0xc9, 0xff, 0xdd, 0xff, 0x32, 0x00, 0x6d, 0x00, 0x5f, 0x00, 0x47, 0x00, 0x41, 0x00, 0x41, 0x00, 0x50, 0x00, 0x6b, 0x00, 0xe3, 0x00, 0x67, 0x01, 0xd9, 0x00, 0x28, 0x00, 0xb4, 0xff, 0xcf, 0xff, 0x65, 0x00, 0x8b, 0x00, 0x65, 0x00, 0xea, 0xff, 0xce, 0xff, 0x2c, 0x00, 0x29, 0x00, 0xf3, 0xff, 0xda, 0xff, 0xec, 0xff, 0x26, 0x00, 0x4f, 0x00, 0x5f, 0x00, 0x5e, 0x00, 0x59, 0x00, 0x53, 0x00, 0x6d, 0x00, 0x1f, 0x01, 0x57, 0x01, 0xd0, 0x00, 0x2c, 0x00, 0xc6, 0xff, 0xaa, 0xff, 0xbc, 0xff, 0xec, 0xff, 0x08, 0x00, 0x2f, 0x00, 0x43, 0x00, 0x7c, 0x00, 0xd4, 0x00, 0xc1, 0x00, 0x85, 0x00, 0xd3, 0x00, 0xf8, 0x00, 0x6e, 0x00, 0xf3, 0xff, 0x08, 0x00, 0x0b, 0x00, 0x19, 0x00, 0x2e, 0x00, 0xdd, 0xff, 0xcc, 0xff, 0x23, 0x00, 0x26, 0x00, 0xfc, 0xff, 0xed, 0xff, 0xf5, 0xff, 0x20, 0x00, 0xc7, 0x00, 0x0d, 0x01, 0xaf, 0x00, 0x65, 0x00, 0x4a, 0x00, 0x17, 0x00, 0xc5, 0xff, 0x9b, 0xff, 0xff, 0xff, 0x5c, 0x00, 0x17, 0x00, 0xef, 0xff, 0xd8, 0xff, 0xec, 0xff, 0xf8, 0xff, 0x5e, 0x00, 0x04, 0x01, 0xfd, 0x00, 0x68, 0x00, 0xef, 0xff, 0x05, 0x00, 0xfb, 0xff, 0x11, 0x00, 0x0a, 0x00, 0xbf, 0xff, 0x95, 0xff, 0x90, 0xff, 0xa8, 0xff, 0xd4, 0xff, 0xf8, 0xff, 0x10, 0x00, 0x26, 0x00, 0x28, 0x00, 0x32, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x26, 0x00, 0x23, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x10, 0x00, 0xeb, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x93, 0xff, 0x41, 0xff, 0x36, 0xff, 0x47, 0xff, 0x6f, 0xff, 0x93, 0xff, 0xb7, 0xff, 0xcf, 0xff, 0xe3, 0xff, 0xef, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xed, 0xff, 0xf9, 0xff, 0x77, 0x00, 0xe2, 0x00, 0x9b, 0x00, 0xed, 0xff, 0x6f, 0xff, 0x75, 0xff, 0x60, 0xff, 0x1a, 0xff, 0x03, 0xff, 0x1b, 0xff, 0x57, 0xff, 0x89, 0xff, 0xa7, 0xff, 0xc2, 0xff, 0xd5, 0xff, 0xe4, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xe9, 0xff, 0xfe, 0xff, 0x2f, 0x00, 0x0b, 0x00, 0xe6, 0xff, 0x6a, 0x00, 0x85, 0x00, 0xe9, 0xff, 0x4d, 0xff, 0xff, 0xfe, 0xfa, 0xfe, 0x21, 0xff, 0x45, 0xff, 0x6f, 0xff, 0x98, 0xff, 0x0e, 0x00, 0x86, 0x00, 0x55, 0x00, 0xe4, 0xff, 0xb9, 0xff, 0xce, 0xff, 0xdb, 0xff, 0x96, 0xff, 0x36, 0xff, 0x20, 0xff, 0x2a, 0xff, 0x54, 0xff, 0x7e, 0xff, 0xa8, 0xff, 0xcc, 0xff, 0x67, 0x00, 0xca, 0x00, 0x70, 0x00, 0xe1, 0xff, 0x72, 0xff, 0x41, 0xff, 0x47, 0xff, 0x5c, 0xff, 0x84, 0xff, 0x9f, 0xff, 0xf2, 0xff, 0xaf, 0x00, 0x80, 0x00, 0xf3, 0xff, 0xec, 0xff, 0xe4, 0xff, 0x8d, 0xff, 0x62, 0xff, 0x4d, 0xff, 0x8a, 0xff, 0x0b, 0x00, 0xf9, 0xff, 0xa7, 0xff, 0x7d, 0xff, 0x7e, 0xff, 0x8f, 0xff, 0xb3, 0xff, 0xcb, 0xff, 0xe4, 0xff, 0xf3, 0xff, 0x0b, 0x00, 0x26, 0x00, 0x71, 0x00, 0xda, 0x00, 0xa7, 0x00, 0x0b, 0x00, 0x87, 0xff, 0x4e, 0xff, 0x4a, 0xff, 0x69, 0xff, 0x90, 0xff, 0xba, 0xff, 0xd7, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x79, 0x00, 0x19, 0x01, 0xc1, 0x00, 0x43, 0x00, 0xcc, 0xff, 0x77, 0xff, 0x75, 0xff, 0x87, 0xff, 0x96, 0xff, 0xab, 0xff, 0xc2, 0xff, 0xe6, 0xff, 0x9a, 0x00, 0xeb, 0x00, 0x91, 0x00, 0x07, 0x00, 0xae, 0xff, 0x8f, 0xff, 0x9e, 0xff, 0xb6, 0xff, 0x01, 0x00, 0xaf, 0x00, 0x9a, 0x00, 0x2c, 0x00, 0xed, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xec, 0xff, 0x05, 0x00, 0x19, 0x00, 0x2b, 0x00, 0x31, 0x00, 0x38, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x43, 0x00, 0x56, 0x00, 0x55, 0x00, 0x5b, 0x00, 0x5e, 0x00, 0x46, 0x00, 0x31, 0x00, 0x6a, 0x00, 0xfb, 0x00, 0xbf, 0x00, 0x1a, 0x00, 0xad, 0xff, 0x8d, 0xff, 0x8f, 0xff, 0x28, 0x00, 0x9b, 0x00, 0x71, 0x00, 0x5b, 0x00, 0x1a, 0x00, 0xe4, 0xff, 0xb7, 0xff, 0xc6, 0xff, 0xdb, 0xff, 0x19, 0x00, 0xa6, 0x00, 0xcd, 0x00, 0x8e, 0x00, 0x49, 0x00, 0x53, 0x00, 0x2c, 0x00, 0xed, 0xff, 0xd5, 0xff, 0xf6, 0xff, 0x0e, 0x00, 0x67, 0x00, 0xd4, 0x00, 0x8e, 0x00, 0x37, 0x00, 0xf6, 0xff, 0x14, 0x00, 0x9a, 0x00, 0x83, 0x00, 0x1f, 0x00, 0x05, 0x00, 0x59, 0x00, 0x4c, 0x00, 0x04, 0x00, 0xed, 0xff, 0xec, 0xff, 0xfc, 0xff, 0x19, 0x00, 0x29, 0x00, 0x47, 0x00, 0x44, 0x00, 0xa0, 0x00, 0x1b, 0x01, 0xb8, 0x00, 0x8b, 0x00, 0x7d, 0x00, 0x43, 0x00, 0x1a, 0x00, 0xf5, 0xff, 0xe4, 0xff, 0xce, 0xff, 0xb9, 0xff, 0xc0, 0xff, 0xcc, 0xff, 0xdb, 0xff, 0xf3, 0xff, 0x0d, 0x00, 0x29, 0x00, 0x40, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x43, 0x00, 0x40, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x34, 0x00, 0x23, 0x00, 0x19, 0x00, 0x16, 0x00, 0x0a, 0x00, 0x16, 0x00, 0x02, 0x00, 0x5e, 0x00, 0xef, 0x00, 0xef, 0x00, 0x65, 0x00, 0xcf, 0xff, 0xba, 0xff, 0x80, 0xff, 0x4e, 0xff, 0x4e, 0xff, 0x65, 0xff, 0xd1, 0xff, 0x67, 0x00, 0x5f, 0x00, 0xfe, 0xff, 0xc3, 0xff, 0xa8, 0xff, 0xb4, 0xff, 0xc5, 0xff, 0x0a, 0x00, 0xb0, 0x00, 0xa3, 0x00, 0x4c, 0x00, 0x1a, 0x00, 0xe4, 0xff, 0x93, 0xff, 0x6e, 0xff, 0x6c, 0xff, 0xc6, 0xff, 0x4a, 0x00, 0x3e, 0x00, 0x2c, 0x00, 0xdd, 0xff, 0x96, 0xff, 0x7a, 0xff, 0xad, 0xff, 0x31, 0x00, 0x22, 0x00, 0xd7, 0xff, 0xa8, 0xff, 0x99, 0xff, 0x9c, 0xff, 0xb6, 0xff, 0xc6, 0xff, 0x4f, 0x00, 0xa3, 0x00, 0x53, 0x00, 0x0d, 0x00, 0xa5, 0xff, 0x71, 0xff, 0x72, 0xff, 0x77, 0xff, 0x86, 0xff, 0x8d, 0xff, 0xef, 0xff, 0x6e, 0x00, 0x22, 0x00, 0x13, 0x00, 0x0a, 0x00, 0xa5, 0xff, 0x69, 0xff, 0x5f, 0xff, 0x77, 0xff, 0x87, 0xff, 0xb4, 0xff, 0x35, 0x00, 0x6a, 0x00, 0x16, 0x00, 0xb7, 0xff, 0x7e, 0xff, 0x66, 0xff, 0x74, 0xff, 0x84, 0xff, 0xc0, 0xff, 0xed, 0xff, 0x43, 0x00, 0x56, 0x00, 0xf0, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xa7, 0xff, 0x89, 0xff, 0xa1, 0xff, 0xa5, 0xff, 0xb6, 0xff, 0xc8, 0xff, 0xba, 0xff, 0x8f, 0xff, 0x92, 0xff, 0xd7, 0xff, 0xf2, 0xff, 0xb7, 0xff, 0x8c, 0xff, 0x81, 0xff, 0x98, 0xff, 0xcb, 0xff, 0xe4, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xe3, 0xff, 0x49, 0x00, 0x6b, 0x00, 0x32, 0x00, 0xe3, 0xff, 0x89, 0xff, 0x63, 0xff, 0x62, 0xff, 0xb0, 0xff, 0x22, 0x00, 0x0b, 0x00, 0xe4, 0xff, 0x17, 0x00, 0xf2, 0xff, 0xbc, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xb9, 0xff, 0xab, 0xff, 0xab, 0xff, 0xb6, 0xff, 0xcf, 0xff, 0x11, 0x00, 0xf3, 0xff, 0xcc, 0xff, 0xb7, 0xff, 0xde, 0xff, 0x4a, 0x00, 0x38, 0x00, 0xf3, 0xff, 0xc3, 0xff, 0xcf, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x16, 0x00, 0xfc, 0xff, 0xe0, 0xff, 0xcf, 0xff, 0x07, 0x00, 0x7d, 0x00, 0x56, 0x00, 0xff, 0xff, 0xbd, 0xff, 0xb6, 0xff, 0x04, 0x00, 0x4f, 0x00, 0x34, 0x00, 0x29, 0x00, 0x29, 0x00, 0xcf, 0xff, 0x9c, 0xff, 0x8f, 0xff, 0xa7, 0xff, 0xc6, 0xff, 0xe7, 0xff, 0x05, 0x00, 0x1f, 0x00, 0x2b, 0x00, 0x31, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x35, 0x00, 0x34, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x31, 0x00, 0xda, 0x00, 0xfb, 0x00, 0x5c, 0x00, 0xf3, 0xff, 0xaa, 0xff, 0xdb, 0xff, 0x2b, 0x00, 0x0e, 0x00, 0xce, 0xff, 0xb1, 0xff, 0xd7, 0xff, 0x1a, 0x00, 0x17, 0x00, 0x04, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x16, 0x00, 0x26, 0x00, 0x34, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x46, 0x00, 0x4a, 0x00, 0x53, 0x00, 0xc4, 0x00, 0x07, 0x01, 0xb6, 0x00, 0x6e, 0x00, 0x0d, 0x00, 0xb3, 0xff, 0x93, 0xff, 0x99, 0xff, 0xbf, 0xff, 0xde, 0xff, 0x16, 0x00, 0x61, 0x00, 0xb0, 0x00, 0xd1, 0x00, 0x68, 0x00, 0x38, 0x00, 0x47, 0x00, 0x37, 0x00, 0x1f, 0x00, 0xf9, 0xff, 0xce, 0xff, 0xc6, 0xff, 0xd7, 0xff, 0xf3, 0xff, 0x17, 0x00, 0x6d, 0x00, 0xb6, 0x00, 0x7d, 0x00, 0x3a, 0x00, 0x07, 0x00, 0x16, 0x00, 0x88, 0x00, 0x79, 0x00, 0x2c, 0x00, 0xf3, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xf3, 0xff, 0x04, 0x00, 0x3b, 0x00, 0xd3, 0x00, 0xc7, 0x00, 0x4a, 0x00, 0xff, 0xff, 0xd4, 0xff, 0x08, 0x00, 0x47, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x13, 0x00, 0xde, 0xff, 0xc0, 0xff, 0xc3, 0xff, 0xd5, 0xff, 0xf0, 0xff, 0x05, 0x00, 0x44, 0x00, 0x7c, 0x00, 0x5c, 0x00, 0x3e, 0x00, 0x38, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x71, 0x00, 0x59, 0x00, 0x00, 0x00, 0xc3, 0xff, 0xaa, 0xff, 0xb1, 0xff, 0xcc, 0xff, 0x43, 0x00, 0x5e, 0x00, 0x1c, 0x00, 0xe6, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xec, 0xff, 0x5e, 0x00, 0x5e, 0x00, 0x5b, 0x00, 0x28, 0x00, 0xec, 0xff, 0xea, 0xff, 0xb9, 0xff, 0x98, 0xff, 0xa2, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0xe3, 0xff, 0xdd, 0xff, 0x10, 0x00, 0x61, 0x00, 0x3a, 0x00, 0xec, 0xff, 0xb9, 0xff, 0xa7, 0xff, 0xb0, 0xff, 0xc5, 0xff, 0xd7, 0xff, 0xe4, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xf9, 0xff, 0x0d, 0x00, 0x86, 0x00, 0x85, 0x00, 0x61, 0x00, 0x08, 0x00, 0x90, 0xff, 0x56, 0xff, 0x48, 0xff, 0x5d, 0xff, 0x7d, 0xff, 0x9b, 0xff, 0xba, 0xff, 0xcf, 0xff, 0xdd, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xda, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xda, 0xff, 0xde, 0xff, 0xd1, 0xff, 0x40, 0x00, 0x97, 0x00, 0x4a, 0x00, 0xc8, 0xff, 0x65, 0xff, 0x8d, 0xff, 0x99, 0xff, 0x6e, 0xff, 0x66, 0xff, 0x65, 0xff, 0x7a, 0xff, 0x89, 0xff, 0xb1, 0xff, 0xd5, 0xff, 0x16, 0x00, 0x47, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0xfc, 0xff, 0xed, 0xff, 0xd4, 0xff, 0xc0, 0xff, 0xa1, 0xff, 0x7a, 0xff, 0x87, 0xff, 0xb0, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xba, 0xff, 0xc9, 0xff, 0xd4, 0xff, 0xe4, 0xff, 0xf0, 0xff, 0x55, 0x00, 0x92, 0x00, 0x32, 0x00, 0xe4, 0xff, 0xe7, 0xff, 0xdb, 0xff, 0xe1, 0xff, 0xd2, 0xff, 0x9e, 0xff, 0x87, 0xff, 0xab, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xce, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xba, 0xff, 0xb3, 0xff, 0xdb, 0xff, 0x46, 0x00, 0x56, 0x00, 0x26, 0x00, 0xde, 0xff, 0xb6, 0xff, 0xab, 0xff, 0xb3, 0xff, 0xc6, 0xff, 0xdb, 0xff, 0xed, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x13, 0x00, 0x0d, 0x00, 0x5c, 0x00, 0xc4, 0x00, 0x9e, 0x00, 0x31, 0x00, 0xd4, 0xff, 0xdb, 0xff, 0xd7, 0xff, 0xae, 0xff, 0x8f, 0xff, 0x8d, 0xff, 0xa5, 0xff, 0xc5, 0xff, 0xe0, 0xff, 0xfb, 0xff, 0x13, 0x00, 0x58, 0x00, 0xa0, 0x00, 0x94, 0x00, 0x56, 0x00, 0x1f, 0x00, 0x17, 0x00, 0xe7, 0xff, 0xb1, 0xff, 0xc2, 0xff, 0x28, 0x00, 0x43, 0x00, 0xff, 0xff, 0xd1, 0xff, 0xc2, 0xff, 0xce, 0xff, 0xe4, 0xff, 0x04, 0x00, 0x55, 0x00, 0x64, 0x00, 0x37, 0x00, 0x22, 0x00, 0x31, 0x00, 0x34, 0x00, 0x1c, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x14, 0x00, 0x1c, 0x00, 0x23, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x31, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x2e, 0x00, 0x22, 0x00, 0xa7, 0x00, 0xf8, 0x00, 0x7f, 0x00, 0x0a, 0x00, 0xda, 0xff, 0xf6, 0xff, 0x1f, 0x00, 0x04, 0x00, 0xcc, 0xff, 0xb7, 0xff, 0xbc, 0xff, 0xd2, 0xff, 0xfb, 0xff, 0x0e, 0x00, 0x70, 0x00, 0xb9, 0x00, 0x74, 0x00, 0x29, 0x00, 0xf9, 0xff, 0xef, 0xff, 0xf3, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x23, 0x00, 0x26, 0x00, 0x37, 0x00, 0x31, 0x00, 0x74, 0x00, 0xf2, 0x00, 0xc1, 0x00, 0x3d, 0x00, 0xe4, 0xff, 0xbd, 0xff, 0xb7, 0xff, 0xc8, 0xff, 0xdd, 0xff, 0xf5, 0xff, 0x0b, 0x00, 0x17, 0x00, 0x25, 0x00, 0x2c, 0x00, 0x32, 0x00, 0x32, 0x00, 0x32, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x28, 0x00, 0x23, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x19, 0x00, 0x14, 0x00, 0x17, 0x00, 0x08, 0x00, 0x55, 0x00, 0xdc, 0x00, 0xa1, 0x00, 0x2f, 0x00, 0x02, 0x00, 0xef, 0xff, 0xb1, 0xff, 0x74, 0xff, 0x7e, 0xff, 0xbf, 0xff, 0xc5, 0xff, 0xf0, 0xff, 0x2c, 0x00, 0x0b, 0x00, 0xe0, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xd7, 0xff, 0xf5, 0xff, 0x4d, 0x00, 0x56, 0x00, 0x20, 0x00, 0xf9, 0xff, 0x25, 0x00, 0x4c, 0x00, 0x0d, 0x00, 0xd5, 0xff, 0xb7, 0xff, 0xb3, 0xff, 0xbd, 0xff, 0xd7, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0x14, 0x00, 0x82, 0x00, 0x85, 0x00, 0x43, 0x00, 0x05, 0x00, 0xdb, 0xff, 0xb6, 0xff, 0x8c, 0xff, 0x80, 0xff, 0x96, 0xff, 0xbf, 0xff, 0xc9, 0xff, 0xd7, 0xff, 0xde, 0xff, 0xe7, 0xff, 0xf6, 0xff, 0x64, 0x00, 0x82, 0x00, 0x25, 0x00, 0xcf, 0xff, 0x9c, 0xff, 0x95, 0xff, 0x9e, 0xff, 0xab, 0xff, 0xc3, 0xff, 0xd1, 0xff, 0xe1, 0xff, 0xf8, 0xff, 0x26, 0x00, 0x7c, 0x00, 0x5e, 0x00, 0x0b, 0x00, 0xc8, 0xff, 0xcb, 0xff, 0xc0, 0xff, 0x96, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x99, 0xff, 0xd2, 0xff, 0xe3, 0xff, 0xda, 0xff, 0xd1, 0xff, 0xce, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xe0, 0xff, 0xe9, 0xff, 0x3a, 0x00, 0x49, 0x00, 0x16, 0x00, 0x22, 0x00, 0xf5, 0xff, 0xb9, 0xff, 0x89, 0xff, 0x9f, 0xff, 0xe7, 0xff, 0xda, 0xff, 0xb3, 0xff, 0x9f, 0xff, 0x9c, 0xff, 0xa8, 0xff, 0xbc, 0xff, 0xd1, 0xff, 0xde, 0xff, 0xe7, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0x5c, 0x00, 0x77, 0x00, 0x4f, 0x00, 0x1a, 0x00, 0xde, 0xff, 0xbf, 0xff, 0xa5, 0xff, 0x92, 0xff, 0xba, 0xff, 0xc9, 0xff, 0xb4, 0xff, 0x9f, 0xff, 0x98, 0xff, 0xbc, 0xff, 0xc3, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xfc, 0xff, 0x4a, 0x00, 0x38, 0x00, 0x04, 0x00, 0xde, 0xff, 0xcc, 0xff, 0xd4, 0xff, 0xfe, 0xff, 0x43, 0x00, 0x49, 0x00, 0x2f, 0x00, 0xf8, 0xff, 0xba, 0xff, 0xae, 0xff, 0xe7, 0xff, 0xfc, 0xff, 0xd8, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0x25, 0x00, 0x47, 0x00, 0x19, 0x00, 0xe4, 0xff, 0xbf, 0xff, 0xb7, 0xff, 0xc0, 0xff, 0xd5, 0xff, 0xe7, 0xff, 0xfc, 0xff, 0x08, 0x00, 0x13, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x2e, 0x00, 0x9e, 0x00, 0xb3, 0x00, 0x52, 0x00, 0xe6, 0xff, 0xd4, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xec, 0xff, 0xe0, 0xff, 0xda, 0xff, 0xcf, 0xff, 0xfe, 0xff, 0x0a, 0x00, 0x04, 0x00, 0xe9, 0xff, 0xdb, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xfe, 0xff, 0x0d, 0x00, 0x1c, 0x00, 0x28, 0x00, 0x2e, 0x00, 0x32, 0x00, 0x38, 0x00, 0x38, 0x00, 0x32, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x2c, 0x00, 0x37, 0x00, 0x2b, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x14, 0x00, 0x11, 0x00, 0x3b, 0x00, 0xa1, 0x00, 0x8c, 0x00, 0x44, 0x00, 0x35, 0x00, 0xf8, 0xff, 0xb9, 0xff, 0xa2, 0xff, 0xae, 0xff, 0xc6, 0xff, 0xe1, 0xff, 0xfb, 0xff, 0x0b, 0x00, 0x20, 0x00, 0x2e, 0x00, 0x37, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x37, 0x00, 0x38, 0x00, 0x44, 0x00, 0x9d, 0x00, 0xdc, 0x00, 0x73, 0x00, 0x14, 0x00, 0xf2, 0xff, 0xd1, 0xff, 0xb6, 0xff, 0xbd, 0xff, 0xcb, 0xff, 0xdd, 0xff, 0x05, 0x00, 0x38, 0x00, 0x43, 0x00, 0x44, 0x00, 0x68, 0x00, 0x5f, 0x00, 0x23, 0x00, 0xed, 0xff, 0xdb, 0xff, 0xd2, 0xff, 0x01, 0x00, 0x2b, 0x00, 0x47, 0x00, 0x53, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x11, 0x00, 0xf9, 0xff, 0x16, 0x00, 0x22, 0x00, 0xff, 0xff, 0xe9, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xf5, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x1a, 0x00, 0x20, 0x00, 0x3b, 0x00, 0x40, 0x00, 0x40, 0x00, 0x2b, 0x00, 0x20, 0x00, 0x53, 0x00, 0x74, 0x00, 0x3a, 0x00, 0x00, 0x00, 0xe4, 0xff, 0xc6, 0xff, 0xab, 0xff, 0xd1, 0xff, 0x10, 0x00, 0xfc, 0xff, 0xe0, 0xff, 0xd1, 0xff, 0xd5, 0xff, 0xe6, 0xff, 0xed, 0xff, 0x07, 0x00, 0x2b, 0x00, 0x26, 0x00, 0x2b, 0x00, 0x4a, 0x00, 0x56, 0x00, 0x31, 0x00, 0x0b, 0x00, 0xcc, 0xff, 0xab, 0xff, 0x9f, 0xff, 0xaa, 0xff, 0xc2, 0xff, 0xd2, 0xff, 0xe6, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0x16, 0x00, 0x1f, 0x00, 0x05, 0x00, 0xea, 0xff, 0xce, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xcf, 0xff, 0xd5, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xec, 0xff, 0x49, 0x00, 0x3b, 0x00, 0xf6, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0x13, 0x00, 0x0d, 0x00, 0xd5, 0xff, 0xbf, 0xff, 0xcc, 0xff, 0xb3, 0xff, 0x96, 0xff, 0x8c, 0xff, 0x95, 0xff, 0xad, 0xff, 0xbd, 0xff, 0xda, 0xff, 0xde, 0xff, 0x11, 0x00, 0x74, 0x00, 0x6b, 0x00, 0x0d, 0x00, 0xd2, 0xff, 0xf0, 0xff, 0xd5, 0xff, 0xaa, 0xff, 0x99, 0xff, 0x9c, 0xff, 0xaa, 0xff, 0xbc, 0xff, 0xd1, 0xff, 0xdb, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xec, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xea, 0xff, 0xef, 0xff, 0xe9, 0xff, 0x38, 0x00, 0x79, 0x00, 0x2c, 0x00, 0xdb, 0xff, 0xa4, 0xff, 0x95, 0xff, 0x96, 0xff, 0x9f, 0xff, 0xba, 0xff, 0xd8, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x0b, 0x00, 0x88, 0x00, 0x8b, 0x00, 0x22, 0x00, 0xf2, 0xff, 0xfe, 0xff, 0xf0, 0xff, 0xd2, 0xff, 0xb7, 0xff, 0xa2, 0xff, 0xcb, 0xff, 0xd8, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xcc, 0xff, 0xdb, 0xff, 0xfc, 0xff, 0x43, 0x00, 0x73, 0x00, 0x4c, 0x00, 0x0a, 0x00, 0xe7, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe4, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x08, 0x00, 0x13, 0x00, 0x16, 0x00, 0x1f, 0x00, 0x34, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x28, 0x00, 0x05, 0x00, 0xea, 0xff, 0xf5, 0xff, 0x4c, 0x00, 0x5b, 0x00, 0x22, 0x00, 0x0a, 0x00, 0xf3, 0xff, 0xe0, 0xff, 0xdb, 0xff, 0xef, 0xff, 0xfb, 0xff, 0xe6, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xef, 0xff, 0x05, 0x00, 0x4f, 0x00, 0x83, 0x00, 0x50, 0x00, 0x16, 0x00, 0xf8, 0xff, 0xf0, 0xff, 0x2c, 0x00, 0x6d, 0x00, 0x49, 0x00, 0x07, 0x00, 0xe3, 0xff, 0xd4, 0xff, 0xea, 0xff, 0x0b, 0x00, 0x16, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x16, 0x00, 0x68, 0x00, 0x8f, 0x00, 0x5f, 0x00, 0x25, 0x00, 0xed, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xe3, 0xff, 0xf6, 0xff, 0x04, 0x00, 0x19, 0x00, 0x34, 0x00, 0x3d, 0x00, 0x32, 0x00, 0x41, 0x00, 0x5f, 0x00, 0x47, 0x00, 0x1d, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x17, 0x00, 0x67, 0x00, 0x71, 0x00, 0x65, 0x00, 0x3d, 0x00, 0xf5, 0xff, 0xcf, 0xff, 0xc2, 0xff, 0xcc, 0xff, 0xec, 0xff, 0x11, 0x00, 0x4f, 0x00, 0x61, 0x00, 0x31, 0x00, 0xff, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xf3, 0xff, 0xfe, 0xff, 0x0b, 0x00, 0x13, 0x00, 0x22, 0x00, 0x5b, 0x00, 0x8c, 0x00, 0x6d, 0x00, 0x23, 0x00, 0xe9, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xd5, 0xff, 0xe1, 0xff, 0x01, 0x00, 0x52, 0x00, 0x49, 0x00, 0x16, 0x00, 0xed, 0xff, 0xf9, 0xff, 0x2e, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x10, 0x00, 0xe7, 0xff, 0xd1, 0xff, 0xf0, 0xff, 0x01, 0x00, 0xed, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0x14, 0x00, 0x56, 0x00, 0x35, 0x00, 0x05, 0x00, 0xe0, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xdb, 0xff, 0xe6, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x19, 0x00, 0x0a, 0x00, 0x37, 0x00, 0x76, 0x00, 0x3a, 0x00, 0x01, 0x00, 0xce, 0xff, 0xb4, 0xff, 0xab, 0xff, 0xe7, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xdd, 0xff, 0xc2, 0xff, 0xb6, 0xff, 0xbd, 0xff, 0xc9, 0xff, 0xd5, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x16, 0x00, 0x62, 0x00, 0x7a, 0x00, 0x37, 0x00, 0xf0, 0xff, 0xc9, 0xff, 0xc6, 0xff, 0xae, 0xff, 0x99, 0xff, 0x9c, 0xff, 0xa8, 0xff, 0xba, 0xff, 0xc9, 0xff, 0xde, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0x05, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x0b, 0x00, 0x22, 0x00, 0x25, 0x00, 0xf0, 0xff, 0xc3, 0xff, 0xaa, 0xff, 0xa4, 0xff, 0xb4, 0xff, 0xd4, 0xff, 0x08, 0x00, 0x25, 0x00, 0x1c, 0x00, 0xe9, 0xff, 0xb9, 0xff, 0xc3, 0xff, 0xdd, 0xff, 0xd5, 0xff, 0xef, 0xff, 0xe9, 0xff, 0xd4, 0xff, 0xce, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xcc, 0xff, 0xd5, 0xff, 0xe1, 0xff, 0xed, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x59, 0x00, 0x67, 0x00, 0x35, 0x00, 0x13, 0x00, 0xe3, 0xff, 0xbd, 0xff, 0x9b, 0xff, 0x9e, 0xff, 0xa7, 0xff, 0xbc, 0xff, 0xcc, 0xff, 0xf9, 0xff, 0x49, 0x00, 0x52, 0x00, 0x14, 0x00, 0xe0, 0xff, 0xc6, 0xff, 0xbf, 0xff, 0xc3, 0xff, 0xd1, 0xff, 0xde, 0xff, 0xec, 0xff, 0xfb, 0xff, 0x17, 0x00, 0x5f, 0x00, 0x6b, 0x00, 0x2f, 0x00, 0xef, 0xff, 0xc2, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xec, 0xff, 0xd1, 0xff, 0xc2, 0xff, 0xcb, 0xff, 0xd5, 0xff, 0xe4, 0xff, 0xf0, 0xff, 0xfe, 0xff, 0x16, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x11, 0x00, 0x55, 0x00, 0x74, 0x00, 0x44, 0x00, 0x0b, 0x00, 0xdb, 0xff, 0xec, 0xff, 0xe1, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xd7, 0xff, 0xe0, 0xff, 0x17, 0x00, 0x37, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x02, 0x00, 0xf2, 0xff, 0xf6, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xef, 0xff, 0xf9, 0xff, 0x05, 0x00, 0x0d, 0x00, 0x16, 0x00, 0x19, 0x00, 0x2e, 0x00, 0x8b, 0x00, 0x89, 0x00, 0x3e, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0x14, 0x00, 0x0b, 0x00, 0xef, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0x04, 0x00, 0x2c, 0x00, 0x1a, 0x00, 0xf6, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x0e, 0x00, 0x17, 0x00, 0x25, 0x00, 0x1f, 0x00, 0x4f, 0x00, 0x8f, 0x00, 0x61, 0x00, 0x25, 0x00, 0xf8, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe9, 0xff, 0xf5, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x26, 0x00, 0x35, 0x00, 0x53, 0x00, 0x70, 0x00, 0x56, 0x00, 0x1c, 0x00, 0xef, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xe7, 0xff, 0xf6, 0xff, 0x32, 0x00, 0x4f, 0x00, 0x26, 0x00, 0x04, 0x00, 0xed, 0xff, 0xec, 0xff, 0xef, 0xff, 0x08, 0x00, 0x22, 0x00, 0x47, 0x00, 0x65, 0x00, 0x41, 0x00, 0x08, 0x00, 0xe7, 0xff, 0xda, 0xff, 0x04, 0x00, 0x3a, 0x00, 0x26, 0x00, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xfb, 0xff, 0x1a, 0x00, 0x11, 0x00, 0x07, 0x00, 0x02, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x2e, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x2c, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xe9, 0xff, 0xe1, 0xff, 0x0a, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x1c, 0x00, 0x01, 0x00, 0xf5, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xfe, 0xff, 0x32, 0x00, 0x50, 0x00, 0x3d, 0x00, 0x07, 0x00, 0xe1, 0xff, 0xce, 0xff, 0xcb, 0xff, 0xd4, 0xff, 0xe1, 0xff, 0xef, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x11, 0x00, 0x16, 0x00, 0x08, 0x00, 0xf9, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xec, 0xff, 0xf0, 0xff, 0x35, 0x00, 0x59, 0x00, 0x37, 0x00, 0x11, 0x00, 0xd8, 0xff, 0xad, 0xff, 0x96, 0xff, 0x9c, 0xff, 0xa8, 0xff, 0xbc, 0xff, 0xcf, 0xff, 0xde, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0x02, 0x00, 0xff, 0xff, 0x2f, 0x00, 0x56, 0x00, 0x3a, 0x00, 0x29, 0x00, 0x00, 0x00, 0xcf, 0xff, 0xb0, 0xff, 0xa8, 0xff, 0xb7, 0xff, 0xef, 0xff, 0xf8, 0xff, 0xda, 0xff, 0xc6, 0xff, 0xbd, 0xff, 0xc6, 0xff, 0xd2, 0xff, 0xdd, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0x04, 0x00, 0x5e, 0x00, 0x58, 0x00, 0x0b, 0x00, 0xd4, 0xff, 0xae, 0xff, 0xab, 0xff, 0xae, 0xff, 0xb9, 0xff, 0xc8, 0xff, 0xd4, 0xff, 0xe1, 0xff, 0xea, 0xff, 0xec, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x61, 0x00, 0x65, 0x00, 0x11, 0x00, 0xe1, 0xff, 0xdb, 0xff, 0xc0, 0xff, 0xad, 0xff, 0xa5, 0xff, 0xab, 0xff, 0xbc, 0xff, 0xcc, 0xff, 0xdb, 0xff, 0xf5, 0xff, 0x10, 0x00, 0x10, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf2, 0xff, 0x00, 0x00, 0x4a, 0x00, 0x55, 0x00, 0x17, 0x00, 0xf0, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xce, 0xff, 0xb9, 0xff, 0xb6, 0xff, 0xc0, 0xff, 0xcc, 0xff, 0xde, 0xff, 0xef, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x14, 0x00, 0x16, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x11, 0x00, 0x32, 0x00, 0x26, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x0d, 0x00, 0xec, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xdd, 0xff, 0xed, 0xff, 0x07, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf0, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xf2, 0xff, 0x16, 0x00, 0x3e, 0x00, 0x1d, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x13, 0x00, 0x11, 0x00, 0xfc, 0xff, 0xed, 0xff, 0xe3, 0xff, 0xef, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x0b, 0x00, 0x17, 0x00, 0x17, 0x00, 0x23, 0x00, 0x25, 0x00, 0x23, 0x00, 0x1f, 0x00, 0x17, 0x00, 0x17, 0x00, 0x14, 0x00, 0x17, 0x00, 0x16, 0x00, 0x16, 0x00, 0x11, 0x00, 0x13, 0x00, 0x11, 0x00, 0x31, 0x00, 0x86, 0x00, 0x70, 0x00, 0x26, 0x00, 0x08, 0x00, 0xe7, 0xff, 0xd1, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xf9, 0xff, 0x1c, 0x00, 0x07, 0x00, 0xec, 0xff, 0xde, 0xff, 0xe3, 0xff, 0xec, 0xff, 0x08, 0x00, 0x3e, 0x00, 0x4d, 0x00, 0x47, 0x00, 0x1c, 0x00, 0x04, 0x00, 0x19, 0x00, 0x1f, 0x00, 0x10, 0x00, 0xf3, 0xff, 0xef, 0xff, 0x10, 0x00, 0x11, 0x00, 0xfc, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x08, 0x00, 0x13, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x19, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x10, 0x00, 0x13, 0x00, 0x22, 0x00, 0x37, 0x00, 0x2c, 0x00, 0x35, 0x00, 0x49, 0x00, 0x22, 0x00, 0xec, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xef, 0xff, 0x01, 0x00, 0xec, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xde, 0xff, 0xe6, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x16, 0x00, 0x2e, 0x00, 0x41, 0x00, 0x4d, 0x00, 0x40, 0x00, 0x22, 0x00, 0x04, 0x00, 0xe1, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xcc, 0xff, 0xd2, 0xff, 0xe4, 0xff, 0xed, 0xff, 0x1f, 0x00, 0x52, 0x00, 0x29, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x05, 0x00, 0xf2, 0xff, 0xd4, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xd2, 0xff, 0xde, 0xff, 0xe9, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x25, 0x00, 0x4c, 0x00, 0x3a, 0x00, 0x13, 0x00, 0xff, 0xff, 0x02, 0x00, 0x13, 0x00, 0xec, 0xff, 0xc3, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xb9, 0xff, 0xc5, 0xff, 0xd8, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x20, 0x00, 0x53, 0x00, 0x2c, 0x00, 0xff, 0xff, 0xdd, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xda, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xef, 0xff, 0x1a, 0x00, 0x65, 0x00, 0x43, 0x00, 0xfb, 0xff, 0xcc, 0xff, 0xc3, 0xff, 0xcc, 0xff, 0xda, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xde, 0xff, 0xd1, 0xff, 0xc5, 0xff, 0xcb, 0xff, 0xd5, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xfe, 0xff, 0x2e, 0x00, 0x31, 0x00, 0x1c, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xec, 0xff, 0xdd, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xe7, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x1f, 0x00, 0x28, 0x00, 0x11, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0x05, 0x00, 0x43, 0x00, 0x56, 0x00, 0x3a, 0x00, 0x08, 0x00, 0xda, 0xff, 0xc3, 0xff, 0xbd, 0xff, 0xcc, 0xff, 0xfb, 0xff, 0x1c, 0x00, 0x14, 0x00, 0xf8, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xec, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0x23, 0x00, 0x4f, 0x00, 0x3b, 0x00, 0x11, 0x00, 0xf2, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe9, 0xff, 0xef, 0xff, 0x1c, 0x00, 0x70, 0x00, 0x52, 0x00, 0x0b, 0x00, 0xe7, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xdb, 0xff, 0xe9, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x07, 0x00, 0x0e, 0x00, 0x16, 0x00, 0x19, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x19, 0x00, 0x6a, 0x00, 0x7f, 0x00, 0x3b, 0x00, 0x13, 0x00, 0xed, 0xff, 0xd1, 0xff, 0xc6, 0xff, 0xcb, 0xff, 0xd5, 0xff, 0xe7, 0xff, 0xf6, 0xff, 0x29, 0x00, 0x4d, 0x00, 0x44, 0x00, 0x28, 0x00, 0x04, 0x00, 0xe9, 0xff, 0xf9, 0xff, 0x19, 0x00, 0x1d, 0x00, 0x14, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xed, 0xff, 0xf9, 0xff, 0x1c, 0x00, 0x17, 0x00, 0x07, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x0e, 0x00, 0x40, 0x00, 0x4f, 0x00, 0x2c, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x22, 0x00, 0x08, 0x00, 0xf0, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xf5, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x1a, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x4a, 0x00, 0x70, 0x00, 0x38, 0x00, 0xff, 0xff, 0xdb, 0xff, 0xce, 0xff, 0xcb, 0xff, 0xdb, 0xff, 0xfb, 0xff, 0x23, 0x00, 0x2c, 0x00, 0x22, 0x00, 0x07, 0x00, 0xed, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe9, 0xff, 0xf0, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x47, 0x00, 0x5e, 0x00, 0x3d, 0x00, 0x23, 0x00, 0xf2, 0xff, 0xda, 0xff, 0xce, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xcc, 0xff, 0xc9, 0xff, 0xed, 0xff, 0x0e, 0x00, 0xff, 0xff, 0xef, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0x14, 0x00, 0x3a, 0x00, 0x29, 0x00, 0x01, 0x00, 0xe4, 0xff, 0xd7, 0xff, 0xe3, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xe7, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xe7, 0xff, 0xdb, 0xff, 0xd5, 0xff, 0xdb, 0xff, 0xde, 0xff, 0xe7, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x2e, 0x00, 0x52, 0x00, 0x2b, 0x00, 0xf0, 0xff, 0xce, 0xff, 0xbf, 0xff, 0xb9, 0xff, 0xd4, 0xff, 0x01, 0x00, 0x14, 0x00, 0x02, 0x00, 0xe0, 0xff, 0xcf, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xd7, 0xff, 0xe3, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x14, 0x00, 0x53, 0x00, 0x49, 0x00, 0x0e, 0x00, 0xdb, 0xff, 0xc9, 0xff, 0xcf, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xcb, 0xff, 0xd4, 0xff, 0xdd, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x38, 0x00, 0x5f, 0x00, 0x2f, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xcf, 0xff, 0xba, 0xff, 0xb9, 0xff, 0xce, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x3b, 0x00, 0x5e, 0x00, 0x2c, 0x00, 0xfb, 0xff, 0xe0, 0xff, 0xd5, 0xff, 0xf6, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x0a, 0x00, 0xf5, 0xff, 0xe7, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x10, 0x00, 0x22, 0x00, 0x23, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x01, 0x00, 0xe6, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xec, 0xff, 0x11, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x0e, 0x00, 0xfc, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0x01, 0x00, 0x2f, 0x00, 0x40, 0x00, 0x28, 0x00, 0x14, 0x00, 0x13, 0x00, 0x08, 0x00, 0x04, 0x00, 0xf9, 0xff, 0x07, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x0e, 0x00, 0x2f, 0x00, 0x55, 0x00, 0x5c, 0x00, 0x29, 0x00, 0xff, 0xff, 0xe1, 0xff, 0xda, 0xff, 0xe1, 0xff, 0xe9, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x04, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x17, 0x00, 0x17, 0x00, 0x19, 0x00, 0x14, 0x00, 0x10, 0x00, 0x11, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x35, 0x00, 0x6a, 0x00, 0x4d, 0x00, 0x20, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf5, 0xff, 0xea, 0xff, 0xe1, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xf5, 0xff, 0x0e, 0x00, 0x2c, 0x00, 0x26, 0x00, 0x0d, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x07, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x17, 0x00, 0x20, 0x00, 0x14, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x40, 0x00, 0x65, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xea, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xd7, 0xff, 0xc2, 0xff, 0xbd, 0xff, 0xc6, 0xff, 0xd1, 0xff, 0xde, 0xff, 0xef, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0x1d, 0x00, 0x29, 0x00, 0x16, 0x00, 0x05, 0x00, 0x02, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x04, 0x00, 0xdd, 0xff, 0xd1, 0xff, 0xe4, 0xff, 0xf2, 0xff, 0xea, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x10, 0x00, 0x1f, 0x00, 0x41, 0x00, 0x32, 0x00, 0x0b, 0x00, 0xf0, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xdb, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xd2, 0xff, 0xea, 0xff, 0x07, 0x00, 0xf9, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xed, 0xff, 0xe7, 0xff, 0x01, 0x00, 0x16, 0x00, 0xf9, 0xff, 0xe4, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xea, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x05, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x0a, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0xf9, 0xff, 0xe6, 0xff, 0xda, 0xff, 0xe6, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xef, 0xff, 0xd8, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xda, 0xff, 0xf0, 0xff, 0x1c, 0x00, 0x13, 0x00, 0xfb, 0xff, 0xec, 0xff, 0xe6, 0xff, 0xe1, 0xff, 0xef, 0xff, 0x1a, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x05, 0x00, 0xec, 0xff, 0xdd, 0xff, 0xd4, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe9, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x10, 0x00, 0x44, 0x00, 0x44, 0x00, 0x13, 0x00, 0x01, 0x00, 0x01, 0x00, 0xe9, 0xff, 0xcf, 0xff, 0xe7, 0xff, 0xf2, 0xff, 0xe1, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xdb, 0xff, 0xf2, 0xff, 0x0d, 0x00, 0x1a, 0x00, 0x14, 0x00, 0x0a, 0x00, 0x11, 0x00, 0xff, 0xff, 0xf5, 0xff, 0xea, 0xff, 0xea, 0xff, 0xed, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x0d, 0x00, 0x04, 0x00, 0x19, 0x00, 0x44, 0x00, 0x41, 0x00, 0x41, 0x00, 0x14, 0x00, 0xe9, 0xff, 0xcf, 0xff, 0xcb, 0xff, 0xd1, 0xff, 0xd8, 0xff, 0xe6, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x05, 0x00, 0x28, 0x00, 0x2e, 0x00, 0x1d, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x11, 0x00, 0x07, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x05, 0x00, 0x29, 0x00, 0x5c, 0x00, 0x3d, 0x00, 0x0e, 0x00, 0xf0, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0x0b, 0x00, 0x2b, 0x00, 0x17, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xff, 0xff, 0x16, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x16, 0x00, 0x25, 0x00, 0x25, 0x00, 0x07, 0x00, 0xf2, 0xff, 0xed, 0xff, 0xea, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x07, 0x00, 0x04, 0x00, 0x14, 0x00, 0x43, 0x00, 0x3e, 0x00, 0x19, 0x00, 0x02, 0x00, 0xe7, 0xff, 0xea, 0xff, 0xea, 0xff, 0xde, 0xff, 0xda, 0xff, 0xdd, 0xff, 0x01, 0x00, 0x10, 0x00, 0x05, 0x00, 0x08, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xe4, 0xff, 0xf3, 0xff, 0x0a, 0x00, 0x01, 0x00, 0xf5, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x08, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x11, 0x00, 0xf2, 0xff, 0xe7, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xec, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xf3, 0xff, 0x1f, 0x00, 0x29, 0x00, 0x1d, 0x00, 0x0a, 0x00, 0xf2, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xec, 0xff, 0xf9, 0xff, 0xf0, 0xff, 0xea, 0xff, 0xdb, 0xff, 0xe0, 0xff, 0x01, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0xf3, 0xff, 0xe7, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xf6, 0xff, 0x00, 0x00, 0xf9, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x0a, 0x00, 0x3d, 0x00, 0x31, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xed, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xec, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xe6, 0xff, 0xed, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x13, 0x00, 0x43, 0x00, 0x44, 0x00, 0x25, 0x00, 0xf8, 0xff, 0xd7, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xda, 0xff, 0xf6, 0xff, 0x07, 0x00, 0x01, 0x00, 0xef, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xef, 0xff, 0xff, 0xff, 0x16, 0x00, 0x1a, 0x00, 0x28, 0x00, 0x26, 0x00, 0x13, 0x00, 0x05, 0x00, 0xf0, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x3b, 0x00, 0x52, 0x00, 0x2c, 0x00, 0x13, 0x00, 0x01, 0x00, 0xe7, 0xff, 0xda, 0xff, 0xe6, 0xff, 0xf6, 0xff, 0x0d, 0x00, 0x17, 0x00, 0xff, 0xff, 0xef, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x20, 0x00, 0x23, 0x00, 0x23, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x0a, 0x00, 0xf3, 0xff, 0xe4, 0xff, 0xf8, 0xff, 0x0a, 0x00, 0xff, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0x16, 0x00, 0x11, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0x00, 0x00, 0x08, 0x00, 0x08, 0x00, 0x04, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x04, 0x00, 0x10, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0e, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0x11, 0x00, 0x3e, 0x00, 0x4f, 0x00, 0x25, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0xef, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf9, 0xff, 0x07, 0x00, 0x2e, 0x00, 0x3b, 0x00, 0x22, 0x00, 0x02, 0x00, 0xed, 0xff, 0xe9, 0xff, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xf5, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0x08, 0x00, 0x1c, 0x00, 0x28, 0x00, 0x25, 0x00, 0x05, 0x00, 0xef, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x04, 0x00, 0x28, 0x00, 0x41, 0x00, 0x20, 0x00, 0x0d, 0x00, 0xf9, 0xff, 0xe3, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xe0, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x01, 0x00, 0x23, 0x00, 0x3d, 0x00, 0x1d, 0x00, 0xf9, 0xff, 0xe4, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xe0, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xf5, 0xff, 0xec, 0xff, 0xec, 0xff, 0x11, 0x00, 0x2b, 0x00, 0x0a, 0x00, 0xed, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xe4, 0xff, 0x00, 0x00, 0xff, 0xff, 0xe9, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x08, 0x00, 0x1d, 0x00, 0x3d, 0x00, 0x25, 0x00, 0xfb, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xde, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xef, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x17, 0x00, 0x28, 0x00, 0x1f, 0x00, 0x07, 0x00, 0xfe, 0xff, 0x11, 0x00, 0x11, 0x00, 0xf6, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xe6, 0xff, 0xf6, 0xff, 0x10, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x0b, 0x00, 0x05, 0x00, 0xf8, 0xff, 0xef, 0xff, 0xea, 0xff, 0xf5, 0xff, 0x16, 0x00, 0x16, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x17, 0x00, 0x26, 0x00, 0x11, 0x00, 0xf5, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf2, 0xff, 0x04, 0x00, 0x1d, 0x00, 0x11, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x05, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x28, 0x00, 0x29, 0x00, 0x29, 0x00, 0x14, 0x00, 0x08, 0x00, 0x07, 0x00, 0xf5, 0xff, 0xea, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xec, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x08, 0x00, 0x07, 0x00, 0x20, 0x00, 0x4c, 0x00, 0x2c, 0x00, 0x0a, 0x00, 0x23, 0x00, 0x08, 0x00, 0xea, 0xff, 0xe1, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xec, 0xff, 0x05, 0x00, 0x25, 0x00, 0x1c, 0x00, 0x08, 0x00, 0xfb, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x08, 0x00, 0x38, 0x00, 0x52, 0x00, 0x29, 0x00, 0xfc, 0xff, 0xe0, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd8, 0xff, 0xe1, 0xff, 0xec, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x14, 0x00, 0x2f, 0x00, 0x2c, 0x00, 0x1a, 0x00, 0x0b, 0x00, 0x01, 0x00, 0xec, 0xff, 0xdb, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xdd, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xfb, 0xff, 0x0d, 0x00, 0x17, 0x00, 0x11, 0x00, 0x04, 0x00, 0x05, 0x00, 0xfc, 0xff, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xef, 0xff, 0xe9, 0xff, 0xef, 0xff, 0xef, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x07, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x04, 0x00, 0xf5, 0xff, 0xec, 0xff, 0xe6, 0xff, 0xed, 0xff, 0x0a, 0x00, 0x02, 0x00, 0xf5, 0xff, 0x02, 0x00, 0xed, 0xff, 0xec, 0xff, 0xf6, 0xff, 0xed, 0xff, 0xe7, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x23, 0x00, 0x3b, 0x00, 0x1d, 0x00, 0xf8, 0xff, 0xec, 0xff, 0xe6, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xe3, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x05, 0x00, 0xfc, 0xff, 0xef, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xea, 0xff, 0xea, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x17, 0x00, 0x2e, 0x00, 0x14, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xf0, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe9, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x08, 0x00, 0xf8, 0xff, 0x02, 0x00, 0xf9, 0xff, 0xec, 0xff, 0xe1, 0xff, 0xdb, 0xff, 0xe0, 0xff, 0xe9, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x08, 0x00, 0x1f, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x0e, 0x00, 0xf5, 0xff, 0xe4, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xea, 0xff, 0x07, 0x00, 0x16, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x25, 0x00, 0x29, 0x00, 0x1a, 0x00, 0x0a, 0x00, 0x05, 0x00, 0xf8, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x07, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00, 0x08, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x19, 0x00, 0x50, 0x00, 0x46, 0x00, 0x16, 0x00, 0xf0, 0xff, 0xdd, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xe3, 0xff, 0xea, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x05, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x05, 0x00, 0x32, 0x00, 0x61, 0x00, 0x34, 0x00, 0x08, 0x00, 0xe1, 0xff, 0xe9, 0xff, 0xf5, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xf9, 0xff, 0x14, 0x00, 0x1d, 0x00, 0x14, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf0, 0xff, 0xff, 0xff, 0x1a, 0x00, 0x13, 0x00, 0x05, 0x00, 0xf6, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0x01, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x0d, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xed, 0xff, 0xf5, 0xff, 0x0d, 0x00, 0x19, 0x00, 0x17, 0x00, 0x04, 0x00, 0xf2, 0xff, 0xe6, 0xff, 0xf5, 0xff, 0x07, 0x00, 0x00, 0x00, 0xf5, 0xff, 0xec, 0xff, 0xec, 0xff, 0xf3, 0xff, 0x0e, 0x00, 0x10, 0x00, 0x04, 0x00, 0xf6, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x1c, 0x00, 0x26, 0x00, 0x13, 0x00, 0x0a, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xef, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe6, 0xff, 0xec, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x11, 0x00, 0x22, 0x00, 0x16, 0x00, 0xff, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x0a, 0x00, 0x32, 0x00, 0x26, 0x00, 0x17, 0x00, 0x08, 0x00, 0xef, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xe9, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x13, 0x00, 0x14, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x14, 0x00, 0x14, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xf5, 0xff, 0x07, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf8, 0xff, 0x07, 0x00, 0x0b, 0x00, 0x16, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x0e, 0x00, 0x0b, 0x00, 0xfb, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x0d, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0x10, 0x00, 0x0a, 0x00, 0x05, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x17, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0xfc, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x04, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x14, 0x00, 0x22, 0x00, 0x19, 0x00, 0x07, 0x00, 0x04, 0x00, 0x13, 0x00, 0x1d, 0x00, 0x10, 0x00, 0xfb, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xf0, 0xff, 0x0d, 0x00, 0x19, 0x00, 0x0a, 0x00, 0x13, 0x00, 0x07, 0x00, 0xff, 0xff, 0x02, 0x00, 0x07, 0x00, 0x04, 0x00, 0xfb, 0xff, 0x04, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x13, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x0d, 0x00, 0xff, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x10, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xef, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0x11, 0x00, 0x20, 0x00, 0x13, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xff, 0xff, 0x10, 0x00, 0x0d, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf5, 0xff, 0x04, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0xfe, 0xff, 0xf5, 0xff, 0xe7, 0xff, 0xf8, 0xff, 0x13, 0x00, 0x0a, 0x00, 0xfb, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x25, 0x00, 0x1a, 0x00, 0x02, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0xf3, 0xff, 0xe4, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xea, 0xff, 0xef, 0xff, 0x02, 0x00, 0x0e, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x08, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x14, 0x00, 0x1a, 0x00, 0x05, 0x00, 0xf3, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x16, 0x00, 0x11, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0x0b, 0x00, 0x34, 0x00, 0x22, 0x00, 0x07, 0x00, 0xf2, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0x07, 0x00, 0xfc, 0xff, 0x05, 0x00, 0x0a, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0x00, 0x00, 0x17, 0x00, 0x11, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x25, 0x00, 0x28, 0x00, 0x1a, 0x00, 0x0d, 0x00, 0xff, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf9, 0xff, 0x08, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0x05, 0x00, 0x1a, 0x00, 0x14, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x04, 0x00, 0xf6, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0x10, 0x00, 0x23, 0x00, 0x19, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x1a, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x01, 0x00, 0x14, 0x00, 0x10, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xf0, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x10, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x04, 0x00, 0xf5, 0xff, 0xec, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0x07, 0x00, 0x29, 0x00, 0x20, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x0d, 0x00, 0x1f, 0x00, 0x2b, 0x00, 0x19, 0x00, 0xff, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf3, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x0e, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xec, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x0d, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xe0, 0xff, 0xf5, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0xed, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x25, 0x00, 0x28, 0x00, 0x0b, 0x00, 0xf6, 0xff, 0xed, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xe7, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0x07, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x25, 0x00, 0x35, 0x00, 0x16, 0x00, 0xf3, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xec, 0xff, 0xf9, 0xff, 0x0e, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x07, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0x04, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf3, 0xff, 0x00, 0x00, 0x0d, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x05, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x1a, 0x00, 0xfc, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x28, 0x00, 0x29, 0x00, 0x16, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf0, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x0d, 0x00, 0xff, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x05, 0x00, 0xf5, 0xff, 0xf5, 0xff, 0x0a, 0x00, 0x08, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x02, 0x00, 0x1d, 0x00, 0x28, 0x00, 0x14, 0x00, 0x04, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x0b, 0x00, 0x2f, 0x00, 0x28, 0x00, 0x13, 0x00, 0xfc, 0xff, 0xef, 0xff, 0xe6, 0xff, 0xec, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x0b, 0x00, 0x14, 0x00, 0x10, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xff, 0xff, 0x13, 0x00, 0x17, 0x00, 0x0e, 0x00, 0xfe, 0xff, 0xf2, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xec, 0xff, 0x02, 0x00, 0x19, 0x00, 0x13, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x02, 0x00, 0x08, 0x00, 0x17, 0x00, 0x08, 0x00, 0x00, 0x00, 0x07, 0x00, 0xf9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x14, 0x00, 0x22, 0x00, 0x13, 0x00, 0x00, 0x00, 0xf3, 0xff, 0x04, 0x00, 0x0d, 0x00, 0xf9, 0xff, 0xef, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x07, 0x00, 0x2f, 0x00, 0x2b, 0x00, 0x0b, 0x00, 0xf5, 0xff, 0xe6, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0x08, 0x00, 0x10, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0xfb, 0xff, 0xed, 0xff, 0xea, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x14, 0x00, 0x14, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x19, 0x00, 0x13, 0x00, 0x08, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x08, 0x00, 0x0b, 0x00, 0xf5, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf5, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x17, 0x00, 0x16, 0x00, 0x13, 0x00, 0x0a, 0x00, 0xf9, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x17, 0x00, 0x1f, 0x00, 0x0d, 0x00, 0x01, 0x00, 0x0d, 0x00, 0x08, 0x00, 0xf9, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x0d, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x10, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x10, 0x00, 0x16, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0x13, 0x00, 0x23, 0x00, 0x16, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x0d, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x17, 0x00, 0x16, 0x00, 0x11, 0x00, 0x0e, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf8, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x19, 0x00, 0x20, 0x00, 0x10, 0x00, 0xfe, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x19, 0x00, 0x14, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x13, 0x00, 0x20, 0x00, 0x13, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x0e, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0x07, 0x00, 0x10, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x10, 0x00, 0x1c, 0x00, 0x13, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xef, 0xff, 0xf2, 0xff, 0x00, 0x00, 0x05, 0x00, 0x10, 0x00, 0x13, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0x08, 0x00, 0x1c, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x0a, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x14, 0x00, 0x01, 0x00, 0xf2, 0xff, 0xf3, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xec, 0xff, 0xed, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x07, 0x00, 0x19, 0x00, 0x2b, 0x00, 0x0a, 0x00, 0xff, 0xff, 0x0a, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xed, 0xff, 0xec, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x08, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x10, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xef, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0x10, 0x00, 0x17, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x16, 0x00, 0x17, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0x0e, 0x00, 0x14, 0x00, 0x05, 0x00, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x08, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x16, 0x00, 0x20, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x14, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x08, 0x00, 0xf8, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x20, 0x00, 0x16, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xff, 0xff, 0x17, 0x00, 0x0b, 0x00, 0xf9, 0xff, 0xed, 0xff, 0xec, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0x08, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0x0a, 0x00, 0x17, 0x00, 0x0b, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x11, 0x00, 0x23, 0x00, 0x14, 0x00, 0x08, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0x04, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x0a, 0x00, 0xf6, 0xff, 0xea, 0xff, 0xea, 0xff, 0xea, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x1a, 0x00, 0x22, 0x00, 0x0e, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x13, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0x07, 0x00, 0x07, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x04, 0x00, 0x07, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x00, 0x19, 0x00, 0x2f, 0x00, 0x1c, 0x00, 0x04, 0x00, 0xf3, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xec, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x0e, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x1f, 0x00, 0x17, 0x00, 0x0a, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0x02, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x05, 0x00, 0x16, 0x00, 0x10, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x05, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0x02, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x07, 0x00, 0x14, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x0a, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x0b, 0x00, 0x0e, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x13, 0x00, 0x11, 0x00, 0x19, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xed, 0xff, 0xf3, 0xff, 0xfe, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x0b, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x0d, 0x00, 0x14, 0x00, 0x10, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0x07, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x05, 0x00, 0xf6, 0xff, 0x08, 0x00, 0x0d, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x11, 0x00, 0x2b, 0x00, 0x1f, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xec, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x1d, 0x00, 0x10, 0x00, 0x05, 0x00, 0xf9, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x10, 0x00, 0x10, 0x00, 0x17, 0x00, 0x17, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0x05, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x0b, 0x00, 0xfc, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x16, 0x00, 0x26, 0x00, 0x14, 0x00, 0xff, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x16, 0x00, 0x10, 0x00, 0x04, 0x00, 0x14, 0x00, 0x08, 0x00, 0xf9, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x08, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x0a, 0x00, 0x11, 0x00, 0x22, 0x00, 0x0b, 0x00, 0xef, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xe0, 0xff, 0xe6, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x08, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x07, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x08, 0x00, 0x14, 0x00, 0x14, 0x00, 0x08, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0x0b, 0x00, 0x08, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x05, 0x00, 0x0d, 0x00, 0x10, 0x00, 0xff, 0xff, 0xf5, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x08, 0x00, 0x14, 0x00, 0x19, 0x00, 0x0e, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x0d, 0x00, 0x17, 0x00, 0x08, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x05, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x08, 0x00, 0x14, 0x00, 0x08, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x0d, 0x00, 0x16, 0x00, 0x0e, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x04, 0x00, 0xff, 0xff, 0xef, 0xff, 0xec, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x08, 0x00, 0x14, 0x00, 0x13, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x0b, 0x00, 0x04, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x1a, 0x00, 0x10, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0x04, 0x00, 0x0d, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x13, 0x00, 0x07, 0x00, 0x04, 0x00, 0xf5, 0xff, 0xf9, 0xff, 0x0a, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x14, 0x00, 0x14, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x0e, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x13, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x0a, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x13, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x0a, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0x07, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x0d, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x16, 0x00, 0x16, 0x00, 0x0d, 0x00, 0xff, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x07, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x07, 0x00, 0x16, 0x00, 0x11, 0x00, 0x08, 0x00, 0xf9, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x10, 0x00, 0x0a, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0x00, 0x00, 0x11, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x08, 0x00, 0x13, 0x00, 0x10, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x07, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x0b, 0x00, 0xfb, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x08, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x0d, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x08, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0x07, 0x00, 0x0b, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0b, 0x00, 0x04, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x1a, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x0a, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x07, 0x00, 0x13, 0x00, 0x13, 0x00, 0x0b, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0b, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x0e, 0x00, 0x0e, 0x00, 0x07, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x05, 0x00, 0x10, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x08, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x08, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x07, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x14, 0x00, 0x11, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x1c, 0x00, 0x14, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x08, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x05, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x02, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x14, 0x00, 0x16, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x08, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x10, 0x00, 0x1a, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x0b, 0x00, 0x13, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x0a, 0x00, 0x08, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x04, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x11, 0x00, 0x1a, 0x00, 0x10, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x05, 0x00, 0x02, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x17, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x05, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x0b, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x04, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x0e, 0x00, 0x17, 0x00, 0x10, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xf5, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xf9, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x0b, 0x00, 0x14, 0x00, 0x0b, 0x00, 0x04, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x10, 0x00, 0x0a, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x0e, 0x00, 0x0d, 0x00, 0x04, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x11, 0x00, 0x11, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x07, 0x00, 0x17, 0x00, 0x11, 0x00, 0x07, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x05, 0x00, 0x11, 0x00, 0x07, 0x00, 0xff, 0xff, 0xf9, 0xff, 0x04, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x05, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x0e, 0x00, 0x1c, 0x00, 0x16, 0x00, 0x05, 0x00, 0xf9, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xf6, 0xff, 0x05, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x11, 0x00, 0x14, 0x00, 0x08, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x04, 0x00, 0xff, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0x05, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0e, 0x00, 0x05, 0x00, 0xfe, 0xff, 0x07, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x07, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x08, 0x00, 0x0e, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff, 0x04, 0x00, 0x08, 0x00, 0x05, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x05, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0x08, 0x00, 0x0e, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x16, 0x00, 0x11, 0x00, 0x08, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0x05, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x08, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x0a, 0x00, 0x08, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x08, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x08, 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xf8, 0xff, 0xfb, 0xff, 0x07, 0x00, 0x04, 0x00, 0x04, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x10, 0x00, 0x16, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0x05, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x07, 0x00, 0xfc, 0xff, 0x07, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x01, 0x00, 0xff, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x08, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xff, 0xff, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x05, 0x00, 0x0e, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x08, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x0b, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x17, 0x00, 0x11, 0x00, 0x02, 0x00, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x16, 0x00, 0x19, 0x00, 0x07, 0x00, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x04, 0x00, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x07, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x08, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfe, 0xff, 0x08, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf8, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x05, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0x08, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x08, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x08, 0x00, 0x04, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xfe, 0xff, 0x10, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x07, 0x00, 0x07, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x07, 0x00, 0x08, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x08, 0x00, 0x0a, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x08, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0x10, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x0d, 0x00, 0x17, 0x00, 0x0b, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x05, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x05, 0x00, 0x16, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x08, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x02, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x05, 0x00, 0x02, 0x00, 0x08, 0x00, 0x07, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x07, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x08, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x07, 0x00, 0x13, 0x00, 0x0d, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x07, 0x00, 0x08, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x07, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x07, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x0a, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x08, 0x00, 0x05, 0x00, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x07, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x02, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xff, 0xff, 0x0b, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x07, 0x00, 0x07, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x08, 0x00, 0x08, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x08, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x08, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0x08, 0x00, 0x07, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x04, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x07, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x08, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x07, 0x00, 0x05, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x05, 0x00, 0x08, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x0b, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x08, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x04, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x07, 0x00, 0x07, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x08, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x07, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x05, 0x00, 0x08, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xf8, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x08, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x05, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x07, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x08, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x07, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x07, 0x00, 0x05, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x08, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfb, 0xff, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0x0d, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x07, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x08, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x07, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x08, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xf9, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x07, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x07, 0x00, 0x05, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xf9, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x08, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff }; #define tr808_sn_wav_len 44180 ================================================ FILE: dist/glitch.exe.manifest ================================================ ================================================ FILE: dist/glitch.rc ================================================ 100 ICON "icons\\glitch.ico" 100 24 "glitch.exe.manifest" ================================================ FILE: dist/release-linux.sh ================================================ #!/bin/sh VERSION=$(git describe --abbrev=0 --tags) DIR=$(cd $(dirname $0)/..; pwd) DISTNAME=glitch-linux-$(uname -m)-$VERSION DISTDIR=$DIR/dist/$DISTNAME cd $DIR mkdir -p $DISTDIR go generate github.com/naivesound/glitch/... go test github.com/naivesound/glitch/... go vet github.com/naivesound/glitch/... go build -o $DISTDIR/glitch github.com/naivesound/glitch/cmd/glitch cp $DIR/LICENSE $DISTDIR/LICENSE.txt cp $DIR/API.md $DISTDIR/API.md cp -r $DIR/examples $DISTDIR/examples cp -r $DIR/samples $DISTDIR/samples cd $DIR/dist tar czvf $DISTNAME.tar.gz $DISTNAME ls -l $DISTNAME.tar.gz ================================================ FILE: dist/release-macos.sh ================================================ #!/bin/sh VERSION=$(git describe --abbrev=0 --tags) DIR=$(cd $(dirname $0)/..; pwd) DISTNAME=glitch-macos-$(uname -m)-$VERSION DISTDIR=$DIR/dist/$DISTNAME/ cd $DIR mkdir -p $DISTDIR/Glitch.app/Contents/{MacOS,Resources} go generate github.com/naivesound/glitch/... go test github.com/naivesound/glitch/... go vet github.com/naivesound/glitch/... go build -o $DISTDIR/Glitch.app/Contents/MacOS/Glitch github.com/naivesound/glitch/cmd/glitch cat > $DISTDIR/Glitch.app/Contents/Info.plist << EOF CFBundleExecutable Glitch CFBundleGetInfoString Glitch CFBundleIconFile Glitch CFBundleIdentifier com.naivesound.glitch CFBundleName Glitch CFBundlePackageType APPL EOF cp $DIR/dist/icons/glitch.icns $DISTDIR/Glitch.app/Contents/Resources/Glitch.icns cp $DIR/LICENSE $DISTDIR/LICENSE.txt cp $DIR/API.md $DISTDIR/API.md cp -r $DIR/examples $DISTDIR/examples cp -r $DIR/samples $DISTDIR/samples cd $DIR/dist tar czvf $DISTNAME.tar.gz $DISTNAME ls -l $DISTNAME.tar.gz ================================================ FILE: dist/release-web.sh ================================================ #!/bin/sh VERSION=$(git describe --abbrev=0 --tags) DIR=$(cd $(dirname $0)/..; pwd) DISTNAME=glitch-web-$(uname -m)-$VERSION DISTDIR=$DIR/dist/$DISTNAME cd $DIR mkdir -p $DISTDIR EMCC_EXPORT="['_glitch_init','_glitch_create','_glitch_destroy','_glitch_reset','_glitch_compile','_glitch_set','_glitch_get','_glitch_midi','_glitch_set_sample_loader','_glitch_add_sample','_glitch_remove_sample','_glitch_fill']" # # asm.js build # docker run --rm -v $DIR/core:/src naivesound/emcc bash -c \ "mkdir -p build-asmjs && \ cd build-asmjs && \ /emscripten/emcmake cmake .. \ && /emscripten/emmake make && \ emcc libglitch-core.a \ -o glitch-asm.js \ --use-preload-plugins \ -s ALLOW_MEMORY_GROWTH=1 \ -s EXPORTED_FUNCTIONS=\"$EMCC_EXPORT\" -O3" cp $DIR/core/build-asmjs/glitch-asm.js $DIR/core/build-asmjs/glitch-asm.js.mem $DISTDIR # # WebAssembly build # docker run --rm -v $DIR/core:/src naivesound/emcc bash -c \ "mkdir -p build-wasm && \ cd build-wasm && \ /emscripten/emcmake cmake .. \ && /emscripten/emmake make && \ emcc libglitch-core.a \ -o glitch.html \ --use-preload-plugins \ -s WASM=1 \ -s ALLOW_MEMORY_GROWTH=1 \ -s EXPORTED_FUNCTIONS=\"$EMCC_EXPORT\" -O3" cp $DIR/core/build-wasm/glitch.wasm $DISTDIR cp $DIR/core/build-wasm/glitch.js $DISTDIR/glitch-loader.js # Copy other javascript assets cp -r $DIR/ui/app.js $DIR/ui/styles.css $DIR/ui/index.html $DIR/ui/vendor $DISTDIR ================================================ FILE: dist/release-windows.bat ================================================ @echo off reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > NUL && set UNAME=i686 || set UNAME=amd64 set PATH=%PATH%;C:\Program Files\7-Zip;C:\Program Files\Git\bin FOR /F "tokens=1 delims=" %%A in ('git describe --abbrev^=0 --tags') do SET VERSION=%%A set DIR=%0\..\.. set DISTNAME=glitch-windows-%UNAME%-%VERSION% set DISTDIR=%DIR%\dist\%DISTNAME% mkdir %DISTDIR% windres -i %DIR%\dist\glitch.rc -O coff -o %DIR%\cmd\glitch\glitch_rc.syso go generate github.com/naivesound/glitch/cmd/glitch go test github.com/naivesound/glitch/... go vet github.com/naivesound/glitch/... go build -ldflags "-H windowsgui" -o %DISTDIR%\glitch.exe github.com/naivesound/glitch/cmd/glitch copy /y %DIR%\LICENSE %DISTDIR%\LICENSE.txt xcopy /y %DIR%\API.md %DISTDIR% xcopy /i /y %DIR%\examples %DISTDIR%\examples xcopy /i /y %DIR%\samples %DISTDIR%\samples cd %DIR%/dist 7z a %DISTNAME%.zip %DISTNAME% ================================================ FILE: examples/bytebeat/42.glitch ================================================ # # A famous very laconic "42" bytebeat riff # byte(t*(42&t>>10)) ================================================ FILE: examples/bytebeat/arp.glitch ================================================ # # Combines two "instruments": a rhythmic two-note part and a chaotic # high-pitched voice # byte((t*t/256)&(t>>((t/1024)%16))^t%64*(828188282217>>(t>>9&30)&t%32)*t>>18) ================================================ FILE: examples/bytebeat/dreamy.glitch ================================================ # # A calm 8-bit arpeggio # byte((t*5&t>>7)|(t*3&t>>10)) ================================================ FILE: examples/bytebeat/drum.glitch ================================================ # # Short random-pitched harsh tones sound like a drum pattern # byte((t>>6|t<<1)+(t>>5|t<<3|t>>3)|t>>2|t<<1) ================================================ FILE: examples/bytebeat/nervous.glitch ================================================ # # Ascending progression of sawtooth waves # byte((t*((3+(1^t>>10&5))*(5+(3&t>>14))))>>(t>>8&3)) ================================================ FILE: examples/bytebeat/poly.glitch ================================================ # # Polyphonic mini-song made of "drums", "lead" synth and "voice". # byte((t*9&t>>4|t*5&t>>7|t*3&t/1024)-1) ================================================ FILE: examples/bytebeat/right.glitch ================================================ # # A recurring riff made with right-shifts # byte((t>>6|t|t>>(t>>16))*10+((t>>11)&7)) ================================================ FILE: examples/bytebeat/saw.glitch ================================================ # # Harsh and clear dance of sawtooth waves, # a very popular bytebeat tune (made by @viznut) # byte(t*((t>>12|t>>8)&63&t>>4)) ================================================ FILE: examples/bytebeat/sqr.glitch ================================================ # # A melodic tune for square waves (made by @visy) # byte((t*((t>>9|t>>13)&15))&129) ================================================ FILE: examples/bytebeat/white.glitch ================================================ # # White noise drums and high-pitch cosmic computer sounds # byte(t*(t>>((t&4096)&&((t*t)/4096)||(t/4096)))|(t<<(t/256))|(t>>4)) ================================================ FILE: examples/das_model.glitch ================================================ # # Kraftwerk - Das Model # bpm=120 parts = seq(bpm/16, 0, 1, 3, 7, 7, 7, 7, 3, 1) i = seq(bpm/4, 0, 7) root = saw(hz(i)) third = tri(hz(i+4)) fifth = saw(hz(i+7)) chords = env(seq(bpm*2,1)*mix( (0.5,root) (0.5,third) (0.5,fifth) ),0.01, 0.1) solo = seq(bpm*2, 0, 0, 0, 0, 3, 0, 3, 0, -5, -5, -5, -5, -2, -5, -2, -5) solo = fm(hz(solo-12), 0.5, 1) drums = tr808(seq(bpm*4,0,8,1,8), seq(bpm,2,0.5,0.5,0.3)) voice = seq(bpm, 0, 0, (1/2,0), (1/2,3), (1/2,2), (1/2,0), (3/2,2), (1/2,-2), -5, (1/2+8, seq()), (1/2,-5)) voice = env(sin(hz(voice+12)), 0.01, 0.2) mix( 2*drums (0.5*(parts&1)) * chords (0.5*((parts>>1)&1)) * solo (((parts>>2)&1) * voice) ) ================================================ FILE: examples/drums.glitch ================================================ # # An example of synthesized drum kit # bpm=80 # kick(volume, freq) - kick drum is a low-frequency sine wave with quick attack and decay $(kick, lpf(env($1*sin($2), 0.0001, 0.1), $2*3)) # hats(volume, fltr) - high-hats are made of filtered white noise $(hats, hpf(env($1*r(), 0.0001, 0.2), 1000*$2)) # snare(volume, freq) - snare drum is a mixture of a decaying sine wave and white noise $(snare, mix(env($1*sin($2), 0.0001, 0.02), hpf(env($1*r(0.4), 0.001, 0.03), 100))) kicks=seq(bpm*4, 1, 0, 0, 0.6, 1, 0, 0, 1, 0, 0, 0, 0.2, 1, 0, 0, 0) kick=kick(kicks, 50) hats=seq(bpm*4, 0.7, 0.5, 1, 0.5, 0.7, 0.5, 1, 0.5, 0.7, 0.5, 1, 0.7, 0.7, 0.5, 0.7, 0.5) hatfilters=seq(bpm*4, 1, 1, 2, 1, 1, 1, 2, 1, 1, 2, 2.5, 1, 1, 2, 1) hat = hats(hats, hatfilters) snares=seq(bpm*4, 0, 0, r(50)/100+0.5, 0) snare = snare(snares, 220) mix(1.5*kick, 0.1*hat, 1.2*snare) ================================================ FILE: examples/get_yucky.glitch ================================================ # # Get Lucky chords progression with hand-made drums # bpm=120 part=seq(bpm/4/4, 1, 3, 7, 15, 15, 15, 15, 10, 3) kicks=seq(bpm, 1, 0) snares=seq(bpm, 0, 1) hats=seq(bpm*4, 0.1, 0.2, 0.1, 0.2, 0.1, 0.2, 0.2, 0.1) kick=env(sin(83)*kicks, 0.01, 0.22) snaretone=env(sin(220)*snares, 0.01, 0.07) snarenoise=env(r(15)*snares, 0.001, 0.07) snare = 0.2*hpf(snaretone + snarenoise, 100) hat = 0.5*hpf(env(r(30)*hats, 0.001, 0.07), 10000) i = seq(bpm/4, 2, 5, 9, 7)-12 iii = seq(bpm/4, 5, 9, 12, 11)-12 v = seq(bpm/4, 9, 12, 16, 14)-12 pad=(sin(hz(i))+sin(hz(iii))+sin(hz(v)))/3 pad=0.5*env(pad, 0.45, 1.3) arp=0.2*fm(hz(loop(bpm*2, i, iii, v, iii)), 1, 0.2) bass=(tri(hz(i-24))+sin(hz(v-24))) tremolo = env(bass*seq(bpm*4, 1, 0.5, 0.6, 0.8), 0.01, 0.2) mix( (part&1)*kick (part&1)*snare (part&1)*hat ((part>>1)&1)*pad ((part>>2)&1)*arp ((part>>3)&1)*tremolo ) ================================================ FILE: examples/sur_la_planche.glitch ================================================ bpm=100 p = seq(bpm/8,0,1,3,7,7,11,11,7,7,15,15,7,1) intro = seq(bpm*4, 0, 0, 7, 7) intro = env(tri(hz(intro-12)), 0.01, 0.02) drums = mix(tr808(seq(bpm*2, 0, 1), 1)) root=sin(hz(seq(bpm/4, 0, 5))) third=sin(hz(seq(bpm/2, 3, 3, 9, 8))) fifth=sin(hz(seq(bpm/2, 7, 7, 12, 12))) lead = env(seq(bpm*4,0) + (root+third+fifth)/3, 0.05, 0.05) bass = seq(bpm*4, (2,0), (6,0), (2,3), (6,3), (2,5),(6,5), 0, 8, 0, 7, 0, 6, 0, 5) - 12 bass = env(fm(hz(bass), 0.5, 0.5), 0.01, 0.2) riff = loop(bpm*2, seq(bpm*2, 7, 7, 9, 8), 15, 12, 15) riff = lpf(saw(hz(riff)), (sin(4*1.6666666)+1)*500) solo = seq(bpm*4,(3,0),6,7,6,(2,7),(8,3),(3,9),5,9,5,(2,9),(3,8),8,7,6,(2,5)) solo = mix(fm(hz(solo-12),1,1),sin(hz(solo)), tri(hz(solo+12))) mix( 3*drums (p==0)*intro (p&1)*lead ((p>>1)&1)*bass ((p>>2)&1)*riff (((p>>3)&1)*0.7)*solo ) ================================================ FILE: ui/app.js ================================================ 'use strict'; var h = picodom.h; function isWebView() { try { window.external.invoke(''); return true; } catch (e) { return false; } } // clang-format off function UI(app) { return h('div', {class: 'container'}, webHeader(app), appWindow(app), webFooter(app)); } function webHeader() { return h('header', {class: 'webapp-shown'}, h('p', null, h('h1', null, '#glitch'), 'by naivesound'), h('ul', null, h('li', null, h('a', {target: '_blank', href: 'http://naivesound.com/products/glitch'}, 'about')), h('li', null, h('a', {target: '_blank', href: 'https://soundcloud.com/naivesound'}, 'examples')), h('li', null, h('a', {target: '_blank', href: 'https://github.com/naivesound/glitch'}, 'github')), h('li', null, h('a', {target: '_blank', href: 'https://github.com/naivesound/glitch/blob/master/API.md'}, 'help'))), h('div', {class: 'window-title-bar'}, h('div', {class: 'window-title-bar-button'}), h('div', {class: 'window-title-bar-button'}), h('div', {class: 'window-title-bar-button'}))); } function webFooter() { return h('footer'); } function appWindow(app) { return h('div', {class: 'app-window'}, editor(app), modal(app.modalName == 'settings', app, settings(app)), errorBar(app), toolbar(app)); } function editor(app) { var tid; var oncreate = function(el) { CodeMirror.defineMode("glitch", function() { function tokenize(stream, state) { var c = stream.next(); if (/\d/.test(c)) { stream.eatWhile(/[\d\.]/); return "number"; } else if (c == "#") { stream.skipToEnd(); return "comment"; } else if (/[-+*\/%&|^!=<>,]/.test(c)) { return "operator"; } else if (c == '(' || c == ')') { return "operator" } else if (c == '$') { if (stream.eat(/\d+/)) { return "variable-3"; } return "builtin" } else { stream.eatWhile(/[\w\d_#]+/) stream.eatSpace(); if (stream.peek() == '(') { var s = stream.current(); if (/hz|sin|tri|saw|sqr|lpf|hpf|bpf|bsf|tr808|pluck|fm|delay|end|mix|seq|loop|a|s|l|r/.test(s)) { return "keyword"; } return "variable-2"; } return "variable"; } } return { startState: function() { return { tokenize: tokenize, }; }, token: function(stream, state) { if (stream.eatSpace()) return null; return state.tokenize(stream, state); }, }; }); app.editor = CodeMirror.fromTextArea(el, { lineNumbers : true, theme : 'material', autofocus : true, matchBrackets: true, autoCloseBrackets: true, scrollbarStyle : 'simple', }); app.editor.setValue(app.data.text); app.editor.on('change', function(cm, change) { clearTimeout(tid); tid = setTimeout(function() { app.changeText(cm.getValue()); }, 250); }); }; var el = h('div', {class: 'editor__wrapper-fixed'}, h('div', {class: 'editor__wrapper-outer'}, h('div', {class: 'editor__wrapper-inner'}, h('textarea', {class: 'editor__textarea', oncreate: oncreate})))); if (app.editor && app.data.text != app.editor.getValue()) { app.editor.setValue(app.data.text); } return el; } function errorBar(app) { return h('div', {class: 'error-dialog', style: {display: (app.data.error ? 'block' : 'none')}}, materialIcon('\uE000')); } function modal(visible, app, contents) { return h('div', { class: 'modal-background', style: {display: (visible ? 'block' : 'none')}, onclick: function() { app.modal(); }, }, h('div', { class: 'modal', onclick: function(e) { e.preventDefault(); e.stopPropagation(); } }, contents)); } function settings(app) { var sampleRates = []; if (app.data.audioDevices[app.data.audioDevice]) { sampleRates = app.data.audioDevices[app.data.audioDevice].sampleRates; } return h('div', null, h('div', {class: 'modal-header'}, 'SETTINGS', h('div', {class: 'modal-header-close', onclick: function() { app.modal(); }}, '×')), h('div', {class: 'modal-content'}, h('form', null, h('div', {class: 'modal-form-group'}, h('label', {class: 'modal-form-label', for: 'audio-device-select'}, 'Audio device:'), h('select', { id: 'audio-device-select', class: 'modal-form-value', value: ''+app.data.audioDevice, onchange: function() { app.selectAudio(+this.value, app.data.sampleRate, app.data.bufferSize); } }, app.data.audioDevices.map(function(el) { return h('option', {value: ''+el.id}, el.name); }))), h('div', {class: 'modal-form-group'}, h('label', {class: 'modal-form-label', for: 'sample-rate-select'}, 'Sample rate:'), h('select', { id: 'sample-rate-select', class: 'modal-form-value', value: app.data.sampleRate, onchange: function() { app.selectAudio(app.data.audioDevice, +this.value, app.data.bufferSize); } }, sampleRates.map(function(el) { return h('option', {value: el}, el); }))), h('div', {class: 'modal-form-group'}, h('label', {class: 'modal-form-label', for: 'buffer-size-select'}, 'Buffer size:'), h('select', { id: 'buffer-size-select', class: 'modal-form-value', value: app.data.bufferSize, onchange: function() { app.selectAudio(app.data.audioDevice, app.data.sampleRate, +this.value); } }, [64, 128, 256, 512, 1024, 2048, 4096, 8192].map(function(el) { return h('option', {value: el}, el + ''); })))), h('div', null, h('div', {class: 'modal-form-group'}, h('label', {class: 'modal-form-label'}, 'MIDI devices:'), h('div', {class: 'modal-form-value'}, app.data.midiDevices.length == 0 ? h('div', null, '(none)') : app.data.midiDevices.map(function(el, i) { var id = 'midi-'+i; return h('div', null, h('label', {'for': id}, h('input', { type: 'checkbox', checked: el.connected, name: id, id: id, onchange: function() { app.selectMIDI(el.name, !el.connected); }, }), el.name)); })))))); } function toolbar(app) { var icons = { add: materialIcon('\uE145'), folderOpen: materialIcon('\uE2C8'), playArrow: materialIcon('\uE037'), pause: materialIcon('\uE034'), stop: materialIcon('\uE047'), settings: materialIcon('\uE8B8'), help: materialIcon('\uE8FD'), }; return h('div', {class: 'toolbar'}, h('ul', null, h('li', null, h('div', { class: 'toolbar__btn desktop-only', onclick: app.newFile.bind(app), }, icons.add)), h('li', null, h('div', { class: 'toolbar__btn desktop-only', onclick: app.loadFile.bind(app), }, icons.folderOpen)), h('li', null, h('div', { class: 'toolbar__btn', onclick:app.togglePlayback.bind(app), }, (app.data.isPlaying ? icons.pause : icons.playArrow))), h('li', null, h('div', { class: 'toolbar__btn', onclick: app.stop.bind(app), }, icons.stop)), h('li', null, h('div', { class: 'toolbar__btn desktop-only', onclick: function() { app.modal('settings'); }, }, icons.settings)), h('li', null, h('div', { class: 'toolbar__btn', onclick: function() { window.open('https://github.com/naivesound/glitch/blob/master/API.md'); }, }, icons.help)))); } function materialIcon(icon) { return h('i', {class: 'material-icons', style:{display: 'inline', fontSize: '32px', lineHeight: '64px'}}, icon); } function hideLoadingIndicator() { document.getElementById('loading-spinner').style.display = 'none'; } // clang-format on function WebRPC() { var DEFAULT_SONG = ""; // Download asm.js or .wasm core window.Module = window.Module || {}; var script = document.createElement('script'); script.type = 'text/javascript'; script.async = false; if ('WebAssembly' in window) { script.src = 'glitch-loader.js'; } else { script.src = 'glitch-asm.js'; } document.getElementsByTagName('head')[0].appendChild(script); var audioContext = new window.AudioContext(); this.data = { text: '', isPlaying: false, audioDevices: [], midiDevices: [], sampleRate: audioContext.sampleRate, audioDevice: '', }; this.init = function() { Module.ccall( 'glitch_init', null, ['number', 'number'], [audioContext.sampleRate, 0]); var G = Module.ccall('glitch_create', null, [], []); this.g = G; if (navigator.requestMIDIAccess) { navigator.requestMIDIAccess().then(function(midi) { function enumerate() { var inputs = midi.inputs.values(); for (var input = inputs.next(); input && !input.done; input = inputs.next()) { input.value.onmidimessage = function(m) { Module.ccall( 'glitch_midi', null, ['number', 'number', 'number', 'number'], [G, m.data[0], m.data[1], m.data[2]]); }; } }; enumerate(); midi.onstatechange = enumerate; }); } var AUDIO_BUFFER_SIZE = 1024; var pcm = audioContext.createScriptProcessor(AUDIO_BUFFER_SIZE, 0, 1); var analyser = audioContext.createAnalyser(); analyser.fftSize = 1024; analyser.smoothingTimeConstant = 0; analyser.connect(audioContext.destination); pcm.onaudioprocess = undefined; this.analyser = analyser; this.pcm = pcm; if (window.location.hash) { this.data.text = decodeURIComponent(window.location.hash.substring(1)); } else if (localStorage.getItem('expr')) { this.data.text = localStorage.getItem('expr'); } else { this.data.text = DEFAULT_SONG; } if (window.location.search === '?play') { this.togglePlayback(); } this.changeText(this.data.text); hideLoadingIndicator(); this.render(); }; this.refresh = function() {}; this.setVar = function(name, value) { Module.ccall && Module.ccall( 'glitch_set', null, ['number', 'string', 'number'], [this.g, name, value]); }; this.changeText = function(text) { var r = Module.ccall( 'glitch_compile', 'number', ['number', 'string', 'number'], [this.g, text, text.length]); if (r != 0) { this.data.error = 'Syntax error'; } else { this.data.error = null; window.location.hash = encodeURIComponent(text); localStorage.setItem('expr', text); } this.data.text = text; this.render(); }; this.newFile = function() {}; this.loadFile = function() {}; this.stop = function() { Module.ccall('glitch_reset', null, ['number'], [this.g]); if (this.data.isPlaying) { this.togglePlayback(); } this.changeText(this.data.text); this.render(); }; this.togglePlayback = function() { this.data.isPlaying = !this.data.isPlaying; if (this.data.isPlaying) { this.pcm.connect(this.analyser); this.pcm.onaudioprocess = this.audioCallback.bind(this); } else { this.pcm.disconnect(); this.pcm.onaudioprocess = undefined; } this.render(); }; this.audioCallback = function(e) { var len = e.outputBuffer.length; var n = len * Float32Array.BYTES_PER_ELEMENT; var p = Module._malloc(n); var heap = new Uint8Array(Module.HEAPU8.buffer, p, n); heap.set(new Uint8Array(buffer.buffer)); Module.ccall( 'glitch_fill', null, ['number', 'number', 'number', 'number'], [this.g, heap.byteOffset, len, 1]); var result = new Float32Array(heap.buffer, heap.byteOffset, len); e.outputBuffer.copyToChannel(result, 0, 0); Module._free(p); }; Module['onRuntimeInitialized'] = this.init.bind(this); return this; } var app; function init() { app.render = function() { return app.element = picodom.patch( app.oldNode, (app.oldNode = UI(app, app.data)), app.element); }; app.modal = function(name) { app.modalName = name; app.render(); }; // Ctrl+Enter to toggle playback document.onkeydown = function(e) { if (e.keyCode === 27 && app.modalName) { // Esc - close current modal, if any e.preventDefault(); app.modal(); } else if (e.keyCode === 78 && e.ctrlKey) { // Ctrl+N e.preventDefault(); app.newFile(); } else if (e.keyCode === 79 && e.ctrlKey) { // Ctrl+O e.preventDefault(); app.loadFile(); } else if (e.keyCode === 13 && e.ctrlKey) { // Ctrl+Enter e.preventDefault(); app.togglePlayback(); } }; // Ctrl+mouse move to change X/Y values document.onmousemove = function(e) { if (e.ctrlKey) { var x = e.pageX / window.innerWidth; var y = 1 - (e.pageY / window.innerHeight); app.setVar('x', x); app.setVar('y', y); } }; } if (isWebView()) { document.body.classList.add('desktop-app'); hideLoadingIndicator(); window.external.invoke('__app_js_loaded__'); } else { app = new WebRPC(); init(); } ================================================ FILE: ui/index.html ================================================ Glitch
================================================ FILE: ui/styles.css ================================================ * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Roboto Mono'; } html { height: 100%; } body { width: 100%; min-height: 100%; font-size: 16px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none; background-color: #212121; } /* NoScript message, IE9 and older message */ .ie-upgrade-container, .noscript-container { height: 100%; background-color: #5677fc; color: #ffffff; font-size: 2em; } .ie-upgrade-message, .noscript-message { max-width: 25em; padding: 2em; } .ie-upgrade-link, .noscript-link { font-weight: bold; color: #ffffff; text-transform: uppercase; padding: 2em; } /* Web version container around the main window */ .container { position: absolute; width: 100%; min-height: 100%; background-color: #ffc107; background-image: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 12c0-.622-.095-1.221-.27-1.785A5.982 5.982 0 0 0 10 12c1.67 0 3.182-.683 4.27-1.785A5.998 5.998 0 0 0 14 12h2a4 4 0 0 1 4-4V6c-1.67 0-3.182.683-4.27 1.785C15.905 7.22 16 6.622 16 6c0-.622-.095-1.221-.27-1.785A5.982 5.982 0 0 0 20 6V4a4 4 0 0 1-4-4h-2c0 .622.095 1.221.27 1.785A5.982 5.982 0 0 0 10 0C8.33 0 6.818.683 5.73 1.785 5.905 1.22 6 .622 6 0H4a4 4 0 0 1-4 4v2c1.67 0 3.182.683 4.27 1.785A5.998 5.998 0 0 1 4 6c0-.622.095-1.221.27-1.785A5.982 5.982 0 0 1 0 6v2a4 4 0 0 1 4 4h2zm-4 0a2 2 0 0 0-2-2v2h2zm16 0a2 2 0 0 1 2-2v2h-2zM0 2a2 2 0 0 0 2-2H0v2zm20 0a2 2 0 0 1-2-2h2v2zm-10 8a4 4 0 1 0 0-8 4 4 0 0 0 0 8zm0-2a2 2 0 1 0 0-4 2 2 0 0 0 0 4z' fill='%23404040' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E"); } .container header { height: 240px; max-width: 720px; margin: 0 auto; text-align: center; padding: 2em 0 0 0; } .container footer { height: 3em; } .container header li { padding: 2.5em 0.5em; display: inline-block; } .container header a { display: inline-block; text-decoration: none; background-color: #ff5722; color: #fff; border-radius: 2px; padding: 0.5em 1em; min-width: 6em; } .container header .window-title-bar { border-radius: 4px 4px 0 0; height: 36px; background-color: #212121; width: 100%; text-align: left; padding: 0.5em 1em 0 1em; z-index: 2; } .window-title-bar-button { display: inline-block; width: 0.7em; height: 0.7em; margin: 0 0.3em; border-radius: 0.35em; background-color: #404040; } .app-window { position: relative; max-width: 720px; margin: 0 auto; height: 576px; box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); overflow: hidden; background-color: #212121; } /* App window elements */ .error-dialog { z-index: 100; display: none; text-align: center; position: absolute; min-width: 64px; max-width: 160px; min-height: 64px; line-height: 64px; top: 100%; left: 100%; margin-left: -72px; margin-top: -128px; padding: 0 0.5em; color: #ff5722; } .modal-background { position: absolute; top: 0; left: 0; right: 0; bottom: 64px; z-index: 5; padding: 3em; background-color: rgba(0, 0, 0, 0.8); } .modal { z-index: 1000; margin: 0 auto; position: relative; background-color: #404040; color: #ffc107; width: 480px; height: 320px; box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23); } .modal-header { padding: 1em; font-weight: bold; } .modal-header-close { position: absolute; top: 1em; right: 1em; width: 1em; height: 1em; cursor: pointer; } .modal-content { padding: 0 1em; overflow: auto; max-height: 267px; } .modal-form-group { margin-bottom: 0.5em; } .modal-form-group .modal-form-label { display: inline-block; text-align: right; width: 40%; padding: 0 1em 0 0; } .modal-form-group label input[type="checkbox"]{ margin-right: 0.5em; } .modal-form-group .modal-form-value { width: 60%; display: inline-block; vertical-align: top; overflow-x: hidden; white-space: nowrap; } .toolbar { height: 64px; position: absolute; top: 100%; margin-top: -64px; width: 100%; box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23); z-index: 3; background-color: #303030; } .toolbar ul { max-width: 640px; margin: 0 auto; text-align: center; font-size: 0; } .toolbar li { font-size: 1rem; color: #eee; display: inline-block; text-align: center; } .toolbar__btn { display: inline-block; cursor: pointer; color: #ffc107; min-width: 64px; line-height: 64px; height: 64px; text-transform: uppercase; } .toolbar__btn:hover { color: #ffffff; } .editor__wrapper-fixed { position: absolute; width: 100%; top: 0; bottom: 64px; } .editor__wrapper-outer { position: relative; width: 100%; height: 100%; } .editor__wrapper-inner { position: absolute; width: 100%; height: 100%; } /* Hide web-specific parts inside desktop app */ .desktop-app .container { height: 100%; } .desktop-app .container header, .desktop-app .container footer { display: none; } .desktop-app .app-window { max-width: 100%; width: 100%; height: 100%; } .desktop-only { display: none; } .desktop-app .desktop-only { display: block; } /* CodeMirror editor styles */ .CodeMirror { height: 100%; } .CodeMirror-scrollbar-filler { background: rgba(255, 255, 255, 0.1); } .CodeMirror-simplescroll-horizontal div, .CodeMirror-simplescroll-vertical div { position: absolute; background: #ffc107; } .CodeMirror-simplescroll-horizontal, .CodeMirror-simplescroll-vertical { position: absolute; z-index: 6; background: rgba(255, 255, 255, 0.1); } .CodeMirror-simplescroll-horizontal { bottom: 0; left: 0; height: 4px; } .CodeMirror-simplescroll-horizontal div { bottom: 0; height: 100%; } .CodeMirror-simplescroll-vertical { right: 0; top: 0; width: 4px; } .CodeMirror-simplescroll-vertical div { right: 0; width: 100%; } /* Loading indicator */ #loading-spinner { position: relative; width: 40px; height: 40px; background-color: #333; margin: 100px auto; -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out; animation: sk-rotateplane 1.2s infinite ease-in-out; } @-webkit-keyframes sk-rotateplane { 0% { -webkit-transform: perspective(120px) } 50% { -webkit-transform: perspective(120px) rotateY(180deg) } 100% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg) } } @keyframes sk-rotateplane { 0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg); -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) } 50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) } 100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } } ================================================ FILE: ui/vendor/codemirror/codemirror.css ================================================ /* BASICS */ .CodeMirror { /* Set height, width, borders, and global font properties here */ font-family: monospace; height: 300px; color: black; direction: ltr; } /* PADDING */ .CodeMirror-lines { padding: 4px 0; /* Vertical padding around content */ } .CodeMirror pre { padding: 0 4px; /* Horizontal padding of content */ } .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { background-color: white; /* The little square between H and V scrollbars */ } /* GUTTER */ .CodeMirror-gutters { border-right: 1px solid #ddd; background-color: #f7f7f7; white-space: nowrap; } .CodeMirror-linenumbers {} .CodeMirror-linenumber { padding: 0 3px 0 5px; min-width: 20px; text-align: right; color: #999; white-space: nowrap; } .CodeMirror-guttermarker { color: black; } .CodeMirror-guttermarker-subtle { color: #999; } /* CURSOR */ .CodeMirror-cursor { border-left: 1px solid black; border-right: none; width: 0; } /* Shown when moving in bi-directional text */ .CodeMirror div.CodeMirror-secondarycursor { border-left: 1px solid silver; } .cm-fat-cursor .CodeMirror-cursor { width: auto; border: 0 !important; background: #7e7; } .cm-fat-cursor div.CodeMirror-cursors { z-index: 1; } .cm-animate-fat-cursor { width: auto; border: 0; -webkit-animation: blink 1.06s steps(1) infinite; -moz-animation: blink 1.06s steps(1) infinite; animation: blink 1.06s steps(1) infinite; background-color: #7e7; } @-moz-keyframes blink { 0% {} 50% { background-color: transparent; } 100% {} } @-webkit-keyframes blink { 0% {} 50% { background-color: transparent; } 100% {} } @keyframes blink { 0% {} 50% { background-color: transparent; } 100% {} } /* Can style cursor different in overwrite (non-insert) mode */ .CodeMirror-overwrite .CodeMirror-cursor {} .cm-tab { display: inline-block; text-decoration: inherit; } .CodeMirror-rulers { position: absolute; left: 0; right: 0; top: -50px; bottom: -20px; overflow: hidden; } .CodeMirror-ruler { border-left: 1px solid #ccc; top: 0; bottom: 0; position: absolute; } /* DEFAULT THEME */ .cm-s-default .cm-header {color: blue;} .cm-s-default .cm-quote {color: #090;} .cm-negative {color: #d44;} .cm-positive {color: #292;} .cm-header, .cm-strong {font-weight: bold;} .cm-em {font-style: italic;} .cm-link {text-decoration: underline;} .cm-strikethrough {text-decoration: line-through;} .cm-s-default .cm-keyword {color: #708;} .cm-s-default .cm-atom {color: #219;} .cm-s-default .cm-number {color: #164;} .cm-s-default .cm-def {color: #00f;} .cm-s-default .cm-variable, .cm-s-default .cm-punctuation, .cm-s-default .cm-property, .cm-s-default .cm-operator {} .cm-s-default .cm-variable-2 {color: #05a;} .cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;} .cm-s-default .cm-comment {color: #a50;} .cm-s-default .cm-string {color: #a11;} .cm-s-default .cm-string-2 {color: #f50;} .cm-s-default .cm-meta {color: #555;} .cm-s-default .cm-qualifier {color: #555;} .cm-s-default .cm-builtin {color: #30a;} .cm-s-default .cm-bracket {color: #997;} .cm-s-default .cm-tag {color: #170;} .cm-s-default .cm-attribute {color: #00c;} .cm-s-default .cm-hr {color: #999;} .cm-s-default .cm-link {color: #00c;} .cm-s-default .cm-error {color: #f00;} .cm-invalidchar {color: #f00;} .CodeMirror-composing { border-bottom: 2px solid; } /* Default styles for common addons */ div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;} div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;} .CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); } .CodeMirror-activeline-background {background: #e8f2ff;} /* STOP */ /* The rest of this file contains styles related to the mechanics of the editor. You probably shouldn't touch them. */ .CodeMirror { position: relative; overflow: hidden; background: white; } .CodeMirror-scroll { overflow: scroll !important; /* Things will break if this is overridden */ /* 30px is the magic margin used to hide the element's real scrollbars */ /* See overflow: hidden in .CodeMirror */ margin-bottom: -30px; margin-right: -30px; padding-bottom: 30px; height: 100%; outline: none; /* Prevent dragging from highlighting the element */ position: relative; } .CodeMirror-sizer { position: relative; border-right: 30px solid transparent; } /* The fake, visible scrollbars. Used to force redraw during scrolling before actual scrolling happens, thus preventing shaking and flickering artifacts. */ .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { position: absolute; z-index: 6; display: none; } .CodeMirror-vscrollbar { right: 0; top: 0; overflow-x: hidden; overflow-y: scroll; } .CodeMirror-hscrollbar { bottom: 0; left: 0; overflow-y: hidden; overflow-x: scroll; } .CodeMirror-scrollbar-filler { right: 0; bottom: 0; } .CodeMirror-gutter-filler { left: 0; bottom: 0; } .CodeMirror-gutters { position: absolute; left: 0; top: 0; min-height: 100%; z-index: 3; } .CodeMirror-gutter { white-space: normal; height: 100%; display: inline-block; vertical-align: top; margin-bottom: -30px; } .CodeMirror-gutter-wrapper { position: absolute; z-index: 4; background: none !important; border: none !important; } .CodeMirror-gutter-background { position: absolute; top: 0; bottom: 0; z-index: 4; } .CodeMirror-gutter-elt { position: absolute; cursor: default; z-index: 4; } .CodeMirror-gutter-wrapper ::selection { background-color: transparent } .CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent } .CodeMirror-lines { cursor: text; min-height: 1px; /* prevents collapsing before first draw */ } .CodeMirror pre { /* Reset some styles that the rest of the page might have set */ -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; border-width: 0; background: transparent; font-family: inherit; font-size: inherit; margin: 0; white-space: pre; word-wrap: normal; line-height: inherit; color: inherit; z-index: 2; position: relative; overflow: visible; -webkit-tap-highlight-color: transparent; -webkit-font-variant-ligatures: contextual; font-variant-ligatures: contextual; } .CodeMirror-wrap pre { word-wrap: break-word; white-space: pre-wrap; word-break: normal; } .CodeMirror-linebackground { position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 0; } .CodeMirror-linewidget { position: relative; z-index: 2; overflow: auto; } .CodeMirror-widget {} .CodeMirror-rtl pre { direction: rtl; } .CodeMirror-code { outline: none; } /* Force content-box sizing for the elements where we expect it */ .CodeMirror-scroll, .CodeMirror-sizer, .CodeMirror-gutter, .CodeMirror-gutters, .CodeMirror-linenumber { -moz-box-sizing: content-box; box-sizing: content-box; } .CodeMirror-measure { position: absolute; width: 100%; height: 0; overflow: hidden; visibility: hidden; } .CodeMirror-cursor { position: absolute; pointer-events: none; } .CodeMirror-measure pre { position: static; } div.CodeMirror-cursors { visibility: hidden; position: relative; z-index: 3; } div.CodeMirror-dragcursors { visibility: visible; } .CodeMirror-focused div.CodeMirror-cursors { visibility: visible; } .CodeMirror-selected { background: #d9d9d9; } .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; } .CodeMirror-crosshair { cursor: crosshair; } .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; } .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; } .cm-searching { background-color: #ffa; background-color: rgba(255, 255, 0, .4); } /* Used to force a border model for a node */ .cm-force-border { padding-right: .1px; } @media print { /* Hide the cursor when printing */ .CodeMirror div.CodeMirror-cursors { visibility: hidden; } } /* See issue #2901 */ .cm-tab-wrap-hack:after { content: ''; } /* Help users use markselection to safely style text background */ span.CodeMirror-selectedtext { background: none; } ================================================ FILE: ui/vendor/codemirror/codemirror.js ================================================ // CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: http://codemirror.net/LICENSE // This is CodeMirror (http://codemirror.net), a code editor // implemented in JavaScript on top of the browser's DOM. // // You can find some technical background for some of the code below // at http://marijnhaverbeke.nl/blog/#cm-internals . (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global.CodeMirror = factory()); }(this, (function () { 'use strict'; // Kludges for bugs and behavior differences that can't be feature // detected are enabled based on userAgent etc sniffing. var userAgent = navigator.userAgent var platform = navigator.platform var gecko = /gecko\/\d/i.test(userAgent) var ie_upto10 = /MSIE \d/.test(userAgent) var ie_11up = /Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(userAgent) var edge = /Edge\/(\d+)/.exec(userAgent) var ie = ie_upto10 || ie_11up || edge var ie_version = ie && (ie_upto10 ? document.documentMode || 6 : +(edge || ie_11up)[1]) var webkit = !edge && /WebKit\//.test(userAgent) var qtwebkit = webkit && /Qt\/\d+\.\d+/.test(userAgent) var chrome = !edge && /Chrome\//.test(userAgent) var presto = /Opera\//.test(userAgent) var safari = /Apple Computer/.test(navigator.vendor) var mac_geMountainLion = /Mac OS X 1\d\D([8-9]|\d\d)\D/.test(userAgent) var phantom = /PhantomJS/.test(userAgent) var ios = !edge && /AppleWebKit/.test(userAgent) && /Mobile\/\w+/.test(userAgent) var android = /Android/.test(userAgent) // This is woefully incomplete. Suggestions for alternative methods welcome. var mobile = ios || android || /webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(userAgent) var mac = ios || /Mac/.test(platform) var chromeOS = /\bCrOS\b/.test(userAgent) var windows = /win/i.test(platform) var presto_version = presto && userAgent.match(/Version\/(\d*\.\d*)/) if (presto_version) { presto_version = Number(presto_version[1]) } if (presto_version && presto_version >= 15) { presto = false; webkit = true } // Some browsers use the wrong event properties to signal cmd/ctrl on OS X var flipCtrlCmd = mac && (qtwebkit || presto && (presto_version == null || presto_version < 12.11)) var captureRightClick = gecko || (ie && ie_version >= 9) function classTest(cls) { return new RegExp("(^|\\s)" + cls + "(?:$|\\s)\\s*") } var rmClass = function(node, cls) { var current = node.className var match = classTest(cls).exec(current) if (match) { var after = current.slice(match.index + match[0].length) node.className = current.slice(0, match.index) + (after ? match[1] + after : "") } } function removeChildren(e) { for (var count = e.childNodes.length; count > 0; --count) { e.removeChild(e.firstChild) } return e } function removeChildrenAndAdd(parent, e) { return removeChildren(parent).appendChild(e) } function elt(tag, content, className, style) { var e = document.createElement(tag) if (className) { e.className = className } if (style) { e.style.cssText = style } if (typeof content == "string") { e.appendChild(document.createTextNode(content)) } else if (content) { for (var i = 0; i < content.length; ++i) { e.appendChild(content[i]) } } return e } // wrapper for elt, which removes the elt from the accessibility tree function eltP(tag, content, className, style) { var e = elt(tag, content, className, style) e.setAttribute("role", "presentation") return e } var range if (document.createRange) { range = function(node, start, end, endNode) { var r = document.createRange() r.setEnd(endNode || node, end) r.setStart(node, start) return r } } else { range = function(node, start, end) { var r = document.body.createTextRange() try { r.moveToElementText(node.parentNode) } catch(e) { return r } r.collapse(true) r.moveEnd("character", end) r.moveStart("character", start) return r } } function contains(parent, child) { if (child.nodeType == 3) // Android browser always returns false when child is a textnode { child = child.parentNode } if (parent.contains) { return parent.contains(child) } do { if (child.nodeType == 11) { child = child.host } if (child == parent) { return true } } while (child = child.parentNode) } function activeElt() { // IE and Edge may throw an "Unspecified Error" when accessing document.activeElement. // IE < 10 will throw when accessed while the page is loading or in an iframe. // IE > 9 and Edge will throw when accessed in an iframe if document.body is unavailable. var activeElement try { activeElement = document.activeElement } catch(e) { activeElement = document.body || null } while (activeElement && activeElement.shadowRoot && activeElement.shadowRoot.activeElement) { activeElement = activeElement.shadowRoot.activeElement } return activeElement } function addClass(node, cls) { var current = node.className if (!classTest(cls).test(current)) { node.className += (current ? " " : "") + cls } } function joinClasses(a, b) { var as = a.split(" ") for (var i = 0; i < as.length; i++) { if (as[i] && !classTest(as[i]).test(b)) { b += " " + as[i] } } return b } var selectInput = function(node) { node.select() } if (ios) // Mobile Safari apparently has a bug where select() is broken. { selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length } } else if (ie) // Suppress mysterious IE10 errors { selectInput = function(node) { try { node.select() } catch(_e) {} } } function bind(f) { var args = Array.prototype.slice.call(arguments, 1) return function(){return f.apply(null, args)} } function copyObj(obj, target, overwrite) { if (!target) { target = {} } for (var prop in obj) { if (obj.hasOwnProperty(prop) && (overwrite !== false || !target.hasOwnProperty(prop))) { target[prop] = obj[prop] } } return target } // Counts the column offset in a string, taking tabs into account. // Used mostly to find indentation. function countColumn(string, end, tabSize, startIndex, startValue) { if (end == null) { end = string.search(/[^\s\u00a0]/) if (end == -1) { end = string.length } } for (var i = startIndex || 0, n = startValue || 0;;) { var nextTab = string.indexOf("\t", i) if (nextTab < 0 || nextTab >= end) { return n + (end - i) } n += nextTab - i n += tabSize - (n % tabSize) i = nextTab + 1 } } var Delayed = function() {this.id = null}; Delayed.prototype.set = function (ms, f) { clearTimeout(this.id) this.id = setTimeout(f, ms) }; function indexOf(array, elt) { for (var i = 0; i < array.length; ++i) { if (array[i] == elt) { return i } } return -1 } // Number of pixels added to scroller and sizer to hide scrollbar var scrollerGap = 30 // Returned or thrown by various protocols to signal 'I'm not // handling this'. var Pass = {toString: function(){return "CodeMirror.Pass"}} // Reused option objects for setSelection & friends var sel_dontScroll = {scroll: false}; var sel_mouse = {origin: "*mouse"}; var sel_move = {origin: "+move"}; // The inverse of countColumn -- find the offset that corresponds to // a particular column. function findColumn(string, goal, tabSize) { for (var pos = 0, col = 0;;) { var nextTab = string.indexOf("\t", pos) if (nextTab == -1) { nextTab = string.length } var skipped = nextTab - pos if (nextTab == string.length || col + skipped >= goal) { return pos + Math.min(skipped, goal - col) } col += nextTab - pos col += tabSize - (col % tabSize) pos = nextTab + 1 if (col >= goal) { return pos } } } var spaceStrs = [""] function spaceStr(n) { while (spaceStrs.length <= n) { spaceStrs.push(lst(spaceStrs) + " ") } return spaceStrs[n] } function lst(arr) { return arr[arr.length-1] } function map(array, f) { var out = [] for (var i = 0; i < array.length; i++) { out[i] = f(array[i], i) } return out } function insertSorted(array, value, score) { var pos = 0, priority = score(value) while (pos < array.length && score(array[pos]) <= priority) { pos++ } array.splice(pos, 0, value) } function nothing() {} function createObj(base, props) { var inst if (Object.create) { inst = Object.create(base) } else { nothing.prototype = base inst = new nothing() } if (props) { copyObj(props, inst) } return inst } var nonASCIISingleCaseWordChar = /[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/ function isWordCharBasic(ch) { return /\w/.test(ch) || ch > "\x80" && (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch)) } function isWordChar(ch, helper) { if (!helper) { return isWordCharBasic(ch) } if (helper.source.indexOf("\\w") > -1 && isWordCharBasic(ch)) { return true } return helper.test(ch) } function isEmpty(obj) { for (var n in obj) { if (obj.hasOwnProperty(n) && obj[n]) { return false } } return true } // Extending unicode characters. A series of a non-extending char + // any number of extending chars is treated as a single unit as far // as editing and measuring is concerned. This is not fully correct, // since some scripts/fonts/browsers also treat other configurations // of code points as a group. var extendingChars = /[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/ function isExtendingChar(ch) { return ch.charCodeAt(0) >= 768 && extendingChars.test(ch) } // Returns a number from the range [`0`; `str.length`] unless `pos` is outside that range. function skipExtendingChars(str, pos, dir) { while ((dir < 0 ? pos > 0 : pos < str.length) && isExtendingChar(str.charAt(pos))) { pos += dir } return pos } // Returns the value from the range [`from`; `to`] that satisfies // `pred` and is closest to `from`. Assumes that at least `to` // satisfies `pred`. Supports `from` being greater than `to`. function findFirst(pred, from, to) { // At any point we are certain `to` satisfies `pred`, don't know // whether `from` does. var dir = from > to ? -1 : 1 for (;;) { if (from == to) { return from } var midF = (from + to) / 2, mid = dir < 0 ? Math.ceil(midF) : Math.floor(midF) if (mid == from) { return pred(mid) ? from : to } if (pred(mid)) { to = mid } else { from = mid + dir } } } // The display handles the DOM integration, both for input reading // and content drawing. It holds references to DOM nodes and // display-related state. function Display(place, doc, input) { var d = this this.input = input // Covers bottom-right square when both scrollbars are present. d.scrollbarFiller = elt("div", null, "CodeMirror-scrollbar-filler") d.scrollbarFiller.setAttribute("cm-not-content", "true") // Covers bottom of gutter when coverGutterNextToScrollbar is on // and h scrollbar is present. d.gutterFiller = elt("div", null, "CodeMirror-gutter-filler") d.gutterFiller.setAttribute("cm-not-content", "true") // Will contain the actual code, positioned to cover the viewport. d.lineDiv = eltP("div", null, "CodeMirror-code") // Elements are added to these to represent selection and cursors. d.selectionDiv = elt("div", null, null, "position: relative; z-index: 1") d.cursorDiv = elt("div", null, "CodeMirror-cursors") // A visibility: hidden element used to find the size of things. d.measure = elt("div", null, "CodeMirror-measure") // When lines outside of the viewport are measured, they are drawn in this. d.lineMeasure = elt("div", null, "CodeMirror-measure") // Wraps everything that needs to exist inside the vertically-padded coordinate system d.lineSpace = eltP("div", [d.measure, d.lineMeasure, d.selectionDiv, d.cursorDiv, d.lineDiv], null, "position: relative; outline: none") var lines = eltP("div", [d.lineSpace], "CodeMirror-lines") // Moved around its parent to cover visible view. d.mover = elt("div", [lines], null, "position: relative") // Set to the height of the document, allowing scrolling. d.sizer = elt("div", [d.mover], "CodeMirror-sizer") d.sizerWidth = null // Behavior of elts with overflow: auto and padding is // inconsistent across browsers. This is used to ensure the // scrollable area is big enough. d.heightForcer = elt("div", null, null, "position: absolute; height: " + scrollerGap + "px; width: 1px;") // Will contain the gutters, if any. d.gutters = elt("div", null, "CodeMirror-gutters") d.lineGutter = null // Actual scrollable element. d.scroller = elt("div", [d.sizer, d.heightForcer, d.gutters], "CodeMirror-scroll") d.scroller.setAttribute("tabIndex", "-1") // The element in which the editor lives. d.wrapper = elt("div", [d.scrollbarFiller, d.gutterFiller, d.scroller], "CodeMirror") // Work around IE7 z-index bug (not perfect, hence IE7 not really being supported) if (ie && ie_version < 8) { d.gutters.style.zIndex = -1; d.scroller.style.paddingRight = 0 } if (!webkit && !(gecko && mobile)) { d.scroller.draggable = true } if (place) { if (place.appendChild) { place.appendChild(d.wrapper) } else { place(d.wrapper) } } // Current rendered range (may be bigger than the view window). d.viewFrom = d.viewTo = doc.first d.reportedViewFrom = d.reportedViewTo = doc.first // Information about the rendered lines. d.view = [] d.renderedView = null // Holds info about a single rendered line when it was rendered // for measurement, while not in view. d.externalMeasured = null // Empty space (in pixels) above the view d.viewOffset = 0 d.lastWrapHeight = d.lastWrapWidth = 0 d.updateLineNumbers = null d.nativeBarWidth = d.barHeight = d.barWidth = 0 d.scrollbarsClipped = false // Used to only resize the line number gutter when necessary (when // the amount of lines crosses a boundary that makes its width change) d.lineNumWidth = d.lineNumInnerWidth = d.lineNumChars = null // Set to true when a non-horizontal-scrolling line widget is // added. As an optimization, line widget aligning is skipped when // this is false. d.alignWidgets = false d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null // Tracks the maximum line length so that the horizontal scrollbar // can be kept static when scrolling. d.maxLine = null d.maxLineLength = 0 d.maxLineChanged = false // Used for measuring wheel scrolling granularity d.wheelDX = d.wheelDY = d.wheelStartX = d.wheelStartY = null // True when shift is held down. d.shift = false // Used to track whether anything happened since the context menu // was opened. d.selForContextMenu = null d.activeTouch = null input.init(d) } // Find the line object corresponding to the given line number. function getLine(doc, n) { n -= doc.first if (n < 0 || n >= doc.size) { throw new Error("There is no line " + (n + doc.first) + " in the document.") } var chunk = doc while (!chunk.lines) { for (var i = 0;; ++i) { var child = chunk.children[i], sz = child.chunkSize() if (n < sz) { chunk = child; break } n -= sz } } return chunk.lines[n] } // Get the part of a document between two positions, as an array of // strings. function getBetween(doc, start, end) { var out = [], n = start.line doc.iter(start.line, end.line + 1, function (line) { var text = line.text if (n == end.line) { text = text.slice(0, end.ch) } if (n == start.line) { text = text.slice(start.ch) } out.push(text) ++n }) return out } // Get the lines between from and to, as array of strings. function getLines(doc, from, to) { var out = [] doc.iter(from, to, function (line) { out.push(line.text) }) // iter aborts when callback returns truthy value return out } // Update the height of a line, propagating the height change // upwards to parent nodes. function updateLineHeight(line, height) { var diff = height - line.height if (diff) { for (var n = line; n; n = n.parent) { n.height += diff } } } // Given a line object, find its line number by walking up through // its parent links. function lineNo(line) { if (line.parent == null) { return null } var cur = line.parent, no = indexOf(cur.lines, line) for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) { for (var i = 0;; ++i) { if (chunk.children[i] == cur) { break } no += chunk.children[i].chunkSize() } } return no + cur.first } // Find the line at the given vertical position, using the height // information in the document tree. function lineAtHeight(chunk, h) { var n = chunk.first outer: do { for (var i$1 = 0; i$1 < chunk.children.length; ++i$1) { var child = chunk.children[i$1], ch = child.height if (h < ch) { chunk = child; continue outer } h -= ch n += child.chunkSize() } return n } while (!chunk.lines) var i = 0 for (; i < chunk.lines.length; ++i) { var line = chunk.lines[i], lh = line.height if (h < lh) { break } h -= lh } return n + i } function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size} function lineNumberFor(options, i) { return String(options.lineNumberFormatter(i + options.firstLineNumber)) } // A Pos instance represents a position within the text. function Pos(line, ch, sticky) { if ( sticky === void 0 ) sticky = null; if (!(this instanceof Pos)) { return new Pos(line, ch, sticky) } this.line = line this.ch = ch this.sticky = sticky } // Compare two positions, return 0 if they are the same, a negative // number when a is less, and a positive number otherwise. function cmp(a, b) { return a.line - b.line || a.ch - b.ch } function equalCursorPos(a, b) { return a.sticky == b.sticky && cmp(a, b) == 0 } function copyPos(x) {return Pos(x.line, x.ch)} function maxPos(a, b) { return cmp(a, b) < 0 ? b : a } function minPos(a, b) { return cmp(a, b) < 0 ? a : b } // Most of the external API clips given positions to make sure they // actually exist within the document. function clipLine(doc, n) {return Math.max(doc.first, Math.min(n, doc.first + doc.size - 1))} function clipPos(doc, pos) { if (pos.line < doc.first) { return Pos(doc.first, 0) } var last = doc.first + doc.size - 1 if (pos.line > last) { return Pos(last, getLine(doc, last).text.length) } return clipToLen(pos, getLine(doc, pos.line).text.length) } function clipToLen(pos, linelen) { var ch = pos.ch if (ch == null || ch > linelen) { return Pos(pos.line, linelen) } else if (ch < 0) { return Pos(pos.line, 0) } else { return pos } } function clipPosArray(doc, array) { var out = [] for (var i = 0; i < array.length; i++) { out[i] = clipPos(doc, array[i]) } return out } // Optimize some code when these features are not used. var sawReadOnlySpans = false; var sawCollapsedSpans = false; function seeReadOnlySpans() { sawReadOnlySpans = true } function seeCollapsedSpans() { sawCollapsedSpans = true } // TEXTMARKER SPANS function MarkedSpan(marker, from, to) { this.marker = marker this.from = from; this.to = to } // Search an array of spans for a span matching the given marker. function getMarkedSpanFor(spans, marker) { if (spans) { for (var i = 0; i < spans.length; ++i) { var span = spans[i] if (span.marker == marker) { return span } } } } // Remove a span from an array, returning undefined if no spans are // left (we don't store arrays for lines without spans). function removeMarkedSpan(spans, span) { var r for (var i = 0; i < spans.length; ++i) { if (spans[i] != span) { (r || (r = [])).push(spans[i]) } } return r } // Add a span to a line. function addMarkedSpan(line, span) { line.markedSpans = line.markedSpans ? line.markedSpans.concat([span]) : [span] span.marker.attachLine(line) } // Used for the algorithm that adjusts markers for a change in the // document. These functions cut an array of spans at a given // character position, returning an array of remaining chunks (or // undefined if nothing remains). function markedSpansBefore(old, startCh, isInsert) { var nw if (old) { for (var i = 0; i < old.length; ++i) { var span = old[i], marker = span.marker var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= startCh : span.from < startCh) if (startsBefore || span.from == startCh && marker.type == "bookmark" && (!isInsert || !span.marker.insertLeft)) { var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= startCh : span.to > startCh) ;(nw || (nw = [])).push(new MarkedSpan(marker, span.from, endsAfter ? null : span.to)) } } } return nw } function markedSpansAfter(old, endCh, isInsert) { var nw if (old) { for (var i = 0; i < old.length; ++i) { var span = old[i], marker = span.marker var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= endCh : span.to > endCh) if (endsAfter || span.from == endCh && marker.type == "bookmark" && (!isInsert || span.marker.insertLeft)) { var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= endCh : span.from < endCh) ;(nw || (nw = [])).push(new MarkedSpan(marker, startsBefore ? null : span.from - endCh, span.to == null ? null : span.to - endCh)) } } } return nw } // Given a change object, compute the new set of marker spans that // cover the line in which the change took place. Removes spans // entirely within the change, reconnects spans belonging to the // same marker that appear on both sides of the change, and cuts off // spans partially within the change. Returns an array of span // arrays with one element for each line in (after) the change. function stretchSpansOverChange(doc, change) { if (change.full) { return null } var oldFirst = isLine(doc, change.from.line) && getLine(doc, change.from.line).markedSpans var oldLast = isLine(doc, change.to.line) && getLine(doc, change.to.line).markedSpans if (!oldFirst && !oldLast) { return null } var startCh = change.from.ch, endCh = change.to.ch, isInsert = cmp(change.from, change.to) == 0 // Get the spans that 'stick out' on both sides var first = markedSpansBefore(oldFirst, startCh, isInsert) var last = markedSpansAfter(oldLast, endCh, isInsert) // Next, merge those two ends var sameLine = change.text.length == 1, offset = lst(change.text).length + (sameLine ? startCh : 0) if (first) { // Fix up .to properties of first for (var i = 0; i < first.length; ++i) { var span = first[i] if (span.to == null) { var found = getMarkedSpanFor(last, span.marker) if (!found) { span.to = startCh } else if (sameLine) { span.to = found.to == null ? null : found.to + offset } } } } if (last) { // Fix up .from in last (or move them into first in case of sameLine) for (var i$1 = 0; i$1 < last.length; ++i$1) { var span$1 = last[i$1] if (span$1.to != null) { span$1.to += offset } if (span$1.from == null) { var found$1 = getMarkedSpanFor(first, span$1.marker) if (!found$1) { span$1.from = offset if (sameLine) { (first || (first = [])).push(span$1) } } } else { span$1.from += offset if (sameLine) { (first || (first = [])).push(span$1) } } } } // Make sure we didn't create any zero-length spans if (first) { first = clearEmptySpans(first) } if (last && last != first) { last = clearEmptySpans(last) } var newMarkers = [first] if (!sameLine) { // Fill gap with whole-line-spans var gap = change.text.length - 2, gapMarkers if (gap > 0 && first) { for (var i$2 = 0; i$2 < first.length; ++i$2) { if (first[i$2].to == null) { (gapMarkers || (gapMarkers = [])).push(new MarkedSpan(first[i$2].marker, null, null)) } } } for (var i$3 = 0; i$3 < gap; ++i$3) { newMarkers.push(gapMarkers) } newMarkers.push(last) } return newMarkers } // Remove spans that are empty and don't have a clearWhenEmpty // option of false. function clearEmptySpans(spans) { for (var i = 0; i < spans.length; ++i) { var span = spans[i] if (span.from != null && span.from == span.to && span.marker.clearWhenEmpty !== false) { spans.splice(i--, 1) } } if (!spans.length) { return null } return spans } // Used to 'clip' out readOnly ranges when making a change. function removeReadOnlyRanges(doc, from, to) { var markers = null doc.iter(from.line, to.line + 1, function (line) { if (line.markedSpans) { for (var i = 0; i < line.markedSpans.length; ++i) { var mark = line.markedSpans[i].marker if (mark.readOnly && (!markers || indexOf(markers, mark) == -1)) { (markers || (markers = [])).push(mark) } } } }) if (!markers) { return null } var parts = [{from: from, to: to}] for (var i = 0; i < markers.length; ++i) { var mk = markers[i], m = mk.find(0) for (var j = 0; j < parts.length; ++j) { var p = parts[j] if (cmp(p.to, m.from) < 0 || cmp(p.from, m.to) > 0) { continue } var newParts = [j, 1], dfrom = cmp(p.from, m.from), dto = cmp(p.to, m.to) if (dfrom < 0 || !mk.inclusiveLeft && !dfrom) { newParts.push({from: p.from, to: m.from}) } if (dto > 0 || !mk.inclusiveRight && !dto) { newParts.push({from: m.to, to: p.to}) } parts.splice.apply(parts, newParts) j += newParts.length - 3 } } return parts } // Connect or disconnect spans from a line. function detachMarkedSpans(line) { var spans = line.markedSpans if (!spans) { return } for (var i = 0; i < spans.length; ++i) { spans[i].marker.detachLine(line) } line.markedSpans = null } function attachMarkedSpans(line, spans) { if (!spans) { return } for (var i = 0; i < spans.length; ++i) { spans[i].marker.attachLine(line) } line.markedSpans = spans } // Helpers used when computing which overlapping collapsed span // counts as the larger one. function extraLeft(marker) { return marker.inclusiveLeft ? -1 : 0 } function extraRight(marker) { return marker.inclusiveRight ? 1 : 0 } // Returns a number indicating which of two overlapping collapsed // spans is larger (and thus includes the other). Falls back to // comparing ids when the spans cover exactly the same range. function compareCollapsedMarkers(a, b) { var lenDiff = a.lines.length - b.lines.length if (lenDiff != 0) { return lenDiff } var aPos = a.find(), bPos = b.find() var fromCmp = cmp(aPos.from, bPos.from) || extraLeft(a) - extraLeft(b) if (fromCmp) { return -fromCmp } var toCmp = cmp(aPos.to, bPos.to) || extraRight(a) - extraRight(b) if (toCmp) { return toCmp } return b.id - a.id } // Find out whether a line ends or starts in a collapsed span. If // so, return the marker for that span. function collapsedSpanAtSide(line, start) { var sps = sawCollapsedSpans && line.markedSpans, found if (sps) { for (var sp = (void 0), i = 0; i < sps.length; ++i) { sp = sps[i] if (sp.marker.collapsed && (start ? sp.from : sp.to) == null && (!found || compareCollapsedMarkers(found, sp.marker) < 0)) { found = sp.marker } } } return found } function collapsedSpanAtStart(line) { return collapsedSpanAtSide(line, true) } function collapsedSpanAtEnd(line) { return collapsedSpanAtSide(line, false) } // Test whether there exists a collapsed span that partially // overlaps (covers the start or end, but not both) of a new span. // Such overlap is not allowed. function conflictingCollapsedRange(doc, lineNo, from, to, marker) { var line = getLine(doc, lineNo) var sps = sawCollapsedSpans && line.markedSpans if (sps) { for (var i = 0; i < sps.length; ++i) { var sp = sps[i] if (!sp.marker.collapsed) { continue } var found = sp.marker.find(0) var fromCmp = cmp(found.from, from) || extraLeft(sp.marker) - extraLeft(marker) var toCmp = cmp(found.to, to) || extraRight(sp.marker) - extraRight(marker) if (fromCmp >= 0 && toCmp <= 0 || fromCmp <= 0 && toCmp >= 0) { continue } if (fromCmp <= 0 && (sp.marker.inclusiveRight && marker.inclusiveLeft ? cmp(found.to, from) >= 0 : cmp(found.to, from) > 0) || fromCmp >= 0 && (sp.marker.inclusiveRight && marker.inclusiveLeft ? cmp(found.from, to) <= 0 : cmp(found.from, to) < 0)) { return true } } } } // A visual line is a line as drawn on the screen. Folding, for // example, can cause multiple logical lines to appear on the same // visual line. This finds the start of the visual line that the // given line is part of (usually that is the line itself). function visualLine(line) { var merged while (merged = collapsedSpanAtStart(line)) { line = merged.find(-1, true).line } return line } function visualLineEnd(line) { var merged while (merged = collapsedSpanAtEnd(line)) { line = merged.find(1, true).line } return line } // Returns an array of logical lines that continue the visual line // started by the argument, or undefined if there are no such lines. function visualLineContinued(line) { var merged, lines while (merged = collapsedSpanAtEnd(line)) { line = merged.find(1, true).line ;(lines || (lines = [])).push(line) } return lines } // Get the line number of the start of the visual line that the // given line number is part of. function visualLineNo(doc, lineN) { var line = getLine(doc, lineN), vis = visualLine(line) if (line == vis) { return lineN } return lineNo(vis) } // Get the line number of the start of the next visual line after // the given line. function visualLineEndNo(doc, lineN) { if (lineN > doc.lastLine()) { return lineN } var line = getLine(doc, lineN), merged if (!lineIsHidden(doc, line)) { return lineN } while (merged = collapsedSpanAtEnd(line)) { line = merged.find(1, true).line } return lineNo(line) + 1 } // Compute whether a line is hidden. Lines count as hidden when they // are part of a visual line that starts with another line, or when // they are entirely covered by collapsed, non-widget span. function lineIsHidden(doc, line) { var sps = sawCollapsedSpans && line.markedSpans if (sps) { for (var sp = (void 0), i = 0; i < sps.length; ++i) { sp = sps[i] if (!sp.marker.collapsed) { continue } if (sp.from == null) { return true } if (sp.marker.widgetNode) { continue } if (sp.from == 0 && sp.marker.inclusiveLeft && lineIsHiddenInner(doc, line, sp)) { return true } } } } function lineIsHiddenInner(doc, line, span) { if (span.to == null) { var end = span.marker.find(1, true) return lineIsHiddenInner(doc, end.line, getMarkedSpanFor(end.line.markedSpans, span.marker)) } if (span.marker.inclusiveRight && span.to == line.text.length) { return true } for (var sp = (void 0), i = 0; i < line.markedSpans.length; ++i) { sp = line.markedSpans[i] if (sp.marker.collapsed && !sp.marker.widgetNode && sp.from == span.to && (sp.to == null || sp.to != span.from) && (sp.marker.inclusiveLeft || span.marker.inclusiveRight) && lineIsHiddenInner(doc, line, sp)) { return true } } } // Find the height above the given line. function heightAtLine(lineObj) { lineObj = visualLine(lineObj) var h = 0, chunk = lineObj.parent for (var i = 0; i < chunk.lines.length; ++i) { var line = chunk.lines[i] if (line == lineObj) { break } else { h += line.height } } for (var p = chunk.parent; p; chunk = p, p = chunk.parent) { for (var i$1 = 0; i$1 < p.children.length; ++i$1) { var cur = p.children[i$1] if (cur == chunk) { break } else { h += cur.height } } } return h } // Compute the character length of a line, taking into account // collapsed ranges (see markText) that might hide parts, and join // other lines onto it. function lineLength(line) { if (line.height == 0) { return 0 } var len = line.text.length, merged, cur = line while (merged = collapsedSpanAtStart(cur)) { var found = merged.find(0, true) cur = found.from.line len += found.from.ch - found.to.ch } cur = line while (merged = collapsedSpanAtEnd(cur)) { var found$1 = merged.find(0, true) len -= cur.text.length - found$1.from.ch cur = found$1.to.line len += cur.text.length - found$1.to.ch } return len } // Find the longest line in the document. function findMaxLine(cm) { var d = cm.display, doc = cm.doc d.maxLine = getLine(doc, doc.first) d.maxLineLength = lineLength(d.maxLine) d.maxLineChanged = true doc.iter(function (line) { var len = lineLength(line) if (len > d.maxLineLength) { d.maxLineLength = len d.maxLine = line } }) } // BIDI HELPERS function iterateBidiSections(order, from, to, f) { if (!order) { return f(from, to, "ltr", 0) } var found = false for (var i = 0; i < order.length; ++i) { var part = order[i] if (part.from < to && part.to > from || from == to && part.to == from) { f(Math.max(part.from, from), Math.min(part.to, to), part.level == 1 ? "rtl" : "ltr", i) found = true } } if (!found) { f(from, to, "ltr") } } var bidiOther = null function getBidiPartAt(order, ch, sticky) { var found bidiOther = null for (var i = 0; i < order.length; ++i) { var cur = order[i] if (cur.from < ch && cur.to > ch) { return i } if (cur.to == ch) { if (cur.from != cur.to && sticky == "before") { found = i } else { bidiOther = i } } if (cur.from == ch) { if (cur.from != cur.to && sticky != "before") { found = i } else { bidiOther = i } } } return found != null ? found : bidiOther } // Bidirectional ordering algorithm // See http://unicode.org/reports/tr9/tr9-13.html for the algorithm // that this (partially) implements. // One-char codes used for character types: // L (L): Left-to-Right // R (R): Right-to-Left // r (AL): Right-to-Left Arabic // 1 (EN): European Number // + (ES): European Number Separator // % (ET): European Number Terminator // n (AN): Arabic Number // , (CS): Common Number Separator // m (NSM): Non-Spacing Mark // b (BN): Boundary Neutral // s (B): Paragraph Separator // t (S): Segment Separator // w (WS): Whitespace // N (ON): Other Neutrals // Returns null if characters are ordered as they appear // (left-to-right), or an array of sections ({from, to, level} // objects) in the order in which they occur visually. var bidiOrdering = (function() { // Character types for codepoints 0 to 0xff var lowTypes = "bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN" // Character types for codepoints 0x600 to 0x6f9 var arabicTypes = "nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111" function charType(code) { if (code <= 0xf7) { return lowTypes.charAt(code) } else if (0x590 <= code && code <= 0x5f4) { return "R" } else if (0x600 <= code && code <= 0x6f9) { return arabicTypes.charAt(code - 0x600) } else if (0x6ee <= code && code <= 0x8ac) { return "r" } else if (0x2000 <= code && code <= 0x200b) { return "w" } else if (code == 0x200c) { return "b" } else { return "L" } } var bidiRE = /[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/ var isNeutral = /[stwN]/, isStrong = /[LRr]/, countsAsLeft = /[Lb1n]/, countsAsNum = /[1n]/ function BidiSpan(level, from, to) { this.level = level this.from = from; this.to = to } return function(str, direction) { var outerType = direction == "ltr" ? "L" : "R" if (str.length == 0 || direction == "ltr" && !bidiRE.test(str)) { return false } var len = str.length, types = [] for (var i = 0; i < len; ++i) { types.push(charType(str.charCodeAt(i))) } // W1. Examine each non-spacing mark (NSM) in the level run, and // change the type of the NSM to the type of the previous // character. If the NSM is at the start of the level run, it will // get the type of sor. for (var i$1 = 0, prev = outerType; i$1 < len; ++i$1) { var type = types[i$1] if (type == "m") { types[i$1] = prev } else { prev = type } } // W2. Search backwards from each instance of a European number // until the first strong type (R, L, AL, or sor) is found. If an // AL is found, change the type of the European number to Arabic // number. // W3. Change all ALs to R. for (var i$2 = 0, cur = outerType; i$2 < len; ++i$2) { var type$1 = types[i$2] if (type$1 == "1" && cur == "r") { types[i$2] = "n" } else if (isStrong.test(type$1)) { cur = type$1; if (type$1 == "r") { types[i$2] = "R" } } } // W4. A single European separator between two European numbers // changes to a European number. A single common separator between // two numbers of the same type changes to that type. for (var i$3 = 1, prev$1 = types[0]; i$3 < len - 1; ++i$3) { var type$2 = types[i$3] if (type$2 == "+" && prev$1 == "1" && types[i$3+1] == "1") { types[i$3] = "1" } else if (type$2 == "," && prev$1 == types[i$3+1] && (prev$1 == "1" || prev$1 == "n")) { types[i$3] = prev$1 } prev$1 = type$2 } // W5. A sequence of European terminators adjacent to European // numbers changes to all European numbers. // W6. Otherwise, separators and terminators change to Other // Neutral. for (var i$4 = 0; i$4 < len; ++i$4) { var type$3 = types[i$4] if (type$3 == ",") { types[i$4] = "N" } else if (type$3 == "%") { var end = (void 0) for (end = i$4 + 1; end < len && types[end] == "%"; ++end) {} var replace = (i$4 && types[i$4-1] == "!") || (end < len && types[end] == "1") ? "1" : "N" for (var j = i$4; j < end; ++j) { types[j] = replace } i$4 = end - 1 } } // W7. Search backwards from each instance of a European number // until the first strong type (R, L, or sor) is found. If an L is // found, then change the type of the European number to L. for (var i$5 = 0, cur$1 = outerType; i$5 < len; ++i$5) { var type$4 = types[i$5] if (cur$1 == "L" && type$4 == "1") { types[i$5] = "L" } else if (isStrong.test(type$4)) { cur$1 = type$4 } } // N1. A sequence of neutrals takes the direction of the // surrounding strong text if the text on both sides has the same // direction. European and Arabic numbers act as if they were R in // terms of their influence on neutrals. Start-of-level-run (sor) // and end-of-level-run (eor) are used at level run boundaries. // N2. Any remaining neutrals take the embedding direction. for (var i$6 = 0; i$6 < len; ++i$6) { if (isNeutral.test(types[i$6])) { var end$1 = (void 0) for (end$1 = i$6 + 1; end$1 < len && isNeutral.test(types[end$1]); ++end$1) {} var before = (i$6 ? types[i$6-1] : outerType) == "L" var after = (end$1 < len ? types[end$1] : outerType) == "L" var replace$1 = before == after ? (before ? "L" : "R") : outerType for (var j$1 = i$6; j$1 < end$1; ++j$1) { types[j$1] = replace$1 } i$6 = end$1 - 1 } } // Here we depart from the documented algorithm, in order to avoid // building up an actual levels array. Since there are only three // levels (0, 1, 2) in an implementation that doesn't take // explicit embedding into account, we can build up the order on // the fly, without following the level-based algorithm. var order = [], m for (var i$7 = 0; i$7 < len;) { if (countsAsLeft.test(types[i$7])) { var start = i$7 for (++i$7; i$7 < len && countsAsLeft.test(types[i$7]); ++i$7) {} order.push(new BidiSpan(0, start, i$7)) } else { var pos = i$7, at = order.length for (++i$7; i$7 < len && types[i$7] != "L"; ++i$7) {} for (var j$2 = pos; j$2 < i$7;) { if (countsAsNum.test(types[j$2])) { if (pos < j$2) { order.splice(at, 0, new BidiSpan(1, pos, j$2)) } var nstart = j$2 for (++j$2; j$2 < i$7 && countsAsNum.test(types[j$2]); ++j$2) {} order.splice(at, 0, new BidiSpan(2, nstart, j$2)) pos = j$2 } else { ++j$2 } } if (pos < i$7) { order.splice(at, 0, new BidiSpan(1, pos, i$7)) } } } if (order[0].level == 1 && (m = str.match(/^\s+/))) { order[0].from = m[0].length order.unshift(new BidiSpan(0, 0, m[0].length)) } if (lst(order).level == 1 && (m = str.match(/\s+$/))) { lst(order).to -= m[0].length order.push(new BidiSpan(0, len - m[0].length, len)) } return direction == "rtl" ? order.reverse() : order } })() // Get the bidi ordering for the given line (and cache it). Returns // false for lines that are fully left-to-right, and an array of // BidiSpan objects otherwise. function getOrder(line, direction) { var order = line.order if (order == null) { order = line.order = bidiOrdering(line.text, direction) } return order } // EVENT HANDLING // Lightweight event framework. on/off also work on DOM nodes, // registering native DOM handlers. var noHandlers = [] var on = function(emitter, type, f) { if (emitter.addEventListener) { emitter.addEventListener(type, f, false) } else if (emitter.attachEvent) { emitter.attachEvent("on" + type, f) } else { var map = emitter._handlers || (emitter._handlers = {}) map[type] = (map[type] || noHandlers).concat(f) } } function getHandlers(emitter, type) { return emitter._handlers && emitter._handlers[type] || noHandlers } function off(emitter, type, f) { if (emitter.removeEventListener) { emitter.removeEventListener(type, f, false) } else if (emitter.detachEvent) { emitter.detachEvent("on" + type, f) } else { var map = emitter._handlers, arr = map && map[type] if (arr) { var index = indexOf(arr, f) if (index > -1) { map[type] = arr.slice(0, index).concat(arr.slice(index + 1)) } } } } function signal(emitter, type /*, values...*/) { var handlers = getHandlers(emitter, type) if (!handlers.length) { return } var args = Array.prototype.slice.call(arguments, 2) for (var i = 0; i < handlers.length; ++i) { handlers[i].apply(null, args) } } // The DOM events that CodeMirror handles can be overridden by // registering a (non-DOM) handler on the editor for the event name, // and preventDefault-ing the event in that handler. function signalDOMEvent(cm, e, override) { if (typeof e == "string") { e = {type: e, preventDefault: function() { this.defaultPrevented = true }} } signal(cm, override || e.type, cm, e) return e_defaultPrevented(e) || e.codemirrorIgnore } function signalCursorActivity(cm) { var arr = cm._handlers && cm._handlers.cursorActivity if (!arr) { return } var set = cm.curOp.cursorActivityHandlers || (cm.curOp.cursorActivityHandlers = []) for (var i = 0; i < arr.length; ++i) { if (indexOf(set, arr[i]) == -1) { set.push(arr[i]) } } } function hasHandler(emitter, type) { return getHandlers(emitter, type).length > 0 } // Add on and off methods to a constructor's prototype, to make // registering events on such objects more convenient. function eventMixin(ctor) { ctor.prototype.on = function(type, f) {on(this, type, f)} ctor.prototype.off = function(type, f) {off(this, type, f)} } // Due to the fact that we still support jurassic IE versions, some // compatibility wrappers are needed. function e_preventDefault(e) { if (e.preventDefault) { e.preventDefault() } else { e.returnValue = false } } function e_stopPropagation(e) { if (e.stopPropagation) { e.stopPropagation() } else { e.cancelBubble = true } } function e_defaultPrevented(e) { return e.defaultPrevented != null ? e.defaultPrevented : e.returnValue == false } function e_stop(e) {e_preventDefault(e); e_stopPropagation(e)} function e_target(e) {return e.target || e.srcElement} function e_button(e) { var b = e.which if (b == null) { if (e.button & 1) { b = 1 } else if (e.button & 2) { b = 3 } else if (e.button & 4) { b = 2 } } if (mac && e.ctrlKey && b == 1) { b = 3 } return b } // Detect drag-and-drop var dragAndDrop = function() { // There is *some* kind of drag-and-drop support in IE6-8, but I // couldn't get it to work yet. if (ie && ie_version < 9) { return false } var div = elt('div') return "draggable" in div || "dragDrop" in div }() var zwspSupported function zeroWidthElement(measure) { if (zwspSupported == null) { var test = elt("span", "\u200b") removeChildrenAndAdd(measure, elt("span", [test, document.createTextNode("x")])) if (measure.firstChild.offsetHeight != 0) { zwspSupported = test.offsetWidth <= 1 && test.offsetHeight > 2 && !(ie && ie_version < 8) } } var node = zwspSupported ? elt("span", "\u200b") : elt("span", "\u00a0", null, "display: inline-block; width: 1px; margin-right: -1px") node.setAttribute("cm-text", "") return node } // Feature-detect IE's crummy client rect reporting for bidi text var badBidiRects function hasBadBidiRects(measure) { if (badBidiRects != null) { return badBidiRects } var txt = removeChildrenAndAdd(measure, document.createTextNode("A\u062eA")) var r0 = range(txt, 0, 1).getBoundingClientRect() var r1 = range(txt, 1, 2).getBoundingClientRect() removeChildren(measure) if (!r0 || r0.left == r0.right) { return false } // Safari returns null in some cases (#2780) return badBidiRects = (r1.right - r0.right < 3) } // See if "".split is the broken IE version, if so, provide an // alternative way to split lines. var splitLinesAuto = "\n\nb".split(/\n/).length != 3 ? function (string) { var pos = 0, result = [], l = string.length while (pos <= l) { var nl = string.indexOf("\n", pos) if (nl == -1) { nl = string.length } var line = string.slice(pos, string.charAt(nl - 1) == "\r" ? nl - 1 : nl) var rt = line.indexOf("\r") if (rt != -1) { result.push(line.slice(0, rt)) pos += rt + 1 } else { result.push(line) pos = nl + 1 } } return result } : function (string) { return string.split(/\r\n?|\n/); } var hasSelection = window.getSelection ? function (te) { try { return te.selectionStart != te.selectionEnd } catch(e) { return false } } : function (te) { var range try {range = te.ownerDocument.selection.createRange()} catch(e) {} if (!range || range.parentElement() != te) { return false } return range.compareEndPoints("StartToEnd", range) != 0 } var hasCopyEvent = (function () { var e = elt("div") if ("oncopy" in e) { return true } e.setAttribute("oncopy", "return;") return typeof e.oncopy == "function" })() var badZoomedRects = null function hasBadZoomedRects(measure) { if (badZoomedRects != null) { return badZoomedRects } var node = removeChildrenAndAdd(measure, elt("span", "x")) var normal = node.getBoundingClientRect() var fromRange = range(node, 0, 1).getBoundingClientRect() return badZoomedRects = Math.abs(normal.left - fromRange.left) > 1 } var modes = {}; var mimeModes = {}; // Extra arguments are stored as the mode's dependencies, which is // used by (legacy) mechanisms like loadmode.js to automatically // load a mode. (Preferred mechanism is the require/define calls.) function defineMode(name, mode) { if (arguments.length > 2) { mode.dependencies = Array.prototype.slice.call(arguments, 2) } modes[name] = mode } function defineMIME(mime, spec) { mimeModes[mime] = spec } // Given a MIME type, a {name, ...options} config object, or a name // string, return a mode config object. function resolveMode(spec) { if (typeof spec == "string" && mimeModes.hasOwnProperty(spec)) { spec = mimeModes[spec] } else if (spec && typeof spec.name == "string" && mimeModes.hasOwnProperty(spec.name)) { var found = mimeModes[spec.name] if (typeof found == "string") { found = {name: found} } spec = createObj(found, spec) spec.name = found.name } else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+xml$/.test(spec)) { return resolveMode("application/xml") } else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+json$/.test(spec)) { return resolveMode("application/json") } if (typeof spec == "string") { return {name: spec} } else { return spec || {name: "null"} } } // Given a mode spec (anything that resolveMode accepts), find and // initialize an actual mode object. function getMode(options, spec) { spec = resolveMode(spec) var mfactory = modes[spec.name] if (!mfactory) { return getMode(options, "text/plain") } var modeObj = mfactory(options, spec) if (modeExtensions.hasOwnProperty(spec.name)) { var exts = modeExtensions[spec.name] for (var prop in exts) { if (!exts.hasOwnProperty(prop)) { continue } if (modeObj.hasOwnProperty(prop)) { modeObj["_" + prop] = modeObj[prop] } modeObj[prop] = exts[prop] } } modeObj.name = spec.name if (spec.helperType) { modeObj.helperType = spec.helperType } if (spec.modeProps) { for (var prop$1 in spec.modeProps) { modeObj[prop$1] = spec.modeProps[prop$1] } } return modeObj } // This can be used to attach properties to mode objects from // outside the actual mode definition. var modeExtensions = {} function extendMode(mode, properties) { var exts = modeExtensions.hasOwnProperty(mode) ? modeExtensions[mode] : (modeExtensions[mode] = {}) copyObj(properties, exts) } function copyState(mode, state) { if (state === true) { return state } if (mode.copyState) { return mode.copyState(state) } var nstate = {} for (var n in state) { var val = state[n] if (val instanceof Array) { val = val.concat([]) } nstate[n] = val } return nstate } // Given a mode and a state (for that mode), find the inner mode and // state at the position that the state refers to. function innerMode(mode, state) { var info while (mode.innerMode) { info = mode.innerMode(state) if (!info || info.mode == mode) { break } state = info.state mode = info.mode } return info || {mode: mode, state: state} } function startState(mode, a1, a2) { return mode.startState ? mode.startState(a1, a2) : true } // STRING STREAM // Fed to the mode parsers, provides helper functions to make // parsers more succinct. var StringStream = function(string, tabSize, lineOracle) { this.pos = this.start = 0 this.string = string this.tabSize = tabSize || 8 this.lastColumnPos = this.lastColumnValue = 0 this.lineStart = 0 this.lineOracle = lineOracle }; StringStream.prototype.eol = function () {return this.pos >= this.string.length}; StringStream.prototype.sol = function () {return this.pos == this.lineStart}; StringStream.prototype.peek = function () {return this.string.charAt(this.pos) || undefined}; StringStream.prototype.next = function () { if (this.pos < this.string.length) { return this.string.charAt(this.pos++) } }; StringStream.prototype.eat = function (match) { var ch = this.string.charAt(this.pos) var ok if (typeof match == "string") { ok = ch == match } else { ok = ch && (match.test ? match.test(ch) : match(ch)) } if (ok) {++this.pos; return ch} }; StringStream.prototype.eatWhile = function (match) { var start = this.pos while (this.eat(match)){} return this.pos > start }; StringStream.prototype.eatSpace = function () { var this$1 = this; var start = this.pos while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) { ++this$1.pos } return this.pos > start }; StringStream.prototype.skipToEnd = function () {this.pos = this.string.length}; StringStream.prototype.skipTo = function (ch) { var found = this.string.indexOf(ch, this.pos) if (found > -1) {this.pos = found; return true} }; StringStream.prototype.backUp = function (n) {this.pos -= n}; StringStream.prototype.column = function () { if (this.lastColumnPos < this.start) { this.lastColumnValue = countColumn(this.string, this.start, this.tabSize, this.lastColumnPos, this.lastColumnValue) this.lastColumnPos = this.start } return this.lastColumnValue - (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0) }; StringStream.prototype.indentation = function () { return countColumn(this.string, null, this.tabSize) - (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0) }; StringStream.prototype.match = function (pattern, consume, caseInsensitive) { if (typeof pattern == "string") { var cased = function (str) { return caseInsensitive ? str.toLowerCase() : str; } var substr = this.string.substr(this.pos, pattern.length) if (cased(substr) == cased(pattern)) { if (consume !== false) { this.pos += pattern.length } return true } } else { var match = this.string.slice(this.pos).match(pattern) if (match && match.index > 0) { return null } if (match && consume !== false) { this.pos += match[0].length } return match } }; StringStream.prototype.current = function (){return this.string.slice(this.start, this.pos)}; StringStream.prototype.hideFirstChars = function (n, inner) { this.lineStart += n try { return inner() } finally { this.lineStart -= n } }; StringStream.prototype.lookAhead = function (n) { var oracle = this.lineOracle return oracle && oracle.lookAhead(n) }; var SavedContext = function(state, lookAhead) { this.state = state this.lookAhead = lookAhead }; var Context = function(doc, state, line, lookAhead) { this.state = state this.doc = doc this.line = line this.maxLookAhead = lookAhead || 0 }; Context.prototype.lookAhead = function (n) { var line = this.doc.getLine(this.line + n) if (line != null && n > this.maxLookAhead) { this.maxLookAhead = n } return line }; Context.prototype.nextLine = function () { this.line++ if (this.maxLookAhead > 0) { this.maxLookAhead-- } }; Context.fromSaved = function (doc, saved, line) { if (saved instanceof SavedContext) { return new Context(doc, copyState(doc.mode, saved.state), line, saved.lookAhead) } else { return new Context(doc, copyState(doc.mode, saved), line) } }; Context.prototype.save = function (copy) { var state = copy !== false ? copyState(this.doc.mode, this.state) : this.state return this.maxLookAhead > 0 ? new SavedContext(state, this.maxLookAhead) : state }; // Compute a style array (an array starting with a mode generation // -- for invalidation -- followed by pairs of end positions and // style strings), which is used to highlight the tokens on the // line. function highlightLine(cm, line, context, forceToEnd) { // A styles array always starts with a number identifying the // mode/overlays that it is based on (for easy invalidation). var st = [cm.state.modeGen], lineClasses = {} // Compute the base array of styles runMode(cm, line.text, cm.doc.mode, context, function (end, style) { return st.push(end, style); }, lineClasses, forceToEnd) var state = context.state // Run overlays, adjust style array. var loop = function ( o ) { var overlay = cm.state.overlays[o], i = 1, at = 0 context.state = true runMode(cm, line.text, overlay.mode, context, function (end, style) { var start = i // Ensure there's a token end at the current position, and that i points at it while (at < end) { var i_end = st[i] if (i_end > end) { st.splice(i, 1, end, st[i+1], i_end) } i += 2 at = Math.min(end, i_end) } if (!style) { return } if (overlay.opaque) { st.splice(start, i - start, end, "overlay " + style) i = start + 2 } else { for (; start < i; start += 2) { var cur = st[start+1] st[start+1] = (cur ? cur + " " : "") + "overlay " + style } } }, lineClasses) }; for (var o = 0; o < cm.state.overlays.length; ++o) loop( o ); context.state = state return {styles: st, classes: lineClasses.bgClass || lineClasses.textClass ? lineClasses : null} } function getLineStyles(cm, line, updateFrontier) { if (!line.styles || line.styles[0] != cm.state.modeGen) { var context = getContextBefore(cm, lineNo(line)) var resetState = line.text.length > cm.options.maxHighlightLength && copyState(cm.doc.mode, context.state) var result = highlightLine(cm, line, context) if (resetState) { context.state = resetState } line.stateAfter = context.save(!resetState) line.styles = result.styles if (result.classes) { line.styleClasses = result.classes } else if (line.styleClasses) { line.styleClasses = null } if (updateFrontier === cm.doc.highlightFrontier) { cm.doc.modeFrontier = Math.max(cm.doc.modeFrontier, ++cm.doc.highlightFrontier) } } return line.styles } function getContextBefore(cm, n, precise) { var doc = cm.doc, display = cm.display if (!doc.mode.startState) { return new Context(doc, true, n) } var start = findStartLine(cm, n, precise) var saved = start > doc.first && getLine(doc, start - 1).stateAfter var context = saved ? Context.fromSaved(doc, saved, start) : new Context(doc, startState(doc.mode), start) doc.iter(start, n, function (line) { processLine(cm, line.text, context) var pos = context.line line.stateAfter = pos == n - 1 || pos % 5 == 0 || pos >= display.viewFrom && pos < display.viewTo ? context.save() : null context.nextLine() }) if (precise) { doc.modeFrontier = context.line } return context } // Lightweight form of highlight -- proceed over this line and // update state, but don't save a style array. Used for lines that // aren't currently visible. function processLine(cm, text, context, startAt) { var mode = cm.doc.mode var stream = new StringStream(text, cm.options.tabSize, context) stream.start = stream.pos = startAt || 0 if (text == "") { callBlankLine(mode, context.state) } while (!stream.eol()) { readToken(mode, stream, context.state) stream.start = stream.pos } } function callBlankLine(mode, state) { if (mode.blankLine) { return mode.blankLine(state) } if (!mode.innerMode) { return } var inner = innerMode(mode, state) if (inner.mode.blankLine) { return inner.mode.blankLine(inner.state) } } function readToken(mode, stream, state, inner) { for (var i = 0; i < 10; i++) { if (inner) { inner[0] = innerMode(mode, state).mode } var style = mode.token(stream, state) if (stream.pos > stream.start) { return style } } throw new Error("Mode " + mode.name + " failed to advance stream.") } var Token = function(stream, type, state) { this.start = stream.start; this.end = stream.pos this.string = stream.current() this.type = type || null this.state = state }; // Utility for getTokenAt and getLineTokens function takeToken(cm, pos, precise, asArray) { var doc = cm.doc, mode = doc.mode, style pos = clipPos(doc, pos) var line = getLine(doc, pos.line), context = getContextBefore(cm, pos.line, precise) var stream = new StringStream(line.text, cm.options.tabSize, context), tokens if (asArray) { tokens = [] } while ((asArray || stream.pos < pos.ch) && !stream.eol()) { stream.start = stream.pos style = readToken(mode, stream, context.state) if (asArray) { tokens.push(new Token(stream, style, copyState(doc.mode, context.state))) } } return asArray ? tokens : new Token(stream, style, context.state) } function extractLineClasses(type, output) { if (type) { for (;;) { var lineClass = type.match(/(?:^|\s+)line-(background-)?(\S+)/) if (!lineClass) { break } type = type.slice(0, lineClass.index) + type.slice(lineClass.index + lineClass[0].length) var prop = lineClass[1] ? "bgClass" : "textClass" if (output[prop] == null) { output[prop] = lineClass[2] } else if (!(new RegExp("(?:^|\s)" + lineClass[2] + "(?:$|\s)")).test(output[prop])) { output[prop] += " " + lineClass[2] } } } return type } // Run the given mode's parser over a line, calling f for each token. function runMode(cm, text, mode, context, f, lineClasses, forceToEnd) { var flattenSpans = mode.flattenSpans if (flattenSpans == null) { flattenSpans = cm.options.flattenSpans } var curStart = 0, curStyle = null var stream = new StringStream(text, cm.options.tabSize, context), style var inner = cm.options.addModeClass && [null] if (text == "") { extractLineClasses(callBlankLine(mode, context.state), lineClasses) } while (!stream.eol()) { if (stream.pos > cm.options.maxHighlightLength) { flattenSpans = false if (forceToEnd) { processLine(cm, text, context, stream.pos) } stream.pos = text.length style = null } else { style = extractLineClasses(readToken(mode, stream, context.state, inner), lineClasses) } if (inner) { var mName = inner[0].name if (mName) { style = "m-" + (style ? mName + " " + style : mName) } } if (!flattenSpans || curStyle != style) { while (curStart < stream.start) { curStart = Math.min(stream.start, curStart + 5000) f(curStart, curStyle) } curStyle = style } stream.start = stream.pos } while (curStart < stream.pos) { // Webkit seems to refuse to render text nodes longer than 57444 // characters, and returns inaccurate measurements in nodes // starting around 5000 chars. var pos = Math.min(stream.pos, curStart + 5000) f(pos, curStyle) curStart = pos } } // Finds the line to start with when starting a parse. Tries to // find a line with a stateAfter, so that it can start with a // valid state. If that fails, it returns the line with the // smallest indentation, which tends to need the least context to // parse correctly. function findStartLine(cm, n, precise) { var minindent, minline, doc = cm.doc var lim = precise ? -1 : n - (cm.doc.mode.innerMode ? 1000 : 100) for (var search = n; search > lim; --search) { if (search <= doc.first) { return doc.first } var line = getLine(doc, search - 1), after = line.stateAfter if (after && (!precise || search + (after instanceof SavedContext ? after.lookAhead : 0) <= doc.modeFrontier)) { return search } var indented = countColumn(line.text, null, cm.options.tabSize) if (minline == null || minindent > indented) { minline = search - 1 minindent = indented } } return minline } function retreatFrontier(doc, n) { doc.modeFrontier = Math.min(doc.modeFrontier, n) if (doc.highlightFrontier < n - 10) { return } var start = doc.first for (var line = n - 1; line > start; line--) { var saved = getLine(doc, line).stateAfter // change is on 3 // state on line 1 looked ahead 2 -- so saw 3 // test 1 + 2 < 3 should cover this if (saved && (!(saved instanceof SavedContext) || line + saved.lookAhead < n)) { start = line + 1 break } } doc.highlightFrontier = Math.min(doc.highlightFrontier, start) } // LINE DATA STRUCTURE // Line objects. These hold state related to a line, including // highlighting info (the styles array). var Line = function(text, markedSpans, estimateHeight) { this.text = text attachMarkedSpans(this, markedSpans) this.height = estimateHeight ? estimateHeight(this) : 1 }; Line.prototype.lineNo = function () { return lineNo(this) }; eventMixin(Line) // Change the content (text, markers) of a line. Automatically // invalidates cached information and tries to re-estimate the // line's height. function updateLine(line, text, markedSpans, estimateHeight) { line.text = text if (line.stateAfter) { line.stateAfter = null } if (line.styles) { line.styles = null } if (line.order != null) { line.order = null } detachMarkedSpans(line) attachMarkedSpans(line, markedSpans) var estHeight = estimateHeight ? estimateHeight(line) : 1 if (estHeight != line.height) { updateLineHeight(line, estHeight) } } // Detach a line from the document tree and its markers. function cleanUpLine(line) { line.parent = null detachMarkedSpans(line) } // Convert a style as returned by a mode (either null, or a string // containing one or more styles) to a CSS style. This is cached, // and also looks for line-wide styles. var styleToClassCache = {}; var styleToClassCacheWithMode = {}; function interpretTokenStyle(style, options) { if (!style || /^\s*$/.test(style)) { return null } var cache = options.addModeClass ? styleToClassCacheWithMode : styleToClassCache return cache[style] || (cache[style] = style.replace(/\S+/g, "cm-$&")) } // Render the DOM representation of the text of a line. Also builds // up a 'line map', which points at the DOM nodes that represent // specific stretches of text, and is used by the measuring code. // The returned object contains the DOM node, this map, and // information about line-wide styles that were set by the mode. function buildLineContent(cm, lineView) { // The padding-right forces the element to have a 'border', which // is needed on Webkit to be able to get line-level bounding // rectangles for it (in measureChar). var content = eltP("span", null, null, webkit ? "padding-right: .1px" : null) var builder = {pre: eltP("pre", [content], "CodeMirror-line"), content: content, col: 0, pos: 0, cm: cm, trailingSpace: false, splitSpaces: (ie || webkit) && cm.getOption("lineWrapping")} lineView.measure = {} // Iterate over the logical lines that make up this visual line. for (var i = 0; i <= (lineView.rest ? lineView.rest.length : 0); i++) { var line = i ? lineView.rest[i - 1] : lineView.line, order = (void 0) builder.pos = 0 builder.addToken = buildToken // Optionally wire in some hacks into the token-rendering // algorithm, to deal with browser quirks. if (hasBadBidiRects(cm.display.measure) && (order = getOrder(line, cm.doc.direction))) { builder.addToken = buildTokenBadBidi(builder.addToken, order) } builder.map = [] var allowFrontierUpdate = lineView != cm.display.externalMeasured && lineNo(line) insertLineContent(line, builder, getLineStyles(cm, line, allowFrontierUpdate)) if (line.styleClasses) { if (line.styleClasses.bgClass) { builder.bgClass = joinClasses(line.styleClasses.bgClass, builder.bgClass || "") } if (line.styleClasses.textClass) { builder.textClass = joinClasses(line.styleClasses.textClass, builder.textClass || "") } } // Ensure at least a single node is present, for measuring. if (builder.map.length == 0) { builder.map.push(0, 0, builder.content.appendChild(zeroWidthElement(cm.display.measure))) } // Store the map and a cache object for the current logical line if (i == 0) { lineView.measure.map = builder.map lineView.measure.cache = {} } else { ;(lineView.measure.maps || (lineView.measure.maps = [])).push(builder.map) ;(lineView.measure.caches || (lineView.measure.caches = [])).push({}) } } // See issue #2901 if (webkit) { var last = builder.content.lastChild if (/\bcm-tab\b/.test(last.className) || (last.querySelector && last.querySelector(".cm-tab"))) { builder.content.className = "cm-tab-wrap-hack" } } signal(cm, "renderLine", cm, lineView.line, builder.pre) if (builder.pre.className) { builder.textClass = joinClasses(builder.pre.className, builder.textClass || "") } return builder } function defaultSpecialCharPlaceholder(ch) { var token = elt("span", "\u2022", "cm-invalidchar") token.title = "\\u" + ch.charCodeAt(0).toString(16) token.setAttribute("aria-label", token.title) return token } // Build up the DOM representation for a single token, and add it to // the line map. Takes care to render special characters separately. function buildToken(builder, text, style, startStyle, endStyle, title, css) { if (!text) { return } var displayText = builder.splitSpaces ? splitSpaces(text, builder.trailingSpace) : text var special = builder.cm.state.specialChars, mustWrap = false var content if (!special.test(text)) { builder.col += text.length content = document.createTextNode(displayText) builder.map.push(builder.pos, builder.pos + text.length, content) if (ie && ie_version < 9) { mustWrap = true } builder.pos += text.length } else { content = document.createDocumentFragment() var pos = 0 while (true) { special.lastIndex = pos var m = special.exec(text) var skipped = m ? m.index - pos : text.length - pos if (skipped) { var txt = document.createTextNode(displayText.slice(pos, pos + skipped)) if (ie && ie_version < 9) { content.appendChild(elt("span", [txt])) } else { content.appendChild(txt) } builder.map.push(builder.pos, builder.pos + skipped, txt) builder.col += skipped builder.pos += skipped } if (!m) { break } pos += skipped + 1 var txt$1 = (void 0) if (m[0] == "\t") { var tabSize = builder.cm.options.tabSize, tabWidth = tabSize - builder.col % tabSize txt$1 = content.appendChild(elt("span", spaceStr(tabWidth), "cm-tab")) txt$1.setAttribute("role", "presentation") txt$1.setAttribute("cm-text", "\t") builder.col += tabWidth } else if (m[0] == "\r" || m[0] == "\n") { txt$1 = content.appendChild(elt("span", m[0] == "\r" ? "\u240d" : "\u2424", "cm-invalidchar")) txt$1.setAttribute("cm-text", m[0]) builder.col += 1 } else { txt$1 = builder.cm.options.specialCharPlaceholder(m[0]) txt$1.setAttribute("cm-text", m[0]) if (ie && ie_version < 9) { content.appendChild(elt("span", [txt$1])) } else { content.appendChild(txt$1) } builder.col += 1 } builder.map.push(builder.pos, builder.pos + 1, txt$1) builder.pos++ } } builder.trailingSpace = displayText.charCodeAt(text.length - 1) == 32 if (style || startStyle || endStyle || mustWrap || css) { var fullStyle = style || "" if (startStyle) { fullStyle += startStyle } if (endStyle) { fullStyle += endStyle } var token = elt("span", [content], fullStyle, css) if (title) { token.title = title } return builder.content.appendChild(token) } builder.content.appendChild(content) } function splitSpaces(text, trailingBefore) { if (text.length > 1 && !/ /.test(text)) { return text } var spaceBefore = trailingBefore, result = "" for (var i = 0; i < text.length; i++) { var ch = text.charAt(i) if (ch == " " && spaceBefore && (i == text.length - 1 || text.charCodeAt(i + 1) == 32)) { ch = "\u00a0" } result += ch spaceBefore = ch == " " } return result } // Work around nonsense dimensions being reported for stretches of // right-to-left text. function buildTokenBadBidi(inner, order) { return function (builder, text, style, startStyle, endStyle, title, css) { style = style ? style + " cm-force-border" : "cm-force-border" var start = builder.pos, end = start + text.length for (;;) { // Find the part that overlaps with the start of this text var part = (void 0) for (var i = 0; i < order.length; i++) { part = order[i] if (part.to > start && part.from <= start) { break } } if (part.to >= end) { return inner(builder, text, style, startStyle, endStyle, title, css) } inner(builder, text.slice(0, part.to - start), style, startStyle, null, title, css) startStyle = null text = text.slice(part.to - start) start = part.to } } } function buildCollapsedSpan(builder, size, marker, ignoreWidget) { var widget = !ignoreWidget && marker.widgetNode if (widget) { builder.map.push(builder.pos, builder.pos + size, widget) } if (!ignoreWidget && builder.cm.display.input.needsContentAttribute) { if (!widget) { widget = builder.content.appendChild(document.createElement("span")) } widget.setAttribute("cm-marker", marker.id) } if (widget) { builder.cm.display.input.setUneditable(widget) builder.content.appendChild(widget) } builder.pos += size builder.trailingSpace = false } // Outputs a number of spans to make up a line, taking highlighting // and marked text into account. function insertLineContent(line, builder, styles) { var spans = line.markedSpans, allText = line.text, at = 0 if (!spans) { for (var i$1 = 1; i$1 < styles.length; i$1+=2) { builder.addToken(builder, allText.slice(at, at = styles[i$1]), interpretTokenStyle(styles[i$1+1], builder.cm.options)) } return } var len = allText.length, pos = 0, i = 1, text = "", style, css var nextChange = 0, spanStyle, spanEndStyle, spanStartStyle, title, collapsed for (;;) { if (nextChange == pos) { // Update current marker set spanStyle = spanEndStyle = spanStartStyle = title = css = "" collapsed = null; nextChange = Infinity var foundBookmarks = [], endStyles = (void 0) for (var j = 0; j < spans.length; ++j) { var sp = spans[j], m = sp.marker if (m.type == "bookmark" && sp.from == pos && m.widgetNode) { foundBookmarks.push(m) } else if (sp.from <= pos && (sp.to == null || sp.to > pos || m.collapsed && sp.to == pos && sp.from == pos)) { if (sp.to != null && sp.to != pos && nextChange > sp.to) { nextChange = sp.to spanEndStyle = "" } if (m.className) { spanStyle += " " + m.className } if (m.css) { css = (css ? css + ";" : "") + m.css } if (m.startStyle && sp.from == pos) { spanStartStyle += " " + m.startStyle } if (m.endStyle && sp.to == nextChange) { (endStyles || (endStyles = [])).push(m.endStyle, sp.to) } if (m.title && !title) { title = m.title } if (m.collapsed && (!collapsed || compareCollapsedMarkers(collapsed.marker, m) < 0)) { collapsed = sp } } else if (sp.from > pos && nextChange > sp.from) { nextChange = sp.from } } if (endStyles) { for (var j$1 = 0; j$1 < endStyles.length; j$1 += 2) { if (endStyles[j$1 + 1] == nextChange) { spanEndStyle += " " + endStyles[j$1] } } } if (!collapsed || collapsed.from == pos) { for (var j$2 = 0; j$2 < foundBookmarks.length; ++j$2) { buildCollapsedSpan(builder, 0, foundBookmarks[j$2]) } } if (collapsed && (collapsed.from || 0) == pos) { buildCollapsedSpan(builder, (collapsed.to == null ? len + 1 : collapsed.to) - pos, collapsed.marker, collapsed.from == null) if (collapsed.to == null) { return } if (collapsed.to == pos) { collapsed = false } } } if (pos >= len) { break } var upto = Math.min(len, nextChange) while (true) { if (text) { var end = pos + text.length if (!collapsed) { var tokenText = end > upto ? text.slice(0, upto - pos) : text builder.addToken(builder, tokenText, style ? style + spanStyle : spanStyle, spanStartStyle, pos + tokenText.length == nextChange ? spanEndStyle : "", title, css) } if (end >= upto) {text = text.slice(upto - pos); pos = upto; break} pos = end spanStartStyle = "" } text = allText.slice(at, at = styles[i++]) style = interpretTokenStyle(styles[i++], builder.cm.options) } } } // These objects are used to represent the visible (currently drawn) // part of the document. A LineView may correspond to multiple // logical lines, if those are connected by collapsed ranges. function LineView(doc, line, lineN) { // The starting line this.line = line // Continuing lines, if any this.rest = visualLineContinued(line) // Number of logical lines in this visual line this.size = this.rest ? lineNo(lst(this.rest)) - lineN + 1 : 1 this.node = this.text = null this.hidden = lineIsHidden(doc, line) } // Create a range of LineView objects for the given lines. function buildViewArray(cm, from, to) { var array = [], nextPos for (var pos = from; pos < to; pos = nextPos) { var view = new LineView(cm.doc, getLine(cm.doc, pos), pos) nextPos = pos + view.size array.push(view) } return array } var operationGroup = null function pushOperation(op) { if (operationGroup) { operationGroup.ops.push(op) } else { op.ownsGroup = operationGroup = { ops: [op], delayedCallbacks: [] } } } function fireCallbacksForOps(group) { // Calls delayed callbacks and cursorActivity handlers until no // new ones appear var callbacks = group.delayedCallbacks, i = 0 do { for (; i < callbacks.length; i++) { callbacks[i].call(null) } for (var j = 0; j < group.ops.length; j++) { var op = group.ops[j] if (op.cursorActivityHandlers) { while (op.cursorActivityCalled < op.cursorActivityHandlers.length) { op.cursorActivityHandlers[op.cursorActivityCalled++].call(null, op.cm) } } } } while (i < callbacks.length) } function finishOperation(op, endCb) { var group = op.ownsGroup if (!group) { return } try { fireCallbacksForOps(group) } finally { operationGroup = null endCb(group) } } var orphanDelayedCallbacks = null // Often, we want to signal events at a point where we are in the // middle of some work, but don't want the handler to start calling // other methods on the editor, which might be in an inconsistent // state or simply not expect any other events to happen. // signalLater looks whether there are any handlers, and schedules // them to be executed when the last operation ends, or, if no // operation is active, when a timeout fires. function signalLater(emitter, type /*, values...*/) { var arr = getHandlers(emitter, type) if (!arr.length) { return } var args = Array.prototype.slice.call(arguments, 2), list if (operationGroup) { list = operationGroup.delayedCallbacks } else if (orphanDelayedCallbacks) { list = orphanDelayedCallbacks } else { list = orphanDelayedCallbacks = [] setTimeout(fireOrphanDelayed, 0) } var loop = function ( i ) { list.push(function () { return arr[i].apply(null, args); }) }; for (var i = 0; i < arr.length; ++i) loop( i ); } function fireOrphanDelayed() { var delayed = orphanDelayedCallbacks orphanDelayedCallbacks = null for (var i = 0; i < delayed.length; ++i) { delayed[i]() } } // When an aspect of a line changes, a string is added to // lineView.changes. This updates the relevant part of the line's // DOM structure. function updateLineForChanges(cm, lineView, lineN, dims) { for (var j = 0; j < lineView.changes.length; j++) { var type = lineView.changes[j] if (type == "text") { updateLineText(cm, lineView) } else if (type == "gutter") { updateLineGutter(cm, lineView, lineN, dims) } else if (type == "class") { updateLineClasses(cm, lineView) } else if (type == "widget") { updateLineWidgets(cm, lineView, dims) } } lineView.changes = null } // Lines with gutter elements, widgets or a background class need to // be wrapped, and have the extra elements added to the wrapper div function ensureLineWrapped(lineView) { if (lineView.node == lineView.text) { lineView.node = elt("div", null, null, "position: relative") if (lineView.text.parentNode) { lineView.text.parentNode.replaceChild(lineView.node, lineView.text) } lineView.node.appendChild(lineView.text) if (ie && ie_version < 8) { lineView.node.style.zIndex = 2 } } return lineView.node } function updateLineBackground(cm, lineView) { var cls = lineView.bgClass ? lineView.bgClass + " " + (lineView.line.bgClass || "") : lineView.line.bgClass if (cls) { cls += " CodeMirror-linebackground" } if (lineView.background) { if (cls) { lineView.background.className = cls } else { lineView.background.parentNode.removeChild(lineView.background); lineView.background = null } } else if (cls) { var wrap = ensureLineWrapped(lineView) lineView.background = wrap.insertBefore(elt("div", null, cls), wrap.firstChild) cm.display.input.setUneditable(lineView.background) } } // Wrapper around buildLineContent which will reuse the structure // in display.externalMeasured when possible. function getLineContent(cm, lineView) { var ext = cm.display.externalMeasured if (ext && ext.line == lineView.line) { cm.display.externalMeasured = null lineView.measure = ext.measure return ext.built } return buildLineContent(cm, lineView) } // Redraw the line's text. Interacts with the background and text // classes because the mode may output tokens that influence these // classes. function updateLineText(cm, lineView) { var cls = lineView.text.className var built = getLineContent(cm, lineView) if (lineView.text == lineView.node) { lineView.node = built.pre } lineView.text.parentNode.replaceChild(built.pre, lineView.text) lineView.text = built.pre if (built.bgClass != lineView.bgClass || built.textClass != lineView.textClass) { lineView.bgClass = built.bgClass lineView.textClass = built.textClass updateLineClasses(cm, lineView) } else if (cls) { lineView.text.className = cls } } function updateLineClasses(cm, lineView) { updateLineBackground(cm, lineView) if (lineView.line.wrapClass) { ensureLineWrapped(lineView).className = lineView.line.wrapClass } else if (lineView.node != lineView.text) { lineView.node.className = "" } var textClass = lineView.textClass ? lineView.textClass + " " + (lineView.line.textClass || "") : lineView.line.textClass lineView.text.className = textClass || "" } function updateLineGutter(cm, lineView, lineN, dims) { if (lineView.gutter) { lineView.node.removeChild(lineView.gutter) lineView.gutter = null } if (lineView.gutterBackground) { lineView.node.removeChild(lineView.gutterBackground) lineView.gutterBackground = null } if (lineView.line.gutterClass) { var wrap = ensureLineWrapped(lineView) lineView.gutterBackground = elt("div", null, "CodeMirror-gutter-background " + lineView.line.gutterClass, ("left: " + (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + "px; width: " + (dims.gutterTotalWidth) + "px")) cm.display.input.setUneditable(lineView.gutterBackground) wrap.insertBefore(lineView.gutterBackground, lineView.text) } var markers = lineView.line.gutterMarkers if (cm.options.lineNumbers || markers) { var wrap$1 = ensureLineWrapped(lineView) var gutterWrap = lineView.gutter = elt("div", null, "CodeMirror-gutter-wrapper", ("left: " + (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + "px")) cm.display.input.setUneditable(gutterWrap) wrap$1.insertBefore(gutterWrap, lineView.text) if (lineView.line.gutterClass) { gutterWrap.className += " " + lineView.line.gutterClass } if (cm.options.lineNumbers && (!markers || !markers["CodeMirror-linenumbers"])) { lineView.lineNumber = gutterWrap.appendChild( elt("div", lineNumberFor(cm.options, lineN), "CodeMirror-linenumber CodeMirror-gutter-elt", ("left: " + (dims.gutterLeft["CodeMirror-linenumbers"]) + "px; width: " + (cm.display.lineNumInnerWidth) + "px"))) } if (markers) { for (var k = 0; k < cm.options.gutters.length; ++k) { var id = cm.options.gutters[k], found = markers.hasOwnProperty(id) && markers[id] if (found) { gutterWrap.appendChild(elt("div", [found], "CodeMirror-gutter-elt", ("left: " + (dims.gutterLeft[id]) + "px; width: " + (dims.gutterWidth[id]) + "px"))) } } } } } function updateLineWidgets(cm, lineView, dims) { if (lineView.alignable) { lineView.alignable = null } for (var node = lineView.node.firstChild, next = (void 0); node; node = next) { next = node.nextSibling if (node.className == "CodeMirror-linewidget") { lineView.node.removeChild(node) } } insertLineWidgets(cm, lineView, dims) } // Build a line's DOM representation from scratch function buildLineElement(cm, lineView, lineN, dims) { var built = getLineContent(cm, lineView) lineView.text = lineView.node = built.pre if (built.bgClass) { lineView.bgClass = built.bgClass } if (built.textClass) { lineView.textClass = built.textClass } updateLineClasses(cm, lineView) updateLineGutter(cm, lineView, lineN, dims) insertLineWidgets(cm, lineView, dims) return lineView.node } // A lineView may contain multiple logical lines (when merged by // collapsed spans). The widgets for all of them need to be drawn. function insertLineWidgets(cm, lineView, dims) { insertLineWidgetsFor(cm, lineView.line, lineView, dims, true) if (lineView.rest) { for (var i = 0; i < lineView.rest.length; i++) { insertLineWidgetsFor(cm, lineView.rest[i], lineView, dims, false) } } } function insertLineWidgetsFor(cm, line, lineView, dims, allowAbove) { if (!line.widgets) { return } var wrap = ensureLineWrapped(lineView) for (var i = 0, ws = line.widgets; i < ws.length; ++i) { var widget = ws[i], node = elt("div", [widget.node], "CodeMirror-linewidget") if (!widget.handleMouseEvents) { node.setAttribute("cm-ignore-events", "true") } positionLineWidget(widget, node, lineView, dims) cm.display.input.setUneditable(node) if (allowAbove && widget.above) { wrap.insertBefore(node, lineView.gutter || lineView.text) } else { wrap.appendChild(node) } signalLater(widget, "redraw") } } function positionLineWidget(widget, node, lineView, dims) { if (widget.noHScroll) { ;(lineView.alignable || (lineView.alignable = [])).push(node) var width = dims.wrapperWidth node.style.left = dims.fixedPos + "px" if (!widget.coverGutter) { width -= dims.gutterTotalWidth node.style.paddingLeft = dims.gutterTotalWidth + "px" } node.style.width = width + "px" } if (widget.coverGutter) { node.style.zIndex = 5 node.style.position = "relative" if (!widget.noHScroll) { node.style.marginLeft = -dims.gutterTotalWidth + "px" } } } function widgetHeight(widget) { if (widget.height != null) { return widget.height } var cm = widget.doc.cm if (!cm) { return 0 } if (!contains(document.body, widget.node)) { var parentStyle = "position: relative;" if (widget.coverGutter) { parentStyle += "margin-left: -" + cm.display.gutters.offsetWidth + "px;" } if (widget.noHScroll) { parentStyle += "width: " + cm.display.wrapper.clientWidth + "px;" } removeChildrenAndAdd(cm.display.measure, elt("div", [widget.node], null, parentStyle)) } return widget.height = widget.node.parentNode.offsetHeight } // Return true when the given mouse event happened in a widget function eventInWidget(display, e) { for (var n = e_target(e); n != display.wrapper; n = n.parentNode) { if (!n || (n.nodeType == 1 && n.getAttribute("cm-ignore-events") == "true") || (n.parentNode == display.sizer && n != display.mover)) { return true } } } // POSITION MEASUREMENT function paddingTop(display) {return display.lineSpace.offsetTop} function paddingVert(display) {return display.mover.offsetHeight - display.lineSpace.offsetHeight} function paddingH(display) { if (display.cachedPaddingH) { return display.cachedPaddingH } var e = removeChildrenAndAdd(display.measure, elt("pre", "x")) var style = window.getComputedStyle ? window.getComputedStyle(e) : e.currentStyle var data = {left: parseInt(style.paddingLeft), right: parseInt(style.paddingRight)} if (!isNaN(data.left) && !isNaN(data.right)) { display.cachedPaddingH = data } return data } function scrollGap(cm) { return scrollerGap - cm.display.nativeBarWidth } function displayWidth(cm) { return cm.display.scroller.clientWidth - scrollGap(cm) - cm.display.barWidth } function displayHeight(cm) { return cm.display.scroller.clientHeight - scrollGap(cm) - cm.display.barHeight } // Ensure the lineView.wrapping.heights array is populated. This is // an array of bottom offsets for the lines that make up a drawn // line. When lineWrapping is on, there might be more than one // height. function ensureLineHeights(cm, lineView, rect) { var wrapping = cm.options.lineWrapping var curWidth = wrapping && displayWidth(cm) if (!lineView.measure.heights || wrapping && lineView.measure.width != curWidth) { var heights = lineView.measure.heights = [] if (wrapping) { lineView.measure.width = curWidth var rects = lineView.text.firstChild.getClientRects() for (var i = 0; i < rects.length - 1; i++) { var cur = rects[i], next = rects[i + 1] if (Math.abs(cur.bottom - next.bottom) > 2) { heights.push((cur.bottom + next.top) / 2 - rect.top) } } } heights.push(rect.bottom - rect.top) } } // Find a line map (mapping character offsets to text nodes) and a // measurement cache for the given line number. (A line view might // contain multiple lines when collapsed ranges are present.) function mapFromLineView(lineView, line, lineN) { if (lineView.line == line) { return {map: lineView.measure.map, cache: lineView.measure.cache} } for (var i = 0; i < lineView.rest.length; i++) { if (lineView.rest[i] == line) { return {map: lineView.measure.maps[i], cache: lineView.measure.caches[i]} } } for (var i$1 = 0; i$1 < lineView.rest.length; i$1++) { if (lineNo(lineView.rest[i$1]) > lineN) { return {map: lineView.measure.maps[i$1], cache: lineView.measure.caches[i$1], before: true} } } } // Render a line into the hidden node display.externalMeasured. Used // when measurement is needed for a line that's not in the viewport. function updateExternalMeasurement(cm, line) { line = visualLine(line) var lineN = lineNo(line) var view = cm.display.externalMeasured = new LineView(cm.doc, line, lineN) view.lineN = lineN var built = view.built = buildLineContent(cm, view) view.text = built.pre removeChildrenAndAdd(cm.display.lineMeasure, built.pre) return view } // Get a {top, bottom, left, right} box (in line-local coordinates) // for a given character. function measureChar(cm, line, ch, bias) { return measureCharPrepared(cm, prepareMeasureForLine(cm, line), ch, bias) } // Find a line view that corresponds to the given line number. function findViewForLine(cm, lineN) { if (lineN >= cm.display.viewFrom && lineN < cm.display.viewTo) { return cm.display.view[findViewIndex(cm, lineN)] } var ext = cm.display.externalMeasured if (ext && lineN >= ext.lineN && lineN < ext.lineN + ext.size) { return ext } } // Measurement can be split in two steps, the set-up work that // applies to the whole line, and the measurement of the actual // character. Functions like coordsChar, that need to do a lot of // measurements in a row, can thus ensure that the set-up work is // only done once. function prepareMeasureForLine(cm, line) { var lineN = lineNo(line) var view = findViewForLine(cm, lineN) if (view && !view.text) { view = null } else if (view && view.changes) { updateLineForChanges(cm, view, lineN, getDimensions(cm)) cm.curOp.forceUpdate = true } if (!view) { view = updateExternalMeasurement(cm, line) } var info = mapFromLineView(view, line, lineN) return { line: line, view: view, rect: null, map: info.map, cache: info.cache, before: info.before, hasHeights: false } } // Given a prepared measurement object, measures the position of an // actual character (or fetches it from the cache). function measureCharPrepared(cm, prepared, ch, bias, varHeight) { if (prepared.before) { ch = -1 } var key = ch + (bias || ""), found if (prepared.cache.hasOwnProperty(key)) { found = prepared.cache[key] } else { if (!prepared.rect) { prepared.rect = prepared.view.text.getBoundingClientRect() } if (!prepared.hasHeights) { ensureLineHeights(cm, prepared.view, prepared.rect) prepared.hasHeights = true } found = measureCharInner(cm, prepared, ch, bias) if (!found.bogus) { prepared.cache[key] = found } } return {left: found.left, right: found.right, top: varHeight ? found.rtop : found.top, bottom: varHeight ? found.rbottom : found.bottom} } var nullRect = {left: 0, right: 0, top: 0, bottom: 0} function nodeAndOffsetInLineMap(map, ch, bias) { var node, start, end, collapse, mStart, mEnd // First, search the line map for the text node corresponding to, // or closest to, the target character. for (var i = 0; i < map.length; i += 3) { mStart = map[i] mEnd = map[i + 1] if (ch < mStart) { start = 0; end = 1 collapse = "left" } else if (ch < mEnd) { start = ch - mStart end = start + 1 } else if (i == map.length - 3 || ch == mEnd && map[i + 3] > ch) { end = mEnd - mStart start = end - 1 if (ch >= mEnd) { collapse = "right" } } if (start != null) { node = map[i + 2] if (mStart == mEnd && bias == (node.insertLeft ? "left" : "right")) { collapse = bias } if (bias == "left" && start == 0) { while (i && map[i - 2] == map[i - 3] && map[i - 1].insertLeft) { node = map[(i -= 3) + 2] collapse = "left" } } if (bias == "right" && start == mEnd - mStart) { while (i < map.length - 3 && map[i + 3] == map[i + 4] && !map[i + 5].insertLeft) { node = map[(i += 3) + 2] collapse = "right" } } break } } return {node: node, start: start, end: end, collapse: collapse, coverStart: mStart, coverEnd: mEnd} } function getUsefulRect(rects, bias) { var rect = nullRect if (bias == "left") { for (var i = 0; i < rects.length; i++) { if ((rect = rects[i]).left != rect.right) { break } } } else { for (var i$1 = rects.length - 1; i$1 >= 0; i$1--) { if ((rect = rects[i$1]).left != rect.right) { break } } } return rect } function measureCharInner(cm, prepared, ch, bias) { var place = nodeAndOffsetInLineMap(prepared.map, ch, bias) var node = place.node, start = place.start, end = place.end, collapse = place.collapse var rect if (node.nodeType == 3) { // If it is a text node, use a range to retrieve the coordinates. for (var i$1 = 0; i$1 < 4; i$1++) { // Retry a maximum of 4 times when nonsense rectangles are returned while (start && isExtendingChar(prepared.line.text.charAt(place.coverStart + start))) { --start } while (place.coverStart + end < place.coverEnd && isExtendingChar(prepared.line.text.charAt(place.coverStart + end))) { ++end } if (ie && ie_version < 9 && start == 0 && end == place.coverEnd - place.coverStart) { rect = node.parentNode.getBoundingClientRect() } else { rect = getUsefulRect(range(node, start, end).getClientRects(), bias) } if (rect.left || rect.right || start == 0) { break } end = start start = start - 1 collapse = "right" } if (ie && ie_version < 11) { rect = maybeUpdateRectForZooming(cm.display.measure, rect) } } else { // If it is a widget, simply get the box for the whole widget. if (start > 0) { collapse = bias = "right" } var rects if (cm.options.lineWrapping && (rects = node.getClientRects()).length > 1) { rect = rects[bias == "right" ? rects.length - 1 : 0] } else { rect = node.getBoundingClientRect() } } if (ie && ie_version < 9 && !start && (!rect || !rect.left && !rect.right)) { var rSpan = node.parentNode.getClientRects()[0] if (rSpan) { rect = {left: rSpan.left, right: rSpan.left + charWidth(cm.display), top: rSpan.top, bottom: rSpan.bottom} } else { rect = nullRect } } var rtop = rect.top - prepared.rect.top, rbot = rect.bottom - prepared.rect.top var mid = (rtop + rbot) / 2 var heights = prepared.view.measure.heights var i = 0 for (; i < heights.length - 1; i++) { if (mid < heights[i]) { break } } var top = i ? heights[i - 1] : 0, bot = heights[i] var result = {left: (collapse == "right" ? rect.right : rect.left) - prepared.rect.left, right: (collapse == "left" ? rect.left : rect.right) - prepared.rect.left, top: top, bottom: bot} if (!rect.left && !rect.right) { result.bogus = true } if (!cm.options.singleCursorHeightPerLine) { result.rtop = rtop; result.rbottom = rbot } return result } // Work around problem with bounding client rects on ranges being // returned incorrectly when zoomed on IE10 and below. function maybeUpdateRectForZooming(measure, rect) { if (!window.screen || screen.logicalXDPI == null || screen.logicalXDPI == screen.deviceXDPI || !hasBadZoomedRects(measure)) { return rect } var scaleX = screen.logicalXDPI / screen.deviceXDPI var scaleY = screen.logicalYDPI / screen.deviceYDPI return {left: rect.left * scaleX, right: rect.right * scaleX, top: rect.top * scaleY, bottom: rect.bottom * scaleY} } function clearLineMeasurementCacheFor(lineView) { if (lineView.measure) { lineView.measure.cache = {} lineView.measure.heights = null if (lineView.rest) { for (var i = 0; i < lineView.rest.length; i++) { lineView.measure.caches[i] = {} } } } } function clearLineMeasurementCache(cm) { cm.display.externalMeasure = null removeChildren(cm.display.lineMeasure) for (var i = 0; i < cm.display.view.length; i++) { clearLineMeasurementCacheFor(cm.display.view[i]) } } function clearCaches(cm) { clearLineMeasurementCache(cm) cm.display.cachedCharWidth = cm.display.cachedTextHeight = cm.display.cachedPaddingH = null if (!cm.options.lineWrapping) { cm.display.maxLineChanged = true } cm.display.lineNumChars = null } function pageScrollX() { // Work around https://bugs.chromium.org/p/chromium/issues/detail?id=489206 // which causes page_Offset and bounding client rects to use // different reference viewports and invalidate our calculations. if (chrome && android) { return -(document.body.getBoundingClientRect().left - parseInt(getComputedStyle(document.body).marginLeft)) } return window.pageXOffset || (document.documentElement || document.body).scrollLeft } function pageScrollY() { if (chrome && android) { return -(document.body.getBoundingClientRect().top - parseInt(getComputedStyle(document.body).marginTop)) } return window.pageYOffset || (document.documentElement || document.body).scrollTop } function widgetTopHeight(lineObj) { var height = 0 if (lineObj.widgets) { for (var i = 0; i < lineObj.widgets.length; ++i) { if (lineObj.widgets[i].above) { height += widgetHeight(lineObj.widgets[i]) } } } return height } // Converts a {top, bottom, left, right} box from line-local // coordinates into another coordinate system. Context may be one of // "line", "div" (display.lineDiv), "local"./null (editor), "window", // or "page". function intoCoordSystem(cm, lineObj, rect, context, includeWidgets) { if (!includeWidgets) { var height = widgetTopHeight(lineObj) rect.top += height; rect.bottom += height } if (context == "line") { return rect } if (!context) { context = "local" } var yOff = heightAtLine(lineObj) if (context == "local") { yOff += paddingTop(cm.display) } else { yOff -= cm.display.viewOffset } if (context == "page" || context == "window") { var lOff = cm.display.lineSpace.getBoundingClientRect() yOff += lOff.top + (context == "window" ? 0 : pageScrollY()) var xOff = lOff.left + (context == "window" ? 0 : pageScrollX()) rect.left += xOff; rect.right += xOff } rect.top += yOff; rect.bottom += yOff return rect } // Coverts a box from "div" coords to another coordinate system. // Context may be "window", "page", "div", or "local"./null. function fromCoordSystem(cm, coords, context) { if (context == "div") { return coords } var left = coords.left, top = coords.top // First move into "page" coordinate system if (context == "page") { left -= pageScrollX() top -= pageScrollY() } else if (context == "local" || !context) { var localBox = cm.display.sizer.getBoundingClientRect() left += localBox.left top += localBox.top } var lineSpaceBox = cm.display.lineSpace.getBoundingClientRect() return {left: left - lineSpaceBox.left, top: top - lineSpaceBox.top} } function charCoords(cm, pos, context, lineObj, bias) { if (!lineObj) { lineObj = getLine(cm.doc, pos.line) } return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, bias), context) } // Returns a box for a given cursor position, which may have an // 'other' property containing the position of the secondary cursor // on a bidi boundary. // A cursor Pos(line, char, "before") is on the same visual line as `char - 1` // and after `char - 1` in writing order of `char - 1` // A cursor Pos(line, char, "after") is on the same visual line as `char` // and before `char` in writing order of `char` // Examples (upper-case letters are RTL, lower-case are LTR): // Pos(0, 1, ...) // before after // ab a|b a|b // aB a|B aB| // Ab |Ab A|b // AB B|A B|A // Every position after the last character on a line is considered to stick // to the last character on the line. function cursorCoords(cm, pos, context, lineObj, preparedMeasure, varHeight) { lineObj = lineObj || getLine(cm.doc, pos.line) if (!preparedMeasure) { preparedMeasure = prepareMeasureForLine(cm, lineObj) } function get(ch, right) { var m = measureCharPrepared(cm, preparedMeasure, ch, right ? "right" : "left", varHeight) if (right) { m.left = m.right; } else { m.right = m.left } return intoCoordSystem(cm, lineObj, m, context) } var order = getOrder(lineObj, cm.doc.direction), ch = pos.ch, sticky = pos.sticky if (ch >= lineObj.text.length) { ch = lineObj.text.length sticky = "before" } else if (ch <= 0) { ch = 0 sticky = "after" } if (!order) { return get(sticky == "before" ? ch - 1 : ch, sticky == "before") } function getBidi(ch, partPos, invert) { var part = order[partPos], right = part.level == 1 return get(invert ? ch - 1 : ch, right != invert) } var partPos = getBidiPartAt(order, ch, sticky) var other = bidiOther var val = getBidi(ch, partPos, sticky == "before") if (other != null) { val.other = getBidi(ch, other, sticky != "before") } return val } // Used to cheaply estimate the coordinates for a position. Used for // intermediate scroll updates. function estimateCoords(cm, pos) { var left = 0 pos = clipPos(cm.doc, pos) if (!cm.options.lineWrapping) { left = charWidth(cm.display) * pos.ch } var lineObj = getLine(cm.doc, pos.line) var top = heightAtLine(lineObj) + paddingTop(cm.display) return {left: left, right: left, top: top, bottom: top + lineObj.height} } // Positions returned by coordsChar contain some extra information. // xRel is the relative x position of the input coordinates compared // to the found position (so xRel > 0 means the coordinates are to // the right of the character position, for example). When outside // is true, that means the coordinates lie outside the line's // vertical range. function PosWithInfo(line, ch, sticky, outside, xRel) { var pos = Pos(line, ch, sticky) pos.xRel = xRel if (outside) { pos.outside = true } return pos } // Compute the character position closest to the given coordinates. // Input must be lineSpace-local ("div" coordinate system). function coordsChar(cm, x, y) { var doc = cm.doc y += cm.display.viewOffset if (y < 0) { return PosWithInfo(doc.first, 0, null, true, -1) } var lineN = lineAtHeight(doc, y), last = doc.first + doc.size - 1 if (lineN > last) { return PosWithInfo(doc.first + doc.size - 1, getLine(doc, last).text.length, null, true, 1) } if (x < 0) { x = 0 } var lineObj = getLine(doc, lineN) for (;;) { var found = coordsCharInner(cm, lineObj, lineN, x, y) var merged = collapsedSpanAtEnd(lineObj) var mergedPos = merged && merged.find(0, true) if (merged && (found.ch > mergedPos.from.ch || found.ch == mergedPos.from.ch && found.xRel > 0)) { lineN = lineNo(lineObj = mergedPos.to.line) } else { return found } } } function wrappedLineExtent(cm, lineObj, preparedMeasure, y) { y -= widgetTopHeight(lineObj) var end = lineObj.text.length var begin = findFirst(function (ch) { return measureCharPrepared(cm, preparedMeasure, ch - 1).bottom <= y; }, end, 0) end = findFirst(function (ch) { return measureCharPrepared(cm, preparedMeasure, ch).top > y; }, begin, end) return {begin: begin, end: end} } function wrappedLineExtentChar(cm, lineObj, preparedMeasure, target) { if (!preparedMeasure) { preparedMeasure = prepareMeasureForLine(cm, lineObj) } var targetTop = intoCoordSystem(cm, lineObj, measureCharPrepared(cm, preparedMeasure, target), "line").top return wrappedLineExtent(cm, lineObj, preparedMeasure, targetTop) } // Returns true if the given side of a box is after the given // coordinates, in top-to-bottom, left-to-right order. function boxIsAfter(box, x, y, left) { return box.bottom <= y ? false : box.top > y ? true : (left ? box.left : box.right) > x } function coordsCharInner(cm, lineObj, lineNo, x, y) { // Move y into line-local coordinate space y -= heightAtLine(lineObj) var preparedMeasure = prepareMeasureForLine(cm, lineObj) // When directly calling `measureCharPrepared`, we have to adjust // for the widgets at this line. var widgetHeight = widgetTopHeight(lineObj) var begin = 0, end = lineObj.text.length, ltr = true var order = getOrder(lineObj, cm.doc.direction) // If the line isn't plain left-to-right text, first figure out // which bidi section the coordinates fall into. if (order) { var part = (cm.options.lineWrapping ? coordsBidiPartWrapped : coordsBidiPart) (cm, lineObj, lineNo, preparedMeasure, order, x, y) ltr = part.level != 1 // The awkward -1 offsets are needed because findFirst (called // on these below) will treat its first bound as inclusive, // second as exclusive, but we want to actually address the // characters in the part's range begin = ltr ? part.from : part.to - 1 end = ltr ? part.to : part.from - 1 } // A binary search to find the first character whose bounding box // starts after the coordinates. If we run across any whose box wrap // the coordinates, store that. var chAround = null, boxAround = null var ch = findFirst(function (ch) { var box = measureCharPrepared(cm, preparedMeasure, ch) box.top += widgetHeight; box.bottom += widgetHeight if (!boxIsAfter(box, x, y, false)) { return false } if (box.top <= y && box.left <= x) { chAround = ch boxAround = box } return true }, begin, end) var baseX, sticky, outside = false // If a box around the coordinates was found, use that if (boxAround) { // Distinguish coordinates nearer to the left or right side of the box var atLeft = x - boxAround.left < boxAround.right - x, atStart = atLeft == ltr ch = chAround + (atStart ? 0 : 1) sticky = atStart ? "after" : "before" baseX = atLeft ? boxAround.left : boxAround.right } else { // (Adjust for extended bound, if necessary.) if (!ltr && (ch == end || ch == begin)) { ch++ } // To determine which side to associate with, get the box to the // left of the character and compare it's vertical position to the // coordinates sticky = ch == 0 ? "after" : ch == lineObj.text.length ? "before" : (measureCharPrepared(cm, preparedMeasure, ch - (ltr ? 1 : 0)).bottom + widgetHeight <= y) == ltr ? "after" : "before" // Now get accurate coordinates for this place, in order to get a // base X position var coords = cursorCoords(cm, Pos(lineNo, ch, sticky), "line", lineObj, preparedMeasure) baseX = coords.left outside = y < coords.top || y >= coords.bottom } ch = skipExtendingChars(lineObj.text, ch, 1) return PosWithInfo(lineNo, ch, sticky, outside, x - baseX) } function coordsBidiPart(cm, lineObj, lineNo, preparedMeasure, order, x, y) { // Bidi parts are sorted left-to-right, and in a non-line-wrapping // situation, we can take this ordering to correspond to the visual // ordering. This finds the first part whose end is after the given // coordinates. var index = findFirst(function (i) { var part = order[i], ltr = part.level != 1 return boxIsAfter(cursorCoords(cm, Pos(lineNo, ltr ? part.to : part.from, ltr ? "before" : "after"), "line", lineObj, preparedMeasure), x, y, true) }, 0, order.length - 1) var part = order[index] // If this isn't the first part, the part's start is also after // the coordinates, and the coordinates aren't on the same line as // that start, move one part back. if (index > 0) { var ltr = part.level != 1 var start = cursorCoords(cm, Pos(lineNo, ltr ? part.from : part.to, ltr ? "after" : "before"), "line", lineObj, preparedMeasure) if (boxIsAfter(start, x, y, true) && start.top > y) { part = order[index - 1] } } return part } function coordsBidiPartWrapped(cm, lineObj, _lineNo, preparedMeasure, order, x, y) { // In a wrapped line, rtl text on wrapping boundaries can do things // that don't correspond to the ordering in our `order` array at // all, so a binary search doesn't work, and we want to return a // part that only spans one line so that the binary search in // coordsCharInner is safe. As such, we first find the extent of the // wrapped line, and then do a flat search in which we discard any // spans that aren't on the line. var ref = wrappedLineExtent(cm, lineObj, preparedMeasure, y); var begin = ref.begin; var end = ref.end; var part = null, closestDist = null for (var i = 0; i < order.length; i++) { var p = order[i] if (p.from >= end || p.to <= begin) { continue } var ltr = p.level != 1 var endX = measureCharPrepared(cm, preparedMeasure, ltr ? Math.min(end, p.to) - 1 : Math.max(begin, p.from)).right // Weigh against spans ending before this, so that they are only // picked if nothing ends after var dist = endX < x ? x - endX + 1e9 : endX - x if (!part || closestDist > dist) { part = p closestDist = dist } } if (!part) { part = order[order.length - 1] } // Clip the part to the wrapped line. if (part.from < begin) { part = {from: begin, to: part.to, level: part.level} } if (part.to > end) { part = {from: part.from, to: end, level: part.level} } return part } var measureText // Compute the default text height. function textHeight(display) { if (display.cachedTextHeight != null) { return display.cachedTextHeight } if (measureText == null) { measureText = elt("pre") // Measure a bunch of lines, for browsers that compute // fractional heights. for (var i = 0; i < 49; ++i) { measureText.appendChild(document.createTextNode("x")) measureText.appendChild(elt("br")) } measureText.appendChild(document.createTextNode("x")) } removeChildrenAndAdd(display.measure, measureText) var height = measureText.offsetHeight / 50 if (height > 3) { display.cachedTextHeight = height } removeChildren(display.measure) return height || 1 } // Compute the default character width. function charWidth(display) { if (display.cachedCharWidth != null) { return display.cachedCharWidth } var anchor = elt("span", "xxxxxxxxxx") var pre = elt("pre", [anchor]) removeChildrenAndAdd(display.measure, pre) var rect = anchor.getBoundingClientRect(), width = (rect.right - rect.left) / 10 if (width > 2) { display.cachedCharWidth = width } return width || 10 } // Do a bulk-read of the DOM positions and sizes needed to draw the // view, so that we don't interleave reading and writing to the DOM. function getDimensions(cm) { var d = cm.display, left = {}, width = {} var gutterLeft = d.gutters.clientLeft for (var n = d.gutters.firstChild, i = 0; n; n = n.nextSibling, ++i) { left[cm.options.gutters[i]] = n.offsetLeft + n.clientLeft + gutterLeft width[cm.options.gutters[i]] = n.clientWidth } return {fixedPos: compensateForHScroll(d), gutterTotalWidth: d.gutters.offsetWidth, gutterLeft: left, gutterWidth: width, wrapperWidth: d.wrapper.clientWidth} } // Computes display.scroller.scrollLeft + display.gutters.offsetWidth, // but using getBoundingClientRect to get a sub-pixel-accurate // result. function compensateForHScroll(display) { return display.scroller.getBoundingClientRect().left - display.sizer.getBoundingClientRect().left } // Returns a function that estimates the height of a line, to use as // first approximation until the line becomes visible (and is thus // properly measurable). function estimateHeight(cm) { var th = textHeight(cm.display), wrapping = cm.options.lineWrapping var perLine = wrapping && Math.max(5, cm.display.scroller.clientWidth / charWidth(cm.display) - 3) return function (line) { if (lineIsHidden(cm.doc, line)) { return 0 } var widgetsHeight = 0 if (line.widgets) { for (var i = 0; i < line.widgets.length; i++) { if (line.widgets[i].height) { widgetsHeight += line.widgets[i].height } } } if (wrapping) { return widgetsHeight + (Math.ceil(line.text.length / perLine) || 1) * th } else { return widgetsHeight + th } } } function estimateLineHeights(cm) { var doc = cm.doc, est = estimateHeight(cm) doc.iter(function (line) { var estHeight = est(line) if (estHeight != line.height) { updateLineHeight(line, estHeight) } }) } // Given a mouse event, find the corresponding position. If liberal // is false, it checks whether a gutter or scrollbar was clicked, // and returns null if it was. forRect is used by rectangular // selections, and tries to estimate a character position even for // coordinates beyond the right of the text. function posFromMouse(cm, e, liberal, forRect) { var display = cm.display if (!liberal && e_target(e).getAttribute("cm-not-content") == "true") { return null } var x, y, space = display.lineSpace.getBoundingClientRect() // Fails unpredictably on IE[67] when mouse is dragged around quickly. try { x = e.clientX - space.left; y = e.clientY - space.top } catch (e) { return null } var coords = coordsChar(cm, x, y), line if (forRect && coords.xRel == 1 && (line = getLine(cm.doc, coords.line).text).length == coords.ch) { var colDiff = countColumn(line, line.length, cm.options.tabSize) - line.length coords = Pos(coords.line, Math.max(0, Math.round((x - paddingH(cm.display).left) / charWidth(cm.display)) - colDiff)) } return coords } // Find the view element corresponding to a given line. Return null // when the line isn't visible. function findViewIndex(cm, n) { if (n >= cm.display.viewTo) { return null } n -= cm.display.viewFrom if (n < 0) { return null } var view = cm.display.view for (var i = 0; i < view.length; i++) { n -= view[i].size if (n < 0) { return i } } } function updateSelection(cm) { cm.display.input.showSelection(cm.display.input.prepareSelection()) } function prepareSelection(cm, primary) { if ( primary === void 0 ) primary = true; var doc = cm.doc, result = {} var curFragment = result.cursors = document.createDocumentFragment() var selFragment = result.selection = document.createDocumentFragment() for (var i = 0; i < doc.sel.ranges.length; i++) { if (!primary && i == doc.sel.primIndex) { continue } var range = doc.sel.ranges[i] if (range.from().line >= cm.display.viewTo || range.to().line < cm.display.viewFrom) { continue } var collapsed = range.empty() if (collapsed || cm.options.showCursorWhenSelecting) { drawSelectionCursor(cm, range.head, curFragment) } if (!collapsed) { drawSelectionRange(cm, range, selFragment) } } return result } // Draws a cursor for the given range function drawSelectionCursor(cm, head, output) { var pos = cursorCoords(cm, head, "div", null, null, !cm.options.singleCursorHeightPerLine) var cursor = output.appendChild(elt("div", "\u00a0", "CodeMirror-cursor")) cursor.style.left = pos.left + "px" cursor.style.top = pos.top + "px" cursor.style.height = Math.max(0, pos.bottom - pos.top) * cm.options.cursorHeight + "px" if (pos.other) { // Secondary cursor, shown when on a 'jump' in bi-directional text var otherCursor = output.appendChild(elt("div", "\u00a0", "CodeMirror-cursor CodeMirror-secondarycursor")) otherCursor.style.display = "" otherCursor.style.left = pos.other.left + "px" otherCursor.style.top = pos.other.top + "px" otherCursor.style.height = (pos.other.bottom - pos.other.top) * .85 + "px" } } function cmpCoords(a, b) { return a.top - b.top || a.left - b.left } // Draws the given range as a highlighted selection function drawSelectionRange(cm, range, output) { var display = cm.display, doc = cm.doc var fragment = document.createDocumentFragment() var padding = paddingH(cm.display), leftSide = padding.left var rightSide = Math.max(display.sizerWidth, displayWidth(cm) - display.sizer.offsetLeft) - padding.right function add(left, top, width, bottom) { if (top < 0) { top = 0 } top = Math.round(top) bottom = Math.round(bottom) fragment.appendChild(elt("div", null, "CodeMirror-selected", ("position: absolute; left: " + left + "px;\n top: " + top + "px; width: " + (width == null ? rightSide - left : width) + "px;\n height: " + (bottom - top) + "px"))) } function drawForLine(line, fromArg, toArg) { var lineObj = getLine(doc, line) var lineLen = lineObj.text.length var start, end function coords(ch, bias) { return charCoords(cm, Pos(line, ch), "div", lineObj, bias) } var order = getOrder(lineObj, doc.direction) iterateBidiSections(order, fromArg || 0, toArg == null ? lineLen : toArg, function (from, to, dir, i) { var fromPos = coords(from, dir == "ltr" ? "left" : "right") var toPos = coords(to - 1, dir == "ltr" ? "right" : "left") if (dir == "ltr") { var fromLeft = fromArg == null && from == 0 ? leftSide : fromPos.left var toRight = toArg == null && to == lineLen ? rightSide : toPos.right if (toPos.top - fromPos.top <= 3) { // Single line add(fromLeft, toPos.top, toRight - fromLeft, toPos.bottom) } else { // Multiple lines add(fromLeft, fromPos.top, null, fromPos.bottom) if (fromPos.bottom < toPos.top) { add(leftSide, fromPos.bottom, null, toPos.top) } add(leftSide, toPos.top, toPos.right, toPos.bottom) } } else if (from < to) { // RTL var fromRight = fromArg == null && from == 0 ? rightSide : fromPos.right var toLeft = toArg == null && to == lineLen ? leftSide : toPos.left if (toPos.top - fromPos.top <= 3) { // Single line add(toLeft, toPos.top, fromRight - toLeft, toPos.bottom) } else { // Multiple lines var topLeft = leftSide if (i) { var topEnd = wrappedLineExtentChar(cm, lineObj, null, from).end // The coordinates returned for an RTL wrapped space tend to // be complete bogus, so try to skip that here. topLeft = coords(topEnd - (/\s/.test(lineObj.text.charAt(topEnd - 1)) ? 2 : 1), "left").left } add(topLeft, fromPos.top, fromRight - topLeft, fromPos.bottom) if (fromPos.bottom < toPos.top) { add(leftSide, fromPos.bottom, null, toPos.top) } var botWidth = null if (i < order.length - 1 || true) { var botStart = wrappedLineExtentChar(cm, lineObj, null, to).begin botWidth = coords(botStart, "right").right - toLeft } add(toLeft, toPos.top, botWidth, toPos.bottom) } } if (!start || cmpCoords(fromPos, start) < 0) { start = fromPos } if (cmpCoords(toPos, start) < 0) { start = toPos } if (!end || cmpCoords(fromPos, end) < 0) { end = fromPos } if (cmpCoords(toPos, end) < 0) { end = toPos } }) return {start: start, end: end} } var sFrom = range.from(), sTo = range.to() if (sFrom.line == sTo.line) { drawForLine(sFrom.line, sFrom.ch, sTo.ch) } else { var fromLine = getLine(doc, sFrom.line), toLine = getLine(doc, sTo.line) var singleVLine = visualLine(fromLine) == visualLine(toLine) var leftEnd = drawForLine(sFrom.line, sFrom.ch, singleVLine ? fromLine.text.length + 1 : null).end var rightStart = drawForLine(sTo.line, singleVLine ? 0 : null, sTo.ch).start if (singleVLine) { if (leftEnd.top < rightStart.top - 2) { add(leftEnd.right, leftEnd.top, null, leftEnd.bottom) add(leftSide, rightStart.top, rightStart.left, rightStart.bottom) } else { add(leftEnd.right, leftEnd.top, rightStart.left - leftEnd.right, leftEnd.bottom) } } if (leftEnd.bottom < rightStart.top) { add(leftSide, leftEnd.bottom, null, rightStart.top) } } output.appendChild(fragment) } // Cursor-blinking function restartBlink(cm) { if (!cm.state.focused) { return } var display = cm.display clearInterval(display.blinker) var on = true display.cursorDiv.style.visibility = "" if (cm.options.cursorBlinkRate > 0) { display.blinker = setInterval(function () { return display.cursorDiv.style.visibility = (on = !on) ? "" : "hidden"; }, cm.options.cursorBlinkRate) } else if (cm.options.cursorBlinkRate < 0) { display.cursorDiv.style.visibility = "hidden" } } function ensureFocus(cm) { if (!cm.state.focused) { cm.display.input.focus(); onFocus(cm) } } function delayBlurEvent(cm) { cm.state.delayingBlurEvent = true setTimeout(function () { if (cm.state.delayingBlurEvent) { cm.state.delayingBlurEvent = false onBlur(cm) } }, 100) } function onFocus(cm, e) { if (cm.state.delayingBlurEvent) { cm.state.delayingBlurEvent = false } if (cm.options.readOnly == "nocursor") { return } if (!cm.state.focused) { signal(cm, "focus", cm, e) cm.state.focused = true addClass(cm.display.wrapper, "CodeMirror-focused") // This test prevents this from firing when a context // menu is closed (since the input reset would kill the // select-all detection hack) if (!cm.curOp && cm.display.selForContextMenu != cm.doc.sel) { cm.display.input.reset() if (webkit) { setTimeout(function () { return cm.display.input.reset(true); }, 20) } // Issue #1730 } cm.display.input.receivedFocus() } restartBlink(cm) } function onBlur(cm, e) { if (cm.state.delayingBlurEvent) { return } if (cm.state.focused) { signal(cm, "blur", cm, e) cm.state.focused = false rmClass(cm.display.wrapper, "CodeMirror-focused") } clearInterval(cm.display.blinker) setTimeout(function () { if (!cm.state.focused) { cm.display.shift = false } }, 150) } // Read the actual heights of the rendered lines, and update their // stored heights to match. function updateHeightsInViewport(cm) { var display = cm.display var prevBottom = display.lineDiv.offsetTop for (var i = 0; i < display.view.length; i++) { var cur = display.view[i], height = (void 0) if (cur.hidden) { continue } if (ie && ie_version < 8) { var bot = cur.node.offsetTop + cur.node.offsetHeight height = bot - prevBottom prevBottom = bot } else { var box = cur.node.getBoundingClientRect() height = box.bottom - box.top } var diff = cur.line.height - height if (height < 2) { height = textHeight(display) } if (diff > .005 || diff < -.005) { updateLineHeight(cur.line, height) updateWidgetHeight(cur.line) if (cur.rest) { for (var j = 0; j < cur.rest.length; j++) { updateWidgetHeight(cur.rest[j]) } } } } } // Read and store the height of line widgets associated with the // given line. function updateWidgetHeight(line) { if (line.widgets) { for (var i = 0; i < line.widgets.length; ++i) { line.widgets[i].height = line.widgets[i].node.parentNode.offsetHeight } } } // Compute the lines that are visible in a given viewport (defaults // the the current scroll position). viewport may contain top, // height, and ensure (see op.scrollToPos) properties. function visibleLines(display, doc, viewport) { var top = viewport && viewport.top != null ? Math.max(0, viewport.top) : display.scroller.scrollTop top = Math.floor(top - paddingTop(display)) var bottom = viewport && viewport.bottom != null ? viewport.bottom : top + display.wrapper.clientHeight var from = lineAtHeight(doc, top), to = lineAtHeight(doc, bottom) // Ensure is a {from: {line, ch}, to: {line, ch}} object, and // forces those lines into the viewport (if possible). if (viewport && viewport.ensure) { var ensureFrom = viewport.ensure.from.line, ensureTo = viewport.ensure.to.line if (ensureFrom < from) { from = ensureFrom to = lineAtHeight(doc, heightAtLine(getLine(doc, ensureFrom)) + display.wrapper.clientHeight) } else if (Math.min(ensureTo, doc.lastLine()) >= to) { from = lineAtHeight(doc, heightAtLine(getLine(doc, ensureTo)) - display.wrapper.clientHeight) to = ensureTo } } return {from: from, to: Math.max(to, from + 1)} } // Re-align line numbers and gutter marks to compensate for // horizontal scrolling. function alignHorizontally(cm) { var display = cm.display, view = display.view if (!display.alignWidgets && (!display.gutters.firstChild || !cm.options.fixedGutter)) { return } var comp = compensateForHScroll(display) - display.scroller.scrollLeft + cm.doc.scrollLeft var gutterW = display.gutters.offsetWidth, left = comp + "px" for (var i = 0; i < view.length; i++) { if (!view[i].hidden) { if (cm.options.fixedGutter) { if (view[i].gutter) { view[i].gutter.style.left = left } if (view[i].gutterBackground) { view[i].gutterBackground.style.left = left } } var align = view[i].alignable if (align) { for (var j = 0; j < align.length; j++) { align[j].style.left = left } } } } if (cm.options.fixedGutter) { display.gutters.style.left = (comp + gutterW) + "px" } } // Used to ensure that the line number gutter is still the right // size for the current document size. Returns true when an update // is needed. function maybeUpdateLineNumberWidth(cm) { if (!cm.options.lineNumbers) { return false } var doc = cm.doc, last = lineNumberFor(cm.options, doc.first + doc.size - 1), display = cm.display if (last.length != display.lineNumChars) { var test = display.measure.appendChild(elt("div", [elt("div", last)], "CodeMirror-linenumber CodeMirror-gutter-elt")) var innerW = test.firstChild.offsetWidth, padding = test.offsetWidth - innerW display.lineGutter.style.width = "" display.lineNumInnerWidth = Math.max(innerW, display.lineGutter.offsetWidth - padding) + 1 display.lineNumWidth = display.lineNumInnerWidth + padding display.lineNumChars = display.lineNumInnerWidth ? last.length : -1 display.lineGutter.style.width = display.lineNumWidth + "px" updateGutterSpace(cm) return true } return false } // SCROLLING THINGS INTO VIEW // If an editor sits on the top or bottom of the window, partially // scrolled out of view, this ensures that the cursor is visible. function maybeScrollWindow(cm, rect) { if (signalDOMEvent(cm, "scrollCursorIntoView")) { return } var display = cm.display, box = display.sizer.getBoundingClientRect(), doScroll = null if (rect.top + box.top < 0) { doScroll = true } else if (rect.bottom + box.top > (window.innerHeight || document.documentElement.clientHeight)) { doScroll = false } if (doScroll != null && !phantom) { var scrollNode = elt("div", "\u200b", null, ("position: absolute;\n top: " + (rect.top - display.viewOffset - paddingTop(cm.display)) + "px;\n height: " + (rect.bottom - rect.top + scrollGap(cm) + display.barHeight) + "px;\n left: " + (rect.left) + "px; width: " + (Math.max(2, rect.right - rect.left)) + "px;")) cm.display.lineSpace.appendChild(scrollNode) scrollNode.scrollIntoView(doScroll) cm.display.lineSpace.removeChild(scrollNode) } } // Scroll a given position into view (immediately), verifying that // it actually became visible (as line heights are accurately // measured, the position of something may 'drift' during drawing). function scrollPosIntoView(cm, pos, end, margin) { if (margin == null) { margin = 0 } var rect if (!cm.options.lineWrapping && pos == end) { // Set pos and end to the cursor positions around the character pos sticks to // If pos.sticky == "before", that is around pos.ch - 1, otherwise around pos.ch // If pos == Pos(_, 0, "before"), pos and end are unchanged pos = pos.ch ? Pos(pos.line, pos.sticky == "before" ? pos.ch - 1 : pos.ch, "after") : pos end = pos.sticky == "before" ? Pos(pos.line, pos.ch + 1, "before") : pos } for (var limit = 0; limit < 5; limit++) { var changed = false var coords = cursorCoords(cm, pos) var endCoords = !end || end == pos ? coords : cursorCoords(cm, end) rect = {left: Math.min(coords.left, endCoords.left), top: Math.min(coords.top, endCoords.top) - margin, right: Math.max(coords.left, endCoords.left), bottom: Math.max(coords.bottom, endCoords.bottom) + margin} var scrollPos = calculateScrollPos(cm, rect) var startTop = cm.doc.scrollTop, startLeft = cm.doc.scrollLeft if (scrollPos.scrollTop != null) { updateScrollTop(cm, scrollPos.scrollTop) if (Math.abs(cm.doc.scrollTop - startTop) > 1) { changed = true } } if (scrollPos.scrollLeft != null) { setScrollLeft(cm, scrollPos.scrollLeft) if (Math.abs(cm.doc.scrollLeft - startLeft) > 1) { changed = true } } if (!changed) { break } } return rect } // Scroll a given set of coordinates into view (immediately). function scrollIntoView(cm, rect) { var scrollPos = calculateScrollPos(cm, rect) if (scrollPos.scrollTop != null) { updateScrollTop(cm, scrollPos.scrollTop) } if (scrollPos.scrollLeft != null) { setScrollLeft(cm, scrollPos.scrollLeft) } } // Calculate a new scroll position needed to scroll the given // rectangle into view. Returns an object with scrollTop and // scrollLeft properties. When these are undefined, the // vertical/horizontal position does not need to be adjusted. function calculateScrollPos(cm, rect) { var display = cm.display, snapMargin = textHeight(cm.display) if (rect.top < 0) { rect.top = 0 } var screentop = cm.curOp && cm.curOp.scrollTop != null ? cm.curOp.scrollTop : display.scroller.scrollTop var screen = displayHeight(cm), result = {} if (rect.bottom - rect.top > screen) { rect.bottom = rect.top + screen } var docBottom = cm.doc.height + paddingVert(display) var atTop = rect.top < snapMargin, atBottom = rect.bottom > docBottom - snapMargin if (rect.top < screentop) { result.scrollTop = atTop ? 0 : rect.top } else if (rect.bottom > screentop + screen) { var newTop = Math.min(rect.top, (atBottom ? docBottom : rect.bottom) - screen) if (newTop != screentop) { result.scrollTop = newTop } } var screenleft = cm.curOp && cm.curOp.scrollLeft != null ? cm.curOp.scrollLeft : display.scroller.scrollLeft var screenw = displayWidth(cm) - (cm.options.fixedGutter ? display.gutters.offsetWidth : 0) var tooWide = rect.right - rect.left > screenw if (tooWide) { rect.right = rect.left + screenw } if (rect.left < 10) { result.scrollLeft = 0 } else if (rect.left < screenleft) { result.scrollLeft = Math.max(0, rect.left - (tooWide ? 0 : 10)) } else if (rect.right > screenw + screenleft - 3) { result.scrollLeft = rect.right + (tooWide ? 0 : 10) - screenw } return result } // Store a relative adjustment to the scroll position in the current // operation (to be applied when the operation finishes). function addToScrollTop(cm, top) { if (top == null) { return } resolveScrollToPos(cm) cm.curOp.scrollTop = (cm.curOp.scrollTop == null ? cm.doc.scrollTop : cm.curOp.scrollTop) + top } // Make sure that at the end of the operation the current cursor is // shown. function ensureCursorVisible(cm) { resolveScrollToPos(cm) var cur = cm.getCursor() cm.curOp.scrollToPos = {from: cur, to: cur, margin: cm.options.cursorScrollMargin} } function scrollToCoords(cm, x, y) { if (x != null || y != null) { resolveScrollToPos(cm) } if (x != null) { cm.curOp.scrollLeft = x } if (y != null) { cm.curOp.scrollTop = y } } function scrollToRange(cm, range) { resolveScrollToPos(cm) cm.curOp.scrollToPos = range } // When an operation has its scrollToPos property set, and another // scroll action is applied before the end of the operation, this // 'simulates' scrolling that position into view in a cheap way, so // that the effect of intermediate scroll commands is not ignored. function resolveScrollToPos(cm) { var range = cm.curOp.scrollToPos if (range) { cm.curOp.scrollToPos = null var from = estimateCoords(cm, range.from), to = estimateCoords(cm, range.to) scrollToCoordsRange(cm, from, to, range.margin) } } function scrollToCoordsRange(cm, from, to, margin) { var sPos = calculateScrollPos(cm, { left: Math.min(from.left, to.left), top: Math.min(from.top, to.top) - margin, right: Math.max(from.right, to.right), bottom: Math.max(from.bottom, to.bottom) + margin }) scrollToCoords(cm, sPos.scrollLeft, sPos.scrollTop) } // Sync the scrollable area and scrollbars, ensure the viewport // covers the visible area. function updateScrollTop(cm, val) { if (Math.abs(cm.doc.scrollTop - val) < 2) { return } if (!gecko) { updateDisplaySimple(cm, {top: val}) } setScrollTop(cm, val, true) if (gecko) { updateDisplaySimple(cm) } startWorker(cm, 100) } function setScrollTop(cm, val, forceScroll) { val = Math.min(cm.display.scroller.scrollHeight - cm.display.scroller.clientHeight, val) if (cm.display.scroller.scrollTop == val && !forceScroll) { return } cm.doc.scrollTop = val cm.display.scrollbars.setScrollTop(val) if (cm.display.scroller.scrollTop != val) { cm.display.scroller.scrollTop = val } } // Sync scroller and scrollbar, ensure the gutter elements are // aligned. function setScrollLeft(cm, val, isScroller, forceScroll) { val = Math.min(val, cm.display.scroller.scrollWidth - cm.display.scroller.clientWidth) if ((isScroller ? val == cm.doc.scrollLeft : Math.abs(cm.doc.scrollLeft - val) < 2) && !forceScroll) { return } cm.doc.scrollLeft = val alignHorizontally(cm) if (cm.display.scroller.scrollLeft != val) { cm.display.scroller.scrollLeft = val } cm.display.scrollbars.setScrollLeft(val) } // SCROLLBARS // Prepare DOM reads needed to update the scrollbars. Done in one // shot to minimize update/measure roundtrips. function measureForScrollbars(cm) { var d = cm.display, gutterW = d.gutters.offsetWidth var docH = Math.round(cm.doc.height + paddingVert(cm.display)) return { clientHeight: d.scroller.clientHeight, viewHeight: d.wrapper.clientHeight, scrollWidth: d.scroller.scrollWidth, clientWidth: d.scroller.clientWidth, viewWidth: d.wrapper.clientWidth, barLeft: cm.options.fixedGutter ? gutterW : 0, docHeight: docH, scrollHeight: docH + scrollGap(cm) + d.barHeight, nativeBarWidth: d.nativeBarWidth, gutterWidth: gutterW } } var NativeScrollbars = function(place, scroll, cm) { this.cm = cm var vert = this.vert = elt("div", [elt("div", null, null, "min-width: 1px")], "CodeMirror-vscrollbar") var horiz = this.horiz = elt("div", [elt("div", null, null, "height: 100%; min-height: 1px")], "CodeMirror-hscrollbar") place(vert); place(horiz) on(vert, "scroll", function () { if (vert.clientHeight) { scroll(vert.scrollTop, "vertical") } }) on(horiz, "scroll", function () { if (horiz.clientWidth) { scroll(horiz.scrollLeft, "horizontal") } }) this.checkedZeroWidth = false // Need to set a minimum width to see the scrollbar on IE7 (but must not set it on IE8). if (ie && ie_version < 8) { this.horiz.style.minHeight = this.vert.style.minWidth = "18px" } }; NativeScrollbars.prototype.update = function (measure) { var needsH = measure.scrollWidth > measure.clientWidth + 1 var needsV = measure.scrollHeight > measure.clientHeight + 1 var sWidth = measure.nativeBarWidth if (needsV) { this.vert.style.display = "block" this.vert.style.bottom = needsH ? sWidth + "px" : "0" var totalHeight = measure.viewHeight - (needsH ? sWidth : 0) // A bug in IE8 can cause this value to be negative, so guard it. this.vert.firstChild.style.height = Math.max(0, measure.scrollHeight - measure.clientHeight + totalHeight) + "px" } else { this.vert.style.display = "" this.vert.firstChild.style.height = "0" } if (needsH) { this.horiz.style.display = "block" this.horiz.style.right = needsV ? sWidth + "px" : "0" this.horiz.style.left = measure.barLeft + "px" var totalWidth = measure.viewWidth - measure.barLeft - (needsV ? sWidth : 0) this.horiz.firstChild.style.width = Math.max(0, measure.scrollWidth - measure.clientWidth + totalWidth) + "px" } else { this.horiz.style.display = "" this.horiz.firstChild.style.width = "0" } if (!this.checkedZeroWidth && measure.clientHeight > 0) { if (sWidth == 0) { this.zeroWidthHack() } this.checkedZeroWidth = true } return {right: needsV ? sWidth : 0, bottom: needsH ? sWidth : 0} }; NativeScrollbars.prototype.setScrollLeft = function (pos) { if (this.horiz.scrollLeft != pos) { this.horiz.scrollLeft = pos } if (this.disableHoriz) { this.enableZeroWidthBar(this.horiz, this.disableHoriz, "horiz") } }; NativeScrollbars.prototype.setScrollTop = function (pos) { if (this.vert.scrollTop != pos) { this.vert.scrollTop = pos } if (this.disableVert) { this.enableZeroWidthBar(this.vert, this.disableVert, "vert") } }; NativeScrollbars.prototype.zeroWidthHack = function () { var w = mac && !mac_geMountainLion ? "12px" : "18px" this.horiz.style.height = this.vert.style.width = w this.horiz.style.pointerEvents = this.vert.style.pointerEvents = "none" this.disableHoriz = new Delayed this.disableVert = new Delayed }; NativeScrollbars.prototype.enableZeroWidthBar = function (bar, delay, type) { bar.style.pointerEvents = "auto" function maybeDisable() { // To find out whether the scrollbar is still visible, we // check whether the element under the pixel in the bottom // right corner of the scrollbar box is the scrollbar box // itself (when the bar is still visible) or its filler child // (when the bar is hidden). If it is still visible, we keep // it enabled, if it's hidden, we disable pointer events. var box = bar.getBoundingClientRect() var elt = type == "vert" ? document.elementFromPoint(box.right - 1, (box.top + box.bottom) / 2) : document.elementFromPoint((box.right + box.left) / 2, box.bottom - 1) if (elt != bar) { bar.style.pointerEvents = "none" } else { delay.set(1000, maybeDisable) } } delay.set(1000, maybeDisable) }; NativeScrollbars.prototype.clear = function () { var parent = this.horiz.parentNode parent.removeChild(this.horiz) parent.removeChild(this.vert) }; var NullScrollbars = function () {}; NullScrollbars.prototype.update = function () { return {bottom: 0, right: 0} }; NullScrollbars.prototype.setScrollLeft = function () {}; NullScrollbars.prototype.setScrollTop = function () {}; NullScrollbars.prototype.clear = function () {}; function updateScrollbars(cm, measure) { if (!measure) { measure = measureForScrollbars(cm) } var startWidth = cm.display.barWidth, startHeight = cm.display.barHeight updateScrollbarsInner(cm, measure) for (var i = 0; i < 4 && startWidth != cm.display.barWidth || startHeight != cm.display.barHeight; i++) { if (startWidth != cm.display.barWidth && cm.options.lineWrapping) { updateHeightsInViewport(cm) } updateScrollbarsInner(cm, measureForScrollbars(cm)) startWidth = cm.display.barWidth; startHeight = cm.display.barHeight } } // Re-synchronize the fake scrollbars with the actual size of the // content. function updateScrollbarsInner(cm, measure) { var d = cm.display var sizes = d.scrollbars.update(measure) d.sizer.style.paddingRight = (d.barWidth = sizes.right) + "px" d.sizer.style.paddingBottom = (d.barHeight = sizes.bottom) + "px" d.heightForcer.style.borderBottom = sizes.bottom + "px solid transparent" if (sizes.right && sizes.bottom) { d.scrollbarFiller.style.display = "block" d.scrollbarFiller.style.height = sizes.bottom + "px" d.scrollbarFiller.style.width = sizes.right + "px" } else { d.scrollbarFiller.style.display = "" } if (sizes.bottom && cm.options.coverGutterNextToScrollbar && cm.options.fixedGutter) { d.gutterFiller.style.display = "block" d.gutterFiller.style.height = sizes.bottom + "px" d.gutterFiller.style.width = measure.gutterWidth + "px" } else { d.gutterFiller.style.display = "" } } var scrollbarModel = {"native": NativeScrollbars, "null": NullScrollbars} function initScrollbars(cm) { if (cm.display.scrollbars) { cm.display.scrollbars.clear() if (cm.display.scrollbars.addClass) { rmClass(cm.display.wrapper, cm.display.scrollbars.addClass) } } cm.display.scrollbars = new scrollbarModel[cm.options.scrollbarStyle](function (node) { cm.display.wrapper.insertBefore(node, cm.display.scrollbarFiller) // Prevent clicks in the scrollbars from killing focus on(node, "mousedown", function () { if (cm.state.focused) { setTimeout(function () { return cm.display.input.focus(); }, 0) } }) node.setAttribute("cm-not-content", "true") }, function (pos, axis) { if (axis == "horizontal") { setScrollLeft(cm, pos) } else { updateScrollTop(cm, pos) } }, cm) if (cm.display.scrollbars.addClass) { addClass(cm.display.wrapper, cm.display.scrollbars.addClass) } } // Operations are used to wrap a series of changes to the editor // state in such a way that each change won't have to update the // cursor and display (which would be awkward, slow, and // error-prone). Instead, display updates are batched and then all // combined and executed at once. var nextOpId = 0 // Start a new operation. function startOperation(cm) { cm.curOp = { cm: cm, viewChanged: false, // Flag that indicates that lines might need to be redrawn startHeight: cm.doc.height, // Used to detect need to update scrollbar forceUpdate: false, // Used to force a redraw updateInput: null, // Whether to reset the input textarea typing: false, // Whether this reset should be careful to leave existing text (for compositing) changeObjs: null, // Accumulated changes, for firing change events cursorActivityHandlers: null, // Set of handlers to fire cursorActivity on cursorActivityCalled: 0, // Tracks which cursorActivity handlers have been called already selectionChanged: false, // Whether the selection needs to be redrawn updateMaxLine: false, // Set when the widest line needs to be determined anew scrollLeft: null, scrollTop: null, // Intermediate scroll position, not pushed to DOM yet scrollToPos: null, // Used to scroll to a specific position focus: false, id: ++nextOpId // Unique ID } pushOperation(cm.curOp) } // Finish an operation, updating the display and signalling delayed events function endOperation(cm) { var op = cm.curOp finishOperation(op, function (group) { for (var i = 0; i < group.ops.length; i++) { group.ops[i].cm.curOp = null } endOperations(group) }) } // The DOM updates done when an operation finishes are batched so // that the minimum number of relayouts are required. function endOperations(group) { var ops = group.ops for (var i = 0; i < ops.length; i++) // Read DOM { endOperation_R1(ops[i]) } for (var i$1 = 0; i$1 < ops.length; i$1++) // Write DOM (maybe) { endOperation_W1(ops[i$1]) } for (var i$2 = 0; i$2 < ops.length; i$2++) // Read DOM { endOperation_R2(ops[i$2]) } for (var i$3 = 0; i$3 < ops.length; i$3++) // Write DOM (maybe) { endOperation_W2(ops[i$3]) } for (var i$4 = 0; i$4 < ops.length; i$4++) // Read DOM { endOperation_finish(ops[i$4]) } } function endOperation_R1(op) { var cm = op.cm, display = cm.display maybeClipScrollbars(cm) if (op.updateMaxLine) { findMaxLine(cm) } op.mustUpdate = op.viewChanged || op.forceUpdate || op.scrollTop != null || op.scrollToPos && (op.scrollToPos.from.line < display.viewFrom || op.scrollToPos.to.line >= display.viewTo) || display.maxLineChanged && cm.options.lineWrapping op.update = op.mustUpdate && new DisplayUpdate(cm, op.mustUpdate && {top: op.scrollTop, ensure: op.scrollToPos}, op.forceUpdate) } function endOperation_W1(op) { op.updatedDisplay = op.mustUpdate && updateDisplayIfNeeded(op.cm, op.update) } function endOperation_R2(op) { var cm = op.cm, display = cm.display if (op.updatedDisplay) { updateHeightsInViewport(cm) } op.barMeasure = measureForScrollbars(cm) // If the max line changed since it was last measured, measure it, // and ensure the document's width matches it. // updateDisplay_W2 will use these properties to do the actual resizing if (display.maxLineChanged && !cm.options.lineWrapping) { op.adjustWidthTo = measureChar(cm, display.maxLine, display.maxLine.text.length).left + 3 cm.display.sizerWidth = op.adjustWidthTo op.barMeasure.scrollWidth = Math.max(display.scroller.clientWidth, display.sizer.offsetLeft + op.adjustWidthTo + scrollGap(cm) + cm.display.barWidth) op.maxScrollLeft = Math.max(0, display.sizer.offsetLeft + op.adjustWidthTo - displayWidth(cm)) } if (op.updatedDisplay || op.selectionChanged) { op.preparedSelection = display.input.prepareSelection() } } function endOperation_W2(op) { var cm = op.cm if (op.adjustWidthTo != null) { cm.display.sizer.style.minWidth = op.adjustWidthTo + "px" if (op.maxScrollLeft < cm.doc.scrollLeft) { setScrollLeft(cm, Math.min(cm.display.scroller.scrollLeft, op.maxScrollLeft), true) } cm.display.maxLineChanged = false } var takeFocus = op.focus && op.focus == activeElt() if (op.preparedSelection) { cm.display.input.showSelection(op.preparedSelection, takeFocus) } if (op.updatedDisplay || op.startHeight != cm.doc.height) { updateScrollbars(cm, op.barMeasure) } if (op.updatedDisplay) { setDocumentHeight(cm, op.barMeasure) } if (op.selectionChanged) { restartBlink(cm) } if (cm.state.focused && op.updateInput) { cm.display.input.reset(op.typing) } if (takeFocus) { ensureFocus(op.cm) } } function endOperation_finish(op) { var cm = op.cm, display = cm.display, doc = cm.doc if (op.updatedDisplay) { postUpdateDisplay(cm, op.update) } // Abort mouse wheel delta measurement, when scrolling explicitly if (display.wheelStartX != null && (op.scrollTop != null || op.scrollLeft != null || op.scrollToPos)) { display.wheelStartX = display.wheelStartY = null } // Propagate the scroll position to the actual DOM scroller if (op.scrollTop != null) { setScrollTop(cm, op.scrollTop, op.forceScroll) } if (op.scrollLeft != null) { setScrollLeft(cm, op.scrollLeft, true, true) } // If we need to scroll a specific position into view, do so. if (op.scrollToPos) { var rect = scrollPosIntoView(cm, clipPos(doc, op.scrollToPos.from), clipPos(doc, op.scrollToPos.to), op.scrollToPos.margin) maybeScrollWindow(cm, rect) } // Fire events for markers that are hidden/unidden by editing or // undoing var hidden = op.maybeHiddenMarkers, unhidden = op.maybeUnhiddenMarkers if (hidden) { for (var i = 0; i < hidden.length; ++i) { if (!hidden[i].lines.length) { signal(hidden[i], "hide") } } } if (unhidden) { for (var i$1 = 0; i$1 < unhidden.length; ++i$1) { if (unhidden[i$1].lines.length) { signal(unhidden[i$1], "unhide") } } } if (display.wrapper.offsetHeight) { doc.scrollTop = cm.display.scroller.scrollTop } // Fire change events, and delayed event handlers if (op.changeObjs) { signal(cm, "changes", cm, op.changeObjs) } if (op.update) { op.update.finish() } } // Run the given function in an operation function runInOp(cm, f) { if (cm.curOp) { return f() } startOperation(cm) try { return f() } finally { endOperation(cm) } } // Wraps a function in an operation. Returns the wrapped function. function operation(cm, f) { return function() { if (cm.curOp) { return f.apply(cm, arguments) } startOperation(cm) try { return f.apply(cm, arguments) } finally { endOperation(cm) } } } // Used to add methods to editor and doc instances, wrapping them in // operations. function methodOp(f) { return function() { if (this.curOp) { return f.apply(this, arguments) } startOperation(this) try { return f.apply(this, arguments) } finally { endOperation(this) } } } function docMethodOp(f) { return function() { var cm = this.cm if (!cm || cm.curOp) { return f.apply(this, arguments) } startOperation(cm) try { return f.apply(this, arguments) } finally { endOperation(cm) } } } // Updates the display.view data structure for a given change to the // document. From and to are in pre-change coordinates. Lendiff is // the amount of lines added or subtracted by the change. This is // used for changes that span multiple lines, or change the way // lines are divided into visual lines. regLineChange (below) // registers single-line changes. function regChange(cm, from, to, lendiff) { if (from == null) { from = cm.doc.first } if (to == null) { to = cm.doc.first + cm.doc.size } if (!lendiff) { lendiff = 0 } var display = cm.display if (lendiff && to < display.viewTo && (display.updateLineNumbers == null || display.updateLineNumbers > from)) { display.updateLineNumbers = from } cm.curOp.viewChanged = true if (from >= display.viewTo) { // Change after if (sawCollapsedSpans && visualLineNo(cm.doc, from) < display.viewTo) { resetView(cm) } } else if (to <= display.viewFrom) { // Change before if (sawCollapsedSpans && visualLineEndNo(cm.doc, to + lendiff) > display.viewFrom) { resetView(cm) } else { display.viewFrom += lendiff display.viewTo += lendiff } } else if (from <= display.viewFrom && to >= display.viewTo) { // Full overlap resetView(cm) } else if (from <= display.viewFrom) { // Top overlap var cut = viewCuttingPoint(cm, to, to + lendiff, 1) if (cut) { display.view = display.view.slice(cut.index) display.viewFrom = cut.lineN display.viewTo += lendiff } else { resetView(cm) } } else if (to >= display.viewTo) { // Bottom overlap var cut$1 = viewCuttingPoint(cm, from, from, -1) if (cut$1) { display.view = display.view.slice(0, cut$1.index) display.viewTo = cut$1.lineN } else { resetView(cm) } } else { // Gap in the middle var cutTop = viewCuttingPoint(cm, from, from, -1) var cutBot = viewCuttingPoint(cm, to, to + lendiff, 1) if (cutTop && cutBot) { display.view = display.view.slice(0, cutTop.index) .concat(buildViewArray(cm, cutTop.lineN, cutBot.lineN)) .concat(display.view.slice(cutBot.index)) display.viewTo += lendiff } else { resetView(cm) } } var ext = display.externalMeasured if (ext) { if (to < ext.lineN) { ext.lineN += lendiff } else if (from < ext.lineN + ext.size) { display.externalMeasured = null } } } // Register a change to a single line. Type must be one of "text", // "gutter", "class", "widget" function regLineChange(cm, line, type) { cm.curOp.viewChanged = true var display = cm.display, ext = cm.display.externalMeasured if (ext && line >= ext.lineN && line < ext.lineN + ext.size) { display.externalMeasured = null } if (line < display.viewFrom || line >= display.viewTo) { return } var lineView = display.view[findViewIndex(cm, line)] if (lineView.node == null) { return } var arr = lineView.changes || (lineView.changes = []) if (indexOf(arr, type) == -1) { arr.push(type) } } // Clear the view. function resetView(cm) { cm.display.viewFrom = cm.display.viewTo = cm.doc.first cm.display.view = [] cm.display.viewOffset = 0 } function viewCuttingPoint(cm, oldN, newN, dir) { var index = findViewIndex(cm, oldN), diff, view = cm.display.view if (!sawCollapsedSpans || newN == cm.doc.first + cm.doc.size) { return {index: index, lineN: newN} } var n = cm.display.viewFrom for (var i = 0; i < index; i++) { n += view[i].size } if (n != oldN) { if (dir > 0) { if (index == view.length - 1) { return null } diff = (n + view[index].size) - oldN index++ } else { diff = n - oldN } oldN += diff; newN += diff } while (visualLineNo(cm.doc, newN) != newN) { if (index == (dir < 0 ? 0 : view.length - 1)) { return null } newN += dir * view[index - (dir < 0 ? 1 : 0)].size index += dir } return {index: index, lineN: newN} } // Force the view to cover a given range, adding empty view element // or clipping off existing ones as needed. function adjustView(cm, from, to) { var display = cm.display, view = display.view if (view.length == 0 || from >= display.viewTo || to <= display.viewFrom) { display.view = buildViewArray(cm, from, to) display.viewFrom = from } else { if (display.viewFrom > from) { display.view = buildViewArray(cm, from, display.viewFrom).concat(display.view) } else if (display.viewFrom < from) { display.view = display.view.slice(findViewIndex(cm, from)) } display.viewFrom = from if (display.viewTo < to) { display.view = display.view.concat(buildViewArray(cm, display.viewTo, to)) } else if (display.viewTo > to) { display.view = display.view.slice(0, findViewIndex(cm, to)) } } display.viewTo = to } // Count the number of lines in the view whose DOM representation is // out of date (or nonexistent). function countDirtyView(cm) { var view = cm.display.view, dirty = 0 for (var i = 0; i < view.length; i++) { var lineView = view[i] if (!lineView.hidden && (!lineView.node || lineView.changes)) { ++dirty } } return dirty } // HIGHLIGHT WORKER function startWorker(cm, time) { if (cm.doc.highlightFrontier < cm.display.viewTo) { cm.state.highlight.set(time, bind(highlightWorker, cm)) } } function highlightWorker(cm) { var doc = cm.doc if (doc.highlightFrontier >= cm.display.viewTo) { return } var end = +new Date + cm.options.workTime var context = getContextBefore(cm, doc.highlightFrontier) var changedLines = [] doc.iter(context.line, Math.min(doc.first + doc.size, cm.display.viewTo + 500), function (line) { if (context.line >= cm.display.viewFrom) { // Visible var oldStyles = line.styles var resetState = line.text.length > cm.options.maxHighlightLength ? copyState(doc.mode, context.state) : null var highlighted = highlightLine(cm, line, context, true) if (resetState) { context.state = resetState } line.styles = highlighted.styles var oldCls = line.styleClasses, newCls = highlighted.classes if (newCls) { line.styleClasses = newCls } else if (oldCls) { line.styleClasses = null } var ischange = !oldStyles || oldStyles.length != line.styles.length || oldCls != newCls && (!oldCls || !newCls || oldCls.bgClass != newCls.bgClass || oldCls.textClass != newCls.textClass) for (var i = 0; !ischange && i < oldStyles.length; ++i) { ischange = oldStyles[i] != line.styles[i] } if (ischange) { changedLines.push(context.line) } line.stateAfter = context.save() context.nextLine() } else { if (line.text.length <= cm.options.maxHighlightLength) { processLine(cm, line.text, context) } line.stateAfter = context.line % 5 == 0 ? context.save() : null context.nextLine() } if (+new Date > end) { startWorker(cm, cm.options.workDelay) return true } }) doc.highlightFrontier = context.line doc.modeFrontier = Math.max(doc.modeFrontier, context.line) if (changedLines.length) { runInOp(cm, function () { for (var i = 0; i < changedLines.length; i++) { regLineChange(cm, changedLines[i], "text") } }) } } // DISPLAY DRAWING var DisplayUpdate = function(cm, viewport, force) { var display = cm.display this.viewport = viewport // Store some values that we'll need later (but don't want to force a relayout for) this.visible = visibleLines(display, cm.doc, viewport) this.editorIsHidden = !display.wrapper.offsetWidth this.wrapperHeight = display.wrapper.clientHeight this.wrapperWidth = display.wrapper.clientWidth this.oldDisplayWidth = displayWidth(cm) this.force = force this.dims = getDimensions(cm) this.events = [] }; DisplayUpdate.prototype.signal = function (emitter, type) { if (hasHandler(emitter, type)) { this.events.push(arguments) } }; DisplayUpdate.prototype.finish = function () { var this$1 = this; for (var i = 0; i < this.events.length; i++) { signal.apply(null, this$1.events[i]) } }; function maybeClipScrollbars(cm) { var display = cm.display if (!display.scrollbarsClipped && display.scroller.offsetWidth) { display.nativeBarWidth = display.scroller.offsetWidth - display.scroller.clientWidth display.heightForcer.style.height = scrollGap(cm) + "px" display.sizer.style.marginBottom = -display.nativeBarWidth + "px" display.sizer.style.borderRightWidth = scrollGap(cm) + "px" display.scrollbarsClipped = true } } function selectionSnapshot(cm) { if (cm.hasFocus()) { return null } var active = activeElt() if (!active || !contains(cm.display.lineDiv, active)) { return null } var result = {activeElt: active} if (window.getSelection) { var sel = window.getSelection() if (sel.anchorNode && sel.extend && contains(cm.display.lineDiv, sel.anchorNode)) { result.anchorNode = sel.anchorNode result.anchorOffset = sel.anchorOffset result.focusNode = sel.focusNode result.focusOffset = sel.focusOffset } } return result } function restoreSelection(snapshot) { if (!snapshot || !snapshot.activeElt || snapshot.activeElt == activeElt()) { return } snapshot.activeElt.focus() if (snapshot.anchorNode && contains(document.body, snapshot.anchorNode) && contains(document.body, snapshot.focusNode)) { var sel = window.getSelection(), range = document.createRange() range.setEnd(snapshot.anchorNode, snapshot.anchorOffset) range.collapse(false) sel.removeAllRanges() sel.addRange(range) sel.extend(snapshot.focusNode, snapshot.focusOffset) } } // Does the actual updating of the line display. Bails out // (returning false) when there is nothing to be done and forced is // false. function updateDisplayIfNeeded(cm, update) { var display = cm.display, doc = cm.doc if (update.editorIsHidden) { resetView(cm) return false } // Bail out if the visible area is already rendered and nothing changed. if (!update.force && update.visible.from >= display.viewFrom && update.visible.to <= display.viewTo && (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo) && display.renderedView == display.view && countDirtyView(cm) == 0) { return false } if (maybeUpdateLineNumberWidth(cm)) { resetView(cm) update.dims = getDimensions(cm) } // Compute a suitable new viewport (from & to) var end = doc.first + doc.size var from = Math.max(update.visible.from - cm.options.viewportMargin, doc.first) var to = Math.min(end, update.visible.to + cm.options.viewportMargin) if (display.viewFrom < from && from - display.viewFrom < 20) { from = Math.max(doc.first, display.viewFrom) } if (display.viewTo > to && display.viewTo - to < 20) { to = Math.min(end, display.viewTo) } if (sawCollapsedSpans) { from = visualLineNo(cm.doc, from) to = visualLineEndNo(cm.doc, to) } var different = from != display.viewFrom || to != display.viewTo || display.lastWrapHeight != update.wrapperHeight || display.lastWrapWidth != update.wrapperWidth adjustView(cm, from, to) display.viewOffset = heightAtLine(getLine(cm.doc, display.viewFrom)) // Position the mover div to align with the current scroll position cm.display.mover.style.top = display.viewOffset + "px" var toUpdate = countDirtyView(cm) if (!different && toUpdate == 0 && !update.force && display.renderedView == display.view && (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo)) { return false } // For big changes, we hide the enclosing element during the // update, since that speeds up the operations on most browsers. var selSnapshot = selectionSnapshot(cm) if (toUpdate > 4) { display.lineDiv.style.display = "none" } patchDisplay(cm, display.updateLineNumbers, update.dims) if (toUpdate > 4) { display.lineDiv.style.display = "" } display.renderedView = display.view // There might have been a widget with a focused element that got // hidden or updated, if so re-focus it. restoreSelection(selSnapshot) // Prevent selection and cursors from interfering with the scroll // width and height. removeChildren(display.cursorDiv) removeChildren(display.selectionDiv) display.gutters.style.height = display.sizer.style.minHeight = 0 if (different) { display.lastWrapHeight = update.wrapperHeight display.lastWrapWidth = update.wrapperWidth startWorker(cm, 400) } display.updateLineNumbers = null return true } function postUpdateDisplay(cm, update) { var viewport = update.viewport for (var first = true;; first = false) { if (!first || !cm.options.lineWrapping || update.oldDisplayWidth == displayWidth(cm)) { // Clip forced viewport to actual scrollable area. if (viewport && viewport.top != null) { viewport = {top: Math.min(cm.doc.height + paddingVert(cm.display) - displayHeight(cm), viewport.top)} } // Updated line heights might result in the drawn area not // actually covering the viewport. Keep looping until it does. update.visible = visibleLines(cm.display, cm.doc, viewport) if (update.visible.from >= cm.display.viewFrom && update.visible.to <= cm.display.viewTo) { break } } if (!updateDisplayIfNeeded(cm, update)) { break } updateHeightsInViewport(cm) var barMeasure = measureForScrollbars(cm) updateSelection(cm) updateScrollbars(cm, barMeasure) setDocumentHeight(cm, barMeasure) update.force = false } update.signal(cm, "update", cm) if (cm.display.viewFrom != cm.display.reportedViewFrom || cm.display.viewTo != cm.display.reportedViewTo) { update.signal(cm, "viewportChange", cm, cm.display.viewFrom, cm.display.viewTo) cm.display.reportedViewFrom = cm.display.viewFrom; cm.display.reportedViewTo = cm.display.viewTo } } function updateDisplaySimple(cm, viewport) { var update = new DisplayUpdate(cm, viewport) if (updateDisplayIfNeeded(cm, update)) { updateHeightsInViewport(cm) postUpdateDisplay(cm, update) var barMeasure = measureForScrollbars(cm) updateSelection(cm) updateScrollbars(cm, barMeasure) setDocumentHeight(cm, barMeasure) update.finish() } } // Sync the actual display DOM structure with display.view, removing // nodes for lines that are no longer in view, and creating the ones // that are not there yet, and updating the ones that are out of // date. function patchDisplay(cm, updateNumbersFrom, dims) { var display = cm.display, lineNumbers = cm.options.lineNumbers var container = display.lineDiv, cur = container.firstChild function rm(node) { var next = node.nextSibling // Works around a throw-scroll bug in OS X Webkit if (webkit && mac && cm.display.currentWheelTarget == node) { node.style.display = "none" } else { node.parentNode.removeChild(node) } return next } var view = display.view, lineN = display.viewFrom // Loop over the elements in the view, syncing cur (the DOM nodes // in display.lineDiv) with the view as we go. for (var i = 0; i < view.length; i++) { var lineView = view[i] if (lineView.hidden) { } else if (!lineView.node || lineView.node.parentNode != container) { // Not drawn yet var node = buildLineElement(cm, lineView, lineN, dims) container.insertBefore(node, cur) } else { // Already drawn while (cur != lineView.node) { cur = rm(cur) } var updateNumber = lineNumbers && updateNumbersFrom != null && updateNumbersFrom <= lineN && lineView.lineNumber if (lineView.changes) { if (indexOf(lineView.changes, "gutter") > -1) { updateNumber = false } updateLineForChanges(cm, lineView, lineN, dims) } if (updateNumber) { removeChildren(lineView.lineNumber) lineView.lineNumber.appendChild(document.createTextNode(lineNumberFor(cm.options, lineN))) } cur = lineView.node.nextSibling } lineN += lineView.size } while (cur) { cur = rm(cur) } } function updateGutterSpace(cm) { var width = cm.display.gutters.offsetWidth cm.display.sizer.style.marginLeft = width + "px" } function setDocumentHeight(cm, measure) { cm.display.sizer.style.minHeight = measure.docHeight + "px" cm.display.heightForcer.style.top = measure.docHeight + "px" cm.display.gutters.style.height = (measure.docHeight + cm.display.barHeight + scrollGap(cm)) + "px" } // Rebuild the gutter elements, ensure the margin to the left of the // code matches their width. function updateGutters(cm) { var gutters = cm.display.gutters, specs = cm.options.gutters removeChildren(gutters) var i = 0 for (; i < specs.length; ++i) { var gutterClass = specs[i] var gElt = gutters.appendChild(elt("div", null, "CodeMirror-gutter " + gutterClass)) if (gutterClass == "CodeMirror-linenumbers") { cm.display.lineGutter = gElt gElt.style.width = (cm.display.lineNumWidth || 1) + "px" } } gutters.style.display = i ? "" : "none" updateGutterSpace(cm) } // Make sure the gutters options contains the element // "CodeMirror-linenumbers" when the lineNumbers option is true. function setGuttersForLineNumbers(options) { var found = indexOf(options.gutters, "CodeMirror-linenumbers") if (found == -1 && options.lineNumbers) { options.gutters = options.gutters.concat(["CodeMirror-linenumbers"]) } else if (found > -1 && !options.lineNumbers) { options.gutters = options.gutters.slice(0) options.gutters.splice(found, 1) } } var wheelSamples = 0; var wheelPixelsPerUnit = null; // Fill in a browser-detected starting value on browsers where we // know one. These don't have to be accurate -- the result of them // being wrong would just be a slight flicker on the first wheel // scroll (if it is large enough). if (ie) { wheelPixelsPerUnit = -.53 } else if (gecko) { wheelPixelsPerUnit = 15 } else if (chrome) { wheelPixelsPerUnit = -.7 } else if (safari) { wheelPixelsPerUnit = -1/3 } function wheelEventDelta(e) { var dx = e.wheelDeltaX, dy = e.wheelDeltaY if (dx == null && e.detail && e.axis == e.HORIZONTAL_AXIS) { dx = e.detail } if (dy == null && e.detail && e.axis == e.VERTICAL_AXIS) { dy = e.detail } else if (dy == null) { dy = e.wheelDelta } return {x: dx, y: dy} } function wheelEventPixels(e) { var delta = wheelEventDelta(e) delta.x *= wheelPixelsPerUnit delta.y *= wheelPixelsPerUnit return delta } function onScrollWheel(cm, e) { var delta = wheelEventDelta(e), dx = delta.x, dy = delta.y var display = cm.display, scroll = display.scroller // Quit if there's nothing to scroll here var canScrollX = scroll.scrollWidth > scroll.clientWidth var canScrollY = scroll.scrollHeight > scroll.clientHeight if (!(dx && canScrollX || dy && canScrollY)) { return } // Webkit browsers on OS X abort momentum scrolls when the target // of the scroll event is removed from the scrollable element. // This hack (see related code in patchDisplay) makes sure the // element is kept around. if (dy && mac && webkit) { outer: for (var cur = e.target, view = display.view; cur != scroll; cur = cur.parentNode) { for (var i = 0; i < view.length; i++) { if (view[i].node == cur) { cm.display.currentWheelTarget = cur break outer } } } } // On some browsers, horizontal scrolling will cause redraws to // happen before the gutter has been realigned, causing it to // wriggle around in a most unseemly way. When we have an // estimated pixels/delta value, we just handle horizontal // scrolling entirely here. It'll be slightly off from native, but // better than glitching out. if (dx && !gecko && !presto && wheelPixelsPerUnit != null) { if (dy && canScrollY) { updateScrollTop(cm, Math.max(0, scroll.scrollTop + dy * wheelPixelsPerUnit)) } setScrollLeft(cm, Math.max(0, scroll.scrollLeft + dx * wheelPixelsPerUnit)) // Only prevent default scrolling if vertical scrolling is // actually possible. Otherwise, it causes vertical scroll // jitter on OSX trackpads when deltaX is small and deltaY // is large (issue #3579) if (!dy || (dy && canScrollY)) { e_preventDefault(e) } display.wheelStartX = null // Abort measurement, if in progress return } // 'Project' the visible viewport to cover the area that is being // scrolled into view (if we know enough to estimate it). if (dy && wheelPixelsPerUnit != null) { var pixels = dy * wheelPixelsPerUnit var top = cm.doc.scrollTop, bot = top + display.wrapper.clientHeight if (pixels < 0) { top = Math.max(0, top + pixels - 50) } else { bot = Math.min(cm.doc.height, bot + pixels + 50) } updateDisplaySimple(cm, {top: top, bottom: bot}) } if (wheelSamples < 20) { if (display.wheelStartX == null) { display.wheelStartX = scroll.scrollLeft; display.wheelStartY = scroll.scrollTop display.wheelDX = dx; display.wheelDY = dy setTimeout(function () { if (display.wheelStartX == null) { return } var movedX = scroll.scrollLeft - display.wheelStartX var movedY = scroll.scrollTop - display.wheelStartY var sample = (movedY && display.wheelDY && movedY / display.wheelDY) || (movedX && display.wheelDX && movedX / display.wheelDX) display.wheelStartX = display.wheelStartY = null if (!sample) { return } wheelPixelsPerUnit = (wheelPixelsPerUnit * wheelSamples + sample) / (wheelSamples + 1) ++wheelSamples }, 200) } else { display.wheelDX += dx; display.wheelDY += dy } } } // Selection objects are immutable. A new one is created every time // the selection changes. A selection is one or more non-overlapping // (and non-touching) ranges, sorted, and an integer that indicates // which one is the primary selection (the one that's scrolled into // view, that getCursor returns, etc). var Selection = function(ranges, primIndex) { this.ranges = ranges this.primIndex = primIndex }; Selection.prototype.primary = function () { return this.ranges[this.primIndex] }; Selection.prototype.equals = function (other) { var this$1 = this; if (other == this) { return true } if (other.primIndex != this.primIndex || other.ranges.length != this.ranges.length) { return false } for (var i = 0; i < this.ranges.length; i++) { var here = this$1.ranges[i], there = other.ranges[i] if (!equalCursorPos(here.anchor, there.anchor) || !equalCursorPos(here.head, there.head)) { return false } } return true }; Selection.prototype.deepCopy = function () { var this$1 = this; var out = [] for (var i = 0; i < this.ranges.length; i++) { out[i] = new Range(copyPos(this$1.ranges[i].anchor), copyPos(this$1.ranges[i].head)) } return new Selection(out, this.primIndex) }; Selection.prototype.somethingSelected = function () { var this$1 = this; for (var i = 0; i < this.ranges.length; i++) { if (!this$1.ranges[i].empty()) { return true } } return false }; Selection.prototype.contains = function (pos, end) { var this$1 = this; if (!end) { end = pos } for (var i = 0; i < this.ranges.length; i++) { var range = this$1.ranges[i] if (cmp(end, range.from()) >= 0 && cmp(pos, range.to()) <= 0) { return i } } return -1 }; var Range = function(anchor, head) { this.anchor = anchor; this.head = head }; Range.prototype.from = function () { return minPos(this.anchor, this.head) }; Range.prototype.to = function () { return maxPos(this.anchor, this.head) }; Range.prototype.empty = function () { return this.head.line == this.anchor.line && this.head.ch == this.anchor.ch }; // Take an unsorted, potentially overlapping set of ranges, and // build a selection out of it. 'Consumes' ranges array (modifying // it). function normalizeSelection(ranges, primIndex) { var prim = ranges[primIndex] ranges.sort(function (a, b) { return cmp(a.from(), b.from()); }) primIndex = indexOf(ranges, prim) for (var i = 1; i < ranges.length; i++) { var cur = ranges[i], prev = ranges[i - 1] if (cmp(prev.to(), cur.from()) >= 0) { var from = minPos(prev.from(), cur.from()), to = maxPos(prev.to(), cur.to()) var inv = prev.empty() ? cur.from() == cur.head : prev.from() == prev.head if (i <= primIndex) { --primIndex } ranges.splice(--i, 2, new Range(inv ? to : from, inv ? from : to)) } } return new Selection(ranges, primIndex) } function simpleSelection(anchor, head) { return new Selection([new Range(anchor, head || anchor)], 0) } // Compute the position of the end of a change (its 'to' property // refers to the pre-change end). function changeEnd(change) { if (!change.text) { return change.to } return Pos(change.from.line + change.text.length - 1, lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0)) } // Adjust a position to refer to the post-change position of the // same text, or the end of the change if the change covers it. function adjustForChange(pos, change) { if (cmp(pos, change.from) < 0) { return pos } if (cmp(pos, change.to) <= 0) { return changeEnd(change) } var line = pos.line + change.text.length - (change.to.line - change.from.line) - 1, ch = pos.ch if (pos.line == change.to.line) { ch += changeEnd(change).ch - change.to.ch } return Pos(line, ch) } function computeSelAfterChange(doc, change) { var out = [] for (var i = 0; i < doc.sel.ranges.length; i++) { var range = doc.sel.ranges[i] out.push(new Range(adjustForChange(range.anchor, change), adjustForChange(range.head, change))) } return normalizeSelection(out, doc.sel.primIndex) } function offsetPos(pos, old, nw) { if (pos.line == old.line) { return Pos(nw.line, pos.ch - old.ch + nw.ch) } else { return Pos(nw.line + (pos.line - old.line), pos.ch) } } // Used by replaceSelections to allow moving the selection to the // start or around the replaced test. Hint may be "start" or "around". function computeReplacedSel(doc, changes, hint) { var out = [] var oldPrev = Pos(doc.first, 0), newPrev = oldPrev for (var i = 0; i < changes.length; i++) { var change = changes[i] var from = offsetPos(change.from, oldPrev, newPrev) var to = offsetPos(changeEnd(change), oldPrev, newPrev) oldPrev = change.to newPrev = to if (hint == "around") { var range = doc.sel.ranges[i], inv = cmp(range.head, range.anchor) < 0 out[i] = new Range(inv ? to : from, inv ? from : to) } else { out[i] = new Range(from, from) } } return new Selection(out, doc.sel.primIndex) } // Used to get the editor into a consistent state again when options change. function loadMode(cm) { cm.doc.mode = getMode(cm.options, cm.doc.modeOption) resetModeState(cm) } function resetModeState(cm) { cm.doc.iter(function (line) { if (line.stateAfter) { line.stateAfter = null } if (line.styles) { line.styles = null } }) cm.doc.modeFrontier = cm.doc.highlightFrontier = cm.doc.first startWorker(cm, 100) cm.state.modeGen++ if (cm.curOp) { regChange(cm) } } // DOCUMENT DATA STRUCTURE // By default, updates that start and end at the beginning of a line // are treated specially, in order to make the association of line // widgets and marker elements with the text behave more intuitive. function isWholeLineUpdate(doc, change) { return change.from.ch == 0 && change.to.ch == 0 && lst(change.text) == "" && (!doc.cm || doc.cm.options.wholeLineUpdateBefore) } // Perform a change on the document data structure. function updateDoc(doc, change, markedSpans, estimateHeight) { function spansFor(n) {return markedSpans ? markedSpans[n] : null} function update(line, text, spans) { updateLine(line, text, spans, estimateHeight) signalLater(line, "change", line, change) } function linesFor(start, end) { var result = [] for (var i = start; i < end; ++i) { result.push(new Line(text[i], spansFor(i), estimateHeight)) } return result } var from = change.from, to = change.to, text = change.text var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line) var lastText = lst(text), lastSpans = spansFor(text.length - 1), nlines = to.line - from.line // Adjust the line structure if (change.full) { doc.insert(0, linesFor(0, text.length)) doc.remove(text.length, doc.size - text.length) } else if (isWholeLineUpdate(doc, change)) { // This is a whole-line replace. Treated specially to make // sure line objects move the way they are supposed to. var added = linesFor(0, text.length - 1) update(lastLine, lastLine.text, lastSpans) if (nlines) { doc.remove(from.line, nlines) } if (added.length) { doc.insert(from.line, added) } } else if (firstLine == lastLine) { if (text.length == 1) { update(firstLine, firstLine.text.slice(0, from.ch) + lastText + firstLine.text.slice(to.ch), lastSpans) } else { var added$1 = linesFor(1, text.length - 1) added$1.push(new Line(lastText + firstLine.text.slice(to.ch), lastSpans, estimateHeight)) update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0)) doc.insert(from.line + 1, added$1) } } else if (text.length == 1) { update(firstLine, firstLine.text.slice(0, from.ch) + text[0] + lastLine.text.slice(to.ch), spansFor(0)) doc.remove(from.line + 1, nlines) } else { update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0)) update(lastLine, lastText + lastLine.text.slice(to.ch), lastSpans) var added$2 = linesFor(1, text.length - 1) if (nlines > 1) { doc.remove(from.line + 1, nlines - 1) } doc.insert(from.line + 1, added$2) } signalLater(doc, "change", doc, change) } // Call f for all linked documents. function linkedDocs(doc, f, sharedHistOnly) { function propagate(doc, skip, sharedHist) { if (doc.linked) { for (var i = 0; i < doc.linked.length; ++i) { var rel = doc.linked[i] if (rel.doc == skip) { continue } var shared = sharedHist && rel.sharedHist if (sharedHistOnly && !shared) { continue } f(rel.doc, shared) propagate(rel.doc, doc, shared) } } } propagate(doc, null, true) } // Attach a document to an editor. function attachDoc(cm, doc) { if (doc.cm) { throw new Error("This document is already in use.") } cm.doc = doc doc.cm = cm estimateLineHeights(cm) loadMode(cm) setDirectionClass(cm) if (!cm.options.lineWrapping) { findMaxLine(cm) } cm.options.mode = doc.modeOption regChange(cm) } function setDirectionClass(cm) { ;(cm.doc.direction == "rtl" ? addClass : rmClass)(cm.display.lineDiv, "CodeMirror-rtl") } function directionChanged(cm) { runInOp(cm, function () { setDirectionClass(cm) regChange(cm) }) } function History(startGen) { // Arrays of change events and selections. Doing something adds an // event to done and clears undo. Undoing moves events from done // to undone, redoing moves them in the other direction. this.done = []; this.undone = [] this.undoDepth = Infinity // Used to track when changes can be merged into a single undo // event this.lastModTime = this.lastSelTime = 0 this.lastOp = this.lastSelOp = null this.lastOrigin = this.lastSelOrigin = null // Used by the isClean() method this.generation = this.maxGeneration = startGen || 1 } // Create a history change event from an updateDoc-style change // object. function historyChangeFromChange(doc, change) { var histChange = {from: copyPos(change.from), to: changeEnd(change), text: getBetween(doc, change.from, change.to)} attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1) linkedDocs(doc, function (doc) { return attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1); }, true) return histChange } // Pop all selection events off the end of a history array. Stop at // a change event. function clearSelectionEvents(array) { while (array.length) { var last = lst(array) if (last.ranges) { array.pop() } else { break } } } // Find the top change event in the history. Pop off selection // events that are in the way. function lastChangeEvent(hist, force) { if (force) { clearSelectionEvents(hist.done) return lst(hist.done) } else if (hist.done.length && !lst(hist.done).ranges) { return lst(hist.done) } else if (hist.done.length > 1 && !hist.done[hist.done.length - 2].ranges) { hist.done.pop() return lst(hist.done) } } // Register a change in the history. Merges changes that are within // a single operation, or are close together with an origin that // allows merging (starting with "+") into a single event. function addChangeToHistory(doc, change, selAfter, opId) { var hist = doc.history hist.undone.length = 0 var time = +new Date, cur var last if ((hist.lastOp == opId || hist.lastOrigin == change.origin && change.origin && ((change.origin.charAt(0) == "+" && doc.cm && hist.lastModTime > time - doc.cm.options.historyEventDelay) || change.origin.charAt(0) == "*")) && (cur = lastChangeEvent(hist, hist.lastOp == opId))) { // Merge this change into the last event last = lst(cur.changes) if (cmp(change.from, change.to) == 0 && cmp(change.from, last.to) == 0) { // Optimized case for simple insertion -- don't want to add // new changesets for every character typed last.to = changeEnd(change) } else { // Add new sub-event cur.changes.push(historyChangeFromChange(doc, change)) } } else { // Can not be merged, start a new event. var before = lst(hist.done) if (!before || !before.ranges) { pushSelectionToHistory(doc.sel, hist.done) } cur = {changes: [historyChangeFromChange(doc, change)], generation: hist.generation} hist.done.push(cur) while (hist.done.length > hist.undoDepth) { hist.done.shift() if (!hist.done[0].ranges) { hist.done.shift() } } } hist.done.push(selAfter) hist.generation = ++hist.maxGeneration hist.lastModTime = hist.lastSelTime = time hist.lastOp = hist.lastSelOp = opId hist.lastOrigin = hist.lastSelOrigin = change.origin if (!last) { signal(doc, "historyAdded") } } function selectionEventCanBeMerged(doc, origin, prev, sel) { var ch = origin.charAt(0) return ch == "*" || ch == "+" && prev.ranges.length == sel.ranges.length && prev.somethingSelected() == sel.somethingSelected() && new Date - doc.history.lastSelTime <= (doc.cm ? doc.cm.options.historyEventDelay : 500) } // Called whenever the selection changes, sets the new selection as // the pending selection in the history, and pushes the old pending // selection into the 'done' array when it was significantly // different (in number of selected ranges, emptiness, or time). function addSelectionToHistory(doc, sel, opId, options) { var hist = doc.history, origin = options && options.origin // A new event is started when the previous origin does not match // the current, or the origins don't allow matching. Origins // starting with * are always merged, those starting with + are // merged when similar and close together in time. if (opId == hist.lastSelOp || (origin && hist.lastSelOrigin == origin && (hist.lastModTime == hist.lastSelTime && hist.lastOrigin == origin || selectionEventCanBeMerged(doc, origin, lst(hist.done), sel)))) { hist.done[hist.done.length - 1] = sel } else { pushSelectionToHistory(sel, hist.done) } hist.lastSelTime = +new Date hist.lastSelOrigin = origin hist.lastSelOp = opId if (options && options.clearRedo !== false) { clearSelectionEvents(hist.undone) } } function pushSelectionToHistory(sel, dest) { var top = lst(dest) if (!(top && top.ranges && top.equals(sel))) { dest.push(sel) } } // Used to store marked span information in the history. function attachLocalSpans(doc, change, from, to) { var existing = change["spans_" + doc.id], n = 0 doc.iter(Math.max(doc.first, from), Math.min(doc.first + doc.size, to), function (line) { if (line.markedSpans) { (existing || (existing = change["spans_" + doc.id] = {}))[n] = line.markedSpans } ++n }) } // When un/re-doing restores text containing marked spans, those // that have been explicitly cleared should not be restored. function removeClearedSpans(spans) { if (!spans) { return null } var out for (var i = 0; i < spans.length; ++i) { if (spans[i].marker.explicitlyCleared) { if (!out) { out = spans.slice(0, i) } } else if (out) { out.push(spans[i]) } } return !out ? spans : out.length ? out : null } // Retrieve and filter the old marked spans stored in a change event. function getOldSpans(doc, change) { var found = change["spans_" + doc.id] if (!found) { return null } var nw = [] for (var i = 0; i < change.text.length; ++i) { nw.push(removeClearedSpans(found[i])) } return nw } // Used for un/re-doing changes from the history. Combines the // result of computing the existing spans with the set of spans that // existed in the history (so that deleting around a span and then // undoing brings back the span). function mergeOldSpans(doc, change) { var old = getOldSpans(doc, change) var stretched = stretchSpansOverChange(doc, change) if (!old) { return stretched } if (!stretched) { return old } for (var i = 0; i < old.length; ++i) { var oldCur = old[i], stretchCur = stretched[i] if (oldCur && stretchCur) { spans: for (var j = 0; j < stretchCur.length; ++j) { var span = stretchCur[j] for (var k = 0; k < oldCur.length; ++k) { if (oldCur[k].marker == span.marker) { continue spans } } oldCur.push(span) } } else if (stretchCur) { old[i] = stretchCur } } return old } // Used both to provide a JSON-safe object in .getHistory, and, when // detaching a document, to split the history in two function copyHistoryArray(events, newGroup, instantiateSel) { var copy = [] for (var i = 0; i < events.length; ++i) { var event = events[i] if (event.ranges) { copy.push(instantiateSel ? Selection.prototype.deepCopy.call(event) : event) continue } var changes = event.changes, newChanges = [] copy.push({changes: newChanges}) for (var j = 0; j < changes.length; ++j) { var change = changes[j], m = (void 0) newChanges.push({from: change.from, to: change.to, text: change.text}) if (newGroup) { for (var prop in change) { if (m = prop.match(/^spans_(\d+)$/)) { if (indexOf(newGroup, Number(m[1])) > -1) { lst(newChanges)[prop] = change[prop] delete change[prop] } } } } } } return copy } // The 'scroll' parameter given to many of these indicated whether // the new cursor position should be scrolled into view after // modifying the selection. // If shift is held or the extend flag is set, extends a range to // include a given position (and optionally a second position). // Otherwise, simply returns the range between the given positions. // Used for cursor motion and such. function extendRange(range, head, other, extend) { if (extend) { var anchor = range.anchor if (other) { var posBefore = cmp(head, anchor) < 0 if (posBefore != (cmp(other, anchor) < 0)) { anchor = head head = other } else if (posBefore != (cmp(head, other) < 0)) { head = other } } return new Range(anchor, head) } else { return new Range(other || head, head) } } // Extend the primary selection range, discard the rest. function extendSelection(doc, head, other, options, extend) { if (extend == null) { extend = doc.cm && (doc.cm.display.shift || doc.extend) } setSelection(doc, new Selection([extendRange(doc.sel.primary(), head, other, extend)], 0), options) } // Extend all selections (pos is an array of selections with length // equal the number of selections) function extendSelections(doc, heads, options) { var out = [] var extend = doc.cm && (doc.cm.display.shift || doc.extend) for (var i = 0; i < doc.sel.ranges.length; i++) { out[i] = extendRange(doc.sel.ranges[i], heads[i], null, extend) } var newSel = normalizeSelection(out, doc.sel.primIndex) setSelection(doc, newSel, options) } // Updates a single range in the selection. function replaceOneSelection(doc, i, range, options) { var ranges = doc.sel.ranges.slice(0) ranges[i] = range setSelection(doc, normalizeSelection(ranges, doc.sel.primIndex), options) } // Reset the selection to a single range. function setSimpleSelection(doc, anchor, head, options) { setSelection(doc, simpleSelection(anchor, head), options) } // Give beforeSelectionChange handlers a change to influence a // selection update. function filterSelectionChange(doc, sel, options) { var obj = { ranges: sel.ranges, update: function(ranges) { var this$1 = this; this.ranges = [] for (var i = 0; i < ranges.length; i++) { this$1.ranges[i] = new Range(clipPos(doc, ranges[i].anchor), clipPos(doc, ranges[i].head)) } }, origin: options && options.origin } signal(doc, "beforeSelectionChange", doc, obj) if (doc.cm) { signal(doc.cm, "beforeSelectionChange", doc.cm, obj) } if (obj.ranges != sel.ranges) { return normalizeSelection(obj.ranges, obj.ranges.length - 1) } else { return sel } } function setSelectionReplaceHistory(doc, sel, options) { var done = doc.history.done, last = lst(done) if (last && last.ranges) { done[done.length - 1] = sel setSelectionNoUndo(doc, sel, options) } else { setSelection(doc, sel, options) } } // Set a new selection. function setSelection(doc, sel, options) { setSelectionNoUndo(doc, sel, options) addSelectionToHistory(doc, doc.sel, doc.cm ? doc.cm.curOp.id : NaN, options) } function setSelectionNoUndo(doc, sel, options) { if (hasHandler(doc, "beforeSelectionChange") || doc.cm && hasHandler(doc.cm, "beforeSelectionChange")) { sel = filterSelectionChange(doc, sel, options) } var bias = options && options.bias || (cmp(sel.primary().head, doc.sel.primary().head) < 0 ? -1 : 1) setSelectionInner(doc, skipAtomicInSelection(doc, sel, bias, true)) if (!(options && options.scroll === false) && doc.cm) { ensureCursorVisible(doc.cm) } } function setSelectionInner(doc, sel) { if (sel.equals(doc.sel)) { return } doc.sel = sel if (doc.cm) { doc.cm.curOp.updateInput = doc.cm.curOp.selectionChanged = true signalCursorActivity(doc.cm) } signalLater(doc, "cursorActivity", doc) } // Verify that the selection does not partially select any atomic // marked ranges. function reCheckSelection(doc) { setSelectionInner(doc, skipAtomicInSelection(doc, doc.sel, null, false)) } // Return a selection that does not partially select any atomic // ranges. function skipAtomicInSelection(doc, sel, bias, mayClear) { var out for (var i = 0; i < sel.ranges.length; i++) { var range = sel.ranges[i] var old = sel.ranges.length == doc.sel.ranges.length && doc.sel.ranges[i] var newAnchor = skipAtomic(doc, range.anchor, old && old.anchor, bias, mayClear) var newHead = skipAtomic(doc, range.head, old && old.head, bias, mayClear) if (out || newAnchor != range.anchor || newHead != range.head) { if (!out) { out = sel.ranges.slice(0, i) } out[i] = new Range(newAnchor, newHead) } } return out ? normalizeSelection(out, sel.primIndex) : sel } function skipAtomicInner(doc, pos, oldPos, dir, mayClear) { var line = getLine(doc, pos.line) if (line.markedSpans) { for (var i = 0; i < line.markedSpans.length; ++i) { var sp = line.markedSpans[i], m = sp.marker if ((sp.from == null || (m.inclusiveLeft ? sp.from <= pos.ch : sp.from < pos.ch)) && (sp.to == null || (m.inclusiveRight ? sp.to >= pos.ch : sp.to > pos.ch))) { if (mayClear) { signal(m, "beforeCursorEnter") if (m.explicitlyCleared) { if (!line.markedSpans) { break } else {--i; continue} } } if (!m.atomic) { continue } if (oldPos) { var near = m.find(dir < 0 ? 1 : -1), diff = (void 0) if (dir < 0 ? m.inclusiveRight : m.inclusiveLeft) { near = movePos(doc, near, -dir, near && near.line == pos.line ? line : null) } if (near && near.line == pos.line && (diff = cmp(near, oldPos)) && (dir < 0 ? diff < 0 : diff > 0)) { return skipAtomicInner(doc, near, pos, dir, mayClear) } } var far = m.find(dir < 0 ? -1 : 1) if (dir < 0 ? m.inclusiveLeft : m.inclusiveRight) { far = movePos(doc, far, dir, far.line == pos.line ? line : null) } return far ? skipAtomicInner(doc, far, pos, dir, mayClear) : null } } } return pos } // Ensure a given position is not inside an atomic range. function skipAtomic(doc, pos, oldPos, bias, mayClear) { var dir = bias || 1 var found = skipAtomicInner(doc, pos, oldPos, dir, mayClear) || (!mayClear && skipAtomicInner(doc, pos, oldPos, dir, true)) || skipAtomicInner(doc, pos, oldPos, -dir, mayClear) || (!mayClear && skipAtomicInner(doc, pos, oldPos, -dir, true)) if (!found) { doc.cantEdit = true return Pos(doc.first, 0) } return found } function movePos(doc, pos, dir, line) { if (dir < 0 && pos.ch == 0) { if (pos.line > doc.first) { return clipPos(doc, Pos(pos.line - 1)) } else { return null } } else if (dir > 0 && pos.ch == (line || getLine(doc, pos.line)).text.length) { if (pos.line < doc.first + doc.size - 1) { return Pos(pos.line + 1, 0) } else { return null } } else { return new Pos(pos.line, pos.ch + dir) } } function selectAll(cm) { cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()), sel_dontScroll) } // UPDATING // Allow "beforeChange" event handlers to influence a change function filterChange(doc, change, update) { var obj = { canceled: false, from: change.from, to: change.to, text: change.text, origin: change.origin, cancel: function () { return obj.canceled = true; } } if (update) { obj.update = function (from, to, text, origin) { if (from) { obj.from = clipPos(doc, from) } if (to) { obj.to = clipPos(doc, to) } if (text) { obj.text = text } if (origin !== undefined) { obj.origin = origin } } } signal(doc, "beforeChange", doc, obj) if (doc.cm) { signal(doc.cm, "beforeChange", doc.cm, obj) } if (obj.canceled) { return null } return {from: obj.from, to: obj.to, text: obj.text, origin: obj.origin} } // Apply a change to a document, and add it to the document's // history, and propagating it to all linked documents. function makeChange(doc, change, ignoreReadOnly) { if (doc.cm) { if (!doc.cm.curOp) { return operation(doc.cm, makeChange)(doc, change, ignoreReadOnly) } if (doc.cm.state.suppressEdits) { return } } if (hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange")) { change = filterChange(doc, change, true) if (!change) { return } } // Possibly split or suppress the update based on the presence // of read-only spans in its range. var split = sawReadOnlySpans && !ignoreReadOnly && removeReadOnlyRanges(doc, change.from, change.to) if (split) { for (var i = split.length - 1; i >= 0; --i) { makeChangeInner(doc, {from: split[i].from, to: split[i].to, text: i ? [""] : change.text, origin: change.origin}) } } else { makeChangeInner(doc, change) } } function makeChangeInner(doc, change) { if (change.text.length == 1 && change.text[0] == "" && cmp(change.from, change.to) == 0) { return } var selAfter = computeSelAfterChange(doc, change) addChangeToHistory(doc, change, selAfter, doc.cm ? doc.cm.curOp.id : NaN) makeChangeSingleDoc(doc, change, selAfter, stretchSpansOverChange(doc, change)) var rebased = [] linkedDocs(doc, function (doc, sharedHist) { if (!sharedHist && indexOf(rebased, doc.history) == -1) { rebaseHist(doc.history, change) rebased.push(doc.history) } makeChangeSingleDoc(doc, change, null, stretchSpansOverChange(doc, change)) }) } // Revert a change stored in a document's history. function makeChangeFromHistory(doc, type, allowSelectionOnly) { if (doc.cm && doc.cm.state.suppressEdits && !allowSelectionOnly) { return } var hist = doc.history, event, selAfter = doc.sel var source = type == "undo" ? hist.done : hist.undone, dest = type == "undo" ? hist.undone : hist.done // Verify that there is a useable event (so that ctrl-z won't // needlessly clear selection events) var i = 0 for (; i < source.length; i++) { event = source[i] if (allowSelectionOnly ? event.ranges && !event.equals(doc.sel) : !event.ranges) { break } } if (i == source.length) { return } hist.lastOrigin = hist.lastSelOrigin = null for (;;) { event = source.pop() if (event.ranges) { pushSelectionToHistory(event, dest) if (allowSelectionOnly && !event.equals(doc.sel)) { setSelection(doc, event, {clearRedo: false}) return } selAfter = event } else { break } } // Build up a reverse change object to add to the opposite history // stack (redo when undoing, and vice versa). var antiChanges = [] pushSelectionToHistory(selAfter, dest) dest.push({changes: antiChanges, generation: hist.generation}) hist.generation = event.generation || ++hist.maxGeneration var filter = hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange") var loop = function ( i ) { var change = event.changes[i] change.origin = type if (filter && !filterChange(doc, change, false)) { source.length = 0 return {} } antiChanges.push(historyChangeFromChange(doc, change)) var after = i ? computeSelAfterChange(doc, change) : lst(source) makeChangeSingleDoc(doc, change, after, mergeOldSpans(doc, change)) if (!i && doc.cm) { doc.cm.scrollIntoView({from: change.from, to: changeEnd(change)}) } var rebased = [] // Propagate to the linked documents linkedDocs(doc, function (doc, sharedHist) { if (!sharedHist && indexOf(rebased, doc.history) == -1) { rebaseHist(doc.history, change) rebased.push(doc.history) } makeChangeSingleDoc(doc, change, null, mergeOldSpans(doc, change)) }) }; for (var i$1 = event.changes.length - 1; i$1 >= 0; --i$1) { var returned = loop( i$1 ); if ( returned ) return returned.v; } } // Sub-views need their line numbers shifted when text is added // above or below them in the parent document. function shiftDoc(doc, distance) { if (distance == 0) { return } doc.first += distance doc.sel = new Selection(map(doc.sel.ranges, function (range) { return new Range( Pos(range.anchor.line + distance, range.anchor.ch), Pos(range.head.line + distance, range.head.ch) ); }), doc.sel.primIndex) if (doc.cm) { regChange(doc.cm, doc.first, doc.first - distance, distance) for (var d = doc.cm.display, l = d.viewFrom; l < d.viewTo; l++) { regLineChange(doc.cm, l, "gutter") } } } // More lower-level change function, handling only a single document // (not linked ones). function makeChangeSingleDoc(doc, change, selAfter, spans) { if (doc.cm && !doc.cm.curOp) { return operation(doc.cm, makeChangeSingleDoc)(doc, change, selAfter, spans) } if (change.to.line < doc.first) { shiftDoc(doc, change.text.length - 1 - (change.to.line - change.from.line)) return } if (change.from.line > doc.lastLine()) { return } // Clip the change to the size of this doc if (change.from.line < doc.first) { var shift = change.text.length - 1 - (doc.first - change.from.line) shiftDoc(doc, shift) change = {from: Pos(doc.first, 0), to: Pos(change.to.line + shift, change.to.ch), text: [lst(change.text)], origin: change.origin} } var last = doc.lastLine() if (change.to.line > last) { change = {from: change.from, to: Pos(last, getLine(doc, last).text.length), text: [change.text[0]], origin: change.origin} } change.removed = getBetween(doc, change.from, change.to) if (!selAfter) { selAfter = computeSelAfterChange(doc, change) } if (doc.cm) { makeChangeSingleDocInEditor(doc.cm, change, spans) } else { updateDoc(doc, change, spans) } setSelectionNoUndo(doc, selAfter, sel_dontScroll) } // Handle the interaction of a change to a document with the editor // that this document is part of. function makeChangeSingleDocInEditor(cm, change, spans) { var doc = cm.doc, display = cm.display, from = change.from, to = change.to var recomputeMaxLength = false, checkWidthStart = from.line if (!cm.options.lineWrapping) { checkWidthStart = lineNo(visualLine(getLine(doc, from.line))) doc.iter(checkWidthStart, to.line + 1, function (line) { if (line == display.maxLine) { recomputeMaxLength = true return true } }) } if (doc.sel.contains(change.from, change.to) > -1) { signalCursorActivity(cm) } updateDoc(doc, change, spans, estimateHeight(cm)) if (!cm.options.lineWrapping) { doc.iter(checkWidthStart, from.line + change.text.length, function (line) { var len = lineLength(line) if (len > display.maxLineLength) { display.maxLine = line display.maxLineLength = len display.maxLineChanged = true recomputeMaxLength = false } }) if (recomputeMaxLength) { cm.curOp.updateMaxLine = true } } retreatFrontier(doc, from.line) startWorker(cm, 400) var lendiff = change.text.length - (to.line - from.line) - 1 // Remember that these lines changed, for updating the display if (change.full) { regChange(cm) } else if (from.line == to.line && change.text.length == 1 && !isWholeLineUpdate(cm.doc, change)) { regLineChange(cm, from.line, "text") } else { regChange(cm, from.line, to.line + 1, lendiff) } var changesHandler = hasHandler(cm, "changes"), changeHandler = hasHandler(cm, "change") if (changeHandler || changesHandler) { var obj = { from: from, to: to, text: change.text, removed: change.removed, origin: change.origin } if (changeHandler) { signalLater(cm, "change", cm, obj) } if (changesHandler) { (cm.curOp.changeObjs || (cm.curOp.changeObjs = [])).push(obj) } } cm.display.selForContextMenu = null } function replaceRange(doc, code, from, to, origin) { if (!to) { to = from } if (cmp(to, from) < 0) { var assign; (assign = [to, from], from = assign[0], to = assign[1], assign) } if (typeof code == "string") { code = doc.splitLines(code) } makeChange(doc, {from: from, to: to, text: code, origin: origin}) } // Rebasing/resetting history to deal with externally-sourced changes function rebaseHistSelSingle(pos, from, to, diff) { if (to < pos.line) { pos.line += diff } else if (from < pos.line) { pos.line = from pos.ch = 0 } } // Tries to rebase an array of history events given a change in the // document. If the change touches the same lines as the event, the // event, and everything 'behind' it, is discarded. If the change is // before the event, the event's positions are updated. Uses a // copy-on-write scheme for the positions, to avoid having to // reallocate them all on every rebase, but also avoid problems with // shared position objects being unsafely updated. function rebaseHistArray(array, from, to, diff) { for (var i = 0; i < array.length; ++i) { var sub = array[i], ok = true if (sub.ranges) { if (!sub.copied) { sub = array[i] = sub.deepCopy(); sub.copied = true } for (var j = 0; j < sub.ranges.length; j++) { rebaseHistSelSingle(sub.ranges[j].anchor, from, to, diff) rebaseHistSelSingle(sub.ranges[j].head, from, to, diff) } continue } for (var j$1 = 0; j$1 < sub.changes.length; ++j$1) { var cur = sub.changes[j$1] if (to < cur.from.line) { cur.from = Pos(cur.from.line + diff, cur.from.ch) cur.to = Pos(cur.to.line + diff, cur.to.ch) } else if (from <= cur.to.line) { ok = false break } } if (!ok) { array.splice(0, i + 1) i = 0 } } } function rebaseHist(hist, change) { var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1 rebaseHistArray(hist.done, from, to, diff) rebaseHistArray(hist.undone, from, to, diff) } // Utility for applying a change to a line by handle or number, // returning the number and optionally registering the line as // changed. function changeLine(doc, handle, changeType, op) { var no = handle, line = handle if (typeof handle == "number") { line = getLine(doc, clipLine(doc, handle)) } else { no = lineNo(handle) } if (no == null) { return null } if (op(line, no) && doc.cm) { regLineChange(doc.cm, no, changeType) } return line } // The document is represented as a BTree consisting of leaves, with // chunk of lines in them, and branches, with up to ten leaves or // other branch nodes below them. The top node is always a branch // node, and is the document object itself (meaning it has // additional methods and properties). // // All nodes have parent links. The tree is used both to go from // line numbers to line objects, and to go from objects to numbers. // It also indexes by height, and is used to convert between height // and line object, and to find the total height of the document. // // See also http://marijnhaverbeke.nl/blog/codemirror-line-tree.html function LeafChunk(lines) { var this$1 = this; this.lines = lines this.parent = null var height = 0 for (var i = 0; i < lines.length; ++i) { lines[i].parent = this$1 height += lines[i].height } this.height = height } LeafChunk.prototype = { chunkSize: function chunkSize() { return this.lines.length }, // Remove the n lines at offset 'at'. removeInner: function removeInner(at, n) { var this$1 = this; for (var i = at, e = at + n; i < e; ++i) { var line = this$1.lines[i] this$1.height -= line.height cleanUpLine(line) signalLater(line, "delete") } this.lines.splice(at, n) }, // Helper used to collapse a small branch into a single leaf. collapse: function collapse(lines) { lines.push.apply(lines, this.lines) }, // Insert the given array of lines at offset 'at', count them as // having the given height. insertInner: function insertInner(at, lines, height) { var this$1 = this; this.height += height this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at)) for (var i = 0; i < lines.length; ++i) { lines[i].parent = this$1 } }, // Used to iterate over a part of the tree. iterN: function iterN(at, n, op) { var this$1 = this; for (var e = at + n; at < e; ++at) { if (op(this$1.lines[at])) { return true } } } } function BranchChunk(children) { var this$1 = this; this.children = children var size = 0, height = 0 for (var i = 0; i < children.length; ++i) { var ch = children[i] size += ch.chunkSize(); height += ch.height ch.parent = this$1 } this.size = size this.height = height this.parent = null } BranchChunk.prototype = { chunkSize: function chunkSize() { return this.size }, removeInner: function removeInner(at, n) { var this$1 = this; this.size -= n for (var i = 0; i < this.children.length; ++i) { var child = this$1.children[i], sz = child.chunkSize() if (at < sz) { var rm = Math.min(n, sz - at), oldHeight = child.height child.removeInner(at, rm) this$1.height -= oldHeight - child.height if (sz == rm) { this$1.children.splice(i--, 1); child.parent = null } if ((n -= rm) == 0) { break } at = 0 } else { at -= sz } } // If the result is smaller than 25 lines, ensure that it is a // single leaf node. if (this.size - n < 25 && (this.children.length > 1 || !(this.children[0] instanceof LeafChunk))) { var lines = [] this.collapse(lines) this.children = [new LeafChunk(lines)] this.children[0].parent = this } }, collapse: function collapse(lines) { var this$1 = this; for (var i = 0; i < this.children.length; ++i) { this$1.children[i].collapse(lines) } }, insertInner: function insertInner(at, lines, height) { var this$1 = this; this.size += lines.length this.height += height for (var i = 0; i < this.children.length; ++i) { var child = this$1.children[i], sz = child.chunkSize() if (at <= sz) { child.insertInner(at, lines, height) if (child.lines && child.lines.length > 50) { // To avoid memory thrashing when child.lines is huge (e.g. first view of a large file), it's never spliced. // Instead, small slices are taken. They're taken in order because sequential memory accesses are fastest. var remaining = child.lines.length % 25 + 25 for (var pos = remaining; pos < child.lines.length;) { var leaf = new LeafChunk(child.lines.slice(pos, pos += 25)) child.height -= leaf.height this$1.children.splice(++i, 0, leaf) leaf.parent = this$1 } child.lines = child.lines.slice(0, remaining) this$1.maybeSpill() } break } at -= sz } }, // When a node has grown, check whether it should be split. maybeSpill: function maybeSpill() { if (this.children.length <= 10) { return } var me = this do { var spilled = me.children.splice(me.children.length - 5, 5) var sibling = new BranchChunk(spilled) if (!me.parent) { // Become the parent node var copy = new BranchChunk(me.children) copy.parent = me me.children = [copy, sibling] me = copy } else { me.size -= sibling.size me.height -= sibling.height var myIndex = indexOf(me.parent.children, me) me.parent.children.splice(myIndex + 1, 0, sibling) } sibling.parent = me.parent } while (me.children.length > 10) me.parent.maybeSpill() }, iterN: function iterN(at, n, op) { var this$1 = this; for (var i = 0; i < this.children.length; ++i) { var child = this$1.children[i], sz = child.chunkSize() if (at < sz) { var used = Math.min(n, sz - at) if (child.iterN(at, used, op)) { return true } if ((n -= used) == 0) { break } at = 0 } else { at -= sz } } } } // Line widgets are block elements displayed above or below a line. var LineWidget = function(doc, node, options) { var this$1 = this; if (options) { for (var opt in options) { if (options.hasOwnProperty(opt)) { this$1[opt] = options[opt] } } } this.doc = doc this.node = node }; LineWidget.prototype.clear = function () { var this$1 = this; var cm = this.doc.cm, ws = this.line.widgets, line = this.line, no = lineNo(line) if (no == null || !ws) { return } for (var i = 0; i < ws.length; ++i) { if (ws[i] == this$1) { ws.splice(i--, 1) } } if (!ws.length) { line.widgets = null } var height = widgetHeight(this) updateLineHeight(line, Math.max(0, line.height - height)) if (cm) { runInOp(cm, function () { adjustScrollWhenAboveVisible(cm, line, -height) regLineChange(cm, no, "widget") }) signalLater(cm, "lineWidgetCleared", cm, this, no) } }; LineWidget.prototype.changed = function () { var this$1 = this; var oldH = this.height, cm = this.doc.cm, line = this.line this.height = null var diff = widgetHeight(this) - oldH if (!diff) { return } updateLineHeight(line, line.height + diff) if (cm) { runInOp(cm, function () { cm.curOp.forceUpdate = true adjustScrollWhenAboveVisible(cm, line, diff) signalLater(cm, "lineWidgetChanged", cm, this$1, lineNo(line)) }) } }; eventMixin(LineWidget) function adjustScrollWhenAboveVisible(cm, line, diff) { if (heightAtLine(line) < ((cm.curOp && cm.curOp.scrollTop) || cm.doc.scrollTop)) { addToScrollTop(cm, diff) } } function addLineWidget(doc, handle, node, options) { var widget = new LineWidget(doc, node, options) var cm = doc.cm if (cm && widget.noHScroll) { cm.display.alignWidgets = true } changeLine(doc, handle, "widget", function (line) { var widgets = line.widgets || (line.widgets = []) if (widget.insertAt == null) { widgets.push(widget) } else { widgets.splice(Math.min(widgets.length - 1, Math.max(0, widget.insertAt)), 0, widget) } widget.line = line if (cm && !lineIsHidden(doc, line)) { var aboveVisible = heightAtLine(line) < doc.scrollTop updateLineHeight(line, line.height + widgetHeight(widget)) if (aboveVisible) { addToScrollTop(cm, widget.height) } cm.curOp.forceUpdate = true } return true }) signalLater(cm, "lineWidgetAdded", cm, widget, typeof handle == "number" ? handle : lineNo(handle)) return widget } // TEXTMARKERS // Created with markText and setBookmark methods. A TextMarker is a // handle that can be used to clear or find a marked position in the // document. Line objects hold arrays (markedSpans) containing // {from, to, marker} object pointing to such marker objects, and // indicating that such a marker is present on that line. Multiple // lines may point to the same marker when it spans across lines. // The spans will have null for their from/to properties when the // marker continues beyond the start/end of the line. Markers have // links back to the lines they currently touch. // Collapsed markers have unique ids, in order to be able to order // them, which is needed for uniquely determining an outer marker // when they overlap (they may nest, but not partially overlap). var nextMarkerId = 0 var TextMarker = function(doc, type) { this.lines = [] this.type = type this.doc = doc this.id = ++nextMarkerId }; // Clear the marker. TextMarker.prototype.clear = function () { var this$1 = this; if (this.explicitlyCleared) { return } var cm = this.doc.cm, withOp = cm && !cm.curOp if (withOp) { startOperation(cm) } if (hasHandler(this, "clear")) { var found = this.find() if (found) { signalLater(this, "clear", found.from, found.to) } } var min = null, max = null for (var i = 0; i < this.lines.length; ++i) { var line = this$1.lines[i] var span = getMarkedSpanFor(line.markedSpans, this$1) if (cm && !this$1.collapsed) { regLineChange(cm, lineNo(line), "text") } else if (cm) { if (span.to != null) { max = lineNo(line) } if (span.from != null) { min = lineNo(line) } } line.markedSpans = removeMarkedSpan(line.markedSpans, span) if (span.from == null && this$1.collapsed && !lineIsHidden(this$1.doc, line) && cm) { updateLineHeight(line, textHeight(cm.display)) } } if (cm && this.collapsed && !cm.options.lineWrapping) { for (var i$1 = 0; i$1 < this.lines.length; ++i$1) { var visual = visualLine(this$1.lines[i$1]), len = lineLength(visual) if (len > cm.display.maxLineLength) { cm.display.maxLine = visual cm.display.maxLineLength = len cm.display.maxLineChanged = true } } } if (min != null && cm && this.collapsed) { regChange(cm, min, max + 1) } this.lines.length = 0 this.explicitlyCleared = true if (this.atomic && this.doc.cantEdit) { this.doc.cantEdit = false if (cm) { reCheckSelection(cm.doc) } } if (cm) { signalLater(cm, "markerCleared", cm, this, min, max) } if (withOp) { endOperation(cm) } if (this.parent) { this.parent.clear() } }; // Find the position of the marker in the document. Returns a {from, // to} object by default. Side can be passed to get a specific side // -- 0 (both), -1 (left), or 1 (right). When lineObj is true, the // Pos objects returned contain a line object, rather than a line // number (used to prevent looking up the same line twice). TextMarker.prototype.find = function (side, lineObj) { var this$1 = this; if (side == null && this.type == "bookmark") { side = 1 } var from, to for (var i = 0; i < this.lines.length; ++i) { var line = this$1.lines[i] var span = getMarkedSpanFor(line.markedSpans, this$1) if (span.from != null) { from = Pos(lineObj ? line : lineNo(line), span.from) if (side == -1) { return from } } if (span.to != null) { to = Pos(lineObj ? line : lineNo(line), span.to) if (side == 1) { return to } } } return from && {from: from, to: to} }; // Signals that the marker's widget changed, and surrounding layout // should be recomputed. TextMarker.prototype.changed = function () { var this$1 = this; var pos = this.find(-1, true), widget = this, cm = this.doc.cm if (!pos || !cm) { return } runInOp(cm, function () { var line = pos.line, lineN = lineNo(pos.line) var view = findViewForLine(cm, lineN) if (view) { clearLineMeasurementCacheFor(view) cm.curOp.selectionChanged = cm.curOp.forceUpdate = true } cm.curOp.updateMaxLine = true if (!lineIsHidden(widget.doc, line) && widget.height != null) { var oldHeight = widget.height widget.height = null var dHeight = widgetHeight(widget) - oldHeight if (dHeight) { updateLineHeight(line, line.height + dHeight) } } signalLater(cm, "markerChanged", cm, this$1) }) }; TextMarker.prototype.attachLine = function (line) { if (!this.lines.length && this.doc.cm) { var op = this.doc.cm.curOp if (!op.maybeHiddenMarkers || indexOf(op.maybeHiddenMarkers, this) == -1) { (op.maybeUnhiddenMarkers || (op.maybeUnhiddenMarkers = [])).push(this) } } this.lines.push(line) }; TextMarker.prototype.detachLine = function (line) { this.lines.splice(indexOf(this.lines, line), 1) if (!this.lines.length && this.doc.cm) { var op = this.doc.cm.curOp ;(op.maybeHiddenMarkers || (op.maybeHiddenMarkers = [])).push(this) } }; eventMixin(TextMarker) // Create a marker, wire it up to the right lines, and function markText(doc, from, to, options, type) { // Shared markers (across linked documents) are handled separately // (markTextShared will call out to this again, once per // document). if (options && options.shared) { return markTextShared(doc, from, to, options, type) } // Ensure we are in an operation. if (doc.cm && !doc.cm.curOp) { return operation(doc.cm, markText)(doc, from, to, options, type) } var marker = new TextMarker(doc, type), diff = cmp(from, to) if (options) { copyObj(options, marker, false) } // Don't connect empty markers unless clearWhenEmpty is false if (diff > 0 || diff == 0 && marker.clearWhenEmpty !== false) { return marker } if (marker.replacedWith) { // Showing up as a widget implies collapsed (widget replaces text) marker.collapsed = true marker.widgetNode = eltP("span", [marker.replacedWith], "CodeMirror-widget") if (!options.handleMouseEvents) { marker.widgetNode.setAttribute("cm-ignore-events", "true") } if (options.insertLeft) { marker.widgetNode.insertLeft = true } } if (marker.collapsed) { if (conflictingCollapsedRange(doc, from.line, from, to, marker) || from.line != to.line && conflictingCollapsedRange(doc, to.line, from, to, marker)) { throw new Error("Inserting collapsed marker partially overlapping an existing one") } seeCollapsedSpans() } if (marker.addToHistory) { addChangeToHistory(doc, {from: from, to: to, origin: "markText"}, doc.sel, NaN) } var curLine = from.line, cm = doc.cm, updateMaxLine doc.iter(curLine, to.line + 1, function (line) { if (cm && marker.collapsed && !cm.options.lineWrapping && visualLine(line) == cm.display.maxLine) { updateMaxLine = true } if (marker.collapsed && curLine != from.line) { updateLineHeight(line, 0) } addMarkedSpan(line, new MarkedSpan(marker, curLine == from.line ? from.ch : null, curLine == to.line ? to.ch : null)) ++curLine }) // lineIsHidden depends on the presence of the spans, so needs a second pass if (marker.collapsed) { doc.iter(from.line, to.line + 1, function (line) { if (lineIsHidden(doc, line)) { updateLineHeight(line, 0) } }) } if (marker.clearOnEnter) { on(marker, "beforeCursorEnter", function () { return marker.clear(); }) } if (marker.readOnly) { seeReadOnlySpans() if (doc.history.done.length || doc.history.undone.length) { doc.clearHistory() } } if (marker.collapsed) { marker.id = ++nextMarkerId marker.atomic = true } if (cm) { // Sync editor state if (updateMaxLine) { cm.curOp.updateMaxLine = true } if (marker.collapsed) { regChange(cm, from.line, to.line + 1) } else if (marker.className || marker.title || marker.startStyle || marker.endStyle || marker.css) { for (var i = from.line; i <= to.line; i++) { regLineChange(cm, i, "text") } } if (marker.atomic) { reCheckSelection(cm.doc) } signalLater(cm, "markerAdded", cm, marker) } return marker } // SHARED TEXTMARKERS // A shared marker spans multiple linked documents. It is // implemented as a meta-marker-object controlling multiple normal // markers. var SharedTextMarker = function(markers, primary) { var this$1 = this; this.markers = markers this.primary = primary for (var i = 0; i < markers.length; ++i) { markers[i].parent = this$1 } }; SharedTextMarker.prototype.clear = function () { var this$1 = this; if (this.explicitlyCleared) { return } this.explicitlyCleared = true for (var i = 0; i < this.markers.length; ++i) { this$1.markers[i].clear() } signalLater(this, "clear") }; SharedTextMarker.prototype.find = function (side, lineObj) { return this.primary.find(side, lineObj) }; eventMixin(SharedTextMarker) function markTextShared(doc, from, to, options, type) { options = copyObj(options) options.shared = false var markers = [markText(doc, from, to, options, type)], primary = markers[0] var widget = options.widgetNode linkedDocs(doc, function (doc) { if (widget) { options.widgetNode = widget.cloneNode(true) } markers.push(markText(doc, clipPos(doc, from), clipPos(doc, to), options, type)) for (var i = 0; i < doc.linked.length; ++i) { if (doc.linked[i].isParent) { return } } primary = lst(markers) }) return new SharedTextMarker(markers, primary) } function findSharedMarkers(doc) { return doc.findMarks(Pos(doc.first, 0), doc.clipPos(Pos(doc.lastLine())), function (m) { return m.parent; }) } function copySharedMarkers(doc, markers) { for (var i = 0; i < markers.length; i++) { var marker = markers[i], pos = marker.find() var mFrom = doc.clipPos(pos.from), mTo = doc.clipPos(pos.to) if (cmp(mFrom, mTo)) { var subMark = markText(doc, mFrom, mTo, marker.primary, marker.primary.type) marker.markers.push(subMark) subMark.parent = marker } } } function detachSharedMarkers(markers) { var loop = function ( i ) { var marker = markers[i], linked = [marker.primary.doc] linkedDocs(marker.primary.doc, function (d) { return linked.push(d); }) for (var j = 0; j < marker.markers.length; j++) { var subMarker = marker.markers[j] if (indexOf(linked, subMarker.doc) == -1) { subMarker.parent = null marker.markers.splice(j--, 1) } } }; for (var i = 0; i < markers.length; i++) loop( i ); } var nextDocId = 0 var Doc = function(text, mode, firstLine, lineSep, direction) { if (!(this instanceof Doc)) { return new Doc(text, mode, firstLine, lineSep, direction) } if (firstLine == null) { firstLine = 0 } BranchChunk.call(this, [new LeafChunk([new Line("", null)])]) this.first = firstLine this.scrollTop = this.scrollLeft = 0 this.cantEdit = false this.cleanGeneration = 1 this.modeFrontier = this.highlightFrontier = firstLine var start = Pos(firstLine, 0) this.sel = simpleSelection(start) this.history = new History(null) this.id = ++nextDocId this.modeOption = mode this.lineSep = lineSep this.direction = (direction == "rtl") ? "rtl" : "ltr" this.extend = false if (typeof text == "string") { text = this.splitLines(text) } updateDoc(this, {from: start, to: start, text: text}) setSelection(this, simpleSelection(start), sel_dontScroll) } Doc.prototype = createObj(BranchChunk.prototype, { constructor: Doc, // Iterate over the document. Supports two forms -- with only one // argument, it calls that for each line in the document. With // three, it iterates over the range given by the first two (with // the second being non-inclusive). iter: function(from, to, op) { if (op) { this.iterN(from - this.first, to - from, op) } else { this.iterN(this.first, this.first + this.size, from) } }, // Non-public interface for adding and removing lines. insert: function(at, lines) { var height = 0 for (var i = 0; i < lines.length; ++i) { height += lines[i].height } this.insertInner(at - this.first, lines, height) }, remove: function(at, n) { this.removeInner(at - this.first, n) }, // From here, the methods are part of the public interface. Most // are also available from CodeMirror (editor) instances. getValue: function(lineSep) { var lines = getLines(this, this.first, this.first + this.size) if (lineSep === false) { return lines } return lines.join(lineSep || this.lineSeparator()) }, setValue: docMethodOp(function(code) { var top = Pos(this.first, 0), last = this.first + this.size - 1 makeChange(this, {from: top, to: Pos(last, getLine(this, last).text.length), text: this.splitLines(code), origin: "setValue", full: true}, true) if (this.cm) { scrollToCoords(this.cm, 0, 0) } setSelection(this, simpleSelection(top), sel_dontScroll) }), replaceRange: function(code, from, to, origin) { from = clipPos(this, from) to = to ? clipPos(this, to) : from replaceRange(this, code, from, to, origin) }, getRange: function(from, to, lineSep) { var lines = getBetween(this, clipPos(this, from), clipPos(this, to)) if (lineSep === false) { return lines } return lines.join(lineSep || this.lineSeparator()) }, getLine: function(line) {var l = this.getLineHandle(line); return l && l.text}, getLineHandle: function(line) {if (isLine(this, line)) { return getLine(this, line) }}, getLineNumber: function(line) {return lineNo(line)}, getLineHandleVisualStart: function(line) { if (typeof line == "number") { line = getLine(this, line) } return visualLine(line) }, lineCount: function() {return this.size}, firstLine: function() {return this.first}, lastLine: function() {return this.first + this.size - 1}, clipPos: function(pos) {return clipPos(this, pos)}, getCursor: function(start) { var range = this.sel.primary(), pos if (start == null || start == "head") { pos = range.head } else if (start == "anchor") { pos = range.anchor } else if (start == "end" || start == "to" || start === false) { pos = range.to() } else { pos = range.from() } return pos }, listSelections: function() { return this.sel.ranges }, somethingSelected: function() {return this.sel.somethingSelected()}, setCursor: docMethodOp(function(line, ch, options) { setSimpleSelection(this, clipPos(this, typeof line == "number" ? Pos(line, ch || 0) : line), null, options) }), setSelection: docMethodOp(function(anchor, head, options) { setSimpleSelection(this, clipPos(this, anchor), clipPos(this, head || anchor), options) }), extendSelection: docMethodOp(function(head, other, options) { extendSelection(this, clipPos(this, head), other && clipPos(this, other), options) }), extendSelections: docMethodOp(function(heads, options) { extendSelections(this, clipPosArray(this, heads), options) }), extendSelectionsBy: docMethodOp(function(f, options) { var heads = map(this.sel.ranges, f) extendSelections(this, clipPosArray(this, heads), options) }), setSelections: docMethodOp(function(ranges, primary, options) { var this$1 = this; if (!ranges.length) { return } var out = [] for (var i = 0; i < ranges.length; i++) { out[i] = new Range(clipPos(this$1, ranges[i].anchor), clipPos(this$1, ranges[i].head)) } if (primary == null) { primary = Math.min(ranges.length - 1, this.sel.primIndex) } setSelection(this, normalizeSelection(out, primary), options) }), addSelection: docMethodOp(function(anchor, head, options) { var ranges = this.sel.ranges.slice(0) ranges.push(new Range(clipPos(this, anchor), clipPos(this, head || anchor))) setSelection(this, normalizeSelection(ranges, ranges.length - 1), options) }), getSelection: function(lineSep) { var this$1 = this; var ranges = this.sel.ranges, lines for (var i = 0; i < ranges.length; i++) { var sel = getBetween(this$1, ranges[i].from(), ranges[i].to()) lines = lines ? lines.concat(sel) : sel } if (lineSep === false) { return lines } else { return lines.join(lineSep || this.lineSeparator()) } }, getSelections: function(lineSep) { var this$1 = this; var parts = [], ranges = this.sel.ranges for (var i = 0; i < ranges.length; i++) { var sel = getBetween(this$1, ranges[i].from(), ranges[i].to()) if (lineSep !== false) { sel = sel.join(lineSep || this$1.lineSeparator()) } parts[i] = sel } return parts }, replaceSelection: function(code, collapse, origin) { var dup = [] for (var i = 0; i < this.sel.ranges.length; i++) { dup[i] = code } this.replaceSelections(dup, collapse, origin || "+input") }, replaceSelections: docMethodOp(function(code, collapse, origin) { var this$1 = this; var changes = [], sel = this.sel for (var i = 0; i < sel.ranges.length; i++) { var range = sel.ranges[i] changes[i] = {from: range.from(), to: range.to(), text: this$1.splitLines(code[i]), origin: origin} } var newSel = collapse && collapse != "end" && computeReplacedSel(this, changes, collapse) for (var i$1 = changes.length - 1; i$1 >= 0; i$1--) { makeChange(this$1, changes[i$1]) } if (newSel) { setSelectionReplaceHistory(this, newSel) } else if (this.cm) { ensureCursorVisible(this.cm) } }), undo: docMethodOp(function() {makeChangeFromHistory(this, "undo")}), redo: docMethodOp(function() {makeChangeFromHistory(this, "redo")}), undoSelection: docMethodOp(function() {makeChangeFromHistory(this, "undo", true)}), redoSelection: docMethodOp(function() {makeChangeFromHistory(this, "redo", true)}), setExtending: function(val) {this.extend = val}, getExtending: function() {return this.extend}, historySize: function() { var hist = this.history, done = 0, undone = 0 for (var i = 0; i < hist.done.length; i++) { if (!hist.done[i].ranges) { ++done } } for (var i$1 = 0; i$1 < hist.undone.length; i$1++) { if (!hist.undone[i$1].ranges) { ++undone } } return {undo: done, redo: undone} }, clearHistory: function() {this.history = new History(this.history.maxGeneration)}, markClean: function() { this.cleanGeneration = this.changeGeneration(true) }, changeGeneration: function(forceSplit) { if (forceSplit) { this.history.lastOp = this.history.lastSelOp = this.history.lastOrigin = null } return this.history.generation }, isClean: function (gen) { return this.history.generation == (gen || this.cleanGeneration) }, getHistory: function() { return {done: copyHistoryArray(this.history.done), undone: copyHistoryArray(this.history.undone)} }, setHistory: function(histData) { var hist = this.history = new History(this.history.maxGeneration) hist.done = copyHistoryArray(histData.done.slice(0), null, true) hist.undone = copyHistoryArray(histData.undone.slice(0), null, true) }, setGutterMarker: docMethodOp(function(line, gutterID, value) { return changeLine(this, line, "gutter", function (line) { var markers = line.gutterMarkers || (line.gutterMarkers = {}) markers[gutterID] = value if (!value && isEmpty(markers)) { line.gutterMarkers = null } return true }) }), clearGutter: docMethodOp(function(gutterID) { var this$1 = this; this.iter(function (line) { if (line.gutterMarkers && line.gutterMarkers[gutterID]) { changeLine(this$1, line, "gutter", function () { line.gutterMarkers[gutterID] = null if (isEmpty(line.gutterMarkers)) { line.gutterMarkers = null } return true }) } }) }), lineInfo: function(line) { var n if (typeof line == "number") { if (!isLine(this, line)) { return null } n = line line = getLine(this, line) if (!line) { return null } } else { n = lineNo(line) if (n == null) { return null } } return {line: n, handle: line, text: line.text, gutterMarkers: line.gutterMarkers, textClass: line.textClass, bgClass: line.bgClass, wrapClass: line.wrapClass, widgets: line.widgets} }, addLineClass: docMethodOp(function(handle, where, cls) { return changeLine(this, handle, where == "gutter" ? "gutter" : "class", function (line) { var prop = where == "text" ? "textClass" : where == "background" ? "bgClass" : where == "gutter" ? "gutterClass" : "wrapClass" if (!line[prop]) { line[prop] = cls } else if (classTest(cls).test(line[prop])) { return false } else { line[prop] += " " + cls } return true }) }), removeLineClass: docMethodOp(function(handle, where, cls) { return changeLine(this, handle, where == "gutter" ? "gutter" : "class", function (line) { var prop = where == "text" ? "textClass" : where == "background" ? "bgClass" : where == "gutter" ? "gutterClass" : "wrapClass" var cur = line[prop] if (!cur) { return false } else if (cls == null) { line[prop] = null } else { var found = cur.match(classTest(cls)) if (!found) { return false } var end = found.index + found[0].length line[prop] = cur.slice(0, found.index) + (!found.index || end == cur.length ? "" : " ") + cur.slice(end) || null } return true }) }), addLineWidget: docMethodOp(function(handle, node, options) { return addLineWidget(this, handle, node, options) }), removeLineWidget: function(widget) { widget.clear() }, markText: function(from, to, options) { return markText(this, clipPos(this, from), clipPos(this, to), options, options && options.type || "range") }, setBookmark: function(pos, options) { var realOpts = {replacedWith: options && (options.nodeType == null ? options.widget : options), insertLeft: options && options.insertLeft, clearWhenEmpty: false, shared: options && options.shared, handleMouseEvents: options && options.handleMouseEvents} pos = clipPos(this, pos) return markText(this, pos, pos, realOpts, "bookmark") }, findMarksAt: function(pos) { pos = clipPos(this, pos) var markers = [], spans = getLine(this, pos.line).markedSpans if (spans) { for (var i = 0; i < spans.length; ++i) { var span = spans[i] if ((span.from == null || span.from <= pos.ch) && (span.to == null || span.to >= pos.ch)) { markers.push(span.marker.parent || span.marker) } } } return markers }, findMarks: function(from, to, filter) { from = clipPos(this, from); to = clipPos(this, to) var found = [], lineNo = from.line this.iter(from.line, to.line + 1, function (line) { var spans = line.markedSpans if (spans) { for (var i = 0; i < spans.length; i++) { var span = spans[i] if (!(span.to != null && lineNo == from.line && from.ch >= span.to || span.from == null && lineNo != from.line || span.from != null && lineNo == to.line && span.from >= to.ch) && (!filter || filter(span.marker))) { found.push(span.marker.parent || span.marker) } } } ++lineNo }) return found }, getAllMarks: function() { var markers = [] this.iter(function (line) { var sps = line.markedSpans if (sps) { for (var i = 0; i < sps.length; ++i) { if (sps[i].from != null) { markers.push(sps[i].marker) } } } }) return markers }, posFromIndex: function(off) { var ch, lineNo = this.first, sepSize = this.lineSeparator().length this.iter(function (line) { var sz = line.text.length + sepSize if (sz > off) { ch = off; return true } off -= sz ++lineNo }) return clipPos(this, Pos(lineNo, ch)) }, indexFromPos: function (coords) { coords = clipPos(this, coords) var index = coords.ch if (coords.line < this.first || coords.ch < 0) { return 0 } var sepSize = this.lineSeparator().length this.iter(this.first, coords.line, function (line) { // iter aborts when callback returns a truthy value index += line.text.length + sepSize }) return index }, copy: function(copyHistory) { var doc = new Doc(getLines(this, this.first, this.first + this.size), this.modeOption, this.first, this.lineSep, this.direction) doc.scrollTop = this.scrollTop; doc.scrollLeft = this.scrollLeft doc.sel = this.sel doc.extend = false if (copyHistory) { doc.history.undoDepth = this.history.undoDepth doc.setHistory(this.getHistory()) } return doc }, linkedDoc: function(options) { if (!options) { options = {} } var from = this.first, to = this.first + this.size if (options.from != null && options.from > from) { from = options.from } if (options.to != null && options.to < to) { to = options.to } var copy = new Doc(getLines(this, from, to), options.mode || this.modeOption, from, this.lineSep, this.direction) if (options.sharedHist) { copy.history = this.history ; }(this.linked || (this.linked = [])).push({doc: copy, sharedHist: options.sharedHist}) copy.linked = [{doc: this, isParent: true, sharedHist: options.sharedHist}] copySharedMarkers(copy, findSharedMarkers(this)) return copy }, unlinkDoc: function(other) { var this$1 = this; if (other instanceof CodeMirror) { other = other.doc } if (this.linked) { for (var i = 0; i < this.linked.length; ++i) { var link = this$1.linked[i] if (link.doc != other) { continue } this$1.linked.splice(i, 1) other.unlinkDoc(this$1) detachSharedMarkers(findSharedMarkers(this$1)) break } } // If the histories were shared, split them again if (other.history == this.history) { var splitIds = [other.id] linkedDocs(other, function (doc) { return splitIds.push(doc.id); }, true) other.history = new History(null) other.history.done = copyHistoryArray(this.history.done, splitIds) other.history.undone = copyHistoryArray(this.history.undone, splitIds) } }, iterLinkedDocs: function(f) {linkedDocs(this, f)}, getMode: function() {return this.mode}, getEditor: function() {return this.cm}, splitLines: function(str) { if (this.lineSep) { return str.split(this.lineSep) } return splitLinesAuto(str) }, lineSeparator: function() { return this.lineSep || "\n" }, setDirection: docMethodOp(function (dir) { if (dir != "rtl") { dir = "ltr" } if (dir == this.direction) { return } this.direction = dir this.iter(function (line) { return line.order = null; }) if (this.cm) { directionChanged(this.cm) } }) }) // Public alias. Doc.prototype.eachLine = Doc.prototype.iter // Kludge to work around strange IE behavior where it'll sometimes // re-fire a series of drag-related events right after the drop (#1551) var lastDrop = 0 function onDrop(e) { var cm = this clearDragCursor(cm) if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) { return } e_preventDefault(e) if (ie) { lastDrop = +new Date } var pos = posFromMouse(cm, e, true), files = e.dataTransfer.files if (!pos || cm.isReadOnly()) { return } // Might be a file drop, in which case we simply extract the text // and insert it. if (files && files.length && window.FileReader && window.File) { var n = files.length, text = Array(n), read = 0 var loadFile = function (file, i) { if (cm.options.allowDropFileTypes && indexOf(cm.options.allowDropFileTypes, file.type) == -1) { return } var reader = new FileReader reader.onload = operation(cm, function () { var content = reader.result if (/[\x00-\x08\x0e-\x1f]{2}/.test(content)) { content = "" } text[i] = content if (++read == n) { pos = clipPos(cm.doc, pos) var change = {from: pos, to: pos, text: cm.doc.splitLines(text.join(cm.doc.lineSeparator())), origin: "paste"} makeChange(cm.doc, change) setSelectionReplaceHistory(cm.doc, simpleSelection(pos, changeEnd(change))) } }) reader.readAsText(file) } for (var i = 0; i < n; ++i) { loadFile(files[i], i) } } else { // Normal drop // Don't do a replace if the drop happened inside of the selected text. if (cm.state.draggingText && cm.doc.sel.contains(pos) > -1) { cm.state.draggingText(e) // Ensure the editor is re-focused setTimeout(function () { return cm.display.input.focus(); }, 20) return } try { var text$1 = e.dataTransfer.getData("Text") if (text$1) { var selected if (cm.state.draggingText && !cm.state.draggingText.copy) { selected = cm.listSelections() } setSelectionNoUndo(cm.doc, simpleSelection(pos, pos)) if (selected) { for (var i$1 = 0; i$1 < selected.length; ++i$1) { replaceRange(cm.doc, "", selected[i$1].anchor, selected[i$1].head, "drag") } } cm.replaceSelection(text$1, "around", "paste") cm.display.input.focus() } } catch(e){} } } function onDragStart(cm, e) { if (ie && (!cm.state.draggingText || +new Date - lastDrop < 100)) { e_stop(e); return } if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) { return } e.dataTransfer.setData("Text", cm.getSelection()) e.dataTransfer.effectAllowed = "copyMove" // Use dummy image instead of default browsers image. // Recent Safari (~6.0.2) have a tendency to segfault when this happens, so we don't do it there. if (e.dataTransfer.setDragImage && !safari) { var img = elt("img", null, null, "position: fixed; left: 0; top: 0;") img.src = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" if (presto) { img.width = img.height = 1 cm.display.wrapper.appendChild(img) // Force a relayout, or Opera won't use our image for some obscure reason img._top = img.offsetTop } e.dataTransfer.setDragImage(img, 0, 0) if (presto) { img.parentNode.removeChild(img) } } } function onDragOver(cm, e) { var pos = posFromMouse(cm, e) if (!pos) { return } var frag = document.createDocumentFragment() drawSelectionCursor(cm, pos, frag) if (!cm.display.dragCursor) { cm.display.dragCursor = elt("div", null, "CodeMirror-cursors CodeMirror-dragcursors") cm.display.lineSpace.insertBefore(cm.display.dragCursor, cm.display.cursorDiv) } removeChildrenAndAdd(cm.display.dragCursor, frag) } function clearDragCursor(cm) { if (cm.display.dragCursor) { cm.display.lineSpace.removeChild(cm.display.dragCursor) cm.display.dragCursor = null } } // These must be handled carefully, because naively registering a // handler for each editor will cause the editors to never be // garbage collected. function forEachCodeMirror(f) { if (!document.getElementsByClassName) { return } var byClass = document.getElementsByClassName("CodeMirror") for (var i = 0; i < byClass.length; i++) { var cm = byClass[i].CodeMirror if (cm) { f(cm) } } } var globalsRegistered = false function ensureGlobalHandlers() { if (globalsRegistered) { return } registerGlobalHandlers() globalsRegistered = true } function registerGlobalHandlers() { // When the window resizes, we need to refresh active editors. var resizeTimer on(window, "resize", function () { if (resizeTimer == null) { resizeTimer = setTimeout(function () { resizeTimer = null forEachCodeMirror(onResize) }, 100) } }) // When the window loses focus, we want to show the editor as blurred on(window, "blur", function () { return forEachCodeMirror(onBlur); }) } // Called when the window resizes function onResize(cm) { var d = cm.display if (d.lastWrapHeight == d.wrapper.clientHeight && d.lastWrapWidth == d.wrapper.clientWidth) { return } // Might be a text scaling operation, clear size caches. d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null d.scrollbarsClipped = false cm.setSize() } var keyNames = { 3: "Enter", 8: "Backspace", 9: "Tab", 13: "Enter", 16: "Shift", 17: "Ctrl", 18: "Alt", 19: "Pause", 20: "CapsLock", 27: "Esc", 32: "Space", 33: "PageUp", 34: "PageDown", 35: "End", 36: "Home", 37: "Left", 38: "Up", 39: "Right", 40: "Down", 44: "PrintScrn", 45: "Insert", 46: "Delete", 59: ";", 61: "=", 91: "Mod", 92: "Mod", 93: "Mod", 106: "*", 107: "=", 109: "-", 110: ".", 111: "/", 127: "Delete", 173: "-", 186: ";", 187: "=", 188: ",", 189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\", 221: "]", 222: "'", 63232: "Up", 63233: "Down", 63234: "Left", 63235: "Right", 63272: "Delete", 63273: "Home", 63275: "End", 63276: "PageUp", 63277: "PageDown", 63302: "Insert" } // Number keys for (var i = 0; i < 10; i++) { keyNames[i + 48] = keyNames[i + 96] = String(i) } // Alphabetic keys for (var i$1 = 65; i$1 <= 90; i$1++) { keyNames[i$1] = String.fromCharCode(i$1) } // Function keys for (var i$2 = 1; i$2 <= 12; i$2++) { keyNames[i$2 + 111] = keyNames[i$2 + 63235] = "F" + i$2 } var keyMap = {} keyMap.basic = { "Left": "goCharLeft", "Right": "goCharRight", "Up": "goLineUp", "Down": "goLineDown", "End": "goLineEnd", "Home": "goLineStartSmart", "PageUp": "goPageUp", "PageDown": "goPageDown", "Delete": "delCharAfter", "Backspace": "delCharBefore", "Shift-Backspace": "delCharBefore", "Tab": "defaultTab", "Shift-Tab": "indentAuto", "Enter": "newlineAndIndent", "Insert": "toggleOverwrite", "Esc": "singleSelection" } // Note that the save and find-related commands aren't defined by // default. User code or addons can define them. Unknown commands // are simply ignored. keyMap.pcDefault = { "Ctrl-A": "selectAll", "Ctrl-D": "deleteLine", "Ctrl-Z": "undo", "Shift-Ctrl-Z": "redo", "Ctrl-Y": "redo", "Ctrl-Home": "goDocStart", "Ctrl-End": "goDocEnd", "Ctrl-Up": "goLineUp", "Ctrl-Down": "goLineDown", "Ctrl-Left": "goGroupLeft", "Ctrl-Right": "goGroupRight", "Alt-Left": "goLineStart", "Alt-Right": "goLineEnd", "Ctrl-Backspace": "delGroupBefore", "Ctrl-Delete": "delGroupAfter", "Ctrl-S": "save", "Ctrl-F": "find", "Ctrl-G": "findNext", "Shift-Ctrl-G": "findPrev", "Shift-Ctrl-F": "replace", "Shift-Ctrl-R": "replaceAll", "Ctrl-[": "indentLess", "Ctrl-]": "indentMore", "Ctrl-U": "undoSelection", "Shift-Ctrl-U": "redoSelection", "Alt-U": "redoSelection", fallthrough: "basic" } // Very basic readline/emacs-style bindings, which are standard on Mac. keyMap.emacsy = { "Ctrl-F": "goCharRight", "Ctrl-B": "goCharLeft", "Ctrl-P": "goLineUp", "Ctrl-N": "goLineDown", "Alt-F": "goWordRight", "Alt-B": "goWordLeft", "Ctrl-A": "goLineStart", "Ctrl-E": "goLineEnd", "Ctrl-V": "goPageDown", "Shift-Ctrl-V": "goPageUp", "Ctrl-D": "delCharAfter", "Ctrl-H": "delCharBefore", "Alt-D": "delWordAfter", "Alt-Backspace": "delWordBefore", "Ctrl-K": "killLine", "Ctrl-T": "transposeChars", "Ctrl-O": "openLine" } keyMap.macDefault = { "Cmd-A": "selectAll", "Cmd-D": "deleteLine", "Cmd-Z": "undo", "Shift-Cmd-Z": "redo", "Cmd-Y": "redo", "Cmd-Home": "goDocStart", "Cmd-Up": "goDocStart", "Cmd-End": "goDocEnd", "Cmd-Down": "goDocEnd", "Alt-Left": "goGroupLeft", "Alt-Right": "goGroupRight", "Cmd-Left": "goLineLeft", "Cmd-Right": "goLineRight", "Alt-Backspace": "delGroupBefore", "Ctrl-Alt-Backspace": "delGroupAfter", "Alt-Delete": "delGroupAfter", "Cmd-S": "save", "Cmd-F": "find", "Cmd-G": "findNext", "Shift-Cmd-G": "findPrev", "Cmd-Alt-F": "replace", "Shift-Cmd-Alt-F": "replaceAll", "Cmd-[": "indentLess", "Cmd-]": "indentMore", "Cmd-Backspace": "delWrappedLineLeft", "Cmd-Delete": "delWrappedLineRight", "Cmd-U": "undoSelection", "Shift-Cmd-U": "redoSelection", "Ctrl-Up": "goDocStart", "Ctrl-Down": "goDocEnd", fallthrough: ["basic", "emacsy"] } keyMap["default"] = mac ? keyMap.macDefault : keyMap.pcDefault // KEYMAP DISPATCH function normalizeKeyName(name) { var parts = name.split(/-(?!$)/) name = parts[parts.length - 1] var alt, ctrl, shift, cmd for (var i = 0; i < parts.length - 1; i++) { var mod = parts[i] if (/^(cmd|meta|m)$/i.test(mod)) { cmd = true } else if (/^a(lt)?$/i.test(mod)) { alt = true } else if (/^(c|ctrl|control)$/i.test(mod)) { ctrl = true } else if (/^s(hift)?$/i.test(mod)) { shift = true } else { throw new Error("Unrecognized modifier name: " + mod) } } if (alt) { name = "Alt-" + name } if (ctrl) { name = "Ctrl-" + name } if (cmd) { name = "Cmd-" + name } if (shift) { name = "Shift-" + name } return name } // This is a kludge to keep keymaps mostly working as raw objects // (backwards compatibility) while at the same time support features // like normalization and multi-stroke key bindings. It compiles a // new normalized keymap, and then updates the old object to reflect // this. function normalizeKeyMap(keymap) { var copy = {} for (var keyname in keymap) { if (keymap.hasOwnProperty(keyname)) { var value = keymap[keyname] if (/^(name|fallthrough|(de|at)tach)$/.test(keyname)) { continue } if (value == "...") { delete keymap[keyname]; continue } var keys = map(keyname.split(" "), normalizeKeyName) for (var i = 0; i < keys.length; i++) { var val = (void 0), name = (void 0) if (i == keys.length - 1) { name = keys.join(" ") val = value } else { name = keys.slice(0, i + 1).join(" ") val = "..." } var prev = copy[name] if (!prev) { copy[name] = val } else if (prev != val) { throw new Error("Inconsistent bindings for " + name) } } delete keymap[keyname] } } for (var prop in copy) { keymap[prop] = copy[prop] } return keymap } function lookupKey(key, map, handle, context) { map = getKeyMap(map) var found = map.call ? map.call(key, context) : map[key] if (found === false) { return "nothing" } if (found === "...") { return "multi" } if (found != null && handle(found)) { return "handled" } if (map.fallthrough) { if (Object.prototype.toString.call(map.fallthrough) != "[object Array]") { return lookupKey(key, map.fallthrough, handle, context) } for (var i = 0; i < map.fallthrough.length; i++) { var result = lookupKey(key, map.fallthrough[i], handle, context) if (result) { return result } } } } // Modifier key presses don't count as 'real' key presses for the // purpose of keymap fallthrough. function isModifierKey(value) { var name = typeof value == "string" ? value : keyNames[value.keyCode] return name == "Ctrl" || name == "Alt" || name == "Shift" || name == "Mod" } function addModifierNames(name, event, noShift) { var base = name if (event.altKey && base != "Alt") { name = "Alt-" + name } if ((flipCtrlCmd ? event.metaKey : event.ctrlKey) && base != "Ctrl") { name = "Ctrl-" + name } if ((flipCtrlCmd ? event.ctrlKey : event.metaKey) && base != "Cmd") { name = "Cmd-" + name } if (!noShift && event.shiftKey && base != "Shift") { name = "Shift-" + name } return name } // Look up the name of a key as indicated by an event object. function keyName(event, noShift) { if (presto && event.keyCode == 34 && event["char"]) { return false } var name = keyNames[event.keyCode] if (name == null || event.altGraphKey) { return false } return addModifierNames(name, event, noShift) } function getKeyMap(val) { return typeof val == "string" ? keyMap[val] : val } // Helper for deleting text near the selection(s), used to implement // backspace, delete, and similar functionality. function deleteNearSelection(cm, compute) { var ranges = cm.doc.sel.ranges, kill = [] // Build up a set of ranges to kill first, merging overlapping // ranges. for (var i = 0; i < ranges.length; i++) { var toKill = compute(ranges[i]) while (kill.length && cmp(toKill.from, lst(kill).to) <= 0) { var replaced = kill.pop() if (cmp(replaced.from, toKill.from) < 0) { toKill.from = replaced.from break } } kill.push(toKill) } // Next, remove those actual ranges. runInOp(cm, function () { for (var i = kill.length - 1; i >= 0; i--) { replaceRange(cm.doc, "", kill[i].from, kill[i].to, "+delete") } ensureCursorVisible(cm) }) } function moveCharLogically(line, ch, dir) { var target = skipExtendingChars(line.text, ch + dir, dir) return target < 0 || target > line.text.length ? null : target } function moveLogically(line, start, dir) { var ch = moveCharLogically(line, start.ch, dir) return ch == null ? null : new Pos(start.line, ch, dir < 0 ? "after" : "before") } function endOfLine(visually, cm, lineObj, lineNo, dir) { if (visually) { var order = getOrder(lineObj, cm.doc.direction) if (order) { var part = dir < 0 ? lst(order) : order[0] var moveInStorageOrder = (dir < 0) == (part.level == 1) var sticky = moveInStorageOrder ? "after" : "before" var ch // With a wrapped rtl chunk (possibly spanning multiple bidi parts), // it could be that the last bidi part is not on the last visual line, // since visual lines contain content order-consecutive chunks. // Thus, in rtl, we are looking for the first (content-order) character // in the rtl chunk that is on the last line (that is, the same line // as the last (content-order) character). if (part.level > 0) { var prep = prepareMeasureForLine(cm, lineObj) ch = dir < 0 ? lineObj.text.length - 1 : 0 var targetTop = measureCharPrepared(cm, prep, ch).top ch = findFirst(function (ch) { return measureCharPrepared(cm, prep, ch).top == targetTop; }, (dir < 0) == (part.level == 1) ? part.from : part.to - 1, ch) if (sticky == "before") { ch = moveCharLogically(lineObj, ch, 1) } } else { ch = dir < 0 ? part.to : part.from } return new Pos(lineNo, ch, sticky) } } return new Pos(lineNo, dir < 0 ? lineObj.text.length : 0, dir < 0 ? "before" : "after") } function moveVisually(cm, line, start, dir) { var bidi = getOrder(line, cm.doc.direction) if (!bidi) { return moveLogically(line, start, dir) } if (start.ch >= line.text.length) { start.ch = line.text.length start.sticky = "before" } else if (start.ch <= 0) { start.ch = 0 start.sticky = "after" } var partPos = getBidiPartAt(bidi, start.ch, start.sticky), part = bidi[partPos] if (cm.doc.direction == "ltr" && part.level % 2 == 0 && (dir > 0 ? part.to > start.ch : part.from < start.ch)) { // Case 1: We move within an ltr part in an ltr editor. Even with wrapped lines, // nothing interesting happens. return moveLogically(line, start, dir) } var mv = function (pos, dir) { return moveCharLogically(line, pos instanceof Pos ? pos.ch : pos, dir); } var prep var getWrappedLineExtent = function (ch) { if (!cm.options.lineWrapping) { return {begin: 0, end: line.text.length} } prep = prep || prepareMeasureForLine(cm, line) return wrappedLineExtentChar(cm, line, prep, ch) } var wrappedLineExtent = getWrappedLineExtent(start.sticky == "before" ? mv(start, -1) : start.ch) if (cm.doc.direction == "rtl" || part.level == 1) { var moveInStorageOrder = (part.level == 1) == (dir < 0) var ch = mv(start, moveInStorageOrder ? 1 : -1) if (ch != null && (!moveInStorageOrder ? ch >= part.from && ch >= wrappedLineExtent.begin : ch <= part.to && ch <= wrappedLineExtent.end)) { // Case 2: We move within an rtl part or in an rtl editor on the same visual line var sticky = moveInStorageOrder ? "before" : "after" return new Pos(start.line, ch, sticky) } } // Case 3: Could not move within this bidi part in this visual line, so leave // the current bidi part var searchInVisualLine = function (partPos, dir, wrappedLineExtent) { var getRes = function (ch, moveInStorageOrder) { return moveInStorageOrder ? new Pos(start.line, mv(ch, 1), "before") : new Pos(start.line, ch, "after"); } for (; partPos >= 0 && partPos < bidi.length; partPos += dir) { var part = bidi[partPos] var moveInStorageOrder = (dir > 0) == (part.level != 1) var ch = moveInStorageOrder ? wrappedLineExtent.begin : mv(wrappedLineExtent.end, -1) if (part.from <= ch && ch < part.to) { return getRes(ch, moveInStorageOrder) } ch = moveInStorageOrder ? part.from : mv(part.to, -1) if (wrappedLineExtent.begin <= ch && ch < wrappedLineExtent.end) { return getRes(ch, moveInStorageOrder) } } } // Case 3a: Look for other bidi parts on the same visual line var res = searchInVisualLine(partPos + dir, dir, wrappedLineExtent) if (res) { return res } // Case 3b: Look for other bidi parts on the next visual line var nextCh = dir > 0 ? wrappedLineExtent.end : mv(wrappedLineExtent.begin, -1) if (nextCh != null && !(dir > 0 && nextCh == line.text.length)) { res = searchInVisualLine(dir > 0 ? 0 : bidi.length - 1, dir, getWrappedLineExtent(nextCh)) if (res) { return res } } // Case 4: Nowhere to move return null } // Commands are parameter-less actions that can be performed on an // editor, mostly used for keybindings. var commands = { selectAll: selectAll, singleSelection: function (cm) { return cm.setSelection(cm.getCursor("anchor"), cm.getCursor("head"), sel_dontScroll); }, killLine: function (cm) { return deleteNearSelection(cm, function (range) { if (range.empty()) { var len = getLine(cm.doc, range.head.line).text.length if (range.head.ch == len && range.head.line < cm.lastLine()) { return {from: range.head, to: Pos(range.head.line + 1, 0)} } else { return {from: range.head, to: Pos(range.head.line, len)} } } else { return {from: range.from(), to: range.to()} } }); }, deleteLine: function (cm) { return deleteNearSelection(cm, function (range) { return ({ from: Pos(range.from().line, 0), to: clipPos(cm.doc, Pos(range.to().line + 1, 0)) }); }); }, delLineLeft: function (cm) { return deleteNearSelection(cm, function (range) { return ({ from: Pos(range.from().line, 0), to: range.from() }); }); }, delWrappedLineLeft: function (cm) { return deleteNearSelection(cm, function (range) { var top = cm.charCoords(range.head, "div").top + 5 var leftPos = cm.coordsChar({left: 0, top: top}, "div") return {from: leftPos, to: range.from()} }); }, delWrappedLineRight: function (cm) { return deleteNearSelection(cm, function (range) { var top = cm.charCoords(range.head, "div").top + 5 var rightPos = cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div") return {from: range.from(), to: rightPos } }); }, undo: function (cm) { return cm.undo(); }, redo: function (cm) { return cm.redo(); }, undoSelection: function (cm) { return cm.undoSelection(); }, redoSelection: function (cm) { return cm.redoSelection(); }, goDocStart: function (cm) { return cm.extendSelection(Pos(cm.firstLine(), 0)); }, goDocEnd: function (cm) { return cm.extendSelection(Pos(cm.lastLine())); }, goLineStart: function (cm) { return cm.extendSelectionsBy(function (range) { return lineStart(cm, range.head.line); }, {origin: "+move", bias: 1} ); }, goLineStartSmart: function (cm) { return cm.extendSelectionsBy(function (range) { return lineStartSmart(cm, range.head); }, {origin: "+move", bias: 1} ); }, goLineEnd: function (cm) { return cm.extendSelectionsBy(function (range) { return lineEnd(cm, range.head.line); }, {origin: "+move", bias: -1} ); }, goLineRight: function (cm) { return cm.extendSelectionsBy(function (range) { var top = cm.cursorCoords(range.head, "div").top + 5 return cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div") }, sel_move); }, goLineLeft: function (cm) { return cm.extendSelectionsBy(function (range) { var top = cm.cursorCoords(range.head, "div").top + 5 return cm.coordsChar({left: 0, top: top}, "div") }, sel_move); }, goLineLeftSmart: function (cm) { return cm.extendSelectionsBy(function (range) { var top = cm.cursorCoords(range.head, "div").top + 5 var pos = cm.coordsChar({left: 0, top: top}, "div") if (pos.ch < cm.getLine(pos.line).search(/\S/)) { return lineStartSmart(cm, range.head) } return pos }, sel_move); }, goLineUp: function (cm) { return cm.moveV(-1, "line"); }, goLineDown: function (cm) { return cm.moveV(1, "line"); }, goPageUp: function (cm) { return cm.moveV(-1, "page"); }, goPageDown: function (cm) { return cm.moveV(1, "page"); }, goCharLeft: function (cm) { return cm.moveH(-1, "char"); }, goCharRight: function (cm) { return cm.moveH(1, "char"); }, goColumnLeft: function (cm) { return cm.moveH(-1, "column"); }, goColumnRight: function (cm) { return cm.moveH(1, "column"); }, goWordLeft: function (cm) { return cm.moveH(-1, "word"); }, goGroupRight: function (cm) { return cm.moveH(1, "group"); }, goGroupLeft: function (cm) { return cm.moveH(-1, "group"); }, goWordRight: function (cm) { return cm.moveH(1, "word"); }, delCharBefore: function (cm) { return cm.deleteH(-1, "char"); }, delCharAfter: function (cm) { return cm.deleteH(1, "char"); }, delWordBefore: function (cm) { return cm.deleteH(-1, "word"); }, delWordAfter: function (cm) { return cm.deleteH(1, "word"); }, delGroupBefore: function (cm) { return cm.deleteH(-1, "group"); }, delGroupAfter: function (cm) { return cm.deleteH(1, "group"); }, indentAuto: function (cm) { return cm.indentSelection("smart"); }, indentMore: function (cm) { return cm.indentSelection("add"); }, indentLess: function (cm) { return cm.indentSelection("subtract"); }, insertTab: function (cm) { return cm.replaceSelection("\t"); }, insertSoftTab: function (cm) { var spaces = [], ranges = cm.listSelections(), tabSize = cm.options.tabSize for (var i = 0; i < ranges.length; i++) { var pos = ranges[i].from() var col = countColumn(cm.getLine(pos.line), pos.ch, tabSize) spaces.push(spaceStr(tabSize - col % tabSize)) } cm.replaceSelections(spaces) }, defaultTab: function (cm) { if (cm.somethingSelected()) { cm.indentSelection("add") } else { cm.execCommand("insertTab") } }, // Swap the two chars left and right of each selection's head. // Move cursor behind the two swapped characters afterwards. // // Doesn't consider line feeds a character. // Doesn't scan more than one line above to find a character. // Doesn't do anything on an empty line. // Doesn't do anything with non-empty selections. transposeChars: function (cm) { return runInOp(cm, function () { var ranges = cm.listSelections(), newSel = [] for (var i = 0; i < ranges.length; i++) { if (!ranges[i].empty()) { continue } var cur = ranges[i].head, line = getLine(cm.doc, cur.line).text if (line) { if (cur.ch == line.length) { cur = new Pos(cur.line, cur.ch - 1) } if (cur.ch > 0) { cur = new Pos(cur.line, cur.ch + 1) cm.replaceRange(line.charAt(cur.ch - 1) + line.charAt(cur.ch - 2), Pos(cur.line, cur.ch - 2), cur, "+transpose") } else if (cur.line > cm.doc.first) { var prev = getLine(cm.doc, cur.line - 1).text if (prev) { cur = new Pos(cur.line, 1) cm.replaceRange(line.charAt(0) + cm.doc.lineSeparator() + prev.charAt(prev.length - 1), Pos(cur.line - 1, prev.length - 1), cur, "+transpose") } } } newSel.push(new Range(cur, cur)) } cm.setSelections(newSel) }); }, newlineAndIndent: function (cm) { return runInOp(cm, function () { var sels = cm.listSelections() for (var i = sels.length - 1; i >= 0; i--) { cm.replaceRange(cm.doc.lineSeparator(), sels[i].anchor, sels[i].head, "+input") } sels = cm.listSelections() for (var i$1 = 0; i$1 < sels.length; i$1++) { cm.indentLine(sels[i$1].from().line, null, true) } ensureCursorVisible(cm) }); }, openLine: function (cm) { return cm.replaceSelection("\n", "start"); }, toggleOverwrite: function (cm) { return cm.toggleOverwrite(); } } function lineStart(cm, lineN) { var line = getLine(cm.doc, lineN) var visual = visualLine(line) if (visual != line) { lineN = lineNo(visual) } return endOfLine(true, cm, visual, lineN, 1) } function lineEnd(cm, lineN) { var line = getLine(cm.doc, lineN) var visual = visualLineEnd(line) if (visual != line) { lineN = lineNo(visual) } return endOfLine(true, cm, line, lineN, -1) } function lineStartSmart(cm, pos) { var start = lineStart(cm, pos.line) var line = getLine(cm.doc, start.line) var order = getOrder(line, cm.doc.direction) if (!order || order[0].level == 0) { var firstNonWS = Math.max(0, line.text.search(/\S/)) var inWS = pos.line == start.line && pos.ch <= firstNonWS && pos.ch return Pos(start.line, inWS ? 0 : firstNonWS, start.sticky) } return start } // Run a handler that was bound to a key. function doHandleBinding(cm, bound, dropShift) { if (typeof bound == "string") { bound = commands[bound] if (!bound) { return false } } // Ensure previous input has been read, so that the handler sees a // consistent view of the document cm.display.input.ensurePolled() var prevShift = cm.display.shift, done = false try { if (cm.isReadOnly()) { cm.state.suppressEdits = true } if (dropShift) { cm.display.shift = false } done = bound(cm) != Pass } finally { cm.display.shift = prevShift cm.state.suppressEdits = false } return done } function lookupKeyForEditor(cm, name, handle) { for (var i = 0; i < cm.state.keyMaps.length; i++) { var result = lookupKey(name, cm.state.keyMaps[i], handle, cm) if (result) { return result } } return (cm.options.extraKeys && lookupKey(name, cm.options.extraKeys, handle, cm)) || lookupKey(name, cm.options.keyMap, handle, cm) } // Note that, despite the name, this function is also used to check // for bound mouse clicks. var stopSeq = new Delayed function dispatchKey(cm, name, e, handle) { var seq = cm.state.keySeq if (seq) { if (isModifierKey(name)) { return "handled" } stopSeq.set(50, function () { if (cm.state.keySeq == seq) { cm.state.keySeq = null cm.display.input.reset() } }) name = seq + " " + name } var result = lookupKeyForEditor(cm, name, handle) if (result == "multi") { cm.state.keySeq = name } if (result == "handled") { signalLater(cm, "keyHandled", cm, name, e) } if (result == "handled" || result == "multi") { e_preventDefault(e) restartBlink(cm) } if (seq && !result && /\'$/.test(name)) { e_preventDefault(e) return true } return !!result } // Handle a key from the keydown event. function handleKeyBinding(cm, e) { var name = keyName(e, true) if (!name) { return false } if (e.shiftKey && !cm.state.keySeq) { // First try to resolve full name (including 'Shift-'). Failing // that, see if there is a cursor-motion command (starting with // 'go') bound to the keyname without 'Shift-'. return dispatchKey(cm, "Shift-" + name, e, function (b) { return doHandleBinding(cm, b, true); }) || dispatchKey(cm, name, e, function (b) { if (typeof b == "string" ? /^go[A-Z]/.test(b) : b.motion) { return doHandleBinding(cm, b) } }) } else { return dispatchKey(cm, name, e, function (b) { return doHandleBinding(cm, b); }) } } // Handle a key from the keypress event function handleCharBinding(cm, e, ch) { return dispatchKey(cm, "'" + ch + "'", e, function (b) { return doHandleBinding(cm, b, true); }) } var lastStoppedKey = null function onKeyDown(e) { var cm = this cm.curOp.focus = activeElt() if (signalDOMEvent(cm, e)) { return } // IE does strange things with escape. if (ie && ie_version < 11 && e.keyCode == 27) { e.returnValue = false } var code = e.keyCode cm.display.shift = code == 16 || e.shiftKey var handled = handleKeyBinding(cm, e) if (presto) { lastStoppedKey = handled ? code : null // Opera has no cut event... we try to at least catch the key combo if (!handled && code == 88 && !hasCopyEvent && (mac ? e.metaKey : e.ctrlKey)) { cm.replaceSelection("", null, "cut") } } // Turn mouse into crosshair when Alt is held on Mac. if (code == 18 && !/\bCodeMirror-crosshair\b/.test(cm.display.lineDiv.className)) { showCrossHair(cm) } } function showCrossHair(cm) { var lineDiv = cm.display.lineDiv addClass(lineDiv, "CodeMirror-crosshair") function up(e) { if (e.keyCode == 18 || !e.altKey) { rmClass(lineDiv, "CodeMirror-crosshair") off(document, "keyup", up) off(document, "mouseover", up) } } on(document, "keyup", up) on(document, "mouseover", up) } function onKeyUp(e) { if (e.keyCode == 16) { this.doc.sel.shift = false } signalDOMEvent(this, e) } function onKeyPress(e) { var cm = this if (eventInWidget(cm.display, e) || signalDOMEvent(cm, e) || e.ctrlKey && !e.altKey || mac && e.metaKey) { return } var keyCode = e.keyCode, charCode = e.charCode if (presto && keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return} if ((presto && (!e.which || e.which < 10)) && handleKeyBinding(cm, e)) { return } var ch = String.fromCharCode(charCode == null ? keyCode : charCode) // Some browsers fire keypress events for backspace if (ch == "\x08") { return } if (handleCharBinding(cm, e, ch)) { return } cm.display.input.onKeyPress(e) } var DOUBLECLICK_DELAY = 400 var PastClick = function(time, pos, button) { this.time = time this.pos = pos this.button = button }; PastClick.prototype.compare = function (time, pos, button) { return this.time + DOUBLECLICK_DELAY > time && cmp(pos, this.pos) == 0 && button == this.button }; var lastClick; var lastDoubleClick; function clickRepeat(pos, button) { var now = +new Date if (lastDoubleClick && lastDoubleClick.compare(now, pos, button)) { lastClick = lastDoubleClick = null return "triple" } else if (lastClick && lastClick.compare(now, pos, button)) { lastDoubleClick = new PastClick(now, pos, button) lastClick = null return "double" } else { lastClick = new PastClick(now, pos, button) lastDoubleClick = null return "single" } } // A mouse down can be a single click, double click, triple click, // start of selection drag, start of text drag, new cursor // (ctrl-click), rectangle drag (alt-drag), or xwin // middle-click-paste. Or it might be a click on something we should // not interfere with, such as a scrollbar or widget. function onMouseDown(e) { var cm = this, display = cm.display if (signalDOMEvent(cm, e) || display.activeTouch && display.input.supportsTouch()) { return } display.input.ensurePolled() display.shift = e.shiftKey if (eventInWidget(display, e)) { if (!webkit) { // Briefly turn off draggability, to allow widgets to do // normal dragging things. display.scroller.draggable = false setTimeout(function () { return display.scroller.draggable = true; }, 100) } return } if (clickInGutter(cm, e)) { return } var pos = posFromMouse(cm, e), button = e_button(e), repeat = pos ? clickRepeat(pos, button) : "single" window.focus() // #3261: make sure, that we're not starting a second selection if (button == 1 && cm.state.selectingText) { cm.state.selectingText(e) } if (pos && handleMappedButton(cm, button, pos, repeat, e)) { return } if (button == 1) { if (pos) { leftButtonDown(cm, pos, repeat, e) } else if (e_target(e) == display.scroller) { e_preventDefault(e) } } else if (button == 2) { if (pos) { extendSelection(cm.doc, pos) } setTimeout(function () { return display.input.focus(); }, 20) } else if (button == 3) { if (captureRightClick) { onContextMenu(cm, e) } else { delayBlurEvent(cm) } } } function handleMappedButton(cm, button, pos, repeat, event) { var name = "Click" if (repeat == "double") { name = "Double" + name } else if (repeat == "triple") { name = "Triple" + name } name = (button == 1 ? "Left" : button == 2 ? "Middle" : "Right") + name return dispatchKey(cm, addModifierNames(name, event), event, function (bound) { if (typeof bound == "string") { bound = commands[bound] } if (!bound) { return false } var done = false try { if (cm.isReadOnly()) { cm.state.suppressEdits = true } done = bound(cm, pos) != Pass } finally { cm.state.suppressEdits = false } return done }) } function configureMouse(cm, repeat, event) { var option = cm.getOption("configureMouse") var value = option ? option(cm, repeat, event) : {} if (value.unit == null) { var rect = chromeOS ? event.shiftKey && event.metaKey : event.altKey value.unit = rect ? "rectangle" : repeat == "single" ? "char" : repeat == "double" ? "word" : "line" } if (value.extend == null || cm.doc.extend) { value.extend = cm.doc.extend || event.shiftKey } if (value.addNew == null) { value.addNew = mac ? event.metaKey : event.ctrlKey } if (value.moveOnDrag == null) { value.moveOnDrag = !(mac ? event.altKey : event.ctrlKey) } return value } function leftButtonDown(cm, pos, repeat, event) { if (ie) { setTimeout(bind(ensureFocus, cm), 0) } else { cm.curOp.focus = activeElt() } var behavior = configureMouse(cm, repeat, event) var sel = cm.doc.sel, contained if (cm.options.dragDrop && dragAndDrop && !cm.isReadOnly() && repeat == "single" && (contained = sel.contains(pos)) > -1 && (cmp((contained = sel.ranges[contained]).from(), pos) < 0 || pos.xRel > 0) && (cmp(contained.to(), pos) > 0 || pos.xRel < 0)) { leftButtonStartDrag(cm, event, pos, behavior) } else { leftButtonSelect(cm, event, pos, behavior) } } // Start a text drag. When it ends, see if any dragging actually // happen, and treat as a click if it didn't. function leftButtonStartDrag(cm, event, pos, behavior) { var display = cm.display, moved = false var dragEnd = operation(cm, function (e) { if (webkit) { display.scroller.draggable = false } cm.state.draggingText = false off(document, "mouseup", dragEnd) off(document, "mousemove", mouseMove) off(display.scroller, "dragstart", dragStart) off(display.scroller, "drop", dragEnd) if (!moved) { e_preventDefault(e) if (!behavior.addNew) { extendSelection(cm.doc, pos, null, null, behavior.extend) } // Work around unexplainable focus problem in IE9 (#2127) and Chrome (#3081) if (webkit || ie && ie_version == 9) { setTimeout(function () {document.body.focus(); display.input.focus()}, 20) } else { display.input.focus() } } }) var mouseMove = function(e2) { moved = moved || Math.abs(event.clientX - e2.clientX) + Math.abs(event.clientY - e2.clientY) >= 10 } var dragStart = function () { return moved = true; } // Let the drag handler handle this. if (webkit) { display.scroller.draggable = true } cm.state.draggingText = dragEnd dragEnd.copy = !behavior.moveOnDrag // IE's approach to draggable if (display.scroller.dragDrop) { display.scroller.dragDrop() } on(document, "mouseup", dragEnd) on(document, "mousemove", mouseMove) on(display.scroller, "dragstart", dragStart) on(display.scroller, "drop", dragEnd) delayBlurEvent(cm) setTimeout(function () { return display.input.focus(); }, 20) } function rangeForUnit(cm, pos, unit) { if (unit == "char") { return new Range(pos, pos) } if (unit == "word") { return cm.findWordAt(pos) } if (unit == "line") { return new Range(Pos(pos.line, 0), clipPos(cm.doc, Pos(pos.line + 1, 0))) } var result = unit(cm, pos) return new Range(result.from, result.to) } // Normal selection, as opposed to text dragging. function leftButtonSelect(cm, event, start, behavior) { var display = cm.display, doc = cm.doc e_preventDefault(event) var ourRange, ourIndex, startSel = doc.sel, ranges = startSel.ranges if (behavior.addNew && !behavior.extend) { ourIndex = doc.sel.contains(start) if (ourIndex > -1) { ourRange = ranges[ourIndex] } else { ourRange = new Range(start, start) } } else { ourRange = doc.sel.primary() ourIndex = doc.sel.primIndex } if (behavior.unit == "rectangle") { if (!behavior.addNew) { ourRange = new Range(start, start) } start = posFromMouse(cm, event, true, true) ourIndex = -1 } else { var range = rangeForUnit(cm, start, behavior.unit) if (behavior.extend) { ourRange = extendRange(ourRange, range.anchor, range.head, behavior.extend) } else { ourRange = range } } if (!behavior.addNew) { ourIndex = 0 setSelection(doc, new Selection([ourRange], 0), sel_mouse) startSel = doc.sel } else if (ourIndex == -1) { ourIndex = ranges.length setSelection(doc, normalizeSelection(ranges.concat([ourRange]), ourIndex), {scroll: false, origin: "*mouse"}) } else if (ranges.length > 1 && ranges[ourIndex].empty() && behavior.unit == "char" && !behavior.extend) { setSelection(doc, normalizeSelection(ranges.slice(0, ourIndex).concat(ranges.slice(ourIndex + 1)), 0), {scroll: false, origin: "*mouse"}) startSel = doc.sel } else { replaceOneSelection(doc, ourIndex, ourRange, sel_mouse) } var lastPos = start function extendTo(pos) { if (cmp(lastPos, pos) == 0) { return } lastPos = pos if (behavior.unit == "rectangle") { var ranges = [], tabSize = cm.options.tabSize var startCol = countColumn(getLine(doc, start.line).text, start.ch, tabSize) var posCol = countColumn(getLine(doc, pos.line).text, pos.ch, tabSize) var left = Math.min(startCol, posCol), right = Math.max(startCol, posCol) for (var line = Math.min(start.line, pos.line), end = Math.min(cm.lastLine(), Math.max(start.line, pos.line)); line <= end; line++) { var text = getLine(doc, line).text, leftPos = findColumn(text, left, tabSize) if (left == right) { ranges.push(new Range(Pos(line, leftPos), Pos(line, leftPos))) } else if (text.length > leftPos) { ranges.push(new Range(Pos(line, leftPos), Pos(line, findColumn(text, right, tabSize)))) } } if (!ranges.length) { ranges.push(new Range(start, start)) } setSelection(doc, normalizeSelection(startSel.ranges.slice(0, ourIndex).concat(ranges), ourIndex), {origin: "*mouse", scroll: false}) cm.scrollIntoView(pos) } else { var oldRange = ourRange var range = rangeForUnit(cm, pos, behavior.unit) var anchor = oldRange.anchor, head if (cmp(range.anchor, anchor) > 0) { head = range.head anchor = minPos(oldRange.from(), range.anchor) } else { head = range.anchor anchor = maxPos(oldRange.to(), range.head) } var ranges$1 = startSel.ranges.slice(0) ranges$1[ourIndex] = bidiSimplify(cm, new Range(clipPos(doc, anchor), head)) setSelection(doc, normalizeSelection(ranges$1, ourIndex), sel_mouse) } } var editorSize = display.wrapper.getBoundingClientRect() // Used to ensure timeout re-tries don't fire when another extend // happened in the meantime (clearTimeout isn't reliable -- at // least on Chrome, the timeouts still happen even when cleared, // if the clear happens after their scheduled firing time). var counter = 0 function extend(e) { var curCount = ++counter var cur = posFromMouse(cm, e, true, behavior.unit == "rectangle") if (!cur) { return } if (cmp(cur, lastPos) != 0) { cm.curOp.focus = activeElt() extendTo(cur) var visible = visibleLines(display, doc) if (cur.line >= visible.to || cur.line < visible.from) { setTimeout(operation(cm, function () {if (counter == curCount) { extend(e) }}), 150) } } else { var outside = e.clientY < editorSize.top ? -20 : e.clientY > editorSize.bottom ? 20 : 0 if (outside) { setTimeout(operation(cm, function () { if (counter != curCount) { return } display.scroller.scrollTop += outside extend(e) }), 50) } } } function done(e) { cm.state.selectingText = false counter = Infinity e_preventDefault(e) display.input.focus() off(document, "mousemove", move) off(document, "mouseup", up) doc.history.lastSelOrigin = null } var move = operation(cm, function (e) { if (!e_button(e)) { done(e) } else { extend(e) } }) var up = operation(cm, done) cm.state.selectingText = up on(document, "mousemove", move) on(document, "mouseup", up) } // Used when mouse-selecting to adjust the anchor to the proper side // of a bidi jump depending on the visual position of the head. function bidiSimplify(cm, range) { var anchor = range.anchor; var head = range.head; var anchorLine = getLine(cm.doc, anchor.line) if (cmp(anchor, head) == 0 && anchor.sticky == head.sticky) { return range } var order = getOrder(anchorLine) if (!order) { return range } var index = getBidiPartAt(order, anchor.ch, anchor.sticky), part = order[index] if (part.from != anchor.ch && part.to != anchor.ch) { return range } var boundary = index + ((part.from == anchor.ch) == (part.level != 1) ? 0 : 1) if (boundary == 0 || boundary == order.length) { return range } // Compute the relative visual position of the head compared to the // anchor (<0 is to the left, >0 to the right) var leftSide if (head.line != anchor.line) { leftSide = (head.line - anchor.line) * (cm.doc.direction == "ltr" ? 1 : -1) > 0 } else { var headIndex = getBidiPartAt(order, head.ch, head.sticky) var dir = headIndex - index || (head.ch - anchor.ch) * (part.level == 1 ? -1 : 1) if (headIndex == boundary - 1 || headIndex == boundary) { leftSide = dir < 0 } else { leftSide = dir > 0 } } var usePart = order[boundary + (leftSide ? -1 : 0)] var from = leftSide == (usePart.level == 1) var ch = from ? usePart.from : usePart.to, sticky = from ? "after" : "before" return anchor.ch == ch && anchor.sticky == sticky ? range : new Range(new Pos(anchor.line, ch, sticky), head) } // Determines whether an event happened in the gutter, and fires the // handlers for the corresponding event. function gutterEvent(cm, e, type, prevent) { var mX, mY if (e.touches) { mX = e.touches[0].clientX mY = e.touches[0].clientY } else { try { mX = e.clientX; mY = e.clientY } catch(e) { return false } } if (mX >= Math.floor(cm.display.gutters.getBoundingClientRect().right)) { return false } if (prevent) { e_preventDefault(e) } var display = cm.display var lineBox = display.lineDiv.getBoundingClientRect() if (mY > lineBox.bottom || !hasHandler(cm, type)) { return e_defaultPrevented(e) } mY -= lineBox.top - display.viewOffset for (var i = 0; i < cm.options.gutters.length; ++i) { var g = display.gutters.childNodes[i] if (g && g.getBoundingClientRect().right >= mX) { var line = lineAtHeight(cm.doc, mY) var gutter = cm.options.gutters[i] signal(cm, type, cm, line, gutter, e) return e_defaultPrevented(e) } } } function clickInGutter(cm, e) { return gutterEvent(cm, e, "gutterClick", true) } // CONTEXT MENU HANDLING // To make the context menu work, we need to briefly unhide the // textarea (making it as unobtrusive as possible) to let the // right-click take effect on it. function onContextMenu(cm, e) { if (eventInWidget(cm.display, e) || contextMenuInGutter(cm, e)) { return } if (signalDOMEvent(cm, e, "contextmenu")) { return } cm.display.input.onContextMenu(e) } function contextMenuInGutter(cm, e) { if (!hasHandler(cm, "gutterContextMenu")) { return false } return gutterEvent(cm, e, "gutterContextMenu", false) } function themeChanged(cm) { cm.display.wrapper.className = cm.display.wrapper.className.replace(/\s*cm-s-\S+/g, "") + cm.options.theme.replace(/(^|\s)\s*/g, " cm-s-") clearCaches(cm) } var Init = {toString: function(){return "CodeMirror.Init"}} var defaults = {} var optionHandlers = {} function defineOptions(CodeMirror) { var optionHandlers = CodeMirror.optionHandlers function option(name, deflt, handle, notOnInit) { CodeMirror.defaults[name] = deflt if (handle) { optionHandlers[name] = notOnInit ? function (cm, val, old) {if (old != Init) { handle(cm, val, old) }} : handle } } CodeMirror.defineOption = option // Passed to option handlers when there is no old value. CodeMirror.Init = Init // These two are, on init, called from the constructor because they // have to be initialized before the editor can start at all. option("value", "", function (cm, val) { return cm.setValue(val); }, true) option("mode", null, function (cm, val) { cm.doc.modeOption = val loadMode(cm) }, true) option("indentUnit", 2, loadMode, true) option("indentWithTabs", false) option("smartIndent", true) option("tabSize", 4, function (cm) { resetModeState(cm) clearCaches(cm) regChange(cm) }, true) option("lineSeparator", null, function (cm, val) { cm.doc.lineSep = val if (!val) { return } var newBreaks = [], lineNo = cm.doc.first cm.doc.iter(function (line) { for (var pos = 0;;) { var found = line.text.indexOf(val, pos) if (found == -1) { break } pos = found + val.length newBreaks.push(Pos(lineNo, found)) } lineNo++ }) for (var i = newBreaks.length - 1; i >= 0; i--) { replaceRange(cm.doc, val, newBreaks[i], Pos(newBreaks[i].line, newBreaks[i].ch + val.length)) } }) option("specialChars", /[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b-\u200f\u2028\u2029\ufeff]/g, function (cm, val, old) { cm.state.specialChars = new RegExp(val.source + (val.test("\t") ? "" : "|\t"), "g") if (old != Init) { cm.refresh() } }) option("specialCharPlaceholder", defaultSpecialCharPlaceholder, function (cm) { return cm.refresh(); }, true) option("electricChars", true) option("inputStyle", mobile ? "contenteditable" : "textarea", function () { throw new Error("inputStyle can not (yet) be changed in a running editor") // FIXME }, true) option("spellcheck", false, function (cm, val) { return cm.getInputField().spellcheck = val; }, true) option("rtlMoveVisually", !windows) option("wholeLineUpdateBefore", true) option("theme", "default", function (cm) { themeChanged(cm) guttersChanged(cm) }, true) option("keyMap", "default", function (cm, val, old) { var next = getKeyMap(val) var prev = old != Init && getKeyMap(old) if (prev && prev.detach) { prev.detach(cm, next) } if (next.attach) { next.attach(cm, prev || null) } }) option("extraKeys", null) option("configureMouse", null) option("lineWrapping", false, wrappingChanged, true) option("gutters", [], function (cm) { setGuttersForLineNumbers(cm.options) guttersChanged(cm) }, true) option("fixedGutter", true, function (cm, val) { cm.display.gutters.style.left = val ? compensateForHScroll(cm.display) + "px" : "0" cm.refresh() }, true) option("coverGutterNextToScrollbar", false, function (cm) { return updateScrollbars(cm); }, true) option("scrollbarStyle", "native", function (cm) { initScrollbars(cm) updateScrollbars(cm) cm.display.scrollbars.setScrollTop(cm.doc.scrollTop) cm.display.scrollbars.setScrollLeft(cm.doc.scrollLeft) }, true) option("lineNumbers", false, function (cm) { setGuttersForLineNumbers(cm.options) guttersChanged(cm) }, true) option("firstLineNumber", 1, guttersChanged, true) option("lineNumberFormatter", function (integer) { return integer; }, guttersChanged, true) option("showCursorWhenSelecting", false, updateSelection, true) option("resetSelectionOnContextMenu", true) option("lineWiseCopyCut", true) option("pasteLinesPerSelection", true) option("readOnly", false, function (cm, val) { if (val == "nocursor") { onBlur(cm) cm.display.input.blur() } cm.display.input.readOnlyChanged(val) }) option("disableInput", false, function (cm, val) {if (!val) { cm.display.input.reset() }}, true) option("dragDrop", true, dragDropChanged) option("allowDropFileTypes", null) option("cursorBlinkRate", 530) option("cursorScrollMargin", 0) option("cursorHeight", 1, updateSelection, true) option("singleCursorHeightPerLine", true, updateSelection, true) option("workTime", 100) option("workDelay", 100) option("flattenSpans", true, resetModeState, true) option("addModeClass", false, resetModeState, true) option("pollInterval", 100) option("undoDepth", 200, function (cm, val) { return cm.doc.history.undoDepth = val; }) option("historyEventDelay", 1250) option("viewportMargin", 10, function (cm) { return cm.refresh(); }, true) option("maxHighlightLength", 10000, resetModeState, true) option("moveInputWithCursor", true, function (cm, val) { if (!val) { cm.display.input.resetPosition() } }) option("tabindex", null, function (cm, val) { return cm.display.input.getField().tabIndex = val || ""; }) option("autofocus", null) option("direction", "ltr", function (cm, val) { return cm.doc.setDirection(val); }, true) } function guttersChanged(cm) { updateGutters(cm) regChange(cm) alignHorizontally(cm) } function dragDropChanged(cm, value, old) { var wasOn = old && old != Init if (!value != !wasOn) { var funcs = cm.display.dragFunctions var toggle = value ? on : off toggle(cm.display.scroller, "dragstart", funcs.start) toggle(cm.display.scroller, "dragenter", funcs.enter) toggle(cm.display.scroller, "dragover", funcs.over) toggle(cm.display.scroller, "dragleave", funcs.leave) toggle(cm.display.scroller, "drop", funcs.drop) } } function wrappingChanged(cm) { if (cm.options.lineWrapping) { addClass(cm.display.wrapper, "CodeMirror-wrap") cm.display.sizer.style.minWidth = "" cm.display.sizerWidth = null } else { rmClass(cm.display.wrapper, "CodeMirror-wrap") findMaxLine(cm) } estimateLineHeights(cm) regChange(cm) clearCaches(cm) setTimeout(function () { return updateScrollbars(cm); }, 100) } // A CodeMirror instance represents an editor. This is the object // that user code is usually dealing with. function CodeMirror(place, options) { var this$1 = this; if (!(this instanceof CodeMirror)) { return new CodeMirror(place, options) } this.options = options = options ? copyObj(options) : {} // Determine effective options based on given values and defaults. copyObj(defaults, options, false) setGuttersForLineNumbers(options) var doc = options.value if (typeof doc == "string") { doc = new Doc(doc, options.mode, null, options.lineSeparator, options.direction) } this.doc = doc var input = new CodeMirror.inputStyles[options.inputStyle](this) var display = this.display = new Display(place, doc, input) display.wrapper.CodeMirror = this updateGutters(this) themeChanged(this) if (options.lineWrapping) { this.display.wrapper.className += " CodeMirror-wrap" } initScrollbars(this) this.state = { keyMaps: [], // stores maps added by addKeyMap overlays: [], // highlighting overlays, as added by addOverlay modeGen: 0, // bumped when mode/overlay changes, used to invalidate highlighting info overwrite: false, delayingBlurEvent: false, focused: false, suppressEdits: false, // used to disable editing during key handlers when in readOnly mode pasteIncoming: false, cutIncoming: false, // help recognize paste/cut edits in input.poll selectingText: false, draggingText: false, highlight: new Delayed(), // stores highlight worker timeout keySeq: null, // Unfinished key sequence specialChars: null } if (options.autofocus && !mobile) { display.input.focus() } // Override magic textarea content restore that IE sometimes does // on our hidden textarea on reload if (ie && ie_version < 11) { setTimeout(function () { return this$1.display.input.reset(true); }, 20) } registerEventHandlers(this) ensureGlobalHandlers() startOperation(this) this.curOp.forceUpdate = true attachDoc(this, doc) if ((options.autofocus && !mobile) || this.hasFocus()) { setTimeout(bind(onFocus, this), 20) } else { onBlur(this) } for (var opt in optionHandlers) { if (optionHandlers.hasOwnProperty(opt)) { optionHandlers[opt](this$1, options[opt], Init) } } maybeUpdateLineNumberWidth(this) if (options.finishInit) { options.finishInit(this) } for (var i = 0; i < initHooks.length; ++i) { initHooks[i](this$1) } endOperation(this) // Suppress optimizelegibility in Webkit, since it breaks text // measuring on line wrapping boundaries. if (webkit && options.lineWrapping && getComputedStyle(display.lineDiv).textRendering == "optimizelegibility") { display.lineDiv.style.textRendering = "auto" } } // The default configuration options. CodeMirror.defaults = defaults // Functions to run when options are changed. CodeMirror.optionHandlers = optionHandlers // Attach the necessary event handlers when initializing the editor function registerEventHandlers(cm) { var d = cm.display on(d.scroller, "mousedown", operation(cm, onMouseDown)) // Older IE's will not fire a second mousedown for a double click if (ie && ie_version < 11) { on(d.scroller, "dblclick", operation(cm, function (e) { if (signalDOMEvent(cm, e)) { return } var pos = posFromMouse(cm, e) if (!pos || clickInGutter(cm, e) || eventInWidget(cm.display, e)) { return } e_preventDefault(e) var word = cm.findWordAt(pos) extendSelection(cm.doc, word.anchor, word.head) })) } else { on(d.scroller, "dblclick", function (e) { return signalDOMEvent(cm, e) || e_preventDefault(e); }) } // Some browsers fire contextmenu *after* opening the menu, at // which point we can't mess with it anymore. Context menu is // handled in onMouseDown for these browsers. if (!captureRightClick) { on(d.scroller, "contextmenu", function (e) { return onContextMenu(cm, e); }) } // Used to suppress mouse event handling when a touch happens var touchFinished, prevTouch = {end: 0} function finishTouch() { if (d.activeTouch) { touchFinished = setTimeout(function () { return d.activeTouch = null; }, 1000) prevTouch = d.activeTouch prevTouch.end = +new Date } } function isMouseLikeTouchEvent(e) { if (e.touches.length != 1) { return false } var touch = e.touches[0] return touch.radiusX <= 1 && touch.radiusY <= 1 } function farAway(touch, other) { if (other.left == null) { return true } var dx = other.left - touch.left, dy = other.top - touch.top return dx * dx + dy * dy > 20 * 20 } on(d.scroller, "touchstart", function (e) { if (!signalDOMEvent(cm, e) && !isMouseLikeTouchEvent(e) && !clickInGutter(cm, e)) { d.input.ensurePolled() clearTimeout(touchFinished) var now = +new Date d.activeTouch = {start: now, moved: false, prev: now - prevTouch.end <= 300 ? prevTouch : null} if (e.touches.length == 1) { d.activeTouch.left = e.touches[0].pageX d.activeTouch.top = e.touches[0].pageY } } }) on(d.scroller, "touchmove", function () { if (d.activeTouch) { d.activeTouch.moved = true } }) on(d.scroller, "touchend", function (e) { var touch = d.activeTouch if (touch && !eventInWidget(d, e) && touch.left != null && !touch.moved && new Date - touch.start < 300) { var pos = cm.coordsChar(d.activeTouch, "page"), range if (!touch.prev || farAway(touch, touch.prev)) // Single tap { range = new Range(pos, pos) } else if (!touch.prev.prev || farAway(touch, touch.prev.prev)) // Double tap { range = cm.findWordAt(pos) } else // Triple tap { range = new Range(Pos(pos.line, 0), clipPos(cm.doc, Pos(pos.line + 1, 0))) } cm.setSelection(range.anchor, range.head) cm.focus() e_preventDefault(e) } finishTouch() }) on(d.scroller, "touchcancel", finishTouch) // Sync scrolling between fake scrollbars and real scrollable // area, ensure viewport is updated when scrolling. on(d.scroller, "scroll", function () { if (d.scroller.clientHeight) { updateScrollTop(cm, d.scroller.scrollTop) setScrollLeft(cm, d.scroller.scrollLeft, true) signal(cm, "scroll", cm) } }) // Listen to wheel events in order to try and update the viewport on time. on(d.scroller, "mousewheel", function (e) { return onScrollWheel(cm, e); }) on(d.scroller, "DOMMouseScroll", function (e) { return onScrollWheel(cm, e); }) // Prevent wrapper from ever scrolling on(d.wrapper, "scroll", function () { return d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; }) d.dragFunctions = { enter: function (e) {if (!signalDOMEvent(cm, e)) { e_stop(e) }}, over: function (e) {if (!signalDOMEvent(cm, e)) { onDragOver(cm, e); e_stop(e) }}, start: function (e) { return onDragStart(cm, e); }, drop: operation(cm, onDrop), leave: function (e) {if (!signalDOMEvent(cm, e)) { clearDragCursor(cm) }} } var inp = d.input.getField() on(inp, "keyup", function (e) { return onKeyUp.call(cm, e); }) on(inp, "keydown", operation(cm, onKeyDown)) on(inp, "keypress", operation(cm, onKeyPress)) on(inp, "focus", function (e) { return onFocus(cm, e); }) on(inp, "blur", function (e) { return onBlur(cm, e); }) } var initHooks = [] CodeMirror.defineInitHook = function (f) { return initHooks.push(f); } // Indent the given line. The how parameter can be "smart", // "add"/null, "subtract", or "prev". When aggressive is false // (typically set to true for forced single-line indents), empty // lines are not indented, and places where the mode returns Pass // are left alone. function indentLine(cm, n, how, aggressive) { var doc = cm.doc, state if (how == null) { how = "add" } if (how == "smart") { // Fall back to "prev" when the mode doesn't have an indentation // method. if (!doc.mode.indent) { how = "prev" } else { state = getContextBefore(cm, n).state } } var tabSize = cm.options.tabSize var line = getLine(doc, n), curSpace = countColumn(line.text, null, tabSize) if (line.stateAfter) { line.stateAfter = null } var curSpaceString = line.text.match(/^\s*/)[0], indentation if (!aggressive && !/\S/.test(line.text)) { indentation = 0 how = "not" } else if (how == "smart") { indentation = doc.mode.indent(state, line.text.slice(curSpaceString.length), line.text) if (indentation == Pass || indentation > 150) { if (!aggressive) { return } how = "prev" } } if (how == "prev") { if (n > doc.first) { indentation = countColumn(getLine(doc, n-1).text, null, tabSize) } else { indentation = 0 } } else if (how == "add") { indentation = curSpace + cm.options.indentUnit } else if (how == "subtract") { indentation = curSpace - cm.options.indentUnit } else if (typeof how == "number") { indentation = curSpace + how } indentation = Math.max(0, indentation) var indentString = "", pos = 0 if (cm.options.indentWithTabs) { for (var i = Math.floor(indentation / tabSize); i; --i) {pos += tabSize; indentString += "\t"} } if (pos < indentation) { indentString += spaceStr(indentation - pos) } if (indentString != curSpaceString) { replaceRange(doc, indentString, Pos(n, 0), Pos(n, curSpaceString.length), "+input") line.stateAfter = null return true } else { // Ensure that, if the cursor was in the whitespace at the start // of the line, it is moved to the end of that space. for (var i$1 = 0; i$1 < doc.sel.ranges.length; i$1++) { var range = doc.sel.ranges[i$1] if (range.head.line == n && range.head.ch < curSpaceString.length) { var pos$1 = Pos(n, curSpaceString.length) replaceOneSelection(doc, i$1, new Range(pos$1, pos$1)) break } } } } // This will be set to a {lineWise: bool, text: [string]} object, so // that, when pasting, we know what kind of selections the copied // text was made out of. var lastCopied = null function setLastCopied(newLastCopied) { lastCopied = newLastCopied } function applyTextInput(cm, inserted, deleted, sel, origin) { var doc = cm.doc cm.display.shift = false if (!sel) { sel = doc.sel } var paste = cm.state.pasteIncoming || origin == "paste" var textLines = splitLinesAuto(inserted), multiPaste = null // When pasing N lines into N selections, insert one line per selection if (paste && sel.ranges.length > 1) { if (lastCopied && lastCopied.text.join("\n") == inserted) { if (sel.ranges.length % lastCopied.text.length == 0) { multiPaste = [] for (var i = 0; i < lastCopied.text.length; i++) { multiPaste.push(doc.splitLines(lastCopied.text[i])) } } } else if (textLines.length == sel.ranges.length && cm.options.pasteLinesPerSelection) { multiPaste = map(textLines, function (l) { return [l]; }) } } var updateInput // Normal behavior is to insert the new text into every selection for (var i$1 = sel.ranges.length - 1; i$1 >= 0; i$1--) { var range = sel.ranges[i$1] var from = range.from(), to = range.to() if (range.empty()) { if (deleted && deleted > 0) // Handle deletion { from = Pos(from.line, from.ch - deleted) } else if (cm.state.overwrite && !paste) // Handle overwrite { to = Pos(to.line, Math.min(getLine(doc, to.line).text.length, to.ch + lst(textLines).length)) } else if (lastCopied && lastCopied.lineWise && lastCopied.text.join("\n") == inserted) { from = to = Pos(from.line, 0) } } updateInput = cm.curOp.updateInput var changeEvent = {from: from, to: to, text: multiPaste ? multiPaste[i$1 % multiPaste.length] : textLines, origin: origin || (paste ? "paste" : cm.state.cutIncoming ? "cut" : "+input")} makeChange(cm.doc, changeEvent) signalLater(cm, "inputRead", cm, changeEvent) } if (inserted && !paste) { triggerElectric(cm, inserted) } ensureCursorVisible(cm) cm.curOp.updateInput = updateInput cm.curOp.typing = true cm.state.pasteIncoming = cm.state.cutIncoming = false } function handlePaste(e, cm) { var pasted = e.clipboardData && e.clipboardData.getData("Text") if (pasted) { e.preventDefault() if (!cm.isReadOnly() && !cm.options.disableInput) { runInOp(cm, function () { return applyTextInput(cm, pasted, 0, null, "paste"); }) } return true } } function triggerElectric(cm, inserted) { // When an 'electric' character is inserted, immediately trigger a reindent if (!cm.options.electricChars || !cm.options.smartIndent) { return } var sel = cm.doc.sel for (var i = sel.ranges.length - 1; i >= 0; i--) { var range = sel.ranges[i] if (range.head.ch > 100 || (i && sel.ranges[i - 1].head.line == range.head.line)) { continue } var mode = cm.getModeAt(range.head) var indented = false if (mode.electricChars) { for (var j = 0; j < mode.electricChars.length; j++) { if (inserted.indexOf(mode.electricChars.charAt(j)) > -1) { indented = indentLine(cm, range.head.line, "smart") break } } } else if (mode.electricInput) { if (mode.electricInput.test(getLine(cm.doc, range.head.line).text.slice(0, range.head.ch))) { indented = indentLine(cm, range.head.line, "smart") } } if (indented) { signalLater(cm, "electricInput", cm, range.head.line) } } } function copyableRanges(cm) { var text = [], ranges = [] for (var i = 0; i < cm.doc.sel.ranges.length; i++) { var line = cm.doc.sel.ranges[i].head.line var lineRange = {anchor: Pos(line, 0), head: Pos(line + 1, 0)} ranges.push(lineRange) text.push(cm.getRange(lineRange.anchor, lineRange.head)) } return {text: text, ranges: ranges} } function disableBrowserMagic(field, spellcheck) { field.setAttribute("autocorrect", "off") field.setAttribute("autocapitalize", "off") field.setAttribute("spellcheck", !!spellcheck) } function hiddenTextarea() { var te = elt("textarea", null, null, "position: absolute; bottom: -1em; padding: 0; width: 1px; height: 1em; outline: none") var div = elt("div", [te], null, "overflow: hidden; position: relative; width: 3px; height: 0px;") // The textarea is kept positioned near the cursor to prevent the // fact that it'll be scrolled into view on input from scrolling // our fake cursor out of view. On webkit, when wrap=off, paste is // very slow. So make the area wide instead. if (webkit) { te.style.width = "1000px" } else { te.setAttribute("wrap", "off") } // If border: 0; -- iOS fails to open keyboard (issue #1287) if (ios) { te.style.border = "1px solid black" } disableBrowserMagic(te) return div } // The publicly visible API. Note that methodOp(f) means // 'wrap f in an operation, performed on its `this` parameter'. // This is not the complete set of editor methods. Most of the // methods defined on the Doc type are also injected into // CodeMirror.prototype, for backwards compatibility and // convenience. function addEditorMethods(CodeMirror) { var optionHandlers = CodeMirror.optionHandlers var helpers = CodeMirror.helpers = {} CodeMirror.prototype = { constructor: CodeMirror, focus: function(){window.focus(); this.display.input.focus()}, setOption: function(option, value) { var options = this.options, old = options[option] if (options[option] == value && option != "mode") { return } options[option] = value if (optionHandlers.hasOwnProperty(option)) { operation(this, optionHandlers[option])(this, value, old) } signal(this, "optionChange", this, option) }, getOption: function(option) {return this.options[option]}, getDoc: function() {return this.doc}, addKeyMap: function(map, bottom) { this.state.keyMaps[bottom ? "push" : "unshift"](getKeyMap(map)) }, removeKeyMap: function(map) { var maps = this.state.keyMaps for (var i = 0; i < maps.length; ++i) { if (maps[i] == map || maps[i].name == map) { maps.splice(i, 1) return true } } }, addOverlay: methodOp(function(spec, options) { var mode = spec.token ? spec : CodeMirror.getMode(this.options, spec) if (mode.startState) { throw new Error("Overlays may not be stateful.") } insertSorted(this.state.overlays, {mode: mode, modeSpec: spec, opaque: options && options.opaque, priority: (options && options.priority) || 0}, function (overlay) { return overlay.priority; }) this.state.modeGen++ regChange(this) }), removeOverlay: methodOp(function(spec) { var this$1 = this; var overlays = this.state.overlays for (var i = 0; i < overlays.length; ++i) { var cur = overlays[i].modeSpec if (cur == spec || typeof spec == "string" && cur.name == spec) { overlays.splice(i, 1) this$1.state.modeGen++ regChange(this$1) return } } }), indentLine: methodOp(function(n, dir, aggressive) { if (typeof dir != "string" && typeof dir != "number") { if (dir == null) { dir = this.options.smartIndent ? "smart" : "prev" } else { dir = dir ? "add" : "subtract" } } if (isLine(this.doc, n)) { indentLine(this, n, dir, aggressive) } }), indentSelection: methodOp(function(how) { var this$1 = this; var ranges = this.doc.sel.ranges, end = -1 for (var i = 0; i < ranges.length; i++) { var range = ranges[i] if (!range.empty()) { var from = range.from(), to = range.to() var start = Math.max(end, from.line) end = Math.min(this$1.lastLine(), to.line - (to.ch ? 0 : 1)) + 1 for (var j = start; j < end; ++j) { indentLine(this$1, j, how) } var newRanges = this$1.doc.sel.ranges if (from.ch == 0 && ranges.length == newRanges.length && newRanges[i].from().ch > 0) { replaceOneSelection(this$1.doc, i, new Range(from, newRanges[i].to()), sel_dontScroll) } } else if (range.head.line > end) { indentLine(this$1, range.head.line, how, true) end = range.head.line if (i == this$1.doc.sel.primIndex) { ensureCursorVisible(this$1) } } } }), // Fetch the parser token for a given character. Useful for hacks // that want to inspect the mode state (say, for completion). getTokenAt: function(pos, precise) { return takeToken(this, pos, precise) }, getLineTokens: function(line, precise) { return takeToken(this, Pos(line), precise, true) }, getTokenTypeAt: function(pos) { pos = clipPos(this.doc, pos) var styles = getLineStyles(this, getLine(this.doc, pos.line)) var before = 0, after = (styles.length - 1) / 2, ch = pos.ch var type if (ch == 0) { type = styles[2] } else { for (;;) { var mid = (before + after) >> 1 if ((mid ? styles[mid * 2 - 1] : 0) >= ch) { after = mid } else if (styles[mid * 2 + 1] < ch) { before = mid + 1 } else { type = styles[mid * 2 + 2]; break } } } var cut = type ? type.indexOf("overlay ") : -1 return cut < 0 ? type : cut == 0 ? null : type.slice(0, cut - 1) }, getModeAt: function(pos) { var mode = this.doc.mode if (!mode.innerMode) { return mode } return CodeMirror.innerMode(mode, this.getTokenAt(pos).state).mode }, getHelper: function(pos, type) { return this.getHelpers(pos, type)[0] }, getHelpers: function(pos, type) { var this$1 = this; var found = [] if (!helpers.hasOwnProperty(type)) { return found } var help = helpers[type], mode = this.getModeAt(pos) if (typeof mode[type] == "string") { if (help[mode[type]]) { found.push(help[mode[type]]) } } else if (mode[type]) { for (var i = 0; i < mode[type].length; i++) { var val = help[mode[type][i]] if (val) { found.push(val) } } } else if (mode.helperType && help[mode.helperType]) { found.push(help[mode.helperType]) } else if (help[mode.name]) { found.push(help[mode.name]) } for (var i$1 = 0; i$1 < help._global.length; i$1++) { var cur = help._global[i$1] if (cur.pred(mode, this$1) && indexOf(found, cur.val) == -1) { found.push(cur.val) } } return found }, getStateAfter: function(line, precise) { var doc = this.doc line = clipLine(doc, line == null ? doc.first + doc.size - 1: line) return getContextBefore(this, line + 1, precise).state }, cursorCoords: function(start, mode) { var pos, range = this.doc.sel.primary() if (start == null) { pos = range.head } else if (typeof start == "object") { pos = clipPos(this.doc, start) } else { pos = start ? range.from() : range.to() } return cursorCoords(this, pos, mode || "page") }, charCoords: function(pos, mode) { return charCoords(this, clipPos(this.doc, pos), mode || "page") }, coordsChar: function(coords, mode) { coords = fromCoordSystem(this, coords, mode || "page") return coordsChar(this, coords.left, coords.top) }, lineAtHeight: function(height, mode) { height = fromCoordSystem(this, {top: height, left: 0}, mode || "page").top return lineAtHeight(this.doc, height + this.display.viewOffset) }, heightAtLine: function(line, mode, includeWidgets) { var end = false, lineObj if (typeof line == "number") { var last = this.doc.first + this.doc.size - 1 if (line < this.doc.first) { line = this.doc.first } else if (line > last) { line = last; end = true } lineObj = getLine(this.doc, line) } else { lineObj = line } return intoCoordSystem(this, lineObj, {top: 0, left: 0}, mode || "page", includeWidgets || end).top + (end ? this.doc.height - heightAtLine(lineObj) : 0) }, defaultTextHeight: function() { return textHeight(this.display) }, defaultCharWidth: function() { return charWidth(this.display) }, getViewport: function() { return {from: this.display.viewFrom, to: this.display.viewTo}}, addWidget: function(pos, node, scroll, vert, horiz) { var display = this.display pos = cursorCoords(this, clipPos(this.doc, pos)) var top = pos.bottom, left = pos.left node.style.position = "absolute" node.setAttribute("cm-ignore-events", "true") this.display.input.setUneditable(node) display.sizer.appendChild(node) if (vert == "over") { top = pos.top } else if (vert == "above" || vert == "near") { var vspace = Math.max(display.wrapper.clientHeight, this.doc.height), hspace = Math.max(display.sizer.clientWidth, display.lineSpace.clientWidth) // Default to positioning above (if specified and possible); otherwise default to positioning below if ((vert == 'above' || pos.bottom + node.offsetHeight > vspace) && pos.top > node.offsetHeight) { top = pos.top - node.offsetHeight } else if (pos.bottom + node.offsetHeight <= vspace) { top = pos.bottom } if (left + node.offsetWidth > hspace) { left = hspace - node.offsetWidth } } node.style.top = top + "px" node.style.left = node.style.right = "" if (horiz == "right") { left = display.sizer.clientWidth - node.offsetWidth node.style.right = "0px" } else { if (horiz == "left") { left = 0 } else if (horiz == "middle") { left = (display.sizer.clientWidth - node.offsetWidth) / 2 } node.style.left = left + "px" } if (scroll) { scrollIntoView(this, {left: left, top: top, right: left + node.offsetWidth, bottom: top + node.offsetHeight}) } }, triggerOnKeyDown: methodOp(onKeyDown), triggerOnKeyPress: methodOp(onKeyPress), triggerOnKeyUp: onKeyUp, triggerOnMouseDown: methodOp(onMouseDown), execCommand: function(cmd) { if (commands.hasOwnProperty(cmd)) { return commands[cmd].call(null, this) } }, triggerElectric: methodOp(function(text) { triggerElectric(this, text) }), findPosH: function(from, amount, unit, visually) { var this$1 = this; var dir = 1 if (amount < 0) { dir = -1; amount = -amount } var cur = clipPos(this.doc, from) for (var i = 0; i < amount; ++i) { cur = findPosH(this$1.doc, cur, dir, unit, visually) if (cur.hitSide) { break } } return cur }, moveH: methodOp(function(dir, unit) { var this$1 = this; this.extendSelectionsBy(function (range) { if (this$1.display.shift || this$1.doc.extend || range.empty()) { return findPosH(this$1.doc, range.head, dir, unit, this$1.options.rtlMoveVisually) } else { return dir < 0 ? range.from() : range.to() } }, sel_move) }), deleteH: methodOp(function(dir, unit) { var sel = this.doc.sel, doc = this.doc if (sel.somethingSelected()) { doc.replaceSelection("", null, "+delete") } else { deleteNearSelection(this, function (range) { var other = findPosH(doc, range.head, dir, unit, false) return dir < 0 ? {from: other, to: range.head} : {from: range.head, to: other} }) } }), findPosV: function(from, amount, unit, goalColumn) { var this$1 = this; var dir = 1, x = goalColumn if (amount < 0) { dir = -1; amount = -amount } var cur = clipPos(this.doc, from) for (var i = 0; i < amount; ++i) { var coords = cursorCoords(this$1, cur, "div") if (x == null) { x = coords.left } else { coords.left = x } cur = findPosV(this$1, coords, dir, unit) if (cur.hitSide) { break } } return cur }, moveV: methodOp(function(dir, unit) { var this$1 = this; var doc = this.doc, goals = [] var collapse = !this.display.shift && !doc.extend && doc.sel.somethingSelected() doc.extendSelectionsBy(function (range) { if (collapse) { return dir < 0 ? range.from() : range.to() } var headPos = cursorCoords(this$1, range.head, "div") if (range.goalColumn != null) { headPos.left = range.goalColumn } goals.push(headPos.left) var pos = findPosV(this$1, headPos, dir, unit) if (unit == "page" && range == doc.sel.primary()) { addToScrollTop(this$1, charCoords(this$1, pos, "div").top - headPos.top) } return pos }, sel_move) if (goals.length) { for (var i = 0; i < doc.sel.ranges.length; i++) { doc.sel.ranges[i].goalColumn = goals[i] } } }), // Find the word at the given position (as returned by coordsChar). findWordAt: function(pos) { var doc = this.doc, line = getLine(doc, pos.line).text var start = pos.ch, end = pos.ch if (line) { var helper = this.getHelper(pos, "wordChars") if ((pos.sticky == "before" || end == line.length) && start) { --start; } else { ++end } var startChar = line.charAt(start) var check = isWordChar(startChar, helper) ? function (ch) { return isWordChar(ch, helper); } : /\s/.test(startChar) ? function (ch) { return /\s/.test(ch); } : function (ch) { return (!/\s/.test(ch) && !isWordChar(ch)); } while (start > 0 && check(line.charAt(start - 1))) { --start } while (end < line.length && check(line.charAt(end))) { ++end } } return new Range(Pos(pos.line, start), Pos(pos.line, end)) }, toggleOverwrite: function(value) { if (value != null && value == this.state.overwrite) { return } if (this.state.overwrite = !this.state.overwrite) { addClass(this.display.cursorDiv, "CodeMirror-overwrite") } else { rmClass(this.display.cursorDiv, "CodeMirror-overwrite") } signal(this, "overwriteToggle", this, this.state.overwrite) }, hasFocus: function() { return this.display.input.getField() == activeElt() }, isReadOnly: function() { return !!(this.options.readOnly || this.doc.cantEdit) }, scrollTo: methodOp(function (x, y) { scrollToCoords(this, x, y) }), getScrollInfo: function() { var scroller = this.display.scroller return {left: scroller.scrollLeft, top: scroller.scrollTop, height: scroller.scrollHeight - scrollGap(this) - this.display.barHeight, width: scroller.scrollWidth - scrollGap(this) - this.display.barWidth, clientHeight: displayHeight(this), clientWidth: displayWidth(this)} }, scrollIntoView: methodOp(function(range, margin) { if (range == null) { range = {from: this.doc.sel.primary().head, to: null} if (margin == null) { margin = this.options.cursorScrollMargin } } else if (typeof range == "number") { range = {from: Pos(range, 0), to: null} } else if (range.from == null) { range = {from: range, to: null} } if (!range.to) { range.to = range.from } range.margin = margin || 0 if (range.from.line != null) { scrollToRange(this, range) } else { scrollToCoordsRange(this, range.from, range.to, range.margin) } }), setSize: methodOp(function(width, height) { var this$1 = this; var interpret = function (val) { return typeof val == "number" || /^\d+$/.test(String(val)) ? val + "px" : val; } if (width != null) { this.display.wrapper.style.width = interpret(width) } if (height != null) { this.display.wrapper.style.height = interpret(height) } if (this.options.lineWrapping) { clearLineMeasurementCache(this) } var lineNo = this.display.viewFrom this.doc.iter(lineNo, this.display.viewTo, function (line) { if (line.widgets) { for (var i = 0; i < line.widgets.length; i++) { if (line.widgets[i].noHScroll) { regLineChange(this$1, lineNo, "widget"); break } } } ++lineNo }) this.curOp.forceUpdate = true signal(this, "refresh", this) }), operation: function(f){return runInOp(this, f)}, startOperation: function(){return startOperation(this)}, endOperation: function(){return endOperation(this)}, refresh: methodOp(function() { var oldHeight = this.display.cachedTextHeight regChange(this) this.curOp.forceUpdate = true clearCaches(this) scrollToCoords(this, this.doc.scrollLeft, this.doc.scrollTop) updateGutterSpace(this) if (oldHeight == null || Math.abs(oldHeight - textHeight(this.display)) > .5) { estimateLineHeights(this) } signal(this, "refresh", this) }), swapDoc: methodOp(function(doc) { var old = this.doc old.cm = null attachDoc(this, doc) clearCaches(this) this.display.input.reset() scrollToCoords(this, doc.scrollLeft, doc.scrollTop) this.curOp.forceScroll = true signalLater(this, "swapDoc", this, old) return old }), getInputField: function(){return this.display.input.getField()}, getWrapperElement: function(){return this.display.wrapper}, getScrollerElement: function(){return this.display.scroller}, getGutterElement: function(){return this.display.gutters} } eventMixin(CodeMirror) CodeMirror.registerHelper = function(type, name, value) { if (!helpers.hasOwnProperty(type)) { helpers[type] = CodeMirror[type] = {_global: []} } helpers[type][name] = value } CodeMirror.registerGlobalHelper = function(type, name, predicate, value) { CodeMirror.registerHelper(type, name, value) helpers[type]._global.push({pred: predicate, val: value}) } } // Used for horizontal relative motion. Dir is -1 or 1 (left or // right), unit can be "char", "column" (like char, but doesn't // cross line boundaries), "word" (across next word), or "group" (to // the start of next group of word or non-word-non-whitespace // chars). The visually param controls whether, in right-to-left // text, direction 1 means to move towards the next index in the // string, or towards the character to the right of the current // position. The resulting position will have a hitSide=true // property if it reached the end of the document. function findPosH(doc, pos, dir, unit, visually) { var oldPos = pos var origDir = dir var lineObj = getLine(doc, pos.line) function findNextLine() { var l = pos.line + dir if (l < doc.first || l >= doc.first + doc.size) { return false } pos = new Pos(l, pos.ch, pos.sticky) return lineObj = getLine(doc, l) } function moveOnce(boundToLine) { var next if (visually) { next = moveVisually(doc.cm, lineObj, pos, dir) } else { next = moveLogically(lineObj, pos, dir) } if (next == null) { if (!boundToLine && findNextLine()) { pos = endOfLine(visually, doc.cm, lineObj, pos.line, dir) } else { return false } } else { pos = next } return true } if (unit == "char") { moveOnce() } else if (unit == "column") { moveOnce(true) } else if (unit == "word" || unit == "group") { var sawType = null, group = unit == "group" var helper = doc.cm && doc.cm.getHelper(pos, "wordChars") for (var first = true;; first = false) { if (dir < 0 && !moveOnce(!first)) { break } var cur = lineObj.text.charAt(pos.ch) || "\n" var type = isWordChar(cur, helper) ? "w" : group && cur == "\n" ? "n" : !group || /\s/.test(cur) ? null : "p" if (group && !first && !type) { type = "s" } if (sawType && sawType != type) { if (dir < 0) {dir = 1; moveOnce(); pos.sticky = "after"} break } if (type) { sawType = type } if (dir > 0 && !moveOnce(!first)) { break } } } var result = skipAtomic(doc, pos, oldPos, origDir, true) if (equalCursorPos(oldPos, result)) { result.hitSide = true } return result } // For relative vertical movement. Dir may be -1 or 1. Unit can be // "page" or "line". The resulting position will have a hitSide=true // property if it reached the end of the document. function findPosV(cm, pos, dir, unit) { var doc = cm.doc, x = pos.left, y if (unit == "page") { var pageSize = Math.min(cm.display.wrapper.clientHeight, window.innerHeight || document.documentElement.clientHeight) var moveAmount = Math.max(pageSize - .5 * textHeight(cm.display), 3) y = (dir > 0 ? pos.bottom : pos.top) + dir * moveAmount } else if (unit == "line") { y = dir > 0 ? pos.bottom + 3 : pos.top - 3 } var target for (;;) { target = coordsChar(cm, x, y) if (!target.outside) { break } if (dir < 0 ? y <= 0 : y >= doc.height) { target.hitSide = true; break } y += dir * 5 } return target } // CONTENTEDITABLE INPUT STYLE var ContentEditableInput = function(cm) { this.cm = cm this.lastAnchorNode = this.lastAnchorOffset = this.lastFocusNode = this.lastFocusOffset = null this.polling = new Delayed() this.composing = null this.gracePeriod = false this.readDOMTimeout = null }; ContentEditableInput.prototype.init = function (display) { var this$1 = this; var input = this, cm = input.cm var div = input.div = display.lineDiv disableBrowserMagic(div, cm.options.spellcheck) on(div, "paste", function (e) { if (signalDOMEvent(cm, e) || handlePaste(e, cm)) { return } // IE doesn't fire input events, so we schedule a read for the pasted content in this way if (ie_version <= 11) { setTimeout(operation(cm, function () { return this$1.updateFromDOM(); }), 20) } }) on(div, "compositionstart", function (e) { this$1.composing = {data: e.data, done: false} }) on(div, "compositionupdate", function (e) { if (!this$1.composing) { this$1.composing = {data: e.data, done: false} } }) on(div, "compositionend", function (e) { if (this$1.composing) { if (e.data != this$1.composing.data) { this$1.readFromDOMSoon() } this$1.composing.done = true } }) on(div, "touchstart", function () { return input.forceCompositionEnd(); }) on(div, "input", function () { if (!this$1.composing) { this$1.readFromDOMSoon() } }) function onCopyCut(e) { if (signalDOMEvent(cm, e)) { return } if (cm.somethingSelected()) { setLastCopied({lineWise: false, text: cm.getSelections()}) if (e.type == "cut") { cm.replaceSelection("", null, "cut") } } else if (!cm.options.lineWiseCopyCut) { return } else { var ranges = copyableRanges(cm) setLastCopied({lineWise: true, text: ranges.text}) if (e.type == "cut") { cm.operation(function () { cm.setSelections(ranges.ranges, 0, sel_dontScroll) cm.replaceSelection("", null, "cut") }) } } if (e.clipboardData) { e.clipboardData.clearData() var content = lastCopied.text.join("\n") // iOS exposes the clipboard API, but seems to discard content inserted into it e.clipboardData.setData("Text", content) if (e.clipboardData.getData("Text") == content) { e.preventDefault() return } } // Old-fashioned briefly-focus-a-textarea hack var kludge = hiddenTextarea(), te = kludge.firstChild cm.display.lineSpace.insertBefore(kludge, cm.display.lineSpace.firstChild) te.value = lastCopied.text.join("\n") var hadFocus = document.activeElement selectInput(te) setTimeout(function () { cm.display.lineSpace.removeChild(kludge) hadFocus.focus() if (hadFocus == div) { input.showPrimarySelection() } }, 50) } on(div, "copy", onCopyCut) on(div, "cut", onCopyCut) }; ContentEditableInput.prototype.prepareSelection = function () { var result = prepareSelection(this.cm, false) result.focus = this.cm.state.focused return result }; ContentEditableInput.prototype.showSelection = function (info, takeFocus) { if (!info || !this.cm.display.view.length) { return } if (info.focus || takeFocus) { this.showPrimarySelection() } this.showMultipleSelections(info) }; ContentEditableInput.prototype.showPrimarySelection = function () { var sel = window.getSelection(), cm = this.cm, prim = cm.doc.sel.primary() var from = prim.from(), to = prim.to() if (cm.display.viewTo == cm.display.viewFrom || from.line >= cm.display.viewTo || to.line < cm.display.viewFrom) { sel.removeAllRanges() return } var curAnchor = domToPos(cm, sel.anchorNode, sel.anchorOffset) var curFocus = domToPos(cm, sel.focusNode, sel.focusOffset) if (curAnchor && !curAnchor.bad && curFocus && !curFocus.bad && cmp(minPos(curAnchor, curFocus), from) == 0 && cmp(maxPos(curAnchor, curFocus), to) == 0) { return } var view = cm.display.view var start = (from.line >= cm.display.viewFrom && posToDOM(cm, from)) || {node: view[0].measure.map[2], offset: 0} var end = to.line < cm.display.viewTo && posToDOM(cm, to) if (!end) { var measure = view[view.length - 1].measure var map = measure.maps ? measure.maps[measure.maps.length - 1] : measure.map end = {node: map[map.length - 1], offset: map[map.length - 2] - map[map.length - 3]} } if (!start || !end) { sel.removeAllRanges() return } var old = sel.rangeCount && sel.getRangeAt(0), rng try { rng = range(start.node, start.offset, end.offset, end.node) } catch(e) {} // Our model of the DOM might be outdated, in which case the range we try to set can be impossible if (rng) { if (!gecko && cm.state.focused) { sel.collapse(start.node, start.offset) if (!rng.collapsed) { sel.removeAllRanges() sel.addRange(rng) } } else { sel.removeAllRanges() sel.addRange(rng) } if (old && sel.anchorNode == null) { sel.addRange(old) } else if (gecko) { this.startGracePeriod() } } this.rememberSelection() }; ContentEditableInput.prototype.startGracePeriod = function () { var this$1 = this; clearTimeout(this.gracePeriod) this.gracePeriod = setTimeout(function () { this$1.gracePeriod = false if (this$1.selectionChanged()) { this$1.cm.operation(function () { return this$1.cm.curOp.selectionChanged = true; }) } }, 20) }; ContentEditableInput.prototype.showMultipleSelections = function (info) { removeChildrenAndAdd(this.cm.display.cursorDiv, info.cursors) removeChildrenAndAdd(this.cm.display.selectionDiv, info.selection) }; ContentEditableInput.prototype.rememberSelection = function () { var sel = window.getSelection() this.lastAnchorNode = sel.anchorNode; this.lastAnchorOffset = sel.anchorOffset this.lastFocusNode = sel.focusNode; this.lastFocusOffset = sel.focusOffset }; ContentEditableInput.prototype.selectionInEditor = function () { var sel = window.getSelection() if (!sel.rangeCount) { return false } var node = sel.getRangeAt(0).commonAncestorContainer return contains(this.div, node) }; ContentEditableInput.prototype.focus = function () { if (this.cm.options.readOnly != "nocursor") { if (!this.selectionInEditor()) { this.showSelection(this.prepareSelection(), true) } this.div.focus() } }; ContentEditableInput.prototype.blur = function () { this.div.blur() }; ContentEditableInput.prototype.getField = function () { return this.div }; ContentEditableInput.prototype.supportsTouch = function () { return true }; ContentEditableInput.prototype.receivedFocus = function () { var input = this if (this.selectionInEditor()) { this.pollSelection() } else { runInOp(this.cm, function () { return input.cm.curOp.selectionChanged = true; }) } function poll() { if (input.cm.state.focused) { input.pollSelection() input.polling.set(input.cm.options.pollInterval, poll) } } this.polling.set(this.cm.options.pollInterval, poll) }; ContentEditableInput.prototype.selectionChanged = function () { var sel = window.getSelection() return sel.anchorNode != this.lastAnchorNode || sel.anchorOffset != this.lastAnchorOffset || sel.focusNode != this.lastFocusNode || sel.focusOffset != this.lastFocusOffset }; ContentEditableInput.prototype.pollSelection = function () { if (this.readDOMTimeout != null || this.gracePeriod || !this.selectionChanged()) { return } var sel = window.getSelection(), cm = this.cm // On Android Chrome (version 56, at least), backspacing into an // uneditable block element will put the cursor in that element, // and then, because it's not editable, hide the virtual keyboard. // Because Android doesn't allow us to actually detect backspace // presses in a sane way, this code checks for when that happens // and simulates a backspace press in this case. if (android && chrome && this.cm.options.gutters.length && isInGutter(sel.anchorNode)) { this.cm.triggerOnKeyDown({type: "keydown", keyCode: 8, preventDefault: Math.abs}) this.blur() this.focus() return } if (this.composing) { return } this.rememberSelection() var anchor = domToPos(cm, sel.anchorNode, sel.anchorOffset) var head = domToPos(cm, sel.focusNode, sel.focusOffset) if (anchor && head) { runInOp(cm, function () { setSelection(cm.doc, simpleSelection(anchor, head), sel_dontScroll) if (anchor.bad || head.bad) { cm.curOp.selectionChanged = true } }) } }; ContentEditableInput.prototype.pollContent = function () { if (this.readDOMTimeout != null) { clearTimeout(this.readDOMTimeout) this.readDOMTimeout = null } var cm = this.cm, display = cm.display, sel = cm.doc.sel.primary() var from = sel.from(), to = sel.to() if (from.ch == 0 && from.line > cm.firstLine()) { from = Pos(from.line - 1, getLine(cm.doc, from.line - 1).length) } if (to.ch == getLine(cm.doc, to.line).text.length && to.line < cm.lastLine()) { to = Pos(to.line + 1, 0) } if (from.line < display.viewFrom || to.line > display.viewTo - 1) { return false } var fromIndex, fromLine, fromNode if (from.line == display.viewFrom || (fromIndex = findViewIndex(cm, from.line)) == 0) { fromLine = lineNo(display.view[0].line) fromNode = display.view[0].node } else { fromLine = lineNo(display.view[fromIndex].line) fromNode = display.view[fromIndex - 1].node.nextSibling } var toIndex = findViewIndex(cm, to.line) var toLine, toNode if (toIndex == display.view.length - 1) { toLine = display.viewTo - 1 toNode = display.lineDiv.lastChild } else { toLine = lineNo(display.view[toIndex + 1].line) - 1 toNode = display.view[toIndex + 1].node.previousSibling } if (!fromNode) { return false } var newText = cm.doc.splitLines(domTextBetween(cm, fromNode, toNode, fromLine, toLine)) var oldText = getBetween(cm.doc, Pos(fromLine, 0), Pos(toLine, getLine(cm.doc, toLine).text.length)) while (newText.length > 1 && oldText.length > 1) { if (lst(newText) == lst(oldText)) { newText.pop(); oldText.pop(); toLine-- } else if (newText[0] == oldText[0]) { newText.shift(); oldText.shift(); fromLine++ } else { break } } var cutFront = 0, cutEnd = 0 var newTop = newText[0], oldTop = oldText[0], maxCutFront = Math.min(newTop.length, oldTop.length) while (cutFront < maxCutFront && newTop.charCodeAt(cutFront) == oldTop.charCodeAt(cutFront)) { ++cutFront } var newBot = lst(newText), oldBot = lst(oldText) var maxCutEnd = Math.min(newBot.length - (newText.length == 1 ? cutFront : 0), oldBot.length - (oldText.length == 1 ? cutFront : 0)) while (cutEnd < maxCutEnd && newBot.charCodeAt(newBot.length - cutEnd - 1) == oldBot.charCodeAt(oldBot.length - cutEnd - 1)) { ++cutEnd } // Try to move start of change to start of selection if ambiguous if (newText.length == 1 && oldText.length == 1 && fromLine == from.line) { while (cutFront && cutFront > from.ch && newBot.charCodeAt(newBot.length - cutEnd - 1) == oldBot.charCodeAt(oldBot.length - cutEnd - 1)) { cutFront-- cutEnd++ } } newText[newText.length - 1] = newBot.slice(0, newBot.length - cutEnd).replace(/^\u200b+/, "") newText[0] = newText[0].slice(cutFront).replace(/\u200b+$/, "") var chFrom = Pos(fromLine, cutFront) var chTo = Pos(toLine, oldText.length ? lst(oldText).length - cutEnd : 0) if (newText.length > 1 || newText[0] || cmp(chFrom, chTo)) { replaceRange(cm.doc, newText, chFrom, chTo, "+input") return true } }; ContentEditableInput.prototype.ensurePolled = function () { this.forceCompositionEnd() }; ContentEditableInput.prototype.reset = function () { this.forceCompositionEnd() }; ContentEditableInput.prototype.forceCompositionEnd = function () { if (!this.composing) { return } clearTimeout(this.readDOMTimeout) this.composing = null this.updateFromDOM() this.div.blur() this.div.focus() }; ContentEditableInput.prototype.readFromDOMSoon = function () { var this$1 = this; if (this.readDOMTimeout != null) { return } this.readDOMTimeout = setTimeout(function () { this$1.readDOMTimeout = null if (this$1.composing) { if (this$1.composing.done) { this$1.composing = null } else { return } } this$1.updateFromDOM() }, 80) }; ContentEditableInput.prototype.updateFromDOM = function () { var this$1 = this; if (this.cm.isReadOnly() || !this.pollContent()) { runInOp(this.cm, function () { return regChange(this$1.cm); }) } }; ContentEditableInput.prototype.setUneditable = function (node) { node.contentEditable = "false" }; ContentEditableInput.prototype.onKeyPress = function (e) { if (e.charCode == 0) { return } e.preventDefault() if (!this.cm.isReadOnly()) { operation(this.cm, applyTextInput)(this.cm, String.fromCharCode(e.charCode == null ? e.keyCode : e.charCode), 0) } }; ContentEditableInput.prototype.readOnlyChanged = function (val) { this.div.contentEditable = String(val != "nocursor") }; ContentEditableInput.prototype.onContextMenu = function () {}; ContentEditableInput.prototype.resetPosition = function () {}; ContentEditableInput.prototype.needsContentAttribute = true function posToDOM(cm, pos) { var view = findViewForLine(cm, pos.line) if (!view || view.hidden) { return null } var line = getLine(cm.doc, pos.line) var info = mapFromLineView(view, line, pos.line) var order = getOrder(line, cm.doc.direction), side = "left" if (order) { var partPos = getBidiPartAt(order, pos.ch) side = partPos % 2 ? "right" : "left" } var result = nodeAndOffsetInLineMap(info.map, pos.ch, side) result.offset = result.collapse == "right" ? result.end : result.start return result } function isInGutter(node) { for (var scan = node; scan; scan = scan.parentNode) { if (/CodeMirror-gutter-wrapper/.test(scan.className)) { return true } } return false } function badPos(pos, bad) { if (bad) { pos.bad = true; } return pos } function domTextBetween(cm, from, to, fromLine, toLine) { var text = "", closing = false, lineSep = cm.doc.lineSeparator() function recognizeMarker(id) { return function (marker) { return marker.id == id; } } function close() { if (closing) { text += lineSep closing = false } } function addText(str) { if (str) { close() text += str } } function walk(node) { if (node.nodeType == 1) { var cmText = node.getAttribute("cm-text") if (cmText != null) { addText(cmText || node.textContent.replace(/\u200b/g, "")) return } var markerID = node.getAttribute("cm-marker"), range if (markerID) { var found = cm.findMarks(Pos(fromLine, 0), Pos(toLine + 1, 0), recognizeMarker(+markerID)) if (found.length && (range = found[0].find(0))) { addText(getBetween(cm.doc, range.from, range.to).join(lineSep)) } return } if (node.getAttribute("contenteditable") == "false") { return } var isBlock = /^(pre|div|p)$/i.test(node.nodeName) if (isBlock) { close() } for (var i = 0; i < node.childNodes.length; i++) { walk(node.childNodes[i]) } if (isBlock) { closing = true } } else if (node.nodeType == 3) { addText(node.nodeValue) } } for (;;) { walk(from) if (from == to) { break } from = from.nextSibling } return text } function domToPos(cm, node, offset) { var lineNode if (node == cm.display.lineDiv) { lineNode = cm.display.lineDiv.childNodes[offset] if (!lineNode) { return badPos(cm.clipPos(Pos(cm.display.viewTo - 1)), true) } node = null; offset = 0 } else { for (lineNode = node;; lineNode = lineNode.parentNode) { if (!lineNode || lineNode == cm.display.lineDiv) { return null } if (lineNode.parentNode && lineNode.parentNode == cm.display.lineDiv) { break } } } for (var i = 0; i < cm.display.view.length; i++) { var lineView = cm.display.view[i] if (lineView.node == lineNode) { return locateNodeInLineView(lineView, node, offset) } } } function locateNodeInLineView(lineView, node, offset) { var wrapper = lineView.text.firstChild, bad = false if (!node || !contains(wrapper, node)) { return badPos(Pos(lineNo(lineView.line), 0), true) } if (node == wrapper) { bad = true node = wrapper.childNodes[offset] offset = 0 if (!node) { var line = lineView.rest ? lst(lineView.rest) : lineView.line return badPos(Pos(lineNo(line), line.text.length), bad) } } var textNode = node.nodeType == 3 ? node : null, topNode = node if (!textNode && node.childNodes.length == 1 && node.firstChild.nodeType == 3) { textNode = node.firstChild if (offset) { offset = textNode.nodeValue.length } } while (topNode.parentNode != wrapper) { topNode = topNode.parentNode } var measure = lineView.measure, maps = measure.maps function find(textNode, topNode, offset) { for (var i = -1; i < (maps ? maps.length : 0); i++) { var map = i < 0 ? measure.map : maps[i] for (var j = 0; j < map.length; j += 3) { var curNode = map[j + 2] if (curNode == textNode || curNode == topNode) { var line = lineNo(i < 0 ? lineView.line : lineView.rest[i]) var ch = map[j] + offset if (offset < 0 || curNode != textNode) { ch = map[j + (offset ? 1 : 0)] } return Pos(line, ch) } } } } var found = find(textNode, topNode, offset) if (found) { return badPos(found, bad) } // FIXME this is all really shaky. might handle the few cases it needs to handle, but likely to cause problems for (var after = topNode.nextSibling, dist = textNode ? textNode.nodeValue.length - offset : 0; after; after = after.nextSibling) { found = find(after, after.firstChild, 0) if (found) { return badPos(Pos(found.line, found.ch - dist), bad) } else { dist += after.textContent.length } } for (var before = topNode.previousSibling, dist$1 = offset; before; before = before.previousSibling) { found = find(before, before.firstChild, -1) if (found) { return badPos(Pos(found.line, found.ch + dist$1), bad) } else { dist$1 += before.textContent.length } } } // TEXTAREA INPUT STYLE var TextareaInput = function(cm) { this.cm = cm // See input.poll and input.reset this.prevInput = "" // Flag that indicates whether we expect input to appear real soon // now (after some event like 'keypress' or 'input') and are // polling intensively. this.pollingFast = false // Self-resetting timeout for the poller this.polling = new Delayed() // Used to work around IE issue with selection being forgotten when focus moves away from textarea this.hasSelection = false this.composing = null }; TextareaInput.prototype.init = function (display) { var this$1 = this; var input = this, cm = this.cm // Wraps and hides input textarea var div = this.wrapper = hiddenTextarea() // The semihidden textarea that is focused when the editor is // focused, and receives input. var te = this.textarea = div.firstChild display.wrapper.insertBefore(div, display.wrapper.firstChild) // Needed to hide big blue blinking cursor on Mobile Safari (doesn't seem to work in iOS 8 anymore) if (ios) { te.style.width = "0px" } on(te, "input", function () { if (ie && ie_version >= 9 && this$1.hasSelection) { this$1.hasSelection = null } input.poll() }) on(te, "paste", function (e) { if (signalDOMEvent(cm, e) || handlePaste(e, cm)) { return } cm.state.pasteIncoming = true input.fastPoll() }) function prepareCopyCut(e) { if (signalDOMEvent(cm, e)) { return } if (cm.somethingSelected()) { setLastCopied({lineWise: false, text: cm.getSelections()}) } else if (!cm.options.lineWiseCopyCut) { return } else { var ranges = copyableRanges(cm) setLastCopied({lineWise: true, text: ranges.text}) if (e.type == "cut") { cm.setSelections(ranges.ranges, null, sel_dontScroll) } else { input.prevInput = "" te.value = ranges.text.join("\n") selectInput(te) } } if (e.type == "cut") { cm.state.cutIncoming = true } } on(te, "cut", prepareCopyCut) on(te, "copy", prepareCopyCut) on(display.scroller, "paste", function (e) { if (eventInWidget(display, e) || signalDOMEvent(cm, e)) { return } cm.state.pasteIncoming = true input.focus() }) // Prevent normal selection in the editor (we handle our own) on(display.lineSpace, "selectstart", function (e) { if (!eventInWidget(display, e)) { e_preventDefault(e) } }) on(te, "compositionstart", function () { var start = cm.getCursor("from") if (input.composing) { input.composing.range.clear() } input.composing = { start: start, range: cm.markText(start, cm.getCursor("to"), {className: "CodeMirror-composing"}) } }) on(te, "compositionend", function () { if (input.composing) { input.poll() input.composing.range.clear() input.composing = null } }) }; TextareaInput.prototype.prepareSelection = function () { // Redraw the selection and/or cursor var cm = this.cm, display = cm.display, doc = cm.doc var result = prepareSelection(cm) // Move the hidden textarea near the cursor to prevent scrolling artifacts if (cm.options.moveInputWithCursor) { var headPos = cursorCoords(cm, doc.sel.primary().head, "div") var wrapOff = display.wrapper.getBoundingClientRect(), lineOff = display.lineDiv.getBoundingClientRect() result.teTop = Math.max(0, Math.min(display.wrapper.clientHeight - 10, headPos.top + lineOff.top - wrapOff.top)) result.teLeft = Math.max(0, Math.min(display.wrapper.clientWidth - 10, headPos.left + lineOff.left - wrapOff.left)) } return result }; TextareaInput.prototype.showSelection = function (drawn) { var cm = this.cm, display = cm.display removeChildrenAndAdd(display.cursorDiv, drawn.cursors) removeChildrenAndAdd(display.selectionDiv, drawn.selection) if (drawn.teTop != null) { this.wrapper.style.top = drawn.teTop + "px" this.wrapper.style.left = drawn.teLeft + "px" } }; // Reset the input to correspond to the selection (or to be empty, // when not typing and nothing is selected) TextareaInput.prototype.reset = function (typing) { if (this.contextMenuPending || this.composing) { return } var cm = this.cm if (cm.somethingSelected()) { this.prevInput = "" var content = cm.getSelection() this.textarea.value = content if (cm.state.focused) { selectInput(this.textarea) } if (ie && ie_version >= 9) { this.hasSelection = content } } else if (!typing) { this.prevInput = this.textarea.value = "" if (ie && ie_version >= 9) { this.hasSelection = null } } }; TextareaInput.prototype.getField = function () { return this.textarea }; TextareaInput.prototype.supportsTouch = function () { return false }; TextareaInput.prototype.focus = function () { if (this.cm.options.readOnly != "nocursor" && (!mobile || activeElt() != this.textarea)) { try { this.textarea.focus() } catch (e) {} // IE8 will throw if the textarea is display: none or not in DOM } }; TextareaInput.prototype.blur = function () { this.textarea.blur() }; TextareaInput.prototype.resetPosition = function () { this.wrapper.style.top = this.wrapper.style.left = 0 }; TextareaInput.prototype.receivedFocus = function () { this.slowPoll() }; // Poll for input changes, using the normal rate of polling. This // runs as long as the editor is focused. TextareaInput.prototype.slowPoll = function () { var this$1 = this; if (this.pollingFast) { return } this.polling.set(this.cm.options.pollInterval, function () { this$1.poll() if (this$1.cm.state.focused) { this$1.slowPoll() } }) }; // When an event has just come in that is likely to add or change // something in the input textarea, we poll faster, to ensure that // the change appears on the screen quickly. TextareaInput.prototype.fastPoll = function () { var missed = false, input = this input.pollingFast = true function p() { var changed = input.poll() if (!changed && !missed) {missed = true; input.polling.set(60, p)} else {input.pollingFast = false; input.slowPoll()} } input.polling.set(20, p) }; // Read input from the textarea, and update the document to match. // When something is selected, it is present in the textarea, and // selected (unless it is huge, in which case a placeholder is // used). When nothing is selected, the cursor sits after previously // seen text (can be empty), which is stored in prevInput (we must // not reset the textarea when typing, because that breaks IME). TextareaInput.prototype.poll = function () { var this$1 = this; var cm = this.cm, input = this.textarea, prevInput = this.prevInput // Since this is called a *lot*, try to bail out as cheaply as // possible when it is clear that nothing happened. hasSelection // will be the case when there is a lot of text in the textarea, // in which case reading its value would be expensive. if (this.contextMenuPending || !cm.state.focused || (hasSelection(input) && !prevInput && !this.composing) || cm.isReadOnly() || cm.options.disableInput || cm.state.keySeq) { return false } var text = input.value // If nothing changed, bail. if (text == prevInput && !cm.somethingSelected()) { return false } // Work around nonsensical selection resetting in IE9/10, and // inexplicable appearance of private area unicode characters on // some key combos in Mac (#2689). if (ie && ie_version >= 9 && this.hasSelection === text || mac && /[\uf700-\uf7ff]/.test(text)) { cm.display.input.reset() return false } if (cm.doc.sel == cm.display.selForContextMenu) { var first = text.charCodeAt(0) if (first == 0x200b && !prevInput) { prevInput = "\u200b" } if (first == 0x21da) { this.reset(); return this.cm.execCommand("undo") } } // Find the part of the input that is actually new var same = 0, l = Math.min(prevInput.length, text.length) while (same < l && prevInput.charCodeAt(same) == text.charCodeAt(same)) { ++same } runInOp(cm, function () { applyTextInput(cm, text.slice(same), prevInput.length - same, null, this$1.composing ? "*compose" : null) // Don't leave long text in the textarea, since it makes further polling slow if (text.length > 1000 || text.indexOf("\n") > -1) { input.value = this$1.prevInput = "" } else { this$1.prevInput = text } if (this$1.composing) { this$1.composing.range.clear() this$1.composing.range = cm.markText(this$1.composing.start, cm.getCursor("to"), {className: "CodeMirror-composing"}) } }) return true }; TextareaInput.prototype.ensurePolled = function () { if (this.pollingFast && this.poll()) { this.pollingFast = false } }; TextareaInput.prototype.onKeyPress = function () { if (ie && ie_version >= 9) { this.hasSelection = null } this.fastPoll() }; TextareaInput.prototype.onContextMenu = function (e) { var input = this, cm = input.cm, display = cm.display, te = input.textarea var pos = posFromMouse(cm, e), scrollPos = display.scroller.scrollTop if (!pos || presto) { return } // Opera is difficult. // Reset the current text selection only if the click is done outside of the selection // and 'resetSelectionOnContextMenu' option is true. var reset = cm.options.resetSelectionOnContextMenu if (reset && cm.doc.sel.contains(pos) == -1) { operation(cm, setSelection)(cm.doc, simpleSelection(pos), sel_dontScroll) } var oldCSS = te.style.cssText, oldWrapperCSS = input.wrapper.style.cssText input.wrapper.style.cssText = "position: absolute" var wrapperBox = input.wrapper.getBoundingClientRect() te.style.cssText = "position: absolute; width: 30px; height: 30px;\n top: " + (e.clientY - wrapperBox.top - 5) + "px; left: " + (e.clientX - wrapperBox.left - 5) + "px;\n z-index: 1000; background: " + (ie ? "rgba(255, 255, 255, .05)" : "transparent") + ";\n outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);" var oldScrollY if (webkit) { oldScrollY = window.scrollY } // Work around Chrome issue (#2712) display.input.focus() if (webkit) { window.scrollTo(null, oldScrollY) } display.input.reset() // Adds "Select all" to context menu in FF if (!cm.somethingSelected()) { te.value = input.prevInput = " " } input.contextMenuPending = true display.selForContextMenu = cm.doc.sel clearTimeout(display.detectingSelectAll) // Select-all will be greyed out if there's nothing to select, so // this adds a zero-width space so that we can later check whether // it got selected. function prepareSelectAllHack() { if (te.selectionStart != null) { var selected = cm.somethingSelected() var extval = "\u200b" + (selected ? te.value : "") te.value = "\u21da" // Used to catch context-menu undo te.value = extval input.prevInput = selected ? "" : "\u200b" te.selectionStart = 1; te.selectionEnd = extval.length // Re-set this, in case some other handler touched the // selection in the meantime. display.selForContextMenu = cm.doc.sel } } function rehide() { input.contextMenuPending = false input.wrapper.style.cssText = oldWrapperCSS te.style.cssText = oldCSS if (ie && ie_version < 9) { display.scrollbars.setScrollTop(display.scroller.scrollTop = scrollPos) } // Try to detect the user choosing select-all if (te.selectionStart != null) { if (!ie || (ie && ie_version < 9)) { prepareSelectAllHack() } var i = 0, poll = function () { if (display.selForContextMenu == cm.doc.sel && te.selectionStart == 0 && te.selectionEnd > 0 && input.prevInput == "\u200b") { operation(cm, selectAll)(cm) } else if (i++ < 10) { display.detectingSelectAll = setTimeout(poll, 500) } else { display.selForContextMenu = null display.input.reset() } } display.detectingSelectAll = setTimeout(poll, 200) } } if (ie && ie_version >= 9) { prepareSelectAllHack() } if (captureRightClick) { e_stop(e) var mouseup = function () { off(window, "mouseup", mouseup) setTimeout(rehide, 20) } on(window, "mouseup", mouseup) } else { setTimeout(rehide, 50) } }; TextareaInput.prototype.readOnlyChanged = function (val) { if (!val) { this.reset() } this.textarea.disabled = val == "nocursor" }; TextareaInput.prototype.setUneditable = function () {}; TextareaInput.prototype.needsContentAttribute = false function fromTextArea(textarea, options) { options = options ? copyObj(options) : {} options.value = textarea.value if (!options.tabindex && textarea.tabIndex) { options.tabindex = textarea.tabIndex } if (!options.placeholder && textarea.placeholder) { options.placeholder = textarea.placeholder } // Set autofocus to true if this textarea is focused, or if it has // autofocus and no other element is focused. if (options.autofocus == null) { var hasFocus = activeElt() options.autofocus = hasFocus == textarea || textarea.getAttribute("autofocus") != null && hasFocus == document.body } function save() {textarea.value = cm.getValue()} var realSubmit if (textarea.form) { on(textarea.form, "submit", save) // Deplorable hack to make the submit method do the right thing. if (!options.leaveSubmitMethodAlone) { var form = textarea.form realSubmit = form.submit try { var wrappedSubmit = form.submit = function () { save() form.submit = realSubmit form.submit() form.submit = wrappedSubmit } } catch(e) {} } } options.finishInit = function (cm) { cm.save = save cm.getTextArea = function () { return textarea; } cm.toTextArea = function () { cm.toTextArea = isNaN // Prevent this from being ran twice save() textarea.parentNode.removeChild(cm.getWrapperElement()) textarea.style.display = "" if (textarea.form) { off(textarea.form, "submit", save) if (typeof textarea.form.submit == "function") { textarea.form.submit = realSubmit } } } } textarea.style.display = "none" var cm = CodeMirror(function (node) { return textarea.parentNode.insertBefore(node, textarea.nextSibling); }, options) return cm } function addLegacyProps(CodeMirror) { CodeMirror.off = off CodeMirror.on = on CodeMirror.wheelEventPixels = wheelEventPixels CodeMirror.Doc = Doc CodeMirror.splitLines = splitLinesAuto CodeMirror.countColumn = countColumn CodeMirror.findColumn = findColumn CodeMirror.isWordChar = isWordCharBasic CodeMirror.Pass = Pass CodeMirror.signal = signal CodeMirror.Line = Line CodeMirror.changeEnd = changeEnd CodeMirror.scrollbarModel = scrollbarModel CodeMirror.Pos = Pos CodeMirror.cmpPos = cmp CodeMirror.modes = modes CodeMirror.mimeModes = mimeModes CodeMirror.resolveMode = resolveMode CodeMirror.getMode = getMode CodeMirror.modeExtensions = modeExtensions CodeMirror.extendMode = extendMode CodeMirror.copyState = copyState CodeMirror.startState = startState CodeMirror.innerMode = innerMode CodeMirror.commands = commands CodeMirror.keyMap = keyMap CodeMirror.keyName = keyName CodeMirror.isModifierKey = isModifierKey CodeMirror.lookupKey = lookupKey CodeMirror.normalizeKeyMap = normalizeKeyMap CodeMirror.StringStream = StringStream CodeMirror.SharedTextMarker = SharedTextMarker CodeMirror.TextMarker = TextMarker CodeMirror.LineWidget = LineWidget CodeMirror.e_preventDefault = e_preventDefault CodeMirror.e_stopPropagation = e_stopPropagation CodeMirror.e_stop = e_stop CodeMirror.addClass = addClass CodeMirror.contains = contains CodeMirror.rmClass = rmClass CodeMirror.keyNames = keyNames } // EDITOR CONSTRUCTOR defineOptions(CodeMirror) addEditorMethods(CodeMirror) // Set up methods on CodeMirror's prototype to redirect to the editor's document. var dontDelegate = "iter insert remove copy getEditor constructor".split(" ") for (var prop in Doc.prototype) { if (Doc.prototype.hasOwnProperty(prop) && indexOf(dontDelegate, prop) < 0) { CodeMirror.prototype[prop] = (function(method) { return function() {return method.apply(this.doc, arguments)} })(Doc.prototype[prop]) } } eventMixin(Doc) // INPUT HANDLING CodeMirror.inputStyles = {"textarea": TextareaInput, "contenteditable": ContentEditableInput} // MODE DEFINITION AND QUERYING // Extra arguments are stored as the mode's dependencies, which is // used by (legacy) mechanisms like loadmode.js to automatically // load a mode. (Preferred mechanism is the require/define calls.) CodeMirror.defineMode = function(name/*, mode, …*/) { if (!CodeMirror.defaults.mode && name != "null") { CodeMirror.defaults.mode = name } defineMode.apply(this, arguments) } CodeMirror.defineMIME = defineMIME // Minimal default mode. CodeMirror.defineMode("null", function () { return ({token: function (stream) { return stream.skipToEnd(); }}); }) CodeMirror.defineMIME("text/plain", "null") // EXTENSIONS CodeMirror.defineExtension = function (name, func) { CodeMirror.prototype[name] = func } CodeMirror.defineDocExtension = function (name, func) { Doc.prototype[name] = func } CodeMirror.fromTextArea = fromTextArea addLegacyProps(CodeMirror) CodeMirror.version = "5.30.0" return CodeMirror; }))); ================================================ FILE: ui/vendor/codemirror/matchbrackets.js ================================================ // CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: http://codemirror.net/LICENSE (function(mod) { if (typeof exports == "object" && typeof module == "object") // CommonJS mod(require("../../lib/codemirror")); else if (typeof define == "function" && define.amd) // AMD define(["../../lib/codemirror"], mod); else // Plain browser env mod(CodeMirror); })(function(CodeMirror) { var ie_lt8 = /MSIE \d/.test(navigator.userAgent) && (document.documentMode == null || document.documentMode < 8); var Pos = CodeMirror.Pos; var matching = {"(": ")>", ")": "(<", "[": "]>", "]": "[<", "{": "}>", "}": "{<"}; function findMatchingBracket(cm, where, config) { var line = cm.getLineHandle(where.line), pos = where.ch - 1; var afterCursor = config && config.afterCursor if (afterCursor == null) afterCursor = /(^| )cm-fat-cursor($| )/.test(cm.getWrapperElement().className) // A cursor is defined as between two characters, but in in vim command mode // (i.e. not insert mode), the cursor is visually represented as a // highlighted box on top of the 2nd character. Otherwise, we allow matches // from before or after the cursor. var match = (!afterCursor && pos >= 0 && matching[line.text.charAt(pos)]) || matching[line.text.charAt(++pos)]; if (!match) return null; var dir = match.charAt(1) == ">" ? 1 : -1; if (config && config.strict && (dir > 0) != (pos == where.ch)) return null; var style = cm.getTokenTypeAt(Pos(where.line, pos + 1)); var found = scanForBracket(cm, Pos(where.line, pos + (dir > 0 ? 1 : 0)), dir, style || null, config); if (found == null) return null; return {from: Pos(where.line, pos), to: found && found.pos, match: found && found.ch == match.charAt(0), forward: dir > 0}; } // bracketRegex is used to specify which type of bracket to scan // should be a regexp, e.g. /[[\]]/ // // Note: If "where" is on an open bracket, then this bracket is ignored. // // Returns false when no bracket was found, null when it reached // maxScanLines and gave up function scanForBracket(cm, where, dir, style, config) { var maxScanLen = (config && config.maxScanLineLength) || 10000; var maxScanLines = (config && config.maxScanLines) || 1000; var stack = []; var re = config && config.bracketRegex ? config.bracketRegex : /[(){}[\]]/; var lineEnd = dir > 0 ? Math.min(where.line + maxScanLines, cm.lastLine() + 1) : Math.max(cm.firstLine() - 1, where.line - maxScanLines); for (var lineNo = where.line; lineNo != lineEnd; lineNo += dir) { var line = cm.getLine(lineNo); if (!line) continue; var pos = dir > 0 ? 0 : line.length - 1, end = dir > 0 ? line.length : -1; if (line.length > maxScanLen) continue; if (lineNo == where.line) pos = where.ch - (dir < 0 ? 1 : 0); for (; pos != end; pos += dir) { var ch = line.charAt(pos); if (re.test(ch) && (style === undefined || cm.getTokenTypeAt(Pos(lineNo, pos + 1)) == style)) { var match = matching[ch]; if ((match.charAt(1) == ">") == (dir > 0)) stack.push(ch); else if (!stack.length) return {pos: Pos(lineNo, pos), ch: ch}; else stack.pop(); } } } return lineNo - dir == (dir > 0 ? cm.lastLine() : cm.firstLine()) ? false : null; } function matchBrackets(cm, autoclear, config) { // Disable brace matching in long lines, since it'll cause hugely slow updates var maxHighlightLen = cm.state.matchBrackets.maxHighlightLineLength || 1000; var marks = [], ranges = cm.listSelections(); for (var i = 0; i < ranges.length; i++) { var match = ranges[i].empty() && findMatchingBracket(cm, ranges[i].head, config); if (match && cm.getLine(match.from.line).length <= maxHighlightLen) { var style = match.match ? "CodeMirror-matchingbracket" : "CodeMirror-nonmatchingbracket"; marks.push(cm.markText(match.from, Pos(match.from.line, match.from.ch + 1), {className: style})); if (match.to && cm.getLine(match.to.line).length <= maxHighlightLen) marks.push(cm.markText(match.to, Pos(match.to.line, match.to.ch + 1), {className: style})); } } if (marks.length) { // Kludge to work around the IE bug from issue #1193, where text // input stops going to the textare whever this fires. if (ie_lt8 && cm.state.focused) cm.focus(); var clear = function() { cm.operation(function() { for (var i = 0; i < marks.length; i++) marks[i].clear(); }); }; if (autoclear) setTimeout(clear, 800); else return clear; } } var currentlyHighlighted = null; function doMatchBrackets(cm) { cm.operation(function() { if (currentlyHighlighted) {currentlyHighlighted(); currentlyHighlighted = null;} currentlyHighlighted = matchBrackets(cm, false, cm.state.matchBrackets); }); } CodeMirror.defineOption("matchBrackets", false, function(cm, val, old) { if (old && old != CodeMirror.Init) { cm.off("cursorActivity", doMatchBrackets); if (currentlyHighlighted) {currentlyHighlighted(); currentlyHighlighted = null;} } if (val) { cm.state.matchBrackets = typeof val == "object" ? val : {}; cm.on("cursorActivity", doMatchBrackets); } }); CodeMirror.defineExtension("matchBrackets", function() {matchBrackets(this, true);}); CodeMirror.defineExtension("findMatchingBracket", function(pos, config, oldConfig){ // Backwards-compatibility kludge if (oldConfig || typeof config == "boolean") { if (!oldConfig) { config = config ? {strict: true} : null } else { oldConfig.strict = config config = oldConfig } } return findMatchingBracket(this, pos, config) }); CodeMirror.defineExtension("scanForBracket", function(pos, dir, style, config){ return scanForBracket(this, pos, dir, style, config); }); }); ================================================ FILE: ui/vendor/codemirror/material.css ================================================ /* Name: material Author: Michael Kaminsky (http://github.com/mkaminsky11) Original material color scheme by Mattia Astorino (https://github.com/equinusocio/material-theme) */ .cm-s-material.CodeMirror { background-color: #212121; /*background-color: #363636;*/ color: rgba(233, 237, 237, 1); } .cm-s-material .CodeMirror-gutters { background: #212121; /*background-color: #363636;*/ color: rgb(83,127,126); border: none; } .cm-s-material .CodeMirror-guttermarker, .cm-s-material .CodeMirror-guttermarker-subtle, .cm-s-material .CodeMirror-linenumber { color: rgb(83,127,126); } .cm-s-material .CodeMirror-cursor { border-left: 1px solid #f8f8f0; } .cm-s-material div.CodeMirror-selected { background: rgba(255, 255, 255, 0.15); } .cm-s-material.CodeMirror-focused div.CodeMirror-selected { background: rgba(255, 255, 255, 0.10); } .cm-s-material .CodeMirror-line::selection, .cm-s-material .CodeMirror-line > span::selection, .cm-s-material .CodeMirror-line > span > span::selection { background: rgba(255, 255, 255, 0.10); } .cm-s-material .CodeMirror-line::-moz-selection, .cm-s-material .CodeMirror-line > span::-moz-selection, .cm-s-material .CodeMirror-line > span > span::-moz-selection { background: rgba(255, 255, 255, 0.10); } .cm-s-material .CodeMirror-activeline-background { background: rgba(0, 0, 0, 0); } .cm-s-material .cm-keyword { color: rgba(199, 146, 234, 1); } .cm-s-material .cm-operator { color: rgba(233, 237, 237, 1); } .cm-s-material .cm-variable-2 { color: #80CBC4; } .cm-s-material .cm-variable-3, .cm-s-material .cm-type { color: #82B1FF; } .cm-s-material .cm-builtin { color: #DECB6B; } .cm-s-material .cm-atom { color: #F77669; } .cm-s-material .cm-number { color: #F77669; } .cm-s-material .cm-def { color: rgba(233, 237, 237, 1); } .cm-s-material .cm-string { color: #C3E88D; } .cm-s-material .cm-string-2 { color: #80CBC4; } .cm-s-material .cm-comment { color: #546E7A; } .cm-s-material .cm-variable { color: #82B1FF; } .cm-s-material .cm-tag { color: #80CBC4; } .cm-s-material .cm-meta { color: #80CBC4; } .cm-s-material .cm-attribute { color: #FFCB6B; } .cm-s-material .cm-property { color: #80CBAE; } .cm-s-material .cm-qualifier { color: #DECB6B; } .cm-s-material .cm-variable-3, .cm-s-material .cm-type { color: #DECB6B; } .cm-s-material .cm-tag { color: rgba(255, 83, 112, 1); } .cm-s-material .cm-error { color: rgba(255, 255, 255, 1.0); background-color: #EC5F67; } .cm-s-material .CodeMirror-matchingbracket { color: white !important; background-color: #404040!important; } ================================================ FILE: ui/vendor/codemirror/simplescrollbars.js ================================================ // CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: http://codemirror.net/LICENSE (function(mod) { if (typeof exports == "object" && typeof module == "object") // CommonJS mod(require("../../lib/codemirror")); else if (typeof define == "function" && define.amd) // AMD define(["../../lib/codemirror"], mod); else // Plain browser env mod(CodeMirror); })(function(CodeMirror) { "use strict"; function Bar(cls, orientation, scroll) { this.orientation = orientation; this.scroll = scroll; this.screen = this.total = this.size = 1; this.pos = 0; this.node = document.createElement("div"); this.node.className = cls + "-" + orientation; this.inner = this.node.appendChild(document.createElement("div")); var self = this; CodeMirror.on(this.inner, "mousedown", function(e) { if (e.which != 1) return; CodeMirror.e_preventDefault(e); var axis = self.orientation == "horizontal" ? "pageX" : "pageY"; var start = e[axis], startpos = self.pos; function done() { CodeMirror.off(document, "mousemove", move); CodeMirror.off(document, "mouseup", done); } function move(e) { if (e.which != 1) return done(); self.moveTo(startpos + (e[axis] - start) * (self.total / self.size)); } CodeMirror.on(document, "mousemove", move); CodeMirror.on(document, "mouseup", done); }); CodeMirror.on(this.node, "click", function(e) { CodeMirror.e_preventDefault(e); var innerBox = self.inner.getBoundingClientRect(), where; if (self.orientation == "horizontal") where = e.clientX < innerBox.left ? -1 : e.clientX > innerBox.right ? 1 : 0; else where = e.clientY < innerBox.top ? -1 : e.clientY > innerBox.bottom ? 1 : 0; self.moveTo(self.pos + where * self.screen); }); function onWheel(e) { var moved = CodeMirror.wheelEventPixels(e)[self.orientation == "horizontal" ? "x" : "y"]; var oldPos = self.pos; self.moveTo(self.pos + moved); if (self.pos != oldPos) CodeMirror.e_preventDefault(e); } CodeMirror.on(this.node, "mousewheel", onWheel); CodeMirror.on(this.node, "DOMMouseScroll", onWheel); } Bar.prototype.setPos = function(pos, force) { if (pos < 0) pos = 0; if (pos > this.total - this.screen) pos = this.total - this.screen; if (!force && pos == this.pos) return false; this.pos = pos; this.inner.style[this.orientation == "horizontal" ? "left" : "top"] = (pos * (this.size / this.total)) + "px"; return true }; Bar.prototype.moveTo = function(pos) { if (this.setPos(pos)) this.scroll(pos, this.orientation); } var minButtonSize = 10; Bar.prototype.update = function(scrollSize, clientSize, barSize) { var sizeChanged = this.screen != clientSize || this.total != scrollSize || this.size != barSize if (sizeChanged) { this.screen = clientSize; this.total = scrollSize; this.size = barSize; } var buttonSize = this.screen * (this.size / this.total); if (buttonSize < minButtonSize) { this.size -= minButtonSize - buttonSize; buttonSize = minButtonSize; } this.inner.style[this.orientation == "horizontal" ? "width" : "height"] = buttonSize + "px"; this.setPos(this.pos, sizeChanged); }; function SimpleScrollbars(cls, place, scroll) { this.addClass = cls; this.horiz = new Bar(cls, "horizontal", scroll); place(this.horiz.node); this.vert = new Bar(cls, "vertical", scroll); place(this.vert.node); this.width = null; } SimpleScrollbars.prototype.update = function(measure) { if (this.width == null) { var style = window.getComputedStyle ? window.getComputedStyle(this.horiz.node) : this.horiz.node.currentStyle; if (style) this.width = parseInt(style.height); } var width = this.width || 0; var needsH = measure.scrollWidth > measure.clientWidth + 1; var needsV = measure.scrollHeight > measure.clientHeight + 1; this.vert.node.style.display = needsV ? "block" : "none"; this.horiz.node.style.display = needsH ? "block" : "none"; if (needsV) { this.vert.update(measure.scrollHeight, measure.clientHeight, measure.viewHeight - (needsH ? width : 0)); this.vert.node.style.bottom = needsH ? width + "px" : "0"; } if (needsH) { this.horiz.update(measure.scrollWidth, measure.clientWidth, measure.viewWidth - (needsV ? width : 0) - measure.barLeft); this.horiz.node.style.right = needsV ? width + "px" : "0"; this.horiz.node.style.left = measure.barLeft + "px"; } return {right: needsV ? width : 0, bottom: needsH ? width : 0}; }; SimpleScrollbars.prototype.setScrollTop = function(pos) { this.vert.setPos(pos); }; SimpleScrollbars.prototype.setScrollLeft = function(pos) { this.horiz.setPos(pos); }; SimpleScrollbars.prototype.clear = function() { var parent = this.horiz.node.parentNode; parent.removeChild(this.horiz.node); parent.removeChild(this.vert.node); }; CodeMirror.scrollbarModel.simple = function(place, scroll) { return new SimpleScrollbars("CodeMirror-simplescroll", place, scroll); }; CodeMirror.scrollbarModel.overlay = function(place, scroll) { return new SimpleScrollbars("CodeMirror-overlayscroll", place, scroll); }; }); ================================================ FILE: ui/vendor/material-icons/MaterialIcons-Regular.ijmap ================================================ {"icons":{"e84d":{"name":"3d Rotation"},"eb3b":{"name":"Ac Unit"},"e190":{"name":"Access Alarm"},"e191":{"name":"Access Alarms"},"e192":{"name":"Access Time"},"e84e":{"name":"Accessibility"},"e914":{"name":"Accessible"},"e84f":{"name":"Account Balance"},"e850":{"name":"Account Balance Wallet"},"e851":{"name":"Account Box"},"e853":{"name":"Account Circle"},"e60e":{"name":"Adb"},"e145":{"name":"Add"},"e439":{"name":"Add A Photo"},"e193":{"name":"Add Alarm"},"e003":{"name":"Add Alert"},"e146":{"name":"Add Box"},"e147":{"name":"Add Circle"},"e148":{"name":"Add Circle Outline"},"e567":{"name":"Add Location"},"e854":{"name":"Add Shopping Cart"},"e39d":{"name":"Add To Photos"},"e05c":{"name":"Add To Queue"},"e39e":{"name":"Adjust"},"e630":{"name":"Airline Seat Flat"},"e631":{"name":"Airline Seat Flat Angled"},"e632":{"name":"Airline Seat Individual Suite"},"e633":{"name":"Airline Seat Legroom Extra"},"e634":{"name":"Airline Seat Legroom Normal"},"e635":{"name":"Airline Seat Legroom Reduced"},"e636":{"name":"Airline Seat Recline Extra"},"e637":{"name":"Airline Seat Recline Normal"},"e195":{"name":"Airplanemode Active"},"e194":{"name":"Airplanemode Inactive"},"e055":{"name":"Airplay"},"eb3c":{"name":"Airport Shuttle"},"e855":{"name":"Alarm"},"e856":{"name":"Alarm Add"},"e857":{"name":"Alarm Off"},"e858":{"name":"Alarm On"},"e019":{"name":"Album"},"eb3d":{"name":"All Inclusive"},"e90b":{"name":"All Out"},"e859":{"name":"Android"},"e85a":{"name":"Announcement"},"e5c3":{"name":"Apps"},"e149":{"name":"Archive"},"e5c4":{"name":"Arrow Back"},"e5db":{"name":"Arrow Downward"},"e5c5":{"name":"Arrow Drop Down"},"e5c6":{"name":"Arrow Drop Down Circle"},"e5c7":{"name":"Arrow Drop Up"},"e5c8":{"name":"Arrow Forward"},"e5d8":{"name":"Arrow Upward"},"e060":{"name":"Art Track"},"e85b":{"name":"Aspect Ratio"},"e85c":{"name":"Assessment"},"e85d":{"name":"Assignment"},"e85e":{"name":"Assignment Ind"},"e85f":{"name":"Assignment Late"},"e860":{"name":"Assignment Return"},"e861":{"name":"Assignment Returned"},"e862":{"name":"Assignment Turned In"},"e39f":{"name":"Assistant"},"e3a0":{"name":"Assistant Photo"},"e226":{"name":"Attach File"},"e227":{"name":"Attach Money"},"e2bc":{"name":"Attachment"},"e3a1":{"name":"Audiotrack"},"e863":{"name":"Autorenew"},"e01b":{"name":"Av Timer"},"e14a":{"name":"Backspace"},"e864":{"name":"Backup"},"e19c":{"name":"Battery Alert"},"e1a3":{"name":"Battery Charging Full"},"e1a4":{"name":"Battery Full"},"e1a5":{"name":"Battery Std"},"e1a6":{"name":"Battery Unknown"},"eb3e":{"name":"Beach Access"},"e52d":{"name":"Beenhere"},"e14b":{"name":"Block"},"e1a7":{"name":"Bluetooth"},"e60f":{"name":"Bluetooth Audio"},"e1a8":{"name":"Bluetooth Connected"},"e1a9":{"name":"Bluetooth Disabled"},"e1aa":{"name":"Bluetooth Searching"},"e3a2":{"name":"Blur Circular"},"e3a3":{"name":"Blur Linear"},"e3a4":{"name":"Blur Off"},"e3a5":{"name":"Blur On"},"e865":{"name":"Book"},"e866":{"name":"Bookmark"},"e867":{"name":"Bookmark Border"},"e228":{"name":"Border All"},"e229":{"name":"Border Bottom"},"e22a":{"name":"Border Clear"},"e22b":{"name":"Border Color"},"e22c":{"name":"Border Horizontal"},"e22d":{"name":"Border Inner"},"e22e":{"name":"Border Left"},"e22f":{"name":"Border Outer"},"e230":{"name":"Border Right"},"e231":{"name":"Border Style"},"e232":{"name":"Border Top"},"e233":{"name":"Border Vertical"},"e06b":{"name":"Branding Watermark"},"e3a6":{"name":"Brightness 1"},"e3a7":{"name":"Brightness 2"},"e3a8":{"name":"Brightness 3"},"e3a9":{"name":"Brightness 4"},"e3aa":{"name":"Brightness 5"},"e3ab":{"name":"Brightness 6"},"e3ac":{"name":"Brightness 7"},"e1ab":{"name":"Brightness Auto"},"e1ac":{"name":"Brightness High"},"e1ad":{"name":"Brightness Low"},"e1ae":{"name":"Brightness Medium"},"e3ad":{"name":"Broken Image"},"e3ae":{"name":"Brush"},"e6dd":{"name":"Bubble Chart"},"e868":{"name":"Bug Report"},"e869":{"name":"Build"},"e43c":{"name":"Burst Mode"},"e0af":{"name":"Business"},"eb3f":{"name":"Business Center"},"e86a":{"name":"Cached"},"e7e9":{"name":"Cake"},"e0b0":{"name":"Call"},"e0b1":{"name":"Call End"},"e0b2":{"name":"Call Made"},"e0b3":{"name":"Call Merge"},"e0b4":{"name":"Call Missed"},"e0e4":{"name":"Call Missed Outgoing"},"e0b5":{"name":"Call Received"},"e0b6":{"name":"Call Split"},"e06c":{"name":"Call To Action"},"e3af":{"name":"Camera"},"e3b0":{"name":"Camera Alt"},"e8fc":{"name":"Camera Enhance"},"e3b1":{"name":"Camera Front"},"e3b2":{"name":"Camera Rear"},"e3b3":{"name":"Camera Roll"},"e5c9":{"name":"Cancel"},"e8f6":{"name":"Card Giftcard"},"e8f7":{"name":"Card Membership"},"e8f8":{"name":"Card Travel"},"eb40":{"name":"Casino"},"e307":{"name":"Cast"},"e308":{"name":"Cast Connected"},"e3b4":{"name":"Center Focus Strong"},"e3b5":{"name":"Center Focus Weak"},"e86b":{"name":"Change History"},"e0b7":{"name":"Chat"},"e0ca":{"name":"Chat Bubble"},"e0cb":{"name":"Chat Bubble Outline"},"e5ca":{"name":"Check"},"e834":{"name":"Check Box"},"e835":{"name":"Check Box Outline Blank"},"e86c":{"name":"Check Circle"},"e5cb":{"name":"Chevron Left"},"e5cc":{"name":"Chevron Right"},"eb41":{"name":"Child Care"},"eb42":{"name":"Child Friendly"},"e86d":{"name":"Chrome Reader Mode"},"e86e":{"name":"Class"},"e14c":{"name":"Clear"},"e0b8":{"name":"Clear All"},"e5cd":{"name":"Close"},"e01c":{"name":"Closed Caption"},"e2bd":{"name":"Cloud"},"e2be":{"name":"Cloud Circle"},"e2bf":{"name":"Cloud Done"},"e2c0":{"name":"Cloud Download"},"e2c1":{"name":"Cloud Off"},"e2c2":{"name":"Cloud Queue"},"e2c3":{"name":"Cloud Upload"},"e86f":{"name":"Code"},"e3b6":{"name":"Collections"},"e431":{"name":"Collections Bookmark"},"e3b7":{"name":"Color Lens"},"e3b8":{"name":"Colorize"},"e0b9":{"name":"Comment"},"e3b9":{"name":"Compare"},"e915":{"name":"Compare Arrows"},"e30a":{"name":"Computer"},"e638":{"name":"Confirmation Number"},"e0d0":{"name":"Contact Mail"},"e0cf":{"name":"Contact Phone"},"e0ba":{"name":"Contacts"},"e14d":{"name":"Content Copy"},"e14e":{"name":"Content Cut"},"e14f":{"name":"Content Paste"},"e3ba":{"name":"Control Point"},"e3bb":{"name":"Control Point Duplicate"},"e90c":{"name":"Copyright"},"e150":{"name":"Create"},"e2cc":{"name":"Create New Folder"},"e870":{"name":"Credit Card"},"e3be":{"name":"Crop"},"e3bc":{"name":"Crop 16 9"},"e3bd":{"name":"Crop 3 2"},"e3bf":{"name":"Crop 5 4"},"e3c0":{"name":"Crop 7 5"},"e3c1":{"name":"Crop Din"},"e3c2":{"name":"Crop Free"},"e3c3":{"name":"Crop Landscape"},"e3c4":{"name":"Crop Original"},"e3c5":{"name":"Crop Portrait"},"e437":{"name":"Crop Rotate"},"e3c6":{"name":"Crop Square"},"e871":{"name":"Dashboard"},"e1af":{"name":"Data Usage"},"e916":{"name":"Date Range"},"e3c7":{"name":"Dehaze"},"e872":{"name":"Delete"},"e92b":{"name":"Delete Forever"},"e16c":{"name":"Delete Sweep"},"e873":{"name":"Description"},"e30b":{"name":"Desktop Mac"},"e30c":{"name":"Desktop Windows"},"e3c8":{"name":"Details"},"e30d":{"name":"Developer Board"},"e1b0":{"name":"Developer Mode"},"e335":{"name":"Device Hub"},"e1b1":{"name":"Devices"},"e337":{"name":"Devices Other"},"e0bb":{"name":"Dialer Sip"},"e0bc":{"name":"Dialpad"},"e52e":{"name":"Directions"},"e52f":{"name":"Directions Bike"},"e532":{"name":"Directions Boat"},"e530":{"name":"Directions Bus"},"e531":{"name":"Directions Car"},"e534":{"name":"Directions Railway"},"e566":{"name":"Directions Run"},"e533":{"name":"Directions Subway"},"e535":{"name":"Directions Transit"},"e536":{"name":"Directions Walk"},"e610":{"name":"Disc Full"},"e875":{"name":"Dns"},"e612":{"name":"Do Not Disturb"},"e611":{"name":"Do Not Disturb Alt"},"e643":{"name":"Do Not Disturb Off"},"e644":{"name":"Do Not Disturb On"},"e30e":{"name":"Dock"},"e7ee":{"name":"Domain"},"e876":{"name":"Done"},"e877":{"name":"Done All"},"e917":{"name":"Donut Large"},"e918":{"name":"Donut Small"},"e151":{"name":"Drafts"},"e25d":{"name":"Drag Handle"},"e613":{"name":"Drive Eta"},"e1b2":{"name":"Dvr"},"e3c9":{"name":"Edit"},"e568":{"name":"Edit Location"},"e8fb":{"name":"Eject"},"e0be":{"name":"Email"},"e63f":{"name":"Enhanced Encryption"},"e01d":{"name":"Equalizer"},"e000":{"name":"Error"},"e001":{"name":"Error Outline"},"e926":{"name":"Euro Symbol"},"e56d":{"name":"Ev Station"},"e878":{"name":"Event"},"e614":{"name":"Event Available"},"e615":{"name":"Event Busy"},"e616":{"name":"Event Note"},"e903":{"name":"Event Seat"},"e879":{"name":"Exit To App"},"e5ce":{"name":"Expand Less"},"e5cf":{"name":"Expand More"},"e01e":{"name":"Explicit"},"e87a":{"name":"Explore"},"e3ca":{"name":"Exposure"},"e3cb":{"name":"Exposure Neg 1"},"e3cc":{"name":"Exposure Neg 2"},"e3cd":{"name":"Exposure Plus 1"},"e3ce":{"name":"Exposure Plus 2"},"e3cf":{"name":"Exposure Zero"},"e87b":{"name":"Extension"},"e87c":{"name":"Face"},"e01f":{"name":"Fast Forward"},"e020":{"name":"Fast Rewind"},"e87d":{"name":"Favorite"},"e87e":{"name":"Favorite Border"},"e06d":{"name":"Featured Play List"},"e06e":{"name":"Featured Video"},"e87f":{"name":"Feedback"},"e05d":{"name":"Fiber Dvr"},"e061":{"name":"Fiber Manual Record"},"e05e":{"name":"Fiber New"},"e06a":{"name":"Fiber Pin"},"e062":{"name":"Fiber Smart Record"},"e2c4":{"name":"File Download"},"e2c6":{"name":"File Upload"},"e3d3":{"name":"Filter"},"e3d0":{"name":"Filter 1"},"e3d1":{"name":"Filter 2"},"e3d2":{"name":"Filter 3"},"e3d4":{"name":"Filter 4"},"e3d5":{"name":"Filter 5"},"e3d6":{"name":"Filter 6"},"e3d7":{"name":"Filter 7"},"e3d8":{"name":"Filter 8"},"e3d9":{"name":"Filter 9"},"e3da":{"name":"Filter 9 Plus"},"e3db":{"name":"Filter B And W"},"e3dc":{"name":"Filter Center Focus"},"e3dd":{"name":"Filter Drama"},"e3de":{"name":"Filter Frames"},"e3df":{"name":"Filter Hdr"},"e152":{"name":"Filter List"},"e3e0":{"name":"Filter None"},"e3e2":{"name":"Filter Tilt Shift"},"e3e3":{"name":"Filter Vintage"},"e880":{"name":"Find In Page"},"e881":{"name":"Find Replace"},"e90d":{"name":"Fingerprint"},"e5dc":{"name":"First Page"},"eb43":{"name":"Fitness Center"},"e153":{"name":"Flag"},"e3e4":{"name":"Flare"},"e3e5":{"name":"Flash Auto"},"e3e6":{"name":"Flash Off"},"e3e7":{"name":"Flash On"},"e539":{"name":"Flight"},"e904":{"name":"Flight Land"},"e905":{"name":"Flight Takeoff"},"e3e8":{"name":"Flip"},"e882":{"name":"Flip To Back"},"e883":{"name":"Flip To Front"},"e2c7":{"name":"Folder"},"e2c8":{"name":"Folder Open"},"e2c9":{"name":"Folder Shared"},"e617":{"name":"Folder Special"},"e167":{"name":"Font Download"},"e234":{"name":"Format Align Center"},"e235":{"name":"Format Align Justify"},"e236":{"name":"Format Align Left"},"e237":{"name":"Format Align Right"},"e238":{"name":"Format Bold"},"e239":{"name":"Format Clear"},"e23a":{"name":"Format Color Fill"},"e23b":{"name":"Format Color Reset"},"e23c":{"name":"Format Color Text"},"e23d":{"name":"Format Indent Decrease"},"e23e":{"name":"Format Indent Increase"},"e23f":{"name":"Format Italic"},"e240":{"name":"Format Line Spacing"},"e241":{"name":"Format List Bulleted"},"e242":{"name":"Format List Numbered"},"e243":{"name":"Format Paint"},"e244":{"name":"Format Quote"},"e25e":{"name":"Format Shapes"},"e245":{"name":"Format Size"},"e246":{"name":"Format Strikethrough"},"e247":{"name":"Format Textdirection L To R"},"e248":{"name":"Format Textdirection R To L"},"e249":{"name":"Format Underlined"},"e0bf":{"name":"Forum"},"e154":{"name":"Forward"},"e056":{"name":"Forward 10"},"e057":{"name":"Forward 30"},"e058":{"name":"Forward 5"},"eb44":{"name":"Free Breakfast"},"e5d0":{"name":"Fullscreen"},"e5d1":{"name":"Fullscreen Exit"},"e24a":{"name":"Functions"},"e927":{"name":"G Translate"},"e30f":{"name":"Gamepad"},"e021":{"name":"Games"},"e90e":{"name":"Gavel"},"e155":{"name":"Gesture"},"e884":{"name":"Get App"},"e908":{"name":"Gif"},"eb45":{"name":"Golf Course"},"e1b3":{"name":"Gps Fixed"},"e1b4":{"name":"Gps Not Fixed"},"e1b5":{"name":"Gps Off"},"e885":{"name":"Grade"},"e3e9":{"name":"Gradient"},"e3ea":{"name":"Grain"},"e1b8":{"name":"Graphic Eq"},"e3eb":{"name":"Grid Off"},"e3ec":{"name":"Grid On"},"e7ef":{"name":"Group"},"e7f0":{"name":"Group Add"},"e886":{"name":"Group Work"},"e052":{"name":"Hd"},"e3ed":{"name":"Hdr Off"},"e3ee":{"name":"Hdr On"},"e3f1":{"name":"Hdr Strong"},"e3f2":{"name":"Hdr Weak"},"e310":{"name":"Headset"},"e311":{"name":"Headset Mic"},"e3f3":{"name":"Healing"},"e023":{"name":"Hearing"},"e887":{"name":"Help"},"e8fd":{"name":"Help Outline"},"e024":{"name":"High Quality"},"e25f":{"name":"Highlight"},"e888":{"name":"Highlight Off"},"e889":{"name":"History"},"e88a":{"name":"Home"},"eb46":{"name":"Hot Tub"},"e53a":{"name":"Hotel"},"e88b":{"name":"Hourglass Empty"},"e88c":{"name":"Hourglass Full"},"e902":{"name":"Http"},"e88d":{"name":"Https"},"e3f4":{"name":"Image"},"e3f5":{"name":"Image Aspect Ratio"},"e0e0":{"name":"Import Contacts"},"e0c3":{"name":"Import Export"},"e912":{"name":"Important Devices"},"e156":{"name":"Inbox"},"e909":{"name":"Indeterminate Check Box"},"e88e":{"name":"Info"},"e88f":{"name":"Info Outline"},"e890":{"name":"Input"},"e24b":{"name":"Insert Chart"},"e24c":{"name":"Insert Comment"},"e24d":{"name":"Insert Drive File"},"e24e":{"name":"Insert Emoticon"},"e24f":{"name":"Insert Invitation"},"e250":{"name":"Insert Link"},"e251":{"name":"Insert Photo"},"e891":{"name":"Invert Colors"},"e0c4":{"name":"Invert Colors Off"},"e3f6":{"name":"Iso"},"e312":{"name":"Keyboard"},"e313":{"name":"Keyboard Arrow Down"},"e314":{"name":"Keyboard Arrow Left"},"e315":{"name":"Keyboard Arrow Right"},"e316":{"name":"Keyboard Arrow Up"},"e317":{"name":"Keyboard Backspace"},"e318":{"name":"Keyboard Capslock"},"e31a":{"name":"Keyboard Hide"},"e31b":{"name":"Keyboard Return"},"e31c":{"name":"Keyboard Tab"},"e31d":{"name":"Keyboard Voice"},"eb47":{"name":"Kitchen"},"e892":{"name":"Label"},"e893":{"name":"Label Outline"},"e3f7":{"name":"Landscape"},"e894":{"name":"Language"},"e31e":{"name":"Laptop"},"e31f":{"name":"Laptop Chromebook"},"e320":{"name":"Laptop Mac"},"e321":{"name":"Laptop Windows"},"e5dd":{"name":"Last Page"},"e895":{"name":"Launch"},"e53b":{"name":"Layers"},"e53c":{"name":"Layers Clear"},"e3f8":{"name":"Leak Add"},"e3f9":{"name":"Leak Remove"},"e3fa":{"name":"Lens"},"e02e":{"name":"Library Add"},"e02f":{"name":"Library Books"},"e030":{"name":"Library Music"},"e90f":{"name":"Lightbulb Outline"},"e919":{"name":"Line Style"},"e91a":{"name":"Line Weight"},"e260":{"name":"Linear Scale"},"e157":{"name":"Link"},"e438":{"name":"Linked Camera"},"e896":{"name":"List"},"e0c6":{"name":"Live Help"},"e639":{"name":"Live Tv"},"e53f":{"name":"Local Activity"},"e53d":{"name":"Local Airport"},"e53e":{"name":"Local Atm"},"e540":{"name":"Local Bar"},"e541":{"name":"Local Cafe"},"e542":{"name":"Local Car Wash"},"e543":{"name":"Local Convenience Store"},"e556":{"name":"Local Dining"},"e544":{"name":"Local Drink"},"e545":{"name":"Local Florist"},"e546":{"name":"Local Gas Station"},"e547":{"name":"Local Grocery Store"},"e548":{"name":"Local Hospital"},"e549":{"name":"Local Hotel"},"e54a":{"name":"Local Laundry Service"},"e54b":{"name":"Local Library"},"e54c":{"name":"Local Mall"},"e54d":{"name":"Local Movies"},"e54e":{"name":"Local Offer"},"e54f":{"name":"Local Parking"},"e550":{"name":"Local Pharmacy"},"e551":{"name":"Local Phone"},"e552":{"name":"Local Pizza"},"e553":{"name":"Local Play"},"e554":{"name":"Local Post Office"},"e555":{"name":"Local Printshop"},"e557":{"name":"Local See"},"e558":{"name":"Local Shipping"},"e559":{"name":"Local Taxi"},"e7f1":{"name":"Location City"},"e1b6":{"name":"Location Disabled"},"e0c7":{"name":"Location Off"},"e0c8":{"name":"Location On"},"e1b7":{"name":"Location Searching"},"e897":{"name":"Lock"},"e898":{"name":"Lock Open"},"e899":{"name":"Lock Outline"},"e3fc":{"name":"Looks"},"e3fb":{"name":"Looks 3"},"e3fd":{"name":"Looks 4"},"e3fe":{"name":"Looks 5"},"e3ff":{"name":"Looks 6"},"e400":{"name":"Looks One"},"e401":{"name":"Looks Two"},"e028":{"name":"Loop"},"e402":{"name":"Loupe"},"e16d":{"name":"Low Priority"},"e89a":{"name":"Loyalty"},"e158":{"name":"Mail"},"e0e1":{"name":"Mail Outline"},"e55b":{"name":"Map"},"e159":{"name":"Markunread"},"e89b":{"name":"Markunread Mailbox"},"e322":{"name":"Memory"},"e5d2":{"name":"Menu"},"e252":{"name":"Merge Type"},"e0c9":{"name":"Message"},"e029":{"name":"Mic"},"e02a":{"name":"Mic None"},"e02b":{"name":"Mic Off"},"e618":{"name":"Mms"},"e253":{"name":"Mode Comment"},"e254":{"name":"Mode Edit"},"e263":{"name":"Monetization On"},"e25c":{"name":"Money Off"},"e403":{"name":"Monochrome Photos"},"e7f2":{"name":"Mood"},"e7f3":{"name":"Mood Bad"},"e619":{"name":"More"},"e5d3":{"name":"More Horiz"},"e5d4":{"name":"More Vert"},"e91b":{"name":"Motorcycle"},"e323":{"name":"Mouse"},"e168":{"name":"Move To Inbox"},"e02c":{"name":"Movie"},"e404":{"name":"Movie Creation"},"e43a":{"name":"Movie Filter"},"e6df":{"name":"Multiline Chart"},"e405":{"name":"Music Note"},"e063":{"name":"Music Video"},"e55c":{"name":"My Location"},"e406":{"name":"Nature"},"e407":{"name":"Nature People"},"e408":{"name":"Navigate Before"},"e409":{"name":"Navigate Next"},"e55d":{"name":"Navigation"},"e569":{"name":"Near Me"},"e1b9":{"name":"Network Cell"},"e640":{"name":"Network Check"},"e61a":{"name":"Network Locked"},"e1ba":{"name":"Network Wifi"},"e031":{"name":"New Releases"},"e16a":{"name":"Next Week"},"e1bb":{"name":"Nfc"},"e641":{"name":"No Encryption"},"e0cc":{"name":"No Sim"},"e033":{"name":"Not Interested"},"e06f":{"name":"Note"},"e89c":{"name":"Note Add"},"e7f4":{"name":"Notifications"},"e7f7":{"name":"Notifications Active"},"e7f5":{"name":"Notifications None"},"e7f6":{"name":"Notifications Off"},"e7f8":{"name":"Notifications Paused"},"e90a":{"name":"Offline Pin"},"e63a":{"name":"Ondemand Video"},"e91c":{"name":"Opacity"},"e89d":{"name":"Open In Browser"},"e89e":{"name":"Open In New"},"e89f":{"name":"Open With"},"e7f9":{"name":"Pages"},"e8a0":{"name":"Pageview"},"e40a":{"name":"Palette"},"e925":{"name":"Pan Tool"},"e40b":{"name":"Panorama"},"e40c":{"name":"Panorama Fish Eye"},"e40d":{"name":"Panorama Horizontal"},"e40e":{"name":"Panorama Vertical"},"e40f":{"name":"Panorama Wide Angle"},"e7fa":{"name":"Party Mode"},"e034":{"name":"Pause"},"e035":{"name":"Pause Circle Filled"},"e036":{"name":"Pause Circle Outline"},"e8a1":{"name":"Payment"},"e7fb":{"name":"People"},"e7fc":{"name":"People Outline"},"e8a2":{"name":"Perm Camera Mic"},"e8a3":{"name":"Perm Contact Calendar"},"e8a4":{"name":"Perm Data Setting"},"e8a5":{"name":"Perm Device Information"},"e8a6":{"name":"Perm Identity"},"e8a7":{"name":"Perm Media"},"e8a8":{"name":"Perm Phone Msg"},"e8a9":{"name":"Perm Scan Wifi"},"e7fd":{"name":"Person"},"e7fe":{"name":"Person Add"},"e7ff":{"name":"Person Outline"},"e55a":{"name":"Person Pin"},"e56a":{"name":"Person Pin Circle"},"e63b":{"name":"Personal Video"},"e91d":{"name":"Pets"},"e0cd":{"name":"Phone"},"e324":{"name":"Phone Android"},"e61b":{"name":"Phone Bluetooth Speaker"},"e61c":{"name":"Phone Forwarded"},"e61d":{"name":"Phone In Talk"},"e325":{"name":"Phone Iphone"},"e61e":{"name":"Phone Locked"},"e61f":{"name":"Phone Missed"},"e620":{"name":"Phone Paused"},"e326":{"name":"Phonelink"},"e0db":{"name":"Phonelink Erase"},"e0dc":{"name":"Phonelink Lock"},"e327":{"name":"Phonelink Off"},"e0dd":{"name":"Phonelink Ring"},"e0de":{"name":"Phonelink Setup"},"e410":{"name":"Photo"},"e411":{"name":"Photo Album"},"e412":{"name":"Photo Camera"},"e43b":{"name":"Photo Filter"},"e413":{"name":"Photo Library"},"e432":{"name":"Photo Size Select Actual"},"e433":{"name":"Photo Size Select Large"},"e434":{"name":"Photo Size Select Small"},"e415":{"name":"Picture As Pdf"},"e8aa":{"name":"Picture In Picture"},"e911":{"name":"Picture In Picture Alt"},"e6c4":{"name":"Pie Chart"},"e6c5":{"name":"Pie Chart Outlined"},"e55e":{"name":"Pin Drop"},"e55f":{"name":"Place"},"e037":{"name":"Play Arrow"},"e038":{"name":"Play Circle Filled"},"e039":{"name":"Play Circle Outline"},"e906":{"name":"Play For Work"},"e03b":{"name":"Playlist Add"},"e065":{"name":"Playlist Add Check"},"e05f":{"name":"Playlist Play"},"e800":{"name":"Plus One"},"e801":{"name":"Poll"},"e8ab":{"name":"Polymer"},"eb48":{"name":"Pool"},"e0ce":{"name":"Portable Wifi Off"},"e416":{"name":"Portrait"},"e63c":{"name":"Power"},"e336":{"name":"Power Input"},"e8ac":{"name":"Power Settings New"},"e91e":{"name":"Pregnant Woman"},"e0df":{"name":"Present To All"},"e8ad":{"name":"Print"},"e645":{"name":"Priority High"},"e80b":{"name":"Public"},"e255":{"name":"Publish"},"e8ae":{"name":"Query Builder"},"e8af":{"name":"Question Answer"},"e03c":{"name":"Queue"},"e03d":{"name":"Queue Music"},"e066":{"name":"Queue Play Next"},"e03e":{"name":"Radio"},"e837":{"name":"Radio Button Checked"},"e836":{"name":"Radio Button Unchecked"},"e560":{"name":"Rate Review"},"e8b0":{"name":"Receipt"},"e03f":{"name":"Recent Actors"},"e91f":{"name":"Record Voice Over"},"e8b1":{"name":"Redeem"},"e15a":{"name":"Redo"},"e5d5":{"name":"Refresh"},"e15b":{"name":"Remove"},"e15c":{"name":"Remove Circle"},"e15d":{"name":"Remove Circle Outline"},"e067":{"name":"Remove From Queue"},"e417":{"name":"Remove Red Eye"},"e928":{"name":"Remove Shopping Cart"},"e8fe":{"name":"Reorder"},"e040":{"name":"Repeat"},"e041":{"name":"Repeat One"},"e042":{"name":"Replay"},"e059":{"name":"Replay 10"},"e05a":{"name":"Replay 30"},"e05b":{"name":"Replay 5"},"e15e":{"name":"Reply"},"e15f":{"name":"Reply All"},"e160":{"name":"Report"},"e8b2":{"name":"Report Problem"},"e56c":{"name":"Restaurant"},"e561":{"name":"Restaurant Menu"},"e8b3":{"name":"Restore"},"e929":{"name":"Restore Page"},"e0d1":{"name":"Ring Volume"},"e8b4":{"name":"Room"},"eb49":{"name":"Room Service"},"e418":{"name":"Rotate 90 Degrees Ccw"},"e419":{"name":"Rotate Left"},"e41a":{"name":"Rotate Right"},"e920":{"name":"Rounded Corner"},"e328":{"name":"Router"},"e921":{"name":"Rowing"},"e0e5":{"name":"Rss Feed"},"e642":{"name":"Rv Hookup"},"e562":{"name":"Satellite"},"e161":{"name":"Save"},"e329":{"name":"Scanner"},"e8b5":{"name":"Schedule"},"e80c":{"name":"School"},"e1be":{"name":"Screen Lock Landscape"},"e1bf":{"name":"Screen Lock Portrait"},"e1c0":{"name":"Screen Lock Rotation"},"e1c1":{"name":"Screen Rotation"},"e0e2":{"name":"Screen Share"},"e623":{"name":"Sd Card"},"e1c2":{"name":"Sd Storage"},"e8b6":{"name":"Search"},"e32a":{"name":"Security"},"e162":{"name":"Select All"},"e163":{"name":"Send"},"e811":{"name":"Sentiment Dissatisfied"},"e812":{"name":"Sentiment Neutral"},"e813":{"name":"Sentiment Satisfied"},"e814":{"name":"Sentiment Very Dissatisfied"},"e815":{"name":"Sentiment Very Satisfied"},"e8b8":{"name":"Settings"},"e8b9":{"name":"Settings Applications"},"e8ba":{"name":"Settings Backup Restore"},"e8bb":{"name":"Settings Bluetooth"},"e8bd":{"name":"Settings Brightness"},"e8bc":{"name":"Settings Cell"},"e8be":{"name":"Settings Ethernet"},"e8bf":{"name":"Settings Input Antenna"},"e8c0":{"name":"Settings Input Component"},"e8c1":{"name":"Settings Input Composite"},"e8c2":{"name":"Settings Input Hdmi"},"e8c3":{"name":"Settings Input Svideo"},"e8c4":{"name":"Settings Overscan"},"e8c5":{"name":"Settings Phone"},"e8c6":{"name":"Settings Power"},"e8c7":{"name":"Settings Remote"},"e1c3":{"name":"Settings System Daydream"},"e8c8":{"name":"Settings Voice"},"e80d":{"name":"Share"},"e8c9":{"name":"Shop"},"e8ca":{"name":"Shop Two"},"e8cb":{"name":"Shopping Basket"},"e8cc":{"name":"Shopping Cart"},"e261":{"name":"Short Text"},"e6e1":{"name":"Show Chart"},"e043":{"name":"Shuffle"},"e1c8":{"name":"Signal Cellular 4 Bar"},"e1cd":{"name":"Signal Cellular Connected No Internet 4 Bar"},"e1ce":{"name":"Signal Cellular No Sim"},"e1cf":{"name":"Signal Cellular Null"},"e1d0":{"name":"Signal Cellular Off"},"e1d8":{"name":"Signal Wifi 4 Bar"},"e1d9":{"name":"Signal Wifi 4 Bar Lock"},"e1da":{"name":"Signal Wifi Off"},"e32b":{"name":"Sim Card"},"e624":{"name":"Sim Card Alert"},"e044":{"name":"Skip Next"},"e045":{"name":"Skip Previous"},"e41b":{"name":"Slideshow"},"e068":{"name":"Slow Motion Video"},"e32c":{"name":"Smartphone"},"eb4a":{"name":"Smoke Free"},"eb4b":{"name":"Smoking Rooms"},"e625":{"name":"Sms"},"e626":{"name":"Sms Failed"},"e046":{"name":"Snooze"},"e164":{"name":"Sort"},"e053":{"name":"Sort By Alpha"},"eb4c":{"name":"Spa"},"e256":{"name":"Space Bar"},"e32d":{"name":"Speaker"},"e32e":{"name":"Speaker Group"},"e8cd":{"name":"Speaker Notes"},"e92a":{"name":"Speaker Notes Off"},"e0d2":{"name":"Speaker Phone"},"e8ce":{"name":"Spellcheck"},"e838":{"name":"Star"},"e83a":{"name":"Star Border"},"e839":{"name":"Star Half"},"e8d0":{"name":"Stars"},"e0d3":{"name":"Stay Current Landscape"},"e0d4":{"name":"Stay Current Portrait"},"e0d5":{"name":"Stay Primary Landscape"},"e0d6":{"name":"Stay Primary Portrait"},"e047":{"name":"Stop"},"e0e3":{"name":"Stop Screen Share"},"e1db":{"name":"Storage"},"e8d1":{"name":"Store"},"e563":{"name":"Store Mall Directory"},"e41c":{"name":"Straighten"},"e56e":{"name":"Streetview"},"e257":{"name":"Strikethrough S"},"e41d":{"name":"Style"},"e5d9":{"name":"Subdirectory Arrow Left"},"e5da":{"name":"Subdirectory Arrow Right"},"e8d2":{"name":"Subject"},"e064":{"name":"Subscriptions"},"e048":{"name":"Subtitles"},"e56f":{"name":"Subway"},"e8d3":{"name":"Supervisor Account"},"e049":{"name":"Surround Sound"},"e0d7":{"name":"Swap Calls"},"e8d4":{"name":"Swap Horiz"},"e8d5":{"name":"Swap Vert"},"e8d6":{"name":"Swap Vertical Circle"},"e41e":{"name":"Switch Camera"},"e41f":{"name":"Switch Video"},"e627":{"name":"Sync"},"e628":{"name":"Sync Disabled"},"e629":{"name":"Sync Problem"},"e62a":{"name":"System Update"},"e8d7":{"name":"System Update Alt"},"e8d8":{"name":"Tab"},"e8d9":{"name":"Tab Unselected"},"e32f":{"name":"Tablet"},"e330":{"name":"Tablet Android"},"e331":{"name":"Tablet Mac"},"e420":{"name":"Tag Faces"},"e62b":{"name":"Tap And Play"},"e564":{"name":"Terrain"},"e262":{"name":"Text Fields"},"e165":{"name":"Text Format"},"e0d8":{"name":"Textsms"},"e421":{"name":"Texture"},"e8da":{"name":"Theaters"},"e8db":{"name":"Thumb Down"},"e8dc":{"name":"Thumb Up"},"e8dd":{"name":"Thumbs Up Down"},"e62c":{"name":"Time To Leave"},"e422":{"name":"Timelapse"},"e922":{"name":"Timeline"},"e425":{"name":"Timer"},"e423":{"name":"Timer 10"},"e424":{"name":"Timer 3"},"e426":{"name":"Timer Off"},"e264":{"name":"Title"},"e8de":{"name":"Toc"},"e8df":{"name":"Today"},"e8e0":{"name":"Toll"},"e427":{"name":"Tonality"},"e913":{"name":"Touch App"},"e332":{"name":"Toys"},"e8e1":{"name":"Track Changes"},"e565":{"name":"Traffic"},"e570":{"name":"Train"},"e571":{"name":"Tram"},"e572":{"name":"Transfer Within A Station"},"e428":{"name":"Transform"},"e8e2":{"name":"Translate"},"e8e3":{"name":"Trending Down"},"e8e4":{"name":"Trending Flat"},"e8e5":{"name":"Trending Up"},"e429":{"name":"Tune"},"e8e6":{"name":"Turned In"},"e8e7":{"name":"Turned In Not"},"e333":{"name":"Tv"},"e169":{"name":"Unarchive"},"e166":{"name":"Undo"},"e5d6":{"name":"Unfold Less"},"e5d7":{"name":"Unfold More"},"e923":{"name":"Update"},"e1e0":{"name":"Usb"},"e8e8":{"name":"Verified User"},"e258":{"name":"Vertical Align Bottom"},"e259":{"name":"Vertical Align Center"},"e25a":{"name":"Vertical Align Top"},"e62d":{"name":"Vibration"},"e070":{"name":"Video Call"},"e071":{"name":"Video Label"},"e04a":{"name":"Video Library"},"e04b":{"name":"Videocam"},"e04c":{"name":"Videocam Off"},"e338":{"name":"Videogame Asset"},"e8e9":{"name":"View Agenda"},"e8ea":{"name":"View Array"},"e8eb":{"name":"View Carousel"},"e8ec":{"name":"View Column"},"e42a":{"name":"View Comfy"},"e42b":{"name":"View Compact"},"e8ed":{"name":"View Day"},"e8ee":{"name":"View Headline"},"e8ef":{"name":"View List"},"e8f0":{"name":"View Module"},"e8f1":{"name":"View Quilt"},"e8f2":{"name":"View Stream"},"e8f3":{"name":"View Week"},"e435":{"name":"Vignette"},"e8f4":{"name":"Visibility"},"e8f5":{"name":"Visibility Off"},"e62e":{"name":"Voice Chat"},"e0d9":{"name":"Voicemail"},"e04d":{"name":"Volume Down"},"e04e":{"name":"Volume Mute"},"e04f":{"name":"Volume Off"},"e050":{"name":"Volume Up"},"e0da":{"name":"Vpn Key"},"e62f":{"name":"Vpn Lock"},"e1bc":{"name":"Wallpaper"},"e002":{"name":"Warning"},"e334":{"name":"Watch"},"e924":{"name":"Watch Later"},"e42c":{"name":"Wb Auto"},"e42d":{"name":"Wb Cloudy"},"e42e":{"name":"Wb Incandescent"},"e436":{"name":"Wb Iridescent"},"e430":{"name":"Wb Sunny"},"e63d":{"name":"Wc"},"e051":{"name":"Web"},"e069":{"name":"Web Asset"},"e16b":{"name":"Weekend"},"e80e":{"name":"Whatshot"},"e1bd":{"name":"Widgets"},"e63e":{"name":"Wifi"},"e1e1":{"name":"Wifi Lock"},"e1e2":{"name":"Wifi Tethering"},"e8f9":{"name":"Work"},"e25b":{"name":"Wrap Text"},"e8fa":{"name":"Youtube Searched For"},"e8ff":{"name":"Zoom In"},"e900":{"name":"Zoom Out"},"e56b":{"name":"Zoom Out Map"}}} ================================================ FILE: ui/vendor/material-icons/README.md ================================================ The recommended way to use the Material Icons font is by linking to the web font hosted on Google Fonts: ```html ``` Read more in our full usage guide: http://google.github.io/material-design-icons/#icon-font-for-the-web ================================================ FILE: ui/vendor/material-icons/codepoints ================================================ 3d_rotation e84d ac_unit eb3b access_alarm e190 access_alarms e191 access_time e192 accessibility e84e accessible e914 account_balance e84f account_balance_wallet e850 account_box e851 account_circle e853 adb e60e add e145 add_a_photo e439 add_alarm e193 add_alert e003 add_box e146 add_circle e147 add_circle_outline e148 add_location e567 add_shopping_cart e854 add_to_photos e39d add_to_queue e05c adjust e39e airline_seat_flat e630 airline_seat_flat_angled e631 airline_seat_individual_suite e632 airline_seat_legroom_extra e633 airline_seat_legroom_normal e634 airline_seat_legroom_reduced e635 airline_seat_recline_extra e636 airline_seat_recline_normal e637 airplanemode_active e195 airplanemode_inactive e194 airplay e055 airport_shuttle eb3c alarm e855 alarm_add e856 alarm_off e857 alarm_on e858 album e019 all_inclusive eb3d all_out e90b android e859 announcement e85a apps e5c3 archive e149 arrow_back e5c4 arrow_downward e5db arrow_drop_down e5c5 arrow_drop_down_circle e5c6 arrow_drop_up e5c7 arrow_forward e5c8 arrow_upward e5d8 art_track e060 aspect_ratio e85b assessment e85c assignment e85d assignment_ind e85e assignment_late e85f assignment_return e860 assignment_returned e861 assignment_turned_in e862 assistant e39f assistant_photo e3a0 attach_file e226 attach_money e227 attachment e2bc audiotrack e3a1 autorenew e863 av_timer e01b backspace e14a backup e864 battery_alert e19c battery_charging_full e1a3 battery_full e1a4 battery_std e1a5 battery_unknown e1a6 beach_access eb3e beenhere e52d block e14b bluetooth e1a7 bluetooth_audio e60f bluetooth_connected e1a8 bluetooth_disabled e1a9 bluetooth_searching e1aa blur_circular e3a2 blur_linear e3a3 blur_off e3a4 blur_on e3a5 book e865 bookmark e866 bookmark_border e867 border_all e228 border_bottom e229 border_clear e22a border_color e22b border_horizontal e22c border_inner e22d border_left e22e border_outer e22f border_right e230 border_style e231 border_top e232 border_vertical e233 branding_watermark e06b brightness_1 e3a6 brightness_2 e3a7 brightness_3 e3a8 brightness_4 e3a9 brightness_5 e3aa brightness_6 e3ab brightness_7 e3ac brightness_auto e1ab brightness_high e1ac brightness_low e1ad brightness_medium e1ae broken_image e3ad brush e3ae bubble_chart e6dd bug_report e868 build e869 burst_mode e43c business e0af business_center eb3f cached e86a cake e7e9 call e0b0 call_end e0b1 call_made e0b2 call_merge e0b3 call_missed e0b4 call_missed_outgoing e0e4 call_received e0b5 call_split e0b6 call_to_action e06c camera e3af camera_alt e3b0 camera_enhance e8fc camera_front e3b1 camera_rear e3b2 camera_roll e3b3 cancel e5c9 card_giftcard e8f6 card_membership e8f7 card_travel e8f8 casino eb40 cast e307 cast_connected e308 center_focus_strong e3b4 center_focus_weak e3b5 change_history e86b chat e0b7 chat_bubble e0ca chat_bubble_outline e0cb check e5ca check_box e834 check_box_outline_blank e835 check_circle e86c chevron_left e5cb chevron_right e5cc child_care eb41 child_friendly eb42 chrome_reader_mode e86d class e86e clear e14c clear_all e0b8 close e5cd closed_caption e01c cloud e2bd cloud_circle e2be cloud_done e2bf cloud_download e2c0 cloud_off e2c1 cloud_queue e2c2 cloud_upload e2c3 code e86f collections e3b6 collections_bookmark e431 color_lens e3b7 colorize e3b8 comment e0b9 compare e3b9 compare_arrows e915 computer e30a confirmation_number e638 contact_mail e0d0 contact_phone e0cf contacts e0ba content_copy e14d content_cut e14e content_paste e14f control_point e3ba control_point_duplicate e3bb copyright e90c create e150 create_new_folder e2cc credit_card e870 crop e3be crop_16_9 e3bc crop_3_2 e3bd crop_5_4 e3bf crop_7_5 e3c0 crop_din e3c1 crop_free e3c2 crop_landscape e3c3 crop_original e3c4 crop_portrait e3c5 crop_rotate e437 crop_square e3c6 dashboard e871 data_usage e1af date_range e916 dehaze e3c7 delete e872 delete_forever e92b delete_sweep e16c description e873 desktop_mac e30b desktop_windows e30c details e3c8 developer_board e30d developer_mode e1b0 device_hub e335 devices e1b1 devices_other e337 dialer_sip e0bb dialpad e0bc directions e52e directions_bike e52f directions_boat e532 directions_bus e530 directions_car e531 directions_railway e534 directions_run e566 directions_subway e533 directions_transit e535 directions_walk e536 disc_full e610 dns e875 do_not_disturb e612 do_not_disturb_alt e611 do_not_disturb_off e643 do_not_disturb_on e644 dock e30e domain e7ee done e876 done_all e877 donut_large e917 donut_small e918 drafts e151 drag_handle e25d drive_eta e613 dvr e1b2 edit e3c9 edit_location e568 eject e8fb email e0be enhanced_encryption e63f equalizer e01d error e000 error_outline e001 euro_symbol e926 ev_station e56d event e878 event_available e614 event_busy e615 event_note e616 event_seat e903 exit_to_app e879 expand_less e5ce expand_more e5cf explicit e01e explore e87a exposure e3ca exposure_neg_1 e3cb exposure_neg_2 e3cc exposure_plus_1 e3cd exposure_plus_2 e3ce exposure_zero e3cf extension e87b face e87c fast_forward e01f fast_rewind e020 favorite e87d favorite_border e87e featured_play_list e06d featured_video e06e feedback e87f fiber_dvr e05d fiber_manual_record e061 fiber_new e05e fiber_pin e06a fiber_smart_record e062 file_download e2c4 file_upload e2c6 filter e3d3 filter_1 e3d0 filter_2 e3d1 filter_3 e3d2 filter_4 e3d4 filter_5 e3d5 filter_6 e3d6 filter_7 e3d7 filter_8 e3d8 filter_9 e3d9 filter_9_plus e3da filter_b_and_w e3db filter_center_focus e3dc filter_drama e3dd filter_frames e3de filter_hdr e3df filter_list e152 filter_none e3e0 filter_tilt_shift e3e2 filter_vintage e3e3 find_in_page e880 find_replace e881 fingerprint e90d first_page e5dc fitness_center eb43 flag e153 flare e3e4 flash_auto e3e5 flash_off e3e6 flash_on e3e7 flight e539 flight_land e904 flight_takeoff e905 flip e3e8 flip_to_back e882 flip_to_front e883 folder e2c7 folder_open e2c8 folder_shared e2c9 folder_special e617 font_download e167 format_align_center e234 format_align_justify e235 format_align_left e236 format_align_right e237 format_bold e238 format_clear e239 format_color_fill e23a format_color_reset e23b format_color_text e23c format_indent_decrease e23d format_indent_increase e23e format_italic e23f format_line_spacing e240 format_list_bulleted e241 format_list_numbered e242 format_paint e243 format_quote e244 format_shapes e25e format_size e245 format_strikethrough e246 format_textdirection_l_to_r e247 format_textdirection_r_to_l e248 format_underlined e249 forum e0bf forward e154 forward_10 e056 forward_30 e057 forward_5 e058 free_breakfast eb44 fullscreen e5d0 fullscreen_exit e5d1 functions e24a g_translate e927 gamepad e30f games e021 gavel e90e gesture e155 get_app e884 gif e908 golf_course eb45 gps_fixed e1b3 gps_not_fixed e1b4 gps_off e1b5 grade e885 gradient e3e9 grain e3ea graphic_eq e1b8 grid_off e3eb grid_on e3ec group e7ef group_add e7f0 group_work e886 hd e052 hdr_off e3ed hdr_on e3ee hdr_strong e3f1 hdr_weak e3f2 headset e310 headset_mic e311 healing e3f3 hearing e023 help e887 help_outline e8fd high_quality e024 highlight e25f highlight_off e888 history e889 home e88a hot_tub eb46 hotel e53a hourglass_empty e88b hourglass_full e88c http e902 https e88d image e3f4 image_aspect_ratio e3f5 import_contacts e0e0 import_export e0c3 important_devices e912 inbox e156 indeterminate_check_box e909 info e88e info_outline e88f input e890 insert_chart e24b insert_comment e24c insert_drive_file e24d insert_emoticon e24e insert_invitation e24f insert_link e250 insert_photo e251 invert_colors e891 invert_colors_off e0c4 iso e3f6 keyboard e312 keyboard_arrow_down e313 keyboard_arrow_left e314 keyboard_arrow_right e315 keyboard_arrow_up e316 keyboard_backspace e317 keyboard_capslock e318 keyboard_hide e31a keyboard_return e31b keyboard_tab e31c keyboard_voice e31d kitchen eb47 label e892 label_outline e893 landscape e3f7 language e894 laptop e31e laptop_chromebook e31f laptop_mac e320 laptop_windows e321 last_page e5dd launch e895 layers e53b layers_clear e53c leak_add e3f8 leak_remove e3f9 lens e3fa library_add e02e library_books e02f library_music e030 lightbulb_outline e90f line_style e919 line_weight e91a linear_scale e260 link e157 linked_camera e438 list e896 live_help e0c6 live_tv e639 local_activity e53f local_airport e53d local_atm e53e local_bar e540 local_cafe e541 local_car_wash e542 local_convenience_store e543 local_dining e556 local_drink e544 local_florist e545 local_gas_station e546 local_grocery_store e547 local_hospital e548 local_hotel e549 local_laundry_service e54a local_library e54b local_mall e54c local_movies e54d local_offer e54e local_parking e54f local_pharmacy e550 local_phone e551 local_pizza e552 local_play e553 local_post_office e554 local_printshop e555 local_see e557 local_shipping e558 local_taxi e559 location_city e7f1 location_disabled e1b6 location_off e0c7 location_on e0c8 location_searching e1b7 lock e897 lock_open e898 lock_outline e899 looks e3fc looks_3 e3fb looks_4 e3fd looks_5 e3fe looks_6 e3ff looks_one e400 looks_two e401 loop e028 loupe e402 low_priority e16d loyalty e89a mail e158 mail_outline e0e1 map e55b markunread e159 markunread_mailbox e89b memory e322 menu e5d2 merge_type e252 message e0c9 mic e029 mic_none e02a mic_off e02b mms e618 mode_comment e253 mode_edit e254 monetization_on e263 money_off e25c monochrome_photos e403 mood e7f2 mood_bad e7f3 more e619 more_horiz e5d3 more_vert e5d4 motorcycle e91b mouse e323 move_to_inbox e168 movie e02c movie_creation e404 movie_filter e43a multiline_chart e6df music_note e405 music_video e063 my_location e55c nature e406 nature_people e407 navigate_before e408 navigate_next e409 navigation e55d near_me e569 network_cell e1b9 network_check e640 network_locked e61a network_wifi e1ba new_releases e031 next_week e16a nfc e1bb no_encryption e641 no_sim e0cc not_interested e033 note e06f note_add e89c notifications e7f4 notifications_active e7f7 notifications_none e7f5 notifications_off e7f6 notifications_paused e7f8 offline_pin e90a ondemand_video e63a opacity e91c open_in_browser e89d open_in_new e89e open_with e89f pages e7f9 pageview e8a0 palette e40a pan_tool e925 panorama e40b panorama_fish_eye e40c panorama_horizontal e40d panorama_vertical e40e panorama_wide_angle e40f party_mode e7fa pause e034 pause_circle_filled e035 pause_circle_outline e036 payment e8a1 people e7fb people_outline e7fc perm_camera_mic e8a2 perm_contact_calendar e8a3 perm_data_setting e8a4 perm_device_information e8a5 perm_identity e8a6 perm_media e8a7 perm_phone_msg e8a8 perm_scan_wifi e8a9 person e7fd person_add e7fe person_outline e7ff person_pin e55a person_pin_circle e56a personal_video e63b pets e91d phone e0cd phone_android e324 phone_bluetooth_speaker e61b phone_forwarded e61c phone_in_talk e61d phone_iphone e325 phone_locked e61e phone_missed e61f phone_paused e620 phonelink e326 phonelink_erase e0db phonelink_lock e0dc phonelink_off e327 phonelink_ring e0dd phonelink_setup e0de photo e410 photo_album e411 photo_camera e412 photo_filter e43b photo_library e413 photo_size_select_actual e432 photo_size_select_large e433 photo_size_select_small e434 picture_as_pdf e415 picture_in_picture e8aa picture_in_picture_alt e911 pie_chart e6c4 pie_chart_outlined e6c5 pin_drop e55e place e55f play_arrow e037 play_circle_filled e038 play_circle_outline e039 play_for_work e906 playlist_add e03b playlist_add_check e065 playlist_play e05f plus_one e800 poll e801 polymer e8ab pool eb48 portable_wifi_off e0ce portrait e416 power e63c power_input e336 power_settings_new e8ac pregnant_woman e91e present_to_all e0df print e8ad priority_high e645 public e80b publish e255 query_builder e8ae question_answer e8af queue e03c queue_music e03d queue_play_next e066 radio e03e radio_button_checked e837 radio_button_unchecked e836 rate_review e560 receipt e8b0 recent_actors e03f record_voice_over e91f redeem e8b1 redo e15a refresh e5d5 remove e15b remove_circle e15c remove_circle_outline e15d remove_from_queue e067 remove_red_eye e417 remove_shopping_cart e928 reorder e8fe repeat e040 repeat_one e041 replay e042 replay_10 e059 replay_30 e05a replay_5 e05b reply e15e reply_all e15f report e160 report_problem e8b2 restaurant e56c restaurant_menu e561 restore e8b3 restore_page e929 ring_volume e0d1 room e8b4 room_service eb49 rotate_90_degrees_ccw e418 rotate_left e419 rotate_right e41a rounded_corner e920 router e328 rowing e921 rss_feed e0e5 rv_hookup e642 satellite e562 save e161 scanner e329 schedule e8b5 school e80c screen_lock_landscape e1be screen_lock_portrait e1bf screen_lock_rotation e1c0 screen_rotation e1c1 screen_share e0e2 sd_card e623 sd_storage e1c2 search e8b6 security e32a select_all e162 send e163 sentiment_dissatisfied e811 sentiment_neutral e812 sentiment_satisfied e813 sentiment_very_dissatisfied e814 sentiment_very_satisfied e815 settings e8b8 settings_applications e8b9 settings_backup_restore e8ba settings_bluetooth e8bb settings_brightness e8bd settings_cell e8bc settings_ethernet e8be settings_input_antenna e8bf settings_input_component e8c0 settings_input_composite e8c1 settings_input_hdmi e8c2 settings_input_svideo e8c3 settings_overscan e8c4 settings_phone e8c5 settings_power e8c6 settings_remote e8c7 settings_system_daydream e1c3 settings_voice e8c8 share e80d shop e8c9 shop_two e8ca shopping_basket e8cb shopping_cart e8cc short_text e261 show_chart e6e1 shuffle e043 signal_cellular_4_bar e1c8 signal_cellular_connected_no_internet_4_bar e1cd signal_cellular_no_sim e1ce signal_cellular_null e1cf signal_cellular_off e1d0 signal_wifi_4_bar e1d8 signal_wifi_4_bar_lock e1d9 signal_wifi_off e1da sim_card e32b sim_card_alert e624 skip_next e044 skip_previous e045 slideshow e41b slow_motion_video e068 smartphone e32c smoke_free eb4a smoking_rooms eb4b sms e625 sms_failed e626 snooze e046 sort e164 sort_by_alpha e053 spa eb4c space_bar e256 speaker e32d speaker_group e32e speaker_notes e8cd speaker_notes_off e92a speaker_phone e0d2 spellcheck e8ce star e838 star_border e83a star_half e839 stars e8d0 stay_current_landscape e0d3 stay_current_portrait e0d4 stay_primary_landscape e0d5 stay_primary_portrait e0d6 stop e047 stop_screen_share e0e3 storage e1db store e8d1 store_mall_directory e563 straighten e41c streetview e56e strikethrough_s e257 style e41d subdirectory_arrow_left e5d9 subdirectory_arrow_right e5da subject e8d2 subscriptions e064 subtitles e048 subway e56f supervisor_account e8d3 surround_sound e049 swap_calls e0d7 swap_horiz e8d4 swap_vert e8d5 swap_vertical_circle e8d6 switch_camera e41e switch_video e41f sync e627 sync_disabled e628 sync_problem e629 system_update e62a system_update_alt e8d7 tab e8d8 tab_unselected e8d9 tablet e32f tablet_android e330 tablet_mac e331 tag_faces e420 tap_and_play e62b terrain e564 text_fields e262 text_format e165 textsms e0d8 texture e421 theaters e8da thumb_down e8db thumb_up e8dc thumbs_up_down e8dd time_to_leave e62c timelapse e422 timeline e922 timer e425 timer_10 e423 timer_3 e424 timer_off e426 title e264 toc e8de today e8df toll e8e0 tonality e427 touch_app e913 toys e332 track_changes e8e1 traffic e565 train e570 tram e571 transfer_within_a_station e572 transform e428 translate e8e2 trending_down e8e3 trending_flat e8e4 trending_up e8e5 tune e429 turned_in e8e6 turned_in_not e8e7 tv e333 unarchive e169 undo e166 unfold_less e5d6 unfold_more e5d7 update e923 usb e1e0 verified_user e8e8 vertical_align_bottom e258 vertical_align_center e259 vertical_align_top e25a vibration e62d video_call e070 video_label e071 video_library e04a videocam e04b videocam_off e04c videogame_asset e338 view_agenda e8e9 view_array e8ea view_carousel e8eb view_column e8ec view_comfy e42a view_compact e42b view_day e8ed view_headline e8ee view_list e8ef view_module e8f0 view_quilt e8f1 view_stream e8f2 view_week e8f3 vignette e435 visibility e8f4 visibility_off e8f5 voice_chat e62e voicemail e0d9 volume_down e04d volume_mute e04e volume_off e04f volume_up e050 vpn_key e0da vpn_lock e62f wallpaper e1bc warning e002 watch e334 watch_later e924 wb_auto e42c wb_cloudy e42d wb_incandescent e42e wb_iridescent e436 wb_sunny e430 wc e63d web e051 web_asset e069 weekend e16b whatshot e80e widgets e1bd wifi e63e wifi_lock e1e1 wifi_tethering e1e2 work e8f9 wrap_text e25b youtube_searched_for e8fa zoom_in e8ff zoom_out e900 zoom_out_map e56b ================================================ FILE: ui/vendor/material-icons/material-icons.css ================================================ @font-face { font-family: 'Material Icons'; font-style: normal; font-weight: 400; src: url(MaterialIcons-Regular.eot); /* For IE6-8 */ src: local('Material Icons'), local('MaterialIcons-Regular'), url(MaterialIcons-Regular.woff2) format('woff2'), url(MaterialIcons-Regular.woff) format('woff'), url(MaterialIcons-Regular.ttf) format('truetype'); } .material-icons { font-family: 'Material Icons'; font-weight: normal; font-style: normal; font-size: 24px; /* Preferred icon size */ display: inline-block; line-height: 1; text-transform: none; letter-spacing: normal; word-wrap: normal; white-space: nowrap; direction: ltr; /* Support for all WebKit browsers. */ -webkit-font-smoothing: antialiased; /* Support for Safari and Chrome. */ text-rendering: optimizeLegibility; /* Support for Firefox. */ -moz-osx-font-smoothing: grayscale; /* Support for IE. */ font-feature-settings: 'liga'; } ================================================ FILE: ui/vendor/picodom/picodom.js ================================================ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t(e.picodom={})}(this,function(e){"use strict";function t(e,t){var n,r=[];for(u=arguments.length;u-- >2;)d.push(arguments[u]);for(;d.length;)if(Array.isArray(n=d.pop()))for(u=n.length;u--;)d.push(n[u]);else null!=n&&!0!==n&&!1!==n&&("number"==typeof n&&(n+=""),r.push(n));return"string"==typeof e?{tag:e,data:t||{},children:r}:e(t,r)}function n(e,t,a,l,u,d){if(null==a)t=e.insertBefore(o(l,u),t);else if(null!=l.tag&&l.tag===a.tag){i(t,a.data,l.data),u=u||"svg"===l.tag;for(var c=l.children.length,s=a.children.length,h={},v=[],p={},g=0;g Fixes return value for `foo/boo.Baz()` to be consistent with > the rest of the API. This addresses issue #32 Do not pile a lot of unrelated changes into a single commit. Pick and choose only those changes for a single commit, which are directly related. We would much rather see a hundred commits saying nothing but `"Runs go fmt"` in between any real fixes than have these style changes embedded in those real fixes. It creates a lot of noise when trying to review code. ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/LICENSE ================================================ This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication license. Its contents can be found at: http://creativecommons.org/publicdomain/zero/1.0 ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/README.md ================================================ ## bindata This package converts any file into managable Go source code. Useful for embedding binary data into a go program. The file data is optionally gzip compressed before being converted to a raw byte slice. It comes with a command line tool in the `go-bindata` sub directory. This tool offers a set of command line options, used to customize the output being generated. ### Installation To install the library and command line program, use the following: go get github.com/jteeuwen/go-bindata/... ### Usage Conversion is done on one or more sets of files. They are all embedded in a new Go source file, along with a table of contents and an `Asset` function, which allows quick access to the asset, based on its name. The simplest invocation generates a `bindata.go` file in the current working directory. It includes all assets from the `data` directory. $ go-bindata data/ To include all input sub-directories recursively, use the elipsis postfix as defined for Go import paths. Otherwise it will only consider assets in the input directory itself. $ go-bindata data/... To specify the name of the output file being generated, we use the following: $ go-bindata -o myfile.go data/ Multiple input directories can be specified if necessary. $ go-bindata dir1/... /path/to/dir2/... dir3 The following paragraphs detail some of the command line options which can be supplied to `go-bindata`. Refer to the `testdata/out` directory for various output examples from the assets in `testdata/in`. Each example uses different command line options. To ignore files, pass in regexes using -ignore, for example: $ go-bindata -ignore=\\.gitignore data/... ### Accessing an asset To access asset data, we use the `Asset(string) ([]byte, error)` function which is included in the generated output. data, err := Asset("pub/style/foo.css") if err != nil { // Asset was not found. } // use asset data ### Debug vs Release builds When invoking the program with the `-debug` flag, the generated code does not actually include the asset data. Instead, it generates function stubs which load the data from the original file on disk. The asset API remains identical between debug and release builds, so your code will not have to change. This is useful during development when you expect the assets to change often. The host application using these assets uses the same API in both cases and will not have to care where the actual data comes from. An example is a Go webserver with some embedded, static web content like HTML, JS and CSS files. While developing it, you do not want to rebuild the whole server and restart it every time you make a change to a bit of javascript. You just want to build and launch the server once. Then just press refresh in the browser to see those changes. Embedding the assets with the `debug` flag allows you to do just that. When you are finished developing and ready for deployment, just re-invoke `go-bindata` without the `-debug` flag. It will now embed the latest version of the assets. ### Lower memory footprint Using the `-nomemcopy` flag, will alter the way the output file is generated. It will employ a hack that allows us to read the file data directly from the compiled program's `.rodata` section. This ensures that when we call call our generated function, we omit unnecessary memcopies. The downside of this, is that it requires dependencies on the `reflect` and `unsafe` packages. These may be restricted on platforms like AppEngine and thus prevent you from using this mode. Another disadvantage is that the byte slice we create, is strictly read-only. For most use-cases this is not a problem, but if you ever try to alter the returned byte slice, a runtime panic is thrown. Use this mode only on target platforms where memory constraints are an issue. The default behaviour is to use the old code generation method. This prevents the two previously mentioned issues, but will employ at least one extra memcopy and thus increase memory requirements. For instance, consider the following two examples: This would be the default mode, using an extra memcopy but gives a safe implementation without dependencies on `reflect` and `unsafe`: ```go func myfile() []byte { return []byte{0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a} } ``` Here is the same functionality, but uses the `.rodata` hack. The byte slice returned from this example can not be written to without generating a runtime error. ```go var _myfile = "\x89\x50\x4e\x47\x0d\x0a\x1a" func myfile() []byte { var empty [0]byte sx := (*reflect.StringHeader)(unsafe.Pointer(&_myfile)) b := empty[:] bx := (*reflect.SliceHeader)(unsafe.Pointer(&b)) bx.Data = sx.Data bx.Len = len(_myfile) bx.Cap = bx.Len return b } ``` ### Optional compression When the `-nocompress` flag is given, the supplied resource is *not* GZIP compressed before being turned into Go code. The data should still be accessed through a function call, so nothing changes in the usage of the generated file. This feature is useful if you do not care for compression, or the supplied resource is already compressed. Doing it again would not add any value and may even increase the size of the data. The default behaviour of the program is to use compression. ### Path prefix stripping The keys used in the `_bindata` map, are the same as the input file name passed to `go-bindata`. This includes the path. In most cases, this is not desireable, as it puts potentially sensitive information in your code base. For this purpose, the tool supplies another command line flag `-prefix`. This accepts a portion of a path name, which should be stripped off from the map keys and function names. For example, running without the `-prefix` flag, we get: $ go-bindata /path/to/templates/ _bindata["/path/to/templates/foo.html"] = path_to_templates_foo_html Running with the `-prefix` flag, we get: $ go-bindata -prefix "/path/to/" /path/to/templates/ _bindata["templates/foo.html"] = templates_foo_html ### Build tags With the optional `-tags` flag, you can specify any go build tags that must be fulfilled for the output file to be included in a build. This is useful when including binary data in multiple formats, where the desired format is specified at build time with the appropriate tags. The tags are appended to a `// +build` line in the beginning of the output file and must follow the build tags syntax specified by the go tool. ### Related projects [go-bindata-assetfs](https://github.com/elazarl/go-bindata-assetfs#readme) - implements `http.FileSystem` interface. Allows you to serve assets with `net/http`. ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/asset.go ================================================ // This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication // license. Its contents can be found at: // http://creativecommons.org/publicdomain/zero/1.0/ package bindata // Asset holds information about a single asset to be processed. type Asset struct { Path string // Full file path. Name string // Key used in TOC -- name by which asset is referenced. Func string // Function name for the procedure returning the asset contents. } // Implement sort.Interface for []Asset based on Path field type ByPath []Asset func (v ByPath) Len() int { return len(v) } func (v ByPath) Swap(i, j int) { v[i], v[j] = v[j], v[i] } func (v ByPath) Less(i, j int) bool { return v[i].Path < v[j].Path } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/bytewriter.go ================================================ // This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication // license. Its contents can be found at: // http://creativecommons.org/publicdomain/zero/1.0/ package bindata import ( "fmt" "io" ) var ( newline = []byte{'\n'} dataindent = []byte{'\t', '\t'} space = []byte{' '} ) type ByteWriter struct { io.Writer c int } func (w *ByteWriter) Write(p []byte) (n int, err error) { if len(p) == 0 { return } for n = range p { if w.c%12 == 0 { w.Writer.Write(newline) w.Writer.Write(dataindent) w.c = 0 } else { w.Writer.Write(space) } fmt.Fprintf(w.Writer, "0x%02x,", p[n]) w.c++ } n++ return } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/config.go ================================================ // This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication // license. Its contents can be found at: // http://creativecommons.org/publicdomain/zero/1.0/ package bindata import ( "fmt" "os" "path/filepath" "regexp" ) // InputConfig defines options on a asset directory to be convert. type InputConfig struct { // Path defines a directory containing asset files to be included // in the generated output. Path string // Recusive defines whether subdirectories of Path // should be recursively included in the conversion. Recursive bool } // Config defines a set of options for the asset conversion. type Config struct { // Name of the package to use. Defaults to 'main'. Package string // Tags specify a set of optional build tags, which should be // included in the generated output. The tags are appended to a // `// +build` line in the beginning of the output file // and must follow the build tags syntax specified by the go tool. Tags string // Input defines the directory path, containing all asset files as // well as whether to recursively process assets in any sub directories. Input []InputConfig // Output defines the output file for the generated code. // If left empty, this defaults to 'bindata.go' in the current // working directory. Output string // Prefix defines a path prefix which should be stripped from all // file names when generating the keys in the table of contents. // For example, running without the `-prefix` flag, we get: // // $ go-bindata /path/to/templates // go_bindata["/path/to/templates/foo.html"] = _path_to_templates_foo_html // // Running with the `-prefix` flag, we get: // // $ go-bindata -prefix "/path/to/" /path/to/templates/foo.html // go_bindata["templates/foo.html"] = templates_foo_html Prefix string // NoMemCopy will alter the way the output file is generated. // // It will employ a hack that allows us to read the file data directly from // the compiled program's `.rodata` section. This ensures that when we call // call our generated function, we omit unnecessary mem copies. // // The downside of this, is that it requires dependencies on the `reflect` and // `unsafe` packages. These may be restricted on platforms like AppEngine and // thus prevent you from using this mode. // // Another disadvantage is that the byte slice we create, is strictly read-only. // For most use-cases this is not a problem, but if you ever try to alter the // returned byte slice, a runtime panic is thrown. Use this mode only on target // platforms where memory constraints are an issue. // // The default behaviour is to use the old code generation method. This // prevents the two previously mentioned issues, but will employ at least one // extra memcopy and thus increase memory requirements. // // For instance, consider the following two examples: // // This would be the default mode, using an extra memcopy but gives a safe // implementation without dependencies on `reflect` and `unsafe`: // // func myfile() []byte { // return []byte{0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a} // } // // Here is the same functionality, but uses the `.rodata` hack. // The byte slice returned from this example can not be written to without // generating a runtime error. // // var _myfile = "\x89\x50\x4e\x47\x0d\x0a\x1a" // // func myfile() []byte { // var empty [0]byte // sx := (*reflect.StringHeader)(unsafe.Pointer(&_myfile)) // b := empty[:] // bx := (*reflect.SliceHeader)(unsafe.Pointer(&b)) // bx.Data = sx.Data // bx.Len = len(_myfile) // bx.Cap = bx.Len // return b // } NoMemCopy bool // NoCompress means the assets are /not/ GZIP compressed before being turned // into Go code. The generated function will automatically unzip // the file data when called. Defaults to false. NoCompress bool // Perform a debug build. This generates an asset file, which // loads the asset contents directly from disk at their original // location, instead of embedding the contents in the code. // // This is mostly useful if you anticipate that the assets are // going to change during your development cycle. You will always // want your code to access the latest version of the asset. // Only in release mode, will the assets actually be embedded // in the code. The default behaviour is Release mode. Debug bool // Recursively process all assets in the input directory and its // sub directories. This defaults to false, so only files in the // input directory itself are read. Recursive bool // Ignores any filenames matching the regex pattern specified, e.g. // path/to/file.ext will ignore only that file, or \\.gitignore // will match any .gitignore file. // // This parameter can be provided multiple times. Ignore []*regexp.Regexp } // NewConfig returns a default configuration struct. func NewConfig() *Config { c := new(Config) c.Package = "main" c.NoMemCopy = false c.NoCompress = false c.Debug = false c.Recursive = false c.Output = "./bindata.go" c.Ignore = make([]*regexp.Regexp, 0) return c } // validate ensures the config has sane values. // Part of which means checking if certain file/directory paths exist. func (c *Config) validate() error { if len(c.Package) == 0 { return fmt.Errorf("Missing package name") } for _, input := range c.Input { _, err := os.Lstat(input.Path) if err != nil { return fmt.Errorf("Failed to stat input path '%s': %v", input.Path, err) } } if len(c.Output) == 0 { cwd, err := os.Getwd() if err != nil { return fmt.Errorf("Unable to determine current working directory.") } c.Output = filepath.Join(cwd, "bindata.go") } stat, err := os.Lstat(c.Output) if err != nil { if !os.IsNotExist(err) { return fmt.Errorf("Output path: %v", err) } // File does not exist. This is fine, just make // sure the directory it is to be in exists. dir, _ := filepath.Split(c.Output) if dir != "" { err = os.MkdirAll(dir, 0744) if err != nil { return fmt.Errorf("Create output directory: %v", err) } } } if stat != nil && stat.IsDir() { return fmt.Errorf("Output path is a directory.") } return nil } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/convert.go ================================================ // This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication // license. Its contents can be found at: // http://creativecommons.org/publicdomain/zero/1.0/ package bindata import ( "bufio" "fmt" "os" "path/filepath" "regexp" "sort" "strings" "unicode" ) // Translate reads assets from an input directory, converts them // to Go code and writes new files to the output specified // in the given configuration. func Translate(c *Config) error { var toc []Asset // Ensure our configuration has sane values. err := c.validate() if err != nil { return err } // Locate all the assets. for _, input := range c.Input { err = findFiles(input.Path, c.Prefix, input.Recursive, &toc, c.Ignore) if err != nil { return err } } // Sort to make output stable between invocations sort.Sort(ByPath(toc)) // Create output file. fd, err := os.Create(c.Output) if err != nil { return err } defer fd.Close() // Create a buffered writer for better performance. bfd := bufio.NewWriter(fd) defer bfd.Flush() // Write build tags, if applicable. if len(c.Tags) > 0 { _, err = fmt.Fprintf(bfd, "// +build %s\n\n", c.Tags) if err != nil { return err } } // Write package declaration. _, err = fmt.Fprintf(bfd, "package %s\n\n", c.Package) if err != nil { return err } // Write assets. if c.Debug { err = writeDebug(bfd, toc) } else { err = writeRelease(bfd, c, toc) } if err != nil { return err } // Write table of contents if err := writeTOC(bfd, toc); err != nil { return err } // Write hierarchical tree of assets return writeTOCTree(bfd, toc) } // findFiles recursively finds all the file paths in the given directory tree. // They are added to the given map as keys. Values will be safe function names // for each file, which will be used when generating the output code. func findFiles(dir, prefix string, recursive bool, toc *[]Asset, ignore []*regexp.Regexp) error { if len(prefix) > 0 { dir, _ = filepath.Abs(dir) prefix, _ = filepath.Abs(prefix) prefix = filepath.ToSlash(prefix) } fi, err := os.Stat(dir) if err != nil { return err } var list []os.FileInfo if !fi.IsDir() { dir = "" list = []os.FileInfo{fi} } else { fd, err := os.Open(dir) if err != nil { return err } defer fd.Close() list, err = fd.Readdir(0) if err != nil { return err } } knownFuncs := make(map[string]int) for _, file := range list { var asset Asset asset.Path = filepath.Join(dir, file.Name()) asset.Name = filepath.ToSlash(asset.Path) ignoring := false for _, re := range ignore { if re.MatchString(asset.Path) { ignoring = true break } } if ignoring { continue } if file.IsDir() { if recursive { findFiles(asset.Path, prefix, recursive, toc, ignore) } continue } if strings.HasPrefix(asset.Name, prefix) { asset.Name = asset.Name[len(prefix):] } // If we have a leading slash, get rid of it. if len(asset.Name) > 0 && asset.Name[0] == '/' { asset.Name = asset.Name[1:] } // This shouldn't happen. if len(asset.Name) == 0 { return fmt.Errorf("Invalid file: %v", asset.Path) } asset.Func = safeFunctionName(asset.Name, knownFuncs) asset.Path, _ = filepath.Abs(asset.Path) *toc = append(*toc, asset) } return nil } var regFuncName = regexp.MustCompile(`[^a-zA-Z0-9_]`) // safeFunctionName converts the given name into a name // which qualifies as a valid function identifier. It // also compares against a known list of functions to // prevent conflict based on name translation. func safeFunctionName(name string, knownFuncs map[string]int) string { name = strings.ToLower(name) name = regFuncName.ReplaceAllString(name, "_") // Get rid of "__" instances for niceness. for strings.Index(name, "__") > -1 { name = strings.Replace(name, "__", "_", -1) } // Leading underscores are silly (unless they prefix a digit (see below)). for len(name) > 1 && name[0] == '_' { name = name[1:] } // Identifier can't start with a digit. if unicode.IsDigit(rune(name[0])) { name = "_" + name } if num, ok := knownFuncs[name]; ok { knownFuncs[name] = num + 1 name = fmt.Sprintf("%s%d", name, num) } else { knownFuncs[name] = 2 } return name } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/debug.go ================================================ // This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication // license. Its contents can be found at: // http://creativecommons.org/publicdomain/zero/1.0/ package bindata import ( "fmt" "io" ) // writeDebug writes the debug code file. func writeDebug(w io.Writer, toc []Asset) error { err := writeDebugHeader(w) if err != nil { return err } for i := range toc { err = writeDebugAsset(w, &toc[i]) if err != nil { return err } } return nil } // writeDebugHeader writes output file headers. // This targets debug builds. func writeDebugHeader(w io.Writer) error { _, err := fmt.Fprintf(w, `import ( "fmt" "io/ioutil" "strings" ) // bindata_read reads the given file from disk. It returns an error on failure. func bindata_read(path, name string) ([]byte, error) { buf, err := ioutil.ReadFile(path) if err != nil { err = fmt.Errorf("Error reading asset %%s at %%s: %%v", name, path, err) } return buf, err } `) return err } // writeDebugAsset write a debug entry for the given asset. // A debug entry is simply a function which reads the asset from // the original file (e.g.: from disk). func writeDebugAsset(w io.Writer, asset *Asset) error { _, err := fmt.Fprintf(w, `// %s reads file data from disk. It returns an error on failure. func %s() ([]byte, error) { return bindata_read( %q, %q, ) } `, asset.Func, asset.Func, asset.Path, asset.Name) return err } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/doc.go ================================================ // This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication // license. Its contents can be found at: // http://creativecommons.org/publicdomain/zero/1.0/ /* bindata converts any file into managable Go source code. Useful for embedding binary data into a go program. The file data is optionally gzip compressed before being converted to a raw byte slice. The following paragraphs cover some of the customization options which can be specified in the Config struct, which must be passed into the Translate() call. Debug vs Release builds When used with the `Debug` option, the generated code does not actually include the asset data. Instead, it generates function stubs which load the data from the original file on disk. The asset API remains identical between debug and release builds, so your code will not have to change. This is useful during development when you expect the assets to change often. The host application using these assets uses the same API in both cases and will not have to care where the actual data comes from. An example is a Go webserver with some embedded, static web content like HTML, JS and CSS files. While developing it, you do not want to rebuild the whole server and restart it every time you make a change to a bit of javascript. You just want to build and launch the server once. Then just press refresh in the browser to see those changes. Embedding the assets with the `debug` flag allows you to do just that. When you are finished developing and ready for deployment, just re-invoke `go-bindata` without the `-debug` flag. It will now embed the latest version of the assets. Lower memory footprint The `NoMemCopy` option will alter the way the output file is generated. It will employ a hack that allows us to read the file data directly from the compiled program's `.rodata` section. This ensures that when we call call our generated function, we omit unnecessary memcopies. The downside of this, is that it requires dependencies on the `reflect` and `unsafe` packages. These may be restricted on platforms like AppEngine and thus prevent you from using this mode. Another disadvantage is that the byte slice we create, is strictly read-only. For most use-cases this is not a problem, but if you ever try to alter the returned byte slice, a runtime panic is thrown. Use this mode only on target platforms where memory constraints are an issue. The default behaviour is to use the old code generation method. This prevents the two previously mentioned issues, but will employ at least one extra memcopy and thus increase memory requirements. For instance, consider the following two examples: This would be the default mode, using an extra memcopy but gives a safe implementation without dependencies on `reflect` and `unsafe`: func myfile() []byte { return []byte{0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a} } Here is the same functionality, but uses the `.rodata` hack. The byte slice returned from this example can not be written to without generating a runtime error. var _myfile = "\x89\x50\x4e\x47\x0d\x0a\x1a" func myfile() []byte { var empty [0]byte sx := (*reflect.StringHeader)(unsafe.Pointer(&_myfile)) b := empty[:] bx := (*reflect.SliceHeader)(unsafe.Pointer(&b)) bx.Data = sx.Data bx.Len = len(_myfile) bx.Cap = bx.Len return b } Optional compression The NoCompress option indicates that the supplied assets are *not* GZIP compressed before being turned into Go code. The data should still be accessed through a function call, so nothing changes in the API. This feature is useful if you do not care for compression, or the supplied resource is already compressed. Doing it again would not add any value and may even increase the size of the data. The default behaviour of the program is to use compression. Path prefix stripping The keys used in the `_bindata` map are the same as the input file name passed to `go-bindata`. This includes the path. In most cases, this is not desireable, as it puts potentially sensitive information in your code base. For this purpose, the tool supplies another command line flag `-prefix`. This accepts a portion of a path name, which should be stripped off from the map keys and function names. For example, running without the `-prefix` flag, we get: $ go-bindata /path/to/templates/ _bindata["/path/to/templates/foo.html"] = path_to_templates_foo_html Running with the `-prefix` flag, we get: $ go-bindata -prefix "/path/to/" /path/to/templates/ _bindata["templates/foo.html"] = templates_foo_html Build tags With the optional Tags field, you can specify any go build tags that must be fulfilled for the output file to be included in a build. This is useful when including binary data in multiple formats, where the desired format is specified at build time with the appropriate tags. The tags are appended to a `// +build` line in the beginning of the output file and must follow the build tags syntax specified by the go tool. */ package bindata ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/go-bindata/AppendSliceValue.go ================================================ package main import "strings" // borrowed from https://github.com/hashicorp/serf/blob/master/command/agent/flag_slice_value.go // AppendSliceValue implements the flag.Value interface and allows multiple // calls to the same variable to append a list. type AppendSliceValue []string func (s *AppendSliceValue) String() string { return strings.Join(*s, ",") } func (s *AppendSliceValue) Set(value string) error { if *s == nil { *s = make([]string, 0, 1) } *s = append(*s, value) return nil } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/go-bindata/main.go ================================================ // This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication // license. Its contents can be found at: // http://creativecommons.org/publicdomain/zero/1.0/ package main import ( "flag" "fmt" "github.com/jteeuwen/go-bindata" "os" "path/filepath" "regexp" "strings" ) func main() { cfg := parseArgs() err := bindata.Translate(cfg) if err != nil { fmt.Fprintf(os.Stderr, "bindata: %v\n", err) os.Exit(1) } } // parseArgs create s a new, filled configuration instance // by reading and parsing command line options. // // This function exits the program with an error, if // any of the command line options are incorrect. func parseArgs() *bindata.Config { var version bool c := bindata.NewConfig() flag.Usage = func() { fmt.Printf("Usage: %s [options] \n\n", os.Args[0]) flag.PrintDefaults() } flag.BoolVar(&c.Debug, "debug", c.Debug, "Do not embed the assets, but provide the embedding API. Contents will still be loaded from disk.") flag.StringVar(&c.Tags, "tags", c.Tags, "Optional set of build tags to include.") flag.StringVar(&c.Prefix, "prefix", c.Prefix, "Optional path prefix to strip off asset names.") flag.StringVar(&c.Package, "pkg", c.Package, "Package name to use in the generated code.") flag.BoolVar(&c.NoMemCopy, "nomemcopy", c.NoMemCopy, "Use a .rodata hack to get rid of unnecessary memcopies. Refer to the documentation to see what implications this carries.") flag.BoolVar(&c.NoCompress, "nocompress", c.NoCompress, "Assets will *not* be GZIP compressed when this flag is specified.") flag.StringVar(&c.Output, "o", c.Output, "Optional name of the output file to be generated.") flag.BoolVar(&version, "version", false, "Displays version information.") ignore := make([]string, 0) flag.Var((*AppendSliceValue)(&ignore), "ignore", "Regex pattern to ignore") flag.Parse() patterns := make([]*regexp.Regexp, 0) for _, pattern := range ignore { patterns = append(patterns, regexp.MustCompile(pattern)) } c.Ignore = patterns if version { fmt.Printf("%s\n", Version()) os.Exit(0) } // Make sure we have input paths. if flag.NArg() == 0 { fmt.Fprintf(os.Stderr, "Missing \n\n") flag.Usage() os.Exit(1) } // Create input configurations. c.Input = make([]bindata.InputConfig, flag.NArg()) for i := range c.Input { c.Input[i] = parseInput(flag.Arg(i)) } return c } // parseRecursive determines whether the given path has a recrusive indicator and // returns a new path with the recursive indicator chopped off if it does. // // ex: // /path/to/foo/... -> (/path/to/foo, true) // /path/to/bar -> (/path/to/bar, false) func parseInput(path string) bindata.InputConfig { if strings.HasSuffix(path, "/...") { return bindata.InputConfig{ Path: filepath.Clean(path[:len(path)-4]), Recursive: true, } } else { return bindata.InputConfig{ Path: filepath.Clean(path), Recursive: false, } } } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/go-bindata/version.go ================================================ // This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication // license. Its contents can be found at: // http://creativecommons.org/publicdomain/zero/1.0/ package main import ( "fmt" "runtime" ) const ( AppName = "go-bindata" AppVersionMajor = 3 AppVersionMinor = 1 ) // revision part of the program version. // This will be set automatically at build time like so: // // go build -ldflags "-X main.AppVersionRev `date -u +%s`" var AppVersionRev string func Version() string { if len(AppVersionRev) == 0 { AppVersionRev = "0" } return fmt.Sprintf("%s %d.%d.%s (Go runtime %s).\nCopyright (c) 2010-2013, Jim Teeuwen.", AppName, AppVersionMajor, AppVersionMinor, AppVersionRev, runtime.Version()) } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/release.go ================================================ // This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication // license. Its contents can be found at: // http://creativecommons.org/publicdomain/zero/1.0/ package bindata import ( "bytes" "compress/gzip" "fmt" "io" "io/ioutil" "os" "unicode/utf8" ) // writeRelease writes the release code file. func writeRelease(w io.Writer, c *Config, toc []Asset) error { err := writeReleaseHeader(w, c) if err != nil { return err } for i := range toc { err = writeReleaseAsset(w, c, &toc[i]) if err != nil { return err } } return nil } // writeReleaseHeader writes output file headers. // This targets release builds. func writeReleaseHeader(w io.Writer, c *Config) error { if c.NoCompress { if c.NoMemCopy { return header_uncompressed_nomemcopy(w) } else { return header_uncompressed_memcopy(w) } } else { if c.NoMemCopy { return header_compressed_nomemcopy(w) } else { return header_compressed_memcopy(w) } } } // writeReleaseAsset write a release entry for the given asset. // A release entry is a function which embeds and returns // the file's byte content. func writeReleaseAsset(w io.Writer, c *Config, asset *Asset) error { fd, err := os.Open(asset.Path) if err != nil { return err } defer fd.Close() if c.NoCompress { if c.NoMemCopy { return uncompressed_nomemcopy(w, asset, fd) } else { return uncompressed_memcopy(w, asset, fd) } } else { if c.NoMemCopy { return compressed_nomemcopy(w, asset, fd) } else { return compressed_memcopy(w, asset, fd) } } } // sanitize prepares a valid UTF-8 string as a raw string constant. // Based on https://code.google.com/p/go/source/browse/godoc/static/makestatic.go?repo=tools func sanitize(b []byte) []byte { // Replace ` with `+"`"+` b = bytes.Replace(b, []byte("`"), []byte("`+\"`\"+`"), -1) // Replace BOM with `+"\xEF\xBB\xBF"+` // (A BOM is valid UTF-8 but not permitted in Go source files. // I wouldn't bother handling this, but for some insane reason // jquery.js has a BOM somewhere in the middle.) return bytes.Replace(b, []byte("\xEF\xBB\xBF"), []byte("`+\"\\xEF\\xBB\\xBF\"+`"), -1) } func header_compressed_nomemcopy(w io.Writer) error { _, err := fmt.Fprintf(w, `import ( "bytes" "compress/gzip" "fmt" "io" "reflect" "strings" "unsafe" ) func bindata_read(data, name string) ([]byte, error) { var empty [0]byte sx := (*reflect.StringHeader)(unsafe.Pointer(&data)) b := empty[:] bx := (*reflect.SliceHeader)(unsafe.Pointer(&b)) bx.Data = sx.Data bx.Len = len(data) bx.Cap = bx.Len gz, err := gzip.NewReader(bytes.NewBuffer(b)) if err != nil { return nil, fmt.Errorf("Read %%q: %%v", name, err) } var buf bytes.Buffer _, err = io.Copy(&buf, gz) gz.Close() if err != nil { return nil, fmt.Errorf("Read %%q: %%v", name, err) } return buf.Bytes(), nil } `) return err } func header_compressed_memcopy(w io.Writer) error { _, err := fmt.Fprintf(w, `import ( "bytes" "compress/gzip" "fmt" "io" "strings" ) func bindata_read(data []byte, name string) ([]byte, error) { gz, err := gzip.NewReader(bytes.NewBuffer(data)) if err != nil { return nil, fmt.Errorf("Read %%q: %%v", name, err) } var buf bytes.Buffer _, err = io.Copy(&buf, gz) gz.Close() if err != nil { return nil, fmt.Errorf("Read %%q: %%v", name, err) } return buf.Bytes(), nil } `) return err } func header_uncompressed_nomemcopy(w io.Writer) error { _, err := fmt.Fprintf(w, `import ( "fmt" "reflect" "strings" "unsafe" ) func bindata_read(data, name string) ([]byte, error) { var empty [0]byte sx := (*reflect.StringHeader)(unsafe.Pointer(&data)) b := empty[:] bx := (*reflect.SliceHeader)(unsafe.Pointer(&b)) bx.Data = sx.Data bx.Len = len(data) bx.Cap = bx.Len return b, nil } `) return err } func header_uncompressed_memcopy(w io.Writer) error { _, err := fmt.Fprintf(w, `import ( "fmt" "strings" ) `) return err } func compressed_nomemcopy(w io.Writer, asset *Asset, r io.Reader) error { _, err := fmt.Fprintf(w, `var _%s = "`, asset.Func) if err != nil { return err } gz := gzip.NewWriter(&StringWriter{Writer: w}) _, err = io.Copy(gz, r) gz.Close() if err != nil { return err } _, err = fmt.Fprintf(w, `" func %s() ([]byte, error) { return bindata_read( _%s, %q, ) } `, asset.Func, asset.Func, asset.Name) return err } func compressed_memcopy(w io.Writer, asset *Asset, r io.Reader) error { _, err := fmt.Fprintf(w, `var _%s = []byte("`, asset.Func) if err != nil { return err } gz := gzip.NewWriter(&StringWriter{Writer: w}) _, err = io.Copy(gz, r) gz.Close() if err != nil { return err } _, err = fmt.Fprintf(w, `") func %s() ([]byte, error) { return bindata_read( _%s, %q, ) } `, asset.Func, asset.Func, asset.Name) return err } func uncompressed_nomemcopy(w io.Writer, asset *Asset, r io.Reader) error { _, err := fmt.Fprintf(w, `var _%s = "`, asset.Func) if err != nil { return err } _, err = io.Copy(&StringWriter{Writer: w}, r) if err != nil { return err } _, err = fmt.Fprintf(w, `" func %s() ([]byte, error) { return bindata_read( _%s, %q, ) } `, asset.Func, asset.Func, asset.Name) return err } func uncompressed_memcopy(w io.Writer, asset *Asset, r io.Reader) error { _, err := fmt.Fprintf(w, `var _%s = []byte(`, asset.Func) if err != nil { return err } b, err := ioutil.ReadAll(r) if err != nil { return err } if utf8.Valid(b) { fmt.Fprintf(w, "`%s`", sanitize(b)) } else { fmt.Fprintf(w, "%q", b) } _, err = fmt.Fprintf(w, `) func %s() ([]byte, error) { return _%s, nil } `, asset.Func, asset.Func) return err } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/stringwriter.go ================================================ // This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication // license. Its contents can be found at: // http://creativecommons.org/publicdomain/zero/1.0/ package bindata import ( "io" ) const lowerHex = "0123456789abcdef" type StringWriter struct { io.Writer c int } func (w *StringWriter) Write(p []byte) (n int, err error) { if len(p) == 0 { return } buf := []byte(`\x00`) var b byte for n, b = range p { buf[2] = lowerHex[b/16] buf[3] = lowerHex[b%16] w.Writer.Write(buf) w.c++ } n++ return } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/testdata/in/a/test.asset ================================================ // sample file ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/testdata/in/b/test.asset ================================================ // sample file ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/testdata/in/c/test.asset ================================================ // sample file ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/testdata/in/test.asset ================================================ // sample file ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/testdata/out/compress-memcopy.go ================================================ package main import ( "bytes" "compress/gzip" "io" "log" ) func bindata_read(data []byte, name string) []byte { gz, err := gzip.NewReader(bytes.NewBuffer(data)) if err != nil { log.Fatalf("Read %q: %v", name, err) } var buf bytes.Buffer _, err = io.Copy(&buf, gz) gz.Close() if err != nil { log.Fatalf("Read %q: %v", name, err) } return buf.Bytes() } func in_b_test_asset() []byte { return bindata_read([]byte{ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x00, 0xff, 0xd2, 0xd7, 0x57, 0x28, 0x4e, 0xcc, 0x2d, 0xc8, 0x49, 0x55, 0x48, 0xcb, 0xcc, 0x49, 0xe5, 0x02, 0x04, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x82, 0x8c, 0x85, 0x0f, 0x00, 0x00, 0x00, }, "in/b/test.asset", ) } func in_test_asset() []byte { return bindata_read([]byte{ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x00, 0xff, 0xd2, 0xd7, 0x57, 0x28, 0x4e, 0xcc, 0x2d, 0xc8, 0x49, 0x55, 0x48, 0xcb, 0xcc, 0x49, 0xe5, 0x02, 0x04, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x82, 0x8c, 0x85, 0x0f, 0x00, 0x00, 0x00, }, "in/test.asset", ) } func in_a_test_asset() []byte { return bindata_read([]byte{ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x00, 0xff, 0xd2, 0xd7, 0x57, 0x28, 0x4e, 0xcc, 0x2d, 0xc8, 0x49, 0x55, 0x48, 0xcb, 0xcc, 0x49, 0xe5, 0x02, 0x04, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x82, 0x8c, 0x85, 0x0f, 0x00, 0x00, 0x00, }, "in/a/test.asset", ) } func in_c_test_asset() []byte { return bindata_read([]byte{ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x00, 0xff, 0xd2, 0xd7, 0x57, 0x28, 0x4e, 0xcc, 0x2d, 0xc8, 0x49, 0x55, 0x48, 0xcb, 0xcc, 0x49, 0xe5, 0x02, 0x04, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x82, 0x8c, 0x85, 0x0f, 0x00, 0x00, 0x00, }, "in/c/test.asset", ) } // Asset loads and returns the asset for the given name. // This returns nil of the asset could not be found. func Asset(name string) []byte { if f, ok := _bindata[name]; ok { return f() } return nil } // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() []byte{ "in/b/test.asset": in_b_test_asset, "in/test.asset": in_test_asset, "in/a/test.asset": in_a_test_asset, "in/c/test.asset": in_c_test_asset, } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/testdata/out/compress-nomemcopy.go ================================================ package main import ( "bytes" "compress/gzip" "io" "log" "reflect" "unsafe" ) func bindata_read(data, name string) []byte { var empty [0]byte sx := (*reflect.StringHeader)(unsafe.Pointer(&data)) b := empty[:] bx := (*reflect.SliceHeader)(unsafe.Pointer(&b)) bx.Data = sx.Data bx.Len = len(data) bx.Cap = bx.Len gz, err := gzip.NewReader(bytes.NewBuffer(b)) if err != nil { log.Fatalf("Read %q: %v", name, err) } var buf bytes.Buffer _, err = io.Copy(&buf, gz) gz.Close() if err != nil { log.Fatalf("Read %q: %v", name, err) } return buf.Bytes() } var _in_b_test_asset = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd2\xd7\x57\x28\x4e\xcc\x2d\xc8\x49\x55\x48\xcb\xcc\x49\xe5\x02\x04\x00\x00\xff\xff\x8a\x82\x8c\x85\x0f\x00\x00\x00" func in_b_test_asset() []byte { return bindata_read( _in_b_test_asset, "in/b/test.asset", ) } var _in_test_asset = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd2\xd7\x57\x28\x4e\xcc\x2d\xc8\x49\x55\x48\xcb\xcc\x49\xe5\x02\x04\x00\x00\xff\xff\x8a\x82\x8c\x85\x0f\x00\x00\x00" func in_test_asset() []byte { return bindata_read( _in_test_asset, "in/test.asset", ) } var _in_a_test_asset = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd2\xd7\x57\x28\x4e\xcc\x2d\xc8\x49\x55\x48\xcb\xcc\x49\xe5\x02\x04\x00\x00\xff\xff\x8a\x82\x8c\x85\x0f\x00\x00\x00" func in_a_test_asset() []byte { return bindata_read( _in_a_test_asset, "in/a/test.asset", ) } var _in_c_test_asset = "\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd2\xd7\x57\x28\x4e\xcc\x2d\xc8\x49\x55\x48\xcb\xcc\x49\xe5\x02\x04\x00\x00\xff\xff\x8a\x82\x8c\x85\x0f\x00\x00\x00" func in_c_test_asset() []byte { return bindata_read( _in_c_test_asset, "in/c/test.asset", ) } // Asset loads and returns the asset for the given name. // This returns nil of the asset could not be found. func Asset(name string) []byte { if f, ok := _bindata[name]; ok { return f() } return nil } // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() []byte{ "in/b/test.asset": in_b_test_asset, "in/test.asset": in_test_asset, "in/a/test.asset": in_a_test_asset, "in/c/test.asset": in_c_test_asset, } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/testdata/out/debug.go ================================================ package main import ( "bytes" "io" "log" "os" ) // bindata_read reads the given file from disk. // It panics if anything went wrong. func bindata_read(path, name string) []byte { fd, err := os.Open(path) if err != nil { log.Fatalf("Read %s: %v", name, err) } defer fd.Close() var buf bytes.Buffer _, err = io.Copy(&buf, fd) if err != nil { log.Fatalf("Read %s: %v", name, err) } return buf.Bytes() } // in_b_test_asset reads file data from disk. // It panics if something went wrong in the process. func in_b_test_asset() []byte { return bindata_read( "/a/code/go/src/github.com/jteeuwen/go-bindata/testdata/in/b/test.asset", "in/b/test.asset", ) } // in_test_asset reads file data from disk. // It panics if something went wrong in the process. func in_test_asset() []byte { return bindata_read( "/a/code/go/src/github.com/jteeuwen/go-bindata/testdata/in/test.asset", "in/test.asset", ) } // in_a_test_asset reads file data from disk. // It panics if something went wrong in the process. func in_a_test_asset() []byte { return bindata_read( "/a/code/go/src/github.com/jteeuwen/go-bindata/testdata/in/a/test.asset", "in/a/test.asset", ) } // in_c_test_asset reads file data from disk. // It panics if something went wrong in the process. func in_c_test_asset() []byte { return bindata_read( "/a/code/go/src/github.com/jteeuwen/go-bindata/testdata/in/c/test.asset", "in/c/test.asset", ) } // Asset loads and returns the asset for the given name. // This returns nil of the asset could not be found. func Asset(name string) []byte { if f, ok := _bindata[name]; ok { return f() } return nil } // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() []byte{ "in/b/test.asset": in_b_test_asset, "in/test.asset": in_test_asset, "in/a/test.asset": in_a_test_asset, "in/c/test.asset": in_c_test_asset, } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/testdata/out/nocompress-memcopy.go ================================================ package main func in_b_test_asset() []byte { return []byte{ 0x2f, 0x2f, 0x20, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x0a, } } func in_test_asset() []byte { return []byte{ 0x2f, 0x2f, 0x20, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x0a, } } func in_a_test_asset() []byte { return []byte{ 0x2f, 0x2f, 0x20, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x0a, } } func in_c_test_asset() []byte { return []byte{ 0x2f, 0x2f, 0x20, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x0a, } } // Asset loads and returns the asset for the given name. // This returns nil of the asset could not be found. func Asset(name string) []byte { if f, ok := _bindata[name]; ok { return f() } return nil } // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() []byte{ "in/b/test.asset": in_b_test_asset, "in/test.asset": in_test_asset, "in/a/test.asset": in_a_test_asset, "in/c/test.asset": in_c_test_asset, } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/testdata/out/nocompress-nomemcopy.go ================================================ package main import ( "reflect" "unsafe" ) func bindata_read(data, name string) []byte { var empty [0]byte sx := (*reflect.StringHeader)(unsafe.Pointer(&data)) b := empty[:] bx := (*reflect.SliceHeader)(unsafe.Pointer(&b)) bx.Data = sx.Data bx.Len = len(data) bx.Cap = bx.Len return b } var _in_b_test_asset = "\x2f\x2f\x20\x73\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x0a" func in_b_test_asset() []byte { return bindata_read( _in_b_test_asset, "in/b/test.asset", ) } var _in_test_asset = "\x2f\x2f\x20\x73\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x0a" func in_test_asset() []byte { return bindata_read( _in_test_asset, "in/test.asset", ) } var _in_a_test_asset = "\x2f\x2f\x20\x73\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x0a" func in_a_test_asset() []byte { return bindata_read( _in_a_test_asset, "in/a/test.asset", ) } var _in_c_test_asset = "\x2f\x2f\x20\x73\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x0a" func in_c_test_asset() []byte { return bindata_read( _in_c_test_asset, "in/c/test.asset", ) } // Asset loads and returns the asset for the given name. // This returns nil of the asset could not be found. func Asset(name string) []byte { if f, ok := _bindata[name]; ok { return f() } return nil } // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() []byte{ "in/b/test.asset": in_b_test_asset, "in/test.asset": in_test_asset, "in/a/test.asset": in_a_test_asset, "in/c/test.asset": in_c_test_asset, } ================================================ FILE: vendor/github.com/jteeuwen/go-bindata/toc.go ================================================ // This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication // license. Its contents can be found at: // http://creativecommons.org/publicdomain/zero/1.0/ package bindata import ( "fmt" "io" "os" "sort" "strings" ) type assetTree struct { Asset Asset Children map[string]*assetTree } func newAssetTree() *assetTree { tree := &assetTree{} tree.Children = make(map[string]*assetTree) return tree } func (node *assetTree) child(name string) *assetTree { rv, ok := node.Children[name] if !ok { rv = newAssetTree() node.Children[name] = rv } return rv } func (root *assetTree) Add(route []string, asset Asset) { for _, name := range route { root = root.child(name) } root.Asset = asset } func ident(w io.Writer, n int) { for i := 0; i < n; i++ { w.Write([]byte{'\t'}) } } func (root *assetTree) funcOrNil() string { if root.Asset.Func == "" { return "nil" } else { return root.Asset.Func } } func (root *assetTree) writeGoMap(w io.Writer, nident int) { fmt.Fprintf(w, "&_bintree_t{%s, map[string]*_bintree_t{\n", root.funcOrNil()) // Sort to make output stable between invocations filenames := make([]string, len(root.Children)) i := 0 for filename, _ := range root.Children { filenames[i] = filename i++ } sort.Strings(filenames) for _, p := range filenames { ident(w, nident+1) fmt.Fprintf(w, `"%s": `, p) root.Children[p].writeGoMap(w, nident+1) } ident(w, nident) io.WriteString(w, "}}") if nident > 0 { io.WriteString(w, ",") } io.WriteString(w, "\n") } func (root *assetTree) WriteAsGoMap(w io.Writer) error { _, err := fmt.Fprint(w, `type _bintree_t struct { Func func() ([]byte, error) Children map[string]*_bintree_t } var _bintree = `) root.writeGoMap(w, 0) return err } func writeTOCTree(w io.Writer, toc []Asset) error { _, err := fmt.Fprintf(w, `// AssetDir returns the file names below a certain // directory embedded in the file by go-bindata. // For example if you run go-bindata on data/... and data contains the // following hierarchy: // data/ // foo.txt // img/ // a.png // b.png // then AssetDir("data") would return []string{"foo.txt", "img"} // AssetDir("data/img") would return []string{"a.png", "b.png"} // AssetDir("foo.txt") and AssetDir("notexist") would return an error // AssetDir("") will return []string{"data"}. func AssetDir(name string) ([]string, error) { node := _bintree if len(name) != 0 { cannonicalName := strings.Replace(name, "\\", "/", -1) pathList := strings.Split(cannonicalName, "/") for _, p := range pathList { node = node.Children[p] if node == nil { return nil, fmt.Errorf("Asset %%s not found", name) } } } if node.Func != nil { return nil, fmt.Errorf("Asset %%s not found", name) } rv := make([]string, 0, len(node.Children)) for name := range node.Children { rv = append(rv, name) } return rv, nil } `) if err != nil { return err } tree := newAssetTree() for i := range toc { pathList := strings.Split(toc[i].Name, string(os.PathSeparator)) tree.Add(pathList, toc[i]) } return tree.WriteAsGoMap(w) } // writeTOC writes the table of contents file. func writeTOC(w io.Writer, toc []Asset) error { err := writeTOCHeader(w) if err != nil { return err } for i := range toc { err = writeTOCAsset(w, &toc[i]) if err != nil { return err } } return writeTOCFooter(w) } // writeTOCHeader writes the table of contents file header. func writeTOCHeader(w io.Writer) error { _, err := fmt.Fprintf(w, `// Asset loads and returns the asset for the given name. // It returns an error if the asset could not be found or // could not be loaded. func Asset(name string) ([]byte, error) { cannonicalName := strings.Replace(name, "\\", "/", -1) if f, ok := _bindata[cannonicalName]; ok { return f() } return nil, fmt.Errorf("Asset %%s not found", name) } // AssetNames returns the names of the assets. func AssetNames() []string { names := make([]string, 0, len(_bindata)) for name := range _bindata { names = append(names, name) } return names } // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() ([]byte, error){ `) return err } // writeTOCAsset write a TOC entry for the given asset. func writeTOCAsset(w io.Writer, asset *Asset) error { _, err := fmt.Fprintf(w, "\t%q: %s,\n", asset.Name, asset.Func) return err } // writeTOCFooter writes the table of contents file footer. func writeTOCFooter(w io.Writer) error { _, err := fmt.Fprintf(w, `} `) return err } ================================================ FILE: vendor/github.com/thestk/rtaudio/.gitattributes ================================================ # make sure that .gitignore, .travis.yml,... are not part of a # source-package generated via 'git archive' .git* export-ignore /.* export-ignore ================================================ FILE: vendor/github.com/thestk/rtaudio/.gitignore ================================================ Makefile *.o /config /configure /Makefile.in /aclocal.m4 /autom4te.cache /configure /m4 /doc/Makefile.in /tests/Makefile.in ================================================ FILE: vendor/github.com/thestk/rtaudio/.travis.yml ================================================ language: cpp sudo: false # docker VM matrix: include: - os: linux env: HOST="" API="alsa" compiler: gcc - os: linux env: HOST="" API="alsa" compiler: clang - os: linux env: HOST="" API="jack" compiler: gcc - os: linux env: HOST="" API="jack" compiler: clang - os: linux env: HOST="" API="pulse" compiler: gcc - os: linux env: HOST="" API="pulse" compiler: clang - os: linux env: HOST="" API="oss" compiler: gcc - os: linux env: HOST="" API="oss" compiler: clang - os: linux env: HOST="--host=i686-w64-mingw32" API="winmm" CPPFLAGS="-Wno-unused-function" compiler: gcc - os: linux env: HOST="--host=x86_64-w64-mingw32" API="winmm" CPPFLAGS="-Wno-unused-function" compiler: gcc - os: linux env: HOST="--host=i686-w64-mingw32" API="dsound" CPPFLAGS="-Wno-unused-function" compiler: gcc - os: linux env: HOST="--host=x86_64-w64-mingw32" API="dsound" CPPFLAGS="-Wno-unused-function" compiler: gcc - os: linux env: HOST="--host=i686-w64-mingw32" API="asio" CPPFLAGS="-Wno-unused-function -Wno-unused-but-set-variable" compiler: gcc - os: linux env: HOST="--host=x86_64-w64-mingw32" API="asio" CPPFLAGS="-Wno-unused-function -Wno-unused-but-set-variable" compiler: gcc - os: linux env: HOST="--host=i686-w64-mingw32" API="wasapi" CPPFLAGS="-Wno-unused-function" compiler: gcc - os: linux env: HOST="--host=x86_64-w64-mingw32" API="wasapi" CPPFLAGS="-Wno-unused-function" compiler: gcc # jack and asound not found on ARM gnueabihf # - os: linux # env: HOST="--host=arm-linux-gnueabihf" API="alsa" # compiler: gcc # - os: linux # env: HOST="--host=arm-linux-gnueabihf" API="jack" # compiler: gcc - os: osx env: HOST="" API="core" compiler: gcc - os: osx env: HOST="" API="core" compiler: clang install: - if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get install libasound2-dev libjack-dev libpulse-dev doxygen g++-mingw-w64-i686 g++-mingw-w64-x86-64 g++-arm-linux-gnueabihf oss4-dev; fi - if [ $TRAVIS_OS_NAME = osx ]; then brew install doxygen || (brew update && brew install doxygen); fi - if [ -n "$HOST" ]; then unset CXX; unset CC; fi script: ./autogen.sh --enable-debug --with-$API $HOST && make after_script: - make check - make distcheck - make install # ALSA: no access to /dev/snd/seq # JACK: Jack server not running # - tests/midiprobe notifications: email: recipients: - radarsat1@gmail.com on_success: never on_failure: change ================================================ FILE: vendor/github.com/thestk/rtaudio/CMakeLists.txt ================================================ cmake_minimum_required(VERSION 2.8.10) project(RtAudio) include(CTest) include(CheckFunctionExists) option(BUILD_PYTHON "Build PyRtAudio python bindings" OFF) option(AUDIO_WINDOWS_DS "Build Windows DirectSound API" OFF) option(AUDIO_WINDOWS_ASIO "Build Windows ASIO API" OFF) option(AUDIO_WINDOWS_WASAPI "Build Windows WASAPI API" OFF) option(AUDIO_LINUX_OSS "Build Linux OSS API" OFF) option(AUDIO_LINUX_ALSA "Build Linux ALSA API" OFF) option(AUDIO_LINUX_PULSE "Build Linux PulseAudio API" OFF) option(AUDIO_UNIX_JACK "Build Unix JACK audio server API" OFF) option(AUDIO_OSX_CORE "Build Mac OSX CoreAudio API" OFF) if (CMAKE_BUILD_TYPE STREQUAL "Debug") add_definitions(-D__RTAUDIO_DEBUG__) endif () check_function_exists(gettimeofday HAVE_GETTIMEOFDAY) if (HAVE_GETTIMEOFDAY) add_definitions(-DHAVE_GETTIMEOFDAY) endif () if (CMAKE_COMPILER_IS_GNUCXX) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall") endif (CMAKE_COMPILER_IS_GNUCXX) set(rtaudio_SOURCES RtAudio.cpp rtaudio_c.cpp) set(LINKLIBS) if (CMAKE_SYSTEM_NAME MATCHES "kNetBSD.*|NetBSD.*") message(STATUS "NetBSD detected, using OSS") find_package(Threads REQUIRED CMAKE_THREAD_PREFER_PTHREAD) list(APPEND LINKLIBS ossaudio ${CMAKE_THREAD_LIBS_INIT}) set(AUDIO_LINUX_OSS ON) elseif (UNIX AND NOT APPLE) if (NOT AUDIO_LINUX_PULSE AND NOT AUDIO_LINUX_ALSA AND NOT AUDIO_LINUX_OSS AND NOT AUDIO_UNIX_JACK) set(AUDIO_LINUX_ALSA ON) endif() if (AUDIO_LINUX_PULSE) find_library(PULSE_LIB pulse) find_library(PULSESIMPLE_LIB pulse-simple) find_package(Threads REQUIRED CMAKE_THREAD_PREFER_PTHREAD) list(APPEND LINKLIBS ${PULSE_LIB} ${PULSESIMPLE_LIB} ${CMAKE_THREAD_LIBS_INIT}) add_definitions(-D__LINUX_PULSE__) message(STATUS "Using Linux PulseAudio") endif (AUDIO_LINUX_PULSE) if (AUDIO_LINUX_ALSA) find_package(ALSA) find_package(Threads REQUIRED CMAKE_THREAD_PREFER_PTHREAD) if (NOT ALSA_FOUND) message(FATAL_ERROR "ALSA API requested but no ALSA dev libraries found") endif() include_directories(${ALSA_INCLUDE_DIR}) list(APPEND LINKLIBS ${ALSA_LIBRARY} ${CMAKE_THREAD_LIBS_INIT}) add_definitions(-D__LINUX_ALSA__) message(STATUS "Using Linux ALSA") endif (AUDIO_LINUX_ALSA) endif () if (APPLE) if (NOT AUDIO_OSX_CORE AND NOT AUDIO_UNIX_JACK) set(AUDIO_OSX_CORE ON) endif() if (AUDIO_OSX_CORE) find_library(COREAUDIO_LIB CoreAudio) find_library(COREFOUNDATION_LIB CoreFoundation) list(APPEND LINKLIBS ${COREAUDIO_LIB} ${COREFOUNDATION_LIB}) add_definitions(-D__MACOSX_CORE__) message(STATUS "Using OSX CoreAudio") endif (AUDIO_OSX_CORE) endif (APPLE) # JACK supported on many Unices if (UNIX) if (AUDIO_UNIX_JACK) find_library(JACK_LIB jack) list(APPEND LINKLIBS ${JACK_LIB}) add_definitions(-D__UNIX_JACK__) message(STATUS "Using JACK") endif (AUDIO_UNIX_JACK) endif (UNIX) if (WIN32) if (NOT AUDIO_WINDOWS_DS AND NOT AUDIO_WINDOWS_ASIO AND NOT AUDIO_WINDOWS_WASAPI) set(AUDIO_WINDOWS_WASAPI ON) endif() include_directories(include) list(APPEND LINKLIBS winmm ole32) if (AUDIO_WINDOWS_DS) add_definitions(-D__WINDOWS_DS__) message(STATUS "Using Windows DirectSound") list(APPEND LINKLIBS dsound) endif (AUDIO_WINDOWS_DS) if (AUDIO_WINDOWS_WASAPI) add_definitions(-D__WINDOWS_WASAPI__) message(STATUS "Using Windows WASAPI") list(APPEND LINKLIBS uuid ksuser) endif (AUDIO_WINDOWS_WASAPI) if (AUDIO_WINDOWS_ASIO) list(APPEND rtaudio_SOURCES include/asio.cpp include/asiodrivers.cpp include/asiolist.cpp include/iasiothiscallresolver.cpp) add_definitions(-D__WINDOWS_ASIO__) message(STATUS "Using Windows ASIO") endif (AUDIO_WINDOWS_ASIO) endif (WIN32) cmake_policy(SET CMP0042 OLD) add_library(rtaudio SHARED ${rtaudio_SOURCES}) add_library(rtaudio_static STATIC ${rtaudio_SOURCES}) target_link_libraries(rtaudio ${LINKLIBS}) if (BUILD_TESTING) add_subdirectory(tests) endif (BUILD_TESTING) configure_file("rtaudio.pc.in" "rtaudio.pc" @ONLY) install(TARGETS rtaudio LIBRARY DESTINATION lib ARCHIVE DESTINATION lib RUNTIME DESTINATION bin) install( FILES RtAudio.h DESTINATION include) install( FILES ${CMAKE_CURRENT_BINARY_DIR}/rtaudio.pc DESTINATION lib/pkgconfig) ================================================ FILE: vendor/github.com/thestk/rtaudio/Makefile.am ================================================ SUBDIRS = . tests if MAKE_DOC SUBDIRS += doc endif AM_CXXFLAGS = @visibility@ lib_LTLIBRARIES = %D%/librtaudio.la %C%_librtaudio_la_LDFLAGS = -no-undefined -export-dynamic -version-info @SO_VERSION@ %C%_librtaudio_la_SOURCES = \ %D%/RtAudio.cpp \ %D%/rtaudio_c.cpp if ASIO %C%_librtaudio_la_SOURCES += \ include/asio.cpp \ include/asiodrivers.cpp \ include/asiolist.cpp \ include/iasiothiscallresolver.cpp endif rtaudio_incdir = $(includedir)/rtaudio rtaudio_inc_HEADERS = \ %D%/RtAudio.h \ %D%/rtaudio_c.h pkgconfigdatadir = $(libdir)/pkgconfig pkgconfigdata_DATA = rtaudio.pc EXTRA_DIST = autogen.sh readme install.txt contrib include ================================================ FILE: vendor/github.com/thestk/rtaudio/README.md ================================================ # RtAudio [![Build Status](https://travis-ci.org/thestk/rtaudio.svg?branch=master)](https://travis-ci.org/thestk/rtaudio) A set of C++ classes that provide a common API for realtime audio input/output across Linux (native ALSA, JACK, PulseAudio and OSS), Macintosh OS X (CoreAudio and JACK), and Windows (DirectSound, ASIO and WASAPI) operating systems. By Gary P. Scavone, 2001-2017 (and many other developers!) This distribution of RtAudio contains the following: - doc: RtAudio documentation (see doc/html/index.html) - tests: example RtAudio programs - include: header and source files necessary for ASIO, DS & OSS compilation - tests/Windows: Visual C++ .net test program workspace and projects ## Overview RtAudio is a set of C++ classes that provides a common API (Application Programming Interface) for realtime audio input/output across Linux (native ALSA, JACK, PulseAudio and OSS), Macintosh OS X and Windows (DirectSound, ASIO and WASAPI) operating systems. RtAudio significantly simplifies the process of interacting with computer audio hardware. It was designed with the following objectives: - object-oriented C++ design - simple, common API across all supported platforms - only one source and one header file for easy inclusion in programming projects - allow simultaneous multi-api support - support dynamic connection of devices - provide extensive audio device parameter control - allow audio device capability probing - automatic internal conversion for data format, channel number compensation, (de)interleaving, and byte-swapping RtAudio incorporates the concept of audio streams, which represent audio output (playback) and/or input (recording). Available audio devices and their capabilities can be enumerated and then specified when opening a stream. Where applicable, multiple API support can be compiled and a particular API specified when creating an RtAudio instance. See the \ref apinotes section for information specific to each of the supported audio APIs. ## Further Reading For complete documentation on RtAudio, see the doc directory of the distribution or surf to http://www.music.mcgill.ca/~gary/rtaudio/. ## Legal and ethical: The RtAudio license is similar to the MIT License. RtAudio: a set of realtime audio i/o C++ classes Copyright (c) 2001-2017 Gary P. Scavone Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Any person wishing to distribute modifications to the Software is asked to send the modifications to the original developer so that they can be incorporated into the canonical version. This is, however, not a binding provision of this license. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: vendor/github.com/thestk/rtaudio/RtAudio.cpp ================================================ /************************************************************************/ /*! \class RtAudio \brief Realtime audio i/o C++ classes. RtAudio provides a common API (Application Programming Interface) for realtime audio input/output across Linux (native ALSA, Jack, and OSS), Macintosh OS X (CoreAudio and Jack), and Windows (DirectSound, ASIO and WASAPI) operating systems. RtAudio WWW site: http://www.music.mcgill.ca/~gary/rtaudio/ RtAudio: realtime audio i/o C++ classes Copyright (c) 2001-2017 Gary P. Scavone Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Any person wishing to distribute modifications to the Software is asked to send the modifications to the original developer so that they can be incorporated into the canonical version. This is, however, not a binding provision of this license. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /************************************************************************/ // RtAudio: Version 5.0.0 #include "RtAudio.h" #include #include #include #include #include #include // Static variable definitions. const unsigned int RtApi::MAX_SAMPLE_RATES = 14; const unsigned int RtApi::SAMPLE_RATES[] = { 4000, 5512, 8000, 9600, 11025, 16000, 22050, 32000, 44100, 48000, 88200, 96000, 176400, 192000 }; #if defined(__WINDOWS_DS__) || defined(__WINDOWS_ASIO__) || defined(__WINDOWS_WASAPI__) #define MUTEX_INITIALIZE(A) InitializeCriticalSection(A) #define MUTEX_DESTROY(A) DeleteCriticalSection(A) #define MUTEX_LOCK(A) EnterCriticalSection(A) #define MUTEX_UNLOCK(A) LeaveCriticalSection(A) #include "tchar.h" static std::string convertCharPointerToStdString(const char *text) { return std::string(text); } static std::string convertCharPointerToStdString(const wchar_t *text) { int length = WideCharToMultiByte(CP_UTF8, 0, text, -1, NULL, 0, NULL, NULL); std::string s( length-1, '\0' ); WideCharToMultiByte(CP_UTF8, 0, text, -1, &s[0], length, NULL, NULL); return s; } #elif defined(__LINUX_ALSA__) || defined(__LINUX_PULSE__) || defined(__UNIX_JACK__) || defined(__LINUX_OSS__) || defined(__MACOSX_CORE__) // pthread API #define MUTEX_INITIALIZE(A) pthread_mutex_init(A, NULL) #define MUTEX_DESTROY(A) pthread_mutex_destroy(A) #define MUTEX_LOCK(A) pthread_mutex_lock(A) #define MUTEX_UNLOCK(A) pthread_mutex_unlock(A) #else #define MUTEX_INITIALIZE(A) abs(*A) // dummy definitions #define MUTEX_DESTROY(A) abs(*A) // dummy definitions #endif // *************************************************** // // // RtAudio definitions. // // *************************************************** // std::string RtAudio :: getVersion( void ) { return RTAUDIO_VERSION; } void RtAudio :: getCompiledApi( std::vector &apis ) { apis.clear(); // The order here will control the order of RtAudio's API search in // the constructor. #if defined(__UNIX_JACK__) apis.push_back( UNIX_JACK ); #endif #if defined(__LINUX_ALSA__) apis.push_back( LINUX_ALSA ); #endif #if defined(__LINUX_PULSE__) apis.push_back( LINUX_PULSE ); #endif #if defined(__LINUX_OSS__) apis.push_back( LINUX_OSS ); #endif #if defined(__WINDOWS_ASIO__) apis.push_back( WINDOWS_ASIO ); #endif #if defined(__WINDOWS_WASAPI__) apis.push_back( WINDOWS_WASAPI ); #endif #if defined(__WINDOWS_DS__) apis.push_back( WINDOWS_DS ); #endif #if defined(__MACOSX_CORE__) apis.push_back( MACOSX_CORE ); #endif #if defined(__RTAUDIO_DUMMY__) apis.push_back( RTAUDIO_DUMMY ); #endif } void RtAudio :: openRtApi( RtAudio::Api api ) { if ( rtapi_ ) delete rtapi_; rtapi_ = 0; #if defined(__UNIX_JACK__) if ( api == UNIX_JACK ) rtapi_ = new RtApiJack(); #endif #if defined(__LINUX_ALSA__) if ( api == LINUX_ALSA ) rtapi_ = new RtApiAlsa(); #endif #if defined(__LINUX_PULSE__) if ( api == LINUX_PULSE ) rtapi_ = new RtApiPulse(); #endif #if defined(__LINUX_OSS__) if ( api == LINUX_OSS ) rtapi_ = new RtApiOss(); #endif #if defined(__WINDOWS_ASIO__) if ( api == WINDOWS_ASIO ) rtapi_ = new RtApiAsio(); #endif #if defined(__WINDOWS_WASAPI__) if ( api == WINDOWS_WASAPI ) rtapi_ = new RtApiWasapi(); #endif #if defined(__WINDOWS_DS__) if ( api == WINDOWS_DS ) rtapi_ = new RtApiDs(); #endif #if defined(__MACOSX_CORE__) if ( api == MACOSX_CORE ) rtapi_ = new RtApiCore(); #endif #if defined(__RTAUDIO_DUMMY__) if ( api == RTAUDIO_DUMMY ) rtapi_ = new RtApiDummy(); #endif } RtAudio :: RtAudio( RtAudio::Api api ) { rtapi_ = 0; if ( api != UNSPECIFIED ) { // Attempt to open the specified API. openRtApi( api ); if ( rtapi_ ) return; // No compiled support for specified API value. Issue a debug // warning and continue as if no API was specified. std::cerr << "\nRtAudio: no compiled support for specified API argument!\n" << std::endl; } // Iterate through the compiled APIs and return as soon as we find // one with at least one device or we reach the end of the list. std::vector< RtAudio::Api > apis; getCompiledApi( apis ); for ( unsigned int i=0; igetDeviceCount() ) break; } if ( rtapi_ ) return; // It should not be possible to get here because the preprocessor // definition __RTAUDIO_DUMMY__ is automatically defined if no // API-specific definitions are passed to the compiler. But just in // case something weird happens, we'll thow an error. std::string errorText = "\nRtAudio: no compiled API support found ... critical error!!\n\n"; throw( RtAudioError( errorText, RtAudioError::UNSPECIFIED ) ); } RtAudio :: ~RtAudio() { if ( rtapi_ ) delete rtapi_; } void RtAudio :: openStream( RtAudio::StreamParameters *outputParameters, RtAudio::StreamParameters *inputParameters, RtAudioFormat format, unsigned int sampleRate, unsigned int *bufferFrames, RtAudioCallback callback, void *userData, RtAudio::StreamOptions *options, RtAudioErrorCallback errorCallback ) { return rtapi_->openStream( outputParameters, inputParameters, format, sampleRate, bufferFrames, callback, userData, options, errorCallback ); } // *************************************************** // // // Public RtApi definitions (see end of file for // private or protected utility functions). // // *************************************************** // RtApi :: RtApi() { stream_.state = STREAM_CLOSED; stream_.mode = UNINITIALIZED; stream_.apiHandle = 0; stream_.userBuffer[0] = 0; stream_.userBuffer[1] = 0; MUTEX_INITIALIZE( &stream_.mutex ); showWarnings_ = true; firstErrorOccurred_ = false; } RtApi :: ~RtApi() { MUTEX_DESTROY( &stream_.mutex ); } void RtApi :: openStream( RtAudio::StreamParameters *oParams, RtAudio::StreamParameters *iParams, RtAudioFormat format, unsigned int sampleRate, unsigned int *bufferFrames, RtAudioCallback callback, void *userData, RtAudio::StreamOptions *options, RtAudioErrorCallback errorCallback ) { if ( stream_.state != STREAM_CLOSED ) { errorText_ = "RtApi::openStream: a stream is already open!"; error( RtAudioError::INVALID_USE ); return; } // Clear stream information potentially left from a previously open stream. clearStreamInfo(); if ( oParams && oParams->nChannels < 1 ) { errorText_ = "RtApi::openStream: a non-NULL output StreamParameters structure cannot have an nChannels value less than one."; error( RtAudioError::INVALID_USE ); return; } if ( iParams && iParams->nChannels < 1 ) { errorText_ = "RtApi::openStream: a non-NULL input StreamParameters structure cannot have an nChannels value less than one."; error( RtAudioError::INVALID_USE ); return; } if ( oParams == NULL && iParams == NULL ) { errorText_ = "RtApi::openStream: input and output StreamParameters structures are both NULL!"; error( RtAudioError::INVALID_USE ); return; } if ( formatBytes(format) == 0 ) { errorText_ = "RtApi::openStream: 'format' parameter value is undefined."; error( RtAudioError::INVALID_USE ); return; } unsigned int nDevices = getDeviceCount(); unsigned int oChannels = 0; if ( oParams ) { oChannels = oParams->nChannels; if ( oParams->deviceId >= nDevices ) { errorText_ = "RtApi::openStream: output device parameter value is invalid."; error( RtAudioError::INVALID_USE ); return; } } unsigned int iChannels = 0; if ( iParams ) { iChannels = iParams->nChannels; if ( iParams->deviceId >= nDevices ) { errorText_ = "RtApi::openStream: input device parameter value is invalid."; error( RtAudioError::INVALID_USE ); return; } } bool result; if ( oChannels > 0 ) { result = probeDeviceOpen( oParams->deviceId, OUTPUT, oChannels, oParams->firstChannel, sampleRate, format, bufferFrames, options ); if ( result == false ) { error( RtAudioError::SYSTEM_ERROR ); return; } } if ( iChannels > 0 ) { result = probeDeviceOpen( iParams->deviceId, INPUT, iChannels, iParams->firstChannel, sampleRate, format, bufferFrames, options ); if ( result == false ) { if ( oChannels > 0 ) closeStream(); error( RtAudioError::SYSTEM_ERROR ); return; } } stream_.callbackInfo.callback = (void *) callback; stream_.callbackInfo.userData = userData; stream_.callbackInfo.errorCallback = (void *) errorCallback; if ( options ) options->numberOfBuffers = stream_.nBuffers; stream_.state = STREAM_STOPPED; } unsigned int RtApi :: getDefaultInputDevice( void ) { // Should be implemented in subclasses if possible. return 0; } unsigned int RtApi :: getDefaultOutputDevice( void ) { // Should be implemented in subclasses if possible. return 0; } void RtApi :: closeStream( void ) { // MUST be implemented in subclasses! return; } bool RtApi :: probeDeviceOpen( unsigned int /*device*/, StreamMode /*mode*/, unsigned int /*channels*/, unsigned int /*firstChannel*/, unsigned int /*sampleRate*/, RtAudioFormat /*format*/, unsigned int * /*bufferSize*/, RtAudio::StreamOptions * /*options*/ ) { // MUST be implemented in subclasses! return FAILURE; } void RtApi :: tickStreamTime( void ) { // Subclasses that do not provide their own implementation of // getStreamTime should call this function once per buffer I/O to // provide basic stream time support. stream_.streamTime += ( stream_.bufferSize * 1.0 / stream_.sampleRate ); #if defined( HAVE_GETTIMEOFDAY ) gettimeofday( &stream_.lastTickTimestamp, NULL ); #endif } long RtApi :: getStreamLatency( void ) { verifyStream(); long totalLatency = 0; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) totalLatency = stream_.latency[0]; if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) totalLatency += stream_.latency[1]; return totalLatency; } double RtApi :: getStreamTime( void ) { verifyStream(); #if defined( HAVE_GETTIMEOFDAY ) // Return a very accurate estimate of the stream time by // adding in the elapsed time since the last tick. struct timeval then; struct timeval now; if ( stream_.state != STREAM_RUNNING || stream_.streamTime == 0.0 ) return stream_.streamTime; gettimeofday( &now, NULL ); then = stream_.lastTickTimestamp; return stream_.streamTime + ((now.tv_sec + 0.000001 * now.tv_usec) - (then.tv_sec + 0.000001 * then.tv_usec)); #else return stream_.streamTime; #endif } void RtApi :: setStreamTime( double time ) { verifyStream(); if ( time >= 0.0 ) stream_.streamTime = time; #if defined( HAVE_GETTIMEOFDAY ) gettimeofday( &stream_.lastTickTimestamp, NULL ); #endif } unsigned int RtApi :: getStreamSampleRate( void ) { verifyStream(); return stream_.sampleRate; } // *************************************************** // // // OS/API-specific methods. // // *************************************************** // #if defined(__MACOSX_CORE__) // The OS X CoreAudio API is designed to use a separate callback // procedure for each of its audio devices. A single RtAudio duplex // stream using two different devices is supported here, though it // cannot be guaranteed to always behave correctly because we cannot // synchronize these two callbacks. // // A property listener is installed for over/underrun information. // However, no functionality is currently provided to allow property // listeners to trigger user handlers because it is unclear what could // be done if a critical stream parameter (buffer size, sample rate, // device disconnect) notification arrived. The listeners entail // quite a bit of extra code and most likely, a user program wouldn't // be prepared for the result anyway. However, we do provide a flag // to the client callback function to inform of an over/underrun. // A structure to hold various information related to the CoreAudio API // implementation. struct CoreHandle { AudioDeviceID id[2]; // device ids #if defined( MAC_OS_X_VERSION_10_5 ) && ( MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 ) AudioDeviceIOProcID procId[2]; #endif UInt32 iStream[2]; // device stream index (or first if using multiple) UInt32 nStreams[2]; // number of streams to use bool xrun[2]; char *deviceBuffer; pthread_cond_t condition; int drainCounter; // Tracks callback counts when draining bool internalDrain; // Indicates if stop is initiated from callback or not. CoreHandle() :deviceBuffer(0), drainCounter(0), internalDrain(false) { nStreams[0] = 1; nStreams[1] = 1; id[0] = 0; id[1] = 0; xrun[0] = false; xrun[1] = false; } }; RtApiCore:: RtApiCore() { #if defined( AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER ) // This is a largely undocumented but absolutely necessary // requirement starting with OS-X 10.6. If not called, queries and // updates to various audio device properties are not handled // correctly. CFRunLoopRef theRunLoop = NULL; AudioObjectPropertyAddress property = { kAudioHardwarePropertyRunLoop, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster }; OSStatus result = AudioObjectSetPropertyData( kAudioObjectSystemObject, &property, 0, NULL, sizeof(CFRunLoopRef), &theRunLoop); if ( result != noErr ) { errorText_ = "RtApiCore::RtApiCore: error setting run loop property!"; error( RtAudioError::WARNING ); } #endif } RtApiCore :: ~RtApiCore() { // The subclass destructor gets called before the base class // destructor, so close an existing stream before deallocating // apiDeviceId memory. if ( stream_.state != STREAM_CLOSED ) closeStream(); } unsigned int RtApiCore :: getDeviceCount( void ) { // Find out how many audio devices there are, if any. UInt32 dataSize; AudioObjectPropertyAddress propertyAddress = { kAudioHardwarePropertyDevices, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster }; OSStatus result = AudioObjectGetPropertyDataSize( kAudioObjectSystemObject, &propertyAddress, 0, NULL, &dataSize ); if ( result != noErr ) { errorText_ = "RtApiCore::getDeviceCount: OS-X error getting device info!"; error( RtAudioError::WARNING ); return 0; } return dataSize / sizeof( AudioDeviceID ); } unsigned int RtApiCore :: getDefaultInputDevice( void ) { unsigned int nDevices = getDeviceCount(); if ( nDevices <= 1 ) return 0; AudioDeviceID id; UInt32 dataSize = sizeof( AudioDeviceID ); AudioObjectPropertyAddress property = { kAudioHardwarePropertyDefaultInputDevice, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster }; OSStatus result = AudioObjectGetPropertyData( kAudioObjectSystemObject, &property, 0, NULL, &dataSize, &id ); if ( result != noErr ) { errorText_ = "RtApiCore::getDefaultInputDevice: OS-X system error getting device."; error( RtAudioError::WARNING ); return 0; } dataSize *= nDevices; AudioDeviceID deviceList[ nDevices ]; property.mSelector = kAudioHardwarePropertyDevices; result = AudioObjectGetPropertyData( kAudioObjectSystemObject, &property, 0, NULL, &dataSize, (void *) &deviceList ); if ( result != noErr ) { errorText_ = "RtApiCore::getDefaultInputDevice: OS-X system error getting device IDs."; error( RtAudioError::WARNING ); return 0; } for ( unsigned int i=0; i= nDevices ) { errorText_ = "RtApiCore::getDeviceInfo: device ID is invalid!"; error( RtAudioError::INVALID_USE ); return info; } AudioDeviceID deviceList[ nDevices ]; UInt32 dataSize = sizeof( AudioDeviceID ) * nDevices; AudioObjectPropertyAddress property = { kAudioHardwarePropertyDevices, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster }; OSStatus result = AudioObjectGetPropertyData( kAudioObjectSystemObject, &property, 0, NULL, &dataSize, (void *) &deviceList ); if ( result != noErr ) { errorText_ = "RtApiCore::getDeviceInfo: OS-X system error getting device IDs."; error( RtAudioError::WARNING ); return info; } AudioDeviceID id = deviceList[ device ]; // Get the device name. info.name.erase(); CFStringRef cfname; dataSize = sizeof( CFStringRef ); property.mSelector = kAudioObjectPropertyManufacturer; result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &cfname ); if ( result != noErr ) { errorStream_ << "RtApiCore::probeDeviceInfo: system error (" << getErrorCode( result ) << ") getting device manufacturer."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } //const char *mname = CFStringGetCStringPtr( cfname, CFStringGetSystemEncoding() ); int length = CFStringGetLength(cfname); char *mname = (char *)malloc(length * 3 + 1); #if defined( UNICODE ) || defined( _UNICODE ) CFStringGetCString(cfname, mname, length * 3 + 1, kCFStringEncodingUTF8); #else CFStringGetCString(cfname, mname, length * 3 + 1, CFStringGetSystemEncoding()); #endif info.name.append( (const char *)mname, strlen(mname) ); info.name.append( ": " ); CFRelease( cfname ); free(mname); property.mSelector = kAudioObjectPropertyName; result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &cfname ); if ( result != noErr ) { errorStream_ << "RtApiCore::probeDeviceInfo: system error (" << getErrorCode( result ) << ") getting device name."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } //const char *name = CFStringGetCStringPtr( cfname, CFStringGetSystemEncoding() ); length = CFStringGetLength(cfname); char *name = (char *)malloc(length * 3 + 1); #if defined( UNICODE ) || defined( _UNICODE ) CFStringGetCString(cfname, name, length * 3 + 1, kCFStringEncodingUTF8); #else CFStringGetCString(cfname, name, length * 3 + 1, CFStringGetSystemEncoding()); #endif info.name.append( (const char *)name, strlen(name) ); CFRelease( cfname ); free(name); // Get the output stream "configuration". AudioBufferList *bufferList = nil; property.mSelector = kAudioDevicePropertyStreamConfiguration; property.mScope = kAudioDevicePropertyScopeOutput; // property.mElement = kAudioObjectPropertyElementWildcard; dataSize = 0; result = AudioObjectGetPropertyDataSize( id, &property, 0, NULL, &dataSize ); if ( result != noErr || dataSize == 0 ) { errorStream_ << "RtApiCore::getDeviceInfo: system error (" << getErrorCode( result ) << ") getting output stream configuration info for device (" << device << ")."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // Allocate the AudioBufferList. bufferList = (AudioBufferList *) malloc( dataSize ); if ( bufferList == NULL ) { errorText_ = "RtApiCore::getDeviceInfo: memory error allocating output AudioBufferList."; error( RtAudioError::WARNING ); return info; } result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, bufferList ); if ( result != noErr || dataSize == 0 ) { free( bufferList ); errorStream_ << "RtApiCore::getDeviceInfo: system error (" << getErrorCode( result ) << ") getting output stream configuration for device (" << device << ")."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // Get output channel information. unsigned int i, nStreams = bufferList->mNumberBuffers; for ( i=0; imBuffers[i].mNumberChannels; free( bufferList ); // Get the input stream "configuration". property.mScope = kAudioDevicePropertyScopeInput; result = AudioObjectGetPropertyDataSize( id, &property, 0, NULL, &dataSize ); if ( result != noErr || dataSize == 0 ) { errorStream_ << "RtApiCore::getDeviceInfo: system error (" << getErrorCode( result ) << ") getting input stream configuration info for device (" << device << ")."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // Allocate the AudioBufferList. bufferList = (AudioBufferList *) malloc( dataSize ); if ( bufferList == NULL ) { errorText_ = "RtApiCore::getDeviceInfo: memory error allocating input AudioBufferList."; error( RtAudioError::WARNING ); return info; } result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, bufferList ); if (result != noErr || dataSize == 0) { free( bufferList ); errorStream_ << "RtApiCore::getDeviceInfo: system error (" << getErrorCode( result ) << ") getting input stream configuration for device (" << device << ")."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // Get input channel information. nStreams = bufferList->mNumberBuffers; for ( i=0; imBuffers[i].mNumberChannels; free( bufferList ); // If device opens for both playback and capture, we determine the channels. if ( info.outputChannels > 0 && info.inputChannels > 0 ) info.duplexChannels = (info.outputChannels > info.inputChannels) ? info.inputChannels : info.outputChannels; // Probe the device sample rates. bool isInput = false; if ( info.outputChannels == 0 ) isInput = true; // Determine the supported sample rates. property.mSelector = kAudioDevicePropertyAvailableNominalSampleRates; if ( isInput == false ) property.mScope = kAudioDevicePropertyScopeOutput; result = AudioObjectGetPropertyDataSize( id, &property, 0, NULL, &dataSize ); if ( result != kAudioHardwareNoError || dataSize == 0 ) { errorStream_ << "RtApiCore::getDeviceInfo: system error (" << getErrorCode( result ) << ") getting sample rate info."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } UInt32 nRanges = dataSize / sizeof( AudioValueRange ); AudioValueRange rangeList[ nRanges ]; result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &rangeList ); if ( result != kAudioHardwareNoError ) { errorStream_ << "RtApiCore::getDeviceInfo: system error (" << getErrorCode( result ) << ") getting sample rates."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // The sample rate reporting mechanism is a bit of a mystery. It // seems that it can either return individual rates or a range of // rates. I assume that if the min / max range values are the same, // then that represents a single supported rate and if the min / max // range values are different, the device supports an arbitrary // range of values (though there might be multiple ranges, so we'll // use the most conservative range). Float64 minimumRate = 1.0, maximumRate = 10000000000.0; bool haveValueRange = false; info.sampleRates.clear(); for ( UInt32 i=0; i info.preferredSampleRate ) ) info.preferredSampleRate = tmpSr; } else { haveValueRange = true; if ( rangeList[i].mMinimum > minimumRate ) minimumRate = rangeList[i].mMinimum; if ( rangeList[i].mMaximum < maximumRate ) maximumRate = rangeList[i].mMaximum; } } if ( haveValueRange ) { for ( unsigned int k=0; k= (unsigned int) minimumRate && SAMPLE_RATES[k] <= (unsigned int) maximumRate ) { info.sampleRates.push_back( SAMPLE_RATES[k] ); if ( !info.preferredSampleRate || ( SAMPLE_RATES[k] <= 48000 && SAMPLE_RATES[k] > info.preferredSampleRate ) ) info.preferredSampleRate = SAMPLE_RATES[k]; } } } // Sort and remove any redundant values std::sort( info.sampleRates.begin(), info.sampleRates.end() ); info.sampleRates.erase( unique( info.sampleRates.begin(), info.sampleRates.end() ), info.sampleRates.end() ); if ( info.sampleRates.size() == 0 ) { errorStream_ << "RtApiCore::probeDeviceInfo: No supported sample rates found for device (" << device << ")."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // CoreAudio always uses 32-bit floating point data for PCM streams. // Thus, any other "physical" formats supported by the device are of // no interest to the client. info.nativeFormats = RTAUDIO_FLOAT32; if ( info.outputChannels > 0 ) if ( getDefaultOutputDevice() == device ) info.isDefaultOutput = true; if ( info.inputChannels > 0 ) if ( getDefaultInputDevice() == device ) info.isDefaultInput = true; info.probed = true; return info; } static OSStatus callbackHandler( AudioDeviceID inDevice, const AudioTimeStamp* /*inNow*/, const AudioBufferList* inInputData, const AudioTimeStamp* /*inInputTime*/, AudioBufferList* outOutputData, const AudioTimeStamp* /*inOutputTime*/, void* infoPointer ) { CallbackInfo *info = (CallbackInfo *) infoPointer; RtApiCore *object = (RtApiCore *) info->object; if ( object->callbackEvent( inDevice, inInputData, outOutputData ) == false ) return kAudioHardwareUnspecifiedError; else return kAudioHardwareNoError; } static OSStatus xrunListener( AudioObjectID /*inDevice*/, UInt32 nAddresses, const AudioObjectPropertyAddress properties[], void* handlePointer ) { CoreHandle *handle = (CoreHandle *) handlePointer; for ( UInt32 i=0; ixrun[1] = true; else handle->xrun[0] = true; } } return kAudioHardwareNoError; } static OSStatus rateListener( AudioObjectID inDevice, UInt32 /*nAddresses*/, const AudioObjectPropertyAddress /*properties*/[], void* ratePointer ) { Float64 *rate = (Float64 *) ratePointer; UInt32 dataSize = sizeof( Float64 ); AudioObjectPropertyAddress property = { kAudioDevicePropertyNominalSampleRate, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster }; AudioObjectGetPropertyData( inDevice, &property, 0, NULL, &dataSize, rate ); return kAudioHardwareNoError; } bool RtApiCore :: probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int *bufferSize, RtAudio::StreamOptions *options ) { // Get device ID unsigned int nDevices = getDeviceCount(); if ( nDevices == 0 ) { // This should not happen because a check is made before this function is called. errorText_ = "RtApiCore::probeDeviceOpen: no devices found!"; return FAILURE; } if ( device >= nDevices ) { // This should not happen because a check is made before this function is called. errorText_ = "RtApiCore::probeDeviceOpen: device ID is invalid!"; return FAILURE; } AudioDeviceID deviceList[ nDevices ]; UInt32 dataSize = sizeof( AudioDeviceID ) * nDevices; AudioObjectPropertyAddress property = { kAudioHardwarePropertyDevices, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster }; OSStatus result = AudioObjectGetPropertyData( kAudioObjectSystemObject, &property, 0, NULL, &dataSize, (void *) &deviceList ); if ( result != noErr ) { errorText_ = "RtApiCore::probeDeviceOpen: OS-X system error getting device IDs."; return FAILURE; } AudioDeviceID id = deviceList[ device ]; // Setup for stream mode. bool isInput = false; if ( mode == INPUT ) { isInput = true; property.mScope = kAudioDevicePropertyScopeInput; } else property.mScope = kAudioDevicePropertyScopeOutput; // Get the stream "configuration". AudioBufferList *bufferList = nil; dataSize = 0; property.mSelector = kAudioDevicePropertyStreamConfiguration; result = AudioObjectGetPropertyDataSize( id, &property, 0, NULL, &dataSize ); if ( result != noErr || dataSize == 0 ) { errorStream_ << "RtApiCore::probeDeviceOpen: system error (" << getErrorCode( result ) << ") getting stream configuration info for device (" << device << ")."; errorText_ = errorStream_.str(); return FAILURE; } // Allocate the AudioBufferList. bufferList = (AudioBufferList *) malloc( dataSize ); if ( bufferList == NULL ) { errorText_ = "RtApiCore::probeDeviceOpen: memory error allocating AudioBufferList."; return FAILURE; } result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, bufferList ); if (result != noErr || dataSize == 0) { free( bufferList ); errorStream_ << "RtApiCore::probeDeviceOpen: system error (" << getErrorCode( result ) << ") getting stream configuration for device (" << device << ")."; errorText_ = errorStream_.str(); return FAILURE; } // Search for one or more streams that contain the desired number of // channels. CoreAudio devices can have an arbitrary number of // streams and each stream can have an arbitrary number of channels. // For each stream, a single buffer of interleaved samples is // provided. RtAudio prefers the use of one stream of interleaved // data or multiple consecutive single-channel streams. However, we // now support multiple consecutive multi-channel streams of // interleaved data as well. UInt32 iStream, offsetCounter = firstChannel; UInt32 nStreams = bufferList->mNumberBuffers; bool monoMode = false; bool foundStream = false; // First check that the device supports the requested number of // channels. UInt32 deviceChannels = 0; for ( iStream=0; iStreammBuffers[iStream].mNumberChannels; if ( deviceChannels < ( channels + firstChannel ) ) { free( bufferList ); errorStream_ << "RtApiCore::probeDeviceOpen: the device (" << device << ") does not support the requested channel count."; errorText_ = errorStream_.str(); return FAILURE; } // Look for a single stream meeting our needs. UInt32 firstStream, streamCount = 1, streamChannels = 0, channelOffset = 0; for ( iStream=0; iStreammBuffers[iStream].mNumberChannels; if ( streamChannels >= channels + offsetCounter ) { firstStream = iStream; channelOffset = offsetCounter; foundStream = true; break; } if ( streamChannels > offsetCounter ) break; offsetCounter -= streamChannels; } // If we didn't find a single stream above, then we should be able // to meet the channel specification with multiple streams. if ( foundStream == false ) { monoMode = true; offsetCounter = firstChannel; for ( iStream=0; iStreammBuffers[iStream].mNumberChannels; if ( streamChannels > offsetCounter ) break; offsetCounter -= streamChannels; } firstStream = iStream; channelOffset = offsetCounter; Int32 channelCounter = channels + offsetCounter - streamChannels; if ( streamChannels > 1 ) monoMode = false; while ( channelCounter > 0 ) { streamChannels = bufferList->mBuffers[++iStream].mNumberChannels; if ( streamChannels > 1 ) monoMode = false; channelCounter -= streamChannels; streamCount++; } } free( bufferList ); // Determine the buffer size. AudioValueRange bufferRange; dataSize = sizeof( AudioValueRange ); property.mSelector = kAudioDevicePropertyBufferFrameSizeRange; result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &bufferRange ); if ( result != noErr ) { errorStream_ << "RtApiCore::probeDeviceOpen: system error (" << getErrorCode( result ) << ") getting buffer size range for device (" << device << ")."; errorText_ = errorStream_.str(); return FAILURE; } if ( bufferRange.mMinimum > *bufferSize ) *bufferSize = (unsigned long) bufferRange.mMinimum; else if ( bufferRange.mMaximum < *bufferSize ) *bufferSize = (unsigned long) bufferRange.mMaximum; if ( options && options->flags & RTAUDIO_MINIMIZE_LATENCY ) *bufferSize = (unsigned long) bufferRange.mMinimum; // Set the buffer size. For multiple streams, I'm assuming we only // need to make this setting for the master channel. UInt32 theSize = (UInt32) *bufferSize; dataSize = sizeof( UInt32 ); property.mSelector = kAudioDevicePropertyBufferFrameSize; result = AudioObjectSetPropertyData( id, &property, 0, NULL, dataSize, &theSize ); if ( result != noErr ) { errorStream_ << "RtApiCore::probeDeviceOpen: system error (" << getErrorCode( result ) << ") setting the buffer size for device (" << device << ")."; errorText_ = errorStream_.str(); return FAILURE; } // If attempting to setup a duplex stream, the bufferSize parameter // MUST be the same in both directions! *bufferSize = theSize; if ( stream_.mode == OUTPUT && mode == INPUT && *bufferSize != stream_.bufferSize ) { errorStream_ << "RtApiCore::probeDeviceOpen: system error setting buffer size for duplex stream on device (" << device << ")."; errorText_ = errorStream_.str(); return FAILURE; } stream_.bufferSize = *bufferSize; stream_.nBuffers = 1; // Try to set "hog" mode ... it's not clear to me this is working. if ( options && options->flags & RTAUDIO_HOG_DEVICE ) { pid_t hog_pid; dataSize = sizeof( hog_pid ); property.mSelector = kAudioDevicePropertyHogMode; result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &hog_pid ); if ( result != noErr ) { errorStream_ << "RtApiCore::probeDeviceOpen: system error (" << getErrorCode( result ) << ") getting 'hog' state!"; errorText_ = errorStream_.str(); return FAILURE; } if ( hog_pid != getpid() ) { hog_pid = getpid(); result = AudioObjectSetPropertyData( id, &property, 0, NULL, dataSize, &hog_pid ); if ( result != noErr ) { errorStream_ << "RtApiCore::probeDeviceOpen: system error (" << getErrorCode( result ) << ") setting 'hog' state!"; errorText_ = errorStream_.str(); return FAILURE; } } } // Check and if necessary, change the sample rate for the device. Float64 nominalRate; dataSize = sizeof( Float64 ); property.mSelector = kAudioDevicePropertyNominalSampleRate; result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &nominalRate ); if ( result != noErr ) { errorStream_ << "RtApiCore::probeDeviceOpen: system error (" << getErrorCode( result ) << ") getting current sample rate."; errorText_ = errorStream_.str(); return FAILURE; } // Only change the sample rate if off by more than 1 Hz. if ( fabs( nominalRate - (double)sampleRate ) > 1.0 ) { // Set a property listener for the sample rate change Float64 reportedRate = 0.0; AudioObjectPropertyAddress tmp = { kAudioDevicePropertyNominalSampleRate, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster }; result = AudioObjectAddPropertyListener( id, &tmp, rateListener, (void *) &reportedRate ); if ( result != noErr ) { errorStream_ << "RtApiCore::probeDeviceOpen: system error (" << getErrorCode( result ) << ") setting sample rate property listener for device (" << device << ")."; errorText_ = errorStream_.str(); return FAILURE; } nominalRate = (Float64) sampleRate; result = AudioObjectSetPropertyData( id, &property, 0, NULL, dataSize, &nominalRate ); if ( result != noErr ) { AudioObjectRemovePropertyListener( id, &tmp, rateListener, (void *) &reportedRate ); errorStream_ << "RtApiCore::probeDeviceOpen: system error (" << getErrorCode( result ) << ") setting sample rate for device (" << device << ")."; errorText_ = errorStream_.str(); return FAILURE; } // Now wait until the reported nominal rate is what we just set. UInt32 microCounter = 0; while ( reportedRate != nominalRate ) { microCounter += 5000; if ( microCounter > 5000000 ) break; usleep( 5000 ); } // Remove the property listener. AudioObjectRemovePropertyListener( id, &tmp, rateListener, (void *) &reportedRate ); if ( microCounter > 5000000 ) { errorStream_ << "RtApiCore::probeDeviceOpen: timeout waiting for sample rate update for device (" << device << ")."; errorText_ = errorStream_.str(); return FAILURE; } } // Now set the stream format for all streams. Also, check the // physical format of the device and change that if necessary. AudioStreamBasicDescription description; dataSize = sizeof( AudioStreamBasicDescription ); property.mSelector = kAudioStreamPropertyVirtualFormat; result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &description ); if ( result != noErr ) { errorStream_ << "RtApiCore::probeDeviceOpen: system error (" << getErrorCode( result ) << ") getting stream format for device (" << device << ")."; errorText_ = errorStream_.str(); return FAILURE; } // Set the sample rate and data format id. However, only make the // change if the sample rate is not within 1.0 of the desired // rate and the format is not linear pcm. bool updateFormat = false; if ( fabs( description.mSampleRate - (Float64)sampleRate ) > 1.0 ) { description.mSampleRate = (Float64) sampleRate; updateFormat = true; } if ( description.mFormatID != kAudioFormatLinearPCM ) { description.mFormatID = kAudioFormatLinearPCM; updateFormat = true; } if ( updateFormat ) { result = AudioObjectSetPropertyData( id, &property, 0, NULL, dataSize, &description ); if ( result != noErr ) { errorStream_ << "RtApiCore::probeDeviceOpen: system error (" << getErrorCode( result ) << ") setting sample rate or data format for device (" << device << ")."; errorText_ = errorStream_.str(); return FAILURE; } } // Now check the physical format. property.mSelector = kAudioStreamPropertyPhysicalFormat; result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &description ); if ( result != noErr ) { errorStream_ << "RtApiCore::probeDeviceOpen: system error (" << getErrorCode( result ) << ") getting stream physical format for device (" << device << ")."; errorText_ = errorStream_.str(); return FAILURE; } //std::cout << "Current physical stream format:" << std::endl; //std::cout << " mBitsPerChan = " << description.mBitsPerChannel << std::endl; //std::cout << " aligned high = " << (description.mFormatFlags & kAudioFormatFlagIsAlignedHigh) << ", isPacked = " << (description.mFormatFlags & kAudioFormatFlagIsPacked) << std::endl; //std::cout << " bytesPerFrame = " << description.mBytesPerFrame << std::endl; //std::cout << " sample rate = " << description.mSampleRate << std::endl; if ( description.mFormatID != kAudioFormatLinearPCM || description.mBitsPerChannel < 16 ) { description.mFormatID = kAudioFormatLinearPCM; //description.mSampleRate = (Float64) sampleRate; AudioStreamBasicDescription testDescription = description; UInt32 formatFlags; // We'll try higher bit rates first and then work our way down. std::vector< std::pair > physicalFormats; formatFlags = (description.mFormatFlags | kLinearPCMFormatFlagIsFloat) & ~kLinearPCMFormatFlagIsSignedInteger; physicalFormats.push_back( std::pair( 32, formatFlags ) ); formatFlags = (description.mFormatFlags | kLinearPCMFormatFlagIsSignedInteger | kAudioFormatFlagIsPacked) & ~kLinearPCMFormatFlagIsFloat; physicalFormats.push_back( std::pair( 32, formatFlags ) ); physicalFormats.push_back( std::pair( 24, formatFlags ) ); // 24-bit packed formatFlags &= ~( kAudioFormatFlagIsPacked | kAudioFormatFlagIsAlignedHigh ); physicalFormats.push_back( std::pair( 24.2, formatFlags ) ); // 24-bit in 4 bytes, aligned low formatFlags |= kAudioFormatFlagIsAlignedHigh; physicalFormats.push_back( std::pair( 24.4, formatFlags ) ); // 24-bit in 4 bytes, aligned high formatFlags = (description.mFormatFlags | kLinearPCMFormatFlagIsSignedInteger | kAudioFormatFlagIsPacked) & ~kLinearPCMFormatFlagIsFloat; physicalFormats.push_back( std::pair( 16, formatFlags ) ); physicalFormats.push_back( std::pair( 8, formatFlags ) ); bool setPhysicalFormat = false; for( unsigned int i=0; iflags & RTAUDIO_NONINTERLEAVED ) stream_.userInterleaved = false; else stream_.userInterleaved = true; stream_.deviceInterleaved[mode] = true; if ( monoMode == true ) stream_.deviceInterleaved[mode] = false; // Set flags for buffer conversion. stream_.doConvertBuffer[mode] = false; if ( stream_.userFormat != stream_.deviceFormat[mode] ) stream_.doConvertBuffer[mode] = true; if ( stream_.nUserChannels[mode] < stream_.nDeviceChannels[mode] ) stream_.doConvertBuffer[mode] = true; if ( streamCount == 1 ) { if ( stream_.nUserChannels[mode] > 1 && stream_.userInterleaved != stream_.deviceInterleaved[mode] ) stream_.doConvertBuffer[mode] = true; } else if ( monoMode && stream_.userInterleaved ) stream_.doConvertBuffer[mode] = true; // Allocate our CoreHandle structure for the stream. CoreHandle *handle = 0; if ( stream_.apiHandle == 0 ) { try { handle = new CoreHandle; } catch ( std::bad_alloc& ) { errorText_ = "RtApiCore::probeDeviceOpen: error allocating CoreHandle memory."; goto error; } if ( pthread_cond_init( &handle->condition, NULL ) ) { errorText_ = "RtApiCore::probeDeviceOpen: error initializing pthread condition variable."; goto error; } stream_.apiHandle = (void *) handle; } else handle = (CoreHandle *) stream_.apiHandle; handle->iStream[mode] = firstStream; handle->nStreams[mode] = streamCount; handle->id[mode] = id; // Allocate necessary internal buffers. unsigned long bufferBytes; bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat ); // stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 ); stream_.userBuffer[mode] = (char *) malloc( bufferBytes * sizeof(char) ); memset( stream_.userBuffer[mode], 0, bufferBytes * sizeof(char) ); if ( stream_.userBuffer[mode] == NULL ) { errorText_ = "RtApiCore::probeDeviceOpen: error allocating user buffer memory."; goto error; } // If possible, we will make use of the CoreAudio stream buffers as // "device buffers". However, we can't do this if using multiple // streams. if ( stream_.doConvertBuffer[mode] && handle->nStreams[mode] > 1 ) { bool makeBuffer = true; bufferBytes = stream_.nDeviceChannels[mode] * formatBytes( stream_.deviceFormat[mode] ); if ( mode == INPUT ) { if ( stream_.mode == OUTPUT && stream_.deviceBuffer ) { unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] ); if ( bufferBytes <= bytesOut ) makeBuffer = false; } } if ( makeBuffer ) { bufferBytes *= *bufferSize; if ( stream_.deviceBuffer ) free( stream_.deviceBuffer ); stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 ); if ( stream_.deviceBuffer == NULL ) { errorText_ = "RtApiCore::probeDeviceOpen: error allocating device buffer memory."; goto error; } } } stream_.sampleRate = sampleRate; stream_.device[mode] = device; stream_.state = STREAM_STOPPED; stream_.callbackInfo.object = (void *) this; // Setup the buffer conversion information structure. if ( stream_.doConvertBuffer[mode] ) { if ( streamCount > 1 ) setConvertInfo( mode, 0 ); else setConvertInfo( mode, channelOffset ); } if ( mode == INPUT && stream_.mode == OUTPUT && stream_.device[0] == device ) // Only one callback procedure per device. stream_.mode = DUPLEX; else { #if defined( MAC_OS_X_VERSION_10_5 ) && ( MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 ) result = AudioDeviceCreateIOProcID( id, callbackHandler, (void *) &stream_.callbackInfo, &handle->procId[mode] ); #else // deprecated in favor of AudioDeviceCreateIOProcID() result = AudioDeviceAddIOProc( id, callbackHandler, (void *) &stream_.callbackInfo ); #endif if ( result != noErr ) { errorStream_ << "RtApiCore::probeDeviceOpen: system error setting callback for device (" << device << ")."; errorText_ = errorStream_.str(); goto error; } if ( stream_.mode == OUTPUT && mode == INPUT ) stream_.mode = DUPLEX; else stream_.mode = mode; } // Setup the device property listener for over/underload. property.mSelector = kAudioDeviceProcessorOverload; property.mScope = kAudioObjectPropertyScopeGlobal; result = AudioObjectAddPropertyListener( id, &property, xrunListener, (void *) handle ); return SUCCESS; error: if ( handle ) { pthread_cond_destroy( &handle->condition ); delete handle; stream_.apiHandle = 0; } for ( int i=0; i<2; i++ ) { if ( stream_.userBuffer[i] ) { free( stream_.userBuffer[i] ); stream_.userBuffer[i] = 0; } } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } stream_.state = STREAM_CLOSED; return FAILURE; } void RtApiCore :: closeStream( void ) { if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiCore::closeStream(): no open stream to close!"; error( RtAudioError::WARNING ); return; } CoreHandle *handle = (CoreHandle *) stream_.apiHandle; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { if (handle) { AudioObjectPropertyAddress property = { kAudioHardwarePropertyDevices, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster }; property.mSelector = kAudioDeviceProcessorOverload; property.mScope = kAudioObjectPropertyScopeGlobal; if (AudioObjectRemovePropertyListener( handle->id[0], &property, xrunListener, (void *) handle ) != noErr) { errorText_ = "RtApiCore::closeStream(): error removing property listener!"; error( RtAudioError::WARNING ); } } if ( stream_.state == STREAM_RUNNING ) AudioDeviceStop( handle->id[0], callbackHandler ); #if defined( MAC_OS_X_VERSION_10_5 ) && ( MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 ) AudioDeviceDestroyIOProcID( handle->id[0], handle->procId[0] ); #else // deprecated in favor of AudioDeviceDestroyIOProcID() AudioDeviceRemoveIOProc( handle->id[0], callbackHandler ); #endif } if ( stream_.mode == INPUT || ( stream_.mode == DUPLEX && stream_.device[0] != stream_.device[1] ) ) { if (handle) { AudioObjectPropertyAddress property = { kAudioHardwarePropertyDevices, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster }; property.mSelector = kAudioDeviceProcessorOverload; property.mScope = kAudioObjectPropertyScopeGlobal; if (AudioObjectRemovePropertyListener( handle->id[1], &property, xrunListener, (void *) handle ) != noErr) { errorText_ = "RtApiCore::closeStream(): error removing property listener!"; error( RtAudioError::WARNING ); } } if ( stream_.state == STREAM_RUNNING ) AudioDeviceStop( handle->id[1], callbackHandler ); #if defined( MAC_OS_X_VERSION_10_5 ) && ( MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 ) AudioDeviceDestroyIOProcID( handle->id[1], handle->procId[1] ); #else // deprecated in favor of AudioDeviceDestroyIOProcID() AudioDeviceRemoveIOProc( handle->id[1], callbackHandler ); #endif } for ( int i=0; i<2; i++ ) { if ( stream_.userBuffer[i] ) { free( stream_.userBuffer[i] ); stream_.userBuffer[i] = 0; } } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } // Destroy pthread condition variable. pthread_cond_destroy( &handle->condition ); delete handle; stream_.apiHandle = 0; stream_.mode = UNINITIALIZED; stream_.state = STREAM_CLOSED; } void RtApiCore :: startStream( void ) { verifyStream(); if ( stream_.state == STREAM_RUNNING ) { errorText_ = "RtApiCore::startStream(): the stream is already running!"; error( RtAudioError::WARNING ); return; } OSStatus result = noErr; CoreHandle *handle = (CoreHandle *) stream_.apiHandle; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { result = AudioDeviceStart( handle->id[0], callbackHandler ); if ( result != noErr ) { errorStream_ << "RtApiCore::startStream: system error (" << getErrorCode( result ) << ") starting callback procedure on device (" << stream_.device[0] << ")."; errorText_ = errorStream_.str(); goto unlock; } } if ( stream_.mode == INPUT || ( stream_.mode == DUPLEX && stream_.device[0] != stream_.device[1] ) ) { result = AudioDeviceStart( handle->id[1], callbackHandler ); if ( result != noErr ) { errorStream_ << "RtApiCore::startStream: system error starting input callback procedure on device (" << stream_.device[1] << ")."; errorText_ = errorStream_.str(); goto unlock; } } handle->drainCounter = 0; handle->internalDrain = false; stream_.state = STREAM_RUNNING; unlock: if ( result == noErr ) return; error( RtAudioError::SYSTEM_ERROR ); } void RtApiCore :: stopStream( void ) { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiCore::stopStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } OSStatus result = noErr; CoreHandle *handle = (CoreHandle *) stream_.apiHandle; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { if ( handle->drainCounter == 0 ) { handle->drainCounter = 2; pthread_cond_wait( &handle->condition, &stream_.mutex ); // block until signaled } result = AudioDeviceStop( handle->id[0], callbackHandler ); if ( result != noErr ) { errorStream_ << "RtApiCore::stopStream: system error (" << getErrorCode( result ) << ") stopping callback procedure on device (" << stream_.device[0] << ")."; errorText_ = errorStream_.str(); goto unlock; } } if ( stream_.mode == INPUT || ( stream_.mode == DUPLEX && stream_.device[0] != stream_.device[1] ) ) { result = AudioDeviceStop( handle->id[1], callbackHandler ); if ( result != noErr ) { errorStream_ << "RtApiCore::stopStream: system error (" << getErrorCode( result ) << ") stopping input callback procedure on device (" << stream_.device[1] << ")."; errorText_ = errorStream_.str(); goto unlock; } } stream_.state = STREAM_STOPPED; unlock: if ( result == noErr ) return; error( RtAudioError::SYSTEM_ERROR ); } void RtApiCore :: abortStream( void ) { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiCore::abortStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } CoreHandle *handle = (CoreHandle *) stream_.apiHandle; handle->drainCounter = 2; stopStream(); } // This function will be called by a spawned thread when the user // callback function signals that the stream should be stopped or // aborted. It is better to handle it this way because the // callbackEvent() function probably should return before the AudioDeviceStop() // function is called. static void *coreStopStream( void *ptr ) { CallbackInfo *info = (CallbackInfo *) ptr; RtApiCore *object = (RtApiCore *) info->object; object->stopStream(); pthread_exit( NULL ); } bool RtApiCore :: callbackEvent( AudioDeviceID deviceId, const AudioBufferList *inBufferList, const AudioBufferList *outBufferList ) { if ( stream_.state == STREAM_STOPPED || stream_.state == STREAM_STOPPING ) return SUCCESS; if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiCore::callbackEvent(): the stream is closed ... this shouldn't happen!"; error( RtAudioError::WARNING ); return FAILURE; } CallbackInfo *info = (CallbackInfo *) &stream_.callbackInfo; CoreHandle *handle = (CoreHandle *) stream_.apiHandle; // Check if we were draining the stream and signal is finished. if ( handle->drainCounter > 3 ) { ThreadHandle threadId; stream_.state = STREAM_STOPPING; if ( handle->internalDrain == true ) pthread_create( &threadId, NULL, coreStopStream, info ); else // external call to stopStream() pthread_cond_signal( &handle->condition ); return SUCCESS; } AudioDeviceID outputDevice = handle->id[0]; // Invoke user callback to get fresh output data UNLESS we are // draining stream or duplex mode AND the input/output devices are // different AND this function is called for the input device. if ( handle->drainCounter == 0 && ( stream_.mode != DUPLEX || deviceId == outputDevice ) ) { RtAudioCallback callback = (RtAudioCallback) info->callback; double streamTime = getStreamTime(); RtAudioStreamStatus status = 0; if ( stream_.mode != INPUT && handle->xrun[0] == true ) { status |= RTAUDIO_OUTPUT_UNDERFLOW; handle->xrun[0] = false; } if ( stream_.mode != OUTPUT && handle->xrun[1] == true ) { status |= RTAUDIO_INPUT_OVERFLOW; handle->xrun[1] = false; } int cbReturnValue = callback( stream_.userBuffer[0], stream_.userBuffer[1], stream_.bufferSize, streamTime, status, info->userData ); if ( cbReturnValue == 2 ) { stream_.state = STREAM_STOPPING; handle->drainCounter = 2; abortStream(); return SUCCESS; } else if ( cbReturnValue == 1 ) { handle->drainCounter = 1; handle->internalDrain = true; } } if ( stream_.mode == OUTPUT || ( stream_.mode == DUPLEX && deviceId == outputDevice ) ) { if ( handle->drainCounter > 1 ) { // write zeros to the output stream if ( handle->nStreams[0] == 1 ) { memset( outBufferList->mBuffers[handle->iStream[0]].mData, 0, outBufferList->mBuffers[handle->iStream[0]].mDataByteSize ); } else { // fill multiple streams with zeros for ( unsigned int i=0; inStreams[0]; i++ ) { memset( outBufferList->mBuffers[handle->iStream[0]+i].mData, 0, outBufferList->mBuffers[handle->iStream[0]+i].mDataByteSize ); } } } else if ( handle->nStreams[0] == 1 ) { if ( stream_.doConvertBuffer[0] ) { // convert directly to CoreAudio stream buffer convertBuffer( (char *) outBufferList->mBuffers[handle->iStream[0]].mData, stream_.userBuffer[0], stream_.convertInfo[0] ); } else { // copy from user buffer memcpy( outBufferList->mBuffers[handle->iStream[0]].mData, stream_.userBuffer[0], outBufferList->mBuffers[handle->iStream[0]].mDataByteSize ); } } else { // fill multiple streams Float32 *inBuffer = (Float32 *) stream_.userBuffer[0]; if ( stream_.doConvertBuffer[0] ) { convertBuffer( stream_.deviceBuffer, stream_.userBuffer[0], stream_.convertInfo[0] ); inBuffer = (Float32 *) stream_.deviceBuffer; } if ( stream_.deviceInterleaved[0] == false ) { // mono mode UInt32 bufferBytes = outBufferList->mBuffers[handle->iStream[0]].mDataByteSize; for ( unsigned int i=0; imBuffers[handle->iStream[0]+i].mData, (void *)&inBuffer[i*stream_.bufferSize], bufferBytes ); } } else { // fill multiple multi-channel streams with interleaved data UInt32 streamChannels, channelsLeft, inJump, outJump, inOffset; Float32 *out, *in; bool inInterleaved = ( stream_.userInterleaved ) ? true : false; UInt32 inChannels = stream_.nUserChannels[0]; if ( stream_.doConvertBuffer[0] ) { inInterleaved = true; // device buffer will always be interleaved for nStreams > 1 and not mono mode inChannels = stream_.nDeviceChannels[0]; } if ( inInterleaved ) inOffset = 1; else inOffset = stream_.bufferSize; channelsLeft = inChannels; for ( unsigned int i=0; inStreams[0]; i++ ) { in = inBuffer; out = (Float32 *) outBufferList->mBuffers[handle->iStream[0]+i].mData; streamChannels = outBufferList->mBuffers[handle->iStream[0]+i].mNumberChannels; outJump = 0; // Account for possible channel offset in first stream if ( i == 0 && stream_.channelOffset[0] > 0 ) { streamChannels -= stream_.channelOffset[0]; outJump = stream_.channelOffset[0]; out += outJump; } // Account for possible unfilled channels at end of the last stream if ( streamChannels > channelsLeft ) { outJump = streamChannels - channelsLeft; streamChannels = channelsLeft; } // Determine input buffer offsets and skips if ( inInterleaved ) { inJump = inChannels; in += inChannels - channelsLeft; } else { inJump = 1; in += (inChannels - channelsLeft) * inOffset; } for ( unsigned int i=0; idrainCounter ) { handle->drainCounter++; goto unlock; } AudioDeviceID inputDevice; inputDevice = handle->id[1]; if ( stream_.mode == INPUT || ( stream_.mode == DUPLEX && deviceId == inputDevice ) ) { if ( handle->nStreams[1] == 1 ) { if ( stream_.doConvertBuffer[1] ) { // convert directly from CoreAudio stream buffer convertBuffer( stream_.userBuffer[1], (char *) inBufferList->mBuffers[handle->iStream[1]].mData, stream_.convertInfo[1] ); } else { // copy to user buffer memcpy( stream_.userBuffer[1], inBufferList->mBuffers[handle->iStream[1]].mData, inBufferList->mBuffers[handle->iStream[1]].mDataByteSize ); } } else { // read from multiple streams Float32 *outBuffer = (Float32 *) stream_.userBuffer[1]; if ( stream_.doConvertBuffer[1] ) outBuffer = (Float32 *) stream_.deviceBuffer; if ( stream_.deviceInterleaved[1] == false ) { // mono mode UInt32 bufferBytes = inBufferList->mBuffers[handle->iStream[1]].mDataByteSize; for ( unsigned int i=0; imBuffers[handle->iStream[1]+i].mData, bufferBytes ); } } else { // read from multiple multi-channel streams UInt32 streamChannels, channelsLeft, inJump, outJump, outOffset; Float32 *out, *in; bool outInterleaved = ( stream_.userInterleaved ) ? true : false; UInt32 outChannels = stream_.nUserChannels[1]; if ( stream_.doConvertBuffer[1] ) { outInterleaved = true; // device buffer will always be interleaved for nStreams > 1 and not mono mode outChannels = stream_.nDeviceChannels[1]; } if ( outInterleaved ) outOffset = 1; else outOffset = stream_.bufferSize; channelsLeft = outChannels; for ( unsigned int i=0; inStreams[1]; i++ ) { out = outBuffer; in = (Float32 *) inBufferList->mBuffers[handle->iStream[1]+i].mData; streamChannels = inBufferList->mBuffers[handle->iStream[1]+i].mNumberChannels; inJump = 0; // Account for possible channel offset in first stream if ( i == 0 && stream_.channelOffset[1] > 0 ) { streamChannels -= stream_.channelOffset[1]; inJump = stream_.channelOffset[1]; in += inJump; } // Account for possible unread channels at end of the last stream if ( streamChannels > channelsLeft ) { inJump = streamChannels - channelsLeft; streamChannels = channelsLeft; } // Determine output buffer offsets and skips if ( outInterleaved ) { outJump = outChannels; out += outChannels - channelsLeft; } else { outJump = 1; out += (outChannels - channelsLeft) * outOffset; } for ( unsigned int i=0; i #include #include // A structure to hold various information related to the Jack API // implementation. struct JackHandle { jack_client_t *client; jack_port_t **ports[2]; std::string deviceName[2]; bool xrun[2]; pthread_cond_t condition; int drainCounter; // Tracks callback counts when draining bool internalDrain; // Indicates if stop is initiated from callback or not. JackHandle() :client(0), drainCounter(0), internalDrain(false) { ports[0] = 0; ports[1] = 0; xrun[0] = false; xrun[1] = false; } }; #if !defined(__RTAUDIO_DEBUG__) static void jackSilentError( const char * ) {}; #endif RtApiJack :: RtApiJack() :shouldAutoconnect_(true) { // Nothing to do here. #if !defined(__RTAUDIO_DEBUG__) // Turn off Jack's internal error reporting. jack_set_error_function( &jackSilentError ); #endif } RtApiJack :: ~RtApiJack() { if ( stream_.state != STREAM_CLOSED ) closeStream(); } unsigned int RtApiJack :: getDeviceCount( void ) { // See if we can become a jack client. jack_options_t options = (jack_options_t) ( JackNoStartServer ); //JackNullOption; jack_status_t *status = NULL; jack_client_t *client = jack_client_open( "RtApiJackCount", options, status ); if ( client == 0 ) return 0; const char **ports; std::string port, previousPort; unsigned int nChannels = 0, nDevices = 0; ports = jack_get_ports( client, NULL, NULL, 0 ); if ( ports ) { // Parse the port names up to the first colon (:). size_t iColon = 0; do { port = (char *) ports[ nChannels ]; iColon = port.find(":"); if ( iColon != std::string::npos ) { port = port.substr( 0, iColon + 1 ); if ( port != previousPort ) { nDevices++; previousPort = port; } } } while ( ports[++nChannels] ); free( ports ); } jack_client_close( client ); return nDevices; } RtAudio::DeviceInfo RtApiJack :: getDeviceInfo( unsigned int device ) { RtAudio::DeviceInfo info; info.probed = false; jack_options_t options = (jack_options_t) ( JackNoStartServer ); //JackNullOption jack_status_t *status = NULL; jack_client_t *client = jack_client_open( "RtApiJackInfo", options, status ); if ( client == 0 ) { errorText_ = "RtApiJack::getDeviceInfo: Jack server not found or connection error!"; error( RtAudioError::WARNING ); return info; } const char **ports; std::string port, previousPort; unsigned int nPorts = 0, nDevices = 0; ports = jack_get_ports( client, NULL, NULL, 0 ); if ( ports ) { // Parse the port names up to the first colon (:). size_t iColon = 0; do { port = (char *) ports[ nPorts ]; iColon = port.find(":"); if ( iColon != std::string::npos ) { port = port.substr( 0, iColon ); if ( port != previousPort ) { if ( nDevices == device ) info.name = port; nDevices++; previousPort = port; } } } while ( ports[++nPorts] ); free( ports ); } if ( device >= nDevices ) { jack_client_close( client ); errorText_ = "RtApiJack::getDeviceInfo: device ID is invalid!"; error( RtAudioError::INVALID_USE ); return info; } // Get the current jack server sample rate. info.sampleRates.clear(); info.preferredSampleRate = jack_get_sample_rate( client ); info.sampleRates.push_back( info.preferredSampleRate ); // Count the available ports containing the client name as device // channels. Jack "input ports" equal RtAudio output channels. unsigned int nChannels = 0; ports = jack_get_ports( client, info.name.c_str(), NULL, JackPortIsInput ); if ( ports ) { while ( ports[ nChannels ] ) nChannels++; free( ports ); info.outputChannels = nChannels; } // Jack "output ports" equal RtAudio input channels. nChannels = 0; ports = jack_get_ports( client, info.name.c_str(), NULL, JackPortIsOutput ); if ( ports ) { while ( ports[ nChannels ] ) nChannels++; free( ports ); info.inputChannels = nChannels; } if ( info.outputChannels == 0 && info.inputChannels == 0 ) { jack_client_close(client); errorText_ = "RtApiJack::getDeviceInfo: error determining Jack input/output channels!"; error( RtAudioError::WARNING ); return info; } // If device opens for both playback and capture, we determine the channels. if ( info.outputChannels > 0 && info.inputChannels > 0 ) info.duplexChannels = (info.outputChannels > info.inputChannels) ? info.inputChannels : info.outputChannels; // Jack always uses 32-bit floats. info.nativeFormats = RTAUDIO_FLOAT32; // Jack doesn't provide default devices so we'll use the first available one. if ( device == 0 && info.outputChannels > 0 ) info.isDefaultOutput = true; if ( device == 0 && info.inputChannels > 0 ) info.isDefaultInput = true; jack_client_close(client); info.probed = true; return info; } static int jackCallbackHandler( jack_nframes_t nframes, void *infoPointer ) { CallbackInfo *info = (CallbackInfo *) infoPointer; RtApiJack *object = (RtApiJack *) info->object; if ( object->callbackEvent( (unsigned long) nframes ) == false ) return 1; return 0; } // This function will be called by a spawned thread when the Jack // server signals that it is shutting down. It is necessary to handle // it this way because the jackShutdown() function must return before // the jack_deactivate() function (in closeStream()) will return. static void *jackCloseStream( void *ptr ) { CallbackInfo *info = (CallbackInfo *) ptr; RtApiJack *object = (RtApiJack *) info->object; object->closeStream(); pthread_exit( NULL ); } static void jackShutdown( void *infoPointer ) { CallbackInfo *info = (CallbackInfo *) infoPointer; RtApiJack *object = (RtApiJack *) info->object; // Check current stream state. If stopped, then we'll assume this // was called as a result of a call to RtApiJack::stopStream (the // deactivation of a client handle causes this function to be called). // If not, we'll assume the Jack server is shutting down or some // other problem occurred and we should close the stream. if ( object->isStreamRunning() == false ) return; ThreadHandle threadId; pthread_create( &threadId, NULL, jackCloseStream, info ); std::cerr << "\nRtApiJack: the Jack server is shutting down this client ... stream stopped and closed!!\n" << std::endl; } static int jackXrun( void *infoPointer ) { JackHandle *handle = *((JackHandle **) infoPointer); if ( handle->ports[0] ) handle->xrun[0] = true; if ( handle->ports[1] ) handle->xrun[1] = true; return 0; } bool RtApiJack :: probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int *bufferSize, RtAudio::StreamOptions *options ) { JackHandle *handle = (JackHandle *) stream_.apiHandle; // Look for jack server and try to become a client (only do once per stream). jack_client_t *client = 0; if ( mode == OUTPUT || ( mode == INPUT && stream_.mode != OUTPUT ) ) { jack_options_t jackoptions = (jack_options_t) ( JackNoStartServer ); //JackNullOption; jack_status_t *status = NULL; if ( options && !options->streamName.empty() ) client = jack_client_open( options->streamName.c_str(), jackoptions, status ); else client = jack_client_open( "RtApiJack", jackoptions, status ); if ( client == 0 ) { errorText_ = "RtApiJack::probeDeviceOpen: Jack server not found or connection error!"; error( RtAudioError::WARNING ); return FAILURE; } } else { // The handle must have been created on an earlier pass. client = handle->client; } const char **ports; std::string port, previousPort, deviceName; unsigned int nPorts = 0, nDevices = 0; ports = jack_get_ports( client, NULL, NULL, 0 ); if ( ports ) { // Parse the port names up to the first colon (:). size_t iColon = 0; do { port = (char *) ports[ nPorts ]; iColon = port.find(":"); if ( iColon != std::string::npos ) { port = port.substr( 0, iColon ); if ( port != previousPort ) { if ( nDevices == device ) deviceName = port; nDevices++; previousPort = port; } } } while ( ports[++nPorts] ); free( ports ); } if ( device >= nDevices ) { errorText_ = "RtApiJack::probeDeviceOpen: device ID is invalid!"; return FAILURE; } // Count the available ports containing the client name as device // channels. Jack "input ports" equal RtAudio output channels. unsigned int nChannels = 0; unsigned long flag = JackPortIsInput; if ( mode == INPUT ) flag = JackPortIsOutput; ports = jack_get_ports( client, deviceName.c_str(), NULL, flag ); if ( ports ) { while ( ports[ nChannels ] ) nChannels++; free( ports ); } // Compare the jack ports for specified client to the requested number of channels. if ( nChannels < (channels + firstChannel) ) { errorStream_ << "RtApiJack::probeDeviceOpen: requested number of channels (" << channels << ") + offset (" << firstChannel << ") not found for specified device (" << device << ":" << deviceName << ")."; errorText_ = errorStream_.str(); return FAILURE; } // Check the jack server sample rate. unsigned int jackRate = jack_get_sample_rate( client ); if ( sampleRate != jackRate ) { jack_client_close( client ); errorStream_ << "RtApiJack::probeDeviceOpen: the requested sample rate (" << sampleRate << ") is different than the JACK server rate (" << jackRate << ")."; errorText_ = errorStream_.str(); return FAILURE; } stream_.sampleRate = jackRate; // Get the latency of the JACK port. ports = jack_get_ports( client, deviceName.c_str(), NULL, flag ); if ( ports[ firstChannel ] ) { // Added by Ge Wang jack_latency_callback_mode_t cbmode = (mode == INPUT ? JackCaptureLatency : JackPlaybackLatency); // the range (usually the min and max are equal) jack_latency_range_t latrange; latrange.min = latrange.max = 0; // get the latency range jack_port_get_latency_range( jack_port_by_name( client, ports[firstChannel] ), cbmode, &latrange ); // be optimistic, use the min! stream_.latency[mode] = latrange.min; //stream_.latency[mode] = jack_port_get_latency( jack_port_by_name( client, ports[ firstChannel ] ) ); } free( ports ); // The jack server always uses 32-bit floating-point data. stream_.deviceFormat[mode] = RTAUDIO_FLOAT32; stream_.userFormat = format; if ( options && options->flags & RTAUDIO_NONINTERLEAVED ) stream_.userInterleaved = false; else stream_.userInterleaved = true; // Jack always uses non-interleaved buffers. stream_.deviceInterleaved[mode] = false; // Jack always provides host byte-ordered data. stream_.doByteSwap[mode] = false; // Get the buffer size. The buffer size and number of buffers // (periods) is set when the jack server is started. stream_.bufferSize = (int) jack_get_buffer_size( client ); *bufferSize = stream_.bufferSize; stream_.nDeviceChannels[mode] = channels; stream_.nUserChannels[mode] = channels; // Set flags for buffer conversion. stream_.doConvertBuffer[mode] = false; if ( stream_.userFormat != stream_.deviceFormat[mode] ) stream_.doConvertBuffer[mode] = true; if ( stream_.userInterleaved != stream_.deviceInterleaved[mode] && stream_.nUserChannels[mode] > 1 ) stream_.doConvertBuffer[mode] = true; // Allocate our JackHandle structure for the stream. if ( handle == 0 ) { try { handle = new JackHandle; } catch ( std::bad_alloc& ) { errorText_ = "RtApiJack::probeDeviceOpen: error allocating JackHandle memory."; goto error; } if ( pthread_cond_init(&handle->condition, NULL) ) { errorText_ = "RtApiJack::probeDeviceOpen: error initializing pthread condition variable."; goto error; } stream_.apiHandle = (void *) handle; handle->client = client; } handle->deviceName[mode] = deviceName; // Allocate necessary internal buffers. unsigned long bufferBytes; bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat ); stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 ); if ( stream_.userBuffer[mode] == NULL ) { errorText_ = "RtApiJack::probeDeviceOpen: error allocating user buffer memory."; goto error; } if ( stream_.doConvertBuffer[mode] ) { bool makeBuffer = true; if ( mode == OUTPUT ) bufferBytes = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] ); else { // mode == INPUT bufferBytes = stream_.nDeviceChannels[1] * formatBytes( stream_.deviceFormat[1] ); if ( stream_.mode == OUTPUT && stream_.deviceBuffer ) { unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes(stream_.deviceFormat[0]); if ( bufferBytes < bytesOut ) makeBuffer = false; } } if ( makeBuffer ) { bufferBytes *= *bufferSize; if ( stream_.deviceBuffer ) free( stream_.deviceBuffer ); stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 ); if ( stream_.deviceBuffer == NULL ) { errorText_ = "RtApiJack::probeDeviceOpen: error allocating device buffer memory."; goto error; } } } // Allocate memory for the Jack ports (channels) identifiers. handle->ports[mode] = (jack_port_t **) malloc ( sizeof (jack_port_t *) * channels ); if ( handle->ports[mode] == NULL ) { errorText_ = "RtApiJack::probeDeviceOpen: error allocating port memory."; goto error; } stream_.device[mode] = device; stream_.channelOffset[mode] = firstChannel; stream_.state = STREAM_STOPPED; stream_.callbackInfo.object = (void *) this; if ( stream_.mode == OUTPUT && mode == INPUT ) // We had already set up the stream for output. stream_.mode = DUPLEX; else { stream_.mode = mode; jack_set_process_callback( handle->client, jackCallbackHandler, (void *) &stream_.callbackInfo ); jack_set_xrun_callback( handle->client, jackXrun, (void *) &stream_.apiHandle ); jack_on_shutdown( handle->client, jackShutdown, (void *) &stream_.callbackInfo ); } // Register our ports. char label[64]; if ( mode == OUTPUT ) { for ( unsigned int i=0; iports[0][i] = jack_port_register( handle->client, (const char *)label, JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0 ); } } else { for ( unsigned int i=0; iports[1][i] = jack_port_register( handle->client, (const char *)label, JACK_DEFAULT_AUDIO_TYPE, JackPortIsInput, 0 ); } } // Setup the buffer conversion information structure. We don't use // buffers to do channel offsets, so we override that parameter // here. if ( stream_.doConvertBuffer[mode] ) setConvertInfo( mode, 0 ); if ( options && options->flags & RTAUDIO_JACK_DONT_CONNECT ) shouldAutoconnect_ = false; return SUCCESS; error: if ( handle ) { pthread_cond_destroy( &handle->condition ); jack_client_close( handle->client ); if ( handle->ports[0] ) free( handle->ports[0] ); if ( handle->ports[1] ) free( handle->ports[1] ); delete handle; stream_.apiHandle = 0; } for ( int i=0; i<2; i++ ) { if ( stream_.userBuffer[i] ) { free( stream_.userBuffer[i] ); stream_.userBuffer[i] = 0; } } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } return FAILURE; } void RtApiJack :: closeStream( void ) { if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiJack::closeStream(): no open stream to close!"; error( RtAudioError::WARNING ); return; } JackHandle *handle = (JackHandle *) stream_.apiHandle; if ( handle ) { if ( stream_.state == STREAM_RUNNING ) jack_deactivate( handle->client ); jack_client_close( handle->client ); } if ( handle ) { if ( handle->ports[0] ) free( handle->ports[0] ); if ( handle->ports[1] ) free( handle->ports[1] ); pthread_cond_destroy( &handle->condition ); delete handle; stream_.apiHandle = 0; } for ( int i=0; i<2; i++ ) { if ( stream_.userBuffer[i] ) { free( stream_.userBuffer[i] ); stream_.userBuffer[i] = 0; } } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } stream_.mode = UNINITIALIZED; stream_.state = STREAM_CLOSED; } void RtApiJack :: startStream( void ) { verifyStream(); if ( stream_.state == STREAM_RUNNING ) { errorText_ = "RtApiJack::startStream(): the stream is already running!"; error( RtAudioError::WARNING ); return; } JackHandle *handle = (JackHandle *) stream_.apiHandle; int result = jack_activate( handle->client ); if ( result ) { errorText_ = "RtApiJack::startStream(): unable to activate JACK client!"; goto unlock; } const char **ports; // Get the list of available ports. if ( shouldAutoconnect_ && (stream_.mode == OUTPUT || stream_.mode == DUPLEX) ) { result = 1; ports = jack_get_ports( handle->client, handle->deviceName[0].c_str(), NULL, JackPortIsInput); if ( ports == NULL) { errorText_ = "RtApiJack::startStream(): error determining available JACK input ports!"; goto unlock; } // Now make the port connections. Since RtAudio wasn't designed to // allow the user to select particular channels of a device, we'll // just open the first "nChannels" ports with offset. for ( unsigned int i=0; iclient, jack_port_name( handle->ports[0][i] ), ports[ stream_.channelOffset[0] + i ] ); if ( result ) { free( ports ); errorText_ = "RtApiJack::startStream(): error connecting output ports!"; goto unlock; } } free(ports); } if ( shouldAutoconnect_ && (stream_.mode == INPUT || stream_.mode == DUPLEX) ) { result = 1; ports = jack_get_ports( handle->client, handle->deviceName[1].c_str(), NULL, JackPortIsOutput ); if ( ports == NULL) { errorText_ = "RtApiJack::startStream(): error determining available JACK output ports!"; goto unlock; } // Now make the port connections. See note above. for ( unsigned int i=0; iclient, ports[ stream_.channelOffset[1] + i ], jack_port_name( handle->ports[1][i] ) ); if ( result ) { free( ports ); errorText_ = "RtApiJack::startStream(): error connecting input ports!"; goto unlock; } } free(ports); } handle->drainCounter = 0; handle->internalDrain = false; stream_.state = STREAM_RUNNING; unlock: if ( result == 0 ) return; error( RtAudioError::SYSTEM_ERROR ); } void RtApiJack :: stopStream( void ) { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiJack::stopStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } JackHandle *handle = (JackHandle *) stream_.apiHandle; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { if ( handle->drainCounter == 0 ) { handle->drainCounter = 2; pthread_cond_wait( &handle->condition, &stream_.mutex ); // block until signaled } } jack_deactivate( handle->client ); stream_.state = STREAM_STOPPED; } void RtApiJack :: abortStream( void ) { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiJack::abortStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } JackHandle *handle = (JackHandle *) stream_.apiHandle; handle->drainCounter = 2; stopStream(); } // This function will be called by a spawned thread when the user // callback function signals that the stream should be stopped or // aborted. It is necessary to handle it this way because the // callbackEvent() function must return before the jack_deactivate() // function will return. static void *jackStopStream( void *ptr ) { CallbackInfo *info = (CallbackInfo *) ptr; RtApiJack *object = (RtApiJack *) info->object; object->stopStream(); pthread_exit( NULL ); } bool RtApiJack :: callbackEvent( unsigned long nframes ) { if ( stream_.state == STREAM_STOPPED || stream_.state == STREAM_STOPPING ) return SUCCESS; if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiCore::callbackEvent(): the stream is closed ... this shouldn't happen!"; error( RtAudioError::WARNING ); return FAILURE; } if ( stream_.bufferSize != nframes ) { errorText_ = "RtApiCore::callbackEvent(): the JACK buffer size has changed ... cannot process!"; error( RtAudioError::WARNING ); return FAILURE; } CallbackInfo *info = (CallbackInfo *) &stream_.callbackInfo; JackHandle *handle = (JackHandle *) stream_.apiHandle; // Check if we were draining the stream and signal is finished. if ( handle->drainCounter > 3 ) { ThreadHandle threadId; stream_.state = STREAM_STOPPING; if ( handle->internalDrain == true ) pthread_create( &threadId, NULL, jackStopStream, info ); else pthread_cond_signal( &handle->condition ); return SUCCESS; } // Invoke user callback first, to get fresh output data. if ( handle->drainCounter == 0 ) { RtAudioCallback callback = (RtAudioCallback) info->callback; double streamTime = getStreamTime(); RtAudioStreamStatus status = 0; if ( stream_.mode != INPUT && handle->xrun[0] == true ) { status |= RTAUDIO_OUTPUT_UNDERFLOW; handle->xrun[0] = false; } if ( stream_.mode != OUTPUT && handle->xrun[1] == true ) { status |= RTAUDIO_INPUT_OVERFLOW; handle->xrun[1] = false; } int cbReturnValue = callback( stream_.userBuffer[0], stream_.userBuffer[1], stream_.bufferSize, streamTime, status, info->userData ); if ( cbReturnValue == 2 ) { stream_.state = STREAM_STOPPING; handle->drainCounter = 2; ThreadHandle id; pthread_create( &id, NULL, jackStopStream, info ); return SUCCESS; } else if ( cbReturnValue == 1 ) { handle->drainCounter = 1; handle->internalDrain = true; } } jack_default_audio_sample_t *jackbuffer; unsigned long bufferBytes = nframes * sizeof( jack_default_audio_sample_t ); if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { if ( handle->drainCounter > 1 ) { // write zeros to the output stream for ( unsigned int i=0; iports[0][i], (jack_nframes_t) nframes ); memset( jackbuffer, 0, bufferBytes ); } } else if ( stream_.doConvertBuffer[0] ) { convertBuffer( stream_.deviceBuffer, stream_.userBuffer[0], stream_.convertInfo[0] ); for ( unsigned int i=0; iports[0][i], (jack_nframes_t) nframes ); memcpy( jackbuffer, &stream_.deviceBuffer[i*bufferBytes], bufferBytes ); } } else { // no buffer conversion for ( unsigned int i=0; iports[0][i], (jack_nframes_t) nframes ); memcpy( jackbuffer, &stream_.userBuffer[0][i*bufferBytes], bufferBytes ); } } } // Don't bother draining input if ( handle->drainCounter ) { handle->drainCounter++; goto unlock; } if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) { if ( stream_.doConvertBuffer[1] ) { for ( unsigned int i=0; iports[1][i], (jack_nframes_t) nframes ); memcpy( &stream_.deviceBuffer[i*bufferBytes], jackbuffer, bufferBytes ); } convertBuffer( stream_.userBuffer[1], stream_.deviceBuffer, stream_.convertInfo[1] ); } else { // no buffer conversion for ( unsigned int i=0; iports[1][i], (jack_nframes_t) nframes ); memcpy( &stream_.userBuffer[1][i*bufferBytes], jackbuffer, bufferBytes ); } } } unlock: RtApi::tickStreamTime(); return SUCCESS; } //******************** End of __UNIX_JACK__ *********************// #endif #if defined(__WINDOWS_ASIO__) // ASIO API on Windows // The ASIO API is designed around a callback scheme, so this // implementation is similar to that used for OS-X CoreAudio and Linux // Jack. The primary constraint with ASIO is that it only allows // access to a single driver at a time. Thus, it is not possible to // have more than one simultaneous RtAudio stream. // // This implementation also requires a number of external ASIO files // and a few global variables. The ASIO callback scheme does not // allow for the passing of user data, so we must create a global // pointer to our callbackInfo structure. // // On unix systems, we make use of a pthread condition variable. // Since there is no equivalent in Windows, I hacked something based // on information found in // http://www.cs.wustl.edu/~schmidt/win32-cv-1.html. #include "asiosys.h" #include "asio.h" #include "iasiothiscallresolver.h" #include "asiodrivers.h" #include static AsioDrivers drivers; static ASIOCallbacks asioCallbacks; static ASIODriverInfo driverInfo; static CallbackInfo *asioCallbackInfo; static bool asioXRun; struct AsioHandle { int drainCounter; // Tracks callback counts when draining bool internalDrain; // Indicates if stop is initiated from callback or not. ASIOBufferInfo *bufferInfos; HANDLE condition; AsioHandle() :drainCounter(0), internalDrain(false), bufferInfos(0) {} }; // Function declarations (definitions at end of section) static const char* getAsioErrorString( ASIOError result ); static void sampleRateChanged( ASIOSampleRate sRate ); static long asioMessages( long selector, long value, void* message, double* opt ); RtApiAsio :: RtApiAsio() { // ASIO cannot run on a multi-threaded appartment. You can call // CoInitialize beforehand, but it must be for appartment threading // (in which case, CoInitilialize will return S_FALSE here). coInitialized_ = false; HRESULT hr = CoInitialize( NULL ); if ( FAILED(hr) ) { errorText_ = "RtApiAsio::ASIO requires a single-threaded appartment. Call CoInitializeEx(0,COINIT_APARTMENTTHREADED)"; error( RtAudioError::WARNING ); } coInitialized_ = true; drivers.removeCurrentDriver(); driverInfo.asioVersion = 2; // See note in DirectSound implementation about GetDesktopWindow(). driverInfo.sysRef = GetForegroundWindow(); } RtApiAsio :: ~RtApiAsio() { if ( stream_.state != STREAM_CLOSED ) closeStream(); if ( coInitialized_ ) CoUninitialize(); } unsigned int RtApiAsio :: getDeviceCount( void ) { return (unsigned int) drivers.asioGetNumDev(); } RtAudio::DeviceInfo RtApiAsio :: getDeviceInfo( unsigned int device ) { RtAudio::DeviceInfo info; info.probed = false; // Get device ID unsigned int nDevices = getDeviceCount(); if ( nDevices == 0 ) { errorText_ = "RtApiAsio::getDeviceInfo: no devices found!"; error( RtAudioError::INVALID_USE ); return info; } if ( device >= nDevices ) { errorText_ = "RtApiAsio::getDeviceInfo: device ID is invalid!"; error( RtAudioError::INVALID_USE ); return info; } // If a stream is already open, we cannot probe other devices. Thus, use the saved results. if ( stream_.state != STREAM_CLOSED ) { if ( device >= devices_.size() ) { errorText_ = "RtApiAsio::getDeviceInfo: device ID was not present before stream was opened."; error( RtAudioError::WARNING ); return info; } return devices_[ device ]; } char driverName[32]; ASIOError result = drivers.asioGetDriverName( (int) device, driverName, 32 ); if ( result != ASE_OK ) { errorStream_ << "RtApiAsio::getDeviceInfo: unable to get driver name (" << getAsioErrorString( result ) << ")."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } info.name = driverName; if ( !drivers.loadDriver( driverName ) ) { errorStream_ << "RtApiAsio::getDeviceInfo: unable to load driver (" << driverName << ")."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } result = ASIOInit( &driverInfo ); if ( result != ASE_OK ) { errorStream_ << "RtApiAsio::getDeviceInfo: error (" << getAsioErrorString( result ) << ") initializing driver (" << driverName << ")."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // Determine the device channel information. long inputChannels, outputChannels; result = ASIOGetChannels( &inputChannels, &outputChannels ); if ( result != ASE_OK ) { drivers.removeCurrentDriver(); errorStream_ << "RtApiAsio::getDeviceInfo: error (" << getAsioErrorString( result ) << ") getting channel count (" << driverName << ")."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } info.outputChannels = outputChannels; info.inputChannels = inputChannels; if ( info.outputChannels > 0 && info.inputChannels > 0 ) info.duplexChannels = (info.outputChannels > info.inputChannels) ? info.inputChannels : info.outputChannels; // Determine the supported sample rates. info.sampleRates.clear(); for ( unsigned int i=0; i info.preferredSampleRate ) ) info.preferredSampleRate = SAMPLE_RATES[i]; } } // Determine supported data types ... just check first channel and assume rest are the same. ASIOChannelInfo channelInfo; channelInfo.channel = 0; channelInfo.isInput = true; if ( info.inputChannels <= 0 ) channelInfo.isInput = false; result = ASIOGetChannelInfo( &channelInfo ); if ( result != ASE_OK ) { drivers.removeCurrentDriver(); errorStream_ << "RtApiAsio::getDeviceInfo: error (" << getAsioErrorString( result ) << ") getting driver channel info (" << driverName << ")."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } info.nativeFormats = 0; if ( channelInfo.type == ASIOSTInt16MSB || channelInfo.type == ASIOSTInt16LSB ) info.nativeFormats |= RTAUDIO_SINT16; else if ( channelInfo.type == ASIOSTInt32MSB || channelInfo.type == ASIOSTInt32LSB ) info.nativeFormats |= RTAUDIO_SINT32; else if ( channelInfo.type == ASIOSTFloat32MSB || channelInfo.type == ASIOSTFloat32LSB ) info.nativeFormats |= RTAUDIO_FLOAT32; else if ( channelInfo.type == ASIOSTFloat64MSB || channelInfo.type == ASIOSTFloat64LSB ) info.nativeFormats |= RTAUDIO_FLOAT64; else if ( channelInfo.type == ASIOSTInt24MSB || channelInfo.type == ASIOSTInt24LSB ) info.nativeFormats |= RTAUDIO_SINT24; if ( info.outputChannels > 0 ) if ( getDefaultOutputDevice() == device ) info.isDefaultOutput = true; if ( info.inputChannels > 0 ) if ( getDefaultInputDevice() == device ) info.isDefaultInput = true; info.probed = true; drivers.removeCurrentDriver(); return info; } static void bufferSwitch( long index, ASIOBool /*processNow*/ ) { RtApiAsio *object = (RtApiAsio *) asioCallbackInfo->object; object->callbackEvent( index ); } void RtApiAsio :: saveDeviceInfo( void ) { devices_.clear(); unsigned int nDevices = getDeviceCount(); devices_.resize( nDevices ); for ( unsigned int i=0; isaveDeviceInfo(); if ( !drivers.loadDriver( driverName ) ) { errorStream_ << "RtApiAsio::probeDeviceOpen: unable to load driver (" << driverName << ")."; errorText_ = errorStream_.str(); return FAILURE; } result = ASIOInit( &driverInfo ); if ( result != ASE_OK ) { errorStream_ << "RtApiAsio::probeDeviceOpen: error (" << getAsioErrorString( result ) << ") initializing driver (" << driverName << ")."; errorText_ = errorStream_.str(); return FAILURE; } } // keep them before any "goto error", they are used for error cleanup + goto device boundary checks bool buffersAllocated = false; AsioHandle *handle = (AsioHandle *) stream_.apiHandle; unsigned int nChannels; // Check the device channel count. long inputChannels, outputChannels; result = ASIOGetChannels( &inputChannels, &outputChannels ); if ( result != ASE_OK ) { errorStream_ << "RtApiAsio::probeDeviceOpen: error (" << getAsioErrorString( result ) << ") getting channel count (" << driverName << ")."; errorText_ = errorStream_.str(); goto error; } if ( ( mode == OUTPUT && (channels+firstChannel) > (unsigned int) outputChannels) || ( mode == INPUT && (channels+firstChannel) > (unsigned int) inputChannels) ) { errorStream_ << "RtApiAsio::probeDeviceOpen: driver (" << driverName << ") does not support requested channel count (" << channels << ") + offset (" << firstChannel << ")."; errorText_ = errorStream_.str(); goto error; } stream_.nDeviceChannels[mode] = channels; stream_.nUserChannels[mode] = channels; stream_.channelOffset[mode] = firstChannel; // Verify the sample rate is supported. result = ASIOCanSampleRate( (ASIOSampleRate) sampleRate ); if ( result != ASE_OK ) { errorStream_ << "RtApiAsio::probeDeviceOpen: driver (" << driverName << ") does not support requested sample rate (" << sampleRate << ")."; errorText_ = errorStream_.str(); goto error; } // Get the current sample rate ASIOSampleRate currentRate; result = ASIOGetSampleRate( ¤tRate ); if ( result != ASE_OK ) { errorStream_ << "RtApiAsio::probeDeviceOpen: driver (" << driverName << ") error getting sample rate."; errorText_ = errorStream_.str(); goto error; } // Set the sample rate only if necessary if ( currentRate != sampleRate ) { result = ASIOSetSampleRate( (ASIOSampleRate) sampleRate ); if ( result != ASE_OK ) { errorStream_ << "RtApiAsio::probeDeviceOpen: driver (" << driverName << ") error setting sample rate (" << sampleRate << ")."; errorText_ = errorStream_.str(); goto error; } } // Determine the driver data type. ASIOChannelInfo channelInfo; channelInfo.channel = 0; if ( mode == OUTPUT ) channelInfo.isInput = false; else channelInfo.isInput = true; result = ASIOGetChannelInfo( &channelInfo ); if ( result != ASE_OK ) { errorStream_ << "RtApiAsio::probeDeviceOpen: driver (" << driverName << ") error (" << getAsioErrorString( result ) << ") getting data format."; errorText_ = errorStream_.str(); goto error; } // Assuming WINDOWS host is always little-endian. stream_.doByteSwap[mode] = false; stream_.userFormat = format; stream_.deviceFormat[mode] = 0; if ( channelInfo.type == ASIOSTInt16MSB || channelInfo.type == ASIOSTInt16LSB ) { stream_.deviceFormat[mode] = RTAUDIO_SINT16; if ( channelInfo.type == ASIOSTInt16MSB ) stream_.doByteSwap[mode] = true; } else if ( channelInfo.type == ASIOSTInt32MSB || channelInfo.type == ASIOSTInt32LSB ) { stream_.deviceFormat[mode] = RTAUDIO_SINT32; if ( channelInfo.type == ASIOSTInt32MSB ) stream_.doByteSwap[mode] = true; } else if ( channelInfo.type == ASIOSTFloat32MSB || channelInfo.type == ASIOSTFloat32LSB ) { stream_.deviceFormat[mode] = RTAUDIO_FLOAT32; if ( channelInfo.type == ASIOSTFloat32MSB ) stream_.doByteSwap[mode] = true; } else if ( channelInfo.type == ASIOSTFloat64MSB || channelInfo.type == ASIOSTFloat64LSB ) { stream_.deviceFormat[mode] = RTAUDIO_FLOAT64; if ( channelInfo.type == ASIOSTFloat64MSB ) stream_.doByteSwap[mode] = true; } else if ( channelInfo.type == ASIOSTInt24MSB || channelInfo.type == ASIOSTInt24LSB ) { stream_.deviceFormat[mode] = RTAUDIO_SINT24; if ( channelInfo.type == ASIOSTInt24MSB ) stream_.doByteSwap[mode] = true; } if ( stream_.deviceFormat[mode] == 0 ) { errorStream_ << "RtApiAsio::probeDeviceOpen: driver (" << driverName << ") data format not supported by RtAudio."; errorText_ = errorStream_.str(); goto error; } // Set the buffer size. For a duplex stream, this will end up // setting the buffer size based on the input constraints, which // should be ok. long minSize, maxSize, preferSize, granularity; result = ASIOGetBufferSize( &minSize, &maxSize, &preferSize, &granularity ); if ( result != ASE_OK ) { errorStream_ << "RtApiAsio::probeDeviceOpen: driver (" << driverName << ") error (" << getAsioErrorString( result ) << ") getting buffer size."; errorText_ = errorStream_.str(); goto error; } if ( isDuplexInput ) { // When this is the duplex input (output was opened before), then we have to use the same // buffersize as the output, because it might use the preferred buffer size, which most // likely wasn't passed as input to this. The buffer sizes have to be identically anyway, // So instead of throwing an error, make them equal. The caller uses the reference // to the "bufferSize" param as usual to set up processing buffers. *bufferSize = stream_.bufferSize; } else { if ( *bufferSize == 0 ) *bufferSize = preferSize; else if ( *bufferSize < (unsigned int) minSize ) *bufferSize = (unsigned int) minSize; else if ( *bufferSize > (unsigned int) maxSize ) *bufferSize = (unsigned int) maxSize; else if ( granularity == -1 ) { // Make sure bufferSize is a power of two. int log2_of_min_size = 0; int log2_of_max_size = 0; for ( unsigned int i = 0; i < sizeof(long) * 8; i++ ) { if ( minSize & ((long)1 << i) ) log2_of_min_size = i; if ( maxSize & ((long)1 << i) ) log2_of_max_size = i; } long min_delta = std::abs( (long)*bufferSize - ((long)1 << log2_of_min_size) ); int min_delta_num = log2_of_min_size; for (int i = log2_of_min_size + 1; i <= log2_of_max_size; i++) { long current_delta = std::abs( (long)*bufferSize - ((long)1 << i) ); if (current_delta < min_delta) { min_delta = current_delta; min_delta_num = i; } } *bufferSize = ( (unsigned int)1 << min_delta_num ); if ( *bufferSize < (unsigned int) minSize ) *bufferSize = (unsigned int) minSize; else if ( *bufferSize > (unsigned int) maxSize ) *bufferSize = (unsigned int) maxSize; } else if ( granularity != 0 ) { // Set to an even multiple of granularity, rounding up. *bufferSize = (*bufferSize + granularity-1) / granularity * granularity; } } /* // we don't use it anymore, see above! // Just left it here for the case... if ( isDuplexInput && stream_.bufferSize != *bufferSize ) { errorText_ = "RtApiAsio::probeDeviceOpen: input/output buffersize discrepancy!"; goto error; } */ stream_.bufferSize = *bufferSize; stream_.nBuffers = 2; if ( options && options->flags & RTAUDIO_NONINTERLEAVED ) stream_.userInterleaved = false; else stream_.userInterleaved = true; // ASIO always uses non-interleaved buffers. stream_.deviceInterleaved[mode] = false; // Allocate, if necessary, our AsioHandle structure for the stream. if ( handle == 0 ) { try { handle = new AsioHandle; } catch ( std::bad_alloc& ) { errorText_ = "RtApiAsio::probeDeviceOpen: error allocating AsioHandle memory."; goto error; } handle->bufferInfos = 0; // Create a manual-reset event. handle->condition = CreateEvent( NULL, // no security TRUE, // manual-reset FALSE, // non-signaled initially NULL ); // unnamed stream_.apiHandle = (void *) handle; } // Create the ASIO internal buffers. Since RtAudio sets up input // and output separately, we'll have to dispose of previously // created output buffers for a duplex stream. if ( mode == INPUT && stream_.mode == OUTPUT ) { ASIODisposeBuffers(); if ( handle->bufferInfos ) free( handle->bufferInfos ); } // Allocate, initialize, and save the bufferInfos in our stream callbackInfo structure. unsigned int i; nChannels = stream_.nDeviceChannels[0] + stream_.nDeviceChannels[1]; handle->bufferInfos = (ASIOBufferInfo *) malloc( nChannels * sizeof(ASIOBufferInfo) ); if ( handle->bufferInfos == NULL ) { errorStream_ << "RtApiAsio::probeDeviceOpen: error allocating bufferInfo memory for driver (" << driverName << ")."; errorText_ = errorStream_.str(); goto error; } ASIOBufferInfo *infos; infos = handle->bufferInfos; for ( i=0; iisInput = ASIOFalse; infos->channelNum = i + stream_.channelOffset[0]; infos->buffers[0] = infos->buffers[1] = 0; } for ( i=0; iisInput = ASIOTrue; infos->channelNum = i + stream_.channelOffset[1]; infos->buffers[0] = infos->buffers[1] = 0; } // prepare for callbacks stream_.sampleRate = sampleRate; stream_.device[mode] = device; stream_.mode = isDuplexInput ? DUPLEX : mode; // store this class instance before registering callbacks, that are going to use it asioCallbackInfo = &stream_.callbackInfo; stream_.callbackInfo.object = (void *) this; // Set up the ASIO callback structure and create the ASIO data buffers. asioCallbacks.bufferSwitch = &bufferSwitch; asioCallbacks.sampleRateDidChange = &sampleRateChanged; asioCallbacks.asioMessage = &asioMessages; asioCallbacks.bufferSwitchTimeInfo = NULL; result = ASIOCreateBuffers( handle->bufferInfos, nChannels, stream_.bufferSize, &asioCallbacks ); if ( result != ASE_OK ) { // Standard method failed. This can happen with strict/misbehaving drivers that return valid buffer size ranges // but only accept the preferred buffer size as parameter for ASIOCreateBuffers. eg. Creatives ASIO driver // in that case, let's be naïve and try that instead *bufferSize = preferSize; stream_.bufferSize = *bufferSize; result = ASIOCreateBuffers( handle->bufferInfos, nChannels, stream_.bufferSize, &asioCallbacks ); } if ( result != ASE_OK ) { errorStream_ << "RtApiAsio::probeDeviceOpen: driver (" << driverName << ") error (" << getAsioErrorString( result ) << ") creating buffers."; errorText_ = errorStream_.str(); goto error; } buffersAllocated = true; stream_.state = STREAM_STOPPED; // Set flags for buffer conversion. stream_.doConvertBuffer[mode] = false; if ( stream_.userFormat != stream_.deviceFormat[mode] ) stream_.doConvertBuffer[mode] = true; if ( stream_.userInterleaved != stream_.deviceInterleaved[mode] && stream_.nUserChannels[mode] > 1 ) stream_.doConvertBuffer[mode] = true; // Allocate necessary internal buffers unsigned long bufferBytes; bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat ); stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 ); if ( stream_.userBuffer[mode] == NULL ) { errorText_ = "RtApiAsio::probeDeviceOpen: error allocating user buffer memory."; goto error; } if ( stream_.doConvertBuffer[mode] ) { bool makeBuffer = true; bufferBytes = stream_.nDeviceChannels[mode] * formatBytes( stream_.deviceFormat[mode] ); if ( isDuplexInput && stream_.deviceBuffer ) { unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] ); if ( bufferBytes <= bytesOut ) makeBuffer = false; } if ( makeBuffer ) { bufferBytes *= *bufferSize; if ( stream_.deviceBuffer ) free( stream_.deviceBuffer ); stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 ); if ( stream_.deviceBuffer == NULL ) { errorText_ = "RtApiAsio::probeDeviceOpen: error allocating device buffer memory."; goto error; } } } // Determine device latencies long inputLatency, outputLatency; result = ASIOGetLatencies( &inputLatency, &outputLatency ); if ( result != ASE_OK ) { errorStream_ << "RtApiAsio::probeDeviceOpen: driver (" << driverName << ") error (" << getAsioErrorString( result ) << ") getting latency."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING); // warn but don't fail } else { stream_.latency[0] = outputLatency; stream_.latency[1] = inputLatency; } // Setup the buffer conversion information structure. We don't use // buffers to do channel offsets, so we override that parameter // here. if ( stream_.doConvertBuffer[mode] ) setConvertInfo( mode, 0 ); return SUCCESS; error: if ( !isDuplexInput ) { // the cleanup for error in the duplex input, is done by RtApi::openStream // So we clean up for single channel only if ( buffersAllocated ) ASIODisposeBuffers(); drivers.removeCurrentDriver(); if ( handle ) { CloseHandle( handle->condition ); if ( handle->bufferInfos ) free( handle->bufferInfos ); delete handle; stream_.apiHandle = 0; } if ( stream_.userBuffer[mode] ) { free( stream_.userBuffer[mode] ); stream_.userBuffer[mode] = 0; } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } } return FAILURE; }//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void RtApiAsio :: closeStream() { if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiAsio::closeStream(): no open stream to close!"; error( RtAudioError::WARNING ); return; } if ( stream_.state == STREAM_RUNNING ) { stream_.state = STREAM_STOPPED; ASIOStop(); } ASIODisposeBuffers(); drivers.removeCurrentDriver(); AsioHandle *handle = (AsioHandle *) stream_.apiHandle; if ( handle ) { CloseHandle( handle->condition ); if ( handle->bufferInfos ) free( handle->bufferInfos ); delete handle; stream_.apiHandle = 0; } for ( int i=0; i<2; i++ ) { if ( stream_.userBuffer[i] ) { free( stream_.userBuffer[i] ); stream_.userBuffer[i] = 0; } } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } stream_.mode = UNINITIALIZED; stream_.state = STREAM_CLOSED; } bool stopThreadCalled = false; void RtApiAsio :: startStream() { verifyStream(); if ( stream_.state == STREAM_RUNNING ) { errorText_ = "RtApiAsio::startStream(): the stream is already running!"; error( RtAudioError::WARNING ); return; } AsioHandle *handle = (AsioHandle *) stream_.apiHandle; ASIOError result = ASIOStart(); if ( result != ASE_OK ) { errorStream_ << "RtApiAsio::startStream: error (" << getAsioErrorString( result ) << ") starting device."; errorText_ = errorStream_.str(); goto unlock; } handle->drainCounter = 0; handle->internalDrain = false; ResetEvent( handle->condition ); stream_.state = STREAM_RUNNING; asioXRun = false; unlock: stopThreadCalled = false; if ( result == ASE_OK ) return; error( RtAudioError::SYSTEM_ERROR ); } void RtApiAsio :: stopStream() { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiAsio::stopStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } AsioHandle *handle = (AsioHandle *) stream_.apiHandle; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { if ( handle->drainCounter == 0 ) { handle->drainCounter = 2; WaitForSingleObject( handle->condition, INFINITE ); // block until signaled } } stream_.state = STREAM_STOPPED; ASIOError result = ASIOStop(); if ( result != ASE_OK ) { errorStream_ << "RtApiAsio::stopStream: error (" << getAsioErrorString( result ) << ") stopping device."; errorText_ = errorStream_.str(); } if ( result == ASE_OK ) return; error( RtAudioError::SYSTEM_ERROR ); } void RtApiAsio :: abortStream() { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiAsio::abortStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } // The following lines were commented-out because some behavior was // noted where the device buffers need to be zeroed to avoid // continuing sound, even when the device buffers are completely // disposed. So now, calling abort is the same as calling stop. // AsioHandle *handle = (AsioHandle *) stream_.apiHandle; // handle->drainCounter = 2; stopStream(); } // This function will be called by a spawned thread when the user // callback function signals that the stream should be stopped or // aborted. It is necessary to handle it this way because the // callbackEvent() function must return before the ASIOStop() // function will return. static unsigned __stdcall asioStopStream( void *ptr ) { CallbackInfo *info = (CallbackInfo *) ptr; RtApiAsio *object = (RtApiAsio *) info->object; object->stopStream(); _endthreadex( 0 ); return 0; } bool RtApiAsio :: callbackEvent( long bufferIndex ) { if ( stream_.state == STREAM_STOPPED || stream_.state == STREAM_STOPPING ) return SUCCESS; if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiAsio::callbackEvent(): the stream is closed ... this shouldn't happen!"; error( RtAudioError::WARNING ); return FAILURE; } CallbackInfo *info = (CallbackInfo *) &stream_.callbackInfo; AsioHandle *handle = (AsioHandle *) stream_.apiHandle; // Check if we were draining the stream and signal if finished. if ( handle->drainCounter > 3 ) { stream_.state = STREAM_STOPPING; if ( handle->internalDrain == false ) SetEvent( handle->condition ); else { // spawn a thread to stop the stream unsigned threadId; stream_.callbackInfo.thread = _beginthreadex( NULL, 0, &asioStopStream, &stream_.callbackInfo, 0, &threadId ); } return SUCCESS; } // Invoke user callback to get fresh output data UNLESS we are // draining stream. if ( handle->drainCounter == 0 ) { RtAudioCallback callback = (RtAudioCallback) info->callback; double streamTime = getStreamTime(); RtAudioStreamStatus status = 0; if ( stream_.mode != INPUT && asioXRun == true ) { status |= RTAUDIO_OUTPUT_UNDERFLOW; asioXRun = false; } if ( stream_.mode != OUTPUT && asioXRun == true ) { status |= RTAUDIO_INPUT_OVERFLOW; asioXRun = false; } int cbReturnValue = callback( stream_.userBuffer[0], stream_.userBuffer[1], stream_.bufferSize, streamTime, status, info->userData ); if ( cbReturnValue == 2 ) { stream_.state = STREAM_STOPPING; handle->drainCounter = 2; unsigned threadId; stream_.callbackInfo.thread = _beginthreadex( NULL, 0, &asioStopStream, &stream_.callbackInfo, 0, &threadId ); return SUCCESS; } else if ( cbReturnValue == 1 ) { handle->drainCounter = 1; handle->internalDrain = true; } } unsigned int nChannels, bufferBytes, i, j; nChannels = stream_.nDeviceChannels[0] + stream_.nDeviceChannels[1]; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { bufferBytes = stream_.bufferSize * formatBytes( stream_.deviceFormat[0] ); if ( handle->drainCounter > 1 ) { // write zeros to the output stream for ( i=0, j=0; ibufferInfos[i].isInput != ASIOTrue ) memset( handle->bufferInfos[i].buffers[bufferIndex], 0, bufferBytes ); } } else if ( stream_.doConvertBuffer[0] ) { convertBuffer( stream_.deviceBuffer, stream_.userBuffer[0], stream_.convertInfo[0] ); if ( stream_.doByteSwap[0] ) byteSwapBuffer( stream_.deviceBuffer, stream_.bufferSize * stream_.nDeviceChannels[0], stream_.deviceFormat[0] ); for ( i=0, j=0; ibufferInfos[i].isInput != ASIOTrue ) memcpy( handle->bufferInfos[i].buffers[bufferIndex], &stream_.deviceBuffer[j++*bufferBytes], bufferBytes ); } } else { if ( stream_.doByteSwap[0] ) byteSwapBuffer( stream_.userBuffer[0], stream_.bufferSize * stream_.nUserChannels[0], stream_.userFormat ); for ( i=0, j=0; ibufferInfos[i].isInput != ASIOTrue ) memcpy( handle->bufferInfos[i].buffers[bufferIndex], &stream_.userBuffer[0][bufferBytes*j++], bufferBytes ); } } } // Don't bother draining input if ( handle->drainCounter ) { handle->drainCounter++; goto unlock; } if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) { bufferBytes = stream_.bufferSize * formatBytes(stream_.deviceFormat[1]); if (stream_.doConvertBuffer[1]) { // Always interleave ASIO input data. for ( i=0, j=0; ibufferInfos[i].isInput == ASIOTrue ) memcpy( &stream_.deviceBuffer[j++*bufferBytes], handle->bufferInfos[i].buffers[bufferIndex], bufferBytes ); } if ( stream_.doByteSwap[1] ) byteSwapBuffer( stream_.deviceBuffer, stream_.bufferSize * stream_.nDeviceChannels[1], stream_.deviceFormat[1] ); convertBuffer( stream_.userBuffer[1], stream_.deviceBuffer, stream_.convertInfo[1] ); } else { for ( i=0, j=0; ibufferInfos[i].isInput == ASIOTrue ) { memcpy( &stream_.userBuffer[1][bufferBytes*j++], handle->bufferInfos[i].buffers[bufferIndex], bufferBytes ); } } if ( stream_.doByteSwap[1] ) byteSwapBuffer( stream_.userBuffer[1], stream_.bufferSize * stream_.nUserChannels[1], stream_.userFormat ); } } unlock: // The following call was suggested by Malte Clasen. While the API // documentation indicates it should not be required, some device // drivers apparently do not function correctly without it. ASIOOutputReady(); RtApi::tickStreamTime(); return SUCCESS; } static void sampleRateChanged( ASIOSampleRate sRate ) { // The ASIO documentation says that this usually only happens during // external sync. Audio processing is not stopped by the driver, // actual sample rate might not have even changed, maybe only the // sample rate status of an AES/EBU or S/PDIF digital input at the // audio device. RtApi *object = (RtApi *) asioCallbackInfo->object; try { object->stopStream(); } catch ( RtAudioError &exception ) { std::cerr << "\nRtApiAsio: sampleRateChanged() error (" << exception.getMessage() << ")!\n" << std::endl; return; } std::cerr << "\nRtApiAsio: driver reports sample rate changed to " << sRate << " ... stream stopped!!!\n" << std::endl; } static long asioMessages( long selector, long value, void* /*message*/, double* /*opt*/ ) { long ret = 0; switch( selector ) { case kAsioSelectorSupported: if ( value == kAsioResetRequest || value == kAsioEngineVersion || value == kAsioResyncRequest || value == kAsioLatenciesChanged // The following three were added for ASIO 2.0, you don't // necessarily have to support them. || value == kAsioSupportsTimeInfo || value == kAsioSupportsTimeCode || value == kAsioSupportsInputMonitor) ret = 1L; break; case kAsioResetRequest: // Defer the task and perform the reset of the driver during the // next "safe" situation. You cannot reset the driver right now, // as this code is called from the driver. Reset the driver is // done by completely destruct is. I.e. ASIOStop(), // ASIODisposeBuffers(), Destruction Afterwards you initialize the // driver again. std::cerr << "\nRtApiAsio: driver reset requested!!!" << std::endl; ret = 1L; break; case kAsioResyncRequest: // This informs the application that the driver encountered some // non-fatal data loss. It is used for synchronization purposes // of different media. Added mainly to work around the Win16Mutex // problems in Windows 95/98 with the Windows Multimedia system, // which could lose data because the Mutex was held too long by // another thread. However a driver can issue it in other // situations, too. // std::cerr << "\nRtApiAsio: driver resync requested!!!" << std::endl; asioXRun = true; ret = 1L; break; case kAsioLatenciesChanged: // This will inform the host application that the drivers were // latencies changed. Beware, it this does not mean that the // buffer sizes have changed! You might need to update internal // delay data. std::cerr << "\nRtApiAsio: driver latency may have changed!!!" << std::endl; ret = 1L; break; case kAsioEngineVersion: // Return the supported ASIO version of the host application. If // a host application does not implement this selector, ASIO 1.0 // is assumed by the driver. ret = 2L; break; case kAsioSupportsTimeInfo: // Informs the driver whether the // asioCallbacks.bufferSwitchTimeInfo() callback is supported. // For compatibility with ASIO 1.0 drivers the host application // should always support the "old" bufferSwitch method, too. ret = 0; break; case kAsioSupportsTimeCode: // Informs the driver whether application is interested in time // code info. If an application does not need to know about time // code, the driver has less work to do. ret = 0; break; } return ret; } static const char* getAsioErrorString( ASIOError result ) { struct Messages { ASIOError value; const char*message; }; static const Messages m[] = { { ASE_NotPresent, "Hardware input or output is not present or available." }, { ASE_HWMalfunction, "Hardware is malfunctioning." }, { ASE_InvalidParameter, "Invalid input parameter." }, { ASE_InvalidMode, "Invalid mode." }, { ASE_SPNotAdvancing, "Sample position not advancing." }, { ASE_NoClock, "Sample clock or rate cannot be determined or is not present." }, { ASE_NoMemory, "Not enough memory to complete the request." } }; for ( unsigned int i = 0; i < sizeof(m)/sizeof(m[0]); ++i ) if ( m[i].value == result ) return m[i].message; return "Unknown error."; } //******************** End of __WINDOWS_ASIO__ *********************// #endif #if defined(__WINDOWS_WASAPI__) // Windows WASAPI API // Authored by Marcus Tomlinson , April 2014 // - Introduces support for the Windows WASAPI API // - Aims to deliver bit streams to and from hardware at the lowest possible latency, via the absolute minimum buffer sizes required // - Provides flexible stream configuration to an otherwise strict and inflexible WASAPI interface // - Includes automatic internal conversion of sample rate and buffer size between hardware and the user #ifndef INITGUID #define INITGUID #endif #include #include #include #include #include //============================================================================= #define SAFE_RELEASE( objectPtr )\ if ( objectPtr )\ {\ objectPtr->Release();\ objectPtr = NULL;\ } typedef HANDLE ( __stdcall *TAvSetMmThreadCharacteristicsPtr )( LPCWSTR TaskName, LPDWORD TaskIndex ); //----------------------------------------------------------------------------- // WASAPI dictates stream sample rate, format, channel count, and in some cases, buffer size. // Therefore we must perform all necessary conversions to user buffers in order to satisfy these // requirements. WasapiBuffer ring buffers are used between HwIn->UserIn and UserOut->HwOut to // provide intermediate storage for read / write synchronization. class WasapiBuffer { public: WasapiBuffer() : buffer_( NULL ), bufferSize_( 0 ), inIndex_( 0 ), outIndex_( 0 ) {} ~WasapiBuffer() { free( buffer_ ); } // sets the length of the internal ring buffer void setBufferSize( unsigned int bufferSize, unsigned int formatBytes ) { free( buffer_ ); buffer_ = ( char* ) calloc( bufferSize, formatBytes ); bufferSize_ = bufferSize; inIndex_ = 0; outIndex_ = 0; } // attempt to push a buffer into the ring buffer at the current "in" index bool pushBuffer( char* buffer, unsigned int bufferSize, RtAudioFormat format ) { if ( !buffer || // incoming buffer is NULL bufferSize == 0 || // incoming buffer has no data bufferSize > bufferSize_ ) // incoming buffer too large { return false; } unsigned int relOutIndex = outIndex_; unsigned int inIndexEnd = inIndex_ + bufferSize; if ( relOutIndex < inIndex_ && inIndexEnd >= bufferSize_ ) { relOutIndex += bufferSize_; } // "in" index can end on the "out" index but cannot begin at it if ( inIndex_ <= relOutIndex && inIndexEnd > relOutIndex ) { return false; // not enough space between "in" index and "out" index } // copy buffer from external to internal int fromZeroSize = inIndex_ + bufferSize - bufferSize_; fromZeroSize = fromZeroSize < 0 ? 0 : fromZeroSize; int fromInSize = bufferSize - fromZeroSize; switch( format ) { case RTAUDIO_SINT8: memcpy( &( ( char* ) buffer_ )[inIndex_], buffer, fromInSize * sizeof( char ) ); memcpy( buffer_, &( ( char* ) buffer )[fromInSize], fromZeroSize * sizeof( char ) ); break; case RTAUDIO_SINT16: memcpy( &( ( short* ) buffer_ )[inIndex_], buffer, fromInSize * sizeof( short ) ); memcpy( buffer_, &( ( short* ) buffer )[fromInSize], fromZeroSize * sizeof( short ) ); break; case RTAUDIO_SINT24: memcpy( &( ( S24* ) buffer_ )[inIndex_], buffer, fromInSize * sizeof( S24 ) ); memcpy( buffer_, &( ( S24* ) buffer )[fromInSize], fromZeroSize * sizeof( S24 ) ); break; case RTAUDIO_SINT32: memcpy( &( ( int* ) buffer_ )[inIndex_], buffer, fromInSize * sizeof( int ) ); memcpy( buffer_, &( ( int* ) buffer )[fromInSize], fromZeroSize * sizeof( int ) ); break; case RTAUDIO_FLOAT32: memcpy( &( ( float* ) buffer_ )[inIndex_], buffer, fromInSize * sizeof( float ) ); memcpy( buffer_, &( ( float* ) buffer )[fromInSize], fromZeroSize * sizeof( float ) ); break; case RTAUDIO_FLOAT64: memcpy( &( ( double* ) buffer_ )[inIndex_], buffer, fromInSize * sizeof( double ) ); memcpy( buffer_, &( ( double* ) buffer )[fromInSize], fromZeroSize * sizeof( double ) ); break; } // update "in" index inIndex_ += bufferSize; inIndex_ %= bufferSize_; return true; } // attempt to pull a buffer from the ring buffer from the current "out" index bool pullBuffer( char* buffer, unsigned int bufferSize, RtAudioFormat format ) { if ( !buffer || // incoming buffer is NULL bufferSize == 0 || // incoming buffer has no data bufferSize > bufferSize_ ) // incoming buffer too large { return false; } unsigned int relInIndex = inIndex_; unsigned int outIndexEnd = outIndex_ + bufferSize; if ( relInIndex < outIndex_ && outIndexEnd >= bufferSize_ ) { relInIndex += bufferSize_; } // "out" index can begin at and end on the "in" index if ( outIndex_ < relInIndex && outIndexEnd > relInIndex ) { return false; // not enough space between "out" index and "in" index } // copy buffer from internal to external int fromZeroSize = outIndex_ + bufferSize - bufferSize_; fromZeroSize = fromZeroSize < 0 ? 0 : fromZeroSize; int fromOutSize = bufferSize - fromZeroSize; switch( format ) { case RTAUDIO_SINT8: memcpy( buffer, &( ( char* ) buffer_ )[outIndex_], fromOutSize * sizeof( char ) ); memcpy( &( ( char* ) buffer )[fromOutSize], buffer_, fromZeroSize * sizeof( char ) ); break; case RTAUDIO_SINT16: memcpy( buffer, &( ( short* ) buffer_ )[outIndex_], fromOutSize * sizeof( short ) ); memcpy( &( ( short* ) buffer )[fromOutSize], buffer_, fromZeroSize * sizeof( short ) ); break; case RTAUDIO_SINT24: memcpy( buffer, &( ( S24* ) buffer_ )[outIndex_], fromOutSize * sizeof( S24 ) ); memcpy( &( ( S24* ) buffer )[fromOutSize], buffer_, fromZeroSize * sizeof( S24 ) ); break; case RTAUDIO_SINT32: memcpy( buffer, &( ( int* ) buffer_ )[outIndex_], fromOutSize * sizeof( int ) ); memcpy( &( ( int* ) buffer )[fromOutSize], buffer_, fromZeroSize * sizeof( int ) ); break; case RTAUDIO_FLOAT32: memcpy( buffer, &( ( float* ) buffer_ )[outIndex_], fromOutSize * sizeof( float ) ); memcpy( &( ( float* ) buffer )[fromOutSize], buffer_, fromZeroSize * sizeof( float ) ); break; case RTAUDIO_FLOAT64: memcpy( buffer, &( ( double* ) buffer_ )[outIndex_], fromOutSize * sizeof( double ) ); memcpy( &( ( double* ) buffer )[fromOutSize], buffer_, fromZeroSize * sizeof( double ) ); break; } // update "out" index outIndex_ += bufferSize; outIndex_ %= bufferSize_; return true; } private: char* buffer_; unsigned int bufferSize_; unsigned int inIndex_; unsigned int outIndex_; }; //----------------------------------------------------------------------------- // A structure to hold various information related to the WASAPI implementation. struct WasapiHandle { IAudioClient* captureAudioClient; IAudioClient* renderAudioClient; IAudioCaptureClient* captureClient; IAudioRenderClient* renderClient; HANDLE captureEvent; HANDLE renderEvent; WasapiHandle() : captureAudioClient( NULL ), renderAudioClient( NULL ), captureClient( NULL ), renderClient( NULL ), captureEvent( NULL ), renderEvent( NULL ) {} }; //============================================================================= RtApiWasapi::RtApiWasapi() : coInitialized_( false ), deviceEnumerator_( NULL ) { // WASAPI can run either apartment or multi-threaded HRESULT hr = CoInitialize( NULL ); if ( !FAILED( hr ) ) coInitialized_ = true; // Instantiate device enumerator hr = CoCreateInstance( __uuidof( MMDeviceEnumerator ), NULL, CLSCTX_ALL, __uuidof( IMMDeviceEnumerator ), ( void** ) &deviceEnumerator_ ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::RtApiWasapi: Unable to instantiate device enumerator"; error( RtAudioError::DRIVER_ERROR ); } } //----------------------------------------------------------------------------- RtApiWasapi::~RtApiWasapi() { if ( stream_.state != STREAM_CLOSED ) closeStream(); SAFE_RELEASE( deviceEnumerator_ ); // If this object previously called CoInitialize() if ( coInitialized_ ) CoUninitialize(); } //============================================================================= unsigned int RtApiWasapi::getDeviceCount( void ) { unsigned int captureDeviceCount = 0; unsigned int renderDeviceCount = 0; IMMDeviceCollection* captureDevices = NULL; IMMDeviceCollection* renderDevices = NULL; // Count capture devices errorText_.clear(); HRESULT hr = deviceEnumerator_->EnumAudioEndpoints( eCapture, DEVICE_STATE_ACTIVE, &captureDevices ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceCount: Unable to retrieve capture device collection."; goto Exit; } hr = captureDevices->GetCount( &captureDeviceCount ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceCount: Unable to retrieve capture device count."; goto Exit; } // Count render devices hr = deviceEnumerator_->EnumAudioEndpoints( eRender, DEVICE_STATE_ACTIVE, &renderDevices ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceCount: Unable to retrieve render device collection."; goto Exit; } hr = renderDevices->GetCount( &renderDeviceCount ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceCount: Unable to retrieve render device count."; goto Exit; } Exit: // release all references SAFE_RELEASE( captureDevices ); SAFE_RELEASE( renderDevices ); if ( errorText_.empty() ) return captureDeviceCount + renderDeviceCount; error( RtAudioError::DRIVER_ERROR ); return 0; } //----------------------------------------------------------------------------- RtAudio::DeviceInfo RtApiWasapi::getDeviceInfo( unsigned int device ) { RtAudio::DeviceInfo info; unsigned int captureDeviceCount = 0; unsigned int renderDeviceCount = 0; std::string defaultDeviceName; bool isCaptureDevice = false; PROPVARIANT deviceNameProp; PROPVARIANT defaultDeviceNameProp; IMMDeviceCollection* captureDevices = NULL; IMMDeviceCollection* renderDevices = NULL; IMMDevice* devicePtr = NULL; IMMDevice* defaultDevicePtr = NULL; IAudioClient* audioClient = NULL; IPropertyStore* devicePropStore = NULL; IPropertyStore* defaultDevicePropStore = NULL; WAVEFORMATEX* deviceFormat = NULL; WAVEFORMATEX* closestMatchFormat = NULL; // probed info.probed = false; // Count capture devices errorText_.clear(); RtAudioError::Type errorType = RtAudioError::DRIVER_ERROR; HRESULT hr = deviceEnumerator_->EnumAudioEndpoints( eCapture, DEVICE_STATE_ACTIVE, &captureDevices ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to retrieve capture device collection."; goto Exit; } hr = captureDevices->GetCount( &captureDeviceCount ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to retrieve capture device count."; goto Exit; } // Count render devices hr = deviceEnumerator_->EnumAudioEndpoints( eRender, DEVICE_STATE_ACTIVE, &renderDevices ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to retrieve render device collection."; goto Exit; } hr = renderDevices->GetCount( &renderDeviceCount ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to retrieve render device count."; goto Exit; } // validate device index if ( device >= captureDeviceCount + renderDeviceCount ) { errorText_ = "RtApiWasapi::getDeviceInfo: Invalid device index."; errorType = RtAudioError::INVALID_USE; goto Exit; } // determine whether index falls within capture or render devices if ( device >= renderDeviceCount ) { hr = captureDevices->Item( device - renderDeviceCount, &devicePtr ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to retrieve capture device handle."; goto Exit; } isCaptureDevice = true; } else { hr = renderDevices->Item( device, &devicePtr ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to retrieve render device handle."; goto Exit; } isCaptureDevice = false; } // get default device name if ( isCaptureDevice ) { hr = deviceEnumerator_->GetDefaultAudioEndpoint( eCapture, eConsole, &defaultDevicePtr ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to retrieve default capture device handle."; goto Exit; } } else { hr = deviceEnumerator_->GetDefaultAudioEndpoint( eRender, eConsole, &defaultDevicePtr ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to retrieve default render device handle."; goto Exit; } } hr = defaultDevicePtr->OpenPropertyStore( STGM_READ, &defaultDevicePropStore ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to open default device property store."; goto Exit; } PropVariantInit( &defaultDeviceNameProp ); hr = defaultDevicePropStore->GetValue( PKEY_Device_FriendlyName, &defaultDeviceNameProp ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to retrieve default device property: PKEY_Device_FriendlyName."; goto Exit; } defaultDeviceName = convertCharPointerToStdString(defaultDeviceNameProp.pwszVal); // name hr = devicePtr->OpenPropertyStore( STGM_READ, &devicePropStore ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to open device property store."; goto Exit; } PropVariantInit( &deviceNameProp ); hr = devicePropStore->GetValue( PKEY_Device_FriendlyName, &deviceNameProp ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to retrieve device property: PKEY_Device_FriendlyName."; goto Exit; } info.name =convertCharPointerToStdString(deviceNameProp.pwszVal); // is default if ( isCaptureDevice ) { info.isDefaultInput = info.name == defaultDeviceName; info.isDefaultOutput = false; } else { info.isDefaultInput = false; info.isDefaultOutput = info.name == defaultDeviceName; } // channel count hr = devicePtr->Activate( __uuidof( IAudioClient ), CLSCTX_ALL, NULL, ( void** ) &audioClient ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to retrieve device audio client."; goto Exit; } hr = audioClient->GetMixFormat( &deviceFormat ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::getDeviceInfo: Unable to retrieve device mix format."; goto Exit; } if ( isCaptureDevice ) { info.inputChannels = deviceFormat->nChannels; info.outputChannels = 0; info.duplexChannels = 0; } else { info.inputChannels = 0; info.outputChannels = deviceFormat->nChannels; info.duplexChannels = 0; } // sample rates (WASAPI only supports the one native sample rate) info.preferredSampleRate = deviceFormat->nSamplesPerSec; info.sampleRates.clear(); info.sampleRates.push_back( deviceFormat->nSamplesPerSec ); // native format info.nativeFormats = 0; if ( deviceFormat->wFormatTag == WAVE_FORMAT_IEEE_FLOAT || ( deviceFormat->wFormatTag == WAVE_FORMAT_EXTENSIBLE && ( ( WAVEFORMATEXTENSIBLE* ) deviceFormat )->SubFormat == KSDATAFORMAT_SUBTYPE_IEEE_FLOAT ) ) { if ( deviceFormat->wBitsPerSample == 32 ) { info.nativeFormats |= RTAUDIO_FLOAT32; } else if ( deviceFormat->wBitsPerSample == 64 ) { info.nativeFormats |= RTAUDIO_FLOAT64; } } else if ( deviceFormat->wFormatTag == WAVE_FORMAT_PCM || ( deviceFormat->wFormatTag == WAVE_FORMAT_EXTENSIBLE && ( ( WAVEFORMATEXTENSIBLE* ) deviceFormat )->SubFormat == KSDATAFORMAT_SUBTYPE_PCM ) ) { if ( deviceFormat->wBitsPerSample == 8 ) { info.nativeFormats |= RTAUDIO_SINT8; } else if ( deviceFormat->wBitsPerSample == 16 ) { info.nativeFormats |= RTAUDIO_SINT16; } else if ( deviceFormat->wBitsPerSample == 24 ) { info.nativeFormats |= RTAUDIO_SINT24; } else if ( deviceFormat->wBitsPerSample == 32 ) { info.nativeFormats |= RTAUDIO_SINT32; } } // probed info.probed = true; Exit: // release all references PropVariantClear( &deviceNameProp ); PropVariantClear( &defaultDeviceNameProp ); SAFE_RELEASE( captureDevices ); SAFE_RELEASE( renderDevices ); SAFE_RELEASE( devicePtr ); SAFE_RELEASE( defaultDevicePtr ); SAFE_RELEASE( audioClient ); SAFE_RELEASE( devicePropStore ); SAFE_RELEASE( defaultDevicePropStore ); CoTaskMemFree( deviceFormat ); CoTaskMemFree( closestMatchFormat ); if ( !errorText_.empty() ) error( errorType ); return info; } //----------------------------------------------------------------------------- unsigned int RtApiWasapi::getDefaultOutputDevice( void ) { for ( unsigned int i = 0; i < getDeviceCount(); i++ ) { if ( getDeviceInfo( i ).isDefaultOutput ) { return i; } } return 0; } //----------------------------------------------------------------------------- unsigned int RtApiWasapi::getDefaultInputDevice( void ) { for ( unsigned int i = 0; i < getDeviceCount(); i++ ) { if ( getDeviceInfo( i ).isDefaultInput ) { return i; } } return 0; } //----------------------------------------------------------------------------- void RtApiWasapi::closeStream( void ) { if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiWasapi::closeStream: No open stream to close."; error( RtAudioError::WARNING ); return; } if ( stream_.state != STREAM_STOPPED ) stopStream(); // clean up stream memory SAFE_RELEASE( ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient ) SAFE_RELEASE( ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient ) SAFE_RELEASE( ( ( WasapiHandle* ) stream_.apiHandle )->captureClient ) SAFE_RELEASE( ( ( WasapiHandle* ) stream_.apiHandle )->renderClient ) if ( ( ( WasapiHandle* ) stream_.apiHandle )->captureEvent ) CloseHandle( ( ( WasapiHandle* ) stream_.apiHandle )->captureEvent ); if ( ( ( WasapiHandle* ) stream_.apiHandle )->renderEvent ) CloseHandle( ( ( WasapiHandle* ) stream_.apiHandle )->renderEvent ); delete ( WasapiHandle* ) stream_.apiHandle; stream_.apiHandle = NULL; for ( int i = 0; i < 2; i++ ) { if ( stream_.userBuffer[i] ) { free( stream_.userBuffer[i] ); stream_.userBuffer[i] = 0; } } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } // update stream state stream_.state = STREAM_CLOSED; } //----------------------------------------------------------------------------- void RtApiWasapi::startStream( void ) { verifyStream(); if ( stream_.state == STREAM_RUNNING ) { errorText_ = "RtApiWasapi::startStream: The stream is already running."; error( RtAudioError::WARNING ); return; } // update stream state stream_.state = STREAM_RUNNING; // create WASAPI stream thread stream_.callbackInfo.thread = ( ThreadHandle ) CreateThread( NULL, 0, runWasapiThread, this, CREATE_SUSPENDED, NULL ); if ( !stream_.callbackInfo.thread ) { errorText_ = "RtApiWasapi::startStream: Unable to instantiate callback thread."; error( RtAudioError::THREAD_ERROR ); } else { SetThreadPriority( ( void* ) stream_.callbackInfo.thread, stream_.callbackInfo.priority ); ResumeThread( ( void* ) stream_.callbackInfo.thread ); } } //----------------------------------------------------------------------------- void RtApiWasapi::stopStream( void ) { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiWasapi::stopStream: The stream is already stopped."; error( RtAudioError::WARNING ); return; } // inform stream thread by setting stream state to STREAM_STOPPING stream_.state = STREAM_STOPPING; // wait until stream thread is stopped while( stream_.state != STREAM_STOPPED ) { Sleep( 1 ); } // Wait for the last buffer to play before stopping. Sleep( 1000 * stream_.bufferSize / stream_.sampleRate ); // stop capture client if applicable if ( ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient ) { HRESULT hr = ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient->Stop(); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::stopStream: Unable to stop capture stream."; error( RtAudioError::DRIVER_ERROR ); return; } } // stop render client if applicable if ( ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient ) { HRESULT hr = ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient->Stop(); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::stopStream: Unable to stop render stream."; error( RtAudioError::DRIVER_ERROR ); return; } } // close thread handle if ( stream_.callbackInfo.thread && !CloseHandle( ( void* ) stream_.callbackInfo.thread ) ) { errorText_ = "RtApiWasapi::stopStream: Unable to close callback thread."; error( RtAudioError::THREAD_ERROR ); return; } stream_.callbackInfo.thread = (ThreadHandle) NULL; } //----------------------------------------------------------------------------- void RtApiWasapi::abortStream( void ) { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiWasapi::abortStream: The stream is already stopped."; error( RtAudioError::WARNING ); return; } // inform stream thread by setting stream state to STREAM_STOPPING stream_.state = STREAM_STOPPING; // wait until stream thread is stopped while ( stream_.state != STREAM_STOPPED ) { Sleep( 1 ); } // stop capture client if applicable if ( ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient ) { HRESULT hr = ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient->Stop(); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::abortStream: Unable to stop capture stream."; error( RtAudioError::DRIVER_ERROR ); return; } } // stop render client if applicable if ( ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient ) { HRESULT hr = ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient->Stop(); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::abortStream: Unable to stop render stream."; error( RtAudioError::DRIVER_ERROR ); return; } } // close thread handle if ( stream_.callbackInfo.thread && !CloseHandle( ( void* ) stream_.callbackInfo.thread ) ) { errorText_ = "RtApiWasapi::abortStream: Unable to close callback thread."; error( RtAudioError::THREAD_ERROR ); return; } stream_.callbackInfo.thread = (ThreadHandle) NULL; } //----------------------------------------------------------------------------- bool RtApiWasapi::probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int* bufferSize, RtAudio::StreamOptions* options ) { bool methodResult = FAILURE; unsigned int captureDeviceCount = 0; unsigned int renderDeviceCount = 0; IMMDeviceCollection* captureDevices = NULL; IMMDeviceCollection* renderDevices = NULL; IMMDevice* devicePtr = NULL; WAVEFORMATEX* deviceFormat = NULL; unsigned int bufferBytes; stream_.state = STREAM_STOPPED; RtAudio::DeviceInfo deviceInfo; // create API Handle if not already created if ( !stream_.apiHandle ) stream_.apiHandle = ( void* ) new WasapiHandle(); // Count capture devices errorText_.clear(); RtAudioError::Type errorType = RtAudioError::DRIVER_ERROR; HRESULT hr = deviceEnumerator_->EnumAudioEndpoints( eCapture, DEVICE_STATE_ACTIVE, &captureDevices ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::probeDeviceOpen: Unable to retrieve capture device collection."; goto Exit; } hr = captureDevices->GetCount( &captureDeviceCount ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::probeDeviceOpen: Unable to retrieve capture device count."; goto Exit; } // Count render devices hr = deviceEnumerator_->EnumAudioEndpoints( eRender, DEVICE_STATE_ACTIVE, &renderDevices ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::probeDeviceOpen: Unable to retrieve render device collection."; goto Exit; } hr = renderDevices->GetCount( &renderDeviceCount ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::probeDeviceOpen: Unable to retrieve render device count."; goto Exit; } // validate device index if ( device >= captureDeviceCount + renderDeviceCount ) { errorType = RtAudioError::INVALID_USE; errorText_ = "RtApiWasapi::probeDeviceOpen: Invalid device index."; goto Exit; } deviceInfo = getDeviceInfo( device ); // validate sample rate if ( sampleRate != deviceInfo.preferredSampleRate ) { errorType = RtAudioError::INVALID_USE; std::stringstream ss; ss << "RtApiWasapi::probeDeviceOpen: " << sampleRate << "Hz sample rate not supported. This device only supports " << deviceInfo.preferredSampleRate << "Hz."; errorText_ = ss.str(); goto Exit; } // determine whether index falls within capture or render devices if ( device >= renderDeviceCount ) { if ( mode != INPUT ) { errorType = RtAudioError::INVALID_USE; errorText_ = "RtApiWasapi::probeDeviceOpen: Capture device selected as output device."; goto Exit; } // retrieve captureAudioClient from devicePtr IAudioClient*& captureAudioClient = ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient; hr = captureDevices->Item( device - renderDeviceCount, &devicePtr ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::probeDeviceOpen: Unable to retrieve capture device handle."; goto Exit; } hr = devicePtr->Activate( __uuidof( IAudioClient ), CLSCTX_ALL, NULL, ( void** ) &captureAudioClient ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::probeDeviceOpen: Unable to retrieve device audio client."; goto Exit; } hr = captureAudioClient->GetMixFormat( &deviceFormat ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::probeDeviceOpen: Unable to retrieve device mix format."; goto Exit; } stream_.nDeviceChannels[mode] = deviceFormat->nChannels; captureAudioClient->GetStreamLatency( ( long long* ) &stream_.latency[mode] ); } else { if ( mode != OUTPUT ) { errorType = RtAudioError::INVALID_USE; errorText_ = "RtApiWasapi::probeDeviceOpen: Render device selected as input device."; goto Exit; } // retrieve renderAudioClient from devicePtr IAudioClient*& renderAudioClient = ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient; hr = renderDevices->Item( device, &devicePtr ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::probeDeviceOpen: Unable to retrieve render device handle."; goto Exit; } hr = devicePtr->Activate( __uuidof( IAudioClient ), CLSCTX_ALL, NULL, ( void** ) &renderAudioClient ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::probeDeviceOpen: Unable to retrieve device audio client."; goto Exit; } hr = renderAudioClient->GetMixFormat( &deviceFormat ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::probeDeviceOpen: Unable to retrieve device mix format."; goto Exit; } stream_.nDeviceChannels[mode] = deviceFormat->nChannels; renderAudioClient->GetStreamLatency( ( long long* ) &stream_.latency[mode] ); } // fill stream data if ( ( stream_.mode == OUTPUT && mode == INPUT ) || ( stream_.mode == INPUT && mode == OUTPUT ) ) { stream_.mode = DUPLEX; } else { stream_.mode = mode; } stream_.device[mode] = device; stream_.doByteSwap[mode] = false; stream_.sampleRate = sampleRate; stream_.bufferSize = *bufferSize; stream_.nBuffers = 1; stream_.nUserChannels[mode] = channels; stream_.channelOffset[mode] = firstChannel; stream_.userFormat = format; stream_.deviceFormat[mode] = deviceInfo.nativeFormats; if ( options && options->flags & RTAUDIO_NONINTERLEAVED ) stream_.userInterleaved = false; else stream_.userInterleaved = true; stream_.deviceInterleaved[mode] = true; // Set flags for buffer conversion. stream_.doConvertBuffer[mode] = false; if ( stream_.userFormat != stream_.deviceFormat[mode] || stream_.nUserChannels != stream_.nDeviceChannels ) stream_.doConvertBuffer[mode] = true; else if ( stream_.userInterleaved != stream_.deviceInterleaved[mode] && stream_.nUserChannels[mode] > 1 ) stream_.doConvertBuffer[mode] = true; if ( stream_.doConvertBuffer[mode] ) setConvertInfo( mode, 0 ); // Allocate necessary internal buffers bufferBytes = stream_.nUserChannels[mode] * stream_.bufferSize * formatBytes( stream_.userFormat ); stream_.userBuffer[mode] = ( char* ) calloc( bufferBytes, 1 ); if ( !stream_.userBuffer[mode] ) { errorType = RtAudioError::MEMORY_ERROR; errorText_ = "RtApiWasapi::probeDeviceOpen: Error allocating user buffer memory."; goto Exit; } if ( options && options->flags & RTAUDIO_SCHEDULE_REALTIME ) stream_.callbackInfo.priority = 15; else stream_.callbackInfo.priority = 0; ///! TODO: RTAUDIO_MINIMIZE_LATENCY // Provide stream buffers directly to callback ///! TODO: RTAUDIO_HOG_DEVICE // Exclusive mode methodResult = SUCCESS; Exit: //clean up SAFE_RELEASE( captureDevices ); SAFE_RELEASE( renderDevices ); SAFE_RELEASE( devicePtr ); CoTaskMemFree( deviceFormat ); // if method failed, close the stream if ( methodResult == FAILURE ) closeStream(); if ( !errorText_.empty() ) error( errorType ); return methodResult; } //============================================================================= DWORD WINAPI RtApiWasapi::runWasapiThread( void* wasapiPtr ) { if ( wasapiPtr ) ( ( RtApiWasapi* ) wasapiPtr )->wasapiThread(); return 0; } DWORD WINAPI RtApiWasapi::stopWasapiThread( void* wasapiPtr ) { if ( wasapiPtr ) ( ( RtApiWasapi* ) wasapiPtr )->stopStream(); return 0; } DWORD WINAPI RtApiWasapi::abortWasapiThread( void* wasapiPtr ) { if ( wasapiPtr ) ( ( RtApiWasapi* ) wasapiPtr )->abortStream(); return 0; } //----------------------------------------------------------------------------- void RtApiWasapi::wasapiThread() { // as this is a new thread, we must CoInitialize it CoInitialize( NULL ); HRESULT hr; IAudioClient* captureAudioClient = ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient; IAudioClient* renderAudioClient = ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient; IAudioCaptureClient* captureClient = ( ( WasapiHandle* ) stream_.apiHandle )->captureClient; IAudioRenderClient* renderClient = ( ( WasapiHandle* ) stream_.apiHandle )->renderClient; HANDLE captureEvent = ( ( WasapiHandle* ) stream_.apiHandle )->captureEvent; HANDLE renderEvent = ( ( WasapiHandle* ) stream_.apiHandle )->renderEvent; WAVEFORMATEX* captureFormat = NULL; WAVEFORMATEX* renderFormat = NULL; WasapiBuffer captureBuffer; WasapiBuffer renderBuffer; // declare local stream variables RtAudioCallback callback = ( RtAudioCallback ) stream_.callbackInfo.callback; BYTE* streamBuffer = NULL; unsigned long captureFlags = 0; unsigned int bufferFrameCount = 0; unsigned int numFramesPadding = 0; bool callbackPushed = false; bool callbackPulled = false; bool callbackStopped = false; int callbackResult = 0; unsigned int deviceBuffSize = 0; errorText_.clear(); RtAudioError::Type errorType = RtAudioError::DRIVER_ERROR; // Attempt to assign "Pro Audio" characteristic to thread HMODULE AvrtDll = LoadLibrary( (LPCTSTR) "AVRT.dll" ); if ( AvrtDll ) { DWORD taskIndex = 0; TAvSetMmThreadCharacteristicsPtr AvSetMmThreadCharacteristicsPtr = ( TAvSetMmThreadCharacteristicsPtr ) GetProcAddress( AvrtDll, "AvSetMmThreadCharacteristicsW" ); AvSetMmThreadCharacteristicsPtr( L"Pro Audio", &taskIndex ); FreeLibrary( AvrtDll ); } // start capture stream if applicable if ( captureAudioClient ) { hr = captureAudioClient->GetMixFormat( &captureFormat ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to retrieve device mix format."; goto Exit; } // initialize capture stream according to desire buffer size REFERENCE_TIME desiredBufferPeriod = ( REFERENCE_TIME ) ( ( float ) stream_.bufferSize * 10000000 / captureFormat->nSamplesPerSec ); if ( !captureClient ) { hr = captureAudioClient->Initialize( AUDCLNT_SHAREMODE_SHARED, AUDCLNT_STREAMFLAGS_EVENTCALLBACK, desiredBufferPeriod, desiredBufferPeriod, captureFormat, NULL ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to initialize capture audio client."; goto Exit; } hr = captureAudioClient->GetService( __uuidof( IAudioCaptureClient ), ( void** ) &captureClient ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to retrieve capture client handle."; goto Exit; } // configure captureEvent to trigger on every available capture buffer captureEvent = CreateEvent( NULL, FALSE, FALSE, NULL ); if ( !captureEvent ) { errorType = RtAudioError::SYSTEM_ERROR; errorText_ = "RtApiWasapi::wasapiThread: Unable to create capture event."; goto Exit; } hr = captureAudioClient->SetEventHandle( captureEvent ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to set capture event handle."; goto Exit; } ( ( WasapiHandle* ) stream_.apiHandle )->captureClient = captureClient; ( ( WasapiHandle* ) stream_.apiHandle )->captureEvent = captureEvent; } unsigned int inBufferSize = 0; hr = captureAudioClient->GetBufferSize( &inBufferSize ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to get capture buffer size."; goto Exit; } // scale outBufferSize according to stream->user sample rate ratio unsigned int outBufferSize = ( unsigned int ) stream_.bufferSize * stream_.nDeviceChannels[INPUT]; inBufferSize *= stream_.nDeviceChannels[INPUT]; // set captureBuffer size captureBuffer.setBufferSize( inBufferSize + outBufferSize, formatBytes( stream_.deviceFormat[INPUT] ) ); // reset the capture stream hr = captureAudioClient->Reset(); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to reset capture stream."; goto Exit; } // start the capture stream hr = captureAudioClient->Start(); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to start capture stream."; goto Exit; } } // start render stream if applicable if ( renderAudioClient ) { hr = renderAudioClient->GetMixFormat( &renderFormat ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to retrieve device mix format."; goto Exit; } // initialize render stream according to desire buffer size REFERENCE_TIME desiredBufferPeriod = ( REFERENCE_TIME ) ( ( float ) stream_.bufferSize * 10000000 / renderFormat->nSamplesPerSec ); if ( !renderClient ) { hr = renderAudioClient->Initialize( AUDCLNT_SHAREMODE_SHARED, AUDCLNT_STREAMFLAGS_EVENTCALLBACK, desiredBufferPeriod, desiredBufferPeriod, renderFormat, NULL ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to initialize render audio client."; goto Exit; } hr = renderAudioClient->GetService( __uuidof( IAudioRenderClient ), ( void** ) &renderClient ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to retrieve render client handle."; goto Exit; } // configure renderEvent to trigger on every available render buffer renderEvent = CreateEvent( NULL, FALSE, FALSE, NULL ); if ( !renderEvent ) { errorType = RtAudioError::SYSTEM_ERROR; errorText_ = "RtApiWasapi::wasapiThread: Unable to create render event."; goto Exit; } hr = renderAudioClient->SetEventHandle( renderEvent ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to set render event handle."; goto Exit; } ( ( WasapiHandle* ) stream_.apiHandle )->renderClient = renderClient; ( ( WasapiHandle* ) stream_.apiHandle )->renderEvent = renderEvent; } unsigned int outBufferSize = 0; hr = renderAudioClient->GetBufferSize( &outBufferSize ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to get render buffer size."; goto Exit; } // scale inBufferSize according to user->stream sample rate ratio unsigned int inBufferSize = ( unsigned int ) stream_.bufferSize * stream_.nDeviceChannels[OUTPUT]; outBufferSize *= stream_.nDeviceChannels[OUTPUT]; // set renderBuffer size renderBuffer.setBufferSize( inBufferSize + outBufferSize, formatBytes( stream_.deviceFormat[OUTPUT] ) ); // reset the render stream hr = renderAudioClient->Reset(); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to reset render stream."; goto Exit; } // start the render stream hr = renderAudioClient->Start(); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to start render stream."; goto Exit; } } if ( stream_.mode == INPUT ) { using namespace std; // for roundf deviceBuffSize = stream_.bufferSize * stream_.nDeviceChannels[INPUT] * formatBytes( stream_.deviceFormat[INPUT] ); } else if ( stream_.mode == OUTPUT ) { deviceBuffSize = stream_.bufferSize * stream_.nDeviceChannels[OUTPUT] * formatBytes( stream_.deviceFormat[OUTPUT] ); } else if ( stream_.mode == DUPLEX ) { deviceBuffSize = std::max( stream_.bufferSize * stream_.nDeviceChannels[INPUT] * formatBytes( stream_.deviceFormat[INPUT] ), stream_.bufferSize * stream_.nDeviceChannels[OUTPUT] * formatBytes( stream_.deviceFormat[OUTPUT] ) ); } stream_.deviceBuffer = ( char* ) malloc( deviceBuffSize ); if ( !stream_.deviceBuffer ) { errorType = RtAudioError::MEMORY_ERROR; errorText_ = "RtApiWasapi::wasapiThread: Error allocating device buffer memory."; goto Exit; } // stream process loop while ( stream_.state != STREAM_STOPPING ) { if ( !callbackPulled ) { // Callback Input // ============== // 1. Pull callback buffer from inputBuffer // 2. If 1. was successful: Convert callback buffer to user format if ( captureAudioClient ) { // Pull callback buffer from inputBuffer callbackPulled = captureBuffer.pullBuffer( stream_.deviceBuffer, ( unsigned int ) stream_.bufferSize * stream_.nDeviceChannels[INPUT], stream_.deviceFormat[INPUT] ); if ( callbackPulled ) { if ( stream_.doConvertBuffer[INPUT] ) { // Convert callback buffer to user format convertBuffer( stream_.userBuffer[INPUT], stream_.deviceBuffer, stream_.convertInfo[INPUT] ); } else { // no further conversion, simple copy deviceBuffer to userBuffer memcpy( stream_.userBuffer[INPUT], stream_.deviceBuffer, stream_.bufferSize * stream_.nUserChannels[INPUT] * formatBytes( stream_.userFormat ) ); } } } else { // if there is no capture stream, set callbackPulled flag callbackPulled = true; } // Execute Callback // ================ // 1. Execute user callback method // 2. Handle return value from callback // if callback has not requested the stream to stop if ( callbackPulled && !callbackStopped ) { // Execute user callback method callbackResult = callback( stream_.userBuffer[OUTPUT], stream_.userBuffer[INPUT], stream_.bufferSize, getStreamTime(), captureFlags & AUDCLNT_BUFFERFLAGS_DATA_DISCONTINUITY ? RTAUDIO_INPUT_OVERFLOW : 0, stream_.callbackInfo.userData ); // Handle return value from callback if ( callbackResult == 1 ) { // instantiate a thread to stop this thread HANDLE threadHandle = CreateThread( NULL, 0, stopWasapiThread, this, 0, NULL ); if ( !threadHandle ) { errorType = RtAudioError::THREAD_ERROR; errorText_ = "RtApiWasapi::wasapiThread: Unable to instantiate stream stop thread."; goto Exit; } else if ( !CloseHandle( threadHandle ) ) { errorType = RtAudioError::THREAD_ERROR; errorText_ = "RtApiWasapi::wasapiThread: Unable to close stream stop thread handle."; goto Exit; } callbackStopped = true; } else if ( callbackResult == 2 ) { // instantiate a thread to stop this thread HANDLE threadHandle = CreateThread( NULL, 0, abortWasapiThread, this, 0, NULL ); if ( !threadHandle ) { errorType = RtAudioError::THREAD_ERROR; errorText_ = "RtApiWasapi::wasapiThread: Unable to instantiate stream abort thread."; goto Exit; } else if ( !CloseHandle( threadHandle ) ) { errorType = RtAudioError::THREAD_ERROR; errorText_ = "RtApiWasapi::wasapiThread: Unable to close stream abort thread handle."; goto Exit; } callbackStopped = true; } } } // Callback Output // =============== // 1. Convert callback buffer to stream format // 2. Push callback buffer into outputBuffer if ( renderAudioClient && callbackPulled ) { if ( stream_.doConvertBuffer[OUTPUT] ) { // Convert callback buffer to stream format convertBuffer( stream_.deviceBuffer, stream_.userBuffer[OUTPUT], stream_.convertInfo[OUTPUT] ); } // Push callback buffer into outputBuffer callbackPushed = renderBuffer.pushBuffer( stream_.deviceBuffer, stream_.bufferSize * stream_.nDeviceChannels[OUTPUT], stream_.deviceFormat[OUTPUT] ); } else { // if there is no render stream, set callbackPushed flag callbackPushed = true; } // Stream Capture // ============== // 1. Get capture buffer from stream // 2. Push capture buffer into inputBuffer // 3. If 2. was successful: Release capture buffer if ( captureAudioClient ) { // if the callback input buffer was not pulled from captureBuffer, wait for next capture event if ( !callbackPulled ) { WaitForSingleObject( captureEvent, INFINITE ); } // Get capture buffer from stream hr = captureClient->GetBuffer( &streamBuffer, &bufferFrameCount, &captureFlags, NULL, NULL ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to retrieve capture buffer."; goto Exit; } if ( bufferFrameCount != 0 ) { // Push capture buffer into inputBuffer if ( captureBuffer.pushBuffer( ( char* ) streamBuffer, bufferFrameCount * stream_.nDeviceChannels[INPUT], stream_.deviceFormat[INPUT] ) ) { // Release capture buffer hr = captureClient->ReleaseBuffer( bufferFrameCount ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to release capture buffer."; goto Exit; } } else { // Inform WASAPI that capture was unsuccessful hr = captureClient->ReleaseBuffer( 0 ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to release capture buffer."; goto Exit; } } } else { // Inform WASAPI that capture was unsuccessful hr = captureClient->ReleaseBuffer( 0 ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to release capture buffer."; goto Exit; } } } // Stream Render // ============= // 1. Get render buffer from stream // 2. Pull next buffer from outputBuffer // 3. If 2. was successful: Fill render buffer with next buffer // Release render buffer if ( renderAudioClient ) { // if the callback output buffer was not pushed to renderBuffer, wait for next render event if ( callbackPulled && !callbackPushed ) { WaitForSingleObject( renderEvent, INFINITE ); } // Get render buffer from stream hr = renderAudioClient->GetBufferSize( &bufferFrameCount ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to retrieve render buffer size."; goto Exit; } hr = renderAudioClient->GetCurrentPadding( &numFramesPadding ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to retrieve render buffer padding."; goto Exit; } bufferFrameCount -= numFramesPadding; if ( bufferFrameCount != 0 ) { hr = renderClient->GetBuffer( bufferFrameCount, &streamBuffer ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to retrieve render buffer."; goto Exit; } // Pull next buffer from outputBuffer // Fill render buffer with next buffer if ( renderBuffer.pullBuffer( ( char* ) streamBuffer, bufferFrameCount * stream_.nDeviceChannels[OUTPUT], stream_.deviceFormat[OUTPUT] ) ) { // Release render buffer hr = renderClient->ReleaseBuffer( bufferFrameCount, 0 ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to release render buffer."; goto Exit; } } else { // Inform WASAPI that render was unsuccessful hr = renderClient->ReleaseBuffer( 0, 0 ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to release render buffer."; goto Exit; } } } else { // Inform WASAPI that render was unsuccessful hr = renderClient->ReleaseBuffer( 0, 0 ); if ( FAILED( hr ) ) { errorText_ = "RtApiWasapi::wasapiThread: Unable to release render buffer."; goto Exit; } } } // if the callback buffer was pushed renderBuffer reset callbackPulled flag if ( callbackPushed ) { callbackPulled = false; // tick stream time RtApi::tickStreamTime(); } } Exit: // clean up CoTaskMemFree( captureFormat ); CoTaskMemFree( renderFormat ); CoUninitialize(); // update stream state stream_.state = STREAM_STOPPED; if ( errorText_.empty() ) return; else error( errorType ); } //******************** End of __WINDOWS_WASAPI__ *********************// #endif #if defined(__WINDOWS_DS__) // Windows DirectSound API // Modified by Robin Davies, October 2005 // - Improvements to DirectX pointer chasing. // - Bug fix for non-power-of-two Asio granularity used by Edirol PCR-A30. // - Auto-call CoInitialize for DSOUND and ASIO platforms. // Various revisions for RtAudio 4.0 by Gary Scavone, April 2007 // Changed device query structure for RtAudio 4.0.7, January 2010 #include #include #include #include #include #if defined(__MINGW32__) // missing from latest mingw winapi #define WAVE_FORMAT_96M08 0x00010000 /* 96 kHz, Mono, 8-bit */ #define WAVE_FORMAT_96S08 0x00020000 /* 96 kHz, Stereo, 8-bit */ #define WAVE_FORMAT_96M16 0x00040000 /* 96 kHz, Mono, 16-bit */ #define WAVE_FORMAT_96S16 0x00080000 /* 96 kHz, Stereo, 16-bit */ #endif #define MINIMUM_DEVICE_BUFFER_SIZE 32768 #ifdef _MSC_VER // if Microsoft Visual C++ #pragma comment( lib, "winmm.lib" ) // then, auto-link winmm.lib. Otherwise, it has to be added manually. #endif static inline DWORD dsPointerBetween( DWORD pointer, DWORD laterPointer, DWORD earlierPointer, DWORD bufferSize ) { if ( pointer > bufferSize ) pointer -= bufferSize; if ( laterPointer < earlierPointer ) laterPointer += bufferSize; if ( pointer < earlierPointer ) pointer += bufferSize; return pointer >= earlierPointer && pointer < laterPointer; } // A structure to hold various information related to the DirectSound // API implementation. struct DsHandle { unsigned int drainCounter; // Tracks callback counts when draining bool internalDrain; // Indicates if stop is initiated from callback or not. void *id[2]; void *buffer[2]; bool xrun[2]; UINT bufferPointer[2]; DWORD dsBufferSize[2]; DWORD dsPointerLeadTime[2]; // the number of bytes ahead of the safe pointer to lead by. HANDLE condition; DsHandle() :drainCounter(0), internalDrain(false) { id[0] = 0; id[1] = 0; buffer[0] = 0; buffer[1] = 0; xrun[0] = false; xrun[1] = false; bufferPointer[0] = 0; bufferPointer[1] = 0; } }; // Declarations for utility functions, callbacks, and structures // specific to the DirectSound implementation. static BOOL CALLBACK deviceQueryCallback( LPGUID lpguid, LPCTSTR description, LPCTSTR module, LPVOID lpContext ); static const char* getErrorString( int code ); static unsigned __stdcall callbackHandler( void *ptr ); struct DsDevice { LPGUID id[2]; bool validId[2]; bool found; std::string name; DsDevice() : found(false) { validId[0] = false; validId[1] = false; } }; struct DsProbeData { bool isInput; std::vector* dsDevices; }; RtApiDs :: RtApiDs() { // Dsound will run both-threaded. If CoInitialize fails, then just // accept whatever the mainline chose for a threading model. coInitialized_ = false; HRESULT hr = CoInitialize( NULL ); if ( !FAILED( hr ) ) coInitialized_ = true; } RtApiDs :: ~RtApiDs() { if ( stream_.state != STREAM_CLOSED ) closeStream(); if ( coInitialized_ ) CoUninitialize(); // balanced call. } // The DirectSound default output is always the first device. unsigned int RtApiDs :: getDefaultOutputDevice( void ) { return 0; } // The DirectSound default input is always the first input device, // which is the first capture device enumerated. unsigned int RtApiDs :: getDefaultInputDevice( void ) { return 0; } unsigned int RtApiDs :: getDeviceCount( void ) { // Set query flag for previously found devices to false, so that we // can check for any devices that have disappeared. for ( unsigned int i=0; i(dsDevices.size()); } RtAudio::DeviceInfo RtApiDs :: getDeviceInfo( unsigned int device ) { RtAudio::DeviceInfo info; info.probed = false; if ( dsDevices.size() == 0 ) { // Force a query of all devices getDeviceCount(); if ( dsDevices.size() == 0 ) { errorText_ = "RtApiDs::getDeviceInfo: no devices found!"; error( RtAudioError::INVALID_USE ); return info; } } if ( device >= dsDevices.size() ) { errorText_ = "RtApiDs::getDeviceInfo: device ID is invalid!"; error( RtAudioError::INVALID_USE ); return info; } HRESULT result; if ( dsDevices[ device ].validId[0] == false ) goto probeInput; LPDIRECTSOUND output; DSCAPS outCaps; result = DirectSoundCreate( dsDevices[ device ].id[0], &output, NULL ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::getDeviceInfo: error (" << getErrorString( result ) << ") opening output device (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); goto probeInput; } outCaps.dwSize = sizeof( outCaps ); result = output->GetCaps( &outCaps ); if ( FAILED( result ) ) { output->Release(); errorStream_ << "RtApiDs::getDeviceInfo: error (" << getErrorString( result ) << ") getting capabilities!"; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); goto probeInput; } // Get output channel information. info.outputChannels = ( outCaps.dwFlags & DSCAPS_PRIMARYSTEREO ) ? 2 : 1; // Get sample rate information. info.sampleRates.clear(); for ( unsigned int k=0; k= (unsigned int) outCaps.dwMinSecondarySampleRate && SAMPLE_RATES[k] <= (unsigned int) outCaps.dwMaxSecondarySampleRate ) { info.sampleRates.push_back( SAMPLE_RATES[k] ); if ( !info.preferredSampleRate || ( SAMPLE_RATES[k] <= 48000 && SAMPLE_RATES[k] > info.preferredSampleRate ) ) info.preferredSampleRate = SAMPLE_RATES[k]; } } // Get format information. if ( outCaps.dwFlags & DSCAPS_PRIMARY16BIT ) info.nativeFormats |= RTAUDIO_SINT16; if ( outCaps.dwFlags & DSCAPS_PRIMARY8BIT ) info.nativeFormats |= RTAUDIO_SINT8; output->Release(); if ( getDefaultOutputDevice() == device ) info.isDefaultOutput = true; if ( dsDevices[ device ].validId[1] == false ) { info.name = dsDevices[ device ].name; info.probed = true; return info; } probeInput: LPDIRECTSOUNDCAPTURE input; result = DirectSoundCaptureCreate( dsDevices[ device ].id[1], &input, NULL ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::getDeviceInfo: error (" << getErrorString( result ) << ") opening input device (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } DSCCAPS inCaps; inCaps.dwSize = sizeof( inCaps ); result = input->GetCaps( &inCaps ); if ( FAILED( result ) ) { input->Release(); errorStream_ << "RtApiDs::getDeviceInfo: error (" << getErrorString( result ) << ") getting object capabilities (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // Get input channel information. info.inputChannels = inCaps.dwChannels; // Get sample rate and format information. std::vector rates; if ( inCaps.dwChannels >= 2 ) { if ( inCaps.dwFormats & WAVE_FORMAT_1S16 ) info.nativeFormats |= RTAUDIO_SINT16; if ( inCaps.dwFormats & WAVE_FORMAT_2S16 ) info.nativeFormats |= RTAUDIO_SINT16; if ( inCaps.dwFormats & WAVE_FORMAT_4S16 ) info.nativeFormats |= RTAUDIO_SINT16; if ( inCaps.dwFormats & WAVE_FORMAT_96S16 ) info.nativeFormats |= RTAUDIO_SINT16; if ( inCaps.dwFormats & WAVE_FORMAT_1S08 ) info.nativeFormats |= RTAUDIO_SINT8; if ( inCaps.dwFormats & WAVE_FORMAT_2S08 ) info.nativeFormats |= RTAUDIO_SINT8; if ( inCaps.dwFormats & WAVE_FORMAT_4S08 ) info.nativeFormats |= RTAUDIO_SINT8; if ( inCaps.dwFormats & WAVE_FORMAT_96S08 ) info.nativeFormats |= RTAUDIO_SINT8; if ( info.nativeFormats & RTAUDIO_SINT16 ) { if ( inCaps.dwFormats & WAVE_FORMAT_1S16 ) rates.push_back( 11025 ); if ( inCaps.dwFormats & WAVE_FORMAT_2S16 ) rates.push_back( 22050 ); if ( inCaps.dwFormats & WAVE_FORMAT_4S16 ) rates.push_back( 44100 ); if ( inCaps.dwFormats & WAVE_FORMAT_96S16 ) rates.push_back( 96000 ); } else if ( info.nativeFormats & RTAUDIO_SINT8 ) { if ( inCaps.dwFormats & WAVE_FORMAT_1S08 ) rates.push_back( 11025 ); if ( inCaps.dwFormats & WAVE_FORMAT_2S08 ) rates.push_back( 22050 ); if ( inCaps.dwFormats & WAVE_FORMAT_4S08 ) rates.push_back( 44100 ); if ( inCaps.dwFormats & WAVE_FORMAT_96S08 ) rates.push_back( 96000 ); } } else if ( inCaps.dwChannels == 1 ) { if ( inCaps.dwFormats & WAVE_FORMAT_1M16 ) info.nativeFormats |= RTAUDIO_SINT16; if ( inCaps.dwFormats & WAVE_FORMAT_2M16 ) info.nativeFormats |= RTAUDIO_SINT16; if ( inCaps.dwFormats & WAVE_FORMAT_4M16 ) info.nativeFormats |= RTAUDIO_SINT16; if ( inCaps.dwFormats & WAVE_FORMAT_96M16 ) info.nativeFormats |= RTAUDIO_SINT16; if ( inCaps.dwFormats & WAVE_FORMAT_1M08 ) info.nativeFormats |= RTAUDIO_SINT8; if ( inCaps.dwFormats & WAVE_FORMAT_2M08 ) info.nativeFormats |= RTAUDIO_SINT8; if ( inCaps.dwFormats & WAVE_FORMAT_4M08 ) info.nativeFormats |= RTAUDIO_SINT8; if ( inCaps.dwFormats & WAVE_FORMAT_96M08 ) info.nativeFormats |= RTAUDIO_SINT8; if ( info.nativeFormats & RTAUDIO_SINT16 ) { if ( inCaps.dwFormats & WAVE_FORMAT_1M16 ) rates.push_back( 11025 ); if ( inCaps.dwFormats & WAVE_FORMAT_2M16 ) rates.push_back( 22050 ); if ( inCaps.dwFormats & WAVE_FORMAT_4M16 ) rates.push_back( 44100 ); if ( inCaps.dwFormats & WAVE_FORMAT_96M16 ) rates.push_back( 96000 ); } else if ( info.nativeFormats & RTAUDIO_SINT8 ) { if ( inCaps.dwFormats & WAVE_FORMAT_1M08 ) rates.push_back( 11025 ); if ( inCaps.dwFormats & WAVE_FORMAT_2M08 ) rates.push_back( 22050 ); if ( inCaps.dwFormats & WAVE_FORMAT_4M08 ) rates.push_back( 44100 ); if ( inCaps.dwFormats & WAVE_FORMAT_96M08 ) rates.push_back( 96000 ); } } else info.inputChannels = 0; // technically, this would be an error input->Release(); if ( info.inputChannels == 0 ) return info; // Copy the supported rates to the info structure but avoid duplication. bool found; for ( unsigned int i=0; i 0 && info.inputChannels > 0 ) info.duplexChannels = (info.outputChannels > info.inputChannels) ? info.inputChannels : info.outputChannels; if ( device == 0 ) info.isDefaultInput = true; // Copy name and return. info.name = dsDevices[ device ].name; info.probed = true; return info; } bool RtApiDs :: probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int *bufferSize, RtAudio::StreamOptions *options ) { if ( channels + firstChannel > 2 ) { errorText_ = "RtApiDs::probeDeviceOpen: DirectSound does not support more than 2 channels per device."; return FAILURE; } size_t nDevices = dsDevices.size(); if ( nDevices == 0 ) { // This should not happen because a check is made before this function is called. errorText_ = "RtApiDs::probeDeviceOpen: no devices found!"; return FAILURE; } if ( device >= nDevices ) { // This should not happen because a check is made before this function is called. errorText_ = "RtApiDs::probeDeviceOpen: device ID is invalid!"; return FAILURE; } if ( mode == OUTPUT ) { if ( dsDevices[ device ].validId[0] == false ) { errorStream_ << "RtApiDs::probeDeviceOpen: device (" << device << ") does not support output!"; errorText_ = errorStream_.str(); return FAILURE; } } else { // mode == INPUT if ( dsDevices[ device ].validId[1] == false ) { errorStream_ << "RtApiDs::probeDeviceOpen: device (" << device << ") does not support input!"; errorText_ = errorStream_.str(); return FAILURE; } } // According to a note in PortAudio, using GetDesktopWindow() // instead of GetForegroundWindow() is supposed to avoid problems // that occur when the application's window is not the foreground // window. Also, if the application window closes before the // DirectSound buffer, DirectSound can crash. In the past, I had // problems when using GetDesktopWindow() but it seems fine now // (January 2010). I'll leave it commented here. // HWND hWnd = GetForegroundWindow(); HWND hWnd = GetDesktopWindow(); // Check the numberOfBuffers parameter and limit the lowest value to // two. This is a judgement call and a value of two is probably too // low for capture, but it should work for playback. int nBuffers = 0; if ( options ) nBuffers = options->numberOfBuffers; if ( options && options->flags & RTAUDIO_MINIMIZE_LATENCY ) nBuffers = 2; if ( nBuffers < 2 ) nBuffers = 3; // Check the lower range of the user-specified buffer size and set // (arbitrarily) to a lower bound of 32. if ( *bufferSize < 32 ) *bufferSize = 32; // Create the wave format structure. The data format setting will // be determined later. WAVEFORMATEX waveFormat; ZeroMemory( &waveFormat, sizeof(WAVEFORMATEX) ); waveFormat.wFormatTag = WAVE_FORMAT_PCM; waveFormat.nChannels = channels + firstChannel; waveFormat.nSamplesPerSec = (unsigned long) sampleRate; // Determine the device buffer size. By default, we'll use the value // defined above (32K), but we will grow it to make allowances for // very large software buffer sizes. DWORD dsBufferSize = MINIMUM_DEVICE_BUFFER_SIZE; DWORD dsPointerLeadTime = 0; void *ohandle = 0, *bhandle = 0; HRESULT result; if ( mode == OUTPUT ) { LPDIRECTSOUND output; result = DirectSoundCreate( dsDevices[ device ].id[0], &output, NULL ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") opening output device (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } DSCAPS outCaps; outCaps.dwSize = sizeof( outCaps ); result = output->GetCaps( &outCaps ); if ( FAILED( result ) ) { output->Release(); errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") getting capabilities (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } // Check channel information. if ( channels + firstChannel == 2 && !( outCaps.dwFlags & DSCAPS_PRIMARYSTEREO ) ) { errorStream_ << "RtApiDs::getDeviceInfo: the output device (" << dsDevices[ device ].name << ") does not support stereo playback."; errorText_ = errorStream_.str(); return FAILURE; } // Check format information. Use 16-bit format unless not // supported or user requests 8-bit. if ( outCaps.dwFlags & DSCAPS_PRIMARY16BIT && !( format == RTAUDIO_SINT8 && outCaps.dwFlags & DSCAPS_PRIMARY8BIT ) ) { waveFormat.wBitsPerSample = 16; stream_.deviceFormat[mode] = RTAUDIO_SINT16; } else { waveFormat.wBitsPerSample = 8; stream_.deviceFormat[mode] = RTAUDIO_SINT8; } stream_.userFormat = format; // Update wave format structure and buffer information. waveFormat.nBlockAlign = waveFormat.nChannels * waveFormat.wBitsPerSample / 8; waveFormat.nAvgBytesPerSec = waveFormat.nSamplesPerSec * waveFormat.nBlockAlign; dsPointerLeadTime = nBuffers * (*bufferSize) * (waveFormat.wBitsPerSample / 8) * channels; // If the user wants an even bigger buffer, increase the device buffer size accordingly. while ( dsPointerLeadTime * 2U > dsBufferSize ) dsBufferSize *= 2; // Set cooperative level to DSSCL_EXCLUSIVE ... sound stops when window focus changes. // result = output->SetCooperativeLevel( hWnd, DSSCL_EXCLUSIVE ); // Set cooperative level to DSSCL_PRIORITY ... sound remains when window focus changes. result = output->SetCooperativeLevel( hWnd, DSSCL_PRIORITY ); if ( FAILED( result ) ) { output->Release(); errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") setting cooperative level (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } // Even though we will write to the secondary buffer, we need to // access the primary buffer to set the correct output format // (since the default is 8-bit, 22 kHz!). Setup the DS primary // buffer description. DSBUFFERDESC bufferDescription; ZeroMemory( &bufferDescription, sizeof( DSBUFFERDESC ) ); bufferDescription.dwSize = sizeof( DSBUFFERDESC ); bufferDescription.dwFlags = DSBCAPS_PRIMARYBUFFER; // Obtain the primary buffer LPDIRECTSOUNDBUFFER buffer; result = output->CreateSoundBuffer( &bufferDescription, &buffer, NULL ); if ( FAILED( result ) ) { output->Release(); errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") accessing primary buffer (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } // Set the primary DS buffer sound format. result = buffer->SetFormat( &waveFormat ); if ( FAILED( result ) ) { output->Release(); errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") setting primary buffer format (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } // Setup the secondary DS buffer description. ZeroMemory( &bufferDescription, sizeof( DSBUFFERDESC ) ); bufferDescription.dwSize = sizeof( DSBUFFERDESC ); bufferDescription.dwFlags = ( DSBCAPS_STICKYFOCUS | DSBCAPS_GLOBALFOCUS | DSBCAPS_GETCURRENTPOSITION2 | DSBCAPS_LOCHARDWARE ); // Force hardware mixing bufferDescription.dwBufferBytes = dsBufferSize; bufferDescription.lpwfxFormat = &waveFormat; // Try to create the secondary DS buffer. If that doesn't work, // try to use software mixing. Otherwise, there's a problem. result = output->CreateSoundBuffer( &bufferDescription, &buffer, NULL ); if ( FAILED( result ) ) { bufferDescription.dwFlags = ( DSBCAPS_STICKYFOCUS | DSBCAPS_GLOBALFOCUS | DSBCAPS_GETCURRENTPOSITION2 | DSBCAPS_LOCSOFTWARE ); // Force software mixing result = output->CreateSoundBuffer( &bufferDescription, &buffer, NULL ); if ( FAILED( result ) ) { output->Release(); errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") creating secondary buffer (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } } // Get the buffer size ... might be different from what we specified. DSBCAPS dsbcaps; dsbcaps.dwSize = sizeof( DSBCAPS ); result = buffer->GetCaps( &dsbcaps ); if ( FAILED( result ) ) { output->Release(); buffer->Release(); errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") getting buffer settings (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } dsBufferSize = dsbcaps.dwBufferBytes; // Lock the DS buffer LPVOID audioPtr; DWORD dataLen; result = buffer->Lock( 0, dsBufferSize, &audioPtr, &dataLen, NULL, NULL, 0 ); if ( FAILED( result ) ) { output->Release(); buffer->Release(); errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") locking buffer (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } // Zero the DS buffer ZeroMemory( audioPtr, dataLen ); // Unlock the DS buffer result = buffer->Unlock( audioPtr, dataLen, NULL, 0 ); if ( FAILED( result ) ) { output->Release(); buffer->Release(); errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") unlocking buffer (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } ohandle = (void *) output; bhandle = (void *) buffer; } if ( mode == INPUT ) { LPDIRECTSOUNDCAPTURE input; result = DirectSoundCaptureCreate( dsDevices[ device ].id[1], &input, NULL ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") opening input device (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } DSCCAPS inCaps; inCaps.dwSize = sizeof( inCaps ); result = input->GetCaps( &inCaps ); if ( FAILED( result ) ) { input->Release(); errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") getting input capabilities (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } // Check channel information. if ( inCaps.dwChannels < channels + firstChannel ) { errorText_ = "RtApiDs::getDeviceInfo: the input device does not support requested input channels."; return FAILURE; } // Check format information. Use 16-bit format unless user // requests 8-bit. DWORD deviceFormats; if ( channels + firstChannel == 2 ) { deviceFormats = WAVE_FORMAT_1S08 | WAVE_FORMAT_2S08 | WAVE_FORMAT_4S08 | WAVE_FORMAT_96S08; if ( format == RTAUDIO_SINT8 && inCaps.dwFormats & deviceFormats ) { waveFormat.wBitsPerSample = 8; stream_.deviceFormat[mode] = RTAUDIO_SINT8; } else { // assume 16-bit is supported waveFormat.wBitsPerSample = 16; stream_.deviceFormat[mode] = RTAUDIO_SINT16; } } else { // channel == 1 deviceFormats = WAVE_FORMAT_1M08 | WAVE_FORMAT_2M08 | WAVE_FORMAT_4M08 | WAVE_FORMAT_96M08; if ( format == RTAUDIO_SINT8 && inCaps.dwFormats & deviceFormats ) { waveFormat.wBitsPerSample = 8; stream_.deviceFormat[mode] = RTAUDIO_SINT8; } else { // assume 16-bit is supported waveFormat.wBitsPerSample = 16; stream_.deviceFormat[mode] = RTAUDIO_SINT16; } } stream_.userFormat = format; // Update wave format structure and buffer information. waveFormat.nBlockAlign = waveFormat.nChannels * waveFormat.wBitsPerSample / 8; waveFormat.nAvgBytesPerSec = waveFormat.nSamplesPerSec * waveFormat.nBlockAlign; dsPointerLeadTime = nBuffers * (*bufferSize) * (waveFormat.wBitsPerSample / 8) * channels; // If the user wants an even bigger buffer, increase the device buffer size accordingly. while ( dsPointerLeadTime * 2U > dsBufferSize ) dsBufferSize *= 2; // Setup the secondary DS buffer description. DSCBUFFERDESC bufferDescription; ZeroMemory( &bufferDescription, sizeof( DSCBUFFERDESC ) ); bufferDescription.dwSize = sizeof( DSCBUFFERDESC ); bufferDescription.dwFlags = 0; bufferDescription.dwReserved = 0; bufferDescription.dwBufferBytes = dsBufferSize; bufferDescription.lpwfxFormat = &waveFormat; // Create the capture buffer. LPDIRECTSOUNDCAPTUREBUFFER buffer; result = input->CreateCaptureBuffer( &bufferDescription, &buffer, NULL ); if ( FAILED( result ) ) { input->Release(); errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") creating input buffer (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } // Get the buffer size ... might be different from what we specified. DSCBCAPS dscbcaps; dscbcaps.dwSize = sizeof( DSCBCAPS ); result = buffer->GetCaps( &dscbcaps ); if ( FAILED( result ) ) { input->Release(); buffer->Release(); errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") getting buffer settings (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } dsBufferSize = dscbcaps.dwBufferBytes; // NOTE: We could have a problem here if this is a duplex stream // and the play and capture hardware buffer sizes are different // (I'm actually not sure if that is a problem or not). // Currently, we are not verifying that. // Lock the capture buffer LPVOID audioPtr; DWORD dataLen; result = buffer->Lock( 0, dsBufferSize, &audioPtr, &dataLen, NULL, NULL, 0 ); if ( FAILED( result ) ) { input->Release(); buffer->Release(); errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") locking input buffer (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } // Zero the buffer ZeroMemory( audioPtr, dataLen ); // Unlock the buffer result = buffer->Unlock( audioPtr, dataLen, NULL, 0 ); if ( FAILED( result ) ) { input->Release(); buffer->Release(); errorStream_ << "RtApiDs::probeDeviceOpen: error (" << getErrorString( result ) << ") unlocking input buffer (" << dsDevices[ device ].name << ")!"; errorText_ = errorStream_.str(); return FAILURE; } ohandle = (void *) input; bhandle = (void *) buffer; } // Set various stream parameters DsHandle *handle = 0; stream_.nDeviceChannels[mode] = channels + firstChannel; stream_.nUserChannels[mode] = channels; stream_.bufferSize = *bufferSize; stream_.channelOffset[mode] = firstChannel; stream_.deviceInterleaved[mode] = true; if ( options && options->flags & RTAUDIO_NONINTERLEAVED ) stream_.userInterleaved = false; else stream_.userInterleaved = true; // Set flag for buffer conversion stream_.doConvertBuffer[mode] = false; if (stream_.nUserChannels[mode] != stream_.nDeviceChannels[mode]) stream_.doConvertBuffer[mode] = true; if (stream_.userFormat != stream_.deviceFormat[mode]) stream_.doConvertBuffer[mode] = true; if ( stream_.userInterleaved != stream_.deviceInterleaved[mode] && stream_.nUserChannels[mode] > 1 ) stream_.doConvertBuffer[mode] = true; // Allocate necessary internal buffers long bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat ); stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 ); if ( stream_.userBuffer[mode] == NULL ) { errorText_ = "RtApiDs::probeDeviceOpen: error allocating user buffer memory."; goto error; } if ( stream_.doConvertBuffer[mode] ) { bool makeBuffer = true; bufferBytes = stream_.nDeviceChannels[mode] * formatBytes( stream_.deviceFormat[mode] ); if ( mode == INPUT ) { if ( stream_.mode == OUTPUT && stream_.deviceBuffer ) { unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] ); if ( bufferBytes <= (long) bytesOut ) makeBuffer = false; } } if ( makeBuffer ) { bufferBytes *= *bufferSize; if ( stream_.deviceBuffer ) free( stream_.deviceBuffer ); stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 ); if ( stream_.deviceBuffer == NULL ) { errorText_ = "RtApiDs::probeDeviceOpen: error allocating device buffer memory."; goto error; } } } // Allocate our DsHandle structures for the stream. if ( stream_.apiHandle == 0 ) { try { handle = new DsHandle; } catch ( std::bad_alloc& ) { errorText_ = "RtApiDs::probeDeviceOpen: error allocating AsioHandle memory."; goto error; } // Create a manual-reset event. handle->condition = CreateEvent( NULL, // no security TRUE, // manual-reset FALSE, // non-signaled initially NULL ); // unnamed stream_.apiHandle = (void *) handle; } else handle = (DsHandle *) stream_.apiHandle; handle->id[mode] = ohandle; handle->buffer[mode] = bhandle; handle->dsBufferSize[mode] = dsBufferSize; handle->dsPointerLeadTime[mode] = dsPointerLeadTime; stream_.device[mode] = device; stream_.state = STREAM_STOPPED; if ( stream_.mode == OUTPUT && mode == INPUT ) // We had already set up an output stream. stream_.mode = DUPLEX; else stream_.mode = mode; stream_.nBuffers = nBuffers; stream_.sampleRate = sampleRate; // Setup the buffer conversion information structure. if ( stream_.doConvertBuffer[mode] ) setConvertInfo( mode, firstChannel ); // Setup the callback thread. if ( stream_.callbackInfo.isRunning == false ) { unsigned threadId; stream_.callbackInfo.isRunning = true; stream_.callbackInfo.object = (void *) this; stream_.callbackInfo.thread = _beginthreadex( NULL, 0, &callbackHandler, &stream_.callbackInfo, 0, &threadId ); if ( stream_.callbackInfo.thread == 0 ) { errorText_ = "RtApiDs::probeDeviceOpen: error creating callback thread!"; goto error; } // Boost DS thread priority SetThreadPriority( (HANDLE) stream_.callbackInfo.thread, THREAD_PRIORITY_HIGHEST ); } return SUCCESS; error: if ( handle ) { if ( handle->buffer[0] ) { // the object pointer can be NULL and valid LPDIRECTSOUND object = (LPDIRECTSOUND) handle->id[0]; LPDIRECTSOUNDBUFFER buffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0]; if ( buffer ) buffer->Release(); object->Release(); } if ( handle->buffer[1] ) { LPDIRECTSOUNDCAPTURE object = (LPDIRECTSOUNDCAPTURE) handle->id[1]; LPDIRECTSOUNDCAPTUREBUFFER buffer = (LPDIRECTSOUNDCAPTUREBUFFER) handle->buffer[1]; if ( buffer ) buffer->Release(); object->Release(); } CloseHandle( handle->condition ); delete handle; stream_.apiHandle = 0; } for ( int i=0; i<2; i++ ) { if ( stream_.userBuffer[i] ) { free( stream_.userBuffer[i] ); stream_.userBuffer[i] = 0; } } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } stream_.state = STREAM_CLOSED; return FAILURE; } void RtApiDs :: closeStream() { if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiDs::closeStream(): no open stream to close!"; error( RtAudioError::WARNING ); return; } // Stop the callback thread. stream_.callbackInfo.isRunning = false; WaitForSingleObject( (HANDLE) stream_.callbackInfo.thread, INFINITE ); CloseHandle( (HANDLE) stream_.callbackInfo.thread ); DsHandle *handle = (DsHandle *) stream_.apiHandle; if ( handle ) { if ( handle->buffer[0] ) { // the object pointer can be NULL and valid LPDIRECTSOUND object = (LPDIRECTSOUND) handle->id[0]; LPDIRECTSOUNDBUFFER buffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0]; if ( buffer ) { buffer->Stop(); buffer->Release(); } object->Release(); } if ( handle->buffer[1] ) { LPDIRECTSOUNDCAPTURE object = (LPDIRECTSOUNDCAPTURE) handle->id[1]; LPDIRECTSOUNDCAPTUREBUFFER buffer = (LPDIRECTSOUNDCAPTUREBUFFER) handle->buffer[1]; if ( buffer ) { buffer->Stop(); buffer->Release(); } object->Release(); } CloseHandle( handle->condition ); delete handle; stream_.apiHandle = 0; } for ( int i=0; i<2; i++ ) { if ( stream_.userBuffer[i] ) { free( stream_.userBuffer[i] ); stream_.userBuffer[i] = 0; } } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } stream_.mode = UNINITIALIZED; stream_.state = STREAM_CLOSED; } void RtApiDs :: startStream() { verifyStream(); if ( stream_.state == STREAM_RUNNING ) { errorText_ = "RtApiDs::startStream(): the stream is already running!"; error( RtAudioError::WARNING ); return; } DsHandle *handle = (DsHandle *) stream_.apiHandle; // Increase scheduler frequency on lesser windows (a side-effect of // increasing timer accuracy). On greater windows (Win2K or later), // this is already in effect. timeBeginPeriod( 1 ); buffersRolling = false; duplexPrerollBytes = 0; if ( stream_.mode == DUPLEX ) { // 0.5 seconds of silence in DUPLEX mode while the devices spin up and synchronize. duplexPrerollBytes = (int) ( 0.5 * stream_.sampleRate * formatBytes( stream_.deviceFormat[1] ) * stream_.nDeviceChannels[1] ); } HRESULT result = 0; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { LPDIRECTSOUNDBUFFER buffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0]; result = buffer->Play( 0, 0, DSBPLAY_LOOPING ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::startStream: error (" << getErrorString( result ) << ") starting output buffer!"; errorText_ = errorStream_.str(); goto unlock; } } if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) { LPDIRECTSOUNDCAPTUREBUFFER buffer = (LPDIRECTSOUNDCAPTUREBUFFER) handle->buffer[1]; result = buffer->Start( DSCBSTART_LOOPING ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::startStream: error (" << getErrorString( result ) << ") starting input buffer!"; errorText_ = errorStream_.str(); goto unlock; } } handle->drainCounter = 0; handle->internalDrain = false; ResetEvent( handle->condition ); stream_.state = STREAM_RUNNING; unlock: if ( FAILED( result ) ) error( RtAudioError::SYSTEM_ERROR ); } void RtApiDs :: stopStream() { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiDs::stopStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } HRESULT result = 0; LPVOID audioPtr; DWORD dataLen; DsHandle *handle = (DsHandle *) stream_.apiHandle; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { if ( handle->drainCounter == 0 ) { handle->drainCounter = 2; WaitForSingleObject( handle->condition, INFINITE ); // block until signaled } stream_.state = STREAM_STOPPED; MUTEX_LOCK( &stream_.mutex ); // Stop the buffer and clear memory LPDIRECTSOUNDBUFFER buffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0]; result = buffer->Stop(); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::stopStream: error (" << getErrorString( result ) << ") stopping output buffer!"; errorText_ = errorStream_.str(); goto unlock; } // Lock the buffer and clear it so that if we start to play again, // we won't have old data playing. result = buffer->Lock( 0, handle->dsBufferSize[0], &audioPtr, &dataLen, NULL, NULL, 0 ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::stopStream: error (" << getErrorString( result ) << ") locking output buffer!"; errorText_ = errorStream_.str(); goto unlock; } // Zero the DS buffer ZeroMemory( audioPtr, dataLen ); // Unlock the DS buffer result = buffer->Unlock( audioPtr, dataLen, NULL, 0 ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::stopStream: error (" << getErrorString( result ) << ") unlocking output buffer!"; errorText_ = errorStream_.str(); goto unlock; } // If we start playing again, we must begin at beginning of buffer. handle->bufferPointer[0] = 0; } if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) { LPDIRECTSOUNDCAPTUREBUFFER buffer = (LPDIRECTSOUNDCAPTUREBUFFER) handle->buffer[1]; audioPtr = NULL; dataLen = 0; stream_.state = STREAM_STOPPED; if ( stream_.mode != DUPLEX ) MUTEX_LOCK( &stream_.mutex ); result = buffer->Stop(); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::stopStream: error (" << getErrorString( result ) << ") stopping input buffer!"; errorText_ = errorStream_.str(); goto unlock; } // Lock the buffer and clear it so that if we start to play again, // we won't have old data playing. result = buffer->Lock( 0, handle->dsBufferSize[1], &audioPtr, &dataLen, NULL, NULL, 0 ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::stopStream: error (" << getErrorString( result ) << ") locking input buffer!"; errorText_ = errorStream_.str(); goto unlock; } // Zero the DS buffer ZeroMemory( audioPtr, dataLen ); // Unlock the DS buffer result = buffer->Unlock( audioPtr, dataLen, NULL, 0 ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::stopStream: error (" << getErrorString( result ) << ") unlocking input buffer!"; errorText_ = errorStream_.str(); goto unlock; } // If we start recording again, we must begin at beginning of buffer. handle->bufferPointer[1] = 0; } unlock: timeEndPeriod( 1 ); // revert to normal scheduler frequency on lesser windows. MUTEX_UNLOCK( &stream_.mutex ); if ( FAILED( result ) ) error( RtAudioError::SYSTEM_ERROR ); } void RtApiDs :: abortStream() { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiDs::abortStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } DsHandle *handle = (DsHandle *) stream_.apiHandle; handle->drainCounter = 2; stopStream(); } void RtApiDs :: callbackEvent() { if ( stream_.state == STREAM_STOPPED || stream_.state == STREAM_STOPPING ) { Sleep( 50 ); // sleep 50 milliseconds return; } if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiDs::callbackEvent(): the stream is closed ... this shouldn't happen!"; error( RtAudioError::WARNING ); return; } CallbackInfo *info = (CallbackInfo *) &stream_.callbackInfo; DsHandle *handle = (DsHandle *) stream_.apiHandle; // Check if we were draining the stream and signal is finished. if ( handle->drainCounter > stream_.nBuffers + 2 ) { stream_.state = STREAM_STOPPING; if ( handle->internalDrain == false ) SetEvent( handle->condition ); else stopStream(); return; } // Invoke user callback to get fresh output data UNLESS we are // draining stream. if ( handle->drainCounter == 0 ) { RtAudioCallback callback = (RtAudioCallback) info->callback; double streamTime = getStreamTime(); RtAudioStreamStatus status = 0; if ( stream_.mode != INPUT && handle->xrun[0] == true ) { status |= RTAUDIO_OUTPUT_UNDERFLOW; handle->xrun[0] = false; } if ( stream_.mode != OUTPUT && handle->xrun[1] == true ) { status |= RTAUDIO_INPUT_OVERFLOW; handle->xrun[1] = false; } int cbReturnValue = callback( stream_.userBuffer[0], stream_.userBuffer[1], stream_.bufferSize, streamTime, status, info->userData ); if ( cbReturnValue == 2 ) { stream_.state = STREAM_STOPPING; handle->drainCounter = 2; abortStream(); return; } else if ( cbReturnValue == 1 ) { handle->drainCounter = 1; handle->internalDrain = true; } } HRESULT result; DWORD currentWritePointer, safeWritePointer; DWORD currentReadPointer, safeReadPointer; UINT nextWritePointer; LPVOID buffer1 = NULL; LPVOID buffer2 = NULL; DWORD bufferSize1 = 0; DWORD bufferSize2 = 0; char *buffer; long bufferBytes; MUTEX_LOCK( &stream_.mutex ); if ( stream_.state == STREAM_STOPPED ) { MUTEX_UNLOCK( &stream_.mutex ); return; } if ( buffersRolling == false ) { if ( stream_.mode == DUPLEX ) { //assert( handle->dsBufferSize[0] == handle->dsBufferSize[1] ); // It takes a while for the devices to get rolling. As a result, // there's no guarantee that the capture and write device pointers // will move in lockstep. Wait here for both devices to start // rolling, and then set our buffer pointers accordingly. // e.g. Crystal Drivers: the capture buffer starts up 5700 to 9600 // bytes later than the write buffer. // Stub: a serious risk of having a pre-emptive scheduling round // take place between the two GetCurrentPosition calls... but I'm // really not sure how to solve the problem. Temporarily boost to // Realtime priority, maybe; but I'm not sure what priority the // DirectSound service threads run at. We *should* be roughly // within a ms or so of correct. LPDIRECTSOUNDBUFFER dsWriteBuffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0]; LPDIRECTSOUNDCAPTUREBUFFER dsCaptureBuffer = (LPDIRECTSOUNDCAPTUREBUFFER) handle->buffer[1]; DWORD startSafeWritePointer, startSafeReadPointer; result = dsWriteBuffer->GetCurrentPosition( NULL, &startSafeWritePointer ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::callbackEvent: error (" << getErrorString( result ) << ") getting current write position!"; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } result = dsCaptureBuffer->GetCurrentPosition( NULL, &startSafeReadPointer ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::callbackEvent: error (" << getErrorString( result ) << ") getting current read position!"; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } while ( true ) { result = dsWriteBuffer->GetCurrentPosition( NULL, &safeWritePointer ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::callbackEvent: error (" << getErrorString( result ) << ") getting current write position!"; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } result = dsCaptureBuffer->GetCurrentPosition( NULL, &safeReadPointer ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::callbackEvent: error (" << getErrorString( result ) << ") getting current read position!"; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } if ( safeWritePointer != startSafeWritePointer && safeReadPointer != startSafeReadPointer ) break; Sleep( 1 ); } //assert( handle->dsBufferSize[0] == handle->dsBufferSize[1] ); handle->bufferPointer[0] = safeWritePointer + handle->dsPointerLeadTime[0]; if ( handle->bufferPointer[0] >= handle->dsBufferSize[0] ) handle->bufferPointer[0] -= handle->dsBufferSize[0]; handle->bufferPointer[1] = safeReadPointer; } else if ( stream_.mode == OUTPUT ) { // Set the proper nextWritePosition after initial startup. LPDIRECTSOUNDBUFFER dsWriteBuffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0]; result = dsWriteBuffer->GetCurrentPosition( ¤tWritePointer, &safeWritePointer ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::callbackEvent: error (" << getErrorString( result ) << ") getting current write position!"; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } handle->bufferPointer[0] = safeWritePointer + handle->dsPointerLeadTime[0]; if ( handle->bufferPointer[0] >= handle->dsBufferSize[0] ) handle->bufferPointer[0] -= handle->dsBufferSize[0]; } buffersRolling = true; } if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { LPDIRECTSOUNDBUFFER dsBuffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0]; if ( handle->drainCounter > 1 ) { // write zeros to the output stream bufferBytes = stream_.bufferSize * stream_.nUserChannels[0]; bufferBytes *= formatBytes( stream_.userFormat ); memset( stream_.userBuffer[0], 0, bufferBytes ); } // Setup parameters and do buffer conversion if necessary. if ( stream_.doConvertBuffer[0] ) { buffer = stream_.deviceBuffer; convertBuffer( buffer, stream_.userBuffer[0], stream_.convertInfo[0] ); bufferBytes = stream_.bufferSize * stream_.nDeviceChannels[0]; bufferBytes *= formatBytes( stream_.deviceFormat[0] ); } else { buffer = stream_.userBuffer[0]; bufferBytes = stream_.bufferSize * stream_.nUserChannels[0]; bufferBytes *= formatBytes( stream_.userFormat ); } // No byte swapping necessary in DirectSound implementation. // Ahhh ... windoze. 16-bit data is signed but 8-bit data is // unsigned. So, we need to convert our signed 8-bit data here to // unsigned. if ( stream_.deviceFormat[0] == RTAUDIO_SINT8 ) for ( int i=0; idsBufferSize[0]; nextWritePointer = handle->bufferPointer[0]; DWORD endWrite, leadPointer; while ( true ) { // Find out where the read and "safe write" pointers are. result = dsBuffer->GetCurrentPosition( ¤tWritePointer, &safeWritePointer ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::callbackEvent: error (" << getErrorString( result ) << ") getting current write position!"; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } // We will copy our output buffer into the region between // safeWritePointer and leadPointer. If leadPointer is not // beyond the next endWrite position, wait until it is. leadPointer = safeWritePointer + handle->dsPointerLeadTime[0]; //std::cout << "safeWritePointer = " << safeWritePointer << ", leadPointer = " << leadPointer << ", nextWritePointer = " << nextWritePointer << std::endl; if ( leadPointer > dsBufferSize ) leadPointer -= dsBufferSize; if ( leadPointer < nextWritePointer ) leadPointer += dsBufferSize; // unwrap offset endWrite = nextWritePointer + bufferBytes; // Check whether the entire write region is behind the play pointer. if ( leadPointer >= endWrite ) break; // If we are here, then we must wait until the leadPointer advances // beyond the end of our next write region. We use the // Sleep() function to suspend operation until that happens. double millis = ( endWrite - leadPointer ) * 1000.0; millis /= ( formatBytes( stream_.deviceFormat[0]) * stream_.nDeviceChannels[0] * stream_.sampleRate); if ( millis < 1.0 ) millis = 1.0; Sleep( (DWORD) millis ); } if ( dsPointerBetween( nextWritePointer, safeWritePointer, currentWritePointer, dsBufferSize ) || dsPointerBetween( endWrite, safeWritePointer, currentWritePointer, dsBufferSize ) ) { // We've strayed into the forbidden zone ... resync the read pointer. handle->xrun[0] = true; nextWritePointer = safeWritePointer + handle->dsPointerLeadTime[0] - bufferBytes; if ( nextWritePointer >= dsBufferSize ) nextWritePointer -= dsBufferSize; handle->bufferPointer[0] = nextWritePointer; endWrite = nextWritePointer + bufferBytes; } // Lock free space in the buffer result = dsBuffer->Lock( nextWritePointer, bufferBytes, &buffer1, &bufferSize1, &buffer2, &bufferSize2, 0 ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::callbackEvent: error (" << getErrorString( result ) << ") locking buffer during playback!"; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } // Copy our buffer into the DS buffer CopyMemory( buffer1, buffer, bufferSize1 ); if ( buffer2 != NULL ) CopyMemory( buffer2, buffer+bufferSize1, bufferSize2 ); // Update our buffer offset and unlock sound buffer dsBuffer->Unlock( buffer1, bufferSize1, buffer2, bufferSize2 ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::callbackEvent: error (" << getErrorString( result ) << ") unlocking buffer during playback!"; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } nextWritePointer = ( nextWritePointer + bufferSize1 + bufferSize2 ) % dsBufferSize; handle->bufferPointer[0] = nextWritePointer; } // Don't bother draining input if ( handle->drainCounter ) { handle->drainCounter++; goto unlock; } if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) { // Setup parameters. if ( stream_.doConvertBuffer[1] ) { buffer = stream_.deviceBuffer; bufferBytes = stream_.bufferSize * stream_.nDeviceChannels[1]; bufferBytes *= formatBytes( stream_.deviceFormat[1] ); } else { buffer = stream_.userBuffer[1]; bufferBytes = stream_.bufferSize * stream_.nUserChannels[1]; bufferBytes *= formatBytes( stream_.userFormat ); } LPDIRECTSOUNDCAPTUREBUFFER dsBuffer = (LPDIRECTSOUNDCAPTUREBUFFER) handle->buffer[1]; long nextReadPointer = handle->bufferPointer[1]; DWORD dsBufferSize = handle->dsBufferSize[1]; // Find out where the write and "safe read" pointers are. result = dsBuffer->GetCurrentPosition( ¤tReadPointer, &safeReadPointer ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::callbackEvent: error (" << getErrorString( result ) << ") getting current read position!"; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } if ( safeReadPointer < (DWORD)nextReadPointer ) safeReadPointer += dsBufferSize; // unwrap offset DWORD endRead = nextReadPointer + bufferBytes; // Handling depends on whether we are INPUT or DUPLEX. // If we're in INPUT mode then waiting is a good thing. If we're in DUPLEX mode, // then a wait here will drag the write pointers into the forbidden zone. // // In DUPLEX mode, rather than wait, we will back off the read pointer until // it's in a safe position. This causes dropouts, but it seems to be the only // practical way to sync up the read and write pointers reliably, given the // the very complex relationship between phase and increment of the read and write // pointers. // // In order to minimize audible dropouts in DUPLEX mode, we will // provide a pre-roll period of 0.5 seconds in which we return // zeros from the read buffer while the pointers sync up. if ( stream_.mode == DUPLEX ) { if ( safeReadPointer < endRead ) { if ( duplexPrerollBytes <= 0 ) { // Pre-roll time over. Be more agressive. int adjustment = endRead-safeReadPointer; handle->xrun[1] = true; // Two cases: // - large adjustments: we've probably run out of CPU cycles, so just resync exactly, // and perform fine adjustments later. // - small adjustments: back off by twice as much. if ( adjustment >= 2*bufferBytes ) nextReadPointer = safeReadPointer-2*bufferBytes; else nextReadPointer = safeReadPointer-bufferBytes-adjustment; if ( nextReadPointer < 0 ) nextReadPointer += dsBufferSize; } else { // In pre=roll time. Just do it. nextReadPointer = safeReadPointer - bufferBytes; while ( nextReadPointer < 0 ) nextReadPointer += dsBufferSize; } endRead = nextReadPointer + bufferBytes; } } else { // mode == INPUT while ( safeReadPointer < endRead && stream_.callbackInfo.isRunning ) { // See comments for playback. double millis = (endRead - safeReadPointer) * 1000.0; millis /= ( formatBytes(stream_.deviceFormat[1]) * stream_.nDeviceChannels[1] * stream_.sampleRate); if ( millis < 1.0 ) millis = 1.0; Sleep( (DWORD) millis ); // Wake up and find out where we are now. result = dsBuffer->GetCurrentPosition( ¤tReadPointer, &safeReadPointer ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::callbackEvent: error (" << getErrorString( result ) << ") getting current read position!"; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } if ( safeReadPointer < (DWORD)nextReadPointer ) safeReadPointer += dsBufferSize; // unwrap offset } } // Lock free space in the buffer result = dsBuffer->Lock( nextReadPointer, bufferBytes, &buffer1, &bufferSize1, &buffer2, &bufferSize2, 0 ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::callbackEvent: error (" << getErrorString( result ) << ") locking capture buffer!"; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } if ( duplexPrerollBytes <= 0 ) { // Copy our buffer into the DS buffer CopyMemory( buffer, buffer1, bufferSize1 ); if ( buffer2 != NULL ) CopyMemory( buffer+bufferSize1, buffer2, bufferSize2 ); } else { memset( buffer, 0, bufferSize1 ); if ( buffer2 != NULL ) memset( buffer + bufferSize1, 0, bufferSize2 ); duplexPrerollBytes -= bufferSize1 + bufferSize2; } // Update our buffer offset and unlock sound buffer nextReadPointer = ( nextReadPointer + bufferSize1 + bufferSize2 ) % dsBufferSize; dsBuffer->Unlock( buffer1, bufferSize1, buffer2, bufferSize2 ); if ( FAILED( result ) ) { errorStream_ << "RtApiDs::callbackEvent: error (" << getErrorString( result ) << ") unlocking capture buffer!"; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } handle->bufferPointer[1] = nextReadPointer; // No byte swapping necessary in DirectSound implementation. // If necessary, convert 8-bit data from unsigned to signed. if ( stream_.deviceFormat[1] == RTAUDIO_SINT8 ) for ( int j=0; jobject; bool* isRunning = &info->isRunning; while ( *isRunning == true ) { object->callbackEvent(); } _endthreadex( 0 ); return 0; } static BOOL CALLBACK deviceQueryCallback( LPGUID lpguid, LPCTSTR description, LPCTSTR /*module*/, LPVOID lpContext ) { struct DsProbeData& probeInfo = *(struct DsProbeData*) lpContext; std::vector& dsDevices = *probeInfo.dsDevices; HRESULT hr; bool validDevice = false; if ( probeInfo.isInput == true ) { DSCCAPS caps; LPDIRECTSOUNDCAPTURE object; hr = DirectSoundCaptureCreate( lpguid, &object, NULL ); if ( hr != DS_OK ) return TRUE; caps.dwSize = sizeof(caps); hr = object->GetCaps( &caps ); if ( hr == DS_OK ) { if ( caps.dwChannels > 0 && caps.dwFormats > 0 ) validDevice = true; } object->Release(); } else { DSCAPS caps; LPDIRECTSOUND object; hr = DirectSoundCreate( lpguid, &object, NULL ); if ( hr != DS_OK ) return TRUE; caps.dwSize = sizeof(caps); hr = object->GetCaps( &caps ); if ( hr == DS_OK ) { if ( caps.dwFlags & DSCAPS_PRIMARYMONO || caps.dwFlags & DSCAPS_PRIMARYSTEREO ) validDevice = true; } object->Release(); } // If good device, then save its name and guid. std::string name = convertCharPointerToStdString( description ); //if ( name == "Primary Sound Driver" || name == "Primary Sound Capture Driver" ) if ( lpguid == NULL ) name = "Default Device"; if ( validDevice ) { for ( unsigned int i=0; i #include // A structure to hold various information related to the ALSA API // implementation. struct AlsaHandle { snd_pcm_t *handles[2]; bool synchronized; bool xrun[2]; pthread_cond_t runnable_cv; bool runnable; AlsaHandle() :synchronized(false), runnable(false) { xrun[0] = false; xrun[1] = false; } }; static void *alsaCallbackHandler( void * ptr ); RtApiAlsa :: RtApiAlsa() { // Nothing to do here. } RtApiAlsa :: ~RtApiAlsa() { if ( stream_.state != STREAM_CLOSED ) closeStream(); } unsigned int RtApiAlsa :: getDeviceCount( void ) { unsigned nDevices = 0; int result, subdevice, card; char name[64]; snd_ctl_t *handle; // Count cards and devices card = -1; snd_card_next( &card ); while ( card >= 0 ) { sprintf( name, "hw:%d", card ); result = snd_ctl_open( &handle, name, 0 ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::getDeviceCount: control open, card = " << card << ", " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); goto nextcard; } subdevice = -1; while( 1 ) { result = snd_ctl_pcm_next_device( handle, &subdevice ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::getDeviceCount: control next device, card = " << card << ", " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); break; } if ( subdevice < 0 ) break; nDevices++; } nextcard: snd_ctl_close( handle ); snd_card_next( &card ); } result = snd_ctl_open( &handle, "default", 0 ); if (result == 0) { nDevices++; snd_ctl_close( handle ); } return nDevices; } RtAudio::DeviceInfo RtApiAlsa :: getDeviceInfo( unsigned int device ) { RtAudio::DeviceInfo info; info.probed = false; unsigned nDevices = 0; int result, subdevice, card; char name[64]; snd_ctl_t *chandle; // Count cards and devices card = -1; subdevice = -1; snd_card_next( &card ); while ( card >= 0 ) { sprintf( name, "hw:%d", card ); result = snd_ctl_open( &chandle, name, SND_CTL_NONBLOCK ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::getDeviceInfo: control open, card = " << card << ", " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); goto nextcard; } subdevice = -1; while( 1 ) { result = snd_ctl_pcm_next_device( chandle, &subdevice ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::getDeviceInfo: control next device, card = " << card << ", " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); break; } if ( subdevice < 0 ) break; if ( nDevices == device ) { sprintf( name, "hw:%d,%d", card, subdevice ); goto foundDevice; } nDevices++; } nextcard: snd_ctl_close( chandle ); snd_card_next( &card ); } result = snd_ctl_open( &chandle, "default", SND_CTL_NONBLOCK ); if ( result == 0 ) { if ( nDevices == device ) { strcpy( name, "default" ); goto foundDevice; } nDevices++; } if ( nDevices == 0 ) { errorText_ = "RtApiAlsa::getDeviceInfo: no devices found!"; error( RtAudioError::INVALID_USE ); return info; } if ( device >= nDevices ) { errorText_ = "RtApiAlsa::getDeviceInfo: device ID is invalid!"; error( RtAudioError::INVALID_USE ); return info; } foundDevice: // If a stream is already open, we cannot probe the stream devices. // Thus, use the saved results. if ( stream_.state != STREAM_CLOSED && ( stream_.device[0] == device || stream_.device[1] == device ) ) { snd_ctl_close( chandle ); if ( device >= devices_.size() ) { errorText_ = "RtApiAlsa::getDeviceInfo: device ID was not present before stream was opened."; error( RtAudioError::WARNING ); return info; } return devices_[ device ]; } int openMode = SND_PCM_ASYNC; snd_pcm_stream_t stream; snd_pcm_info_t *pcminfo; snd_pcm_info_alloca( &pcminfo ); snd_pcm_t *phandle; snd_pcm_hw_params_t *params; snd_pcm_hw_params_alloca( ¶ms ); // First try for playback unless default device (which has subdev -1) stream = SND_PCM_STREAM_PLAYBACK; snd_pcm_info_set_stream( pcminfo, stream ); if ( subdevice != -1 ) { snd_pcm_info_set_device( pcminfo, subdevice ); snd_pcm_info_set_subdevice( pcminfo, 0 ); result = snd_ctl_pcm_info( chandle, pcminfo ); if ( result < 0 ) { // Device probably doesn't support playback. goto captureProbe; } } result = snd_pcm_open( &phandle, name, stream, openMode | SND_PCM_NONBLOCK ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::getDeviceInfo: snd_pcm_open error for device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); goto captureProbe; } // The device is open ... fill the parameter structure. result = snd_pcm_hw_params_any( phandle, params ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::getDeviceInfo: snd_pcm_hw_params error for device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); goto captureProbe; } // Get output channel information. unsigned int value; result = snd_pcm_hw_params_get_channels_max( params, &value ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::getDeviceInfo: error getting device (" << name << ") output channels, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); goto captureProbe; } info.outputChannels = value; snd_pcm_close( phandle ); captureProbe: stream = SND_PCM_STREAM_CAPTURE; snd_pcm_info_set_stream( pcminfo, stream ); // Now try for capture unless default device (with subdev = -1) if ( subdevice != -1 ) { result = snd_ctl_pcm_info( chandle, pcminfo ); snd_ctl_close( chandle ); if ( result < 0 ) { // Device probably doesn't support capture. if ( info.outputChannels == 0 ) return info; goto probeParameters; } } else snd_ctl_close( chandle ); result = snd_pcm_open( &phandle, name, stream, openMode | SND_PCM_NONBLOCK); if ( result < 0 ) { errorStream_ << "RtApiAlsa::getDeviceInfo: snd_pcm_open error for device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); if ( info.outputChannels == 0 ) return info; goto probeParameters; } // The device is open ... fill the parameter structure. result = snd_pcm_hw_params_any( phandle, params ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::getDeviceInfo: snd_pcm_hw_params error for device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); if ( info.outputChannels == 0 ) return info; goto probeParameters; } result = snd_pcm_hw_params_get_channels_max( params, &value ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::getDeviceInfo: error getting device (" << name << ") input channels, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); if ( info.outputChannels == 0 ) return info; goto probeParameters; } info.inputChannels = value; snd_pcm_close( phandle ); // If device opens for both playback and capture, we determine the channels. if ( info.outputChannels > 0 && info.inputChannels > 0 ) info.duplexChannels = (info.outputChannels > info.inputChannels) ? info.inputChannels : info.outputChannels; // ALSA doesn't provide default devices so we'll use the first available one. if ( device == 0 && info.outputChannels > 0 ) info.isDefaultOutput = true; if ( device == 0 && info.inputChannels > 0 ) info.isDefaultInput = true; probeParameters: // At this point, we just need to figure out the supported data // formats and sample rates. We'll proceed by opening the device in // the direction with the maximum number of channels, or playback if // they are equal. This might limit our sample rate options, but so // be it. if ( info.outputChannels >= info.inputChannels ) stream = SND_PCM_STREAM_PLAYBACK; else stream = SND_PCM_STREAM_CAPTURE; snd_pcm_info_set_stream( pcminfo, stream ); result = snd_pcm_open( &phandle, name, stream, openMode | SND_PCM_NONBLOCK); if ( result < 0 ) { errorStream_ << "RtApiAlsa::getDeviceInfo: snd_pcm_open error for device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // The device is open ... fill the parameter structure. result = snd_pcm_hw_params_any( phandle, params ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::getDeviceInfo: snd_pcm_hw_params error for device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // Test our discrete set of sample rate values. info.sampleRates.clear(); for ( unsigned int i=0; i info.preferredSampleRate ) ) info.preferredSampleRate = SAMPLE_RATES[i]; } } if ( info.sampleRates.size() == 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::getDeviceInfo: no supported sample rates found for device (" << name << ")."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // Probe the supported data formats ... we don't care about endian-ness just yet snd_pcm_format_t format; info.nativeFormats = 0; format = SND_PCM_FORMAT_S8; if ( snd_pcm_hw_params_test_format( phandle, params, format ) == 0 ) info.nativeFormats |= RTAUDIO_SINT8; format = SND_PCM_FORMAT_S16; if ( snd_pcm_hw_params_test_format( phandle, params, format ) == 0 ) info.nativeFormats |= RTAUDIO_SINT16; format = SND_PCM_FORMAT_S24; if ( snd_pcm_hw_params_test_format( phandle, params, format ) == 0 ) info.nativeFormats |= RTAUDIO_SINT24; format = SND_PCM_FORMAT_S32; if ( snd_pcm_hw_params_test_format( phandle, params, format ) == 0 ) info.nativeFormats |= RTAUDIO_SINT32; format = SND_PCM_FORMAT_FLOAT; if ( snd_pcm_hw_params_test_format( phandle, params, format ) == 0 ) info.nativeFormats |= RTAUDIO_FLOAT32; format = SND_PCM_FORMAT_FLOAT64; if ( snd_pcm_hw_params_test_format( phandle, params, format ) == 0 ) info.nativeFormats |= RTAUDIO_FLOAT64; // Check that we have at least one supported format if ( info.nativeFormats == 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::getDeviceInfo: pcm device (" << name << ") data format not supported by RtAudio."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // Get the device name char *cardname; result = snd_card_get_name( card, &cardname ); if ( result >= 0 ) { sprintf( name, "hw:%s,%d", cardname, subdevice ); free( cardname ); } info.name = name; // That's all ... close the device and return snd_pcm_close( phandle ); info.probed = true; return info; } void RtApiAlsa :: saveDeviceInfo( void ) { devices_.clear(); unsigned int nDevices = getDeviceCount(); devices_.resize( nDevices ); for ( unsigned int i=0; iflags & RTAUDIO_ALSA_USE_DEFAULT ) snprintf(name, sizeof(name), "%s", "default"); else { // Count cards and devices card = -1; snd_card_next( &card ); while ( card >= 0 ) { sprintf( name, "hw:%d", card ); result = snd_ctl_open( &chandle, name, SND_CTL_NONBLOCK ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::probeDeviceOpen: control open, card = " << card << ", " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); return FAILURE; } subdevice = -1; while( 1 ) { result = snd_ctl_pcm_next_device( chandle, &subdevice ); if ( result < 0 ) break; if ( subdevice < 0 ) break; if ( nDevices == device ) { sprintf( name, "hw:%d,%d", card, subdevice ); snd_ctl_close( chandle ); goto foundDevice; } nDevices++; } snd_ctl_close( chandle ); snd_card_next( &card ); } result = snd_ctl_open( &chandle, "default", SND_CTL_NONBLOCK ); if ( result == 0 ) { if ( nDevices == device ) { strcpy( name, "default" ); goto foundDevice; } nDevices++; } if ( nDevices == 0 ) { // This should not happen because a check is made before this function is called. errorText_ = "RtApiAlsa::probeDeviceOpen: no devices found!"; return FAILURE; } if ( device >= nDevices ) { // This should not happen because a check is made before this function is called. errorText_ = "RtApiAlsa::probeDeviceOpen: device ID is invalid!"; return FAILURE; } } foundDevice: // The getDeviceInfo() function will not work for a device that is // already open. Thus, we'll probe the system before opening a // stream and save the results for use by getDeviceInfo(). if ( mode == OUTPUT || ( mode == INPUT && stream_.mode != OUTPUT ) ) // only do once this->saveDeviceInfo(); snd_pcm_stream_t stream; if ( mode == OUTPUT ) stream = SND_PCM_STREAM_PLAYBACK; else stream = SND_PCM_STREAM_CAPTURE; snd_pcm_t *phandle; int openMode = SND_PCM_ASYNC; result = snd_pcm_open( &phandle, name, stream, openMode ); if ( result < 0 ) { if ( mode == OUTPUT ) errorStream_ << "RtApiAlsa::probeDeviceOpen: pcm device (" << name << ") won't open for output."; else errorStream_ << "RtApiAlsa::probeDeviceOpen: pcm device (" << name << ") won't open for input."; errorText_ = errorStream_.str(); return FAILURE; } // Fill the parameter structure. snd_pcm_hw_params_t *hw_params; snd_pcm_hw_params_alloca( &hw_params ); result = snd_pcm_hw_params_any( phandle, hw_params ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: error getting pcm device (" << name << ") parameters, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); return FAILURE; } #if defined(__RTAUDIO_DEBUG__) fprintf( stderr, "\nRtApiAlsa: dump hardware params just after device open:\n\n" ); snd_pcm_hw_params_dump( hw_params, out ); #endif // Set access ... check user preference. if ( options && options->flags & RTAUDIO_NONINTERLEAVED ) { stream_.userInterleaved = false; result = snd_pcm_hw_params_set_access( phandle, hw_params, SND_PCM_ACCESS_RW_NONINTERLEAVED ); if ( result < 0 ) { result = snd_pcm_hw_params_set_access( phandle, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED ); stream_.deviceInterleaved[mode] = true; } else stream_.deviceInterleaved[mode] = false; } else { stream_.userInterleaved = true; result = snd_pcm_hw_params_set_access( phandle, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED ); if ( result < 0 ) { result = snd_pcm_hw_params_set_access( phandle, hw_params, SND_PCM_ACCESS_RW_NONINTERLEAVED ); stream_.deviceInterleaved[mode] = false; } else stream_.deviceInterleaved[mode] = true; } if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: error setting pcm device (" << name << ") access, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); return FAILURE; } // Determine how to set the device format. stream_.userFormat = format; snd_pcm_format_t deviceFormat = SND_PCM_FORMAT_UNKNOWN; if ( format == RTAUDIO_SINT8 ) deviceFormat = SND_PCM_FORMAT_S8; else if ( format == RTAUDIO_SINT16 ) deviceFormat = SND_PCM_FORMAT_S16; else if ( format == RTAUDIO_SINT24 ) deviceFormat = SND_PCM_FORMAT_S24; else if ( format == RTAUDIO_SINT32 ) deviceFormat = SND_PCM_FORMAT_S32; else if ( format == RTAUDIO_FLOAT32 ) deviceFormat = SND_PCM_FORMAT_FLOAT; else if ( format == RTAUDIO_FLOAT64 ) deviceFormat = SND_PCM_FORMAT_FLOAT64; if ( snd_pcm_hw_params_test_format(phandle, hw_params, deviceFormat) == 0) { stream_.deviceFormat[mode] = format; goto setFormat; } // The user requested format is not natively supported by the device. deviceFormat = SND_PCM_FORMAT_FLOAT64; if ( snd_pcm_hw_params_test_format( phandle, hw_params, deviceFormat ) == 0 ) { stream_.deviceFormat[mode] = RTAUDIO_FLOAT64; goto setFormat; } deviceFormat = SND_PCM_FORMAT_FLOAT; if ( snd_pcm_hw_params_test_format(phandle, hw_params, deviceFormat ) == 0 ) { stream_.deviceFormat[mode] = RTAUDIO_FLOAT32; goto setFormat; } deviceFormat = SND_PCM_FORMAT_S32; if ( snd_pcm_hw_params_test_format(phandle, hw_params, deviceFormat ) == 0 ) { stream_.deviceFormat[mode] = RTAUDIO_SINT32; goto setFormat; } deviceFormat = SND_PCM_FORMAT_S24; if ( snd_pcm_hw_params_test_format(phandle, hw_params, deviceFormat ) == 0 ) { stream_.deviceFormat[mode] = RTAUDIO_SINT24; goto setFormat; } deviceFormat = SND_PCM_FORMAT_S16; if ( snd_pcm_hw_params_test_format(phandle, hw_params, deviceFormat ) == 0 ) { stream_.deviceFormat[mode] = RTAUDIO_SINT16; goto setFormat; } deviceFormat = SND_PCM_FORMAT_S8; if ( snd_pcm_hw_params_test_format(phandle, hw_params, deviceFormat ) == 0 ) { stream_.deviceFormat[mode] = RTAUDIO_SINT8; goto setFormat; } // If we get here, no supported format was found. snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: pcm device " << device << " data format not supported by RtAudio."; errorText_ = errorStream_.str(); return FAILURE; setFormat: result = snd_pcm_hw_params_set_format( phandle, hw_params, deviceFormat ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: error setting pcm device (" << name << ") data format, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); return FAILURE; } // Determine whether byte-swaping is necessary. stream_.doByteSwap[mode] = false; if ( deviceFormat != SND_PCM_FORMAT_S8 ) { result = snd_pcm_format_cpu_endian( deviceFormat ); if ( result == 0 ) stream_.doByteSwap[mode] = true; else if (result < 0) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: error getting pcm device (" << name << ") endian-ness, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); return FAILURE; } } // Set the sample rate. result = snd_pcm_hw_params_set_rate_near( phandle, hw_params, (unsigned int*) &sampleRate, 0 ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: error setting sample rate on device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); return FAILURE; } // Determine the number of channels for this device. We support a possible // minimum device channel number > than the value requested by the user. stream_.nUserChannels[mode] = channels; unsigned int value; result = snd_pcm_hw_params_get_channels_max( hw_params, &value ); unsigned int deviceChannels = value; if ( result < 0 || deviceChannels < channels + firstChannel ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: requested channel parameters not supported by device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); return FAILURE; } result = snd_pcm_hw_params_get_channels_min( hw_params, &value ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: error getting minimum channels for device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); return FAILURE; } deviceChannels = value; if ( deviceChannels < channels + firstChannel ) deviceChannels = channels + firstChannel; stream_.nDeviceChannels[mode] = deviceChannels; // Set the device channels. result = snd_pcm_hw_params_set_channels( phandle, hw_params, deviceChannels ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: error setting channels for device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); return FAILURE; } // Set the buffer (or period) size. int dir = 0; snd_pcm_uframes_t periodSize = *bufferSize; result = snd_pcm_hw_params_set_period_size_near( phandle, hw_params, &periodSize, &dir ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: error setting period size for device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); return FAILURE; } *bufferSize = periodSize; // Set the buffer number, which in ALSA is referred to as the "period". unsigned int periods = 0; if ( options && options->flags & RTAUDIO_MINIMIZE_LATENCY ) periods = 2; if ( options && options->numberOfBuffers > 0 ) periods = options->numberOfBuffers; if ( periods < 2 ) periods = 4; // a fairly safe default value result = snd_pcm_hw_params_set_periods_near( phandle, hw_params, &periods, &dir ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: error setting periods for device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); return FAILURE; } // If attempting to setup a duplex stream, the bufferSize parameter // MUST be the same in both directions! if ( stream_.mode == OUTPUT && mode == INPUT && *bufferSize != stream_.bufferSize ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: system error setting buffer size for duplex stream on device (" << name << ")."; errorText_ = errorStream_.str(); return FAILURE; } stream_.bufferSize = *bufferSize; // Install the hardware configuration result = snd_pcm_hw_params( phandle, hw_params ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: error installing hardware configuration on device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); return FAILURE; } #if defined(__RTAUDIO_DEBUG__) fprintf(stderr, "\nRtApiAlsa: dump hardware params after installation:\n\n"); snd_pcm_hw_params_dump( hw_params, out ); #endif // Set the software configuration to fill buffers with zeros and prevent device stopping on xruns. snd_pcm_sw_params_t *sw_params = NULL; snd_pcm_sw_params_alloca( &sw_params ); snd_pcm_sw_params_current( phandle, sw_params ); snd_pcm_sw_params_set_start_threshold( phandle, sw_params, *bufferSize ); snd_pcm_sw_params_set_stop_threshold( phandle, sw_params, ULONG_MAX ); snd_pcm_sw_params_set_silence_threshold( phandle, sw_params, 0 ); // The following two settings were suggested by Theo Veenker //snd_pcm_sw_params_set_avail_min( phandle, sw_params, *bufferSize ); //snd_pcm_sw_params_set_xfer_align( phandle, sw_params, 1 ); // here are two options for a fix //snd_pcm_sw_params_set_silence_size( phandle, sw_params, ULONG_MAX ); snd_pcm_uframes_t val; snd_pcm_sw_params_get_boundary( sw_params, &val ); snd_pcm_sw_params_set_silence_size( phandle, sw_params, val ); result = snd_pcm_sw_params( phandle, sw_params ); if ( result < 0 ) { snd_pcm_close( phandle ); errorStream_ << "RtApiAlsa::probeDeviceOpen: error installing software configuration on device (" << name << "), " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); return FAILURE; } #if defined(__RTAUDIO_DEBUG__) fprintf(stderr, "\nRtApiAlsa: dump software params after installation:\n\n"); snd_pcm_sw_params_dump( sw_params, out ); #endif // Set flags for buffer conversion stream_.doConvertBuffer[mode] = false; if ( stream_.userFormat != stream_.deviceFormat[mode] ) stream_.doConvertBuffer[mode] = true; if ( stream_.nUserChannels[mode] < stream_.nDeviceChannels[mode] ) stream_.doConvertBuffer[mode] = true; if ( stream_.userInterleaved != stream_.deviceInterleaved[mode] && stream_.nUserChannels[mode] > 1 ) stream_.doConvertBuffer[mode] = true; // Allocate the ApiHandle if necessary and then save. AlsaHandle *apiInfo = 0; if ( stream_.apiHandle == 0 ) { try { apiInfo = (AlsaHandle *) new AlsaHandle; } catch ( std::bad_alloc& ) { errorText_ = "RtApiAlsa::probeDeviceOpen: error allocating AlsaHandle memory."; goto error; } if ( pthread_cond_init( &apiInfo->runnable_cv, NULL ) ) { errorText_ = "RtApiAlsa::probeDeviceOpen: error initializing pthread condition variable."; goto error; } stream_.apiHandle = (void *) apiInfo; apiInfo->handles[0] = 0; apiInfo->handles[1] = 0; } else { apiInfo = (AlsaHandle *) stream_.apiHandle; } apiInfo->handles[mode] = phandle; phandle = 0; // Allocate necessary internal buffers. unsigned long bufferBytes; bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat ); stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 ); if ( stream_.userBuffer[mode] == NULL ) { errorText_ = "RtApiAlsa::probeDeviceOpen: error allocating user buffer memory."; goto error; } if ( stream_.doConvertBuffer[mode] ) { bool makeBuffer = true; bufferBytes = stream_.nDeviceChannels[mode] * formatBytes( stream_.deviceFormat[mode] ); if ( mode == INPUT ) { if ( stream_.mode == OUTPUT && stream_.deviceBuffer ) { unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] ); if ( bufferBytes <= bytesOut ) makeBuffer = false; } } if ( makeBuffer ) { bufferBytes *= *bufferSize; if ( stream_.deviceBuffer ) free( stream_.deviceBuffer ); stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 ); if ( stream_.deviceBuffer == NULL ) { errorText_ = "RtApiAlsa::probeDeviceOpen: error allocating device buffer memory."; goto error; } } } stream_.sampleRate = sampleRate; stream_.nBuffers = periods; stream_.device[mode] = device; stream_.state = STREAM_STOPPED; // Setup the buffer conversion information structure. if ( stream_.doConvertBuffer[mode] ) setConvertInfo( mode, firstChannel ); // Setup thread if necessary. if ( stream_.mode == OUTPUT && mode == INPUT ) { // We had already set up an output stream. stream_.mode = DUPLEX; // Link the streams if possible. apiInfo->synchronized = false; if ( snd_pcm_link( apiInfo->handles[0], apiInfo->handles[1] ) == 0 ) apiInfo->synchronized = true; else { errorText_ = "RtApiAlsa::probeDeviceOpen: unable to synchronize input and output devices."; error( RtAudioError::WARNING ); } } else { stream_.mode = mode; // Setup callback thread. stream_.callbackInfo.object = (void *) this; // Set the thread attributes for joinable and realtime scheduling // priority (optional). The higher priority will only take affect // if the program is run as root or suid. Note, under Linux // processes with CAP_SYS_NICE privilege, a user can change // scheduling policy and priority (thus need not be root). See // POSIX "capabilities". pthread_attr_t attr; pthread_attr_init( &attr ); pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_JOINABLE ); #ifdef SCHED_RR // Undefined with some OSes (eg: NetBSD 1.6.x with GNU Pthread) if ( options && options->flags & RTAUDIO_SCHEDULE_REALTIME ) { // We previously attempted to increase the audio callback priority // to SCHED_RR here via the attributes. However, while no errors // were reported in doing so, it did not work. So, now this is // done in the alsaCallbackHandler function. stream_.callbackInfo.doRealtime = true; int priority = options->priority; int min = sched_get_priority_min( SCHED_RR ); int max = sched_get_priority_max( SCHED_RR ); if ( priority < min ) priority = min; else if ( priority > max ) priority = max; stream_.callbackInfo.priority = priority; } #endif stream_.callbackInfo.isRunning = true; result = pthread_create( &stream_.callbackInfo.thread, &attr, alsaCallbackHandler, &stream_.callbackInfo ); pthread_attr_destroy( &attr ); if ( result ) { stream_.callbackInfo.isRunning = false; errorText_ = "RtApiAlsa::error creating callback thread!"; goto error; } } return SUCCESS; error: if ( apiInfo ) { pthread_cond_destroy( &apiInfo->runnable_cv ); if ( apiInfo->handles[0] ) snd_pcm_close( apiInfo->handles[0] ); if ( apiInfo->handles[1] ) snd_pcm_close( apiInfo->handles[1] ); delete apiInfo; stream_.apiHandle = 0; } if ( phandle) snd_pcm_close( phandle ); for ( int i=0; i<2; i++ ) { if ( stream_.userBuffer[i] ) { free( stream_.userBuffer[i] ); stream_.userBuffer[i] = 0; } } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } stream_.state = STREAM_CLOSED; return FAILURE; } void RtApiAlsa :: closeStream() { if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiAlsa::closeStream(): no open stream to close!"; error( RtAudioError::WARNING ); return; } AlsaHandle *apiInfo = (AlsaHandle *) stream_.apiHandle; stream_.callbackInfo.isRunning = false; MUTEX_LOCK( &stream_.mutex ); if ( stream_.state == STREAM_STOPPED ) { apiInfo->runnable = true; pthread_cond_signal( &apiInfo->runnable_cv ); } MUTEX_UNLOCK( &stream_.mutex ); pthread_join( stream_.callbackInfo.thread, NULL ); if ( stream_.state == STREAM_RUNNING ) { stream_.state = STREAM_STOPPED; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) snd_pcm_drop( apiInfo->handles[0] ); if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) snd_pcm_drop( apiInfo->handles[1] ); } if ( apiInfo ) { pthread_cond_destroy( &apiInfo->runnable_cv ); if ( apiInfo->handles[0] ) snd_pcm_close( apiInfo->handles[0] ); if ( apiInfo->handles[1] ) snd_pcm_close( apiInfo->handles[1] ); delete apiInfo; stream_.apiHandle = 0; } for ( int i=0; i<2; i++ ) { if ( stream_.userBuffer[i] ) { free( stream_.userBuffer[i] ); stream_.userBuffer[i] = 0; } } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } stream_.mode = UNINITIALIZED; stream_.state = STREAM_CLOSED; } void RtApiAlsa :: startStream() { // This method calls snd_pcm_prepare if the device isn't already in that state. verifyStream(); if ( stream_.state == STREAM_RUNNING ) { errorText_ = "RtApiAlsa::startStream(): the stream is already running!"; error( RtAudioError::WARNING ); return; } MUTEX_LOCK( &stream_.mutex ); int result = 0; snd_pcm_state_t state; AlsaHandle *apiInfo = (AlsaHandle *) stream_.apiHandle; snd_pcm_t **handle = (snd_pcm_t **) apiInfo->handles; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { state = snd_pcm_state( handle[0] ); if ( state != SND_PCM_STATE_PREPARED ) { result = snd_pcm_prepare( handle[0] ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::startStream: error preparing output pcm device, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); goto unlock; } } } if ( ( stream_.mode == INPUT || stream_.mode == DUPLEX ) && !apiInfo->synchronized ) { result = snd_pcm_drop(handle[1]); // fix to remove stale data received since device has been open state = snd_pcm_state( handle[1] ); if ( state != SND_PCM_STATE_PREPARED ) { result = snd_pcm_prepare( handle[1] ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::startStream: error preparing input pcm device, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); goto unlock; } } } stream_.state = STREAM_RUNNING; unlock: apiInfo->runnable = true; pthread_cond_signal( &apiInfo->runnable_cv ); MUTEX_UNLOCK( &stream_.mutex ); if ( result >= 0 ) return; error( RtAudioError::SYSTEM_ERROR ); } void RtApiAlsa :: stopStream() { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiAlsa::stopStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } stream_.state = STREAM_STOPPED; MUTEX_LOCK( &stream_.mutex ); int result = 0; AlsaHandle *apiInfo = (AlsaHandle *) stream_.apiHandle; snd_pcm_t **handle = (snd_pcm_t **) apiInfo->handles; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { if ( apiInfo->synchronized ) result = snd_pcm_drop( handle[0] ); else result = snd_pcm_drain( handle[0] ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::stopStream: error draining output pcm device, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); goto unlock; } } if ( ( stream_.mode == INPUT || stream_.mode == DUPLEX ) && !apiInfo->synchronized ) { result = snd_pcm_drop( handle[1] ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::stopStream: error stopping input pcm device, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); goto unlock; } } unlock: apiInfo->runnable = false; // fixes high CPU usage when stopped MUTEX_UNLOCK( &stream_.mutex ); if ( result >= 0 ) return; error( RtAudioError::SYSTEM_ERROR ); } void RtApiAlsa :: abortStream() { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiAlsa::abortStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } stream_.state = STREAM_STOPPED; MUTEX_LOCK( &stream_.mutex ); int result = 0; AlsaHandle *apiInfo = (AlsaHandle *) stream_.apiHandle; snd_pcm_t **handle = (snd_pcm_t **) apiInfo->handles; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { result = snd_pcm_drop( handle[0] ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::abortStream: error aborting output pcm device, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); goto unlock; } } if ( ( stream_.mode == INPUT || stream_.mode == DUPLEX ) && !apiInfo->synchronized ) { result = snd_pcm_drop( handle[1] ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::abortStream: error aborting input pcm device, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); goto unlock; } } unlock: apiInfo->runnable = false; // fixes high CPU usage when stopped MUTEX_UNLOCK( &stream_.mutex ); if ( result >= 0 ) return; error( RtAudioError::SYSTEM_ERROR ); } void RtApiAlsa :: callbackEvent() { AlsaHandle *apiInfo = (AlsaHandle *) stream_.apiHandle; if ( stream_.state == STREAM_STOPPED ) { MUTEX_LOCK( &stream_.mutex ); while ( !apiInfo->runnable ) pthread_cond_wait( &apiInfo->runnable_cv, &stream_.mutex ); if ( stream_.state != STREAM_RUNNING ) { MUTEX_UNLOCK( &stream_.mutex ); return; } MUTEX_UNLOCK( &stream_.mutex ); } if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiAlsa::callbackEvent(): the stream is closed ... this shouldn't happen!"; error( RtAudioError::WARNING ); return; } int doStopStream = 0; RtAudioCallback callback = (RtAudioCallback) stream_.callbackInfo.callback; double streamTime = getStreamTime(); RtAudioStreamStatus status = 0; if ( stream_.mode != INPUT && apiInfo->xrun[0] == true ) { status |= RTAUDIO_OUTPUT_UNDERFLOW; apiInfo->xrun[0] = false; } if ( stream_.mode != OUTPUT && apiInfo->xrun[1] == true ) { status |= RTAUDIO_INPUT_OVERFLOW; apiInfo->xrun[1] = false; } doStopStream = callback( stream_.userBuffer[0], stream_.userBuffer[1], stream_.bufferSize, streamTime, status, stream_.callbackInfo.userData ); if ( doStopStream == 2 ) { abortStream(); return; } MUTEX_LOCK( &stream_.mutex ); // The state might change while waiting on a mutex. if ( stream_.state == STREAM_STOPPED ) goto unlock; int result; char *buffer; int channels; snd_pcm_t **handle; snd_pcm_sframes_t frames; RtAudioFormat format; handle = (snd_pcm_t **) apiInfo->handles; if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) { // Setup parameters. if ( stream_.doConvertBuffer[1] ) { buffer = stream_.deviceBuffer; channels = stream_.nDeviceChannels[1]; format = stream_.deviceFormat[1]; } else { buffer = stream_.userBuffer[1]; channels = stream_.nUserChannels[1]; format = stream_.userFormat; } // Read samples from device in interleaved/non-interleaved format. if ( stream_.deviceInterleaved[1] ) result = snd_pcm_readi( handle[1], buffer, stream_.bufferSize ); else { void *bufs[channels]; size_t offset = stream_.bufferSize * formatBytes( format ); for ( int i=0; ixrun[1] = true; result = snd_pcm_prepare( handle[1] ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::callbackEvent: error preparing device after overrun, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); } } else { errorStream_ << "RtApiAlsa::callbackEvent: error, current state is " << snd_pcm_state_name( state ) << ", " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); } } else { errorStream_ << "RtApiAlsa::callbackEvent: audio read error, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); } error( RtAudioError::WARNING ); goto tryOutput; } // Do byte swapping if necessary. if ( stream_.doByteSwap[1] ) byteSwapBuffer( buffer, stream_.bufferSize * channels, format ); // Do buffer conversion if necessary. if ( stream_.doConvertBuffer[1] ) convertBuffer( stream_.userBuffer[1], stream_.deviceBuffer, stream_.convertInfo[1] ); // Check stream latency result = snd_pcm_delay( handle[1], &frames ); if ( result == 0 && frames > 0 ) stream_.latency[1] = frames; } tryOutput: if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { // Setup parameters and do buffer conversion if necessary. if ( stream_.doConvertBuffer[0] ) { buffer = stream_.deviceBuffer; convertBuffer( buffer, stream_.userBuffer[0], stream_.convertInfo[0] ); channels = stream_.nDeviceChannels[0]; format = stream_.deviceFormat[0]; } else { buffer = stream_.userBuffer[0]; channels = stream_.nUserChannels[0]; format = stream_.userFormat; } // Do byte swapping if necessary. if ( stream_.doByteSwap[0] ) byteSwapBuffer(buffer, stream_.bufferSize * channels, format); // Write samples to device in interleaved/non-interleaved format. if ( stream_.deviceInterleaved[0] ) result = snd_pcm_writei( handle[0], buffer, stream_.bufferSize ); else { void *bufs[channels]; size_t offset = stream_.bufferSize * formatBytes( format ); for ( int i=0; ixrun[0] = true; result = snd_pcm_prepare( handle[0] ); if ( result < 0 ) { errorStream_ << "RtApiAlsa::callbackEvent: error preparing device after underrun, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); } else errorText_ = "RtApiAlsa::callbackEvent: audio write error, underrun."; } else { errorStream_ << "RtApiAlsa::callbackEvent: error, current state is " << snd_pcm_state_name( state ) << ", " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); } } else { errorStream_ << "RtApiAlsa::callbackEvent: audio write error, " << snd_strerror( result ) << "."; errorText_ = errorStream_.str(); } error( RtAudioError::WARNING ); goto unlock; } // Check stream latency result = snd_pcm_delay( handle[0], &frames ); if ( result == 0 && frames > 0 ) stream_.latency[0] = frames; } unlock: MUTEX_UNLOCK( &stream_.mutex ); RtApi::tickStreamTime(); if ( doStopStream == 1 ) this->stopStream(); } static void *alsaCallbackHandler( void *ptr ) { CallbackInfo *info = (CallbackInfo *) ptr; RtApiAlsa *object = (RtApiAlsa *) info->object; bool *isRunning = &info->isRunning; #ifdef SCHED_RR // Undefined with some OSes (eg: NetBSD 1.6.x with GNU Pthread) if ( info->doRealtime ) { pthread_t tID = pthread_self(); // ID of this thread sched_param prio = { info->priority }; // scheduling priority of thread pthread_setschedparam( tID, SCHED_RR, &prio ); } #endif while ( *isRunning == true ) { pthread_testcancel(); object->callbackEvent(); } pthread_exit( NULL ); } //******************** End of __LINUX_ALSA__ *********************// #endif #if defined(__LINUX_PULSE__) // Code written by Peter Meerwald, pmeerw@pmeerw.net // and Tristan Matthews. #include #include #include static const unsigned int SUPPORTED_SAMPLERATES[] = { 8000, 16000, 22050, 32000, 44100, 48000, 96000, 0}; struct rtaudio_pa_format_mapping_t { RtAudioFormat rtaudio_format; pa_sample_format_t pa_format; }; static const rtaudio_pa_format_mapping_t supported_sampleformats[] = { {RTAUDIO_SINT16, PA_SAMPLE_S16LE}, {RTAUDIO_SINT32, PA_SAMPLE_S32LE}, {RTAUDIO_FLOAT32, PA_SAMPLE_FLOAT32LE}, {0, PA_SAMPLE_INVALID}}; struct PulseAudioHandle { pa_simple *s_play; pa_simple *s_rec; pthread_t thread; pthread_cond_t runnable_cv; bool runnable; PulseAudioHandle() : s_play(0), s_rec(0), runnable(false) { } }; RtApiPulse::~RtApiPulse() { if ( stream_.state != STREAM_CLOSED ) closeStream(); } unsigned int RtApiPulse::getDeviceCount( void ) { return 1; } RtAudio::DeviceInfo RtApiPulse::getDeviceInfo( unsigned int /*device*/ ) { RtAudio::DeviceInfo info; info.probed = true; info.name = "PulseAudio"; info.outputChannels = 2; info.inputChannels = 2; info.duplexChannels = 2; info.isDefaultOutput = true; info.isDefaultInput = true; for ( const unsigned int *sr = SUPPORTED_SAMPLERATES; *sr; ++sr ) info.sampleRates.push_back( *sr ); info.preferredSampleRate = 48000; info.nativeFormats = RTAUDIO_SINT16 | RTAUDIO_SINT32 | RTAUDIO_FLOAT32; return info; } static void *pulseaudio_callback( void * user ) { CallbackInfo *cbi = static_cast( user ); RtApiPulse *context = static_cast( cbi->object ); volatile bool *isRunning = &cbi->isRunning; while ( *isRunning ) { pthread_testcancel(); context->callbackEvent(); } pthread_exit( NULL ); } void RtApiPulse::closeStream( void ) { PulseAudioHandle *pah = static_cast( stream_.apiHandle ); stream_.callbackInfo.isRunning = false; if ( pah ) { MUTEX_LOCK( &stream_.mutex ); if ( stream_.state == STREAM_STOPPED ) { pah->runnable = true; pthread_cond_signal( &pah->runnable_cv ); } MUTEX_UNLOCK( &stream_.mutex ); pthread_join( pah->thread, 0 ); if ( pah->s_play ) { pa_simple_flush( pah->s_play, NULL ); pa_simple_free( pah->s_play ); } if ( pah->s_rec ) pa_simple_free( pah->s_rec ); pthread_cond_destroy( &pah->runnable_cv ); delete pah; stream_.apiHandle = 0; } if ( stream_.userBuffer[0] ) { free( stream_.userBuffer[0] ); stream_.userBuffer[0] = 0; } if ( stream_.userBuffer[1] ) { free( stream_.userBuffer[1] ); stream_.userBuffer[1] = 0; } stream_.state = STREAM_CLOSED; stream_.mode = UNINITIALIZED; } void RtApiPulse::callbackEvent( void ) { PulseAudioHandle *pah = static_cast( stream_.apiHandle ); if ( stream_.state == STREAM_STOPPED ) { MUTEX_LOCK( &stream_.mutex ); while ( !pah->runnable ) pthread_cond_wait( &pah->runnable_cv, &stream_.mutex ); if ( stream_.state != STREAM_RUNNING ) { MUTEX_UNLOCK( &stream_.mutex ); return; } MUTEX_UNLOCK( &stream_.mutex ); } if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiPulse::callbackEvent(): the stream is closed ... " "this shouldn't happen!"; error( RtAudioError::WARNING ); return; } RtAudioCallback callback = (RtAudioCallback) stream_.callbackInfo.callback; double streamTime = getStreamTime(); RtAudioStreamStatus status = 0; int doStopStream = callback( stream_.userBuffer[OUTPUT], stream_.userBuffer[INPUT], stream_.bufferSize, streamTime, status, stream_.callbackInfo.userData ); if ( doStopStream == 2 ) { abortStream(); return; } MUTEX_LOCK( &stream_.mutex ); void *pulse_in = stream_.doConvertBuffer[INPUT] ? stream_.deviceBuffer : stream_.userBuffer[INPUT]; void *pulse_out = stream_.doConvertBuffer[OUTPUT] ? stream_.deviceBuffer : stream_.userBuffer[OUTPUT]; if ( stream_.state != STREAM_RUNNING ) goto unlock; int pa_error; size_t bytes; if (stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { if ( stream_.doConvertBuffer[OUTPUT] ) { convertBuffer( stream_.deviceBuffer, stream_.userBuffer[OUTPUT], stream_.convertInfo[OUTPUT] ); bytes = stream_.nDeviceChannels[OUTPUT] * stream_.bufferSize * formatBytes( stream_.deviceFormat[OUTPUT] ); } else bytes = stream_.nUserChannels[OUTPUT] * stream_.bufferSize * formatBytes( stream_.userFormat ); if ( pa_simple_write( pah->s_play, pulse_out, bytes, &pa_error ) < 0 ) { errorStream_ << "RtApiPulse::callbackEvent: audio write error, " << pa_strerror( pa_error ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); } } if ( stream_.mode == INPUT || stream_.mode == DUPLEX) { if ( stream_.doConvertBuffer[INPUT] ) bytes = stream_.nDeviceChannels[INPUT] * stream_.bufferSize * formatBytes( stream_.deviceFormat[INPUT] ); else bytes = stream_.nUserChannels[INPUT] * stream_.bufferSize * formatBytes( stream_.userFormat ); if ( pa_simple_read( pah->s_rec, pulse_in, bytes, &pa_error ) < 0 ) { errorStream_ << "RtApiPulse::callbackEvent: audio read error, " << pa_strerror( pa_error ) << "."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); } if ( stream_.doConvertBuffer[INPUT] ) { convertBuffer( stream_.userBuffer[INPUT], stream_.deviceBuffer, stream_.convertInfo[INPUT] ); } } unlock: MUTEX_UNLOCK( &stream_.mutex ); RtApi::tickStreamTime(); if ( doStopStream == 1 ) stopStream(); } void RtApiPulse::startStream( void ) { PulseAudioHandle *pah = static_cast( stream_.apiHandle ); if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiPulse::startStream(): the stream is not open!"; error( RtAudioError::INVALID_USE ); return; } if ( stream_.state == STREAM_RUNNING ) { errorText_ = "RtApiPulse::startStream(): the stream is already running!"; error( RtAudioError::WARNING ); return; } MUTEX_LOCK( &stream_.mutex ); stream_.state = STREAM_RUNNING; pah->runnable = true; pthread_cond_signal( &pah->runnable_cv ); MUTEX_UNLOCK( &stream_.mutex ); } void RtApiPulse::stopStream( void ) { PulseAudioHandle *pah = static_cast( stream_.apiHandle ); if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiPulse::stopStream(): the stream is not open!"; error( RtAudioError::INVALID_USE ); return; } if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiPulse::stopStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } stream_.state = STREAM_STOPPED; MUTEX_LOCK( &stream_.mutex ); if ( pah && pah->s_play ) { int pa_error; if ( pa_simple_drain( pah->s_play, &pa_error ) < 0 ) { errorStream_ << "RtApiPulse::stopStream: error draining output device, " << pa_strerror( pa_error ) << "."; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } } stream_.state = STREAM_STOPPED; MUTEX_UNLOCK( &stream_.mutex ); } void RtApiPulse::abortStream( void ) { PulseAudioHandle *pah = static_cast( stream_.apiHandle ); if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiPulse::abortStream(): the stream is not open!"; error( RtAudioError::INVALID_USE ); return; } if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiPulse::abortStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } stream_.state = STREAM_STOPPED; MUTEX_LOCK( &stream_.mutex ); if ( pah && pah->s_play ) { int pa_error; if ( pa_simple_flush( pah->s_play, &pa_error ) < 0 ) { errorStream_ << "RtApiPulse::abortStream: error flushing output device, " << pa_strerror( pa_error ) << "."; errorText_ = errorStream_.str(); MUTEX_UNLOCK( &stream_.mutex ); error( RtAudioError::SYSTEM_ERROR ); return; } } stream_.state = STREAM_STOPPED; MUTEX_UNLOCK( &stream_.mutex ); } bool RtApiPulse::probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int *bufferSize, RtAudio::StreamOptions *options ) { PulseAudioHandle *pah = 0; unsigned long bufferBytes = 0; pa_sample_spec ss; if ( device != 0 ) return false; if ( mode != INPUT && mode != OUTPUT ) return false; if ( channels != 1 && channels != 2 ) { errorText_ = "RtApiPulse::probeDeviceOpen: unsupported number of channels."; return false; } ss.channels = channels; if ( firstChannel != 0 ) return false; bool sr_found = false; for ( const unsigned int *sr = SUPPORTED_SAMPLERATES; *sr; ++sr ) { if ( sampleRate == *sr ) { sr_found = true; stream_.sampleRate = sampleRate; ss.rate = sampleRate; break; } } if ( !sr_found ) { errorText_ = "RtApiPulse::probeDeviceOpen: unsupported sample rate."; return false; } bool sf_found = 0; for ( const rtaudio_pa_format_mapping_t *sf = supported_sampleformats; sf->rtaudio_format && sf->pa_format != PA_SAMPLE_INVALID; ++sf ) { if ( format == sf->rtaudio_format ) { sf_found = true; stream_.userFormat = sf->rtaudio_format; stream_.deviceFormat[mode] = stream_.userFormat; ss.format = sf->pa_format; break; } } if ( !sf_found ) { // Use internal data format conversion. stream_.userFormat = format; stream_.deviceFormat[mode] = RTAUDIO_FLOAT32; ss.format = PA_SAMPLE_FLOAT32LE; } // Set other stream parameters. if ( options && options->flags & RTAUDIO_NONINTERLEAVED ) stream_.userInterleaved = false; else stream_.userInterleaved = true; stream_.deviceInterleaved[mode] = true; stream_.nBuffers = 1; stream_.doByteSwap[mode] = false; stream_.nUserChannels[mode] = channels; stream_.nDeviceChannels[mode] = channels + firstChannel; stream_.channelOffset[mode] = 0; std::string streamName = "RtAudio"; // Set flags for buffer conversion. stream_.doConvertBuffer[mode] = false; if ( stream_.userFormat != stream_.deviceFormat[mode] ) stream_.doConvertBuffer[mode] = true; if ( stream_.nUserChannels[mode] < stream_.nDeviceChannels[mode] ) stream_.doConvertBuffer[mode] = true; // Allocate necessary internal buffers. bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat ); stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 ); if ( stream_.userBuffer[mode] == NULL ) { errorText_ = "RtApiPulse::probeDeviceOpen: error allocating user buffer memory."; goto error; } stream_.bufferSize = *bufferSize; if ( stream_.doConvertBuffer[mode] ) { bool makeBuffer = true; bufferBytes = stream_.nDeviceChannels[mode] * formatBytes( stream_.deviceFormat[mode] ); if ( mode == INPUT ) { if ( stream_.mode == OUTPUT && stream_.deviceBuffer ) { unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] ); if ( bufferBytes <= bytesOut ) makeBuffer = false; } } if ( makeBuffer ) { bufferBytes *= *bufferSize; if ( stream_.deviceBuffer ) free( stream_.deviceBuffer ); stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 ); if ( stream_.deviceBuffer == NULL ) { errorText_ = "RtApiPulse::probeDeviceOpen: error allocating device buffer memory."; goto error; } } } stream_.device[mode] = device; // Setup the buffer conversion information structure. if ( stream_.doConvertBuffer[mode] ) setConvertInfo( mode, firstChannel ); if ( !stream_.apiHandle ) { PulseAudioHandle *pah = new PulseAudioHandle; if ( !pah ) { errorText_ = "RtApiPulse::probeDeviceOpen: error allocating memory for handle."; goto error; } stream_.apiHandle = pah; if ( pthread_cond_init( &pah->runnable_cv, NULL ) != 0 ) { errorText_ = "RtApiPulse::probeDeviceOpen: error creating condition variable."; goto error; } } pah = static_cast( stream_.apiHandle ); int error; if ( options && !options->streamName.empty() ) streamName = options->streamName; switch ( mode ) { case INPUT: pa_buffer_attr buffer_attr; buffer_attr.fragsize = bufferBytes; buffer_attr.maxlength = -1; pah->s_rec = pa_simple_new( NULL, streamName.c_str(), PA_STREAM_RECORD, NULL, "Record", &ss, NULL, &buffer_attr, &error ); if ( !pah->s_rec ) { errorText_ = "RtApiPulse::probeDeviceOpen: error connecting input to PulseAudio server."; goto error; } break; case OUTPUT: pah->s_play = pa_simple_new( NULL, streamName.c_str(), PA_STREAM_PLAYBACK, NULL, "Playback", &ss, NULL, NULL, &error ); if ( !pah->s_play ) { errorText_ = "RtApiPulse::probeDeviceOpen: error connecting output to PulseAudio server."; goto error; } break; default: goto error; } if ( stream_.mode == UNINITIALIZED ) stream_.mode = mode; else if ( stream_.mode == mode ) goto error; else stream_.mode = DUPLEX; if ( !stream_.callbackInfo.isRunning ) { stream_.callbackInfo.object = this; stream_.callbackInfo.isRunning = true; if ( pthread_create( &pah->thread, NULL, pulseaudio_callback, (void *)&stream_.callbackInfo) != 0 ) { errorText_ = "RtApiPulse::probeDeviceOpen: error creating thread."; goto error; } } stream_.state = STREAM_STOPPED; return true; error: if ( pah && stream_.callbackInfo.isRunning ) { pthread_cond_destroy( &pah->runnable_cv ); delete pah; stream_.apiHandle = 0; } for ( int i=0; i<2; i++ ) { if ( stream_.userBuffer[i] ) { free( stream_.userBuffer[i] ); stream_.userBuffer[i] = 0; } } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } return FAILURE; } //******************** End of __LINUX_PULSE__ *********************// #endif #if defined(__LINUX_OSS__) #include #include #include #include #include #include #include static void *ossCallbackHandler(void * ptr); // A structure to hold various information related to the OSS API // implementation. struct OssHandle { int id[2]; // device ids bool xrun[2]; bool triggered; pthread_cond_t runnable; OssHandle() :triggered(false) { id[0] = 0; id[1] = 0; xrun[0] = false; xrun[1] = false; } }; RtApiOss :: RtApiOss() { // Nothing to do here. } RtApiOss :: ~RtApiOss() { if ( stream_.state != STREAM_CLOSED ) closeStream(); } unsigned int RtApiOss :: getDeviceCount( void ) { int mixerfd = open( "/dev/mixer", O_RDWR, 0 ); if ( mixerfd == -1 ) { errorText_ = "RtApiOss::getDeviceCount: error opening '/dev/mixer'."; error( RtAudioError::WARNING ); return 0; } oss_sysinfo sysinfo; if ( ioctl( mixerfd, SNDCTL_SYSINFO, &sysinfo ) == -1 ) { close( mixerfd ); errorText_ = "RtApiOss::getDeviceCount: error getting sysinfo, OSS version >= 4.0 is required."; error( RtAudioError::WARNING ); return 0; } close( mixerfd ); return sysinfo.numaudios; } RtAudio::DeviceInfo RtApiOss :: getDeviceInfo( unsigned int device ) { RtAudio::DeviceInfo info; info.probed = false; int mixerfd = open( "/dev/mixer", O_RDWR, 0 ); if ( mixerfd == -1 ) { errorText_ = "RtApiOss::getDeviceInfo: error opening '/dev/mixer'."; error( RtAudioError::WARNING ); return info; } oss_sysinfo sysinfo; int result = ioctl( mixerfd, SNDCTL_SYSINFO, &sysinfo ); if ( result == -1 ) { close( mixerfd ); errorText_ = "RtApiOss::getDeviceInfo: error getting sysinfo, OSS version >= 4.0 is required."; error( RtAudioError::WARNING ); return info; } unsigned nDevices = sysinfo.numaudios; if ( nDevices == 0 ) { close( mixerfd ); errorText_ = "RtApiOss::getDeviceInfo: no devices found!"; error( RtAudioError::INVALID_USE ); return info; } if ( device >= nDevices ) { close( mixerfd ); errorText_ = "RtApiOss::getDeviceInfo: device ID is invalid!"; error( RtAudioError::INVALID_USE ); return info; } oss_audioinfo ainfo; ainfo.dev = device; result = ioctl( mixerfd, SNDCTL_AUDIOINFO, &ainfo ); close( mixerfd ); if ( result == -1 ) { errorStream_ << "RtApiOss::getDeviceInfo: error getting device (" << ainfo.name << ") info."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // Probe channels if ( ainfo.caps & PCM_CAP_OUTPUT ) info.outputChannels = ainfo.max_channels; if ( ainfo.caps & PCM_CAP_INPUT ) info.inputChannels = ainfo.max_channels; if ( ainfo.caps & PCM_CAP_DUPLEX ) { if ( info.outputChannels > 0 && info.inputChannels > 0 && ainfo.caps & PCM_CAP_DUPLEX ) info.duplexChannels = (info.outputChannels > info.inputChannels) ? info.inputChannels : info.outputChannels; } // Probe data formats ... do for input unsigned long mask = ainfo.iformats; if ( mask & AFMT_S16_LE || mask & AFMT_S16_BE ) info.nativeFormats |= RTAUDIO_SINT16; if ( mask & AFMT_S8 ) info.nativeFormats |= RTAUDIO_SINT8; if ( mask & AFMT_S32_LE || mask & AFMT_S32_BE ) info.nativeFormats |= RTAUDIO_SINT32; #ifdef AFMT_FLOAT if ( mask & AFMT_FLOAT ) info.nativeFormats |= RTAUDIO_FLOAT32; #endif if ( mask & AFMT_S24_LE || mask & AFMT_S24_BE ) info.nativeFormats |= RTAUDIO_SINT24; // Check that we have at least one supported format if ( info.nativeFormats == 0 ) { errorStream_ << "RtApiOss::getDeviceInfo: device (" << ainfo.name << ") data format not supported by RtAudio."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); return info; } // Probe the supported sample rates. info.sampleRates.clear(); if ( ainfo.nrates ) { for ( unsigned int i=0; i info.preferredSampleRate ) ) info.preferredSampleRate = SAMPLE_RATES[k]; break; } } } } else { // Check min and max rate values; for ( unsigned int k=0; k= (int) SAMPLE_RATES[k] ) { info.sampleRates.push_back( SAMPLE_RATES[k] ); if ( !info.preferredSampleRate || ( SAMPLE_RATES[k] <= 48000 && SAMPLE_RATES[k] > info.preferredSampleRate ) ) info.preferredSampleRate = SAMPLE_RATES[k]; } } } if ( info.sampleRates.size() == 0 ) { errorStream_ << "RtApiOss::getDeviceInfo: no supported sample rates found for device (" << ainfo.name << ")."; errorText_ = errorStream_.str(); error( RtAudioError::WARNING ); } else { info.probed = true; info.name = ainfo.name; } return info; } bool RtApiOss :: probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int *bufferSize, RtAudio::StreamOptions *options ) { int mixerfd = open( "/dev/mixer", O_RDWR, 0 ); if ( mixerfd == -1 ) { errorText_ = "RtApiOss::probeDeviceOpen: error opening '/dev/mixer'."; return FAILURE; } oss_sysinfo sysinfo; int result = ioctl( mixerfd, SNDCTL_SYSINFO, &sysinfo ); if ( result == -1 ) { close( mixerfd ); errorText_ = "RtApiOss::probeDeviceOpen: error getting sysinfo, OSS version >= 4.0 is required."; return FAILURE; } unsigned nDevices = sysinfo.numaudios; if ( nDevices == 0 ) { // This should not happen because a check is made before this function is called. close( mixerfd ); errorText_ = "RtApiOss::probeDeviceOpen: no devices found!"; return FAILURE; } if ( device >= nDevices ) { // This should not happen because a check is made before this function is called. close( mixerfd ); errorText_ = "RtApiOss::probeDeviceOpen: device ID is invalid!"; return FAILURE; } oss_audioinfo ainfo; ainfo.dev = device; result = ioctl( mixerfd, SNDCTL_AUDIOINFO, &ainfo ); close( mixerfd ); if ( result == -1 ) { errorStream_ << "RtApiOss::getDeviceInfo: error getting device (" << ainfo.name << ") info."; errorText_ = errorStream_.str(); return FAILURE; } // Check if device supports input or output if ( ( mode == OUTPUT && !( ainfo.caps & PCM_CAP_OUTPUT ) ) || ( mode == INPUT && !( ainfo.caps & PCM_CAP_INPUT ) ) ) { if ( mode == OUTPUT ) errorStream_ << "RtApiOss::probeDeviceOpen: device (" << ainfo.name << ") does not support output."; else errorStream_ << "RtApiOss::probeDeviceOpen: device (" << ainfo.name << ") does not support input."; errorText_ = errorStream_.str(); return FAILURE; } int flags = 0; OssHandle *handle = (OssHandle *) stream_.apiHandle; if ( mode == OUTPUT ) flags |= O_WRONLY; else { // mode == INPUT if (stream_.mode == OUTPUT && stream_.device[0] == device) { // We just set the same device for playback ... close and reopen for duplex (OSS only). close( handle->id[0] ); handle->id[0] = 0; if ( !( ainfo.caps & PCM_CAP_DUPLEX ) ) { errorStream_ << "RtApiOss::probeDeviceOpen: device (" << ainfo.name << ") does not support duplex mode."; errorText_ = errorStream_.str(); return FAILURE; } // Check that the number previously set channels is the same. if ( stream_.nUserChannels[0] != channels ) { errorStream_ << "RtApiOss::probeDeviceOpen: input/output channels must be equal for OSS duplex device (" << ainfo.name << ")."; errorText_ = errorStream_.str(); return FAILURE; } flags |= O_RDWR; } else flags |= O_RDONLY; } // Set exclusive access if specified. if ( options && options->flags & RTAUDIO_HOG_DEVICE ) flags |= O_EXCL; // Try to open the device. int fd; fd = open( ainfo.devnode, flags, 0 ); if ( fd == -1 ) { if ( errno == EBUSY ) errorStream_ << "RtApiOss::probeDeviceOpen: device (" << ainfo.name << ") is busy."; else errorStream_ << "RtApiOss::probeDeviceOpen: error opening device (" << ainfo.name << ")."; errorText_ = errorStream_.str(); return FAILURE; } // For duplex operation, specifically set this mode (this doesn't seem to work). /* if ( flags | O_RDWR ) { result = ioctl( fd, SNDCTL_DSP_SETDUPLEX, NULL ); if ( result == -1) { errorStream_ << "RtApiOss::probeDeviceOpen: error setting duplex mode for device (" << ainfo.name << ")."; errorText_ = errorStream_.str(); return FAILURE; } } */ // Check the device channel support. stream_.nUserChannels[mode] = channels; if ( ainfo.max_channels < (int)(channels + firstChannel) ) { close( fd ); errorStream_ << "RtApiOss::probeDeviceOpen: the device (" << ainfo.name << ") does not support requested channel parameters."; errorText_ = errorStream_.str(); return FAILURE; } // Set the number of channels. int deviceChannels = channels + firstChannel; result = ioctl( fd, SNDCTL_DSP_CHANNELS, &deviceChannels ); if ( result == -1 || deviceChannels < (int)(channels + firstChannel) ) { close( fd ); errorStream_ << "RtApiOss::probeDeviceOpen: error setting channel parameters on device (" << ainfo.name << ")."; errorText_ = errorStream_.str(); return FAILURE; } stream_.nDeviceChannels[mode] = deviceChannels; // Get the data format mask int mask; result = ioctl( fd, SNDCTL_DSP_GETFMTS, &mask ); if ( result == -1 ) { close( fd ); errorStream_ << "RtApiOss::probeDeviceOpen: error getting device (" << ainfo.name << ") data formats."; errorText_ = errorStream_.str(); return FAILURE; } // Determine how to set the device format. stream_.userFormat = format; int deviceFormat = -1; stream_.doByteSwap[mode] = false; if ( format == RTAUDIO_SINT8 ) { if ( mask & AFMT_S8 ) { deviceFormat = AFMT_S8; stream_.deviceFormat[mode] = RTAUDIO_SINT8; } } else if ( format == RTAUDIO_SINT16 ) { if ( mask & AFMT_S16_NE ) { deviceFormat = AFMT_S16_NE; stream_.deviceFormat[mode] = RTAUDIO_SINT16; } else if ( mask & AFMT_S16_OE ) { deviceFormat = AFMT_S16_OE; stream_.deviceFormat[mode] = RTAUDIO_SINT16; stream_.doByteSwap[mode] = true; } } else if ( format == RTAUDIO_SINT24 ) { if ( mask & AFMT_S24_NE ) { deviceFormat = AFMT_S24_NE; stream_.deviceFormat[mode] = RTAUDIO_SINT24; } else if ( mask & AFMT_S24_OE ) { deviceFormat = AFMT_S24_OE; stream_.deviceFormat[mode] = RTAUDIO_SINT24; stream_.doByteSwap[mode] = true; } } else if ( format == RTAUDIO_SINT32 ) { if ( mask & AFMT_S32_NE ) { deviceFormat = AFMT_S32_NE; stream_.deviceFormat[mode] = RTAUDIO_SINT32; } else if ( mask & AFMT_S32_OE ) { deviceFormat = AFMT_S32_OE; stream_.deviceFormat[mode] = RTAUDIO_SINT32; stream_.doByteSwap[mode] = true; } } if ( deviceFormat == -1 ) { // The user requested format is not natively supported by the device. if ( mask & AFMT_S16_NE ) { deviceFormat = AFMT_S16_NE; stream_.deviceFormat[mode] = RTAUDIO_SINT16; } else if ( mask & AFMT_S32_NE ) { deviceFormat = AFMT_S32_NE; stream_.deviceFormat[mode] = RTAUDIO_SINT32; } else if ( mask & AFMT_S24_NE ) { deviceFormat = AFMT_S24_NE; stream_.deviceFormat[mode] = RTAUDIO_SINT24; } else if ( mask & AFMT_S16_OE ) { deviceFormat = AFMT_S16_OE; stream_.deviceFormat[mode] = RTAUDIO_SINT16; stream_.doByteSwap[mode] = true; } else if ( mask & AFMT_S32_OE ) { deviceFormat = AFMT_S32_OE; stream_.deviceFormat[mode] = RTAUDIO_SINT32; stream_.doByteSwap[mode] = true; } else if ( mask & AFMT_S24_OE ) { deviceFormat = AFMT_S24_OE; stream_.deviceFormat[mode] = RTAUDIO_SINT24; stream_.doByteSwap[mode] = true; } else if ( mask & AFMT_S8) { deviceFormat = AFMT_S8; stream_.deviceFormat[mode] = RTAUDIO_SINT8; } } if ( stream_.deviceFormat[mode] == 0 ) { // This really shouldn't happen ... close( fd ); errorStream_ << "RtApiOss::probeDeviceOpen: device (" << ainfo.name << ") data format not supported by RtAudio."; errorText_ = errorStream_.str(); return FAILURE; } // Set the data format. int temp = deviceFormat; result = ioctl( fd, SNDCTL_DSP_SETFMT, &deviceFormat ); if ( result == -1 || deviceFormat != temp ) { close( fd ); errorStream_ << "RtApiOss::probeDeviceOpen: error setting data format on device (" << ainfo.name << ")."; errorText_ = errorStream_.str(); return FAILURE; } // Attempt to set the buffer size. According to OSS, the minimum // number of buffers is two. The supposed minimum buffer size is 16 // bytes, so that will be our lower bound. The argument to this // call is in the form 0xMMMMSSSS (hex), where the buffer size (in // bytes) is given as 2^SSSS and the number of buffers as 2^MMMM. // We'll check the actual value used near the end of the setup // procedure. int ossBufferBytes = *bufferSize * formatBytes( stream_.deviceFormat[mode] ) * deviceChannels; if ( ossBufferBytes < 16 ) ossBufferBytes = 16; int buffers = 0; if ( options ) buffers = options->numberOfBuffers; if ( options && options->flags & RTAUDIO_MINIMIZE_LATENCY ) buffers = 2; if ( buffers < 2 ) buffers = 3; temp = ((int) buffers << 16) + (int)( log10( (double)ossBufferBytes ) / log10( 2.0 ) ); result = ioctl( fd, SNDCTL_DSP_SETFRAGMENT, &temp ); if ( result == -1 ) { close( fd ); errorStream_ << "RtApiOss::probeDeviceOpen: error setting buffer size on device (" << ainfo.name << ")."; errorText_ = errorStream_.str(); return FAILURE; } stream_.nBuffers = buffers; // Save buffer size (in sample frames). *bufferSize = ossBufferBytes / ( formatBytes(stream_.deviceFormat[mode]) * deviceChannels ); stream_.bufferSize = *bufferSize; // Set the sample rate. int srate = sampleRate; result = ioctl( fd, SNDCTL_DSP_SPEED, &srate ); if ( result == -1 ) { close( fd ); errorStream_ << "RtApiOss::probeDeviceOpen: error setting sample rate (" << sampleRate << ") on device (" << ainfo.name << ")."; errorText_ = errorStream_.str(); return FAILURE; } // Verify the sample rate setup worked. if ( abs( srate - (int)sampleRate ) > 100 ) { close( fd ); errorStream_ << "RtApiOss::probeDeviceOpen: device (" << ainfo.name << ") does not support sample rate (" << sampleRate << ")."; errorText_ = errorStream_.str(); return FAILURE; } stream_.sampleRate = sampleRate; if ( mode == INPUT && stream_.mode == OUTPUT && stream_.device[0] == device) { // We're doing duplex setup here. stream_.deviceFormat[0] = stream_.deviceFormat[1]; stream_.nDeviceChannels[0] = deviceChannels; } // Set interleaving parameters. stream_.userInterleaved = true; stream_.deviceInterleaved[mode] = true; if ( options && options->flags & RTAUDIO_NONINTERLEAVED ) stream_.userInterleaved = false; // Set flags for buffer conversion stream_.doConvertBuffer[mode] = false; if ( stream_.userFormat != stream_.deviceFormat[mode] ) stream_.doConvertBuffer[mode] = true; if ( stream_.nUserChannels[mode] < stream_.nDeviceChannels[mode] ) stream_.doConvertBuffer[mode] = true; if ( stream_.userInterleaved != stream_.deviceInterleaved[mode] && stream_.nUserChannels[mode] > 1 ) stream_.doConvertBuffer[mode] = true; // Allocate the stream handles if necessary and then save. if ( stream_.apiHandle == 0 ) { try { handle = new OssHandle; } catch ( std::bad_alloc& ) { errorText_ = "RtApiOss::probeDeviceOpen: error allocating OssHandle memory."; goto error; } if ( pthread_cond_init( &handle->runnable, NULL ) ) { errorText_ = "RtApiOss::probeDeviceOpen: error initializing pthread condition variable."; goto error; } stream_.apiHandle = (void *) handle; } else { handle = (OssHandle *) stream_.apiHandle; } handle->id[mode] = fd; // Allocate necessary internal buffers. unsigned long bufferBytes; bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat ); stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 ); if ( stream_.userBuffer[mode] == NULL ) { errorText_ = "RtApiOss::probeDeviceOpen: error allocating user buffer memory."; goto error; } if ( stream_.doConvertBuffer[mode] ) { bool makeBuffer = true; bufferBytes = stream_.nDeviceChannels[mode] * formatBytes( stream_.deviceFormat[mode] ); if ( mode == INPUT ) { if ( stream_.mode == OUTPUT && stream_.deviceBuffer ) { unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] ); if ( bufferBytes <= bytesOut ) makeBuffer = false; } } if ( makeBuffer ) { bufferBytes *= *bufferSize; if ( stream_.deviceBuffer ) free( stream_.deviceBuffer ); stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 ); if ( stream_.deviceBuffer == NULL ) { errorText_ = "RtApiOss::probeDeviceOpen: error allocating device buffer memory."; goto error; } } } stream_.device[mode] = device; stream_.state = STREAM_STOPPED; // Setup the buffer conversion information structure. if ( stream_.doConvertBuffer[mode] ) setConvertInfo( mode, firstChannel ); // Setup thread if necessary. if ( stream_.mode == OUTPUT && mode == INPUT ) { // We had already set up an output stream. stream_.mode = DUPLEX; if ( stream_.device[0] == device ) handle->id[0] = fd; } else { stream_.mode = mode; // Setup callback thread. stream_.callbackInfo.object = (void *) this; // Set the thread attributes for joinable and realtime scheduling // priority. The higher priority will only take affect if the // program is run as root or suid. pthread_attr_t attr; pthread_attr_init( &attr ); pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_JOINABLE ); #ifdef SCHED_RR // Undefined with some OSes (eg: NetBSD 1.6.x with GNU Pthread) if ( options && options->flags & RTAUDIO_SCHEDULE_REALTIME ) { struct sched_param param; int priority = options->priority; int min = sched_get_priority_min( SCHED_RR ); int max = sched_get_priority_max( SCHED_RR ); if ( priority < min ) priority = min; else if ( priority > max ) priority = max; param.sched_priority = priority; pthread_attr_setschedparam( &attr, ¶m ); pthread_attr_setschedpolicy( &attr, SCHED_RR ); } else pthread_attr_setschedpolicy( &attr, SCHED_OTHER ); #else pthread_attr_setschedpolicy( &attr, SCHED_OTHER ); #endif stream_.callbackInfo.isRunning = true; result = pthread_create( &stream_.callbackInfo.thread, &attr, ossCallbackHandler, &stream_.callbackInfo ); pthread_attr_destroy( &attr ); if ( result ) { stream_.callbackInfo.isRunning = false; errorText_ = "RtApiOss::error creating callback thread!"; goto error; } } return SUCCESS; error: if ( handle ) { pthread_cond_destroy( &handle->runnable ); if ( handle->id[0] ) close( handle->id[0] ); if ( handle->id[1] ) close( handle->id[1] ); delete handle; stream_.apiHandle = 0; } for ( int i=0; i<2; i++ ) { if ( stream_.userBuffer[i] ) { free( stream_.userBuffer[i] ); stream_.userBuffer[i] = 0; } } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } return FAILURE; } void RtApiOss :: closeStream() { if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiOss::closeStream(): no open stream to close!"; error( RtAudioError::WARNING ); return; } OssHandle *handle = (OssHandle *) stream_.apiHandle; stream_.callbackInfo.isRunning = false; MUTEX_LOCK( &stream_.mutex ); if ( stream_.state == STREAM_STOPPED ) pthread_cond_signal( &handle->runnable ); MUTEX_UNLOCK( &stream_.mutex ); pthread_join( stream_.callbackInfo.thread, NULL ); if ( stream_.state == STREAM_RUNNING ) { if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) ioctl( handle->id[0], SNDCTL_DSP_HALT, 0 ); else ioctl( handle->id[1], SNDCTL_DSP_HALT, 0 ); stream_.state = STREAM_STOPPED; } if ( handle ) { pthread_cond_destroy( &handle->runnable ); if ( handle->id[0] ) close( handle->id[0] ); if ( handle->id[1] ) close( handle->id[1] ); delete handle; stream_.apiHandle = 0; } for ( int i=0; i<2; i++ ) { if ( stream_.userBuffer[i] ) { free( stream_.userBuffer[i] ); stream_.userBuffer[i] = 0; } } if ( stream_.deviceBuffer ) { free( stream_.deviceBuffer ); stream_.deviceBuffer = 0; } stream_.mode = UNINITIALIZED; stream_.state = STREAM_CLOSED; } void RtApiOss :: startStream() { verifyStream(); if ( stream_.state == STREAM_RUNNING ) { errorText_ = "RtApiOss::startStream(): the stream is already running!"; error( RtAudioError::WARNING ); return; } MUTEX_LOCK( &stream_.mutex ); stream_.state = STREAM_RUNNING; // No need to do anything else here ... OSS automatically starts // when fed samples. MUTEX_UNLOCK( &stream_.mutex ); OssHandle *handle = (OssHandle *) stream_.apiHandle; pthread_cond_signal( &handle->runnable ); } void RtApiOss :: stopStream() { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiOss::stopStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } MUTEX_LOCK( &stream_.mutex ); // The state might change while waiting on a mutex. if ( stream_.state == STREAM_STOPPED ) { MUTEX_UNLOCK( &stream_.mutex ); return; } int result = 0; OssHandle *handle = (OssHandle *) stream_.apiHandle; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { // Flush the output with zeros a few times. char *buffer; int samples; RtAudioFormat format; if ( stream_.doConvertBuffer[0] ) { buffer = stream_.deviceBuffer; samples = stream_.bufferSize * stream_.nDeviceChannels[0]; format = stream_.deviceFormat[0]; } else { buffer = stream_.userBuffer[0]; samples = stream_.bufferSize * stream_.nUserChannels[0]; format = stream_.userFormat; } memset( buffer, 0, samples * formatBytes(format) ); for ( unsigned int i=0; iid[0], buffer, samples * formatBytes(format) ); if ( result == -1 ) { errorText_ = "RtApiOss::stopStream: audio write error."; error( RtAudioError::WARNING ); } } result = ioctl( handle->id[0], SNDCTL_DSP_HALT, 0 ); if ( result == -1 ) { errorStream_ << "RtApiOss::stopStream: system error stopping callback procedure on device (" << stream_.device[0] << ")."; errorText_ = errorStream_.str(); goto unlock; } handle->triggered = false; } if ( stream_.mode == INPUT || ( stream_.mode == DUPLEX && handle->id[0] != handle->id[1] ) ) { result = ioctl( handle->id[1], SNDCTL_DSP_HALT, 0 ); if ( result == -1 ) { errorStream_ << "RtApiOss::stopStream: system error stopping input callback procedure on device (" << stream_.device[0] << ")."; errorText_ = errorStream_.str(); goto unlock; } } unlock: stream_.state = STREAM_STOPPED; MUTEX_UNLOCK( &stream_.mutex ); if ( result != -1 ) return; error( RtAudioError::SYSTEM_ERROR ); } void RtApiOss :: abortStream() { verifyStream(); if ( stream_.state == STREAM_STOPPED ) { errorText_ = "RtApiOss::abortStream(): the stream is already stopped!"; error( RtAudioError::WARNING ); return; } MUTEX_LOCK( &stream_.mutex ); // The state might change while waiting on a mutex. if ( stream_.state == STREAM_STOPPED ) { MUTEX_UNLOCK( &stream_.mutex ); return; } int result = 0; OssHandle *handle = (OssHandle *) stream_.apiHandle; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { result = ioctl( handle->id[0], SNDCTL_DSP_HALT, 0 ); if ( result == -1 ) { errorStream_ << "RtApiOss::abortStream: system error stopping callback procedure on device (" << stream_.device[0] << ")."; errorText_ = errorStream_.str(); goto unlock; } handle->triggered = false; } if ( stream_.mode == INPUT || ( stream_.mode == DUPLEX && handle->id[0] != handle->id[1] ) ) { result = ioctl( handle->id[1], SNDCTL_DSP_HALT, 0 ); if ( result == -1 ) { errorStream_ << "RtApiOss::abortStream: system error stopping input callback procedure on device (" << stream_.device[0] << ")."; errorText_ = errorStream_.str(); goto unlock; } } unlock: stream_.state = STREAM_STOPPED; MUTEX_UNLOCK( &stream_.mutex ); if ( result != -1 ) return; error( RtAudioError::SYSTEM_ERROR ); } void RtApiOss :: callbackEvent() { OssHandle *handle = (OssHandle *) stream_.apiHandle; if ( stream_.state == STREAM_STOPPED ) { MUTEX_LOCK( &stream_.mutex ); pthread_cond_wait( &handle->runnable, &stream_.mutex ); if ( stream_.state != STREAM_RUNNING ) { MUTEX_UNLOCK( &stream_.mutex ); return; } MUTEX_UNLOCK( &stream_.mutex ); } if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApiOss::callbackEvent(): the stream is closed ... this shouldn't happen!"; error( RtAudioError::WARNING ); return; } // Invoke user callback to get fresh output data. int doStopStream = 0; RtAudioCallback callback = (RtAudioCallback) stream_.callbackInfo.callback; double streamTime = getStreamTime(); RtAudioStreamStatus status = 0; if ( stream_.mode != INPUT && handle->xrun[0] == true ) { status |= RTAUDIO_OUTPUT_UNDERFLOW; handle->xrun[0] = false; } if ( stream_.mode != OUTPUT && handle->xrun[1] == true ) { status |= RTAUDIO_INPUT_OVERFLOW; handle->xrun[1] = false; } doStopStream = callback( stream_.userBuffer[0], stream_.userBuffer[1], stream_.bufferSize, streamTime, status, stream_.callbackInfo.userData ); if ( doStopStream == 2 ) { this->abortStream(); return; } MUTEX_LOCK( &stream_.mutex ); // The state might change while waiting on a mutex. if ( stream_.state == STREAM_STOPPED ) goto unlock; int result; char *buffer; int samples; RtAudioFormat format; if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) { // Setup parameters and do buffer conversion if necessary. if ( stream_.doConvertBuffer[0] ) { buffer = stream_.deviceBuffer; convertBuffer( buffer, stream_.userBuffer[0], stream_.convertInfo[0] ); samples = stream_.bufferSize * stream_.nDeviceChannels[0]; format = stream_.deviceFormat[0]; } else { buffer = stream_.userBuffer[0]; samples = stream_.bufferSize * stream_.nUserChannels[0]; format = stream_.userFormat; } // Do byte swapping if necessary. if ( stream_.doByteSwap[0] ) byteSwapBuffer( buffer, samples, format ); if ( stream_.mode == DUPLEX && handle->triggered == false ) { int trig = 0; ioctl( handle->id[0], SNDCTL_DSP_SETTRIGGER, &trig ); result = write( handle->id[0], buffer, samples * formatBytes(format) ); trig = PCM_ENABLE_INPUT|PCM_ENABLE_OUTPUT; ioctl( handle->id[0], SNDCTL_DSP_SETTRIGGER, &trig ); handle->triggered = true; } else // Write samples to device. result = write( handle->id[0], buffer, samples * formatBytes(format) ); if ( result == -1 ) { // We'll assume this is an underrun, though there isn't a // specific means for determining that. handle->xrun[0] = true; errorText_ = "RtApiOss::callbackEvent: audio write error."; error( RtAudioError::WARNING ); // Continue on to input section. } } if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) { // Setup parameters. if ( stream_.doConvertBuffer[1] ) { buffer = stream_.deviceBuffer; samples = stream_.bufferSize * stream_.nDeviceChannels[1]; format = stream_.deviceFormat[1]; } else { buffer = stream_.userBuffer[1]; samples = stream_.bufferSize * stream_.nUserChannels[1]; format = stream_.userFormat; } // Read samples from device. result = read( handle->id[1], buffer, samples * formatBytes(format) ); if ( result == -1 ) { // We'll assume this is an overrun, though there isn't a // specific means for determining that. handle->xrun[1] = true; errorText_ = "RtApiOss::callbackEvent: audio read error."; error( RtAudioError::WARNING ); goto unlock; } // Do byte swapping if necessary. if ( stream_.doByteSwap[1] ) byteSwapBuffer( buffer, samples, format ); // Do buffer conversion if necessary. if ( stream_.doConvertBuffer[1] ) convertBuffer( stream_.userBuffer[1], stream_.deviceBuffer, stream_.convertInfo[1] ); } unlock: MUTEX_UNLOCK( &stream_.mutex ); RtApi::tickStreamTime(); if ( doStopStream == 1 ) this->stopStream(); } static void *ossCallbackHandler( void *ptr ) { CallbackInfo *info = (CallbackInfo *) ptr; RtApiOss *object = (RtApiOss *) info->object; bool *isRunning = &info->isRunning; while ( *isRunning == true ) { pthread_testcancel(); object->callbackEvent(); } pthread_exit( NULL ); } //******************** End of __LINUX_OSS__ *********************// #endif // *************************************************** // // // Protected common (OS-independent) RtAudio methods. // // *************************************************** // // This method can be modified to control the behavior of error // message printing. void RtApi :: error( RtAudioError::Type type ) { errorStream_.str(""); // clear the ostringstream RtAudioErrorCallback errorCallback = (RtAudioErrorCallback) stream_.callbackInfo.errorCallback; if ( errorCallback ) { // abortStream() can generate new error messages. Ignore them. Just keep original one. if ( firstErrorOccurred_ ) return; firstErrorOccurred_ = true; const std::string errorMessage = errorText_; if ( type != RtAudioError::WARNING && stream_.state != STREAM_STOPPED) { stream_.callbackInfo.isRunning = false; // exit from the thread abortStream(); } errorCallback( type, errorMessage ); firstErrorOccurred_ = false; return; } if ( type == RtAudioError::WARNING && showWarnings_ == true ) std::cerr << '\n' << errorText_ << "\n\n"; else if ( type != RtAudioError::WARNING ) throw( RtAudioError( errorText_, type ) ); } void RtApi :: verifyStream() { if ( stream_.state == STREAM_CLOSED ) { errorText_ = "RtApi:: a stream is not open!"; error( RtAudioError::INVALID_USE ); } } void RtApi :: clearStreamInfo() { stream_.mode = UNINITIALIZED; stream_.state = STREAM_CLOSED; stream_.sampleRate = 0; stream_.bufferSize = 0; stream_.nBuffers = 0; stream_.userFormat = 0; stream_.userInterleaved = true; stream_.streamTime = 0.0; stream_.apiHandle = 0; stream_.deviceBuffer = 0; stream_.callbackInfo.callback = 0; stream_.callbackInfo.userData = 0; stream_.callbackInfo.isRunning = false; stream_.callbackInfo.errorCallback = 0; for ( int i=0; i<2; i++ ) { stream_.device[i] = 11111; stream_.doConvertBuffer[i] = false; stream_.deviceInterleaved[i] = true; stream_.doByteSwap[i] = false; stream_.nUserChannels[i] = 0; stream_.nDeviceChannels[i] = 0; stream_.channelOffset[i] = 0; stream_.deviceFormat[i] = 0; stream_.latency[i] = 0; stream_.userBuffer[i] = 0; stream_.convertInfo[i].channels = 0; stream_.convertInfo[i].inJump = 0; stream_.convertInfo[i].outJump = 0; stream_.convertInfo[i].inFormat = 0; stream_.convertInfo[i].outFormat = 0; stream_.convertInfo[i].inOffset.clear(); stream_.convertInfo[i].outOffset.clear(); } } unsigned int RtApi :: formatBytes( RtAudioFormat format ) { if ( format == RTAUDIO_SINT16 ) return 2; else if ( format == RTAUDIO_SINT32 || format == RTAUDIO_FLOAT32 ) return 4; else if ( format == RTAUDIO_FLOAT64 ) return 8; else if ( format == RTAUDIO_SINT24 ) return 3; else if ( format == RTAUDIO_SINT8 ) return 1; errorText_ = "RtApi::formatBytes: undefined format."; error( RtAudioError::WARNING ); return 0; } void RtApi :: setConvertInfo( StreamMode mode, unsigned int firstChannel ) { if ( mode == INPUT ) { // convert device to user buffer stream_.convertInfo[mode].inJump = stream_.nDeviceChannels[1]; stream_.convertInfo[mode].outJump = stream_.nUserChannels[1]; stream_.convertInfo[mode].inFormat = stream_.deviceFormat[1]; stream_.convertInfo[mode].outFormat = stream_.userFormat; } else { // convert user to device buffer stream_.convertInfo[mode].inJump = stream_.nUserChannels[0]; stream_.convertInfo[mode].outJump = stream_.nDeviceChannels[0]; stream_.convertInfo[mode].inFormat = stream_.userFormat; stream_.convertInfo[mode].outFormat = stream_.deviceFormat[0]; } if ( stream_.convertInfo[mode].inJump < stream_.convertInfo[mode].outJump ) stream_.convertInfo[mode].channels = stream_.convertInfo[mode].inJump; else stream_.convertInfo[mode].channels = stream_.convertInfo[mode].outJump; // Set up the interleave/deinterleave offsets. if ( stream_.deviceInterleaved[mode] != stream_.userInterleaved ) { if ( ( mode == OUTPUT && stream_.deviceInterleaved[mode] ) || ( mode == INPUT && stream_.userInterleaved ) ) { for ( int k=0; k 0 ) { if ( stream_.deviceInterleaved[mode] ) { if ( mode == OUTPUT ) { for ( int k=0; k> 8); //out[info.outOffset[j]] >>= 8; } in += info.inJump; out += info.outJump; } } else if (info.inFormat == RTAUDIO_FLOAT32) { Float32 *in = (Float32 *)inBuffer; for (unsigned int i=0; i> 8); } in += info.inJump; out += info.outJump; } } else if (info.inFormat == RTAUDIO_SINT32) { Int32 *in = (Int32 *)inBuffer; for (unsigned int i=0; i> 16) & 0x0000ffff); } in += info.inJump; out += info.outJump; } } else if (info.inFormat == RTAUDIO_FLOAT32) { Float32 *in = (Float32 *)inBuffer; for (unsigned int i=0; i> 8) & 0x00ff); } in += info.inJump; out += info.outJump; } } else if (info.inFormat == RTAUDIO_SINT24) { Int24 *in = (Int24 *)inBuffer; for (unsigned int i=0; i> 16); } in += info.inJump; out += info.outJump; } } else if (info.inFormat == RTAUDIO_SINT32) { Int32 *in = (Int32 *)inBuffer; for (unsigned int i=0; i> 24) & 0x000000ff); } in += info.inJump; out += info.outJump; } } else if (info.inFormat == RTAUDIO_FLOAT32) { Float32 *in = (Float32 *)inBuffer; for (unsigned int i=0; i>8) | (x<<8); } //static inline uint32_t bswap_32(uint32_t x) { return (bswap_16(x&0xffff)<<16) | (bswap_16(x>>16)); } //static inline uint64_t bswap_64(uint64_t x) { return (((unsigned long long)bswap_32(x&0xffffffffull))<<32) | (bswap_32(x>>32)); } void RtApi :: byteSwapBuffer( char *buffer, unsigned int samples, RtAudioFormat format ) { char val; char *ptr; ptr = buffer; if ( format == RTAUDIO_SINT16 ) { for ( unsigned int i=0; i= 4 #define RTAUDIO_DLL_PUBLIC __attribute__( (visibility( "default" )) ) #else #define RTAUDIO_DLL_PUBLIC #endif #endif #include #include #include #include /*! \typedef typedef unsigned long RtAudioFormat; \brief RtAudio data format type. Support for signed integers and floats. Audio data fed to/from an RtAudio stream is assumed to ALWAYS be in host byte order. The internal routines will automatically take care of any necessary byte-swapping between the host format and the soundcard. Thus, endian-ness is not a concern in the following format definitions. - \e RTAUDIO_SINT8: 8-bit signed integer. - \e RTAUDIO_SINT16: 16-bit signed integer. - \e RTAUDIO_SINT24: 24-bit signed integer. - \e RTAUDIO_SINT32: 32-bit signed integer. - \e RTAUDIO_FLOAT32: Normalized between plus/minus 1.0. - \e RTAUDIO_FLOAT64: Normalized between plus/minus 1.0. */ typedef unsigned long RtAudioFormat; static const RtAudioFormat RTAUDIO_SINT8 = 0x1; // 8-bit signed integer. static const RtAudioFormat RTAUDIO_SINT16 = 0x2; // 16-bit signed integer. static const RtAudioFormat RTAUDIO_SINT24 = 0x4; // 24-bit signed integer. static const RtAudioFormat RTAUDIO_SINT32 = 0x8; // 32-bit signed integer. static const RtAudioFormat RTAUDIO_FLOAT32 = 0x10; // Normalized between plus/minus 1.0. static const RtAudioFormat RTAUDIO_FLOAT64 = 0x20; // Normalized between plus/minus 1.0. /*! \typedef typedef unsigned long RtAudioStreamFlags; \brief RtAudio stream option flags. The following flags can be OR'ed together to allow a client to make changes to the default stream behavior: - \e RTAUDIO_NONINTERLEAVED: Use non-interleaved buffers (default = interleaved). - \e RTAUDIO_MINIMIZE_LATENCY: Attempt to set stream parameters for lowest possible latency. - \e RTAUDIO_HOG_DEVICE: Attempt grab device for exclusive use. - \e RTAUDIO_ALSA_USE_DEFAULT: Use the "default" PCM device (ALSA only). - \e RTAUDIO_JACK_DONT_CONNECT: Do not automatically connect ports (JACK only). By default, RtAudio streams pass and receive audio data from the client in an interleaved format. By passing the RTAUDIO_NONINTERLEAVED flag to the openStream() function, audio data will instead be presented in non-interleaved buffers. In this case, each buffer argument in the RtAudioCallback function will point to a single array of data, with \c nFrames samples for each channel concatenated back-to-back. For example, the first sample of data for the second channel would be located at index \c nFrames (assuming the \c buffer pointer was recast to the correct data type for the stream). Certain audio APIs offer a number of parameters that influence the I/O latency of a stream. By default, RtAudio will attempt to set these parameters internally for robust (glitch-free) performance (though some APIs, like Windows Direct Sound, make this difficult). By passing the RTAUDIO_MINIMIZE_LATENCY flag to the openStream() function, internal stream settings will be influenced in an attempt to minimize stream latency, though possibly at the expense of stream performance. If the RTAUDIO_HOG_DEVICE flag is set, RtAudio will attempt to open the input and/or output stream device(s) for exclusive use. Note that this is not possible with all supported audio APIs. If the RTAUDIO_SCHEDULE_REALTIME flag is set, RtAudio will attempt to select realtime scheduling (round-robin) for the callback thread. If the RTAUDIO_ALSA_USE_DEFAULT flag is set, RtAudio will attempt to open the "default" PCM device when using the ALSA API. Note that this will override any specified input or output device id. If the RTAUDIO_JACK_DONT_CONNECT flag is set, RtAudio will not attempt to automatically connect the ports of the client to the audio device. */ typedef unsigned int RtAudioStreamFlags; static const RtAudioStreamFlags RTAUDIO_NONINTERLEAVED = 0x1; // Use non-interleaved buffers (default = interleaved). static const RtAudioStreamFlags RTAUDIO_MINIMIZE_LATENCY = 0x2; // Attempt to set stream parameters for lowest possible latency. static const RtAudioStreamFlags RTAUDIO_HOG_DEVICE = 0x4; // Attempt grab device and prevent use by others. static const RtAudioStreamFlags RTAUDIO_SCHEDULE_REALTIME = 0x8; // Try to select realtime scheduling for callback thread. static const RtAudioStreamFlags RTAUDIO_ALSA_USE_DEFAULT = 0x10; // Use the "default" PCM device (ALSA only). static const RtAudioStreamFlags RTAUDIO_JACK_DONT_CONNECT = 0x20; // Do not automatically connect ports (JACK only). /*! \typedef typedef unsigned long RtAudioStreamStatus; \brief RtAudio stream status (over- or underflow) flags. Notification of a stream over- or underflow is indicated by a non-zero stream \c status argument in the RtAudioCallback function. The stream status can be one of the following two options, depending on whether the stream is open for output and/or input: - \e RTAUDIO_INPUT_OVERFLOW: Input data was discarded because of an overflow condition at the driver. - \e RTAUDIO_OUTPUT_UNDERFLOW: The output buffer ran low, likely producing a break in the output sound. */ typedef unsigned int RtAudioStreamStatus; static const RtAudioStreamStatus RTAUDIO_INPUT_OVERFLOW = 0x1; // Input data was discarded because of an overflow condition at the driver. static const RtAudioStreamStatus RTAUDIO_OUTPUT_UNDERFLOW = 0x2; // The output buffer ran low, likely causing a gap in the output sound. //! RtAudio callback function prototype. /*! All RtAudio clients must create a function of type RtAudioCallback to read and/or write data from/to the audio stream. When the underlying audio system is ready for new input or output data, this function will be invoked. \param outputBuffer For output (or duplex) streams, the client should write \c nFrames of audio sample frames into this buffer. This argument should be recast to the datatype specified when the stream was opened. For input-only streams, this argument will be NULL. \param inputBuffer For input (or duplex) streams, this buffer will hold \c nFrames of input audio sample frames. This argument should be recast to the datatype specified when the stream was opened. For output-only streams, this argument will be NULL. \param nFrames The number of sample frames of input or output data in the buffers. The actual buffer size in bytes is dependent on the data type and number of channels in use. \param streamTime The number of seconds that have elapsed since the stream was started. \param status If non-zero, this argument indicates a data overflow or underflow condition for the stream. The particular condition can be determined by comparison with the RtAudioStreamStatus flags. \param userData A pointer to optional data provided by the client when opening the stream (default = NULL). To continue normal stream operation, the RtAudioCallback function should return a value of zero. To stop the stream and drain the output buffer, the function should return a value of one. To abort the stream immediately, the client should return a value of two. */ typedef int (*RtAudioCallback)( void *outputBuffer, void *inputBuffer, unsigned int nFrames, double streamTime, RtAudioStreamStatus status, void *userData ); /************************************************************************/ /*! \class RtAudioError \brief Exception handling class for RtAudio. The RtAudioError class is quite simple but it does allow errors to be "caught" by RtAudioError::Type. See the RtAudio documentation to know which methods can throw an RtAudioError. */ /************************************************************************/ class RTAUDIO_DLL_PUBLIC RtAudioError : public std::runtime_error { public: //! Defined RtAudioError types. enum Type { WARNING, /*!< A non-critical error. */ DEBUG_WARNING, /*!< A non-critical error which might be useful for debugging. */ UNSPECIFIED, /*!< The default, unspecified error type. */ NO_DEVICES_FOUND, /*!< No devices found on system. */ INVALID_DEVICE, /*!< An invalid device ID was specified. */ MEMORY_ERROR, /*!< An error occured during memory allocation. */ INVALID_PARAMETER, /*!< An invalid parameter was specified to a function. */ INVALID_USE, /*!< The function was called incorrectly. */ DRIVER_ERROR, /*!< A system driver error occured. */ SYSTEM_ERROR, /*!< A system error occured. */ THREAD_ERROR /*!< A thread error occured. */ }; //! The constructor. RtAudioError( const std::string& message, Type type = RtAudioError::UNSPECIFIED ) : std::runtime_error(message), type_(type) {} //! Prints thrown error message to stderr. virtual void printMessage( void ) const { std::cerr << '\n' << what() << "\n\n"; } //! Returns the thrown error message type. virtual const Type& getType(void) const { return type_; } //! Returns the thrown error message string. virtual const std::string getMessage(void) const { return std::string(what()); } protected: Type type_; }; //! RtAudio error callback function prototype. /*! \param type Type of error. \param errorText Error description. */ typedef void (*RtAudioErrorCallback)( RtAudioError::Type type, const std::string &errorText ); // **************************************************************** // // // RtAudio class declaration. // // RtAudio is a "controller" used to select an available audio i/o // interface. It presents a common API for the user to call but all // functionality is implemented by the class RtApi and its // subclasses. RtAudio creates an instance of an RtApi subclass // based on the user's API choice. If no choice is made, RtAudio // attempts to make a "logical" API selection. // // **************************************************************** // class RtApi; class RTAUDIO_DLL_PUBLIC RtAudio { public: //! Audio API specifier arguments. enum Api { UNSPECIFIED, /*!< Search for a working compiled API. */ LINUX_ALSA, /*!< The Advanced Linux Sound Architecture API. */ LINUX_PULSE, /*!< The Linux PulseAudio API. */ LINUX_OSS, /*!< The Linux Open Sound System API. */ UNIX_JACK, /*!< The Jack Low-Latency Audio Server API. */ MACOSX_CORE, /*!< Macintosh OS-X Core Audio API. */ WINDOWS_WASAPI, /*!< The Microsoft WASAPI API. */ WINDOWS_ASIO, /*!< The Steinberg Audio Stream I/O API. */ WINDOWS_DS, /*!< The Microsoft Direct Sound API. */ RTAUDIO_DUMMY /*!< A compilable but non-functional API. */ }; //! The public device information structure for returning queried values. struct DeviceInfo { bool probed; /*!< true if the device capabilities were successfully probed. */ std::string name; /*!< Character string device identifier. */ unsigned int outputChannels; /*!< Maximum output channels supported by device. */ unsigned int inputChannels; /*!< Maximum input channels supported by device. */ unsigned int duplexChannels; /*!< Maximum simultaneous input/output channels supported by device. */ bool isDefaultOutput; /*!< true if this is the default output device. */ bool isDefaultInput; /*!< true if this is the default input device. */ std::vector sampleRates; /*!< Supported sample rates (queried from list of standard rates). */ unsigned int preferredSampleRate; /*!< Preferred sample rate, eg. for WASAPI the system sample rate. */ RtAudioFormat nativeFormats; /*!< Bit mask of supported data formats. */ // Default constructor. DeviceInfo() :probed(false), outputChannels(0), inputChannels(0), duplexChannels(0), isDefaultOutput(false), isDefaultInput(false), preferredSampleRate(0), nativeFormats(0) {} }; //! The structure for specifying input or ouput stream parameters. struct StreamParameters { unsigned int deviceId; /*!< Device index (0 to getDeviceCount() - 1). */ unsigned int nChannels; /*!< Number of channels. */ unsigned int firstChannel; /*!< First channel index on device (default = 0). */ // Default constructor. StreamParameters() : deviceId(0), nChannels(0), firstChannel(0) {} }; //! The structure for specifying stream options. /*! The following flags can be OR'ed together to allow a client to make changes to the default stream behavior: - \e RTAUDIO_NONINTERLEAVED: Use non-interleaved buffers (default = interleaved). - \e RTAUDIO_MINIMIZE_LATENCY: Attempt to set stream parameters for lowest possible latency. - \e RTAUDIO_HOG_DEVICE: Attempt grab device for exclusive use. - \e RTAUDIO_SCHEDULE_REALTIME: Attempt to select realtime scheduling for callback thread. - \e RTAUDIO_ALSA_USE_DEFAULT: Use the "default" PCM device (ALSA only). By default, RtAudio streams pass and receive audio data from the client in an interleaved format. By passing the RTAUDIO_NONINTERLEAVED flag to the openStream() function, audio data will instead be presented in non-interleaved buffers. In this case, each buffer argument in the RtAudioCallback function will point to a single array of data, with \c nFrames samples for each channel concatenated back-to-back. For example, the first sample of data for the second channel would be located at index \c nFrames (assuming the \c buffer pointer was recast to the correct data type for the stream). Certain audio APIs offer a number of parameters that influence the I/O latency of a stream. By default, RtAudio will attempt to set these parameters internally for robust (glitch-free) performance (though some APIs, like Windows Direct Sound, make this difficult). By passing the RTAUDIO_MINIMIZE_LATENCY flag to the openStream() function, internal stream settings will be influenced in an attempt to minimize stream latency, though possibly at the expense of stream performance. If the RTAUDIO_HOG_DEVICE flag is set, RtAudio will attempt to open the input and/or output stream device(s) for exclusive use. Note that this is not possible with all supported audio APIs. If the RTAUDIO_SCHEDULE_REALTIME flag is set, RtAudio will attempt to select realtime scheduling (round-robin) for the callback thread. The \c priority parameter will only be used if the RTAUDIO_SCHEDULE_REALTIME flag is set. It defines the thread's realtime priority. If the RTAUDIO_ALSA_USE_DEFAULT flag is set, RtAudio will attempt to open the "default" PCM device when using the ALSA API. Note that this will override any specified input or output device id. The \c numberOfBuffers parameter can be used to control stream latency in the Windows DirectSound, Linux OSS, and Linux Alsa APIs only. A value of two is usually the smallest allowed. Larger numbers can potentially result in more robust stream performance, though likely at the cost of stream latency. The value set by the user is replaced during execution of the RtAudio::openStream() function by the value actually used by the system. The \c streamName parameter can be used to set the client name when using the Jack API. By default, the client name is set to RtApiJack. However, if you wish to create multiple instances of RtAudio with Jack, each instance must have a unique client name. */ struct StreamOptions { RtAudioStreamFlags flags; /*!< A bit-mask of stream flags (RTAUDIO_NONINTERLEAVED, RTAUDIO_MINIMIZE_LATENCY, RTAUDIO_HOG_DEVICE, RTAUDIO_ALSA_USE_DEFAULT). */ unsigned int numberOfBuffers; /*!< Number of stream buffers. */ std::string streamName; /*!< A stream name (currently used only in Jack). */ int priority; /*!< Scheduling priority of callback thread (only used with flag RTAUDIO_SCHEDULE_REALTIME). */ // Default constructor. StreamOptions() : flags(0), numberOfBuffers(0), priority(0) {} }; //! A static function to determine the current RtAudio version. static std::string getVersion( void ); //! A static function to determine the available compiled audio APIs. /*! The values returned in the std::vector can be compared against the enumerated list values. Note that there can be more than one API compiled for certain operating systems. */ static void getCompiledApi( std::vector &apis ); //! The class constructor. /*! The constructor performs minor initialization tasks. An exception can be thrown if no API support is compiled. If no API argument is specified and multiple API support has been compiled, the default order of use is JACK, ALSA, OSS (Linux systems) and ASIO, DS (Windows systems). */ RtAudio( RtAudio::Api api=UNSPECIFIED ); //! The destructor. /*! If a stream is running or open, it will be stopped and closed automatically. */ ~RtAudio(); //! Returns the audio API specifier for the current instance of RtAudio. RtAudio::Api getCurrentApi( void ); //! A public function that queries for the number of audio devices available. /*! This function performs a system query of available devices each time it is called, thus supporting devices connected \e after instantiation. If a system error occurs during processing, a warning will be issued. */ unsigned int getDeviceCount( void ); //! Return an RtAudio::DeviceInfo structure for a specified device number. /*! Any device integer between 0 and getDeviceCount() - 1 is valid. If an invalid argument is provided, an RtAudioError (type = INVALID_USE) will be thrown. If a device is busy or otherwise unavailable, the structure member "probed" will have a value of "false" and all other members are undefined. If the specified device is the current default input or output device, the corresponding "isDefault" member will have a value of "true". */ RtAudio::DeviceInfo getDeviceInfo( unsigned int device ); //! A function that returns the index of the default output device. /*! If the underlying audio API does not provide a "default device", or if no devices are available, the return value will be 0. Note that this is a valid device identifier and it is the client's responsibility to verify that a device is available before attempting to open a stream. */ unsigned int getDefaultOutputDevice( void ); //! A function that returns the index of the default input device. /*! If the underlying audio API does not provide a "default device", or if no devices are available, the return value will be 0. Note that this is a valid device identifier and it is the client's responsibility to verify that a device is available before attempting to open a stream. */ unsigned int getDefaultInputDevice( void ); //! A public function for opening a stream with the specified parameters. /*! An RtAudioError (type = SYSTEM_ERROR) is thrown if a stream cannot be opened with the specified parameters or an error occurs during processing. An RtAudioError (type = INVALID_USE) is thrown if any invalid device ID or channel number parameters are specified. \param outputParameters Specifies output stream parameters to use when opening a stream, including a device ID, number of channels, and starting channel number. For input-only streams, this argument should be NULL. The device ID is an index value between 0 and getDeviceCount() - 1. \param inputParameters Specifies input stream parameters to use when opening a stream, including a device ID, number of channels, and starting channel number. For output-only streams, this argument should be NULL. The device ID is an index value between 0 and getDeviceCount() - 1. \param format An RtAudioFormat specifying the desired sample data format. \param sampleRate The desired sample rate (sample frames per second). \param *bufferFrames A pointer to a value indicating the desired internal buffer size in sample frames. The actual value used by the device is returned via the same pointer. A value of zero can be specified, in which case the lowest allowable value is determined. \param callback A client-defined function that will be invoked when input data is available and/or output data is needed. \param userData An optional pointer to data that can be accessed from within the callback function. \param options An optional pointer to a structure containing various global stream options, including a list of OR'ed RtAudioStreamFlags and a suggested number of stream buffers that can be used to control stream latency. More buffers typically result in more robust performance, though at a cost of greater latency. If a value of zero is specified, a system-specific median value is chosen. If the RTAUDIO_MINIMIZE_LATENCY flag bit is set, the lowest allowable value is used. The actual value used is returned via the structure argument. The parameter is API dependent. \param errorCallback A client-defined function that will be invoked when an error has occured. */ void openStream( RtAudio::StreamParameters *outputParameters, RtAudio::StreamParameters *inputParameters, RtAudioFormat format, unsigned int sampleRate, unsigned int *bufferFrames, RtAudioCallback callback, void *userData = NULL, RtAudio::StreamOptions *options = NULL, RtAudioErrorCallback errorCallback = NULL ); //! A function that closes a stream and frees any associated stream memory. /*! If a stream is not open, this function issues a warning and returns (no exception is thrown). */ void closeStream( void ); //! A function that starts a stream. /*! An RtAudioError (type = SYSTEM_ERROR) is thrown if an error occurs during processing. An RtAudioError (type = INVALID_USE) is thrown if a stream is not open. A warning is issued if the stream is already running. */ void startStream( void ); //! Stop a stream, allowing any samples remaining in the output queue to be played. /*! An RtAudioError (type = SYSTEM_ERROR) is thrown if an error occurs during processing. An RtAudioError (type = INVALID_USE) is thrown if a stream is not open. A warning is issued if the stream is already stopped. */ void stopStream( void ); //! Stop a stream, discarding any samples remaining in the input/output queue. /*! An RtAudioError (type = SYSTEM_ERROR) is thrown if an error occurs during processing. An RtAudioError (type = INVALID_USE) is thrown if a stream is not open. A warning is issued if the stream is already stopped. */ void abortStream( void ); //! Returns true if a stream is open and false if not. bool isStreamOpen( void ) const; //! Returns true if the stream is running and false if it is stopped or not open. bool isStreamRunning( void ) const; //! Returns the number of elapsed seconds since the stream was started. /*! If a stream is not open, an RtAudioError (type = INVALID_USE) will be thrown. */ double getStreamTime( void ); //! Set the stream time to a time in seconds greater than or equal to 0.0. /*! If a stream is not open, an RtAudioError (type = INVALID_USE) will be thrown. */ void setStreamTime( double time ); //! Returns the internal stream latency in sample frames. /*! The stream latency refers to delay in audio input and/or output caused by internal buffering by the audio system and/or hardware. For duplex streams, the returned value will represent the sum of the input and output latencies. If a stream is not open, an RtAudioError (type = INVALID_USE) will be thrown. If the API does not report latency, the return value will be zero. */ long getStreamLatency( void ); //! Returns actual sample rate in use by the stream. /*! On some systems, the sample rate used may be slightly different than that specified in the stream parameters. If a stream is not open, an RtAudioError (type = INVALID_USE) will be thrown. */ unsigned int getStreamSampleRate( void ); //! Specify whether warning messages should be printed to stderr. void showWarnings( bool value = true ); protected: void openRtApi( RtAudio::Api api ); RtApi *rtapi_; }; // Operating system dependent thread functionality. #if defined(__WINDOWS_DS__) || defined(__WINDOWS_ASIO__) || defined(__WINDOWS_WASAPI__) #ifndef NOMINMAX #define NOMINMAX #endif #include #include typedef uintptr_t ThreadHandle; typedef CRITICAL_SECTION StreamMutex; #elif defined(__LINUX_ALSA__) || defined(__LINUX_PULSE__) || defined(__UNIX_JACK__) || defined(__LINUX_OSS__) || defined(__MACOSX_CORE__) // Using pthread library for various flavors of unix. #include typedef pthread_t ThreadHandle; typedef pthread_mutex_t StreamMutex; #else // Setup for "dummy" behavior #define __RTAUDIO_DUMMY__ typedef int ThreadHandle; typedef int StreamMutex; #endif // This global structure type is used to pass callback information // between the private RtAudio stream structure and global callback // handling functions. struct CallbackInfo { void *object; // Used as a "this" pointer. ThreadHandle thread; void *callback; void *userData; void *errorCallback; void *apiInfo; // void pointer for API specific callback information bool isRunning; bool doRealtime; int priority; // Default constructor. CallbackInfo() :object(0), callback(0), userData(0), errorCallback(0), apiInfo(0), isRunning(false), doRealtime(false), priority(0) {} }; // **************************************************************** // // // RtApi class declaration. // // Subclasses of RtApi contain all API- and OS-specific code necessary // to fully implement the RtAudio API. // // Note that RtApi is an abstract base class and cannot be // explicitly instantiated. The class RtAudio will create an // instance of an RtApi subclass (RtApiOss, RtApiAlsa, // RtApiJack, RtApiCore, RtApiDs, or RtApiAsio). // // **************************************************************** // #pragma pack(push, 1) class S24 { protected: unsigned char c3[3]; public: S24() {} S24& operator = ( const int& i ) { c3[0] = (i & 0x000000ff); c3[1] = (i & 0x0000ff00) >> 8; c3[2] = (i & 0x00ff0000) >> 16; return *this; } S24( const S24& v ) { *this = v; } S24( const double& d ) { *this = (int) d; } S24( const float& f ) { *this = (int) f; } S24( const signed short& s ) { *this = (int) s; } S24( const char& c ) { *this = (int) c; } int asInt() { int i = c3[0] | (c3[1] << 8) | (c3[2] << 16); if (i & 0x800000) i |= ~0xffffff; return i; } }; #pragma pack(pop) #if defined( HAVE_GETTIMEOFDAY ) #include #endif #include class RTAUDIO_DLL_PUBLIC RtApi { public: RtApi(); virtual ~RtApi(); virtual RtAudio::Api getCurrentApi( void ) = 0; virtual unsigned int getDeviceCount( void ) = 0; virtual RtAudio::DeviceInfo getDeviceInfo( unsigned int device ) = 0; virtual unsigned int getDefaultInputDevice( void ); virtual unsigned int getDefaultOutputDevice( void ); void openStream( RtAudio::StreamParameters *outputParameters, RtAudio::StreamParameters *inputParameters, RtAudioFormat format, unsigned int sampleRate, unsigned int *bufferFrames, RtAudioCallback callback, void *userData, RtAudio::StreamOptions *options, RtAudioErrorCallback errorCallback ); virtual void closeStream( void ); virtual void startStream( void ) = 0; virtual void stopStream( void ) = 0; virtual void abortStream( void ) = 0; long getStreamLatency( void ); unsigned int getStreamSampleRate( void ); virtual double getStreamTime( void ); virtual void setStreamTime( double time ); bool isStreamOpen( void ) const { return stream_.state != STREAM_CLOSED; } bool isStreamRunning( void ) const { return stream_.state == STREAM_RUNNING; } void showWarnings( bool value ) { showWarnings_ = value; } protected: static const unsigned int MAX_SAMPLE_RATES; static const unsigned int SAMPLE_RATES[]; enum { FAILURE, SUCCESS }; enum StreamState { STREAM_STOPPED, STREAM_STOPPING, STREAM_RUNNING, STREAM_CLOSED = -50 }; enum StreamMode { OUTPUT, INPUT, DUPLEX, UNINITIALIZED = -75 }; // A protected structure used for buffer conversion. struct ConvertInfo { int channels; int inJump, outJump; RtAudioFormat inFormat, outFormat; std::vector inOffset; std::vector outOffset; }; // A protected structure for audio streams. struct RtApiStream { unsigned int device[2]; // Playback and record, respectively. void *apiHandle; // void pointer for API specific stream handle information StreamMode mode; // OUTPUT, INPUT, or DUPLEX. StreamState state; // STOPPED, RUNNING, or CLOSED char *userBuffer[2]; // Playback and record, respectively. char *deviceBuffer; bool doConvertBuffer[2]; // Playback and record, respectively. bool userInterleaved; bool deviceInterleaved[2]; // Playback and record, respectively. bool doByteSwap[2]; // Playback and record, respectively. unsigned int sampleRate; unsigned int bufferSize; unsigned int nBuffers; unsigned int nUserChannels[2]; // Playback and record, respectively. unsigned int nDeviceChannels[2]; // Playback and record channels, respectively. unsigned int channelOffset[2]; // Playback and record, respectively. unsigned long latency[2]; // Playback and record, respectively. RtAudioFormat userFormat; RtAudioFormat deviceFormat[2]; // Playback and record, respectively. StreamMutex mutex; CallbackInfo callbackInfo; ConvertInfo convertInfo[2]; double streamTime; // Number of elapsed seconds since the stream started. #if defined(HAVE_GETTIMEOFDAY) struct timeval lastTickTimestamp; #endif RtApiStream() :apiHandle(0), deviceBuffer(0) { device[0] = 11111; device[1] = 11111; } }; typedef S24 Int24; typedef signed short Int16; typedef signed int Int32; typedef float Float32; typedef double Float64; std::ostringstream errorStream_; std::string errorText_; bool showWarnings_; RtApiStream stream_; bool firstErrorOccurred_; /*! Protected, api-specific method that attempts to open a device with the given parameters. This function MUST be implemented by all subclasses. If an error is encountered during the probe, a "warning" message is reported and FAILURE is returned. A successful probe is indicated by a return value of SUCCESS. */ virtual bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int *bufferSize, RtAudio::StreamOptions *options ); //! A protected function used to increment the stream time. void tickStreamTime( void ); //! Protected common method to clear an RtApiStream structure. void clearStreamInfo(); /*! Protected common method that throws an RtAudioError (type = INVALID_USE) if a stream is not open. */ void verifyStream( void ); //! Protected common error method to allow global control over error handling. void error( RtAudioError::Type type ); /*! Protected method used to perform format, channel number, and/or interleaving conversions between the user and device buffers. */ void convertBuffer( char *outBuffer, char *inBuffer, ConvertInfo &info ); //! Protected common method used to perform byte-swapping on buffers. void byteSwapBuffer( char *buffer, unsigned int samples, RtAudioFormat format ); //! Protected common method that returns the number of bytes for a given format. unsigned int formatBytes( RtAudioFormat format ); //! Protected common method that sets up the parameters for buffer conversion. void setConvertInfo( StreamMode mode, unsigned int firstChannel ); }; // **************************************************************** // // // Inline RtAudio definitions. // // **************************************************************** // inline RtAudio::Api RtAudio :: getCurrentApi( void ) { return rtapi_->getCurrentApi(); } inline unsigned int RtAudio :: getDeviceCount( void ) { return rtapi_->getDeviceCount(); } inline RtAudio::DeviceInfo RtAudio :: getDeviceInfo( unsigned int device ) { return rtapi_->getDeviceInfo( device ); } inline unsigned int RtAudio :: getDefaultInputDevice( void ) { return rtapi_->getDefaultInputDevice(); } inline unsigned int RtAudio :: getDefaultOutputDevice( void ) { return rtapi_->getDefaultOutputDevice(); } inline void RtAudio :: closeStream( void ) { return rtapi_->closeStream(); } inline void RtAudio :: startStream( void ) { return rtapi_->startStream(); } inline void RtAudio :: stopStream( void ) { return rtapi_->stopStream(); } inline void RtAudio :: abortStream( void ) { return rtapi_->abortStream(); } inline bool RtAudio :: isStreamOpen( void ) const { return rtapi_->isStreamOpen(); } inline bool RtAudio :: isStreamRunning( void ) const { return rtapi_->isStreamRunning(); } inline long RtAudio :: getStreamLatency( void ) { return rtapi_->getStreamLatency(); } inline unsigned int RtAudio :: getStreamSampleRate( void ) { return rtapi_->getStreamSampleRate(); } inline double RtAudio :: getStreamTime( void ) { return rtapi_->getStreamTime(); } inline void RtAudio :: setStreamTime( double time ) { return rtapi_->setStreamTime( time ); } inline void RtAudio :: showWarnings( bool value ) { rtapi_->showWarnings( value ); } // RtApi Subclass prototypes. #if defined(__MACOSX_CORE__) #include class RtApiCore: public RtApi { public: RtApiCore(); ~RtApiCore(); RtAudio::Api getCurrentApi( void ) { return RtAudio::MACOSX_CORE; } unsigned int getDeviceCount( void ); RtAudio::DeviceInfo getDeviceInfo( unsigned int device ); unsigned int getDefaultOutputDevice( void ); unsigned int getDefaultInputDevice( void ); void closeStream( void ); void startStream( void ); void stopStream( void ); void abortStream( void ); long getStreamLatency( void ); // This function is intended for internal use only. It must be // public because it is called by the internal callback handler, // which is not a member of RtAudio. External use of this function // will most likely produce highly undesireable results! bool callbackEvent( AudioDeviceID deviceId, const AudioBufferList *inBufferList, const AudioBufferList *outBufferList ); private: bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int *bufferSize, RtAudio::StreamOptions *options ); static const char* getErrorCode( OSStatus code ); }; #endif #if defined(__UNIX_JACK__) class RtApiJack: public RtApi { public: RtApiJack(); ~RtApiJack(); RtAudio::Api getCurrentApi( void ) { return RtAudio::UNIX_JACK; } unsigned int getDeviceCount( void ); RtAudio::DeviceInfo getDeviceInfo( unsigned int device ); void closeStream( void ); void startStream( void ); void stopStream( void ); void abortStream( void ); long getStreamLatency( void ); // This function is intended for internal use only. It must be // public because it is called by the internal callback handler, // which is not a member of RtAudio. External use of this function // will most likely produce highly undesireable results! bool callbackEvent( unsigned long nframes ); private: bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int *bufferSize, RtAudio::StreamOptions *options ); bool shouldAutoconnect_; }; #endif #if defined(__WINDOWS_ASIO__) class RtApiAsio: public RtApi { public: RtApiAsio(); ~RtApiAsio(); RtAudio::Api getCurrentApi( void ) { return RtAudio::WINDOWS_ASIO; } unsigned int getDeviceCount( void ); RtAudio::DeviceInfo getDeviceInfo( unsigned int device ); void closeStream( void ); void startStream( void ); void stopStream( void ); void abortStream( void ); long getStreamLatency( void ); // This function is intended for internal use only. It must be // public because it is called by the internal callback handler, // which is not a member of RtAudio. External use of this function // will most likely produce highly undesireable results! bool callbackEvent( long bufferIndex ); private: std::vector devices_; void saveDeviceInfo( void ); bool coInitialized_; bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int *bufferSize, RtAudio::StreamOptions *options ); }; #endif #if defined(__WINDOWS_DS__) class RtApiDs: public RtApi { public: RtApiDs(); ~RtApiDs(); RtAudio::Api getCurrentApi( void ) { return RtAudio::WINDOWS_DS; } unsigned int getDeviceCount( void ); unsigned int getDefaultOutputDevice( void ); unsigned int getDefaultInputDevice( void ); RtAudio::DeviceInfo getDeviceInfo( unsigned int device ); void closeStream( void ); void startStream( void ); void stopStream( void ); void abortStream( void ); long getStreamLatency( void ); // This function is intended for internal use only. It must be // public because it is called by the internal callback handler, // which is not a member of RtAudio. External use of this function // will most likely produce highly undesireable results! void callbackEvent( void ); private: bool coInitialized_; bool buffersRolling; long duplexPrerollBytes; std::vector dsDevices; bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int *bufferSize, RtAudio::StreamOptions *options ); }; #endif #if defined(__WINDOWS_WASAPI__) struct IMMDeviceEnumerator; class RtApiWasapi : public RtApi { public: RtApiWasapi(); ~RtApiWasapi(); RtAudio::Api getCurrentApi( void ) { return RtAudio::WINDOWS_WASAPI; } unsigned int getDeviceCount( void ); RtAudio::DeviceInfo getDeviceInfo( unsigned int device ); unsigned int getDefaultOutputDevice( void ); unsigned int getDefaultInputDevice( void ); void closeStream( void ); void startStream( void ); void stopStream( void ); void abortStream( void ); private: bool coInitialized_; IMMDeviceEnumerator* deviceEnumerator_; bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int* bufferSize, RtAudio::StreamOptions* options ); static DWORD WINAPI runWasapiThread( void* wasapiPtr ); static DWORD WINAPI stopWasapiThread( void* wasapiPtr ); static DWORD WINAPI abortWasapiThread( void* wasapiPtr ); void wasapiThread(); }; #endif #if defined(__LINUX_ALSA__) class RtApiAlsa: public RtApi { public: RtApiAlsa(); ~RtApiAlsa(); RtAudio::Api getCurrentApi() { return RtAudio::LINUX_ALSA; } unsigned int getDeviceCount( void ); RtAudio::DeviceInfo getDeviceInfo( unsigned int device ); void closeStream( void ); void startStream( void ); void stopStream( void ); void abortStream( void ); // This function is intended for internal use only. It must be // public because it is called by the internal callback handler, // which is not a member of RtAudio. External use of this function // will most likely produce highly undesireable results! void callbackEvent( void ); private: std::vector devices_; void saveDeviceInfo( void ); bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int *bufferSize, RtAudio::StreamOptions *options ); }; #endif #if defined(__LINUX_PULSE__) class RtApiPulse: public RtApi { public: ~RtApiPulse(); RtAudio::Api getCurrentApi() { return RtAudio::LINUX_PULSE; } unsigned int getDeviceCount( void ); RtAudio::DeviceInfo getDeviceInfo( unsigned int device ); void closeStream( void ); void startStream( void ); void stopStream( void ); void abortStream( void ); // This function is intended for internal use only. It must be // public because it is called by the internal callback handler, // which is not a member of RtAudio. External use of this function // will most likely produce highly undesireable results! void callbackEvent( void ); private: std::vector devices_; void saveDeviceInfo( void ); bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int *bufferSize, RtAudio::StreamOptions *options ); }; #endif #if defined(__LINUX_OSS__) class RtApiOss: public RtApi { public: RtApiOss(); ~RtApiOss(); RtAudio::Api getCurrentApi() { return RtAudio::LINUX_OSS; } unsigned int getDeviceCount( void ); RtAudio::DeviceInfo getDeviceInfo( unsigned int device ); void closeStream( void ); void startStream( void ); void stopStream( void ); void abortStream( void ); // This function is intended for internal use only. It must be // public because it is called by the internal callback handler, // which is not a member of RtAudio. External use of this function // will most likely produce highly undesireable results! void callbackEvent( void ); private: bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, unsigned int firstChannel, unsigned int sampleRate, RtAudioFormat format, unsigned int *bufferSize, RtAudio::StreamOptions *options ); }; #endif #if defined(__RTAUDIO_DUMMY__) class RtApiDummy: public RtApi { public: RtApiDummy() { errorText_ = "RtApiDummy: This class provides no functionality."; error( RtAudioError::WARNING ); } RtAudio::Api getCurrentApi( void ) { return RtAudio::RTAUDIO_DUMMY; } unsigned int getDeviceCount( void ) { return 0; } RtAudio::DeviceInfo getDeviceInfo( unsigned int /*device*/ ) { RtAudio::DeviceInfo info; return info; } void closeStream( void ) {} void startStream( void ) {} void stopStream( void ) {} void abortStream( void ) {} private: bool probeDeviceOpen( unsigned int /*device*/, StreamMode /*mode*/, unsigned int /*channels*/, unsigned int /*firstChannel*/, unsigned int /*sampleRate*/, RtAudioFormat /*format*/, unsigned int * /*bufferSize*/, RtAudio::StreamOptions * /*options*/ ) { return false; } }; #endif #endif // Indentation settings for Vim and Emacs // // Local Variables: // c-basic-offset: 2 // indent-tabs-mode: nil // End: // // vim: et sts=2 sw=2 ================================================ FILE: vendor/github.com/thestk/rtaudio/autogen.sh ================================================ #!/bin/sh # Run this to generate all the initial makefiles, etc. srcdir=`dirname $0` test -z "$srcdir" && srcdir=. DIE=0 if test -z "$*"; then echo "**Warning**: I am going to run \`configure' with arguments for" echo "developer/maintainer mode. If you wish to pass extra arguments," echo "(such as --prefix), please specify them on the \`$0'" echo "command line." echo "If you wish to run configure yourself, please specify --no-configure." echo fi (test -f $srcdir/configure.ac) || { echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" echo " top-level package directory" exit 1 } # Make some directories required by automake, if they don't exist if ! [ -d config ]; then mkdir -v config; fi if ! [ -d m4 ]; then mkdir -v m4; fi if ! autoreconf --version /dev/null 2>&1 then (autoconf --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`autoconf' installed." echo "Download the appropriate package for your distribution," echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" DIE=1 } (grep "^LT_INIT" $srcdir/configure.ac >/dev/null) && { (libtoolize --version) < /dev/null > /dev/null 2>&1 \ && LIBTOOLIZE=libtoolize || { (glibtoolize --version) < /dev/null > /dev/null 2>&1 \ && LIBTOOLIZE=glibtoolize || { echo echo "**Error**: You must have \`libtool' installed." echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/" DIE=1 } } } (automake --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`automake' installed." echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/" DIE=1 NO_AUTOMAKE=yes } # if no automake, don't bother testing for aclocal test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: Missing \`aclocal'. The version of \`automake'" echo "installed doesn't appear recent enough." echo "You can get automake from ftp://ftp.gnu.org/pub/gnu/" DIE=1 } if test "$DIE" -eq 1; then exit 1 fi case $CC in xlc ) am_opt=--include-deps;; esac echo "Running aclocal $aclocalinclude ..." aclocal $ACLOCAL_FLAGS || exit 1 echo "Running $LIBTOOLIZE ..." $LIBTOOLIZE || exit 1 echo "Running automake --gnu $am_opt ..." automake --add-missing --gnu $am_opt || exit 1 echo "Running autoconf ..." autoconf || exit 1 else # autoreconf instead echo "Running autoreconf --verbose --install ..." autoreconf --verbose --install || exit 1 fi if ( echo "$@" | grep -q -e "--no-configure" ); then NOCONFIGURE=1 fi conf_flags="--enable-maintainer-mode --enable-debug --disable-silent-rules" if test x$NOCONFIGURE = x; then echo Running $srcdir/configure $conf_flags "$@" ... $srcdir/configure $conf_flags "$@" \ && echo Now type \`make\' to compile. || exit 1 else echo Skipping configure process. fi ================================================ FILE: vendor/github.com/thestk/rtaudio/configure.ac ================================================ # Process this file with autoconf to produce a configure script. AC_INIT(RtAudio, 5.0.0, gary@music.mcgill.ca, rtaudio) AC_CONFIG_AUX_DIR(config) AC_CONFIG_SRCDIR(RtAudio.cpp) AC_CONFIG_FILES([rtaudio.pc Makefile tests/Makefile doc/Makefile doc/doxygen/Doxyfile]) AM_INIT_AUTOMAKE([1.14 -Wall -Werror foreign subdir-objects]) # libtool version: current:revision:age # # If the library source code has changed at all since the last update, then # increment revision (`c:r:a' becomes `c:r+1:a'). # # If any interfaces have been added, removed, or changed since the last update, # increment current, and set revision to 0. # # If any interfaces have been added since the last public release, then # increment age. # # If any interfaces have been removed since the last public release, then set # age to 0. m4_define([lt_current], 6) m4_define([lt_revision], 0) m4_define([lt_age], 0) m4_define([lt_version_info], [lt_current:lt_revision:lt_age]) m4_define([lt_current_minus_age], [m4_eval(lt_current - lt_age)]) SO_VERSION=lt_version_info AC_SUBST(SO_VERSION) AC_SUBST(api) AC_SUBST(req) AC_SUBST(visibility) api="" req="" use_asio="" # configure flags AC_ARG_ENABLE(debug, [AS_HELP_STRING([--enable-debug],[enable various debug output])]) AC_ARG_WITH(jack, [AS_HELP_STRING([--with-jack], [choose JACK server support (mac and linux only)])]) AC_ARG_WITH(alsa, [AS_HELP_STRING([--with-alsa], [choose native ALSA API support (linux only)])]) AC_ARG_WITH(pulse, [AS_HELP_STRING([--with-pulse], [choose PulseAudio API support (linux only)])]) AC_ARG_WITH(oss, [AS_HELP_STRING([--with-oss], [choose OSS API support (unixes)])]) AC_ARG_WITH(core, [AS_HELP_STRING([--with-core], [choose CoreAudio API support (mac only)])]) AC_ARG_WITH(asio, [AS_HELP_STRING([--with-asio], [choose ASIO API support (win32 only)])]) AC_ARG_WITH(ds, [AS_HELP_STRING([--with-ds], [choose DirectSound API support (win32 only)])]) AC_ARG_WITH(wasapi, [AS_HELP_STRING([--with-wasapi], [choose Windows Audio Session API support (win32 only)])]) # Check version number coherency between RtAudio.h and configure.ac AC_MSG_CHECKING([that version numbers are coherent]) RTAUDIO_VERSION=`sed -n 's/#define RTAUDIO_VERSION "\(.*\)"/\1/p' $srcdir/RtAudio.h` AS_IF([test "x$RTAUDIO_VERSION" != "x$PACKAGE_VERSION"],[ AC_MSG_RESULT([no]) AC_MSG_FAILURE([testing RTAUDIO_VERSION==PACKAGE_VERSION failed, check that RtAudio.h defines RTAUDIO_VERSION as "$PACKAGE_VERSION" or that the first line of configure.ac has been updated.]) ],[ AC_MSG_RESULT([yes]) ]) # Enable some nice automake features if they are available m4_ifdef([AM_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) # Fill GXX with something before test. GXX="no" # if the user did not provide any CXXFLAGS, we can override them AS_IF([test "x$CXXFLAGS" = "x" ], [override_cxx=yes], [override_cxx=no]) AS_IF([test "x$CFLAGS" = "x" ], [override_c=yes], [override_c=no]) # Checks for programs. AC_PROG_CXX(g++ CC c++ cxx) AM_PROG_AR AC_PATH_PROG(AR, ar, no) AS_IF([test "x${AR}" = "xno" ], [ AC_MSG_ERROR([Could not find ar - needed to create a library]) ]) # Initialize libtool LT_INIT([win32-dll]) AC_CONFIG_MACRO_DIR([m4]) # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(sys/ioctl.h unistd.h) # Check compiler and use -Wall if gnu AS_IF([test "x${GXX}" = "xyes" ], [ CXXFLAGS="-Wall -Wextra ${CXXFLAGS}" AS_IF([ test "x${enable_debug}" = "xyes" ], [ # Add -Werror in debug mode CXXFLAGS="-Werror ${CXXFLAGS}" ], [ # hide private symbols in non-debug mode visibility="-fvisibility=hidden" ]) ]) # Check for debug AC_MSG_CHECKING([whether to compile debug version]) debugflags="" AS_CASE([${enable_debug}], [ yes ], [ AC_MSG_RESULT([yes]) AC_DEFINE([__RTAUDIO_DEBUG__]) debugflags="${debugflags} -g -O0" object_path=Debug ], [ no ], [ AC_MSG_RESULT([no!]) debugflags="${debugflags} -O3" ], [ AC_MSG_RESULT([no]) ]) # For debugging and optimization ... overwrite default because it has both -g and -O2 AS_IF([test "x$debugflags" != x], AS_IF([test "x$override_cxx" = "xyes" ], CXXFLAGS="$CXXFLAGS $debugflags", CXXFLAGS="$debugflags $CXXFLAGS") AS_IF([test "x$override_c" = "xyes" ], CFLAGS="$CFLAGS $debugflags", CFLAGS="$debugflags $CFLAGS") ) # Checks for functions AC_CHECK_FUNC(gettimeofday, [cppflag="$cppflag -DHAVE_GETTIMEOFDAY"], ) # Checks for doxygen AC_CHECK_PROG( DOXYGEN, [doxygen], [doxygen] ) AM_CONDITIONAL( MAKE_DOC, [test "x${DOXYGEN}" != x ] ) # Copy doc files to build dir if necessary AC_CONFIG_LINKS( [doc/release.txt:doc/release.txt] ) AC_CONFIG_LINKS( [doc/doxygen/footer.html:doc/doxygen/footer.html] ) AC_CONFIG_LINKS( [doc/doxygen/error.txt:doc/doxygen/error.txt] ) AC_CONFIG_LINKS( [doc/doxygen/tutorial.txt:doc/doxygen/tutorial.txt] ) AC_CONFIG_LINKS( [doc/doxygen/compiling.txt:doc/doxygen/compiling.txt] ) AC_CONFIG_LINKS( [doc/doxygen/acknowledge.txt:doc/doxygen/acknowledge.txt] ) AC_CONFIG_LINKS( [doc/doxygen/license.txt:doc/doxygen/license.txt] ) AC_CONFIG_LINKS( [doc/doxygen/header.html:doc/doxygen/header.html] ) AC_CONFIG_LINKS( [doc/doxygen/duplex.txt:doc/doxygen/duplex.txt] ) AC_CONFIG_LINKS( [doc/doxygen/settings.txt:doc/doxygen/settings.txt] ) AC_CONFIG_LINKS( [doc/doxygen/probe.txt:doc/doxygen/probe.txt] ) AC_CONFIG_LINKS( [doc/doxygen/playback.txt:doc/doxygen/playback.txt] ) AC_CONFIG_LINKS( [doc/doxygen/multi.txt:doc/doxygen/multi.txt] ) AC_CONFIG_LINKS( [doc/doxygen/recording.txt:doc/doxygen/recording.txt] ) AC_CONFIG_LINKS( [doc/doxygen/apinotes.txt:doc/doxygen/apinotes.txt] ) AC_CONFIG_LINKS( [doc/images/mcgill.gif:doc/images/mcgill.gif] ) AC_CONFIG_LINKS( [doc/images/ccrma.gif:doc/images/ccrma.gif] ) # Checks for package options and external software AC_CANONICAL_HOST AC_MSG_CHECKING([for audio API]) AS_IF([test "x$with_jack" = "xyes"], [ AC_MSG_RESULT([using JACK]) AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR([JACK support requires the jack library!])) api="$api -D__UNIX_JACK__" ]) AS_CASE([$host], [*-*-netbsd*], AS_IF([test "x$api" = "x"], [ AC_MSG_RESULT([using OSS]) api="$api -D__LINUX_OSS__" AC_CHECK_LIB(ossaudio, main, , AC_MSG_ERROR([RtAudio requires the ossaudio library])) AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR([RtAudio requires the pthread library!])) ]), [*-*-freebsd*], AS_IF([test "x$api" = "x"], [ AC_MSG_RESULT([using OSS]) api="$api -D__LINUX_OSS__" AC_CHECK_LIB(ossaudio, main, , AC_MSG_ERROR([RtAudio requires the ossaudio library])) AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR([RtAudio requires the pthread library!])) ]), [*-*-linux*], [ # Look for ALSA flag AS_IF([test "x$with_alsa" = "xyes"], [ AC_MSG_RESULT([using ALSA]) api="$api -D__LINUX_ALSA__" req="$req alsa" AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR([ALSA support requires the asound library!])) ]) # Look for PULSE flag AS_IF([test "x$with_pulse" = "xyes"], [ AC_MSG_RESULT([using PulseAudio]) api="$api -D__LINUX_PULSE__" req="$req libpulse-simple" AC_CHECK_LIB(pulse-simple, pa_simple_flush, , AC_MSG_ERROR([PulseAudio support requires the pulse-simple library!])) ]) # Look for OSS flag AS_IF([test "x$with_oss" = "xyes"], [ AC_MSG_RESULT([using OSS]) api="$api -D__LINUX_OSS__" ]) # If no audio api flags specified, use ALSA AS_IF([test "x$api" = "x" ], [ AC_MSG_RESULT([using ALSA]) api="${api} -D__LINUX_ALSA__" req="${req} alsa" AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR([ALSA support requires the asound library!])) ]) AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR([RtAudio requires the pthread library!])) ], [*-apple*],[ # Look for Core flag AS_IF([test "x$with_core" = "xyes"], [ AC_MSG_RESULT([using CoreAudio]) api="$api -D__MACOSX_CORE__" AC_CHECK_HEADER(CoreAudio/CoreAudio.h, [], [AC_MSG_ERROR([CoreAudio header files not found!])] ) LIBS="$LIBS -framework CoreAudio -framework CoreFoundation" ]) # If no audio api flags specified, use CoreAudio AS_IF([test "x$api" = "x" ], [ AC_MSG_RESULT([using CoreAudio]) api="${api} -D__MACOSX_CORE__" AC_CHECK_HEADER(CoreAudio/CoreAudio.h, [], [AC_MSG_ERROR([CoreAudio header files not found!])] ) LIBS="LIBS -framework CoreAudio -framework CoreFoundation" ]) AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR([RtAudio requires the pthread library!])) ], [*-mingw32*],[ AS_IF([test "x$with_asio" = "xyes" ], [ AC_MSG_RESULT([using ASIO]) api="$api -D__WINDOWS_ASIO__" use_asio=yes CPPFLAGS="-I$srcdir/include $CPPFLAGS" ]) # Look for DirectSound flag AS_IF([test "x$with_ds" = "xyes" ], [ AC_MSG_RESULT([using DirectSound]) api="$api -D__WINDOWS_DS__" LIBS="-ldsound -lwinmm $LIBS" ]) # Look for WASAPI flag AS_IF([test "x$with_wasapi" = "xyes"], [ AC_MSG_RESULT([using WASAPI]) api="$api -D__WINDOWS_WASAPI__" LIBS="-lwinmm -luuid -lksuser $LIBS" CPPFLAGS="-I$srcdir/include $CPPFLAGS" ]) # If no audio api flags specified, use DS AS_IF([test "x$api" = "x" ], [ AC_MSG_RESULT([using DirectSound]) api="$api -D__WINDOWS_DS__" LIBS="-ldsound -lwinmm $LIBS" ]) LIBS="-lole32 $LIBS" ],[ AC_MSG_RESULT([none]) # Default case for unknown realtime systems. AC_MSG_ERROR([Unknown system type for realtime support!]) ] ) AM_CONDITIONAL( ASIO, [test "x${use_asio}" = "xyes" ]) CPPFLAGS="$CPPFLAGS $api" AC_OUTPUT ================================================ FILE: vendor/github.com/thestk/rtaudio/contrib/go/rtaudio/rtaudio.go ================================================ package rtaudio /* #cgo CXXFLAGS: -g #cgo LDFLAGS: -lstdc++ -g #cgo linux CXXFLAGS: -D__LINUX_ALSA__ #cgo linux LDFLAGS: -lm -lasound -pthread #cgo linux,pulseaudio CXXFLAGS: -D__LINUX_PULSE__ #cgo linux,pulseaudio LDFLAGS: -lpulse -lpulse-simple #cgo jack CXXFLAGS: -D__UNIX_JACK__ #cgo jack LDFLAGS: -ljack #cgo windows CXXFLAGS: -D__WINDOWS_WASAPI__ #cgo windows LDFLAGS: -lm -luuid -lksuser -lwinmm -lole32 -static #cgo darwin CXXFLAGS: -D__MACOSX_CORE__ #cgo darwin LDFLAGS: -framework CoreAudio -framework CoreFoundation #include #include #include "rtaudio_stub.h" extern int goCallback(void *out, void *in, unsigned int nFrames, double stream_time, rtaudio_stream_status_t status, void *userdata); static inline void cgoRtAudioOpenStream(rtaudio_t audio, rtaudio_stream_parameters_t *output_params, rtaudio_stream_parameters_t *input_params, rtaudio_format_t format, unsigned int sample_rate, unsigned int *buffer_frames, int cb_id, rtaudio_stream_options_t *options) { rtaudio_open_stream(audio, output_params, input_params, format, sample_rate, buffer_frames, goCallback, (void *)(uintptr_t)cb_id, options, NULL); } */ import "C" import ( "errors" "sync" "time" "unsafe" ) // API is an enumeration of available compiled APIs. Supported API include // Alsa/PulseAudio/OSS, Jack, CoreAudio, WASAPI/ASIO/DS and dummy API. type API C.rtaudio_api_t const ( // APIUnspecified looks for a working compiled API. APIUnspecified API = C.RTAUDIO_API_UNSPECIFIED // APILinuxALSA uses the Advanced Linux Sound Architecture API. APILinuxALSA = C.RTAUDIO_API_LINUX_ALSA // APILinuxPulse uses the Linux PulseAudio API. APILinuxPulse = C.RTAUDIO_API_LINUX_PULSE // APILinuxOSS uses the Linux Open Sound System API. APILinuxOSS = C.RTAUDIO_API_LINUX_OSS // APIUnixJack uses the Jack Low-Latency Audio Server API. APIUnixJack = C.RTAUDIO_API_UNIX_JACK // APIMacOSXCore uses Macintosh OS-X Core Audio API. APIMacOSXCore = C.RTAUDIO_API_MACOSX_CORE // APIWindowsWASAPI uses the Microsoft WASAPI API. APIWindowsWASAPI = C.RTAUDIO_API_WINDOWS_WASAPI // APIWindowsASIO uses the Steinberg Audio Stream I/O API. APIWindowsASIO = C.RTAUDIO_API_WINDOWS_ASIO // APIWindowsDS uses the Microsoft Direct Sound API. APIWindowsDS = C.RTAUDIO_API_WINDOWS_DS // APIDummy is a compilable but non-functional API. APIDummy = C.RTAUDIO_API_DUMMY ) func (api API) String() string { switch api { case APIUnspecified: return "unspecified" case APILinuxALSA: return "alsa" case APILinuxPulse: return "pulse" case APILinuxOSS: return "oss" case APIUnixJack: return "jack" case APIMacOSXCore: return "coreaudio" case APIWindowsWASAPI: return "wasapi" case APIWindowsASIO: return "asio" case APIWindowsDS: return "directsound" case APIDummy: return "dummy" } return "?" } // StreamStatus defines over- or underflow flags in the audio callback. type StreamStatus C.rtaudio_stream_status_t const ( // StatusInputOverflow indicates that data was discarded because of an // overflow condition at the driver. StatusInputOverflow StreamStatus = C.RTAUDIO_STATUS_INPUT_OVERFLOW // StatusOutputUnderflow indicates that the output buffer ran low, likely // producing a break in the output sound. StatusOutputUnderflow StreamStatus = C.RTAUDIO_STATUS_OUTPUT_UNDERFLOW ) // Version returns current RtAudio library version string. func Version() string { return C.GoString(C.rtaudio_version()) } // CompiledAPI determines the available compiled audio APIs. func CompiledAPI() (apis []API) { capis := (*[1 << 27]C.rtaudio_api_t)(unsafe.Pointer(C.rtaudio_compiled_api())) for i := 0; ; i++ { api := capis[i] if api == C.RTAUDIO_API_UNSPECIFIED { break } apis = append(apis, API(api)) } return apis } // DeviceInfo is the public device information structure for returning queried values. type DeviceInfo struct { Name string Probed bool NumOutputChannels int NumInputChannels int NumDuplexChannels int IsDefaultOutput bool IsDefaultInput bool //rtaudio_format_t native_formats; PreferredSampleRate uint SampleRates []int } // StreamParams is the structure for specifying input or output stream parameters. type StreamParams struct { DeviceID uint NumChannels uint FirstChannel uint } // StreamFlags is a set of RtAudio stream option flags. type StreamFlags C.rtaudio_stream_flags_t const ( // FlagsNoninterleaved is set to use non-interleaved buffers (default = interleaved). FlagsNoninterleaved = C.RTAUDIO_FLAGS_NONINTERLEAVED // FlagsMinimizeLatency when set attempts to configure stream parameters for lowest possible latency. FlagsMinimizeLatency = C.RTAUDIO_FLAGS_MINIMIZE_LATENCY // FlagsHogDevice when set attempts to grab device for exclusive use. FlagsHogDevice = C.RTAUDIO_FLAGS_HOG_DEVICE // FlagsScheduleRealtime is set in attempt to select realtime scheduling (round-robin) for the callback thread. FlagsScheduleRealtime = C.RTAUDIO_FLAGS_SCHEDULE_REALTIME // FlagsAlsaUseDefault is set to use the "default" PCM device (ALSA only). FlagsAlsaUseDefault = C.RTAUDIO_FLAGS_ALSA_USE_DEFAULT ) // StreamOptions is the structure for specifying stream options. type StreamOptions struct { Flags StreamFlags NumBuffers uint Priotity int Name string } // RtAudio is a "controller" used to select an available audio i/o interface. type RtAudio interface { Destroy() CurrentAPI() API Devices() ([]DeviceInfo, error) DefaultOutputDevice() int DefaultInputDevice() int Open(out, in *StreamParams, format Format, sampleRate uint, frames uint, cb Callback, opts *StreamOptions) error Close() Start() error Stop() error Abort() error IsOpen() bool IsRunning() bool Latency() (int, error) SampleRate() (uint, error) Time() (time.Duration, error) SetTime(time.Duration) error ShowWarnings(bool) } type rtaudio struct { audio C.rtaudio_t cb Callback inputChannels int outputChannels int format Format } var _ RtAudio = &rtaudio{} // Create a new RtAudio instance using the given API. func Create(api API) (RtAudio, error) { audio := C.rtaudio_create(C.rtaudio_api_t(api)) if C.rtaudio_error(audio) != nil { return nil, errors.New(C.GoString(C.rtaudio_error(audio))) } return &rtaudio{audio: audio}, nil } func (audio *rtaudio) Destroy() { C.rtaudio_destroy(audio.audio) } func (audio *rtaudio) CurrentAPI() API { return API(C.rtaudio_current_api(audio.audio)) } func (audio *rtaudio) DefaultInputDevice() int { return int(C.rtaudio_get_default_input_device(audio.audio)) } func (audio *rtaudio) DefaultOutputDevice() int { return int(C.rtaudio_get_default_output_device(audio.audio)) } func (audio *rtaudio) Devices() ([]DeviceInfo, error) { n := C.rtaudio_device_count(audio.audio) devices := []DeviceInfo{} for i := C.int(0); i < n; i++ { cinfo := C.rtaudio_get_device_info(audio.audio, i) if C.rtaudio_error(audio.audio) != nil { return nil, errors.New(C.GoString(C.rtaudio_error(audio.audio))) } sr := []int{} for _, r := range cinfo.sample_rates { if r == 0 { break } sr = append(sr, int(r)) } devices = append(devices, DeviceInfo{ Name: C.GoString(&cinfo.name[0]), Probed: cinfo.probed != 0, NumInputChannels: int(cinfo.input_channels), NumOutputChannels: int(cinfo.output_channels), NumDuplexChannels: int(cinfo.duplex_channels), IsDefaultOutput: cinfo.is_default_output != 0, IsDefaultInput: cinfo.is_default_input != 0, PreferredSampleRate: uint(cinfo.preferred_sample_rate), SampleRates: sr, }) // TODO: formats } return devices, nil } // Format defines RtAudio data format type. type Format int const ( // FormatInt8 uses 8-bit signed integer. FormatInt8 Format = C.RTAUDIO_FORMAT_SINT8 // FormatInt16 uses 16-bit signed integer. FormatInt16 = C.RTAUDIO_FORMAT_SINT16 // FormatInt24 uses 24-bit signed integer. FormatInt24 = C.RTAUDIO_FORMAT_SINT24 // FormatInt32 uses 32-bit signed integer. FormatInt32 = C.RTAUDIO_FORMAT_SINT32 // FormatFloat32 uses 32-bit floating point values normalized between (-1..1). FormatFloat32 = C.RTAUDIO_FORMAT_FLOAT32 // FormatFloat64 uses 64-bit floating point values normalized between (-1..1). FormatFloat64 = C.RTAUDIO_FORMAT_FLOAT64 ) // Buffer is a common interface for audio buffers of various data format types. type Buffer interface { Len() int Int8() []int8 Int16() []int16 Int24() []Int24 Int32() []int32 Float32() []float32 Float64() []float64 } // Int24 is a helper type to convert int32 values to int24 and back. type Int24 [3]byte // Set Int24 value using the least significant bytes of the given number n. func (i *Int24) Set(n int32) { (*i)[0], (*i)[1], (*i)[2] = byte(n&0xff), byte((n&0xff00)>>8), byte((n&0xff0000)>>16) } // Get Int24 value as int32. func (i Int24) Get() int32 { n := int32(i[0]) | int32(i[1])<<8 | int32(i[2])<<16 if n&0x800000 != 0 { n |= ^0xffffff } return n } type buffer struct { format Format length int numChannels int ptr unsafe.Pointer } func (b *buffer) Len() int { if b.ptr == nil { return 0 } return b.length } func (b *buffer) Int8() []int8 { if b.format != FormatInt8 { return nil } if b.ptr == nil { return nil } return (*[1 << 30]int8)(b.ptr)[:b.length*b.numChannels : b.length*b.numChannels] } func (b *buffer) Int16() []int16 { if b.format != FormatInt16 { return nil } if b.ptr == nil { return nil } return (*[1 << 29]int16)(b.ptr)[:b.length*b.numChannels : b.length*b.numChannels] } func (b *buffer) Int24() []Int24 { if b.format != FormatInt24 { return nil } if b.ptr == nil { return nil } return (*[1 << 28]Int24)(b.ptr)[:b.length*b.numChannels : b.length*b.numChannels] } func (b *buffer) Int32() []int32 { if b.format != FormatInt32 { return nil } if b.ptr == nil { return nil } return (*[1 << 27]int32)(b.ptr)[:b.length*b.numChannels : b.length*b.numChannels] } func (b *buffer) Float32() []float32 { if b.format != FormatFloat32 { return nil } if b.ptr == nil { return nil } return (*[1 << 27]float32)(b.ptr)[:b.length*b.numChannels : b.length*b.numChannels] } func (b *buffer) Float64() []float64 { if b.format != FormatFloat64 { return nil } if b.ptr == nil { return nil } return (*[1 << 23]float64)(b.ptr)[:b.length*b.numChannels : b.length*b.numChannels] } // Callback is a client-defined function that will be invoked when input data // is available and/or output data is needed. type Callback func(out Buffer, in Buffer, dur time.Duration, status StreamStatus) int var ( mu sync.Mutex audios = map[int]*rtaudio{} ) func registerAudio(a *rtaudio) int { mu.Lock() defer mu.Unlock() for i := 0; ; i++ { if _, ok := audios[i]; !ok { audios[i] = a return i } } } func unregisterAudio(a *rtaudio) { mu.Lock() defer mu.Unlock() for i := 0; i < len(audios); i++ { if audios[i] == a { delete(audios, i) return } } } func findAudio(k int) *rtaudio { mu.Lock() defer mu.Unlock() return audios[k] } //export goCallback func goCallback(out, in unsafe.Pointer, frames C.uint, sec C.double, status C.rtaudio_stream_status_t, userdata unsafe.Pointer) C.int { k := int(uintptr(userdata)) audio := findAudio(k) dur := time.Duration(time.Microsecond * time.Duration(sec*1000000.0)) inbuf := &buffer{audio.format, int(frames), audio.inputChannels, in} outbuf := &buffer{audio.format, int(frames), audio.outputChannels, out} return C.int(audio.cb(outbuf, inbuf, dur, StreamStatus(status))) } func (audio *rtaudio) Open(out, in *StreamParams, format Format, sampleRate uint, frames uint, cb Callback, opts *StreamOptions) error { var ( cInPtr *C.rtaudio_stream_parameters_t cOutPtr *C.rtaudio_stream_parameters_t cOptsPtr *C.rtaudio_stream_options_t cIn C.rtaudio_stream_parameters_t cOut C.rtaudio_stream_parameters_t cOpts C.rtaudio_stream_options_t ) audio.inputChannels = 0 audio.outputChannels = 0 if out != nil { audio.outputChannels = int(out.NumChannels) cOut.device_id = C.uint(out.DeviceID) cOut.num_channels = C.uint(out.NumChannels) cOut.first_channel = C.uint(out.FirstChannel) cOutPtr = &cOut } if in != nil { audio.inputChannels = int(in.NumChannels) cIn.device_id = C.uint(in.DeviceID) cIn.num_channels = C.uint(in.NumChannels) cIn.first_channel = C.uint(in.FirstChannel) cInPtr = &cIn } if opts != nil { cOpts.flags = C.rtaudio_stream_flags_t(opts.Flags) cOpts.num_buffers = C.uint(opts.NumBuffers) cOpts.priority = C.int(opts.Priotity) cOptsPtr = &cOpts } framesCount := C.uint(frames) audio.format = format audio.cb = cb k := registerAudio(audio) C.cgoRtAudioOpenStream(audio.audio, cOutPtr, cInPtr, C.rtaudio_format_t(format), C.uint(sampleRate), &framesCount, C.int(k), cOptsPtr) if C.rtaudio_error(audio.audio) != nil { return errors.New(C.GoString(C.rtaudio_error(audio.audio))) } return nil } func (audio *rtaudio) Close() { unregisterAudio(audio) C.rtaudio_close_stream(audio.audio) } func (audio *rtaudio) Start() error { C.rtaudio_start_stream(audio.audio) if C.rtaudio_error(audio.audio) != nil { return errors.New(C.GoString(C.rtaudio_error(audio.audio))) } return nil } func (audio *rtaudio) Stop() error { C.rtaudio_stop_stream(audio.audio) if C.rtaudio_error(audio.audio) != nil { return errors.New(C.GoString(C.rtaudio_error(audio.audio))) } return nil } func (audio *rtaudio) Abort() error { C.rtaudio_abort_stream(audio.audio) if C.rtaudio_error(audio.audio) != nil { return errors.New(C.GoString(C.rtaudio_error(audio.audio))) } return nil } func (audio *rtaudio) IsOpen() bool { return C.rtaudio_is_stream_open(audio.audio) != 0 } func (audio *rtaudio) IsRunning() bool { return C.rtaudio_is_stream_running(audio.audio) != 0 } func (audio *rtaudio) Latency() (int, error) { latency := C.rtaudio_get_stream_latency(audio.audio) if C.rtaudio_error(audio.audio) != nil { return 0, errors.New(C.GoString(C.rtaudio_error(audio.audio))) } return int(latency), nil } func (audio *rtaudio) SampleRate() (uint, error) { sampleRate := C.rtaudio_get_stream_sample_rate(audio.audio) if C.rtaudio_error(audio.audio) != nil { return 0, errors.New(C.GoString(C.rtaudio_error(audio.audio))) } return uint(sampleRate), nil } func (audio *rtaudio) Time() (time.Duration, error) { sec := C.rtaudio_get_stream_time(audio.audio) if C.rtaudio_error(audio.audio) != nil { return 0, errors.New(C.GoString(C.rtaudio_error(audio.audio))) } return time.Duration(time.Microsecond * time.Duration(sec*1000000.0)), nil } func (audio *rtaudio) SetTime(t time.Duration) error { sec := float64(t) * 1000000.0 / float64(time.Microsecond) C.rtaudio_set_stream_time(audio.audio, C.double(sec)) if C.rtaudio_error(audio.audio) != nil { return errors.New(C.GoString(C.rtaudio_error(audio.audio))) } return nil } func (audio *rtaudio) ShowWarnings(show bool) { if show { C.rtaudio_show_warnings(audio.audio, 1) } else { C.rtaudio_show_warnings(audio.audio, 0) } } ================================================ FILE: vendor/github.com/thestk/rtaudio/contrib/go/rtaudio/rtaudio_stub.cpp ================================================ #include "../../../RtAudio.h" #include "../../../RtAudio.cpp" #include "../../../rtaudio_c.cpp" ================================================ FILE: vendor/github.com/thestk/rtaudio/contrib/go/rtaudio/rtaudio_stub.h ================================================ #include "../../../rtaudio_c.h" ================================================ FILE: vendor/github.com/thestk/rtaudio/contrib/go/rtaudio/rtaudio_test.go ================================================ package rtaudio import ( "log" "math" "time" ) func ExampleCompiledAPI() { log.Println("RtAudio version: ", Version()) for _, api := range CompiledAPI() { log.Println("Compiled API: ", api) } } func ExampleRtAudio_Devices() { audio, err := Create(APIUnspecified) if err != nil { log.Fatal(err) } defer audio.Destroy() devices, err := audio.Devices() if err != nil { log.Fatal(err) } for _, d := range devices { log.Printf("Audio device: %#v\n", d) } } func ExampleRtAudio_Open() { const ( sampleRate = 44100 bufSz = 512 freq = 440.0 ) phase := 0.0 audio, err := Create(APIUnspecified) if err != nil { log.Fatal(err) } defer audio.Destroy() params := StreamParams{ DeviceID: uint(audio.DefaultOutputDevice()), NumChannels: 2, FirstChannel: 0, } options := StreamOptions{ Flags: FlagsAlsaUseDefault, } cb := func(out, in Buffer, dur time.Duration, status StreamStatus) int { samples := out.Float32() for i := 0; i < len(samples)/2; i++ { sample := float32(math.Sin(2 * math.Pi * phase)) phase += freq / sampleRate samples[i*2] = sample samples[i*2+1] = sample } return 0 } err = audio.Open(¶ms, nil, FormatFloat32, sampleRate, bufSz, cb, &options) if err != nil { log.Fatal(err) } defer audio.Close() audio.Start() defer audio.Stop() time.Sleep(3 * time.Second) } ================================================ FILE: vendor/github.com/thestk/rtaudio/contrib/python/pyrtaudio/PyRtAudioTest.py ================================================ import rtaudio as rt from math import cos import struct class audio_generator: def __init__(self): self.idx = -1 self.freq = 440. def __call__(self): self.idx += 1 if self.idx%48000 == 0: self.freq *= 2**(1/12.) return 0.5*cos(2.*3.1416*self.freq*self.idx/48000.) class callback: def __init__(self, gen): self.gen = gen self.i = 0 def __call__(self,playback, capture): [struct.pack_into("f", playback, 4*o, self.gen()) for o in xrange(256)] self.i = self.i + 256 if self.i > 48000*10: print '.' return 1 dac = rt.RtAudio() n = dac.getDeviceCount() print 'Number of devices available: ', n for i in range(n): try: print dac.getDeviceInfo(i) except rt.RtError as e: print e print 'Default output device: ', dac.getDefaultOutputDevice() print 'Default input device: ', dac.getDefaultInputDevice() print 'is stream open: ', dac.isStreamOpen() print 'is stream running: ', dac.isStreamRunning() oParams = {'deviceId': 1, 'nChannels': 1, 'firstChannel': 0} iParams = {'deviceId': 1, 'nChannels': 1, 'firstChannel': 0} try: dac.openStream(oParams,oParams,48000,256,callback(audio_generator()) ) except rt.RtError as e: print e else: dac.startStream() import time print 'latency: ', dac.getStreamLatency() while (dac.isStreamRunning()): time.sleep(0.1) print dac.getStreamTime() dac.stopStream() dac.abortStream() dac.closeStream() ================================================ FILE: vendor/github.com/thestk/rtaudio/contrib/python/pyrtaudio/readme ================================================ PyRtAudio - a python wrapper around RtAudio that allows to perform audio i/o operations in real-time from the python language. By Antoine Lefebvre, 2011 This software is in the development stage. Do not expect compatibility with future versions. Comments, suggestions, new features, bug fixes, etc. are welcome. This distribution of PyRtAudio contains the following: - rtaudiomodule.cpp: the python wrapper code - setup.py: a setup script use to compile and install PyRtAudio - examples: a single PyRtAudioTest.py script INSTALLATION The compilation and installation of the PyRtAudio module is handled by the python Distribution Utilities ("Distutils"). Provided that your system has a C++ compiler and is properly configure, the following command should be sufficient: >> python setup.py install Please refer to the distutils documentation for installation problems: http://docs.python.org/distutils/index.html LEGAL AND ETHICAL: The PyRtAudio license is the same as the RtAudio license: PyRtAudio: a python wrapper around RtAudio Copyright (c)2011 Antoine Lefebvre Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Any person wishing to distribute modifications to the Software is asked to send the modifications to the original developer so that they can be incorporated into the canonical version. This is, however, not a binding provision of this license. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: vendor/github.com/thestk/rtaudio/contrib/python/pyrtaudio/rtaudiomodule.cpp ================================================ /************************************************************************/ /* PyRtAudio: a python wrapper around RtAudio Copyright (c) 2011 Antoine Lefebvre Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Any person wishing to distribute modifications to the Software is asked to send the modifications to the original developer so that they can be incorporated into the canonical version. This is, however, not a binding provision of this license. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /************************************************************************/ // This software is in the development stage // Do not expect compatibility with future versions. // Comments, suggestions, new features, bug fixes, etc. are welcome #include #include "RtAudio.h" extern "C" { typedef struct { PyObject_HEAD; RtAudio *dac; RtAudioFormat _format; int _bufferSize; unsigned int inputChannels; PyObject *callback_func; } PyRtAudio; static PyObject *RtAudioErrorException; static int callback(void *outputBuffer, void *inputBuffer, unsigned int nBufferFrames, double streamTime, RtAudioStreamStatus status, void *data ) { PyRtAudio* self = (PyRtAudio*) data; if (status == RTAUDIO_OUTPUT_UNDERFLOW) printf("underflow.\n"); if (self == NULL) return -1; float* in = (float *) inputBuffer; float* out = (float *) outputBuffer; PyObject *py_callback_func = self->callback_func; int retval = 0; if (py_callback_func) { PyGILState_STATE gstate = PyGILState_Ensure(); PyObject* iBuffer = PyBuffer_FromMemory(in, sizeof(float) * self->inputChannels * nBufferFrames); PyObject* oBuffer = PyBuffer_FromReadWriteMemory(out, sizeof(float) * nBufferFrames); PyObject *arglist = Py_BuildValue("(O,O)", oBuffer, iBuffer); if (arglist == NULL) { printf("error.\n"); PyErr_Print(); PyGILState_Release(gstate); return 2; } // Calling the callback PyObject *result = PyEval_CallObject(py_callback_func, arglist); if (PyErr_Occurred() != NULL) { PyErr_Print(); } else if PyInt_Check(result) { retval = PyInt_AsLong(result); } Py_DECREF(arglist); Py_DECREF(oBuffer); Py_DECREF(iBuffer); Py_XDECREF(result); PyGILState_Release(gstate); } return retval; } static void RtAudio_dealloc(PyRtAudio *self) { printf("RtAudio_dealloc.\n"); if (self == NULL) return; if (self->dac) { self->dac->closeStream(); Py_CLEAR(self->callback_func); delete self->dac; } self->ob_type->tp_free((PyObject *) self); } static PyObject* RtAudio_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { printf("RtAudio_new.\n"); PyRtAudio *self; char *api = NULL; if(!PyArg_ParseTuple(args, "|s", &api)) return NULL; self = (PyRtAudio *) type->tp_alloc(type, 0); if(self == NULL) return NULL; self->dac = NULL; self->callback_func = NULL; try { if (api == NULL) self->dac = new RtAudio; else if(!strcmp(api, "jack")) self->dac = new RtAudio(RtAudio::UNIX_JACK); else if(!strcmp(api, "alsa")) self->dac = new RtAudio(RtAudio::LINUX_ALSA); else if(!strcmp(api, "oss")) self->dac = new RtAudio(RtAudio::LINUX_ALSA); else if(!strcmp(api, "core")) self->dac = new RtAudio(RtAudio::MACOSX_CORE); else if(!strcmp(api, "asio")) self->dac = new RtAudio(RtAudio::WINDOWS_ASIO); else if(!strcmp(api, "directsound")) self->dac = new RtAudio(RtAudio::WINDOWS_DS); } catch (RtAudioError &error) { PyErr_SetString(RtAudioErrorException, error.getMessage().c_str()); Py_INCREF(RtAudioErrorException); return NULL; } self->dac->showWarnings(false); //Py_XINCREF(self); return (PyObject *) self; } static int RtAudio_init(PyRtAudio *self, PyObject *args, PyObject *kwds) { printf("RtAudio_init.\n"); //if (self == NULL) return 0; return 0; } // This functions does not yet support all the features of the RtAudio::openStream method. // Please send your patches if you improves this. static PyObject* RtAudio_openStream(PyRtAudio *self, PyObject *args) { if (self == NULL) return NULL; if (self->dac == NULL) { printf("the dac is null.\n"); Py_RETURN_NONE; } PyObject *oParamsObj; PyObject *iParamsObj; int fs; unsigned int bf; PyObject *pycallback; if (!PyArg_ParseTuple(args, "OOiiO", &oParamsObj, &iParamsObj, &fs, &bf, &pycallback)) return NULL; RtAudio::StreamParameters oParams; oParams.deviceId = 1; oParams.nChannels = 1; oParams.firstChannel = 0; if (PyDict_Check(oParamsObj)) { if (PyDict_Contains(oParamsObj, PyString_FromString("deviceId"))) { PyObject *value = PyDict_GetItem(oParamsObj, PyString_FromString("deviceId")); oParams.deviceId = PyInt_AsLong(value); } if (PyDict_Contains(oParamsObj, PyString_FromString("nChannels"))) { PyObject *value = PyDict_GetItem(oParamsObj, PyString_FromString("nChannels")); oParams.nChannels = PyInt_AsLong(value); } if (PyDict_Contains(oParamsObj, PyString_FromString("firstChannel"))) { PyObject *value = PyDict_GetItem(oParamsObj, PyString_FromString("firstChannel")); oParams.firstChannel = PyInt_AsLong(value); } } else { printf("First argument must be a dictionary. Default values will be used.\n"); } RtAudio::StreamParameters iParams; iParams.deviceId = 1; iParams.nChannels = 2; iParams.firstChannel = 0; if (PyDict_Check(iParamsObj)) { if (PyDict_Contains(iParamsObj, PyString_FromString("deviceId"))) { PyObject *value = PyDict_GetItem(iParamsObj, PyString_FromString("deviceId")); iParams.deviceId = PyInt_AsLong(value); } if (PyDict_Contains(iParamsObj, PyString_FromString("nChannels"))) { PyObject *value = PyDict_GetItem(iParamsObj, PyString_FromString("nChannels")); iParams.nChannels = PyInt_AsLong(value); } if (PyDict_Contains(iParamsObj, PyString_FromString("firstChannel"))) { PyObject *value = PyDict_GetItem(iParamsObj, PyString_FromString("firstChannel")); iParams.firstChannel = PyInt_AsLong(value); } } else { printf("Second argument must be a dictionary. Default values will be used.\n"); } if (!PyCallable_Check(pycallback)) { PyErr_SetString(PyExc_TypeError, "Need a callable object!"); Py_XINCREF(PyExc_TypeError); return NULL; } // sanity check the callback ? Py_INCREF(pycallback); /* Add a reference to new callback */ self->callback_func = pycallback; /*Remember new callback */ // add support for other format self->_format = RTAUDIO_FLOAT32; // add support for other options RtAudio::StreamOptions options; options.flags = RTAUDIO_NONINTERLEAVED; try { if (self->dac->isStreamOpen()) self->dac->closeStream(); self->dac->openStream(&oParams, &iParams, self->_format, fs, &bf, &callback, self, &options); } catch ( RtAudioError& error ) { PyErr_SetString(RtAudioErrorException, error.getMessage().c_str()); Py_INCREF(RtAudioErrorException); return NULL; } self->inputChannels = iParams.nChannels; Py_RETURN_NONE; } static PyObject* RtAudio_closeStream(PyRtAudio *self, PyObject *args) { printf("RtAudio_closeStream.\n"); if (self == NULL || self->dac == NULL) return NULL; try { self->dac->closeStream(); Py_CLEAR(self->callback_func); } catch(RtAudioError &error) { PyErr_SetString(RtAudioErrorException, error.getMessage().c_str()); Py_INCREF(RtAudioErrorException); return NULL; } Py_RETURN_NONE; } static PyObject* RtAudio_startStream(PyRtAudio *self, PyObject *args) { if (self == NULL || self->dac == NULL) return NULL; try { self->dac->startStream(); } catch(RtAudioError &error) { PyErr_SetString(RtAudioErrorException, error.getMessage().c_str()); Py_INCREF(RtAudioErrorException); return NULL; } Py_RETURN_NONE; } static PyObject* RtAudio_stopStream(PyRtAudio *self, PyObject *args) { printf("RtAudio_stopStream.\n"); if (self == NULL || self->dac == NULL) return NULL; try { self->dac->stopStream(); } catch(RtAudioError &error) { PyErr_SetString(RtAudioErrorException, error.getMessage().c_str()); Py_INCREF(RtAudioErrorException); return NULL; } Py_RETURN_NONE; } static PyObject* RtAudio_abortStream(PyRtAudio *self, PyObject *args) { printf("RtAudio_abortStream.\n"); if (self == NULL || self->dac == NULL) return NULL; try { self->dac->abortStream(); } catch(RtAudioError &error) { PyErr_SetString(RtAudioErrorException, error.getMessage().c_str()); Py_INCREF(RtAudioErrorException); return NULL; } Py_RETURN_NONE; } static PyObject* RtAudio_isStreamRunning(PyRtAudio *self, PyObject *args) { if (self == NULL || self->dac == NULL) return NULL; if (self->dac == NULL) { Py_RETURN_FALSE; } if (self->dac->isStreamRunning()) Py_RETURN_TRUE; else Py_RETURN_FALSE; } static PyObject* RtAudio_isStreamOpen(PyRtAudio *self, PyObject *args) { if (self == NULL || self->dac == NULL) return NULL; if (self->dac == NULL) { Py_RETURN_FALSE; } if (self->dac->isStreamOpen()) Py_RETURN_TRUE; else Py_RETURN_FALSE; } static PyObject* RtAudio_getDeviceCount(PyRtAudio *self, PyObject *args) { if (self == NULL || self->dac == NULL) return NULL; return PyInt_FromLong(self->dac->getDeviceCount()); } static PyObject* RtAudio_getDeviceInfo(PyRtAudio *self, PyObject *args) { if (self == NULL || self->dac == NULL) return NULL; int device; if (!PyArg_ParseTuple(args, "i", &device)) return NULL; try { RtAudio::DeviceInfo info = self->dac->getDeviceInfo(device); PyObject* info_dict = PyDict_New(); if (info.probed) { Py_INCREF(Py_True); PyDict_SetItemString(info_dict, "probed", Py_True); } else { Py_INCREF(Py_False); PyDict_SetItemString(info_dict, "probed", Py_False); } PyObject* obj; obj = PyString_FromString(info.name.c_str()); PyDict_SetItemString(info_dict, "name", obj); obj = PyInt_FromLong(info.outputChannels); PyDict_SetItemString(info_dict, "outputChannels", obj); obj = PyInt_FromLong(info.inputChannels); PyDict_SetItemString(info_dict, "inputChannels", obj); obj = PyInt_FromLong(info.duplexChannels); PyDict_SetItemString(info_dict, "duplexChannels", obj); if (info.isDefaultOutput) { Py_INCREF(Py_True); PyDict_SetItemString(info_dict, "isDefaultOutput", Py_True); } else { Py_INCREF(Py_False); PyDict_SetItemString(info_dict, "isDefaultOutput", Py_False); } if (info.isDefaultInput) { Py_INCREF(Py_True); PyDict_SetItemString(info_dict, "isDefaultInput", Py_True); } else { Py_INCREF(Py_False); PyDict_SetItemString(info_dict, "isDefaultInput", Py_False); } return info_dict; } catch(RtAudioError &error) { PyErr_SetString(RtAudioErrorException, error.getMessage().c_str()); Py_INCREF(RtAudioErrorException); return NULL; } } static PyObject* RtAudio_getDefaultOutputDevice(PyRtAudio *self, PyObject *args) { if (self == NULL || self->dac == NULL) return NULL; return PyInt_FromLong(self->dac->getDefaultOutputDevice()); } static PyObject* RtAudio_getDefaultInputDevice(PyRtAudio *self, PyObject *args) { if (self == NULL || self->dac == NULL) return NULL; return PyInt_FromLong(self->dac->getDefaultInputDevice()); } static PyObject* RtAudio_getStreamTime(PyRtAudio *self, PyObject *args) { if (self == NULL || self->dac == NULL) return NULL; return PyFloat_FromDouble( self->dac->getStreamTime() ); } static PyObject* RtAudio_getStreamLatency(PyRtAudio *self, PyObject *args) { if (self == NULL || self->dac == NULL) return NULL; return PyInt_FromLong( self->dac->getStreamLatency() ); } static PyObject* RtAudio_getStreamSampleRate(PyRtAudio *self, PyObject *args) { if (self == NULL || self->dac == NULL) return NULL; return PyInt_FromLong( self->dac->getStreamSampleRate() ); } static PyObject* RtAudio_showWarnings(PyRtAudio *self, PyObject *args) { if (self == NULL || self->dac == NULL) return NULL; PyObject *obj; if (!PyArg_ParseTuple(args, "O", &obj)) return NULL; if (!PyBool_Check(obj)) return NULL; if (obj == Py_True) self->dac->showWarnings(true); else if (obj == Py_False) self->dac->showWarnings(false); else { printf("not true nor false\n"); } Py_RETURN_NONE; } static PyMethodDef RtAudio_methods[] = { // TO BE DONE: getCurrentApi(void) {"getDeviceCount", (PyCFunction) RtAudio_getDeviceCount, METH_NOARGS, "A public function that queries for the number of audio devices available."}, {"getDeviceInfo", (PyCFunction) RtAudio_getDeviceInfo, METH_VARARGS, "Return a dictionary with information for a specified device number."}, {"getDefaultOutputDevice", (PyCFunction) RtAudio_getDefaultOutputDevice, METH_NOARGS, "A function that returns the index of the default output device."}, {"getDefaultInputDevice", (PyCFunction) RtAudio_getDefaultInputDevice, METH_NOARGS, "A function that returns the index of the default input device."}, {"openStream", (PyCFunction) RtAudio_openStream, METH_VARARGS, "A public method for opening a stream with the specified parameters."}, {"closeStream", (PyCFunction) RtAudio_closeStream, METH_NOARGS, "A function that closes a stream and frees any associated stream memory. "}, {"startStream", (PyCFunction) RtAudio_startStream, METH_NOARGS, "A function that starts a stream. "}, {"stopStream", (PyCFunction) RtAudio_stopStream, METH_NOARGS, "Stop a stream, allowing any samples remaining in the output queue to be played. "}, {"abortStream", (PyCFunction) RtAudio_abortStream, METH_NOARGS, "Stop a stream, discarding any samples remaining in the input/output queue."}, {"isStreamOpen", (PyCFunction) RtAudio_isStreamOpen, METH_NOARGS, "Returns true if a stream is open and false if not."}, {"isStreamRunning", (PyCFunction) RtAudio_isStreamRunning, METH_NOARGS, "Returns true if the stream is running and false if it is stopped or not open."}, {"getStreamTime", (PyCFunction) RtAudio_getStreamTime, METH_NOARGS, "Returns the number of elapsed seconds since the stream was started."}, {"getStreamLatency", (PyCFunction) RtAudio_getStreamLatency, METH_NOARGS, "Returns the internal stream latency in sample frames."}, {"getStreamSampleRate", (PyCFunction) RtAudio_getStreamSampleRate, METH_NOARGS, "Returns actual sample rate in use by the stream."}, {"showWarnings", (PyCFunction) RtAudio_showWarnings, METH_VARARGS, "Specify whether warning messages should be printed to stderr."}, // TO BE DONE: getCompiledApi (std::vector< RtAudio::Api > &apis) throw () {NULL} }; static PyTypeObject RtAudio_type = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ "rtaudio.RtAudio", /*tp_name*/ sizeof(RtAudio), /*tp_basicsize*/ 0, /*tp_itemsize*/ (destructor) RtAudio_dealloc, /*tp_dealloc*/ 0, /*tp_print*/ 0, /*tp_getattr*/ 0, /*tp_setattr*/ 0, /*tp_compare*/ 0, /*tp_repr*/ 0, /*tp_as_number*/ 0, /*tp_as_sequence*/ 0, /*tp_as_mapping*/ 0, /*tp_hash */ 0, /*tp_call*/ 0, /*tp_str*/ 0, /*tp_getattro*/ 0, /*tp_setattro*/ 0, /*tp_as_buffer*/ Py_TPFLAGS_DEFAULT, /*tp_flags*/ "Audio input device", /* tp_doc */ 0, /* tp_traverse */ 0, /* tp_clear */ 0, /* tp_richcompare */ 0, /* tp_weaklistoffset */ 0, /* tp_iter */ 0, /* tp_iternext */ RtAudio_methods, /* tp_methods */ 0, /* tp_members */ 0, /* tp_getset */ 0, /* tp_base */ 0, /* tp_dict */ 0, /* tp_descr_get */ 0, /* tp_descr_set */ 0, /* tp_dictoffset */ (initproc)RtAudio_init, /* tp_init */ 0, /* tp_alloc */ RtAudio_new, /* tp_new */ 0, /* Low-level free-memory routine */ 0, /* For PyObject_IS_GC */ 0, // PyObject *tp_bases; 0, // PyObject *tp_mro; /* method resolution order */ 0, //PyObject *tp_cache; 0, //PyObject *tp_subclasses; 0, //PyObject *tp_weaklist; 0, //destructor tp_del; //0, /* Type attribute cache version tag. Added in version 2.6 */ }; #ifndef PyMODINIT_FUNC /* declarations for DLL import/export */ #define PyMODINIT_FUNC void #endif PyMODINIT_FUNC initrtaudio(void) { PyEval_InitThreads(); if (PyType_Ready(&RtAudio_type) < 0) return; PyObject* module = Py_InitModule3("rtaudio", NULL, "RtAudio wrapper."); if (module == NULL) return; Py_INCREF(&RtAudio_type); PyModule_AddObject(module, "RtAudio", (PyObject *)&RtAudio_type); RtAudioErrorException = PyErr_NewException("rtaudio.RtError", NULL, NULL); Py_INCREF(RtAudioErrorException); PyModule_AddObject(module, "RtError", RtAudioErrorException); } } ================================================ FILE: vendor/github.com/thestk/rtaudio/contrib/python/pyrtaudio/setup.py ================================================ #!/bin/env python import os from distutils.core import setup, Extension if hasattr(os, 'uname'): OSNAME = os.uname()[0] else: OSNAME = 'Windows' define_macros = [] libraries = [] extra_link_args = [] extra_compile_args = ['-I../../../'] sources = ['rtaudiomodule.cpp', '../../../RtAudio.cpp'] if OSNAME == 'Linux': define_macros=[("__LINUX_ALSA__", ''), ('__LINUX_JACK__', '')] libraries = ['asound', 'jack', 'pthread'] elif OSNAME == 'Darwin': define_macros = [('__MACOSX_CORE__', '')] libraries = ['pthread', 'stdc++'] extra_link_args = ['-framework', 'CoreAudio'] elif OSNAME == 'Windows': define_macros = [('__WINDOWS_DS__', None), ('__WINDOWS_ASIO__', None), ('__LITTLE_ENDIAN__',None), ('WIN32',None)] libraries = ['winmm', 'dsound', 'Advapi32','Ole32','User32'] sources += ['../../../include/asio.cpp', '../../../include/asiodrivers.cpp', '../../../include/asiolist.cpp', '../../../include/iasiothiscallresolver.cpp'] extra_compile_args.append('-I../../../include/') extra_compile_args.append('-EHsc') audio = Extension('rtaudio', sources=sources, libraries=libraries, define_macros=define_macros, extra_compile_args = extra_compile_args, extra_link_args = extra_link_args, ) setup(name = 'rtaudio', version = '0.1', description = 'Python RtAudio interface', ext_modules = [audio]) ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/Makefile.am ================================================ MAINTAINERCLEANFILES=Makefile.in CLEANFILES=doxygen-build.stamp DOX=Doxyfile EXTRA_DIST=html INSTIMAGES=html/doxygen.png DOC_STAMPS=doxygen-build.stamp DOC_DIR=$(HTML_DIR) all-local: doxygen-build.stamp doxygen-build.stamp: doxygen/$(DOX) $(top_srcdir)/RtAudio.h @echo '*** Running doxygen ***' cd doxygen; $(DOXYGEN) $(DOX) touch doxygen-build.stamp clean-local: rm -f *~ *.bak $(DOC_STAMPS) || true if test -d html; then rm -fr html; fi if test -d latex; then rm -fr latex; fi if test -d man; then rm -fr man; fi distclean-local: clean rm -f *.stamp || true if test -d html; then rm -rf html; fi html-local: $(DOC_STAMPS) ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/Doxyfile.in ================================================ # Doxyfile 1.8.3.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or sequence of words) that should # identify the project. Note that if you do not use Doxywizard you need # to put quotes around the project name if it contains spaces. PROJECT_NAME = RtAudio # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = @PACKAGE_VERSION@ # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer # a quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = # With the PROJECT_LOGO tag one can specify an logo or icon that is # included in the documentation. The maximum height of the logo should not # exceed 55 pixels and the maximum width should not exceed 200 pixels. # Doxygen will copy the logo to the output directory. PROJECT_LOGO = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = . # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = "The $name class" \ "The $name widget" \ "The $name file" \ is \ provides \ specifies \ contains \ represents \ a \ an \ the # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. Note that you specify absolute paths here, but also # relative paths, which will be relative from the directory where doxygen is # started. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful if your file system # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding # "class=itcl::class" will allow you to use the command class in the # itcl::class meaning. TCL_SUBST = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, # and language is one of the parsers supported by doxygen: IDL, Java, # Javascript, CSharp, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, # C++. For instance to make doxygen treat .inc files as Fortran files (default # is PHP), and .f files as C (default is Fortran), use: inc=Fortran f=C. Note # that for custom extensions you also need to set FILE_PATTERNS otherwise the # files are not read by doxygen. EXTENSION_MAPPING = # If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all # comments according to the Markdown format, which allows for more readable # documentation. See http://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you # can mix doxygen, HTML, and XML commands with Markdown formatting. # Disable only in case of backward compatibilities issues. MARKDOWN_SUPPORT = YES # When enabled doxygen tries to link words that correspond to documented classes, # or namespaces to their corresponding documentation. Such a link can be # prevented in individual cases by by putting a % sign in front of the word or # globally by setting AUTOLINK_SUPPORT to NO. AUTOLINK_SUPPORT = YES # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also makes the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate # getter and setter methods for a property. Setting this option to YES (the # default) will make doxygen replace the get and set methods by a property in # the documentation. This will only work if the methods are indeed getting or # setting a simple type. If this is not the case, or you want to show the # methods anyway, you should set this option to NO. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and # unions are shown inside the group in which they are included (e.g. using # @ingroup) instead of on a separate page (for HTML and Man pages) or # section (for LaTeX and RTF). INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and # unions with only public data fields will be shown inline in the documentation # of the scope in which they are defined (i.e. file, namespace, or group # documentation), provided this scope is documented. If set to NO (the default), # structs, classes, and unions are shown on a separate page (for HTML and Man # pages) or section (for LaTeX and RTF). INLINE_SIMPLE_STRUCTS = NO # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penalty. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will roughly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols. SYMBOL_CACHE_SIZE = 0 # Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be # set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given # their name and scope. Since this can be an expensive process and often the # same symbol appear multiple times in the code, doxygen keeps a cache of # pre-resolved symbols. If the cache is too small doxygen will become slower. # If the cache is too large, memory is wasted. The cache size is given by this # formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols. LOOKUP_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal # scope will be included in the documentation. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespaces are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = YES # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = YES # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen # will list include files with double quotes in the documentation # rather than with sharp brackets. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = NO # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen # will sort the (brief and detailed) documentation of class members so that # constructors and destructors are listed first. If set to NO (the default) # the constructors will appear in the respective orders defined by # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to # do proper type resolution of all parameters of a function it will reject a # match between the prototype and the implementation of a member function even # if there is only one candidate or it is obvious which candidate to choose # by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen # will still accept a match between prototype and implementation in such cases. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if section-label ... \endif # and \cond section-label ... \endcond blocks. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or macro consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and macros in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # Set the SHOW_FILES tag to NO to disable the generation of the Files page. # This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default is YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the # Namespaces page. This will remove the Namespaces entry from the Quick Index # and from the Folder Tree View (if specified). The default is YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. # You can optionally specify a file name after the option, if omitted # DoxygenLayout.xml will be used as the name of the layout file. LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files # containing the references data. This must be a list of .bib files. The # .bib extension is automatically appended if omitted. Using this command # requires the bibtex tool to be installed. See also # http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style # of the bibliography can be controlled using LATEX_BIB_STYLE. To use this # feature you need bibtex and perl available in the search path. Do not use # file names with spaces, bibtex cannot handle them. CITE_BIB_FILES = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # The WARN_NO_PARAMDOC option can be enabled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = . \ ../../RtAudio.h \ ../../RtError.h # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py # *.f90 *.f *.for *.vhd *.vhdl FILE_PATTERNS = *.txt # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = ../../tests/ # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty or if # non of the patterns match the file name, INPUT_FILTER is applied. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) # and it is also possible to disable source filtering for a specific pattern # using *.ext= (so without naming a filter). This option only has effect when # FILTER_SOURCE_FILES is enabled. FILTER_SOURCE_PATTERNS = # If the USE_MD_FILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page (index.html). # This can be useful if you have a project on for instance GitHub and want reuse # the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C, C++ and Fortran comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES # If the REFERENCES_RELATION tag is set to YES # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = YES # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. Otherwise they will link to the documentation. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = NO # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = ../html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. Note that when using a custom header you are responsible # for the proper inclusion of any scripts and style sheets that doxygen # needs, which is dependent on the configuration options used. # It is advised to generate a default header using "doxygen -w html # header.html footer.html stylesheet.css YourConfigFile" and then modify # that header. Note that the header is subject to change so you typically # have to redo this when upgrading to a newer version of doxygen or when # changing the value of configuration settings such as GENERATE_TREEVIEW! HTML_HEADER = header.html # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = footer.html # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If left blank doxygen will # generate a default style sheet. Note that it is recommended to use # HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this # tag will in the future become obsolete. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional # user-defined cascading style sheet that is included after the standard # style sheets created by doxygen. Using this option one can overrule # certain style aspects. This is preferred over using HTML_STYLESHEET # since it does not replace the standard style sheet and is therefor more # robust against future updates. Doxygen will copy the style sheet file to # the output directory. HTML_EXTRA_STYLESHEET = # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that # the files will be copied as-is; there are no commands or markers available. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. # Doxygen will adjust the colors in the style sheet and background images # according to this color. Hue is specified as an angle on a colorwheel, # see http://en.wikipedia.org/wiki/Hue for more information. # For instance the value 0 represents red, 60 is yellow, 120 is green, # 180 is cyan, 240 is blue, 300 purple, and 360 is red again. # The allowed range is 0 to 359. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of # the colors in the HTML output. For a value of 0 the output will use # grayscales only. A value of 255 will produce the most vivid colors. HTML_COLORSTYLE_SAT = 100 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to # the luminance component of the colors in the HTML output. Values below # 100 gradually make the output lighter, whereas values above 100 make # the output darker. The value divided by 100 is the actual gamma applied, # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, # and 100 does not change the gamma. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting # this to NO can help when comparing the output of multiple runs. HTML_TIMESTAMP = NO # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. HTML_DYNAMIC_SECTIONS = NO # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of # entries shown in the various tree structured indices initially; the user # can expand and collapse entries dynamically later on. Doxygen will expand # the tree to such a level that at most the specified number of entries are # visible (unless a fully collapsed tree already exceeds this amount). # So setting the number of entries 1 will produce a full collapsed tree by # default. 0 is a special value representing an infinite number of entries # and will result in a full expanded tree by default. HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html # for more information. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely # identify the documentation publisher. This should be a reverse domain-name # style string, e.g. com.mycompany.MyDocSet.documentation. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated # that can be used as input for Qt's qhelpgenerator to generate a # Qt Compressed Help (.qch) of the generated HTML documentation. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can # be used to specify the file name of the resulting .qch file. # The path specified is relative to the HTML output folder. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#namespace QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to # add. For more information please see # http://doc.trolltech.com/qthelpproject.html#custom-filters QHP_CUST_FILTER_NAME = # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see # # Qt Help Project / Custom Filters. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's # filter section matches. # # Qt Help Project / Filter Attributes. QHP_SECT_FILTER_ATTRS = # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can # be used to specify the location of Qt's qhelpgenerator. # If non-empty doxygen will try to run qhelpgenerator on the generated # .qhp file. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files # will be generated, which together with the HTML files, form an Eclipse help # plugin. To install this plugin and make it available under the help contents # menu in Eclipse, the contents of the directory containing the HTML and XML # files needs to be copied into the plugins directory of eclipse. The name of # the directory within the plugins directory should be the same as # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before # the help appears. GENERATE_ECLIPSEHELP = NO # A unique identifier for the eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have # this name. ECLIPSE_DOC_ID = org.doxygen.Project # The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) # at top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. Since the tabs have the same information as the # navigation tree you can set this option to NO if you already set # GENERATE_TREEVIEW to YES. DISABLE_INDEX = YES # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. # If the tag value is set to YES, a side panel will be generated # containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). # Windows users are probably better off using the HTML help feature. # Since the tree basically has the same information as the tab index you # could consider to set DISABLE_INDEX to NO when enabling this option. GENERATE_TREEVIEW = NO # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values # (range [0,1..20]) that doxygen will group on one line in the generated HTML # documentation. Note that a value of 0 will completely suppress the enum # values from appearing in the overview section. ENUM_VALUES_PER_LINE = 4 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open # links to external symbols imported via tag files in a separate window. EXT_LINKS_IN_WINDOW = NO # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # when you change the font size after a successful doxygen run you need # to manually remove any form_*.png images from the HTML output directory # to force them to be regenerated. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are # not supported properly for IE 6.0, but are supported on all modern browsers. # Note that when changing this option you need to delete any form_*.png files # in the HTML output before the changes have effect. FORMULA_TRANSPARENT = YES # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax # (see http://www.mathjax.org) which uses client side Javascript for the # rendering instead of using prerendered bitmaps. Use this if you do not # have LaTeX installed or if you want to formulas look prettier in the HTML # output. When enabled you may also need to install MathJax separately and # configure the path to it using the MATHJAX_RELPATH option. USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # thA MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and # SVG. The default value is HTML-CSS, which is slower, but has the best # compatibility. MATHJAX_FORMAT = HTML-CSS # When MathJax is enabled you need to specify the location relative to the # HTML output directory using the MATHJAX_RELPATH option. The destination # directory should contain the MathJax.js script. For instance, if the mathjax # directory is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to # the MathJax Content Delivery Network so you can quickly see the result without # installing MathJax. However, it is strongly recommended to install a local # copy of MathJax from http://www.mathjax.org before deployment. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension # names that should be enabled during MathJax rendering. MATHJAX_EXTENSIONS = # When the SEARCHENGINE tag is enabled doxygen will generate a search box # for the HTML output. The underlying search engine uses javascript # and DHTML and should work on any modern browser. Note that when using # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets # (GENERATE_DOCSET) there is already a search function so this one should # typically be disabled. For large projects the javascript based search engine # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. SEARCHENGINE = NO # When the SERVER_BASED_SEARCH tag is enabled the search engine will be # implemented using a web server instead of a web client using Javascript. # There are two flavours of web server based search depending on the # EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for # searching and an index file used by the script. When EXTERNAL_SEARCH is # enabled the indexing and searching needs to be provided by external tools. # See the manual for details. SERVER_BASED_SEARCH = NO # When EXTERNAL_SEARCH is enabled doxygen will no longer generate the PHP # script for searching. Instead the search results are written to an XML file # which needs to be processed by an external indexer. Doxygen will invoke an # external search engine pointed to by the SEARCHENGINE_URL option to obtain # the search results. Doxygen ships with an example indexer (doxyindexer) and # search engine (doxysearch.cgi) which are based on the open source search engine # library Xapian. See the manual for configuration details. EXTERNAL_SEARCH = NO # The SEARCHENGINE_URL should point to a search engine hosted by a web server # which will returned the search results when EXTERNAL_SEARCH is enabled. # Doxygen ships with an example search engine (doxysearch) which is based on # the open source search engine library Xapian. See the manual for configuration # details. SEARCHENGINE_URL = # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed # search data is written to a file for indexing by an external tool. With the # SEARCHDATA_FILE tag the name of this file can be specified. SEARCHDATA_FILE = searchdata.xml # When SERVER_BASED_SEARCH AND EXTERNAL_SEARCH are both enabled the # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple # projects and redirect the results back to the right project. EXTERNAL_SEARCH_ID = # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen # projects other than the one defined by this configuration file, but that are # all added to the same external search index. Each project needs to have a # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id # of to a relative location where the documentation can be found. # The format is: EXTRA_SEARCH_MAPPINGS = id1=loc1 id2=loc2 ... EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. # Note that when enabling USE_PDFLATEX this option is only used for # generating bitmaps for formulas in the HTML output, but not in the # Makefile that is written to the output directory. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = letter # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for # the generated latex document. The footer should contain everything after # the last chapter. If it is left blank doxygen will generate a # standard footer. Notice: only use this tag if you know what you are doing! LATEX_FOOTER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = NO # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO # If LATEX_SOURCE_CODE is set to YES then doxygen will include # source code with syntax highlighting in the LaTeX output. # Note that which sources are shown also depends on other settings # such as SOURCE_BROWSER. LATEX_SOURCE_CODE = NO # The LATEX_BIB_STYLE tag can be used to specify the style to use for the # bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See # http://en.wikipedia.org/wiki/BibTeX for more info. LATEX_BIB_STYLE = plain #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load style sheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # pointed to by INCLUDE_PATH will be searched when a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition that # overrules the definition found in the source code. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all references to function-like macros # that are alone on a line, have an all uppercase name, and do not end with a # semicolon, because these will confuse the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. For each # tag file the location of the external documentation should be added. The # format of a tag file without this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths # or URLs. Note that each tag file must have a unique name (where the name does # NOT include the path). If a tag file is not located in the directory in which # doxygen is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option also works with HAVE_DOT disabled, but it is recommended to # install and use dot, since it yields more powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = /Applications/Doxygen.app/Contents/Resources/ # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = NO # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is # allowed to run in parallel. When set to 0 (the default) doxygen will # base this on the number of processors available in the system. You can set it # explicitly to a value larger than 0 to get control over the balance # between CPU load and processing speed. DOT_NUM_THREADS = 0 # By default doxygen will use the Helvetica font for all dot files that # doxygen generates. When you want a differently looking font you can specify # the font name using DOT_FONTNAME. You need to make sure dot is able to find # the font, which can be done by putting it in a standard location or by setting # the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the # directory containing the font. DOT_FONTNAME = FreeSans # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the Helvetica font. # If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to # set the path where dot can find it. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If the UML_LOOK tag is enabled, the fields and methods are shown inside # the class node. If there are many fields or methods and many nodes the # graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS # threshold limits the number of items for each type to make the size more # managable. Set this to 0 for no limit. Note that the threshold may be # exceeded by 50% before the limit is enforced. UML_LIMIT_NUM_FIELDS = 10 # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will generate a graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are svg, png, jpg, or gif. # If left blank png will be used. If you choose svg you need to set # HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible in IE 9+ (other browsers do not have this requirement). DOT_IMAGE_FORMAT = png # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to # enable generation of interactive SVG images that allow zooming and panning. # Note that this requires a modern browser other than Internet Explorer. # Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you # need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible. Older versions of IE do not have SVG support. INTERACTIVE_SVG = NO # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = /Applications/Doxygen.app/Contents/Resources/ # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MSCFILE_DIRS tag can be used to specify one or more directories that # contain msc files that are included in the documentation (see the # \mscfile command). MSCFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = YES # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/acknowledge.txt ================================================ /*! \page acknowledge Acknowledgements Many thanks to the following people for providing bug fixes and improvements:
  • Stephen Sinclair (major code and repository support!)
  • Stefan Arisona
  • Vincent Bénony
  • Rasmus Ekman
  • Anders Ervik
  • Robin Davies (Windows DS and ASIO)
  • Martin Koegler
  • Dmitry Kostjuchenko
  • Oliver Larkin
  • Antoine Lefebvre
  • Carlos Luna
  • Dominic Mazzoni
  • Tristan Matthews
  • Peter Meerwald (PulseAudio)
  • Benjamin Schroeder
  • Ryan Williams (Windows non-MS compiler ASIO support)
  • Ed Wildgoose (Linux ALSA and Jack)
The RtAudio API incorporates many of the concepts developed in the PortAudio project by Phil Burk and Ross Bencina. Early development also incorporated ideas from Bill Schottstaedt's sndlib. The CCRMA SoundWire group provided valuable feedback during the API proposal stages. The early 2.0 version of RtAudio was slowly developed over the course of many months while in residence at the Institut Universitari de L'Audiovisual (IUA) in Barcelona, Spain and the Laboratory of Acoustics and Audio Signal Processing at the Helsinki University of Technology, Finland. Much subsequent development happened while working at the Center for Computer Research in Music and Acoustics (CCRMA) at Stanford University. All recent versions of RtAudio have been completed while working as an assistant / associate professor of Music Technology at McGill University. This work was supported in part by the United States Air Force Office of Scientific Research (grant \#F49620-99-1-0293). */ ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/apinotes.txt ================================================ /*! \page apinotes API Notes RtAudio is designed to provide a common API across the various supported operating systems and audio libraries. Despite that, some issues should be mentioned with regard to each. \section linux Linux: RtAudio for Linux was developed under Redhat distributions 7.0 - Fedora. Four different audio APIs are supported on Linux platforms: OSS (versions >= 4.0), ALSA, Jack, and PulseAudio. Note that RtAudio now only supports the newer version 4.0 OSS API. The ALSA API is now part of the Linux kernel and offers significantly better functionality than the OSS API. RtAudio provides support for the 1.0 and higher versions of ALSA. Jack is a low-latency audio server written primarily for the GNU/Linux operating system. It can connect a number of different applications to an audio device, as well as allow them to share audio between themselves. Input/output latency on the order of 15 milliseconds can typically be achieved using any of the Linux APIs by fine-tuning the RtAudio buffer parameters (without kernel modifications). Latencies on the order of 5 milliseconds or less can be achieved using a low-latency kernel patch and increasing FIFO scheduling priority. The pthread library, which is used for callback functionality, is a standard component of all Linux distributions. The ALSA library includes OSS emulation support. That means that you can run programs compiled for the OSS API even when using the ALSA drivers and library. It should be noted however that OSS emulation under ALSA is not perfect. Specifically, channel number queries seem to consistently produce invalid results. While OSS emulation is successful for the majority of RtAudio tests, it is recommended that the native ALSA implementation of RtAudio be used on systems which have ALSA drivers installed. The ALSA implementation of RtAudio makes no use of the ALSA "plug" interface. All necessary data format conversions, channel compensation, de-interleaving, and byte-swapping is handled by internal RtAudio routines. \section macosx Macintosh OS-X (CoreAudio and Jack): The Apple CoreAudio API is designed to use a separate callback procedure for each of its audio devices. A single RtAudio duplex stream using two different devices is supported, though it cannot be guaranteed to always behave correctly because we cannot synchronize these two callbacks. The numberOfBuffers parameter to the RtAudio::openStream() function has no affect in this implementation. It is not possible to have multiple instances of RtAudio accessing the same CoreAudio device. The RtAudio Jack support can be compiled on Macintosh OS-X systems, as well as in Linux. \section windowsds Windows (DirectSound): The \c configure script provides support for the MinGW compiler. DirectSound support is specified with the "--with-ds" flag. In order to compile RtAudio under Windows for the DirectSound API, you must have the header and source files for DirectSound version 5.0 or higher. As far as I know, there is no DirectSoundCapture support for Windows NT. Audio output latency with DirectSound can be reasonably good, especially since RtAudio version 3.0.2. Input audio latency still tends to be bad but better since version 3.0.2. RtAudio was originally developed with Visual C++ version 6.0 but has been tested with .NET. The DirectSound version of RtAudio can be compiled with or without the UNICODE preprocessor definition. \section windowsasio Windows (ASIO): ASIO support using MinGW and the \c configure script is specified with the "--with-asio" flag. The Steinberg ASIO audio API allows only a single device driver to be loaded and accessed at a time. ASIO device drivers must be supplied by audio hardware manufacturers, though ASIO emulation is possible on top of systems with DirectSound drivers. The numberOfBuffers parameter to the RtAudio::openStream() function has no affect in this implementation. A number of ASIO source and header files are required for use with RtAudio. Specifically, an RtAudio project must include the following files: asio.h,cpp; asiodrivers.h,cpp; asiolist.h,cpp; asiodrvr.h; asiosys.h; ginclude.h; iasiodrv.h; iasiothiscallresolver.h,cpp. The Visual C++ projects found in /tests/Windows/ compile both ASIO and DirectSound support. The Steinberg provided asiolist class does not compile when the preprocessor definition UNICODE is defined. Note that this could be an issue when using RtAudio with Qt, though Qt programs appear to compile without the UNICODE definition (try DEFINES -= UNICODE in your .pro file). RtAudio with ASIO support has been tested using the MinGW compiler under Windows XP, as well as in the Visual Studio environment. */ ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/compiling.txt ================================================ /*! \page compiling Debugging & Compiling \section debug Debugging If you are having problems getting RtAudio to run on your system, make sure to pass a value of \e true to the RtAudio::showWarnings() function (this is the default setting). A variety of warning messages will be displayed which may help in determining the problem. Also, try using the programs included in the tests directory. The program audioprobe displays the queried capabilities of all hardware devices found for all APIs compiled. When using the ALSA and JACK APIs, further information can be displayed by defining the preprocessor definition __RTAUDIO_DEBUG__. \section compile Compiling In order to compile RtAudio for a specific OS and audio API, it is necessary to supply the appropriate preprocessor definition and library within the compiler statement:

OS: Audio API: C++ Class: Preprocessor Definition: Library or Framework: Example Compiler Statement:
Linux ALSA RtApiAlsa __LINUX_ALSA__ asound, pthread g++ -Wall -D__LINUX_ALSA__ -o audioprobe audioprobe.cpp RtAudio.cpp -lasound -lpthread
Linux PulseAudio RtApiPulse __LINUX_PULSE__ pthread g++ -Wall -D__LINUX_PULSE__ -o audioprobe audioprobe.cpp RtAudio.cpp -lpthread -lpulse-simple -lpulse
Linux OSS RtApiOss __LINUX_OSS__ pthread g++ -Wall -D__LINUX_OSS__ -o audioprobe audioprobe.cpp RtAudio.cpp -lpthread
Linux or Macintosh OS-X Jack Audio Server RtApiJack __UNIX_JACK__ jack, pthread g++ -Wall -D__UNIX_JACK__ -o audioprobe audioprobe.cpp RtAudio.cpp $(pkg-config --cflags --libs jack) -lpthread
Macintosh OS-X CoreAudio RtApiCore __MACOSX_CORE__ pthread, CoreAudio g++ -Wall -D__MACOSX_CORE__ -o audioprobe audioprobe.cpp RtAudio.cpp -framework CoreAudio -framework CoreFoundation -lpthread
Windows Direct Sound RtApiDs __WINDOWS_DS__ dsound.lib (ver. 5.0 or higher), multithreaded MinGW: g++ -Wall -D__WINDOWS_DS__ -o audioprobe audioprobe.cpp RtAudio.cpp -lole32 -lwinmm -ldsound
Windows ASIO RtApiAsio __WINDOWS_ASIO__ various ASIO header and source files MinGW: g++ -Wall -D__WINDOWS_ASIO__ -Iinclude -o audioprobe audioprobe.cpp RtAudio.cpp asio.cpp asiolist.cpp asiodrivers.cpp iasiothiscallresolver.cpp -lole32
Windows WASAPI RtApiWasapi __WINDOWS_WASAPI__ MinGW: FunctionDiscoveryKeys_devpkey.h, lksuser, luuid, lwinmm, lole32 MinGW: g++ -Wall -D__WINDOWS_WASAPI__ -Iinclude -o audioprobe audioprobe.cpp RtAudio.cpp -lole32 -lwinmm -lksuser -luuid

The example compiler statements above could be used to compile the audioprobe.cpp example file, assuming that audioprobe.cpp, RtAudio.h, RtAudio.cpp and any other necessary files all exist in the same directory or the include directory. */ ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/duplex.txt ================================================ /*! \page duplex Duplex Mode Finally, it is easy to use RtAudio for simultaneous audio input/output, or duplex operation. In this example, we simply pass the input data back to the output. \code #include "RtAudio.h" #include #include #include // Pass-through function. int inout( void *outputBuffer, void *inputBuffer, unsigned int nBufferFrames, double streamTime, RtAudioStreamStatus status, void *data ) { // Since the number of input and output channels is equal, we can do // a simple buffer copy operation here. if ( status ) std::cout << "Stream over/underflow detected." << std::endl; unsigned long *bytes = (unsigned long *) data; memcpy( outputBuffer, inputBuffer, *bytes ); return 0; } int main() { RtAudio adac; if ( adac.getDeviceCount() < 1 ) { std::cout << "\nNo audio devices found!\n"; exit( 0 ); } // Set the same number of channels for both input and output. unsigned int bufferBytes, bufferFrames = 512; RtAudio::StreamParameters iParams, oParams; iParams.deviceId = 0; // first available device iParams.nChannels = 2; oParams.deviceId = 0; // first available device oParams.nChannels = 2; try { adac.openStream( &oParams, &iParams, RTAUDIO_SINT32, 44100, &bufferFrames, &inout, (void *)&bufferBytes ); } catch ( RtAudioError& e ) { e.printMessage(); exit( 0 ); } bufferBytes = bufferFrames * 2 * 4; try { adac.startStream(); char input; std::cout << "\nRunning ... press to quit.\n"; std::cin.get(input); // Stop the stream. adac.stopStream(); } catch ( RtAudioError& e ) { e.printMessage(); goto cleanup; } cleanup: if ( adac.isStreamOpen() ) adac.closeStream(); return 0; } \endcode In this example, audio recorded by the stream input will be played out during the next round of audio processing. Note that a duplex stream can make use of two different devices (except when using the Linux Jack and Windows ASIO APIs). However, this may cause timing problems due to possible device clock variations, unless a common external "sync" is provided. */ ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/error.txt ================================================ /*! \page errors Error Handling RtAudio makes restrained use of C++ exceptions. That is, exceptions are thrown only when system errors occur that prevent further class operation or when the user makes invalid function calls. In other cases, a warning message may be displayed and an appropriate value is returned. For example, if a system error occurs when processing the RtAudio::getDeviceCount() function, the return value is zero. In such a case, the user cannot expect to make use of most other RtAudio functions because no devices are available (and thus a stream cannot be opened). A client can call the function RtAudio::showWarnings() with a boolean argument to enable or disable the printing of warning messages to stderr. By default, warning messages are displayed. There is a protected RtAudio method, error(), that can be modified to globally control how these messages are handled and reported. */ ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/footer.html ================================================


©2001-2017 Gary P. Scavone, McGill University. All Rights Reserved.
Maintained by Gary P. Scavone.
================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/header.html ================================================ The RtAudio Home Page
Home   Class/Enum List   File List   Compound Members  

================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/license.txt ================================================ /*! \page license License RtAudio: a set of realtime audio i/o C++ classes
Copyright (c) 2001-2017 Gary P. Scavone Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Any person wishing to distribute modifications to the Software is asked to send the modifications to the original developer so that they can be incorporated into the canonical version. This is, however, not a binding provision of this license. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/multi.txt ================================================ /*! \page multi Using Simultaneous Multiple APIs Because support for each audio API is encapsulated in a specific RtApi subclass, it is possible to compile and instantiate multiple API-specific subclasses on a given operating system. For example, one can compile both the RtApiDs and RtApiAsio classes on Windows operating systems by providing the appropriate preprocessor definitions, include files, and libraries for each. In a run-time situation, one might first attempt to determine whether any ASIO device drivers exist. This can be done by specifying the api argument RtAudio::WINDOWS_ASIO when attempting to create an instance of RtAudio. If no available devices are found, then an instance of RtAudio with the api argument RtAudio::WINDOWS_DS can be created. Alternately, if no api argument is specified, RtAudio will first look for an ASIO instance and then a DirectSound instance (on Linux systems, the default API search order is Jack, Alsa, and finally OSS). In theory, it should also be possible to have separate instances of RtAudio open at the same time with different underlying audio API support, though this has not been tested. It is difficult to know how well different audio APIs can simultaneously coexist on a given operating system. In particular, it is unlikely that the same device could be simultaneously controlled with two different audio APIs. The static function RtAudio::getCompiledApi() is provided to determine the available compiled API support. The function RtAudio::getCurrentApi() indicates the API selected for a given RtAudio instance. */ ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/playback.txt ================================================ /*! \page playback Playback In this example, we provide a complete program that demonstrates the use of RtAudio for audio playback. Our program produces a two-channel sawtooth waveform for output. \code #include "RtAudio.h" #include #include // Two-channel sawtooth wave generator. int saw( void *outputBuffer, void *inputBuffer, unsigned int nBufferFrames, double streamTime, RtAudioStreamStatus status, void *userData ) { unsigned int i, j; double *buffer = (double *) outputBuffer; double *lastValues = (double *) userData; if ( status ) std::cout << "Stream underflow detected!" << std::endl; // Write interleaved audio data. for ( i=0; i= 1.0 ) lastValues[j] -= 2.0; } } return 0; } int main() { RtAudio dac; if ( dac.getDeviceCount() < 1 ) { std::cout << "\nNo audio devices found!\n"; exit( 0 ); } RtAudio::StreamParameters parameters; parameters.deviceId = dac.getDefaultOutputDevice(); parameters.nChannels = 2; parameters.firstChannel = 0; unsigned int sampleRate = 44100; unsigned int bufferFrames = 256; // 256 sample frames double data[2]; try { dac.openStream( ¶meters, NULL, RTAUDIO_FLOAT64, sampleRate, &bufferFrames, &saw, (void *)&data ); dac.startStream(); } catch ( RtAudioError& e ) { e.printMessage(); exit( 0 ); } char input; std::cout << "\nPlaying ... press to quit.\n"; std::cin.get( input ); try { // Stop the stream dac.stopStream(); } catch (RtAudioError& e) { e.printMessage(); } if ( dac.isStreamOpen() ) dac.closeStream(); return 0; } \endcode We open the stream in exactly the same way as the previous example (except with a data format change) and specify the address of our callback function \e "saw()". The callback function will automatically be invoked when the underlying audio system needs data for output. Note that the callback function is called only when the stream is "running" (between calls to the RtAudio::startStream() and RtAudio::stopStream() functions). We can also pass a pointer value to the RtAudio::openStream() function that is made available in the callback function. In this way, it is possible to gain access to arbitrary data created in our \e main() function from within the globally defined callback function. In this example, we stop the stream with an explicit call to RtAudio::stopStream(). It is also possible to stop a stream by returning a non-zero value from the callback function. A return value of 1 will cause the stream to finish draining its internal buffers and then halt (equivalent to calling the RtAudio::stopStream() function). A return value of 2 will cause the stream to stop immediately (equivalent to calling the RtAudio::abortStream() function). */ ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/probe.txt ================================================ /*! \page probe Probing Device Capabilities A programmer may wish to query the available audio device capabilities before deciding which to use. The following example outlines how this can be done. \code // audioprobe.cpp #include #include "RtAudio.h" int main() { RtAudio audio; // Determine the number of devices available unsigned int devices = audio.getDeviceCount(); // Scan through devices for various capabilities RtAudio::DeviceInfo info; for ( unsigned int i=0; i sampleRates; // Supported sample rates. unsigned int preferredSampleRate; // Preferred sample rate, eg. for WASAPI the system sample rate. RtAudioFormat nativeFormats; // Bit mask of supported data formats. }; \endcode The following data formats are defined and fully supported by RtAudio: \code typedef unsigned long RtAudioFormat; static const RtAudioFormat RTAUDIO_SINT8; // Signed 8-bit integer static const RtAudioFormat RTAUDIO_SINT16; // Signed 16-bit integer static const RtAudioFormat RTAUDIO_SINT24; // Signed 24-bit integer (lower 3 bytes of 32-bit signed integer.) static const RtAudioFormat RTAUDIO_SINT32; // Signed 32-bit integer static const RtAudioFormat RTAUDIO_FLOAT32; // 32-bit float normalized between +/- 1.0 static const RtAudioFormat RTAUDIO_FLOAT64; // 64-bit double normalized between +/- 1.0 \endcode The \c nativeFormats member of the RtAudio::DeviceInfo structure is a bit mask of the above formats which are natively supported by the device. However, RtAudio will automatically provide format conversion if a particular format is not natively supported. When the \c probed member of the RtAudio::DeviceInfo structure is false, the remaining structure members are undefined and the device is probably unusable. Some audio devices may require a minimum channel value greater than one. RtAudio will provide automatic channel number compensation when the number of channels set by the user is less than that required by the device. Channel compensation is NOT possible when the number of channels set by the user is greater than that supported by the device. It should be noted that the capabilities reported by a device driver or underlying audio API are not always accurate and/or may be dependent on a combination of device settings. For this reason, RtAudio does not rely on the queried values when attempting to open a stream. */ ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/recording.txt ================================================ /*! \page recording Recording Using RtAudio for audio input is almost identical to the way it is used for playback. Here's the blocking playback example rewritten for recording: \code #include "RtAudio.h" #include #include #include int record( void *outputBuffer, void *inputBuffer, unsigned int nBufferFrames, double streamTime, RtAudioStreamStatus status, void *userData ) { if ( status ) std::cout << "Stream overflow detected!" << std::endl; // Do something with the data in the "inputBuffer" buffer. return 0; } int main() { RtAudio adc; if ( adc.getDeviceCount() < 1 ) { std::cout << "\nNo audio devices found!\n"; exit( 0 ); } RtAudio::StreamParameters parameters; parameters.deviceId = adc.getDefaultInputDevice(); parameters.nChannels = 2; parameters.firstChannel = 0; unsigned int sampleRate = 44100; unsigned int bufferFrames = 256; // 256 sample frames try { adc.openStream( NULL, ¶meters, RTAUDIO_SINT16, sampleRate, &bufferFrames, &record ); adc.startStream(); } catch ( RtAudioError& e ) { e.printMessage(); exit( 0 ); } char input; std::cout << "\nRecording ... press to quit.\n"; std::cin.get( input ); try { // Stop the stream adc.stopStream(); } catch (RtAudioError& e) { e.printMessage(); } if ( adc.isStreamOpen() ) adc.closeStream(); return 0; } \endcode In this example, we pass the address of the stream parameter structure as the second argument of the RtAudio::openStream() function and pass a NULL value for the output stream parameters. In this example, the \e record() callback function performs no specific operations. */ ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/settings.txt ================================================ /*! \page settings Device Settings The next step in using RtAudio is to open a stream with particular device and parameter settings. \code #include "RtAudio.h" int main() { RtAudio dac; if ( dac.getDeviceCount() == 0 ) exit( 0 ); RtAudio::StreamParameters parameters; parameters.deviceId = dac.getDefaultOutputDevice(); parameters.nChannels = 2; unsigned int sampleRate = 44100; unsigned int bufferFrames = 256; // 256 sample frames RtAudio::StreamOptions options; options.flags = RTAUDIO_NONINTERLEAVED; try { dac.openStream( ¶meters, NULL, RTAUDIO_FLOAT32, sampleRate, &bufferFrames, &myCallback, NULL, &options ); } catch ( RtAudioError& e ) { std::cout << '\n' << e.getMessage() << '\n' << std::endl; exit( 0 ); } return 0; } \endcode The RtAudio::openStream() function attempts to open a stream with a specified set of parameter values. In the above example, we attempt to open a two channel playback stream using the default output device, 32-bit floating point data, a sample rate of 44100 Hz, and a frame rate of 256 sample frames per output buffer. If the user specifies an invalid parameter value (such as a device id greater than or equal to the number of enumerated devices), an RtAudioError is thrown of type = INVALID_USE. If a system error occurs or the device does not support the specified parameter values, an RtAudioError of type = SYSTEM_ERROR is thrown. In either case, a descriptive error message is bundled with the exception and can be queried with the RtAudioError::getMessage() or RtAudioError::what() functions. RtAudio provides four signed integer and two floating point data formats which can be specified using the RtAudioFormat parameter values mentioned earlier. If the opened device does not natively support the given format, RtAudio will automatically perform the necessary data format conversion. The \c bufferFrames parameter specifies the desired number of sample frames that will be written to and/or read from a device per write/read operation. This parameter can be used to control stream latency though there is no guarantee that the passed value will be that used by a device. In general, a lower \c bufferFrames value will produce less latency but perhaps less robust performance. A value of zero can be specified, in which case the smallest allowable value will be used. The \c bufferFrames parameter is passed as a pointer and the actual value used by the stream is set during the device setup procedure. \c bufferFrames values should be a power of two. Optimal and allowable buffer values tend to vary between systems and devices. Stream latency can also be controlled via the optional RtAudio::StreamOptions member \c numberOfBuffers (not used in the example above), though this tends to be more system dependent. In particular, the \c numberOfBuffers parameter is ignored when using the OS-X Core Audio, Jack, and the Windows ASIO APIs. As noted earlier, the device capabilities reported by a driver or underlying audio API are not always accurate and/or may be dependent on a combination of device settings. Because of this, RtAudio does not attempt to query a device's capabilities or use previously reported values when opening a device. Instead, RtAudio simply attempts to set the given parameters on a specified device and then checks whether the setup is successful or not. The RtAudioCallback parameter above is a pointer to a user-defined function that will be called whenever the audio system is ready for new output data or has new input data to be read. Further details on the use of a callback function are provided in the next section. Several stream options are available to fine-tune the behavior of an audio stream. In the example above, we specify that data will be written by the user in a \e non-interleaved format via the RtAudio::StreamOptions member \c flags. That is, all \c bufferFrames of the first channel should be written consecutively, followed by all \c bufferFrames of the second channel. By default (when no option is specified), RtAudio expects data to be written in an \e interleaved format. */ ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/doxygen/tutorial.txt ================================================ /*! \mainpage The RtAudio Home Page RtAudio is a set of C++ classes that provide a common API (Application Programming Interface) for realtime audio input/output across Linux, Macintosh OS-X and Windows operating systems. RtAudio significantly simplifies the process of interacting with computer audio hardware. It was designed with the following objectives: - object-oriented C++ design - simple, common API across all supported platforms - only one source and one header file for easy inclusion in programming projects - allow simultaneous multi-api support - support dynamic connection of devices - provide extensive audio device parameter control - allow audio device capability probing - automatic internal conversion for data format, channel number compensation, (de)interleaving, and byte-swapping RtAudio incorporates the concept of audio streams, which represent audio output (playback) and/or input (recording). Available audio devices and their capabilities can be enumerated and then specified when opening a stream. Where applicable, multiple API support can be compiled and a particular API specified when creating an RtAudio instance. See the \ref apinotes section for information specific to each of the supported audio APIs. \section whatsnew Latest Updates (Version 5.0.0) The version number has been bumped to 5.0.0 because of the past API change concerning the renaming of the RtError class to RtAudioError. Changes in this release include: - WASAPI updates (thanks to Marcus Tomlinson) - minor exception semantic changes - miscellaneous build system updates - see git history for complete list of changes \section download Download Latest Release (30 August 2017): Version 5.0.0 \section documentation Documentation Links -# \ref errors -# \ref probe -# \ref settings -# \ref playback -# \ref recording -# \ref duplex -# \ref multi -# \ref compiling -# \ref apinotes -# \ref acknowledge -# \ref license -# RtAudio on GitHub */ -# Bug Tracker (out of date) -# Possible Updates (out of date) ================================================ FILE: vendor/github.com/thestk/rtaudio/doc/release.txt ================================================ RtAudio - a set of C++ classes that provide a common API for realtime audio input/output across Linux (native ALSA, JACK, PulseAudio, and OSS), Macintosh OS X (CoreAudio and JACK), and Windows (DirectSound, ASIO and WASAPI) operating systems. By Gary P. Scavone, 2001-2017. v5.0.0: (30 August 2017) - see git history for complete list of changes - WASAPI updates (thanks to Marcus Tomlinson) - minor exception semantic changes - miscellaneous build system updates v4.1.2: (22 February 2016) - added more complete automake support (thanks to Stephen Sinclair) - miscellaneous small fixes and updates, see github repo commit history for details v4.1.1: (26 April 2014) - updates to WASAPI API for MinGW compiling - WASAPI bug fixes for audio INPUT mode - DirectSound bug fix for INPUT mode - Bug fixes in Core, Jack, ASIO and DS for internal draining in INPUT mode - updates to test programs for default device specifiers - CMake buildfile update for WASAPI - new setStreamTime function v4.1.0: (10 April 2014) - RtError class renamed RtAudioError and embedded in RtAudio.h (RtError.h deleted) - new support for the Windows WASAPI API (thanks to Marcus Tomlinson) - CMake support (thanks to Berkus Decker) - pulse audio update to support bufferFrames argument with audio input (thanks to Jonatan Wallmander) - fixes for ALSA API to avoid high CPU usage during stops and to clear stale data before input (thanks to Pluto Hades) - miscellaneous efficiency updates suggested by Martin Koegler - bug fix for OS-X xrun reporting problem - bug fix related to error when opening a stream after closing a previously open stream v4.0.12: (16 April 2013) - new functionality to allow error reporting via a client-supplied function (thanks to Pavel Mogilevskiy) - new function to return the version number - updated RtAudio.cpp and ASIO files for UNICODE support (thanks to Renaud Schoonbroodt) - updates to PulseAudio API support (thanks to Peter Meerwald and Tristan Matthews) - updates for pkg-config support in configure script - 24-bit format changed to true 24-bit format, not sub-bytes of 32-bits (thanks to Marc Britton) - bug fixes to make sure stream status is closed if error during probeDeviceOpen - updates / fixes to SCHED_RR code in ALSA (thanks to Marc Lindahl) - various changes to avoid global variables (thanks to Martin Koegler) v4.0.11: (14 June 2012) - fixes for memory leaks in ALSA (thanks to Martin Koegler) - PulseAudio API support added (thanks to Peter Meerwald and Tristan Matthews) - bitwise format flag fixes in OS-X (Benjamin Schroeder and Stefan Arisona) - changes to stopStream / drain flag to avoid hung state in ASIO, DS, OS-X, and Jack APIs (Rasmus Ekman and Carlos Luna) v4.0.10: (30 August 2011) - fix for compile bug in Windows DS (counting devices) - update to configure and library Makefile v4.0.9: (14 August 2011) - fix for ASIO problem enumerating devices after opening duplex stream (Oliver Larkin) - fix for OS-X problems setting sample rate and bits-per-sample - updates for OS-X "Lion" - updates for wide character support in Windows DS (UNICODE) - fix for possible ALSA callback thread hang (thanks to Tristan Matthews) - fix for DS getDeviceCount bug (vector erase problem) v4.0.8: (12 April 2011) - fix for MinGW4 problem enumerating and setting sample rates (iasiothiscallresolver, Dmitry Kostjuchenko) - fix for OS-X problem handling device names in some languages (CFString conversion, Vincent Bénony) - small change to OS-X mutex lock location to avoid lockups - correction to documentation regarding 24-bit data (should be lower 3 bytes, not upper 3 bytes) - bug fix for error handling of warnings (Antoine Lefebvre) - added option to use the ALSA "default" device (Tristan Matthews) - removed use of mutexes in Windows - fix for ASIO4ALL behavior when stopping/closing streams (Antoine Lefebvre) - included python binding in "contrib" directory (beta, Antoine Lefebvre) v4.0.7: (4 February 2010) - revised Windows DS code and device enumeration to speed up device queries - OS-X 10.6 updates for deprecated functions - updates to Jack shutdown code to avoid lockup v4.0.6: (3 June 2009) - bug fix in ALSA code to set period size to power of two (thanks to Joakim Karrstrom) - bug fix in OS-X for OS < 10.5 ... need preprocessor definition around new variable type (thanks to Tristan Matthews) v4.0.5: (2 February 2009) - added support in CoreAudio for arbitrary stream channel configurations - added getStreamSampleRate() function because the actual sample rate can sometimes vary slightly from the specified one (thanks to Theo Veenker) - added new StreamOptions flag "RTAUDIO_SCHEDULE_REALTIME" and attribute "priority" to StreamOptions (thanks to Theo Veenker) - replaced usleep(50000) in callbackEvent() by a wait on condition variable which gets signaled in startStream() (thanks to Theo Veenker) - fix for Jack API when user callback function signals stop or abort calls - fix to way stream state is changed to avoid infinite loop problem - fix to int<->float conversion in convertBuffer() (thanks to Theo Veenker) - bug fix in byteSwapBuffer() (thanks to Stefan Muller Arisona and Theo Veenker) - fixed a few gcc 4.4 errors in OS-X - fixed bug in rtaudio-config script - revised configure script and Makefile structures - 64-bit fixes in ALSA API (thanks to Stefan Muller Arisona) - fixed ASIO sample rate selection bug (thanks to Sasha Zheligovsky) v4.0.4: (24 January 2008) - added functionality to allow getDeviceInfo() to work in ALSA for an open device (like ASIO) - fixes in configure script - fixed clearing of error message stream in error() - fixed RtAudio::DeviceInfo description in "probing" documentation - memory leak fixes in ALSA and OSS - Jack in/out port flag fix - Windows changes for thread priority and GLOBALFOCUS v4.0.3: (7 December 2007) - added support for MinGW compiler to configure script - a few MinGW-related changes to RtAudio.cpp - renamed test program probe.cpp to audioprobe.cpp - moved various header files into single "include" directory and updated VC++ project files v4.0.2: (21 August 2007) - fix to RtError::WARNING typo in RtAudio.h (RtApiDummy) - removed "+1"s in RtApiCore c++ append when getting device name v4.0.1: (13 August 2007) - fix to RtError::WARNING typo in RtAudio.cpp v4.0.0: (7 August 2007) - new support for non-interleaved user data - additional input/output parameter specifications, including channel offset - new support for dynamic connection of devices - new support for stream time - revised callback arguments, including separate input and output buffer arguments - revised C++ exception handling - revised OSS support for version 4.0 - discontinued support of blocking functionality - discontinued support of SGI - Windows DirectSound API bug fix - NetBSD support (using OSS API) by Emmanuel Dreyfus - changed default pthread scheduling priority to SCHED_RR when defined in the system - new getCompiledApi() static function - new getCurrentApi(), getStreamTime(), getStreamLatency(), and isStreamRunning() functions - modified RtAudioDeviceInfo structure to distinguish default input and output devices v3.0.3: (18 November 2005) - UNICODE fix for Windows DirectSound API - MinGW compiler fix for ASIO API v3.0.2: (14 October 2005) - modification of ALSA read/write order to fix duplex under/overruns - added synchronization of input/output devices for ALSA duplex operation - cleaned up and improved error reporting throughout - bug fix in Windows DirectSound support for 8-bit audio - bug fix in Windows DirectSound support during device capture query - added ASIOOutputReady() call near end of callbackEvent to fix some driver behavior - added #include to RtAudio.cpp - fixed bug in RtApiCore for duplex operation with different I/O devices - improvements to DirectX pointer chasing (by Robin Davies) - backdoor RtDsStatistics hook provides DirectX performance information (by Robin Davies) - bug fix for non-power-of-two Asio granularity used by Edirol PCR-A30 (by Robin Davies) - auto-call CoInitialize for DSOUND and ASIO platforms (by Robin Davies) v3.0.1: (22 March 2004) - bug fix in Windows DirectSound support for cards with output only v3.0: (11 March 2004) - added Linux Jack audio server support - new multi-api support by subclassing all apis and making rtaudio a controller class - added over/underload check to Mac OS X support - new scheme for blocking functionality in callback-based apis (CoreAudio, ASIO, and JACK) - removed multiple stream support (all stream indentifier arguments removed) - various style and name changes to conform with standard C++ practice v2.1.1: (24 October 2002) - bug fix in duplex for Mac OS X and Windows ASIO code - duplex example change in tutorial v2.1: (7 October 2002) - added Mac OS X CoreAudio support - added Windows ASIO support - API change to getDeviceInfo(): device argument must be an integer between 1 - getDeviceCount(). - "configure" support added for unix systems - adopted MIT-like license - various internal structural changes and bug fixes v2.01: (27 April 2002) - Windows destructor bug fix when no devices available - RtAudioError class renamed to RtError - Preprocessor definitions changed slightly (i.e. __LINUX_OSS_ to __LINUX_OSS__) to conform with new Synthesis ToolKit distribution v2.0: (22 January 2002) - first release of new independent class ================================================ FILE: vendor/github.com/thestk/rtaudio/include/asio.cpp ================================================ /* Steinberg Audio Stream I/O API (c) 1996, Steinberg Soft- und Hardware GmbH asio.cpp asio functions entries which translate the asio interface to the asiodrvr class methods */ #include #include "asiosys.h" // platform definition #include "asio.h" #if MAC #include "asiodrvr.h" #pragma export on AsioDriver *theAsioDriver = 0; extern "C" { long main() { return 'ASIO'; } #elif WINDOWS #include "windows.h" #include "iasiodrv.h" #include "asiodrivers.h" IASIO *theAsioDriver = 0; extern AsioDrivers *asioDrivers; #elif SGI || SUN || BEOS || LINUX #include "asiodrvr.h" static AsioDriver *theAsioDriver = 0; #endif //----------------------------------------------------------------------------------------------------- ASIOError ASIOInit(ASIODriverInfo *info) { #if MAC || SGI || SUN || BEOS || LINUX if(theAsioDriver) { delete theAsioDriver; theAsioDriver = 0; } info->driverVersion = 0; strcpy(info->name, "No ASIO Driver"); theAsioDriver = getDriver(); if(!theAsioDriver) { strcpy(info->errorMessage, "Not enough memory for the ASIO driver!"); return ASE_NotPresent; } if(!theAsioDriver->init(info->sysRef)) { theAsioDriver->getErrorMessage(info->errorMessage); delete theAsioDriver; theAsioDriver = 0; return ASE_NotPresent; } strcpy(info->errorMessage, "No ASIO Driver Error"); theAsioDriver->getDriverName(info->name); info->driverVersion = theAsioDriver->getDriverVersion(); return ASE_OK; #else info->driverVersion = 0; strcpy(info->name, "No ASIO Driver"); if(theAsioDriver) // must be loaded! { if(!theAsioDriver->init(info->sysRef)) { theAsioDriver->getErrorMessage(info->errorMessage); theAsioDriver = 0; return ASE_NotPresent; } strcpy(info->errorMessage, "No ASIO Driver Error"); theAsioDriver->getDriverName(info->name); info->driverVersion = theAsioDriver->getDriverVersion(); return ASE_OK; } return ASE_NotPresent; #endif // !MAC } ASIOError ASIOExit(void) { if(theAsioDriver) { #if WINDOWS asioDrivers->removeCurrentDriver(); #else delete theAsioDriver; #endif } theAsioDriver = 0; return ASE_OK; } ASIOError ASIOStart(void) { if(!theAsioDriver) return ASE_NotPresent; return theAsioDriver->start(); } ASIOError ASIOStop(void) { if(!theAsioDriver) return ASE_NotPresent; return theAsioDriver->stop(); } ASIOError ASIOGetChannels(long *numInputChannels, long *numOutputChannels) { if(!theAsioDriver) { *numInputChannels = *numOutputChannels = 0; return ASE_NotPresent; } return theAsioDriver->getChannels(numInputChannels, numOutputChannels); } ASIOError ASIOGetLatencies(long *inputLatency, long *outputLatency) { if(!theAsioDriver) { *inputLatency = *outputLatency = 0; return ASE_NotPresent; } return theAsioDriver->getLatencies(inputLatency, outputLatency); } ASIOError ASIOGetBufferSize(long *minSize, long *maxSize, long *preferredSize, long *granularity) { if(!theAsioDriver) { *minSize = *maxSize = *preferredSize = *granularity = 0; return ASE_NotPresent; } return theAsioDriver->getBufferSize(minSize, maxSize, preferredSize, granularity); } ASIOError ASIOCanSampleRate(ASIOSampleRate sampleRate) { if(!theAsioDriver) return ASE_NotPresent; return theAsioDriver->canSampleRate(sampleRate); } ASIOError ASIOGetSampleRate(ASIOSampleRate *currentRate) { if(!theAsioDriver) return ASE_NotPresent; return theAsioDriver->getSampleRate(currentRate); } ASIOError ASIOSetSampleRate(ASIOSampleRate sampleRate) { if(!theAsioDriver) return ASE_NotPresent; return theAsioDriver->setSampleRate(sampleRate); } ASIOError ASIOGetClockSources(ASIOClockSource *clocks, long *numSources) { if(!theAsioDriver) { *numSources = 0; return ASE_NotPresent; } return theAsioDriver->getClockSources(clocks, numSources); } ASIOError ASIOSetClockSource(long reference) { if(!theAsioDriver) return ASE_NotPresent; return theAsioDriver->setClockSource(reference); } ASIOError ASIOGetSamplePosition(ASIOSamples *sPos, ASIOTimeStamp *tStamp) { if(!theAsioDriver) return ASE_NotPresent; return theAsioDriver->getSamplePosition(sPos, tStamp); } ASIOError ASIOGetChannelInfo(ASIOChannelInfo *info) { if(!theAsioDriver) { info->channelGroup = -1; info->type = ASIOSTInt16MSB; strcpy(info->name, "None"); return ASE_NotPresent; } return theAsioDriver->getChannelInfo(info); } ASIOError ASIOCreateBuffers(ASIOBufferInfo *bufferInfos, long numChannels, long bufferSize, ASIOCallbacks *callbacks) { if(!theAsioDriver) { ASIOBufferInfo *info = bufferInfos; for(long i = 0; i < numChannels; i++, info++) info->buffers[0] = info->buffers[1] = 0; return ASE_NotPresent; } return theAsioDriver->createBuffers(bufferInfos, numChannels, bufferSize, callbacks); } ASIOError ASIODisposeBuffers(void) { if(!theAsioDriver) return ASE_NotPresent; return theAsioDriver->disposeBuffers(); } ASIOError ASIOControlPanel(void) { if(!theAsioDriver) return ASE_NotPresent; return theAsioDriver->controlPanel(); } ASIOError ASIOFuture(long selector, void *opt) { if(!theAsioDriver) return ASE_NotPresent; return theAsioDriver->future(selector, opt); } ASIOError ASIOOutputReady(void) { if(!theAsioDriver) return ASE_NotPresent; return theAsioDriver->outputReady(); } #if MAC } // extern "C" #pragma export off #endif ================================================ FILE: vendor/github.com/thestk/rtaudio/include/asio.h ================================================ //--------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------- /* Steinberg Audio Stream I/O API (c) 1997 - 2005, Steinberg Media Technologies GmbH ASIO Interface Specification v 2.1 2005 - Added support for DSD sample data (in cooperation with Sony) basic concept is an i/o synchronous double-buffer scheme: on bufferSwitch(index == 0), host will read/write: after ASIOStart(), the read first input buffer A (index 0) | will be invalid (empty) * ------------------------ |------------------------|-----------------------| | | | | Input Buffer A (0) | Input Buffer B (1) | | | | |------------------------|-----------------------| | | | | Output Buffer A (0) | Output Buffer B (1) | | | | |------------------------|-----------------------| * ------------------------- | before calling ASIOStart(), write host will have filled output buffer B (index 1) already *please* take special care of proper statement of input and output latencies (see ASIOGetLatencies()), these control sequencer sync accuracy */ //--------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------- /* prototypes summary: ASIOError ASIOInit(ASIODriverInfo *info); ASIOError ASIOExit(void); ASIOError ASIOStart(void); ASIOError ASIOStop(void); ASIOError ASIOGetChannels(long *numInputChannels, long *numOutputChannels); ASIOError ASIOGetLatencies(long *inputLatency, long *outputLatency); ASIOError ASIOGetBufferSize(long *minSize, long *maxSize, long *preferredSize, long *granularity); ASIOError ASIOCanSampleRate(ASIOSampleRate sampleRate); ASIOError ASIOGetSampleRate(ASIOSampleRate *currentRate); ASIOError ASIOSetSampleRate(ASIOSampleRate sampleRate); ASIOError ASIOGetClockSources(ASIOClockSource *clocks, long *numSources); ASIOError ASIOSetClockSource(long reference); ASIOError ASIOGetSamplePosition (ASIOSamples *sPos, ASIOTimeStamp *tStamp); ASIOError ASIOGetChannelInfo(ASIOChannelInfo *info); ASIOError ASIOCreateBuffers(ASIOBufferInfo *bufferInfos, long numChannels, long bufferSize, ASIOCallbacks *callbacks); ASIOError ASIODisposeBuffers(void); ASIOError ASIOControlPanel(void); void *ASIOFuture(long selector, void *params); ASIOError ASIOOutputReady(void); */ //--------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------- #ifndef __ASIO_H #define __ASIO_H // force 4 byte alignment #if defined(_MSC_VER) && !defined(__MWERKS__) #pragma pack(push,4) #elif PRAGMA_ALIGN_SUPPORTED #pragma options align = native #endif //- - - - - - - - - - - - - - - - - - - - - - - - - // Type definitions //- - - - - - - - - - - - - - - - - - - - - - - - - // number of samples data type is 64 bit integer #if NATIVE_INT64 typedef long long int ASIOSamples; #else typedef struct ASIOSamples { unsigned long hi; unsigned long lo; } ASIOSamples; #endif // Timestamp data type is 64 bit integer, // Time format is Nanoseconds. #if NATIVE_INT64 typedef long long int ASIOTimeStamp ; #else typedef struct ASIOTimeStamp { unsigned long hi; unsigned long lo; } ASIOTimeStamp; #endif // Samplerates are expressed in IEEE 754 64 bit double float, // native format as host computer #if IEEE754_64FLOAT typedef double ASIOSampleRate; #else typedef struct ASIOSampleRate { char ieee[8]; } ASIOSampleRate; #endif // Boolean values are expressed as long typedef long ASIOBool; enum { ASIOFalse = 0, ASIOTrue = 1 }; // Sample Types are expressed as long typedef long ASIOSampleType; enum { ASIOSTInt16MSB = 0, ASIOSTInt24MSB = 1, // used for 20 bits as well ASIOSTInt32MSB = 2, ASIOSTFloat32MSB = 3, // IEEE 754 32 bit float ASIOSTFloat64MSB = 4, // IEEE 754 64 bit double float // these are used for 32 bit data buffer, with different alignment of the data inside // 32 bit PCI bus systems can be more easily used with these ASIOSTInt32MSB16 = 8, // 32 bit data with 16 bit alignment ASIOSTInt32MSB18 = 9, // 32 bit data with 18 bit alignment ASIOSTInt32MSB20 = 10, // 32 bit data with 20 bit alignment ASIOSTInt32MSB24 = 11, // 32 bit data with 24 bit alignment ASIOSTInt16LSB = 16, ASIOSTInt24LSB = 17, // used for 20 bits as well ASIOSTInt32LSB = 18, ASIOSTFloat32LSB = 19, // IEEE 754 32 bit float, as found on Intel x86 architecture ASIOSTFloat64LSB = 20, // IEEE 754 64 bit double float, as found on Intel x86 architecture // these are used for 32 bit data buffer, with different alignment of the data inside // 32 bit PCI bus systems can more easily used with these ASIOSTInt32LSB16 = 24, // 32 bit data with 18 bit alignment ASIOSTInt32LSB18 = 25, // 32 bit data with 18 bit alignment ASIOSTInt32LSB20 = 26, // 32 bit data with 20 bit alignment ASIOSTInt32LSB24 = 27, // 32 bit data with 24 bit alignment // ASIO DSD format. ASIOSTDSDInt8LSB1 = 32, // DSD 1 bit data, 8 samples per byte. First sample in Least significant bit. ASIOSTDSDInt8MSB1 = 33, // DSD 1 bit data, 8 samples per byte. First sample in Most significant bit. ASIOSTDSDInt8NER8 = 40, // DSD 8 bit data, 1 sample per byte. No Endianness required. ASIOSTLastEntry }; /*----------------------------------------------------------------------------- // DSD operation and buffer layout // Definition by Steinberg/Sony Oxford. // // We have tried to treat DSD as PCM and so keep a consistant structure across // the ASIO interface. // // DSD's sample rate is normally referenced as a multiple of 44.1Khz, so // the standard sample rate is refered to as 64Fs (or 2.8224Mhz). We looked // at making a special case for DSD and adding a field to the ASIOFuture that // would allow the user to select the Over Sampleing Rate (OSR) as a seperate // entity but decided in the end just to treat it as a simple value of // 2.8224Mhz and use the standard interface to set it. // // The second problem was the "word" size, in PCM the word size is always a // greater than or equal to 8 bits (a byte). This makes life easy as we can // then pack the samples into the "natural" size for the machine. // In DSD the "word" size is 1 bit. This is not a major problem and can easily // be dealt with if we ensure that we always deal with a multiple of 8 samples. // // DSD brings with it another twist to the Endianness religion. How are the // samples packed into the byte. It would be nice to just say the most significant // bit is always the first sample, however there would then be a performance hit // on little endian machines. Looking at how some of the processing goes... // Little endian machines like the first sample to be in the Least Significant Bit, // this is because when you write it to memory the data is in the correct format // to be shifted in and out of the words. // Big endian machine prefer the first sample to be in the Most Significant Bit, // again for the same reasion. // // And just when things were looking really muddy there is a proposed extension to // DSD that uses 8 bit word sizes. It does not care what endianness you use. // // Switching the driver between DSD and PCM mode // ASIOFuture allows for extending the ASIO API quite transparently. // See kAsioSetIoFormat, kAsioGetIoFormat, kAsioCanDoIoFormat // //-----------------------------------------------------------------------------*/ //- - - - - - - - - - - - - - - - - - - - - - - - - // Error codes //- - - - - - - - - - - - - - - - - - - - - - - - - typedef long ASIOError; enum { ASE_OK = 0, // This value will be returned whenever the call succeeded ASE_SUCCESS = 0x3f4847a0, // unique success return value for ASIOFuture calls ASE_NotPresent = -1000, // hardware input or output is not present or available ASE_HWMalfunction, // hardware is malfunctioning (can be returned by any ASIO function) ASE_InvalidParameter, // input parameter invalid ASE_InvalidMode, // hardware is in a bad mode or used in a bad mode ASE_SPNotAdvancing, // hardware is not running when sample position is inquired ASE_NoClock, // sample clock or rate cannot be determined or is not present ASE_NoMemory // not enough memory for completing the request }; //--------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------- //- - - - - - - - - - - - - - - - - - - - - - - - - // Time Info support //- - - - - - - - - - - - - - - - - - - - - - - - - typedef struct ASIOTimeCode { double speed; // speed relation (fraction of nominal speed) // optional; set to 0. or 1. if not supported ASIOSamples timeCodeSamples; // time in samples unsigned long flags; // some information flags (see below) char future[64]; } ASIOTimeCode; typedef enum ASIOTimeCodeFlags { kTcValid = 1, kTcRunning = 1 << 1, kTcReverse = 1 << 2, kTcOnspeed = 1 << 3, kTcStill = 1 << 4, kTcSpeedValid = 1 << 8 } ASIOTimeCodeFlags; typedef struct AsioTimeInfo { double speed; // absolute speed (1. = nominal) ASIOTimeStamp systemTime; // system time related to samplePosition, in nanoseconds // on mac, must be derived from Microseconds() (not UpTime()!) // on windows, must be derived from timeGetTime() ASIOSamples samplePosition; ASIOSampleRate sampleRate; // current rate unsigned long flags; // (see below) char reserved[12]; } AsioTimeInfo; typedef enum AsioTimeInfoFlags { kSystemTimeValid = 1, // must always be valid kSamplePositionValid = 1 << 1, // must always be valid kSampleRateValid = 1 << 2, kSpeedValid = 1 << 3, kSampleRateChanged = 1 << 4, kClockSourceChanged = 1 << 5 } AsioTimeInfoFlags; typedef struct ASIOTime // both input/output { long reserved[4]; // must be 0 struct AsioTimeInfo timeInfo; // required struct ASIOTimeCode timeCode; // optional, evaluated if (timeCode.flags & kTcValid) } ASIOTime; /* using time info: it is recommended to use the new method with time info even if the asio device does not support timecode; continuous calls to ASIOGetSamplePosition and ASIOGetSampleRate are avoided, and there is a more defined relationship between callback time and the time info. see the example below. to initiate time info mode, after you have received the callbacks pointer in ASIOCreateBuffers, you will call the asioMessage callback with kAsioSupportsTimeInfo as the argument. if this returns 1, host has accepted time info mode. now host expects the new callback bufferSwitchTimeInfo to be used instead of the old bufferSwitch method. the ASIOTime structure is assumed to be valid and accessible until the callback returns. using time code: if the device supports reading time code, it will call host's asioMessage callback with kAsioSupportsTimeCode as the selector. it may then fill the according fields and set the kTcValid flag. host will call the future method with the kAsioEnableTimeCodeRead selector when it wants to enable or disable tc reading by the device. you should also support the kAsioCanTimeInfo and kAsioCanTimeCode selectors in ASIOFuture (see example). note: the AsioTimeInfo/ASIOTimeCode pair is supposed to work in both directions. as a matter of convention, the relationship between the sample position counter and the time code at buffer switch time is (ignoring offset between tc and sample pos when tc is running): on input: sample 0 -> input buffer sample 0 -> time code 0 on output: sample 0 -> output buffer sample 0 -> time code 0 this means that for 'real' calculations, one has to take into account the according latencies. example: ASIOTime asioTime; in createBuffers() { memset(&asioTime, 0, sizeof(ASIOTime)); AsioTimeInfo* ti = &asioTime.timeInfo; ti->sampleRate = theSampleRate; ASIOTimeCode* tc = &asioTime.timeCode; tc->speed = 1.; timeInfoMode = false; canTimeCode = false; if(callbacks->asioMessage(kAsioSupportsTimeInfo, 0, 0, 0) == 1) { timeInfoMode = true; #if kCanTimeCode if(callbacks->asioMessage(kAsioSupportsTimeCode, 0, 0, 0) == 1) canTimeCode = true; #endif } } void switchBuffers(long doubleBufferIndex, bool processNow) { if(timeInfoMode) { AsioTimeInfo* ti = &asioTime.timeInfo; ti->flags = kSystemTimeValid | kSamplePositionValid | kSampleRateValid; ti->systemTime = theNanoSeconds; ti->samplePosition = theSamplePosition; if(ti->sampleRate != theSampleRate) ti->flags |= kSampleRateChanged; ti->sampleRate = theSampleRate; #if kCanTimeCode if(canTimeCode && timeCodeEnabled) { ASIOTimeCode* tc = &asioTime.timeCode; tc->timeCodeSamples = tcSamples; // tc in samples tc->flags = kTcValid | kTcRunning | kTcOnspeed; // if so... } ASIOTime* bb = callbacks->bufferSwitchTimeInfo(&asioTime, doubleBufferIndex, processNow ? ASIOTrue : ASIOFalse); #else callbacks->bufferSwitchTimeInfo(&asioTime, doubleBufferIndex, processNow ? ASIOTrue : ASIOFalse); #endif } else callbacks->bufferSwitch(doubleBufferIndex, ASIOFalse); } ASIOError ASIOFuture(long selector, void *params) { switch(selector) { case kAsioEnableTimeCodeRead: timeCodeEnabled = true; return ASE_SUCCESS; case kAsioDisableTimeCodeRead: timeCodeEnabled = false; return ASE_SUCCESS; case kAsioCanTimeInfo: return ASE_SUCCESS; #if kCanTimeCode case kAsioCanTimeCode: return ASE_SUCCESS; #endif } return ASE_NotPresent; }; */ //- - - - - - - - - - - - - - - - - - - - - - - - - // application's audio stream handler callbacks //- - - - - - - - - - - - - - - - - - - - - - - - - typedef struct ASIOCallbacks { void (*bufferSwitch) (long doubleBufferIndex, ASIOBool directProcess); // bufferSwitch indicates that both input and output are to be processed. // the current buffer half index (0 for A, 1 for B) determines // - the output buffer that the host should start to fill. the other buffer // will be passed to output hardware regardless of whether it got filled // in time or not. // - the input buffer that is now filled with incoming data. Note that // because of the synchronicity of i/o, the input always has at // least one buffer latency in relation to the output. // directProcess suggests to the host whether it should immedeately // start processing (directProcess == ASIOTrue), or whether its process // should be deferred because the call comes from a very low level // (for instance, a high level priority interrupt), and direct processing // would cause timing instabilities for the rest of the system. If in doubt, // directProcess should be set to ASIOFalse. // Note: bufferSwitch may be called at interrupt time for highest efficiency. void (*sampleRateDidChange) (ASIOSampleRate sRate); // gets called when the AudioStreamIO detects a sample rate change // If sample rate is unknown, 0 is passed (for instance, clock loss // when externally synchronized). long (*asioMessage) (long selector, long value, void* message, double* opt); // generic callback for various purposes, see selectors below. // note this is only present if the asio version is 2 or higher ASIOTime* (*bufferSwitchTimeInfo) (ASIOTime* params, long doubleBufferIndex, ASIOBool directProcess); // new callback with time info. makes ASIOGetSamplePosition() and various // calls to ASIOGetSampleRate obsolete, // and allows for timecode sync etc. to be preferred; will be used if // the driver calls asioMessage with selector kAsioSupportsTimeInfo. } ASIOCallbacks; // asioMessage selectors enum { kAsioSelectorSupported = 1, // selector in , returns 1L if supported, // 0 otherwise kAsioEngineVersion, // returns engine (host) asio implementation version, // 2 or higher kAsioResetRequest, // request driver reset. if accepted, this // will close the driver (ASIO_Exit() ) and // re-open it again (ASIO_Init() etc). some // drivers need to reconfigure for instance // when the sample rate changes, or some basic // changes have been made in ASIO_ControlPanel(). // returns 1L; note the request is merely passed // to the application, there is no way to determine // if it gets accepted at this time (but it usually // will be). kAsioBufferSizeChange, // not yet supported, will currently always return 0L. // for now, use kAsioResetRequest instead. // once implemented, the new buffer size is expected // in , and on success returns 1L kAsioResyncRequest, // the driver went out of sync, such that // the timestamp is no longer valid. this // is a request to re-start the engine and // slave devices (sequencer). returns 1 for ok, // 0 if not supported. kAsioLatenciesChanged, // the drivers latencies have changed. The engine // will refetch the latencies. kAsioSupportsTimeInfo, // if host returns true here, it will expect the // callback bufferSwitchTimeInfo to be called instead // of bufferSwitch kAsioSupportsTimeCode, // kAsioMMCCommand, // unused - value: number of commands, message points to mmc commands kAsioSupportsInputMonitor, // kAsioSupportsXXX return 1 if host supports this kAsioSupportsInputGain, // unused and undefined kAsioSupportsInputMeter, // unused and undefined kAsioSupportsOutputGain, // unused and undefined kAsioSupportsOutputMeter, // unused and undefined kAsioOverload, // driver detected an overload kAsioNumMessageSelectors }; //--------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------- //- - - - - - - - - - - - - - - - - - - - - - - - - // (De-)Construction //- - - - - - - - - - - - - - - - - - - - - - - - - typedef struct ASIODriverInfo { long asioVersion; // currently, 2 long driverVersion; // driver specific char name[32]; char errorMessage[124]; void *sysRef; // on input: system reference // (Windows: application main window handle, Mac & SGI: 0) } ASIODriverInfo; ASIOError ASIOInit(ASIODriverInfo *info); /* Purpose: Initialize the AudioStreamIO. Parameter: info: pointer to an ASIODriver structure: - asioVersion: - on input, the host version. *** Note *** this is 0 for earlier asio implementations, and the asioMessage callback is implemeted only if asioVersion is 2 or greater. sorry but due to a design fault the driver doesn't have access to the host version in ASIOInit :-( added selector for host (engine) version in the asioMessage callback so we're ok from now on. - on return, asio implementation version. older versions are 1 if you support this version (namely, ASIO_outputReady() ) this should be 2 or higher. also see the note in ASIO_getTimeStamp() ! - version: on return, the driver version (format is driver specific) - name: on return, a null-terminated string containing the driver's name - error message: on return, should contain a user message describing the type of error that occured during ASIOInit(), if any. - sysRef: platform specific Returns: If neither input nor output is present ASE_NotPresent will be returned. ASE_NoMemory, ASE_HWMalfunction are other possible error conditions */ ASIOError ASIOExit(void); /* Purpose: Terminates the AudioStreamIO. Parameter: None. Returns: If neither input nor output is present ASE_NotPresent will be returned. Notes: this implies ASIOStop() and ASIODisposeBuffers(), meaning that no host callbacks must be accessed after ASIOExit(). */ //- - - - - - - - - - - - - - - - - - - - - - - - - // Start/Stop //- - - - - - - - - - - - - - - - - - - - - - - - - ASIOError ASIOStart(void); /* Purpose: Start input and output processing synchronously. This will - reset the sample counter to zero - start the hardware (both input and output) The first call to the hosts' bufferSwitch(index == 0) then tells the host to read from input buffer A (index 0), and start processing to output buffer A while output buffer B (which has been filled by the host prior to calling ASIOStart()) is possibly sounding (see also ASIOGetLatencies()) Parameter: None. Returns: If neither input nor output is present, ASE_NotPresent will be returned. If the hardware fails to start, ASE_HWMalfunction will be returned. Notes: There is no restriction on the time that ASIOStart() takes to perform (that is, it is not considered a realtime trigger). */ ASIOError ASIOStop(void); /* Purpose: Stops input and output processing altogether. Parameter: None. Returns: If neither input nor output is present ASE_NotPresent will be returned. Notes: On return from ASIOStop(), the driver must in no case call the hosts' bufferSwitch() routine. */ //- - - - - - - - - - - - - - - - - - - - - - - - - // Inquiry methods and sample rate //- - - - - - - - - - - - - - - - - - - - - - - - - ASIOError ASIOGetChannels(long *numInputChannels, long *numOutputChannels); /* Purpose: Returns number of individual input/output channels. Parameter: numInputChannels will hold the number of available input channels numOutputChannels will hold the number of available output channels Returns: If no input/output is present ASE_NotPresent will be returned. If only inputs, or only outputs are available, the according other parameter will be zero, and ASE_OK is returned. */ ASIOError ASIOGetLatencies(long *inputLatency, long *outputLatency); /* Purpose: Returns the input and output latencies. This includes device specific delays, like FIFOs etc. Parameter: inputLatency will hold the 'age' of the first sample frame in the input buffer when the hosts reads it in bufferSwitch() (this is theoretical, meaning it does not include the overhead and delay between the actual physical switch, and the time when bufferSitch() enters). This will usually be the size of one block in sample frames, plus device specific latencies. outputLatency will specify the time between the buffer switch, and the time when the next play buffer will start to sound. The next play buffer is defined as the one the host starts processing after (or at) bufferSwitch(), indicated by the index parameter (0 for buffer A, 1 for buffer B). It will usually be either one block, if the host writes directly to a dma buffer, or two or more blocks if the buffer is 'latched' by the driver. As an example, on ASIOStart(), the host will have filled the play buffer at index 1 already; when it gets the callback (with the parameter index == 0), this tells it to read from the input buffer 0, and start to fill the play buffer 0 (assuming that now play buffer 1 is already sounding). In this case, the output latency is one block. If the driver decides to copy buffer 1 at that time, and pass it to the hardware at the next slot (which is most commonly done, but should be avoided), the output latency becomes two blocks instead, resulting in a total i/o latency of at least 3 blocks. As memory access is the main bottleneck in native dsp processing, and to acheive less latency, it is highly recommended to try to avoid copying (this is also why the driver is the owner of the buffers). To summarize, the minimum i/o latency can be acheived if the input buffer is processed by the host into the output buffer which will physically start to sound on the next time slice. Also note that the host expects the bufferSwitch() callback to be accessed for each time slice in order to retain sync, possibly recursively; if it fails to process a block in time, it will suspend its operation for some time in order to recover. Returns: If no input/output is present ASE_NotPresent will be returned. */ ASIOError ASIOGetBufferSize(long *minSize, long *maxSize, long *preferredSize, long *granularity); /* Purpose: Returns min, max, and preferred buffer sizes for input/output Parameter: minSize will hold the minimum buffer size maxSize will hold the maxium possible buffer size preferredSize will hold the preferred buffer size (a size which best fits performance and hardware requirements) granularity will hold the granularity at which buffer sizes may differ. Usually, the buffer size will be a power of 2; in this case, granularity will hold -1 on return, signalling possible buffer sizes starting from minSize, increased in powers of 2 up to maxSize. Returns: If no input/output is present ASE_NotPresent will be returned. Notes: When minimum and maximum buffer size are equal, the preferred buffer size has to be the same value as well; granularity should be 0 in this case. */ ASIOError ASIOCanSampleRate(ASIOSampleRate sampleRate); /* Purpose: Inquires the hardware for the available sample rates. Parameter: sampleRate is the rate in question. Returns: If the inquired sample rate is not supported, ASE_NoClock will be returned. If no input/output is present ASE_NotPresent will be returned. */ ASIOError ASIOGetSampleRate(ASIOSampleRate *currentRate); /* Purpose: Get the current sample Rate. Parameter: currentRate will hold the current sample rate on return. Returns: If sample rate is unknown, sampleRate will be 0 and ASE_NoClock will be returned. If no input/output is present ASE_NotPresent will be returned. Notes: */ ASIOError ASIOSetSampleRate(ASIOSampleRate sampleRate); /* Purpose: Set the hardware to the requested sample Rate. If sampleRate == 0, enable external sync. Parameter: sampleRate: on input, the requested rate Returns: If sampleRate is unknown ASE_NoClock will be returned. If the current clock is external, and sampleRate is != 0, ASE_InvalidMode will be returned If no input/output is present ASE_NotPresent will be returned. Notes: */ typedef struct ASIOClockSource { long index; // as used for ASIOSetClockSource() long associatedChannel; // for instance, S/PDIF or AES/EBU long associatedGroup; // see channel groups (ASIOGetChannelInfo()) ASIOBool isCurrentSource; // ASIOTrue if this is the current clock source char name[32]; // for user selection } ASIOClockSource; ASIOError ASIOGetClockSources(ASIOClockSource *clocks, long *numSources); /* Purpose: Get the available external audio clock sources Parameter: clocks points to an array of ASIOClockSource structures: - index: this is used to identify the clock source when ASIOSetClockSource() is accessed, should be an index counting from zero - associatedInputChannel: the first channel of an associated input group, if any. - associatedGroup: the group index of that channel. groups of channels are defined to seperate for instance analog, S/PDIF, AES/EBU, ADAT connectors etc, when present simultaniously. Note that associated channel is enumerated according to numInputs/numOutputs, means it is independant from a group (see also ASIOGetChannelInfo()) inputs are associated to a clock if the physical connection transfers both data and clock (like S/PDIF, AES/EBU, or ADAT inputs). if there is no input channel associated with the clock source (like Word Clock, or internal oscillator), both associatedChannel and associatedGroup should be set to -1. - isCurrentSource: on exit, ASIOTrue if this is the current clock source, ASIOFalse else - name: a null-terminated string for user selection of the available sources. numSources: on input: the number of allocated array members on output: the number of available clock sources, at least 1 (internal clock generator). Returns: If no input/output is present ASE_NotPresent will be returned. Notes: */ ASIOError ASIOSetClockSource(long index); /* Purpose: Set the audio clock source Parameter: index as obtained from an inquiry to ASIOGetClockSources() Returns: If no input/output is present ASE_NotPresent will be returned. If the clock can not be selected because an input channel which carries the current clock source is active, ASE_InvalidMode *may* be returned (this depends on the properties of the driver and/or hardware). Notes: Should *not* return ASE_NoClock if there is no clock signal present at the selected source; this will be inquired via ASIOGetSampleRate(). It should call the host callback procedure sampleRateHasChanged(), if the switch causes a sample rate change, or if no external clock is present at the selected source. */ ASIOError ASIOGetSamplePosition (ASIOSamples *sPos, ASIOTimeStamp *tStamp); /* Purpose: Inquires the sample position/time stamp pair. Parameter: sPos will hold the sample position on return. The sample position is reset to zero when ASIOStart() gets called. tStamp will hold the system time when the sample position was latched. Returns: If no input/output is present, ASE_NotPresent will be returned. If there is no clock, ASE_SPNotAdvancing will be returned. Notes: in order to be able to synchronise properly, the sample position / time stamp pair must refer to the current block, that is, the engine will call ASIOGetSamplePosition() in its bufferSwitch() callback and expect the time for the current block. thus, when requested in the very first bufferSwitch after ASIO_Start(), the sample position should be zero, and the time stamp should refer to the very time where the stream was started. it also means that the sample position must be block aligned. the driver must ensure proper interpolation if the system time can not be determined for the block position. the driver is responsible for precise time stamps as it usually has most direct access to lower level resources. proper behaviour of ASIO_GetSamplePosition() and ASIO_GetLatencies() are essential for precise media synchronization! */ typedef struct ASIOChannelInfo { long channel; // on input, channel index ASIOBool isInput; // on input ASIOBool isActive; // on exit long channelGroup; // dto ASIOSampleType type; // dto char name[32]; // dto } ASIOChannelInfo; ASIOError ASIOGetChannelInfo(ASIOChannelInfo *info); /* Purpose: retreive information about the nature of a channel Parameter: info: pointer to a ASIOChannelInfo structure with - channel: on input, the channel index of the channel in question. - isInput: on input, ASIOTrue if info for an input channel is requested, else output - channelGroup: on return, the channel group that the channel belongs to. For drivers which support different types of channels, like analog, S/PDIF, AES/EBU, ADAT etc interfaces, there should be a reasonable grouping of these types. Groups are always independant form a channel index, that is, a channel index always counts from 0 to numInputs/numOutputs regardless of the group it may belong to. There will always be at least one group (group 0). Please also note that by default, the host may decide to activate channels 0 and 1; thus, these should belong to the most useful type (analog i/o, if present). - type: on return, contains the sample type of the channel - isActive: on return, ASIOTrue if channel is active as it was installed by ASIOCreateBuffers(), ASIOFalse else - name: describing the type of channel in question. Used to allow for user selection, and enabling of specific channels. examples: "Analog In", "SPDIF Out" etc Returns: If no input/output is present ASE_NotPresent will be returned. Notes: If possible, the string should be organised such that the first characters are most significantly describing the nature of the port, to allow for identification even if the view showing the port name is too small to display more than 8 characters, for instance. */ //- - - - - - - - - - - - - - - - - - - - - - - - - // Buffer preparation //- - - - - - - - - - - - - - - - - - - - - - - - - typedef struct ASIOBufferInfo { ASIOBool isInput; // on input: ASIOTrue: input, else output long channelNum; // on input: channel index void *buffers[2]; // on output: double buffer addresses } ASIOBufferInfo; ASIOError ASIOCreateBuffers(ASIOBufferInfo *bufferInfos, long numChannels, long bufferSize, ASIOCallbacks *callbacks); /* Purpose: Allocates input/output buffers for all input and output channels to be activated. Parameter: bufferInfos is a pointer to an array of ASIOBufferInfo structures: - isInput: on input, ASIOTrue if the buffer is to be allocated for an input, output buffer else - channelNum: on input, the index of the channel in question (counting from 0) - buffers: on exit, 2 pointers to the halves of the channels' double-buffer. the size of the buffer(s) of course depend on both the ASIOSampleType as obtained from ASIOGetChannelInfo(), and bufferSize numChannels is the sum of all input and output channels to be created; thus bufferInfos is a pointer to an array of numChannels ASIOBufferInfo structures. bufferSize selects one of the possible buffer sizes as obtained from ASIOGetBufferSizes(). callbacks is a pointer to an ASIOCallbacks structure. Returns: If not enough memory is available ASE_NoMemory will be returned. If no input/output is present ASE_NotPresent will be returned. If bufferSize is not supported, or one or more of the bufferInfos elements contain invalid settings, ASE_InvalidMode will be returned. Notes: If individual channel selection is not possible but requested, the driver has to handle this. namely, bufferSwitch() will only have filled buffers of enabled outputs. If possible, processing and buss activities overhead should be avoided for channels which were not enabled here. */ ASIOError ASIODisposeBuffers(void); /* Purpose: Releases all buffers for the device. Parameter: None. Returns: If no buffer were ever prepared, ASE_InvalidMode will be returned. If no input/output is present ASE_NotPresent will be returned. Notes: This implies ASIOStop(). */ ASIOError ASIOControlPanel(void); /* Purpose: request the driver to start a control panel component for device specific user settings. This will not be accessed on some platforms (where the component is accessed instead). Parameter: None. Returns: If no panel is available ASE_NotPresent will be returned. Actually, the return code is ignored. Notes: if the user applied settings which require a re-configuration of parts or all of the enigine and/or driver (such as a change of the block size), the asioMessage callback can be used (see ASIO_Callbacks). */ ASIOError ASIOFuture(long selector, void *params); /* Purpose: various Parameter: selector: operation Code as to be defined. zero is reserved for testing purposes. params: depends on the selector; usually pointer to a structure for passing and retreiving any type and amount of parameters. Returns: the return value is also selector dependant. if the selector is unknown, ASE_InvalidParameter should be returned to prevent further calls with this selector. on success, ASE_SUCCESS must be returned (note: ASE_OK is *not* sufficient!) Notes: see selectors defined below. */ enum { kAsioEnableTimeCodeRead = 1, // no arguments kAsioDisableTimeCodeRead, // no arguments kAsioSetInputMonitor, // ASIOInputMonitor* in params kAsioTransport, // ASIOTransportParameters* in params kAsioSetInputGain, // ASIOChannelControls* in params, apply gain kAsioGetInputMeter, // ASIOChannelControls* in params, fill meter kAsioSetOutputGain, // ASIOChannelControls* in params, apply gain kAsioGetOutputMeter, // ASIOChannelControls* in params, fill meter kAsioCanInputMonitor, // no arguments for kAsioCanXXX selectors kAsioCanTimeInfo, kAsioCanTimeCode, kAsioCanTransport, kAsioCanInputGain, kAsioCanInputMeter, kAsioCanOutputGain, kAsioCanOutputMeter, // DSD support // The following extensions are required to allow switching // and control of the DSD subsystem. kAsioSetIoFormat = 0x23111961, /* ASIOIoFormat * in params. */ kAsioGetIoFormat = 0x23111983, /* ASIOIoFormat * in params. */ kAsioCanDoIoFormat = 0x23112004, /* ASIOIoFormat * in params. */ }; typedef struct ASIOInputMonitor { long input; // this input was set to monitor (or off), -1: all long output; // suggested output for monitoring the input (if so) long gain; // suggested gain, ranging 0 - 0x7fffffffL (-inf to +12 dB) ASIOBool state; // ASIOTrue => on, ASIOFalse => off long pan; // suggested pan, 0 => all left, 0x7fffffff => right } ASIOInputMonitor; typedef struct ASIOChannelControls { long channel; // on input, channel index ASIOBool isInput; // on input long gain; // on input, ranges 0 thru 0x7fffffff long meter; // on return, ranges 0 thru 0x7fffffff char future[32]; } ASIOChannelControls; typedef struct ASIOTransportParameters { long command; // see enum below ASIOSamples samplePosition; long track; long trackSwitches[16]; // 512 tracks on/off char future[64]; } ASIOTransportParameters; enum { kTransStart = 1, kTransStop, kTransLocate, // to samplePosition kTransPunchIn, kTransPunchOut, kTransArmOn, // track kTransArmOff, // track kTransMonitorOn, // track kTransMonitorOff, // track kTransArm, // trackSwitches kTransMonitor // trackSwitches }; /* // DSD support // Some notes on how to use ASIOIoFormatType. // // The caller will fill the format with the request types. // If the board can do the request then it will leave the // values unchanged. If the board does not support the // request then it will change that entry to Invalid (-1) // // So to request DSD then // // ASIOIoFormat NeedThis={kASIODSDFormat}; // // if(ASE_SUCCESS != ASIOFuture(kAsioSetIoFormat,&NeedThis) ){ // // If the board did not accept one of the parameters then the // // whole call will fail and the failing parameter will // // have had its value changes to -1. // } // // Note: Switching between the formats need to be done before the "prepared" // state (see ASIO 2 documentation) is entered. */ typedef long int ASIOIoFormatType; enum ASIOIoFormatType_e { kASIOFormatInvalid = -1, kASIOPCMFormat = 0, kASIODSDFormat = 1, }; typedef struct ASIOIoFormat_s { ASIOIoFormatType FormatType; char future[512-sizeof(ASIOIoFormatType)]; } ASIOIoFormat; ASIOError ASIOOutputReady(void); /* Purpose: this tells the driver that the host has completed processing the output buffers. if the data format required by the hardware differs from the supported asio formats, but the hardware buffers are DMA buffers, the driver will have to convert the audio stream data; as the bufferSwitch callback is usually issued at dma block switch time, the driver will have to convert the *previous* host buffer, which increases the output latency by one block. when the host finds out that ASIOOutputReady() returns true, it will issue this call whenever it completed output processing. then the driver can convert the host data directly to the dma buffer to be played next, reducing output latency by one block. another way to look at it is, that the buffer switch is called in order to pass the *input* stream to the host, so that it can process the input into the output, and the output stream is passed to the driver when the host has completed its process. Parameter: None Returns: only if the above mentioned scenario is given, and a reduction of output latency can be acheived by this mechanism, should ASE_OK be returned. otherwise (and usually), ASE_NotPresent should be returned in order to prevent further calls to this function. note that the host may want to determine if it is to use this when the system is not yet fully initialized, so ASE_OK should always be returned if the mechanism makes sense. Notes: please remeber to adjust ASIOGetLatencies() according to whether ASIOOutputReady() was ever called or not, if your driver supports this scenario. also note that the engine may fail to call ASIO_OutputReady() in time in overload cases. as already mentioned, bufferSwitch should be called for every block regardless of whether a block could be processed in time. */ // restore old alignment #if defined(_MSC_VER) && !defined(__MWERKS__) #pragma pack(pop) #elif PRAGMA_ALIGN_SUPPORTED #pragma options align = reset #endif #endif ================================================ FILE: vendor/github.com/thestk/rtaudio/include/asiodrivers.cpp ================================================ #include #include "asiodrivers.h" AsioDrivers* asioDrivers = 0; bool loadAsioDriver(char *name); bool loadAsioDriver(char *name) { if(!asioDrivers) asioDrivers = new AsioDrivers(); if(asioDrivers) return asioDrivers->loadDriver(name); return false; } //------------------------------------------------------------------------------------ #if MAC bool resolveASIO(unsigned long aconnID); AsioDrivers::AsioDrivers() : CodeFragments("ASIO Drivers", 'AsDr', 'Asio') { connID = -1; curIndex = -1; } AsioDrivers::~AsioDrivers() { removeCurrentDriver(); } bool AsioDrivers::getCurrentDriverName(char *name) { if(curIndex >= 0) return getName(curIndex, name); return false; } long AsioDrivers::getDriverNames(char **names, long maxDrivers) { for(long i = 0; i < getNumFragments() && i < maxDrivers; i++) getName(i, names[i]); return getNumFragments() < maxDrivers ? getNumFragments() : maxDrivers; } bool AsioDrivers::loadDriver(char *name) { char dname[64]; unsigned long newID; for(long i = 0; i < getNumFragments(); i++) { if(getName(i, dname) && !strcmp(name, dname)) { if(newInstance(i, &newID)) { if(resolveASIO(newID)) { if(connID != -1) removeInstance(curIndex, connID); curIndex = i; connID = newID; return true; } } break; } } return false; } void AsioDrivers::removeCurrentDriver() { if(connID != -1) removeInstance(curIndex, connID); connID = -1; curIndex = -1; } //------------------------------------------------------------------------------------ #elif WINDOWS #include "iasiodrv.h" extern IASIO* theAsioDriver; AsioDrivers::AsioDrivers() : AsioDriverList() { curIndex = -1; } AsioDrivers::~AsioDrivers() { } bool AsioDrivers::getCurrentDriverName(char *name) { if(curIndex >= 0) return asioGetDriverName(curIndex, name, 32) == 0 ? true : false; name[0] = 0; return false; } long AsioDrivers::getDriverNames(char **names, long maxDrivers) { for(long i = 0; i < asioGetNumDev() && i < maxDrivers; i++) asioGetDriverName(i, names[i], 32); return asioGetNumDev() < maxDrivers ? asioGetNumDev() : maxDrivers; } bool AsioDrivers::loadDriver(char *name) { char dname[64]; char curName[64]; for(long i = 0; i < asioGetNumDev(); i++) { if(!asioGetDriverName(i, dname, 32) && !strcmp(name, dname)) { curName[0] = 0; getCurrentDriverName(curName); // in case we fail... removeCurrentDriver(); if(!asioOpenDriver(i, (void **)&theAsioDriver)) { curIndex = i; return true; } else { theAsioDriver = 0; if(curName[0] && strcmp(dname, curName)) loadDriver(curName); // try restore } break; } } return false; } void AsioDrivers::removeCurrentDriver() { if(curIndex != -1) asioCloseDriver(curIndex); curIndex = -1; } #elif SGI || BEOS #include "asiolist.h" AsioDrivers::AsioDrivers() : AsioDriverList() { curIndex = -1; } AsioDrivers::~AsioDrivers() { } bool AsioDrivers::getCurrentDriverName(char *name) { return false; } long AsioDrivers::getDriverNames(char **names, long maxDrivers) { return 0; } bool AsioDrivers::loadDriver(char *name) { return false; } void AsioDrivers::removeCurrentDriver() { } #else #error implement me #endif ================================================ FILE: vendor/github.com/thestk/rtaudio/include/asiodrivers.h ================================================ #ifndef __AsioDrivers__ #define __AsioDrivers__ #include "ginclude.h" #if MAC #include "CodeFragments.hpp" class AsioDrivers : public CodeFragments #elif WINDOWS #include #include "asiolist.h" class AsioDrivers : public AsioDriverList #elif SGI || BEOS #include "asiolist.h" class AsioDrivers : public AsioDriverList #else #error implement me #endif { public: AsioDrivers(); ~AsioDrivers(); bool getCurrentDriverName(char *name); long getDriverNames(char **names, long maxDrivers); bool loadDriver(char *name); void removeCurrentDriver(); long getCurrentDriverIndex() {return curIndex;} protected: unsigned long connID; long curIndex; }; #endif ================================================ FILE: vendor/github.com/thestk/rtaudio/include/asiodrvr.h ================================================ /* Steinberg Audio Stream I/O API (c) 1996, Steinberg Soft- und Hardware GmbH charlie (May 1996) asiodrvr.h c++ superclass to implement asio functionality. from this, you can derive whatever required */ #ifndef _asiodrvr_ #define _asiodrvr_ // cpu and os system we are running on #include "asiosys.h" // basic "C" interface #include "asio.h" class AsioDriver; extern AsioDriver *getDriver(); // for generic constructor #if WINDOWS #include #include "combase.h" #include "iasiodrv.h" class AsioDriver : public IASIO ,public CUnknown { public: AsioDriver(LPUNKNOWN pUnk, HRESULT *phr); DECLARE_IUNKNOWN // Factory method static CUnknown *CreateInstance(LPUNKNOWN pUnk, HRESULT *phr); // IUnknown virtual HRESULT STDMETHODCALLTYPE NonDelegatingQueryInterface(REFIID riid,void **ppvObject); #else class AsioDriver { public: AsioDriver(); #endif virtual ~AsioDriver(); virtual ASIOBool init(void* sysRef); virtual void getDriverName(char *name); // max 32 bytes incl. terminating zero virtual long getDriverVersion(); virtual void getErrorMessage(char *string); // max 124 bytes incl. virtual ASIOError start(); virtual ASIOError stop(); virtual ASIOError getChannels(long *numInputChannels, long *numOutputChannels); virtual ASIOError getLatencies(long *inputLatency, long *outputLatency); virtual ASIOError getBufferSize(long *minSize, long *maxSize, long *preferredSize, long *granularity); virtual ASIOError canSampleRate(ASIOSampleRate sampleRate); virtual ASIOError getSampleRate(ASIOSampleRate *sampleRate); virtual ASIOError setSampleRate(ASIOSampleRate sampleRate); virtual ASIOError getClockSources(ASIOClockSource *clocks, long *numSources); virtual ASIOError setClockSource(long reference); virtual ASIOError getSamplePosition(ASIOSamples *sPos, ASIOTimeStamp *tStamp); virtual ASIOError getChannelInfo(ASIOChannelInfo *info); virtual ASIOError createBuffers(ASIOBufferInfo *bufferInfos, long numChannels, long bufferSize, ASIOCallbacks *callbacks); virtual ASIOError disposeBuffers(); virtual ASIOError controlPanel(); virtual ASIOError future(long selector, void *opt); virtual ASIOError outputReady(); }; #endif ================================================ FILE: vendor/github.com/thestk/rtaudio/include/asiolist.cpp ================================================ #include #include "iasiodrv.h" #include "asiolist.h" #define ASIODRV_DESC "description" #define INPROC_SERVER "InprocServer32" #define ASIO_PATH "software\\asio" #define COM_CLSID "clsid" // ****************************************************************** // Local Functions // ****************************************************************** static LONG findDrvPath (char *clsidstr,char *dllpath,int dllpathsize) { HKEY hkEnum,hksub,hkpath; char databuf[512]; LONG cr,rc = -1; DWORD datatype,datasize; DWORD index; OFSTRUCT ofs; HFILE hfile; BOOL found = FALSE; #ifdef UNICODE CharLowerBuffA(clsidstr,strlen(clsidstr)); if ((cr = RegOpenKeyA(HKEY_CLASSES_ROOT,COM_CLSID,&hkEnum)) == ERROR_SUCCESS) { index = 0; while (cr == ERROR_SUCCESS && !found) { cr = RegEnumKeyA(hkEnum,index++,databuf,512); if (cr == ERROR_SUCCESS) { CharLowerBuffA(databuf,strlen(databuf)); if (!(strcmp(databuf,clsidstr))) { if ((cr = RegOpenKeyExA(hkEnum,databuf,0,KEY_READ,&hksub)) == ERROR_SUCCESS) { if ((cr = RegOpenKeyExA(hksub,INPROC_SERVER,0,KEY_READ,&hkpath)) == ERROR_SUCCESS) { datatype = REG_SZ; datasize = (DWORD)dllpathsize; cr = RegQueryValueEx(hkpath,0,0,&datatype,(LPBYTE)dllpath,&datasize); if (cr == ERROR_SUCCESS) { memset(&ofs,0,sizeof(OFSTRUCT)); ofs.cBytes = sizeof(OFSTRUCT); hfile = OpenFile(dllpath,&ofs,OF_EXIST); if (hfile) rc = 0; } RegCloseKey(hkpath); } RegCloseKey(hksub); } found = TRUE; // break out } } } RegCloseKey(hkEnum); } #else CharLowerBuff(clsidstr,strlen(clsidstr)); if ((cr = RegOpenKey(HKEY_CLASSES_ROOT,COM_CLSID,&hkEnum)) == ERROR_SUCCESS) { index = 0; while (cr == ERROR_SUCCESS && !found) { cr = RegEnumKey(hkEnum,index++,databuf,512); if (cr == ERROR_SUCCESS) { CharLowerBuff(databuf,strlen(databuf)); if (!(strcmp(databuf,clsidstr))) { if ((cr = RegOpenKeyEx(hkEnum,databuf,0,KEY_READ,&hksub)) == ERROR_SUCCESS) { if ((cr = RegOpenKeyEx(hksub,INPROC_SERVER,0,KEY_READ,&hkpath)) == ERROR_SUCCESS) { datatype = REG_SZ; datasize = (DWORD)dllpathsize; cr = RegQueryValueEx(hkpath,0,0,&datatype,(LPBYTE)dllpath,&datasize); if (cr == ERROR_SUCCESS) { memset(&ofs,0,sizeof(OFSTRUCT)); ofs.cBytes = sizeof(OFSTRUCT); hfile = OpenFile(dllpath,&ofs,OF_EXIST); if (hfile) rc = 0; } RegCloseKey(hkpath); } RegCloseKey(hksub); } found = TRUE; // break out } } } RegCloseKey(hkEnum); } #endif return rc; } static LPASIODRVSTRUCT newDrvStruct (HKEY hkey,char *keyname,int drvID,LPASIODRVSTRUCT lpdrv) { HKEY hksub; char databuf[256]; char dllpath[MAXPATHLEN]; WORD wData[100]; CLSID clsid; DWORD datatype,datasize; LONG cr,rc; if (!lpdrv) { if ((cr = RegOpenKeyExA(hkey,keyname,0,KEY_READ,&hksub)) == ERROR_SUCCESS) { datatype = REG_SZ; datasize = 256; cr = RegQueryValueExA(hksub,COM_CLSID,0,&datatype,(LPBYTE)databuf,&datasize); if (cr == ERROR_SUCCESS) { rc = findDrvPath (databuf,dllpath,MAXPATHLEN); if (rc == 0) { lpdrv = new ASIODRVSTRUCT[1]; if (lpdrv) { memset(lpdrv,0,sizeof(ASIODRVSTRUCT)); lpdrv->drvID = drvID; MultiByteToWideChar(CP_ACP,0,(LPCSTR)databuf,-1,(LPWSTR)wData,100); if ((cr = CLSIDFromString((LPOLESTR)wData,(LPCLSID)&clsid)) == S_OK) { memcpy(&lpdrv->clsid,&clsid,sizeof(CLSID)); } datatype = REG_SZ; datasize = 256; cr = RegQueryValueExA(hksub,ASIODRV_DESC,0,&datatype,(LPBYTE)databuf,&datasize); if (cr == ERROR_SUCCESS) { strcpy(lpdrv->drvname,databuf); } else strcpy(lpdrv->drvname,keyname); } } } RegCloseKey(hksub); } } else lpdrv->next = newDrvStruct(hkey,keyname,drvID+1,lpdrv->next); return lpdrv; } static void deleteDrvStruct (LPASIODRVSTRUCT lpdrv) { IASIO *iasio; if (lpdrv != 0) { deleteDrvStruct(lpdrv->next); if (lpdrv->asiodrv) { iasio = (IASIO *)lpdrv->asiodrv; iasio->Release(); } delete lpdrv; } } static LPASIODRVSTRUCT getDrvStruct (int drvID,LPASIODRVSTRUCT lpdrv) { while (lpdrv) { if (lpdrv->drvID == drvID) return lpdrv; lpdrv = lpdrv->next; } return 0; } // ****************************************************************** // ****************************************************************** // AsioDriverList // ****************************************************************** AsioDriverList::AsioDriverList () { HKEY hkEnum = 0; char keyname[MAXDRVNAMELEN]; LPASIODRVSTRUCT pdl; LONG cr; DWORD index = 0; BOOL fin = FALSE; numdrv = 0; lpdrvlist = 0; #ifdef UNICODE cr = RegOpenKeyA(HKEY_LOCAL_MACHINE,ASIO_PATH,&hkEnum); #else cr = RegOpenKey(HKEY_LOCAL_MACHINE,ASIO_PATH,&hkEnum); #endif while (cr == ERROR_SUCCESS) { #ifdef UNICODE if ((cr = RegEnumKeyA(hkEnum,index++,keyname,MAXDRVNAMELEN))== ERROR_SUCCESS) { #else if ((cr = RegEnumKey(hkEnum,index++,keyname,MAXDRVNAMELEN))== ERROR_SUCCESS) { #endif lpdrvlist = newDrvStruct (hkEnum,keyname,0,lpdrvlist); } else fin = TRUE; } if (hkEnum) RegCloseKey(hkEnum); pdl = lpdrvlist; while (pdl) { numdrv++; pdl = pdl->next; } if (numdrv) CoInitialize(0); // initialize COM } AsioDriverList::~AsioDriverList () { if (numdrv) { deleteDrvStruct(lpdrvlist); CoUninitialize(); } } LONG AsioDriverList::asioGetNumDev (VOID) { return (LONG)numdrv; } LONG AsioDriverList::asioOpenDriver (int drvID,LPVOID *asiodrv) { LPASIODRVSTRUCT lpdrv = 0; long rc; if (!asiodrv) return DRVERR_INVALID_PARAM; if ((lpdrv = getDrvStruct(drvID,lpdrvlist)) != 0) { if (!lpdrv->asiodrv) { rc = CoCreateInstance(lpdrv->clsid,0,CLSCTX_INPROC_SERVER,lpdrv->clsid,asiodrv); if (rc == S_OK) { lpdrv->asiodrv = *asiodrv; return 0; } // else if (rc == REGDB_E_CLASSNOTREG) // strcpy (info->messageText, "Driver not registered in the Registration Database!"); } else rc = DRVERR_DEVICE_ALREADY_OPEN; } else rc = DRVERR_DEVICE_NOT_FOUND; return rc; } LONG AsioDriverList::asioCloseDriver (int drvID) { LPASIODRVSTRUCT lpdrv = 0; IASIO *iasio; if ((lpdrv = getDrvStruct(drvID,lpdrvlist)) != 0) { if (lpdrv->asiodrv) { iasio = (IASIO *)lpdrv->asiodrv; iasio->Release(); lpdrv->asiodrv = 0; } } return 0; } LONG AsioDriverList::asioGetDriverName (int drvID,char *drvname,int drvnamesize) { LPASIODRVSTRUCT lpdrv = 0; if (!drvname) return DRVERR_INVALID_PARAM; if ((lpdrv = getDrvStruct(drvID,lpdrvlist)) != 0) { if (strlen(lpdrv->drvname) < (unsigned int)drvnamesize) { strcpy(drvname,lpdrv->drvname); } else { memcpy(drvname,lpdrv->drvname,drvnamesize-4); drvname[drvnamesize-4] = '.'; drvname[drvnamesize-3] = '.'; drvname[drvnamesize-2] = '.'; drvname[drvnamesize-1] = 0; } return 0; } return DRVERR_DEVICE_NOT_FOUND; } LONG AsioDriverList::asioGetDriverPath (int drvID,char *dllpath,int dllpathsize) { LPASIODRVSTRUCT lpdrv = 0; if (!dllpath) return DRVERR_INVALID_PARAM; if ((lpdrv = getDrvStruct(drvID,lpdrvlist)) != 0) { if (strlen(lpdrv->dllpath) < (unsigned int)dllpathsize) { strcpy(dllpath,lpdrv->dllpath); return 0; } dllpath[0] = 0; return DRVERR_INVALID_PARAM; } return DRVERR_DEVICE_NOT_FOUND; } LONG AsioDriverList::asioGetDriverCLSID (int drvID,CLSID *clsid) { LPASIODRVSTRUCT lpdrv = 0; if (!clsid) return DRVERR_INVALID_PARAM; if ((lpdrv = getDrvStruct(drvID,lpdrvlist)) != 0) { memcpy(clsid,&lpdrv->clsid,sizeof(CLSID)); return 0; } return DRVERR_DEVICE_NOT_FOUND; } ================================================ FILE: vendor/github.com/thestk/rtaudio/include/asiolist.h ================================================ #ifndef __asiolist__ #define __asiolist__ #define DRVERR -5000 #define DRVERR_INVALID_PARAM DRVERR-1 #define DRVERR_DEVICE_ALREADY_OPEN DRVERR-2 #define DRVERR_DEVICE_NOT_FOUND DRVERR-3 #define MAXPATHLEN 512 #define MAXDRVNAMELEN 128 struct asiodrvstruct { int drvID; CLSID clsid; char dllpath[MAXPATHLEN]; char drvname[MAXDRVNAMELEN]; LPVOID asiodrv; struct asiodrvstruct *next; }; typedef struct asiodrvstruct ASIODRVSTRUCT; typedef ASIODRVSTRUCT *LPASIODRVSTRUCT; class AsioDriverList { public: AsioDriverList(); ~AsioDriverList(); LONG asioOpenDriver (int,VOID **); LONG asioCloseDriver (int); // nice to have LONG asioGetNumDev (VOID); LONG asioGetDriverName (int,char *,int); LONG asioGetDriverPath (int,char *,int); LONG asioGetDriverCLSID (int,CLSID *); // or use directly access LPASIODRVSTRUCT lpdrvlist; int numdrv; }; typedef class AsioDriverList *LPASIODRIVERLIST; #endif ================================================ FILE: vendor/github.com/thestk/rtaudio/include/asiosys.h ================================================ #ifndef __asiosys__ #define __asiosys__ #ifdef WIN32 #undef MAC #define PPC 0 #define WINDOWS 1 #define SGI 0 #define SUN 0 #define LINUX 0 #define BEOS 0 #define NATIVE_INT64 0 #define IEEE754_64FLOAT 1 #elif BEOS #define MAC 0 #define PPC 0 #define WINDOWS 0 #define PC 0 #define SGI 0 #define SUN 0 #define LINUX 0 #define NATIVE_INT64 0 #define IEEE754_64FLOAT 1 #ifndef DEBUG #define DEBUG 0 #if DEBUG void DEBUGGERMESSAGE(char *string); #else #define DEBUGGERMESSAGE(a) #endif #endif #elif SGI #define MAC 0 #define PPC 0 #define WINDOWS 0 #define PC 0 #define SUN 0 #define LINUX 0 #define BEOS 0 #define NATIVE_INT64 0 #define IEEE754_64FLOAT 1 #ifndef DEBUG #define DEBUG 0 #if DEBUG void DEBUGGERMESSAGE(char *string); #else #define DEBUGGERMESSAGE(a) #endif #endif #else // MAC #define MAC 1 #define PPC 1 #define WINDOWS 0 #define PC 0 #define SGI 0 #define SUN 0 #define LINUX 0 #define BEOS 0 #define NATIVE_INT64 0 #define IEEE754_64FLOAT 1 #ifndef DEBUG #define DEBUG 0 #if DEBUG void DEBUGGERMESSAGE(char *string); #else #define DEBUGGERMESSAGE(a) #endif #endif #endif #endif ================================================ FILE: vendor/github.com/thestk/rtaudio/include/dsound.h ================================================ /*==========================================================================; * * Copyright (c) Microsoft Corporation. All rights reserved. * * File: dsound.h * Content: DirectSound include file * **************************************************************************/ #define COM_NO_WINDOWS_H #include #include #ifndef DIRECTSOUND_VERSION #define DIRECTSOUND_VERSION 0x0900 /* Version 9.0 */ #endif #ifdef __cplusplus extern "C" { #endif // __cplusplus #ifndef __DSOUND_INCLUDED__ #define __DSOUND_INCLUDED__ /* Type definitions shared with Direct3D */ #ifndef DX_SHARED_DEFINES typedef float D3DVALUE, *LPD3DVALUE; #ifndef D3DCOLOR_DEFINED typedef DWORD D3DCOLOR; #define D3DCOLOR_DEFINED #endif #ifndef LPD3DCOLOR_DEFINED typedef DWORD *LPD3DCOLOR; #define LPD3DCOLOR_DEFINED #endif #ifndef D3DVECTOR_DEFINED typedef struct _D3DVECTOR { float x; float y; float z; } D3DVECTOR; #define D3DVECTOR_DEFINED #endif #ifndef LPD3DVECTOR_DEFINED typedef D3DVECTOR *LPD3DVECTOR; #define LPD3DVECTOR_DEFINED #endif #define DX_SHARED_DEFINES #endif // DX_SHARED_DEFINES #define _FACDS 0x878 /* DirectSound's facility code */ #define MAKE_DSHRESULT(code) MAKE_HRESULT(1, _FACDS, code) // DirectSound Component GUID {47D4D946-62E8-11CF-93BC-444553540000} DEFINE_GUID(CLSID_DirectSound, 0x47d4d946, 0x62e8, 0x11cf, 0x93, 0xbc, 0x44, 0x45, 0x53, 0x54, 0x0, 0x0); // DirectSound 8.0 Component GUID {3901CC3F-84B5-4FA4-BA35-AA8172B8A09B} DEFINE_GUID(CLSID_DirectSound8, 0x3901cc3f, 0x84b5, 0x4fa4, 0xba, 0x35, 0xaa, 0x81, 0x72, 0xb8, 0xa0, 0x9b); // DirectSound Capture Component GUID {B0210780-89CD-11D0-AF08-00A0C925CD16} DEFINE_GUID(CLSID_DirectSoundCapture, 0xb0210780, 0x89cd, 0x11d0, 0xaf, 0x8, 0x0, 0xa0, 0xc9, 0x25, 0xcd, 0x16); // DirectSound 8.0 Capture Component GUID {E4BCAC13-7F99-4908-9A8E-74E3BF24B6E1} DEFINE_GUID(CLSID_DirectSoundCapture8, 0xe4bcac13, 0x7f99, 0x4908, 0x9a, 0x8e, 0x74, 0xe3, 0xbf, 0x24, 0xb6, 0xe1); // DirectSound Full Duplex Component GUID {FEA4300C-7959-4147-B26A-2377B9E7A91D} DEFINE_GUID(CLSID_DirectSoundFullDuplex, 0xfea4300c, 0x7959, 0x4147, 0xb2, 0x6a, 0x23, 0x77, 0xb9, 0xe7, 0xa9, 0x1d); // DirectSound default playback device GUID {DEF00000-9C6D-47ED-AAF1-4DDA8F2B5C03} DEFINE_GUID(DSDEVID_DefaultPlayback, 0xdef00000, 0x9c6d, 0x47ed, 0xaa, 0xf1, 0x4d, 0xda, 0x8f, 0x2b, 0x5c, 0x03); // DirectSound default capture device GUID {DEF00001-9C6D-47ED-AAF1-4DDA8F2B5C03} DEFINE_GUID(DSDEVID_DefaultCapture, 0xdef00001, 0x9c6d, 0x47ed, 0xaa, 0xf1, 0x4d, 0xda, 0x8f, 0x2b, 0x5c, 0x03); // DirectSound default device for voice playback {DEF00002-9C6D-47ED-AAF1-4DDA8F2B5C03} DEFINE_GUID(DSDEVID_DefaultVoicePlayback, 0xdef00002, 0x9c6d, 0x47ed, 0xaa, 0xf1, 0x4d, 0xda, 0x8f, 0x2b, 0x5c, 0x03); // DirectSound default device for voice capture {DEF00003-9C6D-47ED-AAF1-4DDA8F2B5C03} DEFINE_GUID(DSDEVID_DefaultVoiceCapture, 0xdef00003, 0x9c6d, 0x47ed, 0xaa, 0xf1, 0x4d, 0xda, 0x8f, 0x2b, 0x5c, 0x03); // // Forward declarations for interfaces. // 'struct' not 'class' per the way DECLARE_INTERFACE_ is defined // #ifdef __cplusplus struct IDirectSound; struct IDirectSoundBuffer; struct IDirectSound3DListener; struct IDirectSound3DBuffer; struct IDirectSoundCapture; struct IDirectSoundCaptureBuffer; struct IDirectSoundNotify; #endif // __cplusplus // // DirectSound 8.0 interfaces. // #if DIRECTSOUND_VERSION >= 0x0800 #ifdef __cplusplus struct IDirectSound8; struct IDirectSoundBuffer8; struct IDirectSoundCaptureBuffer8; struct IDirectSoundFXGargle; struct IDirectSoundFXChorus; struct IDirectSoundFXFlanger; struct IDirectSoundFXEcho; struct IDirectSoundFXDistortion; struct IDirectSoundFXCompressor; struct IDirectSoundFXParamEq; struct IDirectSoundFXWavesReverb; struct IDirectSoundFXI3DL2Reverb; struct IDirectSoundCaptureFXAec; struct IDirectSoundCaptureFXNoiseSuppress; struct IDirectSoundFullDuplex; #endif // __cplusplus // IDirectSound8, IDirectSoundBuffer8 and IDirectSoundCaptureBuffer8 are the // only DirectSound 7.0 interfaces with changed functionality in version 8.0. // The other level 8 interfaces as equivalent to their level 7 counterparts: #define IDirectSoundCapture8 IDirectSoundCapture #define IDirectSound3DListener8 IDirectSound3DListener #define IDirectSound3DBuffer8 IDirectSound3DBuffer #define IDirectSoundNotify8 IDirectSoundNotify #define IDirectSoundFXGargle8 IDirectSoundFXGargle #define IDirectSoundFXChorus8 IDirectSoundFXChorus #define IDirectSoundFXFlanger8 IDirectSoundFXFlanger #define IDirectSoundFXEcho8 IDirectSoundFXEcho #define IDirectSoundFXDistortion8 IDirectSoundFXDistortion #define IDirectSoundFXCompressor8 IDirectSoundFXCompressor #define IDirectSoundFXParamEq8 IDirectSoundFXParamEq #define IDirectSoundFXWavesReverb8 IDirectSoundFXWavesReverb #define IDirectSoundFXI3DL2Reverb8 IDirectSoundFXI3DL2Reverb #define IDirectSoundCaptureFXAec8 IDirectSoundCaptureFXAec #define IDirectSoundCaptureFXNoiseSuppress8 IDirectSoundCaptureFXNoiseSuppress #define IDirectSoundFullDuplex8 IDirectSoundFullDuplex #endif // DIRECTSOUND_VERSION >= 0x0800 typedef struct IDirectSound *LPDIRECTSOUND; typedef struct IDirectSoundBuffer *LPDIRECTSOUNDBUFFER; typedef struct IDirectSound3DListener *LPDIRECTSOUND3DLISTENER; typedef struct IDirectSound3DBuffer *LPDIRECTSOUND3DBUFFER; typedef struct IDirectSoundCapture *LPDIRECTSOUNDCAPTURE; typedef struct IDirectSoundCaptureBuffer *LPDIRECTSOUNDCAPTUREBUFFER; typedef struct IDirectSoundNotify *LPDIRECTSOUNDNOTIFY; #if DIRECTSOUND_VERSION >= 0x0800 typedef struct IDirectSoundFXGargle *LPDIRECTSOUNDFXGARGLE; typedef struct IDirectSoundFXChorus *LPDIRECTSOUNDFXCHORUS; typedef struct IDirectSoundFXFlanger *LPDIRECTSOUNDFXFLANGER; typedef struct IDirectSoundFXEcho *LPDIRECTSOUNDFXECHO; typedef struct IDirectSoundFXDistortion *LPDIRECTSOUNDFXDISTORTION; typedef struct IDirectSoundFXCompressor *LPDIRECTSOUNDFXCOMPRESSOR; typedef struct IDirectSoundFXParamEq *LPDIRECTSOUNDFXPARAMEQ; typedef struct IDirectSoundFXWavesReverb *LPDIRECTSOUNDFXWAVESREVERB; typedef struct IDirectSoundFXI3DL2Reverb *LPDIRECTSOUNDFXI3DL2REVERB; typedef struct IDirectSoundCaptureFXAec *LPDIRECTSOUNDCAPTUREFXAEC; typedef struct IDirectSoundCaptureFXNoiseSuppress *LPDIRECTSOUNDCAPTUREFXNOISESUPPRESS; typedef struct IDirectSoundFullDuplex *LPDIRECTSOUNDFULLDUPLEX; typedef struct IDirectSound8 *LPDIRECTSOUND8; typedef struct IDirectSoundBuffer8 *LPDIRECTSOUNDBUFFER8; typedef struct IDirectSound3DListener8 *LPDIRECTSOUND3DLISTENER8; typedef struct IDirectSound3DBuffer8 *LPDIRECTSOUND3DBUFFER8; typedef struct IDirectSoundCapture8 *LPDIRECTSOUNDCAPTURE8; typedef struct IDirectSoundCaptureBuffer8 *LPDIRECTSOUNDCAPTUREBUFFER8; typedef struct IDirectSoundNotify8 *LPDIRECTSOUNDNOTIFY8; typedef struct IDirectSoundFXGargle8 *LPDIRECTSOUNDFXGARGLE8; typedef struct IDirectSoundFXChorus8 *LPDIRECTSOUNDFXCHORUS8; typedef struct IDirectSoundFXFlanger8 *LPDIRECTSOUNDFXFLANGER8; typedef struct IDirectSoundFXEcho8 *LPDIRECTSOUNDFXECHO8; typedef struct IDirectSoundFXDistortion8 *LPDIRECTSOUNDFXDISTORTION8; typedef struct IDirectSoundFXCompressor8 *LPDIRECTSOUNDFXCOMPRESSOR8; typedef struct IDirectSoundFXParamEq8 *LPDIRECTSOUNDFXPARAMEQ8; typedef struct IDirectSoundFXWavesReverb8 *LPDIRECTSOUNDFXWAVESREVERB8; typedef struct IDirectSoundFXI3DL2Reverb8 *LPDIRECTSOUNDFXI3DL2REVERB8; typedef struct IDirectSoundCaptureFXAec8 *LPDIRECTSOUNDCAPTUREFXAEC8; typedef struct IDirectSoundCaptureFXNoiseSuppress8 *LPDIRECTSOUNDCAPTUREFXNOISESUPPRESS8; typedef struct IDirectSoundFullDuplex8 *LPDIRECTSOUNDFULLDUPLEX8; #endif // DIRECTSOUND_VERSION >= 0x0800 // // IID definitions for the unchanged DirectSound 8.0 interfaces // #if DIRECTSOUND_VERSION >= 0x0800 #define IID_IDirectSoundCapture8 IID_IDirectSoundCapture #define IID_IDirectSound3DListener8 IID_IDirectSound3DListener #define IID_IDirectSound3DBuffer8 IID_IDirectSound3DBuffer #define IID_IDirectSoundNotify8 IID_IDirectSoundNotify #define IID_IDirectSoundFXGargle8 IID_IDirectSoundFXGargle #define IID_IDirectSoundFXChorus8 IID_IDirectSoundFXChorus #define IID_IDirectSoundFXFlanger8 IID_IDirectSoundFXFlanger #define IID_IDirectSoundFXEcho8 IID_IDirectSoundFXEcho #define IID_IDirectSoundFXDistortion8 IID_IDirectSoundFXDistortion #define IID_IDirectSoundFXCompressor8 IID_IDirectSoundFXCompressor #define IID_IDirectSoundFXParamEq8 IID_IDirectSoundFXParamEq #define IID_IDirectSoundFXWavesReverb8 IID_IDirectSoundFXWavesReverb #define IID_IDirectSoundFXI3DL2Reverb8 IID_IDirectSoundFXI3DL2Reverb #define IID_IDirectSoundCaptureFXAec8 IID_IDirectSoundCaptureFXAec #define IID_IDirectSoundCaptureFXNoiseSuppress8 IID_IDirectSoundCaptureFXNoiseSuppress #define IID_IDirectSoundFullDuplex8 IID_IDirectSoundFullDuplex #endif // DIRECTSOUND_VERSION >= 0x0800 // // Compatibility typedefs // #ifndef _LPCWAVEFORMATEX_DEFINED #define _LPCWAVEFORMATEX_DEFINED typedef const WAVEFORMATEX *LPCWAVEFORMATEX; #endif // _LPCWAVEFORMATEX_DEFINED #ifndef __LPCGUID_DEFINED__ #define __LPCGUID_DEFINED__ typedef const GUID *LPCGUID; #endif // __LPCGUID_DEFINED__ typedef LPDIRECTSOUND *LPLPDIRECTSOUND; typedef LPDIRECTSOUNDBUFFER *LPLPDIRECTSOUNDBUFFER; typedef LPDIRECTSOUND3DLISTENER *LPLPDIRECTSOUND3DLISTENER; typedef LPDIRECTSOUND3DBUFFER *LPLPDIRECTSOUND3DBUFFER; typedef LPDIRECTSOUNDCAPTURE *LPLPDIRECTSOUNDCAPTURE; typedef LPDIRECTSOUNDCAPTUREBUFFER *LPLPDIRECTSOUNDCAPTUREBUFFER; typedef LPDIRECTSOUNDNOTIFY *LPLPDIRECTSOUNDNOTIFY; #if DIRECTSOUND_VERSION >= 0x0800 typedef LPDIRECTSOUND8 *LPLPDIRECTSOUND8; typedef LPDIRECTSOUNDBUFFER8 *LPLPDIRECTSOUNDBUFFER8; typedef LPDIRECTSOUNDCAPTURE8 *LPLPDIRECTSOUNDCAPTURE8; typedef LPDIRECTSOUNDCAPTUREBUFFER8 *LPLPDIRECTSOUNDCAPTUREBUFFER8; #endif // DIRECTSOUND_VERSION >= 0x0800 // // Structures // typedef struct _DSCAPS { DWORD dwSize; DWORD dwFlags; DWORD dwMinSecondarySampleRate; DWORD dwMaxSecondarySampleRate; DWORD dwPrimaryBuffers; DWORD dwMaxHwMixingAllBuffers; DWORD dwMaxHwMixingStaticBuffers; DWORD dwMaxHwMixingStreamingBuffers; DWORD dwFreeHwMixingAllBuffers; DWORD dwFreeHwMixingStaticBuffers; DWORD dwFreeHwMixingStreamingBuffers; DWORD dwMaxHw3DAllBuffers; DWORD dwMaxHw3DStaticBuffers; DWORD dwMaxHw3DStreamingBuffers; DWORD dwFreeHw3DAllBuffers; DWORD dwFreeHw3DStaticBuffers; DWORD dwFreeHw3DStreamingBuffers; DWORD dwTotalHwMemBytes; DWORD dwFreeHwMemBytes; DWORD dwMaxContigFreeHwMemBytes; DWORD dwUnlockTransferRateHwBuffers; DWORD dwPlayCpuOverheadSwBuffers; DWORD dwReserved1; DWORD dwReserved2; } DSCAPS, *LPDSCAPS; typedef const DSCAPS *LPCDSCAPS; typedef struct _DSBCAPS { DWORD dwSize; DWORD dwFlags; DWORD dwBufferBytes; DWORD dwUnlockTransferRate; DWORD dwPlayCpuOverhead; } DSBCAPS, *LPDSBCAPS; typedef const DSBCAPS *LPCDSBCAPS; #if DIRECTSOUND_VERSION >= 0x0800 typedef struct _DSEFFECTDESC { DWORD dwSize; DWORD dwFlags; GUID guidDSFXClass; DWORD_PTR dwReserved1; DWORD_PTR dwReserved2; } DSEFFECTDESC, *LPDSEFFECTDESC; typedef const DSEFFECTDESC *LPCDSEFFECTDESC; #define DSFX_LOCHARDWARE 0x00000001 #define DSFX_LOCSOFTWARE 0x00000002 enum { DSFXR_PRESENT, // 0 DSFXR_LOCHARDWARE, // 1 DSFXR_LOCSOFTWARE, // 2 DSFXR_UNALLOCATED, // 3 DSFXR_FAILED, // 4 DSFXR_UNKNOWN, // 5 DSFXR_SENDLOOP // 6 }; typedef struct _DSCEFFECTDESC { DWORD dwSize; DWORD dwFlags; GUID guidDSCFXClass; GUID guidDSCFXInstance; DWORD dwReserved1; DWORD dwReserved2; } DSCEFFECTDESC, *LPDSCEFFECTDESC; typedef const DSCEFFECTDESC *LPCDSCEFFECTDESC; #define DSCFX_LOCHARDWARE 0x00000001 #define DSCFX_LOCSOFTWARE 0x00000002 #define DSCFXR_LOCHARDWARE 0x00000010 #define DSCFXR_LOCSOFTWARE 0x00000020 #endif // DIRECTSOUND_VERSION >= 0x0800 typedef struct _DSBUFFERDESC { DWORD dwSize; DWORD dwFlags; DWORD dwBufferBytes; DWORD dwReserved; LPWAVEFORMATEX lpwfxFormat; #if DIRECTSOUND_VERSION >= 0x0700 GUID guid3DAlgorithm; #endif } DSBUFFERDESC, *LPDSBUFFERDESC; typedef const DSBUFFERDESC *LPCDSBUFFERDESC; // Older version of this structure: typedef struct _DSBUFFERDESC1 { DWORD dwSize; DWORD dwFlags; DWORD dwBufferBytes; DWORD dwReserved; LPWAVEFORMATEX lpwfxFormat; } DSBUFFERDESC1, *LPDSBUFFERDESC1; typedef const DSBUFFERDESC1 *LPCDSBUFFERDESC1; typedef struct _DS3DBUFFER { DWORD dwSize; D3DVECTOR vPosition; D3DVECTOR vVelocity; DWORD dwInsideConeAngle; DWORD dwOutsideConeAngle; D3DVECTOR vConeOrientation; LONG lConeOutsideVolume; D3DVALUE flMinDistance; D3DVALUE flMaxDistance; DWORD dwMode; } DS3DBUFFER, *LPDS3DBUFFER; typedef const DS3DBUFFER *LPCDS3DBUFFER; typedef struct _DS3DLISTENER { DWORD dwSize; D3DVECTOR vPosition; D3DVECTOR vVelocity; D3DVECTOR vOrientFront; D3DVECTOR vOrientTop; D3DVALUE flDistanceFactor; D3DVALUE flRolloffFactor; D3DVALUE flDopplerFactor; } DS3DLISTENER, *LPDS3DLISTENER; typedef const DS3DLISTENER *LPCDS3DLISTENER; typedef struct _DSCCAPS { DWORD dwSize; DWORD dwFlags; DWORD dwFormats; DWORD dwChannels; } DSCCAPS, *LPDSCCAPS; typedef const DSCCAPS *LPCDSCCAPS; typedef struct _DSCBUFFERDESC1 { DWORD dwSize; DWORD dwFlags; DWORD dwBufferBytes; DWORD dwReserved; LPWAVEFORMATEX lpwfxFormat; } DSCBUFFERDESC1, *LPDSCBUFFERDESC1; typedef struct _DSCBUFFERDESC { DWORD dwSize; DWORD dwFlags; DWORD dwBufferBytes; DWORD dwReserved; LPWAVEFORMATEX lpwfxFormat; #if DIRECTSOUND_VERSION >= 0x0800 DWORD dwFXCount; LPDSCEFFECTDESC lpDSCFXDesc; #endif } DSCBUFFERDESC, *LPDSCBUFFERDESC; typedef const DSCBUFFERDESC *LPCDSCBUFFERDESC; typedef struct _DSCBCAPS { DWORD dwSize; DWORD dwFlags; DWORD dwBufferBytes; DWORD dwReserved; } DSCBCAPS, *LPDSCBCAPS; typedef const DSCBCAPS *LPCDSCBCAPS; typedef struct _DSBPOSITIONNOTIFY { DWORD dwOffset; HANDLE hEventNotify; } DSBPOSITIONNOTIFY, *LPDSBPOSITIONNOTIFY; typedef const DSBPOSITIONNOTIFY *LPCDSBPOSITIONNOTIFY; // // DirectSound API // typedef BOOL (CALLBACK *LPDSENUMCALLBACKA)(LPGUID, LPCSTR, LPCSTR, LPVOID); typedef BOOL (CALLBACK *LPDSENUMCALLBACKW)(LPGUID, LPCWSTR, LPCWSTR, LPVOID); extern HRESULT WINAPI DirectSoundCreate(LPCGUID pcGuidDevice, LPDIRECTSOUND *ppDS, LPUNKNOWN pUnkOuter); extern HRESULT WINAPI DirectSoundEnumerateA(LPDSENUMCALLBACKA pDSEnumCallback, LPVOID pContext); extern HRESULT WINAPI DirectSoundEnumerateW(LPDSENUMCALLBACKW pDSEnumCallback, LPVOID pContext); extern HRESULT WINAPI DirectSoundCaptureCreate(LPCGUID pcGuidDevice, LPDIRECTSOUNDCAPTURE *ppDSC, LPUNKNOWN pUnkOuter); extern HRESULT WINAPI DirectSoundCaptureEnumerateA(LPDSENUMCALLBACKA pDSEnumCallback, LPVOID pContext); extern HRESULT WINAPI DirectSoundCaptureEnumerateW(LPDSENUMCALLBACKW pDSEnumCallback, LPVOID pContext); #if DIRECTSOUND_VERSION >= 0x0800 extern HRESULT WINAPI DirectSoundCreate8(LPCGUID pcGuidDevice, LPDIRECTSOUND8 *ppDS8, LPUNKNOWN pUnkOuter); extern HRESULT WINAPI DirectSoundCaptureCreate8(LPCGUID pcGuidDevice, LPDIRECTSOUNDCAPTURE8 *ppDSC8, LPUNKNOWN pUnkOuter); extern HRESULT WINAPI DirectSoundFullDuplexCreate(LPCGUID pcGuidCaptureDevice, LPCGUID pcGuidRenderDevice, LPCDSCBUFFERDESC pcDSCBufferDesc, LPCDSBUFFERDESC pcDSBufferDesc, HWND hWnd, DWORD dwLevel, LPDIRECTSOUNDFULLDUPLEX* ppDSFD, LPDIRECTSOUNDCAPTUREBUFFER8 *ppDSCBuffer8, LPDIRECTSOUNDBUFFER8 *ppDSBuffer8, LPUNKNOWN pUnkOuter); #define DirectSoundFullDuplexCreate8 DirectSoundFullDuplexCreate extern HRESULT WINAPI GetDeviceID(LPCGUID pGuidSrc, LPGUID pGuidDest); #endif // DIRECTSOUND_VERSION >= 0x0800 #ifdef UNICODE #define LPDSENUMCALLBACK LPDSENUMCALLBACKW #define DirectSoundEnumerate DirectSoundEnumerateW #define DirectSoundCaptureEnumerate DirectSoundCaptureEnumerateW #else // UNICODE #define LPDSENUMCALLBACK LPDSENUMCALLBACKA #define DirectSoundEnumerate DirectSoundEnumerateA #define DirectSoundCaptureEnumerate DirectSoundCaptureEnumerateA #endif // UNICODE // // IUnknown // #if !defined(__cplusplus) || defined(CINTERFACE) #ifndef IUnknown_QueryInterface #define IUnknown_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) #endif // IUnknown_QueryInterface #ifndef IUnknown_AddRef #define IUnknown_AddRef(p) (p)->lpVtbl->AddRef(p) #endif // IUnknown_AddRef #ifndef IUnknown_Release #define IUnknown_Release(p) (p)->lpVtbl->Release(p) #endif // IUnknown_Release #else // !defined(__cplusplus) || defined(CINTERFACE) #ifndef IUnknown_QueryInterface #define IUnknown_QueryInterface(p,a,b) (p)->QueryInterface(a,b) #endif // IUnknown_QueryInterface #ifndef IUnknown_AddRef #define IUnknown_AddRef(p) (p)->AddRef() #endif // IUnknown_AddRef #ifndef IUnknown_Release #define IUnknown_Release(p) (p)->Release() #endif // IUnknown_Release #endif // !defined(__cplusplus) || defined(CINTERFACE) #ifndef __IReferenceClock_INTERFACE_DEFINED__ #define __IReferenceClock_INTERFACE_DEFINED__ typedef LONGLONG REFERENCE_TIME; typedef REFERENCE_TIME *LPREFERENCE_TIME; DEFINE_GUID(IID_IReferenceClock, 0x56a86897, 0x0ad4, 0x11ce, 0xb0, 0x3a, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70); #undef INTERFACE #define INTERFACE IReferenceClock DECLARE_INTERFACE_(IReferenceClock, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IReferenceClock methods STDMETHOD(GetTime) (THIS_ REFERENCE_TIME *pTime) PURE; STDMETHOD(AdviseTime) (THIS_ REFERENCE_TIME rtBaseTime, REFERENCE_TIME rtStreamTime, HANDLE hEvent, LPDWORD pdwAdviseCookie) PURE; STDMETHOD(AdvisePeriodic) (THIS_ REFERENCE_TIME rtStartTime, REFERENCE_TIME rtPeriodTime, HANDLE hSemaphore, LPDWORD pdwAdviseCookie) PURE; STDMETHOD(Unadvise) (THIS_ DWORD dwAdviseCookie) PURE; }; #endif // __IReferenceClock_INTERFACE_DEFINED__ #ifndef IReferenceClock_QueryInterface #define IReferenceClock_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IReferenceClock_AddRef(p) IUnknown_AddRef(p) #define IReferenceClock_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IReferenceClock_GetTime(p,a) (p)->lpVtbl->GetTime(p,a) #define IReferenceClock_AdviseTime(p,a,b,c,d) (p)->lpVtbl->AdviseTime(p,a,b,c,d) #define IReferenceClock_AdvisePeriodic(p,a,b,c,d) (p)->lpVtbl->AdvisePeriodic(p,a,b,c,d) #define IReferenceClock_Unadvise(p,a) (p)->lpVtbl->Unadvise(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IReferenceClock_GetTime(p,a) (p)->GetTime(a) #define IReferenceClock_AdviseTime(p,a,b,c,d) (p)->AdviseTime(a,b,c,d) #define IReferenceClock_AdvisePeriodic(p,a,b,c,d) (p)->AdvisePeriodic(a,b,c,d) #define IReferenceClock_Unadvise(p,a) (p)->Unadvise(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) #endif // IReferenceClock_QueryInterface // // IDirectSound // DEFINE_GUID(IID_IDirectSound, 0x279AFA83, 0x4981, 0x11CE, 0xA5, 0x21, 0x00, 0x20, 0xAF, 0x0B, 0xE5, 0x60); #undef INTERFACE #define INTERFACE IDirectSound DECLARE_INTERFACE_(IDirectSound, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSound methods STDMETHOD(CreateSoundBuffer) (THIS_ LPCDSBUFFERDESC pcDSBufferDesc, LPDIRECTSOUNDBUFFER *ppDSBuffer, LPUNKNOWN pUnkOuter) PURE; STDMETHOD(GetCaps) (THIS_ LPDSCAPS pDSCaps) PURE; STDMETHOD(DuplicateSoundBuffer) (THIS_ LPDIRECTSOUNDBUFFER pDSBufferOriginal, LPDIRECTSOUNDBUFFER *ppDSBufferDuplicate) PURE; STDMETHOD(SetCooperativeLevel) (THIS_ HWND hwnd, DWORD dwLevel) PURE; STDMETHOD(Compact) (THIS) PURE; STDMETHOD(GetSpeakerConfig) (THIS_ LPDWORD pdwSpeakerConfig) PURE; STDMETHOD(SetSpeakerConfig) (THIS_ DWORD dwSpeakerConfig) PURE; STDMETHOD(Initialize) (THIS_ LPCGUID pcGuidDevice) PURE; }; #define IDirectSound_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSound_AddRef(p) IUnknown_AddRef(p) #define IDirectSound_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSound_CreateSoundBuffer(p,a,b,c) (p)->lpVtbl->CreateSoundBuffer(p,a,b,c) #define IDirectSound_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a) #define IDirectSound_DuplicateSoundBuffer(p,a,b) (p)->lpVtbl->DuplicateSoundBuffer(p,a,b) #define IDirectSound_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b) #define IDirectSound_Compact(p) (p)->lpVtbl->Compact(p) #define IDirectSound_GetSpeakerConfig(p,a) (p)->lpVtbl->GetSpeakerConfig(p,a) #define IDirectSound_SetSpeakerConfig(p,b) (p)->lpVtbl->SetSpeakerConfig(p,b) #define IDirectSound_Initialize(p,a) (p)->lpVtbl->Initialize(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSound_CreateSoundBuffer(p,a,b,c) (p)->CreateSoundBuffer(a,b,c) #define IDirectSound_GetCaps(p,a) (p)->GetCaps(a) #define IDirectSound_DuplicateSoundBuffer(p,a,b) (p)->DuplicateSoundBuffer(a,b) #define IDirectSound_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b) #define IDirectSound_Compact(p) (p)->Compact() #define IDirectSound_GetSpeakerConfig(p,a) (p)->GetSpeakerConfig(a) #define IDirectSound_SetSpeakerConfig(p,b) (p)->SetSpeakerConfig(b) #define IDirectSound_Initialize(p,a) (p)->Initialize(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) #if DIRECTSOUND_VERSION >= 0x0800 // // IDirectSound8 // DEFINE_GUID(IID_IDirectSound8, 0xC50A7E93, 0xF395, 0x4834, 0x9E, 0xF6, 0x7F, 0xA9, 0x9D, 0xE5, 0x09, 0x66); #undef INTERFACE #define INTERFACE IDirectSound8 DECLARE_INTERFACE_(IDirectSound8, IDirectSound) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSound methods STDMETHOD(CreateSoundBuffer) (THIS_ LPCDSBUFFERDESC pcDSBufferDesc, LPDIRECTSOUNDBUFFER *ppDSBuffer, LPUNKNOWN pUnkOuter) PURE; STDMETHOD(GetCaps) (THIS_ LPDSCAPS pDSCaps) PURE; STDMETHOD(DuplicateSoundBuffer) (THIS_ LPDIRECTSOUNDBUFFER pDSBufferOriginal, LPDIRECTSOUNDBUFFER *ppDSBufferDuplicate) PURE; STDMETHOD(SetCooperativeLevel) (THIS_ HWND hwnd, DWORD dwLevel) PURE; STDMETHOD(Compact) (THIS) PURE; STDMETHOD(GetSpeakerConfig) (THIS_ LPDWORD pdwSpeakerConfig) PURE; STDMETHOD(SetSpeakerConfig) (THIS_ DWORD dwSpeakerConfig) PURE; STDMETHOD(Initialize) (THIS_ LPCGUID pcGuidDevice) PURE; // IDirectSound8 methods STDMETHOD(VerifyCertification) (THIS_ LPDWORD pdwCertified) PURE; }; #define IDirectSound8_QueryInterface(p,a,b) IDirectSound_QueryInterface(p,a,b) #define IDirectSound8_AddRef(p) IDirectSound_AddRef(p) #define IDirectSound8_Release(p) IDirectSound_Release(p) #define IDirectSound8_CreateSoundBuffer(p,a,b,c) IDirectSound_CreateSoundBuffer(p,a,b,c) #define IDirectSound8_GetCaps(p,a) IDirectSound_GetCaps(p,a) #define IDirectSound8_DuplicateSoundBuffer(p,a,b) IDirectSound_DuplicateSoundBuffer(p,a,b) #define IDirectSound8_SetCooperativeLevel(p,a,b) IDirectSound_SetCooperativeLevel(p,a,b) #define IDirectSound8_Compact(p) IDirectSound_Compact(p) #define IDirectSound8_GetSpeakerConfig(p,a) IDirectSound_GetSpeakerConfig(p,a) #define IDirectSound8_SetSpeakerConfig(p,a) IDirectSound_SetSpeakerConfig(p,a) #define IDirectSound8_Initialize(p,a) IDirectSound_Initialize(p,a) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSound8_VerifyCertification(p,a) (p)->lpVtbl->VerifyCertification(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSound8_VerifyCertification(p,a) (p)->VerifyCertification(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) #endif // DIRECTSOUND_VERSION >= 0x0800 // // IDirectSoundBuffer // DEFINE_GUID(IID_IDirectSoundBuffer, 0x279AFA85, 0x4981, 0x11CE, 0xA5, 0x21, 0x00, 0x20, 0xAF, 0x0B, 0xE5, 0x60); #undef INTERFACE #define INTERFACE IDirectSoundBuffer DECLARE_INTERFACE_(IDirectSoundBuffer, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundBuffer methods STDMETHOD(GetCaps) (THIS_ LPDSBCAPS pDSBufferCaps) PURE; STDMETHOD(GetCurrentPosition) (THIS_ LPDWORD pdwCurrentPlayCursor, LPDWORD pdwCurrentWriteCursor) PURE; STDMETHOD(GetFormat) (THIS_ LPWAVEFORMATEX pwfxFormat, DWORD dwSizeAllocated, LPDWORD pdwSizeWritten) PURE; STDMETHOD(GetVolume) (THIS_ LPLONG plVolume) PURE; STDMETHOD(GetPan) (THIS_ LPLONG plPan) PURE; STDMETHOD(GetFrequency) (THIS_ LPDWORD pdwFrequency) PURE; STDMETHOD(GetStatus) (THIS_ LPDWORD pdwStatus) PURE; STDMETHOD(Initialize) (THIS_ LPDIRECTSOUND pDirectSound, LPCDSBUFFERDESC pcDSBufferDesc) PURE; STDMETHOD(Lock) (THIS_ DWORD dwOffset, DWORD dwBytes, LPVOID *ppvAudioPtr1, LPDWORD pdwAudioBytes1, LPVOID *ppvAudioPtr2, LPDWORD pdwAudioBytes2, DWORD dwFlags) PURE; STDMETHOD(Play) (THIS_ DWORD dwReserved1, DWORD dwPriority, DWORD dwFlags) PURE; STDMETHOD(SetCurrentPosition) (THIS_ DWORD dwNewPosition) PURE; STDMETHOD(SetFormat) (THIS_ LPCWAVEFORMATEX pcfxFormat) PURE; STDMETHOD(SetVolume) (THIS_ LONG lVolume) PURE; STDMETHOD(SetPan) (THIS_ LONG lPan) PURE; STDMETHOD(SetFrequency) (THIS_ DWORD dwFrequency) PURE; STDMETHOD(Stop) (THIS) PURE; STDMETHOD(Unlock) (THIS_ LPVOID pvAudioPtr1, DWORD dwAudioBytes1, LPVOID pvAudioPtr2, DWORD dwAudioBytes2) PURE; STDMETHOD(Restore) (THIS) PURE; }; #define IDirectSoundBuffer_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundBuffer_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundBuffer_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundBuffer_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a) #define IDirectSoundBuffer_GetCurrentPosition(p,a,b) (p)->lpVtbl->GetCurrentPosition(p,a,b) #define IDirectSoundBuffer_GetFormat(p,a,b,c) (p)->lpVtbl->GetFormat(p,a,b,c) #define IDirectSoundBuffer_GetVolume(p,a) (p)->lpVtbl->GetVolume(p,a) #define IDirectSoundBuffer_GetPan(p,a) (p)->lpVtbl->GetPan(p,a) #define IDirectSoundBuffer_GetFrequency(p,a) (p)->lpVtbl->GetFrequency(p,a) #define IDirectSoundBuffer_GetStatus(p,a) (p)->lpVtbl->GetStatus(p,a) #define IDirectSoundBuffer_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b) #define IDirectSoundBuffer_Lock(p,a,b,c,d,e,f,g) (p)->lpVtbl->Lock(p,a,b,c,d,e,f,g) #define IDirectSoundBuffer_Play(p,a,b,c) (p)->lpVtbl->Play(p,a,b,c) #define IDirectSoundBuffer_SetCurrentPosition(p,a) (p)->lpVtbl->SetCurrentPosition(p,a) #define IDirectSoundBuffer_SetFormat(p,a) (p)->lpVtbl->SetFormat(p,a) #define IDirectSoundBuffer_SetVolume(p,a) (p)->lpVtbl->SetVolume(p,a) #define IDirectSoundBuffer_SetPan(p,a) (p)->lpVtbl->SetPan(p,a) #define IDirectSoundBuffer_SetFrequency(p,a) (p)->lpVtbl->SetFrequency(p,a) #define IDirectSoundBuffer_Stop(p) (p)->lpVtbl->Stop(p) #define IDirectSoundBuffer_Unlock(p,a,b,c,d) (p)->lpVtbl->Unlock(p,a,b,c,d) #define IDirectSoundBuffer_Restore(p) (p)->lpVtbl->Restore(p) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundBuffer_GetCaps(p,a) (p)->GetCaps(a) #define IDirectSoundBuffer_GetCurrentPosition(p,a,b) (p)->GetCurrentPosition(a,b) #define IDirectSoundBuffer_GetFormat(p,a,b,c) (p)->GetFormat(a,b,c) #define IDirectSoundBuffer_GetVolume(p,a) (p)->GetVolume(a) #define IDirectSoundBuffer_GetPan(p,a) (p)->GetPan(a) #define IDirectSoundBuffer_GetFrequency(p,a) (p)->GetFrequency(a) #define IDirectSoundBuffer_GetStatus(p,a) (p)->GetStatus(a) #define IDirectSoundBuffer_Initialize(p,a,b) (p)->Initialize(a,b) #define IDirectSoundBuffer_Lock(p,a,b,c,d,e,f,g) (p)->Lock(a,b,c,d,e,f,g) #define IDirectSoundBuffer_Play(p,a,b,c) (p)->Play(a,b,c) #define IDirectSoundBuffer_SetCurrentPosition(p,a) (p)->SetCurrentPosition(a) #define IDirectSoundBuffer_SetFormat(p,a) (p)->SetFormat(a) #define IDirectSoundBuffer_SetVolume(p,a) (p)->SetVolume(a) #define IDirectSoundBuffer_SetPan(p,a) (p)->SetPan(a) #define IDirectSoundBuffer_SetFrequency(p,a) (p)->SetFrequency(a) #define IDirectSoundBuffer_Stop(p) (p)->Stop() #define IDirectSoundBuffer_Unlock(p,a,b,c,d) (p)->Unlock(a,b,c,d) #define IDirectSoundBuffer_Restore(p) (p)->Restore() #endif // !defined(__cplusplus) || defined(CINTERFACE) #if DIRECTSOUND_VERSION >= 0x0800 // // IDirectSoundBuffer8 // DEFINE_GUID(IID_IDirectSoundBuffer8, 0x6825a449, 0x7524, 0x4d82, 0x92, 0x0f, 0x50, 0xe3, 0x6a, 0xb3, 0xab, 0x1e); #undef INTERFACE #define INTERFACE IDirectSoundBuffer8 DECLARE_INTERFACE_(IDirectSoundBuffer8, IDirectSoundBuffer) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundBuffer methods STDMETHOD(GetCaps) (THIS_ LPDSBCAPS pDSBufferCaps) PURE; STDMETHOD(GetCurrentPosition) (THIS_ LPDWORD pdwCurrentPlayCursor, LPDWORD pdwCurrentWriteCursor) PURE; STDMETHOD(GetFormat) (THIS_ LPWAVEFORMATEX pwfxFormat, DWORD dwSizeAllocated, LPDWORD pdwSizeWritten) PURE; STDMETHOD(GetVolume) (THIS_ LPLONG plVolume) PURE; STDMETHOD(GetPan) (THIS_ LPLONG plPan) PURE; STDMETHOD(GetFrequency) (THIS_ LPDWORD pdwFrequency) PURE; STDMETHOD(GetStatus) (THIS_ LPDWORD pdwStatus) PURE; STDMETHOD(Initialize) (THIS_ LPDIRECTSOUND pDirectSound, LPCDSBUFFERDESC pcDSBufferDesc) PURE; STDMETHOD(Lock) (THIS_ DWORD dwOffset, DWORD dwBytes, LPVOID *ppvAudioPtr1, LPDWORD pdwAudioBytes1, LPVOID *ppvAudioPtr2, LPDWORD pdwAudioBytes2, DWORD dwFlags) PURE; STDMETHOD(Play) (THIS_ DWORD dwReserved1, DWORD dwPriority, DWORD dwFlags) PURE; STDMETHOD(SetCurrentPosition) (THIS_ DWORD dwNewPosition) PURE; STDMETHOD(SetFormat) (THIS_ LPCWAVEFORMATEX pcfxFormat) PURE; STDMETHOD(SetVolume) (THIS_ LONG lVolume) PURE; STDMETHOD(SetPan) (THIS_ LONG lPan) PURE; STDMETHOD(SetFrequency) (THIS_ DWORD dwFrequency) PURE; STDMETHOD(Stop) (THIS) PURE; STDMETHOD(Unlock) (THIS_ LPVOID pvAudioPtr1, DWORD dwAudioBytes1, LPVOID pvAudioPtr2, DWORD dwAudioBytes2) PURE; STDMETHOD(Restore) (THIS) PURE; // IDirectSoundBuffer8 methods STDMETHOD(SetFX) (THIS_ DWORD dwEffectsCount, LPDSEFFECTDESC pDSFXDesc, LPDWORD pdwResultCodes) PURE; STDMETHOD(AcquireResources) (THIS_ DWORD dwFlags, DWORD dwEffectsCount, LPDWORD pdwResultCodes) PURE; STDMETHOD(GetObjectInPath) (THIS_ REFGUID rguidObject, DWORD dwIndex, REFGUID rguidInterface, LPVOID *ppObject) PURE; }; // Special GUID meaning "select all objects" for use in GetObjectInPath() DEFINE_GUID(GUID_All_Objects, 0xaa114de5, 0xc262, 0x4169, 0xa1, 0xc8, 0x23, 0xd6, 0x98, 0xcc, 0x73, 0xb5); #define IDirectSoundBuffer8_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundBuffer8_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundBuffer8_Release(p) IUnknown_Release(p) #define IDirectSoundBuffer8_GetCaps(p,a) IDirectSoundBuffer_GetCaps(p,a) #define IDirectSoundBuffer8_GetCurrentPosition(p,a,b) IDirectSoundBuffer_GetCurrentPosition(p,a,b) #define IDirectSoundBuffer8_GetFormat(p,a,b,c) IDirectSoundBuffer_GetFormat(p,a,b,c) #define IDirectSoundBuffer8_GetVolume(p,a) IDirectSoundBuffer_GetVolume(p,a) #define IDirectSoundBuffer8_GetPan(p,a) IDirectSoundBuffer_GetPan(p,a) #define IDirectSoundBuffer8_GetFrequency(p,a) IDirectSoundBuffer_GetFrequency(p,a) #define IDirectSoundBuffer8_GetStatus(p,a) IDirectSoundBuffer_GetStatus(p,a) #define IDirectSoundBuffer8_Initialize(p,a,b) IDirectSoundBuffer_Initialize(p,a,b) #define IDirectSoundBuffer8_Lock(p,a,b,c,d,e,f,g) IDirectSoundBuffer_Lock(p,a,b,c,d,e,f,g) #define IDirectSoundBuffer8_Play(p,a,b,c) IDirectSoundBuffer_Play(p,a,b,c) #define IDirectSoundBuffer8_SetCurrentPosition(p,a) IDirectSoundBuffer_SetCurrentPosition(p,a) #define IDirectSoundBuffer8_SetFormat(p,a) IDirectSoundBuffer_SetFormat(p,a) #define IDirectSoundBuffer8_SetVolume(p,a) IDirectSoundBuffer_SetVolume(p,a) #define IDirectSoundBuffer8_SetPan(p,a) IDirectSoundBuffer_SetPan(p,a) #define IDirectSoundBuffer8_SetFrequency(p,a) IDirectSoundBuffer_SetFrequency(p,a) #define IDirectSoundBuffer8_Stop(p) IDirectSoundBuffer_Stop(p) #define IDirectSoundBuffer8_Unlock(p,a,b,c,d) IDirectSoundBuffer_Unlock(p,a,b,c,d) #define IDirectSoundBuffer8_Restore(p) IDirectSoundBuffer_Restore(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundBuffer8_SetFX(p,a,b,c) (p)->lpVtbl->SetFX(p,a,b,c) #define IDirectSoundBuffer8_AcquireResources(p,a,b,c) (p)->lpVtbl->AcquireResources(p,a,b,c) #define IDirectSoundBuffer8_GetObjectInPath(p,a,b,c,d) (p)->lpVtbl->GetObjectInPath(p,a,b,c,d) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundBuffer8_SetFX(p,a,b,c) (p)->SetFX(a,b,c) #define IDirectSoundBuffer8_AcquireResources(p,a,b,c) (p)->AcquireResources(a,b,c) #define IDirectSoundBuffer8_GetObjectInPath(p,a,b,c,d) (p)->GetObjectInPath(a,b,c,d) #endif // !defined(__cplusplus) || defined(CINTERFACE) #endif // DIRECTSOUND_VERSION >= 0x0800 // // IDirectSound3DListener // DEFINE_GUID(IID_IDirectSound3DListener, 0x279AFA84, 0x4981, 0x11CE, 0xA5, 0x21, 0x00, 0x20, 0xAF, 0x0B, 0xE5, 0x60); #undef INTERFACE #define INTERFACE IDirectSound3DListener DECLARE_INTERFACE_(IDirectSound3DListener, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSound3DListener methods STDMETHOD(GetAllParameters) (THIS_ LPDS3DLISTENER pListener) PURE; STDMETHOD(GetDistanceFactor) (THIS_ D3DVALUE* pflDistanceFactor) PURE; STDMETHOD(GetDopplerFactor) (THIS_ D3DVALUE* pflDopplerFactor) PURE; STDMETHOD(GetOrientation) (THIS_ D3DVECTOR* pvOrientFront, D3DVECTOR* pvOrientTop) PURE; STDMETHOD(GetPosition) (THIS_ D3DVECTOR* pvPosition) PURE; STDMETHOD(GetRolloffFactor) (THIS_ D3DVALUE* pflRolloffFactor) PURE; STDMETHOD(GetVelocity) (THIS_ D3DVECTOR* pvVelocity) PURE; STDMETHOD(SetAllParameters) (THIS_ LPCDS3DLISTENER pcListener, DWORD dwApply) PURE; STDMETHOD(SetDistanceFactor) (THIS_ D3DVALUE flDistanceFactor, DWORD dwApply) PURE; STDMETHOD(SetDopplerFactor) (THIS_ D3DVALUE flDopplerFactor, DWORD dwApply) PURE; STDMETHOD(SetOrientation) (THIS_ D3DVALUE xFront, D3DVALUE yFront, D3DVALUE zFront, D3DVALUE xTop, D3DVALUE yTop, D3DVALUE zTop, DWORD dwApply) PURE; STDMETHOD(SetPosition) (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE; STDMETHOD(SetRolloffFactor) (THIS_ D3DVALUE flRolloffFactor, DWORD dwApply) PURE; STDMETHOD(SetVelocity) (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE; STDMETHOD(CommitDeferredSettings) (THIS) PURE; }; #define IDirectSound3DListener_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSound3DListener_AddRef(p) IUnknown_AddRef(p) #define IDirectSound3DListener_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSound3DListener_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) #define IDirectSound3DListener_GetDistanceFactor(p,a) (p)->lpVtbl->GetDistanceFactor(p,a) #define IDirectSound3DListener_GetDopplerFactor(p,a) (p)->lpVtbl->GetDopplerFactor(p,a) #define IDirectSound3DListener_GetOrientation(p,a,b) (p)->lpVtbl->GetOrientation(p,a,b) #define IDirectSound3DListener_GetPosition(p,a) (p)->lpVtbl->GetPosition(p,a) #define IDirectSound3DListener_GetRolloffFactor(p,a) (p)->lpVtbl->GetRolloffFactor(p,a) #define IDirectSound3DListener_GetVelocity(p,a) (p)->lpVtbl->GetVelocity(p,a) #define IDirectSound3DListener_SetAllParameters(p,a,b) (p)->lpVtbl->SetAllParameters(p,a,b) #define IDirectSound3DListener_SetDistanceFactor(p,a,b) (p)->lpVtbl->SetDistanceFactor(p,a,b) #define IDirectSound3DListener_SetDopplerFactor(p,a,b) (p)->lpVtbl->SetDopplerFactor(p,a,b) #define IDirectSound3DListener_SetOrientation(p,a,b,c,d,e,f,g) (p)->lpVtbl->SetOrientation(p,a,b,c,d,e,f,g) #define IDirectSound3DListener_SetPosition(p,a,b,c,d) (p)->lpVtbl->SetPosition(p,a,b,c,d) #define IDirectSound3DListener_SetRolloffFactor(p,a,b) (p)->lpVtbl->SetRolloffFactor(p,a,b) #define IDirectSound3DListener_SetVelocity(p,a,b,c,d) (p)->lpVtbl->SetVelocity(p,a,b,c,d) #define IDirectSound3DListener_CommitDeferredSettings(p) (p)->lpVtbl->CommitDeferredSettings(p) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSound3DListener_GetAllParameters(p,a) (p)->GetAllParameters(a) #define IDirectSound3DListener_GetDistanceFactor(p,a) (p)->GetDistanceFactor(a) #define IDirectSound3DListener_GetDopplerFactor(p,a) (p)->GetDopplerFactor(a) #define IDirectSound3DListener_GetOrientation(p,a,b) (p)->GetOrientation(a,b) #define IDirectSound3DListener_GetPosition(p,a) (p)->GetPosition(a) #define IDirectSound3DListener_GetRolloffFactor(p,a) (p)->GetRolloffFactor(a) #define IDirectSound3DListener_GetVelocity(p,a) (p)->GetVelocity(a) #define IDirectSound3DListener_SetAllParameters(p,a,b) (p)->SetAllParameters(a,b) #define IDirectSound3DListener_SetDistanceFactor(p,a,b) (p)->SetDistanceFactor(a,b) #define IDirectSound3DListener_SetDopplerFactor(p,a,b) (p)->SetDopplerFactor(a,b) #define IDirectSound3DListener_SetOrientation(p,a,b,c,d,e,f,g) (p)->SetOrientation(a,b,c,d,e,f,g) #define IDirectSound3DListener_SetPosition(p,a,b,c,d) (p)->SetPosition(a,b,c,d) #define IDirectSound3DListener_SetRolloffFactor(p,a,b) (p)->SetRolloffFactor(a,b) #define IDirectSound3DListener_SetVelocity(p,a,b,c,d) (p)->SetVelocity(a,b,c,d) #define IDirectSound3DListener_CommitDeferredSettings(p) (p)->CommitDeferredSettings() #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSound3DBuffer // DEFINE_GUID(IID_IDirectSound3DBuffer, 0x279AFA86, 0x4981, 0x11CE, 0xA5, 0x21, 0x00, 0x20, 0xAF, 0x0B, 0xE5, 0x60); #undef INTERFACE #define INTERFACE IDirectSound3DBuffer DECLARE_INTERFACE_(IDirectSound3DBuffer, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSound3DBuffer methods STDMETHOD(GetAllParameters) (THIS_ LPDS3DBUFFER pDs3dBuffer) PURE; STDMETHOD(GetConeAngles) (THIS_ LPDWORD pdwInsideConeAngle, LPDWORD pdwOutsideConeAngle) PURE; STDMETHOD(GetConeOrientation) (THIS_ D3DVECTOR* pvOrientation) PURE; STDMETHOD(GetConeOutsideVolume) (THIS_ LPLONG plConeOutsideVolume) PURE; STDMETHOD(GetMaxDistance) (THIS_ D3DVALUE* pflMaxDistance) PURE; STDMETHOD(GetMinDistance) (THIS_ D3DVALUE* pflMinDistance) PURE; STDMETHOD(GetMode) (THIS_ LPDWORD pdwMode) PURE; STDMETHOD(GetPosition) (THIS_ D3DVECTOR* pvPosition) PURE; STDMETHOD(GetVelocity) (THIS_ D3DVECTOR* pvVelocity) PURE; STDMETHOD(SetAllParameters) (THIS_ LPCDS3DBUFFER pcDs3dBuffer, DWORD dwApply) PURE; STDMETHOD(SetConeAngles) (THIS_ DWORD dwInsideConeAngle, DWORD dwOutsideConeAngle, DWORD dwApply) PURE; STDMETHOD(SetConeOrientation) (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE; STDMETHOD(SetConeOutsideVolume) (THIS_ LONG lConeOutsideVolume, DWORD dwApply) PURE; STDMETHOD(SetMaxDistance) (THIS_ D3DVALUE flMaxDistance, DWORD dwApply) PURE; STDMETHOD(SetMinDistance) (THIS_ D3DVALUE flMinDistance, DWORD dwApply) PURE; STDMETHOD(SetMode) (THIS_ DWORD dwMode, DWORD dwApply) PURE; STDMETHOD(SetPosition) (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE; STDMETHOD(SetVelocity) (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE; }; #define IDirectSound3DBuffer_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSound3DBuffer_AddRef(p) IUnknown_AddRef(p) #define IDirectSound3DBuffer_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSound3DBuffer_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) #define IDirectSound3DBuffer_GetConeAngles(p,a,b) (p)->lpVtbl->GetConeAngles(p,a,b) #define IDirectSound3DBuffer_GetConeOrientation(p,a) (p)->lpVtbl->GetConeOrientation(p,a) #define IDirectSound3DBuffer_GetConeOutsideVolume(p,a) (p)->lpVtbl->GetConeOutsideVolume(p,a) #define IDirectSound3DBuffer_GetPosition(p,a) (p)->lpVtbl->GetPosition(p,a) #define IDirectSound3DBuffer_GetMinDistance(p,a) (p)->lpVtbl->GetMinDistance(p,a) #define IDirectSound3DBuffer_GetMaxDistance(p,a) (p)->lpVtbl->GetMaxDistance(p,a) #define IDirectSound3DBuffer_GetMode(p,a) (p)->lpVtbl->GetMode(p,a) #define IDirectSound3DBuffer_GetVelocity(p,a) (p)->lpVtbl->GetVelocity(p,a) #define IDirectSound3DBuffer_SetAllParameters(p,a,b) (p)->lpVtbl->SetAllParameters(p,a,b) #define IDirectSound3DBuffer_SetConeAngles(p,a,b,c) (p)->lpVtbl->SetConeAngles(p,a,b,c) #define IDirectSound3DBuffer_SetConeOrientation(p,a,b,c,d) (p)->lpVtbl->SetConeOrientation(p,a,b,c,d) #define IDirectSound3DBuffer_SetConeOutsideVolume(p,a,b) (p)->lpVtbl->SetConeOutsideVolume(p,a,b) #define IDirectSound3DBuffer_SetPosition(p,a,b,c,d) (p)->lpVtbl->SetPosition(p,a,b,c,d) #define IDirectSound3DBuffer_SetMinDistance(p,a,b) (p)->lpVtbl->SetMinDistance(p,a,b) #define IDirectSound3DBuffer_SetMaxDistance(p,a,b) (p)->lpVtbl->SetMaxDistance(p,a,b) #define IDirectSound3DBuffer_SetMode(p,a,b) (p)->lpVtbl->SetMode(p,a,b) #define IDirectSound3DBuffer_SetVelocity(p,a,b,c,d) (p)->lpVtbl->SetVelocity(p,a,b,c,d) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSound3DBuffer_GetAllParameters(p,a) (p)->GetAllParameters(a) #define IDirectSound3DBuffer_GetConeAngles(p,a,b) (p)->GetConeAngles(a,b) #define IDirectSound3DBuffer_GetConeOrientation(p,a) (p)->GetConeOrientation(a) #define IDirectSound3DBuffer_GetConeOutsideVolume(p,a) (p)->GetConeOutsideVolume(a) #define IDirectSound3DBuffer_GetPosition(p,a) (p)->GetPosition(a) #define IDirectSound3DBuffer_GetMinDistance(p,a) (p)->GetMinDistance(a) #define IDirectSound3DBuffer_GetMaxDistance(p,a) (p)->GetMaxDistance(a) #define IDirectSound3DBuffer_GetMode(p,a) (p)->GetMode(a) #define IDirectSound3DBuffer_GetVelocity(p,a) (p)->GetVelocity(a) #define IDirectSound3DBuffer_SetAllParameters(p,a,b) (p)->SetAllParameters(a,b) #define IDirectSound3DBuffer_SetConeAngles(p,a,b,c) (p)->SetConeAngles(a,b,c) #define IDirectSound3DBuffer_SetConeOrientation(p,a,b,c,d) (p)->SetConeOrientation(a,b,c,d) #define IDirectSound3DBuffer_SetConeOutsideVolume(p,a,b) (p)->SetConeOutsideVolume(a,b) #define IDirectSound3DBuffer_SetPosition(p,a,b,c,d) (p)->SetPosition(a,b,c,d) #define IDirectSound3DBuffer_SetMinDistance(p,a,b) (p)->SetMinDistance(a,b) #define IDirectSound3DBuffer_SetMaxDistance(p,a,b) (p)->SetMaxDistance(a,b) #define IDirectSound3DBuffer_SetMode(p,a,b) (p)->SetMode(a,b) #define IDirectSound3DBuffer_SetVelocity(p,a,b,c,d) (p)->SetVelocity(a,b,c,d) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSoundCapture // DEFINE_GUID(IID_IDirectSoundCapture, 0xb0210781, 0x89cd, 0x11d0, 0xaf, 0x8, 0x0, 0xa0, 0xc9, 0x25, 0xcd, 0x16); #undef INTERFACE #define INTERFACE IDirectSoundCapture DECLARE_INTERFACE_(IDirectSoundCapture, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundCapture methods STDMETHOD(CreateCaptureBuffer) (THIS_ LPCDSCBUFFERDESC pcDSCBufferDesc, LPDIRECTSOUNDCAPTUREBUFFER *ppDSCBuffer, LPUNKNOWN pUnkOuter) PURE; STDMETHOD(GetCaps) (THIS_ LPDSCCAPS pDSCCaps) PURE; STDMETHOD(Initialize) (THIS_ LPCGUID pcGuidDevice) PURE; }; #define IDirectSoundCapture_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundCapture_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundCapture_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundCapture_CreateCaptureBuffer(p,a,b,c) (p)->lpVtbl->CreateCaptureBuffer(p,a,b,c) #define IDirectSoundCapture_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a) #define IDirectSoundCapture_Initialize(p,a) (p)->lpVtbl->Initialize(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundCapture_CreateCaptureBuffer(p,a,b,c) (p)->CreateCaptureBuffer(a,b,c) #define IDirectSoundCapture_GetCaps(p,a) (p)->GetCaps(a) #define IDirectSoundCapture_Initialize(p,a) (p)->Initialize(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSoundCaptureBuffer // DEFINE_GUID(IID_IDirectSoundCaptureBuffer, 0xb0210782, 0x89cd, 0x11d0, 0xaf, 0x8, 0x0, 0xa0, 0xc9, 0x25, 0xcd, 0x16); #undef INTERFACE #define INTERFACE IDirectSoundCaptureBuffer DECLARE_INTERFACE_(IDirectSoundCaptureBuffer, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundCaptureBuffer methods STDMETHOD(GetCaps) (THIS_ LPDSCBCAPS pDSCBCaps) PURE; STDMETHOD(GetCurrentPosition) (THIS_ LPDWORD pdwCapturePosition, LPDWORD pdwReadPosition) PURE; STDMETHOD(GetFormat) (THIS_ LPWAVEFORMATEX pwfxFormat, DWORD dwSizeAllocated, LPDWORD pdwSizeWritten) PURE; STDMETHOD(GetStatus) (THIS_ LPDWORD pdwStatus) PURE; STDMETHOD(Initialize) (THIS_ LPDIRECTSOUNDCAPTURE pDirectSoundCapture, LPCDSCBUFFERDESC pcDSCBufferDesc) PURE; STDMETHOD(Lock) (THIS_ DWORD dwOffset, DWORD dwBytes, LPVOID *ppvAudioPtr1, LPDWORD pdwAudioBytes1, LPVOID *ppvAudioPtr2, LPDWORD pdwAudioBytes2, DWORD dwFlags) PURE; STDMETHOD(Start) (THIS_ DWORD dwFlags) PURE; STDMETHOD(Stop) (THIS) PURE; STDMETHOD(Unlock) (THIS_ LPVOID pvAudioPtr1, DWORD dwAudioBytes1, LPVOID pvAudioPtr2, DWORD dwAudioBytes2) PURE; }; #define IDirectSoundCaptureBuffer_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundCaptureBuffer_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundCaptureBuffer_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundCaptureBuffer_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a) #define IDirectSoundCaptureBuffer_GetCurrentPosition(p,a,b) (p)->lpVtbl->GetCurrentPosition(p,a,b) #define IDirectSoundCaptureBuffer_GetFormat(p,a,b,c) (p)->lpVtbl->GetFormat(p,a,b,c) #define IDirectSoundCaptureBuffer_GetStatus(p,a) (p)->lpVtbl->GetStatus(p,a) #define IDirectSoundCaptureBuffer_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b) #define IDirectSoundCaptureBuffer_Lock(p,a,b,c,d,e,f,g) (p)->lpVtbl->Lock(p,a,b,c,d,e,f,g) #define IDirectSoundCaptureBuffer_Start(p,a) (p)->lpVtbl->Start(p,a) #define IDirectSoundCaptureBuffer_Stop(p) (p)->lpVtbl->Stop(p) #define IDirectSoundCaptureBuffer_Unlock(p,a,b,c,d) (p)->lpVtbl->Unlock(p,a,b,c,d) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundCaptureBuffer_GetCaps(p,a) (p)->GetCaps(a) #define IDirectSoundCaptureBuffer_GetCurrentPosition(p,a,b) (p)->GetCurrentPosition(a,b) #define IDirectSoundCaptureBuffer_GetFormat(p,a,b,c) (p)->GetFormat(a,b,c) #define IDirectSoundCaptureBuffer_GetStatus(p,a) (p)->GetStatus(a) #define IDirectSoundCaptureBuffer_Initialize(p,a,b) (p)->Initialize(a,b) #define IDirectSoundCaptureBuffer_Lock(p,a,b,c,d,e,f,g) (p)->Lock(a,b,c,d,e,f,g) #define IDirectSoundCaptureBuffer_Start(p,a) (p)->Start(a) #define IDirectSoundCaptureBuffer_Stop(p) (p)->Stop() #define IDirectSoundCaptureBuffer_Unlock(p,a,b,c,d) (p)->Unlock(a,b,c,d) #endif // !defined(__cplusplus) || defined(CINTERFACE) #if DIRECTSOUND_VERSION >= 0x0800 // // IDirectSoundCaptureBuffer8 // DEFINE_GUID(IID_IDirectSoundCaptureBuffer8, 0x990df4, 0xdbb, 0x4872, 0x83, 0x3e, 0x6d, 0x30, 0x3e, 0x80, 0xae, 0xb6); #undef INTERFACE #define INTERFACE IDirectSoundCaptureBuffer8 DECLARE_INTERFACE_(IDirectSoundCaptureBuffer8, IDirectSoundCaptureBuffer) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundCaptureBuffer methods STDMETHOD(GetCaps) (THIS_ LPDSCBCAPS pDSCBCaps) PURE; STDMETHOD(GetCurrentPosition) (THIS_ LPDWORD pdwCapturePosition, LPDWORD pdwReadPosition) PURE; STDMETHOD(GetFormat) (THIS_ LPWAVEFORMATEX pwfxFormat, DWORD dwSizeAllocated, LPDWORD pdwSizeWritten) PURE; STDMETHOD(GetStatus) (THIS_ LPDWORD pdwStatus) PURE; STDMETHOD(Initialize) (THIS_ LPDIRECTSOUNDCAPTURE pDirectSoundCapture, LPCDSCBUFFERDESC pcDSCBufferDesc) PURE; STDMETHOD(Lock) (THIS_ DWORD dwOffset, DWORD dwBytes, LPVOID *ppvAudioPtr1, LPDWORD pdwAudioBytes1, LPVOID *ppvAudioPtr2, LPDWORD pdwAudioBytes2, DWORD dwFlags) PURE; STDMETHOD(Start) (THIS_ DWORD dwFlags) PURE; STDMETHOD(Stop) (THIS) PURE; STDMETHOD(Unlock) (THIS_ LPVOID pvAudioPtr1, DWORD dwAudioBytes1, LPVOID pvAudioPtr2, DWORD dwAudioBytes2) PURE; // IDirectSoundCaptureBuffer8 methods STDMETHOD(GetObjectInPath) (THIS_ REFGUID rguidObject, DWORD dwIndex, REFGUID rguidInterface, LPVOID *ppObject) PURE; STDMETHOD(GetFXStatus) (DWORD dwFXCount, LPDWORD pdwFXStatus) PURE; }; #define IDirectSoundCaptureBuffer8_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundCaptureBuffer8_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundCaptureBuffer8_Release(p) IUnknown_Release(p) #define IDirectSoundCaptureBuffer8_GetCaps(p,a) IDirectSoundCaptureBuffer_GetCaps(p,a) #define IDirectSoundCaptureBuffer8_GetCurrentPosition(p,a,b) IDirectSoundCaptureBuffer_GetCurrentPosition(p,a,b) #define IDirectSoundCaptureBuffer8_GetFormat(p,a,b,c) IDirectSoundCaptureBuffer_GetFormat(p,a,b,c) #define IDirectSoundCaptureBuffer8_GetStatus(p,a) IDirectSoundCaptureBuffer_GetStatus(p,a) #define IDirectSoundCaptureBuffer8_Initialize(p,a,b) IDirectSoundCaptureBuffer_Initialize(p,a,b) #define IDirectSoundCaptureBuffer8_Lock(p,a,b,c,d,e,f,g) IDirectSoundCaptureBuffer_Lock(p,a,b,c,d,e,f,g) #define IDirectSoundCaptureBuffer8_Start(p,a) IDirectSoundCaptureBuffer_Start(p,a) #define IDirectSoundCaptureBuffer8_Stop(p) IDirectSoundCaptureBuffer_Stop(p)) #define IDirectSoundCaptureBuffer8_Unlock(p,a,b,c,d) IDirectSoundCaptureBuffer_Unlock(p,a,b,c,d) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundCaptureBuffer8_GetObjectInPath(p,a,b,c,d) (p)->lpVtbl->GetObjectInPath(p,a,b,c,d) #define IDirectSoundCaptureBuffer8_GetFXStatus(p,a,b) (p)->lpVtbl->GetFXStatus(p,a,b) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundCaptureBuffer8_GetObjectInPath(p,a,b,c,d) (p)->GetObjectInPath(a,b,c,d) #define IDirectSoundCaptureBuffer8_GetFXStatus(p,a,b) (p)->GetFXStatus(a,b) #endif // !defined(__cplusplus) || defined(CINTERFACE) #endif // DIRECTSOUND_VERSION >= 0x0800 // // IDirectSoundNotify // DEFINE_GUID(IID_IDirectSoundNotify, 0xb0210783, 0x89cd, 0x11d0, 0xaf, 0x8, 0x0, 0xa0, 0xc9, 0x25, 0xcd, 0x16); #undef INTERFACE #define INTERFACE IDirectSoundNotify DECLARE_INTERFACE_(IDirectSoundNotify, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundNotify methods STDMETHOD(SetNotificationPositions) (THIS_ DWORD dwPositionNotifies, LPCDSBPOSITIONNOTIFY pcPositionNotifies) PURE; }; #define IDirectSoundNotify_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundNotify_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundNotify_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundNotify_SetNotificationPositions(p,a,b) (p)->lpVtbl->SetNotificationPositions(p,a,b) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundNotify_SetNotificationPositions(p,a,b) (p)->SetNotificationPositions(a,b) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IKsPropertySet // #ifndef _IKsPropertySet_ #define _IKsPropertySet_ #ifdef __cplusplus // 'struct' not 'class' per the way DECLARE_INTERFACE_ is defined struct IKsPropertySet; #endif // __cplusplus typedef struct IKsPropertySet *LPKSPROPERTYSET; #define KSPROPERTY_SUPPORT_GET 0x00000001 #define KSPROPERTY_SUPPORT_SET 0x00000002 DEFINE_GUID(IID_IKsPropertySet, 0x31efac30, 0x515c, 0x11d0, 0xa9, 0xaa, 0x00, 0xaa, 0x00, 0x61, 0xbe, 0x93); #undef INTERFACE #define INTERFACE IKsPropertySet DECLARE_INTERFACE_(IKsPropertySet, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IKsPropertySet methods STDMETHOD(Get) (THIS_ REFGUID rguidPropSet, ULONG ulId, LPVOID pInstanceData, ULONG ulInstanceLength, LPVOID pPropertyData, ULONG ulDataLength, PULONG pulBytesReturned) PURE; STDMETHOD(Set) (THIS_ REFGUID rguidPropSet, ULONG ulId, LPVOID pInstanceData, ULONG ulInstanceLength, LPVOID pPropertyData, ULONG ulDataLength) PURE; STDMETHOD(QuerySupport) (THIS_ REFGUID rguidPropSet, ULONG ulId, PULONG pulTypeSupport) PURE; }; #define IKsPropertySet_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IKsPropertySet_AddRef(p) IUnknown_AddRef(p) #define IKsPropertySet_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IKsPropertySet_Get(p,a,b,c,d,e,f,g) (p)->lpVtbl->Get(p,a,b,c,d,e,f,g) #define IKsPropertySet_Set(p,a,b,c,d,e,f) (p)->lpVtbl->Set(p,a,b,c,d,e,f) #define IKsPropertySet_QuerySupport(p,a,b,c) (p)->lpVtbl->QuerySupport(p,a,b,c) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IKsPropertySet_Get(p,a,b,c,d,e,f,g) (p)->Get(a,b,c,d,e,f,g) #define IKsPropertySet_Set(p,a,b,c,d,e,f) (p)->Set(a,b,c,d,e,f) #define IKsPropertySet_QuerySupport(p,a,b,c) (p)->QuerySupport(a,b,c) #endif // !defined(__cplusplus) || defined(CINTERFACE) #endif // _IKsPropertySet_ #if DIRECTSOUND_VERSION >= 0x0800 // // IDirectSoundFXGargle // DEFINE_GUID(IID_IDirectSoundFXGargle, 0xd616f352, 0xd622, 0x11ce, 0xaa, 0xc5, 0x00, 0x20, 0xaf, 0x0b, 0x99, 0xa3); typedef struct _DSFXGargle { DWORD dwRateHz; // Rate of modulation in hz DWORD dwWaveShape; // DSFXGARGLE_WAVE_xxx } DSFXGargle, *LPDSFXGargle; #define DSFXGARGLE_WAVE_TRIANGLE 0 #define DSFXGARGLE_WAVE_SQUARE 1 typedef const DSFXGargle *LPCDSFXGargle; #define DSFXGARGLE_RATEHZ_MIN 1 #define DSFXGARGLE_RATEHZ_MAX 1000 #undef INTERFACE #define INTERFACE IDirectSoundFXGargle DECLARE_INTERFACE_(IDirectSoundFXGargle, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundFXGargle methods STDMETHOD(SetAllParameters) (THIS_ LPCDSFXGargle pcDsFxGargle) PURE; STDMETHOD(GetAllParameters) (THIS_ LPDSFXGargle pDsFxGargle) PURE; }; #define IDirectSoundFXGargle_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundFXGargle_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundFXGargle_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXGargle_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) #define IDirectSoundFXGargle_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXGargle_SetAllParameters(p,a) (p)->SetAllParameters(a) #define IDirectSoundFXGargle_GetAllParameters(p,a) (p)->GetAllParameters(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSoundFXChorus // DEFINE_GUID(IID_IDirectSoundFXChorus, 0x880842e3, 0x145f, 0x43e6, 0xa9, 0x34, 0xa7, 0x18, 0x06, 0xe5, 0x05, 0x47); typedef struct _DSFXChorus { FLOAT fWetDryMix; FLOAT fDepth; FLOAT fFeedback; FLOAT fFrequency; LONG lWaveform; // LFO shape; DSFXCHORUS_WAVE_xxx FLOAT fDelay; LONG lPhase; } DSFXChorus, *LPDSFXChorus; typedef const DSFXChorus *LPCDSFXChorus; #define DSFXCHORUS_WAVE_TRIANGLE 0 #define DSFXCHORUS_WAVE_SIN 1 #define DSFXCHORUS_WETDRYMIX_MIN 0.0f #define DSFXCHORUS_WETDRYMIX_MAX 100.0f #define DSFXCHORUS_DEPTH_MIN 0.0f #define DSFXCHORUS_DEPTH_MAX 100.0f #define DSFXCHORUS_FEEDBACK_MIN -99.0f #define DSFXCHORUS_FEEDBACK_MAX 99.0f #define DSFXCHORUS_FREQUENCY_MIN 0.0f #define DSFXCHORUS_FREQUENCY_MAX 10.0f #define DSFXCHORUS_DELAY_MIN 0.0f #define DSFXCHORUS_DELAY_MAX 20.0f #define DSFXCHORUS_PHASE_MIN 0 #define DSFXCHORUS_PHASE_MAX 4 #define DSFXCHORUS_PHASE_NEG_180 0 #define DSFXCHORUS_PHASE_NEG_90 1 #define DSFXCHORUS_PHASE_ZERO 2 #define DSFXCHORUS_PHASE_90 3 #define DSFXCHORUS_PHASE_180 4 #undef INTERFACE #define INTERFACE IDirectSoundFXChorus DECLARE_INTERFACE_(IDirectSoundFXChorus, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundFXChorus methods STDMETHOD(SetAllParameters) (THIS_ LPCDSFXChorus pcDsFxChorus) PURE; STDMETHOD(GetAllParameters) (THIS_ LPDSFXChorus pDsFxChorus) PURE; }; #define IDirectSoundFXChorus_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundFXChorus_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundFXChorus_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXChorus_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) #define IDirectSoundFXChorus_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXChorus_SetAllParameters(p,a) (p)->SetAllParameters(a) #define IDirectSoundFXChorus_GetAllParameters(p,a) (p)->GetAllParameters(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSoundFXFlanger // DEFINE_GUID(IID_IDirectSoundFXFlanger, 0x903e9878, 0x2c92, 0x4072, 0x9b, 0x2c, 0xea, 0x68, 0xf5, 0x39, 0x67, 0x83); typedef struct _DSFXFlanger { FLOAT fWetDryMix; FLOAT fDepth; FLOAT fFeedback; FLOAT fFrequency; LONG lWaveform; FLOAT fDelay; LONG lPhase; } DSFXFlanger, *LPDSFXFlanger; typedef const DSFXFlanger *LPCDSFXFlanger; #define DSFXFLANGER_WAVE_TRIANGLE 0 #define DSFXFLANGER_WAVE_SIN 1 #define DSFXFLANGER_WETDRYMIX_MIN 0.0f #define DSFXFLANGER_WETDRYMIX_MAX 100.0f #define DSFXFLANGER_FREQUENCY_MIN 0.0f #define DSFXFLANGER_FREQUENCY_MAX 10.0f #define DSFXFLANGER_DEPTH_MIN 0.0f #define DSFXFLANGER_DEPTH_MAX 100.0f #define DSFXFLANGER_PHASE_MIN 0 #define DSFXFLANGER_PHASE_MAX 4 #define DSFXFLANGER_FEEDBACK_MIN -99.0f #define DSFXFLANGER_FEEDBACK_MAX 99.0f #define DSFXFLANGER_DELAY_MIN 0.0f #define DSFXFLANGER_DELAY_MAX 4.0f #define DSFXFLANGER_PHASE_NEG_180 0 #define DSFXFLANGER_PHASE_NEG_90 1 #define DSFXFLANGER_PHASE_ZERO 2 #define DSFXFLANGER_PHASE_90 3 #define DSFXFLANGER_PHASE_180 4 #undef INTERFACE #define INTERFACE IDirectSoundFXFlanger DECLARE_INTERFACE_(IDirectSoundFXFlanger, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundFXFlanger methods STDMETHOD(SetAllParameters) (THIS_ LPCDSFXFlanger pcDsFxFlanger) PURE; STDMETHOD(GetAllParameters) (THIS_ LPDSFXFlanger pDsFxFlanger) PURE; }; #define IDirectSoundFXFlanger_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundFXFlanger_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundFXFlanger_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXFlanger_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) #define IDirectSoundFXFlanger_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXFlanger_SetAllParameters(p,a) (p)->SetAllParameters(a) #define IDirectSoundFXFlanger_GetAllParameters(p,a) (p)->GetAllParameters(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSoundFXEcho // DEFINE_GUID(IID_IDirectSoundFXEcho, 0x8bd28edf, 0x50db, 0x4e92, 0xa2, 0xbd, 0x44, 0x54, 0x88, 0xd1, 0xed, 0x42); typedef struct _DSFXEcho { FLOAT fWetDryMix; FLOAT fFeedback; FLOAT fLeftDelay; FLOAT fRightDelay; LONG lPanDelay; } DSFXEcho, *LPDSFXEcho; typedef const DSFXEcho *LPCDSFXEcho; #define DSFXECHO_WETDRYMIX_MIN 0.0f #define DSFXECHO_WETDRYMIX_MAX 100.0f #define DSFXECHO_FEEDBACK_MIN 0.0f #define DSFXECHO_FEEDBACK_MAX 100.0f #define DSFXECHO_LEFTDELAY_MIN 1.0f #define DSFXECHO_LEFTDELAY_MAX 2000.0f #define DSFXECHO_RIGHTDELAY_MIN 1.0f #define DSFXECHO_RIGHTDELAY_MAX 2000.0f #define DSFXECHO_PANDELAY_MIN 0 #define DSFXECHO_PANDELAY_MAX 1 #undef INTERFACE #define INTERFACE IDirectSoundFXEcho DECLARE_INTERFACE_(IDirectSoundFXEcho, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundFXEcho methods STDMETHOD(SetAllParameters) (THIS_ LPCDSFXEcho pcDsFxEcho) PURE; STDMETHOD(GetAllParameters) (THIS_ LPDSFXEcho pDsFxEcho) PURE; }; #define IDirectSoundFXEcho_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundFXEcho_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundFXEcho_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXEcho_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) #define IDirectSoundFXEcho_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXEcho_SetAllParameters(p,a) (p)->SetAllParameters(a) #define IDirectSoundFXEcho_GetAllParameters(p,a) (p)->GetAllParameters(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSoundFXDistortion // DEFINE_GUID(IID_IDirectSoundFXDistortion, 0x8ecf4326, 0x455f, 0x4d8b, 0xbd, 0xa9, 0x8d, 0x5d, 0x3e, 0x9e, 0x3e, 0x0b); typedef struct _DSFXDistortion { FLOAT fGain; FLOAT fEdge; FLOAT fPostEQCenterFrequency; FLOAT fPostEQBandwidth; FLOAT fPreLowpassCutoff; } DSFXDistortion, *LPDSFXDistortion; typedef const DSFXDistortion *LPCDSFXDistortion; #define DSFXDISTORTION_GAIN_MIN -60.0f #define DSFXDISTORTION_GAIN_MAX 0.0f #define DSFXDISTORTION_EDGE_MIN 0.0f #define DSFXDISTORTION_EDGE_MAX 100.0f #define DSFXDISTORTION_POSTEQCENTERFREQUENCY_MIN 100.0f #define DSFXDISTORTION_POSTEQCENTERFREQUENCY_MAX 8000.0f #define DSFXDISTORTION_POSTEQBANDWIDTH_MIN 100.0f #define DSFXDISTORTION_POSTEQBANDWIDTH_MAX 8000.0f #define DSFXDISTORTION_PRELOWPASSCUTOFF_MIN 100.0f #define DSFXDISTORTION_PRELOWPASSCUTOFF_MAX 8000.0f #undef INTERFACE #define INTERFACE IDirectSoundFXDistortion DECLARE_INTERFACE_(IDirectSoundFXDistortion, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundFXDistortion methods STDMETHOD(SetAllParameters) (THIS_ LPCDSFXDistortion pcDsFxDistortion) PURE; STDMETHOD(GetAllParameters) (THIS_ LPDSFXDistortion pDsFxDistortion) PURE; }; #define IDirectSoundFXDistortion_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundFXDistortion_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundFXDistortion_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXDistortion_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) #define IDirectSoundFXDistortion_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXDistortion_SetAllParameters(p,a) (p)->SetAllParameters(a) #define IDirectSoundFXDistortion_GetAllParameters(p,a) (p)->GetAllParameters(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSoundFXCompressor // DEFINE_GUID(IID_IDirectSoundFXCompressor, 0x4bbd1154, 0x62f6, 0x4e2c, 0xa1, 0x5c, 0xd3, 0xb6, 0xc4, 0x17, 0xf7, 0xa0); typedef struct _DSFXCompressor { FLOAT fGain; FLOAT fAttack; FLOAT fRelease; FLOAT fThreshold; FLOAT fRatio; FLOAT fPredelay; } DSFXCompressor, *LPDSFXCompressor; typedef const DSFXCompressor *LPCDSFXCompressor; #define DSFXCOMPRESSOR_GAIN_MIN -60.0f #define DSFXCOMPRESSOR_GAIN_MAX 60.0f #define DSFXCOMPRESSOR_ATTACK_MIN 0.01f #define DSFXCOMPRESSOR_ATTACK_MAX 500.0f #define DSFXCOMPRESSOR_RELEASE_MIN 50.0f #define DSFXCOMPRESSOR_RELEASE_MAX 3000.0f #define DSFXCOMPRESSOR_THRESHOLD_MIN -60.0f #define DSFXCOMPRESSOR_THRESHOLD_MAX 0.0f #define DSFXCOMPRESSOR_RATIO_MIN 1.0f #define DSFXCOMPRESSOR_RATIO_MAX 100.0f #define DSFXCOMPRESSOR_PREDELAY_MIN 0.0f #define DSFXCOMPRESSOR_PREDELAY_MAX 4.0f #undef INTERFACE #define INTERFACE IDirectSoundFXCompressor DECLARE_INTERFACE_(IDirectSoundFXCompressor, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundFXCompressor methods STDMETHOD(SetAllParameters) (THIS_ LPCDSFXCompressor pcDsFxCompressor) PURE; STDMETHOD(GetAllParameters) (THIS_ LPDSFXCompressor pDsFxCompressor) PURE; }; #define IDirectSoundFXCompressor_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundFXCompressor_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundFXCompressor_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXCompressor_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) #define IDirectSoundFXCompressor_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXCompressor_SetAllParameters(p,a) (p)->SetAllParameters(a) #define IDirectSoundFXCompressor_GetAllParameters(p,a) (p)->GetAllParameters(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSoundFXParamEq // DEFINE_GUID(IID_IDirectSoundFXParamEq, 0xc03ca9fe, 0xfe90, 0x4204, 0x80, 0x78, 0x82, 0x33, 0x4c, 0xd1, 0x77, 0xda); typedef struct _DSFXParamEq { FLOAT fCenter; FLOAT fBandwidth; FLOAT fGain; } DSFXParamEq, *LPDSFXParamEq; typedef const DSFXParamEq *LPCDSFXParamEq; #define DSFXPARAMEQ_CENTER_MIN 80.0f #define DSFXPARAMEQ_CENTER_MAX 16000.0f #define DSFXPARAMEQ_BANDWIDTH_MIN 1.0f #define DSFXPARAMEQ_BANDWIDTH_MAX 36.0f #define DSFXPARAMEQ_GAIN_MIN -15.0f #define DSFXPARAMEQ_GAIN_MAX 15.0f #undef INTERFACE #define INTERFACE IDirectSoundFXParamEq DECLARE_INTERFACE_(IDirectSoundFXParamEq, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundFXParamEq methods STDMETHOD(SetAllParameters) (THIS_ LPCDSFXParamEq pcDsFxParamEq) PURE; STDMETHOD(GetAllParameters) (THIS_ LPDSFXParamEq pDsFxParamEq) PURE; }; #define IDirectSoundFXParamEq_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundFXParamEq_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundFXParamEq_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXParamEq_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) #define IDirectSoundFXParamEq_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXParamEq_SetAllParameters(p,a) (p)->SetAllParameters(a) #define IDirectSoundFXParamEq_GetAllParameters(p,a) (p)->GetAllParameters(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSoundFXI3DL2Reverb // DEFINE_GUID(IID_IDirectSoundFXI3DL2Reverb, 0x4b166a6a, 0x0d66, 0x43f3, 0x80, 0xe3, 0xee, 0x62, 0x80, 0xde, 0xe1, 0xa4); typedef struct _DSFXI3DL2Reverb { LONG lRoom; // [-10000, 0] default: -1000 mB LONG lRoomHF; // [-10000, 0] default: 0 mB FLOAT flRoomRolloffFactor; // [0.0, 10.0] default: 0.0 FLOAT flDecayTime; // [0.1, 20.0] default: 1.49s FLOAT flDecayHFRatio; // [0.1, 2.0] default: 0.83 LONG lReflections; // [-10000, 1000] default: -2602 mB FLOAT flReflectionsDelay; // [0.0, 0.3] default: 0.007 s LONG lReverb; // [-10000, 2000] default: 200 mB FLOAT flReverbDelay; // [0.0, 0.1] default: 0.011 s FLOAT flDiffusion; // [0.0, 100.0] default: 100.0 % FLOAT flDensity; // [0.0, 100.0] default: 100.0 % FLOAT flHFReference; // [20.0, 20000.0] default: 5000.0 Hz } DSFXI3DL2Reverb, *LPDSFXI3DL2Reverb; typedef const DSFXI3DL2Reverb *LPCDSFXI3DL2Reverb; #define DSFX_I3DL2REVERB_ROOM_MIN (-10000) #define DSFX_I3DL2REVERB_ROOM_MAX 0 #define DSFX_I3DL2REVERB_ROOM_DEFAULT (-1000) #define DSFX_I3DL2REVERB_ROOMHF_MIN (-10000) #define DSFX_I3DL2REVERB_ROOMHF_MAX 0 #define DSFX_I3DL2REVERB_ROOMHF_DEFAULT (-100) #define DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_MIN 0.0f #define DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_MAX 10.0f #define DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_DEFAULT 0.0f #define DSFX_I3DL2REVERB_DECAYTIME_MIN 0.1f #define DSFX_I3DL2REVERB_DECAYTIME_MAX 20.0f #define DSFX_I3DL2REVERB_DECAYTIME_DEFAULT 1.49f #define DSFX_I3DL2REVERB_DECAYHFRATIO_MIN 0.1f #define DSFX_I3DL2REVERB_DECAYHFRATIO_MAX 2.0f #define DSFX_I3DL2REVERB_DECAYHFRATIO_DEFAULT 0.83f #define DSFX_I3DL2REVERB_REFLECTIONS_MIN (-10000) #define DSFX_I3DL2REVERB_REFLECTIONS_MAX 1000 #define DSFX_I3DL2REVERB_REFLECTIONS_DEFAULT (-2602) #define DSFX_I3DL2REVERB_REFLECTIONSDELAY_MIN 0.0f #define DSFX_I3DL2REVERB_REFLECTIONSDELAY_MAX 0.3f #define DSFX_I3DL2REVERB_REFLECTIONSDELAY_DEFAULT 0.007f #define DSFX_I3DL2REVERB_REVERB_MIN (-10000) #define DSFX_I3DL2REVERB_REVERB_MAX 2000 #define DSFX_I3DL2REVERB_REVERB_DEFAULT (200) #define DSFX_I3DL2REVERB_REVERBDELAY_MIN 0.0f #define DSFX_I3DL2REVERB_REVERBDELAY_MAX 0.1f #define DSFX_I3DL2REVERB_REVERBDELAY_DEFAULT 0.011f #define DSFX_I3DL2REVERB_DIFFUSION_MIN 0.0f #define DSFX_I3DL2REVERB_DIFFUSION_MAX 100.0f #define DSFX_I3DL2REVERB_DIFFUSION_DEFAULT 100.0f #define DSFX_I3DL2REVERB_DENSITY_MIN 0.0f #define DSFX_I3DL2REVERB_DENSITY_MAX 100.0f #define DSFX_I3DL2REVERB_DENSITY_DEFAULT 100.0f #define DSFX_I3DL2REVERB_HFREFERENCE_MIN 20.0f #define DSFX_I3DL2REVERB_HFREFERENCE_MAX 20000.0f #define DSFX_I3DL2REVERB_HFREFERENCE_DEFAULT 5000.0f #define DSFX_I3DL2REVERB_QUALITY_MIN 0 #define DSFX_I3DL2REVERB_QUALITY_MAX 3 #define DSFX_I3DL2REVERB_QUALITY_DEFAULT 2 #undef INTERFACE #define INTERFACE IDirectSoundFXI3DL2Reverb DECLARE_INTERFACE_(IDirectSoundFXI3DL2Reverb, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundFXI3DL2Reverb methods STDMETHOD(SetAllParameters) (THIS_ LPCDSFXI3DL2Reverb pcDsFxI3DL2Reverb) PURE; STDMETHOD(GetAllParameters) (THIS_ LPDSFXI3DL2Reverb pDsFxI3DL2Reverb) PURE; STDMETHOD(SetPreset) (THIS_ DWORD dwPreset) PURE; STDMETHOD(GetPreset) (THIS_ LPDWORD pdwPreset) PURE; STDMETHOD(SetQuality) (THIS_ LONG lQuality) PURE; STDMETHOD(GetQuality) (THIS_ LONG *plQuality) PURE; }; #define IDirectSoundFXI3DL2Reverb_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundFXI3DL2Reverb_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundFXI3DL2Reverb_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXI3DL2Reverb_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) #define IDirectSoundFXI3DL2Reverb_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) #define IDirectSoundFXI3DL2Reverb_SetPreset(p,a) (p)->lpVtbl->SetPreset(p,a) #define IDirectSoundFXI3DL2Reverb_GetPreset(p,a) (p)->lpVtbl->GetPreset(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXI3DL2Reverb_SetAllParameters(p,a) (p)->SetAllParameters(a) #define IDirectSoundFXI3DL2Reverb_GetAllParameters(p,a) (p)->GetAllParameters(a) #define IDirectSoundFXI3DL2Reverb_SetPreset(p,a) (p)->SetPreset(a) #define IDirectSoundFXI3DL2Reverb_GetPreset(p,a) (p)->GetPreset(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSoundFXWavesReverb // DEFINE_GUID(IID_IDirectSoundFXWavesReverb,0x46858c3a,0x0dc6,0x45e3,0xb7,0x60,0xd4,0xee,0xf1,0x6c,0xb3,0x25); typedef struct _DSFXWavesReverb { FLOAT fInGain; // [-96.0,0.0] default: 0.0 dB FLOAT fReverbMix; // [-96.0,0.0] default: 0.0 db FLOAT fReverbTime; // [0.001,3000.0] default: 1000.0 ms FLOAT fHighFreqRTRatio; // [0.001,0.999] default: 0.001 } DSFXWavesReverb, *LPDSFXWavesReverb; typedef const DSFXWavesReverb *LPCDSFXWavesReverb; #define DSFX_WAVESREVERB_INGAIN_MIN -96.0f #define DSFX_WAVESREVERB_INGAIN_MAX 0.0f #define DSFX_WAVESREVERB_INGAIN_DEFAULT 0.0f #define DSFX_WAVESREVERB_REVERBMIX_MIN -96.0f #define DSFX_WAVESREVERB_REVERBMIX_MAX 0.0f #define DSFX_WAVESREVERB_REVERBMIX_DEFAULT 0.0f #define DSFX_WAVESREVERB_REVERBTIME_MIN 0.001f #define DSFX_WAVESREVERB_REVERBTIME_MAX 3000.0f #define DSFX_WAVESREVERB_REVERBTIME_DEFAULT 1000.0f #define DSFX_WAVESREVERB_HIGHFREQRTRATIO_MIN 0.001f #define DSFX_WAVESREVERB_HIGHFREQRTRATIO_MAX 0.999f #define DSFX_WAVESREVERB_HIGHFREQRTRATIO_DEFAULT 0.001f #undef INTERFACE #define INTERFACE IDirectSoundFXWavesReverb DECLARE_INTERFACE_(IDirectSoundFXWavesReverb, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundFXWavesReverb methods STDMETHOD(SetAllParameters) (THIS_ LPCDSFXWavesReverb pcDsFxWavesReverb) PURE; STDMETHOD(GetAllParameters) (THIS_ LPDSFXWavesReverb pDsFxWavesReverb) PURE; }; #define IDirectSoundFXWavesReverb_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundFXWavesReverb_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundFXWavesReverb_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXWavesReverb_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) #define IDirectSoundFXWavesReverb_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFXWavesReverb_SetAllParameters(p,a) (p)->SetAllParameters(a) #define IDirectSoundFXWavesReverb_GetAllParameters(p,a) (p)->GetAllParameters(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSoundCaptureFXAec // DEFINE_GUID(IID_IDirectSoundCaptureFXAec, 0xad74143d, 0x903d, 0x4ab7, 0x80, 0x66, 0x28, 0xd3, 0x63, 0x03, 0x6d, 0x65); typedef struct _DSCFXAec { BOOL fEnable; BOOL fNoiseFill; DWORD dwMode; } DSCFXAec, *LPDSCFXAec; typedef const DSCFXAec *LPCDSCFXAec; // These match the AEC_MODE_* constants in the DDK's ksmedia.h file #define DSCFX_AEC_MODE_PASS_THROUGH 0x0 #define DSCFX_AEC_MODE_HALF_DUPLEX 0x1 #define DSCFX_AEC_MODE_FULL_DUPLEX 0x2 // These match the AEC_STATUS_* constants in ksmedia.h #define DSCFX_AEC_STATUS_HISTORY_UNINITIALIZED 0x0 #define DSCFX_AEC_STATUS_HISTORY_CONTINUOUSLY_CONVERGED 0x1 #define DSCFX_AEC_STATUS_HISTORY_PREVIOUSLY_DIVERGED 0x2 #define DSCFX_AEC_STATUS_CURRENTLY_CONVERGED 0x8 #undef INTERFACE #define INTERFACE IDirectSoundCaptureFXAec DECLARE_INTERFACE_(IDirectSoundCaptureFXAec, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundCaptureFXAec methods STDMETHOD(SetAllParameters) (THIS_ LPCDSCFXAec pDscFxAec) PURE; STDMETHOD(GetAllParameters) (THIS_ LPDSCFXAec pDscFxAec) PURE; STDMETHOD(GetStatus) (THIS_ PDWORD pdwStatus) PURE; STDMETHOD(Reset) (THIS) PURE; }; #define IDirectSoundCaptureFXAec_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundCaptureFXAec_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundCaptureFXAec_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundCaptureFXAec_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) #define IDirectSoundCaptureFXAec_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundCaptureFXAec_SetAllParameters(p,a) (p)->SetAllParameters(a) #define IDirectSoundCaptureFXAec_GetAllParameters(p,a) (p)->GetAllParameters(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSoundCaptureFXNoiseSuppress // DEFINE_GUID(IID_IDirectSoundCaptureFXNoiseSuppress, 0xed311e41, 0xfbae, 0x4175, 0x96, 0x25, 0xcd, 0x8, 0x54, 0xf6, 0x93, 0xca); typedef struct _DSCFXNoiseSuppress { BOOL fEnable; } DSCFXNoiseSuppress, *LPDSCFXNoiseSuppress; typedef const DSCFXNoiseSuppress *LPCDSCFXNoiseSuppress; #undef INTERFACE #define INTERFACE IDirectSoundCaptureFXNoiseSuppress DECLARE_INTERFACE_(IDirectSoundCaptureFXNoiseSuppress, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundCaptureFXNoiseSuppress methods STDMETHOD(SetAllParameters) (THIS_ LPCDSCFXNoiseSuppress pcDscFxNoiseSuppress) PURE; STDMETHOD(GetAllParameters) (THIS_ LPDSCFXNoiseSuppress pDscFxNoiseSuppress) PURE; STDMETHOD(Reset) (THIS) PURE; }; #define IDirectSoundCaptureFXNoiseSuppress_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundCaptureFXNoiseSuppress_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundCaptureFXNoiseSuppress_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundCaptureFXNoiseSuppress_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) #define IDirectSoundCaptureFXNoiseSuppress_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundCaptureFXNoiseSuppress_SetAllParameters(p,a) (p)->SetAllParameters(a) #define IDirectSoundCaptureFXNoiseSuppress_GetAllParameters(p,a) (p)->GetAllParameters(a) #endif // !defined(__cplusplus) || defined(CINTERFACE) // // IDirectSoundFullDuplex // #ifndef _IDirectSoundFullDuplex_ #define _IDirectSoundFullDuplex_ #ifdef __cplusplus // 'struct' not 'class' per the way DECLARE_INTERFACE_ is defined struct IDirectSoundFullDuplex; #endif // __cplusplus typedef struct IDirectSoundFullDuplex *LPDIRECTSOUNDFULLDUPLEX; DEFINE_GUID(IID_IDirectSoundFullDuplex, 0xedcb4c7a, 0xdaab, 0x4216, 0xa4, 0x2e, 0x6c, 0x50, 0x59, 0x6d, 0xdc, 0x1d); #undef INTERFACE #define INTERFACE IDirectSoundFullDuplex DECLARE_INTERFACE_(IDirectSoundFullDuplex, IUnknown) { // IUnknown methods STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; // IDirectSoundFullDuplex methods STDMETHOD(Initialize) (THIS_ LPCGUID pCaptureGuid, LPCGUID pRenderGuid, LPCDSCBUFFERDESC lpDscBufferDesc, LPCDSBUFFERDESC lpDsBufferDesc, HWND hWnd, DWORD dwLevel, LPLPDIRECTSOUNDCAPTUREBUFFER8 lplpDirectSoundCaptureBuffer8, LPLPDIRECTSOUNDBUFFER8 lplpDirectSoundBuffer8) PURE; }; #define IDirectSoundFullDuplex_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) #define IDirectSoundFullDuplex_AddRef(p) IUnknown_AddRef(p) #define IDirectSoundFullDuplex_Release(p) IUnknown_Release(p) #if !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFullDuplex_Initialize(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->Initialize(p,a,b,c,d,e,f,g,h) #else // !defined(__cplusplus) || defined(CINTERFACE) #define IDirectSoundFullDuplex_Initialize(p,a,b,c,d,e,f,g,h) (p)->Initialize(a,b,c,d,e,f,g,h) #endif // !defined(__cplusplus) || defined(CINTERFACE) #endif // _IDirectSoundFullDuplex_ #endif // DIRECTSOUND_VERSION >= 0x0800 // // Return Codes // // The function completed successfully #define DS_OK S_OK // The call succeeded, but we had to substitute the 3D algorithm #define DS_NO_VIRTUALIZATION MAKE_HRESULT(0, _FACDS, 10) // The call failed because resources (such as a priority level) // were already being used by another caller #define DSERR_ALLOCATED MAKE_DSHRESULT(10) // The control (vol, pan, etc.) requested by the caller is not available #define DSERR_CONTROLUNAVAIL MAKE_DSHRESULT(30) // An invalid parameter was passed to the returning function #define DSERR_INVALIDPARAM E_INVALIDARG // This call is not valid for the current state of this object #define DSERR_INVALIDCALL MAKE_DSHRESULT(50) // An undetermined error occurred inside the DirectSound subsystem #define DSERR_GENERIC E_FAIL // The caller does not have the priority level required for the function to // succeed #define DSERR_PRIOLEVELNEEDED MAKE_DSHRESULT(70) // Not enough free memory is available to complete the operation #define DSERR_OUTOFMEMORY E_OUTOFMEMORY // The specified WAVE format is not supported #define DSERR_BADFORMAT MAKE_DSHRESULT(100) // The function called is not supported at this time #define DSERR_UNSUPPORTED E_NOTIMPL // No sound driver is available for use #define DSERR_NODRIVER MAKE_DSHRESULT(120) // This object is already initialized #define DSERR_ALREADYINITIALIZED MAKE_DSHRESULT(130) // This object does not support aggregation #define DSERR_NOAGGREGATION CLASS_E_NOAGGREGATION // The buffer memory has been lost, and must be restored #define DSERR_BUFFERLOST MAKE_DSHRESULT(150) // Another app has a higher priority level, preventing this call from // succeeding #define DSERR_OTHERAPPHASPRIO MAKE_DSHRESULT(160) // This object has not been initialized #define DSERR_UNINITIALIZED MAKE_DSHRESULT(170) // The requested COM interface is not available #define DSERR_NOINTERFACE E_NOINTERFACE // Access is denied #define DSERR_ACCESSDENIED E_ACCESSDENIED // Tried to create a DSBCAPS_CTRLFX buffer shorter than DSBSIZE_FX_MIN milliseconds #define DSERR_BUFFERTOOSMALL MAKE_DSHRESULT(180) // Attempt to use DirectSound 8 functionality on an older DirectSound object #define DSERR_DS8_REQUIRED MAKE_DSHRESULT(190) // A circular loop of send effects was detected #define DSERR_SENDLOOP MAKE_DSHRESULT(200) // The GUID specified in an audiopath file does not match a valid MIXIN buffer #define DSERR_BADSENDBUFFERGUID MAKE_DSHRESULT(210) // The object requested was not found (numerically equal to DMUS_E_NOT_FOUND) #define DSERR_OBJECTNOTFOUND MAKE_DSHRESULT(4449) // The effects requested could not be found on the system, or they were found // but in the wrong order, or in the wrong hardware/software locations. #define DSERR_FXUNAVAILABLE MAKE_DSHRESULT(220) // // Flags // #define DSCAPS_PRIMARYMONO 0x00000001 #define DSCAPS_PRIMARYSTEREO 0x00000002 #define DSCAPS_PRIMARY8BIT 0x00000004 #define DSCAPS_PRIMARY16BIT 0x00000008 #define DSCAPS_CONTINUOUSRATE 0x00000010 #define DSCAPS_EMULDRIVER 0x00000020 #define DSCAPS_CERTIFIED 0x00000040 #define DSCAPS_SECONDARYMONO 0x00000100 #define DSCAPS_SECONDARYSTEREO 0x00000200 #define DSCAPS_SECONDARY8BIT 0x00000400 #define DSCAPS_SECONDARY16BIT 0x00000800 #define DSSCL_NORMAL 0x00000001 #define DSSCL_PRIORITY 0x00000002 #define DSSCL_EXCLUSIVE 0x00000003 #define DSSCL_WRITEPRIMARY 0x00000004 #define DSSPEAKER_DIRECTOUT 0x00000000 #define DSSPEAKER_HEADPHONE 0x00000001 #define DSSPEAKER_MONO 0x00000002 #define DSSPEAKER_QUAD 0x00000003 #define DSSPEAKER_STEREO 0x00000004 #define DSSPEAKER_SURROUND 0x00000005 #define DSSPEAKER_5POINT1 0x00000006 // obsolete 5.1 setting #define DSSPEAKER_7POINT1 0x00000007 // obsolete 7.1 setting #define DSSPEAKER_7POINT1_SURROUND 0x00000008 // correct 7.1 Home Theater setting #define DSSPEAKER_7POINT1_WIDE DSSPEAKER_7POINT1 #if (DIRECTSOUND_VERSION >= 0x1000) #define DSSPEAKER_5POINT1_SURROUND 0x00000009 // correct 5.1 setting #define DSSPEAKER_5POINT1_BACK DSSPEAKER_5POINT1 #endif #define DSSPEAKER_GEOMETRY_MIN 0x00000005 // 5 degrees #define DSSPEAKER_GEOMETRY_NARROW 0x0000000A // 10 degrees #define DSSPEAKER_GEOMETRY_WIDE 0x00000014 // 20 degrees #define DSSPEAKER_GEOMETRY_MAX 0x000000B4 // 180 degrees #define DSSPEAKER_COMBINED(c, g) ((DWORD)(((BYTE)(c)) | ((DWORD)((BYTE)(g))) << 16)) #define DSSPEAKER_CONFIG(a) ((BYTE)(a)) #define DSSPEAKER_GEOMETRY(a) ((BYTE)(((DWORD)(a) >> 16) & 0x00FF)) #define DSBCAPS_PRIMARYBUFFER 0x00000001 #define DSBCAPS_STATIC 0x00000002 #define DSBCAPS_LOCHARDWARE 0x00000004 #define DSBCAPS_LOCSOFTWARE 0x00000008 #define DSBCAPS_CTRL3D 0x00000010 #define DSBCAPS_CTRLFREQUENCY 0x00000020 #define DSBCAPS_CTRLPAN 0x00000040 #define DSBCAPS_CTRLVOLUME 0x00000080 #define DSBCAPS_CTRLPOSITIONNOTIFY 0x00000100 #define DSBCAPS_CTRLFX 0x00000200 #define DSBCAPS_STICKYFOCUS 0x00004000 #define DSBCAPS_GLOBALFOCUS 0x00008000 #define DSBCAPS_GETCURRENTPOSITION2 0x00010000 #define DSBCAPS_MUTE3DATMAXDISTANCE 0x00020000 #define DSBCAPS_LOCDEFER 0x00040000 #if (DIRECTSOUND_VERSION >= 0x1000) // Force GetCurrentPosition() to return a buffer's true play position; // unmodified by aids to enhance backward compatibility. #define DSBCAPS_TRUEPLAYPOSITION 0x00080000 #endif #define DSBPLAY_LOOPING 0x00000001 #define DSBPLAY_LOCHARDWARE 0x00000002 #define DSBPLAY_LOCSOFTWARE 0x00000004 #define DSBPLAY_TERMINATEBY_TIME 0x00000008 #define DSBPLAY_TERMINATEBY_DISTANCE 0x000000010 #define DSBPLAY_TERMINATEBY_PRIORITY 0x000000020 #define DSBSTATUS_PLAYING 0x00000001 #define DSBSTATUS_BUFFERLOST 0x00000002 #define DSBSTATUS_LOOPING 0x00000004 #define DSBSTATUS_LOCHARDWARE 0x00000008 #define DSBSTATUS_LOCSOFTWARE 0x00000010 #define DSBSTATUS_TERMINATED 0x00000020 #define DSBLOCK_FROMWRITECURSOR 0x00000001 #define DSBLOCK_ENTIREBUFFER 0x00000002 #define DSBFREQUENCY_ORIGINAL 0 #define DSBFREQUENCY_MIN 100 #if DIRECTSOUND_VERSION >= 0x0900 #define DSBFREQUENCY_MAX 200000 #else #define DSBFREQUENCY_MAX 100000 #endif #define DSBPAN_LEFT -10000 #define DSBPAN_CENTER 0 #define DSBPAN_RIGHT 10000 #define DSBVOLUME_MIN -10000 #define DSBVOLUME_MAX 0 #define DSBSIZE_MIN 4 #define DSBSIZE_MAX 0x0FFFFFFF #define DSBSIZE_FX_MIN 150 // NOTE: Milliseconds, not bytes #define DSBNOTIFICATIONS_MAX 100000UL #define DS3DMODE_NORMAL 0x00000000 #define DS3DMODE_HEADRELATIVE 0x00000001 #define DS3DMODE_DISABLE 0x00000002 #define DS3D_IMMEDIATE 0x00000000 #define DS3D_DEFERRED 0x00000001 #define DS3D_MINDISTANCEFACTOR FLT_MIN #define DS3D_MAXDISTANCEFACTOR FLT_MAX #define DS3D_DEFAULTDISTANCEFACTOR 1.0f #define DS3D_MINROLLOFFFACTOR 0.0f #define DS3D_MAXROLLOFFFACTOR 10.0f #define DS3D_DEFAULTROLLOFFFACTOR 1.0f #define DS3D_MINDOPPLERFACTOR 0.0f #define DS3D_MAXDOPPLERFACTOR 10.0f #define DS3D_DEFAULTDOPPLERFACTOR 1.0f #define DS3D_DEFAULTMINDISTANCE 1.0f #define DS3D_DEFAULTMAXDISTANCE 1000000000.0f #define DS3D_MINCONEANGLE 0 #define DS3D_MAXCONEANGLE 360 #define DS3D_DEFAULTCONEANGLE 360 #define DS3D_DEFAULTCONEOUTSIDEVOLUME DSBVOLUME_MAX // IDirectSoundCapture attributes #define DSCCAPS_EMULDRIVER DSCAPS_EMULDRIVER #define DSCCAPS_CERTIFIED DSCAPS_CERTIFIED #define DSCCAPS_MULTIPLECAPTURE 0x00000001 // IDirectSoundCaptureBuffer attributes #define DSCBCAPS_WAVEMAPPED 0x80000000 #if DIRECTSOUND_VERSION >= 0x0800 #define DSCBCAPS_CTRLFX 0x00000200 #endif #define DSCBLOCK_ENTIREBUFFER 0x00000001 #define DSCBSTATUS_CAPTURING 0x00000001 #define DSCBSTATUS_LOOPING 0x00000002 #define DSCBSTART_LOOPING 0x00000001 #define DSBPN_OFFSETSTOP 0xFFFFFFFF #define DS_CERTIFIED 0x00000000 #define DS_UNCERTIFIED 0x00000001 // // Flags for the I3DL2 effects // // // I3DL2 Material Presets // enum { DSFX_I3DL2_MATERIAL_PRESET_SINGLEWINDOW, DSFX_I3DL2_MATERIAL_PRESET_DOUBLEWINDOW, DSFX_I3DL2_MATERIAL_PRESET_THINDOOR, DSFX_I3DL2_MATERIAL_PRESET_THICKDOOR, DSFX_I3DL2_MATERIAL_PRESET_WOODWALL, DSFX_I3DL2_MATERIAL_PRESET_BRICKWALL, DSFX_I3DL2_MATERIAL_PRESET_STONEWALL, DSFX_I3DL2_MATERIAL_PRESET_CURTAIN }; #define I3DL2_MATERIAL_PRESET_SINGLEWINDOW -2800,0.71f #define I3DL2_MATERIAL_PRESET_DOUBLEWINDOW -5000,0.40f #define I3DL2_MATERIAL_PRESET_THINDOOR -1800,0.66f #define I3DL2_MATERIAL_PRESET_THICKDOOR -4400,0.64f #define I3DL2_MATERIAL_PRESET_WOODWALL -4000,0.50f #define I3DL2_MATERIAL_PRESET_BRICKWALL -5000,0.60f #define I3DL2_MATERIAL_PRESET_STONEWALL -6000,0.68f #define I3DL2_MATERIAL_PRESET_CURTAIN -1200,0.15f enum { DSFX_I3DL2_ENVIRONMENT_PRESET_DEFAULT, DSFX_I3DL2_ENVIRONMENT_PRESET_GENERIC, DSFX_I3DL2_ENVIRONMENT_PRESET_PADDEDCELL, DSFX_I3DL2_ENVIRONMENT_PRESET_ROOM, DSFX_I3DL2_ENVIRONMENT_PRESET_BATHROOM, DSFX_I3DL2_ENVIRONMENT_PRESET_LIVINGROOM, DSFX_I3DL2_ENVIRONMENT_PRESET_STONEROOM, DSFX_I3DL2_ENVIRONMENT_PRESET_AUDITORIUM, DSFX_I3DL2_ENVIRONMENT_PRESET_CONCERTHALL, DSFX_I3DL2_ENVIRONMENT_PRESET_CAVE, DSFX_I3DL2_ENVIRONMENT_PRESET_ARENA, DSFX_I3DL2_ENVIRONMENT_PRESET_HANGAR, DSFX_I3DL2_ENVIRONMENT_PRESET_CARPETEDHALLWAY, DSFX_I3DL2_ENVIRONMENT_PRESET_HALLWAY, DSFX_I3DL2_ENVIRONMENT_PRESET_STONECORRIDOR, DSFX_I3DL2_ENVIRONMENT_PRESET_ALLEY, DSFX_I3DL2_ENVIRONMENT_PRESET_FOREST, DSFX_I3DL2_ENVIRONMENT_PRESET_CITY, DSFX_I3DL2_ENVIRONMENT_PRESET_MOUNTAINS, DSFX_I3DL2_ENVIRONMENT_PRESET_QUARRY, DSFX_I3DL2_ENVIRONMENT_PRESET_PLAIN, DSFX_I3DL2_ENVIRONMENT_PRESET_PARKINGLOT, DSFX_I3DL2_ENVIRONMENT_PRESET_SEWERPIPE, DSFX_I3DL2_ENVIRONMENT_PRESET_UNDERWATER, DSFX_I3DL2_ENVIRONMENT_PRESET_SMALLROOM, DSFX_I3DL2_ENVIRONMENT_PRESET_MEDIUMROOM, DSFX_I3DL2_ENVIRONMENT_PRESET_LARGEROOM, DSFX_I3DL2_ENVIRONMENT_PRESET_MEDIUMHALL, DSFX_I3DL2_ENVIRONMENT_PRESET_LARGEHALL, DSFX_I3DL2_ENVIRONMENT_PRESET_PLATE }; // // I3DL2 Reverberation Presets Values // #define I3DL2_ENVIRONMENT_PRESET_DEFAULT -1000, -100, 0.0f, 1.49f, 0.83f, -2602, 0.007f, 200, 0.011f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_GENERIC -1000, -100, 0.0f, 1.49f, 0.83f, -2602, 0.007f, 200, 0.011f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_PADDEDCELL -1000,-6000, 0.0f, 0.17f, 0.10f, -1204, 0.001f, 207, 0.002f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_ROOM -1000, -454, 0.0f, 0.40f, 0.83f, -1646, 0.002f, 53, 0.003f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_BATHROOM -1000,-1200, 0.0f, 1.49f, 0.54f, -370, 0.007f, 1030, 0.011f, 100.0f, 60.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_LIVINGROOM -1000,-6000, 0.0f, 0.50f, 0.10f, -1376, 0.003f, -1104, 0.004f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_STONEROOM -1000, -300, 0.0f, 2.31f, 0.64f, -711, 0.012f, 83, 0.017f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_AUDITORIUM -1000, -476, 0.0f, 4.32f, 0.59f, -789, 0.020f, -289, 0.030f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_CONCERTHALL -1000, -500, 0.0f, 3.92f, 0.70f, -1230, 0.020f, -2, 0.029f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_CAVE -1000, 0, 0.0f, 2.91f, 1.30f, -602, 0.015f, -302, 0.022f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_ARENA -1000, -698, 0.0f, 7.24f, 0.33f, -1166, 0.020f, 16, 0.030f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_HANGAR -1000,-1000, 0.0f,10.05f, 0.23f, -602, 0.020f, 198, 0.030f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_CARPETEDHALLWAY -1000,-4000, 0.0f, 0.30f, 0.10f, -1831, 0.002f, -1630, 0.030f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_HALLWAY -1000, -300, 0.0f, 1.49f, 0.59f, -1219, 0.007f, 441, 0.011f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_STONECORRIDOR -1000, -237, 0.0f, 2.70f, 0.79f, -1214, 0.013f, 395, 0.020f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_ALLEY -1000, -270, 0.0f, 1.49f, 0.86f, -1204, 0.007f, -4, 0.011f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_FOREST -1000,-3300, 0.0f, 1.49f, 0.54f, -2560, 0.162f, -613, 0.088f, 79.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_CITY -1000, -800, 0.0f, 1.49f, 0.67f, -2273, 0.007f, -2217, 0.011f, 50.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_MOUNTAINS -1000,-2500, 0.0f, 1.49f, 0.21f, -2780, 0.300f, -2014, 0.100f, 27.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_QUARRY -1000,-1000, 0.0f, 1.49f, 0.83f,-10000, 0.061f, 500, 0.025f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_PLAIN -1000,-2000, 0.0f, 1.49f, 0.50f, -2466, 0.179f, -2514, 0.100f, 21.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_PARKINGLOT -1000, 0, 0.0f, 1.65f, 1.50f, -1363, 0.008f, -1153, 0.012f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_SEWERPIPE -1000,-1000, 0.0f, 2.81f, 0.14f, 429, 0.014f, 648, 0.021f, 80.0f, 60.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_UNDERWATER -1000,-4000, 0.0f, 1.49f, 0.10f, -449, 0.007f, 1700, 0.011f, 100.0f, 100.0f, 5000.0f // // Examples simulating 'musical' reverb presets // // Name Decay time Description // Small Room 1.1s A small size room with a length of 5m or so. // Medium Room 1.3s A medium size room with a length of 10m or so. // Large Room 1.5s A large size room suitable for live performances. // Medium Hall 1.8s A medium size concert hall. // Large Hall 1.8s A large size concert hall suitable for a full orchestra. // Plate 1.3s A plate reverb simulation. // #define I3DL2_ENVIRONMENT_PRESET_SMALLROOM -1000, -600, 0.0f, 1.10f, 0.83f, -400, 0.005f, 500, 0.010f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_MEDIUMROOM -1000, -600, 0.0f, 1.30f, 0.83f, -1000, 0.010f, -200, 0.020f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_LARGEROOM -1000, -600, 0.0f, 1.50f, 0.83f, -1600, 0.020f, -1000, 0.040f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_MEDIUMHALL -1000, -600, 0.0f, 1.80f, 0.70f, -1300, 0.015f, -800, 0.030f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_LARGEHALL -1000, -600, 0.0f, 1.80f, 0.70f, -2000, 0.030f, -1400, 0.060f, 100.0f, 100.0f, 5000.0f #define I3DL2_ENVIRONMENT_PRESET_PLATE -1000, -200, 0.0f, 1.30f, 0.90f, 0, 0.002f, 0, 0.010f, 100.0f, 75.0f, 5000.0f // // DirectSound3D Algorithms // // Default DirectSound3D algorithm {00000000-0000-0000-0000-000000000000} #define DS3DALG_DEFAULT GUID_NULL // No virtualization (Pan3D) {C241333F-1C1B-11d2-94F5-00C04FC28ACA} DEFINE_GUID(DS3DALG_NO_VIRTUALIZATION, 0xc241333f, 0x1c1b, 0x11d2, 0x94, 0xf5, 0x0, 0xc0, 0x4f, 0xc2, 0x8a, 0xca); // High-quality HRTF algorithm {C2413340-1C1B-11d2-94F5-00C04FC28ACA} DEFINE_GUID(DS3DALG_HRTF_FULL, 0xc2413340, 0x1c1b, 0x11d2, 0x94, 0xf5, 0x0, 0xc0, 0x4f, 0xc2, 0x8a, 0xca); // Lower-quality HRTF algorithm {C2413342-1C1B-11d2-94F5-00C04FC28ACA} DEFINE_GUID(DS3DALG_HRTF_LIGHT, 0xc2413342, 0x1c1b, 0x11d2, 0x94, 0xf5, 0x0, 0xc0, 0x4f, 0xc2, 0x8a, 0xca); #if DIRECTSOUND_VERSION >= 0x0800 // // DirectSound Internal Effect Algorithms // // Gargle {DAFD8210-5711-4B91-9FE3-F75B7AE279BF} DEFINE_GUID(GUID_DSFX_STANDARD_GARGLE, 0xdafd8210, 0x5711, 0x4b91, 0x9f, 0xe3, 0xf7, 0x5b, 0x7a, 0xe2, 0x79, 0xbf); // Chorus {EFE6629C-81F7-4281-BD91-C9D604A95AF6} DEFINE_GUID(GUID_DSFX_STANDARD_CHORUS, 0xefe6629c, 0x81f7, 0x4281, 0xbd, 0x91, 0xc9, 0xd6, 0x04, 0xa9, 0x5a, 0xf6); // Flanger {EFCA3D92-DFD8-4672-A603-7420894BAD98} DEFINE_GUID(GUID_DSFX_STANDARD_FLANGER, 0xefca3d92, 0xdfd8, 0x4672, 0xa6, 0x03, 0x74, 0x20, 0x89, 0x4b, 0xad, 0x98); // Echo/Delay {EF3E932C-D40B-4F51-8CCF-3F98F1B29D5D} DEFINE_GUID(GUID_DSFX_STANDARD_ECHO, 0xef3e932c, 0xd40b, 0x4f51, 0x8c, 0xcf, 0x3f, 0x98, 0xf1, 0xb2, 0x9d, 0x5d); // Distortion {EF114C90-CD1D-484E-96E5-09CFAF912A21} DEFINE_GUID(GUID_DSFX_STANDARD_DISTORTION, 0xef114c90, 0xcd1d, 0x484e, 0x96, 0xe5, 0x09, 0xcf, 0xaf, 0x91, 0x2a, 0x21); // Compressor/Limiter {EF011F79-4000-406D-87AF-BFFB3FC39D57} DEFINE_GUID(GUID_DSFX_STANDARD_COMPRESSOR, 0xef011f79, 0x4000, 0x406d, 0x87, 0xaf, 0xbf, 0xfb, 0x3f, 0xc3, 0x9d, 0x57); // Parametric Equalization {120CED89-3BF4-4173-A132-3CB406CF3231} DEFINE_GUID(GUID_DSFX_STANDARD_PARAMEQ, 0x120ced89, 0x3bf4, 0x4173, 0xa1, 0x32, 0x3c, 0xb4, 0x06, 0xcf, 0x32, 0x31); // I3DL2 Environmental Reverberation: Reverb (Listener) Effect {EF985E71-D5C7-42D4-BA4D-2D073E2E96F4} DEFINE_GUID(GUID_DSFX_STANDARD_I3DL2REVERB, 0xef985e71, 0xd5c7, 0x42d4, 0xba, 0x4d, 0x2d, 0x07, 0x3e, 0x2e, 0x96, 0xf4); // Waves Reverberation {87FC0268-9A55-4360-95AA-004A1D9DE26C} DEFINE_GUID(GUID_DSFX_WAVES_REVERB, 0x87fc0268, 0x9a55, 0x4360, 0x95, 0xaa, 0x00, 0x4a, 0x1d, 0x9d, 0xe2, 0x6c); // // DirectSound Capture Effect Algorithms // // Acoustic Echo Canceller {BF963D80-C559-11D0-8A2B-00A0C9255AC1} // Matches KSNODETYPE_ACOUSTIC_ECHO_CANCEL in ksmedia.h DEFINE_GUID(GUID_DSCFX_CLASS_AEC, 0xBF963D80L, 0xC559, 0x11D0, 0x8A, 0x2B, 0x00, 0xA0, 0xC9, 0x25, 0x5A, 0xC1); // Microsoft AEC {CDEBB919-379A-488a-8765-F53CFD36DE40} DEFINE_GUID(GUID_DSCFX_MS_AEC, 0xcdebb919, 0x379a, 0x488a, 0x87, 0x65, 0xf5, 0x3c, 0xfd, 0x36, 0xde, 0x40); // System AEC {1C22C56D-9879-4f5b-A389-27996DDC2810} DEFINE_GUID(GUID_DSCFX_SYSTEM_AEC, 0x1c22c56d, 0x9879, 0x4f5b, 0xa3, 0x89, 0x27, 0x99, 0x6d, 0xdc, 0x28, 0x10); // Noise Supression {E07F903F-62FD-4e60-8CDD-DEA7236665B5} // Matches KSNODETYPE_NOISE_SUPPRESS in post Windows ME DDK's ksmedia.h DEFINE_GUID(GUID_DSCFX_CLASS_NS, 0xe07f903f, 0x62fd, 0x4e60, 0x8c, 0xdd, 0xde, 0xa7, 0x23, 0x66, 0x65, 0xb5); // Microsoft Noise Suppresion {11C5C73B-66E9-4ba1-A0BA-E814C6EED92D} DEFINE_GUID(GUID_DSCFX_MS_NS, 0x11c5c73b, 0x66e9, 0x4ba1, 0xa0, 0xba, 0xe8, 0x14, 0xc6, 0xee, 0xd9, 0x2d); // System Noise Suppresion {5AB0882E-7274-4516-877D-4EEE99BA4FD0} DEFINE_GUID(GUID_DSCFX_SYSTEM_NS, 0x5ab0882e, 0x7274, 0x4516, 0x87, 0x7d, 0x4e, 0xee, 0x99, 0xba, 0x4f, 0xd0); #endif // DIRECTSOUND_VERSION >= 0x0800 #endif // __DSOUND_INCLUDED__ #ifdef __cplusplus }; #endif // __cplusplus ================================================ FILE: vendor/github.com/thestk/rtaudio/include/functiondiscoverykeys_devpkey.h ================================================ #pragma once /*++ Copyright (c) Microsoft Corporation. All rights reserved. Module Name: devpkey.h Abstract: Defines property keys for the Plug and Play Device Property API. Author: Jim Cavalaris (jamesca) 10-14-2003 Environment: User-mode only. Revision History: 14-October-2003 jamesca Creation and initial implementation. 20-June-2006 dougb Copied Jim's version replaced "DEFINE_DEVPROPKEY(DEVPKEY_" with "DEFINE_PROPERTYKEY(PKEY_" --*/ //#include // // _NAME // DEFINE_PROPERTYKEY(PKEY_NAME, 0xb725f130, 0x47ef, 0x101a, 0xa5, 0xf1, 0x02, 0x60, 0x8c, 0x9e, 0xeb, 0xac, 10); // DEVPROP_TYPE_STRING // // Device properties // These PKEYs correspond to the old setupapi SPDRP_XXX properties // DEFINE_PROPERTYKEY(PKEY_Device_DeviceDesc, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 2); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_HardwareIds, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 3); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_Device_CompatibleIds, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 4); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_Device_Service, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 6); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_Class, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 9); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_ClassGuid, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 10); // DEVPROP_TYPE_GUID DEFINE_PROPERTYKEY(PKEY_Device_Driver, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 11); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_ConfigFlags, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 12); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_Manufacturer, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 13); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_FriendlyName, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 14); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_LocationInfo, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 15); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_PDOName, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 16); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_Capabilities, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 17); // DEVPROP_TYPE_UNINT32 DEFINE_PROPERTYKEY(PKEY_Device_UINumber, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 18); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_UpperFilters, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 19); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_Device_LowerFilters, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 20); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_Device_BusTypeGuid, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 21); // DEVPROP_TYPE_GUID DEFINE_PROPERTYKEY(PKEY_Device_LegacyBusType, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 22); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_BusNumber, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 23); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_EnumeratorName, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 24); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_Security, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 25); // DEVPROP_TYPE_SECURITY_DESCRIPTOR DEFINE_PROPERTYKEY(PKEY_Device_SecuritySDS, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 26); // DEVPROP_TYPE_SECURITY_DESCRIPTOR_STRING DEFINE_PROPERTYKEY(PKEY_Device_DevType, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 27); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_Exclusive, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 28); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_Characteristics, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 29); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_Address, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 30); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_UINumberDescFormat, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 31); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_PowerData, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 32); // DEVPROP_TYPE_BINARY DEFINE_PROPERTYKEY(PKEY_Device_RemovalPolicy, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 33); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_RemovalPolicyDefault, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 34); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_RemovalPolicyOverride, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 35); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_InstallState, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 36); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_LocationPaths, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 37); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_Device_BaseContainerId, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 38); // DEVPROP_TYPE_GUID // // Device properties // These PKEYs correspond to a device's status and problem code // DEFINE_PROPERTYKEY(PKEY_Device_DevNodeStatus, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 2); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_ProblemCode, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 3); // DEVPROP_TYPE_UINT32 // // Device properties // These PKEYs correspond to device relations // DEFINE_PROPERTYKEY(PKEY_Device_EjectionRelations, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 4); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_Device_RemovalRelations, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 5); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_Device_PowerRelations, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 6); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_Device_BusRelations, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 7); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_Device_Parent, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 8); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_Children, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 9); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_Device_Siblings, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 10); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_Device_TransportRelations, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 11); // DEVPROP_TYPE_STRING_LIST // // Other Device properties // DEFINE_PROPERTYKEY(PKEY_Device_Reported, 0x80497100, 0x8c73, 0x48b9, 0xaa, 0xd9, 0xce, 0x38, 0x7e, 0x19, 0xc5, 0x6e, 2); // DEVPROP_TYPE_BOOLEAN DEFINE_PROPERTYKEY(PKEY_Device_Legacy, 0x80497100, 0x8c73, 0x48b9, 0xaa, 0xd9, 0xce, 0x38, 0x7e, 0x19, 0xc5, 0x6e, 3); // DEVPROP_TYPE_BOOLEAN DEFINE_PROPERTYKEY(PKEY_Device_InstanceId, 0x78c34fc8, 0x104a, 0x4aca, 0x9e, 0xa4, 0x52, 0x4d, 0x52, 0x99, 0x6e, 0x57, 256); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_ContainerId, 0x8c7ed206, 0x3f8a, 0x4827, 0xb3, 0xab, 0xae, 0x9e, 0x1f, 0xae, 0xfc, 0x6c, 2); // DEVPROP_TYPE_GUID DEFINE_PROPERTYKEY(PKEY_Device_ModelId, 0x80d81ea6, 0x7473, 0x4b0c, 0x82, 0x16, 0xef, 0xc1, 0x1a, 0x2c, 0x4c, 0x8b, 2); // DEVPROP_TYPE_GUID DEFINE_PROPERTYKEY(PKEY_Device_FriendlyNameAttributes, 0x80d81ea6, 0x7473, 0x4b0c, 0x82, 0x16, 0xef, 0xc1, 0x1a, 0x2c, 0x4c, 0x8b, 3); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_ManufacturerAttributes, 0x80d81ea6, 0x7473, 0x4b0c, 0x82, 0x16, 0xef, 0xc1, 0x1a, 0x2c, 0x4c, 0x8b, 4); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_PresenceNotForDevice, 0x80d81ea6, 0x7473, 0x4b0c, 0x82, 0x16, 0xef, 0xc1, 0x1a, 0x2c, 0x4c, 0x8b, 5); // DEVPROP_TYPE_BOOLEAN DEFINE_PROPERTYKEY(PKEY_Numa_Proximity_Domain, 0x540b947e, 0x8b40, 0x45bc, 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 1); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_DHP_Rebalance_Policy, 0x540b947e, 0x8b40, 0x45bc, 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 2); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_Numa_Node, 0x540b947e, 0x8b40, 0x45bc, 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 3); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_BusReportedDeviceDesc, 0x540b947e, 0x8b40, 0x45bc, 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 4); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_InstallInProgress, 0x83da6326, 0x97a6, 0x4088, 0x94, 0x53, 0xa1, 0x92, 0x3f, 0x57, 0x3b, 0x29, 9); // DEVPROP_TYPE_BOOLEAN // // Device driver properties // DEFINE_PROPERTYKEY(PKEY_Device_DriverDate, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 2); // DEVPROP_TYPE_FILETIME DEFINE_PROPERTYKEY(PKEY_Device_DriverVersion, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 3); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_DriverDesc, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 4); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_DriverInfPath, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 5); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_DriverInfSection, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 6); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_DriverInfSectionExt, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 7); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_MatchingDeviceId, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 8); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_DriverProvider, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 9); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_DriverPropPageProvider, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 10); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_DriverCoInstallers, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 11); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_Device_ResourcePickerTags, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 12); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_ResourcePickerExceptions, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 13); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_Device_DriverRank, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 14); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_DriverLogoLevel, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 15); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_Device_NoConnectSound, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 17); // DEVPROP_TYPE_BOOLEAN DEFINE_PROPERTYKEY(PKEY_Device_GenericDriverInstalled, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 18); // DEVPROP_TYPE_BOOLEAN DEFINE_PROPERTYKEY(PKEY_Device_AdditionalSoftwareRequested, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 19);// DEVPROP_TYPE_BOOLEAN // // Device safe-removal properties // DEFINE_PROPERTYKEY(PKEY_Device_SafeRemovalRequired, 0xafd97640, 0x86a3, 0x4210, 0xb6, 0x7c, 0x28, 0x9c, 0x41, 0xaa, 0xbe, 0x55, 2); // DEVPROP_TYPE_BOOLEAN DEFINE_PROPERTYKEY(PKEY_Device_SafeRemovalRequiredOverride, 0xafd97640, 0x86a3, 0x4210, 0xb6, 0x7c, 0x28, 0x9c, 0x41, 0xaa, 0xbe, 0x55, 3);// DEVPROP_TYPE_BOOLEAN // // Device properties that were set by the driver package that was installed // on the device. // DEFINE_PROPERTYKEY(PKEY_DrvPkg_Model, 0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 2); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_DrvPkg_VendorWebSite, 0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 3); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_DrvPkg_DetailedDescription, 0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 4); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_DrvPkg_DocumentationLink, 0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 5); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_DrvPkg_Icon, 0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 6); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_DrvPkg_BrandingIcon, 0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 7); // DEVPROP_TYPE_STRING_LIST // // Device setup class properties // These PKEYs correspond to the old setupapi SPCRP_XXX properties // DEFINE_PROPERTYKEY(PKEY_DeviceClass_UpperFilters, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 19); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_DeviceClass_LowerFilters, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 20); // DEVPROP_TYPE_STRING_LIST DEFINE_PROPERTYKEY(PKEY_DeviceClass_Security, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 25); // DEVPROP_TYPE_SECURITY_DESCRIPTOR DEFINE_PROPERTYKEY(PKEY_DeviceClass_SecuritySDS, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 26); // DEVPROP_TYPE_SECURITY_DESCRIPTOR_STRING DEFINE_PROPERTYKEY(PKEY_DeviceClass_DevType, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 27); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_DeviceClass_Exclusive, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 28); // DEVPROP_TYPE_UINT32 DEFINE_PROPERTYKEY(PKEY_DeviceClass_Characteristics, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 29); // DEVPROP_TYPE_UINT32 // // Device setup class properties // These PKEYs correspond to registry values under the device class GUID key // DEFINE_PROPERTYKEY(PKEY_DeviceClass_Name, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 2); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_DeviceClass_ClassName, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 3); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_DeviceClass_Icon, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 4); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_DeviceClass_ClassInstaller, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 5); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_DeviceClass_PropPageProvider, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 6); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_DeviceClass_NoInstallClass, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 7); // DEVPROP_TYPE_BOOLEAN DEFINE_PROPERTYKEY(PKEY_DeviceClass_NoDisplayClass, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 8); // DEVPROP_TYPE_BOOLEAN DEFINE_PROPERTYKEY(PKEY_DeviceClass_SilentInstall, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 9); // DEVPROP_TYPE_BOOLEAN DEFINE_PROPERTYKEY(PKEY_DeviceClass_NoUseClass, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 10); // DEVPROP_TYPE_BOOLEAN DEFINE_PROPERTYKEY(PKEY_DeviceClass_DefaultService, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 11); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_DeviceClass_IconPath, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 12); // DEVPROP_TYPE_STRING_LIST // // Other Device setup class properties // DEFINE_PROPERTYKEY(PKEY_DeviceClass_ClassCoInstallers, 0x713d1703, 0xa2e2, 0x49f5, 0x92, 0x14, 0x56, 0x47, 0x2e, 0xf3, 0xda, 0x5c, 2); // DEVPROP_TYPE_STRING_LIST // // Device interface properties // DEFINE_PROPERTYKEY(PKEY_DeviceInterface_FriendlyName, 0x026e516e, 0xb814, 0x414b, 0x83, 0xcd, 0x85, 0x6d, 0x6f, 0xef, 0x48, 0x22, 2); // DEVPROP_TYPE_STRING DEFINE_PROPERTYKEY(PKEY_DeviceInterface_Enabled, 0x026e516e, 0xb814, 0x414b, 0x83, 0xcd, 0x85, 0x6d, 0x6f, 0xef, 0x48, 0x22, 3); // DEVPROP_TYPE_BOOLEAN DEFINE_PROPERTYKEY(PKEY_DeviceInterface_ClassGuid, 0x026e516e, 0xb814, 0x414b, 0x83, 0xcd, 0x85, 0x6d, 0x6f, 0xef, 0x48, 0x22, 4); // DEVPROP_TYPE_GUID // // Device interface class properties // DEFINE_PROPERTYKEY(PKEY_DeviceInterfaceClass_DefaultInterface, 0x14c83a99, 0x0b3f, 0x44b7, 0xbe, 0x4c, 0xa1, 0x78, 0xd3, 0x99, 0x05, 0x64, 2); // DEVPROP_TYPE_STRING ================================================ FILE: vendor/github.com/thestk/rtaudio/include/ginclude.h ================================================ #ifndef __gInclude__ #define __gInclude__ #if SGI #undef BEOS #undef MAC #undef WINDOWS // #define ASIO_BIG_ENDIAN 1 #define ASIO_CPU_MIPS 1 #elif defined WIN32 #undef BEOS #undef MAC #undef SGI #define WINDOWS 1 #define ASIO_LITTLE_ENDIAN 1 #define ASIO_CPU_X86 1 #elif BEOS #undef MAC #undef SGI #undef WINDOWS #define ASIO_LITTLE_ENDIAN 1 #define ASIO_CPU_X86 1 // #else #define MAC 1 #undef BEOS #undef WINDOWS #undef SGI #define ASIO_BIG_ENDIAN 1 #define ASIO_CPU_PPC 1 #endif // always #define NATIVE_INT64 0 #define IEEE754_64FLOAT 1 #endif // __gInclude__ ================================================ FILE: vendor/github.com/thestk/rtaudio/include/iasiodrv.h ================================================ #include "asiosys.h" #include "asio.h" /* Forward Declarations */ #ifndef __ASIODRIVER_FWD_DEFINED__ #define __ASIODRIVER_FWD_DEFINED__ typedef interface IASIO IASIO; #endif /* __ASIODRIVER_FWD_DEFINED__ */ interface IASIO : public IUnknown { virtual ASIOBool init(void *sysHandle) = 0; virtual void getDriverName(char *name) = 0; virtual long getDriverVersion() = 0; virtual void getErrorMessage(char *string) = 0; virtual ASIOError start() = 0; virtual ASIOError stop() = 0; virtual ASIOError getChannels(long *numInputChannels, long *numOutputChannels) = 0; virtual ASIOError getLatencies(long *inputLatency, long *outputLatency) = 0; virtual ASIOError getBufferSize(long *minSize, long *maxSize, long *preferredSize, long *granularity) = 0; virtual ASIOError canSampleRate(ASIOSampleRate sampleRate) = 0; virtual ASIOError getSampleRate(ASIOSampleRate *sampleRate) = 0; virtual ASIOError setSampleRate(ASIOSampleRate sampleRate) = 0; virtual ASIOError getClockSources(ASIOClockSource *clocks, long *numSources) = 0; virtual ASIOError setClockSource(long reference) = 0; virtual ASIOError getSamplePosition(ASIOSamples *sPos, ASIOTimeStamp *tStamp) = 0; virtual ASIOError getChannelInfo(ASIOChannelInfo *info) = 0; virtual ASIOError createBuffers(ASIOBufferInfo *bufferInfos, long numChannels, long bufferSize, ASIOCallbacks *callbacks) = 0; virtual ASIOError disposeBuffers() = 0; virtual ASIOError controlPanel() = 0; virtual ASIOError future(long selector,void *opt) = 0; virtual ASIOError outputReady() = 0; }; ================================================ FILE: vendor/github.com/thestk/rtaudio/include/iasiothiscallresolver.cpp ================================================ /* IASIOThiscallResolver.cpp see the comments in iasiothiscallresolver.h for the top level description - this comment describes the technical details of the implementation. The latest version of this file is available from: http://www.audiomulch.com/~rossb/code/calliasio please email comments to Ross Bencina BACKGROUND The IASIO interface declared in the Steinberg ASIO 2 SDK declares functions with no explicit calling convention. This causes MSVC++ to default to using the thiscall convention, which is a proprietary convention not implemented by some non-microsoft compilers - notably borland BCC, C++Builder, and gcc. MSVC++ is the defacto standard compiler used by Steinberg. As a result of this situation, the ASIO sdk will compile with any compiler, however attempting to execute the compiled code will cause a crash due to different default calling conventions on non-Microsoft compilers. IASIOThiscallResolver solves the problem by providing an adapter class that delegates to the IASIO interface using the correct calling convention (thiscall). Due to the lack of support for thiscall in the Borland and GCC compilers, the calls have been implemented in assembly language. A number of macros are defined for thiscall function calls with different numbers of parameters, with and without return values - it may be possible to modify the format of these macros to make them work with other inline assemblers. THISCALL DEFINITION A number of definitions of the thiscall calling convention are floating around the internet. The following definition has been validated against output from the MSVC++ compiler: For non-vararg functions, thiscall works as follows: the object (this) pointer is passed in ECX. All arguments are passed on the stack in right to left order. The return value is placed in EAX. The callee clears the passed arguments from the stack. FINDING FUNCTION POINTERS FROM AN IASIO POINTER The first field of a COM object is a pointer to its vtble. Thus a pointer to an object implementing the IASIO interface also points to a pointer to that object's vtbl. The vtble is a table of function pointers for all of the virtual functions exposed by the implemented interfaces. If we consider a variable declared as a pointer to IASO: IASIO *theAsioDriver theAsioDriver points to: object implementing IASIO { IASIOvtbl *vtbl other data } in other words, theAsioDriver points to a pointer to an IASIOvtbl vtbl points to a table of function pointers: IASIOvtbl ( interface IASIO : public IUnknown ) { (IUnknown functions) 0 virtual HRESULT STDMETHODCALLTYPE (*QueryInterface)(REFIID riid, void **ppv) = 0; 4 virtual ULONG STDMETHODCALLTYPE (*AddRef)() = 0; 8 virtual ULONG STDMETHODCALLTYPE (*Release)() = 0; (IASIO functions) 12 virtual ASIOBool (*init)(void *sysHandle) = 0; 16 virtual void (*getDriverName)(char *name) = 0; 20 virtual long (*getDriverVersion)() = 0; 24 virtual void (*getErrorMessage)(char *string) = 0; 28 virtual ASIOError (*start)() = 0; 32 virtual ASIOError (*stop)() = 0; 36 virtual ASIOError (*getChannels)(long *numInputChannels, long *numOutputChannels) = 0; 40 virtual ASIOError (*getLatencies)(long *inputLatency, long *outputLatency) = 0; 44 virtual ASIOError (*getBufferSize)(long *minSize, long *maxSize, long *preferredSize, long *granularity) = 0; 48 virtual ASIOError (*canSampleRate)(ASIOSampleRate sampleRate) = 0; 52 virtual ASIOError (*getSampleRate)(ASIOSampleRate *sampleRate) = 0; 56 virtual ASIOError (*setSampleRate)(ASIOSampleRate sampleRate) = 0; 60 virtual ASIOError (*getClockSources)(ASIOClockSource *clocks, long *numSources) = 0; 64 virtual ASIOError (*setClockSource)(long reference) = 0; 68 virtual ASIOError (*getSamplePosition)(ASIOSamples *sPos, ASIOTimeStamp *tStamp) = 0; 72 virtual ASIOError (*getChannelInfo)(ASIOChannelInfo *info) = 0; 76 virtual ASIOError (*createBuffers)(ASIOBufferInfo *bufferInfos, long numChannels, long bufferSize, ASIOCallbacks *callbacks) = 0; 80 virtual ASIOError (*disposeBuffers)() = 0; 84 virtual ASIOError (*controlPanel)() = 0; 88 virtual ASIOError (*future)(long selector,void *opt) = 0; 92 virtual ASIOError (*outputReady)() = 0; }; The numbers in the left column show the byte offset of each function ptr from the beginning of the vtbl. These numbers are used in the code below to select different functions. In order to find the address of a particular function, theAsioDriver must first be dereferenced to find the value of the vtbl pointer: mov eax, theAsioDriver mov edx, [theAsioDriver] // edx now points to vtbl[0] Then an offset must be added to the vtbl pointer to select a particular function, for example vtbl+44 points to the slot containing a pointer to the getBufferSize function. Finally vtbl+x must be dereferenced to obtain the value of the function pointer stored in that address: call [edx+44] // call the function pointed to by // the value in the getBufferSize field of the vtbl SEE ALSO Martin Fay's OpenASIO DLL at http://www.martinfay.com solves the same problem by providing a new COM interface which wraps IASIO with an interface that uses portable calling conventions. OpenASIO must be compiled with MSVC, and requires that you ship the OpenASIO DLL with your application. ACKNOWLEDGEMENTS Ross Bencina: worked out the thiscall details above, wrote the original Borland asm macros, and a patch for asio.cpp (which is no longer needed). Thanks to Martin Fay for introducing me to the issues discussed here, and to Rene G. Ceballos for assisting with asm dumps from MSVC++. Antti Silvast: converted the original calliasio to work with gcc and NASM by implementing the asm code in a separate file. Fraser Adams: modified the original calliasio containing the Borland inline asm to add inline asm for gcc i.e. Intel syntax for Borland and AT&T syntax for gcc. This seems a neater approach for gcc than to have a separate .asm file and it means that we only need one version of the thiscall patch. Fraser Adams: rewrote the original calliasio patch in the form of the IASIOThiscallResolver class in order to avoid modifications to files from the Steinberg SDK, which may have had potential licence issues. Andrew Baldwin: contributed fixes for compatibility problems with more recent versions of the gcc assembler. */ // We only need IASIOThiscallResolver at all if we are on Win32. For other // platforms we simply bypass the IASIOThiscallResolver definition to allow us // to be safely #include'd whatever the platform to keep client code portable #if (defined(WIN32) || defined(_WIN32) || defined(__WIN32__)) && !defined(_WIN64) // If microsoft compiler we can call IASIO directly so IASIOThiscallResolver // is not used. #if !defined(_MSC_VER) #include #include // We have a mechanism in iasiothiscallresolver.h to ensure that asio.h is // #include'd before it in client code, we do NOT want to do this test here. #define iasiothiscallresolver_sourcefile 1 #include "iasiothiscallresolver.h" #undef iasiothiscallresolver_sourcefile // iasiothiscallresolver.h redefines ASIOInit for clients, but we don't want // this macro defined in this translation unit. #undef ASIOInit // theAsioDriver is a global pointer to the current IASIO instance which the // ASIO SDK uses to perform all actions on the IASIO interface. We substitute // our own forwarding interface into this pointer. extern IASIO* theAsioDriver; // The following macros define the inline assembler for BORLAND first then gcc #if defined(__BCPLUSPLUS__) || defined(__BORLANDC__) #define CALL_THISCALL_0( resultName, thisPtr, funcOffset )\ void *this_ = (thisPtr); \ __asm { \ mov ecx, this_ ; \ mov eax, [ecx] ; \ call [eax+funcOffset] ; \ mov resultName, eax ; \ } #define CALL_VOID_THISCALL_1( thisPtr, funcOffset, param1 )\ void *this_ = (thisPtr); \ __asm { \ mov eax, param1 ; \ push eax ; \ mov ecx, this_ ; \ mov eax, [ecx] ; \ call [eax+funcOffset] ; \ } #define CALL_THISCALL_1( resultName, thisPtr, funcOffset, param1 )\ void *this_ = (thisPtr); \ __asm { \ mov eax, param1 ; \ push eax ; \ mov ecx, this_ ; \ mov eax, [ecx] ; \ call [eax+funcOffset] ; \ mov resultName, eax ; \ } #define CALL_THISCALL_1_DOUBLE( resultName, thisPtr, funcOffset, param1 )\ void *this_ = (thisPtr); \ void *doubleParamPtr_ (¶m1); \ __asm { \ mov eax, doubleParamPtr_ ; \ push [eax+4] ; \ push [eax] ; \ mov ecx, this_ ; \ mov eax, [ecx] ; \ call [eax+funcOffset] ; \ mov resultName, eax ; \ } #define CALL_THISCALL_2( resultName, thisPtr, funcOffset, param1, param2 )\ void *this_ = (thisPtr); \ __asm { \ mov eax, param2 ; \ push eax ; \ mov eax, param1 ; \ push eax ; \ mov ecx, this_ ; \ mov eax, [ecx] ; \ call [eax+funcOffset] ; \ mov resultName, eax ; \ } #define CALL_THISCALL_4( resultName, thisPtr, funcOffset, param1, param2, param3, param4 )\ void *this_ = (thisPtr); \ __asm { \ mov eax, param4 ; \ push eax ; \ mov eax, param3 ; \ push eax ; \ mov eax, param2 ; \ push eax ; \ mov eax, param1 ; \ push eax ; \ mov ecx, this_ ; \ mov eax, [ecx] ; \ call [eax+funcOffset] ; \ mov resultName, eax ; \ } #elif defined(__GNUC__) #define CALL_THISCALL_0( resultName, thisPtr, funcOffset ) \ __asm__ __volatile__ ("movl (%1), %%edx\n\t" \ "call *"#funcOffset"(%%edx)\n\t" \ :"=a"(resultName) /* Output Operands */ \ :"c"(thisPtr) /* Input Operands */ \ : "%edx" /* Clobbered Registers */ \ ); \ #define CALL_VOID_THISCALL_1( thisPtr, funcOffset, param1 ) \ __asm__ __volatile__ ("pushl %0\n\t" \ "movl (%1), %%edx\n\t" \ "call *"#funcOffset"(%%edx)\n\t" \ : /* Output Operands */ \ :"r"(param1), /* Input Operands */ \ "c"(thisPtr) \ : "%edx" /* Clobbered Registers */ \ ); \ #define CALL_THISCALL_1( resultName, thisPtr, funcOffset, param1 ) \ __asm__ __volatile__ ("pushl %1\n\t" \ "movl (%2), %%edx\n\t" \ "call *"#funcOffset"(%%edx)\n\t" \ :"=a"(resultName) /* Output Operands */ \ :"r"(param1), /* Input Operands */ \ "c"(thisPtr) \ : "%edx" /* Clobbered Registers */ \ ); \ #define CALL_THISCALL_1_DOUBLE( resultName, thisPtr, funcOffset, param1 ) \ do { \ double param1f64 = param1; /* Cast explicitly to double */ \ double *param1f64Ptr = ¶m1f64; /* Make pointer to address */ \ __asm__ __volatile__ ("pushl 4(%1)\n\t" \ "pushl (%1)\n\t" \ "movl (%2), %%edx\n\t" \ "call *"#funcOffset"(%%edx);\n\t" \ : "=a"(resultName) /* Output Operands */ \ : "r"(param1f64Ptr), /* Input Operands */ \ "c"(thisPtr), \ "m"(*param1f64Ptr) /* Using address */ \ : "%edx" /* Clobbered Registers */ \ ); \ } while (0); \ #define CALL_THISCALL_2( resultName, thisPtr, funcOffset, param1, param2 ) \ __asm__ __volatile__ ("pushl %1\n\t" \ "pushl %2\n\t" \ "movl (%3), %%edx\n\t" \ "call *"#funcOffset"(%%edx)\n\t" \ :"=a"(resultName) /* Output Operands */ \ :"r"(param2), /* Input Operands */ \ "r"(param1), \ "c"(thisPtr) \ : "%edx" /* Clobbered Registers */ \ ); \ #define CALL_THISCALL_4( resultName, thisPtr, funcOffset, param1, param2, param3, param4 )\ __asm__ __volatile__ ("pushl %1\n\t" \ "pushl %2\n\t" \ "pushl %3\n\t" \ "pushl %4\n\t" \ "movl (%5), %%edx\n\t" \ "call *"#funcOffset"(%%edx)\n\t" \ :"=a"(resultName) /* Output Operands */ \ :"r"(param4), /* Input Operands */ \ "r"(param3), \ "r"(param2), \ "r"(param1), \ "c"(thisPtr) \ : "%edx" /* Clobbered Registers */ \ ); \ #endif // Our static singleton instance. IASIOThiscallResolver IASIOThiscallResolver::instance; // Constructor called to initialize static Singleton instance above. Note that // it is important not to clear that_ incase it has already been set by the call // to placement new in ASIOInit(). IASIOThiscallResolver::IASIOThiscallResolver() { } // Constructor called from ASIOInit() below IASIOThiscallResolver::IASIOThiscallResolver(IASIO* that) : that_( that ) { } // Implement IUnknown methods as assert(false). IASIOThiscallResolver is not // really a COM object, just a wrapper which will work with the ASIO SDK. // If you wanted to use ASIO without the SDK you might want to implement COM // aggregation in these methods. HRESULT STDMETHODCALLTYPE IASIOThiscallResolver::QueryInterface(REFIID riid, void **ppv) { (void)riid; // suppress unused variable warning assert( false ); // this function should never be called by the ASIO SDK. *ppv = NULL; return E_NOINTERFACE; } ULONG STDMETHODCALLTYPE IASIOThiscallResolver::AddRef() { assert( false ); // this function should never be called by the ASIO SDK. return 1; } ULONG STDMETHODCALLTYPE IASIOThiscallResolver::Release() { assert( false ); // this function should never be called by the ASIO SDK. return 1; } // Implement the IASIO interface methods by performing the vptr manipulation // described above then delegating to the real implementation. ASIOBool IASIOThiscallResolver::init(void *sysHandle) { ASIOBool result; CALL_THISCALL_1( result, that_, 12, sysHandle ); return result; } void IASIOThiscallResolver::getDriverName(char *name) { CALL_VOID_THISCALL_1( that_, 16, name ); } long IASIOThiscallResolver::getDriverVersion() { ASIOBool result; CALL_THISCALL_0( result, that_, 20 ); return result; } void IASIOThiscallResolver::getErrorMessage(char *string) { CALL_VOID_THISCALL_1( that_, 24, string ); } ASIOError IASIOThiscallResolver::start() { ASIOBool result; CALL_THISCALL_0( result, that_, 28 ); return result; } ASIOError IASIOThiscallResolver::stop() { ASIOBool result; CALL_THISCALL_0( result, that_, 32 ); return result; } ASIOError IASIOThiscallResolver::getChannels(long *numInputChannels, long *numOutputChannels) { ASIOBool result; CALL_THISCALL_2( result, that_, 36, numInputChannels, numOutputChannels ); return result; } ASIOError IASIOThiscallResolver::getLatencies(long *inputLatency, long *outputLatency) { ASIOBool result; CALL_THISCALL_2( result, that_, 40, inputLatency, outputLatency ); return result; } ASIOError IASIOThiscallResolver::getBufferSize(long *minSize, long *maxSize, long *preferredSize, long *granularity) { ASIOBool result; CALL_THISCALL_4( result, that_, 44, minSize, maxSize, preferredSize, granularity ); return result; } ASIOError IASIOThiscallResolver::canSampleRate(ASIOSampleRate sampleRate) { ASIOBool result; CALL_THISCALL_1_DOUBLE( result, that_, 48, sampleRate ); return result; } ASIOError IASIOThiscallResolver::getSampleRate(ASIOSampleRate *sampleRate) { ASIOBool result; CALL_THISCALL_1( result, that_, 52, sampleRate ); return result; } ASIOError IASIOThiscallResolver::setSampleRate(ASIOSampleRate sampleRate) { ASIOBool result; CALL_THISCALL_1_DOUBLE( result, that_, 56, sampleRate ); return result; } ASIOError IASIOThiscallResolver::getClockSources(ASIOClockSource *clocks, long *numSources) { ASIOBool result; CALL_THISCALL_2( result, that_, 60, clocks, numSources ); return result; } ASIOError IASIOThiscallResolver::setClockSource(long reference) { ASIOBool result; CALL_THISCALL_1( result, that_, 64, reference ); return result; } ASIOError IASIOThiscallResolver::getSamplePosition(ASIOSamples *sPos, ASIOTimeStamp *tStamp) { ASIOBool result; CALL_THISCALL_2( result, that_, 68, sPos, tStamp ); return result; } ASIOError IASIOThiscallResolver::getChannelInfo(ASIOChannelInfo *info) { ASIOBool result; CALL_THISCALL_1( result, that_, 72, info ); return result; } ASIOError IASIOThiscallResolver::createBuffers(ASIOBufferInfo *bufferInfos, long numChannels, long bufferSize, ASIOCallbacks *callbacks) { ASIOBool result; CALL_THISCALL_4( result, that_, 76, bufferInfos, numChannels, bufferSize, callbacks ); return result; } ASIOError IASIOThiscallResolver::disposeBuffers() { ASIOBool result; CALL_THISCALL_0( result, that_, 80 ); return result; } ASIOError IASIOThiscallResolver::controlPanel() { ASIOBool result; CALL_THISCALL_0( result, that_, 84 ); return result; } ASIOError IASIOThiscallResolver::future(long selector,void *opt) { ASIOBool result; CALL_THISCALL_2( result, that_, 88, selector, opt ); return result; } ASIOError IASIOThiscallResolver::outputReady() { ASIOBool result; CALL_THISCALL_0( result, that_, 92 ); return result; } // Implement our substitute ASIOInit() method ASIOError IASIOThiscallResolver::ASIOInit(ASIODriverInfo *info) { // To ensure that our instance's vptr is correctly constructed, even if // ASIOInit is called prior to main(), we explicitly call its constructor // (potentially over the top of an existing instance). Note that this is // pretty ugly, and is only safe because IASIOThiscallResolver has no // destructor and contains no objects with destructors. new((void*)&instance) IASIOThiscallResolver( theAsioDriver ); // Interpose between ASIO client code and the real driver. theAsioDriver = &instance; // Note that we never need to switch theAsioDriver back to point to the // real driver because theAsioDriver is reset to zero in ASIOExit(). // Delegate to the real ASIOInit return ::ASIOInit(info); } #endif /* !defined(_MSC_VER) */ #endif /* Win32 */ ================================================ FILE: vendor/github.com/thestk/rtaudio/include/iasiothiscallresolver.h ================================================ // **************************************************************************** // // Changed: I have modified this file slightly (includes) to work with // RtAudio. RtAudio.cpp must include this file after asio.h. // // File: IASIOThiscallResolver.h // Description: The IASIOThiscallResolver class implements the IASIO // interface and acts as a proxy to the real IASIO interface by // calling through its vptr table using the thiscall calling // convention. To put it another way, we interpose // IASIOThiscallResolver between ASIO SDK code and the driver. // This is necessary because most non-Microsoft compilers don't // implement the thiscall calling convention used by IASIO. // // iasiothiscallresolver.cpp contains the background of this // problem plus a technical description of the vptr // manipulations. // // In order to use this mechanism one simply has to add // iasiothiscallresolver.cpp to the list of files to compile // and #include // // Note that this #include must come after the other ASIO SDK // #includes, for example: // // #include // #include // #include // #include // #include // // Actually the important thing is to #include // after . We have // incorporated a test to enforce this ordering. // // The code transparently takes care of the interposition by // using macro substitution to intercept calls to ASIOInit() // and ASIOExit(). We save the original ASIO global // "theAsioDriver" in our "that" variable, and then set // "theAsioDriver" to equal our IASIOThiscallResolver instance. // // Whilst this method of resolving the thiscall problem requires // the addition of #include to client // code it has the advantage that it does not break the terms // of the ASIO licence by publishing it. We are NOT modifying // any Steinberg code here, we are merely implementing the IASIO // interface in the same way that we would need to do if we // wished to provide an open source ASIO driver. // // For compilation with MinGW -lole32 needs to be added to the // linker options. For BORLAND, linking with Import32.lib is // sufficient. // // The dependencies are with: CoInitialize, CoUninitialize, // CoCreateInstance, CLSIDFromString - used by asiolist.cpp // and are required on Windows whether ThiscallResolver is used // or not. // // Searching for the above strings in the root library path // of your compiler should enable the correct libraries to be // identified if they aren't immediately obvious. // // Note that the current implementation of IASIOThiscallResolver // is not COM compliant - it does not correctly implement the // IUnknown interface. Implementing it is not necessary because // it is not called by parts of the ASIO SDK which call through // theAsioDriver ptr. The IUnknown methods are implemented as // assert(false) to ensure that the code fails if they are // ever called. // Restrictions: None. Public Domain & Open Source distribute freely // You may use IASIOThiscallResolver commercially as well as // privately. // You the user assume the responsibility for the use of the // files, binary or text, and there is no guarantee or warranty, // expressed or implied, including but not limited to the // implied warranties of merchantability and fitness for a // particular purpose. You assume all responsibility and agree // to hold no entity, copyright holder or distributors liable // for any loss of data or inaccurate representations of data // as a result of using IASIOThiscallResolver. // Version: 1.4 Added separate macro CALL_THISCALL_1_DOUBLE from // Andrew Baldwin, and volatile for whole gcc asm blocks, // both for compatibility with newer gcc versions. Cleaned up // Borland asm to use one less register. // 1.3 Switched to including assert.h for better compatibility. // Wrapped entire .h and .cpp contents with a check for // _MSC_VER to provide better compatibility with MS compilers. // Changed Singleton implementation to use static instance // instead of freestore allocated instance. Removed ASIOExit // macro as it is no longer needed. // 1.2 Removed semicolons from ASIOInit and ASIOExit macros to // allow them to be embedded in expressions (if statements). // Cleaned up some comments. Removed combase.c dependency (it // doesn't compile with BCB anyway) by stubbing IUnknown. // 1.1 Incorporated comments from Ross Bencina including things // such as changing name from ThiscallResolver to // IASIOThiscallResolver, tidying up the constructor, fixing // a bug in IASIOThiscallResolver::ASIOExit() and improving // portability through the use of conditional compilation // 1.0 Initial working version. // Created: 6/09/2003 // Authors: Fraser Adams // Ross Bencina // Rene G. Ceballos // Martin Fay // Antti Silvast // Andrew Baldwin // // **************************************************************************** #ifndef included_iasiothiscallresolver_h #define included_iasiothiscallresolver_h // We only need IASIOThiscallResolver at all if we are on Win32. For other // platforms we simply bypass the IASIOThiscallResolver definition to allow us // to be safely #include'd whatever the platform to keep client code portable //#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) #if (defined(WIN32) || defined(_WIN32) || defined(__WIN32__)) && !defined(_WIN64) // If microsoft compiler we can call IASIO directly so IASIOThiscallResolver // is not used. #if !defined(_MSC_VER) // The following is in order to ensure that this header is only included after // the other ASIO headers (except for the case of iasiothiscallresolver.cpp). // We need to do this because IASIOThiscallResolver works by eclipsing the // original definition of ASIOInit() with a macro (see below). #if !defined(iasiothiscallresolver_sourcefile) #if !defined(__ASIO_H) #error iasiothiscallresolver.h must be included AFTER asio.h #endif #endif #include #include "iasiodrv.h" /* From ASIO SDK */ class IASIOThiscallResolver : public IASIO { private: IASIO* that_; // Points to the real IASIO static IASIOThiscallResolver instance; // Singleton instance // Constructors - declared private so construction is limited to // our Singleton instance IASIOThiscallResolver(); IASIOThiscallResolver(IASIO* that); public: // Methods from the IUnknown interface. We don't fully implement IUnknown // because the ASIO SDK never calls these methods through theAsioDriver ptr. // These methods are implemented as assert(false). virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void **ppv); virtual ULONG STDMETHODCALLTYPE AddRef(); virtual ULONG STDMETHODCALLTYPE Release(); // Methods from the IASIO interface, implemented as forwarning calls to that. virtual ASIOBool init(void *sysHandle); virtual void getDriverName(char *name); virtual long getDriverVersion(); virtual void getErrorMessage(char *string); virtual ASIOError start(); virtual ASIOError stop(); virtual ASIOError getChannels(long *numInputChannels, long *numOutputChannels); virtual ASIOError getLatencies(long *inputLatency, long *outputLatency); virtual ASIOError getBufferSize(long *minSize, long *maxSize, long *preferredSize, long *granularity); virtual ASIOError canSampleRate(ASIOSampleRate sampleRate); virtual ASIOError getSampleRate(ASIOSampleRate *sampleRate); virtual ASIOError setSampleRate(ASIOSampleRate sampleRate); virtual ASIOError getClockSources(ASIOClockSource *clocks, long *numSources); virtual ASIOError setClockSource(long reference); virtual ASIOError getSamplePosition(ASIOSamples *sPos, ASIOTimeStamp *tStamp); virtual ASIOError getChannelInfo(ASIOChannelInfo *info); virtual ASIOError createBuffers(ASIOBufferInfo *bufferInfos, long numChannels, long bufferSize, ASIOCallbacks *callbacks); virtual ASIOError disposeBuffers(); virtual ASIOError controlPanel(); virtual ASIOError future(long selector,void *opt); virtual ASIOError outputReady(); // Class method, see ASIOInit() macro below. static ASIOError ASIOInit(ASIODriverInfo *info); // Delegates to ::ASIOInit }; // Replace calls to ASIOInit with our interposing version. // This macro enables us to perform thiscall resolution simply by #including // after the asio #includes (this file _must_ be // included _after_ the asio #includes) #define ASIOInit(name) IASIOThiscallResolver::ASIOInit((name)) #endif /* !defined(_MSC_VER) */ #endif /* Win32 */ #endif /* included_iasiothiscallresolver_h */ ================================================ FILE: vendor/github.com/thestk/rtaudio/include/soundcard.h ================================================ /* * soundcard.h */ /*- * Copyright by Hannu Savolainen 1993 / 4Front Technologies 1993-2006 * Modified for the new FreeBSD sound driver by Luigi Rizzo, 1997 * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided * with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * $FreeBSD: src/sys/sys/soundcard.h,v 1.48 2006/11/26 11:55:48 netchild Exp $ */ /* * Unless coordinating changes with 4Front Technologies, do NOT make any * modifications to ioctl commands, types, etc. that would break * compatibility with the OSS API. */ #ifndef _SYS_SOUNDCARD_H_ #define _SYS_SOUNDCARD_H_ /* * If you make modifications to this file, please contact me before * distributing the modified version. There is already enough * diversity in the world. * * Regards, * Hannu Savolainen * hannu@voxware.pp.fi * ********************************************************************** * PS. The Hacker's Guide to VoxWare available from * nic.funet.fi:pub/Linux/ALPHA/sound. The file is * snd-sdk-doc-0.1.ps.gz (gzipped postscript). It contains * some useful information about programming with VoxWare. * (NOTE! The pub/Linux/ALPHA/ directories are hidden. You have * to cd inside them before the files are accessible.) ********************************************************************** */ /* * SOUND_VERSION is only used by the voxware driver. Hopefully apps * should not depend on it, but rather look at the capabilities * of the driver in the kernel! */ #define SOUND_VERSION 301 #define VOXWARE /* does this have any use ? */ /* * Supported card ID numbers (Should be somewhere else? We keep * them here just for compativility with the old driver, but these * constants are of little or no use). */ #define SNDCARD_ADLIB 1 #define SNDCARD_SB 2 #define SNDCARD_PAS 3 #define SNDCARD_GUS 4 #define SNDCARD_MPU401 5 #define SNDCARD_SB16 6 #define SNDCARD_SB16MIDI 7 #define SNDCARD_UART6850 8 #define SNDCARD_GUS16 9 #define SNDCARD_MSS 10 #define SNDCARD_PSS 11 #define SNDCARD_SSCAPE 12 #define SNDCARD_PSS_MPU 13 #define SNDCARD_PSS_MSS 14 #define SNDCARD_SSCAPE_MSS 15 #define SNDCARD_TRXPRO 16 #define SNDCARD_TRXPRO_SB 17 #define SNDCARD_TRXPRO_MPU 18 #define SNDCARD_MAD16 19 #define SNDCARD_MAD16_MPU 20 #define SNDCARD_CS4232 21 #define SNDCARD_CS4232_MPU 22 #define SNDCARD_MAUI 23 #define SNDCARD_PSEUDO_MSS 24 #define SNDCARD_AWE32 25 #define SNDCARD_NSS 26 #define SNDCARD_UART16550 27 #define SNDCARD_OPL 28 #include #include #ifndef _IOWR #include #endif /* !_IOWR */ /* * The first part of this file contains the new FreeBSD sound ioctl * interface. Tries to minimize the number of different ioctls, and * to be reasonably general. * * 970821: some of the new calls have not been implemented yet. */ /* * the following three calls extend the generic file descriptor * interface. AIONWRITE is the dual of FIONREAD, i.e. returns the max * number of bytes for a write operation to be non-blocking. * * AIOGSIZE/AIOSSIZE are used to change the behaviour of the device, * from a character device (default) to a block device. In block mode, * (not to be confused with blocking mode) the main difference for the * application is that select() will return only when a complete * block can be read/written to the device, whereas in character mode * select will return true when one byte can be exchanged. For audio * devices, character mode makes select almost useless since one byte * will always be ready by the next sample time (which is often only a * handful of microseconds away). * Use a size of 0 or 1 to return to character mode. */ #define AIONWRITE _IOR('A', 10, int) /* get # bytes to write */ struct snd_size { int play_size; int rec_size; }; #define AIOGSIZE _IOR('A', 11, struct snd_size)/* read current blocksize */ #define AIOSSIZE _IOWR('A', 11, struct snd_size) /* sets blocksize */ /* * The following constants define supported audio formats. The * encoding follows voxware conventions, i.e. 1 bit for each supported * format. We extend it by using bit 31 (RO) to indicate full-duplex * capability, and bit 29 (RO) to indicate that the card supports/ * needs different formats on capture & playback channels. * Bit 29 (RW) is used to indicate/ask stereo. * * The number of bits required to store the sample is: * o 4 bits for the IDA ADPCM format, * o 8 bits for 8-bit formats, mu-law and A-law, * o 16 bits for the 16-bit formats, and * o 32 bits for the 24/32-bit formats. * o undefined for the MPEG audio format. */ #define AFMT_QUERY 0x00000000 /* Return current format */ #define AFMT_MU_LAW 0x00000001 /* Logarithmic mu-law */ #define AFMT_A_LAW 0x00000002 /* Logarithmic A-law */ #define AFMT_IMA_ADPCM 0x00000004 /* A 4:1 compressed format where 16-bit * squence represented using the * the average 4 bits per sample */ #define AFMT_U8 0x00000008 /* Unsigned 8-bit */ #define AFMT_S16_LE 0x00000010 /* Little endian signed 16-bit */ #define AFMT_S16_BE 0x00000020 /* Big endian signed 16-bit */ #define AFMT_S8 0x00000040 /* Signed 8-bit */ #define AFMT_U16_LE 0x00000080 /* Little endian unsigned 16-bit */ #define AFMT_U16_BE 0x00000100 /* Big endian unsigned 16-bit */ #define AFMT_MPEG 0x00000200 /* MPEG MP2/MP3 audio */ #define AFMT_AC3 0x00000400 /* Dolby Digital AC3 */ #if _BYTE_ORDER == _LITTLE_ENDIAN #define AFMT_S16_NE AFMT_S16_LE /* native endian signed 16 */ #else #define AFMT_S16_NE AFMT_S16_BE #endif /* * 32-bit formats below used for 24-bit audio data where the data is stored * in the 24 most significant bits and the least significant bits are not used * (should be set to 0). */ #define AFMT_S32_LE 0x00001000 /* Little endian signed 32-bit */ #define AFMT_S32_BE 0x00002000 /* Big endian signed 32-bit */ #define AFMT_U32_LE 0x00004000 /* Little endian unsigned 32-bit */ #define AFMT_U32_BE 0x00008000 /* Big endian unsigned 32-bit */ #define AFMT_S24_LE 0x00010000 /* Little endian signed 24-bit */ #define AFMT_S24_BE 0x00020000 /* Big endian signed 24-bit */ #define AFMT_U24_LE 0x00040000 /* Little endian unsigned 24-bit */ #define AFMT_U24_BE 0x00080000 /* Big endian unsigned 24-bit */ #define AFMT_STEREO 0x10000000 /* can do/want stereo */ /* * the following are really capabilities */ #define AFMT_WEIRD 0x20000000 /* weird hardware... */ /* * AFMT_WEIRD reports that the hardware might need to operate * with different formats in the playback and capture * channels when operating in full duplex. * As an example, SoundBlaster16 cards only support U8 in one * direction and S16 in the other one, and applications should * be aware of this limitation. */ #define AFMT_FULLDUPLEX 0x80000000 /* can do full duplex */ /* * The following structure is used to get/set format and sampling rate. * While it would be better to have things such as stereo, bits per * sample, endiannes, etc split in different variables, it turns out * that formats are not that many, and not all combinations are possible. * So we followed the Voxware approach of associating one bit to each * format. */ typedef struct _snd_chan_param { u_long play_rate; /* sampling rate */ u_long rec_rate; /* sampling rate */ u_long play_format; /* everything describing the format */ u_long rec_format; /* everything describing the format */ } snd_chan_param; #define AIOGFMT _IOR('f', 12, snd_chan_param) /* get format */ #define AIOSFMT _IOWR('f', 12, snd_chan_param) /* sets format */ /* * The following structure is used to get/set the mixer setting. * Up to 32 mixers are supported, each one with up to 32 channels. */ typedef struct _snd_mix_param { u_char subdev; /* which output */ u_char line; /* which input */ u_char left,right; /* volumes, 0..255, 0 = mute */ } snd_mix_param ; /* XXX AIOGMIX, AIOSMIX not implemented yet */ #define AIOGMIX _IOWR('A', 13, snd_mix_param) /* return mixer status */ #define AIOSMIX _IOWR('A', 14, snd_mix_param) /* sets mixer status */ /* * channel specifiers used in AIOSTOP and AIOSYNC */ #define AIOSYNC_PLAY 0x1 /* play chan */ #define AIOSYNC_CAPTURE 0x2 /* capture chan */ /* AIOSTOP stop & flush a channel, returns the residual count */ #define AIOSTOP _IOWR ('A', 15, int) /* alternate method used to notify the sync condition */ #define AIOSYNC_SIGNAL 0x100 #define AIOSYNC_SELECT 0x200 /* what the 'pos' field refers to */ #define AIOSYNC_READY 0x400 #define AIOSYNC_FREE 0x800 typedef struct _snd_sync_parm { long chan ; /* play or capture channel, plus modifier */ long pos; } snd_sync_parm; #define AIOSYNC _IOWR ('A', 15, snd_sync_parm) /* misc. synchronization */ /* * The following is used to return device capabilities. If the structure * passed to the ioctl is zeroed, default values are returned for rate * and formats, a bitmap of available mixers is returned, and values * (inputs, different levels) for the first one are returned. * * If formats, mixers, inputs are instantiated, then detailed info * are returned depending on the call. */ typedef struct _snd_capabilities { u_long rate_min, rate_max; /* min-max sampling rate */ u_long formats; u_long bufsize; /* DMA buffer size */ u_long mixers; /* bitmap of available mixers */ u_long inputs; /* bitmap of available inputs (per mixer) */ u_short left, right; /* how many levels are supported */ } snd_capabilities; #define AIOGCAP _IOWR('A', 15, snd_capabilities) /* get capabilities */ /* * here is the old (Voxware) ioctl interface */ /* * IOCTL Commands for /dev/sequencer */ #define SNDCTL_SEQ_RESET _IO ('Q', 0) #define SNDCTL_SEQ_SYNC _IO ('Q', 1) #define SNDCTL_SYNTH_INFO _IOWR('Q', 2, struct synth_info) #define SNDCTL_SEQ_CTRLRATE _IOWR('Q', 3, int) /* Set/get timer res.(hz) */ #define SNDCTL_SEQ_GETOUTCOUNT _IOR ('Q', 4, int) #define SNDCTL_SEQ_GETINCOUNT _IOR ('Q', 5, int) #define SNDCTL_SEQ_PERCMODE _IOW ('Q', 6, int) #define SNDCTL_FM_LOAD_INSTR _IOW ('Q', 7, struct sbi_instrument) /* Valid for FM only */ #define SNDCTL_SEQ_TESTMIDI _IOW ('Q', 8, int) #define SNDCTL_SEQ_RESETSAMPLES _IOW ('Q', 9, int) #define SNDCTL_SEQ_NRSYNTHS _IOR ('Q',10, int) #define SNDCTL_SEQ_NRMIDIS _IOR ('Q',11, int) #define SNDCTL_MIDI_INFO _IOWR('Q',12, struct midi_info) #define SNDCTL_SEQ_THRESHOLD _IOW ('Q',13, int) #define SNDCTL_SEQ_TRESHOLD SNDCTL_SEQ_THRESHOLD /* there was once a typo */ #define SNDCTL_SYNTH_MEMAVL _IOWR('Q',14, int) /* in=dev#, out=memsize */ #define SNDCTL_FM_4OP_ENABLE _IOW ('Q',15, int) /* in=dev# */ #define SNDCTL_PMGR_ACCESS _IOWR('Q',16, struct patmgr_info) #define SNDCTL_SEQ_PANIC _IO ('Q',17) #define SNDCTL_SEQ_OUTOFBAND _IOW ('Q',18, struct seq_event_rec) #define SNDCTL_SEQ_GETTIME _IOR ('Q',19, int) struct seq_event_rec { u_char arr[8]; }; #define SNDCTL_TMR_TIMEBASE _IOWR('T', 1, int) #define SNDCTL_TMR_START _IO ('T', 2) #define SNDCTL_TMR_STOP _IO ('T', 3) #define SNDCTL_TMR_CONTINUE _IO ('T', 4) #define SNDCTL_TMR_TEMPO _IOWR('T', 5, int) #define SNDCTL_TMR_SOURCE _IOWR('T', 6, int) # define TMR_INTERNAL 0x00000001 # define TMR_EXTERNAL 0x00000002 # define TMR_MODE_MIDI 0x00000010 # define TMR_MODE_FSK 0x00000020 # define TMR_MODE_CLS 0x00000040 # define TMR_MODE_SMPTE 0x00000080 #define SNDCTL_TMR_METRONOME _IOW ('T', 7, int) #define SNDCTL_TMR_SELECT _IOW ('T', 8, int) /* * Endian aware patch key generation algorithm. */ #if defined(_AIX) || defined(AIX) # define _PATCHKEY(id) (0xfd00|id) #else # define _PATCHKEY(id) ((id<<8)|0xfd) #endif /* * Sample loading mechanism for internal synthesizers (/dev/sequencer) * The following patch_info structure has been designed to support * Gravis UltraSound. It tries to be universal format for uploading * sample based patches but is probably too limited. */ struct patch_info { /* u_short key; Use GUS_PATCH here */ short key; /* Use GUS_PATCH here */ #define GUS_PATCH _PATCHKEY(0x04) #define OBSOLETE_GUS_PATCH _PATCHKEY(0x02) short device_no; /* Synthesizer number */ short instr_no; /* Midi pgm# */ u_long mode; /* * The least significant byte has the same format than the GUS .PAT * files */ #define WAVE_16_BITS 0x01 /* bit 0 = 8 or 16 bit wave data. */ #define WAVE_UNSIGNED 0x02 /* bit 1 = Signed - Unsigned data. */ #define WAVE_LOOPING 0x04 /* bit 2 = looping enabled-1. */ #define WAVE_BIDIR_LOOP 0x08 /* bit 3 = Set is bidirectional looping. */ #define WAVE_LOOP_BACK 0x10 /* bit 4 = Set is looping backward. */ #define WAVE_SUSTAIN_ON 0x20 /* bit 5 = Turn sustaining on. (Env. pts. 3)*/ #define WAVE_ENVELOPES 0x40 /* bit 6 = Enable envelopes - 1 */ /* (use the env_rate/env_offs fields). */ /* Linux specific bits */ #define WAVE_VIBRATO 0x00010000 /* The vibrato info is valid */ #define WAVE_TREMOLO 0x00020000 /* The tremolo info is valid */ #define WAVE_SCALE 0x00040000 /* The scaling info is valid */ /* Other bits must be zeroed */ long len; /* Size of the wave data in bytes */ long loop_start, loop_end; /* Byte offsets from the beginning */ /* * The base_freq and base_note fields are used when computing the * playback speed for a note. The base_note defines the tone frequency * which is heard if the sample is played using the base_freq as the * playback speed. * * The low_note and high_note fields define the minimum and maximum note * frequencies for which this sample is valid. It is possible to define * more than one samples for an instrument number at the same time. The * low_note and high_note fields are used to select the most suitable one. * * The fields base_note, high_note and low_note should contain * the note frequency multiplied by 1000. For example value for the * middle A is 440*1000. */ u_int base_freq; u_long base_note; u_long high_note; u_long low_note; int panning; /* -128=left, 127=right */ int detuning; /* New fields introduced in version 1.99.5 */ /* Envelope. Enabled by mode bit WAVE_ENVELOPES */ u_char env_rate[ 6 ]; /* GUS HW ramping rate */ u_char env_offset[ 6 ]; /* 255 == 100% */ /* * The tremolo, vibrato and scale info are not supported yet. * Enable by setting the mode bits WAVE_TREMOLO, WAVE_VIBRATO or * WAVE_SCALE */ u_char tremolo_sweep; u_char tremolo_rate; u_char tremolo_depth; u_char vibrato_sweep; u_char vibrato_rate; u_char vibrato_depth; int scale_frequency; u_int scale_factor; /* from 0 to 2048 or 0 to 2 */ int volume; int spare[4]; char data[1]; /* The waveform data starts here */ }; struct sysex_info { short key; /* Use GUS_PATCH here */ #define SYSEX_PATCH _PATCHKEY(0x05) #define MAUI_PATCH _PATCHKEY(0x06) short device_no; /* Synthesizer number */ long len; /* Size of the sysex data in bytes */ u_char data[1]; /* Sysex data starts here */ }; /* * Patch management interface (/dev/sequencer, /dev/patmgr#) * Don't use these calls if you want to maintain compatibility with * the future versions of the driver. */ #define PS_NO_PATCHES 0 /* No patch support on device */ #define PS_MGR_NOT_OK 1 /* Plain patch support (no mgr) */ #define PS_MGR_OK 2 /* Patch manager supported */ #define PS_MANAGED 3 /* Patch manager running */ #define SNDCTL_PMGR_IFACE _IOWR('P', 1, struct patmgr_info) /* * The patmgr_info is a fixed size structure which is used for two * different purposes. The intended use is for communication between * the application using /dev/sequencer and the patch manager daemon * associated with a synthesizer device (ioctl(SNDCTL_PMGR_ACCESS)). * * This structure is also used with ioctl(SNDCTL_PGMR_IFACE) which allows * a patch manager daemon to read and write device parameters. This * ioctl available through /dev/sequencer also. Avoid using it since it's * extremely hardware dependent. In addition access trough /dev/sequencer * may confuse the patch manager daemon. */ struct patmgr_info { /* Note! size must be < 4k since kmalloc() is used */ u_long key; /* Don't worry. Reserved for communication between the patch manager and the driver. */ #define PM_K_EVENT 1 /* Event from the /dev/sequencer driver */ #define PM_K_COMMAND 2 /* Request from an application */ #define PM_K_RESPONSE 3 /* From patmgr to application */ #define PM_ERROR 4 /* Error returned by the patmgr */ int device; int command; /* * Commands 0x000 to 0xfff reserved for patch manager programs */ #define PM_GET_DEVTYPE 1 /* Returns type of the patch mgr interface of dev */ #define PMTYPE_FM2 1 /* 2 OP fm */ #define PMTYPE_FM4 2 /* Mixed 4 or 2 op FM (OPL-3) */ #define PMTYPE_WAVE 3 /* Wave table synthesizer (GUS) */ #define PM_GET_NRPGM 2 /* Returns max # of midi programs in parm1 */ #define PM_GET_PGMMAP 3 /* Returns map of loaded midi programs in data8 */ #define PM_GET_PGM_PATCHES 4 /* Return list of patches of a program (parm1) */ #define PM_GET_PATCH 5 /* Return patch header of patch parm1 */ #define PM_SET_PATCH 6 /* Set patch header of patch parm1 */ #define PM_READ_PATCH 7 /* Read patch (wave) data */ #define PM_WRITE_PATCH 8 /* Write patch (wave) data */ /* * Commands 0x1000 to 0xffff are for communication between the patch manager * and the client */ #define _PM_LOAD_PATCH 0x100 /* * Commands above 0xffff reserved for device specific use */ long parm1; long parm2; long parm3; union { u_char data8[4000]; u_short data16[2000]; u_long data32[1000]; struct patch_info patch; } data; }; /* * When a patch manager daemon is present, it will be informed by the * driver when something important happens. For example when the * /dev/sequencer is opened or closed. A record with key == PM_K_EVENT is * returned. The command field contains the event type: */ #define PM_E_OPENED 1 /* /dev/sequencer opened */ #define PM_E_CLOSED 2 /* /dev/sequencer closed */ #define PM_E_PATCH_RESET 3 /* SNDCTL_RESETSAMPLES called */ #define PM_E_PATCH_LOADED 4 /* A patch has been loaded by appl */ /* * /dev/sequencer input events. * * The data written to the /dev/sequencer is a stream of events. Events * are records of 4 or 8 bytes. The first byte defines the size. * Any number of events can be written with a write call. There * is a set of macros for sending these events. Use these macros if you * want to maximize portability of your program. * * Events SEQ_WAIT, SEQ_MIDIPUTC and SEQ_ECHO. Are also input events. * (All input events are currently 4 bytes long. Be prepared to support * 8 byte events also. If you receive any event having first byte >= 128, * it's a 8 byte event. * * The events are documented at the end of this file. * * Normal events (4 bytes) * There is also a 8 byte version of most of the 4 byte events. The * 8 byte one is recommended. */ #define SEQ_NOTEOFF 0 #define SEQ_FMNOTEOFF SEQ_NOTEOFF /* Just old name */ #define SEQ_NOTEON 1 #define SEQ_FMNOTEON SEQ_NOTEON #define SEQ_WAIT TMR_WAIT_ABS #define SEQ_PGMCHANGE 3 #define SEQ_FMPGMCHANGE SEQ_PGMCHANGE #define SEQ_SYNCTIMER TMR_START #define SEQ_MIDIPUTC 5 #define SEQ_DRUMON 6 /*** OBSOLETE ***/ #define SEQ_DRUMOFF 7 /*** OBSOLETE ***/ #define SEQ_ECHO TMR_ECHO /* For synching programs with output */ #define SEQ_AFTERTOUCH 9 #define SEQ_CONTROLLER 10 /* * Midi controller numbers * * Controllers 0 to 31 (0x00 to 0x1f) and 32 to 63 (0x20 to 0x3f) * are continuous controllers. * In the MIDI 1.0 these controllers are sent using two messages. * Controller numbers 0 to 31 are used to send the MSB and the * controller numbers 32 to 63 are for the LSB. Note that just 7 bits * are used in MIDI bytes. */ #define CTL_BANK_SELECT 0x00 #define CTL_MODWHEEL 0x01 #define CTL_BREATH 0x02 /* undefined 0x03 */ #define CTL_FOOT 0x04 #define CTL_PORTAMENTO_TIME 0x05 #define CTL_DATA_ENTRY 0x06 #define CTL_MAIN_VOLUME 0x07 #define CTL_BALANCE 0x08 /* undefined 0x09 */ #define CTL_PAN 0x0a #define CTL_EXPRESSION 0x0b /* undefined 0x0c - 0x0f */ #define CTL_GENERAL_PURPOSE1 0x10 #define CTL_GENERAL_PURPOSE2 0x11 #define CTL_GENERAL_PURPOSE3 0x12 #define CTL_GENERAL_PURPOSE4 0x13 /* undefined 0x14 - 0x1f */ /* undefined 0x20 */ /* * The controller numbers 0x21 to 0x3f are reserved for the * least significant bytes of the controllers 0x00 to 0x1f. * These controllers are not recognised by the driver. * * Controllers 64 to 69 (0x40 to 0x45) are on/off switches. * 0=OFF and 127=ON (intermediate values are possible) */ #define CTL_DAMPER_PEDAL 0x40 #define CTL_SUSTAIN CTL_DAMPER_PEDAL /* Alias */ #define CTL_HOLD CTL_DAMPER_PEDAL /* Alias */ #define CTL_PORTAMENTO 0x41 #define CTL_SOSTENUTO 0x42 #define CTL_SOFT_PEDAL 0x43 /* undefined 0x44 */ #define CTL_HOLD2 0x45 /* undefined 0x46 - 0x4f */ #define CTL_GENERAL_PURPOSE5 0x50 #define CTL_GENERAL_PURPOSE6 0x51 #define CTL_GENERAL_PURPOSE7 0x52 #define CTL_GENERAL_PURPOSE8 0x53 /* undefined 0x54 - 0x5a */ #define CTL_EXT_EFF_DEPTH 0x5b #define CTL_TREMOLO_DEPTH 0x5c #define CTL_CHORUS_DEPTH 0x5d #define CTL_DETUNE_DEPTH 0x5e #define CTL_CELESTE_DEPTH CTL_DETUNE_DEPTH /* Alias for the above one */ #define CTL_PHASER_DEPTH 0x5f #define CTL_DATA_INCREMENT 0x60 #define CTL_DATA_DECREMENT 0x61 #define CTL_NONREG_PARM_NUM_LSB 0x62 #define CTL_NONREG_PARM_NUM_MSB 0x63 #define CTL_REGIST_PARM_NUM_LSB 0x64 #define CTL_REGIST_PARM_NUM_MSB 0x65 /* undefined 0x66 - 0x78 */ /* reserved 0x79 - 0x7f */ /* Pseudo controllers (not midi compatible) */ #define CTRL_PITCH_BENDER 255 #define CTRL_PITCH_BENDER_RANGE 254 #define CTRL_EXPRESSION 253 /* Obsolete */ #define CTRL_MAIN_VOLUME 252 /* Obsolete */ #define SEQ_BALANCE 11 #define SEQ_VOLMODE 12 /* * Volume mode decides how volumes are used */ #define VOL_METHOD_ADAGIO 1 #define VOL_METHOD_LINEAR 2 /* * Note! SEQ_WAIT, SEQ_MIDIPUTC and SEQ_ECHO are used also as * input events. */ /* * Event codes 0xf0 to 0xfc are reserved for future extensions. */ #define SEQ_FULLSIZE 0xfd /* Long events */ /* * SEQ_FULLSIZE events are used for loading patches/samples to the * synthesizer devices. These events are passed directly to the driver * of the associated synthesizer device. There is no limit to the size * of the extended events. These events are not queued but executed * immediately when the write() is called (execution can take several * seconds of time). * * When a SEQ_FULLSIZE message is written to the device, it must * be written using exactly one write() call. Other events cannot * be mixed to the same write. * * For FM synths (YM3812/OPL3) use struct sbi_instrument and write * it to the /dev/sequencer. Don't write other data together with * the instrument structure Set the key field of the structure to * FM_PATCH. The device field is used to route the patch to the * corresponding device. * * For Gravis UltraSound use struct patch_info. Initialize the key field * to GUS_PATCH. */ #define SEQ_PRIVATE 0xfe /* Low level HW dependent events (8 bytes) */ #define SEQ_EXTENDED 0xff /* Extended events (8 bytes) OBSOLETE */ /* * Record for FM patches */ typedef u_char sbi_instr_data[32]; struct sbi_instrument { u_short key; /* FM_PATCH or OPL3_PATCH */ #define FM_PATCH _PATCHKEY(0x01) #define OPL3_PATCH _PATCHKEY(0x03) short device; /* Synth# (0-4) */ int channel; /* Program# to be initialized */ sbi_instr_data operators; /* Reg. settings for operator cells * (.SBI format) */ }; struct synth_info { /* Read only */ char name[30]; int device; /* 0-N. INITIALIZE BEFORE CALLING */ int synth_type; #define SYNTH_TYPE_FM 0 #define SYNTH_TYPE_SAMPLE 1 #define SYNTH_TYPE_MIDI 2 /* Midi interface */ int synth_subtype; #define FM_TYPE_ADLIB 0x00 #define FM_TYPE_OPL3 0x01 #define MIDI_TYPE_MPU401 0x401 #define SAMPLE_TYPE_BASIC 0x10 #define SAMPLE_TYPE_GUS SAMPLE_TYPE_BASIC #define SAMPLE_TYPE_AWE32 0x20 int perc_mode; /* No longer supported */ int nr_voices; int nr_drums; /* Obsolete field */ int instr_bank_size; u_long capabilities; #define SYNTH_CAP_PERCMODE 0x00000001 /* No longer used */ #define SYNTH_CAP_OPL3 0x00000002 /* Set if OPL3 supported */ #define SYNTH_CAP_INPUT 0x00000004 /* Input (MIDI) device */ int dummies[19]; /* Reserve space */ }; struct sound_timer_info { char name[32]; int caps; }; struct midi_info { char name[30]; int device; /* 0-N. INITIALIZE BEFORE CALLING */ u_long capabilities; /* To be defined later */ int dev_type; int dummies[18]; /* Reserve space */ }; /* * ioctl commands for the /dev/midi## */ typedef struct { u_char cmd; char nr_args, nr_returns; u_char data[30]; } mpu_command_rec; #define SNDCTL_MIDI_PRETIME _IOWR('m', 0, int) #define SNDCTL_MIDI_MPUMODE _IOWR('m', 1, int) #define SNDCTL_MIDI_MPUCMD _IOWR('m', 2, mpu_command_rec) #define MIOSPASSTHRU _IOWR('m', 3, int) #define MIOGPASSTHRU _IOWR('m', 4, int) /* * IOCTL commands for /dev/dsp and /dev/audio */ #define SNDCTL_DSP_RESET _IO ('P', 0) #define SNDCTL_DSP_SYNC _IO ('P', 1) #define SNDCTL_DSP_SPEED _IOWR('P', 2, int) #define SNDCTL_DSP_STEREO _IOWR('P', 3, int) #define SNDCTL_DSP_GETBLKSIZE _IOR('P', 4, int) #define SNDCTL_DSP_SETBLKSIZE _IOW('P', 4, int) #define SNDCTL_DSP_SETFMT _IOWR('P',5, int) /* Selects ONE fmt*/ /* * SOUND_PCM_WRITE_CHANNELS is not that different * from SNDCTL_DSP_STEREO */ #define SOUND_PCM_WRITE_CHANNELS _IOWR('P', 6, int) #define SNDCTL_DSP_CHANNELS SOUND_PCM_WRITE_CHANNELS #define SOUND_PCM_WRITE_FILTER _IOWR('P', 7, int) #define SNDCTL_DSP_POST _IO ('P', 8) /* * SNDCTL_DSP_SETBLKSIZE and the following two calls mostly do * the same thing, i.e. set the block size used in DMA transfers. */ #define SNDCTL_DSP_SUBDIVIDE _IOWR('P', 9, int) #define SNDCTL_DSP_SETFRAGMENT _IOWR('P',10, int) #define SNDCTL_DSP_GETFMTS _IOR ('P',11, int) /* Returns a mask */ /* * Buffer status queries. */ typedef struct audio_buf_info { int fragments; /* # of avail. frags (partly used ones not counted) */ int fragstotal; /* Total # of fragments allocated */ int fragsize; /* Size of a fragment in bytes */ int bytes; /* Avail. space in bytes (includes partly used fragments) */ /* Note! 'bytes' could be more than fragments*fragsize */ } audio_buf_info; #define SNDCTL_DSP_GETOSPACE _IOR ('P',12, audio_buf_info) #define SNDCTL_DSP_GETISPACE _IOR ('P',13, audio_buf_info) /* * SNDCTL_DSP_NONBLOCK is the same (but less powerful, since the * action cannot be undone) of FIONBIO. The same can be achieved * by opening the device with O_NDELAY */ #define SNDCTL_DSP_NONBLOCK _IO ('P',14) #define SNDCTL_DSP_GETCAPS _IOR ('P',15, int) #define DSP_CAP_REVISION 0x000000ff /* revision level (0 to 255) */ #define DSP_CAP_DUPLEX 0x00000100 /* Full duplex record/playback */ #define DSP_CAP_REALTIME 0x00000200 /* Real time capability */ #define DSP_CAP_BATCH 0x00000400 /* * Device has some kind of internal buffers which may * cause some delays and decrease precision of timing */ #define DSP_CAP_COPROC 0x00000800 /* Has a coprocessor, sometimes it's a DSP but usually not */ #define DSP_CAP_TRIGGER 0x00001000 /* Supports SETTRIGGER */ #define DSP_CAP_MMAP 0x00002000 /* Supports mmap() */ /* * What do these function do ? */ #define SNDCTL_DSP_GETTRIGGER _IOR ('P',16, int) #define SNDCTL_DSP_SETTRIGGER _IOW ('P',16, int) #define PCM_ENABLE_INPUT 0x00000001 #define PCM_ENABLE_OUTPUT 0x00000002 typedef struct count_info { int bytes; /* Total # of bytes processed */ int blocks; /* # of fragment transitions since last time */ int ptr; /* Current DMA pointer value */ } count_info; /* * GETIPTR and GETISPACE are not that different... same for out. */ #define SNDCTL_DSP_GETIPTR _IOR ('P',17, count_info) #define SNDCTL_DSP_GETOPTR _IOR ('P',18, count_info) typedef struct buffmem_desc { caddr_t buffer; int size; } buffmem_desc; #define SNDCTL_DSP_MAPINBUF _IOR ('P', 19, buffmem_desc) #define SNDCTL_DSP_MAPOUTBUF _IOR ('P', 20, buffmem_desc) #define SNDCTL_DSP_SETSYNCRO _IO ('P', 21) #define SNDCTL_DSP_SETDUPLEX _IO ('P', 22) #define SNDCTL_DSP_GETODELAY _IOR ('P', 23, int) /* * I guess these are the readonly version of the same * functions that exist above as SNDCTL_DSP_... */ #define SOUND_PCM_READ_RATE _IOR ('P', 2, int) #define SOUND_PCM_READ_CHANNELS _IOR ('P', 6, int) #define SOUND_PCM_READ_BITS _IOR ('P', 5, int) #define SOUND_PCM_READ_FILTER _IOR ('P', 7, int) /* * ioctl calls to be used in communication with coprocessors and * DSP chips. */ typedef struct copr_buffer { int command; /* Set to 0 if not used */ int flags; #define CPF_NONE 0x0000 #define CPF_FIRST 0x0001 /* First block */ #define CPF_LAST 0x0002 /* Last block */ int len; int offs; /* If required by the device (0 if not used) */ u_char data[4000]; /* NOTE! 4000 is not 4k */ } copr_buffer; typedef struct copr_debug_buf { int command; /* Used internally. Set to 0 */ int parm1; int parm2; int flags; int len; /* Length of data in bytes */ } copr_debug_buf; typedef struct copr_msg { int len; u_char data[4000]; } copr_msg; #define SNDCTL_COPR_RESET _IO ('C', 0) #define SNDCTL_COPR_LOAD _IOWR('C', 1, copr_buffer) #define SNDCTL_COPR_RDATA _IOWR('C', 2, copr_debug_buf) #define SNDCTL_COPR_RCODE _IOWR('C', 3, copr_debug_buf) #define SNDCTL_COPR_WDATA _IOW ('C', 4, copr_debug_buf) #define SNDCTL_COPR_WCODE _IOW ('C', 5, copr_debug_buf) #define SNDCTL_COPR_RUN _IOWR('C', 6, copr_debug_buf) #define SNDCTL_COPR_HALT _IOWR('C', 7, copr_debug_buf) #define SNDCTL_COPR_SENDMSG _IOW ('C', 8, copr_msg) #define SNDCTL_COPR_RCVMSG _IOR ('C', 9, copr_msg) /* * IOCTL commands for /dev/mixer */ /* * Mixer devices * * There can be up to 20 different analog mixer channels. The * SOUND_MIXER_NRDEVICES gives the currently supported maximum. * The SOUND_MIXER_READ_DEVMASK returns a bitmask which tells * the devices supported by the particular mixer. */ #define SOUND_MIXER_NRDEVICES 25 #define SOUND_MIXER_VOLUME 0 /* Master output level */ #define SOUND_MIXER_BASS 1 /* Treble level of all output channels */ #define SOUND_MIXER_TREBLE 2 /* Bass level of all output channels */ #define SOUND_MIXER_SYNTH 3 /* Volume of synthesier input */ #define SOUND_MIXER_PCM 4 /* Output level for the audio device */ #define SOUND_MIXER_SPEAKER 5 /* Output level for the PC speaker * signals */ #define SOUND_MIXER_LINE 6 /* Volume level for the line in jack */ #define SOUND_MIXER_MIC 7 /* Volume for the signal coming from * the microphone jack */ #define SOUND_MIXER_CD 8 /* Volume level for the input signal * connected to the CD audio input */ #define SOUND_MIXER_IMIX 9 /* Recording monitor. It controls the * output volume of the selected * recording sources while recording */ #define SOUND_MIXER_ALTPCM 10 /* Volume of the alternative codec * device */ #define SOUND_MIXER_RECLEV 11 /* Global recording level */ #define SOUND_MIXER_IGAIN 12 /* Input gain */ #define SOUND_MIXER_OGAIN 13 /* Output gain */ /* * The AD1848 codec and compatibles have three line level inputs * (line, aux1 and aux2). Since each card manufacturer have assigned * different meanings to these inputs, it's inpractical to assign * specific meanings (line, cd, synth etc.) to them. */ #define SOUND_MIXER_LINE1 14 /* Input source 1 (aux1) */ #define SOUND_MIXER_LINE2 15 /* Input source 2 (aux2) */ #define SOUND_MIXER_LINE3 16 /* Input source 3 (line) */ #define SOUND_MIXER_DIGITAL1 17 /* Digital (input) 1 */ #define SOUND_MIXER_DIGITAL2 18 /* Digital (input) 2 */ #define SOUND_MIXER_DIGITAL3 19 /* Digital (input) 3 */ #define SOUND_MIXER_PHONEIN 20 /* Phone input */ #define SOUND_MIXER_PHONEOUT 21 /* Phone output */ #define SOUND_MIXER_VIDEO 22 /* Video/TV (audio) in */ #define SOUND_MIXER_RADIO 23 /* Radio in */ #define SOUND_MIXER_MONITOR 24 /* Monitor (usually mic) volume */ /* * Some on/off settings (SOUND_SPECIAL_MIN - SOUND_SPECIAL_MAX) * Not counted to SOUND_MIXER_NRDEVICES, but use the same number space */ #define SOUND_ONOFF_MIN 28 #define SOUND_ONOFF_MAX 30 #define SOUND_MIXER_MUTE 28 /* 0 or 1 */ #define SOUND_MIXER_ENHANCE 29 /* Enhanced stereo (0, 40, 60 or 80) */ #define SOUND_MIXER_LOUD 30 /* 0 or 1 */ /* Note! Number 31 cannot be used since the sign bit is reserved */ #define SOUND_MIXER_NONE 31 #define SOUND_DEVICE_LABELS { \ "Vol ", "Bass ", "Trebl", "Synth", "Pcm ", "Spkr ", "Line ", \ "Mic ", "CD ", "Mix ", "Pcm2 ", "Rec ", "IGain", "OGain", \ "Line1", "Line2", "Line3", "Digital1", "Digital2", "Digital3", \ "PhoneIn", "PhoneOut", "Video", "Radio", "Monitor"} #define SOUND_DEVICE_NAMES { \ "vol", "bass", "treble", "synth", "pcm", "speaker", "line", \ "mic", "cd", "mix", "pcm2", "rec", "igain", "ogain", \ "line1", "line2", "line3", "dig1", "dig2", "dig3", \ "phin", "phout", "video", "radio", "monitor"} /* Device bitmask identifiers */ #define SOUND_MIXER_RECSRC 0xff /* 1 bit per recording source */ #define SOUND_MIXER_DEVMASK 0xfe /* 1 bit per supported device */ #define SOUND_MIXER_RECMASK 0xfd /* 1 bit per supp. recording source */ #define SOUND_MIXER_CAPS 0xfc #define SOUND_CAP_EXCL_INPUT 0x00000001 /* Only 1 rec. src at a time */ #define SOUND_MIXER_STEREODEVS 0xfb /* Mixer channels supporting stereo */ /* Device mask bits */ #define SOUND_MASK_VOLUME (1 << SOUND_MIXER_VOLUME) #define SOUND_MASK_BASS (1 << SOUND_MIXER_BASS) #define SOUND_MASK_TREBLE (1 << SOUND_MIXER_TREBLE) #define SOUND_MASK_SYNTH (1 << SOUND_MIXER_SYNTH) #define SOUND_MASK_PCM (1 << SOUND_MIXER_PCM) #define SOUND_MASK_SPEAKER (1 << SOUND_MIXER_SPEAKER) #define SOUND_MASK_LINE (1 << SOUND_MIXER_LINE) #define SOUND_MASK_MIC (1 << SOUND_MIXER_MIC) #define SOUND_MASK_CD (1 << SOUND_MIXER_CD) #define SOUND_MASK_IMIX (1 << SOUND_MIXER_IMIX) #define SOUND_MASK_ALTPCM (1 << SOUND_MIXER_ALTPCM) #define SOUND_MASK_RECLEV (1 << SOUND_MIXER_RECLEV) #define SOUND_MASK_IGAIN (1 << SOUND_MIXER_IGAIN) #define SOUND_MASK_OGAIN (1 << SOUND_MIXER_OGAIN) #define SOUND_MASK_LINE1 (1 << SOUND_MIXER_LINE1) #define SOUND_MASK_LINE2 (1 << SOUND_MIXER_LINE2) #define SOUND_MASK_LINE3 (1 << SOUND_MIXER_LINE3) #define SOUND_MASK_DIGITAL1 (1 << SOUND_MIXER_DIGITAL1) #define SOUND_MASK_DIGITAL2 (1 << SOUND_MIXER_DIGITAL2) #define SOUND_MASK_DIGITAL3 (1 << SOUND_MIXER_DIGITAL3) #define SOUND_MASK_PHONEIN (1 << SOUND_MIXER_PHONEIN) #define SOUND_MASK_PHONEOUT (1 << SOUND_MIXER_PHONEOUT) #define SOUND_MASK_RADIO (1 << SOUND_MIXER_RADIO) #define SOUND_MASK_VIDEO (1 << SOUND_MIXER_VIDEO) #define SOUND_MASK_MONITOR (1 << SOUND_MIXER_MONITOR) /* Obsolete macros */ #define SOUND_MASK_MUTE (1 << SOUND_MIXER_MUTE) #define SOUND_MASK_ENHANCE (1 << SOUND_MIXER_ENHANCE) #define SOUND_MASK_LOUD (1 << SOUND_MIXER_LOUD) #define MIXER_READ(dev) _IOR('M', dev, int) #define SOUND_MIXER_READ_VOLUME MIXER_READ(SOUND_MIXER_VOLUME) #define SOUND_MIXER_READ_BASS MIXER_READ(SOUND_MIXER_BASS) #define SOUND_MIXER_READ_TREBLE MIXER_READ(SOUND_MIXER_TREBLE) #define SOUND_MIXER_READ_SYNTH MIXER_READ(SOUND_MIXER_SYNTH) #define SOUND_MIXER_READ_PCM MIXER_READ(SOUND_MIXER_PCM) #define SOUND_MIXER_READ_SPEAKER MIXER_READ(SOUND_MIXER_SPEAKER) #define SOUND_MIXER_READ_LINE MIXER_READ(SOUND_MIXER_LINE) #define SOUND_MIXER_READ_MIC MIXER_READ(SOUND_MIXER_MIC) #define SOUND_MIXER_READ_CD MIXER_READ(SOUND_MIXER_CD) #define SOUND_MIXER_READ_IMIX MIXER_READ(SOUND_MIXER_IMIX) #define SOUND_MIXER_READ_ALTPCM MIXER_READ(SOUND_MIXER_ALTPCM) #define SOUND_MIXER_READ_RECLEV MIXER_READ(SOUND_MIXER_RECLEV) #define SOUND_MIXER_READ_IGAIN MIXER_READ(SOUND_MIXER_IGAIN) #define SOUND_MIXER_READ_OGAIN MIXER_READ(SOUND_MIXER_OGAIN) #define SOUND_MIXER_READ_LINE1 MIXER_READ(SOUND_MIXER_LINE1) #define SOUND_MIXER_READ_LINE2 MIXER_READ(SOUND_MIXER_LINE2) #define SOUND_MIXER_READ_LINE3 MIXER_READ(SOUND_MIXER_LINE3) #define SOUND_MIXER_READ_DIGITAL1 MIXER_READ(SOUND_MIXER_DIGITAL1) #define SOUND_MIXER_READ_DIGITAL2 MIXER_READ(SOUND_MIXER_DIGITAL2) #define SOUND_MIXER_READ_DIGITAL3 MIXER_READ(SOUND_MIXER_DIGITAL3) #define SOUND_MIXER_READ_PHONEIN MIXER_READ(SOUND_MIXER_PHONEIN) #define SOUND_MIXER_READ_PHONEOUT MIXER_READ(SOUND_MIXER_PHONEOUT) #define SOUND_MIXER_READ_RADIO MIXER_READ(SOUND_MIXER_RADIO) #define SOUND_MIXER_READ_VIDEO MIXER_READ(SOUND_MIXER_VIDEO) #define SOUND_MIXER_READ_MONITOR MIXER_READ(SOUND_MIXER_MONITOR) /* Obsolete macros */ #define SOUND_MIXER_READ_MUTE MIXER_READ(SOUND_MIXER_MUTE) #define SOUND_MIXER_READ_ENHANCE MIXER_READ(SOUND_MIXER_ENHANCE) #define SOUND_MIXER_READ_LOUD MIXER_READ(SOUND_MIXER_LOUD) #define SOUND_MIXER_READ_RECSRC MIXER_READ(SOUND_MIXER_RECSRC) #define SOUND_MIXER_READ_DEVMASK MIXER_READ(SOUND_MIXER_DEVMASK) #define SOUND_MIXER_READ_RECMASK MIXER_READ(SOUND_MIXER_RECMASK) #define SOUND_MIXER_READ_STEREODEVS MIXER_READ(SOUND_MIXER_STEREODEVS) #define SOUND_MIXER_READ_CAPS MIXER_READ(SOUND_MIXER_CAPS) #define MIXER_WRITE(dev) _IOWR('M', dev, int) #define SOUND_MIXER_WRITE_VOLUME MIXER_WRITE(SOUND_MIXER_VOLUME) #define SOUND_MIXER_WRITE_BASS MIXER_WRITE(SOUND_MIXER_BASS) #define SOUND_MIXER_WRITE_TREBLE MIXER_WRITE(SOUND_MIXER_TREBLE) #define SOUND_MIXER_WRITE_SYNTH MIXER_WRITE(SOUND_MIXER_SYNTH) #define SOUND_MIXER_WRITE_PCM MIXER_WRITE(SOUND_MIXER_PCM) #define SOUND_MIXER_WRITE_SPEAKER MIXER_WRITE(SOUND_MIXER_SPEAKER) #define SOUND_MIXER_WRITE_LINE MIXER_WRITE(SOUND_MIXER_LINE) #define SOUND_MIXER_WRITE_MIC MIXER_WRITE(SOUND_MIXER_MIC) #define SOUND_MIXER_WRITE_CD MIXER_WRITE(SOUND_MIXER_CD) #define SOUND_MIXER_WRITE_IMIX MIXER_WRITE(SOUND_MIXER_IMIX) #define SOUND_MIXER_WRITE_ALTPCM MIXER_WRITE(SOUND_MIXER_ALTPCM) #define SOUND_MIXER_WRITE_RECLEV MIXER_WRITE(SOUND_MIXER_RECLEV) #define SOUND_MIXER_WRITE_IGAIN MIXER_WRITE(SOUND_MIXER_IGAIN) #define SOUND_MIXER_WRITE_OGAIN MIXER_WRITE(SOUND_MIXER_OGAIN) #define SOUND_MIXER_WRITE_LINE1 MIXER_WRITE(SOUND_MIXER_LINE1) #define SOUND_MIXER_WRITE_LINE2 MIXER_WRITE(SOUND_MIXER_LINE2) #define SOUND_MIXER_WRITE_LINE3 MIXER_WRITE(SOUND_MIXER_LINE3) #define SOUND_MIXER_WRITE_DIGITAL1 MIXER_WRITE(SOUND_MIXER_DIGITAL1) #define SOUND_MIXER_WRITE_DIGITAL2 MIXER_WRITE(SOUND_MIXER_DIGITAL2) #define SOUND_MIXER_WRITE_DIGITAL3 MIXER_WRITE(SOUND_MIXER_DIGITAL3) #define SOUND_MIXER_WRITE_PHONEIN MIXER_WRITE(SOUND_MIXER_PHONEIN) #define SOUND_MIXER_WRITE_PHONEOUT MIXER_WRITE(SOUND_MIXER_PHONEOUT) #define SOUND_MIXER_WRITE_RADIO MIXER_WRITE(SOUND_MIXER_RADIO) #define SOUND_MIXER_WRITE_VIDEO MIXER_WRITE(SOUND_MIXER_VIDEO) #define SOUND_MIXER_WRITE_MONITOR MIXER_WRITE(SOUND_MIXER_MONITOR) #define SOUND_MIXER_WRITE_MUTE MIXER_WRITE(SOUND_MIXER_MUTE) #define SOUND_MIXER_WRITE_ENHANCE MIXER_WRITE(SOUND_MIXER_ENHANCE) #define SOUND_MIXER_WRITE_LOUD MIXER_WRITE(SOUND_MIXER_LOUD) #define SOUND_MIXER_WRITE_RECSRC MIXER_WRITE(SOUND_MIXER_RECSRC) typedef struct mixer_info { char id[16]; char name[32]; int modify_counter; int fillers[10]; } mixer_info; #define SOUND_MIXER_INFO _IOR('M', 101, mixer_info) #define LEFT_CHN 0 #define RIGHT_CHN 1 /* * Level 2 event types for /dev/sequencer */ /* * The 4 most significant bits of byte 0 specify the class of * the event: * * 0x8X = system level events, * 0x9X = device/port specific events, event[1] = device/port, * The last 4 bits give the subtype: * 0x02 = Channel event (event[3] = chn). * 0x01 = note event (event[4] = note). * (0x01 is not used alone but always with bit 0x02). * event[2] = MIDI message code (0x80=note off etc.) * */ #define EV_SEQ_LOCAL 0x80 #define EV_TIMING 0x81 #define EV_CHN_COMMON 0x92 #define EV_CHN_VOICE 0x93 #define EV_SYSEX 0x94 /* * Event types 200 to 220 are reserved for application use. * These numbers will not be used by the driver. */ /* * Events for event type EV_CHN_VOICE */ #define MIDI_NOTEOFF 0x80 #define MIDI_NOTEON 0x90 #define MIDI_KEY_PRESSURE 0xA0 /* * Events for event type EV_CHN_COMMON */ #define MIDI_CTL_CHANGE 0xB0 #define MIDI_PGM_CHANGE 0xC0 #define MIDI_CHN_PRESSURE 0xD0 #define MIDI_PITCH_BEND 0xE0 #define MIDI_SYSTEM_PREFIX 0xF0 /* * Timer event types */ #define TMR_WAIT_REL 1 /* Time relative to the prev time */ #define TMR_WAIT_ABS 2 /* Absolute time since TMR_START */ #define TMR_STOP 3 #define TMR_START 4 #define TMR_CONTINUE 5 #define TMR_TEMPO 6 #define TMR_ECHO 8 #define TMR_CLOCK 9 /* MIDI clock */ #define TMR_SPP 10 /* Song position pointer */ #define TMR_TIMESIG 11 /* Time signature */ /* * Local event types */ #define LOCL_STARTAUDIO 1 #if (!defined(_KERNEL) && !defined(INKERNEL)) || defined(USE_SEQ_MACROS) /* * Some convenience macros to simplify programming of the * /dev/sequencer interface * * These macros define the API which should be used when possible. */ #ifndef USE_SIMPLE_MACROS void seqbuf_dump(void); /* This function must be provided by programs */ /* Sample seqbuf_dump() implementation: * * SEQ_DEFINEBUF (2048); -- Defines a buffer for 2048 bytes * * int seqfd; -- The file descriptor for /dev/sequencer. * * void * seqbuf_dump () * { * if (_seqbufptr) * if (write (seqfd, _seqbuf, _seqbufptr) == -1) * { * perror ("write /dev/sequencer"); * exit (-1); * } * _seqbufptr = 0; * } */ #define SEQ_DEFINEBUF(len) \ u_char _seqbuf[len]; int _seqbuflen = len;int _seqbufptr = 0 #define SEQ_USE_EXTBUF() \ extern u_char _seqbuf[]; \ extern int _seqbuflen;extern int _seqbufptr #define SEQ_DECLAREBUF() SEQ_USE_EXTBUF() #define SEQ_PM_DEFINES struct patmgr_info _pm_info #define _SEQ_NEEDBUF(len) \ if ((_seqbufptr+(len)) > _seqbuflen) \ seqbuf_dump() #define _SEQ_ADVBUF(len) _seqbufptr += len #define SEQ_DUMPBUF seqbuf_dump #else /* * This variation of the sequencer macros is used just to format one event * using fixed buffer. * * The program using the macro library must define the following macros before * using this library. * * #define _seqbuf name of the buffer (u_char[]) * #define _SEQ_ADVBUF(len) If the applic needs to know the exact * size of the event, this macro can be used. * Otherwise this must be defined as empty. * #define _seqbufptr Define the name of index variable or 0 if * not required. */ #define _SEQ_NEEDBUF(len) /* empty */ #endif #define PM_LOAD_PATCH(dev, bank, pgm) \ (SEQ_DUMPBUF(), _pm_info.command = _PM_LOAD_PATCH, \ _pm_info.device=dev, _pm_info.data.data8[0]=pgm, \ _pm_info.parm1 = bank, _pm_info.parm2 = 1, \ ioctl(seqfd, SNDCTL_PMGR_ACCESS, &_pm_info)) #define PM_LOAD_PATCHES(dev, bank, pgm) \ (SEQ_DUMPBUF(), _pm_info.command = _PM_LOAD_PATCH, \ _pm_info.device=dev, bcopy( pgm, _pm_info.data.data8, 128), \ _pm_info.parm1 = bank, _pm_info.parm2 = 128, \ ioctl(seqfd, SNDCTL_PMGR_ACCESS, &_pm_info)) #define SEQ_VOLUME_MODE(dev, mode) { \ _SEQ_NEEDBUF(8);\ _seqbuf[_seqbufptr] = SEQ_EXTENDED;\ _seqbuf[_seqbufptr+1] = SEQ_VOLMODE;\ _seqbuf[_seqbufptr+2] = (dev);\ _seqbuf[_seqbufptr+3] = (mode);\ _seqbuf[_seqbufptr+4] = 0;\ _seqbuf[_seqbufptr+5] = 0;\ _seqbuf[_seqbufptr+6] = 0;\ _seqbuf[_seqbufptr+7] = 0;\ _SEQ_ADVBUF(8);} /* * Midi voice messages */ #define _CHN_VOICE(dev, event, chn, note, parm) { \ _SEQ_NEEDBUF(8);\ _seqbuf[_seqbufptr] = EV_CHN_VOICE;\ _seqbuf[_seqbufptr+1] = (dev);\ _seqbuf[_seqbufptr+2] = (event);\ _seqbuf[_seqbufptr+3] = (chn);\ _seqbuf[_seqbufptr+4] = (note);\ _seqbuf[_seqbufptr+5] = (parm);\ _seqbuf[_seqbufptr+6] = (0);\ _seqbuf[_seqbufptr+7] = 0;\ _SEQ_ADVBUF(8);} #define SEQ_START_NOTE(dev, chn, note, vol) \ _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol) #define SEQ_STOP_NOTE(dev, chn, note, vol) \ _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol) #define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \ _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure) /* * Midi channel messages */ #define _CHN_COMMON(dev, event, chn, p1, p2, w14) { \ _SEQ_NEEDBUF(8);\ _seqbuf[_seqbufptr] = EV_CHN_COMMON;\ _seqbuf[_seqbufptr+1] = (dev);\ _seqbuf[_seqbufptr+2] = (event);\ _seqbuf[_seqbufptr+3] = (chn);\ _seqbuf[_seqbufptr+4] = (p1);\ _seqbuf[_seqbufptr+5] = (p2);\ *(short *)&_seqbuf[_seqbufptr+6] = (w14);\ _SEQ_ADVBUF(8);} /* * SEQ_SYSEX permits sending of sysex messages. (It may look that it permits * sending any MIDI bytes but it's absolutely not possible. Trying to do * so _will_ cause problems with MPU401 intelligent mode). * * Sysex messages are sent in blocks of 1 to 6 bytes. Longer messages must be * sent by calling SEQ_SYSEX() several times (there must be no other events * between them). First sysex fragment must have 0xf0 in the first byte * and the last byte (buf[len-1] of the last fragment must be 0xf7. No byte * between these sysex start and end markers cannot be larger than 0x7f. Also * lengths of each fragments (except the last one) must be 6. * * Breaking the above rules may work with some MIDI ports but is likely to * cause fatal problems with some other devices (such as MPU401). */ #define SEQ_SYSEX(dev, buf, len) { \ int i, l=(len); if (l>6)l=6;\ _SEQ_NEEDBUF(8);\ _seqbuf[_seqbufptr] = EV_SYSEX;\ for(i=0;i e.g. cmake .. -DAUDIO_WINDOWS_WASAPI=ON WINDOWS: All Windows audio APIs in RtAudio compile with either the MinGW compiler (tested with latest tdm64-gcc-4.8.1) or MS Visual Studio. Visual C++ 6.0 project files (very old) are included for the test programs in the /tests/Windows/ directory. These projects compile API support for ASIO, WASAPI and DirectSound. LINUX OSS: The OSS API support in RtAudio has not been tested for many years. I'm not even sure there are OSS drivers supporting recent linux kernels. In all likelihood, the OSS API code in RtAudio will disappear within the next year or two (if you don't want this to happen, let me know). ================================================ FILE: vendor/github.com/thestk/rtaudio/rtaudio.pc.in ================================================ prefix=@prefix@ exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include/rtaudio Name: librtaudio Description: RtAudio - a set of C++ classes that provide a common API for realtime audio input/output Version: @PACKAGE_VERSION@ Requires: @req@ Libs: -L${libdir} -lrtaudio Libs.private: -lpthread Cflags: -pthread -I${includedir} @api@ ================================================ FILE: vendor/github.com/thestk/rtaudio/rtaudio_c.cpp ================================================ #include "rtaudio_c.h" #include "RtAudio.h" #include #define MAX_ERROR_MESSAGE_LENGTH 512 struct rtaudio { RtAudio *audio; rtaudio_cb_t cb; void *userdata; int has_error; char errmsg[MAX_ERROR_MESSAGE_LENGTH]; }; static const rtaudio_api_t compiled_api[] = { #if defined(__UNIX_JACK__) RTAUDIO_API_UNIX_JACK, #endif #if defined(__LINUX_ALSA__) RTAUDIO_API_LINUX_ALSA, #endif #if defined(__LINUX_PULSE__) RTAUDIO_API_LINUX_PULSE, #endif #if defined(__LINUX_OSS__) RTAUDIO_API_LINUX_OSS, #endif #if defined(__WINDOWS_ASIO__) RTAUDIO_API_WINDOWS_ASIO, #endif #if defined(__WINDOWS_WASAPI__) RTAUDIO_API_WINDOWS_WASAPI, #endif #if defined(__WINDOWS_DS__) RTAUDIO_API_WINDOWS_DS, #endif #if defined(__MACOSX_CORE__) RTAUDIO_API_MACOSX_CORE, #endif #if defined(__RTAUDIO_DUMMY__) RTAUDIO_API_DUMMY, #endif RTAUDIO_API_UNSPECIFIED, }; const char *rtaudio_version() { return RTAUDIO_VERSION; } const rtaudio_api_t *rtaudio_compiled_api() { return compiled_api; } const char *rtaudio_error(rtaudio_t audio) { if (audio->has_error) { return audio->errmsg; } return NULL; } rtaudio_t rtaudio_create(rtaudio_api_t api) { rtaudio_t audio = new struct rtaudio(); try { audio->audio = new RtAudio((RtAudio::Api)api); } catch (RtAudioError &err) { audio->has_error = 1; strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1); } return audio; } void rtaudio_destroy(rtaudio_t audio) { delete audio->audio; } rtaudio_api_t rtaudio_current_api(rtaudio_t audio) { return (rtaudio_api_t)audio->audio->getCurrentApi(); } int rtaudio_device_count(rtaudio_t audio) { return audio->audio->getDeviceCount(); } rtaudio_device_info_t rtaudio_get_device_info(rtaudio_t audio, int i) { rtaudio_device_info_t result; std::memset(&result, 0, sizeof(result)); try { audio->has_error = 0; RtAudio::DeviceInfo info = audio->audio->getDeviceInfo(i); result.probed = info.probed; result.output_channels = info.outputChannels; result.input_channels = info.inputChannels; result.duplex_channels = info.duplexChannels; result.is_default_output = info.isDefaultOutput; result.is_default_input = info.isDefaultInput; result.native_formats = info.nativeFormats; result.preferred_sample_rate = info.preferredSampleRate; strncpy(result.name, info.name.c_str(), sizeof(result.name) - 1); for (unsigned int j = 0; j < info.sampleRates.size(); j++) { if (j < sizeof(result.sample_rates) / sizeof(result.sample_rates[0])) { result.sample_rates[j] = info.sampleRates[j]; } } } catch (RtAudioError &err) { audio->has_error = 1; strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1); } return result; } unsigned int rtaudio_get_default_output_device(rtaudio_t audio) { return audio->audio->getDefaultOutputDevice(); } unsigned int rtaudio_get_default_input_device(rtaudio_t audio) { return audio->audio->getDefaultInputDevice(); } static int proxy_cb_func(void *out, void *in, unsigned int nframes, double time, RtAudioStreamStatus status, void *userdata) { rtaudio_t audio = (rtaudio_t)userdata; return audio->cb(out, in, nframes, time, (rtaudio_stream_status_t)status, audio->userdata); } int rtaudio_open_stream(rtaudio_t audio, rtaudio_stream_parameters_t *output_params, rtaudio_stream_parameters_t *input_params, rtaudio_format_t format, unsigned int sample_rate, unsigned int *buffer_frames, rtaudio_cb_t cb, void *userdata, rtaudio_stream_options_t *options, rtaudio_error_cb_t /*errcb*/) { try { audio->has_error = 0; RtAudio::StreamParameters *in = NULL; RtAudio::StreamParameters *out = NULL; RtAudio::StreamOptions *opts = NULL; RtAudio::StreamParameters inparams; RtAudio::StreamParameters outparams; RtAudio::StreamOptions stream_opts; if (input_params != NULL) { inparams.deviceId = input_params->device_id; inparams.nChannels = input_params->num_channels; inparams.firstChannel = input_params->first_channel; in = &inparams; } if (output_params != NULL) { outparams.deviceId = output_params->device_id; outparams.nChannels = output_params->num_channels; outparams.firstChannel = output_params->first_channel; out = &outparams; } if (options != NULL) { stream_opts.flags = (RtAudioStreamFlags)options->flags; stream_opts.numberOfBuffers = options->num_buffers; stream_opts.priority = options->priority; if (strlen(options->name) > 0) { stream_opts.streamName = std::string(options->name); } opts = &stream_opts; } audio->cb = cb; audio->userdata = userdata; audio->audio->openStream(out, in, (RtAudioFormat)format, sample_rate, buffer_frames, proxy_cb_func, (void *)audio, opts, NULL); return 0; } catch (RtAudioError &err) { audio->has_error = 1; strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1); return -1; } } void rtaudio_close_stream(rtaudio_t audio) { audio->audio->closeStream(); } int rtaudio_start_stream(rtaudio_t audio) { try { audio->has_error = 0; audio->audio->startStream(); } catch (RtAudioError &err) { audio->has_error = 1; strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1); } return 0; } int rtaudio_stop_stream(rtaudio_t audio) { try { audio->has_error = 0; audio->audio->stopStream(); } catch (RtAudioError &err) { audio->has_error = 1; strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1); } return 0; } int rtaudio_abort_stream(rtaudio_t audio) { try { audio->has_error = 0; audio->audio->abortStream(); } catch (RtAudioError &err) { audio->has_error = 1; strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1); } return 0; } int rtaudio_is_stream_open(rtaudio_t audio) { return !!audio->audio->isStreamOpen(); } int rtaudio_is_stream_running(rtaudio_t audio) { return !!audio->audio->isStreamRunning(); } double rtaudio_get_stream_time(rtaudio_t audio) { try { audio->has_error = 0; return audio->audio->getStreamTime(); } catch (RtAudioError &err) { audio->has_error = 1; strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1); return 0; } } void rtaudio_set_stream_time(rtaudio_t audio, double time) { try { audio->has_error = 0; audio->audio->setStreamTime(time); } catch (RtAudioError &err) { audio->has_error = 1; strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1); } } int rtaudio_get_stream_latency(rtaudio_t audio) { try { audio->has_error = 0; return audio->audio->getStreamLatency(); } catch (RtAudioError &err) { audio->has_error = 1; strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1); return -1; } } unsigned int rtaudio_get_stream_sample_rate(rtaudio_t audio) { try { return audio->audio->getStreamSampleRate(); } catch (RtAudioError &err) { audio->has_error = 1; strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1); return -1; } } void rtaudio_show_warnings(rtaudio_t audio, int show) { audio->audio->showWarnings(!!show); } ================================================ FILE: vendor/github.com/thestk/rtaudio/rtaudio_c.h ================================================ #ifndef RTAUDIO_C_H #define RTAUDIO_C_H #if defined(RTAUDIO_EXPORT) #define RTAUDIOAPI __declspec(dllexport) #else #define RTAUDIOAPI //__declspec(dllimport) #endif #ifdef __cplusplus extern "C" { #endif typedef unsigned long rtaudio_format_t; #define RTAUDIO_FORMAT_SINT8 0x01 #define RTAUDIO_FORMAT_SINT16 0x02 #define RTAUDIO_FORMAT_SINT24 0x04 #define RTAUDIO_FORMAT_SINT32 0x08 #define RTAUDIO_FORMAT_FLOAT32 0x10 #define RTAUDIO_FORMAT_FLOAT64 0x20 typedef unsigned int rtaudio_stream_flags_t; #define RTAUDIO_FLAGS_NONINTERLEAVED 0x1 #define RTAUDIO_FLAGS_MINIMIZE_LATENCY 0x2 #define RTAUDIO_FLAGS_HOG_DEVICE 0x4 #define RTAUDIO_FLAGS_SCHEDULE_REALTIME 0x8 #define RTAUDIO_FLAGS_ALSA_USE_DEFAULT 0x10 typedef unsigned int rtaudio_stream_status_t; #define RTAUDIO_STATUS_INPUT_OVERFLOW 0x1 #define RTAUDIO_STATUS_OUTPUT_UNDERFLOW 0x2 typedef int (*rtaudio_cb_t)(void *out, void *in, unsigned int nFrames, double stream_time, rtaudio_stream_status_t status, void *userdata); typedef enum rtaudio_error { RTAUDIO_ERROR_WARNING, RTAUDIO_ERROR_DEBUG_WARNING, RTAUDIO_ERROR_UNSPECIFIED, RTAUDIO_ERROR_NO_DEVICES_FOUND, RTAUDIO_ERROR_INVALID_DEVICE, RTAUDIO_ERROR_MEMORY_ERROR, RTAUDIO_ERROR_INVALID_PARAMETER, RTAUDIO_ERROR_INVALID_USE, RTAUDIO_ERROR_DRIVER_ERROR, RTAUDIO_ERROR_SYSTEM_ERROR, RTAUDIO_ERROR_THREAD_ERROR, } rtaudio_error_t; typedef void (*rtaudio_error_cb_t)(rtaudio_error_t err, const char *msg); typedef enum rtaudio_api { RTAUDIO_API_UNSPECIFIED, RTAUDIO_API_LINUX_ALSA, RTAUDIO_API_LINUX_PULSE, RTAUDIO_API_LINUX_OSS, RTAUDIO_API_UNIX_JACK, RTAUDIO_API_MACOSX_CORE, RTAUDIO_API_WINDOWS_WASAPI, RTAUDIO_API_WINDOWS_ASIO, RTAUDIO_API_WINDOWS_DS, RTAUDIO_API_DUMMY, } rtaudio_api_t; #define NUM_SAMPLE_RATES 16 #define MAX_NAME_LENGTH 512 typedef struct rtaudio_device_info { int probed; unsigned int output_channels; unsigned int input_channels; unsigned int duplex_channels; int is_default_output; int is_default_input; rtaudio_format_t native_formats; unsigned int preferred_sample_rate; int sample_rates[NUM_SAMPLE_RATES]; char name[MAX_NAME_LENGTH]; } rtaudio_device_info_t; typedef struct rtaudio_stream_parameters { unsigned int device_id; unsigned int num_channels; unsigned int first_channel; } rtaudio_stream_parameters_t; typedef struct rtaudio_stream_options { rtaudio_stream_flags_t flags; unsigned int num_buffers; int priority; char name[MAX_NAME_LENGTH]; } rtaudio_stream_options_t; typedef struct rtaudio *rtaudio_t; RTAUDIOAPI const char *rtaudio_version(); RTAUDIOAPI const rtaudio_api_t *rtaudio_compiled_api(); RTAUDIOAPI const char *rtaudio_error(rtaudio_t audio); RTAUDIOAPI rtaudio_t rtaudio_create(rtaudio_api_t api); RTAUDIOAPI void rtaudio_destroy(rtaudio_t audio); RTAUDIOAPI rtaudio_api_t rtaudio_current_api(rtaudio_t audio); RTAUDIOAPI int rtaudio_device_count(rtaudio_t audio); RTAUDIOAPI rtaudio_device_info_t rtaudio_get_device_info(rtaudio_t audio, int i); RTAUDIOAPI unsigned int rtaudio_get_default_output_device(rtaudio_t audio); RTAUDIOAPI unsigned int rtaudio_get_default_input_device(rtaudio_t audio); RTAUDIOAPI int rtaudio_open_stream(rtaudio_t audio, rtaudio_stream_parameters_t *output_params, rtaudio_stream_parameters_t *input_params, rtaudio_format_t format, unsigned int sample_rate, unsigned int *buffer_frames, rtaudio_cb_t cb, void *userdata, rtaudio_stream_options_t *options, rtaudio_error_cb_t errcb); RTAUDIOAPI void rtaudio_close_stream(rtaudio_t audio); RTAUDIOAPI int rtaudio_start_stream(rtaudio_t audio); RTAUDIOAPI int rtaudio_stop_stream(rtaudio_t audio); RTAUDIOAPI int rtaudio_abort_stream(rtaudio_t audio); RTAUDIOAPI int rtaudio_is_stream_open(rtaudio_t audio); RTAUDIOAPI int rtaudio_is_stream_running(rtaudio_t audio); RTAUDIOAPI double rtaudio_get_stream_time(rtaudio_t audio); RTAUDIOAPI void rtaudio_set_stream_time(rtaudio_t audio, double time); RTAUDIOAPI int rtaudio_get_stream_latency(rtaudio_t audio); RTAUDIOAPI unsigned int rtaudio_get_stream_sample_rate(rtaudio_t audio); RTAUDIOAPI void rtaudio_show_warnings(rtaudio_t audio, int show); #ifdef __cplusplus } #endif #endif /* RTAUDIO_C_H */ ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/CMakeLists.txt ================================================ include_directories(..) if (WIN32) include_directories(../include) endif (WIN32) add_executable(audioprobe audioprobe.cpp) target_link_libraries(audioprobe rtaudio_static ${LINKLIBS}) add_executable(playsaw playsaw.cpp) target_link_libraries(playsaw rtaudio_static ${LINKLIBS}) add_executable(playraw playraw.cpp) target_link_libraries(playraw rtaudio_static ${LINKLIBS}) add_executable(record record.cpp) target_link_libraries(record rtaudio_static ${LINKLIBS}) add_executable(duplex duplex.cpp) target_link_libraries(duplex rtaudio_static ${LINKLIBS}) add_executable(testall testall.cpp) target_link_libraries(testall rtaudio_static ${LINKLIBS}) add_executable(teststops teststops.cpp) target_link_libraries(teststops rtaudio_static ${LINKLIBS}) ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/Debug/.placeholder ================================================ ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/Makefile.am ================================================ noinst_PROGRAMS = audioprobe playsaw playraw record duplex testall teststops AM_CXXFLAGS = -Wall -I$(top_srcdir) audioprobe_SOURCES = audioprobe.cpp audioprobe_LDADD = $(top_builddir)/librtaudio.la playsaw_SOURCES = playsaw.cpp playsaw_LDADD = $(top_builddir)/librtaudio.la playraw_SOURCES = playraw.cpp playraw_LDADD = $(top_builddir)/librtaudio.la record_SOURCES = record.cpp record_LDADD = $(top_builddir)/librtaudio.la duplex_SOURCES = duplex.cpp duplex_LDADD = $(top_builddir)/librtaudio.la testall_SOURCES = testall.cpp testall_LDADD = $(top_builddir)/librtaudio.la teststops_SOURCES = teststops.cpp teststops_LDADD = $(top_builddir)/librtaudio.la EXTRA_DIST = Windows ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/Release/.placeholder ================================================ ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/Windows/Debug/.placeholder ================================================ ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/Windows/Release/.placeholder ================================================ ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/Windows/audioprobe.dsp ================================================ # Microsoft Developer Studio Project File - Name="audioprobe" - Package Owner=<4> # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Console Application" 0x0103 CFG=audioprobe - Win32 Debug !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run !MESSAGE !MESSAGE NMAKE /f "audioprobe.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "audioprobe.mak" CFG="audioprobe - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "audioprobe - Win32 Release" (based on "Win32 (x86) Console Application") !MESSAGE "audioprobe - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE # Begin Project # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "audioprobe - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "audioprobe___Win32_Release" # PROP BASE Intermediate_Dir "audioprobe___Win32_Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "" # PROP Intermediate_Dir "Release" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD CPP /nologo /MT /W3 /GX /O2 /I "../../" /I "../../include" /D "NDEBUG" /D "__WINDOWS_DS__" /D "__WINDOWS_ASIO__" /D "__WINDOWS_WASAPI__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "audioprobe - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "audioprobe___Win32_Debug" # PROP BASE Intermediate_Dir "audioprobe___Win32_Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../" /I "../../include" /D "_DEBUG" /D "__WINDOWS_DS__" /D "__WINDOWS_ASIO__" /D "__WINDOWS_WASAPI__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept !ENDIF # Begin Target # Name "audioprobe - Win32 Release" # Name "audioprobe - Win32 Debug" # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # Begin Source File SOURCE=..\..\include\asio.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiolist.cpp # End Source File # Begin Source File SOURCE=..\audioprobe.cpp # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.cpp # End Source File # Begin Source File SOURCE=..\..\RtAudio.cpp # End Source File # End Group # Begin Group "Header Files" # PROP Default_Filter "h;hpp;hxx;hm;inl" # Begin Source File SOURCE=..\..\include\asio.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrvr.h # End Source File # Begin Source File SOURCE=..\..\include\asiolist.h # End Source File # Begin Source File SOURCE=..\..\include\asiosys.h # End Source File # Begin Source File SOURCE=..\..\include\ginclude.h # End Source File # Begin Source File SOURCE=..\..\include\iasiodrv.h # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.h # End Source File # Begin Source File SOURCE=..\..\RtAudio.h # End Source File # End Group # Begin Group "Resource Files" # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" # End Group # End Target # End Project ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/Windows/duplex.dsp ================================================ # Microsoft Developer Studio Project File - Name="duplex" - Package Owner=<4> # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Console Application" 0x0103 CFG=duplex - Win32 Debug !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run !MESSAGE !MESSAGE NMAKE /f "duplex.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "duplex.mak" CFG="duplex - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "duplex - Win32 Release" (based on "Win32 (x86) Console Application") !MESSAGE "duplex - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE # Begin Project # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "duplex - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "duplex___Win32_Release" # PROP BASE Intermediate_Dir "duplex___Win32_Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "" # PROP Intermediate_Dir "Release" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD CPP /nologo /MT /W3 /GX /O2 /I "../../" /I "../../include" /D "NDEBUG" /D "__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_ASIO__" /D "__WINDOWS_WASAPI__" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "duplex - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "duplex___Win32_Debug" # PROP BASE Intermediate_Dir "duplex___Win32_Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../" /I "../../include" /D "_DEBUG" /D "__WINDOWS_ASIO__.__WINDOWS_DS__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_ASIO__" /D "__WINDOWS_DS__" /D "__WINDOWS_WASAPI__" /YX /FD /GZ /c # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept !ENDIF # Begin Target # Name "duplex - Win32 Release" # Name "duplex - Win32 Debug" # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # Begin Source File SOURCE=..\..\include\asio.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiolist.cpp # End Source File # Begin Source File SOURCE=..\duplex.cpp # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.cpp # End Source File # Begin Source File SOURCE=..\..\RtAudio.cpp # End Source File # End Group # Begin Group "Header Files" # PROP Default_Filter "h;hpp;hxx;hm;inl" # Begin Source File SOURCE=..\..\include\asio.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrvr.h # End Source File # Begin Source File SOURCE=..\..\include\asiolist.h # End Source File # Begin Source File SOURCE=..\..\include\asiosys.h # End Source File # Begin Source File SOURCE=..\..\include\ginclude.h # End Source File # Begin Source File SOURCE=..\..\include\iasiodrv.h # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.h # End Source File # Begin Source File SOURCE=..\..\RtAudio.h # End Source File # End Group # Begin Group "Resource Files" # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" # End Group # End Target # End Project ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/Windows/playraw.dsp ================================================ # Microsoft Developer Studio Project File - Name="playraw" - Package Owner=<4> # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Console Application" 0x0103 CFG=playraw - Win32 Debug !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run !MESSAGE !MESSAGE NMAKE /f "playraw.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "playraw.mak" CFG="playraw - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "playraw - Win32 Release" (based on "Win32 (x86) Console Application") !MESSAGE "playraw - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE # Begin Project # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "playraw - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "playraw___Win32_Release" # PROP BASE Intermediate_Dir "playraw___Win32_Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "" # PROP Intermediate_Dir "Release" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD CPP /nologo /MT /W3 /GX /O2 /I "../../" /I "../../include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_ASIO__" /D "__WINDOWS_DS__" /D "__WINDOWS_WASAPI__" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "playraw - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "playraw___Win32_Debug" # PROP BASE Intermediate_Dir "playraw___Win32_Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../" /I "../../include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_ASIO__" /D "__WINDOWS_DS__" /D "__WINDOWS_WASAPI__" /YX /FD /GZ /c # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept !ENDIF # Begin Target # Name "playraw - Win32 Release" # Name "playraw - Win32 Debug" # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # Begin Source File SOURCE=..\..\include\asio.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiolist.cpp # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.cpp # End Source File # Begin Source File SOURCE=..\playraw.cpp # End Source File # Begin Source File SOURCE=..\..\RtAudio.cpp # End Source File # End Group # Begin Group "Header Files" # PROP Default_Filter "h;hpp;hxx;hm;inl" # Begin Source File SOURCE=..\..\include\asio.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrvr.h # End Source File # Begin Source File SOURCE=..\..\include\asiolist.h # End Source File # Begin Source File SOURCE=..\..\include\asiosys.h # End Source File # Begin Source File SOURCE=..\..\include\ginclude.h # End Source File # Begin Source File SOURCE=..\..\include\iasiodrv.h # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.h # End Source File # Begin Source File SOURCE=..\..\RtAudio.h # End Source File # End Group # Begin Group "Resource Files" # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" # End Group # End Target # End Project ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/Windows/playsaw.dsp ================================================ # Microsoft Developer Studio Project File - Name="playsaw" - Package Owner=<4> # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Console Application" 0x0103 CFG=playsaw - Win32 Debug !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run !MESSAGE !MESSAGE NMAKE /f "playsaw.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "playsaw.mak" CFG="playsaw - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "playsaw - Win32 Release" (based on "Win32 (x86) Console Application") !MESSAGE "playsaw - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE # Begin Project # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "playsaw - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "playsaw___Win32_Release" # PROP BASE Intermediate_Dir "playsaw___Win32_Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "" # PROP Intermediate_Dir "Release" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD CPP /nologo /MT /W3 /GX /O2 /I "../../" /I "../../include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_ASIO__" /D "__WINDOWS_DS__" /D "__WINDOWS_WASAPI__" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "playsaw - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "playsaw___Win32_Debug" # PROP BASE Intermediate_Dir "playsaw___Win32_Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../" /I "../../include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_ASIO__" /D "__WINDOWS_DS__" /D "__WINDOWS_WASAPI__" /YX /FD /GZ /c # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept !ENDIF # Begin Target # Name "playsaw - Win32 Release" # Name "playsaw - Win32 Debug" # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # Begin Source File SOURCE=..\..\include\asio.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiolist.cpp # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.cpp # End Source File # Begin Source File SOURCE=..\playsaw.cpp # End Source File # Begin Source File SOURCE=..\..\RtAudio.cpp # End Source File # End Group # Begin Group "Header Files" # PROP Default_Filter "h;hpp;hxx;hm;inl" # Begin Source File SOURCE=..\..\include\asio.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrvr.h # End Source File # Begin Source File SOURCE=..\..\include\asiolist.h # End Source File # Begin Source File SOURCE=..\..\include\asiosys.h # End Source File # Begin Source File SOURCE=..\..\include\ginclude.h # End Source File # Begin Source File SOURCE=..\..\include\iasiodrv.h # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.h # End Source File # Begin Source File SOURCE=..\..\RtAudio.h # End Source File # End Group # Begin Group "Resource Files" # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" # End Group # End Target # End Project ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/Windows/record.dsp ================================================ # Microsoft Developer Studio Project File - Name="record" - Package Owner=<4> # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Console Application" 0x0103 CFG=record - Win32 Debug !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run !MESSAGE !MESSAGE NMAKE /f "record.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "record.mak" CFG="record - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "record - Win32 Release" (based on "Win32 (x86) Console Application") !MESSAGE "record - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE # Begin Project # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "record - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "record___Win32_Release" # PROP BASE Intermediate_Dir "record___Win32_Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "" # PROP Intermediate_Dir "Release" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD CPP /nologo /MT /W3 /GX /O2 /I "../../" /I "../../include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_ASIO__" /D "__WINDOWS_DS__" /D "__WINDOWS_WASAPI__" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "record - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "record___Win32_Debug" # PROP BASE Intermediate_Dir "record___Win32_Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../" /I "../../include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_ASIO__" /D "__WINDOWS_DS__" /D "__WINDOWS_WASAPI__" /YX /FD /GZ /c # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept !ENDIF # Begin Target # Name "record - Win32 Release" # Name "record - Win32 Debug" # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # Begin Source File SOURCE=..\..\include\asio.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiolist.cpp # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.cpp # End Source File # Begin Source File SOURCE=..\record.cpp # End Source File # Begin Source File SOURCE=..\..\RtAudio.cpp # End Source File # End Group # Begin Group "Header Files" # PROP Default_Filter "h;hpp;hxx;hm;inl" # Begin Source File SOURCE=..\..\include\asio.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrvr.h # End Source File # Begin Source File SOURCE=..\..\include\asiolist.h # End Source File # Begin Source File SOURCE=..\..\include\asiosys.h # End Source File # Begin Source File SOURCE=..\..\include\ginclude.h # End Source File # Begin Source File SOURCE=..\..\include\iasiodrv.h # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.h # End Source File # Begin Source File SOURCE=..\..\RtAudio.h # End Source File # End Group # Begin Group "Resource Files" # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" # End Group # End Target # End Project ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/Windows/rtaudio.dsw ================================================ Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ############################################################################### Project: "audioprobe"=.\audioprobe.dsp - Package Owner=<4> Package=<5> {{{ }}} Package=<4> {{{ }}} ############################################################################### Project: "duplex"=.\duplex.dsp - Package Owner=<4> Package=<5> {{{ }}} Package=<4> {{{ }}} ############################################################################### Project: "playraw"=.\playraw.dsp - Package Owner=<4> Package=<5> {{{ }}} Package=<4> {{{ }}} ############################################################################### Project: "playsaw"=.\playsaw.dsp - Package Owner=<4> Package=<5> {{{ }}} Package=<4> {{{ }}} ############################################################################### Project: "record"=.\record.dsp - Package Owner=<4> Package=<5> {{{ }}} Package=<4> {{{ }}} ############################################################################### Project: "testall"=.\testall.dsp - Package Owner=<4> Package=<5> {{{ }}} Package=<4> {{{ }}} ############################################################################### Project: "teststops"=.\teststops.dsp - Package Owner=<4> Package=<5> {{{ }}} Package=<4> {{{ }}} ############################################################################### Global: Package=<5> {{{ }}} Package=<3> {{{ }}} ############################################################################### ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/Windows/testall.dsp ================================================ # Microsoft Developer Studio Project File - Name="testall" - Package Owner=<4> # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Console Application" 0x0103 CFG=testall - Win32 Debug !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run !MESSAGE !MESSAGE NMAKE /f "testall.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "testall.mak" CFG="testall - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "testall - Win32 Release" (based on "Win32 (x86) Console Application") !MESSAGE "testall - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE # Begin Project # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "testall - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "testall___Win32_Release" # PROP BASE Intermediate_Dir "testall___Win32_Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "" # PROP Intermediate_Dir "Release" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD CPP /nologo /MT /W3 /GX /O2 /I "../../" /I "../../include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_ASIO__" /D "__WINDOWS_DS__" /D "__WINDOWS_WASAPI__" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "testall - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "testall___Win32_Debug" # PROP BASE Intermediate_Dir "testall___Win32_Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../" /I "../../include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_ASIO__" /D "__WINDOWS_DS__" /D "__WINDOWS_WASAPI__" /YX /FD /GZ /c # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept !ENDIF # Begin Target # Name "testall - Win32 Release" # Name "testall - Win32 Debug" # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # Begin Source File SOURCE=..\..\include\asio.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiolist.cpp # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.cpp # End Source File # Begin Source File SOURCE=..\..\RtAudio.cpp # End Source File # Begin Source File SOURCE=..\testall.cpp # End Source File # End Group # Begin Group "Header Files" # PROP Default_Filter "h;hpp;hxx;hm;inl" # Begin Source File SOURCE=..\..\include\asio.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrvr.h # End Source File # Begin Source File SOURCE=..\..\include\asiolist.h # End Source File # Begin Source File SOURCE=..\..\include\asiosys.h # End Source File # Begin Source File SOURCE=..\..\include\ginclude.h # End Source File # Begin Source File SOURCE=..\..\include\iasiodrv.h # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.h # End Source File # Begin Source File SOURCE=..\..\RtAudio.h # End Source File # End Group # Begin Group "Resource Files" # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" # End Group # End Target # End Project ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/Windows/teststops.dsp ================================================ # Microsoft Developer Studio Project File - Name="teststops" - Package Owner=<4> # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Console Application" 0x0103 CFG=teststops - Win32 Debug !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run !MESSAGE !MESSAGE NMAKE /f "teststops.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "teststops.mak" CFG="teststops - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "teststops - Win32 Release" (based on "Win32 (x86) Console Application") !MESSAGE "teststops - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE # Begin Project # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "teststops - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "teststops___Win32_Release" # PROP BASE Intermediate_Dir "teststops___Win32_Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "" # PROP Intermediate_Dir "Release" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD CPP /nologo /MT /W3 /GX /O2 /I "../../" /I "../../include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_ASIO__" /D "__WINDOWS_DS__" /D "__WINDOWS_WASAPI__" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "teststops - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "teststops___Win32_Debug" # PROP BASE Intermediate_Dir "teststops___Win32_Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../" /I "../../include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "__WINDOWS_ASIO__" /D "__WINDOWS_DS__" /D "__WINDOWS_WASAPI__" /YX /FD /GZ /c # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept !ENDIF # Begin Target # Name "teststops - Win32 Release" # Name "teststops - Win32 Debug" # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # Begin Source File SOURCE=..\..\include\asio.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.cpp # End Source File # Begin Source File SOURCE=..\..\include\asiolist.cpp # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.cpp # End Source File # Begin Source File SOURCE=..\..\RtAudio.cpp # End Source File # Begin Source File SOURCE=..\teststops.cpp # End Source File # End Group # Begin Group "Header Files" # PROP Default_Filter "h;hpp;hxx;hm;inl" # Begin Source File SOURCE=..\..\include\asio.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrivers.h # End Source File # Begin Source File SOURCE=..\..\include\asiodrvr.h # End Source File # Begin Source File SOURCE=..\..\include\asiolist.h # End Source File # Begin Source File SOURCE=..\..\include\asiosys.h # End Source File # Begin Source File SOURCE=..\..\include\ginclude.h # End Source File # Begin Source File SOURCE=..\..\include\iasiodrv.h # End Source File # Begin Source File SOURCE=..\..\include\iasiothiscallresolver.h # End Source File # Begin Source File SOURCE=..\..\RtAudio.h # End Source File # End Group # Begin Group "Resource Files" # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" # End Group # End Target # End Project ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/audioprobe.cpp ================================================ /******************************************/ /* audioprobe.cpp by Gary P. Scavone, 2001 Probe audio system and prints device info. */ /******************************************/ #include "RtAudio.h" #include #include int main() { // Create an api map. std::map apiMap; apiMap[RtAudio::MACOSX_CORE] = "OS-X Core Audio"; apiMap[RtAudio::WINDOWS_ASIO] = "Windows ASIO"; apiMap[RtAudio::WINDOWS_DS] = "Windows Direct Sound"; apiMap[RtAudio::WINDOWS_WASAPI] = "Windows WASAPI"; apiMap[RtAudio::UNIX_JACK] = "Jack Client"; apiMap[RtAudio::LINUX_ALSA] = "Linux ALSA"; apiMap[RtAudio::LINUX_PULSE] = "Linux PulseAudio"; apiMap[RtAudio::LINUX_OSS] = "Linux OSS"; apiMap[RtAudio::RTAUDIO_DUMMY] = "RtAudio Dummy"; std::vector< RtAudio::Api > apis; RtAudio :: getCompiledApi( apis ); std::cout << "\nRtAudio Version " << RtAudio::getVersion() << std::endl; std::cout << "\nCompiled APIs:\n"; for ( unsigned int i=0; i #include #include /* typedef char MY_TYPE; #define FORMAT RTAUDIO_SINT8 */ typedef signed short MY_TYPE; #define FORMAT RTAUDIO_SINT16 /* typedef S24 MY_TYPE; #define FORMAT RTAUDIO_SINT24 typedef signed long MY_TYPE; #define FORMAT RTAUDIO_SINT32 typedef float MY_TYPE; #define FORMAT RTAUDIO_FLOAT32 typedef double MY_TYPE; #define FORMAT RTAUDIO_FLOAT64 */ void usage( void ) { // Error function in case of incorrect command-line // argument specifications std::cout << "\nuseage: duplex N fs \n"; std::cout << " where N = number of channels,\n"; std::cout << " fs = the sample rate,\n"; std::cout << " iDevice = optional input device to use (default = 0),\n"; std::cout << " oDevice = optional output device to use (default = 0),\n"; std::cout << " iChannelOffset = an optional input channel offset (default = 0),\n"; std::cout << " and oChannelOffset = optional output channel offset (default = 0).\n\n"; exit( 0 ); } int inout( void *outputBuffer, void *inputBuffer, unsigned int /*nBufferFrames*/, double /*streamTime*/, RtAudioStreamStatus status, void *data ) { // Since the number of input and output channels is equal, we can do // a simple buffer copy operation here. if ( status ) std::cout << "Stream over/underflow detected." << std::endl; unsigned int *bytes = (unsigned int *) data; memcpy( outputBuffer, inputBuffer, *bytes ); return 0; } int main( int argc, char *argv[] ) { unsigned int channels, fs, bufferBytes, oDevice = 0, iDevice = 0, iOffset = 0, oOffset = 0; // Minimal command-line checking if (argc < 3 || argc > 7 ) usage(); RtAudio adac; if ( adac.getDeviceCount() < 1 ) { std::cout << "\nNo audio devices found!\n"; exit( 1 ); } channels = (unsigned int) atoi(argv[1]); fs = (unsigned int) atoi(argv[2]); if ( argc > 3 ) iDevice = (unsigned int) atoi(argv[3]); if ( argc > 4 ) oDevice = (unsigned int) atoi(argv[4]); if ( argc > 5 ) iOffset = (unsigned int) atoi(argv[5]); if ( argc > 6 ) oOffset = (unsigned int) atoi(argv[6]); // Let RtAudio print messages to stderr. adac.showWarnings( true ); // Set the same number of channels for both input and output. unsigned int bufferFrames = 512; RtAudio::StreamParameters iParams, oParams; iParams.deviceId = iDevice; iParams.nChannels = channels; iParams.firstChannel = iOffset; oParams.deviceId = oDevice; oParams.nChannels = channels; oParams.firstChannel = oOffset; if ( iDevice == 0 ) iParams.deviceId = adac.getDefaultInputDevice(); if ( oDevice == 0 ) oParams.deviceId = adac.getDefaultOutputDevice(); RtAudio::StreamOptions options; //options.flags |= RTAUDIO_NONINTERLEAVED; bufferBytes = bufferFrames * channels * sizeof( MY_TYPE ); try { adac.openStream( &oParams, &iParams, FORMAT, fs, &bufferFrames, &inout, (void *)&bufferBytes, &options ); } catch ( RtAudioError& e ) { std::cout << '\n' << e.getMessage() << '\n' << std::endl; exit( 1 ); } // Test RtAudio functionality for reporting latency. std::cout << "\nStream latency = " << adac.getStreamLatency() << " frames" << std::endl; try { adac.startStream(); char input; std::cout << "\nRunning ... press to quit (buffer frames = " << bufferFrames << ").\n"; std::cin.get(input); // Stop the stream. adac.stopStream(); } catch ( RtAudioError& e ) { std::cout << '\n' << e.getMessage() << '\n' << std::endl; goto cleanup; } cleanup: if ( adac.isStreamOpen() ) adac.closeStream(); return 0; } ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/playraw.cpp ================================================ /******************************************/ /* playraw.cpp by Gary P. Scavone, 2007 Play a specified raw file. It is necessary that the file be of the same data format as defined below. */ /******************************************/ #include "RtAudio.h" #include #include #include #include /* typedef char MY_TYPE; #define FORMAT RTAUDIO_SINT8 #define SCALE 127.0 */ typedef signed short MY_TYPE; #define FORMAT RTAUDIO_SINT16 #define SCALE 32767.0 /* typedef S24 MY_TYPE; #define FORMAT RTAUDIO_SINT24 #define SCALE 8388607.0 typedef signed int MY_TYPE; #define FORMAT RTAUDIO_SINT32 #define SCALE 2147483647.0 typedef float MY_TYPE; #define FORMAT RTAUDIO_FLOAT32 #define SCALE 1.0; typedef double MY_TYPE; #define FORMAT RTAUDIO_FLOAT64 #define SCALE 1.0; */ // Platform-dependent sleep routines. #if defined( __WINDOWS_ASIO__ ) || defined( __WINDOWS_DS__ ) || defined( __WINDOWS_WASAPI__ ) #include #define SLEEP( milliseconds ) Sleep( (DWORD) milliseconds ) #else // Unix variants #include #define SLEEP( milliseconds ) usleep( (unsigned long) (milliseconds * 1000.0) ) #endif void usage( void ) { // Error function in case of incorrect command-line // argument specifications std::cout << "\nuseage: playraw N fs file \n"; std::cout << " where N = number of channels,\n"; std::cout << " fs = the sample rate, \n"; std::cout << " file = the raw file to play,\n"; std::cout << " device = optional device to use (default = 0),\n"; std::cout << " and channelOffset = an optional channel offset on the device (default = 0).\n\n"; exit( 0 ); } struct OutputData { FILE *fd; unsigned int channels; }; // Interleaved buffers int output( void *outputBuffer, void * /*inputBuffer*/, unsigned int nBufferFrames, double /*streamTime*/, RtAudioStreamStatus /*status*/, void *data ) { OutputData *oData = (OutputData*) data; // In general, it's not a good idea to do file input in the audio // callback function but I'm doing it here because I don't know the // length of the file we are reading. unsigned int count = fread( outputBuffer, oData->channels * sizeof( MY_TYPE ), nBufferFrames, oData->fd); if ( count < nBufferFrames ) { unsigned int bytes = (nBufferFrames - count) * oData->channels * sizeof( MY_TYPE ); unsigned int startByte = count * oData->channels * sizeof( MY_TYPE ); memset( (char *)(outputBuffer)+startByte, 0, bytes ); return 1; } return 0; } int main( int argc, char *argv[] ) { unsigned int channels, fs, bufferFrames, device = 0, offset = 0; char *file; // minimal command-line checking if ( argc < 4 || argc > 6 ) usage(); RtAudio dac; if ( dac.getDeviceCount() < 1 ) { std::cout << "\nNo audio devices found!\n"; exit( 0 ); } channels = (unsigned int) atoi( argv[1]) ; fs = (unsigned int) atoi( argv[2] ); file = argv[3]; if ( argc > 4 ) device = (unsigned int) atoi( argv[4] ); if ( argc > 5 ) offset = (unsigned int) atoi( argv[5] ); OutputData data; data.fd = fopen( file, "rb" ); if ( !data.fd ) { std::cout << "Unable to find or open file!\n"; exit( 1 ); } // Set our stream parameters for output only. bufferFrames = 512; RtAudio::StreamParameters oParams; oParams.deviceId = device; oParams.nChannels = channels; oParams.firstChannel = offset; if ( device == 0 ) oParams.deviceId = dac.getDefaultOutputDevice(); data.channels = channels; try { dac.openStream( &oParams, NULL, FORMAT, fs, &bufferFrames, &output, (void *)&data ); dac.startStream(); } catch ( RtAudioError& e ) { std::cout << '\n' << e.getMessage() << '\n' << std::endl; goto cleanup; } std::cout << "\nPlaying raw file " << file << " (buffer frames = " << bufferFrames << ")." << std::endl; while ( 1 ) { SLEEP( 100 ); // wake every 100 ms to check if we're done if ( dac.isStreamRunning() == false ) break; } cleanup: fclose( data.fd ); dac.closeStream(); return 0; } ================================================ FILE: vendor/github.com/thestk/rtaudio/tests/playsaw.cpp ================================================ /******************************************/ /* playsaw.cpp by Gary P. Scavone, 2006 This program will output sawtooth waveforms of different frequencies on each channel. */ /******************************************/ #include "RtAudio.h" #include #include /* typedef char MY_TYPE; #define FORMAT RTAUDIO_SINT8 #define SCALE 127.0 */ typedef signed short MY_TYPE; #define FORMAT RTAUDIO_SINT16 #define SCALE 32767.0 /* typedef S24 MY_TYPE; #define FORMAT RTAUDIO_SINT24 #define SCALE 8388607.0 typedef signed long MY_TYPE; #define FORMAT RTAUDIO_SINT32 #define SCALE 2147483647.0 typedef float MY_TYPE; #define FORMAT RTAUDIO_FLOAT32 #define SCALE 1.0 typedef double MY_TYPE; #define FORMAT RTAUDIO_FLOAT64 #define SCALE 1.0 */ // Platform-dependent sleep routines. #if defined( __WINDOWS_ASIO__ ) || defined( __WINDOWS_DS__ ) || defined( __WINDOWS_WASAPI__ ) #include #define SLEEP( milliseconds ) Sleep( (DWORD) milliseconds ) #else // Unix variants #include #define SLEEP( milliseconds ) usleep( (unsigned long) (milliseconds * 1000.0) ) #endif #define BASE_RATE 0.005 #define TIME 1.0 void usage( void ) { // Error function in case of incorrect command-line // argument specifications std::cout << "\nuseage: playsaw N fs