Piñata Vision barcode/Card type example
Visual comparison
To find the card type bits, one approach might be to compare a particular set of cards, by type, and see which bits differ between the different card types.
For example, for the E...0 obfuscation, if you visually glance at the bytes, you can notice similarities between the same card types:
E........B.....0 Vision_Single_Blackariants E........B.....0 Vision_Single_GoodVariants E........7.....0 Vision_Single_Learn/Perform Trick E........E.....0 Vision_Single_Placetag E........A.....0 Vision_Single_SparseCallback E........8.....0 Vision_Single_View_Appear_Cutscene E........0.....0 Vision_Single_View_Mate_Cutscene E........E.....0 Vision_Single_ViewTaginJournal
So, that byte in the middle that's the same for each type of card, but differs between different types, is probably part of the card type field.
There might be another bit or two, and a script would spot the similarities that aren't as obvious at first glance.
Bit comparison
Obfuscation sets 6 and F contain the most number of different card types, so either is a good place to start for specifically identifying the card type bits.
Obfuscation set F
Set F's bits 56, 58, 60, and 61 differ between different types but not among the same types. Bit 46 also differs between different types, but also differs among Good types and among Black types.
Type | Bits 61 60 58 56 | Bit 46 | Bit 28 | Bit 25 | Other bits |
---|---|---|---|---|---|
Appear | 0011 | 1 | 0 | 1 | Bit 6 = 1 |
Mate | 0011 | 1 | 0 | 1 | Bit 6 = 0 |
Black | 1010 | 0 or 1 | 0 or 1 | 0 or 1 | |
Good | 1010 | 0 or 1 | 0 or 1 | 0 or 1 | |
Weather | 1011 | 0 | 0 | 1 | |
UnlockArt | 1100 | 0 | 0 | 1 | |
Journal | 1100 | 1 | 0 | 1 | |
PlaceTag | 1101 | 1 | 0 or 1 | 0 | |
Learn Primary | 1101 | 0 | 0 | 1 | Bit 30 = 0 |
Learn Secondary | 1101 | 0 | 0 | 0 | Bit 30 = 0 |
Perform Primary | 1101 | 0 | 1 | 1 | Bit 30 = 0 |
Perform Secondary | 1101 | 0 | 0 | 1 | Bit 30 = 1 |
TimeWarp | 1101 | 0 | 1 | 1 | Bits 4, 8, 9, 10, 11, 38, 39, 40, 44, 48 differ between TimeWarp and Learn/Perform |
Set F bit diff results for all types of cards |
---|
grep Vision VP2Beta/barcodes.txt | egrep "^[0-9A-F]{15}F" | ./barcodetxt2bitdiff.pl --short | ./bit_diff.pl --nomatch | sort 665555544444443333333333222222222211111111110000 Description VPID Barcode 108642086542109876543210987654321098765432109864 --------------------------------------------------------------------------------------------- Appear_blackbutterfl 0 C5345D5B2E0F4CDF 001101101011010101101100101110000011110100110011 0x0000 0b0000000000000000 Appear_crocodile 0 C5345D5B2E6F4CDF 001101101011010101101100101110011011110100110011 0x0000 0b0000000000000000 Appear_deer 0 C5345D5B2E294CDF 001101101011010101101100101110001010010100110011 0x0000 0b0000000000000000 Appear_rabbit 0 C5345D5B2AB34CDF 001101101011010101101100101010101100110100110011 0x0000 0b0000000000000000 Appear_robin 0 C5345D5B2A94BCDF 001101101011010101101100101010100101001011110011 0x0000 0b0000000000000000 Appear_sandsnake 0 C5345D5B2E514CDF 001101101011010101101100101110010100010100110011 0x0000 0b0000000000000000 Appear_swan 0 C5345D5B2AE4BCDF 001101101011010101101100101010111001001011110011 0x0000 0b0000000000000000 Appear_wolfpest 0 C5345D5B273FBCDF 001101101011010101101100100111001111111011110011 0x0000 0b0000000000000000 Appear_worm 0 C5345D5B2740BCDF 001101101011010101101100100111010000001011110011 0x0000 0b0000000000000000 Black_bluebutterfly 0012 E431687B3D09538F 101001011100000111101100111101000010010101001100 0x000c 0b0000000000001100 Black_ladybird 0065 E4713A393B17A38F 101011010110100011100100111011000101111010001100 0x0041 0b0000000001000001 Black_pigeon 0091 E4647939287DA38F 101010101110010011100100101000011111011010001100 0x005b 0b0000000001011011 Black_sandspider 0035 E475292B7F96A38F 101011110100010010101101111111100101101010001100 0x0023 0b0000000000100011 Egg_bluebottle 0192 F1706B683403538F 110111001100110110100000110100000000110101001100 0x00c0 0b0000000011000000 Egg_boomslang 0194 F1706B683502538F 110111001100110110100000110101000000100101001100 0x00c2 0b0000000011000010 Egg_cat 0200 F1706B68240C538F 110111001100110110100000100100000011000101001100 0x00c8 0b0000000011001000 Egg_chicken 0202 F1706B68250D538F 110111001100110110100000100101000011010101001100 0x00ca 0b0000000011001010 Egg_dog 0209 F1706B687463A38F 110111001100110110100001110100011000111010001100 0x00d1 0b0000000011010001 Egg_dragon 0211 F1706B687562A38F 110111001100110110100001110101011000101010001100 0x00d3 0b0000000011010011 Egg_elephant 0217 F1706B68646CA38F 110111001100110110100001100100011011001010001100 0x00d9 0b0000000011011001 Egg_firesalamander 0219 F1706B68656DA38F 110111001100110110100001100101011011011010001100 0x00db 0b0000000011011011 Egg_gorilla 0232 F1706B69248C538F 110111001100110110100100100100100011000101001100 0x00e8 0b0000000011101000 Egg_hyena 0241 F1706B6974F3A38F 110111001100110110100101110100111100111010001100 0x00f1 0b0000000011110001 Egg_ostrich 0263 F1706B3B1C40A38F 110111001100110011101100011100010000001010001100 0x0107 0b0000000100000111 Egg_pig 0269 F1706B3B0D49A38F 110111001100110011101100001101010010011010001100 0x010d 0b0000000100001101 Egg_poisonfrog 0271 F1706B3B0C48A38F 110111001100110011101100001100010010001010001100 0x010f 0b0000000100001111 Egg_raccoon 0276 F1706B3B5D21538F 110111001100110011101101011101001000010101001100 0x0114 0b0000000100010100 Egg_scarab 0284 F1706B3B4D29538F 110111001100110011101101001101001010010101001100 0x011c 0b0000000100011100 Egg_scorpion 0286 F1706B3B4C28538F 110111001100110011101101001100001010000101001100 0x011e 0b0000000100011110 Egg_squirrel 0293 F1706B3A1DB1A38F 110111001100110011101000011101101100011010001100 0x0125 0b0000000100100101 Egg_vulture 0310 F1706B3A5CD0538F 110111001100110011101001011100110100000101001100 0x0136 0b0000000100110110 Egg_yeti 0318 F1706B3A4CD8538F 110111001100110011101001001100110110000101001100 0x013e 0b0000000100111110 Good_bat 0028 E4653B3B3F14538F 101010110110110011101100111111000101000101001100 0x001c 0b0000000000011100 Good_canary 0014 E461297B3F32538F 101010010100010111101100111111001100100101001100 0x000e 0b0000000000001110 Good_chameleon 0031 E4717B3A6D65A38F 101011011110110011101001101101011001011010001100 0x001f 0b0000000000011111 Good_crab 0110 E46168786F7EA38F 101010011100000111100001101111011111101010001100 0x006e 0b0000000001101110 Good_duck 0025 E475292B3F96538F 101011110100010010101100111111100101100101001100 0x0019 0b0000000000011001 Good_duck 0026 E46078393F86538F 101010001110000011100100111111100001100101001100 0x001a 0b0000000000011010 Good_flyingpig 0084 E4713A6A3F8F538F 101011010110100110101000111111100011110101001100 0x0054 0b0000000001010100 Good_gecko 0099 E464393A3E99A38F 101010100110010011101000111110100110011010001100 0x0063 0b0000000001100011 Good_newt 0021 E4753A6A6873A38F 101011110110100110101001101000011100111010001100 0x0015 0b0000000000010101 Good_ostrich 0103 E4647B3B3B61538F 101010101110110011101100111011011000010101001100 0x0067 0b0000000001100111 Good_ostrich 0104 E474783A7871538F 101011101110000011101001111000011100010101001100 0x0068 0b0000000001101000 Good_snail 0008 E460793A7338A38F 101010001110010011101001110011001110001010001100 0x0008 0b0000000000001000 Good_spider 0034 E4642B3A68D3A38F 101010100100110011101001101000110100111010001100 0x0022 0b0000000000100010 Good_swan 0067 E465383A3AD4A38F 101010110110000011101000111010110101001010001100 0x0043 0b0000000001000011 Home_armadillo 0516 F1706A7BCD01538F 110111001100100111101111001101000000010101001100 0x0204 0b0000001000000100 Home_badger 0504 F1706B2944DC538F 110111001100110010100101000100110111000101001100 0x01f8 0b0000000111111000 Home_bear 0506 F1706B2945DD538F 110111001100110010100101000101110111010101001100 0x01fa 0b0000000111111010 Home_cowshed 0524 F1706A7BDD09538F 110111001100100111101111011101000010010101001100 0x020c 0b0000001000001100 Home_crab 0518 F1706A7BCC00538F 110111001100100111101111001100000000000101001100 0x0206 0b0000001000000110 Home_duck 0533 F1706A7BED61A38F 110111001100100111101111101101011000011010001100 0x0215 0b0000001000010101 Home_eagle 0535 F1706A7BEC60A38F 110111001100100111101111101100011000001010001100 0x0217 0b0000001000010111 Home_flyingpig 0541 F1706A7BFD69A38F 110111001100100111101111111101011010011010001100 0x021d 0b0000001000011101 Home_frog 0543 F1706A7BFC68A38F 110111001100100111101111111100011010001010001100 0x021f 0b0000001000011111 Home_hippo 0558 F1706A7ADC88538F 110111001100100111101011011100100010000101001100 0x022e 0b0000001000101110 Journal_bat 0 F0604D5B2E144C8F 110010001001010101101100101110000101000100110000 0x0000 0b0000000000000000 Journal_bluebottle 0 F0604D5B2E1DBC8F 110010001001010101101100101110000111011011110000 0x0000 0b0000000000000000 Journal_chicken 0 F0604D5B2E744C8F 110010001001010101101100101110011101000100110000 0x0000 0b0000000000000000 Journal_crow 0 F0604D5B2E7DBC8F 110010001001010101101100101110011111011011110000 0x0000 0b0000000000000000 Journal_scorpionpest 0 F0604D5B2A984C8F 110010001001010101101100101010100110000100110000 0x0000 0b0000000000000000 Journal_skunk 0 F0604D5B2E23BC8F 110010001001010101101100101110001000111011110000 0x0000 0b0000000000000000 Journal_squirrel 0 F0604D5B2AF64C8F 110010001001010101101100101010111101100100110000 0x0000 0b0000000000000000 Journal_unicorn 0 F0604D5B2AE84C8F 110010001001010101101100101010111010000100110000 0x0000 0b0000000000000000 Journal_wolf 0 F0604D5B2705BC8F 110010001001010101101100100111000001011011110000 0x0000 0b0000000000000000 LearnPri_boomslang 0 F1700C5B2E1AA39F 110111000001000101101100101110000110101010001101 0x0000 0b0000000000000000 LearnPri_dog 0 F1700C5B2E3B539F 110111000001000101101100101110001110110101001101 0x0000 0b0000000000000000 LearnPri_horse 0 F1700C5B2ECA539F 110111000001000101101100101110110010100101001101 0x0000 0b0000000000000000 LearnPri_ladybird 0 F1700C5B2A17A39F 110111000001000101101100101010000101111010001101 0x0000 0b0000000000000000 LearnPri_sparrow 0 F1700C5B2AC7539F 110111000001000101101100101010110001110101001101 0x0000 0b0000000000000000 LearnPri_yeti 0 F1700C5B2714539F 110111000001000101101100100111000101000101001101 0x0000 0b0000000000000000 LearnSec_bluebottle 0 F1700C5B2D1FA39F 110111000001000101101100101101000111111010001101 0x0000 0b0000000000000000 LearnSec_cow 0 F1700C5B2D3E539F 110111000001000101101100101101001111100101001101 0x0000 0b0000000000000000 LearnSec_hedgehog 0 F1700C5B2DCF539F 110111000001000101101100101101110011110101001101 0x0000 0b0000000000000000 LearnSec_pinkbutterf 0 F1700C5B283AA39F 110111000001000101101100101000001110101010001101 0x0000 0b0000000000000000 Mate_beaver 0 C5345D5B2E0C4C9F 001101101011010101101100101110000011000100110001 0x0000 0b0000000000000000 Mate_cow 0 C5345D5B2E6C4C9F 001101101011010101101100101110011011000100110001 0x0000 0b0000000000000000 Mate_rhino 0 C5345D5B2A91BC9F 001101101011010101101100101010100100011011110001 0x0000 0b0000000000000000 Mate_sandant 0 C5345D5B2E3BBC9F 001101101011010101101100101110001110111011110001 0x0000 0b0000000000000000 Mate_scarab 0 C5345D5B274A4C9F 001101101011010101101100100111010010100100110001 0x0000 0b0000000000000000 Mate_turtle 0 C5345D5B2ADFBC9F 001101101011010101101100101010110111111011110001 0x0000 0b0000000000000000 PerformPri_bear 0 F1700C5B3F14A39F 110111000001000101101100111111000101001010001101 0x0000 0b0000000000000000 PerformPri_cat 0 F1700C5B3F35539F 110111000001000101101100111111001101010101001101 0x0000 0b0000000000000000 PerformPri_grasssnak 0 F1700C5B3FC4539F 110111000001000101101100111111110001000101001101 0x0000 0b0000000000000000 PerformPri_penguin 0 F1700C5B3B3EA39F 110111000001000101101100111011001111101010001101 0x0000 0b0000000000000000 PerformPri_turtle 0 F1700C5B3BCFA39F 110111000001000101101100111011110011111010001101 0x0000 0b0000000000000000 PerformSec_bluebutte 0 F1700C5B6F1A539F 110111000001000101101101101111000110100101001101 0x0000 0b0000000000000000 PerformSec_dinosaur 0 F1700C5B6F3AA39F 110111000001000101101101101111001110101010001101 0x0000 0b0000000000000000 PerformSec_lemming 0 F1700C5B6FCBA39F 110111000001000101101101101111110010111010001101 0x0000 0b0000000000000000 PerformSec_newt 0 F1700C5B6B37A39F 110111000001000101101101101011001101111010001101 0x0000 0b0000000000000000 PerformSec_wolf 0 F1700C5B6615A39F 110111000001000101101101100110000101011010001101 0x0000 0b0000000000000000 Plant_birdofparadise 1077 F170687E7DF1A38F 110111001100000111111001111101111100011010001100 0x0435 0b0000010000110101 Plant_carrot 1060 F170687E3D81538F 110111001100000111111000111101100000010101001100 0x0424 0b0000010000100100 Plant_daisy 1070 F170687E2C88538F 110111001100000111111000101100100010000101001100 0x042e 0b0000010000101110 Plant_garlic 1062 F170687E3C80538F 110111001100000111111000111100100000000101001100 0x0426 0b0000010000100110 Plant_radish 1068 F170687E2D89538F 110111001100000111111000101101100010010101001100 0x042c 0b0000010000101100 Produce_bananasplit 0704 F1706A68C403538F 110111001100100110100011000100000000110101001100 0x02c0 0b0000001011000000 Produce_carrotcake 0706 F1706A68C502538F 110111001100100110100011000101000000100101001100 0x02c2 0b0000001011000010 Produce_coconutmacar 0712 F1706A68D40C538F 110111001100100110100011010100000011000101001100 0x02c8 0b0000001011001000 Produce_dinogreenbon 0721 F1706A68E463A38F 110111001100100110100011100100011000111010001100 0x02d1 0b0000001011010001 Produce_dinoskull 0723 F1706A68E562A38F 110111001100100110100011100101011000101010001100 0x02d3 0b0000001011010011 Produce_peasoup 0714 F1706A68D50D538F 110111001100100110100011010101000011010101001100 0x02ca 0b0000001011001010 Prop_banjostatue 0736 F1706A69C483538F 110111001100100110100111000100100000110101001100 0x02e0 0b0000001011100000 Prop_barrel 0755 F1706A69E5F2A38F 110111001100100110100111100101111100101010001100 0x02f3 0b0000001011110011 Prop_gardenjunk84 0813 F1706A3A8DB9A38F 110111001100100011101010001101101110011010001100 0x032d 0b0000001100101101 Prop_golfflag 0807 F1706A3A9CB0A38F 110111001100100011101010011100101100001010001100 0x0327 0b0000001100100111 Prop_jamjar 0830 F1706A3ABCD8538F 110111001100100011101010111100110110000101001100 0x033e 0b0000001100111110 Prop_leafpile 0753 F1706A69E4F3A38F 110111001100100110100111100100111100111010001100 0x02f1 0b0000001011110001 Prop_milkchurn 0746 F1706A69D58D538F 110111001100100110100111010101100011010101001100 0x02ea 0b0000001011101010 Prop_mumbostatue 0820 F1706A3AADD1538F 110111001100100011101010101101110100010101001100 0x0334 0b0000001100110100 Prop_rainbow 0822 F1706A3AACD0538F 110111001100100011101010101100110100000101001100 0x0336 0b0000001100110110 Prop_romancesweet 0805 F1706A3A9DB1A38F 110111001100100011101010011101101100011010001100 0x0325 0b0000001100100101 Prop_statue 0731 F1706A68F56DA38F 110111001100100110100011110101011011011010001100 0x02db 0b0000001011011011 Prop_windchime 0744 F1706A69D48C538F 110111001100100110100111010100100011000101001100 0x02e8 0b0000001011101000 Prop_wishingwell 0798 F1706A3BBC28538F 110111001100100011101110111100001010000101001100 0x031e 0b0000001100011110 Seed_banana 0483 F1706B2915B2A38F 110111001100110010100100010101101100101010001100 0x01e3 0b0000000111100011 Seed_dandelion 0474 F1706B28452D538F 110111001100110010100001000101001011010101001100 0x01da 0b0000000111011010 Seed_fir 0481 F1706B2914B3A38F 110111001100110010100100010100101100111010001100 0x01e1 0b0000000111100001 Seed_fireweed 0472 F1706B28442C538F 110111001100110010100001000100001011000101001100 0x01d8 0b0000000111011000 Seed_hollybush 0491 F1706B2905BDA38F 110111001100110010100100000101101111011010001100 0x01eb 0b0000000111101011 Seed_orchid 0449 F1706B281443A38F 110111001100110010100000010100010000111010001100 0x01c1 0b0000000111000001 Seed_pea 0466 F1706B285522538F 110111001100110010100001010101001000100101001100 0x01d2 0b0000000111010010 Seed_snowdrop 0451 F1706B281542A38F 110111001100110010100000010101010000101010001100 0x01c3 0b0000000111000011 TimeWarp_Dawn 0 F1711D9B3B156C8F 110111010011011001101100111011000101010110110000 0x0000 0b0000000000000000 Tree_banana 1018 F1706A29B5DD538F 110111001100100010100110110101110111010101001100 0x03fa 0b0000001111111010 UnlockArt_brownbutte 0 F0600D5B2E4B4C8F 110010000001010101101100101110010010110100110000 0x0000 0b0000000000000000 UnlockArt_chicken 0 F0600D5B2E344C8F 110010000001010101101100101110001101000100110000 0x0000 0b0000000000000000 UnlockArt_crow 0 F0600D5B2E3DBC8F 110010000001010101101100101110001111011011110000 0x0000 0b0000000000000000 UnlockArt_snail 0 F0600D5B277BBC8F 110010000001010101101100100111011110111011110000 0x0000 0b0000000000000000 UnlockArt_squirrel 0 F0600D5B2AD64C8F 110010000001010101101100101010110101100100110000 0x0000 0b0000000000000000 UnlockArt_unicorn 0 F0600D5B2AC84C8F 110010000001010101101100101010110010000100110000 0x0000 0b0000000000000000 UnlockArt_yak 0 F0600D5B274C4C8F 110010000001010101101100100111010011000100110000 0x0000 0b0000000000000000 Weather_Rainbow_15_m 0 E5701D8A6B0A94DF 101111000011011000101001101011000010101001010011 0x0000 0b0000000000000000 ZZToy_fascamera 2242 F1707B603502538F 110111001110110110000000110101000000100101001100 0x08c2 0b0000100011000010 ZZToy_muskettle 2248 F1707B60240C538F 110111001110110110000000100100000011000101001100 0x08c8 0b0000100011001000 ZZToy_pirclock 2240 F1707B603403538F 110111001110110110000000110100000000110101001100 0x08c0 0b0000100011000000 222222211111111 Description VPID Barcode 764321098765432 ------------------------------------------------------------ Appear_blackbutterfl 0 C5345D5B2E0F4CDF 110000011110100 0x0000 0b0000000000000000 222222211111111 Description VPID Barcode 764321098765432 ------------------------------------------------------------ Mate_beaver 0 C5345D5B2E0C4C9F 110000011000100 0x0000 0b0000000000000000 Bit 06 Appear vs. Mate? 5554444433332222222211111111 Description VPID Barcode 4208641086308654321098765432 ------------------------------------------------------------------------- Black_bluebutterfly 0012 E431687B3D09538F 0101100011101101000010010101 0x000c 0b0000000000001100 55444443333322222222211111111 Description VPID Barcode 20864108632087654321098765432 -------------------------------------------------------------------------- Good_bat 0028 E4653B3B3F14538F 01101110111011111000101000101 0x001c 0b0000000000011100 333332222222211111111 Description VPID Barcode 863209874321098765432 ------------------------------------------------------------------ Egg_bluebottle 0192 F1706B683403538F 100001100000000110101 0x00c0 0b0000000011000000 433333222222221111111 Description VPID Barcode 086321987432109865432 ------------------------------------------------------------------ Home_armadillo 0516 F1706A7BCD01538F 011111001100000010101 0x0204 0b0000001000000100 322222111111 Description VPID Barcode 084210965432 --------------------------------------------------------- Plant_birdofparadise 1077 F170687E7DF1A38F 111111011010 0x0435 0b0000010000110101 2222211111111 Description VPID Barcode 9842198765432 ---------------------------------------------------------- Produce_bananasplit 0704 F1706A68C403538F 0000000110101 0x02c0 0b0000001011000000 333332222222211111111 Description VPID Barcode 863209874321098765432 ------------------------------------------------------------------ Prop_banjostatue 0736 F1706A69C483538F 100110000100000110101 0x02e0 0b0000001011100000 3322222211111111 Description VPID Barcode 2084321098765432 ------------------------------------------------------------- Seed_banana 0483 F1706B2915B2A38F 1011101100101010 0x01e3 0b0000000111100011 221111 Description VPID Barcode 849876 --------------------------------------------------- ZZToy_fascamera 2242 F1707B603502538F 110010 0x08c2 0b0000100011000010 222222211111111 Description VPID Barcode 764321098765432 ------------------------------------------------------------ Journal_bat 0 F0604D5B2E144C8F 110000101000100 0x0000 0b0000000000000000 222222211111111 Description VPID Barcode 764321098765432 ------------------------------------------------------------ LearnPri_boomslang 0 F1700C5B2E1AA39F 110000110101010 0x0000 0b0000000000000000 222222111111 Description VPID Barcode 643210865432 --------------------------------------------------------- LearnSec_bluebottle 0 F1700C5B2D1FA39F 110001111010 0x0000 0b0000000000000000 2222222211111111 Description VPID Barcode 7654321098765432 ------------------------------------------------------------- LearnPri_boomslang 0 F1700C5B2E1AA39F 1110000110101010 0x0000 0b0000000000000000 LearnSec_bluebottle 0 F1700C5B2D1FA39F 1101000111111010 0x0000 0b0000000000000000 Bit 25 Learn Primary vs. Learn Secondary? 222221111111 Description VPID Barcode 632109765432 --------------------------------------------------------- PerformPri_bear 0 F1700C5B3F14A39F 100010001010 0x0000 0b0000000000000000 222222211111111 Description VPID Barcode 764321098765432 ------------------------------------------------------------ PerformSec_bluebutte 0 F1700C5B6F1A539F 111000110100101 0x0000 0b0000000000000000 32222222211111111 Description VPID Barcode 08764321098765432 -------------------------------------------------------------- PerformPri_bear 0 F1700C5B3F14A39F 01111000101001010 0x0000 0b0000000000000000 PerformSec_bluebutte 0 F1700C5B6F1A539F 10111000110100101 0x0000 0b0000000000000000 18, 24, 27, 28, 30 Primary vs. Secondary. 28/30? 222222211111111 Description VPID Barcode 764321098765432 ------------------------------------------------------------ UnlockArt_brownbutte 0 F0600D5B2E4B4C8F 110010010110100 0x0000 0b0000000000000000 |