-
Notifications
You must be signed in to change notification settings - Fork 2
/
resources.py
1266 lines (1258 loc) · 76.9 KB
/
resources.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
# Resource object code
#
# Created: mer. 14. sept. 10:51:53 2016
# by: The Resource Compiler for PyQt (Qt v4.8.5)
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore
qt_resource_data = "\
\x00\x00\x07\xea\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x03\x56\x69\x54\x58\x74\x58\x4d\x4c\
\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\
\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\
\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\
\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\
\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\
\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\
\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\
\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\x36\x36\
\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\x30\x32\
\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\x20\x20\
\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\
\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\
\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\
\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\
\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\
\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\
\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\
\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\
\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\
\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\x66\x23\
\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\
\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\x4d\x4d\
\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\x65\x6e\
\x74\x49\x44\x3d\x22\x46\x41\x41\x34\x37\x42\x41\x33\x39\x43\x33\
\x45\x43\x42\x30\x45\x31\x37\x42\x37\x35\x41\x42\x36\x45\x46\x31\
\x36\x33\x37\x45\x31\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\
\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\
\x3a\x41\x30\x36\x41\x32\x42\x30\x34\x34\x45\x46\x33\x31\x31\x45\
\x35\x41\x39\x46\x34\x43\x45\x35\x34\x36\x42\x46\x35\x30\x36\x43\
\x32\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x49\x6e\x73\x74\x61\x6e\x63\
\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x41\x30\x36\
\x41\x32\x42\x30\x33\x34\x45\x46\x33\x31\x31\x45\x35\x41\x39\x46\
\x34\x43\x45\x35\x34\x36\x42\x46\x35\x30\x36\x43\x32\x22\x20\x78\
\x6d\x70\x3a\x43\x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\
\x41\x64\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\
\x43\x53\x36\x20\x4d\x61\x63\x69\x6e\x74\x6f\x73\x68\x22\x3e\x20\
\x3c\x78\x6d\x70\x4d\x4d\x3a\x44\x65\x72\x69\x76\x65\x64\x46\x72\
\x6f\x6d\x20\x73\x74\x52\x65\x66\x3a\x69\x6e\x73\x74\x61\x6e\x63\
\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x30\x32\x38\
\x30\x31\x31\x37\x34\x30\x37\x32\x30\x36\x38\x31\x31\x38\x32\x32\
\x41\x39\x45\x32\x39\x34\x32\x44\x34\x36\x37\x46\x38\x22\x20\x73\
\x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\
\x22\x46\x41\x41\x34\x37\x42\x41\x33\x39\x43\x33\x45\x43\x42\x30\
\x45\x31\x37\x42\x37\x35\x41\x42\x36\x45\x46\x31\x36\x33\x37\x45\
\x31\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\
\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\
\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\
\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\
\x22\x3f\x3e\xa5\xc4\x4e\x8c\x00\x00\x04\x2a\x49\x44\x41\x54\x78\
\xda\xa4\x56\x0d\x6c\x13\x65\x18\x7e\xee\x7a\xd7\x5b\x69\xbb\xb6\
\x63\x73\x30\xb7\x6e\xe2\xa6\x64\xc0\x88\x2e\x21\x4c\x8c\x0e\xa3\
\x62\x66\xfc\x99\xd1\xb0\x18\x41\x89\xb8\x60\x08\x1a\x71\x44\x13\
\x51\x87\x99\x4a\x4c\x74\x2e\x41\x8c\x66\x21\x43\x09\x86\x80\xa8\
\x81\xe8\x26\x46\x61\x66\x4a\xe6\xb2\x01\x4a\x36\xc3\xd8\x9f\xeb\
\x3a\x3b\xb6\xfe\xdc\xfa\x73\xd7\xbb\xfb\xfc\x7a\x55\xb4\xe9\x75\
\x5b\xf0\x4b\xee\x9a\xfb\xbe\xf7\x7b\x9f\xf7\x7b\xdf\xe7\x7d\xbe\
\x32\x23\xce\x95\x0f\x38\x76\x3d\xbb\xcf\x5c\x5e\xea\xc6\x3c\x83\
\x31\xf3\x00\xcf\x01\xaa\x06\x22\xc7\x01\x4d\xcb\x68\xab\x0c\x8f\
\xcd\xa8\x13\xbe\x97\x11\x78\xeb\x03\x0f\x59\xe0\x88\x75\x9f\x27\
\x91\x8e\x4e\x12\x3d\x7d\x96\x68\x92\x3c\xaf\xfd\xec\x91\x93\x7e\
\xd6\x5c\xb1\xbc\x00\x0b\x1c\x5a\x30\x04\x7f\x63\x0b\xfc\x7b\x5a\
\x20\x75\x9f\x9b\xd7\x9e\x2b\xbe\xde\xc9\x91\xb8\x92\xbe\x42\x08\
\xd4\xc9\x29\x30\xd6\x45\x60\x6d\x56\x10\x45\x81\x7f\xf7\xbb\x88\
\xb4\xff\x00\x46\xc8\xa2\x8f\x19\x34\xb0\xd4\x2d\xe1\x28\x54\xaf\
\x0f\x5c\x69\xf1\xbf\x93\xaa\x0a\xd6\x08\x59\xea\xbd\x08\x4f\xd5\
\x43\x90\xba\x7a\x40\x54\x05\x81\xc6\xf7\x69\xce\x65\xb0\x0e\x1b\
\xa4\x9e\x5e\xc4\x4e\xff\x88\x78\xff\xe0\xd5\x60\x42\xcd\x07\x30\
\x76\xf3\xed\x10\xdb\x8e\xe9\xdf\x29\xa7\x30\x4c\xc5\xb4\x1f\x24\
\x18\x81\x29\x3f\x0f\x0c\xcf\xc3\xb6\xf9\x11\xc4\x87\xc6\xa8\xd3\
\x4b\x60\x58\xba\x45\x8b\x23\xfc\xe5\x29\xc4\x7e\xee\x83\x44\x9f\
\x04\xb8\xed\xf1\x5a\x58\x6a\xaa\x29\x13\x98\x14\x5f\x86\x27\x88\
\x9c\xfc\x1e\x6a\x28\x08\x36\xd7\x95\x34\xca\xcb\x81\x26\x8a\x90\
\x7f\xfd\x3d\xc1\x25\x0a\x22\x40\xfa\xa9\x97\xd6\x44\x84\x50\xb9\
\x12\x5c\x49\x21\xb2\xb7\x3d\x89\xac\xdb\x2a\xd3\x7c\x19\x02\x98\
\x57\x94\x51\x06\x06\x11\xda\x7f\x08\x72\xef\x6f\xf0\xde\x59\x07\
\x5f\xdd\x56\x68\xbe\x69\x1a\x20\x03\xd6\x69\x47\x6e\xeb\x5e\x10\
\x49\x86\x65\xc3\x1d\x70\xec\x78\x0a\xc1\x37\xf7\x19\xd2\xd6\x10\
\xc0\xfa\x68\x0d\xb2\x96\xdf\x82\xf0\xe1\xaf\x70\x65\xfb\xeb\x88\
\x0f\x5c\x06\xcb\x39\x68\xf0\x2c\x34\x55\x02\x77\x83\x1b\x7c\x59\
\x49\x92\x00\xd1\x18\xb8\x65\x45\x14\x34\x5b\x4f\xe3\x82\x00\xd8\
\xc5\x4e\xe4\x1d\x6c\x86\xa9\x68\x29\xe4\x0b\x03\xd0\xb3\x9a\x78\
\x09\x02\xf8\xe2\x12\x90\x98\xa4\x33\xc4\x72\xf7\x3a\x84\x8f\x7d\
\x93\xdc\x93\x4b\xd3\x38\x13\x9c\x1b\x40\x19\xfe\x03\xb3\x47\x4f\
\x40\xee\xbb\x08\x61\xcd\x6a\x38\x1a\x9e\x49\x70\x8d\x32\x49\x86\
\xa9\xb0\x40\xcf\x37\x5f\x5e\x06\xf3\xad\x2b\x00\x93\x49\xb7\x49\
\x9c\x24\xd6\xd9\x4d\x9d\x07\xc0\xe6\x38\xd3\x7b\x21\xa5\xb8\x1d\
\x9d\x98\xde\xb9\x87\x1e\x5b\x86\x50\x51\xae\x47\x0f\x86\x80\x73\
\xbb\xc1\x15\x2e\x81\x32\x31\x49\xa3\x97\xe9\x7a\x04\x53\x5b\x1a\
\xe0\x7a\xed\x79\xd8\xb7\x6e\xc4\xe4\x83\xf5\x74\x3d\x1f\x3c\x4d\
\xd5\x9c\x00\xf6\x2d\x8f\x81\xb5\x58\x20\x53\x3a\x46\xdb\x3b\x91\
\xbd\x7d\x13\x84\x75\x95\xb0\xac\xaf\xd2\xeb\x20\xb6\x1d\x45\xf4\
\xbb\x2e\x9d\xc6\x62\xdb\x21\xda\x0f\xdd\xb0\x6d\xaa\x85\x32\xea\
\xc1\xe2\xe6\xdd\x34\x1f\x06\x19\x0f\x7f\xd1\x61\x2c\x24\x9a\x66\
\x38\x3d\xf3\xea\x7b\x64\xb4\x70\x2d\x19\x36\xdd\x48\x2e\x63\x09\
\xf1\xde\xbb\x99\x68\x62\xd8\x58\xbb\xba\x7a\x08\x9b\x59\x3a\x99\
\xb4\xa9\xd0\xfe\x4f\x21\x7e\x74\x18\xdc\xd2\xeb\xa8\xaa\xf2\xd4\
\x44\x40\x7c\x70\x18\x86\x72\x33\x17\x8b\x32\x0d\xf9\xfc\x00\xe2\
\xbe\x11\x48\xf4\x97\x75\x39\xa8\x2a\x48\x90\x87\xfa\x69\x8f\xec\
\x80\x32\x32\x9e\x64\xd7\x42\x01\xb4\xd0\x6c\xaa\x98\x45\xa2\x88\
\x9e\x3a\x03\x56\xb0\xc3\xf9\xd2\x36\xe4\x9f\x68\x85\xeb\x95\x17\
\x21\xdc\xb4\x0a\xe1\x6f\xbf\xc6\x78\xc5\x5d\x08\xec\xfd\x70\xe1\
\x35\x88\x74\x9c\x21\x13\xd5\x75\x24\xf4\xf1\x67\x24\x7c\xbc\x9d\
\x78\xef\x79\x82\x0c\xc2\x49\xc4\x4f\x8e\xa7\xd8\xa9\x41\x91\x4c\
\xd6\xd6\x93\x4b\xb0\x91\x2b\xcf\x35\xa6\xd5\x20\x23\x80\x78\xf0\
\x73\x32\x5a\xb4\x86\x3a\xcd\xa1\x9b\x9d\x64\x88\x5d\x46\xa6\x77\
\xbd\x6d\x5c\xcc\x5f\x2e\xd0\x82\x17\x90\xf1\xd5\x35\x44\x8b\xc6\
\x52\x00\xb8\x4c\x29\x4a\x28\x68\x56\xf5\x5a\x88\xad\x47\xc0\x70\
\x26\x58\xee\x5f\x4f\x1b\x6d\x55\x86\x4a\x26\x33\xcd\x58\x2d\x69\
\xe4\xe0\xe6\xbc\x91\xdc\x05\x70\xbd\xf1\xc2\xbc\xc5\x97\xce\xf6\
\xd1\x7e\x9f\xd1\x2f\xa1\xc4\x65\x94\x82\x9d\x88\xee\xff\x0c\x95\
\x2a\x6c\xa0\xa9\x05\xd6\xaa\x0d\xb0\x3f\xbd\x91\xb2\xe1\x3f\x4c\
\x37\xb1\xe0\x14\xcf\x9f\xe1\x84\x80\x5e\x2b\x00\xeb\xb0\xd3\x53\
\xee\xc4\xa2\x87\xef\x83\xe9\xef\xfb\xe3\xaa\xb6\x4d\xf9\xe3\xcc\
\x58\x51\x55\xbd\xab\xa9\xa1\x89\x2f\x2d\xce\xbb\x36\x04\x56\xbf\
\xbb\x89\x44\x7b\x20\xf1\x57\xe6\x1f\xe7\x1e\xef\xac\x7c\xae\xff\
\x9d\xbf\x04\x18\x00\x24\x63\xb4\x3e\x52\x09\xc8\xbf\x00\x00\x00\
\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x03\x53\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
\xa7\x93\x00\x00\x03\x08\x49\x44\x41\x54\x48\x89\xb5\x95\x4f\x48\
\x1c\x67\x18\xc6\x7f\x33\x8e\xb3\x99\x59\x67\xb7\x8e\xe3\xce\x8e\
\x09\xee\x86\x64\x25\x92\xb6\x78\xa8\xf4\xb0\x49\x45\xda\x40\x44\
\x88\xc9\x61\x61\x51\x48\x90\x40\x69\x6c\x4a\x72\x94\x9e\x84\x9e\
\x04\xbd\x0a\x96\x1e\xda\x53\x0b\x29\x09\x01\x0f\x91\x12\xb2\xb5\
\xd2\x26\xa1\xc5\xc8\x06\x82\x86\x55\x48\x58\x92\xb8\x41\x63\xf7\
\x9f\x5b\xb3\x3b\x3d\x98\xcd\x1a\xdd\xf5\x2f\x79\x4e\xf3\x3d\xdf\
\xfb\x3e\xcf\xf7\xbe\x1f\xf3\x7e\xf0\x9e\x21\x54\xe0\x65\xc0\x03\
\x1c\xd4\x75\xbd\xb1\xb6\xb6\xf6\x98\x28\x8a\x87\x15\x45\xd1\x55\
\x55\x75\x2e\x2e\x2e\x3e\x9a\x9d\x9d\xbd\x02\xd8\xbb\x32\x68\x6a\
\x6a\xfa\xc9\xe7\xf3\x7d\x52\x53\x53\xe3\xb4\x2c\xeb\x80\x65\x59\
\x9a\x69\x9a\xaa\x61\x18\x18\x86\x81\x2c\xcb\x00\x44\xa3\xd1\xdc\
\xd0\xd0\x50\x64\x66\x66\xe6\x1c\x90\xdd\x91\x41\x5d\x5d\xdd\xe7\
\x3d\x3d\x3d\xbf\x74\x77\x77\x1b\xdb\x9d\x0a\x20\x1e\x8f\xdb\x03\
\x03\x03\x53\xd1\x68\xb4\x03\x58\xa8\x14\x57\x55\xfc\x08\x04\x02\
\xd7\xfa\xfb\xfb\x8f\x0a\x42\xa5\xae\xbd\x0b\x97\xcb\x25\xb4\xb7\
\xb7\x5b\xb1\x58\x2c\x24\x8a\xe2\x1f\xcb\xcb\xcb\xcf\xca\xc5\x89\
\x00\x8a\xa2\x7c\xda\xd9\xd9\x79\x44\x14\xc5\x1d\x89\x17\xa1\x69\
\x1a\x83\x83\x83\xfe\xe6\xe6\xe6\x9b\x7e\xbf\xff\x6c\xc5\x0a\x7c\
\x3e\x5f\x5f\x6f\x6f\xef\x29\x4d\xd3\x76\x65\x00\x50\x55\x55\x45\
\x5b\x5b\x9b\x2b\x91\x48\x7c\x91\x4c\x26\xa5\xa5\xa5\xa5\xc9\x4d\
\x15\x08\x82\xe0\xd7\x75\x7d\xd7\xe2\x45\x08\x82\x40\x5f\x5f\x9f\
\xa1\xeb\xfa\x85\x8d\x7b\x22\x80\x2c\xcb\x1f\x38\x1c\x8e\x3d\x1b\
\x00\xd8\xb6\x4d\x2a\x95\x8a\x97\x35\x50\x14\x45\xdd\x97\x3a\x10\
\x8f\xc7\xc9\x64\x32\xf7\x36\xf2\x12\x80\xc3\xe1\xd8\xb7\xc1\xd4\
\xd4\x54\xf2\xc9\x47\x4f\x3c\x74\x31\x4d\x35\x1a\x69\x66\x19\xe5\
\x74\xd1\xc0\xb9\x1f\xf1\xdc\xeb\x1c\xc3\xc9\x61\x85\x76\x2e\x02\
\x90\xa7\xc0\xdf\x9c\x87\xb5\x16\x89\xb2\x2c\xef\xb9\x82\x54\x2e\
\x45\xc7\xed\x0e\x56\x1a\x57\xa4\x37\x94\xcd\x03\xbe\xe1\x1a\x93\
\x45\x83\xda\xfa\xfa\x7a\x79\x2f\xe2\xd9\xd5\x2c\x5d\x77\xba\xc8\
\x38\x33\x25\xf2\x21\x3f\xf0\x33\x23\xc5\xa5\x08\x78\x4d\xd3\x54\
\x76\x2b\x6e\x63\x13\xfe\x2d\x4c\xba\x26\x5d\x22\x63\x4c\xf2\x23\
\x5f\xae\x8f\x13\x25\x49\x32\x4d\xd3\xdc\xf6\x0f\xcb\xae\x66\x99\
\x7b\x39\xf7\x76\x7d\x75\xfc\x2a\x2f\x5c\x2f\x4a\x01\xcf\x78\xce\
\x08\x9f\x6d\xcc\x93\x54\x55\xad\x1e\x1b\x1b\x5b\xb0\x2c\xcb\x0a\
\x04\x02\x65\x67\xc5\xa5\x5b\x97\x98\x56\xa7\xc1\x86\xc8\x89\x08\
\x13\xb1\x09\xee\x3b\xef\x97\x02\xd2\xac\xb0\xc0\x51\x84\xcd\xe3\
\xbb\x38\xd9\xb4\x86\x86\x86\xaf\xdc\x6e\x77\x77\x30\x18\x6c\x0c\
\x85\x42\xba\xdb\xed\x06\x60\x35\xbf\xca\xc9\xbf\x4e\xbe\x4d\x08\
\xd9\x21\xae\xbf\xbe\x4e\xbe\x3a\xbf\x46\xe4\x29\x70\x97\x0f\xb9\
\xc1\xa3\x72\x87\xdb\x34\x3a\x55\x55\x6d\xf5\x7a\xbd\xdf\x7a\xbd\
\xde\x96\x70\x38\x7c\xa8\xb5\xb5\x55\x0a\xfe\x1e\xa4\x20\x15\xca\
\xe5\xdb\xfc\xc3\xe5\xf5\x97\xba\xad\xc1\x3a\xe8\x1e\x8f\xe7\x6b\
\xc3\x30\xce\xce\x9f\x99\x6f\xc9\x1a\xd9\xcd\xed\x7b\xcc\x38\xa3\
\x9c\xde\x42\xa3\xf4\x1e\x94\x41\x36\x9d\x4e\x4f\x24\x12\x89\xef\
\x0b\x52\x41\xb6\x9b\xec\x77\x2f\xf0\x15\xff\xe2\xe6\x63\x22\x5b\
\x3f\x9b\x3b\x7b\x5d\x06\x10\x91\xc9\x21\xaf\x8d\x16\x6c\x6c\xfe\
\xe4\x78\xa5\xbe\xaf\xc7\x56\x15\x94\x10\xc1\xc6\x60\x8e\xff\xf0\
\xf3\x8a\xa7\xc4\xf8\x8e\x5f\x19\xdf\x51\xee\xfb\xc6\xff\xd7\xa1\
\xde\x71\x09\x4b\xf0\x29\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
\x60\x82\
\x00\x00\x07\xa6\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x03\x68\x69\x54\x58\x74\x58\x4d\x4c\
\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\
\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\
\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\
\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\
\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\
\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\
\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\
\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\x36\x36\
\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\x30\x32\
\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\x20\x20\
\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\
\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\
\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\
\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\
\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\
\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\
\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\
\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\
\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\
\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\x66\x23\
\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\
\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\x4d\x4d\
\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\x65\x6e\
\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x30\x36\x38\
\x30\x31\x31\x37\x34\x30\x37\x32\x30\x36\x38\x31\x31\x38\x32\x32\
\x41\x39\x45\x32\x39\x34\x32\x44\x34\x36\x37\x46\x38\x22\x20\x78\
\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\
\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x33\x38\x33\x30\x38\x35\x45\
\x37\x35\x39\x34\x33\x31\x31\x45\x35\x38\x42\x43\x33\x42\x42\x43\
\x30\x33\x45\x33\x38\x37\x31\x36\x38\x22\x20\x78\x6d\x70\x4d\x4d\
\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\
\x2e\x69\x69\x64\x3a\x33\x38\x33\x30\x38\x35\x45\x36\x35\x39\x34\
\x33\x31\x31\x45\x35\x38\x42\x43\x33\x42\x42\x43\x30\x33\x45\x33\
\x38\x37\x31\x36\x38\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\
\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x36\x20\x28\x4d\x61\x63\
\x69\x6e\x74\x6f\x73\x68\x29\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\
\x3a\x44\x65\x72\x69\x76\x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\
\x65\x66\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\
\x6d\x70\x2e\x69\x69\x64\x3a\x30\x38\x38\x30\x31\x31\x37\x34\x30\
\x37\x32\x30\x36\x38\x31\x31\x38\x32\x32\x41\x38\x36\x30\x45\x43\
\x32\x38\x32\x31\x41\x31\x37\x22\x20\x73\x74\x52\x65\x66\x3a\x64\
\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\
\x69\x64\x3a\x30\x36\x38\x30\x31\x31\x37\x34\x30\x37\x32\x30\x36\
\x38\x31\x31\x38\x32\x32\x41\x39\x45\x32\x39\x34\x32\x44\x34\x36\
\x37\x46\x38\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\
\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\
\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\
\x3e\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\
\x22\x72\x22\x3f\x3e\xcb\xe5\x95\x7c\x00\x00\x03\xd4\x49\x44\x41\
\x54\x78\xda\xac\x56\x5d\x6c\x54\x45\x14\xfe\xe6\xde\xb9\x3f\xdd\
\x4b\x4b\xbb\x06\x1a\xd6\x55\x29\x8d\xa0\x22\x6e\x40\xeb\x03\xc4\
\x36\xa9\x82\x4f\x40\x35\xbe\x68\x48\xfb\x60\xa2\x2f\x1a\x68\x40\
\xa4\xd2\x07\x93\x46\xe3\x8b\x14\x15\xd2\x07\x25\x8d\x16\x31\x6a\
\x03\x5a\xc2\x93\x9b\x08\xb6\x49\x8b\x18\x13\x89\x69\xab\x75\x55\
\x82\x80\x10\x5b\x25\xfb\x73\xb9\x3f\x33\xd7\x73\xb7\x5d\x52\x9a\
\xd2\xdd\x6e\x38\xc9\x49\x76\x76\xe6\x9c\xef\x3b\x73\xce\x7c\xbb\
\x6c\x74\x74\x14\x83\x83\x83\x58\xac\x05\x41\x00\xcf\xf3\x36\x5a\
\x96\xb5\x3a\x9d\x4e\x0f\x98\xa6\x39\x35\xf7\x4c\x73\x73\x33\xd0\
\xd3\xd3\x53\x58\x47\xc8\xab\xc9\x97\x96\xe0\x16\xf9\xd6\xae\xae\
\xae\xa9\x64\x32\x19\x34\x36\x36\x26\x69\x1d\x23\xaf\x24\xaf\x99\
\xd9\x47\x5f\x5f\x1f\xb8\xa2\x28\xf9\xec\x8a\xa2\x1e\x7c\xc0\xaa\
\xdd\xa2\x83\x89\xa0\x18\x7d\x21\xa5\x88\x45\x57\xec\xeb\xdc\x6f\
\x71\x30\x5c\x9e\xfc\xe7\xc9\x3f\x87\xcf\x9f\xbd\xcb\xb4\x1c\x87\
\x81\xff\x92\xb9\x7a\x46\x48\xbf\x2d\xcc\xcd\x0b\x31\x96\xa2\xc5\
\x3f\x0b\x56\xdc\xb7\xd2\x17\x70\x8b\xe4\x37\x24\x90\xbc\x22\xf0\
\xe6\xeb\x9d\xa8\xdf\xb0\x0e\xa3\x87\x8e\xe2\x5b\x19\x8f\x2f\x77\
\x39\x2e\x68\x1a\x36\xa9\xff\xc6\xaf\x4b\x3f\x7f\x96\xcf\x8a\xf3\
\xb8\xf0\xc0\x85\x0f\x59\x04\x20\xdc\xdf\x4a\xc9\x0e\x75\xf7\x42\
\x0a\x8e\xdd\xd2\x42\xa5\x46\x37\x21\x5c\xba\x92\x7c\xfd\x5e\xe1\
\x2c\x9f\x1b\x58\xf0\x85\x4c\xa3\x1c\xe3\x5c\xc2\x37\x4d\xb4\xe7\
\x96\xa0\x42\x0a\x38\xe1\xf7\xf3\xc4\x2a\x28\xc3\x2a\x28\xec\xa4\
\xe6\xe1\x61\xc9\x51\x43\xd3\xe4\xb2\xdb\x9f\x5d\x34\x80\x4a\x3e\
\xa5\x30\x9c\xe2\x2e\x76\x78\x06\x9c\x60\xe1\x7a\x17\x05\x10\x12\
\xb5\x02\x86\x7e\xdd\xc3\xbd\x52\xc5\xa3\x3e\x83\xc3\x70\x67\x00\
\x4c\x22\xaa\x78\x1e\xa6\xe8\xfe\x8f\x69\x0e\x5e\x72\x4d\x88\x40\
\x14\x8d\xbb\xd9\x64\xe1\xfb\xbe\xa1\x4e\xb3\x9c\x6b\x3a\x25\x3d\
\x1e\x51\x90\x4a\xac\xc6\x0f\x7f\x5d\x44\xe2\x1a\xc3\x26\x62\x9f\
\x66\xc5\x89\x15\x2a\xa8\xb3\x96\x45\xeb\xcf\x70\x1f\x0a\x31\xd5\
\x67\x26\x25\x4c\xbc\x94\xd6\x63\x34\xd3\x7f\xec\x7d\x01\xed\xdf\
\x7d\x85\x9d\x5f\xf7\x62\x65\x4d\x35\x7c\xdf\x2b\xa9\x72\xc5\x71\
\x9c\x44\x5b\x5b\xdb\x37\xc3\x67\x87\x13\xb9\xee\x5d\xf8\xc8\x62\
\xb8\xa4\xa8\xb8\xc0\x39\xc6\x38\xc3\x69\x42\xfb\x80\x3b\xf0\xaa\
\x2d\x54\x31\x8e\xf8\xf2\x5a\x64\x74\x15\x01\x82\x92\x00\x42\xa9\
\x58\xdf\xd2\xd2\x52\x5f\x5f\xb7\x0a\xcf\x3c\x57\x85\x6d\x6f\x1f\
\xc4\xc9\xc9\x34\x24\x3d\x73\x95\x31\x18\x04\xb6\xc6\xd1\xc0\xdf\
\xea\xc5\xae\xef\xcf\x23\xf5\xeb\xef\x38\x70\x31\x0b\xc1\xd5\xd2\
\x00\x48\x15\x4f\x74\x74\xbc\xf1\xc4\x44\xea\xb7\x1d\x57\x86\x7f\
\xd2\x0f\x5f\x02\x1e\x64\x55\x79\xb9\xd0\xf2\x57\x15\xc0\x0c\xf9\
\x5e\x73\xf1\x73\xdf\x69\xbc\x1c\xb1\x31\x66\xd4\xe0\x7e\x47\x41\
\x06\x02\x1e\xf5\x61\xa1\x5a\xb8\x61\x18\xd7\xc7\xc7\xc7\x5e\xdc\
\xbb\xe7\xb5\xbb\x87\xd8\x9a\xa7\x1b\x54\x8e\x2c\x7c\x18\xd3\xa2\
\x4c\x9f\xa8\x99\x33\x0f\x60\xad\x62\xe0\xfd\xc0\xc4\x4e\x23\x87\
\x21\x55\x47\xab\xab\x63\x95\xc8\xb3\x84\xcd\xe6\x7f\x0f\x4a\xa8\
\xeb\xa1\x55\x72\xd3\x8e\x9a\xf4\x70\x58\x30\x4b\x32\xd8\x2d\xec\
\xb2\xc4\x76\x3d\xf5\xf6\x0b\x92\x07\x9f\x76\x5e\xa9\xc8\xe2\x79\
\xcb\xc6\x61\x53\x20\x4b\x57\x19\x09\xd8\xed\xc7\x34\x04\x13\x25\
\xdc\x69\x8e\x08\x44\x49\x7b\xde\xb1\x75\x4c\x52\x45\xe7\x48\x93\
\x4e\xd0\xab\xfe\x5c\xbb\x81\xee\x1b\x11\xc4\x03\xe5\x16\x52\x65\
\x69\x51\x28\xc4\x19\xaa\x2f\x42\x40\x5b\x9c\x00\x47\x72\x26\xf6\
\x39\x11\xbc\x6a\x66\x71\x8e\xe6\x3b\x32\x6b\xc4\xf8\x7c\x72\xc0\
\x4a\x04\x92\xf9\x8a\x00\x9b\x9a\xbd\x9d\x14\x4f\x63\x4b\xb0\x47\
\x5e\xc5\xdf\x7e\x2e\x9f\x97\xd1\x14\xf2\x59\x89\x15\x8b\x3a\x69\
\x11\xb8\x86\xf2\xac\xce\x91\x78\xa8\xf9\x31\x6c\x6f\x58\xb7\xf1\
\xd3\x8f\x3f\x39\xe0\xba\xee\xfe\x9b\x00\x76\x20\x44\xa7\x91\x41\
\xa5\x0e\x29\xcb\x48\xae\x0a\x19\xa4\xa2\xa6\x7a\xe4\xe8\x87\xb8\
\x67\x59\x6d\x64\xc3\x23\x89\x76\xdb\xb6\x87\x38\xfd\x33\x98\xfe\
\x39\x13\x5e\xc7\xb1\xff\x26\xde\x0d\x65\xa9\xcc\x02\x3c\x6a\xcc\
\xe3\xa7\xfa\x8f\xbf\xf7\xd4\xe6\xcd\xea\xc0\xc0\xc0\xe5\xa6\xa6\
\xa6\x09\x36\x32\x32\x82\xfe\xfe\x7e\xdc\x09\x0b\x47\x5e\xd3\xb4\
\x67\x63\xb1\x58\x43\x2a\x95\xfa\xb2\xb5\xb5\xf5\xc7\xff\x05\x18\
\x00\x74\x19\x7c\x28\x5b\x41\x61\x3d\x00\x00\x00\x00\x49\x45\x4e\
\x44\xae\x42\x60\x82\
\x00\x00\x06\x7c\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\
\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\
\x9c\x18\x00\x00\x01\x59\x69\x54\x58\x74\x58\x4d\x4c\x3a\x63\x6f\
\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\x00\x00\x00\
\x3c\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\
\x3a\x78\x3d\x22\x61\x64\x6f\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\
\x61\x2f\x22\x20\x78\x3a\x78\x6d\x70\x74\x6b\x3d\x22\x58\x4d\x50\
\x20\x43\x6f\x72\x65\x20\x35\x2e\x34\x2e\x30\x22\x3e\x0a\x20\x20\
\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\x78\x6d\x6c\x6e\x73\x3a\
\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\
\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\
\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\
\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x74\x69\x66\x66\x3d\x22\x68\
\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\
\x6f\x6d\x2f\x74\x69\x66\x66\x2f\x31\x2e\x30\x2f\x22\x3e\x0a\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x74\x69\x66\x66\x3a\x4f\x72\
\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x3e\x31\x3c\x2f\x74\x69\x66\
\x66\x3a\x4f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x3e\x0a\x20\
\x20\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\
\x69\x70\x74\x69\x6f\x6e\x3e\x0a\x20\x20\x20\x3c\x2f\x72\x64\x66\
\x3a\x52\x44\x46\x3e\x0a\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\
\x61\x3e\x0a\x4c\xc2\x27\x59\x00\x00\x04\xbc\x49\x44\x41\x54\x48\
\x0d\x75\x56\xdd\x6b\x5c\x45\x14\xff\xcd\xbd\x77\xb3\x5f\xc9\xa6\
\xb6\x6e\x8c\x0b\x6b\xd3\x34\x94\x42\x14\xd1\x48\x1f\x14\x14\x14\
\xac\xad\xa0\x45\xc4\x8f\x67\xff\x82\xb6\x2f\x22\x88\xab\xc5\x17\
\x1f\x7c\xea\xab\x0f\x85\x80\x14\x5f\x56\xb0\xd8\x22\x04\x14\x93\
\x82\x04\x12\x35\x4d\xda\x34\x6d\x2a\xad\x1b\x63\x8d\x66\x77\xdd\
\x64\xf7\xee\xbd\x33\xfe\xce\xdc\xfd\x4a\x52\x4f\x72\x66\xce\x9c\
\xef\x33\x67\x66\xee\xaa\xf7\x2f\x2e\x99\xa7\x72\x69\xb8\x4a\xc1\
\xf0\x4f\x41\xc0\xf0\x9f\xf8\x7f\xb3\xd1\x56\x6e\x3a\x33\xed\xb4\
\xd6\x81\x51\xce\xf4\x42\x69\xf3\xfc\xe4\xd2\x21\xcc\x9f\xde\x2c\
\x14\x0a\x8e\x27\xce\x5f\x7b\x36\x8f\xbb\x65\x1f\x2e\xdd\x87\x74\
\xac\x69\xaf\x43\x99\x5b\x34\x67\x23\xd8\x8e\x6b\x93\xe8\x0e\x8a\
\xc9\x35\x03\x83\xf1\x91\x14\x54\xe8\xe3\xfc\xfc\x69\x9b\x67\x81\
\x2a\x9e\x64\x7e\xaf\xd2\xc4\x54\xa9\x86\x04\x03\xd4\x9b\x06\x0d\
\x5f\xa3\xee\x1b\xa2\xc6\x76\x43\x68\xa2\xf0\x89\x01\x03\x4b\x6d\
\xbd\x10\x73\x80\xd9\x4a\x88\x2f\x5e\xc9\x21\xe6\x45\x7b\x20\xf2\
\x02\xd1\x13\x75\x8f\x0a\x19\x0e\x7d\x0c\xd6\xc7\xb5\x4f\x9d\xa4\
\xe2\xec\x28\x34\x88\x3e\x8d\x24\x43\x41\xa9\x6c\x77\x00\x97\x3a\
\x0e\x93\x8b\xd3\x07\x0b\xdd\x01\x9e\xac\x84\x59\x97\x2d\x20\xdd\
\x08\x35\x1a\x74\x24\x58\x6f\x92\x26\x4a\x05\x3e\xb3\xf7\xc9\x6b\
\x57\xd0\xcd\x93\x59\x32\x40\xa9\xae\xad\x4c\xed\x8a\xe0\x89\xd1\
\x70\x3a\x86\x17\x1f\x4d\xdb\x9e\x4a\x40\xbb\xd7\x54\xb4\xba\x8c\
\x6a\xc8\xb0\x3c\x2b\x94\x21\x02\x9b\xac\xc8\xb9\xd4\x54\x78\x6c\
\x28\x86\x85\xb9\xb0\x2d\xb6\xb3\x27\x4d\x4d\xb2\x8e\x87\x39\x88\
\x13\x69\x58\x07\x5a\x64\x0f\x27\x12\x91\x21\xba\x02\x92\x84\xd0\
\x2c\x02\xfd\x31\xa0\x19\xee\x0a\x20\xf1\x45\x29\xe0\x60\x8c\xb8\
\x12\x4b\xc1\x07\x43\x5b\x22\x4e\x05\x79\xe0\xec\x2c\x96\xc9\x38\
\x3b\xd1\x8e\xdc\x32\x8f\xd2\xe6\x42\x14\xa2\x61\x07\x21\x8b\x3d\
\xd0\xf1\x21\x46\x92\x98\x44\x91\x12\x08\xb2\x9d\xbd\xe0\xd8\xf0\
\x2d\xce\x4e\x51\xaf\x5a\x44\x8b\x5c\xec\x2d\x92\x96\x7b\x02\x87\
\x47\x90\xa7\x47\xee\x89\xc4\xa1\xd4\x8e\x32\x14\x88\x3b\x02\x44\
\x39\x88\x68\x2f\x3c\xd0\x39\x1d\x57\x6f\xdf\xc2\xbf\xab\xab\x40\
\x1f\x03\x11\x4c\x10\x85\x69\x7b\x70\xa2\xc3\x19\x2d\xbb\xb1\xa9\
\xc8\xeb\xdc\x46\xbe\x02\x30\x3c\xbe\xb2\x16\x5a\x93\x0e\x83\x10\
\x86\x3e\xab\x2b\x37\x70\xef\x83\xf7\x50\x9e\x9b\xb3\x4e\x9c\x98\
\x2b\x73\x14\x8d\x44\xa7\x07\x56\x6a\x07\x09\xa3\xe0\xa5\xe4\xe1\
\xe8\x6e\x87\x6c\x8b\xec\x08\xef\x5f\x74\x72\xb4\x0b\x27\x4e\x79\
\x3c\x8d\x43\x6f\xbd\x03\x7d\xfd\x2a\x4a\x95\x75\xd4\x6a\x2e\x35\
\x9e\xf3\x81\xe9\xd6\x4d\xee\x6d\x8a\xd0\xdc\x53\x1d\x04\x58\x9f\
\x9a\x41\x73\xab\x06\xc7\x8d\x72\xa0\xa4\xbb\xff\x5c\xd8\x66\xc6\
\xe2\xf0\x7f\x99\x45\xe6\xc9\x31\xa4\xf7\x1f\xc0\xda\x8f\x53\xc8\
\x4e\xaf\xc4\x3f\xc7\xc6\xc8\x19\xe0\xd7\x8f\x68\xb3\xa7\x02\x87\
\x15\xfa\xd5\x6d\x6c\x5e\xba\x88\x83\xc7\x8e\x21\x58\x5f\x83\xae\
\xd7\xbb\x07\x8c\x46\x16\xe4\xbe\x84\x01\xbc\x78\x02\xc1\xe2\x22\
\xca\x46\x3b\xfb\xc7\x8e\x9a\x97\x47\x46\x53\x6b\x4f\x0c\x7f\x59\
\xfc\xe4\xfa\x59\x55\x28\x5c\xd9\x13\x40\x0e\x81\x64\x9b\xce\x8f\
\x60\x70\x60\x10\xd5\xa5\x1b\xd0\xb5\x1a\xf7\x86\x0e\x7b\xaa\x15\
\x1d\xa5\x78\x46\x82\xbf\x51\x2f\xff\x03\xc5\x40\xe4\xa9\xf4\xd3\
\x13\x38\xfa\xc6\x9b\xe3\x4e\x66\xdf\x57\x53\x97\xbf\x39\xb7\x27\
\x80\x18\x8a\x9f\xb0\x5a\xc5\xd6\xca\x32\xaa\x97\xbe\x46\x50\xba\
\x49\x26\x4b\xe3\x81\xb7\x7d\x61\xe6\x2a\x9e\x84\x93\xcd\xc1\x7d\
\x24\x07\x2f\x97\x83\x33\x98\x81\xf2\x5c\x34\x2b\x65\x24\x0e\x8f\
\x06\x47\x4e\x9c\x1c\x68\x5e\x9b\xff\xcc\x06\x10\x23\xb1\x14\xc7\
\x6d\x74\x06\x32\x48\x8d\x8d\x21\x7c\xf5\x75\x84\xac\x40\x45\xae\
\x6d\x75\x8a\x7d\x52\x89\x04\x9c\x54\x0a\x70\xd9\xb3\xa6\x0f\xa7\
\x3f\x8d\x58\x3e\x8f\xe4\xe8\x28\x5f\xce\xba\xb7\x7c\xf9\xdb\xea\
\xc6\xdd\xdf\xce\xd9\xe7\x5a\x5e\x08\x5b\xbd\x04\x90\x0a\x88\xdb\
\xf7\x56\x51\xc9\x65\xd1\x3c\x90\xe1\x7e\xf1\xb8\x58\xae\x24\xc2\
\x50\xcc\x54\xf5\xf5\x21\xf4\x3c\xc4\x32\xfb\x90\xcc\x3c\x04\x27\
\x99\x44\x2c\x9b\x35\x5b\xf7\xff\x50\xbf\xcf\x5c\xbd\xb6\xf2\xe1\
\xa7\x67\x4f\x01\xad\x1e\xb4\x33\xa7\xbd\xe6\x5b\xe5\x26\x92\x48\
\x1d\x7f\x1b\x25\xc9\x7c\x24\x27\x3b\xd3\xb9\xa5\x51\x85\xfc\xbc\
\xf2\xcc\x1a\x06\xd1\x8b\x73\x18\x7f\xe9\x08\x52\xc3\x39\x5d\x9a\
\xba\xe2\x7c\x5f\x9c\xd9\x5a\x2f\x7e\xf7\xae\x9c\x22\x23\x9f\x4c\
\x6b\xdd\xca\x4f\xb3\x14\x7b\xb9\x94\x8b\xa1\x17\x9e\xb7\x4e\x79\
\xaf\xa2\x4f\xa8\x04\x67\x22\x16\x5b\x3c\x95\x04\xee\x33\xa1\xf2\
\xed\x65\x6c\x2c\x2d\xc1\x64\x47\xf1\xe7\xc9\x83\x8d\x33\xc5\xc9\
\x3b\x54\xc7\xc7\x44\x47\xde\x13\xd9\x12\x01\xf9\xec\x47\xc0\x0f\
\xcb\x76\x88\xa0\x16\x20\xd8\x0a\x11\xd6\x03\xe8\xed\x2e\x1a\xae\
\x4d\xdd\x27\xd2\xa6\x51\xc3\xcd\x0b\x17\x50\xc9\x4f\x60\xe8\xc4\
\x71\xa4\x52\x09\x69\x69\x9f\xf8\x29\x10\xe5\x99\x82\x7c\x46\xfb\
\x13\x42\xb5\x7a\xc1\x59\x32\x15\x68\xf3\xec\xd6\xc8\xba\xcd\x97\
\x99\xef\x7f\xff\xc4\xe3\xc0\x33\x93\xe8\x3f\x9c\x47\x9a\x7e\x14\
\x4f\x18\xa1\xf3\x20\x79\x73\xb7\xfe\x82\x29\xce\x22\xb4\x1e\x59\
\x8d\x18\xca\xdb\xd3\xf9\x49\x22\x34\x99\xc4\xee\x4c\xfb\xd6\x5a\
\xb9\x6c\x38\x1b\xaf\x7f\x58\x40\x2c\xe6\xe1\xa7\x9f\xef\xd0\xc1\
\x29\x1a\x14\x39\x03\xff\x01\x41\x15\xc6\xbf\xef\x3c\xa1\xcd\x00\
\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x06\xff\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x03\x68\x69\x54\x58\x74\x58\x4d\x4c\
\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\
\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\
\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\
\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\
\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\
\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\
\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\
\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\x36\x36\
\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\x30\x32\
\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\x20\x20\
\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\
\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\
\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\
\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\
\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\
\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\
\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\
\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\
\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\
\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\x66\x23\
\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\
\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\x4d\x4d\
\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\x65\x6e\
\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x30\x36\x38\
\x30\x31\x31\x37\x34\x30\x37\x32\x30\x36\x38\x31\x31\x38\x32\x32\
\x41\x39\x45\x32\x39\x34\x32\x44\x34\x36\x37\x46\x38\x22\x20\x78\
\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\
\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x33\x38\x33\x30\x38\x35\x44\
\x46\x35\x39\x34\x33\x31\x31\x45\x35\x38\x42\x43\x33\x42\x42\x43\
\x30\x33\x45\x33\x38\x37\x31\x36\x38\x22\x20\x78\x6d\x70\x4d\x4d\
\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\
\x2e\x69\x69\x64\x3a\x33\x38\x33\x30\x38\x35\x44\x45\x35\x39\x34\
\x33\x31\x31\x45\x35\x38\x42\x43\x33\x42\x42\x43\x30\x33\x45\x33\
\x38\x37\x31\x36\x38\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\
\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x36\x20\x28\x4d\x61\x63\
\x69\x6e\x74\x6f\x73\x68\x29\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\
\x3a\x44\x65\x72\x69\x76\x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\
\x65\x66\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\
\x6d\x70\x2e\x69\x69\x64\x3a\x30\x34\x38\x30\x31\x31\x37\x34\x30\
\x37\x32\x30\x36\x38\x31\x31\x38\x32\x32\x41\x38\x36\x30\x45\x43\
\x32\x38\x32\x31\x41\x31\x37\x22\x20\x73\x74\x52\x65\x66\x3a\x64\
\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\
\x69\x64\x3a\x30\x36\x38\x30\x31\x31\x37\x34\x30\x37\x32\x30\x36\
\x38\x31\x31\x38\x32\x32\x41\x39\x45\x32\x39\x34\x32\x44\x34\x36\
\x37\x46\x38\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\
\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\
\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\
\x3e\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\
\x22\x72\x22\x3f\x3e\x6e\x85\xe1\x15\x00\x00\x03\x2d\x49\x44\x41\
\x54\x78\xda\xac\x95\x5d\x48\x54\x41\x14\x80\xcf\xcc\xde\xbb\x77\
\xd7\xb5\x36\xad\x34\x61\xc9\x8c\x32\x50\x2c\x8b\xfe\x90\xc4\x5a\
\xed\x07\x44\x88\x02\xeb\xd9\xf2\x45\xd2\xea\xad\x22\x2a\xa3\xa7\
\x22\x24\x32\xc3\xac\x88\xf0\x2d\x22\x08\x2a\xcb\x14\x65\xa3\x87\
\x0a\xc1\x7e\x24\x49\x6c\x23\x41\xd4\x34\x97\x75\xff\xf7\xde\xe9\
\x5c\x77\xda\xbd\xfb\x2f\xe2\x81\x0f\xee\xdc\x39\x73\xce\xcc\x99\
\x33\xe7\x10\xc6\x18\xa8\xc2\x64\x19\x66\x2f\xb5\x80\x3c\x31\x05\
\xa0\xd3\x81\x46\x24\xa4\x94\x93\x87\xa8\x93\x93\xc8\x57\x64\x00\
\x71\x84\x35\x15\x06\x44\x2f\x40\x56\xf3\x59\xa0\xab\xb2\xe7\x7f\
\x91\xb0\x83\x40\x00\xc6\x0a\xad\x10\xb0\x8f\x00\x01\xbd\xfa\xcb\
\x82\x9c\x40\x8e\x20\x85\x88\x01\xa2\x25\x88\xd8\x91\x97\x48\x47\
\xc8\xa1\x02\x44\x90\xc0\x32\xdc\x0b\xc2\xfa\xb5\xf3\x4a\x82\x76\
\x05\x91\xf4\x68\x5c\xc2\x5d\xe8\x1b\x70\x78\x19\xc9\x81\xe4\xa2\
\xae\xdd\x80\x34\x21\xf5\x08\x1e\x5f\x69\x26\x06\xc9\x0f\x84\x84\
\x95\x68\xf8\x4b\x87\x9f\x84\x08\x7c\x37\x77\xd2\x18\x8f\x15\x23\
\x72\x01\x79\x81\x36\x56\x12\x4d\x88\x23\x0e\x7c\x01\x60\x5e\x6f\
\x3b\x2a\x9c\x84\xc5\x0a\x81\x2a\x16\x0c\x3c\x53\x5c\x6e\x53\x9c\
\x83\x99\xd3\x57\x9b\x82\x76\x7b\x1d\x11\xc5\x64\xcb\x47\x90\x66\
\xe4\x0a\xf2\x2e\xa1\x06\xa5\xb8\x49\x4f\xf9\x74\xc3\xc5\x16\xe6\
\xf3\x45\x1c\xb8\x9f\x77\xe7\x3b\x3a\x1e\x5d\x23\xa2\x31\xd5\xfe\
\x86\xb9\x71\xd5\x49\x4f\xd2\x43\x88\x06\x70\xf7\xf5\xd6\x3b\x6e\
\xdc\xb3\x86\x1c\x04\x65\x70\xdc\xbc\xdf\x48\x80\x2e\xd3\x5e\x4e\
\x02\xd1\xe6\xae\x21\x65\xa4\xa8\x09\x9c\x6d\x9d\xe7\xe5\xa9\x19\
\xa0\xbe\x0f\x83\x66\xff\xc7\xc1\xa3\x44\x30\xc2\x52\x09\x11\x44\
\x08\x8e\x8f\x55\x78\xba\xfa\x8a\xa9\xeb\xe9\xab\x32\xc5\xe3\xce\
\x07\x4a\xd2\xad\xd3\xee\x5a\xbf\x00\x37\xa2\xf7\x8d\xad\x52\x50\
\x1c\xce\xed\x10\x1f\x9b\x21\x64\x54\x13\x16\x75\xfe\x93\x66\x5e\
\x7d\xc5\xaf\xd5\xb7\xcb\xc7\x32\x4f\xeb\x9d\x9a\x1b\x07\x79\x72\
\xba\x54\xc0\xfc\xb7\x24\x70\xdf\x8a\xdc\x4d\xb1\xbd\x87\x1c\xad\
\xec\x41\x6c\xd1\xb7\xa6\xcb\x53\xb3\x28\x51\x5e\x06\x17\x11\xfa\
\x40\xa2\xd7\x2e\x00\x83\x3f\x09\x26\x8e\x21\x05\x9a\x52\xa2\x86\
\xe8\x3b\xf2\x80\x8f\xab\x91\x7d\x31\x21\x2a\x88\xb3\xc2\xd8\x5f\
\x34\xc0\xbe\x21\xb1\x53\x95\x1c\xad\xf4\x6b\x1c\x1c\x44\x1a\x53\
\x1f\x08\x2b\xab\x28\x0c\x53\x43\xc5\x2e\x1b\xa1\xc2\x6c\xbc\x8f\
\x38\x99\xd3\x7c\xfb\xd2\x29\x33\x3c\x94\xb4\x7b\x6b\x3f\xcd\xa8\
\xb6\x8e\x0a\xeb\x2c\xfd\x58\x43\x96\xec\x1d\xa8\x7d\x81\x4a\x99\
\x3f\x8c\x35\x55\xef\x29\x5d\xb1\x1c\x32\xeb\x6a\x6f\x33\xe6\x4a\
\xb7\x4c\x5e\x68\x12\x28\xc1\x39\xc8\xa8\xd9\xdf\xa6\x2f\xd9\xe4\
\x9e\xaf\x45\xe6\x33\x75\x3d\x52\xc9\xb6\x27\xcc\xef\x4e\xb5\xce\
\x8c\x14\x23\x45\xc8\x9a\xa4\x5a\x18\x09\x5d\x56\xce\xe7\xec\xeb\
\xe7\xda\xa3\x3a\x9a\x7f\x70\x28\x77\xdc\x7a\xdc\xc6\x1c\xae\x8d\
\x31\x2d\x33\x12\xd6\x08\x94\x67\x56\x6c\xd6\xa8\x1e\x9c\xab\x3b\
\x5b\xf7\x9a\x6a\xab\x07\xa2\xca\xb5\x7e\x4b\xd1\x84\x2e\x37\xf7\
\x30\xf6\xe6\x9f\x49\xab\x7d\x48\x5f\x97\xd0\x78\x28\xf6\x4e\x62\
\x30\xd5\x1a\xca\x77\x0c\xc4\xf5\x03\xb5\x27\x83\xa2\x0c\xf1\xfc\
\xee\x5e\xc4\xd5\x7e\x41\x0e\xe0\x29\xba\x98\xd7\x17\xd5\x57\x23\
\x27\xc4\x09\x06\xde\x5f\xe0\x57\x0e\xf1\x86\x7f\x0a\xd9\x9c\xc6\
\xb0\x9d\xbf\x8f\x5b\xb8\x43\x27\x78\x18\x0f\x55\xac\x03\xac\x77\
\xc6\xca\x32\x10\x7f\x17\x60\xb9\x15\x14\xde\x9b\x1f\x23\x15\xfc\
\xd1\x15\x6b\xaa\xa8\xc2\x3b\x5c\x1f\xf2\x16\x99\xfd\x9f\x9e\x20\
\x89\x40\x32\x22\xa5\xff\x9f\x00\x03\x00\x25\x24\x09\x83\x06\xd3\
\x31\x32\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x05\x90\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x03\x68\x69\x54\x58\x74\x58\x4d\x4c\
\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\
\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\
\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\
\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\
\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\
\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\
\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\
\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\x36\x36\
\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\x30\x32\
\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\x20\x20\
\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\
\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\
\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\
\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\
\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\
\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\
\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\
\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\
\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\
\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\x66\x23\
\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\
\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\x4d\x4d\
\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\x65\x6e\
\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x30\x36\x38\
\x30\x31\x31\x37\x34\x30\x37\x32\x30\x36\x38\x31\x31\x38\x32\x32\
\x41\x39\x45\x32\x39\x34\x32\x44\x34\x36\x37\x46\x38\x22\x20\x78\
\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\
\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x41\x36\x32\x46\x42\x43\x46\
\x41\x37\x45\x46\x32\x31\x31\x45\x35\x38\x45\x41\x43\x42\x41\x31\
\x41\x46\x46\x44\x30\x43\x38\x41\x30\x22\x20\x78\x6d\x70\x4d\x4d\
\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\
\x2e\x69\x69\x64\x3a\x41\x36\x32\x46\x42\x43\x46\x39\x37\x45\x46\
\x32\x31\x31\x45\x35\x38\x45\x41\x43\x42\x41\x31\x41\x46\x46\x44\
\x30\x43\x38\x41\x30\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\
\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x36\x20\x28\x4d\x61\x63\
\x69\x6e\x74\x6f\x73\x68\x29\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\
\x3a\x44\x65\x72\x69\x76\x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\
\x65\x66\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\
\x6d\x70\x2e\x69\x69\x64\x3a\x46\x38\x37\x46\x31\x31\x37\x34\x30\
\x37\x32\x30\x36\x38\x31\x31\x38\x32\x32\x41\x43\x38\x46\x44\x37\
\x46\x31\x31\x45\x35\x42\x31\x22\x20\x73\x74\x52\x65\x66\x3a\x64\
\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\
\x69\x64\x3a\x30\x36\x38\x30\x31\x31\x37\x34\x30\x37\x32\x30\x36\
\x38\x31\x31\x38\x32\x32\x41\x39\x45\x32\x39\x34\x32\x44\x34\x36\
\x37\x46\x38\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\
\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\
\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\
\x3e\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\
\x22\x72\x22\x3f\x3e\x13\x66\x59\xab\x00\x00\x01\xbe\x49\x44\x41\
\x54\x78\xda\xb4\x56\x3d\x48\xc3\x50\x10\xbe\xf7\x9a\x68\xd2\x2e\
\xa5\x4a\xfd\x41\x50\x10\x74\x13\x07\x9d\xd4\xc1\x4d\x11\x29\x88\
\x43\x71\x11\xc1\xd1\xb1\xb8\xb8\xb8\x29\x38\x8a\x20\x8a\x20\x88\
\xa3\xe2\xe2\x20\x8e\x52\xec\xaa\xa0\x76\x70\xe8\xe2\xd4\x5a\x4b\
\x9b\x9a\x92\x9f\xf7\xbc\xb4\x55\x6b\x51\x9a\xd7\x9a\x83\x2f\x90\
\x04\xee\xbb\xfb\xee\xde\xdd\x23\x9c\x73\xf0\xd2\xc8\x27\x01\xcb\
\x6b\x90\x59\x89\xcd\xb2\x5c\x21\x0a\x3e\xda\xe1\x7c\x12\xf4\x45\
\x81\x73\x0d\x7c\xe4\xb2\x73\x7f\xeb\x44\x1a\xe8\xfb\x26\xe0\xa6\
\x05\xe9\xe8\xda\xaa\x76\x7e\x76\x48\x40\x69\x29\x62\x0e\x25\x50\
\xa7\xa6\x77\xba\x2e\x0e\xd6\x69\x28\x58\x21\x30\xee\x9e\x82\x2f\
\xa3\x33\x8f\x44\x92\x7b\x80\xd2\x96\x65\xb1\x8d\x2c\xeb\x3e\x3d\
\x1a\x09\x2c\x45\x1e\xca\xde\x78\x51\xef\xc5\x64\xc2\x40\x88\xbb\
\x20\x1b\xe9\x0e\x32\x65\x5a\x71\xa8\xa2\x5b\xf9\xe9\x38\x26\x8d\
\x34\x37\x11\x0b\x88\x71\x44\xa6\x71\x45\x2a\xae\x25\x81\xcc\x9d\
\x00\x92\x88\x14\x42\x77\x9b\xa9\x08\x41\x3b\x22\x81\x28\x21\xc2\
\xee\x5b\x4b\xa4\x41\x00\x5e\x11\xf9\xaa\x5c\xff\x4e\xa0\x21\x26\
\x11\xc3\x88\x67\x2f\x08\x1c\xb3\xaa\xb5\xe0\x5e\x11\x08\x1f\x12\
\x0a\x1e\x9b\x68\x91\x0b\x35\x2d\xeb\xca\x44\xda\xb4\x0d\xb1\x8c\
\xc8\x21\x42\x5e\x10\x38\x53\x70\x4f\x64\x52\x7b\x58\x03\x54\xd3\
\xb6\x6d\x6f\x08\xca\xfb\x85\xbc\x4b\x83\xfd\xf7\x9e\x10\x70\xdb\
\xb0\x02\xf3\x73\x31\x65\x62\x2c\xf5\x57\x0d\x9c\x71\x70\x5c\x1d\
\x07\x44\xc8\xbb\xcd\x74\xaa\xfa\xaf\x3a\x76\x37\x13\x44\x55\x7e\
\x14\x19\xf3\xe2\x32\xa6\xf7\x86\x3b\x21\x82\xef\xf1\xe6\x97\x30\
\xfd\xa5\x8b\x18\x53\x91\x3e\x0d\xdc\xb7\xc8\x0d\x33\x2e\x18\x77\
\x8d\x3e\x78\x3c\x4c\xea\x64\x52\x47\x40\x69\x36\xb4\xbd\x11\xd1\
\xaf\x6f\x6e\xcd\x24\xce\x31\x49\x6e\x8e\x80\x31\x20\x0a\x4e\x75\
\x49\xaa\xbb\x55\xe0\x0f\x67\x03\xe1\xea\xc4\x22\x59\xc2\xd2\xd7\
\x77\x3f\x0d\xf8\xbf\x36\xda\x87\x00\x03\x00\xf5\xc2\x93\x5d\x52\
\x41\x60\x62\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x06\xd6\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\
\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\
\x9c\x18\x00\x00\x01\x59\x69\x54\x58\x74\x58\x4d\x4c\x3a\x63\x6f\
\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\x00\x00\x00\
\x3c\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\
\x3a\x78\x3d\x22\x61\x64\x6f\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\
\x61\x2f\x22\x20\x78\x3a\x78\x6d\x70\x74\x6b\x3d\x22\x58\x4d\x50\
\x20\x43\x6f\x72\x65\x20\x35\x2e\x34\x2e\x30\x22\x3e\x0a\x20\x20\
\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\x78\x6d\x6c\x6e\x73\x3a\
\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\
\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\
\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\
\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x74\x69\x66\x66\x3d\x22\x68\
\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\
\x6f\x6d\x2f\x74\x69\x66\x66\x2f\x31\x2e\x30\x2f\x22\x3e\x0a\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x74\x69\x66\x66\x3a\x4f\x72\
\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x3e\x31\x3c\x2f\x74\x69\x66\
\x66\x3a\x4f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x3e\x0a\x20\
\x20\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\
\x69\x70\x74\x69\x6f\x6e\x3e\x0a\x20\x20\x20\x3c\x2f\x72\x64\x66\
\x3a\x52\x44\x46\x3e\x0a\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\
\x61\x3e\x0a\x4c\xc2\x27\x59\x00\x00\x05\x16\x49\x44\x41\x54\x48\
\x0d\x75\x56\x4b\x4c\x5c\x55\x18\xfe\xee\x93\x99\x81\x81\xa8\x50\
\x0b\x15\x5a\x4c\x75\x9a\x82\xb4\x24\xc6\x07\x31\x69\x34\x81\x5a\
\x17\xc6\x0d\x26\x36\x75\xe1\x46\x37\x6e\xba\x63\x53\x43\x5c\x18\
\x4d\xdc\x18\x69\x62\x4d\x44\x8c\x1a\xa2\xa8\xa1\x69\x34\x69\x8d\
\xd5\xc6\xb4\xb4\x11\x2d\xc4\x56\x4a\x1b\x52\xb5\x40\xc4\xa9\x32\
\x3c\xe7\xce\x7d\xfa\xfd\xe7\xce\xe5\xa5\x1e\xe6\x3f\xcf\xff\xfd\
\xba\x68\x3d\x9f\x4c\x44\xed\x0d\x95\x30\x34\x0d\x11\xff\x34\xc8\
\x88\xf8\x23\xfc\xdf\x1a\x85\xea\x3d\x5a\x5b\x49\x17\x86\xa1\x1f\
\x69\xfa\xf9\x2b\xb3\x85\xbe\x8f\x26\x9a\x31\x76\xb4\xd0\xdb\xdb\
\xab\x9b\xc2\xfc\xe9\x8e\x46\xdc\x5a\x70\x61\x90\x7d\x40\xc6\x21\
\xe9\xc3\x40\xd6\xf2\x9e\x6b\x24\x90\xc8\x55\x4a\xac\x4f\x1a\x95\
\xf3\xfc\x08\x2d\xbb\x32\xd0\x02\x17\x7d\x63\x47\x95\x9e\xbd\x44\
\x31\x45\xf3\xe9\x45\x0f\x67\x67\x57\x90\xa2\x00\xc7\x8b\x50\x72\
\x43\x38\x6e\x44\x08\x51\x2c\xc9\x9e\x20\xf7\x04\x9f\x82\xc5\xb6\
\x8d\xc3\xd2\x81\xd1\xc5\x00\xef\x3d\xd9\x00\xcb\x8c\x7d\x20\xef\
\xbd\x04\x53\xd0\x4d\x22\x54\x73\xb2\x29\xcc\xe6\xd9\x25\x4e\x5a\
\xe3\xaa\x6b\x28\x11\x5c\x12\x89\x86\x02\x62\xd9\x56\x01\x06\x71\
\x74\x2a\x57\x41\x1e\x34\x74\xd3\x30\xe5\x24\x97\x8e\xb8\x80\xfb\
\x52\x10\xa2\x44\x46\x02\x8e\xc7\x3d\x41\x2c\x70\xa9\xbd\xcb\xbb\
\xc4\x82\x75\x3d\xa9\x25\x05\xcc\x3a\xa1\x7a\xd3\xb6\x48\x30\x85\
\x68\x7b\xa5\x85\x27\xea\x2b\x55\x4c\x45\xa0\xf2\x35\x11\x15\x2e\
\xa5\x46\xbc\x50\x77\xea\x51\xa6\x78\x28\x65\xe5\x9d\xc7\x90\x08\
\x4d\xdb\x2c\x5c\xb9\x1c\x24\xcf\x6a\x35\x25\xa8\x69\xda\x51\xcb\
\x49\x98\x48\xc0\xd6\x46\x79\xbb\xe1\x26\x7e\xe2\x85\xe0\xca\x10\
\x25\x64\x4f\x23\x50\x65\x01\x5e\xb0\x45\x80\xc8\x17\x24\x9f\x53\
\x14\x09\x2b\xa1\x14\xf8\xef\x91\xbc\x08\x53\x01\x26\x9c\x5a\x85\
\x32\x5d\xc1\x48\x24\x92\xcb\xe4\xb1\xda\x3c\x08\x42\x3c\x6d\xda\
\xc8\x61\x6d\x88\xab\xe2\xa1\xb0\x63\xfc\xb8\x24\xd6\x68\xd7\x71\
\x62\x4c\x5d\x89\x2f\x93\x25\xe4\xe5\xe3\xa6\x45\x08\x0d\x43\x87\
\xc9\x4c\x51\x31\xe1\xab\xaa\x97\xb2\x25\x22\x3b\xa6\x5f\xe7\xd2\
\x4b\x9c\x4d\x02\xca\x7a\xfd\x8b\xb1\x30\xac\xb0\x75\xfc\x59\xc8\
\x63\xf4\x97\x51\xc6\x89\xe9\x28\xc5\x58\x66\x2a\x6b\xb2\x97\x82\
\xdc\x38\x54\x1d\x24\x17\xf2\xb4\x51\x88\x30\x96\xa0\xdb\x96\x86\
\xc9\x5b\x53\x78\xf5\xd3\x1e\xdc\x9b\xde\x83\xf6\xdc\x83\x4c\xc9\
\x80\x1a\xb3\xbd\x90\x88\x99\x0d\xca\x64\x17\x30\x58\xf1\x12\x15\
\xa8\xf4\xef\xbe\x7a\x55\x5b\x8b\x41\x22\x24\x59\x43\xf6\x19\xcb\
\x30\x20\x6c\xce\xfe\x78\x0e\xa7\xa6\x3e\xc0\x63\x1d\x39\xe0\xf7\
\x1d\xb0\x6d\xba\x43\x8f\x49\x95\xf6\x65\x01\x29\x6a\x67\x5b\x15\
\xa2\x67\x5e\xf8\x0c\x0d\x0d\x05\xa6\x68\x99\x0c\xd1\x3e\x39\xa7\
\x6c\x03\x7f\x2d\x2d\xe2\xb3\x6f\x07\x71\x71\xe1\x24\x0e\x77\x1d\
\x46\x65\x2a\x83\x53\xd7\xcf\xe3\xe4\xd7\x67\x10\x69\x61\xd9\x4d\
\xd2\x24\x95\xaf\xb5\x9a\x8c\x8d\x8b\x13\x97\xd2\x68\xc1\xeb\x78\
\x00\x5e\xae\xb6\xad\x5f\x1b\x38\x7d\x2d\x3a\xd2\x99\xc3\x0a\x2b\
\x51\xb4\x31\x74\x1d\x06\x0d\x9c\x9a\xfe\x15\xfd\x17\xfa\x90\xad\
\xf3\xb1\xbf\xb5\x1d\xa1\x29\x15\x5d\x82\xb3\xb8\x82\xf9\xf9\x39\
\xb2\xd4\x28\x20\x20\x0d\x21\xf4\xb9\xb2\xda\x03\x2f\xaa\xb2\xb3\
\xda\xae\xfa\xfb\x71\xfd\xc6\x4d\xbc\xf2\xd4\x1b\x07\x95\x9d\x4a\
\x73\x21\xa1\x23\x1d\xaf\x84\xf1\x89\x9f\xf0\xe1\x0f\xc7\xd1\xf1\
\xf0\x3e\x34\x36\x35\x21\xef\xe4\xb1\xb0\xba\xc0\x3e\x14\x22\x5d\
\x99\xc2\x9d\x55\xf5\x08\x7c\x9f\xbd\xc9\x23\xb8\xf0\xd5\xea\xb1\
\x98\x3c\x6d\xd9\x77\x22\xcf\x2c\x7a\x74\x2f\x1d\xc9\x36\x26\x51\
\x12\x13\x55\xa6\xb0\x12\xaf\xcd\xdc\x40\xe7\xdb\x1d\x78\xf3\x85\
\x63\x68\xcb\xed\xc3\xd4\xdf\x53\x58\xf2\x97\xe0\x51\x4b\x8f\xad\
\x78\xd1\x29\xc0\xa5\x25\x25\xcf\x61\x7f\x72\xe0\x94\x8a\xdc\x13\
\xdc\x22\x2d\x2c\x52\x60\x51\x4b\x99\xb6\xb9\x5a\xf2\xc9\x15\x71\
\xa4\xc4\x02\xc9\x16\x97\x77\xcd\x77\xdf\x87\xd3\x2f\x5f\xc0\xc7\
\xa3\xc7\x91\xad\xce\xe2\x9e\x9d\x3b\xe1\xad\x8a\xb6\x05\x76\x5b\
\x0b\xd5\xe9\x2c\xcc\x8c\xa9\xb4\xf6\x03\x5a\xe0\xb9\xca\x12\x9f\
\x16\xa9\xb3\x5f\x8a\x9a\x6a\x9b\xfc\x99\xf9\xbc\x58\x10\xaa\x34\
\x55\x1d\x42\x4e\x4c\x31\xdb\xa8\xc0\x23\xad\x8f\xa2\xae\xa6\x1e\
\x03\x23\x7d\x98\xc9\xcf\xa0\x6d\xef\x7e\xa4\x33\x29\x6a\xe9\xa0\
\xb8\xbc\x8a\xc2\xfc\x1f\x2a\x9d\x03\xf1\x7d\x39\x0e\x01\x57\x2f\
\xf0\x19\x83\x1a\xcd\x0a\xd2\xb6\x27\xb9\xcb\xa4\xd2\xde\xff\xf2\
\xe7\xe8\xf9\x43\xad\x58\x2a\x4a\x90\x19\x38\xba\x4c\x82\x6d\xb3\
\x62\x6f\x33\x8b\x3e\x3f\x37\x88\xf1\xe5\x61\x3c\xdb\xf9\x1c\xaa\
\x2a\x32\x18\x1e\x1e\x41\xfb\xf6\x2e\xba\xb5\xdc\x61\x89\x2b\xac\
\x0c\x26\xd3\x5d\x55\x96\x76\xe6\xfb\x11\xe7\xc4\xe0\xb1\xb7\xd0\
\x2e\x59\x94\xeb\x67\x0c\x94\x24\x15\x07\x61\x2c\x0d\x4f\x32\x77\
\xb5\x14\x20\x9b\xae\xc6\x91\xae\x17\xd1\x3c\xbe\x07\x5f\x7d\x37\
\x80\xbd\x3b\x1b\xd0\x60\xef\xc6\xa1\xc7\x0f\xd2\x2d\x71\xf5\xc6\
\x34\x92\x7d\x88\x1a\xef\x80\x36\x3f\x67\x15\x4f\x4c\xa2\x07\x93\
\xe0\x6f\x12\xa6\x7c\x77\xc9\x4f\x0d\xc9\x68\xd9\x4b\x4c\x74\xc6\
\xc4\xf7\xa5\xf5\xea\x38\xd0\x7e\x00\x0d\xdb\x76\xe0\xb5\x2f\x7a\
\xd0\x44\xcf\xba\x2e\x3f\x4c\xae\xa7\x2c\x16\x65\x04\x4c\x83\x4a\
\x31\x67\xe8\x46\x21\xaf\x23\xe4\xd1\xdd\x6d\x48\xeb\x82\x7c\x46\
\xab\x52\xb2\x8b\x91\xb9\x28\x37\x25\xab\x30\x78\x28\xb7\x1b\xef\
\xbc\xf4\x2e\xa6\xe7\x7e\x43\x6d\x56\xda\x83\xa5\x18\x0b\x8e\xbc\
\xb3\x7c\x50\x4d\xe1\x96\x7c\x18\x98\xb0\x32\xa1\xa5\x25\x32\x2f\
\x4f\xdd\x46\x34\x3c\x4a\x02\xc5\x3e\x26\x62\xb0\xd7\xff\x25\x89\
\xf7\x52\x03\x96\x69\x31\xdb\x80\xb1\xd1\x6f\x48\x2d\x31\x88\x69\
\x62\xcd\xe4\xdd\xc4\xa5\xb1\x9b\x7c\x7b\x86\x0f\xc3\x22\x02\xff\
\x00\x69\x0e\x07\xd0\x8e\xea\x24\x7b\x00\x00\x00\x00\x49\x45\x4e\
\x44\xae\x42\x60\x82\
\x00\x00\x0a\xfc\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x03\x68\x69\x54\x58\x74\x58\x4d\x4c\
\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\
\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\
\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\
\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\
\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\
\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\
\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\
\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\x36\x36\
\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\x30\x32\
\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\x20\x20\
\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\
\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\
\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\
\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\
\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\
\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\
\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\
\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\
\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\
\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\x66\x23\
\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\
\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\x4d\x4d\
\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\x65\x6e\
\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x30\x36\x38\
\x30\x31\x31\x37\x34\x30\x37\x32\x30\x36\x38\x31\x31\x38\x32\x32\
\x41\x39\x45\x32\x39\x34\x32\x44\x34\x36\x37\x46\x38\x22\x20\x78\
\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\
\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x33\x38\x33\x30\x38\x35\x45\
\x33\x35\x39\x34\x33\x31\x31\x45\x35\x38\x42\x43\x33\x42\x42\x43\
\x30\x33\x45\x33\x38\x37\x31\x36\x38\x22\x20\x78\x6d\x70\x4d\x4d\
\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\
\x2e\x69\x69\x64\x3a\x33\x38\x33\x30\x38\x35\x45\x32\x35\x39\x34\
\x33\x31\x31\x45\x35\x38\x42\x43\x33\x42\x42\x43\x30\x33\x45\x33\
\x38\x37\x31\x36\x38\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\
\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x36\x20\x28\x4d\x61\x63\
\x69\x6e\x74\x6f\x73\x68\x29\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\
\x3a\x44\x65\x72\x69\x76\x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\
\x65\x66\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\
\x6d\x70\x2e\x69\x69\x64\x3a\x30\x35\x38\x30\x31\x31\x37\x34\x30\
\x37\x32\x30\x36\x38\x31\x31\x38\x32\x32\x41\x38\x36\x30\x45\x43\
\x32\x38\x32\x31\x41\x31\x37\x22\x20\x73\x74\x52\x65\x66\x3a\x64\
\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\
\x69\x64\x3a\x30\x36\x38\x30\x31\x31\x37\x34\x30\x37\x32\x30\x36\
\x38\x31\x31\x38\x32\x32\x41\x39\x45\x32\x39\x34\x32\x44\x34\x36\
\x37\x46\x38\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\
\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\
\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\
\x3e\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\
\x22\x72\x22\x3f\x3e\x76\x32\xa3\x75\x00\x00\x07\x2a\x49\x44\x41\
\x54\x78\xda\x5c\x56\x69\x6c\x54\xd7\x15\xfe\xde\x32\xef\xcd\xee\
\xf1\xc2\x78\xc3\x4b\x6c\x8f\x5d\xe3\x00\xb6\x63\x30\x4b\x0c\x36\
\x0e\x20\x2b\x05\x52\x42\x9a\x46\x95\x68\x2b\x96\xa2\x14\xa5\x4a\
\x95\x54\xaa\x90\x9a\x54\xe9\x8f\x28\x4a\x22\x91\x48\xb4\x6a\x11\
\x49\x20\x4a\xa9\xd4\x24\x8d\xc2\xde\x44\x06\x6a\x30\x38\x2a\x93\
\x38\xe0\xd8\x89\x31\xb6\xa9\xed\x19\x7b\xc6\xe3\xd9\xe7\xad\xb7\
\x67\x8c\x59\x9a\x2b\x9d\xfb\xde\x2c\xef\x9c\x73\xbf\xef\x9c\xef\
\x3c\xee\x9d\xc1\x41\xf4\x4c\x4d\x01\x1c\x87\x7b\x4b\x64\xc0\x60\
\x01\x30\x9e\x43\xf7\x26\x6d\xe8\x62\x06\x0b\xba\x3d\x96\xee\x5d\
\xed\x36\x1c\x7f\xad\xdf\xce\xf1\xdc\x26\xd1\x82\x69\x5e\xc0\x65\
\x93\xfe\x50\x44\xe6\x20\x33\x17\x5c\xe8\x74\x57\xb6\xa4\x00\x62\
\xf7\xe4\x24\x8e\xde\xb8\x01\x08\xc2\xfd\x00\x92\x01\x5c\x2d\x05\
\x2e\x54\xca\x90\xf4\xdf\x41\x41\x0b\x14\xa6\x36\xae\x71\xe4\x3e\
\xb9\x3c\x33\x34\xf0\xf5\xc8\xf3\xf1\x98\xb1\x3c\x34\xce\x22\x19\
\xe8\x6f\x58\xc0\x9d\x6d\xf8\x5e\x00\x95\x42\x34\xae\x7f\x08\xa2\
\x85\xe7\xef\x38\x7f\x30\x00\x78\x3b\xea\x62\x29\xf4\x69\x36\x68\
\x7c\xdd\xaa\x16\xc1\xb6\x7d\x1d\x5f\xdb\xfc\x83\xd4\xb1\xb4\x76\
\x5b\xde\xf2\x82\x21\xcc\xcd\x45\x31\x3d\x2a\x24\x7a\x3e\xc8\x59\
\xc7\x4d\xeb\x67\xb3\xc7\xa4\x73\x73\xc2\xfc\x25\xbb\x31\x88\x12\
\x0f\x11\xff\xbf\x6c\x64\xfb\x61\x70\x2d\x70\x26\x3e\xdb\xbb\x57\
\xf1\x77\x16\x17\x37\x6c\x5a\xef\xf6\x09\x82\x81\x40\x70\x0e\x13\
\x93\x49\x98\x06\x8f\x4c\x5a\x03\xef\x0a\x3a\x1f\xdb\x2d\xd9\x26\
\xfe\x22\x15\xb2\x10\xfb\x2d\x3d\xeb\x24\x3b\x42\x76\xf5\x1e\xda\
\x60\x16\xc0\x90\x29\x69\xfa\xc4\xe9\x6d\xb4\x6f\x83\xae\x47\x9e\
\xa9\xa8\x7c\xee\xd5\x47\x6b\x6b\x72\x73\xf2\xad\xba\xce\x90\xcd\
\x58\xd3\xd9\x9d\x2c\xac\xb6\xf9\x3c\x99\x2e\x62\x55\x67\xc5\xb6\
\x4f\xdf\x1b\xb1\x28\xb0\x35\xf0\x60\xdc\x7c\x82\xc0\xd7\x04\x72\
\x2a\x0b\x17\x0f\xfb\x18\x90\xe7\x07\xe4\x10\x31\x23\xa9\xd0\xb4\
\xd4\x2f\xab\xab\x2b\xff\xb4\x72\xc5\xc3\x6e\x47\xbe\x55\x33\x38\
\xa4\xd2\x19\x64\x32\x19\xfa\x49\xa3\xd8\x3a\xd5\x03\x07\x55\x55\
\x51\x53\xe3\xc3\x8a\x95\xad\x55\x2d\x3f\xad\xdd\xa2\x40\x8d\x67\
\x91\x21\xc7\x3c\x19\x3c\x0b\xc7\x11\x51\x74\x96\xf6\xf7\xc8\xb9\
\x0b\x45\xc1\x9d\xe7\xb7\x0a\xdb\x9f\xd8\x53\xba\x68\x63\x4c\x51\
\x91\x09\x85\xe6\x01\xd5\xc8\xa9\x42\xc6\x44\x42\x94\x2c\x95\x4a\
\xa1\xb4\xb4\x14\x9d\x9d\x9d\x30\x55\x0e\x6d\xbb\xab\x16\xf7\x7f\
\x32\xde\x37\x3b\x84\x09\xe2\xe2\xc8\x6a\xca\xbe\x6a\x21\x08\x41\
\x44\x0f\x19\xf0\x42\x8c\x3f\xed\xaa\x39\xa5\x3e\xd3\xdb\xd0\x36\
\x7a\xf0\x35\x0c\x06\x03\x88\x93\xa3\x04\x63\xc8\xc8\x32\xcc\xdc\
\x5c\x70\x5e\x2f\x84\xa2\x22\xf8\xd6\xad\xc3\xaa\xb5\x6b\xe1\x74\
\x38\xa0\x99\x16\x2c\x12\x3f\x17\xda\x0e\x8c\xb2\xbe\xdf\x97\x3f\
\xbb\x65\x54\xf2\xb9\xc1\x7e\xa5\x00\x7e\x42\xfd\x72\x96\xe4\x6c\
\xf9\x3c\x4f\xfb\xda\xc4\x64\xc2\x1a\x7f\xe1\x40\xb3\x1c\x89\x20\
\x85\x6c\x5c\xca\x9e\x2c\x41\x46\x00\xce\x7f\xd7\xba\x6b\x17\xda\
\x37\x6c\x80\xdd\x61\x27\x98\x74\x88\xf4\xb4\x4c\xd6\xfa\xf0\x77\
\xdb\x43\x4b\xdd\x3b\xed\xa3\x05\x5d\x0a\xb8\xc5\x84\xff\x13\x74\
\xfa\x03\xd9\x00\xc4\x32\x4a\xb2\xcf\xc7\xa4\x94\x1a\x76\xf0\x66\
\x79\x04\xbc\xf9\x40\x69\xc9\x94\x7d\x7d\x57\x17\x1e\xd9\xb7\x0f\
\xf5\x6d\x6d\xf3\xf5\xa0\x69\x0c\x86\x1e\x83\x4d\x98\x83\xc5\xdb\
\x85\x7c\xd5\x2f\xae\xd9\xa6\xbd\x19\x3d\x29\xf5\x5a\x4d\x2d\xb2\
\x80\x50\xad\x48\x85\x91\xa1\xee\xf8\x84\x3a\x63\x77\xd2\x93\x0c\
\x0e\x35\xe7\x7d\xe1\x0b\x38\x5a\xcd\x15\xcb\xe0\x59\xbe\x1c\xf6\
\xa6\x26\x78\xc9\x69\x61\x7d\x3d\xe4\x07\x0b\x5a\x9d\x82\x18\x39\
\x01\xc1\x55\x49\x6c\x2e\x83\xe8\xde\x84\xe2\xd6\x8f\xf2\xa3\x5d\
\xe5\x45\xec\x24\x37\x6d\x42\x1e\x33\x61\xe9\x11\xcb\xed\xc0\x12\
\x0f\x3e\x72\x5a\x71\x9e\x8b\x21\x63\x1f\x61\x3b\xe4\xad\x5b\x5b\
\x6b\x8f\x1d\x86\xc7\x6e\x9f\x6f\x14\xee\x41\xc7\xcc\x44\x6a\xec\
\xaf\x18\xf7\xbf\x8d\x82\xe2\x7a\x82\x68\x33\x2c\x96\x7c\x6a\xcd\
\x6a\xb8\xec\x85\x90\xf6\x7e\x59\x34\x32\x50\xb1\xbf\xf1\xd6\x64\
\xbf\x1d\x5a\x5a\xdc\xec\x05\x2a\xbc\x28\x26\x9c\x9e\x24\x58\xe6\
\x6c\xeb\x0d\xa1\xff\x7a\xfc\x3f\x39\xd1\xe8\xd2\x7c\xab\x55\xe2\
\xb2\x9d\x7e\xd7\x77\xb4\x07\xda\xe8\xab\x48\x4f\x9c\x82\x90\x61\
\x98\x0d\x39\x61\xf3\x0c\x83\x97\x72\x21\xd8\x48\x5a\xe4\x46\x54\
\x54\x9f\x5c\x6c\xfc\x28\xbc\xcf\xf7\xe6\x07\x6f\x01\x1d\x7e\x5e\
\x27\x0e\x54\xe0\x37\x19\xe0\x27\xc4\xfc\xcf\xf4\xc7\xd5\xdd\xf1\
\x7f\x5f\x38\xd6\x73\xfa\xcc\x3f\x92\xc9\x24\x18\x63\xf7\x03\xa8\
\x01\xf0\x89\x2b\x90\x29\x53\xb7\x4b\xa2\xca\x1f\x41\x3c\x34\x04\
\x23\x79\x13\x46\x3a\x00\xc6\xbb\x20\x99\x1e\xe4\x3e\x9a\xfa\x79\
\xc4\xed\x39\x08\x8d\x35\xf3\x0b\x24\x17\x2f\x14\x49\x46\xf7\x58\
\x0b\x5b\x04\x5e\x18\x3f\x77\xee\xa5\xc1\x5b\xb7\xd4\x74\x3a\x7d\
\x5f\xa1\x16\xed\x00\x5f\xb0\x15\x92\x48\x08\xcb\x0e\x38\x2d\x11\
\xcc\x06\xbf\x43\x7a\xee\x5b\x28\xf1\x51\x22\x9d\xea\x4d\x2c\x83\
\x58\x94\xc4\xe8\x0f\x57\x2e\xa1\x00\x55\xfc\x82\xe3\x8f\xb3\x0a\
\x4b\x10\xc5\xec\xdf\x38\x3f\xbf\x6a\xf2\xde\x1b\xfd\x5f\x0d\x77\
\x77\x77\xbf\x1b\x8b\xc5\xe6\x3b\xf8\xee\xe2\xca\x5e\x84\x40\x90\
\x48\x92\x15\x4e\xbb\x48\x99\x8f\x21\x1c\x18\x82\x12\x1b\x81\x9a\
\x9c\x9e\xe7\x48\xe7\x57\x63\xc8\xb7\x3a\x3d\xe6\xb6\xf7\xde\x05\
\xf8\x43\x72\xbe\xc7\x99\xe0\x9f\x2b\xff\x9b\xeb\x82\xd7\x25\x15\
\x57\x05\x02\xb8\x74\xf1\xe2\x1f\x07\x06\x06\x66\xb3\x41\xee\x42\
\xc5\xd9\xeb\xc1\x15\xed\x84\x45\x34\x28\x90\x13\x4e\x39\x4d\xa7\
\x18\x46\x32\x32\x8c\x4c\x6c\x18\x09\x3a\xf0\x9c\xd9\x81\x4f\x47\
\xc6\xfe\xfe\x7a\x49\xe9\x04\xcf\x2d\x74\x1a\xad\x89\xdc\x17\x11\
\xd6\xbe\x54\x44\xbb\xc4\x5c\x75\x89\x04\xea\xf3\xf2\x6e\x9f\x38\
\x73\xe6\x8d\x60\x30\x88\x6c\x90\x7b\x50\x95\x3c\x0b\xc1\x51\x0b\
\x42\x12\x92\x6c\x23\xf1\x99\x41\xe0\xb6\x1f\x89\x44\x1c\xb3\x7c\
\x3b\xfc\xd7\x6f\x05\xc6\x46\x86\x0f\xe6\x90\x9c\x08\x9b\x5d\xcd\
\xe8\xff\xb3\x1f\xce\xeb\x3e\x4c\xbc\x95\xc6\x54\x66\x4e\x54\x95\
\x4c\x72\xcc\x34\xaf\x99\x35\x35\x18\x98\x99\xf1\xbb\x6c\xb6\xa7\
\xf2\xf2\xf2\xf2\x65\x92\x0c\x8b\x85\x28\x13\x48\x4d\x05\x0f\xf4\
\xd0\x69\xd2\x29\xea\x78\x25\x85\x94\xa5\x09\x36\xdf\xcb\xf8\xe6\
\x66\x24\x7a\xe4\xf0\xa1\x1f\x33\x66\x7c\x55\xfd\x50\x25\x84\xae\
\x45\x4d\xb8\xf1\xbe\x1f\x25\xee\xc7\xe1\x7c\xac\x0d\x81\x4c\x6a\
\x6a\x26\xa3\x5c\xf3\x97\x97\x63\xcd\xc6\x8d\x08\x0c\x0d\xa9\x37\
\xa7\xa7\x67\x2a\x2b\x2a\x77\xc0\x34\x49\xeb\x44\xe2\xc4\x80\x22\
\xd6\x82\x25\xae\x41\x4f\x4d\xc1\x28\xde\x0f\x47\xdd\x1f\xd0\xfb\
\xc5\x8d\x6f\xdf\x3e\xf8\xfa\xd3\xb1\x58\xfc\x62\x3a\x9d\xa2\x64\
\x24\x88\xbc\x9c\x1d\x6f\x40\x52\x56\x0a\x3d\x05\xf9\xb5\x72\x7b\
\x47\xa9\x14\x0e\xdb\x1b\x0d\x43\x97\x18\x0b\x2f\xcd\xc9\x19\xee\
\xef\xe9\x39\xde\x5d\x56\xb6\x67\x43\x47\xc7\x06\x85\x64\x3a\x27\
\xc7\x4d\x64\xc8\xd4\xc5\xbf\x86\x69\xdf\x87\x89\xb0\x27\xfd\xcf\
\x43\x87\xde\x39\x7d\xea\xe4\xcb\xe1\x70\x68\x46\x21\x25\x8e\xc7\
\xe3\xf0\x7a\x8b\xb2\xe2\x0b\xdf\x32\xe0\xa5\x55\x33\x33\x5d\x25\
\xd1\x68\x5e\xbb\xcd\x46\x95\x52\x06\xce\x30\x90\x99\x99\x41\x24\
\x1c\x66\x25\xe3\xe3\x57\xde\x3d\x7a\xf4\x7d\x2a\x1d\x5f\x73\x43\
\x43\x99\x97\x54\xd5\x34\x0d\x36\x7e\x3b\x30\x71\xf9\x72\xef\x67\
\xff\x3a\x77\xe2\xf0\xd8\xd8\xf8\x25\x8e\xde\x04\x18\x33\xc5\x85\
\xd1\x6c\x0a\x34\x86\x45\x59\xd3\x1e\x21\xed\x7e\x4a\xe9\xee\x96\
\x26\xaf\x5d\x83\xad\xae\x0e\xe2\xe2\xc5\xd0\x28\xd3\xb9\xe1\x61\
\x36\x31\x38\x18\xa2\x57\x02\xa5\x6f\x6a\xea\xe6\xf9\x57\x5e\xf9\
\x45\x61\x61\x61\x93\x6c\x95\xad\xb1\x68\x34\x42\x53\xee\x36\x39\
\x0a\xe3\xce\x3c\x5c\x4f\xce\x93\x74\xcd\x0e\x9e\x6c\x45\xc4\x14\
\x45\x49\x89\xf9\x8d\x8d\xc7\x47\x03\x81\x2b\x49\x9e\x6f\x4d\xb8\
\xdd\xf9\x69\x97\x4b\x75\x59\x2c\x51\x37\xc7\x25\x2f\xb9\x5c\xe1\
\x40\x65\xe5\x7f\x67\x0d\x23\xb4\x0a\xb0\x72\xa6\xc9\xd3\x44\xeb\
\x63\x26\xe3\x78\x2a\xa1\xec\xe2\x79\x5e\x58\xc8\x58\xff\xbe\x35\
\x37\x37\xb3\xff\x09\x30\x00\x5c\x5e\x34\x40\x8c\x13\xfc\xc8\x00\
\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x09\x6c\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x03\x68\x69\x54\x58\x74\x58\x4d\x4c\
\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\
\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\
\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\
\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\
\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\
\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\
\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\
\x43\x6f\x72\x65\x20\x35\x2e\x33\x2d\x63\x30\x31\x31\x20\x36\x36\
\x2e\x31\x34\x35\x36\x36\x31\x2c\x20\x32\x30\x31\x32\x2f\x30\x32\
\x2f\x30\x36\x2d\x31\x34\x3a\x35\x36\x3a\x32\x37\x20\x20\x20\x20\
\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\
\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\
\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\
\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\
\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\
\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\
\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\x65\x66\
\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\
\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\
\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\x66\x23\
\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\
\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x70\x4d\x4d\
\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\x65\x6e\
\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x30\x31\x38\
\x30\x31\x31\x37\x34\x30\x37\x32\x30\x36\x38\x31\x31\x38\x33\x44\
\x31\x46\x39\x35\x44\x33\x39\x43\x31\x34\x37\x42\x37\x22\x20\x78\
\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\
\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x36\x36\x36\x38\x33\x37\x46\
\x41\x39\x38\x30\x36\x31\x31\x45\x35\x38\x32\x32\x45\x45\x43\x35\
\x33\x33\x34\x46\x45\x34\x38\x31\x35\x22\x20\x78\x6d\x70\x4d\x4d\
\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\
\x2e\x69\x69\x64\x3a\x36\x36\x36\x38\x33\x37\x46\x39\x39\x38\x30\
\x36\x31\x31\x45\x35\x38\x32\x32\x45\x45\x43\x35\x33\x33\x34\x46\
\x45\x34\x38\x31\x35\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\
\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x53\x36\x20\x28\x4d\x61\x63\
\x69\x6e\x74\x6f\x73\x68\x29\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\
\x3a\x44\x65\x72\x69\x76\x65\x64\x46\x72\x6f\x6d\x20\x73\x74\x52\
\x65\x66\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\
\x6d\x70\x2e\x69\x69\x64\x3a\x30\x33\x38\x30\x31\x31\x37\x34\x30\
\x37\x32\x30\x36\x38\x31\x31\x38\x33\x44\x31\x44\x46\x32\x42\x41\
\x36\x39\x30\x33\x45\x33\x31\x22\x20\x73\x74\x52\x65\x66\x3a\x64\
\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\
\x69\x64\x3a\x30\x31\x38\x30\x31\x31\x37\x34\x30\x37\x32\x30\x36\
\x38\x31\x31\x38\x33\x44\x31\x46\x39\x35\x44\x33\x39\x43\x31\x34\
\x37\x42\x37\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\
\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\
\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\
\x3e\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\
\x22\x72\x22\x3f\x3e\xc1\x20\x9e\xe4\x00\x00\x05\x9a\x49\x44\x41\
\x54\x78\xda\x8c\x56\x5b\x6f\x54\x55\x14\xfe\xce\xfd\x9c\x99\x4e\
\xef\x48\xaf\xb4\x53\xb0\xd0\x72\x51\x0b\xb4\xda\xa4\x2f\x24\x04\
\xa2\x89\x4f\x58\xf0\xc1\x17\x1e\xfa\x64\x24\xbe\x92\xf8\x0b\x7c\
\x31\xc1\x07\xf5\xc9\x07\x1f\x40\x13\x25\x04\x43\x5a\x2d\x46\xb0\
\x89\x20\x29\x34\x5c\xaa\x55\x0a\xd3\x30\x2d\xd3\xcb\x74\x4a\x67\
\xe6\xcc\xb9\x6e\xd7\xde\x67\x3a\x45\x53\x8c\xbb\xd9\x73\x4e\x27\
\xe7\x7c\x6b\xad\xef\xfb\xd6\xda\x23\x05\x41\x00\xbe\x24\x49\x02\
\x63\x0c\xae\xeb\x22\x0c\x43\x99\xff\xff\x7f\x17\x7f\x4f\xd7\xf5\
\x50\x51\x14\x71\xcf\x97\x2c\xcb\x11\xee\xc8\xc8\x88\x00\xd7\x34\
\x0d\x8e\x67\xf7\x74\x76\x76\x9e\x4b\x76\x26\xdb\x28\x48\xc0\xc0\
\x9e\x43\xd9\x0a\x5a\xe2\x40\x52\xbe\x90\x67\x53\xb7\xa7\x3e\x06\
\x93\xbe\x54\x54\x05\x45\xbb\x88\xb3\x67\xcf\xa2\x2b\xd9\x05\x35\
\x9d\x4e\x8b\x00\x41\xe0\x77\xf7\xee\xeb\x39\xff\xce\x89\xe1\x03\
\x8d\x8d\x0d\xf0\xfd\xe0\xdf\x58\x5b\xa4\xce\x2b\x2f\x07\x92\xe4\
\x73\x17\x2f\x7e\x6b\xab\xba\x7e\x21\x5f\x58\x87\xe3\x38\xe2\x11\