Телесистемы
 Разработка, производство и продажа радиоэлектронной аппаратуры
На главную   | Карта сайта | Пишите нам | В избранное
Требуется программист в Зеленограде
- обработка данных с датчиков; ColdFire; 40 тыс.
e-mail:jobsmp@pochta.ru

Телесистемы | Электроника | Конференция «Микроконтроллеры и их применение»

Ответ:

Отправлено ы 30 января 2009 г. 17:50
В ответ на: Почему-то всегда приводятся примеры кодов (12,8). Код (13,8) практически не встречается. Я буду не слишком нахальным, если попрошу пример кода или его реализации? отправлено пользователем vmp 30 января 2009 г. 13:18

таблицы правда большие, но я
именно делал для скорости. Есть нетабличный метод, но искать долго:(


HAM_ENC_TBL
DCW 0x0000,0x0015,0x0026,0x0033,0x0049,0x005c,0x006f,0x007a,0x008a,0x009f,0x00ac,0x00b9,0x00c3,0x00d6,0x00e5,0x00f0
DCW 0x0107,0x0112,0x0121,0x0134,0x014e,0x015b,0x0168,0x017d,0x018d,0x0198,0x01ab,0x01be,0x01c4,0x01d1,0x01e2,0x01f7
DCW 0x020b,0x021e,0x022d,0x0238,0x0242,0x0257,0x0264,0x0271,0x0281,0x0294,0x02a7,0x02b2,0x02c8,0x02dd,0x02ee,0x02fb
DCW 0x030c,0x0319,0x032a,0x033f,0x0345,0x0350,0x0363,0x0376,0x0386,0x0393,0x03a0,0x03b5,0x03cf,0x03da,0x03e9,0x03fc
DCW 0x040d,0x0418,0x042b,0x043e,0x0444,0x0451,0x0462,0x0477,0x0487,0x0492,0x04a1,0x04b4,0x04ce,0x04db,0x04e8,0x04fd
DCW 0x050a,0x051f,0x052c,0x0539,0x0543,0x0556,0x0565,0x0570,0x0580,0x0595,0x05a6,0x05b3,0x05c9,0x05dc,0x05ef,0x05fa
DCW 0x0606,0x0613,0x0620,0x0635,0x064f,0x065a,0x0669,0x067c,0x068c,0x0699,0x06aa,0x06bf,0x06c5,0x06d0,0x06e3,0x06f6
DCW 0x0701,0x0714,0x0727,0x0732,0x0748,0x075d,0x076e,0x077b,0x078b,0x079e,0x07ad,0x07b8,0x07c2,0x07d7,0x07e4,0x07f1
DCW 0x080e,0x081b,0x0828,0x083d,0x0847,0x0852,0x0861,0x0874,0x0884,0x0891,0x08a2,0x08b7,0x08cd,0x08d8,0x08eb,0x08fe
DCW 0x0909,0x091c,0x092f,0x093a,0x0940,0x0955,0x0966,0x0973,0x0983,0x0996,0x09a5,0x09b0,0x09ca,0x09df,0x09ec,0x09f9
DCW 0x0a05,0x0a10,0x0a23,0x0a36,0x0a4c,0x0a59,0x0a6a,0x0a7f,0x0a8f,0x0a9a,0x0aa9,0x0abc,0x0ac6,0x0ad3,0x0ae0,0x0af5
DCW 0x0b02,0x0b17,0x0b24,0x0b31,0x0b4b,0x0b5e,0x0b6d,0x0b78,0x0b88,0x0b9d,0x0bae,0x0bbb,0x0bc1,0x0bd4,0x0be7,0x0bf2
DCW 0x0c03,0x0c16,0x0c25,0x0c30,0x0c4a,0x0c5f,0x0c6c,0x0c79,0x0c89,0x0c9c,0x0caf,0x0cba,0x0cc0,0x0cd5,0x0ce6,0x0cf3
DCW 0x0d04,0x0d11,0x0d22,0x0d37,0x0d4d,0x0d58,0x0d6b,0x0d7e,0x0d8e,0x0d9b,0x0da8,0x0dbd,0x0dc7,0x0dd2,0x0de1,0x0df4
DCW 0x0e08,0x0e1d,0x0e2e,0x0e3b,0x0e41,0x0e54,0x0e67,0x0e72,0x0e82,0x0e97,0x0ea4,0x0eb1,0x0ecb,0x0ede,0x0eed,0x0ef8
DCW 0x0f0f,0x0f1a,0x0f29,0x0f3c,0x0f46,0x0f53,0x0f60,0x0f75,0x0f85,0x0f90,0x0fa3,0x0fb6,0x0fcc,0x0fd9,0x0fea,0x0fff

//***************** non interleave *********************//
// 76543210 76543210
// <- aaaaaaaa pppp
// bbbbbbbb pppp
// cccccccc pppp
//
bit = (bit << 12) | HAM_ENC_TBL[*src++];



декодирование


//***************** non interleave *********************//
// 76543210 76543210
// <- aaaaaaaa pppp
// bbbbbbbb pppp
// cccccccc pppp
//

bit = GET_12_BITS
*dst++ = HAM_DEC_TBL[bit];

HAM_DEC_TBL
DCB 0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x10,0x00,0x04,0x08,0x20,0x00,0x40,0x80,0x00
DCB 0x00,0x01,0x11,0x03,0x01,0x01,0x01,0x01,0x41,0x01,0x01,0x81,0x05,0x01,0x21,0x09
DCB 0x00,0x12,0x02,0x03,0x02,0x02,0x02,0x02,0x82,0x02,0x02,0x42,0x0a,0x22,0x02,0x06
DCB 0x03,0x03,0x03,0x03,0x13,0x01,0x02,0x03,0x23,0x0b,0x07,0x03,0x03,0x83,0x43,0x03
DCB 0x00,0x04,0x24,0x0c,0x44,0x04,0x04,0x84,0x04,0x04,0x04,0x04,0x05,0x04,0x14,0x06
DCB 0x05,0x45,0x85,0x05,0x05,0x01,0x0d,0x25,0x05,0x04,0x07,0x15,0x05,0x05,0x05,0x05
DCB 0x06,0x86,0x46,0x06,0x26,0x0e,0x02,0x06,0x16,0x04,0x07,0x06,0x06,0x06,0x06,0x06
DCB 0x0f,0x27,0x07,0x03,0x87,0x07,0x07,0x47,0x07,0x07,0x07,0x07,0x05,0x17,0x07,0x06
DCB 0x00,0x28,0x08,0x0c,0x88,0x08,0x08,0x48,0x08,0x08,0x08,0x08,0x0a,0x18,0x08,0x09
DCB 0x09,0x89,0x49,0x09,0x29,0x01,0x0d,0x09,0x19,0x0b,0x08,0x09,0x09,0x09,0x09,0x09
DCB 0x0a,0x4a,0x8a,0x0a,0x0a,0x0e,0x02,0x2a,0x0a,0x0b,0x08,0x1a,0x0a,0x0a,0x0a,0x0a
DCB 0x0f,0x0b,0x2b,0x03,0x4b,0x0b,0x0b,0x8b,0x0b,0x0b,0x0b,0x0b,0x0a,0x0b,0x1b,0x09
DCB 0x0c,0x0c,0x0c,0x0c,0x1c,0x0e,0x0d,0x0c,0x2c,0x04,0x08,0x0c,0x0c,0x8c,0x4c,0x0c
DCB 0x0f,0x1d,0x0d,0x0c,0x0d,0x0d,0x0d,0x0d,0x8d,0x0d,0x0d,0x4d,0x05,0x2d,0x0d,0x09
DCB 0x0f,0x0e,0x1e,0x0c,0x0e,0x0e,0x0e,0x0e,0x4e,0x0e,0x0e,0x8e,0x0a,0x0e,0x2e,0x06
DCB 0x0f,0x0f,0x0f,0x0f,0x0f,0x0e,0x0d,0x1f,0x0f,0x0b,0x07,0x2f,0x0f,0x4f,0x8f,0x0f
DCB 0x00,0x12,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x50,0x10,0x30,0x18,0x14,0x10
DCB 0x11,0x11,0x11,0x11,0x13,0x01,0x11,0x10,0x19,0x31,0x11,0x15,0x91,0x11,0x11,0x51
DCB 0x12,0x12,0x12,0x12,0x13,0x12,0x02,0x10,0x16,0x12,0x32,0x1a,0x52,0x12,0x12,0x92
DCB 0x13,0x12,0x11,0x03,0x13,0x13,0x13,0x13,0x13,0x53,0x93,0x13,0x13,0x17,0x1b,0x33
DCB 0x94,0x14,0x14,0x54,0x1c,0x34,0x14,0x10,0x16,0x04,0x14,0x15,0x14,0x14,0x14,0x14
DCB 0x35,0x1d,0x11,0x15,0x15,0x95,0x55,0x15,0x15,0x15,0x15,0x15,0x05,0x17,0x14,0x15
DCB 0x16,0x12,0x1e,0x36,0x16,0x56,0x96,0x16,0x16,0x16,0x16,0x16,0x16,0x17,0x14,0x06
DCB 0x57,0x17,0x17,0x97,0x13,0x17,0x37,0x1f,0x16,0x17,0x07,0x15,0x17,0x17,0x17,0x17
DCB 0x58,0x18,0x18,0x98,0x1c,0x18,0x38,0x10,0x19,0x18,0x08,0x1a,0x18,0x18,0x18,0x18
DCB 0x19,0x1d,0x11,0x39,0x19,0x59,0x99,0x19,0x19,0x19,0x19,0x19,0x19,0x18,0x1b,0x09
DCB 0x3a,0x12,0x1e,0x1a,0x1a,0x9a,0x5a,0x1a,0x1a,0x1a,0x1a,0x1a,0x0a,0x18,0x1b,0x1a
DCB 0x9b,0x1b,0x1b,0x5b,0x13,0x3b,0x1b,0x1f,0x19,0x0b,0x1b,0x1a,0x1b,0x1b,0x1b,0x1b
DCB 0x1c,0x1d,0x1e,0x0c,0x1c,0x1c,0x1c,0x1c,0x1c,0x5c,0x9c,0x1c,0x1c,0x18,0x14,0x3c
DCB 0x1d,0x1d,0x1d,0x1d,0x1c,0x1d,0x0d,0x1f,0x19,0x1d,0x3d,0x15,0x5d,0x1d,0x1d,0x9d
DCB 0x1e,0x1e,0x1e,0x1e,0x1c,0x0e,0x1e,0x1f,0x16,0x3e,0x1e,0x1a,0x9e,0x1e,0x1e,0x5e
DCB 0x0f,0x1d,0x1e,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x9f,0x5f,0x1f,0x3f,0x17,0x1b,0x1f
DCB 0x00,0x28,0x24,0x20,0x20,0xa0,0x60,0x20,0x20,0x20,0x20,0x20,0x30,0x22,0x21,0x20
DCB 0xa1,0x21,0x21,0x61,0x29,0x01,0x21,0x25,0x23,0x31,0x21,0x20,0x21,0x21,0x21,0x21
DCB 0x62,0x22,0x22,0xa2,0x26,0x22,0x02,0x2a,0x23,0x22,0x32,0x20,0x22,0x22,0x22,0x22
DCB 0x23,0x27,0x2b,0x03,0x23,0x63,0xa3,0x23,0x23,0x23,0x23,0x23,0x23,0x22,0x21,0x33
DCB 0x24,0x24,0x24,0x24,0x26,0x34,0x24,0x25,0x2c,0x04,0x24,0x20,0xa4,0x24,0x24,0x64
DCB 0x35,0x27,0x24,0x25,0x25,0x25,0x25,0x25,0x25,0xa5,0x65,0x25,0x05,0x2d,0x21,0x25
DCB 0x26,0x27,0x24,0x36,0x26,0x26,0x26,0x26,0x26,0x66,0xa6,0x26,0x26,0x22,0x2e,0x06
DCB 0x27,0x27,0x27,0x27,0x26,0x27,0x37,0x25,0x23,0x27,0x07,0x2f,0x67,0x27,0x27,0xa7
DCB 0x28,0x28,0x28,0x28,0x29,0x28,0x38,0x2a,0x2c,0x28,0x08,0x20,0x68,0x28,0x28,0xa8
DCB 0x29,0x28,0x2b,0x39,0x29,0x29,0x29,0x29,0x29,0x69,0xa9,0x29,0x29,0x2d,0x21,0x09
DCB 0x3a,0x28,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0xaa,0x6a,0x2a,0x0a,0x22,0x2e,0x2a
DCB 0x2b,0x2b,0x2b,0x2b,0x29,0x3b,0x2b,0x2a,0x23,0x0b,0x2b,0x2f,0xab,0x2b,0x2b,0x6b
DCB 0x2c,0x28,0x24,0x0c,0x2c,0x6c,0xac,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2d,0x2e,0x3c
DCB 0x6d,0x2d,0x2d,0xad,0x29,0x2d,0x0d,0x25,0x2c,0x2d,0x3d,0x2f,0x2d,0x2d,0x2d,0x2d
DCB 0xae,0x2e,0x2e,0x6e,0x26,0x0e,0x2e,0x2a,0x2c,0x3e,0x2e,0x2f,0x2e,0x2e,0x2e,0x2e
DCB 0x0f,0x27,0x2b,0x2f,0x2f,0xaf,0x6f,0x2f,0x2f,0x2f,0x2f,0x2f,0x3f,0x2d,0x2e,0x2f
DCB 0x30,0x70,0xb0,0x30,0x30,0x34,0x38,0x10,0x30,0x31,0x32,0x20,0x30,0x30,0x30,0x30
DCB 0x35,0x31,0x11,0x39,0x71,0x31,0x31,0xb1,0x31,0x31,0x31,0x31,0x30,0x31,0x21,0x33
DCB 0x3a,0x12,0x32,0x36,0xb2,0x32,0x32,0x72,0x32,0x32,0x32,0x32,0x30,0x22,0x32,0x33
DCB 0x33,0xb3,0x73,0x33,0x13,0x3b,0x37,0x33,0x23,0x31,0x32,0x33,0x33,0x33,0x33,0x33
DCB 0x35,0x34,0x24,0x36,0x34,0x34,0x34,0x34,0x74,0x34,0x34,0xb4,0x30,0x34,0x14,0x3c
DCB 0x35,0x35,0x35,0x35,0x35,0x34,0x37,0x25,0x35,0x31,0x3d,0x15,0x35,0x75,0xb5,0x35
DCB 0x36,0x36,0x36,0x36,0x26,0x34,0x37,0x36,0x16,0x3e,0x32,0x36,0x36,0xb6,0x76,0x36
DCB 0x35,0x27,0x37,0x36,0x37,0x37,0x37,0x37,0xb7,0x37,0x37,0x77,0x3f,0x17,0x37,0x33
DCB 0x3a,0x28,0x38,0x39,0x38,0x38,0x38,0x38,0xb8,0x38,0x38,0x78,0x30,0x18,0x38,0x3c
DCB 0x39,0x39,0x39,0x39,0x29,0x3b,0x38,0x39,0x19,0x31,0x3d,0x39,0x39,0xb9,0x79,0x39
DCB 0x3a,0x3a,0x3a,0x3a,0x3a,0x3b,0x38,0x2a,0x3a,0x3e,0x32,0x1a,0x3a,0x7a,0xba,0x3a
DCB 0x3a,0x3b,0x2b,0x39,0x3b,0x3b,0x3b,0x3b,0x7b,0x3b,0x3b,0xbb,0x3f,0x3b,0x1b,0x33
DCB 0x3c,0xbc,0x7c,0x3c,0x1c,0x34,0x38,0x3c,0x2c,0x3e,0x3d,0x3c,0x3c,0x3c,0x3c,0x3c
DCB 0x35,0x1d,0x3d,0x39,0xbd,0x3d,0x3d,0x7d,0x3d,0x3d,0x3d,0x3d,0x3f,0x2d,0x3d,0x3c
DCB 0x3a,0x3e,0x1e,0x36,0x7e,0x3e,0x3e,0xbe,0x3e,0x3e,0x3e,0x3e,0x3f,0x3e,0x2e,0x3c
DCB 0x3f,0x7f,0xbf,0x3f,0x3f,0x3b,0x37,0x1f,0x3f,0x3e,0x3d,0x2f,0x3f,0x3f,0x3f,0x3f
DCB 0x00,0x40,0x40,0xc0,0x44,0x40,0x60,0x48,0x41,0x40,0x50,0x42,0x40,0x40,0x40,0x40
DCB 0x41,0x45,0x49,0x61,0x41,0x01,0xc1,0x41,0x41,0x41,0x41,0x41,0x41,0x40,0x43,0x51
DCB 0x62,0x4a,0x46,0x42,0x42,0xc2,0x02,0x42,0x42,0x42,0x42,0x42,0x52,0x40,0x43,0x42
DCB 0xc3,0x43,0x43,0x03,0x4b,0x63,0x43,0x47,0x41,0x53,0x43,0x42,0x43,0x43,0x43,0x43
DCB 0x44,0x45,0x46,0x54,0x44,0x44,0x44,0x44,0x44,0x04,0xc4,0x44,0x44,0x40,0x4c,0x64
DCB 0x45,0x45,0x45,0x45,0x44,0x45,0x55,0x47,0x41,0x45,0x65,0x4d,0x05,0x45,0x45,0xc5
DCB 0x46,0x46,0x46,0x46,0x44,0x56,0x46,0x47,0x4e,0x66,0x46,0x42,0xc6,0x46,0x46,0x06
DCB 0x57,0x45,0x46,0x47,0x47,0x47,0x47,0x47,0x47,0xc7,0x07,0x47,0x67,0x4f,0x43,0x47
DCB 0x58,0x4a,0x49,0x48,0x48,0x48,0x48,0x48,0x48,0xc8,0x08,0x48,0x68,0x40,0x4c,0x48
DCB 0x49,0x49,0x49,0x49,0x4b,0x59,0x49,0x48,0x41,0x69,0x49,0x4d,0xc9,0x49,0x49,0x09
DCB 0x4a,0x4a,0x4a,0x4a,0x4b,0x4a,0x5a,0x48,0x4e,0x4a,0x6a,0x42,0x0a,0x4a,0x4a,0xca
DCB 0x4b,0x4a,0x49,0x5b,0x4b,0x4b,0x4b,0x4b,0x4b,0x0b,0xcb,0x4b,0x4b,0x4f,0x43,0x6b
DCB 0xcc,0x4c,0x4c,0x0c,0x44,0x6c,0x4c,0x48,0x4e,0x5c,0x4c,0x4d,0x4c,0x4c,0x4c,0x4c
DCB 0x6d,0x45,0x49,0x4d,0x4d,0xcd,0x0d,0x4d,0x4d,0x4d,0x4d,0x4d,0x5d,0x4f,0x4c,0x4d
DCB 0x4e,0x4a,0x46,0x6e,0x4e,0x0e,0xce,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4f,0x4c,0x5e
DCB 0x0f,0x4f,0x4f,0xcf,0x4b,0x4f,0x6f,0x47,0x4e,0x4f,0x5f,0x4d,0x4f,0x4f,0x4f,0x4f
DCB 0x58,0x70,0x50,0x54,0xd0,0x50,0x50,0x10,0x50,0x50,0x50,0x50,0x52,0x40,0x50,0x51
DCB 0x51,0xd1,0x11,0x51,0x71,0x59,0x55,0x51,0x41,0x53,0x50,0x51,0x51,0x51,0x51,0x51
DCB 0x52,0x12,0xd2,0x52,0x52,0x56,0x5a,0x72,0x52,0x53,0x50,0x42,0x52,0x52,0x52,0x52
DCB 0x57,0x53,0x73,0x5b,0x13,0x53,0x53,0xd3,0x53,0x53,0x53,0x53,0x52,0x53,0x43,0x51
DCB 0x54,0x54,0x54,0x54,0x44,0x56,0x55,0x54,0x74,0x5c,0x50,0x54,0x54,0xd4,0x14,0x54
DCB 0x57,0x45,0x55,0x54,0x55,0x55,0x55,0x55,0xd5,0x55,0x55,0x15,0x5d,0x75,0x55,0x51
DCB 0x57,0x56,0x46,0x54,0x56,0x56,0x56,0x56,0x16,0x56,0x56,0xd6,0x52,0x56,0x76,0x5e
DCB 0x57,0x57,0x57,0x57,0x57,0x56,0x55,0x47,0x57,0x53,0x5f,0x77,0x57,0x17,0xd7,0x57
DCB 0x58,0x58,0x58,0x58,0x58,0x59,0x5a,0x48,0x58,0x5c,0x50,0x78,0x58,0x18,0xd8,0x58
DCB 0x58,0x59,0x49,0x5b,0x59,0x59,0x59,0x59,0x19,0x59,0x59,0xd9,0x5d,0x59,0x79,0x51
DCB 0x58,0x4a,0x5a,0x5b,0x5a,0x5a,0x5a,0x5a,0xda,0x5a,0x5a,0x1a,0x52,0x7a,0x5a,0x5e
DCB 0x5b,0x5b,0x5b,0x5b,0x4b,0x59,0x5a,0x5b,0x7b,0x53,0x5f,0x5b,0x5b,0xdb,0x1b,0x5b
DCB 0x58,0x5c,0x7c,0x54,0x1c,0x5c,0x5c,0xdc,0x5c,0x5c,0x5c,0x5c,0x5d,0x5c,0x4c,0x5e
DCB 0x5d,0x1d,0xdd,0x5d,0x5d,0x59,0x55,0x7d,0x5d,0x5c,0x5f,0x4d,0x5d,0x5d,0x5d,0x5d
DCB 0x5e,0xde,0x1e,0x5e,0x7e,0x56,0x5a,0x5e,0x4e,0x5c,0x5f,0x5e,0x5e,0x5e,0x5e,0x5e
DCB 0x57,0x7f,0x5f,0x5b,0xdf,0x5f,0x5f,0x1f,0x5f,0x5f,0x5f,0x5f,0x5d,0x4f,0x5f,0x5e
DCB 0x62,0x70,0x60,0x61,0x60,0x60,0x60,0x60,0xe0,0x60,0x60,0x20,0x68,0x40,0x60,0x64
DCB 0x61,0x61,0x61,0x61,0x71,0x63,0x60,0x61,0x41,0x69,0x65,0x61,0x61,0xe1,0x21,0x61
DCB 0x62,0x62,0x62,0x62,0x62,0x63,0x60,0x72,0x62,0x66,0x6a,0x42,0x62,0x22,0xe2,0x62
DCB 0x62,0x63,0x73,0x61,0x63,0x63,0x63,0x63,0x23,0x63,0x63,0xe3,0x67,0x63,0x43,0x6b
DCB 0x64,0xe4,0x24,0x64,0x44,0x6c,0x60,0x64,0x74,0x66,0x65,0x64,0x64,0x64,0x64,0x64
DCB 0x6d,0x45,0x65,0x61,0xe5,0x65,0x65,0x25,0x65,0x65,0x65,0x65,0x67,0x75,0x65,0x64
DCB 0x62,0x66,0x46,0x6e,0x26,0x66,0x66,0xe6,0x66,0x66,0x66,0x66,0x67,0x66,0x76,0x64
DCB 0x67,0x27,0xe7,0x67,0x67,0x63,0x6f,0x47,0x67,0x66,0x65,0x77,0x67,0x67,0x67,0x67
DCB 0x68,0x28,0xe8,0x68,0x68,0x6c,0x60,0x48,0x68,0x69,0x6a,0x78,0x68,0x68,0x68,0x68
DCB 0x6d,0x69,0x49,0x61,0x29,0x69,0x69,0xe9,0x69,0x69,0x69,0x69,0x68,0x69,0x79,0x6b
DCB 0x62,0x4a,0x6a,0x6e,0xea,0x6a,0x6a,0x2a,0x6a,0x6a,0x6a,0x6a,0x68,0x7a,0x6a,0x6b
DCB 0x6b,0xeb,0x2b,0x6b,0x4b,0x63,0x6f,0x6b,0x7b,0x69,0x6a,0x6b,0x6b,0x6b,0x6b,0x6b
DCB 0x6d,0x6c,0x7c,0x6e,0x6c,0x6c,0x6c,0x6c,0x2c,0x6c,0x6c,0xec,0x68,0x6c,0x4c,0x64
DCB 0x6d,0x6d,0x6d,0x6d,0x6d,0x6c,0x6f,0x7d,0x6d,0x69,0x65,0x4d,0x6d,0x2d,0xed,0x6d
DCB 0x6e,0x6e,0x6e,0x6e,0x7e,0x6c,0x6f,0x6e,0x4e,0x66,0x6a,0x6e,0x6e,0xee,0x2e,0x6e
DCB 0x6d,0x7f,0x6f,0x6e,0x6f,0x6f,0x6f,0x6f,0xef,0x6f,0x6f,0x2f,0x67,0x4f,0x6f,0x6b
DCB 0x70,0x70,0x70,0x70,0x71,0x70,0x60,0x72,0x74,0x70,0x50,0x78,0x30,0x70,0x70,0xf0
DCB 0x71,0x70,0x73,0x61,0x71,0x71,0x71,0x71,0x71,0x31,0xf1,0x71,0x71,0x75,0x79,0x51
DCB 0x62,0x70,0x73,0x72,0x72,0x72,0x72,0x72,0x72,0xf2,0x32,0x72,0x52,0x7a,0x76,0x72
DCB 0x73,0x73,0x73,0x73,0x71,0x63,0x73,0x72,0x7b,0x53,0x73,0x77,0xf3,0x73,0x73,0x33
DCB 0x74,0x70,0x7c,0x54,0x74,0x34,0xf4,0x74,0x74,0x74,0x74,0x74,0x74,0x75,0x76,0x64
DCB 0x35,0x75,0x75,0xf5,0x71,0x75,0x55,0x7d,0x74,0x75,0x65,0x77,0x75,0x75,0x75,0x75
DCB 0xf6,0x76,0x76,0x36,0x7e,0x56,0x76,0x72,0x74,0x66,0x76,0x77,0x76,0x76,0x76,0x76
DCB 0x57,0x7f,0x73,0x77,0x77,0xf7,0x37,0x77,0x77,0x77,0x77,0x77,0x67,0x75,0x76,0x77
DCB 0x58,0x70,0x7c,0x78,0x78,0xf8,0x38,0x78,0x78,0x78,0x78,0x78,0x68,0x7a,0x79,0x78
DCB 0xf9,0x79,0x79,0x39,0x71,0x59,0x79,0x7d,0x7b,0x69,0x79,0x78,0x79,0x79,0x79,0x79
DCB 0x3a,0x7a,0x7a,0xfa,0x7e,0x7a,0x5a,0x72,0x7b,0x7a,0x6a,0x78,0x7a,0x7a,0x7a,0x7a
DCB 0x7b,0x7f,0x73,0x5b,0x7b,0x3b,0xfb,0x7b,0x7b,0x7b,0x7b,0x7b,0x7b,0x7a,0x79,0x6b
DCB 0x7c,0x7c,0x7c,0x7c,0x7e,0x6c,0x7c,0x7d,0x74,0x5c,0x7c,0x78,0xfc,0x7c,0x7c,0x3c
DCB 0x6d,0x7f,0x7c,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0xfd,0x3d,0x7d,0x5d,0x75,0x79,0x7d
DCB 0x7e,0x7f,0x7c,0x6e,0x7e,0x7e,0x7e,0x7e,0x7e,0x3e,0xfe,0x7e,0x7e,0x7a,0x76,0x5e
DCB 0x7f,0x7f,0x7f,0x7f,0x7e,0x7f,0x6f,0x7d,0x7b,0x7f,0x5f,0x77,0x3f,0x7f,0x7f,0xff
DCB 0x00,0x80,0x80,0xc0,0x88,0xa0,0x80,0x84,0x82,0x90,0x80,0x81,0x80,0x80,0x80,0x80
DCB 0xa1,0x89,0x85,0x81,0x81,0x01,0xc1,0x81,0x81,0x81,0x81,0x81,0x91,0x83,0x80,0x81
DCB 0x82,0x86,0x8a,0xa2,0x82,0xc2,0x02,0x82,0x82,0x82,0x82,0x82,0x82,0x83,0x80,0x92
DCB 0xc3,0x83,0x83,0x03,0x87,0x83,0xa3,0x8b,0x82,0x83,0x93,0x81,0x83,0x83,0x83,0x83
DCB 0x94,0x86,0x85,0x84,0x84,0x84,0x84,0x84,0x84,0x04,0xc4,0x84,0xa4,0x8c,0x80,0x84
DCB 0x85,0x85,0x85,0x85,0x87,0x95,0x85,0x84,0x8d,0xa5,0x85,0x81,0x05,0x85,0x85,0xc5
DCB 0x86,0x86,0x86,0x86,0x87,0x86,0x96,0x84,0x82,0x86,0xa6,0x8e,0xc6,0x86,0x86,0x06
DCB 0x87,0x86,0x85,0x97,0x87,0x87,0x87,0x87,0x87,0xc7,0x07,0x87,0x87,0x83,0x8f,0xa7
DCB 0x88,0x89,0x8a,0x98,0x88,0x88,0x88,0x88,0x88,0xc8,0x08,0x88,0x88,0x8c,0x80,0xa8
DCB 0x89,0x89,0x89,0x89,0x88,0x89,0x99,0x8b,0x8d,0x89,0xa9,0x81,0xc9,0x89,0x89,0x09
DCB 0x8a,0x8a,0x8a,0x8a,0x88,0x9a,0x8a,0x8b,0x82,0xaa,0x8a,0x8e,0x0a,0x8a,0x8a,0xca
DCB 0x9b,0x89,0x8a,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x0b,0xcb,0x8b,0xab,0x83,0x8f,0x8b
DCB 0xcc,0x8c,0x8c,0x0c,0x88,0x8c,0xac,0x84,0x8d,0x8c,0x9c,0x8e,0x8c,0x8c,0x8c,0x8c
DCB 0x8d,0x89,0x85,0xad,0x8d,0xcd,0x0d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8c,0x8f,0x9d
DCB 0xae,0x86,0x8a,0x8e,0x8e,0x0e,0xce,0x8e,0x8e,0x8e,0x8e,0x8e,0x9e,0x8c,0x8f,0x8e
DCB 0x0f,0x8f,0x8f,0xcf,0x87,0xaf,0x8f,0x8b,0x8d,0x9f,0x8f,0x8e,0x8f,0x8f,0x8f,0x8f
DCB 0x94,0x90,0xb0,0x98,0xd0,0x90,0x90,0x10,0x90,0x90,0x90,0x90,0x91,0x90,0x80,0x92
DCB 0x91,0xd1,0x11,0x91,0x91,0x95,0x99,0xb1,0x91,0x90,0x93,0x81,0x91,0x91,0x91,0x91
DCB 0x92,0x12,0xd2,0x92,0xb2,0x9a,0x96,0x92,0x82,0x90,0x93,0x92,0x92,0x92,0x92,0x92
DCB 0x9b,0xb3,0x93,0x97,0x13,0x93,0x93,0xd3,0x93,0x93,0x93,0x93,0x91,0x83,0x93,0x92
DCB 0x94,0x94,0x94,0x94,0x94,0x95,0x96,0x84,0x94,0x90,0x9c,0xb4,0x94,0xd4,0x14,0x94
DCB 0x94,0x95,0x85,0x97,0x95,0x95,0x95,0x95,0xd5,0x95,0x95,0x15,0x91,0x95,0xb5,0x9d
DCB 0x94,0x86,0x96,0x97,0x96,0x96,0x96,0x96,0x16,0x96,0x96,0xd6,0x9e,0xb6,0x96,0x92
DCB 0x97,0x97,0x97,0x97,0x87,0x95,0x96,0x97,0xb7,0x9f,0x93,0x97,0x97,0x17,0xd7,0x97
DCB 0x98,0x98,0x98,0x98,0x88,0x9a,0x99,0x98,0xb8,0x90,0x9c,0x98,0x98,0x18,0xd8,0x98
DCB 0x9b,0x89,0x99,0x98,0x99,0x99,0x99,0x99,0x19,0x99,0x99,0xd9,0x91,0xb9,0x99,0x9d
DCB 0x9b,0x9a,0x8a,0x98,0x9a,0x9a,0x9a,0x9a,0xda,0x9a,0x9a,0x1a,0x9e,0x9a,0xba,0x92
DCB 0x9b,0x9b,0x9b,0x9b,0x9b,0x9a,0x99,0x8b,0x9b,0x9f,0x93,0xbb,0x9b,0xdb,0x1b,0x9b
DCB 0x94,0xbc,0x9c,0x98,0x1c,0x9c,0x9c,0xdc,0x9c,0x9c,0x9c,0x9c,0x9e,0x8c,0x9c,0x9d
DCB 0x9d,0x1d,0xdd,0x9d,0xbd,0x95,0x99,0x9d,0x8d,0x9f,0x9c,0x9d,0x9d,0x9d,0x9d,0x9d
DCB 0x9e,0xde,0x1e,0x9e,0x9e,0x9a,0x96,0xbe,0x9e,0x9f,0x9c,0x8e,0x9e,0x9e,0x9e,0x9e
DCB 0x9b,0x9f,0xbf,0x97,0xdf,0x9f,0x9f,0x1f,0x9f,0x9f,0x9f,0x9f,0x9e,0x9f,0x8f,0x9d
DCB 0xa1,0xa0,0xb0,0xa2,0xa0,0xa0,0xa0,0xa0,0xe0,0xa0,0xa0,0x20,0xa4,0xa0,0x80,0xa8
DCB 0xa1,0xa1,0xa1,0xa1,0xa1,0xa0,0xa3,0xb1,0xa1,0xa5,0xa9,0x81,0xa1,0xe1,0x21,0xa1
DCB 0xa2,0xa2,0xa2,0xa2,0xb2,0xa0,0xa3,0xa2,0x82,0xaa,0xa6,0xa2,0xa2,0x22,0xe2,0xa2
DCB 0xa1,0xb3,0xa3,0xa2,0xa3,0xa3,0xa3,0xa3,0x23,0xa3,0xa3,0xe3,0xab,0x83,0xa3,0xa7
DCB 0xa4,0xe4,0x24,0xa4,0xa4,0xa0,0xac,0x84,0xa4,0xa5,0xa6,0xb4,0xa4,0xa4,0xa4,0xa4
DCB 0xa1,0xa5,0x85,0xad,0xe5,0xa5,0xa5,0x25,0xa5,0xa5,0xa5,0xa5,0xa4,0xa5,0xb5,0xa7
DCB 0xae,0x86,0xa6,0xa2,0x26,0xa6,0xa6,0xe6,0xa6,0xa6,0xa6,0xa6,0xa4,0xb6,0xa6,0xa7
DCB 0xa7,0x27,0xe7,0xa7,0x87,0xaf,0xa3,0xa7,0xb7,0xa5,0xa6,0xa7,0xa7,0xa7,0xa7,0xa7
DCB 0xa8,0x28,0xe8,0xa8,0x88,0xa0,0xac,0xa8,0xb8,0xaa,0xa9,0xa8,0xa8,0xa8,0xa8,0xa8
DCB 0xa1,0x89,0xa9,0xad,0x29,0xa9,0xa9,0xe9,0xa9,0xa9,0xa9,0xa9,0xab,0xb9,0xa9,0xa8
DCB 0xae,0xaa,0x8a,0xa2,0xea,0xaa,0xaa,0x2a,0xaa,0xaa,0xaa,0xaa,0xab,0xaa,0xba,0xa8
DCB 0xab,0xeb,0x2b,0xab,0xab,0xaf,0xa3,0x8b,0xab,0xaa,0xa9,0xbb,0xab,0xab,0xab,0xab
DCB 0xae,0xbc,0xac,0xad,0xac,0xac,0xac,0xac,0x2c,0xac,0xac,0xec,0xa4,0x8c,0xac,0xa8
DCB 0xad,0xad,0xad,0xad,0xbd,0xaf,0xac,0xad,0x8d,0xa5,0xa9,0xad,0xad,0x2d,0xed,0xad
DCB 0xae,0xae,0xae,0xae,0xae,0xaf,0xac,0xbe,0xae,0xaa,0xa6,0x8e,0xae,0xee,0x2e,0xae
DCB 0xae,0xaf,0xbf,0xad,0xaf,0xaf,0xaf,0xaf,0xef,0xaf,0xaf,0x2f,0xab,0xaf,0x8f,0xa7
DCB 0xb0,0xb0,0xb0,0xb0,0xb2,0xa0,0xb0,0xb1,0xb8,0x90,0xb0,0xb4,0x30,0xb0,0xb0,0xf0
DCB 0xa1,0xb3,0xb0,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0x31,0xf1,0xb1,0x91,0xb9,0xb5,0xb1
DCB 0xb2,0xb3,0xb0,0xa2,0xb2,0xb2,0xb2,0xb2,0xb2,0xf2,0x32,0xb2,0xb2,0xb6,0xba,0x92
DCB 0xb3,0xb3,0xb3,0xb3,0xb2,0xb3,0xa3,0xb1,0xb7,0xb3,0x93,0xbb,0xf3,0xb3,0xb3,0x33
DCB 0x94,0xbc,0xb0,0xb4,0xb4,0x34,0xf4,0xb4,0xb4,0xb4,0xb4,0xb4,0xa4,0xb6,0xb5,0xb4
DCB 0x35,0xb5,0xb5,0xf5,0xbd,0x95,0xb5,0xb1,0xb7,0xa5,0xb5,0xb4,0xb5,0xb5,0xb5,0xb5
DCB 0xf6,0xb6,0xb6,0x36,0xb2,0xb6,0x96,0xbe,0xb7,0xb6,0xa6,0xb4,0xb6,0xb6,0xb6,0xb6
DCB 0xb7,0xb3,0xbf,0x97,0xb7,0xf7,0x37,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb6,0xb5,0xa7
DCB 0xb8,0xbc,0xb0,0x98,0xb8,0xf8,0x38,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb9,0xba,0xa8
DCB 0xf9,0xb9,0xb9,0x39,0xbd,0xb9,0x99,0xb1,0xb8,0xb9,0xa9,0xbb,0xb9,0xb9,0xb9,0xb9
DCB 0x3a,0xba,0xba,0xfa,0xb2,0x9a,0xba,0xbe,0xb8,0xaa,0xba,0xbb,0xba,0xba,0xba,0xba
DCB 0x9b,0xb3,0xbf,0xbb,0xbb,0x3b,0xfb,0xbb,0xbb,0xbb,0xbb,0xbb,0xab,0xb9,0xba,0xbb
DCB 0xbc,0xbc,0xbc,0xbc,0xbd,0xbc,0xac,0xbe,0xb8,0xbc,0x9c,0xb4,0xfc,0xbc,0xbc,0x3c
DCB 0xbd,0xbc,0xbf,0xad,0xbd,0xbd,0xbd,0xbd,0xbd,0xfd,0x3d,0xbd,0xbd,0xb9,0xb5,0x9d
DCB 0xae,0xbc,0xbf,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0x3e,0xfe,0xbe,0x9e,0xb6,0xba,0xbe
DCB 0xbf,0xbf,0xbf,0xbf,0xbd,0xaf,0xbf,0xbe,0xb7,0x9f,0xbf,0xbb,0x3f,0xbf,0xbf,0xff
DCB 0xc0,0xc0,0xc0,0xc0,0xd0,0xc2,0xc1,0xc0,0xe0,0xc8,0xc4,0xc0,0xc0,0x40,0x80,0xc0
DCB 0xc3,0xd1,0xc1,0xc0,0xc1,0xc1,0xc1,0xc1,0x41,0xc1,0xc1,0x81,0xc9,0xe1,0xc1,0xc5
DCB 0xc3,0xc2,0xd2,0xc0,0xc2,0xc2,0xc2,0xc2,0x82,0xc2,0xc2,0x42,0xc6,0xc2,0xe2,0xca
DCB 0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc1,0xd3,0xc3,0xc7,0xcb,0xe3,0xc3,0x83,0x43,0xc3
DCB 0xcc,0xe4,0xc4,0xc0,0x44,0xc4,0xc4,0x84,0xc4,0xc4,0xc4,0xc4,0xc6,0xd4,0xc4,0xc5
DCB 0xc5,0x45,0x85,0xc5,0xe5,0xcd,0xc1,0xc5,0xd5,0xc7,0xc4,0xc5,0xc5,0xc5,0xc5,0xc5
DCB 0xc6,0x86,0x46,0xc6,0xc6,0xc2,0xce,0xe6,0xc6,0xc7,0xc4,0xd6,0xc6,0xc6,0xc6,0xc6
DCB 0xc3,0xc7,0xe7,0xcf,0x87,0xc7,0xc7,0x47,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xd7,0xc5
DCB 0xcc,0xc8,0xe8,0xc0,0x88,0xc8,0xc8,0x48,0xc8,0xc8,0xc8,0xc8,0xc9,0xc8,0xd8,0xca
DCB 0xc9,0x89,0x49,0xc9,0xc9,0xcd,0xc1,0xe9,0xc9,0xc8,0xcb,0xd9,0xc9,0xc9,0xc9,0xc9
DCB 0xca,0x4a,0x8a,0xca,0xea,0xc2,0xce,0xca,0xda,0xc8,0xcb,0xca,0xca,0xca,0xca,0xca
DCB 0xc3,0xeb,0xcb,0xcf,0x4b,0xcb,0xcb,0x8b,0xcb,0xcb,0xcb,0xcb,0xc9,0xdb,0xcb,0xca
DCB 0xcc,0xcc,0xcc,0xcc,0xcc,0xcd,0xce,0xdc,0xcc,0xc8,0xc4,0xec,0xcc,0x8c,0x4c,0xcc
DCB 0xcc,0xcd,0xdd,0xcf,0xcd,0xcd,0xcd,0xcd,0x8d,0xcd,0xcd,0x4d,0xc9,0xcd,0xed,0xc5
DCB 0xcc,0xde,0xce,0xcf,0xce,0xce,0xce,0xce,0x4e,0xce,0xce,0x8e,0xc6,0xee,0xce,0xca
DCB 0xcf,0xcf,0xcf,0xcf,0xdf,0xcd,0xce,0xcf,0xef,0xc7,0xcb,0xcf,0xcf,0x4f,0x8f,0xcf
DCB 0xd0,0xd1,0xd2,0xc0,0xd0,0xd0,0xd0,0xd0,0xd0,0x90,0x50,0xd0,0xd0,0xd4,0xd8,0xf0
DCB 0xd1,0xd1,0xd1,0xd1,0xd0,0xd1,0xc1,0xd3,0xd5,0xd1,0xf1,0xd9,0x91,0xd1,0xd1,0x51
DCB 0xd2,0xd2,0xd2,0xd2,0xd0,0xc2,0xd2,0xd3,0xda,0xf2,0xd2,0xd6,0x52,0xd2,0xd2,0x92
DCB 0xc3,0xd1,0xd2,0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0x53,0x93,0xd3,0xf3,0xdb,0xd7,0xd3
DCB 0x94,0xd4,0xd4,0x54,0xd0,0xd4,0xf4,0xdc,0xd5,0xd4,0xc4,0xd6,0xd4,0xd4,0xd4,0xd4
DCB 0xd5,0xd1,0xdd,0xf5,0xd5,0x95,0x55,0xd5,0xd5,0xd5,0xd5,0xd5,0xd5,0xd4,0xd7,0xc5
DCB 0xf6,0xde,0xd2,0xd6,0xd6,0x56,0x96,0xd6,0xd6,0xd6,0xd6,0xd6,0xc6,0xd4,0xd7,0xd6
DCB 0x57,0xd7,0xd7,0x97,0xdf,0xf7,0xd7,0xd3,0xd5,0xc7,0xd7,0xd6,0xd7,0xd7,0xd7,0xd7
DCB 0x58,0xd8,0xd8,0x98,0xd0,0xf8,0xd8,0xdc,0xda,0xc8,0xd8,0xd9,0xd8,0xd8,0xd8,0xd8
DCB 0xf9,0xd1,0xdd,0xd9,0xd9,0x59,0x99,0xd9,0xd9,0xd9,0xd9,0xd9,0xc9,0xdb,0xd8,0xd9
DCB 0xda,0xde,0xd2,0xfa,0xda,0x9a,0x5a,0xda,0xda,0xda,0xda,0xda,0xda,0xdb,0xd8,0xca
DCB 0x9b,0xdb,0xdb,0x5b,0xdf,0xdb,0xfb,0xd3,0xda,0xdb,0xcb,0xd9,0xdb,0xdb,0xdb,0xdb
DCB 0xcc,0xde,0xdd,0xdc,0xdc,0xdc,0xdc,0xdc,0xdc,0x5c,0x9c,0xdc,0xfc,0xd4,0xd8,0xdc
DCB 0xdd,0xdd,0xdd,0xdd,0xdf,0xcd,0xdd,0xdc,0xd5,0xfd,0xdd,0xd9,0x5d,0xdd,0xdd,0x9d
DCB 0xde,0xde,0xde,0xde,0xdf,0xde,0xce,0xdc,0xda,0xde,0xfe,0xd6,0x9e,0xde,0xde,0x5e
DCB 0xdf,0xde,0xdd,0xcf,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0x5f,0xdf,0xdf,0xdb,0xd7,0xff
DCB 0xe0,0xe4,0xe8,0xc0,0xe0,0xa0,0x60,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe1,0xe2,0xf0
DCB 0xa1,0xe1,0xe1,0x61,0xe5,0xe1,0xc1,0xe9,0xe0,0xe1,0xf1,0xe3,0xe1,0xe1,0xe1,0xe1
DCB 0x62,0xe2,0xe2,0xa2,0xea,0xc2,0xe2,0xe6,0xe0,0xf2,0xe2,0xe3,0xe2,0xe2,0xe2,0xe2
DCB 0xc3,0xeb,0xe7,0xe3,0xe3,0x63,0xa3,0xe3,0xe3,0xe3,0xe3,0xe3,0xf3,0xe1,0xe2,0xe3
DCB 0xe4,0xe4,0xe4,0xe4,0xe5,0xe4,0xf4,0xe6,0xe0,0xe4,0xc4,0xec,0xa4,0xe4,0xe4,0x64
DCB 0xe5,0xe4,0xe7,0xf5,0xe5,0xe5,0xe5,0xe5,0xe5,0xa5,0x65,0xe5,0xe5,0xe1,0xed,0xc5
DCB 0xf6,0xe4,0xe7,0xe6,0xe6,0xe6,0xe6,0xe6,0xe6,0x66,0xa6,0xe6,0xc6,0xee,0xe2,0xe6
DCB 0xe7,0xe7,0xe7,0xe7,0xe5,0xf7,0xe7,0xe6,0xef,0xc7,0xe7,0xe3,0x67,0xe7,0xe7,0xa7
DCB 0xe8,0xe8,0xe8,0xe8,0xea,0xf8,0xe8,0xe9,0xe0,0xc8,0xe8,0xec,0x68,0xe8,0xe8,0xa8
DCB 0xf9,0xeb,0xe8,0xe9,0xe9,0xe9,0xe9,0xe9,0xe9,0x69,0xa9,0xe9,0xc9,0xe1,0xed,0xe9
DCB 0xea,0xeb,0xe8,0xfa,0xea,0xea,0xea,0xea,0xea,0xaa,0x6a,0xea,0xea,0xee,0xe2,0xca
DCB 0xeb,0xeb,0xeb,0xeb,0xea,0xeb,0xfb,0xe9,0xef,0xeb,0xcb,0xe3,0xab,0xeb,0xeb,0x6b
DCB 0xcc,0xe4,0xe8,0xec,0xec,0x6c,0xac,0xec,0xec,0xec,0xec,0xec,0xfc,0xee,0xed,0xec
DCB 0x6d,0xed,0xed,0xad,0xe5,0xcd,0xed,0xe9,0xef,0xfd,0xed,0xec,0xed,0xed,0xed,0xed
DCB 0xae,0xee,0xee,0x6e,0xea,0xee,0xce,0xe6,0xef,0xee,0xfe,0xec,0xee,0xee,0xee,0xee
DCB 0xef,0xeb,0xe7,0xcf,0xef,0xaf,0x6f,0xef,0xef,0xef,0xef,0xef,0xef,0xee,0xed,0xff
DCB 0xf0,0x70,0xb0,0xf0,0xd0,0xf8,0xf4,0xf0,0xe0,0xf2,0xf1,0xf0,0xf0,0xf0,0xf0,0xf0
DCB 0xf9,0xd1,0xf1,0xf5,0x71,0xf1,0xf1,0xb1,0xf1,0xf1,0xf1,0xf1,0xf3,0xe1,0xf1,0xf0
DCB 0xf6,0xf2,0xd2,0xfa,0xb2,0xf2,0xf2,0x72,0xf2,0xf2,0xf2,0xf2,0xf3,0xf2,0xe2,0xf0
DCB 0xf3,0xb3,0x73,0xf3,0xf3,0xf7,0xfb,0xd3,0xf3,0xf2,0xf1,0xe3,0xf3,0xf3,0xf3,0xf3
DCB 0xf6,0xe4,0xf4,0xf5,0xf4,0xf4,0xf4,0xf4,0x74,0xf4,0xf4,0xb4,0xfc,0xd4,0xf4,0xf0
DCB 0xf5,0xf5,0xf5,0xf5,0xe5,0xf7,0xf4,0xf5,0xd5,0xfd,0xf1,0xf5,0xf5,0x75,0xb5,0xf5
DCB 0xf6,0xf6,0xf6,0xf6,0xf6,0xf7,0xf4,0xe6,0xf6,0xf2,0xfe,0xd6,0xf6,0xb6,0x76,0xf6
DCB 0xf6,0xf7,0xe7,0xf5,0xf7,0xf7,0xf7,0xf7,0xb7,0xf7,0xf7,0x77,0xf3,0xf7,0xd7,0xff
DCB 0xf9,0xf8,0xe8,0xfa,0xf8,0xf8,0xf8,0xf8,0xb8,0xf8,0xf8,0x78,0xfc,0xf8,0xd8,0xf0
DCB 0xf9,0xf9,0xf9,0xf9,0xf9,0xf8,0xfb,0xe9,0xf9,0xfd,0xf1,0xd9,0xf9,0xb9,0x79,0xf9
DCB 0xfa,0xfa,0xfa,0xfa,0xea,0xf8,0xfb,0xfa,0xda,0xf2,0xfe,0xfa,0xfa,0x7a,0xba,0xfa
DCB 0xf9,0xeb,0xfb,0xfa,0xfb,0xfb,0xfb,0xfb,0x7b,0xfb,0xfb,0xbb,0xf3,0xdb,0xfb,0xff
DCB 0xfc,0xbc,0x7c,0xfc,0xfc,0xf8,0xf4,0xdc,0xfc,0xfd,0xfe,0xec,0xfc,0xfc,0xfc,0xfc
DCB 0xf9,0xfd,0xdd,0xf5,0xbd,0xfd,0xfd,0x7d,0xfd,0xfd,0xfd,0xfd,0xfc,0xfd,0xed,0xff
DCB 0xf6,0xde,0xfe,0xfa,0x7e,0xfe,0xfe,0xbe,0xfe,0xfe,0xfe,0xfe,0xfc,0xee,0xfe,0xff
DCB 0xff,0x7f,0xbf,0xff,0xdf,0xf7,0xfb,0xff,0xef,0xfd,0xfe,0xff,0xff,0xff,0xff,0xff



Составить ответ | Вернуться на конференцию.

Ответы


Отправка ответа
Имя*: 
Пароль: 
E-mail: 
Тема*:

Сообщение:

Ссылка на URL: 
URL изображения: 

если вы незарегистрированный на форуме пользователь, то
для успешного добавления сообщения заполните поле, как указано ниже:
сложите три и три:

Перейти к списку ответов | Конференция | Раздел "Электроника" | Главная страница | Карта сайта

Rambler's Top100 Рейтинг@Mail.ru
 
Web telesys.ru