This repository has been archived by the owner on Oct 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparts.go
1523 lines (1275 loc) · 205 KB
/
parts.go
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
// Code generated by go-bindata. DO NOT EDIT.
// sources:
// parts/arms_1.png
// parts/arms_2.png
// parts/arms_3.png
// parts/arms_4.png
// parts/arms_5.png
// parts/body_1.png
// parts/body_10.png
// parts/body_11.png
// parts/body_12.png
// parts/body_13.png
// parts/body_14.png
// parts/body_15.png
// parts/body_2.png
// parts/body_3.png
// parts/body_4.png
// parts/body_5.png
// parts/body_6.png
// parts/body_7.png
// parts/body_8.png
// parts/body_9.png
// parts/eyes_1.png
// parts/eyes_10.png
// parts/eyes_11.png
// parts/eyes_12.png
// parts/eyes_13.png
// parts/eyes_14.png
// parts/eyes_15.png
// parts/eyes_2.png
// parts/eyes_3.png
// parts/eyes_4.png
// parts/eyes_5.png
// parts/eyes_6.png
// parts/eyes_7.png
// parts/eyes_8.png
// parts/eyes_9.png
// parts/hair_1.png
// parts/hair_2.png
// parts/hair_3.png
// parts/hair_4.png
// parts/hair_5.png
// parts/image.info
// parts/legs_1.png
// parts/legs_2.png
// parts/legs_3.png
// parts/legs_4.png
// parts/legs_5.png
// parts/monsterparts.xcf
// parts/mouth_1.png
// parts/mouth_10.png
// parts/mouth_2.png
// parts/mouth_3.png
// parts/mouth_4.png
// parts/mouth_5.png
// parts/mouth_6.png
// parts/mouth_7.png
// parts/mouth_8.png
// parts/mouth_9.png
package monsterid
import (
"bytes"
"compress/gzip"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"strings"
"time"
)
func bindataRead(data []byte, name string) ([]byte, error) {
gz, err := gzip.NewReader(bytes.NewBuffer(data))
if err != nil {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
var buf bytes.Buffer
_, err = io.Copy(&buf, gz)
clErr := gz.Close()
if err != nil {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
if clErr != nil {
return nil, err
}
return buf.Bytes(), nil
}
type asset struct {
bytes []byte
info os.FileInfo
}
type bindataFileInfo struct {
name string
size int64
mode os.FileMode
modTime time.Time
}
func (fi bindataFileInfo) Name() string {
return fi.name
}
func (fi bindataFileInfo) Size() int64 {
return fi.size
}
func (fi bindataFileInfo) Mode() os.FileMode {
return fi.mode
}
func (fi bindataFileInfo) ModTime() time.Time {
return fi.modTime
}
func (fi bindataFileInfo) IsDir() bool {
return false
}
func (fi bindataFileInfo) Sys() interface{} {
return nil
}
var _partsArms_1Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\x73\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\x66\x2d\x74\x40\x81\x83\xd5\xe1\xe3\xbf\x72\xb3\xb5\xb9\x67\xdc\xaf\xdc\x55\x8b\x6d\x7b\xc8\x98\xac\xc9\x80\x03\x4c\xf0\xae\xfe\xd5\x3c\x6b\xa9\x00\xdf\x0c\xb3\x4f\xdf\x43\x4e\xcc\x9e\x97\xa1\xf8\x5f\xf8\xdb\xdb\x7b\xc7\x98\x1e\xb6\xf1\xca\xbd\x77\xdd\x13\xe3\x53\x72\xff\xa6\xb3\xb0\x27\x5b\xc9\x4f\xc5\xf7\xfe\xee\xda\x7e\x5f\xbe\x6c\xfe\x93\xca\x78\xe8\xae\x41\x0a\xff\x9a\x23\x8a\xe1\x7b\xa3\x9d\x52\x22\x15\xa4\x79\x70\x59\xc0\x50\xb0\x82\xfb\x8f\xbc\xdc\x47\x99\x8d\x49\xcd\x20\xae\xa7\xab\x9f\xcb\x3a\xa7\x84\x26\x40\x00\x00\x00\xff\xff\x7b\xf6\xa0\xec\x39\x01\x00\x00")
func partsArms_1PngBytes() ([]byte, error) {
return bindataRead(
_partsArms_1Png,
"parts/arms_1.png",
)
}
func partsArms_1Png() (*asset, error) {
bytes, err := partsArms_1PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/arms_1.png", size: 313, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsArms_2Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\xdf\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\x71\x5a\xf0\xb0\x01\x07\xab\xc3\xc3\x7f\xd5\x6a\xd7\xcf\x3c\x79\x12\xdf\x93\xb8\xbd\xf1\x84\x4d\xa3\xc8\x5a\x56\x06\x82\x20\xf8\xc9\x92\xfe\xde\xc6\x87\x2d\x0d\xaf\xdb\x2c\xb5\xe6\xf4\x31\x3e\x67\x7e\x7d\xfa\xdc\x64\x85\xb6\xb6\x5f\x7f\x77\x17\x1e\x5e\xc6\xc1\x38\x5f\xff\x93\xf4\x7b\x4e\x43\xd5\x07\x7d\x07\xdf\xf1\xda\x5b\xd5\xa7\xac\xbb\x79\xeb\x5a\x42\xd5\x86\x7a\xfe\x2a\xe1\xbc\x4e\xeb\x80\x57\xf7\x2c\xd3\x3f\x6b\x5b\x47\xec\x38\x9b\xad\xf2\xa0\xfd\xdc\x63\xdf\xd8\xd3\x73\x8f\xef\xba\x3e\xe3\xda\xc1\xb9\x4e\x76\xa6\xbb\x58\x63\xaa\x7d\xa6\xd7\x7f\x34\x9e\xd7\x7f\xfd\xcd\xa4\x5b\x2f\x1f\xec\x52\x3c\x1e\xcc\xf8\xfc\xd3\xbc\x3f\xb3\x5e\x8a\x8b\xeb\x2b\xbd\xbb\xd1\x7a\xc8\x36\xee\xf8\x8a\x5d\x06\x8c\xff\xf7\x04\xbb\x7f\x8d\xf5\x98\x7c\xeb\xe9\x55\x73\x47\xc6\xeb\x3c\xe1\xea\xe6\x6f\xe3\x1e\x57\x3d\xb8\xf8\x2c\x7f\xea\x5c\x4e\x98\x7b\x85\x6b\x18\xda\x43\xed\xdf\x9e\x0c\x92\xd0\x01\x71\x3d\x5d\xfd\x5c\xd6\x39\x25\x34\x01\x02\x00\x00\xff\xff\x3e\x9f\x1c\xb1\x93\x01\x00\x00")
func partsArms_2PngBytes() ([]byte, error) {
return bindataRead(
_partsArms_2Png,
"parts/arms_2.png",
)
}
func partsArms_2Png() (*asset, error) {
bytes, err := partsArms_2PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/arms_2.png", size: 403, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsArms_3Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\xde\x7a\xba\x38\x86\x54\xdc\x7a\x7b\x23\x9a\xaf\xc9\x40\x80\x35\xe0\x14\x9f\xef\x9d\xd6\xd7\x85\xe2\x2a\x3a\x82\xf5\x1b\x39\xb9\x4e\xf1\xac\x2f\x16\xda\xa7\x50\x62\x35\x9d\x2d\xe3\x32\x03\x2a\x70\x0f\x64\x7a\x67\xa9\xd2\x57\x5a\xe2\x5c\xe2\xa6\xba\xe8\xc6\xef\xb7\x1f\xcb\x16\xbd\x9e\xdf\x34\xef\x45\xf8\xdd\xd5\x9d\xfb\xa6\xc6\xb2\xfc\x59\x79\x63\x2b\x97\x9d\xf7\x8e\xfb\x55\xa1\x5f\xdf\x3c\xaf\xdb\x3a\x93\xb5\x7f\x9d\xe4\xba\x7d\x45\x9b\xb7\xdc\xdc\xbc\xda\xe9\xde\xa3\x08\x21\x97\x13\x3f\x8a\xc3\xdf\x2b\x32\xaf\x8b\xe3\x8f\x96\x29\x6e\xe6\x5d\xbd\xf0\x97\x9a\x65\xf8\x81\x99\x93\x7f\x7f\x3e\xc8\x2d\xbb\xf8\xf5\x7c\xcd\xbd\x19\xe6\x5c\xd7\xa7\x7f\xc9\x30\x75\x67\xbb\xcb\x55\x2e\x5f\x2d\x18\xa8\xb8\xfc\x8f\x1a\x67\xf9\x4f\xbb\x43\x51\xd5\xec\xaa\xab\x4e\xb4\x6c\x5c\xf7\x41\x7a\x69\x3a\x03\x61\x50\x60\xa6\xff\xe7\x41\xd6\x31\xfe\xb5\x89\xbf\x40\x5c\x4f\x57\x3f\x97\x75\x4e\x09\x4d\x80\x00\x00\x00\xff\xff\x3c\x43\x29\x97\x89\x01\x00\x00")
func partsArms_3PngBytes() ([]byte, error) {
return bindataRead(
_partsArms_3Png,
"parts/arms_3.png",
)
}
func partsArms_3Png() (*asset, error) {
bytes, err := partsArms_3PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/arms_3.png", size: 393, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsArms_4Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\xb0\xf9\xca\xe9\x08\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x8c\xba\x9e\x2e\x8e\x21\x15\xb7\xde\xde\xf6\xec\x3b\x6c\xc0\xe3\xea\x78\xfa\xc4\xdf\xf5\x67\xde\x30\x5b\x38\xb0\x45\x3f\x2a\xbf\xba\xcb\x7c\xad\xf8\xa9\x12\xfe\xdb\x6c\x0c\x28\xe0\x40\xe4\xab\xc9\xfa\xf7\xe6\x86\xfb\x7c\x11\xb2\xa8\x5e\xd4\x7e\xa0\x32\xf0\xfe\x31\x55\x75\x83\xf2\xca\x67\xfb\x8c\x6e\x55\xde\xde\xb2\xac\xbc\x2a\x76\x53\xca\xdd\x07\xb1\x33\x1e\x1c\x50\xb3\x98\x73\x80\x49\xd9\x80\x29\xb9\xf9\x59\xcb\x01\xb5\x1b\xa2\xbd\x07\x38\x7a\x58\xbb\x85\x99\x66\x27\x84\x9b\x30\x3d\xfe\x79\x7a\xce\x01\x35\x09\xab\xf8\xf3\x6a\x12\x56\xfa\xe1\x6a\x37\x9e\xf5\x1c\xd0\x91\xbe\x2e\x9a\x5b\x34\x53\x20\x3c\xa1\xb0\x50\xb7\x9a\xad\xfa\xd9\x23\xaf\xb4\xa7\x3b\xfe\x45\x56\xdc\x0b\xad\x39\x79\x93\x5b\x46\x2a\xec\xc1\x6b\xf1\xe5\x9a\xe9\xba\x05\x17\xb6\x70\xd5\xc8\x24\x97\xcc\x0f\x69\xec\x6f\x0e\xfb\x64\xd9\xc7\xca\x7f\xbf\x7d\xd7\x47\xf3\x68\xbe\xfd\xf9\x0f\x8c\x1c\x67\x36\x7a\xef\x79\xb3\xf4\xe8\xf9\xa0\x56\xd7\x98\xbc\xaf\x5a\x87\xe7\xbf\x79\xa4\xb4\x61\x47\xc7\xe9\x4f\xe7\x13\x58\x8e\x7d\xed\xe1\x74\x4b\x60\x71\x4b\x68\xf4\xe4\xcb\x69\xfe\xd6\xd5\xa2\x3d\x2b\xac\xf1\xef\xa6\xfd\x33\x3f\x1e\x15\x7d\xcb\xff\x5a\xaa\xf2\xcf\x0f\xc5\x05\x2f\x59\xa6\x9f\xd8\x39\xbb\xf8\xe6\x0a\x46\x88\xaf\x6f\x55\x33\x2d\xf8\xe9\x2a\xff\x57\xb8\x24\x0b\xc4\xf5\x74\xf5\x73\x59\xe7\x94\xd0\x04\x08\x00\x00\xff\xff\x2a\x1c\x61\x5c\xc9\x01\x00\x00")
func partsArms_4PngBytes() ([]byte, error) {
return bindataRead(
_partsArms_4Png,
"parts/arms_4.png",
)
}
func partsArms_4Png() (*asset, error) {
bytes, err := partsArms_4PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/arms_4.png", size: 457, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsArms_5Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x98\x9e\x7a\xba\x38\x86\x54\xdc\x7a\x3b\xf7\x60\xee\x61\x03\x1e\xd7\xd4\x83\xd7\x75\x2e\x65\x5a\x65\x2d\x7b\xa9\x24\xd9\xb0\x97\xa5\x55\x7a\xc9\xba\xd4\x4e\x11\xcf\xfd\xec\x5f\x2e\x75\x3b\xd7\xfe\xd5\xbf\x54\x76\x2b\x88\x01\x27\x38\x60\xfc\xe9\x8f\xe1\xd2\x4d\xef\xcc\x1e\xdd\xdb\x2f\x17\xac\xd7\x73\xa0\xf3\xa8\xee\xd2\x29\xa1\x9a\x5d\xdb\x74\xc4\xfb\x9e\x18\x05\xc7\x98\xb2\xdf\xdf\x2f\x77\xfb\xd0\xb2\x39\xb6\x7d\x47\x4d\x63\xbb\x8f\x2e\xda\x70\xbe\x3f\x7a\xe7\x84\xd5\xe5\x73\x7f\xc7\x70\x6f\xfe\x15\xce\xfb\xfd\xdd\xdf\x77\x91\x0b\x54\x44\xa3\xd3\xdc\x37\xed\x6a\x8e\xe6\xf2\x79\xf2\x66\xd9\xe7\x6b\x97\x8e\xbe\x7e\xa1\x54\x7d\xe7\xdf\xcf\xc2\xee\x17\x39\xe2\x67\xa7\x78\x4e\xbe\x1a\xfd\x64\xf6\x33\x9e\x42\x59\xd7\x2f\x1f\x3e\xa7\x0b\x3f\x94\xbb\x7b\x27\x74\x7d\xa8\xcf\xf5\x89\xd6\x91\x1b\x13\x3f\x9b\x65\x75\xa6\x5f\x5f\xe5\xb2\x25\xec\x20\x5f\xfa\x2b\x83\x47\x7d\x3d\x1c\x9b\x17\xc5\x5b\xe5\x9f\x7e\x21\x57\x77\x2f\xea\xc8\x17\xa1\x4a\x77\xe9\xbe\x48\xad\xb3\x53\x5c\xfb\x05\xa3\x12\x9c\xcb\x57\x5f\x5d\xf1\xf6\xd1\x56\x95\x47\x4f\xfb\x66\xbe\xe1\xd0\x65\x37\xdf\xfd\xdb\xd0\xe3\xf6\xc1\xe0\xbb\xbf\xd5\x16\x9d\xbf\xa6\x3b\xad\x77\xf1\xd2\xee\xc3\x16\x3f\xf8\x0d\xc5\x97\xf6\xea\xdd\xce\x76\x2b\xfb\x90\xf5\xf2\x1e\xdf\xf1\xc8\xb2\x33\x9f\x8a\x74\x3b\x75\xbe\x18\x39\x26\x9c\xff\x3e\xe3\xe9\xfc\xf3\xea\x51\x1f\xd7\x6e\x35\x5b\x39\x4b\x27\xb5\xb0\x9e\xf3\xc3\xa7\x84\x23\x6b\x77\x87\x6b\x7f\x57\x13\x28\x37\xff\xbb\xad\xa9\x3a\x6a\xf6\x51\xaf\x84\xe3\xfc\x7c\x4b\x24\xf6\xde\x34\x52\x5e\x96\x3d\x81\x57\xd4\x33\x26\xbc\x34\xee\xeb\xd6\xc8\x40\x91\xef\xee\x4f\xce\xad\x54\xec\x3b\x20\xc7\x55\x7b\x99\x73\xf7\xeb\x67\xf3\x27\xda\x7d\xc9\xbc\x39\x53\xe9\xfc\xbe\xf2\xd2\x9b\xdf\x17\xa7\xcf\x3b\x1a\x26\x58\x1b\x5a\xb8\xdc\x7d\xeb\xaa\x03\xe7\x16\x59\x26\xcd\x17\x38\x74\x90\x3b\x6a\xeb\xce\x8a\x27\x32\xb1\xe9\x6f\xb4\x0a\x64\x2e\xf6\xea\x97\x1f\x7e\xb2\x39\xc2\x7a\x51\xe7\xf3\xc9\xd2\xf5\x57\x4e\x1c\xf9\xde\xdc\x1b\x3b\xe7\xd0\x41\x46\x39\x6e\xb7\xae\xac\x83\x07\x3d\x17\x57\xb9\x98\xdf\x55\xfa\xb0\xd0\xda\xc8\x24\x7c\xdf\xa2\x5d\x6e\xfa\x0f\xb8\x78\xc5\x05\xe7\xde\x38\xba\xf7\x6e\x49\xe8\x8d\x89\x3b\xae\x5f\xcc\xa9\x09\x49\x78\x97\x70\xd6\x3d\x44\x76\xce\x1b\xd9\x35\x01\xe9\x85\xe7\x6f\x15\xb3\xa9\xbf\x5f\xf1\xfa\x41\xec\x89\x9f\xaf\xd7\x2c\xb6\x53\xda\x20\x70\xfe\x73\x6c\xcd\xb6\xd9\xeb\x76\x98\x6f\xef\xb6\x6c\x9e\xbb\xb3\x62\xcb\x09\xd1\xef\x6d\xd9\x3b\x58\xd8\xd5\x7b\x5f\x19\xef\x0d\x38\xba\x77\xe7\x62\x29\x76\xf5\xf9\xbd\xda\xef\x7a\x45\xaf\xae\x7d\x1c\x24\x5b\x9a\xf8\xe1\xe5\x23\xab\xdf\xcc\x07\xfe\x49\x7d\x9f\xf5\xd2\xbe\xf1\xe9\x81\xf8\xfc\x76\x4b\xa5\xee\x65\xcd\x85\xef\x5d\x26\x46\x1f\x5b\xaa\xd6\x58\x98\xbf\x67\xc7\xba\x1d\xe6\xe6\x67\x0e\x6e\x8c\xd5\x39\xcc\xa2\x36\xaf\xf6\xec\x71\xf7\xf3\x0f\xc3\xd8\x85\xcf\x1f\x7c\x96\xac\x64\x55\x79\xb8\xf5\xc0\xc7\xb9\x3a\x77\x99\x8a\xef\xcf\xd4\x93\x9a\x33\xef\x38\x47\xcd\x47\xd9\x09\x5f\xe7\x7b\x08\x5d\xec\x71\xff\xc9\xfa\xec\xb7\x87\x49\xe4\x04\xc7\x84\x47\x92\xec\xce\x2e\x16\xcd\x85\x06\xe8\xa9\x92\xe7\xb9\xb4\xf7\x2f\x71\xbb\xda\x47\x57\xe6\x82\xb8\x9e\xae\x7e\x2e\xeb\x9c\x12\x9a\x00\x01\x00\x00\xff\xff\x0c\xa9\x05\xfc\x81\x03\x00\x00")
func partsArms_5PngBytes() ([]byte, error) {
return bindataRead(
_partsArms_5Png,
"parts/arms_5.png",
)
}
func partsArms_5Png() (*asset, error) {
bytes, err := partsArms_5PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/arms_5.png", size: 897, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_1Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\xbb\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\x73\x31\xf7\x90\x81\x08\x6b\x80\x4c\xe9\x82\xbc\x43\x3a\x3e\x97\x22\x77\x79\x9a\x17\xd5\xff\xe8\x08\xf0\x7e\x72\xe9\xc7\xcd\xba\xe7\x35\xca\x8a\x35\x9f\xd7\xf9\x3a\xec\x8c\x61\x40\x02\x0f\x44\x8e\x0a\x99\xac\x36\x5e\xbb\xb4\x41\xfa\xf0\x9f\x1f\xbb\xfe\xfd\x38\x74\xfb\xf7\xf3\x09\xd9\xda\x0f\xd4\x83\x7f\x46\xcf\x70\x97\x3b\xa4\xc7\x24\x57\xa2\x15\xbf\x95\x7b\x17\xc7\x8f\xf7\xbf\xa3\x73\x6b\x27\x6f\x66\xb2\xe5\xd8\x95\xc2\xb7\xc3\xec\x5d\x7e\x62\xe2\x59\xb1\x4f\x1c\x8c\xd7\x23\x9d\x66\x6d\x5c\xb7\xdd\x51\xbb\xd2\x32\x50\xbc\xb0\x93\xc7\xec\xf0\x13\xb7\xf0\xaf\xb3\xbd\xe2\x6e\x8b\x19\xee\x9c\x79\x57\xff\xdd\xae\xa4\x03\x99\xd9\x96\x41\xeb\xbb\xc2\x4e\x7b\x6a\xcd\x3a\x67\xba\x77\x66\x9c\xb0\xce\x9d\x4e\xfe\xb9\x5a\x56\xdb\x96\x2d\x9f\xf7\x40\xeb\xd8\x51\xed\x28\xdb\xe3\xf2\xdb\x42\xb6\x70\xa6\xa5\xa5\xdf\xfd\x52\x56\x95\x57\xf0\x8c\x5f\x40\x2d\xc2\x55\x39\xe1\x13\xeb\x9f\x37\xf5\x21\x67\xe4\x37\xfc\x8f\xe6\xff\x54\x1b\xe1\x3a\x3b\x81\x25\x47\xde\x4f\x72\x43\x6d\x84\xeb\xe6\x6c\xab\xf2\x4d\x02\x06\x73\x99\xf5\xf8\xa2\xd4\x24\x18\xad\x13\x7a\x65\x36\xcc\x32\x3b\xc8\x11\x61\xcb\x3d\xe3\x40\xc3\xdb\xc3\x7f\x97\x6f\x4f\x3f\xf0\xce\xfb\x76\xf3\x65\xdf\xf7\x45\x8c\xbf\x77\x89\x5c\xc8\x52\xab\x78\xf8\xb2\x97\xe3\x86\x48\xb9\xdd\xe4\x1c\xc9\x75\x8f\x72\xd4\x9f\x0b\xfa\x6d\x7f\x29\x77\x42\xe8\xab\xc6\xe1\x15\xb6\x3b\x66\xdc\x91\xe1\xde\xfb\x45\xa5\x7a\xce\x07\xbd\x27\x53\x9b\xbe\x39\x7c\x68\x5e\xf0\xfd\x9f\xf2\x97\x70\xbe\x52\xdd\xf7\xf6\x41\x1b\x36\xbf\x69\x2d\x6d\x38\x1f\x29\x1e\xe5\xcf\x80\x0e\x1a\x22\x6b\x98\x75\xd7\x14\xac\x13\xe1\xf1\xb2\x00\xf1\x3d\x5d\xfd\x5c\xd6\x39\x25\x34\x01\x02\x00\x00\xff\xff\xae\x98\xff\x49\x26\x02\x00\x00")
func partsBody_1PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_1Png,
"parts/body_1.png",
)
}
func partsBody_1Png() (*asset, error) {
bytes, err := partsBody_1PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_1.png", size: 550, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_10Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\x67\x7a\xba\x38\x86\x54\xdc\x7a\x7b\xf7\xae\xef\x61\x07\x81\xd6\x8b\x3e\x2e\xcc\x57\x1c\x9a\xa7\x38\x35\x5f\x71\xe0\x3c\xcc\xcd\xcf\xb1\xf0\x8f\xc2\xa4\x37\x77\x6c\x9f\x4b\x36\x7e\x78\x1e\xb9\x5e\xf8\xa4\x9d\x0c\x03\x1c\x28\xc4\xb5\xfe\xaf\xdf\xfb\x7b\xe3\x8a\x2f\x3b\xf4\xd7\xcb\xa7\xd7\x7f\xf8\xfb\xd6\xf2\xdb\x8c\x25\x6c\xef\xbc\x0f\xcd\xe3\x88\x65\x6a\x3f\xea\xdb\x5b\x73\xe7\xc7\xac\xdf\xab\xf3\xd5\xdd\xb9\x6d\xbe\xcc\xaa\x76\x7d\xf2\x71\x9e\xce\xe9\x74\xff\x59\x46\x07\x1b\x83\x96\x59\x28\x16\xf0\xff\xff\xcb\x64\x9f\x75\x4b\x68\x59\xc5\xaf\xb5\x0e\xf7\x95\x0f\x5d\x5f\x1b\x3c\xf3\x41\x8e\x6e\xc1\x83\x2f\x7e\xf1\xab\x7c\x0b\x7e\x88\xc8\xfb\xe6\x7f\x13\x99\xfd\xe0\x83\xa6\x98\x45\x4d\x97\x3a\xdb\x3b\x56\xbe\x12\xee\x9c\x2e\x56\xb7\x07\x53\x97\xef\x60\x75\x7b\xf0\x70\xf6\x6c\x31\x8b\x92\xc9\xc6\xa9\x9b\x53\x3b\xb7\xb9\x18\x57\x6e\x56\xdd\xc0\xb9\x6d\xa1\xe0\x8d\x63\x6e\x09\x2c\x6e\x09\x2c\xdb\x18\x45\x6e\xb0\x14\xaf\x15\x92\x68\x54\x8f\xfa\xfb\xf8\x54\x60\x63\xbd\x8d\x77\xf3\x86\x03\x5b\x3f\x78\x3e\x97\xea\x39\xc0\xd1\x73\x80\x43\xc7\xc0\x50\xcd\x6e\xda\x82\xf0\x9f\x8f\xea\x0f\x2d\x96\xf5\xd9\xa0\x2a\xd5\x68\x6e\xf2\x34\x39\xb8\xf1\xf0\x77\x03\xa6\xe8\x45\xba\xfd\x4c\xd1\x62\xac\x7c\x77\x12\xa6\x1e\x30\x9f\x93\x74\xfa\x0b\x9b\xf0\x9f\x8e\x13\x97\xfd\xd6\x9c\x6c\xcc\xbe\xbc\x7f\xef\x55\xd3\x1f\xeb\xbc\xbf\x1e\x39\xed\x74\xaa\xef\xcb\xfd\xb8\x13\x13\x37\xed\xf4\xba\xed\x3a\xfd\xf7\xe3\x3f\xb7\x97\x18\xed\xfd\xf9\xfd\xa0\xf9\x4e\x35\xff\x38\xc9\x3d\xbb\x3f\x7c\xda\x71\xef\xe6\x84\xb2\xfe\x39\x1f\xe4\x9c\xd7\x4f\xe7\xdd\xfd\xec\x9d\xc8\x0f\xff\x89\x97\xef\xa9\xee\x39\x6d\x6e\xac\xee\x5c\xed\x58\x12\x90\x72\x9c\x89\x01\x09\x34\xbc\xad\x65\xea\xd3\x2a\x6d\x72\x38\xf7\xe6\x2a\x88\xef\xe9\xea\xe7\xb2\xce\x29\xa1\x09\x10\x00\x00\xff\xff\x0c\x27\x4d\x32\x35\x02\x00\x00")
func partsBody_10PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_10Png,
"parts/body_10.png",
)
}
func partsBody_10Png() (*asset, error) {
bytes, err := partsBody_10PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_10.png", size: 565, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_11Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x4c\x9d\x9e\x2e\x8e\x21\x15\xb7\xde\xde\xbd\x18\xa8\x6c\x28\xe0\x1a\x78\xda\x55\x28\x65\x53\x63\xae\x04\x8b\x9b\x5a\xcb\xc2\xbf\x0b\xb7\x69\x34\x33\xde\x5e\x1c\xb6\xba\xf4\x9d\xb9\xeb\xc9\xda\xe7\x99\x4b\x26\xba\x15\x5b\x31\x32\xa0\x82\xa7\x99\x5e\x05\x12\xb6\xc9\x6b\x39\xed\x3c\xde\xbc\x3e\x7d\xfb\xaa\xfd\x8f\xcf\xdf\x2b\xa3\xf6\x72\xda\x29\x6c\xbc\x7f\x72\xae\xee\xae\xb5\x01\x07\x5a\xde\xbe\xdf\xde\xf1\xd7\xe9\x53\x59\x93\xfd\xc9\x3f\x2b\x4f\x57\xd7\x56\x72\xeb\x5f\x5b\x5c\x94\xee\x91\x17\xb9\xe4\x5e\xf4\x86\x03\x49\xb6\x3a\x65\x6e\xbb\xe7\x87\xbd\xba\x57\xf7\x63\x7e\xee\x46\x33\xf7\x2d\xd6\xfb\xaa\xa5\x03\x96\x5c\xcc\x94\x50\x35\x57\x39\xfa\x3c\xa5\x79\xd9\xee\x0a\xfd\x3a\xf9\x52\xc7\xbe\x09\xd2\x81\xd3\x4f\xb0\x7c\x3f\xe8\x6a\x55\x25\x65\xa4\xb3\xf5\xa2\x66\x9f\xcf\x87\x02\x3b\x8e\x97\xe5\x6a\x8b\xdd\x4f\xf5\x2a\x24\x4d\xb8\x9a\xee\x51\xe7\xef\x56\xff\x40\xa9\x53\xae\x82\xcf\xb3\xf0\xc4\x97\x45\x5e\x52\x61\x6f\x96\x9d\x3f\x15\x2d\xdd\xc4\xc9\x76\xf0\x46\xf4\x87\xf6\x9f\x9a\x5c\x5c\xdb\x9e\xed\x71\x14\xbf\xbb\xa4\xc2\xef\xfd\x33\xb9\x39\xcd\x42\xfd\x5a\x4b\x2b\x9a\x03\x4d\x4e\x5a\xfb\x4c\xf6\xe8\x5b\x7d\x98\xe7\xa0\xef\xa4\xc7\x69\x92\x9b\x97\x1b\x2c\x9d\xf6\xec\x9d\x4f\x7e\xe6\xc1\x68\xaf\xbe\x3b\xf2\x73\xb3\x6e\xbf\xe1\x9b\xb4\xd8\x7c\x7f\xfa\x4c\xf6\xf7\x65\xf1\x7c\xdc\x61\xdb\xd8\x65\x97\xaa\x9e\xff\x91\x1b\x39\x5f\x78\xfa\x2d\x56\xa3\xcf\x4f\x37\x6f\x5e\xbd\x77\xdd\x9d\x33\x9c\x7a\x86\x1f\x66\xe9\x7e\x2f\x99\xf5\xf9\xd5\x29\x5d\xf1\x78\xf5\x6d\x79\x4d\xd3\x7d\x3e\x2e\x31\x97\xbb\xbe\x9b\x5d\xbf\x88\x71\x99\xbc\x79\x04\xbf\x5e\x5d\xa0\x50\x4c\xcd\x95\xf9\xb1\x05\xd3\xef\x3d\xe2\xfc\x76\xcb\x3b\xf6\xe0\xbd\x4c\x2d\x9d\x8a\xd0\x9d\x2f\xf3\x34\x75\x93\x1b\xc3\x7c\xf3\xb6\x59\x16\x6c\x3b\x36\x25\x42\xf8\xdc\x17\x11\x6d\x6f\xe5\x3c\x3b\x43\xbf\x49\xd7\x05\x63\xca\xd4\x8f\x1f\xdd\xb3\xe3\xad\x46\x45\x77\xae\xd5\x66\x57\x7f\xeb\xd7\x85\xdb\x35\x2f\x88\xfb\xef\x3a\x25\x97\xba\xe3\x6d\xd8\x4d\xc9\xef\x2f\xd5\x76\x6e\x55\x8d\xce\xf1\x30\xe9\x56\xd8\x21\x21\xce\xbe\x5d\x57\x7f\x47\xf0\xaf\xb5\x4f\xbe\x0a\xbf\xf9\x27\x2d\xcf\x10\x5b\xf2\x51\x64\x7e\xf8\x3e\xab\x89\x1a\x07\x77\x3d\x7f\xd4\xe4\x68\xc0\xe1\x16\x75\xf0\xdc\x93\x15\xba\x37\x0a\xdb\x26\x57\xdc\x7a\x79\x3c\xee\x9b\x52\xa4\xdb\x37\xe5\xea\xed\x27\x52\x5a\xf5\x85\xe3\x34\x63\x76\x9b\xd9\xcf\x57\xad\x79\xb2\x2a\xe8\xe4\xd3\x43\xd6\xe6\xfb\x7c\x23\x97\xcb\xed\xf5\xcc\xdf\xc9\x6f\xfd\xcf\x68\xad\x6e\xb2\xf4\xe2\xa7\xe7\xa4\xfe\x7c\x61\xde\x77\xc7\xf2\xd7\x77\x9e\xfb\x2f\x23\xff\x2a\x6c\x99\x1d\x64\x54\xf8\xf8\x96\xc0\xc5\xdd\x32\x2d\xd7\xc4\xb3\x5e\x2b\x6e\xaa\x65\xac\xe1\xdd\x35\xeb\xbd\xf6\xbd\x4d\x1a\x0c\xe8\xe0\x40\xfd\x3f\xc6\xad\x4d\x6f\xff\x58\xfd\xe8\x77\x03\xf1\x3d\x5d\xfd\x5c\xd6\x39\x25\x34\x01\x02\x00\x00\xff\xff\x58\xc5\xdb\x0d\x25\x03\x00\x00")
func partsBody_11PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_11Png,
"parts/body_11.png",
)
}
func partsBody_11Png() (*asset, error) {
bytes, err := partsBody_11PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_11.png", size: 805, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_12Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x8c\xc7\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\x7b\x3a\xf0\xb0\x01\x83\x6b\x60\xa7\x27\x7f\x89\x13\xeb\x14\x5f\xd6\x12\x27\xd1\xa4\xc3\x4c\x12\x27\x6e\x4c\x78\xf1\xb9\xe4\xdc\xbc\x99\x33\xba\x53\x6e\xf2\x85\x69\x32\x20\x81\xc5\x57\x58\xed\x92\xb9\xad\xe5\x1a\xf7\xbb\xd7\x56\x56\xd9\x7c\x71\x3e\xbf\x3e\xbf\x49\xff\x03\x77\x46\xfa\xa2\x79\x1d\x7b\x53\x3f\x58\x3d\x5e\xf1\x37\x3f\xe6\xe0\x73\xeb\x03\x65\xeb\x37\xa8\x2f\x0a\x6f\x7c\x2f\xb2\xbd\xfc\xc6\x5c\xa7\xeb\xb2\xee\xef\x1a\x2f\x84\x3e\x98\x70\x71\xb6\xdc\xae\xae\xd9\xb2\x3f\x0f\xae\x6d\x98\x5f\xfb\xeb\x71\xb6\xdb\x87\x47\xcf\xef\x35\x2f\xde\xc9\x25\x63\x64\xab\xee\x7b\x73\xd9\x8b\x0f\x9a\xd1\x0f\x26\x4f\xb4\x77\x32\x6f\xfc\xec\x5e\x2c\x1c\xf1\x44\x57\x3c\xf2\xb4\xee\x86\xb0\xb8\x44\xe9\x83\xe6\x7b\xde\x08\xdf\x38\xe4\xfd\xa0\xa1\xb8\x48\xf8\xc6\xd6\x4d\x07\x94\xb8\x75\x40\x84\x8c\x5c\xe4\x83\x0f\x27\x98\xda\xdd\xcb\x56\x6f\xda\x7c\xef\xfc\xd4\xd5\x3b\x6e\x4e\xf4\xbd\xd8\xbc\xec\x4d\xdc\x76\x73\x56\xb9\xfa\xbc\x3c\xa6\x6e\x9d\x82\x06\xb5\x82\x7f\xa9\x53\x0e\x70\xf4\x1c\x60\x52\xfe\x20\xb3\xfa\x08\xcb\xfe\x3d\x71\x8f\xd4\xf4\x34\x57\x1f\x3d\xfa\xf8\x5a\x8b\xa0\xcf\xf3\x1d\x4c\xed\x7e\xa7\x99\xce\x0b\x5f\xbf\xac\x52\xc8\x2a\xf6\xbd\x6b\x1e\xff\x9f\xe9\x55\xb9\x87\xbb\xb8\x57\x5d\x54\xde\x21\xb5\xf3\x6f\x2c\xd7\x44\xe5\xeb\x96\x16\x35\x4f\xb8\x64\x76\x2c\x10\xaa\xd8\xbc\x83\xa9\xfd\xb8\xa8\x85\xcd\xbb\x09\x07\x8c\x75\x6c\xca\x3a\xad\x1f\x19\xad\x9c\xb6\xe1\xf9\xa1\xcd\xfb\x1f\x5d\x10\x91\x95\x29\x7f\xc2\x1e\xfd\xab\x7e\x4a\xd8\x2d\xa6\x03\x73\xd7\x5c\xd8\x60\x5c\x73\x62\xdb\x8d\xdf\x8b\xa6\x73\x65\xb3\xb4\xb7\xcf\x7d\xea\xec\x6f\xdd\x15\xfc\x2d\x67\x43\x7e\xd0\x8d\x8e\xb9\x46\x05\x9a\x8f\xf7\x71\x4c\xd8\xb7\xf0\xe9\xb4\xe8\xdb\x6f\xb7\x78\xbf\x2c\x99\x1d\x7c\x6b\x86\x91\xf9\x87\xe9\x17\xea\x7b\x6b\x9f\xc6\x7d\x9f\x16\x2f\x39\xeb\xe7\x82\xe8\x17\x85\x8c\x48\x11\xe1\xd0\x54\x5e\x73\x61\x5d\x5b\x76\xeb\x72\x2f\x10\xd7\xd3\xd5\xcf\x65\x9d\x53\x42\x13\x20\x00\x00\xff\xff\xb8\x01\x3b\x37\x63\x02\x00\x00")
func partsBody_12PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_12Png,
"parts/body_12.png",
)
}
func partsBody_12Png() (*asset, error) {
bytes, err := partsBody_12PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_12.png", size: 611, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_13Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x8c\xbb\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\x7b\xd0\xf7\xb0\x81\x44\x5b\xa2\xb5\xf7\x06\x4e\x61\x03\x33\xe1\x12\xe1\x65\x06\xd3\xe5\x02\xae\x84\x4d\x61\xb3\xfe\xf7\xc7\x46\x48\x5c\x85\xef\xc9\xd9\xf7\x2a\x79\x57\xa7\x31\x31\x20\x01\x9b\x85\xb1\xf5\xd3\xb6\xb3\xba\xe5\x2e\x9d\xf2\xe9\xe7\xbf\x6d\xff\x63\x77\x7f\x36\xbf\x98\x15\xf4\x20\xfb\xca\x6c\x3b\xbd\x78\x6d\xb9\xc9\x33\xea\x9f\x25\xde\x49\xff\x63\x21\xb8\xea\xc0\xf3\xc8\x59\xa7\x03\x1b\xcb\x17\x2e\xb7\xb7\x13\xbc\xfe\x60\xf1\x63\xb5\xd8\xc5\xdb\x5b\x5e\xce\x7d\xb3\x44\xb0\xe2\xa8\x00\x13\xfb\x3a\x21\xa6\x68\x59\x16\xb7\x84\xc6\x58\x69\xd6\xb8\x4b\xc2\xb7\x67\x33\xf9\xd7\x08\x87\xb0\x9a\xed\x65\xf2\x3f\x15\xb7\xe5\xa5\xe8\x8d\x2f\x5c\x6f\x0c\x7d\x1e\xec\xd9\x5d\xdc\xe8\xee\x77\x7d\xee\xf7\x12\xd9\x9f\xc2\xf5\x73\x33\x57\xfb\xdd\x7a\xa7\xb6\x6e\x19\x6b\x5e\xa7\xf7\xc3\xee\x8d\xd9\x5e\x0f\xd4\x72\xee\x9f\xb0\x65\x36\x4f\xfc\xed\x7e\xaf\xca\x4f\xef\x60\xf9\xc5\x65\xe5\x67\x14\xbe\x70\xe4\x64\xca\x59\x30\x98\x59\xe9\x5c\xe4\xe8\x39\xc0\xd1\x73\x40\x6e\xea\x39\x89\x1d\x6a\x7b\x9d\x0f\xb1\x7c\xfe\xe4\xe0\x23\x79\x43\x24\xdd\xbf\xa0\x74\x45\xbd\x29\x43\xe9\x33\xe6\xf7\x4b\x0f\x1d\x5f\x1d\xe5\x3b\x63\xcd\x53\xe5\xfb\x3b\x42\x8e\xee\x5d\x9c\xbc\xf2\x42\xf9\x3b\xdb\x5d\xb2\xdf\x83\xf7\xa8\x6b\xab\x7e\x69\x96\x3e\x99\x78\xfc\x27\x8f\xb9\x7d\x7d\xd5\x06\xf9\xda\xa0\x39\x86\x69\x97\xee\xbe\xbd\xf0\x72\xfe\xcb\xc3\x97\xd2\xea\x6b\x5e\xd6\xe9\xce\x7f\x3b\xf9\x43\xda\xfd\x93\xab\x52\xcf\x84\xbd\x30\x69\x16\xdc\x1c\x9a\xb9\x5c\xc7\x7a\xc3\xdc\x4d\x5f\x38\xdf\xed\xf0\x0a\x69\xdc\x3c\xfd\xa5\x5a\xc1\x37\xa3\xdc\x26\x41\x89\x46\xc1\x1b\x9f\x3f\x14\x35\xbe\xb6\x9f\x6f\x11\xfa\xe0\xce\xf3\xf8\xf4\x3f\x9d\x32\xdf\x94\x8e\xbc\x89\xdf\x3c\x79\xcf\xd1\xef\x9f\xbc\xbb\x38\xef\x2f\xdc\x72\x48\x2e\xaf\xb8\x87\x01\x05\x34\x48\xd6\x30\x9b\xb7\x4f\xb2\x9a\xb0\xdc\x3b\x0f\xc4\xf7\x74\xf5\x73\x59\xe7\x94\xd0\x04\x08\x00\x00\xff\xff\xf9\x9b\xd1\x53\x56\x02\x00\x00")
func partsBody_13PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_13Png,
"parts/body_13.png",
)
}
func partsBody_13Png() (*asset, error) {
bytes, err := partsBody_13PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_13.png", size: 598, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_14Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x8c\x7b\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\x7b\x31\x90\xc9\x50\xa4\xed\xe2\xde\xdb\x2d\x73\x23\x1a\x53\xa3\x1b\xe7\x46\xb0\xee\xfb\xc8\x74\xf8\x45\xcf\xec\x27\xff\x2c\x97\x33\xb0\x7f\xaa\xdc\xac\x90\x63\xc3\xc7\x80\x04\x1a\xf6\xaf\x9e\xf0\xbc\x70\xb3\xdf\xc3\x46\xfb\xfb\xf7\xf5\x7e\x1e\x94\x8f\xbf\xbf\xf6\xfa\x9a\xa0\x65\xdf\x57\x1d\xd0\x4f\x9a\x7e\xa0\x57\xfd\xbb\xf8\x42\x56\xbf\x9e\xdf\x29\xb3\xbc\x1f\x6c\xd8\x31\x77\xdb\x9b\xbc\xc6\xf6\xd8\xfc\x60\xa7\xf0\xe5\x1b\xb4\x8f\xc5\xda\x96\xcc\xbc\xf1\xe6\x75\x31\xe7\x6c\xd9\x9d\x47\xce\xf2\xed\x8d\x7a\x10\xed\x75\x23\x54\x69\xfa\x4a\x59\xb9\xaa\x17\xb3\xe6\x3f\x3a\x57\xed\xbe\xe1\x30\xcb\x7b\xb1\xf2\x1f\x2a\xd3\x77\xdc\x9c\x98\xce\xba\xef\xad\x54\x59\xc9\x93\xe2\x6b\x4f\x8c\xd2\x6c\x4f\x3d\x49\xf3\xff\xa8\x99\xf7\x4d\x64\xfe\xb5\xb2\x75\xab\xeb\x5f\xfa\x5f\x9e\x6d\x7b\x54\xcd\xa2\xa6\x8b\x95\x4f\x7d\xc3\x01\x8e\x1e\x30\x3a\x33\xe5\xc0\xd7\x27\x7a\xb6\x3e\x06\x4c\x9b\x7d\x12\x6e\x7f\xe1\x13\xd6\xf9\x74\xc3\x54\x52\x76\x87\x4b\xdd\x5e\x33\xce\xeb\x09\x13\xcd\x2b\x26\xaa\x7e\x5a\xe0\x3d\x4d\x7f\xdf\xf9\xfe\xe8\x4e\xe1\x3d\x7f\x55\xfa\xab\xce\x69\xdf\x8d\xdd\x71\xf4\xfb\x36\xb7\xfb\x99\x2f\xbe\x5d\x7c\xb0\x43\x3b\xe7\x22\xff\xfe\x02\xe9\x9c\xeb\xb7\xef\xda\x59\xbd\xfd\x35\xe5\x5b\xd3\xaa\xc3\x62\xb2\x3b\x63\xcf\xdb\x48\xe6\x3f\xe5\x97\x56\xda\xf6\xfa\xe6\xf9\x87\x5b\x1c\x22\xf5\x57\x59\xe5\x5e\xfc\xbe\xf6\x97\x45\xd5\x5f\xc3\x94\xa5\xc5\x9b\xac\x6a\xe4\x62\x78\x97\x6f\x0b\xab\xbc\x13\x6b\xf7\x21\xbf\xd0\x36\xee\xa3\xe1\x36\xeb\x9e\x92\xa3\x6b\xab\x9e\x2e\x6e\xb5\x96\x53\xdf\x13\xf2\xe4\xea\xf9\xde\xb2\xb8\x92\x82\x3b\xe7\x1a\x97\xbb\x97\x3d\xaa\x7e\x11\xbd\x42\x2f\x31\x98\x89\xbf\xf7\x8e\x6e\x9e\xd7\x83\xea\x27\xab\x9d\xca\x79\x66\x8b\xfd\xb8\xbf\x7c\xe7\xe3\xff\x1e\xb7\x14\x3f\x1c\x76\x89\x96\x67\x40\x01\x0b\xba\xe5\x67\x5b\xac\xba\xdd\xc4\x11\xb8\x04\xc4\xf5\x74\xf5\x73\x59\xe7\x94\xd0\x04\x08\x00\x00\xff\xff\x20\xc8\xf9\x85\x59\x02\x00\x00")
func partsBody_14PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_14Png,
"parts/body_14.png",
)
}
func partsBody_14Png() (*asset, error) {
bytes, err := partsBody_14PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_14.png", size: 601, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_15Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\x0f\x7a\xba\x38\x86\x54\xdc\x7a\x7b\xf7\x62\xe0\x61\x03\x1e\xb6\x07\x56\xc7\xf9\x72\x0e\xb1\xf4\x9c\x65\xc9\x39\x24\xf2\x6c\xea\xe3\x5b\xd9\x97\xd5\xa6\xe9\xd6\xde\xb7\x76\x5f\xbb\x7f\x92\x6c\xc6\xac\xd3\xac\x0c\x48\x20\x61\xff\x32\x16\xfd\xd7\xc6\xd7\xf7\xf9\xc6\x2d\xd9\xe6\xb4\x22\x5e\xfe\xfd\xee\xba\x1f\x9f\x7f\xa7\xdf\xf8\x75\x4b\xa7\x75\x57\xd8\x12\xfb\xd6\x19\x4f\x4d\xbf\xa7\x33\xed\x15\x2e\x39\x2d\xf5\xe1\x5d\x12\x2b\x7b\x5d\xc6\x8e\xc5\x4e\x79\xda\xe5\x07\x7b\x0f\xbc\x5f\xfb\x76\xa5\xed\xe7\x17\x09\x9b\xd9\xee\x9c\xd7\xb9\xd6\x7c\x70\xfe\xbf\xdf\xe9\xb7\xfa\xdb\xd9\x6d\x82\x0b\xd5\xb9\x7f\x4e\xd1\x31\x7b\x7a\x36\xf7\xf2\x5e\x26\xb5\x0f\x7b\x14\x1e\xc8\xcc\x6a\x10\xdc\xf0\x51\x46\xba\x40\x7a\xa3\xc2\xe3\x48\x76\xe9\x8b\xab\xfb\x55\x1f\x5b\xea\x3d\x50\x7b\x52\xf8\xd8\x32\xcb\xe5\xf7\x04\xc7\x89\x49\xd3\xff\x9e\xbe\xd6\xf1\x9f\xd9\x3a\xc5\x32\xc5\xb2\x20\x35\xa2\x38\xe5\xc0\xda\x82\x1d\x6b\x5d\xd8\xc5\xdf\x3e\x0a\x5b\xda\xec\x5d\x5a\x78\x45\xfa\xa6\xa2\xf6\x4f\xe9\xa8\x03\x7e\x17\xd7\x94\xdc\xd5\x4e\x90\xed\x69\x10\x34\x60\x72\x3b\xc0\x21\xc1\xc8\x3d\x43\xb0\xea\x68\x83\x77\xcd\x2a\xe5\xa2\x5e\xab\x1b\x1d\xe7\x4c\x37\x35\xed\xde\x31\xfd\x55\xc2\xf6\xc9\xcf\x78\x77\x88\xaf\xab\xd4\xbf\x78\x50\x74\xb7\x79\xd2\xd9\xd9\xef\x4c\x17\x95\xbe\x3f\xd4\xae\x3b\xdd\xf3\xe4\xf7\x24\x46\xf5\xf9\x09\xd1\xc7\xca\x75\x1b\x65\xdf\xdc\x2a\x7f\x13\x97\xe3\xa2\x7e\xbf\x7b\xbb\x0e\xf7\x46\x71\xff\x0b\x07\x8f\x15\x4f\x7c\x9d\xc0\xd2\xd3\x70\xdd\xfc\x51\xdf\xe1\xed\x17\xb9\xad\x92\xe5\xeb\xb6\x06\x1c\x4c\x6f\x0e\x39\x9f\x63\xf1\x45\xd9\xea\x7f\x53\x6d\x99\xae\xad\xd2\x8f\x40\xf3\x25\xad\x36\x9b\x1f\x5e\x3d\x24\x2b\x92\xe3\xf1\x61\xf1\xfe\x63\x8a\xaf\xf8\x7e\xc7\x9e\xcf\xdb\x61\xd4\x74\x78\xbe\xd8\x66\xaf\xb3\xcb\x35\xae\x34\x9f\xf7\xf9\xc4\x9a\xd5\xcd\x5a\xb3\x5e\x99\x85\x8b\x01\x05\x4c\xf9\xc4\xfd\x25\xba\xb9\x2c\xab\xf7\xf5\x53\x10\xd7\xd3\xd5\xcf\x65\x9d\x53\x42\x13\x20\x00\x00\xff\xff\x4d\xa2\xf2\x40\x5d\x02\x00\x00")
func partsBody_15PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_15Png,
"parts/body_15.png",
)
}
func partsBody_15Png() (*asset, error) {
bytes, err := partsBody_15PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_15.png", size: 605, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_2Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\xcf\x7a\xba\x38\x86\x54\xdc\x7a\x7b\xd7\xd1\xef\xb0\x81\x80\x43\xa0\xf5\x23\xae\x39\x1d\xa2\xea\x69\x47\x3b\x2d\x5a\x22\x03\x54\xc4\x54\xbd\x16\x7c\xbc\xf1\xf8\xbb\xca\x34\x8f\xde\xfa\x63\x99\xde\x51\x5e\x8c\x0c\x50\xd0\x10\x74\xeb\x6d\xbb\x6c\xe9\xa6\x05\xf5\x96\xfb\xcc\x1e\x6e\xd4\x13\xdf\x31\x35\xe8\xd4\xef\xdb\x9f\x1f\xc6\x57\x54\xfe\xdd\x30\x4d\x98\xc5\x4e\xd6\xec\x90\xbe\x7a\xb0\xa8\x85\xe3\x1d\xe6\x83\xab\x0f\x94\x3f\x3a\x27\x51\xa6\x5e\x22\x6a\x11\x79\xc7\x7a\xa1\xf3\xb5\x2a\x61\xf3\xed\x13\x99\x96\xd7\xfa\x56\x5b\x67\xde\xfe\x24\x9c\x53\xf5\x39\xff\x22\x87\xcd\x56\xb5\x82\x77\xaf\x37\x70\xaa\x15\x3e\x68\xf8\xde\xcf\xfa\x6e\xc5\xa9\xc4\xee\xb4\x4f\x07\xae\x9a\xe5\x36\x09\x4a\x34\xb2\x96\xc9\x8a\x49\x34\xfe\x14\xfa\xea\x5e\xdf\xe8\x6b\xc0\xa4\xbc\xe1\xf5\xfa\xd9\xef\xf6\xed\xfc\xa8\x57\x98\x20\xaf\x56\xbd\x41\x7d\xf2\xec\x68\x51\xf3\xf7\x5f\xaf\x4f\xd6\x11\xce\xa9\x4a\x9f\x77\x4f\x50\xcd\xa2\x3a\xe6\xfc\xa2\xb7\x13\x2a\xe5\x1b\xd6\x5a\x16\x26\x14\xe6\x5e\x5c\xb7\x7b\x33\xdb\xb9\x7f\x6d\x6e\xb1\x96\x1b\xca\x57\xe7\x5c\x3c\x23\x55\x31\xf5\x65\xae\x9a\xc5\x4a\x41\xff\x07\x59\x55\xc5\xfb\x43\x8c\x0e\x9e\xdc\xfe\x2a\x77\x2a\x33\xef\xad\x55\xb7\x85\x84\xf7\x3c\xf2\x5e\x1c\xa8\x74\x7b\xd1\x64\x77\x31\x8b\xca\x27\xab\x99\x77\x77\xea\x59\x7c\xba\xf6\xf1\x81\x0b\x5f\x47\x4e\xf7\x3b\x99\x9d\xdf\xbf\x87\x71\xc9\x98\x9f\xcd\xfd\x76\x60\xdd\x7e\xe6\x35\x17\xaf\x3d\xf4\x51\x2d\xc8\xcd\xb9\x78\x72\x7b\x56\xe3\xe4\xdd\x46\x1b\xf4\x83\x3d\xe5\x66\x30\x6e\xcb\x6c\xf4\xdd\x90\x1b\x95\x30\x8d\x2f\xa7\x2b\x7c\x46\xc2\xc4\xf2\xeb\x4b\xcf\xc9\xdd\xd8\xbe\x53\xbf\x80\x77\x5b\x28\x7b\xc7\x8c\x35\x0b\xf3\x16\xfe\xad\xbc\xf4\xb5\x2e\xc6\x36\x6f\x3d\xef\xef\x1f\x19\x0f\x9a\xde\xad\x3d\xb8\xd2\x5c\xe6\xdf\xe7\x1f\xd5\x77\xad\x65\x6b\x73\x73\xfa\xa3\x36\x08\x27\xbe\x0e\xed\xff\x7f\x62\xe3\x97\x7f\xcf\x2f\x2a\xdb\xfe\xcc\xec\xec\xdb\xec\xbb\xe5\x1d\x03\x32\x58\xf3\x4c\xf8\xec\xfa\xd9\xa9\x6a\xbc\x39\x33\x40\x5c\x4f\x57\x3f\x97\x75\x4e\x09\x4d\x80\x00\x00\x00\xff\xff\x14\x3f\xe0\xde\x69\x02\x00\x00")
func partsBody_2PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_2Png,
"parts/body_2.png",
)
}
func partsBody_2Png() (*asset, error) {
bytes, err := partsBody_2PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_2.png", size: 617, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_3Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\x65\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\xbb\x51\x90\x49\x51\xc0\x21\x70\x03\x6f\xf4\x26\x99\xd3\x1b\x64\xa2\x37\xf1\xf5\x98\x04\x28\x3d\x17\x8b\xa8\xd1\x37\xb1\xfe\xd7\x78\xa7\xa7\x68\x29\x03\x12\x70\xe8\xc8\xe2\x38\xb4\x45\xf4\xd8\x6e\x3d\x0b\x8e\x9b\x6a\x1e\xdf\xa5\xd6\x7d\x3f\x7e\x3d\x7d\xfb\xe9\xca\x1f\x3f\xae\xcf\x74\xac\x6e\x9e\x70\x54\xfb\xda\xfa\xeb\x1f\x04\x77\xbf\x13\xd8\x91\xca\x27\x55\xbb\xd8\x65\xab\x85\xe4\xa3\x9d\x8b\xf2\xab\x1a\xaf\x77\xde\x61\x71\x4b\x60\x11\xbb\xf1\x79\xdd\x81\xd3\x6f\xc5\x36\xba\x70\xf7\x1c\xe0\x80\x21\x26\x65\x03\x28\xe2\xee\x39\x20\xa3\xfd\x6a\xf9\x66\xa6\xd9\x07\xb1\xcb\x72\xf4\x1c\x28\x29\xf5\x5b\x24\x5a\xe1\x1c\x9a\xc0\xe2\x96\xd0\xb8\x39\x47\xc9\xec\x56\xc2\x52\x3b\x81\x3b\xa7\xed\x75\x2e\xa6\xe5\x7f\x3b\x70\xd5\x28\x97\x6d\xf6\xde\x93\xfb\xa5\xa3\x35\xfb\xc4\xe4\xbe\x7a\xcd\x8d\x9c\x3d\x7f\x7f\xaf\x8d\xd1\x9b\x37\x77\xdf\xfe\xce\x9f\x34\xd3\x49\x7e\x4b\xbb\x84\xd5\x33\x6d\x9b\x7d\x29\xd6\xef\xee\x2b\xcb\x33\xa0\x00\x81\x47\x9c\x8c\x25\xfa\x31\x3f\x54\x3c\xde\x82\xb8\x9e\xae\x7e\x2e\xeb\x9c\x12\x9a\x00\x01\x00\x00\xff\xff\x4c\x66\x16\x63\xb9\x01\x00\x00")
func partsBody_3PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_3Png,
"parts/body_3.png",
)
}
func partsBody_3Png() (*asset, error) {
bytes, err := partsBody_3PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_3.png", size: 441, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_4Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x39\x03\xc6\xfc\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x78\x00\x00\x00\x78\x08\x06\x00\x00\x00\x39\x64\x36\xd2\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x01\x15\x0d\x12\x11\x83\xd4\xcb\x58\x00\x00\x00\x1d\x74\x45\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\x64\x20\x77\x69\x74\x68\x20\x54\x68\x65\x20\x47\x49\x4d\x50\xef\x64\x25\x6e\x00\x00\x02\x9d\x49\x44\x41\x54\x78\xda\xed\xdd\xdb\x6d\xe3\x30\x10\x05\x50\xd3\x48\x13\xee\xc4\x85\xa5\x8c\x14\xb6\x9d\x6c\x19\xdc\x1f\x3b\x10\xb2\x91\xad\xe7\x90\x1a\x9d\x03\xe8\x2b\x0e\x2c\xf3\x6a\xa8\xa1\xac\x28\x97\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x64\xf5\xb1\x75\xe5\x7a\x90\x41\x9b\xba\xb5\xdc\xa7\xcb\x9f\xaf\xbf\x97\xc6\xfb\xf6\x9f\xd2\x73\xb8\x8f\x01\x9b\xe4\xfe\x79\x8b\xf8\x4c\xb3\xf6\x29\x78\xdf\x0e\x15\xf0\xb0\x22\x7a\x19\xcc\x45\xe1\xb6\x0e\xb9\xdb\x29\x7a\xe9\x60\x0e\x7e\xaf\x76\xfa\x79\xea\xd9\x03\x5e\x55\x29\x6b\x0e\x8e\x3d\xf7\x69\xa7\xfd\x3a\x7c\x93\xb5\x76\x30\x7b\x69\xcc\x9a\x29\xd9\xaa\x77\xe1\x79\xf1\xd5\x78\x6c\xba\x4f\x8f\xf7\x0c\x1b\xf7\x8f\x33\x2f\x5c\x7f\x06\x77\xff\xbc\xd5\x1e\xa6\x55\x01\x77\xd6\xd8\xad\x98\x31\x52\x06\x5c\x47\xa6\xc5\xd4\xe7\xc3\x56\xcb\xa4\xd2\x22\xd8\x61\xa5\x0c\x8f\xea\xa3\x4f\x87\xbd\x85\x1b\xf9\x86\x35\x6b\x78\x33\xa6\xe4\x26\x0d\x6d\x11\xee\xae\xe1\x36\x5f\xa5\x5c\x85\x9b\xdb\xd5\x10\xe4\xad\xde\xbd\x03\xae\xa2\x56\xc1\x99\xd5\xec\x01\x97\x56\x8b\xfb\xd6\x7a\xea\x3b\xf6\xae\xe0\x72\xd6\xf2\x1d\x7c\xd9\xd1\x94\x75\x70\xec\x5a\x38\x3c\x87\xd0\x2b\x59\x96\x4c\x6f\x0f\x80\x72\xe4\x80\x85\x3c\x2d\xe8\x72\xe4\x80\x85\x1c\x1c\xb2\x65\x52\xf2\xee\x3b\x3a\x60\x17\x3f\x82\xbb\xef\xc8\xef\x83\x4d\xcd\x09\xd7\xc1\xcf\xa3\x51\xb8\x8d\x66\xbb\xa2\x6a\xbb\x6e\xb8\x4a\xcf\x15\x2c\xdc\x0e\x14\xe1\xe6\xad\x5e\xcb\x24\x4d\x96\xea\x15\x30\xdd\x4e\xcf\x02\xee\x33\x5c\x15\x9c\x3c\xdc\xee\xbf\x6c\x58\xfc\xc7\xdb\xa6\xe5\x03\x2d\x93\x84\xdc\x3e\xdc\x3d\xa7\xe8\xd3\xde\x8f\xd5\xfa\x9c\x1b\x55\xc1\xaa\xb9\x83\xea\x8d\x0a\xf8\x3b\xe4\x27\x61\xc7\xdd\x1c\x1f\xd5\x45\x97\xc1\x66\xea\x0e\xd4\x62\x99\x54\x0c\x7b\xee\x80\x49\x1e\xb0\xdb\x76\xb2\x57\xb0\x26\xcb\x14\x9d\x5e\xd4\x9f\xb6\xb8\xab\xb2\x8f\x90\x6b\x9a\x0a\x36\x3d\x8f\x8e\xc7\x2e\x21\x87\x3f\x65\x47\xc0\xe3\xf6\xb8\xf8\x71\x55\xbd\xb9\xcf\xcb\x9a\x2c\x5d\xf4\x36\xd3\xb3\xea\xb5\x4c\x72\x0e\x76\xcb\xce\x29\x14\x01\x33\x99\xc7\x09\x6f\x38\xa5\xf6\xd8\x67\x84\x7e\xe1\x9f\xa9\xd1\x1a\x59\xb3\xd6\xa5\x61\xef\x75\x57\xe5\x47\xe0\x81\x54\x13\x56\x5a\xfd\x11\xc8\xf7\xb3\xaf\xef\x9f\xb7\x25\xef\x73\xe8\x87\xb0\xfc\x5a\xc5\x63\x9d\xe3\x16\x21\xbc\x78\x82\xcd\x26\x33\xca\x84\x2b\x4f\x6f\x2b\x7a\xef\x67\x49\x87\x3f\x65\x67\xc6\x3e\xec\xfd\x8f\xa8\x56\x85\x3c\xf3\xb2\x62\x6d\x95\x41\x74\x17\x5d\x7e\xd9\x46\x5f\xbb\xc1\xba\xb0\xbc\xfb\x59\xd0\xfd\x61\xe5\xc5\x76\xea\x0b\x1d\x8b\x42\x9e\xf1\x3b\xe5\xf9\x1e\x59\x6f\x04\x3c\xc2\x3a\x78\x69\x25\x97\xb9\xaf\x9d\xfa\x3e\x3d\x3d\x0f\xba\xb7\x73\xf0\xaa\xf3\xf7\x94\xf3\xe5\x06\x4d\xcb\x68\x63\xd4\xf2\x9f\x6b\x9c\x21\xe0\x77\xcd\xca\x1e\x9f\xab\x26\x18\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf2\xf8\x07\xdf\x9d\x19\x46\xcc\x82\x4a\x36\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x1c\x66\x0d\xd7\x39\x03\x00\x00")
func partsBody_4PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_4Png,
"parts/body_4.png",
)
}
func partsBody_4Png() (*asset, error) {
bytes, err := partsBody_4PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_4.png", size: 825, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_5Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\xb0\xf9\xca\xe9\x08\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x8c\x6f\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\x7b\xd0\x97\xd9\x50\x80\xf5\x82\x8f\x0b\xbb\x88\xbb\xb9\xcc\x8b\xb6\x47\x2b\x14\x63\x8a\x18\x44\x54\x2e\xa8\x6d\x7b\xfe\xdb\xb6\xb3\xfa\x5a\xfd\xf3\xdb\x27\x9d\x2c\xe6\x32\x20\x00\xdf\xee\x98\xfa\x65\x16\xec\x3a\x77\x5e\xd9\x2f\xef\x9f\xbe\x3d\x7a\x7d\x79\xc7\x2c\x91\x33\xb1\x31\xe2\xeb\x96\x3e\xff\x7e\x5d\xf1\xf5\x7f\x13\xe5\x2b\xe7\x0e\xda\x24\xc4\xae\xfa\xcd\x12\xcf\x62\x95\xdf\x75\x7e\x9a\xe5\xec\x06\xd6\x9e\x06\x41\x03\x73\xfe\x08\x49\xc6\xfe\x5d\x33\xda\xb4\x14\x1f\x4c\x5a\xdc\x15\x76\xfe\x2c\xb3\x9e\xa9\xed\xf2\x9b\x3e\x05\x1f\xbe\x70\x59\xd4\x54\xb5\xb3\xaf\x59\xb6\x99\x3f\xf2\xf6\xfc\x65\xee\xb6\x4a\x21\x17\xd5\x22\x7c\x97\xc7\x7c\x7f\xd1\x50\xbe\xfe\x65\xd7\xfc\x04\x33\x8e\x8a\xed\xb3\xe6\x15\xee\x98\x25\xb9\xe1\xfc\xb2\x50\x93\xb7\xcc\xf7\x96\x2e\x4b\xbf\xf6\xf9\x4c\xc3\xd5\x2d\x5d\x66\x7b\xef\x32\xf7\xd5\xb5\xec\x38\xb5\xf5\xec\xbc\x07\x5f\x9e\x1f\xd9\xfa\x97\x7b\x47\xd7\xaf\xd7\xed\xa2\xab\x6e\xca\xed\x71\xdc\xa1\xcd\x2a\x13\x78\x55\x3b\xee\xb0\x97\xf0\x9c\x4d\xf2\xd3\x1b\xbe\xdb\x96\xdc\x6c\x7e\xbb\xf7\x27\xe3\xec\x47\xbc\x6a\x11\x27\xac\x43\x4a\xa6\x4f\x08\xaf\x9b\xab\xcd\x7e\xe7\x6d\xa3\x0b\x67\x44\x28\xf7\x8e\x68\xd6\x75\x55\x55\xef\x44\x0a\x76\x7e\xdc\xc3\x5f\xc6\x6c\xc6\x5f\xb1\x73\xef\x8e\xd3\x37\x0f\xb0\xb4\xcf\xff\x12\xcd\xfa\xc6\x65\xae\x6c\xc1\xce\x8b\x21\x5b\xaa\xf2\xe4\x36\xf0\xdb\xf9\x6c\xa8\x7a\x27\xf7\x81\x2b\x38\x86\xc9\x6c\x2f\x53\xde\xae\x1b\xaa\x0f\x0e\xb8\xbe\xab\xda\x91\x1d\x7b\x51\x58\x6c\x2f\x8b\xcc\x8e\x1b\x73\xef\xcf\xda\x6a\x9f\xc2\x1b\xf3\x47\xa8\xe0\x81\x48\xf9\xff\x04\xd5\x47\xb9\x97\x1a\x04\xbc\x0e\x34\x06\xef\xf9\xb5\xfe\x71\x8e\xf1\xc1\x55\x95\xcd\x0d\xf2\x22\x1e\x9c\x16\x1b\x96\x09\xaf\xb2\xdc\xb4\xe8\xbd\xe1\xd1\xcc\x7e\xe5\xcb\xfb\xce\xbd\x78\xfd\xff\xb5\xad\x50\xde\x99\x5d\x4b\x64\x37\xbd\x7a\xf0\x24\xec\x96\xaf\x7c\x65\xd7\xbf\xfc\xb3\x6a\x6f\x77\xbe\x14\xfd\xbb\x76\xdd\xff\xa0\xab\x9d\x5b\xf7\x78\x1f\xd8\xff\xee\xa4\xbd\x9a\x4d\x15\x6f\xd9\x8f\x73\x27\x4e\x1f\xbb\xce\x87\x14\x5b\x06\x17\xd5\xed\x1d\x27\xf5\x1f\x95\xea\x92\x05\x71\x3d\x5d\xfd\x5c\xd6\x39\x25\x34\x01\x02\x00\x00\xff\xff\x83\x45\x10\x8d\x88\x02\x00\x00")
func partsBody_5PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_5Png,
"parts/body_5.png",
)
}
func partsBody_5Png() (*asset, error) {
bytes, err := partsBody_5PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_5.png", size: 648, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_6Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\xb0\xf9\xca\xe9\x08\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x8c\x67\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\xeb\xeb\x77\xd8\x40\xc4\xed\xe2\x8d\x24\x4d\x85\x6f\xfb\x65\x58\xaa\x35\x1f\x7b\x2d\xd4\x0a\xcd\xb6\xaf\xb7\x4b\x3f\xa5\xb1\xef\xa3\xbf\xaa\x88\x3c\x3b\x03\x0c\x14\x4c\x17\xfb\x93\x23\x9e\x3c\xf1\x7b\x40\x78\xe0\xfe\xfd\xf7\xd6\xff\xfb\xf1\xf1\x67\xf1\xf5\xfb\x93\x8e\xad\x5a\xea\x5e\xdb\x26\xfd\x71\xf6\x01\xe6\x43\xfb\x94\x5e\x35\x5f\x9c\x7d\xa0\xbb\xfd\xaf\xfb\x17\xb5\x0f\xcd\x85\xab\x5b\xd7\xca\xec\xe2\xb4\x56\x29\x11\xb6\xd0\x79\xe7\xf9\x42\xed\x83\xe7\x9d\xa9\x87\xc3\x3a\xee\x70\x9f\xbf\x35\x63\x47\xfd\xdf\x25\xb7\x4b\xd9\xf4\xf7\xab\x84\xdf\x9a\xbc\x9a\xd5\x6f\xce\xd6\xe0\xe9\xaf\xf4\xf2\xb6\xa9\xe5\x7d\xd3\x59\x67\xd0\xac\xff\x2c\x32\xef\xc1\x0d\xe6\xd0\xa9\xe2\xd5\xbf\x78\xee\x19\xbe\x3b\x91\xfe\xee\x65\x7e\xc1\xc7\x13\xfa\xf2\xcd\xe6\xed\x5a\xd5\x1b\x66\xee\xfe\x50\xe1\x13\xb9\xe8\xec\xbd\xc2\xc7\x17\x78\x37\xab\xde\xba\xb7\xfb\x83\x51\x2e\x5b\xbb\xfe\x65\xdb\x87\xba\x4b\x4f\xf0\x6c\xb3\x79\xff\xd1\xb8\xb3\x51\x7b\xce\x81\x87\xbf\x0b\xe2\x7f\xbe\x5d\x72\x81\x67\xdb\xff\x5b\xcd\x82\x12\x8d\x82\x11\x09\x2c\x6e\x09\x65\x5c\x35\xc7\xcd\x0d\x22\x2c\x0a\x8c\xaf\x4c\xcb\x60\x71\x4b\x78\xc6\x5a\x76\xe1\x14\xdf\x9b\x05\xa9\x9d\x6e\x09\x5e\xec\x79\xdf\x12\x8d\x67\x5c\x65\x9e\x7d\xf4\x66\xe3\xdc\x65\xec\xfb\x3e\x6c\x9e\x96\x51\xfd\x71\x81\x78\xfd\x33\x39\x9d\x4f\x6c\xed\x3a\x13\xcd\x2d\x5c\xf3\x65\x7f\x5e\x3d\x7f\xaf\xbc\xf2\x82\xec\xf7\xfb\x59\xea\xb7\xde\xee\x9b\x69\xfa\xa8\xbb\x7c\xef\x8d\xe8\x1c\xff\x7b\x0f\xcc\x33\x6f\x7a\x9b\x87\xcd\xde\x1b\xca\x7c\x5c\xff\xa6\xf2\x7e\xe9\xd8\x7f\x93\xff\x65\x4e\x74\xaf\x17\xb9\xb3\x54\xa6\xf1\xf4\xa7\xac\x46\x65\xa7\xf3\xbb\x92\x8e\x1f\x8d\x38\x58\x18\xce\xb3\xe7\x8a\xe6\xed\xa3\x11\x0b\x37\xdf\xbc\x5a\xb6\x70\xf3\xcd\xa7\x53\x16\x2e\xd4\x6e\xf3\xe5\xb6\x31\xf9\xa2\x55\xce\xae\xce\x66\xd7\xfb\xb7\xe7\x85\x7a\xe0\x74\x89\xdd\x73\xff\xd9\xbf\x4a\xda\xc3\x80\x0c\x1e\x58\xf4\xc5\xbf\xd7\x9d\xa7\xf0\xe7\x68\x7c\x29\x88\xef\xe9\xea\xe7\xb2\xce\x29\xa1\x09\x10\x00\x00\xff\xff\x49\xe7\x43\xb4\x69\x02\x00\x00")
func partsBody_6PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_6Png,
"parts/body_6.png",
)
}
func partsBody_6Png() (*asset, error) {
bytes, err := partsBody_6PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_6.png", size: 617, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_7Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x98\x04\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\x7b\xd1\xf7\xb0\x81\x40\xc3\xc3\x1d\x49\xec\x66\x89\x4c\xc7\xd2\x98\xcc\x12\xbb\x3e\xb0\x30\xad\x5c\xb4\xc5\xb7\xf6\xf9\xee\xf7\xd5\xee\x59\x7f\x8f\x97\xc9\x78\xdd\x34\x63\x40\x80\x06\x0d\xe5\x9b\xaf\x6f\x8a\xd7\xbd\x65\x8a\xe7\xfa\xf5\xed\xd3\x9f\xf7\xf2\x35\xb5\xff\x4f\x7c\xb0\xfb\xf6\xe6\xb1\x8c\x9d\xc1\x75\x97\xbd\x02\xd5\x29\x7b\x15\xea\x63\x7a\x16\x3b\x3f\xf8\xbb\x62\x83\x30\xfb\xc7\x09\xdc\x46\x4a\x5f\x56\x08\x7c\x6f\x6c\xae\xf8\xf1\x7a\xae\x6c\x65\x48\x57\xf5\x05\x07\xb9\x5d\xb5\x2c\xf9\x9a\x97\x99\xfc\x7b\xab\x93\x9f\xb4\xb7\xf7\xce\x38\x7a\x99\xe9\x7c\x5f\xf5\xd1\x04\x3f\x6e\x69\xc3\x6e\xff\xab\xe7\x1b\xed\x17\xbd\xad\x5f\xab\xe3\x28\xfe\x20\x8f\x4d\xde\x7e\xf2\xf6\x0e\x49\x69\xd3\xee\xf9\xdb\xd4\x16\x25\xbb\xcd\xdc\xe8\xf2\x5e\x3a\xf1\x71\xb1\x51\x75\xd6\x7a\x2d\xf5\xc3\x39\x9d\x6e\x09\x51\xec\x76\xe5\x2e\x0b\xfd\x12\xf6\xcf\xd8\xee\xa2\x6c\xc0\xa4\xbc\xe1\x00\x47\xcf\x01\x8e\x33\x53\xd8\x1d\x98\x8e\x4b\xab\x32\x55\xc7\x44\x56\x77\x7e\xdb\x71\x49\xee\xcc\xab\xc6\xf6\xd4\x5d\x07\x79\xc4\x7e\x5e\xb7\x98\xf2\x3b\x66\xcb\xde\x1d\x87\xe5\x72\xc4\xae\xf3\xd9\xb8\xac\xab\x17\xbf\x5b\xb5\x72\xde\xcf\xeb\xad\xcb\x59\xf2\xa7\x2c\x6a\xd4\xbd\x7a\x35\xbd\xe0\xf8\xd2\xaa\x6f\xac\x73\x1f\x7a\x86\x1d\x67\x57\x58\x1c\xfc\x60\xdd\xc4\x68\x56\xb1\x9d\x17\xe5\x76\x84\xff\xcd\x3e\x32\xf3\xf8\xe2\x1e\xe3\x1b\x3e\x79\x42\x37\x24\x77\x3a\x3e\x28\x4a\x7f\xb2\xe2\xfb\xa4\x9f\xe2\xff\x44\xe5\x5b\x78\x1a\x3f\xdf\x67\xd1\xdb\x7a\x77\xcd\x87\x89\x73\xb5\xcc\x63\x0f\xf3\xec\x2c\xa8\xb9\xb5\xed\xeb\xbe\x0b\xaa\x8f\x32\xb6\xdc\xe2\x89\x2b\xdb\xd9\xd7\xb7\xfb\x95\xdc\xf6\x23\xcd\x13\x78\x0a\xc3\x67\x1f\x3c\xfd\xe6\xe4\xcc\xb8\xfb\xab\xca\x57\x6a\x7e\x7f\x7c\x62\xfd\xbb\xf5\x55\x3c\x9e\x82\x56\xc9\x37\xf4\x57\xd7\x4b\xbe\xbc\xd1\xb4\x8f\xdb\xf8\x64\x7d\xed\xcb\x8f\x0a\x89\xcf\x7c\xe2\x54\x73\xb6\x1e\xe0\xef\xad\x79\xb6\x2c\x73\x66\xe1\xea\x1f\x33\x57\x1c\xee\x0b\x5c\x7d\xf6\x9a\x59\xe3\xfb\xb9\x27\x45\x0f\x85\xf1\xd5\x7c\xf6\x59\x27\xb2\xcd\xf9\xc1\x6a\xa5\x74\xbb\x57\x1c\x35\xc7\x8b\x62\x4d\x73\xa6\x1f\xa8\x77\x3b\xf7\x69\x4f\xc4\x03\xf6\x96\x77\x02\xdb\xa3\x1f\xbc\x3f\xd1\x7b\xdf\x1e\x29\x42\x19\x0e\xec\xaf\x61\x72\x37\xdb\x7a\x69\x43\xcc\xa2\x5b\x20\xbe\xa7\xab\x9f\xcb\x3a\xa7\x84\x26\x40\x00\x00\x00\xff\xff\xa3\x77\xcf\xd9\xad\x02\x00\x00")
func partsBody_7PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_7Png,
"parts/body_7.png",
)
}
func partsBody_7Png() (*asset, error) {
bytes, err := partsBody_7PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_7.png", size: 685, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_8Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\xb0\xf9\xca\xe9\x08\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x8c\x5b\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\x6b\xe8\x77\xd8\x41\xa0\xed\xe2\x9b\xae\xa6\xcf\x01\x05\xff\x67\x35\x7d\xbe\x30\x93\x4d\x51\x48\x90\x73\xc9\x89\xdf\xe7\xdf\x54\xcb\xca\x7e\x3c\x6e\xe1\x9d\xb4\x5e\x5f\x9c\x01\x06\x1e\xf8\xb7\x39\x7f\x58\xbd\xf8\x74\xa1\xb4\x2f\xb3\xcd\x91\xd7\xc7\x4f\x5f\x3d\x9f\x7f\xfe\xfd\xd3\xbe\x87\x2b\xa4\xbe\x7f\x7b\xb0\xfe\x83\xf2\x0f\x81\x1d\x91\x77\xb4\x26\xb6\xef\xe0\xe7\xb5\x65\xc9\x93\x30\xaf\x9c\x95\x3e\xf5\xa3\x6f\x7f\xf5\x67\x6b\x39\xa6\xff\xc9\x55\xda\x47\x7c\xff\x3a\xeb\x18\x1f\x9c\x5a\xe3\x6a\x27\xa4\x56\x39\xeb\xde\xbd\xc9\x73\x64\x7e\x64\x98\x9c\x0c\xbb\x28\x1a\x7e\x56\xf4\x5f\xab\xd4\xa3\x6f\x7d\x73\xc4\x7e\xbc\x10\x2b\x2b\x7d\xa2\x99\xf7\x7e\xeb\x51\x91\xed\xdf\x4f\x55\xbd\xfb\x26\xbe\xf7\xf6\xa9\xaa\x19\x77\xee\xbd\x3f\x7e\xf9\xc9\x37\xbb\xea\xb3\x53\xf5\x73\xae\xbf\xb4\xfd\xbc\x95\xbf\xb0\x7a\xfe\xaa\xf9\x7b\x9e\x7f\x7b\x76\x5b\xa5\x51\xf0\xc6\xaa\xc8\x04\x6e\xed\xe5\x19\x2c\x6e\x09\x2c\x62\x12\x8d\x82\x10\x14\x91\xc0\xe2\x96\xb0\x8d\xaf\x26\x5d\x5a\x69\x16\xcb\xb6\x97\xb3\x82\x4d\x98\x94\x0d\x98\xb8\x7b\x0e\x70\x80\xd1\x9d\xc2\x6f\xc7\xdb\xef\x7f\x57\xdf\xd9\xfb\x74\x4e\xae\x4c\x58\xad\xdd\x9e\xda\x17\x9b\xbf\xbd\x88\xd8\xc7\x79\xba\x6f\xe1\xf9\x3b\x16\x36\x4f\xa5\xe7\xe5\x6e\x2b\xb5\xa8\xde\x6e\x1d\x2d\x69\x36\xe7\xd6\x93\x03\xba\xca\xeb\x6b\xa6\x39\xbf\x29\x3b\x74\x76\x9b\x50\x5c\xd9\x9a\xc9\xeb\x37\x69\xfc\xdf\x37\xe7\x83\xc8\xb4\x2f\xa7\x33\x4e\xb9\xf9\x55\xf6\x05\xb5\xbe\x5e\x72\xca\xd5\xaf\xca\x63\x9a\xfa\x7c\x53\x1b\xdd\x70\x5e\x99\xfd\x0c\xde\x35\x7b\x62\x8f\xea\x4b\xbb\x3d\xfa\x7a\x75\xe5\xf5\x9a\xf0\x7d\x61\x96\x69\x93\x82\xe5\x7d\x22\x4b\x9b\x16\xab\x59\xfe\xcd\xeb\xe5\x2b\x97\xd6\x89\xac\x09\xad\xb0\x28\x99\x7e\x20\x7c\xa1\xac\x3d\x03\x32\x48\xc8\x9f\x2f\x11\x31\xb1\xf5\x31\x33\xcb\x7f\x10\xd7\xd3\xd5\xcf\x65\x9d\x53\x42\x13\x20\x00\x00\xff\xff\x80\x51\xd1\xb0\x50\x02\x00\x00")
func partsBody_8PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_8Png,
"parts/body_8.png",
)
}
func partsBody_8Png() (*asset, error) {
bytes, err := partsBody_8PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_8.png", size: 592, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsBody_9Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xa5\x02\x5a\xfd\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x78\x00\x00\x00\x78\x08\x06\x00\x00\x00\x39\x64\x36\xd2\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x01\x15\x0d\x12\x12\x1a\xdd\x9a\xe2\x00\x00\x00\x1d\x74\x45\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\x64\x20\x77\x69\x74\x68\x20\x54\x68\x65\x20\x47\x49\x4d\x50\xef\x64\x25\x6e\x00\x00\x02\x09\x49\x44\x41\x54\x78\xda\xed\xdd\xeb\x6d\xdc\x30\x10\x85\x51\x8d\x9a\x48\x7b\x49\x65\x76\x7b\xae\x42\xf9\x13\x04\x30\x60\xf8\xb9\x22\x87\x97\xe7\x14\x60\x98\xfa\x76\xb4\x7a\x30\xce\x71\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb0\xa6\xcb\x21\xf8\xbc\x12\x76\xa9\x63\x10\xb9\xb8\xff\x61\x9f\xff\xfc\x7a\xf8\x0f\xff\xfd\xf4\x12\xfd\xc1\xa8\x5d\xc3\xde\xf8\xa1\x28\x81\x3f\x19\xb7\x5b\xd8\x6f\xc4\x2f\x81\x43\xc2\xbe\x13\xba\x04\x0e\x8b\xdb\x29\x72\x97\xc0\x57\x52\xd8\x4e\x91\x4f\x71\xef\x35\x7b\x6d\x25\xee\xd0\x49\xae\x9d\x26\x78\xc7\x27\x52\xd7\x4e\x81\x8f\x5d\xa6\x77\xe6\x5a\x4f\xd3\x9b\xbd\xf6\xd3\xf4\x66\xaf\xf9\x3c\x88\x26\x70\xf8\x69\x5a\xe0\xf0\xd3\xb4\xc0\x4e\xd1\x3c\xd2\x0f\xde\x3f\x2f\x15\xb8\x46\x2f\xb4\x99\x32\xc1\xac\x1f\x78\xb7\x29\x9e\xb1\xde\x99\x81\x6b\xd3\xa1\xaa\x6d\x26\x78\xa7\x29\xde\xf1\x6d\xd2\x36\x53\x3c\xf3\x43\x7c\xee\x7e\x00\x06\xae\xad\x76\x9e\xa0\xb8\xfd\x58\x1d\xe2\x76\x3b\x45\x46\x45\xb6\xab\xf2\x9d\xc8\x2b\x87\xee\x12\xb6\xfb\x45\xce\x9b\x6f\x5b\xba\x46\xef\xb6\xd9\x7d\xe5\xab\xd8\x56\xa7\xf1\xce\x61\x57\xbf\x4d\x99\xb6\x1b\xf3\x8d\x2b\xfe\xd6\xc7\x70\xe5\xfb\xd0\x61\xd3\xbc\x5a\xd4\xa4\x07\x0d\xb7\x47\xee\x76\xd1\xf4\x55\xab\xbf\x4d\x2a\x83\x90\x1d\xf8\x38\x6e\x7c\xb7\x9c\xf0\x84\x2d\xe5\x7d\xf0\x9d\x1b\x08\x4a\x60\x04\x9e\x74\x0b\x23\x70\xd0\x5a\x1e\x7e\x2a\xfd\x77\x75\x7e\x09\xdc\xe8\x96\x89\xbc\xc0\xd7\x80\xfb\xe1\x65\x3f\x3c\x95\x30\x8d\x77\x3f\xcd\x9a\xb5\xdd\x26\x29\xf0\x35\x32\xd8\x0f\x2f\xe0\x4a\xe0\x6f\x84\x5d\xe5\xfd\xaf\x97\x0d\x5f\x8c\xbb\xf2\x0e\x8e\x15\x62\xcf\xfa\x85\xae\xe0\xfd\x57\xad\xa2\x0b\x1c\xfe\xbd\x5d\xe2\x0e\x0b\xbd\xed\x1f\x42\x8b\x37\xf3\x89\x98\xc0\xe1\x91\x05\x0e\x8f\x2c\xf0\xe4\xfb\x7f\x81\x33\xa7\xd8\x04\x9b\x62\x81\x4d\xb1\xc0\x08\x1c\x7e\x45\x2d\xb0\x09\x7e\x3c\x9b\xe3\xb2\x03\x97\xc3\xee\x3b\x38\xde\xa8\xb3\xd8\x99\xbe\xc0\xe6\x2a\x35\x70\x99\xde\x31\xc7\xc0\x7f\xab\x13\x1c\xb7\xcb\x24\x45\xfe\x09\xa5\x0f\xbe\x92\xb6\x0a\xfc\xea\x86\x3f\x7c\xaf\xd6\xf0\xe3\xdd\xf1\xbb\xb0\xfd\x1e\xe9\xee\x51\x57\xbb\xd8\x59\xf5\x9f\x8d\xb8\xdf\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xa7\xbf\x73\x03\xad\x3c\xa4\x1d\xc3\x03\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x3c\x2a\xd5\x79\xa5\x02\x00\x00")
func partsBody_9PngBytes() ([]byte, error) {
return bindataRead(
_partsBody_9Png,
"parts/body_9.png",
)
}
func partsBody_9Png() (*asset, error) {
bytes, err := partsBody_9PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/body_9.png", size: 677, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_1Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\x0f\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\x71\x9a\xaf\x29\x80\x87\xf5\xc0\xb5\x1f\xff\xf7\xc7\x98\xef\x32\x78\xf8\xd4\x94\x45\xc3\x38\x3b\xcb\x89\x7f\x6f\x90\x12\x03\x2a\x68\xf8\xbb\x54\xcc\xc5\xc5\xa5\xf4\xad\xa7\x19\x4f\xc6\x93\x7f\xab\x56\x29\x19\xdf\xfe\xfa\xfc\x66\x1a\xcb\x6b\xeb\xc7\xe5\x11\x5b\x15\x57\xcc\xfa\xd5\xdb\xb9\xc1\xf7\xc3\xc6\x9f\x7e\xfc\x1f\xad\x57\xfc\xd9\x9a\xe7\xfc\x56\xd5\x46\x4a\xfe\x7c\xf5\x55\xce\x1f\x2f\x1e\x57\x2e\xc9\x7b\xe8\xa1\xc7\x38\xff\xe9\x7f\xb5\x62\xbd\x15\x51\xab\x67\x73\x55\x7e\x39\x28\xf8\xe1\xe4\xb2\xdf\xc5\xbe\xed\x0e\xb7\xf7\xb9\x9e\x67\xdd\xf2\x35\x77\x47\xf2\x8e\xed\x33\x1e\xd4\x6f\x6b\xe5\x5b\x1d\xd4\x6e\xba\x32\xac\xec\x61\xcc\xaa\xe8\xc8\xf5\x7a\xf7\x17\xfb\xcd\x7f\x9a\xf5\xe1\xdf\x2b\xb5\xbf\x8c\x0c\x84\xc0\x83\xb0\xb8\x4a\x13\x1b\x41\x95\x7f\xbb\xc2\x40\x5c\x4f\x57\x3f\x97\x75\x4e\x09\x4d\x80\x00\x00\x00\xff\xff\x90\x65\xfe\x01\x7c\x01\x00\x00")
func partsEyes_1PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_1Png,
"parts/eyes_1.png",
)
}
func partsEyes_1Png() (*asset, error) {
bytes, err := partsEyes_1PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_1.png", size: 380, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_10Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\x0b\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\x79\x3b\xaf\xd9\x40\x80\xd5\x61\xdb\xa3\xff\xf5\x37\x6b\x33\x55\xc4\x7f\xba\x79\xab\x4c\x3b\x63\xa3\x96\xa0\x59\xbd\x87\xcd\xfa\x36\x1b\x03\x32\xa8\x99\x16\xd0\xb4\xec\xd3\x94\x5b\xad\x0a\xb7\x92\xa7\x1a\xc9\x59\x29\x05\x5d\x31\x30\x6a\xff\xc5\xb5\x50\xeb\xdb\xfa\x06\xbe\xf9\xc7\x73\xce\x44\xae\x90\x74\xbe\x67\xdc\x76\x9b\x6b\x1b\x9f\xba\xd2\xb6\x0e\x09\xbf\x86\xc0\x1d\x93\x5f\xfb\xfb\xb3\xc8\xd6\x28\x3d\x48\xce\xd8\x9b\x74\xfd\xbe\xbf\xd5\xda\x2d\x87\x64\x7b\xab\xff\xbc\x7b\x3e\xef\xc2\x41\x71\xdd\xb3\x73\x3f\xcc\xf2\xfe\xa2\x3d\xe1\x5c\x69\xaa\x48\x5c\x7e\xeb\x89\x14\xff\x6b\xfb\xce\x16\x58\xcb\x6e\x15\xf1\xda\xab\xd4\x33\xed\x5f\xdc\xf3\x7b\xb6\x3f\x6c\x1f\xaf\x59\xd3\xbd\x6b\x53\xca\xfa\x92\xfc\x67\xcf\xdf\x9c\xb8\xae\x6c\xf6\xb9\xfe\xcd\x92\xa9\xd5\x55\xfd\x0d\x3c\x77\x7f\x77\x34\xdc\x8f\x7c\xa1\xa3\x68\xa7\xf7\xe0\x71\x51\xcd\x1d\xb1\xd8\x9d\xc9\x11\x15\x81\x9f\x79\xf6\xed\x5a\xfc\x6a\xd1\xff\xe5\x87\xd3\x26\x2f\xda\x5e\x7b\xea\xca\xcd\x99\x4c\x7d\x37\x1d\x8f\x9f\xe4\xeb\xce\x7d\xbb\xc2\xf8\x6b\x77\xf8\xa9\xc5\xa7\xee\x6d\xcb\xd8\x90\xda\x35\xb5\x79\xf2\xcd\xcc\xb0\xd5\xd5\xef\x6b\x4e\x4c\x34\x7d\x90\x76\x62\xf2\xf6\xfb\x33\x7a\xb7\x6e\x7a\xc3\xa7\xd6\xd8\x70\x5f\xf0\xd3\x8b\x09\x8f\x8f\xbc\xd7\x5e\xed\x5d\xb3\xad\x60\x33\xbb\x8d\xd5\x9a\x0e\x6d\xb5\xd3\x87\xe6\xfd\xf8\xf6\xf5\x73\xfb\xff\x5b\x2d\x81\xc6\x0c\x84\x80\xdd\x25\xf3\x43\xd7\x6e\x29\x4e\x71\x7a\xfd\x1b\xc4\xf5\x74\xf5\x73\x59\xe7\x94\xd0\x04\x08\x00\x00\xff\xff\x3f\x31\x86\xdf\x0c\x02\x00\x00")
func partsEyes_10PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_10Png,
"parts/eyes_10.png",
)
}
func partsEyes_10Png() (*asset, error) {
bytes, err := partsEyes_10PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_10.png", size: 524, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_11Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x8c\xca\x9e\x2e\x8e\x21\x15\xb7\xde\xde\xba\x98\xd5\xec\x20\xc0\x7a\xa1\xe7\xc9\xff\xfa\xca\xcf\x01\x5e\xdc\x9d\x41\xaf\xdb\x2a\x8e\x17\xcf\x73\x2d\x58\x5f\x7e\x8d\x35\xdf\x9c\x01\x01\x2c\x36\x6e\x62\x99\xed\xf6\x6b\xd6\xdd\xd4\x1d\xb2\x6f\x24\xec\x25\xc3\xa7\xb2\x95\x73\x7c\x2b\x5f\xe1\xcf\xfd\x4d\xb4\x28\xf3\xc3\x73\xb7\x17\x0b\x19\xae\x1d\xf2\xcd\xc9\xaf\x3a\xf0\x38\x54\x82\xbd\x49\xc2\x7a\x7d\xaf\x47\x4d\xe6\xb5\x3b\xef\xd9\xfa\x66\xbe\xf5\xdd\xc6\x72\xbd\xbc\x4c\x59\x76\xf2\x39\xbb\x79\xe1\x6e\xa5\x67\x77\xc4\xbf\x6a\xbf\x76\xc9\xf0\xce\xdc\xc7\xdb\x72\xab\x17\xbb\x7f\x39\xf3\xf1\x77\xff\x37\x2e\x8b\x94\xf9\x79\xfb\xb7\xba\xb2\xc5\x84\x6e\x9e\x75\xa5\xca\xe6\xb8\x79\x85\xdb\x89\xb9\xc7\x3f\x87\x7e\x7b\xe0\x3d\xdf\x66\x11\xf3\xbd\xc2\x10\xab\xa3\x5b\x7e\xb4\x54\x1f\x4f\xb8\x7f\x63\xc7\x8e\x29\xbd\x2f\xf6\x6f\x37\xdf\x74\xc8\xfb\x73\x80\x9e\xf5\xac\xf5\x97\x1e\xcc\x12\x49\xe0\xb4\xd8\xbc\x77\x6b\x69\x6d\x55\x75\xf0\xfd\x33\xe5\x7f\x4a\x3f\x7e\xe9\xf6\xfb\xb4\xef\x76\xd2\x97\x35\xac\xb5\x06\x33\x2e\xa6\xe4\xde\xb2\x39\x92\xf1\xc3\x87\x81\x10\x28\x90\xe2\xb7\x0c\xf5\xb7\x5a\xab\x2e\x18\x07\xe2\x7a\xba\xfa\xb9\xac\x73\x4a\x68\x02\x04\x00\x00\xff\xff\x53\x2b\x55\xd6\xbf\x01\x00\x00")
func partsEyes_11PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_11Png,
"parts/eyes_11.png",
)
}
func partsEyes_11Png() (*asset, error) {
bytes, err := partsEyes_11PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_11.png", size: 447, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_12Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\x4d\x9e\x2e\x8e\x21\x15\xb7\xde\x5e\x33\xe4\x6b\x50\xe0\x61\x0d\x50\x50\xab\x92\xde\xf3\x5f\xf3\x8b\x99\xd1\xc3\x07\x29\x77\x66\x6c\xa8\xcc\x7f\x7d\xe3\xdf\xb2\x4c\x2f\x06\x54\xe0\xa3\xc8\xfe\x6a\xe9\xec\x8b\xd7\x85\x32\xa3\xd7\xff\x5a\x77\xfd\xf1\xc9\x3d\x6f\x93\x25\x73\x9f\xff\x4f\x0f\x92\xd9\x78\x83\x45\x27\xc1\x26\x72\x9e\x0e\x03\x31\x20\x21\xcd\xfc\x5b\x17\x3b\xef\xf2\xae\xf6\x00\x10\xd7\xd3\xd5\xcf\x65\x9d\x53\x42\x13\x20\x00\x00\xff\xff\x49\x4f\x22\x42\x1e\x01\x00\x00")
func partsEyes_12PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_12Png,
"parts/eyes_12.png",
)
}
func partsEyes_12Png() (*asset, error) {
bytes, err := partsEyes_12PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_12.png", size: 286, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_13Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\xa7\x7a\xba\x38\x86\x54\xdc\x7a\x7b\xeb\xf6\xba\x26\x07\x1e\xd6\x00\xaf\x3f\xff\xe3\xdf\x55\x86\xb2\xd8\x1c\xe2\x09\x88\x79\x7d\xf4\x48\x74\x81\xd9\x5b\x91\x47\x06\x0c\x0c\x0c\x1f\x54\xa4\x6a\xfd\xcb\xfe\xd5\xf9\x4d\xe1\x66\x7c\xee\xf5\x41\x84\xab\xfc\xfc\x6b\x11\xbe\x70\x51\xf1\x7b\xcd\xc5\x4f\x3f\x5b\x56\xda\xbd\x3d\xfd\x5c\x52\x7a\xbe\x8c\xa5\x70\x96\x8f\x5c\x68\xe9\x43\xb1\xbf\xf7\x1b\xb5\x59\x63\xcb\xab\xee\x15\x39\x71\xec\xaa\x38\x31\xff\x9e\xfa\x93\x6e\xde\x48\xef\xa9\x92\xf1\x7c\x29\xf3\xd9\x4c\x6e\xdf\x3b\x37\xe7\x51\x13\xfb\x8c\xb9\x7d\x6b\x5d\x76\xcc\x5c\xef\x2d\x21\xb8\x7b\x53\x57\xf7\xfc\x93\x1f\x4f\x3f\x3c\xc7\xf2\xf7\x6b\x95\x8d\xde\xbe\xd2\x3b\x1b\x53\xcf\x2f\xdb\x21\xf6\x6e\x9e\xae\x4e\x97\x8e\xc7\x1d\x9d\x2b\x15\xe7\xcd\xef\xdf\xfa\xe4\xb4\xbb\xcf\x3a\xe4\x43\x89\xa1\xd6\xb6\x37\xcb\xca\x3f\xcc\xfb\xf6\xe8\x61\x1e\xa3\xbf\xf3\x3a\x91\x37\xcb\x42\xc2\x6e\x95\xe6\x44\xee\xa8\xdb\x5f\x52\xa9\xb4\x27\x79\xf7\x3d\xe1\x37\xaf\x26\x6c\x2d\x3d\xf0\x4a\xea\xc3\x9d\x83\x66\x1c\x3f\xb2\x14\xd3\x0f\x6f\x3d\x23\x67\x69\xdb\xc7\xf5\x3d\xad\xba\xa8\x4c\x63\x92\xde\xfe\x54\x1d\xb1\x77\x77\x52\xaf\x5c\x3c\x68\x37\x3f\x66\xba\xfc\xaf\x63\xeb\x34\x5d\xf6\x6c\x79\x7a\xec\xe1\xf1\x83\x87\xc3\x57\x26\xf0\x73\xfe\x58\xc0\xf5\x5e\xb6\xc8\xee\xed\xef\xa7\xeb\x8e\x3f\xee\x11\x90\xe6\x8d\x76\xe7\x89\x7f\x9a\xbf\x49\x26\xee\xe0\xdc\x43\xb9\xb1\x27\x2d\xef\x3c\x31\xcb\x3c\x7a\x7a\x49\xfe\xb7\x53\xc6\x76\xe7\x0f\x5e\xce\x5b\x9d\x1d\xa8\xbb\xab\x22\xfd\x53\xff\xa4\x45\x53\x75\xee\xc8\xf3\xff\xbc\xf6\xb0\xcf\x5e\x6e\xd3\x29\xd3\x0e\x46\x06\x62\x40\x41\x6e\x7d\xc8\x92\xf6\xff\x93\x7f\xdf\xc8\x06\x71\x3d\x5d\xfd\x5c\xd6\x39\x25\x34\x01\x02\x00\x00\xff\xff\x74\x4c\x2b\x1c\x31\x02\x00\x00")
func partsEyes_13PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_13Png,
"parts/eyes_13.png",
)
}
func partsEyes_13Png() (*asset, error) {
bytes, err := partsEyes_13PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_13.png", size: 561, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_14Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\xbb\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\x79\x31\xeb\xb0\x01\x0f\xeb\x05\x8d\x37\xff\xeb\x23\xab\xb9\x24\xae\xfb\x05\xbd\x70\x5e\x33\x87\xb9\xb5\xb7\xb4\xf5\x89\xdb\xa6\x37\x79\xd2\x10\x77\x30\x6c\x98\x53\xf1\x71\xeb\x73\xe9\x77\xee\x7b\x4c\x2f\x9c\x39\x5f\xa3\xbc\xe8\x8e\xed\xcd\x6e\xb6\x9b\xcb\xa7\xcf\xdc\x29\xbb\x5e\xef\xc2\xa5\x55\xac\x73\x7c\x1b\x6e\x86\xbf\x8b\x5c\x70\xf6\x7e\xd0\x01\xfe\xfc\x83\xbe\x4b\xe7\x6d\x7b\xfa\xf8\x7b\xc7\x8b\xd5\xd6\xab\x59\x64\x45\x57\x7f\xe7\x78\x33\xdb\xec\x4e\x7b\x7c\xaa\xad\xde\xd5\x45\xfd\x06\xb7\x37\xf4\xcd\xff\x6d\xba\x23\xbe\x7f\xff\x8c\x2d\xd3\x3f\x85\xe7\x5a\xed\x8b\x4a\x5f\x7f\xab\xe4\xf6\x3a\x6d\x9e\x44\x55\xad\x1d\x6b\xcf\x45\x36\x88\x47\x2b\x07\x7f\xd1\x6a\x17\xcd\x9d\x2d\x97\xdb\xf9\xcb\xe1\xbc\x1c\x07\xa3\x7d\xc1\x5f\x5b\xee\x95\xb5\xfe\x2e\x35\x2d\x71\x1b\x67\x85\xf3\x5b\xe8\x2d\x7b\x90\x28\x6d\xbf\xfa\x47\x56\xe2\xfb\xd0\x55\xdf\x57\x7d\xed\x5b\xf6\x66\xf5\x05\xed\x9c\xc9\x61\xfb\x1b\xf6\xec\xbe\x2f\xdb\x7a\x63\xfd\xc5\xbb\xe9\x53\x35\x1e\x4e\xd5\x57\x7a\xcf\x52\x9e\x1e\x25\x97\x3b\x75\x15\xcb\x1e\xfd\xb8\x7d\x87\x3f\xfc\x4a\xcc\xba\x36\xed\xf7\xff\xf5\x66\x8e\xd3\x57\x3d\x08\x3c\x3d\xd7\x96\xe5\x6d\xe3\xb1\x25\xbb\x9c\x0f\xf0\xe7\x5f\xde\xdc\x25\x1f\xfa\xfa\xc9\xc3\x0d\x6c\xf6\x5f\x37\x24\x6f\x63\x3b\xbf\x8f\x7b\x9d\x8d\xeb\x7b\x57\xb9\x4b\xdf\x4a\xab\x37\x58\xdd\x16\xb6\x7e\x11\x91\xc2\x21\xcd\x9b\xb0\xf8\xc1\xea\x79\x9e\xee\x77\x73\xde\xe7\xcf\x97\x29\xd1\xb1\x6b\xb8\xbb\xf2\xdc\x41\x97\xdc\x13\x51\x39\x0c\xdd\xf2\x7b\xf8\x19\x88\x00\x15\xeb\xeb\xd3\x63\x44\xff\x30\x58\xbd\x30\x06\x71\x3d\x5d\xfd\x5c\xd6\x39\x25\x34\x01\x02\x00\x00\xff\xff\xd2\x8f\xd0\x27\x27\x02\x00\x00")
func partsEyes_14PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_14Png,
"parts/eyes_14.png",
)
}
func partsEyes_14Png() (*asset, error) {
bytes, err := partsEyes_14PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_14.png", size: 551, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_15Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\xf5\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\xed\x28\x74\x48\x81\x87\x35\xa0\x60\xcf\xff\xa9\x8f\x97\x69\x95\x6d\x89\xbe\xfd\xe7\x7b\x1e\x43\x3c\xd3\xc9\x2b\x86\x0c\x48\xe0\x5f\x6a\xdb\xda\xed\x97\xae\xd5\xfb\x73\x6d\x7f\x35\xf7\xfd\x1c\xc9\xfd\x6f\xa3\x5f\x9c\x94\x8d\xbe\xa1\xfa\xc0\xee\xf8\xf7\xd2\xa2\xf9\xcb\xcd\x15\x9f\x2c\x11\xfa\x2b\x58\xd2\x75\x9b\x63\x5a\x01\xbf\xfa\xde\x45\xa7\xe5\x18\x1e\xf0\xd9\x5d\xb5\xb5\x61\xbd\xa3\x71\xa7\x76\xf6\x96\xbd\x4b\x6e\xbf\x73\xf6\x92\x8f\xc9\xfc\x9b\x5f\x22\x3f\xc7\xa8\xbd\x8f\xc7\x42\xf3\xce\x12\xa1\xbd\xd7\xb2\x54\x6f\x9d\xfc\xda\xf5\xee\x92\x92\xea\xb6\x2e\x86\x1d\xcd\xe7\x8b\xf8\xa5\x43\xcb\xb8\xbe\x3f\x38\xbc\x5b\xf3\x81\xdb\xc3\xba\xcc\x85\x51\xef\x5c\xef\xb8\x97\xb3\xdb\x16\x72\xee\x70\x3e\x79\xeb\x50\xac\xf3\x3b\x9b\xbb\x46\xab\x64\xf6\x2e\x8f\x71\x9b\x2a\x17\x59\x2b\x1f\xed\xfd\x22\xf7\xbb\x62\x21\x5f\xf4\x37\x86\x80\x45\xeb\x03\x16\xdd\x5e\x6f\xff\x69\xf6\x9a\xa5\xa1\xab\x2e\xfe\xb9\xdf\x7a\x71\xfd\x8b\x58\xee\xd4\x90\x9b\x86\x77\x9a\xaf\x6f\x6d\xd0\x8f\x99\x95\xec\x36\x35\x90\x71\x79\xcb\x2c\xa9\x82\x27\x0e\xca\xdb\x7c\x7f\x05\xae\x5b\xde\xf0\xfb\xeb\xa1\x97\xd5\x8c\x0c\x38\xc0\xf5\x4f\x0c\x5e\xea\xe1\x26\x59\xc7\x9a\xb6\x82\xb8\x9e\xae\x7e\x2e\xeb\x9c\x12\x9a\x00\x01\x00\x00\xff\xff\x52\x5c\x21\x6f\xca\x01\x00\x00")
func partsEyes_15PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_15Png,
"parts/eyes_15.png",
)
}
func partsEyes_15Png() (*asset, error) {
bytes, err := partsEyes_15PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_15.png", size: 458, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_2Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\x85\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\xe1\xcd\xd7\x6c\xc0\xc3\x7a\x40\xed\xd1\xbf\xf0\x32\x73\x1d\xa5\x28\xbb\x40\xe6\xa3\x19\x69\xde\xa2\x2a\xfb\x6f\x78\x56\xee\x65\x40\x06\xbf\x44\x55\x6f\x88\xdc\x7c\xad\xfe\x60\x6e\x82\xf2\x35\x63\xbd\xa5\x77\xf6\xb5\x31\xc5\x71\x96\x6b\xdf\xf0\x51\x0c\xaf\xac\xf3\xfc\x91\xb0\x43\x76\x71\xcc\x01\xcf\x73\x77\x04\x67\x3b\x1e\x38\xb9\xeb\xfb\xb5\x65\xed\x65\x37\x37\x18\x17\xda\x25\x5f\xce\x6b\xd0\x8c\xde\x50\xcd\x3a\x8f\xb9\x73\xa2\xe2\xf6\xf7\x3a\x4b\x97\x70\x59\x86\xb2\xcb\x6b\xe6\xb8\xd4\x94\xdc\x7d\xa1\x77\x6e\xc9\xb3\x93\x66\x55\xe6\x4e\x3d\xb7\x42\xde\xee\xee\x7d\xa1\xfd\xff\x88\xf9\xdc\xd2\xb2\x87\x9b\xe3\xf6\x65\x3d\x2b\x98\x7e\xf7\x6b\x7f\x61\xcd\xf7\x8f\xb1\xf3\x2f\x1d\x5c\x3c\xed\x4d\xe4\xf6\x9f\x73\xf5\x23\xd3\x7b\xcf\x18\x3b\xc7\x45\x57\x7f\x3c\xb3\xfd\xc5\x6a\xfd\xc8\xe6\x6e\xf9\x99\xd9\xd3\x7f\x4d\x2a\xbd\xf8\x4c\xb7\xab\x60\xb2\xde\x39\x23\x33\xd6\x9a\x82\x98\x75\x35\x57\x04\xde\x39\x77\x09\x3a\xb1\x32\x10\x02\x3f\x0e\x4a\x2b\x7a\x87\xab\xd6\x47\xe9\x1e\x00\x71\x3d\x5d\xfd\x5c\xd6\x39\x25\x34\x01\x02\x00\x00\xff\xff\xc0\x31\x08\x23\xae\x01\x00\x00")
func partsEyes_2PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_2Png,
"parts/eyes_2.png",
)
}
func partsEyes_2Png() (*asset, error) {
bytes, err := partsEyes_2PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_2.png", size: 430, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_3Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\xb0\xf9\xca\xe9\x08\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\xaf\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\xee\xc8\xd7\x64\x20\xc0\x7a\x81\xef\xa1\xdd\x9d\xff\x69\x6f\x5e\x39\x19\x2c\x09\x4b\xbe\x93\x61\xfd\x5e\x55\x4d\x65\x47\xa2\x9d\xb1\xac\x17\x23\x03\x0a\x70\x13\x3c\x39\x6f\x7b\xda\x6a\xd7\x65\x0d\xd9\x6b\xff\xd6\x28\x27\xdd\xaa\xd2\xb1\xda\x3e\xc5\xfb\x43\xe8\x81\xe6\xb6\xdf\xab\xaa\xad\x15\xb9\x2b\x0e\xdc\x9c\x53\x76\x32\x8a\xeb\x6d\x77\x00\xab\xcd\xc1\xa4\xa9\x47\x67\xbd\xdb\x6d\xa0\x74\xf5\x47\x9c\x51\xd9\xfb\x7d\x77\xeb\xf7\x1e\x60\xb5\xa9\xf8\x3e\xef\xe0\x3c\xc7\xe8\x4d\x0f\xfa\xdd\xbf\x4c\x4e\xf6\x5e\xf7\x3b\x4c\xee\xfa\xdc\xdf\x9f\x7d\xd6\xf6\xa4\x7f\xf8\x7a\x27\xf7\x7f\xf1\x9d\xd9\xcb\xf4\xb2\x2f\x5d\xfb\x97\x71\xb8\x8c\x8d\xff\x9b\xe7\x94\xc2\x55\x67\x65\x0a\x6a\x3e\x1a\xb9\xbc\x52\xea\xb1\x9a\x78\xbf\xf7\xe9\xb2\xcb\xac\x36\x45\x27\xb2\xd0\x1c\x87\x09\xf6\x17\x30\xff\x29\x89\xdb\x34\x35\x30\xbe\x08\xc4\xf5\x74\xf5\x73\x59\xe7\x94\xd0\x04\x08\x00\x00\xff\xff\xba\x82\xff\xdf\x86\x01\x00\x00")
func partsEyes_3PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_3Png,
"parts/eyes_3.png",
)
}
func partsEyes_3Png() (*asset, error) {
bytes, err := partsEyes_3PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_3.png", size: 390, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_4Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\xf3\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\x6e\xc8\xd7\xa0\xc0\xc3\x1a\xf0\xe0\x5f\xf9\xb1\xa3\x16\x13\x12\xd6\x74\x07\xdd\xf3\x9e\x23\x15\x63\xa7\x1b\xc0\xc5\x80\x06\x62\x7e\xfd\x3c\x9b\x35\xd1\xb4\xfc\xff\xa3\xc7\x13\xe6\xb7\x59\xaf\xe6\x2e\xdf\x38\xa1\xba\xa0\xb7\x40\x9c\xcb\xf2\x52\xaf\xa6\xf5\xf6\x5c\x81\xa2\xad\xf7\xbf\xef\x2a\x90\xbc\xd8\x79\xa8\x77\xde\xfe\x97\x6e\xa5\xde\x12\xef\x2c\xa6\x55\x7f\xb8\x16\x5b\x5a\x34\x2f\xfd\xd2\x6d\x29\x7b\xce\xf0\x08\x74\x53\x31\x81\x83\x1b\x7b\xc9\x3d\xcd\x7b\x15\x7b\xcc\x96\x82\xb8\x9e\xae\x7e\x2e\xeb\x9c\x12\x9a\x00\x01\x00\x00\xff\xff\x22\x61\x33\xbc\x3a\x01\x00\x00")
func partsEyes_4PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_4Png,
"parts/eyes_4.png",
)
}
func partsEyes_4Png() (*asset, error) {
bytes, err := partsEyes_4PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_4.png", size: 314, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_5Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\x0f\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\x61\xc9\xd7\xec\x20\xe0\xea\xd8\xf6\xfb\xfe\x4f\xeb\x83\x49\x86\x69\x6a\x2d\xcb\xbc\x94\x1c\x1c\x8c\xfc\x4d\x4e\x9b\x30\x32\x20\x83\x3d\x91\xd3\x7a\x67\xbb\x0b\x95\x1b\x76\xef\xb9\x7c\x47\xde\x54\x59\xfa\x74\xab\xf2\xf4\xba\x77\xe7\x94\xfe\xf7\x3c\x0b\xe9\xb2\x13\xef\xaa\x10\x5b\x5a\xaa\xf4\x3c\xc7\xbe\xd3\xfa\x47\x59\xeb\x75\x8d\xe3\x17\xde\x6a\x3d\xfb\x56\x31\x29\xa8\xf0\x74\xef\x0b\xe7\x05\x3c\x7b\x64\xdf\x3f\xaa\x62\xb3\xd7\xff\x12\xfa\xe4\xde\x0f\xb1\x1f\x8a\xc9\xd6\xcd\xcf\xd7\x3e\x8d\x16\xfe\x91\x16\xa5\xee\xf5\x6f\xfb\xd9\x13\xb3\xbf\x16\x8b\x2f\xbb\xf5\xfc\x82\xd9\x0d\xc5\xaa\xd7\xad\xfe\x9f\xf6\x2e\x3b\xb3\x2b\xe4\xb7\xe9\xf4\xc9\x11\x87\x1b\xb5\xd7\x79\x5e\xad\x5f\xbf\xf8\xe1\xa7\x49\x5f\x19\x08\x83\xac\x9f\x0c\xe6\x3b\x83\x1f\x2c\xf5\xe0\xd9\x07\xe2\x7a\xba\xfa\xb9\xac\x73\x4a\x68\x02\x04\x00\x00\xff\xff\x7f\x36\xa2\x6c\x7c\x01\x00\x00")
func partsEyes_5PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_5Png,
"parts/eyes_5.png",
)
}
func partsEyes_5Png() (*asset, error) {
bytes, err := partsEyes_5PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_5.png", size: 380, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_6Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\x6b\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\x7e\x9a\xeb\x50\x00\x8f\xeb\x45\xb7\x3f\xff\xe3\xfb\x98\x57\x5b\x5c\xb0\x3b\xd0\xf8\x6c\x8d\xa9\xd6\x14\xbe\x43\xcf\x2e\xdd\x49\x65\x64\x40\x03\x0d\x2b\xb3\x5e\xc4\xc8\x1a\x24\xa7\x3c\x48\xbf\xf1\xee\x77\x72\xa8\xab\xfb\x3e\xbf\xee\xdf\x1c\xbf\x9f\xc5\xa6\x3c\x39\xfd\x65\x87\x7c\x93\xf5\xc1\xfa\xf0\x1f\x35\x27\x94\xe5\xa7\x1c\xd8\xbf\x23\x22\xe4\x2d\xeb\xfb\x29\xac\x39\x29\x0f\xae\xef\x78\x3d\x69\x6a\x51\xb5\xc4\x6f\x7e\xbf\xbd\x7c\x6e\xbc\xf7\xa4\x97\x87\x3f\xc8\xfc\xfe\xe0\xcb\x06\x74\x0b\x30\xc0\x07\x5e\x73\x7e\x46\x45\xde\x27\xb5\xb7\x73\x41\x5c\x4f\x57\x3f\x97\x75\x4e\x09\x4d\x80\x00\x00\x00\xff\xff\x77\x2b\x05\xbd\x48\x01\x00\x00")
func partsEyes_6PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_6Png,
"parts/eyes_6.png",
)
}
func partsEyes_6Png() (*asset, error) {
bytes, err := partsEyes_6PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_6.png", size: 328, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_7Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\xb0\xf9\xca\xe9\x08\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\x1b\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\x61\xc8\xd7\x6c\x20\xc0\xe2\x90\x7f\xe4\xff\xfe\x37\x22\x2a\x41\x49\x8b\x3c\xb6\xbc\x9e\xc9\x25\xc0\x5b\x7d\xac\xdc\x80\x8d\x01\x1d\x6c\xe9\xe2\x38\x96\x73\x4e\x85\xcb\xfa\xd8\x9c\xe7\x89\x93\x76\xc5\x6c\x2a\x2e\xbc\xdf\xfa\x97\xeb\x89\x4e\x91\xaf\x5e\x7f\x6e\xfc\x7d\xf9\xa3\xb9\x25\x22\xdf\x2e\xde\xd9\x71\x7d\x42\xa8\x81\xc9\xda\xf3\x55\x37\xe7\x4d\x8e\x39\x17\xbd\xc9\xd2\x2c\x66\x4b\xa4\xb8\xe3\xe7\xb2\xbd\xd9\xfc\xe7\x8e\x1f\x89\xc9\xbd\xad\x98\xfd\x53\xe7\x57\xb5\x2f\xff\xbb\x57\xd7\xeb\xfe\x61\xd8\x83\x0e\x0e\x9c\x16\x76\x94\x90\x96\xd8\xf8\xe4\x9b\x11\x88\xeb\xe9\xea\xe7\xb2\xce\x29\xa1\x09\x10\x00\x00\xff\xff\xf0\x71\xba\xec\x4d\x01\x00\x00")
func partsEyes_7PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_7Png,
"parts/eyes_7.png",
)
}
func partsEyes_7Png() (*asset, error) {
bytes, err := partsEyes_7PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_7.png", size: 333, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_8Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\xb0\xf9\xca\xe9\x08\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\x1f\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\xb1\x5b\xa8\xc9\x81\x87\x35\xe0\xd0\x87\xff\xfb\xf7\x98\xd9\x69\x04\x88\x68\xce\xb8\x53\x9c\xa6\x53\xd0\x92\xf4\x3e\xcd\x77\x86\x1a\x03\x12\x78\xe0\xf2\xf8\x5f\x66\xbe\x1f\x4f\x59\xcf\xc6\x7d\x79\x6b\x9b\x9a\xe6\x86\x1d\xdc\x27\xb6\x60\xd5\x57\x2b\x1d\xce\x87\x79\xac\xb3\x95\xde\x76\xd4\x85\xac\x69\xb0\x6e\x9f\x2d\xf2\x69\x92\x48\xc1\xa3\x40\x5b\xf5\xd0\xbc\x45\x2f\xf4\x76\x55\xb3\xcf\x15\xf9\xb0\x7b\xa6\xf9\xf6\x2d\x81\x07\x65\xb5\x4b\x4a\xa2\xa7\xbf\x12\x79\x37\xff\xff\xc6\xf3\xe9\x6b\x66\x6d\x12\xfa\xa0\xba\x6c\xfe\xc6\xeb\xb6\xd7\x27\xa6\x97\x64\x1c\x8a\xea\xf7\x8c\x3f\xb7\x37\xf9\xf9\x3f\xc5\x07\xdc\x67\x77\xbb\xa7\xdd\xfb\xea\xf6\xc2\xcc\x58\xbf\x51\x54\x3a\xf5\x5d\xd0\x4e\xf9\x7d\xeb\x9f\xf8\x5e\x52\x7c\xf0\x4b\xf5\xcb\xdb\xf9\xf3\xb6\x3b\x96\x5c\xbc\x3e\xb7\x79\xef\x4b\x26\x06\x42\x60\xd3\x1d\x86\xf0\x22\x5b\x9d\x92\x34\x89\x0b\x20\xae\xa7\xab\x9f\xcb\x3a\xa7\x84\x26\x40\x00\x00\x00\xff\xff\x66\xfe\x33\x3a\x8c\x01\x00\x00")
func partsEyes_8PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_8Png,
"parts/eyes_8.png",
)
}
func partsEyes_8Png() (*asset, error) {
bytes, err := partsEyes_8PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_8.png", size: 396, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsEyes_9Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\xb0\xf9\xca\xe9\x08\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\xd1\x9e\x2e\x8e\x21\x15\xb7\xde\x5e\x38\x28\xc8\xc0\xc0\x72\xc0\xe0\x9b\xfc\x2c\xd9\x3d\x32\x27\xd9\x72\x59\x18\x30\xc0\x9b\xc9\xed\x51\x59\x17\x22\xcf\xcb\x31\x62\xca\x61\x82\x62\xde\x58\x19\x26\x26\xd9\x3d\x1b\x3d\x41\x3c\x4f\x57\x3f\x97\x75\x4e\x09\x4d\x80\x00\x00\x00\xff\xff\x1f\x16\x56\x46\xf7\x00\x00\x00")
func partsEyes_9PngBytes() ([]byte, error) {
return bindataRead(
_partsEyes_9Png,
"parts/eyes_9.png",
)
}
func partsEyes_9Png() (*asset, error) {
bytes, err := partsEyes_9PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/eyes_9.png", size: 247, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsHair_1Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\xfd\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\xe1\xbd\xed\x90\x82\x00\x4b\x80\xf5\xf3\xb7\xf5\xa7\xff\x2e\xf3\x33\x71\x52\x78\x58\xfc\xde\xc2\xcd\x37\x92\xf7\x47\x15\x23\x03\x03\x83\xc1\xdc\x3b\x1f\xbd\xe5\x0f\xfd\xfd\x35\xeb\x4a\xb7\x29\xb3\xd8\xbb\x43\x8c\xfa\xa2\x6f\x14\x63\xb6\x4c\x57\x65\x8a\x33\xba\xb3\xff\xa0\x73\xe7\xc9\x63\x3f\x7e\xd7\x3a\x1d\x98\x7f\x94\xd9\xf1\xb8\xd7\xc1\x73\x66\x49\x9b\x93\xad\x37\x1f\x4c\xdf\x5c\x66\x2f\x52\x64\xb6\xeb\x58\x64\xe5\x85\xad\x46\xad\xbb\xbf\x6f\x54\xcf\xff\x31\x91\x77\xe3\x4c\x49\xc3\x2d\x16\x3b\xed\xb8\xde\xc9\x8a\xbf\x0f\xfc\xbd\x6f\xb1\xdd\xfb\x87\xd7\xef\x4e\x12\x9c\x69\xde\x5b\xfd\x78\xf7\x47\x8f\x7d\xc6\x0f\xe2\x9d\x84\x73\xda\xcd\xae\xbf\x9b\x14\xed\xd3\x90\x79\xfd\xe9\xcd\x5b\x73\x64\xe3\x82\x6f\xdd\x49\x94\xe5\x6e\x91\x99\x2b\x5f\x34\xa7\x25\xff\xf1\x95\x87\xe2\xf1\x97\x4e\x4d\x5b\x5c\xbb\x6b\xe2\x9f\x23\xf5\x17\x2f\x3e\xe0\x10\x9c\x7b\x7b\xb2\xfa\xd9\xab\xb7\x4e\xf9\x86\xbc\xf4\x33\xd1\xbe\x1d\x75\xd9\x6f\xf7\x93\xd9\xe7\x0e\xa4\x33\x3e\x3f\x1a\x58\x95\x1a\xec\xd6\xbe\x60\xff\x56\x8b\xd6\xdd\x75\x27\xc2\x99\xc4\xde\x39\x38\x6e\x97\x3b\x7b\xed\xce\xc1\xbe\xc8\xf7\x8d\x29\xc7\xbf\x3f\x5c\x68\x96\x7d\x47\x4d\x71\xf3\xc3\xc2\x2e\xd7\xeb\x4f\xdf\xca\xca\x35\x36\x6c\x95\x60\xcc\x36\x60\x72\x3b\xc0\x21\x21\xad\xcb\x40\x08\x3c\x50\xff\x9f\x2f\x38\x6d\xde\xcc\x05\xe6\xdd\x20\xae\xa7\xab\x9f\xcb\x3a\xa7\x84\x26\x40\x00\x00\x00\xff\xff\x62\x3b\xb5\xd8\xeb\x01\x00\x00")
func partsHair_1PngBytes() ([]byte, error) {
return bindataRead(
_partsHair_1Png,
"parts/hair_1.png",
)
}
func partsHair_1Png() (*asset, error) {
bytes, err := partsHair_1PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/hair_1.png", size: 491, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsHair_2Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\x57\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\x61\xc8\xd7\x62\xc0\xe3\x7a\xf0\xc1\xef\xfb\x96\x26\x53\x42\x3a\x0e\xdd\x9f\x39\x71\x9b\x7b\xe5\x11\xc5\xdd\x62\x0c\x0e\xf5\xbf\x7f\x1e\xdd\xe1\x24\xb6\xf5\xf0\xe6\x77\x07\xb6\x46\x8b\x0a\x95\x9b\xde\xb1\x8c\x7e\x10\xc9\x2d\xb1\x31\xf9\xb2\xdc\xae\xcb\x11\x77\x4e\x2e\xac\x7d\xc0\x23\x79\x52\xa9\x5b\x5a\xf8\xd6\x55\x8f\x94\xdd\xe1\x4f\x1e\x16\x9e\xb6\x4e\x7a\x3e\x4f\x2a\xc9\xe5\x81\xd0\xcd\x77\xa2\x33\x02\x27\xba\xc7\x76\x7b\x3d\x09\x9f\x7e\xe0\xef\x8f\xfe\x1f\x13\xb2\x27\x7d\xbe\x1c\x59\x73\xee\x74\xa0\x92\xf4\xc5\x73\x49\x8d\x8a\xc9\x3e\xd2\x6f\x9b\x99\xfb\x7b\xb2\x5d\xac\x9b\x6b\x7d\xb9\xdf\x64\x47\x25\x58\xc7\x26\x58\xc7\x25\xfc\x30\xab\xbb\x5b\x3f\x77\xbd\x9b\x09\x93\xb2\x01\x93\xb2\x01\x03\x11\xe0\xc0\xfd\xbc\x00\x26\x7d\x8e\xbd\x5f\x0f\xaf\x01\x71\x3d\x5d\xfd\x5c\xd6\x39\x25\x34\x01\x02\x00\x00\xff\xff\xf8\x14\x7e\x9d\x71\x01\x00\x00")
func partsHair_2PngBytes() ([]byte, error) {
return bindataRead(
_partsHair_2Png,
"parts/hair_2.png",
)
}
func partsHair_2Png() (*asset, error) {
bytes, err := partsHair_2PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/hair_2.png", size: 369, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsHair_3Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x38\xf7\xd6\xaa\x12\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x8c\x4f\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\xe5\x39\xa9\xd9\x80\x87\xe1\x80\xc6\xd4\xff\xf5\x91\xc5\x33\x9d\xb5\xa6\xb2\xee\x69\xf4\xfd\x9e\xbb\xec\x90\x96\xb7\x58\xdb\x6d\x5e\x06\x06\x86\x19\xbe\xbb\x58\xdf\xdf\xbd\xcb\x94\x76\x2a\x69\xe6\x1f\x25\xbd\x80\x55\xce\x33\xae\xcf\x75\xd7\x9f\x7f\xb5\x70\xe2\x9b\xd3\x5d\xb5\x4b\xb3\x0a\xfe\x59\x9a\x72\xf7\xe7\xfa\xcd\x5f\x50\xf2\x9e\xf7\x4a\x50\x63\x6d\x4c\x4a\xc0\x1b\xdd\xb5\xa7\xa7\x3c\x9a\xa1\xe0\x11\x28\x71\x43\xa2\x22\x86\x51\x4e\xe4\xce\x8b\x00\xc6\x45\x97\xb7\xc6\x6e\x2b\x3c\x7d\xf0\x76\xef\x9d\xf7\x1f\x7e\xfe\xd5\x3b\x91\x1d\x7e\x76\x86\xce\x81\x8b\x99\xbb\x27\x2e\xbd\xbf\xb9\xe4\xf1\xa7\x69\x53\x45\x15\xd9\x79\x62\xfa\x3d\xff\x2b\xdb\x5b\xe7\x5f\x5f\xc4\xf8\xeb\xca\x02\x59\xa3\x5a\x1b\x91\xb6\x65\xb1\x9f\x8b\x39\xfd\x64\x3f\xef\x38\xa6\x6d\xfd\xf6\xf7\x17\xdf\x7b\x7b\x1f\xb6\xa6\x3e\x7f\x70\xad\xa7\x6e\x66\xf1\x27\xc1\x98\xcb\x31\x4f\x0f\x14\xfb\x3b\xbe\xdb\x7f\x7e\x96\xb9\xe3\xd6\xa9\x2f\x84\xf2\x17\xf4\xf1\x14\x98\x9d\x39\xa2\x2a\x16\x1d\xf6\xe7\x85\x9e\xd4\xbb\xe4\x5f\x39\x35\x32\x53\xae\x2e\x3d\x3f\xdd\xb0\x62\x41\x8a\xe3\xb4\x63\xa2\x4c\x7f\x5e\x7f\x9e\xbd\xf7\xe0\xad\xdd\x11\x82\x73\xd7\x25\xee\x3a\xf7\x67\xc5\x64\x9d\xda\xe7\xbb\x54\x2b\xb6\xde\x2f\xcb\x8d\xfc\x62\x91\xe5\x5b\xb9\x6a\xeb\x9b\x6b\xdc\xe2\x37\x17\xac\xbe\xf7\x79\xb7\xe6\xbb\xeb\x3d\xde\x53\x3f\xa6\x9a\xec\xff\x7d\xff\x5a\x5b\x66\x76\xd9\x93\x07\x0a\x6e\x67\x0d\xe5\xd5\x4f\x3c\x0a\xcb\xde\xff\x71\x4a\xa3\xe1\x83\x65\xdb\xf3\x4c\xec\x79\x6f\xac\x8c\x37\x4c\x6b\x7f\xbb\xf9\x43\xc4\xd6\xd5\xa9\xd5\xcb\x3a\xca\xeb\xf5\xaf\xa6\xe4\x9e\x7c\xa0\xdb\x1f\xf6\x73\x69\x8f\xab\x63\x70\x78\xd0\xb2\xc7\xa7\x0d\x8b\x0e\xef\x2c\xef\x75\x9d\x63\xd1\xbd\x38\x41\x61\xcf\xb9\xf3\xb6\x76\xf3\x7e\x9b\x46\xec\x51\xb2\x59\x31\x67\x7d\x99\xdc\x69\x36\x4b\xd6\xf2\x75\x42\xb6\x59\x13\x97\x84\x32\x4c\xbd\xc3\xb9\xb9\xf2\xe6\xf5\x9a\x8d\x1e\x0b\xb2\xd7\xe9\xa6\x2e\xe3\x6a\x78\xa0\xb4\x83\x81\x10\x30\x98\x69\x5f\x67\xbd\xe5\xe4\x34\x1e\xcd\x60\x10\xd7\xd3\xd5\xcf\x65\x9d\x53\x42\x13\x20\x00\x00\xff\xff\x3b\x6e\x86\x7b\x81\x02\x00\x00")
func partsHair_3PngBytes() ([]byte, error) {
return bindataRead(
_partsHair_3Png,
"parts/hair_3.png",
)
}
func partsHair_3Png() (*asset, error) {
bytes, err := partsHair_3PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/hair_3.png", size: 641, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsHair_4Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\xb0\xf9\xca\xe9\x08\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\x0b\x3c\x5d\x1c\x43\x2a\x6e\xbd\xbd\x7e\x50\xb0\x41\x41\x80\xc5\xd1\xe0\xff\x9c\xeb\x2c\x35\x1a\xa1\x75\xdf\x76\x19\x37\x08\x5a\x5c\x67\x02\x59\xde\x50\xff\xf6\x90\xe9\xd1\xb8\x2f\xa7\x12\x1f\x6c\xc9\x3b\x61\xba\xaa\x6e\x52\x66\x7c\x4d\xf4\x83\xda\x02\xa5\xcb\x35\xb6\xe6\xf3\x1e\xfc\x7d\xb8\x6b\x5d\x9f\x75\xea\x86\x13\x87\x67\x25\x6f\x30\x6a\x31\x7c\x21\x7e\x4a\xba\xe7\x00\x07\x18\x31\x29\x1b\x40\x11\x37\x4c\x08\x2a\xca\xcc\x40\x18\xe8\xdf\xdd\x69\x22\xa4\x37\xd5\x39\x6e\x36\x88\xe7\xe9\xea\xe7\xb2\xce\x29\xa1\x09\x10\x00\x00\xff\xff\xd0\x53\x5f\xd9\x3c\x01\x00\x00")
func partsHair_4PngBytes() ([]byte, error) {
return bindataRead(
_partsHair_4Png,
"parts/hair_4.png",
)
}
func partsHair_4Png() (*asset, error) {
bytes, err := partsHair_4PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/hair_4.png", size: 316, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsHair_5Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\x2b\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\xe5\x9d\x77\xd8\x80\x87\xf5\x80\xc0\x87\xbf\xeb\xcf\xbc\x6b\x66\xf3\xcd\x3d\x39\xed\xc4\xcc\xd2\x87\x5a\x55\xbf\x26\xf8\xc5\xe9\x83\xdd\xd0\xc0\xbd\xe8\xe7\xf3\xf3\xaf\x8a\x05\x9b\xd6\xda\xb2\x6f\x0c\x14\x50\x3e\x36\xff\xae\x58\x79\xce\x1e\xe6\xe4\x03\x4d\x2f\xeb\x5c\x75\xa5\xf3\xf8\x6a\xfc\xfc\xe4\xb4\xcd\xd9\xab\xd3\x05\x98\xe2\x52\x16\xa5\xe9\xce\x3b\xce\x6c\x67\xc6\x65\xae\x7e\x67\xf6\xad\x25\xbc\x65\x45\x31\x35\x6e\x3e\x31\x2a\x3f\xbf\xc8\xbc\xdf\x97\xf5\x7f\xf7\xea\xf4\xf9\x4c\xef\x3f\x6b\x3d\x98\xdd\x34\xb7\x56\xe6\x79\xf4\x8a\xa8\x8d\xec\xdc\x8b\x24\xdf\x5e\xdc\x74\xb5\x28\x67\x47\xb6\x7b\x6f\xf5\x93\xcf\x97\xfc\x62\x77\xb3\x9f\x6b\x3d\x7e\x7d\x99\xef\xaf\xd7\x1a\x3d\xd2\xc7\x85\xf6\xff\x79\xaf\xca\xdc\xa7\xb4\xfb\x77\xd6\xee\x92\x6d\x11\xd1\x75\x76\xfd\x69\x07\xfb\x56\x15\xdc\xdd\xce\x7d\xef\xe4\xe2\xfd\x4b\x12\x92\x36\xfc\x2c\xb0\x60\x8a\xdb\x33\x49\xee\xaa\xb7\xfe\xfa\x43\xbb\x5f\x6c\x9e\xff\x7c\xb6\x75\xcd\xcb\xef\x67\xe6\x76\xb5\x6a\xbf\x9f\xf1\xb9\x7b\x82\xfd\x56\xc7\xd3\xe7\xef\x07\xaa\xdc\x99\x51\x20\x35\xe5\x06\x4f\xec\xad\x25\x6b\x84\x22\xa6\x37\xac\x97\x39\x59\x75\xe3\x2c\xf7\xda\x8b\xb9\xd7\xae\xe9\x06\x8a\xf0\x59\xf8\xcd\x61\xd8\x1f\x7a\x76\xe7\xe7\x73\xfd\x87\xac\x6d\xfc\xfe\xdc\xbd\x26\x5a\x7c\x55\xeb\x97\x8f\xeb\xdc\x58\xb1\x7f\x17\x35\xee\x4c\xb3\x5f\x6a\xd9\xd5\x7e\xfb\xdf\xf7\xc0\xab\x65\x1f\x96\x3f\xfe\x36\x7b\xf1\x6d\x71\x0e\x56\xb1\x06\x81\x56\x1e\x06\x42\xe0\xc2\x11\xfe\x4d\xf3\x4a\x18\x4e\x9c\xdc\xe1\x0a\xe2\x7a\xba\xfa\xb9\xac\x73\x4a\x68\x02\x04\x00\x00\xff\xff\x0c\x2c\x56\xb7\x15\x02\x00\x00")
func partsHair_5PngBytes() ([]byte, error) {
return bindataRead(
_partsHair_5Png,
"parts/hair_5.png",
)
}
func partsHair_5Png() (*asset, error) {
bytes, err := partsHair_5PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/hair_5.png", size: 533, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsImageInfo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xd2\xcb\x4a\xc4\x30\x18\xc5\xf1\xfd\x3c\x45\x1f\x40\x26\x49\xbd\x2f\x15\x04\x17\xfa\x0c\x25\xb6\xb1\x06\xa7\x17\x92\x8c\x9d\xbe\xbd\x70\x82\xee\xce\x59\x96\x1f\x94\x3f\xdf\x49\x9c\xfc\x18\x1a\xd7\xda\x8b\x6b\x6d\x63\x7e\x7c\x32\xdb\xb6\x99\xbc\x9e\x62\xf9\x48\x3e\xce\xa6\xcb\xc5\x97\xd8\x9b\x69\x99\x73\x09\x29\x0e\x66\xf5\xa9\xe4\xbf\x6f\x7c\x1c\x2f\xfd\xe7\xe1\xe4\xf7\x90\xfe\x7f\x65\xaf\x6c\xf3\xbe\x9c\xcb\x57\xe7\xec\x71\x9d\x47\xca\x8f\x52\x1f\xa4\xde\x4b\xbd\x93\x7a\x2b\xf5\x46\xea\xb5\xd4\x56\xaa\x23\xfa\xb2\x87\xdc\x39\x56\x55\x95\x55\x55\x65\x55\x55\x59\x55\x55\x5d\xc5\x16\x84\xb2\x01\x81\x6c\x3f\x20\x9b\x0f\xc8\xd6\x03\xca\x33\xc9\x2b\xc9\x23\xe9\x1b\x11\x7c\x5e\x86\x9d\x0f\x57\x95\x25\x55\x65\x4d\x55\x59\x54\x55\x5d\xc5\x86\x83\xb2\xe1\x80\x6c\x38\x20\x1b\x0e\xc8\x86\x03\xca\x33\xc9\x2b\xc9\x23\xe9\x1b\x11\x7c\x4a\x13\x7f\x49\x40\x16\x04\x64\x41\x40\x16\x04\x64\x41\xaf\x3e\x26\x1a\x04\x64\x41\x40\x16\x04\x64\x41\x40\x16\xf4\x16\x46\x7e\x21\x20\x0b\x02\xb2\x20\x20\x0b\x02\xd2\x57\xed\xfb\xef\x31\x2d\xe7\x79\x38\xfc\x06\x00\x00\xff\xff\xf1\x10\x85\x10\xba\x06\x00\x00")
func partsImageInfoBytes() ([]byte, error) {
return bindataRead(
_partsImageInfo,
"parts/image.info",
)
}
func partsImageInfo() (*asset, error) {
bytes, err := partsImageInfoBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/image.info", size: 1722, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsLegs_1Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\x48\xea\xee\xac\x47\x0c\x0c\x0c\xb2\x25\xae\x11\x25\xce\xf9\xb9\xb9\xa9\x79\x25\x0c\xce\x45\xa9\x89\x25\xa9\x29\x0a\xe5\x99\x25\x19\x0a\x21\x19\xa9\x0a\xee\x9e\xbe\x01\xef\x53\x54\xf3\x18\x18\x18\x16\x7b\xba\x38\x86\x54\xdc\x7a\x7b\xc5\x90\xaf\x41\x41\xc0\xf5\xe0\xd5\x8a\xff\xda\xf5\xd9\xdc\xc9\x8e\x26\x37\x4b\x97\xb5\x25\x55\x3a\x88\x32\x10\x06\x07\x4e\x7f\xba\x38\x4f\xac\xec\x7b\xa2\x59\x23\xab\x5b\x02\x0b\x04\x89\x49\x34\x0a\x42\x50\x04\x4c\x08\x59\x54\x52\xde\x62\x52\x9c\x2c\xef\xe1\x5c\xfe\x6c\xf3\xc8\xdf\x72\x6e\x79\x69\x27\x1e\xd9\xcc\xac\xb2\xdc\xc5\x3f\xe5\x68\xa4\xd1\xdf\xa7\xff\x9f\x5a\x77\x1b\x33\x30\x30\x2c\x58\xe5\xb7\xb2\x87\xcb\x65\xc9\x71\xa1\x73\x20\xab\x3c\x5d\xfd\x5c\xd6\x39\x25\x34\x01\x02\x00\x00\xff\xff\xb6\xa6\xa3\x91\x3f\x01\x00\x00")
func partsLegs_1PngBytes() ([]byte, error) {
return bindataRead(
_partsLegs_1Png,
"parts/legs_1.png",
)
}
func partsLegs_1Png() (*asset, error) {
bytes, err := partsLegs_1PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/legs_1.png", size: 319, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsLegs_2Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\xb0\xf9\xca\xe9\x08\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\x77\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\xe9\xc8\xd7\xa2\x20\xe0\xea\x78\xbb\xe2\xbf\xf6\xe3\x7b\x3b\x8c\xdc\x16\xd6\x5f\xe5\x7d\xc3\xde\x64\x7c\x9b\x8d\x81\x00\xa8\x49\x57\xb1\xfb\xa2\xa8\xf3\xc8\x28\x35\xa2\xf0\xe8\xd1\x6c\xc9\x42\xc1\xe9\xf2\xe7\x63\xd2\xcb\x4e\xb4\x7a\xbd\x68\xb8\xbe\xe9\x84\x62\xfa\xba\x0b\x8a\xf7\x77\x39\xb1\xdf\x99\xe6\xca\x27\xb9\xed\x04\xa3\xb3\x98\x65\xc2\x0e\x6f\xd7\x7b\x47\xb7\x4e\xe6\x0d\x79\xb0\x23\x51\xaf\x78\xf3\xbd\xb5\xf3\xdd\x4f\xf9\x9d\xab\x10\xe5\xb3\xbe\xa1\x24\x52\xf1\xb0\xdb\xe7\xe6\xc1\xb3\xec\x16\xbf\x93\xbe\x74\xe5\xed\xe3\x60\xcd\xcb\xbb\x76\xc0\xce\x9e\xa9\xac\x40\xd7\xec\xb4\xe2\x86\xe2\x88\x04\x16\xb7\x04\x16\x31\x89\x46\x41\x30\xda\x59\x2a\x71\x70\xf5\xbb\xba\xfe\x75\x4f\x0e\xc8\xfe\x37\x5d\x75\xfa\x73\xef\xcc\x26\x66\x06\x06\x87\x74\x75\x21\x27\x4b\x56\x87\xf0\xd7\xed\x20\x67\x7a\xba\xfa\xb9\xac\x73\x4a\x68\x02\x04\x00\x00\xff\xff\xdc\xf6\x66\xfa\x79\x01\x00\x00")
func partsLegs_2PngBytes() ([]byte, error) {
return bindataRead(
_partsLegs_2Png,
"parts/legs_2.png",
)
}
func partsLegs_2Png() (*asset, error) {
bytes, err := partsLegs_2PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/legs_2.png", size: 377, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _partsLegs_3Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\xa8\x00\x61\x0e\x36\x06\x06\x06\xcb\x14\xb3\x4b\x0c\x0c\x0c\x6c\x49\xde\xee\x2e\x0c\x60\xf0\xd3\x79\x77\x3d\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\x7e\x9d\x51\x94\x57\x48\xb0\xf9\xca\xe9\x08\x06\x06\x06\xd9\x12\xd7\x88\x12\xe7\xfc\xdc\xdc\xd4\xbc\x12\x06\xe7\xa2\xd4\xc4\x92\xd4\x14\x85\xf2\xcc\x92\x0c\x85\x90\x8c\x54\x05\x77\x4f\xdf\x80\xf7\x29\xaa\x79\x0c\x0c\x0c\x97\x3d\x5d\x1c\x43\x2a\x6e\xbd\xbd\x19\xd8\xd7\x6c\xc0\xe3\x1a\x28\xbd\xf1\xbf\xee\x6c\xdd\x06\x01\xaf\x9c\x73\x3f\xdf\x7b\x5c\x9d\x3b\x7d\x8a\x19\x13\x03\x41\xd0\xb1\x22\x33\xff\xc5\x85\x92\xbc\x98\x3a\x81\x1b\x4d\x6b\xc3\x13\xb8\xdd\x12\x58\xe2\x4a\xaf\x4c\x3b\xf0\x79\xe9\x01\x3b\x03\xce\x3b\x05\x9d\xaa\x1f\xfe\x88\x2e\x3f\xf0\x2e\xb8\xf1\xee\x51\xa6\xf7\xdb\x1e\x09\x55\xfc\xeb\x0a\x4e\x28\xdf\x78\xe0\x5d\x52\x63\x79\x74\x21\xa7\x4d\xfd\x51\xcd\x0d\xbb\x67\x2c\xd3\x2e\x73\x51\x2e\xf8\x6e\x7d\xc3\x3c\x96\x29\x7a\xc3\xf3\x84\x46\x5b\xfe\xcd\x79\x7b\xeb\x3e\x94\x9b\x70\xdf\xf9\x98\x21\xf6\xc3\xfd\xf5\xd6\x92\x46\xdd\x1d\xbf\xef\x66\x1f\xed\x7d\xc4\xf5\x26\xa3\xee\xcb\xad\xaa\x8f\xfd\x9b\xef\xbc\x14\x7c\x71\xed\xbe\xaf\x36\x3b\x03\x03\x43\x83\x7e\xec\x2c\x4f\x1d\xa9\x9c\x80\xcb\x3f\x40\x2e\xf3\x74\xf5\x73\x59\xe7\x94\xd0\x04\x08\x00\x00\xff\xff\x7c\xca\xdf\xaf\x6f\x01\x00\x00")
func partsLegs_3PngBytes() ([]byte, error) {
return bindataRead(
_partsLegs_3Png,
"parts/legs_3.png",
)
}
func partsLegs_3Png() (*asset, error) {
bytes, err := partsLegs_3PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "parts/legs_3.png", size: 367, mode: os.FileMode(420), modTime: time.Unix(1530479184, 0)}