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