-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathresources.py
More file actions
5003 lines (4995 loc) · 316 KB
/
resources.py
File metadata and controls
5003 lines (4995 loc) · 316 KB
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 by: The Resource Compiler for PyQt5 (Qt v5.6.2)
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore
qt_resource_data = b"\
\x00\x00\x11\x26\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\xc8\x00\x00\x00\xc8\x08\x02\x00\x00\x00\x22\x3a\x39\xc9\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
\x01\x00\x9a\x9c\x18\x00\x00\x06\x73\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\x36\x2d\x63\x31\x34\x32\x20\x37\x39\
\x2e\x31\x36\x30\x39\x32\x34\x2c\x20\x32\x30\x31\x37\x2f\x30\x37\
\x2f\x31\x33\x2d\x30\x31\x3a\x30\x36\x3a\x33\x39\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\
\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\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\x45\x76\x74\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\x45\x76\x65\x6e\x74\x23\x22\x20\x78\x6d\x6c\
\x6e\x73\x3a\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3d\x22\x68\x74\
\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\
\x6d\x2f\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x2f\x31\x2e\x30\x2f\
\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\
\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\
\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\x2f\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\
\x43\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x78\x6d\x70\
\x3a\x43\x72\x65\x61\x74\x65\x44\x61\x74\x65\x3d\x22\x32\x30\x31\
\x38\x2d\x30\x37\x2d\x30\x32\x54\x32\x32\x3a\x33\x34\x3a\x32\x30\
\x2b\x31\x30\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x65\x74\x61\
\x64\x61\x74\x61\x44\x61\x74\x65\x3d\x22\x32\x30\x31\x38\x2d\x30\
\x37\x2d\x30\x32\x54\x32\x32\x3a\x33\x34\x3a\x32\x30\x2b\x31\x30\
\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x6f\x64\x69\x66\x79\x44\
\x61\x74\x65\x3d\x22\x32\x30\x31\x38\x2d\x30\x37\x2d\x30\x32\x54\
\x32\x32\x3a\x33\x34\x3a\x32\x30\x2b\x31\x30\x3a\x30\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\x37\x35\x39\x38\x31\x37\
\x61\x37\x2d\x65\x34\x65\x66\x2d\x31\x38\x34\x64\x2d\x62\x65\x62\
\x64\x2d\x64\x35\x61\x37\x38\x66\x37\x31\x32\x61\x31\x36\x22\x20\
\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\
\x3d\x22\x61\x64\x6f\x62\x65\x3a\x64\x6f\x63\x69\x64\x3a\x70\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x61\x32\x36\x66\x31\x38\x34\x37\
\x2d\x64\x63\x65\x64\x2d\x38\x30\x34\x34\x2d\x62\x65\x61\x34\x2d\
\x34\x64\x31\x32\x34\x37\x37\x35\x37\x34\x38\x36\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\
\x36\x34\x30\x34\x65\x62\x65\x65\x2d\x63\x62\x35\x61\x2d\x31\x34\
\x34\x31\x2d\x39\x65\x66\x36\x2d\x65\x65\x31\x31\x39\x61\x37\x32\
\x37\x62\x31\x61\x22\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\
\x43\x6f\x6c\x6f\x72\x4d\x6f\x64\x65\x3d\x22\x33\x22\x20\x70\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x49\x43\x43\x50\x72\x6f\x66\x69\
\x6c\x65\x3d\x22\x73\x52\x47\x42\x20\x49\x45\x43\x36\x31\x39\x36\
\x36\x2d\x32\x2e\x31\x22\x20\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\
\x3d\x22\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x22\x3e\x20\x3c\x78\
\x6d\x70\x4d\x4d\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x72\
\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\
\x73\x74\x45\x76\x74\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x63\x72\
\x65\x61\x74\x65\x64\x22\x20\x73\x74\x45\x76\x74\x3a\x69\x6e\x73\
\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\
\x3a\x36\x34\x30\x34\x65\x62\x65\x65\x2d\x63\x62\x35\x61\x2d\x31\
\x34\x34\x31\x2d\x39\x65\x66\x36\x2d\x65\x65\x31\x31\x39\x61\x37\
\x32\x37\x62\x31\x61\x22\x20\x73\x74\x45\x76\x74\x3a\x77\x68\x65\
\x6e\x3d\x22\x32\x30\x31\x38\x2d\x30\x37\x2d\x30\x32\x54\x32\x32\
\x3a\x33\x34\x3a\x32\x30\x2b\x31\x30\x3a\x30\x30\x22\x20\x73\x74\
\x45\x76\x74\x3a\x73\x6f\x66\x74\x77\x61\x72\x65\x41\x67\x65\x6e\
\x74\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\
\x6f\x70\x20\x43\x43\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\
\x2f\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\x74\
\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x73\x61\x76\x65\x64\x22\x20\
\x73\x74\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\
\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x37\x35\x39\x38\x31\x37\
\x61\x37\x2d\x65\x34\x65\x66\x2d\x31\x38\x34\x64\x2d\x62\x65\x62\
\x64\x2d\x64\x35\x61\x37\x38\x66\x37\x31\x32\x61\x31\x36\x22\x20\
\x73\x74\x45\x76\x74\x3a\x77\x68\x65\x6e\x3d\x22\x32\x30\x31\x38\
\x2d\x30\x37\x2d\x30\x32\x54\x32\x32\x3a\x33\x34\x3a\x32\x30\x2b\
\x31\x30\x3a\x30\x30\x22\x20\x73\x74\x45\x76\x74\x3a\x73\x6f\x66\
\x74\x77\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\x41\x64\x6f\x62\
\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x43\x20\x28\
\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x73\x74\x45\x76\x74\x3a\
\x63\x68\x61\x6e\x67\x65\x64\x3d\x22\x2f\x22\x2f\x3e\x20\x3c\x2f\
\x72\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x2f\x78\x6d\x70\x4d\x4d\
\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x70\x68\x6f\x74\x6f\
\x73\x68\x6f\x70\x3a\x54\x65\x78\x74\x4c\x61\x79\x65\x72\x73\x3e\
\x20\x3c\x72\x64\x66\x3a\x42\x61\x67\x3e\x20\x3c\x72\x64\x66\x3a\
\x6c\x69\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x4c\x61\x79\
\x65\x72\x4e\x61\x6d\x65\x3d\x22\x51\x75\x69\x7a\x20\x33\x22\x20\
\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x4c\x61\x79\x65\x72\x54\
\x65\x78\x74\x3d\x22\x51\x75\x69\x7a\x20\x33\x22\x2f\x3e\x20\x3c\
\x2f\x72\x64\x66\x3a\x42\x61\x67\x3e\x20\x3c\x2f\x70\x68\x6f\x74\
\x6f\x73\x68\x6f\x70\x3a\x54\x65\x78\x74\x4c\x61\x79\x65\x72\x73\
\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\x5a\x50\x5e\x00\x00\x0a\x59\x49\x44\x41\x54\x78\x9c\xed\xdc\
\x4f\x68\xd3\xfe\x1f\xc7\xf1\x7c\x7f\x7c\x4f\xc5\x1d\x3c\x4c\xb6\
\x83\xb0\xf1\x99\x88\x74\x38\xc4\xc3\xd8\x21\xa7\x21\x73\x17\x27\
\x66\x78\xd1\x0d\x51\x89\x4c\x41\x41\x85\xa2\xc8\xd4\x1d\x0a\x03\
\x65\x20\x54\x98\xc7\x65\x5e\x94\x41\x7b\xf1\x62\x2a\x48\x65\xab\
\x82\x0c\x31\x3d\xcd\x9a\x80\x07\xa1\x45\x76\xd0\xe4\xda\xef\x21\
\x3f\xc6\xe8\xda\xe4\x9d\x3f\xef\xae\xad\xaf\xc7\x71\xcb\x92\xac\
\x7d\x36\x49\x93\x4f\xf2\x4f\xad\x56\x93\x00\xe2\xf6\xbf\xfd\x5e\
\x01\xe8\x4e\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\
\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\
\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\
\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\
\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\
\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\
\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\
\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\
\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\
\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\
\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\
\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\
\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\
\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\
\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\xc5\xbf\xfb\xbd\x02\x6d\xc7\
\x71\x1c\xd3\x34\x7d\x27\x3b\x74\xe8\x50\x6f\x6f\x6f\x0b\xd6\xa7\
\x43\xc5\x19\x56\xa9\x54\x92\x24\x69\x73\x73\x73\xe7\x27\xfd\xfd\
\xfd\x7d\x7d\x7d\x9d\xf5\x1e\x98\xa6\x39\x3c\x3c\xec\x3b\x99\xa6\
\x69\x17\x2f\x5e\x6c\xc1\xfa\xf0\x29\x95\x4a\x7f\xfe\xfc\xd9\xda\
\xda\xda\xf9\xc9\x91\x23\x47\x0e\x1c\x38\x30\x38\x38\x98\x48\x24\
\x22\xce\x3c\x6a\x58\xa5\x52\xe9\xfd\xfb\xf7\xef\xde\xbd\x5b\x5b\
\x5b\xf3\x98\x4c\x08\x31\x3d\x3d\x7d\xea\xd4\xa9\xb1\xb1\xb1\xe8\
\x2b\x0d\xa1\x55\xab\xd5\xf5\xf5\x75\x4d\xd3\xbc\xdf\x2f\x59\x96\
\x27\x27\x27\xcf\x9c\x39\x93\x4c\x26\x43\x2e\xa9\x16\x96\xae\xeb\
\xb2\x2c\x07\x5d\x9c\x10\x42\xd3\x34\xdb\xb6\x43\x2f\x97\x9b\x61\
\x18\x94\x7f\x44\xd3\xb4\xfd\x5e\xd3\x60\x2a\x95\x4a\x3a\x9d\x0e\
\xfa\x7e\xc9\xb2\x5c\x2c\x16\x43\x2c\x2e\x4c\x58\x86\x61\x84\x48\
\x6a\x37\x21\x44\x36\x9b\x0d\xb1\xe8\x16\xe8\xca\xb0\x32\x99\x4c\
\x94\xf7\x4b\x55\xd5\xa0\xdb\x82\xc0\x61\x69\x9a\x16\x65\x15\x23\
\xae\x6e\x0b\x74\x59\x58\xb6\x6d\x2b\x8a\x12\xfd\xcd\x12\x42\x98\
\xa6\x49\x5f\x6e\xb0\xb0\x42\x6c\x4b\xbd\x29\x8a\x52\xa9\x54\x82\
\xbd\x54\xcc\xba\x29\xac\xb8\xaa\x72\x09\x21\xe8\x6f\x56\x80\xb0\
\x62\xaf\xca\x25\xcb\x72\x5b\x6d\xb7\xba\x26\xac\x78\xab\x72\x29\
\x8a\x42\x5c\x3a\x35\xac\x18\xf7\x80\x0d\x57\xb7\x7d\xda\xea\x9a\
\xb0\x22\x1e\x57\x35\xa3\xeb\x3a\x65\xe9\xa4\xb0\x88\xaf\x75\x14\
\xe9\x74\x3a\xda\xcb\x18\x9b\xee\x08\x8b\xef\x2d\x23\x6e\xb4\xfc\
\x2f\xe9\x38\x8e\x33\x37\x37\xc7\xb4\x96\x3b\xee\xdf\xbf\xff\xf1\
\xe3\x47\xee\xa5\xfc\x3d\x9e\x3d\x7b\xc6\x34\xe7\xb5\xb5\xb5\x6a\
\xb5\xea\x3f\x9d\x6f\x7a\x41\x77\x82\xb2\x2c\x67\x32\x19\x4d\xd3\
\xd2\xe9\xb4\x10\x22\xd0\x1f\x46\xfe\xa0\x42\xad\x56\xab\x55\x2a\
\x15\xca\x0b\x9e\xc9\x64\x0c\xc3\xa8\xd5\x6a\xb6\x6d\x17\x8b\x45\
\x55\x55\x89\xef\x14\x65\x6f\xe8\x13\x96\x6d\xdb\x81\xe2\xa8\x3b\
\x3b\x65\xdb\x76\x2a\x95\xa2\xff\x39\x71\xff\x0d\xde\x28\x47\x57\
\x0d\xcf\x1d\x10\xdf\x2c\xca\x61\x80\x4f\x58\xd9\x6c\x36\x7a\x16\
\xf4\x8f\x42\xc3\x8d\x16\xf1\xcf\x1b\xfc\x6f\x04\x7b\x5f\xa3\x70\
\xc7\x58\xb1\x1f\xd3\x44\x39\x86\xf3\xfd\x32\xd8\x6c\xe6\xb6\x6d\
\xc7\xb5\x6e\x3e\xc7\x58\x4f\x9f\x3e\x25\xbe\x10\xaa\xaa\x8e\x8f\
\x8f\x37\xfc\xd5\xcd\x9b\x37\x89\x33\x29\x14\x0a\x96\x65\x11\x27\
\x86\x66\xe6\xe6\xe6\x34\x4d\x4b\xa5\x52\xcd\x0a\x3b\x77\xee\x5c\
\xc3\x9f\x27\x12\x09\xfa\x56\xc0\x9b\xd7\x45\x68\xcb\xb2\x0a\x85\
\x02\x71\x46\x1e\xf5\x24\x93\x49\x45\x51\xbc\xaf\x7a\xee\x78\xf3\
\xe6\xcd\xf5\xeb\xd7\x89\x0b\x85\x86\xea\x3e\xe1\x96\x65\xd9\xb6\
\xbd\xb9\xb9\xf9\xe3\xc7\x0f\xf7\x73\xdb\x6c\x1c\x80\xe3\x38\x2f\
\x5e\xbc\xf0\x9d\x7f\x4f\x4f\x8f\xef\x34\x5e\x61\x7d\xf9\xf2\xc5\
\xf7\xef\x5d\xb2\x2c\x7b\x5f\x06\x9f\x99\x99\x21\x86\x45\x5f\x28\
\x10\x0d\x0c\x0c\x48\x92\x44\x19\xa7\xf0\xf6\xed\x5b\xca\x0c\x47\
\x46\x46\x7c\xa7\xf1\xda\x15\x6e\x6c\x6c\x50\x16\x23\x49\xd2\xe4\
\xe4\xa4\xf7\x04\x43\x43\x43\xc4\x59\x51\x3e\x31\xc0\xa1\x5a\xad\
\x52\x8e\x7c\x64\x59\x76\x4b\xf5\xe6\xb5\xc5\x5a\x5f\x5f\x27\xae\
\xd3\xe1\xc3\x87\xbd\x27\x18\x1c\x1c\x24\xce\x4a\x92\x24\xcb\xb2\
\x28\xab\x0e\xe1\xe4\xf3\xf9\x9f\x3f\x7f\xd6\xfd\xd0\x30\x8c\xc5\
\xc5\x45\xca\x9f\x3f\x7c\xf8\x90\x32\x99\x57\x58\xf4\x03\xac\x13\
\x27\x4e\x78\x4f\x10\x68\x70\x1f\xf1\xbb\x09\x84\xf3\xea\xd5\xab\
\xd0\xbb\x05\x8f\xaf\x68\x75\x9a\xee\x0a\xdd\x71\xc6\x31\xa2\x0f\
\xe1\xda\x3d\xb8\xf9\xef\x24\x84\x98\x98\x98\xd8\xef\xb5\xa8\xa7\
\x28\xca\xd2\xd2\x12\x71\xe2\x78\xee\xd2\xa1\xec\xe9\x8e\x1d\x3b\
\x16\xcb\xb2\xda\x53\x32\x99\xf4\x3d\xb5\x43\xbf\x2a\x9c\xcb\xe5\
\xda\xed\x2e\x01\x55\x55\x57\x56\x56\xe8\x7b\x9e\x78\x6e\xa6\xc0\
\x30\x76\x5f\xf9\x7c\xfe\xc6\x8d\x1b\x94\x29\xb3\xd9\x6c\xf8\x91\
\xe6\x0c\x84\x10\xb9\x5c\x2e\xe8\x2a\xe1\xbe\xc2\x56\xb0\x2c\xeb\
\xda\xb5\x6b\x94\x29\xd3\xe9\xf4\xd4\xd4\x14\xf7\xfa\x04\x52\x2e\
\x97\xa7\xa6\xa6\x56\x57\x57\x1d\xc7\xa1\xff\x15\xc2\x62\xe7\x38\
\xce\xdd\xbb\x77\xcb\xe5\xb2\xef\x94\x8a\xa2\xdc\xba\x75\xab\x05\
\xab\x14\x54\xb9\x5c\x9e\x99\x99\x39\x7d\xfa\x34\xfd\xba\x48\xeb\
\xc2\xca\xe7\xf3\x2d\x5b\x56\x5b\x59\x58\x58\xa0\x9c\x1c\x16\x42\
\x3c\x79\xf2\xa4\x9d\x0f\x2a\x0a\x85\xc2\xe0\xe0\x20\x71\x74\x53\
\x3c\x61\x51\x36\x92\x94\x8f\xac\xab\xbf\xbf\x3f\xda\xea\xb4\x91\
\x5c\x2e\x47\x3c\x3f\xf4\xf2\xe5\xcb\x8e\x38\x7b\x77\xe1\xc2\x05\
\xca\x78\xac\xa6\x07\xef\x81\x4e\x69\x9a\xa6\x19\xe3\xf1\x66\x5f\
\x5f\x5f\x5c\xb3\xda\x5f\xa5\x52\xe9\xec\xd9\xb3\x94\x29\x35\x4d\
\x1b\x1d\x1d\x65\x5e\x9d\xff\x1b\x19\x19\xd9\x7b\xa5\xf9\xd7\xaf\
\x5f\xc4\x6b\x6e\xe5\x72\xf9\xc1\x83\x07\xcb\xcb\xcb\x3e\xd3\x79\
\x7c\x3d\xa6\xaf\xab\x3b\x5e\xcc\x03\x71\xe8\x99\xab\xee\x56\x90\
\x8e\x18\x36\xb3\x17\x7d\x28\x5b\x2a\x95\xf2\x9e\x55\x6b\x54\x2a\
\x15\xfa\xcd\x17\xbe\xb7\xeb\x78\xed\x0a\xe9\x23\x28\x7c\x4f\x69\
\xd2\xc3\x12\x42\xb4\xdb\x29\x9c\x70\x66\x67\x67\x29\x7b\x7f\x59\
\x96\xe7\xe7\xe7\x5b\xb0\x3e\xbe\x7a\x7b\x7b\x57\x56\x56\x88\x6f\
\xba\xef\xe5\x3e\xaf\xb0\x28\x17\xb1\x5d\xbe\x9f\x72\xfa\xc9\xf4\
\xe9\xe9\x69\xe2\x94\xed\xec\xf9\xf3\xe7\xc4\x03\xf6\x40\x67\x1d\
\x43\xb3\x2c\xab\x54\x2a\xe5\x72\xb9\xd5\xd5\x55\x8f\xc9\x12\x89\
\xc4\xe5\xcb\x97\x29\x33\xf4\x1d\xa0\xe0\x75\x82\xf4\xe4\xc9\x93\
\x94\x65\x48\x92\xb4\xb8\xb8\x38\x3f\x3f\xef\xf1\x02\xd1\x07\x58\
\x8e\x8d\x8d\x11\xa7\x6c\x5b\xf4\x73\xa1\xcb\xcb\xcb\xf1\x1e\xb0\
\x57\xab\xd5\x4a\xa5\xf2\xed\xdb\xb7\xdf\xbf\x7f\x1b\x86\xb1\xbd\
\xbd\x9d\xcf\xe7\xeb\x36\x9c\x13\x13\x13\x1e\xfb\x84\xd1\xd1\x51\
\x21\x84\xef\xb6\x76\x7b\x7b\xdb\x67\x55\xbc\xf7\x94\xf4\x01\xef\
\x1e\xc3\xd5\xa3\x1c\x60\xd5\x3a\xed\x18\xcb\x34\x4d\xe2\x8b\x96\
\xc9\x64\xbc\x5f\xfc\x10\x74\x5d\x0f\xbd\xe6\x3b\x28\x57\x75\x55\
\x55\xf5\x9e\x89\xcf\xe9\x86\x2b\x57\xae\x50\x5e\x23\x49\x92\x1e\
\x3f\x7e\xdc\xec\xa4\xc3\xeb\xd7\xaf\x89\x33\x51\x55\x35\xae\x03\
\xac\x7d\x19\xe2\x4c\x3f\x17\xaa\xaa\x2a\xc7\x40\x59\xca\xf6\xfe\
\xd1\xa3\x47\x1e\xa7\x87\xaa\xd5\x2a\x7d\x54\x8b\x07\x9f\xb0\xae\
\x5e\xbd\x4a\x9c\x51\xa1\x50\x98\x9d\x9d\xdd\xbb\xc6\xf4\xfd\x82\
\x24\x49\xe7\xcf\x9f\x27\x4e\xb9\x57\xdd\x70\x8c\x0f\x1f\x3e\x84\
\x9e\x55\x68\xc4\x73\xa1\xb2\x2c\xd3\x87\x09\x04\x42\x19\xb4\x5e\
\x2e\x97\x17\x16\x16\x9a\xfd\x96\x7e\x97\x83\x0f\xdf\xad\x6b\xa0\
\x47\x36\xc8\xb2\x9c\xcd\x66\x0d\xc3\x30\x0c\x43\xd7\xf5\x40\x23\
\xf3\x9b\xdd\x62\x4b\x9c\xc9\xee\x3d\x8b\x61\x18\xc4\xfd\x51\x8c\
\xbb\x42\xfa\x1d\x4d\x81\x1e\xdb\x12\x14\x65\x6f\x28\x49\x92\xaa\
\xaa\x75\x27\x89\x4c\xd3\xa4\xbf\x5f\xbe\xfb\x71\xff\xb0\x02\x1d\
\x21\x45\xd1\xec\x64\x18\xbd\x6c\x21\x44\x26\x93\x09\x74\x27\x63\
\x5c\x61\x51\x1e\x5b\xea\x6a\xc1\xbd\x93\xf4\xa1\x6f\xb2\x2c\xab\
\xaa\xaa\xaa\x6a\xd0\x07\x9e\xf9\xfe\x17\xa4\x67\x37\x04\xba\xbb\
\x30\x1c\x8f\x4f\x00\xeb\xf3\x48\x62\x09\x2b\xe8\x6d\xbd\x44\x94\
\xb7\xa6\x21\xe2\x46\x2b\x34\x21\x84\xef\x43\x5c\x48\xd7\x0a\xa7\
\xa6\xa6\x02\x6d\x06\x82\x52\x14\xe5\xd2\xa5\x4b\xcd\x7e\x4b\xb9\
\xd9\x68\x7f\x99\xa6\x49\xbf\x12\xda\x02\xe3\xe3\xe3\xb1\x3f\xc0\
\x68\xb7\xdb\xb7\x6f\xfb\x9f\x7b\x23\x7e\x08\x38\x1e\xb6\xe4\xf2\
\xcd\x9f\xbe\x97\x09\x21\x96\x2d\x16\xd3\xa3\x5d\x88\x6f\x4d\x43\
\x95\x4a\x85\x63\x23\x2a\xd1\x36\x57\x35\xe2\x16\x4b\x92\xa4\x44\
\x22\xb1\xb2\xb2\x12\x7b\x5b\xb2\x2c\xeb\xba\xee\x9d\xff\xc0\xc0\
\x40\xb8\x47\x9e\x32\xbd\xb2\x1d\xa1\xb7\xb7\x37\x97\xcb\x71\xcc\
\xd9\xf7\xfd\x72\x05\x18\x36\xe3\xb6\x15\xd7\x2d\xd8\xae\xb5\xb5\
\x35\xca\xa9\xe7\x3b\x77\xee\x84\x98\xb9\xff\x15\xf8\xae\x96\x4c\
\x26\x8b\xc5\x62\x8c\x9f\x2e\x21\x44\xb1\x58\xa4\x5e\x2a\x08\xb1\
\x99\x8d\xf1\x68\x5a\x51\x94\xbd\x5f\x7a\x1b\x6e\x69\x83\x6e\x2c\
\x75\x5d\xa7\xec\xa1\xba\x75\x57\xb8\xfb\xf5\x8c\x65\x3f\xa3\x28\
\x0a\xe3\xc3\x6d\x77\x84\x7b\x68\x38\x51\xc3\xf3\x0e\x81\x0e\xf2\
\xdc\x2f\xc3\x08\x6b\x87\xa6\x69\xa1\x37\x5d\xee\xe1\x4a\xd0\x25\
\x46\x3d\x42\xcc\x64\x32\x11\x9f\xf9\xbe\x97\xc7\xe8\x2e\xdf\x17\
\x28\x95\x4a\xed\x5c\x6d\x44\x58\xbb\xd9\xb6\xad\xeb\x7a\xa0\x6f\
\xf7\xa9\x54\x2a\xf4\x59\xb7\x7f\x6a\x41\x06\xf4\x35\x53\xad\x56\
\xbf\x7f\xff\xbe\xb5\xb5\xb5\xf3\x3c\x13\xd7\xc1\x83\x07\x87\x87\
\x87\x0b\x85\x42\xa0\x5b\x6f\x0d\xc3\xf0\x18\x8f\xea\x38\xce\xd7\
\xaf\x5f\x3f\x7f\xfe\xbc\xfb\xf1\x21\x23\x23\x23\x47\x8f\x1e\x3d\
\x7e\xfc\x78\x77\x8c\xe5\xe2\x56\x2a\x95\xdc\x81\x4c\x7b\x2f\x0b\
\xca\xb2\xdc\xd3\xd3\x33\x34\x34\x14\x71\x48\x70\x3c\x61\x79\xb3\
\x2c\x2b\xd0\x40\x67\xef\xb0\xa0\x23\xb4\xe2\x2e\x9d\xd0\xe7\x0b\
\xa0\x73\xb5\xe8\xf6\x2f\xe2\x23\x4a\xa0\x6b\xb4\x28\xac\xf1\xf1\
\xf1\x78\x4f\x80\x41\x9b\x6b\xdd\x0d\xab\x4b\x4b\x4b\xac\x17\xb0\
\xa0\xad\xb4\x2e\x2c\xf7\xc4\x7d\x94\x13\x2a\xd0\x41\x5a\xf1\xad\
\xb0\x8e\xe3\x38\x1b\x1b\x1b\x9f\x3e\x7d\xb2\x2c\x6b\xf7\x50\xff\
\x9d\x7d\xe5\xbd\x7b\xf7\x3a\xe2\x9e\x60\xf0\xb0\x0f\x61\xc1\xdf\
\x00\x4f\x9b\x01\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\
\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\
\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\
\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\
\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\
\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\
\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\
\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\
\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\
\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\
\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\
\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\
\x60\x81\xb0\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\
\x80\x05\xc2\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\
\x02\x16\x08\x0b\x58\x20\x2c\x60\x81\xb0\x80\x05\xc2\x02\x16\xff\
\x01\x49\xad\xab\xb8\x9d\x54\x17\x9e\x00\x00\x00\x00\x49\x45\x4e\
\x44\xae\x42\x60\x82\
\x00\x00\x0f\xc4\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\xc8\x00\x00\x00\xc8\x08\x02\x00\x00\x00\x22\x3a\x39\xc9\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
\x01\x00\x9a\x9c\x18\x00\x00\x06\x73\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\x36\x2d\x63\x31\x34\x32\x20\x37\x39\
\x2e\x31\x36\x30\x39\x32\x34\x2c\x20\x32\x30\x31\x37\x2f\x30\x37\
\x2f\x31\x33\x2d\x30\x31\x3a\x30\x36\x3a\x33\x39\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\
\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\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\x45\x76\x74\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\x45\x76\x65\x6e\x74\x23\x22\x20\x78\x6d\x6c\
\x6e\x73\x3a\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3d\x22\x68\x74\
\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\
\x6d\x2f\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x2f\x31\x2e\x30\x2f\
\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\
\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\
\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\x2f\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\
\x43\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x78\x6d\x70\
\x3a\x43\x72\x65\x61\x74\x65\x44\x61\x74\x65\x3d\x22\x32\x30\x31\
\x38\x2d\x30\x37\x2d\x30\x32\x54\x32\x32\x3a\x33\x33\x3a\x34\x33\
\x2b\x31\x30\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x65\x74\x61\
\x64\x61\x74\x61\x44\x61\x74\x65\x3d\x22\x32\x30\x31\x38\x2d\x30\
\x37\x2d\x30\x32\x54\x32\x32\x3a\x33\x33\x3a\x34\x33\x2b\x31\x30\
\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x6f\x64\x69\x66\x79\x44\
\x61\x74\x65\x3d\x22\x32\x30\x31\x38\x2d\x30\x37\x2d\x30\x32\x54\
\x32\x32\x3a\x33\x33\x3a\x34\x33\x2b\x31\x30\x3a\x30\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\x36\x64\x35\x36\x31\x65\
\x38\x34\x2d\x36\x35\x36\x62\x2d\x64\x61\x34\x34\x2d\x39\x31\x37\
\x37\x2d\x66\x63\x31\x66\x62\x35\x65\x39\x64\x37\x31\x38\x22\x20\
\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\
\x3d\x22\x61\x64\x6f\x62\x65\x3a\x64\x6f\x63\x69\x64\x3a\x70\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x61\x30\x38\x30\x36\x37\x62\x39\
\x2d\x31\x30\x35\x35\x2d\x35\x30\x34\x33\x2d\x61\x39\x31\x30\x2d\
\x62\x66\x37\x37\x63\x38\x66\x61\x62\x38\x34\x39\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\
\x31\x32\x33\x38\x64\x38\x32\x63\x2d\x31\x63\x65\x34\x2d\x34\x64\
\x34\x33\x2d\x39\x33\x66\x38\x2d\x38\x39\x65\x30\x31\x34\x38\x66\
\x62\x38\x30\x36\x22\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\
\x43\x6f\x6c\x6f\x72\x4d\x6f\x64\x65\x3d\x22\x33\x22\x20\x70\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x49\x43\x43\x50\x72\x6f\x66\x69\
\x6c\x65\x3d\x22\x73\x52\x47\x42\x20\x49\x45\x43\x36\x31\x39\x36\
\x36\x2d\x32\x2e\x31\x22\x20\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\
\x3d\x22\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x22\x3e\x20\x3c\x78\
\x6d\x70\x4d\x4d\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x72\
\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\
\x73\x74\x45\x76\x74\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x63\x72\
\x65\x61\x74\x65\x64\x22\x20\x73\x74\x45\x76\x74\x3a\x69\x6e\x73\
\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\
\x3a\x31\x32\x33\x38\x64\x38\x32\x63\x2d\x31\x63\x65\x34\x2d\x34\
\x64\x34\x33\x2d\x39\x33\x66\x38\x2d\x38\x39\x65\x30\x31\x34\x38\
\x66\x62\x38\x30\x36\x22\x20\x73\x74\x45\x76\x74\x3a\x77\x68\x65\
\x6e\x3d\x22\x32\x30\x31\x38\x2d\x30\x37\x2d\x30\x32\x54\x32\x32\
\x3a\x33\x33\x3a\x34\x33\x2b\x31\x30\x3a\x30\x30\x22\x20\x73\x74\
\x45\x76\x74\x3a\x73\x6f\x66\x74\x77\x61\x72\x65\x41\x67\x65\x6e\
\x74\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\
\x6f\x70\x20\x43\x43\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\
\x2f\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\x74\
\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x73\x61\x76\x65\x64\x22\x20\
\x73\x74\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\
\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x36\x64\x35\x36\x31\x65\
\x38\x34\x2d\x36\x35\x36\x62\x2d\x64\x61\x34\x34\x2d\x39\x31\x37\
\x37\x2d\x66\x63\x31\x66\x62\x35\x65\x39\x64\x37\x31\x38\x22\x20\
\x73\x74\x45\x76\x74\x3a\x77\x68\x65\x6e\x3d\x22\x32\x30\x31\x38\
\x2d\x30\x37\x2d\x30\x32\x54\x32\x32\x3a\x33\x33\x3a\x34\x33\x2b\
\x31\x30\x3a\x30\x30\x22\x20\x73\x74\x45\x76\x74\x3a\x73\x6f\x66\
\x74\x77\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\x41\x64\x6f\x62\
\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x43\x20\x28\
\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x73\x74\x45\x76\x74\x3a\
\x63\x68\x61\x6e\x67\x65\x64\x3d\x22\x2f\x22\x2f\x3e\x20\x3c\x2f\
\x72\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x2f\x78\x6d\x70\x4d\x4d\
\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x70\x68\x6f\x74\x6f\
\x73\x68\x6f\x70\x3a\x54\x65\x78\x74\x4c\x61\x79\x65\x72\x73\x3e\
\x20\x3c\x72\x64\x66\x3a\x42\x61\x67\x3e\x20\x3c\x72\x64\x66\x3a\
\x6c\x69\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x4c\x61\x79\
\x65\x72\x4e\x61\x6d\x65\x3d\x22\x51\x75\x69\x7a\x20\x31\x22\x20\
\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x4c\x61\x79\x65\x72\x54\
\x65\x78\x74\x3d\x22\x51\x75\x69\x7a\x20\x31\x22\x2f\x3e\x20\x3c\
\x2f\x72\x64\x66\x3a\x42\x61\x67\x3e\x20\x3c\x2f\x70\x68\x6f\x74\
\x6f\x73\x68\x6f\x70\x3a\x54\x65\x78\x74\x4c\x61\x79\x65\x72\x73\
\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\
\x92\xf4\x49\xb4\x00\x00\x08\xf7\x49\x44\x41\x54\x78\x9c\xed\xdd\
\x3f\x68\x13\xfd\x1f\xc0\xf1\xfa\xe3\x37\x05\x14\x1c\x52\xda\x41\
\x68\x39\x41\xa4\xa5\x41\x3a\x94\x0a\x71\x69\x45\x9c\x5a\x48\x11\
\x87\xb6\x08\x4a\x4a\x15\x74\xa8\x52\xdb\xa1\xfe\x19\x12\x0a\x4a\
\xa7\x08\x2d\xb8\x34\x75\xd1\x46\x92\x45\x04\x13\xa1\x46\x2c\x0a\
\x22\x62\x33\x49\xcc\x41\x17\x49\x46\xe9\xad\xfd\x0d\x81\xd2\x9f\
\xb5\x97\xcf\x5d\xef\x73\x49\xd3\xf7\x6b\x7c\xbc\x7c\xef\xfa\xf8\
\x7e\x9a\xcb\xf7\xbe\xdf\x3c\xc7\xb6\xb7\xb7\x5b\x00\xaf\xfd\xa7\
\xde\x17\x80\xe6\x44\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\
\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\
\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\
\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\
\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\
\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\
\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\
\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\
\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\
\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\
\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\
\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\
\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\x41\x58\x50\
\x41\x58\x50\x41\x58\x50\x41\x58\x50\xf1\xdf\x7a\x5f\x40\xc3\xb1\
\x2c\xab\x54\x2a\xd5\x3c\xac\xb5\xb5\x35\x18\x0c\xfa\x70\x3d\x87\
\x94\x97\x61\x15\x0a\x85\x96\x96\x96\x6f\xdf\xbe\xed\xfc\x93\xf6\
\xf6\xf6\xb6\xb6\xb6\xc3\xf5\x77\x50\x2a\x95\xba\xbb\xbb\x6b\x1e\
\x96\x4c\x26\x47\x47\x47\x7d\xb8\x1e\x6d\x99\x4c\xe6\xcf\x9f\x3f\
\xff\xfc\xa3\xf6\xf6\xf6\x81\x81\x01\x77\xc3\x1e\x34\xac\x42\xa1\
\xb0\xb6\xb6\xf6\xfe\xfd\xfb\x54\x2a\x65\x73\x98\x61\x18\x23\x23\
\x23\x17\x2f\x5e\xec\xef\xef\x0f\x04\x02\x07\x3c\x29\xbc\x92\xcb\
\xe5\x86\x87\x87\xf7\xfb\xd3\x68\x34\xea\x3a\xac\x96\x6d\xb7\xb2\
\xd9\x6c\x38\x1c\x76\x7a\x3a\xc3\x30\x92\xc9\xe4\xd6\xd6\x96\xeb\
\xf3\x6a\xdb\xd8\xd8\x90\xfc\x20\xc9\x64\xb2\xde\x57\x7a\x50\xd9\
\x6c\xd6\xfe\x67\x8c\x46\xa3\xae\x07\x77\x73\xf3\x5e\x28\x14\x2e\
\x5c\xb8\x30\x38\x38\x98\xcf\xe7\x9d\xbe\xb6\x58\x2c\x8e\x8d\x8d\
\xf5\xf4\xf4\x64\x32\x19\x17\xa7\x86\x57\x32\x99\xcc\xe0\xe0\xa0\
\xde\xf8\x8e\xc3\x5a\x59\x59\xe9\xee\xee\x76\x91\xd4\x6e\xc5\x62\
\x71\x78\x78\x78\x62\x62\xc2\xb2\xac\x83\x8c\x03\x17\x2a\x95\xca\
\xfd\xfb\xf7\x6d\xde\x01\x3d\xe1\x2c\xac\x78\x3c\x3e\x36\x36\xe6\
\xd5\xb9\x97\x96\x96\xc6\xc7\xc7\x2b\x95\x8a\x57\x03\xc2\x5e\xa5\
\x52\x89\xc7\xe3\xad\xad\xad\xf3\xf3\xf3\xda\xe7\x72\x70\xf3\x1e\
\x8f\xc7\x67\x67\x67\xbd\x3d\x7d\x2a\x95\x2a\x97\xcb\x6f\xdf\xbe\
\xe5\x8e\x5e\x8f\x65\x59\xeb\xeb\xeb\xef\xde\xbd\xf3\xa1\xa7\x1d\
\xd2\xb0\x56\x56\x56\x3c\xaf\xaa\x2a\x9f\xcf\x8f\x8f\x8f\x2f\x2f\
\x2f\xd3\x96\xe7\x56\x56\x56\xf2\xf9\xfc\xd2\xd2\x92\xff\xa7\x16\
\x85\x55\x28\x14\x3c\x7c\x07\xdc\x2b\x95\x4a\xf5\xf6\xf6\xce\xcc\
\xcc\xe8\x9d\xe2\x68\x52\xfd\x5b\xb3\x57\xfb\x1e\xcb\xb2\xac\xc9\
\xc9\x49\xed\xeb\x98\x9d\x9d\xfd\xfc\xf9\xb3\xf6\x59\xe0\x9b\xda\
\xbf\xb1\x5e\xbf\x7e\xed\xe8\x33\x60\x38\x1c\xbe\x7a\xf5\xea\x89\
\x13\x27\x36\x37\x37\x9f\x3f\x7f\x5e\x2c\x16\x85\x2f\xbc\x77\xef\
\xde\x87\x0f\x1f\xe4\x27\x52\xd2\xd5\xd5\xb5\xbd\xbd\x5d\xef\xab\
\x38\xfc\xec\xa7\xb9\xb6\xb6\xb6\x0c\xc3\x90\x8f\x96\x4e\xa7\xff\
\x7a\xf9\xf4\xf4\xb4\xfc\xe5\xd9\x6c\xd6\xf5\x8c\x1c\xf6\x72\x9e\
\xc3\xff\x39\xc8\x04\x69\x8d\xb0\xd2\xe9\xf4\xc1\xb3\x88\x46\xa3\
\xc2\x11\xc2\xe1\xb0\xeb\x97\xff\xe3\x67\x13\xd8\x3b\x81\xee\x6e\
\xe6\x5d\xf8\x2a\x39\x4f\x66\xf6\x0f\x78\x0d\x8a\x33\xef\x4f\x9f\
\x3e\x95\x5f\xc4\x7e\xcf\x95\x6e\xdf\xbe\x2d\x1c\x24\x9f\xcf\x9b\
\xa6\x29\x3c\x18\x8d\xcc\x2e\x2c\xd3\x34\xe5\x77\x57\x36\xf5\x74\
\x75\x75\x45\x22\x11\xe1\x38\x6f\xde\xbc\x11\x1e\x09\xd7\x22\x91\
\x88\x8b\xe7\xbc\x8e\xd8\x85\xf5\xfd\xfb\x77\xe1\x28\xe1\x70\xb8\
\xab\xab\xcb\xe6\x00\xf9\xe7\x5e\xf9\x49\xe1\x94\x61\x18\xb1\x58\
\xac\x54\x2a\xad\xae\xae\x9e\x3d\x7b\x56\xf5\x5c\x76\x9f\x0a\xd7\
\xd7\xd7\x85\xa3\x5c\xbe\x7c\xd9\xfe\x80\xd3\xa7\x4f\x0b\x87\x5a\
\x5a\x5a\x5a\x5c\x5c\x14\x1e\x0c\x89\xba\xac\x59\xb2\x0b\xeb\xd3\
\xa7\x4f\xc2\x51\x4e\x9d\x3a\x65\x7f\x40\x67\x67\xa7\xf4\x8a\x5a\
\x5a\x4c\xd3\xec\xe8\xe8\x90\x1f\x8f\xfd\xa4\xd3\xe9\x50\x28\x54\
\x97\x7f\x99\x76\x61\xc9\x6f\xb0\xce\x9d\x3b\x67\x7f\x80\xa3\xff\
\x50\xb6\xb6\xb6\xe4\x07\xc3\xc6\xd0\xd0\x50\xbd\x4e\xbd\xef\x3d\
\x56\x75\x9d\xb1\x87\xe4\x77\x8b\xbb\x17\x37\x1f\x4d\x86\x61\x5c\
\xba\x74\xa9\xde\x57\x71\x20\xde\xec\xd2\x91\xbc\xd3\x69\xdf\x2d\
\xd6\x57\x75\xbe\xde\x5e\x22\x91\x10\x8e\x96\xc9\x64\x0e\xd1\x2e\
\x81\x7f\xf2\x26\x2c\x16\x26\xd4\x94\xcb\xe5\x6e\xdd\xba\x25\x39\
\x32\x9d\x4e\xdb\x7f\xc4\x3e\x14\xd8\x57\xe8\x07\xd3\x34\x27\x26\
\x26\x24\x47\xc6\x62\xb1\x3a\xde\x18\x79\x88\xb0\xd4\x59\x96\x75\
\xf7\xee\x5d\xc9\xc3\xf8\x48\x24\x72\xe7\xce\x1d\x1f\x2e\xc9\x07\
\xfe\x85\x95\xcb\xe5\x7c\x3b\x57\x43\x79\xfc\xf8\xb1\xfd\xde\xb8\
\x2a\xc3\x30\x9e\x3c\x79\xd2\x34\x37\x15\xde\x84\x25\xd9\x13\x21\
\x5f\x3f\xd3\xde\xde\x7e\xb0\xcb\x69\x20\x99\x4c\x46\xb8\x20\xf8\
\xc5\x8b\x17\xcd\x34\x7b\xb7\x6f\x58\x8e\xa6\x34\x25\x7b\xd2\xe5\
\xda\xda\xda\x3c\x1c\xad\x8e\x0a\x85\x82\x70\x33\x4c\x32\x99\xec\
\xeb\xeb\x53\xbe\x1c\x5f\xed\x1b\x96\xb7\xbf\x93\x1d\x6d\xc5\x69\
\x6d\x6d\xf5\xf0\xd4\xf5\x62\x59\x96\xf0\x36\x7c\x7a\x7a\xba\x39\
\x76\xeb\xef\x66\xf7\x56\x28\x5f\x47\x55\x73\x4a\xb3\x5c\x2e\x0b\
\x87\x32\x0c\xe3\xb0\x4f\xe1\x54\x8d\x8f\x8f\x4b\xde\xfd\xc3\xe1\
\xf0\xdc\xdc\x9c\x0f\xd7\xe3\x33\xbb\xb0\x42\xa1\x90\x70\x94\x9a\
\xcb\xdc\xe4\x93\xe9\x23\x23\x23\xc2\x23\x1b\xd9\xb3\x67\xcf\x84\
\x37\xec\xcd\xba\x3d\xc9\x2e\xac\xde\xde\x5e\xe1\x28\xf3\xf3\xf3\
\xf6\xf7\xef\xf2\x05\x96\xfd\xfd\xfd\xc2\x23\x1b\x96\x7c\x2e\x74\
\x71\x71\xb1\x99\x6e\xd8\x77\xb3\x0b\xab\xaf\xaf\x4f\xbe\xe0\xdd\
\x66\x8d\x4d\xa5\x52\x91\x6f\x95\x3c\x7f\xfe\xbc\xf0\xc8\xc6\x24\
\x9f\x0b\x4d\x24\x12\xee\xbf\xcb\xa5\xe1\xd5\x98\x6e\xb8\x7e\xfd\
\xba\x70\xa0\x47\x8f\x1e\xed\xf7\x4b\xeb\xd5\xab\x57\xc2\x41\xa2\
\xd1\xa8\x57\x37\x58\x75\x59\xe2\x2c\x9f\x0b\x8d\x46\xa3\x37\x6f\
\xde\xf4\xe1\x92\xea\xa5\x46\x58\x37\x6e\xdc\x10\x0e\x54\xdd\xd0\
\xbc\xb7\x2d\xf9\xfb\x42\x4b\x4b\xcb\x95\x2b\x57\x84\x47\xee\xf5\
\xd7\x72\x8c\x8f\x1f\x3f\xba\x1e\xca\x35\xe1\x5c\x68\x38\x1c\x5e\
\x58\x58\xf0\xe1\x7a\xea\xa8\xc6\xbe\xc2\x60\x30\x18\x8b\xc5\x84\
\x9b\xeb\xab\x5f\xc4\x30\x35\x35\x55\x5d\x2f\xfa\xfb\xf7\xef\x97\
\x2f\x5f\xca\xf7\x77\x47\x22\x91\x83\xbc\x35\xac\xad\xad\xed\x3c\
\xbb\x2d\x14\x0a\x0f\x1f\x3e\x74\x3d\x94\x3b\xf2\xb9\x50\x1f\x6e\
\xd8\x4d\xd3\x8c\xc7\xe3\x36\x07\x48\x1e\x84\xe4\x72\x39\x9b\xb7\
\xf5\x50\x28\x64\xf7\x4b\xb7\xe6\x62\x0f\xf9\x4c\xc1\x01\x6d\x6c\
\x6c\xfc\xf3\x02\x62\xb1\x98\x70\x04\xc3\x30\x12\x89\x84\xa3\x9d\
\x8c\x5e\x6d\xff\x92\x4f\x11\xfb\xb3\x77\xd2\xf3\xed\x68\x7b\xd9\
\x6f\x0e\xab\xbd\x13\x3a\x18\x0c\xa6\xd3\x69\xed\xaf\x53\x4a\x24\
\x12\xfb\xad\x15\xa9\xb9\xee\x79\x47\xb1\x58\x94\xbf\xed\x7a\xc8\
\xb2\x2c\xf9\x97\x98\xc9\x8f\xdc\x3e\xcc\x1b\xb2\x45\xcf\x0a\x87\
\x86\x86\x1c\xfd\x1a\x70\x2a\x12\x89\x5c\xbb\x76\x6d\xbf\x3f\x3d\
\x7e\xfc\xb8\xde\xa9\x3d\x51\x2a\x95\xe4\x4f\x42\x8f\x08\xe9\x43\
\xe8\xb9\xb9\x39\xf9\xde\x40\x47\x6a\x4e\x12\xca\xe7\x69\xd1\x38\
\xa4\x61\x05\x02\x81\xe5\xe5\x65\xcf\xdb\x0a\x87\xc3\xd9\x6c\xd6\
\xfe\x4e\xb6\xa3\xa3\xc3\xdd\xee\x4a\x47\xdf\x3a\x01\x6f\x39\x58\
\x36\x53\x6d\x4b\xfe\x00\x51\x22\x95\x4a\x49\xa6\x9e\xa7\xa6\xa6\
\x5c\x0c\xce\xfe\xc4\x3a\x72\xb6\x1e\x2b\x10\x08\x2c\x2e\x2e\x26\
\x93\x49\xaf\x4e\x3f\x39\x39\xf9\xd7\xfc\x93\x69\x9a\x7b\x27\xc3\
\x86\x86\x86\x9c\xfe\xb2\xcc\x66\xb3\x4d\xb3\xfc\xe6\x30\x72\xb3\
\xd0\x6f\x74\x74\xb4\x5c\x2e\xcb\x67\x01\x6c\xa4\x52\xa9\xee\xee\
\xee\x63\xbb\x74\x76\x76\xfe\xf3\xa3\xbb\xa3\x37\xe2\x6c\x36\xdb\
\xc4\x4f\x4b\x0e\x05\x97\x2b\x48\x83\xc1\xe0\xcc\xcc\x4c\xb9\x5c\
\x4e\x24\x12\xda\x5f\x2f\x51\x15\x08\x04\x56\x57\x57\x93\xc9\xa4\
\xfd\x9d\xd3\xf4\xf4\x74\xb9\x5c\xa6\xaa\xba\x3b\xe6\xc9\x64\x49\
\xa5\x52\xf9\xf5\xeb\xd7\xcf\x9f\x3f\x37\x37\x37\x77\x3f\xa4\x3b\
\x79\xf2\x64\xf5\x4b\xe1\x1d\x7d\xbf\xea\xc6\xc6\x86\xcd\xfe\x27\
\xcb\xb2\x7e\xfc\xf8\xf1\xf5\xeb\xd7\xdd\x5f\x1f\x12\x0a\x85\xce\
\x9c\x39\xd3\xd3\xd3\xd3\x1c\x6b\xb9\x9a\x80\x37\x61\xd9\x33\x4d\
\xd3\xd1\x42\x67\xfb\xb0\x70\x28\xf8\xb1\x4b\xc7\xf5\x7c\x01\x0e\
\x2f\x9f\xb6\x7f\x3d\x78\xf0\xc0\x9f\x13\xa1\x41\xf8\x14\xd6\xc0\
\xc0\x80\xb7\x13\x60\x68\x70\xfe\x6d\x58\x5d\x58\x58\x50\x7a\x28\
\x84\x06\xe4\x5f\x58\xd5\x89\xfb\x9a\xf3\x05\x68\x0e\x7e\x7c\x2a\
\xfc\x4b\xf5\xff\x19\xf4\xe5\xcb\x17\xd3\x34\x73\xb9\xdc\xce\xba\
\x80\x9d\xf7\xca\x99\x99\x99\x66\xdd\x62\x70\x74\xd4\x21\x2c\x1c\
\x05\x7c\xdb\x0c\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\
\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\
\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\
\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\
\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\
\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\
\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\
\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\
\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\
\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\
\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\
\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\
\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\
\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\x10\x16\x54\xfc\x0f\x44\
\xcd\x06\x1a\xb9\x11\x21\x9f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\
\x42\x60\x82\
\x00\x00\x10\xc7\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\xc8\x00\x00\x00\xc8\x08\x02\x00\x00\x00\x22\x3a\x39\xc9\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
\x01\x00\x9a\x9c\x18\x00\x00\x06\x73\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\x36\x2d\x63\x31\x34\x32\x20\x37\x39\
\x2e\x31\x36\x30\x39\x32\x34\x2c\x20\x32\x30\x31\x37\x2f\x30\x37\
\x2f\x31\x33\x2d\x30\x31\x3a\x30\x36\x3a\x33\x39\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\
\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\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\x45\x76\x74\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\x45\x76\x65\x6e\x74\x23\x22\x20\x78\x6d\x6c\
\x6e\x73\x3a\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3d\x22\x68\x74\
\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\
\x6d\x2f\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x2f\x31\x2e\x30\x2f\
\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\
\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\
\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\x2f\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\
\x43\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x78\x6d\x70\
\x3a\x43\x72\x65\x61\x74\x65\x44\x61\x74\x65\x3d\x22\x32\x30\x31\
\x38\x2d\x30\x37\x2d\x30\x32\x54\x32\x32\x3a\x33\x34\x3a\x30\x35\
\x2b\x31\x30\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x65\x74\x61\
\x64\x61\x74\x61\x44\x61\x74\x65\x3d\x22\x32\x30\x31\x38\x2d\x30\
\x37\x2d\x30\x32\x54\x32\x32\x3a\x33\x34\x3a\x30\x35\x2b\x31\x30\
\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x6f\x64\x69\x66\x79\x44\
\x61\x74\x65\x3d\x22\x32\x30\x31\x38\x2d\x30\x37\x2d\x30\x32\x54\
\x32\x32\x3a\x33\x34\x3a\x30\x35\x2b\x31\x30\x3a\x30\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\x39\x61\x32\x34\x65\x62\
\x31\x62\x2d\x36\x34\x65\x33\x2d\x64\x63\x34\x31\x2d\x38\x66\x35\
\x65\x2d\x31\x62\x38\x39\x63\x63\x31\x30\x34\x30\x64\x65\x22\x20\
\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\
\x3d\x22\x61\x64\x6f\x62\x65\x3a\x64\x6f\x63\x69\x64\x3a\x70\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x63\x37\x34\x34\x62\x62\x64\x36\
\x2d\x35\x36\x63\x38\x2d\x38\x35\x34\x61\x2d\x62\x30\x31\x38\x2d\
\x63\x37\x36\x39\x34\x39\x30\x34\x35\x32\x61\x36\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\
\x32\x62\x31\x61\x33\x65\x61\x34\x2d\x31\x61\x34\x63\x2d\x36\x66\
\x34\x32\x2d\x62\x31\x62\x61\x2d\x35\x35\x39\x39\x37\x34\x30\x31\
\x66\x37\x38\x39\x22\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\
\x43\x6f\x6c\x6f\x72\x4d\x6f\x64\x65\x3d\x22\x33\x22\x20\x70\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x49\x43\x43\x50\x72\x6f\x66\x69\
\x6c\x65\x3d\x22\x73\x52\x47\x42\x20\x49\x45\x43\x36\x31\x39\x36\
\x36\x2d\x32\x2e\x31\x22\x20\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\
\x3d\x22\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x22\x3e\x20\x3c\x78\
\x6d\x70\x4d\x4d\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x72\
\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\
\x73\x74\x45\x76\x74\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x63\x72\
\x65\x61\x74\x65\x64\x22\x20\x73\x74\x45\x76\x74\x3a\x69\x6e\x73\
\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\
\x3a\x32\x62\x31\x61\x33\x65\x61\x34\x2d\x31\x61\x34\x63\x2d\x36\
\x66\x34\x32\x2d\x62\x31\x62\x61\x2d\x35\x35\x39\x39\x37\x34\x30\
\x31\x66\x37\x38\x39\x22\x20\x73\x74\x45\x76\x74\x3a\x77\x68\x65\
\x6e\x3d\x22\x32\x30\x31\x38\x2d\x30\x37\x2d\x30\x32\x54\x32\x32\
\x3a\x33\x34\x3a\x30\x35\x2b\x31\x30\x3a\x30\x30\x22\x20\x73\x74\
\x45\x76\x74\x3a\x73\x6f\x66\x74\x77\x61\x72\x65\x41\x67\x65\x6e\
\x74\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\
\x6f\x70\x20\x43\x43\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\
\x2f\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\x74\
\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x73\x61\x76\x65\x64\x22\x20\
\x73\x74\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\
\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x39\x61\x32\x34\x65\x62\
\x31\x62\x2d\x36\x34\x65\x33\x2d\x64\x63\x34\x31\x2d\x38\x66\x35\
\x65\x2d\x31\x62\x38\x39\x63\x63\x31\x30\x34\x30\x64\x65\x22\x20\
\x73\x74\x45\x76\x74\x3a\x77\x68\x65\x6e\x3d\x22\x32\x30\x31\x38\
\x2d\x30\x37\x2d\x30\x32\x54\x32\x32\x3a\x33\x34\x3a\x30\x35\x2b\
\x31\x30\x3a\x30\x30\x22\x20\x73\x74\x45\x76\x74\x3a\x73\x6f\x66\
\x74\x77\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\x41\x64\x6f\x62\
\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x43\x20\x28\
\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x73\x74\x45\x76\x74\x3a\
\x63\x68\x61\x6e\x67\x65\x64\x3d\x22\x2f\x22\x2f\x3e\x20\x3c\x2f\
\x72\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x2f\x78\x6d\x70\x4d\x4d\
\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x70\x68\x6f\x74\x6f\
\x73\x68\x6f\x70\x3a\x54\x65\x78\x74\x4c\x61\x79\x65\x72\x73\x3e\
\x20\x3c\x72\x64\x66\x3a\x42\x61\x67\x3e\x20\x3c\x72\x64\x66\x3a\
\x6c\x69\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x4c\x61\x79\
\x65\x72\x4e\x61\x6d\x65\x3d\x22\x51\x75\x69\x7a\x20\x32\x22\x20\
\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x4c\x61\x79\x65\x72\x54\
\x65\x78\x74\x3d\x22\x51\x75\x69\x7a\x20\x32\x22\x2f\x3e\x20\x3c\
\x2f\x72\x64\x66\x3a\x42\x61\x67\x3e\x20\x3c\x2f\x70\x68\x6f\x74\
\x6f\x73\x68\x6f\x70\x3a\x54\x65\x78\x74\x4c\x61\x79\x65\x72\x73\
\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\
\x02\xe7\x4e\xe3\x00\x00\x09\xfa\x49\x44\x41\x54\x78\x9c\xed\xdd\
\x41\x68\xd3\xfe\x1f\xc6\xf1\xf8\xe7\x77\xea\x50\xf0\xb0\xb1\x1d\
\x84\x8e\x08\x22\x2d\x1b\xc3\x83\xec\x90\xd3\x36\x44\x0f\x6e\x90\
\x21\x82\x73\x08\x4a\xc7\x14\xf4\xa0\x50\xb6\xc3\x04\x0f\x95\x81\
\xb2\x53\x07\x13\xbd\x2c\xdb\x45\x36\xe8\x2e\x9e\x32\x41\x3b\x36\
\x2b\x88\x38\xdb\x83\x8c\xd9\xc0\x6e\xed\xd5\xe6\xba\xff\xa1\x30\
\xc6\xd6\x26\x9f\xa4\x79\xb2\xae\x7b\x5e\x37\x35\x4d\xb2\xe6\xbd\
\x24\x4d\xbf\x89\xe7\xf6\xf7\xf7\x15\xa2\xa0\xfd\xef\xa4\x57\x80\
\x5a\x13\xc3\x22\x08\x86\x45\x10\x0c\x8b\x20\x18\x16\x41\x30\x2c\
\x82\x60\x58\x04\xc1\xb0\x08\x82\x61\x11\x04\xc3\x22\x08\x86\x45\
\x10\x0c\x8b\x20\x18\x16\x41\x30\x2c\x82\x60\x58\x04\xc1\xb0\x08\
\x82\x61\x11\x04\xc3\x22\x08\x86\x45\x10\x0c\x8b\x20\x18\x16\x41\
\x30\x2c\x82\x60\x58\x04\xc1\xb0\x08\x82\x61\x11\x04\xc3\x22\x08\
\x86\x45\x10\x0c\x8b\x20\x18\x16\x41\x30\x2c\x82\x60\x58\x04\xc1\
\xb0\x08\x82\x61\x11\x04\xc3\x22\x08\x86\x45\x10\x0c\x8b\x20\x18\
\x16\x41\x30\x2c\x82\x60\x58\x04\xc1\xb0\x08\x82\x61\x11\x04\xc3\
\x22\x08\x86\x45\x10\x0c\x8b\x20\x18\x16\x41\x30\x2c\x82\x60\x58\
\x04\xc1\xb0\x08\x82\x61\x11\x04\xc3\x22\x08\x86\x45\x10\x0c\x8b\
\x20\x18\x16\x41\x30\x2c\x82\x60\x58\x04\xc1\xb0\x08\x82\x61\x11\
\x04\xc3\x22\x08\x86\x45\x10\x0c\x8b\x20\x18\x16\x41\x30\x2c\x82\
\x60\x58\x04\xc1\xb0\x08\x82\x61\x11\x04\xc3\x22\x08\x86\x45\x10\
\x0c\x8b\x20\x18\x16\x41\x30\x2c\x82\x60\x58\x04\xc1\xb0\x08\xe2\
\xbf\x93\x5e\x81\xa6\x63\xdb\x76\xb1\x58\x74\x9d\xac\xa3\xa3\xa3\
\xbd\xbd\x3d\x84\xf5\x39\xa5\x82\x0c\xab\x50\x28\x28\x8a\xf2\xf3\
\xe7\xcf\x83\xbf\xe9\xea\xea\xea\xec\xec\x3c\x5d\xdb\xa0\x58\x2c\
\xc6\xe3\x71\xd7\xc9\x0c\xc3\x18\x1b\x1b\x0b\x61\x7d\x70\x0a\x85\
\xc2\xbf\x7f\xff\x76\x76\x76\x0e\xfe\xa6\xaf\xaf\xaf\xad\xad\x2d\
\x1a\x8d\x36\x3e\xf3\x46\xc3\x2a\x14\x0a\x5f\xbe\x7c\xf9\xfc\xf9\
\xf3\xea\xea\xaa\xc3\x64\xaa\xaa\x8e\x8e\x8e\x0e\x0d\x0d\xf5\xf7\
\xf7\x47\x22\x91\x06\x17\x4a\xbe\x95\xcb\xe5\xcd\xcd\x4d\xc3\x30\
\x9c\xb7\x57\x22\x91\xb8\x75\xeb\xd6\xd0\xd0\x90\xff\x8d\xb5\xef\
\x97\x69\x9a\x9a\xa6\x79\x5d\x9c\xaa\xaa\x86\x61\x54\x2a\x15\xdf\
\xcb\x45\xcb\xe7\xf3\x92\x1f\xc4\x30\x8c\x93\x5e\x53\x6f\x4a\xa5\
\x52\x2a\x95\xf2\xba\xb1\xd2\xe9\xb4\xbf\x8d\xe5\x27\xac\x7c\x3e\
\xef\x23\xa9\x23\x6b\x9c\xc9\x64\x7c\x2c\x3a\x04\x2d\x19\x96\x61\
\x18\x8d\x6c\xac\x6f\xdf\xbe\x79\x5d\xa2\xe7\xb0\x1a\x59\xc5\x23\
\x12\x89\x44\x13\xee\xba\x5a\x2c\xac\x4a\xa5\x92\x48\x24\x1a\xdf\
\x58\x5e\x7f\x5e\x6f\x61\x79\xdd\x97\xba\xd2\x75\xbd\x54\x2a\x79\
\x5a\x07\xb4\x56\x0a\xab\x52\xa9\xe8\xba\x1e\xd4\xc6\xf2\xf4\x23\
\x7b\x08\x2b\xf0\xaa\xaa\x34\x4d\x6b\xaa\xfd\x56\x2b\x85\x15\xc8\
\xbe\xea\x30\xf9\x31\x51\x1a\x56\x80\x47\xc0\xe3\x74\x5d\x6f\x9e\
\xb6\x5a\x26\x2c\xc4\x26\x53\x55\x55\xb8\xa5\x44\x61\x09\xdf\xeb\
\x46\xa4\x52\xa9\xc6\xde\xc6\xc0\xb4\x46\x58\xa5\x52\x09\xb4\xa5\
\x84\x3f\xb8\xfb\x57\x3a\xb6\x6d\x4f\x4e\x4e\x82\xd6\xf2\xc0\xf4\
\xf4\x74\x2e\x97\x43\x2f\xe5\xec\x78\xff\xfe\x3d\x68\xce\xef\xde\
\xbd\x93\x4c\x76\x6e\x7f\x7f\xdf\x79\x8a\xa5\xa5\xa5\xfb\xf7\xef\
\xcb\x17\xac\x69\xda\xdd\xbb\x77\x2f\x5c\xb8\xb0\xb7\xb7\xf7\xe1\
\xc3\x87\xdd\xdd\x5d\xf9\x0b\xbf\x7e\xfd\x2a\x5f\x10\xd5\x63\xdb\
\x76\x5b\x5b\x9b\xeb\x64\xaa\xaa\x3e\x7c\xf8\xf0\xd2\xa5\x4b\x8a\
\xa2\x64\xb3\x59\x61\x31\x8a\xa2\x14\x8b\x45\xf7\xab\xf3\xce\x3b\
\xb4\x4a\xa5\xa2\xaa\xaa\x70\x79\x8a\xa2\x1c\xb9\x3a\x55\xa9\x54\
\x92\xc9\xa4\xfc\xe5\xa6\x69\xfa\xde\xf9\xd3\x01\xd3\x34\x5d\xdf\
\xea\xe3\x9f\xc7\x25\xaf\x92\x6f\x26\x97\xb0\x32\x99\x4c\xe3\x59\
\xc8\x3f\x9b\x68\x9a\xe6\xfb\xe5\x35\x7e\x36\x81\xe3\x67\x0c\xfe\
\xce\xb1\x02\x3f\x0d\x6d\xe4\x1c\x4e\xf2\xcb\x5c\xf3\x2a\x8f\xf0\
\x83\xbf\x64\xdd\x5c\xce\xb1\xde\xbe\x7d\x2b\x7a\x1b\x14\x25\x91\
\x48\x0c\x0c\x0c\xd4\xfc\xa7\xa7\x4f\x9f\x0a\x67\x92\xcd\x66\x2d\
\xcb\x12\x4e\x4c\xf5\xcc\xce\xce\x3a\x4f\x90\x4a\xa5\x6a\x0e\x0b\
\xb8\x7d\xfb\x76\x50\xeb\xe0\x14\x96\x65\x59\xd9\x6c\x56\x38\x23\
\x87\x7a\x62\xb1\x98\xfc\x32\xdd\xa7\x4f\x9f\x84\x53\x52\x4d\x92\
\xdf\xcc\x7a\x01\x75\x77\x77\x07\xb5\x1a\x4e\x61\xfd\xfa\xf5\x4b\
\x38\x17\x4d\xd3\x62\xb1\x98\xc3\x04\xf2\xd3\x7f\xf9\x42\xa9\x1e\
\xd7\x5f\xe3\x7a\x1b\x2b\xc0\x8b\x14\x4e\x61\x6d\x6d\x6d\x09\xe7\
\x72\xf3\xe6\x4d\xe7\x09\x2e\x5f\xbe\x2c\x9c\x95\xfc\xb3\x09\xd5\
\x14\x8d\x46\x57\x56\x56\xaa\xa7\x7d\x99\x4c\x26\x95\x4a\x1d\xe9\
\xcc\xe1\x9c\x55\xfe\x11\xde\x95\xd3\x78\xac\xcd\xcd\x4d\xe1\x5c\
\xaa\x1f\x59\x1d\x78\xda\xc7\x5a\x96\x15\xc8\x58\xb3\x33\x2e\x16\
\x8b\xc5\x62\xb1\xe1\xe1\xe1\xea\x1f\x2d\xcb\xda\xdd\xdd\xfd\xf3\
\xe7\x8f\xc3\x4b\x3e\x7e\xfc\x28\x99\x73\x5f\x5f\x9f\xeb\x34\x4e\
\x61\xc9\x4f\xb0\x5c\x97\xe4\x69\xbc\x58\xa5\x52\x91\x4f\x4c\x42\
\xd1\x68\x34\x1a\x8d\xd6\xfb\x80\xa5\x28\x4a\x2e\x97\x13\x1e\x2e\
\x9c\x4f\x7b\xaa\xea\x1e\x0a\xab\xe3\x8c\x03\x24\x1f\xc2\x75\x78\
\x70\xf3\xd9\xa4\xaa\xea\x8d\x1b\x37\xc2\x5c\xa2\x65\x59\xf7\xee\
\xdd\x93\x4c\x29\xbc\x24\x11\xcc\x5d\x3a\x92\x23\xdd\xd5\xab\x57\
\x03\x59\x56\x73\x8a\xc5\x62\xae\x97\x76\xd2\xe9\xb4\x70\x6e\x6b\
\x6b\x6b\x61\xde\x25\x60\xdb\xf6\x8b\x17\x2f\x84\x27\x58\xc2\x4b\
\x12\xc1\x84\xc5\x61\xec\xae\xd6\xd7\xd7\x9f\x3c\x79\x22\x99\x32\
\x93\xc9\x48\x8e\x35\x41\x29\x97\xcb\xe3\xe3\xe3\xce\x43\xe0\x0f\
\x24\x93\x49\xe1\xba\xf1\xf6\xaf\x30\x58\x96\x35\x31\x31\x21\x99\
\x32\x95\x4a\x1d\x9c\x6e\x87\xc0\xb2\xac\xc1\xc1\x41\xe1\xbe\x4a\
\x55\xd5\xe7\xcf\x9f\x0b\xe7\xcc\x1b\x56\xe1\xe4\x07\x1a\x5d\xd7\
\x9f\x3d\x7b\x16\xc2\x2a\x55\xe5\x72\x39\x79\x55\x8a\xa2\x2c\x2f\
\x2f\xcb\x0f\xd0\xe1\xed\xb1\xd6\xd7\xd7\x43\x5b\x56\x53\x79\xf5\
\xea\x95\xe4\x40\xa3\xaa\xea\x9b\x37\x6f\x42\x3b\xa9\x58\x5b\x5b\
\x1b\x19\x19\x91\x4f\x6f\x9a\xe6\xf5\xeb\xd7\xe5\xd3\x07\xb3\xc7\
\xb2\x6d\xdb\x75\x1a\xf9\x6f\x46\x57\x57\x57\x63\xab\xd3\x44\xd6\
\xd6\xd6\x5c\xbf\xb9\xab\x5a\x5e\x5e\x0e\xed\xea\xdd\xeb\xd7\xaf\
\xe5\x55\x55\xef\xd2\x71\xb8\x4e\x51\x53\xdd\x3d\x96\xa7\x4b\x9a\
\xc5\x62\x31\xc0\xf3\xcd\xce\xce\xce\xa0\x66\x75\xb2\x0a\x85\x82\
\x70\xfb\x19\x86\xe1\x69\x7f\xe0\x9b\x6d\xdb\xf2\x53\x75\x45\x51\
\x54\x55\x35\x4d\xd3\x47\xf1\x75\xf7\x58\xc1\xee\x93\xcb\xe5\xb2\
\x7c\xe2\x8e\x8e\x8e\x00\x17\x7d\x52\x6c\xdb\x16\x9e\x86\x27\x93\
\xc9\x70\xee\xd6\x2f\x14\x0a\x3d\x3d\x3d\xf2\xaa\x74\x5d\xdf\xde\
\xde\xf6\xb7\x1f\x75\x3a\x14\xca\xc7\x51\xb9\x5e\xd2\x94\x7f\xbb\
\xa9\xaa\xea\x29\x7a\xd0\x83\x83\xf1\xf1\x71\xc9\xd1\x5f\xd3\xb4\
\x99\x99\x99\x10\xd6\x67\x69\x69\x29\x1e\x8f\xcb\x4f\x48\xd2\xe9\
\xf4\xca\xca\x8a\xef\xfd\x8b\x53\x58\xbd\xbd\xbd\xc2\xb9\xb8\x0e\
\x73\x93\x5f\x4c\x1f\x1d\x1d\x15\x4e\xd9\xcc\xe6\xe7\xe7\x85\x27\
\xec\x8b\x8b\x8b\xe8\x13\xf6\x72\xb9\x3c\x31\x31\x21\x1f\x60\x52\
\x3d\xa9\x7a\xfc\xf8\x71\x23\x0b\x75\x0a\xeb\xda\xb5\x6b\xc2\xb9\
\xcc\xce\xce\x3a\x9f\xbf\xcb\x07\x58\xf6\xf7\xf7\x0b\xa7\x6c\x5a\
\xf2\x6b\xa1\x0b\x0b\x0b\xe8\x13\xf6\x5c\x2e\xd7\xdf\xdf\x2f\x1f\
\x33\x92\x48\x24\xb6\xb7\xb7\x03\x38\xe1\x73\xfe\x16\x42\x3e\xe0\
\xdd\x61\x1c\xb4\xa7\x51\x3e\xc7\x87\xcc\x9e\x8a\xa1\xc9\x07\x8a\
\xc5\xa2\xf0\x4d\x4b\xa7\xd3\xce\x6f\x7e\x83\xbc\xde\x70\x10\xec\
\x03\x35\x5c\xc2\x92\xdf\xfd\xec\x70\x43\xb3\xfc\x3b\xb2\x44\x22\
\x71\xfc\xe5\xfe\xc2\x92\x3c\x3c\x4d\x09\x3a\x2c\xf9\x2d\xed\x35\
\x7f\xd2\x00\x79\x7d\x70\x8b\xae\xeb\xc5\x62\x31\xc0\x15\x70\xb9\
\x40\xfa\xe8\xd1\xa3\xe9\xe9\x69\xc9\x9a\x65\xb3\xd9\xf1\xf1\xf1\
\xe3\x67\x0c\xf2\xe3\x82\xa2\x28\x77\xee\xdc\x11\x4e\x79\x5c\xa1\
\x50\x38\x7c\xc9\x63\x63\x63\xc3\xf7\xac\x7c\x13\x5e\x0b\xd5\x34\
\x6d\x6e\x6e\x0e\xb7\x1a\xf3\xf3\xf3\xf2\xf7\x5c\x51\x14\x55\x55\
\x47\x46\x46\x36\x36\x36\x84\x6f\x5a\x57\x57\x97\xfb\x65\x2d\xd7\
\xf4\x3c\x3d\xb2\x41\xd3\xb4\x4c\x26\x93\xcf\xe7\xf3\xf9\xbc\x69\
\x9a\x9e\x9e\x1d\xa0\xeb\x7a\xcd\x15\x10\xce\xe4\xf0\x91\x25\x9f\
\xcf\x0b\x8f\x47\x01\xee\xb1\xe4\x77\x34\x05\xbb\x6f\xf0\xb7\xfe\
\x8d\x90\xec\x6e\xdd\xc3\xc2\xdd\xac\x7d\x44\x3e\x9f\xaf\xb9\x02\
\xf2\xb2\xab\x0f\x0a\xf3\x74\x62\x11\x54\x58\xc2\x23\xaf\x82\xbf\
\x77\xb2\x49\xc2\x72\xff\xae\xb0\xbd\xbd\x3d\x93\xc9\x78\xfa\x5e\
\xc9\x87\x74\x3a\x5d\xef\xda\xbd\xeb\xb8\xe7\x03\xbb\xbb\xbb\x9e\
\x0e\x01\x41\xb1\x6d\x7b\x70\x70\x50\x38\xb1\x7c\xca\x7d\xd9\xe7\
\x8f\xe6\x24\xfa\xae\x70\x78\x78\xd8\xd3\x6e\xc0\x2b\x5d\xd7\x1f\
\x3c\x78\x50\xef\x5f\xcf\x9f\x3f\x8f\x5b\x74\x20\x8a\xc5\x62\x80\
\xb7\x21\xb4\x06\xe9\x97\xd0\x33\x33\x33\x01\x3e\xc2\xeb\x30\xd7\
\x8b\x84\xf2\xeb\xb4\xd4\x3c\xa4\x61\x45\x22\x91\xc5\xc5\xc5\xc0\
\xdb\xd2\x34\xcd\x34\x4d\xe7\x4b\xcf\xd1\x68\xd4\xdf\x23\x4f\x3d\
\x3d\x75\x82\xe4\x24\x9b\xc3\xc3\xb0\x99\x6a\x5b\xc1\x3e\x24\x6e\
\x75\x75\x55\x72\xe9\x59\x3e\x70\xf1\xb0\x85\x85\x05\x1f\xaf\xa2\
\x40\x78\x1b\x8f\x15\x89\x44\x16\x16\x16\x02\x7c\x54\xdc\xe4\xe4\
\xe4\x91\xdb\x81\x2c\xcb\x3a\xfe\xed\xd0\xf0\xf0\xb0\xd7\x9d\xa5\
\x69\x9a\x2d\x33\xfc\xe6\x34\xf2\x33\xd0\x6f\x6c\x6c\xcc\xc7\x43\
\xc3\x6b\x5a\x5d\x5d\x8d\xc7\xe3\xe7\x0e\xe9\xee\xee\xae\xf9\xd1\
\xdd\xd3\x81\xd8\x34\x4d\xaf\x03\xd3\x28\x58\x3e\x47\x90\xb6\xb7\
\xb7\x4f\x4d\x4d\x95\x4a\xa5\x74\x3a\xdd\xe0\x33\xdf\x85\x22\x91\
\xc8\xca\xca\x8a\x61\x18\xce\x67\x4e\xc9\x64\xb2\x54\x2a\xb1\xaa\
\x13\xe7\xfe\x44\x3f\x89\x72\xb9\xfc\xf7\xef\xdf\x9d\x9d\x9d\xbd\
\xbd\xbd\xc3\x4f\x3b\xb9\x78\xf1\x62\x3c\x1e\xf7\xf4\xb4\x38\x45\
\x51\xf2\xf9\xbc\xc3\x78\x54\xdb\xb6\x7f\xff\xfe\xfd\xe3\xc7\x8f\
\xc3\x8f\x0f\xe9\xed\xed\xbd\x72\xe5\x4a\x4f\x4f\x4f\x6b\x8c\xe5\
\x6a\x01\xc1\x84\xe5\xcc\xb2\x2c\x4f\x03\x9d\x9d\xc3\xa2\x53\x21\
\x8c\xdb\xbf\x7c\x5f\x2f\xa0\xd3\x2b\xa4\xfb\x0a\x5f\xbe\x7c\x19\
\xce\x82\xa8\x49\x84\x14\xd6\xc0\xc0\x40\xe0\xff\x4b\x02\x35\xb3\
\xf0\xee\x84\x9e\x9b\x9b\x03\x7d\x29\x44\x4d\x28\xbc\xb0\xaa\x17\
\xee\x5d\xaf\x17\x50\x6b\x08\xe3\x53\xe1\x11\xb6\x6d\x6f\x6d\x6d\
\x7d\xff\xfe\xdd\xb2\xac\xf5\xf5\xf5\x83\x71\x01\x07\xc7\xca\xa9\
\xa9\x29\x3e\xd1\xef\xb4\x3b\x81\xb0\xe8\x2c\xe0\xd3\x66\x08\x82\
\x61\x11\x04\xc3\x22\x08\x86\x45\x10\x0c\x8b\x20\x18\x16\x41\x30\
\x2c\x82\x60\x58\x04\xc1\xb0\x08\x82\x61\x11\x04\xc3\x22\x08\x86\
\x45\x10\x0c\x8b\x20\x18\x16\x41\x30\x2c\x82\x60\x58\x04\xc1\xb0\
\x08\x82\x61\x11\x04\xc3\x22\x08\x86\x45\x10\x0c\x8b\x20\x18\x16\
\x41\x30\x2c\x82\x60\x58\x04\xc1\xb0\x08\x82\x61\x11\x04\xc3\x22\
\x08\x86\x45\x10\x0c\x8b\x20\x18\x16\x41\x30\x2c\x82\x60\x58\x04\
\xc1\xb0\x08\x82\x61\x11\x04\xc3\x22\x08\x86\x45\x10\x0c\x8b\x20\
\x18\x16\x41\x30\x2c\x82\x60\x58\x04\xc1\xb0\x08\x82\x61\x11\x04\
\xc3\x22\x08\x86\x45\x10\x0c\x8b\x20\x18\x16\x41\x30\x2c\x82\x60\
\x58\x04\xc1\xb0\x08\x82\x61\x11\x04\xc3\x22\x08\x86\x45\x10\x0c\
\x8b\x20\x18\x16\x41\x30\x2c\x82\x60\x58\x04\xc1\xb0\x08\x82\x61\
\x11\x04\xc3\x22\x08\x86\x45\x10\x0c\x8b\x20\x18\x16\x41\x30\x2c\
\x82\x60\x58\x04\xc1\xb0\x08\x82\x61\x11\x04\xc3\x22\x08\x86\x45\
\x10\x0c\x8b\x20\x18\x16\x41\x30\x2c\x82\x60\x58\x04\xc1\xb0\x08\
\xe2\xff\x6d\xbf\xa8\x3c\x87\x5a\xcc\x40\x00\x00\x00\x00\x49\x45\
\x4e\x44\xae\x42\x60\x82\
\x00\x00\x02\x9b\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\xc8\x00\x00\x00\xc8\x08\x03\x00\x00\x00\x9a\x86\x5e\xac\
\x00\x00\x00\x1b\x50\x4c\x54\x45\xdd\xdd\xdd\x00\x00\x00\x1b\x1b\
\x1b\x52\x52\x52\x6e\x6e\x6e\x8a\x8a\x8a\xc1\xc1\xc1\x37\x37\x37\
\xa5\xa5\xa5\xd1\xbe\x03\x3f\x00\x00\x02\x3b\x49\x44\x41\x54\x78\
\x9c\xed\xd8\xdd\xb2\xa3\x20\x10\x46\x51\x69\x0c\xf0\xfe\x4f\x3c\
\x11\xa1\x25\xc4\xcc\xc8\x5f\xd5\x5c\xec\x75\x73\xac\x3e\x55\x5f\
\xa3\x82\x41\xb7\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x2b\xb7\
\x5b\x31\xde\xbe\xca\x5a\x78\x97\x8c\xec\xee\x5f\xb5\x75\x51\xed\
\x5e\x26\x11\xcd\x75\x3e\xd7\xf6\xed\x6f\xb5\x85\x51\xed\x76\x73\
\x09\xa9\xe6\xaf\x92\xb6\xba\xab\xad\x8b\x6a\xe7\xce\x2b\x78\xdc\
\x6a\x63\x7c\x31\x20\xb1\xbe\x1c\xd1\x5d\x6d\x5d\x54\x87\x98\x7a\
\xcc\x69\x9f\x0f\xb6\x4d\xd2\x40\xdc\x71\x60\xb7\x9f\xb5\x75\x51\
\x1d\x44\xaf\x9e\xc9\xb1\x71\xa6\x3b\x3d\xda\x7e\xd5\x16\x46\x75\
\xb8\x2e\x9e\xcd\xe3\xd8\x75\x40\x4e\x6f\xfe\x5d\x6d\x61\x54\x3b\
\xa7\x97\x27\x36\x90\x3c\x0c\x5b\x8d\xed\xae\xb6\x2e\xaa\x43\xb8\
\xe9\xee\x3f\xa7\xf3\xfe\xab\xb6\x2e\xaa\x43\x31\x4d\x6d\xee\x2e\
\x37\x9d\xbe\x6b\xd7\xbc\x48\x13\xa9\x3f\x6a\x0a\xf7\x76\xa5\xfa\
\x86\xee\x3a\x45\x24\x9d\x51\x7f\xd4\x54\x41\x27\xec\xc3\xee\x21\
\x5d\xf6\xfc\x77\x20\x6a\x2a\xaf\x53\xfc\x69\x77\x7f\xde\x09\xfb\
\xb5\x62\xdb\xa3\x26\x7a\xe9\xb3\xff\x71\xf7\x70\xd6\xa4\xbe\x21\
\x1d\x51\x13\xc9\xf5\xcc\x79\xdc\x3d\x9e\x42\xf8\x1a\x4c\x4f\xd4\
\x34\xc7\xfc\xc8\x99\x8f\xbb\x1f\x97\x3e\x58\x1d\xf5\x48\xd4\x2c\
\x71\x79\xe6\x09\xf2\xbc\xfb\x71\x24\xd5\x7e\xa9\x33\x6a\x0e\x57\
\xcc\x86\x96\xee\xef\x1f\x3e\xa9\x6e\x48\x6f\xd4\x1c\x56\x9f\x97\
\x6d\xdd\xcf\x8d\xbb\x9f\x11\x35\xc5\xcb\x7c\x04\x36\x74\x17\x53\
\x0d\xa5\x3f\x6a\x02\x57\x5d\xd6\x81\x3b\xd2\x1f\x35\xc3\xf1\xfb\
\x25\xc5\x3c\x6f\x5a\x23\xe5\x8a\x18\x89\x9a\x20\x8e\xa6\x7c\x2b\
\x78\xbe\x65\x95\x73\xb1\xef\x13\xa2\xc6\x85\x7a\x9a\x97\x9d\x74\
\xe5\xde\xd5\xe2\x82\xd8\x8b\x1f\xf6\x81\xa8\x09\x8a\x3b\x9d\xe8\
\x26\xbc\xda\xaa\xd7\xb5\x73\xb3\x55\x6c\xb5\x06\xa2\xc6\x5d\xb1\
\xea\x7a\xa9\x8e\x53\xe5\x67\xcd\x99\xbc\x45\xf1\xa3\x51\xe3\xce\
\xd9\xf0\x52\xb1\x18\x5f\x27\x5c\xfa\x67\xf9\xe9\xe3\xb3\xb6\x9b\
\xbc\x69\x8c\xe3\x1a\x89\x1a\xa7\xdf\x06\x93\xab\x98\x3e\x3c\xe5\
\x67\xd0\x4d\x2d\xbd\x50\xd9\xb4\x30\x46\xa2\x16\x9d\x48\xf9\x29\
\x50\xd7\xe2\x57\xad\x7e\xb1\x1a\x88\x5a\x76\x22\xfa\xf1\x53\x8a\
\x46\x75\x4d\x9f\x3e\x72\x0e\x68\x20\x6a\xdd\x89\x6c\xe1\x7d\xe7\
\xc5\xd7\x9f\xd0\xcb\xda\xfd\xc7\x87\xae\x28\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x60\x99\x3f\x9d\x1a\x11\x90\x85\x3f\xd1\xc5\x00\x00\
\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x1f\x29\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\xc8\x00\x00\x00\xc8\x08\x02\x00\x00\x00\x22\x3a\x39\xc9\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
\x01\x00\x9a\x9c\x18\x00\x00\x06\xfd\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\x36\x2d\x63\x31\x34\x32\x20\x37\x39\
\x2e\x31\x36\x30\x39\x32\x34\x2c\x20\x32\x30\x31\x37\x2f\x30\x37\
\x2f\x31\x33\x2d\x30\x31\x3a\x30\x36\x3a\x33\x39\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\
\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\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\x45\x76\x74\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\x45\x76\x65\x6e\x74\x23\x22\x20\x78\x6d\x6c\
\x6e\x73\x3a\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3d\x22\x68\x74\
\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\
\x6d\x2f\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x2f\x31\x2e\x30\x2f\
\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\
\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\
\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\x2f\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\
\x43\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x78\x6d\x70\
\x3a\x43\x72\x65\x61\x74\x65\x44\x61\x74\x65\x3d\x22\x32\x30\x31\
\x38\x2d\x30\x37\x2d\x30\x32\x54\x32\x32\x3a\x33\x35\x3a\x30\x36\
\x2b\x31\x30\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x65\x74\x61\
\x64\x61\x74\x61\x44\x61\x74\x65\x3d\x22\x32\x30\x31\x38\x2d\x30\
\x37\x2d\x30\x32\x54\x32\x32\x3a\x33\x35\x3a\x30\x36\x2b\x31\x30\
\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x6f\x64\x69\x66\x79\x44\
\x61\x74\x65\x3d\x22\x32\x30\x31\x38\x2d\x30\x37\x2d\x30\x32\x54\
\x32\x32\x3a\x33\x35\x3a\x30\x36\x2b\x31\x30\x3a\x30\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\x37\x33\x31\x65\x65\x30\
\x64\x37\x2d\x37\x31\x32\x33\x2d\x36\x66\x34\x62\x2d\x39\x30\x39\
\x36\x2d\x37\x32\x37\x37\x39\x37\x64\x36\x38\x66\x64\x30\x22\x20\
\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\
\x3d\x22\x61\x64\x6f\x62\x65\x3a\x64\x6f\x63\x69\x64\x3a\x70\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x36\x63\x65\x31\x32\x32\x37\x65\
\x2d\x65\x32\x35\x38\x2d\x37\x63\x34\x35\x2d\x39\x38\x35\x35\x2d\
\x33\x31\x62\x38\x62\x62\x30\x65\x63\x34\x65\x37\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\
\x62\x36\x64\x36\x30\x33\x32\x35\x2d\x30\x63\x37\x66\x2d\x61\x37\
\x34\x35\x2d\x39\x31\x38\x31\x2d\x38\x30\x61\x61\x33\x39\x66\x39\
\x32\x64\x30\x31\x22\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\
\x43\x6f\x6c\x6f\x72\x4d\x6f\x64\x65\x3d\x22\x33\x22\x20\x70\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x49\x43\x43\x50\x72\x6f\x66\x69\
\x6c\x65\x3d\x22\x73\x52\x47\x42\x20\x49\x45\x43\x36\x31\x39\x36\
\x36\x2d\x32\x2e\x31\x22\x20\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\
\x3d\x22\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x22\x3e\x20\x3c\x78\
\x6d\x70\x4d\x4d\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x72\
\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\
\x73\x74\x45\x76\x74\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x63\x72\
\x65\x61\x74\x65\x64\x22\x20\x73\x74\x45\x76\x74\x3a\x69\x6e\x73\
\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\
\x3a\x62\x36\x64\x36\x30\x33\x32\x35\x2d\x30\x63\x37\x66\x2d\x61\
\x37\x34\x35\x2d\x39\x31\x38\x31\x2d\x38\x30\x61\x61\x33\x39\x66\
\x39\x32\x64\x30\x31\x22\x20\x73\x74\x45\x76\x74\x3a\x77\x68\x65\
\x6e\x3d\x22\x32\x30\x31\x38\x2d\x30\x37\x2d\x30\x32\x54\x32\x32\
\x3a\x33\x35\x3a\x30\x36\x2b\x31\x30\x3a\x30\x30\x22\x20\x73\x74\
\x45\x76\x74\x3a\x73\x6f\x66\x74\x77\x61\x72\x65\x41\x67\x65\x6e\
\x74\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\
\x6f\x70\x20\x43\x43\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\
\x2f\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\x74\
\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x73\x61\x76\x65\x64\x22\x20\
\x73\x74\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\
\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x37\x33\x31\x65\x65\x30\
\x64\x37\x2d\x37\x31\x32\x33\x2d\x36\x66\x34\x62\x2d\x39\x30\x39\
\x36\x2d\x37\x32\x37\x37\x39\x37\x64\x36\x38\x66\x64\x30\x22\x20\
\x73\x74\x45\x76\x74\x3a\x77\x68\x65\x6e\x3d\x22\x32\x30\x31\x38\
\x2d\x30\x37\x2d\x30\x32\x54\x32\x32\x3a\x33\x35\x3a\x30\x36\x2b\
\x31\x30\x3a\x30\x30\x22\x20\x73\x74\x45\x76\x74\x3a\x73\x6f\x66\
\x74\x77\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\x41\x64\x6f\x62\
\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x43\x20\x28\
\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x73\x74\x45\x76\x74\x3a\
\x63\x68\x61\x6e\x67\x65\x64\x3d\x22\x2f\x22\x2f\x3e\x20\x3c\x2f\
\x72\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x2f\x78\x6d\x70\x4d\x4d\
\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x70\x68\x6f\x74\x6f\
\x73\x68\x6f\x70\x3a\x54\x65\x78\x74\x4c\x61\x79\x65\x72\x73\x3e\
\x20\x3c\x72\x64\x66\x3a\x42\x61\x67\x3e\x20\x3c\x72\x64\x66\x3a\
\x6c\x69\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x4c\x61\x79\
\x65\x72\x4e\x61\x6d\x65\x3d\x22\x42\x69\x6e\x61\x72\x79\x22\x20\
\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x4c\x61\x79\x65\x72\x54\
\x65\x78\x74\x3d\x22\x42\x69\x6e\x61\x72\x79\x22\x2f\x3e\x20\x3c\
\x72\x64\x66\x3a\x6c\x69\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\
\x3a\x4c\x61\x79\x65\x72\x4e\x61\x6d\x65\x3d\x22\x4e\x75\x6d\x62\
\x65\x72\x73\x22\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x4c\
\x61\x79\x65\x72\x54\x65\x78\x74\x3d\x22\x4e\x75\x6d\x62\x65\x72\
\x73\x22\x2f\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x70\x68\x6f\
\x74\x6f\x73\x68\x6f\x70\x3a\x4c\x61\x79\x65\x72\x4e\x61\x6d\x65\
\x3d\x22\x30\x31\x30\x31\x30\x31\x22\x20\x70\x68\x6f\x74\x6f\x73\
\x68\x6f\x70\x3a\x4c\x61\x79\x65\x72\x54\x65\x78\x74\x3d\x22\x30\
\x31\x30\x31\x30\x31\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x42\
\x61\x67\x3e\x20\x3c\x2f\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\
\x54\x65\x78\x74\x4c\x61\x79\x65\x72\x73\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\x9a\x63\xf5\x51\x00\x00\
\x17\xd2\x49\x44\x41\x54\x78\x9c\xed\x9d\x5d\x68\x14\x57\xd8\xc7\
\xc7\x97\xf7\x6a\x93\x08\xb9\xd8\xa0\x94\x96\x4d\x27\xa1\xe8\x46\
\x97\x20\xf8\x11\x1c\x0a\x89\x41\xcc\x85\x51\xc7\x04\x85\x44\x4a\
\x23\x2b\x49\xa0\x82\xa1\xac\xc9\x45\x5b\x8b\xac\x0d\xad\x81\x5e\
\xac\x92\x10\x4b\x71\x73\x21\x9a\xb5\xab\x17\x7e\x90\x5d\xc1\x6c\
\x49\x76\x0b\x12\xa2\xbb\x7a\x61\xb6\x13\x9a\x8b\xc8\x0e\x45\xd0\
\xec\xdc\xee\x7b\x31\x6f\x87\xe9\x7c\x9c\x39\x73\x76\xce\xec\xa6\
\x3e\xbf\xab\x64\xf6\xcc\x39\x67\xce\xfc\xe7\x7c\x3c\xe7\xe3\xd9\
\x52\x2a\x95\x18\x00\x70\x9a\xff\xa9\x74\x06\x80\xff\x26\x20\x2c\
\x80\x0a\x20\x2c\x80\x0a\x20\x2c\x80\x0a\x20\x2c\x80\x0a\x20\x2c\
\x80\x0a\x20\x2c\x80\x0a\x20\x2c\x80\x0a\x20\x2c\x80\x0a\x20\x2c\
\x80\x0a\xff\x5b\xe9\x0c\xfc\x3f\xc9\x64\xf2\xf6\xed\xdb\x96\xc1\
\x46\x47\x47\x7d\x3e\x1f\xfd\xec\x00\xe5\xa2\x15\x56\x2e\x97\x73\
\x2a\xea\xc6\xc6\x46\x8f\xc7\x83\x19\x78\x7d\x7d\x7d\x6a\x6a\xca\
\x32\xd8\x57\x5f\x7d\x55\x5e\xa6\x00\x97\xd0\x0a\xab\xa5\xa5\xc5\
\xc1\xd8\x39\x8e\x3b\x75\xea\x54\x4f\x4f\x8f\xd7\xeb\x75\x30\x5a\
\xa0\xfa\xa1\xdb\xc7\x4a\xa5\x52\xc3\xc3\xc3\x0d\x0d\x0d\x17\x2f\
\x5e\x94\x24\x89\x6a\x5a\x40\x55\xe1\x52\xe7\x7d\x7c\x7c\x7c\xf7\
\xee\xdd\xab\xab\xab\xee\x24\x07\x54\x1c\xf7\x46\x85\xf9\x7c\xfe\
\xd0\xa1\x43\xa2\x28\xba\x96\x22\x50\x41\x5c\x35\x37\xe4\xf3\xf9\
\xc1\xc1\x41\x37\x53\x04\x2a\x85\xdb\x76\xac\x58\x2c\x96\x4c\x26\
\x5d\x4e\x14\x70\x9f\x0a\x18\x48\x2f\x5d\xba\xe4\x7e\xa2\x80\xcb\
\x54\x40\x58\xa9\x54\xca\x41\x6b\x19\x50\x9d\x54\xc6\xf2\xbe\xb4\
\xb4\xe4\xf7\xfb\xd5\x57\x5a\x5b\x5b\xa3\xd1\xa8\xe5\x8d\x0d\x0d\