export const OPCODES = new Map([
[0x00, { name: "Pushint8", mnemonic: "PUSHINT8", byte: 0x00, operandEncoding: {"kind":"I8"} }],
[0x01, { name: "Pushint16", mnemonic: "PUSHINT16", byte: 0x01, operandEncoding: {"kind":"I16"} }],
[0x02, { name: "Pushint32", mnemonic: "PUSHINT32", byte: 0x02, operandEncoding: {"kind":"I32"} }],
[0x03, { name: "Pushint64", mnemonic: "PUSHINT64", byte: 0x03, operandEncoding: {"kind":"I64"} }],
[0x04, { name: "Pushint128", mnemonic: "PUSHINT128", byte: 0x04, operandEncoding: {"kind":"Bytes","length":16} }],
[0x05, { name: "Pushint256", mnemonic: "PUSHINT256", byte: 0x05, operandEncoding: {"kind":"Bytes","length":32} }],
[0x08, { name: "PushT", mnemonic: "PUSHT", byte: 0x08, operandEncoding: {"kind":"None"} }],
[0x09, { name: "PushF", mnemonic: "PUSHF", byte: 0x09, operandEncoding: {"kind":"None"} }],
[0x0A, { name: "PushA", mnemonic: "PUSHA", byte: 0x0A, operandEncoding: {"kind":"U32"} }],
[0x0B, { name: "PushNULL", mnemonic: "PUSHNULL", byte: 0x0B, operandEncoding: {"kind":"None"} }],
[0x0C, { name: "Pushdata1", mnemonic: "PUSHDATA1", byte: 0x0C, operandEncoding: {"kind":"Data1"} }],
[0x0D, { name: "Pushdata2", mnemonic: "PUSHDATA2", byte: 0x0D, operandEncoding: {"kind":"Data2"} }],
[0x0E, { name: "Pushdata4", mnemonic: "PUSHDATA4", byte: 0x0E, operandEncoding: {"kind":"Data4"} }],
[0x0F, { name: "PushM1", mnemonic: "PUSHM1", byte: 0x0F, operandEncoding: {"kind":"None"} }],
[0x10, { name: "Push0", mnemonic: "PUSH0", byte: 0x10, operandEncoding: {"kind":"None"} }],
[0x11, { name: "Push1", mnemonic: "PUSH1", byte: 0x11, operandEncoding: {"kind":"None"} }],
[0x12, { name: "Push2", mnemonic: "PUSH2", byte: 0x12, operandEncoding: {"kind":"None"} }],
[0x13, { name: "Push3", mnemonic: "PUSH3", byte: 0x13, operandEncoding: {"kind":"None"} }],
[0x14, { name: "Push4", mnemonic: "PUSH4", byte: 0x14, operandEncoding: {"kind":"None"} }],
[0x15, { name: "Push5", mnemonic: "PUSH5", byte: 0x15, operandEncoding: {"kind":"None"} }],
[0x16, { name: "Push6", mnemonic: "PUSH6", byte: 0x16, operandEncoding: {"kind":"None"} }],
[0x17, { name: "Push7", mnemonic: "PUSH7", byte: 0x17, operandEncoding: {"kind":"None"} }],
[0x18, { name: "Push8", mnemonic: "PUSH8", byte: 0x18, operandEncoding: {"kind":"None"} }],
[0x19, { name: "Push9", mnemonic: "PUSH9", byte: 0x19, operandEncoding: {"kind":"None"} }],
[0x1A, { name: "Push10", mnemonic: "PUSH10", byte: 0x1A, operandEncoding: {"kind":"None"} }],
[0x1B, { name: "Push11", mnemonic: "PUSH11", byte: 0x1B, operandEncoding: {"kind":"None"} }],
[0x1C, { name: "Push12", mnemonic: "PUSH12", byte: 0x1C, operandEncoding: {"kind":"None"} }],
[0x1D, { name: "Push13", mnemonic: "PUSH13", byte: 0x1D, operandEncoding: {"kind":"None"} }],
[0x1E, { name: "Push14", mnemonic: "PUSH14", byte: 0x1E, operandEncoding: {"kind":"None"} }],
[0x1F, { name: "Push15", mnemonic: "PUSH15", byte: 0x1F, operandEncoding: {"kind":"None"} }],
[0x20, { name: "Push16", mnemonic: "PUSH16", byte: 0x20, operandEncoding: {"kind":"None"} }],
[0x21, { name: "Nop", mnemonic: "NOP", byte: 0x21, operandEncoding: {"kind":"None"} }],
[0x22, { name: "Jmp", mnemonic: "JMP", byte: 0x22, operandEncoding: {"kind":"Jump8"} }],
[0x23, { name: "Jmp_L", mnemonic: "JMP_L", byte: 0x23, operandEncoding: {"kind":"Jump32"} }],
[0x24, { name: "Jmpif", mnemonic: "JMPIF", byte: 0x24, operandEncoding: {"kind":"Jump8"} }],
[0x25, { name: "Jmpif_L", mnemonic: "JMPIF_L", byte: 0x25, operandEncoding: {"kind":"Jump32"} }],
[0x26, { name: "Jmpifnot", mnemonic: "JMPIFNOT", byte: 0x26, operandEncoding: {"kind":"Jump8"} }],
[0x27, { name: "Jmpifnot_L", mnemonic: "JMPIFNOT_L", byte: 0x27, operandEncoding: {"kind":"Jump32"} }],
[0x28, { name: "JmpEQ", mnemonic: "JMPEQ", byte: 0x28, operandEncoding: {"kind":"Jump8"} }],
[0x29, { name: "JmpEQ_L", mnemonic: "JMPEQ_L", byte: 0x29, operandEncoding: {"kind":"Jump32"} }],
[0x2A, { name: "JmpNE", mnemonic: "JMPNE", byte: 0x2A, operandEncoding: {"kind":"Jump8"} }],
[0x2B, { name: "JmpNE_L", mnemonic: "JMPNE_L", byte: 0x2B, operandEncoding: {"kind":"Jump32"} }],
[0x2C, { name: "JmpGT", mnemonic: "JMPGT", byte: 0x2C, operandEncoding: {"kind":"Jump8"} }],
[0x2D, { name: "JmpGT_L", mnemonic: "JMPGT_L", byte: 0x2D, operandEncoding: {"kind":"Jump32"} }],
[0x2E, { name: "JmpGE", mnemonic: "JMPGE", byte: 0x2E, operandEncoding: {"kind":"Jump8"} }],
[0x2F, { name: "JmpGE_L", mnemonic: "JMPGE_L", byte: 0x2F, operandEncoding: {"kind":"Jump32"} }],
[0x30, { name: "JmpLT", mnemonic: "JMPLT", byte: 0x30, operandEncoding: {"kind":"Jump8"} }],
[0x31, { name: "JmpLT_L", mnemonic: "JMPLT_L", byte: 0x31, operandEncoding: {"kind":"Jump32"} }],
[0x32, { name: "JmpLE", mnemonic: "JMPLE", byte: 0x32, operandEncoding: {"kind":"Jump8"} }],
[0x33, { name: "JmpLE_L", mnemonic: "JMPLE_L", byte: 0x33, operandEncoding: {"kind":"Jump32"} }],
[0x34, { name: "Call", mnemonic: "CALL", byte: 0x34, operandEncoding: {"kind":"Jump8"} }],
[0x35, { name: "Call_L", mnemonic: "CALL_L", byte: 0x35, operandEncoding: {"kind":"Jump32"} }],
[0x36, { name: "CallA", mnemonic: "CALLA", byte: 0x36, operandEncoding: {"kind":"None"} }],
[0x37, { name: "CallT", mnemonic: "CALLT", byte: 0x37, operandEncoding: {"kind":"U16"} }],
[0x38, { name: "Abort", mnemonic: "ABORT", byte: 0x38, operandEncoding: {"kind":"None"} }],
[0x39, { name: "Assert", mnemonic: "ASSERT", byte: 0x39, operandEncoding: {"kind":"None"} }],
[0x3A, { name: "Throw", mnemonic: "THROW", byte: 0x3A, operandEncoding: {"kind":"None"} }],
[0x3B, { name: "Try", mnemonic: "TRY", byte: 0x3B, operandEncoding: {"kind":"Bytes","length":2} }],
[0x3C, { name: "TryL", mnemonic: "TRY_L", byte: 0x3C, operandEncoding: {"kind":"Bytes","length":8} }],
[0x3D, { name: "Endtry", mnemonic: "ENDTRY", byte: 0x3D, operandEncoding: {"kind":"Jump8"} }],
[0x3E, { name: "EndtryL", mnemonic: "ENDTRY_L", byte: 0x3E, operandEncoding: {"kind":"Jump32"} }],
[0x3F, { name: "Endfinally", mnemonic: "ENDFINALLY", byte: 0x3F, operandEncoding: {"kind":"None"} }],
[0x40, { name: "Ret", mnemonic: "RET", byte: 0x40, operandEncoding: {"kind":"None"} }],
[0x41, { name: "Syscall", mnemonic: "SYSCALL", byte: 0x41, operandEncoding: {"kind":"Syscall"} }],
[0x43, { name: "Depth", mnemonic: "DEPTH", byte: 0x43, operandEncoding: {"kind":"None"} }],
[0x45, { name: "Drop", mnemonic: "DROP", byte: 0x45, operandEncoding: {"kind":"None"} }],
[0x46, { name: "Nip", mnemonic: "NIP", byte: 0x46, operandEncoding: {"kind":"None"} }],
[0x48, { name: "Xdrop", mnemonic: "XDROP", byte: 0x48, operandEncoding: {"kind":"None"} }],
[0x49, { name: "Clear", mnemonic: "CLEAR", byte: 0x49, operandEncoding: {"kind":"None"} }],
[0x4A, { name: "Dup", mnemonic: "DUP", byte: 0x4A, operandEncoding: {"kind":"None"} }],
[0x4B, { name: "Over", mnemonic: "OVER", byte: 0x4B, operandEncoding: {"kind":"None"} }],
[0x4D, { name: "Pick", mnemonic: "PICK", byte: 0x4D, operandEncoding: {"kind":"None"} }],
[0x4E, { name: "Tuck", mnemonic: "TUCK", byte: 0x4E, operandEncoding: {"kind":"None"} }],
[0x50, { name: "Swap", mnemonic: "SWAP", byte: 0x50, operandEncoding: {"kind":"None"} }],
[0x51, { name: "Rot", mnemonic: "ROT", byte: 0x51, operandEncoding: {"kind":"None"} }],
[0x52, { name: "Roll", mnemonic: "ROLL", byte: 0x52, operandEncoding: {"kind":"None"} }],
[0x53, { name: "Reverse3", mnemonic: "REVERSE3", byte: 0x53, operandEncoding: {"kind":"None"} }],
[0x54, { name: "Reverse4", mnemonic: "REVERSE4", byte: 0x54, operandEncoding: {"kind":"None"} }],
[0x55, { name: "Reversen", mnemonic: "REVERSEN", byte: 0x55, operandEncoding: {"kind":"None"} }],
[0x56, { name: "Initsslot", mnemonic: "INITSSLOT", byte: 0x56, operandEncoding: {"kind":"U8"} }],
[0x57, { name: "Initslot", mnemonic: "INITSLOT", byte: 0x57, operandEncoding: {"kind":"Bytes","length":2} }],
[0x58, { name: "Ldsfld0", mnemonic: "LDSFLD0", byte: 0x58, operandEncoding: {"kind":"None"} }],
[0x59, { name: "Ldsfld1", mnemonic: "LDSFLD1", byte: 0x59, operandEncoding: {"kind":"None"} }],
[0x5A, { name: "Ldsfld2", mnemonic: "LDSFLD2", byte: 0x5A, operandEncoding: {"kind":"None"} }],
[0x5B, { name: "Ldsfld3", mnemonic: "LDSFLD3", byte: 0x5B, operandEncoding: {"kind":"None"} }],
[0x5C, { name: "Ldsfld4", mnemonic: "LDSFLD4", byte: 0x5C, operandEncoding: {"kind":"None"} }],
[0x5D, { name: "Ldsfld5", mnemonic: "LDSFLD5", byte: 0x5D, operandEncoding: {"kind":"None"} }],
[0x5E, { name: "Ldsfld6", mnemonic: "LDSFLD6", byte: 0x5E, operandEncoding: {"kind":"None"} }],
[0x5F, { name: "Ldsfld", mnemonic: "LDSFLD", byte: 0x5F, operandEncoding: {"kind":"U8"} }],
[0x60, { name: "Stsfld0", mnemonic: "STSFLD0", byte: 0x60, operandEncoding: {"kind":"None"} }],
[0x61, { name: "Stsfld1", mnemonic: "STSFLD1", byte: 0x61, operandEncoding: {"kind":"None"} }],
[0x62, { name: "Stsfld2", mnemonic: "STSFLD2", byte: 0x62, operandEncoding: {"kind":"None"} }],
[0x63, { name: "Stsfld3", mnemonic: "STSFLD3", byte: 0x63, operandEncoding: {"kind":"None"} }],
[0x64, { name: "Stsfld4", mnemonic: "STSFLD4", byte: 0x64, operandEncoding: {"kind":"None"} }],
[0x65, { name: "Stsfld5", mnemonic: "STSFLD5", byte: 0x65, operandEncoding: {"kind":"None"} }],
[0x66, { name: "Stsfld6", mnemonic: "STSFLD6", byte: 0x66, operandEncoding: {"kind":"None"} }],
[0x67, { name: "Stsfld", mnemonic: "STSFLD", byte: 0x67, operandEncoding: {"kind":"U8"} }],
[0x68, { name: "Ldloc0", mnemonic: "LDLOC0", byte: 0x68, operandEncoding: {"kind":"None"} }],
[0x69, { name: "Ldloc1", mnemonic: "LDLOC1", byte: 0x69, operandEncoding: {"kind":"None"} }],
[0x6A, { name: "Ldloc2", mnemonic: "LDLOC2", byte: 0x6A, operandEncoding: {"kind":"None"} }],
[0x6B, { name: "Ldloc3", mnemonic: "LDLOC3", byte: 0x6B, operandEncoding: {"kind":"None"} }],
[0x6C, { name: "Ldloc4", mnemonic: "LDLOC4", byte: 0x6C, operandEncoding: {"kind":"None"} }],
[0x6D, { name: "Ldloc5", mnemonic: "LDLOC5", byte: 0x6D, operandEncoding: {"kind":"None"} }],
[0x6E, { name: "Ldloc6", mnemonic: "LDLOC6", byte: 0x6E, operandEncoding: {"kind":"None"} }],
[0x6F, { name: "Ldloc", mnemonic: "LDLOC", byte: 0x6F, operandEncoding: {"kind":"U8"} }],
[0x70, { name: "Stloc0", mnemonic: "STLOC0", byte: 0x70, operandEncoding: {"kind":"None"} }],
[0x71, { name: "Stloc1", mnemonic: "STLOC1", byte: 0x71, operandEncoding: {"kind":"None"} }],
[0x72, { name: "Stloc2", mnemonic: "STLOC2", byte: 0x72, operandEncoding: {"kind":"None"} }],
[0x73, { name: "Stloc3", mnemonic: "STLOC3", byte: 0x73, operandEncoding: {"kind":"None"} }],
[0x74, { name: "Stloc4", mnemonic: "STLOC4", byte: 0x74, operandEncoding: {"kind":"None"} }],
[0x75, { name: "Stloc5", mnemonic: "STLOC5", byte: 0x75, operandEncoding: {"kind":"None"} }],
[0x76, { name: "Stloc6", mnemonic: "STLOC6", byte: 0x76, operandEncoding: {"kind":"None"} }],
[0x77, { name: "Stloc", mnemonic: "STLOC", byte: 0x77, operandEncoding: {"kind":"U8"} }],
[0x78, { name: "Ldarg0", mnemonic: "LDARG0", byte: 0x78, operandEncoding: {"kind":"None"} }],
[0x79, { name: "Ldarg1", mnemonic: "LDARG1", byte: 0x79, operandEncoding: {"kind":"None"} }],
[0x7A, { name: "Ldarg2", mnemonic: "LDARG2", byte: 0x7A, operandEncoding: {"kind":"None"} }],
[0x7B, { name: "Ldarg3", mnemonic: "LDARG3", byte: 0x7B, operandEncoding: {"kind":"None"} }],
[0x7C, { name: "Ldarg4", mnemonic: "LDARG4", byte: 0x7C, operandEncoding: {"kind":"None"} }],
[0x7D, { name: "Ldarg5", mnemonic: "LDARG5", byte: 0x7D, operandEncoding: {"kind":"None"} }],
[0x7E, { name: "Ldarg6", mnemonic: "LDARG6", byte: 0x7E, operandEncoding: {"kind":"None"} }],
[0x7F, { name: "Ldarg", mnemonic: "LDARG", byte: 0x7F, operandEncoding: {"kind":"U8"} }],
[0x80, { name: "Starg0", mnemonic: "STARG0", byte: 0x80, operandEncoding: {"kind":"None"} }],
[0x81, { name: "Starg1", mnemonic: "STARG1", byte: 0x81, operandEncoding: {"kind":"None"} }],
[0x82, { name: "Starg2", mnemonic: "STARG2", byte: 0x82, operandEncoding: {"kind":"None"} }],
[0x83, { name: "Starg3", mnemonic: "STARG3", byte: 0x83, operandEncoding: {"kind":"None"} }],
[0x84, { name: "Starg4", mnemonic: "STARG4", byte: 0x84, operandEncoding: {"kind":"None"} }],
[0x85, { name: "Starg5", mnemonic: "STARG5", byte: 0x85, operandEncoding: {"kind":"None"} }],
[0x86, { name: "Starg6", mnemonic: "STARG6", byte: 0x86, operandEncoding: {"kind":"None"} }],
[0x87, { name: "Starg", mnemonic: "STARG", byte: 0x87, operandEncoding: {"kind":"U8"} }],
[0x88, { name: "Newbuffer", mnemonic: "NEWBUFFER", byte: 0x88, operandEncoding: {"kind":"None"} }],
[0x89, { name: "Memcpy", mnemonic: "MEMCPY", byte: 0x89, operandEncoding: {"kind":"None"} }],
[0x8B, { name: "Cat", mnemonic: "CAT", byte: 0x8B, operandEncoding: {"kind":"None"} }],
[0x8C, { name: "Substr", mnemonic: "SUBSTR", byte: 0x8C, operandEncoding: {"kind":"None"} }],
[0x8D, { name: "Left", mnemonic: "LEFT", byte: 0x8D, operandEncoding: {"kind":"None"} }],
[0x8E, { name: "Right", mnemonic: "RIGHT", byte: 0x8E, operandEncoding: {"kind":"None"} }],
[0x90, { name: "Invert", mnemonic: "INVERT", byte: 0x90, operandEncoding: {"kind":"None"} }],
[0x91, { name: "And", mnemonic: "AND", byte: 0x91, operandEncoding: {"kind":"None"} }],
[0x92, { name: "Or", mnemonic: "OR", byte: 0x92, operandEncoding: {"kind":"None"} }],
[0x93, { name: "Xor", mnemonic: "XOR", byte: 0x93, operandEncoding: {"kind":"None"} }],
[0x97, { name: "Equal", mnemonic: "EQUAL", byte: 0x97, operandEncoding: {"kind":"None"} }],
[0x98, { name: "Notequal", mnemonic: "NOTEQUAL", byte: 0x98, operandEncoding: {"kind":"None"} }],
[0x99, { name: "Sign", mnemonic: "SIGN", byte: 0x99, operandEncoding: {"kind":"None"} }],
[0x9A, { name: "Abs", mnemonic: "ABS", byte: 0x9A, operandEncoding: {"kind":"None"} }],
[0x9B, { name: "Negate", mnemonic: "NEGATE", byte: 0x9B, operandEncoding: {"kind":"None"} }],
[0x9C, { name: "Inc", mnemonic: "INC", byte: 0x9C, operandEncoding: {"kind":"None"} }],
[0x9D, { name: "Dec", mnemonic: "DEC", byte: 0x9D, operandEncoding: {"kind":"None"} }],
[0x9E, { name: "Add", mnemonic: "ADD", byte: 0x9E, operandEncoding: {"kind":"None"} }],
[0x9F, { name: "Sub", mnemonic: "SUB", byte: 0x9F, operandEncoding: {"kind":"None"} }],
[0xA0, { name: "Mul", mnemonic: "MUL", byte: 0xA0, operandEncoding: {"kind":"None"} }],
[0xA1, { name: "Div", mnemonic: "DIV", byte: 0xA1, operandEncoding: {"kind":"None"} }],
[0xA2, { name: "Mod", mnemonic: "MOD", byte: 0xA2, operandEncoding: {"kind":"None"} }],
[0xA3, { name: "Pow", mnemonic: "POW", byte: 0xA3, operandEncoding: {"kind":"None"} }],
[0xA4, { name: "Sqrt", mnemonic: "SQRT", byte: 0xA4, operandEncoding: {"kind":"None"} }],
[0xA5, { name: "Modmul", mnemonic: "MODMUL", byte: 0xA5, operandEncoding: {"kind":"None"} }],
[0xA6, { name: "Modpow", mnemonic: "MODPOW", byte: 0xA6, operandEncoding: {"kind":"None"} }],
[0xA8, { name: "Shl", mnemonic: "SHL", byte: 0xA8, operandEncoding: {"kind":"None"} }],
[0xA9, { name: "Shr", mnemonic: "SHR", byte: 0xA9, operandEncoding: {"kind":"None"} }],
[0xAA, { name: "Not", mnemonic: "NOT", byte: 0xAA, operandEncoding: {"kind":"None"} }],
[0xAB, { name: "Booland", mnemonic: "BOOLAND", byte: 0xAB, operandEncoding: {"kind":"None"} }],
[0xAC, { name: "Boolor", mnemonic: "BOOLOR", byte: 0xAC, operandEncoding: {"kind":"None"} }],
[0xB1, { name: "Nz", mnemonic: "NZ", byte: 0xB1, operandEncoding: {"kind":"None"} }],
[0xB3, { name: "Numequal", mnemonic: "NUMEQUAL", byte: 0xB3, operandEncoding: {"kind":"None"} }],
[0xB4, { name: "Numnotequal", mnemonic: "NUMNOTEQUAL", byte: 0xB4, operandEncoding: {"kind":"None"} }],
[0xB5, { name: "Lt", mnemonic: "LT", byte: 0xB5, operandEncoding: {"kind":"None"} }],
[0xB6, { name: "Le", mnemonic: "LE", byte: 0xB6, operandEncoding: {"kind":"None"} }],
[0xB7, { name: "Gt", mnemonic: "GT", byte: 0xB7, operandEncoding: {"kind":"None"} }],
[0xB8, { name: "Ge", mnemonic: "GE", byte: 0xB8, operandEncoding: {"kind":"None"} }],
[0xB9, { name: "Min", mnemonic: "MIN", byte: 0xB9, operandEncoding: {"kind":"None"} }],
[0xBA, { name: "Max", mnemonic: "MAX", byte: 0xBA, operandEncoding: {"kind":"None"} }],
[0xBB, { name: "Within", mnemonic: "WITHIN", byte: 0xBB, operandEncoding: {"kind":"None"} }],
[0xBE, { name: "Packmap", mnemonic: "PACKMAP", byte: 0xBE, operandEncoding: {"kind":"None"} }],
[0xBF, { name: "Packstruct", mnemonic: "PACKSTRUCT", byte: 0xBF, operandEncoding: {"kind":"None"} }],
[0xC0, { name: "Pack", mnemonic: "PACK", byte: 0xC0, operandEncoding: {"kind":"None"} }],
[0xC1, { name: "Unpack", mnemonic: "UNPACK", byte: 0xC1, operandEncoding: {"kind":"None"} }],
[0xC2, { name: "Newarray0", mnemonic: "NEWARRAY0", byte: 0xC2, operandEncoding: {"kind":"None"} }],
[0xC3, { name: "Newarray", mnemonic: "NEWARRAY", byte: 0xC3, operandEncoding: {"kind":"None"} }],
[0xC4, { name: "NewarrayT", mnemonic: "NEWARRAY_T", byte: 0xC4, operandEncoding: {"kind":"U8"} }],
[0xC5, { name: "Newstruct0", mnemonic: "NEWSTRUCT0", byte: 0xC5, operandEncoding: {"kind":"None"} }],
[0xC6, { name: "Newstruct", mnemonic: "NEWSTRUCT", byte: 0xC6, operandEncoding: {"kind":"None"} }],
[0xC8, { name: "Newmap", mnemonic: "NEWMAP", byte: 0xC8, operandEncoding: {"kind":"None"} }],
[0xCA, { name: "Size", mnemonic: "SIZE", byte: 0xCA, operandEncoding: {"kind":"None"} }],
[0xCB, { name: "Haskey", mnemonic: "HASKEY", byte: 0xCB, operandEncoding: {"kind":"None"} }],
[0xCC, { name: "Keys", mnemonic: "KEYS", byte: 0xCC, operandEncoding: {"kind":"None"} }],
[0xCD, { name: "Values", mnemonic: "VALUES", byte: 0xCD, operandEncoding: {"kind":"None"} }],
[0xCE, { name: "Pickitem", mnemonic: "PICKITEM", byte: 0xCE, operandEncoding: {"kind":"None"} }],
[0xCF, { name: "Append", mnemonic: "APPEND", byte: 0xCF, operandEncoding: {"kind":"None"} }],
[0xD0, { name: "Setitem", mnemonic: "SETITEM", byte: 0xD0, operandEncoding: {"kind":"None"} }],
[0xD1, { name: "Reverseitems", mnemonic: "REVERSEITEMS", byte: 0xD1, operandEncoding: {"kind":"None"} }],
[0xD2, { name: "Remove", mnemonic: "REMOVE", byte: 0xD2, operandEncoding: {"kind":"None"} }],
[0xD3, { name: "Clearitems", mnemonic: "CLEARITEMS", byte: 0xD3, operandEncoding: {"kind":"None"} }],
[0xD4, { name: "Popitem", mnemonic: "POPITEM", byte: 0xD4, operandEncoding: {"kind":"None"} }],
[0xD8, { name: "Isnull", mnemonic: "ISNULL", byte: 0xD8, operandEncoding: {"kind":"None"} }],
[0xD9, { name: "Istype", mnemonic: "ISTYPE", byte: 0xD9, operandEncoding: {"kind":"U8"} }],
[0xDB, { name: "Convert", mnemonic: "CONVERT", byte: 0xDB, operandEncoding: {"kind":"U8"} }],
[0xE0, { name: "Abortmsg", mnemonic: "ABORTMSG", byte: 0xE0, operandEncoding: {"kind":"None"} }],
[0xE1, { name: "Assertmsg", mnemonic: "ASSERTMSG", byte: 0xE1, operandEncoding: {"kind":"None"} }],
]);