-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathartwork.json
1514 lines (1514 loc) · 58 KB
/
artwork.json
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
[
{
"name": "宋江",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "及时雨/呼保义-宋江-天魁星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/1.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "1" },
{ "trait_type": "Nickname", "value": "及时雨/呼保义" },
{ "trait_type": "Name", "value": "宋江" },
{ "trait_type": "Constellation", "value": "天魁星" }
]
},
{
"name": "卢俊义",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "玉麒麟-卢俊义-天罡星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/2.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "2" },
{ "trait_type": "Nickname", "value": "玉麒麟" },
{ "trait_type": "Name", "value": "卢俊义" },
{ "trait_type": "Constellation", "value": "天罡星" }
]
},
{
"name": "吴用",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "吴学究/智多星-吴用-天机星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/3.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "3" },
{ "trait_type": "Nickname", "value": "吴学究/智多星" },
{ "trait_type": "Name", "value": "吴用" },
{ "trait_type": "Constellation", "value": "天机星" }
]
},
{
"name": "公孙胜",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "一清道人/入云龙-公孙胜-天闲星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/4.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "4" },
{ "trait_type": "Nickname", "value": "一清道人/入云龙" },
{ "trait_type": "Name", "value": "公孙胜" },
{ "trait_type": "Constellation", "value": "天闲星" }
]
},
{
"name": "关胜",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "大刀-关胜-天勇星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/5.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "5" },
{ "trait_type": "Nickname", "value": "大刀" },
{ "trait_type": "Name", "value": "关胜" },
{ "trait_type": "Constellation", "value": "天勇星" }
]
},
{
"name": "林冲",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "豹子头-林冲-天雄星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/6.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "6" },
{ "trait_type": "Nickname", "value": "豹子头" },
{ "trait_type": "Name", "value": "林冲" },
{ "trait_type": "Constellation", "value": "天雄星" }
]
},
{
"name": "秦明",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "霹雳火-秦明-天猛星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/7.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "7" },
{ "trait_type": "Nickname", "value": "霹雳火" },
{ "trait_type": "Name", "value": "秦明" },
{ "trait_type": "Constellation", "value": "天猛星" }
]
},
{
"name": "呼延灼",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "双鞭-呼延灼-天威星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/8.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "8" },
{ "trait_type": "Nickname", "value": "双鞭" },
{ "trait_type": "Name", "value": "呼延灼" },
{ "trait_type": "Constellation", "value": "天威星" }
]
},
{
"name": "花荣",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "小李广-花荣-天英星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/9.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "9" },
{ "trait_type": "Nickname", "value": "小李广" },
{ "trait_type": "Name", "value": "花荣" },
{ "trait_type": "Constellation", "value": "天英星" }
]
},
{
"name": "柴进",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "小旋风-柴进-天贵星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/10.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "10" },
{ "trait_type": "Nickname", "value": "小旋风" },
{ "trait_type": "Name", "value": "柴进" },
{ "trait_type": "Constellation", "value": "天贵星" }
]
},
{
"name": "李应",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "扑天雕-李应-天富星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/11.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "11" },
{ "trait_type": "Nickname", "value": "扑天雕" },
{ "trait_type": "Name", "value": "李应" },
{ "trait_type": "Constellation", "value": "天富星" }
]
},
{
"name": "朱仝",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "美髯公-朱仝-天满星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/12.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "12" },
{ "trait_type": "Nickname", "value": "美髯公" },
{ "trait_type": "Name", "value": "朱仝" },
{ "trait_type": "Constellation", "value": "天满星" }
]
},
{
"name": "鲁智深",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "花和尚-鲁智深-天孤星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/13.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "13" },
{ "trait_type": "Nickname", "value": "花和尚" },
{ "trait_type": "Name", "value": "鲁智深" },
{ "trait_type": "Constellation", "value": "天孤星" }
]
},
{
"name": "武松",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "行者-武松-天伤星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/14.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "14" },
{ "trait_type": "Nickname", "value": "行者" },
{ "trait_type": "Name", "value": "武松" },
{ "trait_type": "Constellation", "value": "天伤星" }
]
},
{
"name": "董平",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "双鎗将-董平-天立星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/15.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "15" },
{ "trait_type": "Nickname", "value": "双鎗将" },
{ "trait_type": "Name", "value": "董平" },
{ "trait_type": "Constellation", "value": "天立星" }
]
},
{
"name": "张清",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "没羽箭-张清-天捷星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/16.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "16" },
{ "trait_type": "Nickname", "value": "没羽箭" },
{ "trait_type": "Name", "value": "张清" },
{ "trait_type": "Constellation", "value": "天捷星" }
]
},
{
"name": "杨志",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "青面兽-杨志-天暗星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/17.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "17" },
{ "trait_type": "Nickname", "value": "青面兽" },
{ "trait_type": "Name", "value": "杨志" },
{ "trait_type": "Constellation", "value": "天暗星" }
]
},
{
"name": "徐宁",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "金鎗手-徐宁-天佑星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/18.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "18" },
{ "trait_type": "Nickname", "value": "金鎗手" },
{ "trait_type": "Name", "value": "徐宁" },
{ "trait_type": "Constellation", "value": "天佑星" }
]
},
{
"name": "索超",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "急先锋-索超-天空星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/19.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "19" },
{ "trait_type": "Nickname", "value": "急先锋" },
{ "trait_type": "Name", "value": "索超" },
{ "trait_type": "Constellation", "value": "天空星" }
]
},
{
"name": "戴宗",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "神行太保-戴宗-天速星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/20.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "20" },
{ "trait_type": "Nickname", "value": "神行太保" },
{ "trait_type": "Name", "value": "戴宗" },
{ "trait_type": "Constellation", "value": "天速星" }
]
},
{
"name": "刘唐",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "赤髪鬼-刘唐-天异星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/21.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "21" },
{ "trait_type": "Nickname", "value": "赤髪鬼" },
{ "trait_type": "Name", "value": "刘唐" },
{ "trait_type": "Constellation", "value": "天异星" }
]
},
{
"name": "李逵",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "铁牛/黑旋风-李逵-天杀星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/22.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "22" },
{ "trait_type": "Nickname", "value": "铁牛/黑旋风" },
{ "trait_type": "Name", "value": "李逵" },
{ "trait_type": "Constellation", "value": "天杀星" }
]
},
{
"name": "史进",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "九纹龙-史进-天微星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/23.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "23" },
{ "trait_type": "Nickname", "value": "九纹龙" },
{ "trait_type": "Name", "value": "史进" },
{ "trait_type": "Constellation", "value": "天微星" }
]
},
{
"name": "穆弘",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "没遮拦-穆弘-天究星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/24.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "24" },
{ "trait_type": "Nickname", "value": "没遮拦" },
{ "trait_type": "Name", "value": "穆弘" },
{ "trait_type": "Constellation", "value": "天究星" }
]
},
{
"name": "雷横",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "挿翅虎-雷横-天退星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/25.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "25" },
{ "trait_type": "Nickname", "value": "挿翅虎" },
{ "trait_type": "Name", "value": "雷横" },
{ "trait_type": "Constellation", "value": "天退星" }
]
},
{
"name": "李俊",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "混江龙-李俊-天寿星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/26.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "26" },
{ "trait_type": "Nickname", "value": "混江龙" },
{ "trait_type": "Name", "value": "李俊" },
{ "trait_type": "Constellation", "value": "天寿星" }
]
},
{
"name": "阮小二",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "立地太岁-阮小二-天剑星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/27.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "27" },
{ "trait_type": "Nickname", "value": "立地太岁" },
{ "trait_type": "Name", "value": "阮小二" },
{ "trait_type": "Constellation", "value": "天剑星" }
]
},
{
"name": "张横",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "船火儿-张横-天平星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/28.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "28" },
{ "trait_type": "Nickname", "value": "船火儿" },
{ "trait_type": "Name", "value": "张横" },
{ "trait_type": "Constellation", "value": "天平星" }
]
},
{
"name": "阮小五",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "短命二郎-阮小五-天罪星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/29.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "29" },
{ "trait_type": "Nickname", "value": "短命二郎" },
{ "trait_type": "Name", "value": "阮小五" },
{ "trait_type": "Constellation", "value": "天罪星" }
]
},
{
"name": "张顺",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "浪里白条-张顺-天损星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/30.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "30" },
{ "trait_type": "Nickname", "value": "浪里白条" },
{ "trait_type": "Name", "value": "张顺" },
{ "trait_type": "Constellation", "value": "天损星" }
]
},
{
"name": "阮小七",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "活阎罗-阮小七-天败星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/31.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "31" },
{ "trait_type": "Nickname", "value": "活阎罗" },
{ "trait_type": "Name", "value": "阮小七" },
{ "trait_type": "Constellation", "value": "天败星" }
]
},
{
"name": "杨雄",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "病关索-杨雄-天牢星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/32.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "32" },
{ "trait_type": "Nickname", "value": "病关索" },
{ "trait_type": "Name", "value": "杨雄" },
{ "trait_type": "Constellation", "value": "天牢星" }
]
},
{
"name": "石秀",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "拚命三郎-石秀-天慧星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/33.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "33" },
{ "trait_type": "Nickname", "value": "拚命三郎" },
{ "trait_type": "Name", "value": "石秀" },
{ "trait_type": "Constellation", "value": "天慧星" }
]
},
{
"name": "解珍",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "两头蛇-解珍-天暴星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/34.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "34" },
{ "trait_type": "Nickname", "value": "两头蛇" },
{ "trait_type": "Name", "value": "解珍" },
{ "trait_type": "Constellation", "value": "天暴星" }
]
},
{
"name": "解宝",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "双尾蝎-解宝-天哭星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/35.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "35" },
{ "trait_type": "Nickname", "value": "双尾蝎" },
{ "trait_type": "Name", "value": "解宝" },
{ "trait_type": "Constellation", "value": "天哭星" }
]
},
{
"name": "燕青",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "浪子-燕青-天巧星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/36.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "36" },
{ "trait_type": "Nickname", "value": "浪子" },
{ "trait_type": "Name", "value": "燕青" },
{ "trait_type": "Constellation", "value": "天巧星" }
]
},
{
"name": "朱武",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "神机军师-朱武-地魁星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/37.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "37" },
{ "trait_type": "Nickname", "value": "神机军师" },
{ "trait_type": "Name", "value": "朱武" },
{ "trait_type": "Constellation", "value": "地魁星" }
]
},
{
"name": "黄信",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "镇三山-黄信-地煞星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/38.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "38" },
{ "trait_type": "Nickname", "value": "镇三山" },
{ "trait_type": "Name", "value": "黄信" },
{ "trait_type": "Constellation", "value": "地煞星" }
]
},
{
"name": "孙立",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "病尉迟-孙立-地勇星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/39.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "39" },
{ "trait_type": "Nickname", "value": "病尉迟" },
{ "trait_type": "Name", "value": "孙立" },
{ "trait_type": "Constellation", "value": "地勇星" }
]
},
{
"name": "宣赞",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "丑郡马-宣赞-地杰星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/40.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "40" },
{ "trait_type": "Nickname", "value": "丑郡马" },
{ "trait_type": "Name", "value": "宣赞" },
{ "trait_type": "Constellation", "value": "地杰星" }
]
},
{
"name": "郝思文",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "井木犴-郝思文-地雄星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/41.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "41" },
{ "trait_type": "Nickname", "value": "井木犴" },
{ "trait_type": "Name", "value": "郝思文" },
{ "trait_type": "Constellation", "value": "地雄星" }
]
},
{
"name": "韩滔",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "百胜将-韩滔-地威星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/42.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "42" },
{ "trait_type": "Nickname", "value": "百胜将" },
{ "trait_type": "Name", "value": "韩滔" },
{ "trait_type": "Constellation", "value": "地威星" }
]
},
{
"name": "彭玘",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "天目将-彭玘-地英星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/43.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "43" },
{ "trait_type": "Nickname", "value": "天目将" },
{ "trait_type": "Name", "value": "彭玘" },
{ "trait_type": "Constellation", "value": "地英星" }
]
},
{
"name": "单廷珪",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "圣水将-单廷珪-地奇星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/44.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "44" },
{ "trait_type": "Nickname", "value": "圣水将" },
{ "trait_type": "Name", "value": "单廷珪" },
{ "trait_type": "Constellation", "value": "地奇星" }
]
},
{
"name": "魏定国",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "神火将-魏定国-地猛星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/45.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "45" },
{ "trait_type": "Nickname", "value": "神火将" },
{ "trait_type": "Name", "value": "魏定国" },
{ "trait_type": "Constellation", "value": "地猛星" }
]
},
{
"name": "萧让",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "圣手书生-萧让-地文星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/46.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "46" },
{ "trait_type": "Nickname", "value": "圣手书生" },
{ "trait_type": "Name", "value": "萧让" },
{ "trait_type": "Constellation", "value": "地文星" }
]
},
{
"name": "裴宣",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "铁面孔目-裴宣-地正星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/47.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "47" },
{ "trait_type": "Nickname", "value": "铁面孔目" },
{ "trait_type": "Name", "value": "裴宣" },
{ "trait_type": "Constellation", "value": "地正星" }
]
},
{
"name": "欧鹏",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "摩云金翅-欧鹏-地辟星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/48.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "48" },
{ "trait_type": "Nickname", "value": "摩云金翅" },
{ "trait_type": "Name", "value": "欧鹏" },
{ "trait_type": "Constellation", "value": "地辟星" }
]
},
{
"name": "邓飞",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "火眼狻猊-邓飞-地阖星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/49.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "49" },
{ "trait_type": "Nickname", "value": "火眼狻猊" },
{ "trait_type": "Name", "value": "邓飞" },
{ "trait_type": "Constellation", "value": "地阖星" }
]
},
{
"name": "燕顺",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "锦毛虎-燕顺-地强星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/50.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "50" },
{ "trait_type": "Nickname", "value": "锦毛虎" },
{ "trait_type": "Name", "value": "燕顺" },
{ "trait_type": "Constellation", "value": "地强星" }
]
},
{
"name": "杨林",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "锦豹子-杨林-地暗星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/51.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "51" },
{ "trait_type": "Nickname", "value": "锦豹子" },
{ "trait_type": "Name", "value": "杨林" },
{ "trait_type": "Constellation", "value": "地暗星" }
]
},
{
"name": "凌振",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "轰天雷-凌振-地轴星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/52.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "52" },
{ "trait_type": "Nickname", "value": "轰天雷" },
{ "trait_type": "Name", "value": "凌振" },
{ "trait_type": "Constellation", "value": "地轴星" }
]
},
{
"name": "蒋敬",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "神算子-蒋敬-地会星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/53.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "53" },
{ "trait_type": "Nickname", "value": "神算子" },
{ "trait_type": "Name", "value": "蒋敬" },
{ "trait_type": "Constellation", "value": "地会星" }
]
},
{
"name": "吕方",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "小温侯-吕方-地佐星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/54.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "54" },
{ "trait_type": "Nickname", "value": "小温侯" },
{ "trait_type": "Name", "value": "吕方" },
{ "trait_type": "Constellation", "value": "地佐星" }
]
},
{
"name": "郭盛",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "赛仁贵-郭盛-地佑星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/55.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "55" },
{ "trait_type": "Nickname", "value": "赛仁贵" },
{ "trait_type": "Name", "value": "郭盛" },
{ "trait_type": "Constellation", "value": "地佑星" }
]
},
{
"name": "安道全",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "神医-安道全-地灵星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/56.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "56" },
{ "trait_type": "Nickname", "value": "神医" },
{ "trait_type": "Name", "value": "安道全" },
{ "trait_type": "Constellation", "value": "地灵星" }
]
},
{
"name": "皇甫端",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "紫髯伯-皇甫端-地兽星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/57.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "57" },
{ "trait_type": "Nickname", "value": "紫髯伯" },
{ "trait_type": "Name", "value": "皇甫端" },
{ "trait_type": "Constellation", "value": "地兽星" }
]
},
{
"name": "王英",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "矮脚虎-王英-地微星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/58.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "58" },
{ "trait_type": "Nickname", "value": "矮脚虎" },
{ "trait_type": "Name", "value": "王英" },
{ "trait_type": "Constellation", "value": "地微星" }
]
},
{
"name": "扈三娘",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "一丈青-扈三娘-地慧星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/59.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "59" },
{ "trait_type": "Nickname", "value": "一丈青" },
{ "trait_type": "Name", "value": "扈三娘" },
{ "trait_type": "Constellation", "value": "地慧星" }
]
},
{
"name": "鲍旭",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "丧门神-鲍旭-地暴星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/60.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "60" },
{ "trait_type": "Nickname", "value": "丧门神" },
{ "trait_type": "Name", "value": "鲍旭" },
{ "trait_type": "Constellation", "value": "地暴星" }
]
},
{
"name": "樊瑞",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "混世魔王-樊瑞-地然星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/61.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "61" },
{ "trait_type": "Nickname", "value": "混世魔王" },
{ "trait_type": "Name", "value": "樊瑞" },
{ "trait_type": "Constellation", "value": "地然星" }
]
},
{
"name": "孔明",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "毛头星-孔明-地猖星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/62.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "62" },
{ "trait_type": "Nickname", "value": "毛头星" },
{ "trait_type": "Name", "value": "孔明" },
{ "trait_type": "Constellation", "value": "地猖星" }
]
},
{
"name": "孔亮",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "独火星-孔亮-地狂星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/63.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "63" },
{ "trait_type": "Nickname", "value": "独火星" },
{ "trait_type": "Name", "value": "孔亮" },
{ "trait_type": "Constellation", "value": "地狂星" }
]
},
{
"name": "项充",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "八臂哪咤-项充-地飞星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/64.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "64" },
{ "trait_type": "Nickname", "value": "八臂哪咤" },
{ "trait_type": "Name", "value": "项充" },
{ "trait_type": "Constellation", "value": "地飞星" }
]
},
{
"name": "李衮",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "飞天大圣-李衮-地走星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/65.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "65" },
{ "trait_type": "Nickname", "value": "飞天大圣" },
{ "trait_type": "Name", "value": "李衮" },
{ "trait_type": "Constellation", "value": "地走星" }
]
},
{
"name": "金大坚",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "玉臂匠-金大坚-地巧星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/66.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "66" },
{ "trait_type": "Nickname", "value": "玉臂匠" },
{ "trait_type": "Name", "value": "金大坚" },
{ "trait_type": "Constellation", "value": "地巧星" }
]
},
{
"name": "马麟",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "铁笛仙-马麟-地明星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/67.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "67" },
{ "trait_type": "Nickname", "value": "铁笛仙" },
{ "trait_type": "Name", "value": "马麟" },
{ "trait_type": "Constellation", "value": "地明星" }
]
},
{
"name": "童威",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "出洞蛟-童威-地进星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/68.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "68" },
{ "trait_type": "Nickname", "value": "出洞蛟" },
{ "trait_type": "Name", "value": "童威" },
{ "trait_type": "Constellation", "value": "地进星" }
]
},
{
"name": "童猛",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "翻江蜃-童猛-地退星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/69.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "69" },
{ "trait_type": "Nickname", "value": "翻江蜃" },
{ "trait_type": "Name", "value": "童猛" },
{ "trait_type": "Constellation", "value": "地退星" }
]
},
{
"name": "孟康",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "玉旛竿-孟康-地満星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/70.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "70" },
{ "trait_type": "Nickname", "value": "玉旛竿" },
{ "trait_type": "Name", "value": "孟康" },
{ "trait_type": "Constellation", "value": "地満星" }
]
},
{
"name": "侯健",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "通臂猿-侯健-地遂星",
"external_url": "https://dapp-learning.com/",
"image": "http://81.69.8.95/WaterMarginImg/71.jpg",
"attributes": [
{ "trait_type": "Rank", "value": "71" },
{ "trait_type": "Nickname", "value": "通臂猿" },
{ "trait_type": "Name", "value": "侯健" },
{ "trait_type": "Constellation", "value": "地遂星" }
]
},
{
"name": "陈达",
"version": 1,
"notice": "DappLearningDao 社区贡献者荣誉勋章,仅供 DappLearningDao 社区使用",
"description": "跳涧虎-陈达-地周星",