-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadventuredrops.html
2644 lines (2640 loc) · 255 KB
/
adventuredrops.html
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
<!DOCTYPE html>
<html>
<head>
<title>itemdrops per adventure location</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.13.1/js/jquery.dataTables.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.13.1/css/jquery.dataTables.css"></link>
<style>
thead input { width: 100% }
</style>
</head>
<body>
<h1>itemdrops per adventure location</h1>
<p>the data is cached and updated at my convenience. at no time does it represent an up to date state of the actual ottopia data, and any
info taken from this table should be treated with caution.</p>
<p>the item name links to opensea. the id links to the otterclam api (can manually verify if displayed data is correct)</p>
<p>you can use Shift-Click to order multiple columns.</p>
<p>the individual column filters use regular expression, <a href="regex101.html">short intro and some receipts</a>.
<table id="table_id" class="display" style="width:100%">
<thead>
<tr>
<th>id</th>
<th>name</th>
<th>type</th>
<th>rarity</th>
<th>forest</th>
<th>river</th>
<th>ruins</th>
<th>desert</th>
<th>mountain</th>
</tr>
</thead>
<tbody><tr>
<td><a href="https://api.otterclam.finance/items/metadata/192">192</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/192">Bright green</a></td><td>Background</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/303">303</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/303">Coral red</a></td><td>Background</td><td>C3</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/367">367</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/367">Flame red</a></td><td>Background</td><td>C3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4292">4292</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4292">Frozen Dream</a></td><td>Background</td><td>C3</td><td>3</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4194">4194</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4194">Morning Strike</a></td><td>Background</td><td>C3</td><td>2</td><td>2</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4083">4083</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4083">Old hat</a></td><td>Background</td><td>C3</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/751">751</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/751">Orange</a></td><td>Background</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2466">2466</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2466"> Dragon Boat Festival</a></td><td>Background</td><td>C2</td><td>1</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/1784">1784</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/1784">Dark blue</a></td><td>Background</td><td>C2</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5509">5509</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5509">Heart wallpaper - White</a></td><td>Background</td><td>C2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/1972">1972</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/1972">Peach</a></td><td>Background</td><td>C2</td><td>1</td><td>1</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5633">5633</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5633">Pink roses</a></td><td>Background</td><td>C2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2113">2113</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2113">Taro</a></td><td>Background</td><td>C2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4727">4727</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4727">White wall - Window shadow</a></td><td>Background</td><td>C2</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5201">5201</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5201">Asian lantern decoration </a></td><td>Background</td><td>C1</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/1271">1271</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/1271">Blue sky</a></td><td>Background</td><td>C1</td><td>0</td><td>2</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4420">4420</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4420">Crystalline</a></td><td>Background</td><td>C1</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2264">2264</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2264">First love</a></td><td>Background</td><td>C1</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2783">2783</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2783">Flowering shrubs - Orange</a></td><td>Background</td><td>C1</td><td>1</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4828">4828</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4828">Forest - Snow scene</a></td><td>Background</td><td>C1</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/1493">1493</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/1493">Love</a></td><td>Background</td><td>C1</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2643">2643</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2643">Maple leaves falling</a></td><td>Background</td><td>C1</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4258">4258</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4258">Mind Crawl</a></td><td>Background</td><td>C1</td><td>0</td><td>0</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5328">5328</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5328">New year wallpaper</a></td><td>Background</td><td>C1</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4896">4896</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4896">Noble fir leaves - Silver white</a></td><td>Background</td><td>C1</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4974">4974</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4974">Noble fir leaves with snow</a></td><td>Background</td><td>C1</td><td>0</td><td>1</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/1186">1186</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/1186">Snowing 02</a></td><td>Background</td><td>C1</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4612">4612</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4612">Fir forest</a></td><td>Background</td><td>R3</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4774">4774</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4774">First snow</a></td><td>Background</td><td>R3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5596">5596</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5596">Flying love (Pink))</a></td><td>Background</td><td>R3</td><td>0</td><td>0</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5574">5574</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5574">Flying love (Red)</a></td><td>Background</td><td>R3</td><td>0</td><td>0</td><td>0</td><td>0</td><td>2</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/1616">1616</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/1616">Hiking trail</a></td><td>Background</td><td>R3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4952">4952</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4952">Noble fir leaves - Colorful decorations</a></td><td>Background</td><td>R3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5280">5280</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5280">Paper fan decoration - Pink</a></td><td>Background</td><td>R3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5487">5487</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5487">Red heart</a></td><td>Background</td><td>R3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2699">2699</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2699">Sunrise - Golden sky</a></td><td>Background</td><td>R3</td><td>3</td><td>2</td><td>2</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2677">2677</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2677">Sunset - Fire red</a></td><td>Background</td><td>R3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2891">2891</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2891">The palmtrees</a></td><td>Background</td><td>R3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/3841">3841</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/3841">Wide desert - Noon</a></td><td>Background</td><td>R3</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2767">2767</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2767">Chaparral hike</a></td><td>Background</td><td>R2</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2913">2913</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2913">Forest path</a></td><td>Background</td><td>R2</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2298">2298</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2298">Lake cabin - Night</a></td><td>Background</td><td>R2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/1676">1676</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/1676">Nebula-Y</a></td><td>Background</td><td>R2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5752">5752</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5752">Neon "I love you" Beneath the sakura tree</a></td><td>Background</td><td>R2</td><td>0</td><td>1</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5008">5008</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5008">Ottermas themed night - Golden</a></td><td>Background</td><td>R2</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5024">5024</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5024">Ottermas themed night - SIlver</a></td><td>Background</td><td>R2</td><td>1</td><td>1</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4796">4796</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4796">Prairie - Snowing</a></td><td>Background</td><td>R2</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2394">2394</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2394">Prairie - Sunrise</a></td><td>Background</td><td>R2</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2314">2314</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2314">Prairie - Sunset</a></td><td>Background</td><td>R2</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2362">2362</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2362">Rainbow</a></td><td>Background</td><td>R2</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2749">2749</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2749">Rainforest leaves</a></td><td>Background</td><td>R2</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4067">4067</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4067">White Pearl</a></td><td>Background</td><td>R2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2929">2929</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2929">A raccoon in a tree</a></td><td>Background</td><td>R1</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/1246">1246</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/1246">Furry-hand</a></td><td>Background</td><td>R1</td><td>1</td><td>0</td><td>6</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5040">5040</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5040">Log cabin in forest - snowing</a></td><td>Background</td><td>R1</td><td>0</td><td>1</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2881">2881</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2881">Moonrise</a></td><td>Background</td><td>R1</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/1692">1692</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/1692">Nebula-Z</a></td><td>Background</td><td>R1</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2420">2420</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2420">Ottowarts library</a></td><td>Background</td><td>R1</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/1236">1236</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/1236">Safe-hand</a></td><td>Background</td><td>R1</td><td>0</td><td>1</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/1305">1305</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/1305">Sakura season</a></td><td>Background</td><td>R1</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2817">2817</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2817">Sunflower garden</a></td><td>Background</td><td>R1</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5143">5143</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5143">Forest - Aurora</a></td><td>Background</td><td>E3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2559">2559</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2559">Hacker world</a></td><td>Background</td><td>E3</td><td>1</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2869">2869</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2869">Heaven - Lapis blue</a></td><td>Background</td><td>E3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2430">2430</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2430">Lightning night</a></td><td>Background</td><td>E3</td><td>1</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5628">5628</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5628">Sakura (Pink)</a></td><td>Background</td><td>E3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/4723">4723</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/4723">SantaOtto is coming </a></td><td>Background</td><td>E3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2827">2827</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2827">The Birth of the Otter</a></td><td>Background</td><td>E3</td><td>0</td><td>0</td><td>2</td><td>0</td><td>3</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2160">2160</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2160">Alien is coming</a></td><td>Background</td><td>E2</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/5141">5141</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/5141">Log cabin in forest - Ottermas eve</a></td><td>Background</td><td>E2</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2862">2862</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2862">Palace garden - Golden</a></td><td>Background</td><td>E2</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2765">2765</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2765">Rainforest leaves & flowers</a></td><td>Background</td><td>E2</td><td>4</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2876">2876</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2876">Sunrise - Red</a></td><td>Background</td><td>E2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2880">2880</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2880">Moon light - New moon</a></td><td>Background</td><td>E1</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/2879">2879</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/2879">The Gleaners</a></td><td>Background</td><td>E1</td><td>4</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/202641">202641</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/202641">Adventurer's long sleeve shirt</a></td><td>Clothes</td><td>C3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/202985">202985</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/202985">Adventurer's short sleeve shirt - Claret</a></td><td>Clothes</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/202577">202577</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/202577">Adventurer's short sleeve shirt - Classic</a></td><td>Clothes</td><td>C3</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203113">203113</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203113">Adventurer's short sleeve shirt - Cream white</a></td><td>Clothes</td><td>C3</td><td>0</td><td>1</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203177">203177</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203177">Adventurer's short sleeve shirt - Gray</a></td><td>Clothes</td><td>C3</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203241">203241</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203241">Adventurer's short sleeve shirt - Orange</a></td><td>Clothes</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203049">203049</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203049">Adventurer's short sleeve shirt - Pistachio</a></td><td>Clothes</td><td>C3</td><td>0</td><td>0</td><td>3</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203305">203305</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203305">Adventurer's short sleeve shirt - Yellow</a></td><td>Clothes</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/206612">206612</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/206612">Black Suit</a></td><td>Clothes</td><td>C3</td><td>1</td><td>1</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/206676">206676</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/206676">Brown Suit</a></td><td>Clothes</td><td>C3</td><td>1</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/207287">207287</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/207287">Classic overalls - Blue</a></td><td>Clothes</td><td>C3</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/197807">197807</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/197807">Classic overalls - Bob</a></td><td>Clothes</td><td>C3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/201639">201639</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/201639">Cooking apron - Black</a></td><td>Clothes</td><td>C3</td><td>0</td><td>0</td><td>0</td><td>2</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/201511">201511</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/201511">Cooking apron - Blue</a></td><td>Clothes</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/201703">201703</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/201703">Cooking apron - Earth yellow</a></td><td>Clothes</td><td>C3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/201447">201447</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/201447">Cooking apron - Green</a></td><td>Clothes</td><td>C3</td><td>2</td><td>0</td><td>2</td><td>2</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/201383">201383</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/201383">Cooking apron - Orange</a></td><td>Clothes</td><td>C3</td><td>3</td><td>0</td><td>1</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/201575">201575</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/201575">Cooking apron - Purple</a></td><td>Clothes</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/201319">201319</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/201319">Cooking apron - Red</a></td><td>Clothes</td><td>C3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/201255">201255</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/201255">Cooking apron - Yellow</a></td><td>Clothes</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/197479">197479</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/197479">Down jacket - Yellow</a></td><td>Clothes</td><td>C3</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/198592">198592</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/198592">Forest green T</a></td><td>Clothes</td><td>C3</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199973">199973</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199973">Gardening overalls & polo - Blue</a></td><td>Clothes</td><td>C3</td><td>3</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/200101">200101</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/200101">Gardening overalls & polo - Brown</a></td><td>Clothes</td><td>C3</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/200037">200037</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/200037">Gardening overalls & polo - Gray</a></td><td>Clothes</td><td>C3</td><td>3</td><td>0</td><td>2</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199862">199862</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199862">Gardening overalls (single) - Deep blue</a></td><td>Clothes</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/217002">217002</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/217002">Goldenrod dress</a></td><td>Clothes</td><td>C3</td><td>2</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/216746">216746</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/216746">High school uniform - Peach</a></td><td>Clothes</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/207867">207867</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/207867">High school uniform - Ultramarine</a></td><td>Clothes</td><td>C3</td><td>1</td><td>1</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/206984">206984</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/206984">Jinbei - Classic</a></td><td>Clothes</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/216874">216874</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/216874">Light cyan dress</a></td><td>Clothes</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/216938">216938</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/216938">Mint dress</a></td><td>Clothes</td><td>C3</td><td>0</td><td>2</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/198417">198417</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/198417">Mustard yellow T</a></td><td>Clothes</td><td>C3</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/217518">217518</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/217518">Pattern dress - Lucky orange</a></td><td>Clothes</td><td>C3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/216810">216810</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/216810">Pink dress</a></td><td>Clothes</td><td>C3</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/217388">217388</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/217388">Red dress</a></td><td>Clothes</td><td>C3</td><td>4</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/204978">204978</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/204978">Short sleeve shirt - Hearts</a></td><td>Clothes</td><td>C3</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/198161">198161</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/198161">Sweater - Red</a></td><td>Clothes</td><td>C3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203900">203900</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203900">Sweater - White</a></td><td>Clothes</td><td>C3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/198225">198225</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/198225">Sweater - Wood</a></td><td>Clothes</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199194">199194</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199194">Swim ring - Classic</a></td><td>Clothes</td><td>C3</td><td>1</td><td>0</td><td>2</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199258">199258</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199258">Swim ring - Joyful</a></td><td>Clothes</td><td>C3</td><td>2</td><td>0</td><td>1</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199322">199322</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199322">Swim ring - Navy</a></td><td>Clothes</td><td>C3</td><td>0</td><td>2</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/196878">196878</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/196878">Witch robe - Shaded Spruce</a></td><td>Clothes</td><td>C3</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203467">203467</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203467">Adventure Time - Finn's T-shirt & Bag</a></td><td>Clothes</td><td>C2</td><td>1</td><td>2</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/202483">202483</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/202483">Adventurer's vest</a></td><td>Clothes</td><td>C2</td><td>2</td><td>0</td><td>1</td><td>2</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/202530">202530</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/202530">Adventurer's vest & short sleeve shirt</a></td><td>Clothes</td><td>C2</td><td>1</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/207112">207112</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/207112">Blue suit</a></td><td>Clothes</td><td>C2</td><td>0</td><td>2</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/197952">197952</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/197952">Classic overalls - Latte</a></td><td>Clothes</td><td>C2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/197036">197036</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/197036">Classic overalls - White</a></td><td>Clothes</td><td>C2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/201767">201767</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/201767">Cooking apron - Denim</a></td><td>Clothes</td><td>C2</td><td>0</td><td>0</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/202222">202222</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/202222">Egyptian kalasiris - Short version</a></td><td>Clothes</td><td>C2</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/200212">200212</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/200212">Gardening overalls & shirt - Black gingham</a></td><td>Clothes</td><td>C2</td><td>1</td><td>0</td><td>2</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199926">199926</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199926">Gardening overalls & shirt - Denim</a></td><td>Clothes</td><td>C2</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/200165">200165</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/200165">Gardening overalls & shirt - Stripes</a></td><td>Clothes</td><td>C2</td><td>1</td><td>2</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/206937">206937</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/206937">Haori - Black</a></td><td>Clothes</td><td>C2</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199543">199543</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199543">Injured</a></td><td>Clothes</td><td>C2</td><td>3</td><td>1</td><td>2</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/207621">207621</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/207621">Japanese student uniform</a></td><td>Clothes</td><td>C2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/198545">198545</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/198545">OtterClam gray T</a></td><td>Clothes</td><td>C2</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203698">203698</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203698">Ottermas sweater - Brown & White</a></td><td>Clothes</td><td>C2</td><td>2</td><td>1</td><td>1</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203651">203651</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203651">Ottermas sweater - Green & White</a></td><td>Clothes</td><td>C2</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203604">203604</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203604">Ottermas sweater - Red & White</a></td><td>Clothes</td><td>C2</td><td>2</td><td>0</td><td>0</td><td>0</td><td>2</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/197287">197287</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/197287">Party suit 03</a></td><td>Clothes</td><td>C2</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/217582">217582</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/217582">Pattern dress - Coins</a></td><td>Clothes</td><td>C2</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/217629">217629</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/217629">Pattern dress - Dots</a></td><td>Clothes</td><td>C2</td><td>0</td><td>2</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/198737">198737</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/198737">Polo - Clam red</a></td><td>Clothes</td><td>C2</td><td>3</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/207800">207800</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/207800">Polo - Otter Federer</a></td><td>Clothes</td><td>C2</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203745">203745</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203745">Snowflake sweater - Beige</a></td><td>Clothes</td><td>C2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/196719">196719</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/196719">Sweater - Green</a></td><td>Clothes</td><td>C2</td><td>0</td><td>2</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/197381">197381</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/197381">Bubbles</a></td><td>Clothes</td><td>C1</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/197918">197918</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/197918">Classic overalls - Navy</a></td><td>Clothes</td><td>C1</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/207159">207159</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/207159">Gray plaid suit</a></td><td>Clothes</td><td>C1</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203802">203802</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203802">Holly leaf sweater</a></td><td>Clothes</td><td>C1</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/204126">204126</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/204126">Long coat - Brown</a></td><td>Clothes</td><td>C1</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/204160">204160</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/204160">Long coat - Pink</a></td><td>Clothes</td><td>C1</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/198063">198063</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/198063">Lunar new year</a></td><td>Clothes</td><td>C1</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/197739">197739</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/197739">Maple leaves</a></td><td>Clothes</td><td>C1</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/217130">217130</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/217130">Mermaid - Green lake</a></td><td>Clothes</td><td>C1</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199386">199386</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199386">Mushroom robe</a></td><td>Clothes</td><td>C1</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/198656">198656</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/198656">OtterClam logo T</a></td><td>Clothes</td><td>C1</td><td>2</td><td>1</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199009">199009</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199009">Ragged</a></td><td>Clothes</td><td>C1</td><td>0</td><td>1</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199794">199794</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199794">Short sleeve flower shirt - Lake green</a></td><td>Clothes</td><td>C1</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199726">199726</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199726">Short sleeve jungle shirt - Aqua blue</a></td><td>Clothes</td><td>C1</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199760">199760</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199760">Short sleeve jungle shirt - Red ochre</a></td><td>Clothes</td><td>C1</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/198831">198831</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/198831">Sport jersey - Aqua and black</a></td><td>Clothes</td><td>C1</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/198865">198865</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/198865">Sport jersey - Clam red and white</a></td><td>Clothes</td><td>C1</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/208120">208120</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/208120">Suit - Pink</a></td><td>Clothes</td><td>C1</td><td>0</td><td>0</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/207367">207367</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/207367">White Suit</a></td><td>Clothes</td><td>C1</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/196766">196766</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/196766">Wizard robe - Fire</a></td><td>Clothes</td><td>C1</td><td>1</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/197105">197105</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/197105">Angel wings</a></td><td>Clothes</td><td>R3</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/207693">207693</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/207693">Classic leather jacket - Desert eagle</a></td><td>Clothes</td><td>R3</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/207715">207715</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/207715">Classic leather jacket - Red</a></td><td>Clothes</td><td>R3</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199172">199172</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199172">Clay dinosaur costume - Body</a></td><td>Clothes</td><td>R3</td><td>0</td><td>1</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/197127">197127</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/197127">Devil wings</a></td><td>Clothes</td><td>R3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/217266">217266</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/217266">Dress - Classic red with white dots</a></td><td>Clothes</td><td>R3</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199618">199618</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199618">Firefighter uniform - Red</a></td><td>Clothes</td><td>R3</td><td>0</td><td>2</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/206787">206787</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/206787">Giorno Suit</a></td><td>Clothes</td><td>R3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/204787">204787</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/204787">Pattern dress - Rabbit</a></td><td>Clothes</td><td>R3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199146">199146</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199146">Prayer beads - Calm</a></td><td>Clothes</td><td>R3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/197083">197083</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/197083">Punk suit</a></td><td>Clothes</td><td>R3</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/204260">204260</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/204260">Santa Cleos costume</a></td><td>Clothes</td><td>R3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199682">199682</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199682">Short sleeve flower shirt - Dark blue</a></td><td>Clothes</td><td>R3</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/204294">204294</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/204294">Ski jackets - Brown</a></td><td>Clothes</td><td>R3</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/204316">204316</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/204316">Ski jackets - Green</a></td><td>Clothes</td><td>R3</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/204360">204360</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/204360">Ski jackets - White</a></td><td>Clothes</td><td>R3</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/204382">204382</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/204382">Ski jackets - Yellow</a></td><td>Clothes</td><td>R3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199124">199124</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199124">Viking fur shawl</a></td><td>Clothes</td><td>R3</td><td>0</td><td>0</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/196822">196822</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/196822">Wizard robe - Soul</a></td><td>Clothes</td><td>R3</td><td>0</td><td>1</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/202705">202705</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/202705">Adventurer's leather coat</a></td><td>Clothes</td><td>R2</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/208070">208070</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/208070">Ancient clothes - Emerald Ankh</a></td><td>Clothes</td><td>R2</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199662">199662</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199662">Back to nature</a></td><td>Clothes</td><td>R2</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/197687">197687</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/197687">Hunter - Blue</a></td><td>Clothes</td><td>R2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/197671">197671</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/197671">Hunter - Red</a></td><td>Clothes</td><td>R2</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/207978">207978</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/207978">Ninja suit - Red</a></td><td>Clothes</td><td>R2</td><td>1</td><td>2</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203525">203525</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203525">Ottermas tree costume</a></td><td>Clothes</td><td>R2</td><td>0</td><td>3</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/204228">204228</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/204228">Otternas elf - Stripe pattern</a></td><td>Clothes</td><td>R2</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/206809">206809</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/206809">Spiderman costume</a></td><td>Clothes</td><td>R2</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/201229">201229</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/201229">Teabag costume</a></td><td>Clothes</td><td>R2</td><td>0</td><td>0</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/217356">217356</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/217356">Tights - Black</a></td><td>Clothes</td><td>R2</td><td>0</td><td>1</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/202355">202355</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/202355">Wadjet bless</a></td><td>Clothes</td><td>R2</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/217488">217488</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/217488">Cheongsam - Elegant white</a></td><td>Clothes</td><td>R1</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203792">203792</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203792">Snowflake sweater - Red & Green</a></td><td>Clothes</td><td>R1</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203515">203515</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203515">Snowman costume</a></td><td>Clothes</td><td>R1</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/200343">200343</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/200343">Athena's aegis chiton</a></td><td>Clothes</td><td>E3</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199678">199678</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199678">Back to nature - Peacock dance</a></td><td>Clothes</td><td>E3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/202479">202479</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/202479">Flat ancient wings - Golden</a></td><td>Clothes</td><td>E3</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/208065">208065</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/208065">Hephaestus' chiton</a></td><td>Clothes</td><td>E3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/200349">200349</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/200349">Hermes' traveling suit</a></td><td>Clothes</td><td>E3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/217456">217456</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/217456">Hestia's peplos</a></td><td>Clothes</td><td>E3</td><td>0</td><td>2</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/199452">199452</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/199452">Hoodie - OtterClam edition</a></td><td>Clothes</td><td>E3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/202755">202755</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/202755">Lightweight cotton adventurer t-shirt - with Cloak</a></td><td>Clothes</td><td>E3</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/216740">216740</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/216740">Oiran Wafuku - Matcha</a></td><td>Clothes</td><td>E3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/206839">206839</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/206839">Samurai armor - Turquoise</a></td><td>Clothes</td><td>E3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/204404">204404</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/204404">Santa Cleos costume - White</a></td><td>Clothes</td><td>E3</td><td>0</td><td>0</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/217465">217465</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/217465">Ancient Egyptian queen mantle</a></td><td>Clothes</td><td>E1</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/202221">202221</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/202221">Hoodie - FTX meme</a></td><td>Clothes</td><td>E1</td><td>0</td><td>2</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/207668">207668</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/207668">Iron otto suit - Classic</a></td><td>Clothes</td><td>E1</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/208015">208015</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/208015">Raijin suit</a></td><td>Clothes</td><td>E1</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/203514">203514</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/203514">SantaOtto costume - Platinum</a></td><td>Clothes</td><td>E1</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515651">16515651</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515651">Four-leaf clover</a></td><td>Collectible</td><td>C3</td><td>876</td><td>581</td><td>504</td><td>226</td><td>336</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516498">16516498</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516498">Orange blossom</a></td><td>Collectible</td><td>C3</td><td>621</td><td>478</td><td>0</td><td>212</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516415">16516415</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516415">Ancient container</a></td><td>Collectible</td><td>C2</td><td>0</td><td>0</td><td>170</td><td>175</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515604">16515604</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515604">Antlers</a></td><td>Collectible</td><td>C2</td><td>424</td><td>0</td><td>0</td><td>0</td><td>262</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516562">16516562</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516562">Morning light</a></td><td>Collectible</td><td>C2</td><td>336</td><td>313</td><td>0</td><td>224</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516126">16516126</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516126">Narcissus</a></td><td>Collectible</td><td>C2</td><td>452</td><td>467</td><td>203</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516173">16516173</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516173">Ancient god's wine</a></td><td>Collectible</td><td>C1</td><td>48</td><td>41</td><td>32</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516381">16516381</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516381">Falcon statue</a></td><td>Collectible</td><td>C1</td><td>0</td><td>0</td><td>0</td><td>32</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515922">16515922</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515922">Glowing black stone</a></td><td>Collectible</td><td>C1</td><td>61</td><td>39</td><td>23</td><td>33</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515786">16515786</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515786">Glowing green stone</a></td><td>Collectible</td><td>C1</td><td>45</td><td>41</td><td>21</td><td>35</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515820">16515820</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515820">Glowing red stone</a></td><td>Collectible</td><td>C1</td><td>57</td><td>47</td><td>25</td><td>50</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515888">16515888</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515888">Glowing white stone</a></td><td>Collectible</td><td>C1</td><td>70</td><td>50</td><td>19</td><td>35</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515854">16515854</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515854">Glowing yellow stone</a></td><td>Collectible</td><td>C1</td><td>64</td><td>54</td><td>20</td><td>29</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516076">16516076</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516076">Pegasus craft</a></td><td>Collectible</td><td>C1</td><td>68</td><td>0</td><td>24</td><td>0</td><td>64</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515536">16515536</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515536">Plant collection: Blue Lantern Herb</a></td><td>Collectible</td><td>C1</td><td>47</td><td>30</td><td>23</td><td>0</td><td>59</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515502">16515502</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515502">Plant collection: Ferns in the cloud</a></td><td>Collectible</td><td>C1</td><td>70</td><td>43</td><td>24</td><td>0</td><td>41</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515570">16515570</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515570">Plant collection: Wee Flowery Mushroom</a></td><td>Collectible</td><td>C1</td><td>58</td><td>38</td><td>25</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516016">16516016</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516016">Shining shell</a></td><td>Collectible</td><td>C1</td><td>0</td><td>46</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516207">16516207</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516207">The lost poetry</a></td><td>Collectible</td><td>C1</td><td>71</td><td>62</td><td>14</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515731">16515731</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515731">Artwork Fragments R3</a></td><td>Collectible</td><td>R3</td><td>45</td><td>32</td><td>15</td><td>11</td><td>40</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516359">16516359</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516359">Black cat statue</a></td><td>Collectible</td><td>R3</td><td>0</td><td>0</td><td>0</td><td>9</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516653">16516653</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516653">Crystal ball - Snowflake</a></td><td>Collectible</td><td>R3</td><td>0</td><td>0</td><td>0</td><td>0</td><td>46</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516273">16516273</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516273">Emerald</a></td><td>Collectible</td><td>R3</td><td>38</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516462">16516462</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516462">Golden dagger</a></td><td>Collectible</td><td>R3</td><td>0</td><td>0</td><td>0</td><td>10</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515436">16515436</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515436">Lost echidna</a></td><td>Collectible</td><td>R3</td><td>39</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515480">16515480</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515480">Lost kiwibird</a></td><td>Collectible</td><td>R3</td><td>36</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515458">16515458</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515458">Lost platypus</a></td><td>Collectible</td><td>R3</td><td>37</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516251">16516251</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516251">Ruby</a></td><td>Collectible</td><td>R3</td><td>0</td><td>0</td><td>14</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516295">16516295</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516295">Sapphire</a></td><td>Collectible</td><td>R3</td><td>0</td><td>35</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516609">16516609</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516609">Scarab jewelry </a></td><td>Collectible</td><td>R3</td><td>0</td><td>0</td><td>0</td><td>10</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515072">16515072</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515072">Tarotter - 0 The Fool</a></td><td>Collectible</td><td>R3</td><td>40</td><td>30</td><td>22</td><td>13</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515094">16515094</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515094">Tarotter - I The Magician</a></td><td>Collectible</td><td>R3</td><td>38</td><td>28</td><td>24</td><td>20</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515116">16515116</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515116">Tarotter - II The High Priestess</a></td><td>Collectible</td><td>R3</td><td>41</td><td>27</td><td>19</td><td>9</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515138">16515138</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515138">Tarotter - III The Empress</a></td><td>Collectible</td><td>R3</td><td>43</td><td>32</td><td>10</td><td>18</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515246">16515246</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515246">Tarotter - IX The Hermit</a></td><td>Collectible</td><td>R3</td><td>43</td><td>24</td><td>14</td><td>8</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515224">16515224</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515224">Tarotter - VIII Strength</a></td><td>Collectible</td><td>R3</td><td>42</td><td>31</td><td>19</td><td>12</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515394">16515394</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515394">Tarotter - XIX The Sun</a></td><td>Collectible</td><td>R3</td><td>44</td><td>23</td><td>17</td><td>13</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516631">16516631</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516631">Topaz</a></td><td>Collectible</td><td>R3</td><td>0</td><td>0</td><td>14</td><td>7</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515978">16515978</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515978">lost duckling</a></td><td>Collectible</td><td>R3</td><td>0</td><td>38</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515956">16515956</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515956">lost turtle</a></td><td>Collectible</td><td>R3</td><td>0</td><td>22</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515753">16515753</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515753">Artwork Fragments R2</a></td><td>Collectible</td><td>R2</td><td>76</td><td>14</td><td>10</td><td>13</td><td>27</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516675">16516675</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516675">Crystal ball - Snowman</a></td><td>Collectible</td><td>R2</td><td>0</td><td>0</td><td>0</td><td>0</td><td>32</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516050">16516050</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516050">Cursed ring</a></td><td>Collectible</td><td>R2</td><td>69</td><td>20</td><td>12</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516110">16516110</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516110">Golden Fleece</a></td><td>Collectible</td><td>R2</td><td>80</td><td>0</td><td>12</td><td>0</td><td>22</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516000">16516000</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516000">Mysterious key</a></td><td>Collectible</td><td>R2</td><td>75</td><td>21</td><td>14</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515715">16515715</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515715">Mystery crystal</a></td><td>Collectible</td><td>R2</td><td>56</td><td>17</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515160">16515160</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515160">Tarotter - IV The Emperor</a></td><td>Collectible</td><td>R2</td><td>0</td><td>23</td><td>10</td><td>10</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515176">16515176</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515176">Tarotter - V The Hierophant</a></td><td>Collectible</td><td>R2</td><td>0</td><td>16</td><td>10</td><td>10</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515192">16515192</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515192">Tarotter - VI The Lovers</a></td><td>Collectible</td><td>R2</td><td>0</td><td>19</td><td>6</td><td>8</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515208">16515208</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515208">Tarotter - VII The Chariot</a></td><td>Collectible</td><td>R2</td><td>0</td><td>23</td><td>6</td><td>15</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515268">16515268</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515268">Tarotter - X The Wheel of Furtune</a></td><td>Collectible</td><td>R2</td><td>0</td><td>11</td><td>7</td><td>19</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515284">16515284</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515284">Tarotter - XI The Justice</a></td><td>Collectible</td><td>R2</td><td>0</td><td>23</td><td>11</td><td>8</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515300">16515300</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515300">Tarotter - XII The Hanged Man</a></td><td>Collectible</td><td>R2</td><td>0</td><td>19</td><td>9</td><td>8</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515326">16515326</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515326">Tarotter - XIV Temperance</a></td><td>Collectible</td><td>R2</td><td>0</td><td>12</td><td>8</td><td>14</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515342">16515342</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515342">Tarotter - XV The Devil</a></td><td>Collectible</td><td>R2</td><td>0</td><td>18</td><td>12</td><td>9</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515368">16515368</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515368">Tarotter - XVII The Stars</a></td><td>Collectible</td><td>R2</td><td>0</td><td>17</td><td>8</td><td>11</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515769">16515769</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515769">Artwork Fragments R1</a></td><td>Collectible</td><td>R1</td><td>116</td><td>52</td><td>17</td><td>11</td><td>5</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516691">16516691</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516691">Crystal ball - SantaOtto</a></td><td>Collectible</td><td>R1</td><td>0</td><td>0</td><td>0</td><td>0</td><td>7</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516241">16516241</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516241">God's Fire </a></td><td>Collectible</td><td>R1</td><td>0</td><td>38</td><td>20</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516066">16516066</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516066">Otter doll</a></td><td>Collectible</td><td>R1</td><td>133</td><td>61</td><td>0</td><td>0</td><td>9</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516484">16516484</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516484">Scarab jewelry - Flying scarab</a></td><td>Collectible</td><td>R1</td><td>0</td><td>0</td><td>0</td><td>14</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515316">16515316</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515316">Tarotter - XIII Death</a></td><td>Collectible</td><td>R1</td><td>0</td><td>56</td><td>19</td><td>11</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515358">16515358</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515358">Tarotter - XVI The Tower</a></td><td>Collectible</td><td>R1</td><td>0</td><td>0</td><td>14</td><td>11</td><td>9</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515384">16515384</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515384">Tarotter - XVIII The Moon</a></td><td>Collectible</td><td>R1</td><td>0</td><td>0</td><td>6</td><td>15</td><td>11</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515416">16515416</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515416">Tarotter - XX Judgement</a></td><td>Collectible</td><td>R1</td><td>0</td><td>0</td><td>17</td><td>12</td><td>13</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515426">16515426</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515426">Tarotter - XXI The World</a></td><td>Collectible</td><td>R1</td><td>0</td><td>0</td><td>13</td><td>11</td><td>9</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515779">16515779</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515779">Artwork Fragments E3</a></td><td>Collectible</td><td>E3</td><td>130</td><td>97</td><td>30</td><td>26</td><td>30</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16516494">16516494</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16516494">Flying bird jewelry</a></td><td>Collectible</td><td>E3</td><td>0</td><td>0</td><td>16</td><td>15</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515783">16515783</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515783">Artwork Fragments E2</a></td><td>Collectible</td><td>E2</td><td>1</td><td>70</td><td>32</td><td>30</td><td>19</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/16515785">16515785</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/16515785">Artwork Fragments E1</a></td><td>Collectible</td><td>E1</td><td>0</td><td>0</td><td>20</td><td>11</td><td>8</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/397492">397492</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/397492">Cucumber eye pads</a></td><td>Facial Accessories</td><td>C3</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/401297">401297</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/401297">Earrings - Ottermas candy</a></td><td>Facial Accessories</td><td>C3</td><td>3</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/393280">393280</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/393280">Face mask - Cat</a></td><td>Facial Accessories</td><td>C3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/400869">400869</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/400869">Fake mustache - White</a></td><td>Facial Accessories</td><td>C3</td><td>0</td><td>1</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/398073">398073</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/398073">Flowering eye decorations - Blue</a></td><td>Facial Accessories</td><td>C3</td><td>3</td><td>3</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/397915">397915</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/397915">Flowering eye decorations - Red</a></td><td>Facial Accessories</td><td>C3</td><td>3</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/398137">398137</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/398137">Flowering eye decorations - White</a></td><td>Facial Accessories</td><td>C3</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/400507">400507</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/400507">Mask - Christmas tree</a></td><td>Facial Accessories</td><td>C3</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/402064">402064</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/402064">New year couplet sticker - A lots of wealth</a></td><td>Facial Accessories</td><td>C3</td><td>0</td><td>0</td><td>1</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/397249">397249</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/397249">Party glasses - Blue flower</a></td><td>Facial Accessories</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>1</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/397121">397121</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/397121">Party glasses - Green flower</a></td><td>Facial Accessories</td><td>C3</td><td>1</td><td>0</td><td>1</td><td>0</td><td>4</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/396993">396993</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/396993">Party glasses - Orange flower</a></td><td>Facial Accessories</td><td>C3</td><td>1</td><td>1</td><td>0</td><td>1</td><td>2</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/396765">396765</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/396765">Party glasses - Pink Strawberry</a></td><td>Facial Accessories</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>1</td><td>2</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/397313">397313</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/397313">Party glasses - Purple flower</a></td><td>Facial Accessories</td><td>C3</td><td>4</td><td>3</td><td>0</td><td>0</td><td>1</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/396701">396701</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/396701">Party glasses - Red Strawberry</a></td><td>Facial Accessories</td><td>C3</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/396895">396895</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/396895">Party glasses - Red flower</a></td><td>Facial Accessories</td><td>C3</td><td>1</td><td>1</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/397185">397185</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/397185">Party glasses - Sky blue flower</a></td><td>Facial Accessories</td><td>C3</td><td>2</td><td>2</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/397377">397377</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/397377">Party glasses - White flower</a></td><td>Facial Accessories</td><td>C3</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/396637">396637</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/396637">Party glasses - Yellow Strawberry</a></td><td>Facial Accessories</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/397057">397057</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/397057">Party glasses - Yellow flower</a></td><td>Facial Accessories</td><td>C3</td><td>2</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/400933">400933</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/400933">Snowman nose</a></td><td>Facial Accessories</td><td>C3</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/402932">402932</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/402932">Tropical lei - Orange</a></td><td>Facial Accessories</td><td>C3</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/394971">394971</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/394971">Wayfarer sunglasses - Amber</a></td><td>Facial Accessories</td><td>C3</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/395035">395035</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/395035">Wayfarer sunglasses - Camo</a></td><td>Facial Accessories</td><td>C3</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/395099">395099</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/395099">Wayfarer sunglasses - Dark amber</a></td><td>Facial Accessories</td><td>C3</td><td>0</td><td>0</td><td>0</td><td>1</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/400314">400314</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/400314">Adventure goggles - Earth</a></td><td>Facial Accessories</td><td>C2</td><td>1</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/393523">393523</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/393523">Aviator glasses</a></td><td>Facial Accessories</td><td>C2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/400997">400997</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/400997">Fake Santa Cleos beard</a></td><td>Facial Accessories</td><td>C2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/395395">395395</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/395395">Fake mustache</a></td><td>Facial Accessories</td><td>C2</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/397868">397868</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/397868">Flowering makeup - Mulberry</a></td><td>Facial Accessories</td><td>C2</td><td>1</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/397979">397979</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/397979">Flowering makeup - Orange</a></td><td>Facial Accessories</td><td>C2</td><td>2</td><td>4</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/398026">398026</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/398026">Flowering makeup - Yellow</a></td><td>Facial Accessories</td><td>C2</td><td>2</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/397556">397556</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/397556">Leaf mask - Green</a></td><td>Facial Accessories</td><td>C2</td><td>2</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/397647">397647</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/397647">Leaf mask - Withered</a></td><td>Facial Accessories</td><td>C2</td><td>0</td><td>2</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/399377">399377</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/399377">Lemon eye pads</a></td><td>Facial Accessories</td><td>C2</td><td>3</td><td>0</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/400460">400460</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/400460">Mask - Snow man</a></td><td>Facial Accessories</td><td>C2</td><td>0</td><td>0</td><td>1</td><td>0</td><td>0</td>
</tr>
<tr>
<td><a href="https://api.otterclam.finance/items/metadata/402128">402128</a></td><td><a href="https://opensea.io/assets/matic/0xbd29ee9a2ce0c794eaf09bedca9387f4566377d5/402128">New year couplet earrings - Big fortune and great profit</a></td><td>Facial Accessories</td><td>C2</td><td>0</td><td>1</td><td>0</td><td>0</td><td>0</td>
</tr>
<tr>